From 2082b2d2890ceb007e04b9ba77129d14a8f4df52 Mon Sep 17 00:00:00 2001 From: Tokarzewski Date: Mon, 7 Sep 2026 10:35:17 +0200 Subject: [PATCH] feat(lang): add Visual Basic 6 / VBA grammar (harumiWeb/tree-sitter-vba) Vendors tree-sitter-vba @ 63b2f8d0d65c (v0.13.0, MIT, ABI 15, lexer-only, no external scanner) as CBM_LANG_VB6 and wires it end to end: - discover: .bas/.ctl/.dsr/.pag map directly; .cls (Apex/ObjectScript) and .frm (FORM) keep their table owners and the #2074 content sniffers now route VB6 modules to CBM_LANG_VB6 instead of CBM_LANG_COUNT. - lang_specs: Sub/Function/Property Get|Let|Set/Declare/Event as callables; Type -> Class with typed Fields (As clause unwrapped); Enum -> Enum with members; module-level Dim/Const -> one Variable per declarator; call_statement/call_expression/raise_event_statement callees; Implements as import; VB6 keyword set; source_file module parents. - release surfaces: MANIFEST (163 grammars, 75x ABI-15, vba row + note on the locally generated parser.c), THIRD_PARTY, vendored checksums, new-languages.json, and the 162 -> 163 language-count claims on all seven contract surfaces. - tests: extension/sniff mapping, grammar regression + label golden, calls contract, extraction block, and the four repro registries (capability ledger, call-node manifest, invariant breadth, argument matrix B). Class-module synthesis (.cls/.frm as a Class with Methods) is a separate follow-up change. Refs #721. Co-Authored-By: Claude Opus 5 (1M context) Signed-off-by: Tokarzewski --- README.md | 14 +- THIRD_PARTY.md | 2 +- docs/index.html | 20 +- docs/llms.txt | 2 +- internal/cbm/cbm.h | 1 + internal/cbm/extract_calls.c | 42 + internal/cbm/extract_defs.c | 35 + internal/cbm/extract_imports.c | 3 + internal/cbm/grammar_vba.c | 3 + internal/cbm/helpers.c | 28 + internal/cbm/lang_specs.c | 44 + internal/cbm/vendored/grammars/MANIFEST.md | 8 +- internal/cbm/vendored/grammars/vba/LICENSE | 21 + internal/cbm/vendored/grammars/vba/parser.c | 1066237 ++++++++++++++ .../vendored/grammars/vba/tree_sitter/alloc.h | 54 + .../vendored/grammars/vba/tree_sitter/array.h | 330 + .../grammars/vba/tree_sitter/parser.h | 286 + pkg/chocolatey/codebase-memory-mcp.nuspec | 2 +- pkg/npm/README.md | 4 +- scripts/new-languages.json | 17 + scripts/package-release.sh | 2 +- scripts/vendored-checksums.txt | 7 +- server.json | 2 +- src/discover/discover.h | 4 +- src/discover/language.c | 30 +- src/discover/userconfig.c | 4 + tests/repro/repro_call_argument_matrix_b.c | 29 +- tests/repro/repro_call_node_manifest.c | 11 +- tests/repro/repro_invariant_breadth.c | 22 + tests/repro/repro_language_registry.c | 7 +- tests/test_extraction.c | 108 + tests/test_grammar_labels.c | 1 + tests/test_grammar_regression.c | 7 + tests/test_lang_contract.c | 5 + tests/test_language.c | 25 +- 35 files changed, 1067361 insertions(+), 56 deletions(-) create mode 100644 internal/cbm/grammar_vba.c create mode 100644 internal/cbm/vendored/grammars/vba/LICENSE create mode 100644 internal/cbm/vendored/grammars/vba/parser.c create mode 100644 internal/cbm/vendored/grammars/vba/tree_sitter/alloc.h create mode 100644 internal/cbm/vendored/grammars/vba/tree_sitter/array.h create mode 100644 internal/cbm/vendored/grammars/vba/tree_sitter/parser.h diff --git a/README.md b/README.md index b41939a8f..6cd8303c5 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![License](https://img.shields.io/badge/license-MIT-green)](LICENSE) [![CI](https://img.shields.io/github/actions/workflow/status/DeusData/codebase-memory-mcp/dry-run.yml?label=CI)](https://github.com/DeusData/codebase-memory-mcp/actions/workflows/dry-run.yml) [![Tests](https://img.shields.io/badge/tests-6768_passing-brightgreen)](https://github.com/DeusData/codebase-memory-mcp) -[![Languages](https://img.shields.io/badge/languages-162-orange)](https://github.com/DeusData/codebase-memory-mcp) +[![Languages](https://img.shields.io/badge/languages-163-orange)](https://github.com/DeusData/codebase-memory-mcp) [![Hybrid LSP](https://img.shields.io/badge/Hybrid_LSP-10_languages-blue)](#hybrid-lsp) [![Agents](https://img.shields.io/badge/agent_surfaces-45-purple)](https://github.com/DeusData/codebase-memory-mcp) [![Pure C](https://img.shields.io/badge/pure_C-no_language_runtime-blue)](https://github.com/DeusData/codebase-memory-mcp) @@ -16,7 +16,7 @@ **The fastest and most efficient code intelligence engine for AI coding agents.** Full-indexes an average repository in milliseconds, the Linux kernel (28M LOC, 75K files) in 3 minutes. Answers structural queries in under 1ms. Ships as a native executable with a small verified runtime-asset set for macOS, Linux, and Windows — download, run `install`, done. -High-quality parsing through [tree-sitter](https://tree-sitter.github.io/tree-sitter/) AST analysis across all 162 languages, enhanced with [**Hybrid LSP** semantic type resolution](#hybrid-lsp) for Python, TypeScript / JavaScript / JSX / TSX, PHP, C#, Go, C, C++, Java, Kotlin, Rust, and Perl — producing a persistent knowledge graph of functions, classes, call chains, HTTP routes, and cross-service links. 15 MCP tools. No language runtime, hosted service, or API key. Plug and play across 45 supported automatic/conditional client surfaces. +High-quality parsing through [tree-sitter](https://tree-sitter.github.io/tree-sitter/) AST analysis across all 163 languages, enhanced with [**Hybrid LSP** semantic type resolution](#hybrid-lsp) for Python, TypeScript / JavaScript / JSX / TSX, PHP, C#, Go, C, C++, Java, Kotlin, Rust, and Perl — producing a persistent knowledge graph of functions, classes, call chains, HTTP routes, and cross-service links. 15 MCP tools. No language runtime, hosted service, or API key. Plug and play across 45 supported automatic/conditional client surfaces. > **Research** — The design and benchmarks behind this project are described in the preprint [*Codebase-Memory: Tree-Sitter-Based Knowledge Graphs for LLM Code Exploration via MCP*](https://arxiv.org/abs/2603.27277) (arXiv:2603.27277). Evaluated across 31 real-world repositories: 83% answer quality, 10× fewer tokens, 2.1× fewer tool calls vs. file-by-file exploration. @@ -32,7 +32,7 @@ High-quality parsing through [tree-sitter](https://tree-sitter.github.io/tree-si - **Extreme indexing speed** — Linux kernel (28M LOC, 75K files) in 3 minutes. RAM-first pipeline: LZ4 compression, in-memory SQLite, fused Aho-Corasick pattern matching. Memory released after indexing. - **Plug and play** — native executable plus authenticated release-owned assets for macOS (arm64/amd64), Linux (arm64/amd64), and Windows (amd64). The native install needs no Docker, language runtime, or API keys. Download → `install` → restart agent → done. -- **162 languages** — vendored tree-sitter grammars compiled into the binary. Nothing to install, nothing that breaks. +- **163 languages** — vendored tree-sitter grammars compiled into the binary. Nothing to install, nothing that breaks. - **120x fewer tokens** — 5 structural queries: ~3,400 tokens vs ~412,000 via file-by-file search. One graph query replaces dozens of grep/read cycles. - **45 supported automatic/conditional client surfaces** — `install` configures detected clients and safely activates conditional clients only when their documented platform, marker, or explicit existing config path is present. See [Multi-Agent Support](#multi-agent-support) for the complete matrix and manual/UI-only boundaries. - **Built-in graph visualization** — 3D interactive UI at `localhost:9749`, served from the binary itself. @@ -815,14 +815,14 @@ codebase-memory-mcp ships a **lightweight C implementation of language type-reso **Two-layer architecture:** -1. **Tree-sitter pass** — fast, syntactic, runs for every one of the 162 languages. Extracts definitions, calls, imports. +1. **Tree-sitter pass** — fast, syntactic, runs for every one of the 163 languages. Extracts definitions, calls, imports. 2. **Hybrid LSP pass** — type-aware, runs above the tree-sitter pass per-language. Refines call edges using the import graph plus a per-file or pre-built cross-file definition registry. Languages without a Hybrid LSP pass yet fall back to textual resolution, so you always get *some* answer. The result is a knowledge graph accurate enough to drive `trace_path` across packages, inheritance hierarchies, and stdlib calls — without paying for a language server process per project. ## Language Support -162 languages, all parsed via vendored tree-sitter grammars compiled into the binary. Benchmarked against 64 real open-source repositories (78 to 49K nodes): +163 languages, all parsed via vendored tree-sitter grammars compiled into the binary. Benchmarked against 64 real open-source repositories (78 to 49K nodes): | Tier | Score | Languages | |------|-------|-----------| @@ -830,7 +830,7 @@ The result is a knowledge graph accurate enough to drive `trace_path` across pac | **Good** (75-89%) | | Python, TypeScript, TSX, Go, Rust, Java, R, Dart, JavaScript, Erlang, Elixir, Scala, Ruby, PHP, C#, SQL | | **Functional** (< 75%) | | OCaml, Haskell | -Also supported (not yet benchmarked): Ada, Agda, Apex, Assembly (NASM), Astro, AWK, Beancount, BibTeX, Bicep, Bitbake, Blade, Cairo, Cap'n Proto, Clojure, CMake, COBOL, Common Lisp, Crystal, CSV, CUDA, D, Devicetree, Diff, .env, Elm, Emacs Lisp, F#, Fennel, Fish, FORM, Fortran, FunC, GDScript, .gitattributes, .gitignore, Gleam, GLSL, GN, Go module, Go template, GraphQL, Hare, HLSL, Hyprlang, INI, ISPC, Janet, Jinja2, JSDoc, JSON, JSON5, Jsonnet, Julia, Just, Kconfig, KDL, Lean 4, Linker Script, Liquid, LLVM IR, Luau, Magma, Makefile, Markdown, MATLAB, Mermaid, Meson, Move, Nickel, Nim, Nix, Odin, Pascal, Pkl, PO (gettext), Pony, PowerShell, Prisma, .properties, Protobuf, Puppet, PureScript, Racket, Regex, requirements.txt, ReScript, RON, reStructuredText, Scheme, Slang, Smali, Smithy, Solidity, SOQL, SOSL, Squirrel, SSH config, Starlark, Svelte, Sway, SystemVerilog, TableGen, Tcl, Teal, Templ, Thrift, TLA+, Typst, Verilog, VHDL, Vim script, Vue, WGSL, WIT, Wolfram, XML, Zsh. +Also supported (not yet benchmarked): Ada, Agda, Apex, Assembly (NASM), Astro, AWK, Beancount, BibTeX, Bicep, Bitbake, Blade, Cairo, Cap'n Proto, Clojure, CMake, COBOL, Common Lisp, Crystal, CSV, CUDA, D, Devicetree, Diff, .env, Elm, Emacs Lisp, F#, Fennel, Fish, FORM, Fortran, FunC, GDScript, .gitattributes, .gitignore, Gleam, GLSL, GN, Go module, Go template, GraphQL, Hare, HLSL, Hyprlang, INI, ISPC, Janet, Jinja2, JSDoc, JSON, JSON5, Jsonnet, Julia, Just, Kconfig, KDL, Lean 4, Linker Script, Liquid, LLVM IR, Luau, Magma, Makefile, Markdown, MATLAB, Mermaid, Meson, Move, Nickel, Nim, Nix, Odin, Pascal, Pkl, PO (gettext), Pony, PowerShell, Prisma, .properties, Protobuf, Puppet, PureScript, Racket, Regex, requirements.txt, ReScript, RON, reStructuredText, Scheme, Slang, Smali, Smithy, Solidity, SOQL, SOSL, Squirrel, SSH config, Starlark, Svelte, Sway, SystemVerilog, TableGen, Tcl, Teal, Templ, Thrift, TLA+, Typst, Verilog, VHDL, Vim script, Visual Basic 6 / VBA, Vue, WGSL, WIT, Wolfram, XML, Zsh. ## Architecture @@ -848,7 +848,7 @@ src/ traces/ Runtime trace ingestion ui/ Local HTTP server + verified external 3D-UI asset pack foundation/ Platform abstractions (threads, filesystem, logging, memory) -internal/cbm/ Vendored tree-sitter grammars (162 languages) + AST extraction engine +internal/cbm/ Vendored tree-sitter grammars (163 languages) + AST extraction engine ``` ## Security diff --git a/THIRD_PARTY.md b/THIRD_PARTY.md index fdcb0d5e4..588bcd60d 100644 --- a/THIRD_PARTY.md +++ b/THIRD_PARTY.md @@ -37,7 +37,7 @@ The core runtime headers in `internal/cbm/vendored/common/tree_sitter/` ## Tree-sitter Grammars -160 pre-generated parsers are vendored in `internal/cbm/vendored/grammars//` +161 pre-generated parsers are vendored in `internal/cbm/vendored/grammars//` (generated `parser.c` plus `scanner.c` where applicable, compiled statically). Each grammar is the work of its upstream authors and each grammar directory contains the upstream `LICENSE` file. diff --git a/docs/index.html b/docs/index.html index 56496d5d8..2b9813400 100644 --- a/docs/index.html +++ b/docs/index.html @@ -4,7 +4,7 @@ codebase-memory-mcp — Code Intelligence Knowledge Graph for AI Coding Agents - + @@ -12,7 +12,7 @@ - + @@ -24,7 +24,7 @@ - + @@ -41,7 +41,7 @@ "applicationSubCategory": "Model Context Protocol (MCP) server", "operatingSystem": "macOS, Linux, Windows", "softwareVersion": "0.8.1", - "description": "An open-source MCP server that indexes a codebase into a persistent knowledge graph of functions, classes, call chains, HTTP routes, and cross-service links, so AI coding agents answer structural questions with roughly 120x fewer tokens than file-by-file search. Parses 162 languages via tree-sitter with Hybrid LSP semantic type resolution for 9 language families. Ships as a native executable with authenticated release-owned assets; the native install needs no language runtime.", + "description": "An open-source MCP server that indexes a codebase into a persistent knowledge graph of functions, classes, call chains, HTTP routes, and cross-service links, so AI coding agents answer structural questions with roughly 120x fewer tokens than file-by-file search. Parses 163 languages via tree-sitter with Hybrid LSP semantic type resolution for 9 language families. Ships as a native executable with authenticated release-owned assets; the native install needs no language runtime.", "url": "https://deusdata.github.io/codebase-memory-mcp/", "downloadUrl": "https://github.com/DeusData/codebase-memory-mcp/releases/latest", "codeRepository": "https://github.com/DeusData/codebase-memory-mcp", @@ -125,7 +125,7 @@ "name": "What is codebase-memory-mcp?", "acceptedAnswer": { "@type": "Answer", - "text": "codebase-memory-mcp is an open-source Model Context Protocol (MCP) server that indexes a codebase into a persistent knowledge graph of functions, classes, call chains, HTTP routes, and cross-service links. AI coding agents query that graph instead of reading files one by one, answering structural questions with roughly 120x fewer tokens. It parses 162 languages and ships as a native executable with authenticated release-owned assets; the native install needs no language runtime." + "text": "codebase-memory-mcp is an open-source Model Context Protocol (MCP) server that indexes a codebase into a persistent knowledge graph of functions, classes, call chains, HTTP routes, and cross-service links. AI coding agents query that graph instead of reading files one by one, answering structural questions with roughly 120x fewer tokens. It parses 163 languages and ships as a native executable with authenticated release-owned assets; the native install needs no language runtime." } }, { @@ -141,7 +141,7 @@ "name": "Which programming languages does codebase-memory-mcp support?", "acceptedAnswer": { "@type": "Answer", - "text": "It supports 162 languages through vendored tree-sitter grammars compiled into the binary, including Python, Go, JavaScript, TypeScript, Rust, Java, C, C++, C#, PHP, Ruby, Kotlin, Swift, and many more. Nine language families — Python, TypeScript/JavaScript, PHP, C#, Go, C/C++, Java, Kotlin, and Rust — additionally get Hybrid LSP semantic type resolution." + "text": "It supports 163 languages through vendored tree-sitter grammars compiled into the binary, including Python, Go, JavaScript, TypeScript, Rust, Java, C, C++, C#, PHP, Ruby, Kotlin, Swift, and many more. Nine language families — Python, TypeScript/JavaScript, PHP, C#, Go, C/C++, Java, Kotlin, and Rust — additionally get Hybrid LSP semantic type resolution." } }, { @@ -444,7 +444,7 @@

codebase-memory-mcp

The fastest, most efficient code intelligence engine for AI coding agents. It indexes any repository into a persistent knowledge graph — full-indexing an average repo in seconds and the Linux kernel in 3 minutes — so your agent answers structural questions with ~120x fewer tokens. - Tree-sitter parsing across 162 languages, Hybrid LSP type resolution, native executable with verified assets. + Tree-sitter parsing across 163 languages, Hybrid LSP type resolution, native executable with verified assets.

~120x
fewer tokens
@@ -483,7 +483,7 @@

What is codebase-memory-mcp?

Protocol (MCP) server that indexes a codebase into a persistent knowledge graph of functions, classes, call chains, HTTP routes, and cross-service links. Instead of reading files one at a time, an AI coding agent queries the graph — answering structural questions with roughly 120x fewer - tokens. It parses 162 languages and ships as a native executable with authenticated release-owned assets; + tokens. It parses 163 languages and ships as a native executable with authenticated release-owned assets; the native install needs no language runtime.

@@ -606,7 +606,7 @@

Languages with full Hybrid LSP

- The two-layer pipeline runs a fast syntactic tree-sitter pass for every one of the 162 languages, + The two-layer pipeline runs a fast syntactic tree-sitter pass for every one of the 163 languages, then a type-aware Hybrid LSP pass on top for the families above. Languages without a Hybrid LSP pass yet fall back to textual resolution, so you always get an answer.

@@ -699,7 +699,7 @@

How fast is it?

Features

-

162 languages

+

163 languages

Python, Go, JS, TS, TSX, Rust, Java, C++, C#, C, PHP, Ruby, Kotlin, Scala, Zig, Elixir, Haskell, OCaml, Swift, Dart, Lean 4, and many more via vendored tree-sitter grammars compiled into the binary.

diff --git a/docs/llms.txt b/docs/llms.txt index f3c23970b..0097dd33c 100644 --- a/docs/llms.txt +++ b/docs/llms.txt @@ -1,6 +1,6 @@ # codebase-memory-mcp -> An open-source Model Context Protocol (MCP) server that indexes a codebase into a persistent knowledge graph of functions, classes, call chains, HTTP routes, and cross-service links. AI coding agents query the graph instead of reading files one by one, answering structural questions with roughly 120x fewer tokens (~3,400 vs ~412,000 across five structural queries). Parses 162 languages via vendored tree-sitter grammars, with Hybrid LSP semantic type resolution for Python, TypeScript/JavaScript, PHP, C#, Go, C/C++, Java, Kotlin, and Rust. It also generates semantic graph edges (SEMANTICALLY_RELATED for vocabulary-mismatch matches, SIMILAR_TO for near-clone detection) and supports semantic vector search via bundled nomic-embed-code embeddings compiled into the native executable — no API key, no Ollama, no Docker. Ships a native executable with an authenticated integration asset; the UI variant adds one content-addressed frontend pack. All processing is local — the embeddings run on-device; there is no embedded LLM and no API key. +> An open-source Model Context Protocol (MCP) server that indexes a codebase into a persistent knowledge graph of functions, classes, call chains, HTTP routes, and cross-service links. AI coding agents query the graph instead of reading files one by one, answering structural questions with roughly 120x fewer tokens (~3,400 vs ~412,000 across five structural queries). Parses 163 languages via vendored tree-sitter grammars, with Hybrid LSP semantic type resolution for Python, TypeScript/JavaScript, PHP, C#, Go, C/C++, Java, Kotlin, and Rust. It also generates semantic graph edges (SEMANTICALLY_RELATED for vocabulary-mismatch matches, SIMILAR_TO for near-clone detection) and supports semantic vector search via bundled nomic-embed-code embeddings compiled into the native executable — no API key, no Ollama, no Docker. Ships a native executable with an authenticated integration asset; the UI variant adds one content-addressed frontend pack. All processing is local — the embeddings run on-device; there is no embedded LLM and no API key. ## Key facts diff --git a/internal/cbm/cbm.h b/internal/cbm/cbm.h index a5bdba999..8a5c58a37 100644 --- a/internal/cbm/cbm.h +++ b/internal/cbm/cbm.h @@ -177,6 +177,7 @@ typedef enum { CBM_LANG_ARKTS, // ArkTS (HarmonyOS/OpenHarmony .ets — TypeScript superset + ArkUI) CBM_LANG_PLSQL, // Oracle PL/SQL CBM_LANG_CHIALISP, // Chialisp (.clsp/.clib/.clinc — Chia smart-coin s-expression language) + CBM_LANG_VB6, // Visual Basic 6 / VBA (.bas/.cls/.frm/.ctl/.dsr/.pag — tree-sitter-vba) CBM_LANG_COUNT } CBMLanguage; diff --git a/internal/cbm/extract_calls.c b/internal/cbm/extract_calls.c index c22a11e01..ad65134b0 100644 --- a/internal/cbm/extract_calls.c +++ b/internal/cbm/extract_calls.c @@ -1475,6 +1475,42 @@ static char *extract_puppet_callee(CBMArena *a, TSNode node, const char *source, return NULL; } +// VB6/VBA: resolve the callee text of a call-shaped node. +// call_statement `Foo 1` / `Call Foo(1)` / `obj.Bar x` -> field `callee` +// call_expression `y = Foo(1)` / `obj.Items(1)` -> field `function` +// raise_event_statement `RaiseEvent Changed(x)` -> field `event` +// The callee node is an identifier, a qualified_member_expression (`obj.Method`, +// emitted dotted so the resolver's last-segment match finds `Method`), an +// implicit_member_expression (`.Method` inside a With block — bare member name), +// or a nested call_expression (`a(1)(2)` / `obj.Items(1).Name`) that we unwrap. +static char *extract_vb6_callee(CBMArena *a, TSNode node, const char *source, const char *nk) { + enum { VB6_CALLEE_UNWRAP_MAX = 4 }; + TSNode callee = {0}; + if (strcmp(nk, "call_statement") == 0) { + callee = ts_node_child_by_field_name(node, TS_FIELD("callee")); + } else if (strcmp(nk, "call_expression") == 0) { + callee = ts_node_child_by_field_name(node, TS_FIELD("function")); + } else if (strcmp(nk, "raise_event_statement") == 0) { + callee = ts_node_child_by_field_name(node, TS_FIELD("event")); + } + for (int depth = 0; depth < VB6_CALLEE_UNWRAP_MAX && !ts_node_is_null(callee); depth++) { + const char *ck = ts_node_type(callee); + if (strcmp(ck, "identifier") == 0 || strcmp(ck, "qualified_member_expression") == 0) { + return cbm_node_text(a, callee, source); + } + if (strcmp(ck, "implicit_member_expression") == 0) { + TSNode m = ts_node_child_by_field_name(callee, TS_FIELD("member")); + return ts_node_is_null(m) ? NULL : cbm_node_text(a, m, source); + } + if (strcmp(ck, "call_expression") == 0) { + callee = ts_node_child_by_field_name(callee, TS_FIELD("function")); + continue; + } + break; + } + return NULL; +} + static char *extract_callee_lang_specific(CBMArena *a, TSNode node, const char *source, CBMLanguage lang) { const char *nk = ts_node_type(node); @@ -1708,6 +1744,12 @@ static char *extract_callee_lang_specific(CBMArena *a, TSNode node, const char * } return NULL; } + if (lang == CBM_LANG_VB6) { + char *c = extract_vb6_callee(a, node, source, nk); + if (c) { + return c; + } + } return extract_scripting_callee(a, node, source, lang, nk); } diff --git a/internal/cbm/extract_defs.c b/internal/cbm/extract_defs.c index b9efa8977..f743fb02e 100644 --- a/internal/cbm/extract_defs.c +++ b/internal/cbm/extract_defs.c @@ -4730,6 +4730,11 @@ static TSNode find_class_body(TSNode class_node, CBMLanguage lang) { if (lang == CBM_LANG_SMALI) { return class_node; } + // VB6: `Type ... End Type` / `Enum ... End Enum` hold their type_member / + // enum_member children directly (no body node) — iterate the node itself. + if (lang == CBM_LANG_VB6) { + return class_node; + } // GraphQL: object/interface fields live in a fields_definition child. if (lang == CBM_LANG_GRAPHQL) { TSNode b = cbm_find_child_by_kind(class_node, "fields_definition"); @@ -6262,6 +6267,25 @@ static void extract_var_names(CBMExtractCtx *ctx, TSNode node, const CBMLangSpec } } return; + /* VB6/VBA: `Dim a As Long, b As String` / `Public Const X = 1` is a + * variable_declaration / const_declaration holding one variable_declarator / + * const_declarator per name (each with a `name` field). The declaration + * node itself has no name, so the default fallback would miss every one. */ + case CBM_LANG_VB6: { + uint32_t dc = ts_node_named_child_count(node); + for (uint32_t i = 0; i < dc; i++) { + TSNode decl = ts_node_named_child(node, i); + const char *dk = ts_node_type(decl); + if (strcmp(dk, "variable_declarator") != 0 && strcmp(dk, "const_declarator") != 0) { + continue; + } + TSNode nm = ts_node_child_by_field_name(decl, TS_FIELD("name")); + if (!ts_node_is_null(nm)) { + push_var_def(ctx, cbm_node_text(a, nm, ctx->source), decl); + } + } + return; + } default: break; } @@ -6644,6 +6668,17 @@ static bool extract_schema_field(CBMExtractCtx *ctx, TSNode child, const char *c } else if (ctx->language == CBM_LANG_SMALI) { name_node = cbm_find_child_by_kind(child, "field_identifier"); type_node = cbm_find_child_by_kind(child, "field_type"); + } else if (ctx->language == CBM_LANG_VB6) { + /* type_member: (name: identifier) (type: as_type_clause (type: type_expression)). + * Unwrap the `As` clause so the Field type is `Long`, not `As Long`. */ + name_node = ts_node_child_by_field_name(child, TS_FIELD("name")); + type_node = ts_node_child_by_field_name(child, TS_FIELD("type")); + if (!ts_node_is_null(type_node) && strcmp(ts_node_type(type_node), "as_type_clause") == 0) { + TSNode inner = ts_node_child_by_field_name(type_node, TS_FIELD("type")); + if (!ts_node_is_null(inner)) { + type_node = inner; + } + } } else { return false; } diff --git a/internal/cbm/extract_imports.c b/internal/cbm/extract_imports.c index 544020db3..63da22f1d 100644 --- a/internal/cbm/extract_imports.c +++ b/internal/cbm/extract_imports.c @@ -3031,6 +3031,9 @@ void cbm_extract_imports(CBMExtractCtx *ctx) { case CBM_LANG_MAGMA: parse_generic_imports(ctx, "load_statement"); break; + case CBM_LANG_VB6: // `Implements IFoo` is the only cross-module reference syntax + parse_generic_imports(ctx, "implements_statement"); + break; case CBM_LANG_WOLFRAM: parse_wolfram_imports(ctx); break; diff --git a/internal/cbm/grammar_vba.c b/internal/cbm/grammar_vba.c new file mode 100644 index 000000000..b0d37faed --- /dev/null +++ b/internal/cbm/grammar_vba.c @@ -0,0 +1,3 @@ +// Vendored tree-sitter grammar: vba (Visual Basic 6 / VBA) +// Each grammar compiled as separate unit (conflicting static symbols). +#include "vendored/grammars/vba/parser.c" diff --git a/internal/cbm/helpers.c b/internal/cbm/helpers.c index e8a6eb8ec..8dc8162e8 100644 --- a/internal/cbm/helpers.c +++ b/internal/cbm/helpers.c @@ -158,6 +158,29 @@ static const char *puppet_keywords[] = {"true", "false", "undef", "if", "unless", "case", "and", "or", "in", "node", "class", "define", "inherits", "default", "return", NULL}; +/* VB6/VBA reserved words + intrinsic type names. The VB6 IDE canonicalises + * keyword casing on save, so the PascalCase spellings below are what exported + * source contains (strcmp is exact). `Me` is a keyword, not a resolvable + * receiver; `Debug` is the Debug object (`Debug.Print`). */ +static const char *vb6_keywords[] = { + "If", "Then", "Else", "ElseIf", "End", "Sub", "Function", + "Property", "Get", "Let", "Set", "Dim", "As", "New", + "Nothing", "True", "False", "Not", "And", "Or", "Xor", + "Eqv", "Imp", "Mod", "Is", "Like", "For", "Next", + "To", "Step", "Each", "In", "Do", "Loop", "While", + "Wend", "Until", "Select", "Case", "With", "Exit", "GoTo", + "GoSub", "Return", "On", "Error", "Resume", "Call", "Const", + "Static", "Public", "Private", "Friend", "Global", "Option", "Explicit", + "Base", "Compare", "Type", "Enum", "Declare", "Lib", "Alias", + "ByVal", "ByRef", "Optional", "ParamArray", "Implements", "Event", "RaiseEvent", + "WithEvents", "Me", "Null", "Empty", "ReDim", "Preserve", "Erase", + "Integer", "Long", "Single", "Double", "String", "Boolean", "Byte", + "Currency", "Date", "Object", "Variant", "Any", "Print", "Debug", + "Stop", "Beep", "Open", "Close", "Input", "Output", "Append", + "Write", "Attribute", "Version", "Begin", "TypeOf", "AddressOf", "Len", + "LenB", "Seek", "Lock", "Unlock", "Load", "Unload", "Name", + "Line", "Rem", NULL}; + // True when `label` names a type-like container definition (see cbm.h). Single // source of truth for the type-resolution / registry / IMPLEMENTS / LSP-type // consumers — adding a label here updates them all. @@ -298,6 +321,9 @@ bool cbm_is_keyword(const char *name, CBMLanguage lang) { case CBM_LANG_PUPPET: keywords = puppet_keywords; break; + case CBM_LANG_VB6: + keywords = vb6_keywords; + break; default: keywords = generic_keywords; break; @@ -1377,6 +1403,8 @@ static const char **get_module_parents(CBMLanguage lang) { return module_parents_properties; case CBM_LANG_GOMOD: // require_directive lives at source_file top level return module_parents_zig; + case CBM_LANG_VB6: // module-level Dim/Const/Type/Enum are children of source_file + return module_parents_zig; default: return NULL; } diff --git a/internal/cbm/lang_specs.c b/internal/cbm/lang_specs.c index 3a5fad0d4..3c6ce2dfd 100644 --- a/internal/cbm/lang_specs.c +++ b/internal/cbm/lang_specs.c @@ -170,6 +170,7 @@ extern const TSLanguage *tree_sitter_objectscript_udl(void); extern const TSLanguage *tree_sitter_objectscript_routine(void); extern const TSLanguage *tree_sitter_arkts(void); extern const TSLanguage *tree_sitter_plsql(void); +extern const TSLanguage *tree_sitter_vba(void); // -- Empty sentinel -- static const char *empty_types[] = {NULL}; @@ -1707,6 +1708,44 @@ static const char *objectscript_routine_func_types[] = {"procedure", "tag", NULL static const char *objectscript_routine_call_types[] = {"extrinsic_function", "routine_tag_call", NULL}; static const char *objectscript_routine_module_types[] = {"source_file", NULL}; + +// ==================== VISUAL BASIC 6 / VBA (harumiWeb/tree-sitter-vba) ==================== +// Every procedure kind exposes a `name` field, so the generic def extractor +// applies. `Declare` statements are external (DLL) entry points — treated as +// callables so `CALLS` edges to Win32 imports resolve to a node. Property +// Get/Let/Set share a name (VB6 property triplets); each is its own def. +static const char *vb6_func_types[] = {"sub_declaration", + "function_declaration", + "property_get_declaration", + "property_let_declaration", + "property_set_declaration", + "conditional_sub_declaration", + "conditional_function_declaration", + "conditional_property_declaration", + "declare_sub_statement", + "declare_function_statement", + "event_declaration", + NULL}; +// `Type ... End Type` (UDT/struct) -> Class; `Enum ... End Enum` -> Enum via +// class_label_for_kind. Members are direct children (no body node) — see +// find_class_body. The grammar has no node for the class module itself +// (.cls/.frm/.ctl are one COM class per file). +static const char *vb6_class_types[] = {"type_declaration", "enum_declaration", NULL}; +static const char *vb6_field_types[] = {"type_member", NULL}; +static const char *vb6_module_types[] = {"source_file", NULL}; +// call_statement: `Foo 1, 2` / `Call Foo(1)` / `obj.Bar x` (field `callee`). +// call_expression: `y = Foo(1)` (field `function`) — VB6 syntax cannot separate +// this from array indexing; unresolved callees simply produce no edge. +static const char *vb6_call_types[] = {"call_statement", "call_expression", "raise_event_statement", + NULL}; +static const char *vb6_import_types[] = {"implements_statement", NULL}; +static const char *vb6_branch_types[] = {"if_statement", "single_line_if_statement", + "select_statement", "for_statement", + "for_each_statement", "do_statement", + "while_statement", NULL}; +// Dim/Public/Private/Const at module level -> Variable (see extract_var_names). +static const char *vb6_var_types[] = {"variable_declaration", "const_declaration", NULL}; +static const char *vb6_assign_types[] = {"assignment_statement", "set_statement", NULL}; // ==================== SPEC TABLE ==================== static const CBMLangSpec lang_specs[CBM_LANG_COUNT] = { @@ -2730,6 +2769,11 @@ static const CBMLangSpec lang_specs[CBM_LANG_COUNT] = { plsql_module_types, plsql_call_types, empty_types, empty_types, plsql_branch_types, empty_types, plsql_assign_types, plsql_throw_types, NULL, empty_types, NULL, NULL, tree_sitter_plsql, NULL}, + // CBM_LANG_VB6 — Visual Basic 6 / VBA. harumiWeb/tree-sitter-vba (MIT). + [CBM_LANG_VB6] = {CBM_LANG_VB6, vb6_func_types, vb6_class_types, vb6_field_types, + vb6_module_types, vb6_call_types, vb6_import_types, empty_types, + vb6_branch_types, vb6_var_types, vb6_assign_types, empty_types, NULL, + empty_types, NULL, NULL, tree_sitter_vba, NULL}, }; diff --git a/internal/cbm/vendored/grammars/MANIFEST.md b/internal/cbm/vendored/grammars/MANIFEST.md index 4025b5f50..c56c02bdd 100644 --- a/internal/cbm/vendored/grammars/MANIFEST.md +++ b/internal/cbm/vendored/grammars/MANIFEST.md @@ -9,8 +9,8 @@ The grammars were originally vendored as bare `parser.c`+`scanner.c` with **no r ## Summary -- Grammars: **162** — vendored-from-upstream: **143**, first-party/self-maintained: **14**, registry-disagreement: **5** (nim removed 2026-06-12; objectscript_udl + objectscript_routine added 2026-06-24; mojo added 2026-07-01; arkts added 2026-08-26; plsql added 2026-08-27; chialisp added 2026-08-28 — see notes below) -- ABI distribution: **9×** ABI-13 **79×** ABI-14 **74×** ABI-15 (runtime ceiling is ABI 15; never vendor ABI 16 without a runtime upgrade) +- Grammars: **163** — vendored-from-upstream: **144**, first-party/self-maintained: **14**, registry-disagreement: **5** (nim removed 2026-06-12; objectscript_udl + objectscript_routine added 2026-06-24; mojo added 2026-07-01; arkts added 2026-08-26; plsql added 2026-08-27; chialisp added 2026-08-28; vba added 2026-09-07 — see notes below) +- ABI distribution: **9×** ABI-13 **79×** ABI-14 **75×** ABI-15 (runtime ceiling is ABI 15; never vendor ABI 16 without a runtime upgrade) — recounted from the tree 2026-08-30 after the perl v1.2.1 refresh moved `perl` from ABI 14 to ABI 15 (was `9×/80×/73×`). Neither side of the rebase had this right: main's line was correct for main, and this branch still carried the pre-2026-08-28 `7×/84×/65×`. Regenerate, never increment. — recounted from the tree 2026-08-28. This line had drifted: it read `7×/86×/65×`, which sums to 158 against 161 vendored grammars, so it was wrong before Chialisp was added and incrementing it would have carried the error forward. Regenerate with: `grep -h '#define LANGUAGE_VERSION' internal/cbm/vendored/grammars/*/parser.c | sort | uniq -c` @@ -36,6 +36,8 @@ The grammars were originally vendored as bare `parser.c`+`scanner.c` with **no r - **chialisp** (added 2026-08-28): **first-party** — authored in this repository, not vendored from anywhere. Grammar source + corpus tests live in `tools/tree-sitter-chialisp/`; regenerate with `npx tree-sitter-cli@0.25.10 generate --abi 14` and copy `src/parser.c` + `src/tree_sitter/*.h` here. ABI 14, **no external scanner** (`EXTERNAL_TOKEN_COUNT 0`), 0 non-ASCII bytes. It is a deliberately GENERIC s-expression grammar (`source_file`/`list`/`symbol`/`string`/`number`/`hex`/`dot`/`comment`) modelling the clvm_tools reader rather than the Chialisp form vocabulary: `mod`/`defun`/`defconstant`/`include` are ordinary head symbols, and which lists are definitions is decided in `internal/cbm/extract_defs.c`, so a dialect that adds a form does not need a regenerated parser. Written because the only public grammar (`Quexington/tree-sitter-chialisp`) cannot parse the language: it required CRLF to terminate a comment (`/;.*\r\n/`) while real files are LF, rejected the `.` in `(include foo.clib)`, and accepted only a primitive after `(defconstant NAME …)` — each of which desynchronised the rest of the file. Acceptance gate: all five `chia-blockchain@main` reference files parse with **zero ERROR and zero MISSING nodes**. **LICENSE:** the project's own LICENSE, byte-identical to the repository root — no third-party copyright is carried, because there is no third party. +- **vba** (added 2026-09-07, drives `CBM_LANG_VB6` — Visual Basic 6 / VBA `.bas`/`.cls`/`.frm`/`.ctl`/`.dsr`/`.pag`, #721): vendored from [harumiWeb/tree-sitter-vba](https://github.com/harumiWeb/tree-sitter-vba) @ `63b2f8d0d65c` (v0.13.0, MIT, ABI 15). Not tracked by nvim-treesitter or Helix. **Re-vendor note:** upstream gitignores `src/parser.c`; the vendored `parser.c` was generated locally from the pinned `grammar.js` with `tree-sitter-cli 0.26.9` (`tree-sitter generate --abi 15`, upstream's own `pnpm generate` command), so byte-identity with an upstream artefact cannot be claimed — regenerate the same way when re-vendoring. Lexer-only (no `scanner.c`, `EXTERNAL_TOKEN_COUNT 0`); case-insensitive keywords are expanded per keyword in the grammar, hence the 46 MB `parser.c`. Chosen over the GPL-3.0 arrmee-wt grammar (blocked by `scripts/license-policy.json`) and the unlicensed joannefan/tree-sitter-vb6. `.cls` (Apex/ObjectScript) and `.frm` (FORM) collide with VB6 — `src/discover/language.c` sniffs file content (`cbm_disambiguate_cls` / `cbm_disambiguate_frm`) to pick the owner. Security review covered only the vendored C surface (`parser.c`, `tree_sitter/*.h`) plus upstream license/provenance metadata; no package manager hooks, workflow files, prompt/agent instruction files, or generated lockfiles were vendored. + > ⚠️ **Pinned commit = the revision nvim-treesitter/Helix vendor** (battle-tested, canonical source), not bleeding-edge HEAD. When re-vendoring, update the pinned commit here. ## Custom extraction handling (definition extraction) @@ -72,6 +74,7 @@ Guarded by the `contract_all_grammars_in_graph` graph-breadth test in | scheme | `extract_lisp_def`: `(define …)` head-symbol forms in `list` | | slang | added to the C-family declarator-name gate (tree-sitter-cpp/hlsl fork) | | squirrel | `resolve_func_name`: `function_declaration` → `identifier` child | +| vba | `find_class_body`: `type_declaration`/`enum_declaration` hold `type_member`/`enum_member` directly (no body node); `extract_var_names`: `variable_declaration`/`const_declaration` → one Variable per `variable_declarator`/`const_declarator` `name`; `extract_schema_field`: `type_member` → `name` + `as_type_clause`'s `type` (so a Field is typed `Long`, not `As Long`); `extract_vb6_callee` (extract_calls.c): `call_statement` → `callee`, `call_expression` → `function`, `raise_event_statement` → `event`, unwrapping `qualified_member_expression` / `implicit_member_expression` / nested `call_expression` | ## Local source patches (applied atop pinned upstream) @@ -227,6 +230,7 @@ row instead. | tsx | 14 | tree-sitter/tree-sitter-typescript | `75b3874edb2d` | VERIFIED-BOTH | ✅ | | typescript | 14 | tree-sitter/tree-sitter-typescript | `75b3874edb2d` | VERIFIED-BOTH | ✅ | | typst | 14 | uben0/tree-sitter-typst | `46cf4ded12ee` | VERIFIED-BOTH | ✅ | +| vba | 15 | harumiWeb/tree-sitter-vba | `63b2f8d0d65c` | NOT-IN-REGISTRIES (see note) | ✅ | | verilog | 14 | tree-sitter/tree-sitter-verilog | `4457145e795b` | VERIFIED-HELIX | ✅ | | vhdl | 15 | jpt13653903/tree-sitter-vhdl | `c2d9be3d5ab7` | MISMATCH | ✅ | | vim | 15 | tree-sitter-grammars/tree-sitter-vim | `3092fcd99eb8` | VERIFIED-BOTH | ✅ | diff --git a/internal/cbm/vendored/grammars/vba/LICENSE b/internal/cbm/vendored/grammars/vba/LICENSE new file mode 100644 index 000000000..efec104b6 --- /dev/null +++ b/internal/cbm/vendored/grammars/vba/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 harumiWeb + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/internal/cbm/vendored/grammars/vba/parser.c b/internal/cbm/vendored/grammars/vba/parser.c new file mode 100644 index 000000000..ce3ca24b6 --- /dev/null +++ b/internal/cbm/vendored/grammars/vba/parser.c @@ -0,0 +1,1066237 @@ +/* Automatically @generated by tree-sitter */ + +#include "tree_sitter/parser.h" + +#if defined(__GNUC__) || defined(__clang__) +#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 15 +#define STATE_COUNT 15236 +#define LARGE_STATE_COUNT 7339 +#define SYMBOL_COUNT 407 +#define ALIAS_COUNT 1 +#define TOKEN_COUNT 178 +#define EXTERNAL_TOKEN_COUNT 0 +#define FIELD_COUNT 65 +#define MAX_ALIAS_SEQUENCE_LENGTH 15 +#define MAX_RESERVED_WORD_SET_SIZE 2 +#define PRODUCTION_ID_COUNT 359 +#define SUPERTYPE_COUNT 1 + +enum ts_symbol_identifiers { + sym_identifier = 1, + sym_newline = 2, + anon_sym_COLON = 3, + sym_line_continuation = 4, + sym_comment = 5, + aux_sym_frm_version_statement_token1 = 6, + aux_sym_frm_begin_block_token1 = 7, + aux_sym_frm_begin_block_token2 = 8, + aux_sym_frm_begin_property_block_token1 = 9, + aux_sym_frm_begin_property_block_token2 = 10, + aux_sym_frm_property_statement_token1 = 11, + anon_sym_EQ = 12, + sym_frm_property_text = 13, + sym_frm_quoted_property_text = 14, + aux_sym_attribute_statement_token1 = 15, + anon_sym_DOT = 16, + anon_sym_BANG = 17, + aux_sym__attribute_identifier_token1 = 18, + aux_sym_option_statement_token1 = 19, + aux_sym_option_statement_token2 = 20, + aux_sym_option_statement_token3 = 21, + aux_sym_option_statement_token4 = 22, + aux_sym_option_statement_token5 = 23, + aux_sym_option_statement_token6 = 24, + aux_sym_option_statement_token7 = 25, + aux_sym_option_statement_token8 = 26, + aux_sym_option_statement_token9 = 27, + aux_sym_implements_statement_token1 = 28, + aux_sym_type_declaration_token1 = 29, + aux_sym_type_preprocessor_if_token1 = 30, + aux_sym_type_preprocessor_if_token2 = 31, + aux_sym_type_preprocessor_if_token3 = 32, + aux_sym_type_preprocessor_if_token4 = 33, + aux_sym_type_preprocessor_elseif_token1 = 34, + aux_sym_type_preprocessor_else_token1 = 35, + aux_sym_enum_declaration_token1 = 36, + aux_sym_declare_sub_statement_token1 = 37, + aux_sym_declare_sub_statement_token2 = 38, + aux_sym_declare_sub_statement_token3 = 39, + aux_sym_declare_sub_statement_token4 = 40, + aux_sym_declare_function_statement_token1 = 41, + aux_sym_preprocessor_const_token1 = 42, + aux_sym__property_get_header_token1 = 43, + aux_sym_event_declaration_token1 = 44, + sym_static_modifier = 45, + sym__dim_keyword = 46, + sym__redim_keyword = 47, + sym_with_events_modifier = 48, + sym_ptrsafe_modifier = 49, + aux_sym_byval_modifier_token1 = 50, + sym_byref_modifier = 51, + sym_optional_modifier = 52, + sym_paramarray_modifier = 53, + aux_sym_get_accessor_token1 = 54, + sym_let_accessor = 55, + aux_sym_set_accessor_token1 = 56, + anon_sym_COMMA = 57, + aux_sym_const_declaration_token1 = 58, + anon_sym_LPAREN = 59, + anon_sym_RPAREN = 60, + aux_sym_as_type_clause_token1 = 61, + aux_sym_as_type_clause_token2 = 62, + anon_sym_STAR = 63, + aux_sym_array_bound_token1 = 64, + aux_sym_type_expression_token1 = 65, + aux_sym_type_expression_token2 = 66, + aux_sym_type_expression_token3 = 67, + aux_sym_type_expression_token4 = 68, + aux_sym_type_expression_token5 = 69, + aux_sym_type_expression_token6 = 70, + aux_sym_type_expression_token7 = 71, + aux_sym_type_expression_token8 = 72, + aux_sym_type_expression_token9 = 73, + aux_sym_type_expression_token10 = 74, + aux_sym_type_expression_token11 = 75, + aux_sym_type_expression_token12 = 76, + aux_sym_type_expression_token13 = 77, + aux_sym_dotted_type_expression_token1 = 78, + aux_sym_visibility_token1 = 79, + aux_sym_visibility_token2 = 80, + aux_sym_elseif_fragment_token1 = 81, + aux_sym_else_fragment_token1 = 82, + aux_sym_select_statement_token1 = 83, + aux_sym_select_statement_token2 = 84, + aux_sym_case_expression_token1 = 85, + anon_sym_LT = 86, + anon_sym_LT_EQ = 87, + anon_sym_GT = 88, + anon_sym_GT_EQ = 89, + anon_sym_LT_GT = 90, + aux_sym__multiline_for_tail_token1 = 91, + aux_sym__for_header_token1 = 92, + aux_sym__for_header_token2 = 93, + aux_sym__for_each_header_token1 = 94, + aux_sym__for_each_header_token2 = 95, + aux_sym_do_statement_token1 = 96, + aux_sym_do_statement_token2 = 97, + aux_sym_do_condition_token1 = 98, + aux_sym_do_condition_token2 = 99, + aux_sym_while_statement_token1 = 100, + aux_sym_with_statement_token1 = 101, + aux_sym_exit_statement_token1 = 102, + sym_end_statement = 103, + aux_sym_on_goto_statement_token1 = 104, + aux_sym_on_goto_statement_token2 = 105, + aux_sym_on_goto_statement_token3 = 106, + aux_sym_on_error_statement_token1 = 107, + aux_sym_on_error_statement_token2 = 108, + aux_sym_redim_statement_token1 = 109, + sym__ambiguous_redim_statement = 110, + aux_sym_erase_statement_token1 = 111, + aux_sym_open_statement_token1 = 112, + aux_sym_open_statement_token2 = 113, + aux_sym_open_statement_token3 = 114, + aux_sym_file_mode_token1 = 115, + aux_sym_file_mode_token2 = 116, + aux_sym_file_mode_token3 = 117, + aux_sym_file_mode_token4 = 118, + aux_sym_file_access_token1 = 119, + aux_sym_file_access_token2 = 120, + aux_sym_file_lock_token1 = 121, + aux_sym_file_lock_token2 = 122, + aux_sym_print_statement_token1 = 123, + anon_sym_CARET = 124, + anon_sym_SLASH = 125, + anon_sym_BSLASH = 126, + aux_sym__print_output_call_binary_expression_token1 = 127, + anon_sym_PLUS = 128, + anon_sym_DASH = 129, + anon_sym_AMP = 130, + aux_sym__print_output_call_binary_expression_token2 = 131, + aux_sym__print_output_call_binary_expression_token3 = 132, + aux_sym__print_output_call_binary_expression_token4 = 133, + aux_sym__print_output_call_binary_expression_token5 = 134, + aux_sym__print_output_call_binary_expression_token6 = 135, + anon_sym_SEMI = 136, + anon_sym_QMARK = 137, + aux_sym_close_statement_token1 = 138, + aux_sym_put_statement_token1 = 139, + aux_sym_unlock_statement_token1 = 140, + aux_sym_seek_statement_token1 = 141, + sym_reset_statement = 142, + aux_sym_raise_event_statement_token1 = 143, + sym_stop_statement = 144, + sym_beep_statement = 145, + aux_sym_unload_statement_token1 = 146, + aux_sym_def_type_statement_token1 = 147, + aux_sym_def_type_statement_token2 = 148, + aux_sym_def_type_statement_token3 = 149, + aux_sym_def_type_statement_token4 = 150, + aux_sym_def_type_statement_token5 = 151, + aux_sym_def_type_statement_token6 = 152, + aux_sym_def_type_statement_token7 = 153, + aux_sym_def_type_statement_token8 = 154, + aux_sym_def_type_statement_token9 = 155, + aux_sym_def_type_statement_token10 = 156, + aux_sym_def_type_statement_token11 = 157, + aux_sym_def_type_statement_token12 = 158, + aux_sym_def_type_statement_token13 = 159, + aux_sym_def_type_statement_token14 = 160, + aux_sym_call_statement_token1 = 161, + sym__ambiguous_call_statement = 162, + anon_sym_COLON_EQ = 163, + aux_sym_comparison_operator_token1 = 164, + aux_sym_addressof_expression_token1 = 165, + aux_sym_type_of_expression_token1 = 166, + aux_sym_unary_expression_token1 = 167, + sym_string_literal = 168, + sym_number_literal = 169, + aux_sym_boolean_literal_token1 = 170, + aux_sym_boolean_literal_token2 = 171, + sym_nothing_literal = 172, + sym_null_literal = 173, + sym_empty_literal = 174, + sym_date_literal = 175, + sym_guid_literal = 176, + anon_sym_POUND = 177, + sym_source_file = 178, + sym__top_level_item = 179, + sym__statement_separator = 180, + sym_frm_version_statement = 181, + sym_frm_begin_block = 182, + sym_frm_begin_property_block = 183, + sym_frm_property_statement = 184, + sym__frm_property_value = 185, + sym_frm_blob_reference = 186, + sym_attribute_statement = 187, + sym__attribute_name = 188, + sym__attribute_member_expression = 189, + sym__attribute_identifier = 190, + sym_option_statement = 191, + sym_implements_statement = 192, + sym_type_declaration = 193, + sym_type_member = 194, + sym_type_preprocessor_if = 195, + sym_type_preprocessor_block = 196, + sym_type_preprocessor_elseif = 197, + sym_type_preprocessor_else = 198, + sym_enum_declaration = 199, + sym_enum_member = 200, + sym_declare_sub_statement = 201, + sym_declare_function_statement = 202, + sym_preprocessor_const = 203, + sym_preprocessor_if = 204, + sym_preprocessor_block = 205, + sym__preprocessor_item = 206, + sym_preprocessor_elseif = 207, + sym_preprocessor_else = 208, + sym_sub_declaration = 209, + sym_function_declaration = 210, + sym_property_get_declaration = 211, + sym_property_let_declaration = 212, + sym_property_set_declaration = 213, + sym__sub_header = 214, + sym__function_header = 215, + sym__property_header = 216, + sym__property_get_header = 217, + sym__property_let_header = 218, + sym__property_set_header = 219, + sym_conditional_sub_declaration = 220, + sym_conditional_function_declaration = 221, + sym_conditional_property_declaration = 222, + sym__conditional_sub_headers = 223, + sym__conditional_function_headers = 224, + sym__conditional_property_headers = 225, + sym_event_declaration = 226, + sym__procedure_modifier = 227, + aux_sym__procedure_attributes = 228, + sym_end_sub_statement = 229, + sym_end_function_statement = 230, + sym_end_property_statement = 231, + sym_byval_modifier = 232, + sym_get_accessor = 233, + sym_set_accessor = 234, + sym_block = 235, + sym_conditional_branch_body = 236, + sym__statement = 237, + sym_variable_declaration = 238, + sym_const_declaration = 239, + sym_variable_declarator = 240, + sym_const_declarator = 241, + sym_initializer = 242, + sym_parameter_list = 243, + sym_parameter = 244, + sym_as_type_clause = 245, + sym_fixed_string_length = 246, + sym_array_bounds = 247, + sym_array_bound = 248, + sym_type_expression = 249, + sym_dotted_type_expression = 250, + sym_visibility = 251, + sym_if_statement = 252, + sym_elseif_fragment = 253, + sym_else_fragment = 254, + sym_end_if_fragment = 255, + sym_single_line_if_statement = 256, + sym_inline_statement_sequence = 257, + sym__inline_statement = 258, + sym_select_statement = 259, + sym_case_clause = 260, + sym_case_expression = 261, + sym_for_statement = 262, + sym__inline_for_statement = 263, + sym_for_each_statement = 264, + sym__inline_for_each_statement = 265, + sym__multiline_for_tail = 266, + sym__inline_for_tail = 267, + sym__for_header = 268, + sym__for_each_header = 269, + sym_do_statement = 270, + sym__inline_do_statement = 271, + sym_do_condition = 272, + sym_while_statement = 273, + sym_with_statement = 274, + sym__inline_with_statement = 275, + sym_single_line_block = 276, + sym_shared_next_for_body = 277, + sym_next_variable_list = 278, + sym_exit_statement = 279, + sym_on_goto_statement = 280, + sym_on_error_statement = 281, + sym_resume_statement = 282, + sym_goto_statement = 283, + sym_label_statement = 284, + sym_line_number_prefix = 285, + sym_line_number_statement = 286, + sym_line_number_top_level_item = 287, + sym__numbered_statement = 288, + sym_redim_statement = 289, + sym_redim_declarator = 290, + sym_erase_statement = 291, + sym_open_statement = 292, + sym_file_mode = 293, + sym_file_access = 294, + sym_file_lock = 295, + sym_file_number = 296, + sym_input_statement = 297, + sym_line_input_statement = 298, + sym_print_statement = 299, + sym_write_statement = 300, + sym__required_file_number = 301, + sym_output_list = 302, + sym__print_method_output_list = 303, + sym__print_output_expression = 304, + sym__unparenthesized_print_output_expression = 305, + sym__print_output_call_binary_expression = 306, + sym__print_output_call_operand = 307, + sym__print_output_member_comparison_expression = 308, + sym__print_output_call_member_expression = 309, + sym__print_output_call_expression = 310, + sym__print_output_qualified_callable = 311, + sym_char_position = 312, + sym_print_argument_sequence = 313, + sym_debug_print_statement = 314, + sym_close_statement = 315, + sym_get_statement = 316, + sym_put_statement = 317, + sym_lock_statement = 318, + sym_unlock_statement = 319, + sym_file_record_range = 320, + sym_seek_statement = 321, + sym_raise_event_statement = 322, + sym_name_statement = 323, + sym_load_statement = 324, + sym_unload_statement = 325, + sym_def_type_statement = 326, + sym_letter_range = 327, + sym_set_statement = 328, + sym_assignment_statement = 329, + sym_coordinate_pair = 330, + sym_call_statement = 331, + sym_expression_statement = 332, + sym_argument_list = 333, + sym_unparenthesized_argument_list = 334, + sym_line_range_argument_list = 335, + sym__argument_sequence = 336, + sym__unparenthesized_argument_sequence = 337, + sym__omitted_argument_sequence = 338, + sym__argument = 339, + sym_named_argument = 340, + sym_byval_argument = 341, + sym__condition_expression = 342, + sym__primary_expression = 343, + sym__expression = 344, + sym_comparison_expression = 345, + sym_comparison_operator = 346, + sym__comparison_operand = 347, + sym_logical_value_expression = 348, + sym_condition_binary_expression = 349, + sym_parenthesized_condition_expression = 350, + sym__assignable_expression = 351, + sym__callable_expression = 352, + sym__print_method_callee = 353, + sym__print_method_call_expression = 354, + sym__qualified_print_method_expression = 355, + sym__implicit_print_method_expression = 356, + sym__line_method_expression = 357, + sym_call_expression = 358, + sym_new_expression = 359, + sym_addressof_expression = 360, + sym_type_of_expression = 361, + sym_member_expression = 362, + sym_qualified_member_expression = 363, + sym_implicit_member_expression = 364, + sym__member_property = 365, + sym_parenthesized_expression = 366, + sym_binary_expression = 367, + sym_unary_expression = 368, + sym__signed_unary_expression = 369, + sym__literal = 370, + sym_boolean_literal = 371, + sym_file_number_literal = 372, + aux_sym_source_file_repeat1 = 373, + aux_sym_frm_begin_block_repeat1 = 374, + aux_sym_frm_begin_property_block_repeat1 = 375, + aux_sym__attribute_member_expression_repeat1 = 376, + aux_sym_type_declaration_repeat1 = 377, + aux_sym_type_preprocessor_if_repeat1 = 378, + aux_sym_type_preprocessor_block_repeat1 = 379, + aux_sym_enum_declaration_repeat1 = 380, + aux_sym_preprocessor_if_repeat1 = 381, + aux_sym_preprocessor_block_repeat1 = 382, + aux_sym__conditional_sub_headers_repeat1 = 383, + aux_sym__conditional_function_headers_repeat1 = 384, + aux_sym__conditional_property_headers_repeat1 = 385, + aux_sym_block_repeat1 = 386, + aux_sym_variable_declaration_repeat1 = 387, + aux_sym_const_declaration_repeat1 = 388, + aux_sym_parameter_list_repeat1 = 389, + aux_sym_array_bounds_repeat1 = 390, + aux_sym_dotted_type_expression_repeat1 = 391, + aux_sym_inline_statement_sequence_repeat1 = 392, + aux_sym_select_statement_repeat1 = 393, + aux_sym_case_clause_repeat1 = 394, + aux_sym_next_variable_list_repeat1 = 395, + aux_sym_on_goto_statement_repeat1 = 396, + aux_sym_redim_statement_repeat1 = 397, + aux_sym_erase_statement_repeat1 = 398, + aux_sym_input_statement_repeat1 = 399, + aux_sym_output_list_repeat1 = 400, + aux_sym_print_argument_sequence_repeat1 = 401, + aux_sym_close_statement_repeat1 = 402, + aux_sym_def_type_statement_repeat1 = 403, + aux_sym__argument_sequence_repeat1 = 404, + aux_sym__argument_sequence_repeat2 = 405, + aux_sym__unparenthesized_argument_sequence_repeat1 = 406, + alias_sym_line_number_literal = 407, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [sym_identifier] = "identifier", + [sym_newline] = "newline", + [anon_sym_COLON] = ":", + [sym_line_continuation] = "line_continuation", + [sym_comment] = "comment", + [aux_sym_frm_version_statement_token1] = "frm_version_statement_token1", + [aux_sym_frm_begin_block_token1] = "frm_begin_block_token1", + [aux_sym_frm_begin_block_token2] = "frm_begin_block_token2", + [aux_sym_frm_begin_property_block_token1] = "frm_begin_property_block_token1", + [aux_sym_frm_begin_property_block_token2] = "frm_begin_property_block_token2", + [aux_sym_frm_property_statement_token1] = "frm_property_statement_token1", + [anon_sym_EQ] = "=", + [sym_frm_property_text] = "frm_property_text", + [sym_frm_quoted_property_text] = "frm_quoted_property_text", + [aux_sym_attribute_statement_token1] = "attribute_statement_token1", + [anon_sym_DOT] = ".", + [anon_sym_BANG] = "!", + [aux_sym__attribute_identifier_token1] = "_attribute_identifier_token1", + [aux_sym_option_statement_token1] = "option_statement_token1", + [aux_sym_option_statement_token2] = "option_statement_token2", + [aux_sym_option_statement_token3] = "option_statement_token3", + [aux_sym_option_statement_token4] = "option_statement_token4", + [aux_sym_option_statement_token5] = "option_statement_token5", + [aux_sym_option_statement_token6] = "option_statement_token6", + [aux_sym_option_statement_token7] = "option_statement_token7", + [aux_sym_option_statement_token8] = "option_statement_token8", + [aux_sym_option_statement_token9] = "option_statement_token9", + [aux_sym_implements_statement_token1] = "implements_statement_token1", + [aux_sym_type_declaration_token1] = "type_declaration_token1", + [aux_sym_type_preprocessor_if_token1] = "type_preprocessor_if_token1", + [aux_sym_type_preprocessor_if_token2] = "type_preprocessor_if_token2", + [aux_sym_type_preprocessor_if_token3] = "type_preprocessor_if_token3", + [aux_sym_type_preprocessor_if_token4] = "type_preprocessor_if_token4", + [aux_sym_type_preprocessor_elseif_token1] = "type_preprocessor_elseif_token1", + [aux_sym_type_preprocessor_else_token1] = "type_preprocessor_else_token1", + [aux_sym_enum_declaration_token1] = "enum_declaration_token1", + [aux_sym_declare_sub_statement_token1] = "declare_sub_statement_token1", + [aux_sym_declare_sub_statement_token2] = "declare_sub_statement_token2", + [aux_sym_declare_sub_statement_token3] = "declare_sub_statement_token3", + [aux_sym_declare_sub_statement_token4] = "declare_sub_statement_token4", + [aux_sym_declare_function_statement_token1] = "declare_function_statement_token1", + [aux_sym_preprocessor_const_token1] = "preprocessor_const_token1", + [aux_sym__property_get_header_token1] = "_property_get_header_token1", + [aux_sym_event_declaration_token1] = "event_declaration_token1", + [sym_static_modifier] = "static_modifier", + [sym__dim_keyword] = "_dim_keyword", + [sym__redim_keyword] = "_redim_keyword", + [sym_with_events_modifier] = "with_events_modifier", + [sym_ptrsafe_modifier] = "ptrsafe_modifier", + [aux_sym_byval_modifier_token1] = "byval_modifier_token1", + [sym_byref_modifier] = "byref_modifier", + [sym_optional_modifier] = "optional_modifier", + [sym_paramarray_modifier] = "paramarray_modifier", + [aux_sym_get_accessor_token1] = "get_accessor_token1", + [sym_let_accessor] = "let_accessor", + [aux_sym_set_accessor_token1] = "set_accessor_token1", + [anon_sym_COMMA] = ",", + [aux_sym_const_declaration_token1] = "const_declaration_token1", + [anon_sym_LPAREN] = "(", + [anon_sym_RPAREN] = ")", + [aux_sym_as_type_clause_token1] = "as_type_clause_token1", + [aux_sym_as_type_clause_token2] = "as_type_clause_token2", + [anon_sym_STAR] = "*", + [aux_sym_array_bound_token1] = "array_bound_token1", + [aux_sym_type_expression_token1] = "type_expression_token1", + [aux_sym_type_expression_token2] = "type_expression_token2", + [aux_sym_type_expression_token3] = "type_expression_token3", + [aux_sym_type_expression_token4] = "type_expression_token4", + [aux_sym_type_expression_token5] = "type_expression_token5", + [aux_sym_type_expression_token6] = "type_expression_token6", + [aux_sym_type_expression_token7] = "type_expression_token7", + [aux_sym_type_expression_token8] = "type_expression_token8", + [aux_sym_type_expression_token9] = "type_expression_token9", + [aux_sym_type_expression_token10] = "type_expression_token10", + [aux_sym_type_expression_token11] = "type_expression_token11", + [aux_sym_type_expression_token12] = "type_expression_token12", + [aux_sym_type_expression_token13] = "type_expression_token13", + [aux_sym_dotted_type_expression_token1] = "dotted_type_expression_token1", + [aux_sym_visibility_token1] = "visibility_token1", + [aux_sym_visibility_token2] = "visibility_token2", + [aux_sym_elseif_fragment_token1] = "elseif_fragment_token1", + [aux_sym_else_fragment_token1] = "else_fragment_token1", + [aux_sym_select_statement_token1] = "select_statement_token1", + [aux_sym_select_statement_token2] = "select_statement_token2", + [aux_sym_case_expression_token1] = "case_expression_token1", + [anon_sym_LT] = "<", + [anon_sym_LT_EQ] = "<=", + [anon_sym_GT] = ">", + [anon_sym_GT_EQ] = ">=", + [anon_sym_LT_GT] = "<>", + [aux_sym__multiline_for_tail_token1] = "_multiline_for_tail_token1", + [aux_sym__for_header_token1] = "_for_header_token1", + [aux_sym__for_header_token2] = "_for_header_token2", + [aux_sym__for_each_header_token1] = "_for_each_header_token1", + [aux_sym__for_each_header_token2] = "_for_each_header_token2", + [aux_sym_do_statement_token1] = "do_statement_token1", + [aux_sym_do_statement_token2] = "do_statement_token2", + [aux_sym_do_condition_token1] = "do_condition_token1", + [aux_sym_do_condition_token2] = "do_condition_token2", + [aux_sym_while_statement_token1] = "while_statement_token1", + [aux_sym_with_statement_token1] = "with_statement_token1", + [aux_sym_exit_statement_token1] = "exit_statement_token1", + [sym_end_statement] = "end_statement", + [aux_sym_on_goto_statement_token1] = "on_goto_statement_token1", + [aux_sym_on_goto_statement_token2] = "on_goto_statement_token2", + [aux_sym_on_goto_statement_token3] = "on_goto_statement_token3", + [aux_sym_on_error_statement_token1] = "on_error_statement_token1", + [aux_sym_on_error_statement_token2] = "on_error_statement_token2", + [aux_sym_redim_statement_token1] = "redim_statement_token1", + [sym__ambiguous_redim_statement] = "_ambiguous_redim_statement", + [aux_sym_erase_statement_token1] = "erase_statement_token1", + [aux_sym_open_statement_token1] = "open_statement_token1", + [aux_sym_open_statement_token2] = "open_statement_token2", + [aux_sym_open_statement_token3] = "open_statement_token3", + [aux_sym_file_mode_token1] = "file_mode_token1", + [aux_sym_file_mode_token2] = "file_mode_token2", + [aux_sym_file_mode_token3] = "file_mode_token3", + [aux_sym_file_mode_token4] = "file_mode_token4", + [aux_sym_file_access_token1] = "file_access_token1", + [aux_sym_file_access_token2] = "file_access_token2", + [aux_sym_file_lock_token1] = "file_lock_token1", + [aux_sym_file_lock_token2] = "file_lock_token2", + [aux_sym_print_statement_token1] = "print_statement_token1", + [anon_sym_CARET] = "^", + [anon_sym_SLASH] = "/", + [anon_sym_BSLASH] = "\\", + [aux_sym__print_output_call_binary_expression_token1] = "_print_output_call_binary_expression_token1", + [anon_sym_PLUS] = "+", + [anon_sym_DASH] = "-", + [anon_sym_AMP] = "&", + [aux_sym__print_output_call_binary_expression_token2] = "_print_output_call_binary_expression_token2", + [aux_sym__print_output_call_binary_expression_token3] = "_print_output_call_binary_expression_token3", + [aux_sym__print_output_call_binary_expression_token4] = "_print_output_call_binary_expression_token4", + [aux_sym__print_output_call_binary_expression_token5] = "_print_output_call_binary_expression_token5", + [aux_sym__print_output_call_binary_expression_token6] = "_print_output_call_binary_expression_token6", + [anon_sym_SEMI] = ";", + [anon_sym_QMARK] = "\?", + [aux_sym_close_statement_token1] = "close_statement_token1", + [aux_sym_put_statement_token1] = "put_statement_token1", + [aux_sym_unlock_statement_token1] = "unlock_statement_token1", + [aux_sym_seek_statement_token1] = "seek_statement_token1", + [sym_reset_statement] = "reset_statement", + [aux_sym_raise_event_statement_token1] = "raise_event_statement_token1", + [sym_stop_statement] = "stop_statement", + [sym_beep_statement] = "beep_statement", + [aux_sym_unload_statement_token1] = "unload_statement_token1", + [aux_sym_def_type_statement_token1] = "def_type_statement_token1", + [aux_sym_def_type_statement_token2] = "def_type_statement_token2", + [aux_sym_def_type_statement_token3] = "def_type_statement_token3", + [aux_sym_def_type_statement_token4] = "def_type_statement_token4", + [aux_sym_def_type_statement_token5] = "def_type_statement_token5", + [aux_sym_def_type_statement_token6] = "def_type_statement_token6", + [aux_sym_def_type_statement_token7] = "def_type_statement_token7", + [aux_sym_def_type_statement_token8] = "def_type_statement_token8", + [aux_sym_def_type_statement_token9] = "def_type_statement_token9", + [aux_sym_def_type_statement_token10] = "def_type_statement_token10", + [aux_sym_def_type_statement_token11] = "def_type_statement_token11", + [aux_sym_def_type_statement_token12] = "def_type_statement_token12", + [aux_sym_def_type_statement_token13] = "def_type_statement_token13", + [aux_sym_def_type_statement_token14] = "def_type_statement_token14", + [aux_sym_call_statement_token1] = "call_statement_token1", + [sym__ambiguous_call_statement] = "_ambiguous_call_statement", + [anon_sym_COLON_EQ] = ":=", + [aux_sym_comparison_operator_token1] = "comparison_operator_token1", + [aux_sym_addressof_expression_token1] = "addressof_expression_token1", + [aux_sym_type_of_expression_token1] = "type_of_expression_token1", + [aux_sym_unary_expression_token1] = "unary_expression_token1", + [sym_string_literal] = "string_literal", + [sym_number_literal] = "number_literal", + [aux_sym_boolean_literal_token1] = "boolean_literal_token1", + [aux_sym_boolean_literal_token2] = "boolean_literal_token2", + [sym_nothing_literal] = "nothing_literal", + [sym_null_literal] = "null_literal", + [sym_empty_literal] = "empty_literal", + [sym_date_literal] = "date_literal", + [sym_guid_literal] = "guid_literal", + [anon_sym_POUND] = "#", + [sym_source_file] = "source_file", + [sym__top_level_item] = "_top_level_item", + [sym__statement_separator] = "_statement_separator", + [sym_frm_version_statement] = "frm_version_statement", + [sym_frm_begin_block] = "frm_begin_block", + [sym_frm_begin_property_block] = "frm_begin_property_block", + [sym_frm_property_statement] = "frm_property_statement", + [sym__frm_property_value] = "_frm_property_value", + [sym_frm_blob_reference] = "frm_blob_reference", + [sym_attribute_statement] = "attribute_statement", + [sym__attribute_name] = "_attribute_name", + [sym__attribute_member_expression] = "qualified_member_expression", + [sym__attribute_identifier] = "_attribute_identifier", + [sym_option_statement] = "option_statement", + [sym_implements_statement] = "implements_statement", + [sym_type_declaration] = "type_declaration", + [sym_type_member] = "type_member", + [sym_type_preprocessor_if] = "type_preprocessor_if", + [sym_type_preprocessor_block] = "type_preprocessor_block", + [sym_type_preprocessor_elseif] = "type_preprocessor_elseif", + [sym_type_preprocessor_else] = "type_preprocessor_else", + [sym_enum_declaration] = "enum_declaration", + [sym_enum_member] = "enum_member", + [sym_declare_sub_statement] = "declare_sub_statement", + [sym_declare_function_statement] = "declare_function_statement", + [sym_preprocessor_const] = "preprocessor_const", + [sym_preprocessor_if] = "preprocessor_if", + [sym_preprocessor_block] = "preprocessor_block", + [sym__preprocessor_item] = "_preprocessor_item", + [sym_preprocessor_elseif] = "preprocessor_elseif", + [sym_preprocessor_else] = "preprocessor_else", + [sym_sub_declaration] = "sub_declaration", + [sym_function_declaration] = "function_declaration", + [sym_property_get_declaration] = "property_get_declaration", + [sym_property_let_declaration] = "property_let_declaration", + [sym_property_set_declaration] = "property_set_declaration", + [sym__sub_header] = "_sub_header", + [sym__function_header] = "_function_header", + [sym__property_header] = "_property_header", + [sym__property_get_header] = "_property_get_header", + [sym__property_let_header] = "_property_let_header", + [sym__property_set_header] = "_property_set_header", + [sym_conditional_sub_declaration] = "conditional_sub_declaration", + [sym_conditional_function_declaration] = "conditional_function_declaration", + [sym_conditional_property_declaration] = "conditional_property_declaration", + [sym__conditional_sub_headers] = "_conditional_sub_headers", + [sym__conditional_function_headers] = "_conditional_function_headers", + [sym__conditional_property_headers] = "_conditional_property_headers", + [sym_event_declaration] = "event_declaration", + [sym__procedure_modifier] = "_procedure_modifier", + [aux_sym__procedure_attributes] = "_procedure_attributes", + [sym_end_sub_statement] = "end_sub_statement", + [sym_end_function_statement] = "end_function_statement", + [sym_end_property_statement] = "end_property_statement", + [sym_byval_modifier] = "byval_modifier", + [sym_get_accessor] = "get_accessor", + [sym_set_accessor] = "set_accessor", + [sym_block] = "block", + [sym_conditional_branch_body] = "conditional_branch_body", + [sym__statement] = "_statement", + [sym_variable_declaration] = "variable_declaration", + [sym_const_declaration] = "const_declaration", + [sym_variable_declarator] = "variable_declarator", + [sym_const_declarator] = "const_declarator", + [sym_initializer] = "initializer", + [sym_parameter_list] = "parameter_list", + [sym_parameter] = "parameter", + [sym_as_type_clause] = "as_type_clause", + [sym_fixed_string_length] = "fixed_string_length", + [sym_array_bounds] = "array_bounds", + [sym_array_bound] = "array_bound", + [sym_type_expression] = "type_expression", + [sym_dotted_type_expression] = "dotted_type_expression", + [sym_visibility] = "visibility", + [sym_if_statement] = "if_statement", + [sym_elseif_fragment] = "elseif_fragment", + [sym_else_fragment] = "else_fragment", + [sym_end_if_fragment] = "end_if_fragment", + [sym_single_line_if_statement] = "single_line_if_statement", + [sym_inline_statement_sequence] = "inline_statement_sequence", + [sym__inline_statement] = "_inline_statement", + [sym_select_statement] = "select_statement", + [sym_case_clause] = "case_clause", + [sym_case_expression] = "case_expression", + [sym_for_statement] = "for_statement", + [sym__inline_for_statement] = "for_statement", + [sym_for_each_statement] = "for_each_statement", + [sym__inline_for_each_statement] = "for_each_statement", + [sym__multiline_for_tail] = "_multiline_for_tail", + [sym__inline_for_tail] = "_inline_for_tail", + [sym__for_header] = "_for_header", + [sym__for_each_header] = "_for_each_header", + [sym_do_statement] = "do_statement", + [sym__inline_do_statement] = "do_statement", + [sym_do_condition] = "do_condition", + [sym_while_statement] = "while_statement", + [sym_with_statement] = "with_statement", + [sym__inline_with_statement] = "with_statement", + [sym_single_line_block] = "single_line_block", + [sym_shared_next_for_body] = "shared_next_for_body", + [sym_next_variable_list] = "next_variable_list", + [sym_exit_statement] = "exit_statement", + [sym_on_goto_statement] = "on_goto_statement", + [sym_on_error_statement] = "on_error_statement", + [sym_resume_statement] = "resume_statement", + [sym_goto_statement] = "goto_statement", + [sym_label_statement] = "label_statement", + [sym_line_number_prefix] = "line_number_prefix", + [sym_line_number_statement] = "line_number_statement", + [sym_line_number_top_level_item] = "line_number_top_level_item", + [sym__numbered_statement] = "_numbered_statement", + [sym_redim_statement] = "redim_statement", + [sym_redim_declarator] = "redim_declarator", + [sym_erase_statement] = "erase_statement", + [sym_open_statement] = "open_statement", + [sym_file_mode] = "file_mode", + [sym_file_access] = "file_access", + [sym_file_lock] = "file_lock", + [sym_file_number] = "file_number", + [sym_input_statement] = "input_statement", + [sym_line_input_statement] = "line_input_statement", + [sym_print_statement] = "print_statement", + [sym_write_statement] = "write_statement", + [sym__required_file_number] = "file_number", + [sym_output_list] = "output_list", + [sym__print_method_output_list] = "output_list", + [sym__print_output_expression] = "_print_output_expression", + [sym__unparenthesized_print_output_expression] = "_unparenthesized_print_output_expression", + [sym__print_output_call_binary_expression] = "binary_expression", + [sym__print_output_call_operand] = "_print_output_call_operand", + [sym__print_output_member_comparison_expression] = "comparison_expression", + [sym__print_output_call_member_expression] = "qualified_member_expression", + [sym__print_output_call_expression] = "call_expression", + [sym__print_output_qualified_callable] = "qualified_member_expression", + [sym_char_position] = "char_position", + [sym_print_argument_sequence] = "print_argument_sequence", + [sym_debug_print_statement] = "debug_print_statement", + [sym_close_statement] = "close_statement", + [sym_get_statement] = "get_statement", + [sym_put_statement] = "put_statement", + [sym_lock_statement] = "lock_statement", + [sym_unlock_statement] = "unlock_statement", + [sym_file_record_range] = "file_record_range", + [sym_seek_statement] = "seek_statement", + [sym_raise_event_statement] = "raise_event_statement", + [sym_name_statement] = "name_statement", + [sym_load_statement] = "load_statement", + [sym_unload_statement] = "unload_statement", + [sym_def_type_statement] = "def_type_statement", + [sym_letter_range] = "letter_range", + [sym_set_statement] = "set_statement", + [sym_assignment_statement] = "assignment_statement", + [sym_coordinate_pair] = "coordinate_pair", + [sym_call_statement] = "call_statement", + [sym_expression_statement] = "expression_statement", + [sym_argument_list] = "argument_list", + [sym_unparenthesized_argument_list] = "unparenthesized_argument_list", + [sym_line_range_argument_list] = "line_range_argument_list", + [sym__argument_sequence] = "_argument_sequence", + [sym__unparenthesized_argument_sequence] = "_unparenthesized_argument_sequence", + [sym__omitted_argument_sequence] = "_omitted_argument_sequence", + [sym__argument] = "_argument", + [sym_named_argument] = "named_argument", + [sym_byval_argument] = "byval_argument", + [sym__condition_expression] = "_condition_expression", + [sym__primary_expression] = "_primary_expression", + [sym__expression] = "_expression", + [sym_comparison_expression] = "comparison_expression", + [sym_comparison_operator] = "comparison_operator", + [sym__comparison_operand] = "_comparison_operand", + [sym_logical_value_expression] = "logical_value_expression", + [sym_condition_binary_expression] = "condition_binary_expression", + [sym_parenthesized_condition_expression] = "parenthesized_condition_expression", + [sym__assignable_expression] = "_assignable_expression", + [sym__callable_expression] = "_callable_expression", + [sym__print_method_callee] = "_print_method_callee", + [sym__print_method_call_expression] = "call_expression", + [sym__qualified_print_method_expression] = "qualified_member_expression", + [sym__implicit_print_method_expression] = "implicit_member_expression", + [sym__line_method_expression] = "qualified_member_expression", + [sym_call_expression] = "call_expression", + [sym_new_expression] = "new_expression", + [sym_addressof_expression] = "addressof_expression", + [sym_type_of_expression] = "type_of_expression", + [sym_member_expression] = "member_expression", + [sym_qualified_member_expression] = "qualified_member_expression", + [sym_implicit_member_expression] = "implicit_member_expression", + [sym__member_property] = "_member_property", + [sym_parenthesized_expression] = "parenthesized_expression", + [sym_binary_expression] = "binary_expression", + [sym_unary_expression] = "unary_expression", + [sym__signed_unary_expression] = "_signed_unary_expression", + [sym__literal] = "_literal", + [sym_boolean_literal] = "boolean_literal", + [sym_file_number_literal] = "file_number_literal", + [aux_sym_source_file_repeat1] = "source_file_repeat1", + [aux_sym_frm_begin_block_repeat1] = "frm_begin_block_repeat1", + [aux_sym_frm_begin_property_block_repeat1] = "frm_begin_property_block_repeat1", + [aux_sym__attribute_member_expression_repeat1] = "_attribute_member_expression_repeat1", + [aux_sym_type_declaration_repeat1] = "type_declaration_repeat1", + [aux_sym_type_preprocessor_if_repeat1] = "type_preprocessor_if_repeat1", + [aux_sym_type_preprocessor_block_repeat1] = "type_preprocessor_block_repeat1", + [aux_sym_enum_declaration_repeat1] = "enum_declaration_repeat1", + [aux_sym_preprocessor_if_repeat1] = "preprocessor_if_repeat1", + [aux_sym_preprocessor_block_repeat1] = "preprocessor_block_repeat1", + [aux_sym__conditional_sub_headers_repeat1] = "_conditional_sub_headers_repeat1", + [aux_sym__conditional_function_headers_repeat1] = "_conditional_function_headers_repeat1", + [aux_sym__conditional_property_headers_repeat1] = "_conditional_property_headers_repeat1", + [aux_sym_block_repeat1] = "block_repeat1", + [aux_sym_variable_declaration_repeat1] = "variable_declaration_repeat1", + [aux_sym_const_declaration_repeat1] = "const_declaration_repeat1", + [aux_sym_parameter_list_repeat1] = "parameter_list_repeat1", + [aux_sym_array_bounds_repeat1] = "array_bounds_repeat1", + [aux_sym_dotted_type_expression_repeat1] = "dotted_type_expression_repeat1", + [aux_sym_inline_statement_sequence_repeat1] = "inline_statement_sequence_repeat1", + [aux_sym_select_statement_repeat1] = "select_statement_repeat1", + [aux_sym_case_clause_repeat1] = "case_clause_repeat1", + [aux_sym_next_variable_list_repeat1] = "next_variable_list_repeat1", + [aux_sym_on_goto_statement_repeat1] = "on_goto_statement_repeat1", + [aux_sym_redim_statement_repeat1] = "redim_statement_repeat1", + [aux_sym_erase_statement_repeat1] = "erase_statement_repeat1", + [aux_sym_input_statement_repeat1] = "input_statement_repeat1", + [aux_sym_output_list_repeat1] = "output_list_repeat1", + [aux_sym_print_argument_sequence_repeat1] = "print_argument_sequence_repeat1", + [aux_sym_close_statement_repeat1] = "close_statement_repeat1", + [aux_sym_def_type_statement_repeat1] = "def_type_statement_repeat1", + [aux_sym__argument_sequence_repeat1] = "_argument_sequence_repeat1", + [aux_sym__argument_sequence_repeat2] = "_argument_sequence_repeat2", + [aux_sym__unparenthesized_argument_sequence_repeat1] = "_unparenthesized_argument_sequence_repeat1", + [alias_sym_line_number_literal] = "line_number_literal", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym_identifier] = sym_identifier, + [sym_newline] = sym_newline, + [anon_sym_COLON] = anon_sym_COLON, + [sym_line_continuation] = sym_line_continuation, + [sym_comment] = sym_comment, + [aux_sym_frm_version_statement_token1] = aux_sym_frm_version_statement_token1, + [aux_sym_frm_begin_block_token1] = aux_sym_frm_begin_block_token1, + [aux_sym_frm_begin_block_token2] = aux_sym_frm_begin_block_token2, + [aux_sym_frm_begin_property_block_token1] = aux_sym_frm_begin_property_block_token1, + [aux_sym_frm_begin_property_block_token2] = aux_sym_frm_begin_property_block_token2, + [aux_sym_frm_property_statement_token1] = aux_sym_frm_property_statement_token1, + [anon_sym_EQ] = anon_sym_EQ, + [sym_frm_property_text] = sym_frm_property_text, + [sym_frm_quoted_property_text] = sym_frm_quoted_property_text, + [aux_sym_attribute_statement_token1] = aux_sym_attribute_statement_token1, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_BANG] = anon_sym_BANG, + [aux_sym__attribute_identifier_token1] = aux_sym__attribute_identifier_token1, + [aux_sym_option_statement_token1] = aux_sym_option_statement_token1, + [aux_sym_option_statement_token2] = aux_sym_option_statement_token2, + [aux_sym_option_statement_token3] = aux_sym_option_statement_token3, + [aux_sym_option_statement_token4] = aux_sym_option_statement_token4, + [aux_sym_option_statement_token5] = aux_sym_option_statement_token5, + [aux_sym_option_statement_token6] = aux_sym_option_statement_token6, + [aux_sym_option_statement_token7] = aux_sym_option_statement_token7, + [aux_sym_option_statement_token8] = aux_sym_option_statement_token8, + [aux_sym_option_statement_token9] = aux_sym_option_statement_token9, + [aux_sym_implements_statement_token1] = aux_sym_implements_statement_token1, + [aux_sym_type_declaration_token1] = aux_sym_type_declaration_token1, + [aux_sym_type_preprocessor_if_token1] = aux_sym_type_preprocessor_if_token1, + [aux_sym_type_preprocessor_if_token2] = aux_sym_type_preprocessor_if_token2, + [aux_sym_type_preprocessor_if_token3] = aux_sym_type_preprocessor_if_token3, + [aux_sym_type_preprocessor_if_token4] = aux_sym_type_preprocessor_if_token4, + [aux_sym_type_preprocessor_elseif_token1] = aux_sym_type_preprocessor_elseif_token1, + [aux_sym_type_preprocessor_else_token1] = aux_sym_type_preprocessor_else_token1, + [aux_sym_enum_declaration_token1] = aux_sym_enum_declaration_token1, + [aux_sym_declare_sub_statement_token1] = aux_sym_declare_sub_statement_token1, + [aux_sym_declare_sub_statement_token2] = aux_sym_declare_sub_statement_token2, + [aux_sym_declare_sub_statement_token3] = aux_sym_declare_sub_statement_token3, + [aux_sym_declare_sub_statement_token4] = aux_sym_declare_sub_statement_token4, + [aux_sym_declare_function_statement_token1] = aux_sym_declare_function_statement_token1, + [aux_sym_preprocessor_const_token1] = aux_sym_preprocessor_const_token1, + [aux_sym__property_get_header_token1] = aux_sym__property_get_header_token1, + [aux_sym_event_declaration_token1] = aux_sym_event_declaration_token1, + [sym_static_modifier] = sym_static_modifier, + [sym__dim_keyword] = sym__dim_keyword, + [sym__redim_keyword] = sym__redim_keyword, + [sym_with_events_modifier] = sym_with_events_modifier, + [sym_ptrsafe_modifier] = sym_ptrsafe_modifier, + [aux_sym_byval_modifier_token1] = aux_sym_byval_modifier_token1, + [sym_byref_modifier] = sym_byref_modifier, + [sym_optional_modifier] = sym_optional_modifier, + [sym_paramarray_modifier] = sym_paramarray_modifier, + [aux_sym_get_accessor_token1] = aux_sym_get_accessor_token1, + [sym_let_accessor] = sym_let_accessor, + [aux_sym_set_accessor_token1] = aux_sym_set_accessor_token1, + [anon_sym_COMMA] = anon_sym_COMMA, + [aux_sym_const_declaration_token1] = aux_sym_const_declaration_token1, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [aux_sym_as_type_clause_token1] = aux_sym_as_type_clause_token1, + [aux_sym_as_type_clause_token2] = aux_sym_as_type_clause_token2, + [anon_sym_STAR] = anon_sym_STAR, + [aux_sym_array_bound_token1] = aux_sym_array_bound_token1, + [aux_sym_type_expression_token1] = aux_sym_type_expression_token1, + [aux_sym_type_expression_token2] = aux_sym_type_expression_token2, + [aux_sym_type_expression_token3] = aux_sym_type_expression_token3, + [aux_sym_type_expression_token4] = aux_sym_type_expression_token4, + [aux_sym_type_expression_token5] = aux_sym_type_expression_token5, + [aux_sym_type_expression_token6] = aux_sym_type_expression_token6, + [aux_sym_type_expression_token7] = aux_sym_type_expression_token7, + [aux_sym_type_expression_token8] = aux_sym_type_expression_token8, + [aux_sym_type_expression_token9] = aux_sym_type_expression_token9, + [aux_sym_type_expression_token10] = aux_sym_type_expression_token10, + [aux_sym_type_expression_token11] = aux_sym_type_expression_token11, + [aux_sym_type_expression_token12] = aux_sym_type_expression_token12, + [aux_sym_type_expression_token13] = aux_sym_type_expression_token13, + [aux_sym_dotted_type_expression_token1] = aux_sym_dotted_type_expression_token1, + [aux_sym_visibility_token1] = aux_sym_visibility_token1, + [aux_sym_visibility_token2] = aux_sym_visibility_token2, + [aux_sym_elseif_fragment_token1] = aux_sym_elseif_fragment_token1, + [aux_sym_else_fragment_token1] = aux_sym_else_fragment_token1, + [aux_sym_select_statement_token1] = aux_sym_select_statement_token1, + [aux_sym_select_statement_token2] = aux_sym_select_statement_token2, + [aux_sym_case_expression_token1] = aux_sym_case_expression_token1, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_LT_GT] = anon_sym_LT_GT, + [aux_sym__multiline_for_tail_token1] = aux_sym__multiline_for_tail_token1, + [aux_sym__for_header_token1] = aux_sym__for_header_token1, + [aux_sym__for_header_token2] = aux_sym__for_header_token2, + [aux_sym__for_each_header_token1] = aux_sym__for_each_header_token1, + [aux_sym__for_each_header_token2] = aux_sym__for_each_header_token2, + [aux_sym_do_statement_token1] = aux_sym_do_statement_token1, + [aux_sym_do_statement_token2] = aux_sym_do_statement_token2, + [aux_sym_do_condition_token1] = aux_sym_do_condition_token1, + [aux_sym_do_condition_token2] = aux_sym_do_condition_token2, + [aux_sym_while_statement_token1] = aux_sym_while_statement_token1, + [aux_sym_with_statement_token1] = aux_sym_with_statement_token1, + [aux_sym_exit_statement_token1] = aux_sym_exit_statement_token1, + [sym_end_statement] = sym_end_statement, + [aux_sym_on_goto_statement_token1] = aux_sym_on_goto_statement_token1, + [aux_sym_on_goto_statement_token2] = aux_sym_on_goto_statement_token2, + [aux_sym_on_goto_statement_token3] = aux_sym_on_goto_statement_token3, + [aux_sym_on_error_statement_token1] = aux_sym_on_error_statement_token1, + [aux_sym_on_error_statement_token2] = aux_sym_on_error_statement_token2, + [aux_sym_redim_statement_token1] = aux_sym_redim_statement_token1, + [sym__ambiguous_redim_statement] = sym__ambiguous_redim_statement, + [aux_sym_erase_statement_token1] = aux_sym_erase_statement_token1, + [aux_sym_open_statement_token1] = aux_sym_open_statement_token1, + [aux_sym_open_statement_token2] = aux_sym_open_statement_token2, + [aux_sym_open_statement_token3] = aux_sym_open_statement_token3, + [aux_sym_file_mode_token1] = aux_sym_file_mode_token1, + [aux_sym_file_mode_token2] = aux_sym_file_mode_token2, + [aux_sym_file_mode_token3] = aux_sym_file_mode_token3, + [aux_sym_file_mode_token4] = aux_sym_file_mode_token4, + [aux_sym_file_access_token1] = aux_sym_file_access_token1, + [aux_sym_file_access_token2] = aux_sym_file_access_token2, + [aux_sym_file_lock_token1] = aux_sym_file_lock_token1, + [aux_sym_file_lock_token2] = aux_sym_file_lock_token2, + [aux_sym_print_statement_token1] = aux_sym_print_statement_token1, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_BSLASH] = anon_sym_BSLASH, + [aux_sym__print_output_call_binary_expression_token1] = aux_sym__print_output_call_binary_expression_token1, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_AMP] = anon_sym_AMP, + [aux_sym__print_output_call_binary_expression_token2] = aux_sym__print_output_call_binary_expression_token2, + [aux_sym__print_output_call_binary_expression_token3] = aux_sym__print_output_call_binary_expression_token3, + [aux_sym__print_output_call_binary_expression_token4] = aux_sym__print_output_call_binary_expression_token4, + [aux_sym__print_output_call_binary_expression_token5] = aux_sym__print_output_call_binary_expression_token5, + [aux_sym__print_output_call_binary_expression_token6] = aux_sym__print_output_call_binary_expression_token6, + [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym_QMARK] = anon_sym_QMARK, + [aux_sym_close_statement_token1] = aux_sym_close_statement_token1, + [aux_sym_put_statement_token1] = aux_sym_put_statement_token1, + [aux_sym_unlock_statement_token1] = aux_sym_unlock_statement_token1, + [aux_sym_seek_statement_token1] = aux_sym_seek_statement_token1, + [sym_reset_statement] = sym_reset_statement, + [aux_sym_raise_event_statement_token1] = aux_sym_raise_event_statement_token1, + [sym_stop_statement] = sym_stop_statement, + [sym_beep_statement] = sym_beep_statement, + [aux_sym_unload_statement_token1] = aux_sym_unload_statement_token1, + [aux_sym_def_type_statement_token1] = aux_sym_def_type_statement_token1, + [aux_sym_def_type_statement_token2] = aux_sym_def_type_statement_token2, + [aux_sym_def_type_statement_token3] = aux_sym_def_type_statement_token3, + [aux_sym_def_type_statement_token4] = aux_sym_def_type_statement_token4, + [aux_sym_def_type_statement_token5] = aux_sym_def_type_statement_token5, + [aux_sym_def_type_statement_token6] = aux_sym_def_type_statement_token6, + [aux_sym_def_type_statement_token7] = aux_sym_def_type_statement_token7, + [aux_sym_def_type_statement_token8] = aux_sym_def_type_statement_token8, + [aux_sym_def_type_statement_token9] = aux_sym_def_type_statement_token9, + [aux_sym_def_type_statement_token10] = aux_sym_def_type_statement_token10, + [aux_sym_def_type_statement_token11] = aux_sym_def_type_statement_token11, + [aux_sym_def_type_statement_token12] = aux_sym_def_type_statement_token12, + [aux_sym_def_type_statement_token13] = aux_sym_def_type_statement_token13, + [aux_sym_def_type_statement_token14] = aux_sym_def_type_statement_token14, + [aux_sym_call_statement_token1] = aux_sym_call_statement_token1, + [sym__ambiguous_call_statement] = sym__ambiguous_call_statement, + [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, + [aux_sym_comparison_operator_token1] = aux_sym_comparison_operator_token1, + [aux_sym_addressof_expression_token1] = aux_sym_addressof_expression_token1, + [aux_sym_type_of_expression_token1] = aux_sym_type_of_expression_token1, + [aux_sym_unary_expression_token1] = aux_sym_unary_expression_token1, + [sym_string_literal] = sym_string_literal, + [sym_number_literal] = sym_number_literal, + [aux_sym_boolean_literal_token1] = aux_sym_boolean_literal_token1, + [aux_sym_boolean_literal_token2] = aux_sym_boolean_literal_token2, + [sym_nothing_literal] = sym_nothing_literal, + [sym_null_literal] = sym_null_literal, + [sym_empty_literal] = sym_empty_literal, + [sym_date_literal] = sym_date_literal, + [sym_guid_literal] = sym_guid_literal, + [anon_sym_POUND] = anon_sym_POUND, + [sym_source_file] = sym_source_file, + [sym__top_level_item] = sym__top_level_item, + [sym__statement_separator] = sym__statement_separator, + [sym_frm_version_statement] = sym_frm_version_statement, + [sym_frm_begin_block] = sym_frm_begin_block, + [sym_frm_begin_property_block] = sym_frm_begin_property_block, + [sym_frm_property_statement] = sym_frm_property_statement, + [sym__frm_property_value] = sym__frm_property_value, + [sym_frm_blob_reference] = sym_frm_blob_reference, + [sym_attribute_statement] = sym_attribute_statement, + [sym__attribute_name] = sym__attribute_name, + [sym__attribute_member_expression] = sym_qualified_member_expression, + [sym__attribute_identifier] = sym__attribute_identifier, + [sym_option_statement] = sym_option_statement, + [sym_implements_statement] = sym_implements_statement, + [sym_type_declaration] = sym_type_declaration, + [sym_type_member] = sym_type_member, + [sym_type_preprocessor_if] = sym_type_preprocessor_if, + [sym_type_preprocessor_block] = sym_type_preprocessor_block, + [sym_type_preprocessor_elseif] = sym_type_preprocessor_elseif, + [sym_type_preprocessor_else] = sym_type_preprocessor_else, + [sym_enum_declaration] = sym_enum_declaration, + [sym_enum_member] = sym_enum_member, + [sym_declare_sub_statement] = sym_declare_sub_statement, + [sym_declare_function_statement] = sym_declare_function_statement, + [sym_preprocessor_const] = sym_preprocessor_const, + [sym_preprocessor_if] = sym_preprocessor_if, + [sym_preprocessor_block] = sym_preprocessor_block, + [sym__preprocessor_item] = sym__preprocessor_item, + [sym_preprocessor_elseif] = sym_preprocessor_elseif, + [sym_preprocessor_else] = sym_preprocessor_else, + [sym_sub_declaration] = sym_sub_declaration, + [sym_function_declaration] = sym_function_declaration, + [sym_property_get_declaration] = sym_property_get_declaration, + [sym_property_let_declaration] = sym_property_let_declaration, + [sym_property_set_declaration] = sym_property_set_declaration, + [sym__sub_header] = sym__sub_header, + [sym__function_header] = sym__function_header, + [sym__property_header] = sym__property_header, + [sym__property_get_header] = sym__property_get_header, + [sym__property_let_header] = sym__property_let_header, + [sym__property_set_header] = sym__property_set_header, + [sym_conditional_sub_declaration] = sym_conditional_sub_declaration, + [sym_conditional_function_declaration] = sym_conditional_function_declaration, + [sym_conditional_property_declaration] = sym_conditional_property_declaration, + [sym__conditional_sub_headers] = sym__conditional_sub_headers, + [sym__conditional_function_headers] = sym__conditional_function_headers, + [sym__conditional_property_headers] = sym__conditional_property_headers, + [sym_event_declaration] = sym_event_declaration, + [sym__procedure_modifier] = sym__procedure_modifier, + [aux_sym__procedure_attributes] = aux_sym__procedure_attributes, + [sym_end_sub_statement] = sym_end_sub_statement, + [sym_end_function_statement] = sym_end_function_statement, + [sym_end_property_statement] = sym_end_property_statement, + [sym_byval_modifier] = sym_byval_modifier, + [sym_get_accessor] = sym_get_accessor, + [sym_set_accessor] = sym_set_accessor, + [sym_block] = sym_block, + [sym_conditional_branch_body] = sym_conditional_branch_body, + [sym__statement] = sym__statement, + [sym_variable_declaration] = sym_variable_declaration, + [sym_const_declaration] = sym_const_declaration, + [sym_variable_declarator] = sym_variable_declarator, + [sym_const_declarator] = sym_const_declarator, + [sym_initializer] = sym_initializer, + [sym_parameter_list] = sym_parameter_list, + [sym_parameter] = sym_parameter, + [sym_as_type_clause] = sym_as_type_clause, + [sym_fixed_string_length] = sym_fixed_string_length, + [sym_array_bounds] = sym_array_bounds, + [sym_array_bound] = sym_array_bound, + [sym_type_expression] = sym_type_expression, + [sym_dotted_type_expression] = sym_dotted_type_expression, + [sym_visibility] = sym_visibility, + [sym_if_statement] = sym_if_statement, + [sym_elseif_fragment] = sym_elseif_fragment, + [sym_else_fragment] = sym_else_fragment, + [sym_end_if_fragment] = sym_end_if_fragment, + [sym_single_line_if_statement] = sym_single_line_if_statement, + [sym_inline_statement_sequence] = sym_inline_statement_sequence, + [sym__inline_statement] = sym__inline_statement, + [sym_select_statement] = sym_select_statement, + [sym_case_clause] = sym_case_clause, + [sym_case_expression] = sym_case_expression, + [sym_for_statement] = sym_for_statement, + [sym__inline_for_statement] = sym_for_statement, + [sym_for_each_statement] = sym_for_each_statement, + [sym__inline_for_each_statement] = sym_for_each_statement, + [sym__multiline_for_tail] = sym__multiline_for_tail, + [sym__inline_for_tail] = sym__inline_for_tail, + [sym__for_header] = sym__for_header, + [sym__for_each_header] = sym__for_each_header, + [sym_do_statement] = sym_do_statement, + [sym__inline_do_statement] = sym_do_statement, + [sym_do_condition] = sym_do_condition, + [sym_while_statement] = sym_while_statement, + [sym_with_statement] = sym_with_statement, + [sym__inline_with_statement] = sym_with_statement, + [sym_single_line_block] = sym_single_line_block, + [sym_shared_next_for_body] = sym_shared_next_for_body, + [sym_next_variable_list] = sym_next_variable_list, + [sym_exit_statement] = sym_exit_statement, + [sym_on_goto_statement] = sym_on_goto_statement, + [sym_on_error_statement] = sym_on_error_statement, + [sym_resume_statement] = sym_resume_statement, + [sym_goto_statement] = sym_goto_statement, + [sym_label_statement] = sym_label_statement, + [sym_line_number_prefix] = sym_line_number_prefix, + [sym_line_number_statement] = sym_line_number_statement, + [sym_line_number_top_level_item] = sym_line_number_top_level_item, + [sym__numbered_statement] = sym__numbered_statement, + [sym_redim_statement] = sym_redim_statement, + [sym_redim_declarator] = sym_redim_declarator, + [sym_erase_statement] = sym_erase_statement, + [sym_open_statement] = sym_open_statement, + [sym_file_mode] = sym_file_mode, + [sym_file_access] = sym_file_access, + [sym_file_lock] = sym_file_lock, + [sym_file_number] = sym_file_number, + [sym_input_statement] = sym_input_statement, + [sym_line_input_statement] = sym_line_input_statement, + [sym_print_statement] = sym_print_statement, + [sym_write_statement] = sym_write_statement, + [sym__required_file_number] = sym_file_number, + [sym_output_list] = sym_output_list, + [sym__print_method_output_list] = sym_output_list, + [sym__print_output_expression] = sym__print_output_expression, + [sym__unparenthesized_print_output_expression] = sym__unparenthesized_print_output_expression, + [sym__print_output_call_binary_expression] = sym_binary_expression, + [sym__print_output_call_operand] = sym__print_output_call_operand, + [sym__print_output_member_comparison_expression] = sym_comparison_expression, + [sym__print_output_call_member_expression] = sym_qualified_member_expression, + [sym__print_output_call_expression] = sym_call_expression, + [sym__print_output_qualified_callable] = sym_qualified_member_expression, + [sym_char_position] = sym_char_position, + [sym_print_argument_sequence] = sym_print_argument_sequence, + [sym_debug_print_statement] = sym_debug_print_statement, + [sym_close_statement] = sym_close_statement, + [sym_get_statement] = sym_get_statement, + [sym_put_statement] = sym_put_statement, + [sym_lock_statement] = sym_lock_statement, + [sym_unlock_statement] = sym_unlock_statement, + [sym_file_record_range] = sym_file_record_range, + [sym_seek_statement] = sym_seek_statement, + [sym_raise_event_statement] = sym_raise_event_statement, + [sym_name_statement] = sym_name_statement, + [sym_load_statement] = sym_load_statement, + [sym_unload_statement] = sym_unload_statement, + [sym_def_type_statement] = sym_def_type_statement, + [sym_letter_range] = sym_letter_range, + [sym_set_statement] = sym_set_statement, + [sym_assignment_statement] = sym_assignment_statement, + [sym_coordinate_pair] = sym_coordinate_pair, + [sym_call_statement] = sym_call_statement, + [sym_expression_statement] = sym_expression_statement, + [sym_argument_list] = sym_argument_list, + [sym_unparenthesized_argument_list] = sym_unparenthesized_argument_list, + [sym_line_range_argument_list] = sym_line_range_argument_list, + [sym__argument_sequence] = sym__argument_sequence, + [sym__unparenthesized_argument_sequence] = sym__unparenthesized_argument_sequence, + [sym__omitted_argument_sequence] = sym__omitted_argument_sequence, + [sym__argument] = sym__argument, + [sym_named_argument] = sym_named_argument, + [sym_byval_argument] = sym_byval_argument, + [sym__condition_expression] = sym__condition_expression, + [sym__primary_expression] = sym__primary_expression, + [sym__expression] = sym__expression, + [sym_comparison_expression] = sym_comparison_expression, + [sym_comparison_operator] = sym_comparison_operator, + [sym__comparison_operand] = sym__comparison_operand, + [sym_logical_value_expression] = sym_logical_value_expression, + [sym_condition_binary_expression] = sym_condition_binary_expression, + [sym_parenthesized_condition_expression] = sym_parenthesized_condition_expression, + [sym__assignable_expression] = sym__assignable_expression, + [sym__callable_expression] = sym__callable_expression, + [sym__print_method_callee] = sym__print_method_callee, + [sym__print_method_call_expression] = sym_call_expression, + [sym__qualified_print_method_expression] = sym_qualified_member_expression, + [sym__implicit_print_method_expression] = sym_implicit_member_expression, + [sym__line_method_expression] = sym_qualified_member_expression, + [sym_call_expression] = sym_call_expression, + [sym_new_expression] = sym_new_expression, + [sym_addressof_expression] = sym_addressof_expression, + [sym_type_of_expression] = sym_type_of_expression, + [sym_member_expression] = sym_member_expression, + [sym_qualified_member_expression] = sym_qualified_member_expression, + [sym_implicit_member_expression] = sym_implicit_member_expression, + [sym__member_property] = sym__member_property, + [sym_parenthesized_expression] = sym_parenthesized_expression, + [sym_binary_expression] = sym_binary_expression, + [sym_unary_expression] = sym_unary_expression, + [sym__signed_unary_expression] = sym__signed_unary_expression, + [sym__literal] = sym__literal, + [sym_boolean_literal] = sym_boolean_literal, + [sym_file_number_literal] = sym_file_number_literal, + [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, + [aux_sym_frm_begin_block_repeat1] = aux_sym_frm_begin_block_repeat1, + [aux_sym_frm_begin_property_block_repeat1] = aux_sym_frm_begin_property_block_repeat1, + [aux_sym__attribute_member_expression_repeat1] = aux_sym__attribute_member_expression_repeat1, + [aux_sym_type_declaration_repeat1] = aux_sym_type_declaration_repeat1, + [aux_sym_type_preprocessor_if_repeat1] = aux_sym_type_preprocessor_if_repeat1, + [aux_sym_type_preprocessor_block_repeat1] = aux_sym_type_preprocessor_block_repeat1, + [aux_sym_enum_declaration_repeat1] = aux_sym_enum_declaration_repeat1, + [aux_sym_preprocessor_if_repeat1] = aux_sym_preprocessor_if_repeat1, + [aux_sym_preprocessor_block_repeat1] = aux_sym_preprocessor_block_repeat1, + [aux_sym__conditional_sub_headers_repeat1] = aux_sym__conditional_sub_headers_repeat1, + [aux_sym__conditional_function_headers_repeat1] = aux_sym__conditional_function_headers_repeat1, + [aux_sym__conditional_property_headers_repeat1] = aux_sym__conditional_property_headers_repeat1, + [aux_sym_block_repeat1] = aux_sym_block_repeat1, + [aux_sym_variable_declaration_repeat1] = aux_sym_variable_declaration_repeat1, + [aux_sym_const_declaration_repeat1] = aux_sym_const_declaration_repeat1, + [aux_sym_parameter_list_repeat1] = aux_sym_parameter_list_repeat1, + [aux_sym_array_bounds_repeat1] = aux_sym_array_bounds_repeat1, + [aux_sym_dotted_type_expression_repeat1] = aux_sym_dotted_type_expression_repeat1, + [aux_sym_inline_statement_sequence_repeat1] = aux_sym_inline_statement_sequence_repeat1, + [aux_sym_select_statement_repeat1] = aux_sym_select_statement_repeat1, + [aux_sym_case_clause_repeat1] = aux_sym_case_clause_repeat1, + [aux_sym_next_variable_list_repeat1] = aux_sym_next_variable_list_repeat1, + [aux_sym_on_goto_statement_repeat1] = aux_sym_on_goto_statement_repeat1, + [aux_sym_redim_statement_repeat1] = aux_sym_redim_statement_repeat1, + [aux_sym_erase_statement_repeat1] = aux_sym_erase_statement_repeat1, + [aux_sym_input_statement_repeat1] = aux_sym_input_statement_repeat1, + [aux_sym_output_list_repeat1] = aux_sym_output_list_repeat1, + [aux_sym_print_argument_sequence_repeat1] = aux_sym_print_argument_sequence_repeat1, + [aux_sym_close_statement_repeat1] = aux_sym_close_statement_repeat1, + [aux_sym_def_type_statement_repeat1] = aux_sym_def_type_statement_repeat1, + [aux_sym__argument_sequence_repeat1] = aux_sym__argument_sequence_repeat1, + [aux_sym__argument_sequence_repeat2] = aux_sym__argument_sequence_repeat2, + [aux_sym__unparenthesized_argument_sequence_repeat1] = aux_sym__unparenthesized_argument_sequence_repeat1, + [alias_sym_line_number_literal] = alias_sym_line_number_literal, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [sym_identifier] = { + .visible = true, + .named = true, + }, + [sym_newline] = { + .visible = true, + .named = true, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [sym_line_continuation] = { + .visible = true, + .named = true, + }, + [sym_comment] = { + .visible = true, + .named = true, + }, + [aux_sym_frm_version_statement_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_frm_begin_block_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_frm_begin_block_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_frm_begin_property_block_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_frm_begin_property_block_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_frm_property_statement_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [sym_frm_property_text] = { + .visible = true, + .named = true, + }, + [sym_frm_quoted_property_text] = { + .visible = true, + .named = true, + }, + [aux_sym_attribute_statement_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG] = { + .visible = true, + .named = false, + }, + [aux_sym__attribute_identifier_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_option_statement_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_option_statement_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_option_statement_token3] = { + .visible = false, + .named = false, + }, + [aux_sym_option_statement_token4] = { + .visible = false, + .named = false, + }, + [aux_sym_option_statement_token5] = { + .visible = false, + .named = false, + }, + [aux_sym_option_statement_token6] = { + .visible = false, + .named = false, + }, + [aux_sym_option_statement_token7] = { + .visible = false, + .named = false, + }, + [aux_sym_option_statement_token8] = { + .visible = false, + .named = false, + }, + [aux_sym_option_statement_token9] = { + .visible = false, + .named = false, + }, + [aux_sym_implements_statement_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_declaration_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_preprocessor_if_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_preprocessor_if_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_type_preprocessor_if_token3] = { + .visible = false, + .named = false, + }, + [aux_sym_type_preprocessor_if_token4] = { + .visible = false, + .named = false, + }, + [aux_sym_type_preprocessor_elseif_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_preprocessor_else_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_enum_declaration_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_declare_sub_statement_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_declare_sub_statement_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_declare_sub_statement_token3] = { + .visible = false, + .named = false, + }, + [aux_sym_declare_sub_statement_token4] = { + .visible = false, + .named = false, + }, + [aux_sym_declare_function_statement_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_preprocessor_const_token1] = { + .visible = false, + .named = false, + }, + [aux_sym__property_get_header_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_event_declaration_token1] = { + .visible = false, + .named = false, + }, + [sym_static_modifier] = { + .visible = true, + .named = true, + }, + [sym__dim_keyword] = { + .visible = false, + .named = true, + }, + [sym__redim_keyword] = { + .visible = false, + .named = true, + }, + [sym_with_events_modifier] = { + .visible = true, + .named = true, + }, + [sym_ptrsafe_modifier] = { + .visible = true, + .named = true, + }, + [aux_sym_byval_modifier_token1] = { + .visible = false, + .named = false, + }, + [sym_byref_modifier] = { + .visible = true, + .named = true, + }, + [sym_optional_modifier] = { + .visible = true, + .named = true, + }, + [sym_paramarray_modifier] = { + .visible = true, + .named = true, + }, + [aux_sym_get_accessor_token1] = { + .visible = false, + .named = false, + }, + [sym_let_accessor] = { + .visible = true, + .named = true, + }, + [aux_sym_set_accessor_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [aux_sym_const_declaration_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [aux_sym_as_type_clause_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_as_type_clause_token2] = { + .visible = false, + .named = false, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [aux_sym_array_bound_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_expression_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_expression_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_type_expression_token3] = { + .visible = false, + .named = false, + }, + [aux_sym_type_expression_token4] = { + .visible = false, + .named = false, + }, + [aux_sym_type_expression_token5] = { + .visible = false, + .named = false, + }, + [aux_sym_type_expression_token6] = { + .visible = false, + .named = false, + }, + [aux_sym_type_expression_token7] = { + .visible = false, + .named = false, + }, + [aux_sym_type_expression_token8] = { + .visible = false, + .named = false, + }, + [aux_sym_type_expression_token9] = { + .visible = false, + .named = false, + }, + [aux_sym_type_expression_token10] = { + .visible = false, + .named = false, + }, + [aux_sym_type_expression_token11] = { + .visible = false, + .named = false, + }, + [aux_sym_type_expression_token12] = { + .visible = false, + .named = false, + }, + [aux_sym_type_expression_token13] = { + .visible = false, + .named = false, + }, + [aux_sym_dotted_type_expression_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_visibility_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_visibility_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_elseif_fragment_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_else_fragment_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_select_statement_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_select_statement_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_case_expression_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_GT] = { + .visible = true, + .named = false, + }, + [aux_sym__multiline_for_tail_token1] = { + .visible = false, + .named = false, + }, + [aux_sym__for_header_token1] = { + .visible = false, + .named = false, + }, + [aux_sym__for_header_token2] = { + .visible = false, + .named = false, + }, + [aux_sym__for_each_header_token1] = { + .visible = false, + .named = false, + }, + [aux_sym__for_each_header_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_do_statement_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_do_statement_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_do_condition_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_do_condition_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_while_statement_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_with_statement_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_exit_statement_token1] = { + .visible = false, + .named = false, + }, + [sym_end_statement] = { + .visible = true, + .named = true, + }, + [aux_sym_on_goto_statement_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_on_goto_statement_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_on_goto_statement_token3] = { + .visible = false, + .named = false, + }, + [aux_sym_on_error_statement_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_on_error_statement_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_redim_statement_token1] = { + .visible = false, + .named = false, + }, + [sym__ambiguous_redim_statement] = { + .visible = false, + .named = true, + }, + [aux_sym_erase_statement_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_open_statement_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_open_statement_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_open_statement_token3] = { + .visible = false, + .named = false, + }, + [aux_sym_file_mode_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_file_mode_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_file_mode_token3] = { + .visible = false, + .named = false, + }, + [aux_sym_file_mode_token4] = { + .visible = false, + .named = false, + }, + [aux_sym_file_access_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_file_access_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_file_lock_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_file_lock_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_print_statement_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASH] = { + .visible = true, + .named = false, + }, + [aux_sym__print_output_call_binary_expression_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [aux_sym__print_output_call_binary_expression_token2] = { + .visible = false, + .named = false, + }, + [aux_sym__print_output_call_binary_expression_token3] = { + .visible = false, + .named = false, + }, + [aux_sym__print_output_call_binary_expression_token4] = { + .visible = false, + .named = false, + }, + [aux_sym__print_output_call_binary_expression_token5] = { + .visible = false, + .named = false, + }, + [aux_sym__print_output_call_binary_expression_token6] = { + .visible = false, + .named = false, + }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK] = { + .visible = true, + .named = false, + }, + [aux_sym_close_statement_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_put_statement_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_unlock_statement_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_seek_statement_token1] = { + .visible = false, + .named = false, + }, + [sym_reset_statement] = { + .visible = true, + .named = true, + }, + [aux_sym_raise_event_statement_token1] = { + .visible = false, + .named = false, + }, + [sym_stop_statement] = { + .visible = true, + .named = true, + }, + [sym_beep_statement] = { + .visible = true, + .named = true, + }, + [aux_sym_unload_statement_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_def_type_statement_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_def_type_statement_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_def_type_statement_token3] = { + .visible = false, + .named = false, + }, + [aux_sym_def_type_statement_token4] = { + .visible = false, + .named = false, + }, + [aux_sym_def_type_statement_token5] = { + .visible = false, + .named = false, + }, + [aux_sym_def_type_statement_token6] = { + .visible = false, + .named = false, + }, + [aux_sym_def_type_statement_token7] = { + .visible = false, + .named = false, + }, + [aux_sym_def_type_statement_token8] = { + .visible = false, + .named = false, + }, + [aux_sym_def_type_statement_token9] = { + .visible = false, + .named = false, + }, + [aux_sym_def_type_statement_token10] = { + .visible = false, + .named = false, + }, + [aux_sym_def_type_statement_token11] = { + .visible = false, + .named = false, + }, + [aux_sym_def_type_statement_token12] = { + .visible = false, + .named = false, + }, + [aux_sym_def_type_statement_token13] = { + .visible = false, + .named = false, + }, + [aux_sym_def_type_statement_token14] = { + .visible = false, + .named = false, + }, + [aux_sym_call_statement_token1] = { + .visible = false, + .named = false, + }, + [sym__ambiguous_call_statement] = { + .visible = false, + .named = true, + }, + [anon_sym_COLON_EQ] = { + .visible = true, + .named = false, + }, + [aux_sym_comparison_operator_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_addressof_expression_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_of_expression_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_unary_expression_token1] = { + .visible = false, + .named = false, + }, + [sym_string_literal] = { + .visible = true, + .named = true, + }, + [sym_number_literal] = { + .visible = true, + .named = true, + }, + [aux_sym_boolean_literal_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_boolean_literal_token2] = { + .visible = false, + .named = false, + }, + [sym_nothing_literal] = { + .visible = true, + .named = true, + }, + [sym_null_literal] = { + .visible = true, + .named = true, + }, + [sym_empty_literal] = { + .visible = true, + .named = true, + }, + [sym_date_literal] = { + .visible = true, + .named = true, + }, + [sym_guid_literal] = { + .visible = true, + .named = true, + }, + [anon_sym_POUND] = { + .visible = true, + .named = false, + }, + [sym_source_file] = { + .visible = true, + .named = true, + }, + [sym__top_level_item] = { + .visible = false, + .named = true, + }, + [sym__statement_separator] = { + .visible = false, + .named = true, + }, + [sym_frm_version_statement] = { + .visible = true, + .named = true, + }, + [sym_frm_begin_block] = { + .visible = true, + .named = true, + }, + [sym_frm_begin_property_block] = { + .visible = true, + .named = true, + }, + [sym_frm_property_statement] = { + .visible = true, + .named = true, + }, + [sym__frm_property_value] = { + .visible = false, + .named = true, + }, + [sym_frm_blob_reference] = { + .visible = true, + .named = true, + }, + [sym_attribute_statement] = { + .visible = true, + .named = true, + }, + [sym__attribute_name] = { + .visible = false, + .named = true, + }, + [sym__attribute_member_expression] = { + .visible = true, + .named = true, + }, + [sym__attribute_identifier] = { + .visible = false, + .named = true, + }, + [sym_option_statement] = { + .visible = true, + .named = true, + }, + [sym_implements_statement] = { + .visible = true, + .named = true, + }, + [sym_type_declaration] = { + .visible = true, + .named = true, + }, + [sym_type_member] = { + .visible = true, + .named = true, + }, + [sym_type_preprocessor_if] = { + .visible = true, + .named = true, + }, + [sym_type_preprocessor_block] = { + .visible = true, + .named = true, + }, + [sym_type_preprocessor_elseif] = { + .visible = true, + .named = true, + }, + [sym_type_preprocessor_else] = { + .visible = true, + .named = true, + }, + [sym_enum_declaration] = { + .visible = true, + .named = true, + }, + [sym_enum_member] = { + .visible = true, + .named = true, + }, + [sym_declare_sub_statement] = { + .visible = true, + .named = true, + }, + [sym_declare_function_statement] = { + .visible = true, + .named = true, + }, + [sym_preprocessor_const] = { + .visible = true, + .named = true, + }, + [sym_preprocessor_if] = { + .visible = true, + .named = true, + }, + [sym_preprocessor_block] = { + .visible = true, + .named = true, + }, + [sym__preprocessor_item] = { + .visible = false, + .named = true, + }, + [sym_preprocessor_elseif] = { + .visible = true, + .named = true, + }, + [sym_preprocessor_else] = { + .visible = true, + .named = true, + }, + [sym_sub_declaration] = { + .visible = true, + .named = true, + }, + [sym_function_declaration] = { + .visible = true, + .named = true, + }, + [sym_property_get_declaration] = { + .visible = true, + .named = true, + }, + [sym_property_let_declaration] = { + .visible = true, + .named = true, + }, + [sym_property_set_declaration] = { + .visible = true, + .named = true, + }, + [sym__sub_header] = { + .visible = false, + .named = true, + }, + [sym__function_header] = { + .visible = false, + .named = true, + }, + [sym__property_header] = { + .visible = false, + .named = true, + }, + [sym__property_get_header] = { + .visible = false, + .named = true, + }, + [sym__property_let_header] = { + .visible = false, + .named = true, + }, + [sym__property_set_header] = { + .visible = false, + .named = true, + }, + [sym_conditional_sub_declaration] = { + .visible = true, + .named = true, + }, + [sym_conditional_function_declaration] = { + .visible = true, + .named = true, + }, + [sym_conditional_property_declaration] = { + .visible = true, + .named = true, + }, + [sym__conditional_sub_headers] = { + .visible = false, + .named = true, + }, + [sym__conditional_function_headers] = { + .visible = false, + .named = true, + }, + [sym__conditional_property_headers] = { + .visible = false, + .named = true, + }, + [sym_event_declaration] = { + .visible = true, + .named = true, + }, + [sym__procedure_modifier] = { + .visible = false, + .named = true, + }, + [aux_sym__procedure_attributes] = { + .visible = false, + .named = false, + }, + [sym_end_sub_statement] = { + .visible = true, + .named = true, + }, + [sym_end_function_statement] = { + .visible = true, + .named = true, + }, + [sym_end_property_statement] = { + .visible = true, + .named = true, + }, + [sym_byval_modifier] = { + .visible = true, + .named = true, + }, + [sym_get_accessor] = { + .visible = true, + .named = true, + }, + [sym_set_accessor] = { + .visible = true, + .named = true, + }, + [sym_block] = { + .visible = true, + .named = true, + }, + [sym_conditional_branch_body] = { + .visible = true, + .named = true, + }, + [sym__statement] = { + .visible = false, + .named = true, + }, + [sym_variable_declaration] = { + .visible = true, + .named = true, + }, + [sym_const_declaration] = { + .visible = true, + .named = true, + }, + [sym_variable_declarator] = { + .visible = true, + .named = true, + }, + [sym_const_declarator] = { + .visible = true, + .named = true, + }, + [sym_initializer] = { + .visible = true, + .named = true, + }, + [sym_parameter_list] = { + .visible = true, + .named = true, + }, + [sym_parameter] = { + .visible = true, + .named = true, + }, + [sym_as_type_clause] = { + .visible = true, + .named = true, + }, + [sym_fixed_string_length] = { + .visible = true, + .named = true, + }, + [sym_array_bounds] = { + .visible = true, + .named = true, + }, + [sym_array_bound] = { + .visible = true, + .named = true, + }, + [sym_type_expression] = { + .visible = true, + .named = true, + }, + [sym_dotted_type_expression] = { + .visible = true, + .named = true, + }, + [sym_visibility] = { + .visible = true, + .named = true, + }, + [sym_if_statement] = { + .visible = true, + .named = true, + }, + [sym_elseif_fragment] = { + .visible = true, + .named = true, + }, + [sym_else_fragment] = { + .visible = true, + .named = true, + }, + [sym_end_if_fragment] = { + .visible = true, + .named = true, + }, + [sym_single_line_if_statement] = { + .visible = true, + .named = true, + }, + [sym_inline_statement_sequence] = { + .visible = true, + .named = true, + }, + [sym__inline_statement] = { + .visible = false, + .named = true, + }, + [sym_select_statement] = { + .visible = true, + .named = true, + }, + [sym_case_clause] = { + .visible = true, + .named = true, + }, + [sym_case_expression] = { + .visible = true, + .named = true, + }, + [sym_for_statement] = { + .visible = true, + .named = true, + }, + [sym__inline_for_statement] = { + .visible = true, + .named = true, + }, + [sym_for_each_statement] = { + .visible = true, + .named = true, + }, + [sym__inline_for_each_statement] = { + .visible = true, + .named = true, + }, + [sym__multiline_for_tail] = { + .visible = false, + .named = true, + }, + [sym__inline_for_tail] = { + .visible = false, + .named = true, + }, + [sym__for_header] = { + .visible = false, + .named = true, + }, + [sym__for_each_header] = { + .visible = false, + .named = true, + }, + [sym_do_statement] = { + .visible = true, + .named = true, + }, + [sym__inline_do_statement] = { + .visible = true, + .named = true, + }, + [sym_do_condition] = { + .visible = true, + .named = true, + }, + [sym_while_statement] = { + .visible = true, + .named = true, + }, + [sym_with_statement] = { + .visible = true, + .named = true, + }, + [sym__inline_with_statement] = { + .visible = true, + .named = true, + }, + [sym_single_line_block] = { + .visible = true, + .named = true, + }, + [sym_shared_next_for_body] = { + .visible = true, + .named = true, + }, + [sym_next_variable_list] = { + .visible = true, + .named = true, + }, + [sym_exit_statement] = { + .visible = true, + .named = true, + }, + [sym_on_goto_statement] = { + .visible = true, + .named = true, + }, + [sym_on_error_statement] = { + .visible = true, + .named = true, + }, + [sym_resume_statement] = { + .visible = true, + .named = true, + }, + [sym_goto_statement] = { + .visible = true, + .named = true, + }, + [sym_label_statement] = { + .visible = true, + .named = true, + }, + [sym_line_number_prefix] = { + .visible = true, + .named = true, + }, + [sym_line_number_statement] = { + .visible = true, + .named = true, + }, + [sym_line_number_top_level_item] = { + .visible = true, + .named = true, + }, + [sym__numbered_statement] = { + .visible = false, + .named = true, + }, + [sym_redim_statement] = { + .visible = true, + .named = true, + }, + [sym_redim_declarator] = { + .visible = true, + .named = true, + }, + [sym_erase_statement] = { + .visible = true, + .named = true, + }, + [sym_open_statement] = { + .visible = true, + .named = true, + }, + [sym_file_mode] = { + .visible = true, + .named = true, + }, + [sym_file_access] = { + .visible = true, + .named = true, + }, + [sym_file_lock] = { + .visible = true, + .named = true, + }, + [sym_file_number] = { + .visible = true, + .named = true, + }, + [sym_input_statement] = { + .visible = true, + .named = true, + }, + [sym_line_input_statement] = { + .visible = true, + .named = true, + }, + [sym_print_statement] = { + .visible = true, + .named = true, + }, + [sym_write_statement] = { + .visible = true, + .named = true, + }, + [sym__required_file_number] = { + .visible = true, + .named = true, + }, + [sym_output_list] = { + .visible = true, + .named = true, + }, + [sym__print_method_output_list] = { + .visible = true, + .named = true, + }, + [sym__print_output_expression] = { + .visible = false, + .named = true, + }, + [sym__unparenthesized_print_output_expression] = { + .visible = false, + .named = true, + }, + [sym__print_output_call_binary_expression] = { + .visible = true, + .named = true, + }, + [sym__print_output_call_operand] = { + .visible = false, + .named = true, + }, + [sym__print_output_member_comparison_expression] = { + .visible = true, + .named = true, + }, + [sym__print_output_call_member_expression] = { + .visible = true, + .named = true, + }, + [sym__print_output_call_expression] = { + .visible = true, + .named = true, + }, + [sym__print_output_qualified_callable] = { + .visible = true, + .named = true, + }, + [sym_char_position] = { + .visible = true, + .named = true, + }, + [sym_print_argument_sequence] = { + .visible = true, + .named = true, + }, + [sym_debug_print_statement] = { + .visible = true, + .named = true, + }, + [sym_close_statement] = { + .visible = true, + .named = true, + }, + [sym_get_statement] = { + .visible = true, + .named = true, + }, + [sym_put_statement] = { + .visible = true, + .named = true, + }, + [sym_lock_statement] = { + .visible = true, + .named = true, + }, + [sym_unlock_statement] = { + .visible = true, + .named = true, + }, + [sym_file_record_range] = { + .visible = true, + .named = true, + }, + [sym_seek_statement] = { + .visible = true, + .named = true, + }, + [sym_raise_event_statement] = { + .visible = true, + .named = true, + }, + [sym_name_statement] = { + .visible = true, + .named = true, + }, + [sym_load_statement] = { + .visible = true, + .named = true, + }, + [sym_unload_statement] = { + .visible = true, + .named = true, + }, + [sym_def_type_statement] = { + .visible = true, + .named = true, + }, + [sym_letter_range] = { + .visible = true, + .named = true, + }, + [sym_set_statement] = { + .visible = true, + .named = true, + }, + [sym_assignment_statement] = { + .visible = true, + .named = true, + }, + [sym_coordinate_pair] = { + .visible = true, + .named = true, + }, + [sym_call_statement] = { + .visible = true, + .named = true, + }, + [sym_expression_statement] = { + .visible = true, + .named = true, + }, + [sym_argument_list] = { + .visible = true, + .named = true, + }, + [sym_unparenthesized_argument_list] = { + .visible = true, + .named = true, + }, + [sym_line_range_argument_list] = { + .visible = true, + .named = true, + }, + [sym__argument_sequence] = { + .visible = false, + .named = true, + }, + [sym__unparenthesized_argument_sequence] = { + .visible = false, + .named = true, + }, + [sym__omitted_argument_sequence] = { + .visible = false, + .named = true, + }, + [sym__argument] = { + .visible = false, + .named = true, + }, + [sym_named_argument] = { + .visible = true, + .named = true, + }, + [sym_byval_argument] = { + .visible = true, + .named = true, + }, + [sym__condition_expression] = { + .visible = false, + .named = true, + }, + [sym__primary_expression] = { + .visible = false, + .named = true, + }, + [sym__expression] = { + .visible = false, + .named = true, + }, + [sym_comparison_expression] = { + .visible = true, + .named = true, + }, + [sym_comparison_operator] = { + .visible = true, + .named = true, + }, + [sym__comparison_operand] = { + .visible = false, + .named = true, + }, + [sym_logical_value_expression] = { + .visible = true, + .named = true, + }, + [sym_condition_binary_expression] = { + .visible = true, + .named = true, + }, + [sym_parenthesized_condition_expression] = { + .visible = true, + .named = true, + }, + [sym__assignable_expression] = { + .visible = false, + .named = true, + }, + [sym__callable_expression] = { + .visible = false, + .named = true, + }, + [sym__print_method_callee] = { + .visible = false, + .named = true, + }, + [sym__print_method_call_expression] = { + .visible = true, + .named = true, + }, + [sym__qualified_print_method_expression] = { + .visible = true, + .named = true, + }, + [sym__implicit_print_method_expression] = { + .visible = true, + .named = true, + }, + [sym__line_method_expression] = { + .visible = true, + .named = true, + }, + [sym_call_expression] = { + .visible = true, + .named = true, + }, + [sym_new_expression] = { + .visible = true, + .named = true, + }, + [sym_addressof_expression] = { + .visible = true, + .named = true, + }, + [sym_type_of_expression] = { + .visible = true, + .named = true, + }, + [sym_member_expression] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_qualified_member_expression] = { + .visible = true, + .named = true, + }, + [sym_implicit_member_expression] = { + .visible = true, + .named = true, + }, + [sym__member_property] = { + .visible = false, + .named = true, + }, + [sym_parenthesized_expression] = { + .visible = true, + .named = true, + }, + [sym_binary_expression] = { + .visible = true, + .named = true, + }, + [sym_unary_expression] = { + .visible = true, + .named = true, + }, + [sym__signed_unary_expression] = { + .visible = false, + .named = true, + }, + [sym__literal] = { + .visible = false, + .named = true, + }, + [sym_boolean_literal] = { + .visible = true, + .named = true, + }, + [sym_file_number_literal] = { + .visible = true, + .named = true, + }, + [aux_sym_source_file_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_frm_begin_block_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_frm_begin_property_block_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__attribute_member_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_preprocessor_if_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_preprocessor_block_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_enum_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_preprocessor_if_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_preprocessor_block_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__conditional_sub_headers_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__conditional_function_headers_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__conditional_property_headers_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_block_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_variable_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_const_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_parameter_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_array_bounds_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_dotted_type_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_inline_statement_sequence_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_select_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_case_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_next_variable_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_on_goto_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_redim_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_erase_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_input_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_output_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_print_argument_sequence_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_close_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_def_type_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__argument_sequence_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__argument_sequence_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym__unparenthesized_argument_sequence_repeat1] = { + .visible = false, + .named = false, + }, + [alias_sym_line_number_literal] = { + .visible = true, + .named = true, + }, +}; + +enum ts_field_identifiers { + field_access = 1, + field_accessor = 2, + field_alias = 3, + field_alternative = 4, + field_alternative_body = 5, + field_arguments = 6, + field_body = 7, + field_bounds = 8, + field_callee = 9, + field_collection = 10, + field_condition = 11, + field_consequence = 12, + field_consequence_body = 13, + field_default_value = 14, + field_end = 15, + field_end_line = 16, + field_event = 17, + field_function = 18, + field_initializer = 19, + field_item = 20, + field_kind = 21, + field_left = 22, + field_length = 23, + field_library = 24, + field_line = 25, + field_lock = 26, + field_lower = 27, + field_member = 28, + field_mode = 29, + field_modifiers = 30, + field_name = 31, + field_new_path = 32, + field_next_variables = 33, + field_number = 34, + field_old_path = 35, + field_operator = 36, + field_optional_modifier = 37, + field_output = 38, + field_paramarray_modifier = 39, + field_parameters = 40, + field_passing_mode = 41, + field_path = 42, + field_position = 43, + field_ptrsafe_modifier = 44, + field_range = 45, + field_receiver = 46, + field_record = 47, + field_record_length = 48, + field_right = 49, + field_selector = 50, + field_source = 51, + field_start = 52, + field_start_line = 53, + field_statement = 54, + field_static_modifier = 55, + field_step = 56, + field_target = 57, + field_type = 58, + field_upper = 59, + field_value = 60, + field_variable = 61, + field_visibility = 62, + field_with_events_modifier = 63, + field_x = 64, + field_y = 65, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_access] = "access", + [field_accessor] = "accessor", + [field_alias] = "alias", + [field_alternative] = "alternative", + [field_alternative_body] = "alternative_body", + [field_arguments] = "arguments", + [field_body] = "body", + [field_bounds] = "bounds", + [field_callee] = "callee", + [field_collection] = "collection", + [field_condition] = "condition", + [field_consequence] = "consequence", + [field_consequence_body] = "consequence_body", + [field_default_value] = "default_value", + [field_end] = "end", + [field_end_line] = "end_line", + [field_event] = "event", + [field_function] = "function", + [field_initializer] = "initializer", + [field_item] = "item", + [field_kind] = "kind", + [field_left] = "left", + [field_length] = "length", + [field_library] = "library", + [field_line] = "line", + [field_lock] = "lock", + [field_lower] = "lower", + [field_member] = "member", + [field_mode] = "mode", + [field_modifiers] = "modifiers", + [field_name] = "name", + [field_new_path] = "new_path", + [field_next_variables] = "next_variables", + [field_number] = "number", + [field_old_path] = "old_path", + [field_operator] = "operator", + [field_optional_modifier] = "optional_modifier", + [field_output] = "output", + [field_paramarray_modifier] = "paramarray_modifier", + [field_parameters] = "parameters", + [field_passing_mode] = "passing_mode", + [field_path] = "path", + [field_position] = "position", + [field_ptrsafe_modifier] = "ptrsafe_modifier", + [field_range] = "range", + [field_receiver] = "receiver", + [field_record] = "record", + [field_record_length] = "record_length", + [field_right] = "right", + [field_selector] = "selector", + [field_source] = "source", + [field_start] = "start", + [field_start_line] = "start_line", + [field_statement] = "statement", + [field_static_modifier] = "static_modifier", + [field_step] = "step", + [field_target] = "target", + [field_type] = "type", + [field_upper] = "upper", + [field_value] = "value", + [field_variable] = "variable", + [field_visibility] = "visibility", + [field_with_events_modifier] = "with_events_modifier", + [field_x] = "x", + [field_y] = "y", +}; + +static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [2] = {.index = 0, .length = 1}, + [3] = {.index = 1, .length = 1}, + [4] = {.index = 2, .length = 1}, + [5] = {.index = 3, .length = 3}, + [6] = {.index = 6, .length = 2}, + [7] = {.index = 8, .length = 1}, + [8] = {.index = 9, .length = 1}, + [9] = {.index = 10, .length = 1}, + [10] = {.index = 11, .length = 1}, + [11] = {.index = 12, .length = 1}, + [12] = {.index = 13, .length = 2}, + [13] = {.index = 15, .length = 2}, + [14] = {.index = 17, .length = 2}, + [15] = {.index = 19, .length = 2}, + [16] = {.index = 21, .length = 3}, + [17] = {.index = 24, .length = 1}, + [18] = {.index = 25, .length = 1}, + [19] = {.index = 26, .length = 1}, + [20] = {.index = 27, .length = 2}, + [21] = {.index = 29, .length = 2}, + [22] = {.index = 31, .length = 2}, + [23] = {.index = 33, .length = 2}, + [24] = {.index = 35, .length = 2}, + [25] = {.index = 37, .length = 2}, + [26] = {.index = 39, .length = 2}, + [27] = {.index = 19, .length = 2}, + [28] = {.index = 41, .length = 3}, + [30] = {.index = 44, .length = 5}, + [31] = {.index = 49, .length = 8}, + [32] = {.index = 57, .length = 6}, + [33] = {.index = 63, .length = 3}, + [34] = {.index = 66, .length = 4}, + [35] = {.index = 70, .length = 1}, + [36] = {.index = 71, .length = 3}, + [37] = {.index = 74, .length = 2}, + [38] = {.index = 76, .length = 6}, + [39] = {.index = 82, .length = 7}, + [40] = {.index = 89, .length = 3}, + [41] = {.index = 92, .length = 2}, + [42] = {.index = 94, .length = 2}, + [43] = {.index = 96, .length = 2}, + [44] = {.index = 98, .length = 2}, + [45] = {.index = 100, .length = 4}, + [47] = {.index = 104, .length = 3}, + [48] = {.index = 107, .length = 3}, + [49] = {.index = 110, .length = 3}, + [50] = {.index = 113, .length = 3}, + [51] = {.index = 116, .length = 1}, + [52] = {.index = 117, .length = 3}, + [53] = {.index = 120, .length = 3}, + [54] = {.index = 123, .length = 3}, + [55] = {.index = 126, .length = 2}, + [56] = {.index = 6, .length = 2}, + [57] = {.index = 25, .length = 1}, + [58] = {.index = 128, .length = 1}, + [59] = {.index = 129, .length = 1}, + [60] = {.index = 130, .length = 3}, + [61] = {.index = 133, .length = 2}, + [62] = {.index = 135, .length = 1}, + [63] = {.index = 136, .length = 1}, + [64] = {.index = 9, .length = 1}, + [65] = {.index = 137, .length = 2}, + [66] = {.index = 139, .length = 5}, + [67] = {.index = 144, .length = 6}, + [68] = {.index = 150, .length = 8}, + [69] = {.index = 158, .length = 1}, + [70] = {.index = 159, .length = 6}, + [71] = {.index = 165, .length = 1}, + [72] = {.index = 166, .length = 2}, + [73] = {.index = 168, .length = 4}, + [74] = {.index = 172, .length = 5}, + [75] = {.index = 177, .length = 6}, + [76] = {.index = 183, .length = 7}, + [77] = {.index = 190, .length = 7}, + [78] = {.index = 197, .length = 8}, + [79] = {.index = 205, .length = 9}, + [80] = {.index = 214, .length = 10}, + [81] = {.index = 224, .length = 11}, + [82] = {.index = 235, .length = 4}, + [83] = {.index = 239, .length = 4}, + [84] = {.index = 243, .length = 4}, + [85] = {.index = 247, .length = 3}, + [86] = {.index = 250, .length = 2}, + [87] = {.index = 252, .length = 2}, + [88] = {.index = 254, .length = 6}, + [89] = {.index = 260, .length = 2}, + [90] = {.index = 262, .length = 2}, + [91] = {.index = 264, .length = 2}, + [92] = {.index = 266, .length = 2}, + [93] = {.index = 268, .length = 2}, + [94] = {.index = 270, .length = 1}, + [95] = {.index = 271, .length = 4}, + [96] = {.index = 275, .length = 4}, + [97] = {.index = 279, .length = 1}, + [98] = {.index = 280, .length = 2}, + [99] = {.index = 282, .length = 2}, + [100] = {.index = 284, .length = 3}, + [101] = {.index = 287, .length = 5}, + [102] = {.index = 292, .length = 2}, + [103] = {.index = 41, .length = 3}, + [104] = {.index = 294, .length = 6}, + [105] = {.index = 300, .length = 1}, + [106] = {.index = 301, .length = 9}, + [107] = {.index = 310, .length = 7}, + [108] = {.index = 317, .length = 8}, + [109] = {.index = 325, .length = 6}, + [110] = {.index = 331, .length = 2}, + [111] = {.index = 333, .length = 7}, + [112] = {.index = 340, .length = 8}, + [113] = {.index = 348, .length = 10}, + [114] = {.index = 358, .length = 11}, + [115] = {.index = 369, .length = 12}, + [116] = {.index = 381, .length = 5}, + [117] = {.index = 386, .length = 5}, + [118] = {.index = 391, .length = 5}, + [119] = {.index = 396, .length = 3}, + [120] = {.index = 399, .length = 3}, + [121] = {.index = 402, .length = 3}, + [122] = {.index = 405, .length = 3}, + [123] = {.index = 408, .length = 3}, + [124] = {.index = 411, .length = 3}, + [125] = {.index = 414, .length = 3}, + [126] = {.index = 417, .length = 3}, + [127] = {.index = 420, .length = 3}, + [128] = {.index = 423, .length = 3}, + [129] = {.index = 426, .length = 3}, + [130] = {.index = 429, .length = 3}, + [131] = {.index = 432, .length = 3}, + [132] = {.index = 435, .length = 3}, + [133] = {.index = 438, .length = 3}, + [134] = {.index = 441, .length = 3}, + [135] = {.index = 444, .length = 3}, + [136] = {.index = 447, .length = 1}, + [137] = {.index = 448, .length = 2}, + [138] = {.index = 450, .length = 2}, + [139] = {.index = 452, .length = 2}, + [140] = {.index = 454, .length = 2}, + [141] = {.index = 456, .length = 1}, + [142] = {.index = 457, .length = 1}, + [143] = {.index = 458, .length = 1}, + [144] = {.index = 459, .length = 1}, + [145] = {.index = 459, .length = 1}, + [146] = {.index = 460, .length = 2}, + [147] = {.index = 460, .length = 2}, + [148] = {.index = 462, .length = 2}, + [149] = {.index = 464, .length = 2}, + [150] = {.index = 466, .length = 2}, + [151] = {.index = 468, .length = 2}, + [152] = {.index = 470, .length = 2}, + [153] = {.index = 472, .length = 4}, + [154] = {.index = 476, .length = 4}, + [155] = {.index = 480, .length = 6}, + [156] = {.index = 486, .length = 6}, + [157] = {.index = 492, .length = 5}, + [158] = {.index = 497, .length = 2}, + [159] = {.index = 499, .length = 1}, + [160] = {.index = 500, .length = 1}, + [161] = {.index = 501, .length = 2}, + [162] = {.index = 503, .length = 6}, + [163] = {.index = 509, .length = 3}, + [164] = {.index = 512, .length = 2}, + [165] = {.index = 514, .length = 3}, + [166] = {.index = 517, .length = 4}, + [167] = {.index = 521, .length = 4}, + [168] = {.index = 525, .length = 4}, + [169] = {.index = 529, .length = 4}, + [170] = {.index = 533, .length = 4}, + [171] = {.index = 537, .length = 4}, + [172] = {.index = 541, .length = 4}, + [173] = {.index = 545, .length = 4}, + [174] = {.index = 549, .length = 4}, + [175] = {.index = 553, .length = 4}, + [176] = {.index = 557, .length = 4}, + [177] = {.index = 561, .length = 4}, + [178] = {.index = 565, .length = 4}, + [179] = {.index = 569, .length = 4}, + [180] = {.index = 573, .length = 4}, + [181] = {.index = 577, .length = 4}, + [182] = {.index = 581, .length = 4}, + [183] = {.index = 585, .length = 4}, + [184] = {.index = 589, .length = 4}, + [185] = {.index = 593, .length = 4}, + [186] = {.index = 597, .length = 4}, + [187] = {.index = 601, .length = 4}, + [188] = {.index = 605, .length = 4}, + [189] = {.index = 609, .length = 2}, + [190] = {.index = 611, .length = 2}, + [191] = {.index = 613, .length = 2}, + [192] = {.index = 613, .length = 2}, + [193] = {.index = 615, .length = 2}, + [194] = {.index = 617, .length = 2}, + [195] = {.index = 619, .length = 1}, + [196] = {.index = 620, .length = 1}, + [197] = {.index = 621, .length = 2}, + [198] = {.index = 623, .length = 2}, + [199] = {.index = 625, .length = 2}, + [200] = {.index = 627, .length = 3}, + [201] = {.index = 627, .length = 3}, + [202] = {.index = 630, .length = 3}, + [203] = {.index = 633, .length = 2}, + [204] = {.index = 635, .length = 2}, + [205] = {.index = 637, .length = 2}, + [206] = {.index = 639, .length = 2}, + [207] = {.index = 641, .length = 2}, + [208] = {.index = 643, .length = 2}, + [209] = {.index = 645, .length = 2}, + [210] = {.index = 647, .length = 2}, + [211] = {.index = 649, .length = 2}, + [212] = {.index = 651, .length = 2}, + [213] = {.index = 653, .length = 2}, + [214] = {.index = 655, .length = 2}, + [215] = {.index = 657, .length = 4}, + [216] = {.index = 661, .length = 4}, + [217] = {.index = 665, .length = 4}, + [218] = {.index = 669, .length = 6}, + [219] = {.index = 675, .length = 14}, + [220] = {.index = 689, .length = 7}, + [221] = {.index = 696, .length = 16}, + [222] = {.index = 712, .length = 8}, + [223] = {.index = 720, .length = 18}, + [224] = {.index = 738, .length = 4}, + [225] = {.index = 742, .length = 4}, + [226] = {.index = 746, .length = 4}, + [227] = {.index = 750, .length = 5}, + [228] = {.index = 755, .length = 5}, + [229] = {.index = 760, .length = 5}, + [230] = {.index = 765, .length = 5}, + [231] = {.index = 770, .length = 5}, + [232] = {.index = 775, .length = 5}, + [233] = {.index = 780, .length = 5}, + [234] = {.index = 785, .length = 5}, + [235] = {.index = 790, .length = 5}, + [236] = {.index = 795, .length = 5}, + [237] = {.index = 800, .length = 5}, + [238] = {.index = 805, .length = 5}, + [239] = {.index = 810, .length = 5}, + [240] = {.index = 815, .length = 5}, + [241] = {.index = 820, .length = 5}, + [242] = {.index = 825, .length = 5}, + [243] = {.index = 830, .length = 3}, + [244] = {.index = 833, .length = 3}, + [245] = {.index = 836, .length = 1}, + [246] = {.index = 837, .length = 3}, + [247] = {.index = 840, .length = 2}, + [248] = {.index = 842, .length = 3}, + [249] = {.index = 845, .length = 2}, + [250] = {.index = 847, .length = 2}, + [251] = {.index = 849, .length = 2}, + [252] = {.index = 851, .length = 2}, + [253] = {.index = 853, .length = 3}, + [254] = {.index = 856, .length = 3}, + [255] = {.index = 859, .length = 3}, + [256] = {.index = 862, .length = 3}, + [257] = {.index = 865, .length = 3}, + [258] = {.index = 868, .length = 3}, + [259] = {.index = 871, .length = 2}, + [260] = {.index = 873, .length = 2}, + [261] = {.index = 875, .length = 3}, + [262] = {.index = 878, .length = 3}, + [263] = {.index = 881, .length = 3}, + [264] = {.index = 884, .length = 2}, + [265] = {.index = 886, .length = 2}, + [266] = {.index = 888, .length = 2}, + [267] = {.index = 890, .length = 4}, + [268] = {.index = 894, .length = 5}, + [269] = {.index = 899, .length = 5}, + [270] = {.index = 904, .length = 5}, + [271] = {.index = 909, .length = 7}, + [272] = {.index = 916, .length = 13}, + [273] = {.index = 929, .length = 8}, + [274] = {.index = 937, .length = 15}, + [275] = {.index = 952, .length = 9}, + [276] = {.index = 961, .length = 17}, + [277] = {.index = 978, .length = 5}, + [278] = {.index = 983, .length = 5}, + [279] = {.index = 988, .length = 5}, + [280] = {.index = 993, .length = 6}, + [281] = {.index = 999, .length = 6}, + [282] = {.index = 1005, .length = 6}, + [283] = {.index = 1011, .length = 6}, + [284] = {.index = 1017, .length = 6}, + [285] = {.index = 1023, .length = 6}, + [286] = {.index = 1029, .length = 3}, + [287] = {.index = 1032, .length = 2}, + [288] = {.index = 1034, .length = 3}, + [289] = {.index = 1037, .length = 3}, + [290] = {.index = 1040, .length = 4}, + [291] = {.index = 1044, .length = 2}, + [292] = {.index = 1046, .length = 4}, + [293] = {.index = 1050, .length = 3}, + [294] = {.index = 1053, .length = 4}, + [295] = {.index = 1057, .length = 3}, + [296] = {.index = 1060, .length = 3}, + [297] = {.index = 1063, .length = 3}, + [298] = {.index = 1066, .length = 3}, + [299] = {.index = 1069, .length = 5}, + [300] = {.index = 1074, .length = 5}, + [301] = {.index = 1079, .length = 5}, + [302] = {.index = 1084, .length = 6}, + [303] = {.index = 1090, .length = 14}, + [304] = {.index = 1104, .length = 16}, + [305] = {.index = 1120, .length = 18}, + [306] = {.index = 1138, .length = 6}, + [307] = {.index = 1144, .length = 7}, + [308] = {.index = 1151, .length = 1}, + [309] = {.index = 1152, .length = 2}, + [310] = {.index = 1154, .length = 4}, + [311] = {.index = 1158, .length = 4}, + [312] = {.index = 1162, .length = 3}, + [313] = {.index = 1165, .length = 4}, + [314] = {.index = 1169, .length = 4}, + [315] = {.index = 1173, .length = 6}, + [316] = {.index = 1179, .length = 6}, + [317] = {.index = 1185, .length = 6}, + [318] = {.index = 1191, .length = 1}, + [319] = {.index = 1192, .length = 2}, + [320] = {.index = 1194, .length = 4}, + [321] = {.index = 1198, .length = 5}, + [322] = {.index = 1203, .length = 3}, + [323] = {.index = 1206, .length = 5}, + [324] = {.index = 1211, .length = 7}, + [325] = {.index = 1218, .length = 6}, + [326] = {.index = 1224, .length = 11}, + [327] = {.index = 1235, .length = 7}, + [328] = {.index = 1242, .length = 13}, + [329] = {.index = 1255, .length = 8}, + [330] = {.index = 1263, .length = 15}, + [331] = {.index = 1278, .length = 2}, + [332] = {.index = 1280, .length = 5}, + [333] = {.index = 1285, .length = 7}, + [334] = {.index = 1292, .length = 12}, + [335] = {.index = 1304, .length = 12}, + [336] = {.index = 1316, .length = 18}, + [337] = {.index = 1334, .length = 8}, + [338] = {.index = 1342, .length = 14}, + [339] = {.index = 1356, .length = 14}, + [340] = {.index = 1370, .length = 21}, + [341] = {.index = 1391, .length = 9}, + [342] = {.index = 1400, .length = 16}, + [343] = {.index = 1416, .length = 16}, + [344] = {.index = 1432, .length = 24}, + [345] = {.index = 1456, .length = 5}, + [346] = {.index = 1461, .length = 13}, + [347] = {.index = 1474, .length = 19}, + [348] = {.index = 1493, .length = 19}, + [349] = {.index = 1512, .length = 15}, + [350] = {.index = 1527, .length = 22}, + [351] = {.index = 1549, .length = 22}, + [352] = {.index = 1571, .length = 17}, + [353] = {.index = 1588, .length = 25}, + [354] = {.index = 1613, .length = 25}, + [355] = {.index = 1638, .length = 6}, + [356] = {.index = 1644, .length = 20}, + [357] = {.index = 1664, .length = 23}, + [358] = {.index = 1687, .length = 26}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_modifiers, 0}, + [1] = + {field_number, 0}, + [2] = + {field_visibility, 0}, + [3] = + {field_member, 0, .inherited = true}, + {field_operator, 0, .inherited = true}, + {field_receiver, 0, .inherited = true}, + [6] = + {field_member, 1}, + {field_operator, 0}, + [8] = + {field_name, 1}, + [9] = + {field_name, 0}, + [10] = + {field_static_modifier, 0}, + [11] = + {field_start, 0}, + [12] = + {field_kind, 0}, + [13] = + {field_item, 1}, + {field_number, 0}, + [15] = + {field_modifiers, 1}, + {field_visibility, 0}, + [17] = + {field_arguments, 1}, + {field_function, 0}, + [19] = + {field_name, 0}, + {field_value, 2}, + [21] = + {field_member, 1, .inherited = true}, + {field_operator, 1, .inherited = true}, + {field_receiver, 0}, + [24] = + {field_type, 1}, + [25] = + {field_target, 1}, + [26] = + {field_number, 1}, + [27] = + {field_name, 1}, + {field_parameters, 2}, + [29] = + {field_name, 1}, + {field_type, 2}, + [31] = + {field_accessor, 1}, + {field_name, 2}, + [33] = + {field_initializer, 1}, + {field_name, 0}, + [35] = + {field_name, 0}, + {field_type, 1}, + [37] = + {field_bounds, 1}, + {field_name, 0}, + [39] = + {field_item, 2}, + {field_number, 0}, + [41] = + {field_member, 2}, + {field_operator, 1}, + {field_receiver, 0}, + [44] = + {field_end, 2}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [49] = + {field_body, 0, .inherited = true}, + {field_end, 0, .inherited = true}, + {field_end_line, 0, .inherited = true}, + {field_next_variables, 0, .inherited = true}, + {field_start, 0, .inherited = true}, + {field_start_line, 0, .inherited = true}, + {field_step, 0, .inherited = true}, + {field_variable, 0, .inherited = true}, + [57] = + {field_body, 0, .inherited = true}, + {field_collection, 0, .inherited = true}, + {field_end_line, 0, .inherited = true}, + {field_next_variables, 0, .inherited = true}, + {field_start_line, 0, .inherited = true}, + {field_variable, 0, .inherited = true}, + [63] = + {field_body, 0, .inherited = true}, + {field_end_line, 0, .inherited = true}, + {field_start_line, 0, .inherited = true}, + [66] = + {field_body, 0, .inherited = true}, + {field_end_line, 0, .inherited = true}, + {field_start_line, 0, .inherited = true}, + {field_value, 0, .inherited = true}, + [70] = + {field_callee, 0}, + [71] = + {field_arguments, 0, .inherited = true}, + {field_callee, 0}, + {field_function, 0, .inherited = true}, + [74] = + {field_member, 0, .inherited = true}, + {field_operator, 0, .inherited = true}, + [76] = + {field_end, 2}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [82] = + {field_accessor, 0, .inherited = true}, + {field_end, 2}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [89] = + {field_modifiers, 0, .inherited = true}, + {field_name, 2}, + {field_visibility, 0, .inherited = true}, + [92] = + {field_name, 2}, + {field_visibility, 0}, + [94] = + {field_static_modifier, 1}, + {field_visibility, 0}, + [96] = + {field_visibility, 0}, + {field_with_events_modifier, 1}, + [98] = + {field_name, 1}, + {field_value, 3}, + [100] = + {field_member, 0, .inherited = true}, + {field_member, 1, .inherited = true}, + {field_operator, 0, .inherited = true}, + {field_operator, 1, .inherited = true}, + [104] = + {field_left, 0}, + {field_operator, 1}, + {field_right, 2}, + [107] = + {field_name, 1}, + {field_parameters, 2}, + {field_type, 3}, + [110] = + {field_accessor, 1}, + {field_name, 2}, + {field_parameters, 3}, + [113] = + {field_accessor, 1}, + {field_name, 2}, + {field_type, 3}, + [116] = + {field_value, 1}, + [117] = + {field_initializer, 2}, + {field_name, 0}, + {field_type, 1}, + [120] = + {field_bounds, 1}, + {field_initializer, 2}, + {field_name, 0}, + [123] = + {field_bounds, 1}, + {field_name, 0}, + {field_type, 2}, + [126] = + {field_end, 2}, + {field_start, 0}, + [128] = + {field_output, 1}, + [129] = + {field_value, 0}, + [130] = + {field_left, 0, .inherited = true}, + {field_operator, 0, .inherited = true}, + {field_right, 0, .inherited = true}, + [133] = + {field_arguments, 0, .inherited = true}, + {field_function, 0, .inherited = true}, + [135] = + {field_event, 1}, + [136] = + {field_callee, 1}, + [137] = + {field_number, 0}, + {field_statement, 1}, + [139] = + {field_end, 3}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [144] = + {field_body, 2}, + {field_end, 3}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [150] = + {field_body, 1, .inherited = true}, + {field_end, 0, .inherited = true}, + {field_end_line, 1, .inherited = true}, + {field_next_variables, 1, .inherited = true}, + {field_start, 0, .inherited = true}, + {field_start_line, 0, .inherited = true}, + {field_step, 0, .inherited = true}, + {field_variable, 0, .inherited = true}, + [158] = + {field_body, 0}, + [159] = + {field_body, 1, .inherited = true}, + {field_collection, 0, .inherited = true}, + {field_end_line, 1, .inherited = true}, + {field_next_variables, 1, .inherited = true}, + {field_start_line, 0, .inherited = true}, + {field_variable, 0, .inherited = true}, + [165] = + {field_start_line, 0}, + [166] = + {field_arguments, 1}, + {field_callee, 0}, + [168] = + {field_arguments, 1}, + {field_callee, 0}, + {field_position, 1, .inherited = true}, + {field_value, 1, .inherited = true}, + [172] = + {field_arguments, 1}, + {field_callee, 0}, + {field_member, 0, .inherited = true}, + {field_operator, 0, .inherited = true}, + {field_receiver, 0, .inherited = true}, + [177] = + {field_end, 3}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [183] = + {field_body, 2}, + {field_end, 3}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [190] = + {field_accessor, 0, .inherited = true}, + {field_end, 3}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [197] = + {field_accessor, 0, .inherited = true}, + {field_body, 2}, + {field_end, 3}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [205] = + {field_alternative, 0, .inherited = true}, + {field_alternative_body, 0, .inherited = true}, + {field_condition, 0, .inherited = true}, + {field_consequence, 0, .inherited = true}, + {field_consequence_body, 0, .inherited = true}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [214] = + {field_alternative, 0, .inherited = true}, + {field_alternative_body, 0, .inherited = true}, + {field_condition, 0, .inherited = true}, + {field_consequence, 0, .inherited = true}, + {field_consequence_body, 0, .inherited = true}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [224] = + {field_accessor, 0, .inherited = true}, + {field_alternative, 0, .inherited = true}, + {field_alternative_body, 0, .inherited = true}, + {field_condition, 0, .inherited = true}, + {field_consequence, 0, .inherited = true}, + {field_consequence_body, 0, .inherited = true}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [235] = + {field_modifiers, 0, .inherited = true}, + {field_name, 2}, + {field_parameters, 3}, + {field_visibility, 0, .inherited = true}, + [239] = + {field_modifiers, 0, .inherited = true}, + {field_name, 2}, + {field_type, 3}, + {field_visibility, 0, .inherited = true}, + [243] = + {field_accessor, 2}, + {field_modifiers, 0, .inherited = true}, + {field_name, 3}, + {field_visibility, 0, .inherited = true}, + [247] = + {field_name, 2}, + {field_parameters, 3}, + {field_visibility, 0}, + [250] = + {field_name, 2}, + {field_type, 1}, + [252] = + {field_type, 3}, + {field_value, 1}, + [254] = + {field_accessor, 0, .inherited = true}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [260] = + {field_library, 4}, + {field_name, 2}, + [262] = + {field_name, 1}, + {field_passing_mode, 0}, + [264] = + {field_name, 1}, + {field_optional_modifier, 0}, + [266] = + {field_name, 1}, + {field_paramarray_modifier, 0}, + [268] = + {field_default_value, 1}, + {field_name, 0}, + [270] = + {field_type, 2}, + [271] = + {field_accessor, 1}, + {field_name, 2}, + {field_parameters, 3}, + {field_type, 4}, + [275] = + {field_bounds, 1}, + {field_initializer, 3}, + {field_name, 0}, + {field_type, 2}, + [279] = + {field_condition, 1}, + [280] = + {field_target, 1}, + {field_target, 2, .inherited = true}, + [282] = + {field_position, 1}, + {field_value, 0}, + [284] = + {field_position, 1, .inherited = true}, + {field_value, 0}, + {field_value, 1, .inherited = true}, + [287] = + {field_arguments, 1}, + {field_function, 0}, + {field_member, 0, .inherited = true}, + {field_operator, 0, .inherited = true}, + {field_receiver, 0, .inherited = true}, + [292] = + {field_arguments, 2}, + {field_callee, 1}, + [294] = + {field_body, 3}, + {field_end, 4}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [300] = + {field_body, 1}, + [301] = + {field_body, 1}, + {field_body, 1, .inherited = true}, + {field_end, 1, .inherited = true}, + {field_end_line, 1, .inherited = true}, + {field_next_variables, 1, .inherited = true}, + {field_start, 1, .inherited = true}, + {field_start_line, 1, .inherited = true}, + {field_step, 1, .inherited = true}, + {field_variable, 1, .inherited = true}, + [310] = + {field_body, 1}, + {field_body, 1, .inherited = true}, + {field_collection, 1, .inherited = true}, + {field_end_line, 1, .inherited = true}, + {field_next_variables, 1, .inherited = true}, + {field_start_line, 1, .inherited = true}, + {field_variable, 1, .inherited = true}, + [317] = + {field_body, 1, .inherited = true}, + {field_end, 1, .inherited = true}, + {field_end_line, 1, .inherited = true}, + {field_next_variables, 1, .inherited = true}, + {field_start, 1, .inherited = true}, + {field_start_line, 1, .inherited = true}, + {field_step, 1, .inherited = true}, + {field_variable, 1, .inherited = true}, + [325] = + {field_body, 1, .inherited = true}, + {field_collection, 1, .inherited = true}, + {field_end_line, 1, .inherited = true}, + {field_next_variables, 1, .inherited = true}, + {field_start_line, 1, .inherited = true}, + {field_variable, 1, .inherited = true}, + [331] = + {field_left, 0}, + {field_right, 2}, + [333] = + {field_body, 3}, + {field_end, 4}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [340] = + {field_accessor, 0, .inherited = true}, + {field_body, 3}, + {field_end, 4}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [348] = + {field_alternative, 0, .inherited = true}, + {field_alternative_body, 0, .inherited = true}, + {field_body, 2}, + {field_condition, 0, .inherited = true}, + {field_consequence, 0, .inherited = true}, + {field_consequence_body, 0, .inherited = true}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [358] = + {field_alternative, 0, .inherited = true}, + {field_alternative_body, 0, .inherited = true}, + {field_body, 2}, + {field_condition, 0, .inherited = true}, + {field_consequence, 0, .inherited = true}, + {field_consequence_body, 0, .inherited = true}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [369] = + {field_accessor, 0, .inherited = true}, + {field_alternative, 0, .inherited = true}, + {field_alternative_body, 0, .inherited = true}, + {field_body, 2}, + {field_condition, 0, .inherited = true}, + {field_consequence, 0, .inherited = true}, + {field_consequence_body, 0, .inherited = true}, + {field_modifiers, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_visibility, 0, .inherited = true}, + [381] = + {field_modifiers, 0, .inherited = true}, + {field_name, 2}, + {field_parameters, 3}, + {field_type, 4}, + {field_visibility, 0, .inherited = true}, + [386] = + {field_accessor, 2}, + {field_modifiers, 0, .inherited = true}, + {field_name, 3}, + {field_parameters, 4}, + {field_visibility, 0, .inherited = true}, + [391] = + {field_accessor, 2}, + {field_modifiers, 0, .inherited = true}, + {field_name, 3}, + {field_type, 4}, + {field_visibility, 0, .inherited = true}, + [396] = + {field_library, 4}, + {field_name, 2}, + {field_parameters, 5}, + [399] = + {field_library, 4}, + {field_name, 2}, + {field_type, 5}, + [402] = + {field_library, 5}, + {field_name, 3}, + {field_ptrsafe_modifier, 1}, + [405] = + {field_name, 2}, + {field_paramarray_modifier, 1}, + {field_passing_mode, 0}, + [408] = + {field_default_value, 2}, + {field_name, 1}, + {field_passing_mode, 0}, + [411] = + {field_name, 1}, + {field_passing_mode, 0}, + {field_type, 2}, + [414] = + {field_bounds, 2}, + {field_name, 1}, + {field_passing_mode, 0}, + [417] = + {field_name, 2}, + {field_optional_modifier, 0}, + {field_passing_mode, 1}, + [420] = + {field_name, 2}, + {field_optional_modifier, 0}, + {field_paramarray_modifier, 1}, + [423] = + {field_default_value, 2}, + {field_name, 1}, + {field_optional_modifier, 0}, + [426] = + {field_name, 1}, + {field_optional_modifier, 0}, + {field_type, 2}, + [429] = + {field_bounds, 2}, + {field_name, 1}, + {field_optional_modifier, 0}, + [432] = + {field_default_value, 2}, + {field_name, 1}, + {field_paramarray_modifier, 0}, + [435] = + {field_name, 1}, + {field_paramarray_modifier, 0}, + {field_type, 2}, + [438] = + {field_bounds, 2}, + {field_name, 1}, + {field_paramarray_modifier, 0}, + [441] = + {field_default_value, 2}, + {field_name, 0}, + {field_type, 1}, + [444] = + {field_bounds, 1}, + {field_default_value, 2}, + {field_name, 0}, + [447] = + {field_length, 1}, + [448] = + {field_lower, 0}, + {field_upper, 2}, + [450] = + {field_new_path, 3}, + {field_old_path, 1}, + [452] = + {field_condition, 1}, + {field_consequence, 3}, + [454] = + {field_left, 1}, + {field_right, 3}, + [456] = + {field_body, 2}, + [457] = + {field_end_line, 2}, + [458] = + {field_end_line, 1}, + [459] = + {field_target, 3}, + [460] = + {field_selector, 1}, + {field_target, 3}, + [462] = + {field_target, 0, .inherited = true}, + {field_target, 1, .inherited = true}, + [464] = + {field_number, 1}, + {field_target, 3}, + [466] = + {field_number, 1}, + {field_output, 3}, + [468] = + {field_number, 1}, + {field_range, 3}, + [470] = + {field_position, 0}, + {field_value, 1}, + [472] = + {field_position, 1, .inherited = true}, + {field_position, 2}, + {field_value, 0}, + {field_value, 1, .inherited = true}, + [476] = + {field_position, 0, .inherited = true}, + {field_position, 1, .inherited = true}, + {field_value, 0, .inherited = true}, + {field_value, 1, .inherited = true}, + [480] = + {field_member, 0, .inherited = true}, + {field_member, 2}, + {field_operator, 0, .inherited = true}, + {field_operator, 1}, + {field_receiver, 0}, + {field_receiver, 0, .inherited = true}, + [486] = + {field_left, 0}, + {field_member, 0, .inherited = true}, + {field_operator, 0, .inherited = true}, + {field_operator, 1}, + {field_receiver, 0, .inherited = true}, + {field_right, 2}, + [492] = + {field_arguments, 0, .inherited = true}, + {field_function, 0, .inherited = true}, + {field_member, 2}, + {field_operator, 1}, + {field_receiver, 0}, + [497] = + {field_number, 1}, + {field_position, 3}, + [499] = + {field_next_variables, 2}, + [500] = + {field_end_line, 0}, + [501] = + {field_condition, 2}, + {field_start_line, 0}, + [503] = + {field_accessor, 2}, + {field_modifiers, 0, .inherited = true}, + {field_name, 3}, + {field_parameters, 4}, + {field_type, 5}, + {field_visibility, 0, .inherited = true}, + [509] = + {field_library, 5}, + {field_name, 3}, + {field_visibility, 0}, + [512] = + {field_body, 4}, + {field_condition, 1}, + [514] = + {field_alias, 6}, + {field_library, 4}, + {field_name, 2}, + [517] = + {field_library, 4}, + {field_name, 2}, + {field_parameters, 5}, + {field_type, 6}, + [521] = + {field_library, 5}, + {field_name, 3}, + {field_parameters, 6}, + {field_ptrsafe_modifier, 1}, + [525] = + {field_library, 5}, + {field_name, 3}, + {field_ptrsafe_modifier, 1}, + {field_type, 6}, + [529] = + {field_default_value, 3}, + {field_name, 2}, + {field_paramarray_modifier, 1}, + {field_passing_mode, 0}, + [533] = + {field_name, 2}, + {field_paramarray_modifier, 1}, + {field_passing_mode, 0}, + {field_type, 3}, + [537] = + {field_bounds, 3}, + {field_name, 2}, + {field_paramarray_modifier, 1}, + {field_passing_mode, 0}, + [541] = + {field_default_value, 3}, + {field_name, 1}, + {field_passing_mode, 0}, + {field_type, 2}, + [545] = + {field_bounds, 2}, + {field_default_value, 3}, + {field_name, 1}, + {field_passing_mode, 0}, + [549] = + {field_bounds, 2}, + {field_name, 1}, + {field_passing_mode, 0}, + {field_type, 3}, + [553] = + {field_name, 3}, + {field_optional_modifier, 0}, + {field_paramarray_modifier, 2}, + {field_passing_mode, 1}, + [557] = + {field_default_value, 3}, + {field_name, 2}, + {field_optional_modifier, 0}, + {field_passing_mode, 1}, + [561] = + {field_name, 2}, + {field_optional_modifier, 0}, + {field_passing_mode, 1}, + {field_type, 3}, + [565] = + {field_bounds, 3}, + {field_name, 2}, + {field_optional_modifier, 0}, + {field_passing_mode, 1}, + [569] = + {field_default_value, 3}, + {field_name, 2}, + {field_optional_modifier, 0}, + {field_paramarray_modifier, 1}, + [573] = + {field_name, 2}, + {field_optional_modifier, 0}, + {field_paramarray_modifier, 1}, + {field_type, 3}, + [577] = + {field_bounds, 3}, + {field_name, 2}, + {field_optional_modifier, 0}, + {field_paramarray_modifier, 1}, + [581] = + {field_default_value, 3}, + {field_name, 1}, + {field_optional_modifier, 0}, + {field_type, 2}, + [585] = + {field_bounds, 2}, + {field_default_value, 3}, + {field_name, 1}, + {field_optional_modifier, 0}, + [589] = + {field_bounds, 2}, + {field_name, 1}, + {field_optional_modifier, 0}, + {field_type, 3}, + [593] = + {field_default_value, 3}, + {field_name, 1}, + {field_paramarray_modifier, 0}, + {field_type, 2}, + [597] = + {field_bounds, 2}, + {field_default_value, 3}, + {field_name, 1}, + {field_paramarray_modifier, 0}, + [601] = + {field_bounds, 2}, + {field_name, 1}, + {field_paramarray_modifier, 0}, + {field_type, 3}, + [605] = + {field_bounds, 1}, + {field_default_value, 3}, + {field_name, 0}, + {field_type, 2}, + [609] = + {field_condition, 1}, + {field_consequence, 4}, + [611] = + {field_number, 1}, + {field_target, 4}, + [613] = + {field_number, 2}, + {field_target, 4}, + [615] = + {field_collection, 4}, + {field_variable, 2}, + [617] = + {field_body, 2}, + {field_end_line, 3}, + [619] = + {field_body, 3}, + [620] = + {field_end_line, 3}, + [621] = + {field_body, 1}, + {field_end_line, 2}, + [623] = + {field_body, 3}, + {field_condition, 1}, + [625] = + {field_condition, 1}, + {field_end_line, 3}, + [627] = + {field_selector, 1}, + {field_target, 3}, + {field_target, 4, .inherited = true}, + [630] = + {field_number, 1}, + {field_target, 3}, + {field_target, 4, .inherited = true}, + [633] = + {field_number, 1}, + {field_source, 4}, + [635] = + {field_body, 1}, + {field_next_variables, 3}, + [637] = + {field_end_line, 1}, + {field_next_variables, 3}, + [639] = + {field_body, 0}, + {field_next_variables, 3}, + [641] = + {field_body, 0}, + {field_end_line, 1}, + [643] = + {field_end_line, 0}, + {field_next_variables, 3}, + [645] = + {field_body, 3}, + {field_start_line, 0}, + [647] = + {field_end_line, 3}, + {field_start_line, 0}, + [649] = + {field_body, 2}, + {field_start_line, 0}, + [651] = + {field_end_line, 2}, + {field_start_line, 0}, + [653] = + {field_end, 3}, + {field_start, 1}, + [655] = + {field_end, 3}, + {field_start, 0}, + [657] = + {field_library, 5}, + {field_name, 3}, + {field_parameters, 6}, + {field_visibility, 0}, + [661] = + {field_library, 5}, + {field_name, 3}, + {field_type, 6}, + {field_visibility, 0}, + [665] = + {field_library, 6}, + {field_name, 4}, + {field_ptrsafe_modifier, 2}, + {field_visibility, 0}, + [669] = + {field_condition, 1}, + {field_consequence, 4}, + {field_modifiers, 4, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_visibility, 4, .inherited = true}, + [675] = + {field_alternative, 0, .inherited = true}, + {field_alternative, 1, .inherited = true}, + {field_alternative_body, 0, .inherited = true}, + {field_alternative_body, 1, .inherited = true}, + {field_condition, 0, .inherited = true}, + {field_condition, 1, .inherited = true}, + {field_modifiers, 0, .inherited = true}, + {field_modifiers, 1, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_name, 1, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_parameters, 1, .inherited = true}, + {field_visibility, 0, .inherited = true}, + {field_visibility, 1, .inherited = true}, + [689] = + {field_condition, 1}, + {field_consequence, 4}, + {field_modifiers, 4, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_visibility, 4, .inherited = true}, + [696] = + {field_alternative, 0, .inherited = true}, + {field_alternative, 1, .inherited = true}, + {field_alternative_body, 0, .inherited = true}, + {field_alternative_body, 1, .inherited = true}, + {field_condition, 0, .inherited = true}, + {field_condition, 1, .inherited = true}, + {field_modifiers, 0, .inherited = true}, + {field_modifiers, 1, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_name, 1, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_parameters, 1, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_type, 1, .inherited = true}, + {field_visibility, 0, .inherited = true}, + {field_visibility, 1, .inherited = true}, + [712] = + {field_accessor, 4, .inherited = true}, + {field_condition, 1}, + {field_consequence, 4}, + {field_modifiers, 4, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_visibility, 4, .inherited = true}, + [720] = + {field_accessor, 0, .inherited = true}, + {field_accessor, 1, .inherited = true}, + {field_alternative, 0, .inherited = true}, + {field_alternative, 1, .inherited = true}, + {field_alternative_body, 0, .inherited = true}, + {field_alternative_body, 1, .inherited = true}, + {field_condition, 0, .inherited = true}, + {field_condition, 1, .inherited = true}, + {field_modifiers, 0, .inherited = true}, + {field_modifiers, 1, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_name, 1, .inherited = true}, + {field_parameters, 0, .inherited = true}, + {field_parameters, 1, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_type, 1, .inherited = true}, + {field_visibility, 0, .inherited = true}, + {field_visibility, 1, .inherited = true}, + [738] = + {field_alias, 6}, + {field_library, 4}, + {field_name, 2}, + {field_parameters, 7}, + [742] = + {field_alias, 6}, + {field_library, 4}, + {field_name, 2}, + {field_type, 7}, + [746] = + {field_alias, 7}, + {field_library, 5}, + {field_name, 3}, + {field_ptrsafe_modifier, 1}, + [750] = + {field_library, 5}, + {field_name, 3}, + {field_parameters, 6}, + {field_ptrsafe_modifier, 1}, + {field_type, 7}, + [755] = + {field_default_value, 4}, + {field_name, 2}, + {field_paramarray_modifier, 1}, + {field_passing_mode, 0}, + {field_type, 3}, + [760] = + {field_bounds, 3}, + {field_default_value, 4}, + {field_name, 2}, + {field_paramarray_modifier, 1}, + {field_passing_mode, 0}, + [765] = + {field_bounds, 3}, + {field_name, 2}, + {field_paramarray_modifier, 1}, + {field_passing_mode, 0}, + {field_type, 4}, + [770] = + {field_bounds, 2}, + {field_default_value, 4}, + {field_name, 1}, + {field_passing_mode, 0}, + {field_type, 3}, + [775] = + {field_default_value, 4}, + {field_name, 3}, + {field_optional_modifier, 0}, + {field_paramarray_modifier, 2}, + {field_passing_mode, 1}, + [780] = + {field_name, 3}, + {field_optional_modifier, 0}, + {field_paramarray_modifier, 2}, + {field_passing_mode, 1}, + {field_type, 4}, + [785] = + {field_bounds, 4}, + {field_name, 3}, + {field_optional_modifier, 0}, + {field_paramarray_modifier, 2}, + {field_passing_mode, 1}, + [790] = + {field_default_value, 4}, + {field_name, 2}, + {field_optional_modifier, 0}, + {field_passing_mode, 1}, + {field_type, 3}, + [795] = + {field_bounds, 3}, + {field_default_value, 4}, + {field_name, 2}, + {field_optional_modifier, 0}, + {field_passing_mode, 1}, + [800] = + {field_bounds, 3}, + {field_name, 2}, + {field_optional_modifier, 0}, + {field_passing_mode, 1}, + {field_type, 4}, + [805] = + {field_default_value, 4}, + {field_name, 2}, + {field_optional_modifier, 0}, + {field_paramarray_modifier, 1}, + {field_type, 3}, + [810] = + {field_bounds, 3}, + {field_default_value, 4}, + {field_name, 2}, + {field_optional_modifier, 0}, + {field_paramarray_modifier, 1}, + [815] = + {field_bounds, 3}, + {field_name, 2}, + {field_optional_modifier, 0}, + {field_paramarray_modifier, 1}, + {field_type, 4}, + [820] = + {field_bounds, 2}, + {field_default_value, 4}, + {field_name, 1}, + {field_optional_modifier, 0}, + {field_type, 3}, + [825] = + {field_bounds, 2}, + {field_default_value, 4}, + {field_name, 1}, + {field_paramarray_modifier, 0}, + {field_type, 3}, + [830] = + {field_alternative, 5}, + {field_condition, 1}, + {field_consequence, 3}, + [833] = + {field_number, 1}, + {field_record, 3}, + {field_target, 5}, + [836] = + {field_value, 2}, + [837] = + {field_end, 5}, + {field_start, 3}, + {field_variable, 1}, + [840] = + {field_body, 3}, + {field_end_line, 4}, + [842] = + {field_body, 3}, + {field_condition, 1}, + {field_end_line, 4}, + [845] = + {field_body, 3}, + {field_value, 1}, + [847] = + {field_end_line, 3}, + {field_value, 1}, + [849] = + {field_body, 2}, + {field_value, 1}, + [851] = + {field_end_line, 2}, + {field_value, 1}, + [853] = + {field_mode, 3}, + {field_number, 5}, + {field_path, 1}, + [856] = + {field_number, 1}, + {field_record, 3}, + {field_source, 5}, + [859] = + {field_body, 1}, + {field_end_line, 2}, + {field_next_variables, 4}, + [862] = + {field_body, 0}, + {field_end_line, 1}, + {field_next_variables, 4}, + [865] = + {field_collection, 5}, + {field_start_line, 0}, + {field_variable, 3}, + [868] = + {field_body, 3}, + {field_end_line, 4}, + {field_start_line, 0}, + [871] = + {field_body, 4}, + {field_start_line, 0}, + [873] = + {field_end_line, 4}, + {field_start_line, 0}, + [875] = + {field_body, 2}, + {field_end_line, 3}, + {field_start_line, 0}, + [878] = + {field_body, 4}, + {field_condition, 2}, + {field_start_line, 0}, + [881] = + {field_condition, 2}, + {field_end_line, 4}, + {field_start_line, 0}, + [884] = + {field_start_line, 0}, + {field_value, 2}, + [886] = + {field_x, 1}, + {field_y, 3}, + [888] = + {field_end, 4}, + {field_start, 1}, + [890] = + {field_alias, 7}, + {field_library, 5}, + {field_name, 3}, + {field_visibility, 0}, + [894] = + {field_library, 5}, + {field_name, 3}, + {field_parameters, 6}, + {field_type, 7}, + {field_visibility, 0}, + [899] = + {field_library, 6}, + {field_name, 4}, + {field_parameters, 7}, + {field_ptrsafe_modifier, 2}, + {field_visibility, 0}, + [904] = + {field_library, 6}, + {field_name, 4}, + {field_ptrsafe_modifier, 2}, + {field_type, 7}, + {field_visibility, 0}, + [909] = + {field_condition, 1}, + {field_consequence, 4}, + {field_consequence_body, 6}, + {field_modifiers, 4, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_visibility, 4, .inherited = true}, + [916] = + {field_alternative, 6, .inherited = true}, + {field_alternative_body, 6, .inherited = true}, + {field_condition, 1}, + {field_condition, 6, .inherited = true}, + {field_consequence, 4}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 6, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 6, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 6, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 6, .inherited = true}, + [929] = + {field_condition, 1}, + {field_consequence, 4}, + {field_consequence_body, 6}, + {field_modifiers, 4, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_visibility, 4, .inherited = true}, + [937] = + {field_alternative, 6, .inherited = true}, + {field_alternative_body, 6, .inherited = true}, + {field_condition, 1}, + {field_condition, 6, .inherited = true}, + {field_consequence, 4}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 6, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 6, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 6, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 6, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 6, .inherited = true}, + [952] = + {field_accessor, 4, .inherited = true}, + {field_condition, 1}, + {field_consequence, 4}, + {field_consequence_body, 6}, + {field_modifiers, 4, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_visibility, 4, .inherited = true}, + [961] = + {field_accessor, 4, .inherited = true}, + {field_accessor, 6, .inherited = true}, + {field_alternative, 6, .inherited = true}, + {field_alternative_body, 6, .inherited = true}, + {field_condition, 1}, + {field_condition, 6, .inherited = true}, + {field_consequence, 4}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 6, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 6, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 6, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 6, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 6, .inherited = true}, + [978] = + {field_alias, 6}, + {field_library, 4}, + {field_name, 2}, + {field_parameters, 7}, + {field_type, 8}, + [983] = + {field_alias, 7}, + {field_library, 5}, + {field_name, 3}, + {field_parameters, 8}, + {field_ptrsafe_modifier, 1}, + [988] = + {field_alias, 7}, + {field_library, 5}, + {field_name, 3}, + {field_ptrsafe_modifier, 1}, + {field_type, 8}, + [993] = + {field_bounds, 3}, + {field_default_value, 5}, + {field_name, 2}, + {field_paramarray_modifier, 1}, + {field_passing_mode, 0}, + {field_type, 4}, + [999] = + {field_default_value, 5}, + {field_name, 3}, + {field_optional_modifier, 0}, + {field_paramarray_modifier, 2}, + {field_passing_mode, 1}, + {field_type, 4}, + [1005] = + {field_bounds, 4}, + {field_default_value, 5}, + {field_name, 3}, + {field_optional_modifier, 0}, + {field_paramarray_modifier, 2}, + {field_passing_mode, 1}, + [1011] = + {field_bounds, 4}, + {field_name, 3}, + {field_optional_modifier, 0}, + {field_paramarray_modifier, 2}, + {field_passing_mode, 1}, + {field_type, 5}, + [1017] = + {field_bounds, 3}, + {field_default_value, 5}, + {field_name, 2}, + {field_optional_modifier, 0}, + {field_passing_mode, 1}, + {field_type, 4}, + [1023] = + {field_bounds, 3}, + {field_default_value, 5}, + {field_name, 2}, + {field_optional_modifier, 0}, + {field_paramarray_modifier, 1}, + {field_type, 4}, + [1029] = + {field_alternative, 6}, + {field_condition, 1}, + {field_consequence, 4}, + [1032] = + {field_end_line, 4}, + {field_value, 2}, + [1034] = + {field_body, 3}, + {field_end_line, 4}, + {field_value, 1}, + [1037] = + {field_body, 2}, + {field_end_line, 3}, + {field_value, 1}, + [1040] = + {field_lock, 4}, + {field_mode, 3}, + {field_number, 6}, + {field_path, 1}, + [1044] = + {field_start_line, 0}, + {field_value, 3}, + [1046] = + {field_end, 6}, + {field_start, 4}, + {field_start_line, 0}, + {field_variable, 2}, + [1050] = + {field_body, 4}, + {field_end_line, 5}, + {field_start_line, 0}, + [1053] = + {field_body, 4}, + {field_condition, 2}, + {field_end_line, 5}, + {field_start_line, 0}, + [1057] = + {field_body, 4}, + {field_start_line, 0}, + {field_value, 2}, + [1060] = + {field_end_line, 4}, + {field_start_line, 0}, + {field_value, 2}, + [1063] = + {field_body, 3}, + {field_start_line, 0}, + {field_value, 2}, + [1066] = + {field_end_line, 3}, + {field_start_line, 0}, + {field_value, 2}, + [1069] = + {field_alias, 7}, + {field_library, 5}, + {field_name, 3}, + {field_parameters, 8}, + {field_visibility, 0}, + [1074] = + {field_alias, 7}, + {field_library, 5}, + {field_name, 3}, + {field_type, 8}, + {field_visibility, 0}, + [1079] = + {field_alias, 8}, + {field_library, 6}, + {field_name, 4}, + {field_ptrsafe_modifier, 2}, + {field_visibility, 0}, + [1084] = + {field_library, 6}, + {field_name, 4}, + {field_parameters, 7}, + {field_ptrsafe_modifier, 2}, + {field_type, 8}, + {field_visibility, 0}, + [1090] = + {field_alternative, 7, .inherited = true}, + {field_alternative_body, 7, .inherited = true}, + {field_condition, 1}, + {field_condition, 7, .inherited = true}, + {field_consequence, 4}, + {field_consequence_body, 6}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 7, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 7, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 7, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 7, .inherited = true}, + [1104] = + {field_alternative, 7, .inherited = true}, + {field_alternative_body, 7, .inherited = true}, + {field_condition, 1}, + {field_condition, 7, .inherited = true}, + {field_consequence, 4}, + {field_consequence_body, 6}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 7, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 7, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 7, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 7, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 7, .inherited = true}, + [1120] = + {field_accessor, 4, .inherited = true}, + {field_accessor, 7, .inherited = true}, + {field_alternative, 7, .inherited = true}, + {field_alternative_body, 7, .inherited = true}, + {field_condition, 1}, + {field_condition, 7, .inherited = true}, + {field_consequence, 4}, + {field_consequence_body, 6}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 7, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 7, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 7, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 7, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 7, .inherited = true}, + [1138] = + {field_alias, 7}, + {field_library, 5}, + {field_name, 3}, + {field_parameters, 8}, + {field_ptrsafe_modifier, 1}, + {field_type, 9}, + [1144] = + {field_bounds, 4}, + {field_default_value, 6}, + {field_name, 3}, + {field_optional_modifier, 0}, + {field_paramarray_modifier, 2}, + {field_passing_mode, 1}, + {field_type, 5}, + [1151] = + {field_line, 0}, + [1152] = + {field_end_line, 5}, + {field_value, 2}, + [1154] = + {field_end, 5}, + {field_start, 3}, + {field_step, 7}, + {field_variable, 1}, + [1158] = + {field_access, 5}, + {field_mode, 3}, + {field_number, 7}, + {field_path, 1}, + [1162] = + {field_end_line, 5}, + {field_start_line, 0}, + {field_value, 3}, + [1165] = + {field_body, 4}, + {field_end_line, 5}, + {field_start_line, 0}, + {field_value, 2}, + [1169] = + {field_body, 3}, + {field_end_line, 4}, + {field_start_line, 0}, + {field_value, 2}, + [1173] = + {field_alias, 7}, + {field_library, 5}, + {field_name, 3}, + {field_parameters, 8}, + {field_type, 9}, + {field_visibility, 0}, + [1179] = + {field_alias, 8}, + {field_library, 6}, + {field_name, 4}, + {field_parameters, 9}, + {field_ptrsafe_modifier, 2}, + {field_visibility, 0}, + [1185] = + {field_alias, 8}, + {field_library, 6}, + {field_name, 4}, + {field_ptrsafe_modifier, 2}, + {field_type, 9}, + {field_visibility, 0}, + [1191] = + {field_body, 4}, + [1192] = + {field_body, 4}, + {field_line, 0}, + [1194] = + {field_mode, 3}, + {field_number, 5}, + {field_path, 1}, + {field_record_length, 8}, + [1198] = + {field_access, 5}, + {field_lock, 6}, + {field_mode, 3}, + {field_number, 8}, + {field_path, 1}, + [1203] = + {field_end_line, 6}, + {field_start_line, 0}, + {field_value, 3}, + [1206] = + {field_end, 6}, + {field_start, 4}, + {field_start_line, 0}, + {field_step, 8}, + {field_variable, 2}, + [1211] = + {field_alias, 8}, + {field_library, 6}, + {field_name, 4}, + {field_parameters, 9}, + {field_ptrsafe_modifier, 2}, + {field_type, 10}, + {field_visibility, 0}, + [1218] = + {field_alternative, 4}, + {field_condition, 1}, + {field_modifiers, 4, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_visibility, 4, .inherited = true}, + [1224] = + {field_alternative, 8}, + {field_condition, 1}, + {field_consequence, 4}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 8, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 8, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 8, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 8, .inherited = true}, + [1235] = + {field_alternative, 4}, + {field_condition, 1}, + {field_modifiers, 4, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_visibility, 4, .inherited = true}, + [1242] = + {field_alternative, 8}, + {field_condition, 1}, + {field_consequence, 4}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 8, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 8, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 8, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 8, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 8, .inherited = true}, + [1255] = + {field_accessor, 4, .inherited = true}, + {field_alternative, 4}, + {field_condition, 1}, + {field_modifiers, 4, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_visibility, 4, .inherited = true}, + [1263] = + {field_accessor, 4, .inherited = true}, + {field_accessor, 8, .inherited = true}, + {field_alternative, 8}, + {field_condition, 1}, + {field_consequence, 4}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 8, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 8, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 8, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 8, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 8, .inherited = true}, + [1278] = + {field_body, 5}, + {field_line, 0}, + [1280] = + {field_lock, 4}, + {field_mode, 3}, + {field_number, 6}, + {field_path, 1}, + {field_record_length, 9}, + [1285] = + {field_alternative, 4}, + {field_alternative_body, 6}, + {field_condition, 1}, + {field_modifiers, 4, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_visibility, 4, .inherited = true}, + [1292] = + {field_alternative, 8}, + {field_alternative_body, 10}, + {field_condition, 1}, + {field_consequence, 4}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 8, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 8, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 8, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 8, .inherited = true}, + [1304] = + {field_alternative, 9}, + {field_condition, 1}, + {field_consequence, 4}, + {field_consequence_body, 6}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 9, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 9, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 9, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 9, .inherited = true}, + [1316] = + {field_alternative, 6, .inherited = true}, + {field_alternative, 9}, + {field_alternative_body, 6, .inherited = true}, + {field_condition, 1}, + {field_condition, 6, .inherited = true}, + {field_consequence, 4}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 6, .inherited = true}, + {field_modifiers, 9, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 6, .inherited = true}, + {field_name, 9, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 6, .inherited = true}, + {field_parameters, 9, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 6, .inherited = true}, + {field_visibility, 9, .inherited = true}, + [1334] = + {field_alternative, 4}, + {field_alternative_body, 6}, + {field_condition, 1}, + {field_modifiers, 4, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_visibility, 4, .inherited = true}, + [1342] = + {field_alternative, 8}, + {field_alternative_body, 10}, + {field_condition, 1}, + {field_consequence, 4}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 8, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 8, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 8, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 8, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 8, .inherited = true}, + [1356] = + {field_alternative, 9}, + {field_condition, 1}, + {field_consequence, 4}, + {field_consequence_body, 6}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 9, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 9, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 9, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 9, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 9, .inherited = true}, + [1370] = + {field_alternative, 6, .inherited = true}, + {field_alternative, 9}, + {field_alternative_body, 6, .inherited = true}, + {field_condition, 1}, + {field_condition, 6, .inherited = true}, + {field_consequence, 4}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 6, .inherited = true}, + {field_modifiers, 9, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 6, .inherited = true}, + {field_name, 9, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 6, .inherited = true}, + {field_parameters, 9, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 6, .inherited = true}, + {field_type, 9, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 6, .inherited = true}, + {field_visibility, 9, .inherited = true}, + [1391] = + {field_accessor, 4, .inherited = true}, + {field_alternative, 4}, + {field_alternative_body, 6}, + {field_condition, 1}, + {field_modifiers, 4, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_visibility, 4, .inherited = true}, + [1400] = + {field_accessor, 4, .inherited = true}, + {field_accessor, 8, .inherited = true}, + {field_alternative, 8}, + {field_alternative_body, 10}, + {field_condition, 1}, + {field_consequence, 4}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 8, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 8, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 8, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 8, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 8, .inherited = true}, + [1416] = + {field_accessor, 4, .inherited = true}, + {field_accessor, 9, .inherited = true}, + {field_alternative, 9}, + {field_condition, 1}, + {field_consequence, 4}, + {field_consequence_body, 6}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 9, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 9, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 9, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 9, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 9, .inherited = true}, + [1432] = + {field_accessor, 4, .inherited = true}, + {field_accessor, 6, .inherited = true}, + {field_accessor, 9, .inherited = true}, + {field_alternative, 6, .inherited = true}, + {field_alternative, 9}, + {field_alternative_body, 6, .inherited = true}, + {field_condition, 1}, + {field_condition, 6, .inherited = true}, + {field_consequence, 4}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 6, .inherited = true}, + {field_modifiers, 9, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 6, .inherited = true}, + {field_name, 9, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 6, .inherited = true}, + {field_parameters, 9, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 6, .inherited = true}, + {field_type, 9, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 6, .inherited = true}, + {field_visibility, 9, .inherited = true}, + [1456] = + {field_access, 5}, + {field_mode, 3}, + {field_number, 7}, + {field_path, 1}, + {field_record_length, 10}, + [1461] = + {field_alternative, 9}, + {field_alternative_body, 11}, + {field_condition, 1}, + {field_consequence, 4}, + {field_consequence_body, 6}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 9, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 9, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 9, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 9, .inherited = true}, + [1474] = + {field_alternative, 7, .inherited = true}, + {field_alternative, 10}, + {field_alternative_body, 7, .inherited = true}, + {field_condition, 1}, + {field_condition, 7, .inherited = true}, + {field_consequence, 4}, + {field_consequence_body, 6}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 7, .inherited = true}, + {field_modifiers, 10, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 7, .inherited = true}, + {field_name, 10, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 7, .inherited = true}, + {field_parameters, 10, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 7, .inherited = true}, + {field_visibility, 10, .inherited = true}, + [1493] = + {field_alternative, 6, .inherited = true}, + {field_alternative, 9}, + {field_alternative_body, 6, .inherited = true}, + {field_alternative_body, 11}, + {field_condition, 1}, + {field_condition, 6, .inherited = true}, + {field_consequence, 4}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 6, .inherited = true}, + {field_modifiers, 9, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 6, .inherited = true}, + {field_name, 9, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 6, .inherited = true}, + {field_parameters, 9, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 6, .inherited = true}, + {field_visibility, 9, .inherited = true}, + [1512] = + {field_alternative, 9}, + {field_alternative_body, 11}, + {field_condition, 1}, + {field_consequence, 4}, + {field_consequence_body, 6}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 9, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 9, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 9, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 9, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 9, .inherited = true}, + [1527] = + {field_alternative, 7, .inherited = true}, + {field_alternative, 10}, + {field_alternative_body, 7, .inherited = true}, + {field_condition, 1}, + {field_condition, 7, .inherited = true}, + {field_consequence, 4}, + {field_consequence_body, 6}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 7, .inherited = true}, + {field_modifiers, 10, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 7, .inherited = true}, + {field_name, 10, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 7, .inherited = true}, + {field_parameters, 10, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 7, .inherited = true}, + {field_type, 10, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 7, .inherited = true}, + {field_visibility, 10, .inherited = true}, + [1549] = + {field_alternative, 6, .inherited = true}, + {field_alternative, 9}, + {field_alternative_body, 6, .inherited = true}, + {field_alternative_body, 11}, + {field_condition, 1}, + {field_condition, 6, .inherited = true}, + {field_consequence, 4}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 6, .inherited = true}, + {field_modifiers, 9, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 6, .inherited = true}, + {field_name, 9, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 6, .inherited = true}, + {field_parameters, 9, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 6, .inherited = true}, + {field_type, 9, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 6, .inherited = true}, + {field_visibility, 9, .inherited = true}, + [1571] = + {field_accessor, 4, .inherited = true}, + {field_accessor, 9, .inherited = true}, + {field_alternative, 9}, + {field_alternative_body, 11}, + {field_condition, 1}, + {field_consequence, 4}, + {field_consequence_body, 6}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 9, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 9, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 9, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 9, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 9, .inherited = true}, + [1588] = + {field_accessor, 4, .inherited = true}, + {field_accessor, 7, .inherited = true}, + {field_accessor, 10, .inherited = true}, + {field_alternative, 7, .inherited = true}, + {field_alternative, 10}, + {field_alternative_body, 7, .inherited = true}, + {field_condition, 1}, + {field_condition, 7, .inherited = true}, + {field_consequence, 4}, + {field_consequence_body, 6}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 7, .inherited = true}, + {field_modifiers, 10, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 7, .inherited = true}, + {field_name, 10, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 7, .inherited = true}, + {field_parameters, 10, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 7, .inherited = true}, + {field_type, 10, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 7, .inherited = true}, + {field_visibility, 10, .inherited = true}, + [1613] = + {field_accessor, 4, .inherited = true}, + {field_accessor, 6, .inherited = true}, + {field_accessor, 9, .inherited = true}, + {field_alternative, 6, .inherited = true}, + {field_alternative, 9}, + {field_alternative_body, 6, .inherited = true}, + {field_alternative_body, 11}, + {field_condition, 1}, + {field_condition, 6, .inherited = true}, + {field_consequence, 4}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 6, .inherited = true}, + {field_modifiers, 9, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 6, .inherited = true}, + {field_name, 9, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 6, .inherited = true}, + {field_parameters, 9, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 6, .inherited = true}, + {field_type, 9, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 6, .inherited = true}, + {field_visibility, 9, .inherited = true}, + [1638] = + {field_access, 5}, + {field_lock, 6}, + {field_mode, 3}, + {field_number, 8}, + {field_path, 1}, + {field_record_length, 11}, + [1644] = + {field_alternative, 7, .inherited = true}, + {field_alternative, 10}, + {field_alternative_body, 7, .inherited = true}, + {field_alternative_body, 12}, + {field_condition, 1}, + {field_condition, 7, .inherited = true}, + {field_consequence, 4}, + {field_consequence_body, 6}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 7, .inherited = true}, + {field_modifiers, 10, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 7, .inherited = true}, + {field_name, 10, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 7, .inherited = true}, + {field_parameters, 10, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 7, .inherited = true}, + {field_visibility, 10, .inherited = true}, + [1664] = + {field_alternative, 7, .inherited = true}, + {field_alternative, 10}, + {field_alternative_body, 7, .inherited = true}, + {field_alternative_body, 12}, + {field_condition, 1}, + {field_condition, 7, .inherited = true}, + {field_consequence, 4}, + {field_consequence_body, 6}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 7, .inherited = true}, + {field_modifiers, 10, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 7, .inherited = true}, + {field_name, 10, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 7, .inherited = true}, + {field_parameters, 10, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 7, .inherited = true}, + {field_type, 10, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 7, .inherited = true}, + {field_visibility, 10, .inherited = true}, + [1687] = + {field_accessor, 4, .inherited = true}, + {field_accessor, 7, .inherited = true}, + {field_accessor, 10, .inherited = true}, + {field_alternative, 7, .inherited = true}, + {field_alternative, 10}, + {field_alternative_body, 7, .inherited = true}, + {field_alternative_body, 12}, + {field_condition, 1}, + {field_condition, 7, .inherited = true}, + {field_consequence, 4}, + {field_consequence_body, 6}, + {field_modifiers, 4, .inherited = true}, + {field_modifiers, 7, .inherited = true}, + {field_modifiers, 10, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_name, 7, .inherited = true}, + {field_name, 10, .inherited = true}, + {field_parameters, 4, .inherited = true}, + {field_parameters, 7, .inherited = true}, + {field_parameters, 10, .inherited = true}, + {field_type, 4, .inherited = true}, + {field_type, 7, .inherited = true}, + {field_type, 10, .inherited = true}, + {field_visibility, 4, .inherited = true}, + {field_visibility, 7, .inherited = true}, + {field_visibility, 10, .inherited = true}, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [1] = { + [0] = sym_identifier, + }, + [3] = { + [0] = alias_sym_line_number_literal, + }, + [12] = { + [0] = alias_sym_line_number_literal, + }, + [15] = { + [0] = sym_identifier, + }, + [26] = { + [0] = alias_sym_line_number_literal, + }, + [29] = { + [0] = alias_sym_line_number_literal, + }, + [46] = { + [1] = sym_identifier, + }, + [56] = { + [1] = sym_identifier, + }, + [57] = { + [1] = alias_sym_line_number_literal, + }, + [64] = { + [0] = alias_sym_line_number_literal, + }, + [65] = { + [0] = alias_sym_line_number_literal, + }, + [103] = { + [2] = sym_identifier, + }, + [144] = { + [3] = alias_sym_line_number_literal, + }, + [146] = { + [3] = alias_sym_line_number_literal, + }, + [191] = { + [4] = sym_identifier, + }, + [200] = { + [3] = alias_sym_line_number_literal, + }, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + 0, +}; + +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 2, + [4] = 2, + [5] = 5, + [6] = 5, + [7] = 5, + [8] = 5, + [9] = 5, + [10] = 5, + [11] = 5, + [12] = 5, + [13] = 13, + [14] = 14, + [15] = 15, + [16] = 16, + [17] = 15, + [18] = 14, + [19] = 19, + [20] = 20, + [21] = 21, + [22] = 22, + [23] = 23, + [24] = 24, + [25] = 24, + [26] = 22, + [27] = 27, + [28] = 19, + [29] = 29, + [30] = 21, + [31] = 23, + [32] = 32, + [33] = 33, + [34] = 33, + [35] = 24, + [36] = 22, + [37] = 27, + [38] = 19, + [39] = 29, + [40] = 21, + [41] = 23, + [42] = 32, + [43] = 20, + [44] = 33, + [45] = 29, + [46] = 32, + [47] = 27, + [48] = 20, + [49] = 49, + [50] = 50, + [51] = 51, + [52] = 52, + [53] = 53, + [54] = 54, + [55] = 54, + [56] = 56, + [57] = 57, + [58] = 54, + [59] = 59, + [60] = 60, + [61] = 57, + [62] = 54, + [63] = 59, + [64] = 60, + [65] = 65, + [66] = 66, + [67] = 67, + [68] = 57, + [69] = 54, + [70] = 59, + [71] = 60, + [72] = 65, + [73] = 66, + [74] = 67, + [75] = 57, + [76] = 54, + [77] = 59, + [78] = 60, + [79] = 65, + [80] = 66, + [81] = 67, + [82] = 57, + [83] = 54, + [84] = 59, + [85] = 60, + [86] = 65, + [87] = 66, + [88] = 67, + [89] = 57, + [90] = 54, + [91] = 59, + [92] = 60, + [93] = 65, + [94] = 66, + [95] = 67, + [96] = 57, + [97] = 54, + [98] = 67, + [99] = 60, + [100] = 65, + [101] = 66, + [102] = 67, + [103] = 57, + [104] = 54, + [105] = 59, + [106] = 60, + [107] = 65, + [108] = 66, + [109] = 67, + [110] = 57, + [111] = 54, + [112] = 59, + [113] = 60, + [114] = 65, + [115] = 66, + [116] = 67, + [117] = 54, + [118] = 54, + [119] = 54, + [120] = 54, + [121] = 65, + [122] = 54, + [123] = 54, + [124] = 54, + [125] = 59, + [126] = 60, + [127] = 65, + [128] = 66, + [129] = 67, + [130] = 130, + [131] = 131, + [132] = 57, + [133] = 133, + [134] = 66, + [135] = 59, + [136] = 136, + [137] = 136, + [138] = 138, + [139] = 139, + [140] = 136, + [141] = 141, + [142] = 142, + [143] = 143, + [144] = 52, + [145] = 145, + [146] = 52, + [147] = 53, + [148] = 142, + [149] = 52, + [150] = 139, + [151] = 142, + [152] = 52, + [153] = 143, + [154] = 138, + [155] = 141, + [156] = 136, + [157] = 139, + [158] = 143, + [159] = 138, + [160] = 141, + [161] = 136, + [162] = 142, + [163] = 139, + [164] = 136, + [165] = 52, + [166] = 139, + [167] = 139, + [168] = 136, + [169] = 139, + [170] = 136, + [171] = 139, + [172] = 136, + [173] = 139, + [174] = 136, + [175] = 139, + [176] = 51, + [177] = 142, + [178] = 142, + [179] = 179, + [180] = 180, + [181] = 52, + [182] = 182, + [183] = 183, + [184] = 184, + [185] = 185, + [186] = 186, + [187] = 187, + [188] = 188, + [189] = 189, + [190] = 190, + [191] = 191, + [192] = 192, + [193] = 193, + [194] = 194, + [195] = 195, + [196] = 187, + [197] = 187, + [198] = 198, + [199] = 187, + [200] = 187, + [201] = 187, + [202] = 187, + [203] = 187, + [204] = 198, + [205] = 187, + [206] = 198, + [207] = 198, + [208] = 198, + [209] = 198, + [210] = 198, + [211] = 198, + [212] = 198, + [213] = 198, + [214] = 198, + [215] = 198, + [216] = 216, + [217] = 216, + [218] = 216, + [219] = 216, + [220] = 216, + [221] = 216, + [222] = 216, + [223] = 216, + [224] = 216, + [225] = 216, + [226] = 216, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 227, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 230, + [237] = 227, + [238] = 230, + [239] = 233, + [240] = 240, + [241] = 234, + [242] = 235, + [243] = 229, + [244] = 230, + [245] = 227, + [246] = 227, + [247] = 231, + [248] = 233, + [249] = 234, + [250] = 235, + [251] = 230, + [252] = 227, + [253] = 240, + [254] = 233, + [255] = 234, + [256] = 235, + [257] = 230, + [258] = 229, + [259] = 231, + [260] = 233, + [261] = 240, + [262] = 231, + [263] = 234, + [264] = 235, + [265] = 229, + [266] = 230, + [267] = 227, + [268] = 233, + [269] = 231, + [270] = 234, + [271] = 235, + [272] = 240, + [273] = 230, + [274] = 227, + [275] = 229, + [276] = 233, + [277] = 229, + [278] = 234, + [279] = 231, + [280] = 235, + [281] = 240, + [282] = 230, + [283] = 227, + [284] = 240, + [285] = 233, + [286] = 229, + [287] = 234, + [288] = 231, + [289] = 235, + [290] = 227, + [291] = 227, + [292] = 240, + [293] = 227, + [294] = 227, + [295] = 227, + [296] = 240, + [297] = 227, + [298] = 227, + [299] = 229, + [300] = 227, + [301] = 235, + [302] = 229, + [303] = 231, + [304] = 228, + [305] = 305, + [306] = 233, + [307] = 228, + [308] = 229, + [309] = 240, + [310] = 230, + [311] = 231, + [312] = 227, + [313] = 305, + [314] = 231, + [315] = 233, + [316] = 228, + [317] = 305, + [318] = 228, + [319] = 234, + [320] = 305, + [321] = 228, + [322] = 235, + [323] = 305, + [324] = 240, + [325] = 305, + [326] = 228, + [327] = 305, + [328] = 228, + [329] = 305, + [330] = 229, + [331] = 228, + [332] = 305, + [333] = 228, + [334] = 234, + [335] = 305, + [336] = 240, + [337] = 231, + [338] = 338, + [339] = 338, + [340] = 338, + [341] = 338, + [342] = 338, + [343] = 338, + [344] = 338, + [345] = 338, + [346] = 338, + [347] = 338, + [348] = 338, + [349] = 349, + [350] = 350, + [351] = 349, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 350, + [361] = 352, + [362] = 353, + [363] = 355, + [364] = 354, + [365] = 356, + [366] = 358, + [367] = 367, + [368] = 368, + [369] = 357, + [370] = 359, + [371] = 371, + [372] = 372, + [373] = 367, + [374] = 349, + [375] = 371, + [376] = 368, + [377] = 377, + [378] = 350, + [379] = 372, + [380] = 380, + [381] = 381, + [382] = 349, + [383] = 349, + [384] = 384, + [385] = 385, + [386] = 386, + [387] = 353, + [388] = 349, + [389] = 354, + [390] = 349, + [391] = 391, + [392] = 352, + [393] = 355, + [394] = 349, + [395] = 395, + [396] = 356, + [397] = 397, + [398] = 398, + [399] = 399, + [400] = 400, + [401] = 401, + [402] = 402, + [403] = 359, + [404] = 404, + [405] = 405, + [406] = 406, + [407] = 407, + [408] = 408, + [409] = 409, + [410] = 410, + [411] = 411, + [412] = 412, + [413] = 413, + [414] = 414, + [415] = 415, + [416] = 416, + [417] = 417, + [418] = 350, + [419] = 350, + [420] = 357, + [421] = 421, + [422] = 422, + [423] = 423, + [424] = 424, + [425] = 425, + [426] = 426, + [427] = 427, + [428] = 428, + [429] = 429, + [430] = 430, + [431] = 431, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 435, + [436] = 380, + [437] = 437, + [438] = 385, + [439] = 386, + [440] = 384, + [441] = 380, + [442] = 349, + [443] = 385, + [444] = 386, + [445] = 384, + [446] = 446, + [447] = 350, + [448] = 448, + [449] = 350, + [450] = 450, + [451] = 451, + [452] = 452, + [453] = 453, + [454] = 434, + [455] = 455, + [456] = 435, + [457] = 457, + [458] = 458, + [459] = 377, + [460] = 460, + [461] = 461, + [462] = 350, + [463] = 463, + [464] = 358, + [465] = 465, + [466] = 429, + [467] = 408, + [468] = 409, + [469] = 410, + [470] = 411, + [471] = 412, + [472] = 413, + [473] = 429, + [474] = 355, + [475] = 451, + [476] = 453, + [477] = 398, + [478] = 417, + [479] = 422, + [480] = 423, + [481] = 434, + [482] = 435, + [483] = 427, + [484] = 352, + [485] = 434, + [486] = 435, + [487] = 353, + [488] = 432, + [489] = 433, + [490] = 354, + [491] = 434, + [492] = 435, + [493] = 424, + [494] = 425, + [495] = 426, + [496] = 431, + [497] = 452, + [498] = 354, + [499] = 400, + [500] = 402, + [501] = 355, + [502] = 414, + [503] = 399, + [504] = 401, + [505] = 421, + [506] = 465, + [507] = 404, + [508] = 405, + [509] = 406, + [510] = 407, + [511] = 408, + [512] = 409, + [513] = 410, + [514] = 411, + [515] = 412, + [516] = 413, + [517] = 428, + [518] = 430, + [519] = 451, + [520] = 453, + [521] = 406, + [522] = 407, + [523] = 417, + [524] = 422, + [525] = 423, + [526] = 427, + [527] = 353, + [528] = 354, + [529] = 432, + [530] = 433, + [531] = 352, + [532] = 437, + [533] = 424, + [534] = 425, + [535] = 426, + [536] = 431, + [537] = 434, + [538] = 435, + [539] = 437, + [540] = 350, + [541] = 380, + [542] = 352, + [543] = 434, + [544] = 355, + [545] = 353, + [546] = 354, + [547] = 435, + [548] = 352, + [549] = 452, + [550] = 355, + [551] = 353, + [552] = 354, + [553] = 353, + [554] = 400, + [555] = 402, + [556] = 414, + [557] = 399, + [558] = 401, + [559] = 385, + [560] = 421, + [561] = 386, + [562] = 428, + [563] = 430, + [564] = 352, + [565] = 384, + [566] = 465, + [567] = 355, + [568] = 404, + [569] = 381, + [570] = 391, + [571] = 405, + [572] = 398, + [573] = 385, + [574] = 356, + [575] = 434, + [576] = 435, + [577] = 358, + [578] = 359, + [579] = 356, + [580] = 434, + [581] = 435, + [582] = 452, + [583] = 400, + [584] = 402, + [585] = 414, + [586] = 380, + [587] = 358, + [588] = 399, + [589] = 401, + [590] = 451, + [591] = 421, + [592] = 453, + [593] = 465, + [594] = 404, + [595] = 405, + [596] = 406, + [597] = 407, + [598] = 408, + [599] = 409, + [600] = 410, + [601] = 411, + [602] = 412, + [603] = 413, + [604] = 398, + [605] = 428, + [606] = 437, + [607] = 430, + [608] = 386, + [609] = 384, + [610] = 417, + [611] = 429, + [612] = 380, + [613] = 385, + [614] = 386, + [615] = 384, + [616] = 352, + [617] = 357, + [618] = 359, + [619] = 357, + [620] = 358, + [621] = 359, + [622] = 422, + [623] = 357, + [624] = 356, + [625] = 356, + [626] = 423, + [627] = 357, + [628] = 358, + [629] = 359, + [630] = 357, + [631] = 356, + [632] = 424, + [633] = 425, + [634] = 426, + [635] = 427, + [636] = 368, + [637] = 353, + [638] = 460, + [639] = 461, + [640] = 463, + [641] = 395, + [642] = 397, + [643] = 415, + [644] = 416, + [645] = 354, + [646] = 446, + [647] = 448, + [648] = 450, + [649] = 455, + [650] = 457, + [651] = 458, + [652] = 431, + [653] = 432, + [654] = 433, + [655] = 367, + [656] = 358, + [657] = 371, + [658] = 359, + [659] = 355, + [660] = 453, + [661] = 451, + [662] = 453, + [663] = 429, + [664] = 434, + [665] = 435, + [666] = 398, + [667] = 417, + [668] = 422, + [669] = 423, + [670] = 427, + [671] = 432, + [672] = 433, + [673] = 424, + [674] = 425, + [675] = 426, + [676] = 431, + [677] = 452, + [678] = 434, + [679] = 435, + [680] = 400, + [681] = 402, + [682] = 414, + [683] = 434, + [684] = 435, + [685] = 399, + [686] = 428, + [687] = 430, + [688] = 401, + [689] = 434, + [690] = 435, + [691] = 429, + [692] = 421, + [693] = 465, + [694] = 404, + [695] = 405, + [696] = 406, + [697] = 407, + [698] = 408, + [699] = 409, + [700] = 410, + [701] = 411, + [702] = 412, + [703] = 413, + [704] = 357, + [705] = 398, + [706] = 427, + [707] = 372, + [708] = 432, + [709] = 433, + [710] = 417, + [711] = 422, + [712] = 423, + [713] = 434, + [714] = 435, + [715] = 437, + [716] = 424, + [717] = 425, + [718] = 426, + [719] = 431, + [720] = 437, + [721] = 359, + [722] = 452, + [723] = 723, + [724] = 356, + [725] = 400, + [726] = 402, + [727] = 414, + [728] = 399, + [729] = 401, + [730] = 421, + [731] = 465, + [732] = 404, + [733] = 405, + [734] = 406, + [735] = 407, + [736] = 408, + [737] = 409, + [738] = 410, + [739] = 411, + [740] = 412, + [741] = 413, + [742] = 428, + [743] = 430, + [744] = 358, + [745] = 451, + [746] = 368, + [747] = 371, + [748] = 371, + [749] = 367, + [750] = 371, + [751] = 368, + [752] = 368, + [753] = 367, + [754] = 367, + [755] = 371, + [756] = 368, + [757] = 367, + [758] = 367, + [759] = 371, + [760] = 368, + [761] = 377, + [762] = 372, + [763] = 372, + [764] = 372, + [765] = 371, + [766] = 368, + [767] = 372, + [768] = 723, + [769] = 367, + [770] = 372, + [771] = 424, + [772] = 391, + [773] = 425, + [774] = 385, + [775] = 380, + [776] = 385, + [777] = 380, + [778] = 386, + [779] = 779, + [780] = 372, + [781] = 384, + [782] = 386, + [783] = 426, + [784] = 381, + [785] = 431, + [786] = 384, + [787] = 435, + [788] = 431, + [789] = 380, + [790] = 451, + [791] = 452, + [792] = 453, + [793] = 430, + [794] = 417, + [795] = 398, + [796] = 400, + [797] = 437, + [798] = 406, + [799] = 451, + [800] = 427, + [801] = 422, + [802] = 402, + [803] = 377, + [804] = 465, + [805] = 423, + [806] = 414, + [807] = 380, + [808] = 429, + [809] = 407, + [810] = 430, + [811] = 408, + [812] = 404, + [813] = 452, + [814] = 453, + [815] = 417, + [816] = 422, + [817] = 423, + [818] = 405, + [819] = 400, + [820] = 402, + [821] = 414, + [822] = 411, + [823] = 398, + [824] = 409, + [825] = 385, + [826] = 412, + [827] = 377, + [828] = 377, + [829] = 458, + [830] = 434, + [831] = 384, + [832] = 450, + [833] = 455, + [834] = 386, + [835] = 428, + [836] = 836, + [837] = 435, + [838] = 838, + [839] = 839, + [840] = 410, + [841] = 457, + [842] = 384, + [843] = 428, + [844] = 429, + [845] = 421, + [846] = 432, + [847] = 427, + [848] = 432, + [849] = 399, + [850] = 401, + [851] = 433, + [852] = 385, + [853] = 421, + [854] = 386, + [855] = 433, + [856] = 434, + [857] = 460, + [858] = 461, + [859] = 463, + [860] = 413, + [861] = 395, + [862] = 397, + [863] = 415, + [864] = 416, + [865] = 424, + [866] = 377, + [867] = 425, + [868] = 446, + [869] = 426, + [870] = 448, + [871] = 377, + [872] = 391, + [873] = 873, + [874] = 434, + [875] = 435, + [876] = 380, + [877] = 437, + [878] = 878, + [879] = 385, + [880] = 380, + [881] = 386, + [882] = 400, + [883] = 384, + [884] = 402, + [885] = 385, + [886] = 380, + [887] = 386, + [888] = 414, + [889] = 399, + [890] = 401, + [891] = 384, + [892] = 380, + [893] = 421, + [894] = 465, + [895] = 404, + [896] = 405, + [897] = 406, + [898] = 407, + [899] = 408, + [900] = 409, + [901] = 410, + [902] = 411, + [903] = 412, + [904] = 413, + [905] = 451, + [906] = 453, + [907] = 428, + [908] = 430, + [909] = 429, + [910] = 398, + [911] = 380, + [912] = 424, + [913] = 425, + [914] = 426, + [915] = 417, + [916] = 431, + [917] = 381, + [918] = 385, + [919] = 422, + [920] = 423, + [921] = 437, + [922] = 386, + [923] = 427, + [924] = 924, + [925] = 384, + [926] = 381, + [927] = 432, + [928] = 433, + [929] = 391, + [930] = 437, + [931] = 385, + [932] = 452, + [933] = 386, + [934] = 934, + [935] = 400, + [936] = 384, + [937] = 402, + [938] = 414, + [939] = 424, + [940] = 425, + [941] = 426, + [942] = 399, + [943] = 401, + [944] = 431, + [945] = 428, + [946] = 430, + [947] = 421, + [948] = 434, + [949] = 435, + [950] = 429, + [951] = 465, + [952] = 404, + [953] = 405, + [954] = 406, + [955] = 407, + [956] = 408, + [957] = 409, + [958] = 410, + [959] = 411, + [960] = 412, + [961] = 413, + [962] = 434, + [963] = 435, + [964] = 434, + [965] = 435, + [966] = 385, + [967] = 451, + [968] = 453, + [969] = 386, + [970] = 398, + [971] = 384, + [972] = 427, + [973] = 432, + [974] = 433, + [975] = 975, + [976] = 417, + [977] = 422, + [978] = 423, + [979] = 434, + [980] = 435, + [981] = 380, + [982] = 424, + [983] = 425, + [984] = 426, + [985] = 431, + [986] = 437, + [987] = 437, + [988] = 381, + [989] = 391, + [990] = 990, + [991] = 991, + [992] = 992, + [993] = 385, + [994] = 386, + [995] = 384, + [996] = 996, + [997] = 377, + [998] = 998, + [999] = 999, + [1000] = 399, + [1001] = 401, + [1002] = 1002, + [1003] = 1003, + [1004] = 1004, + [1005] = 381, + [1006] = 391, + [1007] = 465, + [1008] = 404, + [1009] = 405, + [1010] = 406, + [1011] = 407, + [1012] = 408, + [1013] = 409, + [1014] = 410, + [1015] = 411, + [1016] = 412, + [1017] = 413, + [1018] = 1018, + [1019] = 1019, + [1020] = 1020, + [1021] = 1021, + [1022] = 1022, + [1023] = 1023, + [1024] = 385, + [1025] = 386, + [1026] = 385, + [1027] = 1027, + [1028] = 384, + [1029] = 381, + [1030] = 391, + [1031] = 380, + [1032] = 386, + [1033] = 1033, + [1034] = 384, + [1035] = 779, + [1036] = 399, + [1037] = 401, + [1038] = 465, + [1039] = 404, + [1040] = 405, + [1041] = 406, + [1042] = 407, + [1043] = 408, + [1044] = 409, + [1045] = 410, + [1046] = 411, + [1047] = 412, + [1048] = 413, + [1049] = 437, + [1050] = 1050, + [1051] = 380, + [1052] = 1052, + [1053] = 1053, + [1054] = 452, + [1055] = 415, + [1056] = 395, + [1057] = 427, + [1058] = 421, + [1059] = 417, + [1060] = 458, + [1061] = 435, + [1062] = 465, + [1063] = 404, + [1064] = 405, + [1065] = 406, + [1066] = 407, + [1067] = 408, + [1068] = 409, + [1069] = 410, + [1070] = 411, + [1071] = 412, + [1072] = 413, + [1073] = 397, + [1074] = 427, + [1075] = 437, + [1076] = 1076, + [1077] = 452, + [1078] = 399, + [1079] = 1079, + [1080] = 385, + [1081] = 432, + [1082] = 433, + [1083] = 428, + [1084] = 415, + [1085] = 416, + [1086] = 429, + [1087] = 422, + [1088] = 432, + [1089] = 433, + [1090] = 386, + [1091] = 384, + [1092] = 423, + [1093] = 460, + [1094] = 427, + [1095] = 401, + [1096] = 422, + [1097] = 461, + [1098] = 455, + [1099] = 463, + [1100] = 423, + [1101] = 457, + [1102] = 427, + [1103] = 430, + [1104] = 451, + [1105] = 421, + [1106] = 432, + [1107] = 433, + [1108] = 452, + [1109] = 434, + [1110] = 431, + [1111] = 435, + [1112] = 452, + [1113] = 428, + [1114] = 385, + [1115] = 451, + [1116] = 453, + [1117] = 453, + [1118] = 400, + [1119] = 386, + [1120] = 398, + [1121] = 451, + [1122] = 458, + [1123] = 448, + [1124] = 380, + [1125] = 384, + [1126] = 395, + [1127] = 422, + [1128] = 465, + [1129] = 421, + [1130] = 430, + [1131] = 404, + [1132] = 405, + [1133] = 406, + [1134] = 407, + [1135] = 408, + [1136] = 409, + [1137] = 410, + [1138] = 411, + [1139] = 412, + [1140] = 413, + [1141] = 423, + [1142] = 424, + [1143] = 425, + [1144] = 426, + [1145] = 385, + [1146] = 400, + [1147] = 432, + [1148] = 380, + [1149] = 453, + [1150] = 386, + [1151] = 402, + [1152] = 431, + [1153] = 384, + [1154] = 433, + [1155] = 409, + [1156] = 452, + [1157] = 434, + [1158] = 424, + [1159] = 425, + [1160] = 426, + [1161] = 421, + [1162] = 455, + [1163] = 435, + [1164] = 398, + [1165] = 437, + [1166] = 380, + [1167] = 414, + [1168] = 397, + [1169] = 402, + [1170] = 424, + [1171] = 425, + [1172] = 398, + [1173] = 427, + [1174] = 426, + [1175] = 461, + [1176] = 400, + [1177] = 434, + [1178] = 435, + [1179] = 399, + [1180] = 429, + [1181] = 432, + [1182] = 433, + [1183] = 463, + [1184] = 380, + [1185] = 417, + [1186] = 422, + [1187] = 423, + [1188] = 385, + [1189] = 380, + [1190] = 386, + [1191] = 384, + [1192] = 434, + [1193] = 435, + [1194] = 415, + [1195] = 414, + [1196] = 451, + [1197] = 453, + [1198] = 399, + [1199] = 428, + [1200] = 431, + [1201] = 429, + [1202] = 430, + [1203] = 401, + [1204] = 431, + [1205] = 401, + [1206] = 424, + [1207] = 425, + [1208] = 426, + [1209] = 416, + [1210] = 431, + [1211] = 416, + [1212] = 402, + [1213] = 434, + [1214] = 1214, + [1215] = 410, + [1216] = 465, + [1217] = 380, + [1218] = 385, + [1219] = 386, + [1220] = 384, + [1221] = 424, + [1222] = 385, + [1223] = 404, + [1224] = 405, + [1225] = 386, + [1226] = 384, + [1227] = 425, + [1228] = 426, + [1229] = 452, + [1230] = 398, + [1231] = 417, + [1232] = 411, + [1233] = 437, + [1234] = 457, + [1235] = 385, + [1236] = 386, + [1237] = 434, + [1238] = 384, + [1239] = 417, + [1240] = 385, + [1241] = 386, + [1242] = 384, + [1243] = 437, + [1244] = 437, + [1245] = 434, + [1246] = 435, + [1247] = 446, + [1248] = 1248, + [1249] = 435, + [1250] = 417, + [1251] = 398, + [1252] = 417, + [1253] = 460, + [1254] = 400, + [1255] = 1255, + [1256] = 446, + [1257] = 431, + [1258] = 448, + [1259] = 1259, + [1260] = 422, + [1261] = 422, + [1262] = 423, + [1263] = 380, + [1264] = 448, + [1265] = 450, + [1266] = 427, + [1267] = 421, + [1268] = 380, + [1269] = 402, + [1270] = 450, + [1271] = 465, + [1272] = 460, + [1273] = 461, + [1274] = 463, + [1275] = 422, + [1276] = 395, + [1277] = 397, + [1278] = 408, + [1279] = 434, + [1280] = 432, + [1281] = 433, + [1282] = 406, + [1283] = 1283, + [1284] = 423, + [1285] = 404, + [1286] = 428, + [1287] = 446, + [1288] = 430, + [1289] = 385, + [1290] = 405, + [1291] = 448, + [1292] = 406, + [1293] = 450, + [1294] = 455, + [1295] = 457, + [1296] = 458, + [1297] = 407, + [1298] = 407, + [1299] = 408, + [1300] = 465, + [1301] = 409, + [1302] = 404, + [1303] = 410, + [1304] = 411, + [1305] = 412, + [1306] = 413, + [1307] = 421, + [1308] = 429, + [1309] = 405, + [1310] = 434, + [1311] = 406, + [1312] = 407, + [1313] = 435, + [1314] = 408, + [1315] = 838, + [1316] = 400, + [1317] = 422, + [1318] = 409, + [1319] = 410, + [1320] = 402, + [1321] = 423, + [1322] = 411, + [1323] = 414, + [1324] = 412, + [1325] = 413, + [1326] = 385, + [1327] = 407, + [1328] = 386, + [1329] = 428, + [1330] = 412, + [1331] = 430, + [1332] = 384, + [1333] = 408, + [1334] = 451, + [1335] = 460, + [1336] = 461, + [1337] = 463, + [1338] = 451, + [1339] = 395, + [1340] = 397, + [1341] = 415, + [1342] = 416, + [1343] = 453, + [1344] = 453, + [1345] = 399, + [1346] = 428, + [1347] = 434, + [1348] = 435, + [1349] = 400, + [1350] = 429, + [1351] = 430, + [1352] = 446, + [1353] = 401, + [1354] = 409, + [1355] = 448, + [1356] = 402, + [1357] = 450, + [1358] = 455, + [1359] = 457, + [1360] = 458, + [1361] = 386, + [1362] = 424, + [1363] = 425, + [1364] = 429, + [1365] = 426, + [1366] = 427, + [1367] = 385, + [1368] = 410, + [1369] = 414, + [1370] = 380, + [1371] = 427, + [1372] = 411, + [1373] = 412, + [1374] = 386, + [1375] = 413, + [1376] = 431, + [1377] = 432, + [1378] = 433, + [1379] = 414, + [1380] = 452, + [1381] = 836, + [1382] = 452, + [1383] = 455, + [1384] = 423, + [1385] = 384, + [1386] = 414, + [1387] = 457, + [1388] = 398, + [1389] = 398, + [1390] = 428, + [1391] = 429, + [1392] = 430, + [1393] = 432, + [1394] = 400, + [1395] = 433, + [1396] = 451, + [1397] = 381, + [1398] = 465, + [1399] = 391, + [1400] = 404, + [1401] = 405, + [1402] = 384, + [1403] = 451, + [1404] = 450, + [1405] = 402, + [1406] = 453, + [1407] = 414, + [1408] = 446, + [1409] = 417, + [1410] = 413, + [1411] = 399, + [1412] = 399, + [1413] = 428, + [1414] = 430, + [1415] = 401, + [1416] = 435, + [1417] = 401, + [1418] = 452, + [1419] = 453, + [1420] = 406, + [1421] = 400, + [1422] = 407, + [1423] = 408, + [1424] = 402, + [1425] = 409, + [1426] = 414, + [1427] = 410, + [1428] = 411, + [1429] = 399, + [1430] = 380, + [1431] = 839, + [1432] = 401, + [1433] = 437, + [1434] = 429, + [1435] = 1076, + [1436] = 1079, + [1437] = 460, + [1438] = 412, + [1439] = 461, + [1440] = 413, + [1441] = 424, + [1442] = 425, + [1443] = 421, + [1444] = 426, + [1445] = 380, + [1446] = 421, + [1447] = 458, + [1448] = 437, + [1449] = 417, + [1450] = 463, + [1451] = 398, + [1452] = 395, + [1453] = 397, + [1454] = 465, + [1455] = 404, + [1456] = 405, + [1457] = 415, + [1458] = 406, + [1459] = 416, + [1460] = 411, + [1461] = 437, + [1462] = 452, + [1463] = 421, + [1464] = 400, + [1465] = 402, + [1466] = 465, + [1467] = 404, + [1468] = 405, + [1469] = 406, + [1470] = 407, + [1471] = 408, + [1472] = 409, + [1473] = 410, + [1474] = 411, + [1475] = 412, + [1476] = 413, + [1477] = 414, + [1478] = 380, + [1479] = 395, + [1480] = 399, + [1481] = 401, + [1482] = 451, + [1483] = 453, + [1484] = 434, + [1485] = 435, + [1486] = 398, + [1487] = 1487, + [1488] = 421, + [1489] = 417, + [1490] = 428, + [1491] = 430, + [1492] = 422, + [1493] = 465, + [1494] = 404, + [1495] = 405, + [1496] = 406, + [1497] = 407, + [1498] = 408, + [1499] = 409, + [1500] = 410, + [1501] = 411, + [1502] = 412, + [1503] = 413, + [1504] = 423, + [1505] = 429, + [1506] = 451, + [1507] = 452, + [1508] = 453, + [1509] = 398, + [1510] = 434, + [1511] = 435, + [1512] = 427, + [1513] = 417, + [1514] = 428, + [1515] = 400, + [1516] = 430, + [1517] = 422, + [1518] = 432, + [1519] = 433, + [1520] = 402, + [1521] = 437, + [1522] = 423, + [1523] = 414, + [1524] = 397, + [1525] = 399, + [1526] = 429, + [1527] = 401, + [1528] = 424, + [1529] = 425, + [1530] = 426, + [1531] = 385, + [1532] = 1532, + [1533] = 1533, + [1534] = 386, + [1535] = 431, + [1536] = 384, + [1537] = 427, + [1538] = 421, + [1539] = 434, + [1540] = 435, + [1541] = 428, + [1542] = 430, + [1543] = 432, + [1544] = 433, + [1545] = 465, + [1546] = 404, + [1547] = 405, + [1548] = 406, + [1549] = 407, + [1550] = 408, + [1551] = 409, + [1552] = 410, + [1553] = 412, + [1554] = 413, + [1555] = 385, + [1556] = 434, + [1557] = 435, + [1558] = 386, + [1559] = 429, + [1560] = 384, + [1561] = 424, + [1562] = 425, + [1563] = 426, + [1564] = 451, + [1565] = 453, + [1566] = 434, + [1567] = 435, + [1568] = 431, + [1569] = 1569, + [1570] = 415, + [1571] = 452, + [1572] = 398, + [1573] = 416, + [1574] = 1574, + [1575] = 400, + [1576] = 402, + [1577] = 414, + [1578] = 452, + [1579] = 996, + [1580] = 434, + [1581] = 435, + [1582] = 417, + [1583] = 399, + [1584] = 401, + [1585] = 424, + [1586] = 425, + [1587] = 426, + [1588] = 427, + [1589] = 1589, + [1590] = 434, + [1591] = 435, + [1592] = 400, + [1593] = 422, + [1594] = 402, + [1595] = 1595, + [1596] = 423, + [1597] = 414, + [1598] = 427, + [1599] = 421, + [1600] = 434, + [1601] = 380, + [1602] = 435, + [1603] = 399, + [1604] = 401, + [1605] = 432, + [1606] = 433, + [1607] = 465, + [1608] = 404, + [1609] = 405, + [1610] = 406, + [1611] = 407, + [1612] = 408, + [1613] = 409, + [1614] = 410, + [1615] = 411, + [1616] = 412, + [1617] = 413, + [1618] = 428, + [1619] = 430, + [1620] = 428, + [1621] = 451, + [1622] = 421, + [1623] = 453, + [1624] = 434, + [1625] = 435, + [1626] = 431, + [1627] = 428, + [1628] = 429, + [1629] = 430, + [1630] = 1630, + [1631] = 1631, + [1632] = 1632, + [1633] = 465, + [1634] = 404, + [1635] = 405, + [1636] = 406, + [1637] = 407, + [1638] = 408, + [1639] = 409, + [1640] = 410, + [1641] = 411, + [1642] = 412, + [1643] = 413, + [1644] = 424, + [1645] = 425, + [1646] = 426, + [1647] = 434, + [1648] = 435, + [1649] = 1033, + [1650] = 398, + [1651] = 451, + [1652] = 429, + [1653] = 452, + [1654] = 453, + [1655] = 431, + [1656] = 432, + [1657] = 433, + [1658] = 451, + [1659] = 452, + [1660] = 453, + [1661] = 434, + [1662] = 434, + [1663] = 435, + [1664] = 400, + [1665] = 402, + [1666] = 414, + [1667] = 398, + [1668] = 399, + [1669] = 428, + [1670] = 430, + [1671] = 401, + [1672] = 417, + [1673] = 429, + [1674] = 435, + [1675] = 417, + [1676] = 1052, + [1677] = 398, + [1678] = 421, + [1679] = 399, + [1680] = 400, + [1681] = 437, + [1682] = 878, + [1683] = 422, + [1684] = 401, + [1685] = 465, + [1686] = 404, + [1687] = 405, + [1688] = 406, + [1689] = 407, + [1690] = 408, + [1691] = 409, + [1692] = 410, + [1693] = 411, + [1694] = 412, + [1695] = 413, + [1696] = 423, + [1697] = 399, + [1698] = 427, + [1699] = 401, + [1700] = 991, + [1701] = 992, + [1702] = 432, + [1703] = 433, + [1704] = 460, + [1705] = 417, + [1706] = 461, + [1707] = 380, + [1708] = 422, + [1709] = 998, + [1710] = 427, + [1711] = 999, + [1712] = 451, + [1713] = 452, + [1714] = 453, + [1715] = 1002, + [1716] = 1003, + [1717] = 1004, + [1718] = 398, + [1719] = 400, + [1720] = 1018, + [1721] = 465, + [1722] = 422, + [1723] = 432, + [1724] = 433, + [1725] = 404, + [1726] = 402, + [1727] = 405, + [1728] = 406, + [1729] = 407, + [1730] = 408, + [1731] = 409, + [1732] = 410, + [1733] = 411, + [1734] = 412, + [1735] = 413, + [1736] = 437, + [1737] = 423, + [1738] = 414, + [1739] = 424, + [1740] = 425, + [1741] = 426, + [1742] = 452, + [1743] = 399, + [1744] = 428, + [1745] = 400, + [1746] = 430, + [1747] = 401, + [1748] = 431, + [1749] = 402, + [1750] = 414, + [1751] = 385, + [1752] = 386, + [1753] = 1019, + [1754] = 399, + [1755] = 429, + [1756] = 401, + [1757] = 384, + [1758] = 1020, + [1759] = 1021, + [1760] = 421, + [1761] = 1022, + [1762] = 1023, + [1763] = 428, + [1764] = 457, + [1765] = 1027, + [1766] = 465, + [1767] = 404, + [1768] = 405, + [1769] = 406, + [1770] = 407, + [1771] = 408, + [1772] = 409, + [1773] = 410, + [1774] = 411, + [1775] = 412, + [1776] = 413, + [1777] = 437, + [1778] = 424, + [1779] = 425, + [1780] = 426, + [1781] = 452, + [1782] = 421, + [1783] = 434, + [1784] = 435, + [1785] = 428, + [1786] = 400, + [1787] = 429, + [1788] = 430, + [1789] = 431, + [1790] = 402, + [1791] = 465, + [1792] = 404, + [1793] = 405, + [1794] = 406, + [1795] = 407, + [1796] = 408, + [1797] = 409, + [1798] = 410, + [1799] = 411, + [1800] = 412, + [1801] = 413, + [1802] = 414, + [1803] = 427, + [1804] = 452, + [1805] = 434, + [1806] = 435, + [1807] = 399, + [1808] = 428, + [1809] = 400, + [1810] = 429, + [1811] = 430, + [1812] = 401, + [1813] = 432, + [1814] = 433, + [1815] = 402, + [1816] = 414, + [1817] = 451, + [1818] = 453, + [1819] = 398, + [1820] = 399, + [1821] = 429, + [1822] = 401, + [1823] = 451, + [1824] = 421, + [1825] = 453, + [1826] = 434, + [1827] = 435, + [1828] = 417, + [1829] = 398, + [1830] = 422, + [1831] = 402, + [1832] = 465, + [1833] = 404, + [1834] = 405, + [1835] = 406, + [1836] = 407, + [1837] = 408, + [1838] = 409, + [1839] = 410, + [1840] = 411, + [1841] = 412, + [1842] = 413, + [1843] = 423, + [1844] = 465, + [1845] = 421, + [1846] = 434, + [1847] = 435, + [1848] = 465, + [1849] = 404, + [1850] = 405, + [1851] = 406, + [1852] = 407, + [1853] = 408, + [1854] = 409, + [1855] = 410, + [1856] = 411, + [1857] = 412, + [1858] = 413, + [1859] = 437, + [1860] = 404, + [1861] = 405, + [1862] = 406, + [1863] = 451, + [1864] = 453, + [1865] = 398, + [1866] = 407, + [1867] = 427, + [1868] = 408, + [1869] = 451, + [1870] = 453, + [1871] = 434, + [1872] = 435, + [1873] = 398, + [1874] = 432, + [1875] = 433, + [1876] = 424, + [1877] = 425, + [1878] = 426, + [1879] = 427, + [1880] = 409, + [1881] = 1050, + [1882] = 431, + [1883] = 432, + [1884] = 433, + [1885] = 434, + [1886] = 435, + [1887] = 417, + [1888] = 422, + [1889] = 423, + [1890] = 434, + [1891] = 435, + [1892] = 417, + [1893] = 422, + [1894] = 423, + [1895] = 410, + [1896] = 427, + [1897] = 434, + [1898] = 435, + [1899] = 432, + [1900] = 433, + [1901] = 427, + [1902] = 434, + [1903] = 435, + [1904] = 432, + [1905] = 433, + [1906] = 429, + [1907] = 434, + [1908] = 435, + [1909] = 437, + [1910] = 424, + [1911] = 425, + [1912] = 426, + [1913] = 434, + [1914] = 435, + [1915] = 431, + [1916] = 437, + [1917] = 424, + [1918] = 425, + [1919] = 426, + [1920] = 434, + [1921] = 435, + [1922] = 417, + [1923] = 431, + [1924] = 422, + [1925] = 430, + [1926] = 423, + [1927] = 434, + [1928] = 435, + [1929] = 417, + [1930] = 422, + [1931] = 423, + [1932] = 437, + [1933] = 424, + [1934] = 425, + [1935] = 426, + [1936] = 431, + [1937] = 424, + [1938] = 425, + [1939] = 426, + [1940] = 431, + [1941] = 411, + [1942] = 437, + [1943] = 437, + [1944] = 437, + [1945] = 437, + [1946] = 412, + [1947] = 723, + [1948] = 413, + [1949] = 463, + [1950] = 448, + [1951] = 1053, + [1952] = 1952, + [1953] = 423, + [1954] = 934, + [1955] = 414, + [1956] = 446, + [1957] = 924, + [1958] = 975, + [1959] = 990, + [1960] = 873, + [1961] = 1961, + [1962] = 434, + [1963] = 435, + [1964] = 1964, + [1965] = 1965, + [1966] = 450, + [1967] = 458, + [1968] = 452, + [1969] = 996, + [1970] = 400, + [1971] = 455, + [1972] = 402, + [1973] = 399, + [1974] = 401, + [1975] = 465, + [1976] = 404, + [1977] = 405, + [1978] = 406, + [1979] = 407, + [1980] = 408, + [1981] = 409, + [1982] = 410, + [1983] = 411, + [1984] = 412, + [1985] = 413, + [1986] = 437, + [1987] = 414, + [1988] = 385, + [1989] = 386, + [1990] = 399, + [1991] = 401, + [1992] = 384, + [1993] = 437, + [1994] = 434, + [1995] = 380, + [1996] = 435, + [1997] = 1997, + [1998] = 421, + [1999] = 430, + [2000] = 423, + [2001] = 429, + [2002] = 431, + [2003] = 432, + [2004] = 433, + [2005] = 422, + [2006] = 412, + [2007] = 413, + [2008] = 400, + [2009] = 423, + [2010] = 402, + [2011] = 451, + [2012] = 414, + [2013] = 437, + [2014] = 453, + [2015] = 428, + [2016] = 430, + [2017] = 400, + [2018] = 451, + [2019] = 417, + [2020] = 398, + [2021] = 453, + [2022] = 424, + [2023] = 425, + [2024] = 426, + [2025] = 399, + [2026] = 429, + [2027] = 437, + [2028] = 431, + [2029] = 427, + [2030] = 399, + [2031] = 434, + [2032] = 437, + [2033] = 435, + [2034] = 401, + [2035] = 402, + [2036] = 422, + [2037] = 432, + [2038] = 433, + [2039] = 421, + [2040] = 423, + [2041] = 414, + [2042] = 421, + [2043] = 465, + [2044] = 404, + [2045] = 405, + [2046] = 406, + [2047] = 407, + [2048] = 408, + [2049] = 409, + [2050] = 410, + [2051] = 411, + [2052] = 412, + [2053] = 413, + [2054] = 452, + [2055] = 401, + [2056] = 1214, + [2057] = 417, + [2058] = 451, + [2059] = 453, + [2060] = 437, + [2061] = 399, + [2062] = 434, + [2063] = 435, + [2064] = 401, + [2065] = 422, + [2066] = 423, + [2067] = 414, + [2068] = 465, + [2069] = 404, + [2070] = 427, + [2071] = 398, + [2072] = 1076, + [2073] = 1079, + [2074] = 405, + [2075] = 1248, + [2076] = 406, + [2077] = 451, + [2078] = 452, + [2079] = 421, + [2080] = 432, + [2081] = 433, + [2082] = 453, + [2083] = 421, + [2084] = 398, + [2085] = 428, + [2086] = 1255, + [2087] = 465, + [2088] = 404, + [2089] = 405, + [2090] = 406, + [2091] = 407, + [2092] = 408, + [2093] = 409, + [2094] = 410, + [2095] = 411, + [2096] = 412, + [2097] = 413, + [2098] = 1076, + [2099] = 1079, + [2100] = 417, + [2101] = 429, + [2102] = 398, + [2103] = 428, + [2104] = 407, + [2105] = 424, + [2106] = 434, + [2107] = 435, + [2108] = 425, + [2109] = 426, + [2110] = 430, + [2111] = 465, + [2112] = 404, + [2113] = 422, + [2114] = 431, + [2115] = 405, + [2116] = 406, + [2117] = 424, + [2118] = 425, + [2119] = 426, + [2120] = 434, + [2121] = 407, + [2122] = 435, + [2123] = 428, + [2124] = 408, + [2125] = 430, + [2126] = 431, + [2127] = 409, + [2128] = 410, + [2129] = 411, + [2130] = 452, + [2131] = 1283, + [2132] = 412, + [2133] = 400, + [2134] = 413, + [2135] = 402, + [2136] = 414, + [2137] = 408, + [2138] = 427, + [2139] = 424, + [2140] = 434, + [2141] = 435, + [2142] = 425, + [2143] = 426, + [2144] = 429, + [2145] = 427, + [2146] = 432, + [2147] = 433, + [2148] = 409, + [2149] = 452, + [2150] = 399, + [2151] = 410, + [2152] = 417, + [2153] = 411, + [2154] = 400, + [2155] = 401, + [2156] = 1259, + [2157] = 402, + [2158] = 430, + [2159] = 1961, + [2160] = 1997, + [2161] = 723, + [2162] = 723, + [2163] = 1595, + [2164] = 1533, + [2165] = 723, + [2166] = 1569, + [2167] = 1574, + [2168] = 996, + [2169] = 1952, + [2170] = 1589, + [2171] = 1964, + [2172] = 1965, + [2173] = 723, + [2174] = 1630, + [2175] = 1487, + [2176] = 723, + [2177] = 1532, + [2178] = 1631, + [2179] = 1632, + [2180] = 2180, + [2181] = 2181, + [2182] = 424, + [2183] = 2183, + [2184] = 425, + [2185] = 426, + [2186] = 723, + [2187] = 2187, + [2188] = 385, + [2189] = 431, + [2190] = 2190, + [2191] = 380, + [2192] = 2192, + [2193] = 384, + [2194] = 2194, + [2195] = 779, + [2196] = 386, + [2197] = 2197, + [2198] = 452, + [2199] = 427, + [2200] = 423, + [2201] = 433, + [2202] = 451, + [2203] = 428, + [2204] = 429, + [2205] = 430, + [2206] = 400, + [2207] = 2181, + [2208] = 2187, + [2209] = 453, + [2210] = 2192, + [2211] = 836, + [2212] = 839, + [2213] = 2194, + [2214] = 414, + [2215] = 421, + [2216] = 422, + [2217] = 2180, + [2218] = 2197, + [2219] = 432, + [2220] = 2183, + [2221] = 402, + [2222] = 838, + [2223] = 2190, + [2224] = 398, + [2225] = 417, + [2226] = 424, + [2227] = 385, + [2228] = 385, + [2229] = 380, + [2230] = 386, + [2231] = 399, + [2232] = 386, + [2233] = 401, + [2234] = 384, + [2235] = 384, + [2236] = 424, + [2237] = 425, + [2238] = 779, + [2239] = 426, + [2240] = 385, + [2241] = 386, + [2242] = 385, + [2243] = 431, + [2244] = 386, + [2245] = 437, + [2246] = 385, + [2247] = 384, + [2248] = 386, + [2249] = 424, + [2250] = 425, + [2251] = 426, + [2252] = 384, + [2253] = 384, + [2254] = 431, + [2255] = 465, + [2256] = 404, + [2257] = 405, + [2258] = 996, + [2259] = 385, + [2260] = 406, + [2261] = 380, + [2262] = 386, + [2263] = 407, + [2264] = 408, + [2265] = 424, + [2266] = 425, + [2267] = 426, + [2268] = 409, + [2269] = 410, + [2270] = 411, + [2271] = 412, + [2272] = 413, + [2273] = 384, + [2274] = 431, + [2275] = 2187, + [2276] = 2192, + [2277] = 380, + [2278] = 2197, + [2279] = 2180, + [2280] = 2183, + [2281] = 2194, + [2282] = 2190, + [2283] = 2181, + [2284] = 934, + [2285] = 437, + [2286] = 2286, + [2287] = 380, + [2288] = 924, + [2289] = 975, + [2290] = 990, + [2291] = 385, + [2292] = 386, + [2293] = 1033, + [2294] = 873, + [2295] = 384, + [2296] = 425, + [2297] = 1052, + [2298] = 380, + [2299] = 779, + [2300] = 878, + [2301] = 426, + [2302] = 991, + [2303] = 992, + [2304] = 380, + [2305] = 998, + [2306] = 999, + [2307] = 1002, + [2308] = 1003, + [2309] = 1004, + [2310] = 1018, + [2311] = 1019, + [2312] = 1020, + [2313] = 1021, + [2314] = 1022, + [2315] = 1023, + [2316] = 779, + [2317] = 1027, + [2318] = 437, + [2319] = 424, + [2320] = 1050, + [2321] = 425, + [2322] = 426, + [2323] = 399, + [2324] = 401, + [2325] = 380, + [2326] = 431, + [2327] = 431, + [2328] = 465, + [2329] = 404, + [2330] = 405, + [2331] = 406, + [2332] = 407, + [2333] = 408, + [2334] = 409, + [2335] = 410, + [2336] = 411, + [2337] = 412, + [2338] = 413, + [2339] = 437, + [2340] = 1053, + [2341] = 779, + [2342] = 779, + [2343] = 398, + [2344] = 400, + [2345] = 427, + [2346] = 427, + [2347] = 451, + [2348] = 453, + [2349] = 451, + [2350] = 421, + [2351] = 451, + [2352] = 453, + [2353] = 398, + [2354] = 398, + [2355] = 432, + [2356] = 433, + [2357] = 430, + [2358] = 424, + [2359] = 402, + [2360] = 836, + [2361] = 428, + [2362] = 1076, + [2363] = 2197, + [2364] = 2180, + [2365] = 430, + [2366] = 2183, + [2367] = 414, + [2368] = 414, + [2369] = 452, + [2370] = 425, + [2371] = 426, + [2372] = 2187, + [2373] = 2194, + [2374] = 427, + [2375] = 453, + [2376] = 2192, + [2377] = 424, + [2378] = 425, + [2379] = 426, + [2380] = 402, + [2381] = 2190, + [2382] = 2181, + [2383] = 431, + [2384] = 2384, + [2385] = 427, + [2386] = 400, + [2387] = 429, + [2388] = 430, + [2389] = 417, + [2390] = 779, + [2391] = 451, + [2392] = 453, + [2393] = 423, + [2394] = 399, + [2395] = 398, + [2396] = 2396, + [2397] = 429, + [2398] = 400, + [2399] = 401, + [2400] = 437, + [2401] = 428, + [2402] = 839, + [2403] = 417, + [2404] = 452, + [2405] = 2405, + [2406] = 428, + [2407] = 430, + [2408] = 428, + [2409] = 385, + [2410] = 400, + [2411] = 402, + [2412] = 400, + [2413] = 429, + [2414] = 417, + [2415] = 422, + [2416] = 398, + [2417] = 402, + [2418] = 423, + [2419] = 414, + [2420] = 424, + [2421] = 425, + [2422] = 422, + [2423] = 399, + [2424] = 402, + [2425] = 401, + [2426] = 428, + [2427] = 1079, + [2428] = 428, + [2429] = 431, + [2430] = 414, + [2431] = 432, + [2432] = 430, + [2433] = 423, + [2434] = 427, + [2435] = 1259, + [2436] = 427, + [2437] = 451, + [2438] = 429, + [2439] = 838, + [2440] = 2440, + [2441] = 433, + [2442] = 839, + [2443] = 839, + [2444] = 838, + [2445] = 422, + [2446] = 402, + [2447] = 453, + [2448] = 432, + [2449] = 433, + [2450] = 2450, + [2451] = 417, + [2452] = 398, + [2453] = 452, + [2454] = 432, + [2455] = 2455, + [2456] = 839, + [2457] = 433, + [2458] = 421, + [2459] = 430, + [2460] = 421, + [2461] = 1248, + [2462] = 423, + [2463] = 414, + [2464] = 2464, + [2465] = 432, + [2466] = 433, + [2467] = 451, + [2468] = 2468, + [2469] = 400, + [2470] = 2470, + [2471] = 452, + [2472] = 421, + [2473] = 1283, + [2474] = 398, + [2475] = 432, + [2476] = 433, + [2477] = 465, + [2478] = 404, + [2479] = 428, + [2480] = 405, + [2481] = 406, + [2482] = 407, + [2483] = 465, + [2484] = 408, + [2485] = 453, + [2486] = 404, + [2487] = 836, + [2488] = 405, + [2489] = 409, + [2490] = 410, + [2491] = 411, + [2492] = 412, + [2493] = 406, + [2494] = 407, + [2495] = 408, + [2496] = 409, + [2497] = 410, + [2498] = 413, + [2499] = 437, + [2500] = 384, + [2501] = 411, + [2502] = 432, + [2503] = 412, + [2504] = 429, + [2505] = 386, + [2506] = 421, + [2507] = 451, + [2508] = 402, + [2509] = 453, + [2510] = 414, + [2511] = 422, + [2512] = 452, + [2513] = 421, + [2514] = 429, + [2515] = 430, + [2516] = 423, + [2517] = 433, + [2518] = 417, + [2519] = 1076, + [2520] = 413, + [2521] = 1214, + [2522] = 452, + [2523] = 431, + [2524] = 427, + [2525] = 838, + [2526] = 422, + [2527] = 452, + [2528] = 421, + [2529] = 423, + [2530] = 1079, + [2531] = 423, + [2532] = 417, + [2533] = 400, + [2534] = 836, + [2535] = 417, + [2536] = 422, + [2537] = 838, + [2538] = 422, + [2539] = 414, + [2540] = 380, + [2541] = 426, + [2542] = 1255, + [2543] = 839, + [2544] = 429, + [2545] = 836, + [2546] = 2546, + [2547] = 2547, + [2548] = 838, + [2549] = 836, + [2550] = 408, + [2551] = 1003, + [2552] = 1004, + [2553] = 386, + [2554] = 1033, + [2555] = 380, + [2556] = 384, + [2557] = 399, + [2558] = 427, + [2559] = 1050, + [2560] = 924, + [2561] = 924, + [2562] = 437, + [2563] = 432, + [2564] = 1004, + [2565] = 1018, + [2566] = 975, + [2567] = 975, + [2568] = 2568, + [2569] = 1019, + [2570] = 990, + [2571] = 1053, + [2572] = 990, + [2573] = 1018, + [2574] = 433, + [2575] = 873, + [2576] = 385, + [2577] = 1052, + [2578] = 836, + [2579] = 873, + [2580] = 423, + [2581] = 999, + [2582] = 1020, + [2583] = 384, + [2584] = 1027, + [2585] = 1052, + [2586] = 991, + [2587] = 437, + [2588] = 1021, + [2589] = 998, + [2590] = 1002, + [2591] = 990, + [2592] = 2592, + [2593] = 1003, + [2594] = 401, + [2595] = 1027, + [2596] = 437, + [2597] = 385, + [2598] = 1022, + [2599] = 999, + [2600] = 1003, + [2601] = 1019, + [2602] = 465, + [2603] = 1053, + [2604] = 404, + [2605] = 405, + [2606] = 437, + [2607] = 414, + [2608] = 2608, + [2609] = 999, + [2610] = 996, + [2611] = 1021, + [2612] = 437, + [2613] = 399, + [2614] = 1532, + [2615] = 386, + [2616] = 1002, + [2617] = 1052, + [2618] = 996, + [2619] = 1023, + [2620] = 998, + [2621] = 385, + [2622] = 996, + [2623] = 1050, + [2624] = 406, + [2625] = 384, + [2626] = 2626, + [2627] = 465, + [2628] = 404, + [2629] = 405, + [2630] = 406, + [2631] = 878, + [2632] = 407, + [2633] = 408, + [2634] = 409, + [2635] = 1033, + [2636] = 410, + [2637] = 1027, + [2638] = 411, + [2639] = 1020, + [2640] = 412, + [2641] = 413, + [2642] = 1961, + [2643] = 407, + [2644] = 990, + [2645] = 386, + [2646] = 2646, + [2647] = 992, + [2648] = 409, + [2649] = 934, + [2650] = 999, + [2651] = 410, + [2652] = 411, + [2653] = 465, + [2654] = 437, + [2655] = 404, + [2656] = 405, + [2657] = 406, + [2658] = 407, + [2659] = 408, + [2660] = 1052, + [2661] = 409, + [2662] = 1033, + [2663] = 1033, + [2664] = 380, + [2665] = 410, + [2666] = 1023, + [2667] = 924, + [2668] = 411, + [2669] = 878, + [2670] = 384, + [2671] = 1050, + [2672] = 422, + [2673] = 380, + [2674] = 412, + [2675] = 878, + [2676] = 413, + [2677] = 385, + [2678] = 384, + [2679] = 412, + [2680] = 1997, + [2681] = 437, + [2682] = 2682, + [2683] = 385, + [2684] = 2684, + [2685] = 380, + [2686] = 2686, + [2687] = 838, + [2688] = 413, + [2689] = 1003, + [2690] = 975, + [2691] = 1952, + [2692] = 1053, + [2693] = 996, + [2694] = 990, + [2695] = 452, + [2696] = 991, + [2697] = 996, + [2698] = 1964, + [2699] = 991, + [2700] = 1965, + [2701] = 1053, + [2702] = 992, + [2703] = 386, + [2704] = 385, + [2705] = 437, + [2706] = 924, + [2707] = 1004, + [2708] = 386, + [2709] = 465, + [2710] = 404, + [2711] = 384, + [2712] = 975, + [2713] = 380, + [2714] = 992, + [2715] = 873, + [2716] = 437, + [2717] = 385, + [2718] = 405, + [2719] = 385, + [2720] = 1002, + [2721] = 384, + [2722] = 380, + [2723] = 386, + [2724] = 406, + [2725] = 1050, + [2726] = 465, + [2727] = 384, + [2728] = 404, + [2729] = 2729, + [2730] = 407, + [2731] = 408, + [2732] = 402, + [2733] = 1487, + [2734] = 386, + [2735] = 399, + [2736] = 437, + [2737] = 409, + [2738] = 998, + [2739] = 999, + [2740] = 1533, + [2741] = 1002, + [2742] = 1003, + [2743] = 1574, + [2744] = 1589, + [2745] = 437, + [2746] = 410, + [2747] = 1595, + [2748] = 1630, + [2749] = 1631, + [2750] = 1632, + [2751] = 1004, + [2752] = 1018, + [2753] = 1019, + [2754] = 873, + [2755] = 1021, + [2756] = 411, + [2757] = 412, + [2758] = 405, + [2759] = 413, + [2760] = 1022, + [2761] = 401, + [2762] = 406, + [2763] = 1569, + [2764] = 1053, + [2765] = 401, + [2766] = 1023, + [2767] = 839, + [2768] = 2768, + [2769] = 934, + [2770] = 1021, + [2771] = 1052, + [2772] = 873, + [2773] = 1027, + [2774] = 878, + [2775] = 1002, + [2776] = 380, + [2777] = 998, + [2778] = 399, + [2779] = 401, + [2780] = 465, + [2781] = 404, + [2782] = 405, + [2783] = 406, + [2784] = 407, + [2785] = 408, + [2786] = 409, + [2787] = 410, + [2788] = 411, + [2789] = 412, + [2790] = 413, + [2791] = 399, + [2792] = 401, + [2793] = 465, + [2794] = 404, + [2795] = 405, + [2796] = 406, + [2797] = 407, + [2798] = 408, + [2799] = 409, + [2800] = 410, + [2801] = 411, + [2802] = 412, + [2803] = 413, + [2804] = 437, + [2805] = 1018, + [2806] = 399, + [2807] = 401, + [2808] = 437, + [2809] = 465, + [2810] = 404, + [2811] = 405, + [2812] = 406, + [2813] = 407, + [2814] = 408, + [2815] = 409, + [2816] = 410, + [2817] = 411, + [2818] = 412, + [2819] = 413, + [2820] = 1019, + [2821] = 1022, + [2822] = 407, + [2823] = 934, + [2824] = 421, + [2825] = 399, + [2826] = 408, + [2827] = 1020, + [2828] = 409, + [2829] = 453, + [2830] = 1021, + [2831] = 934, + [2832] = 1004, + [2833] = 1022, + [2834] = 385, + [2835] = 437, + [2836] = 386, + [2837] = 386, + [2838] = 410, + [2839] = 386, + [2840] = 2840, + [2841] = 384, + [2842] = 437, + [2843] = 411, + [2844] = 412, + [2845] = 413, + [2846] = 991, + [2847] = 437, + [2848] = 385, + [2849] = 2849, + [2850] = 399, + [2851] = 401, + [2852] = 465, + [2853] = 404, + [2854] = 405, + [2855] = 406, + [2856] = 407, + [2857] = 408, + [2858] = 409, + [2859] = 410, + [2860] = 411, + [2861] = 412, + [2862] = 413, + [2863] = 399, + [2864] = 401, + [2865] = 465, + [2866] = 404, + [2867] = 405, + [2868] = 406, + [2869] = 407, + [2870] = 408, + [2871] = 409, + [2872] = 410, + [2873] = 411, + [2874] = 412, + [2875] = 413, + [2876] = 437, + [2877] = 437, + [2878] = 2878, + [2879] = 1023, + [2880] = 399, + [2881] = 1018, + [2882] = 992, + [2883] = 380, + [2884] = 1019, + [2885] = 2885, + [2886] = 401, + [2887] = 998, + [2888] = 417, + [2889] = 437, + [2890] = 1023, + [2891] = 384, + [2892] = 1033, + [2893] = 934, + [2894] = 386, + [2895] = 385, + [2896] = 992, + [2897] = 878, + [2898] = 398, + [2899] = 2899, + [2900] = 384, + [2901] = 2901, + [2902] = 2902, + [2903] = 1027, + [2904] = 1050, + [2905] = 437, + [2906] = 1020, + [2907] = 380, + [2908] = 428, + [2909] = 924, + [2910] = 380, + [2911] = 975, + [2912] = 401, + [2913] = 400, + [2914] = 429, + [2915] = 430, + [2916] = 2286, + [2917] = 451, + [2918] = 1022, + [2919] = 991, + [2920] = 1020, + [2921] = 426, + [2922] = 1259, + [2923] = 428, + [2924] = 430, + [2925] = 432, + [2926] = 433, + [2927] = 1002, + [2928] = 1076, + [2929] = 1079, + [2930] = 417, + [2931] = 424, + [2932] = 425, + [2933] = 385, + [2934] = 451, + [2935] = 453, + [2936] = 1003, + [2937] = 1004, + [2938] = 386, + [2939] = 398, + [2940] = 429, + [2941] = 431, + [2942] = 1259, + [2943] = 384, + [2944] = 1018, + [2945] = 1019, + [2946] = 452, + [2947] = 428, + [2948] = 400, + [2949] = 430, + [2950] = 427, + [2951] = 422, + [2952] = 1020, + [2953] = 452, + [2954] = 402, + [2955] = 1021, + [2956] = 423, + [2957] = 414, + [2958] = 427, + [2959] = 452, + [2960] = 417, + [2961] = 2961, + [2962] = 399, + [2963] = 400, + [2964] = 429, + [2965] = 401, + [2966] = 432, + [2967] = 433, + [2968] = 402, + [2969] = 422, + [2970] = 432, + [2971] = 433, + [2972] = 437, + [2973] = 414, + [2974] = 1022, + [2975] = 1076, + [2976] = 1079, + [2977] = 1050, + [2978] = 423, + [2979] = 399, + [2980] = 428, + [2981] = 430, + [2982] = 401, + [2983] = 1076, + [2984] = 1079, + [2985] = 1023, + [2986] = 924, + [2987] = 975, + [2988] = 990, + [2989] = 428, + [2990] = 400, + [2991] = 1214, + [2992] = 430, + [2993] = 1248, + [2994] = 873, + [2995] = 1248, + [2996] = 1052, + [2997] = 402, + [2998] = 1259, + [2999] = 421, + [3000] = 429, + [3001] = 414, + [3002] = 424, + [3003] = 425, + [3004] = 465, + [3005] = 404, + [3006] = 405, + [3007] = 406, + [3008] = 407, + [3009] = 408, + [3010] = 409, + [3011] = 410, + [3012] = 411, + [3013] = 412, + [3014] = 413, + [3015] = 426, + [3016] = 424, + [3017] = 425, + [3018] = 426, + [3019] = 452, + [3020] = 452, + [3021] = 421, + [3022] = 1027, + [3023] = 1053, + [3024] = 428, + [3025] = 400, + [3026] = 430, + [3027] = 399, + [3028] = 431, + [3029] = 429, + [3030] = 1283, + [3031] = 402, + [3032] = 465, + [3033] = 404, + [3034] = 405, + [3035] = 406, + [3036] = 407, + [3037] = 408, + [3038] = 409, + [3039] = 410, + [3040] = 411, + [3041] = 412, + [3042] = 413, + [3043] = 437, + [3044] = 401, + [3045] = 414, + [3046] = 431, + [3047] = 437, + [3048] = 452, + [3049] = 3049, + [3050] = 1033, + [3051] = 399, + [3052] = 400, + [3053] = 429, + [3054] = 401, + [3055] = 402, + [3056] = 1214, + [3057] = 427, + [3058] = 1248, + [3059] = 414, + [3060] = 3060, + [3061] = 1076, + [3062] = 451, + [3063] = 1079, + [3064] = 453, + [3065] = 400, + [3066] = 398, + [3067] = 399, + [3068] = 385, + [3069] = 465, + [3070] = 401, + [3071] = 432, + [3072] = 433, + [3073] = 1283, + [3074] = 402, + [3075] = 404, + [3076] = 386, + [3077] = 428, + [3078] = 430, + [3079] = 414, + [3080] = 384, + [3081] = 451, + [3082] = 1076, + [3083] = 421, + [3084] = 453, + [3085] = 1079, + [3086] = 405, + [3087] = 421, + [3088] = 398, + [3089] = 406, + [3090] = 1283, + [3091] = 407, + [3092] = 399, + [3093] = 428, + [3094] = 430, + [3095] = 401, + [3096] = 465, + [3097] = 404, + [3098] = 405, + [3099] = 406, + [3100] = 407, + [3101] = 408, + [3102] = 409, + [3103] = 410, + [3104] = 411, + [3105] = 412, + [3106] = 413, + [3107] = 408, + [3108] = 409, + [3109] = 429, + [3110] = 410, + [3111] = 465, + [3112] = 421, + [3113] = 404, + [3114] = 405, + [3115] = 406, + [3116] = 407, + [3117] = 408, + [3118] = 409, + [3119] = 410, + [3120] = 411, + [3121] = 465, + [3122] = 404, + [3123] = 405, + [3124] = 406, + [3125] = 407, + [3126] = 408, + [3127] = 409, + [3128] = 410, + [3129] = 411, + [3130] = 412, + [3131] = 413, + [3132] = 412, + [3133] = 413, + [3134] = 411, + [3135] = 412, + [3136] = 413, + [3137] = 424, + [3138] = 425, + [3139] = 426, + [3140] = 451, + [3141] = 453, + [3142] = 3142, + [3143] = 429, + [3144] = 437, + [3145] = 431, + [3146] = 451, + [3147] = 453, + [3148] = 3148, + [3149] = 398, + [3150] = 3150, + [3151] = 427, + [3152] = 421, + [3153] = 451, + [3154] = 453, + [3155] = 398, + [3156] = 432, + [3157] = 433, + [3158] = 398, + [3159] = 427, + [3160] = 465, + [3161] = 404, + [3162] = 405, + [3163] = 432, + [3164] = 433, + [3165] = 406, + [3166] = 407, + [3167] = 408, + [3168] = 409, + [3169] = 410, + [3170] = 411, + [3171] = 412, + [3172] = 413, + [3173] = 417, + [3174] = 422, + [3175] = 423, + [3176] = 1259, + [3177] = 417, + [3178] = 422, + [3179] = 2468, + [3180] = 2470, + [3181] = 423, + [3182] = 427, + [3183] = 2440, + [3184] = 3184, + [3185] = 432, + [3186] = 433, + [3187] = 452, + [3188] = 991, + [3189] = 427, + [3190] = 428, + [3191] = 400, + [3192] = 430, + [3193] = 2464, + [3194] = 432, + [3195] = 433, + [3196] = 992, + [3197] = 402, + [3198] = 1255, + [3199] = 1248, + [3200] = 451, + [3201] = 3201, + [3202] = 1076, + [3203] = 417, + [3204] = 453, + [3205] = 2464, + [3206] = 422, + [3207] = 417, + [3208] = 1079, + [3209] = 423, + [3210] = 424, + [3211] = 425, + [3212] = 426, + [3213] = 3213, + [3214] = 437, + [3215] = 414, + [3216] = 431, + [3217] = 424, + [3218] = 425, + [3219] = 426, + [3220] = 380, + [3221] = 417, + [3222] = 431, + [3223] = 422, + [3224] = 423, + [3225] = 399, + [3226] = 429, + [3227] = 1076, + [3228] = 401, + [3229] = 1079, + [3230] = 1214, + [3231] = 1283, + [3232] = 452, + [3233] = 424, + [3234] = 425, + [3235] = 426, + [3236] = 431, + [3237] = 437, + [3238] = 398, + [3239] = 424, + [3240] = 425, + [3241] = 426, + [3242] = 431, + [3243] = 3243, + [3244] = 452, + [3245] = 437, + [3246] = 422, + [3247] = 2546, + [3248] = 996, + [3249] = 437, + [3250] = 437, + [3251] = 400, + [3252] = 423, + [3253] = 402, + [3254] = 465, + [3255] = 404, + [3256] = 405, + [3257] = 406, + [3258] = 407, + [3259] = 408, + [3260] = 409, + [3261] = 410, + [3262] = 411, + [3263] = 412, + [3264] = 413, + [3265] = 437, + [3266] = 400, + [3267] = 414, + [3268] = 3268, + [3269] = 402, + [3270] = 421, + [3271] = 399, + [3272] = 428, + [3273] = 430, + [3274] = 414, + [3275] = 427, + [3276] = 401, + [3277] = 1259, + [3278] = 465, + [3279] = 404, + [3280] = 417, + [3281] = 405, + [3282] = 406, + [3283] = 399, + [3284] = 407, + [3285] = 408, + [3286] = 409, + [3287] = 410, + [3288] = 401, + [3289] = 411, + [3290] = 432, + [3291] = 433, + [3292] = 412, + [3293] = 413, + [3294] = 3294, + [3295] = 1255, + [3296] = 451, + [3297] = 437, + [3298] = 453, + [3299] = 398, + [3300] = 429, + [3301] = 878, + [3302] = 422, + [3303] = 437, + [3304] = 452, + [3305] = 421, + [3306] = 423, + [3307] = 424, + [3308] = 425, + [3309] = 426, + [3310] = 427, + [3311] = 1255, + [3312] = 421, + [3313] = 380, + [3314] = 400, + [3315] = 399, + [3316] = 431, + [3317] = 432, + [3318] = 433, + [3319] = 3319, + [3320] = 402, + [3321] = 465, + [3322] = 404, + [3323] = 405, + [3324] = 406, + [3325] = 407, + [3326] = 399, + [3327] = 401, + [3328] = 408, + [3329] = 409, + [3330] = 410, + [3331] = 411, + [3332] = 412, + [3333] = 413, + [3334] = 465, + [3335] = 404, + [3336] = 405, + [3337] = 406, + [3338] = 407, + [3339] = 408, + [3340] = 409, + [3341] = 410, + [3342] = 411, + [3343] = 412, + [3344] = 413, + [3345] = 427, + [3346] = 414, + [3347] = 1255, + [3348] = 1076, + [3349] = 1079, + [3350] = 451, + [3351] = 453, + [3352] = 417, + [3353] = 398, + [3354] = 399, + [3355] = 2547, + [3356] = 1214, + [3357] = 401, + [3358] = 422, + [3359] = 437, + [3360] = 1248, + [3361] = 3361, + [3362] = 3362, + [3363] = 451, + [3364] = 453, + [3365] = 2455, + [3366] = 3366, + [3367] = 423, + [3368] = 1076, + [3369] = 1079, + [3370] = 3370, + [3371] = 934, + [3372] = 3372, + [3373] = 424, + [3374] = 425, + [3375] = 426, + [3376] = 432, + [3377] = 433, + [3378] = 398, + [3379] = 401, + [3380] = 428, + [3381] = 430, + [3382] = 2384, + [3383] = 431, + [3384] = 2396, + [3385] = 2405, + [3386] = 2450, + [3387] = 1283, + [3388] = 998, + [3389] = 999, + [3390] = 1255, + [3391] = 421, + [3392] = 429, + [3393] = 417, + [3394] = 3394, + [3395] = 1076, + [3396] = 1079, + [3397] = 422, + [3398] = 465, + [3399] = 404, + [3400] = 405, + [3401] = 406, + [3402] = 407, + [3403] = 408, + [3404] = 409, + [3405] = 410, + [3406] = 411, + [3407] = 412, + [3408] = 413, + [3409] = 423, + [3410] = 427, + [3411] = 3411, + [3412] = 1214, + [3413] = 2440, + [3414] = 437, + [3415] = 3415, + [3416] = 1079, + [3417] = 3417, + [3418] = 2608, + [3419] = 405, + [3420] = 3420, + [3421] = 406, + [3422] = 1964, + [3423] = 407, + [3424] = 1487, + [3425] = 424, + [3426] = 425, + [3427] = 3427, + [3428] = 408, + [3429] = 426, + [3430] = 409, + [3431] = 427, + [3432] = 410, + [3433] = 411, + [3434] = 1965, + [3435] = 412, + [3436] = 431, + [3437] = 1997, + [3438] = 3438, + [3439] = 413, + [3440] = 3440, + [3441] = 2885, + [3442] = 3442, + [3443] = 452, + [3444] = 1961, + [3445] = 2899, + [3446] = 1952, + [3447] = 431, + [3448] = 1952, + [3449] = 1533, + [3450] = 432, + [3451] = 2901, + [3452] = 433, + [3453] = 3453, + [3454] = 400, + [3455] = 3455, + [3456] = 1532, + [3457] = 1997, + [3458] = 3458, + [3459] = 402, + [3460] = 3460, + [3461] = 1964, + [3462] = 1965, + [3463] = 1532, + [3464] = 422, + [3465] = 3465, + [3466] = 1574, + [3467] = 1589, + [3468] = 1997, + [3469] = 2902, + [3470] = 2686, + [3471] = 3471, + [3472] = 3472, + [3473] = 1964, + [3474] = 3474, + [3475] = 3475, + [3476] = 1965, + [3477] = 3477, + [3478] = 414, + [3479] = 3479, + [3480] = 2768, + [3481] = 1595, + [3482] = 1630, + [3483] = 3483, + [3484] = 427, + [3485] = 3485, + [3486] = 3243, + [3487] = 1595, + [3488] = 2849, + [3489] = 3489, + [3490] = 3490, + [3491] = 3491, + [3492] = 2840, + [3493] = 399, + [3494] = 1487, + [3495] = 3495, + [3496] = 437, + [3497] = 401, + [3498] = 3148, + [3499] = 1533, + [3500] = 3500, + [3501] = 1630, + [3502] = 3502, + [3503] = 1574, + [3504] = 1589, + [3505] = 3505, + [3506] = 1569, + [3507] = 1595, + [3508] = 1630, + [3509] = 1631, + [3510] = 1632, + [3511] = 2682, + [3512] = 1255, + [3513] = 1631, + [3514] = 421, + [3515] = 1631, + [3516] = 1632, + [3517] = 1632, + [3518] = 3268, + [3519] = 3519, + [3520] = 3520, + [3521] = 3521, + [3522] = 2568, + [3523] = 1952, + [3524] = 1569, + [3525] = 2592, + [3526] = 3526, + [3527] = 3527, + [3528] = 3528, + [3529] = 3529, + [3530] = 3530, + [3531] = 3531, + [3532] = 3532, + [3533] = 3533, + [3534] = 2878, + [3535] = 3535, + [3536] = 417, + [3537] = 424, + [3538] = 425, + [3539] = 426, + [3540] = 3540, + [3541] = 423, + [3542] = 398, + [3543] = 1964, + [3544] = 3544, + [3545] = 1532, + [3546] = 3546, + [3547] = 3547, + [3548] = 1965, + [3549] = 3549, + [3550] = 3550, + [3551] = 431, + [3552] = 3552, + [3553] = 437, + [3554] = 3554, + [3555] = 1532, + [3556] = 3556, + [3557] = 3049, + [3558] = 421, + [3559] = 1569, + [3560] = 3560, + [3561] = 3561, + [3562] = 3184, + [3563] = 3563, + [3564] = 3564, + [3565] = 3565, + [3566] = 3566, + [3567] = 3150, + [3568] = 3568, + [3569] = 3569, + [3570] = 3570, + [3571] = 465, + [3572] = 404, + [3573] = 405, + [3574] = 406, + [3575] = 407, + [3576] = 1487, + [3577] = 408, + [3578] = 409, + [3579] = 410, + [3580] = 411, + [3581] = 412, + [3582] = 413, + [3583] = 3583, + [3584] = 3584, + [3585] = 3585, + [3586] = 3586, + [3587] = 451, + [3588] = 1574, + [3589] = 1533, + [3590] = 1487, + [3591] = 428, + [3592] = 1961, + [3593] = 3593, + [3594] = 432, + [3595] = 452, + [3596] = 398, + [3597] = 1248, + [3598] = 428, + [3599] = 429, + [3600] = 430, + [3601] = 430, + [3602] = 1961, + [3603] = 433, + [3604] = 1533, + [3605] = 401, + [3606] = 3606, + [3607] = 2646, + [3608] = 1574, + [3609] = 1589, + [3610] = 3610, + [3611] = 1589, + [3612] = 3612, + [3613] = 1533, + [3614] = 1595, + [3615] = 1630, + [3616] = 385, + [3617] = 3617, + [3618] = 424, + [3619] = 1961, + [3620] = 3620, + [3621] = 1631, + [3622] = 1632, + [3623] = 3623, + [3624] = 417, + [3625] = 3625, + [3626] = 3626, + [3627] = 425, + [3628] = 2626, + [3629] = 426, + [3630] = 3630, + [3631] = 386, + [3632] = 3632, + [3633] = 3633, + [3634] = 1574, + [3635] = 1589, + [3636] = 422, + [3637] = 3637, + [3638] = 1569, + [3639] = 3639, + [3640] = 3640, + [3641] = 429, + [3642] = 3142, + [3643] = 3643, + [3644] = 3644, + [3645] = 1997, + [3646] = 1283, + [3647] = 1952, + [3648] = 3648, + [3649] = 3649, + [3650] = 3650, + [3651] = 3651, + [3652] = 1214, + [3653] = 1569, + [3654] = 1952, + [3655] = 3655, + [3656] = 417, + [3657] = 3657, + [3658] = 3658, + [3659] = 3659, + [3660] = 3660, + [3661] = 3661, + [3662] = 3662, + [3663] = 3663, + [3664] = 1964, + [3665] = 451, + [3666] = 423, + [3667] = 3667, + [3668] = 422, + [3669] = 453, + [3670] = 384, + [3671] = 1259, + [3672] = 1965, + [3673] = 3673, + [3674] = 400, + [3675] = 3675, + [3676] = 1595, + [3677] = 3677, + [3678] = 3678, + [3679] = 402, + [3680] = 423, + [3681] = 3681, + [3682] = 3682, + [3683] = 3201, + [3684] = 1630, + [3685] = 3685, + [3686] = 3686, + [3687] = 1532, + [3688] = 1631, + [3689] = 2684, + [3690] = 3690, + [3691] = 1632, + [3692] = 414, + [3693] = 3693, + [3694] = 3694, + [3695] = 1076, + [3696] = 3696, + [3697] = 1079, + [3698] = 465, + [3699] = 3699, + [3700] = 404, + [3701] = 1961, + [3702] = 3702, + [3703] = 3703, + [3704] = 3704, + [3705] = 3705, + [3706] = 1487, + [3707] = 3707, + [3708] = 2729, + [3709] = 3709, + [3710] = 399, + [3711] = 1997, + [3712] = 1076, + [3713] = 453, + [3714] = 3714, + [3715] = 3715, + [3716] = 3142, + [3717] = 1574, + [3718] = 3148, + [3719] = 3150, + [3720] = 424, + [3721] = 3721, + [3722] = 425, + [3723] = 1965, + [3724] = 3294, + [3725] = 426, + [3726] = 3610, + [3727] = 1595, + [3728] = 3728, + [3729] = 3729, + [3730] = 3243, + [3731] = 3731, + [3732] = 3060, + [3733] = 3733, + [3734] = 3734, + [3735] = 3735, + [3736] = 1952, + [3737] = 3737, + [3738] = 3738, + [3739] = 3739, + [3740] = 3268, + [3741] = 3394, + [3742] = 2464, + [3743] = 1964, + [3744] = 431, + [3745] = 3411, + [3746] = 423, + [3747] = 417, + [3748] = 3748, + [3749] = 3749, + [3750] = 3049, + [3751] = 3751, + [3752] = 3752, + [3753] = 3372, + [3754] = 3754, + [3755] = 3362, + [3756] = 3756, + [3757] = 3757, + [3758] = 1533, + [3759] = 3759, + [3760] = 3760, + [3761] = 1532, + [3762] = 1631, + [3763] = 3763, + [3764] = 3764, + [3765] = 3765, + [3766] = 3201, + [3767] = 3767, + [3768] = 3648, + [3769] = 3769, + [3770] = 3770, + [3771] = 1997, + [3772] = 3772, + [3773] = 3773, + [3774] = 3361, + [3775] = 3775, + [3776] = 3319, + [3777] = 3777, + [3778] = 3778, + [3779] = 3366, + [3780] = 3780, + [3781] = 432, + [3782] = 433, + [3783] = 3783, + [3784] = 1630, + [3785] = 3370, + [3786] = 3786, + [3787] = 3787, + [3788] = 3788, + [3789] = 3789, + [3790] = 3790, + [3791] = 1569, + [3792] = 3792, + [3793] = 3793, + [3794] = 3794, + [3795] = 3626, + [3796] = 3703, + [3797] = 3797, + [3798] = 3798, + [3799] = 3799, + [3800] = 422, + [3801] = 3801, + [3802] = 3802, + [3803] = 2961, + [3804] = 3804, + [3805] = 3805, + [3806] = 3806, + [3807] = 3807, + [3808] = 3808, + [3809] = 3809, + [3810] = 3213, + [3811] = 3811, + [3812] = 3184, + [3813] = 3813, + [3814] = 3814, + [3815] = 1961, + [3816] = 2187, + [3817] = 3817, + [3818] = 2192, + [3819] = 3819, + [3820] = 2197, + [3821] = 2180, + [3822] = 3822, + [3823] = 3823, + [3824] = 3824, + [3825] = 3825, + [3826] = 3826, + [3827] = 3827, + [3828] = 3828, + [3829] = 3769, + [3830] = 427, + [3831] = 3831, + [3832] = 3832, + [3833] = 2183, + [3834] = 3834, + [3835] = 2194, + [3836] = 2190, + [3837] = 2181, + [3838] = 3814, + [3839] = 3839, + [3840] = 3840, + [3841] = 3841, + [3842] = 3842, + [3843] = 3843, + [3844] = 1632, + [3845] = 3845, + [3846] = 1487, + [3847] = 3847, + [3848] = 3824, + [3849] = 2440, + [3850] = 1589, + [3851] = 3851, + [3852] = 3852, + [3853] = 3853, + [3854] = 3854, + [3855] = 3855, + [3856] = 3856, + [3857] = 3857, + [3858] = 3471, + [3859] = 3528, + [3860] = 3640, + [3861] = 3660, + [3862] = 3661, + [3863] = 3863, + [3864] = 3864, + [3865] = 3865, + [3866] = 3866, + [3867] = 3867, + [3868] = 3868, + [3869] = 3869, + [3870] = 3870, + [3871] = 3871, + [3872] = 3872, + [3873] = 3709, + [3874] = 3874, + [3875] = 3427, + [3876] = 3876, + [3877] = 3877, + [3878] = 3440, + [3879] = 3879, + [3880] = 3533, + [3881] = 3610, + [3882] = 3540, + [3883] = 3648, + [3884] = 3554, + [3885] = 3626, + [3886] = 3620, + [3887] = 3625, + [3888] = 3703, + [3889] = 3639, + [3890] = 3651, + [3891] = 3201, + [3892] = 3243, + [3893] = 3268, + [3894] = 3778, + [3895] = 3895, + [3896] = 3896, + [3897] = 3825, + [3898] = 3898, + [3899] = 3899, + [3900] = 3900, + [3901] = 3901, + [3902] = 3902, + [3903] = 3903, + [3904] = 3752, + [3905] = 3905, + [3906] = 3906, + [3907] = 3907, + [3908] = 3908, + [3909] = 3909, + [3910] = 3910, + [3911] = 3911, + [3912] = 3912, + [3913] = 3913, + [3914] = 3914, + [3915] = 3915, + [3916] = 3916, + [3917] = 3917, + [3918] = 3918, + [3919] = 3919, + [3920] = 3920, + [3921] = 3788, + [3922] = 3813, + [3923] = 3822, + [3924] = 3826, + [3925] = 3827, + [3926] = 3926, + [3927] = 3927, + [3928] = 3928, + [3929] = 3929, + [3930] = 3930, + [3931] = 3931, + [3932] = 3932, + [3933] = 3933, + [3934] = 3934, + [3935] = 3935, + [3936] = 3936, + [3937] = 3937, + [3938] = 3938, + [3939] = 3939, + [3940] = 3940, + [3941] = 3941, + [3942] = 3942, + [3943] = 3943, + [3944] = 3944, + [3945] = 3945, + [3946] = 3946, + [3947] = 3947, + [3948] = 3948, + [3949] = 3949, + [3950] = 3950, + [3951] = 3951, + [3952] = 3952, + [3953] = 3953, + [3954] = 3839, + [3955] = 3729, + [3956] = 3767, + [3957] = 3957, + [3958] = 3958, + [3959] = 3959, + [3960] = 3960, + [3961] = 3961, + [3962] = 3962, + [3963] = 3963, + [3964] = 3964, + [3965] = 3965, + [3966] = 3966, + [3967] = 3967, + [3968] = 3968, + [3969] = 3969, + [3970] = 3970, + [3971] = 3971, + [3972] = 3972, + [3973] = 3973, + [3974] = 3974, + [3975] = 3975, + [3976] = 3976, + [3977] = 3977, + [3978] = 3978, + [3979] = 3979, + [3980] = 3980, + [3981] = 3981, + [3982] = 3662, + [3983] = 3667, + [3984] = 3984, + [3985] = 3759, + [3986] = 3765, + [3987] = 3987, + [3988] = 3988, + [3989] = 3490, + [3990] = 3491, + [3991] = 3991, + [3992] = 3992, + [3993] = 3563, + [3994] = 3994, + [3995] = 3995, + [3996] = 3996, + [3997] = 3997, + [3998] = 3998, + [3999] = 3999, + [4000] = 4000, + [4001] = 3685, + [4002] = 4002, + [4003] = 4003, + [4004] = 4004, + [4005] = 4005, + [4006] = 3704, + [4007] = 4007, + [4008] = 4008, + [4009] = 3530, + [4010] = 4010, + [4011] = 4011, + [4012] = 4012, + [4013] = 3799, + [4014] = 3805, + [4015] = 3806, + [4016] = 3808, + [4017] = 4017, + [4018] = 4018, + [4019] = 4019, + [4020] = 4020, + [4021] = 4021, + [4022] = 4022, + [4023] = 4023, + [4024] = 3552, + [4025] = 3049, + [4026] = 3556, + [4027] = 3565, + [4028] = 4028, + [4029] = 3693, + [4030] = 4030, + [4031] = 4031, + [4032] = 4032, + [4033] = 4033, + [4034] = 4034, + [4035] = 3500, + [4036] = 4036, + [4037] = 4037, + [4038] = 4038, + [4039] = 4039, + [4040] = 4040, + [4041] = 3474, + [4042] = 4042, + [4043] = 3675, + [4044] = 4044, + [4045] = 4045, + [4046] = 3677, + [4047] = 3690, + [4048] = 3460, + [4049] = 3438, + [4050] = 4050, + [4051] = 4051, + [4052] = 3535, + [4053] = 3659, + [4054] = 3819, + [4055] = 3823, + [4056] = 3617, + [4057] = 3644, + [4058] = 3649, + [4059] = 3673, + [4060] = 3696, + [4061] = 4061, + [4062] = 4062, + [4063] = 4063, + [4064] = 4064, + [4065] = 4065, + [4066] = 3547, + [4067] = 3623, + [4068] = 4068, + [4069] = 3632, + [4070] = 3643, + [4071] = 3650, + [4072] = 3655, + [4073] = 3657, + [4074] = 3658, + [4075] = 3705, + [4076] = 4076, + [4077] = 4077, + [4078] = 4078, + [4079] = 3455, + [4080] = 4080, + [4081] = 4081, + [4082] = 4082, + [4083] = 4083, + [4084] = 4084, + [4085] = 4085, + [4086] = 4086, + [4087] = 4087, + [4088] = 3612, + [4089] = 4089, + [4090] = 3142, + [4091] = 4091, + [4092] = 4092, + [4093] = 4093, + [4094] = 4094, + [4095] = 3699, + [4096] = 3702, + [4097] = 3417, + [4098] = 4098, + [4099] = 3420, + [4100] = 4100, + [4101] = 3472, + [4102] = 3475, + [4103] = 3479, + [4104] = 3483, + [4105] = 3485, + [4106] = 3489, + [4107] = 3495, + [4108] = 4108, + [4109] = 3148, + [4110] = 4110, + [4111] = 4111, + [4112] = 3502, + [4113] = 3505, + [4114] = 3519, + [4115] = 3520, + [4116] = 3526, + [4117] = 3527, + [4118] = 3531, + [4119] = 3532, + [4120] = 4120, + [4121] = 3560, + [4122] = 3561, + [4123] = 3564, + [4124] = 3566, + [4125] = 4125, + [4126] = 3150, + [4127] = 3568, + [4128] = 3569, + [4129] = 3570, + [4130] = 3583, + [4131] = 3584, + [4132] = 3585, + [4133] = 3586, + [4134] = 3593, + [4135] = 4135, + [4136] = 3630, + [4137] = 417, + [4138] = 3633, + [4139] = 3637, + [4140] = 4140, + [4141] = 4141, + [4142] = 4142, + [4143] = 4143, + [4144] = 4144, + [4145] = 4145, + [4146] = 4146, + [4147] = 4147, + [4148] = 4148, + [4149] = 3678, + [4150] = 3681, + [4151] = 4151, + [4152] = 3682, + [4153] = 3686, + [4154] = 422, + [4155] = 4155, + [4156] = 4156, + [4157] = 4157, + [4158] = 4158, + [4159] = 4159, + [4160] = 4160, + [4161] = 4161, + [4162] = 4162, + [4163] = 3694, + [4164] = 3415, + [4165] = 4165, + [4166] = 423, + [4167] = 3707, + [4168] = 4168, + [4169] = 4169, + [4170] = 4170, + [4171] = 4171, + [4172] = 4172, + [4173] = 4173, + [4174] = 3529, + [4175] = 3544, + [4176] = 3546, + [4177] = 3549, + [4178] = 3606, + [4179] = 3521, + [4180] = 3550, + [4181] = 3184, + [4182] = 424, + [4183] = 425, + [4184] = 426, + [4185] = 431, + [4186] = 3442, + [4187] = 3453, + [4188] = 3458, + [4189] = 3465, + [4190] = 3477, + [4191] = 2187, + [4192] = 2192, + [4193] = 3663, + [4194] = 2197, + [4195] = 2180, + [4196] = 2183, + [4197] = 2194, + [4198] = 2190, + [4199] = 2181, + [4200] = 4200, + [4201] = 4201, + [4202] = 3751, + [4203] = 2181, + [4204] = 3808, + [4205] = 422, + [4206] = 2181, + [4207] = 423, + [4208] = 2192, + [4209] = 3819, + [4210] = 3823, + [4211] = 3731, + [4212] = 3756, + [4213] = 3801, + [4214] = 3817, + [4215] = 2197, + [4216] = 2180, + [4217] = 3811, + [4218] = 3834, + [4219] = 3733, + [4220] = 3734, + [4221] = 3814, + [4222] = 3828, + [4223] = 3824, + [4224] = 3739, + [4225] = 3847, + [4226] = 3769, + [4227] = 3793, + [4228] = 3825, + [4229] = 3610, + [4230] = 2183, + [4231] = 2194, + [4232] = 2187, + [4233] = 3798, + [4234] = 3788, + [4235] = 3737, + [4236] = 3813, + [4237] = 3822, + [4238] = 3826, + [4239] = 3777, + [4240] = 2286, + [4241] = 3789, + [4242] = 3715, + [4243] = 3827, + [4244] = 2187, + [4245] = 3814, + [4246] = 3824, + [4247] = 3769, + [4248] = 3748, + [4249] = 2192, + [4250] = 2197, + [4251] = 3840, + [4252] = 3757, + [4253] = 3843, + [4254] = 417, + [4255] = 2180, + [4256] = 2183, + [4257] = 3648, + [4258] = 2194, + [4259] = 2190, + [4260] = 2181, + [4261] = 3752, + [4262] = 2187, + [4263] = 3760, + [4264] = 2187, + [4265] = 3832, + [4266] = 3770, + [4267] = 2192, + [4268] = 2197, + [4269] = 2180, + [4270] = 3809, + [4271] = 2183, + [4272] = 2194, + [4273] = 2190, + [4274] = 424, + [4275] = 3841, + [4276] = 3780, + [4277] = 425, + [4278] = 426, + [4279] = 2181, + [4280] = 431, + [4281] = 2192, + [4282] = 3839, + [4283] = 3729, + [4284] = 3767, + [4285] = 3759, + [4286] = 2190, + [4287] = 2197, + [4288] = 2180, + [4289] = 3765, + [4290] = 3728, + [4291] = 3790, + [4292] = 3773, + [4293] = 3786, + [4294] = 3807, + [4295] = 3802, + [4296] = 3735, + [4297] = 3764, + [4298] = 2183, + [4299] = 3703, + [4300] = 2194, + [4301] = 3778, + [4302] = 3799, + [4303] = 3787, + [4304] = 3714, + [4305] = 2190, + [4306] = 3626, + [4307] = 3805, + [4308] = 3806, + [4309] = 3831, + [4310] = 3797, + [4311] = 3794, + [4312] = 3775, + [4313] = 3792, + [4314] = 3842, + [4315] = 3721, + [4316] = 3845, + [4317] = 3749, + [4318] = 3772, + [4319] = 3783, + [4320] = 3754, + [4321] = 3763, + [4322] = 3738, + [4323] = 3804, + [4324] = 3920, + [4325] = 3826, + [4326] = 3827, + [4327] = 4148, + [4328] = 3927, + [4329] = 3928, + [4330] = 3996, + [4331] = 3929, + [4332] = 4151, + [4333] = 3930, + [4334] = 3931, + [4335] = 4155, + [4336] = 4156, + [4337] = 3825, + [4338] = 4169, + [4339] = 2187, + [4340] = 3944, + [4341] = 2192, + [4342] = 3752, + [4343] = 2192, + [4344] = 4170, + [4345] = 2197, + [4346] = 3852, + [4347] = 3853, + [4348] = 3854, + [4349] = 3855, + [4350] = 3856, + [4351] = 2180, + [4352] = 2183, + [4353] = 2194, + [4354] = 3949, + [4355] = 2190, + [4356] = 3950, + [4357] = 3951, + [4358] = 3952, + [4359] = 2181, + [4360] = 2197, + [4361] = 2180, + [4362] = 2183, + [4363] = 3839, + [4364] = 3729, + [4365] = 3767, + [4366] = 2194, + [4367] = 4171, + [4368] = 2190, + [4369] = 2181, + [4370] = 4173, + [4371] = 3969, + [4372] = 2187, + [4373] = 2192, + [4374] = 3970, + [4375] = 3971, + [4376] = 2197, + [4377] = 3972, + [4378] = 3863, + [4379] = 2180, + [4380] = 3867, + [4381] = 3868, + [4382] = 3973, + [4383] = 3974, + [4384] = 3975, + [4385] = 3976, + [4386] = 3977, + [4387] = 3978, + [4388] = 3869, + [4389] = 3870, + [4390] = 2183, + [4391] = 3979, + [4392] = 3980, + [4393] = 2194, + [4394] = 3981, + [4395] = 2190, + [4396] = 2181, + [4397] = 3895, + [4398] = 3984, + [4399] = 3759, + [4400] = 2440, + [4401] = 2464, + [4402] = 3765, + [4403] = 3916, + [4404] = 3917, + [4405] = 3918, + [4406] = 3926, + [4407] = 2190, + [4408] = 2181, + [4409] = 3948, + [4410] = 3997, + [4411] = 3953, + [4412] = 3998, + [4413] = 3999, + [4414] = 4000, + [4415] = 4002, + [4416] = 4003, + [4417] = 4004, + [4418] = 2187, + [4419] = 4005, + [4420] = 2192, + [4421] = 4007, + [4422] = 4008, + [4423] = 4010, + [4424] = 4011, + [4425] = 4012, + [4426] = 3957, + [4427] = 2187, + [4428] = 2192, + [4429] = 3799, + [4430] = 3805, + [4431] = 3806, + [4432] = 3808, + [4433] = 4017, + [4434] = 4020, + [4435] = 4021, + [4436] = 4018, + [4437] = 2197, + [4438] = 2180, + [4439] = 2183, + [4440] = 4019, + [4441] = 2194, + [4442] = 3987, + [4443] = 3988, + [4444] = 3958, + [4445] = 4032, + [4446] = 2190, + [4447] = 4033, + [4448] = 4036, + [4449] = 4037, + [4450] = 2181, + [4451] = 4038, + [4452] = 4039, + [4453] = 3959, + [4454] = 4040, + [4455] = 4042, + [4456] = 4201, + [4457] = 4044, + [4458] = 4045, + [4459] = 4050, + [4460] = 4051, + [4461] = 3960, + [4462] = 4034, + [4463] = 3961, + [4464] = 4022, + [4465] = 3962, + [4466] = 4091, + [4467] = 3819, + [4468] = 3823, + [4469] = 4061, + [4470] = 4092, + [4471] = 4062, + [4472] = 4063, + [4473] = 4108, + [4474] = 4157, + [4475] = 4064, + [4476] = 4158, + [4477] = 4159, + [4478] = 4065, + [4479] = 4172, + [4480] = 4068, + [4481] = 4076, + [4482] = 4077, + [4483] = 4078, + [4484] = 4080, + [4485] = 3963, + [4486] = 3964, + [4487] = 4081, + [4488] = 3947, + [4489] = 4089, + [4490] = 4093, + [4491] = 4094, + [4492] = 4098, + [4493] = 4100, + [4494] = 4110, + [4495] = 4111, + [4496] = 4120, + [4497] = 4023, + [4498] = 4125, + [4499] = 4135, + [4500] = 4140, + [4501] = 4141, + [4502] = 4142, + [4503] = 4143, + [4504] = 4144, + [4505] = 4145, + [4506] = 4146, + [4507] = 4147, + [4508] = 4160, + [4509] = 4161, + [4510] = 4162, + [4511] = 4165, + [4512] = 4168, + [4513] = 3965, + [4514] = 2197, + [4515] = 2180, + [4516] = 2183, + [4517] = 2194, + [4518] = 3864, + [4519] = 3966, + [4520] = 3865, + [4521] = 3871, + [4522] = 3872, + [4523] = 3851, + [4524] = 4028, + [4525] = 3991, + [4526] = 4030, + [4527] = 3992, + [4528] = 4031, + [4529] = 3967, + [4530] = 4200, + [4531] = 3898, + [4532] = 2468, + [4533] = 2470, + [4534] = 3945, + [4535] = 3899, + [4536] = 3857, + [4537] = 3968, + [4538] = 3900, + [4539] = 3901, + [4540] = 3902, + [4541] = 3905, + [4542] = 3906, + [4543] = 3907, + [4544] = 4082, + [4545] = 3778, + [4546] = 3915, + [4547] = 4083, + [4548] = 3994, + [4549] = 3913, + [4550] = 4084, + [4551] = 3866, + [4552] = 2546, + [4553] = 4085, + [4554] = 4086, + [4555] = 3874, + [4556] = 3876, + [4557] = 3877, + [4558] = 3879, + [4559] = 3903, + [4560] = 3995, + [4561] = 4087, + [4562] = 3946, + [4563] = 3914, + [4564] = 3908, + [4565] = 3909, + [4566] = 3910, + [4567] = 3911, + [4568] = 3788, + [4569] = 3813, + [4570] = 3912, + [4571] = 3896, + [4572] = 3822, + [4573] = 2547, + [4574] = 2455, + [4575] = 2384, + [4576] = 2396, + [4577] = 2405, + [4578] = 2450, + [4579] = 3919, + [4580] = 3932, + [4581] = 3933, + [4582] = 3934, + [4583] = 3935, + [4584] = 3936, + [4585] = 3937, + [4586] = 3938, + [4587] = 3939, + [4588] = 3940, + [4589] = 3941, + [4590] = 3942, + [4591] = 3943, + [4592] = 2187, + [4593] = 2608, + [4594] = 2684, + [4595] = 2180, + [4596] = 2183, + [4597] = 2194, + [4598] = 2286, + [4599] = 2885, + [4600] = 2899, + [4601] = 2901, + [4602] = 2902, + [4603] = 2686, + [4604] = 385, + [4605] = 2286, + [4606] = 2840, + [4607] = 2682, + [4608] = 386, + [4609] = 2568, + [4610] = 2592, + [4611] = 2286, + [4612] = 2878, + [4613] = 384, + [4614] = 2187, + [4615] = 2286, + [4616] = 2192, + [4617] = 2286, + [4618] = 2849, + [4619] = 2190, + [4620] = 2197, + [4621] = 2181, + [4622] = 2440, + [4623] = 2468, + [4624] = 2405, + [4625] = 2546, + [4626] = 2384, + [4627] = 2440, + [4628] = 2546, + [4629] = 3268, + [4630] = 2450, + [4631] = 427, + [4632] = 2405, + [4633] = 2464, + [4634] = 3362, + [4635] = 2547, + [4636] = 2450, + [4637] = 2440, + [4638] = 3372, + [4639] = 2396, + [4640] = 2396, + [4641] = 2405, + [4642] = 2464, + [4643] = 2470, + [4644] = 3201, + [4645] = 3142, + [4646] = 2547, + [4647] = 3049, + [4648] = 3148, + [4649] = 2455, + [4650] = 3060, + [4651] = 2440, + [4652] = 2450, + [4653] = 2547, + [4654] = 432, + [4655] = 2396, + [4656] = 2464, + [4657] = 2455, + [4658] = 433, + [4659] = 2384, + [4660] = 2464, + [4661] = 2440, + [4662] = 2470, + [4663] = 3184, + [4664] = 2468, + [4665] = 3361, + [4666] = 3370, + [4667] = 2455, + [4668] = 2405, + [4669] = 2547, + [4670] = 3394, + [4671] = 2547, + [4672] = 3411, + [4673] = 2468, + [4674] = 2470, + [4675] = 2546, + [4676] = 2468, + [4677] = 2455, + [4678] = 2470, + [4679] = 2961, + [4680] = 2546, + [4681] = 2450, + [4682] = 2546, + [4683] = 2470, + [4684] = 2455, + [4685] = 2384, + [4686] = 3150, + [4687] = 2464, + [4688] = 2286, + [4689] = 2384, + [4690] = 2396, + [4691] = 2405, + [4692] = 2450, + [4693] = 2396, + [4694] = 3243, + [4695] = 2468, + [4696] = 2384, + [4697] = 2608, + [4698] = 3201, + [4699] = 3243, + [4700] = 3268, + [4701] = 2885, + [4702] = 2899, + [4703] = 2901, + [4704] = 2464, + [4705] = 2608, + [4706] = 2849, + [4707] = 2568, + [4708] = 2592, + [4709] = 2902, + [4710] = 2686, + [4711] = 3663, + [4712] = 2840, + [4713] = 2547, + [4714] = 2885, + [4715] = 2682, + [4716] = 2899, + [4717] = 2901, + [4718] = 2568, + [4719] = 2849, + [4720] = 2568, + [4721] = 2592, + [4722] = 2902, + [4723] = 2686, + [4724] = 2840, + [4725] = 2682, + [4726] = 2568, + [4727] = 2592, + [4728] = 2878, + [4729] = 2546, + [4730] = 2878, + [4731] = 2878, + [4732] = 2684, + [4733] = 2885, + [4734] = 2899, + [4735] = 2901, + [4736] = 2902, + [4737] = 2686, + [4738] = 2840, + [4739] = 2682, + [4740] = 2608, + [4741] = 2849, + [4742] = 2568, + [4743] = 2592, + [4744] = 2878, + [4745] = 385, + [4746] = 386, + [4747] = 384, + [4748] = 2840, + [4749] = 3640, + [4750] = 2840, + [4751] = 2682, + [4752] = 2608, + [4753] = 2849, + [4754] = 3660, + [4755] = 385, + [4756] = 3661, + [4757] = 386, + [4758] = 3709, + [4759] = 384, + [4760] = 385, + [4761] = 386, + [4762] = 384, + [4763] = 2608, + [4764] = 2849, + [4765] = 3662, + [4766] = 3667, + [4767] = 385, + [4768] = 2592, + [4769] = 386, + [4770] = 3490, + [4771] = 3491, + [4772] = 3610, + [4773] = 2682, + [4774] = 3563, + [4775] = 3648, + [4776] = 2878, + [4777] = 3626, + [4778] = 2455, + [4779] = 2684, + [4780] = 384, + [4781] = 2468, + [4782] = 2470, + [4783] = 3703, + [4784] = 3685, + [4785] = 3704, + [4786] = 3530, + [4787] = 3552, + [4788] = 3049, + [4789] = 3556, + [4790] = 417, + [4791] = 3565, + [4792] = 422, + [4793] = 3693, + [4794] = 423, + [4795] = 3500, + [4796] = 2684, + [4797] = 3474, + [4798] = 3677, + [4799] = 3690, + [4800] = 3460, + [4801] = 3438, + [4802] = 3535, + [4803] = 3659, + [4804] = 424, + [4805] = 425, + [4806] = 426, + [4807] = 3617, + [4808] = 3644, + [4809] = 3649, + [4810] = 3673, + [4811] = 3696, + [4812] = 431, + [4813] = 3547, + [4814] = 3623, + [4815] = 3632, + [4816] = 3643, + [4817] = 3650, + [4818] = 3655, + [4819] = 3657, + [4820] = 3658, + [4821] = 3705, + [4822] = 3455, + [4823] = 2384, + [4824] = 2396, + [4825] = 2405, + [4826] = 2450, + [4827] = 3612, + [4828] = 3142, + [4829] = 3699, + [4830] = 3702, + [4831] = 3417, + [4832] = 3420, + [4833] = 3472, + [4834] = 3475, + [4835] = 3479, + [4836] = 3483, + [4837] = 3485, + [4838] = 3489, + [4839] = 3495, + [4840] = 3148, + [4841] = 3502, + [4842] = 3505, + [4843] = 3519, + [4844] = 3520, + [4845] = 3526, + [4846] = 3527, + [4847] = 3531, + [4848] = 3532, + [4849] = 3560, + [4850] = 3561, + [4851] = 3564, + [4852] = 3566, + [4853] = 3150, + [4854] = 3568, + [4855] = 3569, + [4856] = 3570, + [4857] = 3583, + [4858] = 3584, + [4859] = 3585, + [4860] = 3586, + [4861] = 3593, + [4862] = 3630, + [4863] = 3633, + [4864] = 3637, + [4865] = 3678, + [4866] = 3681, + [4867] = 3682, + [4868] = 3686, + [4869] = 3694, + [4870] = 3415, + [4871] = 3707, + [4872] = 3529, + [4873] = 3544, + [4874] = 3546, + [4875] = 3549, + [4876] = 3606, + [4877] = 2684, + [4878] = 385, + [4879] = 2885, + [4880] = 2899, + [4881] = 2901, + [4882] = 3521, + [4883] = 3550, + [4884] = 3184, + [4885] = 2885, + [4886] = 2899, + [4887] = 2901, + [4888] = 2440, + [4889] = 2902, + [4890] = 2686, + [4891] = 3442, + [4892] = 3453, + [4893] = 3458, + [4894] = 3465, + [4895] = 3477, + [4896] = 2902, + [4897] = 2686, + [4898] = 386, + [4899] = 384, + [4900] = 2684, + [4901] = 3184, + [4902] = 424, + [4903] = 3142, + [4904] = 2961, + [4905] = 3148, + [4906] = 2901, + [4907] = 3150, + [4908] = 3787, + [4909] = 3714, + [4910] = 3370, + [4911] = 3626, + [4912] = 3361, + [4913] = 3370, + [4914] = 3831, + [4915] = 425, + [4916] = 3394, + [4917] = 3721, + [4918] = 3394, + [4919] = 3754, + [4920] = 3763, + [4921] = 3770, + [4922] = 3411, + [4923] = 3411, + [4924] = 3792, + [4925] = 3411, + [4926] = 3731, + [4927] = 3756, + [4928] = 3801, + [4929] = 3817, + [4930] = 2840, + [4931] = 3201, + [4932] = 2961, + [4933] = 3739, + [4934] = 3362, + [4935] = 2961, + [4936] = 3798, + [4937] = 3184, + [4938] = 426, + [4939] = 3243, + [4940] = 3049, + [4941] = 3751, + [4942] = 431, + [4943] = 3184, + [4944] = 3361, + [4945] = 3814, + [4946] = 3824, + [4947] = 3769, + [4948] = 384, + [4949] = 3370, + [4950] = 3142, + [4951] = 3394, + [4952] = 427, + [4953] = 3411, + [4954] = 2608, + [4955] = 3268, + [4956] = 3142, + [4957] = 2885, + [4958] = 3372, + [4959] = 3760, + [4960] = 2849, + [4961] = 3832, + [4962] = 2568, + [4963] = 3148, + [4964] = 432, + [4965] = 433, + [4966] = 2592, + [4967] = 3362, + [4968] = 3150, + [4969] = 3780, + [4970] = 427, + [4971] = 2878, + [4972] = 3201, + [4973] = 432, + [4974] = 433, + [4975] = 2961, + [4976] = 3802, + [4977] = 3049, + [4978] = 3148, + [4979] = 3060, + [4980] = 3372, + [4981] = 3738, + [4982] = 3794, + [4983] = 3775, + [4984] = 3362, + [4985] = 3845, + [4986] = 3749, + [4987] = 3772, + [4988] = 3783, + [4989] = 3372, + [4990] = 423, + [4991] = 3243, + [4992] = 3361, + [4993] = 3370, + [4994] = 427, + [4995] = 3268, + [4996] = 2686, + [4997] = 3142, + [4998] = 3049, + [4999] = 3201, + [5000] = 3394, + [5001] = 433, + [5002] = 3813, + [5003] = 3822, + [5004] = 3826, + [5005] = 3827, + [5006] = 2902, + [5007] = 3733, + [5008] = 3734, + [5009] = 3828, + [5010] = 3362, + [5011] = 3243, + [5012] = 3847, + [5013] = 3362, + [5014] = 3394, + [5015] = 3610, + [5016] = 3839, + [5017] = 3729, + [5018] = 3767, + [5019] = 3372, + [5020] = 3268, + [5021] = 3759, + [5022] = 3184, + [5023] = 3201, + [5024] = 3765, + [5025] = 3777, + [5026] = 3148, + [5027] = 3789, + [5028] = 3715, + [5029] = 3799, + [5030] = 3805, + [5031] = 3806, + [5032] = 3748, + [5033] = 3757, + [5034] = 3808, + [5035] = 417, + [5036] = 3819, + [5037] = 3823, + [5038] = 3809, + [5039] = 3411, + [5040] = 3060, + [5041] = 3841, + [5042] = 3150, + [5043] = 3060, + [5044] = 3840, + [5045] = 3843, + [5046] = 3243, + [5047] = 3814, + [5048] = 3824, + [5049] = 3769, + [5050] = 427, + [5051] = 3268, + [5052] = 3361, + [5053] = 3372, + [5054] = 3268, + [5055] = 3790, + [5056] = 3201, + [5057] = 3773, + [5058] = 3786, + [5059] = 3807, + [5060] = 3060, + [5061] = 3735, + [5062] = 3764, + [5063] = 2684, + [5064] = 3703, + [5065] = 3370, + [5066] = 3060, + [5067] = 3150, + [5068] = 432, + [5069] = 433, + [5070] = 427, + [5071] = 2682, + [5072] = 3361, + [5073] = 385, + [5074] = 3648, + [5075] = 2899, + [5076] = 386, + [5077] = 422, + [5078] = 3243, + [5079] = 3797, + [5080] = 3049, + [5081] = 3804, + [5082] = 2961, + [5083] = 432, + [5084] = 433, + [5085] = 432, + [5086] = 3788, + [5087] = 3673, + [5088] = 3472, + [5089] = 3475, + [5090] = 3479, + [5091] = 3483, + [5092] = 3485, + [5093] = 3521, + [5094] = 3550, + [5095] = 3552, + [5096] = 3489, + [5097] = 3049, + [5098] = 3184, + [5099] = 3556, + [5100] = 3495, + [5101] = 3565, + [5102] = 3693, + [5103] = 3489, + [5104] = 3500, + [5105] = 3490, + [5106] = 3502, + [5107] = 3505, + [5108] = 3519, + [5109] = 3520, + [5110] = 3442, + [5111] = 3453, + [5112] = 3458, + [5113] = 3465, + [5114] = 3526, + [5115] = 3474, + [5116] = 3477, + [5117] = 3527, + [5118] = 3490, + [5119] = 3640, + [5120] = 3531, + [5121] = 3677, + [5122] = 3690, + [5123] = 3532, + [5124] = 3460, + [5125] = 3438, + [5126] = 3535, + [5127] = 3491, + [5128] = 3560, + [5129] = 3561, + [5130] = 3659, + [5131] = 3564, + [5132] = 3566, + [5133] = 3491, + [5134] = 3617, + [5135] = 3644, + [5136] = 3649, + [5137] = 3673, + [5138] = 3696, + [5139] = 3632, + [5140] = 3663, + [5141] = 3660, + [5142] = 3661, + [5143] = 3547, + [5144] = 3623, + [5145] = 3632, + [5146] = 3643, + [5147] = 3650, + [5148] = 3655, + [5149] = 3657, + [5150] = 3658, + [5151] = 3495, + [5152] = 3610, + [5153] = 3705, + [5154] = 3563, + [5155] = 3455, + [5156] = 3442, + [5157] = 3568, + [5158] = 3569, + [5159] = 3612, + [5160] = 3142, + [5161] = 3570, + [5162] = 3583, + [5163] = 3584, + [5164] = 3585, + [5165] = 3586, + [5166] = 3593, + [5167] = 3699, + [5168] = 3702, + [5169] = 3417, + [5170] = 3420, + [5171] = 3709, + [5172] = 3472, + [5173] = 3475, + [5174] = 3479, + [5175] = 3483, + [5176] = 3485, + [5177] = 3489, + [5178] = 3495, + [5179] = 3148, + [5180] = 3502, + [5181] = 3505, + [5182] = 3519, + [5183] = 3520, + [5184] = 3526, + [5185] = 3527, + [5186] = 3531, + [5187] = 3532, + [5188] = 3630, + [5189] = 3633, + [5190] = 3637, + [5191] = 3560, + [5192] = 3561, + [5193] = 3201, + [5194] = 3453, + [5195] = 3243, + [5196] = 417, + [5197] = 3268, + [5198] = 3535, + [5199] = 3564, + [5200] = 3566, + [5201] = 3150, + [5202] = 3458, + [5203] = 3568, + [5204] = 3569, + [5205] = 3570, + [5206] = 3583, + [5207] = 3584, + [5208] = 3585, + [5209] = 3586, + [5210] = 3593, + [5211] = 3465, + [5212] = 3630, + [5213] = 422, + [5214] = 3633, + [5215] = 3637, + [5216] = 3474, + [5217] = 3699, + [5218] = 423, + [5219] = 3702, + [5220] = 3417, + [5221] = 3420, + [5222] = 3685, + [5223] = 3678, + [5224] = 3681, + [5225] = 3502, + [5226] = 3682, + [5227] = 3678, + [5228] = 3681, + [5229] = 3686, + [5230] = 3682, + [5231] = 3505, + [5232] = 3686, + [5233] = 3519, + [5234] = 3520, + [5235] = 3526, + [5236] = 3694, + [5237] = 3415, + [5238] = 3184, + [5239] = 3707, + [5240] = 3694, + [5241] = 3415, + [5242] = 3863, + [5243] = 3704, + [5244] = 3693, + [5245] = 3707, + [5246] = 3527, + [5247] = 3530, + [5248] = 3531, + [5249] = 3532, + [5250] = 3867, + [5251] = 3868, + [5252] = 3869, + [5253] = 3870, + [5254] = 3910, + [5255] = 3529, + [5256] = 3544, + [5257] = 3546, + [5258] = 3549, + [5259] = 3606, + [5260] = 3911, + [5261] = 3529, + [5262] = 3544, + [5263] = 3546, + [5264] = 3549, + [5265] = 3606, + [5266] = 3560, + [5267] = 3561, + [5268] = 3563, + [5269] = 3472, + [5270] = 424, + [5271] = 425, + [5272] = 426, + [5273] = 3521, + [5274] = 3550, + [5275] = 3895, + [5276] = 3521, + [5277] = 3550, + [5278] = 431, + [5279] = 3184, + [5280] = 3703, + [5281] = 3049, + [5282] = 3530, + [5283] = 3475, + [5284] = 3442, + [5285] = 3453, + [5286] = 3458, + [5287] = 3465, + [5288] = 3479, + [5289] = 3477, + [5290] = 3564, + [5291] = 3483, + [5292] = 3485, + [5293] = 3916, + [5294] = 3917, + [5295] = 3918, + [5296] = 3489, + [5297] = 3632, + [5298] = 3552, + [5299] = 3663, + [5300] = 3926, + [5301] = 3566, + [5302] = 3643, + [5303] = 3643, + [5304] = 3243, + [5305] = 3442, + [5306] = 3490, + [5307] = 3677, + [5308] = 3690, + [5309] = 3442, + [5310] = 3453, + [5311] = 3458, + [5312] = 3465, + [5313] = 3491, + [5314] = 3495, + [5315] = 3460, + [5316] = 3438, + [5317] = 3650, + [5318] = 3650, + [5319] = 3655, + [5320] = 3477, + [5321] = 3640, + [5322] = 3148, + [5323] = 3610, + [5324] = 3201, + [5325] = 3948, + [5326] = 3648, + [5327] = 3659, + [5328] = 3453, + [5329] = 3535, + [5330] = 3655, + [5331] = 3502, + [5332] = 3243, + [5333] = 3505, + [5334] = 3519, + [5335] = 3520, + [5336] = 3526, + [5337] = 3527, + [5338] = 3531, + [5339] = 3268, + [5340] = 3657, + [5341] = 3658, + [5342] = 3532, + [5343] = 3568, + [5344] = 3201, + [5345] = 3626, + [5346] = 3957, + [5347] = 3458, + [5348] = 3184, + [5349] = 3569, + [5350] = 3570, + [5351] = 3583, + [5352] = 3659, + [5353] = 3584, + [5354] = 3662, + [5355] = 3663, + [5356] = 3585, + [5357] = 3586, + [5358] = 3465, + [5359] = 3660, + [5360] = 3661, + [5361] = 3477, + [5362] = 3593, + [5363] = 3640, + [5364] = 3243, + [5365] = 3657, + [5366] = 3912, + [5367] = 3660, + [5368] = 3630, + [5369] = 3661, + [5370] = 3268, + [5371] = 3633, + [5372] = 3637, + [5373] = 3709, + [5374] = 3658, + [5375] = 3648, + [5376] = 3617, + [5377] = 3644, + [5378] = 3649, + [5379] = 3552, + [5380] = 3696, + [5381] = 3662, + [5382] = 3678, + [5383] = 3681, + [5384] = 3667, + [5385] = 3682, + [5386] = 417, + [5387] = 3560, + [5388] = 3987, + [5389] = 3988, + [5390] = 3561, + [5391] = 3685, + [5392] = 3686, + [5393] = 3703, + [5394] = 3049, + [5395] = 3556, + [5396] = 3709, + [5397] = 3565, + [5398] = 3640, + [5399] = 3667, + [5400] = 3563, + [5401] = 3617, + [5402] = 3644, + [5403] = 3649, + [5404] = 3673, + [5405] = 3660, + [5406] = 422, + [5407] = 3661, + [5408] = 3703, + [5409] = 3693, + [5410] = 3696, + [5411] = 3474, + [5412] = 3564, + [5413] = 3566, + [5414] = 3709, + [5415] = 3694, + [5416] = 3477, + [5417] = 423, + [5418] = 3150, + [5419] = 3663, + [5420] = 3415, + [5421] = 3362, + [5422] = 3568, + [5423] = 3569, + [5424] = 3570, + [5425] = 3583, + [5426] = 3584, + [5427] = 3585, + [5428] = 3586, + [5429] = 3593, + [5430] = 4034, + [5431] = 3705, + [5432] = 3707, + [5433] = 3704, + [5434] = 3243, + [5435] = 3705, + [5436] = 3500, + [5437] = 3530, + [5438] = 3201, + [5439] = 3455, + [5440] = 3049, + [5441] = 3243, + [5442] = 3699, + [5443] = 3268, + [5444] = 3142, + [5445] = 3148, + [5446] = 3630, + [5447] = 3150, + [5448] = 3633, + [5449] = 3637, + [5450] = 3702, + [5451] = 3903, + [5452] = 3547, + [5453] = 3529, + [5454] = 3544, + [5455] = 3184, + [5456] = 4091, + [5457] = 4092, + [5458] = 3546, + [5459] = 3549, + [5460] = 4108, + [5461] = 3606, + [5462] = 3394, + [5463] = 3142, + [5464] = 3474, + [5465] = 3148, + [5466] = 3150, + [5467] = 3648, + [5468] = 3677, + [5469] = 3268, + [5470] = 4157, + [5471] = 4158, + [5472] = 4159, + [5473] = 427, + [5474] = 3690, + [5475] = 3678, + [5476] = 3681, + [5477] = 3460, + [5478] = 4172, + [5479] = 3682, + [5480] = 424, + [5481] = 425, + [5482] = 426, + [5483] = 3677, + [5484] = 3685, + [5485] = 3686, + [5486] = 3690, + [5487] = 3626, + [5488] = 3460, + [5489] = 3438, + [5490] = 3417, + [5491] = 431, + [5492] = 3411, + [5493] = 3612, + [5494] = 3201, + [5495] = 3864, + [5496] = 3535, + [5497] = 3865, + [5498] = 3547, + [5499] = 3871, + [5500] = 3872, + [5501] = 3851, + [5502] = 3547, + [5503] = 3521, + [5504] = 3659, + [5505] = 4200, + [5506] = 3610, + [5507] = 3623, + [5508] = 3648, + [5509] = 3694, + [5510] = 3617, + [5511] = 3644, + [5512] = 3649, + [5513] = 3898, + [5514] = 3673, + [5515] = 3415, + [5516] = 3899, + [5517] = 3696, + [5518] = 3900, + [5519] = 3901, + [5520] = 3902, + [5521] = 3905, + [5522] = 3906, + [5523] = 3907, + [5524] = 3632, + [5525] = 3643, + [5526] = 3913, + [5527] = 3547, + [5528] = 3707, + [5529] = 3623, + [5530] = 3704, + [5531] = 5531, + [5532] = 3632, + [5533] = 3643, + [5534] = 3650, + [5535] = 3655, + [5536] = 3914, + [5537] = 3657, + [5538] = 3658, + [5539] = 3788, + [5540] = 3813, + [5541] = 3822, + [5542] = 3826, + [5543] = 3827, + [5544] = 3530, + [5545] = 3927, + [5546] = 3928, + [5547] = 3529, + [5548] = 3929, + [5549] = 3544, + [5550] = 3930, + [5551] = 3931, + [5552] = 3546, + [5553] = 3549, + [5554] = 3606, + [5555] = 3662, + [5556] = 3667, + [5557] = 432, + [5558] = 3550, + [5559] = 3705, + [5560] = 3640, + [5561] = 3626, + [5562] = 3703, + [5563] = 3623, + [5564] = 3650, + [5565] = 3655, + [5566] = 3657, + [5567] = 3852, + [5568] = 3853, + [5569] = 3854, + [5570] = 3855, + [5571] = 3856, + [5572] = 3455, + [5573] = 3663, + [5574] = 3949, + [5575] = 3658, + [5576] = 3950, + [5577] = 3951, + [5578] = 3952, + [5579] = 433, + [5580] = 3839, + [5581] = 3729, + [5582] = 3767, + [5583] = 3612, + [5584] = 3705, + [5585] = 3142, + [5586] = 3455, + [5587] = 3455, + [5588] = 3552, + [5589] = 3660, + [5590] = 3661, + [5591] = 3969, + [5592] = 3699, + [5593] = 3702, + [5594] = 3417, + [5595] = 3970, + [5596] = 3971, + [5597] = 3972, + [5598] = 3420, + [5599] = 3500, + [5600] = 3973, + [5601] = 3974, + [5602] = 3975, + [5603] = 3976, + [5604] = 3662, + [5605] = 3667, + [5606] = 3977, + [5607] = 3978, + [5608] = 3979, + [5609] = 3980, + [5610] = 3981, + [5611] = 3361, + [5612] = 3472, + [5613] = 3475, + [5614] = 3479, + [5615] = 3483, + [5616] = 3485, + [5617] = 3489, + [5618] = 3984, + [5619] = 3759, + [5620] = 417, + [5621] = 3490, + [5622] = 3626, + [5623] = 422, + [5624] = 3765, + [5625] = 423, + [5626] = 3491, + [5627] = 3495, + [5628] = 3148, + [5629] = 3420, + [5630] = 3502, + [5631] = 3505, + [5632] = 3438, + [5633] = 3709, + [5634] = 3997, + [5635] = 417, + [5636] = 3519, + [5637] = 422, + [5638] = 423, + [5639] = 3520, + [5640] = 3998, + [5641] = 3999, + [5642] = 3526, + [5643] = 4000, + [5644] = 3527, + [5645] = 4002, + [5646] = 4003, + [5647] = 3531, + [5648] = 3532, + [5649] = 4004, + [5650] = 4005, + [5651] = 4007, + [5652] = 4008, + [5653] = 4010, + [5654] = 4011, + [5655] = 4012, + [5656] = 424, + [5657] = 425, + [5658] = 426, + [5659] = 431, + [5660] = 3490, + [5661] = 3491, + [5662] = 424, + [5663] = 425, + [5664] = 426, + [5665] = 431, + [5666] = 3560, + [5667] = 3799, + [5668] = 3561, + [5669] = 3805, + [5670] = 3806, + [5671] = 3808, + [5672] = 4017, + [5673] = 4018, + [5674] = 3563, + [5675] = 4019, + [5676] = 3564, + [5677] = 3566, + [5678] = 3908, + [5679] = 4032, + [5680] = 4033, + [5681] = 4036, + [5682] = 4037, + [5683] = 3150, + [5684] = 4038, + [5685] = 4039, + [5686] = 3568, + [5687] = 4040, + [5688] = 4042, + [5689] = 4201, + [5690] = 4044, + [5691] = 4045, + [5692] = 4050, + [5693] = 4051, + [5694] = 3563, + [5695] = 3372, + [5696] = 3569, + [5697] = 3570, + [5698] = 3556, + [5699] = 3583, + [5700] = 3584, + [5701] = 3819, + [5702] = 3823, + [5703] = 4061, + [5704] = 3585, + [5705] = 4062, + [5706] = 4063, + [5707] = 3586, + [5708] = 3593, + [5709] = 4064, + [5710] = 3909, + [5711] = 4065, + [5712] = 4068, + [5713] = 4076, + [5714] = 4077, + [5715] = 4078, + [5716] = 4080, + [5717] = 3630, + [5718] = 3633, + [5719] = 4081, + [5720] = 3637, + [5721] = 4089, + [5722] = 4093, + [5723] = 4094, + [5724] = 4098, + [5725] = 4100, + [5726] = 4110, + [5727] = 4111, + [5728] = 4120, + [5729] = 4125, + [5730] = 4135, + [5731] = 4140, + [5732] = 4141, + [5733] = 4142, + [5734] = 4143, + [5735] = 4144, + [5736] = 4145, + [5737] = 4146, + [5738] = 4147, + [5739] = 4160, + [5740] = 4161, + [5741] = 4162, + [5742] = 4165, + [5743] = 4168, + [5744] = 5744, + [5745] = 3060, + [5746] = 3623, + [5747] = 3685, + [5748] = 3612, + [5749] = 3370, + [5750] = 3556, + [5751] = 3678, + [5752] = 3610, + [5753] = 3681, + [5754] = 3682, + [5755] = 3685, + [5756] = 3704, + [5757] = 3686, + [5758] = 3472, + [5759] = 3565, + [5760] = 3475, + [5761] = 3565, + [5762] = 2961, + [5763] = 3268, + [5764] = 3693, + [5765] = 3479, + [5766] = 3694, + [5767] = 3500, + [5768] = 3415, + [5769] = 3707, + [5770] = 3704, + [5771] = 3662, + [5772] = 3483, + [5773] = 3699, + [5774] = 3530, + [5775] = 3552, + [5776] = 3667, + [5777] = 3556, + [5778] = 3565, + [5779] = 5779, + [5780] = 3702, + [5781] = 3693, + [5782] = 3417, + [5783] = 3612, + [5784] = 3500, + [5785] = 3915, + [5786] = 3529, + [5787] = 3544, + [5788] = 3474, + [5789] = 3546, + [5790] = 3549, + [5791] = 3606, + [5792] = 3677, + [5793] = 3690, + [5794] = 3460, + [5795] = 3438, + [5796] = 3420, + [5797] = 3535, + [5798] = 3659, + [5799] = 3201, + [5800] = 3485, + [5801] = 3049, + [5802] = 3521, + [5803] = 3617, + [5804] = 3644, + [5805] = 3649, + [5806] = 3673, + [5807] = 3696, + [5808] = 3550, + [5809] = 3142, + [5810] = 3667, + [5811] = 3765, + [5812] = 3807, + [5813] = 3823, + [5814] = 3738, + [5815] = 3799, + [5816] = 3570, + [5817] = 3583, + [5818] = 3584, + [5819] = 3735, + [5820] = 3585, + [5821] = 3805, + [5822] = 3806, + [5823] = 3764, + [5824] = 3586, + [5825] = 3593, + [5826] = 3832, + [5827] = 3808, + [5828] = 425, + [5829] = 3489, + [5830] = 3735, + [5831] = 3819, + [5832] = 3823, + [5833] = 424, + [5834] = 426, + [5835] = 425, + [5836] = 426, + [5837] = 3733, + [5838] = 3734, + [5839] = 3751, + [5840] = 3693, + [5841] = 3822, + [5842] = 3845, + [5843] = 3714, + [5844] = 3142, + [5845] = 3828, + [5846] = 3841, + [5847] = 3832, + [5848] = 3751, + [5849] = 3794, + [5850] = 3809, + [5851] = 3617, + [5852] = 3659, + [5853] = 3809, + [5854] = 3644, + [5855] = 3775, + [5856] = 3529, + [5857] = 3268, + [5858] = 3764, + [5859] = 3754, + [5860] = 3547, + [5861] = 3760, + [5862] = 3845, + [5863] = 3841, + [5864] = 3832, + [5865] = 3703, + [5866] = 3805, + [5867] = 3749, + [5868] = 417, + [5869] = 3733, + [5870] = 431, + [5871] = 3792, + [5872] = 3734, + [5873] = 3772, + [5874] = 3490, + [5875] = 3783, + [5876] = 422, + [5877] = 3841, + [5878] = 3806, + [5879] = 3556, + [5880] = 3847, + [5881] = 3560, + [5882] = 3731, + [5883] = 3814, + [5884] = 3824, + [5885] = 3738, + [5886] = 3777, + [5887] = 3561, + [5888] = 424, + [5889] = 425, + [5890] = 426, + [5891] = 3491, + [5892] = 3769, + [5893] = 3814, + [5894] = 3824, + [5895] = 3756, + [5896] = 3789, + [5897] = 3777, + [5898] = 3814, + [5899] = 3824, + [5900] = 431, + [5901] = 3769, + [5902] = 3780, + [5903] = 3715, + [5904] = 3495, + [5905] = 3789, + [5906] = 3715, + [5907] = 3769, + [5908] = 3733, + [5909] = 3734, + [5910] = 3801, + [5911] = 3148, + [5912] = 3817, + [5913] = 3623, + [5914] = 3682, + [5915] = 3839, + [5916] = 3787, + [5917] = 3790, + [5918] = 3748, + [5919] = 3814, + [5920] = 3814, + [5921] = 3201, + [5922] = 3824, + [5923] = 3630, + [5924] = 3632, + [5925] = 3808, + [5926] = 3757, + [5927] = 3769, + [5928] = 3714, + [5929] = 3049, + [5930] = 3643, + [5931] = 3780, + [5932] = 3650, + [5933] = 3655, + [5934] = 3787, + [5935] = 3714, + [5936] = 422, + [5937] = 3657, + [5938] = 3658, + [5939] = 3802, + [5940] = 3827, + [5941] = 3699, + [5942] = 3824, + [5943] = 3790, + [5944] = 3733, + [5945] = 3633, + [5946] = 3788, + [5947] = 3544, + [5948] = 3813, + [5949] = 3822, + [5950] = 3826, + [5951] = 3827, + [5952] = 423, + [5953] = 3787, + [5954] = 3714, + [5955] = 3734, + [5956] = 3794, + [5957] = 3749, + [5958] = 3814, + [5959] = 422, + [5960] = 3828, + [5961] = 3769, + [5962] = 3563, + [5963] = 3772, + [5964] = 3546, + [5965] = 3804, + [5966] = 3549, + [5967] = 3794, + [5968] = 3775, + [5969] = 417, + [5970] = 3783, + [5971] = 3828, + [5972] = 3845, + [5973] = 3775, + [5974] = 3702, + [5975] = 3502, + [5976] = 3828, + [5977] = 3505, + [5978] = 3519, + [5979] = 3626, + [5980] = 3520, + [5981] = 3526, + [5982] = 3749, + [5983] = 3772, + [5984] = 3824, + [5985] = 3840, + [5986] = 3843, + [5987] = 3831, + [5988] = 3637, + [5989] = 3783, + [5990] = 3769, + [5991] = 3729, + [5992] = 3840, + [5993] = 3767, + [5994] = 424, + [5995] = 425, + [5996] = 426, + [5997] = 3612, + [5998] = 3840, + [5999] = 3721, + [6000] = 3754, + [6001] = 3790, + [6002] = 3763, + [6003] = 3843, + [6004] = 3839, + [6005] = 3770, + [6006] = 3729, + [6007] = 3767, + [6008] = 3809, + [6009] = 3527, + [6010] = 3704, + [6011] = 3773, + [6012] = 3790, + [6013] = 3845, + [6014] = 423, + [6015] = 3843, + [6016] = 431, + [6017] = 3759, + [6018] = 3847, + [6019] = 431, + [6020] = 3773, + [6021] = 3786, + [6022] = 3649, + [6023] = 3807, + [6024] = 3780, + [6025] = 3565, + [6026] = 3735, + [6027] = 3764, + [6028] = 3707, + [6029] = 3739, + [6030] = 3606, + [6031] = 3690, + [6032] = 3786, + [6033] = 3792, + [6034] = 3807, + [6035] = 3733, + [6036] = 3734, + [6037] = 3610, + [6038] = 3662, + [6039] = 3748, + [6040] = 3626, + [6041] = 3780, + [6042] = 3826, + [6043] = 3703, + [6044] = 3735, + [6045] = 3703, + [6046] = 3764, + [6047] = 3640, + [6048] = 3648, + [6049] = 3709, + [6050] = 3828, + [6051] = 3417, + [6052] = 3564, + [6053] = 3847, + [6054] = 3626, + [6055] = 3760, + [6056] = 3531, + [6057] = 3626, + [6058] = 3472, + [6059] = 3788, + [6060] = 3731, + [6061] = 3777, + [6062] = 3460, + [6063] = 3756, + [6064] = 3801, + [6065] = 3841, + [6066] = 3840, + [6067] = 3843, + [6068] = 3438, + [6069] = 3847, + [6070] = 3813, + [6071] = 3822, + [6072] = 3826, + [6073] = 3786, + [6074] = 423, + [6075] = 3681, + [6076] = 3765, + [6077] = 3530, + [6078] = 3610, + [6079] = 3610, + [6080] = 3832, + [6081] = 3792, + [6082] = 3648, + [6083] = 417, + [6084] = 3731, + [6085] = 3756, + [6086] = 3801, + [6087] = 3626, + [6088] = 3532, + [6089] = 3703, + [6090] = 3789, + [6091] = 3566, + [6092] = 3773, + [6093] = 3817, + [6094] = 3840, + [6095] = 3843, + [6096] = 423, + [6097] = 424, + [6098] = 3786, + [6099] = 3847, + [6100] = 3715, + [6101] = 3770, + [6102] = 3673, + [6103] = 3610, + [6104] = 3696, + [6105] = 425, + [6106] = 3797, + [6107] = 3831, + [6108] = 426, + [6109] = 3807, + [6110] = 3739, + [6111] = 3442, + [6112] = 3777, + [6113] = 3760, + [6114] = 3839, + [6115] = 3789, + [6116] = 3729, + [6117] = 3748, + [6118] = 3738, + [6119] = 3797, + [6120] = 3703, + [6121] = 3715, + [6122] = 3767, + [6123] = 3831, + [6124] = 3739, + [6125] = 3760, + [6126] = 424, + [6127] = 3184, + [6128] = 3660, + [6129] = 3453, + [6130] = 3738, + [6131] = 3777, + [6132] = 3814, + [6133] = 3748, + [6134] = 3824, + [6135] = 3552, + [6136] = 3749, + [6137] = 3769, + [6138] = 3789, + [6139] = 3817, + [6140] = 3780, + [6141] = 3685, + [6142] = 3715, + [6143] = 3694, + [6144] = 431, + [6145] = 3739, + [6146] = 3757, + [6147] = 3772, + [6148] = 3458, + [6149] = 3465, + [6150] = 3799, + [6151] = 3757, + [6152] = 3610, + [6153] = 3721, + [6154] = 3754, + [6155] = 3678, + [6156] = 3797, + [6157] = 3832, + [6158] = 3797, + [6159] = 3648, + [6160] = 3500, + [6161] = 3805, + [6162] = 3806, + [6163] = 3705, + [6164] = 3757, + [6165] = 3738, + [6166] = 3802, + [6167] = 3804, + [6168] = 3798, + [6169] = 3759, + [6170] = 3420, + [6171] = 3474, + [6172] = 3831, + [6173] = 3648, + [6174] = 3808, + [6175] = 3765, + [6176] = 3243, + [6177] = 3783, + [6178] = 3535, + [6179] = 3804, + [6180] = 3798, + [6181] = 417, + [6182] = 3792, + [6183] = 3763, + [6184] = 3802, + [6185] = 3759, + [6186] = 3661, + [6187] = 3748, + [6188] = 3819, + [6189] = 422, + [6190] = 3721, + [6191] = 3754, + [6192] = 3648, + [6193] = 3763, + [6194] = 3770, + [6195] = 3819, + [6196] = 3823, + [6197] = 3823, + [6198] = 3765, + [6199] = 3809, + [6200] = 3804, + [6201] = 3757, + [6202] = 3804, + [6203] = 3770, + [6204] = 3475, + [6205] = 422, + [6206] = 3798, + [6207] = 3841, + [6208] = 3788, + [6209] = 3479, + [6210] = 3521, + [6211] = 417, + [6212] = 3802, + [6213] = 3677, + [6214] = 3775, + [6215] = 3798, + [6216] = 3787, + [6217] = 3714, + [6218] = 3477, + [6219] = 3731, + [6220] = 3799, + [6221] = 3756, + [6222] = 3663, + [6223] = 3415, + [6224] = 3831, + [6225] = 3801, + [6226] = 3805, + [6227] = 3721, + [6228] = 3754, + [6229] = 3763, + [6230] = 3770, + [6231] = 3817, + [6232] = 3809, + [6233] = 3150, + [6234] = 3788, + [6235] = 3813, + [6236] = 3822, + [6237] = 3721, + [6238] = 3794, + [6239] = 3826, + [6240] = 3731, + [6241] = 3756, + [6242] = 3801, + [6243] = 3817, + [6244] = 3827, + [6245] = 3813, + [6246] = 3763, + [6247] = 3455, + [6248] = 3775, + [6249] = 3760, + [6250] = 3806, + [6251] = 3751, + [6252] = 3739, + [6253] = 423, + [6254] = 3790, + [6255] = 3814, + [6256] = 3824, + [6257] = 3794, + [6258] = 3769, + [6259] = 3798, + [6260] = 3686, + [6261] = 3839, + [6262] = 3729, + [6263] = 3751, + [6264] = 3845, + [6265] = 3751, + [6266] = 3767, + [6267] = 3550, + [6268] = 3808, + [6269] = 3797, + [6270] = 3773, + [6271] = 3786, + [6272] = 3568, + [6273] = 3807, + [6274] = 3773, + [6275] = 3749, + [6276] = 3772, + [6277] = 3802, + [6278] = 3759, + [6279] = 3483, + [6280] = 3569, + [6281] = 3485, + [6282] = 3819, + [6283] = 3735, + [6284] = 3764, + [6285] = 3799, + [6286] = 3787, + [6287] = 3783, + [6288] = 3827, + [6289] = 3839, + [6290] = 4168, + [6291] = 4040, + [6292] = 4042, + [6293] = 4092, + [6294] = 4201, + [6295] = 4108, + [6296] = 4157, + [6297] = 4158, + [6298] = 4159, + [6299] = 4172, + [6300] = 3814, + [6301] = 3824, + [6302] = 3769, + [6303] = 4044, + [6304] = 4039, + [6305] = 3969, + [6306] = 4040, + [6307] = 3863, + [6308] = 4042, + [6309] = 3864, + [6310] = 4045, + [6311] = 4201, + [6312] = 3865, + [6313] = 4050, + [6314] = 4051, + [6315] = 3867, + [6316] = 3868, + [6317] = 3869, + [6318] = 3870, + [6319] = 4044, + [6320] = 4045, + [6321] = 3871, + [6322] = 3872, + [6323] = 4050, + [6324] = 3851, + [6325] = 4051, + [6326] = 4144, + [6327] = 4145, + [6328] = 3984, + [6329] = 4146, + [6330] = 4147, + [6331] = 4157, + [6332] = 3979, + [6333] = 3914, + [6334] = 4061, + [6335] = 4158, + [6336] = 4062, + [6337] = 4063, + [6338] = 3915, + [6339] = 4159, + [6340] = 4064, + [6341] = 4160, + [6342] = 4161, + [6343] = 4065, + [6344] = 4162, + [6345] = 4068, + [6346] = 4076, + [6347] = 4077, + [6348] = 4078, + [6349] = 4080, + [6350] = 4165, + [6351] = 3970, + [6352] = 4200, + [6353] = 3927, + [6354] = 4081, + [6355] = 3765, + [6356] = 3912, + [6357] = 4089, + [6358] = 3928, + [6359] = 3895, + [6360] = 3898, + [6361] = 4093, + [6362] = 3899, + [6363] = 4094, + [6364] = 4098, + [6365] = 4100, + [6366] = 3900, + [6367] = 3901, + [6368] = 3902, + [6369] = 3905, + [6370] = 3906, + [6371] = 3907, + [6372] = 3819, + [6373] = 4168, + [6374] = 3823, + [6375] = 4061, + [6376] = 4110, + [6377] = 3733, + [6378] = 3734, + [6379] = 4062, + [6380] = 4063, + [6381] = 4111, + [6382] = 3929, + [6383] = 4064, + [6384] = 4120, + [6385] = 3913, + [6386] = 4125, + [6387] = 4065, + [6388] = 3915, + [6389] = 4068, + [6390] = 4076, + [6391] = 4077, + [6392] = 4078, + [6393] = 4080, + [6394] = 4135, + [6395] = 4140, + [6396] = 4141, + [6397] = 4081, + [6398] = 4142, + [6399] = 4143, + [6400] = 4144, + [6401] = 4145, + [6402] = 3914, + [6403] = 3930, + [6404] = 3915, + [6405] = 4146, + [6406] = 3916, + [6407] = 3917, + [6408] = 4147, + [6409] = 3931, + [6410] = 3980, + [6411] = 3918, + [6412] = 3788, + [6413] = 3813, + [6414] = 3822, + [6415] = 3826, + [6416] = 3827, + [6417] = 3926, + [6418] = 4160, + [6419] = 4161, + [6420] = 3927, + [6421] = 3928, + [6422] = 4089, + [6423] = 3929, + [6424] = 4162, + [6425] = 3930, + [6426] = 3931, + [6427] = 4165, + [6428] = 4168, + [6429] = 3981, + [6430] = 4091, + [6431] = 4092, + [6432] = 3788, + [6433] = 3813, + [6434] = 3739, + [6435] = 3822, + [6436] = 3826, + [6437] = 3827, + [6438] = 3948, + [6439] = 4093, + [6440] = 4172, + [6441] = 4094, + [6442] = 3852, + [6443] = 3853, + [6444] = 3828, + [6445] = 3854, + [6446] = 3855, + [6447] = 3856, + [6448] = 3971, + [6449] = 3987, + [6450] = 3988, + [6451] = 4098, + [6452] = 3949, + [6453] = 3839, + [6454] = 3729, + [6455] = 3767, + [6456] = 3950, + [6457] = 3951, + [6458] = 3952, + [6459] = 4100, + [6460] = 3814, + [6461] = 3824, + [6462] = 3769, + [6463] = 3949, + [6464] = 3839, + [6465] = 3903, + [6466] = 3729, + [6467] = 3767, + [6468] = 3957, + [6469] = 3759, + [6470] = 3839, + [6471] = 4108, + [6472] = 3765, + [6473] = 3797, + [6474] = 4110, + [6475] = 4111, + [6476] = 3729, + [6477] = 3903, + [6478] = 3799, + [6479] = 3760, + [6480] = 3805, + [6481] = 3806, + [6482] = 4120, + [6483] = 3969, + [6484] = 3808, + [6485] = 3819, + [6486] = 3832, + [6487] = 3970, + [6488] = 3971, + [6489] = 3823, + [6490] = 3972, + [6491] = 3972, + [6492] = 4125, + [6493] = 4135, + [6494] = 4140, + [6495] = 3738, + [6496] = 3973, + [6497] = 3974, + [6498] = 3975, + [6499] = 3840, + [6500] = 3976, + [6501] = 4141, + [6502] = 4142, + [6503] = 3843, + [6504] = 3977, + [6505] = 3978, + [6506] = 4143, + [6507] = 4144, + [6508] = 4145, + [6509] = 3979, + [6510] = 3767, + [6511] = 4146, + [6512] = 4147, + [6513] = 3980, + [6514] = 3957, + [6515] = 3981, + [6516] = 3751, + [6517] = 3908, + [6518] = 3909, + [6519] = 4017, + [6520] = 4157, + [6521] = 3852, + [6522] = 3847, + [6523] = 4158, + [6524] = 4159, + [6525] = 4160, + [6526] = 4161, + [6527] = 3984, + [6528] = 4162, + [6529] = 3759, + [6530] = 3853, + [6531] = 3854, + [6532] = 3765, + [6533] = 4165, + [6534] = 4168, + [6535] = 3987, + [6536] = 3988, + [6537] = 3788, + [6538] = 3813, + [6539] = 3822, + [6540] = 3826, + [6541] = 3827, + [6542] = 3855, + [6543] = 3856, + [6544] = 3908, + [6545] = 3909, + [6546] = 3969, + [6547] = 3997, + [6548] = 4018, + [6549] = 3998, + [6550] = 3999, + [6551] = 3648, + [6552] = 4000, + [6553] = 3987, + [6554] = 4002, + [6555] = 4003, + [6556] = 3839, + [6557] = 3729, + [6558] = 4004, + [6559] = 3767, + [6560] = 3988, + [6561] = 4005, + [6562] = 3759, + [6563] = 4007, + [6564] = 4008, + [6565] = 3910, + [6566] = 3911, + [6567] = 4010, + [6568] = 4011, + [6569] = 4012, + [6570] = 3949, + [6571] = 3973, + [6572] = 3765, + [6573] = 3799, + [6574] = 3974, + [6575] = 3805, + [6576] = 3806, + [6577] = 3975, + [6578] = 3808, + [6579] = 4017, + [6580] = 3976, + [6581] = 3799, + [6582] = 4018, + [6583] = 4019, + [6584] = 3805, + [6585] = 3806, + [6586] = 3950, + [6587] = 4019, + [6588] = 3808, + [6589] = 3872, + [6590] = 3851, + [6591] = 3819, + [6592] = 3910, + [6593] = 3911, + [6594] = 3823, + [6595] = 4032, + [6596] = 4033, + [6597] = 4034, + [6598] = 4036, + [6599] = 4037, + [6600] = 3951, + [6601] = 4038, + [6602] = 4039, + [6603] = 4040, + [6604] = 4042, + [6605] = 4201, + [6606] = 4044, + [6607] = 4045, + [6608] = 4050, + [6609] = 4051, + [6610] = 3912, + [6611] = 423, + [6612] = 3952, + [6613] = 4172, + [6614] = 3997, + [6615] = 3819, + [6616] = 3823, + [6617] = 4061, + [6618] = 4062, + [6619] = 4063, + [6620] = 3970, + [6621] = 4064, + [6622] = 4065, + [6623] = 4068, + [6624] = 4076, + [6625] = 4077, + [6626] = 4078, + [6627] = 4080, + [6628] = 4081, + [6629] = 3912, + [6630] = 4089, + [6631] = 4091, + [6632] = 4092, + [6633] = 4093, + [6634] = 4094, + [6635] = 4098, + [6636] = 4100, + [6637] = 3973, + [6638] = 4108, + [6639] = 4110, + [6640] = 4111, + [6641] = 3792, + [6642] = 4120, + [6643] = 4125, + [6644] = 3998, + [6645] = 4135, + [6646] = 4140, + [6647] = 3610, + [6648] = 4141, + [6649] = 4142, + [6650] = 4143, + [6651] = 4144, + [6652] = 4145, + [6653] = 3999, + [6654] = 4146, + [6655] = 4147, + [6656] = 4157, + [6657] = 4158, + [6658] = 4159, + [6659] = 4160, + [6660] = 4161, + [6661] = 4162, + [6662] = 4165, + [6663] = 4168, + [6664] = 4032, + [6665] = 4033, + [6666] = 4034, + [6667] = 4172, + [6668] = 3780, + [6669] = 424, + [6670] = 3863, + [6671] = 417, + [6672] = 425, + [6673] = 426, + [6674] = 4000, + [6675] = 3867, + [6676] = 3868, + [6677] = 3869, + [6678] = 3870, + [6679] = 4036, + [6680] = 4037, + [6681] = 3977, + [6682] = 3974, + [6683] = 3978, + [6684] = 4038, + [6685] = 4039, + [6686] = 4040, + [6687] = 3864, + [6688] = 4042, + [6689] = 3898, + [6690] = 4201, + [6691] = 4044, + [6692] = 3777, + [6693] = 3903, + [6694] = 3979, + [6695] = 4002, + [6696] = 4003, + [6697] = 3915, + [6698] = 3865, + [6699] = 4045, + [6700] = 4050, + [6701] = 3980, + [6702] = 431, + [6703] = 4051, + [6704] = 3969, + [6705] = 3864, + [6706] = 3895, + [6707] = 3871, + [6708] = 3872, + [6709] = 3865, + [6710] = 3851, + [6711] = 3981, + [6712] = 3970, + [6713] = 3971, + [6714] = 3809, + [6715] = 3972, + [6716] = 3871, + [6717] = 3872, + [6718] = 3851, + [6719] = 3997, + [6720] = 3975, + [6721] = 4004, + [6722] = 3789, + [6723] = 3804, + [6724] = 3949, + [6725] = 3976, + [6726] = 3973, + [6727] = 4005, + [6728] = 3952, + [6729] = 3814, + [6730] = 3824, + [6731] = 3863, + [6732] = 3769, + [6733] = 3974, + [6734] = 3975, + [6735] = 3976, + [6736] = 3864, + [6737] = 3916, + [6738] = 3917, + [6739] = 3918, + [6740] = 3926, + [6741] = 3715, + [6742] = 3626, + [6743] = 3703, + [6744] = 3863, + [6745] = 3977, + [6746] = 3867, + [6747] = 3831, + [6748] = 4200, + [6749] = 3868, + [6750] = 3869, + [6751] = 3978, + [6752] = 4007, + [6753] = 3870, + [6754] = 3865, + [6755] = 3998, + [6756] = 4008, + [6757] = 3999, + [6758] = 4010, + [6759] = 3898, + [6760] = 3948, + [6761] = 3899, + [6762] = 3867, + [6763] = 4011, + [6764] = 3903, + [6765] = 3979, + [6766] = 3900, + [6767] = 3868, + [6768] = 3901, + [6769] = 3902, + [6770] = 3869, + [6771] = 3870, + [6772] = 3905, + [6773] = 3906, + [6774] = 3907, + [6775] = 3871, + [6776] = 3980, + [6777] = 4012, + [6778] = 3872, + [6779] = 3981, + [6780] = 3950, + [6781] = 3913, + [6782] = 3951, + [6783] = 3957, + [6784] = 3952, + [6785] = 3851, + [6786] = 3908, + [6787] = 3909, + [6788] = 3971, + [6789] = 3914, + [6790] = 3915, + [6791] = 4061, + [6792] = 3798, + [6793] = 3910, + [6794] = 3911, + [6795] = 3788, + [6796] = 3813, + [6797] = 3822, + [6798] = 3826, + [6799] = 3827, + [6800] = 4000, + [6801] = 3802, + [6802] = 4062, + [6803] = 3927, + [6804] = 3928, + [6805] = 4063, + [6806] = 3929, + [6807] = 3930, + [6808] = 3912, + [6809] = 3799, + [6810] = 4002, + [6811] = 3805, + [6812] = 4064, + [6813] = 4003, + [6814] = 3806, + [6815] = 3984, + [6816] = 3808, + [6817] = 4017, + [6818] = 3841, + [6819] = 3977, + [6820] = 3773, + [6821] = 422, + [6822] = 3786, + [6823] = 3852, + [6824] = 3853, + [6825] = 3854, + [6826] = 3855, + [6827] = 3856, + [6828] = 4200, + [6829] = 3807, + [6830] = 4018, + [6831] = 4065, + [6832] = 3949, + [6833] = 3948, + [6834] = 3735, + [6835] = 3987, + [6836] = 3988, + [6837] = 4200, + [6838] = 3764, + [6839] = 3950, + [6840] = 3951, + [6841] = 4068, + [6842] = 3952, + [6843] = 4076, + [6844] = 4019, + [6845] = 4077, + [6846] = 4078, + [6847] = 4080, + [6848] = 3729, + [6849] = 3767, + [6850] = 4004, + [6851] = 3978, + [6852] = 3895, + [6853] = 3903, + [6854] = 4005, + [6855] = 3721, + [6856] = 4081, + [6857] = 3754, + [6858] = 3787, + [6859] = 3969, + [6860] = 3714, + [6861] = 3915, + [6862] = 3972, + [6863] = 3984, + [6864] = 3763, + [6865] = 3970, + [6866] = 3971, + [6867] = 4007, + [6868] = 3908, + [6869] = 3972, + [6870] = 3909, + [6871] = 3898, + [6872] = 3915, + [6873] = 3997, + [6874] = 3973, + [6875] = 3974, + [6876] = 3975, + [6877] = 3976, + [6878] = 4089, + [6879] = 3977, + [6880] = 3978, + [6881] = 4008, + [6882] = 3792, + [6883] = 3998, + [6884] = 3999, + [6885] = 3979, + [6886] = 3980, + [6887] = 3794, + [6888] = 4034, + [6889] = 3981, + [6890] = 3775, + [6891] = 3899, + [6892] = 3916, + [6893] = 3917, + [6894] = 3770, + [6895] = 3918, + [6896] = 3845, + [6897] = 3926, + [6898] = 4000, + [6899] = 4091, + [6900] = 3749, + [6901] = 4002, + [6902] = 4003, + [6903] = 3984, + [6904] = 3772, + [6905] = 3759, + [6906] = 4092, + [6907] = 4093, + [6908] = 4004, + [6909] = 3765, + [6910] = 4094, + [6911] = 4098, + [6912] = 4005, + [6913] = 4100, + [6914] = 4007, + [6915] = 4008, + [6916] = 4010, + [6917] = 4011, + [6918] = 4012, + [6919] = 3948, + [6920] = 3790, + [6921] = 3908, + [6922] = 3909, + [6923] = 3900, + [6924] = 4091, + [6925] = 4092, + [6926] = 3997, + [6927] = 3852, + [6928] = 3783, + [6929] = 3853, + [6930] = 3998, + [6931] = 4108, + [6932] = 3999, + [6933] = 3854, + [6934] = 4000, + [6935] = 3855, + [6936] = 4002, + [6937] = 4003, + [6938] = 3856, + [6939] = 4004, + [6940] = 4005, + [6941] = 4007, + [6942] = 4008, + [6943] = 4010, + [6944] = 4011, + [6945] = 4157, + [6946] = 4012, + [6947] = 4158, + [6948] = 4159, + [6949] = 3814, + [6950] = 3824, + [6951] = 3799, + [6952] = 3769, + [6953] = 4172, + [6954] = 3805, + [6955] = 3748, + [6956] = 3895, + [6957] = 3806, + [6958] = 3898, + [6959] = 3957, + [6960] = 3808, + [6961] = 4017, + [6962] = 3901, + [6963] = 4018, + [6964] = 3902, + [6965] = 3905, + [6966] = 3731, + [6967] = 3899, + [6968] = 3906, + [6969] = 4019, + [6970] = 3756, + [6971] = 3907, + [6972] = 4010, + [6973] = 4108, + [6974] = 4017, + [6975] = 4110, + [6976] = 4111, + [6977] = 3910, + [6978] = 3911, + [6979] = 4018, + [6980] = 3801, + [6981] = 3900, + [6982] = 3863, + [6983] = 4032, + [6984] = 3864, + [6985] = 3865, + [6986] = 3901, + [6987] = 3902, + [6988] = 3867, + [6989] = 3868, + [6990] = 3869, + [6991] = 3870, + [6992] = 3905, + [6993] = 3871, + [6994] = 3906, + [6995] = 4011, + [6996] = 4033, + [6997] = 4120, + [6998] = 4036, + [6999] = 4037, + [7000] = 3907, + [7001] = 4038, + [7002] = 4125, + [7003] = 4039, + [7004] = 4040, + [7005] = 4042, + [7006] = 4019, + [7007] = 3817, + [7008] = 3913, + [7009] = 4201, + [7010] = 4044, + [7011] = 4045, + [7012] = 4050, + [7013] = 3913, + [7014] = 4051, + [7015] = 4012, + [7016] = 3759, + [7017] = 3757, + [7018] = 7018, + [7019] = 4200, + [7020] = 4135, + [7021] = 4140, + [7022] = 3987, + [7023] = 3988, + [7024] = 3910, + [7025] = 3911, + [7026] = 4141, + [7027] = 3819, + [7028] = 4032, + [7029] = 4142, + [7030] = 4033, + [7031] = 3823, + [7032] = 3895, + [7033] = 4061, + [7034] = 3899, + [7035] = 4062, + [7036] = 4063, + [7037] = 4032, + [7038] = 4064, + [7039] = 3914, + [7040] = 3900, + [7041] = 3901, + [7042] = 3902, + [7043] = 3905, + [7044] = 3906, + [7045] = 3907, + [7046] = 4065, + [7047] = 4036, + [7048] = 4068, + [7049] = 4076, + [7050] = 3915, + [7051] = 4077, + [7052] = 3913, + [7053] = 4078, + [7054] = 4080, + [7055] = 3916, + [7056] = 3917, + [7057] = 4037, + [7058] = 3918, + [7059] = 3788, + [7060] = 3813, + [7061] = 4081, + [7062] = 3912, + [7063] = 4089, + [7064] = 3914, + [7065] = 4033, + [7066] = 3822, + [7067] = 3916, + [7068] = 3917, + [7069] = 3918, + [7070] = 3826, + [7071] = 3827, + [7072] = 3926, + [7073] = 3926, + [7074] = 3927, + [7075] = 3927, + [7076] = 3928, + [7077] = 3929, + [7078] = 4093, + [7079] = 3930, + [7080] = 3931, + [7081] = 4094, + [7082] = 4098, + [7083] = 4100, + [7084] = 4034, + [7085] = 3928, + [7086] = 4034, + [7087] = 4110, + [7088] = 4111, + [7089] = 4036, + [7090] = 4037, + [7091] = 4120, + [7092] = 4125, + [7093] = 3929, + [7094] = 4143, + [7095] = 4135, + [7096] = 4140, + [7097] = 3948, + [7098] = 4141, + [7099] = 4142, + [7100] = 4143, + [7101] = 3852, + [7102] = 3853, + [7103] = 3854, + [7104] = 3855, + [7105] = 3856, + [7106] = 4144, + [7107] = 3930, + [7108] = 4145, + [7109] = 4038, + [7110] = 3931, + [7111] = 4146, + [7112] = 4147, + [7113] = 3950, + [7114] = 3951, + [7115] = 4039, + [7116] = 4038, + [7117] = 4091, + [7118] = 4160, + [7119] = 4161, + [7120] = 3957, + [7121] = 4162, + [7122] = 4165, + [7123] = 3931, + [7124] = 3912, + [7125] = 3948, + [7126] = 3765, + [7127] = 4062, + [7128] = 3974, + [7129] = 4038, + [7130] = 4063, + [7131] = 3979, + [7132] = 3980, + [7133] = 3987, + [7134] = 3988, + [7135] = 4039, + [7136] = 3906, + [7137] = 3907, + [7138] = 4007, + [7139] = 3822, + [7140] = 3827, + [7141] = 4064, + [7142] = 3952, + [7143] = 4065, + [7144] = 3926, + [7145] = 4040, + [7146] = 4068, + [7147] = 4076, + [7148] = 4077, + [7149] = 3930, + [7150] = 4078, + [7151] = 4080, + [7152] = 4081, + [7153] = 4008, + [7154] = 4010, + [7155] = 4004, + [7156] = 4011, + [7157] = 4012, + [7158] = 3975, + [7159] = 3981, + [7160] = 3997, + [7161] = 3969, + [7162] = 3929, + [7163] = 4005, + [7164] = 3799, + [7165] = 3910, + [7166] = 4089, + [7167] = 3998, + [7168] = 3999, + [7169] = 3839, + [7170] = 3805, + [7171] = 3806, + [7172] = 3903, + [7173] = 3808, + [7174] = 3976, + [7175] = 3729, + [7176] = 3864, + [7177] = 4091, + [7178] = 3767, + [7179] = 3957, + [7180] = 4092, + [7181] = 4093, + [7182] = 4042, + [7183] = 4201, + [7184] = 4044, + [7185] = 4094, + [7186] = 4098, + [7187] = 4100, + [7188] = 4045, + [7189] = 4000, + [7190] = 3895, + [7191] = 4050, + [7192] = 4051, + [7193] = 3865, + [7194] = 3911, + [7195] = 4157, + [7196] = 4158, + [7197] = 4061, + [7198] = 4160, + [7199] = 4161, + [7200] = 4162, + [7201] = 4165, + [7202] = 4017, + [7203] = 3898, + [7204] = 4003, + [7205] = 4168, + [7206] = 3913, + [7207] = 3899, + [7208] = 3949, + [7209] = 4018, + [7210] = 3826, + [7211] = 4108, + [7212] = 4110, + [7213] = 3871, + [7214] = 4111, + [7215] = 3872, + [7216] = 4200, + [7217] = 3851, + [7218] = 3914, + [7219] = 3852, + [7220] = 3867, + [7221] = 3915, + [7222] = 3853, + [7223] = 4120, + [7224] = 3916, + [7225] = 4125, + [7226] = 3917, + [7227] = 3854, + [7228] = 4172, + [7229] = 3918, + [7230] = 3855, + [7231] = 3931, + [7232] = 4002, + [7233] = 3856, + [7234] = 3927, + [7235] = 3869, + [7236] = 3900, + [7237] = 3901, + [7238] = 3970, + [7239] = 3971, + [7240] = 4135, + [7241] = 3928, + [7242] = 4140, + [7243] = 3950, + [7244] = 3863, + [7245] = 4032, + [7246] = 3972, + [7247] = 4033, + [7248] = 4141, + [7249] = 4142, + [7250] = 4143, + [7251] = 3908, + [7252] = 4034, + [7253] = 4144, + [7254] = 4036, + [7255] = 3813, + [7256] = 3870, + [7257] = 3951, + [7258] = 3984, + [7259] = 3868, + [7260] = 3902, + [7261] = 3905, + [7262] = 3819, + [7263] = 4145, + [7264] = 3823, + [7265] = 4146, + [7266] = 4147, + [7267] = 3788, + [7268] = 3973, + [7269] = 4019, + [7270] = 4037, + [7271] = 3759, + [7272] = 3977, + [7273] = 3978, + [7274] = 3909, + [7275] = 4159, + [7276] = 384, + [7277] = 386, + [7278] = 385, + [7279] = 380, + [7280] = 413, + [7281] = 452, + [7282] = 427, + [7283] = 451, + [7284] = 432, + [7285] = 433, + [7286] = 430, + [7287] = 417, + [7288] = 398, + [7289] = 400, + [7290] = 428, + [7291] = 453, + [7292] = 422, + [7293] = 429, + [7294] = 414, + [7295] = 421, + [7296] = 399, + [7297] = 401, + [7298] = 434, + [7299] = 434, + [7300] = 410, + [7301] = 435, + [7302] = 398, + [7303] = 434, + [7304] = 435, + [7305] = 431, + [7306] = 424, + [7307] = 412, + [7308] = 425, + [7309] = 437, + [7310] = 423, + [7311] = 426, + [7312] = 402, + [7313] = 451, + [7314] = 411, + [7315] = 465, + [7316] = 404, + [7317] = 405, + [7318] = 453, + [7319] = 406, + [7320] = 407, + [7321] = 408, + [7322] = 409, + [7323] = 435, + [7324] = 405, + [7325] = 411, + [7326] = 437, + [7327] = 399, + [7328] = 412, + [7329] = 401, + [7330] = 410, + [7331] = 465, + [7332] = 404, + [7333] = 429, + [7334] = 406, + [7335] = 407, + [7336] = 408, + [7337] = 409, + [7338] = 413, + [7339] = 385, + [7340] = 380, + [7341] = 384, + [7342] = 386, + [7343] = 423, + [7344] = 427, + [7345] = 404, + [7346] = 424, + [7347] = 465, + [7348] = 400, + [7349] = 410, + [7350] = 401, + [7351] = 452, + [7352] = 409, + [7353] = 407, + [7354] = 402, + [7355] = 405, + [7356] = 417, + [7357] = 429, + [7358] = 437, + [7359] = 399, + [7360] = 411, + [7361] = 422, + [7362] = 413, + [7363] = 453, + [7364] = 996, + [7365] = 414, + [7366] = 451, + [7367] = 398, + [7368] = 412, + [7369] = 430, + [7370] = 421, + [7371] = 406, + [7372] = 408, + [7373] = 428, + [7374] = 431, + [7375] = 426, + [7376] = 432, + [7377] = 433, + [7378] = 425, + [7379] = 398, + [7380] = 453, + [7381] = 451, + [7382] = 405, + [7383] = 409, + [7384] = 410, + [7385] = 996, + [7386] = 465, + [7387] = 404, + [7388] = 411, + [7389] = 412, + [7390] = 1255, + [7391] = 413, + [7392] = 406, + [7393] = 399, + [7394] = 401, + [7395] = 465, + [7396] = 404, + [7397] = 405, + [7398] = 406, + [7399] = 407, + [7400] = 408, + [7401] = 409, + [7402] = 410, + [7403] = 411, + [7404] = 412, + [7405] = 437, + [7406] = 413, + [7407] = 437, + [7408] = 437, + [7409] = 407, + [7410] = 399, + [7411] = 429, + [7412] = 401, + [7413] = 408, + [7414] = 1961, + [7415] = 7415, + [7416] = 7416, + [7417] = 349, + [7418] = 349, + [7419] = 350, + [7420] = 7420, + [7421] = 7420, + [7422] = 7420, + [7423] = 7420, + [7424] = 7420, + [7425] = 7420, + [7426] = 355, + [7427] = 7420, + [7428] = 7420, + [7429] = 7420, + [7430] = 7420, + [7431] = 350, + [7432] = 7420, + [7433] = 7420, + [7434] = 7420, + [7435] = 352, + [7436] = 7420, + [7437] = 7420, + [7438] = 7420, + [7439] = 7420, + [7440] = 7420, + [7441] = 353, + [7442] = 354, + [7443] = 7420, + [7444] = 7420, + [7445] = 354, + [7446] = 359, + [7447] = 353, + [7448] = 356, + [7449] = 352, + [7450] = 358, + [7451] = 357, + [7452] = 355, + [7453] = 357, + [7454] = 359, + [7455] = 356, + [7456] = 358, + [7457] = 367, + [7458] = 7458, + [7459] = 7458, + [7460] = 7458, + [7461] = 7458, + [7462] = 7458, + [7463] = 7458, + [7464] = 7458, + [7465] = 7458, + [7466] = 7458, + [7467] = 7458, + [7468] = 7458, + [7469] = 7458, + [7470] = 7458, + [7471] = 7458, + [7472] = 7458, + [7473] = 7458, + [7474] = 7458, + [7475] = 7458, + [7476] = 7458, + [7477] = 7458, + [7478] = 7458, + [7479] = 7458, + [7480] = 7458, + [7481] = 7458, + [7482] = 7458, + [7483] = 7458, + [7484] = 7458, + [7485] = 7458, + [7486] = 7458, + [7487] = 7458, + [7488] = 7458, + [7489] = 7458, + [7490] = 7458, + [7491] = 7458, + [7492] = 7458, + [7493] = 7458, + [7494] = 7458, + [7495] = 7458, + [7496] = 7458, + [7497] = 7458, + [7498] = 7498, + [7499] = 7458, + [7500] = 7458, + [7501] = 7458, + [7502] = 7458, + [7503] = 7458, + [7504] = 7458, + [7505] = 7498, + [7506] = 7458, + [7507] = 7498, + [7508] = 7458, + [7509] = 7458, + [7510] = 7498, + [7511] = 368, + [7512] = 7458, + [7513] = 7498, + [7514] = 7458, + [7515] = 7458, + [7516] = 7498, + [7517] = 7458, + [7518] = 7458, + [7519] = 7458, + [7520] = 7458, + [7521] = 7458, + [7522] = 7458, + [7523] = 371, + [7524] = 7498, + [7525] = 7458, + [7526] = 7458, + [7527] = 7458, + [7528] = 7458, + [7529] = 7458, + [7530] = 2286, + [7531] = 7458, + [7532] = 7458, + [7533] = 7458, + [7534] = 7458, + [7535] = 7458, + [7536] = 7458, + [7537] = 7458, + [7538] = 7458, + [7539] = 7458, + [7540] = 7458, + [7541] = 7498, + [7542] = 7458, + [7543] = 7458, + [7544] = 7458, + [7545] = 7498, + [7546] = 7458, + [7547] = 7498, + [7548] = 7458, + [7549] = 367, + [7550] = 372, + [7551] = 368, + [7552] = 2464, + [7553] = 2440, + [7554] = 371, + [7555] = 2547, + [7556] = 385, + [7557] = 384, + [7558] = 7558, + [7559] = 372, + [7560] = 2729, + [7561] = 372, + [7562] = 386, + [7563] = 2768, + [7564] = 2626, + [7565] = 2455, + [7566] = 2646, + [7567] = 2440, + [7568] = 2464, + [7569] = 7569, + [7570] = 7570, + [7571] = 433, + [7572] = 7569, + [7573] = 7570, + [7574] = 7570, + [7575] = 427, + [7576] = 3213, + [7577] = 7569, + [7578] = 7569, + [7579] = 7570, + [7580] = 7569, + [7581] = 7570, + [7582] = 3319, + [7583] = 7569, + [7584] = 7569, + [7585] = 7570, + [7586] = 432, + [7587] = 3366, + [7588] = 7569, + [7589] = 7570, + [7590] = 3294, + [7591] = 7570, + [7592] = 3372, + [7593] = 7570, + [7594] = 3362, + [7595] = 7569, + [7596] = 7569, + [7597] = 7570, + [7598] = 7569, + [7599] = 7570, + [7600] = 7600, + [7601] = 7601, + [7602] = 7601, + [7603] = 7601, + [7604] = 3528, + [7605] = 3675, + [7606] = 7601, + [7607] = 7601, + [7608] = 7600, + [7609] = 3268, + [7610] = 7601, + [7611] = 7600, + [7612] = 3411, + [7613] = 3201, + [7614] = 7600, + [7615] = 3243, + [7616] = 3394, + [7617] = 7601, + [7618] = 7601, + [7619] = 3427, + [7620] = 7600, + [7621] = 7601, + [7622] = 7600, + [7623] = 3540, + [7624] = 7601, + [7625] = 7600, + [7626] = 2961, + [7627] = 7600, + [7628] = 7600, + [7629] = 7600, + [7630] = 7601, + [7631] = 3552, + [7632] = 3709, + [7633] = 3707, + [7634] = 3440, + [7635] = 3678, + [7636] = 3842, + [7637] = 3415, + [7638] = 3201, + [7639] = 3550, + [7640] = 3465, + [7641] = 3811, + [7642] = 3458, + [7643] = 3268, + [7644] = 3620, + [7645] = 3704, + [7646] = 3793, + [7647] = 3554, + [7648] = 3442, + [7649] = 3660, + [7650] = 3625, + [7651] = 3834, + [7652] = 3453, + [7653] = 3694, + [7654] = 3661, + [7655] = 3243, + [7656] = 3533, + [7657] = 3681, + [7658] = 3549, + [7659] = 3606, + [7660] = 3640, + [7661] = 3804, + [7662] = 3471, + [7663] = 3686, + [7664] = 3546, + [7665] = 3544, + [7666] = 3639, + [7667] = 3685, + [7668] = 3728, + [7669] = 3682, + [7670] = 3651, + [7671] = 3737, + [7672] = 3529, + [7673] = 3521, + [7674] = 7674, + [7675] = 7675, + [7676] = 424, + [7677] = 425, + [7678] = 426, + [7679] = 431, + [7680] = 7680, + [7681] = 3778, + [7682] = 7682, + [7683] = 3825, + [7684] = 3790, + [7685] = 3773, + [7686] = 3786, + [7687] = 3807, + [7688] = 3735, + [7689] = 3764, + [7690] = 3787, + [7691] = 3714, + [7692] = 3752, + [7693] = 7693, + [7694] = 7694, + [7695] = 7695, + [7696] = 7696, + [7697] = 7697, + [7698] = 7698, + [7699] = 7699, + [7700] = 7700, + [7701] = 7701, + [7702] = 7702, + [7703] = 7703, + [7704] = 7704, + [7705] = 7705, + [7706] = 7706, + [7707] = 7699, + [7708] = 7700, + [7709] = 7701, + [7710] = 3797, + [7711] = 7702, + [7712] = 7703, + [7713] = 7705, + [7714] = 7693, + [7715] = 7699, + [7716] = 7700, + [7717] = 7701, + [7718] = 7702, + [7719] = 7703, + [7720] = 7705, + [7721] = 7693, + [7722] = 7699, + [7723] = 7700, + [7724] = 7701, + [7725] = 7702, + [7726] = 7703, + [7727] = 7705, + [7728] = 7693, + [7729] = 3809, + [7730] = 7699, + [7731] = 7700, + [7732] = 7701, + [7733] = 7702, + [7734] = 7703, + [7735] = 7705, + [7736] = 7693, + [7737] = 7699, + [7738] = 7700, + [7739] = 7701, + [7740] = 7702, + [7741] = 7703, + [7742] = 7705, + [7743] = 7693, + [7744] = 3841, + [7745] = 7699, + [7746] = 7700, + [7747] = 7701, + [7748] = 7702, + [7749] = 7703, + [7750] = 7705, + [7751] = 7693, + [7752] = 7699, + [7753] = 7700, + [7754] = 7701, + [7755] = 7702, + [7756] = 7703, + [7757] = 7705, + [7758] = 7693, + [7759] = 7699, + [7760] = 7700, + [7761] = 7701, + [7762] = 7702, + [7763] = 7703, + [7764] = 7705, + [7765] = 7693, + [7766] = 7699, + [7767] = 7700, + [7768] = 7701, + [7769] = 7702, + [7770] = 7703, + [7771] = 7675, + [7772] = 7705, + [7773] = 7693, + [7774] = 7699, + [7775] = 7700, + [7776] = 7701, + [7777] = 7702, + [7778] = 7703, + [7779] = 7705, + [7780] = 7705, + [7781] = 7705, + [7782] = 7705, + [7783] = 7705, + [7784] = 7705, + [7785] = 7675, + [7786] = 7705, + [7787] = 7787, + [7788] = 7705, + [7789] = 7705, + [7790] = 7705, + [7791] = 7705, + [7792] = 7705, + [7793] = 7705, + [7794] = 7705, + [7795] = 7705, + [7796] = 7705, + [7797] = 7705, + [7798] = 7705, + [7799] = 7705, + [7800] = 7705, + [7801] = 7705, + [7802] = 7705, + [7803] = 7705, + [7804] = 7705, + [7805] = 7705, + [7806] = 7705, + [7807] = 7705, + [7808] = 7705, + [7809] = 7705, + [7810] = 7705, + [7811] = 7705, + [7812] = 7705, + [7813] = 7705, + [7814] = 7705, + [7815] = 7705, + [7816] = 7705, + [7817] = 7705, + [7818] = 7705, + [7819] = 7705, + [7820] = 7705, + [7821] = 7705, + [7822] = 7705, + [7823] = 7705, + [7824] = 7824, + [7825] = 7705, + [7826] = 7705, + [7827] = 7705, + [7828] = 7705, + [7829] = 7705, + [7830] = 7705, + [7831] = 7705, + [7832] = 7832, + [7833] = 7705, + [7834] = 7834, + [7835] = 7787, + [7836] = 7824, + [7837] = 7695, + [7838] = 7697, + [7839] = 7698, + [7840] = 7834, + [7841] = 7787, + [7842] = 7824, + [7843] = 7695, + [7844] = 7697, + [7845] = 7698, + [7846] = 7834, + [7847] = 7787, + [7848] = 7824, + [7849] = 7695, + [7850] = 7697, + [7851] = 7698, + [7852] = 7834, + [7853] = 7787, + [7854] = 7824, + [7855] = 7695, + [7856] = 7697, + [7857] = 7698, + [7858] = 7834, + [7859] = 7787, + [7860] = 7824, + [7861] = 7695, + [7862] = 7697, + [7863] = 7698, + [7864] = 7864, + [7865] = 7834, + [7866] = 7787, + [7867] = 7824, + [7868] = 7695, + [7869] = 7697, + [7870] = 7698, + [7871] = 7834, + [7872] = 7834, + [7873] = 7787, + [7874] = 7824, + [7875] = 7695, + [7876] = 7697, + [7877] = 7698, + [7878] = 7878, + [7879] = 7834, + [7880] = 7787, + [7881] = 7824, + [7882] = 7695, + [7883] = 7697, + [7884] = 7698, + [7885] = 7834, + [7886] = 7695, + [7887] = 7834, + [7888] = 7695, + [7889] = 7832, + [7890] = 7704, + [7891] = 7891, + [7892] = 7832, + [7893] = 7704, + [7894] = 7832, + [7895] = 7704, + [7896] = 7832, + [7897] = 7704, + [7898] = 7832, + [7899] = 7704, + [7900] = 7832, + [7901] = 7704, + [7902] = 7832, + [7903] = 7704, + [7904] = 7832, + [7905] = 7704, + [7906] = 7832, + [7907] = 7704, + [7908] = 7694, + [7909] = 7675, + [7910] = 7680, + [7911] = 7694, + [7912] = 7675, + [7913] = 7675, + [7914] = 7675, + [7915] = 7675, + [7916] = 7705, + [7917] = 4170, + [7918] = 7918, + [7919] = 7919, + [7920] = 3964, + [7921] = 7921, + [7922] = 7922, + [7923] = 3866, + [7924] = 7924, + [7925] = 3874, + [7926] = 7926, + [7927] = 3876, + [7928] = 3877, + [7929] = 3879, + [7930] = 7930, + [7931] = 3946, + [7932] = 4022, + [7933] = 3947, + [7934] = 4023, + [7935] = 3896, + [7936] = 3991, + [7937] = 3992, + [7938] = 4082, + [7939] = 4083, + [7940] = 4084, + [7941] = 7941, + [7942] = 3912, + [7943] = 3825, + [7944] = 4085, + [7945] = 4086, + [7946] = 4087, + [7947] = 3910, + [7948] = 7948, + [7949] = 3911, + [7950] = 3908, + [7951] = 3965, + [7952] = 7952, + [7953] = 3903, + [7954] = 4148, + [7955] = 3994, + [7956] = 4151, + [7957] = 3909, + [7958] = 4155, + [7959] = 3966, + [7960] = 4156, + [7961] = 3967, + [7962] = 4169, + [7963] = 3968, + [7964] = 3995, + [7965] = 7965, + [7966] = 4173, + [7967] = 3953, + [7968] = 4028, + [7969] = 3857, + [7970] = 7970, + [7971] = 7971, + [7972] = 3919, + [7973] = 421, + [7974] = 3920, + [7975] = 4030, + [7976] = 7976, + [7977] = 4031, + [7978] = 7978, + [7979] = 4200, + [7980] = 7980, + [7981] = 7981, + [7982] = 3996, + [7983] = 7983, + [7984] = 4020, + [7985] = 7985, + [7986] = 3752, + [7987] = 7987, + [7988] = 4021, + [7989] = 3932, + [7990] = 3933, + [7991] = 3934, + [7992] = 3935, + [7993] = 3936, + [7994] = 7994, + [7995] = 3937, + [7996] = 3938, + [7997] = 3939, + [7998] = 3940, + [7999] = 3941, + [8000] = 3942, + [8001] = 3943, + [8002] = 3944, + [8003] = 3958, + [8004] = 3959, + [8005] = 3960, + [8006] = 3961, + [8007] = 3962, + [8008] = 3963, + [8009] = 3945, + [8010] = 3778, + [8011] = 4171, + [8012] = 8012, + [8013] = 8013, + [8014] = 8014, + [8015] = 8013, + [8016] = 8016, + [8017] = 8012, + [8018] = 8013, + [8019] = 8016, + [8020] = 8012, + [8021] = 8013, + [8022] = 8016, + [8023] = 8016, + [8024] = 8016, + [8025] = 8012, + [8026] = 8013, + [8027] = 723, + [8028] = 8012, + [8029] = 8012, + [8030] = 8012, + [8031] = 8013, + [8032] = 8016, + [8033] = 8012, + [8034] = 8013, + [8035] = 8013, + [8036] = 8016, + [8037] = 8012, + [8038] = 8013, + [8039] = 8016, + [8040] = 8012, + [8041] = 8016, + [8042] = 8012, + [8043] = 8013, + [8044] = 8044, + [8045] = 8016, + [8046] = 8016, + [8047] = 8047, + [8048] = 8048, + [8049] = 8049, + [8050] = 8047, + [8051] = 8051, + [8052] = 8047, + [8053] = 8051, + [8054] = 8051, + [8055] = 8051, + [8056] = 8056, + [8057] = 8056, + [8058] = 8058, + [8059] = 8059, + [8060] = 8060, + [8061] = 8061, + [8062] = 8058, + [8063] = 8063, + [8064] = 8048, + [8065] = 8056, + [8066] = 8058, + [8067] = 8059, + [8068] = 8049, + [8069] = 8060, + [8070] = 8047, + [8071] = 8059, + [8072] = 8060, + [8073] = 8061, + [8074] = 8047, + [8075] = 8047, + [8076] = 8051, + [8077] = 8061, + [8078] = 8063, + [8079] = 8058, + [8080] = 8059, + [8081] = 8060, + [8082] = 8061, + [8083] = 8047, + [8084] = 8048, + [8085] = 8056, + [8086] = 8047, + [8087] = 8047, + [8088] = 8056, + [8089] = 8047, + [8090] = 8048, + [8091] = 8056, + [8092] = 8047, + [8093] = 8063, + [8094] = 8048, + [8095] = 8056, + [8096] = 8056, + [8097] = 8047, + [8098] = 8056, + [8099] = 8047, + [8100] = 8056, + [8101] = 8047, + [8102] = 8056, + [8103] = 8047, + [8104] = 8056, + [8105] = 8056, + [8106] = 8049, + [8107] = 8047, + [8108] = 8056, + [8109] = 8047, + [8110] = 8056, + [8111] = 8047, + [8112] = 8056, + [8113] = 8047, + [8114] = 8056, + [8115] = 8047, + [8116] = 8056, + [8117] = 8047, + [8118] = 8047, + [8119] = 8047, + [8120] = 8047, + [8121] = 8047, + [8122] = 8047, + [8123] = 8047, + [8124] = 8047, + [8125] = 8047, + [8126] = 8047, + [8127] = 8058, + [8128] = 8047, + [8129] = 8059, + [8130] = 8047, + [8131] = 8060, + [8132] = 8047, + [8133] = 8061, + [8134] = 8047, + [8135] = 8135, + [8136] = 8047, + [8137] = 8051, + [8138] = 8047, + [8139] = 8049, + [8140] = 8047, + [8141] = 8049, + [8142] = 8047, + [8143] = 8058, + [8144] = 8047, + [8145] = 8059, + [8146] = 8047, + [8147] = 8060, + [8148] = 8060, + [8149] = 8061, + [8150] = 8047, + [8151] = 8047, + [8152] = 8047, + [8153] = 8047, + [8154] = 8047, + [8155] = 8063, + [8156] = 8047, + [8157] = 8048, + [8158] = 8047, + [8159] = 8063, + [8160] = 8047, + [8161] = 8048, + [8162] = 8047, + [8163] = 8056, + [8164] = 8047, + [8165] = 8047, + [8166] = 8047, + [8167] = 8061, + [8168] = 8047, + [8169] = 8049, + [8170] = 8047, + [8171] = 8047, + [8172] = 8047, + [8173] = 8047, + [8174] = 8049, + [8175] = 8047, + [8176] = 8047, + [8177] = 8047, + [8178] = 8047, + [8179] = 8048, + [8180] = 8047, + [8181] = 8047, + [8182] = 8047, + [8183] = 8047, + [8184] = 8047, + [8185] = 8047, + [8186] = 8047, + [8187] = 8047, + [8188] = 8047, + [8189] = 8047, + [8190] = 8047, + [8191] = 8047, + [8192] = 8056, + [8193] = 8193, + [8194] = 8194, + [8195] = 8047, + [8196] = 8047, + [8197] = 8047, + [8198] = 8194, + [8199] = 8047, + [8200] = 8051, + [8201] = 8051, + [8202] = 8047, + [8203] = 8058, + [8204] = 8059, + [8205] = 8060, + [8206] = 8194, + [8207] = 8061, + [8208] = 8063, + [8209] = 8048, + [8210] = 8056, + [8211] = 8194, + [8212] = 8051, + [8213] = 8063, + [8214] = 8049, + [8215] = 8194, + [8216] = 8194, + [8217] = 8047, + [8218] = 8047, + [8219] = 723, + [8220] = 8194, + [8221] = 8049, + [8222] = 8051, + [8223] = 8058, + [8224] = 8059, + [8225] = 8058, + [8226] = 8059, + [8227] = 8194, + [8228] = 8060, + [8229] = 8061, + [8230] = 8060, + [8231] = 8063, + [8232] = 8048, + [8233] = 8056, + [8234] = 8194, + [8235] = 8194, + [8236] = 8194, + [8237] = 8061, + [8238] = 8058, + [8239] = 8047, + [8240] = 8049, + [8241] = 8059, + [8242] = 8060, + [8243] = 8059, + [8244] = 8047, + [8245] = 8193, + [8246] = 8193, + [8247] = 8193, + [8248] = 8193, + [8249] = 8193, + [8250] = 8193, + [8251] = 8193, + [8252] = 8193, + [8253] = 8193, + [8254] = 8193, + [8255] = 8061, + [8256] = 8047, + [8257] = 8063, + [8258] = 8063, + [8259] = 8048, + [8260] = 8051, + [8261] = 8048, + [8262] = 8056, + [8263] = 8058, + [8264] = 8047, + [8265] = 8265, + [8266] = 8266, + [8267] = 8267, + [8268] = 8268, + [8269] = 8269, + [8270] = 8268, + [8271] = 8271, + [8272] = 8272, + [8273] = 8273, + [8274] = 8266, + [8275] = 8275, + [8276] = 8267, + [8277] = 8277, + [8278] = 8268, + [8279] = 8269, + [8280] = 8272, + [8281] = 8269, + [8282] = 8275, + [8283] = 8275, + [8284] = 8284, + [8285] = 8285, + [8286] = 8277, + [8287] = 8277, + [8288] = 8288, + [8289] = 8269, + [8290] = 8285, + [8291] = 8271, + [8292] = 8292, + [8293] = 8273, + [8294] = 8267, + [8295] = 8295, + [8296] = 8271, + [8297] = 8284, + [8298] = 8273, + [8299] = 8271, + [8300] = 8271, + [8301] = 8273, + [8302] = 8273, + [8303] = 8275, + [8304] = 8277, + [8305] = 8275, + [8306] = 8306, + [8307] = 8277, + [8308] = 8308, + [8309] = 8309, + [8310] = 8288, + [8311] = 8265, + [8312] = 8312, + [8313] = 8309, + [8314] = 8295, + [8315] = 8306, + [8316] = 8272, + [8317] = 8317, + [8318] = 8284, + [8319] = 8312, + [8320] = 8273, + [8321] = 8266, + [8322] = 8275, + [8323] = 8277, + [8324] = 8324, + [8325] = 8267, + [8326] = 8268, + [8327] = 8269, + [8328] = 8285, + [8329] = 8266, + [8330] = 8284, + [8331] = 8288, + [8332] = 8285, + [8333] = 8317, + [8334] = 8268, + [8335] = 8292, + [8336] = 8312, + [8337] = 8309, + [8338] = 8292, + [8339] = 8265, + [8340] = 8288, + [8341] = 8295, + [8342] = 8317, + [8343] = 8306, + [8344] = 8285, + [8345] = 8272, + [8346] = 8346, + [8347] = 8266, + [8348] = 8312, + [8349] = 8309, + [8350] = 8292, + [8351] = 8267, + [8352] = 8271, + [8353] = 8317, + [8354] = 8268, + [8355] = 8273, + [8356] = 8275, + [8357] = 8277, + [8358] = 8312, + [8359] = 8309, + [8360] = 8265, + [8361] = 8269, + [8362] = 8284, + [8363] = 8317, + [8364] = 8292, + [8365] = 8295, + [8366] = 8288, + [8367] = 8285, + [8368] = 8292, + [8369] = 8312, + [8370] = 8309, + [8371] = 8265, + [8372] = 8295, + [8373] = 8306, + [8374] = 8272, + [8375] = 8317, + [8376] = 8266, + [8377] = 8284, + [8378] = 8267, + [8379] = 8268, + [8380] = 8269, + [8381] = 8272, + [8382] = 8309, + [8383] = 8306, + [8384] = 8265, + [8385] = 8265, + [8386] = 8272, + [8387] = 8317, + [8388] = 8295, + [8389] = 8284, + [8390] = 8266, + [8391] = 8306, + [8392] = 8312, + [8393] = 8309, + [8394] = 8267, + [8395] = 8288, + [8396] = 8268, + [8397] = 8317, + [8398] = 8271, + [8399] = 8269, + [8400] = 8273, + [8401] = 8275, + [8402] = 8277, + [8403] = 8312, + [8404] = 8309, + [8405] = 8272, + [8406] = 8288, + [8407] = 8266, + [8408] = 8317, + [8409] = 8284, + [8410] = 8271, + [8411] = 8312, + [8412] = 8309, + [8413] = 8273, + [8414] = 8317, + [8415] = 8267, + [8416] = 8275, + [8417] = 8277, + [8418] = 8285, + [8419] = 8288, + [8420] = 8308, + [8421] = 8324, + [8422] = 8271, + [8423] = 8273, + [8424] = 8284, + [8425] = 8308, + [8426] = 8324, + [8427] = 8275, + [8428] = 8277, + [8429] = 8308, + [8430] = 8324, + [8431] = 8288, + [8432] = 8285, + [8433] = 8308, + [8434] = 8324, + [8435] = 8292, + [8436] = 8285, + [8437] = 8308, + [8438] = 8324, + [8439] = 8292, + [8440] = 8295, + [8441] = 8308, + [8442] = 8324, + [8443] = 8306, + [8444] = 8272, + [8445] = 8308, + [8446] = 8324, + [8447] = 8266, + [8448] = 8267, + [8449] = 8308, + [8450] = 8324, + [8451] = 8268, + [8452] = 8269, + [8453] = 8324, + [8454] = 8284, + [8455] = 8292, + [8456] = 8288, + [8457] = 8285, + [8458] = 8292, + [8459] = 8265, + [8460] = 8265, + [8461] = 8295, + [8462] = 8306, + [8463] = 8272, + [8464] = 8266, + [8465] = 8267, + [8466] = 8268, + [8467] = 8269, + [8468] = 8295, + [8469] = 8306, + [8470] = 8265, + [8471] = 8295, + [8472] = 8306, + [8473] = 8271, + [8474] = 8312, + [8475] = 8475, + [8476] = 8476, + [8477] = 8475, + [8478] = 8478, + [8479] = 8479, + [8480] = 8480, + [8481] = 8481, + [8482] = 8482, + [8483] = 8483, + [8484] = 8484, + [8485] = 8485, + [8486] = 8486, + [8487] = 8487, + [8488] = 8488, + [8489] = 8489, + [8490] = 8490, + [8491] = 8491, + [8492] = 8492, + [8493] = 8493, + [8494] = 8494, + [8495] = 8480, + [8496] = 8481, + [8497] = 8482, + [8498] = 8498, + [8499] = 8483, + [8500] = 8484, + [8501] = 8485, + [8502] = 8486, + [8503] = 8478, + [8504] = 8480, + [8505] = 8481, + [8506] = 8482, + [8507] = 8483, + [8508] = 8484, + [8509] = 8485, + [8510] = 8486, + [8511] = 8487, + [8512] = 8488, + [8513] = 8489, + [8514] = 8490, + [8515] = 8491, + [8516] = 8487, + [8517] = 8488, + [8518] = 8489, + [8519] = 8490, + [8520] = 8492, + [8521] = 8494, + [8522] = 8491, + [8523] = 8523, + [8524] = 8524, + [8525] = 8525, + [8526] = 8526, + [8527] = 8527, + [8528] = 8528, + [8529] = 8529, + [8530] = 8530, + [8531] = 8531, + [8532] = 8532, + [8533] = 8533, + [8534] = 8534, + [8535] = 8535, + [8536] = 8536, + [8537] = 8537, + [8538] = 8538, + [8539] = 8539, + [8540] = 8540, + [8541] = 8541, + [8542] = 8542, + [8543] = 8543, + [8544] = 8475, + [8545] = 8478, + [8546] = 8480, + [8547] = 8481, + [8548] = 8482, + [8549] = 8483, + [8550] = 8484, + [8551] = 8485, + [8552] = 8486, + [8553] = 8487, + [8554] = 8488, + [8555] = 8489, + [8556] = 8490, + [8557] = 8491, + [8558] = 8491, + [8559] = 8523, + [8560] = 8524, + [8561] = 8525, + [8562] = 8491, + [8563] = 8492, + [8564] = 8478, + [8565] = 8480, + [8566] = 8481, + [8567] = 8482, + [8568] = 8483, + [8569] = 8484, + [8570] = 8485, + [8571] = 8486, + [8572] = 8487, + [8573] = 8488, + [8574] = 8489, + [8575] = 8490, + [8576] = 8491, + [8577] = 8491, + [8578] = 8526, + [8579] = 8478, + [8580] = 8480, + [8581] = 8481, + [8582] = 8482, + [8583] = 8483, + [8584] = 8484, + [8585] = 8485, + [8586] = 8486, + [8587] = 8487, + [8588] = 8488, + [8589] = 8489, + [8590] = 8490, + [8591] = 8491, + [8592] = 8527, + [8593] = 8528, + [8594] = 8529, + [8595] = 8530, + [8596] = 8531, + [8597] = 8532, + [8598] = 8533, + [8599] = 8534, + [8600] = 8491, + [8601] = 8494, + [8602] = 8523, + [8603] = 8524, + [8604] = 8525, + [8605] = 8526, + [8606] = 8527, + [8607] = 8528, + [8608] = 8529, + [8609] = 8530, + [8610] = 8531, + [8611] = 8532, + [8612] = 8533, + [8613] = 8534, + [8614] = 8480, + [8615] = 8535, + [8616] = 8535, + [8617] = 8536, + [8618] = 8537, + [8619] = 8538, + [8620] = 8539, + [8621] = 8540, + [8622] = 8541, + [8623] = 8542, + [8624] = 8543, + [8625] = 8475, + [8626] = 8478, + [8627] = 8492, + [8628] = 8480, + [8629] = 8481, + [8630] = 8482, + [8631] = 8483, + [8632] = 8484, + [8633] = 8485, + [8634] = 8486, + [8635] = 8487, + [8636] = 8488, + [8637] = 8489, + [8638] = 8490, + [8639] = 8491, + [8640] = 8476, + [8641] = 8491, + [8642] = 8492, + [8643] = 8478, + [8644] = 8480, + [8645] = 8481, + [8646] = 8482, + [8647] = 8483, + [8648] = 8484, + [8649] = 8485, + [8650] = 8486, + [8651] = 8487, + [8652] = 8488, + [8653] = 8489, + [8654] = 8490, + [8655] = 8491, + [8656] = 8491, + [8657] = 8491, + [8658] = 8481, + [8659] = 8491, + [8660] = 8478, + [8661] = 8661, + [8662] = 8494, + [8663] = 8663, + [8664] = 8523, + [8665] = 8524, + [8666] = 8525, + [8667] = 8526, + [8668] = 8527, + [8669] = 8528, + [8670] = 8529, + [8671] = 8530, + [8672] = 8531, + [8673] = 8532, + [8674] = 8533, + [8675] = 8534, + [8676] = 8535, + [8677] = 8536, + [8678] = 8537, + [8679] = 8538, + [8680] = 8539, + [8681] = 8540, + [8682] = 8541, + [8683] = 8542, + [8684] = 8543, + [8685] = 8475, + [8686] = 8478, + [8687] = 8482, + [8688] = 8480, + [8689] = 8481, + [8690] = 8482, + [8691] = 8483, + [8692] = 8484, + [8693] = 8485, + [8694] = 8486, + [8695] = 8487, + [8696] = 8488, + [8697] = 8489, + [8698] = 8490, + [8699] = 8491, + [8700] = 8491, + [8701] = 8492, + [8702] = 8491, + [8703] = 8491, + [8704] = 8704, + [8705] = 8494, + [8706] = 8523, + [8707] = 8524, + [8708] = 8525, + [8709] = 8526, + [8710] = 8527, + [8711] = 8528, + [8712] = 8529, + [8713] = 8530, + [8714] = 8531, + [8715] = 8532, + [8716] = 8533, + [8717] = 8534, + [8718] = 8535, + [8719] = 8536, + [8720] = 8537, + [8721] = 8538, + [8722] = 8483, + [8723] = 8539, + [8724] = 8540, + [8725] = 8541, + [8726] = 8542, + [8727] = 8543, + [8728] = 8475, + [8729] = 8478, + [8730] = 8730, + [8731] = 8480, + [8732] = 8481, + [8733] = 8482, + [8734] = 8483, + [8735] = 8484, + [8736] = 8485, + [8737] = 8486, + [8738] = 8487, + [8739] = 8488, + [8740] = 8489, + [8741] = 8490, + [8742] = 8742, + [8743] = 8743, + [8744] = 8492, + [8745] = 8491, + [8746] = 8494, + [8747] = 8484, + [8748] = 8523, + [8749] = 8524, + [8750] = 8525, + [8751] = 8526, + [8752] = 8527, + [8753] = 8528, + [8754] = 8529, + [8755] = 8530, + [8756] = 8531, + [8757] = 8532, + [8758] = 8533, + [8759] = 8534, + [8760] = 8480, + [8761] = 8535, + [8762] = 8536, + [8763] = 8478, + [8764] = 8537, + [8765] = 8538, + [8766] = 8539, + [8767] = 8481, + [8768] = 8482, + [8769] = 8483, + [8770] = 8484, + [8771] = 8539, + [8772] = 8540, + [8773] = 8541, + [8774] = 8542, + [8775] = 8543, + [8776] = 8475, + [8777] = 8478, + [8778] = 8480, + [8779] = 8481, + [8780] = 8482, + [8781] = 8483, + [8782] = 8484, + [8783] = 8485, + [8784] = 8486, + [8785] = 8487, + [8786] = 8488, + [8787] = 8489, + [8788] = 8490, + [8789] = 8480, + [8790] = 8481, + [8791] = 8482, + [8792] = 8483, + [8793] = 8492, + [8794] = 8491, + [8795] = 8484, + [8796] = 8485, + [8797] = 8486, + [8798] = 8487, + [8799] = 8488, + [8800] = 8489, + [8801] = 8490, + [8802] = 8491, + [8803] = 8494, + [8804] = 8485, + [8805] = 8523, + [8806] = 8524, + [8807] = 8525, + [8808] = 8526, + [8809] = 8527, + [8810] = 8528, + [8811] = 8529, + [8812] = 8530, + [8813] = 8531, + [8814] = 8532, + [8815] = 8533, + [8816] = 8534, + [8817] = 8535, + [8818] = 8536, + [8819] = 8537, + [8820] = 8538, + [8821] = 8540, + [8822] = 8539, + [8823] = 8540, + [8824] = 8541, + [8825] = 8542, + [8826] = 8543, + [8827] = 8475, + [8828] = 8486, + [8829] = 8478, + [8830] = 8830, + [8831] = 8480, + [8832] = 8481, + [8833] = 8482, + [8834] = 8483, + [8835] = 8484, + [8836] = 8485, + [8837] = 8486, + [8838] = 8487, + [8839] = 8488, + [8840] = 8489, + [8841] = 8490, + [8842] = 8487, + [8843] = 8488, + [8844] = 8492, + [8845] = 8491, + [8846] = 8541, + [8847] = 8489, + [8848] = 8494, + [8849] = 8523, + [8850] = 8524, + [8851] = 8525, + [8852] = 8526, + [8853] = 8527, + [8854] = 8528, + [8855] = 8529, + [8856] = 8530, + [8857] = 8531, + [8858] = 8532, + [8859] = 8533, + [8860] = 8534, + [8861] = 8490, + [8862] = 8535, + [8863] = 8536, + [8864] = 8537, + [8865] = 8538, + [8866] = 8491, + [8867] = 8542, + [8868] = 8539, + [8869] = 8540, + [8870] = 8541, + [8871] = 8542, + [8872] = 8543, + [8873] = 8475, + [8874] = 8478, + [8875] = 8480, + [8876] = 8481, + [8877] = 8482, + [8878] = 8483, + [8879] = 8484, + [8880] = 8485, + [8881] = 8486, + [8882] = 8487, + [8883] = 8488, + [8884] = 8489, + [8885] = 8490, + [8886] = 8492, + [8887] = 8491, + [8888] = 8543, + [8889] = 8491, + [8890] = 8494, + [8891] = 8475, + [8892] = 8523, + [8893] = 8524, + [8894] = 8525, + [8895] = 8526, + [8896] = 8527, + [8897] = 8528, + [8898] = 8529, + [8899] = 8530, + [8900] = 8531, + [8901] = 8532, + [8902] = 8533, + [8903] = 8534, + [8904] = 8475, + [8905] = 8535, + [8906] = 8536, + [8907] = 8537, + [8908] = 8538, + [8909] = 8478, + [8910] = 8910, + [8911] = 8539, + [8912] = 8540, + [8913] = 8541, + [8914] = 8542, + [8915] = 8543, + [8916] = 8475, + [8917] = 8478, + [8918] = 8480, + [8919] = 8481, + [8920] = 8482, + [8921] = 8483, + [8922] = 8484, + [8923] = 8485, + [8924] = 8486, + [8925] = 8487, + [8926] = 8488, + [8927] = 8489, + [8928] = 8490, + [8929] = 8478, + [8930] = 8492, + [8931] = 8491, + [8932] = 8494, + [8933] = 8523, + [8934] = 8524, + [8935] = 8525, + [8936] = 8526, + [8937] = 8527, + [8938] = 8528, + [8939] = 8529, + [8940] = 8530, + [8941] = 8531, + [8942] = 8532, + [8943] = 8533, + [8944] = 8534, + [8945] = 8535, + [8946] = 8536, + [8947] = 8537, + [8948] = 8538, + [8949] = 8480, + [8950] = 8481, + [8951] = 8482, + [8952] = 8483, + [8953] = 8484, + [8954] = 8485, + [8955] = 8539, + [8956] = 8540, + [8957] = 8486, + [8958] = 8541, + [8959] = 8542, + [8960] = 8543, + [8961] = 8475, + [8962] = 8487, + [8963] = 8478, + [8964] = 8488, + [8965] = 8480, + [8966] = 8481, + [8967] = 8482, + [8968] = 8483, + [8969] = 8484, + [8970] = 8485, + [8971] = 8486, + [8972] = 8487, + [8973] = 8488, + [8974] = 8489, + [8975] = 8490, + [8976] = 8489, + [8977] = 8490, + [8978] = 8491, + [8979] = 8492, + [8980] = 8491, + [8981] = 8475, + [8982] = 8478, + [8983] = 8480, + [8984] = 8481, + [8985] = 8482, + [8986] = 8483, + [8987] = 8484, + [8988] = 8485, + [8989] = 8486, + [8990] = 8487, + [8991] = 8488, + [8992] = 8489, + [8993] = 8490, + [8994] = 8492, + [8995] = 8491, + [8996] = 8475, + [8997] = 8478, + [8998] = 8480, + [8999] = 8481, + [9000] = 8482, + [9001] = 8483, + [9002] = 8484, + [9003] = 8485, + [9004] = 8486, + [9005] = 8487, + [9006] = 8488, + [9007] = 8489, + [9008] = 8490, + [9009] = 8491, + [9010] = 8475, + [9011] = 8478, + [9012] = 8480, + [9013] = 8481, + [9014] = 8482, + [9015] = 8483, + [9016] = 8484, + [9017] = 8485, + [9018] = 8486, + [9019] = 8487, + [9020] = 8488, + [9021] = 8489, + [9022] = 8490, + [9023] = 8491, + [9024] = 8475, + [9025] = 8478, + [9026] = 8480, + [9027] = 8481, + [9028] = 8482, + [9029] = 8483, + [9030] = 8484, + [9031] = 8485, + [9032] = 8486, + [9033] = 8487, + [9034] = 8488, + [9035] = 8489, + [9036] = 8490, + [9037] = 8491, + [9038] = 8475, + [9039] = 8478, + [9040] = 8480, + [9041] = 8481, + [9042] = 8482, + [9043] = 8483, + [9044] = 8484, + [9045] = 8485, + [9046] = 8486, + [9047] = 8487, + [9048] = 8488, + [9049] = 8489, + [9050] = 8490, + [9051] = 8491, + [9052] = 8475, + [9053] = 8478, + [9054] = 8480, + [9055] = 8481, + [9056] = 8482, + [9057] = 8483, + [9058] = 8484, + [9059] = 8485, + [9060] = 8486, + [9061] = 8487, + [9062] = 8488, + [9063] = 8489, + [9064] = 8490, + [9065] = 8491, + [9066] = 8485, + [9067] = 8475, + [9068] = 8478, + [9069] = 8480, + [9070] = 8481, + [9071] = 8482, + [9072] = 8483, + [9073] = 8484, + [9074] = 8485, + [9075] = 8486, + [9076] = 8487, + [9077] = 8488, + [9078] = 8489, + [9079] = 8490, + [9080] = 8491, + [9081] = 8475, + [9082] = 8478, + [9083] = 8480, + [9084] = 8481, + [9085] = 8482, + [9086] = 8483, + [9087] = 8484, + [9088] = 8485, + [9089] = 8486, + [9090] = 8487, + [9091] = 8488, + [9092] = 8489, + [9093] = 8490, + [9094] = 8491, + [9095] = 8475, + [9096] = 8478, + [9097] = 8480, + [9098] = 8481, + [9099] = 8482, + [9100] = 8483, + [9101] = 8484, + [9102] = 8485, + [9103] = 8486, + [9104] = 8487, + [9105] = 8488, + [9106] = 8489, + [9107] = 8490, + [9108] = 8491, + [9109] = 8486, + [9110] = 8475, + [9111] = 8478, + [9112] = 8480, + [9113] = 8481, + [9114] = 8482, + [9115] = 8483, + [9116] = 8484, + [9117] = 8485, + [9118] = 8486, + [9119] = 8487, + [9120] = 8488, + [9121] = 8489, + [9122] = 8490, + [9123] = 8491, + [9124] = 8475, + [9125] = 8478, + [9126] = 8480, + [9127] = 8481, + [9128] = 8482, + [9129] = 8483, + [9130] = 8484, + [9131] = 8485, + [9132] = 8486, + [9133] = 8487, + [9134] = 8488, + [9135] = 8489, + [9136] = 8490, + [9137] = 8491, + [9138] = 8487, + [9139] = 8475, + [9140] = 8478, + [9141] = 8480, + [9142] = 8481, + [9143] = 8482, + [9144] = 8483, + [9145] = 8484, + [9146] = 8485, + [9147] = 8486, + [9148] = 8487, + [9149] = 8488, + [9150] = 8489, + [9151] = 8490, + [9152] = 8491, + [9153] = 8475, + [9154] = 8488, + [9155] = 8478, + [9156] = 8480, + [9157] = 8481, + [9158] = 8482, + [9159] = 8483, + [9160] = 8484, + [9161] = 8485, + [9162] = 8486, + [9163] = 8487, + [9164] = 8488, + [9165] = 8489, + [9166] = 8490, + [9167] = 8491, + [9168] = 8480, + [9169] = 8475, + [9170] = 8481, + [9171] = 8478, + [9172] = 8480, + [9173] = 8481, + [9174] = 8482, + [9175] = 8483, + [9176] = 8484, + [9177] = 8485, + [9178] = 8486, + [9179] = 8487, + [9180] = 8488, + [9181] = 8489, + [9182] = 8490, + [9183] = 8491, + [9184] = 8482, + [9185] = 8475, + [9186] = 8483, + [9187] = 8478, + [9188] = 8480, + [9189] = 8481, + [9190] = 8482, + [9191] = 8483, + [9192] = 8484, + [9193] = 8485, + [9194] = 8486, + [9195] = 8487, + [9196] = 8488, + [9197] = 8489, + [9198] = 8490, + [9199] = 8491, + [9200] = 8484, + [9201] = 8475, + [9202] = 8485, + [9203] = 8478, + [9204] = 8480, + [9205] = 8481, + [9206] = 8482, + [9207] = 8483, + [9208] = 8484, + [9209] = 8485, + [9210] = 8486, + [9211] = 8487, + [9212] = 8488, + [9213] = 8489, + [9214] = 8490, + [9215] = 8491, + [9216] = 8486, + [9217] = 8475, + [9218] = 8487, + [9219] = 8478, + [9220] = 8480, + [9221] = 8481, + [9222] = 8482, + [9223] = 8483, + [9224] = 8484, + [9225] = 8485, + [9226] = 8486, + [9227] = 8487, + [9228] = 8488, + [9229] = 8489, + [9230] = 8490, + [9231] = 8491, + [9232] = 8488, + [9233] = 8475, + [9234] = 8478, + [9235] = 8480, + [9236] = 8481, + [9237] = 8482, + [9238] = 8483, + [9239] = 8484, + [9240] = 8485, + [9241] = 8486, + [9242] = 8487, + [9243] = 8488, + [9244] = 8489, + [9245] = 8490, + [9246] = 8491, + [9247] = 8489, + [9248] = 8475, + [9249] = 8490, + [9250] = 8478, + [9251] = 8480, + [9252] = 8481, + [9253] = 8482, + [9254] = 8483, + [9255] = 8484, + [9256] = 8485, + [9257] = 8486, + [9258] = 8487, + [9259] = 8488, + [9260] = 8489, + [9261] = 8490, + [9262] = 8491, + [9263] = 8491, + [9264] = 8475, + [9265] = 8478, + [9266] = 8480, + [9267] = 8481, + [9268] = 8482, + [9269] = 8483, + [9270] = 8484, + [9271] = 8485, + [9272] = 8486, + [9273] = 8487, + [9274] = 8488, + [9275] = 8489, + [9276] = 8490, + [9277] = 8491, + [9278] = 8475, + [9279] = 8478, + [9280] = 8480, + [9281] = 8481, + [9282] = 8482, + [9283] = 8483, + [9284] = 8484, + [9285] = 8485, + [9286] = 8486, + [9287] = 8487, + [9288] = 8488, + [9289] = 8489, + [9290] = 8490, + [9291] = 8491, + [9292] = 8475, + [9293] = 8478, + [9294] = 8480, + [9295] = 8481, + [9296] = 8482, + [9297] = 8483, + [9298] = 8484, + [9299] = 8485, + [9300] = 8486, + [9301] = 8487, + [9302] = 8488, + [9303] = 8489, + [9304] = 8490, + [9305] = 8491, + [9306] = 8475, + [9307] = 8478, + [9308] = 8480, + [9309] = 8481, + [9310] = 8482, + [9311] = 8483, + [9312] = 8484, + [9313] = 8485, + [9314] = 8486, + [9315] = 8487, + [9316] = 8488, + [9317] = 8489, + [9318] = 8490, + [9319] = 8491, + [9320] = 8475, + [9321] = 8478, + [9322] = 8480, + [9323] = 8481, + [9324] = 8482, + [9325] = 8483, + [9326] = 8484, + [9327] = 8485, + [9328] = 8486, + [9329] = 8487, + [9330] = 8488, + [9331] = 8489, + [9332] = 8490, + [9333] = 8491, + [9334] = 8475, + [9335] = 8478, + [9336] = 8480, + [9337] = 8481, + [9338] = 8482, + [9339] = 8483, + [9340] = 8484, + [9341] = 8485, + [9342] = 8486, + [9343] = 8487, + [9344] = 8488, + [9345] = 8489, + [9346] = 8490, + [9347] = 8491, + [9348] = 8475, + [9349] = 8478, + [9350] = 8480, + [9351] = 8481, + [9352] = 8482, + [9353] = 8483, + [9354] = 8484, + [9355] = 8485, + [9356] = 8486, + [9357] = 8487, + [9358] = 8488, + [9359] = 8489, + [9360] = 8490, + [9361] = 8491, + [9362] = 8489, + [9363] = 8476, + [9364] = 9364, + [9365] = 8478, + [9366] = 8480, + [9367] = 8481, + [9368] = 8482, + [9369] = 8483, + [9370] = 8484, + [9371] = 8485, + [9372] = 8486, + [9373] = 8487, + [9374] = 8488, + [9375] = 8489, + [9376] = 8490, + [9377] = 8491, + [9378] = 8475, + [9379] = 8490, + [9380] = 8478, + [9381] = 8480, + [9382] = 8481, + [9383] = 8482, + [9384] = 8483, + [9385] = 8484, + [9386] = 8485, + [9387] = 8486, + [9388] = 8487, + [9389] = 8488, + [9390] = 8489, + [9391] = 8490, + [9392] = 8491, + [9393] = 8475, + [9394] = 8478, + [9395] = 8480, + [9396] = 8481, + [9397] = 8482, + [9398] = 8483, + [9399] = 8484, + [9400] = 8485, + [9401] = 8486, + [9402] = 8487, + [9403] = 8488, + [9404] = 8489, + [9405] = 8490, + [9406] = 8491, + [9407] = 8475, + [9408] = 8478, + [9409] = 8480, + [9410] = 8481, + [9411] = 8482, + [9412] = 8483, + [9413] = 8484, + [9414] = 8485, + [9415] = 8486, + [9416] = 8487, + [9417] = 8488, + [9418] = 8489, + [9419] = 8490, + [9420] = 8491, + [9421] = 8475, + [9422] = 8478, + [9423] = 8480, + [9424] = 8481, + [9425] = 8482, + [9426] = 8483, + [9427] = 8484, + [9428] = 8485, + [9429] = 8486, + [9430] = 8487, + [9431] = 8488, + [9432] = 8489, + [9433] = 8490, + [9434] = 8491, + [9435] = 8475, + [9436] = 8478, + [9437] = 8480, + [9438] = 8481, + [9439] = 8482, + [9440] = 8483, + [9441] = 8484, + [9442] = 8485, + [9443] = 8486, + [9444] = 8487, + [9445] = 8488, + [9446] = 8489, + [9447] = 8490, + [9448] = 8491, + [9449] = 8475, + [9450] = 8478, + [9451] = 8480, + [9452] = 8481, + [9453] = 8482, + [9454] = 8483, + [9455] = 8484, + [9456] = 8485, + [9457] = 8486, + [9458] = 8487, + [9459] = 8488, + [9460] = 8489, + [9461] = 8490, + [9462] = 8491, + [9463] = 8475, + [9464] = 8491, + [9465] = 8478, + [9466] = 8480, + [9467] = 8481, + [9468] = 8482, + [9469] = 8483, + [9470] = 8484, + [9471] = 8485, + [9472] = 8486, + [9473] = 8487, + [9474] = 8488, + [9475] = 8489, + [9476] = 8490, + [9477] = 8491, + [9478] = 8475, + [9479] = 8478, + [9480] = 8480, + [9481] = 8481, + [9482] = 8482, + [9483] = 8483, + [9484] = 8484, + [9485] = 8485, + [9486] = 8486, + [9487] = 8487, + [9488] = 8488, + [9489] = 8489, + [9490] = 8490, + [9491] = 8491, + [9492] = 8475, + [9493] = 8478, + [9494] = 8480, + [9495] = 8481, + [9496] = 8482, + [9497] = 8483, + [9498] = 8484, + [9499] = 8485, + [9500] = 8486, + [9501] = 8487, + [9502] = 8488, + [9503] = 8489, + [9504] = 8490, + [9505] = 8491, + [9506] = 8475, + [9507] = 8478, + [9508] = 8480, + [9509] = 8481, + [9510] = 8482, + [9511] = 8483, + [9512] = 8484, + [9513] = 8485, + [9514] = 8486, + [9515] = 8487, + [9516] = 8488, + [9517] = 8489, + [9518] = 8490, + [9519] = 8491, + [9520] = 8475, + [9521] = 8478, + [9522] = 8480, + [9523] = 8481, + [9524] = 8482, + [9525] = 8483, + [9526] = 8484, + [9527] = 8485, + [9528] = 8486, + [9529] = 8487, + [9530] = 8488, + [9531] = 8489, + [9532] = 8490, + [9533] = 8491, + [9534] = 8475, + [9535] = 8478, + [9536] = 8480, + [9537] = 8481, + [9538] = 8482, + [9539] = 8483, + [9540] = 8484, + [9541] = 8485, + [9542] = 8486, + [9543] = 8487, + [9544] = 8488, + [9545] = 8489, + [9546] = 8490, + [9547] = 8491, + [9548] = 8475, + [9549] = 8478, + [9550] = 8480, + [9551] = 8481, + [9552] = 8482, + [9553] = 8483, + [9554] = 8484, + [9555] = 8485, + [9556] = 8486, + [9557] = 8487, + [9558] = 8488, + [9559] = 8489, + [9560] = 8490, + [9561] = 8491, + [9562] = 8475, + [9563] = 8478, + [9564] = 8480, + [9565] = 8481, + [9566] = 8482, + [9567] = 8483, + [9568] = 8484, + [9569] = 8485, + [9570] = 8486, + [9571] = 8487, + [9572] = 8488, + [9573] = 8489, + [9574] = 8490, + [9575] = 8491, + [9576] = 8475, + [9577] = 8478, + [9578] = 8480, + [9579] = 8481, + [9580] = 8482, + [9581] = 8483, + [9582] = 8484, + [9583] = 8485, + [9584] = 8486, + [9585] = 8487, + [9586] = 8488, + [9587] = 8489, + [9588] = 8490, + [9589] = 8491, + [9590] = 8475, + [9591] = 8478, + [9592] = 8480, + [9593] = 8481, + [9594] = 8482, + [9595] = 8483, + [9596] = 8484, + [9597] = 8485, + [9598] = 8486, + [9599] = 8487, + [9600] = 8488, + [9601] = 8489, + [9602] = 8490, + [9603] = 8491, + [9604] = 8475, + [9605] = 8478, + [9606] = 8480, + [9607] = 8481, + [9608] = 8482, + [9609] = 8483, + [9610] = 8484, + [9611] = 8485, + [9612] = 8486, + [9613] = 8487, + [9614] = 8488, + [9615] = 8489, + [9616] = 8490, + [9617] = 8491, + [9618] = 8475, + [9619] = 8478, + [9620] = 8480, + [9621] = 8481, + [9622] = 8482, + [9623] = 8483, + [9624] = 8484, + [9625] = 8485, + [9626] = 8486, + [9627] = 8487, + [9628] = 8488, + [9629] = 8489, + [9630] = 8490, + [9631] = 8491, + [9632] = 8475, + [9633] = 8478, + [9634] = 8480, + [9635] = 8481, + [9636] = 8482, + [9637] = 8483, + [9638] = 8484, + [9639] = 8485, + [9640] = 8486, + [9641] = 8487, + [9642] = 8488, + [9643] = 8489, + [9644] = 8490, + [9645] = 8491, + [9646] = 8475, + [9647] = 8478, + [9648] = 8480, + [9649] = 8481, + [9650] = 8482, + [9651] = 8483, + [9652] = 8484, + [9653] = 8485, + [9654] = 8486, + [9655] = 8487, + [9656] = 8488, + [9657] = 8489, + [9658] = 8490, + [9659] = 8491, + [9660] = 8475, + [9661] = 8478, + [9662] = 8480, + [9663] = 8481, + [9664] = 8482, + [9665] = 8483, + [9666] = 8484, + [9667] = 8485, + [9668] = 8486, + [9669] = 8487, + [9670] = 8488, + [9671] = 8489, + [9672] = 8490, + [9673] = 8491, + [9674] = 8475, + [9675] = 8478, + [9676] = 8480, + [9677] = 8481, + [9678] = 8482, + [9679] = 8483, + [9680] = 8484, + [9681] = 8485, + [9682] = 8486, + [9683] = 8487, + [9684] = 8488, + [9685] = 8489, + [9686] = 8490, + [9687] = 8491, + [9688] = 8475, + [9689] = 8478, + [9690] = 8480, + [9691] = 8481, + [9692] = 8482, + [9693] = 8483, + [9694] = 8484, + [9695] = 8485, + [9696] = 8486, + [9697] = 8487, + [9698] = 8488, + [9699] = 8489, + [9700] = 8490, + [9701] = 8491, + [9702] = 8475, + [9703] = 8478, + [9704] = 8480, + [9705] = 8481, + [9706] = 8482, + [9707] = 8483, + [9708] = 8484, + [9709] = 8485, + [9710] = 8486, + [9711] = 8487, + [9712] = 8488, + [9713] = 8489, + [9714] = 8490, + [9715] = 8491, + [9716] = 8475, + [9717] = 8478, + [9718] = 8480, + [9719] = 8481, + [9720] = 8482, + [9721] = 8483, + [9722] = 8484, + [9723] = 8485, + [9724] = 8486, + [9725] = 8487, + [9726] = 8488, + [9727] = 8489, + [9728] = 8490, + [9729] = 8491, + [9730] = 8475, + [9731] = 8478, + [9732] = 8480, + [9733] = 8481, + [9734] = 8482, + [9735] = 8483, + [9736] = 8484, + [9737] = 8485, + [9738] = 8486, + [9739] = 8487, + [9740] = 8488, + [9741] = 8489, + [9742] = 8490, + [9743] = 8491, + [9744] = 8475, + [9745] = 8478, + [9746] = 8480, + [9747] = 8481, + [9748] = 8482, + [9749] = 8483, + [9750] = 8484, + [9751] = 8485, + [9752] = 8486, + [9753] = 8487, + [9754] = 8488, + [9755] = 8489, + [9756] = 8490, + [9757] = 8491, + [9758] = 9758, + [9759] = 8475, + [9760] = 8478, + [9761] = 8480, + [9762] = 8481, + [9763] = 8482, + [9764] = 8483, + [9765] = 8484, + [9766] = 8485, + [9767] = 8486, + [9768] = 8487, + [9769] = 8488, + [9770] = 8489, + [9771] = 8490, + [9772] = 8491, + [9773] = 8475, + [9774] = 8478, + [9775] = 8480, + [9776] = 8481, + [9777] = 8482, + [9778] = 8483, + [9779] = 8484, + [9780] = 8485, + [9781] = 8486, + [9782] = 8487, + [9783] = 8488, + [9784] = 8489, + [9785] = 8490, + [9786] = 8491, + [9787] = 8475, + [9788] = 8478, + [9789] = 8480, + [9790] = 8481, + [9791] = 8482, + [9792] = 8483, + [9793] = 8484, + [9794] = 8485, + [9795] = 8486, + [9796] = 8487, + [9797] = 8488, + [9798] = 8489, + [9799] = 8490, + [9800] = 8491, + [9801] = 8475, + [9802] = 8478, + [9803] = 8480, + [9804] = 8481, + [9805] = 8482, + [9806] = 8483, + [9807] = 8484, + [9808] = 8485, + [9809] = 8486, + [9810] = 8487, + [9811] = 8488, + [9812] = 8489, + [9813] = 8490, + [9814] = 8491, + [9815] = 8475, + [9816] = 8478, + [9817] = 8480, + [9818] = 8481, + [9819] = 8482, + [9820] = 8483, + [9821] = 8484, + [9822] = 8485, + [9823] = 8486, + [9824] = 8487, + [9825] = 8488, + [9826] = 8489, + [9827] = 8490, + [9828] = 8491, + [9829] = 8475, + [9830] = 8478, + [9831] = 8480, + [9832] = 8481, + [9833] = 8482, + [9834] = 8483, + [9835] = 8484, + [9836] = 8485, + [9837] = 8486, + [9838] = 8487, + [9839] = 8488, + [9840] = 8489, + [9841] = 8490, + [9842] = 8491, + [9843] = 8475, + [9844] = 8478, + [9845] = 8480, + [9846] = 8481, + [9847] = 8482, + [9848] = 8483, + [9849] = 8484, + [9850] = 8485, + [9851] = 8486, + [9852] = 8487, + [9853] = 8488, + [9854] = 8489, + [9855] = 8490, + [9856] = 8491, + [9857] = 9857, + [9858] = 8475, + [9859] = 8478, + [9860] = 8480, + [9861] = 8481, + [9862] = 8482, + [9863] = 8483, + [9864] = 8484, + [9865] = 8485, + [9866] = 8486, + [9867] = 8487, + [9868] = 8488, + [9869] = 8489, + [9870] = 8490, + [9871] = 8491, + [9872] = 8475, + [9873] = 8537, + [9874] = 8478, + [9875] = 8480, + [9876] = 8481, + [9877] = 8482, + [9878] = 8483, + [9879] = 8484, + [9880] = 8485, + [9881] = 8486, + [9882] = 8487, + [9883] = 8488, + [9884] = 8489, + [9885] = 8490, + [9886] = 8491, + [9887] = 8491, + [9888] = 8491, + [9889] = 8491, + [9890] = 8491, + [9891] = 8491, + [9892] = 8491, + [9893] = 8491, + [9894] = 8491, + [9895] = 8475, + [9896] = 8478, + [9897] = 8480, + [9898] = 8481, + [9899] = 8482, + [9900] = 8483, + [9901] = 8484, + [9902] = 8485, + [9903] = 8486, + [9904] = 8487, + [9905] = 8488, + [9906] = 8489, + [9907] = 8490, + [9908] = 8478, + [9909] = 8538, + [9910] = 8492, + [9911] = 8476, + [9912] = 8475, + [9913] = 8492, + [9914] = 8475, + [9915] = 8475, + [9916] = 8491, + [9917] = 8492, + [9918] = 8491, + [9919] = 8536, + [9920] = 779, + [9921] = 9921, + [9922] = 9922, + [9923] = 8475, + [9924] = 8492, + [9925] = 8491, + [9926] = 8475, + [9927] = 8492, + [9928] = 8475, + [9929] = 8475, + [9930] = 8478, + [9931] = 8663, + [9932] = 8663, + [9933] = 8663, + [9934] = 8491, + [9935] = 8663, + [9936] = 8663, + [9937] = 8663, + [9938] = 8663, + [9939] = 8663, + [9940] = 8663, + [9941] = 8663, + [9942] = 8663, + [9943] = 8663, + [9944] = 8663, + [9945] = 8663, + [9946] = 8663, + [9947] = 8663, + [9948] = 8663, + [9949] = 8663, + [9950] = 8663, + [9951] = 8663, + [9952] = 8663, + [9953] = 8663, + [9954] = 8663, + [9955] = 8663, + [9956] = 8663, + [9957] = 8663, + [9958] = 8663, + [9959] = 8663, + [9960] = 8663, + [9961] = 8663, + [9962] = 8663, + [9963] = 8663, + [9964] = 8663, + [9965] = 8663, + [9966] = 8663, + [9967] = 8663, + [9968] = 8663, + [9969] = 8663, + [9970] = 8663, + [9971] = 8663, + [9972] = 8663, + [9973] = 8663, + [9974] = 8663, + [9975] = 8663, + [9976] = 8663, + [9977] = 8663, + [9978] = 8663, + [9979] = 8663, + [9980] = 8663, + [9981] = 8663, + [9982] = 8663, + [9983] = 8663, + [9984] = 8663, + [9985] = 8663, + [9986] = 8663, + [9987] = 8663, + [9988] = 8663, + [9989] = 8663, + [9990] = 8663, + [9991] = 8663, + [9992] = 8663, + [9993] = 9758, + [9994] = 8742, + [9995] = 9364, + [9996] = 8704, + [9997] = 9758, + [9998] = 8742, + [9999] = 9364, + [10000] = 8704, + [10001] = 9758, + [10002] = 8742, + [10003] = 9364, + [10004] = 8704, + [10005] = 9758, + [10006] = 8742, + [10007] = 9364, + [10008] = 8704, + [10009] = 9758, + [10010] = 8742, + [10011] = 9364, + [10012] = 8704, + [10013] = 9758, + [10014] = 8742, + [10015] = 9364, + [10016] = 8704, + [10017] = 9758, + [10018] = 8742, + [10019] = 9364, + [10020] = 8704, + [10021] = 9758, + [10022] = 8742, + [10023] = 9364, + [10024] = 8704, + [10025] = 9758, + [10026] = 9364, + [10027] = 8476, + [10028] = 8476, + [10029] = 8476, + [10030] = 8476, + [10031] = 8476, + [10032] = 8476, + [10033] = 8475, + [10034] = 424, + [10035] = 431, + [10036] = 779, + [10037] = 425, + [10038] = 836, + [10039] = 426, + [10040] = 425, + [10041] = 424, + [10042] = 426, + [10043] = 836, + [10044] = 431, + [10045] = 426, + [10046] = 423, + [10047] = 425, + [10048] = 431, + [10049] = 424, + [10050] = 422, + [10051] = 417, + [10052] = 380, + [10053] = 380, + [10054] = 453, + [10055] = 398, + [10056] = 385, + [10057] = 384, + [10058] = 386, + [10059] = 384, + [10060] = 431, + [10061] = 426, + [10062] = 433, + [10063] = 422, + [10064] = 423, + [10065] = 453, + [10066] = 398, + [10067] = 424, + [10068] = 385, + [10069] = 386, + [10070] = 432, + [10071] = 417, + [10072] = 425, + [10073] = 435, + [10074] = 435, + [10075] = 434, + [10076] = 432, + [10077] = 434, + [10078] = 428, + [10079] = 433, + [10080] = 402, + [10081] = 414, + [10082] = 421, + [10083] = 400, + [10084] = 430, + [10085] = 452, + [10086] = 427, + [10087] = 451, + [10088] = 402, + [10089] = 409, + [10090] = 451, + [10091] = 430, + [10092] = 380, + [10093] = 428, + [10094] = 421, + [10095] = 412, + [10096] = 404, + [10097] = 406, + [10098] = 465, + [10099] = 407, + [10100] = 408, + [10101] = 434, + [10102] = 401, + [10103] = 435, + [10104] = 437, + [10105] = 452, + [10106] = 410, + [10107] = 427, + [10108] = 377, + [10109] = 399, + [10110] = 413, + [10111] = 405, + [10112] = 414, + [10113] = 429, + [10114] = 411, + [10115] = 400, + [10116] = 404, + [10117] = 426, + [10118] = 465, + [10119] = 423, + [10120] = 405, + [10121] = 406, + [10122] = 407, + [10123] = 408, + [10124] = 453, + [10125] = 409, + [10126] = 398, + [10127] = 410, + [10128] = 411, + [10129] = 412, + [10130] = 413, + [10131] = 437, + [10132] = 434, + [10133] = 435, + [10134] = 385, + [10135] = 431, + [10136] = 386, + [10137] = 417, + [10138] = 424, + [10139] = 384, + [10140] = 399, + [10141] = 380, + [10142] = 391, + [10143] = 401, + [10144] = 429, + [10145] = 425, + [10146] = 422, + [10147] = 455, + [10148] = 458, + [10149] = 384, + [10150] = 453, + [10151] = 398, + [10152] = 432, + [10153] = 446, + [10154] = 463, + [10155] = 448, + [10156] = 417, + [10157] = 433, + [10158] = 386, + [10159] = 453, + [10160] = 397, + [10161] = 423, + [10162] = 422, + [10163] = 424, + [10164] = 425, + [10165] = 385, + [10166] = 426, + [10167] = 450, + [10168] = 431, + [10169] = 398, + [10170] = 457, + [10171] = 404, + [10172] = 381, + [10173] = 437, + [10174] = 398, + [10175] = 408, + [10176] = 421, + [10177] = 405, + [10178] = 412, + [10179] = 434, + [10180] = 453, + [10181] = 410, + [10182] = 465, + [10183] = 430, + [10184] = 401, + [10185] = 413, + [10186] = 411, + [10187] = 434, + [10188] = 435, + [10189] = 429, + [10190] = 432, + [10191] = 414, + [10192] = 409, + [10193] = 398, + [10194] = 406, + [10195] = 400, + [10196] = 407, + [10197] = 451, + [10198] = 427, + [10199] = 453, + [10200] = 399, + [10201] = 402, + [10202] = 428, + [10203] = 452, + [10204] = 433, + [10205] = 435, + [10206] = 405, + [10207] = 414, + [10208] = 451, + [10209] = 460, + [10210] = 421, + [10211] = 399, + [10212] = 429, + [10213] = 401, + [10214] = 465, + [10215] = 404, + [10216] = 406, + [10217] = 407, + [10218] = 408, + [10219] = 409, + [10220] = 410, + [10221] = 411, + [10222] = 412, + [10223] = 413, + [10224] = 437, + [10225] = 402, + [10226] = 434, + [10227] = 451, + [10228] = 435, + [10229] = 428, + [10230] = 452, + [10231] = 434, + [10232] = 435, + [10233] = 427, + [10234] = 391, + [10235] = 430, + [10236] = 400, + [10237] = 399, + [10238] = 404, + [10239] = 451, + [10240] = 465, + [10241] = 404, + [10242] = 451, + [10243] = 405, + [10244] = 406, + [10245] = 437, + [10246] = 407, + [10247] = 461, + [10248] = 408, + [10249] = 409, + [10250] = 410, + [10251] = 395, + [10252] = 415, + [10253] = 405, + [10254] = 401, + [10255] = 465, + [10256] = 404, + [10257] = 405, + [10258] = 406, + [10259] = 407, + [10260] = 408, + [10261] = 409, + [10262] = 410, + [10263] = 411, + [10264] = 412, + [10265] = 413, + [10266] = 437, + [10267] = 399, + [10268] = 411, + [10269] = 412, + [10270] = 416, + [10271] = 413, + [10272] = 406, + [10273] = 465, + [10274] = 407, + [10275] = 434, + [10276] = 408, + [10277] = 409, + [10278] = 435, + [10279] = 410, + [10280] = 411, + [10281] = 429, + [10282] = 412, + [10283] = 413, + [10284] = 399, + [10285] = 429, + [10286] = 401, + [10287] = 401, + [10288] = 429, + [10289] = 437, + [10290] = 10290, + [10291] = 10290, + [10292] = 10290, + [10293] = 381, + [10294] = 10290, + [10295] = 10290, + [10296] = 10290, + [10297] = 3530, + [10298] = 10290, + [10299] = 10290, + [10300] = 10290, + [10301] = 10290, + [10302] = 435, + [10303] = 434, + [10304] = 3530, + [10305] = 404, + [10306] = 10306, + [10307] = 3898, + [10308] = 10308, + [10309] = 3949, + [10310] = 406, + [10311] = 407, + [10312] = 408, + [10313] = 3952, + [10314] = 409, + [10315] = 410, + [10316] = 411, + [10317] = 412, + [10318] = 413, + [10319] = 3872, + [10320] = 3851, + [10321] = 465, + [10322] = 10308, + [10323] = 10308, + [10324] = 10306, + [10325] = 10306, + [10326] = 405, + [10327] = 399, + [10328] = 437, + [10329] = 401, + [10330] = 380, + [10331] = 385, + [10332] = 384, + [10333] = 425, + [10334] = 426, + [10335] = 3898, + [10336] = 408, + [10337] = 437, + [10338] = 410, + [10339] = 404, + [10340] = 411, + [10341] = 407, + [10342] = 431, + [10343] = 3949, + [10344] = 398, + [10345] = 424, + [10346] = 3952, + [10347] = 417, + [10348] = 412, + [10349] = 413, + [10350] = 423, + [10351] = 409, + [10352] = 3872, + [10353] = 3851, + [10354] = 406, + [10355] = 405, + [10356] = 386, + [10357] = 422, + [10358] = 401, + [10359] = 465, + [10360] = 380, + [10361] = 453, + [10362] = 399, + [10363] = 422, + [10364] = 434, + [10365] = 424, + [10366] = 425, + [10367] = 426, + [10368] = 385, + [10369] = 1033, + [10370] = 386, + [10371] = 431, + [10372] = 384, + [10373] = 398, + [10374] = 435, + [10375] = 453, + [10376] = 432, + [10377] = 433, + [10378] = 417, + [10379] = 398, + [10380] = 423, + [10381] = 453, + [10382] = 10382, + [10383] = 410, + [10384] = 401, + [10385] = 400, + [10386] = 1248, + [10387] = 991, + [10388] = 411, + [10389] = 432, + [10390] = 992, + [10391] = 452, + [10392] = 433, + [10393] = 451, + [10394] = 402, + [10395] = 1997, + [10396] = 421, + [10397] = 437, + [10398] = 427, + [10399] = 996, + [10400] = 412, + [10401] = 1033, + [10402] = 413, + [10403] = 428, + [10404] = 414, + [10405] = 430, + [10406] = 429, + [10407] = 1052, + [10408] = 465, + [10409] = 404, + [10410] = 405, + [10411] = 406, + [10412] = 399, + [10413] = 407, + [10414] = 408, + [10415] = 409, + [10416] = 437, + [10417] = 414, + [10418] = 399, + [10419] = 429, + [10420] = 401, + [10421] = 465, + [10422] = 404, + [10423] = 405, + [10424] = 406, + [10425] = 407, + [10426] = 408, + [10427] = 409, + [10428] = 410, + [10429] = 411, + [10430] = 412, + [10431] = 413, + [10432] = 437, + [10433] = 400, + [10434] = 996, + [10435] = 428, + [10436] = 430, + [10437] = 399, + [10438] = 401, + [10439] = 465, + [10440] = 404, + [10441] = 405, + [10442] = 406, + [10443] = 407, + [10444] = 408, + [10445] = 409, + [10446] = 410, + [10447] = 411, + [10448] = 412, + [10449] = 413, + [10450] = 451, + [10451] = 452, + [10452] = 402, + [10453] = 427, + [10454] = 10454, + [10455] = 10455, + [10456] = 10454, + [10457] = 10455, + [10458] = 10454, + [10459] = 10455, + [10460] = 10454, + [10461] = 10455, + [10462] = 10454, + [10463] = 10455, + [10464] = 10454, + [10465] = 10455, + [10466] = 10454, + [10467] = 10455, + [10468] = 10454, + [10469] = 10455, + [10470] = 10454, + [10471] = 451, + [10472] = 10455, + [10473] = 996, + [10474] = 10454, + [10475] = 10455, + [10476] = 839, + [10477] = 421, + [10478] = 1003, + [10479] = 410, + [10480] = 990, + [10481] = 437, + [10482] = 406, + [10483] = 934, + [10484] = 1053, + [10485] = 411, + [10486] = 413, + [10487] = 878, + [10488] = 401, + [10489] = 405, + [10490] = 924, + [10491] = 1076, + [10492] = 975, + [10493] = 998, + [10494] = 999, + [10495] = 1002, + [10496] = 465, + [10497] = 429, + [10498] = 412, + [10499] = 1018, + [10500] = 1019, + [10501] = 1020, + [10502] = 1021, + [10503] = 407, + [10504] = 1022, + [10505] = 1023, + [10506] = 1027, + [10507] = 10507, + [10508] = 408, + [10509] = 1050, + [10510] = 873, + [10511] = 437, + [10512] = 1079, + [10513] = 437, + [10514] = 1259, + [10515] = 404, + [10516] = 409, + [10517] = 399, + [10518] = 1004, + [10519] = 10519, + [10520] = 10520, + [10521] = 405, + [10522] = 406, + [10523] = 10523, + [10524] = 10524, + [10525] = 10524, + [10526] = 407, + [10527] = 408, + [10528] = 409, + [10529] = 410, + [10530] = 411, + [10531] = 10531, + [10532] = 412, + [10533] = 413, + [10534] = 437, + [10535] = 10524, + [10536] = 10536, + [10537] = 10524, + [10538] = 10524, + [10539] = 10524, + [10540] = 10524, + [10541] = 10541, + [10542] = 10520, + [10543] = 10524, + [10544] = 10524, + [10545] = 10531, + [10546] = 10546, + [10547] = 10547, + [10548] = 1283, + [10549] = 465, + [10550] = 10550, + [10551] = 10524, + [10552] = 10552, + [10553] = 1255, + [10554] = 10524, + [10555] = 10555, + [10556] = 399, + [10557] = 10547, + [10558] = 10536, + [10559] = 10550, + [10560] = 10541, + [10561] = 10524, + [10562] = 10524, + [10563] = 10524, + [10564] = 401, + [10565] = 10524, + [10566] = 10546, + [10567] = 10567, + [10568] = 404, + [10569] = 10524, + [10570] = 10524, + [10571] = 996, + [10572] = 1569, + [10573] = 10524, + [10574] = 1569, + [10575] = 10567, + [10576] = 10576, + [10577] = 10576, + [10578] = 437, + [10579] = 10579, + [10580] = 10579, + [10581] = 10579, + [10582] = 10576, + [10583] = 10579, + [10584] = 10584, + [10585] = 10576, + [10586] = 465, + [10587] = 10576, + [10588] = 404, + [10589] = 405, + [10590] = 10590, + [10591] = 10576, + [10592] = 10576, + [10593] = 406, + [10594] = 10579, + [10595] = 1952, + [10596] = 10576, + [10597] = 10576, + [10598] = 10576, + [10599] = 10576, + [10600] = 10576, + [10601] = 10579, + [10602] = 10576, + [10603] = 10576, + [10604] = 10576, + [10605] = 10576, + [10606] = 10579, + [10607] = 10576, + [10608] = 10576, + [10609] = 10576, + [10610] = 10576, + [10611] = 10576, + [10612] = 10576, + [10613] = 10576, + [10614] = 1533, + [10615] = 10579, + [10616] = 10576, + [10617] = 10576, + [10618] = 10576, + [10619] = 10576, + [10620] = 996, + [10621] = 10579, + [10622] = 10576, + [10623] = 10576, + [10624] = 10576, + [10625] = 407, + [10626] = 10576, + [10627] = 408, + [10628] = 409, + [10629] = 410, + [10630] = 10576, + [10631] = 412, + [10632] = 413, + [10633] = 10579, + [10634] = 1532, + [10635] = 10576, + [10636] = 10576, + [10637] = 10579, + [10638] = 10576, + [10639] = 10576, + [10640] = 10576, + [10641] = 1964, + [10642] = 10576, + [10643] = 10579, + [10644] = 1965, + [10645] = 10576, + [10646] = 10579, + [10647] = 10576, + [10648] = 10576, + [10649] = 10576, + [10650] = 10576, + [10651] = 10576, + [10652] = 10576, + [10653] = 10653, + [10654] = 10579, + [10655] = 10576, + [10656] = 10579, + [10657] = 10576, + [10658] = 10579, + [10659] = 399, + [10660] = 10576, + [10661] = 10576, + [10662] = 10579, + [10663] = 1487, + [10664] = 10576, + [10665] = 10576, + [10666] = 10576, + [10667] = 10667, + [10668] = 401, + [10669] = 10669, + [10670] = 10576, + [10671] = 10671, + [10672] = 1595, + [10673] = 10576, + [10674] = 10579, + [10675] = 10576, + [10676] = 10576, + [10677] = 1630, + [10678] = 1631, + [10679] = 1632, + [10680] = 10576, + [10681] = 10576, + [10682] = 10576, + [10683] = 1574, + [10684] = 1589, + [10685] = 10576, + [10686] = 10576, + [10687] = 10687, + [10688] = 10576, + [10689] = 411, + [10690] = 10690, + [10691] = 2190, + [10692] = 10690, + [10693] = 10693, + [10694] = 10690, + [10695] = 2181, + [10696] = 1053, + [10697] = 924, + [10698] = 437, + [10699] = 10693, + [10700] = 10690, + [10701] = 2180, + [10702] = 10690, + [10703] = 2194, + [10704] = 10693, + [10705] = 934, + [10706] = 10690, + [10707] = 10707, + [10708] = 437, + [10709] = 10709, + [10710] = 10709, + [10711] = 2197, + [10712] = 10693, + [10713] = 10690, + [10714] = 10693, + [10715] = 10709, + [10716] = 10693, + [10717] = 2187, + [10718] = 10693, + [10719] = 10719, + [10720] = 10693, + [10721] = 10690, + [10722] = 10719, + [10723] = 2183, + [10724] = 10719, + [10725] = 990, + [10726] = 1255, + [10727] = 10690, + [10728] = 2192, + [10729] = 10693, + [10730] = 873, + [10731] = 10693, + [10732] = 10693, + [10733] = 10733, + [10734] = 975, + [10735] = 10735, + [10736] = 10736, + [10737] = 10736, + [10738] = 10736, + [10739] = 10736, + [10740] = 10740, + [10741] = 10736, + [10742] = 10736, + [10743] = 10743, + [10744] = 10744, + [10745] = 10736, + [10746] = 10736, + [10747] = 10736, + [10748] = 10736, + [10749] = 10736, + [10750] = 10744, + [10751] = 10743, + [10752] = 10736, + [10753] = 10736, + [10754] = 10744, + [10755] = 10736, + [10756] = 10736, + [10757] = 10736, + [10758] = 10736, + [10759] = 10736, + [10760] = 10736, + [10761] = 10736, + [10762] = 10736, + [10763] = 10736, + [10764] = 10735, + [10765] = 10736, + [10766] = 10743, + [10767] = 10743, + [10768] = 10744, + [10769] = 10736, + [10770] = 10736, + [10771] = 10736, + [10772] = 10736, + [10773] = 10736, + [10774] = 2190, + [10775] = 10736, + [10776] = 10736, + [10777] = 10736, + [10778] = 10736, + [10779] = 10736, + [10780] = 10736, + [10781] = 10736, + [10782] = 10782, + [10783] = 10743, + [10784] = 10744, + [10785] = 10785, + [10786] = 10743, + [10787] = 10744, + [10788] = 10736, + [10789] = 10789, + [10790] = 2181, + [10791] = 10736, + [10792] = 1076, + [10793] = 1079, + [10794] = 465, + [10795] = 404, + [10796] = 405, + [10797] = 406, + [10798] = 407, + [10799] = 408, + [10800] = 409, + [10801] = 410, + [10802] = 411, + [10803] = 412, + [10804] = 413, + [10805] = 10805, + [10806] = 10736, + [10807] = 10807, + [10808] = 10808, + [10809] = 10736, + [10810] = 10736, + [10811] = 10736, + [10812] = 10736, + [10813] = 10808, + [10814] = 10736, + [10815] = 10736, + [10816] = 10816, + [10817] = 10736, + [10818] = 437, + [10819] = 10736, + [10820] = 10789, + [10821] = 10805, + [10822] = 10808, + [10823] = 10736, + [10824] = 10743, + [10825] = 10789, + [10826] = 2187, + [10827] = 10805, + [10828] = 10744, + [10829] = 2192, + [10830] = 10808, + [10831] = 10736, + [10832] = 10736, + [10833] = 10743, + [10834] = 10736, + [10835] = 10789, + [10836] = 10736, + [10837] = 10805, + [10838] = 10736, + [10839] = 10736, + [10840] = 10808, + [10841] = 10789, + [10842] = 10805, + [10843] = 10744, + [10844] = 10808, + [10845] = 10789, + [10846] = 10736, + [10847] = 10736, + [10848] = 10805, + [10849] = 10736, + [10850] = 10736, + [10851] = 10808, + [10852] = 10736, + [10853] = 10789, + [10854] = 10805, + [10855] = 10736, + [10856] = 10808, + [10857] = 10789, + [10858] = 10805, + [10859] = 10736, + [10860] = 10808, + [10861] = 10789, + [10862] = 10805, + [10863] = 10736, + [10864] = 10808, + [10865] = 10789, + [10866] = 10789, + [10867] = 10789, + [10868] = 10789, + [10869] = 10789, + [10870] = 10789, + [10871] = 10789, + [10872] = 10789, + [10873] = 10789, + [10874] = 10789, + [10875] = 10789, + [10876] = 10789, + [10877] = 10789, + [10878] = 10789, + [10879] = 10789, + [10880] = 10789, + [10881] = 10789, + [10882] = 10789, + [10883] = 10789, + [10884] = 10789, + [10885] = 10789, + [10886] = 10789, + [10887] = 10789, + [10888] = 10789, + [10889] = 10789, + [10890] = 10789, + [10891] = 10789, + [10892] = 10789, + [10893] = 10789, + [10894] = 10789, + [10895] = 10789, + [10896] = 10789, + [10897] = 10789, + [10898] = 10789, + [10899] = 10789, + [10900] = 10789, + [10901] = 10789, + [10902] = 10789, + [10903] = 10789, + [10904] = 10789, + [10905] = 10789, + [10906] = 10789, + [10907] = 10789, + [10908] = 10789, + [10909] = 10789, + [10910] = 10789, + [10911] = 10789, + [10912] = 10789, + [10913] = 10789, + [10914] = 10789, + [10915] = 10789, + [10916] = 10789, + [10917] = 399, + [10918] = 401, + [10919] = 10807, + [10920] = 10744, + [10921] = 10782, + [10922] = 10816, + [10923] = 10736, + [10924] = 10807, + [10925] = 10782, + [10926] = 10816, + [10927] = 10807, + [10928] = 10782, + [10929] = 10816, + [10930] = 10736, + [10931] = 10736, + [10932] = 10807, + [10933] = 10782, + [10934] = 10816, + [10935] = 10807, + [10936] = 10782, + [10937] = 10816, + [10938] = 10736, + [10939] = 10807, + [10940] = 10782, + [10941] = 10816, + [10942] = 10807, + [10943] = 10782, + [10944] = 10816, + [10945] = 10807, + [10946] = 10782, + [10947] = 10816, + [10948] = 10736, + [10949] = 10782, + [10950] = 10782, + [10951] = 10743, + [10952] = 10736, + [10953] = 10744, + [10954] = 10805, + [10955] = 10736, + [10956] = 10743, + [10957] = 10735, + [10958] = 10735, + [10959] = 10736, + [10960] = 10735, + [10961] = 10744, + [10962] = 10735, + [10963] = 10735, + [10964] = 2197, + [10965] = 10736, + [10966] = 10736, + [10967] = 10736, + [10968] = 10735, + [10969] = 10736, + [10970] = 10735, + [10971] = 2180, + [10972] = 10735, + [10973] = 2183, + [10974] = 2194, + [10975] = 10789, + [10976] = 10976, + [10977] = 10977, + [10978] = 10978, + [10979] = 10978, + [10980] = 10976, + [10981] = 10981, + [10982] = 10978, + [10983] = 10977, + [10984] = 10977, + [10985] = 10985, + [10986] = 10978, + [10987] = 10977, + [10988] = 10978, + [10989] = 10977, + [10990] = 10978, + [10991] = 10985, + [10992] = 10977, + [10993] = 10978, + [10994] = 10981, + [10995] = 10977, + [10996] = 10977, + [10997] = 10978, + [10998] = 10977, + [10999] = 10985, + [11000] = 10978, + [11001] = 10977, + [11002] = 10978, + [11003] = 11003, + [11004] = 11004, + [11005] = 11005, + [11006] = 11006, + [11007] = 11007, + [11008] = 11008, + [11009] = 11006, + [11010] = 11010, + [11011] = 11011, + [11012] = 11012, + [11013] = 2468, + [11014] = 11014, + [11015] = 11014, + [11016] = 11016, + [11017] = 11006, + [11018] = 11007, + [11019] = 11014, + [11020] = 11011, + [11021] = 11014, + [11022] = 11022, + [11023] = 11014, + [11024] = 11007, + [11025] = 11025, + [11026] = 11007, + [11027] = 11010, + [11028] = 11022, + [11029] = 11029, + [11030] = 11012, + [11031] = 11011, + [11032] = 11014, + [11033] = 11010, + [11034] = 11007, + [11035] = 11010, + [11036] = 11011, + [11037] = 11029, + [11038] = 11006, + [11039] = 11014, + [11040] = 11010, + [11041] = 11014, + [11042] = 11008, + [11043] = 11029, + [11044] = 11011, + [11045] = 11012, + [11046] = 11006, + [11047] = 11022, + [11048] = 11029, + [11049] = 11006, + [11050] = 11007, + [11051] = 11008, + [11052] = 11011, + [11053] = 11029, + [11054] = 11012, + [11055] = 11006, + [11056] = 11012, + [11057] = 11022, + [11058] = 11006, + [11059] = 11059, + [11060] = 11029, + [11061] = 11061, + [11062] = 11014, + [11063] = 11010, + [11064] = 11014, + [11065] = 11022, + [11066] = 11029, + [11067] = 11008, + [11068] = 11008, + [11069] = 11010, + [11070] = 11029, + [11071] = 11014, + [11072] = 11022, + [11073] = 11011, + [11074] = 11029, + [11075] = 11014, + [11076] = 11076, + [11077] = 11014, + [11078] = 11078, + [11079] = 11008, + [11080] = 11080, + [11081] = 2470, + [11082] = 11007, + [11083] = 11022, + [11084] = 11007, + [11085] = 11010, + [11086] = 11011, + [11087] = 11014, + [11088] = 11007, + [11089] = 11012, + [11090] = 11012, + [11091] = 11010, + [11092] = 11006, + [11093] = 11008, + [11094] = 11006, + [11095] = 11011, + [11096] = 11011, + [11097] = 11022, + [11098] = 11014, + [11099] = 11014, + [11100] = 11007, + [11101] = 11012, + [11102] = 11010, + [11103] = 11012, + [11104] = 11029, + [11105] = 11008, + [11106] = 11022, + [11107] = 11022, + [11108] = 11012, + [11109] = 11014, + [11110] = 11008, + [11111] = 11008, + [11112] = 11112, + [11113] = 11113, + [11114] = 11112, + [11115] = 11115, + [11116] = 11112, + [11117] = 11117, + [11118] = 386, + [11119] = 11117, + [11120] = 11120, + [11121] = 11121, + [11122] = 11122, + [11123] = 11120, + [11124] = 11122, + [11125] = 11117, + [11126] = 11117, + [11127] = 11122, + [11128] = 11128, + [11129] = 11117, + [11130] = 11120, + [11131] = 11120, + [11132] = 11121, + [11133] = 11133, + [11134] = 11134, + [11135] = 11113, + [11136] = 384, + [11137] = 11115, + [11138] = 11112, + [11139] = 11120, + [11140] = 11128, + [11141] = 11121, + [11142] = 11133, + [11143] = 11134, + [11144] = 11113, + [11145] = 11115, + [11146] = 11112, + [11147] = 11121, + [11148] = 11133, + [11149] = 11121, + [11150] = 11150, + [11151] = 11151, + [11152] = 11122, + [11153] = 11134, + [11154] = 11128, + [11155] = 2464, + [11156] = 11128, + [11157] = 11128, + [11158] = 11133, + [11159] = 11134, + [11160] = 11113, + [11161] = 11122, + [11162] = 11117, + [11163] = 11113, + [11164] = 2440, + [11165] = 11122, + [11166] = 11120, + [11167] = 11120, + [11168] = 11121, + [11169] = 11121, + [11170] = 11133, + [11171] = 11134, + [11172] = 11134, + [11173] = 11115, + [11174] = 11112, + [11175] = 11115, + [11176] = 11112, + [11177] = 11128, + [11178] = 11128, + [11179] = 11133, + [11180] = 11134, + [11181] = 11113, + [11182] = 11182, + [11183] = 11115, + [11184] = 11112, + [11185] = 11115, + [11186] = 11112, + [11187] = 11122, + [11188] = 11128, + [11189] = 11128, + [11190] = 11122, + [11191] = 385, + [11192] = 11128, + [11193] = 11182, + [11194] = 11128, + [11195] = 11133, + [11196] = 11134, + [11197] = 11122, + [11198] = 11117, + [11199] = 11128, + [11200] = 2286, + [11201] = 11117, + [11202] = 11120, + [11203] = 11121, + [11204] = 11117, + [11205] = 11120, + [11206] = 11121, + [11207] = 11120, + [11208] = 11128, + [11209] = 11121, + [11210] = 11128, + [11211] = 11133, + [11212] = 11134, + [11213] = 11128, + [11214] = 11113, + [11215] = 11115, + [11216] = 11113, + [11217] = 11128, + [11218] = 11133, + [11219] = 11134, + [11220] = 11113, + [11221] = 11115, + [11222] = 11112, + [11223] = 11122, + [11224] = 11128, + [11225] = 11133, + [11226] = 11115, + [11227] = 11117, + [11228] = 11128, + [11229] = 11113, + [11230] = 11230, + [11231] = 11230, + [11232] = 11230, + [11233] = 11230, + [11234] = 11230, + [11235] = 11230, + [11236] = 11230, + [11237] = 11230, + [11238] = 11230, + [11239] = 11230, + [11240] = 11230, + [11241] = 11230, + [11242] = 11230, + [11243] = 11230, + [11244] = 11230, + [11245] = 11230, + [11246] = 11230, + [11247] = 11230, + [11248] = 11230, + [11249] = 11249, + [11250] = 11230, + [11251] = 11251, + [11252] = 11230, + [11253] = 11249, + [11254] = 11230, + [11255] = 11255, + [11256] = 11256, + [11257] = 2464, + [11258] = 11258, + [11259] = 11249, + [11260] = 11230, + [11261] = 11249, + [11262] = 11230, + [11263] = 11263, + [11264] = 11264, + [11265] = 11265, + [11266] = 11266, + [11267] = 11267, + [11268] = 11268, + [11269] = 11269, + [11270] = 11270, + [11271] = 11271, + [11272] = 11267, + [11273] = 11249, + [11274] = 11274, + [11275] = 11249, + [11276] = 11249, + [11277] = 11230, + [11278] = 2546, + [11279] = 11230, + [11280] = 385, + [11281] = 11249, + [11282] = 11282, + [11283] = 11230, + [11284] = 11271, + [11285] = 11249, + [11286] = 11258, + [11287] = 11230, + [11288] = 11288, + [11289] = 11249, + [11290] = 11267, + [11291] = 11268, + [11292] = 11288, + [11293] = 11230, + [11294] = 11294, + [11295] = 11282, + [11296] = 11249, + [11297] = 11230, + [11298] = 11267, + [11299] = 11230, + [11300] = 11300, + [11301] = 11249, + [11302] = 11230, + [11303] = 11249, + [11304] = 11282, + [11305] = 11230, + [11306] = 11288, + [11307] = 11267, + [11308] = 11268, + [11309] = 11300, + [11310] = 11268, + [11311] = 11294, + [11312] = 11249, + [11313] = 11230, + [11314] = 11300, + [11315] = 11249, + [11316] = 11249, + [11317] = 11230, + [11318] = 11230, + [11319] = 11294, + [11320] = 11249, + [11321] = 11267, + [11322] = 11268, + [11323] = 11230, + [11324] = 11230, + [11325] = 11230, + [11326] = 11265, + [11327] = 11230, + [11328] = 11251, + [11329] = 11255, + [11330] = 11266, + [11331] = 11256, + [11332] = 11258, + [11333] = 11263, + [11334] = 11230, + [11335] = 11249, + [11336] = 11230, + [11337] = 11264, + [11338] = 11265, + [11339] = 11266, + [11340] = 11249, + [11341] = 11269, + [11342] = 11270, + [11343] = 11271, + [11344] = 11230, + [11345] = 11274, + [11346] = 11230, + [11347] = 2440, + [11348] = 11249, + [11349] = 11230, + [11350] = 11294, + [11351] = 11282, + [11352] = 11230, + [11353] = 2396, + [11354] = 11267, + [11355] = 11256, + [11356] = 11268, + [11357] = 11230, + [11358] = 386, + [11359] = 11230, + [11360] = 11249, + [11361] = 11230, + [11362] = 11264, + [11363] = 11271, + [11364] = 11249, + [11365] = 11230, + [11366] = 11274, + [11367] = 11249, + [11368] = 11230, + [11369] = 11288, + [11370] = 11267, + [11371] = 11268, + [11372] = 11300, + [11373] = 11249, + [11374] = 11230, + [11375] = 11256, + [11376] = 11274, + [11377] = 11377, + [11378] = 11249, + [11379] = 11264, + [11380] = 11230, + [11381] = 11271, + [11382] = 11274, + [11383] = 11256, + [11384] = 11264, + [11385] = 11249, + [11386] = 11264, + [11387] = 11249, + [11388] = 2384, + [11389] = 2396, + [11390] = 11230, + [11391] = 11271, + [11392] = 11282, + [11393] = 2405, + [11394] = 11274, + [11395] = 2450, + [11396] = 11249, + [11397] = 11230, + [11398] = 11230, + [11399] = 11256, + [11400] = 11230, + [11401] = 11230, + [11402] = 11230, + [11403] = 11264, + [11404] = 11271, + [11405] = 11249, + [11406] = 11230, + [11407] = 11274, + [11408] = 11267, + [11409] = 11268, + [11410] = 11256, + [11411] = 11294, + [11412] = 11264, + [11413] = 424, + [11414] = 11271, + [11415] = 11230, + [11416] = 11274, + [11417] = 425, + [11418] = 426, + [11419] = 11256, + [11420] = 7696, + [11421] = 11249, + [11422] = 11230, + [11423] = 11264, + [11424] = 11271, + [11425] = 11274, + [11426] = 11249, + [11427] = 11256, + [11428] = 11249, + [11429] = 11230, + [11430] = 11230, + [11431] = 11264, + [11432] = 11271, + [11433] = 11249, + [11434] = 11274, + [11435] = 11230, + [11436] = 11249, + [11437] = 11230, + [11438] = 7674, + [11439] = 11288, + [11440] = 11249, + [11441] = 11230, + [11442] = 11249, + [11443] = 11267, + [11444] = 11268, + [11445] = 11249, + [11446] = 11230, + [11447] = 11282, + [11448] = 11249, + [11449] = 11249, + [11450] = 11294, + [11451] = 11230, + [11452] = 11249, + [11453] = 11230, + [11454] = 11454, + [11455] = 11249, + [11456] = 11230, + [11457] = 11249, + [11458] = 11230, + [11459] = 11249, + [11460] = 11267, + [11461] = 11268, + [11462] = 11230, + [11463] = 11249, + [11464] = 11230, + [11465] = 11267, + [11466] = 11288, + [11467] = 11267, + [11468] = 11268, + [11469] = 11300, + [11470] = 2405, + [11471] = 11230, + [11472] = 11288, + [11473] = 11282, + [11474] = 11230, + [11475] = 11230, + [11476] = 11249, + [11477] = 11230, + [11478] = 11294, + [11479] = 11267, + [11480] = 11249, + [11481] = 11249, + [11482] = 11230, + [11483] = 11267, + [11484] = 11249, + [11485] = 11230, + [11486] = 11249, + [11487] = 11230, + [11488] = 11268, + [11489] = 11268, + [11490] = 11249, + [11491] = 432, + [11492] = 11300, + [11493] = 433, + [11494] = 11230, + [11495] = 424, + [11496] = 11249, + [11497] = 425, + [11498] = 11268, + [11499] = 11300, + [11500] = 3362, + [11501] = 11288, + [11502] = 426, + [11503] = 11249, + [11504] = 11249, + [11505] = 11230, + [11506] = 11230, + [11507] = 11256, + [11508] = 11288, + [11509] = 2464, + [11510] = 11249, + [11511] = 11267, + [11512] = 11268, + [11513] = 11300, + [11514] = 431, + [11515] = 11230, + [11516] = 11230, + [11517] = 11249, + [11518] = 11230, + [11519] = 11267, + [11520] = 11268, + [11521] = 11268, + [11522] = 11249, + [11523] = 11230, + [11524] = 11230, + [11525] = 11249, + [11526] = 11282, + [11527] = 2384, + [11528] = 11249, + [11529] = 11230, + [11530] = 11251, + [11531] = 11255, + [11532] = 11532, + [11533] = 2450, + [11534] = 11230, + [11535] = 11249, + [11536] = 11230, + [11537] = 11294, + [11538] = 11230, + [11539] = 11269, + [11540] = 11249, + [11541] = 11270, + [11542] = 11249, + [11543] = 11230, + [11544] = 11230, + [11545] = 11230, + [11546] = 11249, + [11547] = 11230, + [11548] = 2440, + [11549] = 11230, + [11550] = 11294, + [11551] = 11551, + [11552] = 11282, + [11553] = 11268, + [11554] = 11230, + [11555] = 11263, + [11556] = 11249, + [11557] = 11230, + [11558] = 3372, + [11559] = 431, + [11560] = 11230, + [11561] = 11288, + [11562] = 11249, + [11563] = 11294, + [11564] = 11230, + [11565] = 11267, + [11566] = 11249, + [11567] = 11230, + [11568] = 11230, + [11569] = 11230, + [11570] = 11282, + [11571] = 11249, + [11572] = 11300, + [11573] = 11230, + [11574] = 384, + [11575] = 11249, + [11576] = 11230, + [11577] = 11249, + [11578] = 11578, + [11579] = 11579, + [11580] = 11580, + [11581] = 11580, + [11582] = 7921, + [11583] = 11579, + [11584] = 11579, + [11585] = 11585, + [11586] = 11579, + [11587] = 7919, + [11588] = 2547, + [11589] = 11579, + [11590] = 11590, + [11591] = 2592, + [11592] = 11592, + [11593] = 11578, + [11594] = 11594, + [11595] = 421, + [11596] = 7930, + [11597] = 11597, + [11598] = 3243, + [11599] = 11599, + [11600] = 11600, + [11601] = 11579, + [11602] = 3268, + [11603] = 3362, + [11604] = 11604, + [11605] = 11580, + [11606] = 11606, + [11607] = 11578, + [11608] = 7983, + [11609] = 11609, + [11610] = 3372, + [11611] = 11579, + [11612] = 11578, + [11613] = 7976, + [11614] = 7941, + [11615] = 11615, + [11616] = 7994, + [11617] = 7918, + [11618] = 11578, + [11619] = 427, + [11620] = 7965, + [11621] = 11579, + [11622] = 11622, + [11623] = 7971, + [11624] = 2455, + [11625] = 11579, + [11626] = 7980, + [11627] = 7948, + [11628] = 11578, + [11629] = 11580, + [11630] = 11630, + [11631] = 11631, + [11632] = 11579, + [11633] = 2568, + [11634] = 11578, + [11635] = 11635, + [11636] = 7978, + [11637] = 11637, + [11638] = 11580, + [11639] = 11639, + [11640] = 11578, + [11641] = 7696, + [11642] = 7674, + [11643] = 11580, + [11644] = 11578, + [11645] = 432, + [11646] = 433, + [11647] = 3184, + [11648] = 3201, + [11649] = 11649, + [11650] = 11578, + [11651] = 11651, + [11652] = 11580, + [11653] = 11653, + [11654] = 11654, + [11655] = 11655, + [11656] = 11653, + [11657] = 11654, + [11658] = 11655, + [11659] = 11659, + [11660] = 11659, + [11661] = 11661, + [11662] = 2849, + [11663] = 11663, + [11664] = 11654, + [11665] = 11655, + [11666] = 11659, + [11667] = 2902, + [11668] = 7921, + [11669] = 7980, + [11670] = 11653, + [11671] = 3648, + [11672] = 11654, + [11673] = 11655, + [11674] = 11659, + [11675] = 11675, + [11676] = 11653, + [11677] = 11654, + [11678] = 11655, + [11679] = 7930, + [11680] = 11659, + [11681] = 11653, + [11682] = 11659, + [11683] = 11654, + [11684] = 11655, + [11685] = 11659, + [11686] = 3060, + [11687] = 11663, + [11688] = 2885, + [11689] = 3817, + [11690] = 2840, + [11691] = 3661, + [11692] = 2682, + [11693] = 7994, + [11694] = 11675, + [11695] = 2686, + [11696] = 11663, + [11697] = 11655, + [11698] = 2464, + [11699] = 11653, + [11700] = 2878, + [11701] = 3372, + [11702] = 11663, + [11703] = 2608, + [11704] = 2899, + [11705] = 3703, + [11706] = 427, + [11707] = 421, + [11708] = 3640, + [11709] = 11663, + [11710] = 11653, + [11711] = 11654, + [11712] = 3709, + [11713] = 11655, + [11714] = 11659, + [11715] = 11663, + [11716] = 2684, + [11717] = 7976, + [11718] = 11663, + [11719] = 11719, + [11720] = 3362, + [11721] = 11654, + [11722] = 11663, + [11723] = 11653, + [11724] = 11654, + [11725] = 11655, + [11726] = 11659, + [11727] = 11663, + [11728] = 11653, + [11729] = 3660, + [11730] = 11663, + [11731] = 2901, + [11732] = 11663, + [11733] = 2440, + [11734] = 11734, + [11735] = 11735, + [11736] = 11736, + [11737] = 11737, + [11738] = 11738, + [11739] = 11739, + [11740] = 11740, + [11741] = 11741, + [11742] = 11740, + [11743] = 11737, + [11744] = 11744, + [11745] = 11745, + [11746] = 11746, + [11747] = 11739, + [11748] = 3460, + [11749] = 11749, + [11750] = 11737, + [11751] = 11737, + [11752] = 11737, + [11753] = 11745, + [11754] = 11754, + [11755] = 3472, + [11756] = 3632, + [11757] = 3643, + [11758] = 11735, + [11759] = 11736, + [11760] = 11760, + [11761] = 11737, + [11762] = 11738, + [11763] = 11763, + [11764] = 11740, + [11765] = 3438, + [11766] = 11737, + [11767] = 11767, + [11768] = 11737, + [11769] = 11746, + [11770] = 3650, + [11771] = 11737, + [11772] = 11772, + [11773] = 11773, + [11774] = 3411, + [11775] = 11737, + [11776] = 3655, + [11777] = 3657, + [11778] = 11737, + [11779] = 11745, + [11780] = 11780, + [11781] = 3361, + [11782] = 11736, + [11783] = 3658, + [11784] = 11735, + [11785] = 11736, + [11786] = 3583, + [11787] = 3584, + [11788] = 11738, + [11789] = 11789, + [11790] = 11740, + [11791] = 11737, + [11792] = 11792, + [11793] = 11793, + [11794] = 11735, + [11795] = 2682, + [11796] = 11737, + [11797] = 11746, + [11798] = 11739, + [11799] = 11767, + [11800] = 11737, + [11801] = 11801, + [11802] = 11745, + [11803] = 11737, + [11804] = 11739, + [11805] = 11805, + [11806] = 3640, + [11807] = 11737, + [11808] = 11735, + [11809] = 11736, + [11810] = 11810, + [11811] = 11811, + [11812] = 11737, + [11813] = 11738, + [11814] = 11749, + [11815] = 11740, + [11816] = 3569, + [11817] = 11817, + [11818] = 3394, + [11819] = 11819, + [11820] = 11735, + [11821] = 11736, + [11822] = 11740, + [11823] = 11749, + [11824] = 11745, + [11825] = 11825, + [11826] = 11739, + [11827] = 11737, + [11828] = 11805, + [11829] = 3526, + [11830] = 11737, + [11831] = 3520, + [11832] = 11737, + [11833] = 3184, + [11834] = 11834, + [11835] = 11744, + [11836] = 11836, + [11837] = 11789, + [11838] = 3570, + [11839] = 11767, + [11840] = 11746, + [11841] = 11767, + [11842] = 11842, + [11843] = 11737, + [11844] = 11737, + [11845] = 11737, + [11846] = 11749, + [11847] = 11805, + [11848] = 11789, + [11849] = 11737, + [11850] = 11737, + [11851] = 11801, + [11852] = 11852, + [11853] = 11744, + [11854] = 11854, + [11855] = 11737, + [11856] = 11856, + [11857] = 11772, + [11858] = 11767, + [11859] = 11740, + [11860] = 2464, + [11861] = 11745, + [11862] = 11754, + [11863] = 11863, + [11864] = 11864, + [11865] = 11865, + [11866] = 11866, + [11867] = 3660, + [11868] = 2902, + [11869] = 11767, + [11870] = 11737, + [11871] = 3661, + [11872] = 11805, + [11873] = 11737, + [11874] = 11737, + [11875] = 11737, + [11876] = 11876, + [11877] = 11789, + [11878] = 11737, + [11879] = 11746, + [11880] = 11805, + [11881] = 11744, + [11882] = 11737, + [11883] = 11767, + [11884] = 11735, + [11885] = 11737, + [11886] = 11749, + [11887] = 3268, + [11888] = 11736, + [11889] = 3626, + [11890] = 11876, + [11891] = 3564, + [11892] = 11737, + [11893] = 11744, + [11894] = 3527, + [11895] = 11737, + [11896] = 11737, + [11897] = 11897, + [11898] = 11737, + [11899] = 11876, + [11900] = 11789, + [11901] = 3201, + [11902] = 11738, + [11903] = 11737, + [11904] = 11904, + [11905] = 11737, + [11906] = 11737, + [11907] = 11876, + [11908] = 11740, + [11909] = 11737, + [11910] = 11805, + [11911] = 3502, + [11912] = 11745, + [11913] = 3505, + [11914] = 11744, + [11915] = 11915, + [11916] = 11738, + [11917] = 11737, + [11918] = 11876, + [11919] = 2686, + [11920] = 3370, + [11921] = 2840, + [11922] = 11735, + [11923] = 11737, + [11924] = 11736, + [11925] = 11876, + [11926] = 11789, + [11927] = 11737, + [11928] = 11767, + [11929] = 11738, + [11930] = 11737, + [11931] = 3630, + [11932] = 11737, + [11933] = 11740, + [11934] = 3243, + [11935] = 11876, + [11936] = 11936, + [11937] = 11805, + [11938] = 11744, + [11939] = 3485, + [11940] = 11746, + [11941] = 11876, + [11942] = 11735, + [11943] = 11737, + [11944] = 11736, + [11945] = 3585, + [11946] = 11946, + [11947] = 11876, + [11948] = 11948, + [11949] = 11737, + [11950] = 11737, + [11951] = 11951, + [11952] = 11805, + [11953] = 2885, + [11954] = 11954, + [11955] = 11876, + [11956] = 11746, + [11957] = 11737, + [11958] = 3489, + [11959] = 11789, + [11960] = 2961, + [11961] = 3049, + [11962] = 11737, + [11963] = 11746, + [11964] = 11739, + [11965] = 11749, + [11966] = 11746, + [11967] = 3479, + [11968] = 11737, + [11969] = 11745, + [11970] = 11737, + [11971] = 3475, + [11972] = 11745, + [11973] = 11973, + [11974] = 11744, + [11975] = 11739, + [11976] = 11749, + [11977] = 3633, + [11978] = 11789, + [11979] = 11737, + [11980] = 11980, + [11981] = 11737, + [11982] = 11866, + [11983] = 3561, + [11984] = 11746, + [11985] = 11737, + [11986] = 11986, + [11987] = 11789, + [11988] = 11988, + [11989] = 11948, + [11990] = 11735, + [11991] = 11736, + [11992] = 11737, + [11993] = 11866, + [11994] = 11739, + [11995] = 11986, + [11996] = 11737, + [11997] = 11737, + [11998] = 11738, + [11999] = 11737, + [12000] = 11735, + [12001] = 11740, + [12002] = 11986, + [12003] = 12003, + [12004] = 11736, + [12005] = 11737, + [12006] = 11986, + [12007] = 11986, + [12008] = 11767, + [12009] = 11737, + [12010] = 11749, + [12011] = 11986, + [12012] = 11745, + [12013] = 11805, + [12014] = 11746, + [12015] = 3560, + [12016] = 11789, + [12017] = 11986, + [12018] = 3519, + [12019] = 11738, + [12020] = 11737, + [12021] = 11739, + [12022] = 12022, + [12023] = 11737, + [12024] = 11986, + [12025] = 11737, + [12026] = 3709, + [12027] = 11738, + [12028] = 11737, + [12029] = 11763, + [12030] = 11737, + [12031] = 11749, + [12032] = 11737, + [12033] = 3483, + [12034] = 11773, + [12035] = 11740, + [12036] = 3568, + [12037] = 11744, + [12038] = 3699, + [12039] = 3702, + [12040] = 11737, + [12041] = 11737, + [12042] = 11767, + [12043] = 3474, + [12044] = 11737, + [12045] = 11737, + [12046] = 11737, + [12047] = 2440, + [12048] = 12048, + [12049] = 3550, + [12050] = 3910, + [12051] = 3912, + [12052] = 3705, + [12053] = 12053, + [12054] = 11864, + [12055] = 3908, + [12056] = 12053, + [12057] = 12053, + [12058] = 11842, + [12059] = 3911, + [12060] = 12060, + [12061] = 3150, + [12062] = 3458, + [12063] = 3593, + [12064] = 12053, + [12065] = 12048, + [12066] = 3677, + [12067] = 3801, + [12068] = 12068, + [12069] = 3495, + [12070] = 3415, + [12071] = 3909, + [12072] = 3268, + [12073] = 11004, + [12074] = 3417, + [12075] = 3794, + [12076] = 12076, + [12077] = 3531, + [12078] = 12053, + [12079] = 3453, + [12080] = 12053, + [12081] = 12081, + [12082] = 3547, + [12083] = 12053, + [12084] = 11741, + [12085] = 3612, + [12086] = 11854, + [12087] = 3693, + [12088] = 11810, + [12089] = 12089, + [12090] = 12048, + [12091] = 3623, + [12092] = 12053, + [12093] = 12048, + [12094] = 12048, + [12095] = 12095, + [12096] = 3696, + [12097] = 3529, + [12098] = 12098, + [12099] = 3709, + [12100] = 12100, + [12101] = 12048, + [12102] = 12048, + [12103] = 3465, + [12104] = 3649, + [12105] = 12105, + [12106] = 12048, + [12107] = 3521, + [12108] = 12108, + [12109] = 3792, + [12110] = 3142, + [12111] = 3640, + [12112] = 12112, + [12113] = 3707, + [12114] = 11811, + [12115] = 3673, + [12116] = 3644, + [12117] = 3544, + [12118] = 3663, + [12119] = 3565, + [12120] = 3637, + [12121] = 3556, + [12122] = 3442, + [12123] = 3690, + [12124] = 3549, + [12125] = 3660, + [12126] = 3566, + [12127] = 12048, + [12128] = 3586, + [12129] = 3201, + [12130] = 3455, + [12131] = 12048, + [12132] = 3148, + [12133] = 3661, + [12134] = 3678, + [12135] = 3681, + [12136] = 12053, + [12137] = 3500, + [12138] = 3903, + [12139] = 3546, + [12140] = 3535, + [12141] = 12141, + [12142] = 3682, + [12143] = 12112, + [12144] = 3617, + [12145] = 11936, + [12146] = 3243, + [12147] = 3703, + [12148] = 3477, + [12149] = 3606, + [12150] = 3694, + [12151] = 3790, + [12152] = 11865, + [12153] = 3420, + [12154] = 12060, + [12155] = 3686, + [12156] = 12112, + [12157] = 12053, + [12158] = 3739, + [12159] = 3532, + [12160] = 12060, + [12161] = 3783, + [12162] = 3659, + [12163] = 12163, + [12164] = 12164, + [12165] = 12165, + [12166] = 12166, + [12167] = 12167, + [12168] = 12168, + [12169] = 12169, + [12170] = 12170, + [12171] = 12164, + [12172] = 12172, + [12173] = 12173, + [12174] = 12174, + [12175] = 12175, + [12176] = 3773, + [12177] = 3786, + [12178] = 12178, + [12179] = 3807, + [12180] = 3735, + [12181] = 3764, + [12182] = 3831, + [12183] = 3754, + [12184] = 3763, + [12185] = 12185, + [12186] = 12164, + [12187] = 12187, + [12188] = 12188, + [12189] = 12189, + [12190] = 3731, + [12191] = 3756, + [12192] = 12192, + [12193] = 12193, + [12194] = 12194, + [12195] = 12195, + [12196] = 12196, + [12197] = 12172, + [12198] = 12164, + [12199] = 12199, + [12200] = 12172, + [12201] = 12201, + [12202] = 12174, + [12203] = 12174, + [12204] = 12175, + [12205] = 12178, + [12206] = 12206, + [12207] = 12207, + [12208] = 12208, + [12209] = 3798, + [12210] = 12175, + [12211] = 12178, + [12212] = 3751, + [12213] = 12164, + [12214] = 12214, + [12215] = 12215, + [12216] = 12172, + [12217] = 3644, + [12218] = 12174, + [12219] = 12175, + [12220] = 12178, + [12221] = 3649, + [12222] = 3673, + [12223] = 12164, + [12224] = 12224, + [12225] = 12172, + [12226] = 3760, + [12227] = 3832, + [12228] = 12174, + [12229] = 12229, + [12230] = 12175, + [12231] = 12178, + [12232] = 12232, + [12233] = 3780, + [12234] = 12207, + [12235] = 3721, + [12236] = 3770, + [12237] = 3760, + [12238] = 3749, + [12239] = 3828, + [12240] = 3789, + [12241] = 12241, + [12242] = 2684, + [12243] = 12178, + [12244] = 3802, + [12245] = 12164, + [12246] = 12164, + [12247] = 12164, + [12248] = 3417, + [12249] = 12172, + [12250] = 12224, + [12251] = 12251, + [12252] = 3775, + [12253] = 11004, + [12254] = 3845, + [12255] = 12174, + [12256] = 3749, + [12257] = 3772, + [12258] = 12175, + [12259] = 12175, + [12260] = 12178, + [12261] = 12261, + [12262] = 12262, + [12263] = 12172, + [12264] = 12264, + [12265] = 12173, + [12266] = 12266, + [12267] = 12199, + [12268] = 12268, + [12269] = 12174, + [12270] = 12270, + [12271] = 12251, + [12272] = 12272, + [12273] = 12273, + [12274] = 12174, + [12275] = 12275, + [12276] = 3738, + [12277] = 12277, + [12278] = 12175, + [12279] = 12178, + [12280] = 12280, + [12281] = 12164, + [12282] = 12224, + [12283] = 12164, + [12284] = 12284, + [12285] = 12172, + [12286] = 12286, + [12287] = 3531, + [12288] = 12174, + [12289] = 3532, + [12290] = 12175, + [12291] = 3733, + [12292] = 12199, + [12293] = 3734, + [12294] = 12178, + [12295] = 12295, + [12296] = 12164, + [12297] = 12297, + [12298] = 3477, + [12299] = 12164, + [12300] = 12199, + [12301] = 2608, + [12302] = 12164, + [12303] = 2849, + [12304] = 12199, + [12305] = 12164, + [12306] = 12306, + [12307] = 12199, + [12308] = 12164, + [12309] = 12309, + [12310] = 12164, + [12311] = 12199, + [12312] = 12164, + [12313] = 3847, + [12314] = 12172, + [12315] = 12178, + [12316] = 12316, + [12317] = 12199, + [12318] = 12164, + [12319] = 3610, + [12320] = 12320, + [12321] = 12164, + [12322] = 12199, + [12323] = 12164, + [12324] = 3586, + [12325] = 3593, + [12326] = 3777, + [12327] = 12327, + [12328] = 12199, + [12329] = 12164, + [12330] = 3049, + [12331] = 12164, + [12332] = 12164, + [12333] = 12164, + [12334] = 12164, + [12335] = 12164, + [12336] = 12164, + [12337] = 12164, + [12338] = 12164, + [12339] = 12164, + [12340] = 12164, + [12341] = 12164, + [12342] = 12164, + [12343] = 3715, + [12344] = 12164, + [12345] = 12164, + [12346] = 12164, + [12347] = 12164, + [12348] = 12164, + [12349] = 12164, + [12350] = 12164, + [12351] = 12164, + [12352] = 12164, + [12353] = 12164, + [12354] = 12164, + [12355] = 12164, + [12356] = 12164, + [12357] = 12164, + [12358] = 12164, + [12359] = 12164, + [12360] = 12164, + [12361] = 12164, + [12362] = 12164, + [12363] = 12164, + [12364] = 12164, + [12365] = 12164, + [12366] = 12164, + [12367] = 12164, + [12368] = 3637, + [12369] = 12164, + [12370] = 12164, + [12371] = 12164, + [12372] = 12164, + [12373] = 12164, + [12374] = 12164, + [12375] = 12164, + [12376] = 12164, + [12377] = 12164, + [12378] = 12164, + [12379] = 3748, + [12380] = 12173, + [12381] = 12164, + [12382] = 3757, + [12383] = 12173, + [12384] = 12384, + [12385] = 12164, + [12386] = 12173, + [12387] = 12172, + [12388] = 12173, + [12389] = 12389, + [12390] = 12173, + [12391] = 12391, + [12392] = 12164, + [12393] = 12173, + [12394] = 12174, + [12395] = 12172, + [12396] = 12173, + [12397] = 12175, + [12398] = 12173, + [12399] = 12178, + [12400] = 3797, + [12401] = 3792, + [12402] = 12164, + [12403] = 12403, + [12404] = 12164, + [12405] = 12405, + [12406] = 12406, + [12407] = 12164, + [12408] = 3809, + [12409] = 12409, + [12410] = 3841, + [12411] = 12411, + [12412] = 12412, + [12413] = 3927, + [12414] = 3928, + [12415] = 12415, + [12416] = 12416, + [12417] = 12417, + [12418] = 3929, + [12419] = 12415, + [12420] = 12416, + [12421] = 3930, + [12422] = 12422, + [12423] = 3931, + [12424] = 12422, + [12425] = 12415, + [12426] = 12416, + [12427] = 12427, + [12428] = 3751, + [12429] = 12429, + [12430] = 12427, + [12431] = 12431, + [12432] = 12432, + [12433] = 12415, + [12434] = 12416, + [12435] = 12435, + [12436] = 12432, + [12437] = 12415, + [12438] = 12416, + [12439] = 3752, + [12440] = 12440, + [12441] = 12441, + [12442] = 12432, + [12443] = 12415, + [12444] = 12416, + [12445] = 12445, + [12446] = 12446, + [12447] = 12415, + [12448] = 12448, + [12449] = 12449, + [12450] = 12450, + [12451] = 12451, + [12452] = 12452, + [12453] = 12415, + [12454] = 12416, + [12455] = 12429, + [12456] = 12427, + [12457] = 12427, + [12458] = 12458, + [12459] = 12415, + [12460] = 12416, + [12461] = 12461, + [12462] = 12462, + [12463] = 12463, + [12464] = 12415, + [12465] = 12416, + [12466] = 12466, + [12467] = 12467, + [12468] = 12468, + [12469] = 12469, + [12470] = 12415, + [12471] = 12416, + [12472] = 12415, + [12473] = 12416, + [12474] = 12435, + [12475] = 12415, + [12476] = 12416, + [12477] = 12477, + [12478] = 12432, + [12479] = 12440, + [12480] = 12415, + [12481] = 12416, + [12482] = 3950, + [12483] = 12441, + [12484] = 3951, + [12485] = 12415, + [12486] = 12416, + [12487] = 12415, + [12488] = 3839, + [12489] = 12415, + [12490] = 12416, + [12491] = 3729, + [12492] = 3767, + [12493] = 12448, + [12494] = 12449, + [12495] = 12450, + [12496] = 12451, + [12497] = 12416, + [12498] = 12498, + [12499] = 12452, + [12500] = 12415, + [12501] = 12416, + [12502] = 12422, + [12503] = 12503, + [12504] = 12429, + [12505] = 12427, + [12506] = 12415, + [12507] = 12416, + [12508] = 12458, + [12509] = 12435, + [12510] = 12432, + [12511] = 12415, + [12512] = 12416, + [12513] = 12440, + [12514] = 12461, + [12515] = 12441, + [12516] = 12415, + [12517] = 12416, + [12518] = 12462, + [12519] = 12519, + [12520] = 12448, + [12521] = 12449, + [12522] = 12450, + [12523] = 12451, + [12524] = 12452, + [12525] = 12415, + [12526] = 12416, + [12527] = 12458, + [12528] = 12415, + [12529] = 12416, + [12530] = 12461, + [12531] = 12462, + [12532] = 12532, + [12533] = 12415, + [12534] = 12416, + [12535] = 12467, + [12536] = 12467, + [12537] = 12468, + [12538] = 12415, + [12539] = 12416, + [12540] = 12415, + [12541] = 12416, + [12542] = 12468, + [12543] = 12415, + [12544] = 12416, + [12545] = 12545, + [12546] = 12415, + [12547] = 12416, + [12548] = 12415, + [12549] = 12416, + [12550] = 12415, + [12551] = 12551, + [12552] = 12415, + [12553] = 12416, + [12554] = 12554, + [12555] = 12415, + [12556] = 3969, + [12557] = 12416, + [12558] = 12415, + [12559] = 12416, + [12560] = 12422, + [12561] = 3970, + [12562] = 3971, + [12563] = 3972, + [12564] = 12427, + [12565] = 12415, + [12566] = 12416, + [12567] = 12441, + [12568] = 12415, + [12569] = 12569, + [12570] = 12432, + [12571] = 12415, + [12572] = 12416, + [12573] = 3973, + [12574] = 3974, + [12575] = 12440, + [12576] = 3975, + [12577] = 3976, + [12578] = 12416, + [12579] = 3977, + [12580] = 12415, + [12581] = 12416, + [12582] = 12441, + [12583] = 3978, + [12584] = 12415, + [12585] = 3979, + [12586] = 3980, + [12587] = 12448, + [12588] = 12449, + [12589] = 12589, + [12590] = 12450, + [12591] = 12451, + [12592] = 12415, + [12593] = 12416, + [12594] = 3981, + [12595] = 12452, + [12596] = 12596, + [12597] = 12415, + [12598] = 12416, + [12599] = 12458, + [12600] = 12461, + [12601] = 12462, + [12602] = 12602, + [12603] = 3969, + [12604] = 12415, + [12605] = 12416, + [12606] = 12415, + [12607] = 12416, + [12608] = 3997, + [12609] = 12415, + [12610] = 3772, + [12611] = 12467, + [12612] = 12468, + [12613] = 12415, + [12614] = 12416, + [12615] = 12415, + [12616] = 12416, + [12617] = 12617, + [12618] = 12415, + [12619] = 12416, + [12620] = 12415, + [12621] = 12415, + [12622] = 3984, + [12623] = 12623, + [12624] = 3759, + [12625] = 12415, + [12626] = 12416, + [12627] = 12415, + [12628] = 12416, + [12629] = 12415, + [12630] = 12416, + [12631] = 3765, + [12632] = 12448, + [12633] = 12415, + [12634] = 12416, + [12635] = 12449, + [12636] = 12416, + [12637] = 12416, + [12638] = 12450, + [12639] = 12416, + [12640] = 12451, + [12641] = 12416, + [12642] = 12415, + [12643] = 12416, + [12644] = 12416, + [12645] = 12416, + [12646] = 12416, + [12647] = 12416, + [12648] = 12440, + [12649] = 12617, + [12650] = 12650, + [12651] = 12651, + [12652] = 12652, + [12653] = 12467, + [12654] = 12654, + [12655] = 12422, + [12656] = 3852, + [12657] = 12657, + [12658] = 12569, + [12659] = 3477, + [12660] = 3997, + [12661] = 3853, + [12662] = 12427, + [12663] = 3854, + [12664] = 3998, + [12665] = 12422, + [12666] = 3999, + [12667] = 3855, + [12668] = 4000, + [12669] = 3856, + [12670] = 12432, + [12671] = 12427, + [12672] = 12440, + [12673] = 12415, + [12674] = 12446, + [12675] = 12416, + [12676] = 12676, + [12677] = 4002, + [12678] = 12441, + [12679] = 4003, + [12680] = 12680, + [12681] = 4004, + [12682] = 12417, + [12683] = 12422, + [12684] = 4005, + [12685] = 12458, + [12686] = 12448, + [12687] = 12687, + [12688] = 12449, + [12689] = 12450, + [12690] = 12690, + [12691] = 12451, + [12692] = 4007, + [12693] = 4008, + [12694] = 12452, + [12695] = 12551, + [12696] = 12432, + [12697] = 4010, + [12698] = 4011, + [12699] = 12429, + [12700] = 12427, + [12701] = 12458, + [12702] = 12461, + [12703] = 12422, + [12704] = 12461, + [12705] = 12462, + [12706] = 12687, + [12707] = 4012, + [12708] = 12680, + [12709] = 12468, + [12710] = 12654, + [12711] = 12711, + [12712] = 12467, + [12713] = 12468, + [12714] = 12714, + [12715] = 12715, + [12716] = 12415, + [12717] = 12462, + [12718] = 12427, + [12719] = 12416, + [12720] = 3799, + [12721] = 3805, + [12722] = 12690, + [12723] = 12723, + [12724] = 12416, + [12725] = 3806, + [12726] = 12726, + [12727] = 12727, + [12728] = 12435, + [12729] = 12432, + [12730] = 3808, + [12731] = 12415, + [12732] = 12617, + [12733] = 12412, + [12734] = 12650, + [12735] = 12651, + [12736] = 12652, + [12737] = 12654, + [12738] = 12416, + [12739] = 4017, + [12740] = 12440, + [12741] = 4018, + [12742] = 12446, + [12743] = 12743, + [12744] = 12744, + [12745] = 12676, + [12746] = 12422, + [12747] = 12680, + [12748] = 12417, + [12749] = 12435, + [12750] = 12441, + [12751] = 4019, + [12752] = 12432, + [12753] = 12687, + [12754] = 12415, + [12755] = 12690, + [12756] = 12427, + [12757] = 3899, + [12758] = 12551, + [12759] = 12440, + [12760] = 12415, + [12761] = 12416, + [12762] = 12432, + [12763] = 12448, + [12764] = 12449, + [12765] = 12450, + [12766] = 12651, + [12767] = 12440, + [12768] = 12451, + [12769] = 12415, + [12770] = 12446, + [12771] = 12441, + [12772] = 4032, + [12773] = 3828, + [12774] = 12676, + [12775] = 12452, + [12776] = 4033, + [12777] = 12680, + [12778] = 4036, + [12779] = 4037, + [12780] = 12417, + [12781] = 12448, + [12782] = 12687, + [12783] = 12449, + [12784] = 12450, + [12785] = 12690, + [12786] = 12451, + [12787] = 12551, + [12788] = 12452, + [12789] = 12441, + [12790] = 12416, + [12791] = 12458, + [12792] = 12461, + [12793] = 12458, + [12794] = 12446, + [12795] = 12462, + [12796] = 12676, + [12797] = 12680, + [12798] = 12417, + [12799] = 12687, + [12800] = 12690, + [12801] = 12461, + [12802] = 12551, + [12803] = 4038, + [12804] = 3900, + [12805] = 3901, + [12806] = 12467, + [12807] = 12468, + [12808] = 12446, + [12809] = 4039, + [12810] = 12676, + [12811] = 12680, + [12812] = 12417, + [12813] = 12462, + [12814] = 4040, + [12815] = 12687, + [12816] = 4042, + [12817] = 12690, + [12818] = 3902, + [12819] = 4201, + [12820] = 12551, + [12821] = 4044, + [12822] = 3905, + [12823] = 3906, + [12824] = 12446, + [12825] = 12676, + [12826] = 4045, + [12827] = 4050, + [12828] = 12680, + [12829] = 4051, + [12830] = 12467, + [12831] = 12417, + [12832] = 12468, + [12833] = 12687, + [12834] = 12415, + [12835] = 12690, + [12836] = 12415, + [12837] = 12416, + [12838] = 12551, + [12839] = 12416, + [12840] = 3907, + [12841] = 12676, + [12842] = 3663, + [12843] = 12448, + [12844] = 12446, + [12845] = 12422, + [12846] = 12676, + [12847] = 12427, + [12848] = 12449, + [12849] = 12680, + [12850] = 12417, + [12851] = 12432, + [12852] = 12452, + [12853] = 12687, + [12854] = 12690, + [12855] = 12551, + [12856] = 12450, + [12857] = 12446, + [12858] = 12676, + [12859] = 12451, + [12860] = 3819, + [12861] = 3823, + [12862] = 12680, + [12863] = 3721, + [12864] = 12415, + [12865] = 12416, + [12866] = 12417, + [12867] = 4061, + [12868] = 12687, + [12869] = 4062, + [12870] = 12690, + [12871] = 4063, + [12872] = 4064, + [12873] = 12551, + [12874] = 12452, + [12875] = 4065, + [12876] = 12427, + [12877] = 4068, + [12878] = 4076, + [12879] = 12432, + [12880] = 12452, + [12881] = 12446, + [12882] = 4077, + [12883] = 12676, + [12884] = 4078, + [12885] = 4080, + [12886] = 3770, + [12887] = 12680, + [12888] = 3778, + [12889] = 12652, + [12890] = 4081, + [12891] = 12417, + [12892] = 12687, + [12893] = 4089, + [12894] = 12690, + [12895] = 3913, + [12896] = 3789, + [12897] = 12551, + [12898] = 12415, + [12899] = 12416, + [12900] = 12415, + [12901] = 12676, + [12902] = 12416, + [12903] = 12429, + [12904] = 4093, + [12905] = 12676, + [12906] = 12676, + [12907] = 4094, + [12908] = 12676, + [12909] = 12458, + [12910] = 12676, + [12911] = 4098, + [12912] = 12676, + [12913] = 12461, + [12914] = 12676, + [12915] = 12676, + [12916] = 12415, + [12917] = 4100, + [12918] = 12416, + [12919] = 12462, + [12920] = 12416, + [12921] = 12427, + [12922] = 12922, + [12923] = 4110, + [12924] = 4111, + [12925] = 12432, + [12926] = 12452, + [12927] = 12415, + [12928] = 12416, + [12929] = 4120, + [12930] = 4125, + [12931] = 4135, + [12932] = 12467, + [12933] = 4140, + [12934] = 12427, + [12935] = 4141, + [12936] = 12468, + [12937] = 4142, + [12938] = 4143, + [12939] = 4144, + [12940] = 12415, + [12941] = 4145, + [12942] = 12416, + [12943] = 12415, + [12944] = 4146, + [12945] = 4147, + [12946] = 12432, + [12947] = 12415, + [12948] = 12415, + [12949] = 12416, + [12950] = 12416, + [12951] = 12415, + [12952] = 12715, + [12953] = 4160, + [12954] = 12545, + [12955] = 4161, + [12956] = 12427, + [12957] = 4162, + [12958] = 4165, + [12959] = 12726, + [12960] = 12727, + [12961] = 12432, + [12962] = 12452, + [12963] = 12416, + [12964] = 12469, + [12965] = 12723, + [12966] = 12431, + [12967] = 12415, + [12968] = 4168, + [12969] = 12715, + [12970] = 12545, + [12971] = 12467, + [12972] = 12726, + [12973] = 12727, + [12974] = 3825, + [12975] = 12469, + [12976] = 12415, + [12977] = 12416, + [12978] = 12723, + [12979] = 12431, + [12980] = 12980, + [12981] = 12469, + [12982] = 12982, + [12983] = 12723, + [12984] = 12431, + [12985] = 12427, + [12986] = 12415, + [12987] = 12432, + [12988] = 12452, + [12989] = 12989, + [12990] = 12416, + [12991] = 12469, + [12992] = 12723, + [12993] = 12431, + [12994] = 12994, + [12995] = 12422, + [12996] = 12435, + [12997] = 12469, + [12998] = 12998, + [12999] = 12999, + [13000] = 12723, + [13001] = 12431, + [13002] = 12415, + [13003] = 12416, + [13004] = 12469, + [13005] = 3914, + [13006] = 13006, + [13007] = 12723, + [13008] = 12431, + [13009] = 12429, + [13010] = 12427, + [13011] = 12427, + [13012] = 12469, + [13013] = 12432, + [13014] = 12452, + [13015] = 12723, + [13016] = 12431, + [13017] = 12415, + [13018] = 12415, + [13019] = 12469, + [13020] = 12723, + [13021] = 12431, + [13022] = 3788, + [13023] = 3813, + [13024] = 12469, + [13025] = 3822, + [13026] = 12415, + [13027] = 12723, + [13028] = 12431, + [13029] = 12416, + [13030] = 3826, + [13031] = 12435, + [13032] = 12432, + [13033] = 3864, + [13034] = 12427, + [13035] = 12440, + [13036] = 12432, + [13037] = 12452, + [13038] = 12452, + [13039] = 12441, + [13040] = 13040, + [13041] = 3865, + [13042] = 12415, + [13043] = 12416, + [13044] = 12415, + [13045] = 12468, + [13046] = 12466, + [13047] = 12427, + [13048] = 12477, + [13049] = 12448, + [13050] = 12432, + [13051] = 12452, + [13052] = 12449, + [13053] = 12416, + [13054] = 12450, + [13055] = 12466, + [13056] = 12451, + [13057] = 12477, + [13058] = 3827, + [13059] = 12452, + [13060] = 13060, + [13061] = 3871, + [13062] = 12415, + [13063] = 12416, + [13064] = 12416, + [13065] = 12415, + [13066] = 12416, + [13067] = 12427, + [13068] = 12432, + [13069] = 12458, + [13070] = 12461, + [13071] = 12415, + [13072] = 12416, + [13073] = 13073, + [13074] = 12462, + [13075] = 12412, + [13076] = 12427, + [13077] = 12650, + [13078] = 12432, + [13079] = 12429, + [13080] = 13080, + [13081] = 13081, + [13082] = 13081, + [13083] = 13083, + [13084] = 13084, + [13085] = 13085, + [13086] = 13086, + [13087] = 13080, + [13088] = 13081, + [13089] = 13089, + [13090] = 13081, + [13091] = 13091, + [13092] = 13092, + [13093] = 13093, + [13094] = 13094, + [13095] = 13095, + [13096] = 13092, + [13097] = 13092, + [13098] = 13098, + [13099] = 13099, + [13100] = 13092, + [13101] = 13101, + [13102] = 13102, + [13103] = 13103, + [13104] = 13104, + [13105] = 13091, + [13106] = 13106, + [13107] = 13107, + [13108] = 13108, + [13109] = 13101, + [13110] = 13110, + [13111] = 13111, + [13112] = 13081, + [13113] = 13104, + [13114] = 13114, + [13115] = 13103, + [13116] = 13081, + [13117] = 13117, + [13118] = 13118, + [13119] = 13092, + [13120] = 13120, + [13121] = 13121, + [13122] = 13092, + [13123] = 13123, + [13124] = 13124, + [13125] = 13124, + [13126] = 13126, + [13127] = 13127, + [13128] = 13128, + [13129] = 13129, + [13130] = 13130, + [13131] = 13131, + [13132] = 13132, + [13133] = 13132, + [13134] = 13081, + [13135] = 13092, + [13136] = 13136, + [13137] = 13131, + [13138] = 13092, + [13139] = 13139, + [13140] = 13092, + [13141] = 13092, + [13142] = 13129, + [13143] = 13102, + [13144] = 13129, + [13145] = 13098, + [13146] = 13146, + [13147] = 13130, + [13148] = 13081, + [13149] = 13132, + [13150] = 13130, + [13151] = 13094, + [13152] = 13152, + [13153] = 13092, + [13154] = 13103, + [13155] = 13092, + [13156] = 13156, + [13157] = 13132, + [13158] = 13095, + [13159] = 13102, + [13160] = 13102, + [13161] = 13111, + [13162] = 13162, + [13163] = 13092, + [13164] = 13164, + [13165] = 13102, + [13166] = 13095, + [13167] = 13106, + [13168] = 13168, + [13169] = 13102, + [13170] = 13106, + [13171] = 13120, + [13172] = 13172, + [13173] = 13173, + [13174] = 13106, + [13175] = 13124, + [13176] = 13176, + [13177] = 13126, + [13178] = 13178, + [13179] = 13128, + [13180] = 13081, + [13181] = 13173, + [13182] = 13104, + [13183] = 13183, + [13184] = 13092, + [13185] = 13185, + [13186] = 13083, + [13187] = 13092, + [13188] = 13098, + [13189] = 13084, + [13190] = 13190, + [13191] = 13191, + [13192] = 13192, + [13193] = 13103, + [13194] = 13194, + [13195] = 13146, + [13196] = 13085, + [13197] = 13162, + [13198] = 13111, + [13199] = 13095, + [13200] = 13176, + [13201] = 13131, + [13202] = 13120, + [13203] = 13146, + [13204] = 13131, + [13205] = 13092, + [13206] = 13124, + [13207] = 13083, + [13208] = 13126, + [13209] = 13128, + [13210] = 13083, + [13211] = 13084, + [13212] = 13185, + [13213] = 13080, + [13214] = 13214, + [13215] = 13081, + [13216] = 13081, + [13217] = 13098, + [13218] = 13091, + [13219] = 13084, + [13220] = 13103, + [13221] = 13092, + [13222] = 13107, + [13223] = 13092, + [13224] = 13111, + [13225] = 13080, + [13226] = 13226, + [13227] = 13173, + [13228] = 13081, + [13229] = 13094, + [13230] = 13080, + [13231] = 13102, + [13232] = 13120, + [13233] = 13092, + [13234] = 13081, + [13235] = 13092, + [13236] = 13124, + [13237] = 13185, + [13238] = 13126, + [13239] = 13194, + [13240] = 13128, + [13241] = 13092, + [13242] = 13085, + [13243] = 13106, + [13244] = 13098, + [13245] = 13176, + [13246] = 13123, + [13247] = 13247, + [13248] = 13103, + [13249] = 13162, + [13250] = 13092, + [13251] = 13092, + [13252] = 13092, + [13253] = 13194, + [13254] = 13085, + [13255] = 13111, + [13256] = 13176, + [13257] = 13247, + [13258] = 13136, + [13259] = 13214, + [13260] = 13130, + [13261] = 13101, + [13262] = 13081, + [13263] = 13104, + [13264] = 13083, + [13265] = 13120, + [13266] = 13084, + [13267] = 13081, + [13268] = 13092, + [13269] = 13081, + [13270] = 13124, + [13271] = 13081, + [13272] = 13126, + [13273] = 13128, + [13274] = 13101, + [13275] = 13095, + [13276] = 13214, + [13277] = 13092, + [13278] = 13091, + [13279] = 13146, + [13280] = 13091, + [13281] = 13098, + [13282] = 13282, + [13283] = 13104, + [13284] = 13284, + [13285] = 13092, + [13286] = 13103, + [13287] = 13092, + [13288] = 13107, + [13289] = 13092, + [13290] = 13290, + [13291] = 13081, + [13292] = 13111, + [13293] = 13131, + [13294] = 13092, + [13295] = 13094, + [13296] = 13120, + [13297] = 13107, + [13298] = 13124, + [13299] = 13299, + [13300] = 13126, + [13301] = 13128, + [13302] = 13302, + [13303] = 13107, + [13304] = 13099, + [13305] = 13098, + [13306] = 13092, + [13307] = 13092, + [13308] = 13308, + [13309] = 13092, + [13310] = 13103, + [13311] = 13094, + [13312] = 13162, + [13313] = 13095, + [13314] = 13106, + [13315] = 13080, + [13316] = 13081, + [13317] = 13092, + [13318] = 13081, + [13319] = 13111, + [13320] = 13126, + [13321] = 13173, + [13322] = 13322, + [13323] = 13092, + [13324] = 13092, + [13325] = 13081, + [13326] = 13120, + [13327] = 13322, + [13328] = 13104, + [13329] = 13124, + [13330] = 13081, + [13331] = 13126, + [13332] = 13128, + [13333] = 13333, + [13334] = 13146, + [13335] = 13081, + [13336] = 13336, + [13337] = 13092, + [13338] = 13120, + [13339] = 13129, + [13340] = 13130, + [13341] = 13341, + [13342] = 13098, + [13343] = 13132, + [13344] = 13098, + [13345] = 13103, + [13346] = 3738, + [13347] = 13111, + [13348] = 13101, + [13349] = 13081, + [13350] = 13350, + [13351] = 13083, + [13352] = 13083, + [13353] = 13111, + [13354] = 13084, + [13355] = 13355, + [13356] = 13080, + [13357] = 13081, + [13358] = 13081, + [13359] = 13081, + [13360] = 13092, + [13361] = 13092, + [13362] = 13081, + [13363] = 13083, + [13364] = 13084, + [13365] = 13080, + [13366] = 13081, + [13367] = 13081, + [13368] = 13084, + [13369] = 13247, + [13370] = 13094, + [13371] = 13092, + [13372] = 13092, + [13373] = 13173, + [13374] = 13101, + [13375] = 13375, + [13376] = 13322, + [13377] = 13092, + [13378] = 13378, + [13379] = 13379, + [13380] = 13247, + [13381] = 13185, + [13382] = 13102, + [13383] = 13106, + [13384] = 13091, + [13385] = 13131, + [13386] = 13185, + [13387] = 13101, + [13388] = 13092, + [13389] = 13104, + [13390] = 13081, + [13391] = 13391, + [13392] = 13081, + [13393] = 13092, + [13394] = 13094, + [13395] = 13092, + [13396] = 13391, + [13397] = 13081, + [13398] = 13083, + [13399] = 13092, + [13400] = 13084, + [13401] = 13401, + [13402] = 13194, + [13403] = 13391, + [13404] = 13085, + [13405] = 13176, + [13406] = 13092, + [13407] = 13407, + [13408] = 13081, + [13409] = 13247, + [13410] = 13092, + [13411] = 13214, + [13412] = 13412, + [13413] = 13092, + [13414] = 13081, + [13415] = 13099, + [13416] = 13194, + [13417] = 13417, + [13418] = 13162, + [13419] = 13085, + [13420] = 13099, + [13421] = 13173, + [13422] = 13131, + [13423] = 13129, + [13424] = 13214, + [13425] = 13091, + [13426] = 13130, + [13427] = 13099, + [13428] = 13132, + [13429] = 13429, + [13430] = 13081, + [13431] = 13431, + [13432] = 13432, + [13433] = 13092, + [13434] = 13434, + [13435] = 13107, + [13436] = 13436, + [13437] = 13437, + [13438] = 13438, + [13439] = 13081, + [13440] = 13092, + [13441] = 13173, + [13442] = 13081, + [13443] = 13081, + [13444] = 13107, + [13445] = 13092, + [13446] = 13094, + [13447] = 13131, + [13448] = 13448, + [13449] = 13092, + [13450] = 13099, + [13451] = 13131, + [13452] = 13146, + [13453] = 13098, + [13454] = 13099, + [13455] = 13455, + [13456] = 13102, + [13457] = 13176, + [13458] = 13106, + [13459] = 13103, + [13460] = 13438, + [13461] = 13081, + [13462] = 13081, + [13463] = 13101, + [13464] = 13081, + [13465] = 13081, + [13466] = 13089, + [13467] = 13146, + [13468] = 13185, + [13469] = 13083, + [13470] = 13084, + [13471] = 13471, + [13472] = 13099, + [13473] = 13080, + [13474] = 13104, + [13475] = 13146, + [13476] = 13162, + [13477] = 13095, + [13478] = 13081, + [13479] = 13162, + [13480] = 13081, + [13481] = 13092, + [13482] = 13185, + [13483] = 13092, + [13484] = 13111, + [13485] = 13092, + [13486] = 13247, + [13487] = 13487, + [13488] = 13089, + [13489] = 13489, + [13490] = 13173, + [13491] = 13092, + [13492] = 13092, + [13493] = 13146, + [13494] = 13162, + [13495] = 13081, + [13496] = 13194, + [13497] = 13085, + [13498] = 13095, + [13499] = 13499, + [13500] = 13162, + [13501] = 13092, + [13502] = 13089, + [13503] = 13095, + [13504] = 13129, + [13505] = 13505, + [13506] = 13302, + [13507] = 13120, + [13508] = 13081, + [13509] = 13092, + [13510] = 13092, + [13511] = 13124, + [13512] = 13176, + [13513] = 13126, + [13514] = 13089, + [13515] = 13247, + [13516] = 13194, + [13517] = 13101, + [13518] = 13128, + [13519] = 13085, + [13520] = 13520, + [13521] = 13104, + [13522] = 13522, + [13523] = 13523, + [13524] = 13081, + [13525] = 13089, + [13526] = 13417, + [13527] = 13094, + [13528] = 13173, + [13529] = 13092, + [13530] = 13094, + [13531] = 13436, + [13532] = 13081, + [13533] = 13214, + [13534] = 13437, + [13535] = 13185, + [13536] = 13081, + [13537] = 13537, + [13538] = 13089, + [13539] = 13099, + [13540] = 13092, + [13541] = 13081, + [13542] = 13542, + [13543] = 13214, + [13544] = 13092, + [13545] = 13185, + [13546] = 13092, + [13547] = 13547, + [13548] = 13505, + [13549] = 13549, + [13550] = 13099, + [13551] = 13091, + [13552] = 13089, + [13553] = 13553, + [13554] = 13554, + [13555] = 13555, + [13556] = 13194, + [13557] = 13085, + [13558] = 13107, + [13559] = 13092, + [13560] = 13117, + [13561] = 13089, + [13562] = 13302, + [13563] = 13176, + [13564] = 13176, + [13565] = 13146, + [13566] = 13162, + [13567] = 13129, + [13568] = 13247, + [13569] = 13081, + [13570] = 13130, + [13571] = 13571, + [13572] = 13132, + [13573] = 13110, + [13574] = 13095, + [13575] = 13089, + [13576] = 13139, + [13577] = 13577, + [13578] = 13247, + [13579] = 13168, + [13580] = 13092, + [13581] = 13178, + [13582] = 13214, + [13583] = 13081, + [13584] = 13091, + [13585] = 13131, + [13586] = 13214, + [13587] = 13092, + [13588] = 13214, + [13589] = 13589, + [13590] = 13590, + [13591] = 13417, + [13592] = 13375, + [13593] = 13436, + [13594] = 13437, + [13595] = 13107, + [13596] = 13102, + [13597] = 13106, + [13598] = 13505, + [13599] = 13599, + [13600] = 13091, + [13601] = 13129, + [13602] = 13602, + [13603] = 13555, + [13604] = 13130, + [13605] = 13081, + [13606] = 13606, + [13607] = 13110, + [13608] = 13092, + [13609] = 13555, + [13610] = 13081, + [13611] = 13127, + [13612] = 13092, + [13613] = 13156, + [13614] = 13081, + [13615] = 13107, + [13616] = 13471, + [13617] = 13129, + [13618] = 13130, + [13619] = 13139, + [13620] = 13168, + [13621] = 13438, + [13622] = 13127, + [13623] = 13130, + [13624] = 13178, + [13625] = 13156, + [13626] = 13626, + [13627] = 13627, + [13628] = 13132, + [13629] = 13081, + [13630] = 13471, + [13631] = 13631, + [13632] = 13132, + [13633] = 13092, + [13634] = 13081, + [13635] = 13146, + [13636] = 13117, + [13637] = 13162, + [13638] = 13092, + [13639] = 13639, + [13640] = 13173, + [13641] = 13123, + [13642] = 13101, + [13643] = 13194, + [13644] = 13131, + [13645] = 13095, + [13646] = 13129, + [13647] = 13185, + [13648] = 13081, + [13649] = 13081, + [13650] = 13132, + [13651] = 13081, + [13652] = 13083, + [13653] = 13375, + [13654] = 13128, + [13655] = 13094, + [13656] = 13092, + [13657] = 13092, + [13658] = 13084, + [13659] = 13080, + [13660] = 13081, + [13661] = 13194, + [13662] = 13085, + [13663] = 13176, + [13664] = 13104, + [13665] = 13665, + [13666] = 13666, + [13667] = 13667, + [13668] = 13668, + [13669] = 13669, + [13670] = 13670, + [13671] = 13671, + [13672] = 13672, + [13673] = 13673, + [13674] = 13674, + [13675] = 13675, + [13676] = 13676, + [13677] = 13677, + [13678] = 13678, + [13679] = 13679, + [13680] = 13680, + [13681] = 13681, + [13682] = 13682, + [13683] = 13681, + [13684] = 13684, + [13685] = 13685, + [13686] = 13686, + [13687] = 13687, + [13688] = 13688, + [13689] = 13689, + [13690] = 13690, + [13691] = 13691, + [13692] = 13692, + [13693] = 13693, + [13694] = 13694, + [13695] = 13695, + [13696] = 13696, + [13697] = 13697, + [13698] = 13698, + [13699] = 13699, + [13700] = 13700, + [13701] = 13701, + [13702] = 13702, + [13703] = 13703, + [13704] = 13704, + [13705] = 13692, + [13706] = 13706, + [13707] = 13707, + [13708] = 13708, + [13709] = 13665, + [13710] = 13710, + [13711] = 13711, + [13712] = 13712, + [13713] = 13713, + [13714] = 13714, + [13715] = 13681, + [13716] = 13716, + [13717] = 13717, + [13718] = 13718, + [13719] = 13719, + [13720] = 13720, + [13721] = 13721, + [13722] = 13722, + [13723] = 13679, + [13724] = 13724, + [13725] = 13725, + [13726] = 13726, + [13727] = 13727, + [13728] = 13728, + [13729] = 13729, + [13730] = 13682, + [13731] = 13692, + [13732] = 13732, + [13733] = 13733, + [13734] = 13734, + [13735] = 13725, + [13736] = 13680, + [13737] = 13737, + [13738] = 13703, + [13739] = 13712, + [13740] = 13696, + [13741] = 13737, + [13742] = 13742, + [13743] = 13743, + [13744] = 13729, + [13745] = 13732, + [13746] = 13746, + [13747] = 13681, + [13748] = 13703, + [13749] = 13749, + [13750] = 13750, + [13751] = 13751, + [13752] = 13752, + [13753] = 13746, + [13754] = 13712, + [13755] = 13755, + [13756] = 13756, + [13757] = 13737, + [13758] = 13707, + [13759] = 13759, + [13760] = 13729, + [13761] = 13750, + [13762] = 13685, + [13763] = 13763, + [13764] = 13686, + [13765] = 13729, + [13766] = 13692, + [13767] = 13767, + [13768] = 13768, + [13769] = 13684, + [13770] = 13732, + [13771] = 13679, + [13772] = 13746, + [13773] = 13692, + [13774] = 13774, + [13775] = 13775, + [13776] = 13776, + [13777] = 13777, + [13778] = 13681, + [13779] = 13779, + [13780] = 13780, + [13781] = 13781, + [13782] = 13696, + [13783] = 13783, + [13784] = 13784, + [13785] = 13732, + [13786] = 13746, + [13787] = 13787, + [13788] = 13788, + [13789] = 13688, + [13790] = 13790, + [13791] = 13791, + [13792] = 13792, + [13793] = 13677, + [13794] = 13750, + [13795] = 13679, + [13796] = 13796, + [13797] = 13797, + [13798] = 13681, + [13799] = 13799, + [13800] = 13800, + [13801] = 13801, + [13802] = 13669, + [13803] = 13803, + [13804] = 13804, + [13805] = 13805, + [13806] = 13681, + [13807] = 13756, + [13808] = 13681, + [13809] = 13809, + [13810] = 13810, + [13811] = 13804, + [13812] = 13812, + [13813] = 13813, + [13814] = 13814, + [13815] = 13752, + [13816] = 13816, + [13817] = 13817, + [13818] = 13818, + [13819] = 13819, + [13820] = 13755, + [13821] = 13750, + [13822] = 13822, + [13823] = 13823, + [13824] = 13824, + [13825] = 13825, + [13826] = 13826, + [13827] = 13827, + [13828] = 13828, + [13829] = 13752, + [13830] = 13692, + [13831] = 13831, + [13832] = 13832, + [13833] = 13755, + [13834] = 13834, + [13835] = 13835, + [13836] = 13752, + [13837] = 13837, + [13838] = 13681, + [13839] = 13700, + [13840] = 13803, + [13841] = 13755, + [13842] = 13842, + [13843] = 13843, + [13844] = 13844, + [13845] = 13681, + [13846] = 13767, + [13847] = 13847, + [13848] = 13694, + [13849] = 13790, + [13850] = 13850, + [13851] = 13666, + [13852] = 13852, + [13853] = 13768, + [13854] = 13837, + [13855] = 13812, + [13856] = 13856, + [13857] = 13824, + [13858] = 13681, + [13859] = 13859, + [13860] = 13860, + [13861] = 13692, + [13862] = 13862, + [13863] = 13816, + [13864] = 13718, + [13865] = 13865, + [13866] = 13728, + [13867] = 13801, + [13868] = 13868, + [13869] = 13869, + [13870] = 13870, + [13871] = 13871, + [13872] = 13872, + [13873] = 13690, + [13874] = 13767, + [13875] = 13691, + [13876] = 13768, + [13877] = 13877, + [13878] = 13878, + [13879] = 13774, + [13880] = 13880, + [13881] = 13681, + [13882] = 13882, + [13883] = 13681, + [13884] = 13668, + [13885] = 13665, + [13886] = 13886, + [13887] = 13887, + [13888] = 13888, + [13889] = 13889, + [13890] = 13890, + [13891] = 13743, + [13892] = 13692, + [13893] = 13720, + [13894] = 13711, + [13895] = 13775, + [13896] = 13692, + [13897] = 13897, + [13898] = 13695, + [13899] = 13681, + [13900] = 13900, + [13901] = 13901, + [13902] = 13902, + [13903] = 13903, + [13904] = 13749, + [13905] = 13905, + [13906] = 13906, + [13907] = 13907, + [13908] = 13908, + [13909] = 13777, + [13910] = 13779, + [13911] = 13780, + [13912] = 13783, + [13913] = 13671, + [13914] = 13767, + [13915] = 13703, + [13916] = 13712, + [13917] = 13784, + [13918] = 13737, + [13919] = 13768, + [13920] = 13920, + [13921] = 13729, + [13922] = 13732, + [13923] = 13746, + [13924] = 13924, + [13925] = 13925, + [13926] = 13926, + [13927] = 13681, + [13928] = 13728, + [13929] = 13696, + [13930] = 13692, + [13931] = 13931, + [13932] = 13932, + [13933] = 13788, + [13934] = 13692, + [13935] = 13711, + [13936] = 13689, + [13937] = 13814, + [13938] = 13870, + [13939] = 13878, + [13940] = 13880, + [13941] = 13774, + [13942] = 13775, + [13943] = 13943, + [13944] = 13670, + [13945] = 13698, + [13946] = 13776, + [13947] = 13947, + [13948] = 13681, + [13949] = 13750, + [13950] = 13688, + [13951] = 13925, + [13952] = 13752, + [13953] = 13755, + [13954] = 13779, + [13955] = 13791, + [13956] = 13677, + [13957] = 13706, + [13958] = 13958, + [13959] = 13777, + [13960] = 13960, + [13961] = 13779, + [13962] = 13962, + [13963] = 13743, + [13964] = 13964, + [13965] = 13681, + [13966] = 13767, + [13967] = 13797, + [13968] = 13768, + [13969] = 13969, + [13970] = 13970, + [13971] = 13971, + [13972] = 13972, + [13973] = 13749, + [13974] = 13780, + [13975] = 13920, + [13976] = 13976, + [13977] = 13783, + [13978] = 13669, + [13979] = 13803, + [13980] = 13980, + [13981] = 13679, + [13982] = 13774, + [13983] = 13668, + [13984] = 13775, + [13985] = 13784, + [13986] = 13671, + [13987] = 13900, + [13988] = 13988, + [13989] = 13674, + [13990] = 13675, + [13991] = 13676, + [13992] = 13777, + [13993] = 13678, + [13994] = 13868, + [13995] = 13692, + [13996] = 13682, + [13997] = 13779, + [13998] = 13681, + [13999] = 13685, + [14000] = 13686, + [14001] = 14001, + [14002] = 14002, + [14003] = 14003, + [14004] = 13690, + [14005] = 13691, + [14006] = 13780, + [14007] = 13869, + [14008] = 14008, + [14009] = 13695, + [14010] = 13697, + [14011] = 13681, + [14012] = 13783, + [14013] = 13700, + [14014] = 13701, + [14015] = 13702, + [14016] = 14016, + [14017] = 13704, + [14018] = 13784, + [14019] = 13788, + [14020] = 13707, + [14021] = 13708, + [14022] = 13788, + [14023] = 13688, + [14024] = 14024, + [14025] = 14025, + [14026] = 13716, + [14027] = 13717, + [14028] = 13721, + [14029] = 13722, + [14030] = 14030, + [14031] = 13725, + [14032] = 13726, + [14033] = 13727, + [14034] = 13728, + [14035] = 13796, + [14036] = 13796, + [14037] = 14037, + [14038] = 13692, + [14039] = 13693, + [14040] = 13799, + [14041] = 14041, + [14042] = 13800, + [14043] = 13749, + [14044] = 13801, + [14045] = 13776, + [14046] = 13728, + [14047] = 14047, + [14048] = 13784, + [14049] = 13688, + [14050] = 13776, + [14051] = 13681, + [14052] = 13924, + [14053] = 13692, + [14054] = 13901, + [14055] = 13674, + [14056] = 13791, + [14057] = 13677, + [14058] = 13814, + [14059] = 13675, + [14060] = 13947, + [14061] = 13805, + [14062] = 13797, + [14063] = 13692, + [14064] = 13925, + [14065] = 13669, + [14066] = 13799, + [14067] = 13803, + [14068] = 13681, + [14069] = 13756, + [14070] = 14070, + [14071] = 13958, + [14072] = 13800, + [14073] = 13810, + [14074] = 13962, + [14075] = 13804, + [14076] = 13812, + [14077] = 13816, + [14078] = 13817, + [14079] = 13711, + [14080] = 13972, + [14081] = 14081, + [14082] = 13801, + [14083] = 13920, + [14084] = 13976, + [14085] = 14085, + [14086] = 13825, + [14087] = 13826, + [14088] = 13980, + [14089] = 13828, + [14090] = 13831, + [14091] = 13668, + [14092] = 13832, + [14093] = 13791, + [14094] = 13671, + [14095] = 13676, + [14096] = 13834, + [14097] = 13678, + [14098] = 13871, + [14099] = 13677, + [14100] = 13682, + [14101] = 13818, + [14102] = 14102, + [14103] = 13685, + [14104] = 13686, + [14105] = 13835, + [14106] = 13692, + [14107] = 13797, + [14108] = 13690, + [14109] = 13691, + [14110] = 13872, + [14111] = 14111, + [14112] = 13776, + [14113] = 13695, + [14114] = 13697, + [14115] = 13842, + [14116] = 13681, + [14117] = 13700, + [14118] = 13701, + [14119] = 13702, + [14120] = 13669, + [14121] = 13704, + [14122] = 13844, + [14123] = 13680, + [14124] = 13707, + [14125] = 13708, + [14126] = 13847, + [14127] = 13694, + [14128] = 13790, + [14129] = 13805, + [14130] = 13716, + [14131] = 13717, + [14132] = 13721, + [14133] = 13722, + [14134] = 14134, + [14135] = 13725, + [14136] = 13726, + [14137] = 13727, + [14138] = 13684, + [14139] = 13665, + [14140] = 13711, + [14141] = 13689, + [14142] = 13693, + [14143] = 13703, + [14144] = 13712, + [14145] = 13714, + [14146] = 13756, + [14147] = 13803, + [14148] = 13703, + [14149] = 13712, + [14150] = 13719, + [14151] = 13737, + [14152] = 13824, + [14153] = 14153, + [14154] = 14154, + [14155] = 13924, + [14156] = 13729, + [14157] = 13732, + [14158] = 13746, + [14159] = 14159, + [14160] = 13737, + [14161] = 13814, + [14162] = 13667, + [14163] = 13947, + [14164] = 13750, + [14165] = 14030, + [14166] = 13810, + [14167] = 13925, + [14168] = 13752, + [14169] = 13804, + [14170] = 13755, + [14171] = 13837, + [14172] = 14172, + [14173] = 13729, + [14174] = 13958, + [14175] = 13817, + [14176] = 14176, + [14177] = 13962, + [14178] = 13767, + [14179] = 13768, + [14180] = 13812, + [14181] = 13692, + [14182] = 13732, + [14183] = 13972, + [14184] = 13816, + [14185] = 13817, + [14186] = 13920, + [14187] = 13976, + [14188] = 14188, + [14189] = 14189, + [14190] = 13681, + [14191] = 13980, + [14192] = 13774, + [14193] = 14193, + [14194] = 13668, + [14195] = 13775, + [14196] = 13681, + [14197] = 13671, + [14198] = 13676, + [14199] = 13779, + [14200] = 13678, + [14201] = 13780, + [14202] = 13783, + [14203] = 13682, + [14204] = 13825, + [14205] = 13784, + [14206] = 13685, + [14207] = 13686, + [14208] = 13826, + [14209] = 13788, + [14210] = 13828, + [14211] = 13690, + [14212] = 13691, + [14213] = 13774, + [14214] = 13697, + [14215] = 13688, + [14216] = 13695, + [14217] = 13697, + [14218] = 13831, + [14219] = 13746, + [14220] = 13700, + [14221] = 13701, + [14222] = 13702, + [14223] = 13832, + [14224] = 13704, + [14225] = 13902, + [14226] = 13834, + [14227] = 13707, + [14228] = 13708, + [14229] = 13835, + [14230] = 13692, + [14231] = 13826, + [14232] = 13796, + [14233] = 13716, + [14234] = 13717, + [14235] = 13721, + [14236] = 13722, + [14237] = 14237, + [14238] = 13725, + [14239] = 13726, + [14240] = 13727, + [14241] = 13672, + [14242] = 13809, + [14243] = 13924, + [14244] = 13890, + [14245] = 13799, + [14246] = 13800, + [14247] = 13801, + [14248] = 13842, + [14249] = 13814, + [14250] = 13750, + [14251] = 13947, + [14252] = 14252, + [14253] = 13805, + [14254] = 13796, + [14255] = 13925, + [14256] = 13692, + [14257] = 13692, + [14258] = 13756, + [14259] = 13844, + [14260] = 13752, + [14261] = 13810, + [14262] = 13958, + [14263] = 13816, + [14264] = 13692, + [14265] = 13962, + [14266] = 13817, + [14267] = 13755, + [14268] = 13826, + [14269] = 13847, + [14270] = 13828, + [14271] = 13972, + [14272] = 13831, + [14273] = 13694, + [14274] = 13920, + [14275] = 13976, + [14276] = 13832, + [14277] = 14277, + [14278] = 13692, + [14279] = 13980, + [14280] = 13834, + [14281] = 13790, + [14282] = 13668, + [14283] = 13835, + [14284] = 13681, + [14285] = 13671, + [14286] = 13676, + [14287] = 14287, + [14288] = 13678, + [14289] = 13799, + [14290] = 14102, + [14291] = 13682, + [14292] = 13713, + [14293] = 13694, + [14294] = 13685, + [14295] = 13686, + [14296] = 13790, + [14297] = 13800, + [14298] = 13801, + [14299] = 13690, + [14300] = 13691, + [14301] = 14301, + [14302] = 13824, + [14303] = 13767, + [14304] = 13695, + [14305] = 13697, + [14306] = 14306, + [14307] = 13768, + [14308] = 13700, + [14309] = 13701, + [14310] = 13702, + [14311] = 14159, + [14312] = 13704, + [14313] = 13681, + [14314] = 13824, + [14315] = 13707, + [14316] = 13708, + [14317] = 13692, + [14318] = 13796, + [14319] = 13805, + [14320] = 14320, + [14321] = 13716, + [14322] = 13717, + [14323] = 13721, + [14324] = 13722, + [14325] = 14325, + [14326] = 13725, + [14327] = 13726, + [14328] = 13727, + [14329] = 13756, + [14330] = 14330, + [14331] = 13924, + [14332] = 13868, + [14333] = 13869, + [14334] = 13871, + [14335] = 13872, + [14336] = 13774, + [14337] = 13814, + [14338] = 13775, + [14339] = 13947, + [14340] = 13897, + [14341] = 13908, + [14342] = 13681, + [14343] = 13925, + [14344] = 13777, + [14345] = 13692, + [14346] = 13779, + [14347] = 13780, + [14348] = 13783, + [14349] = 13784, + [14350] = 13958, + [14351] = 13692, + [14352] = 13792, + [14353] = 13962, + [14354] = 13788, + [14355] = 13688, + [14356] = 13810, + [14357] = 13702, + [14358] = 13843, + [14359] = 13972, + [14360] = 13681, + [14361] = 14361, + [14362] = 13920, + [14363] = 13976, + [14364] = 14364, + [14365] = 13796, + [14366] = 14366, + [14367] = 13980, + [14368] = 14368, + [14369] = 13828, + [14370] = 13668, + [14371] = 13799, + [14372] = 14372, + [14373] = 13671, + [14374] = 13676, + [14375] = 13800, + [14376] = 13678, + [14377] = 13801, + [14378] = 14378, + [14379] = 13682, + [14380] = 13850, + [14381] = 14381, + [14382] = 13685, + [14383] = 13686, + [14384] = 13706, + [14385] = 13666, + [14386] = 13743, + [14387] = 13690, + [14388] = 13691, + [14389] = 14389, + [14390] = 13804, + [14391] = 14391, + [14392] = 13695, + [14393] = 13697, + [14394] = 13665, + [14395] = 13692, + [14396] = 13700, + [14397] = 13701, + [14398] = 13702, + [14399] = 13711, + [14400] = 13704, + [14401] = 13692, + [14402] = 14402, + [14403] = 13707, + [14404] = 13708, + [14405] = 13812, + [14406] = 13825, + [14407] = 13681, + [14408] = 13805, + [14409] = 13716, + [14410] = 13717, + [14411] = 13721, + [14412] = 13722, + [14413] = 13681, + [14414] = 13725, + [14415] = 13726, + [14416] = 13727, + [14417] = 14306, + [14418] = 13692, + [14419] = 13924, + [14420] = 13749, + [14421] = 13679, + [14422] = 13960, + [14423] = 13756, + [14424] = 13710, + [14425] = 13814, + [14426] = 14426, + [14427] = 13947, + [14428] = 14159, + [14429] = 13667, + [14430] = 14430, + [14431] = 13925, + [14432] = 13810, + [14433] = 13816, + [14434] = 14434, + [14435] = 13706, + [14436] = 13804, + [14437] = 13812, + [14438] = 13958, + [14439] = 13681, + [14440] = 13681, + [14441] = 13962, + [14442] = 13816, + [14443] = 13817, + [14444] = 13681, + [14445] = 14445, + [14446] = 13817, + [14447] = 13972, + [14448] = 13703, + [14449] = 13712, + [14450] = 13920, + [14451] = 13976, + [14452] = 13825, + [14453] = 14453, + [14454] = 13826, + [14455] = 13980, + [14456] = 13749, + [14457] = 14457, + [14458] = 13668, + [14459] = 14459, + [14460] = 13737, + [14461] = 13671, + [14462] = 13676, + [14463] = 14463, + [14464] = 13678, + [14465] = 13828, + [14466] = 13665, + [14467] = 13682, + [14468] = 13825, + [14469] = 13711, + [14470] = 13685, + [14471] = 13686, + [14472] = 13831, + [14473] = 13703, + [14474] = 13681, + [14475] = 13690, + [14476] = 13691, + [14477] = 13712, + [14478] = 14478, + [14479] = 13752, + [14480] = 13695, + [14481] = 13697, + [14482] = 14482, + [14483] = 13755, + [14484] = 13700, + [14485] = 13701, + [14486] = 13702, + [14487] = 13832, + [14488] = 13704, + [14489] = 14489, + [14490] = 13774, + [14491] = 13707, + [14492] = 13708, + [14493] = 13931, + [14494] = 13728, + [14495] = 13729, + [14496] = 13775, + [14497] = 13716, + [14498] = 13717, + [14499] = 13721, + [14500] = 13722, + [14501] = 13732, + [14502] = 13725, + [14503] = 13726, + [14504] = 13727, + [14505] = 13746, + [14506] = 13826, + [14507] = 13924, + [14508] = 13756, + [14509] = 13810, + [14510] = 13834, + [14511] = 13835, + [14512] = 14512, + [14513] = 13814, + [14514] = 14514, + [14515] = 13947, + [14516] = 14237, + [14517] = 13672, + [14518] = 13932, + [14519] = 13925, + [14520] = 13842, + [14521] = 14521, + [14522] = 14522, + [14523] = 13844, + [14524] = 13847, + [14525] = 13694, + [14526] = 13958, + [14527] = 13790, + [14528] = 13743, + [14529] = 13962, + [14530] = 13828, + [14531] = 13831, + [14532] = 13749, + [14533] = 13832, + [14534] = 13692, + [14535] = 13972, + [14536] = 13824, + [14537] = 14537, + [14538] = 13920, + [14539] = 13976, + [14540] = 14540, + [14541] = 13805, + [14542] = 13834, + [14543] = 13980, + [14544] = 13750, + [14545] = 13681, + [14546] = 13668, + [14547] = 13831, + [14548] = 13776, + [14549] = 13671, + [14550] = 13676, + [14551] = 13681, + [14552] = 13678, + [14553] = 13692, + [14554] = 13682, + [14555] = 13969, + [14556] = 14556, + [14557] = 13980, + [14558] = 13686, + [14559] = 13752, + [14560] = 14560, + [14561] = 13791, + [14562] = 13690, + [14563] = 13691, + [14564] = 13677, + [14565] = 14565, + [14566] = 14566, + [14567] = 13695, + [14568] = 13697, + [14569] = 13755, + [14570] = 13835, + [14571] = 13700, + [14572] = 13701, + [14573] = 13702, + [14574] = 14574, + [14575] = 13704, + [14576] = 13797, + [14577] = 13681, + [14578] = 13707, + [14579] = 13708, + [14580] = 13970, + [14581] = 13669, + [14582] = 13803, + [14583] = 13964, + [14584] = 13716, + [14585] = 13717, + [14586] = 13721, + [14587] = 13722, + [14588] = 13728, + [14589] = 13725, + [14590] = 13726, + [14591] = 13727, + [14592] = 14592, + [14593] = 13767, + [14594] = 13924, + [14595] = 13768, + [14596] = 14596, + [14597] = 13692, + [14598] = 13814, + [14599] = 13681, + [14600] = 13947, + [14601] = 13842, + [14602] = 13681, + [14603] = 14603, + [14604] = 13925, + [14605] = 13774, + [14606] = 13775, + [14607] = 13665, + [14608] = 13711, + [14609] = 13752, + [14610] = 13958, + [14611] = 13755, + [14612] = 13777, + [14613] = 13962, + [14614] = 13844, + [14615] = 13727, + [14616] = 13847, + [14617] = 13972, + [14618] = 13964, + [14619] = 13779, + [14620] = 13920, + [14621] = 13976, + [14622] = 13692, + [14623] = 14623, + [14624] = 13780, + [14625] = 13980, + [14626] = 13783, + [14627] = 13681, + [14628] = 13668, + [14629] = 13696, + [14630] = 13784, + [14631] = 13671, + [14632] = 13676, + [14633] = 14633, + [14634] = 13678, + [14635] = 13682, + [14636] = 14636, + [14637] = 13903, + [14638] = 13685, + [14639] = 13686, + [14640] = 13796, + [14641] = 13681, + [14642] = 13812, + [14643] = 13690, + [14644] = 13691, + [14645] = 13788, + [14646] = 14646, + [14647] = 14647, + [14648] = 13695, + [14649] = 13697, + [14650] = 13700, + [14651] = 13701, + [14652] = 13702, + [14653] = 13704, + [14654] = 14654, + [14655] = 14655, + [14656] = 13707, + [14657] = 13708, + [14658] = 13688, + [14659] = 13716, + [14660] = 13717, + [14661] = 13721, + [14662] = 13722, + [14663] = 13725, + [14664] = 13726, + [14665] = 13727, + [14666] = 13681, + [14667] = 13694, + [14668] = 14668, + [14669] = 14669, + [14670] = 13665, + [14671] = 13962, + [14672] = 13711, + [14673] = 13972, + [14674] = 14674, + [14675] = 13980, + [14676] = 13676, + [14677] = 14677, + [14678] = 13678, + [14679] = 14679, + [14680] = 13697, + [14681] = 13692, + [14682] = 13692, + [14683] = 14683, + [14684] = 13962, + [14685] = 13980, + [14686] = 14686, + [14687] = 14687, + [14688] = 14688, + [14689] = 13962, + [14690] = 13980, + [14691] = 14691, + [14692] = 13790, + [14693] = 13703, + [14694] = 13962, + [14695] = 13980, + [14696] = 13712, + [14697] = 13826, + [14698] = 13796, + [14699] = 13962, + [14700] = 13980, + [14701] = 13776, + [14702] = 13737, + [14703] = 13828, + [14704] = 13962, + [14705] = 13980, + [14706] = 13799, + [14707] = 14707, + [14708] = 13681, + [14709] = 13962, + [14710] = 13980, + [14711] = 13800, + [14712] = 14712, + [14713] = 13729, + [14714] = 13962, + [14715] = 13980, + [14716] = 13732, + [14717] = 14717, + [14718] = 13746, + [14719] = 13801, + [14720] = 14720, + [14721] = 13681, + [14722] = 13681, + [14723] = 13750, + [14724] = 14724, + [14725] = 14725, + [14726] = 13752, + [14727] = 13755, + [14728] = 13692, + [14729] = 14729, + [14730] = 14730, + [14731] = 13681, + [14732] = 14732, + [14733] = 13824, + [14734] = 14734, + [14735] = 13767, + [14736] = 13768, + [14737] = 13805, + [14738] = 13681, + [14739] = 13843, + [14740] = 13692, + [14741] = 13665, + [14742] = 14742, + [14743] = 13711, + [14744] = 14744, + [14745] = 13752, + [14746] = 13756, + [14747] = 13755, + [14748] = 13774, + [14749] = 13775, + [14750] = 13777, + [14751] = 13779, + [14752] = 13780, + [14753] = 14753, + [14754] = 13783, + [14755] = 13784, + [14756] = 14756, + [14757] = 13788, + [14758] = 13688, + [14759] = 13696, + [14760] = 13681, + [14761] = 13743, + [14762] = 13810, + [14763] = 13804, + [14764] = 13812, + [14765] = 14765, + [14766] = 13681, + [14767] = 13816, + [14768] = 13796, + [14769] = 13817, + [14770] = 14770, + [14771] = 13799, + [14772] = 13800, + [14773] = 13801, + [14774] = 14774, + [14775] = 13924, + [14776] = 13825, + [14777] = 13805, + [14778] = 13826, + [14779] = 14779, + [14780] = 13756, + [14781] = 13828, + [14782] = 13832, + [14783] = 13831, + [14784] = 13832, + [14785] = 13810, + [14786] = 13804, + [14787] = 14787, + [14788] = 13681, + [14789] = 13962, + [14790] = 13692, + [14791] = 13812, + [14792] = 13816, + [14793] = 13817, + [14794] = 14794, + [14795] = 13825, + [14796] = 13826, + [14797] = 13823, + [14798] = 14732, + [14799] = 13971, + [14800] = 14070, + [14801] = 14592, + [14802] = 13828, + [14803] = 13831, + [14804] = 13832, + [14805] = 14366, + [14806] = 14391, + [14807] = 13681, + [14808] = 13834, + [14809] = 14809, + [14810] = 14521, + [14811] = 14811, + [14812] = 13834, + [14813] = 13835, + [14814] = 13835, + [14815] = 14815, + [14816] = 13842, + [14817] = 14817, + [14818] = 13926, + [14819] = 14085, + [14820] = 14820, + [14821] = 14821, + [14822] = 13844, + [14823] = 13831, + [14824] = 14744, + [14825] = 14025, + [14826] = 13665, + [14827] = 14827, + [14828] = 13711, + [14829] = 13681, + [14830] = 13847, + [14831] = 14817, + [14832] = 13752, + [14833] = 13755, + [14834] = 13694, + [14835] = 13742, + [14836] = 14729, + [14837] = 13763, + [14838] = 13790, + [14839] = 14839, + [14840] = 13882, + [14841] = 14841, + [14842] = 13759, + [14843] = 13681, + [14844] = 13716, + [14845] = 13824, + [14846] = 13696, + [14847] = 13692, + [14848] = 14848, + [14849] = 14849, + [14850] = 13834, + [14851] = 13717, + [14852] = 13692, + [14853] = 13960, + [14854] = 13823, + [14855] = 14732, + [14856] = 13971, + [14857] = 14070, + [14858] = 14592, + [14859] = 13842, + [14860] = 13775, + [14861] = 13816, + [14862] = 14366, + [14863] = 14391, + [14864] = 14809, + [14865] = 14521, + [14866] = 14811, + [14867] = 13780, + [14868] = 13692, + [14869] = 13791, + [14870] = 13777, + [14871] = 13897, + [14872] = 13835, + [14873] = 13926, + [14874] = 14085, + [14875] = 13681, + [14876] = 13749, + [14877] = 13681, + [14878] = 14744, + [14879] = 14025, + [14880] = 14827, + [14881] = 14881, + [14882] = 13844, + [14883] = 13847, + [14884] = 14817, + [14885] = 14885, + [14886] = 13694, + [14887] = 13810, + [14888] = 13742, + [14889] = 13763, + [14890] = 14890, + [14891] = 14891, + [14892] = 13882, + [14893] = 13790, + [14894] = 13759, + [14895] = 13960, + [14896] = 14732, + [14897] = 14897, + [14898] = 14898, + [14899] = 13692, + [14900] = 13900, + [14901] = 13703, + [14902] = 14902, + [14903] = 14903, + [14904] = 13901, + [14905] = 14827, + [14906] = 13902, + [14907] = 14907, + [14908] = 13824, + [14909] = 14817, + [14910] = 13972, + [14911] = 14911, + [14912] = 13681, + [14913] = 13742, + [14914] = 13763, + [14915] = 13706, + [14916] = 14916, + [14917] = 13882, + [14918] = 13692, + [14919] = 13759, + [14920] = 13960, + [14921] = 14732, + [14922] = 13681, + [14923] = 13676, + [14924] = 14924, + [14925] = 13712, + [14926] = 13903, + [14927] = 13749, + [14928] = 14928, + [14929] = 13905, + [14930] = 14827, + [14931] = 13665, + [14932] = 13681, + [14933] = 14933, + [14934] = 14817, + [14935] = 13711, + [14936] = 13752, + [14937] = 13755, + [14938] = 13742, + [14939] = 13763, + [14940] = 13906, + [14941] = 13907, + [14942] = 13882, + [14943] = 13677, + [14944] = 13759, + [14945] = 13960, + [14946] = 14732, + [14947] = 14947, + [14948] = 14948, + [14949] = 13799, + [14950] = 13681, + [14951] = 13692, + [14952] = 13980, + [14953] = 13756, + [14954] = 13692, + [14955] = 14827, + [14956] = 13704, + [14957] = 13737, + [14958] = 13681, + [14959] = 14817, + [14960] = 14811, + [14961] = 13679, + [14962] = 13692, + [14963] = 13742, + [14964] = 13763, + [14965] = 14965, + [14966] = 13681, + [14967] = 13882, + [14968] = 13681, + [14969] = 13759, + [14970] = 13960, + [14971] = 14732, + [14972] = 14809, + [14973] = 13800, + [14974] = 14974, + [14975] = 13797, + [14976] = 14976, + [14977] = 13681, + [14978] = 14978, + [14979] = 14787, + [14980] = 14827, + [14981] = 13776, + [14982] = 13832, + [14983] = 14983, + [14984] = 14817, + [14985] = 13692, + [14986] = 13669, + [14987] = 13681, + [14988] = 13742, + [14989] = 13763, + [14990] = 13791, + [14991] = 13677, + [14992] = 13882, + [14993] = 14993, + [14994] = 13759, + [14995] = 13960, + [14996] = 14732, + [14997] = 13681, + [14998] = 13803, + [14999] = 13797, + [15000] = 13692, + [15001] = 13681, + [15002] = 13877, + [15003] = 13696, + [15004] = 13817, + [15005] = 14827, + [15006] = 13797, + [15007] = 13877, + [15008] = 13669, + [15009] = 14817, + [15010] = 13947, + [15011] = 13678, + [15012] = 15012, + [15013] = 13742, + [15014] = 13763, + [15015] = 15015, + [15016] = 15016, + [15017] = 13882, + [15018] = 15018, + [15019] = 13759, + [15020] = 13960, + [15021] = 14732, + [15022] = 13696, + [15023] = 13665, + [15024] = 13711, + [15025] = 13752, + [15026] = 13755, + [15027] = 15015, + [15028] = 13905, + [15029] = 13706, + [15030] = 13803, + [15031] = 13692, + [15032] = 13692, + [15033] = 14817, + [15034] = 13799, + [15035] = 15035, + [15036] = 13728, + [15037] = 13742, + [15038] = 13763, + [15039] = 13708, + [15040] = 15040, + [15041] = 13882, + [15042] = 13791, + [15043] = 13759, + [15044] = 14732, + [15045] = 13681, + [15046] = 15046, + [15047] = 15047, + [15048] = 14827, + [15049] = 15049, + [15050] = 13743, + [15051] = 13908, + [15052] = 7981, + [15053] = 14817, + [15054] = 15015, + [15055] = 15055, + [15056] = 13694, + [15057] = 13742, + [15058] = 13763, + [15059] = 13733, + [15060] = 13882, + [15061] = 13924, + [15062] = 13759, + [15063] = 13692, + [15064] = 13976, + [15065] = 13742, + [15066] = 13679, + [15067] = 13749, + [15068] = 13692, + [15069] = 13834, + [15070] = 15070, + [15071] = 14787, + [15072] = 13801, + [15073] = 15073, + [15074] = 13790, + [15075] = 13835, + [15076] = 13681, + [15077] = 13776, + [15078] = 13692, + [15079] = 13692, + [15080] = 13906, + [15081] = 13907, + [15082] = 13681, + [15083] = 13692, + [15084] = 15084, + [15085] = 13665, + [15086] = 13711, + [15087] = 13752, + [15088] = 13755, + [15089] = 13791, + [15090] = 13677, + [15091] = 15091, + [15092] = 13681, + [15093] = 13797, + [15094] = 13724, + [15095] = 13669, + [15096] = 13803, + [15097] = 13783, + [15098] = 13692, + [15099] = 13706, + [15100] = 15100, + [15101] = 13681, + [15102] = 13706, + [15103] = 13931, + [15104] = 13932, + [15105] = 13800, + [15106] = 15106, + [15107] = 13728, + [15108] = 13681, + [15109] = 13692, + [15110] = 13842, + [15111] = 13714, + [15112] = 13814, + [15113] = 13743, + [15114] = 15114, + [15115] = 13681, + [15116] = 13818, + [15117] = 15040, + [15118] = 15070, + [15119] = 13870, + [15120] = 13878, + [15121] = 13880, + [15122] = 14330, + [15123] = 14774, + [15124] = 13681, + [15125] = 15125, + [15126] = 13719, + [15127] = 13805, + [15128] = 13810, + [15129] = 13842, + [15130] = 13825, + [15131] = 13743, + [15132] = 13665, + [15133] = 13711, + [15134] = 13752, + [15135] = 13755, + [15136] = 15136, + [15137] = 13804, + [15138] = 15040, + [15139] = 15070, + [15140] = 13749, + [15141] = 13844, + [15142] = 13958, + [15143] = 14330, + [15144] = 14774, + [15145] = 14237, + [15146] = 13706, + [15147] = 13706, + [15148] = 13670, + [15149] = 13698, + [15150] = 13721, + [15151] = 13776, + [15152] = 13947, + [15153] = 13665, + [15154] = 13711, + [15155] = 15155, + [15156] = 15156, + [15157] = 13692, + [15158] = 13722, + [15159] = 13850, + [15160] = 13925, + [15161] = 13692, + [15162] = 13665, + [15163] = 13711, + [15164] = 13692, + [15165] = 15165, + [15166] = 13791, + [15167] = 13677, + [15168] = 13733, + [15169] = 13958, + [15170] = 13681, + [15171] = 13703, + [15172] = 13665, + [15173] = 13960, + [15174] = 13711, + [15175] = 13712, + [15176] = 13962, + [15177] = 13737, + [15178] = 13797, + [15179] = 13844, + [15180] = 13729, + [15181] = 13732, + [15182] = 13746, + [15183] = 13847, + [15184] = 13847, + [15185] = 13669, + [15186] = 13750, + [15187] = 13726, + [15188] = 13752, + [15189] = 13755, + [15190] = 13803, + [15191] = 13692, + [15192] = 13969, + [15193] = 13970, + [15194] = 13788, + [15195] = 13692, + [15196] = 13972, + [15197] = 13701, + [15198] = 13728, + [15199] = 13681, + [15200] = 13767, + [15201] = 13681, + [15202] = 14001, + [15203] = 13768, + [15204] = 13681, + [15205] = 15155, + [15206] = 13920, + [15207] = 13976, + [15208] = 14001, + [15209] = 13665, + [15210] = 15155, + [15211] = 13692, + [15212] = 14001, + [15213] = 13679, + [15214] = 15155, + [15215] = 13774, + [15216] = 14001, + [15217] = 13775, + [15218] = 15155, + [15219] = 13777, + [15220] = 14001, + [15221] = 13779, + [15222] = 15155, + [15223] = 13780, + [15224] = 14001, + [15225] = 13783, + [15226] = 15155, + [15227] = 13784, + [15228] = 14001, + [15229] = 13679, + [15230] = 15155, + [15231] = 14001, + [15232] = 13788, + [15233] = 15155, + [15234] = 13688, + [15235] = 13685, +}; + +static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { + sym_member_expression, +}; + +static const TSMapSlice ts_supertype_map_slices[] = { + [sym_member_expression] = {.index = 0, .length = 2}, +}; + +static const TSSymbol ts_supertype_map_entries[] = { + [0] = + sym_implicit_member_expression, + sym_qualified_member_expression, +}; + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(459); + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 155, + '#', 764, + '&', 700, + '\'', 492, + '(', 588, + ')', 589, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 462, + ';', 716, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 769, + '{', 450, + 'A', 944, + 'a', 944, + 'B', 923, + 'b', 923, + 'C', 935, + 'c', 935, + 'D', 924, + 'd', 924, + 'E', 1021, + 'e', 1021, + 'F', 925, + 'f', 925, + 'G', 981, + 'g', 981, + 'I', 993, + 'i', 993, + 'L', 962, + 'l', 962, + 'M', 1054, + 'm', 1054, + 'N', 963, + 'n', 963, + 'O', 1073, + 'o', 1073, + 'P', 1075, + 'p', 1075, + 'R', 929, + 'r', 929, + 'S', 965, + 's', 965, + 'T', 989, + 't', 989, + 'U', 1045, + 'u', 1045, + 'W', 983, + 'w', 983, + 'X', 1056, + 'x', 1056, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(0); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (lookahead > 'G' && + (lookahead < '[' || 'g' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1: + if (lookahead == '\n') ADVANCE(460); + END_STATE(); + case 2: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 462, + ';', 716, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 846, + 'e', 846, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 834, + 'l', 834, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 3: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 462, + ';', 716, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 834, + 'l', 834, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(3); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 4: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + ';', 716, + '=', 497, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 846, + 'e', 846, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 5: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + ';', 716, + '=', 497, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(5); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 6: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '=', 497, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 846, + 'e', 846, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 801, + 's', 801, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(6); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 7: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '=', 497, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 802, + 's', 802, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(7); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 8: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 846, + 'e', 846, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 817, + 'l', 817, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(8); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 9: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 846, + 'e', 846, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 834, + 'l', 834, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 874, + 't', 874, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(9); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 10: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 817, + 'l', 817, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(10); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 11: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 834, + 'l', 834, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 875, + 't', 875, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(11); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 12: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 846, + 'e', 846, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 874, + 't', 874, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(12); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 13: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 846, + 'e', 846, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 819, + 'l', 819, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(13); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 14: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 875, + 't', 875, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(14); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 15: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 819, + 'l', 819, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(15); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 16: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 315, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + ';', 716, + '=', 497, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 847, + 'e', 847, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 17: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 315, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + ';', 716, + '=', 497, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(17); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 18: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + ';', 716, + '?', 717, + '[', 453, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 847, + 'e', 847, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(18); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 19: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + ';', 716, + '?', 717, + '[', 453, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(19); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 20: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '=', 497, + '?', 717, + '[', 453, + '_', 770, + 'A', 895, + 'a', 895, + 'D', 870, + 'd', 870, + 'E', 847, + 'e', 847, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(20); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 21: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '=', 497, + '?', 717, + '[', 453, + '_', 770, + 'A', 895, + 'a', 895, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(21); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 22: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 847, + 'e', 847, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 811, + 'n', 811, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 23: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 811, + 'n', 811, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 24: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 846, + 'e', 846, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 25: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(25); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 26: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 847, + 'e', 847, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'U', 869, + 'u', 869, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 27: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 847, + 'e', 847, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 819, + 'l', 819, + 'N', 876, + 'n', 876, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(27); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 28: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'U', 869, + 'u', 869, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(28); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 29: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 764, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 819, + 'l', 819, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 30: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 462, + ';', 716, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'C', 780, + 'c', 780, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 834, + 'l', 834, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(30); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 31: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 462, + ';', 716, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 834, + 'l', 834, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(31); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 32: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 462, + ';', 716, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 834, + 'l', 834, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 816, + 'w', 816, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(32); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 33: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 462, + ';', 716, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 834, + 'l', 834, + 'M', 879, + 'm', 879, + 'N', 811, + 'n', 811, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(33); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 34: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 462, + ';', 716, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 835, + 'l', 835, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(34); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 35: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + ';', 716, + '=', 497, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'C', 780, + 'c', 780, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(35); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 36: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + ';', 716, + '=', 497, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(36); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 37: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + ';', 716, + '=', 497, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 816, + 'w', 816, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(37); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 38: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + ';', 716, + '=', 497, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 811, + 'n', 811, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(38); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 39: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + ';', 716, + '=', 497, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 873, + 'l', 873, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(39); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 40: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '=', 497, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'C', 780, + 'c', 780, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 802, + 's', 802, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(40); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 41: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '=', 497, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 802, + 's', 802, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(41); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 42: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '=', 497, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 802, + 's', 802, + 'T', 889, + 't', 889, + 'W', 816, + 'w', 816, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(42); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 43: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '=', 497, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 811, + 'n', 811, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 802, + 's', 802, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 44: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '=', 497, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 873, + 'l', 873, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 802, + 's', 802, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 45: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'C', 780, + 'c', 780, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 817, + 'l', 817, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(45); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 46: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'C', 780, + 'c', 780, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 834, + 'l', 834, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 875, + 't', 875, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(46); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 47: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 817, + 'l', 817, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 48: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 817, + 'l', 817, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 816, + 'w', 816, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(48); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 49: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 817, + 'l', 817, + 'M', 879, + 'm', 879, + 'N', 811, + 'n', 811, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(49); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 50: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 834, + 'l', 834, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 875, + 't', 875, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(50); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 51: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 834, + 'l', 834, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 875, + 't', 875, + 'W', 816, + 'w', 816, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(51); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 52: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 834, + 'l', 834, + 'M', 879, + 'm', 879, + 'N', 811, + 'n', 811, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 875, + 't', 875, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(52); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 53: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 818, + 'l', 818, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(53); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 54: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 835, + 'l', 835, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 875, + 't', 875, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(54); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 55: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'C', 780, + 'c', 780, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 875, + 't', 875, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(55); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 56: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'C', 780, + 'c', 780, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 819, + 'l', 819, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(56); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 57: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 875, + 't', 875, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(57); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 58: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 875, + 't', 875, + 'W', 816, + 'w', 816, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(58); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 59: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 811, + 'n', 811, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 875, + 't', 875, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(59); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 60: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 819, + 'l', 819, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(60); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 61: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 819, + 'l', 819, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 816, + 'w', 816, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(61); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 62: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 819, + 'l', 819, + 'M', 879, + 'm', 879, + 'N', 811, + 'n', 811, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(62); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 63: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 820, + 'l', 820, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(63); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 64: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 873, + 'l', 873, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 875, + 't', 875, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(64); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 65: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + ';', 716, + '=', 497, + '?', 717, + '[', 453, + '_', 770, + 'C', 780, + 'c', 780, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(65); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 66: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + ';', 716, + '=', 497, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(66); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 67: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + ';', 716, + '=', 497, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 816, + 'w', 816, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(67); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 68: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + ';', 716, + '=', 497, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 811, + 'n', 811, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(68); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 69: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + ';', 716, + '=', 497, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 873, + 'l', 873, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(69); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 70: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + ';', 716, + '?', 717, + '[', 453, + '_', 770, + 'A', 868, + 'a', 868, + 'C', 780, + 'c', 780, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(70); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 71: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + ';', 716, + '?', 717, + '[', 453, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(71); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 72: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + ';', 716, + '?', 717, + '[', 453, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 816, + 'w', 816, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(72); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 73: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + ';', 716, + '?', 717, + '[', 453, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 811, + 'n', 811, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(73); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 74: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + ';', 716, + '?', 717, + '[', 453, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 873, + 'l', 873, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(74); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 75: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '=', 497, + '?', 717, + '[', 453, + '_', 770, + 'A', 895, + 'a', 895, + 'C', 780, + 'c', 780, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(75); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 76: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '=', 497, + '?', 717, + '[', 453, + '_', 770, + 'A', 895, + 'a', 895, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(76); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 77: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '=', 497, + '?', 717, + '[', 453, + '_', 770, + 'A', 895, + 'a', 895, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 816, + 'w', 816, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(77); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 78: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '=', 497, + '?', 717, + '[', 453, + '_', 770, + 'A', 895, + 'a', 895, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 811, + 'n', 811, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(78); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 79: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '=', 497, + '?', 717, + '[', 453, + '_', 770, + 'A', 895, + 'a', 895, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 873, + 'l', 873, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(79); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 80: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'C', 780, + 'c', 780, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 811, + 'n', 811, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(80); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 81: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 811, + 'n', 811, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 816, + 'w', 816, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(81); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 82: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 873, + 'l', 873, + 'N', 811, + 'n', 811, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(82); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 83: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'A', 868, + 'a', 868, + 'C', 780, + 'c', 780, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(83); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 84: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(84); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 85: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 816, + 'w', 816, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(85); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 86: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'N', 811, + 'n', 811, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(86); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 87: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 873, + 'l', 873, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(87); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 88: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'C', 780, + 'c', 780, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'U', 869, + 'u', 869, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(88); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 89: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'C', 780, + 'c', 780, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 819, + 'l', 819, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(89); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 90: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'U', 869, + 'u', 869, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(90); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 91: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'U', 869, + 'u', 869, + 'W', 816, + 'w', 816, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(91); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 92: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 811, + 'n', 811, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'U', 869, + 'u', 869, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(92); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 93: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 819, + 'l', 819, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(93); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 94: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 819, + 'l', 819, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 816, + 'w', 816, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(94); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 95: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 819, + 'l', 819, + 'N', 811, + 'n', 811, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(95); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 96: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 820, + 'l', 820, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 97: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 766, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 873, + 'l', 873, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'U', 869, + 'u', 869, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(97); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 98: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 452, + '&', 700, + '\'', 492, + '(', 588, + ')', 589, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 462, + ';', 716, + '<', 620, + '=', 497, + '>', 622, + '\\', 692, + '^', 690, + '_', 135, + 'A', 354, + 'a', 354, + 'B', 320, + 'b', 320, + 'C', 239, + 'c', 239, + 'D', 368, + 'd', 368, + 'E', 345, + 'e', 345, + 'F', 234, + 'f', 234, + 'I', 350, + 'i', 350, + 'L', 303, + 'l', 303, + 'M', 370, + 'm', 370, + 'N', 274, + 'n', 274, + 'O', 390, + 'o', 390, + 'R', 243, + 'r', 243, + 'S', 431, + 's', 431, + 'T', 317, + 't', 317, + 'U', 365, + 'u', 365, + 'W', 295, + 'w', 295, + 'X', 372, + 'x', 372, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(98); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + END_STATE(); + case 99: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 462, + ';', 716, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 846, + 'e', 846, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 834, + 'l', 834, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(99); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 100: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 462, + ';', 716, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 834, + 'l', 834, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(100); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 101: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + ';', 716, + '=', 497, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 846, + 'e', 846, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(101); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 102: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + ';', 716, + '=', 497, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 103: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '=', 497, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 846, + 'e', 846, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 801, + 's', 801, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(103); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 104: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '=', 497, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 802, + 's', 802, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 105: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 846, + 'e', 846, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 817, + 'l', 817, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(105); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 106: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 846, + 'e', 846, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 834, + 'l', 834, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 874, + 't', 874, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 107: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 817, + 'l', 817, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 108: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 823, + 'i', 823, + 'L', 834, + 'l', 834, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 875, + 't', 875, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(108); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 109: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 846, + 'e', 846, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 874, + 't', 874, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(109); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 110: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 846, + 'e', 846, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 819, + 'l', 819, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 111: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 875, + 't', 875, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(111); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 112: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '?', 717, + '[', 453, + '\\', 692, + '^', 690, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 819, + 'l', 819, + 'M', 879, + 'm', 879, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(112); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 113: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 315, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + ';', 716, + '=', 497, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 847, + 'e', 847, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 114: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 315, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + ';', 716, + '=', 497, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 115: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + ';', 716, + '?', 717, + '[', 453, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 847, + 'e', 847, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 116: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + ';', 716, + '?', 717, + '[', 453, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(116); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 117: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '=', 497, + '?', 717, + '[', 453, + '_', 770, + 'A', 895, + 'a', 895, + 'D', 870, + 'd', 870, + 'E', 847, + 'e', 847, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 118: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '=', 497, + '?', 717, + '[', 453, + '_', 770, + 'A', 895, + 'a', 895, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(118); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 119: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 847, + 'e', 847, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 811, + 'n', 811, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(119); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 120: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 811, + 'n', 811, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 121: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 846, + 'e', 846, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(121); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 122: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'A', 868, + 'a', 868, + 'D', 870, + 'd', 870, + 'E', 848, + 'e', 848, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 824, + 'i', 824, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'O', 891, + 'o', 891, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + 'X', 878, + 'x', 878, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 123: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 847, + 'e', 847, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'U', 869, + 'u', 869, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(123); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 124: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 847, + 'e', 847, + 'F', 775, + 'f', 775, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 819, + 'l', 819, + 'N', 876, + 'n', 876, + 'P', 887, + 'p', 887, + 'R', 798, + 'r', 798, + 'S', 799, + 's', 799, + 'T', 888, + 't', 888, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(124); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 125: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'U', 869, + 'u', 869, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(125); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 126: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 765, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 849, + 'e', 849, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 819, + 'l', 819, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 800, + 's', 800, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 127: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '#', 272, + '&', 315, + '\'', 492, + '(', 588, + ')', 589, + '*', 593, + '-', 172, + '.', 524, + ':', 461, + '[', 453, + '_', 769, + '{', 450, + 'R', 985, + 'r', 985, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (lookahead > '@' && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 128: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '#', 272, + '&', 699, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 697, + '.', 523, + '/', 691, + '<', 620, + '=', 497, + '>', 622, + '[', 453, + '\\', 692, + '^', 690, + '_', 769, + 'A', 1037, + 'a', 1037, + 'E', 1071, + 'e', 1071, + 'I', 1033, + 'i', 1033, + 'L', 1000, + 'l', 1000, + 'M', 1054, + 'm', 1054, + 'O', 1074, + 'o', 1074, + 'R', 985, + 'r', 985, + 'X', 1056, + 'x', 1056, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(128); + if (lookahead > 'A' && + (lookahead < '[' || 'a' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 129: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '#', 272, + '&', 699, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 697, + '.', 523, + '/', 691, + '[', 453, + '\\', 692, + '^', 690, + '_', 769, + 'A', 1037, + 'a', 1037, + 'E', 1071, + 'e', 1071, + 'I', 1034, + 'i', 1034, + 'M', 1054, + 'm', 1054, + 'O', 1074, + 'o', 1074, + 'R', 985, + 'r', 985, + 'X', 1056, + 'x', 1056, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(129); + if (lookahead > 'A' && + (lookahead < '[' || 'a' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 130: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '#', 319, + '&', 699, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 697, + '.', 523, + '/', 691, + ':', 461, + '<', 620, + '=', 497, + '>', 622, + '[', 453, + '\\', 692, + '^', 690, + '_', 769, + 'A', 1037, + 'a', 1037, + 'E', 1050, + 'e', 1050, + 'I', 1033, + 'i', 1033, + 'L', 1000, + 'l', 1000, + 'M', 1054, + 'm', 1054, + 'O', 1074, + 'o', 1074, + 'R', 985, + 'r', 985, + 'X', 1056, + 'x', 1056, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(130); + if (lookahead > 'A' && + (lookahead < '[' || 'a' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 131: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '#', 319, + '&', 699, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + '-', 697, + '.', 523, + '/', 691, + ':', 461, + '[', 453, + '\\', 692, + '^', 690, + '_', 769, + 'A', 1037, + 'a', 1037, + 'E', 1050, + 'e', 1050, + 'I', 1034, + 'i', 1034, + 'M', 1054, + 'm', 1054, + 'O', 1074, + 'o', 1074, + 'R', 985, + 'r', 985, + 'X', 1056, + 'x', 1056, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(131); + if (lookahead > 'A' && + (lookahead < '[' || 'a' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 132: + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '#', 319, + '\'', 492, + '(', 588, + '*', 593, + '.', 523, + ':', 461, + '=', 497, + '[', 453, + '_', 769, + 'E', 1051, + 'e', 1051, + 'R', 985, + 'r', 985, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(132); + if (lookahead > '@' && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 133: + if (lookahead == '\n') ADVANCE(463); + END_STATE(); + case 134: + if (lookahead == '\n') ADVANCE(463); + if (lookahead == '\r') ADVANCE(133); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(134); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); + END_STATE(); + case 135: + if (lookahead == '\n') ADVANCE(463); + if (lookahead == '\r') ADVANCE(133); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(135); + END_STATE(); + case 136: + if (lookahead == '\n') ADVANCE(654); + END_STATE(); + case 137: + if (lookahead == '\n') ADVANCE(210); + END_STATE(); + case 138: + if (lookahead == '\r') ADVANCE(136); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(138); + if (lookahead == '\n' || + lookahead == ':') ADVANCE(654); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); + END_STATE(); + case 139: + if (lookahead == '\r') ADVANCE(136); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(139); + if (lookahead == '\n' || + lookahead == ':') ADVANCE(654); + END_STATE(); + case 140: + ADVANCE_MAP( + '!', 525, + '"', 155, + '#', 452, + '&', 315, + '\'', 492, + '-', 172, + '.', 524, + '[', 453, + '_', 498, + 'E', 509, + 'e', 509, + 'F', 500, + 'f', 500, + 'N', 512, + 'n', 512, + 'R', 502, + 'r', 502, + 'T', 514, + 't', 514, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(520); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 141: + ADVANCE_MAP( + '!', 525, + '"', 156, + '#', 767, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '=', 497, + '[', 453, + '\\', 692, + '^', 690, + '_', 769, + 'A', 1037, + 'a', 1037, + 'E', 1023, + 'e', 1023, + 'F', 926, + 'f', 926, + 'I', 1034, + 'i', 1034, + 'M', 1054, + 'm', 1054, + 'N', 1055, + 'n', 1055, + 'O', 1074, + 'o', 1074, + 'R', 985, + 'r', 985, + 'S', 1116, + 's', 1116, + 'T', 1077, + 't', 1077, + 'X', 1056, + 'x', 1056, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(141); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (lookahead > 'A' && + (lookahead < '[' || 'a' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 142: + ADVANCE_MAP( + '!', 525, + '"', 156, + '#', 767, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '=', 497, + '[', 453, + '\\', 692, + '^', 690, + '_', 769, + 'A', 1037, + 'a', 1037, + 'E', 1023, + 'e', 1023, + 'F', 926, + 'f', 926, + 'I', 1034, + 'i', 1034, + 'M', 1054, + 'm', 1054, + 'N', 1055, + 'n', 1055, + 'O', 1074, + 'o', 1074, + 'R', 985, + 'r', 985, + 'T', 1077, + 't', 1077, + 'X', 1056, + 'x', 1056, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(142); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (lookahead > 'A' && + (lookahead < '[' || 'a' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 143: + ADVANCE_MAP( + '!', 525, + '"', 156, + '#', 767, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '=', 497, + '[', 453, + '\\', 692, + '^', 690, + '_', 769, + 'A', 1037, + 'a', 1037, + 'E', 1030, + 'e', 1030, + 'F', 926, + 'f', 926, + 'I', 1034, + 'i', 1034, + 'M', 1054, + 'm', 1054, + 'N', 1055, + 'n', 1055, + 'O', 1074, + 'o', 1074, + 'R', 985, + 'r', 985, + 'S', 1116, + 's', 1116, + 'T', 1077, + 't', 1077, + 'X', 1056, + 'x', 1056, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (lookahead > 'A' && + (lookahead < '[' || 'a' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 144: + ADVANCE_MAP( + '!', 525, + '"', 156, + '#', 767, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + ':', 461, + '=', 497, + '[', 453, + '\\', 692, + '^', 690, + '_', 769, + 'A', 1037, + 'a', 1037, + 'E', 1030, + 'e', 1030, + 'F', 926, + 'f', 926, + 'I', 1034, + 'i', 1034, + 'M', 1054, + 'm', 1054, + 'N', 1055, + 'n', 1055, + 'O', 1074, + 'o', 1074, + 'R', 985, + 'r', 985, + 'T', 1077, + 't', 1077, + 'X', 1056, + 'x', 1056, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (lookahead > 'A' && + (lookahead < '[' || 'a' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 145: + ADVANCE_MAP( + '!', 525, + '"', 156, + '#', 767, + '&', 315, + '\'', 492, + '(', 588, + ')', 589, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '=', 497, + '[', 453, + '_', 769, + 'E', 1032, + 'e', 1032, + 'F', 926, + 'f', 926, + 'N', 1055, + 'n', 1055, + 'R', 985, + 'r', 985, + 'T', 1077, + 't', 1077, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(145); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (lookahead > '@' && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 146: + ADVANCE_MAP( + '!', 525, + '"', 156, + '#', 767, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '=', 497, + '[', 453, + '_', 769, + 'E', 1024, + 'e', 1024, + 'F', 926, + 'f', 926, + 'N', 1055, + 'n', 1055, + 'R', 985, + 'r', 985, + 'T', 1077, + 't', 1077, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(146); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (lookahead > '@' && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 147: + ADVANCE_MAP( + '!', 525, + '"', 156, + '#', 767, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + ':', 461, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 858, + 'e', 858, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 821, + 's', 821, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(147); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 148: + ADVANCE_MAP( + '!', 525, + '"', 156, + '#', 767, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 858, + 'e', 858, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 811, + 'n', 811, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 821, + 's', 821, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 149: + ADVANCE_MAP( + '!', 525, + '"', 156, + '#', 767, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 858, + 'e', 858, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 873, + 'l', 873, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 821, + 's', 821, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(149); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 150: + ADVANCE_MAP( + '!', 525, + '"', 156, + '#', 767, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + '?', 717, + '[', 453, + '_', 770, + 'D', 870, + 'd', 870, + 'E', 857, + 'e', 857, + 'F', 776, + 'f', 776, + 'G', 797, + 'g', 797, + 'I', 825, + 'i', 825, + 'L', 871, + 'l', 871, + 'N', 876, + 'n', 876, + 'P', 893, + 'p', 893, + 'R', 798, + 'r', 798, + 'S', 821, + 's', 821, + 'T', 889, + 't', 889, + 'W', 829, + 'w', 829, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(150); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 151: + ADVANCE_MAP( + '!', 525, + '"', 156, + '#', 767, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + '[', 453, + '_', 769, + 'E', 1024, + 'e', 1024, + 'F', 926, + 'f', 926, + 'I', 1089, + 'i', 1089, + 'N', 1055, + 'n', 1055, + 'R', 985, + 'r', 985, + 'T', 1077, + 't', 1077, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(151); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (lookahead > '@' && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 152: + ADVANCE_MAP( + '!', 525, + '"', 156, + '#', 767, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + '[', 453, + '_', 769, + 'E', 1031, + 'e', 1031, + 'F', 926, + 'f', 926, + 'N', 1055, + 'n', 1055, + 'R', 985, + 'r', 985, + 'T', 1077, + 't', 1077, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(152); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (lookahead > '@' && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 153: + ADVANCE_MAP( + '!', 525, + '"', 156, + '#', 767, + '&', 315, + '\'', 492, + '(', 588, + '+', 696, + '-', 698, + '.', 524, + '[', 453, + '_', 769, + 'E', 1032, + 'e', 1032, + 'F', 926, + 'f', 926, + 'I', 1089, + 'i', 1089, + 'N', 1055, + 'n', 1055, + 'R', 985, + 'r', 985, + 'T', 1077, + 't', 1077, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (lookahead > '@' && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 154: + ADVANCE_MAP( + '!', 525, + '&', 315, + '\'', 492, + '-', 172, + '.', 524, + ':', 461, + '[', 453, + '_', 769, + 'E', 1025, + 'e', 1025, + 'R', 985, + 'r', 985, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(154); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (lookahead > '@' && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 155: + if (lookahead == '"') ADVANCE(740); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(522); + END_STATE(); + case 156: + if (lookahead == '"') ADVANCE(740); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(156); + END_STATE(); + case 157: + if (lookahead == '#') ADVANCE(761); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(550); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(168); + END_STATE(); + case 158: + if (lookahead == '#') ADVANCE(761); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(556); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(168); + END_STATE(); + case 159: + if (lookahead == '#') ADVANCE(761); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(546); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(168); + END_STATE(); + case 160: + if (lookahead == '#') ADVANCE(761); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(555); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(168); + END_STATE(); + case 161: + if (lookahead == '#') ADVANCE(761); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(165); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(157); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(168); + END_STATE(); + case 162: + if (lookahead == '#') ADVANCE(761); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(157); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(168); + END_STATE(); + case 163: + if (lookahead == '#') ADVANCE(761); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(166); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(168); + END_STATE(); + case 164: + if (lookahead == '#') ADVANCE(761); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(163); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(168); + END_STATE(); + case 165: + if (lookahead == '#') ADVANCE(761); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(158); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(168); + END_STATE(); + case 166: + if (lookahead == '#') ADVANCE(761); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(167); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(168); + END_STATE(); + case 167: + if (lookahead == '#') ADVANCE(761); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(570); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(168); + END_STATE(); + case 168: + if (lookahead == '#') ADVANCE(761); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(168); + END_STATE(); + case 169: + ADVANCE_MAP( + '#', 763, + '&', 315, + '\'', 492, + '(', 588, + ',', 587, + '-', 172, + '.', 447, + ':', 461, + '=', 497, + '_', 135, + 'E', 344, + 'e', 344, + 'I', 355, + 'i', 355, + 'M', 377, + 'm', 377, + 'R', 299, + 'r', 299, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(169); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + END_STATE(); + case 170: + ADVANCE_MAP( + '&', 315, + '\'', 492, + '-', 172, + '.', 447, + ':', 461, + '[', 453, + '_', 769, + 'E', 1025, + 'e', 1025, + 'N', 964, + 'n', 964, + 'R', 985, + 'r', 985, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (lookahead > '@' && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 171: + ADVANCE_MAP( + '&', 315, + '\'', 492, + '-', 172, + '.', 447, + ':', 461, + '[', 453, + '_', 769, + 'N', 964, + 'n', 964, + 'R', 985, + 'r', 985, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(171); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (lookahead > '@' && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 172: + if (lookahead == '&') ADVANCE(315); + if (lookahead == '.') ADVANCE(447); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + END_STATE(); + case 173: + ADVANCE_MAP( + '\'', 492, + '[', 453, + '_', 769, + 'E', 1047, + 'e', 1047, + 'F', 1122, + 'f', 1122, + 'P', 1083, + 'p', 1083, + 'R', 985, + 'r', 985, + 'S', 1118, + 's', 1118, + 'T', 1134, + 't', 1134, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(173); + if (lookahead > '@' && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 174: + ADVANCE_MAP( + '\'', 492, + '[', 453, + '_', 769, + 'F', 1122, + 'f', 1122, + 'P', 1083, + 'p', 1083, + 'R', 985, + 'r', 985, + 'S', 1121, + 's', 1121, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(174); + if (lookahead > '@' && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 175: + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '[') ADVANCE(453); + if (lookahead == '_') ADVANCE(769); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(985); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1119); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(175); + if (lookahead > '@' && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 176: + if (lookahead == '(') ADVANCE(204); + if (lookahead == ')') ADVANCE(199); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(176); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 177: + if (lookahead == '(') ADVANCE(204); + if (lookahead == ')') ADVANCE(665); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(204); + END_STATE(); + case 178: + if (lookahead == ')') ADVANCE(199); + if (lookahead == ',') ADVANCE(182); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(179); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 179: + if (lookahead == ')') ADVANCE(199); + if (lookahead == ',') ADVANCE(182); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(179); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 180: + if (lookahead == ')') ADVANCE(199); + if (lookahead == ',') ADVANCE(728); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(181); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 181: + if (lookahead == ')') ADVANCE(199); + if (lookahead == ',') ADVANCE(728); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(181); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 182: + if (lookahead == ')') ADVANCE(199); + if (lookahead == ',') ADVANCE(194); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(182); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 183: + if (lookahead == ')') ADVANCE(199); + if (lookahead == ',') ADVANCE(196); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(184); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 184: + if (lookahead == ')') ADVANCE(199); + if (lookahead == ',') ADVANCE(196); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(184); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 185: + if (lookahead == ')') ADVANCE(199); + if (lookahead == ',') ADVANCE(198); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 186: + if (lookahead == ')') ADVANCE(199); + if (lookahead == ',') ADVANCE(198); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(186); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 187: + if (lookahead == ')') ADVANCE(199); + if (lookahead == '.') ADVANCE(201); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(187); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 188: + if (lookahead == ')') ADVANCE(199); + if (lookahead == ':') ADVANCE(192); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(189); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(188); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 189: + if (lookahead == ')') ADVANCE(199); + if (lookahead == ':') ADVANCE(192); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(189); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 190: + if (lookahead == ')') ADVANCE(199); + if (lookahead == ':') ADVANCE(193); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(191); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(190); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 191: + if (lookahead == ')') ADVANCE(199); + if (lookahead == ':') ADVANCE(193); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(191); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 192: + if (lookahead == ')') ADVANCE(199); + if (lookahead == '=') ADVANCE(195); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 193: + if (lookahead == ')') ADVANCE(199); + if (lookahead == '=') ADVANCE(197); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 194: + if (lookahead == ')') ADVANCE(199); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(194); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 195: + if (lookahead == ')') ADVANCE(199); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(195); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 196: + if (lookahead == ')') ADVANCE(199); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(196); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(188); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 197: + if (lookahead == ')') ADVANCE(199); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(197); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(726); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 198: + if (lookahead == ')') ADVANCE(199); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(198); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(190); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 199: + if (lookahead == ')') ADVANCE(199); + if (lookahead == '!' || + lookahead == '.') ADVANCE(200); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 200: + if (lookahead == ')') ADVANCE(199); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(176); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 201: + if (lookahead == ')') ADVANCE(199); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 202: + if (lookahead == ')') ADVANCE(199); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 203: + if (lookahead == ')') ADVANCE(665); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(204); + END_STATE(); + case 204: + if (lookahead == ')') ADVANCE(665); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(204); + END_STATE(); + case 205: + if (lookahead == ',') ADVANCE(209); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(205); + END_STATE(); + case 206: + if (lookahead == ',') ADVANCE(209); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(205); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); + END_STATE(); + case 207: + if (lookahead == ',') ADVANCE(732); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(207); + END_STATE(); + case 208: + if (lookahead == ',') ADVANCE(732); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(207); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(208); + END_STATE(); + case 209: + if (lookahead == ',') ADVANCE(224); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(209); + END_STATE(); + case 210: + if (lookahead == ',') ADVANCE(735); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(210); + END_STATE(); + case 211: + if (lookahead == ',') ADVANCE(226); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(211); + END_STATE(); + case 212: + if (lookahead == ',') ADVANCE(226); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(211); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(212); + END_STATE(); + case 213: + if (lookahead == ',') ADVANCE(228); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(213); + END_STATE(); + case 214: + if (lookahead == ',') ADVANCE(228); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(213); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(214); + END_STATE(); + case 215: + if (lookahead == '.') ADVANCE(451); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); + END_STATE(); + case 216: + if (lookahead == ':') ADVANCE(220); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(216); + END_STATE(); + case 217: + if (lookahead == ':') ADVANCE(220); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(216); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + END_STATE(); + case 218: + if (lookahead == ':') ADVANCE(221); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(218); + END_STATE(); + case 219: + if (lookahead == ':') ADVANCE(221); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(218); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(219); + END_STATE(); + case 220: + if (lookahead == '=') ADVANCE(225); + END_STATE(); + case 221: + if (lookahead == '=') ADVANCE(227); + END_STATE(); + case 222: + if (lookahead == ']') ADVANCE(768); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(222); + END_STATE(); + case 223: + if (lookahead == '}') ADVANCE(762); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(223); + END_STATE(); + case 224: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(224); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(212); + END_STATE(); + case 225: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(225); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(214); + END_STATE(); + case 226: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(226); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + END_STATE(); + case 227: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(227); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(734); + END_STATE(); + case 228: + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(228); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(219); + END_STATE(); + case 229: + if (lookahead == '+' || + lookahead == '-') ADVANCE(448); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(744); + END_STATE(); + case 230: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(406); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(366); + END_STATE(); + case 231: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(423); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(636); + END_STATE(); + case 232: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(313); + END_STATE(); + case 233: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(248); + END_STATE(); + case 234: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(346); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(392); + END_STATE(); + case 235: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(264); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(481); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(434); + END_STATE(); + case 236: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(398); + END_STATE(); + case 237: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(427); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(381); + END_STATE(); + case 238: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(394); + END_STATE(); + case 239: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(407); + END_STATE(); + case 240: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(407); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(351); + END_STATE(); + case 241: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(399); + END_STATE(); + case 242: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(430); + END_STATE(); + case 243: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(363); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(347); + END_STATE(); + case 244: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(410); + END_STATE(); + case 245: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(564); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(280); + END_STATE(); + case 246: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(561); + END_STATE(); + case 247: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(658); + END_STATE(); + case 248: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(244); + END_STATE(); + case 249: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(337); + END_STATE(); + case 250: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(367); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(309); + END_STATE(); + case 251: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(255); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(259); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(590); + END_STATE(); + case 252: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(332); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(380); + END_STATE(); + case 253: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(597); + END_STATE(); + case 254: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(574); + END_STATE(); + case 255: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(297); + END_STATE(); + case 256: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(428); + END_STATE(); + case 257: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(418); + END_STATE(); + case 258: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(330); + END_STATE(); + case 259: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(701); + END_STATE(); + case 260: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(493); + END_STATE(); + case 261: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(493); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(348); + END_STATE(); + case 262: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(693); + END_STATE(); + case 263: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(549); + END_STATE(); + case 264: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(680); + END_STATE(); + case 265: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(648); + END_STATE(); + case 266: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(600); + END_STATE(); + case 267: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(685); + END_STATE(); + case 268: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(672); + END_STATE(); + case 269: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(439); + END_STATE(); + case 270: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(373); + END_STATE(); + case 271: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(343); + END_STATE(); + case 272: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(343); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(309); + END_STATE(); + case 273: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(442); + END_STATE(); + case 274: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(442); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(425); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(338); + END_STATE(); + case 275: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(235); + END_STATE(); + case 276: + ADVANCE_MAP( + 'E', 339, + 'e', 339, + 'H', 236, + 'h', 236, + 'T', 237, + 't', 237, + 'U', 246, + 'u', 246, + ); + END_STATE(); + case 277: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(540); + END_STATE(); + case 278: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(614); + END_STATE(); + case 279: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(609); + END_STATE(); + case 280: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(737); + END_STATE(); + case 281: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(542); + END_STATE(); + case 282: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(557); + END_STATE(); + case 283: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(642); + END_STATE(); + case 284: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(682); + END_STATE(); + case 285: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(662); + END_STATE(); + case 286: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(532); + END_STATE(); + case 287: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(528); + END_STATE(); + case 288: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(577); + END_STATE(); + case 289: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(538); + END_STATE(); + case 290: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(606); + END_STATE(); + case 291: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(746); + END_STATE(); + case 292: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(749); + END_STATE(); + case 293: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(531); + END_STATE(); + case 294: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(414); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(402); + END_STATE(); + case 295: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(361); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(322); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(422); + END_STATE(); + case 296: + ADVANCE_MAP( + 'E', 361, + 'e', 361, + 'H', 322, + 'h', 322, + 'I', 422, + 'i', 422, + 'R', 328, + 'r', 328, + ); + END_STATE(); + case 297: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(405); + END_STATE(); + case 298: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(415); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(245); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(252); + END_STATE(); + case 299: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(347); + END_STATE(); + case 300: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(356); + END_STATE(); + case 301: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(381); + END_STATE(); + case 302: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(267); + END_STATE(); + case 303: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(358); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(333); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(374); + END_STATE(); + case 304: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(397); + END_STATE(); + case 305: + ADVANCE_MAP( + 'E', 443, + 'e', 443, + 'H', 300, + 'h', 300, + 'O', 594, + 'o', 594, + 'Y', 383, + 'y', 383, + ); + END_STATE(); + case 306: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(257); + END_STATE(); + case 307: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(362); + END_STATE(); + case 308: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(364); + END_STATE(); + case 309: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(545); + END_STATE(); + case 310: + ADVANCE_MAP( + 'F', 551, + 'f', 551, + 'M', 379, + 'm', 379, + 'N', 634, + 'n', 634, + 'S', 617, + 's', 617, + ); + END_STATE(); + case 311: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(603); + END_STATE(); + case 312: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(554); + END_STATE(); + case 313: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(288); + END_STATE(); + case 314: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(752); + END_STATE(); + case 315: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(449); + END_STATE(); + case 316: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(651); + END_STATE(); + case 317: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(300); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(594); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(438); + END_STATE(); + case 318: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(327); + END_STATE(); + case 319: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(309); + END_STATE(); + case 320: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(366); + END_STATE(); + case 321: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(441); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(384); + END_STATE(); + case 322: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(340); + END_STATE(); + case 323: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(258); + END_STATE(); + case 324: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(253); + END_STATE(); + case 325: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(254); + END_STATE(); + case 326: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(335); + END_STATE(); + case 327: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(359); + END_STATE(); + case 328: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(429); + END_STATE(); + case 329: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(307); + END_STATE(); + case 330: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(419); + END_STATE(); + case 331: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(375); + END_STATE(); + case 332: + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(687); + END_STATE(); + case 333: + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(280); + END_STATE(); + case 334: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(755); + END_STATE(); + case 335: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(645); + END_STATE(); + case 336: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(323); + END_STATE(); + case 337: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(324); + END_STATE(); + case 338: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(334); + END_STATE(); + case 339: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(306); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(584); + END_STATE(); + case 340: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(283); + END_STATE(); + case 341: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(293); + END_STATE(); + case 342: + ADVANCE_MAP( + 'L', 408, + 'l', 408, + 'N', 261, + 'n', 261, + 'Q', 440, + 'q', 440, + 'R', 400, + 'r', 400, + 'X', 378, + 'x', 378, + ); + END_STATE(); + case 343: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(409); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(263); + END_STATE(); + case 344: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(411); + END_STATE(); + case 345: + ADVANCE_MAP( + 'L', 411, + 'l', 411, + 'M', 385, + 'm', 385, + 'N', 260, + 'n', 260, + 'Q', 440, + 'q', 440, + ); + END_STATE(); + case 346: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(412); + END_STATE(); + case 347: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(481); + END_STATE(); + case 348: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(558); + END_STATE(); + case 349: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(678); + END_STATE(); + case 350: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(379); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(382); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(617); + END_STATE(); + case 351: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(387); + END_STATE(); + case 352: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(285); + END_STATE(); + case 353: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(401); + END_STATE(); + case 354: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(259); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(388); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(590); + END_STATE(); + case 355: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(634); + END_STATE(); + case 356: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(547); + END_STATE(); + case 357: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(566); + END_STATE(); + case 358: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(669); + END_STATE(); + case 359: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(314); + END_STATE(); + case 360: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(256); + END_STATE(); + case 361: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(265); + END_STATE(); + case 362: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(266); + END_STATE(); + case 363: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(270); + END_STATE(); + case 364: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(268); + END_STATE(); + case 365: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(432); + END_STATE(); + case 366: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(238); + END_STATE(); + case 367: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(353); + END_STATE(); + case 368: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(636); + END_STATE(); + case 369: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(655); + END_STATE(); + case 370: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(262); + END_STATE(); + case 371: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(392); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(329); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(360); + END_STATE(); + case 372: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(393); + END_STATE(); + case 373: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(349); + END_STATE(); + case 374: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(380); + END_STATE(); + case 375: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(357); + END_STATE(); + case 376: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(395); + END_STATE(); + case 377: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(269); + END_STATE(); + case 378: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(336); + END_STATE(); + case 379: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(713); + END_STATE(); + case 380: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(639); + END_STATE(); + case 381: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(631); + END_STATE(); + case 382: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(436); + END_STATE(); + case 383: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(281); + END_STATE(); + case 384: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(304); + END_STATE(); + case 385: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(426); + END_STATE(); + case 386: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(437); + END_STATE(); + case 387: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(241); + END_STATE(); + case 388: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(308); + END_STATE(); + case 389: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(704); + END_STATE(); + case 390: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(704); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(433); + END_STATE(); + case 391: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(321); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(396); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(249); + END_STATE(); + case 392: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(628); + END_STATE(); + case 393: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(707); + END_STATE(); + case 394: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(444); + END_STATE(); + case 395: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(660); + END_STATE(); + case 396: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(404); + END_STATE(); + case 397: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(424); + END_STATE(); + case 398: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(302); + END_STATE(); + case 399: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(286); + END_STATE(); + case 400: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(376); + END_STATE(); + case 401: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(413); + END_STATE(); + case 402: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(435); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(369); + END_STATE(); + case 403: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(667); + END_STATE(); + case 404: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(232); + END_STATE(); + case 405: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(403); + END_STATE(); + case 406: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(277); + END_STATE(); + case 407: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(278); + END_STATE(); + case 408: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(279); + END_STATE(); + case 409: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(282); + END_STATE(); + case 410: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(289); + END_STATE(); + case 411: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(290); + END_STATE(); + case 412: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(292); + END_STATE(); + case 413: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(569); + END_STATE(); + case 414: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(579); + END_STATE(); + case 415: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(582); + END_STATE(); + case 416: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(625); + END_STATE(); + case 417: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(536); + END_STATE(); + case 418: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(611); + END_STATE(); + case 419: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(526); + END_STATE(); + case 420: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(674); + END_STATE(); + case 421: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(676); + END_STATE(); + case 422: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(316); + END_STATE(); + case 423: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(233); + END_STATE(); + case 424: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(445); + END_STATE(); + case 425: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(318); + END_STATE(); + case 426: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(446); + END_STATE(); + case 427: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(325); + END_STATE(); + case 428: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(331); + END_STATE(); + case 429: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(284); + END_STATE(); + case 430: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(287); + END_STATE(); + case 431: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(301); + END_STATE(); + case 432: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(326); + END_STATE(); + case 433: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(386); + END_STATE(); + case 434: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(352); + END_STATE(); + case 435: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(247); + END_STATE(); + case 436: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(420); + END_STATE(); + case 437: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(421); + END_STATE(); + case 438: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(291); + END_STATE(); + case 439: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(341); + END_STATE(); + case 440: + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(710); + END_STATE(); + case 441: + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(242); + END_STATE(); + case 442: + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(416); + END_STATE(); + case 443: + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(417); + END_STATE(); + case 444: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(534); + END_STATE(); + case 445: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(571); + END_STATE(); + case 446: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(758); + END_STATE(); + case 447: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(743); + END_STATE(); + case 448: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(744); + END_STATE(); + case 449: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(745); + END_STATE(); + case 450: + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(223); + END_STATE(); + case 451: + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(208); + END_STATE(); + case 452: + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '#') ADVANCE(168); + END_STATE(); + case 453: + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ']') ADVANCE(222); + END_STATE(); + case 454: + if (eof) ADVANCE(459); + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '"', 156, + '#', 271, + '&', 699, + '\'', 492, + '(', 588, + ')', 589, + '*', 593, + '+', 696, + ',', 587, + '-', 697, + '.', 523, + '/', 691, + ':', 462, + '<', 620, + '=', 497, + '>', 622, + '\\', 692, + '^', 690, + '_', 135, + 'A', 251, + 'a', 251, + 'B', 230, + 'b', 230, + 'C', 240, + 'c', 240, + 'D', 231, + 'd', 231, + 'E', 342, + 'e', 342, + 'F', 371, + 'f', 371, + 'G', 294, + 'g', 294, + 'I', 310, + 'i', 310, + 'L', 298, + 'l', 298, + 'M', 370, + 'm', 370, + 'N', 273, + 'n', 273, + 'O', 389, + 'o', 389, + 'P', 391, + 'p', 391, + 'R', 275, + 'r', 275, + 'S', 276, + 's', 276, + 'T', 305, + 't', 305, + 'W', 296, + 'w', 296, + 'X', 372, + 'x', 372, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(454); + END_STATE(); + case 455: + if (eof) ADVANCE(459); + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '#', 250, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + '<', 620, + '=', 497, + '>', 622, + '[', 453, + '\\', 692, + '^', 690, + '_', 769, + 'A', 1037, + 'a', 1037, + 'E', 1046, + 'e', 1046, + 'F', 1072, + 'f', 1072, + 'I', 1033, + 'i', 1033, + 'L', 1000, + 'l', 1000, + 'M', 1054, + 'm', 1054, + 'O', 1074, + 'o', 1074, + 'P', 1076, + 'p', 1076, + 'R', 985, + 'r', 985, + 'S', 1118, + 's', 1118, + 'T', 1134, + 't', 1134, + 'X', 1056, + 'x', 1056, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(455); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (lookahead > 'A' && + (lookahead < '[' || 'a' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 456: + if (eof) ADVANCE(459); + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '#', 250, + '&', 700, + '\'', 492, + '(', 588, + '*', 593, + '+', 696, + ',', 587, + '-', 698, + '.', 524, + '/', 691, + '=', 497, + '[', 453, + '\\', 692, + '^', 690, + '_', 769, + 'A', 1037, + 'a', 1037, + 'E', 1046, + 'e', 1046, + 'F', 1072, + 'f', 1072, + 'I', 1034, + 'i', 1034, + 'M', 1054, + 'm', 1054, + 'O', 1074, + 'o', 1074, + 'P', 1076, + 'p', 1076, + 'R', 985, + 'r', 985, + 'S', 1118, + 's', 1118, + 'T', 1134, + 't', 1134, + 'X', 1056, + 'x', 1056, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (lookahead > 'A' && + (lookahead < '[' || 'a' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 457: + if (eof) ADVANCE(459); + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '#', 250, + '&', 315, + '\'', 492, + '(', 588, + '*', 593, + ',', 587, + '-', 698, + '.', 524, + ':', 461, + '=', 497, + '[', 453, + '_', 769, + 'E', 1047, + 'e', 1047, + 'F', 1072, + 'f', 1072, + 'P', 1076, + 'p', 1076, + 'R', 985, + 'r', 985, + 'S', 1118, + 's', 1118, + 'T', 1134, + 't', 1134, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(457); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (lookahead > '@' && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 458: + if (eof) ADVANCE(459); + ADVANCE_MAP( + '\n', 460, + '\r', 1, + '!', 525, + '#', 250, + '&', 315, + '\'', 492, + '(', 588, + ',', 587, + '-', 172, + '.', 524, + '=', 497, + '[', 453, + '_', 769, + 'A', 1088, + 'a', 1088, + 'E', 1047, + 'e', 1047, + 'F', 1072, + 'f', 1072, + 'P', 1076, + 'p', 1076, + 'R', 985, + 'r', 985, + 'S', 1118, + 's', 1118, + 'T', 1134, + 't', 1134, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(458); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + if (lookahead > 'A' && + (lookahead < '[' || 'a' < lookahead) && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 459: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 460: + ACCEPT_TOKEN(sym_newline); + END_STATE(); + case 461: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 462: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(736); + END_STATE(); + case 463: + ACCEPT_TOKEN(sym_line_continuation); + END_STATE(); + case 464: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(210); + if (lookahead != 0) ADVANCE(492); + END_STATE(); + case 465: + ACCEPT_TOKEN(sym_comment); + if (lookahead == ',') ADVANCE(467); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(466); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(465); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 466: + ACCEPT_TOKEN(sym_comment); + if (lookahead == ',') ADVANCE(467); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(466); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 467: + ACCEPT_TOKEN(sym_comment); + if (lookahead == ',') ADVANCE(484); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(467); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 468: + ACCEPT_TOKEN(sym_comment); + if (lookahead == ',') ADVANCE(487); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(469); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 469: + ACCEPT_TOKEN(sym_comment); + if (lookahead == ',') ADVANCE(487); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(469); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 470: + ACCEPT_TOKEN(sym_comment); + if (lookahead == ',') ADVANCE(733); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(471); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(470); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 471: + ACCEPT_TOKEN(sym_comment); + if (lookahead == ',') ADVANCE(733); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(471); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 472: + ACCEPT_TOKEN(sym_comment); + if (lookahead == ',') ADVANCE(489); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(473); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(472); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 473: + ACCEPT_TOKEN(sym_comment); + if (lookahead == ',') ADVANCE(489); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(473); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 474: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '.') ADVANCE(491); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(474); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(465); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 475: + ACCEPT_TOKEN(sym_comment); + if (lookahead == ':') ADVANCE(479); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(476); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(475); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 476: + ACCEPT_TOKEN(sym_comment); + if (lookahead == ':') ADVANCE(479); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(476); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 477: + ACCEPT_TOKEN(sym_comment); + if (lookahead == ':') ADVANCE(480); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(478); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(477); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 478: + ACCEPT_TOKEN(sym_comment); + if (lookahead == ':') ADVANCE(480); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(478); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 479: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '=') ADVANCE(485); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 480: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '=') ADVANCE(488); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 481: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(492); + END_STATE(); + case 482: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(492); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 483: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(474); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 484: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(484); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 485: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(485); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(472); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 486: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(490); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= 0x08) || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 487: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(487); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(475); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 488: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(488); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(734); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 489: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(489); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(477); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 490: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\r' || + lookahead == '\'') ADVANCE(492); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(490); + END_STATE(); + case 491: + ACCEPT_TOKEN(sym_comment); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(470); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 492: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(492); + END_STATE(); + case 493: + ACCEPT_TOKEN(aux_sym_frm_begin_block_token2); + END_STATE(); + case 494: + ACCEPT_TOKEN(aux_sym_frm_begin_block_token2); + if (lookahead == '\r') ADVANCE(136); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(139); + if (lookahead == '\n' || + lookahead == ':') ADVANCE(654); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 495: + ACCEPT_TOKEN(aux_sym_frm_begin_block_token2); + if (lookahead == '\r') ADVANCE(136); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(138); + if (lookahead == '\n' || + lookahead == ':') ADVANCE(654); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 496: + ACCEPT_TOKEN(aux_sym_frm_begin_block_token2); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 497: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 498: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == '\n') ADVANCE(463); + if (lookahead == '\r') ADVANCE(133); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(499); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 499: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == '\n') ADVANCE(463); + if (lookahead == '\r') ADVANCE(133); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(499); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(521); + END_STATE(); + case 500: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(507); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 501: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(520); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 502: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(510); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 503: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(520); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 504: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(505); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 505: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(511); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 506: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(520); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 507: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(515); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 508: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(506); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 509: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(513); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 510: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(486); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 511: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(503); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 512: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(516); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(508); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 513: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(517); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 514: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(518); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 515: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(501); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 516: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(504); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 517: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(519); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 518: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(501); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 519: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(520); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 520: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(521); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '"') || + ('(' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(521); + if (lookahead > '/') ADVANCE(520); + END_STATE(); + case 521: + ACCEPT_TOKEN(sym_frm_property_text); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'') ADVANCE(521); + END_STATE(); + case 522: + ACCEPT_TOKEN(sym_frm_quoted_property_text); + if (lookahead == '"') ADVANCE(740); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(522); + END_STATE(); + case 523: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 524: + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(743); + END_STATE(); + case 525: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 526: + ACCEPT_TOKEN(aux_sym_option_statement_token2); + END_STATE(); + case 527: + ACCEPT_TOKEN(aux_sym_option_statement_token2); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 528: + ACCEPT_TOKEN(aux_sym_option_statement_token3); + END_STATE(); + case 529: + ACCEPT_TOKEN(aux_sym_option_statement_token3); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 530: + ACCEPT_TOKEN(aux_sym_option_statement_token3); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 531: + ACCEPT_TOKEN(aux_sym_option_statement_token4); + END_STATE(); + case 532: + ACCEPT_TOKEN(aux_sym_option_statement_token5); + END_STATE(); + case 533: + ACCEPT_TOKEN(aux_sym_option_statement_token5); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 534: + ACCEPT_TOKEN(aux_sym_option_statement_token6); + END_STATE(); + case 535: + ACCEPT_TOKEN(aux_sym_option_statement_token6); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 536: + ACCEPT_TOKEN(aux_sym_option_statement_token7); + END_STATE(); + case 537: + ACCEPT_TOKEN(aux_sym_option_statement_token7); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 538: + ACCEPT_TOKEN(aux_sym_option_statement_token8); + END_STATE(); + case 539: + ACCEPT_TOKEN(aux_sym_option_statement_token8); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 540: + ACCEPT_TOKEN(aux_sym_option_statement_token9); + END_STATE(); + case 541: + ACCEPT_TOKEN(aux_sym_option_statement_token9); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 542: + ACCEPT_TOKEN(aux_sym_type_declaration_token1); + END_STATE(); + case 543: + ACCEPT_TOKEN(aux_sym_type_declaration_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 544: + ACCEPT_TOKEN(aux_sym_type_declaration_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 545: + ACCEPT_TOKEN(aux_sym_type_preprocessor_if_token1); + END_STATE(); + case 546: + ACCEPT_TOKEN(aux_sym_type_preprocessor_if_token1); + if (lookahead == '#') ADVANCE(761); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(168); + END_STATE(); + case 547: + ACCEPT_TOKEN(aux_sym_type_preprocessor_if_token2); + END_STATE(); + case 548: + ACCEPT_TOKEN(aux_sym_type_preprocessor_if_token2); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 549: + ACCEPT_TOKEN(aux_sym_type_preprocessor_if_token3); + END_STATE(); + case 550: + ACCEPT_TOKEN(aux_sym_type_preprocessor_if_token3); + if (lookahead == '#') ADVANCE(761); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(168); + END_STATE(); + case 551: + ACCEPT_TOKEN(aux_sym_type_preprocessor_if_token4); + END_STATE(); + case 552: + ACCEPT_TOKEN(aux_sym_type_preprocessor_if_token4); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 553: + ACCEPT_TOKEN(aux_sym_type_preprocessor_if_token4); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 554: + ACCEPT_TOKEN(aux_sym_type_preprocessor_elseif_token1); + END_STATE(); + case 555: + ACCEPT_TOKEN(aux_sym_type_preprocessor_elseif_token1); + if (lookahead == '#') ADVANCE(761); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(168); + END_STATE(); + case 556: + ACCEPT_TOKEN(aux_sym_type_preprocessor_else_token1); + if (lookahead == '#') ADVANCE(761); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(160); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(168); + END_STATE(); + case 557: + ACCEPT_TOKEN(aux_sym_type_preprocessor_else_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(312); + END_STATE(); + case 558: + ACCEPT_TOKEN(aux_sym_enum_declaration_token1); + END_STATE(); + case 559: + ACCEPT_TOKEN(aux_sym_enum_declaration_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 560: + ACCEPT_TOKEN(aux_sym_enum_declaration_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 561: + ACCEPT_TOKEN(aux_sym_declare_sub_statement_token2); + END_STATE(); + case 562: + ACCEPT_TOKEN(aux_sym_declare_sub_statement_token2); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 563: + ACCEPT_TOKEN(aux_sym_declare_sub_statement_token2); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 564: + ACCEPT_TOKEN(aux_sym_declare_sub_statement_token3); + END_STATE(); + case 565: + ACCEPT_TOKEN(aux_sym_declare_sub_statement_token3); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 566: + ACCEPT_TOKEN(aux_sym_declare_function_statement_token1); + END_STATE(); + case 567: + ACCEPT_TOKEN(aux_sym_declare_function_statement_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 568: + ACCEPT_TOKEN(aux_sym_declare_function_statement_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 569: + ACCEPT_TOKEN(aux_sym_preprocessor_const_token1); + END_STATE(); + case 570: + ACCEPT_TOKEN(aux_sym_preprocessor_const_token1); + if (lookahead == '#') ADVANCE(761); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(168); + END_STATE(); + case 571: + ACCEPT_TOKEN(aux_sym__property_get_header_token1); + END_STATE(); + case 572: + ACCEPT_TOKEN(aux_sym__property_get_header_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 573: + ACCEPT_TOKEN(aux_sym__property_get_header_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 574: + ACCEPT_TOKEN(sym_static_modifier); + END_STATE(); + case 575: + ACCEPT_TOKEN(sym_static_modifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 576: + ACCEPT_TOKEN(sym_static_modifier); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 577: + ACCEPT_TOKEN(sym_ptrsafe_modifier); + END_STATE(); + case 578: + ACCEPT_TOKEN(sym_ptrsafe_modifier); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 579: + ACCEPT_TOKEN(aux_sym_get_accessor_token1); + END_STATE(); + case 580: + ACCEPT_TOKEN(aux_sym_get_accessor_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 581: + ACCEPT_TOKEN(aux_sym_get_accessor_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 582: + ACCEPT_TOKEN(sym_let_accessor); + END_STATE(); + case 583: + ACCEPT_TOKEN(sym_let_accessor); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 584: + ACCEPT_TOKEN(aux_sym_set_accessor_token1); + END_STATE(); + case 585: + ACCEPT_TOKEN(aux_sym_set_accessor_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 586: + ACCEPT_TOKEN(aux_sym_set_accessor_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 587: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 588: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 589: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 590: + ACCEPT_TOKEN(aux_sym_as_type_clause_token1); + END_STATE(); + case 591: + ACCEPT_TOKEN(aux_sym_as_type_clause_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 592: + ACCEPT_TOKEN(aux_sym_as_type_clause_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 593: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 594: + ACCEPT_TOKEN(aux_sym_array_bound_token1); + END_STATE(); + case 595: + ACCEPT_TOKEN(aux_sym_array_bound_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 596: + ACCEPT_TOKEN(aux_sym_array_bound_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 597: + ACCEPT_TOKEN(aux_sym_visibility_token1); + END_STATE(); + case 598: + ACCEPT_TOKEN(aux_sym_visibility_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 599: + ACCEPT_TOKEN(aux_sym_visibility_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 600: + ACCEPT_TOKEN(aux_sym_visibility_token2); + END_STATE(); + case 601: + ACCEPT_TOKEN(aux_sym_visibility_token2); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 602: + ACCEPT_TOKEN(aux_sym_visibility_token2); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 603: + ACCEPT_TOKEN(aux_sym_elseif_fragment_token1); + END_STATE(); + case 604: + ACCEPT_TOKEN(aux_sym_elseif_fragment_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 605: + ACCEPT_TOKEN(aux_sym_elseif_fragment_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 606: + ACCEPT_TOKEN(aux_sym_else_fragment_token1); + END_STATE(); + case 607: + ACCEPT_TOKEN(aux_sym_else_fragment_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(826); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 608: + ACCEPT_TOKEN(aux_sym_else_fragment_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(994); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 609: + ACCEPT_TOKEN(aux_sym_else_fragment_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(311); + END_STATE(); + case 610: + ACCEPT_TOKEN(aux_sym_else_fragment_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 611: + ACCEPT_TOKEN(aux_sym_select_statement_token1); + END_STATE(); + case 612: + ACCEPT_TOKEN(aux_sym_select_statement_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 613: + ACCEPT_TOKEN(aux_sym_select_statement_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 614: + ACCEPT_TOKEN(aux_sym_select_statement_token2); + END_STATE(); + case 615: + ACCEPT_TOKEN(aux_sym_select_statement_token2); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 616: + ACCEPT_TOKEN(aux_sym_select_statement_token2); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 617: + ACCEPT_TOKEN(aux_sym_case_expression_token1); + END_STATE(); + case 618: + ACCEPT_TOKEN(aux_sym_case_expression_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 619: + ACCEPT_TOKEN(aux_sym_case_expression_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 620: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(621); + if (lookahead == '>') ADVANCE(624); + END_STATE(); + case 621: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 622: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(623); + END_STATE(); + case 623: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 624: + ACCEPT_TOKEN(anon_sym_LT_GT); + END_STATE(); + case 625: + ACCEPT_TOKEN(aux_sym__multiline_for_tail_token1); + END_STATE(); + case 626: + ACCEPT_TOKEN(aux_sym__multiline_for_tail_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 627: + ACCEPT_TOKEN(aux_sym__multiline_for_tail_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 628: + ACCEPT_TOKEN(aux_sym__for_header_token1); + END_STATE(); + case 629: + ACCEPT_TOKEN(aux_sym__for_header_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 630: + ACCEPT_TOKEN(aux_sym__for_header_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 631: + ACCEPT_TOKEN(aux_sym__for_header_token2); + END_STATE(); + case 632: + ACCEPT_TOKEN(aux_sym__for_header_token2); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 633: + ACCEPT_TOKEN(aux_sym__for_header_token2); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 634: + ACCEPT_TOKEN(aux_sym__for_each_header_token2); + END_STATE(); + case 635: + ACCEPT_TOKEN(aux_sym__for_each_header_token2); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 636: + ACCEPT_TOKEN(aux_sym_do_statement_token1); + END_STATE(); + case 637: + ACCEPT_TOKEN(aux_sym_do_statement_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 638: + ACCEPT_TOKEN(aux_sym_do_statement_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 639: + ACCEPT_TOKEN(aux_sym_do_statement_token2); + END_STATE(); + case 640: + ACCEPT_TOKEN(aux_sym_do_statement_token2); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 641: + ACCEPT_TOKEN(aux_sym_do_statement_token2); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 642: + ACCEPT_TOKEN(aux_sym_do_condition_token1); + END_STATE(); + case 643: + ACCEPT_TOKEN(aux_sym_do_condition_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 644: + ACCEPT_TOKEN(aux_sym_do_condition_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 645: + ACCEPT_TOKEN(aux_sym_do_condition_token2); + END_STATE(); + case 646: + ACCEPT_TOKEN(aux_sym_do_condition_token2); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 647: + ACCEPT_TOKEN(aux_sym_do_condition_token2); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 648: + ACCEPT_TOKEN(aux_sym_while_statement_token1); + END_STATE(); + case 649: + ACCEPT_TOKEN(aux_sym_while_statement_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 650: + ACCEPT_TOKEN(aux_sym_while_statement_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 651: + ACCEPT_TOKEN(aux_sym_with_statement_token1); + END_STATE(); + case 652: + ACCEPT_TOKEN(aux_sym_with_statement_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 653: + ACCEPT_TOKEN(aux_sym_with_statement_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 654: + ACCEPT_TOKEN(sym_end_statement); + END_STATE(); + case 655: + ACCEPT_TOKEN(aux_sym_on_goto_statement_token2); + END_STATE(); + case 656: + ACCEPT_TOKEN(aux_sym_on_goto_statement_token2); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 657: + ACCEPT_TOKEN(aux_sym_on_goto_statement_token2); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 658: + ACCEPT_TOKEN(aux_sym_on_goto_statement_token3); + END_STATE(); + case 659: + ACCEPT_TOKEN(aux_sym_on_goto_statement_token3); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 660: + ACCEPT_TOKEN(aux_sym_on_error_statement_token1); + END_STATE(); + case 661: + ACCEPT_TOKEN(aux_sym_on_error_statement_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 662: + ACCEPT_TOKEN(aux_sym_on_error_statement_token2); + END_STATE(); + case 663: + ACCEPT_TOKEN(aux_sym_on_error_statement_token2); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 664: + ACCEPT_TOKEN(aux_sym_on_error_statement_token2); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 665: + ACCEPT_TOKEN(sym__ambiguous_redim_statement); + if (lookahead == ')') ADVANCE(665); + if (lookahead == '!' || + lookahead == '.') ADVANCE(203); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(204); + END_STATE(); + case 666: + ACCEPT_TOKEN(sym__ambiguous_redim_statement); + if (lookahead == ')') ADVANCE(666); + if (lookahead == '_') ADVANCE(722); + if (lookahead == '!' || + lookahead == '.') ADVANCE(731); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(730); + END_STATE(); + case 667: + ACCEPT_TOKEN(aux_sym_open_statement_token2); + END_STATE(); + case 668: + ACCEPT_TOKEN(aux_sym_open_statement_token2); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 669: + ACCEPT_TOKEN(aux_sym_open_statement_token3); + END_STATE(); + case 670: + ACCEPT_TOKEN(aux_sym_open_statement_token3); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 671: + ACCEPT_TOKEN(aux_sym_open_statement_token3); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 672: + ACCEPT_TOKEN(aux_sym_file_mode_token1); + END_STATE(); + case 673: + ACCEPT_TOKEN(aux_sym_file_mode_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 674: + ACCEPT_TOKEN(aux_sym_file_mode_token2); + END_STATE(); + case 675: + ACCEPT_TOKEN(aux_sym_file_mode_token2); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 676: + ACCEPT_TOKEN(aux_sym_file_mode_token3); + END_STATE(); + case 677: + ACCEPT_TOKEN(aux_sym_file_mode_token3); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 678: + ACCEPT_TOKEN(aux_sym_file_mode_token4); + END_STATE(); + case 679: + ACCEPT_TOKEN(aux_sym_file_mode_token4); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 680: + ACCEPT_TOKEN(aux_sym_file_access_token1); + END_STATE(); + case 681: + ACCEPT_TOKEN(aux_sym_file_access_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 682: + ACCEPT_TOKEN(aux_sym_file_access_token2); + END_STATE(); + case 683: + ACCEPT_TOKEN(aux_sym_file_access_token2); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 684: + ACCEPT_TOKEN(aux_sym_file_access_token2); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 685: + ACCEPT_TOKEN(aux_sym_file_lock_token1); + END_STATE(); + case 686: + ACCEPT_TOKEN(aux_sym_file_lock_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 687: + ACCEPT_TOKEN(aux_sym_file_lock_token2); + END_STATE(); + case 688: + ACCEPT_TOKEN(aux_sym_file_lock_token2); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 689: + ACCEPT_TOKEN(aux_sym_file_lock_token2); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 690: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 691: + ACCEPT_TOKEN(anon_sym_SLASH); + END_STATE(); + case 692: + ACCEPT_TOKEN(anon_sym_BSLASH); + END_STATE(); + case 693: + ACCEPT_TOKEN(aux_sym__print_output_call_binary_expression_token1); + END_STATE(); + case 694: + ACCEPT_TOKEN(aux_sym__print_output_call_binary_expression_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 695: + ACCEPT_TOKEN(aux_sym__print_output_call_binary_expression_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 696: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 697: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 698: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '&') ADVANCE(315); + if (lookahead == '.') ADVANCE(447); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + END_STATE(); + case 699: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 700: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(449); + END_STATE(); + case 701: + ACCEPT_TOKEN(aux_sym__print_output_call_binary_expression_token2); + END_STATE(); + case 702: + ACCEPT_TOKEN(aux_sym__print_output_call_binary_expression_token2); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 703: + ACCEPT_TOKEN(aux_sym__print_output_call_binary_expression_token2); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 704: + ACCEPT_TOKEN(aux_sym__print_output_call_binary_expression_token3); + END_STATE(); + case 705: + ACCEPT_TOKEN(aux_sym__print_output_call_binary_expression_token3); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 706: + ACCEPT_TOKEN(aux_sym__print_output_call_binary_expression_token3); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 707: + ACCEPT_TOKEN(aux_sym__print_output_call_binary_expression_token4); + END_STATE(); + case 708: + ACCEPT_TOKEN(aux_sym__print_output_call_binary_expression_token4); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 709: + ACCEPT_TOKEN(aux_sym__print_output_call_binary_expression_token4); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 710: + ACCEPT_TOKEN(aux_sym__print_output_call_binary_expression_token5); + END_STATE(); + case 711: + ACCEPT_TOKEN(aux_sym__print_output_call_binary_expression_token5); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 712: + ACCEPT_TOKEN(aux_sym__print_output_call_binary_expression_token5); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 713: + ACCEPT_TOKEN(aux_sym__print_output_call_binary_expression_token6); + END_STATE(); + case 714: + ACCEPT_TOKEN(aux_sym__print_output_call_binary_expression_token6); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 715: + ACCEPT_TOKEN(aux_sym__print_output_call_binary_expression_token6); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 716: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 717: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 718: + ACCEPT_TOKEN(sym__ambiguous_call_statement); + if (lookahead == '\n') ADVANCE(210); + if (lookahead == '\r') ADVANCE(464); + if (lookahead == '_') ADVANCE(718); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(718); + if (lookahead != 0) ADVANCE(733); + END_STATE(); + case 719: + ACCEPT_TOKEN(sym__ambiguous_call_statement); + if (lookahead == '\n') ADVANCE(210); + if (lookahead == '\r') ADVANCE(137); + if (lookahead == '(') ADVANCE(730); + if (lookahead == ')') ADVANCE(727); + if (lookahead == '_') ADVANCE(719); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(721); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(724); + if (lookahead != 0) ADVANCE(728); + END_STATE(); + case 720: + ACCEPT_TOKEN(sym__ambiguous_call_statement); + if (lookahead == '\n') ADVANCE(210); + if (lookahead == '\r') ADVANCE(137); + if (lookahead == '(') ADVANCE(730); + if (lookahead == ')') ADVANCE(666); + if (lookahead == '_') ADVANCE(720); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(725); + if (lookahead != 0) ADVANCE(730); + END_STATE(); + case 721: + ACCEPT_TOKEN(sym__ambiguous_call_statement); + if (lookahead == '\n') ADVANCE(210); + if (lookahead == '\r') ADVANCE(137); + if (lookahead == ')') ADVANCE(727); + if (lookahead == '_') ADVANCE(721); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(721); + if (lookahead != 0) ADVANCE(728); + END_STATE(); + case 722: + ACCEPT_TOKEN(sym__ambiguous_call_statement); + if (lookahead == '\n') ADVANCE(210); + if (lookahead == '\r') ADVANCE(137); + if (lookahead == ')') ADVANCE(666); + if (lookahead == '_') ADVANCE(722); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(722); + if (lookahead != 0) ADVANCE(730); + END_STATE(); + case 723: + ACCEPT_TOKEN(sym__ambiguous_call_statement); + if (lookahead == '\n') ADVANCE(210); + if (lookahead == '\r') ADVANCE(137); + if (lookahead == '_') ADVANCE(723); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(723); + if (lookahead != 0) ADVANCE(732); + END_STATE(); + case 724: + ACCEPT_TOKEN(sym__ambiguous_call_statement); + if (lookahead == '(') ADVANCE(730); + if (lookahead == ')') ADVANCE(727); + if (lookahead == '_') ADVANCE(719); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(724); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(728); + END_STATE(); + case 725: + ACCEPT_TOKEN(sym__ambiguous_call_statement); + if (lookahead == '(') ADVANCE(730); + if (lookahead == ')') ADVANCE(666); + if (lookahead == '_') ADVANCE(720); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(725); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(730); + END_STATE(); + case 726: + ACCEPT_TOKEN(sym__ambiguous_call_statement); + if (lookahead == ')') ADVANCE(199); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(726); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 727: + ACCEPT_TOKEN(sym__ambiguous_call_statement); + if (lookahead == ')') ADVANCE(727); + if (lookahead == '_') ADVANCE(721); + if (lookahead == '!' || + lookahead == '.') ADVANCE(729); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(728); + END_STATE(); + case 728: + ACCEPT_TOKEN(sym__ambiguous_call_statement); + if (lookahead == ')') ADVANCE(727); + if (lookahead == '_') ADVANCE(721); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(728); + END_STATE(); + case 729: + ACCEPT_TOKEN(sym__ambiguous_call_statement); + if (lookahead == ')') ADVANCE(727); + if (lookahead == '_') ADVANCE(719); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(724); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(728); + END_STATE(); + case 730: + ACCEPT_TOKEN(sym__ambiguous_call_statement); + if (lookahead == ')') ADVANCE(666); + if (lookahead == '_') ADVANCE(722); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(730); + END_STATE(); + case 731: + ACCEPT_TOKEN(sym__ambiguous_call_statement); + if (lookahead == ')') ADVANCE(666); + if (lookahead == '_') ADVANCE(720); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(725); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(730); + END_STATE(); + case 732: + ACCEPT_TOKEN(sym__ambiguous_call_statement); + if (lookahead == '_') ADVANCE(723); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(732); + END_STATE(); + case 733: + ACCEPT_TOKEN(sym__ambiguous_call_statement); + if (lookahead == '_') ADVANCE(718); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(733); + END_STATE(); + case 734: + ACCEPT_TOKEN(sym__ambiguous_call_statement); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(734); + END_STATE(); + case 735: + ACCEPT_TOKEN(sym__ambiguous_call_statement); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(735); + END_STATE(); + case 736: + ACCEPT_TOKEN(anon_sym_COLON_EQ); + END_STATE(); + case 737: + ACCEPT_TOKEN(aux_sym_comparison_operator_token1); + END_STATE(); + case 738: + ACCEPT_TOKEN(aux_sym_comparison_operator_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 739: + ACCEPT_TOKEN(aux_sym_comparison_operator_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 740: + ACCEPT_TOKEN(sym_string_literal); + if (lookahead == '"') ADVANCE(156); + END_STATE(); + case 741: + ACCEPT_TOKEN(sym_number_literal); + END_STATE(); + case 742: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '.') ADVANCE(743); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(229); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(741); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(742); + END_STATE(); + case 743: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(229); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(741); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(743); + END_STATE(); + case 744: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(741); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(744); + END_STATE(); + case 745: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(741); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(745); + END_STATE(); + case 746: + ACCEPT_TOKEN(aux_sym_boolean_literal_token1); + END_STATE(); + case 747: + ACCEPT_TOKEN(aux_sym_boolean_literal_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 748: + ACCEPT_TOKEN(aux_sym_boolean_literal_token1); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 749: + ACCEPT_TOKEN(aux_sym_boolean_literal_token2); + END_STATE(); + case 750: + ACCEPT_TOKEN(aux_sym_boolean_literal_token2); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 751: + ACCEPT_TOKEN(aux_sym_boolean_literal_token2); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 752: + ACCEPT_TOKEN(sym_nothing_literal); + END_STATE(); + case 753: + ACCEPT_TOKEN(sym_nothing_literal); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 754: + ACCEPT_TOKEN(sym_nothing_literal); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 755: + ACCEPT_TOKEN(sym_null_literal); + END_STATE(); + case 756: + ACCEPT_TOKEN(sym_null_literal); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 757: + ACCEPT_TOKEN(sym_null_literal); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 758: + ACCEPT_TOKEN(sym_empty_literal); + END_STATE(); + case 759: + ACCEPT_TOKEN(sym_empty_literal); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 760: + ACCEPT_TOKEN(sym_empty_literal); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 761: + ACCEPT_TOKEN(sym_date_literal); + END_STATE(); + case 762: + ACCEPT_TOKEN(sym_guid_literal); + END_STATE(); + case 763: + ACCEPT_TOKEN(anon_sym_POUND); + END_STATE(); + case 764: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(164); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(161); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(159); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '#') ADVANCE(168); + END_STATE(); + case 765: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(164); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(162); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(159); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '#') ADVANCE(168); + END_STATE(); + case 766: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(164); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(159); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '#') ADVANCE(168); + END_STATE(); + case 767: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '#') ADVANCE(168); + END_STATE(); + case 768: + ACCEPT_TOKEN(sym_identifier); + END_STATE(); + case 769: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\n') ADVANCE(463); + if (lookahead == '\r') ADVANCE(133); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(135); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 770: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\n') ADVANCE(463); + if (lookahead == '\r') ADVANCE(133); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(134); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 771: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\r') ADVANCE(136); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(138); + if (lookahead == '\n' || + lookahead == ':') ADVANCE(654); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 772: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == ')') ADVANCE(199); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(187); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(774); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(772); + if ((!eof && lookahead <= 0x08) || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= 0xbf)) ADVANCE(202); + if (lookahead > 0xbf) ADVANCE(773); + END_STATE(); + case 773: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == ')') ADVANCE(199); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(774); + if ((!eof && lookahead <= '\t') || + lookahead == 0x0b || + lookahead == '\f' || + (0x0e <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '?') || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= 0xbf)) ADVANCE(202); + if (lookahead > '/') ADVANCE(773); + END_STATE(); + case 774: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == ')') ADVANCE(199); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(202); + END_STATE(); + case 775: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + '\t', 215, + ' ', 215, + 'A', 856, + 'a', 856, + 'O', 890, + 'o', 890, + 'R', 836, + 'r', 836, + 'U', 866, + 'u', 866, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 776: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + '\t', 215, + ' ', 215, + 'A', 856, + 'a', 856, + 'O', 890, + 'o', 890, + 'R', 836, + 'r', 836, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 777: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(909); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(882); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 778: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(909); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 779: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(912); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 780: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(898); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 781: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(562); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 782: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(854); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 783: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(844); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(880); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 784: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(844); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 785: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(598); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 786: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(575); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 787: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(904); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 788: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(910); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 789: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(495); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(859); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 790: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(495); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 791: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(601); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 792: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(649); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 793: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(702); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 794: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(694); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 795: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(771); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 796: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + '\t', 215, + ' ', 215, + 'D', 833, + 'd', 833, + 'M', 483, + 'm', 483, + 'S', 914, + 's', 914, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 797: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(899); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(908); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 798: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(796); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 799: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + '\t', 215, + ' ', 215, + 'E', 853, + 'e', 853, + 'T', 778, + 't', 778, + 'U', 781, + 'u', 781, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 800: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(853); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(778); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 801: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + '\t', 215, + ' ', 215, + 'E', 853, + 'e', 853, + 'T', 777, + 't', 777, + 'U', 781, + 'u', 781, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 802: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(853); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(777); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 803: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(607); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 804: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(747); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 805: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(543); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 806: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(750); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 807: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(643); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 808: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(683); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 809: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(663); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 810: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(529); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 811: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + '\t', 215, + ' ', 215, + 'E', 919, + 'e', 919, + 'O', 900, + 'o', 900, + 'U', 852, + 'u', 852, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 812: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(615); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 813: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(738); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 814: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(894); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 815: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(862); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 816: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + '\t', 215, + ' ', 215, + 'E', 867, + 'e', 867, + 'H', 841, + 'h', 841, + 'I', 906, + 'i', 906, + 'R', 843, + 'r', 843, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 817: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + '\t', 215, + ' ', 215, + 'E', 865, + 'e', 865, + 'I', 845, + 'i', 845, + 'O', 784, + 'o', 784, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 818: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + '\t', 215, + ' ', 215, + 'E', 865, + 'e', 865, + 'I', 845, + 'i', 845, + 'O', 783, + 'o', 783, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 819: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(865); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(784); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 820: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(865); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(783); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 821: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(901); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(778); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 822: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(787); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 823: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + '\t', 215, + ' ', 215, + 'F', 552, + 'f', 552, + 'M', 881, + 'm', 881, + 'N', 883, + 'n', 883, + 'S', 618, + 's', 618, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 824: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + '\t', 215, + ' ', 215, + 'F', 552, + 'f', 552, + 'M', 881, + 'm', 881, + 'N', 883, + 'n', 883, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 825: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(552); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(883); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 826: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(604); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 827: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(753); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 828: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(652); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 829: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + '\t', 215, + ' ', 215, + 'H', 841, + 'h', 841, + 'I', 906, + 'i', 906, + 'R', 843, + 'r', 843, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 830: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(837); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 831: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(918); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(886); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 832: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(918); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 833: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(860); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 834: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(845); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(784); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 835: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(845); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(783); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 836: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(815); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 837: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(863); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 838: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(785); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 839: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(877); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 840: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(786); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 841: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(855); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 842: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(851); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 843: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(911); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 844: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(688); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 845: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(813); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 846: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + '\t', 215, + ' ', 215, + 'L', 896, + 'l', 896, + 'M', 884, + 'm', 884, + 'N', 789, + 'n', 789, + 'Q', 917, + 'q', 917, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 847: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + '\t', 215, + ' ', 215, + 'L', 896, + 'l', 896, + 'M', 884, + 'm', 884, + 'N', 789, + 'n', 789, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 848: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + '\t', 215, + ' ', 215, + 'L', 896, + 'l', 896, + 'M', 884, + 'm', 884, + 'N', 790, + 'n', 790, + 'Q', 917, + 'q', 917, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 849: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + '\t', 215, + ' ', 215, + 'L', 896, + 'l', 896, + 'M', 884, + 'm', 884, + 'N', 790, + 'n', 790, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 850: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(756); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 851: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(646); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 852: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(850); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 853: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(822); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(585); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 854: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(838); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 855: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(807); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 856: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(897); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 857: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(884); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(790); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 858: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(884); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(795); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 859: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(559); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 860: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(772); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 861: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(809); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 862: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(791); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 863: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(827); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 864: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(567); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 865: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(670); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 866: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(788); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 867: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(792); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 868: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(793); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 869: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(913); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 870: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(637); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 871: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(784); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 872: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(656); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 873: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(783); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 874: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + '\t', 215, + ' ', 215, + 'O', 595, + 'o', 595, + 'R', 915, + 'r', 915, + 'Y', 885, + 'y', 885, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 875: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(595); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(915); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 876: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(900); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(852); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 877: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(864); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 878: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(892); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 879: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(794); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 880: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(640); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 881: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(714); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 882: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(632); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 883: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(916); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 884: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(902); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 885: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(805); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 886: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(814); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 887: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(831); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(782); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 888: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(915); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(885); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 889: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(915); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 890: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(629); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 891: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(705); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 892: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(708); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 893: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(832); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(782); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 894: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(907); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 895: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(591); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 896: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(803); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 897: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(806); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 898: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(812); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 899: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(580); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 900: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(830); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 901: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(585); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 902: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(920); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 903: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(675); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 904: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(612); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 905: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(626); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 906: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(828); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 907: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(921); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 908: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(872); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 909: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(840); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 910: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(839); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 911: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(808); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 912: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(810); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 913: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(842); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 914: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(861); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 915: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(804); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 916: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(903); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 917: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(711); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 918: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(779); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 919: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(905); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 920: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(759); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 921: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(572); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 922: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(215); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(922); + if (lookahead > 0xbf) ADVANCE(1135); + END_STATE(); + case 923: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1092); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1052); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || 'A' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 924: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1108); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(638); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || 'A' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 925: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + 'A', 1022, + 'a', 1022, + 'O', 1078, + 'o', 1078, + 'R', 1011, + 'r', 1011, + 'U', 1042, + 'u', 1042, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || 'A' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 926: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1022); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || 'A' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 927: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(995); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || 'A' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 928: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(942); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || 'A' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 929: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1043); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(930); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || 'A' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 930: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + 'A', 955, + 'a', 955, + 'D', 1002, + 'd', 1002, + 'M', 482, + 'm', 482, + 'S', 1123, + 's', 1123, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || 'A' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 931: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1084); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || 'A' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 932: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1082); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || 'A' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 933: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1112); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1063); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || 'A' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 934: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1112); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || 'A' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 935: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1095); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1035); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || 'A' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 936: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1086); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || 'A' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 937: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1115); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || 'A' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 938: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1098); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || 'A' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 939: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(565); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(969); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 940: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(563); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 941: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(659); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 942: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(938); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 943: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1018); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 944: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + 'C', 948, + 'c', 948, + 'N', 952, + 'n', 952, + 'P', 1069, + 'p', 1069, + 'S', 592, + 's', 592, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 945: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1012); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1062); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 946: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(599); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 947: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(576); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 948: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(982); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 949: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1113); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 950: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1106); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 951: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1010); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 952: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(703); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 953: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(494); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1027); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 954: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(695); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 955: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(681); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 956: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(650); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 957: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(673); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 958: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(602); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 959: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(686); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 960: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(496); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 961: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1057); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 962: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1038); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(939); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(945); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 963: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1129); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1101); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1016); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 964: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1129); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 965: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + 'E', 1019, + 'e', 1019, + 'H', 931, + 'h', 931, + 'T', 933, + 't', 933, + 'U', 940, + 'u', 940, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 966: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(541); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 967: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(616); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 968: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(608); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 969: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(739); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 970: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(748); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 971: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(544); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 972: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(751); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 973: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(644); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 974: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(684); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 975: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(664); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 976: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(533); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 977: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(530); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 978: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(578); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 979: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(539); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 980: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(610); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 981: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1100); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1091); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 982: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1093); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 983: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + 'E', 1044, + 'e', 1044, + 'H', 1006, + 'h', 1006, + 'I', 1109, + 'i', 1109, + 'R', 1009, + 'r', 1009, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 984: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1039); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 985: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1026); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 986: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(959); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 987: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1063); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 988: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1085); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 989: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + 'E', 1130, + 'e', 1130, + 'H', 984, + 'h', 984, + 'O', 596, + 'o', 596, + 'R', 1125, + 'r', 1125, + 'Y', 1067, + 'y', 1067, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 990: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(950); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 991: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1048); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 992: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1049); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 993: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + 'F', 553, + 'f', 553, + 'M', 1061, + 'm', 1061, + 'N', 635, + 'n', 635, + 'S', 619, + 's', 619, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 994: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(605); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 995: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(978); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 996: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(754); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 997: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(653); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 998: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1008); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 999: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1128); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1068); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1000: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1013); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1001: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(951); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1002: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1028); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1003: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(946); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1004: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1059); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1005: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(947); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1006: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1020); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1007: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1015); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1008: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1040); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1009: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1114); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1010: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1107); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1011: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(992); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1012: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(689); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1013: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(969); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1014: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(757); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1015: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(647); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1016: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1014); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1017: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1001); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1018: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1003); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1019: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(990); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(586); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1020: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(973); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1021: + ACCEPT_TOKEN(sym_identifier); + ADVANCE_MAP( + 'L', 1096, + 'l', 1096, + 'M', 1066, + 'm', 1066, + 'N', 953, + 'n', 953, + 'Q', 1127, + 'q', 1127, + 'R', 1087, + 'r', 1087, + 'X', 1064, + 'x', 1064, + ); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1022: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1097); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1023: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1099); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1066); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1127); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1024: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1099); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1066); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1025: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1099); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1026: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(482); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1027: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(560); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1028: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(773); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1029: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(679); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1030: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1066); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1127); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1031: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1066); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1087); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1032: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1066); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1033: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1061); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(619); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1034: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1061); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1035: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1070); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1036: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(975); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1037: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(952); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1038: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(671); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(583); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1039: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(548); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1040: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(996); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1041: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(568); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1042: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(949); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1043: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(961); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1044: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(956); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1045: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1117); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1046: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1120); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1127); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1047: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1120); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1048: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(957); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1049: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(958); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1050: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(960); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1127); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1051: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(960); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1052: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(932); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1053: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(657); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1054: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(954); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1055: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1101); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1016); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1056: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1079); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1057: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1029); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1058: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1080); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1059: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1041); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1060: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1068); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1061: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(715); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1062: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(641); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1063: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(633); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1064: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1017); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1065: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1126); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1066: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1102); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1067: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(971); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1068: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(988); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1069: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(991); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1070: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(936); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1071: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1127); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1072: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1011); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1042); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1073: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(706); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1111); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1074: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(706); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1075: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(999); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1081); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(943); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1076: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(999); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(943); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1077: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1125); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1078: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(630); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1079: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(709); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1080: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(661); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1081: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1094); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1082: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1132); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1083: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1060); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1084: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(986); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1085: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1110); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1086: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(976); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1087: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1058); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1088: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(592); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1089: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(619); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1090: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(668); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1091: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1124); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1053); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1092: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(966); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1093: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1090); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1094: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(927); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1095: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(967); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1096: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(968); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1097: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(972); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1098: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(979); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1099: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(980); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1100: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(581); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1101: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(998); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1102: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1131); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1103: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(627); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1104: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(537); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1105: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(677); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1106: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(613); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1107: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(527); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1108: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(928); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1109: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(997); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1110: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1133); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1111: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1065); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1112: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1005); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1113: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1004); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1114: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(974); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1115: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(977); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1116: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(987); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1117: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1007); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1118: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(934); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(940); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1119: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(934); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1120: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1027); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1121: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(940); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1122: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1042); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1123: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1036); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1124: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(941); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1125: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(970); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1126: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1105); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1127: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(712); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1128: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(937); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1129: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1103); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1130: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1104); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1131: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(760); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1132: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(535); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1133: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(573); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1134: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1067); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + case 1135: + ACCEPT_TOKEN(sym_identifier); + if (('#' <= lookahead && lookahead <= '&') || + lookahead == '@' || + lookahead == '^') ADVANCE(768); + if (lookahead > '/' && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || 0xbf < lookahead)) ADVANCE(1135); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + ADVANCE_MAP( + 'A', 1, + 'a', 1, + 'B', 2, + 'b', 2, + 'C', 3, + 'c', 3, + 'D', 4, + 'd', 4, + 'E', 5, + 'e', 5, + 'I', 6, + 'i', 6, + 'L', 7, + 'l', 7, + 'N', 8, + 'n', 8, + 'O', 9, + 'o', 9, + 'P', 10, + 'p', 10, + 'R', 11, + 'r', 11, + 'S', 12, + 's', 12, + 'T', 13, + 't', 13, + 'U', 14, + 'u', 14, + 'V', 15, + 'v', 15, + 'W', 16, + 'w', 16, + ); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == ' ') SKIP(0); + END_STATE(); + case 1: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(17); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(18); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(19); + END_STATE(); + case 2: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(20); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(21); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(22); + END_STATE(); + case 3: + ADVANCE_MAP( + 'A', 23, + 'a', 23, + 'L', 24, + 'l', 24, + 'O', 25, + 'o', 25, + 'U', 26, + 'u', 26, + ); + END_STATE(); + case 4: + ADVANCE_MAP( + 'A', 27, + 'a', 27, + 'E', 28, + 'e', 28, + 'I', 29, + 'i', 29, + 'O', 30, + 'o', 30, + ); + END_STATE(); + case 5: + ADVANCE_MAP( + 'A', 31, + 'a', 31, + 'N', 32, + 'n', 32, + 'R', 33, + 'r', 33, + 'V', 34, + 'v', 34, + 'X', 35, + 'x', 35, + ); + END_STATE(); + case 6: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(36); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(37); + END_STATE(); + case 7: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(38); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(39); + END_STATE(); + case 8: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(40); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(41); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(42); + END_STATE(); + case 9: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(43); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(44); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(45); + END_STATE(); + case 10: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(46); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(47); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(48); + END_STATE(); + case 11: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(49); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(50); + END_STATE(); + case 12: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(51); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(52); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(53); + END_STATE(); + case 13: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(54); + END_STATE(); + case 14: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(55); + END_STATE(); + case 15: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(56); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(57); + END_STATE(); + case 16: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(58); + END_STATE(); + case 17: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(59); + END_STATE(); + case 18: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(60); + END_STATE(); + case 19: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(61); + END_STATE(); + case 20: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(62); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(63); + END_STATE(); + case 21: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(64); + END_STATE(); + case 22: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(65); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(66); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(67); + END_STATE(); + case 23: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(68); + END_STATE(); + case 24: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(69); + END_STATE(); + case 25: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(70); + END_STATE(); + case 26: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(71); + END_STATE(); + case 27: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(72); + END_STATE(); + case 28: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(73); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(74); + END_STATE(); + case 29: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(75); + END_STATE(); + case 30: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(76); + END_STATE(); + case 31: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(77); + END_STATE(); + case 32: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(78); + END_STATE(); + case 33: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(79); + END_STATE(); + case 34: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(80); + END_STATE(); + case 35: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(81); + END_STATE(); + case 36: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(82); + END_STATE(); + case 37: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(83); + END_STATE(); + case 38: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(84); + END_STATE(); + case 39: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(85); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(86); + END_STATE(); + case 40: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(87); + END_STATE(); + case 41: + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(88); + END_STATE(); + case 42: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(89); + END_STATE(); + case 43: + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(90); + END_STATE(); + case 44: + ACCEPT_TOKEN(aux_sym_on_goto_statement_token1); + END_STATE(); + case 45: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(91); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(92); + END_STATE(); + case 46: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(93); + END_STATE(); + case 47: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(94); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(95); + END_STATE(); + case 48: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(96); + END_STATE(); + case 49: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(97); + END_STATE(); + case 50: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(98); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(99); + END_STATE(); + case 51: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(100); + END_STATE(); + case 52: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(101); + END_STATE(); + case 53: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(102); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(103); + END_STATE(); + case 54: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(104); + END_STATE(); + case 55: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(105); + END_STATE(); + case 56: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(106); + END_STATE(); + case 57: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(107); + END_STATE(); + case 58: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(108); + END_STATE(); + case 59: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(109); + END_STATE(); + case 60: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(110); + END_STATE(); + case 61: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(111); + END_STATE(); + case 62: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(112); + END_STATE(); + case 63: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(113); + END_STATE(); + case 64: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(114); + END_STATE(); + case 65: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(115); + END_STATE(); + case 66: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(116); + END_STATE(); + case 67: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(117); + END_STATE(); + case 68: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(118); + END_STATE(); + case 69: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(119); + END_STATE(); + case 70: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(120); + END_STATE(); + case 71: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(121); + END_STATE(); + case 72: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(122); + END_STATE(); + case 73: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(123); + END_STATE(); + case 74: + ADVANCE_MAP( + 'B', 124, + 'b', 124, + 'C', 125, + 'c', 125, + 'D', 126, + 'd', 126, + 'I', 127, + 'i', 127, + 'L', 128, + 'l', 128, + 'O', 129, + 'o', 129, + 'S', 130, + 's', 130, + 'V', 131, + 'v', 131, + ); + END_STATE(); + case 75: + ACCEPT_TOKEN(sym__dim_keyword); + END_STATE(); + case 76: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(132); + END_STATE(); + case 77: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(133); + END_STATE(); + case 78: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(134); + END_STATE(); + case 79: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(135); + END_STATE(); + case 80: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(136); + END_STATE(); + case 81: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(137); + END_STATE(); + case 82: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(138); + END_STATE(); + case 83: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(139); + END_STATE(); + case 84: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(140); + END_STATE(); + case 85: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(141); + END_STATE(); + case 86: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(142); + END_STATE(); + case 87: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(143); + END_STATE(); + case 88: + ACCEPT_TOKEN(aux_sym_as_type_clause_token2); + END_STATE(); + case 89: + ACCEPT_TOKEN(aux_sym_unary_expression_token1); + END_STATE(); + case 90: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(144); + END_STATE(); + case 91: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(145); + END_STATE(); + case 92: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(146); + END_STATE(); + case 93: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(147); + END_STATE(); + case 94: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(148); + END_STATE(); + case 95: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(149); + END_STATE(); + case 96: + ACCEPT_TOKEN(aux_sym_put_statement_token1); + END_STATE(); + case 97: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(150); + END_STATE(); + case 98: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(151); + END_STATE(); + case 99: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(152); + END_STATE(); + case 100: + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(153); + END_STATE(); + case 101: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(154); + END_STATE(); + case 102: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(155); + END_STATE(); + case 103: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(156); + END_STATE(); + case 104: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(157); + END_STATE(); + case 105: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(158); + END_STATE(); + case 106: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(159); + END_STATE(); + case 107: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(160); + END_STATE(); + case 108: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(161); + END_STATE(); + case 109: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(162); + END_STATE(); + case 110: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(163); + END_STATE(); + case 111: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(164); + END_STATE(); + case 112: + ACCEPT_TOKEN(sym_beep_statement); + END_STATE(); + case 113: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(165); + END_STATE(); + case 114: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(166); + END_STATE(); + case 115: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(167); + END_STATE(); + case 116: + ACCEPT_TOKEN(aux_sym_type_expression_token3); + END_STATE(); + case 117: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(168); + END_STATE(); + case 118: + ACCEPT_TOKEN(aux_sym_call_statement_token1); + END_STATE(); + case 119: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(169); + END_STATE(); + case 120: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(170); + END_STATE(); + case 121: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(171); + END_STATE(); + case 122: + ACCEPT_TOKEN(aux_sym_type_expression_token11); + END_STATE(); + case 123: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(172); + END_STATE(); + case 124: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(173); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(174); + END_STATE(); + case 125: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(175); + END_STATE(); + case 126: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(176); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(177); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(178); + END_STATE(); + case 127: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(179); + END_STATE(); + case 128: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(180); + END_STATE(); + case 129: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(181); + END_STATE(); + case 130: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(182); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(183); + END_STATE(); + case 131: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(184); + END_STATE(); + case 132: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(185); + END_STATE(); + case 133: + ACCEPT_TOKEN(aux_sym__for_each_header_token1); + END_STATE(); + case 134: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(186); + END_STATE(); + case 135: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(187); + END_STATE(); + case 136: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(188); + END_STATE(); + case 137: + ACCEPT_TOKEN(aux_sym_exit_statement_token1); + END_STATE(); + case 138: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(189); + END_STATE(); + case 139: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(190); + END_STATE(); + case 140: + ACCEPT_TOKEN(aux_sym_dotted_type_expression_token1); + END_STATE(); + case 141: + ACCEPT_TOKEN(aux_sym__attribute_identifier_token1); + END_STATE(); + case 142: + ACCEPT_TOKEN(aux_sym_type_expression_token5); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(191); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(192); + END_STATE(); + case 143: + ACCEPT_TOKEN(aux_sym_frm_property_statement_token1); + END_STATE(); + case 144: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(193); + END_STATE(); + case 145: + ACCEPT_TOKEN(aux_sym_open_statement_token1); + END_STATE(); + case 146: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(194); + END_STATE(); + case 147: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(195); + END_STATE(); + case 148: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(196); + END_STATE(); + case 149: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(197); + END_STATE(); + case 150: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(198); + END_STATE(); + case 151: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(199); + END_STATE(); + case 152: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(200); + END_STATE(); + case 153: + ACCEPT_TOKEN(aux_sym_seek_statement_token1); + END_STATE(); + case 154: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(201); + END_STATE(); + case 155: + ACCEPT_TOKEN(sym_stop_statement); + END_STATE(); + case 156: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(202); + END_STATE(); + case 157: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(203); + END_STATE(); + case 158: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(204); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(205); + END_STATE(); + case 159: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(206); + END_STATE(); + case 160: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(207); + END_STATE(); + case 161: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(208); + END_STATE(); + case 162: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(209); + END_STATE(); + case 163: + ACCEPT_TOKEN(aux_sym_declare_sub_statement_token4); + END_STATE(); + case 164: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(210); + END_STATE(); + case 165: + ACCEPT_TOKEN(aux_sym_frm_begin_block_token1); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(211); + END_STATE(); + case 166: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(212); + END_STATE(); + case 167: + ACCEPT_TOKEN(sym_byref_modifier); + END_STATE(); + case 168: + ACCEPT_TOKEN(aux_sym_byval_modifier_token1); + END_STATE(); + case 169: + ACCEPT_TOKEN(aux_sym_close_statement_token1); + END_STATE(); + case 170: + ACCEPT_TOKEN(aux_sym_const_declaration_token1); + END_STATE(); + case 171: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(213); + END_STATE(); + case 172: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(214); + END_STATE(); + case 173: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(215); + END_STATE(); + case 174: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(216); + END_STATE(); + case 175: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(217); + END_STATE(); + case 176: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(218); + END_STATE(); + case 177: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(219); + END_STATE(); + case 178: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(220); + END_STATE(); + case 179: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(221); + END_STATE(); + case 180: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(222); + END_STATE(); + case 181: + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(223); + END_STATE(); + case 182: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(224); + END_STATE(); + case 183: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(225); + END_STATE(); + case 184: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(226); + END_STATE(); + case 185: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(227); + END_STATE(); + case 186: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(228); + END_STATE(); + case 187: + ACCEPT_TOKEN(aux_sym_erase_statement_token1); + END_STATE(); + case 188: + ACCEPT_TOKEN(aux_sym_event_declaration_token1); + END_STATE(); + case 189: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(229); + END_STATE(); + case 190: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(230); + END_STATE(); + case 191: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(231); + END_STATE(); + case 192: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(232); + END_STATE(); + case 193: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(233); + END_STATE(); + case 194: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(234); + END_STATE(); + case 195: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(235); + END_STATE(); + case 196: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(236); + END_STATE(); + case 197: + ACCEPT_TOKEN(aux_sym_print_statement_token1); + END_STATE(); + case 198: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(237); + END_STATE(); + case 199: + ACCEPT_TOKEN(sym__redim_keyword); + END_STATE(); + case 200: + ACCEPT_TOKEN(sym_reset_statement); + END_STATE(); + case 201: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(238); + END_STATE(); + case 202: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(239); + END_STATE(); + case 203: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(240); + END_STATE(); + case 204: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(241); + END_STATE(); + case 205: + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(242); + END_STATE(); + case 206: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(243); + END_STATE(); + case 207: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(244); + END_STATE(); + case 208: + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(245); + END_STATE(); + case 209: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(246); + END_STATE(); + case 210: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(247); + END_STATE(); + case 211: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(248); + END_STATE(); + case 212: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(249); + END_STATE(); + case 213: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(250); + END_STATE(); + case 214: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(251); + END_STATE(); + case 215: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(252); + END_STATE(); + case 216: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(253); + END_STATE(); + case 217: + ACCEPT_TOKEN(aux_sym_def_type_statement_token3); + END_STATE(); + case 218: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(254); + END_STATE(); + case 219: + ACCEPT_TOKEN(aux_sym_def_type_statement_token5); + END_STATE(); + case 220: + ACCEPT_TOKEN(aux_sym_def_type_statement_token6); + END_STATE(); + case 221: + ACCEPT_TOKEN(aux_sym_def_type_statement_token7); + END_STATE(); + case 222: + ACCEPT_TOKEN(aux_sym_def_type_statement_token8); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(255); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(256); + END_STATE(); + case 223: + ACCEPT_TOKEN(aux_sym_def_type_statement_token11); + END_STATE(); + case 224: + ACCEPT_TOKEN(aux_sym_def_type_statement_token12); + END_STATE(); + case 225: + ACCEPT_TOKEN(aux_sym_def_type_statement_token13); + END_STATE(); + case 226: + ACCEPT_TOKEN(aux_sym_def_type_statement_token14); + END_STATE(); + case 227: + ACCEPT_TOKEN(aux_sym_type_expression_token9); + END_STATE(); + case 228: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(257); + END_STATE(); + case 229: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(258); + END_STATE(); + case 230: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(259); + END_STATE(); + case 231: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(260); + END_STATE(); + case 232: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(261); + END_STATE(); + case 233: + ACCEPT_TOKEN(aux_sym_type_expression_token13); + END_STATE(); + case 234: + ACCEPT_TOKEN(aux_sym_option_statement_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(262); + END_STATE(); + case 235: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(263); + END_STATE(); + case 236: + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(264); + END_STATE(); + case 237: + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(265); + END_STATE(); + case 238: + ACCEPT_TOKEN(aux_sym_type_expression_token8); + END_STATE(); + case 239: + ACCEPT_TOKEN(aux_sym_type_expression_token1); + END_STATE(); + case 240: + ACCEPT_TOKEN(aux_sym_type_of_expression_token1); + END_STATE(); + case 241: + ACCEPT_TOKEN(aux_sym_unload_statement_token1); + END_STATE(); + case 242: + ACCEPT_TOKEN(aux_sym_unlock_statement_token1); + END_STATE(); + case 243: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(266); + END_STATE(); + case 244: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(267); + END_STATE(); + case 245: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(268); + END_STATE(); + case 246: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(269); + END_STATE(); + case 247: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(270); + END_STATE(); + case 248: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(271); + END_STATE(); + case 249: + ACCEPT_TOKEN(aux_sym_type_expression_token2); + END_STATE(); + case 250: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(272); + END_STATE(); + case 251: + ACCEPT_TOKEN(aux_sym_declare_sub_statement_token1); + END_STATE(); + case 252: + ACCEPT_TOKEN(aux_sym_def_type_statement_token1); + END_STATE(); + case 253: + ACCEPT_TOKEN(aux_sym_def_type_statement_token2); + END_STATE(); + case 254: + ACCEPT_TOKEN(aux_sym_def_type_statement_token4); + END_STATE(); + case 255: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(273); + END_STATE(); + case 256: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(274); + END_STATE(); + case 257: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(275); + END_STATE(); + case 258: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(276); + END_STATE(); + case 259: + ACCEPT_TOKEN(aux_sym_type_expression_token4); + END_STATE(); + case 260: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(277); + END_STATE(); + case 261: + ACCEPT_TOKEN(aux_sym_type_expression_token7); + END_STATE(); + case 262: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(278); + END_STATE(); + case 263: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(279); + END_STATE(); + case 264: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(280); + END_STATE(); + case 265: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(281); + END_STATE(); + case 266: + ACCEPT_TOKEN(aux_sym_type_expression_token12); + END_STATE(); + case 267: + ACCEPT_TOKEN(aux_sym_frm_version_statement_token1); + END_STATE(); + case 268: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(282); + END_STATE(); + case 269: + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(283); + END_STATE(); + case 270: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(284); + END_STATE(); + case 271: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(285); + END_STATE(); + case 272: + ACCEPT_TOKEN(aux_sym_type_expression_token10); + END_STATE(); + case 273: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(286); + END_STATE(); + case 274: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(287); + END_STATE(); + case 275: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(288); + END_STATE(); + case 276: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(289); + END_STATE(); + case 277: + ACCEPT_TOKEN(aux_sym_type_expression_token6); + END_STATE(); + case 278: + ACCEPT_TOKEN(sym_optional_modifier); + END_STATE(); + case 279: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(290); + END_STATE(); + case 280: + ACCEPT_TOKEN(aux_sym_redim_statement_token1); + END_STATE(); + case 281: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(291); + END_STATE(); + case 282: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(292); + END_STATE(); + case 283: + ACCEPT_TOKEN(aux_sym_addressof_expression_token1); + END_STATE(); + case 284: + ACCEPT_TOKEN(aux_sym_attribute_statement_token1); + END_STATE(); + case 285: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(293); + END_STATE(); + case 286: + ACCEPT_TOKEN(aux_sym_def_type_statement_token9); + END_STATE(); + case 287: + ACCEPT_TOKEN(aux_sym_def_type_statement_token10); + END_STATE(); + case 288: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(294); + END_STATE(); + case 289: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(295); + END_STATE(); + case 290: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(296); + END_STATE(); + case 291: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(297); + END_STATE(); + case 292: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(298); + END_STATE(); + case 293: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(299); + END_STATE(); + case 294: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(300); + END_STATE(); + case 295: + ACCEPT_TOKEN(aux_sym_implements_statement_token1); + END_STATE(); + case 296: + ACCEPT_TOKEN(sym_paramarray_modifier); + END_STATE(); + case 297: + ACCEPT_TOKEN(aux_sym_raise_event_statement_token1); + END_STATE(); + case 298: + ACCEPT_TOKEN(sym_with_events_modifier); + END_STATE(); + case 299: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(301); + END_STATE(); + case 300: + ACCEPT_TOKEN(aux_sym_frm_begin_property_block_token2); + END_STATE(); + case 301: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(302); + END_STATE(); + case 302: + ACCEPT_TOKEN(aux_sym_frm_begin_property_block_token1); + END_STATE(); + default: + return false; + } +} + +static const TSLexerMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0}, + [1] = {.lex_state = 457}, + [2] = {.lex_state = 16}, + [3] = {.lex_state = 16}, + [4] = {.lex_state = 16}, + [5] = {.lex_state = 16}, + [6] = {.lex_state = 16}, + [7] = {.lex_state = 16}, + [8] = {.lex_state = 16}, + [9] = {.lex_state = 16}, + [10] = {.lex_state = 16}, + [11] = {.lex_state = 16}, + [12] = {.lex_state = 16}, + [13] = {.lex_state = 16}, + [14] = {.lex_state = 16}, + [15] = {.lex_state = 16}, + [16] = {.lex_state = 113}, + [17] = {.lex_state = 113}, + [18] = {.lex_state = 113}, + [19] = {.lex_state = 66}, + [20] = {.lex_state = 66}, + [21] = {.lex_state = 66}, + [22] = {.lex_state = 66}, + [23] = {.lex_state = 66}, + [24] = {.lex_state = 66}, + [25] = {.lex_state = 66}, + [26] = {.lex_state = 66}, + [27] = {.lex_state = 66}, + [28] = {.lex_state = 66}, + [29] = {.lex_state = 66}, + [30] = {.lex_state = 66}, + [31] = {.lex_state = 66}, + [32] = {.lex_state = 66}, + [33] = {.lex_state = 66}, + [34] = {.lex_state = 66}, + [35] = {.lex_state = 66}, + [36] = {.lex_state = 66}, + [37] = {.lex_state = 66}, + [38] = {.lex_state = 66}, + [39] = {.lex_state = 66}, + [40] = {.lex_state = 66}, + [41] = {.lex_state = 66}, + [42] = {.lex_state = 66}, + [43] = {.lex_state = 66}, + [44] = {.lex_state = 66}, + [45] = {.lex_state = 66}, + [46] = {.lex_state = 66}, + [47] = {.lex_state = 66}, + [48] = {.lex_state = 66}, + [49] = {.lex_state = 17}, + [50] = {.lex_state = 17}, + [51] = {.lex_state = 17}, + [52] = {.lex_state = 17}, + [53] = {.lex_state = 17}, + [54] = {.lex_state = 68}, + [55] = {.lex_state = 68}, + [56] = {.lex_state = 65}, + [57] = {.lex_state = 69}, + [58] = {.lex_state = 68}, + [59] = {.lex_state = 69}, + [60] = {.lex_state = 67}, + [61] = {.lex_state = 69}, + [62] = {.lex_state = 68}, + [63] = {.lex_state = 69}, + [64] = {.lex_state = 67}, + [65] = {.lex_state = 69}, + [66] = {.lex_state = 69}, + [67] = {.lex_state = 67}, + [68] = {.lex_state = 69}, + [69] = {.lex_state = 68}, + [70] = {.lex_state = 69}, + [71] = {.lex_state = 67}, + [72] = {.lex_state = 69}, + [73] = {.lex_state = 69}, + [74] = {.lex_state = 67}, + [75] = {.lex_state = 69}, + [76] = {.lex_state = 68}, + [77] = {.lex_state = 69}, + [78] = {.lex_state = 67}, + [79] = {.lex_state = 69}, + [80] = {.lex_state = 69}, + [81] = {.lex_state = 67}, + [82] = {.lex_state = 69}, + [83] = {.lex_state = 68}, + [84] = {.lex_state = 69}, + [85] = {.lex_state = 67}, + [86] = {.lex_state = 69}, + [87] = {.lex_state = 69}, + [88] = {.lex_state = 67}, + [89] = {.lex_state = 69}, + [90] = {.lex_state = 68}, + [91] = {.lex_state = 69}, + [92] = {.lex_state = 67}, + [93] = {.lex_state = 69}, + [94] = {.lex_state = 69}, + [95] = {.lex_state = 67}, + [96] = {.lex_state = 69}, + [97] = {.lex_state = 68}, + [98] = {.lex_state = 67}, + [99] = {.lex_state = 67}, + [100] = {.lex_state = 69}, + [101] = {.lex_state = 69}, + [102] = {.lex_state = 67}, + [103] = {.lex_state = 69}, + [104] = {.lex_state = 68}, + [105] = {.lex_state = 69}, + [106] = {.lex_state = 67}, + [107] = {.lex_state = 69}, + [108] = {.lex_state = 69}, + [109] = {.lex_state = 67}, + [110] = {.lex_state = 69}, + [111] = {.lex_state = 68}, + [112] = {.lex_state = 69}, + [113] = {.lex_state = 67}, + [114] = {.lex_state = 69}, + [115] = {.lex_state = 69}, + [116] = {.lex_state = 67}, + [117] = {.lex_state = 68}, + [118] = {.lex_state = 68}, + [119] = {.lex_state = 68}, + [120] = {.lex_state = 68}, + [121] = {.lex_state = 69}, + [122] = {.lex_state = 68}, + [123] = {.lex_state = 68}, + [124] = {.lex_state = 68}, + [125] = {.lex_state = 69}, + [126] = {.lex_state = 67}, + [127] = {.lex_state = 69}, + [128] = {.lex_state = 69}, + [129] = {.lex_state = 67}, + [130] = {.lex_state = 65}, + [131] = {.lex_state = 65}, + [132] = {.lex_state = 69}, + [133] = {.lex_state = 65}, + [134] = {.lex_state = 69}, + [135] = {.lex_state = 69}, + [136] = {.lex_state = 66}, + [137] = {.lex_state = 66}, + [138] = {.lex_state = 66}, + [139] = {.lex_state = 66}, + [140] = {.lex_state = 66}, + [141] = {.lex_state = 66}, + [142] = {.lex_state = 69}, + [143] = {.lex_state = 66}, + [144] = {.lex_state = 69}, + [145] = {.lex_state = 17}, + [146] = {.lex_state = 114}, + [147] = {.lex_state = 114}, + [148] = {.lex_state = 68}, + [149] = {.lex_state = 68}, + [150] = {.lex_state = 66}, + [151] = {.lex_state = 67}, + [152] = {.lex_state = 67}, + [153] = {.lex_state = 66}, + [154] = {.lex_state = 66}, + [155] = {.lex_state = 66}, + [156] = {.lex_state = 66}, + [157] = {.lex_state = 66}, + [158] = {.lex_state = 66}, + [159] = {.lex_state = 66}, + [160] = {.lex_state = 66}, + [161] = {.lex_state = 66}, + [162] = {.lex_state = 65}, + [163] = {.lex_state = 66}, + [164] = {.lex_state = 66}, + [165] = {.lex_state = 65}, + [166] = {.lex_state = 66}, + [167] = {.lex_state = 66}, + [168] = {.lex_state = 66}, + [169] = {.lex_state = 66}, + [170] = {.lex_state = 66}, + [171] = {.lex_state = 66}, + [172] = {.lex_state = 66}, + [173] = {.lex_state = 66}, + [174] = {.lex_state = 66}, + [175] = {.lex_state = 66}, + [176] = {.lex_state = 114}, + [177] = {.lex_state = 66}, + [178] = {.lex_state = 66}, + [179] = {.lex_state = 17}, + [180] = {.lex_state = 17}, + [181] = {.lex_state = 66}, + [182] = {.lex_state = 17}, + [183] = {.lex_state = 114}, + [184] = {.lex_state = 114}, + [185] = {.lex_state = 114}, + [186] = {.lex_state = 114}, + [187] = {.lex_state = 16}, + [188] = {.lex_state = 114}, + [189] = {.lex_state = 114}, + [190] = {.lex_state = 114}, + [191] = {.lex_state = 114}, + [192] = {.lex_state = 114}, + [193] = {.lex_state = 114}, + [194] = {.lex_state = 114}, + [195] = {.lex_state = 114}, + [196] = {.lex_state = 113}, + [197] = {.lex_state = 17}, + [198] = {.lex_state = 4}, + [199] = {.lex_state = 69}, + [200] = {.lex_state = 114}, + [201] = {.lex_state = 68}, + [202] = {.lex_state = 65}, + [203] = {.lex_state = 67}, + [204] = {.lex_state = 101}, + [205] = {.lex_state = 66}, + [206] = {.lex_state = 5}, + [207] = {.lex_state = 38}, + [208] = {.lex_state = 102}, + [209] = {.lex_state = 39}, + [210] = {.lex_state = 39}, + [211] = {.lex_state = 35}, + [212] = {.lex_state = 38}, + [213] = {.lex_state = 37}, + [214] = {.lex_state = 37}, + [215] = {.lex_state = 36}, + [216] = {.lex_state = 147}, + [217] = {.lex_state = 147}, + [218] = {.lex_state = 147}, + [219] = {.lex_state = 147}, + [220] = {.lex_state = 147}, + [221] = {.lex_state = 147}, + [222] = {.lex_state = 147}, + [223] = {.lex_state = 147}, + [224] = {.lex_state = 147}, + [225] = {.lex_state = 147}, + [226] = {.lex_state = 147}, + [227] = {.lex_state = 148}, + [228] = {.lex_state = 150}, + [229] = {.lex_state = 147}, + [230] = {.lex_state = 149}, + [231] = {.lex_state = 147}, + [232] = {.lex_state = 148}, + [233] = {.lex_state = 149}, + [234] = {.lex_state = 149}, + [235] = {.lex_state = 149}, + [236] = {.lex_state = 149}, + [237] = {.lex_state = 148}, + [238] = {.lex_state = 149}, + [239] = {.lex_state = 149}, + [240] = {.lex_state = 147}, + [241] = {.lex_state = 149}, + [242] = {.lex_state = 149}, + [243] = {.lex_state = 147}, + [244] = {.lex_state = 149}, + [245] = {.lex_state = 148}, + [246] = {.lex_state = 148}, + [247] = {.lex_state = 147}, + [248] = {.lex_state = 149}, + [249] = {.lex_state = 149}, + [250] = {.lex_state = 149}, + [251] = {.lex_state = 149}, + [252] = {.lex_state = 148}, + [253] = {.lex_state = 147}, + [254] = {.lex_state = 149}, + [255] = {.lex_state = 149}, + [256] = {.lex_state = 149}, + [257] = {.lex_state = 149}, + [258] = {.lex_state = 147}, + [259] = {.lex_state = 147}, + [260] = {.lex_state = 149}, + [261] = {.lex_state = 147}, + [262] = {.lex_state = 147}, + [263] = {.lex_state = 149}, + [264] = {.lex_state = 149}, + [265] = {.lex_state = 147}, + [266] = {.lex_state = 149}, + [267] = {.lex_state = 148}, + [268] = {.lex_state = 149}, + [269] = {.lex_state = 147}, + [270] = {.lex_state = 149}, + [271] = {.lex_state = 149}, + [272] = {.lex_state = 147}, + [273] = {.lex_state = 149}, + [274] = {.lex_state = 148}, + [275] = {.lex_state = 147}, + [276] = {.lex_state = 149}, + [277] = {.lex_state = 147}, + [278] = {.lex_state = 149}, + [279] = {.lex_state = 147}, + [280] = {.lex_state = 149}, + [281] = {.lex_state = 147}, + [282] = {.lex_state = 149}, + [283] = {.lex_state = 148}, + [284] = {.lex_state = 147}, + [285] = {.lex_state = 149}, + [286] = {.lex_state = 147}, + [287] = {.lex_state = 149}, + [288] = {.lex_state = 147}, + [289] = {.lex_state = 149}, + [290] = {.lex_state = 148}, + [291] = {.lex_state = 148}, + [292] = {.lex_state = 147}, + [293] = {.lex_state = 148}, + [294] = {.lex_state = 148}, + [295] = {.lex_state = 148}, + [296] = {.lex_state = 147}, + [297] = {.lex_state = 148}, + [298] = {.lex_state = 148}, + [299] = {.lex_state = 147}, + [300] = {.lex_state = 148}, + [301] = {.lex_state = 149}, + [302] = {.lex_state = 147}, + [303] = {.lex_state = 147}, + [304] = {.lex_state = 150}, + [305] = {.lex_state = 150}, + [306] = {.lex_state = 149}, + [307] = {.lex_state = 150}, + [308] = {.lex_state = 147}, + [309] = {.lex_state = 147}, + [310] = {.lex_state = 149}, + [311] = {.lex_state = 147}, + [312] = {.lex_state = 148}, + [313] = {.lex_state = 150}, + [314] = {.lex_state = 147}, + [315] = {.lex_state = 149}, + [316] = {.lex_state = 150}, + [317] = {.lex_state = 150}, + [318] = {.lex_state = 150}, + [319] = {.lex_state = 149}, + [320] = {.lex_state = 150}, + [321] = {.lex_state = 150}, + [322] = {.lex_state = 149}, + [323] = {.lex_state = 150}, + [324] = {.lex_state = 147}, + [325] = {.lex_state = 150}, + [326] = {.lex_state = 150}, + [327] = {.lex_state = 150}, + [328] = {.lex_state = 150}, + [329] = {.lex_state = 150}, + [330] = {.lex_state = 147}, + [331] = {.lex_state = 150}, + [332] = {.lex_state = 150}, + [333] = {.lex_state = 150}, + [334] = {.lex_state = 149}, + [335] = {.lex_state = 150}, + [336] = {.lex_state = 147}, + [337] = {.lex_state = 147}, + [338] = {.lex_state = 147}, + [339] = {.lex_state = 147}, + [340] = {.lex_state = 147}, + [341] = {.lex_state = 147}, + [342] = {.lex_state = 147}, + [343] = {.lex_state = 147}, + [344] = {.lex_state = 147}, + [345] = {.lex_state = 147}, + [346] = {.lex_state = 147}, + [347] = {.lex_state = 147}, + [348] = {.lex_state = 147}, + [349] = {.lex_state = 4}, + [350] = {.lex_state = 16}, + [351] = {.lex_state = 101}, + [352] = {.lex_state = 16}, + [353] = {.lex_state = 16}, + [354] = {.lex_state = 16}, + [355] = {.lex_state = 16}, + [356] = {.lex_state = 16}, + [357] = {.lex_state = 16}, + [358] = {.lex_state = 16}, + [359] = {.lex_state = 16}, + [360] = {.lex_state = 113}, + [361] = {.lex_state = 113}, + [362] = {.lex_state = 113}, + [363] = {.lex_state = 113}, + [364] = {.lex_state = 113}, + [365] = {.lex_state = 113}, + [366] = {.lex_state = 113}, + [367] = {.lex_state = 16}, + [368] = {.lex_state = 16}, + [369] = {.lex_state = 113}, + [370] = {.lex_state = 113}, + [371] = {.lex_state = 16}, + [372] = {.lex_state = 16}, + [373] = {.lex_state = 113}, + [374] = {.lex_state = 5}, + [375] = {.lex_state = 113}, + [376] = {.lex_state = 113}, + [377] = {.lex_state = 2}, + [378] = {.lex_state = 17}, + [379] = {.lex_state = 113}, + [380] = {.lex_state = 2}, + [381] = {.lex_state = 2}, + [382] = {.lex_state = 38}, + [383] = {.lex_state = 35}, + [384] = {.lex_state = 2}, + [385] = {.lex_state = 2}, + [386] = {.lex_state = 2}, + [387] = {.lex_state = 17}, + [388] = {.lex_state = 39}, + [389] = {.lex_state = 17}, + [390] = {.lex_state = 102}, + [391] = {.lex_state = 2}, + [392] = {.lex_state = 17}, + [393] = {.lex_state = 17}, + [394] = {.lex_state = 37}, + [395] = {.lex_state = 2}, + [396] = {.lex_state = 17}, + [397] = {.lex_state = 2}, + [398] = {.lex_state = 2}, + [399] = {.lex_state = 2}, + [400] = {.lex_state = 2}, + [401] = {.lex_state = 2}, + [402] = {.lex_state = 2}, + [403] = {.lex_state = 17}, + [404] = {.lex_state = 2}, + [405] = {.lex_state = 2}, + [406] = {.lex_state = 2}, + [407] = {.lex_state = 2}, + [408] = {.lex_state = 2}, + [409] = {.lex_state = 2}, + [410] = {.lex_state = 2}, + [411] = {.lex_state = 2}, + [412] = {.lex_state = 2}, + [413] = {.lex_state = 2}, + [414] = {.lex_state = 2}, + [415] = {.lex_state = 2}, + [416] = {.lex_state = 2}, + [417] = {.lex_state = 2}, + [418] = {.lex_state = 65}, + [419] = {.lex_state = 114}, + [420] = {.lex_state = 17}, + [421] = {.lex_state = 2}, + [422] = {.lex_state = 2}, + [423] = {.lex_state = 2}, + [424] = {.lex_state = 2}, + [425] = {.lex_state = 2}, + [426] = {.lex_state = 2}, + [427] = {.lex_state = 2}, + [428] = {.lex_state = 2}, + [429] = {.lex_state = 2}, + [430] = {.lex_state = 2}, + [431] = {.lex_state = 2}, + [432] = {.lex_state = 2}, + [433] = {.lex_state = 2}, + [434] = {.lex_state = 2}, + [435] = {.lex_state = 2}, + [436] = {.lex_state = 9}, + [437] = {.lex_state = 2}, + [438] = {.lex_state = 9}, + [439] = {.lex_state = 9}, + [440] = {.lex_state = 9}, + [441] = {.lex_state = 8}, + [442] = {.lex_state = 36}, + [443] = {.lex_state = 8}, + [444] = {.lex_state = 8}, + [445] = {.lex_state = 8}, + [446] = {.lex_state = 2}, + [447] = {.lex_state = 68}, + [448] = {.lex_state = 2}, + [449] = {.lex_state = 67}, + [450] = {.lex_state = 2}, + [451] = {.lex_state = 2}, + [452] = {.lex_state = 2}, + [453] = {.lex_state = 2}, + [454] = {.lex_state = 2}, + [455] = {.lex_state = 2}, + [456] = {.lex_state = 2}, + [457] = {.lex_state = 2}, + [458] = {.lex_state = 2}, + [459] = {.lex_state = 99}, + [460] = {.lex_state = 2}, + [461] = {.lex_state = 2}, + [462] = {.lex_state = 69}, + [463] = {.lex_state = 2}, + [464] = {.lex_state = 17}, + [465] = {.lex_state = 2}, + [466] = {.lex_state = 8}, + [467] = {.lex_state = 9}, + [468] = {.lex_state = 9}, + [469] = {.lex_state = 9}, + [470] = {.lex_state = 9}, + [471] = {.lex_state = 9}, + [472] = {.lex_state = 9}, + [473] = {.lex_state = 9}, + [474] = {.lex_state = 114}, + [475] = {.lex_state = 9}, + [476] = {.lex_state = 9}, + [477] = {.lex_state = 9}, + [478] = {.lex_state = 9}, + [479] = {.lex_state = 9}, + [480] = {.lex_state = 9}, + [481] = {.lex_state = 2}, + [482] = {.lex_state = 2}, + [483] = {.lex_state = 9}, + [484] = {.lex_state = 65}, + [485] = {.lex_state = 8}, + [486] = {.lex_state = 8}, + [487] = {.lex_state = 114}, + [488] = {.lex_state = 9}, + [489] = {.lex_state = 9}, + [490] = {.lex_state = 114}, + [491] = {.lex_state = 9}, + [492] = {.lex_state = 9}, + [493] = {.lex_state = 9}, + [494] = {.lex_state = 9}, + [495] = {.lex_state = 9}, + [496] = {.lex_state = 9}, + [497] = {.lex_state = 8}, + [498] = {.lex_state = 69}, + [499] = {.lex_state = 8}, + [500] = {.lex_state = 8}, + [501] = {.lex_state = 65}, + [502] = {.lex_state = 8}, + [503] = {.lex_state = 8}, + [504] = {.lex_state = 8}, + [505] = {.lex_state = 8}, + [506] = {.lex_state = 8}, + [507] = {.lex_state = 8}, + [508] = {.lex_state = 8}, + [509] = {.lex_state = 8}, + [510] = {.lex_state = 8}, + [511] = {.lex_state = 8}, + [512] = {.lex_state = 8}, + [513] = {.lex_state = 8}, + [514] = {.lex_state = 8}, + [515] = {.lex_state = 8}, + [516] = {.lex_state = 8}, + [517] = {.lex_state = 8}, + [518] = {.lex_state = 8}, + [519] = {.lex_state = 8}, + [520] = {.lex_state = 8}, + [521] = {.lex_state = 9}, + [522] = {.lex_state = 9}, + [523] = {.lex_state = 8}, + [524] = {.lex_state = 8}, + [525] = {.lex_state = 8}, + [526] = {.lex_state = 8}, + [527] = {.lex_state = 65}, + [528] = {.lex_state = 65}, + [529] = {.lex_state = 8}, + [530] = {.lex_state = 8}, + [531] = {.lex_state = 114}, + [532] = {.lex_state = 9}, + [533] = {.lex_state = 8}, + [534] = {.lex_state = 8}, + [535] = {.lex_state = 8}, + [536] = {.lex_state = 8}, + [537] = {.lex_state = 8}, + [538] = {.lex_state = 8}, + [539] = {.lex_state = 8}, + [540] = {.lex_state = 66}, + [541] = {.lex_state = 99}, + [542] = {.lex_state = 68}, + [543] = {.lex_state = 9}, + [544] = {.lex_state = 68}, + [545] = {.lex_state = 68}, + [546] = {.lex_state = 68}, + [547] = {.lex_state = 9}, + [548] = {.lex_state = 67}, + [549] = {.lex_state = 9}, + [550] = {.lex_state = 67}, + [551] = {.lex_state = 67}, + [552] = {.lex_state = 67}, + [553] = {.lex_state = 69}, + [554] = {.lex_state = 9}, + [555] = {.lex_state = 9}, + [556] = {.lex_state = 9}, + [557] = {.lex_state = 9}, + [558] = {.lex_state = 9}, + [559] = {.lex_state = 99}, + [560] = {.lex_state = 9}, + [561] = {.lex_state = 99}, + [562] = {.lex_state = 9}, + [563] = {.lex_state = 9}, + [564] = {.lex_state = 69}, + [565] = {.lex_state = 99}, + [566] = {.lex_state = 9}, + [567] = {.lex_state = 69}, + [568] = {.lex_state = 9}, + [569] = {.lex_state = 99}, + [570] = {.lex_state = 99}, + [571] = {.lex_state = 9}, + [572] = {.lex_state = 8}, + [573] = {.lex_state = 106}, + [574] = {.lex_state = 114}, + [575] = {.lex_state = 99}, + [576] = {.lex_state = 99}, + [577] = {.lex_state = 69}, + [578] = {.lex_state = 69}, + [579] = {.lex_state = 69}, + [580] = {.lex_state = 99}, + [581] = {.lex_state = 99}, + [582] = {.lex_state = 99}, + [583] = {.lex_state = 99}, + [584] = {.lex_state = 99}, + [585] = {.lex_state = 99}, + [586] = {.lex_state = 106}, + [587] = {.lex_state = 65}, + [588] = {.lex_state = 99}, + [589] = {.lex_state = 99}, + [590] = {.lex_state = 99}, + [591] = {.lex_state = 99}, + [592] = {.lex_state = 99}, + [593] = {.lex_state = 99}, + [594] = {.lex_state = 99}, + [595] = {.lex_state = 99}, + [596] = {.lex_state = 99}, + [597] = {.lex_state = 99}, + [598] = {.lex_state = 99}, + [599] = {.lex_state = 99}, + [600] = {.lex_state = 99}, + [601] = {.lex_state = 99}, + [602] = {.lex_state = 99}, + [603] = {.lex_state = 99}, + [604] = {.lex_state = 99}, + [605] = {.lex_state = 99}, + [606] = {.lex_state = 99}, + [607] = {.lex_state = 99}, + [608] = {.lex_state = 106}, + [609] = {.lex_state = 106}, + [610] = {.lex_state = 99}, + [611] = {.lex_state = 99}, + [612] = {.lex_state = 105}, + [613] = {.lex_state = 105}, + [614] = {.lex_state = 105}, + [615] = {.lex_state = 105}, + [616] = {.lex_state = 66}, + [617] = {.lex_state = 114}, + [618] = {.lex_state = 65}, + [619] = {.lex_state = 65}, + [620] = {.lex_state = 68}, + [621] = {.lex_state = 68}, + [622] = {.lex_state = 99}, + [623] = {.lex_state = 68}, + [624] = {.lex_state = 68}, + [625] = {.lex_state = 65}, + [626] = {.lex_state = 99}, + [627] = {.lex_state = 69}, + [628] = {.lex_state = 67}, + [629] = {.lex_state = 67}, + [630] = {.lex_state = 67}, + [631] = {.lex_state = 67}, + [632] = {.lex_state = 99}, + [633] = {.lex_state = 99}, + [634] = {.lex_state = 99}, + [635] = {.lex_state = 99}, + [636] = {.lex_state = 17}, + [637] = {.lex_state = 66}, + [638] = {.lex_state = 99}, + [639] = {.lex_state = 99}, + [640] = {.lex_state = 99}, + [641] = {.lex_state = 99}, + [642] = {.lex_state = 99}, + [643] = {.lex_state = 99}, + [644] = {.lex_state = 99}, + [645] = {.lex_state = 66}, + [646] = {.lex_state = 99}, + [647] = {.lex_state = 99}, + [648] = {.lex_state = 99}, + [649] = {.lex_state = 99}, + [650] = {.lex_state = 99}, + [651] = {.lex_state = 99}, + [652] = {.lex_state = 99}, + [653] = {.lex_state = 99}, + [654] = {.lex_state = 99}, + [655] = {.lex_state = 17}, + [656] = {.lex_state = 114}, + [657] = {.lex_state = 17}, + [658] = {.lex_state = 114}, + [659] = {.lex_state = 66}, + [660] = {.lex_state = 105}, + [661] = {.lex_state = 106}, + [662] = {.lex_state = 106}, + [663] = {.lex_state = 106}, + [664] = {.lex_state = 106}, + [665] = {.lex_state = 106}, + [666] = {.lex_state = 106}, + [667] = {.lex_state = 106}, + [668] = {.lex_state = 106}, + [669] = {.lex_state = 106}, + [670] = {.lex_state = 106}, + [671] = {.lex_state = 106}, + [672] = {.lex_state = 106}, + [673] = {.lex_state = 106}, + [674] = {.lex_state = 106}, + [675] = {.lex_state = 106}, + [676] = {.lex_state = 106}, + [677] = {.lex_state = 105}, + [678] = {.lex_state = 99}, + [679] = {.lex_state = 99}, + [680] = {.lex_state = 105}, + [681] = {.lex_state = 105}, + [682] = {.lex_state = 105}, + [683] = {.lex_state = 105}, + [684] = {.lex_state = 105}, + [685] = {.lex_state = 105}, + [686] = {.lex_state = 105}, + [687] = {.lex_state = 105}, + [688] = {.lex_state = 105}, + [689] = {.lex_state = 106}, + [690] = {.lex_state = 106}, + [691] = {.lex_state = 105}, + [692] = {.lex_state = 105}, + [693] = {.lex_state = 105}, + [694] = {.lex_state = 105}, + [695] = {.lex_state = 105}, + [696] = {.lex_state = 105}, + [697] = {.lex_state = 105}, + [698] = {.lex_state = 105}, + [699] = {.lex_state = 105}, + [700] = {.lex_state = 105}, + [701] = {.lex_state = 105}, + [702] = {.lex_state = 105}, + [703] = {.lex_state = 105}, + [704] = {.lex_state = 66}, + [705] = {.lex_state = 105}, + [706] = {.lex_state = 105}, + [707] = {.lex_state = 17}, + [708] = {.lex_state = 105}, + [709] = {.lex_state = 105}, + [710] = {.lex_state = 105}, + [711] = {.lex_state = 105}, + [712] = {.lex_state = 105}, + [713] = {.lex_state = 105}, + [714] = {.lex_state = 105}, + [715] = {.lex_state = 106}, + [716] = {.lex_state = 105}, + [717] = {.lex_state = 105}, + [718] = {.lex_state = 105}, + [719] = {.lex_state = 105}, + [720] = {.lex_state = 105}, + [721] = {.lex_state = 66}, + [722] = {.lex_state = 106}, + [723] = {.lex_state = 16}, + [724] = {.lex_state = 66}, + [725] = {.lex_state = 106}, + [726] = {.lex_state = 106}, + [727] = {.lex_state = 106}, + [728] = {.lex_state = 106}, + [729] = {.lex_state = 106}, + [730] = {.lex_state = 106}, + [731] = {.lex_state = 106}, + [732] = {.lex_state = 106}, + [733] = {.lex_state = 106}, + [734] = {.lex_state = 106}, + [735] = {.lex_state = 106}, + [736] = {.lex_state = 106}, + [737] = {.lex_state = 106}, + [738] = {.lex_state = 106}, + [739] = {.lex_state = 106}, + [740] = {.lex_state = 106}, + [741] = {.lex_state = 106}, + [742] = {.lex_state = 106}, + [743] = {.lex_state = 106}, + [744] = {.lex_state = 66}, + [745] = {.lex_state = 105}, + [746] = {.lex_state = 114}, + [747] = {.lex_state = 69}, + [748] = {.lex_state = 65}, + [749] = {.lex_state = 69}, + [750] = {.lex_state = 68}, + [751] = {.lex_state = 65}, + [752] = {.lex_state = 68}, + [753] = {.lex_state = 68}, + [754] = {.lex_state = 65}, + [755] = {.lex_state = 67}, + [756] = {.lex_state = 67}, + [757] = {.lex_state = 67}, + [758] = {.lex_state = 114}, + [759] = {.lex_state = 114}, + [760] = {.lex_state = 69}, + [761] = {.lex_state = 3}, + [762] = {.lex_state = 68}, + [763] = {.lex_state = 114}, + [764] = {.lex_state = 69}, + [765] = {.lex_state = 66}, + [766] = {.lex_state = 66}, + [767] = {.lex_state = 65}, + [768] = {.lex_state = 113}, + [769] = {.lex_state = 66}, + [770] = {.lex_state = 67}, + [771] = {.lex_state = 4}, + [772] = {.lex_state = 3}, + [773] = {.lex_state = 4}, + [774] = {.lex_state = 4}, + [775] = {.lex_state = 4}, + [776] = {.lex_state = 3}, + [777] = {.lex_state = 3}, + [778] = {.lex_state = 4}, + [779] = {.lex_state = 6}, + [780] = {.lex_state = 66}, + [781] = {.lex_state = 4}, + [782] = {.lex_state = 3}, + [783] = {.lex_state = 4}, + [784] = {.lex_state = 3}, + [785] = {.lex_state = 4}, + [786] = {.lex_state = 3}, + [787] = {.lex_state = 3}, + [788] = {.lex_state = 3}, + [789] = {.lex_state = 10}, + [790] = {.lex_state = 4}, + [791] = {.lex_state = 4}, + [792] = {.lex_state = 4}, + [793] = {.lex_state = 3}, + [794] = {.lex_state = 4}, + [795] = {.lex_state = 4}, + [796] = {.lex_state = 4}, + [797] = {.lex_state = 3}, + [798] = {.lex_state = 3}, + [799] = {.lex_state = 3}, + [800] = {.lex_state = 3}, + [801] = {.lex_state = 4}, + [802] = {.lex_state = 4}, + [803] = {.lex_state = 32}, + [804] = {.lex_state = 3}, + [805] = {.lex_state = 4}, + [806] = {.lex_state = 4}, + [807] = {.lex_state = 11}, + [808] = {.lex_state = 4}, + [809] = {.lex_state = 3}, + [810] = {.lex_state = 4}, + [811] = {.lex_state = 3}, + [812] = {.lex_state = 3}, + [813] = {.lex_state = 3}, + [814] = {.lex_state = 3}, + [815] = {.lex_state = 3}, + [816] = {.lex_state = 3}, + [817] = {.lex_state = 3}, + [818] = {.lex_state = 3}, + [819] = {.lex_state = 3}, + [820] = {.lex_state = 3}, + [821] = {.lex_state = 3}, + [822] = {.lex_state = 3}, + [823] = {.lex_state = 3}, + [824] = {.lex_state = 3}, + [825] = {.lex_state = 11}, + [826] = {.lex_state = 3}, + [827] = {.lex_state = 33}, + [828] = {.lex_state = 30}, + [829] = {.lex_state = 3}, + [830] = {.lex_state = 3}, + [831] = {.lex_state = 10}, + [832] = {.lex_state = 3}, + [833] = {.lex_state = 3}, + [834] = {.lex_state = 11}, + [835] = {.lex_state = 4}, + [836] = {.lex_state = 4}, + [837] = {.lex_state = 3}, + [838] = {.lex_state = 4}, + [839] = {.lex_state = 4}, + [840] = {.lex_state = 3}, + [841] = {.lex_state = 3}, + [842] = {.lex_state = 11}, + [843] = {.lex_state = 3}, + [844] = {.lex_state = 3}, + [845] = {.lex_state = 3}, + [846] = {.lex_state = 4}, + [847] = {.lex_state = 4}, + [848] = {.lex_state = 3}, + [849] = {.lex_state = 3}, + [850] = {.lex_state = 3}, + [851] = {.lex_state = 4}, + [852] = {.lex_state = 10}, + [853] = {.lex_state = 4}, + [854] = {.lex_state = 10}, + [855] = {.lex_state = 3}, + [856] = {.lex_state = 3}, + [857] = {.lex_state = 3}, + [858] = {.lex_state = 3}, + [859] = {.lex_state = 3}, + [860] = {.lex_state = 3}, + [861] = {.lex_state = 3}, + [862] = {.lex_state = 3}, + [863] = {.lex_state = 3}, + [864] = {.lex_state = 3}, + [865] = {.lex_state = 3}, + [866] = {.lex_state = 34}, + [867] = {.lex_state = 3}, + [868] = {.lex_state = 3}, + [869] = {.lex_state = 3}, + [870] = {.lex_state = 3}, + [871] = {.lex_state = 100}, + [872] = {.lex_state = 100}, + [873] = {.lex_state = 4}, + [874] = {.lex_state = 11}, + [875] = {.lex_state = 11}, + [876] = {.lex_state = 101}, + [877] = {.lex_state = 4}, + [878] = {.lex_state = 4}, + [879] = {.lex_state = 13}, + [880] = {.lex_state = 30}, + [881] = {.lex_state = 13}, + [882] = {.lex_state = 11}, + [883] = {.lex_state = 13}, + [884] = {.lex_state = 11}, + [885] = {.lex_state = 33}, + [886] = {.lex_state = 12}, + [887] = {.lex_state = 33}, + [888] = {.lex_state = 11}, + [889] = {.lex_state = 11}, + [890] = {.lex_state = 11}, + [891] = {.lex_state = 33}, + [892] = {.lex_state = 34}, + [893] = {.lex_state = 11}, + [894] = {.lex_state = 11}, + [895] = {.lex_state = 11}, + [896] = {.lex_state = 11}, + [897] = {.lex_state = 11}, + [898] = {.lex_state = 11}, + [899] = {.lex_state = 11}, + [900] = {.lex_state = 11}, + [901] = {.lex_state = 11}, + [902] = {.lex_state = 11}, + [903] = {.lex_state = 11}, + [904] = {.lex_state = 11}, + [905] = {.lex_state = 11}, + [906] = {.lex_state = 11}, + [907] = {.lex_state = 11}, + [908] = {.lex_state = 11}, + [909] = {.lex_state = 11}, + [910] = {.lex_state = 11}, + [911] = {.lex_state = 100}, + [912] = {.lex_state = 101}, + [913] = {.lex_state = 101}, + [914] = {.lex_state = 101}, + [915] = {.lex_state = 11}, + [916] = {.lex_state = 101}, + [917] = {.lex_state = 100}, + [918] = {.lex_state = 101}, + [919] = {.lex_state = 11}, + [920] = {.lex_state = 11}, + [921] = {.lex_state = 4}, + [922] = {.lex_state = 101}, + [923] = {.lex_state = 11}, + [924] = {.lex_state = 4}, + [925] = {.lex_state = 101}, + [926] = {.lex_state = 30}, + [927] = {.lex_state = 11}, + [928] = {.lex_state = 11}, + [929] = {.lex_state = 30}, + [930] = {.lex_state = 4}, + [931] = {.lex_state = 30}, + [932] = {.lex_state = 10}, + [933] = {.lex_state = 30}, + [934] = {.lex_state = 4}, + [935] = {.lex_state = 10}, + [936] = {.lex_state = 30}, + [937] = {.lex_state = 10}, + [938] = {.lex_state = 10}, + [939] = {.lex_state = 11}, + [940] = {.lex_state = 11}, + [941] = {.lex_state = 11}, + [942] = {.lex_state = 10}, + [943] = {.lex_state = 10}, + [944] = {.lex_state = 11}, + [945] = {.lex_state = 10}, + [946] = {.lex_state = 10}, + [947] = {.lex_state = 10}, + [948] = {.lex_state = 3}, + [949] = {.lex_state = 3}, + [950] = {.lex_state = 10}, + [951] = {.lex_state = 10}, + [952] = {.lex_state = 10}, + [953] = {.lex_state = 10}, + [954] = {.lex_state = 10}, + [955] = {.lex_state = 10}, + [956] = {.lex_state = 10}, + [957] = {.lex_state = 10}, + [958] = {.lex_state = 10}, + [959] = {.lex_state = 10}, + [960] = {.lex_state = 10}, + [961] = {.lex_state = 10}, + [962] = {.lex_state = 10}, + [963] = {.lex_state = 10}, + [964] = {.lex_state = 11}, + [965] = {.lex_state = 11}, + [966] = {.lex_state = 100}, + [967] = {.lex_state = 10}, + [968] = {.lex_state = 10}, + [969] = {.lex_state = 100}, + [970] = {.lex_state = 10}, + [971] = {.lex_state = 100}, + [972] = {.lex_state = 10}, + [973] = {.lex_state = 10}, + [974] = {.lex_state = 10}, + [975] = {.lex_state = 4}, + [976] = {.lex_state = 10}, + [977] = {.lex_state = 10}, + [978] = {.lex_state = 10}, + [979] = {.lex_state = 10}, + [980] = {.lex_state = 10}, + [981] = {.lex_state = 33}, + [982] = {.lex_state = 10}, + [983] = {.lex_state = 10}, + [984] = {.lex_state = 10}, + [985] = {.lex_state = 10}, + [986] = {.lex_state = 11}, + [987] = {.lex_state = 10}, + [988] = {.lex_state = 34}, + [989] = {.lex_state = 34}, + [990] = {.lex_state = 4}, + [991] = {.lex_state = 4}, + [992] = {.lex_state = 4}, + [993] = {.lex_state = 32}, + [994] = {.lex_state = 32}, + [995] = {.lex_state = 32}, + [996] = {.lex_state = 4}, + [997] = {.lex_state = 31}, + [998] = {.lex_state = 4}, + [999] = {.lex_state = 4}, + [1000] = {.lex_state = 4}, + [1001] = {.lex_state = 4}, + [1002] = {.lex_state = 4}, + [1003] = {.lex_state = 4}, + [1004] = {.lex_state = 4}, + [1005] = {.lex_state = 33}, + [1006] = {.lex_state = 33}, + [1007] = {.lex_state = 4}, + [1008] = {.lex_state = 4}, + [1009] = {.lex_state = 4}, + [1010] = {.lex_state = 4}, + [1011] = {.lex_state = 4}, + [1012] = {.lex_state = 4}, + [1013] = {.lex_state = 4}, + [1014] = {.lex_state = 4}, + [1015] = {.lex_state = 4}, + [1016] = {.lex_state = 4}, + [1017] = {.lex_state = 4}, + [1018] = {.lex_state = 4}, + [1019] = {.lex_state = 4}, + [1020] = {.lex_state = 4}, + [1021] = {.lex_state = 4}, + [1022] = {.lex_state = 4}, + [1023] = {.lex_state = 4}, + [1024] = {.lex_state = 12}, + [1025] = {.lex_state = 12}, + [1026] = {.lex_state = 34}, + [1027] = {.lex_state = 4}, + [1028] = {.lex_state = 12}, + [1029] = {.lex_state = 32}, + [1030] = {.lex_state = 32}, + [1031] = {.lex_state = 32}, + [1032] = {.lex_state = 34}, + [1033] = {.lex_state = 4}, + [1034] = {.lex_state = 34}, + [1035] = {.lex_state = 103}, + [1036] = {.lex_state = 4}, + [1037] = {.lex_state = 4}, + [1038] = {.lex_state = 4}, + [1039] = {.lex_state = 4}, + [1040] = {.lex_state = 4}, + [1041] = {.lex_state = 4}, + [1042] = {.lex_state = 4}, + [1043] = {.lex_state = 4}, + [1044] = {.lex_state = 4}, + [1045] = {.lex_state = 4}, + [1046] = {.lex_state = 4}, + [1047] = {.lex_state = 4}, + [1048] = {.lex_state = 4}, + [1049] = {.lex_state = 4}, + [1050] = {.lex_state = 4}, + [1051] = {.lex_state = 13}, + [1052] = {.lex_state = 4}, + [1053] = {.lex_state = 4}, + [1054] = {.lex_state = 11}, + [1055] = {.lex_state = 33}, + [1056] = {.lex_state = 30}, + [1057] = {.lex_state = 101}, + [1058] = {.lex_state = 100}, + [1059] = {.lex_state = 30}, + [1060] = {.lex_state = 30}, + [1061] = {.lex_state = 34}, + [1062] = {.lex_state = 100}, + [1063] = {.lex_state = 100}, + [1064] = {.lex_state = 100}, + [1065] = {.lex_state = 100}, + [1066] = {.lex_state = 100}, + [1067] = {.lex_state = 100}, + [1068] = {.lex_state = 100}, + [1069] = {.lex_state = 100}, + [1070] = {.lex_state = 100}, + [1071] = {.lex_state = 100}, + [1072] = {.lex_state = 100}, + [1073] = {.lex_state = 30}, + [1074] = {.lex_state = 13}, + [1075] = {.lex_state = 33}, + [1076] = {.lex_state = 13}, + [1077] = {.lex_state = 30}, + [1078] = {.lex_state = 32}, + [1079] = {.lex_state = 13}, + [1080] = {.lex_state = 54}, + [1081] = {.lex_state = 101}, + [1082] = {.lex_state = 101}, + [1083] = {.lex_state = 12}, + [1084] = {.lex_state = 30}, + [1085] = {.lex_state = 30}, + [1086] = {.lex_state = 12}, + [1087] = {.lex_state = 30}, + [1088] = {.lex_state = 13}, + [1089] = {.lex_state = 13}, + [1090] = {.lex_state = 54}, + [1091] = {.lex_state = 54}, + [1092] = {.lex_state = 30}, + [1093] = {.lex_state = 100}, + [1094] = {.lex_state = 30}, + [1095] = {.lex_state = 32}, + [1096] = {.lex_state = 101}, + [1097] = {.lex_state = 100}, + [1098] = {.lex_state = 34}, + [1099] = {.lex_state = 100}, + [1100] = {.lex_state = 101}, + [1101] = {.lex_state = 34}, + [1102] = {.lex_state = 33}, + [1103] = {.lex_state = 12}, + [1104] = {.lex_state = 12}, + [1105] = {.lex_state = 12}, + [1106] = {.lex_state = 30}, + [1107] = {.lex_state = 30}, + [1108] = {.lex_state = 12}, + [1109] = {.lex_state = 33}, + [1110] = {.lex_state = 34}, + [1111] = {.lex_state = 33}, + [1112] = {.lex_state = 101}, + [1113] = {.lex_state = 32}, + [1114] = {.lex_state = 53}, + [1115] = {.lex_state = 100}, + [1116] = {.lex_state = 100}, + [1117] = {.lex_state = 12}, + [1118] = {.lex_state = 34}, + [1119] = {.lex_state = 53}, + [1120] = {.lex_state = 100}, + [1121] = {.lex_state = 13}, + [1122] = {.lex_state = 34}, + [1123] = {.lex_state = 34}, + [1124] = {.lex_state = 53}, + [1125] = {.lex_state = 53}, + [1126] = {.lex_state = 100}, + [1127] = {.lex_state = 32}, + [1128] = {.lex_state = 12}, + [1129] = {.lex_state = 101}, + [1130] = {.lex_state = 32}, + [1131] = {.lex_state = 12}, + [1132] = {.lex_state = 12}, + [1133] = {.lex_state = 12}, + [1134] = {.lex_state = 12}, + [1135] = {.lex_state = 12}, + [1136] = {.lex_state = 12}, + [1137] = {.lex_state = 12}, + [1138] = {.lex_state = 12}, + [1139] = {.lex_state = 12}, + [1140] = {.lex_state = 12}, + [1141] = {.lex_state = 32}, + [1142] = {.lex_state = 30}, + [1143] = {.lex_state = 30}, + [1144] = {.lex_state = 30}, + [1145] = {.lex_state = 49}, + [1146] = {.lex_state = 30}, + [1147] = {.lex_state = 33}, + [1148] = {.lex_state = 46}, + [1149] = {.lex_state = 13}, + [1150] = {.lex_state = 49}, + [1151] = {.lex_state = 30}, + [1152] = {.lex_state = 30}, + [1153] = {.lex_state = 49}, + [1154] = {.lex_state = 33}, + [1155] = {.lex_state = 13}, + [1156] = {.lex_state = 34}, + [1157] = {.lex_state = 33}, + [1158] = {.lex_state = 33}, + [1159] = {.lex_state = 33}, + [1160] = {.lex_state = 33}, + [1161] = {.lex_state = 32}, + [1162] = {.lex_state = 30}, + [1163] = {.lex_state = 33}, + [1164] = {.lex_state = 32}, + [1165] = {.lex_state = 32}, + [1166] = {.lex_state = 108}, + [1167] = {.lex_state = 30}, + [1168] = {.lex_state = 100}, + [1169] = {.lex_state = 34}, + [1170] = {.lex_state = 13}, + [1171] = {.lex_state = 13}, + [1172] = {.lex_state = 12}, + [1173] = {.lex_state = 100}, + [1174] = {.lex_state = 13}, + [1175] = {.lex_state = 30}, + [1176] = {.lex_state = 12}, + [1177] = {.lex_state = 30}, + [1178] = {.lex_state = 30}, + [1179] = {.lex_state = 30}, + [1180] = {.lex_state = 32}, + [1181] = {.lex_state = 100}, + [1182] = {.lex_state = 100}, + [1183] = {.lex_state = 30}, + [1184] = {.lex_state = 45}, + [1185] = {.lex_state = 100}, + [1186] = {.lex_state = 100}, + [1187] = {.lex_state = 100}, + [1188] = {.lex_state = 48}, + [1189] = {.lex_state = 107}, + [1190] = {.lex_state = 48}, + [1191] = {.lex_state = 48}, + [1192] = {.lex_state = 100}, + [1193] = {.lex_state = 100}, + [1194] = {.lex_state = 100}, + [1195] = {.lex_state = 34}, + [1196] = {.lex_state = 34}, + [1197] = {.lex_state = 34}, + [1198] = {.lex_state = 34}, + [1199] = {.lex_state = 101}, + [1200] = {.lex_state = 33}, + [1201] = {.lex_state = 101}, + [1202] = {.lex_state = 101}, + [1203] = {.lex_state = 30}, + [1204] = {.lex_state = 13}, + [1205] = {.lex_state = 34}, + [1206] = {.lex_state = 100}, + [1207] = {.lex_state = 100}, + [1208] = {.lex_state = 100}, + [1209] = {.lex_state = 100}, + [1210] = {.lex_state = 100}, + [1211] = {.lex_state = 34}, + [1212] = {.lex_state = 12}, + [1213] = {.lex_state = 34}, + [1214] = {.lex_state = 4}, + [1215] = {.lex_state = 13}, + [1216] = {.lex_state = 32}, + [1217] = {.lex_state = 49}, + [1218] = {.lex_state = 46}, + [1219] = {.lex_state = 46}, + [1220] = {.lex_state = 46}, + [1221] = {.lex_state = 32}, + [1222] = {.lex_state = 108}, + [1223] = {.lex_state = 32}, + [1224] = {.lex_state = 32}, + [1225] = {.lex_state = 108}, + [1226] = {.lex_state = 108}, + [1227] = {.lex_state = 32}, + [1228] = {.lex_state = 32}, + [1229] = {.lex_state = 33}, + [1230] = {.lex_state = 13}, + [1231] = {.lex_state = 34}, + [1232] = {.lex_state = 13}, + [1233] = {.lex_state = 12}, + [1234] = {.lex_state = 30}, + [1235] = {.lex_state = 45}, + [1236] = {.lex_state = 45}, + [1237] = {.lex_state = 30}, + [1238] = {.lex_state = 45}, + [1239] = {.lex_state = 101}, + [1240] = {.lex_state = 107}, + [1241] = {.lex_state = 107}, + [1242] = {.lex_state = 107}, + [1243] = {.lex_state = 30}, + [1244] = {.lex_state = 100}, + [1245] = {.lex_state = 32}, + [1246] = {.lex_state = 30}, + [1247] = {.lex_state = 30}, + [1248] = {.lex_state = 4}, + [1249] = {.lex_state = 32}, + [1250] = {.lex_state = 12}, + [1251] = {.lex_state = 34}, + [1252] = {.lex_state = 13}, + [1253] = {.lex_state = 30}, + [1254] = {.lex_state = 32}, + [1255] = {.lex_state = 4}, + [1256] = {.lex_state = 100}, + [1257] = {.lex_state = 32}, + [1258] = {.lex_state = 30}, + [1259] = {.lex_state = 4}, + [1260] = {.lex_state = 13}, + [1261] = {.lex_state = 33}, + [1262] = {.lex_state = 13}, + [1263] = {.lex_state = 31}, + [1264] = {.lex_state = 100}, + [1265] = {.lex_state = 30}, + [1266] = {.lex_state = 32}, + [1267] = {.lex_state = 30}, + [1268] = {.lex_state = 54}, + [1269] = {.lex_state = 32}, + [1270] = {.lex_state = 100}, + [1271] = {.lex_state = 34}, + [1272] = {.lex_state = 33}, + [1273] = {.lex_state = 33}, + [1274] = {.lex_state = 33}, + [1275] = {.lex_state = 12}, + [1276] = {.lex_state = 33}, + [1277] = {.lex_state = 33}, + [1278] = {.lex_state = 13}, + [1279] = {.lex_state = 34}, + [1280] = {.lex_state = 32}, + [1281] = {.lex_state = 32}, + [1282] = {.lex_state = 32}, + [1283] = {.lex_state = 12}, + [1284] = {.lex_state = 12}, + [1285] = {.lex_state = 34}, + [1286] = {.lex_state = 13}, + [1287] = {.lex_state = 33}, + [1288] = {.lex_state = 13}, + [1289] = {.lex_state = 52}, + [1290] = {.lex_state = 34}, + [1291] = {.lex_state = 33}, + [1292] = {.lex_state = 34}, + [1293] = {.lex_state = 33}, + [1294] = {.lex_state = 33}, + [1295] = {.lex_state = 33}, + [1296] = {.lex_state = 33}, + [1297] = {.lex_state = 13}, + [1298] = {.lex_state = 34}, + [1299] = {.lex_state = 34}, + [1300] = {.lex_state = 30}, + [1301] = {.lex_state = 34}, + [1302] = {.lex_state = 30}, + [1303] = {.lex_state = 34}, + [1304] = {.lex_state = 34}, + [1305] = {.lex_state = 34}, + [1306] = {.lex_state = 34}, + [1307] = {.lex_state = 34}, + [1308] = {.lex_state = 13}, + [1309] = {.lex_state = 30}, + [1310] = {.lex_state = 32}, + [1311] = {.lex_state = 30}, + [1312] = {.lex_state = 30}, + [1313] = {.lex_state = 32}, + [1314] = {.lex_state = 30}, + [1315] = {.lex_state = 101}, + [1316] = {.lex_state = 33}, + [1317] = {.lex_state = 34}, + [1318] = {.lex_state = 30}, + [1319] = {.lex_state = 30}, + [1320] = {.lex_state = 33}, + [1321] = {.lex_state = 34}, + [1322] = {.lex_state = 30}, + [1323] = {.lex_state = 33}, + [1324] = {.lex_state = 30}, + [1325] = {.lex_state = 30}, + [1326] = {.lex_state = 51}, + [1327] = {.lex_state = 32}, + [1328] = {.lex_state = 51}, + [1329] = {.lex_state = 30}, + [1330] = {.lex_state = 13}, + [1331] = {.lex_state = 30}, + [1332] = {.lex_state = 51}, + [1333] = {.lex_state = 32}, + [1334] = {.lex_state = 30}, + [1335] = {.lex_state = 32}, + [1336] = {.lex_state = 32}, + [1337] = {.lex_state = 32}, + [1338] = {.lex_state = 33}, + [1339] = {.lex_state = 32}, + [1340] = {.lex_state = 32}, + [1341] = {.lex_state = 32}, + [1342] = {.lex_state = 32}, + [1343] = {.lex_state = 33}, + [1344] = {.lex_state = 30}, + [1345] = {.lex_state = 33}, + [1346] = {.lex_state = 34}, + [1347] = {.lex_state = 100}, + [1348] = {.lex_state = 100}, + [1349] = {.lex_state = 101}, + [1350] = {.lex_state = 34}, + [1351] = {.lex_state = 34}, + [1352] = {.lex_state = 32}, + [1353] = {.lex_state = 33}, + [1354] = {.lex_state = 32}, + [1355] = {.lex_state = 32}, + [1356] = {.lex_state = 101}, + [1357] = {.lex_state = 32}, + [1358] = {.lex_state = 32}, + [1359] = {.lex_state = 32}, + [1360] = {.lex_state = 32}, + [1361] = {.lex_state = 52}, + [1362] = {.lex_state = 12}, + [1363] = {.lex_state = 12}, + [1364] = {.lex_state = 30}, + [1365] = {.lex_state = 12}, + [1366] = {.lex_state = 12}, + [1367] = {.lex_state = 31}, + [1368] = {.lex_state = 32}, + [1369] = {.lex_state = 101}, + [1370] = {.lex_state = 52}, + [1371] = {.lex_state = 34}, + [1372] = {.lex_state = 32}, + [1373] = {.lex_state = 32}, + [1374] = {.lex_state = 31}, + [1375] = {.lex_state = 32}, + [1376] = {.lex_state = 12}, + [1377] = {.lex_state = 12}, + [1378] = {.lex_state = 12}, + [1379] = {.lex_state = 12}, + [1380] = {.lex_state = 32}, + [1381] = {.lex_state = 101}, + [1382] = {.lex_state = 100}, + [1383] = {.lex_state = 100}, + [1384] = {.lex_state = 33}, + [1385] = {.lex_state = 31}, + [1386] = {.lex_state = 32}, + [1387] = {.lex_state = 100}, + [1388] = {.lex_state = 30}, + [1389] = {.lex_state = 33}, + [1390] = {.lex_state = 33}, + [1391] = {.lex_state = 33}, + [1392] = {.lex_state = 33}, + [1393] = {.lex_state = 34}, + [1394] = {.lex_state = 100}, + [1395] = {.lex_state = 34}, + [1396] = {.lex_state = 32}, + [1397] = {.lex_state = 31}, + [1398] = {.lex_state = 33}, + [1399] = {.lex_state = 31}, + [1400] = {.lex_state = 33}, + [1401] = {.lex_state = 33}, + [1402] = {.lex_state = 52}, + [1403] = {.lex_state = 101}, + [1404] = {.lex_state = 34}, + [1405] = {.lex_state = 100}, + [1406] = {.lex_state = 101}, + [1407] = {.lex_state = 100}, + [1408] = {.lex_state = 34}, + [1409] = {.lex_state = 32}, + [1410] = {.lex_state = 13}, + [1411] = {.lex_state = 12}, + [1412] = {.lex_state = 100}, + [1413] = {.lex_state = 100}, + [1414] = {.lex_state = 100}, + [1415] = {.lex_state = 100}, + [1416] = {.lex_state = 34}, + [1417] = {.lex_state = 12}, + [1418] = {.lex_state = 13}, + [1419] = {.lex_state = 32}, + [1420] = {.lex_state = 33}, + [1421] = {.lex_state = 13}, + [1422] = {.lex_state = 33}, + [1423] = {.lex_state = 33}, + [1424] = {.lex_state = 13}, + [1425] = {.lex_state = 33}, + [1426] = {.lex_state = 13}, + [1427] = {.lex_state = 33}, + [1428] = {.lex_state = 33}, + [1429] = {.lex_state = 13}, + [1430] = {.lex_state = 48}, + [1431] = {.lex_state = 101}, + [1432] = {.lex_state = 13}, + [1433] = {.lex_state = 34}, + [1434] = {.lex_state = 100}, + [1435] = {.lex_state = 4}, + [1436] = {.lex_state = 4}, + [1437] = {.lex_state = 34}, + [1438] = {.lex_state = 33}, + [1439] = {.lex_state = 34}, + [1440] = {.lex_state = 33}, + [1441] = {.lex_state = 34}, + [1442] = {.lex_state = 34}, + [1443] = {.lex_state = 13}, + [1444] = {.lex_state = 34}, + [1445] = {.lex_state = 51}, + [1446] = {.lex_state = 33}, + [1447] = {.lex_state = 100}, + [1448] = {.lex_state = 13}, + [1449] = {.lex_state = 33}, + [1450] = {.lex_state = 34}, + [1451] = {.lex_state = 101}, + [1452] = {.lex_state = 34}, + [1453] = {.lex_state = 34}, + [1454] = {.lex_state = 13}, + [1455] = {.lex_state = 13}, + [1456] = {.lex_state = 13}, + [1457] = {.lex_state = 34}, + [1458] = {.lex_state = 13}, + [1459] = {.lex_state = 33}, + [1460] = {.lex_state = 51}, + [1461] = {.lex_state = 101}, + [1462] = {.lex_state = 52}, + [1463] = {.lex_state = 54}, + [1464] = {.lex_state = 52}, + [1465] = {.lex_state = 52}, + [1466] = {.lex_state = 54}, + [1467] = {.lex_state = 54}, + [1468] = {.lex_state = 54}, + [1469] = {.lex_state = 54}, + [1470] = {.lex_state = 54}, + [1471] = {.lex_state = 54}, + [1472] = {.lex_state = 54}, + [1473] = {.lex_state = 54}, + [1474] = {.lex_state = 54}, + [1475] = {.lex_state = 54}, + [1476] = {.lex_state = 54}, + [1477] = {.lex_state = 52}, + [1478] = {.lex_state = 109}, + [1479] = {.lex_state = 31}, + [1480] = {.lex_state = 52}, + [1481] = {.lex_state = 52}, + [1482] = {.lex_state = 54}, + [1483] = {.lex_state = 54}, + [1484] = {.lex_state = 51}, + [1485] = {.lex_state = 51}, + [1486] = {.lex_state = 54}, + [1487] = {.lex_state = 4}, + [1488] = {.lex_state = 52}, + [1489] = {.lex_state = 54}, + [1490] = {.lex_state = 54}, + [1491] = {.lex_state = 54}, + [1492] = {.lex_state = 54}, + [1493] = {.lex_state = 52}, + [1494] = {.lex_state = 52}, + [1495] = {.lex_state = 52}, + [1496] = {.lex_state = 52}, + [1497] = {.lex_state = 52}, + [1498] = {.lex_state = 52}, + [1499] = {.lex_state = 52}, + [1500] = {.lex_state = 52}, + [1501] = {.lex_state = 52}, + [1502] = {.lex_state = 52}, + [1503] = {.lex_state = 52}, + [1504] = {.lex_state = 54}, + [1505] = {.lex_state = 54}, + [1506] = {.lex_state = 52}, + [1507] = {.lex_state = 51}, + [1508] = {.lex_state = 52}, + [1509] = {.lex_state = 52}, + [1510] = {.lex_state = 31}, + [1511] = {.lex_state = 31}, + [1512] = {.lex_state = 54}, + [1513] = {.lex_state = 52}, + [1514] = {.lex_state = 52}, + [1515] = {.lex_state = 51}, + [1516] = {.lex_state = 52}, + [1517] = {.lex_state = 52}, + [1518] = {.lex_state = 54}, + [1519] = {.lex_state = 54}, + [1520] = {.lex_state = 51}, + [1521] = {.lex_state = 101}, + [1522] = {.lex_state = 52}, + [1523] = {.lex_state = 51}, + [1524] = {.lex_state = 31}, + [1525] = {.lex_state = 51}, + [1526] = {.lex_state = 52}, + [1527] = {.lex_state = 51}, + [1528] = {.lex_state = 54}, + [1529] = {.lex_state = 54}, + [1530] = {.lex_state = 54}, + [1531] = {.lex_state = 47}, + [1532] = {.lex_state = 4}, + [1533] = {.lex_state = 4}, + [1534] = {.lex_state = 47}, + [1535] = {.lex_state = 54}, + [1536] = {.lex_state = 47}, + [1537] = {.lex_state = 52}, + [1538] = {.lex_state = 51}, + [1539] = {.lex_state = 34}, + [1540] = {.lex_state = 34}, + [1541] = {.lex_state = 51}, + [1542] = {.lex_state = 51}, + [1543] = {.lex_state = 52}, + [1544] = {.lex_state = 52}, + [1545] = {.lex_state = 51}, + [1546] = {.lex_state = 51}, + [1547] = {.lex_state = 51}, + [1548] = {.lex_state = 51}, + [1549] = {.lex_state = 51}, + [1550] = {.lex_state = 51}, + [1551] = {.lex_state = 51}, + [1552] = {.lex_state = 51}, + [1553] = {.lex_state = 51}, + [1554] = {.lex_state = 51}, + [1555] = {.lex_state = 109}, + [1556] = {.lex_state = 53}, + [1557] = {.lex_state = 53}, + [1558] = {.lex_state = 109}, + [1559] = {.lex_state = 51}, + [1560] = {.lex_state = 109}, + [1561] = {.lex_state = 52}, + [1562] = {.lex_state = 52}, + [1563] = {.lex_state = 52}, + [1564] = {.lex_state = 51}, + [1565] = {.lex_state = 51}, + [1566] = {.lex_state = 54}, + [1567] = {.lex_state = 54}, + [1568] = {.lex_state = 52}, + [1569] = {.lex_state = 4}, + [1570] = {.lex_state = 31}, + [1571] = {.lex_state = 53}, + [1572] = {.lex_state = 51}, + [1573] = {.lex_state = 31}, + [1574] = {.lex_state = 4}, + [1575] = {.lex_state = 53}, + [1576] = {.lex_state = 53}, + [1577] = {.lex_state = 53}, + [1578] = {.lex_state = 49}, + [1579] = {.lex_state = 101}, + [1580] = {.lex_state = 33}, + [1581] = {.lex_state = 33}, + [1582] = {.lex_state = 51}, + [1583] = {.lex_state = 53}, + [1584] = {.lex_state = 53}, + [1585] = {.lex_state = 31}, + [1586] = {.lex_state = 31}, + [1587] = {.lex_state = 31}, + [1588] = {.lex_state = 31}, + [1589] = {.lex_state = 4}, + [1590] = {.lex_state = 49}, + [1591] = {.lex_state = 49}, + [1592] = {.lex_state = 49}, + [1593] = {.lex_state = 51}, + [1594] = {.lex_state = 49}, + [1595] = {.lex_state = 4}, + [1596] = {.lex_state = 51}, + [1597] = {.lex_state = 49}, + [1598] = {.lex_state = 51}, + [1599] = {.lex_state = 53}, + [1600] = {.lex_state = 52}, + [1601] = {.lex_state = 110}, + [1602] = {.lex_state = 52}, + [1603] = {.lex_state = 49}, + [1604] = {.lex_state = 49}, + [1605] = {.lex_state = 51}, + [1606] = {.lex_state = 51}, + [1607] = {.lex_state = 53}, + [1608] = {.lex_state = 53}, + [1609] = {.lex_state = 53}, + [1610] = {.lex_state = 53}, + [1611] = {.lex_state = 53}, + [1612] = {.lex_state = 53}, + [1613] = {.lex_state = 53}, + [1614] = {.lex_state = 53}, + [1615] = {.lex_state = 53}, + [1616] = {.lex_state = 53}, + [1617] = {.lex_state = 53}, + [1618] = {.lex_state = 53}, + [1619] = {.lex_state = 53}, + [1620] = {.lex_state = 31}, + [1621] = {.lex_state = 53}, + [1622] = {.lex_state = 49}, + [1623] = {.lex_state = 53}, + [1624] = {.lex_state = 32}, + [1625] = {.lex_state = 32}, + [1626] = {.lex_state = 31}, + [1627] = {.lex_state = 49}, + [1628] = {.lex_state = 53}, + [1629] = {.lex_state = 49}, + [1630] = {.lex_state = 4}, + [1631] = {.lex_state = 4}, + [1632] = {.lex_state = 4}, + [1633] = {.lex_state = 49}, + [1634] = {.lex_state = 49}, + [1635] = {.lex_state = 49}, + [1636] = {.lex_state = 49}, + [1637] = {.lex_state = 49}, + [1638] = {.lex_state = 49}, + [1639] = {.lex_state = 49}, + [1640] = {.lex_state = 49}, + [1641] = {.lex_state = 49}, + [1642] = {.lex_state = 49}, + [1643] = {.lex_state = 49}, + [1644] = {.lex_state = 51}, + [1645] = {.lex_state = 51}, + [1646] = {.lex_state = 51}, + [1647] = {.lex_state = 48}, + [1648] = {.lex_state = 48}, + [1649] = {.lex_state = 101}, + [1650] = {.lex_state = 53}, + [1651] = {.lex_state = 31}, + [1652] = {.lex_state = 49}, + [1653] = {.lex_state = 31}, + [1654] = {.lex_state = 31}, + [1655] = {.lex_state = 51}, + [1656] = {.lex_state = 31}, + [1657] = {.lex_state = 31}, + [1658] = {.lex_state = 49}, + [1659] = {.lex_state = 48}, + [1660] = {.lex_state = 49}, + [1661] = {.lex_state = 51}, + [1662] = {.lex_state = 31}, + [1663] = {.lex_state = 51}, + [1664] = {.lex_state = 48}, + [1665] = {.lex_state = 48}, + [1666] = {.lex_state = 48}, + [1667] = {.lex_state = 49}, + [1668] = {.lex_state = 48}, + [1669] = {.lex_state = 48}, + [1670] = {.lex_state = 48}, + [1671] = {.lex_state = 48}, + [1672] = {.lex_state = 53}, + [1673] = {.lex_state = 48}, + [1674] = {.lex_state = 31}, + [1675] = {.lex_state = 31}, + [1676] = {.lex_state = 101}, + [1677] = {.lex_state = 31}, + [1678] = {.lex_state = 48}, + [1679] = {.lex_state = 31}, + [1680] = {.lex_state = 31}, + [1681] = {.lex_state = 31}, + [1682] = {.lex_state = 101}, + [1683] = {.lex_state = 53}, + [1684] = {.lex_state = 31}, + [1685] = {.lex_state = 48}, + [1686] = {.lex_state = 48}, + [1687] = {.lex_state = 48}, + [1688] = {.lex_state = 48}, + [1689] = {.lex_state = 48}, + [1690] = {.lex_state = 48}, + [1691] = {.lex_state = 48}, + [1692] = {.lex_state = 48}, + [1693] = {.lex_state = 48}, + [1694] = {.lex_state = 48}, + [1695] = {.lex_state = 48}, + [1696] = {.lex_state = 53}, + [1697] = {.lex_state = 101}, + [1698] = {.lex_state = 53}, + [1699] = {.lex_state = 101}, + [1700] = {.lex_state = 101}, + [1701] = {.lex_state = 101}, + [1702] = {.lex_state = 53}, + [1703] = {.lex_state = 53}, + [1704] = {.lex_state = 31}, + [1705] = {.lex_state = 49}, + [1706] = {.lex_state = 31}, + [1707] = {.lex_state = 50}, + [1708] = {.lex_state = 31}, + [1709] = {.lex_state = 101}, + [1710] = {.lex_state = 49}, + [1711] = {.lex_state = 101}, + [1712] = {.lex_state = 48}, + [1713] = {.lex_state = 46}, + [1714] = {.lex_state = 48}, + [1715] = {.lex_state = 101}, + [1716] = {.lex_state = 101}, + [1717] = {.lex_state = 101}, + [1718] = {.lex_state = 48}, + [1719] = {.lex_state = 46}, + [1720] = {.lex_state = 101}, + [1721] = {.lex_state = 101}, + [1722] = {.lex_state = 49}, + [1723] = {.lex_state = 49}, + [1724] = {.lex_state = 49}, + [1725] = {.lex_state = 101}, + [1726] = {.lex_state = 46}, + [1727] = {.lex_state = 101}, + [1728] = {.lex_state = 101}, + [1729] = {.lex_state = 101}, + [1730] = {.lex_state = 101}, + [1731] = {.lex_state = 101}, + [1732] = {.lex_state = 101}, + [1733] = {.lex_state = 101}, + [1734] = {.lex_state = 101}, + [1735] = {.lex_state = 101}, + [1736] = {.lex_state = 54}, + [1737] = {.lex_state = 49}, + [1738] = {.lex_state = 46}, + [1739] = {.lex_state = 53}, + [1740] = {.lex_state = 53}, + [1741] = {.lex_state = 53}, + [1742] = {.lex_state = 108}, + [1743] = {.lex_state = 46}, + [1744] = {.lex_state = 46}, + [1745] = {.lex_state = 108}, + [1746] = {.lex_state = 46}, + [1747] = {.lex_state = 46}, + [1748] = {.lex_state = 53}, + [1749] = {.lex_state = 108}, + [1750] = {.lex_state = 108}, + [1751] = {.lex_state = 110}, + [1752] = {.lex_state = 110}, + [1753] = {.lex_state = 101}, + [1754] = {.lex_state = 108}, + [1755] = {.lex_state = 46}, + [1756] = {.lex_state = 108}, + [1757] = {.lex_state = 110}, + [1758] = {.lex_state = 101}, + [1759] = {.lex_state = 101}, + [1760] = {.lex_state = 46}, + [1761] = {.lex_state = 101}, + [1762] = {.lex_state = 101}, + [1763] = {.lex_state = 108}, + [1764] = {.lex_state = 31}, + [1765] = {.lex_state = 101}, + [1766] = {.lex_state = 46}, + [1767] = {.lex_state = 46}, + [1768] = {.lex_state = 46}, + [1769] = {.lex_state = 46}, + [1770] = {.lex_state = 46}, + [1771] = {.lex_state = 46}, + [1772] = {.lex_state = 46}, + [1773] = {.lex_state = 46}, + [1774] = {.lex_state = 46}, + [1775] = {.lex_state = 46}, + [1776] = {.lex_state = 46}, + [1777] = {.lex_state = 52}, + [1778] = {.lex_state = 49}, + [1779] = {.lex_state = 49}, + [1780] = {.lex_state = 49}, + [1781] = {.lex_state = 45}, + [1782] = {.lex_state = 108}, + [1783] = {.lex_state = 53}, + [1784] = {.lex_state = 53}, + [1785] = {.lex_state = 45}, + [1786] = {.lex_state = 45}, + [1787] = {.lex_state = 108}, + [1788] = {.lex_state = 45}, + [1789] = {.lex_state = 49}, + [1790] = {.lex_state = 45}, + [1791] = {.lex_state = 108}, + [1792] = {.lex_state = 108}, + [1793] = {.lex_state = 108}, + [1794] = {.lex_state = 108}, + [1795] = {.lex_state = 108}, + [1796] = {.lex_state = 108}, + [1797] = {.lex_state = 108}, + [1798] = {.lex_state = 108}, + [1799] = {.lex_state = 108}, + [1800] = {.lex_state = 108}, + [1801] = {.lex_state = 108}, + [1802] = {.lex_state = 45}, + [1803] = {.lex_state = 48}, + [1804] = {.lex_state = 107}, + [1805] = {.lex_state = 49}, + [1806] = {.lex_state = 49}, + [1807] = {.lex_state = 45}, + [1808] = {.lex_state = 107}, + [1809] = {.lex_state = 107}, + [1810] = {.lex_state = 45}, + [1811] = {.lex_state = 107}, + [1812] = {.lex_state = 45}, + [1813] = {.lex_state = 48}, + [1814] = {.lex_state = 48}, + [1815] = {.lex_state = 107}, + [1816] = {.lex_state = 107}, + [1817] = {.lex_state = 46}, + [1818] = {.lex_state = 46}, + [1819] = {.lex_state = 46}, + [1820] = {.lex_state = 107}, + [1821] = {.lex_state = 107}, + [1822] = {.lex_state = 107}, + [1823] = {.lex_state = 108}, + [1824] = {.lex_state = 45}, + [1825] = {.lex_state = 108}, + [1826] = {.lex_state = 46}, + [1827] = {.lex_state = 46}, + [1828] = {.lex_state = 48}, + [1829] = {.lex_state = 108}, + [1830] = {.lex_state = 48}, + [1831] = {.lex_state = 31}, + [1832] = {.lex_state = 45}, + [1833] = {.lex_state = 45}, + [1834] = {.lex_state = 45}, + [1835] = {.lex_state = 45}, + [1836] = {.lex_state = 45}, + [1837] = {.lex_state = 45}, + [1838] = {.lex_state = 45}, + [1839] = {.lex_state = 45}, + [1840] = {.lex_state = 45}, + [1841] = {.lex_state = 45}, + [1842] = {.lex_state = 45}, + [1843] = {.lex_state = 48}, + [1844] = {.lex_state = 31}, + [1845] = {.lex_state = 107}, + [1846] = {.lex_state = 48}, + [1847] = {.lex_state = 48}, + [1848] = {.lex_state = 107}, + [1849] = {.lex_state = 107}, + [1850] = {.lex_state = 107}, + [1851] = {.lex_state = 107}, + [1852] = {.lex_state = 107}, + [1853] = {.lex_state = 107}, + [1854] = {.lex_state = 107}, + [1855] = {.lex_state = 107}, + [1856] = {.lex_state = 107}, + [1857] = {.lex_state = 107}, + [1858] = {.lex_state = 107}, + [1859] = {.lex_state = 51}, + [1860] = {.lex_state = 31}, + [1861] = {.lex_state = 31}, + [1862] = {.lex_state = 31}, + [1863] = {.lex_state = 45}, + [1864] = {.lex_state = 45}, + [1865] = {.lex_state = 45}, + [1866] = {.lex_state = 31}, + [1867] = {.lex_state = 46}, + [1868] = {.lex_state = 31}, + [1869] = {.lex_state = 107}, + [1870] = {.lex_state = 107}, + [1871] = {.lex_state = 108}, + [1872] = {.lex_state = 108}, + [1873] = {.lex_state = 107}, + [1874] = {.lex_state = 46}, + [1875] = {.lex_state = 46}, + [1876] = {.lex_state = 48}, + [1877] = {.lex_state = 48}, + [1878] = {.lex_state = 48}, + [1879] = {.lex_state = 108}, + [1880] = {.lex_state = 31}, + [1881] = {.lex_state = 101}, + [1882] = {.lex_state = 48}, + [1883] = {.lex_state = 108}, + [1884] = {.lex_state = 108}, + [1885] = {.lex_state = 30}, + [1886] = {.lex_state = 30}, + [1887] = {.lex_state = 46}, + [1888] = {.lex_state = 46}, + [1889] = {.lex_state = 46}, + [1890] = {.lex_state = 45}, + [1891] = {.lex_state = 45}, + [1892] = {.lex_state = 108}, + [1893] = {.lex_state = 108}, + [1894] = {.lex_state = 108}, + [1895] = {.lex_state = 31}, + [1896] = {.lex_state = 45}, + [1897] = {.lex_state = 46}, + [1898] = {.lex_state = 46}, + [1899] = {.lex_state = 45}, + [1900] = {.lex_state = 45}, + [1901] = {.lex_state = 107}, + [1902] = {.lex_state = 100}, + [1903] = {.lex_state = 100}, + [1904] = {.lex_state = 107}, + [1905] = {.lex_state = 107}, + [1906] = {.lex_state = 31}, + [1907] = {.lex_state = 107}, + [1908] = {.lex_state = 107}, + [1909] = {.lex_state = 53}, + [1910] = {.lex_state = 46}, + [1911] = {.lex_state = 46}, + [1912] = {.lex_state = 46}, + [1913] = {.lex_state = 108}, + [1914] = {.lex_state = 108}, + [1915] = {.lex_state = 46}, + [1916] = {.lex_state = 49}, + [1917] = {.lex_state = 108}, + [1918] = {.lex_state = 108}, + [1919] = {.lex_state = 108}, + [1920] = {.lex_state = 45}, + [1921] = {.lex_state = 45}, + [1922] = {.lex_state = 45}, + [1923] = {.lex_state = 108}, + [1924] = {.lex_state = 45}, + [1925] = {.lex_state = 31}, + [1926] = {.lex_state = 45}, + [1927] = {.lex_state = 107}, + [1928] = {.lex_state = 107}, + [1929] = {.lex_state = 107}, + [1930] = {.lex_state = 107}, + [1931] = {.lex_state = 107}, + [1932] = {.lex_state = 48}, + [1933] = {.lex_state = 45}, + [1934] = {.lex_state = 45}, + [1935] = {.lex_state = 45}, + [1936] = {.lex_state = 45}, + [1937] = {.lex_state = 107}, + [1938] = {.lex_state = 107}, + [1939] = {.lex_state = 107}, + [1940] = {.lex_state = 107}, + [1941] = {.lex_state = 31}, + [1942] = {.lex_state = 46}, + [1943] = {.lex_state = 108}, + [1944] = {.lex_state = 45}, + [1945] = {.lex_state = 107}, + [1946] = {.lex_state = 31}, + [1947] = {.lex_state = 17}, + [1948] = {.lex_state = 31}, + [1949] = {.lex_state = 31}, + [1950] = {.lex_state = 31}, + [1951] = {.lex_state = 101}, + [1952] = {.lex_state = 4}, + [1953] = {.lex_state = 31}, + [1954] = {.lex_state = 101}, + [1955] = {.lex_state = 31}, + [1956] = {.lex_state = 31}, + [1957] = {.lex_state = 101}, + [1958] = {.lex_state = 101}, + [1959] = {.lex_state = 101}, + [1960] = {.lex_state = 101}, + [1961] = {.lex_state = 4}, + [1962] = {.lex_state = 54}, + [1963] = {.lex_state = 54}, + [1964] = {.lex_state = 4}, + [1965] = {.lex_state = 4}, + [1966] = {.lex_state = 31}, + [1967] = {.lex_state = 31}, + [1968] = {.lex_state = 54}, + [1969] = {.lex_state = 4}, + [1970] = {.lex_state = 54}, + [1971] = {.lex_state = 31}, + [1972] = {.lex_state = 54}, + [1973] = {.lex_state = 101}, + [1974] = {.lex_state = 101}, + [1975] = {.lex_state = 101}, + [1976] = {.lex_state = 101}, + [1977] = {.lex_state = 101}, + [1978] = {.lex_state = 101}, + [1979] = {.lex_state = 101}, + [1980] = {.lex_state = 101}, + [1981] = {.lex_state = 101}, + [1982] = {.lex_state = 101}, + [1983] = {.lex_state = 101}, + [1984] = {.lex_state = 101}, + [1985] = {.lex_state = 101}, + [1986] = {.lex_state = 101}, + [1987] = {.lex_state = 54}, + [1988] = {.lex_state = 50}, + [1989] = {.lex_state = 50}, + [1990] = {.lex_state = 54}, + [1991] = {.lex_state = 54}, + [1992] = {.lex_state = 50}, + [1993] = {.lex_state = 101}, + [1994] = {.lex_state = 52}, + [1995] = {.lex_state = 47}, + [1996] = {.lex_state = 52}, + [1997] = {.lex_state = 4}, + [1998] = {.lex_state = 31}, + [1999] = {.lex_state = 108}, + [2000] = {.lex_state = 50}, + [2001] = {.lex_state = 47}, + [2002] = {.lex_state = 47}, + [2003] = {.lex_state = 109}, + [2004] = {.lex_state = 109}, + [2005] = {.lex_state = 47}, + [2006] = {.lex_state = 47}, + [2007] = {.lex_state = 47}, + [2008] = {.lex_state = 50}, + [2009] = {.lex_state = 47}, + [2010] = {.lex_state = 50}, + [2011] = {.lex_state = 109}, + [2012] = {.lex_state = 50}, + [2013] = {.lex_state = 110}, + [2014] = {.lex_state = 109}, + [2015] = {.lex_state = 110}, + [2016] = {.lex_state = 110}, + [2017] = {.lex_state = 109}, + [2018] = {.lex_state = 50}, + [2019] = {.lex_state = 110}, + [2020] = {.lex_state = 109}, + [2021] = {.lex_state = 50}, + [2022] = {.lex_state = 109}, + [2023] = {.lex_state = 109}, + [2024] = {.lex_state = 109}, + [2025] = {.lex_state = 47}, + [2026] = {.lex_state = 110}, + [2027] = {.lex_state = 47}, + [2028] = {.lex_state = 109}, + [2029] = {.lex_state = 110}, + [2030] = {.lex_state = 50}, + [2031] = {.lex_state = 47}, + [2032] = {.lex_state = 109}, + [2033] = {.lex_state = 47}, + [2034] = {.lex_state = 50}, + [2035] = {.lex_state = 109}, + [2036] = {.lex_state = 110}, + [2037] = {.lex_state = 110}, + [2038] = {.lex_state = 110}, + [2039] = {.lex_state = 110}, + [2040] = {.lex_state = 110}, + [2041] = {.lex_state = 109}, + [2042] = {.lex_state = 47}, + [2043] = {.lex_state = 110}, + [2044] = {.lex_state = 110}, + [2045] = {.lex_state = 110}, + [2046] = {.lex_state = 110}, + [2047] = {.lex_state = 110}, + [2048] = {.lex_state = 110}, + [2049] = {.lex_state = 110}, + [2050] = {.lex_state = 110}, + [2051] = {.lex_state = 110}, + [2052] = {.lex_state = 110}, + [2053] = {.lex_state = 110}, + [2054] = {.lex_state = 109}, + [2055] = {.lex_state = 47}, + [2056] = {.lex_state = 101}, + [2057] = {.lex_state = 109}, + [2058] = {.lex_state = 110}, + [2059] = {.lex_state = 110}, + [2060] = {.lex_state = 50}, + [2061] = {.lex_state = 109}, + [2062] = {.lex_state = 50}, + [2063] = {.lex_state = 50}, + [2064] = {.lex_state = 109}, + [2065] = {.lex_state = 109}, + [2066] = {.lex_state = 109}, + [2067] = {.lex_state = 47}, + [2068] = {.lex_state = 47}, + [2069] = {.lex_state = 47}, + [2070] = {.lex_state = 47}, + [2071] = {.lex_state = 110}, + [2072] = {.lex_state = 110}, + [2073] = {.lex_state = 110}, + [2074] = {.lex_state = 47}, + [2075] = {.lex_state = 101}, + [2076] = {.lex_state = 47}, + [2077] = {.lex_state = 47}, + [2078] = {.lex_state = 110}, + [2079] = {.lex_state = 109}, + [2080] = {.lex_state = 47}, + [2081] = {.lex_state = 47}, + [2082] = {.lex_state = 47}, + [2083] = {.lex_state = 50}, + [2084] = {.lex_state = 50}, + [2085] = {.lex_state = 50}, + [2086] = {.lex_state = 101}, + [2087] = {.lex_state = 50}, + [2088] = {.lex_state = 50}, + [2089] = {.lex_state = 50}, + [2090] = {.lex_state = 50}, + [2091] = {.lex_state = 50}, + [2092] = {.lex_state = 50}, + [2093] = {.lex_state = 50}, + [2094] = {.lex_state = 50}, + [2095] = {.lex_state = 50}, + [2096] = {.lex_state = 50}, + [2097] = {.lex_state = 50}, + [2098] = {.lex_state = 101}, + [2099] = {.lex_state = 101}, + [2100] = {.lex_state = 50}, + [2101] = {.lex_state = 50}, + [2102] = {.lex_state = 47}, + [2103] = {.lex_state = 47}, + [2104] = {.lex_state = 47}, + [2105] = {.lex_state = 110}, + [2106] = {.lex_state = 31}, + [2107] = {.lex_state = 31}, + [2108] = {.lex_state = 110}, + [2109] = {.lex_state = 110}, + [2110] = {.lex_state = 47}, + [2111] = {.lex_state = 109}, + [2112] = {.lex_state = 109}, + [2113] = {.lex_state = 50}, + [2114] = {.lex_state = 110}, + [2115] = {.lex_state = 109}, + [2116] = {.lex_state = 109}, + [2117] = {.lex_state = 50}, + [2118] = {.lex_state = 50}, + [2119] = {.lex_state = 50}, + [2120] = {.lex_state = 47}, + [2121] = {.lex_state = 109}, + [2122] = {.lex_state = 47}, + [2123] = {.lex_state = 109}, + [2124] = {.lex_state = 109}, + [2125] = {.lex_state = 109}, + [2126] = {.lex_state = 50}, + [2127] = {.lex_state = 109}, + [2128] = {.lex_state = 109}, + [2129] = {.lex_state = 109}, + [2130] = {.lex_state = 50}, + [2131] = {.lex_state = 109}, + [2132] = {.lex_state = 109}, + [2133] = {.lex_state = 110}, + [2134] = {.lex_state = 109}, + [2135] = {.lex_state = 110}, + [2136] = {.lex_state = 110}, + [2137] = {.lex_state = 47}, + [2138] = {.lex_state = 50}, + [2139] = {.lex_state = 47}, + [2140] = {.lex_state = 50}, + [2141] = {.lex_state = 50}, + [2142] = {.lex_state = 47}, + [2143] = {.lex_state = 47}, + [2144] = {.lex_state = 109}, + [2145] = {.lex_state = 109}, + [2146] = {.lex_state = 50}, + [2147] = {.lex_state = 50}, + [2148] = {.lex_state = 47}, + [2149] = {.lex_state = 47}, + [2150] = {.lex_state = 110}, + [2151] = {.lex_state = 47}, + [2152] = {.lex_state = 47}, + [2153] = {.lex_state = 47}, + [2154] = {.lex_state = 47}, + [2155] = {.lex_state = 110}, + [2156] = {.lex_state = 101}, + [2157] = {.lex_state = 47}, + [2158] = {.lex_state = 50}, + [2159] = {.lex_state = 101}, + [2160] = {.lex_state = 101}, + [2161] = {.lex_state = 68}, + [2162] = {.lex_state = 69}, + [2163] = {.lex_state = 101}, + [2164] = {.lex_state = 101}, + [2165] = {.lex_state = 65}, + [2166] = {.lex_state = 101}, + [2167] = {.lex_state = 101}, + [2168] = {.lex_state = 101}, + [2169] = {.lex_state = 101}, + [2170] = {.lex_state = 101}, + [2171] = {.lex_state = 101}, + [2172] = {.lex_state = 101}, + [2173] = {.lex_state = 67}, + [2174] = {.lex_state = 101}, + [2175] = {.lex_state = 101}, + [2176] = {.lex_state = 114}, + [2177] = {.lex_state = 101}, + [2178] = {.lex_state = 101}, + [2179] = {.lex_state = 101}, + [2180] = {.lex_state = 22}, + [2181] = {.lex_state = 22}, + [2182] = {.lex_state = 5}, + [2183] = {.lex_state = 22}, + [2184] = {.lex_state = 5}, + [2185] = {.lex_state = 5}, + [2186] = {.lex_state = 66}, + [2187] = {.lex_state = 22}, + [2188] = {.lex_state = 5}, + [2189] = {.lex_state = 5}, + [2190] = {.lex_state = 22}, + [2191] = {.lex_state = 5}, + [2192] = {.lex_state = 22}, + [2193] = {.lex_state = 5}, + [2194] = {.lex_state = 22}, + [2195] = {.lex_state = 7}, + [2196] = {.lex_state = 5}, + [2197] = {.lex_state = 22}, + [2198] = {.lex_state = 5}, + [2199] = {.lex_state = 5}, + [2200] = {.lex_state = 5}, + [2201] = {.lex_state = 5}, + [2202] = {.lex_state = 5}, + [2203] = {.lex_state = 5}, + [2204] = {.lex_state = 5}, + [2205] = {.lex_state = 5}, + [2206] = {.lex_state = 5}, + [2207] = {.lex_state = 16}, + [2208] = {.lex_state = 16}, + [2209] = {.lex_state = 5}, + [2210] = {.lex_state = 16}, + [2211] = {.lex_state = 5}, + [2212] = {.lex_state = 5}, + [2213] = {.lex_state = 16}, + [2214] = {.lex_state = 5}, + [2215] = {.lex_state = 5}, + [2216] = {.lex_state = 5}, + [2217] = {.lex_state = 16}, + [2218] = {.lex_state = 16}, + [2219] = {.lex_state = 5}, + [2220] = {.lex_state = 16}, + [2221] = {.lex_state = 5}, + [2222] = {.lex_state = 5}, + [2223] = {.lex_state = 16}, + [2224] = {.lex_state = 5}, + [2225] = {.lex_state = 5}, + [2226] = {.lex_state = 39}, + [2227] = {.lex_state = 39}, + [2228] = {.lex_state = 14}, + [2229] = {.lex_state = 14}, + [2230] = {.lex_state = 14}, + [2231] = {.lex_state = 5}, + [2232] = {.lex_state = 39}, + [2233] = {.lex_state = 5}, + [2234] = {.lex_state = 14}, + [2235] = {.lex_state = 39}, + [2236] = {.lex_state = 37}, + [2237] = {.lex_state = 37}, + [2238] = {.lex_state = 104}, + [2239] = {.lex_state = 37}, + [2240] = {.lex_state = 37}, + [2241] = {.lex_state = 37}, + [2242] = {.lex_state = 35}, + [2243] = {.lex_state = 37}, + [2244] = {.lex_state = 35}, + [2245] = {.lex_state = 5}, + [2246] = {.lex_state = 15}, + [2247] = {.lex_state = 35}, + [2248] = {.lex_state = 15}, + [2249] = {.lex_state = 38}, + [2250] = {.lex_state = 38}, + [2251] = {.lex_state = 38}, + [2252] = {.lex_state = 37}, + [2253] = {.lex_state = 15}, + [2254] = {.lex_state = 38}, + [2255] = {.lex_state = 5}, + [2256] = {.lex_state = 5}, + [2257] = {.lex_state = 5}, + [2258] = {.lex_state = 5}, + [2259] = {.lex_state = 38}, + [2260] = {.lex_state = 5}, + [2261] = {.lex_state = 38}, + [2262] = {.lex_state = 38}, + [2263] = {.lex_state = 5}, + [2264] = {.lex_state = 5}, + [2265] = {.lex_state = 35}, + [2266] = {.lex_state = 35}, + [2267] = {.lex_state = 35}, + [2268] = {.lex_state = 5}, + [2269] = {.lex_state = 5}, + [2270] = {.lex_state = 5}, + [2271] = {.lex_state = 5}, + [2272] = {.lex_state = 5}, + [2273] = {.lex_state = 38}, + [2274] = {.lex_state = 35}, + [2275] = {.lex_state = 119}, + [2276] = {.lex_state = 119}, + [2277] = {.lex_state = 102}, + [2278] = {.lex_state = 119}, + [2279] = {.lex_state = 119}, + [2280] = {.lex_state = 119}, + [2281] = {.lex_state = 119}, + [2282] = {.lex_state = 119}, + [2283] = {.lex_state = 119}, + [2284] = {.lex_state = 5}, + [2285] = {.lex_state = 5}, + [2286] = {.lex_state = 20}, + [2287] = {.lex_state = 15}, + [2288] = {.lex_state = 5}, + [2289] = {.lex_state = 5}, + [2290] = {.lex_state = 5}, + [2291] = {.lex_state = 102}, + [2292] = {.lex_state = 102}, + [2293] = {.lex_state = 5}, + [2294] = {.lex_state = 5}, + [2295] = {.lex_state = 102}, + [2296] = {.lex_state = 39}, + [2297] = {.lex_state = 5}, + [2298] = {.lex_state = 35}, + [2299] = {.lex_state = 44}, + [2300] = {.lex_state = 5}, + [2301] = {.lex_state = 39}, + [2302] = {.lex_state = 5}, + [2303] = {.lex_state = 5}, + [2304] = {.lex_state = 37}, + [2305] = {.lex_state = 5}, + [2306] = {.lex_state = 5}, + [2307] = {.lex_state = 5}, + [2308] = {.lex_state = 5}, + [2309] = {.lex_state = 5}, + [2310] = {.lex_state = 5}, + [2311] = {.lex_state = 5}, + [2312] = {.lex_state = 5}, + [2313] = {.lex_state = 5}, + [2314] = {.lex_state = 5}, + [2315] = {.lex_state = 5}, + [2316] = {.lex_state = 43}, + [2317] = {.lex_state = 5}, + [2318] = {.lex_state = 5}, + [2319] = {.lex_state = 102}, + [2320] = {.lex_state = 5}, + [2321] = {.lex_state = 102}, + [2322] = {.lex_state = 102}, + [2323] = {.lex_state = 5}, + [2324] = {.lex_state = 5}, + [2325] = {.lex_state = 39}, + [2326] = {.lex_state = 102}, + [2327] = {.lex_state = 39}, + [2328] = {.lex_state = 5}, + [2329] = {.lex_state = 5}, + [2330] = {.lex_state = 5}, + [2331] = {.lex_state = 5}, + [2332] = {.lex_state = 5}, + [2333] = {.lex_state = 5}, + [2334] = {.lex_state = 5}, + [2335] = {.lex_state = 5}, + [2336] = {.lex_state = 5}, + [2337] = {.lex_state = 5}, + [2338] = {.lex_state = 5}, + [2339] = {.lex_state = 5}, + [2340] = {.lex_state = 5}, + [2341] = {.lex_state = 42}, + [2342] = {.lex_state = 40}, + [2343] = {.lex_state = 38}, + [2344] = {.lex_state = 14}, + [2345] = {.lex_state = 14}, + [2346] = {.lex_state = 37}, + [2347] = {.lex_state = 35}, + [2348] = {.lex_state = 35}, + [2349] = {.lex_state = 15}, + [2350] = {.lex_state = 35}, + [2351] = {.lex_state = 37}, + [2352] = {.lex_state = 37}, + [2353] = {.lex_state = 39}, + [2354] = {.lex_state = 102}, + [2355] = {.lex_state = 38}, + [2356] = {.lex_state = 38}, + [2357] = {.lex_state = 35}, + [2358] = {.lex_state = 14}, + [2359] = {.lex_state = 37}, + [2360] = {.lex_state = 37}, + [2361] = {.lex_state = 102}, + [2362] = {.lex_state = 5}, + [2363] = {.lex_state = 113}, + [2364] = {.lex_state = 113}, + [2365] = {.lex_state = 102}, + [2366] = {.lex_state = 113}, + [2367] = {.lex_state = 14}, + [2368] = {.lex_state = 37}, + [2369] = {.lex_state = 102}, + [2370] = {.lex_state = 14}, + [2371] = {.lex_state = 14}, + [2372] = {.lex_state = 113}, + [2373] = {.lex_state = 113}, + [2374] = {.lex_state = 35}, + [2375] = {.lex_state = 15}, + [2376] = {.lex_state = 113}, + [2377] = {.lex_state = 15}, + [2378] = {.lex_state = 15}, + [2379] = {.lex_state = 15}, + [2380] = {.lex_state = 14}, + [2381] = {.lex_state = 113}, + [2382] = {.lex_state = 113}, + [2383] = {.lex_state = 15}, + [2384] = {.lex_state = 24}, + [2385] = {.lex_state = 39}, + [2386] = {.lex_state = 39}, + [2387] = {.lex_state = 39}, + [2388] = {.lex_state = 39}, + [2389] = {.lex_state = 102}, + [2390] = {.lex_state = 41}, + [2391] = {.lex_state = 14}, + [2392] = {.lex_state = 14}, + [2393] = {.lex_state = 38}, + [2394] = {.lex_state = 14}, + [2395] = {.lex_state = 14}, + [2396] = {.lex_state = 24}, + [2397] = {.lex_state = 102}, + [2398] = {.lex_state = 35}, + [2399] = {.lex_state = 14}, + [2400] = {.lex_state = 15}, + [2401] = {.lex_state = 15}, + [2402] = {.lex_state = 39}, + [2403] = {.lex_state = 38}, + [2404] = {.lex_state = 15}, + [2405] = {.lex_state = 24}, + [2406] = {.lex_state = 39}, + [2407] = {.lex_state = 15}, + [2408] = {.lex_state = 38}, + [2409] = {.lex_state = 36}, + [2410] = {.lex_state = 38}, + [2411] = {.lex_state = 35}, + [2412] = {.lex_state = 15}, + [2413] = {.lex_state = 35}, + [2414] = {.lex_state = 14}, + [2415] = {.lex_state = 102}, + [2416] = {.lex_state = 35}, + [2417] = {.lex_state = 15}, + [2418] = {.lex_state = 102}, + [2419] = {.lex_state = 15}, + [2420] = {.lex_state = 36}, + [2421] = {.lex_state = 36}, + [2422] = {.lex_state = 14}, + [2423] = {.lex_state = 15}, + [2424] = {.lex_state = 39}, + [2425] = {.lex_state = 15}, + [2426] = {.lex_state = 14}, + [2427] = {.lex_state = 5}, + [2428] = {.lex_state = 37}, + [2429] = {.lex_state = 14}, + [2430] = {.lex_state = 35}, + [2431] = {.lex_state = 35}, + [2432] = {.lex_state = 14}, + [2433] = {.lex_state = 14}, + [2434] = {.lex_state = 102}, + [2435] = {.lex_state = 5}, + [2436] = {.lex_state = 15}, + [2437] = {.lex_state = 38}, + [2438] = {.lex_state = 37}, + [2439] = {.lex_state = 35}, + [2440] = {.lex_state = 16}, + [2441] = {.lex_state = 35}, + [2442] = {.lex_state = 102}, + [2443] = {.lex_state = 35}, + [2444] = {.lex_state = 39}, + [2445] = {.lex_state = 39}, + [2446] = {.lex_state = 38}, + [2447] = {.lex_state = 38}, + [2448] = {.lex_state = 102}, + [2449] = {.lex_state = 102}, + [2450] = {.lex_state = 24}, + [2451] = {.lex_state = 37}, + [2452] = {.lex_state = 37}, + [2453] = {.lex_state = 35}, + [2454] = {.lex_state = 37}, + [2455] = {.lex_state = 20}, + [2456] = {.lex_state = 37}, + [2457] = {.lex_state = 37}, + [2458] = {.lex_state = 15}, + [2459] = {.lex_state = 37}, + [2460] = {.lex_state = 14}, + [2461] = {.lex_state = 5}, + [2462] = {.lex_state = 39}, + [2463] = {.lex_state = 38}, + [2464] = {.lex_state = 16}, + [2465] = {.lex_state = 14}, + [2466] = {.lex_state = 14}, + [2467] = {.lex_state = 39}, + [2468] = {.lex_state = 24}, + [2469] = {.lex_state = 102}, + [2470] = {.lex_state = 24}, + [2471] = {.lex_state = 37}, + [2472] = {.lex_state = 37}, + [2473] = {.lex_state = 14}, + [2474] = {.lex_state = 15}, + [2475] = {.lex_state = 15}, + [2476] = {.lex_state = 15}, + [2477] = {.lex_state = 15}, + [2478] = {.lex_state = 15}, + [2479] = {.lex_state = 35}, + [2480] = {.lex_state = 15}, + [2481] = {.lex_state = 15}, + [2482] = {.lex_state = 15}, + [2483] = {.lex_state = 14}, + [2484] = {.lex_state = 15}, + [2485] = {.lex_state = 39}, + [2486] = {.lex_state = 14}, + [2487] = {.lex_state = 102}, + [2488] = {.lex_state = 14}, + [2489] = {.lex_state = 15}, + [2490] = {.lex_state = 15}, + [2491] = {.lex_state = 15}, + [2492] = {.lex_state = 15}, + [2493] = {.lex_state = 14}, + [2494] = {.lex_state = 14}, + [2495] = {.lex_state = 14}, + [2496] = {.lex_state = 14}, + [2497] = {.lex_state = 14}, + [2498] = {.lex_state = 15}, + [2499] = {.lex_state = 14}, + [2500] = {.lex_state = 36}, + [2501] = {.lex_state = 14}, + [2502] = {.lex_state = 39}, + [2503] = {.lex_state = 14}, + [2504] = {.lex_state = 15}, + [2505] = {.lex_state = 36}, + [2506] = {.lex_state = 39}, + [2507] = {.lex_state = 102}, + [2508] = {.lex_state = 102}, + [2509] = {.lex_state = 102}, + [2510] = {.lex_state = 102}, + [2511] = {.lex_state = 37}, + [2512] = {.lex_state = 39}, + [2513] = {.lex_state = 38}, + [2514] = {.lex_state = 38}, + [2515] = {.lex_state = 38}, + [2516] = {.lex_state = 37}, + [2517] = {.lex_state = 39}, + [2518] = {.lex_state = 15}, + [2519] = {.lex_state = 15}, + [2520] = {.lex_state = 14}, + [2521] = {.lex_state = 5}, + [2522] = {.lex_state = 14}, + [2523] = {.lex_state = 36}, + [2524] = {.lex_state = 38}, + [2525] = {.lex_state = 38}, + [2526] = {.lex_state = 15}, + [2527] = {.lex_state = 38}, + [2528] = {.lex_state = 102}, + [2529] = {.lex_state = 15}, + [2530] = {.lex_state = 15}, + [2531] = {.lex_state = 35}, + [2532] = {.lex_state = 39}, + [2533] = {.lex_state = 37}, + [2534] = {.lex_state = 38}, + [2535] = {.lex_state = 35}, + [2536] = {.lex_state = 38}, + [2537] = {.lex_state = 102}, + [2538] = {.lex_state = 35}, + [2539] = {.lex_state = 39}, + [2540] = {.lex_state = 36}, + [2541] = {.lex_state = 36}, + [2542] = {.lex_state = 5}, + [2543] = {.lex_state = 38}, + [2544] = {.lex_state = 14}, + [2545] = {.lex_state = 35}, + [2546] = {.lex_state = 24}, + [2547] = {.lex_state = 20}, + [2548] = {.lex_state = 37}, + [2549] = {.lex_state = 39}, + [2550] = {.lex_state = 39}, + [2551] = {.lex_state = 37}, + [2552] = {.lex_state = 35}, + [2553] = {.lex_state = 16}, + [2554] = {.lex_state = 102}, + [2555] = {.lex_state = 112}, + [2556] = {.lex_state = 59}, + [2557] = {.lex_state = 38}, + [2558] = {.lex_state = 36}, + [2559] = {.lex_state = 39}, + [2560] = {.lex_state = 39}, + [2561] = {.lex_state = 35}, + [2562] = {.lex_state = 102}, + [2563] = {.lex_state = 36}, + [2564] = {.lex_state = 37}, + [2565] = {.lex_state = 37}, + [2566] = {.lex_state = 39}, + [2567] = {.lex_state = 35}, + [2568] = {.lex_state = 18}, + [2569] = {.lex_state = 37}, + [2570] = {.lex_state = 102}, + [2571] = {.lex_state = 37}, + [2572] = {.lex_state = 35}, + [2573] = {.lex_state = 35}, + [2574] = {.lex_state = 36}, + [2575] = {.lex_state = 35}, + [2576] = {.lex_state = 61}, + [2577] = {.lex_state = 35}, + [2578] = {.lex_state = 36}, + [2579] = {.lex_state = 102}, + [2580] = {.lex_state = 36}, + [2581] = {.lex_state = 35}, + [2582] = {.lex_state = 37}, + [2583] = {.lex_state = 64}, + [2584] = {.lex_state = 35}, + [2585] = {.lex_state = 37}, + [2586] = {.lex_state = 37}, + [2587] = {.lex_state = 35}, + [2588] = {.lex_state = 37}, + [2589] = {.lex_state = 102}, + [2590] = {.lex_state = 35}, + [2591] = {.lex_state = 39}, + [2592] = {.lex_state = 18}, + [2593] = {.lex_state = 35}, + [2594] = {.lex_state = 38}, + [2595] = {.lex_state = 39}, + [2596] = {.lex_state = 37}, + [2597] = {.lex_state = 58}, + [2598] = {.lex_state = 37}, + [2599] = {.lex_state = 102}, + [2600] = {.lex_state = 39}, + [2601] = {.lex_state = 35}, + [2602] = {.lex_state = 39}, + [2603] = {.lex_state = 102}, + [2604] = {.lex_state = 39}, + [2605] = {.lex_state = 39}, + [2606] = {.lex_state = 39}, + [2607] = {.lex_state = 36}, + [2608] = {.lex_state = 18}, + [2609] = {.lex_state = 39}, + [2610] = {.lex_state = 102}, + [2611] = {.lex_state = 39}, + [2612] = {.lex_state = 38}, + [2613] = {.lex_state = 39}, + [2614] = {.lex_state = 5}, + [2615] = {.lex_state = 61}, + [2616] = {.lex_state = 102}, + [2617] = {.lex_state = 102}, + [2618] = {.lex_state = 39}, + [2619] = {.lex_state = 37}, + [2620] = {.lex_state = 37}, + [2621] = {.lex_state = 64}, + [2622] = {.lex_state = 37}, + [2623] = {.lex_state = 35}, + [2624] = {.lex_state = 39}, + [2625] = {.lex_state = 16}, + [2626] = {.lex_state = 20}, + [2627] = {.lex_state = 38}, + [2628] = {.lex_state = 38}, + [2629] = {.lex_state = 38}, + [2630] = {.lex_state = 38}, + [2631] = {.lex_state = 37}, + [2632] = {.lex_state = 38}, + [2633] = {.lex_state = 38}, + [2634] = {.lex_state = 38}, + [2635] = {.lex_state = 37}, + [2636] = {.lex_state = 38}, + [2637] = {.lex_state = 37}, + [2638] = {.lex_state = 38}, + [2639] = {.lex_state = 35}, + [2640] = {.lex_state = 38}, + [2641] = {.lex_state = 38}, + [2642] = {.lex_state = 5}, + [2643] = {.lex_state = 39}, + [2644] = {.lex_state = 38}, + [2645] = {.lex_state = 58}, + [2646] = {.lex_state = 20}, + [2647] = {.lex_state = 39}, + [2648] = {.lex_state = 39}, + [2649] = {.lex_state = 102}, + [2650] = {.lex_state = 37}, + [2651] = {.lex_state = 39}, + [2652] = {.lex_state = 39}, + [2653] = {.lex_state = 37}, + [2654] = {.lex_state = 39}, + [2655] = {.lex_state = 37}, + [2656] = {.lex_state = 37}, + [2657] = {.lex_state = 37}, + [2658] = {.lex_state = 37}, + [2659] = {.lex_state = 37}, + [2660] = {.lex_state = 38}, + [2661] = {.lex_state = 37}, + [2662] = {.lex_state = 39}, + [2663] = {.lex_state = 38}, + [2664] = {.lex_state = 64}, + [2665] = {.lex_state = 37}, + [2666] = {.lex_state = 39}, + [2667] = {.lex_state = 37}, + [2668] = {.lex_state = 37}, + [2669] = {.lex_state = 38}, + [2670] = {.lex_state = 61}, + [2671] = {.lex_state = 37}, + [2672] = {.lex_state = 36}, + [2673] = {.lex_state = 62}, + [2674] = {.lex_state = 37}, + [2675] = {.lex_state = 102}, + [2676] = {.lex_state = 37}, + [2677] = {.lex_state = 59}, + [2678] = {.lex_state = 58}, + [2679] = {.lex_state = 39}, + [2680] = {.lex_state = 5}, + [2681] = {.lex_state = 39}, + [2682] = {.lex_state = 16}, + [2683] = {.lex_state = 62}, + [2684] = {.lex_state = 18}, + [2685] = {.lex_state = 61}, + [2686] = {.lex_state = 16}, + [2687] = {.lex_state = 36}, + [2688] = {.lex_state = 39}, + [2689] = {.lex_state = 102}, + [2690] = {.lex_state = 37}, + [2691] = {.lex_state = 5}, + [2692] = {.lex_state = 35}, + [2693] = {.lex_state = 35}, + [2694] = {.lex_state = 37}, + [2695] = {.lex_state = 36}, + [2696] = {.lex_state = 35}, + [2697] = {.lex_state = 38}, + [2698] = {.lex_state = 5}, + [2699] = {.lex_state = 38}, + [2700] = {.lex_state = 5}, + [2701] = {.lex_state = 39}, + [2702] = {.lex_state = 38}, + [2703] = {.lex_state = 62}, + [2704] = {.lex_state = 55}, + [2705] = {.lex_state = 37}, + [2706] = {.lex_state = 102}, + [2707] = {.lex_state = 102}, + [2708] = {.lex_state = 55}, + [2709] = {.lex_state = 35}, + [2710] = {.lex_state = 35}, + [2711] = {.lex_state = 55}, + [2712] = {.lex_state = 102}, + [2713] = {.lex_state = 59}, + [2714] = {.lex_state = 35}, + [2715] = {.lex_state = 37}, + [2716] = {.lex_state = 38}, + [2717] = {.lex_state = 111}, + [2718] = {.lex_state = 35}, + [2719] = {.lex_state = 63}, + [2720] = {.lex_state = 37}, + [2721] = {.lex_state = 62}, + [2722] = {.lex_state = 56}, + [2723] = {.lex_state = 111}, + [2724] = {.lex_state = 35}, + [2725] = {.lex_state = 102}, + [2726] = {.lex_state = 102}, + [2727] = {.lex_state = 111}, + [2728] = {.lex_state = 102}, + [2729] = {.lex_state = 20}, + [2730] = {.lex_state = 35}, + [2731] = {.lex_state = 35}, + [2732] = {.lex_state = 36}, + [2733] = {.lex_state = 5}, + [2734] = {.lex_state = 63}, + [2735] = {.lex_state = 35}, + [2736] = {.lex_state = 37}, + [2737] = {.lex_state = 35}, + [2738] = {.lex_state = 38}, + [2739] = {.lex_state = 38}, + [2740] = {.lex_state = 5}, + [2741] = {.lex_state = 38}, + [2742] = {.lex_state = 38}, + [2743] = {.lex_state = 5}, + [2744] = {.lex_state = 5}, + [2745] = {.lex_state = 102}, + [2746] = {.lex_state = 35}, + [2747] = {.lex_state = 5}, + [2748] = {.lex_state = 5}, + [2749] = {.lex_state = 5}, + [2750] = {.lex_state = 5}, + [2751] = {.lex_state = 38}, + [2752] = {.lex_state = 38}, + [2753] = {.lex_state = 38}, + [2754] = {.lex_state = 38}, + [2755] = {.lex_state = 38}, + [2756] = {.lex_state = 35}, + [2757] = {.lex_state = 35}, + [2758] = {.lex_state = 102}, + [2759] = {.lex_state = 35}, + [2760] = {.lex_state = 38}, + [2761] = {.lex_state = 35}, + [2762] = {.lex_state = 102}, + [2763] = {.lex_state = 5}, + [2764] = {.lex_state = 38}, + [2765] = {.lex_state = 39}, + [2766] = {.lex_state = 38}, + [2767] = {.lex_state = 36}, + [2768] = {.lex_state = 20}, + [2769] = {.lex_state = 39}, + [2770] = {.lex_state = 35}, + [2771] = {.lex_state = 39}, + [2772] = {.lex_state = 39}, + [2773] = {.lex_state = 38}, + [2774] = {.lex_state = 35}, + [2775] = {.lex_state = 39}, + [2776] = {.lex_state = 63}, + [2777] = {.lex_state = 39}, + [2778] = {.lex_state = 39}, + [2779] = {.lex_state = 39}, + [2780] = {.lex_state = 39}, + [2781] = {.lex_state = 39}, + [2782] = {.lex_state = 39}, + [2783] = {.lex_state = 39}, + [2784] = {.lex_state = 39}, + [2785] = {.lex_state = 39}, + [2786] = {.lex_state = 39}, + [2787] = {.lex_state = 39}, + [2788] = {.lex_state = 39}, + [2789] = {.lex_state = 39}, + [2790] = {.lex_state = 39}, + [2791] = {.lex_state = 38}, + [2792] = {.lex_state = 38}, + [2793] = {.lex_state = 38}, + [2794] = {.lex_state = 38}, + [2795] = {.lex_state = 38}, + [2796] = {.lex_state = 38}, + [2797] = {.lex_state = 38}, + [2798] = {.lex_state = 38}, + [2799] = {.lex_state = 38}, + [2800] = {.lex_state = 38}, + [2801] = {.lex_state = 38}, + [2802] = {.lex_state = 38}, + [2803] = {.lex_state = 38}, + [2804] = {.lex_state = 38}, + [2805] = {.lex_state = 102}, + [2806] = {.lex_state = 37}, + [2807] = {.lex_state = 37}, + [2808] = {.lex_state = 39}, + [2809] = {.lex_state = 37}, + [2810] = {.lex_state = 37}, + [2811] = {.lex_state = 37}, + [2812] = {.lex_state = 37}, + [2813] = {.lex_state = 37}, + [2814] = {.lex_state = 37}, + [2815] = {.lex_state = 37}, + [2816] = {.lex_state = 37}, + [2817] = {.lex_state = 37}, + [2818] = {.lex_state = 37}, + [2819] = {.lex_state = 37}, + [2820] = {.lex_state = 102}, + [2821] = {.lex_state = 35}, + [2822] = {.lex_state = 102}, + [2823] = {.lex_state = 35}, + [2824] = {.lex_state = 36}, + [2825] = {.lex_state = 37}, + [2826] = {.lex_state = 102}, + [2827] = {.lex_state = 102}, + [2828] = {.lex_state = 102}, + [2829] = {.lex_state = 36}, + [2830] = {.lex_state = 102}, + [2831] = {.lex_state = 38}, + [2832] = {.lex_state = 39}, + [2833] = {.lex_state = 102}, + [2834] = {.lex_state = 56}, + [2835] = {.lex_state = 38}, + [2836] = {.lex_state = 59}, + [2837] = {.lex_state = 64}, + [2838] = {.lex_state = 102}, + [2839] = {.lex_state = 56}, + [2840] = {.lex_state = 16}, + [2841] = {.lex_state = 56}, + [2842] = {.lex_state = 102}, + [2843] = {.lex_state = 102}, + [2844] = {.lex_state = 102}, + [2845] = {.lex_state = 102}, + [2846] = {.lex_state = 102}, + [2847] = {.lex_state = 37}, + [2848] = {.lex_state = 112}, + [2849] = {.lex_state = 18}, + [2850] = {.lex_state = 35}, + [2851] = {.lex_state = 35}, + [2852] = {.lex_state = 35}, + [2853] = {.lex_state = 35}, + [2854] = {.lex_state = 35}, + [2855] = {.lex_state = 35}, + [2856] = {.lex_state = 35}, + [2857] = {.lex_state = 35}, + [2858] = {.lex_state = 35}, + [2859] = {.lex_state = 35}, + [2860] = {.lex_state = 35}, + [2861] = {.lex_state = 35}, + [2862] = {.lex_state = 35}, + [2863] = {.lex_state = 102}, + [2864] = {.lex_state = 102}, + [2865] = {.lex_state = 102}, + [2866] = {.lex_state = 102}, + [2867] = {.lex_state = 102}, + [2868] = {.lex_state = 102}, + [2869] = {.lex_state = 102}, + [2870] = {.lex_state = 102}, + [2871] = {.lex_state = 102}, + [2872] = {.lex_state = 102}, + [2873] = {.lex_state = 102}, + [2874] = {.lex_state = 102}, + [2875] = {.lex_state = 102}, + [2876] = {.lex_state = 35}, + [2877] = {.lex_state = 102}, + [2878] = {.lex_state = 16}, + [2879] = {.lex_state = 102}, + [2880] = {.lex_state = 102}, + [2881] = {.lex_state = 39}, + [2882] = {.lex_state = 37}, + [2883] = {.lex_state = 58}, + [2884] = {.lex_state = 39}, + [2885] = {.lex_state = 16}, + [2886] = {.lex_state = 102}, + [2887] = {.lex_state = 35}, + [2888] = {.lex_state = 36}, + [2889] = {.lex_state = 35}, + [2890] = {.lex_state = 35}, + [2891] = {.lex_state = 63}, + [2892] = {.lex_state = 35}, + [2893] = {.lex_state = 37}, + [2894] = {.lex_state = 112}, + [2895] = {.lex_state = 16}, + [2896] = {.lex_state = 102}, + [2897] = {.lex_state = 39}, + [2898] = {.lex_state = 36}, + [2899] = {.lex_state = 18}, + [2900] = {.lex_state = 112}, + [2901] = {.lex_state = 18}, + [2902] = {.lex_state = 16}, + [2903] = {.lex_state = 102}, + [2904] = {.lex_state = 38}, + [2905] = {.lex_state = 35}, + [2906] = {.lex_state = 39}, + [2907] = {.lex_state = 111}, + [2908] = {.lex_state = 36}, + [2909] = {.lex_state = 38}, + [2910] = {.lex_state = 55}, + [2911] = {.lex_state = 38}, + [2912] = {.lex_state = 37}, + [2913] = {.lex_state = 36}, + [2914] = {.lex_state = 36}, + [2915] = {.lex_state = 36}, + [2916] = {.lex_state = 117}, + [2917] = {.lex_state = 36}, + [2918] = {.lex_state = 39}, + [2919] = {.lex_state = 39}, + [2920] = {.lex_state = 38}, + [2921] = {.lex_state = 64}, + [2922] = {.lex_state = 39}, + [2923] = {.lex_state = 63}, + [2924] = {.lex_state = 63}, + [2925] = {.lex_state = 64}, + [2926] = {.lex_state = 64}, + [2927] = {.lex_state = 36}, + [2928] = {.lex_state = 61}, + [2929] = {.lex_state = 61}, + [2930] = {.lex_state = 61}, + [2931] = {.lex_state = 64}, + [2932] = {.lex_state = 64}, + [2933] = {.lex_state = 60}, + [2934] = {.lex_state = 58}, + [2935] = {.lex_state = 58}, + [2936] = {.lex_state = 36}, + [2937] = {.lex_state = 36}, + [2938] = {.lex_state = 60}, + [2939] = {.lex_state = 58}, + [2940] = {.lex_state = 63}, + [2941] = {.lex_state = 64}, + [2942] = {.lex_state = 37}, + [2943] = {.lex_state = 60}, + [2944] = {.lex_state = 36}, + [2945] = {.lex_state = 36}, + [2946] = {.lex_state = 55}, + [2947] = {.lex_state = 111}, + [2948] = {.lex_state = 55}, + [2949] = {.lex_state = 111}, + [2950] = {.lex_state = 59}, + [2951] = {.lex_state = 61}, + [2952] = {.lex_state = 36}, + [2953] = {.lex_state = 63}, + [2954] = {.lex_state = 55}, + [2955] = {.lex_state = 36}, + [2956] = {.lex_state = 61}, + [2957] = {.lex_state = 55}, + [2958] = {.lex_state = 61}, + [2959] = {.lex_state = 111}, + [2960] = {.lex_state = 58}, + [2961] = {.lex_state = 16}, + [2962] = {.lex_state = 55}, + [2963] = {.lex_state = 111}, + [2964] = {.lex_state = 111}, + [2965] = {.lex_state = 55}, + [2966] = {.lex_state = 61}, + [2967] = {.lex_state = 61}, + [2968] = {.lex_state = 111}, + [2969] = {.lex_state = 58}, + [2970] = {.lex_state = 59}, + [2971] = {.lex_state = 59}, + [2972] = {.lex_state = 63}, + [2973] = {.lex_state = 111}, + [2974] = {.lex_state = 36}, + [2975] = {.lex_state = 38}, + [2976] = {.lex_state = 38}, + [2977] = {.lex_state = 36}, + [2978] = {.lex_state = 58}, + [2979] = {.lex_state = 111}, + [2980] = {.lex_state = 56}, + [2981] = {.lex_state = 56}, + [2982] = {.lex_state = 111}, + [2983] = {.lex_state = 102}, + [2984] = {.lex_state = 102}, + [2985] = {.lex_state = 36}, + [2986] = {.lex_state = 36}, + [2987] = {.lex_state = 36}, + [2988] = {.lex_state = 36}, + [2989] = {.lex_state = 62}, + [2990] = {.lex_state = 63}, + [2991] = {.lex_state = 39}, + [2992] = {.lex_state = 62}, + [2993] = {.lex_state = 37}, + [2994] = {.lex_state = 36}, + [2995] = {.lex_state = 39}, + [2996] = {.lex_state = 36}, + [2997] = {.lex_state = 63}, + [2998] = {.lex_state = 35}, + [2999] = {.lex_state = 55}, + [3000] = {.lex_state = 56}, + [3001] = {.lex_state = 63}, + [3002] = {.lex_state = 59}, + [3003] = {.lex_state = 59}, + [3004] = {.lex_state = 55}, + [3005] = {.lex_state = 55}, + [3006] = {.lex_state = 55}, + [3007] = {.lex_state = 55}, + [3008] = {.lex_state = 55}, + [3009] = {.lex_state = 55}, + [3010] = {.lex_state = 55}, + [3011] = {.lex_state = 55}, + [3012] = {.lex_state = 55}, + [3013] = {.lex_state = 55}, + [3014] = {.lex_state = 55}, + [3015] = {.lex_state = 59}, + [3016] = {.lex_state = 61}, + [3017] = {.lex_state = 61}, + [3018] = {.lex_state = 61}, + [3019] = {.lex_state = 62}, + [3020] = {.lex_state = 56}, + [3021] = {.lex_state = 111}, + [3022] = {.lex_state = 36}, + [3023] = {.lex_state = 36}, + [3024] = {.lex_state = 112}, + [3025] = {.lex_state = 56}, + [3026] = {.lex_state = 112}, + [3027] = {.lex_state = 63}, + [3028] = {.lex_state = 61}, + [3029] = {.lex_state = 62}, + [3030] = {.lex_state = 58}, + [3031] = {.lex_state = 56}, + [3032] = {.lex_state = 111}, + [3033] = {.lex_state = 111}, + [3034] = {.lex_state = 111}, + [3035] = {.lex_state = 111}, + [3036] = {.lex_state = 111}, + [3037] = {.lex_state = 111}, + [3038] = {.lex_state = 111}, + [3039] = {.lex_state = 111}, + [3040] = {.lex_state = 111}, + [3041] = {.lex_state = 111}, + [3042] = {.lex_state = 111}, + [3043] = {.lex_state = 62}, + [3044] = {.lex_state = 63}, + [3045] = {.lex_state = 56}, + [3046] = {.lex_state = 59}, + [3047] = {.lex_state = 36}, + [3048] = {.lex_state = 112}, + [3049] = {.lex_state = 22}, + [3050] = {.lex_state = 36}, + [3051] = {.lex_state = 56}, + [3052] = {.lex_state = 112}, + [3053] = {.lex_state = 112}, + [3054] = {.lex_state = 56}, + [3055] = {.lex_state = 112}, + [3056] = {.lex_state = 102}, + [3057] = {.lex_state = 58}, + [3058] = {.lex_state = 35}, + [3059] = {.lex_state = 112}, + [3060] = {.lex_state = 16}, + [3061] = {.lex_state = 56}, + [3062] = {.lex_state = 55}, + [3063] = {.lex_state = 56}, + [3064] = {.lex_state = 55}, + [3065] = {.lex_state = 62}, + [3066] = {.lex_state = 55}, + [3067] = {.lex_state = 112}, + [3068] = {.lex_state = 57}, + [3069] = {.lex_state = 36}, + [3070] = {.lex_state = 112}, + [3071] = {.lex_state = 58}, + [3072] = {.lex_state = 58}, + [3073] = {.lex_state = 64}, + [3074] = {.lex_state = 62}, + [3075] = {.lex_state = 36}, + [3076] = {.lex_state = 57}, + [3077] = {.lex_state = 64}, + [3078] = {.lex_state = 64}, + [3079] = {.lex_state = 62}, + [3080] = {.lex_state = 57}, + [3081] = {.lex_state = 111}, + [3082] = {.lex_state = 112}, + [3083] = {.lex_state = 56}, + [3084] = {.lex_state = 111}, + [3085] = {.lex_state = 112}, + [3086] = {.lex_state = 36}, + [3087] = {.lex_state = 63}, + [3088] = {.lex_state = 111}, + [3089] = {.lex_state = 36}, + [3090] = {.lex_state = 55}, + [3091] = {.lex_state = 36}, + [3092] = {.lex_state = 62}, + [3093] = {.lex_state = 61}, + [3094] = {.lex_state = 61}, + [3095] = {.lex_state = 62}, + [3096] = {.lex_state = 56}, + [3097] = {.lex_state = 56}, + [3098] = {.lex_state = 56}, + [3099] = {.lex_state = 56}, + [3100] = {.lex_state = 56}, + [3101] = {.lex_state = 56}, + [3102] = {.lex_state = 56}, + [3103] = {.lex_state = 56}, + [3104] = {.lex_state = 56}, + [3105] = {.lex_state = 56}, + [3106] = {.lex_state = 56}, + [3107] = {.lex_state = 36}, + [3108] = {.lex_state = 36}, + [3109] = {.lex_state = 64}, + [3110] = {.lex_state = 36}, + [3111] = {.lex_state = 63}, + [3112] = {.lex_state = 112}, + [3113] = {.lex_state = 63}, + [3114] = {.lex_state = 63}, + [3115] = {.lex_state = 63}, + [3116] = {.lex_state = 63}, + [3117] = {.lex_state = 63}, + [3118] = {.lex_state = 63}, + [3119] = {.lex_state = 63}, + [3120] = {.lex_state = 63}, + [3121] = {.lex_state = 112}, + [3122] = {.lex_state = 112}, + [3123] = {.lex_state = 112}, + [3124] = {.lex_state = 112}, + [3125] = {.lex_state = 112}, + [3126] = {.lex_state = 112}, + [3127] = {.lex_state = 112}, + [3128] = {.lex_state = 112}, + [3129] = {.lex_state = 112}, + [3130] = {.lex_state = 112}, + [3131] = {.lex_state = 112}, + [3132] = {.lex_state = 63}, + [3133] = {.lex_state = 63}, + [3134] = {.lex_state = 36}, + [3135] = {.lex_state = 36}, + [3136] = {.lex_state = 36}, + [3137] = {.lex_state = 58}, + [3138] = {.lex_state = 58}, + [3139] = {.lex_state = 58}, + [3140] = {.lex_state = 63}, + [3141] = {.lex_state = 63}, + [3142] = {.lex_state = 22}, + [3143] = {.lex_state = 61}, + [3144] = {.lex_state = 61}, + [3145] = {.lex_state = 58}, + [3146] = {.lex_state = 56}, + [3147] = {.lex_state = 56}, + [3148] = {.lex_state = 22}, + [3149] = {.lex_state = 56}, + [3150] = {.lex_state = 22}, + [3151] = {.lex_state = 55}, + [3152] = {.lex_state = 62}, + [3153] = {.lex_state = 112}, + [3154] = {.lex_state = 112}, + [3155] = {.lex_state = 112}, + [3156] = {.lex_state = 55}, + [3157] = {.lex_state = 55}, + [3158] = {.lex_state = 63}, + [3159] = {.lex_state = 111}, + [3160] = {.lex_state = 62}, + [3161] = {.lex_state = 62}, + [3162] = {.lex_state = 62}, + [3163] = {.lex_state = 111}, + [3164] = {.lex_state = 111}, + [3165] = {.lex_state = 62}, + [3166] = {.lex_state = 62}, + [3167] = {.lex_state = 62}, + [3168] = {.lex_state = 62}, + [3169] = {.lex_state = 62}, + [3170] = {.lex_state = 62}, + [3171] = {.lex_state = 62}, + [3172] = {.lex_state = 62}, + [3173] = {.lex_state = 55}, + [3174] = {.lex_state = 55}, + [3175] = {.lex_state = 55}, + [3176] = {.lex_state = 102}, + [3177] = {.lex_state = 111}, + [3178] = {.lex_state = 111}, + [3179] = {.lex_state = 121}, + [3180] = {.lex_state = 121}, + [3181] = {.lex_state = 111}, + [3182] = {.lex_state = 56}, + [3183] = {.lex_state = 113}, + [3184] = {.lex_state = 22}, + [3185] = {.lex_state = 56}, + [3186] = {.lex_state = 56}, + [3187] = {.lex_state = 64}, + [3188] = {.lex_state = 36}, + [3189] = {.lex_state = 112}, + [3190] = {.lex_state = 59}, + [3191] = {.lex_state = 64}, + [3192] = {.lex_state = 59}, + [3193] = {.lex_state = 16}, + [3194] = {.lex_state = 112}, + [3195] = {.lex_state = 112}, + [3196] = {.lex_state = 36}, + [3197] = {.lex_state = 64}, + [3198] = {.lex_state = 38}, + [3199] = {.lex_state = 102}, + [3200] = {.lex_state = 62}, + [3201] = {.lex_state = 20}, + [3202] = {.lex_state = 37}, + [3203] = {.lex_state = 56}, + [3204] = {.lex_state = 62}, + [3205] = {.lex_state = 113}, + [3206] = {.lex_state = 56}, + [3207] = {.lex_state = 63}, + [3208] = {.lex_state = 37}, + [3209] = {.lex_state = 56}, + [3210] = {.lex_state = 55}, + [3211] = {.lex_state = 55}, + [3212] = {.lex_state = 55}, + [3213] = {.lex_state = 20}, + [3214] = {.lex_state = 36}, + [3215] = {.lex_state = 64}, + [3216] = {.lex_state = 55}, + [3217] = {.lex_state = 111}, + [3218] = {.lex_state = 111}, + [3219] = {.lex_state = 111}, + [3220] = {.lex_state = 60}, + [3221] = {.lex_state = 112}, + [3222] = {.lex_state = 111}, + [3223] = {.lex_state = 112}, + [3224] = {.lex_state = 112}, + [3225] = {.lex_state = 64}, + [3226] = {.lex_state = 59}, + [3227] = {.lex_state = 39}, + [3228] = {.lex_state = 64}, + [3229] = {.lex_state = 39}, + [3230] = {.lex_state = 38}, + [3231] = {.lex_state = 111}, + [3232] = {.lex_state = 61}, + [3233] = {.lex_state = 56}, + [3234] = {.lex_state = 56}, + [3235] = {.lex_state = 56}, + [3236] = {.lex_state = 56}, + [3237] = {.lex_state = 55}, + [3238] = {.lex_state = 62}, + [3239] = {.lex_state = 112}, + [3240] = {.lex_state = 112}, + [3241] = {.lex_state = 112}, + [3242] = {.lex_state = 112}, + [3243] = {.lex_state = 20}, + [3244] = {.lex_state = 59}, + [3245] = {.lex_state = 111}, + [3246] = {.lex_state = 63}, + [3247] = {.lex_state = 121}, + [3248] = {.lex_state = 36}, + [3249] = {.lex_state = 56}, + [3250] = {.lex_state = 112}, + [3251] = {.lex_state = 59}, + [3252] = {.lex_state = 63}, + [3253] = {.lex_state = 59}, + [3254] = {.lex_state = 36}, + [3255] = {.lex_state = 36}, + [3256] = {.lex_state = 36}, + [3257] = {.lex_state = 36}, + [3258] = {.lex_state = 36}, + [3259] = {.lex_state = 36}, + [3260] = {.lex_state = 36}, + [3261] = {.lex_state = 36}, + [3262] = {.lex_state = 36}, + [3263] = {.lex_state = 36}, + [3264] = {.lex_state = 36}, + [3265] = {.lex_state = 36}, + [3266] = {.lex_state = 61}, + [3267] = {.lex_state = 59}, + [3268] = {.lex_state = 20}, + [3269] = {.lex_state = 61}, + [3270] = {.lex_state = 64}, + [3271] = {.lex_state = 59}, + [3272] = {.lex_state = 58}, + [3273] = {.lex_state = 58}, + [3274] = {.lex_state = 61}, + [3275] = {.lex_state = 63}, + [3276] = {.lex_state = 59}, + [3277] = {.lex_state = 38}, + [3278] = {.lex_state = 64}, + [3279] = {.lex_state = 64}, + [3280] = {.lex_state = 62}, + [3281] = {.lex_state = 64}, + [3282] = {.lex_state = 64}, + [3283] = {.lex_state = 61}, + [3284] = {.lex_state = 64}, + [3285] = {.lex_state = 64}, + [3286] = {.lex_state = 64}, + [3287] = {.lex_state = 64}, + [3288] = {.lex_state = 61}, + [3289] = {.lex_state = 64}, + [3290] = {.lex_state = 63}, + [3291] = {.lex_state = 63}, + [3292] = {.lex_state = 64}, + [3293] = {.lex_state = 64}, + [3294] = {.lex_state = 20}, + [3295] = {.lex_state = 35}, + [3296] = {.lex_state = 64}, + [3297] = {.lex_state = 59}, + [3298] = {.lex_state = 64}, + [3299] = {.lex_state = 64}, + [3300] = {.lex_state = 58}, + [3301] = {.lex_state = 36}, + [3302] = {.lex_state = 62}, + [3303] = {.lex_state = 36}, + [3304] = {.lex_state = 58}, + [3305] = {.lex_state = 59}, + [3306] = {.lex_state = 62}, + [3307] = {.lex_state = 63}, + [3308] = {.lex_state = 63}, + [3309] = {.lex_state = 63}, + [3310] = {.lex_state = 62}, + [3311] = {.lex_state = 39}, + [3312] = {.lex_state = 61}, + [3313] = {.lex_state = 57}, + [3314] = {.lex_state = 58}, + [3315] = {.lex_state = 36}, + [3316] = {.lex_state = 63}, + [3317] = {.lex_state = 62}, + [3318] = {.lex_state = 62}, + [3319] = {.lex_state = 20}, + [3320] = {.lex_state = 58}, + [3321] = {.lex_state = 61}, + [3322] = {.lex_state = 61}, + [3323] = {.lex_state = 61}, + [3324] = {.lex_state = 61}, + [3325] = {.lex_state = 61}, + [3326] = {.lex_state = 36}, + [3327] = {.lex_state = 36}, + [3328] = {.lex_state = 61}, + [3329] = {.lex_state = 61}, + [3330] = {.lex_state = 61}, + [3331] = {.lex_state = 61}, + [3332] = {.lex_state = 61}, + [3333] = {.lex_state = 61}, + [3334] = {.lex_state = 59}, + [3335] = {.lex_state = 59}, + [3336] = {.lex_state = 59}, + [3337] = {.lex_state = 59}, + [3338] = {.lex_state = 59}, + [3339] = {.lex_state = 59}, + [3340] = {.lex_state = 59}, + [3341] = {.lex_state = 59}, + [3342] = {.lex_state = 59}, + [3343] = {.lex_state = 59}, + [3344] = {.lex_state = 59}, + [3345] = {.lex_state = 16}, + [3346] = {.lex_state = 58}, + [3347] = {.lex_state = 102}, + [3348] = {.lex_state = 63}, + [3349] = {.lex_state = 63}, + [3350] = {.lex_state = 59}, + [3351] = {.lex_state = 59}, + [3352] = {.lex_state = 64}, + [3353] = {.lex_state = 59}, + [3354] = {.lex_state = 58}, + [3355] = {.lex_state = 117}, + [3356] = {.lex_state = 37}, + [3357] = {.lex_state = 58}, + [3358] = {.lex_state = 64}, + [3359] = {.lex_state = 58}, + [3360] = {.lex_state = 38}, + [3361] = {.lex_state = 16}, + [3362] = {.lex_state = 16}, + [3363] = {.lex_state = 61}, + [3364] = {.lex_state = 61}, + [3365] = {.lex_state = 117}, + [3366] = {.lex_state = 20}, + [3367] = {.lex_state = 64}, + [3368] = {.lex_state = 62}, + [3369] = {.lex_state = 62}, + [3370] = {.lex_state = 16}, + [3371] = {.lex_state = 36}, + [3372] = {.lex_state = 16}, + [3373] = {.lex_state = 62}, + [3374] = {.lex_state = 62}, + [3375] = {.lex_state = 62}, + [3376] = {.lex_state = 16}, + [3377] = {.lex_state = 16}, + [3378] = {.lex_state = 61}, + [3379] = {.lex_state = 36}, + [3380] = {.lex_state = 55}, + [3381] = {.lex_state = 55}, + [3382] = {.lex_state = 121}, + [3383] = {.lex_state = 62}, + [3384] = {.lex_state = 121}, + [3385] = {.lex_state = 121}, + [3386] = {.lex_state = 121}, + [3387] = {.lex_state = 59}, + [3388] = {.lex_state = 36}, + [3389] = {.lex_state = 36}, + [3390] = {.lex_state = 37}, + [3391] = {.lex_state = 58}, + [3392] = {.lex_state = 55}, + [3393] = {.lex_state = 59}, + [3394] = {.lex_state = 16}, + [3395] = {.lex_state = 35}, + [3396] = {.lex_state = 35}, + [3397] = {.lex_state = 59}, + [3398] = {.lex_state = 58}, + [3399] = {.lex_state = 58}, + [3400] = {.lex_state = 58}, + [3401] = {.lex_state = 58}, + [3402] = {.lex_state = 58}, + [3403] = {.lex_state = 58}, + [3404] = {.lex_state = 58}, + [3405] = {.lex_state = 58}, + [3406] = {.lex_state = 58}, + [3407] = {.lex_state = 58}, + [3408] = {.lex_state = 58}, + [3409] = {.lex_state = 59}, + [3410] = {.lex_state = 64}, + [3411] = {.lex_state = 16}, + [3412] = {.lex_state = 35}, + [3413] = {.lex_state = 16}, + [3414] = {.lex_state = 64}, + [3415] = {.lex_state = 16}, + [3416] = {.lex_state = 60}, + [3417] = {.lex_state = 16}, + [3418] = {.lex_state = 115}, + [3419] = {.lex_state = 57}, + [3420] = {.lex_state = 16}, + [3421] = {.lex_state = 57}, + [3422] = {.lex_state = 39}, + [3423] = {.lex_state = 57}, + [3424] = {.lex_state = 37}, + [3425] = {.lex_state = 57}, + [3426] = {.lex_state = 57}, + [3427] = {.lex_state = 16}, + [3428] = {.lex_state = 57}, + [3429] = {.lex_state = 57}, + [3430] = {.lex_state = 57}, + [3431] = {.lex_state = 57}, + [3432] = {.lex_state = 57}, + [3433] = {.lex_state = 57}, + [3434] = {.lex_state = 39}, + [3435] = {.lex_state = 57}, + [3436] = {.lex_state = 60}, + [3437] = {.lex_state = 102}, + [3438] = {.lex_state = 26}, + [3439] = {.lex_state = 57}, + [3440] = {.lex_state = 20}, + [3441] = {.lex_state = 113}, + [3442] = {.lex_state = 16}, + [3443] = {.lex_state = 60}, + [3444] = {.lex_state = 39}, + [3445] = {.lex_state = 115}, + [3446] = {.lex_state = 35}, + [3447] = {.lex_state = 57}, + [3448] = {.lex_state = 102}, + [3449] = {.lex_state = 37}, + [3450] = {.lex_state = 57}, + [3451] = {.lex_state = 115}, + [3452] = {.lex_state = 57}, + [3453] = {.lex_state = 16}, + [3454] = {.lex_state = 60}, + [3455] = {.lex_state = 16}, + [3456] = {.lex_state = 37}, + [3457] = {.lex_state = 37}, + [3458] = {.lex_state = 16}, + [3459] = {.lex_state = 60}, + [3460] = {.lex_state = 26}, + [3461] = {.lex_state = 102}, + [3462] = {.lex_state = 102}, + [3463] = {.lex_state = 35}, + [3464] = {.lex_state = 57}, + [3465] = {.lex_state = 16}, + [3466] = {.lex_state = 37}, + [3467] = {.lex_state = 37}, + [3468] = {.lex_state = 39}, + [3469] = {.lex_state = 113}, + [3470] = {.lex_state = 113}, + [3471] = {.lex_state = 20}, + [3472] = {.lex_state = 26}, + [3473] = {.lex_state = 35}, + [3474] = {.lex_state = 16}, + [3475] = {.lex_state = 26}, + [3476] = {.lex_state = 35}, + [3477] = {.lex_state = 16}, + [3478] = {.lex_state = 60}, + [3479] = {.lex_state = 26}, + [3480] = {.lex_state = 117}, + [3481] = {.lex_state = 37}, + [3482] = {.lex_state = 37}, + [3483] = {.lex_state = 26}, + [3484] = {.lex_state = 60}, + [3485] = {.lex_state = 26}, + [3486] = {.lex_state = 16}, + [3487] = {.lex_state = 38}, + [3488] = {.lex_state = 115}, + [3489] = {.lex_state = 26}, + [3490] = {.lex_state = 16}, + [3491] = {.lex_state = 16}, + [3492] = {.lex_state = 113}, + [3493] = {.lex_state = 60}, + [3494] = {.lex_state = 102}, + [3495] = {.lex_state = 16}, + [3496] = {.lex_state = 60}, + [3497] = {.lex_state = 60}, + [3498] = {.lex_state = 16}, + [3499] = {.lex_state = 102}, + [3500] = {.lex_state = 16}, + [3501] = {.lex_state = 38}, + [3502] = {.lex_state = 26}, + [3503] = {.lex_state = 102}, + [3504] = {.lex_state = 102}, + [3505] = {.lex_state = 26}, + [3506] = {.lex_state = 39}, + [3507] = {.lex_state = 102}, + [3508] = {.lex_state = 102}, + [3509] = {.lex_state = 102}, + [3510] = {.lex_state = 102}, + [3511] = {.lex_state = 113}, + [3512] = {.lex_state = 36}, + [3513] = {.lex_state = 38}, + [3514] = {.lex_state = 57}, + [3515] = {.lex_state = 37}, + [3516] = {.lex_state = 37}, + [3517] = {.lex_state = 38}, + [3518] = {.lex_state = 16}, + [3519] = {.lex_state = 26}, + [3520] = {.lex_state = 26}, + [3521] = {.lex_state = 16}, + [3522] = {.lex_state = 115}, + [3523] = {.lex_state = 37}, + [3524] = {.lex_state = 102}, + [3525] = {.lex_state = 115}, + [3526] = {.lex_state = 26}, + [3527] = {.lex_state = 26}, + [3528] = {.lex_state = 16}, + [3529] = {.lex_state = 16}, + [3530] = {.lex_state = 16}, + [3531] = {.lex_state = 16}, + [3532] = {.lex_state = 16}, + [3533] = {.lex_state = 20}, + [3534] = {.lex_state = 113}, + [3535] = {.lex_state = 16}, + [3536] = {.lex_state = 57}, + [3537] = {.lex_state = 22}, + [3538] = {.lex_state = 22}, + [3539] = {.lex_state = 22}, + [3540] = {.lex_state = 16}, + [3541] = {.lex_state = 57}, + [3542] = {.lex_state = 57}, + [3543] = {.lex_state = 37}, + [3544] = {.lex_state = 16}, + [3545] = {.lex_state = 39}, + [3546] = {.lex_state = 16}, + [3547] = {.lex_state = 16}, + [3548] = {.lex_state = 37}, + [3549] = {.lex_state = 16}, + [3550] = {.lex_state = 16}, + [3551] = {.lex_state = 22}, + [3552] = {.lex_state = 16}, + [3553] = {.lex_state = 57}, + [3554] = {.lex_state = 20}, + [3555] = {.lex_state = 38}, + [3556] = {.lex_state = 16}, + [3557] = {.lex_state = 16}, + [3558] = {.lex_state = 60}, + [3559] = {.lex_state = 37}, + [3560] = {.lex_state = 26}, + [3561] = {.lex_state = 26}, + [3562] = {.lex_state = 16}, + [3563] = {.lex_state = 16}, + [3564] = {.lex_state = 16}, + [3565] = {.lex_state = 16}, + [3566] = {.lex_state = 16}, + [3567] = {.lex_state = 16}, + [3568] = {.lex_state = 26}, + [3569] = {.lex_state = 26}, + [3570] = {.lex_state = 26}, + [3571] = {.lex_state = 60}, + [3572] = {.lex_state = 60}, + [3573] = {.lex_state = 60}, + [3574] = {.lex_state = 60}, + [3575] = {.lex_state = 60}, + [3576] = {.lex_state = 35}, + [3577] = {.lex_state = 60}, + [3578] = {.lex_state = 60}, + [3579] = {.lex_state = 60}, + [3580] = {.lex_state = 60}, + [3581] = {.lex_state = 60}, + [3582] = {.lex_state = 60}, + [3583] = {.lex_state = 26}, + [3584] = {.lex_state = 26}, + [3585] = {.lex_state = 26}, + [3586] = {.lex_state = 16}, + [3587] = {.lex_state = 60}, + [3588] = {.lex_state = 38}, + [3589] = {.lex_state = 38}, + [3590] = {.lex_state = 39}, + [3591] = {.lex_state = 60}, + [3592] = {.lex_state = 38}, + [3593] = {.lex_state = 16}, + [3594] = {.lex_state = 60}, + [3595] = {.lex_state = 57}, + [3596] = {.lex_state = 60}, + [3597] = {.lex_state = 36}, + [3598] = {.lex_state = 57}, + [3599] = {.lex_state = 57}, + [3600] = {.lex_state = 57}, + [3601] = {.lex_state = 60}, + [3602] = {.lex_state = 37}, + [3603] = {.lex_state = 60}, + [3604] = {.lex_state = 35}, + [3605] = {.lex_state = 57}, + [3606] = {.lex_state = 16}, + [3607] = {.lex_state = 117}, + [3608] = {.lex_state = 35}, + [3609] = {.lex_state = 35}, + [3610] = {.lex_state = 22}, + [3611] = {.lex_state = 38}, + [3612] = {.lex_state = 16}, + [3613] = {.lex_state = 39}, + [3614] = {.lex_state = 35}, + [3615] = {.lex_state = 35}, + [3616] = {.lex_state = 113}, + [3617] = {.lex_state = 18}, + [3618] = {.lex_state = 60}, + [3619] = {.lex_state = 35}, + [3620] = {.lex_state = 20}, + [3621] = {.lex_state = 35}, + [3622] = {.lex_state = 35}, + [3623] = {.lex_state = 16}, + [3624] = {.lex_state = 22}, + [3625] = {.lex_state = 20}, + [3626] = {.lex_state = 22}, + [3627] = {.lex_state = 60}, + [3628] = {.lex_state = 117}, + [3629] = {.lex_state = 60}, + [3630] = {.lex_state = 26}, + [3631] = {.lex_state = 113}, + [3632] = {.lex_state = 26}, + [3633] = {.lex_state = 26}, + [3634] = {.lex_state = 39}, + [3635] = {.lex_state = 39}, + [3636] = {.lex_state = 22}, + [3637] = {.lex_state = 16}, + [3638] = {.lex_state = 35}, + [3639] = {.lex_state = 20}, + [3640] = {.lex_state = 16}, + [3641] = {.lex_state = 60}, + [3642] = {.lex_state = 16}, + [3643] = {.lex_state = 26}, + [3644] = {.lex_state = 16}, + [3645] = {.lex_state = 38}, + [3646] = {.lex_state = 57}, + [3647] = {.lex_state = 39}, + [3648] = {.lex_state = 22}, + [3649] = {.lex_state = 16}, + [3650] = {.lex_state = 26}, + [3651] = {.lex_state = 20}, + [3652] = {.lex_state = 36}, + [3653] = {.lex_state = 38}, + [3654] = {.lex_state = 38}, + [3655] = {.lex_state = 26}, + [3656] = {.lex_state = 60}, + [3657] = {.lex_state = 26}, + [3658] = {.lex_state = 26}, + [3659] = {.lex_state = 16}, + [3660] = {.lex_state = 16}, + [3661] = {.lex_state = 16}, + [3662] = {.lex_state = 16}, + [3663] = {.lex_state = 16}, + [3664] = {.lex_state = 38}, + [3665] = {.lex_state = 57}, + [3666] = {.lex_state = 22}, + [3667] = {.lex_state = 16}, + [3668] = {.lex_state = 60}, + [3669] = {.lex_state = 57}, + [3670] = {.lex_state = 113}, + [3671] = {.lex_state = 36}, + [3672] = {.lex_state = 38}, + [3673] = {.lex_state = 16}, + [3674] = {.lex_state = 57}, + [3675] = {.lex_state = 16}, + [3676] = {.lex_state = 39}, + [3677] = {.lex_state = 16}, + [3678] = {.lex_state = 16}, + [3679] = {.lex_state = 57}, + [3680] = {.lex_state = 60}, + [3681] = {.lex_state = 16}, + [3682] = {.lex_state = 16}, + [3683] = {.lex_state = 16}, + [3684] = {.lex_state = 39}, + [3685] = {.lex_state = 16}, + [3686] = {.lex_state = 16}, + [3687] = {.lex_state = 102}, + [3688] = {.lex_state = 39}, + [3689] = {.lex_state = 115}, + [3690] = {.lex_state = 16}, + [3691] = {.lex_state = 39}, + [3692] = {.lex_state = 57}, + [3693] = {.lex_state = 16}, + [3694] = {.lex_state = 16}, + [3695] = {.lex_state = 36}, + [3696] = {.lex_state = 16}, + [3697] = {.lex_state = 36}, + [3698] = {.lex_state = 57}, + [3699] = {.lex_state = 26}, + [3700] = {.lex_state = 57}, + [3701] = {.lex_state = 102}, + [3702] = {.lex_state = 26}, + [3703] = {.lex_state = 22}, + [3704] = {.lex_state = 16}, + [3705] = {.lex_state = 16}, + [3706] = {.lex_state = 38}, + [3707] = {.lex_state = 16}, + [3708] = {.lex_state = 117}, + [3709] = {.lex_state = 16}, + [3710] = {.lex_state = 57}, + [3711] = {.lex_state = 35}, + [3712] = {.lex_state = 60}, + [3713] = {.lex_state = 60}, + [3714] = {.lex_state = 16}, + [3715] = {.lex_state = 27}, + [3716] = {.lex_state = 119}, + [3717] = {.lex_state = 36}, + [3718] = {.lex_state = 119}, + [3719] = {.lex_state = 119}, + [3720] = {.lex_state = 16}, + [3721] = {.lex_state = 16}, + [3722] = {.lex_state = 16}, + [3723] = {.lex_state = 36}, + [3724] = {.lex_state = 117}, + [3725] = {.lex_state = 16}, + [3726] = {.lex_state = 16}, + [3727] = {.lex_state = 36}, + [3728] = {.lex_state = 16}, + [3729] = {.lex_state = 22}, + [3730] = {.lex_state = 117}, + [3731] = {.lex_state = 16}, + [3732] = {.lex_state = 113}, + [3733] = {.lex_state = 16}, + [3734] = {.lex_state = 16}, + [3735] = {.lex_state = 16}, + [3736] = {.lex_state = 36}, + [3737] = {.lex_state = 16}, + [3738] = {.lex_state = 16}, + [3739] = {.lex_state = 16}, + [3740] = {.lex_state = 117}, + [3741] = {.lex_state = 113}, + [3742] = {.lex_state = 113}, + [3743] = {.lex_state = 36}, + [3744] = {.lex_state = 16}, + [3745] = {.lex_state = 113}, + [3746] = {.lex_state = 16}, + [3747] = {.lex_state = 16}, + [3748] = {.lex_state = 27}, + [3749] = {.lex_state = 16}, + [3750] = {.lex_state = 119}, + [3751] = {.lex_state = 16}, + [3752] = {.lex_state = 20}, + [3753] = {.lex_state = 113}, + [3754] = {.lex_state = 16}, + [3755] = {.lex_state = 113}, + [3756] = {.lex_state = 16}, + [3757] = {.lex_state = 27}, + [3758] = {.lex_state = 36}, + [3759] = {.lex_state = 22}, + [3760] = {.lex_state = 16}, + [3761] = {.lex_state = 36}, + [3762] = {.lex_state = 36}, + [3763] = {.lex_state = 16}, + [3764] = {.lex_state = 16}, + [3765] = {.lex_state = 22}, + [3766] = {.lex_state = 117}, + [3767] = {.lex_state = 22}, + [3768] = {.lex_state = 16}, + [3769] = {.lex_state = 22}, + [3770] = {.lex_state = 16}, + [3771] = {.lex_state = 36}, + [3772] = {.lex_state = 16}, + [3773] = {.lex_state = 16}, + [3774] = {.lex_state = 113}, + [3775] = {.lex_state = 16}, + [3776] = {.lex_state = 117}, + [3777] = {.lex_state = 16}, + [3778] = {.lex_state = 20}, + [3779] = {.lex_state = 117}, + [3780] = {.lex_state = 16}, + [3781] = {.lex_state = 113}, + [3782] = {.lex_state = 113}, + [3783] = {.lex_state = 16}, + [3784] = {.lex_state = 36}, + [3785] = {.lex_state = 113}, + [3786] = {.lex_state = 16}, + [3787] = {.lex_state = 16}, + [3788] = {.lex_state = 22}, + [3789] = {.lex_state = 16}, + [3790] = {.lex_state = 16}, + [3791] = {.lex_state = 36}, + [3792] = {.lex_state = 22}, + [3793] = {.lex_state = 16}, + [3794] = {.lex_state = 16}, + [3795] = {.lex_state = 16}, + [3796] = {.lex_state = 16}, + [3797] = {.lex_state = 16}, + [3798] = {.lex_state = 16}, + [3799] = {.lex_state = 22}, + [3800] = {.lex_state = 16}, + [3801] = {.lex_state = 16}, + [3802] = {.lex_state = 16}, + [3803] = {.lex_state = 113}, + [3804] = {.lex_state = 16}, + [3805] = {.lex_state = 22}, + [3806] = {.lex_state = 22}, + [3807] = {.lex_state = 16}, + [3808] = {.lex_state = 22}, + [3809] = {.lex_state = 16}, + [3810] = {.lex_state = 117}, + [3811] = {.lex_state = 16}, + [3812] = {.lex_state = 119}, + [3813] = {.lex_state = 22}, + [3814] = {.lex_state = 22}, + [3815] = {.lex_state = 36}, + [3816] = {.lex_state = 23}, + [3817] = {.lex_state = 16}, + [3818] = {.lex_state = 23}, + [3819] = {.lex_state = 22}, + [3820] = {.lex_state = 23}, + [3821] = {.lex_state = 23}, + [3822] = {.lex_state = 22}, + [3823] = {.lex_state = 22}, + [3824] = {.lex_state = 22}, + [3825] = {.lex_state = 20}, + [3826] = {.lex_state = 22}, + [3827] = {.lex_state = 22}, + [3828] = {.lex_state = 16}, + [3829] = {.lex_state = 22}, + [3830] = {.lex_state = 113}, + [3831] = {.lex_state = 16}, + [3832] = {.lex_state = 16}, + [3833] = {.lex_state = 23}, + [3834] = {.lex_state = 16}, + [3835] = {.lex_state = 23}, + [3836] = {.lex_state = 23}, + [3837] = {.lex_state = 23}, + [3838] = {.lex_state = 22}, + [3839] = {.lex_state = 22}, + [3840] = {.lex_state = 16}, + [3841] = {.lex_state = 16}, + [3842] = {.lex_state = 16}, + [3843] = {.lex_state = 16}, + [3844] = {.lex_state = 36}, + [3845] = {.lex_state = 16}, + [3846] = {.lex_state = 36}, + [3847] = {.lex_state = 27}, + [3848] = {.lex_state = 22}, + [3849] = {.lex_state = 113}, + [3850] = {.lex_state = 36}, + [3851] = {.lex_state = 16}, + [3852] = {.lex_state = 16}, + [3853] = {.lex_state = 16}, + [3854] = {.lex_state = 16}, + [3855] = {.lex_state = 16}, + [3856] = {.lex_state = 16}, + [3857] = {.lex_state = 16}, + [3858] = {.lex_state = 117}, + [3859] = {.lex_state = 113}, + [3860] = {.lex_state = 113}, + [3861] = {.lex_state = 113}, + [3862] = {.lex_state = 113}, + [3863] = {.lex_state = 16}, + [3864] = {.lex_state = 16}, + [3865] = {.lex_state = 16}, + [3866] = {.lex_state = 16}, + [3867] = {.lex_state = 16}, + [3868] = {.lex_state = 16}, + [3869] = {.lex_state = 16}, + [3870] = {.lex_state = 16}, + [3871] = {.lex_state = 16}, + [3872] = {.lex_state = 16}, + [3873] = {.lex_state = 113}, + [3874] = {.lex_state = 16}, + [3875] = {.lex_state = 113}, + [3876] = {.lex_state = 16}, + [3877] = {.lex_state = 16}, + [3878] = {.lex_state = 117}, + [3879] = {.lex_state = 16}, + [3880] = {.lex_state = 117}, + [3881] = {.lex_state = 119}, + [3882] = {.lex_state = 113}, + [3883] = {.lex_state = 119}, + [3884] = {.lex_state = 117}, + [3885] = {.lex_state = 119}, + [3886] = {.lex_state = 117}, + [3887] = {.lex_state = 117}, + [3888] = {.lex_state = 119}, + [3889] = {.lex_state = 117}, + [3890] = {.lex_state = 117}, + [3891] = {.lex_state = 113}, + [3892] = {.lex_state = 113}, + [3893] = {.lex_state = 113}, + [3894] = {.lex_state = 16}, + [3895] = {.lex_state = 16}, + [3896] = {.lex_state = 16}, + [3897] = {.lex_state = 16}, + [3898] = {.lex_state = 16}, + [3899] = {.lex_state = 16}, + [3900] = {.lex_state = 16}, + [3901] = {.lex_state = 16}, + [3902] = {.lex_state = 16}, + [3903] = {.lex_state = 16}, + [3904] = {.lex_state = 16}, + [3905] = {.lex_state = 16}, + [3906] = {.lex_state = 16}, + [3907] = {.lex_state = 16}, + [3908] = {.lex_state = 16}, + [3909] = {.lex_state = 16}, + [3910] = {.lex_state = 16}, + [3911] = {.lex_state = 16}, + [3912] = {.lex_state = 16}, + [3913] = {.lex_state = 16}, + [3914] = {.lex_state = 16}, + [3915] = {.lex_state = 16}, + [3916] = {.lex_state = 16}, + [3917] = {.lex_state = 16}, + [3918] = {.lex_state = 16}, + [3919] = {.lex_state = 16}, + [3920] = {.lex_state = 16}, + [3921] = {.lex_state = 16}, + [3922] = {.lex_state = 16}, + [3923] = {.lex_state = 16}, + [3924] = {.lex_state = 16}, + [3925] = {.lex_state = 16}, + [3926] = {.lex_state = 16}, + [3927] = {.lex_state = 16}, + [3928] = {.lex_state = 16}, + [3929] = {.lex_state = 16}, + [3930] = {.lex_state = 16}, + [3931] = {.lex_state = 16}, + [3932] = {.lex_state = 16}, + [3933] = {.lex_state = 16}, + [3934] = {.lex_state = 16}, + [3935] = {.lex_state = 16}, + [3936] = {.lex_state = 16}, + [3937] = {.lex_state = 16}, + [3938] = {.lex_state = 16}, + [3939] = {.lex_state = 16}, + [3940] = {.lex_state = 16}, + [3941] = {.lex_state = 16}, + [3942] = {.lex_state = 16}, + [3943] = {.lex_state = 16}, + [3944] = {.lex_state = 16}, + [3945] = {.lex_state = 16}, + [3946] = {.lex_state = 16}, + [3947] = {.lex_state = 16}, + [3948] = {.lex_state = 16}, + [3949] = {.lex_state = 16}, + [3950] = {.lex_state = 16}, + [3951] = {.lex_state = 16}, + [3952] = {.lex_state = 16}, + [3953] = {.lex_state = 16}, + [3954] = {.lex_state = 16}, + [3955] = {.lex_state = 16}, + [3956] = {.lex_state = 16}, + [3957] = {.lex_state = 16}, + [3958] = {.lex_state = 16}, + [3959] = {.lex_state = 16}, + [3960] = {.lex_state = 16}, + [3961] = {.lex_state = 16}, + [3962] = {.lex_state = 16}, + [3963] = {.lex_state = 16}, + [3964] = {.lex_state = 16}, + [3965] = {.lex_state = 16}, + [3966] = {.lex_state = 16}, + [3967] = {.lex_state = 16}, + [3968] = {.lex_state = 16}, + [3969] = {.lex_state = 16}, + [3970] = {.lex_state = 16}, + [3971] = {.lex_state = 16}, + [3972] = {.lex_state = 16}, + [3973] = {.lex_state = 16}, + [3974] = {.lex_state = 16}, + [3975] = {.lex_state = 16}, + [3976] = {.lex_state = 16}, + [3977] = {.lex_state = 16}, + [3978] = {.lex_state = 16}, + [3979] = {.lex_state = 16}, + [3980] = {.lex_state = 16}, + [3981] = {.lex_state = 16}, + [3982] = {.lex_state = 113}, + [3983] = {.lex_state = 113}, + [3984] = {.lex_state = 16}, + [3985] = {.lex_state = 16}, + [3986] = {.lex_state = 16}, + [3987] = {.lex_state = 16}, + [3988] = {.lex_state = 16}, + [3989] = {.lex_state = 113}, + [3990] = {.lex_state = 113}, + [3991] = {.lex_state = 16}, + [3992] = {.lex_state = 16}, + [3993] = {.lex_state = 113}, + [3994] = {.lex_state = 16}, + [3995] = {.lex_state = 16}, + [3996] = {.lex_state = 16}, + [3997] = {.lex_state = 16}, + [3998] = {.lex_state = 16}, + [3999] = {.lex_state = 16}, + [4000] = {.lex_state = 16}, + [4001] = {.lex_state = 113}, + [4002] = {.lex_state = 16}, + [4003] = {.lex_state = 16}, + [4004] = {.lex_state = 16}, + [4005] = {.lex_state = 16}, + [4006] = {.lex_state = 113}, + [4007] = {.lex_state = 16}, + [4008] = {.lex_state = 16}, + [4009] = {.lex_state = 113}, + [4010] = {.lex_state = 16}, + [4011] = {.lex_state = 16}, + [4012] = {.lex_state = 16}, + [4013] = {.lex_state = 16}, + [4014] = {.lex_state = 16}, + [4015] = {.lex_state = 16}, + [4016] = {.lex_state = 16}, + [4017] = {.lex_state = 16}, + [4018] = {.lex_state = 16}, + [4019] = {.lex_state = 16}, + [4020] = {.lex_state = 16}, + [4021] = {.lex_state = 16}, + [4022] = {.lex_state = 16}, + [4023] = {.lex_state = 16}, + [4024] = {.lex_state = 113}, + [4025] = {.lex_state = 113}, + [4026] = {.lex_state = 113}, + [4027] = {.lex_state = 113}, + [4028] = {.lex_state = 16}, + [4029] = {.lex_state = 113}, + [4030] = {.lex_state = 16}, + [4031] = {.lex_state = 16}, + [4032] = {.lex_state = 16}, + [4033] = {.lex_state = 16}, + [4034] = {.lex_state = 16}, + [4035] = {.lex_state = 113}, + [4036] = {.lex_state = 16}, + [4037] = {.lex_state = 16}, + [4038] = {.lex_state = 16}, + [4039] = {.lex_state = 16}, + [4040] = {.lex_state = 16}, + [4041] = {.lex_state = 113}, + [4042] = {.lex_state = 16}, + [4043] = {.lex_state = 113}, + [4044] = {.lex_state = 16}, + [4045] = {.lex_state = 16}, + [4046] = {.lex_state = 113}, + [4047] = {.lex_state = 113}, + [4048] = {.lex_state = 123}, + [4049] = {.lex_state = 123}, + [4050] = {.lex_state = 16}, + [4051] = {.lex_state = 16}, + [4052] = {.lex_state = 113}, + [4053] = {.lex_state = 113}, + [4054] = {.lex_state = 16}, + [4055] = {.lex_state = 16}, + [4056] = {.lex_state = 115}, + [4057] = {.lex_state = 113}, + [4058] = {.lex_state = 113}, + [4059] = {.lex_state = 113}, + [4060] = {.lex_state = 113}, + [4061] = {.lex_state = 16}, + [4062] = {.lex_state = 16}, + [4063] = {.lex_state = 16}, + [4064] = {.lex_state = 16}, + [4065] = {.lex_state = 16}, + [4066] = {.lex_state = 113}, + [4067] = {.lex_state = 113}, + [4068] = {.lex_state = 16}, + [4069] = {.lex_state = 123}, + [4070] = {.lex_state = 123}, + [4071] = {.lex_state = 123}, + [4072] = {.lex_state = 123}, + [4073] = {.lex_state = 123}, + [4074] = {.lex_state = 123}, + [4075] = {.lex_state = 113}, + [4076] = {.lex_state = 16}, + [4077] = {.lex_state = 16}, + [4078] = {.lex_state = 16}, + [4079] = {.lex_state = 113}, + [4080] = {.lex_state = 16}, + [4081] = {.lex_state = 16}, + [4082] = {.lex_state = 16}, + [4083] = {.lex_state = 16}, + [4084] = {.lex_state = 16}, + [4085] = {.lex_state = 16}, + [4086] = {.lex_state = 16}, + [4087] = {.lex_state = 16}, + [4088] = {.lex_state = 113}, + [4089] = {.lex_state = 16}, + [4090] = {.lex_state = 113}, + [4091] = {.lex_state = 16}, + [4092] = {.lex_state = 16}, + [4093] = {.lex_state = 16}, + [4094] = {.lex_state = 16}, + [4095] = {.lex_state = 123}, + [4096] = {.lex_state = 123}, + [4097] = {.lex_state = 113}, + [4098] = {.lex_state = 16}, + [4099] = {.lex_state = 113}, + [4100] = {.lex_state = 16}, + [4101] = {.lex_state = 123}, + [4102] = {.lex_state = 123}, + [4103] = {.lex_state = 123}, + [4104] = {.lex_state = 123}, + [4105] = {.lex_state = 123}, + [4106] = {.lex_state = 123}, + [4107] = {.lex_state = 113}, + [4108] = {.lex_state = 16}, + [4109] = {.lex_state = 113}, + [4110] = {.lex_state = 16}, + [4111] = {.lex_state = 16}, + [4112] = {.lex_state = 123}, + [4113] = {.lex_state = 123}, + [4114] = {.lex_state = 123}, + [4115] = {.lex_state = 123}, + [4116] = {.lex_state = 123}, + [4117] = {.lex_state = 123}, + [4118] = {.lex_state = 113}, + [4119] = {.lex_state = 113}, + [4120] = {.lex_state = 16}, + [4121] = {.lex_state = 123}, + [4122] = {.lex_state = 123}, + [4123] = {.lex_state = 113}, + [4124] = {.lex_state = 113}, + [4125] = {.lex_state = 16}, + [4126] = {.lex_state = 113}, + [4127] = {.lex_state = 123}, + [4128] = {.lex_state = 123}, + [4129] = {.lex_state = 123}, + [4130] = {.lex_state = 123}, + [4131] = {.lex_state = 123}, + [4132] = {.lex_state = 123}, + [4133] = {.lex_state = 113}, + [4134] = {.lex_state = 113}, + [4135] = {.lex_state = 16}, + [4136] = {.lex_state = 123}, + [4137] = {.lex_state = 119}, + [4138] = {.lex_state = 123}, + [4139] = {.lex_state = 113}, + [4140] = {.lex_state = 16}, + [4141] = {.lex_state = 16}, + [4142] = {.lex_state = 16}, + [4143] = {.lex_state = 16}, + [4144] = {.lex_state = 16}, + [4145] = {.lex_state = 16}, + [4146] = {.lex_state = 16}, + [4147] = {.lex_state = 16}, + [4148] = {.lex_state = 16}, + [4149] = {.lex_state = 113}, + [4150] = {.lex_state = 113}, + [4151] = {.lex_state = 16}, + [4152] = {.lex_state = 113}, + [4153] = {.lex_state = 113}, + [4154] = {.lex_state = 119}, + [4155] = {.lex_state = 16}, + [4156] = {.lex_state = 16}, + [4157] = {.lex_state = 16}, + [4158] = {.lex_state = 16}, + [4159] = {.lex_state = 16}, + [4160] = {.lex_state = 16}, + [4161] = {.lex_state = 16}, + [4162] = {.lex_state = 16}, + [4163] = {.lex_state = 113}, + [4164] = {.lex_state = 113}, + [4165] = {.lex_state = 16}, + [4166] = {.lex_state = 119}, + [4167] = {.lex_state = 113}, + [4168] = {.lex_state = 16}, + [4169] = {.lex_state = 16}, + [4170] = {.lex_state = 16}, + [4171] = {.lex_state = 16}, + [4172] = {.lex_state = 16}, + [4173] = {.lex_state = 16}, + [4174] = {.lex_state = 113}, + [4175] = {.lex_state = 113}, + [4176] = {.lex_state = 113}, + [4177] = {.lex_state = 113}, + [4178] = {.lex_state = 113}, + [4179] = {.lex_state = 113}, + [4180] = {.lex_state = 113}, + [4181] = {.lex_state = 113}, + [4182] = {.lex_state = 119}, + [4183] = {.lex_state = 119}, + [4184] = {.lex_state = 119}, + [4185] = {.lex_state = 119}, + [4186] = {.lex_state = 113}, + [4187] = {.lex_state = 113}, + [4188] = {.lex_state = 113}, + [4189] = {.lex_state = 113}, + [4190] = {.lex_state = 113}, + [4191] = {.lex_state = 17}, + [4192] = {.lex_state = 17}, + [4193] = {.lex_state = 113}, + [4194] = {.lex_state = 17}, + [4195] = {.lex_state = 17}, + [4196] = {.lex_state = 17}, + [4197] = {.lex_state = 17}, + [4198] = {.lex_state = 17}, + [4199] = {.lex_state = 17}, + [4200] = {.lex_state = 16}, + [4201] = {.lex_state = 16}, + [4202] = {.lex_state = 113}, + [4203] = {.lex_state = 81}, + [4204] = {.lex_state = 119}, + [4205] = {.lex_state = 113}, + [4206] = {.lex_state = 82}, + [4207] = {.lex_state = 113}, + [4208] = {.lex_state = 82}, + [4209] = {.lex_state = 119}, + [4210] = {.lex_state = 119}, + [4211] = {.lex_state = 113}, + [4212] = {.lex_state = 113}, + [4213] = {.lex_state = 113}, + [4214] = {.lex_state = 113}, + [4215] = {.lex_state = 82}, + [4216] = {.lex_state = 82}, + [4217] = {.lex_state = 113}, + [4218] = {.lex_state = 113}, + [4219] = {.lex_state = 113}, + [4220] = {.lex_state = 113}, + [4221] = {.lex_state = 119}, + [4222] = {.lex_state = 113}, + [4223] = {.lex_state = 119}, + [4224] = {.lex_state = 113}, + [4225] = {.lex_state = 124}, + [4226] = {.lex_state = 119}, + [4227] = {.lex_state = 113}, + [4228] = {.lex_state = 117}, + [4229] = {.lex_state = 113}, + [4230] = {.lex_state = 82}, + [4231] = {.lex_state = 82}, + [4232] = {.lex_state = 82}, + [4233] = {.lex_state = 113}, + [4234] = {.lex_state = 119}, + [4235] = {.lex_state = 113}, + [4236] = {.lex_state = 119}, + [4237] = {.lex_state = 119}, + [4238] = {.lex_state = 119}, + [4239] = {.lex_state = 113}, + [4240] = {.lex_state = 21}, + [4241] = {.lex_state = 113}, + [4242] = {.lex_state = 124}, + [4243] = {.lex_state = 119}, + [4244] = {.lex_state = 80}, + [4245] = {.lex_state = 119}, + [4246] = {.lex_state = 119}, + [4247] = {.lex_state = 119}, + [4248] = {.lex_state = 124}, + [4249] = {.lex_state = 80}, + [4250] = {.lex_state = 80}, + [4251] = {.lex_state = 113}, + [4252] = {.lex_state = 124}, + [4253] = {.lex_state = 113}, + [4254] = {.lex_state = 113}, + [4255] = {.lex_state = 80}, + [4256] = {.lex_state = 80}, + [4257] = {.lex_state = 113}, + [4258] = {.lex_state = 80}, + [4259] = {.lex_state = 80}, + [4260] = {.lex_state = 80}, + [4261] = {.lex_state = 117}, + [4262] = {.lex_state = 81}, + [4263] = {.lex_state = 113}, + [4264] = {.lex_state = 120}, + [4265] = {.lex_state = 113}, + [4266] = {.lex_state = 113}, + [4267] = {.lex_state = 120}, + [4268] = {.lex_state = 120}, + [4269] = {.lex_state = 120}, + [4270] = {.lex_state = 113}, + [4271] = {.lex_state = 120}, + [4272] = {.lex_state = 120}, + [4273] = {.lex_state = 120}, + [4274] = {.lex_state = 113}, + [4275] = {.lex_state = 113}, + [4276] = {.lex_state = 113}, + [4277] = {.lex_state = 113}, + [4278] = {.lex_state = 113}, + [4279] = {.lex_state = 120}, + [4280] = {.lex_state = 113}, + [4281] = {.lex_state = 81}, + [4282] = {.lex_state = 119}, + [4283] = {.lex_state = 119}, + [4284] = {.lex_state = 119}, + [4285] = {.lex_state = 119}, + [4286] = {.lex_state = 82}, + [4287] = {.lex_state = 81}, + [4288] = {.lex_state = 81}, + [4289] = {.lex_state = 119}, + [4290] = {.lex_state = 113}, + [4291] = {.lex_state = 113}, + [4292] = {.lex_state = 113}, + [4293] = {.lex_state = 113}, + [4294] = {.lex_state = 113}, + [4295] = {.lex_state = 113}, + [4296] = {.lex_state = 113}, + [4297] = {.lex_state = 113}, + [4298] = {.lex_state = 81}, + [4299] = {.lex_state = 113}, + [4300] = {.lex_state = 81}, + [4301] = {.lex_state = 117}, + [4302] = {.lex_state = 119}, + [4303] = {.lex_state = 113}, + [4304] = {.lex_state = 113}, + [4305] = {.lex_state = 81}, + [4306] = {.lex_state = 113}, + [4307] = {.lex_state = 119}, + [4308] = {.lex_state = 119}, + [4309] = {.lex_state = 113}, + [4310] = {.lex_state = 113}, + [4311] = {.lex_state = 113}, + [4312] = {.lex_state = 113}, + [4313] = {.lex_state = 119}, + [4314] = {.lex_state = 113}, + [4315] = {.lex_state = 113}, + [4316] = {.lex_state = 113}, + [4317] = {.lex_state = 113}, + [4318] = {.lex_state = 113}, + [4319] = {.lex_state = 113}, + [4320] = {.lex_state = 113}, + [4321] = {.lex_state = 113}, + [4322] = {.lex_state = 113}, + [4323] = {.lex_state = 113}, + [4324] = {.lex_state = 113}, + [4325] = {.lex_state = 113}, + [4326] = {.lex_state = 113}, + [4327] = {.lex_state = 113}, + [4328] = {.lex_state = 113}, + [4329] = {.lex_state = 113}, + [4330] = {.lex_state = 113}, + [4331] = {.lex_state = 113}, + [4332] = {.lex_state = 113}, + [4333] = {.lex_state = 113}, + [4334] = {.lex_state = 113}, + [4335] = {.lex_state = 113}, + [4336] = {.lex_state = 113}, + [4337] = {.lex_state = 113}, + [4338] = {.lex_state = 113}, + [4339] = {.lex_state = 65}, + [4340] = {.lex_state = 113}, + [4341] = {.lex_state = 68}, + [4342] = {.lex_state = 113}, + [4343] = {.lex_state = 65}, + [4344] = {.lex_state = 113}, + [4345] = {.lex_state = 65}, + [4346] = {.lex_state = 113}, + [4347] = {.lex_state = 113}, + [4348] = {.lex_state = 113}, + [4349] = {.lex_state = 113}, + [4350] = {.lex_state = 113}, + [4351] = {.lex_state = 65}, + [4352] = {.lex_state = 65}, + [4353] = {.lex_state = 65}, + [4354] = {.lex_state = 113}, + [4355] = {.lex_state = 65}, + [4356] = {.lex_state = 113}, + [4357] = {.lex_state = 113}, + [4358] = {.lex_state = 113}, + [4359] = {.lex_state = 65}, + [4360] = {.lex_state = 68}, + [4361] = {.lex_state = 68}, + [4362] = {.lex_state = 68}, + [4363] = {.lex_state = 113}, + [4364] = {.lex_state = 113}, + [4365] = {.lex_state = 113}, + [4366] = {.lex_state = 68}, + [4367] = {.lex_state = 113}, + [4368] = {.lex_state = 68}, + [4369] = {.lex_state = 68}, + [4370] = {.lex_state = 113}, + [4371] = {.lex_state = 113}, + [4372] = {.lex_state = 114}, + [4373] = {.lex_state = 114}, + [4374] = {.lex_state = 113}, + [4375] = {.lex_state = 113}, + [4376] = {.lex_state = 114}, + [4377] = {.lex_state = 113}, + [4378] = {.lex_state = 113}, + [4379] = {.lex_state = 114}, + [4380] = {.lex_state = 113}, + [4381] = {.lex_state = 113}, + [4382] = {.lex_state = 113}, + [4383] = {.lex_state = 113}, + [4384] = {.lex_state = 113}, + [4385] = {.lex_state = 113}, + [4386] = {.lex_state = 113}, + [4387] = {.lex_state = 113}, + [4388] = {.lex_state = 113}, + [4389] = {.lex_state = 113}, + [4390] = {.lex_state = 114}, + [4391] = {.lex_state = 113}, + [4392] = {.lex_state = 113}, + [4393] = {.lex_state = 114}, + [4394] = {.lex_state = 113}, + [4395] = {.lex_state = 114}, + [4396] = {.lex_state = 114}, + [4397] = {.lex_state = 113}, + [4398] = {.lex_state = 113}, + [4399] = {.lex_state = 113}, + [4400] = {.lex_state = 17}, + [4401] = {.lex_state = 17}, + [4402] = {.lex_state = 113}, + [4403] = {.lex_state = 113}, + [4404] = {.lex_state = 113}, + [4405] = {.lex_state = 113}, + [4406] = {.lex_state = 113}, + [4407] = {.lex_state = 69}, + [4408] = {.lex_state = 69}, + [4409] = {.lex_state = 113}, + [4410] = {.lex_state = 113}, + [4411] = {.lex_state = 113}, + [4412] = {.lex_state = 113}, + [4413] = {.lex_state = 113}, + [4414] = {.lex_state = 113}, + [4415] = {.lex_state = 113}, + [4416] = {.lex_state = 113}, + [4417] = {.lex_state = 113}, + [4418] = {.lex_state = 67}, + [4419] = {.lex_state = 113}, + [4420] = {.lex_state = 67}, + [4421] = {.lex_state = 113}, + [4422] = {.lex_state = 113}, + [4423] = {.lex_state = 113}, + [4424] = {.lex_state = 113}, + [4425] = {.lex_state = 113}, + [4426] = {.lex_state = 113}, + [4427] = {.lex_state = 69}, + [4428] = {.lex_state = 69}, + [4429] = {.lex_state = 113}, + [4430] = {.lex_state = 113}, + [4431] = {.lex_state = 113}, + [4432] = {.lex_state = 113}, + [4433] = {.lex_state = 113}, + [4434] = {.lex_state = 113}, + [4435] = {.lex_state = 113}, + [4436] = {.lex_state = 113}, + [4437] = {.lex_state = 67}, + [4438] = {.lex_state = 67}, + [4439] = {.lex_state = 67}, + [4440] = {.lex_state = 113}, + [4441] = {.lex_state = 67}, + [4442] = {.lex_state = 113}, + [4443] = {.lex_state = 113}, + [4444] = {.lex_state = 113}, + [4445] = {.lex_state = 113}, + [4446] = {.lex_state = 67}, + [4447] = {.lex_state = 113}, + [4448] = {.lex_state = 113}, + [4449] = {.lex_state = 113}, + [4450] = {.lex_state = 67}, + [4451] = {.lex_state = 113}, + [4452] = {.lex_state = 113}, + [4453] = {.lex_state = 113}, + [4454] = {.lex_state = 113}, + [4455] = {.lex_state = 113}, + [4456] = {.lex_state = 113}, + [4457] = {.lex_state = 113}, + [4458] = {.lex_state = 113}, + [4459] = {.lex_state = 113}, + [4460] = {.lex_state = 113}, + [4461] = {.lex_state = 113}, + [4462] = {.lex_state = 113}, + [4463] = {.lex_state = 113}, + [4464] = {.lex_state = 113}, + [4465] = {.lex_state = 113}, + [4466] = {.lex_state = 113}, + [4467] = {.lex_state = 113}, + [4468] = {.lex_state = 113}, + [4469] = {.lex_state = 113}, + [4470] = {.lex_state = 113}, + [4471] = {.lex_state = 113}, + [4472] = {.lex_state = 113}, + [4473] = {.lex_state = 113}, + [4474] = {.lex_state = 113}, + [4475] = {.lex_state = 113}, + [4476] = {.lex_state = 113}, + [4477] = {.lex_state = 113}, + [4478] = {.lex_state = 113}, + [4479] = {.lex_state = 113}, + [4480] = {.lex_state = 113}, + [4481] = {.lex_state = 113}, + [4482] = {.lex_state = 113}, + [4483] = {.lex_state = 113}, + [4484] = {.lex_state = 113}, + [4485] = {.lex_state = 113}, + [4486] = {.lex_state = 113}, + [4487] = {.lex_state = 113}, + [4488] = {.lex_state = 113}, + [4489] = {.lex_state = 113}, + [4490] = {.lex_state = 113}, + [4491] = {.lex_state = 113}, + [4492] = {.lex_state = 113}, + [4493] = {.lex_state = 113}, + [4494] = {.lex_state = 113}, + [4495] = {.lex_state = 113}, + [4496] = {.lex_state = 113}, + [4497] = {.lex_state = 113}, + [4498] = {.lex_state = 113}, + [4499] = {.lex_state = 113}, + [4500] = {.lex_state = 113}, + [4501] = {.lex_state = 113}, + [4502] = {.lex_state = 113}, + [4503] = {.lex_state = 113}, + [4504] = {.lex_state = 113}, + [4505] = {.lex_state = 113}, + [4506] = {.lex_state = 113}, + [4507] = {.lex_state = 113}, + [4508] = {.lex_state = 113}, + [4509] = {.lex_state = 113}, + [4510] = {.lex_state = 113}, + [4511] = {.lex_state = 113}, + [4512] = {.lex_state = 113}, + [4513] = {.lex_state = 113}, + [4514] = {.lex_state = 69}, + [4515] = {.lex_state = 69}, + [4516] = {.lex_state = 69}, + [4517] = {.lex_state = 69}, + [4518] = {.lex_state = 113}, + [4519] = {.lex_state = 113}, + [4520] = {.lex_state = 113}, + [4521] = {.lex_state = 113}, + [4522] = {.lex_state = 113}, + [4523] = {.lex_state = 113}, + [4524] = {.lex_state = 113}, + [4525] = {.lex_state = 113}, + [4526] = {.lex_state = 113}, + [4527] = {.lex_state = 113}, + [4528] = {.lex_state = 113}, + [4529] = {.lex_state = 113}, + [4530] = {.lex_state = 113}, + [4531] = {.lex_state = 113}, + [4532] = {.lex_state = 25}, + [4533] = {.lex_state = 25}, + [4534] = {.lex_state = 113}, + [4535] = {.lex_state = 113}, + [4536] = {.lex_state = 113}, + [4537] = {.lex_state = 113}, + [4538] = {.lex_state = 113}, + [4539] = {.lex_state = 113}, + [4540] = {.lex_state = 113}, + [4541] = {.lex_state = 113}, + [4542] = {.lex_state = 113}, + [4543] = {.lex_state = 113}, + [4544] = {.lex_state = 113}, + [4545] = {.lex_state = 113}, + [4546] = {.lex_state = 113}, + [4547] = {.lex_state = 113}, + [4548] = {.lex_state = 113}, + [4549] = {.lex_state = 113}, + [4550] = {.lex_state = 113}, + [4551] = {.lex_state = 113}, + [4552] = {.lex_state = 25}, + [4553] = {.lex_state = 113}, + [4554] = {.lex_state = 113}, + [4555] = {.lex_state = 113}, + [4556] = {.lex_state = 113}, + [4557] = {.lex_state = 113}, + [4558] = {.lex_state = 113}, + [4559] = {.lex_state = 113}, + [4560] = {.lex_state = 113}, + [4561] = {.lex_state = 113}, + [4562] = {.lex_state = 113}, + [4563] = {.lex_state = 113}, + [4564] = {.lex_state = 113}, + [4565] = {.lex_state = 113}, + [4566] = {.lex_state = 113}, + [4567] = {.lex_state = 113}, + [4568] = {.lex_state = 113}, + [4569] = {.lex_state = 113}, + [4570] = {.lex_state = 113}, + [4571] = {.lex_state = 113}, + [4572] = {.lex_state = 113}, + [4573] = {.lex_state = 21}, + [4574] = {.lex_state = 21}, + [4575] = {.lex_state = 25}, + [4576] = {.lex_state = 25}, + [4577] = {.lex_state = 25}, + [4578] = {.lex_state = 25}, + [4579] = {.lex_state = 113}, + [4580] = {.lex_state = 113}, + [4581] = {.lex_state = 113}, + [4582] = {.lex_state = 113}, + [4583] = {.lex_state = 113}, + [4584] = {.lex_state = 113}, + [4585] = {.lex_state = 113}, + [4586] = {.lex_state = 113}, + [4587] = {.lex_state = 113}, + [4588] = {.lex_state = 113}, + [4589] = {.lex_state = 113}, + [4590] = {.lex_state = 113}, + [4591] = {.lex_state = 113}, + [4592] = {.lex_state = 68}, + [4593] = {.lex_state = 19}, + [4594] = {.lex_state = 19}, + [4595] = {.lex_state = 66}, + [4596] = {.lex_state = 66}, + [4597] = {.lex_state = 66}, + [4598] = {.lex_state = 77}, + [4599] = {.lex_state = 17}, + [4600] = {.lex_state = 19}, + [4601] = {.lex_state = 19}, + [4602] = {.lex_state = 17}, + [4603] = {.lex_state = 17}, + [4604] = {.lex_state = 17}, + [4605] = {.lex_state = 75}, + [4606] = {.lex_state = 17}, + [4607] = {.lex_state = 17}, + [4608] = {.lex_state = 17}, + [4609] = {.lex_state = 19}, + [4610] = {.lex_state = 19}, + [4611] = {.lex_state = 79}, + [4612] = {.lex_state = 17}, + [4613] = {.lex_state = 17}, + [4614] = {.lex_state = 66}, + [4615] = {.lex_state = 78}, + [4616] = {.lex_state = 66}, + [4617] = {.lex_state = 118}, + [4618] = {.lex_state = 19}, + [4619] = {.lex_state = 66}, + [4620] = {.lex_state = 66}, + [4621] = {.lex_state = 66}, + [4622] = {.lex_state = 114}, + [4623] = {.lex_state = 122}, + [4624] = {.lex_state = 122}, + [4625] = {.lex_state = 122}, + [4626] = {.lex_state = 87}, + [4627] = {.lex_state = 68}, + [4628] = {.lex_state = 86}, + [4629] = {.lex_state = 21}, + [4630] = {.lex_state = 122}, + [4631] = {.lex_state = 17}, + [4632] = {.lex_state = 86}, + [4633] = {.lex_state = 67}, + [4634] = {.lex_state = 17}, + [4635] = {.lex_state = 77}, + [4636] = {.lex_state = 86}, + [4637] = {.lex_state = 67}, + [4638] = {.lex_state = 17}, + [4639] = {.lex_state = 83}, + [4640] = {.lex_state = 87}, + [4641] = {.lex_state = 83}, + [4642] = {.lex_state = 68}, + [4643] = {.lex_state = 122}, + [4644] = {.lex_state = 21}, + [4645] = {.lex_state = 23}, + [4646] = {.lex_state = 75}, + [4647] = {.lex_state = 23}, + [4648] = {.lex_state = 23}, + [4649] = {.lex_state = 78}, + [4650] = {.lex_state = 17}, + [4651] = {.lex_state = 69}, + [4652] = {.lex_state = 83}, + [4653] = {.lex_state = 79}, + [4654] = {.lex_state = 17}, + [4655] = {.lex_state = 122}, + [4656] = {.lex_state = 65}, + [4657] = {.lex_state = 77}, + [4658] = {.lex_state = 17}, + [4659] = {.lex_state = 83}, + [4660] = {.lex_state = 69}, + [4661] = {.lex_state = 65}, + [4662] = {.lex_state = 86}, + [4663] = {.lex_state = 23}, + [4664] = {.lex_state = 87}, + [4665] = {.lex_state = 17}, + [4666] = {.lex_state = 17}, + [4667] = {.lex_state = 79}, + [4668] = {.lex_state = 87}, + [4669] = {.lex_state = 78}, + [4670] = {.lex_state = 17}, + [4671] = {.lex_state = 118}, + [4672] = {.lex_state = 17}, + [4673] = {.lex_state = 83}, + [4674] = {.lex_state = 83}, + [4675] = {.lex_state = 85}, + [4676] = {.lex_state = 85}, + [4677] = {.lex_state = 75}, + [4678] = {.lex_state = 85}, + [4679] = {.lex_state = 17}, + [4680] = {.lex_state = 87}, + [4681] = {.lex_state = 87}, + [4682] = {.lex_state = 83}, + [4683] = {.lex_state = 87}, + [4684] = {.lex_state = 118}, + [4685] = {.lex_state = 86}, + [4686] = {.lex_state = 23}, + [4687] = {.lex_state = 114}, + [4688] = {.lex_state = 76}, + [4689] = {.lex_state = 85}, + [4690] = {.lex_state = 85}, + [4691] = {.lex_state = 85}, + [4692] = {.lex_state = 85}, + [4693] = {.lex_state = 86}, + [4694] = {.lex_state = 21}, + [4695] = {.lex_state = 86}, + [4696] = {.lex_state = 122}, + [4697] = {.lex_state = 70}, + [4698] = {.lex_state = 17}, + [4699] = {.lex_state = 17}, + [4700] = {.lex_state = 17}, + [4701] = {.lex_state = 114}, + [4702] = {.lex_state = 116}, + [4703] = {.lex_state = 116}, + [4704] = {.lex_state = 66}, + [4705] = {.lex_state = 74}, + [4706] = {.lex_state = 74}, + [4707] = {.lex_state = 74}, + [4708] = {.lex_state = 74}, + [4709] = {.lex_state = 114}, + [4710] = {.lex_state = 114}, + [4711] = {.lex_state = 17}, + [4712] = {.lex_state = 65}, + [4713] = {.lex_state = 76}, + [4714] = {.lex_state = 68}, + [4715] = {.lex_state = 65}, + [4716] = {.lex_state = 73}, + [4717] = {.lex_state = 73}, + [4718] = {.lex_state = 70}, + [4719] = {.lex_state = 70}, + [4720] = {.lex_state = 116}, + [4721] = {.lex_state = 116}, + [4722] = {.lex_state = 68}, + [4723] = {.lex_state = 68}, + [4724] = {.lex_state = 68}, + [4725] = {.lex_state = 68}, + [4726] = {.lex_state = 73}, + [4727] = {.lex_state = 73}, + [4728] = {.lex_state = 68}, + [4729] = {.lex_state = 84}, + [4730] = {.lex_state = 114}, + [4731] = {.lex_state = 69}, + [4732] = {.lex_state = 72}, + [4733] = {.lex_state = 67}, + [4734] = {.lex_state = 72}, + [4735] = {.lex_state = 72}, + [4736] = {.lex_state = 67}, + [4737] = {.lex_state = 67}, + [4738] = {.lex_state = 67}, + [4739] = {.lex_state = 67}, + [4740] = {.lex_state = 73}, + [4741] = {.lex_state = 73}, + [4742] = {.lex_state = 72}, + [4743] = {.lex_state = 72}, + [4744] = {.lex_state = 67}, + [4745] = {.lex_state = 65}, + [4746] = {.lex_state = 65}, + [4747] = {.lex_state = 65}, + [4748] = {.lex_state = 69}, + [4749] = {.lex_state = 17}, + [4750] = {.lex_state = 114}, + [4751] = {.lex_state = 114}, + [4752] = {.lex_state = 116}, + [4753] = {.lex_state = 116}, + [4754] = {.lex_state = 17}, + [4755] = {.lex_state = 114}, + [4756] = {.lex_state = 17}, + [4757] = {.lex_state = 114}, + [4758] = {.lex_state = 17}, + [4759] = {.lex_state = 114}, + [4760] = {.lex_state = 68}, + [4761] = {.lex_state = 68}, + [4762] = {.lex_state = 68}, + [4763] = {.lex_state = 72}, + [4764] = {.lex_state = 72}, + [4765] = {.lex_state = 17}, + [4766] = {.lex_state = 17}, + [4767] = {.lex_state = 69}, + [4768] = {.lex_state = 70}, + [4769] = {.lex_state = 69}, + [4770] = {.lex_state = 17}, + [4771] = {.lex_state = 17}, + [4772] = {.lex_state = 23}, + [4773] = {.lex_state = 69}, + [4774] = {.lex_state = 17}, + [4775] = {.lex_state = 23}, + [4776] = {.lex_state = 65}, + [4777] = {.lex_state = 23}, + [4778] = {.lex_state = 76}, + [4779] = {.lex_state = 116}, + [4780] = {.lex_state = 69}, + [4781] = {.lex_state = 84}, + [4782] = {.lex_state = 84}, + [4783] = {.lex_state = 23}, + [4784] = {.lex_state = 17}, + [4785] = {.lex_state = 17}, + [4786] = {.lex_state = 17}, + [4787] = {.lex_state = 17}, + [4788] = {.lex_state = 17}, + [4789] = {.lex_state = 17}, + [4790] = {.lex_state = 23}, + [4791] = {.lex_state = 17}, + [4792] = {.lex_state = 23}, + [4793] = {.lex_state = 17}, + [4794] = {.lex_state = 23}, + [4795] = {.lex_state = 17}, + [4796] = {.lex_state = 74}, + [4797] = {.lex_state = 17}, + [4798] = {.lex_state = 17}, + [4799] = {.lex_state = 17}, + [4800] = {.lex_state = 28}, + [4801] = {.lex_state = 28}, + [4802] = {.lex_state = 17}, + [4803] = {.lex_state = 17}, + [4804] = {.lex_state = 23}, + [4805] = {.lex_state = 23}, + [4806] = {.lex_state = 23}, + [4807] = {.lex_state = 19}, + [4808] = {.lex_state = 17}, + [4809] = {.lex_state = 17}, + [4810] = {.lex_state = 17}, + [4811] = {.lex_state = 17}, + [4812] = {.lex_state = 23}, + [4813] = {.lex_state = 17}, + [4814] = {.lex_state = 17}, + [4815] = {.lex_state = 28}, + [4816] = {.lex_state = 28}, + [4817] = {.lex_state = 28}, + [4818] = {.lex_state = 28}, + [4819] = {.lex_state = 28}, + [4820] = {.lex_state = 28}, + [4821] = {.lex_state = 17}, + [4822] = {.lex_state = 17}, + [4823] = {.lex_state = 84}, + [4824] = {.lex_state = 84}, + [4825] = {.lex_state = 84}, + [4826] = {.lex_state = 84}, + [4827] = {.lex_state = 17}, + [4828] = {.lex_state = 17}, + [4829] = {.lex_state = 28}, + [4830] = {.lex_state = 28}, + [4831] = {.lex_state = 17}, + [4832] = {.lex_state = 17}, + [4833] = {.lex_state = 28}, + [4834] = {.lex_state = 28}, + [4835] = {.lex_state = 28}, + [4836] = {.lex_state = 28}, + [4837] = {.lex_state = 28}, + [4838] = {.lex_state = 28}, + [4839] = {.lex_state = 17}, + [4840] = {.lex_state = 17}, + [4841] = {.lex_state = 28}, + [4842] = {.lex_state = 28}, + [4843] = {.lex_state = 28}, + [4844] = {.lex_state = 28}, + [4845] = {.lex_state = 28}, + [4846] = {.lex_state = 28}, + [4847] = {.lex_state = 17}, + [4848] = {.lex_state = 17}, + [4849] = {.lex_state = 28}, + [4850] = {.lex_state = 28}, + [4851] = {.lex_state = 17}, + [4852] = {.lex_state = 17}, + [4853] = {.lex_state = 17}, + [4854] = {.lex_state = 28}, + [4855] = {.lex_state = 28}, + [4856] = {.lex_state = 28}, + [4857] = {.lex_state = 28}, + [4858] = {.lex_state = 28}, + [4859] = {.lex_state = 28}, + [4860] = {.lex_state = 17}, + [4861] = {.lex_state = 17}, + [4862] = {.lex_state = 28}, + [4863] = {.lex_state = 28}, + [4864] = {.lex_state = 17}, + [4865] = {.lex_state = 17}, + [4866] = {.lex_state = 17}, + [4867] = {.lex_state = 17}, + [4868] = {.lex_state = 17}, + [4869] = {.lex_state = 17}, + [4870] = {.lex_state = 17}, + [4871] = {.lex_state = 17}, + [4872] = {.lex_state = 17}, + [4873] = {.lex_state = 17}, + [4874] = {.lex_state = 17}, + [4875] = {.lex_state = 17}, + [4876] = {.lex_state = 17}, + [4877] = {.lex_state = 70}, + [4878] = {.lex_state = 67}, + [4879] = {.lex_state = 69}, + [4880] = {.lex_state = 74}, + [4881] = {.lex_state = 74}, + [4882] = {.lex_state = 17}, + [4883] = {.lex_state = 17}, + [4884] = {.lex_state = 17}, + [4885] = {.lex_state = 65}, + [4886] = {.lex_state = 70}, + [4887] = {.lex_state = 70}, + [4888] = {.lex_state = 66}, + [4889] = {.lex_state = 65}, + [4890] = {.lex_state = 65}, + [4891] = {.lex_state = 17}, + [4892] = {.lex_state = 17}, + [4893] = {.lex_state = 17}, + [4894] = {.lex_state = 17}, + [4895] = {.lex_state = 17}, + [4896] = {.lex_state = 69}, + [4897] = {.lex_state = 69}, + [4898] = {.lex_state = 67}, + [4899] = {.lex_state = 67}, + [4900] = {.lex_state = 73}, + [4901] = {.lex_state = 81}, + [4902] = {.lex_state = 17}, + [4903] = {.lex_state = 80}, + [4904] = {.lex_state = 65}, + [4905] = {.lex_state = 80}, + [4906] = {.lex_state = 71}, + [4907] = {.lex_state = 80}, + [4908] = {.lex_state = 17}, + [4909] = {.lex_state = 17}, + [4910] = {.lex_state = 114}, + [4911] = {.lex_state = 17}, + [4912] = {.lex_state = 67}, + [4913] = {.lex_state = 67}, + [4914] = {.lex_state = 17}, + [4915] = {.lex_state = 17}, + [4916] = {.lex_state = 114}, + [4917] = {.lex_state = 17}, + [4918] = {.lex_state = 67}, + [4919] = {.lex_state = 17}, + [4920] = {.lex_state = 17}, + [4921] = {.lex_state = 17}, + [4922] = {.lex_state = 69}, + [4923] = {.lex_state = 67}, + [4924] = {.lex_state = 23}, + [4925] = {.lex_state = 114}, + [4926] = {.lex_state = 17}, + [4927] = {.lex_state = 17}, + [4928] = {.lex_state = 17}, + [4929] = {.lex_state = 17}, + [4930] = {.lex_state = 66}, + [4931] = {.lex_state = 78}, + [4932] = {.lex_state = 67}, + [4933] = {.lex_state = 17}, + [4934] = {.lex_state = 67}, + [4935] = {.lex_state = 114}, + [4936] = {.lex_state = 17}, + [4937] = {.lex_state = 82}, + [4938] = {.lex_state = 17}, + [4939] = {.lex_state = 78}, + [4940] = {.lex_state = 120}, + [4941] = {.lex_state = 17}, + [4942] = {.lex_state = 17}, + [4943] = {.lex_state = 80}, + [4944] = {.lex_state = 68}, + [4945] = {.lex_state = 23}, + [4946] = {.lex_state = 23}, + [4947] = {.lex_state = 23}, + [4948] = {.lex_state = 66}, + [4949] = {.lex_state = 68}, + [4950] = {.lex_state = 82}, + [4951] = {.lex_state = 68}, + [4952] = {.lex_state = 114}, + [4953] = {.lex_state = 68}, + [4954] = {.lex_state = 71}, + [4955] = {.lex_state = 78}, + [4956] = {.lex_state = 81}, + [4957] = {.lex_state = 66}, + [4958] = {.lex_state = 67}, + [4959] = {.lex_state = 17}, + [4960] = {.lex_state = 71}, + [4961] = {.lex_state = 17}, + [4962] = {.lex_state = 71}, + [4963] = {.lex_state = 81}, + [4964] = {.lex_state = 114}, + [4965] = {.lex_state = 114}, + [4966] = {.lex_state = 71}, + [4967] = {.lex_state = 68}, + [4968] = {.lex_state = 81}, + [4969] = {.lex_state = 17}, + [4970] = {.lex_state = 68}, + [4971] = {.lex_state = 66}, + [4972] = {.lex_state = 75}, + [4973] = {.lex_state = 68}, + [4974] = {.lex_state = 68}, + [4975] = {.lex_state = 68}, + [4976] = {.lex_state = 17}, + [4977] = {.lex_state = 81}, + [4978] = {.lex_state = 82}, + [4979] = {.lex_state = 69}, + [4980] = {.lex_state = 68}, + [4981] = {.lex_state = 17}, + [4982] = {.lex_state = 17}, + [4983] = {.lex_state = 17}, + [4984] = {.lex_state = 65}, + [4985] = {.lex_state = 17}, + [4986] = {.lex_state = 17}, + [4987] = {.lex_state = 17}, + [4988] = {.lex_state = 17}, + [4989] = {.lex_state = 65}, + [4990] = {.lex_state = 17}, + [4991] = {.lex_state = 75}, + [4992] = {.lex_state = 65}, + [4993] = {.lex_state = 65}, + [4994] = {.lex_state = 69}, + [4995] = {.lex_state = 75}, + [4996] = {.lex_state = 66}, + [4997] = {.lex_state = 120}, + [4998] = {.lex_state = 82}, + [4999] = {.lex_state = 77}, + [5000] = {.lex_state = 69}, + [5001] = {.lex_state = 65}, + [5002] = {.lex_state = 23}, + [5003] = {.lex_state = 23}, + [5004] = {.lex_state = 23}, + [5005] = {.lex_state = 23}, + [5006] = {.lex_state = 66}, + [5007] = {.lex_state = 17}, + [5008] = {.lex_state = 17}, + [5009] = {.lex_state = 17}, + [5010] = {.lex_state = 114}, + [5011] = {.lex_state = 77}, + [5012] = {.lex_state = 29}, + [5013] = {.lex_state = 69}, + [5014] = {.lex_state = 65}, + [5015] = {.lex_state = 17}, + [5016] = {.lex_state = 23}, + [5017] = {.lex_state = 23}, + [5018] = {.lex_state = 23}, + [5019] = {.lex_state = 114}, + [5020] = {.lex_state = 77}, + [5021] = {.lex_state = 23}, + [5022] = {.lex_state = 120}, + [5023] = {.lex_state = 118}, + [5024] = {.lex_state = 23}, + [5025] = {.lex_state = 17}, + [5026] = {.lex_state = 120}, + [5027] = {.lex_state = 17}, + [5028] = {.lex_state = 29}, + [5029] = {.lex_state = 23}, + [5030] = {.lex_state = 23}, + [5031] = {.lex_state = 23}, + [5032] = {.lex_state = 29}, + [5033] = {.lex_state = 29}, + [5034] = {.lex_state = 23}, + [5035] = {.lex_state = 17}, + [5036] = {.lex_state = 23}, + [5037] = {.lex_state = 23}, + [5038] = {.lex_state = 17}, + [5039] = {.lex_state = 65}, + [5040] = {.lex_state = 68}, + [5041] = {.lex_state = 17}, + [5042] = {.lex_state = 120}, + [5043] = {.lex_state = 65}, + [5044] = {.lex_state = 17}, + [5045] = {.lex_state = 17}, + [5046] = {.lex_state = 118}, + [5047] = {.lex_state = 23}, + [5048] = {.lex_state = 23}, + [5049] = {.lex_state = 23}, + [5050] = {.lex_state = 67}, + [5051] = {.lex_state = 118}, + [5052] = {.lex_state = 69}, + [5053] = {.lex_state = 69}, + [5054] = {.lex_state = 79}, + [5055] = {.lex_state = 17}, + [5056] = {.lex_state = 79}, + [5057] = {.lex_state = 17}, + [5058] = {.lex_state = 17}, + [5059] = {.lex_state = 17}, + [5060] = {.lex_state = 67}, + [5061] = {.lex_state = 17}, + [5062] = {.lex_state = 17}, + [5063] = {.lex_state = 71}, + [5064] = {.lex_state = 17}, + [5065] = {.lex_state = 69}, + [5066] = {.lex_state = 114}, + [5067] = {.lex_state = 82}, + [5068] = {.lex_state = 69}, + [5069] = {.lex_state = 69}, + [5070] = {.lex_state = 65}, + [5071] = {.lex_state = 66}, + [5072] = {.lex_state = 114}, + [5073] = {.lex_state = 66}, + [5074] = {.lex_state = 17}, + [5075] = {.lex_state = 71}, + [5076] = {.lex_state = 66}, + [5077] = {.lex_state = 17}, + [5078] = {.lex_state = 79}, + [5079] = {.lex_state = 17}, + [5080] = {.lex_state = 80}, + [5081] = {.lex_state = 17}, + [5082] = {.lex_state = 69}, + [5083] = {.lex_state = 67}, + [5084] = {.lex_state = 67}, + [5085] = {.lex_state = 65}, + [5086] = {.lex_state = 23}, + [5087] = {.lex_state = 69}, + [5088] = {.lex_state = 125}, + [5089] = {.lex_state = 125}, + [5090] = {.lex_state = 125}, + [5091] = {.lex_state = 125}, + [5092] = {.lex_state = 125}, + [5093] = {.lex_state = 68}, + [5094] = {.lex_state = 68}, + [5095] = {.lex_state = 67}, + [5096] = {.lex_state = 125}, + [5097] = {.lex_state = 67}, + [5098] = {.lex_state = 68}, + [5099] = {.lex_state = 67}, + [5100] = {.lex_state = 114}, + [5101] = {.lex_state = 67}, + [5102] = {.lex_state = 67}, + [5103] = {.lex_state = 88}, + [5104] = {.lex_state = 67}, + [5105] = {.lex_state = 114}, + [5106] = {.lex_state = 125}, + [5107] = {.lex_state = 125}, + [5108] = {.lex_state = 125}, + [5109] = {.lex_state = 125}, + [5110] = {.lex_state = 68}, + [5111] = {.lex_state = 68}, + [5112] = {.lex_state = 68}, + [5113] = {.lex_state = 68}, + [5114] = {.lex_state = 125}, + [5115] = {.lex_state = 67}, + [5116] = {.lex_state = 68}, + [5117] = {.lex_state = 125}, + [5118] = {.lex_state = 68}, + [5119] = {.lex_state = 69}, + [5120] = {.lex_state = 114}, + [5121] = {.lex_state = 67}, + [5122] = {.lex_state = 67}, + [5123] = {.lex_state = 114}, + [5124] = {.lex_state = 91}, + [5125] = {.lex_state = 91}, + [5126] = {.lex_state = 67}, + [5127] = {.lex_state = 68}, + [5128] = {.lex_state = 125}, + [5129] = {.lex_state = 125}, + [5130] = {.lex_state = 67}, + [5131] = {.lex_state = 114}, + [5132] = {.lex_state = 114}, + [5133] = {.lex_state = 114}, + [5134] = {.lex_state = 72}, + [5135] = {.lex_state = 67}, + [5136] = {.lex_state = 67}, + [5137] = {.lex_state = 67}, + [5138] = {.lex_state = 67}, + [5139] = {.lex_state = 88}, + [5140] = {.lex_state = 68}, + [5141] = {.lex_state = 69}, + [5142] = {.lex_state = 69}, + [5143] = {.lex_state = 67}, + [5144] = {.lex_state = 67}, + [5145] = {.lex_state = 91}, + [5146] = {.lex_state = 91}, + [5147] = {.lex_state = 91}, + [5148] = {.lex_state = 91}, + [5149] = {.lex_state = 91}, + [5150] = {.lex_state = 91}, + [5151] = {.lex_state = 65}, + [5152] = {.lex_state = 82}, + [5153] = {.lex_state = 67}, + [5154] = {.lex_state = 68}, + [5155] = {.lex_state = 67}, + [5156] = {.lex_state = 65}, + [5157] = {.lex_state = 125}, + [5158] = {.lex_state = 125}, + [5159] = {.lex_state = 67}, + [5160] = {.lex_state = 67}, + [5161] = {.lex_state = 125}, + [5162] = {.lex_state = 125}, + [5163] = {.lex_state = 125}, + [5164] = {.lex_state = 125}, + [5165] = {.lex_state = 114}, + [5166] = {.lex_state = 114}, + [5167] = {.lex_state = 91}, + [5168] = {.lex_state = 91}, + [5169] = {.lex_state = 67}, + [5170] = {.lex_state = 67}, + [5171] = {.lex_state = 69}, + [5172] = {.lex_state = 91}, + [5173] = {.lex_state = 91}, + [5174] = {.lex_state = 91}, + [5175] = {.lex_state = 91}, + [5176] = {.lex_state = 91}, + [5177] = {.lex_state = 91}, + [5178] = {.lex_state = 67}, + [5179] = {.lex_state = 67}, + [5180] = {.lex_state = 91}, + [5181] = {.lex_state = 91}, + [5182] = {.lex_state = 91}, + [5183] = {.lex_state = 91}, + [5184] = {.lex_state = 91}, + [5185] = {.lex_state = 91}, + [5186] = {.lex_state = 67}, + [5187] = {.lex_state = 67}, + [5188] = {.lex_state = 125}, + [5189] = {.lex_state = 125}, + [5190] = {.lex_state = 114}, + [5191] = {.lex_state = 91}, + [5192] = {.lex_state = 91}, + [5193] = {.lex_state = 65}, + [5194] = {.lex_state = 65}, + [5195] = {.lex_state = 65}, + [5196] = {.lex_state = 82}, + [5197] = {.lex_state = 65}, + [5198] = {.lex_state = 69}, + [5199] = {.lex_state = 67}, + [5200] = {.lex_state = 67}, + [5201] = {.lex_state = 67}, + [5202] = {.lex_state = 65}, + [5203] = {.lex_state = 91}, + [5204] = {.lex_state = 91}, + [5205] = {.lex_state = 91}, + [5206] = {.lex_state = 91}, + [5207] = {.lex_state = 91}, + [5208] = {.lex_state = 91}, + [5209] = {.lex_state = 67}, + [5210] = {.lex_state = 67}, + [5211] = {.lex_state = 65}, + [5212] = {.lex_state = 91}, + [5213] = {.lex_state = 82}, + [5214] = {.lex_state = 91}, + [5215] = {.lex_state = 67}, + [5216] = {.lex_state = 114}, + [5217] = {.lex_state = 97}, + [5218] = {.lex_state = 82}, + [5219] = {.lex_state = 97}, + [5220] = {.lex_state = 69}, + [5221] = {.lex_state = 69}, + [5222] = {.lex_state = 68}, + [5223] = {.lex_state = 114}, + [5224] = {.lex_state = 114}, + [5225] = {.lex_state = 88}, + [5226] = {.lex_state = 114}, + [5227] = {.lex_state = 67}, + [5228] = {.lex_state = 67}, + [5229] = {.lex_state = 114}, + [5230] = {.lex_state = 67}, + [5231] = {.lex_state = 88}, + [5232] = {.lex_state = 67}, + [5233] = {.lex_state = 88}, + [5234] = {.lex_state = 88}, + [5235] = {.lex_state = 88}, + [5236] = {.lex_state = 67}, + [5237] = {.lex_state = 67}, + [5238] = {.lex_state = 69}, + [5239] = {.lex_state = 67}, + [5240] = {.lex_state = 114}, + [5241] = {.lex_state = 114}, + [5242] = {.lex_state = 17}, + [5243] = {.lex_state = 68}, + [5244] = {.lex_state = 114}, + [5245] = {.lex_state = 114}, + [5246] = {.lex_state = 88}, + [5247] = {.lex_state = 114}, + [5248] = {.lex_state = 65}, + [5249] = {.lex_state = 65}, + [5250] = {.lex_state = 17}, + [5251] = {.lex_state = 17}, + [5252] = {.lex_state = 17}, + [5253] = {.lex_state = 17}, + [5254] = {.lex_state = 17}, + [5255] = {.lex_state = 67}, + [5256] = {.lex_state = 67}, + [5257] = {.lex_state = 67}, + [5258] = {.lex_state = 67}, + [5259] = {.lex_state = 67}, + [5260] = {.lex_state = 17}, + [5261] = {.lex_state = 114}, + [5262] = {.lex_state = 114}, + [5263] = {.lex_state = 114}, + [5264] = {.lex_state = 114}, + [5265] = {.lex_state = 114}, + [5266] = {.lex_state = 88}, + [5267] = {.lex_state = 88}, + [5268] = {.lex_state = 114}, + [5269] = {.lex_state = 97}, + [5270] = {.lex_state = 82}, + [5271] = {.lex_state = 82}, + [5272] = {.lex_state = 82}, + [5273] = {.lex_state = 67}, + [5274] = {.lex_state = 67}, + [5275] = {.lex_state = 17}, + [5276] = {.lex_state = 114}, + [5277] = {.lex_state = 114}, + [5278] = {.lex_state = 82}, + [5279] = {.lex_state = 67}, + [5280] = {.lex_state = 82}, + [5281] = {.lex_state = 65}, + [5282] = {.lex_state = 68}, + [5283] = {.lex_state = 97}, + [5284] = {.lex_state = 114}, + [5285] = {.lex_state = 114}, + [5286] = {.lex_state = 114}, + [5287] = {.lex_state = 114}, + [5288] = {.lex_state = 97}, + [5289] = {.lex_state = 65}, + [5290] = {.lex_state = 65}, + [5291] = {.lex_state = 97}, + [5292] = {.lex_state = 97}, + [5293] = {.lex_state = 17}, + [5294] = {.lex_state = 17}, + [5295] = {.lex_state = 17}, + [5296] = {.lex_state = 97}, + [5297] = {.lex_state = 97}, + [5298] = {.lex_state = 69}, + [5299] = {.lex_state = 114}, + [5300] = {.lex_state = 17}, + [5301] = {.lex_state = 65}, + [5302] = {.lex_state = 97}, + [5303] = {.lex_state = 88}, + [5304] = {.lex_state = 69}, + [5305] = {.lex_state = 69}, + [5306] = {.lex_state = 69}, + [5307] = {.lex_state = 114}, + [5308] = {.lex_state = 114}, + [5309] = {.lex_state = 67}, + [5310] = {.lex_state = 67}, + [5311] = {.lex_state = 67}, + [5312] = {.lex_state = 67}, + [5313] = {.lex_state = 69}, + [5314] = {.lex_state = 69}, + [5315] = {.lex_state = 125}, + [5316] = {.lex_state = 125}, + [5317] = {.lex_state = 97}, + [5318] = {.lex_state = 88}, + [5319] = {.lex_state = 97}, + [5320] = {.lex_state = 67}, + [5321] = {.lex_state = 68}, + [5322] = {.lex_state = 69}, + [5323] = {.lex_state = 81}, + [5324] = {.lex_state = 114}, + [5325] = {.lex_state = 17}, + [5326] = {.lex_state = 81}, + [5327] = {.lex_state = 69}, + [5328] = {.lex_state = 69}, + [5329] = {.lex_state = 114}, + [5330] = {.lex_state = 88}, + [5331] = {.lex_state = 97}, + [5332] = {.lex_state = 114}, + [5333] = {.lex_state = 97}, + [5334] = {.lex_state = 97}, + [5335] = {.lex_state = 97}, + [5336] = {.lex_state = 97}, + [5337] = {.lex_state = 97}, + [5338] = {.lex_state = 69}, + [5339] = {.lex_state = 114}, + [5340] = {.lex_state = 97}, + [5341] = {.lex_state = 97}, + [5342] = {.lex_state = 69}, + [5343] = {.lex_state = 88}, + [5344] = {.lex_state = 68}, + [5345] = {.lex_state = 81}, + [5346] = {.lex_state = 17}, + [5347] = {.lex_state = 69}, + [5348] = {.lex_state = 65}, + [5349] = {.lex_state = 88}, + [5350] = {.lex_state = 88}, + [5351] = {.lex_state = 88}, + [5352] = {.lex_state = 114}, + [5353] = {.lex_state = 88}, + [5354] = {.lex_state = 69}, + [5355] = {.lex_state = 67}, + [5356] = {.lex_state = 88}, + [5357] = {.lex_state = 65}, + [5358] = {.lex_state = 69}, + [5359] = {.lex_state = 68}, + [5360] = {.lex_state = 68}, + [5361] = {.lex_state = 114}, + [5362] = {.lex_state = 65}, + [5363] = {.lex_state = 65}, + [5364] = {.lex_state = 68}, + [5365] = {.lex_state = 88}, + [5366] = {.lex_state = 17}, + [5367] = {.lex_state = 65}, + [5368] = {.lex_state = 88}, + [5369] = {.lex_state = 65}, + [5370] = {.lex_state = 68}, + [5371] = {.lex_state = 88}, + [5372] = {.lex_state = 65}, + [5373] = {.lex_state = 65}, + [5374] = {.lex_state = 88}, + [5375] = {.lex_state = 82}, + [5376] = {.lex_state = 74}, + [5377] = {.lex_state = 69}, + [5378] = {.lex_state = 69}, + [5379] = {.lex_state = 68}, + [5380] = {.lex_state = 69}, + [5381] = {.lex_state = 114}, + [5382] = {.lex_state = 65}, + [5383] = {.lex_state = 65}, + [5384] = {.lex_state = 114}, + [5385] = {.lex_state = 65}, + [5386] = {.lex_state = 81}, + [5387] = {.lex_state = 97}, + [5388] = {.lex_state = 17}, + [5389] = {.lex_state = 17}, + [5390] = {.lex_state = 97}, + [5391] = {.lex_state = 114}, + [5392] = {.lex_state = 65}, + [5393] = {.lex_state = 81}, + [5394] = {.lex_state = 68}, + [5395] = {.lex_state = 68}, + [5396] = {.lex_state = 68}, + [5397] = {.lex_state = 68}, + [5398] = {.lex_state = 114}, + [5399] = {.lex_state = 69}, + [5400] = {.lex_state = 69}, + [5401] = {.lex_state = 116}, + [5402] = {.lex_state = 114}, + [5403] = {.lex_state = 114}, + [5404] = {.lex_state = 114}, + [5405] = {.lex_state = 114}, + [5406] = {.lex_state = 81}, + [5407] = {.lex_state = 114}, + [5408] = {.lex_state = 120}, + [5409] = {.lex_state = 68}, + [5410] = {.lex_state = 114}, + [5411] = {.lex_state = 69}, + [5412] = {.lex_state = 69}, + [5413] = {.lex_state = 69}, + [5414] = {.lex_state = 114}, + [5415] = {.lex_state = 65}, + [5416] = {.lex_state = 69}, + [5417] = {.lex_state = 81}, + [5418] = {.lex_state = 69}, + [5419] = {.lex_state = 65}, + [5420] = {.lex_state = 65}, + [5421] = {.lex_state = 66}, + [5422] = {.lex_state = 97}, + [5423] = {.lex_state = 97}, + [5424] = {.lex_state = 97}, + [5425] = {.lex_state = 97}, + [5426] = {.lex_state = 97}, + [5427] = {.lex_state = 97}, + [5428] = {.lex_state = 69}, + [5429] = {.lex_state = 69}, + [5430] = {.lex_state = 17}, + [5431] = {.lex_state = 69}, + [5432] = {.lex_state = 65}, + [5433] = {.lex_state = 114}, + [5434] = {.lex_state = 76}, + [5435] = {.lex_state = 65}, + [5436] = {.lex_state = 68}, + [5437] = {.lex_state = 65}, + [5438] = {.lex_state = 67}, + [5439] = {.lex_state = 65}, + [5440] = {.lex_state = 114}, + [5441] = {.lex_state = 67}, + [5442] = {.lex_state = 88}, + [5443] = {.lex_state = 67}, + [5444] = {.lex_state = 65}, + [5445] = {.lex_state = 65}, + [5446] = {.lex_state = 97}, + [5447] = {.lex_state = 65}, + [5448] = {.lex_state = 97}, + [5449] = {.lex_state = 69}, + [5450] = {.lex_state = 88}, + [5451] = {.lex_state = 17}, + [5452] = {.lex_state = 65}, + [5453] = {.lex_state = 65}, + [5454] = {.lex_state = 65}, + [5455] = {.lex_state = 114}, + [5456] = {.lex_state = 17}, + [5457] = {.lex_state = 17}, + [5458] = {.lex_state = 65}, + [5459] = {.lex_state = 65}, + [5460] = {.lex_state = 17}, + [5461] = {.lex_state = 65}, + [5462] = {.lex_state = 66}, + [5463] = {.lex_state = 114}, + [5464] = {.lex_state = 68}, + [5465] = {.lex_state = 114}, + [5466] = {.lex_state = 114}, + [5467] = {.lex_state = 80}, + [5468] = {.lex_state = 69}, + [5469] = {.lex_state = 69}, + [5470] = {.lex_state = 17}, + [5471] = {.lex_state = 17}, + [5472] = {.lex_state = 17}, + [5473] = {.lex_state = 66}, + [5474] = {.lex_state = 69}, + [5475] = {.lex_state = 69}, + [5476] = {.lex_state = 69}, + [5477] = {.lex_state = 97}, + [5478] = {.lex_state = 17}, + [5479] = {.lex_state = 69}, + [5480] = {.lex_state = 81}, + [5481] = {.lex_state = 81}, + [5482] = {.lex_state = 81}, + [5483] = {.lex_state = 68}, + [5484] = {.lex_state = 69}, + [5485] = {.lex_state = 69}, + [5486] = {.lex_state = 68}, + [5487] = {.lex_state = 80}, + [5488] = {.lex_state = 92}, + [5489] = {.lex_state = 92}, + [5490] = {.lex_state = 65}, + [5491] = {.lex_state = 81}, + [5492] = {.lex_state = 66}, + [5493] = {.lex_state = 65}, + [5494] = {.lex_state = 69}, + [5495] = {.lex_state = 17}, + [5496] = {.lex_state = 68}, + [5497] = {.lex_state = 17}, + [5498] = {.lex_state = 114}, + [5499] = {.lex_state = 17}, + [5500] = {.lex_state = 17}, + [5501] = {.lex_state = 17}, + [5502] = {.lex_state = 69}, + [5503] = {.lex_state = 65}, + [5504] = {.lex_state = 68}, + [5505] = {.lex_state = 17}, + [5506] = {.lex_state = 80}, + [5507] = {.lex_state = 114}, + [5508] = {.lex_state = 120}, + [5509] = {.lex_state = 69}, + [5510] = {.lex_state = 73}, + [5511] = {.lex_state = 68}, + [5512] = {.lex_state = 68}, + [5513] = {.lex_state = 17}, + [5514] = {.lex_state = 68}, + [5515] = {.lex_state = 69}, + [5516] = {.lex_state = 17}, + [5517] = {.lex_state = 68}, + [5518] = {.lex_state = 17}, + [5519] = {.lex_state = 17}, + [5520] = {.lex_state = 17}, + [5521] = {.lex_state = 17}, + [5522] = {.lex_state = 17}, + [5523] = {.lex_state = 17}, + [5524] = {.lex_state = 125}, + [5525] = {.lex_state = 125}, + [5526] = {.lex_state = 17}, + [5527] = {.lex_state = 68}, + [5528] = {.lex_state = 69}, + [5529] = {.lex_state = 68}, + [5530] = {.lex_state = 69}, + [5531] = {.lex_state = 457}, + [5532] = {.lex_state = 92}, + [5533] = {.lex_state = 92}, + [5534] = {.lex_state = 92}, + [5535] = {.lex_state = 92}, + [5536] = {.lex_state = 17}, + [5537] = {.lex_state = 92}, + [5538] = {.lex_state = 92}, + [5539] = {.lex_state = 17}, + [5540] = {.lex_state = 17}, + [5541] = {.lex_state = 17}, + [5542] = {.lex_state = 17}, + [5543] = {.lex_state = 17}, + [5544] = {.lex_state = 69}, + [5545] = {.lex_state = 17}, + [5546] = {.lex_state = 17}, + [5547] = {.lex_state = 69}, + [5548] = {.lex_state = 17}, + [5549] = {.lex_state = 69}, + [5550] = {.lex_state = 17}, + [5551] = {.lex_state = 17}, + [5552] = {.lex_state = 69}, + [5553] = {.lex_state = 69}, + [5554] = {.lex_state = 69}, + [5555] = {.lex_state = 67}, + [5556] = {.lex_state = 67}, + [5557] = {.lex_state = 66}, + [5558] = {.lex_state = 65}, + [5559] = {.lex_state = 68}, + [5560] = {.lex_state = 67}, + [5561] = {.lex_state = 120}, + [5562] = {.lex_state = 80}, + [5563] = {.lex_state = 69}, + [5564] = {.lex_state = 125}, + [5565] = {.lex_state = 125}, + [5566] = {.lex_state = 125}, + [5567] = {.lex_state = 17}, + [5568] = {.lex_state = 17}, + [5569] = {.lex_state = 17}, + [5570] = {.lex_state = 17}, + [5571] = {.lex_state = 17}, + [5572] = {.lex_state = 68}, + [5573] = {.lex_state = 69}, + [5574] = {.lex_state = 17}, + [5575] = {.lex_state = 125}, + [5576] = {.lex_state = 17}, + [5577] = {.lex_state = 17}, + [5578] = {.lex_state = 17}, + [5579] = {.lex_state = 66}, + [5580] = {.lex_state = 17}, + [5581] = {.lex_state = 17}, + [5582] = {.lex_state = 17}, + [5583] = {.lex_state = 68}, + [5584] = {.lex_state = 114}, + [5585] = {.lex_state = 68}, + [5586] = {.lex_state = 69}, + [5587] = {.lex_state = 114}, + [5588] = {.lex_state = 114}, + [5589] = {.lex_state = 67}, + [5590] = {.lex_state = 67}, + [5591] = {.lex_state = 17}, + [5592] = {.lex_state = 92}, + [5593] = {.lex_state = 92}, + [5594] = {.lex_state = 68}, + [5595] = {.lex_state = 17}, + [5596] = {.lex_state = 17}, + [5597] = {.lex_state = 17}, + [5598] = {.lex_state = 68}, + [5599] = {.lex_state = 114}, + [5600] = {.lex_state = 17}, + [5601] = {.lex_state = 17}, + [5602] = {.lex_state = 17}, + [5603] = {.lex_state = 17}, + [5604] = {.lex_state = 65}, + [5605] = {.lex_state = 65}, + [5606] = {.lex_state = 17}, + [5607] = {.lex_state = 17}, + [5608] = {.lex_state = 17}, + [5609] = {.lex_state = 17}, + [5610] = {.lex_state = 17}, + [5611] = {.lex_state = 66}, + [5612] = {.lex_state = 92}, + [5613] = {.lex_state = 92}, + [5614] = {.lex_state = 92}, + [5615] = {.lex_state = 92}, + [5616] = {.lex_state = 92}, + [5617] = {.lex_state = 92}, + [5618] = {.lex_state = 17}, + [5619] = {.lex_state = 17}, + [5620] = {.lex_state = 80}, + [5621] = {.lex_state = 67}, + [5622] = {.lex_state = 82}, + [5623] = {.lex_state = 80}, + [5624] = {.lex_state = 17}, + [5625] = {.lex_state = 80}, + [5626] = {.lex_state = 67}, + [5627] = {.lex_state = 68}, + [5628] = {.lex_state = 68}, + [5629] = {.lex_state = 65}, + [5630] = {.lex_state = 92}, + [5631] = {.lex_state = 92}, + [5632] = {.lex_state = 97}, + [5633] = {.lex_state = 67}, + [5634] = {.lex_state = 17}, + [5635] = {.lex_state = 120}, + [5636] = {.lex_state = 92}, + [5637] = {.lex_state = 120}, + [5638] = {.lex_state = 120}, + [5639] = {.lex_state = 92}, + [5640] = {.lex_state = 17}, + [5641] = {.lex_state = 17}, + [5642] = {.lex_state = 92}, + [5643] = {.lex_state = 17}, + [5644] = {.lex_state = 92}, + [5645] = {.lex_state = 17}, + [5646] = {.lex_state = 17}, + [5647] = {.lex_state = 68}, + [5648] = {.lex_state = 68}, + [5649] = {.lex_state = 17}, + [5650] = {.lex_state = 17}, + [5651] = {.lex_state = 17}, + [5652] = {.lex_state = 17}, + [5653] = {.lex_state = 17}, + [5654] = {.lex_state = 17}, + [5655] = {.lex_state = 17}, + [5656] = {.lex_state = 80}, + [5657] = {.lex_state = 80}, + [5658] = {.lex_state = 80}, + [5659] = {.lex_state = 80}, + [5660] = {.lex_state = 65}, + [5661] = {.lex_state = 65}, + [5662] = {.lex_state = 120}, + [5663] = {.lex_state = 120}, + [5664] = {.lex_state = 120}, + [5665] = {.lex_state = 120}, + [5666] = {.lex_state = 92}, + [5667] = {.lex_state = 17}, + [5668] = {.lex_state = 92}, + [5669] = {.lex_state = 17}, + [5670] = {.lex_state = 17}, + [5671] = {.lex_state = 17}, + [5672] = {.lex_state = 17}, + [5673] = {.lex_state = 17}, + [5674] = {.lex_state = 67}, + [5675] = {.lex_state = 17}, + [5676] = {.lex_state = 68}, + [5677] = {.lex_state = 68}, + [5678] = {.lex_state = 17}, + [5679] = {.lex_state = 17}, + [5680] = {.lex_state = 17}, + [5681] = {.lex_state = 17}, + [5682] = {.lex_state = 17}, + [5683] = {.lex_state = 68}, + [5684] = {.lex_state = 17}, + [5685] = {.lex_state = 17}, + [5686] = {.lex_state = 92}, + [5687] = {.lex_state = 17}, + [5688] = {.lex_state = 17}, + [5689] = {.lex_state = 17}, + [5690] = {.lex_state = 17}, + [5691] = {.lex_state = 17}, + [5692] = {.lex_state = 17}, + [5693] = {.lex_state = 17}, + [5694] = {.lex_state = 65}, + [5695] = {.lex_state = 66}, + [5696] = {.lex_state = 92}, + [5697] = {.lex_state = 92}, + [5698] = {.lex_state = 114}, + [5699] = {.lex_state = 92}, + [5700] = {.lex_state = 92}, + [5701] = {.lex_state = 17}, + [5702] = {.lex_state = 17}, + [5703] = {.lex_state = 17}, + [5704] = {.lex_state = 92}, + [5705] = {.lex_state = 17}, + [5706] = {.lex_state = 17}, + [5707] = {.lex_state = 68}, + [5708] = {.lex_state = 68}, + [5709] = {.lex_state = 17}, + [5710] = {.lex_state = 17}, + [5711] = {.lex_state = 17}, + [5712] = {.lex_state = 17}, + [5713] = {.lex_state = 17}, + [5714] = {.lex_state = 17}, + [5715] = {.lex_state = 17}, + [5716] = {.lex_state = 17}, + [5717] = {.lex_state = 92}, + [5718] = {.lex_state = 92}, + [5719] = {.lex_state = 17}, + [5720] = {.lex_state = 68}, + [5721] = {.lex_state = 17}, + [5722] = {.lex_state = 17}, + [5723] = {.lex_state = 17}, + [5724] = {.lex_state = 17}, + [5725] = {.lex_state = 17}, + [5726] = {.lex_state = 17}, + [5727] = {.lex_state = 17}, + [5728] = {.lex_state = 17}, + [5729] = {.lex_state = 17}, + [5730] = {.lex_state = 17}, + [5731] = {.lex_state = 17}, + [5732] = {.lex_state = 17}, + [5733] = {.lex_state = 17}, + [5734] = {.lex_state = 17}, + [5735] = {.lex_state = 17}, + [5736] = {.lex_state = 17}, + [5737] = {.lex_state = 17}, + [5738] = {.lex_state = 17}, + [5739] = {.lex_state = 17}, + [5740] = {.lex_state = 17}, + [5741] = {.lex_state = 17}, + [5742] = {.lex_state = 17}, + [5743] = {.lex_state = 17}, + [5744] = {.lex_state = 457}, + [5745] = {.lex_state = 66}, + [5746] = {.lex_state = 65}, + [5747] = {.lex_state = 65}, + [5748] = {.lex_state = 114}, + [5749] = {.lex_state = 66}, + [5750] = {.lex_state = 69}, + [5751] = {.lex_state = 68}, + [5752] = {.lex_state = 120}, + [5753] = {.lex_state = 68}, + [5754] = {.lex_state = 68}, + [5755] = {.lex_state = 67}, + [5756] = {.lex_state = 65}, + [5757] = {.lex_state = 68}, + [5758] = {.lex_state = 88}, + [5759] = {.lex_state = 69}, + [5760] = {.lex_state = 88}, + [5761] = {.lex_state = 114}, + [5762] = {.lex_state = 66}, + [5763] = {.lex_state = 76}, + [5764] = {.lex_state = 69}, + [5765] = {.lex_state = 88}, + [5766] = {.lex_state = 68}, + [5767] = {.lex_state = 69}, + [5768] = {.lex_state = 68}, + [5769] = {.lex_state = 68}, + [5770] = {.lex_state = 67}, + [5771] = {.lex_state = 68}, + [5772] = {.lex_state = 88}, + [5773] = {.lex_state = 125}, + [5774] = {.lex_state = 67}, + [5775] = {.lex_state = 65}, + [5776] = {.lex_state = 68}, + [5777] = {.lex_state = 65}, + [5778] = {.lex_state = 65}, + [5779] = {.lex_state = 66}, + [5780] = {.lex_state = 125}, + [5781] = {.lex_state = 65}, + [5782] = {.lex_state = 114}, + [5783] = {.lex_state = 69}, + [5784] = {.lex_state = 65}, + [5785] = {.lex_state = 17}, + [5786] = {.lex_state = 68}, + [5787] = {.lex_state = 68}, + [5788] = {.lex_state = 65}, + [5789] = {.lex_state = 68}, + [5790] = {.lex_state = 68}, + [5791] = {.lex_state = 68}, + [5792] = {.lex_state = 65}, + [5793] = {.lex_state = 65}, + [5794] = {.lex_state = 88}, + [5795] = {.lex_state = 88}, + [5796] = {.lex_state = 114}, + [5797] = {.lex_state = 65}, + [5798] = {.lex_state = 65}, + [5799] = {.lex_state = 76}, + [5800] = {.lex_state = 88}, + [5801] = {.lex_state = 69}, + [5802] = {.lex_state = 69}, + [5803] = {.lex_state = 70}, + [5804] = {.lex_state = 65}, + [5805] = {.lex_state = 65}, + [5806] = {.lex_state = 65}, + [5807] = {.lex_state = 65}, + [5808] = {.lex_state = 69}, + [5809] = {.lex_state = 69}, + [5810] = {.lex_state = 66}, + [5811] = {.lex_state = 80}, + [5812] = {.lex_state = 65}, + [5813] = {.lex_state = 81}, + [5814] = {.lex_state = 114}, + [5815] = {.lex_state = 80}, + [5816] = {.lex_state = 90}, + [5817] = {.lex_state = 90}, + [5818] = {.lex_state = 90}, + [5819] = {.lex_state = 65}, + [5820] = {.lex_state = 90}, + [5821] = {.lex_state = 80}, + [5822] = {.lex_state = 80}, + [5823] = {.lex_state = 65}, + [5824] = {.lex_state = 66}, + [5825] = {.lex_state = 66}, + [5826] = {.lex_state = 114}, + [5827] = {.lex_state = 80}, + [5828] = {.lex_state = 68}, + [5829] = {.lex_state = 90}, + [5830] = {.lex_state = 68}, + [5831] = {.lex_state = 80}, + [5832] = {.lex_state = 80}, + [5833] = {.lex_state = 69}, + [5834] = {.lex_state = 68}, + [5835] = {.lex_state = 69}, + [5836] = {.lex_state = 69}, + [5837] = {.lex_state = 114}, + [5838] = {.lex_state = 114}, + [5839] = {.lex_state = 67}, + [5840] = {.lex_state = 66}, + [5841] = {.lex_state = 82}, + [5842] = {.lex_state = 69}, + [5843] = {.lex_state = 69}, + [5844] = {.lex_state = 66}, + [5845] = {.lex_state = 114}, + [5846] = {.lex_state = 69}, + [5847] = {.lex_state = 69}, + [5848] = {.lex_state = 69}, + [5849] = {.lex_state = 67}, + [5850] = {.lex_state = 114}, + [5851] = {.lex_state = 71}, + [5852] = {.lex_state = 66}, + [5853] = {.lex_state = 67}, + [5854] = {.lex_state = 66}, + [5855] = {.lex_state = 67}, + [5856] = {.lex_state = 66}, + [5857] = {.lex_state = 66}, + [5858] = {.lex_state = 68}, + [5859] = {.lex_state = 114}, + [5860] = {.lex_state = 66}, + [5861] = {.lex_state = 68}, + [5862] = {.lex_state = 67}, + [5863] = {.lex_state = 67}, + [5864] = {.lex_state = 68}, + [5865] = {.lex_state = 65}, + [5866] = {.lex_state = 82}, + [5867] = {.lex_state = 67}, + [5868] = {.lex_state = 68}, + [5869] = {.lex_state = 69}, + [5870] = {.lex_state = 69}, + [5871] = {.lex_state = 82}, + [5872] = {.lex_state = 69}, + [5873] = {.lex_state = 67}, + [5874] = {.lex_state = 66}, + [5875] = {.lex_state = 67}, + [5876] = {.lex_state = 67}, + [5877] = {.lex_state = 114}, + [5878] = {.lex_state = 82}, + [5879] = {.lex_state = 66}, + [5880] = {.lex_state = 126}, + [5881] = {.lex_state = 90}, + [5882] = {.lex_state = 67}, + [5883] = {.lex_state = 81}, + [5884] = {.lex_state = 81}, + [5885] = {.lex_state = 65}, + [5886] = {.lex_state = 114}, + [5887] = {.lex_state = 90}, + [5888] = {.lex_state = 114}, + [5889] = {.lex_state = 114}, + [5890] = {.lex_state = 114}, + [5891] = {.lex_state = 66}, + [5892] = {.lex_state = 81}, + [5893] = {.lex_state = 82}, + [5894] = {.lex_state = 82}, + [5895] = {.lex_state = 67}, + [5896] = {.lex_state = 114}, + [5897] = {.lex_state = 65}, + [5898] = {.lex_state = 81}, + [5899] = {.lex_state = 81}, + [5900] = {.lex_state = 114}, + [5901] = {.lex_state = 81}, + [5902] = {.lex_state = 68}, + [5903] = {.lex_state = 126}, + [5904] = {.lex_state = 66}, + [5905] = {.lex_state = 65}, + [5906] = {.lex_state = 89}, + [5907] = {.lex_state = 82}, + [5908] = {.lex_state = 65}, + [5909] = {.lex_state = 65}, + [5910] = {.lex_state = 67}, + [5911] = {.lex_state = 66}, + [5912] = {.lex_state = 67}, + [5913] = {.lex_state = 66}, + [5914] = {.lex_state = 66}, + [5915] = {.lex_state = 82}, + [5916] = {.lex_state = 67}, + [5917] = {.lex_state = 69}, + [5918] = {.lex_state = 89}, + [5919] = {.lex_state = 82}, + [5920] = {.lex_state = 120}, + [5921] = {.lex_state = 66}, + [5922] = {.lex_state = 82}, + [5923] = {.lex_state = 90}, + [5924] = {.lex_state = 90}, + [5925] = {.lex_state = 82}, + [5926] = {.lex_state = 89}, + [5927] = {.lex_state = 82}, + [5928] = {.lex_state = 67}, + [5929] = {.lex_state = 66}, + [5930] = {.lex_state = 90}, + [5931] = {.lex_state = 114}, + [5932] = {.lex_state = 90}, + [5933] = {.lex_state = 90}, + [5934] = {.lex_state = 68}, + [5935] = {.lex_state = 68}, + [5936] = {.lex_state = 65}, + [5937] = {.lex_state = 90}, + [5938] = {.lex_state = 90}, + [5939] = {.lex_state = 68}, + [5940] = {.lex_state = 82}, + [5941] = {.lex_state = 90}, + [5942] = {.lex_state = 120}, + [5943] = {.lex_state = 68}, + [5944] = {.lex_state = 67}, + [5945] = {.lex_state = 90}, + [5946] = {.lex_state = 120}, + [5947] = {.lex_state = 66}, + [5948] = {.lex_state = 120}, + [5949] = {.lex_state = 120}, + [5950] = {.lex_state = 120}, + [5951] = {.lex_state = 120}, + [5952] = {.lex_state = 67}, + [5953] = {.lex_state = 114}, + [5954] = {.lex_state = 114}, + [5955] = {.lex_state = 67}, + [5956] = {.lex_state = 65}, + [5957] = {.lex_state = 69}, + [5958] = {.lex_state = 80}, + [5959] = {.lex_state = 68}, + [5960] = {.lex_state = 65}, + [5961] = {.lex_state = 120}, + [5962] = {.lex_state = 66}, + [5963] = {.lex_state = 69}, + [5964] = {.lex_state = 66}, + [5965] = {.lex_state = 114}, + [5966] = {.lex_state = 66}, + [5967] = {.lex_state = 68}, + [5968] = {.lex_state = 68}, + [5969] = {.lex_state = 69}, + [5970] = {.lex_state = 69}, + [5971] = {.lex_state = 69}, + [5972] = {.lex_state = 68}, + [5973] = {.lex_state = 65}, + [5974] = {.lex_state = 90}, + [5975] = {.lex_state = 90}, + [5976] = {.lex_state = 67}, + [5977] = {.lex_state = 90}, + [5978] = {.lex_state = 90}, + [5979] = {.lex_state = 68}, + [5980] = {.lex_state = 90}, + [5981] = {.lex_state = 90}, + [5982] = {.lex_state = 68}, + [5983] = {.lex_state = 68}, + [5984] = {.lex_state = 80}, + [5985] = {.lex_state = 114}, + [5986] = {.lex_state = 114}, + [5987] = {.lex_state = 68}, + [5988] = {.lex_state = 66}, + [5989] = {.lex_state = 68}, + [5990] = {.lex_state = 80}, + [5991] = {.lex_state = 82}, + [5992] = {.lex_state = 68}, + [5993] = {.lex_state = 82}, + [5994] = {.lex_state = 65}, + [5995] = {.lex_state = 65}, + [5996] = {.lex_state = 65}, + [5997] = {.lex_state = 66}, + [5998] = {.lex_state = 69}, + [5999] = {.lex_state = 68}, + [6000] = {.lex_state = 68}, + [6001] = {.lex_state = 114}, + [6002] = {.lex_state = 68}, + [6003] = {.lex_state = 69}, + [6004] = {.lex_state = 120}, + [6005] = {.lex_state = 68}, + [6006] = {.lex_state = 120}, + [6007] = {.lex_state = 120}, + [6008] = {.lex_state = 65}, + [6009] = {.lex_state = 90}, + [6010] = {.lex_state = 66}, + [6011] = {.lex_state = 114}, + [6012] = {.lex_state = 67}, + [6013] = {.lex_state = 65}, + [6014] = {.lex_state = 65}, + [6015] = {.lex_state = 68}, + [6016] = {.lex_state = 68}, + [6017] = {.lex_state = 120}, + [6018] = {.lex_state = 96}, + [6019] = {.lex_state = 65}, + [6020] = {.lex_state = 67}, + [6021] = {.lex_state = 67}, + [6022] = {.lex_state = 66}, + [6023] = {.lex_state = 67}, + [6024] = {.lex_state = 65}, + [6025] = {.lex_state = 66}, + [6026] = {.lex_state = 67}, + [6027] = {.lex_state = 67}, + [6028] = {.lex_state = 66}, + [6029] = {.lex_state = 69}, + [6030] = {.lex_state = 66}, + [6031] = {.lex_state = 66}, + [6032] = {.lex_state = 114}, + [6033] = {.lex_state = 81}, + [6034] = {.lex_state = 114}, + [6035] = {.lex_state = 68}, + [6036] = {.lex_state = 68}, + [6037] = {.lex_state = 69}, + [6038] = {.lex_state = 66}, + [6039] = {.lex_state = 126}, + [6040] = {.lex_state = 69}, + [6041] = {.lex_state = 69}, + [6042] = {.lex_state = 82}, + [6043] = {.lex_state = 69}, + [6044] = {.lex_state = 114}, + [6045] = {.lex_state = 67}, + [6046] = {.lex_state = 114}, + [6047] = {.lex_state = 66}, + [6048] = {.lex_state = 114}, + [6049] = {.lex_state = 66}, + [6050] = {.lex_state = 68}, + [6051] = {.lex_state = 66}, + [6052] = {.lex_state = 66}, + [6053] = {.lex_state = 94}, + [6054] = {.lex_state = 65}, + [6055] = {.lex_state = 67}, + [6056] = {.lex_state = 66}, + [6057] = {.lex_state = 67}, + [6058] = {.lex_state = 90}, + [6059] = {.lex_state = 81}, + [6060] = {.lex_state = 114}, + [6061] = {.lex_state = 69}, + [6062] = {.lex_state = 90}, + [6063] = {.lex_state = 114}, + [6064] = {.lex_state = 114}, + [6065] = {.lex_state = 65}, + [6066] = {.lex_state = 67}, + [6067] = {.lex_state = 67}, + [6068] = {.lex_state = 90}, + [6069] = {.lex_state = 95}, + [6070] = {.lex_state = 81}, + [6071] = {.lex_state = 81}, + [6072] = {.lex_state = 81}, + [6073] = {.lex_state = 65}, + [6074] = {.lex_state = 114}, + [6075] = {.lex_state = 66}, + [6076] = {.lex_state = 120}, + [6077] = {.lex_state = 66}, + [6078] = {.lex_state = 67}, + [6079] = {.lex_state = 68}, + [6080] = {.lex_state = 67}, + [6081] = {.lex_state = 120}, + [6082] = {.lex_state = 68}, + [6083] = {.lex_state = 67}, + [6084] = {.lex_state = 68}, + [6085] = {.lex_state = 68}, + [6086] = {.lex_state = 68}, + [6087] = {.lex_state = 114}, + [6088] = {.lex_state = 66}, + [6089] = {.lex_state = 68}, + [6090] = {.lex_state = 69}, + [6091] = {.lex_state = 66}, + [6092] = {.lex_state = 68}, + [6093] = {.lex_state = 68}, + [6094] = {.lex_state = 65}, + [6095] = {.lex_state = 65}, + [6096] = {.lex_state = 68}, + [6097] = {.lex_state = 67}, + [6098] = {.lex_state = 68}, + [6099] = {.lex_state = 89}, + [6100] = {.lex_state = 96}, + [6101] = {.lex_state = 114}, + [6102] = {.lex_state = 66}, + [6103] = {.lex_state = 65}, + [6104] = {.lex_state = 66}, + [6105] = {.lex_state = 67}, + [6106] = {.lex_state = 114}, + [6107] = {.lex_state = 67}, + [6108] = {.lex_state = 67}, + [6109] = {.lex_state = 68}, + [6110] = {.lex_state = 114}, + [6111] = {.lex_state = 66}, + [6112] = {.lex_state = 68}, + [6113] = {.lex_state = 65}, + [6114] = {.lex_state = 81}, + [6115] = {.lex_state = 68}, + [6116] = {.lex_state = 81}, + [6117] = {.lex_state = 96}, + [6118] = {.lex_state = 67}, + [6119] = {.lex_state = 69}, + [6120] = {.lex_state = 114}, + [6121] = {.lex_state = 95}, + [6122] = {.lex_state = 81}, + [6123] = {.lex_state = 114}, + [6124] = {.lex_state = 67}, + [6125] = {.lex_state = 69}, + [6126] = {.lex_state = 68}, + [6127] = {.lex_state = 66}, + [6128] = {.lex_state = 66}, + [6129] = {.lex_state = 66}, + [6130] = {.lex_state = 68}, + [6131] = {.lex_state = 67}, + [6132] = {.lex_state = 80}, + [6133] = {.lex_state = 95}, + [6134] = {.lex_state = 80}, + [6135] = {.lex_state = 66}, + [6136] = {.lex_state = 65}, + [6137] = {.lex_state = 80}, + [6138] = {.lex_state = 67}, + [6139] = {.lex_state = 114}, + [6140] = {.lex_state = 67}, + [6141] = {.lex_state = 66}, + [6142] = {.lex_state = 94}, + [6143] = {.lex_state = 66}, + [6144] = {.lex_state = 67}, + [6145] = {.lex_state = 68}, + [6146] = {.lex_state = 126}, + [6147] = {.lex_state = 65}, + [6148] = {.lex_state = 66}, + [6149] = {.lex_state = 66}, + [6150] = {.lex_state = 120}, + [6151] = {.lex_state = 95}, + [6152] = {.lex_state = 114}, + [6153] = {.lex_state = 67}, + [6154] = {.lex_state = 67}, + [6155] = {.lex_state = 66}, + [6156] = {.lex_state = 65}, + [6157] = {.lex_state = 65}, + [6158] = {.lex_state = 68}, + [6159] = {.lex_state = 67}, + [6160] = {.lex_state = 66}, + [6161] = {.lex_state = 120}, + [6162] = {.lex_state = 120}, + [6163] = {.lex_state = 66}, + [6164] = {.lex_state = 96}, + [6165] = {.lex_state = 69}, + [6166] = {.lex_state = 114}, + [6167] = {.lex_state = 65}, + [6168] = {.lex_state = 69}, + [6169] = {.lex_state = 81}, + [6170] = {.lex_state = 66}, + [6171] = {.lex_state = 66}, + [6172] = {.lex_state = 69}, + [6173] = {.lex_state = 69}, + [6174] = {.lex_state = 120}, + [6175] = {.lex_state = 81}, + [6176] = {.lex_state = 66}, + [6177] = {.lex_state = 65}, + [6178] = {.lex_state = 66}, + [6179] = {.lex_state = 67}, + [6180] = {.lex_state = 114}, + [6181] = {.lex_state = 65}, + [6182] = {.lex_state = 80}, + [6183] = {.lex_state = 67}, + [6184] = {.lex_state = 69}, + [6185] = {.lex_state = 82}, + [6186] = {.lex_state = 66}, + [6187] = {.lex_state = 94}, + [6188] = {.lex_state = 82}, + [6189] = {.lex_state = 69}, + [6190] = {.lex_state = 69}, + [6191] = {.lex_state = 69}, + [6192] = {.lex_state = 65}, + [6193] = {.lex_state = 69}, + [6194] = {.lex_state = 69}, + [6195] = {.lex_state = 120}, + [6196] = {.lex_state = 120}, + [6197] = {.lex_state = 82}, + [6198] = {.lex_state = 82}, + [6199] = {.lex_state = 68}, + [6200] = {.lex_state = 68}, + [6201] = {.lex_state = 94}, + [6202] = {.lex_state = 69}, + [6203] = {.lex_state = 67}, + [6204] = {.lex_state = 90}, + [6205] = {.lex_state = 114}, + [6206] = {.lex_state = 68}, + [6207] = {.lex_state = 68}, + [6208] = {.lex_state = 82}, + [6209] = {.lex_state = 90}, + [6210] = {.lex_state = 66}, + [6211] = {.lex_state = 114}, + [6212] = {.lex_state = 65}, + [6213] = {.lex_state = 66}, + [6214] = {.lex_state = 69}, + [6215] = {.lex_state = 67}, + [6216] = {.lex_state = 65}, + [6217] = {.lex_state = 65}, + [6218] = {.lex_state = 66}, + [6219] = {.lex_state = 69}, + [6220] = {.lex_state = 81}, + [6221] = {.lex_state = 69}, + [6222] = {.lex_state = 66}, + [6223] = {.lex_state = 66}, + [6224] = {.lex_state = 65}, + [6225] = {.lex_state = 69}, + [6226] = {.lex_state = 81}, + [6227] = {.lex_state = 65}, + [6228] = {.lex_state = 65}, + [6229] = {.lex_state = 65}, + [6230] = {.lex_state = 65}, + [6231] = {.lex_state = 69}, + [6232] = {.lex_state = 69}, + [6233] = {.lex_state = 66}, + [6234] = {.lex_state = 80}, + [6235] = {.lex_state = 80}, + [6236] = {.lex_state = 80}, + [6237] = {.lex_state = 114}, + [6238] = {.lex_state = 114}, + [6239] = {.lex_state = 80}, + [6240] = {.lex_state = 65}, + [6241] = {.lex_state = 65}, + [6242] = {.lex_state = 65}, + [6243] = {.lex_state = 65}, + [6244] = {.lex_state = 80}, + [6245] = {.lex_state = 82}, + [6246] = {.lex_state = 114}, + [6247] = {.lex_state = 66}, + [6248] = {.lex_state = 114}, + [6249] = {.lex_state = 114}, + [6250] = {.lex_state = 81}, + [6251] = {.lex_state = 114}, + [6252] = {.lex_state = 65}, + [6253] = {.lex_state = 69}, + [6254] = {.lex_state = 65}, + [6255] = {.lex_state = 120}, + [6256] = {.lex_state = 120}, + [6257] = {.lex_state = 69}, + [6258] = {.lex_state = 120}, + [6259] = {.lex_state = 65}, + [6260] = {.lex_state = 66}, + [6261] = {.lex_state = 80}, + [6262] = {.lex_state = 80}, + [6263] = {.lex_state = 68}, + [6264] = {.lex_state = 114}, + [6265] = {.lex_state = 65}, + [6266] = {.lex_state = 80}, + [6267] = {.lex_state = 66}, + [6268] = {.lex_state = 81}, + [6269] = {.lex_state = 67}, + [6270] = {.lex_state = 69}, + [6271] = {.lex_state = 69}, + [6272] = {.lex_state = 90}, + [6273] = {.lex_state = 69}, + [6274] = {.lex_state = 65}, + [6275] = {.lex_state = 114}, + [6276] = {.lex_state = 114}, + [6277] = {.lex_state = 67}, + [6278] = {.lex_state = 80}, + [6279] = {.lex_state = 90}, + [6280] = {.lex_state = 90}, + [6281] = {.lex_state = 90}, + [6282] = {.lex_state = 81}, + [6283] = {.lex_state = 69}, + [6284] = {.lex_state = 69}, + [6285] = {.lex_state = 82}, + [6286] = {.lex_state = 69}, + [6287] = {.lex_state = 114}, + [6288] = {.lex_state = 81}, + [6289] = {.lex_state = 67}, + [6290] = {.lex_state = 67}, + [6291] = {.lex_state = 69}, + [6292] = {.lex_state = 69}, + [6293] = {.lex_state = 68}, + [6294] = {.lex_state = 69}, + [6295] = {.lex_state = 68}, + [6296] = {.lex_state = 68}, + [6297] = {.lex_state = 68}, + [6298] = {.lex_state = 68}, + [6299] = {.lex_state = 68}, + [6300] = {.lex_state = 68}, + [6301] = {.lex_state = 68}, + [6302] = {.lex_state = 68}, + [6303] = {.lex_state = 69}, + [6304] = {.lex_state = 114}, + [6305] = {.lex_state = 69}, + [6306] = {.lex_state = 114}, + [6307] = {.lex_state = 67}, + [6308] = {.lex_state = 114}, + [6309] = {.lex_state = 68}, + [6310] = {.lex_state = 69}, + [6311] = {.lex_state = 114}, + [6312] = {.lex_state = 68}, + [6313] = {.lex_state = 69}, + [6314] = {.lex_state = 69}, + [6315] = {.lex_state = 68}, + [6316] = {.lex_state = 68}, + [6317] = {.lex_state = 67}, + [6318] = {.lex_state = 67}, + [6319] = {.lex_state = 114}, + [6320] = {.lex_state = 114}, + [6321] = {.lex_state = 68}, + [6322] = {.lex_state = 68}, + [6323] = {.lex_state = 114}, + [6324] = {.lex_state = 68}, + [6325] = {.lex_state = 114}, + [6326] = {.lex_state = 65}, + [6327] = {.lex_state = 65}, + [6328] = {.lex_state = 65}, + [6329] = {.lex_state = 65}, + [6330] = {.lex_state = 65}, + [6331] = {.lex_state = 114}, + [6332] = {.lex_state = 65}, + [6333] = {.lex_state = 114}, + [6334] = {.lex_state = 114}, + [6335] = {.lex_state = 114}, + [6336] = {.lex_state = 114}, + [6337] = {.lex_state = 114}, + [6338] = {.lex_state = 67}, + [6339] = {.lex_state = 114}, + [6340] = {.lex_state = 114}, + [6341] = {.lex_state = 65}, + [6342] = {.lex_state = 65}, + [6343] = {.lex_state = 114}, + [6344] = {.lex_state = 65}, + [6345] = {.lex_state = 114}, + [6346] = {.lex_state = 114}, + [6347] = {.lex_state = 114}, + [6348] = {.lex_state = 114}, + [6349] = {.lex_state = 114}, + [6350] = {.lex_state = 65}, + [6351] = {.lex_state = 69}, + [6352] = {.lex_state = 68}, + [6353] = {.lex_state = 114}, + [6354] = {.lex_state = 114}, + [6355] = {.lex_state = 69}, + [6356] = {.lex_state = 65}, + [6357] = {.lex_state = 114}, + [6358] = {.lex_state = 114}, + [6359] = {.lex_state = 67}, + [6360] = {.lex_state = 68}, + [6361] = {.lex_state = 114}, + [6362] = {.lex_state = 68}, + [6363] = {.lex_state = 114}, + [6364] = {.lex_state = 114}, + [6365] = {.lex_state = 114}, + [6366] = {.lex_state = 68}, + [6367] = {.lex_state = 68}, + [6368] = {.lex_state = 68}, + [6369] = {.lex_state = 68}, + [6370] = {.lex_state = 68}, + [6371] = {.lex_state = 68}, + [6372] = {.lex_state = 69}, + [6373] = {.lex_state = 65}, + [6374] = {.lex_state = 69}, + [6375] = {.lex_state = 69}, + [6376] = {.lex_state = 114}, + [6377] = {.lex_state = 66}, + [6378] = {.lex_state = 66}, + [6379] = {.lex_state = 69}, + [6380] = {.lex_state = 69}, + [6381] = {.lex_state = 114}, + [6382] = {.lex_state = 114}, + [6383] = {.lex_state = 69}, + [6384] = {.lex_state = 114}, + [6385] = {.lex_state = 68}, + [6386] = {.lex_state = 114}, + [6387] = {.lex_state = 69}, + [6388] = {.lex_state = 68}, + [6389] = {.lex_state = 69}, + [6390] = {.lex_state = 69}, + [6391] = {.lex_state = 69}, + [6392] = {.lex_state = 69}, + [6393] = {.lex_state = 69}, + [6394] = {.lex_state = 114}, + [6395] = {.lex_state = 114}, + [6396] = {.lex_state = 114}, + [6397] = {.lex_state = 69}, + [6398] = {.lex_state = 114}, + [6399] = {.lex_state = 114}, + [6400] = {.lex_state = 114}, + [6401] = {.lex_state = 114}, + [6402] = {.lex_state = 68}, + [6403] = {.lex_state = 114}, + [6404] = {.lex_state = 69}, + [6405] = {.lex_state = 114}, + [6406] = {.lex_state = 67}, + [6407] = {.lex_state = 67}, + [6408] = {.lex_state = 114}, + [6409] = {.lex_state = 114}, + [6410] = {.lex_state = 65}, + [6411] = {.lex_state = 67}, + [6412] = {.lex_state = 68}, + [6413] = {.lex_state = 68}, + [6414] = {.lex_state = 68}, + [6415] = {.lex_state = 68}, + [6416] = {.lex_state = 68}, + [6417] = {.lex_state = 67}, + [6418] = {.lex_state = 114}, + [6419] = {.lex_state = 114}, + [6420] = {.lex_state = 68}, + [6421] = {.lex_state = 68}, + [6422] = {.lex_state = 69}, + [6423] = {.lex_state = 68}, + [6424] = {.lex_state = 114}, + [6425] = {.lex_state = 68}, + [6426] = {.lex_state = 68}, + [6427] = {.lex_state = 114}, + [6428] = {.lex_state = 114}, + [6429] = {.lex_state = 65}, + [6430] = {.lex_state = 69}, + [6431] = {.lex_state = 69}, + [6432] = {.lex_state = 65}, + [6433] = {.lex_state = 65}, + [6434] = {.lex_state = 66}, + [6435] = {.lex_state = 65}, + [6436] = {.lex_state = 65}, + [6437] = {.lex_state = 65}, + [6438] = {.lex_state = 67}, + [6439] = {.lex_state = 69}, + [6440] = {.lex_state = 114}, + [6441] = {.lex_state = 69}, + [6442] = {.lex_state = 68}, + [6443] = {.lex_state = 68}, + [6444] = {.lex_state = 66}, + [6445] = {.lex_state = 68}, + [6446] = {.lex_state = 68}, + [6447] = {.lex_state = 68}, + [6448] = {.lex_state = 69}, + [6449] = {.lex_state = 69}, + [6450] = {.lex_state = 69}, + [6451] = {.lex_state = 69}, + [6452] = {.lex_state = 68}, + [6453] = {.lex_state = 65}, + [6454] = {.lex_state = 65}, + [6455] = {.lex_state = 65}, + [6456] = {.lex_state = 68}, + [6457] = {.lex_state = 68}, + [6458] = {.lex_state = 68}, + [6459] = {.lex_state = 69}, + [6460] = {.lex_state = 68}, + [6461] = {.lex_state = 68}, + [6462] = {.lex_state = 68}, + [6463] = {.lex_state = 69}, + [6464] = {.lex_state = 68}, + [6465] = {.lex_state = 67}, + [6466] = {.lex_state = 68}, + [6467] = {.lex_state = 68}, + [6468] = {.lex_state = 67}, + [6469] = {.lex_state = 65}, + [6470] = {.lex_state = 69}, + [6471] = {.lex_state = 69}, + [6472] = {.lex_state = 65}, + [6473] = {.lex_state = 66}, + [6474] = {.lex_state = 69}, + [6475] = {.lex_state = 69}, + [6476] = {.lex_state = 69}, + [6477] = {.lex_state = 69}, + [6478] = {.lex_state = 65}, + [6479] = {.lex_state = 66}, + [6480] = {.lex_state = 65}, + [6481] = {.lex_state = 65}, + [6482] = {.lex_state = 69}, + [6483] = {.lex_state = 68}, + [6484] = {.lex_state = 65}, + [6485] = {.lex_state = 65}, + [6486] = {.lex_state = 66}, + [6487] = {.lex_state = 68}, + [6488] = {.lex_state = 68}, + [6489] = {.lex_state = 65}, + [6490] = {.lex_state = 69}, + [6491] = {.lex_state = 68}, + [6492] = {.lex_state = 69}, + [6493] = {.lex_state = 69}, + [6494] = {.lex_state = 69}, + [6495] = {.lex_state = 66}, + [6496] = {.lex_state = 68}, + [6497] = {.lex_state = 68}, + [6498] = {.lex_state = 68}, + [6499] = {.lex_state = 66}, + [6500] = {.lex_state = 68}, + [6501] = {.lex_state = 69}, + [6502] = {.lex_state = 69}, + [6503] = {.lex_state = 66}, + [6504] = {.lex_state = 68}, + [6505] = {.lex_state = 68}, + [6506] = {.lex_state = 69}, + [6507] = {.lex_state = 69}, + [6508] = {.lex_state = 69}, + [6509] = {.lex_state = 68}, + [6510] = {.lex_state = 69}, + [6511] = {.lex_state = 69}, + [6512] = {.lex_state = 69}, + [6513] = {.lex_state = 68}, + [6514] = {.lex_state = 69}, + [6515] = {.lex_state = 68}, + [6516] = {.lex_state = 66}, + [6517] = {.lex_state = 67}, + [6518] = {.lex_state = 67}, + [6519] = {.lex_state = 65}, + [6520] = {.lex_state = 69}, + [6521] = {.lex_state = 114}, + [6522] = {.lex_state = 93}, + [6523] = {.lex_state = 69}, + [6524] = {.lex_state = 69}, + [6525] = {.lex_state = 69}, + [6526] = {.lex_state = 69}, + [6527] = {.lex_state = 68}, + [6528] = {.lex_state = 69}, + [6529] = {.lex_state = 68}, + [6530] = {.lex_state = 114}, + [6531] = {.lex_state = 114}, + [6532] = {.lex_state = 68}, + [6533] = {.lex_state = 69}, + [6534] = {.lex_state = 69}, + [6535] = {.lex_state = 67}, + [6536] = {.lex_state = 67}, + [6537] = {.lex_state = 114}, + [6538] = {.lex_state = 114}, + [6539] = {.lex_state = 114}, + [6540] = {.lex_state = 114}, + [6541] = {.lex_state = 114}, + [6542] = {.lex_state = 114}, + [6543] = {.lex_state = 114}, + [6544] = {.lex_state = 69}, + [6545] = {.lex_state = 69}, + [6546] = {.lex_state = 65}, + [6547] = {.lex_state = 68}, + [6548] = {.lex_state = 65}, + [6549] = {.lex_state = 68}, + [6550] = {.lex_state = 68}, + [6551] = {.lex_state = 66}, + [6552] = {.lex_state = 68}, + [6553] = {.lex_state = 114}, + [6554] = {.lex_state = 68}, + [6555] = {.lex_state = 68}, + [6556] = {.lex_state = 114}, + [6557] = {.lex_state = 114}, + [6558] = {.lex_state = 68}, + [6559] = {.lex_state = 114}, + [6560] = {.lex_state = 114}, + [6561] = {.lex_state = 68}, + [6562] = {.lex_state = 114}, + [6563] = {.lex_state = 68}, + [6564] = {.lex_state = 68}, + [6565] = {.lex_state = 67}, + [6566] = {.lex_state = 67}, + [6567] = {.lex_state = 68}, + [6568] = {.lex_state = 68}, + [6569] = {.lex_state = 68}, + [6570] = {.lex_state = 65}, + [6571] = {.lex_state = 69}, + [6572] = {.lex_state = 114}, + [6573] = {.lex_state = 68}, + [6574] = {.lex_state = 69}, + [6575] = {.lex_state = 68}, + [6576] = {.lex_state = 68}, + [6577] = {.lex_state = 69}, + [6578] = {.lex_state = 68}, + [6579] = {.lex_state = 68}, + [6580] = {.lex_state = 69}, + [6581] = {.lex_state = 114}, + [6582] = {.lex_state = 68}, + [6583] = {.lex_state = 65}, + [6584] = {.lex_state = 114}, + [6585] = {.lex_state = 114}, + [6586] = {.lex_state = 114}, + [6587] = {.lex_state = 68}, + [6588] = {.lex_state = 114}, + [6589] = {.lex_state = 114}, + [6590] = {.lex_state = 114}, + [6591] = {.lex_state = 114}, + [6592] = {.lex_state = 69}, + [6593] = {.lex_state = 69}, + [6594] = {.lex_state = 114}, + [6595] = {.lex_state = 68}, + [6596] = {.lex_state = 68}, + [6597] = {.lex_state = 67}, + [6598] = {.lex_state = 68}, + [6599] = {.lex_state = 68}, + [6600] = {.lex_state = 114}, + [6601] = {.lex_state = 68}, + [6602] = {.lex_state = 68}, + [6603] = {.lex_state = 68}, + [6604] = {.lex_state = 68}, + [6605] = {.lex_state = 68}, + [6606] = {.lex_state = 68}, + [6607] = {.lex_state = 68}, + [6608] = {.lex_state = 68}, + [6609] = {.lex_state = 68}, + [6610] = {.lex_state = 67}, + [6611] = {.lex_state = 66}, + [6612] = {.lex_state = 65}, + [6613] = {.lex_state = 69}, + [6614] = {.lex_state = 69}, + [6615] = {.lex_state = 68}, + [6616] = {.lex_state = 68}, + [6617] = {.lex_state = 68}, + [6618] = {.lex_state = 68}, + [6619] = {.lex_state = 68}, + [6620] = {.lex_state = 65}, + [6621] = {.lex_state = 68}, + [6622] = {.lex_state = 68}, + [6623] = {.lex_state = 68}, + [6624] = {.lex_state = 68}, + [6625] = {.lex_state = 68}, + [6626] = {.lex_state = 68}, + [6627] = {.lex_state = 68}, + [6628] = {.lex_state = 68}, + [6629] = {.lex_state = 69}, + [6630] = {.lex_state = 68}, + [6631] = {.lex_state = 67}, + [6632] = {.lex_state = 67}, + [6633] = {.lex_state = 68}, + [6634] = {.lex_state = 68}, + [6635] = {.lex_state = 68}, + [6636] = {.lex_state = 68}, + [6637] = {.lex_state = 65}, + [6638] = {.lex_state = 67}, + [6639] = {.lex_state = 68}, + [6640] = {.lex_state = 68}, + [6641] = {.lex_state = 68}, + [6642] = {.lex_state = 68}, + [6643] = {.lex_state = 68}, + [6644] = {.lex_state = 69}, + [6645] = {.lex_state = 68}, + [6646] = {.lex_state = 68}, + [6647] = {.lex_state = 66}, + [6648] = {.lex_state = 68}, + [6649] = {.lex_state = 68}, + [6650] = {.lex_state = 68}, + [6651] = {.lex_state = 68}, + [6652] = {.lex_state = 68}, + [6653] = {.lex_state = 69}, + [6654] = {.lex_state = 68}, + [6655] = {.lex_state = 68}, + [6656] = {.lex_state = 67}, + [6657] = {.lex_state = 67}, + [6658] = {.lex_state = 67}, + [6659] = {.lex_state = 68}, + [6660] = {.lex_state = 68}, + [6661] = {.lex_state = 68}, + [6662] = {.lex_state = 68}, + [6663] = {.lex_state = 68}, + [6664] = {.lex_state = 65}, + [6665] = {.lex_state = 65}, + [6666] = {.lex_state = 114}, + [6667] = {.lex_state = 67}, + [6668] = {.lex_state = 66}, + [6669] = {.lex_state = 66}, + [6670] = {.lex_state = 65}, + [6671] = {.lex_state = 66}, + [6672] = {.lex_state = 66}, + [6673] = {.lex_state = 66}, + [6674] = {.lex_state = 69}, + [6675] = {.lex_state = 65}, + [6676] = {.lex_state = 65}, + [6677] = {.lex_state = 65}, + [6678] = {.lex_state = 65}, + [6679] = {.lex_state = 65}, + [6680] = {.lex_state = 65}, + [6681] = {.lex_state = 69}, + [6682] = {.lex_state = 65}, + [6683] = {.lex_state = 69}, + [6684] = {.lex_state = 65}, + [6685] = {.lex_state = 65}, + [6686] = {.lex_state = 65}, + [6687] = {.lex_state = 114}, + [6688] = {.lex_state = 65}, + [6689] = {.lex_state = 114}, + [6690] = {.lex_state = 65}, + [6691] = {.lex_state = 65}, + [6692] = {.lex_state = 66}, + [6693] = {.lex_state = 65}, + [6694] = {.lex_state = 69}, + [6695] = {.lex_state = 69}, + [6696] = {.lex_state = 69}, + [6697] = {.lex_state = 65}, + [6698] = {.lex_state = 114}, + [6699] = {.lex_state = 65}, + [6700] = {.lex_state = 65}, + [6701] = {.lex_state = 69}, + [6702] = {.lex_state = 66}, + [6703] = {.lex_state = 65}, + [6704] = {.lex_state = 114}, + [6705] = {.lex_state = 67}, + [6706] = {.lex_state = 65}, + [6707] = {.lex_state = 114}, + [6708] = {.lex_state = 65}, + [6709] = {.lex_state = 67}, + [6710] = {.lex_state = 65}, + [6711] = {.lex_state = 69}, + [6712] = {.lex_state = 114}, + [6713] = {.lex_state = 114}, + [6714] = {.lex_state = 66}, + [6715] = {.lex_state = 114}, + [6716] = {.lex_state = 67}, + [6717] = {.lex_state = 67}, + [6718] = {.lex_state = 67}, + [6719] = {.lex_state = 65}, + [6720] = {.lex_state = 65}, + [6721] = {.lex_state = 69}, + [6722] = {.lex_state = 66}, + [6723] = {.lex_state = 66}, + [6724] = {.lex_state = 114}, + [6725] = {.lex_state = 65}, + [6726] = {.lex_state = 114}, + [6727] = {.lex_state = 69}, + [6728] = {.lex_state = 114}, + [6729] = {.lex_state = 68}, + [6730] = {.lex_state = 68}, + [6731] = {.lex_state = 69}, + [6732] = {.lex_state = 68}, + [6733] = {.lex_state = 114}, + [6734] = {.lex_state = 114}, + [6735] = {.lex_state = 114}, + [6736] = {.lex_state = 69}, + [6737] = {.lex_state = 65}, + [6738] = {.lex_state = 65}, + [6739] = {.lex_state = 65}, + [6740] = {.lex_state = 65}, + [6741] = {.lex_state = 93}, + [6742] = {.lex_state = 66}, + [6743] = {.lex_state = 66}, + [6744] = {.lex_state = 68}, + [6745] = {.lex_state = 114}, + [6746] = {.lex_state = 67}, + [6747] = {.lex_state = 66}, + [6748] = {.lex_state = 67}, + [6749] = {.lex_state = 67}, + [6750] = {.lex_state = 68}, + [6751] = {.lex_state = 114}, + [6752] = {.lex_state = 69}, + [6753] = {.lex_state = 68}, + [6754] = {.lex_state = 69}, + [6755] = {.lex_state = 65}, + [6756] = {.lex_state = 69}, + [6757] = {.lex_state = 65}, + [6758] = {.lex_state = 69}, + [6759] = {.lex_state = 67}, + [6760] = {.lex_state = 65}, + [6761] = {.lex_state = 67}, + [6762] = {.lex_state = 69}, + [6763] = {.lex_state = 69}, + [6764] = {.lex_state = 114}, + [6765] = {.lex_state = 114}, + [6766] = {.lex_state = 67}, + [6767] = {.lex_state = 69}, + [6768] = {.lex_state = 67}, + [6769] = {.lex_state = 67}, + [6770] = {.lex_state = 69}, + [6771] = {.lex_state = 69}, + [6772] = {.lex_state = 67}, + [6773] = {.lex_state = 67}, + [6774] = {.lex_state = 67}, + [6775] = {.lex_state = 69}, + [6776] = {.lex_state = 114}, + [6777] = {.lex_state = 69}, + [6778] = {.lex_state = 69}, + [6779] = {.lex_state = 114}, + [6780] = {.lex_state = 69}, + [6781] = {.lex_state = 67}, + [6782] = {.lex_state = 69}, + [6783] = {.lex_state = 65}, + [6784] = {.lex_state = 69}, + [6785] = {.lex_state = 69}, + [6786] = {.lex_state = 114}, + [6787] = {.lex_state = 114}, + [6788] = {.lex_state = 65}, + [6789] = {.lex_state = 67}, + [6790] = {.lex_state = 67}, + [6791] = {.lex_state = 65}, + [6792] = {.lex_state = 66}, + [6793] = {.lex_state = 114}, + [6794] = {.lex_state = 114}, + [6795] = {.lex_state = 67}, + [6796] = {.lex_state = 67}, + [6797] = {.lex_state = 67}, + [6798] = {.lex_state = 67}, + [6799] = {.lex_state = 67}, + [6800] = {.lex_state = 65}, + [6801] = {.lex_state = 66}, + [6802] = {.lex_state = 65}, + [6803] = {.lex_state = 67}, + [6804] = {.lex_state = 67}, + [6805] = {.lex_state = 65}, + [6806] = {.lex_state = 67}, + [6807] = {.lex_state = 67}, + [6808] = {.lex_state = 114}, + [6809] = {.lex_state = 69}, + [6810] = {.lex_state = 65}, + [6811] = {.lex_state = 69}, + [6812] = {.lex_state = 65}, + [6813] = {.lex_state = 65}, + [6814] = {.lex_state = 69}, + [6815] = {.lex_state = 114}, + [6816] = {.lex_state = 69}, + [6817] = {.lex_state = 69}, + [6818] = {.lex_state = 66}, + [6819] = {.lex_state = 65}, + [6820] = {.lex_state = 66}, + [6821] = {.lex_state = 66}, + [6822] = {.lex_state = 66}, + [6823] = {.lex_state = 67}, + [6824] = {.lex_state = 67}, + [6825] = {.lex_state = 67}, + [6826] = {.lex_state = 67}, + [6827] = {.lex_state = 67}, + [6828] = {.lex_state = 114}, + [6829] = {.lex_state = 66}, + [6830] = {.lex_state = 69}, + [6831] = {.lex_state = 65}, + [6832] = {.lex_state = 67}, + [6833] = {.lex_state = 69}, + [6834] = {.lex_state = 66}, + [6835] = {.lex_state = 65}, + [6836] = {.lex_state = 65}, + [6837] = {.lex_state = 69}, + [6838] = {.lex_state = 66}, + [6839] = {.lex_state = 67}, + [6840] = {.lex_state = 67}, + [6841] = {.lex_state = 65}, + [6842] = {.lex_state = 67}, + [6843] = {.lex_state = 65}, + [6844] = {.lex_state = 69}, + [6845] = {.lex_state = 65}, + [6846] = {.lex_state = 65}, + [6847] = {.lex_state = 65}, + [6848] = {.lex_state = 67}, + [6849] = {.lex_state = 67}, + [6850] = {.lex_state = 65}, + [6851] = {.lex_state = 65}, + [6852] = {.lex_state = 68}, + [6853] = {.lex_state = 68}, + [6854] = {.lex_state = 65}, + [6855] = {.lex_state = 66}, + [6856] = {.lex_state = 65}, + [6857] = {.lex_state = 66}, + [6858] = {.lex_state = 66}, + [6859] = {.lex_state = 67}, + [6860] = {.lex_state = 66}, + [6861] = {.lex_state = 68}, + [6862] = {.lex_state = 65}, + [6863] = {.lex_state = 69}, + [6864] = {.lex_state = 66}, + [6865] = {.lex_state = 67}, + [6866] = {.lex_state = 67}, + [6867] = {.lex_state = 65}, + [6868] = {.lex_state = 65}, + [6869] = {.lex_state = 67}, + [6870] = {.lex_state = 65}, + [6871] = {.lex_state = 65}, + [6872] = {.lex_state = 114}, + [6873] = {.lex_state = 114}, + [6874] = {.lex_state = 67}, + [6875] = {.lex_state = 67}, + [6876] = {.lex_state = 67}, + [6877] = {.lex_state = 67}, + [6878] = {.lex_state = 65}, + [6879] = {.lex_state = 67}, + [6880] = {.lex_state = 67}, + [6881] = {.lex_state = 65}, + [6882] = {.lex_state = 68}, + [6883] = {.lex_state = 114}, + [6884] = {.lex_state = 114}, + [6885] = {.lex_state = 67}, + [6886] = {.lex_state = 67}, + [6887] = {.lex_state = 66}, + [6888] = {.lex_state = 65}, + [6889] = {.lex_state = 67}, + [6890] = {.lex_state = 66}, + [6891] = {.lex_state = 114}, + [6892] = {.lex_state = 68}, + [6893] = {.lex_state = 68}, + [6894] = {.lex_state = 66}, + [6895] = {.lex_state = 68}, + [6896] = {.lex_state = 66}, + [6897] = {.lex_state = 68}, + [6898] = {.lex_state = 114}, + [6899] = {.lex_state = 114}, + [6900] = {.lex_state = 66}, + [6901] = {.lex_state = 114}, + [6902] = {.lex_state = 114}, + [6903] = {.lex_state = 67}, + [6904] = {.lex_state = 66}, + [6905] = {.lex_state = 67}, + [6906] = {.lex_state = 114}, + [6907] = {.lex_state = 65}, + [6908] = {.lex_state = 114}, + [6909] = {.lex_state = 67}, + [6910] = {.lex_state = 65}, + [6911] = {.lex_state = 65}, + [6912] = {.lex_state = 114}, + [6913] = {.lex_state = 65}, + [6914] = {.lex_state = 114}, + [6915] = {.lex_state = 114}, + [6916] = {.lex_state = 114}, + [6917] = {.lex_state = 114}, + [6918] = {.lex_state = 114}, + [6919] = {.lex_state = 68}, + [6920] = {.lex_state = 66}, + [6921] = {.lex_state = 68}, + [6922] = {.lex_state = 68}, + [6923] = {.lex_state = 114}, + [6924] = {.lex_state = 65}, + [6925] = {.lex_state = 65}, + [6926] = {.lex_state = 67}, + [6927] = {.lex_state = 69}, + [6928] = {.lex_state = 66}, + [6929] = {.lex_state = 69}, + [6930] = {.lex_state = 67}, + [6931] = {.lex_state = 65}, + [6932] = {.lex_state = 67}, + [6933] = {.lex_state = 69}, + [6934] = {.lex_state = 67}, + [6935] = {.lex_state = 69}, + [6936] = {.lex_state = 67}, + [6937] = {.lex_state = 67}, + [6938] = {.lex_state = 69}, + [6939] = {.lex_state = 67}, + [6940] = {.lex_state = 67}, + [6941] = {.lex_state = 67}, + [6942] = {.lex_state = 67}, + [6943] = {.lex_state = 67}, + [6944] = {.lex_state = 67}, + [6945] = {.lex_state = 65}, + [6946] = {.lex_state = 67}, + [6947] = {.lex_state = 65}, + [6948] = {.lex_state = 65}, + [6949] = {.lex_state = 68}, + [6950] = {.lex_state = 68}, + [6951] = {.lex_state = 67}, + [6952] = {.lex_state = 68}, + [6953] = {.lex_state = 65}, + [6954] = {.lex_state = 67}, + [6955] = {.lex_state = 93}, + [6956] = {.lex_state = 69}, + [6957] = {.lex_state = 67}, + [6958] = {.lex_state = 69}, + [6959] = {.lex_state = 68}, + [6960] = {.lex_state = 67}, + [6961] = {.lex_state = 67}, + [6962] = {.lex_state = 114}, + [6963] = {.lex_state = 67}, + [6964] = {.lex_state = 114}, + [6965] = {.lex_state = 114}, + [6966] = {.lex_state = 66}, + [6967] = {.lex_state = 69}, + [6968] = {.lex_state = 114}, + [6969] = {.lex_state = 67}, + [6970] = {.lex_state = 66}, + [6971] = {.lex_state = 114}, + [6972] = {.lex_state = 65}, + [6973] = {.lex_state = 114}, + [6974] = {.lex_state = 114}, + [6975] = {.lex_state = 65}, + [6976] = {.lex_state = 65}, + [6977] = {.lex_state = 68}, + [6978] = {.lex_state = 68}, + [6979] = {.lex_state = 114}, + [6980] = {.lex_state = 66}, + [6981] = {.lex_state = 69}, + [6982] = {.lex_state = 114}, + [6983] = {.lex_state = 67}, + [6984] = {.lex_state = 65}, + [6985] = {.lex_state = 65}, + [6986] = {.lex_state = 69}, + [6987] = {.lex_state = 69}, + [6988] = {.lex_state = 114}, + [6989] = {.lex_state = 114}, + [6990] = {.lex_state = 114}, + [6991] = {.lex_state = 114}, + [6992] = {.lex_state = 69}, + [6993] = {.lex_state = 65}, + [6994] = {.lex_state = 69}, + [6995] = {.lex_state = 65}, + [6996] = {.lex_state = 67}, + [6997] = {.lex_state = 65}, + [6998] = {.lex_state = 67}, + [6999] = {.lex_state = 67}, + [7000] = {.lex_state = 69}, + [7001] = {.lex_state = 67}, + [7002] = {.lex_state = 65}, + [7003] = {.lex_state = 67}, + [7004] = {.lex_state = 67}, + [7005] = {.lex_state = 67}, + [7006] = {.lex_state = 114}, + [7007] = {.lex_state = 66}, + [7008] = {.lex_state = 114}, + [7009] = {.lex_state = 67}, + [7010] = {.lex_state = 67}, + [7011] = {.lex_state = 67}, + [7012] = {.lex_state = 67}, + [7013] = {.lex_state = 69}, + [7014] = {.lex_state = 67}, + [7015] = {.lex_state = 65}, + [7016] = {.lex_state = 69}, + [7017] = {.lex_state = 93}, + [7018] = {.lex_state = 66}, + [7019] = {.lex_state = 65}, + [7020] = {.lex_state = 65}, + [7021] = {.lex_state = 65}, + [7022] = {.lex_state = 68}, + [7023] = {.lex_state = 68}, + [7024] = {.lex_state = 65}, + [7025] = {.lex_state = 65}, + [7026] = {.lex_state = 65}, + [7027] = {.lex_state = 67}, + [7028] = {.lex_state = 114}, + [7029] = {.lex_state = 65}, + [7030] = {.lex_state = 114}, + [7031] = {.lex_state = 67}, + [7032] = {.lex_state = 114}, + [7033] = {.lex_state = 67}, + [7034] = {.lex_state = 65}, + [7035] = {.lex_state = 67}, + [7036] = {.lex_state = 67}, + [7037] = {.lex_state = 69}, + [7038] = {.lex_state = 67}, + [7039] = {.lex_state = 69}, + [7040] = {.lex_state = 65}, + [7041] = {.lex_state = 65}, + [7042] = {.lex_state = 65}, + [7043] = {.lex_state = 65}, + [7044] = {.lex_state = 65}, + [7045] = {.lex_state = 65}, + [7046] = {.lex_state = 67}, + [7047] = {.lex_state = 114}, + [7048] = {.lex_state = 67}, + [7049] = {.lex_state = 67}, + [7050] = {.lex_state = 69}, + [7051] = {.lex_state = 67}, + [7052] = {.lex_state = 65}, + [7053] = {.lex_state = 67}, + [7054] = {.lex_state = 67}, + [7055] = {.lex_state = 69}, + [7056] = {.lex_state = 69}, + [7057] = {.lex_state = 114}, + [7058] = {.lex_state = 69}, + [7059] = {.lex_state = 69}, + [7060] = {.lex_state = 69}, + [7061] = {.lex_state = 67}, + [7062] = {.lex_state = 68}, + [7063] = {.lex_state = 67}, + [7064] = {.lex_state = 65}, + [7065] = {.lex_state = 69}, + [7066] = {.lex_state = 69}, + [7067] = {.lex_state = 114}, + [7068] = {.lex_state = 114}, + [7069] = {.lex_state = 114}, + [7070] = {.lex_state = 69}, + [7071] = {.lex_state = 69}, + [7072] = {.lex_state = 69}, + [7073] = {.lex_state = 114}, + [7074] = {.lex_state = 69}, + [7075] = {.lex_state = 65}, + [7076] = {.lex_state = 65}, + [7077] = {.lex_state = 65}, + [7078] = {.lex_state = 67}, + [7079] = {.lex_state = 65}, + [7080] = {.lex_state = 65}, + [7081] = {.lex_state = 67}, + [7082] = {.lex_state = 67}, + [7083] = {.lex_state = 67}, + [7084] = {.lex_state = 68}, + [7085] = {.lex_state = 69}, + [7086] = {.lex_state = 69}, + [7087] = {.lex_state = 67}, + [7088] = {.lex_state = 67}, + [7089] = {.lex_state = 69}, + [7090] = {.lex_state = 69}, + [7091] = {.lex_state = 67}, + [7092] = {.lex_state = 67}, + [7093] = {.lex_state = 69}, + [7094] = {.lex_state = 65}, + [7095] = {.lex_state = 67}, + [7096] = {.lex_state = 67}, + [7097] = {.lex_state = 114}, + [7098] = {.lex_state = 67}, + [7099] = {.lex_state = 67}, + [7100] = {.lex_state = 67}, + [7101] = {.lex_state = 65}, + [7102] = {.lex_state = 65}, + [7103] = {.lex_state = 65}, + [7104] = {.lex_state = 65}, + [7105] = {.lex_state = 65}, + [7106] = {.lex_state = 67}, + [7107] = {.lex_state = 69}, + [7108] = {.lex_state = 67}, + [7109] = {.lex_state = 69}, + [7110] = {.lex_state = 69}, + [7111] = {.lex_state = 67}, + [7112] = {.lex_state = 67}, + [7113] = {.lex_state = 65}, + [7114] = {.lex_state = 65}, + [7115] = {.lex_state = 69}, + [7116] = {.lex_state = 114}, + [7117] = {.lex_state = 68}, + [7118] = {.lex_state = 67}, + [7119] = {.lex_state = 67}, + [7120] = {.lex_state = 114}, + [7121] = {.lex_state = 67}, + [7122] = {.lex_state = 67}, + [7123] = {.lex_state = 67}, + [7124] = {.lex_state = 66}, + [7125] = {.lex_state = 66}, + [7126] = {.lex_state = 66}, + [7127] = {.lex_state = 66}, + [7128] = {.lex_state = 66}, + [7129] = {.lex_state = 66}, + [7130] = {.lex_state = 66}, + [7131] = {.lex_state = 66}, + [7132] = {.lex_state = 66}, + [7133] = {.lex_state = 66}, + [7134] = {.lex_state = 66}, + [7135] = {.lex_state = 66}, + [7136] = {.lex_state = 66}, + [7137] = {.lex_state = 66}, + [7138] = {.lex_state = 66}, + [7139] = {.lex_state = 66}, + [7140] = {.lex_state = 66}, + [7141] = {.lex_state = 66}, + [7142] = {.lex_state = 66}, + [7143] = {.lex_state = 66}, + [7144] = {.lex_state = 66}, + [7145] = {.lex_state = 66}, + [7146] = {.lex_state = 66}, + [7147] = {.lex_state = 66}, + [7148] = {.lex_state = 66}, + [7149] = {.lex_state = 66}, + [7150] = {.lex_state = 66}, + [7151] = {.lex_state = 66}, + [7152] = {.lex_state = 66}, + [7153] = {.lex_state = 66}, + [7154] = {.lex_state = 66}, + [7155] = {.lex_state = 66}, + [7156] = {.lex_state = 66}, + [7157] = {.lex_state = 66}, + [7158] = {.lex_state = 66}, + [7159] = {.lex_state = 66}, + [7160] = {.lex_state = 66}, + [7161] = {.lex_state = 66}, + [7162] = {.lex_state = 66}, + [7163] = {.lex_state = 66}, + [7164] = {.lex_state = 66}, + [7165] = {.lex_state = 66}, + [7166] = {.lex_state = 66}, + [7167] = {.lex_state = 66}, + [7168] = {.lex_state = 66}, + [7169] = {.lex_state = 66}, + [7170] = {.lex_state = 66}, + [7171] = {.lex_state = 66}, + [7172] = {.lex_state = 66}, + [7173] = {.lex_state = 66}, + [7174] = {.lex_state = 66}, + [7175] = {.lex_state = 66}, + [7176] = {.lex_state = 66}, + [7177] = {.lex_state = 66}, + [7178] = {.lex_state = 66}, + [7179] = {.lex_state = 66}, + [7180] = {.lex_state = 66}, + [7181] = {.lex_state = 66}, + [7182] = {.lex_state = 66}, + [7183] = {.lex_state = 66}, + [7184] = {.lex_state = 66}, + [7185] = {.lex_state = 66}, + [7186] = {.lex_state = 66}, + [7187] = {.lex_state = 66}, + [7188] = {.lex_state = 66}, + [7189] = {.lex_state = 66}, + [7190] = {.lex_state = 66}, + [7191] = {.lex_state = 66}, + [7192] = {.lex_state = 66}, + [7193] = {.lex_state = 66}, + [7194] = {.lex_state = 66}, + [7195] = {.lex_state = 66}, + [7196] = {.lex_state = 66}, + [7197] = {.lex_state = 66}, + [7198] = {.lex_state = 66}, + [7199] = {.lex_state = 66}, + [7200] = {.lex_state = 66}, + [7201] = {.lex_state = 66}, + [7202] = {.lex_state = 66}, + [7203] = {.lex_state = 66}, + [7204] = {.lex_state = 66}, + [7205] = {.lex_state = 66}, + [7206] = {.lex_state = 66}, + [7207] = {.lex_state = 66}, + [7208] = {.lex_state = 66}, + [7209] = {.lex_state = 66}, + [7210] = {.lex_state = 66}, + [7211] = {.lex_state = 66}, + [7212] = {.lex_state = 66}, + [7213] = {.lex_state = 66}, + [7214] = {.lex_state = 66}, + [7215] = {.lex_state = 66}, + [7216] = {.lex_state = 66}, + [7217] = {.lex_state = 66}, + [7218] = {.lex_state = 66}, + [7219] = {.lex_state = 66}, + [7220] = {.lex_state = 66}, + [7221] = {.lex_state = 66}, + [7222] = {.lex_state = 66}, + [7223] = {.lex_state = 66}, + [7224] = {.lex_state = 66}, + [7225] = {.lex_state = 66}, + [7226] = {.lex_state = 66}, + [7227] = {.lex_state = 66}, + [7228] = {.lex_state = 66}, + [7229] = {.lex_state = 66}, + [7230] = {.lex_state = 66}, + [7231] = {.lex_state = 66}, + [7232] = {.lex_state = 66}, + [7233] = {.lex_state = 66}, + [7234] = {.lex_state = 66}, + [7235] = {.lex_state = 66}, + [7236] = {.lex_state = 66}, + [7237] = {.lex_state = 66}, + [7238] = {.lex_state = 66}, + [7239] = {.lex_state = 66}, + [7240] = {.lex_state = 66}, + [7241] = {.lex_state = 66}, + [7242] = {.lex_state = 66}, + [7243] = {.lex_state = 66}, + [7244] = {.lex_state = 66}, + [7245] = {.lex_state = 66}, + [7246] = {.lex_state = 66}, + [7247] = {.lex_state = 66}, + [7248] = {.lex_state = 66}, + [7249] = {.lex_state = 66}, + [7250] = {.lex_state = 66}, + [7251] = {.lex_state = 66}, + [7252] = {.lex_state = 66}, + [7253] = {.lex_state = 66}, + [7254] = {.lex_state = 66}, + [7255] = {.lex_state = 66}, + [7256] = {.lex_state = 66}, + [7257] = {.lex_state = 66}, + [7258] = {.lex_state = 66}, + [7259] = {.lex_state = 66}, + [7260] = {.lex_state = 66}, + [7261] = {.lex_state = 66}, + [7262] = {.lex_state = 66}, + [7263] = {.lex_state = 66}, + [7264] = {.lex_state = 66}, + [7265] = {.lex_state = 66}, + [7266] = {.lex_state = 66}, + [7267] = {.lex_state = 66}, + [7268] = {.lex_state = 66}, + [7269] = {.lex_state = 66}, + [7270] = {.lex_state = 66}, + [7271] = {.lex_state = 66}, + [7272] = {.lex_state = 66}, + [7273] = {.lex_state = 66}, + [7274] = {.lex_state = 66}, + [7275] = {.lex_state = 66}, + [7276] = {.lex_state = 455}, + [7277] = {.lex_state = 455}, + [7278] = {.lex_state = 455}, + [7279] = {.lex_state = 455}, + [7280] = {.lex_state = 455}, + [7281] = {.lex_state = 455}, + [7282] = {.lex_state = 455}, + [7283] = {.lex_state = 455}, + [7284] = {.lex_state = 455}, + [7285] = {.lex_state = 455}, + [7286] = {.lex_state = 455}, + [7287] = {.lex_state = 455}, + [7288] = {.lex_state = 455}, + [7289] = {.lex_state = 455}, + [7290] = {.lex_state = 455}, + [7291] = {.lex_state = 455}, + [7292] = {.lex_state = 455}, + [7293] = {.lex_state = 455}, + [7294] = {.lex_state = 455}, + [7295] = {.lex_state = 455}, + [7296] = {.lex_state = 455}, + [7297] = {.lex_state = 455}, + [7298] = {.lex_state = 455}, + [7299] = {.lex_state = 455}, + [7300] = {.lex_state = 455}, + [7301] = {.lex_state = 455}, + [7302] = {.lex_state = 455}, + [7303] = {.lex_state = 455}, + [7304] = {.lex_state = 455}, + [7305] = {.lex_state = 455}, + [7306] = {.lex_state = 455}, + [7307] = {.lex_state = 455}, + [7308] = {.lex_state = 455}, + [7309] = {.lex_state = 455}, + [7310] = {.lex_state = 455}, + [7311] = {.lex_state = 455}, + [7312] = {.lex_state = 455}, + [7313] = {.lex_state = 455}, + [7314] = {.lex_state = 455}, + [7315] = {.lex_state = 455}, + [7316] = {.lex_state = 455}, + [7317] = {.lex_state = 455}, + [7318] = {.lex_state = 455}, + [7319] = {.lex_state = 455}, + [7320] = {.lex_state = 455}, + [7321] = {.lex_state = 455}, + [7322] = {.lex_state = 455}, + [7323] = {.lex_state = 455}, + [7324] = {.lex_state = 455}, + [7325] = {.lex_state = 455}, + [7326] = {.lex_state = 455}, + [7327] = {.lex_state = 455}, + [7328] = {.lex_state = 455}, + [7329] = {.lex_state = 455}, + [7330] = {.lex_state = 455}, + [7331] = {.lex_state = 455}, + [7332] = {.lex_state = 455}, + [7333] = {.lex_state = 455}, + [7334] = {.lex_state = 455}, + [7335] = {.lex_state = 455}, + [7336] = {.lex_state = 455}, + [7337] = {.lex_state = 455}, + [7338] = {.lex_state = 455}, + [7339] = {.lex_state = 456}, + [7340] = {.lex_state = 456}, + [7341] = {.lex_state = 456}, + [7342] = {.lex_state = 456}, + [7343] = {.lex_state = 456}, + [7344] = {.lex_state = 456}, + [7345] = {.lex_state = 456}, + [7346] = {.lex_state = 456}, + [7347] = {.lex_state = 456}, + [7348] = {.lex_state = 456}, + [7349] = {.lex_state = 456}, + [7350] = {.lex_state = 456}, + [7351] = {.lex_state = 456}, + [7352] = {.lex_state = 456}, + [7353] = {.lex_state = 456}, + [7354] = {.lex_state = 456}, + [7355] = {.lex_state = 456}, + [7356] = {.lex_state = 456}, + [7357] = {.lex_state = 456}, + [7358] = {.lex_state = 456}, + [7359] = {.lex_state = 456}, + [7360] = {.lex_state = 456}, + [7361] = {.lex_state = 456}, + [7362] = {.lex_state = 456}, + [7363] = {.lex_state = 456}, + [7364] = {.lex_state = 456}, + [7365] = {.lex_state = 456}, + [7366] = {.lex_state = 456}, + [7367] = {.lex_state = 456}, + [7368] = {.lex_state = 456}, + [7369] = {.lex_state = 456}, + [7370] = {.lex_state = 456}, + [7371] = {.lex_state = 456}, + [7372] = {.lex_state = 456}, + [7373] = {.lex_state = 456}, + [7374] = {.lex_state = 456}, + [7375] = {.lex_state = 456}, + [7376] = {.lex_state = 456}, + [7377] = {.lex_state = 456}, + [7378] = {.lex_state = 456}, + [7379] = {.lex_state = 456}, + [7380] = {.lex_state = 456}, + [7381] = {.lex_state = 456}, + [7382] = {.lex_state = 456}, + [7383] = {.lex_state = 456}, + [7384] = {.lex_state = 456}, + [7385] = {.lex_state = 456}, + [7386] = {.lex_state = 456}, + [7387] = {.lex_state = 456}, + [7388] = {.lex_state = 456}, + [7389] = {.lex_state = 456}, + [7390] = {.lex_state = 456}, + [7391] = {.lex_state = 456}, + [7392] = {.lex_state = 456}, + [7393] = {.lex_state = 456}, + [7394] = {.lex_state = 456}, + [7395] = {.lex_state = 456}, + [7396] = {.lex_state = 456}, + [7397] = {.lex_state = 456}, + [7398] = {.lex_state = 456}, + [7399] = {.lex_state = 456}, + [7400] = {.lex_state = 456}, + [7401] = {.lex_state = 456}, + [7402] = {.lex_state = 456}, + [7403] = {.lex_state = 456}, + [7404] = {.lex_state = 456}, + [7405] = {.lex_state = 456}, + [7406] = {.lex_state = 456}, + [7407] = {.lex_state = 456}, + [7408] = {.lex_state = 456}, + [7409] = {.lex_state = 456}, + [7410] = {.lex_state = 456}, + [7411] = {.lex_state = 456}, + [7412] = {.lex_state = 456}, + [7413] = {.lex_state = 456}, + [7414] = {.lex_state = 456}, + [7415] = {.lex_state = 457}, + [7416] = {.lex_state = 457}, + [7417] = {.lex_state = 142}, + [7418] = {.lex_state = 144}, + [7419] = {.lex_state = 146}, + [7420] = {.lex_state = 145}, + [7421] = {.lex_state = 145}, + [7422] = {.lex_state = 145}, + [7423] = {.lex_state = 145}, + [7424] = {.lex_state = 145}, + [7425] = {.lex_state = 145}, + [7426] = {.lex_state = 146}, + [7427] = {.lex_state = 145}, + [7428] = {.lex_state = 145}, + [7429] = {.lex_state = 145}, + [7430] = {.lex_state = 145}, + [7431] = {.lex_state = 145}, + [7432] = {.lex_state = 145}, + [7433] = {.lex_state = 145}, + [7434] = {.lex_state = 145}, + [7435] = {.lex_state = 146}, + [7436] = {.lex_state = 145}, + [7437] = {.lex_state = 145}, + [7438] = {.lex_state = 145}, + [7439] = {.lex_state = 145}, + [7440] = {.lex_state = 145}, + [7441] = {.lex_state = 146}, + [7442] = {.lex_state = 146}, + [7443] = {.lex_state = 145}, + [7444] = {.lex_state = 145}, + [7445] = {.lex_state = 145}, + [7446] = {.lex_state = 146}, + [7447] = {.lex_state = 145}, + [7448] = {.lex_state = 146}, + [7449] = {.lex_state = 145}, + [7450] = {.lex_state = 146}, + [7451] = {.lex_state = 146}, + [7452] = {.lex_state = 145}, + [7453] = {.lex_state = 145}, + [7454] = {.lex_state = 145}, + [7455] = {.lex_state = 145}, + [7456] = {.lex_state = 145}, + [7457] = {.lex_state = 146}, + [7458] = {.lex_state = 145}, + [7459] = {.lex_state = 145}, + [7460] = {.lex_state = 145}, + [7461] = {.lex_state = 145}, + [7462] = {.lex_state = 145}, + [7463] = {.lex_state = 145}, + [7464] = {.lex_state = 145}, + [7465] = {.lex_state = 145}, + [7466] = {.lex_state = 145}, + [7467] = {.lex_state = 145}, + [7468] = {.lex_state = 145}, + [7469] = {.lex_state = 145}, + [7470] = {.lex_state = 145}, + [7471] = {.lex_state = 145}, + [7472] = {.lex_state = 145}, + [7473] = {.lex_state = 145}, + [7474] = {.lex_state = 145}, + [7475] = {.lex_state = 145}, + [7476] = {.lex_state = 145}, + [7477] = {.lex_state = 145}, + [7478] = {.lex_state = 145}, + [7479] = {.lex_state = 145}, + [7480] = {.lex_state = 145}, + [7481] = {.lex_state = 145}, + [7482] = {.lex_state = 145}, + [7483] = {.lex_state = 145}, + [7484] = {.lex_state = 145}, + [7485] = {.lex_state = 145}, + [7486] = {.lex_state = 145}, + [7487] = {.lex_state = 145}, + [7488] = {.lex_state = 145}, + [7489] = {.lex_state = 145}, + [7490] = {.lex_state = 145}, + [7491] = {.lex_state = 145}, + [7492] = {.lex_state = 145}, + [7493] = {.lex_state = 145}, + [7494] = {.lex_state = 145}, + [7495] = {.lex_state = 145}, + [7496] = {.lex_state = 145}, + [7497] = {.lex_state = 145}, + [7498] = {.lex_state = 145}, + [7499] = {.lex_state = 145}, + [7500] = {.lex_state = 145}, + [7501] = {.lex_state = 145}, + [7502] = {.lex_state = 145}, + [7503] = {.lex_state = 145}, + [7504] = {.lex_state = 145}, + [7505] = {.lex_state = 145}, + [7506] = {.lex_state = 145}, + [7507] = {.lex_state = 145}, + [7508] = {.lex_state = 145}, + [7509] = {.lex_state = 145}, + [7510] = {.lex_state = 145}, + [7511] = {.lex_state = 146}, + [7512] = {.lex_state = 145}, + [7513] = {.lex_state = 145}, + [7514] = {.lex_state = 145}, + [7515] = {.lex_state = 145}, + [7516] = {.lex_state = 145}, + [7517] = {.lex_state = 145}, + [7518] = {.lex_state = 145}, + [7519] = {.lex_state = 145}, + [7520] = {.lex_state = 145}, + [7521] = {.lex_state = 145}, + [7522] = {.lex_state = 145}, + [7523] = {.lex_state = 146}, + [7524] = {.lex_state = 145}, + [7525] = {.lex_state = 145}, + [7526] = {.lex_state = 145}, + [7527] = {.lex_state = 145}, + [7528] = {.lex_state = 145}, + [7529] = {.lex_state = 145}, + [7530] = {.lex_state = 458}, + [7531] = {.lex_state = 145}, + [7532] = {.lex_state = 145}, + [7533] = {.lex_state = 145}, + [7534] = {.lex_state = 145}, + [7535] = {.lex_state = 145}, + [7536] = {.lex_state = 145}, + [7537] = {.lex_state = 145}, + [7538] = {.lex_state = 145}, + [7539] = {.lex_state = 145}, + [7540] = {.lex_state = 145}, + [7541] = {.lex_state = 145}, + [7542] = {.lex_state = 145}, + [7543] = {.lex_state = 145}, + [7544] = {.lex_state = 145}, + [7545] = {.lex_state = 145}, + [7546] = {.lex_state = 145}, + [7547] = {.lex_state = 145}, + [7548] = {.lex_state = 145}, + [7549] = {.lex_state = 145}, + [7550] = {.lex_state = 146}, + [7551] = {.lex_state = 145}, + [7552] = {.lex_state = 457}, + [7553] = {.lex_state = 457}, + [7554] = {.lex_state = 145}, + [7555] = {.lex_state = 458}, + [7556] = {.lex_state = 457}, + [7557] = {.lex_state = 457}, + [7558] = {.lex_state = 145}, + [7559] = {.lex_state = 145}, + [7560] = {.lex_state = 458}, + [7561] = {.lex_state = 145}, + [7562] = {.lex_state = 457}, + [7563] = {.lex_state = 458}, + [7564] = {.lex_state = 458}, + [7565] = {.lex_state = 458}, + [7566] = {.lex_state = 458}, + [7567] = {.lex_state = 457}, + [7568] = {.lex_state = 457}, + [7569] = {.lex_state = 145}, + [7570] = {.lex_state = 145}, + [7571] = {.lex_state = 457}, + [7572] = {.lex_state = 145}, + [7573] = {.lex_state = 145}, + [7574] = {.lex_state = 145}, + [7575] = {.lex_state = 457}, + [7576] = {.lex_state = 458}, + [7577] = {.lex_state = 145}, + [7578] = {.lex_state = 145}, + [7579] = {.lex_state = 145}, + [7580] = {.lex_state = 145}, + [7581] = {.lex_state = 145}, + [7582] = {.lex_state = 458}, + [7583] = {.lex_state = 145}, + [7584] = {.lex_state = 145}, + [7585] = {.lex_state = 145}, + [7586] = {.lex_state = 457}, + [7587] = {.lex_state = 458}, + [7588] = {.lex_state = 145}, + [7589] = {.lex_state = 145}, + [7590] = {.lex_state = 458}, + [7591] = {.lex_state = 145}, + [7592] = {.lex_state = 457}, + [7593] = {.lex_state = 145}, + [7594] = {.lex_state = 457}, + [7595] = {.lex_state = 145}, + [7596] = {.lex_state = 145}, + [7597] = {.lex_state = 145}, + [7598] = {.lex_state = 145}, + [7599] = {.lex_state = 145}, + [7600] = {.lex_state = 145}, + [7601] = {.lex_state = 145}, + [7602] = {.lex_state = 145}, + [7603] = {.lex_state = 145}, + [7604] = {.lex_state = 457}, + [7605] = {.lex_state = 457}, + [7606] = {.lex_state = 145}, + [7607] = {.lex_state = 145}, + [7608] = {.lex_state = 145}, + [7609] = {.lex_state = 458}, + [7610] = {.lex_state = 145}, + [7611] = {.lex_state = 145}, + [7612] = {.lex_state = 457}, + [7613] = {.lex_state = 458}, + [7614] = {.lex_state = 145}, + [7615] = {.lex_state = 458}, + [7616] = {.lex_state = 457}, + [7617] = {.lex_state = 145}, + [7618] = {.lex_state = 145}, + [7619] = {.lex_state = 457}, + [7620] = {.lex_state = 145}, + [7621] = {.lex_state = 145}, + [7622] = {.lex_state = 145}, + [7623] = {.lex_state = 457}, + [7624] = {.lex_state = 145}, + [7625] = {.lex_state = 145}, + [7626] = {.lex_state = 457}, + [7627] = {.lex_state = 145}, + [7628] = {.lex_state = 145}, + [7629] = {.lex_state = 145}, + [7630] = {.lex_state = 145}, + [7631] = {.lex_state = 457}, + [7632] = {.lex_state = 457}, + [7633] = {.lex_state = 457}, + [7634] = {.lex_state = 458}, + [7635] = {.lex_state = 457}, + [7636] = {.lex_state = 457}, + [7637] = {.lex_state = 457}, + [7638] = {.lex_state = 457}, + [7639] = {.lex_state = 457}, + [7640] = {.lex_state = 457}, + [7641] = {.lex_state = 457}, + [7642] = {.lex_state = 457}, + [7643] = {.lex_state = 457}, + [7644] = {.lex_state = 458}, + [7645] = {.lex_state = 457}, + [7646] = {.lex_state = 457}, + [7647] = {.lex_state = 458}, + [7648] = {.lex_state = 457}, + [7649] = {.lex_state = 457}, + [7650] = {.lex_state = 458}, + [7651] = {.lex_state = 457}, + [7652] = {.lex_state = 457}, + [7653] = {.lex_state = 457}, + [7654] = {.lex_state = 457}, + [7655] = {.lex_state = 457}, + [7656] = {.lex_state = 458}, + [7657] = {.lex_state = 457}, + [7658] = {.lex_state = 457}, + [7659] = {.lex_state = 457}, + [7660] = {.lex_state = 457}, + [7661] = {.lex_state = 457}, + [7662] = {.lex_state = 458}, + [7663] = {.lex_state = 457}, + [7664] = {.lex_state = 457}, + [7665] = {.lex_state = 457}, + [7666] = {.lex_state = 458}, + [7667] = {.lex_state = 457}, + [7668] = {.lex_state = 457}, + [7669] = {.lex_state = 457}, + [7670] = {.lex_state = 458}, + [7671] = {.lex_state = 457}, + [7672] = {.lex_state = 457}, + [7673] = {.lex_state = 457}, + [7674] = {.lex_state = 457}, + [7675] = {.lex_state = 145}, + [7676] = {.lex_state = 457}, + [7677] = {.lex_state = 457}, + [7678] = {.lex_state = 457}, + [7679] = {.lex_state = 457}, + [7680] = {.lex_state = 145}, + [7681] = {.lex_state = 458}, + [7682] = {.lex_state = 145}, + [7683] = {.lex_state = 458}, + [7684] = {.lex_state = 457}, + [7685] = {.lex_state = 457}, + [7686] = {.lex_state = 457}, + [7687] = {.lex_state = 457}, + [7688] = {.lex_state = 457}, + [7689] = {.lex_state = 457}, + [7690] = {.lex_state = 457}, + [7691] = {.lex_state = 457}, + [7692] = {.lex_state = 458}, + [7693] = {.lex_state = 145}, + [7694] = {.lex_state = 145}, + [7695] = {.lex_state = 145}, + [7696] = {.lex_state = 457}, + [7697] = {.lex_state = 145}, + [7698] = {.lex_state = 145}, + [7699] = {.lex_state = 145}, + [7700] = {.lex_state = 145}, + [7701] = {.lex_state = 145}, + [7702] = {.lex_state = 145}, + [7703] = {.lex_state = 145}, + [7704] = {.lex_state = 145}, + [7705] = {.lex_state = 145}, + [7706] = {.lex_state = 145}, + [7707] = {.lex_state = 145}, + [7708] = {.lex_state = 145}, + [7709] = {.lex_state = 145}, + [7710] = {.lex_state = 457}, + [7711] = {.lex_state = 145}, + [7712] = {.lex_state = 145}, + [7713] = {.lex_state = 145}, + [7714] = {.lex_state = 145}, + [7715] = {.lex_state = 145}, + [7716] = {.lex_state = 145}, + [7717] = {.lex_state = 145}, + [7718] = {.lex_state = 145}, + [7719] = {.lex_state = 145}, + [7720] = {.lex_state = 145}, + [7721] = {.lex_state = 145}, + [7722] = {.lex_state = 145}, + [7723] = {.lex_state = 145}, + [7724] = {.lex_state = 145}, + [7725] = {.lex_state = 145}, + [7726] = {.lex_state = 145}, + [7727] = {.lex_state = 145}, + [7728] = {.lex_state = 145}, + [7729] = {.lex_state = 457}, + [7730] = {.lex_state = 145}, + [7731] = {.lex_state = 145}, + [7732] = {.lex_state = 145}, + [7733] = {.lex_state = 145}, + [7734] = {.lex_state = 145}, + [7735] = {.lex_state = 145}, + [7736] = {.lex_state = 145}, + [7737] = {.lex_state = 145}, + [7738] = {.lex_state = 145}, + [7739] = {.lex_state = 145}, + [7740] = {.lex_state = 145}, + [7741] = {.lex_state = 145}, + [7742] = {.lex_state = 145}, + [7743] = {.lex_state = 145}, + [7744] = {.lex_state = 457}, + [7745] = {.lex_state = 145}, + [7746] = {.lex_state = 145}, + [7747] = {.lex_state = 145}, + [7748] = {.lex_state = 145}, + [7749] = {.lex_state = 145}, + [7750] = {.lex_state = 145}, + [7751] = {.lex_state = 145}, + [7752] = {.lex_state = 145}, + [7753] = {.lex_state = 145}, + [7754] = {.lex_state = 145}, + [7755] = {.lex_state = 145}, + [7756] = {.lex_state = 145}, + [7757] = {.lex_state = 145}, + [7758] = {.lex_state = 145}, + [7759] = {.lex_state = 145}, + [7760] = {.lex_state = 145}, + [7761] = {.lex_state = 145}, + [7762] = {.lex_state = 145}, + [7763] = {.lex_state = 145}, + [7764] = {.lex_state = 145}, + [7765] = {.lex_state = 145}, + [7766] = {.lex_state = 145}, + [7767] = {.lex_state = 145}, + [7768] = {.lex_state = 145}, + [7769] = {.lex_state = 145}, + [7770] = {.lex_state = 145}, + [7771] = {.lex_state = 145}, + [7772] = {.lex_state = 145}, + [7773] = {.lex_state = 145}, + [7774] = {.lex_state = 145}, + [7775] = {.lex_state = 145}, + [7776] = {.lex_state = 145}, + [7777] = {.lex_state = 145}, + [7778] = {.lex_state = 145}, + [7779] = {.lex_state = 145}, + [7780] = {.lex_state = 145}, + [7781] = {.lex_state = 145}, + [7782] = {.lex_state = 145}, + [7783] = {.lex_state = 145}, + [7784] = {.lex_state = 145}, + [7785] = {.lex_state = 145}, + [7786] = {.lex_state = 145}, + [7787] = {.lex_state = 145}, + [7788] = {.lex_state = 145}, + [7789] = {.lex_state = 145}, + [7790] = {.lex_state = 145}, + [7791] = {.lex_state = 145}, + [7792] = {.lex_state = 145}, + [7793] = {.lex_state = 145}, + [7794] = {.lex_state = 145}, + [7795] = {.lex_state = 145}, + [7796] = {.lex_state = 145}, + [7797] = {.lex_state = 145}, + [7798] = {.lex_state = 145}, + [7799] = {.lex_state = 145}, + [7800] = {.lex_state = 145}, + [7801] = {.lex_state = 145}, + [7802] = {.lex_state = 145}, + [7803] = {.lex_state = 145}, + [7804] = {.lex_state = 145}, + [7805] = {.lex_state = 145}, + [7806] = {.lex_state = 145}, + [7807] = {.lex_state = 145}, + [7808] = {.lex_state = 145}, + [7809] = {.lex_state = 145}, + [7810] = {.lex_state = 145}, + [7811] = {.lex_state = 145}, + [7812] = {.lex_state = 145}, + [7813] = {.lex_state = 145}, + [7814] = {.lex_state = 145}, + [7815] = {.lex_state = 145}, + [7816] = {.lex_state = 145}, + [7817] = {.lex_state = 145}, + [7818] = {.lex_state = 145}, + [7819] = {.lex_state = 145}, + [7820] = {.lex_state = 145}, + [7821] = {.lex_state = 145}, + [7822] = {.lex_state = 145}, + [7823] = {.lex_state = 145}, + [7824] = {.lex_state = 145}, + [7825] = {.lex_state = 145}, + [7826] = {.lex_state = 145}, + [7827] = {.lex_state = 145}, + [7828] = {.lex_state = 145}, + [7829] = {.lex_state = 145}, + [7830] = {.lex_state = 145}, + [7831] = {.lex_state = 145}, + [7832] = {.lex_state = 145}, + [7833] = {.lex_state = 145}, + [7834] = {.lex_state = 145}, + [7835] = {.lex_state = 145}, + [7836] = {.lex_state = 145}, + [7837] = {.lex_state = 145}, + [7838] = {.lex_state = 145}, + [7839] = {.lex_state = 145}, + [7840] = {.lex_state = 145}, + [7841] = {.lex_state = 145}, + [7842] = {.lex_state = 145}, + [7843] = {.lex_state = 145}, + [7844] = {.lex_state = 145}, + [7845] = {.lex_state = 145}, + [7846] = {.lex_state = 145}, + [7847] = {.lex_state = 145}, + [7848] = {.lex_state = 145}, + [7849] = {.lex_state = 145}, + [7850] = {.lex_state = 145}, + [7851] = {.lex_state = 145}, + [7852] = {.lex_state = 145}, + [7853] = {.lex_state = 145}, + [7854] = {.lex_state = 145}, + [7855] = {.lex_state = 145}, + [7856] = {.lex_state = 145}, + [7857] = {.lex_state = 145}, + [7858] = {.lex_state = 145}, + [7859] = {.lex_state = 145}, + [7860] = {.lex_state = 145}, + [7861] = {.lex_state = 145}, + [7862] = {.lex_state = 145}, + [7863] = {.lex_state = 145}, + [7864] = {.lex_state = 145}, + [7865] = {.lex_state = 145}, + [7866] = {.lex_state = 145}, + [7867] = {.lex_state = 145}, + [7868] = {.lex_state = 145}, + [7869] = {.lex_state = 145}, + [7870] = {.lex_state = 145}, + [7871] = {.lex_state = 145}, + [7872] = {.lex_state = 145}, + [7873] = {.lex_state = 145}, + [7874] = {.lex_state = 145}, + [7875] = {.lex_state = 145}, + [7876] = {.lex_state = 145}, + [7877] = {.lex_state = 145}, + [7878] = {.lex_state = 145}, + [7879] = {.lex_state = 145}, + [7880] = {.lex_state = 145}, + [7881] = {.lex_state = 145}, + [7882] = {.lex_state = 145}, + [7883] = {.lex_state = 145}, + [7884] = {.lex_state = 145}, + [7885] = {.lex_state = 145}, + [7886] = {.lex_state = 145}, + [7887] = {.lex_state = 145}, + [7888] = {.lex_state = 145}, + [7889] = {.lex_state = 145}, + [7890] = {.lex_state = 145}, + [7891] = {.lex_state = 145}, + [7892] = {.lex_state = 145}, + [7893] = {.lex_state = 145}, + [7894] = {.lex_state = 145}, + [7895] = {.lex_state = 145}, + [7896] = {.lex_state = 145}, + [7897] = {.lex_state = 145}, + [7898] = {.lex_state = 145}, + [7899] = {.lex_state = 145}, + [7900] = {.lex_state = 145}, + [7901] = {.lex_state = 145}, + [7902] = {.lex_state = 145}, + [7903] = {.lex_state = 145}, + [7904] = {.lex_state = 145}, + [7905] = {.lex_state = 145}, + [7906] = {.lex_state = 145}, + [7907] = {.lex_state = 145}, + [7908] = {.lex_state = 145}, + [7909] = {.lex_state = 145}, + [7910] = {.lex_state = 145}, + [7911] = {.lex_state = 145}, + [7912] = {.lex_state = 145}, + [7913] = {.lex_state = 145}, + [7914] = {.lex_state = 145}, + [7915] = {.lex_state = 145}, + [7916] = {.lex_state = 145}, + [7917] = {.lex_state = 457}, + [7918] = {.lex_state = 457}, + [7919] = {.lex_state = 457}, + [7920] = {.lex_state = 457}, + [7921] = {.lex_state = 457}, + [7922] = {.lex_state = 457}, + [7923] = {.lex_state = 457}, + [7924] = {.lex_state = 457}, + [7925] = {.lex_state = 457}, + [7926] = {.lex_state = 457}, + [7927] = {.lex_state = 457}, + [7928] = {.lex_state = 457}, + [7929] = {.lex_state = 457}, + [7930] = {.lex_state = 457}, + [7931] = {.lex_state = 457}, + [7932] = {.lex_state = 457}, + [7933] = {.lex_state = 457}, + [7934] = {.lex_state = 457}, + [7935] = {.lex_state = 457}, + [7936] = {.lex_state = 457}, + [7937] = {.lex_state = 457}, + [7938] = {.lex_state = 457}, + [7939] = {.lex_state = 457}, + [7940] = {.lex_state = 457}, + [7941] = {.lex_state = 457}, + [7942] = {.lex_state = 457}, + [7943] = {.lex_state = 457}, + [7944] = {.lex_state = 457}, + [7945] = {.lex_state = 457}, + [7946] = {.lex_state = 457}, + [7947] = {.lex_state = 457}, + [7948] = {.lex_state = 457}, + [7949] = {.lex_state = 457}, + [7950] = {.lex_state = 457}, + [7951] = {.lex_state = 457}, + [7952] = {.lex_state = 457}, + [7953] = {.lex_state = 457}, + [7954] = {.lex_state = 457}, + [7955] = {.lex_state = 457}, + [7956] = {.lex_state = 457}, + [7957] = {.lex_state = 457}, + [7958] = {.lex_state = 457}, + [7959] = {.lex_state = 457}, + [7960] = {.lex_state = 457}, + [7961] = {.lex_state = 457}, + [7962] = {.lex_state = 457}, + [7963] = {.lex_state = 457}, + [7964] = {.lex_state = 457}, + [7965] = {.lex_state = 457}, + [7966] = {.lex_state = 457}, + [7967] = {.lex_state = 457}, + [7968] = {.lex_state = 457}, + [7969] = {.lex_state = 457}, + [7970] = {.lex_state = 457}, + [7971] = {.lex_state = 457}, + [7972] = {.lex_state = 457}, + [7973] = {.lex_state = 457}, + [7974] = {.lex_state = 457}, + [7975] = {.lex_state = 457}, + [7976] = {.lex_state = 457}, + [7977] = {.lex_state = 457}, + [7978] = {.lex_state = 457}, + [7979] = {.lex_state = 457}, + [7980] = {.lex_state = 457}, + [7981] = {.lex_state = 457}, + [7982] = {.lex_state = 457}, + [7983] = {.lex_state = 457}, + [7984] = {.lex_state = 457}, + [7985] = {.lex_state = 457}, + [7986] = {.lex_state = 457}, + [7987] = {.lex_state = 457}, + [7988] = {.lex_state = 457}, + [7989] = {.lex_state = 457}, + [7990] = {.lex_state = 457}, + [7991] = {.lex_state = 457}, + [7992] = {.lex_state = 457}, + [7993] = {.lex_state = 457}, + [7994] = {.lex_state = 457}, + [7995] = {.lex_state = 457}, + [7996] = {.lex_state = 457}, + [7997] = {.lex_state = 457}, + [7998] = {.lex_state = 457}, + [7999] = {.lex_state = 457}, + [8000] = {.lex_state = 457}, + [8001] = {.lex_state = 457}, + [8002] = {.lex_state = 457}, + [8003] = {.lex_state = 457}, + [8004] = {.lex_state = 457}, + [8005] = {.lex_state = 457}, + [8006] = {.lex_state = 457}, + [8007] = {.lex_state = 457}, + [8008] = {.lex_state = 457}, + [8009] = {.lex_state = 457}, + [8010] = {.lex_state = 457}, + [8011] = {.lex_state = 457}, + [8012] = {.lex_state = 145}, + [8013] = {.lex_state = 145}, + [8014] = {.lex_state = 151}, + [8015] = {.lex_state = 145}, + [8016] = {.lex_state = 145}, + [8017] = {.lex_state = 145}, + [8018] = {.lex_state = 145}, + [8019] = {.lex_state = 145}, + [8020] = {.lex_state = 145}, + [8021] = {.lex_state = 145}, + [8022] = {.lex_state = 145}, + [8023] = {.lex_state = 145}, + [8024] = {.lex_state = 145}, + [8025] = {.lex_state = 145}, + [8026] = {.lex_state = 145}, + [8027] = {.lex_state = 146}, + [8028] = {.lex_state = 145}, + [8029] = {.lex_state = 145}, + [8030] = {.lex_state = 145}, + [8031] = {.lex_state = 145}, + [8032] = {.lex_state = 145}, + [8033] = {.lex_state = 145}, + [8034] = {.lex_state = 145}, + [8035] = {.lex_state = 145}, + [8036] = {.lex_state = 145}, + [8037] = {.lex_state = 145}, + [8038] = {.lex_state = 145}, + [8039] = {.lex_state = 145}, + [8040] = {.lex_state = 145}, + [8041] = {.lex_state = 145}, + [8042] = {.lex_state = 145}, + [8043] = {.lex_state = 145}, + [8044] = {.lex_state = 151}, + [8045] = {.lex_state = 145}, + [8046] = {.lex_state = 145}, + [8047] = {.lex_state = 145}, + [8048] = {.lex_state = 145}, + [8049] = {.lex_state = 145}, + [8050] = {.lex_state = 145}, + [8051] = {.lex_state = 145}, + [8052] = {.lex_state = 145}, + [8053] = {.lex_state = 145}, + [8054] = {.lex_state = 145}, + [8055] = {.lex_state = 145}, + [8056] = {.lex_state = 145}, + [8057] = {.lex_state = 145}, + [8058] = {.lex_state = 145}, + [8059] = {.lex_state = 145}, + [8060] = {.lex_state = 145}, + [8061] = {.lex_state = 145}, + [8062] = {.lex_state = 145}, + [8063] = {.lex_state = 145}, + [8064] = {.lex_state = 145}, + [8065] = {.lex_state = 145}, + [8066] = {.lex_state = 145}, + [8067] = {.lex_state = 145}, + [8068] = {.lex_state = 145}, + [8069] = {.lex_state = 145}, + [8070] = {.lex_state = 145}, + [8071] = {.lex_state = 145}, + [8072] = {.lex_state = 145}, + [8073] = {.lex_state = 145}, + [8074] = {.lex_state = 145}, + [8075] = {.lex_state = 145}, + [8076] = {.lex_state = 145}, + [8077] = {.lex_state = 145}, + [8078] = {.lex_state = 145}, + [8079] = {.lex_state = 145}, + [8080] = {.lex_state = 145}, + [8081] = {.lex_state = 145}, + [8082] = {.lex_state = 145}, + [8083] = {.lex_state = 145}, + [8084] = {.lex_state = 145}, + [8085] = {.lex_state = 145}, + [8086] = {.lex_state = 145}, + [8087] = {.lex_state = 145}, + [8088] = {.lex_state = 145}, + [8089] = {.lex_state = 145}, + [8090] = {.lex_state = 145}, + [8091] = {.lex_state = 145}, + [8092] = {.lex_state = 145}, + [8093] = {.lex_state = 145}, + [8094] = {.lex_state = 145}, + [8095] = {.lex_state = 145}, + [8096] = {.lex_state = 145}, + [8097] = {.lex_state = 145}, + [8098] = {.lex_state = 145}, + [8099] = {.lex_state = 145}, + [8100] = {.lex_state = 145}, + [8101] = {.lex_state = 145}, + [8102] = {.lex_state = 145}, + [8103] = {.lex_state = 145}, + [8104] = {.lex_state = 145}, + [8105] = {.lex_state = 145}, + [8106] = {.lex_state = 145}, + [8107] = {.lex_state = 145}, + [8108] = {.lex_state = 145}, + [8109] = {.lex_state = 145}, + [8110] = {.lex_state = 145}, + [8111] = {.lex_state = 145}, + [8112] = {.lex_state = 145}, + [8113] = {.lex_state = 145}, + [8114] = {.lex_state = 145}, + [8115] = {.lex_state = 145}, + [8116] = {.lex_state = 145}, + [8117] = {.lex_state = 145}, + [8118] = {.lex_state = 145}, + [8119] = {.lex_state = 145}, + [8120] = {.lex_state = 145}, + [8121] = {.lex_state = 145}, + [8122] = {.lex_state = 145}, + [8123] = {.lex_state = 145}, + [8124] = {.lex_state = 145}, + [8125] = {.lex_state = 145}, + [8126] = {.lex_state = 145}, + [8127] = {.lex_state = 145}, + [8128] = {.lex_state = 145}, + [8129] = {.lex_state = 145}, + [8130] = {.lex_state = 145}, + [8131] = {.lex_state = 145}, + [8132] = {.lex_state = 145}, + [8133] = {.lex_state = 145}, + [8134] = {.lex_state = 145}, + [8135] = {.lex_state = 153}, + [8136] = {.lex_state = 145}, + [8137] = {.lex_state = 145}, + [8138] = {.lex_state = 145}, + [8139] = {.lex_state = 145}, + [8140] = {.lex_state = 145}, + [8141] = {.lex_state = 145}, + [8142] = {.lex_state = 145}, + [8143] = {.lex_state = 145}, + [8144] = {.lex_state = 145}, + [8145] = {.lex_state = 145}, + [8146] = {.lex_state = 145}, + [8147] = {.lex_state = 145}, + [8148] = {.lex_state = 145}, + [8149] = {.lex_state = 145}, + [8150] = {.lex_state = 145}, + [8151] = {.lex_state = 145}, + [8152] = {.lex_state = 145}, + [8153] = {.lex_state = 145}, + [8154] = {.lex_state = 145}, + [8155] = {.lex_state = 145}, + [8156] = {.lex_state = 145}, + [8157] = {.lex_state = 145}, + [8158] = {.lex_state = 145}, + [8159] = {.lex_state = 145}, + [8160] = {.lex_state = 145}, + [8161] = {.lex_state = 145}, + [8162] = {.lex_state = 145}, + [8163] = {.lex_state = 145}, + [8164] = {.lex_state = 145}, + [8165] = {.lex_state = 145}, + [8166] = {.lex_state = 145}, + [8167] = {.lex_state = 145}, + [8168] = {.lex_state = 145}, + [8169] = {.lex_state = 145}, + [8170] = {.lex_state = 145}, + [8171] = {.lex_state = 145}, + [8172] = {.lex_state = 145}, + [8173] = {.lex_state = 145}, + [8174] = {.lex_state = 145}, + [8175] = {.lex_state = 145}, + [8176] = {.lex_state = 145}, + [8177] = {.lex_state = 145}, + [8178] = {.lex_state = 145}, + [8179] = {.lex_state = 145}, + [8180] = {.lex_state = 145}, + [8181] = {.lex_state = 145}, + [8182] = {.lex_state = 145}, + [8183] = {.lex_state = 145}, + [8184] = {.lex_state = 145}, + [8185] = {.lex_state = 145}, + [8186] = {.lex_state = 145}, + [8187] = {.lex_state = 145}, + [8188] = {.lex_state = 145}, + [8189] = {.lex_state = 145}, + [8190] = {.lex_state = 145}, + [8191] = {.lex_state = 145}, + [8192] = {.lex_state = 145}, + [8193] = {.lex_state = 145}, + [8194] = {.lex_state = 145}, + [8195] = {.lex_state = 145}, + [8196] = {.lex_state = 145}, + [8197] = {.lex_state = 145}, + [8198] = {.lex_state = 145}, + [8199] = {.lex_state = 145}, + [8200] = {.lex_state = 145}, + [8201] = {.lex_state = 145}, + [8202] = {.lex_state = 145}, + [8203] = {.lex_state = 145}, + [8204] = {.lex_state = 145}, + [8205] = {.lex_state = 145}, + [8206] = {.lex_state = 145}, + [8207] = {.lex_state = 145}, + [8208] = {.lex_state = 145}, + [8209] = {.lex_state = 145}, + [8210] = {.lex_state = 145}, + [8211] = {.lex_state = 145}, + [8212] = {.lex_state = 145}, + [8213] = {.lex_state = 145}, + [8214] = {.lex_state = 145}, + [8215] = {.lex_state = 145}, + [8216] = {.lex_state = 145}, + [8217] = {.lex_state = 145}, + [8218] = {.lex_state = 145}, + [8219] = {.lex_state = 145}, + [8220] = {.lex_state = 145}, + [8221] = {.lex_state = 145}, + [8222] = {.lex_state = 145}, + [8223] = {.lex_state = 145}, + [8224] = {.lex_state = 145}, + [8225] = {.lex_state = 145}, + [8226] = {.lex_state = 145}, + [8227] = {.lex_state = 145}, + [8228] = {.lex_state = 145}, + [8229] = {.lex_state = 145}, + [8230] = {.lex_state = 145}, + [8231] = {.lex_state = 145}, + [8232] = {.lex_state = 145}, + [8233] = {.lex_state = 145}, + [8234] = {.lex_state = 145}, + [8235] = {.lex_state = 145}, + [8236] = {.lex_state = 145}, + [8237] = {.lex_state = 145}, + [8238] = {.lex_state = 145}, + [8239] = {.lex_state = 145}, + [8240] = {.lex_state = 145}, + [8241] = {.lex_state = 145}, + [8242] = {.lex_state = 145}, + [8243] = {.lex_state = 145}, + [8244] = {.lex_state = 145}, + [8245] = {.lex_state = 145}, + [8246] = {.lex_state = 145}, + [8247] = {.lex_state = 145}, + [8248] = {.lex_state = 145}, + [8249] = {.lex_state = 145}, + [8250] = {.lex_state = 145}, + [8251] = {.lex_state = 145}, + [8252] = {.lex_state = 145}, + [8253] = {.lex_state = 145}, + [8254] = {.lex_state = 145}, + [8255] = {.lex_state = 145}, + [8256] = {.lex_state = 145}, + [8257] = {.lex_state = 145}, + [8258] = {.lex_state = 145}, + [8259] = {.lex_state = 145}, + [8260] = {.lex_state = 145}, + [8261] = {.lex_state = 145}, + [8262] = {.lex_state = 145}, + [8263] = {.lex_state = 145}, + [8264] = {.lex_state = 145}, + [8265] = {.lex_state = 145}, + [8266] = {.lex_state = 145}, + [8267] = {.lex_state = 145}, + [8268] = {.lex_state = 145}, + [8269] = {.lex_state = 145}, + [8270] = {.lex_state = 145}, + [8271] = {.lex_state = 145}, + [8272] = {.lex_state = 145}, + [8273] = {.lex_state = 145}, + [8274] = {.lex_state = 145}, + [8275] = {.lex_state = 145}, + [8276] = {.lex_state = 145}, + [8277] = {.lex_state = 145}, + [8278] = {.lex_state = 145}, + [8279] = {.lex_state = 145}, + [8280] = {.lex_state = 145}, + [8281] = {.lex_state = 145}, + [8282] = {.lex_state = 145}, + [8283] = {.lex_state = 145}, + [8284] = {.lex_state = 145}, + [8285] = {.lex_state = 145}, + [8286] = {.lex_state = 145}, + [8287] = {.lex_state = 145}, + [8288] = {.lex_state = 145}, + [8289] = {.lex_state = 145}, + [8290] = {.lex_state = 145}, + [8291] = {.lex_state = 145}, + [8292] = {.lex_state = 145}, + [8293] = {.lex_state = 145}, + [8294] = {.lex_state = 145}, + [8295] = {.lex_state = 145}, + [8296] = {.lex_state = 145}, + [8297] = {.lex_state = 145}, + [8298] = {.lex_state = 145}, + [8299] = {.lex_state = 145}, + [8300] = {.lex_state = 145}, + [8301] = {.lex_state = 145}, + [8302] = {.lex_state = 145}, + [8303] = {.lex_state = 145}, + [8304] = {.lex_state = 145}, + [8305] = {.lex_state = 145}, + [8306] = {.lex_state = 145}, + [8307] = {.lex_state = 145}, + [8308] = {.lex_state = 152}, + [8309] = {.lex_state = 145}, + [8310] = {.lex_state = 145}, + [8311] = {.lex_state = 145}, + [8312] = {.lex_state = 145}, + [8313] = {.lex_state = 145}, + [8314] = {.lex_state = 145}, + [8315] = {.lex_state = 145}, + [8316] = {.lex_state = 145}, + [8317] = {.lex_state = 145}, + [8318] = {.lex_state = 145}, + [8319] = {.lex_state = 145}, + [8320] = {.lex_state = 145}, + [8321] = {.lex_state = 145}, + [8322] = {.lex_state = 145}, + [8323] = {.lex_state = 145}, + [8324] = {.lex_state = 145}, + [8325] = {.lex_state = 145}, + [8326] = {.lex_state = 145}, + [8327] = {.lex_state = 145}, + [8328] = {.lex_state = 145}, + [8329] = {.lex_state = 145}, + [8330] = {.lex_state = 145}, + [8331] = {.lex_state = 145}, + [8332] = {.lex_state = 145}, + [8333] = {.lex_state = 145}, + [8334] = {.lex_state = 145}, + [8335] = {.lex_state = 145}, + [8336] = {.lex_state = 145}, + [8337] = {.lex_state = 145}, + [8338] = {.lex_state = 145}, + [8339] = {.lex_state = 145}, + [8340] = {.lex_state = 145}, + [8341] = {.lex_state = 145}, + [8342] = {.lex_state = 145}, + [8343] = {.lex_state = 145}, + [8344] = {.lex_state = 145}, + [8345] = {.lex_state = 145}, + [8346] = {.lex_state = 145}, + [8347] = {.lex_state = 145}, + [8348] = {.lex_state = 145}, + [8349] = {.lex_state = 145}, + [8350] = {.lex_state = 145}, + [8351] = {.lex_state = 145}, + [8352] = {.lex_state = 145}, + [8353] = {.lex_state = 145}, + [8354] = {.lex_state = 145}, + [8355] = {.lex_state = 145}, + [8356] = {.lex_state = 145}, + [8357] = {.lex_state = 145}, + [8358] = {.lex_state = 145}, + [8359] = {.lex_state = 145}, + [8360] = {.lex_state = 145}, + [8361] = {.lex_state = 145}, + [8362] = {.lex_state = 145}, + [8363] = {.lex_state = 145}, + [8364] = {.lex_state = 145}, + [8365] = {.lex_state = 145}, + [8366] = {.lex_state = 145}, + [8367] = {.lex_state = 145}, + [8368] = {.lex_state = 145}, + [8369] = {.lex_state = 145}, + [8370] = {.lex_state = 145}, + [8371] = {.lex_state = 145}, + [8372] = {.lex_state = 145}, + [8373] = {.lex_state = 145}, + [8374] = {.lex_state = 145}, + [8375] = {.lex_state = 145}, + [8376] = {.lex_state = 145}, + [8377] = {.lex_state = 145}, + [8378] = {.lex_state = 145}, + [8379] = {.lex_state = 145}, + [8380] = {.lex_state = 145}, + [8381] = {.lex_state = 145}, + [8382] = {.lex_state = 145}, + [8383] = {.lex_state = 145}, + [8384] = {.lex_state = 145}, + [8385] = {.lex_state = 145}, + [8386] = {.lex_state = 145}, + [8387] = {.lex_state = 145}, + [8388] = {.lex_state = 145}, + [8389] = {.lex_state = 145}, + [8390] = {.lex_state = 145}, + [8391] = {.lex_state = 145}, + [8392] = {.lex_state = 145}, + [8393] = {.lex_state = 145}, + [8394] = {.lex_state = 145}, + [8395] = {.lex_state = 145}, + [8396] = {.lex_state = 145}, + [8397] = {.lex_state = 145}, + [8398] = {.lex_state = 145}, + [8399] = {.lex_state = 145}, + [8400] = {.lex_state = 145}, + [8401] = {.lex_state = 145}, + [8402] = {.lex_state = 145}, + [8403] = {.lex_state = 145}, + [8404] = {.lex_state = 145}, + [8405] = {.lex_state = 145}, + [8406] = {.lex_state = 145}, + [8407] = {.lex_state = 145}, + [8408] = {.lex_state = 145}, + [8409] = {.lex_state = 145}, + [8410] = {.lex_state = 145}, + [8411] = {.lex_state = 145}, + [8412] = {.lex_state = 145}, + [8413] = {.lex_state = 145}, + [8414] = {.lex_state = 145}, + [8415] = {.lex_state = 145}, + [8416] = {.lex_state = 145}, + [8417] = {.lex_state = 145}, + [8418] = {.lex_state = 145}, + [8419] = {.lex_state = 145}, + [8420] = {.lex_state = 152}, + [8421] = {.lex_state = 145}, + [8422] = {.lex_state = 145}, + [8423] = {.lex_state = 145}, + [8424] = {.lex_state = 145}, + [8425] = {.lex_state = 152}, + [8426] = {.lex_state = 145}, + [8427] = {.lex_state = 145}, + [8428] = {.lex_state = 145}, + [8429] = {.lex_state = 152}, + [8430] = {.lex_state = 145}, + [8431] = {.lex_state = 145}, + [8432] = {.lex_state = 145}, + [8433] = {.lex_state = 152}, + [8434] = {.lex_state = 145}, + [8435] = {.lex_state = 145}, + [8436] = {.lex_state = 145}, + [8437] = {.lex_state = 152}, + [8438] = {.lex_state = 145}, + [8439] = {.lex_state = 145}, + [8440] = {.lex_state = 145}, + [8441] = {.lex_state = 152}, + [8442] = {.lex_state = 145}, + [8443] = {.lex_state = 145}, + [8444] = {.lex_state = 145}, + [8445] = {.lex_state = 152}, + [8446] = {.lex_state = 145}, + [8447] = {.lex_state = 145}, + [8448] = {.lex_state = 145}, + [8449] = {.lex_state = 152}, + [8450] = {.lex_state = 145}, + [8451] = {.lex_state = 145}, + [8452] = {.lex_state = 145}, + [8453] = {.lex_state = 145}, + [8454] = {.lex_state = 145}, + [8455] = {.lex_state = 145}, + [8456] = {.lex_state = 145}, + [8457] = {.lex_state = 145}, + [8458] = {.lex_state = 145}, + [8459] = {.lex_state = 145}, + [8460] = {.lex_state = 145}, + [8461] = {.lex_state = 145}, + [8462] = {.lex_state = 145}, + [8463] = {.lex_state = 145}, + [8464] = {.lex_state = 145}, + [8465] = {.lex_state = 145}, + [8466] = {.lex_state = 145}, + [8467] = {.lex_state = 145}, + [8468] = {.lex_state = 145}, + [8469] = {.lex_state = 145}, + [8470] = {.lex_state = 145}, + [8471] = {.lex_state = 145}, + [8472] = {.lex_state = 145}, + [8473] = {.lex_state = 145}, + [8474] = {.lex_state = 145}, + [8475] = {.lex_state = 145}, + [8476] = {.lex_state = 145}, + [8477] = {.lex_state = 145}, + [8478] = {.lex_state = 145}, + [8479] = {.lex_state = 145}, + [8480] = {.lex_state = 145}, + [8481] = {.lex_state = 145}, + [8482] = {.lex_state = 145}, + [8483] = {.lex_state = 145}, + [8484] = {.lex_state = 145}, + [8485] = {.lex_state = 145}, + [8486] = {.lex_state = 145}, + [8487] = {.lex_state = 145}, + [8488] = {.lex_state = 145}, + [8489] = {.lex_state = 145}, + [8490] = {.lex_state = 145}, + [8491] = {.lex_state = 145}, + [8492] = {.lex_state = 145}, + [8493] = {.lex_state = 145}, + [8494] = {.lex_state = 145}, + [8495] = {.lex_state = 145}, + [8496] = {.lex_state = 145}, + [8497] = {.lex_state = 145}, + [8498] = {.lex_state = 145}, + [8499] = {.lex_state = 145}, + [8500] = {.lex_state = 145}, + [8501] = {.lex_state = 145}, + [8502] = {.lex_state = 145}, + [8503] = {.lex_state = 145}, + [8504] = {.lex_state = 145}, + [8505] = {.lex_state = 145}, + [8506] = {.lex_state = 145}, + [8507] = {.lex_state = 145}, + [8508] = {.lex_state = 145}, + [8509] = {.lex_state = 145}, + [8510] = {.lex_state = 145}, + [8511] = {.lex_state = 145}, + [8512] = {.lex_state = 145}, + [8513] = {.lex_state = 145}, + [8514] = {.lex_state = 145}, + [8515] = {.lex_state = 145}, + [8516] = {.lex_state = 145}, + [8517] = {.lex_state = 145}, + [8518] = {.lex_state = 145}, + [8519] = {.lex_state = 145}, + [8520] = {.lex_state = 145}, + [8521] = {.lex_state = 145}, + [8522] = {.lex_state = 145}, + [8523] = {.lex_state = 145}, + [8524] = {.lex_state = 145}, + [8525] = {.lex_state = 145}, + [8526] = {.lex_state = 145}, + [8527] = {.lex_state = 145}, + [8528] = {.lex_state = 145}, + [8529] = {.lex_state = 145}, + [8530] = {.lex_state = 145}, + [8531] = {.lex_state = 145}, + [8532] = {.lex_state = 145}, + [8533] = {.lex_state = 145}, + [8534] = {.lex_state = 145}, + [8535] = {.lex_state = 145}, + [8536] = {.lex_state = 145}, + [8537] = {.lex_state = 145}, + [8538] = {.lex_state = 145}, + [8539] = {.lex_state = 145}, + [8540] = {.lex_state = 145}, + [8541] = {.lex_state = 145}, + [8542] = {.lex_state = 145}, + [8543] = {.lex_state = 145}, + [8544] = {.lex_state = 145}, + [8545] = {.lex_state = 145}, + [8546] = {.lex_state = 145}, + [8547] = {.lex_state = 145}, + [8548] = {.lex_state = 145}, + [8549] = {.lex_state = 145}, + [8550] = {.lex_state = 145}, + [8551] = {.lex_state = 145}, + [8552] = {.lex_state = 145}, + [8553] = {.lex_state = 145}, + [8554] = {.lex_state = 145}, + [8555] = {.lex_state = 145}, + [8556] = {.lex_state = 145}, + [8557] = {.lex_state = 145}, + [8558] = {.lex_state = 145}, + [8559] = {.lex_state = 145}, + [8560] = {.lex_state = 145}, + [8561] = {.lex_state = 145}, + [8562] = {.lex_state = 145}, + [8563] = {.lex_state = 145}, + [8564] = {.lex_state = 145}, + [8565] = {.lex_state = 145}, + [8566] = {.lex_state = 145}, + [8567] = {.lex_state = 145}, + [8568] = {.lex_state = 145}, + [8569] = {.lex_state = 145}, + [8570] = {.lex_state = 145}, + [8571] = {.lex_state = 145}, + [8572] = {.lex_state = 145}, + [8573] = {.lex_state = 145}, + [8574] = {.lex_state = 145}, + [8575] = {.lex_state = 145}, + [8576] = {.lex_state = 145}, + [8577] = {.lex_state = 145}, + [8578] = {.lex_state = 145}, + [8579] = {.lex_state = 145}, + [8580] = {.lex_state = 145}, + [8581] = {.lex_state = 145}, + [8582] = {.lex_state = 145}, + [8583] = {.lex_state = 145}, + [8584] = {.lex_state = 145}, + [8585] = {.lex_state = 145}, + [8586] = {.lex_state = 145}, + [8587] = {.lex_state = 145}, + [8588] = {.lex_state = 145}, + [8589] = {.lex_state = 145}, + [8590] = {.lex_state = 145}, + [8591] = {.lex_state = 145}, + [8592] = {.lex_state = 145}, + [8593] = {.lex_state = 145}, + [8594] = {.lex_state = 145}, + [8595] = {.lex_state = 145}, + [8596] = {.lex_state = 145}, + [8597] = {.lex_state = 145}, + [8598] = {.lex_state = 145}, + [8599] = {.lex_state = 145}, + [8600] = {.lex_state = 145}, + [8601] = {.lex_state = 145}, + [8602] = {.lex_state = 145}, + [8603] = {.lex_state = 145}, + [8604] = {.lex_state = 145}, + [8605] = {.lex_state = 145}, + [8606] = {.lex_state = 145}, + [8607] = {.lex_state = 145}, + [8608] = {.lex_state = 145}, + [8609] = {.lex_state = 145}, + [8610] = {.lex_state = 145}, + [8611] = {.lex_state = 145}, + [8612] = {.lex_state = 145}, + [8613] = {.lex_state = 145}, + [8614] = {.lex_state = 145}, + [8615] = {.lex_state = 145}, + [8616] = {.lex_state = 145}, + [8617] = {.lex_state = 145}, + [8618] = {.lex_state = 145}, + [8619] = {.lex_state = 145}, + [8620] = {.lex_state = 145}, + [8621] = {.lex_state = 145}, + [8622] = {.lex_state = 145}, + [8623] = {.lex_state = 145}, + [8624] = {.lex_state = 145}, + [8625] = {.lex_state = 145}, + [8626] = {.lex_state = 145}, + [8627] = {.lex_state = 145}, + [8628] = {.lex_state = 145}, + [8629] = {.lex_state = 145}, + [8630] = {.lex_state = 145}, + [8631] = {.lex_state = 145}, + [8632] = {.lex_state = 145}, + [8633] = {.lex_state = 145}, + [8634] = {.lex_state = 145}, + [8635] = {.lex_state = 145}, + [8636] = {.lex_state = 145}, + [8637] = {.lex_state = 145}, + [8638] = {.lex_state = 145}, + [8639] = {.lex_state = 145}, + [8640] = {.lex_state = 145}, + [8641] = {.lex_state = 145}, + [8642] = {.lex_state = 145}, + [8643] = {.lex_state = 145}, + [8644] = {.lex_state = 145}, + [8645] = {.lex_state = 145}, + [8646] = {.lex_state = 145}, + [8647] = {.lex_state = 145}, + [8648] = {.lex_state = 145}, + [8649] = {.lex_state = 145}, + [8650] = {.lex_state = 145}, + [8651] = {.lex_state = 145}, + [8652] = {.lex_state = 145}, + [8653] = {.lex_state = 145}, + [8654] = {.lex_state = 145}, + [8655] = {.lex_state = 145}, + [8656] = {.lex_state = 145}, + [8657] = {.lex_state = 145}, + [8658] = {.lex_state = 145}, + [8659] = {.lex_state = 145}, + [8660] = {.lex_state = 145}, + [8661] = {.lex_state = 145}, + [8662] = {.lex_state = 145}, + [8663] = {.lex_state = 145}, + [8664] = {.lex_state = 145}, + [8665] = {.lex_state = 145}, + [8666] = {.lex_state = 145}, + [8667] = {.lex_state = 145}, + [8668] = {.lex_state = 145}, + [8669] = {.lex_state = 145}, + [8670] = {.lex_state = 145}, + [8671] = {.lex_state = 145}, + [8672] = {.lex_state = 145}, + [8673] = {.lex_state = 145}, + [8674] = {.lex_state = 145}, + [8675] = {.lex_state = 145}, + [8676] = {.lex_state = 145}, + [8677] = {.lex_state = 145}, + [8678] = {.lex_state = 145}, + [8679] = {.lex_state = 145}, + [8680] = {.lex_state = 145}, + [8681] = {.lex_state = 145}, + [8682] = {.lex_state = 145}, + [8683] = {.lex_state = 145}, + [8684] = {.lex_state = 145}, + [8685] = {.lex_state = 145}, + [8686] = {.lex_state = 145}, + [8687] = {.lex_state = 145}, + [8688] = {.lex_state = 145}, + [8689] = {.lex_state = 145}, + [8690] = {.lex_state = 145}, + [8691] = {.lex_state = 145}, + [8692] = {.lex_state = 145}, + [8693] = {.lex_state = 145}, + [8694] = {.lex_state = 145}, + [8695] = {.lex_state = 145}, + [8696] = {.lex_state = 145}, + [8697] = {.lex_state = 145}, + [8698] = {.lex_state = 145}, + [8699] = {.lex_state = 145}, + [8700] = {.lex_state = 145}, + [8701] = {.lex_state = 145}, + [8702] = {.lex_state = 145}, + [8703] = {.lex_state = 145}, + [8704] = {.lex_state = 145}, + [8705] = {.lex_state = 145}, + [8706] = {.lex_state = 145}, + [8707] = {.lex_state = 145}, + [8708] = {.lex_state = 145}, + [8709] = {.lex_state = 145}, + [8710] = {.lex_state = 145}, + [8711] = {.lex_state = 145}, + [8712] = {.lex_state = 145}, + [8713] = {.lex_state = 145}, + [8714] = {.lex_state = 145}, + [8715] = {.lex_state = 145}, + [8716] = {.lex_state = 145}, + [8717] = {.lex_state = 145}, + [8718] = {.lex_state = 145}, + [8719] = {.lex_state = 145}, + [8720] = {.lex_state = 145}, + [8721] = {.lex_state = 145}, + [8722] = {.lex_state = 145}, + [8723] = {.lex_state = 145}, + [8724] = {.lex_state = 145}, + [8725] = {.lex_state = 145}, + [8726] = {.lex_state = 145}, + [8727] = {.lex_state = 145}, + [8728] = {.lex_state = 145}, + [8729] = {.lex_state = 145}, + [8730] = {.lex_state = 145}, + [8731] = {.lex_state = 145}, + [8732] = {.lex_state = 145}, + [8733] = {.lex_state = 145}, + [8734] = {.lex_state = 145}, + [8735] = {.lex_state = 145}, + [8736] = {.lex_state = 145}, + [8737] = {.lex_state = 145}, + [8738] = {.lex_state = 145}, + [8739] = {.lex_state = 145}, + [8740] = {.lex_state = 145}, + [8741] = {.lex_state = 145}, + [8742] = {.lex_state = 145}, + [8743] = {.lex_state = 145}, + [8744] = {.lex_state = 145}, + [8745] = {.lex_state = 145}, + [8746] = {.lex_state = 145}, + [8747] = {.lex_state = 145}, + [8748] = {.lex_state = 145}, + [8749] = {.lex_state = 145}, + [8750] = {.lex_state = 145}, + [8751] = {.lex_state = 145}, + [8752] = {.lex_state = 145}, + [8753] = {.lex_state = 145}, + [8754] = {.lex_state = 145}, + [8755] = {.lex_state = 145}, + [8756] = {.lex_state = 145}, + [8757] = {.lex_state = 145}, + [8758] = {.lex_state = 145}, + [8759] = {.lex_state = 145}, + [8760] = {.lex_state = 145}, + [8761] = {.lex_state = 145}, + [8762] = {.lex_state = 145}, + [8763] = {.lex_state = 145}, + [8764] = {.lex_state = 145}, + [8765] = {.lex_state = 145}, + [8766] = {.lex_state = 145}, + [8767] = {.lex_state = 145}, + [8768] = {.lex_state = 145}, + [8769] = {.lex_state = 145}, + [8770] = {.lex_state = 145}, + [8771] = {.lex_state = 145}, + [8772] = {.lex_state = 145}, + [8773] = {.lex_state = 145}, + [8774] = {.lex_state = 145}, + [8775] = {.lex_state = 145}, + [8776] = {.lex_state = 145}, + [8777] = {.lex_state = 145}, + [8778] = {.lex_state = 145}, + [8779] = {.lex_state = 145}, + [8780] = {.lex_state = 145}, + [8781] = {.lex_state = 145}, + [8782] = {.lex_state = 145}, + [8783] = {.lex_state = 145}, + [8784] = {.lex_state = 145}, + [8785] = {.lex_state = 145}, + [8786] = {.lex_state = 145}, + [8787] = {.lex_state = 145}, + [8788] = {.lex_state = 145}, + [8789] = {.lex_state = 145}, + [8790] = {.lex_state = 145}, + [8791] = {.lex_state = 145}, + [8792] = {.lex_state = 145}, + [8793] = {.lex_state = 145}, + [8794] = {.lex_state = 145}, + [8795] = {.lex_state = 145}, + [8796] = {.lex_state = 145}, + [8797] = {.lex_state = 145}, + [8798] = {.lex_state = 145}, + [8799] = {.lex_state = 145}, + [8800] = {.lex_state = 145}, + [8801] = {.lex_state = 145}, + [8802] = {.lex_state = 145}, + [8803] = {.lex_state = 145}, + [8804] = {.lex_state = 145}, + [8805] = {.lex_state = 145}, + [8806] = {.lex_state = 145}, + [8807] = {.lex_state = 145}, + [8808] = {.lex_state = 145}, + [8809] = {.lex_state = 145}, + [8810] = {.lex_state = 145}, + [8811] = {.lex_state = 145}, + [8812] = {.lex_state = 145}, + [8813] = {.lex_state = 145}, + [8814] = {.lex_state = 145}, + [8815] = {.lex_state = 145}, + [8816] = {.lex_state = 145}, + [8817] = {.lex_state = 145}, + [8818] = {.lex_state = 145}, + [8819] = {.lex_state = 145}, + [8820] = {.lex_state = 145}, + [8821] = {.lex_state = 145}, + [8822] = {.lex_state = 145}, + [8823] = {.lex_state = 145}, + [8824] = {.lex_state = 145}, + [8825] = {.lex_state = 145}, + [8826] = {.lex_state = 145}, + [8827] = {.lex_state = 145}, + [8828] = {.lex_state = 145}, + [8829] = {.lex_state = 145}, + [8830] = {.lex_state = 145}, + [8831] = {.lex_state = 145}, + [8832] = {.lex_state = 145}, + [8833] = {.lex_state = 145}, + [8834] = {.lex_state = 145}, + [8835] = {.lex_state = 145}, + [8836] = {.lex_state = 145}, + [8837] = {.lex_state = 145}, + [8838] = {.lex_state = 145}, + [8839] = {.lex_state = 145}, + [8840] = {.lex_state = 145}, + [8841] = {.lex_state = 145}, + [8842] = {.lex_state = 145}, + [8843] = {.lex_state = 145}, + [8844] = {.lex_state = 145}, + [8845] = {.lex_state = 145}, + [8846] = {.lex_state = 145}, + [8847] = {.lex_state = 145}, + [8848] = {.lex_state = 145}, + [8849] = {.lex_state = 145}, + [8850] = {.lex_state = 145}, + [8851] = {.lex_state = 145}, + [8852] = {.lex_state = 145}, + [8853] = {.lex_state = 145}, + [8854] = {.lex_state = 145}, + [8855] = {.lex_state = 145}, + [8856] = {.lex_state = 145}, + [8857] = {.lex_state = 145}, + [8858] = {.lex_state = 145}, + [8859] = {.lex_state = 145}, + [8860] = {.lex_state = 145}, + [8861] = {.lex_state = 145}, + [8862] = {.lex_state = 145}, + [8863] = {.lex_state = 145}, + [8864] = {.lex_state = 145}, + [8865] = {.lex_state = 145}, + [8866] = {.lex_state = 145}, + [8867] = {.lex_state = 145}, + [8868] = {.lex_state = 145}, + [8869] = {.lex_state = 145}, + [8870] = {.lex_state = 145}, + [8871] = {.lex_state = 145}, + [8872] = {.lex_state = 145}, + [8873] = {.lex_state = 145}, + [8874] = {.lex_state = 145}, + [8875] = {.lex_state = 145}, + [8876] = {.lex_state = 145}, + [8877] = {.lex_state = 145}, + [8878] = {.lex_state = 145}, + [8879] = {.lex_state = 145}, + [8880] = {.lex_state = 145}, + [8881] = {.lex_state = 145}, + [8882] = {.lex_state = 145}, + [8883] = {.lex_state = 145}, + [8884] = {.lex_state = 145}, + [8885] = {.lex_state = 145}, + [8886] = {.lex_state = 145}, + [8887] = {.lex_state = 145}, + [8888] = {.lex_state = 145}, + [8889] = {.lex_state = 145}, + [8890] = {.lex_state = 145}, + [8891] = {.lex_state = 145}, + [8892] = {.lex_state = 145}, + [8893] = {.lex_state = 145}, + [8894] = {.lex_state = 145}, + [8895] = {.lex_state = 145}, + [8896] = {.lex_state = 145}, + [8897] = {.lex_state = 145}, + [8898] = {.lex_state = 145}, + [8899] = {.lex_state = 145}, + [8900] = {.lex_state = 145}, + [8901] = {.lex_state = 145}, + [8902] = {.lex_state = 145}, + [8903] = {.lex_state = 145}, + [8904] = {.lex_state = 145}, + [8905] = {.lex_state = 145}, + [8906] = {.lex_state = 145}, + [8907] = {.lex_state = 145}, + [8908] = {.lex_state = 145}, + [8909] = {.lex_state = 145}, + [8910] = {.lex_state = 145}, + [8911] = {.lex_state = 145}, + [8912] = {.lex_state = 145}, + [8913] = {.lex_state = 145}, + [8914] = {.lex_state = 145}, + [8915] = {.lex_state = 145}, + [8916] = {.lex_state = 145}, + [8917] = {.lex_state = 145}, + [8918] = {.lex_state = 145}, + [8919] = {.lex_state = 145}, + [8920] = {.lex_state = 145}, + [8921] = {.lex_state = 145}, + [8922] = {.lex_state = 145}, + [8923] = {.lex_state = 145}, + [8924] = {.lex_state = 145}, + [8925] = {.lex_state = 145}, + [8926] = {.lex_state = 145}, + [8927] = {.lex_state = 145}, + [8928] = {.lex_state = 145}, + [8929] = {.lex_state = 145}, + [8930] = {.lex_state = 145}, + [8931] = {.lex_state = 145}, + [8932] = {.lex_state = 145}, + [8933] = {.lex_state = 145}, + [8934] = {.lex_state = 145}, + [8935] = {.lex_state = 145}, + [8936] = {.lex_state = 145}, + [8937] = {.lex_state = 145}, + [8938] = {.lex_state = 145}, + [8939] = {.lex_state = 145}, + [8940] = {.lex_state = 145}, + [8941] = {.lex_state = 145}, + [8942] = {.lex_state = 145}, + [8943] = {.lex_state = 145}, + [8944] = {.lex_state = 145}, + [8945] = {.lex_state = 145}, + [8946] = {.lex_state = 145}, + [8947] = {.lex_state = 145}, + [8948] = {.lex_state = 145}, + [8949] = {.lex_state = 145}, + [8950] = {.lex_state = 145}, + [8951] = {.lex_state = 145}, + [8952] = {.lex_state = 145}, + [8953] = {.lex_state = 145}, + [8954] = {.lex_state = 145}, + [8955] = {.lex_state = 145}, + [8956] = {.lex_state = 145}, + [8957] = {.lex_state = 145}, + [8958] = {.lex_state = 145}, + [8959] = {.lex_state = 145}, + [8960] = {.lex_state = 145}, + [8961] = {.lex_state = 145}, + [8962] = {.lex_state = 145}, + [8963] = {.lex_state = 145}, + [8964] = {.lex_state = 145}, + [8965] = {.lex_state = 145}, + [8966] = {.lex_state = 145}, + [8967] = {.lex_state = 145}, + [8968] = {.lex_state = 145}, + [8969] = {.lex_state = 145}, + [8970] = {.lex_state = 145}, + [8971] = {.lex_state = 145}, + [8972] = {.lex_state = 145}, + [8973] = {.lex_state = 145}, + [8974] = {.lex_state = 145}, + [8975] = {.lex_state = 145}, + [8976] = {.lex_state = 145}, + [8977] = {.lex_state = 145}, + [8978] = {.lex_state = 145}, + [8979] = {.lex_state = 145}, + [8980] = {.lex_state = 145}, + [8981] = {.lex_state = 145}, + [8982] = {.lex_state = 145}, + [8983] = {.lex_state = 145}, + [8984] = {.lex_state = 145}, + [8985] = {.lex_state = 145}, + [8986] = {.lex_state = 145}, + [8987] = {.lex_state = 145}, + [8988] = {.lex_state = 145}, + [8989] = {.lex_state = 145}, + [8990] = {.lex_state = 145}, + [8991] = {.lex_state = 145}, + [8992] = {.lex_state = 145}, + [8993] = {.lex_state = 145}, + [8994] = {.lex_state = 145}, + [8995] = {.lex_state = 145}, + [8996] = {.lex_state = 145}, + [8997] = {.lex_state = 145}, + [8998] = {.lex_state = 145}, + [8999] = {.lex_state = 145}, + [9000] = {.lex_state = 145}, + [9001] = {.lex_state = 145}, + [9002] = {.lex_state = 145}, + [9003] = {.lex_state = 145}, + [9004] = {.lex_state = 145}, + [9005] = {.lex_state = 145}, + [9006] = {.lex_state = 145}, + [9007] = {.lex_state = 145}, + [9008] = {.lex_state = 145}, + [9009] = {.lex_state = 145}, + [9010] = {.lex_state = 145}, + [9011] = {.lex_state = 145}, + [9012] = {.lex_state = 145}, + [9013] = {.lex_state = 145}, + [9014] = {.lex_state = 145}, + [9015] = {.lex_state = 145}, + [9016] = {.lex_state = 145}, + [9017] = {.lex_state = 145}, + [9018] = {.lex_state = 145}, + [9019] = {.lex_state = 145}, + [9020] = {.lex_state = 145}, + [9021] = {.lex_state = 145}, + [9022] = {.lex_state = 145}, + [9023] = {.lex_state = 145}, + [9024] = {.lex_state = 145}, + [9025] = {.lex_state = 145}, + [9026] = {.lex_state = 145}, + [9027] = {.lex_state = 145}, + [9028] = {.lex_state = 145}, + [9029] = {.lex_state = 145}, + [9030] = {.lex_state = 145}, + [9031] = {.lex_state = 145}, + [9032] = {.lex_state = 145}, + [9033] = {.lex_state = 145}, + [9034] = {.lex_state = 145}, + [9035] = {.lex_state = 145}, + [9036] = {.lex_state = 145}, + [9037] = {.lex_state = 145}, + [9038] = {.lex_state = 145}, + [9039] = {.lex_state = 145}, + [9040] = {.lex_state = 145}, + [9041] = {.lex_state = 145}, + [9042] = {.lex_state = 145}, + [9043] = {.lex_state = 145}, + [9044] = {.lex_state = 145}, + [9045] = {.lex_state = 145}, + [9046] = {.lex_state = 145}, + [9047] = {.lex_state = 145}, + [9048] = {.lex_state = 145}, + [9049] = {.lex_state = 145}, + [9050] = {.lex_state = 145}, + [9051] = {.lex_state = 145}, + [9052] = {.lex_state = 145}, + [9053] = {.lex_state = 145}, + [9054] = {.lex_state = 145}, + [9055] = {.lex_state = 145}, + [9056] = {.lex_state = 145}, + [9057] = {.lex_state = 145}, + [9058] = {.lex_state = 145}, + [9059] = {.lex_state = 145}, + [9060] = {.lex_state = 145}, + [9061] = {.lex_state = 145}, + [9062] = {.lex_state = 145}, + [9063] = {.lex_state = 145}, + [9064] = {.lex_state = 145}, + [9065] = {.lex_state = 145}, + [9066] = {.lex_state = 145}, + [9067] = {.lex_state = 145}, + [9068] = {.lex_state = 145}, + [9069] = {.lex_state = 145}, + [9070] = {.lex_state = 145}, + [9071] = {.lex_state = 145}, + [9072] = {.lex_state = 145}, + [9073] = {.lex_state = 145}, + [9074] = {.lex_state = 145}, + [9075] = {.lex_state = 145}, + [9076] = {.lex_state = 145}, + [9077] = {.lex_state = 145}, + [9078] = {.lex_state = 145}, + [9079] = {.lex_state = 145}, + [9080] = {.lex_state = 145}, + [9081] = {.lex_state = 145}, + [9082] = {.lex_state = 145}, + [9083] = {.lex_state = 145}, + [9084] = {.lex_state = 145}, + [9085] = {.lex_state = 145}, + [9086] = {.lex_state = 145}, + [9087] = {.lex_state = 145}, + [9088] = {.lex_state = 145}, + [9089] = {.lex_state = 145}, + [9090] = {.lex_state = 145}, + [9091] = {.lex_state = 145}, + [9092] = {.lex_state = 145}, + [9093] = {.lex_state = 145}, + [9094] = {.lex_state = 145}, + [9095] = {.lex_state = 145}, + [9096] = {.lex_state = 145}, + [9097] = {.lex_state = 145}, + [9098] = {.lex_state = 145}, + [9099] = {.lex_state = 145}, + [9100] = {.lex_state = 145}, + [9101] = {.lex_state = 145}, + [9102] = {.lex_state = 145}, + [9103] = {.lex_state = 145}, + [9104] = {.lex_state = 145}, + [9105] = {.lex_state = 145}, + [9106] = {.lex_state = 145}, + [9107] = {.lex_state = 145}, + [9108] = {.lex_state = 145}, + [9109] = {.lex_state = 145}, + [9110] = {.lex_state = 145}, + [9111] = {.lex_state = 145}, + [9112] = {.lex_state = 145}, + [9113] = {.lex_state = 145}, + [9114] = {.lex_state = 145}, + [9115] = {.lex_state = 145}, + [9116] = {.lex_state = 145}, + [9117] = {.lex_state = 145}, + [9118] = {.lex_state = 145}, + [9119] = {.lex_state = 145}, + [9120] = {.lex_state = 145}, + [9121] = {.lex_state = 145}, + [9122] = {.lex_state = 145}, + [9123] = {.lex_state = 145}, + [9124] = {.lex_state = 145}, + [9125] = {.lex_state = 145}, + [9126] = {.lex_state = 145}, + [9127] = {.lex_state = 145}, + [9128] = {.lex_state = 145}, + [9129] = {.lex_state = 145}, + [9130] = {.lex_state = 145}, + [9131] = {.lex_state = 145}, + [9132] = {.lex_state = 145}, + [9133] = {.lex_state = 145}, + [9134] = {.lex_state = 145}, + [9135] = {.lex_state = 145}, + [9136] = {.lex_state = 145}, + [9137] = {.lex_state = 145}, + [9138] = {.lex_state = 145}, + [9139] = {.lex_state = 145}, + [9140] = {.lex_state = 145}, + [9141] = {.lex_state = 145}, + [9142] = {.lex_state = 145}, + [9143] = {.lex_state = 145}, + [9144] = {.lex_state = 145}, + [9145] = {.lex_state = 145}, + [9146] = {.lex_state = 145}, + [9147] = {.lex_state = 145}, + [9148] = {.lex_state = 145}, + [9149] = {.lex_state = 145}, + [9150] = {.lex_state = 145}, + [9151] = {.lex_state = 145}, + [9152] = {.lex_state = 145}, + [9153] = {.lex_state = 145}, + [9154] = {.lex_state = 145}, + [9155] = {.lex_state = 145}, + [9156] = {.lex_state = 145}, + [9157] = {.lex_state = 145}, + [9158] = {.lex_state = 145}, + [9159] = {.lex_state = 145}, + [9160] = {.lex_state = 145}, + [9161] = {.lex_state = 145}, + [9162] = {.lex_state = 145}, + [9163] = {.lex_state = 145}, + [9164] = {.lex_state = 145}, + [9165] = {.lex_state = 145}, + [9166] = {.lex_state = 145}, + [9167] = {.lex_state = 145}, + [9168] = {.lex_state = 145}, + [9169] = {.lex_state = 145}, + [9170] = {.lex_state = 145}, + [9171] = {.lex_state = 145}, + [9172] = {.lex_state = 145}, + [9173] = {.lex_state = 145}, + [9174] = {.lex_state = 145}, + [9175] = {.lex_state = 145}, + [9176] = {.lex_state = 145}, + [9177] = {.lex_state = 145}, + [9178] = {.lex_state = 145}, + [9179] = {.lex_state = 145}, + [9180] = {.lex_state = 145}, + [9181] = {.lex_state = 145}, + [9182] = {.lex_state = 145}, + [9183] = {.lex_state = 145}, + [9184] = {.lex_state = 145}, + [9185] = {.lex_state = 145}, + [9186] = {.lex_state = 145}, + [9187] = {.lex_state = 145}, + [9188] = {.lex_state = 145}, + [9189] = {.lex_state = 145}, + [9190] = {.lex_state = 145}, + [9191] = {.lex_state = 145}, + [9192] = {.lex_state = 145}, + [9193] = {.lex_state = 145}, + [9194] = {.lex_state = 145}, + [9195] = {.lex_state = 145}, + [9196] = {.lex_state = 145}, + [9197] = {.lex_state = 145}, + [9198] = {.lex_state = 145}, + [9199] = {.lex_state = 145}, + [9200] = {.lex_state = 145}, + [9201] = {.lex_state = 145}, + [9202] = {.lex_state = 145}, + [9203] = {.lex_state = 145}, + [9204] = {.lex_state = 145}, + [9205] = {.lex_state = 145}, + [9206] = {.lex_state = 145}, + [9207] = {.lex_state = 145}, + [9208] = {.lex_state = 145}, + [9209] = {.lex_state = 145}, + [9210] = {.lex_state = 145}, + [9211] = {.lex_state = 145}, + [9212] = {.lex_state = 145}, + [9213] = {.lex_state = 145}, + [9214] = {.lex_state = 145}, + [9215] = {.lex_state = 145}, + [9216] = {.lex_state = 145}, + [9217] = {.lex_state = 145}, + [9218] = {.lex_state = 145}, + [9219] = {.lex_state = 145}, + [9220] = {.lex_state = 145}, + [9221] = {.lex_state = 145}, + [9222] = {.lex_state = 145}, + [9223] = {.lex_state = 145}, + [9224] = {.lex_state = 145}, + [9225] = {.lex_state = 145}, + [9226] = {.lex_state = 145}, + [9227] = {.lex_state = 145}, + [9228] = {.lex_state = 145}, + [9229] = {.lex_state = 145}, + [9230] = {.lex_state = 145}, + [9231] = {.lex_state = 145}, + [9232] = {.lex_state = 145}, + [9233] = {.lex_state = 145}, + [9234] = {.lex_state = 145}, + [9235] = {.lex_state = 145}, + [9236] = {.lex_state = 145}, + [9237] = {.lex_state = 145}, + [9238] = {.lex_state = 145}, + [9239] = {.lex_state = 145}, + [9240] = {.lex_state = 145}, + [9241] = {.lex_state = 145}, + [9242] = {.lex_state = 145}, + [9243] = {.lex_state = 145}, + [9244] = {.lex_state = 145}, + [9245] = {.lex_state = 145}, + [9246] = {.lex_state = 145}, + [9247] = {.lex_state = 145}, + [9248] = {.lex_state = 145}, + [9249] = {.lex_state = 145}, + [9250] = {.lex_state = 145}, + [9251] = {.lex_state = 145}, + [9252] = {.lex_state = 145}, + [9253] = {.lex_state = 145}, + [9254] = {.lex_state = 145}, + [9255] = {.lex_state = 145}, + [9256] = {.lex_state = 145}, + [9257] = {.lex_state = 145}, + [9258] = {.lex_state = 145}, + [9259] = {.lex_state = 145}, + [9260] = {.lex_state = 145}, + [9261] = {.lex_state = 145}, + [9262] = {.lex_state = 145}, + [9263] = {.lex_state = 145}, + [9264] = {.lex_state = 145}, + [9265] = {.lex_state = 145}, + [9266] = {.lex_state = 145}, + [9267] = {.lex_state = 145}, + [9268] = {.lex_state = 145}, + [9269] = {.lex_state = 145}, + [9270] = {.lex_state = 145}, + [9271] = {.lex_state = 145}, + [9272] = {.lex_state = 145}, + [9273] = {.lex_state = 145}, + [9274] = {.lex_state = 145}, + [9275] = {.lex_state = 145}, + [9276] = {.lex_state = 145}, + [9277] = {.lex_state = 145}, + [9278] = {.lex_state = 145}, + [9279] = {.lex_state = 145}, + [9280] = {.lex_state = 145}, + [9281] = {.lex_state = 145}, + [9282] = {.lex_state = 145}, + [9283] = {.lex_state = 145}, + [9284] = {.lex_state = 145}, + [9285] = {.lex_state = 145}, + [9286] = {.lex_state = 145}, + [9287] = {.lex_state = 145}, + [9288] = {.lex_state = 145}, + [9289] = {.lex_state = 145}, + [9290] = {.lex_state = 145}, + [9291] = {.lex_state = 145}, + [9292] = {.lex_state = 145}, + [9293] = {.lex_state = 145}, + [9294] = {.lex_state = 145}, + [9295] = {.lex_state = 145}, + [9296] = {.lex_state = 145}, + [9297] = {.lex_state = 145}, + [9298] = {.lex_state = 145}, + [9299] = {.lex_state = 145}, + [9300] = {.lex_state = 145}, + [9301] = {.lex_state = 145}, + [9302] = {.lex_state = 145}, + [9303] = {.lex_state = 145}, + [9304] = {.lex_state = 145}, + [9305] = {.lex_state = 145}, + [9306] = {.lex_state = 145}, + [9307] = {.lex_state = 145}, + [9308] = {.lex_state = 145}, + [9309] = {.lex_state = 145}, + [9310] = {.lex_state = 145}, + [9311] = {.lex_state = 145}, + [9312] = {.lex_state = 145}, + [9313] = {.lex_state = 145}, + [9314] = {.lex_state = 145}, + [9315] = {.lex_state = 145}, + [9316] = {.lex_state = 145}, + [9317] = {.lex_state = 145}, + [9318] = {.lex_state = 145}, + [9319] = {.lex_state = 145}, + [9320] = {.lex_state = 145}, + [9321] = {.lex_state = 145}, + [9322] = {.lex_state = 145}, + [9323] = {.lex_state = 145}, + [9324] = {.lex_state = 145}, + [9325] = {.lex_state = 145}, + [9326] = {.lex_state = 145}, + [9327] = {.lex_state = 145}, + [9328] = {.lex_state = 145}, + [9329] = {.lex_state = 145}, + [9330] = {.lex_state = 145}, + [9331] = {.lex_state = 145}, + [9332] = {.lex_state = 145}, + [9333] = {.lex_state = 145}, + [9334] = {.lex_state = 145}, + [9335] = {.lex_state = 145}, + [9336] = {.lex_state = 145}, + [9337] = {.lex_state = 145}, + [9338] = {.lex_state = 145}, + [9339] = {.lex_state = 145}, + [9340] = {.lex_state = 145}, + [9341] = {.lex_state = 145}, + [9342] = {.lex_state = 145}, + [9343] = {.lex_state = 145}, + [9344] = {.lex_state = 145}, + [9345] = {.lex_state = 145}, + [9346] = {.lex_state = 145}, + [9347] = {.lex_state = 145}, + [9348] = {.lex_state = 145}, + [9349] = {.lex_state = 145}, + [9350] = {.lex_state = 145}, + [9351] = {.lex_state = 145}, + [9352] = {.lex_state = 145}, + [9353] = {.lex_state = 145}, + [9354] = {.lex_state = 145}, + [9355] = {.lex_state = 145}, + [9356] = {.lex_state = 145}, + [9357] = {.lex_state = 145}, + [9358] = {.lex_state = 145}, + [9359] = {.lex_state = 145}, + [9360] = {.lex_state = 145}, + [9361] = {.lex_state = 145}, + [9362] = {.lex_state = 145}, + [9363] = {.lex_state = 145}, + [9364] = {.lex_state = 145}, + [9365] = {.lex_state = 145}, + [9366] = {.lex_state = 145}, + [9367] = {.lex_state = 145}, + [9368] = {.lex_state = 145}, + [9369] = {.lex_state = 145}, + [9370] = {.lex_state = 145}, + [9371] = {.lex_state = 145}, + [9372] = {.lex_state = 145}, + [9373] = {.lex_state = 145}, + [9374] = {.lex_state = 145}, + [9375] = {.lex_state = 145}, + [9376] = {.lex_state = 145}, + [9377] = {.lex_state = 145}, + [9378] = {.lex_state = 145}, + [9379] = {.lex_state = 145}, + [9380] = {.lex_state = 145}, + [9381] = {.lex_state = 145}, + [9382] = {.lex_state = 145}, + [9383] = {.lex_state = 145}, + [9384] = {.lex_state = 145}, + [9385] = {.lex_state = 145}, + [9386] = {.lex_state = 145}, + [9387] = {.lex_state = 145}, + [9388] = {.lex_state = 145}, + [9389] = {.lex_state = 145}, + [9390] = {.lex_state = 145}, + [9391] = {.lex_state = 145}, + [9392] = {.lex_state = 145}, + [9393] = {.lex_state = 145}, + [9394] = {.lex_state = 145}, + [9395] = {.lex_state = 145}, + [9396] = {.lex_state = 145}, + [9397] = {.lex_state = 145}, + [9398] = {.lex_state = 145}, + [9399] = {.lex_state = 145}, + [9400] = {.lex_state = 145}, + [9401] = {.lex_state = 145}, + [9402] = {.lex_state = 145}, + [9403] = {.lex_state = 145}, + [9404] = {.lex_state = 145}, + [9405] = {.lex_state = 145}, + [9406] = {.lex_state = 145}, + [9407] = {.lex_state = 145}, + [9408] = {.lex_state = 145}, + [9409] = {.lex_state = 145}, + [9410] = {.lex_state = 145}, + [9411] = {.lex_state = 145}, + [9412] = {.lex_state = 145}, + [9413] = {.lex_state = 145}, + [9414] = {.lex_state = 145}, + [9415] = {.lex_state = 145}, + [9416] = {.lex_state = 145}, + [9417] = {.lex_state = 145}, + [9418] = {.lex_state = 145}, + [9419] = {.lex_state = 145}, + [9420] = {.lex_state = 145}, + [9421] = {.lex_state = 145}, + [9422] = {.lex_state = 145}, + [9423] = {.lex_state = 145}, + [9424] = {.lex_state = 145}, + [9425] = {.lex_state = 145}, + [9426] = {.lex_state = 145}, + [9427] = {.lex_state = 145}, + [9428] = {.lex_state = 145}, + [9429] = {.lex_state = 145}, + [9430] = {.lex_state = 145}, + [9431] = {.lex_state = 145}, + [9432] = {.lex_state = 145}, + [9433] = {.lex_state = 145}, + [9434] = {.lex_state = 145}, + [9435] = {.lex_state = 145}, + [9436] = {.lex_state = 145}, + [9437] = {.lex_state = 145}, + [9438] = {.lex_state = 145}, + [9439] = {.lex_state = 145}, + [9440] = {.lex_state = 145}, + [9441] = {.lex_state = 145}, + [9442] = {.lex_state = 145}, + [9443] = {.lex_state = 145}, + [9444] = {.lex_state = 145}, + [9445] = {.lex_state = 145}, + [9446] = {.lex_state = 145}, + [9447] = {.lex_state = 145}, + [9448] = {.lex_state = 145}, + [9449] = {.lex_state = 145}, + [9450] = {.lex_state = 145}, + [9451] = {.lex_state = 145}, + [9452] = {.lex_state = 145}, + [9453] = {.lex_state = 145}, + [9454] = {.lex_state = 145}, + [9455] = {.lex_state = 145}, + [9456] = {.lex_state = 145}, + [9457] = {.lex_state = 145}, + [9458] = {.lex_state = 145}, + [9459] = {.lex_state = 145}, + [9460] = {.lex_state = 145}, + [9461] = {.lex_state = 145}, + [9462] = {.lex_state = 145}, + [9463] = {.lex_state = 145}, + [9464] = {.lex_state = 145}, + [9465] = {.lex_state = 145}, + [9466] = {.lex_state = 145}, + [9467] = {.lex_state = 145}, + [9468] = {.lex_state = 145}, + [9469] = {.lex_state = 145}, + [9470] = {.lex_state = 145}, + [9471] = {.lex_state = 145}, + [9472] = {.lex_state = 145}, + [9473] = {.lex_state = 145}, + [9474] = {.lex_state = 145}, + [9475] = {.lex_state = 145}, + [9476] = {.lex_state = 145}, + [9477] = {.lex_state = 145}, + [9478] = {.lex_state = 145}, + [9479] = {.lex_state = 145}, + [9480] = {.lex_state = 145}, + [9481] = {.lex_state = 145}, + [9482] = {.lex_state = 145}, + [9483] = {.lex_state = 145}, + [9484] = {.lex_state = 145}, + [9485] = {.lex_state = 145}, + [9486] = {.lex_state = 145}, + [9487] = {.lex_state = 145}, + [9488] = {.lex_state = 145}, + [9489] = {.lex_state = 145}, + [9490] = {.lex_state = 145}, + [9491] = {.lex_state = 145}, + [9492] = {.lex_state = 145}, + [9493] = {.lex_state = 145}, + [9494] = {.lex_state = 145}, + [9495] = {.lex_state = 145}, + [9496] = {.lex_state = 145}, + [9497] = {.lex_state = 145}, + [9498] = {.lex_state = 145}, + [9499] = {.lex_state = 145}, + [9500] = {.lex_state = 145}, + [9501] = {.lex_state = 145}, + [9502] = {.lex_state = 145}, + [9503] = {.lex_state = 145}, + [9504] = {.lex_state = 145}, + [9505] = {.lex_state = 145}, + [9506] = {.lex_state = 145}, + [9507] = {.lex_state = 145}, + [9508] = {.lex_state = 145}, + [9509] = {.lex_state = 145}, + [9510] = {.lex_state = 145}, + [9511] = {.lex_state = 145}, + [9512] = {.lex_state = 145}, + [9513] = {.lex_state = 145}, + [9514] = {.lex_state = 145}, + [9515] = {.lex_state = 145}, + [9516] = {.lex_state = 145}, + [9517] = {.lex_state = 145}, + [9518] = {.lex_state = 145}, + [9519] = {.lex_state = 145}, + [9520] = {.lex_state = 145}, + [9521] = {.lex_state = 145}, + [9522] = {.lex_state = 145}, + [9523] = {.lex_state = 145}, + [9524] = {.lex_state = 145}, + [9525] = {.lex_state = 145}, + [9526] = {.lex_state = 145}, + [9527] = {.lex_state = 145}, + [9528] = {.lex_state = 145}, + [9529] = {.lex_state = 145}, + [9530] = {.lex_state = 145}, + [9531] = {.lex_state = 145}, + [9532] = {.lex_state = 145}, + [9533] = {.lex_state = 145}, + [9534] = {.lex_state = 145}, + [9535] = {.lex_state = 145}, + [9536] = {.lex_state = 145}, + [9537] = {.lex_state = 145}, + [9538] = {.lex_state = 145}, + [9539] = {.lex_state = 145}, + [9540] = {.lex_state = 145}, + [9541] = {.lex_state = 145}, + [9542] = {.lex_state = 145}, + [9543] = {.lex_state = 145}, + [9544] = {.lex_state = 145}, + [9545] = {.lex_state = 145}, + [9546] = {.lex_state = 145}, + [9547] = {.lex_state = 145}, + [9548] = {.lex_state = 145}, + [9549] = {.lex_state = 145}, + [9550] = {.lex_state = 145}, + [9551] = {.lex_state = 145}, + [9552] = {.lex_state = 145}, + [9553] = {.lex_state = 145}, + [9554] = {.lex_state = 145}, + [9555] = {.lex_state = 145}, + [9556] = {.lex_state = 145}, + [9557] = {.lex_state = 145}, + [9558] = {.lex_state = 145}, + [9559] = {.lex_state = 145}, + [9560] = {.lex_state = 145}, + [9561] = {.lex_state = 145}, + [9562] = {.lex_state = 145}, + [9563] = {.lex_state = 145}, + [9564] = {.lex_state = 145}, + [9565] = {.lex_state = 145}, + [9566] = {.lex_state = 145}, + [9567] = {.lex_state = 145}, + [9568] = {.lex_state = 145}, + [9569] = {.lex_state = 145}, + [9570] = {.lex_state = 145}, + [9571] = {.lex_state = 145}, + [9572] = {.lex_state = 145}, + [9573] = {.lex_state = 145}, + [9574] = {.lex_state = 145}, + [9575] = {.lex_state = 145}, + [9576] = {.lex_state = 145}, + [9577] = {.lex_state = 145}, + [9578] = {.lex_state = 145}, + [9579] = {.lex_state = 145}, + [9580] = {.lex_state = 145}, + [9581] = {.lex_state = 145}, + [9582] = {.lex_state = 145}, + [9583] = {.lex_state = 145}, + [9584] = {.lex_state = 145}, + [9585] = {.lex_state = 145}, + [9586] = {.lex_state = 145}, + [9587] = {.lex_state = 145}, + [9588] = {.lex_state = 145}, + [9589] = {.lex_state = 145}, + [9590] = {.lex_state = 145}, + [9591] = {.lex_state = 145}, + [9592] = {.lex_state = 145}, + [9593] = {.lex_state = 145}, + [9594] = {.lex_state = 145}, + [9595] = {.lex_state = 145}, + [9596] = {.lex_state = 145}, + [9597] = {.lex_state = 145}, + [9598] = {.lex_state = 145}, + [9599] = {.lex_state = 145}, + [9600] = {.lex_state = 145}, + [9601] = {.lex_state = 145}, + [9602] = {.lex_state = 145}, + [9603] = {.lex_state = 145}, + [9604] = {.lex_state = 145}, + [9605] = {.lex_state = 145}, + [9606] = {.lex_state = 145}, + [9607] = {.lex_state = 145}, + [9608] = {.lex_state = 145}, + [9609] = {.lex_state = 145}, + [9610] = {.lex_state = 145}, + [9611] = {.lex_state = 145}, + [9612] = {.lex_state = 145}, + [9613] = {.lex_state = 145}, + [9614] = {.lex_state = 145}, + [9615] = {.lex_state = 145}, + [9616] = {.lex_state = 145}, + [9617] = {.lex_state = 145}, + [9618] = {.lex_state = 145}, + [9619] = {.lex_state = 145}, + [9620] = {.lex_state = 145}, + [9621] = {.lex_state = 145}, + [9622] = {.lex_state = 145}, + [9623] = {.lex_state = 145}, + [9624] = {.lex_state = 145}, + [9625] = {.lex_state = 145}, + [9626] = {.lex_state = 145}, + [9627] = {.lex_state = 145}, + [9628] = {.lex_state = 145}, + [9629] = {.lex_state = 145}, + [9630] = {.lex_state = 145}, + [9631] = {.lex_state = 145}, + [9632] = {.lex_state = 145}, + [9633] = {.lex_state = 145}, + [9634] = {.lex_state = 145}, + [9635] = {.lex_state = 145}, + [9636] = {.lex_state = 145}, + [9637] = {.lex_state = 145}, + [9638] = {.lex_state = 145}, + [9639] = {.lex_state = 145}, + [9640] = {.lex_state = 145}, + [9641] = {.lex_state = 145}, + [9642] = {.lex_state = 145}, + [9643] = {.lex_state = 145}, + [9644] = {.lex_state = 145}, + [9645] = {.lex_state = 145}, + [9646] = {.lex_state = 145}, + [9647] = {.lex_state = 145}, + [9648] = {.lex_state = 145}, + [9649] = {.lex_state = 145}, + [9650] = {.lex_state = 145}, + [9651] = {.lex_state = 145}, + [9652] = {.lex_state = 145}, + [9653] = {.lex_state = 145}, + [9654] = {.lex_state = 145}, + [9655] = {.lex_state = 145}, + [9656] = {.lex_state = 145}, + [9657] = {.lex_state = 145}, + [9658] = {.lex_state = 145}, + [9659] = {.lex_state = 145}, + [9660] = {.lex_state = 145}, + [9661] = {.lex_state = 145}, + [9662] = {.lex_state = 145}, + [9663] = {.lex_state = 145}, + [9664] = {.lex_state = 145}, + [9665] = {.lex_state = 145}, + [9666] = {.lex_state = 145}, + [9667] = {.lex_state = 145}, + [9668] = {.lex_state = 145}, + [9669] = {.lex_state = 145}, + [9670] = {.lex_state = 145}, + [9671] = {.lex_state = 145}, + [9672] = {.lex_state = 145}, + [9673] = {.lex_state = 145}, + [9674] = {.lex_state = 145}, + [9675] = {.lex_state = 145}, + [9676] = {.lex_state = 145}, + [9677] = {.lex_state = 145}, + [9678] = {.lex_state = 145}, + [9679] = {.lex_state = 145}, + [9680] = {.lex_state = 145}, + [9681] = {.lex_state = 145}, + [9682] = {.lex_state = 145}, + [9683] = {.lex_state = 145}, + [9684] = {.lex_state = 145}, + [9685] = {.lex_state = 145}, + [9686] = {.lex_state = 145}, + [9687] = {.lex_state = 145}, + [9688] = {.lex_state = 145}, + [9689] = {.lex_state = 145}, + [9690] = {.lex_state = 145}, + [9691] = {.lex_state = 145}, + [9692] = {.lex_state = 145}, + [9693] = {.lex_state = 145}, + [9694] = {.lex_state = 145}, + [9695] = {.lex_state = 145}, + [9696] = {.lex_state = 145}, + [9697] = {.lex_state = 145}, + [9698] = {.lex_state = 145}, + [9699] = {.lex_state = 145}, + [9700] = {.lex_state = 145}, + [9701] = {.lex_state = 145}, + [9702] = {.lex_state = 145}, + [9703] = {.lex_state = 145}, + [9704] = {.lex_state = 145}, + [9705] = {.lex_state = 145}, + [9706] = {.lex_state = 145}, + [9707] = {.lex_state = 145}, + [9708] = {.lex_state = 145}, + [9709] = {.lex_state = 145}, + [9710] = {.lex_state = 145}, + [9711] = {.lex_state = 145}, + [9712] = {.lex_state = 145}, + [9713] = {.lex_state = 145}, + [9714] = {.lex_state = 145}, + [9715] = {.lex_state = 145}, + [9716] = {.lex_state = 145}, + [9717] = {.lex_state = 145}, + [9718] = {.lex_state = 145}, + [9719] = {.lex_state = 145}, + [9720] = {.lex_state = 145}, + [9721] = {.lex_state = 145}, + [9722] = {.lex_state = 145}, + [9723] = {.lex_state = 145}, + [9724] = {.lex_state = 145}, + [9725] = {.lex_state = 145}, + [9726] = {.lex_state = 145}, + [9727] = {.lex_state = 145}, + [9728] = {.lex_state = 145}, + [9729] = {.lex_state = 145}, + [9730] = {.lex_state = 145}, + [9731] = {.lex_state = 145}, + [9732] = {.lex_state = 145}, + [9733] = {.lex_state = 145}, + [9734] = {.lex_state = 145}, + [9735] = {.lex_state = 145}, + [9736] = {.lex_state = 145}, + [9737] = {.lex_state = 145}, + [9738] = {.lex_state = 145}, + [9739] = {.lex_state = 145}, + [9740] = {.lex_state = 145}, + [9741] = {.lex_state = 145}, + [9742] = {.lex_state = 145}, + [9743] = {.lex_state = 145}, + [9744] = {.lex_state = 145}, + [9745] = {.lex_state = 145}, + [9746] = {.lex_state = 145}, + [9747] = {.lex_state = 145}, + [9748] = {.lex_state = 145}, + [9749] = {.lex_state = 145}, + [9750] = {.lex_state = 145}, + [9751] = {.lex_state = 145}, + [9752] = {.lex_state = 145}, + [9753] = {.lex_state = 145}, + [9754] = {.lex_state = 145}, + [9755] = {.lex_state = 145}, + [9756] = {.lex_state = 145}, + [9757] = {.lex_state = 145}, + [9758] = {.lex_state = 145}, + [9759] = {.lex_state = 145}, + [9760] = {.lex_state = 145}, + [9761] = {.lex_state = 145}, + [9762] = {.lex_state = 145}, + [9763] = {.lex_state = 145}, + [9764] = {.lex_state = 145}, + [9765] = {.lex_state = 145}, + [9766] = {.lex_state = 145}, + [9767] = {.lex_state = 145}, + [9768] = {.lex_state = 145}, + [9769] = {.lex_state = 145}, + [9770] = {.lex_state = 145}, + [9771] = {.lex_state = 145}, + [9772] = {.lex_state = 145}, + [9773] = {.lex_state = 145}, + [9774] = {.lex_state = 145}, + [9775] = {.lex_state = 145}, + [9776] = {.lex_state = 145}, + [9777] = {.lex_state = 145}, + [9778] = {.lex_state = 145}, + [9779] = {.lex_state = 145}, + [9780] = {.lex_state = 145}, + [9781] = {.lex_state = 145}, + [9782] = {.lex_state = 145}, + [9783] = {.lex_state = 145}, + [9784] = {.lex_state = 145}, + [9785] = {.lex_state = 145}, + [9786] = {.lex_state = 145}, + [9787] = {.lex_state = 145}, + [9788] = {.lex_state = 145}, + [9789] = {.lex_state = 145}, + [9790] = {.lex_state = 145}, + [9791] = {.lex_state = 145}, + [9792] = {.lex_state = 145}, + [9793] = {.lex_state = 145}, + [9794] = {.lex_state = 145}, + [9795] = {.lex_state = 145}, + [9796] = {.lex_state = 145}, + [9797] = {.lex_state = 145}, + [9798] = {.lex_state = 145}, + [9799] = {.lex_state = 145}, + [9800] = {.lex_state = 145}, + [9801] = {.lex_state = 145}, + [9802] = {.lex_state = 145}, + [9803] = {.lex_state = 145}, + [9804] = {.lex_state = 145}, + [9805] = {.lex_state = 145}, + [9806] = {.lex_state = 145}, + [9807] = {.lex_state = 145}, + [9808] = {.lex_state = 145}, + [9809] = {.lex_state = 145}, + [9810] = {.lex_state = 145}, + [9811] = {.lex_state = 145}, + [9812] = {.lex_state = 145}, + [9813] = {.lex_state = 145}, + [9814] = {.lex_state = 145}, + [9815] = {.lex_state = 145}, + [9816] = {.lex_state = 145}, + [9817] = {.lex_state = 145}, + [9818] = {.lex_state = 145}, + [9819] = {.lex_state = 145}, + [9820] = {.lex_state = 145}, + [9821] = {.lex_state = 145}, + [9822] = {.lex_state = 145}, + [9823] = {.lex_state = 145}, + [9824] = {.lex_state = 145}, + [9825] = {.lex_state = 145}, + [9826] = {.lex_state = 145}, + [9827] = {.lex_state = 145}, + [9828] = {.lex_state = 145}, + [9829] = {.lex_state = 145}, + [9830] = {.lex_state = 145}, + [9831] = {.lex_state = 145}, + [9832] = {.lex_state = 145}, + [9833] = {.lex_state = 145}, + [9834] = {.lex_state = 145}, + [9835] = {.lex_state = 145}, + [9836] = {.lex_state = 145}, + [9837] = {.lex_state = 145}, + [9838] = {.lex_state = 145}, + [9839] = {.lex_state = 145}, + [9840] = {.lex_state = 145}, + [9841] = {.lex_state = 145}, + [9842] = {.lex_state = 145}, + [9843] = {.lex_state = 145}, + [9844] = {.lex_state = 145}, + [9845] = {.lex_state = 145}, + [9846] = {.lex_state = 145}, + [9847] = {.lex_state = 145}, + [9848] = {.lex_state = 145}, + [9849] = {.lex_state = 145}, + [9850] = {.lex_state = 145}, + [9851] = {.lex_state = 145}, + [9852] = {.lex_state = 145}, + [9853] = {.lex_state = 145}, + [9854] = {.lex_state = 145}, + [9855] = {.lex_state = 145}, + [9856] = {.lex_state = 145}, + [9857] = {.lex_state = 145}, + [9858] = {.lex_state = 145}, + [9859] = {.lex_state = 145}, + [9860] = {.lex_state = 145}, + [9861] = {.lex_state = 145}, + [9862] = {.lex_state = 145}, + [9863] = {.lex_state = 145}, + [9864] = {.lex_state = 145}, + [9865] = {.lex_state = 145}, + [9866] = {.lex_state = 145}, + [9867] = {.lex_state = 145}, + [9868] = {.lex_state = 145}, + [9869] = {.lex_state = 145}, + [9870] = {.lex_state = 145}, + [9871] = {.lex_state = 145}, + [9872] = {.lex_state = 145}, + [9873] = {.lex_state = 145}, + [9874] = {.lex_state = 145}, + [9875] = {.lex_state = 145}, + [9876] = {.lex_state = 145}, + [9877] = {.lex_state = 145}, + [9878] = {.lex_state = 145}, + [9879] = {.lex_state = 145}, + [9880] = {.lex_state = 145}, + [9881] = {.lex_state = 145}, + [9882] = {.lex_state = 145}, + [9883] = {.lex_state = 145}, + [9884] = {.lex_state = 145}, + [9885] = {.lex_state = 145}, + [9886] = {.lex_state = 145}, + [9887] = {.lex_state = 145}, + [9888] = {.lex_state = 145}, + [9889] = {.lex_state = 145}, + [9890] = {.lex_state = 145}, + [9891] = {.lex_state = 145}, + [9892] = {.lex_state = 145}, + [9893] = {.lex_state = 145}, + [9894] = {.lex_state = 145}, + [9895] = {.lex_state = 145}, + [9896] = {.lex_state = 145}, + [9897] = {.lex_state = 145}, + [9898] = {.lex_state = 145}, + [9899] = {.lex_state = 145}, + [9900] = {.lex_state = 145}, + [9901] = {.lex_state = 145}, + [9902] = {.lex_state = 145}, + [9903] = {.lex_state = 145}, + [9904] = {.lex_state = 145}, + [9905] = {.lex_state = 145}, + [9906] = {.lex_state = 145}, + [9907] = {.lex_state = 145}, + [9908] = {.lex_state = 145}, + [9909] = {.lex_state = 145}, + [9910] = {.lex_state = 145}, + [9911] = {.lex_state = 145}, + [9912] = {.lex_state = 145}, + [9913] = {.lex_state = 145}, + [9914] = {.lex_state = 145}, + [9915] = {.lex_state = 145}, + [9916] = {.lex_state = 145}, + [9917] = {.lex_state = 145}, + [9918] = {.lex_state = 145}, + [9919] = {.lex_state = 145}, + [9920] = {.lex_state = 141}, + [9921] = {.lex_state = 145}, + [9922] = {.lex_state = 145}, + [9923] = {.lex_state = 145}, + [9924] = {.lex_state = 145}, + [9925] = {.lex_state = 145}, + [9926] = {.lex_state = 145}, + [9927] = {.lex_state = 145}, + [9928] = {.lex_state = 145}, + [9929] = {.lex_state = 145}, + [9930] = {.lex_state = 145}, + [9931] = {.lex_state = 145}, + [9932] = {.lex_state = 145}, + [9933] = {.lex_state = 145}, + [9934] = {.lex_state = 145}, + [9935] = {.lex_state = 145}, + [9936] = {.lex_state = 145}, + [9937] = {.lex_state = 145}, + [9938] = {.lex_state = 145}, + [9939] = {.lex_state = 145}, + [9940] = {.lex_state = 145}, + [9941] = {.lex_state = 145}, + [9942] = {.lex_state = 145}, + [9943] = {.lex_state = 145}, + [9944] = {.lex_state = 145}, + [9945] = {.lex_state = 145}, + [9946] = {.lex_state = 145}, + [9947] = {.lex_state = 145}, + [9948] = {.lex_state = 145}, + [9949] = {.lex_state = 145}, + [9950] = {.lex_state = 145}, + [9951] = {.lex_state = 145}, + [9952] = {.lex_state = 145}, + [9953] = {.lex_state = 145}, + [9954] = {.lex_state = 145}, + [9955] = {.lex_state = 145}, + [9956] = {.lex_state = 145}, + [9957] = {.lex_state = 145}, + [9958] = {.lex_state = 145}, + [9959] = {.lex_state = 145}, + [9960] = {.lex_state = 145}, + [9961] = {.lex_state = 145}, + [9962] = {.lex_state = 145}, + [9963] = {.lex_state = 145}, + [9964] = {.lex_state = 145}, + [9965] = {.lex_state = 145}, + [9966] = {.lex_state = 145}, + [9967] = {.lex_state = 145}, + [9968] = {.lex_state = 145}, + [9969] = {.lex_state = 145}, + [9970] = {.lex_state = 145}, + [9971] = {.lex_state = 145}, + [9972] = {.lex_state = 145}, + [9973] = {.lex_state = 145}, + [9974] = {.lex_state = 145}, + [9975] = {.lex_state = 145}, + [9976] = {.lex_state = 145}, + [9977] = {.lex_state = 145}, + [9978] = {.lex_state = 145}, + [9979] = {.lex_state = 145}, + [9980] = {.lex_state = 145}, + [9981] = {.lex_state = 145}, + [9982] = {.lex_state = 145}, + [9983] = {.lex_state = 145}, + [9984] = {.lex_state = 145}, + [9985] = {.lex_state = 145}, + [9986] = {.lex_state = 145}, + [9987] = {.lex_state = 145}, + [9988] = {.lex_state = 145}, + [9989] = {.lex_state = 145}, + [9990] = {.lex_state = 145}, + [9991] = {.lex_state = 145}, + [9992] = {.lex_state = 145}, + [9993] = {.lex_state = 145}, + [9994] = {.lex_state = 145}, + [9995] = {.lex_state = 145}, + [9996] = {.lex_state = 145}, + [9997] = {.lex_state = 145}, + [9998] = {.lex_state = 145}, + [9999] = {.lex_state = 145}, + [10000] = {.lex_state = 145}, + [10001] = {.lex_state = 145}, + [10002] = {.lex_state = 145}, + [10003] = {.lex_state = 145}, + [10004] = {.lex_state = 145}, + [10005] = {.lex_state = 145}, + [10006] = {.lex_state = 145}, + [10007] = {.lex_state = 145}, + [10008] = {.lex_state = 145}, + [10009] = {.lex_state = 145}, + [10010] = {.lex_state = 145}, + [10011] = {.lex_state = 145}, + [10012] = {.lex_state = 145}, + [10013] = {.lex_state = 145}, + [10014] = {.lex_state = 145}, + [10015] = {.lex_state = 145}, + [10016] = {.lex_state = 145}, + [10017] = {.lex_state = 145}, + [10018] = {.lex_state = 145}, + [10019] = {.lex_state = 145}, + [10020] = {.lex_state = 145}, + [10021] = {.lex_state = 145}, + [10022] = {.lex_state = 145}, + [10023] = {.lex_state = 145}, + [10024] = {.lex_state = 145}, + [10025] = {.lex_state = 145}, + [10026] = {.lex_state = 145}, + [10027] = {.lex_state = 145}, + [10028] = {.lex_state = 145}, + [10029] = {.lex_state = 145}, + [10030] = {.lex_state = 145}, + [10031] = {.lex_state = 145}, + [10032] = {.lex_state = 145}, + [10033] = {.lex_state = 145}, + [10034] = {.lex_state = 142}, + [10035] = {.lex_state = 142}, + [10036] = {.lex_state = 143}, + [10037] = {.lex_state = 142}, + [10038] = {.lex_state = 142}, + [10039] = {.lex_state = 142}, + [10040] = {.lex_state = 144}, + [10041] = {.lex_state = 144}, + [10042] = {.lex_state = 144}, + [10043] = {.lex_state = 144}, + [10044] = {.lex_state = 144}, + [10045] = {.lex_state = 454}, + [10046] = {.lex_state = 454}, + [10047] = {.lex_state = 454}, + [10048] = {.lex_state = 454}, + [10049] = {.lex_state = 454}, + [10050] = {.lex_state = 454}, + [10051] = {.lex_state = 454}, + [10052] = {.lex_state = 454}, + [10053] = {.lex_state = 98}, + [10054] = {.lex_state = 454}, + [10055] = {.lex_state = 454}, + [10056] = {.lex_state = 454}, + [10057] = {.lex_state = 454}, + [10058] = {.lex_state = 454}, + [10059] = {.lex_state = 98}, + [10060] = {.lex_state = 98}, + [10061] = {.lex_state = 98}, + [10062] = {.lex_state = 454}, + [10063] = {.lex_state = 98}, + [10064] = {.lex_state = 98}, + [10065] = {.lex_state = 98}, + [10066] = {.lex_state = 98}, + [10067] = {.lex_state = 98}, + [10068] = {.lex_state = 98}, + [10069] = {.lex_state = 98}, + [10070] = {.lex_state = 454}, + [10071] = {.lex_state = 98}, + [10072] = {.lex_state = 98}, + [10073] = {.lex_state = 454}, + [10074] = {.lex_state = 454}, + [10075] = {.lex_state = 454}, + [10076] = {.lex_state = 98}, + [10077] = {.lex_state = 454}, + [10078] = {.lex_state = 454}, + [10079] = {.lex_state = 98}, + [10080] = {.lex_state = 454}, + [10081] = {.lex_state = 454}, + [10082] = {.lex_state = 454}, + [10083] = {.lex_state = 454}, + [10084] = {.lex_state = 454}, + [10085] = {.lex_state = 454}, + [10086] = {.lex_state = 454}, + [10087] = {.lex_state = 454}, + [10088] = {.lex_state = 98}, + [10089] = {.lex_state = 454}, + [10090] = {.lex_state = 98}, + [10091] = {.lex_state = 98}, + [10092] = {.lex_state = 128}, + [10093] = {.lex_state = 98}, + [10094] = {.lex_state = 98}, + [10095] = {.lex_state = 454}, + [10096] = {.lex_state = 454}, + [10097] = {.lex_state = 454}, + [10098] = {.lex_state = 454}, + [10099] = {.lex_state = 454}, + [10100] = {.lex_state = 454}, + [10101] = {.lex_state = 98}, + [10102] = {.lex_state = 454}, + [10103] = {.lex_state = 98}, + [10104] = {.lex_state = 454}, + [10105] = {.lex_state = 98}, + [10106] = {.lex_state = 454}, + [10107] = {.lex_state = 98}, + [10108] = {.lex_state = 98}, + [10109] = {.lex_state = 454}, + [10110] = {.lex_state = 454}, + [10111] = {.lex_state = 454}, + [10112] = {.lex_state = 98}, + [10113] = {.lex_state = 454}, + [10114] = {.lex_state = 454}, + [10115] = {.lex_state = 98}, + [10116] = {.lex_state = 98}, + [10117] = {.lex_state = 128}, + [10118] = {.lex_state = 98}, + [10119] = {.lex_state = 128}, + [10120] = {.lex_state = 98}, + [10121] = {.lex_state = 98}, + [10122] = {.lex_state = 98}, + [10123] = {.lex_state = 98}, + [10124] = {.lex_state = 128}, + [10125] = {.lex_state = 98}, + [10126] = {.lex_state = 128}, + [10127] = {.lex_state = 98}, + [10128] = {.lex_state = 98}, + [10129] = {.lex_state = 98}, + [10130] = {.lex_state = 98}, + [10131] = {.lex_state = 98}, + [10132] = {.lex_state = 98}, + [10133] = {.lex_state = 98}, + [10134] = {.lex_state = 128}, + [10135] = {.lex_state = 128}, + [10136] = {.lex_state = 128}, + [10137] = {.lex_state = 128}, + [10138] = {.lex_state = 128}, + [10139] = {.lex_state = 128}, + [10140] = {.lex_state = 98}, + [10141] = {.lex_state = 130}, + [10142] = {.lex_state = 98}, + [10143] = {.lex_state = 98}, + [10144] = {.lex_state = 98}, + [10145] = {.lex_state = 128}, + [10146] = {.lex_state = 128}, + [10147] = {.lex_state = 98}, + [10148] = {.lex_state = 98}, + [10149] = {.lex_state = 130}, + [10150] = {.lex_state = 130}, + [10151] = {.lex_state = 130}, + [10152] = {.lex_state = 128}, + [10153] = {.lex_state = 98}, + [10154] = {.lex_state = 98}, + [10155] = {.lex_state = 98}, + [10156] = {.lex_state = 130}, + [10157] = {.lex_state = 128}, + [10158] = {.lex_state = 130}, + [10159] = {.lex_state = 130}, + [10160] = {.lex_state = 98}, + [10161] = {.lex_state = 130}, + [10162] = {.lex_state = 130}, + [10163] = {.lex_state = 130}, + [10164] = {.lex_state = 130}, + [10165] = {.lex_state = 130}, + [10166] = {.lex_state = 130}, + [10167] = {.lex_state = 98}, + [10168] = {.lex_state = 130}, + [10169] = {.lex_state = 130}, + [10170] = {.lex_state = 98}, + [10171] = {.lex_state = 128}, + [10172] = {.lex_state = 98}, + [10173] = {.lex_state = 128}, + [10174] = {.lex_state = 98}, + [10175] = {.lex_state = 128}, + [10176] = {.lex_state = 128}, + [10177] = {.lex_state = 128}, + [10178] = {.lex_state = 128}, + [10179] = {.lex_state = 128}, + [10180] = {.lex_state = 454}, + [10181] = {.lex_state = 128}, + [10182] = {.lex_state = 128}, + [10183] = {.lex_state = 128}, + [10184] = {.lex_state = 128}, + [10185] = {.lex_state = 128}, + [10186] = {.lex_state = 128}, + [10187] = {.lex_state = 128}, + [10188] = {.lex_state = 128}, + [10189] = {.lex_state = 128}, + [10190] = {.lex_state = 130}, + [10191] = {.lex_state = 128}, + [10192] = {.lex_state = 128}, + [10193] = {.lex_state = 454}, + [10194] = {.lex_state = 128}, + [10195] = {.lex_state = 128}, + [10196] = {.lex_state = 128}, + [10197] = {.lex_state = 128}, + [10198] = {.lex_state = 128}, + [10199] = {.lex_state = 98}, + [10200] = {.lex_state = 128}, + [10201] = {.lex_state = 128}, + [10202] = {.lex_state = 128}, + [10203] = {.lex_state = 128}, + [10204] = {.lex_state = 130}, + [10205] = {.lex_state = 128}, + [10206] = {.lex_state = 130}, + [10207] = {.lex_state = 130}, + [10208] = {.lex_state = 130}, + [10209] = {.lex_state = 98}, + [10210] = {.lex_state = 130}, + [10211] = {.lex_state = 130}, + [10212] = {.lex_state = 130}, + [10213] = {.lex_state = 130}, + [10214] = {.lex_state = 130}, + [10215] = {.lex_state = 130}, + [10216] = {.lex_state = 130}, + [10217] = {.lex_state = 130}, + [10218] = {.lex_state = 130}, + [10219] = {.lex_state = 130}, + [10220] = {.lex_state = 130}, + [10221] = {.lex_state = 130}, + [10222] = {.lex_state = 130}, + [10223] = {.lex_state = 130}, + [10224] = {.lex_state = 130}, + [10225] = {.lex_state = 130}, + [10226] = {.lex_state = 130}, + [10227] = {.lex_state = 130}, + [10228] = {.lex_state = 130}, + [10229] = {.lex_state = 130}, + [10230] = {.lex_state = 130}, + [10231] = {.lex_state = 130}, + [10232] = {.lex_state = 130}, + [10233] = {.lex_state = 130}, + [10234] = {.lex_state = 454}, + [10235] = {.lex_state = 130}, + [10236] = {.lex_state = 130}, + [10237] = {.lex_state = 98}, + [10238] = {.lex_state = 130}, + [10239] = {.lex_state = 454}, + [10240] = {.lex_state = 454}, + [10241] = {.lex_state = 454}, + [10242] = {.lex_state = 98}, + [10243] = {.lex_state = 454}, + [10244] = {.lex_state = 454}, + [10245] = {.lex_state = 454}, + [10246] = {.lex_state = 454}, + [10247] = {.lex_state = 98}, + [10248] = {.lex_state = 454}, + [10249] = {.lex_state = 454}, + [10250] = {.lex_state = 454}, + [10251] = {.lex_state = 98}, + [10252] = {.lex_state = 98}, + [10253] = {.lex_state = 130}, + [10254] = {.lex_state = 98}, + [10255] = {.lex_state = 98}, + [10256] = {.lex_state = 98}, + [10257] = {.lex_state = 98}, + [10258] = {.lex_state = 98}, + [10259] = {.lex_state = 98}, + [10260] = {.lex_state = 98}, + [10261] = {.lex_state = 98}, + [10262] = {.lex_state = 98}, + [10263] = {.lex_state = 98}, + [10264] = {.lex_state = 98}, + [10265] = {.lex_state = 98}, + [10266] = {.lex_state = 98}, + [10267] = {.lex_state = 130}, + [10268] = {.lex_state = 454}, + [10269] = {.lex_state = 454}, + [10270] = {.lex_state = 98}, + [10271] = {.lex_state = 454}, + [10272] = {.lex_state = 130}, + [10273] = {.lex_state = 130}, + [10274] = {.lex_state = 130}, + [10275] = {.lex_state = 98}, + [10276] = {.lex_state = 130}, + [10277] = {.lex_state = 130}, + [10278] = {.lex_state = 98}, + [10279] = {.lex_state = 130}, + [10280] = {.lex_state = 130}, + [10281] = {.lex_state = 130}, + [10282] = {.lex_state = 130}, + [10283] = {.lex_state = 130}, + [10284] = {.lex_state = 454}, + [10285] = {.lex_state = 454}, + [10286] = {.lex_state = 454}, + [10287] = {.lex_state = 130}, + [10288] = {.lex_state = 98}, + [10289] = {.lex_state = 130}, + [10290] = {.lex_state = 454}, + [10291] = {.lex_state = 454}, + [10292] = {.lex_state = 454}, + [10293] = {.lex_state = 454}, + [10294] = {.lex_state = 454}, + [10295] = {.lex_state = 454}, + [10296] = {.lex_state = 454}, + [10297] = {.lex_state = 146}, + [10298] = {.lex_state = 454}, + [10299] = {.lex_state = 454}, + [10300] = {.lex_state = 454}, + [10301] = {.lex_state = 454}, + [10302] = {.lex_state = 454}, + [10303] = {.lex_state = 454}, + [10304] = {.lex_state = 145}, + [10305] = {.lex_state = 454}, + [10306] = {.lex_state = 140}, + [10307] = {.lex_state = 146}, + [10308] = {.lex_state = 140}, + [10309] = {.lex_state = 146}, + [10310] = {.lex_state = 454}, + [10311] = {.lex_state = 454}, + [10312] = {.lex_state = 454}, + [10313] = {.lex_state = 146}, + [10314] = {.lex_state = 454}, + [10315] = {.lex_state = 454}, + [10316] = {.lex_state = 454}, + [10317] = {.lex_state = 454}, + [10318] = {.lex_state = 454}, + [10319] = {.lex_state = 146}, + [10320] = {.lex_state = 146}, + [10321] = {.lex_state = 454}, + [10322] = {.lex_state = 140}, + [10323] = {.lex_state = 140}, + [10324] = {.lex_state = 140}, + [10325] = {.lex_state = 140}, + [10326] = {.lex_state = 454}, + [10327] = {.lex_state = 454}, + [10328] = {.lex_state = 454}, + [10329] = {.lex_state = 454}, + [10330] = {.lex_state = 129}, + [10331] = {.lex_state = 129}, + [10332] = {.lex_state = 129}, + [10333] = {.lex_state = 129}, + [10334] = {.lex_state = 129}, + [10335] = {.lex_state = 145}, + [10336] = {.lex_state = 98}, + [10337] = {.lex_state = 98}, + [10338] = {.lex_state = 98}, + [10339] = {.lex_state = 98}, + [10340] = {.lex_state = 98}, + [10341] = {.lex_state = 98}, + [10342] = {.lex_state = 129}, + [10343] = {.lex_state = 145}, + [10344] = {.lex_state = 129}, + [10345] = {.lex_state = 129}, + [10346] = {.lex_state = 145}, + [10347] = {.lex_state = 129}, + [10348] = {.lex_state = 98}, + [10349] = {.lex_state = 98}, + [10350] = {.lex_state = 129}, + [10351] = {.lex_state = 98}, + [10352] = {.lex_state = 145}, + [10353] = {.lex_state = 145}, + [10354] = {.lex_state = 98}, + [10355] = {.lex_state = 98}, + [10356] = {.lex_state = 129}, + [10357] = {.lex_state = 129}, + [10358] = {.lex_state = 98}, + [10359] = {.lex_state = 98}, + [10360] = {.lex_state = 131}, + [10361] = {.lex_state = 129}, + [10362] = {.lex_state = 98}, + [10363] = {.lex_state = 131}, + [10364] = {.lex_state = 454}, + [10365] = {.lex_state = 131}, + [10366] = {.lex_state = 131}, + [10367] = {.lex_state = 131}, + [10368] = {.lex_state = 131}, + [10369] = {.lex_state = 98}, + [10370] = {.lex_state = 131}, + [10371] = {.lex_state = 131}, + [10372] = {.lex_state = 131}, + [10373] = {.lex_state = 131}, + [10374] = {.lex_state = 454}, + [10375] = {.lex_state = 131}, + [10376] = {.lex_state = 129}, + [10377] = {.lex_state = 129}, + [10378] = {.lex_state = 131}, + [10379] = {.lex_state = 131}, + [10380] = {.lex_state = 131}, + [10381] = {.lex_state = 131}, + [10382] = {.lex_state = 145}, + [10383] = {.lex_state = 129}, + [10384] = {.lex_state = 129}, + [10385] = {.lex_state = 129}, + [10386] = {.lex_state = 98}, + [10387] = {.lex_state = 98}, + [10388] = {.lex_state = 129}, + [10389] = {.lex_state = 131}, + [10390] = {.lex_state = 98}, + [10391] = {.lex_state = 129}, + [10392] = {.lex_state = 131}, + [10393] = {.lex_state = 129}, + [10394] = {.lex_state = 129}, + [10395] = {.lex_state = 98}, + [10396] = {.lex_state = 129}, + [10397] = {.lex_state = 129}, + [10398] = {.lex_state = 129}, + [10399] = {.lex_state = 129}, + [10400] = {.lex_state = 129}, + [10401] = {.lex_state = 98}, + [10402] = {.lex_state = 129}, + [10403] = {.lex_state = 129}, + [10404] = {.lex_state = 129}, + [10405] = {.lex_state = 129}, + [10406] = {.lex_state = 129}, + [10407] = {.lex_state = 98}, + [10408] = {.lex_state = 129}, + [10409] = {.lex_state = 129}, + [10410] = {.lex_state = 129}, + [10411] = {.lex_state = 129}, + [10412] = {.lex_state = 129}, + [10413] = {.lex_state = 129}, + [10414] = {.lex_state = 129}, + [10415] = {.lex_state = 129}, + [10416] = {.lex_state = 98}, + [10417] = {.lex_state = 131}, + [10418] = {.lex_state = 131}, + [10419] = {.lex_state = 131}, + [10420] = {.lex_state = 131}, + [10421] = {.lex_state = 131}, + [10422] = {.lex_state = 131}, + [10423] = {.lex_state = 131}, + [10424] = {.lex_state = 131}, + [10425] = {.lex_state = 131}, + [10426] = {.lex_state = 131}, + [10427] = {.lex_state = 131}, + [10428] = {.lex_state = 131}, + [10429] = {.lex_state = 131}, + [10430] = {.lex_state = 131}, + [10431] = {.lex_state = 131}, + [10432] = {.lex_state = 131}, + [10433] = {.lex_state = 131}, + [10434] = {.lex_state = 98}, + [10435] = {.lex_state = 131}, + [10436] = {.lex_state = 131}, + [10437] = {.lex_state = 98}, + [10438] = {.lex_state = 98}, + [10439] = {.lex_state = 98}, + [10440] = {.lex_state = 98}, + [10441] = {.lex_state = 98}, + [10442] = {.lex_state = 98}, + [10443] = {.lex_state = 98}, + [10444] = {.lex_state = 98}, + [10445] = {.lex_state = 98}, + [10446] = {.lex_state = 98}, + [10447] = {.lex_state = 98}, + [10448] = {.lex_state = 98}, + [10449] = {.lex_state = 98}, + [10450] = {.lex_state = 131}, + [10451] = {.lex_state = 131}, + [10452] = {.lex_state = 131}, + [10453] = {.lex_state = 131}, + [10454] = {.lex_state = 98}, + [10455] = {.lex_state = 98}, + [10456] = {.lex_state = 98}, + [10457] = {.lex_state = 98}, + [10458] = {.lex_state = 98}, + [10459] = {.lex_state = 98}, + [10460] = {.lex_state = 98}, + [10461] = {.lex_state = 98}, + [10462] = {.lex_state = 98}, + [10463] = {.lex_state = 98}, + [10464] = {.lex_state = 98}, + [10465] = {.lex_state = 98}, + [10466] = {.lex_state = 98}, + [10467] = {.lex_state = 98}, + [10468] = {.lex_state = 98}, + [10469] = {.lex_state = 98}, + [10470] = {.lex_state = 98}, + [10471] = {.lex_state = 131}, + [10472] = {.lex_state = 98}, + [10473] = {.lex_state = 131}, + [10474] = {.lex_state = 98}, + [10475] = {.lex_state = 98}, + [10476] = {.lex_state = 98}, + [10477] = {.lex_state = 131}, + [10478] = {.lex_state = 98}, + [10479] = {.lex_state = 131}, + [10480] = {.lex_state = 98}, + [10481] = {.lex_state = 98}, + [10482] = {.lex_state = 131}, + [10483] = {.lex_state = 98}, + [10484] = {.lex_state = 98}, + [10485] = {.lex_state = 131}, + [10486] = {.lex_state = 131}, + [10487] = {.lex_state = 98}, + [10488] = {.lex_state = 131}, + [10489] = {.lex_state = 131}, + [10490] = {.lex_state = 98}, + [10491] = {.lex_state = 98}, + [10492] = {.lex_state = 98}, + [10493] = {.lex_state = 98}, + [10494] = {.lex_state = 98}, + [10495] = {.lex_state = 98}, + [10496] = {.lex_state = 131}, + [10497] = {.lex_state = 131}, + [10498] = {.lex_state = 131}, + [10499] = {.lex_state = 98}, + [10500] = {.lex_state = 98}, + [10501] = {.lex_state = 98}, + [10502] = {.lex_state = 98}, + [10503] = {.lex_state = 131}, + [10504] = {.lex_state = 98}, + [10505] = {.lex_state = 98}, + [10506] = {.lex_state = 98}, + [10507] = {.lex_state = 131}, + [10508] = {.lex_state = 131}, + [10509] = {.lex_state = 98}, + [10510] = {.lex_state = 98}, + [10511] = {.lex_state = 131}, + [10512] = {.lex_state = 98}, + [10513] = {.lex_state = 98}, + [10514] = {.lex_state = 98}, + [10515] = {.lex_state = 131}, + [10516] = {.lex_state = 131}, + [10517] = {.lex_state = 131}, + [10518] = {.lex_state = 98}, + [10519] = {.lex_state = 98}, + [10520] = {.lex_state = 132}, + [10521] = {.lex_state = 454}, + [10522] = {.lex_state = 454}, + [10523] = {.lex_state = 454}, + [10524] = {.lex_state = 127}, + [10525] = {.lex_state = 127}, + [10526] = {.lex_state = 454}, + [10527] = {.lex_state = 454}, + [10528] = {.lex_state = 454}, + [10529] = {.lex_state = 454}, + [10530] = {.lex_state = 454}, + [10531] = {.lex_state = 132}, + [10532] = {.lex_state = 454}, + [10533] = {.lex_state = 454}, + [10534] = {.lex_state = 454}, + [10535] = {.lex_state = 127}, + [10536] = {.lex_state = 132}, + [10537] = {.lex_state = 127}, + [10538] = {.lex_state = 127}, + [10539] = {.lex_state = 127}, + [10540] = {.lex_state = 127}, + [10541] = {.lex_state = 132}, + [10542] = {.lex_state = 132}, + [10543] = {.lex_state = 127}, + [10544] = {.lex_state = 127}, + [10545] = {.lex_state = 132}, + [10546] = {.lex_state = 132}, + [10547] = {.lex_state = 132}, + [10548] = {.lex_state = 98}, + [10549] = {.lex_state = 454}, + [10550] = {.lex_state = 132}, + [10551] = {.lex_state = 127}, + [10552] = {.lex_state = 132}, + [10553] = {.lex_state = 98}, + [10554] = {.lex_state = 127}, + [10555] = {.lex_state = 98}, + [10556] = {.lex_state = 454}, + [10557] = {.lex_state = 132}, + [10558] = {.lex_state = 132}, + [10559] = {.lex_state = 132}, + [10560] = {.lex_state = 132}, + [10561] = {.lex_state = 127}, + [10562] = {.lex_state = 127}, + [10563] = {.lex_state = 127}, + [10564] = {.lex_state = 454}, + [10565] = {.lex_state = 127}, + [10566] = {.lex_state = 132}, + [10567] = {.lex_state = 132}, + [10568] = {.lex_state = 454}, + [10569] = {.lex_state = 127}, + [10570] = {.lex_state = 127}, + [10571] = {.lex_state = 454}, + [10572] = {.lex_state = 98}, + [10573] = {.lex_state = 127}, + [10574] = {.lex_state = 454}, + [10575] = {.lex_state = 132}, + [10576] = {.lex_state = 127}, + [10577] = {.lex_state = 127}, + [10578] = {.lex_state = 454}, + [10579] = {.lex_state = 127}, + [10580] = {.lex_state = 127}, + [10581] = {.lex_state = 127}, + [10582] = {.lex_state = 127}, + [10583] = {.lex_state = 127}, + [10584] = {.lex_state = 98}, + [10585] = {.lex_state = 127}, + [10586] = {.lex_state = 454}, + [10587] = {.lex_state = 127}, + [10588] = {.lex_state = 454}, + [10589] = {.lex_state = 454}, + [10590] = {.lex_state = 454}, + [10591] = {.lex_state = 127}, + [10592] = {.lex_state = 127}, + [10593] = {.lex_state = 454}, + [10594] = {.lex_state = 127}, + [10595] = {.lex_state = 98}, + [10596] = {.lex_state = 127}, + [10597] = {.lex_state = 127}, + [10598] = {.lex_state = 127}, + [10599] = {.lex_state = 127}, + [10600] = {.lex_state = 127}, + [10601] = {.lex_state = 127}, + [10602] = {.lex_state = 127}, + [10603] = {.lex_state = 127}, + [10604] = {.lex_state = 127}, + [10605] = {.lex_state = 127}, + [10606] = {.lex_state = 127}, + [10607] = {.lex_state = 127}, + [10608] = {.lex_state = 127}, + [10609] = {.lex_state = 127}, + [10610] = {.lex_state = 127}, + [10611] = {.lex_state = 127}, + [10612] = {.lex_state = 127}, + [10613] = {.lex_state = 127}, + [10614] = {.lex_state = 98}, + [10615] = {.lex_state = 127}, + [10616] = {.lex_state = 127}, + [10617] = {.lex_state = 127}, + [10618] = {.lex_state = 127}, + [10619] = {.lex_state = 127}, + [10620] = {.lex_state = 454}, + [10621] = {.lex_state = 127}, + [10622] = {.lex_state = 127}, + [10623] = {.lex_state = 127}, + [10624] = {.lex_state = 127}, + [10625] = {.lex_state = 454}, + [10626] = {.lex_state = 127}, + [10627] = {.lex_state = 454}, + [10628] = {.lex_state = 454}, + [10629] = {.lex_state = 454}, + [10630] = {.lex_state = 127}, + [10631] = {.lex_state = 454}, + [10632] = {.lex_state = 454}, + [10633] = {.lex_state = 127}, + [10634] = {.lex_state = 98}, + [10635] = {.lex_state = 127}, + [10636] = {.lex_state = 127}, + [10637] = {.lex_state = 127}, + [10638] = {.lex_state = 127}, + [10639] = {.lex_state = 127}, + [10640] = {.lex_state = 127}, + [10641] = {.lex_state = 98}, + [10642] = {.lex_state = 127}, + [10643] = {.lex_state = 127}, + [10644] = {.lex_state = 98}, + [10645] = {.lex_state = 127}, + [10646] = {.lex_state = 127}, + [10647] = {.lex_state = 127}, + [10648] = {.lex_state = 127}, + [10649] = {.lex_state = 127}, + [10650] = {.lex_state = 127}, + [10651] = {.lex_state = 127}, + [10652] = {.lex_state = 127}, + [10653] = {.lex_state = 98}, + [10654] = {.lex_state = 127}, + [10655] = {.lex_state = 127}, + [10656] = {.lex_state = 127}, + [10657] = {.lex_state = 127}, + [10658] = {.lex_state = 127}, + [10659] = {.lex_state = 454}, + [10660] = {.lex_state = 127}, + [10661] = {.lex_state = 127}, + [10662] = {.lex_state = 127}, + [10663] = {.lex_state = 98}, + [10664] = {.lex_state = 127}, + [10665] = {.lex_state = 127}, + [10666] = {.lex_state = 127}, + [10667] = {.lex_state = 127}, + [10668] = {.lex_state = 454}, + [10669] = {.lex_state = 454}, + [10670] = {.lex_state = 127}, + [10671] = {.lex_state = 98}, + [10672] = {.lex_state = 98}, + [10673] = {.lex_state = 127}, + [10674] = {.lex_state = 127}, + [10675] = {.lex_state = 127}, + [10676] = {.lex_state = 127}, + [10677] = {.lex_state = 98}, + [10678] = {.lex_state = 98}, + [10679] = {.lex_state = 98}, + [10680] = {.lex_state = 127}, + [10681] = {.lex_state = 127}, + [10682] = {.lex_state = 127}, + [10683] = {.lex_state = 98}, + [10684] = {.lex_state = 98}, + [10685] = {.lex_state = 127}, + [10686] = {.lex_state = 127}, + [10687] = {.lex_state = 98}, + [10688] = {.lex_state = 127}, + [10689] = {.lex_state = 454}, + [10690] = {.lex_state = 454}, + [10691] = {.lex_state = 154}, + [10692] = {.lex_state = 454}, + [10693] = {.lex_state = 454}, + [10694] = {.lex_state = 454}, + [10695] = {.lex_state = 154}, + [10696] = {.lex_state = 454}, + [10697] = {.lex_state = 454}, + [10698] = {.lex_state = 454}, + [10699] = {.lex_state = 454}, + [10700] = {.lex_state = 454}, + [10701] = {.lex_state = 154}, + [10702] = {.lex_state = 454}, + [10703] = {.lex_state = 154}, + [10704] = {.lex_state = 454}, + [10705] = {.lex_state = 454}, + [10706] = {.lex_state = 454}, + [10707] = {.lex_state = 127}, + [10708] = {.lex_state = 454}, + [10709] = {.lex_state = 127}, + [10710] = {.lex_state = 127}, + [10711] = {.lex_state = 154}, + [10712] = {.lex_state = 454}, + [10713] = {.lex_state = 454}, + [10714] = {.lex_state = 454}, + [10715] = {.lex_state = 127}, + [10716] = {.lex_state = 454}, + [10717] = {.lex_state = 154}, + [10718] = {.lex_state = 454}, + [10719] = {.lex_state = 127}, + [10720] = {.lex_state = 454}, + [10721] = {.lex_state = 454}, + [10722] = {.lex_state = 127}, + [10723] = {.lex_state = 154}, + [10724] = {.lex_state = 127}, + [10725] = {.lex_state = 454}, + [10726] = {.lex_state = 454}, + [10727] = {.lex_state = 454}, + [10728] = {.lex_state = 154}, + [10729] = {.lex_state = 454}, + [10730] = {.lex_state = 454}, + [10731] = {.lex_state = 454}, + [10732] = {.lex_state = 454}, + [10733] = {.lex_state = 454}, + [10734] = {.lex_state = 454}, + [10735] = {.lex_state = 454}, + [10736] = {.lex_state = 454}, + [10737] = {.lex_state = 454}, + [10738] = {.lex_state = 454}, + [10739] = {.lex_state = 454}, + [10740] = {.lex_state = 454}, + [10741] = {.lex_state = 454}, + [10742] = {.lex_state = 454}, + [10743] = {.lex_state = 454}, + [10744] = {.lex_state = 454}, + [10745] = {.lex_state = 454}, + [10746] = {.lex_state = 454}, + [10747] = {.lex_state = 454}, + [10748] = {.lex_state = 454}, + [10749] = {.lex_state = 454}, + [10750] = {.lex_state = 454}, + [10751] = {.lex_state = 454}, + [10752] = {.lex_state = 454}, + [10753] = {.lex_state = 454}, + [10754] = {.lex_state = 454}, + [10755] = {.lex_state = 454}, + [10756] = {.lex_state = 454}, + [10757] = {.lex_state = 454}, + [10758] = {.lex_state = 454}, + [10759] = {.lex_state = 454}, + [10760] = {.lex_state = 454}, + [10761] = {.lex_state = 454}, + [10762] = {.lex_state = 454}, + [10763] = {.lex_state = 454}, + [10764] = {.lex_state = 454}, + [10765] = {.lex_state = 454}, + [10766] = {.lex_state = 454}, + [10767] = {.lex_state = 454}, + [10768] = {.lex_state = 454}, + [10769] = {.lex_state = 454}, + [10770] = {.lex_state = 454}, + [10771] = {.lex_state = 454}, + [10772] = {.lex_state = 454}, + [10773] = {.lex_state = 454}, + [10774] = {.lex_state = 127}, + [10775] = {.lex_state = 454}, + [10776] = {.lex_state = 454}, + [10777] = {.lex_state = 454}, + [10778] = {.lex_state = 454}, + [10779] = {.lex_state = 454}, + [10780] = {.lex_state = 454}, + [10781] = {.lex_state = 454}, + [10782] = {.lex_state = 454}, + [10783] = {.lex_state = 454}, + [10784] = {.lex_state = 454}, + [10785] = {.lex_state = 454}, + [10786] = {.lex_state = 454}, + [10787] = {.lex_state = 454}, + [10788] = {.lex_state = 454}, + [10789] = {.lex_state = 454}, + [10790] = {.lex_state = 127}, + [10791] = {.lex_state = 454}, + [10792] = {.lex_state = 454}, + [10793] = {.lex_state = 454}, + [10794] = {.lex_state = 454}, + [10795] = {.lex_state = 454}, + [10796] = {.lex_state = 454}, + [10797] = {.lex_state = 454}, + [10798] = {.lex_state = 454}, + [10799] = {.lex_state = 454}, + [10800] = {.lex_state = 454}, + [10801] = {.lex_state = 454}, + [10802] = {.lex_state = 454}, + [10803] = {.lex_state = 454}, + [10804] = {.lex_state = 454}, + [10805] = {.lex_state = 454}, + [10806] = {.lex_state = 454}, + [10807] = {.lex_state = 454}, + [10808] = {.lex_state = 454}, + [10809] = {.lex_state = 454}, + [10810] = {.lex_state = 454}, + [10811] = {.lex_state = 454}, + [10812] = {.lex_state = 454}, + [10813] = {.lex_state = 454}, + [10814] = {.lex_state = 454}, + [10815] = {.lex_state = 454}, + [10816] = {.lex_state = 454}, + [10817] = {.lex_state = 454}, + [10818] = {.lex_state = 454}, + [10819] = {.lex_state = 454}, + [10820] = {.lex_state = 454}, + [10821] = {.lex_state = 454}, + [10822] = {.lex_state = 454}, + [10823] = {.lex_state = 454}, + [10824] = {.lex_state = 454}, + [10825] = {.lex_state = 454}, + [10826] = {.lex_state = 127}, + [10827] = {.lex_state = 454}, + [10828] = {.lex_state = 454}, + [10829] = {.lex_state = 127}, + [10830] = {.lex_state = 454}, + [10831] = {.lex_state = 454}, + [10832] = {.lex_state = 454}, + [10833] = {.lex_state = 454}, + [10834] = {.lex_state = 454}, + [10835] = {.lex_state = 454}, + [10836] = {.lex_state = 454}, + [10837] = {.lex_state = 454}, + [10838] = {.lex_state = 454}, + [10839] = {.lex_state = 454}, + [10840] = {.lex_state = 454}, + [10841] = {.lex_state = 454}, + [10842] = {.lex_state = 454}, + [10843] = {.lex_state = 454}, + [10844] = {.lex_state = 454}, + [10845] = {.lex_state = 454}, + [10846] = {.lex_state = 454}, + [10847] = {.lex_state = 454}, + [10848] = {.lex_state = 454}, + [10849] = {.lex_state = 454}, + [10850] = {.lex_state = 454}, + [10851] = {.lex_state = 454}, + [10852] = {.lex_state = 454}, + [10853] = {.lex_state = 454}, + [10854] = {.lex_state = 454}, + [10855] = {.lex_state = 454}, + [10856] = {.lex_state = 454}, + [10857] = {.lex_state = 454}, + [10858] = {.lex_state = 454}, + [10859] = {.lex_state = 454}, + [10860] = {.lex_state = 454}, + [10861] = {.lex_state = 454}, + [10862] = {.lex_state = 454}, + [10863] = {.lex_state = 454}, + [10864] = {.lex_state = 454}, + [10865] = {.lex_state = 454}, + [10866] = {.lex_state = 454}, + [10867] = {.lex_state = 454}, + [10868] = {.lex_state = 454}, + [10869] = {.lex_state = 454}, + [10870] = {.lex_state = 454}, + [10871] = {.lex_state = 454}, + [10872] = {.lex_state = 454}, + [10873] = {.lex_state = 454}, + [10874] = {.lex_state = 454}, + [10875] = {.lex_state = 454}, + [10876] = {.lex_state = 454}, + [10877] = {.lex_state = 454}, + [10878] = {.lex_state = 454}, + [10879] = {.lex_state = 454}, + [10880] = {.lex_state = 454}, + [10881] = {.lex_state = 454}, + [10882] = {.lex_state = 454}, + [10883] = {.lex_state = 454}, + [10884] = {.lex_state = 454}, + [10885] = {.lex_state = 454}, + [10886] = {.lex_state = 454}, + [10887] = {.lex_state = 454}, + [10888] = {.lex_state = 454}, + [10889] = {.lex_state = 454}, + [10890] = {.lex_state = 454}, + [10891] = {.lex_state = 454}, + [10892] = {.lex_state = 454}, + [10893] = {.lex_state = 454}, + [10894] = {.lex_state = 454}, + [10895] = {.lex_state = 454}, + [10896] = {.lex_state = 454}, + [10897] = {.lex_state = 454}, + [10898] = {.lex_state = 454}, + [10899] = {.lex_state = 454}, + [10900] = {.lex_state = 454}, + [10901] = {.lex_state = 454}, + [10902] = {.lex_state = 454}, + [10903] = {.lex_state = 454}, + [10904] = {.lex_state = 454}, + [10905] = {.lex_state = 454}, + [10906] = {.lex_state = 454}, + [10907] = {.lex_state = 454}, + [10908] = {.lex_state = 454}, + [10909] = {.lex_state = 454}, + [10910] = {.lex_state = 454}, + [10911] = {.lex_state = 454}, + [10912] = {.lex_state = 454}, + [10913] = {.lex_state = 454}, + [10914] = {.lex_state = 454}, + [10915] = {.lex_state = 454}, + [10916] = {.lex_state = 454}, + [10917] = {.lex_state = 454}, + [10918] = {.lex_state = 454}, + [10919] = {.lex_state = 454}, + [10920] = {.lex_state = 454}, + [10921] = {.lex_state = 454}, + [10922] = {.lex_state = 454}, + [10923] = {.lex_state = 454}, + [10924] = {.lex_state = 454}, + [10925] = {.lex_state = 454}, + [10926] = {.lex_state = 454}, + [10927] = {.lex_state = 454}, + [10928] = {.lex_state = 454}, + [10929] = {.lex_state = 454}, + [10930] = {.lex_state = 454}, + [10931] = {.lex_state = 454}, + [10932] = {.lex_state = 454}, + [10933] = {.lex_state = 454}, + [10934] = {.lex_state = 454}, + [10935] = {.lex_state = 454}, + [10936] = {.lex_state = 454}, + [10937] = {.lex_state = 454}, + [10938] = {.lex_state = 454}, + [10939] = {.lex_state = 454}, + [10940] = {.lex_state = 454}, + [10941] = {.lex_state = 454}, + [10942] = {.lex_state = 454}, + [10943] = {.lex_state = 454}, + [10944] = {.lex_state = 454}, + [10945] = {.lex_state = 454}, + [10946] = {.lex_state = 454}, + [10947] = {.lex_state = 454}, + [10948] = {.lex_state = 454}, + [10949] = {.lex_state = 454}, + [10950] = {.lex_state = 454}, + [10951] = {.lex_state = 454}, + [10952] = {.lex_state = 454}, + [10953] = {.lex_state = 454}, + [10954] = {.lex_state = 454}, + [10955] = {.lex_state = 454}, + [10956] = {.lex_state = 454}, + [10957] = {.lex_state = 454}, + [10958] = {.lex_state = 454}, + [10959] = {.lex_state = 454}, + [10960] = {.lex_state = 454}, + [10961] = {.lex_state = 454}, + [10962] = {.lex_state = 454}, + [10963] = {.lex_state = 454}, + [10964] = {.lex_state = 127}, + [10965] = {.lex_state = 454}, + [10966] = {.lex_state = 454}, + [10967] = {.lex_state = 454}, + [10968] = {.lex_state = 454}, + [10969] = {.lex_state = 454}, + [10970] = {.lex_state = 454}, + [10971] = {.lex_state = 127}, + [10972] = {.lex_state = 454}, + [10973] = {.lex_state = 127}, + [10974] = {.lex_state = 127}, + [10975] = {.lex_state = 454}, + [10976] = {.lex_state = 127}, + [10977] = {.lex_state = 454}, + [10978] = {.lex_state = 454}, + [10979] = {.lex_state = 454}, + [10980] = {.lex_state = 127}, + [10981] = {.lex_state = 127}, + [10982] = {.lex_state = 454}, + [10983] = {.lex_state = 454}, + [10984] = {.lex_state = 454}, + [10985] = {.lex_state = 173, .reserved_word_set_id = 1}, + [10986] = {.lex_state = 454}, + [10987] = {.lex_state = 454}, + [10988] = {.lex_state = 454}, + [10989] = {.lex_state = 454}, + [10990] = {.lex_state = 454}, + [10991] = {.lex_state = 173, .reserved_word_set_id = 1}, + [10992] = {.lex_state = 454}, + [10993] = {.lex_state = 454}, + [10994] = {.lex_state = 127}, + [10995] = {.lex_state = 454}, + [10996] = {.lex_state = 454}, + [10997] = {.lex_state = 454}, + [10998] = {.lex_state = 454}, + [10999] = {.lex_state = 173, .reserved_word_set_id = 1}, + [11000] = {.lex_state = 454}, + [11001] = {.lex_state = 454}, + [11002] = {.lex_state = 454}, + [11003] = {.lex_state = 127}, + [11004] = {.lex_state = 173, .reserved_word_set_id = 1}, + [11005] = {.lex_state = 127}, + [11006] = {.lex_state = 127}, + [11007] = {.lex_state = 127}, + [11008] = {.lex_state = 127}, + [11009] = {.lex_state = 127}, + [11010] = {.lex_state = 127}, + [11011] = {.lex_state = 127}, + [11012] = {.lex_state = 127}, + [11013] = {.lex_state = 98}, + [11014] = {.lex_state = 127}, + [11015] = {.lex_state = 127}, + [11016] = {.lex_state = 454}, + [11017] = {.lex_state = 127}, + [11018] = {.lex_state = 127}, + [11019] = {.lex_state = 127}, + [11020] = {.lex_state = 127}, + [11021] = {.lex_state = 127}, + [11022] = {.lex_state = 127}, + [11023] = {.lex_state = 127}, + [11024] = {.lex_state = 127}, + [11025] = {.lex_state = 454}, + [11026] = {.lex_state = 127}, + [11027] = {.lex_state = 127}, + [11028] = {.lex_state = 127}, + [11029] = {.lex_state = 127}, + [11030] = {.lex_state = 127}, + [11031] = {.lex_state = 127}, + [11032] = {.lex_state = 127}, + [11033] = {.lex_state = 127}, + [11034] = {.lex_state = 127}, + [11035] = {.lex_state = 127}, + [11036] = {.lex_state = 127}, + [11037] = {.lex_state = 127}, + [11038] = {.lex_state = 127}, + [11039] = {.lex_state = 127}, + [11040] = {.lex_state = 127}, + [11041] = {.lex_state = 127}, + [11042] = {.lex_state = 127}, + [11043] = {.lex_state = 127}, + [11044] = {.lex_state = 127}, + [11045] = {.lex_state = 127}, + [11046] = {.lex_state = 127}, + [11047] = {.lex_state = 127}, + [11048] = {.lex_state = 127}, + [11049] = {.lex_state = 127}, + [11050] = {.lex_state = 127}, + [11051] = {.lex_state = 127}, + [11052] = {.lex_state = 127}, + [11053] = {.lex_state = 127}, + [11054] = {.lex_state = 127}, + [11055] = {.lex_state = 127}, + [11056] = {.lex_state = 127}, + [11057] = {.lex_state = 127}, + [11058] = {.lex_state = 127}, + [11059] = {.lex_state = 454}, + [11060] = {.lex_state = 127}, + [11061] = {.lex_state = 454}, + [11062] = {.lex_state = 127}, + [11063] = {.lex_state = 127}, + [11064] = {.lex_state = 127}, + [11065] = {.lex_state = 127}, + [11066] = {.lex_state = 127}, + [11067] = {.lex_state = 127}, + [11068] = {.lex_state = 127}, + [11069] = {.lex_state = 127}, + [11070] = {.lex_state = 127}, + [11071] = {.lex_state = 127}, + [11072] = {.lex_state = 127}, + [11073] = {.lex_state = 127}, + [11074] = {.lex_state = 127}, + [11075] = {.lex_state = 127}, + [11076] = {.lex_state = 127}, + [11077] = {.lex_state = 127}, + [11078] = {.lex_state = 454}, + [11079] = {.lex_state = 127}, + [11080] = {.lex_state = 127}, + [11081] = {.lex_state = 98}, + [11082] = {.lex_state = 127}, + [11083] = {.lex_state = 127}, + [11084] = {.lex_state = 127}, + [11085] = {.lex_state = 127}, + [11086] = {.lex_state = 127}, + [11087] = {.lex_state = 127}, + [11088] = {.lex_state = 127}, + [11089] = {.lex_state = 127}, + [11090] = {.lex_state = 127}, + [11091] = {.lex_state = 127}, + [11092] = {.lex_state = 127}, + [11093] = {.lex_state = 127}, + [11094] = {.lex_state = 127}, + [11095] = {.lex_state = 127}, + [11096] = {.lex_state = 127}, + [11097] = {.lex_state = 127}, + [11098] = {.lex_state = 127}, + [11099] = {.lex_state = 127}, + [11100] = {.lex_state = 127}, + [11101] = {.lex_state = 127}, + [11102] = {.lex_state = 127}, + [11103] = {.lex_state = 127}, + [11104] = {.lex_state = 127}, + [11105] = {.lex_state = 127}, + [11106] = {.lex_state = 127}, + [11107] = {.lex_state = 127}, + [11108] = {.lex_state = 127}, + [11109] = {.lex_state = 127}, + [11110] = {.lex_state = 127}, + [11111] = {.lex_state = 127}, + [11112] = {.lex_state = 454}, + [11113] = {.lex_state = 454}, + [11114] = {.lex_state = 454}, + [11115] = {.lex_state = 454}, + [11116] = {.lex_state = 454}, + [11117] = {.lex_state = 127}, + [11118] = {.lex_state = 127}, + [11119] = {.lex_state = 127}, + [11120] = {.lex_state = 127}, + [11121] = {.lex_state = 454}, + [11122] = {.lex_state = 127}, + [11123] = {.lex_state = 127}, + [11124] = {.lex_state = 127}, + [11125] = {.lex_state = 127}, + [11126] = {.lex_state = 127}, + [11127] = {.lex_state = 127}, + [11128] = {.lex_state = 454}, + [11129] = {.lex_state = 127}, + [11130] = {.lex_state = 127}, + [11131] = {.lex_state = 127}, + [11132] = {.lex_state = 454}, + [11133] = {.lex_state = 454}, + [11134] = {.lex_state = 454}, + [11135] = {.lex_state = 454}, + [11136] = {.lex_state = 127}, + [11137] = {.lex_state = 454}, + [11138] = {.lex_state = 454}, + [11139] = {.lex_state = 127}, + [11140] = {.lex_state = 454}, + [11141] = {.lex_state = 454}, + [11142] = {.lex_state = 454}, + [11143] = {.lex_state = 454}, + [11144] = {.lex_state = 454}, + [11145] = {.lex_state = 454}, + [11146] = {.lex_state = 454}, + [11147] = {.lex_state = 454}, + [11148] = {.lex_state = 454}, + [11149] = {.lex_state = 454}, + [11150] = {.lex_state = 454}, + [11151] = {.lex_state = 127}, + [11152] = {.lex_state = 127}, + [11153] = {.lex_state = 454}, + [11154] = {.lex_state = 454}, + [11155] = {.lex_state = 127}, + [11156] = {.lex_state = 454}, + [11157] = {.lex_state = 454}, + [11158] = {.lex_state = 454}, + [11159] = {.lex_state = 454}, + [11160] = {.lex_state = 454}, + [11161] = {.lex_state = 127}, + [11162] = {.lex_state = 127}, + [11163] = {.lex_state = 454}, + [11164] = {.lex_state = 127}, + [11165] = {.lex_state = 127}, + [11166] = {.lex_state = 127}, + [11167] = {.lex_state = 127}, + [11168] = {.lex_state = 454}, + [11169] = {.lex_state = 454}, + [11170] = {.lex_state = 454}, + [11171] = {.lex_state = 454}, + [11172] = {.lex_state = 454}, + [11173] = {.lex_state = 454}, + [11174] = {.lex_state = 454}, + [11175] = {.lex_state = 454}, + [11176] = {.lex_state = 454}, + [11177] = {.lex_state = 454}, + [11178] = {.lex_state = 454}, + [11179] = {.lex_state = 454}, + [11180] = {.lex_state = 454}, + [11181] = {.lex_state = 454}, + [11182] = {.lex_state = 98}, + [11183] = {.lex_state = 454}, + [11184] = {.lex_state = 454}, + [11185] = {.lex_state = 454}, + [11186] = {.lex_state = 454}, + [11187] = {.lex_state = 127}, + [11188] = {.lex_state = 454}, + [11189] = {.lex_state = 454}, + [11190] = {.lex_state = 127}, + [11191] = {.lex_state = 127}, + [11192] = {.lex_state = 454}, + [11193] = {.lex_state = 98}, + [11194] = {.lex_state = 454}, + [11195] = {.lex_state = 454}, + [11196] = {.lex_state = 454}, + [11197] = {.lex_state = 127}, + [11198] = {.lex_state = 127}, + [11199] = {.lex_state = 454}, + [11200] = {.lex_state = 98}, + [11201] = {.lex_state = 127}, + [11202] = {.lex_state = 127}, + [11203] = {.lex_state = 454}, + [11204] = {.lex_state = 127}, + [11205] = {.lex_state = 127}, + [11206] = {.lex_state = 454}, + [11207] = {.lex_state = 127}, + [11208] = {.lex_state = 454}, + [11209] = {.lex_state = 454}, + [11210] = {.lex_state = 454}, + [11211] = {.lex_state = 454}, + [11212] = {.lex_state = 454}, + [11213] = {.lex_state = 454}, + [11214] = {.lex_state = 454}, + [11215] = {.lex_state = 454}, + [11216] = {.lex_state = 454}, + [11217] = {.lex_state = 454}, + [11218] = {.lex_state = 454}, + [11219] = {.lex_state = 454}, + [11220] = {.lex_state = 454}, + [11221] = {.lex_state = 454}, + [11222] = {.lex_state = 454}, + [11223] = {.lex_state = 127}, + [11224] = {.lex_state = 454}, + [11225] = {.lex_state = 454}, + [11226] = {.lex_state = 454}, + [11227] = {.lex_state = 127}, + [11228] = {.lex_state = 454}, + [11229] = {.lex_state = 454}, + [11230] = {.lex_state = 454}, + [11231] = {.lex_state = 454}, + [11232] = {.lex_state = 454}, + [11233] = {.lex_state = 454}, + [11234] = {.lex_state = 454}, + [11235] = {.lex_state = 454}, + [11236] = {.lex_state = 454}, + [11237] = {.lex_state = 454}, + [11238] = {.lex_state = 454}, + [11239] = {.lex_state = 454}, + [11240] = {.lex_state = 454}, + [11241] = {.lex_state = 454}, + [11242] = {.lex_state = 454}, + [11243] = {.lex_state = 454}, + [11244] = {.lex_state = 454}, + [11245] = {.lex_state = 454}, + [11246] = {.lex_state = 454}, + [11247] = {.lex_state = 454}, + [11248] = {.lex_state = 454}, + [11249] = {.lex_state = 127}, + [11250] = {.lex_state = 454}, + [11251] = {.lex_state = 132}, + [11252] = {.lex_state = 454}, + [11253] = {.lex_state = 127}, + [11254] = {.lex_state = 454}, + [11255] = {.lex_state = 132}, + [11256] = {.lex_state = 98}, + [11257] = {.lex_state = 132}, + [11258] = {.lex_state = 132}, + [11259] = {.lex_state = 127}, + [11260] = {.lex_state = 454}, + [11261] = {.lex_state = 127}, + [11262] = {.lex_state = 454}, + [11263] = {.lex_state = 132}, + [11264] = {.lex_state = 98}, + [11265] = {.lex_state = 132}, + [11266] = {.lex_state = 132}, + [11267] = {.lex_state = 98}, + [11268] = {.lex_state = 98}, + [11269] = {.lex_state = 132}, + [11270] = {.lex_state = 132}, + [11271] = {.lex_state = 454}, + [11272] = {.lex_state = 98}, + [11273] = {.lex_state = 127}, + [11274] = {.lex_state = 454}, + [11275] = {.lex_state = 127}, + [11276] = {.lex_state = 127}, + [11277] = {.lex_state = 454}, + [11278] = {.lex_state = 98}, + [11279] = {.lex_state = 454}, + [11280] = {.lex_state = 132}, + [11281] = {.lex_state = 127}, + [11282] = {.lex_state = 127}, + [11283] = {.lex_state = 454}, + [11284] = {.lex_state = 454}, + [11285] = {.lex_state = 127}, + [11286] = {.lex_state = 132}, + [11287] = {.lex_state = 454}, + [11288] = {.lex_state = 127}, + [11289] = {.lex_state = 127}, + [11290] = {.lex_state = 98}, + [11291] = {.lex_state = 98}, + [11292] = {.lex_state = 127}, + [11293] = {.lex_state = 454}, + [11294] = {.lex_state = 127}, + [11295] = {.lex_state = 127}, + [11296] = {.lex_state = 127}, + [11297] = {.lex_state = 454}, + [11298] = {.lex_state = 98}, + [11299] = {.lex_state = 454}, + [11300] = {.lex_state = 454}, + [11301] = {.lex_state = 127}, + [11302] = {.lex_state = 454}, + [11303] = {.lex_state = 127}, + [11304] = {.lex_state = 127}, + [11305] = {.lex_state = 454}, + [11306] = {.lex_state = 127}, + [11307] = {.lex_state = 98}, + [11308] = {.lex_state = 98}, + [11309] = {.lex_state = 454}, + [11310] = {.lex_state = 98}, + [11311] = {.lex_state = 127}, + [11312] = {.lex_state = 127}, + [11313] = {.lex_state = 454}, + [11314] = {.lex_state = 454}, + [11315] = {.lex_state = 127}, + [11316] = {.lex_state = 127}, + [11317] = {.lex_state = 454}, + [11318] = {.lex_state = 454}, + [11319] = {.lex_state = 127}, + [11320] = {.lex_state = 127}, + [11321] = {.lex_state = 98}, + [11322] = {.lex_state = 98}, + [11323] = {.lex_state = 454}, + [11324] = {.lex_state = 454}, + [11325] = {.lex_state = 454}, + [11326] = {.lex_state = 132}, + [11327] = {.lex_state = 454}, + [11328] = {.lex_state = 132}, + [11329] = {.lex_state = 132}, + [11330] = {.lex_state = 132}, + [11331] = {.lex_state = 98}, + [11332] = {.lex_state = 132}, + [11333] = {.lex_state = 132}, + [11334] = {.lex_state = 454}, + [11335] = {.lex_state = 127}, + [11336] = {.lex_state = 454}, + [11337] = {.lex_state = 98}, + [11338] = {.lex_state = 132}, + [11339] = {.lex_state = 132}, + [11340] = {.lex_state = 127}, + [11341] = {.lex_state = 132}, + [11342] = {.lex_state = 132}, + [11343] = {.lex_state = 454}, + [11344] = {.lex_state = 454}, + [11345] = {.lex_state = 454}, + [11346] = {.lex_state = 454}, + [11347] = {.lex_state = 98}, + [11348] = {.lex_state = 127}, + [11349] = {.lex_state = 454}, + [11350] = {.lex_state = 127}, + [11351] = {.lex_state = 127}, + [11352] = {.lex_state = 454}, + [11353] = {.lex_state = 454}, + [11354] = {.lex_state = 98}, + [11355] = {.lex_state = 98}, + [11356] = {.lex_state = 98}, + [11357] = {.lex_state = 454}, + [11358] = {.lex_state = 132}, + [11359] = {.lex_state = 454}, + [11360] = {.lex_state = 127}, + [11361] = {.lex_state = 454}, + [11362] = {.lex_state = 98}, + [11363] = {.lex_state = 454}, + [11364] = {.lex_state = 127}, + [11365] = {.lex_state = 454}, + [11366] = {.lex_state = 454}, + [11367] = {.lex_state = 127}, + [11368] = {.lex_state = 454}, + [11369] = {.lex_state = 127}, + [11370] = {.lex_state = 98}, + [11371] = {.lex_state = 98}, + [11372] = {.lex_state = 454}, + [11373] = {.lex_state = 127}, + [11374] = {.lex_state = 454}, + [11375] = {.lex_state = 98}, + [11376] = {.lex_state = 454}, + [11377] = {.lex_state = 127}, + [11378] = {.lex_state = 127}, + [11379] = {.lex_state = 98}, + [11380] = {.lex_state = 454}, + [11381] = {.lex_state = 454}, + [11382] = {.lex_state = 454}, + [11383] = {.lex_state = 98}, + [11384] = {.lex_state = 98}, + [11385] = {.lex_state = 127}, + [11386] = {.lex_state = 98}, + [11387] = {.lex_state = 127}, + [11388] = {.lex_state = 98}, + [11389] = {.lex_state = 98}, + [11390] = {.lex_state = 454}, + [11391] = {.lex_state = 454}, + [11392] = {.lex_state = 127}, + [11393] = {.lex_state = 98}, + [11394] = {.lex_state = 454}, + [11395] = {.lex_state = 98}, + [11396] = {.lex_state = 127}, + [11397] = {.lex_state = 454}, + [11398] = {.lex_state = 454}, + [11399] = {.lex_state = 98}, + [11400] = {.lex_state = 454}, + [11401] = {.lex_state = 454}, + [11402] = {.lex_state = 454}, + [11403] = {.lex_state = 98}, + [11404] = {.lex_state = 454}, + [11405] = {.lex_state = 127}, + [11406] = {.lex_state = 454}, + [11407] = {.lex_state = 454}, + [11408] = {.lex_state = 98}, + [11409] = {.lex_state = 98}, + [11410] = {.lex_state = 98}, + [11411] = {.lex_state = 127}, + [11412] = {.lex_state = 98}, + [11413] = {.lex_state = 132}, + [11414] = {.lex_state = 454}, + [11415] = {.lex_state = 454}, + [11416] = {.lex_state = 454}, + [11417] = {.lex_state = 132}, + [11418] = {.lex_state = 132}, + [11419] = {.lex_state = 98}, + [11420] = {.lex_state = 132}, + [11421] = {.lex_state = 127}, + [11422] = {.lex_state = 454}, + [11423] = {.lex_state = 98}, + [11424] = {.lex_state = 454}, + [11425] = {.lex_state = 454}, + [11426] = {.lex_state = 127}, + [11427] = {.lex_state = 98}, + [11428] = {.lex_state = 127}, + [11429] = {.lex_state = 454}, + [11430] = {.lex_state = 454}, + [11431] = {.lex_state = 98}, + [11432] = {.lex_state = 454}, + [11433] = {.lex_state = 127}, + [11434] = {.lex_state = 454}, + [11435] = {.lex_state = 454}, + [11436] = {.lex_state = 127}, + [11437] = {.lex_state = 454}, + [11438] = {.lex_state = 132}, + [11439] = {.lex_state = 127}, + [11440] = {.lex_state = 127}, + [11441] = {.lex_state = 454}, + [11442] = {.lex_state = 127}, + [11443] = {.lex_state = 98}, + [11444] = {.lex_state = 98}, + [11445] = {.lex_state = 127}, + [11446] = {.lex_state = 454}, + [11447] = {.lex_state = 127}, + [11448] = {.lex_state = 127}, + [11449] = {.lex_state = 127}, + [11450] = {.lex_state = 127}, + [11451] = {.lex_state = 454}, + [11452] = {.lex_state = 127}, + [11453] = {.lex_state = 454}, + [11454] = {.lex_state = 132}, + [11455] = {.lex_state = 127}, + [11456] = {.lex_state = 454}, + [11457] = {.lex_state = 127}, + [11458] = {.lex_state = 454}, + [11459] = {.lex_state = 127}, + [11460] = {.lex_state = 98}, + [11461] = {.lex_state = 98}, + [11462] = {.lex_state = 454}, + [11463] = {.lex_state = 127}, + [11464] = {.lex_state = 454}, + [11465] = {.lex_state = 98}, + [11466] = {.lex_state = 127}, + [11467] = {.lex_state = 98}, + [11468] = {.lex_state = 98}, + [11469] = {.lex_state = 454}, + [11470] = {.lex_state = 454}, + [11471] = {.lex_state = 454}, + [11472] = {.lex_state = 127}, + [11473] = {.lex_state = 127}, + [11474] = {.lex_state = 454}, + [11475] = {.lex_state = 454}, + [11476] = {.lex_state = 127}, + [11477] = {.lex_state = 454}, + [11478] = {.lex_state = 127}, + [11479] = {.lex_state = 98}, + [11480] = {.lex_state = 127}, + [11481] = {.lex_state = 127}, + [11482] = {.lex_state = 454}, + [11483] = {.lex_state = 98}, + [11484] = {.lex_state = 127}, + [11485] = {.lex_state = 454}, + [11486] = {.lex_state = 127}, + [11487] = {.lex_state = 454}, + [11488] = {.lex_state = 98}, + [11489] = {.lex_state = 98}, + [11490] = {.lex_state = 127}, + [11491] = {.lex_state = 127}, + [11492] = {.lex_state = 454}, + [11493] = {.lex_state = 127}, + [11494] = {.lex_state = 454}, + [11495] = {.lex_state = 127}, + [11496] = {.lex_state = 127}, + [11497] = {.lex_state = 127}, + [11498] = {.lex_state = 98}, + [11499] = {.lex_state = 454}, + [11500] = {.lex_state = 98}, + [11501] = {.lex_state = 127}, + [11502] = {.lex_state = 127}, + [11503] = {.lex_state = 127}, + [11504] = {.lex_state = 127}, + [11505] = {.lex_state = 454}, + [11506] = {.lex_state = 454}, + [11507] = {.lex_state = 98}, + [11508] = {.lex_state = 127}, + [11509] = {.lex_state = 98}, + [11510] = {.lex_state = 127}, + [11511] = {.lex_state = 98}, + [11512] = {.lex_state = 98}, + [11513] = {.lex_state = 454}, + [11514] = {.lex_state = 132}, + [11515] = {.lex_state = 454}, + [11516] = {.lex_state = 454}, + [11517] = {.lex_state = 127}, + [11518] = {.lex_state = 454}, + [11519] = {.lex_state = 98}, + [11520] = {.lex_state = 98}, + [11521] = {.lex_state = 98}, + [11522] = {.lex_state = 127}, + [11523] = {.lex_state = 454}, + [11524] = {.lex_state = 454}, + [11525] = {.lex_state = 127}, + [11526] = {.lex_state = 127}, + [11527] = {.lex_state = 454}, + [11528] = {.lex_state = 127}, + [11529] = {.lex_state = 454}, + [11530] = {.lex_state = 132}, + [11531] = {.lex_state = 132}, + [11532] = {.lex_state = 132}, + [11533] = {.lex_state = 454}, + [11534] = {.lex_state = 454}, + [11535] = {.lex_state = 127}, + [11536] = {.lex_state = 454}, + [11537] = {.lex_state = 127}, + [11538] = {.lex_state = 454}, + [11539] = {.lex_state = 132}, + [11540] = {.lex_state = 127}, + [11541] = {.lex_state = 132}, + [11542] = {.lex_state = 127}, + [11543] = {.lex_state = 454}, + [11544] = {.lex_state = 454}, + [11545] = {.lex_state = 454}, + [11546] = {.lex_state = 127}, + [11547] = {.lex_state = 454}, + [11548] = {.lex_state = 132}, + [11549] = {.lex_state = 454}, + [11550] = {.lex_state = 127}, + [11551] = {.lex_state = 127}, + [11552] = {.lex_state = 127}, + [11553] = {.lex_state = 98}, + [11554] = {.lex_state = 454}, + [11555] = {.lex_state = 132}, + [11556] = {.lex_state = 127}, + [11557] = {.lex_state = 454}, + [11558] = {.lex_state = 98}, + [11559] = {.lex_state = 127}, + [11560] = {.lex_state = 454}, + [11561] = {.lex_state = 127}, + [11562] = {.lex_state = 127}, + [11563] = {.lex_state = 127}, + [11564] = {.lex_state = 454}, + [11565] = {.lex_state = 98}, + [11566] = {.lex_state = 127}, + [11567] = {.lex_state = 454}, + [11568] = {.lex_state = 454}, + [11569] = {.lex_state = 454}, + [11570] = {.lex_state = 127}, + [11571] = {.lex_state = 127}, + [11572] = {.lex_state = 454}, + [11573] = {.lex_state = 454}, + [11574] = {.lex_state = 132}, + [11575] = {.lex_state = 127}, + [11576] = {.lex_state = 454}, + [11577] = {.lex_state = 127}, + [11578] = {.lex_state = 454}, + [11579] = {.lex_state = 454}, + [11580] = {.lex_state = 127}, + [11581] = {.lex_state = 127}, + [11582] = {.lex_state = 132}, + [11583] = {.lex_state = 454}, + [11584] = {.lex_state = 454}, + [11585] = {.lex_state = 454}, + [11586] = {.lex_state = 454}, + [11587] = {.lex_state = 132}, + [11588] = {.lex_state = 98}, + [11589] = {.lex_state = 454}, + [11590] = {.lex_state = 454}, + [11591] = {.lex_state = 98}, + [11592] = {.lex_state = 454}, + [11593] = {.lex_state = 454}, + [11594] = {.lex_state = 454}, + [11595] = {.lex_state = 132}, + [11596] = {.lex_state = 132}, + [11597] = {.lex_state = 454}, + [11598] = {.lex_state = 98}, + [11599] = {.lex_state = 454}, + [11600] = {.lex_state = 454}, + [11601] = {.lex_state = 454}, + [11602] = {.lex_state = 98}, + [11603] = {.lex_state = 127}, + [11604] = {.lex_state = 127}, + [11605] = {.lex_state = 127}, + [11606] = {.lex_state = 454}, + [11607] = {.lex_state = 454}, + [11608] = {.lex_state = 132}, + [11609] = {.lex_state = 454}, + [11610] = {.lex_state = 127}, + [11611] = {.lex_state = 454}, + [11612] = {.lex_state = 454}, + [11613] = {.lex_state = 132}, + [11614] = {.lex_state = 132}, + [11615] = {.lex_state = 454}, + [11616] = {.lex_state = 132}, + [11617] = {.lex_state = 132}, + [11618] = {.lex_state = 454}, + [11619] = {.lex_state = 127}, + [11620] = {.lex_state = 132}, + [11621] = {.lex_state = 454}, + [11622] = {.lex_state = 454}, + [11623] = {.lex_state = 132}, + [11624] = {.lex_state = 98}, + [11625] = {.lex_state = 454}, + [11626] = {.lex_state = 132}, + [11627] = {.lex_state = 132}, + [11628] = {.lex_state = 454}, + [11629] = {.lex_state = 127}, + [11630] = {.lex_state = 454}, + [11631] = {.lex_state = 454}, + [11632] = {.lex_state = 454}, + [11633] = {.lex_state = 98}, + [11634] = {.lex_state = 454}, + [11635] = {.lex_state = 454}, + [11636] = {.lex_state = 132}, + [11637] = {.lex_state = 454}, + [11638] = {.lex_state = 127}, + [11639] = {.lex_state = 454}, + [11640] = {.lex_state = 454}, + [11641] = {.lex_state = 127}, + [11642] = {.lex_state = 127}, + [11643] = {.lex_state = 127}, + [11644] = {.lex_state = 454}, + [11645] = {.lex_state = 132}, + [11646] = {.lex_state = 132}, + [11647] = {.lex_state = 98}, + [11648] = {.lex_state = 98}, + [11649] = {.lex_state = 454}, + [11650] = {.lex_state = 454}, + [11651] = {.lex_state = 454}, + [11652] = {.lex_state = 127}, + [11653] = {.lex_state = 98}, + [11654] = {.lex_state = 98}, + [11655] = {.lex_state = 98}, + [11656] = {.lex_state = 98}, + [11657] = {.lex_state = 98}, + [11658] = {.lex_state = 98}, + [11659] = {.lex_state = 98}, + [11660] = {.lex_state = 98}, + [11661] = {.lex_state = 127}, + [11662] = {.lex_state = 98}, + [11663] = {.lex_state = 454}, + [11664] = {.lex_state = 98}, + [11665] = {.lex_state = 98}, + [11666] = {.lex_state = 98}, + [11667] = {.lex_state = 98}, + [11668] = {.lex_state = 127}, + [11669] = {.lex_state = 127}, + [11670] = {.lex_state = 98}, + [11671] = {.lex_state = 169}, + [11672] = {.lex_state = 98}, + [11673] = {.lex_state = 98}, + [11674] = {.lex_state = 98}, + [11675] = {.lex_state = 127}, + [11676] = {.lex_state = 98}, + [11677] = {.lex_state = 98}, + [11678] = {.lex_state = 98}, + [11679] = {.lex_state = 127}, + [11680] = {.lex_state = 98}, + [11681] = {.lex_state = 98}, + [11682] = {.lex_state = 98}, + [11683] = {.lex_state = 98}, + [11684] = {.lex_state = 98}, + [11685] = {.lex_state = 98}, + [11686] = {.lex_state = 98}, + [11687] = {.lex_state = 454}, + [11688] = {.lex_state = 98}, + [11689] = {.lex_state = 98}, + [11690] = {.lex_state = 98}, + [11691] = {.lex_state = 98}, + [11692] = {.lex_state = 98}, + [11693] = {.lex_state = 127}, + [11694] = {.lex_state = 127}, + [11695] = {.lex_state = 98}, + [11696] = {.lex_state = 454}, + [11697] = {.lex_state = 98}, + [11698] = {.lex_state = 454}, + [11699] = {.lex_state = 98}, + [11700] = {.lex_state = 98}, + [11701] = {.lex_state = 132}, + [11702] = {.lex_state = 454}, + [11703] = {.lex_state = 98}, + [11704] = {.lex_state = 98}, + [11705] = {.lex_state = 98}, + [11706] = {.lex_state = 132}, + [11707] = {.lex_state = 127}, + [11708] = {.lex_state = 98}, + [11709] = {.lex_state = 454}, + [11710] = {.lex_state = 98}, + [11711] = {.lex_state = 98}, + [11712] = {.lex_state = 98}, + [11713] = {.lex_state = 98}, + [11714] = {.lex_state = 98}, + [11715] = {.lex_state = 454}, + [11716] = {.lex_state = 98}, + [11717] = {.lex_state = 127}, + [11718] = {.lex_state = 454}, + [11719] = {.lex_state = 98}, + [11720] = {.lex_state = 132}, + [11721] = {.lex_state = 98}, + [11722] = {.lex_state = 454}, + [11723] = {.lex_state = 98}, + [11724] = {.lex_state = 98}, + [11725] = {.lex_state = 98}, + [11726] = {.lex_state = 98}, + [11727] = {.lex_state = 454}, + [11728] = {.lex_state = 98}, + [11729] = {.lex_state = 98}, + [11730] = {.lex_state = 454}, + [11731] = {.lex_state = 98}, + [11732] = {.lex_state = 454}, + [11733] = {.lex_state = 454}, + [11734] = {.lex_state = 454}, + [11735] = {.lex_state = 454}, + [11736] = {.lex_state = 454}, + [11737] = {.lex_state = 454}, + [11738] = {.lex_state = 98}, + [11739] = {.lex_state = 454}, + [11740] = {.lex_state = 454}, + [11741] = {.lex_state = 127}, + [11742] = {.lex_state = 454}, + [11743] = {.lex_state = 454}, + [11744] = {.lex_state = 454}, + [11745] = {.lex_state = 98}, + [11746] = {.lex_state = 454}, + [11747] = {.lex_state = 454}, + [11748] = {.lex_state = 98}, + [11749] = {.lex_state = 454}, + [11750] = {.lex_state = 454}, + [11751] = {.lex_state = 454}, + [11752] = {.lex_state = 454}, + [11753] = {.lex_state = 98}, + [11754] = {.lex_state = 454}, + [11755] = {.lex_state = 98}, + [11756] = {.lex_state = 98}, + [11757] = {.lex_state = 98}, + [11758] = {.lex_state = 454}, + [11759] = {.lex_state = 454}, + [11760] = {.lex_state = 454}, + [11761] = {.lex_state = 454}, + [11762] = {.lex_state = 98}, + [11763] = {.lex_state = 454}, + [11764] = {.lex_state = 454}, + [11765] = {.lex_state = 98}, + [11766] = {.lex_state = 454}, + [11767] = {.lex_state = 175, .reserved_word_set_id = 1}, + [11768] = {.lex_state = 454}, + [11769] = {.lex_state = 454}, + [11770] = {.lex_state = 98}, + [11771] = {.lex_state = 454}, + [11772] = {.lex_state = 127}, + [11773] = {.lex_state = 454}, + [11774] = {.lex_state = 98}, + [11775] = {.lex_state = 454}, + [11776] = {.lex_state = 98}, + [11777] = {.lex_state = 98}, + [11778] = {.lex_state = 454}, + [11779] = {.lex_state = 98}, + [11780] = {.lex_state = 454}, + [11781] = {.lex_state = 98}, + [11782] = {.lex_state = 454}, + [11783] = {.lex_state = 98}, + [11784] = {.lex_state = 454}, + [11785] = {.lex_state = 454}, + [11786] = {.lex_state = 98}, + [11787] = {.lex_state = 98}, + [11788] = {.lex_state = 98}, + [11789] = {.lex_state = 454}, + [11790] = {.lex_state = 454}, + [11791] = {.lex_state = 454}, + [11792] = {.lex_state = 454}, + [11793] = {.lex_state = 454}, + [11794] = {.lex_state = 454}, + [11795] = {.lex_state = 98}, + [11796] = {.lex_state = 454}, + [11797] = {.lex_state = 454}, + [11798] = {.lex_state = 454}, + [11799] = {.lex_state = 175, .reserved_word_set_id = 1}, + [11800] = {.lex_state = 454}, + [11801] = {.lex_state = 454}, + [11802] = {.lex_state = 98}, + [11803] = {.lex_state = 454}, + [11804] = {.lex_state = 454}, + [11805] = {.lex_state = 454}, + [11806] = {.lex_state = 127}, + [11807] = {.lex_state = 454}, + [11808] = {.lex_state = 454}, + [11809] = {.lex_state = 454}, + [11810] = {.lex_state = 127}, + [11811] = {.lex_state = 127}, + [11812] = {.lex_state = 454}, + [11813] = {.lex_state = 98}, + [11814] = {.lex_state = 454}, + [11815] = {.lex_state = 454}, + [11816] = {.lex_state = 98}, + [11817] = {.lex_state = 454}, + [11818] = {.lex_state = 98}, + [11819] = {.lex_state = 454}, + [11820] = {.lex_state = 454}, + [11821] = {.lex_state = 454}, + [11822] = {.lex_state = 454}, + [11823] = {.lex_state = 454}, + [11824] = {.lex_state = 98}, + [11825] = {.lex_state = 454}, + [11826] = {.lex_state = 454}, + [11827] = {.lex_state = 454}, + [11828] = {.lex_state = 454}, + [11829] = {.lex_state = 98}, + [11830] = {.lex_state = 454}, + [11831] = {.lex_state = 98}, + [11832] = {.lex_state = 454}, + [11833] = {.lex_state = 454}, + [11834] = {.lex_state = 454}, + [11835] = {.lex_state = 454}, + [11836] = {.lex_state = 454}, + [11837] = {.lex_state = 454}, + [11838] = {.lex_state = 98}, + [11839] = {.lex_state = 175, .reserved_word_set_id = 1}, + [11840] = {.lex_state = 454}, + [11841] = {.lex_state = 175, .reserved_word_set_id = 1}, + [11842] = {.lex_state = 127}, + [11843] = {.lex_state = 454}, + [11844] = {.lex_state = 454}, + [11845] = {.lex_state = 454}, + [11846] = {.lex_state = 454}, + [11847] = {.lex_state = 454}, + [11848] = {.lex_state = 454}, + [11849] = {.lex_state = 454}, + [11850] = {.lex_state = 454}, + [11851] = {.lex_state = 454}, + [11852] = {.lex_state = 454}, + [11853] = {.lex_state = 454}, + [11854] = {.lex_state = 127}, + [11855] = {.lex_state = 454}, + [11856] = {.lex_state = 454}, + [11857] = {.lex_state = 127}, + [11858] = {.lex_state = 175, .reserved_word_set_id = 1}, + [11859] = {.lex_state = 454}, + [11860] = {.lex_state = 454}, + [11861] = {.lex_state = 98}, + [11862] = {.lex_state = 454}, + [11863] = {.lex_state = 454}, + [11864] = {.lex_state = 127}, + [11865] = {.lex_state = 127}, + [11866] = {.lex_state = 454}, + [11867] = {.lex_state = 127}, + [11868] = {.lex_state = 98}, + [11869] = {.lex_state = 175, .reserved_word_set_id = 1}, + [11870] = {.lex_state = 454}, + [11871] = {.lex_state = 127}, + [11872] = {.lex_state = 454}, + [11873] = {.lex_state = 454}, + [11874] = {.lex_state = 454}, + [11875] = {.lex_state = 454}, + [11876] = {.lex_state = 98}, + [11877] = {.lex_state = 454}, + [11878] = {.lex_state = 454}, + [11879] = {.lex_state = 454}, + [11880] = {.lex_state = 454}, + [11881] = {.lex_state = 454}, + [11882] = {.lex_state = 454}, + [11883] = {.lex_state = 175, .reserved_word_set_id = 1}, + [11884] = {.lex_state = 454}, + [11885] = {.lex_state = 454}, + [11886] = {.lex_state = 454}, + [11887] = {.lex_state = 127}, + [11888] = {.lex_state = 454}, + [11889] = {.lex_state = 169}, + [11890] = {.lex_state = 98}, + [11891] = {.lex_state = 98}, + [11892] = {.lex_state = 454}, + [11893] = {.lex_state = 454}, + [11894] = {.lex_state = 98}, + [11895] = {.lex_state = 454}, + [11896] = {.lex_state = 454}, + [11897] = {.lex_state = 454}, + [11898] = {.lex_state = 454}, + [11899] = {.lex_state = 98}, + [11900] = {.lex_state = 454}, + [11901] = {.lex_state = 127}, + [11902] = {.lex_state = 98}, + [11903] = {.lex_state = 454}, + [11904] = {.lex_state = 454}, + [11905] = {.lex_state = 454}, + [11906] = {.lex_state = 454}, + [11907] = {.lex_state = 98}, + [11908] = {.lex_state = 454}, + [11909] = {.lex_state = 454}, + [11910] = {.lex_state = 454}, + [11911] = {.lex_state = 98}, + [11912] = {.lex_state = 98}, + [11913] = {.lex_state = 98}, + [11914] = {.lex_state = 454}, + [11915] = {.lex_state = 454}, + [11916] = {.lex_state = 98}, + [11917] = {.lex_state = 454}, + [11918] = {.lex_state = 98}, + [11919] = {.lex_state = 98}, + [11920] = {.lex_state = 98}, + [11921] = {.lex_state = 98}, + [11922] = {.lex_state = 454}, + [11923] = {.lex_state = 454}, + [11924] = {.lex_state = 454}, + [11925] = {.lex_state = 98}, + [11926] = {.lex_state = 454}, + [11927] = {.lex_state = 454}, + [11928] = {.lex_state = 175, .reserved_word_set_id = 1}, + [11929] = {.lex_state = 98}, + [11930] = {.lex_state = 454}, + [11931] = {.lex_state = 98}, + [11932] = {.lex_state = 454}, + [11933] = {.lex_state = 454}, + [11934] = {.lex_state = 127}, + [11935] = {.lex_state = 98}, + [11936] = {.lex_state = 127}, + [11937] = {.lex_state = 454}, + [11938] = {.lex_state = 454}, + [11939] = {.lex_state = 98}, + [11940] = {.lex_state = 454}, + [11941] = {.lex_state = 98}, + [11942] = {.lex_state = 454}, + [11943] = {.lex_state = 454}, + [11944] = {.lex_state = 454}, + [11945] = {.lex_state = 98}, + [11946] = {.lex_state = 454}, + [11947] = {.lex_state = 98}, + [11948] = {.lex_state = 454}, + [11949] = {.lex_state = 454}, + [11950] = {.lex_state = 454}, + [11951] = {.lex_state = 454}, + [11952] = {.lex_state = 454}, + [11953] = {.lex_state = 98}, + [11954] = {.lex_state = 454}, + [11955] = {.lex_state = 98}, + [11956] = {.lex_state = 454}, + [11957] = {.lex_state = 454}, + [11958] = {.lex_state = 98}, + [11959] = {.lex_state = 454}, + [11960] = {.lex_state = 98}, + [11961] = {.lex_state = 98}, + [11962] = {.lex_state = 454}, + [11963] = {.lex_state = 454}, + [11964] = {.lex_state = 454}, + [11965] = {.lex_state = 454}, + [11966] = {.lex_state = 454}, + [11967] = {.lex_state = 98}, + [11968] = {.lex_state = 454}, + [11969] = {.lex_state = 98}, + [11970] = {.lex_state = 454}, + [11971] = {.lex_state = 98}, + [11972] = {.lex_state = 98}, + [11973] = {.lex_state = 454}, + [11974] = {.lex_state = 454}, + [11975] = {.lex_state = 454}, + [11976] = {.lex_state = 454}, + [11977] = {.lex_state = 98}, + [11978] = {.lex_state = 454}, + [11979] = {.lex_state = 454}, + [11980] = {.lex_state = 454}, + [11981] = {.lex_state = 454}, + [11982] = {.lex_state = 454}, + [11983] = {.lex_state = 98}, + [11984] = {.lex_state = 454}, + [11985] = {.lex_state = 454}, + [11986] = {.lex_state = 454}, + [11987] = {.lex_state = 454}, + [11988] = {.lex_state = 454}, + [11989] = {.lex_state = 454}, + [11990] = {.lex_state = 454}, + [11991] = {.lex_state = 454}, + [11992] = {.lex_state = 454}, + [11993] = {.lex_state = 454}, + [11994] = {.lex_state = 454}, + [11995] = {.lex_state = 454}, + [11996] = {.lex_state = 454}, + [11997] = {.lex_state = 454}, + [11998] = {.lex_state = 98}, + [11999] = {.lex_state = 454}, + [12000] = {.lex_state = 454}, + [12001] = {.lex_state = 454}, + [12002] = {.lex_state = 454}, + [12003] = {.lex_state = 132}, + [12004] = {.lex_state = 454}, + [12005] = {.lex_state = 454}, + [12006] = {.lex_state = 454}, + [12007] = {.lex_state = 454}, + [12008] = {.lex_state = 175, .reserved_word_set_id = 1}, + [12009] = {.lex_state = 454}, + [12010] = {.lex_state = 454}, + [12011] = {.lex_state = 454}, + [12012] = {.lex_state = 98}, + [12013] = {.lex_state = 454}, + [12014] = {.lex_state = 454}, + [12015] = {.lex_state = 98}, + [12016] = {.lex_state = 454}, + [12017] = {.lex_state = 454}, + [12018] = {.lex_state = 98}, + [12019] = {.lex_state = 98}, + [12020] = {.lex_state = 454}, + [12021] = {.lex_state = 454}, + [12022] = {.lex_state = 454}, + [12023] = {.lex_state = 454}, + [12024] = {.lex_state = 454}, + [12025] = {.lex_state = 454}, + [12026] = {.lex_state = 127}, + [12027] = {.lex_state = 98}, + [12028] = {.lex_state = 454}, + [12029] = {.lex_state = 454}, + [12030] = {.lex_state = 454}, + [12031] = {.lex_state = 454}, + [12032] = {.lex_state = 454}, + [12033] = {.lex_state = 98}, + [12034] = {.lex_state = 454}, + [12035] = {.lex_state = 454}, + [12036] = {.lex_state = 98}, + [12037] = {.lex_state = 454}, + [12038] = {.lex_state = 98}, + [12039] = {.lex_state = 98}, + [12040] = {.lex_state = 454}, + [12041] = {.lex_state = 454}, + [12042] = {.lex_state = 175, .reserved_word_set_id = 2}, + [12043] = {.lex_state = 98}, + [12044] = {.lex_state = 454}, + [12045] = {.lex_state = 454}, + [12046] = {.lex_state = 454}, + [12047] = {.lex_state = 454}, + [12048] = {.lex_state = 454}, + [12049] = {.lex_state = 98}, + [12050] = {.lex_state = 132}, + [12051] = {.lex_state = 132}, + [12052] = {.lex_state = 98}, + [12053] = {.lex_state = 454}, + [12054] = {.lex_state = 132}, + [12055] = {.lex_state = 132}, + [12056] = {.lex_state = 454}, + [12057] = {.lex_state = 454}, + [12058] = {.lex_state = 132}, + [12059] = {.lex_state = 132}, + [12060] = {.lex_state = 174, .reserved_word_set_id = 1}, + [12061] = {.lex_state = 98}, + [12062] = {.lex_state = 98}, + [12063] = {.lex_state = 98}, + [12064] = {.lex_state = 454}, + [12065] = {.lex_state = 454}, + [12066] = {.lex_state = 98}, + [12067] = {.lex_state = 98}, + [12068] = {.lex_state = 454}, + [12069] = {.lex_state = 98}, + [12070] = {.lex_state = 98}, + [12071] = {.lex_state = 132}, + [12072] = {.lex_state = 132}, + [12073] = {.lex_state = 175, .reserved_word_set_id = 1}, + [12074] = {.lex_state = 98}, + [12075] = {.lex_state = 98}, + [12076] = {.lex_state = 454}, + [12077] = {.lex_state = 98}, + [12078] = {.lex_state = 454}, + [12079] = {.lex_state = 98}, + [12080] = {.lex_state = 454}, + [12081] = {.lex_state = 454}, + [12082] = {.lex_state = 98}, + [12083] = {.lex_state = 454}, + [12084] = {.lex_state = 132}, + [12085] = {.lex_state = 98}, + [12086] = {.lex_state = 132}, + [12087] = {.lex_state = 98}, + [12088] = {.lex_state = 132}, + [12089] = {.lex_state = 454}, + [12090] = {.lex_state = 454}, + [12091] = {.lex_state = 98}, + [12092] = {.lex_state = 454}, + [12093] = {.lex_state = 454}, + [12094] = {.lex_state = 454}, + [12095] = {.lex_state = 454}, + [12096] = {.lex_state = 98}, + [12097] = {.lex_state = 98}, + [12098] = {.lex_state = 454}, + [12099] = {.lex_state = 132}, + [12100] = {.lex_state = 454}, + [12101] = {.lex_state = 454}, + [12102] = {.lex_state = 454}, + [12103] = {.lex_state = 98}, + [12104] = {.lex_state = 98}, + [12105] = {.lex_state = 454}, + [12106] = {.lex_state = 454}, + [12107] = {.lex_state = 98}, + [12108] = {.lex_state = 127}, + [12109] = {.lex_state = 170}, + [12110] = {.lex_state = 98}, + [12111] = {.lex_state = 132}, + [12112] = {.lex_state = 174, .reserved_word_set_id = 1}, + [12113] = {.lex_state = 98}, + [12114] = {.lex_state = 132}, + [12115] = {.lex_state = 98}, + [12116] = {.lex_state = 98}, + [12117] = {.lex_state = 98}, + [12118] = {.lex_state = 98}, + [12119] = {.lex_state = 98}, + [12120] = {.lex_state = 98}, + [12121] = {.lex_state = 98}, + [12122] = {.lex_state = 98}, + [12123] = {.lex_state = 98}, + [12124] = {.lex_state = 98}, + [12125] = {.lex_state = 132}, + [12126] = {.lex_state = 98}, + [12127] = {.lex_state = 454}, + [12128] = {.lex_state = 98}, + [12129] = {.lex_state = 132}, + [12130] = {.lex_state = 98}, + [12131] = {.lex_state = 454}, + [12132] = {.lex_state = 98}, + [12133] = {.lex_state = 132}, + [12134] = {.lex_state = 98}, + [12135] = {.lex_state = 98}, + [12136] = {.lex_state = 454}, + [12137] = {.lex_state = 98}, + [12138] = {.lex_state = 132}, + [12139] = {.lex_state = 98}, + [12140] = {.lex_state = 98}, + [12141] = {.lex_state = 454}, + [12142] = {.lex_state = 98}, + [12143] = {.lex_state = 174, .reserved_word_set_id = 1}, + [12144] = {.lex_state = 98}, + [12145] = {.lex_state = 132}, + [12146] = {.lex_state = 132}, + [12147] = {.lex_state = 454}, + [12148] = {.lex_state = 98}, + [12149] = {.lex_state = 98}, + [12150] = {.lex_state = 98}, + [12151] = {.lex_state = 98}, + [12152] = {.lex_state = 132}, + [12153] = {.lex_state = 98}, + [12154] = {.lex_state = 174, .reserved_word_set_id = 1}, + [12155] = {.lex_state = 98}, + [12156] = {.lex_state = 174, .reserved_word_set_id = 1}, + [12157] = {.lex_state = 454}, + [12158] = {.lex_state = 98}, + [12159] = {.lex_state = 98}, + [12160] = {.lex_state = 174, .reserved_word_set_id = 1}, + [12161] = {.lex_state = 98}, + [12162] = {.lex_state = 98}, + [12163] = {.lex_state = 454}, + [12164] = {.lex_state = 454}, + [12165] = {.lex_state = 454}, + [12166] = {.lex_state = 454}, + [12167] = {.lex_state = 454}, + [12168] = {.lex_state = 454}, + [12169] = {.lex_state = 454}, + [12170] = {.lex_state = 454}, + [12171] = {.lex_state = 454}, + [12172] = {.lex_state = 127}, + [12173] = {.lex_state = 454}, + [12174] = {.lex_state = 454}, + [12175] = {.lex_state = 454}, + [12176] = {.lex_state = 98}, + [12177] = {.lex_state = 98}, + [12178] = {.lex_state = 127}, + [12179] = {.lex_state = 98}, + [12180] = {.lex_state = 98}, + [12181] = {.lex_state = 98}, + [12182] = {.lex_state = 98}, + [12183] = {.lex_state = 98}, + [12184] = {.lex_state = 98}, + [12185] = {.lex_state = 454}, + [12186] = {.lex_state = 454}, + [12187] = {.lex_state = 454}, + [12188] = {.lex_state = 454}, + [12189] = {.lex_state = 98}, + [12190] = {.lex_state = 98}, + [12191] = {.lex_state = 98}, + [12192] = {.lex_state = 454}, + [12193] = {.lex_state = 454}, + [12194] = {.lex_state = 454}, + [12195] = {.lex_state = 454}, + [12196] = {.lex_state = 454}, + [12197] = {.lex_state = 127}, + [12198] = {.lex_state = 454}, + [12199] = {.lex_state = 454}, + [12200] = {.lex_state = 127}, + [12201] = {.lex_state = 454}, + [12202] = {.lex_state = 454}, + [12203] = {.lex_state = 454}, + [12204] = {.lex_state = 454}, + [12205] = {.lex_state = 127}, + [12206] = {.lex_state = 454}, + [12207] = {.lex_state = 454}, + [12208] = {.lex_state = 454}, + [12209] = {.lex_state = 98}, + [12210] = {.lex_state = 454}, + [12211] = {.lex_state = 127}, + [12212] = {.lex_state = 98}, + [12213] = {.lex_state = 454}, + [12214] = {.lex_state = 98}, + [12215] = {.lex_state = 98}, + [12216] = {.lex_state = 127}, + [12217] = {.lex_state = 98}, + [12218] = {.lex_state = 454}, + [12219] = {.lex_state = 454}, + [12220] = {.lex_state = 127}, + [12221] = {.lex_state = 98}, + [12222] = {.lex_state = 98}, + [12223] = {.lex_state = 454}, + [12224] = {.lex_state = 454}, + [12225] = {.lex_state = 127}, + [12226] = {.lex_state = 98}, + [12227] = {.lex_state = 98}, + [12228] = {.lex_state = 454}, + [12229] = {.lex_state = 454}, + [12230] = {.lex_state = 454}, + [12231] = {.lex_state = 127}, + [12232] = {.lex_state = 98}, + [12233] = {.lex_state = 98}, + [12234] = {.lex_state = 454}, + [12235] = {.lex_state = 98}, + [12236] = {.lex_state = 98}, + [12237] = {.lex_state = 98}, + [12238] = {.lex_state = 98}, + [12239] = {.lex_state = 98}, + [12240] = {.lex_state = 98}, + [12241] = {.lex_state = 454}, + [12242] = {.lex_state = 454}, + [12243] = {.lex_state = 127}, + [12244] = {.lex_state = 98}, + [12245] = {.lex_state = 454}, + [12246] = {.lex_state = 454}, + [12247] = {.lex_state = 454}, + [12248] = {.lex_state = 98}, + [12249] = {.lex_state = 127}, + [12250] = {.lex_state = 454}, + [12251] = {.lex_state = 127}, + [12252] = {.lex_state = 98}, + [12253] = {.lex_state = 454}, + [12254] = {.lex_state = 98}, + [12255] = {.lex_state = 454}, + [12256] = {.lex_state = 98}, + [12257] = {.lex_state = 98}, + [12258] = {.lex_state = 454}, + [12259] = {.lex_state = 454}, + [12260] = {.lex_state = 127}, + [12261] = {.lex_state = 454}, + [12262] = {.lex_state = 454}, + [12263] = {.lex_state = 127}, + [12264] = {.lex_state = 454}, + [12265] = {.lex_state = 454}, + [12266] = {.lex_state = 454}, + [12267] = {.lex_state = 454}, + [12268] = {.lex_state = 454}, + [12269] = {.lex_state = 454}, + [12270] = {.lex_state = 454}, + [12271] = {.lex_state = 127}, + [12272] = {.lex_state = 454}, + [12273] = {.lex_state = 454}, + [12274] = {.lex_state = 454}, + [12275] = {.lex_state = 454}, + [12276] = {.lex_state = 98}, + [12277] = {.lex_state = 454}, + [12278] = {.lex_state = 454}, + [12279] = {.lex_state = 127}, + [12280] = {.lex_state = 454}, + [12281] = {.lex_state = 454}, + [12282] = {.lex_state = 454}, + [12283] = {.lex_state = 454}, + [12284] = {.lex_state = 454}, + [12285] = {.lex_state = 127}, + [12286] = {.lex_state = 454}, + [12287] = {.lex_state = 98}, + [12288] = {.lex_state = 454}, + [12289] = {.lex_state = 98}, + [12290] = {.lex_state = 454}, + [12291] = {.lex_state = 98}, + [12292] = {.lex_state = 454}, + [12293] = {.lex_state = 98}, + [12294] = {.lex_state = 127}, + [12295] = {.lex_state = 454}, + [12296] = {.lex_state = 454}, + [12297] = {.lex_state = 454}, + [12298] = {.lex_state = 98}, + [12299] = {.lex_state = 454}, + [12300] = {.lex_state = 454}, + [12301] = {.lex_state = 454}, + [12302] = {.lex_state = 454}, + [12303] = {.lex_state = 454}, + [12304] = {.lex_state = 454}, + [12305] = {.lex_state = 454}, + [12306] = {.lex_state = 454}, + [12307] = {.lex_state = 454}, + [12308] = {.lex_state = 454}, + [12309] = {.lex_state = 454}, + [12310] = {.lex_state = 454}, + [12311] = {.lex_state = 454}, + [12312] = {.lex_state = 454}, + [12313] = {.lex_state = 98}, + [12314] = {.lex_state = 127}, + [12315] = {.lex_state = 127}, + [12316] = {.lex_state = 454}, + [12317] = {.lex_state = 454}, + [12318] = {.lex_state = 454}, + [12319] = {.lex_state = 98}, + [12320] = {.lex_state = 454}, + [12321] = {.lex_state = 454}, + [12322] = {.lex_state = 454}, + [12323] = {.lex_state = 454}, + [12324] = {.lex_state = 98}, + [12325] = {.lex_state = 98}, + [12326] = {.lex_state = 98}, + [12327] = {.lex_state = 454}, + [12328] = {.lex_state = 454}, + [12329] = {.lex_state = 454}, + [12330] = {.lex_state = 454}, + [12331] = {.lex_state = 454}, + [12332] = {.lex_state = 454}, + [12333] = {.lex_state = 454}, + [12334] = {.lex_state = 454}, + [12335] = {.lex_state = 454}, + [12336] = {.lex_state = 454}, + [12337] = {.lex_state = 454}, + [12338] = {.lex_state = 454}, + [12339] = {.lex_state = 454}, + [12340] = {.lex_state = 454}, + [12341] = {.lex_state = 454}, + [12342] = {.lex_state = 454}, + [12343] = {.lex_state = 98}, + [12344] = {.lex_state = 454}, + [12345] = {.lex_state = 454}, + [12346] = {.lex_state = 454}, + [12347] = {.lex_state = 454}, + [12348] = {.lex_state = 454}, + [12349] = {.lex_state = 454}, + [12350] = {.lex_state = 454}, + [12351] = {.lex_state = 454}, + [12352] = {.lex_state = 454}, + [12353] = {.lex_state = 454}, + [12354] = {.lex_state = 454}, + [12355] = {.lex_state = 454}, + [12356] = {.lex_state = 454}, + [12357] = {.lex_state = 454}, + [12358] = {.lex_state = 454}, + [12359] = {.lex_state = 454}, + [12360] = {.lex_state = 454}, + [12361] = {.lex_state = 454}, + [12362] = {.lex_state = 454}, + [12363] = {.lex_state = 454}, + [12364] = {.lex_state = 454}, + [12365] = {.lex_state = 454}, + [12366] = {.lex_state = 454}, + [12367] = {.lex_state = 454}, + [12368] = {.lex_state = 98}, + [12369] = {.lex_state = 454}, + [12370] = {.lex_state = 454}, + [12371] = {.lex_state = 454}, + [12372] = {.lex_state = 454}, + [12373] = {.lex_state = 454}, + [12374] = {.lex_state = 454}, + [12375] = {.lex_state = 454}, + [12376] = {.lex_state = 454}, + [12377] = {.lex_state = 454}, + [12378] = {.lex_state = 454}, + [12379] = {.lex_state = 98}, + [12380] = {.lex_state = 454}, + [12381] = {.lex_state = 454}, + [12382] = {.lex_state = 98}, + [12383] = {.lex_state = 454}, + [12384] = {.lex_state = 454}, + [12385] = {.lex_state = 454}, + [12386] = {.lex_state = 454}, + [12387] = {.lex_state = 127}, + [12388] = {.lex_state = 454}, + [12389] = {.lex_state = 454}, + [12390] = {.lex_state = 454}, + [12391] = {.lex_state = 127}, + [12392] = {.lex_state = 454}, + [12393] = {.lex_state = 454}, + [12394] = {.lex_state = 454}, + [12395] = {.lex_state = 127}, + [12396] = {.lex_state = 454}, + [12397] = {.lex_state = 454}, + [12398] = {.lex_state = 454}, + [12399] = {.lex_state = 127}, + [12400] = {.lex_state = 98}, + [12401] = {.lex_state = 171}, + [12402] = {.lex_state = 454}, + [12403] = {.lex_state = 454}, + [12404] = {.lex_state = 454}, + [12405] = {.lex_state = 454}, + [12406] = {.lex_state = 454}, + [12407] = {.lex_state = 454}, + [12408] = {.lex_state = 98}, + [12409] = {.lex_state = 454}, + [12410] = {.lex_state = 98}, + [12411] = {.lex_state = 454}, + [12412] = {.lex_state = 454}, + [12413] = {.lex_state = 98}, + [12414] = {.lex_state = 98}, + [12415] = {.lex_state = 127}, + [12416] = {.lex_state = 127}, + [12417] = {.lex_state = 98}, + [12418] = {.lex_state = 98}, + [12419] = {.lex_state = 127}, + [12420] = {.lex_state = 127}, + [12421] = {.lex_state = 98}, + [12422] = {.lex_state = 169}, + [12423] = {.lex_state = 98}, + [12424] = {.lex_state = 169}, + [12425] = {.lex_state = 127}, + [12426] = {.lex_state = 127}, + [12427] = {.lex_state = 454}, + [12428] = {.lex_state = 98}, + [12429] = {.lex_state = 454}, + [12430] = {.lex_state = 454}, + [12431] = {.lex_state = 454}, + [12432] = {.lex_state = 454}, + [12433] = {.lex_state = 127}, + [12434] = {.lex_state = 127}, + [12435] = {.lex_state = 454}, + [12436] = {.lex_state = 454}, + [12437] = {.lex_state = 127}, + [12438] = {.lex_state = 127}, + [12439] = {.lex_state = 454}, + [12440] = {.lex_state = 98}, + [12441] = {.lex_state = 127}, + [12442] = {.lex_state = 454}, + [12443] = {.lex_state = 127}, + [12444] = {.lex_state = 127}, + [12445] = {.lex_state = 454}, + [12446] = {.lex_state = 98}, + [12447] = {.lex_state = 127}, + [12448] = {.lex_state = 127}, + [12449] = {.lex_state = 127}, + [12450] = {.lex_state = 127}, + [12451] = {.lex_state = 127}, + [12452] = {.lex_state = 98}, + [12453] = {.lex_state = 127}, + [12454] = {.lex_state = 127}, + [12455] = {.lex_state = 454}, + [12456] = {.lex_state = 454}, + [12457] = {.lex_state = 454}, + [12458] = {.lex_state = 98}, + [12459] = {.lex_state = 127}, + [12460] = {.lex_state = 127}, + [12461] = {.lex_state = 98}, + [12462] = {.lex_state = 98}, + [12463] = {.lex_state = 454}, + [12464] = {.lex_state = 127}, + [12465] = {.lex_state = 127}, + [12466] = {.lex_state = 454}, + [12467] = {.lex_state = 98}, + [12468] = {.lex_state = 98}, + [12469] = {.lex_state = 98}, + [12470] = {.lex_state = 127}, + [12471] = {.lex_state = 127}, + [12472] = {.lex_state = 127}, + [12473] = {.lex_state = 127}, + [12474] = {.lex_state = 454}, + [12475] = {.lex_state = 127}, + [12476] = {.lex_state = 127}, + [12477] = {.lex_state = 454}, + [12478] = {.lex_state = 454}, + [12479] = {.lex_state = 98}, + [12480] = {.lex_state = 127}, + [12481] = {.lex_state = 127}, + [12482] = {.lex_state = 98}, + [12483] = {.lex_state = 127}, + [12484] = {.lex_state = 98}, + [12485] = {.lex_state = 127}, + [12486] = {.lex_state = 127}, + [12487] = {.lex_state = 127}, + [12488] = {.lex_state = 98}, + [12489] = {.lex_state = 127}, + [12490] = {.lex_state = 127}, + [12491] = {.lex_state = 98}, + [12492] = {.lex_state = 98}, + [12493] = {.lex_state = 127}, + [12494] = {.lex_state = 127}, + [12495] = {.lex_state = 127}, + [12496] = {.lex_state = 127}, + [12497] = {.lex_state = 127}, + [12498] = {.lex_state = 454}, + [12499] = {.lex_state = 98}, + [12500] = {.lex_state = 127}, + [12501] = {.lex_state = 127}, + [12502] = {.lex_state = 169}, + [12503] = {.lex_state = 454}, + [12504] = {.lex_state = 454}, + [12505] = {.lex_state = 454}, + [12506] = {.lex_state = 127}, + [12507] = {.lex_state = 127}, + [12508] = {.lex_state = 98}, + [12509] = {.lex_state = 454}, + [12510] = {.lex_state = 454}, + [12511] = {.lex_state = 127}, + [12512] = {.lex_state = 127}, + [12513] = {.lex_state = 98}, + [12514] = {.lex_state = 98}, + [12515] = {.lex_state = 127}, + [12516] = {.lex_state = 127}, + [12517] = {.lex_state = 127}, + [12518] = {.lex_state = 98}, + [12519] = {.lex_state = 454}, + [12520] = {.lex_state = 127}, + [12521] = {.lex_state = 127}, + [12522] = {.lex_state = 127}, + [12523] = {.lex_state = 127}, + [12524] = {.lex_state = 98}, + [12525] = {.lex_state = 127}, + [12526] = {.lex_state = 127}, + [12527] = {.lex_state = 98}, + [12528] = {.lex_state = 127}, + [12529] = {.lex_state = 127}, + [12530] = {.lex_state = 98}, + [12531] = {.lex_state = 98}, + [12532] = {.lex_state = 454}, + [12533] = {.lex_state = 127}, + [12534] = {.lex_state = 127}, + [12535] = {.lex_state = 98}, + [12536] = {.lex_state = 98}, + [12537] = {.lex_state = 98}, + [12538] = {.lex_state = 127}, + [12539] = {.lex_state = 127}, + [12540] = {.lex_state = 127}, + [12541] = {.lex_state = 127}, + [12542] = {.lex_state = 98}, + [12543] = {.lex_state = 127}, + [12544] = {.lex_state = 127}, + [12545] = {.lex_state = 454}, + [12546] = {.lex_state = 127}, + [12547] = {.lex_state = 127}, + [12548] = {.lex_state = 127}, + [12549] = {.lex_state = 127}, + [12550] = {.lex_state = 127}, + [12551] = {.lex_state = 98}, + [12552] = {.lex_state = 127}, + [12553] = {.lex_state = 127}, + [12554] = {.lex_state = 454}, + [12555] = {.lex_state = 127}, + [12556] = {.lex_state = 98}, + [12557] = {.lex_state = 127}, + [12558] = {.lex_state = 127}, + [12559] = {.lex_state = 127}, + [12560] = {.lex_state = 169}, + [12561] = {.lex_state = 98}, + [12562] = {.lex_state = 98}, + [12563] = {.lex_state = 98}, + [12564] = {.lex_state = 454}, + [12565] = {.lex_state = 127}, + [12566] = {.lex_state = 127}, + [12567] = {.lex_state = 127}, + [12568] = {.lex_state = 127}, + [12569] = {.lex_state = 454}, + [12570] = {.lex_state = 454}, + [12571] = {.lex_state = 127}, + [12572] = {.lex_state = 127}, + [12573] = {.lex_state = 98}, + [12574] = {.lex_state = 98}, + [12575] = {.lex_state = 98}, + [12576] = {.lex_state = 98}, + [12577] = {.lex_state = 98}, + [12578] = {.lex_state = 127}, + [12579] = {.lex_state = 98}, + [12580] = {.lex_state = 127}, + [12581] = {.lex_state = 127}, + [12582] = {.lex_state = 127}, + [12583] = {.lex_state = 98}, + [12584] = {.lex_state = 127}, + [12585] = {.lex_state = 98}, + [12586] = {.lex_state = 98}, + [12587] = {.lex_state = 127}, + [12588] = {.lex_state = 127}, + [12589] = {.lex_state = 454}, + [12590] = {.lex_state = 127}, + [12591] = {.lex_state = 127}, + [12592] = {.lex_state = 127}, + [12593] = {.lex_state = 127}, + [12594] = {.lex_state = 98}, + [12595] = {.lex_state = 98}, + [12596] = {.lex_state = 454}, + [12597] = {.lex_state = 127}, + [12598] = {.lex_state = 127}, + [12599] = {.lex_state = 98}, + [12600] = {.lex_state = 98}, + [12601] = {.lex_state = 98}, + [12602] = {.lex_state = 454}, + [12603] = {.lex_state = 98}, + [12604] = {.lex_state = 127}, + [12605] = {.lex_state = 127}, + [12606] = {.lex_state = 127}, + [12607] = {.lex_state = 127}, + [12608] = {.lex_state = 98}, + [12609] = {.lex_state = 127}, + [12610] = {.lex_state = 98}, + [12611] = {.lex_state = 98}, + [12612] = {.lex_state = 98}, + [12613] = {.lex_state = 127}, + [12614] = {.lex_state = 127}, + [12615] = {.lex_state = 127}, + [12616] = {.lex_state = 127}, + [12617] = {.lex_state = 454}, + [12618] = {.lex_state = 127}, + [12619] = {.lex_state = 127}, + [12620] = {.lex_state = 127}, + [12621] = {.lex_state = 127}, + [12622] = {.lex_state = 98}, + [12623] = {.lex_state = 454}, + [12624] = {.lex_state = 98}, + [12625] = {.lex_state = 127}, + [12626] = {.lex_state = 127}, + [12627] = {.lex_state = 127}, + [12628] = {.lex_state = 127}, + [12629] = {.lex_state = 127}, + [12630] = {.lex_state = 127}, + [12631] = {.lex_state = 98}, + [12632] = {.lex_state = 127}, + [12633] = {.lex_state = 127}, + [12634] = {.lex_state = 127}, + [12635] = {.lex_state = 127}, + [12636] = {.lex_state = 127}, + [12637] = {.lex_state = 127}, + [12638] = {.lex_state = 127}, + [12639] = {.lex_state = 127}, + [12640] = {.lex_state = 127}, + [12641] = {.lex_state = 127}, + [12642] = {.lex_state = 127}, + [12643] = {.lex_state = 127}, + [12644] = {.lex_state = 127}, + [12645] = {.lex_state = 127}, + [12646] = {.lex_state = 127}, + [12647] = {.lex_state = 127}, + [12648] = {.lex_state = 98}, + [12649] = {.lex_state = 454}, + [12650] = {.lex_state = 454}, + [12651] = {.lex_state = 454}, + [12652] = {.lex_state = 454}, + [12653] = {.lex_state = 98}, + [12654] = {.lex_state = 454}, + [12655] = {.lex_state = 169}, + [12656] = {.lex_state = 98}, + [12657] = {.lex_state = 454}, + [12658] = {.lex_state = 454}, + [12659] = {.lex_state = 454}, + [12660] = {.lex_state = 98}, + [12661] = {.lex_state = 98}, + [12662] = {.lex_state = 454}, + [12663] = {.lex_state = 98}, + [12664] = {.lex_state = 98}, + [12665] = {.lex_state = 169}, + [12666] = {.lex_state = 98}, + [12667] = {.lex_state = 98}, + [12668] = {.lex_state = 98}, + [12669] = {.lex_state = 98}, + [12670] = {.lex_state = 454}, + [12671] = {.lex_state = 454}, + [12672] = {.lex_state = 98}, + [12673] = {.lex_state = 127}, + [12674] = {.lex_state = 98}, + [12675] = {.lex_state = 127}, + [12676] = {.lex_state = 98}, + [12677] = {.lex_state = 98}, + [12678] = {.lex_state = 127}, + [12679] = {.lex_state = 98}, + [12680] = {.lex_state = 98}, + [12681] = {.lex_state = 98}, + [12682] = {.lex_state = 98}, + [12683] = {.lex_state = 169}, + [12684] = {.lex_state = 98}, + [12685] = {.lex_state = 98}, + [12686] = {.lex_state = 127}, + [12687] = {.lex_state = 98}, + [12688] = {.lex_state = 127}, + [12689] = {.lex_state = 127}, + [12690] = {.lex_state = 98}, + [12691] = {.lex_state = 127}, + [12692] = {.lex_state = 98}, + [12693] = {.lex_state = 98}, + [12694] = {.lex_state = 98}, + [12695] = {.lex_state = 98}, + [12696] = {.lex_state = 454}, + [12697] = {.lex_state = 98}, + [12698] = {.lex_state = 98}, + [12699] = {.lex_state = 454}, + [12700] = {.lex_state = 454}, + [12701] = {.lex_state = 98}, + [12702] = {.lex_state = 98}, + [12703] = {.lex_state = 169}, + [12704] = {.lex_state = 98}, + [12705] = {.lex_state = 98}, + [12706] = {.lex_state = 98}, + [12707] = {.lex_state = 98}, + [12708] = {.lex_state = 98}, + [12709] = {.lex_state = 98}, + [12710] = {.lex_state = 454}, + [12711] = {.lex_state = 454}, + [12712] = {.lex_state = 98}, + [12713] = {.lex_state = 98}, + [12714] = {.lex_state = 454}, + [12715] = {.lex_state = 454}, + [12716] = {.lex_state = 127}, + [12717] = {.lex_state = 98}, + [12718] = {.lex_state = 454}, + [12719] = {.lex_state = 127}, + [12720] = {.lex_state = 98}, + [12721] = {.lex_state = 98}, + [12722] = {.lex_state = 98}, + [12723] = {.lex_state = 98}, + [12724] = {.lex_state = 127}, + [12725] = {.lex_state = 98}, + [12726] = {.lex_state = 454}, + [12727] = {.lex_state = 454}, + [12728] = {.lex_state = 454}, + [12729] = {.lex_state = 454}, + [12730] = {.lex_state = 98}, + [12731] = {.lex_state = 127}, + [12732] = {.lex_state = 454}, + [12733] = {.lex_state = 454}, + [12734] = {.lex_state = 454}, + [12735] = {.lex_state = 454}, + [12736] = {.lex_state = 454}, + [12737] = {.lex_state = 454}, + [12738] = {.lex_state = 127}, + [12739] = {.lex_state = 98}, + [12740] = {.lex_state = 98}, + [12741] = {.lex_state = 98}, + [12742] = {.lex_state = 98}, + [12743] = {.lex_state = 454}, + [12744] = {.lex_state = 98}, + [12745] = {.lex_state = 98}, + [12746] = {.lex_state = 169}, + [12747] = {.lex_state = 98}, + [12748] = {.lex_state = 98}, + [12749] = {.lex_state = 454}, + [12750] = {.lex_state = 127}, + [12751] = {.lex_state = 98}, + [12752] = {.lex_state = 454}, + [12753] = {.lex_state = 98}, + [12754] = {.lex_state = 127}, + [12755] = {.lex_state = 98}, + [12756] = {.lex_state = 454}, + [12757] = {.lex_state = 98}, + [12758] = {.lex_state = 98}, + [12759] = {.lex_state = 98}, + [12760] = {.lex_state = 127}, + [12761] = {.lex_state = 127}, + [12762] = {.lex_state = 454}, + [12763] = {.lex_state = 127}, + [12764] = {.lex_state = 127}, + [12765] = {.lex_state = 127}, + [12766] = {.lex_state = 454}, + [12767] = {.lex_state = 98}, + [12768] = {.lex_state = 127}, + [12769] = {.lex_state = 127}, + [12770] = {.lex_state = 98}, + [12771] = {.lex_state = 127}, + [12772] = {.lex_state = 98}, + [12773] = {.lex_state = 98}, + [12774] = {.lex_state = 98}, + [12775] = {.lex_state = 98}, + [12776] = {.lex_state = 98}, + [12777] = {.lex_state = 98}, + [12778] = {.lex_state = 98}, + [12779] = {.lex_state = 98}, + [12780] = {.lex_state = 98}, + [12781] = {.lex_state = 127}, + [12782] = {.lex_state = 98}, + [12783] = {.lex_state = 127}, + [12784] = {.lex_state = 127}, + [12785] = {.lex_state = 98}, + [12786] = {.lex_state = 127}, + [12787] = {.lex_state = 98}, + [12788] = {.lex_state = 98}, + [12789] = {.lex_state = 127}, + [12790] = {.lex_state = 127}, + [12791] = {.lex_state = 98}, + [12792] = {.lex_state = 98}, + [12793] = {.lex_state = 98}, + [12794] = {.lex_state = 98}, + [12795] = {.lex_state = 98}, + [12796] = {.lex_state = 98}, + [12797] = {.lex_state = 98}, + [12798] = {.lex_state = 98}, + [12799] = {.lex_state = 98}, + [12800] = {.lex_state = 98}, + [12801] = {.lex_state = 98}, + [12802] = {.lex_state = 98}, + [12803] = {.lex_state = 98}, + [12804] = {.lex_state = 98}, + [12805] = {.lex_state = 98}, + [12806] = {.lex_state = 98}, + [12807] = {.lex_state = 98}, + [12808] = {.lex_state = 98}, + [12809] = {.lex_state = 98}, + [12810] = {.lex_state = 98}, + [12811] = {.lex_state = 98}, + [12812] = {.lex_state = 98}, + [12813] = {.lex_state = 98}, + [12814] = {.lex_state = 98}, + [12815] = {.lex_state = 98}, + [12816] = {.lex_state = 98}, + [12817] = {.lex_state = 98}, + [12818] = {.lex_state = 98}, + [12819] = {.lex_state = 98}, + [12820] = {.lex_state = 98}, + [12821] = {.lex_state = 98}, + [12822] = {.lex_state = 98}, + [12823] = {.lex_state = 98}, + [12824] = {.lex_state = 98}, + [12825] = {.lex_state = 98}, + [12826] = {.lex_state = 98}, + [12827] = {.lex_state = 98}, + [12828] = {.lex_state = 98}, + [12829] = {.lex_state = 98}, + [12830] = {.lex_state = 98}, + [12831] = {.lex_state = 98}, + [12832] = {.lex_state = 98}, + [12833] = {.lex_state = 98}, + [12834] = {.lex_state = 127}, + [12835] = {.lex_state = 98}, + [12836] = {.lex_state = 127}, + [12837] = {.lex_state = 127}, + [12838] = {.lex_state = 98}, + [12839] = {.lex_state = 127}, + [12840] = {.lex_state = 98}, + [12841] = {.lex_state = 98}, + [12842] = {.lex_state = 454}, + [12843] = {.lex_state = 127}, + [12844] = {.lex_state = 98}, + [12845] = {.lex_state = 169}, + [12846] = {.lex_state = 98}, + [12847] = {.lex_state = 454}, + [12848] = {.lex_state = 127}, + [12849] = {.lex_state = 98}, + [12850] = {.lex_state = 98}, + [12851] = {.lex_state = 454}, + [12852] = {.lex_state = 98}, + [12853] = {.lex_state = 98}, + [12854] = {.lex_state = 98}, + [12855] = {.lex_state = 98}, + [12856] = {.lex_state = 127}, + [12857] = {.lex_state = 98}, + [12858] = {.lex_state = 98}, + [12859] = {.lex_state = 127}, + [12860] = {.lex_state = 98}, + [12861] = {.lex_state = 98}, + [12862] = {.lex_state = 98}, + [12863] = {.lex_state = 98}, + [12864] = {.lex_state = 127}, + [12865] = {.lex_state = 127}, + [12866] = {.lex_state = 98}, + [12867] = {.lex_state = 98}, + [12868] = {.lex_state = 98}, + [12869] = {.lex_state = 98}, + [12870] = {.lex_state = 98}, + [12871] = {.lex_state = 98}, + [12872] = {.lex_state = 98}, + [12873] = {.lex_state = 98}, + [12874] = {.lex_state = 98}, + [12875] = {.lex_state = 98}, + [12876] = {.lex_state = 454}, + [12877] = {.lex_state = 98}, + [12878] = {.lex_state = 98}, + [12879] = {.lex_state = 454}, + [12880] = {.lex_state = 98}, + [12881] = {.lex_state = 98}, + [12882] = {.lex_state = 98}, + [12883] = {.lex_state = 98}, + [12884] = {.lex_state = 98}, + [12885] = {.lex_state = 98}, + [12886] = {.lex_state = 98}, + [12887] = {.lex_state = 98}, + [12888] = {.lex_state = 454}, + [12889] = {.lex_state = 454}, + [12890] = {.lex_state = 98}, + [12891] = {.lex_state = 98}, + [12892] = {.lex_state = 98}, + [12893] = {.lex_state = 98}, + [12894] = {.lex_state = 98}, + [12895] = {.lex_state = 98}, + [12896] = {.lex_state = 98}, + [12897] = {.lex_state = 98}, + [12898] = {.lex_state = 127}, + [12899] = {.lex_state = 127}, + [12900] = {.lex_state = 127}, + [12901] = {.lex_state = 98}, + [12902] = {.lex_state = 127}, + [12903] = {.lex_state = 454}, + [12904] = {.lex_state = 98}, + [12905] = {.lex_state = 98}, + [12906] = {.lex_state = 98}, + [12907] = {.lex_state = 98}, + [12908] = {.lex_state = 98}, + [12909] = {.lex_state = 98}, + [12910] = {.lex_state = 98}, + [12911] = {.lex_state = 98}, + [12912] = {.lex_state = 98}, + [12913] = {.lex_state = 98}, + [12914] = {.lex_state = 98}, + [12915] = {.lex_state = 98}, + [12916] = {.lex_state = 127}, + [12917] = {.lex_state = 98}, + [12918] = {.lex_state = 127}, + [12919] = {.lex_state = 98}, + [12920] = {.lex_state = 127}, + [12921] = {.lex_state = 454}, + [12922] = {.lex_state = 454}, + [12923] = {.lex_state = 98}, + [12924] = {.lex_state = 98}, + [12925] = {.lex_state = 454}, + [12926] = {.lex_state = 98}, + [12927] = {.lex_state = 127}, + [12928] = {.lex_state = 127}, + [12929] = {.lex_state = 98}, + [12930] = {.lex_state = 98}, + [12931] = {.lex_state = 98}, + [12932] = {.lex_state = 98}, + [12933] = {.lex_state = 98}, + [12934] = {.lex_state = 454}, + [12935] = {.lex_state = 98}, + [12936] = {.lex_state = 98}, + [12937] = {.lex_state = 98}, + [12938] = {.lex_state = 98}, + [12939] = {.lex_state = 98}, + [12940] = {.lex_state = 127}, + [12941] = {.lex_state = 98}, + [12942] = {.lex_state = 127}, + [12943] = {.lex_state = 127}, + [12944] = {.lex_state = 98}, + [12945] = {.lex_state = 98}, + [12946] = {.lex_state = 454}, + [12947] = {.lex_state = 127}, + [12948] = {.lex_state = 127}, + [12949] = {.lex_state = 127}, + [12950] = {.lex_state = 127}, + [12951] = {.lex_state = 127}, + [12952] = {.lex_state = 454}, + [12953] = {.lex_state = 98}, + [12954] = {.lex_state = 454}, + [12955] = {.lex_state = 98}, + [12956] = {.lex_state = 454}, + [12957] = {.lex_state = 98}, + [12958] = {.lex_state = 98}, + [12959] = {.lex_state = 454}, + [12960] = {.lex_state = 454}, + [12961] = {.lex_state = 454}, + [12962] = {.lex_state = 98}, + [12963] = {.lex_state = 127}, + [12964] = {.lex_state = 98}, + [12965] = {.lex_state = 98}, + [12966] = {.lex_state = 454}, + [12967] = {.lex_state = 127}, + [12968] = {.lex_state = 98}, + [12969] = {.lex_state = 454}, + [12970] = {.lex_state = 454}, + [12971] = {.lex_state = 98}, + [12972] = {.lex_state = 454}, + [12973] = {.lex_state = 454}, + [12974] = {.lex_state = 454}, + [12975] = {.lex_state = 98}, + [12976] = {.lex_state = 127}, + [12977] = {.lex_state = 127}, + [12978] = {.lex_state = 98}, + [12979] = {.lex_state = 454}, + [12980] = {.lex_state = 454}, + [12981] = {.lex_state = 98}, + [12982] = {.lex_state = 454}, + [12983] = {.lex_state = 98}, + [12984] = {.lex_state = 454}, + [12985] = {.lex_state = 454}, + [12986] = {.lex_state = 127}, + [12987] = {.lex_state = 454}, + [12988] = {.lex_state = 98}, + [12989] = {.lex_state = 454}, + [12990] = {.lex_state = 127}, + [12991] = {.lex_state = 98}, + [12992] = {.lex_state = 98}, + [12993] = {.lex_state = 454}, + [12994] = {.lex_state = 454}, + [12995] = {.lex_state = 169}, + [12996] = {.lex_state = 454}, + [12997] = {.lex_state = 98}, + [12998] = {.lex_state = 454}, + [12999] = {.lex_state = 454}, + [13000] = {.lex_state = 98}, + [13001] = {.lex_state = 454}, + [13002] = {.lex_state = 127}, + [13003] = {.lex_state = 127}, + [13004] = {.lex_state = 98}, + [13005] = {.lex_state = 98}, + [13006] = {.lex_state = 454}, + [13007] = {.lex_state = 98}, + [13008] = {.lex_state = 454}, + [13009] = {.lex_state = 454}, + [13010] = {.lex_state = 454}, + [13011] = {.lex_state = 454}, + [13012] = {.lex_state = 98}, + [13013] = {.lex_state = 454}, + [13014] = {.lex_state = 98}, + [13015] = {.lex_state = 98}, + [13016] = {.lex_state = 454}, + [13017] = {.lex_state = 127}, + [13018] = {.lex_state = 127}, + [13019] = {.lex_state = 98}, + [13020] = {.lex_state = 98}, + [13021] = {.lex_state = 454}, + [13022] = {.lex_state = 98}, + [13023] = {.lex_state = 98}, + [13024] = {.lex_state = 98}, + [13025] = {.lex_state = 98}, + [13026] = {.lex_state = 127}, + [13027] = {.lex_state = 98}, + [13028] = {.lex_state = 454}, + [13029] = {.lex_state = 127}, + [13030] = {.lex_state = 98}, + [13031] = {.lex_state = 454}, + [13032] = {.lex_state = 454}, + [13033] = {.lex_state = 98}, + [13034] = {.lex_state = 454}, + [13035] = {.lex_state = 98}, + [13036] = {.lex_state = 454}, + [13037] = {.lex_state = 98}, + [13038] = {.lex_state = 98}, + [13039] = {.lex_state = 127}, + [13040] = {.lex_state = 454}, + [13041] = {.lex_state = 98}, + [13042] = {.lex_state = 127}, + [13043] = {.lex_state = 127}, + [13044] = {.lex_state = 127}, + [13045] = {.lex_state = 98}, + [13046] = {.lex_state = 454}, + [13047] = {.lex_state = 454}, + [13048] = {.lex_state = 454}, + [13049] = {.lex_state = 127}, + [13050] = {.lex_state = 454}, + [13051] = {.lex_state = 98}, + [13052] = {.lex_state = 127}, + [13053] = {.lex_state = 127}, + [13054] = {.lex_state = 127}, + [13055] = {.lex_state = 454}, + [13056] = {.lex_state = 127}, + [13057] = {.lex_state = 454}, + [13058] = {.lex_state = 98}, + [13059] = {.lex_state = 98}, + [13060] = {.lex_state = 454}, + [13061] = {.lex_state = 98}, + [13062] = {.lex_state = 127}, + [13063] = {.lex_state = 127}, + [13064] = {.lex_state = 127}, + [13065] = {.lex_state = 127}, + [13066] = {.lex_state = 127}, + [13067] = {.lex_state = 454}, + [13068] = {.lex_state = 454}, + [13069] = {.lex_state = 98}, + [13070] = {.lex_state = 98}, + [13071] = {.lex_state = 127}, + [13072] = {.lex_state = 127}, + [13073] = {.lex_state = 454}, + [13074] = {.lex_state = 98}, + [13075] = {.lex_state = 454}, + [13076] = {.lex_state = 454}, + [13077] = {.lex_state = 454}, + [13078] = {.lex_state = 454}, + [13079] = {.lex_state = 454}, + [13080] = {.lex_state = 127}, + [13081] = {.lex_state = 454}, + [13082] = {.lex_state = 454}, + [13083] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13084] = {.lex_state = 127}, + [13085] = {.lex_state = 454}, + [13086] = {.lex_state = 454}, + [13087] = {.lex_state = 127}, + [13088] = {.lex_state = 454}, + [13089] = {.lex_state = 454}, + [13090] = {.lex_state = 454}, + [13091] = {.lex_state = 454}, + [13092] = {.lex_state = 127}, + [13093] = {.lex_state = 454}, + [13094] = {.lex_state = 127}, + [13095] = {.lex_state = 127}, + [13096] = {.lex_state = 127}, + [13097] = {.lex_state = 127}, + [13098] = {.lex_state = 454}, + [13099] = {.lex_state = 127}, + [13100] = {.lex_state = 127}, + [13101] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13102] = {.lex_state = 127}, + [13103] = {.lex_state = 454}, + [13104] = {.lex_state = 127}, + [13105] = {.lex_state = 454}, + [13106] = {.lex_state = 127}, + [13107] = {.lex_state = 454}, + [13108] = {.lex_state = 454}, + [13109] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13110] = {.lex_state = 454}, + [13111] = {.lex_state = 454}, + [13112] = {.lex_state = 454}, + [13113] = {.lex_state = 127}, + [13114] = {.lex_state = 454}, + [13115] = {.lex_state = 454}, + [13116] = {.lex_state = 454}, + [13117] = {.lex_state = 454}, + [13118] = {.lex_state = 454}, + [13119] = {.lex_state = 127}, + [13120] = {.lex_state = 454}, + [13121] = {.lex_state = 454}, + [13122] = {.lex_state = 127}, + [13123] = {.lex_state = 454}, + [13124] = {.lex_state = 454}, + [13125] = {.lex_state = 454}, + [13126] = {.lex_state = 454}, + [13127] = {.lex_state = 454}, + [13128] = {.lex_state = 454}, + [13129] = {.lex_state = 454}, + [13130] = {.lex_state = 454}, + [13131] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13132] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13133] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13134] = {.lex_state = 454}, + [13135] = {.lex_state = 127}, + [13136] = {.lex_state = 454}, + [13137] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13138] = {.lex_state = 127}, + [13139] = {.lex_state = 454}, + [13140] = {.lex_state = 127}, + [13141] = {.lex_state = 127}, + [13142] = {.lex_state = 454}, + [13143] = {.lex_state = 127}, + [13144] = {.lex_state = 454}, + [13145] = {.lex_state = 454}, + [13146] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13147] = {.lex_state = 454}, + [13148] = {.lex_state = 454}, + [13149] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13150] = {.lex_state = 454}, + [13151] = {.lex_state = 127}, + [13152] = {.lex_state = 454}, + [13153] = {.lex_state = 127}, + [13154] = {.lex_state = 454}, + [13155] = {.lex_state = 127}, + [13156] = {.lex_state = 454}, + [13157] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13158] = {.lex_state = 127}, + [13159] = {.lex_state = 127}, + [13160] = {.lex_state = 127}, + [13161] = {.lex_state = 454}, + [13162] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13163] = {.lex_state = 127}, + [13164] = {.lex_state = 454}, + [13165] = {.lex_state = 127}, + [13166] = {.lex_state = 127}, + [13167] = {.lex_state = 127}, + [13168] = {.lex_state = 454}, + [13169] = {.lex_state = 127}, + [13170] = {.lex_state = 127}, + [13171] = {.lex_state = 454}, + [13172] = {.lex_state = 454}, + [13173] = {.lex_state = 454}, + [13174] = {.lex_state = 127}, + [13175] = {.lex_state = 454}, + [13176] = {.lex_state = 454}, + [13177] = {.lex_state = 454}, + [13178] = {.lex_state = 454}, + [13179] = {.lex_state = 454}, + [13180] = {.lex_state = 454}, + [13181] = {.lex_state = 454}, + [13182] = {.lex_state = 127}, + [13183] = {.lex_state = 454}, + [13184] = {.lex_state = 127}, + [13185] = {.lex_state = 454}, + [13186] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13187] = {.lex_state = 127}, + [13188] = {.lex_state = 454}, + [13189] = {.lex_state = 127}, + [13190] = {.lex_state = 127}, + [13191] = {.lex_state = 454}, + [13192] = {.lex_state = 454}, + [13193] = {.lex_state = 454}, + [13194] = {.lex_state = 454}, + [13195] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13196] = {.lex_state = 454}, + [13197] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13198] = {.lex_state = 454}, + [13199] = {.lex_state = 127}, + [13200] = {.lex_state = 454}, + [13201] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13202] = {.lex_state = 454}, + [13203] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13204] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13205] = {.lex_state = 127}, + [13206] = {.lex_state = 454}, + [13207] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13208] = {.lex_state = 454}, + [13209] = {.lex_state = 454}, + [13210] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13211] = {.lex_state = 127}, + [13212] = {.lex_state = 454}, + [13213] = {.lex_state = 127}, + [13214] = {.lex_state = 454}, + [13215] = {.lex_state = 454}, + [13216] = {.lex_state = 454}, + [13217] = {.lex_state = 454}, + [13218] = {.lex_state = 454}, + [13219] = {.lex_state = 127}, + [13220] = {.lex_state = 454}, + [13221] = {.lex_state = 127}, + [13222] = {.lex_state = 454}, + [13223] = {.lex_state = 127}, + [13224] = {.lex_state = 454}, + [13225] = {.lex_state = 127}, + [13226] = {.lex_state = 454}, + [13227] = {.lex_state = 454}, + [13228] = {.lex_state = 454}, + [13229] = {.lex_state = 127}, + [13230] = {.lex_state = 127}, + [13231] = {.lex_state = 127}, + [13232] = {.lex_state = 454}, + [13233] = {.lex_state = 127}, + [13234] = {.lex_state = 454}, + [13235] = {.lex_state = 127}, + [13236] = {.lex_state = 454}, + [13237] = {.lex_state = 454}, + [13238] = {.lex_state = 454}, + [13239] = {.lex_state = 454}, + [13240] = {.lex_state = 454}, + [13241] = {.lex_state = 127}, + [13242] = {.lex_state = 454}, + [13243] = {.lex_state = 127}, + [13244] = {.lex_state = 454}, + [13245] = {.lex_state = 454}, + [13246] = {.lex_state = 454}, + [13247] = {.lex_state = 127}, + [13248] = {.lex_state = 454}, + [13249] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13250] = {.lex_state = 127}, + [13251] = {.lex_state = 127}, + [13252] = {.lex_state = 127}, + [13253] = {.lex_state = 454}, + [13254] = {.lex_state = 454}, + [13255] = {.lex_state = 454}, + [13256] = {.lex_state = 454}, + [13257] = {.lex_state = 127}, + [13258] = {.lex_state = 454}, + [13259] = {.lex_state = 454}, + [13260] = {.lex_state = 454}, + [13261] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13262] = {.lex_state = 454}, + [13263] = {.lex_state = 127}, + [13264] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13265] = {.lex_state = 454}, + [13266] = {.lex_state = 127}, + [13267] = {.lex_state = 454}, + [13268] = {.lex_state = 127}, + [13269] = {.lex_state = 454}, + [13270] = {.lex_state = 454}, + [13271] = {.lex_state = 454}, + [13272] = {.lex_state = 454}, + [13273] = {.lex_state = 454}, + [13274] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13275] = {.lex_state = 127}, + [13276] = {.lex_state = 454}, + [13277] = {.lex_state = 127}, + [13278] = {.lex_state = 454}, + [13279] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13280] = {.lex_state = 454}, + [13281] = {.lex_state = 454}, + [13282] = {.lex_state = 454}, + [13283] = {.lex_state = 127}, + [13284] = {.lex_state = 454}, + [13285] = {.lex_state = 127}, + [13286] = {.lex_state = 454}, + [13287] = {.lex_state = 127}, + [13288] = {.lex_state = 454}, + [13289] = {.lex_state = 127}, + [13290] = {.lex_state = 454}, + [13291] = {.lex_state = 454}, + [13292] = {.lex_state = 454}, + [13293] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13294] = {.lex_state = 127}, + [13295] = {.lex_state = 127}, + [13296] = {.lex_state = 454}, + [13297] = {.lex_state = 454}, + [13298] = {.lex_state = 454}, + [13299] = {.lex_state = 454}, + [13300] = {.lex_state = 454}, + [13301] = {.lex_state = 454}, + [13302] = {.lex_state = 454}, + [13303] = {.lex_state = 454}, + [13304] = {.lex_state = 127}, + [13305] = {.lex_state = 454}, + [13306] = {.lex_state = 127}, + [13307] = {.lex_state = 127}, + [13308] = {.lex_state = 454}, + [13309] = {.lex_state = 127}, + [13310] = {.lex_state = 454}, + [13311] = {.lex_state = 127}, + [13312] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13313] = {.lex_state = 127}, + [13314] = {.lex_state = 127}, + [13315] = {.lex_state = 127}, + [13316] = {.lex_state = 454}, + [13317] = {.lex_state = 127}, + [13318] = {.lex_state = 454}, + [13319] = {.lex_state = 454}, + [13320] = {.lex_state = 454}, + [13321] = {.lex_state = 454}, + [13322] = {.lex_state = 454}, + [13323] = {.lex_state = 127}, + [13324] = {.lex_state = 127}, + [13325] = {.lex_state = 454}, + [13326] = {.lex_state = 454}, + [13327] = {.lex_state = 454}, + [13328] = {.lex_state = 127}, + [13329] = {.lex_state = 454}, + [13330] = {.lex_state = 454}, + [13331] = {.lex_state = 454}, + [13332] = {.lex_state = 454}, + [13333] = {.lex_state = 454}, + [13334] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13335] = {.lex_state = 454}, + [13336] = {.lex_state = 127}, + [13337] = {.lex_state = 127}, + [13338] = {.lex_state = 454}, + [13339] = {.lex_state = 454}, + [13340] = {.lex_state = 454}, + [13341] = {.lex_state = 454}, + [13342] = {.lex_state = 454}, + [13343] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13344] = {.lex_state = 454}, + [13345] = {.lex_state = 454}, + [13346] = {.lex_state = 454}, + [13347] = {.lex_state = 454}, + [13348] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13349] = {.lex_state = 454}, + [13350] = {.lex_state = 454}, + [13351] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13352] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13353] = {.lex_state = 454}, + [13354] = {.lex_state = 127}, + [13355] = {.lex_state = 454}, + [13356] = {.lex_state = 127}, + [13357] = {.lex_state = 454}, + [13358] = {.lex_state = 454}, + [13359] = {.lex_state = 454}, + [13360] = {.lex_state = 127}, + [13361] = {.lex_state = 127}, + [13362] = {.lex_state = 454}, + [13363] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13364] = {.lex_state = 127}, + [13365] = {.lex_state = 127}, + [13366] = {.lex_state = 454}, + [13367] = {.lex_state = 454}, + [13368] = {.lex_state = 127}, + [13369] = {.lex_state = 127}, + [13370] = {.lex_state = 127}, + [13371] = {.lex_state = 127}, + [13372] = {.lex_state = 127}, + [13373] = {.lex_state = 454}, + [13374] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13375] = {.lex_state = 454}, + [13376] = {.lex_state = 454}, + [13377] = {.lex_state = 127}, + [13378] = {.lex_state = 454}, + [13379] = {.lex_state = 454}, + [13380] = {.lex_state = 127}, + [13381] = {.lex_state = 454}, + [13382] = {.lex_state = 127}, + [13383] = {.lex_state = 127}, + [13384] = {.lex_state = 454}, + [13385] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13386] = {.lex_state = 454}, + [13387] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13388] = {.lex_state = 127}, + [13389] = {.lex_state = 127}, + [13390] = {.lex_state = 454}, + [13391] = {.lex_state = 454}, + [13392] = {.lex_state = 454}, + [13393] = {.lex_state = 127}, + [13394] = {.lex_state = 127}, + [13395] = {.lex_state = 127}, + [13396] = {.lex_state = 454}, + [13397] = {.lex_state = 454}, + [13398] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13399] = {.lex_state = 127}, + [13400] = {.lex_state = 127}, + [13401] = {.lex_state = 454}, + [13402] = {.lex_state = 454}, + [13403] = {.lex_state = 454}, + [13404] = {.lex_state = 454}, + [13405] = {.lex_state = 454}, + [13406] = {.lex_state = 127}, + [13407] = {.lex_state = 454}, + [13408] = {.lex_state = 454}, + [13409] = {.lex_state = 127}, + [13410] = {.lex_state = 127}, + [13411] = {.lex_state = 454}, + [13412] = {.lex_state = 454}, + [13413] = {.lex_state = 127}, + [13414] = {.lex_state = 454}, + [13415] = {.lex_state = 127}, + [13416] = {.lex_state = 454}, + [13417] = {.lex_state = 454}, + [13418] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13419] = {.lex_state = 454}, + [13420] = {.lex_state = 127}, + [13421] = {.lex_state = 454}, + [13422] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13423] = {.lex_state = 454}, + [13424] = {.lex_state = 454}, + [13425] = {.lex_state = 454}, + [13426] = {.lex_state = 454}, + [13427] = {.lex_state = 127}, + [13428] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13429] = {.lex_state = 454}, + [13430] = {.lex_state = 454}, + [13431] = {.lex_state = 454}, + [13432] = {.lex_state = 454}, + [13433] = {.lex_state = 127}, + [13434] = {.lex_state = 454}, + [13435] = {.lex_state = 454}, + [13436] = {.lex_state = 454}, + [13437] = {.lex_state = 454}, + [13438] = {.lex_state = 454}, + [13439] = {.lex_state = 454}, + [13440] = {.lex_state = 127}, + [13441] = {.lex_state = 454}, + [13442] = {.lex_state = 454}, + [13443] = {.lex_state = 454}, + [13444] = {.lex_state = 454}, + [13445] = {.lex_state = 127}, + [13446] = {.lex_state = 127}, + [13447] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13448] = {.lex_state = 454}, + [13449] = {.lex_state = 127}, + [13450] = {.lex_state = 127}, + [13451] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13452] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13453] = {.lex_state = 454}, + [13454] = {.lex_state = 127}, + [13455] = {.lex_state = 454}, + [13456] = {.lex_state = 127}, + [13457] = {.lex_state = 454}, + [13458] = {.lex_state = 127}, + [13459] = {.lex_state = 454}, + [13460] = {.lex_state = 454}, + [13461] = {.lex_state = 454}, + [13462] = {.lex_state = 454}, + [13463] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13464] = {.lex_state = 454}, + [13465] = {.lex_state = 454}, + [13466] = {.lex_state = 454}, + [13467] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13468] = {.lex_state = 454}, + [13469] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13470] = {.lex_state = 127}, + [13471] = {.lex_state = 454}, + [13472] = {.lex_state = 127}, + [13473] = {.lex_state = 127}, + [13474] = {.lex_state = 127}, + [13475] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13476] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13477] = {.lex_state = 127}, + [13478] = {.lex_state = 454}, + [13479] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13480] = {.lex_state = 454}, + [13481] = {.lex_state = 127}, + [13482] = {.lex_state = 454}, + [13483] = {.lex_state = 127}, + [13484] = {.lex_state = 454}, + [13485] = {.lex_state = 127}, + [13486] = {.lex_state = 127}, + [13487] = {.lex_state = 454}, + [13488] = {.lex_state = 454}, + [13489] = {.lex_state = 454}, + [13490] = {.lex_state = 454}, + [13491] = {.lex_state = 127}, + [13492] = {.lex_state = 127}, + [13493] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13494] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13495] = {.lex_state = 454}, + [13496] = {.lex_state = 454}, + [13497] = {.lex_state = 454}, + [13498] = {.lex_state = 127}, + [13499] = {.lex_state = 454}, + [13500] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13501] = {.lex_state = 127}, + [13502] = {.lex_state = 454}, + [13503] = {.lex_state = 127}, + [13504] = {.lex_state = 454}, + [13505] = {.lex_state = 454}, + [13506] = {.lex_state = 454}, + [13507] = {.lex_state = 454}, + [13508] = {.lex_state = 454}, + [13509] = {.lex_state = 127}, + [13510] = {.lex_state = 127}, + [13511] = {.lex_state = 454}, + [13512] = {.lex_state = 454}, + [13513] = {.lex_state = 454}, + [13514] = {.lex_state = 454}, + [13515] = {.lex_state = 127}, + [13516] = {.lex_state = 454}, + [13517] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13518] = {.lex_state = 454}, + [13519] = {.lex_state = 454}, + [13520] = {.lex_state = 454}, + [13521] = {.lex_state = 127}, + [13522] = {.lex_state = 454}, + [13523] = {.lex_state = 454}, + [13524] = {.lex_state = 454}, + [13525] = {.lex_state = 454}, + [13526] = {.lex_state = 454}, + [13527] = {.lex_state = 127}, + [13528] = {.lex_state = 454}, + [13529] = {.lex_state = 127}, + [13530] = {.lex_state = 127}, + [13531] = {.lex_state = 454}, + [13532] = {.lex_state = 454}, + [13533] = {.lex_state = 454}, + [13534] = {.lex_state = 454}, + [13535] = {.lex_state = 454}, + [13536] = {.lex_state = 454}, + [13537] = {.lex_state = 454}, + [13538] = {.lex_state = 454}, + [13539] = {.lex_state = 127}, + [13540] = {.lex_state = 127}, + [13541] = {.lex_state = 454}, + [13542] = {.lex_state = 454}, + [13543] = {.lex_state = 454}, + [13544] = {.lex_state = 127}, + [13545] = {.lex_state = 454}, + [13546] = {.lex_state = 127}, + [13547] = {.lex_state = 454}, + [13548] = {.lex_state = 454}, + [13549] = {.lex_state = 454}, + [13550] = {.lex_state = 127}, + [13551] = {.lex_state = 454}, + [13552] = {.lex_state = 454}, + [13553] = {.lex_state = 454}, + [13554] = {.lex_state = 454}, + [13555] = {.lex_state = 454}, + [13556] = {.lex_state = 454}, + [13557] = {.lex_state = 454}, + [13558] = {.lex_state = 454}, + [13559] = {.lex_state = 127}, + [13560] = {.lex_state = 454}, + [13561] = {.lex_state = 454}, + [13562] = {.lex_state = 454}, + [13563] = {.lex_state = 454}, + [13564] = {.lex_state = 454}, + [13565] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13566] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13567] = {.lex_state = 454}, + [13568] = {.lex_state = 127}, + [13569] = {.lex_state = 454}, + [13570] = {.lex_state = 454}, + [13571] = {.lex_state = 454}, + [13572] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13573] = {.lex_state = 454}, + [13574] = {.lex_state = 127}, + [13575] = {.lex_state = 454}, + [13576] = {.lex_state = 454}, + [13577] = {.lex_state = 454}, + [13578] = {.lex_state = 127}, + [13579] = {.lex_state = 454}, + [13580] = {.lex_state = 127}, + [13581] = {.lex_state = 454}, + [13582] = {.lex_state = 454}, + [13583] = {.lex_state = 454}, + [13584] = {.lex_state = 454}, + [13585] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13586] = {.lex_state = 454}, + [13587] = {.lex_state = 127}, + [13588] = {.lex_state = 454}, + [13589] = {.lex_state = 454}, + [13590] = {.lex_state = 454}, + [13591] = {.lex_state = 454}, + [13592] = {.lex_state = 454}, + [13593] = {.lex_state = 454}, + [13594] = {.lex_state = 454}, + [13595] = {.lex_state = 454}, + [13596] = {.lex_state = 127}, + [13597] = {.lex_state = 127}, + [13598] = {.lex_state = 454}, + [13599] = {.lex_state = 127}, + [13600] = {.lex_state = 454}, + [13601] = {.lex_state = 454}, + [13602] = {.lex_state = 454}, + [13603] = {.lex_state = 454}, + [13604] = {.lex_state = 454}, + [13605] = {.lex_state = 454}, + [13606] = {.lex_state = 454}, + [13607] = {.lex_state = 454}, + [13608] = {.lex_state = 127}, + [13609] = {.lex_state = 454}, + [13610] = {.lex_state = 454}, + [13611] = {.lex_state = 454}, + [13612] = {.lex_state = 127}, + [13613] = {.lex_state = 454}, + [13614] = {.lex_state = 454}, + [13615] = {.lex_state = 454}, + [13616] = {.lex_state = 454}, + [13617] = {.lex_state = 454}, + [13618] = {.lex_state = 454}, + [13619] = {.lex_state = 454}, + [13620] = {.lex_state = 454}, + [13621] = {.lex_state = 454}, + [13622] = {.lex_state = 454}, + [13623] = {.lex_state = 454}, + [13624] = {.lex_state = 454}, + [13625] = {.lex_state = 454}, + [13626] = {.lex_state = 454}, + [13627] = {.lex_state = 454}, + [13628] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13629] = {.lex_state = 454}, + [13630] = {.lex_state = 454}, + [13631] = {.lex_state = 454}, + [13632] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13633] = {.lex_state = 127}, + [13634] = {.lex_state = 454}, + [13635] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13636] = {.lex_state = 454}, + [13637] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13638] = {.lex_state = 127}, + [13639] = {.lex_state = 454}, + [13640] = {.lex_state = 454}, + [13641] = {.lex_state = 454}, + [13642] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13643] = {.lex_state = 454}, + [13644] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13645] = {.lex_state = 127}, + [13646] = {.lex_state = 454}, + [13647] = {.lex_state = 454}, + [13648] = {.lex_state = 454}, + [13649] = {.lex_state = 454}, + [13650] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13651] = {.lex_state = 454}, + [13652] = {.lex_state = 127, .reserved_word_set_id = 1}, + [13653] = {.lex_state = 454}, + [13654] = {.lex_state = 454}, + [13655] = {.lex_state = 127}, + [13656] = {.lex_state = 127}, + [13657] = {.lex_state = 127}, + [13658] = {.lex_state = 127}, + [13659] = {.lex_state = 127}, + [13660] = {.lex_state = 454}, + [13661] = {.lex_state = 454}, + [13662] = {.lex_state = 454}, + [13663] = {.lex_state = 454}, + [13664] = {.lex_state = 127}, + [13665] = {.lex_state = 454}, + [13666] = {.lex_state = 454}, + [13667] = {.lex_state = 454}, + [13668] = {.lex_state = 454}, + [13669] = {.lex_state = 454}, + [13670] = {.lex_state = 454}, + [13671] = {.lex_state = 454}, + [13672] = {.lex_state = 454}, + [13673] = {.lex_state = 454}, + [13674] = {.lex_state = 454}, + [13675] = {.lex_state = 454}, + [13676] = {.lex_state = 454}, + [13677] = {.lex_state = 454}, + [13678] = {.lex_state = 454}, + [13679] = {.lex_state = 127}, + [13680] = {.lex_state = 454}, + [13681] = {.lex_state = 454}, + [13682] = {.lex_state = 454}, + [13683] = {.lex_state = 454}, + [13684] = {.lex_state = 454}, + [13685] = {.lex_state = 454}, + [13686] = {.lex_state = 454}, + [13687] = {.lex_state = 127}, + [13688] = {.lex_state = 454}, + [13689] = {.lex_state = 454}, + [13690] = {.lex_state = 454}, + [13691] = {.lex_state = 454}, + [13692] = {.lex_state = 127}, + [13693] = {.lex_state = 454}, + [13694] = {.lex_state = 454}, + [13695] = {.lex_state = 454}, + [13696] = {.lex_state = 454}, + [13697] = {.lex_state = 454}, + [13698] = {.lex_state = 454}, + [13699] = {.lex_state = 454}, + [13700] = {.lex_state = 454}, + [13701] = {.lex_state = 454}, + [13702] = {.lex_state = 454}, + [13703] = {.lex_state = 454}, + [13704] = {.lex_state = 454}, + [13705] = {.lex_state = 127}, + [13706] = {.lex_state = 127}, + [13707] = {.lex_state = 454}, + [13708] = {.lex_state = 454}, + [13709] = {.lex_state = 454}, + [13710] = {.lex_state = 454}, + [13711] = {.lex_state = 454}, + [13712] = {.lex_state = 454}, + [13713] = {.lex_state = 454}, + [13714] = {.lex_state = 454}, + [13715] = {.lex_state = 454}, + [13716] = {.lex_state = 454}, + [13717] = {.lex_state = 454}, + [13718] = {.lex_state = 454}, + [13719] = {.lex_state = 454}, + [13720] = {.lex_state = 454}, + [13721] = {.lex_state = 454}, + [13722] = {.lex_state = 454}, + [13723] = {.lex_state = 127}, + [13724] = {.lex_state = 454}, + [13725] = {.lex_state = 454}, + [13726] = {.lex_state = 454}, + [13727] = {.lex_state = 454}, + [13728] = {.lex_state = 454}, + [13729] = {.lex_state = 454}, + [13730] = {.lex_state = 454}, + [13731] = {.lex_state = 127}, + [13732] = {.lex_state = 454}, + [13733] = {.lex_state = 454}, + [13734] = {.lex_state = 454}, + [13735] = {.lex_state = 454}, + [13736] = {.lex_state = 454}, + [13737] = {.lex_state = 454}, + [13738] = {.lex_state = 454}, + [13739] = {.lex_state = 454}, + [13740] = {.lex_state = 454}, + [13741] = {.lex_state = 454}, + [13742] = {.lex_state = 454}, + [13743] = {.lex_state = 454}, + [13744] = {.lex_state = 454}, + [13745] = {.lex_state = 454}, + [13746] = {.lex_state = 454}, + [13747] = {.lex_state = 454}, + [13748] = {.lex_state = 454}, + [13749] = {.lex_state = 454}, + [13750] = {.lex_state = 454}, + [13751] = {.lex_state = 454}, + [13752] = {.lex_state = 454}, + [13753] = {.lex_state = 454}, + [13754] = {.lex_state = 454}, + [13755] = {.lex_state = 454}, + [13756] = {.lex_state = 454}, + [13757] = {.lex_state = 454}, + [13758] = {.lex_state = 454}, + [13759] = {.lex_state = 454}, + [13760] = {.lex_state = 454}, + [13761] = {.lex_state = 454}, + [13762] = {.lex_state = 454}, + [13763] = {.lex_state = 454}, + [13764] = {.lex_state = 454}, + [13765] = {.lex_state = 454}, + [13766] = {.lex_state = 127}, + [13767] = {.lex_state = 454}, + [13768] = {.lex_state = 454}, + [13769] = {.lex_state = 454}, + [13770] = {.lex_state = 454}, + [13771] = {.lex_state = 127}, + [13772] = {.lex_state = 454}, + [13773] = {.lex_state = 127}, + [13774] = {.lex_state = 454}, + [13775] = {.lex_state = 454}, + [13776] = {.lex_state = 454}, + [13777] = {.lex_state = 454}, + [13778] = {.lex_state = 454}, + [13779] = {.lex_state = 454}, + [13780] = {.lex_state = 454}, + [13781] = {.lex_state = 454}, + [13782] = {.lex_state = 454}, + [13783] = {.lex_state = 454}, + [13784] = {.lex_state = 454}, + [13785] = {.lex_state = 454}, + [13786] = {.lex_state = 454}, + [13787] = {.lex_state = 98}, + [13788] = {.lex_state = 454}, + [13789] = {.lex_state = 454}, + [13790] = {.lex_state = 454}, + [13791] = {.lex_state = 454}, + [13792] = {.lex_state = 454}, + [13793] = {.lex_state = 454}, + [13794] = {.lex_state = 454}, + [13795] = {.lex_state = 127}, + [13796] = {.lex_state = 454}, + [13797] = {.lex_state = 454}, + [13798] = {.lex_state = 454}, + [13799] = {.lex_state = 454}, + [13800] = {.lex_state = 454}, + [13801] = {.lex_state = 454}, + [13802] = {.lex_state = 454}, + [13803] = {.lex_state = 454}, + [13804] = {.lex_state = 454}, + [13805] = {.lex_state = 454}, + [13806] = {.lex_state = 454}, + [13807] = {.lex_state = 454}, + [13808] = {.lex_state = 454}, + [13809] = {.lex_state = 454}, + [13810] = {.lex_state = 454}, + [13811] = {.lex_state = 454}, + [13812] = {.lex_state = 454}, + [13813] = {.lex_state = 454}, + [13814] = {.lex_state = 454}, + [13815] = {.lex_state = 454}, + [13816] = {.lex_state = 454}, + [13817] = {.lex_state = 454}, + [13818] = {.lex_state = 98}, + [13819] = {.lex_state = 169}, + [13820] = {.lex_state = 454}, + [13821] = {.lex_state = 454}, + [13822] = {.lex_state = 98}, + [13823] = {.lex_state = 127}, + [13824] = {.lex_state = 454}, + [13825] = {.lex_state = 454}, + [13826] = {.lex_state = 454}, + [13827] = {.lex_state = 454}, + [13828] = {.lex_state = 454}, + [13829] = {.lex_state = 454}, + [13830] = {.lex_state = 127}, + [13831] = {.lex_state = 454}, + [13832] = {.lex_state = 454}, + [13833] = {.lex_state = 454}, + [13834] = {.lex_state = 454}, + [13835] = {.lex_state = 454}, + [13836] = {.lex_state = 454}, + [13837] = {.lex_state = 454}, + [13838] = {.lex_state = 454}, + [13839] = {.lex_state = 454}, + [13840] = {.lex_state = 454}, + [13841] = {.lex_state = 454}, + [13842] = {.lex_state = 454}, + [13843] = {.lex_state = 454}, + [13844] = {.lex_state = 454}, + [13845] = {.lex_state = 454}, + [13846] = {.lex_state = 454}, + [13847] = {.lex_state = 454}, + [13848] = {.lex_state = 454}, + [13849] = {.lex_state = 454}, + [13850] = {.lex_state = 454}, + [13851] = {.lex_state = 454}, + [13852] = {.lex_state = 454}, + [13853] = {.lex_state = 454}, + [13854] = {.lex_state = 454}, + [13855] = {.lex_state = 454}, + [13856] = {.lex_state = 454}, + [13857] = {.lex_state = 454}, + [13858] = {.lex_state = 454}, + [13859] = {.lex_state = 454}, + [13860] = {.lex_state = 127}, + [13861] = {.lex_state = 127}, + [13862] = {.lex_state = 454}, + [13863] = {.lex_state = 454}, + [13864] = {.lex_state = 454}, + [13865] = {.lex_state = 454}, + [13866] = {.lex_state = 454}, + [13867] = {.lex_state = 454}, + [13868] = {.lex_state = 454}, + [13869] = {.lex_state = 454}, + [13870] = {.lex_state = 454}, + [13871] = {.lex_state = 454}, + [13872] = {.lex_state = 454}, + [13873] = {.lex_state = 454}, + [13874] = {.lex_state = 454}, + [13875] = {.lex_state = 454}, + [13876] = {.lex_state = 454}, + [13877] = {.lex_state = 127}, + [13878] = {.lex_state = 454}, + [13879] = {.lex_state = 454}, + [13880] = {.lex_state = 454}, + [13881] = {.lex_state = 454}, + [13882] = {.lex_state = 454}, + [13883] = {.lex_state = 454}, + [13884] = {.lex_state = 454}, + [13885] = {.lex_state = 454}, + [13886] = {.lex_state = 454}, + [13887] = {.lex_state = 127}, + [13888] = {.lex_state = 127}, + [13889] = {.lex_state = 127}, + [13890] = {.lex_state = 454}, + [13891] = {.lex_state = 454}, + [13892] = {.lex_state = 127}, + [13893] = {.lex_state = 454}, + [13894] = {.lex_state = 454}, + [13895] = {.lex_state = 454}, + [13896] = {.lex_state = 127}, + [13897] = {.lex_state = 454}, + [13898] = {.lex_state = 454}, + [13899] = {.lex_state = 454}, + [13900] = {.lex_state = 454}, + [13901] = {.lex_state = 454}, + [13902] = {.lex_state = 454}, + [13903] = {.lex_state = 454}, + [13904] = {.lex_state = 454}, + [13905] = {.lex_state = 454}, + [13906] = {.lex_state = 454}, + [13907] = {.lex_state = 454}, + [13908] = {.lex_state = 454}, + [13909] = {.lex_state = 454}, + [13910] = {.lex_state = 454}, + [13911] = {.lex_state = 454}, + [13912] = {.lex_state = 454}, + [13913] = {.lex_state = 454}, + [13914] = {.lex_state = 454}, + [13915] = {.lex_state = 454}, + [13916] = {.lex_state = 454}, + [13917] = {.lex_state = 454}, + [13918] = {.lex_state = 454}, + [13919] = {.lex_state = 454}, + [13920] = {.lex_state = 454}, + [13921] = {.lex_state = 454}, + [13922] = {.lex_state = 454}, + [13923] = {.lex_state = 454}, + [13924] = {.lex_state = 454}, + [13925] = {.lex_state = 454}, + [13926] = {.lex_state = 127}, + [13927] = {.lex_state = 454}, + [13928] = {.lex_state = 454}, + [13929] = {.lex_state = 454}, + [13930] = {.lex_state = 127}, + [13931] = {.lex_state = 454}, + [13932] = {.lex_state = 454}, + [13933] = {.lex_state = 454}, + [13934] = {.lex_state = 127}, + [13935] = {.lex_state = 454}, + [13936] = {.lex_state = 454}, + [13937] = {.lex_state = 454}, + [13938] = {.lex_state = 454}, + [13939] = {.lex_state = 454}, + [13940] = {.lex_state = 454}, + [13941] = {.lex_state = 454}, + [13942] = {.lex_state = 454}, + [13943] = {.lex_state = 454}, + [13944] = {.lex_state = 454}, + [13945] = {.lex_state = 454}, + [13946] = {.lex_state = 454}, + [13947] = {.lex_state = 454}, + [13948] = {.lex_state = 454}, + [13949] = {.lex_state = 454}, + [13950] = {.lex_state = 454}, + [13951] = {.lex_state = 454}, + [13952] = {.lex_state = 454}, + [13953] = {.lex_state = 454}, + [13954] = {.lex_state = 454}, + [13955] = {.lex_state = 454}, + [13956] = {.lex_state = 454}, + [13957] = {.lex_state = 127}, + [13958] = {.lex_state = 454}, + [13959] = {.lex_state = 454}, + [13960] = {.lex_state = 454}, + [13961] = {.lex_state = 454}, + [13962] = {.lex_state = 454}, + [13963] = {.lex_state = 454}, + [13964] = {.lex_state = 454}, + [13965] = {.lex_state = 454}, + [13966] = {.lex_state = 454}, + [13967] = {.lex_state = 454}, + [13968] = {.lex_state = 454}, + [13969] = {.lex_state = 454}, + [13970] = {.lex_state = 454}, + [13971] = {.lex_state = 454}, + [13972] = {.lex_state = 454}, + [13973] = {.lex_state = 454}, + [13974] = {.lex_state = 454}, + [13975] = {.lex_state = 454}, + [13976] = {.lex_state = 454}, + [13977] = {.lex_state = 454}, + [13978] = {.lex_state = 454}, + [13979] = {.lex_state = 454}, + [13980] = {.lex_state = 454}, + [13981] = {.lex_state = 127}, + [13982] = {.lex_state = 454}, + [13983] = {.lex_state = 454}, + [13984] = {.lex_state = 454}, + [13985] = {.lex_state = 454}, + [13986] = {.lex_state = 454}, + [13987] = {.lex_state = 454}, + [13988] = {.lex_state = 127}, + [13989] = {.lex_state = 454}, + [13990] = {.lex_state = 454}, + [13991] = {.lex_state = 454}, + [13992] = {.lex_state = 454}, + [13993] = {.lex_state = 454}, + [13994] = {.lex_state = 454}, + [13995] = {.lex_state = 127}, + [13996] = {.lex_state = 454}, + [13997] = {.lex_state = 454}, + [13998] = {.lex_state = 454}, + [13999] = {.lex_state = 454}, + [14000] = {.lex_state = 454}, + [14001] = {.lex_state = 454}, + [14002] = {.lex_state = 454}, + [14003] = {.lex_state = 454}, + [14004] = {.lex_state = 454}, + [14005] = {.lex_state = 454}, + [14006] = {.lex_state = 454}, + [14007] = {.lex_state = 454}, + [14008] = {.lex_state = 454}, + [14009] = {.lex_state = 454}, + [14010] = {.lex_state = 454}, + [14011] = {.lex_state = 454}, + [14012] = {.lex_state = 454}, + [14013] = {.lex_state = 454}, + [14014] = {.lex_state = 454}, + [14015] = {.lex_state = 454}, + [14016] = {.lex_state = 454}, + [14017] = {.lex_state = 454}, + [14018] = {.lex_state = 454}, + [14019] = {.lex_state = 454}, + [14020] = {.lex_state = 454}, + [14021] = {.lex_state = 454}, + [14022] = {.lex_state = 454}, + [14023] = {.lex_state = 454}, + [14024] = {.lex_state = 454}, + [14025] = {.lex_state = 127}, + [14026] = {.lex_state = 454}, + [14027] = {.lex_state = 454}, + [14028] = {.lex_state = 454}, + [14029] = {.lex_state = 454}, + [14030] = {.lex_state = 454}, + [14031] = {.lex_state = 454}, + [14032] = {.lex_state = 454}, + [14033] = {.lex_state = 454}, + [14034] = {.lex_state = 454}, + [14035] = {.lex_state = 454}, + [14036] = {.lex_state = 454}, + [14037] = {.lex_state = 127}, + [14038] = {.lex_state = 127}, + [14039] = {.lex_state = 454}, + [14040] = {.lex_state = 454}, + [14041] = {.lex_state = 454}, + [14042] = {.lex_state = 454}, + [14043] = {.lex_state = 454}, + [14044] = {.lex_state = 454}, + [14045] = {.lex_state = 454}, + [14046] = {.lex_state = 454}, + [14047] = {.lex_state = 454}, + [14048] = {.lex_state = 454}, + [14049] = {.lex_state = 454}, + [14050] = {.lex_state = 454}, + [14051] = {.lex_state = 454}, + [14052] = {.lex_state = 454}, + [14053] = {.lex_state = 127}, + [14054] = {.lex_state = 454}, + [14055] = {.lex_state = 454}, + [14056] = {.lex_state = 454}, + [14057] = {.lex_state = 454}, + [14058] = {.lex_state = 454}, + [14059] = {.lex_state = 454}, + [14060] = {.lex_state = 454}, + [14061] = {.lex_state = 454}, + [14062] = {.lex_state = 454}, + [14063] = {.lex_state = 127}, + [14064] = {.lex_state = 454}, + [14065] = {.lex_state = 454}, + [14066] = {.lex_state = 454}, + [14067] = {.lex_state = 454}, + [14068] = {.lex_state = 454}, + [14069] = {.lex_state = 454}, + [14070] = {.lex_state = 454}, + [14071] = {.lex_state = 454}, + [14072] = {.lex_state = 454}, + [14073] = {.lex_state = 454}, + [14074] = {.lex_state = 454}, + [14075] = {.lex_state = 454}, + [14076] = {.lex_state = 454}, + [14077] = {.lex_state = 454}, + [14078] = {.lex_state = 454}, + [14079] = {.lex_state = 454}, + [14080] = {.lex_state = 454}, + [14081] = {.lex_state = 454}, + [14082] = {.lex_state = 454}, + [14083] = {.lex_state = 454}, + [14084] = {.lex_state = 454}, + [14085] = {.lex_state = 127}, + [14086] = {.lex_state = 454}, + [14087] = {.lex_state = 454}, + [14088] = {.lex_state = 454}, + [14089] = {.lex_state = 454}, + [14090] = {.lex_state = 454}, + [14091] = {.lex_state = 454}, + [14092] = {.lex_state = 454}, + [14093] = {.lex_state = 454}, + [14094] = {.lex_state = 454}, + [14095] = {.lex_state = 454}, + [14096] = {.lex_state = 454}, + [14097] = {.lex_state = 454}, + [14098] = {.lex_state = 454}, + [14099] = {.lex_state = 454}, + [14100] = {.lex_state = 454}, + [14101] = {.lex_state = 98}, + [14102] = {.lex_state = 454}, + [14103] = {.lex_state = 454}, + [14104] = {.lex_state = 454}, + [14105] = {.lex_state = 454}, + [14106] = {.lex_state = 127}, + [14107] = {.lex_state = 454}, + [14108] = {.lex_state = 454}, + [14109] = {.lex_state = 454}, + [14110] = {.lex_state = 454}, + [14111] = {.lex_state = 454}, + [14112] = {.lex_state = 454}, + [14113] = {.lex_state = 454}, + [14114] = {.lex_state = 454}, + [14115] = {.lex_state = 454}, + [14116] = {.lex_state = 454}, + [14117] = {.lex_state = 454}, + [14118] = {.lex_state = 454}, + [14119] = {.lex_state = 454}, + [14120] = {.lex_state = 454}, + [14121] = {.lex_state = 454}, + [14122] = {.lex_state = 454}, + [14123] = {.lex_state = 454}, + [14124] = {.lex_state = 454}, + [14125] = {.lex_state = 454}, + [14126] = {.lex_state = 454}, + [14127] = {.lex_state = 454}, + [14128] = {.lex_state = 454}, + [14129] = {.lex_state = 454}, + [14130] = {.lex_state = 454}, + [14131] = {.lex_state = 454}, + [14132] = {.lex_state = 454}, + [14133] = {.lex_state = 454}, + [14134] = {.lex_state = 454}, + [14135] = {.lex_state = 454}, + [14136] = {.lex_state = 454}, + [14137] = {.lex_state = 454}, + [14138] = {.lex_state = 454}, + [14139] = {.lex_state = 454}, + [14140] = {.lex_state = 454}, + [14141] = {.lex_state = 454}, + [14142] = {.lex_state = 454}, + [14143] = {.lex_state = 454}, + [14144] = {.lex_state = 454}, + [14145] = {.lex_state = 454}, + [14146] = {.lex_state = 454}, + [14147] = {.lex_state = 454}, + [14148] = {.lex_state = 454}, + [14149] = {.lex_state = 454}, + [14150] = {.lex_state = 454}, + [14151] = {.lex_state = 454}, + [14152] = {.lex_state = 454}, + [14153] = {.lex_state = 454}, + [14154] = {.lex_state = 454}, + [14155] = {.lex_state = 454}, + [14156] = {.lex_state = 454}, + [14157] = {.lex_state = 454}, + [14158] = {.lex_state = 454}, + [14159] = {.lex_state = 454}, + [14160] = {.lex_state = 454}, + [14161] = {.lex_state = 454}, + [14162] = {.lex_state = 454}, + [14163] = {.lex_state = 454}, + [14164] = {.lex_state = 454}, + [14165] = {.lex_state = 454}, + [14166] = {.lex_state = 454}, + [14167] = {.lex_state = 454}, + [14168] = {.lex_state = 454}, + [14169] = {.lex_state = 454}, + [14170] = {.lex_state = 454}, + [14171] = {.lex_state = 454}, + [14172] = {.lex_state = 454}, + [14173] = {.lex_state = 454}, + [14174] = {.lex_state = 454}, + [14175] = {.lex_state = 454}, + [14176] = {.lex_state = 127}, + [14177] = {.lex_state = 454}, + [14178] = {.lex_state = 454}, + [14179] = {.lex_state = 454}, + [14180] = {.lex_state = 454}, + [14181] = {.lex_state = 127}, + [14182] = {.lex_state = 454}, + [14183] = {.lex_state = 454}, + [14184] = {.lex_state = 454}, + [14185] = {.lex_state = 454}, + [14186] = {.lex_state = 454}, + [14187] = {.lex_state = 454}, + [14188] = {.lex_state = 454}, + [14189] = {.lex_state = 454}, + [14190] = {.lex_state = 454}, + [14191] = {.lex_state = 454}, + [14192] = {.lex_state = 454}, + [14193] = {.lex_state = 454}, + [14194] = {.lex_state = 454}, + [14195] = {.lex_state = 454}, + [14196] = {.lex_state = 454}, + [14197] = {.lex_state = 454}, + [14198] = {.lex_state = 454}, + [14199] = {.lex_state = 454}, + [14200] = {.lex_state = 454}, + [14201] = {.lex_state = 454}, + [14202] = {.lex_state = 454}, + [14203] = {.lex_state = 454}, + [14204] = {.lex_state = 454}, + [14205] = {.lex_state = 454}, + [14206] = {.lex_state = 454}, + [14207] = {.lex_state = 454}, + [14208] = {.lex_state = 454}, + [14209] = {.lex_state = 454}, + [14210] = {.lex_state = 454}, + [14211] = {.lex_state = 454}, + [14212] = {.lex_state = 454}, + [14213] = {.lex_state = 454}, + [14214] = {.lex_state = 454}, + [14215] = {.lex_state = 454}, + [14216] = {.lex_state = 454}, + [14217] = {.lex_state = 454}, + [14218] = {.lex_state = 454}, + [14219] = {.lex_state = 454}, + [14220] = {.lex_state = 454}, + [14221] = {.lex_state = 454}, + [14222] = {.lex_state = 454}, + [14223] = {.lex_state = 454}, + [14224] = {.lex_state = 454}, + [14225] = {.lex_state = 454}, + [14226] = {.lex_state = 454}, + [14227] = {.lex_state = 454}, + [14228] = {.lex_state = 454}, + [14229] = {.lex_state = 454}, + [14230] = {.lex_state = 127}, + [14231] = {.lex_state = 454}, + [14232] = {.lex_state = 454}, + [14233] = {.lex_state = 454}, + [14234] = {.lex_state = 454}, + [14235] = {.lex_state = 454}, + [14236] = {.lex_state = 454}, + [14237] = {.lex_state = 454}, + [14238] = {.lex_state = 454}, + [14239] = {.lex_state = 454}, + [14240] = {.lex_state = 454}, + [14241] = {.lex_state = 454}, + [14242] = {.lex_state = 454}, + [14243] = {.lex_state = 454}, + [14244] = {.lex_state = 454}, + [14245] = {.lex_state = 454}, + [14246] = {.lex_state = 454}, + [14247] = {.lex_state = 454}, + [14248] = {.lex_state = 454}, + [14249] = {.lex_state = 454}, + [14250] = {.lex_state = 454}, + [14251] = {.lex_state = 454}, + [14252] = {.lex_state = 454}, + [14253] = {.lex_state = 454}, + [14254] = {.lex_state = 454}, + [14255] = {.lex_state = 454}, + [14256] = {.lex_state = 127}, + [14257] = {.lex_state = 127}, + [14258] = {.lex_state = 454}, + [14259] = {.lex_state = 454}, + [14260] = {.lex_state = 454}, + [14261] = {.lex_state = 454}, + [14262] = {.lex_state = 454}, + [14263] = {.lex_state = 454}, + [14264] = {.lex_state = 127}, + [14265] = {.lex_state = 454}, + [14266] = {.lex_state = 454}, + [14267] = {.lex_state = 454}, + [14268] = {.lex_state = 454}, + [14269] = {.lex_state = 454}, + [14270] = {.lex_state = 454}, + [14271] = {.lex_state = 454}, + [14272] = {.lex_state = 454}, + [14273] = {.lex_state = 454}, + [14274] = {.lex_state = 454}, + [14275] = {.lex_state = 454}, + [14276] = {.lex_state = 454}, + [14277] = {.lex_state = 454}, + [14278] = {.lex_state = 127}, + [14279] = {.lex_state = 454}, + [14280] = {.lex_state = 454}, + [14281] = {.lex_state = 454}, + [14282] = {.lex_state = 454}, + [14283] = {.lex_state = 454}, + [14284] = {.lex_state = 454}, + [14285] = {.lex_state = 454}, + [14286] = {.lex_state = 454}, + [14287] = {.lex_state = 454}, + [14288] = {.lex_state = 454}, + [14289] = {.lex_state = 454}, + [14290] = {.lex_state = 454}, + [14291] = {.lex_state = 454}, + [14292] = {.lex_state = 454}, + [14293] = {.lex_state = 454}, + [14294] = {.lex_state = 454}, + [14295] = {.lex_state = 454}, + [14296] = {.lex_state = 454}, + [14297] = {.lex_state = 454}, + [14298] = {.lex_state = 454}, + [14299] = {.lex_state = 454}, + [14300] = {.lex_state = 454}, + [14301] = {.lex_state = 454}, + [14302] = {.lex_state = 454}, + [14303] = {.lex_state = 454}, + [14304] = {.lex_state = 454}, + [14305] = {.lex_state = 454}, + [14306] = {.lex_state = 454}, + [14307] = {.lex_state = 454}, + [14308] = {.lex_state = 454}, + [14309] = {.lex_state = 454}, + [14310] = {.lex_state = 454}, + [14311] = {.lex_state = 454}, + [14312] = {.lex_state = 454}, + [14313] = {.lex_state = 454}, + [14314] = {.lex_state = 454}, + [14315] = {.lex_state = 454}, + [14316] = {.lex_state = 454}, + [14317] = {.lex_state = 127}, + [14318] = {.lex_state = 454}, + [14319] = {.lex_state = 454}, + [14320] = {.lex_state = 454}, + [14321] = {.lex_state = 454}, + [14322] = {.lex_state = 454}, + [14323] = {.lex_state = 454}, + [14324] = {.lex_state = 454}, + [14325] = {.lex_state = 454}, + [14326] = {.lex_state = 454}, + [14327] = {.lex_state = 454}, + [14328] = {.lex_state = 454}, + [14329] = {.lex_state = 454}, + [14330] = {.lex_state = 127}, + [14331] = {.lex_state = 454}, + [14332] = {.lex_state = 454}, + [14333] = {.lex_state = 454}, + [14334] = {.lex_state = 454}, + [14335] = {.lex_state = 454}, + [14336] = {.lex_state = 454}, + [14337] = {.lex_state = 454}, + [14338] = {.lex_state = 454}, + [14339] = {.lex_state = 454}, + [14340] = {.lex_state = 454}, + [14341] = {.lex_state = 454}, + [14342] = {.lex_state = 454}, + [14343] = {.lex_state = 454}, + [14344] = {.lex_state = 454}, + [14345] = {.lex_state = 127}, + [14346] = {.lex_state = 454}, + [14347] = {.lex_state = 454}, + [14348] = {.lex_state = 454}, + [14349] = {.lex_state = 454}, + [14350] = {.lex_state = 454}, + [14351] = {.lex_state = 127}, + [14352] = {.lex_state = 454}, + [14353] = {.lex_state = 454}, + [14354] = {.lex_state = 454}, + [14355] = {.lex_state = 454}, + [14356] = {.lex_state = 454}, + [14357] = {.lex_state = 454}, + [14358] = {.lex_state = 454}, + [14359] = {.lex_state = 454}, + [14360] = {.lex_state = 454}, + [14361] = {.lex_state = 454}, + [14362] = {.lex_state = 454}, + [14363] = {.lex_state = 454}, + [14364] = {.lex_state = 454}, + [14365] = {.lex_state = 454}, + [14366] = {.lex_state = 127}, + [14367] = {.lex_state = 454}, + [14368] = {.lex_state = 454}, + [14369] = {.lex_state = 454}, + [14370] = {.lex_state = 454}, + [14371] = {.lex_state = 454}, + [14372] = {.lex_state = 454}, + [14373] = {.lex_state = 454}, + [14374] = {.lex_state = 454}, + [14375] = {.lex_state = 454}, + [14376] = {.lex_state = 454}, + [14377] = {.lex_state = 454}, + [14378] = {.lex_state = 454}, + [14379] = {.lex_state = 454}, + [14380] = {.lex_state = 454}, + [14381] = {.lex_state = 127}, + [14382] = {.lex_state = 454}, + [14383] = {.lex_state = 454}, + [14384] = {.lex_state = 127}, + [14385] = {.lex_state = 454}, + [14386] = {.lex_state = 454}, + [14387] = {.lex_state = 454}, + [14388] = {.lex_state = 454}, + [14389] = {.lex_state = 454}, + [14390] = {.lex_state = 454}, + [14391] = {.lex_state = 127}, + [14392] = {.lex_state = 454}, + [14393] = {.lex_state = 454}, + [14394] = {.lex_state = 454}, + [14395] = {.lex_state = 127}, + [14396] = {.lex_state = 454}, + [14397] = {.lex_state = 454}, + [14398] = {.lex_state = 454}, + [14399] = {.lex_state = 454}, + [14400] = {.lex_state = 454}, + [14401] = {.lex_state = 127}, + [14402] = {.lex_state = 454}, + [14403] = {.lex_state = 454}, + [14404] = {.lex_state = 454}, + [14405] = {.lex_state = 454}, + [14406] = {.lex_state = 454}, + [14407] = {.lex_state = 454}, + [14408] = {.lex_state = 454}, + [14409] = {.lex_state = 454}, + [14410] = {.lex_state = 454}, + [14411] = {.lex_state = 454}, + [14412] = {.lex_state = 454}, + [14413] = {.lex_state = 454}, + [14414] = {.lex_state = 454}, + [14415] = {.lex_state = 454}, + [14416] = {.lex_state = 454}, + [14417] = {.lex_state = 454}, + [14418] = {.lex_state = 127}, + [14419] = {.lex_state = 454}, + [14420] = {.lex_state = 454}, + [14421] = {.lex_state = 127}, + [14422] = {.lex_state = 454}, + [14423] = {.lex_state = 454}, + [14424] = {.lex_state = 454}, + [14425] = {.lex_state = 454}, + [14426] = {.lex_state = 454}, + [14427] = {.lex_state = 454}, + [14428] = {.lex_state = 454}, + [14429] = {.lex_state = 454}, + [14430] = {.lex_state = 454}, + [14431] = {.lex_state = 454}, + [14432] = {.lex_state = 454}, + [14433] = {.lex_state = 454}, + [14434] = {.lex_state = 454}, + [14435] = {.lex_state = 127}, + [14436] = {.lex_state = 454}, + [14437] = {.lex_state = 454}, + [14438] = {.lex_state = 454}, + [14439] = {.lex_state = 454}, + [14440] = {.lex_state = 454}, + [14441] = {.lex_state = 454}, + [14442] = {.lex_state = 454}, + [14443] = {.lex_state = 454}, + [14444] = {.lex_state = 454}, + [14445] = {.lex_state = 454}, + [14446] = {.lex_state = 454}, + [14447] = {.lex_state = 454}, + [14448] = {.lex_state = 454}, + [14449] = {.lex_state = 454}, + [14450] = {.lex_state = 454}, + [14451] = {.lex_state = 454}, + [14452] = {.lex_state = 454}, + [14453] = {.lex_state = 454}, + [14454] = {.lex_state = 454}, + [14455] = {.lex_state = 454}, + [14456] = {.lex_state = 454}, + [14457] = {.lex_state = 454}, + [14458] = {.lex_state = 454}, + [14459] = {.lex_state = 454}, + [14460] = {.lex_state = 454}, + [14461] = {.lex_state = 454}, + [14462] = {.lex_state = 454}, + [14463] = {.lex_state = 454}, + [14464] = {.lex_state = 454}, + [14465] = {.lex_state = 454}, + [14466] = {.lex_state = 454}, + [14467] = {.lex_state = 454}, + [14468] = {.lex_state = 454}, + [14469] = {.lex_state = 454}, + [14470] = {.lex_state = 454}, + [14471] = {.lex_state = 454}, + [14472] = {.lex_state = 454}, + [14473] = {.lex_state = 454}, + [14474] = {.lex_state = 454}, + [14475] = {.lex_state = 454}, + [14476] = {.lex_state = 454}, + [14477] = {.lex_state = 454}, + [14478] = {.lex_state = 454}, + [14479] = {.lex_state = 454}, + [14480] = {.lex_state = 454}, + [14481] = {.lex_state = 454}, + [14482] = {.lex_state = 454}, + [14483] = {.lex_state = 454}, + [14484] = {.lex_state = 454}, + [14485] = {.lex_state = 454}, + [14486] = {.lex_state = 454}, + [14487] = {.lex_state = 454}, + [14488] = {.lex_state = 454}, + [14489] = {.lex_state = 454}, + [14490] = {.lex_state = 454}, + [14491] = {.lex_state = 454}, + [14492] = {.lex_state = 454}, + [14493] = {.lex_state = 454}, + [14494] = {.lex_state = 454}, + [14495] = {.lex_state = 454}, + [14496] = {.lex_state = 454}, + [14497] = {.lex_state = 454}, + [14498] = {.lex_state = 454}, + [14499] = {.lex_state = 454}, + [14500] = {.lex_state = 454}, + [14501] = {.lex_state = 454}, + [14502] = {.lex_state = 454}, + [14503] = {.lex_state = 454}, + [14504] = {.lex_state = 454}, + [14505] = {.lex_state = 454}, + [14506] = {.lex_state = 454}, + [14507] = {.lex_state = 454}, + [14508] = {.lex_state = 454}, + [14509] = {.lex_state = 454}, + [14510] = {.lex_state = 454}, + [14511] = {.lex_state = 454}, + [14512] = {.lex_state = 454}, + [14513] = {.lex_state = 454}, + [14514] = {.lex_state = 454}, + [14515] = {.lex_state = 454}, + [14516] = {.lex_state = 454}, + [14517] = {.lex_state = 454}, + [14518] = {.lex_state = 454}, + [14519] = {.lex_state = 454}, + [14520] = {.lex_state = 454}, + [14521] = {.lex_state = 127}, + [14522] = {.lex_state = 454}, + [14523] = {.lex_state = 454}, + [14524] = {.lex_state = 454}, + [14525] = {.lex_state = 454}, + [14526] = {.lex_state = 454}, + [14527] = {.lex_state = 454}, + [14528] = {.lex_state = 454}, + [14529] = {.lex_state = 454}, + [14530] = {.lex_state = 454}, + [14531] = {.lex_state = 454}, + [14532] = {.lex_state = 454}, + [14533] = {.lex_state = 454}, + [14534] = {.lex_state = 127}, + [14535] = {.lex_state = 454}, + [14536] = {.lex_state = 454}, + [14537] = {.lex_state = 454}, + [14538] = {.lex_state = 454}, + [14539] = {.lex_state = 454}, + [14540] = {.lex_state = 454}, + [14541] = {.lex_state = 454}, + [14542] = {.lex_state = 454}, + [14543] = {.lex_state = 454}, + [14544] = {.lex_state = 454}, + [14545] = {.lex_state = 454}, + [14546] = {.lex_state = 454}, + [14547] = {.lex_state = 454}, + [14548] = {.lex_state = 454}, + [14549] = {.lex_state = 454}, + [14550] = {.lex_state = 454}, + [14551] = {.lex_state = 454}, + [14552] = {.lex_state = 454}, + [14553] = {.lex_state = 127}, + [14554] = {.lex_state = 454}, + [14555] = {.lex_state = 454}, + [14556] = {.lex_state = 454}, + [14557] = {.lex_state = 454}, + [14558] = {.lex_state = 454}, + [14559] = {.lex_state = 454}, + [14560] = {.lex_state = 454}, + [14561] = {.lex_state = 454}, + [14562] = {.lex_state = 454}, + [14563] = {.lex_state = 454}, + [14564] = {.lex_state = 454}, + [14565] = {.lex_state = 454}, + [14566] = {.lex_state = 454}, + [14567] = {.lex_state = 454}, + [14568] = {.lex_state = 454}, + [14569] = {.lex_state = 454}, + [14570] = {.lex_state = 454}, + [14571] = {.lex_state = 454}, + [14572] = {.lex_state = 454}, + [14573] = {.lex_state = 454}, + [14574] = {.lex_state = 454}, + [14575] = {.lex_state = 454}, + [14576] = {.lex_state = 454}, + [14577] = {.lex_state = 454}, + [14578] = {.lex_state = 454}, + [14579] = {.lex_state = 454}, + [14580] = {.lex_state = 454}, + [14581] = {.lex_state = 454}, + [14582] = {.lex_state = 454}, + [14583] = {.lex_state = 454}, + [14584] = {.lex_state = 454}, + [14585] = {.lex_state = 454}, + [14586] = {.lex_state = 454}, + [14587] = {.lex_state = 454}, + [14588] = {.lex_state = 454}, + [14589] = {.lex_state = 454}, + [14590] = {.lex_state = 454}, + [14591] = {.lex_state = 454}, + [14592] = {.lex_state = 454}, + [14593] = {.lex_state = 454}, + [14594] = {.lex_state = 454}, + [14595] = {.lex_state = 454}, + [14596] = {.lex_state = 454}, + [14597] = {.lex_state = 127}, + [14598] = {.lex_state = 454}, + [14599] = {.lex_state = 454}, + [14600] = {.lex_state = 454}, + [14601] = {.lex_state = 454}, + [14602] = {.lex_state = 454}, + [14603] = {.lex_state = 454}, + [14604] = {.lex_state = 454}, + [14605] = {.lex_state = 454}, + [14606] = {.lex_state = 454}, + [14607] = {.lex_state = 454}, + [14608] = {.lex_state = 454}, + [14609] = {.lex_state = 454}, + [14610] = {.lex_state = 454}, + [14611] = {.lex_state = 454}, + [14612] = {.lex_state = 454}, + [14613] = {.lex_state = 454}, + [14614] = {.lex_state = 454}, + [14615] = {.lex_state = 454}, + [14616] = {.lex_state = 454}, + [14617] = {.lex_state = 454}, + [14618] = {.lex_state = 454}, + [14619] = {.lex_state = 454}, + [14620] = {.lex_state = 454}, + [14621] = {.lex_state = 454}, + [14622] = {.lex_state = 127}, + [14623] = {.lex_state = 454}, + [14624] = {.lex_state = 454}, + [14625] = {.lex_state = 454}, + [14626] = {.lex_state = 454}, + [14627] = {.lex_state = 454}, + [14628] = {.lex_state = 454}, + [14629] = {.lex_state = 454}, + [14630] = {.lex_state = 454}, + [14631] = {.lex_state = 454}, + [14632] = {.lex_state = 454}, + [14633] = {.lex_state = 454}, + [14634] = {.lex_state = 454}, + [14635] = {.lex_state = 454}, + [14636] = {.lex_state = 454}, + [14637] = {.lex_state = 454}, + [14638] = {.lex_state = 454}, + [14639] = {.lex_state = 454}, + [14640] = {.lex_state = 454}, + [14641] = {.lex_state = 454}, + [14642] = {.lex_state = 454}, + [14643] = {.lex_state = 454}, + [14644] = {.lex_state = 454}, + [14645] = {.lex_state = 454}, + [14646] = {.lex_state = 454}, + [14647] = {.lex_state = 454}, + [14648] = {.lex_state = 454}, + [14649] = {.lex_state = 454}, + [14650] = {.lex_state = 454}, + [14651] = {.lex_state = 454}, + [14652] = {.lex_state = 454}, + [14653] = {.lex_state = 454}, + [14654] = {.lex_state = 454}, + [14655] = {.lex_state = 454}, + [14656] = {.lex_state = 454}, + [14657] = {.lex_state = 454}, + [14658] = {.lex_state = 454}, + [14659] = {.lex_state = 454}, + [14660] = {.lex_state = 454}, + [14661] = {.lex_state = 454}, + [14662] = {.lex_state = 454}, + [14663] = {.lex_state = 454}, + [14664] = {.lex_state = 454}, + [14665] = {.lex_state = 454}, + [14666] = {.lex_state = 454}, + [14667] = {.lex_state = 454}, + [14668] = {.lex_state = 454}, + [14669] = {.lex_state = 454}, + [14670] = {.lex_state = 454}, + [14671] = {.lex_state = 454}, + [14672] = {.lex_state = 454}, + [14673] = {.lex_state = 454}, + [14674] = {.lex_state = 454}, + [14675] = {.lex_state = 454}, + [14676] = {.lex_state = 454}, + [14677] = {.lex_state = 454}, + [14678] = {.lex_state = 454}, + [14679] = {.lex_state = 454}, + [14680] = {.lex_state = 454}, + [14681] = {.lex_state = 127}, + [14682] = {.lex_state = 127}, + [14683] = {.lex_state = 454}, + [14684] = {.lex_state = 454}, + [14685] = {.lex_state = 454}, + [14686] = {.lex_state = 454}, + [14687] = {.lex_state = 454}, + [14688] = {.lex_state = 454}, + [14689] = {.lex_state = 454}, + [14690] = {.lex_state = 454}, + [14691] = {.lex_state = 454}, + [14692] = {.lex_state = 454}, + [14693] = {.lex_state = 454}, + [14694] = {.lex_state = 454}, + [14695] = {.lex_state = 454}, + [14696] = {.lex_state = 454}, + [14697] = {.lex_state = 454}, + [14698] = {.lex_state = 454}, + [14699] = {.lex_state = 454}, + [14700] = {.lex_state = 454}, + [14701] = {.lex_state = 454}, + [14702] = {.lex_state = 454}, + [14703] = {.lex_state = 454}, + [14704] = {.lex_state = 454}, + [14705] = {.lex_state = 454}, + [14706] = {.lex_state = 454}, + [14707] = {.lex_state = 454}, + [14708] = {.lex_state = 454}, + [14709] = {.lex_state = 454}, + [14710] = {.lex_state = 454}, + [14711] = {.lex_state = 454}, + [14712] = {.lex_state = 454}, + [14713] = {.lex_state = 454}, + [14714] = {.lex_state = 454}, + [14715] = {.lex_state = 454}, + [14716] = {.lex_state = 454}, + [14717] = {.lex_state = 454}, + [14718] = {.lex_state = 454}, + [14719] = {.lex_state = 454}, + [14720] = {.lex_state = 454}, + [14721] = {.lex_state = 454}, + [14722] = {.lex_state = 454}, + [14723] = {.lex_state = 454}, + [14724] = {.lex_state = 454}, + [14725] = {.lex_state = 454}, + [14726] = {.lex_state = 454}, + [14727] = {.lex_state = 454}, + [14728] = {.lex_state = 127}, + [14729] = {.lex_state = 454}, + [14730] = {.lex_state = 454}, + [14731] = {.lex_state = 454}, + [14732] = {.lex_state = 127}, + [14733] = {.lex_state = 454}, + [14734] = {.lex_state = 454}, + [14735] = {.lex_state = 454}, + [14736] = {.lex_state = 454}, + [14737] = {.lex_state = 454}, + [14738] = {.lex_state = 454}, + [14739] = {.lex_state = 454}, + [14740] = {.lex_state = 127}, + [14741] = {.lex_state = 454}, + [14742] = {.lex_state = 454}, + [14743] = {.lex_state = 454}, + [14744] = {.lex_state = 127}, + [14745] = {.lex_state = 454}, + [14746] = {.lex_state = 454}, + [14747] = {.lex_state = 454}, + [14748] = {.lex_state = 454}, + [14749] = {.lex_state = 454}, + [14750] = {.lex_state = 454}, + [14751] = {.lex_state = 454}, + [14752] = {.lex_state = 454}, + [14753] = {.lex_state = 454}, + [14754] = {.lex_state = 454}, + [14755] = {.lex_state = 454}, + [14756] = {.lex_state = 454}, + [14757] = {.lex_state = 454}, + [14758] = {.lex_state = 454}, + [14759] = {.lex_state = 454}, + [14760] = {.lex_state = 454}, + [14761] = {.lex_state = 454}, + [14762] = {.lex_state = 454}, + [14763] = {.lex_state = 454}, + [14764] = {.lex_state = 454}, + [14765] = {.lex_state = 454}, + [14766] = {.lex_state = 454}, + [14767] = {.lex_state = 454}, + [14768] = {.lex_state = 454}, + [14769] = {.lex_state = 454}, + [14770] = {.lex_state = 454}, + [14771] = {.lex_state = 454}, + [14772] = {.lex_state = 454}, + [14773] = {.lex_state = 454}, + [14774] = {.lex_state = 127}, + [14775] = {.lex_state = 454}, + [14776] = {.lex_state = 454}, + [14777] = {.lex_state = 454}, + [14778] = {.lex_state = 454}, + [14779] = {.lex_state = 454}, + [14780] = {.lex_state = 454}, + [14781] = {.lex_state = 454}, + [14782] = {.lex_state = 454}, + [14783] = {.lex_state = 454}, + [14784] = {.lex_state = 454}, + [14785] = {.lex_state = 454}, + [14786] = {.lex_state = 454}, + [14787] = {.lex_state = 127}, + [14788] = {.lex_state = 454}, + [14789] = {.lex_state = 454}, + [14790] = {.lex_state = 127}, + [14791] = {.lex_state = 454}, + [14792] = {.lex_state = 454}, + [14793] = {.lex_state = 454}, + [14794] = {.lex_state = 454}, + [14795] = {.lex_state = 454}, + [14796] = {.lex_state = 454}, + [14797] = {.lex_state = 127}, + [14798] = {.lex_state = 127}, + [14799] = {.lex_state = 454}, + [14800] = {.lex_state = 454}, + [14801] = {.lex_state = 454}, + [14802] = {.lex_state = 454}, + [14803] = {.lex_state = 454}, + [14804] = {.lex_state = 454}, + [14805] = {.lex_state = 127}, + [14806] = {.lex_state = 127}, + [14807] = {.lex_state = 454}, + [14808] = {.lex_state = 454}, + [14809] = {.lex_state = 454}, + [14810] = {.lex_state = 127}, + [14811] = {.lex_state = 127}, + [14812] = {.lex_state = 454}, + [14813] = {.lex_state = 454}, + [14814] = {.lex_state = 454}, + [14815] = {.lex_state = 454}, + [14816] = {.lex_state = 454}, + [14817] = {.lex_state = 454}, + [14818] = {.lex_state = 127}, + [14819] = {.lex_state = 127}, + [14820] = {.lex_state = 454}, + [14821] = {.lex_state = 454}, + [14822] = {.lex_state = 454}, + [14823] = {.lex_state = 454}, + [14824] = {.lex_state = 127}, + [14825] = {.lex_state = 127}, + [14826] = {.lex_state = 454}, + [14827] = {.lex_state = 454}, + [14828] = {.lex_state = 454}, + [14829] = {.lex_state = 454}, + [14830] = {.lex_state = 454}, + [14831] = {.lex_state = 454}, + [14832] = {.lex_state = 454}, + [14833] = {.lex_state = 454}, + [14834] = {.lex_state = 454}, + [14835] = {.lex_state = 454}, + [14836] = {.lex_state = 454}, + [14837] = {.lex_state = 454}, + [14838] = {.lex_state = 454}, + [14839] = {.lex_state = 454}, + [14840] = {.lex_state = 454}, + [14841] = {.lex_state = 454}, + [14842] = {.lex_state = 454}, + [14843] = {.lex_state = 454}, + [14844] = {.lex_state = 454}, + [14845] = {.lex_state = 454}, + [14846] = {.lex_state = 454}, + [14847] = {.lex_state = 127}, + [14848] = {.lex_state = 454}, + [14849] = {.lex_state = 127}, + [14850] = {.lex_state = 454}, + [14851] = {.lex_state = 454}, + [14852] = {.lex_state = 127}, + [14853] = {.lex_state = 454}, + [14854] = {.lex_state = 127}, + [14855] = {.lex_state = 127}, + [14856] = {.lex_state = 454}, + [14857] = {.lex_state = 454}, + [14858] = {.lex_state = 454}, + [14859] = {.lex_state = 454}, + [14860] = {.lex_state = 454}, + [14861] = {.lex_state = 454}, + [14862] = {.lex_state = 127}, + [14863] = {.lex_state = 127}, + [14864] = {.lex_state = 454}, + [14865] = {.lex_state = 127}, + [14866] = {.lex_state = 127}, + [14867] = {.lex_state = 454}, + [14868] = {.lex_state = 127}, + [14869] = {.lex_state = 454}, + [14870] = {.lex_state = 454}, + [14871] = {.lex_state = 454}, + [14872] = {.lex_state = 454}, + [14873] = {.lex_state = 127}, + [14874] = {.lex_state = 127}, + [14875] = {.lex_state = 454}, + [14876] = {.lex_state = 454}, + [14877] = {.lex_state = 454}, + [14878] = {.lex_state = 127}, + [14879] = {.lex_state = 127}, + [14880] = {.lex_state = 454}, + [14881] = {.lex_state = 127}, + [14882] = {.lex_state = 454}, + [14883] = {.lex_state = 454}, + [14884] = {.lex_state = 454}, + [14885] = {.lex_state = 454}, + [14886] = {.lex_state = 454}, + [14887] = {.lex_state = 454}, + [14888] = {.lex_state = 454}, + [14889] = {.lex_state = 454}, + [14890] = {.lex_state = 454}, + [14891] = {.lex_state = 454}, + [14892] = {.lex_state = 454}, + [14893] = {.lex_state = 454}, + [14894] = {.lex_state = 454}, + [14895] = {.lex_state = 454}, + [14896] = {.lex_state = 127}, + [14897] = {.lex_state = 454}, + [14898] = {.lex_state = 454}, + [14899] = {.lex_state = 127}, + [14900] = {.lex_state = 454}, + [14901] = {.lex_state = 454}, + [14902] = {.lex_state = 454}, + [14903] = {.lex_state = 454}, + [14904] = {.lex_state = 454}, + [14905] = {.lex_state = 454}, + [14906] = {.lex_state = 454}, + [14907] = {.lex_state = 454}, + [14908] = {.lex_state = 454}, + [14909] = {.lex_state = 454}, + [14910] = {.lex_state = 454}, + [14911] = {.lex_state = 454}, + [14912] = {.lex_state = 454}, + [14913] = {.lex_state = 454}, + [14914] = {.lex_state = 454}, + [14915] = {.lex_state = 127}, + [14916] = {.lex_state = 454}, + [14917] = {.lex_state = 454}, + [14918] = {.lex_state = 127}, + [14919] = {.lex_state = 454}, + [14920] = {.lex_state = 454}, + [14921] = {.lex_state = 127}, + [14922] = {.lex_state = 454}, + [14923] = {.lex_state = 454}, + [14924] = {.lex_state = 454}, + [14925] = {.lex_state = 454}, + [14926] = {.lex_state = 454}, + [14927] = {.lex_state = 454}, + [14928] = {.lex_state = 454}, + [14929] = {.lex_state = 454}, + [14930] = {.lex_state = 454}, + [14931] = {.lex_state = 454}, + [14932] = {.lex_state = 454}, + [14933] = {.lex_state = 454}, + [14934] = {.lex_state = 454}, + [14935] = {.lex_state = 454}, + [14936] = {.lex_state = 454}, + [14937] = {.lex_state = 454}, + [14938] = {.lex_state = 454}, + [14939] = {.lex_state = 454}, + [14940] = {.lex_state = 454}, + [14941] = {.lex_state = 454}, + [14942] = {.lex_state = 454}, + [14943] = {.lex_state = 454}, + [14944] = {.lex_state = 454}, + [14945] = {.lex_state = 454}, + [14946] = {.lex_state = 127}, + [14947] = {.lex_state = 454}, + [14948] = {.lex_state = 454}, + [14949] = {.lex_state = 454}, + [14950] = {.lex_state = 454}, + [14951] = {.lex_state = 127}, + [14952] = {.lex_state = 454}, + [14953] = {.lex_state = 454}, + [14954] = {.lex_state = 127}, + [14955] = {.lex_state = 454}, + [14956] = {.lex_state = 454}, + [14957] = {.lex_state = 454}, + [14958] = {.lex_state = 454}, + [14959] = {.lex_state = 454}, + [14960] = {.lex_state = 127}, + [14961] = {.lex_state = 127}, + [14962] = {.lex_state = 127}, + [14963] = {.lex_state = 454}, + [14964] = {.lex_state = 454}, + [14965] = {.lex_state = 454}, + [14966] = {.lex_state = 454}, + [14967] = {.lex_state = 454}, + [14968] = {.lex_state = 454}, + [14969] = {.lex_state = 454}, + [14970] = {.lex_state = 454}, + [14971] = {.lex_state = 127}, + [14972] = {.lex_state = 454}, + [14973] = {.lex_state = 454}, + [14974] = {.lex_state = 454}, + [14975] = {.lex_state = 454}, + [14976] = {.lex_state = 454}, + [14977] = {.lex_state = 454}, + [14978] = {.lex_state = 454}, + [14979] = {.lex_state = 127}, + [14980] = {.lex_state = 454}, + [14981] = {.lex_state = 454}, + [14982] = {.lex_state = 454}, + [14983] = {.lex_state = 454}, + [14984] = {.lex_state = 454}, + [14985] = {.lex_state = 127}, + [14986] = {.lex_state = 454}, + [14987] = {.lex_state = 454}, + [14988] = {.lex_state = 454}, + [14989] = {.lex_state = 454}, + [14990] = {.lex_state = 454}, + [14991] = {.lex_state = 454}, + [14992] = {.lex_state = 454}, + [14993] = {.lex_state = 454}, + [14994] = {.lex_state = 454}, + [14995] = {.lex_state = 454}, + [14996] = {.lex_state = 127}, + [14997] = {.lex_state = 454}, + [14998] = {.lex_state = 454}, + [14999] = {.lex_state = 454}, + [15000] = {.lex_state = 127}, + [15001] = {.lex_state = 454}, + [15002] = {.lex_state = 127}, + [15003] = {.lex_state = 454}, + [15004] = {.lex_state = 454}, + [15005] = {.lex_state = 454}, + [15006] = {.lex_state = 454}, + [15007] = {.lex_state = 127}, + [15008] = {.lex_state = 454}, + [15009] = {.lex_state = 454}, + [15010] = {.lex_state = 454}, + [15011] = {.lex_state = 454}, + [15012] = {.lex_state = 454}, + [15013] = {.lex_state = 454}, + [15014] = {.lex_state = 454}, + [15015] = {.lex_state = 454}, + [15016] = {.lex_state = 454}, + [15017] = {.lex_state = 454}, + [15018] = {.lex_state = 454}, + [15019] = {.lex_state = 454}, + [15020] = {.lex_state = 454}, + [15021] = {.lex_state = 127}, + [15022] = {.lex_state = 454}, + [15023] = {.lex_state = 454}, + [15024] = {.lex_state = 454}, + [15025] = {.lex_state = 454}, + [15026] = {.lex_state = 454}, + [15027] = {.lex_state = 454}, + [15028] = {.lex_state = 454}, + [15029] = {.lex_state = 127}, + [15030] = {.lex_state = 454}, + [15031] = {.lex_state = 127}, + [15032] = {.lex_state = 127}, + [15033] = {.lex_state = 454}, + [15034] = {.lex_state = 454}, + [15035] = {.lex_state = 454}, + [15036] = {.lex_state = 454}, + [15037] = {.lex_state = 454}, + [15038] = {.lex_state = 454}, + [15039] = {.lex_state = 454}, + [15040] = {.lex_state = 127}, + [15041] = {.lex_state = 454}, + [15042] = {.lex_state = 454}, + [15043] = {.lex_state = 454}, + [15044] = {.lex_state = 127}, + [15045] = {.lex_state = 454}, + [15046] = {.lex_state = 454}, + [15047] = {.lex_state = 454}, + [15048] = {.lex_state = 454}, + [15049] = {.lex_state = 454}, + [15050] = {.lex_state = 454}, + [15051] = {.lex_state = 454}, + [15052] = {.lex_state = 454}, + [15053] = {.lex_state = 454}, + [15054] = {.lex_state = 454}, + [15055] = {.lex_state = 454}, + [15056] = {.lex_state = 454}, + [15057] = {.lex_state = 454}, + [15058] = {.lex_state = 454}, + [15059] = {.lex_state = 454}, + [15060] = {.lex_state = 454}, + [15061] = {.lex_state = 454}, + [15062] = {.lex_state = 454}, + [15063] = {.lex_state = 127}, + [15064] = {.lex_state = 454}, + [15065] = {.lex_state = 454}, + [15066] = {.lex_state = 127}, + [15067] = {.lex_state = 454}, + [15068] = {.lex_state = 127}, + [15069] = {.lex_state = 454}, + [15070] = {.lex_state = 127}, + [15071] = {.lex_state = 127}, + [15072] = {.lex_state = 454}, + [15073] = {.lex_state = 454}, + [15074] = {.lex_state = 454}, + [15075] = {.lex_state = 454}, + [15076] = {.lex_state = 454}, + [15077] = {.lex_state = 454}, + [15078] = {.lex_state = 127}, + [15079] = {.lex_state = 127}, + [15080] = {.lex_state = 454}, + [15081] = {.lex_state = 454}, + [15082] = {.lex_state = 454}, + [15083] = {.lex_state = 127}, + [15084] = {.lex_state = 454}, + [15085] = {.lex_state = 454}, + [15086] = {.lex_state = 454}, + [15087] = {.lex_state = 454}, + [15088] = {.lex_state = 454}, + [15089] = {.lex_state = 454}, + [15090] = {.lex_state = 454}, + [15091] = {.lex_state = 127}, + [15092] = {.lex_state = 454}, + [15093] = {.lex_state = 454}, + [15094] = {.lex_state = 454}, + [15095] = {.lex_state = 454}, + [15096] = {.lex_state = 454}, + [15097] = {.lex_state = 454}, + [15098] = {.lex_state = 127}, + [15099] = {.lex_state = 127}, + [15100] = {.lex_state = 127}, + [15101] = {.lex_state = 454}, + [15102] = {.lex_state = 127}, + [15103] = {.lex_state = 454}, + [15104] = {.lex_state = 454}, + [15105] = {.lex_state = 454}, + [15106] = {.lex_state = 127}, + [15107] = {.lex_state = 454}, + [15108] = {.lex_state = 454}, + [15109] = {.lex_state = 127}, + [15110] = {.lex_state = 454}, + [15111] = {.lex_state = 454}, + [15112] = {.lex_state = 454}, + [15113] = {.lex_state = 454}, + [15114] = {.lex_state = 454}, + [15115] = {.lex_state = 454}, + [15116] = {.lex_state = 98}, + [15117] = {.lex_state = 127}, + [15118] = {.lex_state = 127}, + [15119] = {.lex_state = 454}, + [15120] = {.lex_state = 454}, + [15121] = {.lex_state = 454}, + [15122] = {.lex_state = 127}, + [15123] = {.lex_state = 127}, + [15124] = {.lex_state = 454}, + [15125] = {.lex_state = 454}, + [15126] = {.lex_state = 454}, + [15127] = {.lex_state = 454}, + [15128] = {.lex_state = 454}, + [15129] = {.lex_state = 454}, + [15130] = {.lex_state = 454}, + [15131] = {.lex_state = 454}, + [15132] = {.lex_state = 454}, + [15133] = {.lex_state = 454}, + [15134] = {.lex_state = 454}, + [15135] = {.lex_state = 454}, + [15136] = {.lex_state = 127}, + [15137] = {.lex_state = 454}, + [15138] = {.lex_state = 127}, + [15139] = {.lex_state = 127}, + [15140] = {.lex_state = 454}, + [15141] = {.lex_state = 454}, + [15142] = {.lex_state = 454}, + [15143] = {.lex_state = 127}, + [15144] = {.lex_state = 127}, + [15145] = {.lex_state = 454}, + [15146] = {.lex_state = 127}, + [15147] = {.lex_state = 127}, + [15148] = {.lex_state = 454}, + [15149] = {.lex_state = 454}, + [15150] = {.lex_state = 454}, + [15151] = {.lex_state = 454}, + [15152] = {.lex_state = 454}, + [15153] = {.lex_state = 454}, + [15154] = {.lex_state = 454}, + [15155] = {.lex_state = 454}, + [15156] = {.lex_state = 127}, + [15157] = {.lex_state = 127}, + [15158] = {.lex_state = 454}, + [15159] = {.lex_state = 454}, + [15160] = {.lex_state = 454}, + [15161] = {.lex_state = 127}, + [15162] = {.lex_state = 454}, + [15163] = {.lex_state = 454}, + [15164] = {.lex_state = 127}, + [15165] = {.lex_state = 454}, + [15166] = {.lex_state = 454}, + [15167] = {.lex_state = 454}, + [15168] = {.lex_state = 454}, + [15169] = {.lex_state = 454}, + [15170] = {.lex_state = 454}, + [15171] = {.lex_state = 454}, + [15172] = {.lex_state = 454}, + [15173] = {.lex_state = 454}, + [15174] = {.lex_state = 454}, + [15175] = {.lex_state = 454}, + [15176] = {.lex_state = 454}, + [15177] = {.lex_state = 454}, + [15178] = {.lex_state = 454}, + [15179] = {.lex_state = 454}, + [15180] = {.lex_state = 454}, + [15181] = {.lex_state = 454}, + [15182] = {.lex_state = 454}, + [15183] = {.lex_state = 454}, + [15184] = {.lex_state = 454}, + [15185] = {.lex_state = 454}, + [15186] = {.lex_state = 454}, + [15187] = {.lex_state = 454}, + [15188] = {.lex_state = 454}, + [15189] = {.lex_state = 454}, + [15190] = {.lex_state = 454}, + [15191] = {.lex_state = 127}, + [15192] = {.lex_state = 454}, + [15193] = {.lex_state = 454}, + [15194] = {.lex_state = 454}, + [15195] = {.lex_state = 127}, + [15196] = {.lex_state = 454}, + [15197] = {.lex_state = 454}, + [15198] = {.lex_state = 454}, + [15199] = {.lex_state = 454}, + [15200] = {.lex_state = 454}, + [15201] = {.lex_state = 454}, + [15202] = {.lex_state = 454}, + [15203] = {.lex_state = 454}, + [15204] = {.lex_state = 454}, + [15205] = {.lex_state = 454}, + [15206] = {.lex_state = 454}, + [15207] = {.lex_state = 454}, + [15208] = {.lex_state = 454}, + [15209] = {.lex_state = 454}, + [15210] = {.lex_state = 454}, + [15211] = {.lex_state = 127}, + [15212] = {.lex_state = 454}, + [15213] = {.lex_state = 127}, + [15214] = {.lex_state = 454}, + [15215] = {.lex_state = 454}, + [15216] = {.lex_state = 454}, + [15217] = {.lex_state = 454}, + [15218] = {.lex_state = 454}, + [15219] = {.lex_state = 454}, + [15220] = {.lex_state = 454}, + [15221] = {.lex_state = 454}, + [15222] = {.lex_state = 454}, + [15223] = {.lex_state = 454}, + [15224] = {.lex_state = 454}, + [15225] = {.lex_state = 454}, + [15226] = {.lex_state = 454}, + [15227] = {.lex_state = 454}, + [15228] = {.lex_state = 454}, + [15229] = {.lex_state = 127}, + [15230] = {.lex_state = 454}, + [15231] = {.lex_state = 454}, + [15232] = {.lex_state = 454}, + [15233] = {.lex_state = 454}, + [15234] = {.lex_state = 454}, + [15235] = {.lex_state = 454}, +}; + +static const TSSymbol ts_reserved_words[3][MAX_RESERVED_WORD_SET_SIZE] = { + [1] = { + sym__dim_keyword, + sym__redim_keyword, + }, + [2] = { + sym__redim_keyword, + }, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [STATE(0)] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym_identifier] = ACTIONS(1), + [sym_newline] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(1), + [aux_sym_frm_begin_block_token1] = ACTIONS(1), + [aux_sym_frm_begin_block_token2] = ACTIONS(1), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(1), + [aux_sym_frm_begin_property_block_token2] = ACTIONS(1), + [aux_sym_frm_property_statement_token1] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [sym_frm_quoted_property_text] = ACTIONS(1), + [aux_sym_attribute_statement_token1] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [aux_sym__attribute_identifier_token1] = ACTIONS(1), + [aux_sym_option_statement_token1] = ACTIONS(1), + [aux_sym_option_statement_token2] = ACTIONS(1), + [aux_sym_option_statement_token3] = ACTIONS(1), + [aux_sym_option_statement_token5] = ACTIONS(1), + [aux_sym_option_statement_token6] = ACTIONS(1), + [aux_sym_option_statement_token7] = ACTIONS(1), + [aux_sym_option_statement_token8] = ACTIONS(1), + [aux_sym_option_statement_token9] = ACTIONS(1), + [aux_sym_implements_statement_token1] = ACTIONS(1), + [aux_sym_type_declaration_token1] = ACTIONS(1), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1), + [aux_sym_type_preprocessor_if_token2] = ACTIONS(1), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(1), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(1), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(1), + [aux_sym_enum_declaration_token1] = ACTIONS(1), + [aux_sym_declare_sub_statement_token1] = ACTIONS(1), + [aux_sym_declare_sub_statement_token2] = ACTIONS(1), + [aux_sym_declare_sub_statement_token3] = ACTIONS(1), + [aux_sym_declare_sub_statement_token4] = ACTIONS(1), + [aux_sym_declare_function_statement_token1] = ACTIONS(1), + [aux_sym_preprocessor_const_token1] = ACTIONS(1), + [aux_sym__property_get_header_token1] = ACTIONS(1), + [aux_sym_event_declaration_token1] = ACTIONS(1), + [sym_static_modifier] = ACTIONS(1), + [sym__dim_keyword] = ACTIONS(1), + [sym__redim_keyword] = ACTIONS(1), + [sym_with_events_modifier] = ACTIONS(1), + [sym_ptrsafe_modifier] = ACTIONS(1), + [aux_sym_byval_modifier_token1] = ACTIONS(1), + [sym_byref_modifier] = ACTIONS(1), + [sym_optional_modifier] = ACTIONS(1), + [sym_paramarray_modifier] = ACTIONS(1), + [aux_sym_get_accessor_token1] = ACTIONS(1), + [sym_let_accessor] = ACTIONS(1), + [aux_sym_set_accessor_token1] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [aux_sym_const_declaration_token1] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [aux_sym_as_type_clause_token1] = ACTIONS(1), + [aux_sym_as_type_clause_token2] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [aux_sym_array_bound_token1] = ACTIONS(1), + [aux_sym_type_expression_token1] = ACTIONS(1), + [aux_sym_type_expression_token2] = ACTIONS(1), + [aux_sym_type_expression_token3] = ACTIONS(1), + [aux_sym_type_expression_token4] = ACTIONS(1), + [aux_sym_type_expression_token5] = ACTIONS(1), + [aux_sym_type_expression_token6] = ACTIONS(1), + [aux_sym_type_expression_token7] = ACTIONS(1), + [aux_sym_type_expression_token8] = ACTIONS(1), + [aux_sym_type_expression_token9] = ACTIONS(1), + [aux_sym_type_expression_token10] = ACTIONS(1), + [aux_sym_type_expression_token11] = ACTIONS(1), + [aux_sym_type_expression_token12] = ACTIONS(1), + [aux_sym_type_expression_token13] = ACTIONS(1), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1), + [aux_sym_visibility_token1] = ACTIONS(1), + [aux_sym_visibility_token2] = ACTIONS(1), + [aux_sym_elseif_fragment_token1] = ACTIONS(1), + [aux_sym_else_fragment_token1] = ACTIONS(1), + [aux_sym_select_statement_token1] = ACTIONS(1), + [aux_sym_select_statement_token2] = ACTIONS(1), + [aux_sym_case_expression_token1] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_LT_GT] = ACTIONS(1), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1), + [aux_sym__for_header_token1] = ACTIONS(1), + [aux_sym__for_header_token2] = ACTIONS(1), + [aux_sym__for_each_header_token1] = ACTIONS(1), + [aux_sym__for_each_header_token2] = ACTIONS(1), + [aux_sym_do_statement_token1] = ACTIONS(1), + [aux_sym_do_statement_token2] = ACTIONS(1), + [aux_sym_do_condition_token1] = ACTIONS(1), + [aux_sym_do_condition_token2] = ACTIONS(1), + [aux_sym_while_statement_token1] = ACTIONS(1), + [aux_sym_with_statement_token1] = ACTIONS(1), + [aux_sym_exit_statement_token1] = ACTIONS(1), + [sym_end_statement] = ACTIONS(1), + [aux_sym_on_goto_statement_token1] = ACTIONS(1), + [aux_sym_on_goto_statement_token2] = ACTIONS(1), + [aux_sym_on_goto_statement_token3] = ACTIONS(1), + [aux_sym_on_error_statement_token1] = ACTIONS(1), + [aux_sym_on_error_statement_token2] = ACTIONS(1), + [aux_sym_redim_statement_token1] = ACTIONS(1), + [sym__ambiguous_redim_statement] = ACTIONS(1), + [aux_sym_erase_statement_token1] = ACTIONS(1), + [aux_sym_open_statement_token1] = ACTIONS(1), + [aux_sym_open_statement_token2] = ACTIONS(1), + [aux_sym_open_statement_token3] = ACTIONS(1), + [aux_sym_file_mode_token1] = ACTIONS(1), + [aux_sym_file_mode_token3] = ACTIONS(1), + [aux_sym_file_mode_token4] = ACTIONS(1), + [aux_sym_file_access_token1] = ACTIONS(1), + [aux_sym_file_access_token2] = ACTIONS(1), + [aux_sym_file_lock_token1] = ACTIONS(1), + [aux_sym_file_lock_token2] = ACTIONS(1), + [aux_sym_print_statement_token1] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_BSLASH] = ACTIONS(1), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(1), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(1), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(1), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(1), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [aux_sym_close_statement_token1] = ACTIONS(1), + [aux_sym_put_statement_token1] = ACTIONS(1), + [aux_sym_unlock_statement_token1] = ACTIONS(1), + [aux_sym_seek_statement_token1] = ACTIONS(1), + [sym_reset_statement] = ACTIONS(1), + [aux_sym_raise_event_statement_token1] = ACTIONS(1), + [sym_stop_statement] = ACTIONS(1), + [sym_beep_statement] = ACTIONS(1), + [aux_sym_unload_statement_token1] = ACTIONS(1), + [aux_sym_def_type_statement_token1] = ACTIONS(1), + [aux_sym_def_type_statement_token2] = ACTIONS(1), + [aux_sym_def_type_statement_token3] = ACTIONS(1), + [aux_sym_def_type_statement_token4] = ACTIONS(1), + [aux_sym_def_type_statement_token5] = ACTIONS(1), + [aux_sym_def_type_statement_token6] = ACTIONS(1), + [aux_sym_def_type_statement_token7] = ACTIONS(1), + [aux_sym_def_type_statement_token8] = ACTIONS(1), + [aux_sym_def_type_statement_token9] = ACTIONS(1), + [aux_sym_def_type_statement_token10] = ACTIONS(1), + [aux_sym_def_type_statement_token11] = ACTIONS(1), + [aux_sym_def_type_statement_token12] = ACTIONS(1), + [aux_sym_def_type_statement_token13] = ACTIONS(1), + [aux_sym_def_type_statement_token14] = ACTIONS(1), + [aux_sym_call_statement_token1] = ACTIONS(1), + [anon_sym_COLON_EQ] = ACTIONS(1), + [aux_sym_comparison_operator_token1] = ACTIONS(1), + [aux_sym_addressof_expression_token1] = ACTIONS(1), + [aux_sym_type_of_expression_token1] = ACTIONS(1), + [aux_sym_unary_expression_token1] = ACTIONS(1), + [sym_string_literal] = ACTIONS(1), + [sym_number_literal] = ACTIONS(1), + [aux_sym_boolean_literal_token1] = ACTIONS(1), + [aux_sym_boolean_literal_token2] = ACTIONS(1), + [sym_nothing_literal] = ACTIONS(1), + [sym_null_literal] = ACTIONS(1), + [sym_empty_literal] = ACTIONS(1), + [sym_date_literal] = ACTIONS(1), + [sym_guid_literal] = ACTIONS(1), + [anon_sym_POUND] = ACTIONS(1), + }, + [STATE(1)] = { + [sym_source_file] = STATE(14368), + [sym__top_level_item] = STATE(5744), + [sym_frm_version_statement] = STATE(5744), + [sym_frm_begin_block] = STATE(5744), + [sym_frm_begin_property_block] = STATE(5744), + [sym_frm_property_statement] = STATE(5744), + [sym_attribute_statement] = STATE(5744), + [sym_option_statement] = STATE(5744), + [sym_implements_statement] = STATE(5744), + [sym_type_declaration] = STATE(5744), + [sym_enum_declaration] = STATE(5744), + [sym_declare_sub_statement] = STATE(5744), + [sym_declare_function_statement] = STATE(5744), + [sym_preprocessor_const] = STATE(5744), + [sym_preprocessor_if] = STATE(5744), + [sym_sub_declaration] = STATE(5744), + [sym_function_declaration] = STATE(5744), + [sym_property_get_declaration] = STATE(5744), + [sym_property_let_declaration] = STATE(5744), + [sym_property_set_declaration] = STATE(5744), + [sym__sub_header] = STATE(12617), + [sym__function_header] = STATE(13075), + [sym__property_get_header] = STATE(13077), + [sym__property_let_header] = STATE(12766), + [sym__property_set_header] = STATE(12889), + [sym_conditional_sub_declaration] = STATE(5744), + [sym_conditional_function_declaration] = STATE(5744), + [sym_conditional_property_declaration] = STATE(5744), + [sym__conditional_sub_headers] = STATE(13971), + [sym__conditional_function_headers] = STATE(14070), + [sym__conditional_property_headers] = STATE(14592), + [sym_event_declaration] = STATE(5744), + [sym__procedure_modifier] = STATE(13006), + [sym_variable_declaration] = STATE(5744), + [sym_const_declaration] = STATE(5744), + [sym_visibility] = STATE(10985), + [sym_line_number_top_level_item] = STATE(5744), + [sym_def_type_statement] = STATE(5744), + [sym__callable_expression] = STATE(13480), + [sym_call_expression] = STATE(12245), + [sym_member_expression] = STATE(12224), + [sym_qualified_member_expression] = STATE(10049), + [sym_implicit_member_expression] = STATE(10049), + [aux_sym_source_file_repeat1] = STATE(5744), + [ts_builtin_sym_end] = ACTIONS(7), + [sym_identifier] = ACTIONS(9), + [sym_newline] = ACTIONS(11), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(13), + [aux_sym_frm_begin_block_token1] = ACTIONS(15), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(17), + [aux_sym_frm_property_statement_token1] = ACTIONS(19), + [aux_sym_attribute_statement_token1] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [aux_sym_option_statement_token1] = ACTIONS(27), + [aux_sym_option_statement_token3] = ACTIONS(29), + [aux_sym_implements_statement_token1] = ACTIONS(31), + [aux_sym_type_declaration_token1] = ACTIONS(33), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(35), + [aux_sym_enum_declaration_token1] = ACTIONS(37), + [aux_sym_declare_sub_statement_token1] = ACTIONS(39), + [aux_sym_declare_sub_statement_token2] = ACTIONS(41), + [aux_sym_declare_function_statement_token1] = ACTIONS(43), + [aux_sym_preprocessor_const_token1] = ACTIONS(45), + [aux_sym__property_get_header_token1] = ACTIONS(47), + [aux_sym_event_declaration_token1] = ACTIONS(49), + [sym_static_modifier] = ACTIONS(51), + [sym__dim_keyword] = ACTIONS(53), + [aux_sym_const_declaration_token1] = ACTIONS(55), + [aux_sym_visibility_token1] = ACTIONS(29), + [aux_sym_visibility_token2] = ACTIONS(29), + [aux_sym_def_type_statement_token1] = ACTIONS(57), + [aux_sym_def_type_statement_token2] = ACTIONS(57), + [aux_sym_def_type_statement_token3] = ACTIONS(57), + [aux_sym_def_type_statement_token4] = ACTIONS(57), + [aux_sym_def_type_statement_token5] = ACTIONS(57), + [aux_sym_def_type_statement_token6] = ACTIONS(57), + [aux_sym_def_type_statement_token7] = ACTIONS(57), + [aux_sym_def_type_statement_token8] = ACTIONS(57), + [aux_sym_def_type_statement_token9] = ACTIONS(57), + [aux_sym_def_type_statement_token10] = ACTIONS(57), + [aux_sym_def_type_statement_token11] = ACTIONS(57), + [aux_sym_def_type_statement_token12] = ACTIONS(57), + [aux_sym_def_type_statement_token13] = ACTIONS(57), + [aux_sym_def_type_statement_token14] = ACTIONS(57), + [sym_number_literal] = ACTIONS(59), + }, + [STATE(2)] = { + [sym_type_declaration] = STATE(14), + [sym_enum_declaration] = STATE(14), + [sym_declare_sub_statement] = STATE(14), + [sym_declare_function_statement] = STATE(14), + [sym_preprocessor_const] = STATE(14), + [sym_preprocessor_if] = STATE(14), + [sym_preprocessor_block] = STATE(11794), + [sym__preprocessor_item] = STATE(14), + [sym_preprocessor_elseif] = STATE(11782), + [sym_preprocessor_else] = STATE(14910), + [sym_sub_declaration] = STATE(14), + [sym_function_declaration] = STATE(14), + [sym_property_get_declaration] = STATE(14), + [sym_property_let_declaration] = STATE(14), + [sym_property_set_declaration] = STATE(14), + [sym__sub_header] = STATE(12982), + [sym__function_header] = STATE(12989), + [sym__property_header] = STATE(14947), + [sym__property_get_header] = STATE(12994), + [sym__property_let_header] = STATE(12998), + [sym__property_set_header] = STATE(12999), + [sym_conditional_sub_declaration] = STATE(14), + [sym_conditional_function_declaration] = STATE(14), + [sym_conditional_property_declaration] = STATE(14), + [sym__conditional_sub_headers] = STATE(14799), + [sym__conditional_function_headers] = STATE(14800), + [sym__conditional_property_headers] = STATE(14801), + [sym_event_declaration] = STATE(14), + [sym__procedure_modifier] = STATE(13006), + [sym__statement] = STATE(14), + [sym_variable_declaration] = STATE(14), + [sym_const_declaration] = STATE(14), + [sym_visibility] = STATE(10999), + [sym_if_statement] = STATE(14), + [sym_elseif_fragment] = STATE(14), + [sym_else_fragment] = STATE(14), + [sym_end_if_fragment] = STATE(14), + [sym_single_line_if_statement] = STATE(14), + [sym_select_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym__inline_for_statement] = STATE(3867), + [sym_for_each_statement] = STATE(14), + [sym__inline_for_each_statement] = STATE(3868), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(14), + [sym__inline_do_statement] = STATE(3869), + [sym_while_statement] = STATE(14), + [sym_with_statement] = STATE(14), + [sym__inline_with_statement] = STATE(3870), + [sym_exit_statement] = STATE(14), + [sym_on_goto_statement] = STATE(14), + [sym_on_error_statement] = STATE(14), + [sym_resume_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_label_statement] = STATE(14), + [sym_line_number_prefix] = STATE(11499), + [sym_line_number_statement] = STATE(14), + [sym_redim_statement] = STATE(14), + [sym_erase_statement] = STATE(14), + [sym_open_statement] = STATE(14), + [sym_input_statement] = STATE(14), + [sym_line_input_statement] = STATE(14), + [sym_print_statement] = STATE(14), + [sym_write_statement] = STATE(14), + [sym_debug_print_statement] = STATE(14), + [sym_close_statement] = STATE(14), + [sym_get_statement] = STATE(14), + [sym_put_statement] = STATE(14), + [sym_lock_statement] = STATE(14), + [sym_unlock_statement] = STATE(14), + [sym_seek_statement] = STATE(14), + [sym_raise_event_statement] = STATE(14), + [sym_name_statement] = STATE(14), + [sym_load_statement] = STATE(14), + [sym_unload_statement] = STATE(14), + [sym_def_type_statement] = STATE(14), + [sym_set_statement] = STATE(14), + [sym_assignment_statement] = STATE(14), + [sym_call_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [aux_sym_preprocessor_if_repeat1] = STATE(11782), + [aux_sym_preprocessor_block_repeat1] = STATE(14), + [sym_identifier] = ACTIONS(61), + [sym_newline] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(63), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(65), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(29), + [aux_sym_type_declaration_token1] = ACTIONS(75), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(77), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(79), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(81), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(83), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(85), + [aux_sym_enum_declaration_token1] = ACTIONS(87), + [aux_sym_declare_sub_statement_token1] = ACTIONS(89), + [aux_sym_declare_sub_statement_token2] = ACTIONS(41), + [aux_sym_declare_function_statement_token1] = ACTIONS(43), + [aux_sym_preprocessor_const_token1] = ACTIONS(91), + [aux_sym__property_get_header_token1] = ACTIONS(47), + [aux_sym_event_declaration_token1] = ACTIONS(93), + [sym_static_modifier] = ACTIONS(95), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(29), + [aux_sym_visibility_token2] = ACTIONS(29), + [aux_sym_elseif_fragment_token1] = ACTIONS(113), + [aux_sym_else_fragment_token1] = ACTIONS(115), + [aux_sym_select_statement_token1] = ACTIONS(117), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(63), + [aux_sym_on_goto_statement_token1] = ACTIONS(129), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(163), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(163), + [sym_beep_statement] = ACTIONS(163), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_def_type_statement_token1] = ACTIONS(169), + [aux_sym_def_type_statement_token2] = ACTIONS(169), + [aux_sym_def_type_statement_token3] = ACTIONS(169), + [aux_sym_def_type_statement_token4] = ACTIONS(169), + [aux_sym_def_type_statement_token5] = ACTIONS(169), + [aux_sym_def_type_statement_token6] = ACTIONS(169), + [aux_sym_def_type_statement_token7] = ACTIONS(169), + [aux_sym_def_type_statement_token8] = ACTIONS(169), + [aux_sym_def_type_statement_token9] = ACTIONS(169), + [aux_sym_def_type_statement_token10] = ACTIONS(169), + [aux_sym_def_type_statement_token11] = ACTIONS(169), + [aux_sym_def_type_statement_token12] = ACTIONS(169), + [aux_sym_def_type_statement_token13] = ACTIONS(169), + [aux_sym_def_type_statement_token14] = ACTIONS(169), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(183), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(3)] = { + [sym_type_declaration] = STATE(14), + [sym_enum_declaration] = STATE(14), + [sym_declare_sub_statement] = STATE(14), + [sym_declare_function_statement] = STATE(14), + [sym_preprocessor_const] = STATE(14), + [sym_preprocessor_if] = STATE(14), + [sym_preprocessor_block] = STATE(11990), + [sym__preprocessor_item] = STATE(14), + [sym_preprocessor_elseif] = STATE(11991), + [sym_preprocessor_else] = STATE(14080), + [sym_sub_declaration] = STATE(14), + [sym_function_declaration] = STATE(14), + [sym_property_get_declaration] = STATE(14), + [sym_property_let_declaration] = STATE(14), + [sym_property_set_declaration] = STATE(14), + [sym__sub_header] = STATE(12982), + [sym__function_header] = STATE(12989), + [sym__property_header] = STATE(14947), + [sym__property_get_header] = STATE(12994), + [sym__property_let_header] = STATE(12998), + [sym__property_set_header] = STATE(12999), + [sym_conditional_sub_declaration] = STATE(14), + [sym_conditional_function_declaration] = STATE(14), + [sym_conditional_property_declaration] = STATE(14), + [sym__conditional_sub_headers] = STATE(14799), + [sym__conditional_function_headers] = STATE(14800), + [sym__conditional_property_headers] = STATE(14801), + [sym_event_declaration] = STATE(14), + [sym__procedure_modifier] = STATE(13006), + [sym__statement] = STATE(14), + [sym_variable_declaration] = STATE(14), + [sym_const_declaration] = STATE(14), + [sym_visibility] = STATE(10999), + [sym_if_statement] = STATE(14), + [sym_elseif_fragment] = STATE(14), + [sym_else_fragment] = STATE(14), + [sym_end_if_fragment] = STATE(14), + [sym_single_line_if_statement] = STATE(14), + [sym_select_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym__inline_for_statement] = STATE(3867), + [sym_for_each_statement] = STATE(14), + [sym__inline_for_each_statement] = STATE(3868), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(14), + [sym__inline_do_statement] = STATE(3869), + [sym_while_statement] = STATE(14), + [sym_with_statement] = STATE(14), + [sym__inline_with_statement] = STATE(3870), + [sym_exit_statement] = STATE(14), + [sym_on_goto_statement] = STATE(14), + [sym_on_error_statement] = STATE(14), + [sym_resume_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_label_statement] = STATE(14), + [sym_line_number_prefix] = STATE(11499), + [sym_line_number_statement] = STATE(14), + [sym_redim_statement] = STATE(14), + [sym_erase_statement] = STATE(14), + [sym_open_statement] = STATE(14), + [sym_input_statement] = STATE(14), + [sym_line_input_statement] = STATE(14), + [sym_print_statement] = STATE(14), + [sym_write_statement] = STATE(14), + [sym_debug_print_statement] = STATE(14), + [sym_close_statement] = STATE(14), + [sym_get_statement] = STATE(14), + [sym_put_statement] = STATE(14), + [sym_lock_statement] = STATE(14), + [sym_unlock_statement] = STATE(14), + [sym_seek_statement] = STATE(14), + [sym_raise_event_statement] = STATE(14), + [sym_name_statement] = STATE(14), + [sym_load_statement] = STATE(14), + [sym_unload_statement] = STATE(14), + [sym_def_type_statement] = STATE(14), + [sym_set_statement] = STATE(14), + [sym_assignment_statement] = STATE(14), + [sym_call_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [aux_sym_preprocessor_if_repeat1] = STATE(11991), + [aux_sym_preprocessor_block_repeat1] = STATE(14), + [sym_identifier] = ACTIONS(61), + [sym_newline] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(63), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(65), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(29), + [aux_sym_type_declaration_token1] = ACTIONS(75), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(77), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(191), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(81), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(83), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(85), + [aux_sym_enum_declaration_token1] = ACTIONS(87), + [aux_sym_declare_sub_statement_token1] = ACTIONS(89), + [aux_sym_declare_sub_statement_token2] = ACTIONS(41), + [aux_sym_declare_function_statement_token1] = ACTIONS(43), + [aux_sym_preprocessor_const_token1] = ACTIONS(91), + [aux_sym__property_get_header_token1] = ACTIONS(47), + [aux_sym_event_declaration_token1] = ACTIONS(93), + [sym_static_modifier] = ACTIONS(95), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(29), + [aux_sym_visibility_token2] = ACTIONS(29), + [aux_sym_elseif_fragment_token1] = ACTIONS(113), + [aux_sym_else_fragment_token1] = ACTIONS(115), + [aux_sym_select_statement_token1] = ACTIONS(117), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(63), + [aux_sym_on_goto_statement_token1] = ACTIONS(129), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(163), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(163), + [sym_beep_statement] = ACTIONS(163), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_def_type_statement_token1] = ACTIONS(169), + [aux_sym_def_type_statement_token2] = ACTIONS(169), + [aux_sym_def_type_statement_token3] = ACTIONS(169), + [aux_sym_def_type_statement_token4] = ACTIONS(169), + [aux_sym_def_type_statement_token5] = ACTIONS(169), + [aux_sym_def_type_statement_token6] = ACTIONS(169), + [aux_sym_def_type_statement_token7] = ACTIONS(169), + [aux_sym_def_type_statement_token8] = ACTIONS(169), + [aux_sym_def_type_statement_token9] = ACTIONS(169), + [aux_sym_def_type_statement_token10] = ACTIONS(169), + [aux_sym_def_type_statement_token11] = ACTIONS(169), + [aux_sym_def_type_statement_token12] = ACTIONS(169), + [aux_sym_def_type_statement_token13] = ACTIONS(169), + [aux_sym_def_type_statement_token14] = ACTIONS(169), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(183), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(4)] = { + [sym_type_declaration] = STATE(14), + [sym_enum_declaration] = STATE(14), + [sym_declare_sub_statement] = STATE(14), + [sym_declare_function_statement] = STATE(14), + [sym_preprocessor_const] = STATE(14), + [sym_preprocessor_if] = STATE(14), + [sym_preprocessor_block] = STATE(11758), + [sym__preprocessor_item] = STATE(14), + [sym_preprocessor_elseif] = STATE(11759), + [sym_preprocessor_else] = STATE(14447), + [sym_sub_declaration] = STATE(14), + [sym_function_declaration] = STATE(14), + [sym_property_get_declaration] = STATE(14), + [sym_property_let_declaration] = STATE(14), + [sym_property_set_declaration] = STATE(14), + [sym__sub_header] = STATE(12982), + [sym__function_header] = STATE(12989), + [sym__property_header] = STATE(14947), + [sym__property_get_header] = STATE(12994), + [sym__property_let_header] = STATE(12998), + [sym__property_set_header] = STATE(12999), + [sym_conditional_sub_declaration] = STATE(14), + [sym_conditional_function_declaration] = STATE(14), + [sym_conditional_property_declaration] = STATE(14), + [sym__conditional_sub_headers] = STATE(14799), + [sym__conditional_function_headers] = STATE(14800), + [sym__conditional_property_headers] = STATE(14801), + [sym_event_declaration] = STATE(14), + [sym__procedure_modifier] = STATE(13006), + [sym__statement] = STATE(14), + [sym_variable_declaration] = STATE(14), + [sym_const_declaration] = STATE(14), + [sym_visibility] = STATE(10999), + [sym_if_statement] = STATE(14), + [sym_elseif_fragment] = STATE(14), + [sym_else_fragment] = STATE(14), + [sym_end_if_fragment] = STATE(14), + [sym_single_line_if_statement] = STATE(14), + [sym_select_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym__inline_for_statement] = STATE(3867), + [sym_for_each_statement] = STATE(14), + [sym__inline_for_each_statement] = STATE(3868), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(14), + [sym__inline_do_statement] = STATE(3869), + [sym_while_statement] = STATE(14), + [sym_with_statement] = STATE(14), + [sym__inline_with_statement] = STATE(3870), + [sym_exit_statement] = STATE(14), + [sym_on_goto_statement] = STATE(14), + [sym_on_error_statement] = STATE(14), + [sym_resume_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_label_statement] = STATE(14), + [sym_line_number_prefix] = STATE(11499), + [sym_line_number_statement] = STATE(14), + [sym_redim_statement] = STATE(14), + [sym_erase_statement] = STATE(14), + [sym_open_statement] = STATE(14), + [sym_input_statement] = STATE(14), + [sym_line_input_statement] = STATE(14), + [sym_print_statement] = STATE(14), + [sym_write_statement] = STATE(14), + [sym_debug_print_statement] = STATE(14), + [sym_close_statement] = STATE(14), + [sym_get_statement] = STATE(14), + [sym_put_statement] = STATE(14), + [sym_lock_statement] = STATE(14), + [sym_unlock_statement] = STATE(14), + [sym_seek_statement] = STATE(14), + [sym_raise_event_statement] = STATE(14), + [sym_name_statement] = STATE(14), + [sym_load_statement] = STATE(14), + [sym_unload_statement] = STATE(14), + [sym_def_type_statement] = STATE(14), + [sym_set_statement] = STATE(14), + [sym_assignment_statement] = STATE(14), + [sym_call_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [aux_sym_preprocessor_if_repeat1] = STATE(11759), + [aux_sym_preprocessor_block_repeat1] = STATE(14), + [sym_identifier] = ACTIONS(61), + [sym_newline] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(63), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(65), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(29), + [aux_sym_type_declaration_token1] = ACTIONS(75), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(77), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(193), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(81), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(83), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(85), + [aux_sym_enum_declaration_token1] = ACTIONS(87), + [aux_sym_declare_sub_statement_token1] = ACTIONS(89), + [aux_sym_declare_sub_statement_token2] = ACTIONS(41), + [aux_sym_declare_function_statement_token1] = ACTIONS(43), + [aux_sym_preprocessor_const_token1] = ACTIONS(91), + [aux_sym__property_get_header_token1] = ACTIONS(47), + [aux_sym_event_declaration_token1] = ACTIONS(93), + [sym_static_modifier] = ACTIONS(95), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(29), + [aux_sym_visibility_token2] = ACTIONS(29), + [aux_sym_elseif_fragment_token1] = ACTIONS(113), + [aux_sym_else_fragment_token1] = ACTIONS(115), + [aux_sym_select_statement_token1] = ACTIONS(117), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(63), + [aux_sym_on_goto_statement_token1] = ACTIONS(129), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(163), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(163), + [sym_beep_statement] = ACTIONS(163), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_def_type_statement_token1] = ACTIONS(169), + [aux_sym_def_type_statement_token2] = ACTIONS(169), + [aux_sym_def_type_statement_token3] = ACTIONS(169), + [aux_sym_def_type_statement_token4] = ACTIONS(169), + [aux_sym_def_type_statement_token5] = ACTIONS(169), + [aux_sym_def_type_statement_token6] = ACTIONS(169), + [aux_sym_def_type_statement_token7] = ACTIONS(169), + [aux_sym_def_type_statement_token8] = ACTIONS(169), + [aux_sym_def_type_statement_token9] = ACTIONS(169), + [aux_sym_def_type_statement_token10] = ACTIONS(169), + [aux_sym_def_type_statement_token11] = ACTIONS(169), + [aux_sym_def_type_statement_token12] = ACTIONS(169), + [aux_sym_def_type_statement_token13] = ACTIONS(169), + [aux_sym_def_type_statement_token14] = ACTIONS(169), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(183), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(5)] = { + [sym_type_declaration] = STATE(14), + [sym_enum_declaration] = STATE(14), + [sym_declare_sub_statement] = STATE(14), + [sym_declare_function_statement] = STATE(14), + [sym_preprocessor_const] = STATE(14), + [sym_preprocessor_if] = STATE(14), + [sym_preprocessor_block] = STATE(12000), + [sym__preprocessor_item] = STATE(14), + [sym_preprocessor_elseif] = STATE(12004), + [sym_preprocessor_else] = STATE(15196), + [sym_sub_declaration] = STATE(14), + [sym_function_declaration] = STATE(14), + [sym_property_get_declaration] = STATE(14), + [sym_property_let_declaration] = STATE(14), + [sym_property_set_declaration] = STATE(14), + [sym__sub_header] = STATE(12649), + [sym__function_header] = STATE(12412), + [sym__property_get_header] = STATE(12650), + [sym__property_let_header] = STATE(12651), + [sym__property_set_header] = STATE(12652), + [sym_conditional_sub_declaration] = STATE(14), + [sym_conditional_function_declaration] = STATE(14), + [sym_conditional_property_declaration] = STATE(14), + [sym__conditional_sub_headers] = STATE(14799), + [sym__conditional_function_headers] = STATE(14800), + [sym__conditional_property_headers] = STATE(14801), + [sym_event_declaration] = STATE(14), + [sym__procedure_modifier] = STATE(13006), + [sym__statement] = STATE(14), + [sym_variable_declaration] = STATE(14), + [sym_const_declaration] = STATE(14), + [sym_visibility] = STATE(10999), + [sym_if_statement] = STATE(14), + [sym_elseif_fragment] = STATE(14), + [sym_else_fragment] = STATE(14), + [sym_end_if_fragment] = STATE(14), + [sym_single_line_if_statement] = STATE(14), + [sym_select_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym__inline_for_statement] = STATE(3867), + [sym_for_each_statement] = STATE(14), + [sym__inline_for_each_statement] = STATE(3868), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(14), + [sym__inline_do_statement] = STATE(3869), + [sym_while_statement] = STATE(14), + [sym_with_statement] = STATE(14), + [sym__inline_with_statement] = STATE(3870), + [sym_exit_statement] = STATE(14), + [sym_on_goto_statement] = STATE(14), + [sym_on_error_statement] = STATE(14), + [sym_resume_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_label_statement] = STATE(14), + [sym_line_number_prefix] = STATE(11499), + [sym_line_number_statement] = STATE(14), + [sym_redim_statement] = STATE(14), + [sym_erase_statement] = STATE(14), + [sym_open_statement] = STATE(14), + [sym_input_statement] = STATE(14), + [sym_line_input_statement] = STATE(14), + [sym_print_statement] = STATE(14), + [sym_write_statement] = STATE(14), + [sym_debug_print_statement] = STATE(14), + [sym_close_statement] = STATE(14), + [sym_get_statement] = STATE(14), + [sym_put_statement] = STATE(14), + [sym_lock_statement] = STATE(14), + [sym_unlock_statement] = STATE(14), + [sym_seek_statement] = STATE(14), + [sym_raise_event_statement] = STATE(14), + [sym_name_statement] = STATE(14), + [sym_load_statement] = STATE(14), + [sym_unload_statement] = STATE(14), + [sym_def_type_statement] = STATE(14), + [sym_set_statement] = STATE(14), + [sym_assignment_statement] = STATE(14), + [sym_call_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [aux_sym_preprocessor_if_repeat1] = STATE(12004), + [aux_sym_preprocessor_block_repeat1] = STATE(14), + [sym_identifier] = ACTIONS(61), + [sym_newline] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(63), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(65), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(29), + [aux_sym_type_declaration_token1] = ACTIONS(75), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(77), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(195), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(81), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(83), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(85), + [aux_sym_enum_declaration_token1] = ACTIONS(87), + [aux_sym_declare_sub_statement_token1] = ACTIONS(89), + [aux_sym_declare_sub_statement_token2] = ACTIONS(41), + [aux_sym_declare_function_statement_token1] = ACTIONS(43), + [aux_sym_preprocessor_const_token1] = ACTIONS(91), + [aux_sym__property_get_header_token1] = ACTIONS(47), + [aux_sym_event_declaration_token1] = ACTIONS(93), + [sym_static_modifier] = ACTIONS(95), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(29), + [aux_sym_visibility_token2] = ACTIONS(29), + [aux_sym_elseif_fragment_token1] = ACTIONS(113), + [aux_sym_else_fragment_token1] = ACTIONS(115), + [aux_sym_select_statement_token1] = ACTIONS(117), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(63), + [aux_sym_on_goto_statement_token1] = ACTIONS(129), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(163), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(163), + [sym_beep_statement] = ACTIONS(163), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_def_type_statement_token1] = ACTIONS(169), + [aux_sym_def_type_statement_token2] = ACTIONS(169), + [aux_sym_def_type_statement_token3] = ACTIONS(169), + [aux_sym_def_type_statement_token4] = ACTIONS(169), + [aux_sym_def_type_statement_token5] = ACTIONS(169), + [aux_sym_def_type_statement_token6] = ACTIONS(169), + [aux_sym_def_type_statement_token7] = ACTIONS(169), + [aux_sym_def_type_statement_token8] = ACTIONS(169), + [aux_sym_def_type_statement_token9] = ACTIONS(169), + [aux_sym_def_type_statement_token10] = ACTIONS(169), + [aux_sym_def_type_statement_token11] = ACTIONS(169), + [aux_sym_def_type_statement_token12] = ACTIONS(169), + [aux_sym_def_type_statement_token13] = ACTIONS(169), + [aux_sym_def_type_statement_token14] = ACTIONS(169), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(183), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(6)] = { + [sym_type_declaration] = STATE(14), + [sym_enum_declaration] = STATE(14), + [sym_declare_sub_statement] = STATE(14), + [sym_declare_function_statement] = STATE(14), + [sym_preprocessor_const] = STATE(14), + [sym_preprocessor_if] = STATE(14), + [sym_preprocessor_block] = STATE(11820), + [sym__preprocessor_item] = STATE(14), + [sym_preprocessor_elseif] = STATE(11821), + [sym_preprocessor_else] = STATE(14673), + [sym_sub_declaration] = STATE(14), + [sym_function_declaration] = STATE(14), + [sym_property_get_declaration] = STATE(14), + [sym_property_let_declaration] = STATE(14), + [sym_property_set_declaration] = STATE(14), + [sym__sub_header] = STATE(12649), + [sym__function_header] = STATE(12412), + [sym__property_get_header] = STATE(12650), + [sym__property_let_header] = STATE(12651), + [sym__property_set_header] = STATE(12652), + [sym_conditional_sub_declaration] = STATE(14), + [sym_conditional_function_declaration] = STATE(14), + [sym_conditional_property_declaration] = STATE(14), + [sym__conditional_sub_headers] = STATE(14799), + [sym__conditional_function_headers] = STATE(14800), + [sym__conditional_property_headers] = STATE(14801), + [sym_event_declaration] = STATE(14), + [sym__procedure_modifier] = STATE(13006), + [sym__statement] = STATE(14), + [sym_variable_declaration] = STATE(14), + [sym_const_declaration] = STATE(14), + [sym_visibility] = STATE(10999), + [sym_if_statement] = STATE(14), + [sym_elseif_fragment] = STATE(14), + [sym_else_fragment] = STATE(14), + [sym_end_if_fragment] = STATE(14), + [sym_single_line_if_statement] = STATE(14), + [sym_select_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym__inline_for_statement] = STATE(3867), + [sym_for_each_statement] = STATE(14), + [sym__inline_for_each_statement] = STATE(3868), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(14), + [sym__inline_do_statement] = STATE(3869), + [sym_while_statement] = STATE(14), + [sym_with_statement] = STATE(14), + [sym__inline_with_statement] = STATE(3870), + [sym_exit_statement] = STATE(14), + [sym_on_goto_statement] = STATE(14), + [sym_on_error_statement] = STATE(14), + [sym_resume_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_label_statement] = STATE(14), + [sym_line_number_prefix] = STATE(11499), + [sym_line_number_statement] = STATE(14), + [sym_redim_statement] = STATE(14), + [sym_erase_statement] = STATE(14), + [sym_open_statement] = STATE(14), + [sym_input_statement] = STATE(14), + [sym_line_input_statement] = STATE(14), + [sym_print_statement] = STATE(14), + [sym_write_statement] = STATE(14), + [sym_debug_print_statement] = STATE(14), + [sym_close_statement] = STATE(14), + [sym_get_statement] = STATE(14), + [sym_put_statement] = STATE(14), + [sym_lock_statement] = STATE(14), + [sym_unlock_statement] = STATE(14), + [sym_seek_statement] = STATE(14), + [sym_raise_event_statement] = STATE(14), + [sym_name_statement] = STATE(14), + [sym_load_statement] = STATE(14), + [sym_unload_statement] = STATE(14), + [sym_def_type_statement] = STATE(14), + [sym_set_statement] = STATE(14), + [sym_assignment_statement] = STATE(14), + [sym_call_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [aux_sym_preprocessor_if_repeat1] = STATE(11821), + [aux_sym_preprocessor_block_repeat1] = STATE(14), + [sym_identifier] = ACTIONS(61), + [sym_newline] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(63), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(65), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(29), + [aux_sym_type_declaration_token1] = ACTIONS(75), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(77), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(197), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(81), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(83), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(85), + [aux_sym_enum_declaration_token1] = ACTIONS(87), + [aux_sym_declare_sub_statement_token1] = ACTIONS(89), + [aux_sym_declare_sub_statement_token2] = ACTIONS(41), + [aux_sym_declare_function_statement_token1] = ACTIONS(43), + [aux_sym_preprocessor_const_token1] = ACTIONS(91), + [aux_sym__property_get_header_token1] = ACTIONS(47), + [aux_sym_event_declaration_token1] = ACTIONS(93), + [sym_static_modifier] = ACTIONS(95), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(29), + [aux_sym_visibility_token2] = ACTIONS(29), + [aux_sym_elseif_fragment_token1] = ACTIONS(113), + [aux_sym_else_fragment_token1] = ACTIONS(115), + [aux_sym_select_statement_token1] = ACTIONS(117), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(63), + [aux_sym_on_goto_statement_token1] = ACTIONS(129), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(163), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(163), + [sym_beep_statement] = ACTIONS(163), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_def_type_statement_token1] = ACTIONS(169), + [aux_sym_def_type_statement_token2] = ACTIONS(169), + [aux_sym_def_type_statement_token3] = ACTIONS(169), + [aux_sym_def_type_statement_token4] = ACTIONS(169), + [aux_sym_def_type_statement_token5] = ACTIONS(169), + [aux_sym_def_type_statement_token6] = ACTIONS(169), + [aux_sym_def_type_statement_token7] = ACTIONS(169), + [aux_sym_def_type_statement_token8] = ACTIONS(169), + [aux_sym_def_type_statement_token9] = ACTIONS(169), + [aux_sym_def_type_statement_token10] = ACTIONS(169), + [aux_sym_def_type_statement_token11] = ACTIONS(169), + [aux_sym_def_type_statement_token12] = ACTIONS(169), + [aux_sym_def_type_statement_token13] = ACTIONS(169), + [aux_sym_def_type_statement_token14] = ACTIONS(169), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(183), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(7)] = { + [sym_type_declaration] = STATE(14), + [sym_enum_declaration] = STATE(14), + [sym_declare_sub_statement] = STATE(14), + [sym_declare_function_statement] = STATE(14), + [sym_preprocessor_const] = STATE(14), + [sym_preprocessor_if] = STATE(14), + [sym_preprocessor_block] = STATE(11922), + [sym__preprocessor_item] = STATE(14), + [sym_preprocessor_elseif] = STATE(11924), + [sym_preprocessor_else] = STATE(13972), + [sym_sub_declaration] = STATE(14), + [sym_function_declaration] = STATE(14), + [sym_property_get_declaration] = STATE(14), + [sym_property_let_declaration] = STATE(14), + [sym_property_set_declaration] = STATE(14), + [sym__sub_header] = STATE(12649), + [sym__function_header] = STATE(12412), + [sym__property_get_header] = STATE(12650), + [sym__property_let_header] = STATE(12651), + [sym__property_set_header] = STATE(12652), + [sym_conditional_sub_declaration] = STATE(14), + [sym_conditional_function_declaration] = STATE(14), + [sym_conditional_property_declaration] = STATE(14), + [sym__conditional_sub_headers] = STATE(14799), + [sym__conditional_function_headers] = STATE(14800), + [sym__conditional_property_headers] = STATE(14801), + [sym_event_declaration] = STATE(14), + [sym__procedure_modifier] = STATE(13006), + [sym__statement] = STATE(14), + [sym_variable_declaration] = STATE(14), + [sym_const_declaration] = STATE(14), + [sym_visibility] = STATE(10999), + [sym_if_statement] = STATE(14), + [sym_elseif_fragment] = STATE(14), + [sym_else_fragment] = STATE(14), + [sym_end_if_fragment] = STATE(14), + [sym_single_line_if_statement] = STATE(14), + [sym_select_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym__inline_for_statement] = STATE(3867), + [sym_for_each_statement] = STATE(14), + [sym__inline_for_each_statement] = STATE(3868), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(14), + [sym__inline_do_statement] = STATE(3869), + [sym_while_statement] = STATE(14), + [sym_with_statement] = STATE(14), + [sym__inline_with_statement] = STATE(3870), + [sym_exit_statement] = STATE(14), + [sym_on_goto_statement] = STATE(14), + [sym_on_error_statement] = STATE(14), + [sym_resume_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_label_statement] = STATE(14), + [sym_line_number_prefix] = STATE(11499), + [sym_line_number_statement] = STATE(14), + [sym_redim_statement] = STATE(14), + [sym_erase_statement] = STATE(14), + [sym_open_statement] = STATE(14), + [sym_input_statement] = STATE(14), + [sym_line_input_statement] = STATE(14), + [sym_print_statement] = STATE(14), + [sym_write_statement] = STATE(14), + [sym_debug_print_statement] = STATE(14), + [sym_close_statement] = STATE(14), + [sym_get_statement] = STATE(14), + [sym_put_statement] = STATE(14), + [sym_lock_statement] = STATE(14), + [sym_unlock_statement] = STATE(14), + [sym_seek_statement] = STATE(14), + [sym_raise_event_statement] = STATE(14), + [sym_name_statement] = STATE(14), + [sym_load_statement] = STATE(14), + [sym_unload_statement] = STATE(14), + [sym_def_type_statement] = STATE(14), + [sym_set_statement] = STATE(14), + [sym_assignment_statement] = STATE(14), + [sym_call_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [aux_sym_preprocessor_if_repeat1] = STATE(11924), + [aux_sym_preprocessor_block_repeat1] = STATE(14), + [sym_identifier] = ACTIONS(61), + [sym_newline] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(63), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(65), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(29), + [aux_sym_type_declaration_token1] = ACTIONS(75), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(77), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(199), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(81), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(83), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(85), + [aux_sym_enum_declaration_token1] = ACTIONS(87), + [aux_sym_declare_sub_statement_token1] = ACTIONS(89), + [aux_sym_declare_sub_statement_token2] = ACTIONS(41), + [aux_sym_declare_function_statement_token1] = ACTIONS(43), + [aux_sym_preprocessor_const_token1] = ACTIONS(91), + [aux_sym__property_get_header_token1] = ACTIONS(47), + [aux_sym_event_declaration_token1] = ACTIONS(93), + [sym_static_modifier] = ACTIONS(95), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(29), + [aux_sym_visibility_token2] = ACTIONS(29), + [aux_sym_elseif_fragment_token1] = ACTIONS(113), + [aux_sym_else_fragment_token1] = ACTIONS(115), + [aux_sym_select_statement_token1] = ACTIONS(117), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(63), + [aux_sym_on_goto_statement_token1] = ACTIONS(129), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(163), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(163), + [sym_beep_statement] = ACTIONS(163), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_def_type_statement_token1] = ACTIONS(169), + [aux_sym_def_type_statement_token2] = ACTIONS(169), + [aux_sym_def_type_statement_token3] = ACTIONS(169), + [aux_sym_def_type_statement_token4] = ACTIONS(169), + [aux_sym_def_type_statement_token5] = ACTIONS(169), + [aux_sym_def_type_statement_token6] = ACTIONS(169), + [aux_sym_def_type_statement_token7] = ACTIONS(169), + [aux_sym_def_type_statement_token8] = ACTIONS(169), + [aux_sym_def_type_statement_token9] = ACTIONS(169), + [aux_sym_def_type_statement_token10] = ACTIONS(169), + [aux_sym_def_type_statement_token11] = ACTIONS(169), + [aux_sym_def_type_statement_token12] = ACTIONS(169), + [aux_sym_def_type_statement_token13] = ACTIONS(169), + [aux_sym_def_type_statement_token14] = ACTIONS(169), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(183), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(8)] = { + [sym_type_declaration] = STATE(14), + [sym_enum_declaration] = STATE(14), + [sym_declare_sub_statement] = STATE(14), + [sym_declare_function_statement] = STATE(14), + [sym_preprocessor_const] = STATE(14), + [sym_preprocessor_if] = STATE(14), + [sym_preprocessor_block] = STATE(11784), + [sym__preprocessor_item] = STATE(14), + [sym_preprocessor_elseif] = STATE(11785), + [sym_preprocessor_else] = STATE(14535), + [sym_sub_declaration] = STATE(14), + [sym_function_declaration] = STATE(14), + [sym_property_get_declaration] = STATE(14), + [sym_property_let_declaration] = STATE(14), + [sym_property_set_declaration] = STATE(14), + [sym__sub_header] = STATE(12649), + [sym__function_header] = STATE(12412), + [sym__property_get_header] = STATE(12650), + [sym__property_let_header] = STATE(12651), + [sym__property_set_header] = STATE(12652), + [sym_conditional_sub_declaration] = STATE(14), + [sym_conditional_function_declaration] = STATE(14), + [sym_conditional_property_declaration] = STATE(14), + [sym__conditional_sub_headers] = STATE(14799), + [sym__conditional_function_headers] = STATE(14800), + [sym__conditional_property_headers] = STATE(14801), + [sym_event_declaration] = STATE(14), + [sym__procedure_modifier] = STATE(13006), + [sym__statement] = STATE(14), + [sym_variable_declaration] = STATE(14), + [sym_const_declaration] = STATE(14), + [sym_visibility] = STATE(10999), + [sym_if_statement] = STATE(14), + [sym_elseif_fragment] = STATE(14), + [sym_else_fragment] = STATE(14), + [sym_end_if_fragment] = STATE(14), + [sym_single_line_if_statement] = STATE(14), + [sym_select_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym__inline_for_statement] = STATE(3867), + [sym_for_each_statement] = STATE(14), + [sym__inline_for_each_statement] = STATE(3868), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(14), + [sym__inline_do_statement] = STATE(3869), + [sym_while_statement] = STATE(14), + [sym_with_statement] = STATE(14), + [sym__inline_with_statement] = STATE(3870), + [sym_exit_statement] = STATE(14), + [sym_on_goto_statement] = STATE(14), + [sym_on_error_statement] = STATE(14), + [sym_resume_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_label_statement] = STATE(14), + [sym_line_number_prefix] = STATE(11499), + [sym_line_number_statement] = STATE(14), + [sym_redim_statement] = STATE(14), + [sym_erase_statement] = STATE(14), + [sym_open_statement] = STATE(14), + [sym_input_statement] = STATE(14), + [sym_line_input_statement] = STATE(14), + [sym_print_statement] = STATE(14), + [sym_write_statement] = STATE(14), + [sym_debug_print_statement] = STATE(14), + [sym_close_statement] = STATE(14), + [sym_get_statement] = STATE(14), + [sym_put_statement] = STATE(14), + [sym_lock_statement] = STATE(14), + [sym_unlock_statement] = STATE(14), + [sym_seek_statement] = STATE(14), + [sym_raise_event_statement] = STATE(14), + [sym_name_statement] = STATE(14), + [sym_load_statement] = STATE(14), + [sym_unload_statement] = STATE(14), + [sym_def_type_statement] = STATE(14), + [sym_set_statement] = STATE(14), + [sym_assignment_statement] = STATE(14), + [sym_call_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [aux_sym_preprocessor_if_repeat1] = STATE(11785), + [aux_sym_preprocessor_block_repeat1] = STATE(14), + [sym_identifier] = ACTIONS(61), + [sym_newline] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(63), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(65), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(29), + [aux_sym_type_declaration_token1] = ACTIONS(75), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(77), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(201), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(81), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(83), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(85), + [aux_sym_enum_declaration_token1] = ACTIONS(87), + [aux_sym_declare_sub_statement_token1] = ACTIONS(89), + [aux_sym_declare_sub_statement_token2] = ACTIONS(41), + [aux_sym_declare_function_statement_token1] = ACTIONS(43), + [aux_sym_preprocessor_const_token1] = ACTIONS(91), + [aux_sym__property_get_header_token1] = ACTIONS(47), + [aux_sym_event_declaration_token1] = ACTIONS(93), + [sym_static_modifier] = ACTIONS(95), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(29), + [aux_sym_visibility_token2] = ACTIONS(29), + [aux_sym_elseif_fragment_token1] = ACTIONS(113), + [aux_sym_else_fragment_token1] = ACTIONS(115), + [aux_sym_select_statement_token1] = ACTIONS(117), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(63), + [aux_sym_on_goto_statement_token1] = ACTIONS(129), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(163), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(163), + [sym_beep_statement] = ACTIONS(163), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_def_type_statement_token1] = ACTIONS(169), + [aux_sym_def_type_statement_token2] = ACTIONS(169), + [aux_sym_def_type_statement_token3] = ACTIONS(169), + [aux_sym_def_type_statement_token4] = ACTIONS(169), + [aux_sym_def_type_statement_token5] = ACTIONS(169), + [aux_sym_def_type_statement_token6] = ACTIONS(169), + [aux_sym_def_type_statement_token7] = ACTIONS(169), + [aux_sym_def_type_statement_token8] = ACTIONS(169), + [aux_sym_def_type_statement_token9] = ACTIONS(169), + [aux_sym_def_type_statement_token10] = ACTIONS(169), + [aux_sym_def_type_statement_token11] = ACTIONS(169), + [aux_sym_def_type_statement_token12] = ACTIONS(169), + [aux_sym_def_type_statement_token13] = ACTIONS(169), + [aux_sym_def_type_statement_token14] = ACTIONS(169), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(183), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(9)] = { + [sym_type_declaration] = STATE(14), + [sym_enum_declaration] = STATE(14), + [sym_declare_sub_statement] = STATE(14), + [sym_declare_function_statement] = STATE(14), + [sym_preprocessor_const] = STATE(14), + [sym_preprocessor_if] = STATE(14), + [sym_preprocessor_block] = STATE(11735), + [sym__preprocessor_item] = STATE(14), + [sym_preprocessor_elseif] = STATE(11736), + [sym_preprocessor_else] = STATE(14359), + [sym_sub_declaration] = STATE(14), + [sym_function_declaration] = STATE(14), + [sym_property_get_declaration] = STATE(14), + [sym_property_let_declaration] = STATE(14), + [sym_property_set_declaration] = STATE(14), + [sym__sub_header] = STATE(12649), + [sym__function_header] = STATE(12412), + [sym__property_get_header] = STATE(12650), + [sym__property_let_header] = STATE(12651), + [sym__property_set_header] = STATE(12652), + [sym_conditional_sub_declaration] = STATE(14), + [sym_conditional_function_declaration] = STATE(14), + [sym_conditional_property_declaration] = STATE(14), + [sym__conditional_sub_headers] = STATE(14799), + [sym__conditional_function_headers] = STATE(14800), + [sym__conditional_property_headers] = STATE(14801), + [sym_event_declaration] = STATE(14), + [sym__procedure_modifier] = STATE(13006), + [sym__statement] = STATE(14), + [sym_variable_declaration] = STATE(14), + [sym_const_declaration] = STATE(14), + [sym_visibility] = STATE(10999), + [sym_if_statement] = STATE(14), + [sym_elseif_fragment] = STATE(14), + [sym_else_fragment] = STATE(14), + [sym_end_if_fragment] = STATE(14), + [sym_single_line_if_statement] = STATE(14), + [sym_select_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym__inline_for_statement] = STATE(3867), + [sym_for_each_statement] = STATE(14), + [sym__inline_for_each_statement] = STATE(3868), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(14), + [sym__inline_do_statement] = STATE(3869), + [sym_while_statement] = STATE(14), + [sym_with_statement] = STATE(14), + [sym__inline_with_statement] = STATE(3870), + [sym_exit_statement] = STATE(14), + [sym_on_goto_statement] = STATE(14), + [sym_on_error_statement] = STATE(14), + [sym_resume_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_label_statement] = STATE(14), + [sym_line_number_prefix] = STATE(11499), + [sym_line_number_statement] = STATE(14), + [sym_redim_statement] = STATE(14), + [sym_erase_statement] = STATE(14), + [sym_open_statement] = STATE(14), + [sym_input_statement] = STATE(14), + [sym_line_input_statement] = STATE(14), + [sym_print_statement] = STATE(14), + [sym_write_statement] = STATE(14), + [sym_debug_print_statement] = STATE(14), + [sym_close_statement] = STATE(14), + [sym_get_statement] = STATE(14), + [sym_put_statement] = STATE(14), + [sym_lock_statement] = STATE(14), + [sym_unlock_statement] = STATE(14), + [sym_seek_statement] = STATE(14), + [sym_raise_event_statement] = STATE(14), + [sym_name_statement] = STATE(14), + [sym_load_statement] = STATE(14), + [sym_unload_statement] = STATE(14), + [sym_def_type_statement] = STATE(14), + [sym_set_statement] = STATE(14), + [sym_assignment_statement] = STATE(14), + [sym_call_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [aux_sym_preprocessor_if_repeat1] = STATE(11736), + [aux_sym_preprocessor_block_repeat1] = STATE(14), + [sym_identifier] = ACTIONS(61), + [sym_newline] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(63), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(65), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(29), + [aux_sym_type_declaration_token1] = ACTIONS(75), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(77), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(203), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(81), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(83), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(85), + [aux_sym_enum_declaration_token1] = ACTIONS(87), + [aux_sym_declare_sub_statement_token1] = ACTIONS(89), + [aux_sym_declare_sub_statement_token2] = ACTIONS(41), + [aux_sym_declare_function_statement_token1] = ACTIONS(43), + [aux_sym_preprocessor_const_token1] = ACTIONS(91), + [aux_sym__property_get_header_token1] = ACTIONS(47), + [aux_sym_event_declaration_token1] = ACTIONS(93), + [sym_static_modifier] = ACTIONS(95), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(29), + [aux_sym_visibility_token2] = ACTIONS(29), + [aux_sym_elseif_fragment_token1] = ACTIONS(113), + [aux_sym_else_fragment_token1] = ACTIONS(115), + [aux_sym_select_statement_token1] = ACTIONS(117), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(63), + [aux_sym_on_goto_statement_token1] = ACTIONS(129), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(163), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(163), + [sym_beep_statement] = ACTIONS(163), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_def_type_statement_token1] = ACTIONS(169), + [aux_sym_def_type_statement_token2] = ACTIONS(169), + [aux_sym_def_type_statement_token3] = ACTIONS(169), + [aux_sym_def_type_statement_token4] = ACTIONS(169), + [aux_sym_def_type_statement_token5] = ACTIONS(169), + [aux_sym_def_type_statement_token6] = ACTIONS(169), + [aux_sym_def_type_statement_token7] = ACTIONS(169), + [aux_sym_def_type_statement_token8] = ACTIONS(169), + [aux_sym_def_type_statement_token9] = ACTIONS(169), + [aux_sym_def_type_statement_token10] = ACTIONS(169), + [aux_sym_def_type_statement_token11] = ACTIONS(169), + [aux_sym_def_type_statement_token12] = ACTIONS(169), + [aux_sym_def_type_statement_token13] = ACTIONS(169), + [aux_sym_def_type_statement_token14] = ACTIONS(169), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(183), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(10)] = { + [sym_type_declaration] = STATE(14), + [sym_enum_declaration] = STATE(14), + [sym_declare_sub_statement] = STATE(14), + [sym_declare_function_statement] = STATE(14), + [sym_preprocessor_const] = STATE(14), + [sym_preprocessor_if] = STATE(14), + [sym_preprocessor_block] = STATE(11942), + [sym__preprocessor_item] = STATE(14), + [sym_preprocessor_elseif] = STATE(11944), + [sym_preprocessor_else] = STATE(14183), + [sym_sub_declaration] = STATE(14), + [sym_function_declaration] = STATE(14), + [sym_property_get_declaration] = STATE(14), + [sym_property_let_declaration] = STATE(14), + [sym_property_set_declaration] = STATE(14), + [sym__sub_header] = STATE(12649), + [sym__function_header] = STATE(12412), + [sym__property_get_header] = STATE(12650), + [sym__property_let_header] = STATE(12651), + [sym__property_set_header] = STATE(12652), + [sym_conditional_sub_declaration] = STATE(14), + [sym_conditional_function_declaration] = STATE(14), + [sym_conditional_property_declaration] = STATE(14), + [sym__conditional_sub_headers] = STATE(14799), + [sym__conditional_function_headers] = STATE(14800), + [sym__conditional_property_headers] = STATE(14801), + [sym_event_declaration] = STATE(14), + [sym__procedure_modifier] = STATE(13006), + [sym__statement] = STATE(14), + [sym_variable_declaration] = STATE(14), + [sym_const_declaration] = STATE(14), + [sym_visibility] = STATE(10999), + [sym_if_statement] = STATE(14), + [sym_elseif_fragment] = STATE(14), + [sym_else_fragment] = STATE(14), + [sym_end_if_fragment] = STATE(14), + [sym_single_line_if_statement] = STATE(14), + [sym_select_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym__inline_for_statement] = STATE(3867), + [sym_for_each_statement] = STATE(14), + [sym__inline_for_each_statement] = STATE(3868), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(14), + [sym__inline_do_statement] = STATE(3869), + [sym_while_statement] = STATE(14), + [sym_with_statement] = STATE(14), + [sym__inline_with_statement] = STATE(3870), + [sym_exit_statement] = STATE(14), + [sym_on_goto_statement] = STATE(14), + [sym_on_error_statement] = STATE(14), + [sym_resume_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_label_statement] = STATE(14), + [sym_line_number_prefix] = STATE(11499), + [sym_line_number_statement] = STATE(14), + [sym_redim_statement] = STATE(14), + [sym_erase_statement] = STATE(14), + [sym_open_statement] = STATE(14), + [sym_input_statement] = STATE(14), + [sym_line_input_statement] = STATE(14), + [sym_print_statement] = STATE(14), + [sym_write_statement] = STATE(14), + [sym_debug_print_statement] = STATE(14), + [sym_close_statement] = STATE(14), + [sym_get_statement] = STATE(14), + [sym_put_statement] = STATE(14), + [sym_lock_statement] = STATE(14), + [sym_unlock_statement] = STATE(14), + [sym_seek_statement] = STATE(14), + [sym_raise_event_statement] = STATE(14), + [sym_name_statement] = STATE(14), + [sym_load_statement] = STATE(14), + [sym_unload_statement] = STATE(14), + [sym_def_type_statement] = STATE(14), + [sym_set_statement] = STATE(14), + [sym_assignment_statement] = STATE(14), + [sym_call_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [aux_sym_preprocessor_if_repeat1] = STATE(11944), + [aux_sym_preprocessor_block_repeat1] = STATE(14), + [sym_identifier] = ACTIONS(61), + [sym_newline] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(63), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(65), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(29), + [aux_sym_type_declaration_token1] = ACTIONS(75), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(77), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(205), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(81), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(83), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(85), + [aux_sym_enum_declaration_token1] = ACTIONS(87), + [aux_sym_declare_sub_statement_token1] = ACTIONS(89), + [aux_sym_declare_sub_statement_token2] = ACTIONS(41), + [aux_sym_declare_function_statement_token1] = ACTIONS(43), + [aux_sym_preprocessor_const_token1] = ACTIONS(91), + [aux_sym__property_get_header_token1] = ACTIONS(47), + [aux_sym_event_declaration_token1] = ACTIONS(93), + [sym_static_modifier] = ACTIONS(95), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(29), + [aux_sym_visibility_token2] = ACTIONS(29), + [aux_sym_elseif_fragment_token1] = ACTIONS(113), + [aux_sym_else_fragment_token1] = ACTIONS(115), + [aux_sym_select_statement_token1] = ACTIONS(117), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(63), + [aux_sym_on_goto_statement_token1] = ACTIONS(129), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(163), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(163), + [sym_beep_statement] = ACTIONS(163), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_def_type_statement_token1] = ACTIONS(169), + [aux_sym_def_type_statement_token2] = ACTIONS(169), + [aux_sym_def_type_statement_token3] = ACTIONS(169), + [aux_sym_def_type_statement_token4] = ACTIONS(169), + [aux_sym_def_type_statement_token5] = ACTIONS(169), + [aux_sym_def_type_statement_token6] = ACTIONS(169), + [aux_sym_def_type_statement_token7] = ACTIONS(169), + [aux_sym_def_type_statement_token8] = ACTIONS(169), + [aux_sym_def_type_statement_token9] = ACTIONS(169), + [aux_sym_def_type_statement_token10] = ACTIONS(169), + [aux_sym_def_type_statement_token11] = ACTIONS(169), + [aux_sym_def_type_statement_token12] = ACTIONS(169), + [aux_sym_def_type_statement_token13] = ACTIONS(169), + [aux_sym_def_type_statement_token14] = ACTIONS(169), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(183), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(11)] = { + [sym_type_declaration] = STATE(14), + [sym_enum_declaration] = STATE(14), + [sym_declare_sub_statement] = STATE(14), + [sym_declare_function_statement] = STATE(14), + [sym_preprocessor_const] = STATE(14), + [sym_preprocessor_if] = STATE(14), + [sym_preprocessor_block] = STATE(11884), + [sym__preprocessor_item] = STATE(14), + [sym_preprocessor_elseif] = STATE(11888), + [sym_preprocessor_else] = STATE(14271), + [sym_sub_declaration] = STATE(14), + [sym_function_declaration] = STATE(14), + [sym_property_get_declaration] = STATE(14), + [sym_property_let_declaration] = STATE(14), + [sym_property_set_declaration] = STATE(14), + [sym__sub_header] = STATE(12649), + [sym__function_header] = STATE(12412), + [sym__property_get_header] = STATE(12650), + [sym__property_let_header] = STATE(12651), + [sym__property_set_header] = STATE(12652), + [sym_conditional_sub_declaration] = STATE(14), + [sym_conditional_function_declaration] = STATE(14), + [sym_conditional_property_declaration] = STATE(14), + [sym__conditional_sub_headers] = STATE(14799), + [sym__conditional_function_headers] = STATE(14800), + [sym__conditional_property_headers] = STATE(14801), + [sym_event_declaration] = STATE(14), + [sym__procedure_modifier] = STATE(13006), + [sym__statement] = STATE(14), + [sym_variable_declaration] = STATE(14), + [sym_const_declaration] = STATE(14), + [sym_visibility] = STATE(10999), + [sym_if_statement] = STATE(14), + [sym_elseif_fragment] = STATE(14), + [sym_else_fragment] = STATE(14), + [sym_end_if_fragment] = STATE(14), + [sym_single_line_if_statement] = STATE(14), + [sym_select_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym__inline_for_statement] = STATE(3867), + [sym_for_each_statement] = STATE(14), + [sym__inline_for_each_statement] = STATE(3868), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(14), + [sym__inline_do_statement] = STATE(3869), + [sym_while_statement] = STATE(14), + [sym_with_statement] = STATE(14), + [sym__inline_with_statement] = STATE(3870), + [sym_exit_statement] = STATE(14), + [sym_on_goto_statement] = STATE(14), + [sym_on_error_statement] = STATE(14), + [sym_resume_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_label_statement] = STATE(14), + [sym_line_number_prefix] = STATE(11499), + [sym_line_number_statement] = STATE(14), + [sym_redim_statement] = STATE(14), + [sym_erase_statement] = STATE(14), + [sym_open_statement] = STATE(14), + [sym_input_statement] = STATE(14), + [sym_line_input_statement] = STATE(14), + [sym_print_statement] = STATE(14), + [sym_write_statement] = STATE(14), + [sym_debug_print_statement] = STATE(14), + [sym_close_statement] = STATE(14), + [sym_get_statement] = STATE(14), + [sym_put_statement] = STATE(14), + [sym_lock_statement] = STATE(14), + [sym_unlock_statement] = STATE(14), + [sym_seek_statement] = STATE(14), + [sym_raise_event_statement] = STATE(14), + [sym_name_statement] = STATE(14), + [sym_load_statement] = STATE(14), + [sym_unload_statement] = STATE(14), + [sym_def_type_statement] = STATE(14), + [sym_set_statement] = STATE(14), + [sym_assignment_statement] = STATE(14), + [sym_call_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [aux_sym_preprocessor_if_repeat1] = STATE(11888), + [aux_sym_preprocessor_block_repeat1] = STATE(14), + [sym_identifier] = ACTIONS(61), + [sym_newline] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(63), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(65), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(29), + [aux_sym_type_declaration_token1] = ACTIONS(75), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(77), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(207), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(81), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(83), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(85), + [aux_sym_enum_declaration_token1] = ACTIONS(87), + [aux_sym_declare_sub_statement_token1] = ACTIONS(89), + [aux_sym_declare_sub_statement_token2] = ACTIONS(41), + [aux_sym_declare_function_statement_token1] = ACTIONS(43), + [aux_sym_preprocessor_const_token1] = ACTIONS(91), + [aux_sym__property_get_header_token1] = ACTIONS(47), + [aux_sym_event_declaration_token1] = ACTIONS(93), + [sym_static_modifier] = ACTIONS(95), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(29), + [aux_sym_visibility_token2] = ACTIONS(29), + [aux_sym_elseif_fragment_token1] = ACTIONS(113), + [aux_sym_else_fragment_token1] = ACTIONS(115), + [aux_sym_select_statement_token1] = ACTIONS(117), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(63), + [aux_sym_on_goto_statement_token1] = ACTIONS(129), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(163), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(163), + [sym_beep_statement] = ACTIONS(163), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_def_type_statement_token1] = ACTIONS(169), + [aux_sym_def_type_statement_token2] = ACTIONS(169), + [aux_sym_def_type_statement_token3] = ACTIONS(169), + [aux_sym_def_type_statement_token4] = ACTIONS(169), + [aux_sym_def_type_statement_token5] = ACTIONS(169), + [aux_sym_def_type_statement_token6] = ACTIONS(169), + [aux_sym_def_type_statement_token7] = ACTIONS(169), + [aux_sym_def_type_statement_token8] = ACTIONS(169), + [aux_sym_def_type_statement_token9] = ACTIONS(169), + [aux_sym_def_type_statement_token10] = ACTIONS(169), + [aux_sym_def_type_statement_token11] = ACTIONS(169), + [aux_sym_def_type_statement_token12] = ACTIONS(169), + [aux_sym_def_type_statement_token13] = ACTIONS(169), + [aux_sym_def_type_statement_token14] = ACTIONS(169), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(183), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(12)] = { + [sym_type_declaration] = STATE(14), + [sym_enum_declaration] = STATE(14), + [sym_declare_sub_statement] = STATE(14), + [sym_declare_function_statement] = STATE(14), + [sym_preprocessor_const] = STATE(14), + [sym_preprocessor_if] = STATE(14), + [sym_preprocessor_block] = STATE(11808), + [sym__preprocessor_item] = STATE(14), + [sym_preprocessor_elseif] = STATE(11809), + [sym_preprocessor_else] = STATE(14617), + [sym_sub_declaration] = STATE(14), + [sym_function_declaration] = STATE(14), + [sym_property_get_declaration] = STATE(14), + [sym_property_let_declaration] = STATE(14), + [sym_property_set_declaration] = STATE(14), + [sym__sub_header] = STATE(12649), + [sym__function_header] = STATE(12412), + [sym__property_get_header] = STATE(12650), + [sym__property_let_header] = STATE(12651), + [sym__property_set_header] = STATE(12652), + [sym_conditional_sub_declaration] = STATE(14), + [sym_conditional_function_declaration] = STATE(14), + [sym_conditional_property_declaration] = STATE(14), + [sym__conditional_sub_headers] = STATE(14799), + [sym__conditional_function_headers] = STATE(14800), + [sym__conditional_property_headers] = STATE(14801), + [sym_event_declaration] = STATE(14), + [sym__procedure_modifier] = STATE(13006), + [sym__statement] = STATE(14), + [sym_variable_declaration] = STATE(14), + [sym_const_declaration] = STATE(14), + [sym_visibility] = STATE(10999), + [sym_if_statement] = STATE(14), + [sym_elseif_fragment] = STATE(14), + [sym_else_fragment] = STATE(14), + [sym_end_if_fragment] = STATE(14), + [sym_single_line_if_statement] = STATE(14), + [sym_select_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym__inline_for_statement] = STATE(3867), + [sym_for_each_statement] = STATE(14), + [sym__inline_for_each_statement] = STATE(3868), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(14), + [sym__inline_do_statement] = STATE(3869), + [sym_while_statement] = STATE(14), + [sym_with_statement] = STATE(14), + [sym__inline_with_statement] = STATE(3870), + [sym_exit_statement] = STATE(14), + [sym_on_goto_statement] = STATE(14), + [sym_on_error_statement] = STATE(14), + [sym_resume_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_label_statement] = STATE(14), + [sym_line_number_prefix] = STATE(11499), + [sym_line_number_statement] = STATE(14), + [sym_redim_statement] = STATE(14), + [sym_erase_statement] = STATE(14), + [sym_open_statement] = STATE(14), + [sym_input_statement] = STATE(14), + [sym_line_input_statement] = STATE(14), + [sym_print_statement] = STATE(14), + [sym_write_statement] = STATE(14), + [sym_debug_print_statement] = STATE(14), + [sym_close_statement] = STATE(14), + [sym_get_statement] = STATE(14), + [sym_put_statement] = STATE(14), + [sym_lock_statement] = STATE(14), + [sym_unlock_statement] = STATE(14), + [sym_seek_statement] = STATE(14), + [sym_raise_event_statement] = STATE(14), + [sym_name_statement] = STATE(14), + [sym_load_statement] = STATE(14), + [sym_unload_statement] = STATE(14), + [sym_def_type_statement] = STATE(14), + [sym_set_statement] = STATE(14), + [sym_assignment_statement] = STATE(14), + [sym_call_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [aux_sym_preprocessor_if_repeat1] = STATE(11809), + [aux_sym_preprocessor_block_repeat1] = STATE(14), + [sym_identifier] = ACTIONS(61), + [sym_newline] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(63), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(65), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(29), + [aux_sym_type_declaration_token1] = ACTIONS(75), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(77), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(209), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(81), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(83), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(85), + [aux_sym_enum_declaration_token1] = ACTIONS(87), + [aux_sym_declare_sub_statement_token1] = ACTIONS(89), + [aux_sym_declare_sub_statement_token2] = ACTIONS(41), + [aux_sym_declare_function_statement_token1] = ACTIONS(43), + [aux_sym_preprocessor_const_token1] = ACTIONS(91), + [aux_sym__property_get_header_token1] = ACTIONS(47), + [aux_sym_event_declaration_token1] = ACTIONS(93), + [sym_static_modifier] = ACTIONS(95), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(29), + [aux_sym_visibility_token2] = ACTIONS(29), + [aux_sym_elseif_fragment_token1] = ACTIONS(113), + [aux_sym_else_fragment_token1] = ACTIONS(115), + [aux_sym_select_statement_token1] = ACTIONS(117), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(63), + [aux_sym_on_goto_statement_token1] = ACTIONS(129), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(163), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(163), + [sym_beep_statement] = ACTIONS(163), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_def_type_statement_token1] = ACTIONS(169), + [aux_sym_def_type_statement_token2] = ACTIONS(169), + [aux_sym_def_type_statement_token3] = ACTIONS(169), + [aux_sym_def_type_statement_token4] = ACTIONS(169), + [aux_sym_def_type_statement_token5] = ACTIONS(169), + [aux_sym_def_type_statement_token6] = ACTIONS(169), + [aux_sym_def_type_statement_token7] = ACTIONS(169), + [aux_sym_def_type_statement_token8] = ACTIONS(169), + [aux_sym_def_type_statement_token9] = ACTIONS(169), + [aux_sym_def_type_statement_token10] = ACTIONS(169), + [aux_sym_def_type_statement_token11] = ACTIONS(169), + [aux_sym_def_type_statement_token12] = ACTIONS(169), + [aux_sym_def_type_statement_token13] = ACTIONS(169), + [aux_sym_def_type_statement_token14] = ACTIONS(169), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(183), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(13)] = { + [sym_type_declaration] = STATE(14), + [sym_enum_declaration] = STATE(14), + [sym_declare_sub_statement] = STATE(14), + [sym_declare_function_statement] = STATE(14), + [sym_preprocessor_const] = STATE(14), + [sym_preprocessor_if] = STATE(14), + [sym_preprocessor_block] = STATE(12743), + [sym__preprocessor_item] = STATE(14), + [sym_sub_declaration] = STATE(14), + [sym_function_declaration] = STATE(14), + [sym_property_get_declaration] = STATE(14), + [sym_property_let_declaration] = STATE(14), + [sym_property_set_declaration] = STATE(14), + [sym__sub_header] = STATE(12649), + [sym__function_header] = STATE(12412), + [sym__property_get_header] = STATE(12650), + [sym__property_let_header] = STATE(12651), + [sym__property_set_header] = STATE(12652), + [sym_conditional_sub_declaration] = STATE(14), + [sym_conditional_function_declaration] = STATE(14), + [sym_conditional_property_declaration] = STATE(14), + [sym__conditional_sub_headers] = STATE(14799), + [sym__conditional_function_headers] = STATE(14800), + [sym__conditional_property_headers] = STATE(14801), + [sym_event_declaration] = STATE(14), + [sym__procedure_modifier] = STATE(13006), + [sym__statement] = STATE(14), + [sym_variable_declaration] = STATE(14), + [sym_const_declaration] = STATE(14), + [sym_visibility] = STATE(10999), + [sym_if_statement] = STATE(14), + [sym_elseif_fragment] = STATE(14), + [sym_else_fragment] = STATE(14), + [sym_end_if_fragment] = STATE(14), + [sym_single_line_if_statement] = STATE(14), + [sym_select_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym__inline_for_statement] = STATE(3867), + [sym_for_each_statement] = STATE(14), + [sym__inline_for_each_statement] = STATE(3868), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(14), + [sym__inline_do_statement] = STATE(3869), + [sym_while_statement] = STATE(14), + [sym_with_statement] = STATE(14), + [sym__inline_with_statement] = STATE(3870), + [sym_exit_statement] = STATE(14), + [sym_on_goto_statement] = STATE(14), + [sym_on_error_statement] = STATE(14), + [sym_resume_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym_label_statement] = STATE(14), + [sym_line_number_prefix] = STATE(11499), + [sym_line_number_statement] = STATE(14), + [sym_redim_statement] = STATE(14), + [sym_erase_statement] = STATE(14), + [sym_open_statement] = STATE(14), + [sym_input_statement] = STATE(14), + [sym_line_input_statement] = STATE(14), + [sym_print_statement] = STATE(14), + [sym_write_statement] = STATE(14), + [sym_debug_print_statement] = STATE(14), + [sym_close_statement] = STATE(14), + [sym_get_statement] = STATE(14), + [sym_put_statement] = STATE(14), + [sym_lock_statement] = STATE(14), + [sym_unlock_statement] = STATE(14), + [sym_seek_statement] = STATE(14), + [sym_raise_event_statement] = STATE(14), + [sym_name_statement] = STATE(14), + [sym_load_statement] = STATE(14), + [sym_unload_statement] = STATE(14), + [sym_def_type_statement] = STATE(14), + [sym_set_statement] = STATE(14), + [sym_assignment_statement] = STATE(14), + [sym_call_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [aux_sym_preprocessor_block_repeat1] = STATE(14), + [sym_identifier] = ACTIONS(61), + [sym_newline] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(63), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(65), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(29), + [aux_sym_type_declaration_token1] = ACTIONS(75), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(77), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(211), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(81), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(211), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(211), + [aux_sym_enum_declaration_token1] = ACTIONS(87), + [aux_sym_declare_sub_statement_token1] = ACTIONS(89), + [aux_sym_declare_sub_statement_token2] = ACTIONS(41), + [aux_sym_declare_function_statement_token1] = ACTIONS(43), + [aux_sym_preprocessor_const_token1] = ACTIONS(91), + [aux_sym__property_get_header_token1] = ACTIONS(47), + [aux_sym_event_declaration_token1] = ACTIONS(93), + [sym_static_modifier] = ACTIONS(95), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(29), + [aux_sym_visibility_token2] = ACTIONS(29), + [aux_sym_elseif_fragment_token1] = ACTIONS(113), + [aux_sym_else_fragment_token1] = ACTIONS(115), + [aux_sym_select_statement_token1] = ACTIONS(117), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(63), + [aux_sym_on_goto_statement_token1] = ACTIONS(129), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(163), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(163), + [sym_beep_statement] = ACTIONS(163), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_def_type_statement_token1] = ACTIONS(169), + [aux_sym_def_type_statement_token2] = ACTIONS(169), + [aux_sym_def_type_statement_token3] = ACTIONS(169), + [aux_sym_def_type_statement_token4] = ACTIONS(169), + [aux_sym_def_type_statement_token5] = ACTIONS(169), + [aux_sym_def_type_statement_token6] = ACTIONS(169), + [aux_sym_def_type_statement_token7] = ACTIONS(169), + [aux_sym_def_type_statement_token8] = ACTIONS(169), + [aux_sym_def_type_statement_token9] = ACTIONS(169), + [aux_sym_def_type_statement_token10] = ACTIONS(169), + [aux_sym_def_type_statement_token11] = ACTIONS(169), + [aux_sym_def_type_statement_token12] = ACTIONS(169), + [aux_sym_def_type_statement_token13] = ACTIONS(169), + [aux_sym_def_type_statement_token14] = ACTIONS(169), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(183), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(14)] = { + [sym_type_declaration] = STATE(15), + [sym_enum_declaration] = STATE(15), + [sym_declare_sub_statement] = STATE(15), + [sym_declare_function_statement] = STATE(15), + [sym_preprocessor_const] = STATE(15), + [sym_preprocessor_if] = STATE(15), + [sym__preprocessor_item] = STATE(15), + [sym_sub_declaration] = STATE(15), + [sym_function_declaration] = STATE(15), + [sym_property_get_declaration] = STATE(15), + [sym_property_let_declaration] = STATE(15), + [sym_property_set_declaration] = STATE(15), + [sym__sub_header] = STATE(12649), + [sym__function_header] = STATE(12412), + [sym__property_get_header] = STATE(12650), + [sym__property_let_header] = STATE(12651), + [sym__property_set_header] = STATE(12652), + [sym_conditional_sub_declaration] = STATE(15), + [sym_conditional_function_declaration] = STATE(15), + [sym_conditional_property_declaration] = STATE(15), + [sym__conditional_sub_headers] = STATE(14799), + [sym__conditional_function_headers] = STATE(14800), + [sym__conditional_property_headers] = STATE(14801), + [sym_event_declaration] = STATE(15), + [sym__procedure_modifier] = STATE(13006), + [sym__statement] = STATE(15), + [sym_variable_declaration] = STATE(15), + [sym_const_declaration] = STATE(15), + [sym_visibility] = STATE(10999), + [sym_if_statement] = STATE(15), + [sym_elseif_fragment] = STATE(15), + [sym_else_fragment] = STATE(15), + [sym_end_if_fragment] = STATE(15), + [sym_single_line_if_statement] = STATE(15), + [sym_select_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym__inline_for_statement] = STATE(3867), + [sym_for_each_statement] = STATE(15), + [sym__inline_for_each_statement] = STATE(3868), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(15), + [sym__inline_do_statement] = STATE(3869), + [sym_while_statement] = STATE(15), + [sym_with_statement] = STATE(15), + [sym__inline_with_statement] = STATE(3870), + [sym_exit_statement] = STATE(15), + [sym_on_goto_statement] = STATE(15), + [sym_on_error_statement] = STATE(15), + [sym_resume_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym_label_statement] = STATE(15), + [sym_line_number_prefix] = STATE(11499), + [sym_line_number_statement] = STATE(15), + [sym_redim_statement] = STATE(15), + [sym_erase_statement] = STATE(15), + [sym_open_statement] = STATE(15), + [sym_input_statement] = STATE(15), + [sym_line_input_statement] = STATE(15), + [sym_print_statement] = STATE(15), + [sym_write_statement] = STATE(15), + [sym_debug_print_statement] = STATE(15), + [sym_close_statement] = STATE(15), + [sym_get_statement] = STATE(15), + [sym_put_statement] = STATE(15), + [sym_lock_statement] = STATE(15), + [sym_unlock_statement] = STATE(15), + [sym_seek_statement] = STATE(15), + [sym_raise_event_statement] = STATE(15), + [sym_name_statement] = STATE(15), + [sym_load_statement] = STATE(15), + [sym_unload_statement] = STATE(15), + [sym_def_type_statement] = STATE(15), + [sym_set_statement] = STATE(15), + [sym_assignment_statement] = STATE(15), + [sym_call_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [aux_sym_preprocessor_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(61), + [sym_newline] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(213), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(65), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(29), + [aux_sym_type_declaration_token1] = ACTIONS(75), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(77), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(215), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(81), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(215), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(215), + [aux_sym_enum_declaration_token1] = ACTIONS(87), + [aux_sym_declare_sub_statement_token1] = ACTIONS(89), + [aux_sym_declare_sub_statement_token2] = ACTIONS(41), + [aux_sym_declare_function_statement_token1] = ACTIONS(43), + [aux_sym_preprocessor_const_token1] = ACTIONS(91), + [aux_sym__property_get_header_token1] = ACTIONS(47), + [aux_sym_event_declaration_token1] = ACTIONS(93), + [sym_static_modifier] = ACTIONS(95), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(29), + [aux_sym_visibility_token2] = ACTIONS(29), + [aux_sym_elseif_fragment_token1] = ACTIONS(113), + [aux_sym_else_fragment_token1] = ACTIONS(115), + [aux_sym_select_statement_token1] = ACTIONS(117), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(213), + [aux_sym_on_goto_statement_token1] = ACTIONS(129), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(217), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(217), + [sym_beep_statement] = ACTIONS(217), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_def_type_statement_token1] = ACTIONS(169), + [aux_sym_def_type_statement_token2] = ACTIONS(169), + [aux_sym_def_type_statement_token3] = ACTIONS(169), + [aux_sym_def_type_statement_token4] = ACTIONS(169), + [aux_sym_def_type_statement_token5] = ACTIONS(169), + [aux_sym_def_type_statement_token6] = ACTIONS(169), + [aux_sym_def_type_statement_token7] = ACTIONS(169), + [aux_sym_def_type_statement_token8] = ACTIONS(169), + [aux_sym_def_type_statement_token9] = ACTIONS(169), + [aux_sym_def_type_statement_token10] = ACTIONS(169), + [aux_sym_def_type_statement_token11] = ACTIONS(169), + [aux_sym_def_type_statement_token12] = ACTIONS(169), + [aux_sym_def_type_statement_token13] = ACTIONS(169), + [aux_sym_def_type_statement_token14] = ACTIONS(169), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(183), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(15)] = { + [sym_type_declaration] = STATE(15), + [sym_enum_declaration] = STATE(15), + [sym_declare_sub_statement] = STATE(15), + [sym_declare_function_statement] = STATE(15), + [sym_preprocessor_const] = STATE(15), + [sym_preprocessor_if] = STATE(15), + [sym__preprocessor_item] = STATE(15), + [sym_sub_declaration] = STATE(15), + [sym_function_declaration] = STATE(15), + [sym_property_get_declaration] = STATE(15), + [sym_property_let_declaration] = STATE(15), + [sym_property_set_declaration] = STATE(15), + [sym__sub_header] = STATE(12649), + [sym__function_header] = STATE(12412), + [sym__property_get_header] = STATE(12650), + [sym__property_let_header] = STATE(12651), + [sym__property_set_header] = STATE(12652), + [sym_conditional_sub_declaration] = STATE(15), + [sym_conditional_function_declaration] = STATE(15), + [sym_conditional_property_declaration] = STATE(15), + [sym__conditional_sub_headers] = STATE(14799), + [sym__conditional_function_headers] = STATE(14800), + [sym__conditional_property_headers] = STATE(14801), + [sym_event_declaration] = STATE(15), + [sym__procedure_modifier] = STATE(13006), + [sym__statement] = STATE(15), + [sym_variable_declaration] = STATE(15), + [sym_const_declaration] = STATE(15), + [sym_visibility] = STATE(10999), + [sym_if_statement] = STATE(15), + [sym_elseif_fragment] = STATE(15), + [sym_else_fragment] = STATE(15), + [sym_end_if_fragment] = STATE(15), + [sym_single_line_if_statement] = STATE(15), + [sym_select_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym__inline_for_statement] = STATE(3867), + [sym_for_each_statement] = STATE(15), + [sym__inline_for_each_statement] = STATE(3868), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(15), + [sym__inline_do_statement] = STATE(3869), + [sym_while_statement] = STATE(15), + [sym_with_statement] = STATE(15), + [sym__inline_with_statement] = STATE(3870), + [sym_exit_statement] = STATE(15), + [sym_on_goto_statement] = STATE(15), + [sym_on_error_statement] = STATE(15), + [sym_resume_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym_label_statement] = STATE(15), + [sym_line_number_prefix] = STATE(11499), + [sym_line_number_statement] = STATE(15), + [sym_redim_statement] = STATE(15), + [sym_erase_statement] = STATE(15), + [sym_open_statement] = STATE(15), + [sym_input_statement] = STATE(15), + [sym_line_input_statement] = STATE(15), + [sym_print_statement] = STATE(15), + [sym_write_statement] = STATE(15), + [sym_debug_print_statement] = STATE(15), + [sym_close_statement] = STATE(15), + [sym_get_statement] = STATE(15), + [sym_put_statement] = STATE(15), + [sym_lock_statement] = STATE(15), + [sym_unlock_statement] = STATE(15), + [sym_seek_statement] = STATE(15), + [sym_raise_event_statement] = STATE(15), + [sym_name_statement] = STATE(15), + [sym_load_statement] = STATE(15), + [sym_unload_statement] = STATE(15), + [sym_def_type_statement] = STATE(15), + [sym_set_statement] = STATE(15), + [sym_assignment_statement] = STATE(15), + [sym_call_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [aux_sym_preprocessor_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(219), + [sym_newline] = ACTIONS(222), + [anon_sym_COLON] = ACTIONS(222), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(225), + [aux_sym_frm_property_statement_token1] = ACTIONS(228), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_BANG] = ACTIONS(234), + [aux_sym__attribute_identifier_token1] = ACTIONS(237), + [aux_sym_option_statement_token3] = ACTIONS(240), + [aux_sym_type_declaration_token1] = ACTIONS(243), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(246), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(249), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(251), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(249), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(249), + [aux_sym_enum_declaration_token1] = ACTIONS(254), + [aux_sym_declare_sub_statement_token1] = ACTIONS(257), + [aux_sym_declare_sub_statement_token2] = ACTIONS(260), + [aux_sym_declare_function_statement_token1] = ACTIONS(263), + [aux_sym_preprocessor_const_token1] = ACTIONS(266), + [aux_sym__property_get_header_token1] = ACTIONS(269), + [aux_sym_event_declaration_token1] = ACTIONS(272), + [sym_static_modifier] = ACTIONS(275), + [sym__dim_keyword] = ACTIONS(278), + [sym__redim_keyword] = ACTIONS(281), + [aux_sym_get_accessor_token1] = ACTIONS(284), + [aux_sym_set_accessor_token1] = ACTIONS(287), + [aux_sym_const_declaration_token1] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(293), + [aux_sym_as_type_clause_token2] = ACTIONS(296), + [aux_sym_dotted_type_expression_token1] = ACTIONS(299), + [aux_sym_visibility_token1] = ACTIONS(240), + [aux_sym_visibility_token2] = ACTIONS(240), + [aux_sym_elseif_fragment_token1] = ACTIONS(302), + [aux_sym_else_fragment_token1] = ACTIONS(305), + [aux_sym_select_statement_token1] = ACTIONS(308), + [aux_sym__for_header_token1] = ACTIONS(311), + [aux_sym_do_statement_token1] = ACTIONS(314), + [aux_sym_do_condition_token1] = ACTIONS(317), + [aux_sym_with_statement_token1] = ACTIONS(320), + [aux_sym_exit_statement_token1] = ACTIONS(323), + [sym_end_statement] = ACTIONS(222), + [aux_sym_on_goto_statement_token1] = ACTIONS(326), + [aux_sym_on_goto_statement_token2] = ACTIONS(329), + [aux_sym_on_error_statement_token2] = ACTIONS(332), + [sym__ambiguous_redim_statement] = ACTIONS(335), + [aux_sym_erase_statement_token1] = ACTIONS(338), + [aux_sym_open_statement_token1] = ACTIONS(341), + [aux_sym_file_mode_token2] = ACTIONS(344), + [aux_sym_file_access_token2] = ACTIONS(347), + [aux_sym_file_lock_token2] = ACTIONS(350), + [aux_sym_print_statement_token1] = ACTIONS(353), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_DASH] = ACTIONS(359), + [anon_sym_QMARK] = ACTIONS(362), + [aux_sym_close_statement_token1] = ACTIONS(365), + [aux_sym_put_statement_token1] = ACTIONS(368), + [aux_sym_unlock_statement_token1] = ACTIONS(371), + [aux_sym_seek_statement_token1] = ACTIONS(374), + [sym_reset_statement] = ACTIONS(377), + [aux_sym_raise_event_statement_token1] = ACTIONS(380), + [sym_stop_statement] = ACTIONS(377), + [sym_beep_statement] = ACTIONS(377), + [aux_sym_unload_statement_token1] = ACTIONS(383), + [aux_sym_def_type_statement_token1] = ACTIONS(386), + [aux_sym_def_type_statement_token2] = ACTIONS(386), + [aux_sym_def_type_statement_token3] = ACTIONS(386), + [aux_sym_def_type_statement_token4] = ACTIONS(386), + [aux_sym_def_type_statement_token5] = ACTIONS(386), + [aux_sym_def_type_statement_token6] = ACTIONS(386), + [aux_sym_def_type_statement_token7] = ACTIONS(386), + [aux_sym_def_type_statement_token8] = ACTIONS(386), + [aux_sym_def_type_statement_token9] = ACTIONS(386), + [aux_sym_def_type_statement_token10] = ACTIONS(386), + [aux_sym_def_type_statement_token11] = ACTIONS(386), + [aux_sym_def_type_statement_token12] = ACTIONS(386), + [aux_sym_def_type_statement_token13] = ACTIONS(386), + [aux_sym_def_type_statement_token14] = ACTIONS(386), + [aux_sym_call_statement_token1] = ACTIONS(389), + [sym__ambiguous_call_statement] = ACTIONS(392), + [aux_sym_addressof_expression_token1] = ACTIONS(395), + [aux_sym_type_of_expression_token1] = ACTIONS(398), + [aux_sym_unary_expression_token1] = ACTIONS(401), + [sym_string_literal] = ACTIONS(404), + [sym_number_literal] = ACTIONS(407), + [aux_sym_boolean_literal_token1] = ACTIONS(410), + [aux_sym_boolean_literal_token2] = ACTIONS(410), + [sym_nothing_literal] = ACTIONS(413), + [sym_null_literal] = ACTIONS(413), + [sym_empty_literal] = ACTIONS(413), + [sym_date_literal] = ACTIONS(404), + [anon_sym_POUND] = ACTIONS(416), + }, + [STATE(16)] = { + [sym_type_declaration] = STATE(18), + [sym_enum_declaration] = STATE(18), + [sym_declare_sub_statement] = STATE(18), + [sym_declare_function_statement] = STATE(18), + [sym_preprocessor_const] = STATE(18), + [sym_preprocessor_if] = STATE(18), + [sym_preprocessor_block] = STATE(14189), + [sym__preprocessor_item] = STATE(18), + [sym_sub_declaration] = STATE(18), + [sym_function_declaration] = STATE(18), + [sym_property_get_declaration] = STATE(18), + [sym_property_let_declaration] = STATE(18), + [sym_property_set_declaration] = STATE(18), + [sym__sub_header] = STATE(12732), + [sym__function_header] = STATE(12733), + [sym__property_get_header] = STATE(12734), + [sym__property_let_header] = STATE(12735), + [sym__property_set_header] = STATE(12736), + [sym_conditional_sub_declaration] = STATE(18), + [sym_conditional_function_declaration] = STATE(18), + [sym_conditional_property_declaration] = STATE(18), + [sym__conditional_sub_headers] = STATE(14856), + [sym__conditional_function_headers] = STATE(14857), + [sym__conditional_property_headers] = STATE(14858), + [sym_event_declaration] = STATE(18), + [sym__procedure_modifier] = STATE(13006), + [sym__statement] = STATE(18), + [sym_variable_declaration] = STATE(18), + [sym_const_declaration] = STATE(18), + [sym_visibility] = STATE(10991), + [sym_if_statement] = STATE(18), + [sym_elseif_fragment] = STATE(18), + [sym_else_fragment] = STATE(18), + [sym_end_if_fragment] = STATE(18), + [sym_single_line_if_statement] = STATE(18), + [sym_select_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym__inline_for_statement] = STATE(4380), + [sym_for_each_statement] = STATE(18), + [sym__inline_for_each_statement] = STATE(4381), + [sym__for_header] = STATE(11370), + [sym__for_each_header] = STATE(11371), + [sym_do_statement] = STATE(18), + [sym__inline_do_statement] = STATE(4388), + [sym_while_statement] = STATE(18), + [sym_with_statement] = STATE(18), + [sym__inline_with_statement] = STATE(4389), + [sym_exit_statement] = STATE(18), + [sym_on_goto_statement] = STATE(18), + [sym_on_error_statement] = STATE(18), + [sym_resume_statement] = STATE(18), + [sym_goto_statement] = STATE(18), + [sym_label_statement] = STATE(18), + [sym_line_number_prefix] = STATE(11314), + [sym_line_number_statement] = STATE(18), + [sym_redim_statement] = STATE(18), + [sym_erase_statement] = STATE(18), + [sym_open_statement] = STATE(18), + [sym_input_statement] = STATE(18), + [sym_line_input_statement] = STATE(18), + [sym_print_statement] = STATE(18), + [sym_write_statement] = STATE(18), + [sym_debug_print_statement] = STATE(18), + [sym_close_statement] = STATE(18), + [sym_get_statement] = STATE(18), + [sym_put_statement] = STATE(18), + [sym_lock_statement] = STATE(18), + [sym_unlock_statement] = STATE(18), + [sym_seek_statement] = STATE(18), + [sym_raise_event_statement] = STATE(18), + [sym_name_statement] = STATE(18), + [sym_load_statement] = STATE(18), + [sym_unload_statement] = STATE(18), + [sym_def_type_statement] = STATE(18), + [sym_set_statement] = STATE(18), + [sym_assignment_statement] = STATE(18), + [sym_call_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym__primary_expression] = STATE(2177), + [sym__expression] = STATE(2177), + [sym__assignable_expression] = STATE(14337), + [sym__callable_expression] = STATE(360), + [sym__print_method_callee] = STATE(363), + [sym__print_method_call_expression] = STATE(4521), + [sym__qualified_print_method_expression] = STATE(4522), + [sym__implicit_print_method_expression] = STATE(4523), + [sym__line_method_expression] = STATE(12218), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2177), + [sym_addressof_expression] = STATE(2177), + [sym_type_of_expression] = STATE(2177), + [sym_member_expression] = STATE(1381), + [sym_qualified_member_expression] = STATE(912), + [sym_implicit_member_expression] = STATE(912), + [sym_parenthesized_expression] = STATE(2177), + [sym_binary_expression] = STATE(2177), + [sym_unary_expression] = STATE(2177), + [sym__signed_unary_expression] = STATE(1199), + [sym__literal] = STATE(2177), + [sym_boolean_literal] = STATE(2177), + [sym_file_number_literal] = STATE(2177), + [aux_sym_preprocessor_block_repeat1] = STATE(18), + [sym_identifier] = ACTIONS(419), + [sym_newline] = ACTIONS(421), + [anon_sym_COLON] = ACTIONS(421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(423), + [aux_sym_frm_property_statement_token1] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [aux_sym__attribute_identifier_token1] = ACTIONS(431), + [aux_sym_option_statement_token3] = ACTIONS(29), + [aux_sym_type_declaration_token1] = ACTIONS(433), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(435), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(439), + [aux_sym_enum_declaration_token1] = ACTIONS(441), + [aux_sym_declare_sub_statement_token1] = ACTIONS(443), + [aux_sym_declare_sub_statement_token2] = ACTIONS(41), + [aux_sym_declare_function_statement_token1] = ACTIONS(43), + [aux_sym_preprocessor_const_token1] = ACTIONS(445), + [aux_sym__property_get_header_token1] = ACTIONS(47), + [aux_sym_event_declaration_token1] = ACTIONS(447), + [sym_static_modifier] = ACTIONS(449), + [sym__dim_keyword] = ACTIONS(451), + [sym__redim_keyword] = ACTIONS(453), + [aux_sym_get_accessor_token1] = ACTIONS(455), + [aux_sym_set_accessor_token1] = ACTIONS(457), + [aux_sym_const_declaration_token1] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [aux_sym_as_type_clause_token2] = ACTIONS(463), + [aux_sym_dotted_type_expression_token1] = ACTIONS(465), + [aux_sym_visibility_token1] = ACTIONS(29), + [aux_sym_visibility_token2] = ACTIONS(29), + [aux_sym_elseif_fragment_token1] = ACTIONS(467), + [aux_sym_else_fragment_token1] = ACTIONS(469), + [aux_sym_select_statement_token1] = ACTIONS(471), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(473), + [aux_sym_do_condition_token1] = ACTIONS(475), + [aux_sym_with_statement_token1] = ACTIONS(477), + [aux_sym_exit_statement_token1] = ACTIONS(479), + [sym_end_statement] = ACTIONS(421), + [aux_sym_on_goto_statement_token1] = ACTIONS(481), + [aux_sym_on_goto_statement_token2] = ACTIONS(483), + [aux_sym_on_error_statement_token2] = ACTIONS(485), + [sym__ambiguous_redim_statement] = ACTIONS(487), + [aux_sym_erase_statement_token1] = ACTIONS(489), + [aux_sym_open_statement_token1] = ACTIONS(491), + [aux_sym_file_mode_token2] = ACTIONS(493), + [aux_sym_file_access_token2] = ACTIONS(495), + [aux_sym_file_lock_token2] = ACTIONS(497), + [aux_sym_print_statement_token1] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_QMARK] = ACTIONS(505), + [aux_sym_close_statement_token1] = ACTIONS(507), + [aux_sym_put_statement_token1] = ACTIONS(509), + [aux_sym_unlock_statement_token1] = ACTIONS(511), + [aux_sym_seek_statement_token1] = ACTIONS(513), + [sym_reset_statement] = ACTIONS(515), + [aux_sym_raise_event_statement_token1] = ACTIONS(517), + [sym_stop_statement] = ACTIONS(515), + [sym_beep_statement] = ACTIONS(515), + [aux_sym_unload_statement_token1] = ACTIONS(519), + [aux_sym_def_type_statement_token1] = ACTIONS(521), + [aux_sym_def_type_statement_token2] = ACTIONS(521), + [aux_sym_def_type_statement_token3] = ACTIONS(521), + [aux_sym_def_type_statement_token4] = ACTIONS(521), + [aux_sym_def_type_statement_token5] = ACTIONS(521), + [aux_sym_def_type_statement_token6] = ACTIONS(521), + [aux_sym_def_type_statement_token7] = ACTIONS(521), + [aux_sym_def_type_statement_token8] = ACTIONS(521), + [aux_sym_def_type_statement_token9] = ACTIONS(521), + [aux_sym_def_type_statement_token10] = ACTIONS(521), + [aux_sym_def_type_statement_token11] = ACTIONS(521), + [aux_sym_def_type_statement_token12] = ACTIONS(521), + [aux_sym_def_type_statement_token13] = ACTIONS(521), + [aux_sym_def_type_statement_token14] = ACTIONS(521), + [aux_sym_call_statement_token1] = ACTIONS(523), + [sym__ambiguous_call_statement] = ACTIONS(525), + [aux_sym_addressof_expression_token1] = ACTIONS(527), + [aux_sym_type_of_expression_token1] = ACTIONS(529), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(533), + [sym_number_literal] = ACTIONS(535), + [aux_sym_boolean_literal_token1] = ACTIONS(537), + [aux_sym_boolean_literal_token2] = ACTIONS(537), + [sym_nothing_literal] = ACTIONS(539), + [sym_null_literal] = ACTIONS(539), + [sym_empty_literal] = ACTIONS(539), + [sym_date_literal] = ACTIONS(533), + [anon_sym_POUND] = ACTIONS(541), + }, + [STATE(17)] = { + [sym_type_declaration] = STATE(17), + [sym_enum_declaration] = STATE(17), + [sym_declare_sub_statement] = STATE(17), + [sym_declare_function_statement] = STATE(17), + [sym_preprocessor_const] = STATE(17), + [sym_preprocessor_if] = STATE(17), + [sym__preprocessor_item] = STATE(17), + [sym_sub_declaration] = STATE(17), + [sym_function_declaration] = STATE(17), + [sym_property_get_declaration] = STATE(17), + [sym_property_let_declaration] = STATE(17), + [sym_property_set_declaration] = STATE(17), + [sym__sub_header] = STATE(12732), + [sym__function_header] = STATE(12733), + [sym__property_get_header] = STATE(12734), + [sym__property_let_header] = STATE(12735), + [sym__property_set_header] = STATE(12736), + [sym_conditional_sub_declaration] = STATE(17), + [sym_conditional_function_declaration] = STATE(17), + [sym_conditional_property_declaration] = STATE(17), + [sym__conditional_sub_headers] = STATE(14856), + [sym__conditional_function_headers] = STATE(14857), + [sym__conditional_property_headers] = STATE(14858), + [sym_event_declaration] = STATE(17), + [sym__procedure_modifier] = STATE(13006), + [sym__statement] = STATE(17), + [sym_variable_declaration] = STATE(17), + [sym_const_declaration] = STATE(17), + [sym_visibility] = STATE(10991), + [sym_if_statement] = STATE(17), + [sym_elseif_fragment] = STATE(17), + [sym_else_fragment] = STATE(17), + [sym_end_if_fragment] = STATE(17), + [sym_single_line_if_statement] = STATE(17), + [sym_select_statement] = STATE(17), + [sym_for_statement] = STATE(17), + [sym__inline_for_statement] = STATE(4380), + [sym_for_each_statement] = STATE(17), + [sym__inline_for_each_statement] = STATE(4381), + [sym__for_header] = STATE(11370), + [sym__for_each_header] = STATE(11371), + [sym_do_statement] = STATE(17), + [sym__inline_do_statement] = STATE(4388), + [sym_while_statement] = STATE(17), + [sym_with_statement] = STATE(17), + [sym__inline_with_statement] = STATE(4389), + [sym_exit_statement] = STATE(17), + [sym_on_goto_statement] = STATE(17), + [sym_on_error_statement] = STATE(17), + [sym_resume_statement] = STATE(17), + [sym_goto_statement] = STATE(17), + [sym_label_statement] = STATE(17), + [sym_line_number_prefix] = STATE(11314), + [sym_line_number_statement] = STATE(17), + [sym_redim_statement] = STATE(17), + [sym_erase_statement] = STATE(17), + [sym_open_statement] = STATE(17), + [sym_input_statement] = STATE(17), + [sym_line_input_statement] = STATE(17), + [sym_print_statement] = STATE(17), + [sym_write_statement] = STATE(17), + [sym_debug_print_statement] = STATE(17), + [sym_close_statement] = STATE(17), + [sym_get_statement] = STATE(17), + [sym_put_statement] = STATE(17), + [sym_lock_statement] = STATE(17), + [sym_unlock_statement] = STATE(17), + [sym_seek_statement] = STATE(17), + [sym_raise_event_statement] = STATE(17), + [sym_name_statement] = STATE(17), + [sym_load_statement] = STATE(17), + [sym_unload_statement] = STATE(17), + [sym_def_type_statement] = STATE(17), + [sym_set_statement] = STATE(17), + [sym_assignment_statement] = STATE(17), + [sym_call_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym__primary_expression] = STATE(2177), + [sym__expression] = STATE(2177), + [sym__assignable_expression] = STATE(14337), + [sym__callable_expression] = STATE(360), + [sym__print_method_callee] = STATE(363), + [sym__print_method_call_expression] = STATE(4521), + [sym__qualified_print_method_expression] = STATE(4522), + [sym__implicit_print_method_expression] = STATE(4523), + [sym__line_method_expression] = STATE(12218), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2177), + [sym_addressof_expression] = STATE(2177), + [sym_type_of_expression] = STATE(2177), + [sym_member_expression] = STATE(1381), + [sym_qualified_member_expression] = STATE(912), + [sym_implicit_member_expression] = STATE(912), + [sym_parenthesized_expression] = STATE(2177), + [sym_binary_expression] = STATE(2177), + [sym_unary_expression] = STATE(2177), + [sym__signed_unary_expression] = STATE(1199), + [sym__literal] = STATE(2177), + [sym_boolean_literal] = STATE(2177), + [sym_file_number_literal] = STATE(2177), + [aux_sym_preprocessor_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(543), + [sym_newline] = ACTIONS(546), + [anon_sym_COLON] = ACTIONS(546), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(549), + [aux_sym_frm_property_statement_token1] = ACTIONS(552), + [anon_sym_DOT] = ACTIONS(555), + [anon_sym_BANG] = ACTIONS(558), + [aux_sym__attribute_identifier_token1] = ACTIONS(561), + [aux_sym_option_statement_token3] = ACTIONS(240), + [aux_sym_type_declaration_token1] = ACTIONS(564), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(567), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(249), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(570), + [aux_sym_enum_declaration_token1] = ACTIONS(573), + [aux_sym_declare_sub_statement_token1] = ACTIONS(576), + [aux_sym_declare_sub_statement_token2] = ACTIONS(260), + [aux_sym_declare_function_statement_token1] = ACTIONS(263), + [aux_sym_preprocessor_const_token1] = ACTIONS(579), + [aux_sym__property_get_header_token1] = ACTIONS(269), + [aux_sym_event_declaration_token1] = ACTIONS(582), + [sym_static_modifier] = ACTIONS(585), + [sym__dim_keyword] = ACTIONS(588), + [sym__redim_keyword] = ACTIONS(591), + [aux_sym_get_accessor_token1] = ACTIONS(594), + [aux_sym_set_accessor_token1] = ACTIONS(597), + [aux_sym_const_declaration_token1] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_as_type_clause_token2] = ACTIONS(606), + [aux_sym_dotted_type_expression_token1] = ACTIONS(609), + [aux_sym_visibility_token1] = ACTIONS(240), + [aux_sym_visibility_token2] = ACTIONS(240), + [aux_sym_elseif_fragment_token1] = ACTIONS(612), + [aux_sym_else_fragment_token1] = ACTIONS(615), + [aux_sym_select_statement_token1] = ACTIONS(618), + [aux_sym__for_header_token1] = ACTIONS(311), + [aux_sym_do_statement_token1] = ACTIONS(621), + [aux_sym_do_condition_token1] = ACTIONS(624), + [aux_sym_with_statement_token1] = ACTIONS(627), + [aux_sym_exit_statement_token1] = ACTIONS(630), + [sym_end_statement] = ACTIONS(546), + [aux_sym_on_goto_statement_token1] = ACTIONS(633), + [aux_sym_on_goto_statement_token2] = ACTIONS(636), + [aux_sym_on_error_statement_token2] = ACTIONS(639), + [sym__ambiguous_redim_statement] = ACTIONS(642), + [aux_sym_erase_statement_token1] = ACTIONS(645), + [aux_sym_open_statement_token1] = ACTIONS(648), + [aux_sym_file_mode_token2] = ACTIONS(651), + [aux_sym_file_access_token2] = ACTIONS(654), + [aux_sym_file_lock_token2] = ACTIONS(657), + [aux_sym_print_statement_token1] = ACTIONS(660), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(666), + [anon_sym_QMARK] = ACTIONS(669), + [aux_sym_close_statement_token1] = ACTIONS(672), + [aux_sym_put_statement_token1] = ACTIONS(675), + [aux_sym_unlock_statement_token1] = ACTIONS(678), + [aux_sym_seek_statement_token1] = ACTIONS(681), + [sym_reset_statement] = ACTIONS(684), + [aux_sym_raise_event_statement_token1] = ACTIONS(687), + [sym_stop_statement] = ACTIONS(684), + [sym_beep_statement] = ACTIONS(684), + [aux_sym_unload_statement_token1] = ACTIONS(690), + [aux_sym_def_type_statement_token1] = ACTIONS(693), + [aux_sym_def_type_statement_token2] = ACTIONS(693), + [aux_sym_def_type_statement_token3] = ACTIONS(693), + [aux_sym_def_type_statement_token4] = ACTIONS(693), + [aux_sym_def_type_statement_token5] = ACTIONS(693), + [aux_sym_def_type_statement_token6] = ACTIONS(693), + [aux_sym_def_type_statement_token7] = ACTIONS(693), + [aux_sym_def_type_statement_token8] = ACTIONS(693), + [aux_sym_def_type_statement_token9] = ACTIONS(693), + [aux_sym_def_type_statement_token10] = ACTIONS(693), + [aux_sym_def_type_statement_token11] = ACTIONS(693), + [aux_sym_def_type_statement_token12] = ACTIONS(693), + [aux_sym_def_type_statement_token13] = ACTIONS(693), + [aux_sym_def_type_statement_token14] = ACTIONS(693), + [aux_sym_call_statement_token1] = ACTIONS(696), + [sym__ambiguous_call_statement] = ACTIONS(699), + [aux_sym_addressof_expression_token1] = ACTIONS(702), + [aux_sym_type_of_expression_token1] = ACTIONS(705), + [aux_sym_unary_expression_token1] = ACTIONS(708), + [sym_string_literal] = ACTIONS(711), + [sym_number_literal] = ACTIONS(714), + [aux_sym_boolean_literal_token1] = ACTIONS(717), + [aux_sym_boolean_literal_token2] = ACTIONS(717), + [sym_nothing_literal] = ACTIONS(720), + [sym_null_literal] = ACTIONS(720), + [sym_empty_literal] = ACTIONS(720), + [sym_date_literal] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(723), + }, + [STATE(18)] = { + [sym_type_declaration] = STATE(17), + [sym_enum_declaration] = STATE(17), + [sym_declare_sub_statement] = STATE(17), + [sym_declare_function_statement] = STATE(17), + [sym_preprocessor_const] = STATE(17), + [sym_preprocessor_if] = STATE(17), + [sym__preprocessor_item] = STATE(17), + [sym_sub_declaration] = STATE(17), + [sym_function_declaration] = STATE(17), + [sym_property_get_declaration] = STATE(17), + [sym_property_let_declaration] = STATE(17), + [sym_property_set_declaration] = STATE(17), + [sym__sub_header] = STATE(12732), + [sym__function_header] = STATE(12733), + [sym__property_get_header] = STATE(12734), + [sym__property_let_header] = STATE(12735), + [sym__property_set_header] = STATE(12736), + [sym_conditional_sub_declaration] = STATE(17), + [sym_conditional_function_declaration] = STATE(17), + [sym_conditional_property_declaration] = STATE(17), + [sym__conditional_sub_headers] = STATE(14856), + [sym__conditional_function_headers] = STATE(14857), + [sym__conditional_property_headers] = STATE(14858), + [sym_event_declaration] = STATE(17), + [sym__procedure_modifier] = STATE(13006), + [sym__statement] = STATE(17), + [sym_variable_declaration] = STATE(17), + [sym_const_declaration] = STATE(17), + [sym_visibility] = STATE(10991), + [sym_if_statement] = STATE(17), + [sym_elseif_fragment] = STATE(17), + [sym_else_fragment] = STATE(17), + [sym_end_if_fragment] = STATE(17), + [sym_single_line_if_statement] = STATE(17), + [sym_select_statement] = STATE(17), + [sym_for_statement] = STATE(17), + [sym__inline_for_statement] = STATE(4380), + [sym_for_each_statement] = STATE(17), + [sym__inline_for_each_statement] = STATE(4381), + [sym__for_header] = STATE(11370), + [sym__for_each_header] = STATE(11371), + [sym_do_statement] = STATE(17), + [sym__inline_do_statement] = STATE(4388), + [sym_while_statement] = STATE(17), + [sym_with_statement] = STATE(17), + [sym__inline_with_statement] = STATE(4389), + [sym_exit_statement] = STATE(17), + [sym_on_goto_statement] = STATE(17), + [sym_on_error_statement] = STATE(17), + [sym_resume_statement] = STATE(17), + [sym_goto_statement] = STATE(17), + [sym_label_statement] = STATE(17), + [sym_line_number_prefix] = STATE(11314), + [sym_line_number_statement] = STATE(17), + [sym_redim_statement] = STATE(17), + [sym_erase_statement] = STATE(17), + [sym_open_statement] = STATE(17), + [sym_input_statement] = STATE(17), + [sym_line_input_statement] = STATE(17), + [sym_print_statement] = STATE(17), + [sym_write_statement] = STATE(17), + [sym_debug_print_statement] = STATE(17), + [sym_close_statement] = STATE(17), + [sym_get_statement] = STATE(17), + [sym_put_statement] = STATE(17), + [sym_lock_statement] = STATE(17), + [sym_unlock_statement] = STATE(17), + [sym_seek_statement] = STATE(17), + [sym_raise_event_statement] = STATE(17), + [sym_name_statement] = STATE(17), + [sym_load_statement] = STATE(17), + [sym_unload_statement] = STATE(17), + [sym_def_type_statement] = STATE(17), + [sym_set_statement] = STATE(17), + [sym_assignment_statement] = STATE(17), + [sym_call_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym__primary_expression] = STATE(2177), + [sym__expression] = STATE(2177), + [sym__assignable_expression] = STATE(14337), + [sym__callable_expression] = STATE(360), + [sym__print_method_callee] = STATE(363), + [sym__print_method_call_expression] = STATE(4521), + [sym__qualified_print_method_expression] = STATE(4522), + [sym__implicit_print_method_expression] = STATE(4523), + [sym__line_method_expression] = STATE(12218), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2177), + [sym_addressof_expression] = STATE(2177), + [sym_type_of_expression] = STATE(2177), + [sym_member_expression] = STATE(1381), + [sym_qualified_member_expression] = STATE(912), + [sym_implicit_member_expression] = STATE(912), + [sym_parenthesized_expression] = STATE(2177), + [sym_binary_expression] = STATE(2177), + [sym_unary_expression] = STATE(2177), + [sym__signed_unary_expression] = STATE(1199), + [sym__literal] = STATE(2177), + [sym_boolean_literal] = STATE(2177), + [sym_file_number_literal] = STATE(2177), + [aux_sym_preprocessor_block_repeat1] = STATE(17), + [sym_identifier] = ACTIONS(419), + [sym_newline] = ACTIONS(726), + [anon_sym_COLON] = ACTIONS(726), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(423), + [aux_sym_frm_property_statement_token1] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [aux_sym__attribute_identifier_token1] = ACTIONS(431), + [aux_sym_option_statement_token3] = ACTIONS(29), + [aux_sym_type_declaration_token1] = ACTIONS(433), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(435), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(215), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(439), + [aux_sym_enum_declaration_token1] = ACTIONS(441), + [aux_sym_declare_sub_statement_token1] = ACTIONS(443), + [aux_sym_declare_sub_statement_token2] = ACTIONS(41), + [aux_sym_declare_function_statement_token1] = ACTIONS(43), + [aux_sym_preprocessor_const_token1] = ACTIONS(445), + [aux_sym__property_get_header_token1] = ACTIONS(47), + [aux_sym_event_declaration_token1] = ACTIONS(447), + [sym_static_modifier] = ACTIONS(449), + [sym__dim_keyword] = ACTIONS(451), + [sym__redim_keyword] = ACTIONS(453), + [aux_sym_get_accessor_token1] = ACTIONS(455), + [aux_sym_set_accessor_token1] = ACTIONS(457), + [aux_sym_const_declaration_token1] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [aux_sym_as_type_clause_token2] = ACTIONS(463), + [aux_sym_dotted_type_expression_token1] = ACTIONS(465), + [aux_sym_visibility_token1] = ACTIONS(29), + [aux_sym_visibility_token2] = ACTIONS(29), + [aux_sym_elseif_fragment_token1] = ACTIONS(467), + [aux_sym_else_fragment_token1] = ACTIONS(469), + [aux_sym_select_statement_token1] = ACTIONS(471), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(473), + [aux_sym_do_condition_token1] = ACTIONS(475), + [aux_sym_with_statement_token1] = ACTIONS(477), + [aux_sym_exit_statement_token1] = ACTIONS(479), + [sym_end_statement] = ACTIONS(726), + [aux_sym_on_goto_statement_token1] = ACTIONS(481), + [aux_sym_on_goto_statement_token2] = ACTIONS(483), + [aux_sym_on_error_statement_token2] = ACTIONS(485), + [sym__ambiguous_redim_statement] = ACTIONS(487), + [aux_sym_erase_statement_token1] = ACTIONS(489), + [aux_sym_open_statement_token1] = ACTIONS(491), + [aux_sym_file_mode_token2] = ACTIONS(493), + [aux_sym_file_access_token2] = ACTIONS(495), + [aux_sym_file_lock_token2] = ACTIONS(497), + [aux_sym_print_statement_token1] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_QMARK] = ACTIONS(505), + [aux_sym_close_statement_token1] = ACTIONS(507), + [aux_sym_put_statement_token1] = ACTIONS(509), + [aux_sym_unlock_statement_token1] = ACTIONS(511), + [aux_sym_seek_statement_token1] = ACTIONS(513), + [sym_reset_statement] = ACTIONS(728), + [aux_sym_raise_event_statement_token1] = ACTIONS(517), + [sym_stop_statement] = ACTIONS(728), + [sym_beep_statement] = ACTIONS(728), + [aux_sym_unload_statement_token1] = ACTIONS(519), + [aux_sym_def_type_statement_token1] = ACTIONS(521), + [aux_sym_def_type_statement_token2] = ACTIONS(521), + [aux_sym_def_type_statement_token3] = ACTIONS(521), + [aux_sym_def_type_statement_token4] = ACTIONS(521), + [aux_sym_def_type_statement_token5] = ACTIONS(521), + [aux_sym_def_type_statement_token6] = ACTIONS(521), + [aux_sym_def_type_statement_token7] = ACTIONS(521), + [aux_sym_def_type_statement_token8] = ACTIONS(521), + [aux_sym_def_type_statement_token9] = ACTIONS(521), + [aux_sym_def_type_statement_token10] = ACTIONS(521), + [aux_sym_def_type_statement_token11] = ACTIONS(521), + [aux_sym_def_type_statement_token12] = ACTIONS(521), + [aux_sym_def_type_statement_token13] = ACTIONS(521), + [aux_sym_def_type_statement_token14] = ACTIONS(521), + [aux_sym_call_statement_token1] = ACTIONS(523), + [sym__ambiguous_call_statement] = ACTIONS(525), + [aux_sym_addressof_expression_token1] = ACTIONS(527), + [aux_sym_type_of_expression_token1] = ACTIONS(529), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(533), + [sym_number_literal] = ACTIONS(535), + [aux_sym_boolean_literal_token1] = ACTIONS(537), + [aux_sym_boolean_literal_token2] = ACTIONS(537), + [sym_nothing_literal] = ACTIONS(539), + [sym_null_literal] = ACTIONS(539), + [sym_empty_literal] = ACTIONS(539), + [sym_date_literal] = ACTIONS(533), + [anon_sym_POUND] = ACTIONS(541), + }, + [STATE(19)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(20), + [sym_end_property_statement] = STATE(7928), + [sym_block] = STATE(13603), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(734), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(20)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(5779), + [sym_end_property_statement] = STATE(7996), + [sym_block] = STATE(13327), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(734), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(21)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(5779), + [sym_end_sub_statement] = STATE(7972), + [sym_block] = STATE(13471), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(848), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(22)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(23), + [sym_end_function_statement] = STATE(7925), + [sym_block] = STATE(13593), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(850), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(23)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(5779), + [sym_end_function_statement] = STATE(7990), + [sym_block] = STATE(13560), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(850), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(24)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(21), + [sym_end_sub_statement] = STATE(7923), + [sym_block] = STATE(13562), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(848), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(25)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(30), + [sym_end_sub_statement] = STATE(3866), + [sym_block] = STATE(13302), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(852), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(26)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(31), + [sym_end_function_statement] = STATE(3874), + [sym_block] = STATE(13436), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(854), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(27)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(32), + [sym_end_property_statement] = STATE(3876), + [sym_block] = STATE(13505), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(856), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(28)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(48), + [sym_end_property_statement] = STATE(3877), + [sym_block] = STATE(13609), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(856), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(29)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(34), + [sym_end_property_statement] = STATE(3879), + [sym_block] = STATE(13110), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(856), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(30)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(5779), + [sym_end_sub_statement] = STATE(3919), + [sym_block] = STATE(13616), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(852), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(31)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(5779), + [sym_end_function_statement] = STATE(3933), + [sym_block] = STATE(13117), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(854), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(32)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(5779), + [sym_end_property_statement] = STATE(3936), + [sym_block] = STATE(13123), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(856), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(33)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(5779), + [sym_end_property_statement] = STATE(7998), + [sym_block] = STATE(13396), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(734), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(34)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(5779), + [sym_end_property_statement] = STATE(3940), + [sym_block] = STATE(13391), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(856), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(35)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(40), + [sym_end_sub_statement] = STATE(4551), + [sym_block] = STATE(13506), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(858), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(36)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(41), + [sym_end_function_statement] = STATE(4555), + [sym_block] = STATE(13531), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(860), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(37)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(42), + [sym_end_property_statement] = STATE(4556), + [sym_block] = STATE(13548), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(862), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(38)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(43), + [sym_end_property_statement] = STATE(4557), + [sym_block] = STATE(13555), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(862), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(39)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(44), + [sym_end_property_statement] = STATE(4558), + [sym_block] = STATE(13573), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(862), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(40)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(5779), + [sym_end_sub_statement] = STATE(4579), + [sym_block] = STATE(13630), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(858), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(41)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(5779), + [sym_end_function_statement] = STATE(4581), + [sym_block] = STATE(13636), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(860), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(42)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(5779), + [sym_end_property_statement] = STATE(4584), + [sym_block] = STATE(13641), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(862), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(43)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(5779), + [sym_end_property_statement] = STATE(4586), + [sym_block] = STATE(13322), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(862), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(44)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(5779), + [sym_end_property_statement] = STATE(4588), + [sym_block] = STATE(13403), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(862), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(45)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(33), + [sym_end_property_statement] = STATE(7929), + [sym_block] = STATE(13607), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(734), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(46)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(5779), + [sym_end_property_statement] = STATE(7993), + [sym_block] = STATE(13246), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(734), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(47)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(46), + [sym_end_property_statement] = STATE(7927), + [sym_block] = STATE(13598), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(734), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(48)] = { + [sym__statement_separator] = STATE(177), + [sym_attribute_statement] = STATE(13781), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [aux_sym__procedure_attributes] = STATE(5779), + [sym_end_property_statement] = STATE(3938), + [sym_block] = STATE(13376), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(856), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [aux_sym_attribute_statement_token1] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(49)] = { + [sym_preprocessor_const] = STATE(51), + [sym_preprocessor_if] = STATE(51), + [sym_conditional_branch_body] = STATE(12306), + [sym__statement] = STATE(51), + [sym_variable_declaration] = STATE(51), + [sym_const_declaration] = STATE(51), + [sym_visibility] = STATE(11799), + [sym_if_statement] = STATE(51), + [sym_elseif_fragment] = STATE(51), + [sym_else_fragment] = STATE(51), + [sym_end_if_fragment] = STATE(51), + [sym_single_line_if_statement] = STATE(51), + [sym_select_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym__inline_for_statement] = STATE(5250), + [sym_for_each_statement] = STATE(51), + [sym__inline_for_each_statement] = STATE(5251), + [sym__for_header] = STATE(11307), + [sym__for_each_header] = STATE(11308), + [sym_do_statement] = STATE(51), + [sym__inline_do_statement] = STATE(5252), + [sym_while_statement] = STATE(51), + [sym_with_statement] = STATE(51), + [sym__inline_with_statement] = STATE(5253), + [sym_exit_statement] = STATE(51), + [sym_on_goto_statement] = STATE(51), + [sym_on_error_statement] = STATE(51), + [sym_resume_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym_label_statement] = STATE(51), + [sym_line_number_prefix] = STATE(11492), + [sym_line_number_statement] = STATE(51), + [sym_redim_statement] = STATE(51), + [sym_erase_statement] = STATE(51), + [sym_open_statement] = STATE(51), + [sym_input_statement] = STATE(51), + [sym_line_input_statement] = STATE(51), + [sym_print_statement] = STATE(51), + [sym_write_statement] = STATE(51), + [sym_debug_print_statement] = STATE(51), + [sym_close_statement] = STATE(51), + [sym_get_statement] = STATE(51), + [sym_put_statement] = STATE(51), + [sym_lock_statement] = STATE(51), + [sym_unlock_statement] = STATE(51), + [sym_seek_statement] = STATE(51), + [sym_raise_event_statement] = STATE(51), + [sym_name_statement] = STATE(51), + [sym_load_statement] = STATE(51), + [sym_unload_statement] = STATE(51), + [sym_def_type_statement] = STATE(51), + [sym_set_statement] = STATE(51), + [sym_assignment_statement] = STATE(51), + [sym_call_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym__primary_expression] = STATE(2614), + [sym__expression] = STATE(2614), + [sym__assignable_expression] = STATE(14425), + [sym__callable_expression] = STATE(378), + [sym__print_method_callee] = STATE(393), + [sym__print_method_call_expression] = STATE(5499), + [sym__qualified_print_method_expression] = STATE(5500), + [sym__implicit_print_method_expression] = STATE(5501), + [sym__line_method_expression] = STATE(12228), + [sym_call_expression] = STATE(2293), + [sym_new_expression] = STATE(2614), + [sym_addressof_expression] = STATE(2614), + [sym_type_of_expression] = STATE(2614), + [sym_member_expression] = STATE(2211), + [sym_qualified_member_expression] = STATE(2182), + [sym_implicit_member_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2614), + [sym_binary_expression] = STATE(2614), + [sym_unary_expression] = STATE(2614), + [sym__signed_unary_expression] = STATE(2203), + [sym__literal] = STATE(2614), + [sym_boolean_literal] = STATE(2614), + [sym_file_number_literal] = STATE(2614), + [aux_sym__conditional_sub_headers_repeat1] = STATE(12309), + [sym_identifier] = ACTIONS(864), + [sym_newline] = ACTIONS(867), + [anon_sym_COLON] = ACTIONS(867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(869), + [aux_sym_frm_property_statement_token1] = ACTIONS(872), + [aux_sym_attribute_statement_token1] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(880), + [aux_sym__attribute_identifier_token1] = ACTIONS(883), + [aux_sym_option_statement_token3] = ACTIONS(886), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(889), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(892), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(894), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(897), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(899), + [aux_sym_preprocessor_const_token1] = ACTIONS(901), + [sym_static_modifier] = ACTIONS(904), + [sym__dim_keyword] = ACTIONS(907), + [sym__redim_keyword] = ACTIONS(910), + [aux_sym_get_accessor_token1] = ACTIONS(913), + [aux_sym_set_accessor_token1] = ACTIONS(916), + [aux_sym_const_declaration_token1] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(922), + [aux_sym_as_type_clause_token2] = ACTIONS(925), + [aux_sym_dotted_type_expression_token1] = ACTIONS(928), + [aux_sym_visibility_token1] = ACTIONS(886), + [aux_sym_visibility_token2] = ACTIONS(886), + [aux_sym_elseif_fragment_token1] = ACTIONS(931), + [aux_sym_else_fragment_token1] = ACTIONS(934), + [aux_sym_select_statement_token1] = ACTIONS(937), + [aux_sym__for_header_token1] = ACTIONS(940), + [aux_sym_do_statement_token1] = ACTIONS(943), + [aux_sym_do_condition_token1] = ACTIONS(946), + [aux_sym_with_statement_token1] = ACTIONS(949), + [aux_sym_exit_statement_token1] = ACTIONS(952), + [sym_end_statement] = ACTIONS(955), + [aux_sym_on_goto_statement_token1] = ACTIONS(958), + [aux_sym_on_goto_statement_token2] = ACTIONS(961), + [aux_sym_on_error_statement_token2] = ACTIONS(964), + [sym__ambiguous_redim_statement] = ACTIONS(967), + [aux_sym_erase_statement_token1] = ACTIONS(970), + [aux_sym_open_statement_token1] = ACTIONS(973), + [aux_sym_file_mode_token2] = ACTIONS(976), + [aux_sym_file_access_token2] = ACTIONS(979), + [aux_sym_file_lock_token2] = ACTIONS(982), + [aux_sym_print_statement_token1] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(994), + [aux_sym_close_statement_token1] = ACTIONS(997), + [aux_sym_put_statement_token1] = ACTIONS(1000), + [aux_sym_unlock_statement_token1] = ACTIONS(1003), + [aux_sym_seek_statement_token1] = ACTIONS(1006), + [sym_reset_statement] = ACTIONS(1009), + [aux_sym_raise_event_statement_token1] = ACTIONS(1012), + [sym_stop_statement] = ACTIONS(1009), + [sym_beep_statement] = ACTIONS(1009), + [aux_sym_unload_statement_token1] = ACTIONS(1015), + [aux_sym_def_type_statement_token1] = ACTIONS(1018), + [aux_sym_def_type_statement_token2] = ACTIONS(1018), + [aux_sym_def_type_statement_token3] = ACTIONS(1018), + [aux_sym_def_type_statement_token4] = ACTIONS(1018), + [aux_sym_def_type_statement_token5] = ACTIONS(1018), + [aux_sym_def_type_statement_token6] = ACTIONS(1018), + [aux_sym_def_type_statement_token7] = ACTIONS(1018), + [aux_sym_def_type_statement_token8] = ACTIONS(1018), + [aux_sym_def_type_statement_token9] = ACTIONS(1018), + [aux_sym_def_type_statement_token10] = ACTIONS(1018), + [aux_sym_def_type_statement_token11] = ACTIONS(1018), + [aux_sym_def_type_statement_token12] = ACTIONS(1018), + [aux_sym_def_type_statement_token13] = ACTIONS(1018), + [aux_sym_def_type_statement_token14] = ACTIONS(1018), + [aux_sym_call_statement_token1] = ACTIONS(1021), + [sym__ambiguous_call_statement] = ACTIONS(1024), + [aux_sym_addressof_expression_token1] = ACTIONS(1027), + [aux_sym_type_of_expression_token1] = ACTIONS(1030), + [aux_sym_unary_expression_token1] = ACTIONS(1033), + [sym_string_literal] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1039), + [aux_sym_boolean_literal_token1] = ACTIONS(1042), + [aux_sym_boolean_literal_token2] = ACTIONS(1042), + [sym_nothing_literal] = ACTIONS(1045), + [sym_null_literal] = ACTIONS(1045), + [sym_empty_literal] = ACTIONS(1045), + [sym_date_literal] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(1048), + }, + [STATE(50)] = { + [sym_preprocessor_const] = STATE(51), + [sym_preprocessor_if] = STATE(51), + [sym_conditional_branch_body] = STATE(12320), + [sym__statement] = STATE(51), + [sym_variable_declaration] = STATE(51), + [sym_const_declaration] = STATE(51), + [sym_visibility] = STATE(11799), + [sym_if_statement] = STATE(51), + [sym_elseif_fragment] = STATE(51), + [sym_else_fragment] = STATE(51), + [sym_end_if_fragment] = STATE(51), + [sym_single_line_if_statement] = STATE(51), + [sym_select_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym__inline_for_statement] = STATE(5250), + [sym_for_each_statement] = STATE(51), + [sym__inline_for_each_statement] = STATE(5251), + [sym__for_header] = STATE(11307), + [sym__for_each_header] = STATE(11308), + [sym_do_statement] = STATE(51), + [sym__inline_do_statement] = STATE(5252), + [sym_while_statement] = STATE(51), + [sym_with_statement] = STATE(51), + [sym__inline_with_statement] = STATE(5253), + [sym_exit_statement] = STATE(51), + [sym_on_goto_statement] = STATE(51), + [sym_on_error_statement] = STATE(51), + [sym_resume_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym_label_statement] = STATE(51), + [sym_line_number_prefix] = STATE(11492), + [sym_line_number_statement] = STATE(51), + [sym_redim_statement] = STATE(51), + [sym_erase_statement] = STATE(51), + [sym_open_statement] = STATE(51), + [sym_input_statement] = STATE(51), + [sym_line_input_statement] = STATE(51), + [sym_print_statement] = STATE(51), + [sym_write_statement] = STATE(51), + [sym_debug_print_statement] = STATE(51), + [sym_close_statement] = STATE(51), + [sym_get_statement] = STATE(51), + [sym_put_statement] = STATE(51), + [sym_lock_statement] = STATE(51), + [sym_unlock_statement] = STATE(51), + [sym_seek_statement] = STATE(51), + [sym_raise_event_statement] = STATE(51), + [sym_name_statement] = STATE(51), + [sym_load_statement] = STATE(51), + [sym_unload_statement] = STATE(51), + [sym_def_type_statement] = STATE(51), + [sym_set_statement] = STATE(51), + [sym_assignment_statement] = STATE(51), + [sym_call_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym__primary_expression] = STATE(2614), + [sym__expression] = STATE(2614), + [sym__assignable_expression] = STATE(14425), + [sym__callable_expression] = STATE(378), + [sym__print_method_callee] = STATE(393), + [sym__print_method_call_expression] = STATE(5499), + [sym__qualified_print_method_expression] = STATE(5500), + [sym__implicit_print_method_expression] = STATE(5501), + [sym__line_method_expression] = STATE(12228), + [sym_call_expression] = STATE(2293), + [sym_new_expression] = STATE(2614), + [sym_addressof_expression] = STATE(2614), + [sym_type_of_expression] = STATE(2614), + [sym_member_expression] = STATE(2211), + [sym_qualified_member_expression] = STATE(2182), + [sym_implicit_member_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2614), + [sym_binary_expression] = STATE(2614), + [sym_unary_expression] = STATE(2614), + [sym__signed_unary_expression] = STATE(2203), + [sym__literal] = STATE(2614), + [sym_boolean_literal] = STATE(2614), + [sym_file_number_literal] = STATE(2614), + [aux_sym__conditional_function_headers_repeat1] = STATE(12327), + [sym_identifier] = ACTIONS(864), + [sym_newline] = ACTIONS(867), + [anon_sym_COLON] = ACTIONS(867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(869), + [aux_sym_frm_property_statement_token1] = ACTIONS(872), + [aux_sym_attribute_statement_token1] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(880), + [aux_sym__attribute_identifier_token1] = ACTIONS(883), + [aux_sym_option_statement_token3] = ACTIONS(886), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(889), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(1051), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(894), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(1053), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(1055), + [aux_sym_preprocessor_const_token1] = ACTIONS(901), + [sym_static_modifier] = ACTIONS(904), + [sym__dim_keyword] = ACTIONS(907), + [sym__redim_keyword] = ACTIONS(910), + [aux_sym_get_accessor_token1] = ACTIONS(913), + [aux_sym_set_accessor_token1] = ACTIONS(916), + [aux_sym_const_declaration_token1] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(922), + [aux_sym_as_type_clause_token2] = ACTIONS(925), + [aux_sym_dotted_type_expression_token1] = ACTIONS(928), + [aux_sym_visibility_token1] = ACTIONS(886), + [aux_sym_visibility_token2] = ACTIONS(886), + [aux_sym_elseif_fragment_token1] = ACTIONS(931), + [aux_sym_else_fragment_token1] = ACTIONS(934), + [aux_sym_select_statement_token1] = ACTIONS(937), + [aux_sym__for_header_token1] = ACTIONS(940), + [aux_sym_do_statement_token1] = ACTIONS(943), + [aux_sym_do_condition_token1] = ACTIONS(946), + [aux_sym_with_statement_token1] = ACTIONS(949), + [aux_sym_exit_statement_token1] = ACTIONS(952), + [sym_end_statement] = ACTIONS(955), + [aux_sym_on_goto_statement_token1] = ACTIONS(958), + [aux_sym_on_goto_statement_token2] = ACTIONS(961), + [aux_sym_on_error_statement_token2] = ACTIONS(964), + [sym__ambiguous_redim_statement] = ACTIONS(967), + [aux_sym_erase_statement_token1] = ACTIONS(970), + [aux_sym_open_statement_token1] = ACTIONS(973), + [aux_sym_file_mode_token2] = ACTIONS(976), + [aux_sym_file_access_token2] = ACTIONS(979), + [aux_sym_file_lock_token2] = ACTIONS(982), + [aux_sym_print_statement_token1] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(994), + [aux_sym_close_statement_token1] = ACTIONS(997), + [aux_sym_put_statement_token1] = ACTIONS(1000), + [aux_sym_unlock_statement_token1] = ACTIONS(1003), + [aux_sym_seek_statement_token1] = ACTIONS(1006), + [sym_reset_statement] = ACTIONS(1009), + [aux_sym_raise_event_statement_token1] = ACTIONS(1012), + [sym_stop_statement] = ACTIONS(1009), + [sym_beep_statement] = ACTIONS(1009), + [aux_sym_unload_statement_token1] = ACTIONS(1015), + [aux_sym_def_type_statement_token1] = ACTIONS(1018), + [aux_sym_def_type_statement_token2] = ACTIONS(1018), + [aux_sym_def_type_statement_token3] = ACTIONS(1018), + [aux_sym_def_type_statement_token4] = ACTIONS(1018), + [aux_sym_def_type_statement_token5] = ACTIONS(1018), + [aux_sym_def_type_statement_token6] = ACTIONS(1018), + [aux_sym_def_type_statement_token7] = ACTIONS(1018), + [aux_sym_def_type_statement_token8] = ACTIONS(1018), + [aux_sym_def_type_statement_token9] = ACTIONS(1018), + [aux_sym_def_type_statement_token10] = ACTIONS(1018), + [aux_sym_def_type_statement_token11] = ACTIONS(1018), + [aux_sym_def_type_statement_token12] = ACTIONS(1018), + [aux_sym_def_type_statement_token13] = ACTIONS(1018), + [aux_sym_def_type_statement_token14] = ACTIONS(1018), + [aux_sym_call_statement_token1] = ACTIONS(1021), + [sym__ambiguous_call_statement] = ACTIONS(1024), + [aux_sym_addressof_expression_token1] = ACTIONS(1027), + [aux_sym_type_of_expression_token1] = ACTIONS(1030), + [aux_sym_unary_expression_token1] = ACTIONS(1033), + [sym_string_literal] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(1039), + [aux_sym_boolean_literal_token1] = ACTIONS(1042), + [aux_sym_boolean_literal_token2] = ACTIONS(1042), + [sym_nothing_literal] = ACTIONS(1045), + [sym_null_literal] = ACTIONS(1045), + [sym_empty_literal] = ACTIONS(1045), + [sym_date_literal] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(1048), + }, + [STATE(51)] = { + [sym__statement_separator] = STATE(53), + [sym_preprocessor_const] = STATE(53), + [sym_preprocessor_if] = STATE(53), + [sym__statement] = STATE(53), + [sym_variable_declaration] = STATE(53), + [sym_const_declaration] = STATE(53), + [sym_visibility] = STATE(11799), + [sym_if_statement] = STATE(53), + [sym_elseif_fragment] = STATE(53), + [sym_else_fragment] = STATE(53), + [sym_end_if_fragment] = STATE(53), + [sym_single_line_if_statement] = STATE(53), + [sym_select_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym__inline_for_statement] = STATE(5250), + [sym_for_each_statement] = STATE(53), + [sym__inline_for_each_statement] = STATE(5251), + [sym__for_header] = STATE(11307), + [sym__for_each_header] = STATE(11308), + [sym_do_statement] = STATE(53), + [sym__inline_do_statement] = STATE(5252), + [sym_while_statement] = STATE(53), + [sym_with_statement] = STATE(53), + [sym__inline_with_statement] = STATE(5253), + [sym_exit_statement] = STATE(53), + [sym_on_goto_statement] = STATE(53), + [sym_on_error_statement] = STATE(53), + [sym_resume_statement] = STATE(53), + [sym_goto_statement] = STATE(53), + [sym_label_statement] = STATE(53), + [sym_line_number_prefix] = STATE(11492), + [sym_line_number_statement] = STATE(53), + [sym_redim_statement] = STATE(53), + [sym_erase_statement] = STATE(53), + [sym_open_statement] = STATE(53), + [sym_input_statement] = STATE(53), + [sym_line_input_statement] = STATE(53), + [sym_print_statement] = STATE(53), + [sym_write_statement] = STATE(53), + [sym_debug_print_statement] = STATE(53), + [sym_close_statement] = STATE(53), + [sym_get_statement] = STATE(53), + [sym_put_statement] = STATE(53), + [sym_lock_statement] = STATE(53), + [sym_unlock_statement] = STATE(53), + [sym_seek_statement] = STATE(53), + [sym_raise_event_statement] = STATE(53), + [sym_name_statement] = STATE(53), + [sym_load_statement] = STATE(53), + [sym_unload_statement] = STATE(53), + [sym_def_type_statement] = STATE(53), + [sym_set_statement] = STATE(53), + [sym_assignment_statement] = STATE(53), + [sym_call_statement] = STATE(53), + [sym_expression_statement] = STATE(53), + [sym__primary_expression] = STATE(2614), + [sym__expression] = STATE(2614), + [sym__assignable_expression] = STATE(14425), + [sym__callable_expression] = STATE(378), + [sym__print_method_callee] = STATE(393), + [sym__print_method_call_expression] = STATE(5499), + [sym__qualified_print_method_expression] = STATE(5500), + [sym__implicit_print_method_expression] = STATE(5501), + [sym__line_method_expression] = STATE(12228), + [sym_call_expression] = STATE(2293), + [sym_new_expression] = STATE(2614), + [sym_addressof_expression] = STATE(2614), + [sym_type_of_expression] = STATE(2614), + [sym_member_expression] = STATE(2211), + [sym_qualified_member_expression] = STATE(2182), + [sym_implicit_member_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2614), + [sym_binary_expression] = STATE(2614), + [sym_unary_expression] = STATE(2614), + [sym__signed_unary_expression] = STATE(2203), + [sym__literal] = STATE(2614), + [sym_boolean_literal] = STATE(2614), + [sym_file_number_literal] = STATE(2614), + [aux_sym_block_repeat1] = STATE(53), + [sym_identifier] = ACTIONS(1057), + [sym_newline] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1059), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1061), + [aux_sym_frm_property_statement_token1] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [aux_sym__attribute_identifier_token1] = ACTIONS(1069), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1071), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(1073), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1075), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(1073), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(1073), + [aux_sym_preprocessor_const_token1] = ACTIONS(1077), + [sym_static_modifier] = ACTIONS(1079), + [sym__dim_keyword] = ACTIONS(1081), + [sym__redim_keyword] = ACTIONS(1083), + [aux_sym_get_accessor_token1] = ACTIONS(1085), + [aux_sym_set_accessor_token1] = ACTIONS(1087), + [aux_sym_const_declaration_token1] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_as_type_clause_token2] = ACTIONS(1093), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1095), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1097), + [aux_sym_else_fragment_token1] = ACTIONS(1099), + [aux_sym_select_statement_token1] = ACTIONS(1101), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1103), + [aux_sym_do_condition_token1] = ACTIONS(1105), + [aux_sym_with_statement_token1] = ACTIONS(1107), + [aux_sym_exit_statement_token1] = ACTIONS(1109), + [sym_end_statement] = ACTIONS(1059), + [aux_sym_on_goto_statement_token1] = ACTIONS(1111), + [aux_sym_on_goto_statement_token2] = ACTIONS(1113), + [aux_sym_on_error_statement_token2] = ACTIONS(1115), + [sym__ambiguous_redim_statement] = ACTIONS(1117), + [aux_sym_erase_statement_token1] = ACTIONS(1119), + [aux_sym_open_statement_token1] = ACTIONS(1121), + [aux_sym_file_mode_token2] = ACTIONS(1123), + [aux_sym_file_access_token2] = ACTIONS(1125), + [aux_sym_file_lock_token2] = ACTIONS(1127), + [aux_sym_print_statement_token1] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [aux_sym_close_statement_token1] = ACTIONS(1137), + [aux_sym_put_statement_token1] = ACTIONS(1139), + [aux_sym_unlock_statement_token1] = ACTIONS(1141), + [aux_sym_seek_statement_token1] = ACTIONS(1143), + [sym_reset_statement] = ACTIONS(1145), + [aux_sym_raise_event_statement_token1] = ACTIONS(1147), + [sym_stop_statement] = ACTIONS(1145), + [sym_beep_statement] = ACTIONS(1145), + [aux_sym_unload_statement_token1] = ACTIONS(1149), + [aux_sym_def_type_statement_token1] = ACTIONS(1151), + [aux_sym_def_type_statement_token2] = ACTIONS(1151), + [aux_sym_def_type_statement_token3] = ACTIONS(1151), + [aux_sym_def_type_statement_token4] = ACTIONS(1151), + [aux_sym_def_type_statement_token5] = ACTIONS(1151), + [aux_sym_def_type_statement_token6] = ACTIONS(1151), + [aux_sym_def_type_statement_token7] = ACTIONS(1151), + [aux_sym_def_type_statement_token8] = ACTIONS(1151), + [aux_sym_def_type_statement_token9] = ACTIONS(1151), + [aux_sym_def_type_statement_token10] = ACTIONS(1151), + [aux_sym_def_type_statement_token11] = ACTIONS(1151), + [aux_sym_def_type_statement_token12] = ACTIONS(1151), + [aux_sym_def_type_statement_token13] = ACTIONS(1151), + [aux_sym_def_type_statement_token14] = ACTIONS(1151), + [aux_sym_call_statement_token1] = ACTIONS(1153), + [sym__ambiguous_call_statement] = ACTIONS(1155), + [aux_sym_addressof_expression_token1] = ACTIONS(1157), + [aux_sym_type_of_expression_token1] = ACTIONS(1159), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1165), + [aux_sym_boolean_literal_token1] = ACTIONS(1167), + [aux_sym_boolean_literal_token2] = ACTIONS(1167), + [sym_nothing_literal] = ACTIONS(1169), + [sym_null_literal] = ACTIONS(1169), + [sym_empty_literal] = ACTIONS(1169), + [sym_date_literal] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(1171), + }, + [STATE(52)] = { + [sym__statement_separator] = STATE(52), + [sym_preprocessor_const] = STATE(52), + [sym_preprocessor_if] = STATE(52), + [sym__statement] = STATE(52), + [sym_variable_declaration] = STATE(52), + [sym_const_declaration] = STATE(52), + [sym_visibility] = STATE(11799), + [sym_if_statement] = STATE(52), + [sym_elseif_fragment] = STATE(52), + [sym_else_fragment] = STATE(52), + [sym_end_if_fragment] = STATE(52), + [sym_single_line_if_statement] = STATE(52), + [sym_select_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym__inline_for_statement] = STATE(5250), + [sym_for_each_statement] = STATE(52), + [sym__inline_for_each_statement] = STATE(5251), + [sym__for_header] = STATE(11307), + [sym__for_each_header] = STATE(11308), + [sym_do_statement] = STATE(52), + [sym__inline_do_statement] = STATE(5252), + [sym_while_statement] = STATE(52), + [sym_with_statement] = STATE(52), + [sym__inline_with_statement] = STATE(5253), + [sym_exit_statement] = STATE(52), + [sym_on_goto_statement] = STATE(52), + [sym_on_error_statement] = STATE(52), + [sym_resume_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym_label_statement] = STATE(52), + [sym_line_number_prefix] = STATE(11492), + [sym_line_number_statement] = STATE(52), + [sym_redim_statement] = STATE(52), + [sym_erase_statement] = STATE(52), + [sym_open_statement] = STATE(52), + [sym_input_statement] = STATE(52), + [sym_line_input_statement] = STATE(52), + [sym_print_statement] = STATE(52), + [sym_write_statement] = STATE(52), + [sym_debug_print_statement] = STATE(52), + [sym_close_statement] = STATE(52), + [sym_get_statement] = STATE(52), + [sym_put_statement] = STATE(52), + [sym_lock_statement] = STATE(52), + [sym_unlock_statement] = STATE(52), + [sym_seek_statement] = STATE(52), + [sym_raise_event_statement] = STATE(52), + [sym_name_statement] = STATE(52), + [sym_load_statement] = STATE(52), + [sym_unload_statement] = STATE(52), + [sym_def_type_statement] = STATE(52), + [sym_set_statement] = STATE(52), + [sym_assignment_statement] = STATE(52), + [sym_call_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym__primary_expression] = STATE(2614), + [sym__expression] = STATE(2614), + [sym__assignable_expression] = STATE(14425), + [sym__callable_expression] = STATE(378), + [sym__print_method_callee] = STATE(393), + [sym__print_method_call_expression] = STATE(5499), + [sym__qualified_print_method_expression] = STATE(5500), + [sym__implicit_print_method_expression] = STATE(5501), + [sym__line_method_expression] = STATE(12228), + [sym_call_expression] = STATE(2293), + [sym_new_expression] = STATE(2614), + [sym_addressof_expression] = STATE(2614), + [sym_type_of_expression] = STATE(2614), + [sym_member_expression] = STATE(2211), + [sym_qualified_member_expression] = STATE(2182), + [sym_implicit_member_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2614), + [sym_binary_expression] = STATE(2614), + [sym_unary_expression] = STATE(2614), + [sym__signed_unary_expression] = STATE(2203), + [sym__literal] = STATE(2614), + [sym_boolean_literal] = STATE(2614), + [sym_file_number_literal] = STATE(2614), + [aux_sym_block_repeat1] = STATE(52), + [sym_identifier] = ACTIONS(1173), + [sym_newline] = ACTIONS(1176), + [anon_sym_COLON] = ACTIONS(1176), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1179), + [aux_sym_frm_property_statement_token1] = ACTIONS(1182), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1188), + [aux_sym__attribute_identifier_token1] = ACTIONS(1191), + [aux_sym_option_statement_token3] = ACTIONS(1194), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1197), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(1200), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1202), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(1200), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(1200), + [aux_sym_preprocessor_const_token1] = ACTIONS(1205), + [sym_static_modifier] = ACTIONS(1208), + [sym__dim_keyword] = ACTIONS(1211), + [sym__redim_keyword] = ACTIONS(1214), + [aux_sym_get_accessor_token1] = ACTIONS(1217), + [aux_sym_set_accessor_token1] = ACTIONS(1220), + [aux_sym_const_declaration_token1] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1226), + [aux_sym_as_type_clause_token2] = ACTIONS(1229), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1232), + [aux_sym_visibility_token1] = ACTIONS(1194), + [aux_sym_visibility_token2] = ACTIONS(1194), + [aux_sym_elseif_fragment_token1] = ACTIONS(1235), + [aux_sym_else_fragment_token1] = ACTIONS(1238), + [aux_sym_select_statement_token1] = ACTIONS(1241), + [aux_sym__for_header_token1] = ACTIONS(1244), + [aux_sym_do_statement_token1] = ACTIONS(1247), + [aux_sym_do_condition_token1] = ACTIONS(1250), + [aux_sym_with_statement_token1] = ACTIONS(1253), + [aux_sym_exit_statement_token1] = ACTIONS(1256), + [sym_end_statement] = ACTIONS(1176), + [aux_sym_on_goto_statement_token1] = ACTIONS(1259), + [aux_sym_on_goto_statement_token2] = ACTIONS(1262), + [aux_sym_on_error_statement_token2] = ACTIONS(1265), + [sym__ambiguous_redim_statement] = ACTIONS(1268), + [aux_sym_erase_statement_token1] = ACTIONS(1271), + [aux_sym_open_statement_token1] = ACTIONS(1274), + [aux_sym_file_mode_token2] = ACTIONS(1277), + [aux_sym_file_access_token2] = ACTIONS(1280), + [aux_sym_file_lock_token2] = ACTIONS(1283), + [aux_sym_print_statement_token1] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_QMARK] = ACTIONS(1295), + [aux_sym_close_statement_token1] = ACTIONS(1298), + [aux_sym_put_statement_token1] = ACTIONS(1301), + [aux_sym_unlock_statement_token1] = ACTIONS(1304), + [aux_sym_seek_statement_token1] = ACTIONS(1307), + [sym_reset_statement] = ACTIONS(1310), + [aux_sym_raise_event_statement_token1] = ACTIONS(1313), + [sym_stop_statement] = ACTIONS(1310), + [sym_beep_statement] = ACTIONS(1310), + [aux_sym_unload_statement_token1] = ACTIONS(1316), + [aux_sym_def_type_statement_token1] = ACTIONS(1319), + [aux_sym_def_type_statement_token2] = ACTIONS(1319), + [aux_sym_def_type_statement_token3] = ACTIONS(1319), + [aux_sym_def_type_statement_token4] = ACTIONS(1319), + [aux_sym_def_type_statement_token5] = ACTIONS(1319), + [aux_sym_def_type_statement_token6] = ACTIONS(1319), + [aux_sym_def_type_statement_token7] = ACTIONS(1319), + [aux_sym_def_type_statement_token8] = ACTIONS(1319), + [aux_sym_def_type_statement_token9] = ACTIONS(1319), + [aux_sym_def_type_statement_token10] = ACTIONS(1319), + [aux_sym_def_type_statement_token11] = ACTIONS(1319), + [aux_sym_def_type_statement_token12] = ACTIONS(1319), + [aux_sym_def_type_statement_token13] = ACTIONS(1319), + [aux_sym_def_type_statement_token14] = ACTIONS(1319), + [aux_sym_call_statement_token1] = ACTIONS(1322), + [sym__ambiguous_call_statement] = ACTIONS(1325), + [aux_sym_addressof_expression_token1] = ACTIONS(1328), + [aux_sym_type_of_expression_token1] = ACTIONS(1331), + [aux_sym_unary_expression_token1] = ACTIONS(1334), + [sym_string_literal] = ACTIONS(1337), + [sym_number_literal] = ACTIONS(1340), + [aux_sym_boolean_literal_token1] = ACTIONS(1343), + [aux_sym_boolean_literal_token2] = ACTIONS(1343), + [sym_nothing_literal] = ACTIONS(1346), + [sym_null_literal] = ACTIONS(1346), + [sym_empty_literal] = ACTIONS(1346), + [sym_date_literal] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1349), + }, + [STATE(53)] = { + [sym__statement_separator] = STATE(52), + [sym_preprocessor_const] = STATE(52), + [sym_preprocessor_if] = STATE(52), + [sym__statement] = STATE(52), + [sym_variable_declaration] = STATE(52), + [sym_const_declaration] = STATE(52), + [sym_visibility] = STATE(11799), + [sym_if_statement] = STATE(52), + [sym_elseif_fragment] = STATE(52), + [sym_else_fragment] = STATE(52), + [sym_end_if_fragment] = STATE(52), + [sym_single_line_if_statement] = STATE(52), + [sym_select_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym__inline_for_statement] = STATE(5250), + [sym_for_each_statement] = STATE(52), + [sym__inline_for_each_statement] = STATE(5251), + [sym__for_header] = STATE(11307), + [sym__for_each_header] = STATE(11308), + [sym_do_statement] = STATE(52), + [sym__inline_do_statement] = STATE(5252), + [sym_while_statement] = STATE(52), + [sym_with_statement] = STATE(52), + [sym__inline_with_statement] = STATE(5253), + [sym_exit_statement] = STATE(52), + [sym_on_goto_statement] = STATE(52), + [sym_on_error_statement] = STATE(52), + [sym_resume_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym_label_statement] = STATE(52), + [sym_line_number_prefix] = STATE(11492), + [sym_line_number_statement] = STATE(52), + [sym_redim_statement] = STATE(52), + [sym_erase_statement] = STATE(52), + [sym_open_statement] = STATE(52), + [sym_input_statement] = STATE(52), + [sym_line_input_statement] = STATE(52), + [sym_print_statement] = STATE(52), + [sym_write_statement] = STATE(52), + [sym_debug_print_statement] = STATE(52), + [sym_close_statement] = STATE(52), + [sym_get_statement] = STATE(52), + [sym_put_statement] = STATE(52), + [sym_lock_statement] = STATE(52), + [sym_unlock_statement] = STATE(52), + [sym_seek_statement] = STATE(52), + [sym_raise_event_statement] = STATE(52), + [sym_name_statement] = STATE(52), + [sym_load_statement] = STATE(52), + [sym_unload_statement] = STATE(52), + [sym_def_type_statement] = STATE(52), + [sym_set_statement] = STATE(52), + [sym_assignment_statement] = STATE(52), + [sym_call_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym__primary_expression] = STATE(2614), + [sym__expression] = STATE(2614), + [sym__assignable_expression] = STATE(14425), + [sym__callable_expression] = STATE(378), + [sym__print_method_callee] = STATE(393), + [sym__print_method_call_expression] = STATE(5499), + [sym__qualified_print_method_expression] = STATE(5500), + [sym__implicit_print_method_expression] = STATE(5501), + [sym__line_method_expression] = STATE(12228), + [sym_call_expression] = STATE(2293), + [sym_new_expression] = STATE(2614), + [sym_addressof_expression] = STATE(2614), + [sym_type_of_expression] = STATE(2614), + [sym_member_expression] = STATE(2211), + [sym_qualified_member_expression] = STATE(2182), + [sym_implicit_member_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2614), + [sym_binary_expression] = STATE(2614), + [sym_unary_expression] = STATE(2614), + [sym__signed_unary_expression] = STATE(2203), + [sym__literal] = STATE(2614), + [sym_boolean_literal] = STATE(2614), + [sym_file_number_literal] = STATE(2614), + [aux_sym_block_repeat1] = STATE(52), + [sym_identifier] = ACTIONS(1057), + [sym_newline] = ACTIONS(1352), + [anon_sym_COLON] = ACTIONS(1352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1061), + [aux_sym_frm_property_statement_token1] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [aux_sym__attribute_identifier_token1] = ACTIONS(1069), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1071), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(1354), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1075), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(1354), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(1354), + [aux_sym_preprocessor_const_token1] = ACTIONS(1077), + [sym_static_modifier] = ACTIONS(1079), + [sym__dim_keyword] = ACTIONS(1081), + [sym__redim_keyword] = ACTIONS(1083), + [aux_sym_get_accessor_token1] = ACTIONS(1085), + [aux_sym_set_accessor_token1] = ACTIONS(1087), + [aux_sym_const_declaration_token1] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_as_type_clause_token2] = ACTIONS(1093), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1095), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1097), + [aux_sym_else_fragment_token1] = ACTIONS(1099), + [aux_sym_select_statement_token1] = ACTIONS(1101), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1103), + [aux_sym_do_condition_token1] = ACTIONS(1105), + [aux_sym_with_statement_token1] = ACTIONS(1107), + [aux_sym_exit_statement_token1] = ACTIONS(1109), + [sym_end_statement] = ACTIONS(1352), + [aux_sym_on_goto_statement_token1] = ACTIONS(1111), + [aux_sym_on_goto_statement_token2] = ACTIONS(1113), + [aux_sym_on_error_statement_token2] = ACTIONS(1115), + [sym__ambiguous_redim_statement] = ACTIONS(1117), + [aux_sym_erase_statement_token1] = ACTIONS(1119), + [aux_sym_open_statement_token1] = ACTIONS(1121), + [aux_sym_file_mode_token2] = ACTIONS(1123), + [aux_sym_file_access_token2] = ACTIONS(1125), + [aux_sym_file_lock_token2] = ACTIONS(1127), + [aux_sym_print_statement_token1] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [aux_sym_close_statement_token1] = ACTIONS(1137), + [aux_sym_put_statement_token1] = ACTIONS(1139), + [aux_sym_unlock_statement_token1] = ACTIONS(1141), + [aux_sym_seek_statement_token1] = ACTIONS(1143), + [sym_reset_statement] = ACTIONS(1356), + [aux_sym_raise_event_statement_token1] = ACTIONS(1147), + [sym_stop_statement] = ACTIONS(1356), + [sym_beep_statement] = ACTIONS(1356), + [aux_sym_unload_statement_token1] = ACTIONS(1149), + [aux_sym_def_type_statement_token1] = ACTIONS(1151), + [aux_sym_def_type_statement_token2] = ACTIONS(1151), + [aux_sym_def_type_statement_token3] = ACTIONS(1151), + [aux_sym_def_type_statement_token4] = ACTIONS(1151), + [aux_sym_def_type_statement_token5] = ACTIONS(1151), + [aux_sym_def_type_statement_token6] = ACTIONS(1151), + [aux_sym_def_type_statement_token7] = ACTIONS(1151), + [aux_sym_def_type_statement_token8] = ACTIONS(1151), + [aux_sym_def_type_statement_token9] = ACTIONS(1151), + [aux_sym_def_type_statement_token10] = ACTIONS(1151), + [aux_sym_def_type_statement_token11] = ACTIONS(1151), + [aux_sym_def_type_statement_token12] = ACTIONS(1151), + [aux_sym_def_type_statement_token13] = ACTIONS(1151), + [aux_sym_def_type_statement_token14] = ACTIONS(1151), + [aux_sym_call_statement_token1] = ACTIONS(1153), + [sym__ambiguous_call_statement] = ACTIONS(1155), + [aux_sym_addressof_expression_token1] = ACTIONS(1157), + [aux_sym_type_of_expression_token1] = ACTIONS(1159), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1165), + [aux_sym_boolean_literal_token1] = ACTIONS(1167), + [aux_sym_boolean_literal_token2] = ACTIONS(1167), + [sym_nothing_literal] = ACTIONS(1169), + [sym_null_literal] = ACTIONS(1169), + [sym_empty_literal] = ACTIONS(1169), + [sym_date_literal] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(1171), + }, + [STATE(54)] = { + [sym__statement_separator] = STATE(148), + [sym_preprocessor_const] = STATE(148), + [sym_preprocessor_if] = STATE(148), + [sym_block] = STATE(12988), + [sym__statement] = STATE(148), + [sym_variable_declaration] = STATE(148), + [sym_const_declaration] = STATE(148), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(148), + [sym_elseif_fragment] = STATE(148), + [sym_else_fragment] = STATE(148), + [sym_end_if_fragment] = STATE(148), + [sym_single_line_if_statement] = STATE(148), + [sym_select_statement] = STATE(148), + [sym_for_statement] = STATE(6132), + [sym__inline_for_statement] = STATE(6134), + [sym_for_each_statement] = STATE(6132), + [sym__inline_for_each_statement] = STATE(6137), + [sym__for_header] = STATE(11483), + [sym__for_each_header] = STATE(11488), + [sym_do_statement] = STATE(148), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(148), + [sym_with_statement] = STATE(148), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(148), + [sym_on_goto_statement] = STATE(148), + [sym_on_error_statement] = STATE(148), + [sym_resume_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_label_statement] = STATE(148), + [sym_line_number_prefix] = STATE(11194), + [sym_line_number_statement] = STATE(148), + [sym_redim_statement] = STATE(148), + [sym_erase_statement] = STATE(148), + [sym_open_statement] = STATE(148), + [sym_input_statement] = STATE(148), + [sym_line_input_statement] = STATE(148), + [sym_print_statement] = STATE(148), + [sym_write_statement] = STATE(148), + [sym_debug_print_statement] = STATE(148), + [sym_close_statement] = STATE(148), + [sym_get_statement] = STATE(148), + [sym_put_statement] = STATE(148), + [sym_lock_statement] = STATE(148), + [sym_unlock_statement] = STATE(148), + [sym_seek_statement] = STATE(148), + [sym_raise_event_statement] = STATE(148), + [sym_name_statement] = STATE(148), + [sym_load_statement] = STATE(148), + [sym_unload_statement] = STATE(148), + [sym_def_type_statement] = STATE(148), + [sym_set_statement] = STATE(148), + [sym_assignment_statement] = STATE(148), + [sym_call_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1402), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(1360), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(1446), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(1446), + [sym_beep_statement] = ACTIONS(1446), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(55)] = { + [sym__statement_separator] = STATE(148), + [sym_preprocessor_const] = STATE(148), + [sym_preprocessor_if] = STATE(148), + [sym_block] = STATE(13038), + [sym__statement] = STATE(148), + [sym_variable_declaration] = STATE(148), + [sym_const_declaration] = STATE(148), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(148), + [sym_elseif_fragment] = STATE(148), + [sym_else_fragment] = STATE(148), + [sym_end_if_fragment] = STATE(148), + [sym_single_line_if_statement] = STATE(148), + [sym_select_statement] = STATE(148), + [sym_for_statement] = STATE(6300), + [sym__inline_for_statement] = STATE(6301), + [sym_for_each_statement] = STATE(6300), + [sym__inline_for_each_statement] = STATE(6302), + [sym__for_header] = STATE(11298), + [sym__for_each_header] = STATE(11310), + [sym_do_statement] = STATE(148), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(148), + [sym_with_statement] = STATE(148), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(148), + [sym_on_goto_statement] = STATE(148), + [sym_on_error_statement] = STATE(148), + [sym_resume_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_label_statement] = STATE(148), + [sym_line_number_prefix] = STATE(11217), + [sym_line_number_statement] = STATE(148), + [sym_redim_statement] = STATE(148), + [sym_erase_statement] = STATE(148), + [sym_open_statement] = STATE(148), + [sym_input_statement] = STATE(148), + [sym_line_input_statement] = STATE(148), + [sym_print_statement] = STATE(148), + [sym_write_statement] = STATE(148), + [sym_debug_print_statement] = STATE(148), + [sym_close_statement] = STATE(148), + [sym_get_statement] = STATE(148), + [sym_put_statement] = STATE(148), + [sym_lock_statement] = STATE(148), + [sym_unlock_statement] = STATE(148), + [sym_seek_statement] = STATE(148), + [sym_raise_event_statement] = STATE(148), + [sym_name_statement] = STATE(148), + [sym_load_statement] = STATE(148), + [sym_unload_statement] = STATE(148), + [sym_def_type_statement] = STATE(148), + [sym_set_statement] = STATE(148), + [sym_assignment_statement] = STATE(148), + [sym_call_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1474), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(1360), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(1446), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(1446), + [sym_beep_statement] = ACTIONS(1446), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(56)] = { + [sym__statement_separator] = STATE(162), + [sym_preprocessor_const] = STATE(162), + [sym_preprocessor_if] = STATE(162), + [sym_block] = STATE(12214), + [sym__statement] = STATE(162), + [sym_variable_declaration] = STATE(162), + [sym_const_declaration] = STATE(162), + [sym_visibility] = STATE(11928), + [sym_if_statement] = STATE(162), + [sym_elseif_fragment] = STATE(162), + [sym_else_fragment] = STATE(162), + [sym_end_if_fragment] = STATE(162), + [sym_single_line_if_statement] = STATE(162), + [sym_select_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym__inline_for_statement] = STATE(6675), + [sym_for_each_statement] = STATE(162), + [sym__inline_for_each_statement] = STATE(6676), + [sym__for_header] = STATE(11443), + [sym__for_each_header] = STATE(11444), + [sym_do_statement] = STATE(162), + [sym__inline_do_statement] = STATE(6677), + [sym_while_statement] = STATE(162), + [sym_with_statement] = STATE(162), + [sym__inline_with_statement] = STATE(6678), + [sym_exit_statement] = STATE(162), + [sym_on_goto_statement] = STATE(162), + [sym_on_error_statement] = STATE(162), + [sym_resume_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym_label_statement] = STATE(162), + [sym_line_number_prefix] = STATE(11309), + [sym_line_number_statement] = STATE(162), + [sym_redim_statement] = STATE(162), + [sym_erase_statement] = STATE(162), + [sym_open_statement] = STATE(162), + [sym_input_statement] = STATE(162), + [sym_line_input_statement] = STATE(162), + [sym_print_statement] = STATE(162), + [sym_write_statement] = STATE(162), + [sym_debug_print_statement] = STATE(162), + [sym_close_statement] = STATE(162), + [sym_get_statement] = STATE(162), + [sym_put_statement] = STATE(162), + [sym_lock_statement] = STATE(162), + [sym_unlock_statement] = STATE(162), + [sym_seek_statement] = STATE(162), + [sym_raise_event_statement] = STATE(162), + [sym_name_statement] = STATE(162), + [sym_load_statement] = STATE(162), + [sym_unload_statement] = STATE(162), + [sym_def_type_statement] = STATE(162), + [sym_set_statement] = STATE(162), + [sym_assignment_statement] = STATE(162), + [sym_call_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym__primary_expression] = STATE(3463), + [sym__expression] = STATE(3463), + [sym__assignable_expression] = STATE(14513), + [sym__callable_expression] = STATE(418), + [sym__print_method_callee] = STATE(501), + [sym__print_method_call_expression] = STATE(6993), + [sym__qualified_print_method_expression] = STATE(6708), + [sym__implicit_print_method_expression] = STATE(6710), + [sym__line_method_expression] = STATE(12255), + [sym_call_expression] = STATE(2892), + [sym_new_expression] = STATE(3463), + [sym_addressof_expression] = STATE(3463), + [sym_type_of_expression] = STATE(3463), + [sym_member_expression] = STATE(2545), + [sym_qualified_member_expression] = STATE(2265), + [sym_implicit_member_expression] = STATE(2265), + [sym_parenthesized_expression] = STATE(3463), + [sym_binary_expression] = STATE(3463), + [sym_unary_expression] = STATE(3463), + [sym__signed_unary_expression] = STATE(2479), + [sym__literal] = STATE(3463), + [sym_boolean_literal] = STATE(3463), + [sym_file_number_literal] = STATE(3463), + [aux_sym_block_repeat1] = STATE(162), + [sym_identifier] = ACTIONS(1476), + [sym_newline] = ACTIONS(1478), + [anon_sym_COLON] = ACTIONS(1481), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1483), + [aux_sym_frm_property_statement_token1] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1490), + [aux_sym__attribute_identifier_token1] = ACTIONS(1492), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1494), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1496), + [aux_sym_preprocessor_const_token1] = ACTIONS(1498), + [sym_static_modifier] = ACTIONS(1500), + [sym__dim_keyword] = ACTIONS(1502), + [sym__redim_keyword] = ACTIONS(1504), + [aux_sym_get_accessor_token1] = ACTIONS(1506), + [aux_sym_set_accessor_token1] = ACTIONS(1508), + [aux_sym_const_declaration_token1] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [aux_sym_as_type_clause_token2] = ACTIONS(1514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1516), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1518), + [aux_sym_else_fragment_token1] = ACTIONS(1520), + [aux_sym_select_statement_token1] = ACTIONS(1522), + [aux_sym_select_statement_token2] = ACTIONS(1524), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1526), + [aux_sym_do_condition_token1] = ACTIONS(1528), + [aux_sym_with_statement_token1] = ACTIONS(1530), + [aux_sym_exit_statement_token1] = ACTIONS(1532), + [sym_end_statement] = ACTIONS(1481), + [aux_sym_on_goto_statement_token1] = ACTIONS(1534), + [aux_sym_on_goto_statement_token2] = ACTIONS(1536), + [aux_sym_on_error_statement_token2] = ACTIONS(1538), + [sym__ambiguous_redim_statement] = ACTIONS(1540), + [aux_sym_erase_statement_token1] = ACTIONS(1542), + [aux_sym_open_statement_token1] = ACTIONS(1544), + [aux_sym_file_mode_token2] = ACTIONS(1546), + [aux_sym_file_access_token2] = ACTIONS(1548), + [aux_sym_file_lock_token2] = ACTIONS(1550), + [aux_sym_print_statement_token1] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1558), + [aux_sym_close_statement_token1] = ACTIONS(1560), + [aux_sym_put_statement_token1] = ACTIONS(1562), + [aux_sym_unlock_statement_token1] = ACTIONS(1564), + [aux_sym_seek_statement_token1] = ACTIONS(1566), + [sym_reset_statement] = ACTIONS(1568), + [aux_sym_raise_event_statement_token1] = ACTIONS(1570), + [sym_stop_statement] = ACTIONS(1568), + [sym_beep_statement] = ACTIONS(1568), + [aux_sym_unload_statement_token1] = ACTIONS(1572), + [aux_sym_def_type_statement_token1] = ACTIONS(1574), + [aux_sym_def_type_statement_token2] = ACTIONS(1574), + [aux_sym_def_type_statement_token3] = ACTIONS(1574), + [aux_sym_def_type_statement_token4] = ACTIONS(1574), + [aux_sym_def_type_statement_token5] = ACTIONS(1574), + [aux_sym_def_type_statement_token6] = ACTIONS(1574), + [aux_sym_def_type_statement_token7] = ACTIONS(1574), + [aux_sym_def_type_statement_token8] = ACTIONS(1574), + [aux_sym_def_type_statement_token9] = ACTIONS(1574), + [aux_sym_def_type_statement_token10] = ACTIONS(1574), + [aux_sym_def_type_statement_token11] = ACTIONS(1574), + [aux_sym_def_type_statement_token12] = ACTIONS(1574), + [aux_sym_def_type_statement_token13] = ACTIONS(1574), + [aux_sym_def_type_statement_token14] = ACTIONS(1574), + [aux_sym_call_statement_token1] = ACTIONS(1576), + [sym__ambiguous_call_statement] = ACTIONS(1578), + [aux_sym_addressof_expression_token1] = ACTIONS(1580), + [aux_sym_type_of_expression_token1] = ACTIONS(1582), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(1586), + [sym_number_literal] = ACTIONS(1588), + [aux_sym_boolean_literal_token1] = ACTIONS(1591), + [aux_sym_boolean_literal_token2] = ACTIONS(1591), + [sym_nothing_literal] = ACTIONS(1593), + [sym_null_literal] = ACTIONS(1593), + [sym_empty_literal] = ACTIONS(1593), + [sym_date_literal] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1595), + }, + [STATE(57)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12479), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11147), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1643), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(58)] = { + [sym__statement_separator] = STATE(148), + [sym_preprocessor_const] = STATE(148), + [sym_preprocessor_if] = STATE(148), + [sym_block] = STATE(12499), + [sym__statement] = STATE(148), + [sym_variable_declaration] = STATE(148), + [sym_const_declaration] = STATE(148), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(148), + [sym_elseif_fragment] = STATE(148), + [sym_else_fragment] = STATE(148), + [sym_end_if_fragment] = STATE(148), + [sym_single_line_if_statement] = STATE(148), + [sym_select_statement] = STATE(148), + [sym_for_statement] = STATE(3838), + [sym__inline_for_statement] = STATE(3848), + [sym_for_each_statement] = STATE(3838), + [sym__inline_for_each_statement] = STATE(3769), + [sym__for_header] = STATE(11511), + [sym__for_each_header] = STATE(11512), + [sym_do_statement] = STATE(148), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(148), + [sym_with_statement] = STATE(148), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(148), + [sym_on_goto_statement] = STATE(148), + [sym_on_error_statement] = STATE(148), + [sym_resume_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_label_statement] = STATE(148), + [sym_line_number_prefix] = STATE(11156), + [sym_line_number_statement] = STATE(148), + [sym_redim_statement] = STATE(148), + [sym_erase_statement] = STATE(148), + [sym_open_statement] = STATE(148), + [sym_input_statement] = STATE(148), + [sym_line_input_statement] = STATE(148), + [sym_print_statement] = STATE(148), + [sym_write_statement] = STATE(148), + [sym_debug_print_statement] = STATE(148), + [sym_close_statement] = STATE(148), + [sym_get_statement] = STATE(148), + [sym_put_statement] = STATE(148), + [sym_lock_statement] = STATE(148), + [sym_unlock_statement] = STATE(148), + [sym_seek_statement] = STATE(148), + [sym_raise_event_statement] = STATE(148), + [sym_name_statement] = STATE(148), + [sym_load_statement] = STATE(148), + [sym_unload_statement] = STATE(148), + [sym_def_type_statement] = STATE(148), + [sym_set_statement] = STATE(148), + [sym_assignment_statement] = STATE(148), + [sym_call_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1713), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(1360), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(1446), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(1446), + [sym_beep_statement] = ACTIONS(1446), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(59)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12508), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11170), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1715), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(60)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(12514), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11171), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1765), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(61)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12740), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11121), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1833), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(62)] = { + [sym__statement_separator] = STATE(148), + [sym_preprocessor_const] = STATE(148), + [sym_preprocessor_if] = STATE(148), + [sym_block] = STATE(12775), + [sym__statement] = STATE(148), + [sym_variable_declaration] = STATE(148), + [sym_const_declaration] = STATE(148), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(148), + [sym_elseif_fragment] = STATE(148), + [sym_else_fragment] = STATE(148), + [sym_end_if_fragment] = STATE(148), + [sym_single_line_if_statement] = STATE(148), + [sym_select_statement] = STATE(148), + [sym_for_statement] = STATE(5919), + [sym__inline_for_statement] = STATE(5922), + [sym_for_each_statement] = STATE(5919), + [sym__inline_for_each_statement] = STATE(5927), + [sym__for_header] = STATE(11565), + [sym__for_each_header] = STATE(11521), + [sym_do_statement] = STATE(148), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(148), + [sym_with_statement] = STATE(148), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(148), + [sym_on_goto_statement] = STATE(148), + [sym_on_error_statement] = STATE(148), + [sym_resume_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_label_statement] = STATE(148), + [sym_line_number_prefix] = STATE(11128), + [sym_line_number_statement] = STATE(148), + [sym_redim_statement] = STATE(148), + [sym_erase_statement] = STATE(148), + [sym_open_statement] = STATE(148), + [sym_input_statement] = STATE(148), + [sym_line_input_statement] = STATE(148), + [sym_print_statement] = STATE(148), + [sym_write_statement] = STATE(148), + [sym_debug_print_statement] = STATE(148), + [sym_close_statement] = STATE(148), + [sym_get_statement] = STATE(148), + [sym_put_statement] = STATE(148), + [sym_lock_statement] = STATE(148), + [sym_unlock_statement] = STATE(148), + [sym_seek_statement] = STATE(148), + [sym_raise_event_statement] = STATE(148), + [sym_name_statement] = STATE(148), + [sym_load_statement] = STATE(148), + [sym_unload_statement] = STATE(148), + [sym_def_type_statement] = STATE(148), + [sym_set_statement] = STATE(148), + [sym_assignment_statement] = STATE(148), + [sym_call_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1835), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(1360), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(1446), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(1446), + [sym_beep_statement] = ACTIONS(1446), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(63)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12793), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11133), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1837), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(64)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(12801), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11134), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1839), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(65)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12813), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11135), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1841), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(66)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12830), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11137), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1843), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(67)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(12832), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11138), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1845), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(68)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(13035), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11206), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1847), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(69)] = { + [sym__statement_separator] = STATE(148), + [sym_preprocessor_const] = STATE(148), + [sym_preprocessor_if] = STATE(148), + [sym_block] = STATE(13059), + [sym__statement] = STATE(148), + [sym_variable_declaration] = STATE(148), + [sym_const_declaration] = STATE(148), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(148), + [sym_elseif_fragment] = STATE(148), + [sym_else_fragment] = STATE(148), + [sym_end_if_fragment] = STATE(148), + [sym_single_line_if_statement] = STATE(148), + [sym_select_statement] = STATE(148), + [sym_for_statement] = STATE(6949), + [sym__inline_for_statement] = STATE(6950), + [sym_for_each_statement] = STATE(6949), + [sym__inline_for_each_statement] = STATE(6952), + [sym__for_header] = STATE(11298), + [sym__for_each_header] = STATE(11310), + [sym_do_statement] = STATE(148), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(148), + [sym_with_statement] = STATE(148), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(148), + [sym_on_goto_statement] = STATE(148), + [sym_on_error_statement] = STATE(148), + [sym_resume_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_label_statement] = STATE(148), + [sym_line_number_prefix] = STATE(11213), + [sym_line_number_statement] = STATE(148), + [sym_redim_statement] = STATE(148), + [sym_erase_statement] = STATE(148), + [sym_open_statement] = STATE(148), + [sym_input_statement] = STATE(148), + [sym_line_input_statement] = STATE(148), + [sym_print_statement] = STATE(148), + [sym_write_statement] = STATE(148), + [sym_debug_print_statement] = STATE(148), + [sym_close_statement] = STATE(148), + [sym_get_statement] = STATE(148), + [sym_put_statement] = STATE(148), + [sym_lock_statement] = STATE(148), + [sym_unlock_statement] = STATE(148), + [sym_seek_statement] = STATE(148), + [sym_raise_event_statement] = STATE(148), + [sym_name_statement] = STATE(148), + [sym_load_statement] = STATE(148), + [sym_unload_statement] = STATE(148), + [sym_def_type_statement] = STATE(148), + [sym_set_statement] = STATE(148), + [sym_assignment_statement] = STATE(148), + [sym_call_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1849), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(1360), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(1446), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(1446), + [sym_beep_statement] = ACTIONS(1446), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(70)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(13069), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11218), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1851), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(71)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(13070), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11219), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1853), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(72)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(13074), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11220), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1855), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(73)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12653), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11221), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1857), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(74)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(12709), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11222), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1859), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(75)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12759), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11141), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1861), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(76)] = { + [sym__statement_separator] = STATE(148), + [sym_preprocessor_const] = STATE(148), + [sym_preprocessor_if] = STATE(148), + [sym_block] = STATE(12874), + [sym__statement] = STATE(148), + [sym_variable_declaration] = STATE(148), + [sym_const_declaration] = STATE(148), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(148), + [sym_elseif_fragment] = STATE(148), + [sym_else_fragment] = STATE(148), + [sym_end_if_fragment] = STATE(148), + [sym_single_line_if_statement] = STATE(148), + [sym_select_statement] = STATE(148), + [sym_for_statement] = STATE(6460), + [sym__inline_for_statement] = STATE(6461), + [sym_for_each_statement] = STATE(6460), + [sym__inline_for_each_statement] = STATE(6462), + [sym__for_header] = STATE(11298), + [sym__for_each_header] = STATE(11310), + [sym_do_statement] = STATE(148), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(148), + [sym_with_statement] = STATE(148), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(148), + [sym_on_goto_statement] = STATE(148), + [sym_on_error_statement] = STATE(148), + [sym_resume_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_label_statement] = STATE(148), + [sym_line_number_prefix] = STATE(11157), + [sym_line_number_statement] = STATE(148), + [sym_redim_statement] = STATE(148), + [sym_erase_statement] = STATE(148), + [sym_open_statement] = STATE(148), + [sym_input_statement] = STATE(148), + [sym_line_input_statement] = STATE(148), + [sym_print_statement] = STATE(148), + [sym_write_statement] = STATE(148), + [sym_debug_print_statement] = STATE(148), + [sym_close_statement] = STATE(148), + [sym_get_statement] = STATE(148), + [sym_put_statement] = STATE(148), + [sym_lock_statement] = STATE(148), + [sym_unlock_statement] = STATE(148), + [sym_seek_statement] = STATE(148), + [sym_raise_event_statement] = STATE(148), + [sym_name_statement] = STATE(148), + [sym_load_statement] = STATE(148), + [sym_unload_statement] = STATE(148), + [sym_def_type_statement] = STATE(148), + [sym_set_statement] = STATE(148), + [sym_assignment_statement] = STATE(148), + [sym_call_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1863), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(1360), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(1446), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(1446), + [sym_beep_statement] = ACTIONS(1446), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(77)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12909), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11158), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1865), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(78)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(12913), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11159), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1867), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(79)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12919), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11160), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1869), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(80)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12932), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11175), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1871), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(81)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(12936), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11176), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1873), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(82)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12440), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11203), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1875), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(83)] = { + [sym__statement_separator] = STATE(148), + [sym_preprocessor_const] = STATE(148), + [sym_preprocessor_if] = STATE(148), + [sym_block] = STATE(12452), + [sym__statement] = STATE(148), + [sym_variable_declaration] = STATE(148), + [sym_const_declaration] = STATE(148), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(148), + [sym_elseif_fragment] = STATE(148), + [sym_else_fragment] = STATE(148), + [sym_end_if_fragment] = STATE(148), + [sym_single_line_if_statement] = STATE(148), + [sym_select_statement] = STATE(148), + [sym_for_statement] = STATE(5883), + [sym__inline_for_statement] = STATE(5884), + [sym_for_each_statement] = STATE(5883), + [sym__inline_for_each_statement] = STATE(5892), + [sym__for_header] = STATE(11267), + [sym__for_each_header] = STATE(11268), + [sym_do_statement] = STATE(148), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(148), + [sym_with_statement] = STATE(148), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(148), + [sym_on_goto_statement] = STATE(148), + [sym_on_error_statement] = STATE(148), + [sym_resume_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_label_statement] = STATE(148), + [sym_line_number_prefix] = STATE(11224), + [sym_line_number_statement] = STATE(148), + [sym_redim_statement] = STATE(148), + [sym_erase_statement] = STATE(148), + [sym_open_statement] = STATE(148), + [sym_input_statement] = STATE(148), + [sym_line_input_statement] = STATE(148), + [sym_print_statement] = STATE(148), + [sym_write_statement] = STATE(148), + [sym_debug_print_statement] = STATE(148), + [sym_close_statement] = STATE(148), + [sym_get_statement] = STATE(148), + [sym_put_statement] = STATE(148), + [sym_lock_statement] = STATE(148), + [sym_unlock_statement] = STATE(148), + [sym_seek_statement] = STATE(148), + [sym_raise_event_statement] = STATE(148), + [sym_name_statement] = STATE(148), + [sym_load_statement] = STATE(148), + [sym_unload_statement] = STATE(148), + [sym_def_type_statement] = STATE(148), + [sym_set_statement] = STATE(148), + [sym_assignment_statement] = STATE(148), + [sym_call_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1877), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(1360), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(1446), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(1446), + [sym_beep_statement] = ACTIONS(1446), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(84)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12458), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11225), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1879), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(85)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(12461), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11172), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1881), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(86)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12462), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11113), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1883), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(87)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12467), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11115), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1885), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(88)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(12468), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11116), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1887), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(89)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12513), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11132), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1889), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(90)] = { + [sym__statement_separator] = STATE(148), + [sym_preprocessor_const] = STATE(148), + [sym_preprocessor_if] = STATE(148), + [sym_block] = STATE(12524), + [sym__statement] = STATE(148), + [sym_variable_declaration] = STATE(148), + [sym_const_declaration] = STATE(148), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(148), + [sym_elseif_fragment] = STATE(148), + [sym_else_fragment] = STATE(148), + [sym_end_if_fragment] = STATE(148), + [sym_single_line_if_statement] = STATE(148), + [sym_select_statement] = STATE(148), + [sym_for_statement] = STATE(4245), + [sym__inline_for_statement] = STATE(4246), + [sym_for_each_statement] = STATE(4245), + [sym__inline_for_each_statement] = STATE(4247), + [sym__for_header] = STATE(11354), + [sym__for_each_header] = STATE(11356), + [sym_do_statement] = STATE(148), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(148), + [sym_with_statement] = STATE(148), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(148), + [sym_on_goto_statement] = STATE(148), + [sym_on_error_statement] = STATE(148), + [sym_resume_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_label_statement] = STATE(148), + [sym_line_number_prefix] = STATE(11140), + [sym_line_number_statement] = STATE(148), + [sym_redim_statement] = STATE(148), + [sym_erase_statement] = STATE(148), + [sym_open_statement] = STATE(148), + [sym_input_statement] = STATE(148), + [sym_line_input_statement] = STATE(148), + [sym_print_statement] = STATE(148), + [sym_write_statement] = STATE(148), + [sym_debug_print_statement] = STATE(148), + [sym_close_statement] = STATE(148), + [sym_get_statement] = STATE(148), + [sym_put_statement] = STATE(148), + [sym_lock_statement] = STATE(148), + [sym_unlock_statement] = STATE(148), + [sym_seek_statement] = STATE(148), + [sym_raise_event_statement] = STATE(148), + [sym_name_statement] = STATE(148), + [sym_load_statement] = STATE(148), + [sym_unload_statement] = STATE(148), + [sym_def_type_statement] = STATE(148), + [sym_set_statement] = STATE(148), + [sym_assignment_statement] = STATE(148), + [sym_call_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1891), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(1360), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(1446), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(1446), + [sym_beep_statement] = ACTIONS(1446), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(91)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12527), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11142), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1893), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(92)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(12530), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11143), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1895), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(93)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12531), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11144), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1897), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(94)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12535), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11145), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1899), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(95)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(12537), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11146), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1901), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(96)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12575), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11168), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1903), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(97)] = { + [sym__statement_separator] = STATE(148), + [sym_preprocessor_const] = STATE(148), + [sym_preprocessor_if] = STATE(148), + [sym_block] = STATE(12595), + [sym__statement] = STATE(148), + [sym_variable_declaration] = STATE(148), + [sym_const_declaration] = STATE(148), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(148), + [sym_elseif_fragment] = STATE(148), + [sym_else_fragment] = STATE(148), + [sym_end_if_fragment] = STATE(148), + [sym_single_line_if_statement] = STATE(148), + [sym_select_statement] = STATE(148), + [sym_for_statement] = STATE(4945), + [sym__inline_for_statement] = STATE(4946), + [sym_for_each_statement] = STATE(4945), + [sym__inline_for_each_statement] = STATE(4947), + [sym__for_header] = STATE(11408), + [sym__for_each_header] = STATE(11409), + [sym_do_statement] = STATE(148), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(148), + [sym_with_statement] = STATE(148), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(148), + [sym_on_goto_statement] = STATE(148), + [sym_on_error_statement] = STATE(148), + [sym_resume_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_label_statement] = STATE(148), + [sym_line_number_prefix] = STATE(11177), + [sym_line_number_statement] = STATE(148), + [sym_redim_statement] = STATE(148), + [sym_erase_statement] = STATE(148), + [sym_open_statement] = STATE(148), + [sym_input_statement] = STATE(148), + [sym_line_input_statement] = STATE(148), + [sym_print_statement] = STATE(148), + [sym_write_statement] = STATE(148), + [sym_debug_print_statement] = STATE(148), + [sym_close_statement] = STATE(148), + [sym_get_statement] = STATE(148), + [sym_put_statement] = STATE(148), + [sym_lock_statement] = STATE(148), + [sym_unlock_statement] = STATE(148), + [sym_seek_statement] = STATE(148), + [sym_raise_event_statement] = STATE(148), + [sym_name_statement] = STATE(148), + [sym_load_statement] = STATE(148), + [sym_unload_statement] = STATE(148), + [sym_def_type_statement] = STATE(148), + [sym_set_statement] = STATE(148), + [sym_assignment_statement] = STATE(148), + [sym_call_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1905), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(1360), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(1446), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(1446), + [sym_beep_statement] = ACTIONS(1446), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(98)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(13045), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11114), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1907), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(99)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(12600), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11180), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1909), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(100)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12601), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11181), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1911), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(101)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12611), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11183), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1913), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(102)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(12612), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11184), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1915), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(103)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12672), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11209), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1917), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(104)] = { + [sym__statement_separator] = STATE(148), + [sym_preprocessor_const] = STATE(148), + [sym_preprocessor_if] = STATE(148), + [sym_block] = STATE(12694), + [sym__statement] = STATE(148), + [sym_variable_declaration] = STATE(148), + [sym_const_declaration] = STATE(148), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(148), + [sym_elseif_fragment] = STATE(148), + [sym_else_fragment] = STATE(148), + [sym_end_if_fragment] = STATE(148), + [sym_single_line_if_statement] = STATE(148), + [sym_select_statement] = STATE(148), + [sym_for_statement] = STATE(3814), + [sym__inline_for_statement] = STATE(3824), + [sym_for_each_statement] = STATE(3814), + [sym__inline_for_each_statement] = STATE(3829), + [sym__for_header] = STATE(11511), + [sym__for_each_header] = STATE(11512), + [sym_do_statement] = STATE(148), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(148), + [sym_with_statement] = STATE(148), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(148), + [sym_on_goto_statement] = STATE(148), + [sym_on_error_statement] = STATE(148), + [sym_resume_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_label_statement] = STATE(148), + [sym_line_number_prefix] = STATE(11210), + [sym_line_number_statement] = STATE(148), + [sym_redim_statement] = STATE(148), + [sym_erase_statement] = STATE(148), + [sym_open_statement] = STATE(148), + [sym_input_statement] = STATE(148), + [sym_line_input_statement] = STATE(148), + [sym_print_statement] = STATE(148), + [sym_write_statement] = STATE(148), + [sym_debug_print_statement] = STATE(148), + [sym_close_statement] = STATE(148), + [sym_get_statement] = STATE(148), + [sym_put_statement] = STATE(148), + [sym_lock_statement] = STATE(148), + [sym_unlock_statement] = STATE(148), + [sym_seek_statement] = STATE(148), + [sym_raise_event_statement] = STATE(148), + [sym_name_statement] = STATE(148), + [sym_load_statement] = STATE(148), + [sym_unload_statement] = STATE(148), + [sym_def_type_statement] = STATE(148), + [sym_set_statement] = STATE(148), + [sym_assignment_statement] = STATE(148), + [sym_call_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1919), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(1360), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(1446), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(1446), + [sym_beep_statement] = ACTIONS(1446), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(105)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12701), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11211), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1921), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(106)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(12702), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11212), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1923), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(107)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12705), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11214), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1925), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(108)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12712), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11215), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1927), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(109)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(12713), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11112), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1929), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(110)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12767), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11169), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1931), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(111)] = { + [sym__statement_separator] = STATE(148), + [sym_preprocessor_const] = STATE(148), + [sym_preprocessor_if] = STATE(148), + [sym_block] = STATE(12788), + [sym__statement] = STATE(148), + [sym_variable_declaration] = STATE(148), + [sym_const_declaration] = STATE(148), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(148), + [sym_elseif_fragment] = STATE(148), + [sym_else_fragment] = STATE(148), + [sym_end_if_fragment] = STATE(148), + [sym_single_line_if_statement] = STATE(148), + [sym_select_statement] = STATE(148), + [sym_for_statement] = STATE(5893), + [sym__inline_for_statement] = STATE(5894), + [sym_for_each_statement] = STATE(5893), + [sym__inline_for_each_statement] = STATE(5907), + [sym__for_header] = STATE(11565), + [sym__for_each_header] = STATE(11521), + [sym_do_statement] = STATE(148), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(148), + [sym_with_statement] = STATE(148), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(148), + [sym_on_goto_statement] = STATE(148), + [sym_on_error_statement] = STATE(148), + [sym_resume_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_label_statement] = STATE(148), + [sym_line_number_prefix] = STATE(11192), + [sym_line_number_statement] = STATE(148), + [sym_redim_statement] = STATE(148), + [sym_erase_statement] = STATE(148), + [sym_open_statement] = STATE(148), + [sym_input_statement] = STATE(148), + [sym_line_input_statement] = STATE(148), + [sym_print_statement] = STATE(148), + [sym_write_statement] = STATE(148), + [sym_debug_print_statement] = STATE(148), + [sym_close_statement] = STATE(148), + [sym_get_statement] = STATE(148), + [sym_put_statement] = STATE(148), + [sym_lock_statement] = STATE(148), + [sym_unlock_statement] = STATE(148), + [sym_seek_statement] = STATE(148), + [sym_raise_event_statement] = STATE(148), + [sym_name_statement] = STATE(148), + [sym_load_statement] = STATE(148), + [sym_unload_statement] = STATE(148), + [sym_def_type_statement] = STATE(148), + [sym_set_statement] = STATE(148), + [sym_assignment_statement] = STATE(148), + [sym_call_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1933), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(1360), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(1446), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(1446), + [sym_beep_statement] = ACTIONS(1446), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(112)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12791), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11195), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1935), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(113)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(12792), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11196), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1937), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(114)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12795), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11216), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1939), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(115)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12806), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11226), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1941), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(116)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(12807), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11186), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1943), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(117)] = { + [sym__statement_separator] = STATE(148), + [sym_preprocessor_const] = STATE(148), + [sym_preprocessor_if] = STATE(148), + [sym_block] = STATE(12852), + [sym__statement] = STATE(148), + [sym_variable_declaration] = STATE(148), + [sym_const_declaration] = STATE(148), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(148), + [sym_elseif_fragment] = STATE(148), + [sym_else_fragment] = STATE(148), + [sym_end_if_fragment] = STATE(148), + [sym_single_line_if_statement] = STATE(148), + [sym_select_statement] = STATE(148), + [sym_for_statement] = STATE(6729), + [sym__inline_for_statement] = STATE(6730), + [sym_for_each_statement] = STATE(6729), + [sym__inline_for_each_statement] = STATE(6732), + [sym__for_header] = STATE(11298), + [sym__for_each_header] = STATE(11310), + [sym_do_statement] = STATE(148), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(148), + [sym_with_statement] = STATE(148), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(148), + [sym_on_goto_statement] = STATE(148), + [sym_on_error_statement] = STATE(148), + [sym_resume_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_label_statement] = STATE(148), + [sym_line_number_prefix] = STATE(11154), + [sym_line_number_statement] = STATE(148), + [sym_redim_statement] = STATE(148), + [sym_erase_statement] = STATE(148), + [sym_open_statement] = STATE(148), + [sym_input_statement] = STATE(148), + [sym_line_input_statement] = STATE(148), + [sym_print_statement] = STATE(148), + [sym_write_statement] = STATE(148), + [sym_debug_print_statement] = STATE(148), + [sym_close_statement] = STATE(148), + [sym_get_statement] = STATE(148), + [sym_put_statement] = STATE(148), + [sym_lock_statement] = STATE(148), + [sym_unlock_statement] = STATE(148), + [sym_seek_statement] = STATE(148), + [sym_raise_event_statement] = STATE(148), + [sym_name_statement] = STATE(148), + [sym_load_statement] = STATE(148), + [sym_unload_statement] = STATE(148), + [sym_def_type_statement] = STATE(148), + [sym_set_statement] = STATE(148), + [sym_assignment_statement] = STATE(148), + [sym_call_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1945), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(1360), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(1446), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(1446), + [sym_beep_statement] = ACTIONS(1446), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(118)] = { + [sym__statement_separator] = STATE(148), + [sym_preprocessor_const] = STATE(148), + [sym_preprocessor_if] = STATE(148), + [sym_block] = STATE(12880), + [sym__statement] = STATE(148), + [sym_variable_declaration] = STATE(148), + [sym_const_declaration] = STATE(148), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(148), + [sym_elseif_fragment] = STATE(148), + [sym_else_fragment] = STATE(148), + [sym_end_if_fragment] = STATE(148), + [sym_single_line_if_statement] = STATE(148), + [sym_select_statement] = STATE(148), + [sym_for_statement] = STATE(5898), + [sym__inline_for_statement] = STATE(5899), + [sym_for_each_statement] = STATE(5898), + [sym__inline_for_each_statement] = STATE(5901), + [sym__for_header] = STATE(11267), + [sym__for_each_header] = STATE(11268), + [sym_do_statement] = STATE(148), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(148), + [sym_with_statement] = STATE(148), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(148), + [sym_on_goto_statement] = STATE(148), + [sym_on_error_statement] = STATE(148), + [sym_resume_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_label_statement] = STATE(148), + [sym_line_number_prefix] = STATE(11178), + [sym_line_number_statement] = STATE(148), + [sym_redim_statement] = STATE(148), + [sym_erase_statement] = STATE(148), + [sym_open_statement] = STATE(148), + [sym_input_statement] = STATE(148), + [sym_line_input_statement] = STATE(148), + [sym_print_statement] = STATE(148), + [sym_write_statement] = STATE(148), + [sym_debug_print_statement] = STATE(148), + [sym_close_statement] = STATE(148), + [sym_get_statement] = STATE(148), + [sym_put_statement] = STATE(148), + [sym_lock_statement] = STATE(148), + [sym_unlock_statement] = STATE(148), + [sym_seek_statement] = STATE(148), + [sym_raise_event_statement] = STATE(148), + [sym_name_statement] = STATE(148), + [sym_load_statement] = STATE(148), + [sym_unload_statement] = STATE(148), + [sym_def_type_statement] = STATE(148), + [sym_set_statement] = STATE(148), + [sym_assignment_statement] = STATE(148), + [sym_call_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1947), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(1360), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(1446), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(1446), + [sym_beep_statement] = ACTIONS(1446), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(119)] = { + [sym__statement_separator] = STATE(148), + [sym_preprocessor_const] = STATE(148), + [sym_preprocessor_if] = STATE(148), + [sym_block] = STATE(12926), + [sym__statement] = STATE(148), + [sym_variable_declaration] = STATE(148), + [sym_const_declaration] = STATE(148), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(148), + [sym_elseif_fragment] = STATE(148), + [sym_else_fragment] = STATE(148), + [sym_end_if_fragment] = STATE(148), + [sym_single_line_if_statement] = STATE(148), + [sym_select_statement] = STATE(148), + [sym_for_statement] = STATE(4221), + [sym__inline_for_statement] = STATE(4223), + [sym_for_each_statement] = STATE(4221), + [sym__inline_for_each_statement] = STATE(4226), + [sym__for_header] = STATE(11354), + [sym__for_each_header] = STATE(11356), + [sym_do_statement] = STATE(148), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(148), + [sym_with_statement] = STATE(148), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(148), + [sym_on_goto_statement] = STATE(148), + [sym_on_error_statement] = STATE(148), + [sym_resume_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_label_statement] = STATE(148), + [sym_line_number_prefix] = STATE(11188), + [sym_line_number_statement] = STATE(148), + [sym_redim_statement] = STATE(148), + [sym_erase_statement] = STATE(148), + [sym_open_statement] = STATE(148), + [sym_input_statement] = STATE(148), + [sym_line_input_statement] = STATE(148), + [sym_print_statement] = STATE(148), + [sym_write_statement] = STATE(148), + [sym_debug_print_statement] = STATE(148), + [sym_close_statement] = STATE(148), + [sym_get_statement] = STATE(148), + [sym_put_statement] = STATE(148), + [sym_lock_statement] = STATE(148), + [sym_unlock_statement] = STATE(148), + [sym_seek_statement] = STATE(148), + [sym_raise_event_statement] = STATE(148), + [sym_name_statement] = STATE(148), + [sym_load_statement] = STATE(148), + [sym_unload_statement] = STATE(148), + [sym_def_type_statement] = STATE(148), + [sym_set_statement] = STATE(148), + [sym_assignment_statement] = STATE(148), + [sym_call_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1949), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(1360), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(1446), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(1446), + [sym_beep_statement] = ACTIONS(1446), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(120)] = { + [sym__statement_separator] = STATE(148), + [sym_preprocessor_const] = STATE(148), + [sym_preprocessor_if] = STATE(148), + [sym_block] = STATE(12962), + [sym__statement] = STATE(148), + [sym_variable_declaration] = STATE(148), + [sym_const_declaration] = STATE(148), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(148), + [sym_elseif_fragment] = STATE(148), + [sym_else_fragment] = STATE(148), + [sym_end_if_fragment] = STATE(148), + [sym_single_line_if_statement] = STATE(148), + [sym_select_statement] = STATE(148), + [sym_for_statement] = STATE(5047), + [sym__inline_for_statement] = STATE(5048), + [sym_for_each_statement] = STATE(5047), + [sym__inline_for_each_statement] = STATE(5049), + [sym__for_header] = STATE(11408), + [sym__for_each_header] = STATE(11409), + [sym_do_statement] = STATE(148), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(148), + [sym_with_statement] = STATE(148), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(148), + [sym_on_goto_statement] = STATE(148), + [sym_on_error_statement] = STATE(148), + [sym_resume_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_label_statement] = STATE(148), + [sym_line_number_prefix] = STATE(11189), + [sym_line_number_statement] = STATE(148), + [sym_redim_statement] = STATE(148), + [sym_erase_statement] = STATE(148), + [sym_open_statement] = STATE(148), + [sym_input_statement] = STATE(148), + [sym_line_input_statement] = STATE(148), + [sym_print_statement] = STATE(148), + [sym_write_statement] = STATE(148), + [sym_debug_print_statement] = STATE(148), + [sym_close_statement] = STATE(148), + [sym_get_statement] = STATE(148), + [sym_put_statement] = STATE(148), + [sym_lock_statement] = STATE(148), + [sym_unlock_statement] = STATE(148), + [sym_seek_statement] = STATE(148), + [sym_raise_event_statement] = STATE(148), + [sym_name_statement] = STATE(148), + [sym_load_statement] = STATE(148), + [sym_unload_statement] = STATE(148), + [sym_def_type_statement] = STATE(148), + [sym_set_statement] = STATE(148), + [sym_assignment_statement] = STATE(148), + [sym_call_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1951), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(1360), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(1446), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(1446), + [sym_beep_statement] = ACTIONS(1446), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(121)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12518), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11229), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1953), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(122)] = { + [sym__statement_separator] = STATE(148), + [sym_preprocessor_const] = STATE(148), + [sym_preprocessor_if] = STATE(148), + [sym_block] = STATE(13014), + [sym__statement] = STATE(148), + [sym_variable_declaration] = STATE(148), + [sym_const_declaration] = STATE(148), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(148), + [sym_elseif_fragment] = STATE(148), + [sym_else_fragment] = STATE(148), + [sym_end_if_fragment] = STATE(148), + [sym_single_line_if_statement] = STATE(148), + [sym_select_statement] = STATE(148), + [sym_for_statement] = STATE(6255), + [sym__inline_for_statement] = STATE(6256), + [sym_for_each_statement] = STATE(6255), + [sym__inline_for_each_statement] = STATE(6258), + [sym__for_header] = STATE(11519), + [sym__for_each_header] = STATE(11520), + [sym_do_statement] = STATE(148), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(148), + [sym_with_statement] = STATE(148), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(148), + [sym_on_goto_statement] = STATE(148), + [sym_on_error_statement] = STATE(148), + [sym_resume_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_label_statement] = STATE(148), + [sym_line_number_prefix] = STATE(11199), + [sym_line_number_statement] = STATE(148), + [sym_redim_statement] = STATE(148), + [sym_erase_statement] = STATE(148), + [sym_open_statement] = STATE(148), + [sym_input_statement] = STATE(148), + [sym_line_input_statement] = STATE(148), + [sym_print_statement] = STATE(148), + [sym_write_statement] = STATE(148), + [sym_debug_print_statement] = STATE(148), + [sym_close_statement] = STATE(148), + [sym_get_statement] = STATE(148), + [sym_put_statement] = STATE(148), + [sym_lock_statement] = STATE(148), + [sym_unlock_statement] = STATE(148), + [sym_seek_statement] = STATE(148), + [sym_raise_event_statement] = STATE(148), + [sym_name_statement] = STATE(148), + [sym_load_statement] = STATE(148), + [sym_unload_statement] = STATE(148), + [sym_def_type_statement] = STATE(148), + [sym_set_statement] = STATE(148), + [sym_assignment_statement] = STATE(148), + [sym_call_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1955), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(1360), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(1446), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(1446), + [sym_beep_statement] = ACTIONS(1446), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(123)] = { + [sym__statement_separator] = STATE(148), + [sym_preprocessor_const] = STATE(148), + [sym_preprocessor_if] = STATE(148), + [sym_block] = STATE(13037), + [sym__statement] = STATE(148), + [sym_variable_declaration] = STATE(148), + [sym_const_declaration] = STATE(148), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(148), + [sym_elseif_fragment] = STATE(148), + [sym_else_fragment] = STATE(148), + [sym_end_if_fragment] = STATE(148), + [sym_single_line_if_statement] = STATE(148), + [sym_select_statement] = STATE(148), + [sym_for_statement] = STATE(5958), + [sym__inline_for_statement] = STATE(5984), + [sym_for_each_statement] = STATE(5958), + [sym__inline_for_each_statement] = STATE(5990), + [sym__for_header] = STATE(11483), + [sym__for_each_header] = STATE(11488), + [sym_do_statement] = STATE(148), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(148), + [sym_with_statement] = STATE(148), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(148), + [sym_on_goto_statement] = STATE(148), + [sym_on_error_statement] = STATE(148), + [sym_resume_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_label_statement] = STATE(148), + [sym_line_number_prefix] = STATE(11208), + [sym_line_number_statement] = STATE(148), + [sym_redim_statement] = STATE(148), + [sym_erase_statement] = STATE(148), + [sym_open_statement] = STATE(148), + [sym_input_statement] = STATE(148), + [sym_line_input_statement] = STATE(148), + [sym_print_statement] = STATE(148), + [sym_write_statement] = STATE(148), + [sym_debug_print_statement] = STATE(148), + [sym_close_statement] = STATE(148), + [sym_get_statement] = STATE(148), + [sym_put_statement] = STATE(148), + [sym_lock_statement] = STATE(148), + [sym_unlock_statement] = STATE(148), + [sym_seek_statement] = STATE(148), + [sym_raise_event_statement] = STATE(148), + [sym_name_statement] = STATE(148), + [sym_load_statement] = STATE(148), + [sym_unload_statement] = STATE(148), + [sym_def_type_statement] = STATE(148), + [sym_set_statement] = STATE(148), + [sym_assignment_statement] = STATE(148), + [sym_call_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1957), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(1360), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(1446), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(1446), + [sym_beep_statement] = ACTIONS(1446), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(124)] = { + [sym__statement_separator] = STATE(148), + [sym_preprocessor_const] = STATE(148), + [sym_preprocessor_if] = STATE(148), + [sym_block] = STATE(13051), + [sym__statement] = STATE(148), + [sym_variable_declaration] = STATE(148), + [sym_const_declaration] = STATE(148), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(148), + [sym_elseif_fragment] = STATE(148), + [sym_else_fragment] = STATE(148), + [sym_end_if_fragment] = STATE(148), + [sym_single_line_if_statement] = STATE(148), + [sym_select_statement] = STATE(148), + [sym_for_statement] = STATE(5920), + [sym__inline_for_statement] = STATE(5942), + [sym_for_each_statement] = STATE(5920), + [sym__inline_for_each_statement] = STATE(5961), + [sym__for_header] = STATE(11519), + [sym__for_each_header] = STATE(11520), + [sym_do_statement] = STATE(148), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(148), + [sym_with_statement] = STATE(148), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(148), + [sym_on_goto_statement] = STATE(148), + [sym_on_error_statement] = STATE(148), + [sym_resume_statement] = STATE(148), + [sym_goto_statement] = STATE(148), + [sym_label_statement] = STATE(148), + [sym_line_number_prefix] = STATE(11228), + [sym_line_number_statement] = STATE(148), + [sym_redim_statement] = STATE(148), + [sym_erase_statement] = STATE(148), + [sym_open_statement] = STATE(148), + [sym_input_statement] = STATE(148), + [sym_line_input_statement] = STATE(148), + [sym_print_statement] = STATE(148), + [sym_write_statement] = STATE(148), + [sym_debug_print_statement] = STATE(148), + [sym_close_statement] = STATE(148), + [sym_get_statement] = STATE(148), + [sym_put_statement] = STATE(148), + [sym_lock_statement] = STATE(148), + [sym_unlock_statement] = STATE(148), + [sym_seek_statement] = STATE(148), + [sym_raise_event_statement] = STATE(148), + [sym_name_statement] = STATE(148), + [sym_load_statement] = STATE(148), + [sym_unload_statement] = STATE(148), + [sym_def_type_statement] = STATE(148), + [sym_set_statement] = STATE(148), + [sym_assignment_statement] = STATE(148), + [sym_call_statement] = STATE(148), + [sym_expression_statement] = STATE(148), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1959), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(1360), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(1446), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(1446), + [sym_beep_statement] = ACTIONS(1446), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(125)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12685), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11148), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1961), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(126)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(12704), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11153), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1963), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(127)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12717), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11163), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1965), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(128)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12536), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11173), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1967), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(129)] = { + [sym__statement_separator] = STATE(151), + [sym_preprocessor_const] = STATE(151), + [sym_preprocessor_if] = STATE(151), + [sym_block] = STATE(12542), + [sym__statement] = STATE(151), + [sym_variable_declaration] = STATE(151), + [sym_const_declaration] = STATE(151), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(151), + [sym_elseif_fragment] = STATE(151), + [sym_else_fragment] = STATE(151), + [sym_end_if_fragment] = STATE(151), + [sym_single_line_if_statement] = STATE(151), + [sym_select_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(151), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(151), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(151), + [sym_with_statement] = STATE(151), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(151), + [sym_on_goto_statement] = STATE(151), + [sym_on_error_statement] = STATE(151), + [sym_resume_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_label_statement] = STATE(151), + [sym_line_number_prefix] = STATE(11174), + [sym_line_number_statement] = STATE(151), + [sym_redim_statement] = STATE(151), + [sym_erase_statement] = STATE(151), + [sym_open_statement] = STATE(151), + [sym_input_statement] = STATE(151), + [sym_line_input_statement] = STATE(151), + [sym_print_statement] = STATE(151), + [sym_write_statement] = STATE(151), + [sym_debug_print_statement] = STATE(151), + [sym_close_statement] = STATE(151), + [sym_get_statement] = STATE(151), + [sym_put_statement] = STATE(151), + [sym_lock_statement] = STATE(151), + [sym_unlock_statement] = STATE(151), + [sym_seek_statement] = STATE(151), + [sym_raise_event_statement] = STATE(151), + [sym_name_statement] = STATE(151), + [sym_load_statement] = STATE(151), + [sym_unload_statement] = STATE(151), + [sym_def_type_statement] = STATE(151), + [sym_set_statement] = STATE(151), + [sym_assignment_statement] = STATE(151), + [sym_call_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(1969), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(1719), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(1805), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(1805), + [sym_beep_statement] = ACTIONS(1805), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1825), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(130)] = { + [sym__statement_separator] = STATE(162), + [sym_preprocessor_const] = STATE(162), + [sym_preprocessor_if] = STATE(162), + [sym_block] = STATE(12215), + [sym__statement] = STATE(162), + [sym_variable_declaration] = STATE(162), + [sym_const_declaration] = STATE(162), + [sym_visibility] = STATE(11928), + [sym_if_statement] = STATE(162), + [sym_elseif_fragment] = STATE(162), + [sym_else_fragment] = STATE(162), + [sym_end_if_fragment] = STATE(162), + [sym_single_line_if_statement] = STATE(162), + [sym_select_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym__inline_for_statement] = STATE(6675), + [sym_for_each_statement] = STATE(162), + [sym__inline_for_each_statement] = STATE(6676), + [sym__for_header] = STATE(11443), + [sym__for_each_header] = STATE(11444), + [sym_do_statement] = STATE(162), + [sym__inline_do_statement] = STATE(6677), + [sym_while_statement] = STATE(162), + [sym_with_statement] = STATE(162), + [sym__inline_with_statement] = STATE(6678), + [sym_exit_statement] = STATE(162), + [sym_on_goto_statement] = STATE(162), + [sym_on_error_statement] = STATE(162), + [sym_resume_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym_label_statement] = STATE(162), + [sym_line_number_prefix] = STATE(11309), + [sym_line_number_statement] = STATE(162), + [sym_redim_statement] = STATE(162), + [sym_erase_statement] = STATE(162), + [sym_open_statement] = STATE(162), + [sym_input_statement] = STATE(162), + [sym_line_input_statement] = STATE(162), + [sym_print_statement] = STATE(162), + [sym_write_statement] = STATE(162), + [sym_debug_print_statement] = STATE(162), + [sym_close_statement] = STATE(162), + [sym_get_statement] = STATE(162), + [sym_put_statement] = STATE(162), + [sym_lock_statement] = STATE(162), + [sym_unlock_statement] = STATE(162), + [sym_seek_statement] = STATE(162), + [sym_raise_event_statement] = STATE(162), + [sym_name_statement] = STATE(162), + [sym_load_statement] = STATE(162), + [sym_unload_statement] = STATE(162), + [sym_def_type_statement] = STATE(162), + [sym_set_statement] = STATE(162), + [sym_assignment_statement] = STATE(162), + [sym_call_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym__primary_expression] = STATE(3463), + [sym__expression] = STATE(3463), + [sym__assignable_expression] = STATE(14513), + [sym__callable_expression] = STATE(418), + [sym__print_method_callee] = STATE(501), + [sym__print_method_call_expression] = STATE(6993), + [sym__qualified_print_method_expression] = STATE(6708), + [sym__implicit_print_method_expression] = STATE(6710), + [sym__line_method_expression] = STATE(12255), + [sym_call_expression] = STATE(2892), + [sym_new_expression] = STATE(3463), + [sym_addressof_expression] = STATE(3463), + [sym_type_of_expression] = STATE(3463), + [sym_member_expression] = STATE(2545), + [sym_qualified_member_expression] = STATE(2265), + [sym_implicit_member_expression] = STATE(2265), + [sym_parenthesized_expression] = STATE(3463), + [sym_binary_expression] = STATE(3463), + [sym_unary_expression] = STATE(3463), + [sym__signed_unary_expression] = STATE(2479), + [sym__literal] = STATE(3463), + [sym_boolean_literal] = STATE(3463), + [sym_file_number_literal] = STATE(3463), + [aux_sym_block_repeat1] = STATE(162), + [sym_identifier] = ACTIONS(1476), + [sym_newline] = ACTIONS(1971), + [anon_sym_COLON] = ACTIONS(1481), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1974), + [aux_sym_frm_property_statement_token1] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1490), + [aux_sym__attribute_identifier_token1] = ACTIONS(1492), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1494), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1496), + [aux_sym_preprocessor_const_token1] = ACTIONS(1498), + [sym_static_modifier] = ACTIONS(1500), + [sym__dim_keyword] = ACTIONS(1502), + [sym__redim_keyword] = ACTIONS(1504), + [aux_sym_get_accessor_token1] = ACTIONS(1506), + [aux_sym_set_accessor_token1] = ACTIONS(1508), + [aux_sym_const_declaration_token1] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [aux_sym_as_type_clause_token2] = ACTIONS(1514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1516), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1518), + [aux_sym_else_fragment_token1] = ACTIONS(1520), + [aux_sym_select_statement_token1] = ACTIONS(1522), + [aux_sym_select_statement_token2] = ACTIONS(1977), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1526), + [aux_sym_do_condition_token1] = ACTIONS(1528), + [aux_sym_with_statement_token1] = ACTIONS(1530), + [aux_sym_exit_statement_token1] = ACTIONS(1532), + [sym_end_statement] = ACTIONS(1481), + [aux_sym_on_goto_statement_token1] = ACTIONS(1534), + [aux_sym_on_goto_statement_token2] = ACTIONS(1536), + [aux_sym_on_error_statement_token2] = ACTIONS(1538), + [sym__ambiguous_redim_statement] = ACTIONS(1540), + [aux_sym_erase_statement_token1] = ACTIONS(1542), + [aux_sym_open_statement_token1] = ACTIONS(1544), + [aux_sym_file_mode_token2] = ACTIONS(1546), + [aux_sym_file_access_token2] = ACTIONS(1548), + [aux_sym_file_lock_token2] = ACTIONS(1550), + [aux_sym_print_statement_token1] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1558), + [aux_sym_close_statement_token1] = ACTIONS(1560), + [aux_sym_put_statement_token1] = ACTIONS(1562), + [aux_sym_unlock_statement_token1] = ACTIONS(1564), + [aux_sym_seek_statement_token1] = ACTIONS(1566), + [sym_reset_statement] = ACTIONS(1568), + [aux_sym_raise_event_statement_token1] = ACTIONS(1570), + [sym_stop_statement] = ACTIONS(1568), + [sym_beep_statement] = ACTIONS(1568), + [aux_sym_unload_statement_token1] = ACTIONS(1572), + [aux_sym_def_type_statement_token1] = ACTIONS(1574), + [aux_sym_def_type_statement_token2] = ACTIONS(1574), + [aux_sym_def_type_statement_token3] = ACTIONS(1574), + [aux_sym_def_type_statement_token4] = ACTIONS(1574), + [aux_sym_def_type_statement_token5] = ACTIONS(1574), + [aux_sym_def_type_statement_token6] = ACTIONS(1574), + [aux_sym_def_type_statement_token7] = ACTIONS(1574), + [aux_sym_def_type_statement_token8] = ACTIONS(1574), + [aux_sym_def_type_statement_token9] = ACTIONS(1574), + [aux_sym_def_type_statement_token10] = ACTIONS(1574), + [aux_sym_def_type_statement_token11] = ACTIONS(1574), + [aux_sym_def_type_statement_token12] = ACTIONS(1574), + [aux_sym_def_type_statement_token13] = ACTIONS(1574), + [aux_sym_def_type_statement_token14] = ACTIONS(1574), + [aux_sym_call_statement_token1] = ACTIONS(1576), + [sym__ambiguous_call_statement] = ACTIONS(1578), + [aux_sym_addressof_expression_token1] = ACTIONS(1580), + [aux_sym_type_of_expression_token1] = ACTIONS(1582), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(1586), + [sym_number_literal] = ACTIONS(1979), + [aux_sym_boolean_literal_token1] = ACTIONS(1591), + [aux_sym_boolean_literal_token2] = ACTIONS(1591), + [sym_nothing_literal] = ACTIONS(1593), + [sym_null_literal] = ACTIONS(1593), + [sym_empty_literal] = ACTIONS(1593), + [sym_date_literal] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1595), + }, + [STATE(131)] = { + [sym__statement_separator] = STATE(162), + [sym_preprocessor_const] = STATE(162), + [sym_preprocessor_if] = STATE(162), + [sym_block] = STATE(12232), + [sym__statement] = STATE(162), + [sym_variable_declaration] = STATE(162), + [sym_const_declaration] = STATE(162), + [sym_visibility] = STATE(11928), + [sym_if_statement] = STATE(162), + [sym_elseif_fragment] = STATE(162), + [sym_else_fragment] = STATE(162), + [sym_end_if_fragment] = STATE(162), + [sym_single_line_if_statement] = STATE(162), + [sym_select_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym__inline_for_statement] = STATE(6675), + [sym_for_each_statement] = STATE(162), + [sym__inline_for_each_statement] = STATE(6676), + [sym__for_header] = STATE(11443), + [sym__for_each_header] = STATE(11444), + [sym_do_statement] = STATE(162), + [sym__inline_do_statement] = STATE(6677), + [sym_while_statement] = STATE(162), + [sym_with_statement] = STATE(162), + [sym__inline_with_statement] = STATE(6678), + [sym_exit_statement] = STATE(162), + [sym_on_goto_statement] = STATE(162), + [sym_on_error_statement] = STATE(162), + [sym_resume_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym_label_statement] = STATE(162), + [sym_line_number_prefix] = STATE(11309), + [sym_line_number_statement] = STATE(162), + [sym_redim_statement] = STATE(162), + [sym_erase_statement] = STATE(162), + [sym_open_statement] = STATE(162), + [sym_input_statement] = STATE(162), + [sym_line_input_statement] = STATE(162), + [sym_print_statement] = STATE(162), + [sym_write_statement] = STATE(162), + [sym_debug_print_statement] = STATE(162), + [sym_close_statement] = STATE(162), + [sym_get_statement] = STATE(162), + [sym_put_statement] = STATE(162), + [sym_lock_statement] = STATE(162), + [sym_unlock_statement] = STATE(162), + [sym_seek_statement] = STATE(162), + [sym_raise_event_statement] = STATE(162), + [sym_name_statement] = STATE(162), + [sym_load_statement] = STATE(162), + [sym_unload_statement] = STATE(162), + [sym_def_type_statement] = STATE(162), + [sym_set_statement] = STATE(162), + [sym_assignment_statement] = STATE(162), + [sym_call_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym__primary_expression] = STATE(3463), + [sym__expression] = STATE(3463), + [sym__assignable_expression] = STATE(14513), + [sym__callable_expression] = STATE(418), + [sym__print_method_callee] = STATE(501), + [sym__print_method_call_expression] = STATE(6993), + [sym__qualified_print_method_expression] = STATE(6708), + [sym__implicit_print_method_expression] = STATE(6710), + [sym__line_method_expression] = STATE(12255), + [sym_call_expression] = STATE(2892), + [sym_new_expression] = STATE(3463), + [sym_addressof_expression] = STATE(3463), + [sym_type_of_expression] = STATE(3463), + [sym_member_expression] = STATE(2545), + [sym_qualified_member_expression] = STATE(2265), + [sym_implicit_member_expression] = STATE(2265), + [sym_parenthesized_expression] = STATE(3463), + [sym_binary_expression] = STATE(3463), + [sym_unary_expression] = STATE(3463), + [sym__signed_unary_expression] = STATE(2479), + [sym__literal] = STATE(3463), + [sym_boolean_literal] = STATE(3463), + [sym_file_number_literal] = STATE(3463), + [aux_sym_block_repeat1] = STATE(162), + [sym_identifier] = ACTIONS(1476), + [sym_newline] = ACTIONS(1982), + [anon_sym_COLON] = ACTIONS(1481), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1985), + [aux_sym_frm_property_statement_token1] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1490), + [aux_sym__attribute_identifier_token1] = ACTIONS(1492), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1494), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1496), + [aux_sym_preprocessor_const_token1] = ACTIONS(1498), + [sym_static_modifier] = ACTIONS(1500), + [sym__dim_keyword] = ACTIONS(1502), + [sym__redim_keyword] = ACTIONS(1504), + [aux_sym_get_accessor_token1] = ACTIONS(1506), + [aux_sym_set_accessor_token1] = ACTIONS(1508), + [aux_sym_const_declaration_token1] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [aux_sym_as_type_clause_token2] = ACTIONS(1514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1516), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1518), + [aux_sym_else_fragment_token1] = ACTIONS(1520), + [aux_sym_select_statement_token1] = ACTIONS(1522), + [aux_sym_select_statement_token2] = ACTIONS(1988), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1526), + [aux_sym_do_condition_token1] = ACTIONS(1528), + [aux_sym_with_statement_token1] = ACTIONS(1530), + [aux_sym_exit_statement_token1] = ACTIONS(1532), + [sym_end_statement] = ACTIONS(1481), + [aux_sym_on_goto_statement_token1] = ACTIONS(1534), + [aux_sym_on_goto_statement_token2] = ACTIONS(1536), + [aux_sym_on_error_statement_token2] = ACTIONS(1538), + [sym__ambiguous_redim_statement] = ACTIONS(1540), + [aux_sym_erase_statement_token1] = ACTIONS(1542), + [aux_sym_open_statement_token1] = ACTIONS(1544), + [aux_sym_file_mode_token2] = ACTIONS(1546), + [aux_sym_file_access_token2] = ACTIONS(1548), + [aux_sym_file_lock_token2] = ACTIONS(1550), + [aux_sym_print_statement_token1] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1558), + [aux_sym_close_statement_token1] = ACTIONS(1560), + [aux_sym_put_statement_token1] = ACTIONS(1562), + [aux_sym_unlock_statement_token1] = ACTIONS(1564), + [aux_sym_seek_statement_token1] = ACTIONS(1566), + [sym_reset_statement] = ACTIONS(1568), + [aux_sym_raise_event_statement_token1] = ACTIONS(1570), + [sym_stop_statement] = ACTIONS(1568), + [sym_beep_statement] = ACTIONS(1568), + [aux_sym_unload_statement_token1] = ACTIONS(1572), + [aux_sym_def_type_statement_token1] = ACTIONS(1574), + [aux_sym_def_type_statement_token2] = ACTIONS(1574), + [aux_sym_def_type_statement_token3] = ACTIONS(1574), + [aux_sym_def_type_statement_token4] = ACTIONS(1574), + [aux_sym_def_type_statement_token5] = ACTIONS(1574), + [aux_sym_def_type_statement_token6] = ACTIONS(1574), + [aux_sym_def_type_statement_token7] = ACTIONS(1574), + [aux_sym_def_type_statement_token8] = ACTIONS(1574), + [aux_sym_def_type_statement_token9] = ACTIONS(1574), + [aux_sym_def_type_statement_token10] = ACTIONS(1574), + [aux_sym_def_type_statement_token11] = ACTIONS(1574), + [aux_sym_def_type_statement_token12] = ACTIONS(1574), + [aux_sym_def_type_statement_token13] = ACTIONS(1574), + [aux_sym_def_type_statement_token14] = ACTIONS(1574), + [aux_sym_call_statement_token1] = ACTIONS(1576), + [sym__ambiguous_call_statement] = ACTIONS(1578), + [aux_sym_addressof_expression_token1] = ACTIONS(1580), + [aux_sym_type_of_expression_token1] = ACTIONS(1582), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(1586), + [sym_number_literal] = ACTIONS(1990), + [aux_sym_boolean_literal_token1] = ACTIONS(1591), + [aux_sym_boolean_literal_token2] = ACTIONS(1591), + [sym_nothing_literal] = ACTIONS(1593), + [sym_null_literal] = ACTIONS(1593), + [sym_empty_literal] = ACTIONS(1593), + [sym_date_literal] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1595), + }, + [STATE(132)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12648), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11149), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(1993), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(133)] = { + [sym__statement_separator] = STATE(162), + [sym_preprocessor_const] = STATE(162), + [sym_preprocessor_if] = STATE(162), + [sym_block] = STATE(12189), + [sym__statement] = STATE(162), + [sym_variable_declaration] = STATE(162), + [sym_const_declaration] = STATE(162), + [sym_visibility] = STATE(11928), + [sym_if_statement] = STATE(162), + [sym_elseif_fragment] = STATE(162), + [sym_else_fragment] = STATE(162), + [sym_end_if_fragment] = STATE(162), + [sym_single_line_if_statement] = STATE(162), + [sym_select_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym__inline_for_statement] = STATE(6675), + [sym_for_each_statement] = STATE(162), + [sym__inline_for_each_statement] = STATE(6676), + [sym__for_header] = STATE(11443), + [sym__for_each_header] = STATE(11444), + [sym_do_statement] = STATE(162), + [sym__inline_do_statement] = STATE(6677), + [sym_while_statement] = STATE(162), + [sym_with_statement] = STATE(162), + [sym__inline_with_statement] = STATE(6678), + [sym_exit_statement] = STATE(162), + [sym_on_goto_statement] = STATE(162), + [sym_on_error_statement] = STATE(162), + [sym_resume_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym_label_statement] = STATE(162), + [sym_line_number_prefix] = STATE(11309), + [sym_line_number_statement] = STATE(162), + [sym_redim_statement] = STATE(162), + [sym_erase_statement] = STATE(162), + [sym_open_statement] = STATE(162), + [sym_input_statement] = STATE(162), + [sym_line_input_statement] = STATE(162), + [sym_print_statement] = STATE(162), + [sym_write_statement] = STATE(162), + [sym_debug_print_statement] = STATE(162), + [sym_close_statement] = STATE(162), + [sym_get_statement] = STATE(162), + [sym_put_statement] = STATE(162), + [sym_lock_statement] = STATE(162), + [sym_unlock_statement] = STATE(162), + [sym_seek_statement] = STATE(162), + [sym_raise_event_statement] = STATE(162), + [sym_name_statement] = STATE(162), + [sym_load_statement] = STATE(162), + [sym_unload_statement] = STATE(162), + [sym_def_type_statement] = STATE(162), + [sym_set_statement] = STATE(162), + [sym_assignment_statement] = STATE(162), + [sym_call_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym__primary_expression] = STATE(3463), + [sym__expression] = STATE(3463), + [sym__assignable_expression] = STATE(14513), + [sym__callable_expression] = STATE(418), + [sym__print_method_callee] = STATE(501), + [sym__print_method_call_expression] = STATE(6993), + [sym__qualified_print_method_expression] = STATE(6708), + [sym__implicit_print_method_expression] = STATE(6710), + [sym__line_method_expression] = STATE(12255), + [sym_call_expression] = STATE(2892), + [sym_new_expression] = STATE(3463), + [sym_addressof_expression] = STATE(3463), + [sym_type_of_expression] = STATE(3463), + [sym_member_expression] = STATE(2545), + [sym_qualified_member_expression] = STATE(2265), + [sym_implicit_member_expression] = STATE(2265), + [sym_parenthesized_expression] = STATE(3463), + [sym_binary_expression] = STATE(3463), + [sym_unary_expression] = STATE(3463), + [sym__signed_unary_expression] = STATE(2479), + [sym__literal] = STATE(3463), + [sym_boolean_literal] = STATE(3463), + [sym_file_number_literal] = STATE(3463), + [aux_sym_block_repeat1] = STATE(162), + [sym_identifier] = ACTIONS(1476), + [sym_newline] = ACTIONS(1995), + [anon_sym_COLON] = ACTIONS(1481), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1998), + [aux_sym_frm_property_statement_token1] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1490), + [aux_sym__attribute_identifier_token1] = ACTIONS(1492), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1494), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1496), + [aux_sym_preprocessor_const_token1] = ACTIONS(1498), + [sym_static_modifier] = ACTIONS(1500), + [sym__dim_keyword] = ACTIONS(1502), + [sym__redim_keyword] = ACTIONS(1504), + [aux_sym_get_accessor_token1] = ACTIONS(1506), + [aux_sym_set_accessor_token1] = ACTIONS(1508), + [aux_sym_const_declaration_token1] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [aux_sym_as_type_clause_token2] = ACTIONS(1514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1516), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1518), + [aux_sym_else_fragment_token1] = ACTIONS(1520), + [aux_sym_select_statement_token1] = ACTIONS(1522), + [aux_sym_select_statement_token2] = ACTIONS(2001), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1526), + [aux_sym_do_condition_token1] = ACTIONS(1528), + [aux_sym_with_statement_token1] = ACTIONS(1530), + [aux_sym_exit_statement_token1] = ACTIONS(1532), + [sym_end_statement] = ACTIONS(1481), + [aux_sym_on_goto_statement_token1] = ACTIONS(1534), + [aux_sym_on_goto_statement_token2] = ACTIONS(1536), + [aux_sym_on_error_statement_token2] = ACTIONS(1538), + [sym__ambiguous_redim_statement] = ACTIONS(1540), + [aux_sym_erase_statement_token1] = ACTIONS(1542), + [aux_sym_open_statement_token1] = ACTIONS(1544), + [aux_sym_file_mode_token2] = ACTIONS(1546), + [aux_sym_file_access_token2] = ACTIONS(1548), + [aux_sym_file_lock_token2] = ACTIONS(1550), + [aux_sym_print_statement_token1] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1558), + [aux_sym_close_statement_token1] = ACTIONS(1560), + [aux_sym_put_statement_token1] = ACTIONS(1562), + [aux_sym_unlock_statement_token1] = ACTIONS(1564), + [aux_sym_seek_statement_token1] = ACTIONS(1566), + [sym_reset_statement] = ACTIONS(1568), + [aux_sym_raise_event_statement_token1] = ACTIONS(1570), + [sym_stop_statement] = ACTIONS(1568), + [sym_beep_statement] = ACTIONS(1568), + [aux_sym_unload_statement_token1] = ACTIONS(1572), + [aux_sym_def_type_statement_token1] = ACTIONS(1574), + [aux_sym_def_type_statement_token2] = ACTIONS(1574), + [aux_sym_def_type_statement_token3] = ACTIONS(1574), + [aux_sym_def_type_statement_token4] = ACTIONS(1574), + [aux_sym_def_type_statement_token5] = ACTIONS(1574), + [aux_sym_def_type_statement_token6] = ACTIONS(1574), + [aux_sym_def_type_statement_token7] = ACTIONS(1574), + [aux_sym_def_type_statement_token8] = ACTIONS(1574), + [aux_sym_def_type_statement_token9] = ACTIONS(1574), + [aux_sym_def_type_statement_token10] = ACTIONS(1574), + [aux_sym_def_type_statement_token11] = ACTIONS(1574), + [aux_sym_def_type_statement_token12] = ACTIONS(1574), + [aux_sym_def_type_statement_token13] = ACTIONS(1574), + [aux_sym_def_type_statement_token14] = ACTIONS(1574), + [aux_sym_call_statement_token1] = ACTIONS(1576), + [sym__ambiguous_call_statement] = ACTIONS(1578), + [aux_sym_addressof_expression_token1] = ACTIONS(1580), + [aux_sym_type_of_expression_token1] = ACTIONS(1582), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(1586), + [sym_number_literal] = ACTIONS(2003), + [aux_sym_boolean_literal_token1] = ACTIONS(1591), + [aux_sym_boolean_literal_token2] = ACTIONS(1591), + [sym_nothing_literal] = ACTIONS(1593), + [sym_null_literal] = ACTIONS(1593), + [sym_empty_literal] = ACTIONS(1593), + [sym_date_literal] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1595), + }, + [STATE(134)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12971), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11185), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(2006), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(135)] = { + [sym__statement_separator] = STATE(142), + [sym_preprocessor_const] = STATE(142), + [sym_preprocessor_if] = STATE(142), + [sym_block] = STATE(12599), + [sym__statement] = STATE(142), + [sym_variable_declaration] = STATE(142), + [sym_const_declaration] = STATE(142), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(142), + [sym_elseif_fragment] = STATE(142), + [sym_else_fragment] = STATE(142), + [sym_end_if_fragment] = STATE(142), + [sym_single_line_if_statement] = STATE(142), + [sym_select_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(142), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(142), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(142), + [sym_with_statement] = STATE(142), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(142), + [sym_on_goto_statement] = STATE(142), + [sym_on_error_statement] = STATE(142), + [sym_resume_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_label_statement] = STATE(142), + [sym_line_number_prefix] = STATE(11179), + [sym_line_number_statement] = STATE(142), + [sym_redim_statement] = STATE(142), + [sym_erase_statement] = STATE(142), + [sym_open_statement] = STATE(142), + [sym_input_statement] = STATE(142), + [sym_line_input_statement] = STATE(142), + [sym_print_statement] = STATE(142), + [sym_write_statement] = STATE(142), + [sym_debug_print_statement] = STATE(142), + [sym_close_statement] = STATE(142), + [sym_get_statement] = STATE(142), + [sym_put_statement] = STATE(142), + [sym_lock_statement] = STATE(142), + [sym_unlock_statement] = STATE(142), + [sym_seek_statement] = STATE(142), + [sym_raise_event_statement] = STATE(142), + [sym_name_statement] = STATE(142), + [sym_load_statement] = STATE(142), + [sym_unload_statement] = STATE(142), + [sym_def_type_statement] = STATE(142), + [sym_set_statement] = STATE(142), + [sym_assignment_statement] = STATE(142), + [sym_call_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(2008), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(1599), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(1685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(1685), + [sym_beep_statement] = ACTIONS(1685), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1705), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(136)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12799), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11381), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2012), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(137)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12892), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11432), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2016), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(138)] = { + [sym__statement_separator] = STATE(177), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [sym_block] = STATE(13878), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2018), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(139)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12551), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11376), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2020), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(140)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12706), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11284), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2022), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(141)] = { + [sym__statement_separator] = STATE(177), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [sym_block] = STATE(13880), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2024), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(142)] = { + [sym__statement_separator] = STATE(144), + [sym_preprocessor_const] = STATE(144), + [sym_preprocessor_if] = STATE(144), + [sym__statement] = STATE(144), + [sym_variable_declaration] = STATE(144), + [sym_const_declaration] = STATE(144), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(144), + [sym_elseif_fragment] = STATE(144), + [sym_else_fragment] = STATE(144), + [sym_end_if_fragment] = STATE(144), + [sym_single_line_if_statement] = STATE(144), + [sym_select_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(144), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(144), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(144), + [sym_with_statement] = STATE(144), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(144), + [sym_on_goto_statement] = STATE(144), + [sym_on_error_statement] = STATE(144), + [sym_resume_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_label_statement] = STATE(144), + [sym_line_number_prefix] = STATE(11572), + [sym_line_number_statement] = STATE(144), + [sym_redim_statement] = STATE(144), + [sym_erase_statement] = STATE(144), + [sym_open_statement] = STATE(144), + [sym_input_statement] = STATE(144), + [sym_line_input_statement] = STATE(144), + [sym_print_statement] = STATE(144), + [sym_write_statement] = STATE(144), + [sym_debug_print_statement] = STATE(144), + [sym_close_statement] = STATE(144), + [sym_get_statement] = STATE(144), + [sym_put_statement] = STATE(144), + [sym_lock_statement] = STATE(144), + [sym_unlock_statement] = STATE(144), + [sym_seek_statement] = STATE(144), + [sym_raise_event_statement] = STATE(144), + [sym_name_statement] = STATE(144), + [sym_load_statement] = STATE(144), + [sym_unload_statement] = STATE(144), + [sym_def_type_statement] = STATE(144), + [sym_set_statement] = STATE(144), + [sym_assignment_statement] = STATE(144), + [sym_call_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(1597), + [sym_newline] = ACTIONS(2026), + [anon_sym_COLON] = ACTIONS(2026), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1601), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1611), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1613), + [aux_sym_preprocessor_const_token1] = ACTIONS(1615), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1635), + [aux_sym_else_fragment_token1] = ACTIONS(1637), + [aux_sym_select_statement_token1] = ACTIONS(1639), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(2028), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(2026), + [aux_sym_on_goto_statement_token1] = ACTIONS(1651), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(2030), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(2030), + [sym_beep_statement] = ACTIONS(2030), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(2032), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(143)] = { + [sym__statement_separator] = STATE(177), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [sym_block] = STATE(13870), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2035), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(144)] = { + [sym__statement_separator] = STATE(144), + [sym_preprocessor_const] = STATE(144), + [sym_preprocessor_if] = STATE(144), + [sym__statement] = STATE(144), + [sym_variable_declaration] = STATE(144), + [sym_const_declaration] = STATE(144), + [sym_visibility] = STATE(11858), + [sym_if_statement] = STATE(144), + [sym_elseif_fragment] = STATE(144), + [sym_else_fragment] = STATE(144), + [sym_end_if_fragment] = STATE(144), + [sym_single_line_if_statement] = STATE(144), + [sym_select_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym__inline_for_statement] = STATE(6762), + [sym_for_each_statement] = STATE(144), + [sym__inline_for_each_statement] = STATE(6767), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(144), + [sym__inline_do_statement] = STATE(6770), + [sym_while_statement] = STATE(144), + [sym_with_statement] = STATE(144), + [sym__inline_with_statement] = STATE(6771), + [sym_exit_statement] = STATE(144), + [sym_on_goto_statement] = STATE(144), + [sym_on_error_statement] = STATE(144), + [sym_resume_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_label_statement] = STATE(144), + [sym_line_number_prefix] = STATE(11572), + [sym_line_number_statement] = STATE(144), + [sym_redim_statement] = STATE(144), + [sym_erase_statement] = STATE(144), + [sym_open_statement] = STATE(144), + [sym_input_statement] = STATE(144), + [sym_line_input_statement] = STATE(144), + [sym_print_statement] = STATE(144), + [sym_write_statement] = STATE(144), + [sym_debug_print_statement] = STATE(144), + [sym_close_statement] = STATE(144), + [sym_get_statement] = STATE(144), + [sym_put_statement] = STATE(144), + [sym_lock_statement] = STATE(144), + [sym_unlock_statement] = STATE(144), + [sym_seek_statement] = STATE(144), + [sym_raise_event_statement] = STATE(144), + [sym_name_statement] = STATE(144), + [sym_load_statement] = STATE(144), + [sym_unload_statement] = STATE(144), + [sym_def_type_statement] = STATE(144), + [sym_set_statement] = STATE(144), + [sym_assignment_statement] = STATE(144), + [sym_call_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [aux_sym_block_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(2037), + [sym_newline] = ACTIONS(2040), + [anon_sym_COLON] = ACTIONS(2040), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2043), + [aux_sym_frm_property_statement_token1] = ACTIONS(2046), + [anon_sym_DOT] = ACTIONS(2049), + [anon_sym_BANG] = ACTIONS(2052), + [aux_sym__attribute_identifier_token1] = ACTIONS(2055), + [aux_sym_option_statement_token3] = ACTIONS(1194), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2058), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2061), + [aux_sym_preprocessor_const_token1] = ACTIONS(2064), + [sym_static_modifier] = ACTIONS(2067), + [sym__dim_keyword] = ACTIONS(2070), + [sym__redim_keyword] = ACTIONS(2073), + [aux_sym_get_accessor_token1] = ACTIONS(2076), + [aux_sym_set_accessor_token1] = ACTIONS(2079), + [aux_sym_const_declaration_token1] = ACTIONS(2082), + [anon_sym_LPAREN] = ACTIONS(2085), + [aux_sym_as_type_clause_token2] = ACTIONS(2088), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2091), + [aux_sym_visibility_token1] = ACTIONS(1194), + [aux_sym_visibility_token2] = ACTIONS(1194), + [aux_sym_elseif_fragment_token1] = ACTIONS(2094), + [aux_sym_else_fragment_token1] = ACTIONS(2097), + [aux_sym_select_statement_token1] = ACTIONS(2100), + [aux_sym__for_header_token1] = ACTIONS(1244), + [aux_sym_do_statement_token1] = ACTIONS(2103), + [aux_sym_do_statement_token2] = ACTIONS(1200), + [aux_sym_do_condition_token1] = ACTIONS(2106), + [aux_sym_with_statement_token1] = ACTIONS(2109), + [aux_sym_exit_statement_token1] = ACTIONS(2112), + [sym_end_statement] = ACTIONS(2040), + [aux_sym_on_goto_statement_token1] = ACTIONS(2115), + [aux_sym_on_goto_statement_token2] = ACTIONS(2118), + [aux_sym_on_error_statement_token2] = ACTIONS(2121), + [sym__ambiguous_redim_statement] = ACTIONS(2124), + [aux_sym_erase_statement_token1] = ACTIONS(2127), + [aux_sym_open_statement_token1] = ACTIONS(2130), + [aux_sym_file_mode_token2] = ACTIONS(2133), + [aux_sym_file_access_token2] = ACTIONS(2136), + [aux_sym_file_lock_token2] = ACTIONS(2139), + [aux_sym_print_statement_token1] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_QMARK] = ACTIONS(2151), + [aux_sym_close_statement_token1] = ACTIONS(2154), + [aux_sym_put_statement_token1] = ACTIONS(2157), + [aux_sym_unlock_statement_token1] = ACTIONS(2160), + [aux_sym_seek_statement_token1] = ACTIONS(2163), + [sym_reset_statement] = ACTIONS(2166), + [aux_sym_raise_event_statement_token1] = ACTIONS(2169), + [sym_stop_statement] = ACTIONS(2166), + [sym_beep_statement] = ACTIONS(2166), + [aux_sym_unload_statement_token1] = ACTIONS(2172), + [aux_sym_def_type_statement_token1] = ACTIONS(2175), + [aux_sym_def_type_statement_token2] = ACTIONS(2175), + [aux_sym_def_type_statement_token3] = ACTIONS(2175), + [aux_sym_def_type_statement_token4] = ACTIONS(2175), + [aux_sym_def_type_statement_token5] = ACTIONS(2175), + [aux_sym_def_type_statement_token6] = ACTIONS(2175), + [aux_sym_def_type_statement_token7] = ACTIONS(2175), + [aux_sym_def_type_statement_token8] = ACTIONS(2175), + [aux_sym_def_type_statement_token9] = ACTIONS(2175), + [aux_sym_def_type_statement_token10] = ACTIONS(2175), + [aux_sym_def_type_statement_token11] = ACTIONS(2175), + [aux_sym_def_type_statement_token12] = ACTIONS(2175), + [aux_sym_def_type_statement_token13] = ACTIONS(2175), + [aux_sym_def_type_statement_token14] = ACTIONS(2175), + [aux_sym_call_statement_token1] = ACTIONS(2178), + [sym__ambiguous_call_statement] = ACTIONS(2181), + [aux_sym_addressof_expression_token1] = ACTIONS(2184), + [aux_sym_type_of_expression_token1] = ACTIONS(2187), + [aux_sym_unary_expression_token1] = ACTIONS(2190), + [sym_string_literal] = ACTIONS(2193), + [sym_number_literal] = ACTIONS(2196), + [aux_sym_boolean_literal_token1] = ACTIONS(2199), + [aux_sym_boolean_literal_token2] = ACTIONS(2199), + [sym_nothing_literal] = ACTIONS(2202), + [sym_null_literal] = ACTIONS(2202), + [sym_empty_literal] = ACTIONS(2202), + [sym_date_literal] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(2205), + }, + [STATE(145)] = { + [sym_preprocessor_const] = STATE(51), + [sym_preprocessor_if] = STATE(51), + [sym_conditional_branch_body] = STATE(12403), + [sym__statement] = STATE(51), + [sym_variable_declaration] = STATE(51), + [sym_const_declaration] = STATE(51), + [sym_visibility] = STATE(11799), + [sym_if_statement] = STATE(51), + [sym_elseif_fragment] = STATE(51), + [sym_else_fragment] = STATE(51), + [sym_end_if_fragment] = STATE(51), + [sym_single_line_if_statement] = STATE(51), + [sym_select_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym__inline_for_statement] = STATE(5250), + [sym_for_each_statement] = STATE(51), + [sym__inline_for_each_statement] = STATE(5251), + [sym__for_header] = STATE(11307), + [sym__for_each_header] = STATE(11308), + [sym_do_statement] = STATE(51), + [sym__inline_do_statement] = STATE(5252), + [sym_while_statement] = STATE(51), + [sym_with_statement] = STATE(51), + [sym__inline_with_statement] = STATE(5253), + [sym_exit_statement] = STATE(51), + [sym_on_goto_statement] = STATE(51), + [sym_on_error_statement] = STATE(51), + [sym_resume_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym_label_statement] = STATE(51), + [sym_line_number_prefix] = STATE(11492), + [sym_line_number_statement] = STATE(51), + [sym_redim_statement] = STATE(51), + [sym_erase_statement] = STATE(51), + [sym_open_statement] = STATE(51), + [sym_input_statement] = STATE(51), + [sym_line_input_statement] = STATE(51), + [sym_print_statement] = STATE(51), + [sym_write_statement] = STATE(51), + [sym_debug_print_statement] = STATE(51), + [sym_close_statement] = STATE(51), + [sym_get_statement] = STATE(51), + [sym_put_statement] = STATE(51), + [sym_lock_statement] = STATE(51), + [sym_unlock_statement] = STATE(51), + [sym_seek_statement] = STATE(51), + [sym_raise_event_statement] = STATE(51), + [sym_name_statement] = STATE(51), + [sym_load_statement] = STATE(51), + [sym_unload_statement] = STATE(51), + [sym_def_type_statement] = STATE(51), + [sym_set_statement] = STATE(51), + [sym_assignment_statement] = STATE(51), + [sym_call_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym__primary_expression] = STATE(2614), + [sym__expression] = STATE(2614), + [sym__assignable_expression] = STATE(14425), + [sym__callable_expression] = STATE(378), + [sym__print_method_callee] = STATE(393), + [sym__print_method_call_expression] = STATE(5499), + [sym__qualified_print_method_expression] = STATE(5500), + [sym__implicit_print_method_expression] = STATE(5501), + [sym__line_method_expression] = STATE(12228), + [sym_call_expression] = STATE(2293), + [sym_new_expression] = STATE(2614), + [sym_addressof_expression] = STATE(2614), + [sym_type_of_expression] = STATE(2614), + [sym_member_expression] = STATE(2211), + [sym_qualified_member_expression] = STATE(2182), + [sym_implicit_member_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2614), + [sym_binary_expression] = STATE(2614), + [sym_unary_expression] = STATE(2614), + [sym__signed_unary_expression] = STATE(2203), + [sym__literal] = STATE(2614), + [sym_boolean_literal] = STATE(2614), + [sym_file_number_literal] = STATE(2614), + [aux_sym__conditional_property_headers_repeat1] = STATE(12297), + [sym_identifier] = ACTIONS(1057), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1061), + [aux_sym_frm_property_statement_token1] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [aux_sym__attribute_identifier_token1] = ACTIONS(1069), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1071), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(2208), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1075), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(2210), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(2212), + [aux_sym_preprocessor_const_token1] = ACTIONS(1077), + [sym_static_modifier] = ACTIONS(1079), + [sym__dim_keyword] = ACTIONS(1081), + [sym__redim_keyword] = ACTIONS(1083), + [aux_sym_get_accessor_token1] = ACTIONS(1085), + [aux_sym_set_accessor_token1] = ACTIONS(1087), + [aux_sym_const_declaration_token1] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_as_type_clause_token2] = ACTIONS(1093), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1095), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1097), + [aux_sym_else_fragment_token1] = ACTIONS(1099), + [aux_sym_select_statement_token1] = ACTIONS(1101), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1103), + [aux_sym_do_condition_token1] = ACTIONS(1105), + [aux_sym_with_statement_token1] = ACTIONS(1107), + [aux_sym_exit_statement_token1] = ACTIONS(1109), + [sym_end_statement] = ACTIONS(2214), + [aux_sym_on_goto_statement_token1] = ACTIONS(1111), + [aux_sym_on_goto_statement_token2] = ACTIONS(1113), + [aux_sym_on_error_statement_token2] = ACTIONS(1115), + [sym__ambiguous_redim_statement] = ACTIONS(1117), + [aux_sym_erase_statement_token1] = ACTIONS(1119), + [aux_sym_open_statement_token1] = ACTIONS(1121), + [aux_sym_file_mode_token2] = ACTIONS(1123), + [aux_sym_file_access_token2] = ACTIONS(1125), + [aux_sym_file_lock_token2] = ACTIONS(1127), + [aux_sym_print_statement_token1] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [aux_sym_close_statement_token1] = ACTIONS(1137), + [aux_sym_put_statement_token1] = ACTIONS(1139), + [aux_sym_unlock_statement_token1] = ACTIONS(1141), + [aux_sym_seek_statement_token1] = ACTIONS(1143), + [sym_reset_statement] = ACTIONS(2216), + [aux_sym_raise_event_statement_token1] = ACTIONS(1147), + [sym_stop_statement] = ACTIONS(2216), + [sym_beep_statement] = ACTIONS(2216), + [aux_sym_unload_statement_token1] = ACTIONS(1149), + [aux_sym_def_type_statement_token1] = ACTIONS(1151), + [aux_sym_def_type_statement_token2] = ACTIONS(1151), + [aux_sym_def_type_statement_token3] = ACTIONS(1151), + [aux_sym_def_type_statement_token4] = ACTIONS(1151), + [aux_sym_def_type_statement_token5] = ACTIONS(1151), + [aux_sym_def_type_statement_token6] = ACTIONS(1151), + [aux_sym_def_type_statement_token7] = ACTIONS(1151), + [aux_sym_def_type_statement_token8] = ACTIONS(1151), + [aux_sym_def_type_statement_token9] = ACTIONS(1151), + [aux_sym_def_type_statement_token10] = ACTIONS(1151), + [aux_sym_def_type_statement_token11] = ACTIONS(1151), + [aux_sym_def_type_statement_token12] = ACTIONS(1151), + [aux_sym_def_type_statement_token13] = ACTIONS(1151), + [aux_sym_def_type_statement_token14] = ACTIONS(1151), + [aux_sym_call_statement_token1] = ACTIONS(1153), + [sym__ambiguous_call_statement] = ACTIONS(1155), + [aux_sym_addressof_expression_token1] = ACTIONS(1157), + [aux_sym_type_of_expression_token1] = ACTIONS(1159), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1165), + [aux_sym_boolean_literal_token1] = ACTIONS(1167), + [aux_sym_boolean_literal_token2] = ACTIONS(1167), + [sym_nothing_literal] = ACTIONS(1169), + [sym_null_literal] = ACTIONS(1169), + [sym_empty_literal] = ACTIONS(1169), + [sym_date_literal] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(1171), + }, + [STATE(146)] = { + [sym__statement_separator] = STATE(146), + [sym_preprocessor_const] = STATE(146), + [sym_preprocessor_if] = STATE(146), + [sym__statement] = STATE(146), + [sym_variable_declaration] = STATE(146), + [sym_const_declaration] = STATE(146), + [sym_visibility] = STATE(12008), + [sym_if_statement] = STATE(146), + [sym_elseif_fragment] = STATE(146), + [sym_else_fragment] = STATE(146), + [sym_end_if_fragment] = STATE(146), + [sym_single_line_if_statement] = STATE(146), + [sym_select_statement] = STATE(146), + [sym_for_statement] = STATE(146), + [sym__inline_for_statement] = STATE(6988), + [sym_for_each_statement] = STATE(146), + [sym__inline_for_each_statement] = STATE(6989), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(146), + [sym__inline_do_statement] = STATE(6990), + [sym_while_statement] = STATE(146), + [sym_with_statement] = STATE(146), + [sym__inline_with_statement] = STATE(6991), + [sym_exit_statement] = STATE(146), + [sym_on_goto_statement] = STATE(146), + [sym_on_error_statement] = STATE(146), + [sym_resume_statement] = STATE(146), + [sym_goto_statement] = STATE(146), + [sym_label_statement] = STATE(146), + [sym_line_number_prefix] = STATE(11513), + [sym_line_number_statement] = STATE(146), + [sym_redim_statement] = STATE(146), + [sym_erase_statement] = STATE(146), + [sym_open_statement] = STATE(146), + [sym_input_statement] = STATE(146), + [sym_line_input_statement] = STATE(146), + [sym_print_statement] = STATE(146), + [sym_write_statement] = STATE(146), + [sym_debug_print_statement] = STATE(146), + [sym_close_statement] = STATE(146), + [sym_get_statement] = STATE(146), + [sym_put_statement] = STATE(146), + [sym_lock_statement] = STATE(146), + [sym_unlock_statement] = STATE(146), + [sym_seek_statement] = STATE(146), + [sym_raise_event_statement] = STATE(146), + [sym_name_statement] = STATE(146), + [sym_load_statement] = STATE(146), + [sym_unload_statement] = STATE(146), + [sym_def_type_statement] = STATE(146), + [sym_set_statement] = STATE(146), + [sym_assignment_statement] = STATE(146), + [sym_call_statement] = STATE(146), + [sym_expression_statement] = STATE(146), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [aux_sym_block_repeat1] = STATE(146), + [sym_identifier] = ACTIONS(2218), + [sym_newline] = ACTIONS(2221), + [anon_sym_COLON] = ACTIONS(2221), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2224), + [aux_sym_frm_property_statement_token1] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2233), + [aux_sym__attribute_identifier_token1] = ACTIONS(2236), + [aux_sym_option_statement_token3] = ACTIONS(1194), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2239), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(1200), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2242), + [aux_sym_preprocessor_const_token1] = ACTIONS(2245), + [sym_static_modifier] = ACTIONS(2248), + [sym__dim_keyword] = ACTIONS(2251), + [sym__redim_keyword] = ACTIONS(2254), + [aux_sym_get_accessor_token1] = ACTIONS(2257), + [aux_sym_set_accessor_token1] = ACTIONS(2260), + [aux_sym_const_declaration_token1] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2266), + [aux_sym_as_type_clause_token2] = ACTIONS(2269), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2272), + [aux_sym_visibility_token1] = ACTIONS(1194), + [aux_sym_visibility_token2] = ACTIONS(1194), + [aux_sym_elseif_fragment_token1] = ACTIONS(2275), + [aux_sym_else_fragment_token1] = ACTIONS(2278), + [aux_sym_select_statement_token1] = ACTIONS(2281), + [aux_sym__for_header_token1] = ACTIONS(1244), + [aux_sym_do_statement_token1] = ACTIONS(2284), + [aux_sym_do_condition_token1] = ACTIONS(2287), + [aux_sym_with_statement_token1] = ACTIONS(2290), + [aux_sym_exit_statement_token1] = ACTIONS(2293), + [sym_end_statement] = ACTIONS(2221), + [aux_sym_on_goto_statement_token1] = ACTIONS(2296), + [aux_sym_on_goto_statement_token2] = ACTIONS(2299), + [aux_sym_on_error_statement_token2] = ACTIONS(2302), + [sym__ambiguous_redim_statement] = ACTIONS(2305), + [aux_sym_erase_statement_token1] = ACTIONS(2308), + [aux_sym_open_statement_token1] = ACTIONS(2311), + [aux_sym_file_mode_token2] = ACTIONS(2314), + [aux_sym_file_access_token2] = ACTIONS(2317), + [aux_sym_file_lock_token2] = ACTIONS(2320), + [aux_sym_print_statement_token1] = ACTIONS(2323), + [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_QMARK] = ACTIONS(2332), + [aux_sym_close_statement_token1] = ACTIONS(2335), + [aux_sym_put_statement_token1] = ACTIONS(2338), + [aux_sym_unlock_statement_token1] = ACTIONS(2341), + [aux_sym_seek_statement_token1] = ACTIONS(2344), + [sym_reset_statement] = ACTIONS(2347), + [aux_sym_raise_event_statement_token1] = ACTIONS(2350), + [sym_stop_statement] = ACTIONS(2347), + [sym_beep_statement] = ACTIONS(2347), + [aux_sym_unload_statement_token1] = ACTIONS(2353), + [aux_sym_def_type_statement_token1] = ACTIONS(2356), + [aux_sym_def_type_statement_token2] = ACTIONS(2356), + [aux_sym_def_type_statement_token3] = ACTIONS(2356), + [aux_sym_def_type_statement_token4] = ACTIONS(2356), + [aux_sym_def_type_statement_token5] = ACTIONS(2356), + [aux_sym_def_type_statement_token6] = ACTIONS(2356), + [aux_sym_def_type_statement_token7] = ACTIONS(2356), + [aux_sym_def_type_statement_token8] = ACTIONS(2356), + [aux_sym_def_type_statement_token9] = ACTIONS(2356), + [aux_sym_def_type_statement_token10] = ACTIONS(2356), + [aux_sym_def_type_statement_token11] = ACTIONS(2356), + [aux_sym_def_type_statement_token12] = ACTIONS(2356), + [aux_sym_def_type_statement_token13] = ACTIONS(2356), + [aux_sym_def_type_statement_token14] = ACTIONS(2356), + [aux_sym_call_statement_token1] = ACTIONS(2359), + [sym__ambiguous_call_statement] = ACTIONS(2362), + [aux_sym_addressof_expression_token1] = ACTIONS(2365), + [aux_sym_type_of_expression_token1] = ACTIONS(2368), + [aux_sym_unary_expression_token1] = ACTIONS(2371), + [sym_string_literal] = ACTIONS(2374), + [sym_number_literal] = ACTIONS(2377), + [aux_sym_boolean_literal_token1] = ACTIONS(2380), + [aux_sym_boolean_literal_token2] = ACTIONS(2380), + [sym_nothing_literal] = ACTIONS(2383), + [sym_null_literal] = ACTIONS(2383), + [sym_empty_literal] = ACTIONS(2383), + [sym_date_literal] = ACTIONS(2374), + [anon_sym_POUND] = ACTIONS(2386), + }, + [STATE(147)] = { + [sym__statement_separator] = STATE(146), + [sym_preprocessor_const] = STATE(146), + [sym_preprocessor_if] = STATE(146), + [sym__statement] = STATE(146), + [sym_variable_declaration] = STATE(146), + [sym_const_declaration] = STATE(146), + [sym_visibility] = STATE(12008), + [sym_if_statement] = STATE(146), + [sym_elseif_fragment] = STATE(146), + [sym_else_fragment] = STATE(146), + [sym_end_if_fragment] = STATE(146), + [sym_single_line_if_statement] = STATE(146), + [sym_select_statement] = STATE(146), + [sym_for_statement] = STATE(146), + [sym__inline_for_statement] = STATE(6988), + [sym_for_each_statement] = STATE(146), + [sym__inline_for_each_statement] = STATE(6989), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(146), + [sym__inline_do_statement] = STATE(6990), + [sym_while_statement] = STATE(146), + [sym_with_statement] = STATE(146), + [sym__inline_with_statement] = STATE(6991), + [sym_exit_statement] = STATE(146), + [sym_on_goto_statement] = STATE(146), + [sym_on_error_statement] = STATE(146), + [sym_resume_statement] = STATE(146), + [sym_goto_statement] = STATE(146), + [sym_label_statement] = STATE(146), + [sym_line_number_prefix] = STATE(11513), + [sym_line_number_statement] = STATE(146), + [sym_redim_statement] = STATE(146), + [sym_erase_statement] = STATE(146), + [sym_open_statement] = STATE(146), + [sym_input_statement] = STATE(146), + [sym_line_input_statement] = STATE(146), + [sym_print_statement] = STATE(146), + [sym_write_statement] = STATE(146), + [sym_debug_print_statement] = STATE(146), + [sym_close_statement] = STATE(146), + [sym_get_statement] = STATE(146), + [sym_put_statement] = STATE(146), + [sym_lock_statement] = STATE(146), + [sym_unlock_statement] = STATE(146), + [sym_seek_statement] = STATE(146), + [sym_raise_event_statement] = STATE(146), + [sym_name_statement] = STATE(146), + [sym_load_statement] = STATE(146), + [sym_unload_statement] = STATE(146), + [sym_def_type_statement] = STATE(146), + [sym_set_statement] = STATE(146), + [sym_assignment_statement] = STATE(146), + [sym_call_statement] = STATE(146), + [sym_expression_statement] = STATE(146), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [aux_sym_block_repeat1] = STATE(146), + [sym_identifier] = ACTIONS(2389), + [sym_newline] = ACTIONS(2391), + [anon_sym_COLON] = ACTIONS(2391), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2393), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2403), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(1354), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2405), + [aux_sym_preprocessor_const_token1] = ACTIONS(2407), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(2427), + [aux_sym_else_fragment_token1] = ACTIONS(2429), + [aux_sym_select_statement_token1] = ACTIONS(2431), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(2391), + [aux_sym_on_goto_statement_token1] = ACTIONS(2441), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(2475), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(2475), + [sym_beep_statement] = ACTIONS(2475), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_def_type_statement_token1] = ACTIONS(2481), + [aux_sym_def_type_statement_token2] = ACTIONS(2481), + [aux_sym_def_type_statement_token3] = ACTIONS(2481), + [aux_sym_def_type_statement_token4] = ACTIONS(2481), + [aux_sym_def_type_statement_token5] = ACTIONS(2481), + [aux_sym_def_type_statement_token6] = ACTIONS(2481), + [aux_sym_def_type_statement_token7] = ACTIONS(2481), + [aux_sym_def_type_statement_token8] = ACTIONS(2481), + [aux_sym_def_type_statement_token9] = ACTIONS(2481), + [aux_sym_def_type_statement_token10] = ACTIONS(2481), + [aux_sym_def_type_statement_token11] = ACTIONS(2481), + [aux_sym_def_type_statement_token12] = ACTIONS(2481), + [aux_sym_def_type_statement_token13] = ACTIONS(2481), + [aux_sym_def_type_statement_token14] = ACTIONS(2481), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(148)] = { + [sym__statement_separator] = STATE(149), + [sym_preprocessor_const] = STATE(149), + [sym_preprocessor_if] = STATE(149), + [sym__statement] = STATE(149), + [sym_variable_declaration] = STATE(149), + [sym_const_declaration] = STATE(149), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(149), + [sym_elseif_fragment] = STATE(149), + [sym_else_fragment] = STATE(149), + [sym_end_if_fragment] = STATE(149), + [sym_single_line_if_statement] = STATE(149), + [sym_select_statement] = STATE(149), + [sym_for_statement] = STATE(149), + [sym__inline_for_statement] = STATE(6315), + [sym_for_each_statement] = STATE(149), + [sym__inline_for_each_statement] = STATE(6316), + [sym__for_header] = STATE(11298), + [sym__for_each_header] = STATE(11310), + [sym_do_statement] = STATE(149), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(149), + [sym_with_statement] = STATE(149), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(149), + [sym_on_goto_statement] = STATE(149), + [sym_on_error_statement] = STATE(149), + [sym_resume_statement] = STATE(149), + [sym_goto_statement] = STATE(149), + [sym_label_statement] = STATE(149), + [sym_line_number_prefix] = STATE(11469), + [sym_line_number_statement] = STATE(149), + [sym_redim_statement] = STATE(149), + [sym_erase_statement] = STATE(149), + [sym_open_statement] = STATE(149), + [sym_input_statement] = STATE(149), + [sym_line_input_statement] = STATE(149), + [sym_print_statement] = STATE(149), + [sym_write_statement] = STATE(149), + [sym_debug_print_statement] = STATE(149), + [sym_close_statement] = STATE(149), + [sym_get_statement] = STATE(149), + [sym_put_statement] = STATE(149), + [sym_lock_statement] = STATE(149), + [sym_unlock_statement] = STATE(149), + [sym_seek_statement] = STATE(149), + [sym_raise_event_statement] = STATE(149), + [sym_name_statement] = STATE(149), + [sym_load_statement] = STATE(149), + [sym_unload_statement] = STATE(149), + [sym_def_type_statement] = STATE(149), + [sym_set_statement] = STATE(149), + [sym_assignment_statement] = STATE(149), + [sym_call_statement] = STATE(149), + [sym_expression_statement] = STATE(149), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(1358), + [sym_newline] = ACTIONS(2503), + [anon_sym_COLON] = ACTIONS(2503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1362), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1372), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1374), + [aux_sym_preprocessor_const_token1] = ACTIONS(1376), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1396), + [aux_sym_else_fragment_token1] = ACTIONS(1398), + [aux_sym_select_statement_token1] = ACTIONS(1400), + [aux_sym__multiline_for_tail_token1] = ACTIONS(2028), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(2503), + [aux_sym_on_goto_statement_token1] = ACTIONS(1412), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(2505), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(2505), + [sym_beep_statement] = ACTIONS(2505), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(2507), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(149)] = { + [sym__statement_separator] = STATE(149), + [sym_preprocessor_const] = STATE(149), + [sym_preprocessor_if] = STATE(149), + [sym__statement] = STATE(149), + [sym_variable_declaration] = STATE(149), + [sym_const_declaration] = STATE(149), + [sym_visibility] = STATE(11869), + [sym_if_statement] = STATE(149), + [sym_elseif_fragment] = STATE(149), + [sym_else_fragment] = STATE(149), + [sym_end_if_fragment] = STATE(149), + [sym_single_line_if_statement] = STATE(149), + [sym_select_statement] = STATE(149), + [sym_for_statement] = STATE(149), + [sym__inline_for_statement] = STATE(6315), + [sym_for_each_statement] = STATE(149), + [sym__inline_for_each_statement] = STATE(6316), + [sym__for_header] = STATE(11298), + [sym__for_each_header] = STATE(11310), + [sym_do_statement] = STATE(149), + [sym__inline_do_statement] = STATE(6750), + [sym_while_statement] = STATE(149), + [sym_with_statement] = STATE(149), + [sym__inline_with_statement] = STATE(6753), + [sym_exit_statement] = STATE(149), + [sym_on_goto_statement] = STATE(149), + [sym_on_error_statement] = STATE(149), + [sym_resume_statement] = STATE(149), + [sym_goto_statement] = STATE(149), + [sym_label_statement] = STATE(149), + [sym_line_number_prefix] = STATE(11469), + [sym_line_number_statement] = STATE(149), + [sym_redim_statement] = STATE(149), + [sym_erase_statement] = STATE(149), + [sym_open_statement] = STATE(149), + [sym_input_statement] = STATE(149), + [sym_line_input_statement] = STATE(149), + [sym_print_statement] = STATE(149), + [sym_write_statement] = STATE(149), + [sym_debug_print_statement] = STATE(149), + [sym_close_statement] = STATE(149), + [sym_get_statement] = STATE(149), + [sym_put_statement] = STATE(149), + [sym_lock_statement] = STATE(149), + [sym_unlock_statement] = STATE(149), + [sym_seek_statement] = STATE(149), + [sym_raise_event_statement] = STATE(149), + [sym_name_statement] = STATE(149), + [sym_load_statement] = STATE(149), + [sym_unload_statement] = STATE(149), + [sym_def_type_statement] = STATE(149), + [sym_set_statement] = STATE(149), + [sym_assignment_statement] = STATE(149), + [sym_call_statement] = STATE(149), + [sym_expression_statement] = STATE(149), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [aux_sym_block_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(2510), + [sym_newline] = ACTIONS(2513), + [anon_sym_COLON] = ACTIONS(2513), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2516), + [aux_sym_frm_property_statement_token1] = ACTIONS(2519), + [anon_sym_DOT] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2525), + [aux_sym__attribute_identifier_token1] = ACTIONS(2528), + [aux_sym_option_statement_token3] = ACTIONS(1194), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2531), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2534), + [aux_sym_preprocessor_const_token1] = ACTIONS(2537), + [sym_static_modifier] = ACTIONS(2540), + [sym__dim_keyword] = ACTIONS(2543), + [sym__redim_keyword] = ACTIONS(2546), + [aux_sym_get_accessor_token1] = ACTIONS(2549), + [aux_sym_set_accessor_token1] = ACTIONS(2552), + [aux_sym_const_declaration_token1] = ACTIONS(2555), + [anon_sym_LPAREN] = ACTIONS(2558), + [aux_sym_as_type_clause_token2] = ACTIONS(2561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2564), + [aux_sym_visibility_token1] = ACTIONS(1194), + [aux_sym_visibility_token2] = ACTIONS(1194), + [aux_sym_elseif_fragment_token1] = ACTIONS(2567), + [aux_sym_else_fragment_token1] = ACTIONS(2570), + [aux_sym_select_statement_token1] = ACTIONS(2573), + [aux_sym__multiline_for_tail_token1] = ACTIONS(1200), + [aux_sym__for_header_token1] = ACTIONS(1244), + [aux_sym_do_statement_token1] = ACTIONS(2576), + [aux_sym_do_condition_token1] = ACTIONS(2579), + [aux_sym_with_statement_token1] = ACTIONS(2582), + [aux_sym_exit_statement_token1] = ACTIONS(2585), + [sym_end_statement] = ACTIONS(2513), + [aux_sym_on_goto_statement_token1] = ACTIONS(2588), + [aux_sym_on_goto_statement_token2] = ACTIONS(2591), + [aux_sym_on_error_statement_token2] = ACTIONS(2594), + [sym__ambiguous_redim_statement] = ACTIONS(2597), + [aux_sym_erase_statement_token1] = ACTIONS(2600), + [aux_sym_open_statement_token1] = ACTIONS(2603), + [aux_sym_file_mode_token2] = ACTIONS(2606), + [aux_sym_file_access_token2] = ACTIONS(2609), + [aux_sym_file_lock_token2] = ACTIONS(2612), + [aux_sym_print_statement_token1] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2618), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_QMARK] = ACTIONS(2624), + [aux_sym_close_statement_token1] = ACTIONS(2627), + [aux_sym_put_statement_token1] = ACTIONS(2630), + [aux_sym_unlock_statement_token1] = ACTIONS(2633), + [aux_sym_seek_statement_token1] = ACTIONS(2636), + [sym_reset_statement] = ACTIONS(2639), + [aux_sym_raise_event_statement_token1] = ACTIONS(2642), + [sym_stop_statement] = ACTIONS(2639), + [sym_beep_statement] = ACTIONS(2639), + [aux_sym_unload_statement_token1] = ACTIONS(2645), + [aux_sym_def_type_statement_token1] = ACTIONS(2648), + [aux_sym_def_type_statement_token2] = ACTIONS(2648), + [aux_sym_def_type_statement_token3] = ACTIONS(2648), + [aux_sym_def_type_statement_token4] = ACTIONS(2648), + [aux_sym_def_type_statement_token5] = ACTIONS(2648), + [aux_sym_def_type_statement_token6] = ACTIONS(2648), + [aux_sym_def_type_statement_token7] = ACTIONS(2648), + [aux_sym_def_type_statement_token8] = ACTIONS(2648), + [aux_sym_def_type_statement_token9] = ACTIONS(2648), + [aux_sym_def_type_statement_token10] = ACTIONS(2648), + [aux_sym_def_type_statement_token11] = ACTIONS(2648), + [aux_sym_def_type_statement_token12] = ACTIONS(2648), + [aux_sym_def_type_statement_token13] = ACTIONS(2648), + [aux_sym_def_type_statement_token14] = ACTIONS(2648), + [aux_sym_call_statement_token1] = ACTIONS(2651), + [sym__ambiguous_call_statement] = ACTIONS(2654), + [aux_sym_addressof_expression_token1] = ACTIONS(2657), + [aux_sym_type_of_expression_token1] = ACTIONS(2660), + [aux_sym_unary_expression_token1] = ACTIONS(2663), + [sym_string_literal] = ACTIONS(2666), + [sym_number_literal] = ACTIONS(2669), + [aux_sym_boolean_literal_token1] = ACTIONS(2672), + [aux_sym_boolean_literal_token2] = ACTIONS(2672), + [sym_nothing_literal] = ACTIONS(2675), + [sym_null_literal] = ACTIONS(2675), + [sym_empty_literal] = ACTIONS(2675), + [sym_date_literal] = ACTIONS(2666), + [anon_sym_POUND] = ACTIONS(2678), + }, + [STATE(150)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12897), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11434), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2681), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(151)] = { + [sym__statement_separator] = STATE(152), + [sym_preprocessor_const] = STATE(152), + [sym_preprocessor_if] = STATE(152), + [sym__statement] = STATE(152), + [sym_variable_declaration] = STATE(152), + [sym_const_declaration] = STATE(152), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(152), + [sym_elseif_fragment] = STATE(152), + [sym_else_fragment] = STATE(152), + [sym_end_if_fragment] = STATE(152), + [sym_single_line_if_statement] = STATE(152), + [sym_select_statement] = STATE(152), + [sym_for_statement] = STATE(152), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(152), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(152), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(152), + [sym_with_statement] = STATE(152), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(152), + [sym_on_goto_statement] = STATE(152), + [sym_on_error_statement] = STATE(152), + [sym_resume_statement] = STATE(152), + [sym_goto_statement] = STATE(152), + [sym_label_statement] = STATE(152), + [sym_line_number_prefix] = STATE(11372), + [sym_line_number_statement] = STATE(152), + [sym_redim_statement] = STATE(152), + [sym_erase_statement] = STATE(152), + [sym_open_statement] = STATE(152), + [sym_input_statement] = STATE(152), + [sym_line_input_statement] = STATE(152), + [sym_print_statement] = STATE(152), + [sym_write_statement] = STATE(152), + [sym_debug_print_statement] = STATE(152), + [sym_close_statement] = STATE(152), + [sym_get_statement] = STATE(152), + [sym_put_statement] = STATE(152), + [sym_lock_statement] = STATE(152), + [sym_unlock_statement] = STATE(152), + [sym_seek_statement] = STATE(152), + [sym_raise_event_statement] = STATE(152), + [sym_name_statement] = STATE(152), + [sym_load_statement] = STATE(152), + [sym_unload_statement] = STATE(152), + [sym_def_type_statement] = STATE(152), + [sym_set_statement] = STATE(152), + [sym_assignment_statement] = STATE(152), + [sym_call_statement] = STATE(152), + [sym_expression_statement] = STATE(152), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(152), + [sym_identifier] = ACTIONS(1717), + [sym_newline] = ACTIONS(2683), + [anon_sym_COLON] = ACTIONS(2683), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1721), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1731), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1733), + [aux_sym_preprocessor_const_token1] = ACTIONS(1735), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1755), + [aux_sym_else_fragment_token1] = ACTIONS(1757), + [aux_sym_select_statement_token1] = ACTIONS(1759), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(2028), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(2683), + [aux_sym_on_goto_statement_token1] = ACTIONS(1771), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(2685), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(2685), + [sym_beep_statement] = ACTIONS(2685), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(2687), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(152)] = { + [sym__statement_separator] = STATE(152), + [sym_preprocessor_const] = STATE(152), + [sym_preprocessor_if] = STATE(152), + [sym__statement] = STATE(152), + [sym_variable_declaration] = STATE(152), + [sym_const_declaration] = STATE(152), + [sym_visibility] = STATE(11883), + [sym_if_statement] = STATE(152), + [sym_elseif_fragment] = STATE(152), + [sym_else_fragment] = STATE(152), + [sym_end_if_fragment] = STATE(152), + [sym_single_line_if_statement] = STATE(152), + [sym_select_statement] = STATE(152), + [sym_for_statement] = STATE(152), + [sym__inline_for_statement] = STATE(6746), + [sym_for_each_statement] = STATE(152), + [sym__inline_for_each_statement] = STATE(6749), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(152), + [sym__inline_do_statement] = STATE(6317), + [sym_while_statement] = STATE(152), + [sym_with_statement] = STATE(152), + [sym__inline_with_statement] = STATE(6318), + [sym_exit_statement] = STATE(152), + [sym_on_goto_statement] = STATE(152), + [sym_on_error_statement] = STATE(152), + [sym_resume_statement] = STATE(152), + [sym_goto_statement] = STATE(152), + [sym_label_statement] = STATE(152), + [sym_line_number_prefix] = STATE(11372), + [sym_line_number_statement] = STATE(152), + [sym_redim_statement] = STATE(152), + [sym_erase_statement] = STATE(152), + [sym_open_statement] = STATE(152), + [sym_input_statement] = STATE(152), + [sym_line_input_statement] = STATE(152), + [sym_print_statement] = STATE(152), + [sym_write_statement] = STATE(152), + [sym_debug_print_statement] = STATE(152), + [sym_close_statement] = STATE(152), + [sym_get_statement] = STATE(152), + [sym_put_statement] = STATE(152), + [sym_lock_statement] = STATE(152), + [sym_unlock_statement] = STATE(152), + [sym_seek_statement] = STATE(152), + [sym_raise_event_statement] = STATE(152), + [sym_name_statement] = STATE(152), + [sym_load_statement] = STATE(152), + [sym_unload_statement] = STATE(152), + [sym_def_type_statement] = STATE(152), + [sym_set_statement] = STATE(152), + [sym_assignment_statement] = STATE(152), + [sym_call_statement] = STATE(152), + [sym_expression_statement] = STATE(152), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [aux_sym_block_repeat1] = STATE(152), + [sym_identifier] = ACTIONS(2690), + [sym_newline] = ACTIONS(2693), + [anon_sym_COLON] = ACTIONS(2693), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2696), + [aux_sym_frm_property_statement_token1] = ACTIONS(2699), + [anon_sym_DOT] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2705), + [aux_sym__attribute_identifier_token1] = ACTIONS(2708), + [aux_sym_option_statement_token3] = ACTIONS(1194), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2711), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2714), + [aux_sym_preprocessor_const_token1] = ACTIONS(2717), + [sym_static_modifier] = ACTIONS(2720), + [sym__dim_keyword] = ACTIONS(2723), + [sym__redim_keyword] = ACTIONS(2726), + [aux_sym_get_accessor_token1] = ACTIONS(2729), + [aux_sym_set_accessor_token1] = ACTIONS(2732), + [aux_sym_const_declaration_token1] = ACTIONS(2735), + [anon_sym_LPAREN] = ACTIONS(2738), + [aux_sym_as_type_clause_token2] = ACTIONS(2741), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2744), + [aux_sym_visibility_token1] = ACTIONS(1194), + [aux_sym_visibility_token2] = ACTIONS(1194), + [aux_sym_elseif_fragment_token1] = ACTIONS(2747), + [aux_sym_else_fragment_token1] = ACTIONS(2750), + [aux_sym_select_statement_token1] = ACTIONS(2753), + [aux_sym__for_header_token1] = ACTIONS(1244), + [aux_sym_do_statement_token1] = ACTIONS(2756), + [aux_sym_do_condition_token1] = ACTIONS(2759), + [aux_sym_while_statement_token1] = ACTIONS(1200), + [aux_sym_with_statement_token1] = ACTIONS(2762), + [aux_sym_exit_statement_token1] = ACTIONS(2765), + [sym_end_statement] = ACTIONS(2693), + [aux_sym_on_goto_statement_token1] = ACTIONS(2768), + [aux_sym_on_goto_statement_token2] = ACTIONS(2771), + [aux_sym_on_error_statement_token2] = ACTIONS(2774), + [sym__ambiguous_redim_statement] = ACTIONS(2777), + [aux_sym_erase_statement_token1] = ACTIONS(2780), + [aux_sym_open_statement_token1] = ACTIONS(2783), + [aux_sym_file_mode_token2] = ACTIONS(2786), + [aux_sym_file_access_token2] = ACTIONS(2789), + [aux_sym_file_lock_token2] = ACTIONS(2792), + [aux_sym_print_statement_token1] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_QMARK] = ACTIONS(2804), + [aux_sym_close_statement_token1] = ACTIONS(2807), + [aux_sym_put_statement_token1] = ACTIONS(2810), + [aux_sym_unlock_statement_token1] = ACTIONS(2813), + [aux_sym_seek_statement_token1] = ACTIONS(2816), + [sym_reset_statement] = ACTIONS(2819), + [aux_sym_raise_event_statement_token1] = ACTIONS(2822), + [sym_stop_statement] = ACTIONS(2819), + [sym_beep_statement] = ACTIONS(2819), + [aux_sym_unload_statement_token1] = ACTIONS(2825), + [aux_sym_def_type_statement_token1] = ACTIONS(2828), + [aux_sym_def_type_statement_token2] = ACTIONS(2828), + [aux_sym_def_type_statement_token3] = ACTIONS(2828), + [aux_sym_def_type_statement_token4] = ACTIONS(2828), + [aux_sym_def_type_statement_token5] = ACTIONS(2828), + [aux_sym_def_type_statement_token6] = ACTIONS(2828), + [aux_sym_def_type_statement_token7] = ACTIONS(2828), + [aux_sym_def_type_statement_token8] = ACTIONS(2828), + [aux_sym_def_type_statement_token9] = ACTIONS(2828), + [aux_sym_def_type_statement_token10] = ACTIONS(2828), + [aux_sym_def_type_statement_token11] = ACTIONS(2828), + [aux_sym_def_type_statement_token12] = ACTIONS(2828), + [aux_sym_def_type_statement_token13] = ACTIONS(2828), + [aux_sym_def_type_statement_token14] = ACTIONS(2828), + [aux_sym_call_statement_token1] = ACTIONS(2831), + [sym__ambiguous_call_statement] = ACTIONS(2834), + [aux_sym_addressof_expression_token1] = ACTIONS(2837), + [aux_sym_type_of_expression_token1] = ACTIONS(2840), + [aux_sym_unary_expression_token1] = ACTIONS(2843), + [sym_string_literal] = ACTIONS(2846), + [sym_number_literal] = ACTIONS(2849), + [aux_sym_boolean_literal_token1] = ACTIONS(2852), + [aux_sym_boolean_literal_token2] = ACTIONS(2852), + [sym_nothing_literal] = ACTIONS(2855), + [sym_null_literal] = ACTIONS(2855), + [sym_empty_literal] = ACTIONS(2855), + [sym_date_literal] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(2858), + }, + [STATE(153)] = { + [sym__statement_separator] = STATE(177), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [sym_block] = STATE(15119), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2861), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(154)] = { + [sym__statement_separator] = STATE(177), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [sym_block] = STATE(15120), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2863), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(155)] = { + [sym__statement_separator] = STATE(177), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [sym_block] = STATE(15121), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2865), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(156)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12687), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11271), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2867), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(157)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12695), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11274), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2869), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(158)] = { + [sym__statement_separator] = STATE(177), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [sym_block] = STATE(13938), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2871), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(159)] = { + [sym__statement_separator] = STATE(177), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [sym_block] = STATE(13939), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2873), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(160)] = { + [sym__statement_separator] = STATE(177), + [sym_preprocessor_const] = STATE(177), + [sym_preprocessor_if] = STATE(177), + [sym_block] = STATE(13940), + [sym__statement] = STATE(177), + [sym_variable_declaration] = STATE(177), + [sym_const_declaration] = STATE(177), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(177), + [sym_elseif_fragment] = STATE(177), + [sym_else_fragment] = STATE(177), + [sym_end_if_fragment] = STATE(177), + [sym_single_line_if_statement] = STATE(177), + [sym_select_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(177), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(177), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(177), + [sym_with_statement] = STATE(177), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(177), + [sym_on_goto_statement] = STATE(177), + [sym_on_error_statement] = STATE(177), + [sym_resume_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_label_statement] = STATE(177), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(177), + [sym_redim_statement] = STATE(177), + [sym_erase_statement] = STATE(177), + [sym_open_statement] = STATE(177), + [sym_input_statement] = STATE(177), + [sym_line_input_statement] = STATE(177), + [sym_print_statement] = STATE(177), + [sym_write_statement] = STATE(177), + [sym_debug_print_statement] = STATE(177), + [sym_close_statement] = STATE(177), + [sym_get_statement] = STATE(177), + [sym_put_statement] = STATE(177), + [sym_lock_statement] = STATE(177), + [sym_unlock_statement] = STATE(177), + [sym_seek_statement] = STATE(177), + [sym_raise_event_statement] = STATE(177), + [sym_name_statement] = STATE(177), + [sym_load_statement] = STATE(177), + [sym_unload_statement] = STATE(177), + [sym_def_type_statement] = STATE(177), + [sym_set_statement] = STATE(177), + [sym_assignment_statement] = STATE(177), + [sym_call_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2875), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(732), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(820), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(820), + [sym_beep_statement] = ACTIONS(820), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(161)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12753), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11343), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2877), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(162)] = { + [sym__statement_separator] = STATE(165), + [sym_preprocessor_const] = STATE(165), + [sym_preprocessor_if] = STATE(165), + [sym__statement] = STATE(165), + [sym_variable_declaration] = STATE(165), + [sym_const_declaration] = STATE(165), + [sym_visibility] = STATE(11928), + [sym_if_statement] = STATE(165), + [sym_elseif_fragment] = STATE(165), + [sym_else_fragment] = STATE(165), + [sym_end_if_fragment] = STATE(165), + [sym_single_line_if_statement] = STATE(165), + [sym_select_statement] = STATE(165), + [sym_for_statement] = STATE(165), + [sym__inline_for_statement] = STATE(6675), + [sym_for_each_statement] = STATE(165), + [sym__inline_for_each_statement] = STATE(6676), + [sym__for_header] = STATE(11443), + [sym__for_each_header] = STATE(11444), + [sym_do_statement] = STATE(165), + [sym__inline_do_statement] = STATE(6677), + [sym_while_statement] = STATE(165), + [sym_with_statement] = STATE(165), + [sym__inline_with_statement] = STATE(6678), + [sym_exit_statement] = STATE(165), + [sym_on_goto_statement] = STATE(165), + [sym_on_error_statement] = STATE(165), + [sym_resume_statement] = STATE(165), + [sym_goto_statement] = STATE(165), + [sym_label_statement] = STATE(165), + [sym_line_number_prefix] = STATE(11309), + [sym_line_number_statement] = STATE(165), + [sym_redim_statement] = STATE(165), + [sym_erase_statement] = STATE(165), + [sym_open_statement] = STATE(165), + [sym_input_statement] = STATE(165), + [sym_line_input_statement] = STATE(165), + [sym_print_statement] = STATE(165), + [sym_write_statement] = STATE(165), + [sym_debug_print_statement] = STATE(165), + [sym_close_statement] = STATE(165), + [sym_get_statement] = STATE(165), + [sym_put_statement] = STATE(165), + [sym_lock_statement] = STATE(165), + [sym_unlock_statement] = STATE(165), + [sym_seek_statement] = STATE(165), + [sym_raise_event_statement] = STATE(165), + [sym_name_statement] = STATE(165), + [sym_load_statement] = STATE(165), + [sym_unload_statement] = STATE(165), + [sym_def_type_statement] = STATE(165), + [sym_set_statement] = STATE(165), + [sym_assignment_statement] = STATE(165), + [sym_call_statement] = STATE(165), + [sym_expression_statement] = STATE(165), + [sym__primary_expression] = STATE(3463), + [sym__expression] = STATE(3463), + [sym__assignable_expression] = STATE(14513), + [sym__callable_expression] = STATE(418), + [sym__print_method_callee] = STATE(501), + [sym__print_method_call_expression] = STATE(6993), + [sym__qualified_print_method_expression] = STATE(6708), + [sym__implicit_print_method_expression] = STATE(6710), + [sym__line_method_expression] = STATE(12255), + [sym_call_expression] = STATE(2892), + [sym_new_expression] = STATE(3463), + [sym_addressof_expression] = STATE(3463), + [sym_type_of_expression] = STATE(3463), + [sym_member_expression] = STATE(2545), + [sym_qualified_member_expression] = STATE(2265), + [sym_implicit_member_expression] = STATE(2265), + [sym_parenthesized_expression] = STATE(3463), + [sym_binary_expression] = STATE(3463), + [sym_unary_expression] = STATE(3463), + [sym__signed_unary_expression] = STATE(2479), + [sym__literal] = STATE(3463), + [sym_boolean_literal] = STATE(3463), + [sym_file_number_literal] = STATE(3463), + [aux_sym_block_repeat1] = STATE(165), + [sym_identifier] = ACTIONS(1476), + [sym_newline] = ACTIONS(2879), + [anon_sym_COLON] = ACTIONS(2882), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2884), + [aux_sym_frm_property_statement_token1] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1490), + [aux_sym__attribute_identifier_token1] = ACTIONS(1492), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1494), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1496), + [aux_sym_preprocessor_const_token1] = ACTIONS(1498), + [sym_static_modifier] = ACTIONS(1500), + [sym__dim_keyword] = ACTIONS(1502), + [sym__redim_keyword] = ACTIONS(1504), + [aux_sym_get_accessor_token1] = ACTIONS(1506), + [aux_sym_set_accessor_token1] = ACTIONS(1508), + [aux_sym_const_declaration_token1] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [aux_sym_as_type_clause_token2] = ACTIONS(1514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1516), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1518), + [aux_sym_else_fragment_token1] = ACTIONS(1520), + [aux_sym_select_statement_token1] = ACTIONS(1522), + [aux_sym_select_statement_token2] = ACTIONS(2028), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1526), + [aux_sym_do_condition_token1] = ACTIONS(1528), + [aux_sym_with_statement_token1] = ACTIONS(1530), + [aux_sym_exit_statement_token1] = ACTIONS(1532), + [sym_end_statement] = ACTIONS(2882), + [aux_sym_on_goto_statement_token1] = ACTIONS(1534), + [aux_sym_on_goto_statement_token2] = ACTIONS(1536), + [aux_sym_on_error_statement_token2] = ACTIONS(1538), + [sym__ambiguous_redim_statement] = ACTIONS(1540), + [aux_sym_erase_statement_token1] = ACTIONS(1542), + [aux_sym_open_statement_token1] = ACTIONS(1544), + [aux_sym_file_mode_token2] = ACTIONS(1546), + [aux_sym_file_access_token2] = ACTIONS(1548), + [aux_sym_file_lock_token2] = ACTIONS(1550), + [aux_sym_print_statement_token1] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1558), + [aux_sym_close_statement_token1] = ACTIONS(1560), + [aux_sym_put_statement_token1] = ACTIONS(1562), + [aux_sym_unlock_statement_token1] = ACTIONS(1564), + [aux_sym_seek_statement_token1] = ACTIONS(1566), + [sym_reset_statement] = ACTIONS(2887), + [aux_sym_raise_event_statement_token1] = ACTIONS(1570), + [sym_stop_statement] = ACTIONS(2887), + [sym_beep_statement] = ACTIONS(2887), + [aux_sym_unload_statement_token1] = ACTIONS(1572), + [aux_sym_def_type_statement_token1] = ACTIONS(1574), + [aux_sym_def_type_statement_token2] = ACTIONS(1574), + [aux_sym_def_type_statement_token3] = ACTIONS(1574), + [aux_sym_def_type_statement_token4] = ACTIONS(1574), + [aux_sym_def_type_statement_token5] = ACTIONS(1574), + [aux_sym_def_type_statement_token6] = ACTIONS(1574), + [aux_sym_def_type_statement_token7] = ACTIONS(1574), + [aux_sym_def_type_statement_token8] = ACTIONS(1574), + [aux_sym_def_type_statement_token9] = ACTIONS(1574), + [aux_sym_def_type_statement_token10] = ACTIONS(1574), + [aux_sym_def_type_statement_token11] = ACTIONS(1574), + [aux_sym_def_type_statement_token12] = ACTIONS(1574), + [aux_sym_def_type_statement_token13] = ACTIONS(1574), + [aux_sym_def_type_statement_token14] = ACTIONS(1574), + [aux_sym_call_statement_token1] = ACTIONS(1576), + [sym__ambiguous_call_statement] = ACTIONS(1578), + [aux_sym_addressof_expression_token1] = ACTIONS(1580), + [aux_sym_type_of_expression_token1] = ACTIONS(1582), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(1586), + [sym_number_literal] = ACTIONS(2889), + [aux_sym_boolean_literal_token1] = ACTIONS(1591), + [aux_sym_boolean_literal_token2] = ACTIONS(1591), + [sym_nothing_literal] = ACTIONS(1593), + [sym_null_literal] = ACTIONS(1593), + [sym_empty_literal] = ACTIONS(1593), + [sym_date_literal] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1595), + }, + [STATE(163)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12758), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11345), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2892), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(164)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12782), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11363), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2894), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(165)] = { + [sym__statement_separator] = STATE(165), + [sym_preprocessor_const] = STATE(165), + [sym_preprocessor_if] = STATE(165), + [sym__statement] = STATE(165), + [sym_variable_declaration] = STATE(165), + [sym_const_declaration] = STATE(165), + [sym_visibility] = STATE(11928), + [sym_if_statement] = STATE(165), + [sym_elseif_fragment] = STATE(165), + [sym_else_fragment] = STATE(165), + [sym_end_if_fragment] = STATE(165), + [sym_single_line_if_statement] = STATE(165), + [sym_select_statement] = STATE(165), + [sym_for_statement] = STATE(165), + [sym__inline_for_statement] = STATE(6675), + [sym_for_each_statement] = STATE(165), + [sym__inline_for_each_statement] = STATE(6676), + [sym__for_header] = STATE(11443), + [sym__for_each_header] = STATE(11444), + [sym_do_statement] = STATE(165), + [sym__inline_do_statement] = STATE(6677), + [sym_while_statement] = STATE(165), + [sym_with_statement] = STATE(165), + [sym__inline_with_statement] = STATE(6678), + [sym_exit_statement] = STATE(165), + [sym_on_goto_statement] = STATE(165), + [sym_on_error_statement] = STATE(165), + [sym_resume_statement] = STATE(165), + [sym_goto_statement] = STATE(165), + [sym_label_statement] = STATE(165), + [sym_line_number_prefix] = STATE(11309), + [sym_line_number_statement] = STATE(165), + [sym_redim_statement] = STATE(165), + [sym_erase_statement] = STATE(165), + [sym_open_statement] = STATE(165), + [sym_input_statement] = STATE(165), + [sym_line_input_statement] = STATE(165), + [sym_print_statement] = STATE(165), + [sym_write_statement] = STATE(165), + [sym_debug_print_statement] = STATE(165), + [sym_close_statement] = STATE(165), + [sym_get_statement] = STATE(165), + [sym_put_statement] = STATE(165), + [sym_lock_statement] = STATE(165), + [sym_unlock_statement] = STATE(165), + [sym_seek_statement] = STATE(165), + [sym_raise_event_statement] = STATE(165), + [sym_name_statement] = STATE(165), + [sym_load_statement] = STATE(165), + [sym_unload_statement] = STATE(165), + [sym_def_type_statement] = STATE(165), + [sym_set_statement] = STATE(165), + [sym_assignment_statement] = STATE(165), + [sym_call_statement] = STATE(165), + [sym_expression_statement] = STATE(165), + [sym__primary_expression] = STATE(3463), + [sym__expression] = STATE(3463), + [sym__assignable_expression] = STATE(14513), + [sym__callable_expression] = STATE(418), + [sym__print_method_callee] = STATE(501), + [sym__print_method_call_expression] = STATE(6993), + [sym__qualified_print_method_expression] = STATE(6708), + [sym__implicit_print_method_expression] = STATE(6710), + [sym__line_method_expression] = STATE(12255), + [sym_call_expression] = STATE(2892), + [sym_new_expression] = STATE(3463), + [sym_addressof_expression] = STATE(3463), + [sym_type_of_expression] = STATE(3463), + [sym_member_expression] = STATE(2545), + [sym_qualified_member_expression] = STATE(2265), + [sym_implicit_member_expression] = STATE(2265), + [sym_parenthesized_expression] = STATE(3463), + [sym_binary_expression] = STATE(3463), + [sym_unary_expression] = STATE(3463), + [sym__signed_unary_expression] = STATE(2479), + [sym__literal] = STATE(3463), + [sym_boolean_literal] = STATE(3463), + [sym_file_number_literal] = STATE(3463), + [aux_sym_block_repeat1] = STATE(165), + [sym_identifier] = ACTIONS(2896), + [sym_newline] = ACTIONS(2899), + [anon_sym_COLON] = ACTIONS(2899), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2902), + [aux_sym_frm_property_statement_token1] = ACTIONS(2905), + [anon_sym_DOT] = ACTIONS(2908), + [anon_sym_BANG] = ACTIONS(2911), + [aux_sym__attribute_identifier_token1] = ACTIONS(2914), + [aux_sym_option_statement_token3] = ACTIONS(1194), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2917), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2920), + [aux_sym_preprocessor_const_token1] = ACTIONS(2923), + [sym_static_modifier] = ACTIONS(2926), + [sym__dim_keyword] = ACTIONS(2929), + [sym__redim_keyword] = ACTIONS(2932), + [aux_sym_get_accessor_token1] = ACTIONS(2935), + [aux_sym_set_accessor_token1] = ACTIONS(2938), + [aux_sym_const_declaration_token1] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2944), + [aux_sym_as_type_clause_token2] = ACTIONS(2947), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2950), + [aux_sym_visibility_token1] = ACTIONS(1194), + [aux_sym_visibility_token2] = ACTIONS(1194), + [aux_sym_elseif_fragment_token1] = ACTIONS(2953), + [aux_sym_else_fragment_token1] = ACTIONS(2956), + [aux_sym_select_statement_token1] = ACTIONS(2959), + [aux_sym_select_statement_token2] = ACTIONS(1200), + [aux_sym__for_header_token1] = ACTIONS(1244), + [aux_sym_do_statement_token1] = ACTIONS(2962), + [aux_sym_do_condition_token1] = ACTIONS(2965), + [aux_sym_with_statement_token1] = ACTIONS(2968), + [aux_sym_exit_statement_token1] = ACTIONS(2971), + [sym_end_statement] = ACTIONS(2899), + [aux_sym_on_goto_statement_token1] = ACTIONS(2974), + [aux_sym_on_goto_statement_token2] = ACTIONS(2977), + [aux_sym_on_error_statement_token2] = ACTIONS(2980), + [sym__ambiguous_redim_statement] = ACTIONS(2983), + [aux_sym_erase_statement_token1] = ACTIONS(2986), + [aux_sym_open_statement_token1] = ACTIONS(2989), + [aux_sym_file_mode_token2] = ACTIONS(2992), + [aux_sym_file_access_token2] = ACTIONS(2995), + [aux_sym_file_lock_token2] = ACTIONS(2998), + [aux_sym_print_statement_token1] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_DASH] = ACTIONS(3007), + [anon_sym_QMARK] = ACTIONS(3010), + [aux_sym_close_statement_token1] = ACTIONS(3013), + [aux_sym_put_statement_token1] = ACTIONS(3016), + [aux_sym_unlock_statement_token1] = ACTIONS(3019), + [aux_sym_seek_statement_token1] = ACTIONS(3022), + [sym_reset_statement] = ACTIONS(3025), + [aux_sym_raise_event_statement_token1] = ACTIONS(3028), + [sym_stop_statement] = ACTIONS(3025), + [sym_beep_statement] = ACTIONS(3025), + [aux_sym_unload_statement_token1] = ACTIONS(3031), + [aux_sym_def_type_statement_token1] = ACTIONS(3034), + [aux_sym_def_type_statement_token2] = ACTIONS(3034), + [aux_sym_def_type_statement_token3] = ACTIONS(3034), + [aux_sym_def_type_statement_token4] = ACTIONS(3034), + [aux_sym_def_type_statement_token5] = ACTIONS(3034), + [aux_sym_def_type_statement_token6] = ACTIONS(3034), + [aux_sym_def_type_statement_token7] = ACTIONS(3034), + [aux_sym_def_type_statement_token8] = ACTIONS(3034), + [aux_sym_def_type_statement_token9] = ACTIONS(3034), + [aux_sym_def_type_statement_token10] = ACTIONS(3034), + [aux_sym_def_type_statement_token11] = ACTIONS(3034), + [aux_sym_def_type_statement_token12] = ACTIONS(3034), + [aux_sym_def_type_statement_token13] = ACTIONS(3034), + [aux_sym_def_type_statement_token14] = ACTIONS(3034), + [aux_sym_call_statement_token1] = ACTIONS(3037), + [sym__ambiguous_call_statement] = ACTIONS(3040), + [aux_sym_addressof_expression_token1] = ACTIONS(3043), + [aux_sym_type_of_expression_token1] = ACTIONS(3046), + [aux_sym_unary_expression_token1] = ACTIONS(3049), + [sym_string_literal] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3055), + [aux_sym_boolean_literal_token1] = ACTIONS(3058), + [aux_sym_boolean_literal_token2] = ACTIONS(3058), + [sym_nothing_literal] = ACTIONS(3061), + [sym_null_literal] = ACTIONS(3061), + [sym_empty_literal] = ACTIONS(3061), + [sym_date_literal] = ACTIONS(3052), + [anon_sym_POUND] = ACTIONS(3064), + }, + [STATE(166)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12787), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11366), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3067), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(167)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12802), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11382), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3069), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(168)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12815), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11391), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3071), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(169)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12820), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11394), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3073), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(170)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12833), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11404), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3075), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(171)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12838), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11407), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3077), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(172)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12853), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11414), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3079), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(173)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12855), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11416), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3081), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(174)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12868), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11424), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3083), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(175)] = { + [sym__statement_separator] = STATE(178), + [sym_preprocessor_const] = STATE(178), + [sym_preprocessor_if] = STATE(178), + [sym_block] = STATE(12873), + [sym__statement] = STATE(178), + [sym_variable_declaration] = STATE(178), + [sym_const_declaration] = STATE(178), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(178), + [sym_elseif_fragment] = STATE(178), + [sym_else_fragment] = STATE(178), + [sym_end_if_fragment] = STATE(178), + [sym_single_line_if_statement] = STATE(178), + [sym_select_statement] = STATE(178), + [sym_for_statement] = STATE(178), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(178), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(178), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(178), + [sym_with_statement] = STATE(178), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(178), + [sym_on_goto_statement] = STATE(178), + [sym_on_error_statement] = STATE(178), + [sym_resume_statement] = STATE(178), + [sym_goto_statement] = STATE(178), + [sym_label_statement] = STATE(178), + [sym_line_number_prefix] = STATE(11425), + [sym_line_number_statement] = STATE(178), + [sym_redim_statement] = STATE(178), + [sym_erase_statement] = STATE(178), + [sym_open_statement] = STATE(178), + [sym_input_statement] = STATE(178), + [sym_line_input_statement] = STATE(178), + [sym_print_statement] = STATE(178), + [sym_write_statement] = STATE(178), + [sym_debug_print_statement] = STATE(178), + [sym_close_statement] = STATE(178), + [sym_get_statement] = STATE(178), + [sym_put_statement] = STATE(178), + [sym_lock_statement] = STATE(178), + [sym_unlock_statement] = STATE(178), + [sym_seek_statement] = STATE(178), + [sym_raise_event_statement] = STATE(178), + [sym_name_statement] = STATE(178), + [sym_load_statement] = STATE(178), + [sym_unload_statement] = STATE(178), + [sym_def_type_statement] = STATE(178), + [sym_set_statement] = STATE(178), + [sym_assignment_statement] = STATE(178), + [sym_call_statement] = STATE(178), + [sym_expression_statement] = STATE(178), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3085), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(2010), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(2014), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(2014), + [sym_beep_statement] = ACTIONS(2014), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(176)] = { + [sym__statement_separator] = STATE(147), + [sym_preprocessor_const] = STATE(147), + [sym_preprocessor_if] = STATE(147), + [sym__statement] = STATE(147), + [sym_variable_declaration] = STATE(147), + [sym_const_declaration] = STATE(147), + [sym_visibility] = STATE(12008), + [sym_if_statement] = STATE(147), + [sym_elseif_fragment] = STATE(147), + [sym_else_fragment] = STATE(147), + [sym_end_if_fragment] = STATE(147), + [sym_single_line_if_statement] = STATE(147), + [sym_select_statement] = STATE(147), + [sym_for_statement] = STATE(147), + [sym__inline_for_statement] = STATE(6988), + [sym_for_each_statement] = STATE(147), + [sym__inline_for_each_statement] = STATE(6989), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(147), + [sym__inline_do_statement] = STATE(6990), + [sym_while_statement] = STATE(147), + [sym_with_statement] = STATE(147), + [sym__inline_with_statement] = STATE(6991), + [sym_exit_statement] = STATE(147), + [sym_on_goto_statement] = STATE(147), + [sym_on_error_statement] = STATE(147), + [sym_resume_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym_label_statement] = STATE(147), + [sym_line_number_prefix] = STATE(11513), + [sym_line_number_statement] = STATE(147), + [sym_redim_statement] = STATE(147), + [sym_erase_statement] = STATE(147), + [sym_open_statement] = STATE(147), + [sym_input_statement] = STATE(147), + [sym_line_input_statement] = STATE(147), + [sym_print_statement] = STATE(147), + [sym_write_statement] = STATE(147), + [sym_debug_print_statement] = STATE(147), + [sym_close_statement] = STATE(147), + [sym_get_statement] = STATE(147), + [sym_put_statement] = STATE(147), + [sym_lock_statement] = STATE(147), + [sym_unlock_statement] = STATE(147), + [sym_seek_statement] = STATE(147), + [sym_raise_event_statement] = STATE(147), + [sym_name_statement] = STATE(147), + [sym_load_statement] = STATE(147), + [sym_unload_statement] = STATE(147), + [sym_def_type_statement] = STATE(147), + [sym_set_statement] = STATE(147), + [sym_assignment_statement] = STATE(147), + [sym_call_statement] = STATE(147), + [sym_expression_statement] = STATE(147), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [aux_sym_block_repeat1] = STATE(147), + [sym_identifier] = ACTIONS(2389), + [sym_newline] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3087), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2393), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2403), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(1073), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2405), + [aux_sym_preprocessor_const_token1] = ACTIONS(2407), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(2427), + [aux_sym_else_fragment_token1] = ACTIONS(2429), + [aux_sym_select_statement_token1] = ACTIONS(2431), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3087), + [aux_sym_on_goto_statement_token1] = ACTIONS(2441), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3089), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3089), + [sym_beep_statement] = ACTIONS(3089), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_def_type_statement_token1] = ACTIONS(2481), + [aux_sym_def_type_statement_token2] = ACTIONS(2481), + [aux_sym_def_type_statement_token3] = ACTIONS(2481), + [aux_sym_def_type_statement_token4] = ACTIONS(2481), + [aux_sym_def_type_statement_token5] = ACTIONS(2481), + [aux_sym_def_type_statement_token6] = ACTIONS(2481), + [aux_sym_def_type_statement_token7] = ACTIONS(2481), + [aux_sym_def_type_statement_token8] = ACTIONS(2481), + [aux_sym_def_type_statement_token9] = ACTIONS(2481), + [aux_sym_def_type_statement_token10] = ACTIONS(2481), + [aux_sym_def_type_statement_token11] = ACTIONS(2481), + [aux_sym_def_type_statement_token12] = ACTIONS(2481), + [aux_sym_def_type_statement_token13] = ACTIONS(2481), + [aux_sym_def_type_statement_token14] = ACTIONS(2481), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(177)] = { + [sym__statement_separator] = STATE(181), + [sym_preprocessor_const] = STATE(181), + [sym_preprocessor_if] = STATE(181), + [sym__statement] = STATE(181), + [sym_variable_declaration] = STATE(181), + [sym_const_declaration] = STATE(181), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(181), + [sym_elseif_fragment] = STATE(181), + [sym_else_fragment] = STATE(181), + [sym_end_if_fragment] = STATE(181), + [sym_single_line_if_statement] = STATE(181), + [sym_select_statement] = STATE(181), + [sym_for_statement] = STATE(181), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(181), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(181), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(181), + [sym_with_statement] = STATE(181), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(181), + [sym_on_goto_statement] = STATE(181), + [sym_on_error_statement] = STATE(181), + [sym_resume_statement] = STATE(181), + [sym_goto_statement] = STATE(181), + [sym_label_statement] = STATE(181), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(181), + [sym_redim_statement] = STATE(181), + [sym_erase_statement] = STATE(181), + [sym_open_statement] = STATE(181), + [sym_input_statement] = STATE(181), + [sym_line_input_statement] = STATE(181), + [sym_print_statement] = STATE(181), + [sym_write_statement] = STATE(181), + [sym_debug_print_statement] = STATE(181), + [sym_close_statement] = STATE(181), + [sym_get_statement] = STATE(181), + [sym_put_statement] = STATE(181), + [sym_lock_statement] = STATE(181), + [sym_unlock_statement] = STATE(181), + [sym_seek_statement] = STATE(181), + [sym_raise_event_statement] = STATE(181), + [sym_name_statement] = STATE(181), + [sym_load_statement] = STATE(181), + [sym_unload_statement] = STATE(181), + [sym_def_type_statement] = STATE(181), + [sym_set_statement] = STATE(181), + [sym_assignment_statement] = STATE(181), + [sym_call_statement] = STATE(181), + [sym_expression_statement] = STATE(181), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(3091), + [anon_sym_COLON] = ACTIONS(3091), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3093), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(3091), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(3096), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(3096), + [sym_beep_statement] = ACTIONS(3096), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(840), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(178)] = { + [sym__statement_separator] = STATE(181), + [sym_preprocessor_const] = STATE(181), + [sym_preprocessor_if] = STATE(181), + [sym__statement] = STATE(181), + [sym_variable_declaration] = STATE(181), + [sym_const_declaration] = STATE(181), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(181), + [sym_elseif_fragment] = STATE(181), + [sym_else_fragment] = STATE(181), + [sym_end_if_fragment] = STATE(181), + [sym_single_line_if_statement] = STATE(181), + [sym_select_statement] = STATE(181), + [sym_for_statement] = STATE(181), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(181), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(181), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(181), + [sym_with_statement] = STATE(181), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(181), + [sym_on_goto_statement] = STATE(181), + [sym_on_error_statement] = STATE(181), + [sym_resume_statement] = STATE(181), + [sym_goto_statement] = STATE(181), + [sym_label_statement] = STATE(181), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(181), + [sym_redim_statement] = STATE(181), + [sym_erase_statement] = STATE(181), + [sym_open_statement] = STATE(181), + [sym_input_statement] = STATE(181), + [sym_line_input_statement] = STATE(181), + [sym_print_statement] = STATE(181), + [sym_write_statement] = STATE(181), + [sym_debug_print_statement] = STATE(181), + [sym_close_statement] = STATE(181), + [sym_get_statement] = STATE(181), + [sym_put_statement] = STATE(181), + [sym_lock_statement] = STATE(181), + [sym_unlock_statement] = STATE(181), + [sym_seek_statement] = STATE(181), + [sym_raise_event_statement] = STATE(181), + [sym_name_statement] = STATE(181), + [sym_load_statement] = STATE(181), + [sym_unload_statement] = STATE(181), + [sym_def_type_statement] = STATE(181), + [sym_set_statement] = STATE(181), + [sym_assignment_statement] = STATE(181), + [sym_call_statement] = STATE(181), + [sym_expression_statement] = STATE(181), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(730), + [sym_newline] = ACTIONS(3091), + [anon_sym_COLON] = ACTIONS(3091), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3093), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(750), + [aux_sym_preprocessor_const_token1] = ACTIONS(752), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(772), + [aux_sym_else_fragment_token1] = ACTIONS(774), + [aux_sym_select_statement_token1] = ACTIONS(776), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(3091), + [aux_sym_on_goto_statement_token1] = ACTIONS(786), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(3096), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(3096), + [sym_beep_statement] = ACTIONS(3096), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(3098), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(179)] = { + [sym_preprocessor_const] = STATE(51), + [sym_preprocessor_if] = STATE(51), + [sym_conditional_branch_body] = STATE(12596), + [sym__statement] = STATE(51), + [sym_variable_declaration] = STATE(51), + [sym_const_declaration] = STATE(51), + [sym_visibility] = STATE(11799), + [sym_if_statement] = STATE(51), + [sym_elseif_fragment] = STATE(51), + [sym_else_fragment] = STATE(51), + [sym_end_if_fragment] = STATE(51), + [sym_single_line_if_statement] = STATE(51), + [sym_select_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym__inline_for_statement] = STATE(5250), + [sym_for_each_statement] = STATE(51), + [sym__inline_for_each_statement] = STATE(5251), + [sym__for_header] = STATE(11307), + [sym__for_each_header] = STATE(11308), + [sym_do_statement] = STATE(51), + [sym__inline_do_statement] = STATE(5252), + [sym_while_statement] = STATE(51), + [sym_with_statement] = STATE(51), + [sym__inline_with_statement] = STATE(5253), + [sym_exit_statement] = STATE(51), + [sym_on_goto_statement] = STATE(51), + [sym_on_error_statement] = STATE(51), + [sym_resume_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym_label_statement] = STATE(51), + [sym_line_number_prefix] = STATE(11492), + [sym_line_number_statement] = STATE(51), + [sym_redim_statement] = STATE(51), + [sym_erase_statement] = STATE(51), + [sym_open_statement] = STATE(51), + [sym_input_statement] = STATE(51), + [sym_line_input_statement] = STATE(51), + [sym_print_statement] = STATE(51), + [sym_write_statement] = STATE(51), + [sym_debug_print_statement] = STATE(51), + [sym_close_statement] = STATE(51), + [sym_get_statement] = STATE(51), + [sym_put_statement] = STATE(51), + [sym_lock_statement] = STATE(51), + [sym_unlock_statement] = STATE(51), + [sym_seek_statement] = STATE(51), + [sym_raise_event_statement] = STATE(51), + [sym_name_statement] = STATE(51), + [sym_load_statement] = STATE(51), + [sym_unload_statement] = STATE(51), + [sym_def_type_statement] = STATE(51), + [sym_set_statement] = STATE(51), + [sym_assignment_statement] = STATE(51), + [sym_call_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym__primary_expression] = STATE(2614), + [sym__expression] = STATE(2614), + [sym__assignable_expression] = STATE(14425), + [sym__callable_expression] = STATE(378), + [sym__print_method_callee] = STATE(393), + [sym__print_method_call_expression] = STATE(5499), + [sym__qualified_print_method_expression] = STATE(5500), + [sym__implicit_print_method_expression] = STATE(5501), + [sym__line_method_expression] = STATE(12228), + [sym_call_expression] = STATE(2293), + [sym_new_expression] = STATE(2614), + [sym_addressof_expression] = STATE(2614), + [sym_type_of_expression] = STATE(2614), + [sym_member_expression] = STATE(2211), + [sym_qualified_member_expression] = STATE(2182), + [sym_implicit_member_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2614), + [sym_binary_expression] = STATE(2614), + [sym_unary_expression] = STATE(2614), + [sym__signed_unary_expression] = STATE(2203), + [sym__literal] = STATE(2614), + [sym_boolean_literal] = STATE(2614), + [sym_file_number_literal] = STATE(2614), + [sym_identifier] = ACTIONS(1057), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1061), + [aux_sym_frm_property_statement_token1] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [aux_sym__attribute_identifier_token1] = ACTIONS(1069), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1071), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3101), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1075), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(3101), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(3101), + [aux_sym_preprocessor_const_token1] = ACTIONS(1077), + [sym_static_modifier] = ACTIONS(1079), + [sym__dim_keyword] = ACTIONS(1081), + [sym__redim_keyword] = ACTIONS(1083), + [aux_sym_get_accessor_token1] = ACTIONS(1085), + [aux_sym_set_accessor_token1] = ACTIONS(1087), + [aux_sym_const_declaration_token1] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_as_type_clause_token2] = ACTIONS(1093), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1095), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1097), + [aux_sym_else_fragment_token1] = ACTIONS(1099), + [aux_sym_select_statement_token1] = ACTIONS(1101), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1103), + [aux_sym_do_condition_token1] = ACTIONS(1105), + [aux_sym_with_statement_token1] = ACTIONS(1107), + [aux_sym_exit_statement_token1] = ACTIONS(1109), + [sym_end_statement] = ACTIONS(2214), + [aux_sym_on_goto_statement_token1] = ACTIONS(1111), + [aux_sym_on_goto_statement_token2] = ACTIONS(1113), + [aux_sym_on_error_statement_token2] = ACTIONS(1115), + [sym__ambiguous_redim_statement] = ACTIONS(1117), + [aux_sym_erase_statement_token1] = ACTIONS(1119), + [aux_sym_open_statement_token1] = ACTIONS(1121), + [aux_sym_file_mode_token2] = ACTIONS(1123), + [aux_sym_file_access_token2] = ACTIONS(1125), + [aux_sym_file_lock_token2] = ACTIONS(1127), + [aux_sym_print_statement_token1] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [aux_sym_close_statement_token1] = ACTIONS(1137), + [aux_sym_put_statement_token1] = ACTIONS(1139), + [aux_sym_unlock_statement_token1] = ACTIONS(1141), + [aux_sym_seek_statement_token1] = ACTIONS(1143), + [sym_reset_statement] = ACTIONS(2216), + [aux_sym_raise_event_statement_token1] = ACTIONS(1147), + [sym_stop_statement] = ACTIONS(2216), + [sym_beep_statement] = ACTIONS(2216), + [aux_sym_unload_statement_token1] = ACTIONS(1149), + [aux_sym_def_type_statement_token1] = ACTIONS(1151), + [aux_sym_def_type_statement_token2] = ACTIONS(1151), + [aux_sym_def_type_statement_token3] = ACTIONS(1151), + [aux_sym_def_type_statement_token4] = ACTIONS(1151), + [aux_sym_def_type_statement_token5] = ACTIONS(1151), + [aux_sym_def_type_statement_token6] = ACTIONS(1151), + [aux_sym_def_type_statement_token7] = ACTIONS(1151), + [aux_sym_def_type_statement_token8] = ACTIONS(1151), + [aux_sym_def_type_statement_token9] = ACTIONS(1151), + [aux_sym_def_type_statement_token10] = ACTIONS(1151), + [aux_sym_def_type_statement_token11] = ACTIONS(1151), + [aux_sym_def_type_statement_token12] = ACTIONS(1151), + [aux_sym_def_type_statement_token13] = ACTIONS(1151), + [aux_sym_def_type_statement_token14] = ACTIONS(1151), + [aux_sym_call_statement_token1] = ACTIONS(1153), + [sym__ambiguous_call_statement] = ACTIONS(1155), + [aux_sym_addressof_expression_token1] = ACTIONS(1157), + [aux_sym_type_of_expression_token1] = ACTIONS(1159), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1165), + [aux_sym_boolean_literal_token1] = ACTIONS(1167), + [aux_sym_boolean_literal_token2] = ACTIONS(1167), + [sym_nothing_literal] = ACTIONS(1169), + [sym_null_literal] = ACTIONS(1169), + [sym_empty_literal] = ACTIONS(1169), + [sym_date_literal] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(1171), + }, + [STATE(180)] = { + [sym_preprocessor_const] = STATE(51), + [sym_preprocessor_if] = STATE(51), + [sym_conditional_branch_body] = STATE(12589), + [sym__statement] = STATE(51), + [sym_variable_declaration] = STATE(51), + [sym_const_declaration] = STATE(51), + [sym_visibility] = STATE(11799), + [sym_if_statement] = STATE(51), + [sym_elseif_fragment] = STATE(51), + [sym_else_fragment] = STATE(51), + [sym_end_if_fragment] = STATE(51), + [sym_single_line_if_statement] = STATE(51), + [sym_select_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym__inline_for_statement] = STATE(5250), + [sym_for_each_statement] = STATE(51), + [sym__inline_for_each_statement] = STATE(5251), + [sym__for_header] = STATE(11307), + [sym__for_each_header] = STATE(11308), + [sym_do_statement] = STATE(51), + [sym__inline_do_statement] = STATE(5252), + [sym_while_statement] = STATE(51), + [sym_with_statement] = STATE(51), + [sym__inline_with_statement] = STATE(5253), + [sym_exit_statement] = STATE(51), + [sym_on_goto_statement] = STATE(51), + [sym_on_error_statement] = STATE(51), + [sym_resume_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym_label_statement] = STATE(51), + [sym_line_number_prefix] = STATE(11492), + [sym_line_number_statement] = STATE(51), + [sym_redim_statement] = STATE(51), + [sym_erase_statement] = STATE(51), + [sym_open_statement] = STATE(51), + [sym_input_statement] = STATE(51), + [sym_line_input_statement] = STATE(51), + [sym_print_statement] = STATE(51), + [sym_write_statement] = STATE(51), + [sym_debug_print_statement] = STATE(51), + [sym_close_statement] = STATE(51), + [sym_get_statement] = STATE(51), + [sym_put_statement] = STATE(51), + [sym_lock_statement] = STATE(51), + [sym_unlock_statement] = STATE(51), + [sym_seek_statement] = STATE(51), + [sym_raise_event_statement] = STATE(51), + [sym_name_statement] = STATE(51), + [sym_load_statement] = STATE(51), + [sym_unload_statement] = STATE(51), + [sym_def_type_statement] = STATE(51), + [sym_set_statement] = STATE(51), + [sym_assignment_statement] = STATE(51), + [sym_call_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym__primary_expression] = STATE(2614), + [sym__expression] = STATE(2614), + [sym__assignable_expression] = STATE(14425), + [sym__callable_expression] = STATE(378), + [sym__print_method_callee] = STATE(393), + [sym__print_method_call_expression] = STATE(5499), + [sym__qualified_print_method_expression] = STATE(5500), + [sym__implicit_print_method_expression] = STATE(5501), + [sym__line_method_expression] = STATE(12228), + [sym_call_expression] = STATE(2293), + [sym_new_expression] = STATE(2614), + [sym_addressof_expression] = STATE(2614), + [sym_type_of_expression] = STATE(2614), + [sym_member_expression] = STATE(2211), + [sym_qualified_member_expression] = STATE(2182), + [sym_implicit_member_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2614), + [sym_binary_expression] = STATE(2614), + [sym_unary_expression] = STATE(2614), + [sym__signed_unary_expression] = STATE(2203), + [sym__literal] = STATE(2614), + [sym_boolean_literal] = STATE(2614), + [sym_file_number_literal] = STATE(2614), + [sym_identifier] = ACTIONS(1057), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1061), + [aux_sym_frm_property_statement_token1] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [aux_sym__attribute_identifier_token1] = ACTIONS(1069), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1071), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3103), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1075), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(3103), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(3103), + [aux_sym_preprocessor_const_token1] = ACTIONS(1077), + [sym_static_modifier] = ACTIONS(1079), + [sym__dim_keyword] = ACTIONS(1081), + [sym__redim_keyword] = ACTIONS(1083), + [aux_sym_get_accessor_token1] = ACTIONS(1085), + [aux_sym_set_accessor_token1] = ACTIONS(1087), + [aux_sym_const_declaration_token1] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_as_type_clause_token2] = ACTIONS(1093), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1095), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1097), + [aux_sym_else_fragment_token1] = ACTIONS(1099), + [aux_sym_select_statement_token1] = ACTIONS(1101), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1103), + [aux_sym_do_condition_token1] = ACTIONS(1105), + [aux_sym_with_statement_token1] = ACTIONS(1107), + [aux_sym_exit_statement_token1] = ACTIONS(1109), + [sym_end_statement] = ACTIONS(2214), + [aux_sym_on_goto_statement_token1] = ACTIONS(1111), + [aux_sym_on_goto_statement_token2] = ACTIONS(1113), + [aux_sym_on_error_statement_token2] = ACTIONS(1115), + [sym__ambiguous_redim_statement] = ACTIONS(1117), + [aux_sym_erase_statement_token1] = ACTIONS(1119), + [aux_sym_open_statement_token1] = ACTIONS(1121), + [aux_sym_file_mode_token2] = ACTIONS(1123), + [aux_sym_file_access_token2] = ACTIONS(1125), + [aux_sym_file_lock_token2] = ACTIONS(1127), + [aux_sym_print_statement_token1] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [aux_sym_close_statement_token1] = ACTIONS(1137), + [aux_sym_put_statement_token1] = ACTIONS(1139), + [aux_sym_unlock_statement_token1] = ACTIONS(1141), + [aux_sym_seek_statement_token1] = ACTIONS(1143), + [sym_reset_statement] = ACTIONS(2216), + [aux_sym_raise_event_statement_token1] = ACTIONS(1147), + [sym_stop_statement] = ACTIONS(2216), + [sym_beep_statement] = ACTIONS(2216), + [aux_sym_unload_statement_token1] = ACTIONS(1149), + [aux_sym_def_type_statement_token1] = ACTIONS(1151), + [aux_sym_def_type_statement_token2] = ACTIONS(1151), + [aux_sym_def_type_statement_token3] = ACTIONS(1151), + [aux_sym_def_type_statement_token4] = ACTIONS(1151), + [aux_sym_def_type_statement_token5] = ACTIONS(1151), + [aux_sym_def_type_statement_token6] = ACTIONS(1151), + [aux_sym_def_type_statement_token7] = ACTIONS(1151), + [aux_sym_def_type_statement_token8] = ACTIONS(1151), + [aux_sym_def_type_statement_token9] = ACTIONS(1151), + [aux_sym_def_type_statement_token10] = ACTIONS(1151), + [aux_sym_def_type_statement_token11] = ACTIONS(1151), + [aux_sym_def_type_statement_token12] = ACTIONS(1151), + [aux_sym_def_type_statement_token13] = ACTIONS(1151), + [aux_sym_def_type_statement_token14] = ACTIONS(1151), + [aux_sym_call_statement_token1] = ACTIONS(1153), + [sym__ambiguous_call_statement] = ACTIONS(1155), + [aux_sym_addressof_expression_token1] = ACTIONS(1157), + [aux_sym_type_of_expression_token1] = ACTIONS(1159), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1165), + [aux_sym_boolean_literal_token1] = ACTIONS(1167), + [aux_sym_boolean_literal_token2] = ACTIONS(1167), + [sym_nothing_literal] = ACTIONS(1169), + [sym_null_literal] = ACTIONS(1169), + [sym_empty_literal] = ACTIONS(1169), + [sym_date_literal] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(1171), + }, + [STATE(181)] = { + [sym__statement_separator] = STATE(181), + [sym_preprocessor_const] = STATE(181), + [sym_preprocessor_if] = STATE(181), + [sym__statement] = STATE(181), + [sym_variable_declaration] = STATE(181), + [sym_const_declaration] = STATE(181), + [sym_visibility] = STATE(11767), + [sym_if_statement] = STATE(181), + [sym_elseif_fragment] = STATE(181), + [sym_else_fragment] = STATE(181), + [sym_end_if_fragment] = STATE(181), + [sym_single_line_if_statement] = STATE(181), + [sym_select_statement] = STATE(181), + [sym_for_statement] = STATE(181), + [sym__inline_for_statement] = STATE(7220), + [sym_for_each_statement] = STATE(181), + [sym__inline_for_each_statement] = STATE(7259), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(181), + [sym__inline_do_statement] = STATE(7235), + [sym_while_statement] = STATE(181), + [sym_with_statement] = STATE(181), + [sym__inline_with_statement] = STATE(7256), + [sym_exit_statement] = STATE(181), + [sym_on_goto_statement] = STATE(181), + [sym_on_error_statement] = STATE(181), + [sym_resume_statement] = STATE(181), + [sym_goto_statement] = STATE(181), + [sym_label_statement] = STATE(181), + [sym_line_number_prefix] = STATE(11300), + [sym_line_number_statement] = STATE(181), + [sym_redim_statement] = STATE(181), + [sym_erase_statement] = STATE(181), + [sym_open_statement] = STATE(181), + [sym_input_statement] = STATE(181), + [sym_line_input_statement] = STATE(181), + [sym_print_statement] = STATE(181), + [sym_write_statement] = STATE(181), + [sym_debug_print_statement] = STATE(181), + [sym_close_statement] = STATE(181), + [sym_get_statement] = STATE(181), + [sym_put_statement] = STATE(181), + [sym_lock_statement] = STATE(181), + [sym_unlock_statement] = STATE(181), + [sym_seek_statement] = STATE(181), + [sym_raise_event_statement] = STATE(181), + [sym_name_statement] = STATE(181), + [sym_load_statement] = STATE(181), + [sym_unload_statement] = STATE(181), + [sym_def_type_statement] = STATE(181), + [sym_set_statement] = STATE(181), + [sym_assignment_statement] = STATE(181), + [sym_call_statement] = STATE(181), + [sym_expression_statement] = STATE(181), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [aux_sym_block_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(3105), + [sym_newline] = ACTIONS(3108), + [anon_sym_COLON] = ACTIONS(3108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3111), + [aux_sym_frm_property_statement_token1] = ACTIONS(3114), + [anon_sym_DOT] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3120), + [aux_sym__attribute_identifier_token1] = ACTIONS(3123), + [aux_sym_option_statement_token3] = ACTIONS(1194), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3126), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3129), + [aux_sym_preprocessor_const_token1] = ACTIONS(3132), + [sym_static_modifier] = ACTIONS(3135), + [sym__dim_keyword] = ACTIONS(3138), + [sym__redim_keyword] = ACTIONS(3141), + [aux_sym_get_accessor_token1] = ACTIONS(3144), + [aux_sym_set_accessor_token1] = ACTIONS(3147), + [aux_sym_const_declaration_token1] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3153), + [aux_sym_as_type_clause_token2] = ACTIONS(3156), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3159), + [aux_sym_visibility_token1] = ACTIONS(1194), + [aux_sym_visibility_token2] = ACTIONS(1194), + [aux_sym_elseif_fragment_token1] = ACTIONS(3162), + [aux_sym_else_fragment_token1] = ACTIONS(3165), + [aux_sym_select_statement_token1] = ACTIONS(3168), + [aux_sym__for_header_token1] = ACTIONS(1244), + [aux_sym_do_statement_token1] = ACTIONS(3171), + [aux_sym_do_condition_token1] = ACTIONS(3174), + [aux_sym_with_statement_token1] = ACTIONS(3177), + [aux_sym_exit_statement_token1] = ACTIONS(3180), + [sym_end_statement] = ACTIONS(3108), + [aux_sym_on_goto_statement_token1] = ACTIONS(3183), + [aux_sym_on_goto_statement_token2] = ACTIONS(3186), + [aux_sym_on_error_statement_token2] = ACTIONS(3189), + [sym__ambiguous_redim_statement] = ACTIONS(3192), + [aux_sym_erase_statement_token1] = ACTIONS(3195), + [aux_sym_open_statement_token1] = ACTIONS(3198), + [aux_sym_file_mode_token2] = ACTIONS(3201), + [aux_sym_file_access_token2] = ACTIONS(3204), + [aux_sym_file_lock_token2] = ACTIONS(3207), + [aux_sym_print_statement_token1] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3219), + [aux_sym_close_statement_token1] = ACTIONS(3222), + [aux_sym_put_statement_token1] = ACTIONS(3225), + [aux_sym_unlock_statement_token1] = ACTIONS(3228), + [aux_sym_seek_statement_token1] = ACTIONS(3231), + [sym_reset_statement] = ACTIONS(3234), + [aux_sym_raise_event_statement_token1] = ACTIONS(3237), + [sym_stop_statement] = ACTIONS(3234), + [sym_beep_statement] = ACTIONS(3234), + [aux_sym_unload_statement_token1] = ACTIONS(3240), + [aux_sym_def_type_statement_token1] = ACTIONS(3243), + [aux_sym_def_type_statement_token2] = ACTIONS(3243), + [aux_sym_def_type_statement_token3] = ACTIONS(3243), + [aux_sym_def_type_statement_token4] = ACTIONS(3243), + [aux_sym_def_type_statement_token5] = ACTIONS(3243), + [aux_sym_def_type_statement_token6] = ACTIONS(3243), + [aux_sym_def_type_statement_token7] = ACTIONS(3243), + [aux_sym_def_type_statement_token8] = ACTIONS(3243), + [aux_sym_def_type_statement_token9] = ACTIONS(3243), + [aux_sym_def_type_statement_token10] = ACTIONS(3243), + [aux_sym_def_type_statement_token11] = ACTIONS(3243), + [aux_sym_def_type_statement_token12] = ACTIONS(3243), + [aux_sym_def_type_statement_token13] = ACTIONS(3243), + [aux_sym_def_type_statement_token14] = ACTIONS(3243), + [aux_sym_call_statement_token1] = ACTIONS(3246), + [sym__ambiguous_call_statement] = ACTIONS(3249), + [aux_sym_addressof_expression_token1] = ACTIONS(3252), + [aux_sym_type_of_expression_token1] = ACTIONS(3255), + [aux_sym_unary_expression_token1] = ACTIONS(3258), + [sym_string_literal] = ACTIONS(3261), + [sym_number_literal] = ACTIONS(3264), + [aux_sym_boolean_literal_token1] = ACTIONS(3267), + [aux_sym_boolean_literal_token2] = ACTIONS(3267), + [sym_nothing_literal] = ACTIONS(3270), + [sym_null_literal] = ACTIONS(3270), + [sym_empty_literal] = ACTIONS(3270), + [sym_date_literal] = ACTIONS(3261), + [anon_sym_POUND] = ACTIONS(3273), + }, + [STATE(182)] = { + [sym_preprocessor_const] = STATE(51), + [sym_preprocessor_if] = STATE(51), + [sym_conditional_branch_body] = STATE(12602), + [sym__statement] = STATE(51), + [sym_variable_declaration] = STATE(51), + [sym_const_declaration] = STATE(51), + [sym_visibility] = STATE(11799), + [sym_if_statement] = STATE(51), + [sym_elseif_fragment] = STATE(51), + [sym_else_fragment] = STATE(51), + [sym_end_if_fragment] = STATE(51), + [sym_single_line_if_statement] = STATE(51), + [sym_select_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym__inline_for_statement] = STATE(5250), + [sym_for_each_statement] = STATE(51), + [sym__inline_for_each_statement] = STATE(5251), + [sym__for_header] = STATE(11307), + [sym__for_each_header] = STATE(11308), + [sym_do_statement] = STATE(51), + [sym__inline_do_statement] = STATE(5252), + [sym_while_statement] = STATE(51), + [sym_with_statement] = STATE(51), + [sym__inline_with_statement] = STATE(5253), + [sym_exit_statement] = STATE(51), + [sym_on_goto_statement] = STATE(51), + [sym_on_error_statement] = STATE(51), + [sym_resume_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym_label_statement] = STATE(51), + [sym_line_number_prefix] = STATE(11492), + [sym_line_number_statement] = STATE(51), + [sym_redim_statement] = STATE(51), + [sym_erase_statement] = STATE(51), + [sym_open_statement] = STATE(51), + [sym_input_statement] = STATE(51), + [sym_line_input_statement] = STATE(51), + [sym_print_statement] = STATE(51), + [sym_write_statement] = STATE(51), + [sym_debug_print_statement] = STATE(51), + [sym_close_statement] = STATE(51), + [sym_get_statement] = STATE(51), + [sym_put_statement] = STATE(51), + [sym_lock_statement] = STATE(51), + [sym_unlock_statement] = STATE(51), + [sym_seek_statement] = STATE(51), + [sym_raise_event_statement] = STATE(51), + [sym_name_statement] = STATE(51), + [sym_load_statement] = STATE(51), + [sym_unload_statement] = STATE(51), + [sym_def_type_statement] = STATE(51), + [sym_set_statement] = STATE(51), + [sym_assignment_statement] = STATE(51), + [sym_call_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym__primary_expression] = STATE(2614), + [sym__expression] = STATE(2614), + [sym__assignable_expression] = STATE(14425), + [sym__callable_expression] = STATE(378), + [sym__print_method_callee] = STATE(393), + [sym__print_method_call_expression] = STATE(5499), + [sym__qualified_print_method_expression] = STATE(5500), + [sym__implicit_print_method_expression] = STATE(5501), + [sym__line_method_expression] = STATE(12228), + [sym_call_expression] = STATE(2293), + [sym_new_expression] = STATE(2614), + [sym_addressof_expression] = STATE(2614), + [sym_type_of_expression] = STATE(2614), + [sym_member_expression] = STATE(2211), + [sym_qualified_member_expression] = STATE(2182), + [sym_implicit_member_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2614), + [sym_binary_expression] = STATE(2614), + [sym_unary_expression] = STATE(2614), + [sym__signed_unary_expression] = STATE(2203), + [sym__literal] = STATE(2614), + [sym_boolean_literal] = STATE(2614), + [sym_file_number_literal] = STATE(2614), + [sym_identifier] = ACTIONS(1057), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(1061), + [aux_sym_frm_property_statement_token1] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [aux_sym__attribute_identifier_token1] = ACTIONS(1069), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(1071), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3276), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(1075), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(3276), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(3276), + [aux_sym_preprocessor_const_token1] = ACTIONS(1077), + [sym_static_modifier] = ACTIONS(1079), + [sym__dim_keyword] = ACTIONS(1081), + [sym__redim_keyword] = ACTIONS(1083), + [aux_sym_get_accessor_token1] = ACTIONS(1085), + [aux_sym_set_accessor_token1] = ACTIONS(1087), + [aux_sym_const_declaration_token1] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_as_type_clause_token2] = ACTIONS(1093), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1095), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(1097), + [aux_sym_else_fragment_token1] = ACTIONS(1099), + [aux_sym_select_statement_token1] = ACTIONS(1101), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1103), + [aux_sym_do_condition_token1] = ACTIONS(1105), + [aux_sym_with_statement_token1] = ACTIONS(1107), + [aux_sym_exit_statement_token1] = ACTIONS(1109), + [sym_end_statement] = ACTIONS(2214), + [aux_sym_on_goto_statement_token1] = ACTIONS(1111), + [aux_sym_on_goto_statement_token2] = ACTIONS(1113), + [aux_sym_on_error_statement_token2] = ACTIONS(1115), + [sym__ambiguous_redim_statement] = ACTIONS(1117), + [aux_sym_erase_statement_token1] = ACTIONS(1119), + [aux_sym_open_statement_token1] = ACTIONS(1121), + [aux_sym_file_mode_token2] = ACTIONS(1123), + [aux_sym_file_access_token2] = ACTIONS(1125), + [aux_sym_file_lock_token2] = ACTIONS(1127), + [aux_sym_print_statement_token1] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [aux_sym_close_statement_token1] = ACTIONS(1137), + [aux_sym_put_statement_token1] = ACTIONS(1139), + [aux_sym_unlock_statement_token1] = ACTIONS(1141), + [aux_sym_seek_statement_token1] = ACTIONS(1143), + [sym_reset_statement] = ACTIONS(2216), + [aux_sym_raise_event_statement_token1] = ACTIONS(1147), + [sym_stop_statement] = ACTIONS(2216), + [sym_beep_statement] = ACTIONS(2216), + [aux_sym_unload_statement_token1] = ACTIONS(1149), + [aux_sym_def_type_statement_token1] = ACTIONS(1151), + [aux_sym_def_type_statement_token2] = ACTIONS(1151), + [aux_sym_def_type_statement_token3] = ACTIONS(1151), + [aux_sym_def_type_statement_token4] = ACTIONS(1151), + [aux_sym_def_type_statement_token5] = ACTIONS(1151), + [aux_sym_def_type_statement_token6] = ACTIONS(1151), + [aux_sym_def_type_statement_token7] = ACTIONS(1151), + [aux_sym_def_type_statement_token8] = ACTIONS(1151), + [aux_sym_def_type_statement_token9] = ACTIONS(1151), + [aux_sym_def_type_statement_token10] = ACTIONS(1151), + [aux_sym_def_type_statement_token11] = ACTIONS(1151), + [aux_sym_def_type_statement_token12] = ACTIONS(1151), + [aux_sym_def_type_statement_token13] = ACTIONS(1151), + [aux_sym_def_type_statement_token14] = ACTIONS(1151), + [aux_sym_call_statement_token1] = ACTIONS(1153), + [sym__ambiguous_call_statement] = ACTIONS(1155), + [aux_sym_addressof_expression_token1] = ACTIONS(1157), + [aux_sym_type_of_expression_token1] = ACTIONS(1159), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1165), + [aux_sym_boolean_literal_token1] = ACTIONS(1167), + [aux_sym_boolean_literal_token2] = ACTIONS(1167), + [sym_nothing_literal] = ACTIONS(1169), + [sym_null_literal] = ACTIONS(1169), + [sym_empty_literal] = ACTIONS(1169), + [sym_date_literal] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(1171), + }, + [STATE(183)] = { + [sym_preprocessor_const] = STATE(176), + [sym_preprocessor_if] = STATE(176), + [sym_conditional_branch_body] = STATE(14537), + [sym__statement] = STATE(176), + [sym_variable_declaration] = STATE(176), + [sym_const_declaration] = STATE(176), + [sym_visibility] = STATE(12008), + [sym_if_statement] = STATE(176), + [sym_elseif_fragment] = STATE(176), + [sym_else_fragment] = STATE(176), + [sym_end_if_fragment] = STATE(176), + [sym_single_line_if_statement] = STATE(176), + [sym_select_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym__inline_for_statement] = STATE(6988), + [sym_for_each_statement] = STATE(176), + [sym__inline_for_each_statement] = STATE(6989), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(176), + [sym__inline_do_statement] = STATE(6990), + [sym_while_statement] = STATE(176), + [sym_with_statement] = STATE(176), + [sym__inline_with_statement] = STATE(6991), + [sym_exit_statement] = STATE(176), + [sym_on_goto_statement] = STATE(176), + [sym_on_error_statement] = STATE(176), + [sym_resume_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym_label_statement] = STATE(176), + [sym_line_number_prefix] = STATE(11513), + [sym_line_number_statement] = STATE(176), + [sym_redim_statement] = STATE(176), + [sym_erase_statement] = STATE(176), + [sym_open_statement] = STATE(176), + [sym_input_statement] = STATE(176), + [sym_line_input_statement] = STATE(176), + [sym_print_statement] = STATE(176), + [sym_write_statement] = STATE(176), + [sym_debug_print_statement] = STATE(176), + [sym_close_statement] = STATE(176), + [sym_get_statement] = STATE(176), + [sym_put_statement] = STATE(176), + [sym_lock_statement] = STATE(176), + [sym_unlock_statement] = STATE(176), + [sym_seek_statement] = STATE(176), + [sym_raise_event_statement] = STATE(176), + [sym_name_statement] = STATE(176), + [sym_load_statement] = STATE(176), + [sym_unload_statement] = STATE(176), + [sym_def_type_statement] = STATE(176), + [sym_set_statement] = STATE(176), + [sym_assignment_statement] = STATE(176), + [sym_call_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(2389), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2393), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2403), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3278), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2405), + [aux_sym_preprocessor_const_token1] = ACTIONS(2407), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(2427), + [aux_sym_else_fragment_token1] = ACTIONS(2429), + [aux_sym_select_statement_token1] = ACTIONS(2431), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3280), + [aux_sym_on_goto_statement_token1] = ACTIONS(2441), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3282), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3282), + [sym_beep_statement] = ACTIONS(3282), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_def_type_statement_token1] = ACTIONS(2481), + [aux_sym_def_type_statement_token2] = ACTIONS(2481), + [aux_sym_def_type_statement_token3] = ACTIONS(2481), + [aux_sym_def_type_statement_token4] = ACTIONS(2481), + [aux_sym_def_type_statement_token5] = ACTIONS(2481), + [aux_sym_def_type_statement_token6] = ACTIONS(2481), + [aux_sym_def_type_statement_token7] = ACTIONS(2481), + [aux_sym_def_type_statement_token8] = ACTIONS(2481), + [aux_sym_def_type_statement_token9] = ACTIONS(2481), + [aux_sym_def_type_statement_token10] = ACTIONS(2481), + [aux_sym_def_type_statement_token11] = ACTIONS(2481), + [aux_sym_def_type_statement_token12] = ACTIONS(2481), + [aux_sym_def_type_statement_token13] = ACTIONS(2481), + [aux_sym_def_type_statement_token14] = ACTIONS(2481), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(184)] = { + [sym_preprocessor_const] = STATE(176), + [sym_preprocessor_if] = STATE(176), + [sym_conditional_branch_body] = STATE(15047), + [sym__statement] = STATE(176), + [sym_variable_declaration] = STATE(176), + [sym_const_declaration] = STATE(176), + [sym_visibility] = STATE(12008), + [sym_if_statement] = STATE(176), + [sym_elseif_fragment] = STATE(176), + [sym_else_fragment] = STATE(176), + [sym_end_if_fragment] = STATE(176), + [sym_single_line_if_statement] = STATE(176), + [sym_select_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym__inline_for_statement] = STATE(6988), + [sym_for_each_statement] = STATE(176), + [sym__inline_for_each_statement] = STATE(6989), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(176), + [sym__inline_do_statement] = STATE(6990), + [sym_while_statement] = STATE(176), + [sym_with_statement] = STATE(176), + [sym__inline_with_statement] = STATE(6991), + [sym_exit_statement] = STATE(176), + [sym_on_goto_statement] = STATE(176), + [sym_on_error_statement] = STATE(176), + [sym_resume_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym_label_statement] = STATE(176), + [sym_line_number_prefix] = STATE(11513), + [sym_line_number_statement] = STATE(176), + [sym_redim_statement] = STATE(176), + [sym_erase_statement] = STATE(176), + [sym_open_statement] = STATE(176), + [sym_input_statement] = STATE(176), + [sym_line_input_statement] = STATE(176), + [sym_print_statement] = STATE(176), + [sym_write_statement] = STATE(176), + [sym_debug_print_statement] = STATE(176), + [sym_close_statement] = STATE(176), + [sym_get_statement] = STATE(176), + [sym_put_statement] = STATE(176), + [sym_lock_statement] = STATE(176), + [sym_unlock_statement] = STATE(176), + [sym_seek_statement] = STATE(176), + [sym_raise_event_statement] = STATE(176), + [sym_name_statement] = STATE(176), + [sym_load_statement] = STATE(176), + [sym_unload_statement] = STATE(176), + [sym_def_type_statement] = STATE(176), + [sym_set_statement] = STATE(176), + [sym_assignment_statement] = STATE(176), + [sym_call_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(2389), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2393), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2403), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3284), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2405), + [aux_sym_preprocessor_const_token1] = ACTIONS(2407), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(2427), + [aux_sym_else_fragment_token1] = ACTIONS(2429), + [aux_sym_select_statement_token1] = ACTIONS(2431), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3280), + [aux_sym_on_goto_statement_token1] = ACTIONS(2441), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3282), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3282), + [sym_beep_statement] = ACTIONS(3282), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_def_type_statement_token1] = ACTIONS(2481), + [aux_sym_def_type_statement_token2] = ACTIONS(2481), + [aux_sym_def_type_statement_token3] = ACTIONS(2481), + [aux_sym_def_type_statement_token4] = ACTIONS(2481), + [aux_sym_def_type_statement_token5] = ACTIONS(2481), + [aux_sym_def_type_statement_token6] = ACTIONS(2481), + [aux_sym_def_type_statement_token7] = ACTIONS(2481), + [aux_sym_def_type_statement_token8] = ACTIONS(2481), + [aux_sym_def_type_statement_token9] = ACTIONS(2481), + [aux_sym_def_type_statement_token10] = ACTIONS(2481), + [aux_sym_def_type_statement_token11] = ACTIONS(2481), + [aux_sym_def_type_statement_token12] = ACTIONS(2481), + [aux_sym_def_type_statement_token13] = ACTIONS(2481), + [aux_sym_def_type_statement_token14] = ACTIONS(2481), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(185)] = { + [sym_preprocessor_const] = STATE(176), + [sym_preprocessor_if] = STATE(176), + [sym_conditional_branch_body] = STATE(14193), + [sym__statement] = STATE(176), + [sym_variable_declaration] = STATE(176), + [sym_const_declaration] = STATE(176), + [sym_visibility] = STATE(12008), + [sym_if_statement] = STATE(176), + [sym_elseif_fragment] = STATE(176), + [sym_else_fragment] = STATE(176), + [sym_end_if_fragment] = STATE(176), + [sym_single_line_if_statement] = STATE(176), + [sym_select_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym__inline_for_statement] = STATE(6988), + [sym_for_each_statement] = STATE(176), + [sym__inline_for_each_statement] = STATE(6989), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(176), + [sym__inline_do_statement] = STATE(6990), + [sym_while_statement] = STATE(176), + [sym_with_statement] = STATE(176), + [sym__inline_with_statement] = STATE(6991), + [sym_exit_statement] = STATE(176), + [sym_on_goto_statement] = STATE(176), + [sym_on_error_statement] = STATE(176), + [sym_resume_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym_label_statement] = STATE(176), + [sym_line_number_prefix] = STATE(11513), + [sym_line_number_statement] = STATE(176), + [sym_redim_statement] = STATE(176), + [sym_erase_statement] = STATE(176), + [sym_open_statement] = STATE(176), + [sym_input_statement] = STATE(176), + [sym_line_input_statement] = STATE(176), + [sym_print_statement] = STATE(176), + [sym_write_statement] = STATE(176), + [sym_debug_print_statement] = STATE(176), + [sym_close_statement] = STATE(176), + [sym_get_statement] = STATE(176), + [sym_put_statement] = STATE(176), + [sym_lock_statement] = STATE(176), + [sym_unlock_statement] = STATE(176), + [sym_seek_statement] = STATE(176), + [sym_raise_event_statement] = STATE(176), + [sym_name_statement] = STATE(176), + [sym_load_statement] = STATE(176), + [sym_unload_statement] = STATE(176), + [sym_def_type_statement] = STATE(176), + [sym_set_statement] = STATE(176), + [sym_assignment_statement] = STATE(176), + [sym_call_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(2389), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2393), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2403), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3286), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2405), + [aux_sym_preprocessor_const_token1] = ACTIONS(2407), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(2427), + [aux_sym_else_fragment_token1] = ACTIONS(2429), + [aux_sym_select_statement_token1] = ACTIONS(2431), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3280), + [aux_sym_on_goto_statement_token1] = ACTIONS(2441), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3282), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3282), + [sym_beep_statement] = ACTIONS(3282), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_def_type_statement_token1] = ACTIONS(2481), + [aux_sym_def_type_statement_token2] = ACTIONS(2481), + [aux_sym_def_type_statement_token3] = ACTIONS(2481), + [aux_sym_def_type_statement_token4] = ACTIONS(2481), + [aux_sym_def_type_statement_token5] = ACTIONS(2481), + [aux_sym_def_type_statement_token6] = ACTIONS(2481), + [aux_sym_def_type_statement_token7] = ACTIONS(2481), + [aux_sym_def_type_statement_token8] = ACTIONS(2481), + [aux_sym_def_type_statement_token9] = ACTIONS(2481), + [aux_sym_def_type_statement_token10] = ACTIONS(2481), + [aux_sym_def_type_statement_token11] = ACTIONS(2481), + [aux_sym_def_type_statement_token12] = ACTIONS(2481), + [aux_sym_def_type_statement_token13] = ACTIONS(2481), + [aux_sym_def_type_statement_token14] = ACTIONS(2481), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(186)] = { + [sym_preprocessor_const] = STATE(176), + [sym_preprocessor_if] = STATE(176), + [sym_conditional_branch_body] = STATE(14978), + [sym__statement] = STATE(176), + [sym_variable_declaration] = STATE(176), + [sym_const_declaration] = STATE(176), + [sym_visibility] = STATE(12008), + [sym_if_statement] = STATE(176), + [sym_elseif_fragment] = STATE(176), + [sym_else_fragment] = STATE(176), + [sym_end_if_fragment] = STATE(176), + [sym_single_line_if_statement] = STATE(176), + [sym_select_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym__inline_for_statement] = STATE(6988), + [sym_for_each_statement] = STATE(176), + [sym__inline_for_each_statement] = STATE(6989), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(176), + [sym__inline_do_statement] = STATE(6990), + [sym_while_statement] = STATE(176), + [sym_with_statement] = STATE(176), + [sym__inline_with_statement] = STATE(6991), + [sym_exit_statement] = STATE(176), + [sym_on_goto_statement] = STATE(176), + [sym_on_error_statement] = STATE(176), + [sym_resume_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym_label_statement] = STATE(176), + [sym_line_number_prefix] = STATE(11513), + [sym_line_number_statement] = STATE(176), + [sym_redim_statement] = STATE(176), + [sym_erase_statement] = STATE(176), + [sym_open_statement] = STATE(176), + [sym_input_statement] = STATE(176), + [sym_line_input_statement] = STATE(176), + [sym_print_statement] = STATE(176), + [sym_write_statement] = STATE(176), + [sym_debug_print_statement] = STATE(176), + [sym_close_statement] = STATE(176), + [sym_get_statement] = STATE(176), + [sym_put_statement] = STATE(176), + [sym_lock_statement] = STATE(176), + [sym_unlock_statement] = STATE(176), + [sym_seek_statement] = STATE(176), + [sym_raise_event_statement] = STATE(176), + [sym_name_statement] = STATE(176), + [sym_load_statement] = STATE(176), + [sym_unload_statement] = STATE(176), + [sym_def_type_statement] = STATE(176), + [sym_set_statement] = STATE(176), + [sym_assignment_statement] = STATE(176), + [sym_call_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(2389), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2393), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2403), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3288), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2405), + [aux_sym_preprocessor_const_token1] = ACTIONS(2407), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(2427), + [aux_sym_else_fragment_token1] = ACTIONS(2429), + [aux_sym_select_statement_token1] = ACTIONS(2431), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3280), + [aux_sym_on_goto_statement_token1] = ACTIONS(2441), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3282), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3282), + [sym_beep_statement] = ACTIONS(3282), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_def_type_statement_token1] = ACTIONS(2481), + [aux_sym_def_type_statement_token2] = ACTIONS(2481), + [aux_sym_def_type_statement_token3] = ACTIONS(2481), + [aux_sym_def_type_statement_token4] = ACTIONS(2481), + [aux_sym_def_type_statement_token5] = ACTIONS(2481), + [aux_sym_def_type_statement_token6] = ACTIONS(2481), + [aux_sym_def_type_statement_token7] = ACTIONS(2481), + [aux_sym_def_type_statement_token8] = ACTIONS(2481), + [aux_sym_def_type_statement_token9] = ACTIONS(2481), + [aux_sym_def_type_statement_token10] = ACTIONS(2481), + [aux_sym_def_type_statement_token11] = ACTIONS(2481), + [aux_sym_def_type_statement_token12] = ACTIONS(2481), + [aux_sym_def_type_statement_token13] = ACTIONS(2481), + [aux_sym_def_type_statement_token14] = ACTIONS(2481), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(187)] = { + [sym_variable_declaration] = STATE(3760), + [sym_const_declaration] = STATE(3760), + [sym_visibility] = STATE(11841), + [sym_single_line_if_statement] = STATE(3760), + [sym_inline_statement_sequence] = STATE(3969), + [sym__inline_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym__inline_for_statement] = STATE(3853), + [sym_for_each_statement] = STATE(3760), + [sym__inline_for_each_statement] = STATE(3854), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(3760), + [sym__inline_do_statement] = STATE(3855), + [sym_while_statement] = STATE(3760), + [sym_with_statement] = STATE(3760), + [sym__inline_with_statement] = STATE(3856), + [sym_exit_statement] = STATE(3760), + [sym_on_error_statement] = STATE(3760), + [sym_resume_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_line_number_prefix] = STATE(12380), + [sym_redim_statement] = STATE(3760), + [sym_erase_statement] = STATE(3760), + [sym_open_statement] = STATE(3760), + [sym_input_statement] = STATE(3760), + [sym_line_input_statement] = STATE(3760), + [sym_print_statement] = STATE(3760), + [sym_write_statement] = STATE(3760), + [sym_debug_print_statement] = STATE(3760), + [sym_close_statement] = STATE(3760), + [sym_get_statement] = STATE(3760), + [sym_put_statement] = STATE(3760), + [sym_lock_statement] = STATE(3760), + [sym_unlock_statement] = STATE(3760), + [sym_seek_statement] = STATE(3760), + [sym_raise_event_statement] = STATE(3760), + [sym_name_statement] = STATE(3760), + [sym_load_statement] = STATE(3760), + [sym_unload_statement] = STATE(3760), + [sym_set_statement] = STATE(3760), + [sym_assignment_statement] = STATE(3760), + [sym_call_statement] = STATE(3760), + [sym_expression_statement] = STATE(3760), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [sym_identifier] = ACTIONS(3290), + [sym_newline] = ACTIONS(3292), + [anon_sym_COLON] = ACTIONS(3294), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3296), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_declaration_token1] = ACTIONS(3296), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3296), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3296), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3298), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(3296), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(3296), + [aux_sym_enum_declaration_token1] = ACTIONS(3296), + [aux_sym_declare_sub_statement_token1] = ACTIONS(3296), + [aux_sym_declare_sub_statement_token2] = ACTIONS(3296), + [aux_sym_declare_function_statement_token1] = ACTIONS(3296), + [aux_sym_preprocessor_const_token1] = ACTIONS(3296), + [aux_sym__property_get_header_token1] = ACTIONS(3296), + [aux_sym_event_declaration_token1] = ACTIONS(3296), + [sym_static_modifier] = ACTIONS(3300), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3296), + [aux_sym_else_fragment_token1] = ACTIONS(3296), + [aux_sym_select_statement_token1] = ACTIONS(3296), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(3302), + [aux_sym_on_goto_statement_token1] = ACTIONS(3304), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(3306), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(3306), + [sym_beep_statement] = ACTIONS(3306), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_def_type_statement_token1] = ACTIONS(3296), + [aux_sym_def_type_statement_token2] = ACTIONS(3296), + [aux_sym_def_type_statement_token3] = ACTIONS(3296), + [aux_sym_def_type_statement_token4] = ACTIONS(3296), + [aux_sym_def_type_statement_token5] = ACTIONS(3296), + [aux_sym_def_type_statement_token6] = ACTIONS(3296), + [aux_sym_def_type_statement_token7] = ACTIONS(3296), + [aux_sym_def_type_statement_token8] = ACTIONS(3296), + [aux_sym_def_type_statement_token9] = ACTIONS(3296), + [aux_sym_def_type_statement_token10] = ACTIONS(3296), + [aux_sym_def_type_statement_token11] = ACTIONS(3296), + [aux_sym_def_type_statement_token12] = ACTIONS(3296), + [aux_sym_def_type_statement_token13] = ACTIONS(3296), + [aux_sym_def_type_statement_token14] = ACTIONS(3296), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(3308), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(188)] = { + [sym_preprocessor_const] = STATE(176), + [sym_preprocessor_if] = STATE(176), + [sym_conditional_branch_body] = STATE(14839), + [sym__statement] = STATE(176), + [sym_variable_declaration] = STATE(176), + [sym_const_declaration] = STATE(176), + [sym_visibility] = STATE(12008), + [sym_if_statement] = STATE(176), + [sym_elseif_fragment] = STATE(176), + [sym_else_fragment] = STATE(176), + [sym_end_if_fragment] = STATE(176), + [sym_single_line_if_statement] = STATE(176), + [sym_select_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym__inline_for_statement] = STATE(6988), + [sym_for_each_statement] = STATE(176), + [sym__inline_for_each_statement] = STATE(6989), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(176), + [sym__inline_do_statement] = STATE(6990), + [sym_while_statement] = STATE(176), + [sym_with_statement] = STATE(176), + [sym__inline_with_statement] = STATE(6991), + [sym_exit_statement] = STATE(176), + [sym_on_goto_statement] = STATE(176), + [sym_on_error_statement] = STATE(176), + [sym_resume_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym_label_statement] = STATE(176), + [sym_line_number_prefix] = STATE(11513), + [sym_line_number_statement] = STATE(176), + [sym_redim_statement] = STATE(176), + [sym_erase_statement] = STATE(176), + [sym_open_statement] = STATE(176), + [sym_input_statement] = STATE(176), + [sym_line_input_statement] = STATE(176), + [sym_print_statement] = STATE(176), + [sym_write_statement] = STATE(176), + [sym_debug_print_statement] = STATE(176), + [sym_close_statement] = STATE(176), + [sym_get_statement] = STATE(176), + [sym_put_statement] = STATE(176), + [sym_lock_statement] = STATE(176), + [sym_unlock_statement] = STATE(176), + [sym_seek_statement] = STATE(176), + [sym_raise_event_statement] = STATE(176), + [sym_name_statement] = STATE(176), + [sym_load_statement] = STATE(176), + [sym_unload_statement] = STATE(176), + [sym_def_type_statement] = STATE(176), + [sym_set_statement] = STATE(176), + [sym_assignment_statement] = STATE(176), + [sym_call_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(2389), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2393), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2403), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3310), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2405), + [aux_sym_preprocessor_const_token1] = ACTIONS(2407), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(2427), + [aux_sym_else_fragment_token1] = ACTIONS(2429), + [aux_sym_select_statement_token1] = ACTIONS(2431), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3280), + [aux_sym_on_goto_statement_token1] = ACTIONS(2441), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3282), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3282), + [sym_beep_statement] = ACTIONS(3282), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_def_type_statement_token1] = ACTIONS(2481), + [aux_sym_def_type_statement_token2] = ACTIONS(2481), + [aux_sym_def_type_statement_token3] = ACTIONS(2481), + [aux_sym_def_type_statement_token4] = ACTIONS(2481), + [aux_sym_def_type_statement_token5] = ACTIONS(2481), + [aux_sym_def_type_statement_token6] = ACTIONS(2481), + [aux_sym_def_type_statement_token7] = ACTIONS(2481), + [aux_sym_def_type_statement_token8] = ACTIONS(2481), + [aux_sym_def_type_statement_token9] = ACTIONS(2481), + [aux_sym_def_type_statement_token10] = ACTIONS(2481), + [aux_sym_def_type_statement_token11] = ACTIONS(2481), + [aux_sym_def_type_statement_token12] = ACTIONS(2481), + [aux_sym_def_type_statement_token13] = ACTIONS(2481), + [aux_sym_def_type_statement_token14] = ACTIONS(2481), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(189)] = { + [sym_preprocessor_const] = STATE(176), + [sym_preprocessor_if] = STATE(176), + [sym_conditional_branch_body] = STATE(14287), + [sym__statement] = STATE(176), + [sym_variable_declaration] = STATE(176), + [sym_const_declaration] = STATE(176), + [sym_visibility] = STATE(12008), + [sym_if_statement] = STATE(176), + [sym_elseif_fragment] = STATE(176), + [sym_else_fragment] = STATE(176), + [sym_end_if_fragment] = STATE(176), + [sym_single_line_if_statement] = STATE(176), + [sym_select_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym__inline_for_statement] = STATE(6988), + [sym_for_each_statement] = STATE(176), + [sym__inline_for_each_statement] = STATE(6989), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(176), + [sym__inline_do_statement] = STATE(6990), + [sym_while_statement] = STATE(176), + [sym_with_statement] = STATE(176), + [sym__inline_with_statement] = STATE(6991), + [sym_exit_statement] = STATE(176), + [sym_on_goto_statement] = STATE(176), + [sym_on_error_statement] = STATE(176), + [sym_resume_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym_label_statement] = STATE(176), + [sym_line_number_prefix] = STATE(11513), + [sym_line_number_statement] = STATE(176), + [sym_redim_statement] = STATE(176), + [sym_erase_statement] = STATE(176), + [sym_open_statement] = STATE(176), + [sym_input_statement] = STATE(176), + [sym_line_input_statement] = STATE(176), + [sym_print_statement] = STATE(176), + [sym_write_statement] = STATE(176), + [sym_debug_print_statement] = STATE(176), + [sym_close_statement] = STATE(176), + [sym_get_statement] = STATE(176), + [sym_put_statement] = STATE(176), + [sym_lock_statement] = STATE(176), + [sym_unlock_statement] = STATE(176), + [sym_seek_statement] = STATE(176), + [sym_raise_event_statement] = STATE(176), + [sym_name_statement] = STATE(176), + [sym_load_statement] = STATE(176), + [sym_unload_statement] = STATE(176), + [sym_def_type_statement] = STATE(176), + [sym_set_statement] = STATE(176), + [sym_assignment_statement] = STATE(176), + [sym_call_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(2389), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2393), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2403), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2405), + [aux_sym_preprocessor_const_token1] = ACTIONS(2407), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(2427), + [aux_sym_else_fragment_token1] = ACTIONS(2429), + [aux_sym_select_statement_token1] = ACTIONS(2431), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3280), + [aux_sym_on_goto_statement_token1] = ACTIONS(2441), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3282), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3282), + [sym_beep_statement] = ACTIONS(3282), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_def_type_statement_token1] = ACTIONS(2481), + [aux_sym_def_type_statement_token2] = ACTIONS(2481), + [aux_sym_def_type_statement_token3] = ACTIONS(2481), + [aux_sym_def_type_statement_token4] = ACTIONS(2481), + [aux_sym_def_type_statement_token5] = ACTIONS(2481), + [aux_sym_def_type_statement_token6] = ACTIONS(2481), + [aux_sym_def_type_statement_token7] = ACTIONS(2481), + [aux_sym_def_type_statement_token8] = ACTIONS(2481), + [aux_sym_def_type_statement_token9] = ACTIONS(2481), + [aux_sym_def_type_statement_token10] = ACTIONS(2481), + [aux_sym_def_type_statement_token11] = ACTIONS(2481), + [aux_sym_def_type_statement_token12] = ACTIONS(2481), + [aux_sym_def_type_statement_token13] = ACTIONS(2481), + [aux_sym_def_type_statement_token14] = ACTIONS(2481), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(190)] = { + [sym_preprocessor_const] = STATE(176), + [sym_preprocessor_if] = STATE(176), + [sym_conditional_branch_body] = STATE(14402), + [sym__statement] = STATE(176), + [sym_variable_declaration] = STATE(176), + [sym_const_declaration] = STATE(176), + [sym_visibility] = STATE(12008), + [sym_if_statement] = STATE(176), + [sym_elseif_fragment] = STATE(176), + [sym_else_fragment] = STATE(176), + [sym_end_if_fragment] = STATE(176), + [sym_single_line_if_statement] = STATE(176), + [sym_select_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym__inline_for_statement] = STATE(6988), + [sym_for_each_statement] = STATE(176), + [sym__inline_for_each_statement] = STATE(6989), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(176), + [sym__inline_do_statement] = STATE(6990), + [sym_while_statement] = STATE(176), + [sym_with_statement] = STATE(176), + [sym__inline_with_statement] = STATE(6991), + [sym_exit_statement] = STATE(176), + [sym_on_goto_statement] = STATE(176), + [sym_on_error_statement] = STATE(176), + [sym_resume_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym_label_statement] = STATE(176), + [sym_line_number_prefix] = STATE(11513), + [sym_line_number_statement] = STATE(176), + [sym_redim_statement] = STATE(176), + [sym_erase_statement] = STATE(176), + [sym_open_statement] = STATE(176), + [sym_input_statement] = STATE(176), + [sym_line_input_statement] = STATE(176), + [sym_print_statement] = STATE(176), + [sym_write_statement] = STATE(176), + [sym_debug_print_statement] = STATE(176), + [sym_close_statement] = STATE(176), + [sym_get_statement] = STATE(176), + [sym_put_statement] = STATE(176), + [sym_lock_statement] = STATE(176), + [sym_unlock_statement] = STATE(176), + [sym_seek_statement] = STATE(176), + [sym_raise_event_statement] = STATE(176), + [sym_name_statement] = STATE(176), + [sym_load_statement] = STATE(176), + [sym_unload_statement] = STATE(176), + [sym_def_type_statement] = STATE(176), + [sym_set_statement] = STATE(176), + [sym_assignment_statement] = STATE(176), + [sym_call_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(2389), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2393), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2403), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3314), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2405), + [aux_sym_preprocessor_const_token1] = ACTIONS(2407), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(2427), + [aux_sym_else_fragment_token1] = ACTIONS(2429), + [aux_sym_select_statement_token1] = ACTIONS(2431), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3280), + [aux_sym_on_goto_statement_token1] = ACTIONS(2441), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3282), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3282), + [sym_beep_statement] = ACTIONS(3282), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_def_type_statement_token1] = ACTIONS(2481), + [aux_sym_def_type_statement_token2] = ACTIONS(2481), + [aux_sym_def_type_statement_token3] = ACTIONS(2481), + [aux_sym_def_type_statement_token4] = ACTIONS(2481), + [aux_sym_def_type_statement_token5] = ACTIONS(2481), + [aux_sym_def_type_statement_token6] = ACTIONS(2481), + [aux_sym_def_type_statement_token7] = ACTIONS(2481), + [aux_sym_def_type_statement_token8] = ACTIONS(2481), + [aux_sym_def_type_statement_token9] = ACTIONS(2481), + [aux_sym_def_type_statement_token10] = ACTIONS(2481), + [aux_sym_def_type_statement_token11] = ACTIONS(2481), + [aux_sym_def_type_statement_token12] = ACTIONS(2481), + [aux_sym_def_type_statement_token13] = ACTIONS(2481), + [aux_sym_def_type_statement_token14] = ACTIONS(2481), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(191)] = { + [sym_preprocessor_const] = STATE(176), + [sym_preprocessor_if] = STATE(176), + [sym_conditional_branch_body] = STATE(14560), + [sym__statement] = STATE(176), + [sym_variable_declaration] = STATE(176), + [sym_const_declaration] = STATE(176), + [sym_visibility] = STATE(12008), + [sym_if_statement] = STATE(176), + [sym_elseif_fragment] = STATE(176), + [sym_else_fragment] = STATE(176), + [sym_end_if_fragment] = STATE(176), + [sym_single_line_if_statement] = STATE(176), + [sym_select_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym__inline_for_statement] = STATE(6988), + [sym_for_each_statement] = STATE(176), + [sym__inline_for_each_statement] = STATE(6989), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(176), + [sym__inline_do_statement] = STATE(6990), + [sym_while_statement] = STATE(176), + [sym_with_statement] = STATE(176), + [sym__inline_with_statement] = STATE(6991), + [sym_exit_statement] = STATE(176), + [sym_on_goto_statement] = STATE(176), + [sym_on_error_statement] = STATE(176), + [sym_resume_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym_label_statement] = STATE(176), + [sym_line_number_prefix] = STATE(11513), + [sym_line_number_statement] = STATE(176), + [sym_redim_statement] = STATE(176), + [sym_erase_statement] = STATE(176), + [sym_open_statement] = STATE(176), + [sym_input_statement] = STATE(176), + [sym_line_input_statement] = STATE(176), + [sym_print_statement] = STATE(176), + [sym_write_statement] = STATE(176), + [sym_debug_print_statement] = STATE(176), + [sym_close_statement] = STATE(176), + [sym_get_statement] = STATE(176), + [sym_put_statement] = STATE(176), + [sym_lock_statement] = STATE(176), + [sym_unlock_statement] = STATE(176), + [sym_seek_statement] = STATE(176), + [sym_raise_event_statement] = STATE(176), + [sym_name_statement] = STATE(176), + [sym_load_statement] = STATE(176), + [sym_unload_statement] = STATE(176), + [sym_def_type_statement] = STATE(176), + [sym_set_statement] = STATE(176), + [sym_assignment_statement] = STATE(176), + [sym_call_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(2389), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2393), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2403), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3316), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2405), + [aux_sym_preprocessor_const_token1] = ACTIONS(2407), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(2427), + [aux_sym_else_fragment_token1] = ACTIONS(2429), + [aux_sym_select_statement_token1] = ACTIONS(2431), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3280), + [aux_sym_on_goto_statement_token1] = ACTIONS(2441), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3282), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3282), + [sym_beep_statement] = ACTIONS(3282), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_def_type_statement_token1] = ACTIONS(2481), + [aux_sym_def_type_statement_token2] = ACTIONS(2481), + [aux_sym_def_type_statement_token3] = ACTIONS(2481), + [aux_sym_def_type_statement_token4] = ACTIONS(2481), + [aux_sym_def_type_statement_token5] = ACTIONS(2481), + [aux_sym_def_type_statement_token6] = ACTIONS(2481), + [aux_sym_def_type_statement_token7] = ACTIONS(2481), + [aux_sym_def_type_statement_token8] = ACTIONS(2481), + [aux_sym_def_type_statement_token9] = ACTIONS(2481), + [aux_sym_def_type_statement_token10] = ACTIONS(2481), + [aux_sym_def_type_statement_token11] = ACTIONS(2481), + [aux_sym_def_type_statement_token12] = ACTIONS(2481), + [aux_sym_def_type_statement_token13] = ACTIONS(2481), + [aux_sym_def_type_statement_token14] = ACTIONS(2481), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(192)] = { + [sym_preprocessor_const] = STATE(176), + [sym_preprocessor_if] = STATE(176), + [sym_conditional_branch_body] = STATE(14430), + [sym__statement] = STATE(176), + [sym_variable_declaration] = STATE(176), + [sym_const_declaration] = STATE(176), + [sym_visibility] = STATE(12008), + [sym_if_statement] = STATE(176), + [sym_elseif_fragment] = STATE(176), + [sym_else_fragment] = STATE(176), + [sym_end_if_fragment] = STATE(176), + [sym_single_line_if_statement] = STATE(176), + [sym_select_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym__inline_for_statement] = STATE(6988), + [sym_for_each_statement] = STATE(176), + [sym__inline_for_each_statement] = STATE(6989), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(176), + [sym__inline_do_statement] = STATE(6990), + [sym_while_statement] = STATE(176), + [sym_with_statement] = STATE(176), + [sym__inline_with_statement] = STATE(6991), + [sym_exit_statement] = STATE(176), + [sym_on_goto_statement] = STATE(176), + [sym_on_error_statement] = STATE(176), + [sym_resume_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym_label_statement] = STATE(176), + [sym_line_number_prefix] = STATE(11513), + [sym_line_number_statement] = STATE(176), + [sym_redim_statement] = STATE(176), + [sym_erase_statement] = STATE(176), + [sym_open_statement] = STATE(176), + [sym_input_statement] = STATE(176), + [sym_line_input_statement] = STATE(176), + [sym_print_statement] = STATE(176), + [sym_write_statement] = STATE(176), + [sym_debug_print_statement] = STATE(176), + [sym_close_statement] = STATE(176), + [sym_get_statement] = STATE(176), + [sym_put_statement] = STATE(176), + [sym_lock_statement] = STATE(176), + [sym_unlock_statement] = STATE(176), + [sym_seek_statement] = STATE(176), + [sym_raise_event_statement] = STATE(176), + [sym_name_statement] = STATE(176), + [sym_load_statement] = STATE(176), + [sym_unload_statement] = STATE(176), + [sym_def_type_statement] = STATE(176), + [sym_set_statement] = STATE(176), + [sym_assignment_statement] = STATE(176), + [sym_call_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(2389), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2393), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2403), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3318), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2405), + [aux_sym_preprocessor_const_token1] = ACTIONS(2407), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(2427), + [aux_sym_else_fragment_token1] = ACTIONS(2429), + [aux_sym_select_statement_token1] = ACTIONS(2431), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3280), + [aux_sym_on_goto_statement_token1] = ACTIONS(2441), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3282), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3282), + [sym_beep_statement] = ACTIONS(3282), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_def_type_statement_token1] = ACTIONS(2481), + [aux_sym_def_type_statement_token2] = ACTIONS(2481), + [aux_sym_def_type_statement_token3] = ACTIONS(2481), + [aux_sym_def_type_statement_token4] = ACTIONS(2481), + [aux_sym_def_type_statement_token5] = ACTIONS(2481), + [aux_sym_def_type_statement_token6] = ACTIONS(2481), + [aux_sym_def_type_statement_token7] = ACTIONS(2481), + [aux_sym_def_type_statement_token8] = ACTIONS(2481), + [aux_sym_def_type_statement_token9] = ACTIONS(2481), + [aux_sym_def_type_statement_token10] = ACTIONS(2481), + [aux_sym_def_type_statement_token11] = ACTIONS(2481), + [aux_sym_def_type_statement_token12] = ACTIONS(2481), + [aux_sym_def_type_statement_token13] = ACTIONS(2481), + [aux_sym_def_type_statement_token14] = ACTIONS(2481), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(193)] = { + [sym_preprocessor_const] = STATE(176), + [sym_preprocessor_if] = STATE(176), + [sym_conditional_branch_body] = STATE(14482), + [sym__statement] = STATE(176), + [sym_variable_declaration] = STATE(176), + [sym_const_declaration] = STATE(176), + [sym_visibility] = STATE(12008), + [sym_if_statement] = STATE(176), + [sym_elseif_fragment] = STATE(176), + [sym_else_fragment] = STATE(176), + [sym_end_if_fragment] = STATE(176), + [sym_single_line_if_statement] = STATE(176), + [sym_select_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym__inline_for_statement] = STATE(6988), + [sym_for_each_statement] = STATE(176), + [sym__inline_for_each_statement] = STATE(6989), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(176), + [sym__inline_do_statement] = STATE(6990), + [sym_while_statement] = STATE(176), + [sym_with_statement] = STATE(176), + [sym__inline_with_statement] = STATE(6991), + [sym_exit_statement] = STATE(176), + [sym_on_goto_statement] = STATE(176), + [sym_on_error_statement] = STATE(176), + [sym_resume_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym_label_statement] = STATE(176), + [sym_line_number_prefix] = STATE(11513), + [sym_line_number_statement] = STATE(176), + [sym_redim_statement] = STATE(176), + [sym_erase_statement] = STATE(176), + [sym_open_statement] = STATE(176), + [sym_input_statement] = STATE(176), + [sym_line_input_statement] = STATE(176), + [sym_print_statement] = STATE(176), + [sym_write_statement] = STATE(176), + [sym_debug_print_statement] = STATE(176), + [sym_close_statement] = STATE(176), + [sym_get_statement] = STATE(176), + [sym_put_statement] = STATE(176), + [sym_lock_statement] = STATE(176), + [sym_unlock_statement] = STATE(176), + [sym_seek_statement] = STATE(176), + [sym_raise_event_statement] = STATE(176), + [sym_name_statement] = STATE(176), + [sym_load_statement] = STATE(176), + [sym_unload_statement] = STATE(176), + [sym_def_type_statement] = STATE(176), + [sym_set_statement] = STATE(176), + [sym_assignment_statement] = STATE(176), + [sym_call_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(2389), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2393), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2403), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2405), + [aux_sym_preprocessor_const_token1] = ACTIONS(2407), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(2427), + [aux_sym_else_fragment_token1] = ACTIONS(2429), + [aux_sym_select_statement_token1] = ACTIONS(2431), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3280), + [aux_sym_on_goto_statement_token1] = ACTIONS(2441), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3282), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3282), + [sym_beep_statement] = ACTIONS(3282), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_def_type_statement_token1] = ACTIONS(2481), + [aux_sym_def_type_statement_token2] = ACTIONS(2481), + [aux_sym_def_type_statement_token3] = ACTIONS(2481), + [aux_sym_def_type_statement_token4] = ACTIONS(2481), + [aux_sym_def_type_statement_token5] = ACTIONS(2481), + [aux_sym_def_type_statement_token6] = ACTIONS(2481), + [aux_sym_def_type_statement_token7] = ACTIONS(2481), + [aux_sym_def_type_statement_token8] = ACTIONS(2481), + [aux_sym_def_type_statement_token9] = ACTIONS(2481), + [aux_sym_def_type_statement_token10] = ACTIONS(2481), + [aux_sym_def_type_statement_token11] = ACTIONS(2481), + [aux_sym_def_type_statement_token12] = ACTIONS(2481), + [aux_sym_def_type_statement_token13] = ACTIONS(2481), + [aux_sym_def_type_statement_token14] = ACTIONS(2481), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(194)] = { + [sym_preprocessor_const] = STATE(176), + [sym_preprocessor_if] = STATE(176), + [sym_conditional_branch_body] = STATE(14674), + [sym__statement] = STATE(176), + [sym_variable_declaration] = STATE(176), + [sym_const_declaration] = STATE(176), + [sym_visibility] = STATE(12008), + [sym_if_statement] = STATE(176), + [sym_elseif_fragment] = STATE(176), + [sym_else_fragment] = STATE(176), + [sym_end_if_fragment] = STATE(176), + [sym_single_line_if_statement] = STATE(176), + [sym_select_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym__inline_for_statement] = STATE(6988), + [sym_for_each_statement] = STATE(176), + [sym__inline_for_each_statement] = STATE(6989), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(176), + [sym__inline_do_statement] = STATE(6990), + [sym_while_statement] = STATE(176), + [sym_with_statement] = STATE(176), + [sym__inline_with_statement] = STATE(6991), + [sym_exit_statement] = STATE(176), + [sym_on_goto_statement] = STATE(176), + [sym_on_error_statement] = STATE(176), + [sym_resume_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym_label_statement] = STATE(176), + [sym_line_number_prefix] = STATE(11513), + [sym_line_number_statement] = STATE(176), + [sym_redim_statement] = STATE(176), + [sym_erase_statement] = STATE(176), + [sym_open_statement] = STATE(176), + [sym_input_statement] = STATE(176), + [sym_line_input_statement] = STATE(176), + [sym_print_statement] = STATE(176), + [sym_write_statement] = STATE(176), + [sym_debug_print_statement] = STATE(176), + [sym_close_statement] = STATE(176), + [sym_get_statement] = STATE(176), + [sym_put_statement] = STATE(176), + [sym_lock_statement] = STATE(176), + [sym_unlock_statement] = STATE(176), + [sym_seek_statement] = STATE(176), + [sym_raise_event_statement] = STATE(176), + [sym_name_statement] = STATE(176), + [sym_load_statement] = STATE(176), + [sym_unload_statement] = STATE(176), + [sym_def_type_statement] = STATE(176), + [sym_set_statement] = STATE(176), + [sym_assignment_statement] = STATE(176), + [sym_call_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(2389), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2393), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2403), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3322), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2405), + [aux_sym_preprocessor_const_token1] = ACTIONS(2407), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(2427), + [aux_sym_else_fragment_token1] = ACTIONS(2429), + [aux_sym_select_statement_token1] = ACTIONS(2431), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3280), + [aux_sym_on_goto_statement_token1] = ACTIONS(2441), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3282), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3282), + [sym_beep_statement] = ACTIONS(3282), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_def_type_statement_token1] = ACTIONS(2481), + [aux_sym_def_type_statement_token2] = ACTIONS(2481), + [aux_sym_def_type_statement_token3] = ACTIONS(2481), + [aux_sym_def_type_statement_token4] = ACTIONS(2481), + [aux_sym_def_type_statement_token5] = ACTIONS(2481), + [aux_sym_def_type_statement_token6] = ACTIONS(2481), + [aux_sym_def_type_statement_token7] = ACTIONS(2481), + [aux_sym_def_type_statement_token8] = ACTIONS(2481), + [aux_sym_def_type_statement_token9] = ACTIONS(2481), + [aux_sym_def_type_statement_token10] = ACTIONS(2481), + [aux_sym_def_type_statement_token11] = ACTIONS(2481), + [aux_sym_def_type_statement_token12] = ACTIONS(2481), + [aux_sym_def_type_statement_token13] = ACTIONS(2481), + [aux_sym_def_type_statement_token14] = ACTIONS(2481), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(195)] = { + [sym_preprocessor_const] = STATE(176), + [sym_preprocessor_if] = STATE(176), + [sym_conditional_branch_body] = STATE(14720), + [sym__statement] = STATE(176), + [sym_variable_declaration] = STATE(176), + [sym_const_declaration] = STATE(176), + [sym_visibility] = STATE(12008), + [sym_if_statement] = STATE(176), + [sym_elseif_fragment] = STATE(176), + [sym_else_fragment] = STATE(176), + [sym_end_if_fragment] = STATE(176), + [sym_single_line_if_statement] = STATE(176), + [sym_select_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym__inline_for_statement] = STATE(6988), + [sym_for_each_statement] = STATE(176), + [sym__inline_for_each_statement] = STATE(6989), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(176), + [sym__inline_do_statement] = STATE(6990), + [sym_while_statement] = STATE(176), + [sym_with_statement] = STATE(176), + [sym__inline_with_statement] = STATE(6991), + [sym_exit_statement] = STATE(176), + [sym_on_goto_statement] = STATE(176), + [sym_on_error_statement] = STATE(176), + [sym_resume_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym_label_statement] = STATE(176), + [sym_line_number_prefix] = STATE(11513), + [sym_line_number_statement] = STATE(176), + [sym_redim_statement] = STATE(176), + [sym_erase_statement] = STATE(176), + [sym_open_statement] = STATE(176), + [sym_input_statement] = STATE(176), + [sym_line_input_statement] = STATE(176), + [sym_print_statement] = STATE(176), + [sym_write_statement] = STATE(176), + [sym_debug_print_statement] = STATE(176), + [sym_close_statement] = STATE(176), + [sym_get_statement] = STATE(176), + [sym_put_statement] = STATE(176), + [sym_lock_statement] = STATE(176), + [sym_unlock_statement] = STATE(176), + [sym_seek_statement] = STATE(176), + [sym_raise_event_statement] = STATE(176), + [sym_name_statement] = STATE(176), + [sym_load_statement] = STATE(176), + [sym_unload_statement] = STATE(176), + [sym_def_type_statement] = STATE(176), + [sym_set_statement] = STATE(176), + [sym_assignment_statement] = STATE(176), + [sym_call_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(2389), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(2393), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(2403), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3324), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(2405), + [aux_sym_preprocessor_const_token1] = ACTIONS(2407), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(2427), + [aux_sym_else_fragment_token1] = ACTIONS(2429), + [aux_sym_select_statement_token1] = ACTIONS(2431), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3280), + [aux_sym_on_goto_statement_token1] = ACTIONS(2441), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3282), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3282), + [sym_beep_statement] = ACTIONS(3282), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_def_type_statement_token1] = ACTIONS(2481), + [aux_sym_def_type_statement_token2] = ACTIONS(2481), + [aux_sym_def_type_statement_token3] = ACTIONS(2481), + [aux_sym_def_type_statement_token4] = ACTIONS(2481), + [aux_sym_def_type_statement_token5] = ACTIONS(2481), + [aux_sym_def_type_statement_token6] = ACTIONS(2481), + [aux_sym_def_type_statement_token7] = ACTIONS(2481), + [aux_sym_def_type_statement_token8] = ACTIONS(2481), + [aux_sym_def_type_statement_token9] = ACTIONS(2481), + [aux_sym_def_type_statement_token10] = ACTIONS(2481), + [aux_sym_def_type_statement_token11] = ACTIONS(2481), + [aux_sym_def_type_statement_token12] = ACTIONS(2481), + [aux_sym_def_type_statement_token13] = ACTIONS(2481), + [aux_sym_def_type_statement_token14] = ACTIONS(2481), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(196)] = { + [sym_variable_declaration] = STATE(4263), + [sym_const_declaration] = STATE(4263), + [sym_visibility] = STATE(11839), + [sym_single_line_if_statement] = STATE(4263), + [sym_inline_statement_sequence] = STATE(4371), + [sym__inline_statement] = STATE(4263), + [sym_for_statement] = STATE(4263), + [sym__inline_for_statement] = STATE(4347), + [sym_for_each_statement] = STATE(4263), + [sym__inline_for_each_statement] = STATE(4348), + [sym__for_header] = STATE(11370), + [sym__for_each_header] = STATE(11371), + [sym_do_statement] = STATE(4263), + [sym__inline_do_statement] = STATE(4349), + [sym_while_statement] = STATE(4263), + [sym_with_statement] = STATE(4263), + [sym__inline_with_statement] = STATE(4350), + [sym_exit_statement] = STATE(4263), + [sym_on_error_statement] = STATE(4263), + [sym_resume_statement] = STATE(4263), + [sym_goto_statement] = STATE(4263), + [sym_line_number_prefix] = STATE(12390), + [sym_redim_statement] = STATE(4263), + [sym_erase_statement] = STATE(4263), + [sym_open_statement] = STATE(4263), + [sym_input_statement] = STATE(4263), + [sym_line_input_statement] = STATE(4263), + [sym_print_statement] = STATE(4263), + [sym_write_statement] = STATE(4263), + [sym_debug_print_statement] = STATE(4263), + [sym_close_statement] = STATE(4263), + [sym_get_statement] = STATE(4263), + [sym_put_statement] = STATE(4263), + [sym_lock_statement] = STATE(4263), + [sym_unlock_statement] = STATE(4263), + [sym_seek_statement] = STATE(4263), + [sym_raise_event_statement] = STATE(4263), + [sym_name_statement] = STATE(4263), + [sym_load_statement] = STATE(4263), + [sym_unload_statement] = STATE(4263), + [sym_set_statement] = STATE(4263), + [sym_assignment_statement] = STATE(4263), + [sym_call_statement] = STATE(4263), + [sym_expression_statement] = STATE(4263), + [sym__primary_expression] = STATE(2177), + [sym__expression] = STATE(2177), + [sym__assignable_expression] = STATE(14337), + [sym__callable_expression] = STATE(360), + [sym__print_method_callee] = STATE(363), + [sym__print_method_call_expression] = STATE(4521), + [sym__qualified_print_method_expression] = STATE(4522), + [sym__implicit_print_method_expression] = STATE(4523), + [sym__line_method_expression] = STATE(12218), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2177), + [sym_addressof_expression] = STATE(2177), + [sym_type_of_expression] = STATE(2177), + [sym_member_expression] = STATE(1381), + [sym_qualified_member_expression] = STATE(912), + [sym_implicit_member_expression] = STATE(912), + [sym_parenthesized_expression] = STATE(2177), + [sym_binary_expression] = STATE(2177), + [sym_unary_expression] = STATE(2177), + [sym__signed_unary_expression] = STATE(1199), + [sym__literal] = STATE(2177), + [sym_boolean_literal] = STATE(2177), + [sym_file_number_literal] = STATE(2177), + [sym_identifier] = ACTIONS(3326), + [sym_newline] = ACTIONS(3292), + [anon_sym_COLON] = ACTIONS(3328), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3296), + [aux_sym_frm_property_statement_token1] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [aux_sym__attribute_identifier_token1] = ACTIONS(431), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_declaration_token1] = ACTIONS(3296), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3296), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3296), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3330), + [aux_sym_enum_declaration_token1] = ACTIONS(3296), + [aux_sym_declare_sub_statement_token1] = ACTIONS(3296), + [aux_sym_declare_sub_statement_token2] = ACTIONS(3296), + [aux_sym_declare_function_statement_token1] = ACTIONS(3296), + [aux_sym_preprocessor_const_token1] = ACTIONS(3296), + [aux_sym__property_get_header_token1] = ACTIONS(3296), + [aux_sym_event_declaration_token1] = ACTIONS(3296), + [sym_static_modifier] = ACTIONS(3332), + [sym__dim_keyword] = ACTIONS(451), + [sym__redim_keyword] = ACTIONS(453), + [aux_sym_get_accessor_token1] = ACTIONS(455), + [aux_sym_set_accessor_token1] = ACTIONS(457), + [aux_sym_const_declaration_token1] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [aux_sym_as_type_clause_token2] = ACTIONS(463), + [aux_sym_dotted_type_expression_token1] = ACTIONS(465), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3296), + [aux_sym_else_fragment_token1] = ACTIONS(3296), + [aux_sym_select_statement_token1] = ACTIONS(3296), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(473), + [aux_sym_do_condition_token1] = ACTIONS(475), + [aux_sym_with_statement_token1] = ACTIONS(477), + [aux_sym_exit_statement_token1] = ACTIONS(479), + [sym_end_statement] = ACTIONS(3334), + [aux_sym_on_goto_statement_token1] = ACTIONS(3336), + [aux_sym_on_goto_statement_token2] = ACTIONS(483), + [aux_sym_on_error_statement_token2] = ACTIONS(485), + [sym__ambiguous_redim_statement] = ACTIONS(487), + [aux_sym_erase_statement_token1] = ACTIONS(489), + [aux_sym_open_statement_token1] = ACTIONS(491), + [aux_sym_file_mode_token2] = ACTIONS(493), + [aux_sym_file_access_token2] = ACTIONS(495), + [aux_sym_file_lock_token2] = ACTIONS(497), + [aux_sym_print_statement_token1] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_QMARK] = ACTIONS(505), + [aux_sym_close_statement_token1] = ACTIONS(507), + [aux_sym_put_statement_token1] = ACTIONS(509), + [aux_sym_unlock_statement_token1] = ACTIONS(511), + [aux_sym_seek_statement_token1] = ACTIONS(513), + [sym_reset_statement] = ACTIONS(3338), + [aux_sym_raise_event_statement_token1] = ACTIONS(517), + [sym_stop_statement] = ACTIONS(3338), + [sym_beep_statement] = ACTIONS(3338), + [aux_sym_unload_statement_token1] = ACTIONS(519), + [aux_sym_def_type_statement_token1] = ACTIONS(3296), + [aux_sym_def_type_statement_token2] = ACTIONS(3296), + [aux_sym_def_type_statement_token3] = ACTIONS(3296), + [aux_sym_def_type_statement_token4] = ACTIONS(3296), + [aux_sym_def_type_statement_token5] = ACTIONS(3296), + [aux_sym_def_type_statement_token6] = ACTIONS(3296), + [aux_sym_def_type_statement_token7] = ACTIONS(3296), + [aux_sym_def_type_statement_token8] = ACTIONS(3296), + [aux_sym_def_type_statement_token9] = ACTIONS(3296), + [aux_sym_def_type_statement_token10] = ACTIONS(3296), + [aux_sym_def_type_statement_token11] = ACTIONS(3296), + [aux_sym_def_type_statement_token12] = ACTIONS(3296), + [aux_sym_def_type_statement_token13] = ACTIONS(3296), + [aux_sym_def_type_statement_token14] = ACTIONS(3296), + [aux_sym_call_statement_token1] = ACTIONS(523), + [sym__ambiguous_call_statement] = ACTIONS(525), + [aux_sym_addressof_expression_token1] = ACTIONS(527), + [aux_sym_type_of_expression_token1] = ACTIONS(529), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(533), + [sym_number_literal] = ACTIONS(3340), + [aux_sym_boolean_literal_token1] = ACTIONS(537), + [aux_sym_boolean_literal_token2] = ACTIONS(537), + [sym_nothing_literal] = ACTIONS(539), + [sym_null_literal] = ACTIONS(539), + [sym_empty_literal] = ACTIONS(539), + [sym_date_literal] = ACTIONS(533), + [anon_sym_POUND] = ACTIONS(541), + }, + [STATE(197)] = { + [sym_variable_declaration] = STATE(4959), + [sym_const_declaration] = STATE(4959), + [sym_visibility] = STATE(11799), + [sym_single_line_if_statement] = STATE(4959), + [sym_inline_statement_sequence] = STATE(5591), + [sym__inline_statement] = STATE(4959), + [sym_for_statement] = STATE(4959), + [sym__inline_for_statement] = STATE(5568), + [sym_for_each_statement] = STATE(4959), + [sym__inline_for_each_statement] = STATE(5569), + [sym__for_header] = STATE(11307), + [sym__for_each_header] = STATE(11308), + [sym_do_statement] = STATE(4959), + [sym__inline_do_statement] = STATE(5570), + [sym_while_statement] = STATE(4959), + [sym_with_statement] = STATE(4959), + [sym__inline_with_statement] = STATE(5571), + [sym_exit_statement] = STATE(4959), + [sym_on_error_statement] = STATE(4959), + [sym_resume_statement] = STATE(4959), + [sym_goto_statement] = STATE(4959), + [sym_line_number_prefix] = STATE(12393), + [sym_redim_statement] = STATE(4959), + [sym_erase_statement] = STATE(4959), + [sym_open_statement] = STATE(4959), + [sym_input_statement] = STATE(4959), + [sym_line_input_statement] = STATE(4959), + [sym_print_statement] = STATE(4959), + [sym_write_statement] = STATE(4959), + [sym_debug_print_statement] = STATE(4959), + [sym_close_statement] = STATE(4959), + [sym_get_statement] = STATE(4959), + [sym_put_statement] = STATE(4959), + [sym_lock_statement] = STATE(4959), + [sym_unlock_statement] = STATE(4959), + [sym_seek_statement] = STATE(4959), + [sym_raise_event_statement] = STATE(4959), + [sym_name_statement] = STATE(4959), + [sym_load_statement] = STATE(4959), + [sym_unload_statement] = STATE(4959), + [sym_set_statement] = STATE(4959), + [sym_assignment_statement] = STATE(4959), + [sym_call_statement] = STATE(4959), + [sym_expression_statement] = STATE(4959), + [sym__primary_expression] = STATE(2614), + [sym__expression] = STATE(2614), + [sym__assignable_expression] = STATE(14425), + [sym__callable_expression] = STATE(378), + [sym__print_method_callee] = STATE(393), + [sym__print_method_call_expression] = STATE(5499), + [sym__qualified_print_method_expression] = STATE(5500), + [sym__implicit_print_method_expression] = STATE(5501), + [sym__line_method_expression] = STATE(12228), + [sym_call_expression] = STATE(2293), + [sym_new_expression] = STATE(2614), + [sym_addressof_expression] = STATE(2614), + [sym_type_of_expression] = STATE(2614), + [sym_member_expression] = STATE(2211), + [sym_qualified_member_expression] = STATE(2182), + [sym_implicit_member_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2614), + [sym_binary_expression] = STATE(2614), + [sym_unary_expression] = STATE(2614), + [sym__signed_unary_expression] = STATE(2203), + [sym__literal] = STATE(2614), + [sym_boolean_literal] = STATE(2614), + [sym_file_number_literal] = STATE(2614), + [sym_identifier] = ACTIONS(3342), + [sym_newline] = ACTIONS(3292), + [anon_sym_COLON] = ACTIONS(3344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3296), + [aux_sym_frm_property_statement_token1] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [aux_sym__attribute_identifier_token1] = ACTIONS(1069), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3296), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3296), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3346), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(3296), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(3296), + [aux_sym_preprocessor_const_token1] = ACTIONS(3296), + [sym_static_modifier] = ACTIONS(1079), + [sym__dim_keyword] = ACTIONS(1081), + [sym__redim_keyword] = ACTIONS(1083), + [aux_sym_get_accessor_token1] = ACTIONS(1085), + [aux_sym_set_accessor_token1] = ACTIONS(1087), + [aux_sym_const_declaration_token1] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_as_type_clause_token2] = ACTIONS(1093), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1095), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3296), + [aux_sym_else_fragment_token1] = ACTIONS(3296), + [aux_sym_select_statement_token1] = ACTIONS(3296), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1103), + [aux_sym_do_condition_token1] = ACTIONS(1105), + [aux_sym_with_statement_token1] = ACTIONS(1107), + [aux_sym_exit_statement_token1] = ACTIONS(1109), + [sym_end_statement] = ACTIONS(3348), + [aux_sym_on_goto_statement_token1] = ACTIONS(3350), + [aux_sym_on_goto_statement_token2] = ACTIONS(1113), + [aux_sym_on_error_statement_token2] = ACTIONS(1115), + [sym__ambiguous_redim_statement] = ACTIONS(1117), + [aux_sym_erase_statement_token1] = ACTIONS(1119), + [aux_sym_open_statement_token1] = ACTIONS(1121), + [aux_sym_file_mode_token2] = ACTIONS(1123), + [aux_sym_file_access_token2] = ACTIONS(1125), + [aux_sym_file_lock_token2] = ACTIONS(1127), + [aux_sym_print_statement_token1] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [aux_sym_close_statement_token1] = ACTIONS(1137), + [aux_sym_put_statement_token1] = ACTIONS(1139), + [aux_sym_unlock_statement_token1] = ACTIONS(1141), + [aux_sym_seek_statement_token1] = ACTIONS(1143), + [sym_reset_statement] = ACTIONS(3352), + [aux_sym_raise_event_statement_token1] = ACTIONS(1147), + [sym_stop_statement] = ACTIONS(3352), + [sym_beep_statement] = ACTIONS(3352), + [aux_sym_unload_statement_token1] = ACTIONS(1149), + [aux_sym_def_type_statement_token1] = ACTIONS(3296), + [aux_sym_def_type_statement_token2] = ACTIONS(3296), + [aux_sym_def_type_statement_token3] = ACTIONS(3296), + [aux_sym_def_type_statement_token4] = ACTIONS(3296), + [aux_sym_def_type_statement_token5] = ACTIONS(3296), + [aux_sym_def_type_statement_token6] = ACTIONS(3296), + [aux_sym_def_type_statement_token7] = ACTIONS(3296), + [aux_sym_def_type_statement_token8] = ACTIONS(3296), + [aux_sym_def_type_statement_token9] = ACTIONS(3296), + [aux_sym_def_type_statement_token10] = ACTIONS(3296), + [aux_sym_def_type_statement_token11] = ACTIONS(3296), + [aux_sym_def_type_statement_token12] = ACTIONS(3296), + [aux_sym_def_type_statement_token13] = ACTIONS(3296), + [aux_sym_def_type_statement_token14] = ACTIONS(3296), + [aux_sym_call_statement_token1] = ACTIONS(1153), + [sym__ambiguous_call_statement] = ACTIONS(1155), + [aux_sym_addressof_expression_token1] = ACTIONS(1157), + [aux_sym_type_of_expression_token1] = ACTIONS(1159), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(3354), + [aux_sym_boolean_literal_token1] = ACTIONS(1167), + [aux_sym_boolean_literal_token2] = ACTIONS(1167), + [sym_nothing_literal] = ACTIONS(1169), + [sym_null_literal] = ACTIONS(1169), + [sym_empty_literal] = ACTIONS(1169), + [sym_date_literal] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(1171), + }, + [STATE(198)] = { + [sym_variable_declaration] = STATE(3917), + [sym_const_declaration] = STATE(3917), + [sym_visibility] = STATE(11841), + [sym_single_line_if_statement] = STATE(3917), + [sym_exit_statement] = STATE(3917), + [sym_on_error_statement] = STATE(3917), + [sym_resume_statement] = STATE(3917), + [sym_goto_statement] = STATE(3917), + [sym__numbered_statement] = STATE(3917), + [sym_redim_statement] = STATE(3917), + [sym_debug_print_statement] = STATE(3917), + [sym_get_statement] = STATE(3917), + [sym_put_statement] = STATE(3917), + [sym_lock_statement] = STATE(3917), + [sym_unlock_statement] = STATE(3917), + [sym_seek_statement] = STATE(3917), + [sym_raise_event_statement] = STATE(3917), + [sym_name_statement] = STATE(3917), + [sym_load_statement] = STATE(3917), + [sym_unload_statement] = STATE(3917), + [sym_def_type_statement] = STATE(3917), + [sym_set_statement] = STATE(3917), + [sym_assignment_statement] = STATE(3917), + [sym_call_statement] = STATE(3917), + [sym_expression_statement] = STATE(3917), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [sym_identifier] = ACTIONS(3290), + [sym_newline] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3358), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3360), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_declaration_token1] = ACTIONS(3362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3360), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(3362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(3362), + [aux_sym_enum_declaration_token1] = ACTIONS(3362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(3362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(3362), + [aux_sym_declare_function_statement_token1] = ACTIONS(3362), + [aux_sym_preprocessor_const_token1] = ACTIONS(3362), + [aux_sym__property_get_header_token1] = ACTIONS(3362), + [aux_sym_event_declaration_token1] = ACTIONS(3362), + [sym_static_modifier] = ACTIONS(3300), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3366), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3360), + [aux_sym_else_fragment_token1] = ACTIONS(3360), + [aux_sym_select_statement_token1] = ACTIONS(3360), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(3356), + [aux_sym_on_goto_statement_token1] = ACTIONS(3304), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(3362), + [aux_sym_open_statement_token1] = ACTIONS(3362), + [aux_sym_file_mode_token2] = ACTIONS(3362), + [aux_sym_file_access_token2] = ACTIONS(3362), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(3368), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(3362), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(3372), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(3372), + [sym_beep_statement] = ACTIONS(3372), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_def_type_statement_token1] = ACTIONS(169), + [aux_sym_def_type_statement_token2] = ACTIONS(169), + [aux_sym_def_type_statement_token3] = ACTIONS(169), + [aux_sym_def_type_statement_token4] = ACTIONS(169), + [aux_sym_def_type_statement_token5] = ACTIONS(169), + [aux_sym_def_type_statement_token6] = ACTIONS(169), + [aux_sym_def_type_statement_token7] = ACTIONS(169), + [aux_sym_def_type_statement_token8] = ACTIONS(169), + [aux_sym_def_type_statement_token9] = ACTIONS(169), + [aux_sym_def_type_statement_token10] = ACTIONS(169), + [aux_sym_def_type_statement_token11] = ACTIONS(169), + [aux_sym_def_type_statement_token12] = ACTIONS(169), + [aux_sym_def_type_statement_token13] = ACTIONS(169), + [aux_sym_def_type_statement_token14] = ACTIONS(169), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(181), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(199)] = { + [sym_variable_declaration] = STATE(6125), + [sym_const_declaration] = STATE(6125), + [sym_visibility] = STATE(11858), + [sym_single_line_if_statement] = STATE(6125), + [sym_inline_statement_sequence] = STATE(6305), + [sym__inline_statement] = STATE(6125), + [sym_for_statement] = STATE(6125), + [sym__inline_for_statement] = STATE(6929), + [sym_for_each_statement] = STATE(6125), + [sym__inline_for_each_statement] = STATE(6933), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(6125), + [sym__inline_do_statement] = STATE(6935), + [sym_while_statement] = STATE(6125), + [sym_with_statement] = STATE(6125), + [sym__inline_with_statement] = STATE(6938), + [sym_exit_statement] = STATE(6125), + [sym_on_error_statement] = STATE(6125), + [sym_resume_statement] = STATE(6125), + [sym_goto_statement] = STATE(6125), + [sym_line_number_prefix] = STATE(12383), + [sym_redim_statement] = STATE(6125), + [sym_erase_statement] = STATE(6125), + [sym_open_statement] = STATE(6125), + [sym_input_statement] = STATE(6125), + [sym_line_input_statement] = STATE(6125), + [sym_print_statement] = STATE(6125), + [sym_write_statement] = STATE(6125), + [sym_debug_print_statement] = STATE(6125), + [sym_close_statement] = STATE(6125), + [sym_get_statement] = STATE(6125), + [sym_put_statement] = STATE(6125), + [sym_lock_statement] = STATE(6125), + [sym_unlock_statement] = STATE(6125), + [sym_seek_statement] = STATE(6125), + [sym_raise_event_statement] = STATE(6125), + [sym_name_statement] = STATE(6125), + [sym_load_statement] = STATE(6125), + [sym_unload_statement] = STATE(6125), + [sym_set_statement] = STATE(6125), + [sym_assignment_statement] = STATE(6125), + [sym_call_statement] = STATE(6125), + [sym_expression_statement] = STATE(6125), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [sym_identifier] = ACTIONS(3374), + [sym_newline] = ACTIONS(3292), + [anon_sym_COLON] = ACTIONS(3376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3296), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3296), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3378), + [aux_sym_preprocessor_const_token1] = ACTIONS(3296), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3296), + [aux_sym_else_fragment_token1] = ACTIONS(3296), + [aux_sym_select_statement_token1] = ACTIONS(3296), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_statement_token2] = ACTIONS(3296), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(3380), + [aux_sym_on_goto_statement_token1] = ACTIONS(3382), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(3384), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(3384), + [sym_beep_statement] = ACTIONS(3384), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(3296), + [aux_sym_def_type_statement_token2] = ACTIONS(3296), + [aux_sym_def_type_statement_token3] = ACTIONS(3296), + [aux_sym_def_type_statement_token4] = ACTIONS(3296), + [aux_sym_def_type_statement_token5] = ACTIONS(3296), + [aux_sym_def_type_statement_token6] = ACTIONS(3296), + [aux_sym_def_type_statement_token7] = ACTIONS(3296), + [aux_sym_def_type_statement_token8] = ACTIONS(3296), + [aux_sym_def_type_statement_token9] = ACTIONS(3296), + [aux_sym_def_type_statement_token10] = ACTIONS(3296), + [aux_sym_def_type_statement_token11] = ACTIONS(3296), + [aux_sym_def_type_statement_token12] = ACTIONS(3296), + [aux_sym_def_type_statement_token13] = ACTIONS(3296), + [aux_sym_def_type_statement_token14] = ACTIONS(3296), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(3386), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(200)] = { + [sym_variable_declaration] = STATE(6249), + [sym_const_declaration] = STATE(6249), + [sym_visibility] = STATE(12008), + [sym_single_line_if_statement] = STATE(6249), + [sym_inline_statement_sequence] = STATE(6704), + [sym__inline_statement] = STATE(6249), + [sym_for_statement] = STATE(6249), + [sym__inline_for_statement] = STATE(6530), + [sym_for_each_statement] = STATE(6249), + [sym__inline_for_each_statement] = STATE(6531), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(6249), + [sym__inline_do_statement] = STATE(6542), + [sym_while_statement] = STATE(6249), + [sym_with_statement] = STATE(6249), + [sym__inline_with_statement] = STATE(6543), + [sym_exit_statement] = STATE(6249), + [sym_on_error_statement] = STATE(6249), + [sym_resume_statement] = STATE(6249), + [sym_goto_statement] = STATE(6249), + [sym_line_number_prefix] = STATE(12398), + [sym_redim_statement] = STATE(6249), + [sym_erase_statement] = STATE(6249), + [sym_open_statement] = STATE(6249), + [sym_input_statement] = STATE(6249), + [sym_line_input_statement] = STATE(6249), + [sym_print_statement] = STATE(6249), + [sym_write_statement] = STATE(6249), + [sym_debug_print_statement] = STATE(6249), + [sym_close_statement] = STATE(6249), + [sym_get_statement] = STATE(6249), + [sym_put_statement] = STATE(6249), + [sym_lock_statement] = STATE(6249), + [sym_unlock_statement] = STATE(6249), + [sym_seek_statement] = STATE(6249), + [sym_raise_event_statement] = STATE(6249), + [sym_name_statement] = STATE(6249), + [sym_load_statement] = STATE(6249), + [sym_unload_statement] = STATE(6249), + [sym_set_statement] = STATE(6249), + [sym_assignment_statement] = STATE(6249), + [sym_call_statement] = STATE(6249), + [sym_expression_statement] = STATE(6249), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(3388), + [sym_newline] = ACTIONS(3292), + [anon_sym_COLON] = ACTIONS(3390), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3296), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3296), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3296), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3392), + [aux_sym_preprocessor_const_token1] = ACTIONS(3296), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3296), + [aux_sym_else_fragment_token1] = ACTIONS(3296), + [aux_sym_select_statement_token1] = ACTIONS(3296), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3394), + [aux_sym_on_goto_statement_token1] = ACTIONS(3396), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3398), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3398), + [sym_beep_statement] = ACTIONS(3398), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_def_type_statement_token1] = ACTIONS(3296), + [aux_sym_def_type_statement_token2] = ACTIONS(3296), + [aux_sym_def_type_statement_token3] = ACTIONS(3296), + [aux_sym_def_type_statement_token4] = ACTIONS(3296), + [aux_sym_def_type_statement_token5] = ACTIONS(3296), + [aux_sym_def_type_statement_token6] = ACTIONS(3296), + [aux_sym_def_type_statement_token7] = ACTIONS(3296), + [aux_sym_def_type_statement_token8] = ACTIONS(3296), + [aux_sym_def_type_statement_token9] = ACTIONS(3296), + [aux_sym_def_type_statement_token10] = ACTIONS(3296), + [aux_sym_def_type_statement_token11] = ACTIONS(3296), + [aux_sym_def_type_statement_token12] = ACTIONS(3296), + [aux_sym_def_type_statement_token13] = ACTIONS(3296), + [aux_sym_def_type_statement_token14] = ACTIONS(3296), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(3400), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(201)] = { + [sym_variable_declaration] = STATE(5861), + [sym_const_declaration] = STATE(5861), + [sym_visibility] = STATE(11869), + [sym_single_line_if_statement] = STATE(5861), + [sym_inline_statement_sequence] = STATE(6483), + [sym__inline_statement] = STATE(5861), + [sym_for_statement] = STATE(5861), + [sym__inline_for_statement] = STATE(6443), + [sym_for_each_statement] = STATE(5861), + [sym__inline_for_each_statement] = STATE(6445), + [sym__for_header] = STATE(11298), + [sym__for_each_header] = STATE(11310), + [sym_do_statement] = STATE(5861), + [sym__inline_do_statement] = STATE(6446), + [sym_while_statement] = STATE(5861), + [sym_with_statement] = STATE(5861), + [sym__inline_with_statement] = STATE(6447), + [sym_exit_statement] = STATE(5861), + [sym_on_error_statement] = STATE(5861), + [sym_resume_statement] = STATE(5861), + [sym_goto_statement] = STATE(5861), + [sym_line_number_prefix] = STATE(12386), + [sym_redim_statement] = STATE(5861), + [sym_erase_statement] = STATE(5861), + [sym_open_statement] = STATE(5861), + [sym_input_statement] = STATE(5861), + [sym_line_input_statement] = STATE(5861), + [sym_print_statement] = STATE(5861), + [sym_write_statement] = STATE(5861), + [sym_debug_print_statement] = STATE(5861), + [sym_close_statement] = STATE(5861), + [sym_get_statement] = STATE(5861), + [sym_put_statement] = STATE(5861), + [sym_lock_statement] = STATE(5861), + [sym_unlock_statement] = STATE(5861), + [sym_seek_statement] = STATE(5861), + [sym_raise_event_statement] = STATE(5861), + [sym_name_statement] = STATE(5861), + [sym_load_statement] = STATE(5861), + [sym_unload_statement] = STATE(5861), + [sym_set_statement] = STATE(5861), + [sym_assignment_statement] = STATE(5861), + [sym_call_statement] = STATE(5861), + [sym_expression_statement] = STATE(5861), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [sym_identifier] = ACTIONS(3402), + [sym_newline] = ACTIONS(3292), + [anon_sym_COLON] = ACTIONS(3404), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3296), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3296), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3406), + [aux_sym_preprocessor_const_token1] = ACTIONS(3296), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3296), + [aux_sym_else_fragment_token1] = ACTIONS(3296), + [aux_sym_select_statement_token1] = ACTIONS(3296), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3296), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(3408), + [aux_sym_on_goto_statement_token1] = ACTIONS(3410), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(3412), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(3412), + [sym_beep_statement] = ACTIONS(3412), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(3296), + [aux_sym_def_type_statement_token2] = ACTIONS(3296), + [aux_sym_def_type_statement_token3] = ACTIONS(3296), + [aux_sym_def_type_statement_token4] = ACTIONS(3296), + [aux_sym_def_type_statement_token5] = ACTIONS(3296), + [aux_sym_def_type_statement_token6] = ACTIONS(3296), + [aux_sym_def_type_statement_token7] = ACTIONS(3296), + [aux_sym_def_type_statement_token8] = ACTIONS(3296), + [aux_sym_def_type_statement_token9] = ACTIONS(3296), + [aux_sym_def_type_statement_token10] = ACTIONS(3296), + [aux_sym_def_type_statement_token11] = ACTIONS(3296), + [aux_sym_def_type_statement_token12] = ACTIONS(3296), + [aux_sym_def_type_statement_token13] = ACTIONS(3296), + [aux_sym_def_type_statement_token14] = ACTIONS(3296), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(3414), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(202)] = { + [sym_variable_declaration] = STATE(6113), + [sym_const_declaration] = STATE(6113), + [sym_visibility] = STATE(11928), + [sym_single_line_if_statement] = STATE(6113), + [sym_inline_statement_sequence] = STATE(6546), + [sym__inline_statement] = STATE(6113), + [sym_for_statement] = STATE(6113), + [sym__inline_for_statement] = STATE(7102), + [sym_for_each_statement] = STATE(6113), + [sym__inline_for_each_statement] = STATE(7103), + [sym__for_header] = STATE(11443), + [sym__for_each_header] = STATE(11444), + [sym_do_statement] = STATE(6113), + [sym__inline_do_statement] = STATE(7104), + [sym_while_statement] = STATE(6113), + [sym_with_statement] = STATE(6113), + [sym__inline_with_statement] = STATE(7105), + [sym_exit_statement] = STATE(6113), + [sym_on_error_statement] = STATE(6113), + [sym_resume_statement] = STATE(6113), + [sym_goto_statement] = STATE(6113), + [sym_line_number_prefix] = STATE(12396), + [sym_redim_statement] = STATE(6113), + [sym_erase_statement] = STATE(6113), + [sym_open_statement] = STATE(6113), + [sym_input_statement] = STATE(6113), + [sym_line_input_statement] = STATE(6113), + [sym_print_statement] = STATE(6113), + [sym_write_statement] = STATE(6113), + [sym_debug_print_statement] = STATE(6113), + [sym_close_statement] = STATE(6113), + [sym_get_statement] = STATE(6113), + [sym_put_statement] = STATE(6113), + [sym_lock_statement] = STATE(6113), + [sym_unlock_statement] = STATE(6113), + [sym_seek_statement] = STATE(6113), + [sym_raise_event_statement] = STATE(6113), + [sym_name_statement] = STATE(6113), + [sym_load_statement] = STATE(6113), + [sym_unload_statement] = STATE(6113), + [sym_set_statement] = STATE(6113), + [sym_assignment_statement] = STATE(6113), + [sym_call_statement] = STATE(6113), + [sym_expression_statement] = STATE(6113), + [sym__primary_expression] = STATE(3463), + [sym__expression] = STATE(3463), + [sym__assignable_expression] = STATE(14513), + [sym__callable_expression] = STATE(418), + [sym__print_method_callee] = STATE(501), + [sym__print_method_call_expression] = STATE(6993), + [sym__qualified_print_method_expression] = STATE(6708), + [sym__implicit_print_method_expression] = STATE(6710), + [sym__line_method_expression] = STATE(12255), + [sym_call_expression] = STATE(2892), + [sym_new_expression] = STATE(3463), + [sym_addressof_expression] = STATE(3463), + [sym_type_of_expression] = STATE(3463), + [sym_member_expression] = STATE(2545), + [sym_qualified_member_expression] = STATE(2265), + [sym_implicit_member_expression] = STATE(2265), + [sym_parenthesized_expression] = STATE(3463), + [sym_binary_expression] = STATE(3463), + [sym_unary_expression] = STATE(3463), + [sym__signed_unary_expression] = STATE(2479), + [sym__literal] = STATE(3463), + [sym_boolean_literal] = STATE(3463), + [sym_file_number_literal] = STATE(3463), + [sym_identifier] = ACTIONS(3416), + [sym_newline] = ACTIONS(3292), + [anon_sym_COLON] = ACTIONS(3418), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3296), + [aux_sym_frm_property_statement_token1] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1490), + [aux_sym__attribute_identifier_token1] = ACTIONS(1492), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3296), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3420), + [aux_sym_preprocessor_const_token1] = ACTIONS(3296), + [sym_static_modifier] = ACTIONS(1500), + [sym__dim_keyword] = ACTIONS(1502), + [sym__redim_keyword] = ACTIONS(1504), + [aux_sym_get_accessor_token1] = ACTIONS(1506), + [aux_sym_set_accessor_token1] = ACTIONS(1508), + [aux_sym_const_declaration_token1] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [aux_sym_as_type_clause_token2] = ACTIONS(1514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1516), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3296), + [aux_sym_else_fragment_token1] = ACTIONS(3296), + [aux_sym_select_statement_token1] = ACTIONS(3296), + [aux_sym_select_statement_token2] = ACTIONS(3296), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1526), + [aux_sym_do_condition_token1] = ACTIONS(1528), + [aux_sym_with_statement_token1] = ACTIONS(1530), + [aux_sym_exit_statement_token1] = ACTIONS(1532), + [sym_end_statement] = ACTIONS(3422), + [aux_sym_on_goto_statement_token1] = ACTIONS(3424), + [aux_sym_on_goto_statement_token2] = ACTIONS(1536), + [aux_sym_on_error_statement_token2] = ACTIONS(1538), + [sym__ambiguous_redim_statement] = ACTIONS(1540), + [aux_sym_erase_statement_token1] = ACTIONS(1542), + [aux_sym_open_statement_token1] = ACTIONS(1544), + [aux_sym_file_mode_token2] = ACTIONS(1546), + [aux_sym_file_access_token2] = ACTIONS(1548), + [aux_sym_file_lock_token2] = ACTIONS(1550), + [aux_sym_print_statement_token1] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1558), + [aux_sym_close_statement_token1] = ACTIONS(1560), + [aux_sym_put_statement_token1] = ACTIONS(1562), + [aux_sym_unlock_statement_token1] = ACTIONS(1564), + [aux_sym_seek_statement_token1] = ACTIONS(1566), + [sym_reset_statement] = ACTIONS(3426), + [aux_sym_raise_event_statement_token1] = ACTIONS(1570), + [sym_stop_statement] = ACTIONS(3426), + [sym_beep_statement] = ACTIONS(3426), + [aux_sym_unload_statement_token1] = ACTIONS(1572), + [aux_sym_def_type_statement_token1] = ACTIONS(3296), + [aux_sym_def_type_statement_token2] = ACTIONS(3296), + [aux_sym_def_type_statement_token3] = ACTIONS(3296), + [aux_sym_def_type_statement_token4] = ACTIONS(3296), + [aux_sym_def_type_statement_token5] = ACTIONS(3296), + [aux_sym_def_type_statement_token6] = ACTIONS(3296), + [aux_sym_def_type_statement_token7] = ACTIONS(3296), + [aux_sym_def_type_statement_token8] = ACTIONS(3296), + [aux_sym_def_type_statement_token9] = ACTIONS(3296), + [aux_sym_def_type_statement_token10] = ACTIONS(3296), + [aux_sym_def_type_statement_token11] = ACTIONS(3296), + [aux_sym_def_type_statement_token12] = ACTIONS(3296), + [aux_sym_def_type_statement_token13] = ACTIONS(3296), + [aux_sym_def_type_statement_token14] = ACTIONS(3296), + [aux_sym_call_statement_token1] = ACTIONS(1576), + [sym__ambiguous_call_statement] = ACTIONS(1578), + [aux_sym_addressof_expression_token1] = ACTIONS(1580), + [aux_sym_type_of_expression_token1] = ACTIONS(1582), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(1586), + [sym_number_literal] = ACTIONS(3428), + [aux_sym_boolean_literal_token1] = ACTIONS(1591), + [aux_sym_boolean_literal_token2] = ACTIONS(1591), + [sym_nothing_literal] = ACTIONS(1593), + [sym_null_literal] = ACTIONS(1593), + [sym_empty_literal] = ACTIONS(1593), + [sym_date_literal] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1595), + }, + [STATE(203)] = { + [sym_variable_declaration] = STATE(6055), + [sym_const_declaration] = STATE(6055), + [sym_visibility] = STATE(11883), + [sym_single_line_if_statement] = STATE(6055), + [sym_inline_statement_sequence] = STATE(6859), + [sym__inline_statement] = STATE(6055), + [sym_for_statement] = STATE(6055), + [sym__inline_for_statement] = STATE(6824), + [sym_for_each_statement] = STATE(6055), + [sym__inline_for_each_statement] = STATE(6825), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(6055), + [sym__inline_do_statement] = STATE(6826), + [sym_while_statement] = STATE(6055), + [sym_with_statement] = STATE(6055), + [sym__inline_with_statement] = STATE(6827), + [sym_exit_statement] = STATE(6055), + [sym_on_error_statement] = STATE(6055), + [sym_resume_statement] = STATE(6055), + [sym_goto_statement] = STATE(6055), + [sym_line_number_prefix] = STATE(12388), + [sym_redim_statement] = STATE(6055), + [sym_erase_statement] = STATE(6055), + [sym_open_statement] = STATE(6055), + [sym_input_statement] = STATE(6055), + [sym_line_input_statement] = STATE(6055), + [sym_print_statement] = STATE(6055), + [sym_write_statement] = STATE(6055), + [sym_debug_print_statement] = STATE(6055), + [sym_close_statement] = STATE(6055), + [sym_get_statement] = STATE(6055), + [sym_put_statement] = STATE(6055), + [sym_lock_statement] = STATE(6055), + [sym_unlock_statement] = STATE(6055), + [sym_seek_statement] = STATE(6055), + [sym_raise_event_statement] = STATE(6055), + [sym_name_statement] = STATE(6055), + [sym_load_statement] = STATE(6055), + [sym_unload_statement] = STATE(6055), + [sym_set_statement] = STATE(6055), + [sym_assignment_statement] = STATE(6055), + [sym_call_statement] = STATE(6055), + [sym_expression_statement] = STATE(6055), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [sym_identifier] = ACTIONS(3430), + [sym_newline] = ACTIONS(3292), + [anon_sym_COLON] = ACTIONS(3432), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3296), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3296), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3434), + [aux_sym_preprocessor_const_token1] = ACTIONS(3296), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3296), + [aux_sym_else_fragment_token1] = ACTIONS(3296), + [aux_sym_select_statement_token1] = ACTIONS(3296), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_while_statement_token1] = ACTIONS(3296), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(3436), + [aux_sym_on_goto_statement_token1] = ACTIONS(3438), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(3440), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(3440), + [sym_beep_statement] = ACTIONS(3440), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(3296), + [aux_sym_def_type_statement_token2] = ACTIONS(3296), + [aux_sym_def_type_statement_token3] = ACTIONS(3296), + [aux_sym_def_type_statement_token4] = ACTIONS(3296), + [aux_sym_def_type_statement_token5] = ACTIONS(3296), + [aux_sym_def_type_statement_token6] = ACTIONS(3296), + [aux_sym_def_type_statement_token7] = ACTIONS(3296), + [aux_sym_def_type_statement_token8] = ACTIONS(3296), + [aux_sym_def_type_statement_token9] = ACTIONS(3296), + [aux_sym_def_type_statement_token10] = ACTIONS(3296), + [aux_sym_def_type_statement_token11] = ACTIONS(3296), + [aux_sym_def_type_statement_token12] = ACTIONS(3296), + [aux_sym_def_type_statement_token13] = ACTIONS(3296), + [aux_sym_def_type_statement_token14] = ACTIONS(3296), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(3442), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(204)] = { + [sym_variable_declaration] = STATE(4404), + [sym_const_declaration] = STATE(4404), + [sym_visibility] = STATE(11839), + [sym_single_line_if_statement] = STATE(4404), + [sym_exit_statement] = STATE(4404), + [sym_on_error_statement] = STATE(4404), + [sym_resume_statement] = STATE(4404), + [sym_goto_statement] = STATE(4404), + [sym__numbered_statement] = STATE(4404), + [sym_redim_statement] = STATE(4404), + [sym_debug_print_statement] = STATE(4404), + [sym_get_statement] = STATE(4404), + [sym_put_statement] = STATE(4404), + [sym_lock_statement] = STATE(4404), + [sym_unlock_statement] = STATE(4404), + [sym_seek_statement] = STATE(4404), + [sym_raise_event_statement] = STATE(4404), + [sym_name_statement] = STATE(4404), + [sym_load_statement] = STATE(4404), + [sym_unload_statement] = STATE(4404), + [sym_def_type_statement] = STATE(4404), + [sym_set_statement] = STATE(4404), + [sym_assignment_statement] = STATE(4404), + [sym_call_statement] = STATE(4404), + [sym_expression_statement] = STATE(4404), + [sym__primary_expression] = STATE(2177), + [sym__expression] = STATE(2177), + [sym__assignable_expression] = STATE(14337), + [sym__callable_expression] = STATE(360), + [sym__print_method_callee] = STATE(363), + [sym__print_method_call_expression] = STATE(4521), + [sym__qualified_print_method_expression] = STATE(4522), + [sym__implicit_print_method_expression] = STATE(4523), + [sym__line_method_expression] = STATE(12218), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2177), + [sym_addressof_expression] = STATE(2177), + [sym_type_of_expression] = STATE(2177), + [sym_member_expression] = STATE(1381), + [sym_qualified_member_expression] = STATE(912), + [sym_implicit_member_expression] = STATE(912), + [sym_parenthesized_expression] = STATE(2177), + [sym_binary_expression] = STATE(2177), + [sym_unary_expression] = STATE(2177), + [sym__signed_unary_expression] = STATE(1199), + [sym__literal] = STATE(2177), + [sym_boolean_literal] = STATE(2177), + [sym_file_number_literal] = STATE(2177), + [sym_identifier] = ACTIONS(3326), + [sym_newline] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3444), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3360), + [aux_sym_frm_property_statement_token1] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [aux_sym__attribute_identifier_token1] = ACTIONS(431), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_declaration_token1] = ACTIONS(3362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3360), + [aux_sym_enum_declaration_token1] = ACTIONS(3362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(3362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(3362), + [aux_sym_declare_function_statement_token1] = ACTIONS(3362), + [aux_sym_preprocessor_const_token1] = ACTIONS(3362), + [aux_sym__property_get_header_token1] = ACTIONS(3362), + [aux_sym_event_declaration_token1] = ACTIONS(3362), + [sym_static_modifier] = ACTIONS(3332), + [sym__dim_keyword] = ACTIONS(451), + [sym__redim_keyword] = ACTIONS(453), + [aux_sym_get_accessor_token1] = ACTIONS(455), + [aux_sym_set_accessor_token1] = ACTIONS(457), + [aux_sym_const_declaration_token1] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [aux_sym_as_type_clause_token2] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3446), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3360), + [aux_sym_else_fragment_token1] = ACTIONS(3360), + [aux_sym_select_statement_token1] = ACTIONS(3360), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(479), + [sym_end_statement] = ACTIONS(3356), + [aux_sym_on_goto_statement_token1] = ACTIONS(3336), + [aux_sym_on_goto_statement_token2] = ACTIONS(483), + [aux_sym_on_error_statement_token2] = ACTIONS(485), + [sym__ambiguous_redim_statement] = ACTIONS(487), + [aux_sym_erase_statement_token1] = ACTIONS(3362), + [aux_sym_open_statement_token1] = ACTIONS(3362), + [aux_sym_file_mode_token2] = ACTIONS(3362), + [aux_sym_file_access_token2] = ACTIONS(3362), + [aux_sym_file_lock_token2] = ACTIONS(497), + [aux_sym_print_statement_token1] = ACTIONS(3448), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(505), + [aux_sym_close_statement_token1] = ACTIONS(3362), + [aux_sym_put_statement_token1] = ACTIONS(509), + [aux_sym_unlock_statement_token1] = ACTIONS(511), + [aux_sym_seek_statement_token1] = ACTIONS(513), + [sym_reset_statement] = ACTIONS(3450), + [aux_sym_raise_event_statement_token1] = ACTIONS(517), + [sym_stop_statement] = ACTIONS(3450), + [sym_beep_statement] = ACTIONS(3450), + [aux_sym_unload_statement_token1] = ACTIONS(519), + [aux_sym_def_type_statement_token1] = ACTIONS(521), + [aux_sym_def_type_statement_token2] = ACTIONS(521), + [aux_sym_def_type_statement_token3] = ACTIONS(521), + [aux_sym_def_type_statement_token4] = ACTIONS(521), + [aux_sym_def_type_statement_token5] = ACTIONS(521), + [aux_sym_def_type_statement_token6] = ACTIONS(521), + [aux_sym_def_type_statement_token7] = ACTIONS(521), + [aux_sym_def_type_statement_token8] = ACTIONS(521), + [aux_sym_def_type_statement_token9] = ACTIONS(521), + [aux_sym_def_type_statement_token10] = ACTIONS(521), + [aux_sym_def_type_statement_token11] = ACTIONS(521), + [aux_sym_def_type_statement_token12] = ACTIONS(521), + [aux_sym_def_type_statement_token13] = ACTIONS(521), + [aux_sym_def_type_statement_token14] = ACTIONS(521), + [aux_sym_call_statement_token1] = ACTIONS(523), + [sym__ambiguous_call_statement] = ACTIONS(525), + [aux_sym_addressof_expression_token1] = ACTIONS(527), + [aux_sym_type_of_expression_token1] = ACTIONS(529), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(533), + [sym_number_literal] = ACTIONS(533), + [aux_sym_boolean_literal_token1] = ACTIONS(537), + [aux_sym_boolean_literal_token2] = ACTIONS(537), + [sym_nothing_literal] = ACTIONS(539), + [sym_null_literal] = ACTIONS(539), + [sym_empty_literal] = ACTIONS(539), + [sym_date_literal] = ACTIONS(533), + [anon_sym_POUND] = ACTIONS(541), + }, + [STATE(205)] = { + [sym_variable_declaration] = STATE(6479), + [sym_const_declaration] = STATE(6479), + [sym_visibility] = STATE(11767), + [sym_single_line_if_statement] = STATE(6479), + [sym_inline_statement_sequence] = STATE(7161), + [sym__inline_statement] = STATE(6479), + [sym_for_statement] = STATE(6479), + [sym__inline_for_statement] = STATE(7222), + [sym_for_each_statement] = STATE(6479), + [sym__inline_for_each_statement] = STATE(7227), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(6479), + [sym__inline_do_statement] = STATE(7230), + [sym_while_statement] = STATE(6479), + [sym_with_statement] = STATE(6479), + [sym__inline_with_statement] = STATE(7233), + [sym_exit_statement] = STATE(6479), + [sym_on_error_statement] = STATE(6479), + [sym_resume_statement] = STATE(6479), + [sym_goto_statement] = STATE(6479), + [sym_line_number_prefix] = STATE(12265), + [sym_redim_statement] = STATE(6479), + [sym_erase_statement] = STATE(6479), + [sym_open_statement] = STATE(6479), + [sym_input_statement] = STATE(6479), + [sym_line_input_statement] = STATE(6479), + [sym_print_statement] = STATE(6479), + [sym_write_statement] = STATE(6479), + [sym_debug_print_statement] = STATE(6479), + [sym_close_statement] = STATE(6479), + [sym_get_statement] = STATE(6479), + [sym_put_statement] = STATE(6479), + [sym_lock_statement] = STATE(6479), + [sym_unlock_statement] = STATE(6479), + [sym_seek_statement] = STATE(6479), + [sym_raise_event_statement] = STATE(6479), + [sym_name_statement] = STATE(6479), + [sym_load_statement] = STATE(6479), + [sym_unload_statement] = STATE(6479), + [sym_set_statement] = STATE(6479), + [sym_assignment_statement] = STATE(6479), + [sym_call_statement] = STATE(6479), + [sym_expression_statement] = STATE(6479), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [sym_identifier] = ACTIONS(3452), + [sym_newline] = ACTIONS(3292), + [anon_sym_COLON] = ACTIONS(3454), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3296), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3296), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3456), + [aux_sym_preprocessor_const_token1] = ACTIONS(3296), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3296), + [aux_sym_else_fragment_token1] = ACTIONS(3296), + [aux_sym_select_statement_token1] = ACTIONS(3296), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(3458), + [aux_sym_on_goto_statement_token1] = ACTIONS(3460), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(3462), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(3462), + [sym_beep_statement] = ACTIONS(3462), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(3296), + [aux_sym_def_type_statement_token2] = ACTIONS(3296), + [aux_sym_def_type_statement_token3] = ACTIONS(3296), + [aux_sym_def_type_statement_token4] = ACTIONS(3296), + [aux_sym_def_type_statement_token5] = ACTIONS(3296), + [aux_sym_def_type_statement_token6] = ACTIONS(3296), + [aux_sym_def_type_statement_token7] = ACTIONS(3296), + [aux_sym_def_type_statement_token8] = ACTIONS(3296), + [aux_sym_def_type_statement_token9] = ACTIONS(3296), + [aux_sym_def_type_statement_token10] = ACTIONS(3296), + [aux_sym_def_type_statement_token11] = ACTIONS(3296), + [aux_sym_def_type_statement_token12] = ACTIONS(3296), + [aux_sym_def_type_statement_token13] = ACTIONS(3296), + [aux_sym_def_type_statement_token14] = ACTIONS(3296), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(3464), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(206)] = { + [sym_variable_declaration] = STATE(5294), + [sym_const_declaration] = STATE(5294), + [sym_visibility] = STATE(11799), + [sym_single_line_if_statement] = STATE(5294), + [sym_exit_statement] = STATE(5294), + [sym_on_error_statement] = STATE(5294), + [sym_resume_statement] = STATE(5294), + [sym_goto_statement] = STATE(5294), + [sym__numbered_statement] = STATE(5294), + [sym_redim_statement] = STATE(5294), + [sym_debug_print_statement] = STATE(5294), + [sym_get_statement] = STATE(5294), + [sym_put_statement] = STATE(5294), + [sym_lock_statement] = STATE(5294), + [sym_unlock_statement] = STATE(5294), + [sym_seek_statement] = STATE(5294), + [sym_raise_event_statement] = STATE(5294), + [sym_name_statement] = STATE(5294), + [sym_load_statement] = STATE(5294), + [sym_unload_statement] = STATE(5294), + [sym_def_type_statement] = STATE(5294), + [sym_set_statement] = STATE(5294), + [sym_assignment_statement] = STATE(5294), + [sym_call_statement] = STATE(5294), + [sym_expression_statement] = STATE(5294), + [sym__primary_expression] = STATE(2614), + [sym__expression] = STATE(2614), + [sym__assignable_expression] = STATE(14425), + [sym__callable_expression] = STATE(378), + [sym__print_method_callee] = STATE(393), + [sym__print_method_call_expression] = STATE(5499), + [sym__qualified_print_method_expression] = STATE(5500), + [sym__implicit_print_method_expression] = STATE(5501), + [sym__line_method_expression] = STATE(12228), + [sym_call_expression] = STATE(2293), + [sym_new_expression] = STATE(2614), + [sym_addressof_expression] = STATE(2614), + [sym_type_of_expression] = STATE(2614), + [sym_member_expression] = STATE(2211), + [sym_qualified_member_expression] = STATE(2182), + [sym_implicit_member_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2614), + [sym_binary_expression] = STATE(2614), + [sym_unary_expression] = STATE(2614), + [sym__signed_unary_expression] = STATE(2203), + [sym__literal] = STATE(2614), + [sym_boolean_literal] = STATE(2614), + [sym_file_number_literal] = STATE(2614), + [sym_identifier] = ACTIONS(3342), + [sym_newline] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3466), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3360), + [aux_sym_frm_property_statement_token1] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [aux_sym__attribute_identifier_token1] = ACTIONS(1069), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3360), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(3362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(3362), + [aux_sym_preprocessor_const_token1] = ACTIONS(3362), + [sym_static_modifier] = ACTIONS(1079), + [sym__dim_keyword] = ACTIONS(1081), + [sym__redim_keyword] = ACTIONS(1083), + [aux_sym_get_accessor_token1] = ACTIONS(1085), + [aux_sym_set_accessor_token1] = ACTIONS(1087), + [aux_sym_const_declaration_token1] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_as_type_clause_token2] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3468), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3360), + [aux_sym_else_fragment_token1] = ACTIONS(3360), + [aux_sym_select_statement_token1] = ACTIONS(3360), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(1109), + [sym_end_statement] = ACTIONS(3356), + [aux_sym_on_goto_statement_token1] = ACTIONS(3350), + [aux_sym_on_goto_statement_token2] = ACTIONS(1113), + [aux_sym_on_error_statement_token2] = ACTIONS(1115), + [sym__ambiguous_redim_statement] = ACTIONS(1117), + [aux_sym_erase_statement_token1] = ACTIONS(3362), + [aux_sym_open_statement_token1] = ACTIONS(3362), + [aux_sym_file_mode_token2] = ACTIONS(3362), + [aux_sym_file_access_token2] = ACTIONS(3362), + [aux_sym_file_lock_token2] = ACTIONS(1127), + [aux_sym_print_statement_token1] = ACTIONS(3470), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(1135), + [aux_sym_close_statement_token1] = ACTIONS(3362), + [aux_sym_put_statement_token1] = ACTIONS(1139), + [aux_sym_unlock_statement_token1] = ACTIONS(1141), + [aux_sym_seek_statement_token1] = ACTIONS(1143), + [sym_reset_statement] = ACTIONS(3472), + [aux_sym_raise_event_statement_token1] = ACTIONS(1147), + [sym_stop_statement] = ACTIONS(3472), + [sym_beep_statement] = ACTIONS(3472), + [aux_sym_unload_statement_token1] = ACTIONS(1149), + [aux_sym_def_type_statement_token1] = ACTIONS(1151), + [aux_sym_def_type_statement_token2] = ACTIONS(1151), + [aux_sym_def_type_statement_token3] = ACTIONS(1151), + [aux_sym_def_type_statement_token4] = ACTIONS(1151), + [aux_sym_def_type_statement_token5] = ACTIONS(1151), + [aux_sym_def_type_statement_token6] = ACTIONS(1151), + [aux_sym_def_type_statement_token7] = ACTIONS(1151), + [aux_sym_def_type_statement_token8] = ACTIONS(1151), + [aux_sym_def_type_statement_token9] = ACTIONS(1151), + [aux_sym_def_type_statement_token10] = ACTIONS(1151), + [aux_sym_def_type_statement_token11] = ACTIONS(1151), + [aux_sym_def_type_statement_token12] = ACTIONS(1151), + [aux_sym_def_type_statement_token13] = ACTIONS(1151), + [aux_sym_def_type_statement_token14] = ACTIONS(1151), + [aux_sym_call_statement_token1] = ACTIONS(1153), + [sym__ambiguous_call_statement] = ACTIONS(1155), + [aux_sym_addressof_expression_token1] = ACTIONS(1157), + [aux_sym_type_of_expression_token1] = ACTIONS(1159), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1163), + [aux_sym_boolean_literal_token1] = ACTIONS(1167), + [aux_sym_boolean_literal_token2] = ACTIONS(1167), + [sym_nothing_literal] = ACTIONS(1169), + [sym_null_literal] = ACTIONS(1169), + [sym_empty_literal] = ACTIONS(1169), + [sym_date_literal] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(1171), + }, + [STATE(207)] = { + [sym_variable_declaration] = STATE(6893), + [sym_const_declaration] = STATE(6893), + [sym_visibility] = STATE(11869), + [sym_single_line_if_statement] = STATE(6893), + [sym_exit_statement] = STATE(6893), + [sym_on_error_statement] = STATE(6893), + [sym_resume_statement] = STATE(6893), + [sym_goto_statement] = STATE(6893), + [sym__numbered_statement] = STATE(6893), + [sym_redim_statement] = STATE(6893), + [sym_debug_print_statement] = STATE(6893), + [sym_get_statement] = STATE(6893), + [sym_put_statement] = STATE(6893), + [sym_lock_statement] = STATE(6893), + [sym_unlock_statement] = STATE(6893), + [sym_seek_statement] = STATE(6893), + [sym_raise_event_statement] = STATE(6893), + [sym_name_statement] = STATE(6893), + [sym_load_statement] = STATE(6893), + [sym_unload_statement] = STATE(6893), + [sym_def_type_statement] = STATE(6893), + [sym_set_statement] = STATE(6893), + [sym_assignment_statement] = STATE(6893), + [sym_call_statement] = STATE(6893), + [sym_expression_statement] = STATE(6893), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [sym_identifier] = ACTIONS(3402), + [sym_newline] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3474), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3360), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3360), + [aux_sym_preprocessor_const_token1] = ACTIONS(3362), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3476), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3360), + [aux_sym_else_fragment_token1] = ACTIONS(3360), + [aux_sym_select_statement_token1] = ACTIONS(3360), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3362), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(3356), + [aux_sym_on_goto_statement_token1] = ACTIONS(3410), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(3362), + [aux_sym_open_statement_token1] = ACTIONS(3362), + [aux_sym_file_mode_token2] = ACTIONS(3362), + [aux_sym_file_access_token2] = ACTIONS(3362), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(3478), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(3362), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(3480), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(3480), + [sym_beep_statement] = ACTIONS(3480), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1464), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(208)] = { + [sym_variable_declaration] = STATE(7068), + [sym_const_declaration] = STATE(7068), + [sym_visibility] = STATE(12008), + [sym_single_line_if_statement] = STATE(7068), + [sym_exit_statement] = STATE(7068), + [sym_on_error_statement] = STATE(7068), + [sym_resume_statement] = STATE(7068), + [sym_goto_statement] = STATE(7068), + [sym__numbered_statement] = STATE(7068), + [sym_redim_statement] = STATE(7068), + [sym_debug_print_statement] = STATE(7068), + [sym_get_statement] = STATE(7068), + [sym_put_statement] = STATE(7068), + [sym_lock_statement] = STATE(7068), + [sym_unlock_statement] = STATE(7068), + [sym_seek_statement] = STATE(7068), + [sym_raise_event_statement] = STATE(7068), + [sym_name_statement] = STATE(7068), + [sym_load_statement] = STATE(7068), + [sym_unload_statement] = STATE(7068), + [sym_def_type_statement] = STATE(7068), + [sym_set_statement] = STATE(7068), + [sym_assignment_statement] = STATE(7068), + [sym_call_statement] = STATE(7068), + [sym_expression_statement] = STATE(7068), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(3388), + [sym_newline] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3482), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3360), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3360), + [aux_sym_preprocessor_const_token1] = ACTIONS(3362), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3484), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3360), + [aux_sym_else_fragment_token1] = ACTIONS(3360), + [aux_sym_select_statement_token1] = ACTIONS(3360), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3356), + [aux_sym_on_goto_statement_token1] = ACTIONS(3396), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(3362), + [aux_sym_open_statement_token1] = ACTIONS(3362), + [aux_sym_file_mode_token2] = ACTIONS(3362), + [aux_sym_file_access_token2] = ACTIONS(3362), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(3486), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(3362), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3488), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3488), + [sym_beep_statement] = ACTIONS(3488), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_def_type_statement_token1] = ACTIONS(2481), + [aux_sym_def_type_statement_token2] = ACTIONS(2481), + [aux_sym_def_type_statement_token3] = ACTIONS(2481), + [aux_sym_def_type_statement_token4] = ACTIONS(2481), + [aux_sym_def_type_statement_token5] = ACTIONS(2481), + [aux_sym_def_type_statement_token6] = ACTIONS(2481), + [aux_sym_def_type_statement_token7] = ACTIONS(2481), + [aux_sym_def_type_statement_token8] = ACTIONS(2481), + [aux_sym_def_type_statement_token9] = ACTIONS(2481), + [aux_sym_def_type_statement_token10] = ACTIONS(2481), + [aux_sym_def_type_statement_token11] = ACTIONS(2481), + [aux_sym_def_type_statement_token12] = ACTIONS(2481), + [aux_sym_def_type_statement_token13] = ACTIONS(2481), + [aux_sym_def_type_statement_token14] = ACTIONS(2481), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2493), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(209)] = { + [sym_variable_declaration] = STATE(7056), + [sym_const_declaration] = STATE(7056), + [sym_visibility] = STATE(11858), + [sym_single_line_if_statement] = STATE(7056), + [sym_exit_statement] = STATE(7056), + [sym_on_error_statement] = STATE(7056), + [sym_resume_statement] = STATE(7056), + [sym_goto_statement] = STATE(7056), + [sym__numbered_statement] = STATE(7056), + [sym_redim_statement] = STATE(7056), + [sym_debug_print_statement] = STATE(7056), + [sym_get_statement] = STATE(7056), + [sym_put_statement] = STATE(7056), + [sym_lock_statement] = STATE(7056), + [sym_unlock_statement] = STATE(7056), + [sym_seek_statement] = STATE(7056), + [sym_raise_event_statement] = STATE(7056), + [sym_name_statement] = STATE(7056), + [sym_load_statement] = STATE(7056), + [sym_unload_statement] = STATE(7056), + [sym_def_type_statement] = STATE(7056), + [sym_set_statement] = STATE(7056), + [sym_assignment_statement] = STATE(7056), + [sym_call_statement] = STATE(7056), + [sym_expression_statement] = STATE(7056), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [sym_identifier] = ACTIONS(3374), + [sym_newline] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3490), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3360), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3360), + [aux_sym_preprocessor_const_token1] = ACTIONS(3362), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3492), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3360), + [aux_sym_else_fragment_token1] = ACTIONS(3360), + [aux_sym_select_statement_token1] = ACTIONS(3360), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_statement_token2] = ACTIONS(3362), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(3356), + [aux_sym_on_goto_statement_token1] = ACTIONS(3382), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(3362), + [aux_sym_open_statement_token1] = ACTIONS(3362), + [aux_sym_file_mode_token2] = ACTIONS(3362), + [aux_sym_file_access_token2] = ACTIONS(3362), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(3494), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(3362), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(3496), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(3496), + [sym_beep_statement] = ACTIONS(3496), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1703), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(210)] = { + [sym_variable_declaration] = STATE(7056), + [sym_const_declaration] = STATE(7056), + [sym_visibility] = STATE(11858), + [sym_single_line_if_statement] = STATE(7056), + [sym_exit_statement] = STATE(7056), + [sym_on_error_statement] = STATE(7056), + [sym_resume_statement] = STATE(7056), + [sym_goto_statement] = STATE(7056), + [sym__numbered_statement] = STATE(7056), + [sym_redim_statement] = STATE(7056), + [sym_debug_print_statement] = STATE(7056), + [sym_get_statement] = STATE(7056), + [sym_put_statement] = STATE(7056), + [sym_lock_statement] = STATE(7056), + [sym_unlock_statement] = STATE(7056), + [sym_seek_statement] = STATE(7056), + [sym_raise_event_statement] = STATE(7056), + [sym_name_statement] = STATE(7056), + [sym_load_statement] = STATE(7056), + [sym_unload_statement] = STATE(7056), + [sym_def_type_statement] = STATE(7056), + [sym_set_statement] = STATE(7056), + [sym_assignment_statement] = STATE(7056), + [sym_call_statement] = STATE(7056), + [sym_expression_statement] = STATE(7056), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [sym_identifier] = ACTIONS(3374), + [sym_newline] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3498), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3360), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3360), + [aux_sym_preprocessor_const_token1] = ACTIONS(3362), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3492), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3360), + [aux_sym_else_fragment_token1] = ACTIONS(3360), + [aux_sym_select_statement_token1] = ACTIONS(3360), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_statement_token2] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(3356), + [aux_sym_on_goto_statement_token1] = ACTIONS(3382), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(3362), + [aux_sym_open_statement_token1] = ACTIONS(3362), + [aux_sym_file_mode_token2] = ACTIONS(3362), + [aux_sym_file_access_token2] = ACTIONS(3362), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(3494), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(3362), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(3496), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(3496), + [sym_beep_statement] = ACTIONS(3496), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_def_type_statement_token1] = ACTIONS(1691), + [aux_sym_def_type_statement_token2] = ACTIONS(1691), + [aux_sym_def_type_statement_token3] = ACTIONS(1691), + [aux_sym_def_type_statement_token4] = ACTIONS(1691), + [aux_sym_def_type_statement_token5] = ACTIONS(1691), + [aux_sym_def_type_statement_token6] = ACTIONS(1691), + [aux_sym_def_type_statement_token7] = ACTIONS(1691), + [aux_sym_def_type_statement_token8] = ACTIONS(1691), + [aux_sym_def_type_statement_token9] = ACTIONS(1691), + [aux_sym_def_type_statement_token10] = ACTIONS(1691), + [aux_sym_def_type_statement_token11] = ACTIONS(1691), + [aux_sym_def_type_statement_token12] = ACTIONS(1691), + [aux_sym_def_type_statement_token13] = ACTIONS(1691), + [aux_sym_def_type_statement_token14] = ACTIONS(1691), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(1703), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(211)] = { + [sym_variable_declaration] = STATE(6738), + [sym_const_declaration] = STATE(6738), + [sym_visibility] = STATE(11928), + [sym_single_line_if_statement] = STATE(6738), + [sym_exit_statement] = STATE(6738), + [sym_on_error_statement] = STATE(6738), + [sym_resume_statement] = STATE(6738), + [sym_goto_statement] = STATE(6738), + [sym__numbered_statement] = STATE(6738), + [sym_redim_statement] = STATE(6738), + [sym_debug_print_statement] = STATE(6738), + [sym_get_statement] = STATE(6738), + [sym_put_statement] = STATE(6738), + [sym_lock_statement] = STATE(6738), + [sym_unlock_statement] = STATE(6738), + [sym_seek_statement] = STATE(6738), + [sym_raise_event_statement] = STATE(6738), + [sym_name_statement] = STATE(6738), + [sym_load_statement] = STATE(6738), + [sym_unload_statement] = STATE(6738), + [sym_def_type_statement] = STATE(6738), + [sym_set_statement] = STATE(6738), + [sym_assignment_statement] = STATE(6738), + [sym_call_statement] = STATE(6738), + [sym_expression_statement] = STATE(6738), + [sym__primary_expression] = STATE(3463), + [sym__expression] = STATE(3463), + [sym__assignable_expression] = STATE(14513), + [sym__callable_expression] = STATE(418), + [sym__print_method_callee] = STATE(501), + [sym__print_method_call_expression] = STATE(6993), + [sym__qualified_print_method_expression] = STATE(6708), + [sym__implicit_print_method_expression] = STATE(6710), + [sym__line_method_expression] = STATE(12255), + [sym_call_expression] = STATE(2892), + [sym_new_expression] = STATE(3463), + [sym_addressof_expression] = STATE(3463), + [sym_type_of_expression] = STATE(3463), + [sym_member_expression] = STATE(2545), + [sym_qualified_member_expression] = STATE(2265), + [sym_implicit_member_expression] = STATE(2265), + [sym_parenthesized_expression] = STATE(3463), + [sym_binary_expression] = STATE(3463), + [sym_unary_expression] = STATE(3463), + [sym__signed_unary_expression] = STATE(2479), + [sym__literal] = STATE(3463), + [sym_boolean_literal] = STATE(3463), + [sym_file_number_literal] = STATE(3463), + [sym_identifier] = ACTIONS(3416), + [sym_newline] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3500), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3360), + [aux_sym_frm_property_statement_token1] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1490), + [aux_sym__attribute_identifier_token1] = ACTIONS(1492), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3360), + [aux_sym_preprocessor_const_token1] = ACTIONS(3362), + [sym_static_modifier] = ACTIONS(1500), + [sym__dim_keyword] = ACTIONS(1502), + [sym__redim_keyword] = ACTIONS(1504), + [aux_sym_get_accessor_token1] = ACTIONS(1506), + [aux_sym_set_accessor_token1] = ACTIONS(1508), + [aux_sym_const_declaration_token1] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [aux_sym_as_type_clause_token2] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3502), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3360), + [aux_sym_else_fragment_token1] = ACTIONS(3360), + [aux_sym_select_statement_token1] = ACTIONS(3360), + [aux_sym_select_statement_token2] = ACTIONS(3362), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(1532), + [sym_end_statement] = ACTIONS(3356), + [aux_sym_on_goto_statement_token1] = ACTIONS(3424), + [aux_sym_on_goto_statement_token2] = ACTIONS(1536), + [aux_sym_on_error_statement_token2] = ACTIONS(1538), + [sym__ambiguous_redim_statement] = ACTIONS(1540), + [aux_sym_erase_statement_token1] = ACTIONS(3362), + [aux_sym_open_statement_token1] = ACTIONS(3362), + [aux_sym_file_mode_token2] = ACTIONS(3362), + [aux_sym_file_access_token2] = ACTIONS(3362), + [aux_sym_file_lock_token2] = ACTIONS(1550), + [aux_sym_print_statement_token1] = ACTIONS(3504), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(1558), + [aux_sym_close_statement_token1] = ACTIONS(3362), + [aux_sym_put_statement_token1] = ACTIONS(1562), + [aux_sym_unlock_statement_token1] = ACTIONS(1564), + [aux_sym_seek_statement_token1] = ACTIONS(1566), + [sym_reset_statement] = ACTIONS(3506), + [aux_sym_raise_event_statement_token1] = ACTIONS(1570), + [sym_stop_statement] = ACTIONS(3506), + [sym_beep_statement] = ACTIONS(3506), + [aux_sym_unload_statement_token1] = ACTIONS(1572), + [aux_sym_def_type_statement_token1] = ACTIONS(1574), + [aux_sym_def_type_statement_token2] = ACTIONS(1574), + [aux_sym_def_type_statement_token3] = ACTIONS(1574), + [aux_sym_def_type_statement_token4] = ACTIONS(1574), + [aux_sym_def_type_statement_token5] = ACTIONS(1574), + [aux_sym_def_type_statement_token6] = ACTIONS(1574), + [aux_sym_def_type_statement_token7] = ACTIONS(1574), + [aux_sym_def_type_statement_token8] = ACTIONS(1574), + [aux_sym_def_type_statement_token9] = ACTIONS(1574), + [aux_sym_def_type_statement_token10] = ACTIONS(1574), + [aux_sym_def_type_statement_token11] = ACTIONS(1574), + [aux_sym_def_type_statement_token12] = ACTIONS(1574), + [aux_sym_def_type_statement_token13] = ACTIONS(1574), + [aux_sym_def_type_statement_token14] = ACTIONS(1574), + [aux_sym_call_statement_token1] = ACTIONS(1576), + [sym__ambiguous_call_statement] = ACTIONS(1578), + [aux_sym_addressof_expression_token1] = ACTIONS(1580), + [aux_sym_type_of_expression_token1] = ACTIONS(1582), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(1586), + [sym_number_literal] = ACTIONS(1586), + [aux_sym_boolean_literal_token1] = ACTIONS(1591), + [aux_sym_boolean_literal_token2] = ACTIONS(1591), + [sym_nothing_literal] = ACTIONS(1593), + [sym_null_literal] = ACTIONS(1593), + [sym_empty_literal] = ACTIONS(1593), + [sym_date_literal] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1595), + }, + [STATE(212)] = { + [sym_variable_declaration] = STATE(6893), + [sym_const_declaration] = STATE(6893), + [sym_visibility] = STATE(11869), + [sym_single_line_if_statement] = STATE(6893), + [sym_exit_statement] = STATE(6893), + [sym_on_error_statement] = STATE(6893), + [sym_resume_statement] = STATE(6893), + [sym_goto_statement] = STATE(6893), + [sym__numbered_statement] = STATE(6893), + [sym_redim_statement] = STATE(6893), + [sym_debug_print_statement] = STATE(6893), + [sym_get_statement] = STATE(6893), + [sym_put_statement] = STATE(6893), + [sym_lock_statement] = STATE(6893), + [sym_unlock_statement] = STATE(6893), + [sym_seek_statement] = STATE(6893), + [sym_raise_event_statement] = STATE(6893), + [sym_name_statement] = STATE(6893), + [sym_load_statement] = STATE(6893), + [sym_unload_statement] = STATE(6893), + [sym_def_type_statement] = STATE(6893), + [sym_set_statement] = STATE(6893), + [sym_assignment_statement] = STATE(6893), + [sym_call_statement] = STATE(6893), + [sym_expression_statement] = STATE(6893), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [sym_identifier] = ACTIONS(3402), + [sym_newline] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3508), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3360), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3360), + [aux_sym_preprocessor_const_token1] = ACTIONS(3362), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3476), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3360), + [aux_sym_else_fragment_token1] = ACTIONS(3360), + [aux_sym_select_statement_token1] = ACTIONS(3360), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3360), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(3356), + [aux_sym_on_goto_statement_token1] = ACTIONS(3410), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(3362), + [aux_sym_open_statement_token1] = ACTIONS(3362), + [aux_sym_file_mode_token2] = ACTIONS(3362), + [aux_sym_file_access_token2] = ACTIONS(3362), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(3478), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(3362), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(3480), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(3480), + [sym_beep_statement] = ACTIONS(3480), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_def_type_statement_token1] = ACTIONS(1452), + [aux_sym_def_type_statement_token2] = ACTIONS(1452), + [aux_sym_def_type_statement_token3] = ACTIONS(1452), + [aux_sym_def_type_statement_token4] = ACTIONS(1452), + [aux_sym_def_type_statement_token5] = ACTIONS(1452), + [aux_sym_def_type_statement_token6] = ACTIONS(1452), + [aux_sym_def_type_statement_token7] = ACTIONS(1452), + [aux_sym_def_type_statement_token8] = ACTIONS(1452), + [aux_sym_def_type_statement_token9] = ACTIONS(1452), + [aux_sym_def_type_statement_token10] = ACTIONS(1452), + [aux_sym_def_type_statement_token11] = ACTIONS(1452), + [aux_sym_def_type_statement_token12] = ACTIONS(1452), + [aux_sym_def_type_statement_token13] = ACTIONS(1452), + [aux_sym_def_type_statement_token14] = ACTIONS(1452), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1464), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(213)] = { + [sym_variable_declaration] = STATE(6407), + [sym_const_declaration] = STATE(6407), + [sym_visibility] = STATE(11883), + [sym_single_line_if_statement] = STATE(6407), + [sym_exit_statement] = STATE(6407), + [sym_on_error_statement] = STATE(6407), + [sym_resume_statement] = STATE(6407), + [sym_goto_statement] = STATE(6407), + [sym__numbered_statement] = STATE(6407), + [sym_redim_statement] = STATE(6407), + [sym_debug_print_statement] = STATE(6407), + [sym_get_statement] = STATE(6407), + [sym_put_statement] = STATE(6407), + [sym_lock_statement] = STATE(6407), + [sym_unlock_statement] = STATE(6407), + [sym_seek_statement] = STATE(6407), + [sym_raise_event_statement] = STATE(6407), + [sym_name_statement] = STATE(6407), + [sym_load_statement] = STATE(6407), + [sym_unload_statement] = STATE(6407), + [sym_def_type_statement] = STATE(6407), + [sym_set_statement] = STATE(6407), + [sym_assignment_statement] = STATE(6407), + [sym_call_statement] = STATE(6407), + [sym_expression_statement] = STATE(6407), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [sym_identifier] = ACTIONS(3430), + [sym_newline] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3510), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3360), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3360), + [aux_sym_preprocessor_const_token1] = ACTIONS(3362), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3512), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3360), + [aux_sym_else_fragment_token1] = ACTIONS(3360), + [aux_sym_select_statement_token1] = ACTIONS(3360), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_while_statement_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(3356), + [aux_sym_on_goto_statement_token1] = ACTIONS(3438), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(3362), + [aux_sym_open_statement_token1] = ACTIONS(3362), + [aux_sym_file_mode_token2] = ACTIONS(3362), + [aux_sym_file_access_token2] = ACTIONS(3362), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(3514), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(3362), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(3516), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(3516), + [sym_beep_statement] = ACTIONS(3516), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1823), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(214)] = { + [sym_variable_declaration] = STATE(6407), + [sym_const_declaration] = STATE(6407), + [sym_visibility] = STATE(11883), + [sym_single_line_if_statement] = STATE(6407), + [sym_exit_statement] = STATE(6407), + [sym_on_error_statement] = STATE(6407), + [sym_resume_statement] = STATE(6407), + [sym_goto_statement] = STATE(6407), + [sym__numbered_statement] = STATE(6407), + [sym_redim_statement] = STATE(6407), + [sym_debug_print_statement] = STATE(6407), + [sym_get_statement] = STATE(6407), + [sym_put_statement] = STATE(6407), + [sym_lock_statement] = STATE(6407), + [sym_unlock_statement] = STATE(6407), + [sym_seek_statement] = STATE(6407), + [sym_raise_event_statement] = STATE(6407), + [sym_name_statement] = STATE(6407), + [sym_load_statement] = STATE(6407), + [sym_unload_statement] = STATE(6407), + [sym_def_type_statement] = STATE(6407), + [sym_set_statement] = STATE(6407), + [sym_assignment_statement] = STATE(6407), + [sym_call_statement] = STATE(6407), + [sym_expression_statement] = STATE(6407), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [sym_identifier] = ACTIONS(3430), + [sym_newline] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3518), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3360), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3360), + [aux_sym_preprocessor_const_token1] = ACTIONS(3362), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3512), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3360), + [aux_sym_else_fragment_token1] = ACTIONS(3360), + [aux_sym_select_statement_token1] = ACTIONS(3360), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_while_statement_token1] = ACTIONS(3362), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(3356), + [aux_sym_on_goto_statement_token1] = ACTIONS(3438), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(3362), + [aux_sym_open_statement_token1] = ACTIONS(3362), + [aux_sym_file_mode_token2] = ACTIONS(3362), + [aux_sym_file_access_token2] = ACTIONS(3362), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(3514), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(3362), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(3516), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(3516), + [sym_beep_statement] = ACTIONS(3516), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_def_type_statement_token1] = ACTIONS(1811), + [aux_sym_def_type_statement_token2] = ACTIONS(1811), + [aux_sym_def_type_statement_token3] = ACTIONS(1811), + [aux_sym_def_type_statement_token4] = ACTIONS(1811), + [aux_sym_def_type_statement_token5] = ACTIONS(1811), + [aux_sym_def_type_statement_token6] = ACTIONS(1811), + [aux_sym_def_type_statement_token7] = ACTIONS(1811), + [aux_sym_def_type_statement_token8] = ACTIONS(1811), + [aux_sym_def_type_statement_token9] = ACTIONS(1811), + [aux_sym_def_type_statement_token10] = ACTIONS(1811), + [aux_sym_def_type_statement_token11] = ACTIONS(1811), + [aux_sym_def_type_statement_token12] = ACTIONS(1811), + [aux_sym_def_type_statement_token13] = ACTIONS(1811), + [aux_sym_def_type_statement_token14] = ACTIONS(1811), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(1823), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(215)] = { + [sym_variable_declaration] = STATE(7226), + [sym_const_declaration] = STATE(7226), + [sym_visibility] = STATE(11767), + [sym_single_line_if_statement] = STATE(7226), + [sym_exit_statement] = STATE(7226), + [sym_on_error_statement] = STATE(7226), + [sym_resume_statement] = STATE(7226), + [sym_goto_statement] = STATE(7226), + [sym__numbered_statement] = STATE(7226), + [sym_redim_statement] = STATE(7226), + [sym_debug_print_statement] = STATE(7226), + [sym_get_statement] = STATE(7226), + [sym_put_statement] = STATE(7226), + [sym_lock_statement] = STATE(7226), + [sym_unlock_statement] = STATE(7226), + [sym_seek_statement] = STATE(7226), + [sym_raise_event_statement] = STATE(7226), + [sym_name_statement] = STATE(7226), + [sym_load_statement] = STATE(7226), + [sym_unload_statement] = STATE(7226), + [sym_def_type_statement] = STATE(7226), + [sym_set_statement] = STATE(7226), + [sym_assignment_statement] = STATE(7226), + [sym_call_statement] = STATE(7226), + [sym_expression_statement] = STATE(7226), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [sym_identifier] = ACTIONS(3452), + [sym_newline] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3520), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3360), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3360), + [aux_sym_preprocessor_const_token1] = ACTIONS(3362), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3522), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym_elseif_fragment_token1] = ACTIONS(3360), + [aux_sym_else_fragment_token1] = ACTIONS(3360), + [aux_sym_select_statement_token1] = ACTIONS(3360), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(3356), + [aux_sym_on_goto_statement_token1] = ACTIONS(3460), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(3362), + [aux_sym_open_statement_token1] = ACTIONS(3362), + [aux_sym_file_mode_token2] = ACTIONS(3362), + [aux_sym_file_access_token2] = ACTIONS(3362), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(3524), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(3362), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(3526), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(3526), + [sym_beep_statement] = ACTIONS(3526), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_def_type_statement_token1] = ACTIONS(826), + [aux_sym_def_type_statement_token2] = ACTIONS(826), + [aux_sym_def_type_statement_token3] = ACTIONS(826), + [aux_sym_def_type_statement_token4] = ACTIONS(826), + [aux_sym_def_type_statement_token5] = ACTIONS(826), + [aux_sym_def_type_statement_token6] = ACTIONS(826), + [aux_sym_def_type_statement_token7] = ACTIONS(826), + [aux_sym_def_type_statement_token8] = ACTIONS(826), + [aux_sym_def_type_statement_token9] = ACTIONS(826), + [aux_sym_def_type_statement_token10] = ACTIONS(826), + [aux_sym_def_type_statement_token11] = ACTIONS(826), + [aux_sym_def_type_statement_token12] = ACTIONS(826), + [aux_sym_def_type_statement_token13] = ACTIONS(826), + [aux_sym_def_type_statement_token14] = ACTIONS(826), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(838), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(216)] = { + [sym_variable_declaration] = STATE(3760), + [sym_const_declaration] = STATE(3760), + [sym_visibility] = STATE(11841), + [sym_single_line_if_statement] = STATE(3760), + [sym_inline_statement_sequence] = STATE(3969), + [sym__inline_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym__inline_for_statement] = STATE(3853), + [sym_for_each_statement] = STATE(3760), + [sym__inline_for_each_statement] = STATE(3854), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(3760), + [sym__inline_do_statement] = STATE(3855), + [sym_while_statement] = STATE(3760), + [sym_with_statement] = STATE(3760), + [sym__inline_with_statement] = STATE(3856), + [sym_exit_statement] = STATE(3760), + [sym_on_error_statement] = STATE(3760), + [sym_resume_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_line_number_prefix] = STATE(12380), + [sym_redim_statement] = STATE(3760), + [sym_erase_statement] = STATE(3760), + [sym_open_statement] = STATE(3760), + [sym_input_statement] = STATE(3760), + [sym_line_input_statement] = STATE(3760), + [sym_print_statement] = STATE(3760), + [sym_write_statement] = STATE(3760), + [sym_debug_print_statement] = STATE(3760), + [sym_close_statement] = STATE(3760), + [sym_get_statement] = STATE(3760), + [sym_put_statement] = STATE(3760), + [sym_lock_statement] = STATE(3760), + [sym_unlock_statement] = STATE(3760), + [sym_seek_statement] = STATE(3760), + [sym_raise_event_statement] = STATE(3760), + [sym_name_statement] = STATE(3760), + [sym_load_statement] = STATE(3760), + [sym_unload_statement] = STATE(3760), + [sym_set_statement] = STATE(3760), + [sym_assignment_statement] = STATE(3760), + [sym_call_statement] = STATE(3760), + [sym_expression_statement] = STATE(3760), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [sym_identifier] = ACTIONS(3290), + [anon_sym_COLON] = ACTIONS(3294), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3298), + [sym_static_modifier] = ACTIONS(3300), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(3302), + [aux_sym_on_goto_statement_token1] = ACTIONS(3304), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(3306), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(3306), + [sym_beep_statement] = ACTIONS(3306), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(3308), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(217)] = { + [sym_variable_declaration] = STATE(6249), + [sym_const_declaration] = STATE(6249), + [sym_visibility] = STATE(12008), + [sym_single_line_if_statement] = STATE(6249), + [sym_inline_statement_sequence] = STATE(6704), + [sym__inline_statement] = STATE(6249), + [sym_for_statement] = STATE(6249), + [sym__inline_for_statement] = STATE(6530), + [sym_for_each_statement] = STATE(6249), + [sym__inline_for_each_statement] = STATE(6531), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(6249), + [sym__inline_do_statement] = STATE(6542), + [sym_while_statement] = STATE(6249), + [sym_with_statement] = STATE(6249), + [sym__inline_with_statement] = STATE(6543), + [sym_exit_statement] = STATE(6249), + [sym_on_error_statement] = STATE(6249), + [sym_resume_statement] = STATE(6249), + [sym_goto_statement] = STATE(6249), + [sym_line_number_prefix] = STATE(12398), + [sym_redim_statement] = STATE(6249), + [sym_erase_statement] = STATE(6249), + [sym_open_statement] = STATE(6249), + [sym_input_statement] = STATE(6249), + [sym_line_input_statement] = STATE(6249), + [sym_print_statement] = STATE(6249), + [sym_write_statement] = STATE(6249), + [sym_debug_print_statement] = STATE(6249), + [sym_close_statement] = STATE(6249), + [sym_get_statement] = STATE(6249), + [sym_put_statement] = STATE(6249), + [sym_lock_statement] = STATE(6249), + [sym_unlock_statement] = STATE(6249), + [sym_seek_statement] = STATE(6249), + [sym_raise_event_statement] = STATE(6249), + [sym_name_statement] = STATE(6249), + [sym_load_statement] = STATE(6249), + [sym_unload_statement] = STATE(6249), + [sym_set_statement] = STATE(6249), + [sym_assignment_statement] = STATE(6249), + [sym_call_statement] = STATE(6249), + [sym_expression_statement] = STATE(6249), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(3388), + [anon_sym_COLON] = ACTIONS(3390), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3392), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3394), + [aux_sym_on_goto_statement_token1] = ACTIONS(3396), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3398), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3398), + [sym_beep_statement] = ACTIONS(3398), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(3400), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(218)] = { + [sym_variable_declaration] = STATE(4959), + [sym_const_declaration] = STATE(4959), + [sym_visibility] = STATE(11799), + [sym_single_line_if_statement] = STATE(4959), + [sym_inline_statement_sequence] = STATE(5591), + [sym__inline_statement] = STATE(4959), + [sym_for_statement] = STATE(4959), + [sym__inline_for_statement] = STATE(5568), + [sym_for_each_statement] = STATE(4959), + [sym__inline_for_each_statement] = STATE(5569), + [sym__for_header] = STATE(11307), + [sym__for_each_header] = STATE(11308), + [sym_do_statement] = STATE(4959), + [sym__inline_do_statement] = STATE(5570), + [sym_while_statement] = STATE(4959), + [sym_with_statement] = STATE(4959), + [sym__inline_with_statement] = STATE(5571), + [sym_exit_statement] = STATE(4959), + [sym_on_error_statement] = STATE(4959), + [sym_resume_statement] = STATE(4959), + [sym_goto_statement] = STATE(4959), + [sym_line_number_prefix] = STATE(12393), + [sym_redim_statement] = STATE(4959), + [sym_erase_statement] = STATE(4959), + [sym_open_statement] = STATE(4959), + [sym_input_statement] = STATE(4959), + [sym_line_input_statement] = STATE(4959), + [sym_print_statement] = STATE(4959), + [sym_write_statement] = STATE(4959), + [sym_debug_print_statement] = STATE(4959), + [sym_close_statement] = STATE(4959), + [sym_get_statement] = STATE(4959), + [sym_put_statement] = STATE(4959), + [sym_lock_statement] = STATE(4959), + [sym_unlock_statement] = STATE(4959), + [sym_seek_statement] = STATE(4959), + [sym_raise_event_statement] = STATE(4959), + [sym_name_statement] = STATE(4959), + [sym_load_statement] = STATE(4959), + [sym_unload_statement] = STATE(4959), + [sym_set_statement] = STATE(4959), + [sym_assignment_statement] = STATE(4959), + [sym_call_statement] = STATE(4959), + [sym_expression_statement] = STATE(4959), + [sym__primary_expression] = STATE(2614), + [sym__expression] = STATE(2614), + [sym__assignable_expression] = STATE(14425), + [sym__callable_expression] = STATE(378), + [sym__print_method_callee] = STATE(393), + [sym__print_method_call_expression] = STATE(5499), + [sym__qualified_print_method_expression] = STATE(5500), + [sym__implicit_print_method_expression] = STATE(5501), + [sym__line_method_expression] = STATE(12228), + [sym_call_expression] = STATE(2293), + [sym_new_expression] = STATE(2614), + [sym_addressof_expression] = STATE(2614), + [sym_type_of_expression] = STATE(2614), + [sym_member_expression] = STATE(2211), + [sym_qualified_member_expression] = STATE(2182), + [sym_implicit_member_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2614), + [sym_binary_expression] = STATE(2614), + [sym_unary_expression] = STATE(2614), + [sym__signed_unary_expression] = STATE(2203), + [sym__literal] = STATE(2614), + [sym_boolean_literal] = STATE(2614), + [sym_file_number_literal] = STATE(2614), + [sym_identifier] = ACTIONS(3342), + [anon_sym_COLON] = ACTIONS(3344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [aux_sym__attribute_identifier_token1] = ACTIONS(1069), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3346), + [sym_static_modifier] = ACTIONS(1079), + [sym__dim_keyword] = ACTIONS(1081), + [sym__redim_keyword] = ACTIONS(1083), + [aux_sym_get_accessor_token1] = ACTIONS(1085), + [aux_sym_set_accessor_token1] = ACTIONS(1087), + [aux_sym_const_declaration_token1] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_as_type_clause_token2] = ACTIONS(1093), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1095), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1103), + [aux_sym_do_condition_token1] = ACTIONS(1105), + [aux_sym_with_statement_token1] = ACTIONS(1107), + [aux_sym_exit_statement_token1] = ACTIONS(1109), + [sym_end_statement] = ACTIONS(3348), + [aux_sym_on_goto_statement_token1] = ACTIONS(3350), + [aux_sym_on_goto_statement_token2] = ACTIONS(1113), + [aux_sym_on_error_statement_token2] = ACTIONS(1115), + [sym__ambiguous_redim_statement] = ACTIONS(1117), + [aux_sym_erase_statement_token1] = ACTIONS(1119), + [aux_sym_open_statement_token1] = ACTIONS(1121), + [aux_sym_file_mode_token2] = ACTIONS(1123), + [aux_sym_file_access_token2] = ACTIONS(1125), + [aux_sym_file_lock_token2] = ACTIONS(1127), + [aux_sym_print_statement_token1] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [aux_sym_close_statement_token1] = ACTIONS(1137), + [aux_sym_put_statement_token1] = ACTIONS(1139), + [aux_sym_unlock_statement_token1] = ACTIONS(1141), + [aux_sym_seek_statement_token1] = ACTIONS(1143), + [sym_reset_statement] = ACTIONS(3352), + [aux_sym_raise_event_statement_token1] = ACTIONS(1147), + [sym_stop_statement] = ACTIONS(3352), + [sym_beep_statement] = ACTIONS(3352), + [aux_sym_unload_statement_token1] = ACTIONS(1149), + [aux_sym_call_statement_token1] = ACTIONS(1153), + [sym__ambiguous_call_statement] = ACTIONS(1155), + [aux_sym_addressof_expression_token1] = ACTIONS(1157), + [aux_sym_type_of_expression_token1] = ACTIONS(1159), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(3354), + [aux_sym_boolean_literal_token1] = ACTIONS(1167), + [aux_sym_boolean_literal_token2] = ACTIONS(1167), + [sym_nothing_literal] = ACTIONS(1169), + [sym_null_literal] = ACTIONS(1169), + [sym_empty_literal] = ACTIONS(1169), + [sym_date_literal] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(1171), + }, + [STATE(219)] = { + [sym_variable_declaration] = STATE(6125), + [sym_const_declaration] = STATE(6125), + [sym_visibility] = STATE(11858), + [sym_single_line_if_statement] = STATE(6125), + [sym_inline_statement_sequence] = STATE(6305), + [sym__inline_statement] = STATE(6125), + [sym_for_statement] = STATE(6125), + [sym__inline_for_statement] = STATE(6929), + [sym_for_each_statement] = STATE(6125), + [sym__inline_for_each_statement] = STATE(6933), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(6125), + [sym__inline_do_statement] = STATE(6935), + [sym_while_statement] = STATE(6125), + [sym_with_statement] = STATE(6125), + [sym__inline_with_statement] = STATE(6938), + [sym_exit_statement] = STATE(6125), + [sym_on_error_statement] = STATE(6125), + [sym_resume_statement] = STATE(6125), + [sym_goto_statement] = STATE(6125), + [sym_line_number_prefix] = STATE(12383), + [sym_redim_statement] = STATE(6125), + [sym_erase_statement] = STATE(6125), + [sym_open_statement] = STATE(6125), + [sym_input_statement] = STATE(6125), + [sym_line_input_statement] = STATE(6125), + [sym_print_statement] = STATE(6125), + [sym_write_statement] = STATE(6125), + [sym_debug_print_statement] = STATE(6125), + [sym_close_statement] = STATE(6125), + [sym_get_statement] = STATE(6125), + [sym_put_statement] = STATE(6125), + [sym_lock_statement] = STATE(6125), + [sym_unlock_statement] = STATE(6125), + [sym_seek_statement] = STATE(6125), + [sym_raise_event_statement] = STATE(6125), + [sym_name_statement] = STATE(6125), + [sym_load_statement] = STATE(6125), + [sym_unload_statement] = STATE(6125), + [sym_set_statement] = STATE(6125), + [sym_assignment_statement] = STATE(6125), + [sym_call_statement] = STATE(6125), + [sym_expression_statement] = STATE(6125), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [sym_identifier] = ACTIONS(3374), + [anon_sym_COLON] = ACTIONS(3376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3378), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(3380), + [aux_sym_on_goto_statement_token1] = ACTIONS(3382), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(3384), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(3384), + [sym_beep_statement] = ACTIONS(3384), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(3386), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(220)] = { + [sym_variable_declaration] = STATE(6055), + [sym_const_declaration] = STATE(6055), + [sym_visibility] = STATE(11883), + [sym_single_line_if_statement] = STATE(6055), + [sym_inline_statement_sequence] = STATE(6859), + [sym__inline_statement] = STATE(6055), + [sym_for_statement] = STATE(6055), + [sym__inline_for_statement] = STATE(6824), + [sym_for_each_statement] = STATE(6055), + [sym__inline_for_each_statement] = STATE(6825), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(6055), + [sym__inline_do_statement] = STATE(6826), + [sym_while_statement] = STATE(6055), + [sym_with_statement] = STATE(6055), + [sym__inline_with_statement] = STATE(6827), + [sym_exit_statement] = STATE(6055), + [sym_on_error_statement] = STATE(6055), + [sym_resume_statement] = STATE(6055), + [sym_goto_statement] = STATE(6055), + [sym_line_number_prefix] = STATE(12388), + [sym_redim_statement] = STATE(6055), + [sym_erase_statement] = STATE(6055), + [sym_open_statement] = STATE(6055), + [sym_input_statement] = STATE(6055), + [sym_line_input_statement] = STATE(6055), + [sym_print_statement] = STATE(6055), + [sym_write_statement] = STATE(6055), + [sym_debug_print_statement] = STATE(6055), + [sym_close_statement] = STATE(6055), + [sym_get_statement] = STATE(6055), + [sym_put_statement] = STATE(6055), + [sym_lock_statement] = STATE(6055), + [sym_unlock_statement] = STATE(6055), + [sym_seek_statement] = STATE(6055), + [sym_raise_event_statement] = STATE(6055), + [sym_name_statement] = STATE(6055), + [sym_load_statement] = STATE(6055), + [sym_unload_statement] = STATE(6055), + [sym_set_statement] = STATE(6055), + [sym_assignment_statement] = STATE(6055), + [sym_call_statement] = STATE(6055), + [sym_expression_statement] = STATE(6055), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [sym_identifier] = ACTIONS(3430), + [anon_sym_COLON] = ACTIONS(3432), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3434), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(3436), + [aux_sym_on_goto_statement_token1] = ACTIONS(3438), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(3440), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(3440), + [sym_beep_statement] = ACTIONS(3440), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(3442), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(221)] = { + [sym_variable_declaration] = STATE(12226), + [sym_const_declaration] = STATE(12226), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12226), + [sym_inline_statement_sequence] = STATE(12556), + [sym__inline_statement] = STATE(12226), + [sym_for_statement] = STATE(12226), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12226), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11321), + [sym__for_each_header] = STATE(11322), + [sym_do_statement] = STATE(12226), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12226), + [sym_with_statement] = STATE(12226), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12226), + [sym_on_error_statement] = STATE(12226), + [sym_resume_statement] = STATE(12226), + [sym_goto_statement] = STATE(12226), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12226), + [sym_erase_statement] = STATE(12226), + [sym_open_statement] = STATE(12226), + [sym_input_statement] = STATE(12226), + [sym_line_input_statement] = STATE(12226), + [sym_print_statement] = STATE(12226), + [sym_write_statement] = STATE(12226), + [sym_debug_print_statement] = STATE(12226), + [sym_close_statement] = STATE(12226), + [sym_get_statement] = STATE(12226), + [sym_put_statement] = STATE(12226), + [sym_lock_statement] = STATE(12226), + [sym_unlock_statement] = STATE(12226), + [sym_seek_statement] = STATE(12226), + [sym_raise_event_statement] = STATE(12226), + [sym_name_statement] = STATE(12226), + [sym_load_statement] = STATE(12226), + [sym_unload_statement] = STATE(12226), + [sym_set_statement] = STATE(12226), + [sym_assignment_statement] = STATE(12226), + [sym_call_statement] = STATE(12226), + [sym_expression_statement] = STATE(12226), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7419), + [sym__print_method_callee] = STATE(7426), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10319), + [sym__implicit_print_method_expression] = STATE(10320), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10369), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10038), + [sym_qualified_member_expression] = STATE(10034), + [sym_implicit_member_expression] = STATE(10034), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3528), + [anon_sym_COLON] = ACTIONS(3530), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3540), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3568), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3574), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3584), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3594), + [aux_sym_close_statement_token1] = ACTIONS(3596), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3604), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3604), + [sym_beep_statement] = ACTIONS(3604), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(222)] = { + [sym_variable_declaration] = STATE(6113), + [sym_const_declaration] = STATE(6113), + [sym_visibility] = STATE(11928), + [sym_single_line_if_statement] = STATE(6113), + [sym_inline_statement_sequence] = STATE(6546), + [sym__inline_statement] = STATE(6113), + [sym_for_statement] = STATE(6113), + [sym__inline_for_statement] = STATE(7102), + [sym_for_each_statement] = STATE(6113), + [sym__inline_for_each_statement] = STATE(7103), + [sym__for_header] = STATE(11443), + [sym__for_each_header] = STATE(11444), + [sym_do_statement] = STATE(6113), + [sym__inline_do_statement] = STATE(7104), + [sym_while_statement] = STATE(6113), + [sym_with_statement] = STATE(6113), + [sym__inline_with_statement] = STATE(7105), + [sym_exit_statement] = STATE(6113), + [sym_on_error_statement] = STATE(6113), + [sym_resume_statement] = STATE(6113), + [sym_goto_statement] = STATE(6113), + [sym_line_number_prefix] = STATE(12396), + [sym_redim_statement] = STATE(6113), + [sym_erase_statement] = STATE(6113), + [sym_open_statement] = STATE(6113), + [sym_input_statement] = STATE(6113), + [sym_line_input_statement] = STATE(6113), + [sym_print_statement] = STATE(6113), + [sym_write_statement] = STATE(6113), + [sym_debug_print_statement] = STATE(6113), + [sym_close_statement] = STATE(6113), + [sym_get_statement] = STATE(6113), + [sym_put_statement] = STATE(6113), + [sym_lock_statement] = STATE(6113), + [sym_unlock_statement] = STATE(6113), + [sym_seek_statement] = STATE(6113), + [sym_raise_event_statement] = STATE(6113), + [sym_name_statement] = STATE(6113), + [sym_load_statement] = STATE(6113), + [sym_unload_statement] = STATE(6113), + [sym_set_statement] = STATE(6113), + [sym_assignment_statement] = STATE(6113), + [sym_call_statement] = STATE(6113), + [sym_expression_statement] = STATE(6113), + [sym__primary_expression] = STATE(3463), + [sym__expression] = STATE(3463), + [sym__assignable_expression] = STATE(14513), + [sym__callable_expression] = STATE(418), + [sym__print_method_callee] = STATE(501), + [sym__print_method_call_expression] = STATE(6993), + [sym__qualified_print_method_expression] = STATE(6708), + [sym__implicit_print_method_expression] = STATE(6710), + [sym__line_method_expression] = STATE(12255), + [sym_call_expression] = STATE(2892), + [sym_new_expression] = STATE(3463), + [sym_addressof_expression] = STATE(3463), + [sym_type_of_expression] = STATE(3463), + [sym_member_expression] = STATE(2545), + [sym_qualified_member_expression] = STATE(2265), + [sym_implicit_member_expression] = STATE(2265), + [sym_parenthesized_expression] = STATE(3463), + [sym_binary_expression] = STATE(3463), + [sym_unary_expression] = STATE(3463), + [sym__signed_unary_expression] = STATE(2479), + [sym__literal] = STATE(3463), + [sym_boolean_literal] = STATE(3463), + [sym_file_number_literal] = STATE(3463), + [sym_identifier] = ACTIONS(3416), + [anon_sym_COLON] = ACTIONS(3418), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1490), + [aux_sym__attribute_identifier_token1] = ACTIONS(1492), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3420), + [sym_static_modifier] = ACTIONS(1500), + [sym__dim_keyword] = ACTIONS(1502), + [sym__redim_keyword] = ACTIONS(1504), + [aux_sym_get_accessor_token1] = ACTIONS(1506), + [aux_sym_set_accessor_token1] = ACTIONS(1508), + [aux_sym_const_declaration_token1] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [aux_sym_as_type_clause_token2] = ACTIONS(1514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1516), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1526), + [aux_sym_do_condition_token1] = ACTIONS(1528), + [aux_sym_with_statement_token1] = ACTIONS(1530), + [aux_sym_exit_statement_token1] = ACTIONS(1532), + [sym_end_statement] = ACTIONS(3422), + [aux_sym_on_goto_statement_token1] = ACTIONS(3424), + [aux_sym_on_goto_statement_token2] = ACTIONS(1536), + [aux_sym_on_error_statement_token2] = ACTIONS(1538), + [sym__ambiguous_redim_statement] = ACTIONS(1540), + [aux_sym_erase_statement_token1] = ACTIONS(1542), + [aux_sym_open_statement_token1] = ACTIONS(1544), + [aux_sym_file_mode_token2] = ACTIONS(1546), + [aux_sym_file_access_token2] = ACTIONS(1548), + [aux_sym_file_lock_token2] = ACTIONS(1550), + [aux_sym_print_statement_token1] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1558), + [aux_sym_close_statement_token1] = ACTIONS(1560), + [aux_sym_put_statement_token1] = ACTIONS(1562), + [aux_sym_unlock_statement_token1] = ACTIONS(1564), + [aux_sym_seek_statement_token1] = ACTIONS(1566), + [sym_reset_statement] = ACTIONS(3426), + [aux_sym_raise_event_statement_token1] = ACTIONS(1570), + [sym_stop_statement] = ACTIONS(3426), + [sym_beep_statement] = ACTIONS(3426), + [aux_sym_unload_statement_token1] = ACTIONS(1572), + [aux_sym_call_statement_token1] = ACTIONS(1576), + [sym__ambiguous_call_statement] = ACTIONS(1578), + [aux_sym_addressof_expression_token1] = ACTIONS(1580), + [aux_sym_type_of_expression_token1] = ACTIONS(1582), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(1586), + [sym_number_literal] = ACTIONS(3428), + [aux_sym_boolean_literal_token1] = ACTIONS(1591), + [aux_sym_boolean_literal_token2] = ACTIONS(1591), + [sym_nothing_literal] = ACTIONS(1593), + [sym_null_literal] = ACTIONS(1593), + [sym_empty_literal] = ACTIONS(1593), + [sym_date_literal] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1595), + }, + [STATE(223)] = { + [sym_variable_declaration] = STATE(12237), + [sym_const_declaration] = STATE(12237), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12237), + [sym_inline_statement_sequence] = STATE(12603), + [sym__inline_statement] = STATE(12237), + [sym_for_statement] = STATE(12237), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12237), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11321), + [sym__for_each_header] = STATE(11322), + [sym_do_statement] = STATE(12237), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12237), + [sym_with_statement] = STATE(12237), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12237), + [sym_on_error_statement] = STATE(12237), + [sym_resume_statement] = STATE(12237), + [sym_goto_statement] = STATE(12237), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12237), + [sym_erase_statement] = STATE(12237), + [sym_open_statement] = STATE(12237), + [sym_input_statement] = STATE(12237), + [sym_line_input_statement] = STATE(12237), + [sym_print_statement] = STATE(12237), + [sym_write_statement] = STATE(12237), + [sym_debug_print_statement] = STATE(12237), + [sym_close_statement] = STATE(12237), + [sym_get_statement] = STATE(12237), + [sym_put_statement] = STATE(12237), + [sym_lock_statement] = STATE(12237), + [sym_unlock_statement] = STATE(12237), + [sym_seek_statement] = STATE(12237), + [sym_raise_event_statement] = STATE(12237), + [sym_name_statement] = STATE(12237), + [sym_load_statement] = STATE(12237), + [sym_unload_statement] = STATE(12237), + [sym_set_statement] = STATE(12237), + [sym_assignment_statement] = STATE(12237), + [sym_call_statement] = STATE(12237), + [sym_expression_statement] = STATE(12237), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7419), + [sym__print_method_callee] = STATE(7426), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10319), + [sym__implicit_print_method_expression] = STATE(10320), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10369), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10038), + [sym_qualified_member_expression] = STATE(10034), + [sym_implicit_member_expression] = STATE(10034), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3528), + [anon_sym_COLON] = ACTIONS(3630), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3540), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3632), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3574), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3584), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3594), + [aux_sym_close_statement_token1] = ACTIONS(3596), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3634), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3634), + [sym_beep_statement] = ACTIONS(3634), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(224)] = { + [sym_variable_declaration] = STATE(4263), + [sym_const_declaration] = STATE(4263), + [sym_visibility] = STATE(11839), + [sym_single_line_if_statement] = STATE(4263), + [sym_inline_statement_sequence] = STATE(4371), + [sym__inline_statement] = STATE(4263), + [sym_for_statement] = STATE(4263), + [sym__inline_for_statement] = STATE(4347), + [sym_for_each_statement] = STATE(4263), + [sym__inline_for_each_statement] = STATE(4348), + [sym__for_header] = STATE(11370), + [sym__for_each_header] = STATE(11371), + [sym_do_statement] = STATE(4263), + [sym__inline_do_statement] = STATE(4349), + [sym_while_statement] = STATE(4263), + [sym_with_statement] = STATE(4263), + [sym__inline_with_statement] = STATE(4350), + [sym_exit_statement] = STATE(4263), + [sym_on_error_statement] = STATE(4263), + [sym_resume_statement] = STATE(4263), + [sym_goto_statement] = STATE(4263), + [sym_line_number_prefix] = STATE(12390), + [sym_redim_statement] = STATE(4263), + [sym_erase_statement] = STATE(4263), + [sym_open_statement] = STATE(4263), + [sym_input_statement] = STATE(4263), + [sym_line_input_statement] = STATE(4263), + [sym_print_statement] = STATE(4263), + [sym_write_statement] = STATE(4263), + [sym_debug_print_statement] = STATE(4263), + [sym_close_statement] = STATE(4263), + [sym_get_statement] = STATE(4263), + [sym_put_statement] = STATE(4263), + [sym_lock_statement] = STATE(4263), + [sym_unlock_statement] = STATE(4263), + [sym_seek_statement] = STATE(4263), + [sym_raise_event_statement] = STATE(4263), + [sym_name_statement] = STATE(4263), + [sym_load_statement] = STATE(4263), + [sym_unload_statement] = STATE(4263), + [sym_set_statement] = STATE(4263), + [sym_assignment_statement] = STATE(4263), + [sym_call_statement] = STATE(4263), + [sym_expression_statement] = STATE(4263), + [sym__primary_expression] = STATE(2177), + [sym__expression] = STATE(2177), + [sym__assignable_expression] = STATE(14337), + [sym__callable_expression] = STATE(360), + [sym__print_method_callee] = STATE(363), + [sym__print_method_call_expression] = STATE(4521), + [sym__qualified_print_method_expression] = STATE(4522), + [sym__implicit_print_method_expression] = STATE(4523), + [sym__line_method_expression] = STATE(12218), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2177), + [sym_addressof_expression] = STATE(2177), + [sym_type_of_expression] = STATE(2177), + [sym_member_expression] = STATE(1381), + [sym_qualified_member_expression] = STATE(912), + [sym_implicit_member_expression] = STATE(912), + [sym_parenthesized_expression] = STATE(2177), + [sym_binary_expression] = STATE(2177), + [sym_unary_expression] = STATE(2177), + [sym__signed_unary_expression] = STATE(1199), + [sym__literal] = STATE(2177), + [sym_boolean_literal] = STATE(2177), + [sym_file_number_literal] = STATE(2177), + [sym_identifier] = ACTIONS(3326), + [anon_sym_COLON] = ACTIONS(3328), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [aux_sym__attribute_identifier_token1] = ACTIONS(431), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3330), + [sym_static_modifier] = ACTIONS(3332), + [sym__dim_keyword] = ACTIONS(451), + [sym__redim_keyword] = ACTIONS(453), + [aux_sym_get_accessor_token1] = ACTIONS(455), + [aux_sym_set_accessor_token1] = ACTIONS(457), + [aux_sym_const_declaration_token1] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [aux_sym_as_type_clause_token2] = ACTIONS(463), + [aux_sym_dotted_type_expression_token1] = ACTIONS(465), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(473), + [aux_sym_do_condition_token1] = ACTIONS(475), + [aux_sym_with_statement_token1] = ACTIONS(477), + [aux_sym_exit_statement_token1] = ACTIONS(479), + [sym_end_statement] = ACTIONS(3334), + [aux_sym_on_goto_statement_token1] = ACTIONS(3336), + [aux_sym_on_goto_statement_token2] = ACTIONS(483), + [aux_sym_on_error_statement_token2] = ACTIONS(485), + [sym__ambiguous_redim_statement] = ACTIONS(487), + [aux_sym_erase_statement_token1] = ACTIONS(489), + [aux_sym_open_statement_token1] = ACTIONS(491), + [aux_sym_file_mode_token2] = ACTIONS(493), + [aux_sym_file_access_token2] = ACTIONS(495), + [aux_sym_file_lock_token2] = ACTIONS(497), + [aux_sym_print_statement_token1] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_QMARK] = ACTIONS(505), + [aux_sym_close_statement_token1] = ACTIONS(507), + [aux_sym_put_statement_token1] = ACTIONS(509), + [aux_sym_unlock_statement_token1] = ACTIONS(511), + [aux_sym_seek_statement_token1] = ACTIONS(513), + [sym_reset_statement] = ACTIONS(3338), + [aux_sym_raise_event_statement_token1] = ACTIONS(517), + [sym_stop_statement] = ACTIONS(3338), + [sym_beep_statement] = ACTIONS(3338), + [aux_sym_unload_statement_token1] = ACTIONS(519), + [aux_sym_call_statement_token1] = ACTIONS(523), + [sym__ambiguous_call_statement] = ACTIONS(525), + [aux_sym_addressof_expression_token1] = ACTIONS(527), + [aux_sym_type_of_expression_token1] = ACTIONS(529), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(533), + [sym_number_literal] = ACTIONS(3340), + [aux_sym_boolean_literal_token1] = ACTIONS(537), + [aux_sym_boolean_literal_token2] = ACTIONS(537), + [sym_nothing_literal] = ACTIONS(539), + [sym_null_literal] = ACTIONS(539), + [sym_empty_literal] = ACTIONS(539), + [sym_date_literal] = ACTIONS(533), + [anon_sym_POUND] = ACTIONS(541), + }, + [STATE(225)] = { + [sym_variable_declaration] = STATE(6479), + [sym_const_declaration] = STATE(6479), + [sym_visibility] = STATE(11767), + [sym_single_line_if_statement] = STATE(6479), + [sym_inline_statement_sequence] = STATE(7161), + [sym__inline_statement] = STATE(6479), + [sym_for_statement] = STATE(6479), + [sym__inline_for_statement] = STATE(7222), + [sym_for_each_statement] = STATE(6479), + [sym__inline_for_each_statement] = STATE(7227), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(6479), + [sym__inline_do_statement] = STATE(7230), + [sym_while_statement] = STATE(6479), + [sym_with_statement] = STATE(6479), + [sym__inline_with_statement] = STATE(7233), + [sym_exit_statement] = STATE(6479), + [sym_on_error_statement] = STATE(6479), + [sym_resume_statement] = STATE(6479), + [sym_goto_statement] = STATE(6479), + [sym_line_number_prefix] = STATE(12265), + [sym_redim_statement] = STATE(6479), + [sym_erase_statement] = STATE(6479), + [sym_open_statement] = STATE(6479), + [sym_input_statement] = STATE(6479), + [sym_line_input_statement] = STATE(6479), + [sym_print_statement] = STATE(6479), + [sym_write_statement] = STATE(6479), + [sym_debug_print_statement] = STATE(6479), + [sym_close_statement] = STATE(6479), + [sym_get_statement] = STATE(6479), + [sym_put_statement] = STATE(6479), + [sym_lock_statement] = STATE(6479), + [sym_unlock_statement] = STATE(6479), + [sym_seek_statement] = STATE(6479), + [sym_raise_event_statement] = STATE(6479), + [sym_name_statement] = STATE(6479), + [sym_load_statement] = STATE(6479), + [sym_unload_statement] = STATE(6479), + [sym_set_statement] = STATE(6479), + [sym_assignment_statement] = STATE(6479), + [sym_call_statement] = STATE(6479), + [sym_expression_statement] = STATE(6479), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [sym_identifier] = ACTIONS(3452), + [anon_sym_COLON] = ACTIONS(3454), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3456), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(3458), + [aux_sym_on_goto_statement_token1] = ACTIONS(3460), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(3462), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(3462), + [sym_beep_statement] = ACTIONS(3462), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(3464), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(226)] = { + [sym_variable_declaration] = STATE(5861), + [sym_const_declaration] = STATE(5861), + [sym_visibility] = STATE(11869), + [sym_single_line_if_statement] = STATE(5861), + [sym_inline_statement_sequence] = STATE(6483), + [sym__inline_statement] = STATE(5861), + [sym_for_statement] = STATE(5861), + [sym__inline_for_statement] = STATE(6443), + [sym_for_each_statement] = STATE(5861), + [sym__inline_for_each_statement] = STATE(6445), + [sym__for_header] = STATE(11298), + [sym__for_each_header] = STATE(11310), + [sym_do_statement] = STATE(5861), + [sym__inline_do_statement] = STATE(6446), + [sym_while_statement] = STATE(5861), + [sym_with_statement] = STATE(5861), + [sym__inline_with_statement] = STATE(6447), + [sym_exit_statement] = STATE(5861), + [sym_on_error_statement] = STATE(5861), + [sym_resume_statement] = STATE(5861), + [sym_goto_statement] = STATE(5861), + [sym_line_number_prefix] = STATE(12386), + [sym_redim_statement] = STATE(5861), + [sym_erase_statement] = STATE(5861), + [sym_open_statement] = STATE(5861), + [sym_input_statement] = STATE(5861), + [sym_line_input_statement] = STATE(5861), + [sym_print_statement] = STATE(5861), + [sym_write_statement] = STATE(5861), + [sym_debug_print_statement] = STATE(5861), + [sym_close_statement] = STATE(5861), + [sym_get_statement] = STATE(5861), + [sym_put_statement] = STATE(5861), + [sym_lock_statement] = STATE(5861), + [sym_unlock_statement] = STATE(5861), + [sym_seek_statement] = STATE(5861), + [sym_raise_event_statement] = STATE(5861), + [sym_name_statement] = STATE(5861), + [sym_load_statement] = STATE(5861), + [sym_unload_statement] = STATE(5861), + [sym_set_statement] = STATE(5861), + [sym_assignment_statement] = STATE(5861), + [sym_call_statement] = STATE(5861), + [sym_expression_statement] = STATE(5861), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [sym_identifier] = ACTIONS(3402), + [anon_sym_COLON] = ACTIONS(3404), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3406), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(3408), + [aux_sym_on_goto_statement_token1] = ACTIONS(3410), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(3412), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(3412), + [sym_beep_statement] = ACTIONS(3412), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(3414), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(227)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(4363), + [sym__inline_for_statement] = STATE(4364), + [sym_for_each_statement] = STATE(4363), + [sym__inline_for_each_statement] = STATE(4365), + [sym__for_header] = STATE(11370), + [sym__for_each_header] = STATE(11371), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3646), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(228)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3662), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(229)] = { + [sym_variable_declaration] = STATE(5009), + [sym_const_declaration] = STATE(5009), + [sym_visibility] = STATE(11799), + [sym_single_line_if_statement] = STATE(5009), + [sym_inline_statement_sequence] = STATE(5679), + [sym__inline_statement] = STATE(5009), + [sym_for_statement] = STATE(5009), + [sym__inline_for_statement] = STATE(5568), + [sym_for_each_statement] = STATE(5009), + [sym__inline_for_each_statement] = STATE(5569), + [sym__for_header] = STATE(11307), + [sym__for_each_header] = STATE(11308), + [sym_do_statement] = STATE(5009), + [sym__inline_do_statement] = STATE(5570), + [sym_while_statement] = STATE(5009), + [sym_with_statement] = STATE(5009), + [sym__inline_with_statement] = STATE(5571), + [sym_exit_statement] = STATE(5009), + [sym_on_error_statement] = STATE(5009), + [sym_resume_statement] = STATE(5009), + [sym_goto_statement] = STATE(5009), + [sym_line_number_prefix] = STATE(12393), + [sym_redim_statement] = STATE(5009), + [sym_erase_statement] = STATE(5009), + [sym_open_statement] = STATE(5009), + [sym_input_statement] = STATE(5009), + [sym_line_input_statement] = STATE(5009), + [sym_print_statement] = STATE(5009), + [sym_write_statement] = STATE(5009), + [sym_debug_print_statement] = STATE(5009), + [sym_close_statement] = STATE(5009), + [sym_get_statement] = STATE(5009), + [sym_put_statement] = STATE(5009), + [sym_lock_statement] = STATE(5009), + [sym_unlock_statement] = STATE(5009), + [sym_seek_statement] = STATE(5009), + [sym_raise_event_statement] = STATE(5009), + [sym_name_statement] = STATE(5009), + [sym_load_statement] = STATE(5009), + [sym_unload_statement] = STATE(5009), + [sym_set_statement] = STATE(5009), + [sym_assignment_statement] = STATE(5009), + [sym_call_statement] = STATE(5009), + [sym_expression_statement] = STATE(5009), + [sym__primary_expression] = STATE(2614), + [sym__expression] = STATE(2614), + [sym__assignable_expression] = STATE(14425), + [sym__callable_expression] = STATE(378), + [sym__print_method_callee] = STATE(393), + [sym__print_method_call_expression] = STATE(5499), + [sym__qualified_print_method_expression] = STATE(5500), + [sym__implicit_print_method_expression] = STATE(5501), + [sym__line_method_expression] = STATE(12228), + [sym_call_expression] = STATE(2293), + [sym_new_expression] = STATE(2614), + [sym_addressof_expression] = STATE(2614), + [sym_type_of_expression] = STATE(2614), + [sym_member_expression] = STATE(2211), + [sym_qualified_member_expression] = STATE(2182), + [sym_implicit_member_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2614), + [sym_binary_expression] = STATE(2614), + [sym_unary_expression] = STATE(2614), + [sym__signed_unary_expression] = STATE(2203), + [sym__literal] = STATE(2614), + [sym_boolean_literal] = STATE(2614), + [sym_file_number_literal] = STATE(2614), + [sym_identifier] = ACTIONS(3342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [aux_sym__attribute_identifier_token1] = ACTIONS(1069), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3346), + [sym_static_modifier] = ACTIONS(1079), + [sym__dim_keyword] = ACTIONS(1081), + [sym__redim_keyword] = ACTIONS(1083), + [aux_sym_get_accessor_token1] = ACTIONS(1085), + [aux_sym_set_accessor_token1] = ACTIONS(1087), + [aux_sym_const_declaration_token1] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_as_type_clause_token2] = ACTIONS(1093), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1095), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1103), + [aux_sym_do_condition_token1] = ACTIONS(1105), + [aux_sym_with_statement_token1] = ACTIONS(1107), + [aux_sym_exit_statement_token1] = ACTIONS(1109), + [sym_end_statement] = ACTIONS(3664), + [aux_sym_on_goto_statement_token1] = ACTIONS(3350), + [aux_sym_on_goto_statement_token2] = ACTIONS(1113), + [aux_sym_on_error_statement_token2] = ACTIONS(1115), + [sym__ambiguous_redim_statement] = ACTIONS(1117), + [aux_sym_erase_statement_token1] = ACTIONS(1119), + [aux_sym_open_statement_token1] = ACTIONS(1121), + [aux_sym_file_mode_token2] = ACTIONS(1123), + [aux_sym_file_access_token2] = ACTIONS(1125), + [aux_sym_file_lock_token2] = ACTIONS(1127), + [aux_sym_print_statement_token1] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [aux_sym_close_statement_token1] = ACTIONS(1137), + [aux_sym_put_statement_token1] = ACTIONS(1139), + [aux_sym_unlock_statement_token1] = ACTIONS(1141), + [aux_sym_seek_statement_token1] = ACTIONS(1143), + [sym_reset_statement] = ACTIONS(3666), + [aux_sym_raise_event_statement_token1] = ACTIONS(1147), + [sym_stop_statement] = ACTIONS(3666), + [sym_beep_statement] = ACTIONS(3666), + [aux_sym_unload_statement_token1] = ACTIONS(1149), + [aux_sym_call_statement_token1] = ACTIONS(1153), + [sym__ambiguous_call_statement] = ACTIONS(1155), + [aux_sym_addressof_expression_token1] = ACTIONS(1157), + [aux_sym_type_of_expression_token1] = ACTIONS(1159), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(3354), + [aux_sym_boolean_literal_token1] = ACTIONS(1167), + [aux_sym_boolean_literal_token2] = ACTIONS(1167), + [sym_nothing_literal] = ACTIONS(1169), + [sym_null_literal] = ACTIONS(1169), + [sym_empty_literal] = ACTIONS(1169), + [sym_date_literal] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(1171), + }, + [STATE(230)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3668), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(231)] = { + [sym_variable_declaration] = STATE(5027), + [sym_const_declaration] = STATE(5027), + [sym_visibility] = STATE(11799), + [sym_single_line_if_statement] = STATE(5027), + [sym_inline_statement_sequence] = STATE(5721), + [sym__inline_statement] = STATE(5027), + [sym_for_statement] = STATE(5027), + [sym__inline_for_statement] = STATE(5568), + [sym_for_each_statement] = STATE(5027), + [sym__inline_for_each_statement] = STATE(5569), + [sym__for_header] = STATE(11307), + [sym__for_each_header] = STATE(11308), + [sym_do_statement] = STATE(5027), + [sym__inline_do_statement] = STATE(5570), + [sym_while_statement] = STATE(5027), + [sym_with_statement] = STATE(5027), + [sym__inline_with_statement] = STATE(5571), + [sym_exit_statement] = STATE(5027), + [sym_on_error_statement] = STATE(5027), + [sym_resume_statement] = STATE(5027), + [sym_goto_statement] = STATE(5027), + [sym_line_number_prefix] = STATE(12393), + [sym_redim_statement] = STATE(5027), + [sym_erase_statement] = STATE(5027), + [sym_open_statement] = STATE(5027), + [sym_input_statement] = STATE(5027), + [sym_line_input_statement] = STATE(5027), + [sym_print_statement] = STATE(5027), + [sym_write_statement] = STATE(5027), + [sym_debug_print_statement] = STATE(5027), + [sym_close_statement] = STATE(5027), + [sym_get_statement] = STATE(5027), + [sym_put_statement] = STATE(5027), + [sym_lock_statement] = STATE(5027), + [sym_unlock_statement] = STATE(5027), + [sym_seek_statement] = STATE(5027), + [sym_raise_event_statement] = STATE(5027), + [sym_name_statement] = STATE(5027), + [sym_load_statement] = STATE(5027), + [sym_unload_statement] = STATE(5027), + [sym_set_statement] = STATE(5027), + [sym_assignment_statement] = STATE(5027), + [sym_call_statement] = STATE(5027), + [sym_expression_statement] = STATE(5027), + [sym__primary_expression] = STATE(2614), + [sym__expression] = STATE(2614), + [sym__assignable_expression] = STATE(14425), + [sym__callable_expression] = STATE(378), + [sym__print_method_callee] = STATE(393), + [sym__print_method_call_expression] = STATE(5499), + [sym__qualified_print_method_expression] = STATE(5500), + [sym__implicit_print_method_expression] = STATE(5501), + [sym__line_method_expression] = STATE(12228), + [sym_call_expression] = STATE(2293), + [sym_new_expression] = STATE(2614), + [sym_addressof_expression] = STATE(2614), + [sym_type_of_expression] = STATE(2614), + [sym_member_expression] = STATE(2211), + [sym_qualified_member_expression] = STATE(2182), + [sym_implicit_member_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2614), + [sym_binary_expression] = STATE(2614), + [sym_unary_expression] = STATE(2614), + [sym__signed_unary_expression] = STATE(2203), + [sym__literal] = STATE(2614), + [sym_boolean_literal] = STATE(2614), + [sym_file_number_literal] = STATE(2614), + [sym_identifier] = ACTIONS(3342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [aux_sym__attribute_identifier_token1] = ACTIONS(1069), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3346), + [sym_static_modifier] = ACTIONS(1079), + [sym__dim_keyword] = ACTIONS(1081), + [sym__redim_keyword] = ACTIONS(1083), + [aux_sym_get_accessor_token1] = ACTIONS(1085), + [aux_sym_set_accessor_token1] = ACTIONS(1087), + [aux_sym_const_declaration_token1] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_as_type_clause_token2] = ACTIONS(1093), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1095), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1103), + [aux_sym_do_condition_token1] = ACTIONS(1105), + [aux_sym_with_statement_token1] = ACTIONS(1107), + [aux_sym_exit_statement_token1] = ACTIONS(1109), + [sym_end_statement] = ACTIONS(3670), + [aux_sym_on_goto_statement_token1] = ACTIONS(3350), + [aux_sym_on_goto_statement_token2] = ACTIONS(1113), + [aux_sym_on_error_statement_token2] = ACTIONS(1115), + [sym__ambiguous_redim_statement] = ACTIONS(1117), + [aux_sym_erase_statement_token1] = ACTIONS(1119), + [aux_sym_open_statement_token1] = ACTIONS(1121), + [aux_sym_file_mode_token2] = ACTIONS(1123), + [aux_sym_file_access_token2] = ACTIONS(1125), + [aux_sym_file_lock_token2] = ACTIONS(1127), + [aux_sym_print_statement_token1] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [aux_sym_close_statement_token1] = ACTIONS(1137), + [aux_sym_put_statement_token1] = ACTIONS(1139), + [aux_sym_unlock_statement_token1] = ACTIONS(1141), + [aux_sym_seek_statement_token1] = ACTIONS(1143), + [sym_reset_statement] = ACTIONS(3672), + [aux_sym_raise_event_statement_token1] = ACTIONS(1147), + [sym_stop_statement] = ACTIONS(3672), + [sym_beep_statement] = ACTIONS(3672), + [aux_sym_unload_statement_token1] = ACTIONS(1149), + [aux_sym_call_statement_token1] = ACTIONS(1153), + [sym__ambiguous_call_statement] = ACTIONS(1155), + [aux_sym_addressof_expression_token1] = ACTIONS(1157), + [aux_sym_type_of_expression_token1] = ACTIONS(1159), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(3354), + [aux_sym_boolean_literal_token1] = ACTIONS(1167), + [aux_sym_boolean_literal_token2] = ACTIONS(1167), + [sym_nothing_literal] = ACTIONS(1169), + [sym_null_literal] = ACTIONS(1169), + [sym_empty_literal] = ACTIONS(1169), + [sym_date_literal] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(1171), + }, + [STATE(232)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(6470), + [sym__inline_for_statement] = STATE(6476), + [sym_for_each_statement] = STATE(6470), + [sym__inline_for_each_statement] = STATE(6510), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3674), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(233)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3676), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(234)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3678), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(235)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3680), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(236)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3682), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(237)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12488), + [sym__inline_for_statement] = STATE(12491), + [sym_for_each_statement] = STATE(12488), + [sym__inline_for_each_statement] = STATE(12492), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3684), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(238)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3686), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(239)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3688), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(240)] = { + [sym_variable_declaration] = STATE(6136), + [sym_const_declaration] = STATE(6136), + [sym_visibility] = STATE(11928), + [sym_single_line_if_statement] = STATE(6136), + [sym_inline_statement_sequence] = STATE(6719), + [sym__inline_statement] = STATE(6136), + [sym_for_statement] = STATE(6136), + [sym__inline_for_statement] = STATE(7102), + [sym_for_each_statement] = STATE(6136), + [sym__inline_for_each_statement] = STATE(7103), + [sym__for_header] = STATE(11443), + [sym__for_each_header] = STATE(11444), + [sym_do_statement] = STATE(6136), + [sym__inline_do_statement] = STATE(7104), + [sym_while_statement] = STATE(6136), + [sym_with_statement] = STATE(6136), + [sym__inline_with_statement] = STATE(7105), + [sym_exit_statement] = STATE(6136), + [sym_on_error_statement] = STATE(6136), + [sym_resume_statement] = STATE(6136), + [sym_goto_statement] = STATE(6136), + [sym_line_number_prefix] = STATE(12396), + [sym_redim_statement] = STATE(6136), + [sym_erase_statement] = STATE(6136), + [sym_open_statement] = STATE(6136), + [sym_input_statement] = STATE(6136), + [sym_line_input_statement] = STATE(6136), + [sym_print_statement] = STATE(6136), + [sym_write_statement] = STATE(6136), + [sym_debug_print_statement] = STATE(6136), + [sym_close_statement] = STATE(6136), + [sym_get_statement] = STATE(6136), + [sym_put_statement] = STATE(6136), + [sym_lock_statement] = STATE(6136), + [sym_unlock_statement] = STATE(6136), + [sym_seek_statement] = STATE(6136), + [sym_raise_event_statement] = STATE(6136), + [sym_name_statement] = STATE(6136), + [sym_load_statement] = STATE(6136), + [sym_unload_statement] = STATE(6136), + [sym_set_statement] = STATE(6136), + [sym_assignment_statement] = STATE(6136), + [sym_call_statement] = STATE(6136), + [sym_expression_statement] = STATE(6136), + [sym__primary_expression] = STATE(3463), + [sym__expression] = STATE(3463), + [sym__assignable_expression] = STATE(14513), + [sym__callable_expression] = STATE(418), + [sym__print_method_callee] = STATE(501), + [sym__print_method_call_expression] = STATE(6993), + [sym__qualified_print_method_expression] = STATE(6708), + [sym__implicit_print_method_expression] = STATE(6710), + [sym__line_method_expression] = STATE(12255), + [sym_call_expression] = STATE(2892), + [sym_new_expression] = STATE(3463), + [sym_addressof_expression] = STATE(3463), + [sym_type_of_expression] = STATE(3463), + [sym_member_expression] = STATE(2545), + [sym_qualified_member_expression] = STATE(2265), + [sym_implicit_member_expression] = STATE(2265), + [sym_parenthesized_expression] = STATE(3463), + [sym_binary_expression] = STATE(3463), + [sym_unary_expression] = STATE(3463), + [sym__signed_unary_expression] = STATE(2479), + [sym__literal] = STATE(3463), + [sym_boolean_literal] = STATE(3463), + [sym_file_number_literal] = STATE(3463), + [sym_identifier] = ACTIONS(3416), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1490), + [aux_sym__attribute_identifier_token1] = ACTIONS(1492), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3420), + [sym_static_modifier] = ACTIONS(1500), + [sym__dim_keyword] = ACTIONS(1502), + [sym__redim_keyword] = ACTIONS(1504), + [aux_sym_get_accessor_token1] = ACTIONS(1506), + [aux_sym_set_accessor_token1] = ACTIONS(1508), + [aux_sym_const_declaration_token1] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [aux_sym_as_type_clause_token2] = ACTIONS(1514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1516), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1526), + [aux_sym_do_condition_token1] = ACTIONS(1528), + [aux_sym_with_statement_token1] = ACTIONS(1530), + [aux_sym_exit_statement_token1] = ACTIONS(1532), + [sym_end_statement] = ACTIONS(3690), + [aux_sym_on_goto_statement_token1] = ACTIONS(3424), + [aux_sym_on_goto_statement_token2] = ACTIONS(1536), + [aux_sym_on_error_statement_token2] = ACTIONS(1538), + [sym__ambiguous_redim_statement] = ACTIONS(1540), + [aux_sym_erase_statement_token1] = ACTIONS(1542), + [aux_sym_open_statement_token1] = ACTIONS(1544), + [aux_sym_file_mode_token2] = ACTIONS(1546), + [aux_sym_file_access_token2] = ACTIONS(1548), + [aux_sym_file_lock_token2] = ACTIONS(1550), + [aux_sym_print_statement_token1] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1558), + [aux_sym_close_statement_token1] = ACTIONS(1560), + [aux_sym_put_statement_token1] = ACTIONS(1562), + [aux_sym_unlock_statement_token1] = ACTIONS(1564), + [aux_sym_seek_statement_token1] = ACTIONS(1566), + [sym_reset_statement] = ACTIONS(3692), + [aux_sym_raise_event_statement_token1] = ACTIONS(1570), + [sym_stop_statement] = ACTIONS(3692), + [sym_beep_statement] = ACTIONS(3692), + [aux_sym_unload_statement_token1] = ACTIONS(1572), + [aux_sym_call_statement_token1] = ACTIONS(1576), + [sym__ambiguous_call_statement] = ACTIONS(1578), + [aux_sym_addressof_expression_token1] = ACTIONS(1580), + [aux_sym_type_of_expression_token1] = ACTIONS(1582), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(1586), + [sym_number_literal] = ACTIONS(3428), + [aux_sym_boolean_literal_token1] = ACTIONS(1591), + [aux_sym_boolean_literal_token2] = ACTIONS(1591), + [sym_nothing_literal] = ACTIONS(1593), + [sym_null_literal] = ACTIONS(1593), + [sym_empty_literal] = ACTIONS(1593), + [sym_date_literal] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1595), + }, + [STATE(241)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3694), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(242)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3696), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(243)] = { + [sym_variable_declaration] = STATE(12239), + [sym_const_declaration] = STATE(12239), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12239), + [sym_inline_statement_sequence] = STATE(12772), + [sym__inline_statement] = STATE(12239), + [sym_for_statement] = STATE(12239), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12239), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11321), + [sym__for_each_header] = STATE(11322), + [sym_do_statement] = STATE(12239), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12239), + [sym_with_statement] = STATE(12239), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12239), + [sym_on_error_statement] = STATE(12239), + [sym_resume_statement] = STATE(12239), + [sym_goto_statement] = STATE(12239), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12239), + [sym_erase_statement] = STATE(12239), + [sym_open_statement] = STATE(12239), + [sym_input_statement] = STATE(12239), + [sym_line_input_statement] = STATE(12239), + [sym_print_statement] = STATE(12239), + [sym_write_statement] = STATE(12239), + [sym_debug_print_statement] = STATE(12239), + [sym_close_statement] = STATE(12239), + [sym_get_statement] = STATE(12239), + [sym_put_statement] = STATE(12239), + [sym_lock_statement] = STATE(12239), + [sym_unlock_statement] = STATE(12239), + [sym_seek_statement] = STATE(12239), + [sym_raise_event_statement] = STATE(12239), + [sym_name_statement] = STATE(12239), + [sym_load_statement] = STATE(12239), + [sym_unload_statement] = STATE(12239), + [sym_set_statement] = STATE(12239), + [sym_assignment_statement] = STATE(12239), + [sym_call_statement] = STATE(12239), + [sym_expression_statement] = STATE(12239), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7419), + [sym__print_method_callee] = STATE(7426), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10319), + [sym__implicit_print_method_expression] = STATE(10320), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10369), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10038), + [sym_qualified_member_expression] = STATE(10034), + [sym_implicit_member_expression] = STATE(10034), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3528), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3540), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3698), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3574), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3584), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3594), + [aux_sym_close_statement_token1] = ACTIONS(3596), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3700), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3700), + [sym_beep_statement] = ACTIONS(3700), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(244)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3702), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(245)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(7169), + [sym__inline_for_statement] = STATE(7175), + [sym_for_each_statement] = STATE(7169), + [sym__inline_for_each_statement] = STATE(7178), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3704), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(246)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(6464), + [sym__inline_for_statement] = STATE(6466), + [sym_for_each_statement] = STATE(6464), + [sym__inline_for_each_statement] = STATE(6467), + [sym__for_header] = STATE(11298), + [sym__for_each_header] = STATE(11310), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3706), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(247)] = { + [sym_variable_declaration] = STATE(12240), + [sym_const_declaration] = STATE(12240), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12240), + [sym_inline_statement_sequence] = STATE(12893), + [sym__inline_statement] = STATE(12240), + [sym_for_statement] = STATE(12240), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12240), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11321), + [sym__for_each_header] = STATE(11322), + [sym_do_statement] = STATE(12240), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12240), + [sym_with_statement] = STATE(12240), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12240), + [sym_on_error_statement] = STATE(12240), + [sym_resume_statement] = STATE(12240), + [sym_goto_statement] = STATE(12240), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12240), + [sym_erase_statement] = STATE(12240), + [sym_open_statement] = STATE(12240), + [sym_input_statement] = STATE(12240), + [sym_line_input_statement] = STATE(12240), + [sym_print_statement] = STATE(12240), + [sym_write_statement] = STATE(12240), + [sym_debug_print_statement] = STATE(12240), + [sym_close_statement] = STATE(12240), + [sym_get_statement] = STATE(12240), + [sym_put_statement] = STATE(12240), + [sym_lock_statement] = STATE(12240), + [sym_unlock_statement] = STATE(12240), + [sym_seek_statement] = STATE(12240), + [sym_raise_event_statement] = STATE(12240), + [sym_name_statement] = STATE(12240), + [sym_load_statement] = STATE(12240), + [sym_unload_statement] = STATE(12240), + [sym_set_statement] = STATE(12240), + [sym_assignment_statement] = STATE(12240), + [sym_call_statement] = STATE(12240), + [sym_expression_statement] = STATE(12240), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7419), + [sym__print_method_callee] = STATE(7426), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10319), + [sym__implicit_print_method_expression] = STATE(10320), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10369), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10038), + [sym_qualified_member_expression] = STATE(10034), + [sym_implicit_member_expression] = STATE(10034), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3528), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3540), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3708), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3574), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3584), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3594), + [aux_sym_close_statement_token1] = ACTIONS(3596), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3710), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3710), + [sym_beep_statement] = ACTIONS(3710), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(248)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3712), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(249)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3714), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(250)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3716), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(251)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3718), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(252)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(6289), + [sym__inline_for_statement] = STATE(6848), + [sym_for_each_statement] = STATE(6289), + [sym__inline_for_each_statement] = STATE(6849), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3720), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(253)] = { + [sym_variable_declaration] = STATE(3749), + [sym_const_declaration] = STATE(3749), + [sym_visibility] = STATE(11841), + [sym_single_line_if_statement] = STATE(3749), + [sym_inline_statement_sequence] = STATE(3997), + [sym__inline_statement] = STATE(3749), + [sym_for_statement] = STATE(3749), + [sym__inline_for_statement] = STATE(3853), + [sym_for_each_statement] = STATE(3749), + [sym__inline_for_each_statement] = STATE(3854), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(3749), + [sym__inline_do_statement] = STATE(3855), + [sym_while_statement] = STATE(3749), + [sym_with_statement] = STATE(3749), + [sym__inline_with_statement] = STATE(3856), + [sym_exit_statement] = STATE(3749), + [sym_on_error_statement] = STATE(3749), + [sym_resume_statement] = STATE(3749), + [sym_goto_statement] = STATE(3749), + [sym_line_number_prefix] = STATE(12380), + [sym_redim_statement] = STATE(3749), + [sym_erase_statement] = STATE(3749), + [sym_open_statement] = STATE(3749), + [sym_input_statement] = STATE(3749), + [sym_line_input_statement] = STATE(3749), + [sym_print_statement] = STATE(3749), + [sym_write_statement] = STATE(3749), + [sym_debug_print_statement] = STATE(3749), + [sym_close_statement] = STATE(3749), + [sym_get_statement] = STATE(3749), + [sym_put_statement] = STATE(3749), + [sym_lock_statement] = STATE(3749), + [sym_unlock_statement] = STATE(3749), + [sym_seek_statement] = STATE(3749), + [sym_raise_event_statement] = STATE(3749), + [sym_name_statement] = STATE(3749), + [sym_load_statement] = STATE(3749), + [sym_unload_statement] = STATE(3749), + [sym_set_statement] = STATE(3749), + [sym_assignment_statement] = STATE(3749), + [sym_call_statement] = STATE(3749), + [sym_expression_statement] = STATE(3749), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [sym_identifier] = ACTIONS(3290), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3298), + [sym_static_modifier] = ACTIONS(3300), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(3722), + [aux_sym_on_goto_statement_token1] = ACTIONS(3304), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(3724), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(3724), + [sym_beep_statement] = ACTIONS(3724), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(3308), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(254)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3726), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(255)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3728), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(256)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3730), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(257)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3732), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(258)] = { + [sym_variable_declaration] = STATE(3828), + [sym_const_declaration] = STATE(3828), + [sym_visibility] = STATE(11841), + [sym_single_line_if_statement] = STATE(3828), + [sym_inline_statement_sequence] = STATE(4032), + [sym__inline_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym__inline_for_statement] = STATE(3853), + [sym_for_each_statement] = STATE(3828), + [sym__inline_for_each_statement] = STATE(3854), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(3828), + [sym__inline_do_statement] = STATE(3855), + [sym_while_statement] = STATE(3828), + [sym_with_statement] = STATE(3828), + [sym__inline_with_statement] = STATE(3856), + [sym_exit_statement] = STATE(3828), + [sym_on_error_statement] = STATE(3828), + [sym_resume_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_line_number_prefix] = STATE(12380), + [sym_redim_statement] = STATE(3828), + [sym_erase_statement] = STATE(3828), + [sym_open_statement] = STATE(3828), + [sym_input_statement] = STATE(3828), + [sym_line_input_statement] = STATE(3828), + [sym_print_statement] = STATE(3828), + [sym_write_statement] = STATE(3828), + [sym_debug_print_statement] = STATE(3828), + [sym_close_statement] = STATE(3828), + [sym_get_statement] = STATE(3828), + [sym_put_statement] = STATE(3828), + [sym_lock_statement] = STATE(3828), + [sym_unlock_statement] = STATE(3828), + [sym_seek_statement] = STATE(3828), + [sym_raise_event_statement] = STATE(3828), + [sym_name_statement] = STATE(3828), + [sym_load_statement] = STATE(3828), + [sym_unload_statement] = STATE(3828), + [sym_set_statement] = STATE(3828), + [sym_assignment_statement] = STATE(3828), + [sym_call_statement] = STATE(3828), + [sym_expression_statement] = STATE(3828), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [sym_identifier] = ACTIONS(3290), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3298), + [sym_static_modifier] = ACTIONS(3300), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(3734), + [aux_sym_on_goto_statement_token1] = ACTIONS(3304), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(3736), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(3736), + [sym_beep_statement] = ACTIONS(3736), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(3308), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(259)] = { + [sym_variable_declaration] = STATE(6138), + [sym_const_declaration] = STATE(6138), + [sym_visibility] = STATE(11883), + [sym_single_line_if_statement] = STATE(6138), + [sym_inline_statement_sequence] = STATE(7063), + [sym__inline_statement] = STATE(6138), + [sym_for_statement] = STATE(6138), + [sym__inline_for_statement] = STATE(6824), + [sym_for_each_statement] = STATE(6138), + [sym__inline_for_each_statement] = STATE(6825), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(6138), + [sym__inline_do_statement] = STATE(6826), + [sym_while_statement] = STATE(6138), + [sym_with_statement] = STATE(6138), + [sym__inline_with_statement] = STATE(6827), + [sym_exit_statement] = STATE(6138), + [sym_on_error_statement] = STATE(6138), + [sym_resume_statement] = STATE(6138), + [sym_goto_statement] = STATE(6138), + [sym_line_number_prefix] = STATE(12388), + [sym_redim_statement] = STATE(6138), + [sym_erase_statement] = STATE(6138), + [sym_open_statement] = STATE(6138), + [sym_input_statement] = STATE(6138), + [sym_line_input_statement] = STATE(6138), + [sym_print_statement] = STATE(6138), + [sym_write_statement] = STATE(6138), + [sym_debug_print_statement] = STATE(6138), + [sym_close_statement] = STATE(6138), + [sym_get_statement] = STATE(6138), + [sym_put_statement] = STATE(6138), + [sym_lock_statement] = STATE(6138), + [sym_unlock_statement] = STATE(6138), + [sym_seek_statement] = STATE(6138), + [sym_raise_event_statement] = STATE(6138), + [sym_name_statement] = STATE(6138), + [sym_load_statement] = STATE(6138), + [sym_unload_statement] = STATE(6138), + [sym_set_statement] = STATE(6138), + [sym_assignment_statement] = STATE(6138), + [sym_call_statement] = STATE(6138), + [sym_expression_statement] = STATE(6138), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [sym_identifier] = ACTIONS(3430), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3434), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(3738), + [aux_sym_on_goto_statement_token1] = ACTIONS(3438), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(3740), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(3740), + [sym_beep_statement] = ACTIONS(3740), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(3442), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(260)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3742), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(261)] = { + [sym_variable_declaration] = STATE(6275), + [sym_const_declaration] = STATE(6275), + [sym_visibility] = STATE(12008), + [sym_single_line_if_statement] = STATE(6275), + [sym_inline_statement_sequence] = STATE(6873), + [sym__inline_statement] = STATE(6275), + [sym_for_statement] = STATE(6275), + [sym__inline_for_statement] = STATE(6530), + [sym_for_each_statement] = STATE(6275), + [sym__inline_for_each_statement] = STATE(6531), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(6275), + [sym__inline_do_statement] = STATE(6542), + [sym_while_statement] = STATE(6275), + [sym_with_statement] = STATE(6275), + [sym__inline_with_statement] = STATE(6543), + [sym_exit_statement] = STATE(6275), + [sym_on_error_statement] = STATE(6275), + [sym_resume_statement] = STATE(6275), + [sym_goto_statement] = STATE(6275), + [sym_line_number_prefix] = STATE(12398), + [sym_redim_statement] = STATE(6275), + [sym_erase_statement] = STATE(6275), + [sym_open_statement] = STATE(6275), + [sym_input_statement] = STATE(6275), + [sym_line_input_statement] = STATE(6275), + [sym_print_statement] = STATE(6275), + [sym_write_statement] = STATE(6275), + [sym_debug_print_statement] = STATE(6275), + [sym_close_statement] = STATE(6275), + [sym_get_statement] = STATE(6275), + [sym_put_statement] = STATE(6275), + [sym_lock_statement] = STATE(6275), + [sym_unlock_statement] = STATE(6275), + [sym_seek_statement] = STATE(6275), + [sym_raise_event_statement] = STATE(6275), + [sym_name_statement] = STATE(6275), + [sym_load_statement] = STATE(6275), + [sym_unload_statement] = STATE(6275), + [sym_set_statement] = STATE(6275), + [sym_assignment_statement] = STATE(6275), + [sym_call_statement] = STATE(6275), + [sym_expression_statement] = STATE(6275), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(3388), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3392), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3744), + [aux_sym_on_goto_statement_token1] = ACTIONS(3396), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3746), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3746), + [sym_beep_statement] = ACTIONS(3746), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(3400), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(262)] = { + [sym_variable_declaration] = STATE(3789), + [sym_const_declaration] = STATE(3789), + [sym_visibility] = STATE(11841), + [sym_single_line_if_statement] = STATE(3789), + [sym_inline_statement_sequence] = STATE(4089), + [sym__inline_statement] = STATE(3789), + [sym_for_statement] = STATE(3789), + [sym__inline_for_statement] = STATE(3853), + [sym_for_each_statement] = STATE(3789), + [sym__inline_for_each_statement] = STATE(3854), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(3789), + [sym__inline_do_statement] = STATE(3855), + [sym_while_statement] = STATE(3789), + [sym_with_statement] = STATE(3789), + [sym__inline_with_statement] = STATE(3856), + [sym_exit_statement] = STATE(3789), + [sym_on_error_statement] = STATE(3789), + [sym_resume_statement] = STATE(3789), + [sym_goto_statement] = STATE(3789), + [sym_line_number_prefix] = STATE(12380), + [sym_redim_statement] = STATE(3789), + [sym_erase_statement] = STATE(3789), + [sym_open_statement] = STATE(3789), + [sym_input_statement] = STATE(3789), + [sym_line_input_statement] = STATE(3789), + [sym_print_statement] = STATE(3789), + [sym_write_statement] = STATE(3789), + [sym_debug_print_statement] = STATE(3789), + [sym_close_statement] = STATE(3789), + [sym_get_statement] = STATE(3789), + [sym_put_statement] = STATE(3789), + [sym_lock_statement] = STATE(3789), + [sym_unlock_statement] = STATE(3789), + [sym_seek_statement] = STATE(3789), + [sym_raise_event_statement] = STATE(3789), + [sym_name_statement] = STATE(3789), + [sym_load_statement] = STATE(3789), + [sym_unload_statement] = STATE(3789), + [sym_set_statement] = STATE(3789), + [sym_assignment_statement] = STATE(3789), + [sym_call_statement] = STATE(3789), + [sym_expression_statement] = STATE(3789), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [sym_identifier] = ACTIONS(3290), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3298), + [sym_static_modifier] = ACTIONS(3300), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(3748), + [aux_sym_on_goto_statement_token1] = ACTIONS(3304), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(3750), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(3750), + [sym_beep_statement] = ACTIONS(3750), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(3308), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(263)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3752), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(264)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3754), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(265)] = { + [sym_variable_declaration] = STATE(5960), + [sym_const_declaration] = STATE(5960), + [sym_visibility] = STATE(11928), + [sym_single_line_if_statement] = STATE(5960), + [sym_inline_statement_sequence] = STATE(6664), + [sym__inline_statement] = STATE(5960), + [sym_for_statement] = STATE(5960), + [sym__inline_for_statement] = STATE(7102), + [sym_for_each_statement] = STATE(5960), + [sym__inline_for_each_statement] = STATE(7103), + [sym__for_header] = STATE(11443), + [sym__for_each_header] = STATE(11444), + [sym_do_statement] = STATE(5960), + [sym__inline_do_statement] = STATE(7104), + [sym_while_statement] = STATE(5960), + [sym_with_statement] = STATE(5960), + [sym__inline_with_statement] = STATE(7105), + [sym_exit_statement] = STATE(5960), + [sym_on_error_statement] = STATE(5960), + [sym_resume_statement] = STATE(5960), + [sym_goto_statement] = STATE(5960), + [sym_line_number_prefix] = STATE(12396), + [sym_redim_statement] = STATE(5960), + [sym_erase_statement] = STATE(5960), + [sym_open_statement] = STATE(5960), + [sym_input_statement] = STATE(5960), + [sym_line_input_statement] = STATE(5960), + [sym_print_statement] = STATE(5960), + [sym_write_statement] = STATE(5960), + [sym_debug_print_statement] = STATE(5960), + [sym_close_statement] = STATE(5960), + [sym_get_statement] = STATE(5960), + [sym_put_statement] = STATE(5960), + [sym_lock_statement] = STATE(5960), + [sym_unlock_statement] = STATE(5960), + [sym_seek_statement] = STATE(5960), + [sym_raise_event_statement] = STATE(5960), + [sym_name_statement] = STATE(5960), + [sym_load_statement] = STATE(5960), + [sym_unload_statement] = STATE(5960), + [sym_set_statement] = STATE(5960), + [sym_assignment_statement] = STATE(5960), + [sym_call_statement] = STATE(5960), + [sym_expression_statement] = STATE(5960), + [sym__primary_expression] = STATE(3463), + [sym__expression] = STATE(3463), + [sym__assignable_expression] = STATE(14513), + [sym__callable_expression] = STATE(418), + [sym__print_method_callee] = STATE(501), + [sym__print_method_call_expression] = STATE(6993), + [sym__qualified_print_method_expression] = STATE(6708), + [sym__implicit_print_method_expression] = STATE(6710), + [sym__line_method_expression] = STATE(12255), + [sym_call_expression] = STATE(2892), + [sym_new_expression] = STATE(3463), + [sym_addressof_expression] = STATE(3463), + [sym_type_of_expression] = STATE(3463), + [sym_member_expression] = STATE(2545), + [sym_qualified_member_expression] = STATE(2265), + [sym_implicit_member_expression] = STATE(2265), + [sym_parenthesized_expression] = STATE(3463), + [sym_binary_expression] = STATE(3463), + [sym_unary_expression] = STATE(3463), + [sym__signed_unary_expression] = STATE(2479), + [sym__literal] = STATE(3463), + [sym_boolean_literal] = STATE(3463), + [sym_file_number_literal] = STATE(3463), + [sym_identifier] = ACTIONS(3416), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1490), + [aux_sym__attribute_identifier_token1] = ACTIONS(1492), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3420), + [sym_static_modifier] = ACTIONS(1500), + [sym__dim_keyword] = ACTIONS(1502), + [sym__redim_keyword] = ACTIONS(1504), + [aux_sym_get_accessor_token1] = ACTIONS(1506), + [aux_sym_set_accessor_token1] = ACTIONS(1508), + [aux_sym_const_declaration_token1] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [aux_sym_as_type_clause_token2] = ACTIONS(1514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1516), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1526), + [aux_sym_do_condition_token1] = ACTIONS(1528), + [aux_sym_with_statement_token1] = ACTIONS(1530), + [aux_sym_exit_statement_token1] = ACTIONS(1532), + [sym_end_statement] = ACTIONS(3756), + [aux_sym_on_goto_statement_token1] = ACTIONS(3424), + [aux_sym_on_goto_statement_token2] = ACTIONS(1536), + [aux_sym_on_error_statement_token2] = ACTIONS(1538), + [sym__ambiguous_redim_statement] = ACTIONS(1540), + [aux_sym_erase_statement_token1] = ACTIONS(1542), + [aux_sym_open_statement_token1] = ACTIONS(1544), + [aux_sym_file_mode_token2] = ACTIONS(1546), + [aux_sym_file_access_token2] = ACTIONS(1548), + [aux_sym_file_lock_token2] = ACTIONS(1550), + [aux_sym_print_statement_token1] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1558), + [aux_sym_close_statement_token1] = ACTIONS(1560), + [aux_sym_put_statement_token1] = ACTIONS(1562), + [aux_sym_unlock_statement_token1] = ACTIONS(1564), + [aux_sym_seek_statement_token1] = ACTIONS(1566), + [sym_reset_statement] = ACTIONS(3758), + [aux_sym_raise_event_statement_token1] = ACTIONS(1570), + [sym_stop_statement] = ACTIONS(3758), + [sym_beep_statement] = ACTIONS(3758), + [aux_sym_unload_statement_token1] = ACTIONS(1572), + [aux_sym_call_statement_token1] = ACTIONS(1576), + [sym__ambiguous_call_statement] = ACTIONS(1578), + [aux_sym_addressof_expression_token1] = ACTIONS(1580), + [aux_sym_type_of_expression_token1] = ACTIONS(1582), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(1586), + [sym_number_literal] = ACTIONS(3428), + [aux_sym_boolean_literal_token1] = ACTIONS(1591), + [aux_sym_boolean_literal_token2] = ACTIONS(1591), + [sym_nothing_literal] = ACTIONS(1593), + [sym_null_literal] = ACTIONS(1593), + [sym_empty_literal] = ACTIONS(1593), + [sym_date_literal] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1595), + }, + [STATE(266)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3760), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(267)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(5580), + [sym__inline_for_statement] = STATE(5581), + [sym_for_each_statement] = STATE(5580), + [sym__inline_for_each_statement] = STATE(5582), + [sym__for_header] = STATE(11307), + [sym__for_each_header] = STATE(11308), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3762), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(268)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3764), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(269)] = { + [sym_variable_declaration] = STATE(5905), + [sym_const_declaration] = STATE(5905), + [sym_visibility] = STATE(11928), + [sym_single_line_if_statement] = STATE(5905), + [sym_inline_statement_sequence] = STATE(6878), + [sym__inline_statement] = STATE(5905), + [sym_for_statement] = STATE(5905), + [sym__inline_for_statement] = STATE(7102), + [sym_for_each_statement] = STATE(5905), + [sym__inline_for_each_statement] = STATE(7103), + [sym__for_header] = STATE(11443), + [sym__for_each_header] = STATE(11444), + [sym_do_statement] = STATE(5905), + [sym__inline_do_statement] = STATE(7104), + [sym_while_statement] = STATE(5905), + [sym_with_statement] = STATE(5905), + [sym__inline_with_statement] = STATE(7105), + [sym_exit_statement] = STATE(5905), + [sym_on_error_statement] = STATE(5905), + [sym_resume_statement] = STATE(5905), + [sym_goto_statement] = STATE(5905), + [sym_line_number_prefix] = STATE(12396), + [sym_redim_statement] = STATE(5905), + [sym_erase_statement] = STATE(5905), + [sym_open_statement] = STATE(5905), + [sym_input_statement] = STATE(5905), + [sym_line_input_statement] = STATE(5905), + [sym_print_statement] = STATE(5905), + [sym_write_statement] = STATE(5905), + [sym_debug_print_statement] = STATE(5905), + [sym_close_statement] = STATE(5905), + [sym_get_statement] = STATE(5905), + [sym_put_statement] = STATE(5905), + [sym_lock_statement] = STATE(5905), + [sym_unlock_statement] = STATE(5905), + [sym_seek_statement] = STATE(5905), + [sym_raise_event_statement] = STATE(5905), + [sym_name_statement] = STATE(5905), + [sym_load_statement] = STATE(5905), + [sym_unload_statement] = STATE(5905), + [sym_set_statement] = STATE(5905), + [sym_assignment_statement] = STATE(5905), + [sym_call_statement] = STATE(5905), + [sym_expression_statement] = STATE(5905), + [sym__primary_expression] = STATE(3463), + [sym__expression] = STATE(3463), + [sym__assignable_expression] = STATE(14513), + [sym__callable_expression] = STATE(418), + [sym__print_method_callee] = STATE(501), + [sym__print_method_call_expression] = STATE(6993), + [sym__qualified_print_method_expression] = STATE(6708), + [sym__implicit_print_method_expression] = STATE(6710), + [sym__line_method_expression] = STATE(12255), + [sym_call_expression] = STATE(2892), + [sym_new_expression] = STATE(3463), + [sym_addressof_expression] = STATE(3463), + [sym_type_of_expression] = STATE(3463), + [sym_member_expression] = STATE(2545), + [sym_qualified_member_expression] = STATE(2265), + [sym_implicit_member_expression] = STATE(2265), + [sym_parenthesized_expression] = STATE(3463), + [sym_binary_expression] = STATE(3463), + [sym_unary_expression] = STATE(3463), + [sym__signed_unary_expression] = STATE(2479), + [sym__literal] = STATE(3463), + [sym_boolean_literal] = STATE(3463), + [sym_file_number_literal] = STATE(3463), + [sym_identifier] = ACTIONS(3416), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1490), + [aux_sym__attribute_identifier_token1] = ACTIONS(1492), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3420), + [sym_static_modifier] = ACTIONS(1500), + [sym__dim_keyword] = ACTIONS(1502), + [sym__redim_keyword] = ACTIONS(1504), + [aux_sym_get_accessor_token1] = ACTIONS(1506), + [aux_sym_set_accessor_token1] = ACTIONS(1508), + [aux_sym_const_declaration_token1] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [aux_sym_as_type_clause_token2] = ACTIONS(1514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1516), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1526), + [aux_sym_do_condition_token1] = ACTIONS(1528), + [aux_sym_with_statement_token1] = ACTIONS(1530), + [aux_sym_exit_statement_token1] = ACTIONS(1532), + [sym_end_statement] = ACTIONS(3766), + [aux_sym_on_goto_statement_token1] = ACTIONS(3424), + [aux_sym_on_goto_statement_token2] = ACTIONS(1536), + [aux_sym_on_error_statement_token2] = ACTIONS(1538), + [sym__ambiguous_redim_statement] = ACTIONS(1540), + [aux_sym_erase_statement_token1] = ACTIONS(1542), + [aux_sym_open_statement_token1] = ACTIONS(1544), + [aux_sym_file_mode_token2] = ACTIONS(1546), + [aux_sym_file_access_token2] = ACTIONS(1548), + [aux_sym_file_lock_token2] = ACTIONS(1550), + [aux_sym_print_statement_token1] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1558), + [aux_sym_close_statement_token1] = ACTIONS(1560), + [aux_sym_put_statement_token1] = ACTIONS(1562), + [aux_sym_unlock_statement_token1] = ACTIONS(1564), + [aux_sym_seek_statement_token1] = ACTIONS(1566), + [sym_reset_statement] = ACTIONS(3768), + [aux_sym_raise_event_statement_token1] = ACTIONS(1570), + [sym_stop_statement] = ACTIONS(3768), + [sym_beep_statement] = ACTIONS(3768), + [aux_sym_unload_statement_token1] = ACTIONS(1572), + [aux_sym_call_statement_token1] = ACTIONS(1576), + [sym__ambiguous_call_statement] = ACTIONS(1578), + [aux_sym_addressof_expression_token1] = ACTIONS(1580), + [aux_sym_type_of_expression_token1] = ACTIONS(1582), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(1586), + [sym_number_literal] = ACTIONS(3428), + [aux_sym_boolean_literal_token1] = ACTIONS(1591), + [aux_sym_boolean_literal_token2] = ACTIONS(1591), + [sym_nothing_literal] = ACTIONS(1593), + [sym_null_literal] = ACTIONS(1593), + [sym_empty_literal] = ACTIONS(1593), + [sym_date_literal] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1595), + }, + [STATE(270)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3770), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(271)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3772), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(272)] = { + [sym_variable_declaration] = STATE(5957), + [sym_const_declaration] = STATE(5957), + [sym_visibility] = STATE(11858), + [sym_single_line_if_statement] = STATE(5957), + [sym_inline_statement_sequence] = STATE(6614), + [sym__inline_statement] = STATE(5957), + [sym_for_statement] = STATE(5957), + [sym__inline_for_statement] = STATE(6929), + [sym_for_each_statement] = STATE(5957), + [sym__inline_for_each_statement] = STATE(6933), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(5957), + [sym__inline_do_statement] = STATE(6935), + [sym_while_statement] = STATE(5957), + [sym_with_statement] = STATE(5957), + [sym__inline_with_statement] = STATE(6938), + [sym_exit_statement] = STATE(5957), + [sym_on_error_statement] = STATE(5957), + [sym_resume_statement] = STATE(5957), + [sym_goto_statement] = STATE(5957), + [sym_line_number_prefix] = STATE(12383), + [sym_redim_statement] = STATE(5957), + [sym_erase_statement] = STATE(5957), + [sym_open_statement] = STATE(5957), + [sym_input_statement] = STATE(5957), + [sym_line_input_statement] = STATE(5957), + [sym_print_statement] = STATE(5957), + [sym_write_statement] = STATE(5957), + [sym_debug_print_statement] = STATE(5957), + [sym_close_statement] = STATE(5957), + [sym_get_statement] = STATE(5957), + [sym_put_statement] = STATE(5957), + [sym_lock_statement] = STATE(5957), + [sym_unlock_statement] = STATE(5957), + [sym_seek_statement] = STATE(5957), + [sym_raise_event_statement] = STATE(5957), + [sym_name_statement] = STATE(5957), + [sym_load_statement] = STATE(5957), + [sym_unload_statement] = STATE(5957), + [sym_set_statement] = STATE(5957), + [sym_assignment_statement] = STATE(5957), + [sym_call_statement] = STATE(5957), + [sym_expression_statement] = STATE(5957), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [sym_identifier] = ACTIONS(3374), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3378), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(3774), + [aux_sym_on_goto_statement_token1] = ACTIONS(3382), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(3776), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(3776), + [sym_beep_statement] = ACTIONS(3776), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(3386), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(273)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3778), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(274)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(3839), + [sym__inline_for_statement] = STATE(3729), + [sym_for_each_statement] = STATE(3839), + [sym__inline_for_each_statement] = STATE(3767), + [sym__for_header] = STATE(11511), + [sym__for_each_header] = STATE(11512), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3780), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(275)] = { + [sym_variable_declaration] = STATE(5971), + [sym_const_declaration] = STATE(5971), + [sym_visibility] = STATE(11858), + [sym_single_line_if_statement] = STATE(5971), + [sym_inline_statement_sequence] = STATE(7037), + [sym__inline_statement] = STATE(5971), + [sym_for_statement] = STATE(5971), + [sym__inline_for_statement] = STATE(6929), + [sym_for_each_statement] = STATE(5971), + [sym__inline_for_each_statement] = STATE(6933), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(5971), + [sym__inline_do_statement] = STATE(6935), + [sym_while_statement] = STATE(5971), + [sym_with_statement] = STATE(5971), + [sym__inline_with_statement] = STATE(6938), + [sym_exit_statement] = STATE(5971), + [sym_on_error_statement] = STATE(5971), + [sym_resume_statement] = STATE(5971), + [sym_goto_statement] = STATE(5971), + [sym_line_number_prefix] = STATE(12383), + [sym_redim_statement] = STATE(5971), + [sym_erase_statement] = STATE(5971), + [sym_open_statement] = STATE(5971), + [sym_input_statement] = STATE(5971), + [sym_line_input_statement] = STATE(5971), + [sym_print_statement] = STATE(5971), + [sym_write_statement] = STATE(5971), + [sym_debug_print_statement] = STATE(5971), + [sym_close_statement] = STATE(5971), + [sym_get_statement] = STATE(5971), + [sym_put_statement] = STATE(5971), + [sym_lock_statement] = STATE(5971), + [sym_unlock_statement] = STATE(5971), + [sym_seek_statement] = STATE(5971), + [sym_raise_event_statement] = STATE(5971), + [sym_name_statement] = STATE(5971), + [sym_load_statement] = STATE(5971), + [sym_unload_statement] = STATE(5971), + [sym_set_statement] = STATE(5971), + [sym_assignment_statement] = STATE(5971), + [sym_call_statement] = STATE(5971), + [sym_expression_statement] = STATE(5971), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [sym_identifier] = ACTIONS(3374), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3378), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(3782), + [aux_sym_on_goto_statement_token1] = ACTIONS(3382), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(3784), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(3784), + [sym_beep_statement] = ACTIONS(3784), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(3386), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(276)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3786), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(277)] = { + [sym_variable_declaration] = STATE(5845), + [sym_const_declaration] = STATE(5845), + [sym_visibility] = STATE(12008), + [sym_single_line_if_statement] = STATE(5845), + [sym_inline_statement_sequence] = STATE(7028), + [sym__inline_statement] = STATE(5845), + [sym_for_statement] = STATE(5845), + [sym__inline_for_statement] = STATE(6530), + [sym_for_each_statement] = STATE(5845), + [sym__inline_for_each_statement] = STATE(6531), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(5845), + [sym__inline_do_statement] = STATE(6542), + [sym_while_statement] = STATE(5845), + [sym_with_statement] = STATE(5845), + [sym__inline_with_statement] = STATE(6543), + [sym_exit_statement] = STATE(5845), + [sym_on_error_statement] = STATE(5845), + [sym_resume_statement] = STATE(5845), + [sym_goto_statement] = STATE(5845), + [sym_line_number_prefix] = STATE(12398), + [sym_redim_statement] = STATE(5845), + [sym_erase_statement] = STATE(5845), + [sym_open_statement] = STATE(5845), + [sym_input_statement] = STATE(5845), + [sym_line_input_statement] = STATE(5845), + [sym_print_statement] = STATE(5845), + [sym_write_statement] = STATE(5845), + [sym_debug_print_statement] = STATE(5845), + [sym_close_statement] = STATE(5845), + [sym_get_statement] = STATE(5845), + [sym_put_statement] = STATE(5845), + [sym_lock_statement] = STATE(5845), + [sym_unlock_statement] = STATE(5845), + [sym_seek_statement] = STATE(5845), + [sym_raise_event_statement] = STATE(5845), + [sym_name_statement] = STATE(5845), + [sym_load_statement] = STATE(5845), + [sym_unload_statement] = STATE(5845), + [sym_set_statement] = STATE(5845), + [sym_assignment_statement] = STATE(5845), + [sym_call_statement] = STATE(5845), + [sym_expression_statement] = STATE(5845), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(3388), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3392), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3788), + [aux_sym_on_goto_statement_token1] = ACTIONS(3396), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3790), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3790), + [sym_beep_statement] = ACTIONS(3790), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(3400), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(278)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3792), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(279)] = { + [sym_variable_declaration] = STATE(5896), + [sym_const_declaration] = STATE(5896), + [sym_visibility] = STATE(12008), + [sym_single_line_if_statement] = STATE(5896), + [sym_inline_statement_sequence] = STATE(6357), + [sym__inline_statement] = STATE(5896), + [sym_for_statement] = STATE(5896), + [sym__inline_for_statement] = STATE(6530), + [sym_for_each_statement] = STATE(5896), + [sym__inline_for_each_statement] = STATE(6531), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(5896), + [sym__inline_do_statement] = STATE(6542), + [sym_while_statement] = STATE(5896), + [sym_with_statement] = STATE(5896), + [sym__inline_with_statement] = STATE(6543), + [sym_exit_statement] = STATE(5896), + [sym_on_error_statement] = STATE(5896), + [sym_resume_statement] = STATE(5896), + [sym_goto_statement] = STATE(5896), + [sym_line_number_prefix] = STATE(12398), + [sym_redim_statement] = STATE(5896), + [sym_erase_statement] = STATE(5896), + [sym_open_statement] = STATE(5896), + [sym_input_statement] = STATE(5896), + [sym_line_input_statement] = STATE(5896), + [sym_print_statement] = STATE(5896), + [sym_write_statement] = STATE(5896), + [sym_debug_print_statement] = STATE(5896), + [sym_close_statement] = STATE(5896), + [sym_get_statement] = STATE(5896), + [sym_put_statement] = STATE(5896), + [sym_lock_statement] = STATE(5896), + [sym_unlock_statement] = STATE(5896), + [sym_seek_statement] = STATE(5896), + [sym_raise_event_statement] = STATE(5896), + [sym_name_statement] = STATE(5896), + [sym_load_statement] = STATE(5896), + [sym_unload_statement] = STATE(5896), + [sym_set_statement] = STATE(5896), + [sym_assignment_statement] = STATE(5896), + [sym_call_statement] = STATE(5896), + [sym_expression_statement] = STATE(5896), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(3388), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3392), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3794), + [aux_sym_on_goto_statement_token1] = ACTIONS(3396), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3796), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3796), + [sym_beep_statement] = ACTIONS(3796), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(3400), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(280)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3798), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(281)] = { + [sym_variable_declaration] = STATE(4317), + [sym_const_declaration] = STATE(4317), + [sym_visibility] = STATE(11839), + [sym_single_line_if_statement] = STATE(4317), + [sym_inline_statement_sequence] = STATE(4410), + [sym__inline_statement] = STATE(4317), + [sym_for_statement] = STATE(4317), + [sym__inline_for_statement] = STATE(4347), + [sym_for_each_statement] = STATE(4317), + [sym__inline_for_each_statement] = STATE(4348), + [sym__for_header] = STATE(11370), + [sym__for_each_header] = STATE(11371), + [sym_do_statement] = STATE(4317), + [sym__inline_do_statement] = STATE(4349), + [sym_while_statement] = STATE(4317), + [sym_with_statement] = STATE(4317), + [sym__inline_with_statement] = STATE(4350), + [sym_exit_statement] = STATE(4317), + [sym_on_error_statement] = STATE(4317), + [sym_resume_statement] = STATE(4317), + [sym_goto_statement] = STATE(4317), + [sym_line_number_prefix] = STATE(12390), + [sym_redim_statement] = STATE(4317), + [sym_erase_statement] = STATE(4317), + [sym_open_statement] = STATE(4317), + [sym_input_statement] = STATE(4317), + [sym_line_input_statement] = STATE(4317), + [sym_print_statement] = STATE(4317), + [sym_write_statement] = STATE(4317), + [sym_debug_print_statement] = STATE(4317), + [sym_close_statement] = STATE(4317), + [sym_get_statement] = STATE(4317), + [sym_put_statement] = STATE(4317), + [sym_lock_statement] = STATE(4317), + [sym_unlock_statement] = STATE(4317), + [sym_seek_statement] = STATE(4317), + [sym_raise_event_statement] = STATE(4317), + [sym_name_statement] = STATE(4317), + [sym_load_statement] = STATE(4317), + [sym_unload_statement] = STATE(4317), + [sym_set_statement] = STATE(4317), + [sym_assignment_statement] = STATE(4317), + [sym_call_statement] = STATE(4317), + [sym_expression_statement] = STATE(4317), + [sym__primary_expression] = STATE(2177), + [sym__expression] = STATE(2177), + [sym__assignable_expression] = STATE(14337), + [sym__callable_expression] = STATE(360), + [sym__print_method_callee] = STATE(363), + [sym__print_method_call_expression] = STATE(4521), + [sym__qualified_print_method_expression] = STATE(4522), + [sym__implicit_print_method_expression] = STATE(4523), + [sym__line_method_expression] = STATE(12218), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2177), + [sym_addressof_expression] = STATE(2177), + [sym_type_of_expression] = STATE(2177), + [sym_member_expression] = STATE(1381), + [sym_qualified_member_expression] = STATE(912), + [sym_implicit_member_expression] = STATE(912), + [sym_parenthesized_expression] = STATE(2177), + [sym_binary_expression] = STATE(2177), + [sym_unary_expression] = STATE(2177), + [sym__signed_unary_expression] = STATE(1199), + [sym__literal] = STATE(2177), + [sym_boolean_literal] = STATE(2177), + [sym_file_number_literal] = STATE(2177), + [sym_identifier] = ACTIONS(3326), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [aux_sym__attribute_identifier_token1] = ACTIONS(431), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3330), + [sym_static_modifier] = ACTIONS(3332), + [sym__dim_keyword] = ACTIONS(451), + [sym__redim_keyword] = ACTIONS(453), + [aux_sym_get_accessor_token1] = ACTIONS(455), + [aux_sym_set_accessor_token1] = ACTIONS(457), + [aux_sym_const_declaration_token1] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [aux_sym_as_type_clause_token2] = ACTIONS(463), + [aux_sym_dotted_type_expression_token1] = ACTIONS(465), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(473), + [aux_sym_do_condition_token1] = ACTIONS(475), + [aux_sym_with_statement_token1] = ACTIONS(477), + [aux_sym_exit_statement_token1] = ACTIONS(479), + [sym_end_statement] = ACTIONS(3800), + [aux_sym_on_goto_statement_token1] = ACTIONS(3336), + [aux_sym_on_goto_statement_token2] = ACTIONS(483), + [aux_sym_on_error_statement_token2] = ACTIONS(485), + [sym__ambiguous_redim_statement] = ACTIONS(487), + [aux_sym_erase_statement_token1] = ACTIONS(489), + [aux_sym_open_statement_token1] = ACTIONS(491), + [aux_sym_file_mode_token2] = ACTIONS(493), + [aux_sym_file_access_token2] = ACTIONS(495), + [aux_sym_file_lock_token2] = ACTIONS(497), + [aux_sym_print_statement_token1] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_QMARK] = ACTIONS(505), + [aux_sym_close_statement_token1] = ACTIONS(507), + [aux_sym_put_statement_token1] = ACTIONS(509), + [aux_sym_unlock_statement_token1] = ACTIONS(511), + [aux_sym_seek_statement_token1] = ACTIONS(513), + [sym_reset_statement] = ACTIONS(3802), + [aux_sym_raise_event_statement_token1] = ACTIONS(517), + [sym_stop_statement] = ACTIONS(3802), + [sym_beep_statement] = ACTIONS(3802), + [aux_sym_unload_statement_token1] = ACTIONS(519), + [aux_sym_call_statement_token1] = ACTIONS(523), + [sym__ambiguous_call_statement] = ACTIONS(525), + [aux_sym_addressof_expression_token1] = ACTIONS(527), + [aux_sym_type_of_expression_token1] = ACTIONS(529), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(533), + [sym_number_literal] = ACTIONS(3340), + [aux_sym_boolean_literal_token1] = ACTIONS(537), + [aux_sym_boolean_literal_token2] = ACTIONS(537), + [sym_nothing_literal] = ACTIONS(539), + [sym_null_literal] = ACTIONS(539), + [sym_empty_literal] = ACTIONS(539), + [sym_date_literal] = ACTIONS(533), + [anon_sym_POUND] = ACTIONS(541), + }, + [STATE(282)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3804), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(283)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(5915), + [sym__inline_for_statement] = STATE(5991), + [sym_for_each_statement] = STATE(5915), + [sym__inline_for_each_statement] = STATE(5993), + [sym__for_header] = STATE(11565), + [sym__for_each_header] = STATE(11521), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3806), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(284)] = { + [sym_variable_declaration] = STATE(12256), + [sym_const_declaration] = STATE(12256), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12256), + [sym_inline_statement_sequence] = STATE(12660), + [sym__inline_statement] = STATE(12256), + [sym_for_statement] = STATE(12256), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12256), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11321), + [sym__for_each_header] = STATE(11322), + [sym_do_statement] = STATE(12256), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12256), + [sym_with_statement] = STATE(12256), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12256), + [sym_on_error_statement] = STATE(12256), + [sym_resume_statement] = STATE(12256), + [sym_goto_statement] = STATE(12256), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12256), + [sym_erase_statement] = STATE(12256), + [sym_open_statement] = STATE(12256), + [sym_input_statement] = STATE(12256), + [sym_line_input_statement] = STATE(12256), + [sym_print_statement] = STATE(12256), + [sym_write_statement] = STATE(12256), + [sym_debug_print_statement] = STATE(12256), + [sym_close_statement] = STATE(12256), + [sym_get_statement] = STATE(12256), + [sym_put_statement] = STATE(12256), + [sym_lock_statement] = STATE(12256), + [sym_unlock_statement] = STATE(12256), + [sym_seek_statement] = STATE(12256), + [sym_raise_event_statement] = STATE(12256), + [sym_name_statement] = STATE(12256), + [sym_load_statement] = STATE(12256), + [sym_unload_statement] = STATE(12256), + [sym_set_statement] = STATE(12256), + [sym_assignment_statement] = STATE(12256), + [sym_call_statement] = STATE(12256), + [sym_expression_statement] = STATE(12256), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7419), + [sym__print_method_callee] = STATE(7426), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10319), + [sym__implicit_print_method_expression] = STATE(10320), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10369), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10038), + [sym_qualified_member_expression] = STATE(10034), + [sym_implicit_member_expression] = STATE(10034), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3528), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3540), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3808), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3574), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3584), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3594), + [aux_sym_close_statement_token1] = ACTIONS(3596), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3810), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3810), + [sym_beep_statement] = ACTIONS(3810), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(285)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3812), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(286)] = { + [sym_variable_declaration] = STATE(12773), + [sym_const_declaration] = STATE(12773), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12773), + [sym_inline_statement_sequence] = STATE(12772), + [sym__inline_statement] = STATE(12773), + [sym_for_statement] = STATE(12773), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12773), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12773), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12773), + [sym_with_statement] = STATE(12773), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12773), + [sym_on_error_statement] = STATE(12773), + [sym_resume_statement] = STATE(12773), + [sym_goto_statement] = STATE(12773), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12773), + [sym_erase_statement] = STATE(12773), + [sym_open_statement] = STATE(12773), + [sym_input_statement] = STATE(12773), + [sym_line_input_statement] = STATE(12773), + [sym_print_statement] = STATE(12773), + [sym_write_statement] = STATE(12773), + [sym_debug_print_statement] = STATE(12773), + [sym_close_statement] = STATE(12773), + [sym_get_statement] = STATE(12773), + [sym_put_statement] = STATE(12773), + [sym_lock_statement] = STATE(12773), + [sym_unlock_statement] = STATE(12773), + [sym_seek_statement] = STATE(12773), + [sym_raise_event_statement] = STATE(12773), + [sym_name_statement] = STATE(12773), + [sym_load_statement] = STATE(12773), + [sym_unload_statement] = STATE(12773), + [sym_set_statement] = STATE(12773), + [sym_assignment_statement] = STATE(12773), + [sym_call_statement] = STATE(12773), + [sym_expression_statement] = STATE(12773), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3814), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3816), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3816), + [sym_beep_statement] = ACTIONS(3816), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(287)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3818), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(288)] = { + [sym_variable_declaration] = STATE(12896), + [sym_const_declaration] = STATE(12896), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12896), + [sym_inline_statement_sequence] = STATE(12893), + [sym__inline_statement] = STATE(12896), + [sym_for_statement] = STATE(12896), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12896), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12896), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12896), + [sym_with_statement] = STATE(12896), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12896), + [sym_on_error_statement] = STATE(12896), + [sym_resume_statement] = STATE(12896), + [sym_goto_statement] = STATE(12896), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12896), + [sym_erase_statement] = STATE(12896), + [sym_open_statement] = STATE(12896), + [sym_input_statement] = STATE(12896), + [sym_line_input_statement] = STATE(12896), + [sym_print_statement] = STATE(12896), + [sym_write_statement] = STATE(12896), + [sym_debug_print_statement] = STATE(12896), + [sym_close_statement] = STATE(12896), + [sym_get_statement] = STATE(12896), + [sym_put_statement] = STATE(12896), + [sym_lock_statement] = STATE(12896), + [sym_unlock_statement] = STATE(12896), + [sym_seek_statement] = STATE(12896), + [sym_raise_event_statement] = STATE(12896), + [sym_name_statement] = STATE(12896), + [sym_load_statement] = STATE(12896), + [sym_unload_statement] = STATE(12896), + [sym_set_statement] = STATE(12896), + [sym_assignment_statement] = STATE(12896), + [sym_call_statement] = STATE(12896), + [sym_expression_statement] = STATE(12896), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3820), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3822), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3822), + [sym_beep_statement] = ACTIONS(3822), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(289)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3824), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(290)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12488), + [sym__inline_for_statement] = STATE(12491), + [sym_for_each_statement] = STATE(12488), + [sym__inline_for_each_statement] = STATE(12492), + [sym__for_header] = STATE(11321), + [sym__for_each_header] = STATE(11322), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3826), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(291)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(6114), + [sym__inline_for_statement] = STATE(6116), + [sym_for_each_statement] = STATE(6114), + [sym__inline_for_each_statement] = STATE(6122), + [sym__for_header] = STATE(11267), + [sym__for_each_header] = STATE(11268), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3828), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(292)] = { + [sym_variable_declaration] = STATE(6900), + [sym_const_declaration] = STATE(6900), + [sym_visibility] = STATE(11767), + [sym_single_line_if_statement] = STATE(6900), + [sym_inline_statement_sequence] = STATE(7160), + [sym__inline_statement] = STATE(6900), + [sym_for_statement] = STATE(6900), + [sym__inline_for_statement] = STATE(7222), + [sym_for_each_statement] = STATE(6900), + [sym__inline_for_each_statement] = STATE(7227), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(6900), + [sym__inline_do_statement] = STATE(7230), + [sym_while_statement] = STATE(6900), + [sym_with_statement] = STATE(6900), + [sym__inline_with_statement] = STATE(7233), + [sym_exit_statement] = STATE(6900), + [sym_on_error_statement] = STATE(6900), + [sym_resume_statement] = STATE(6900), + [sym_goto_statement] = STATE(6900), + [sym_line_number_prefix] = STATE(12265), + [sym_redim_statement] = STATE(6900), + [sym_erase_statement] = STATE(6900), + [sym_open_statement] = STATE(6900), + [sym_input_statement] = STATE(6900), + [sym_line_input_statement] = STATE(6900), + [sym_print_statement] = STATE(6900), + [sym_write_statement] = STATE(6900), + [sym_debug_print_statement] = STATE(6900), + [sym_close_statement] = STATE(6900), + [sym_get_statement] = STATE(6900), + [sym_put_statement] = STATE(6900), + [sym_lock_statement] = STATE(6900), + [sym_unlock_statement] = STATE(6900), + [sym_seek_statement] = STATE(6900), + [sym_raise_event_statement] = STATE(6900), + [sym_name_statement] = STATE(6900), + [sym_load_statement] = STATE(6900), + [sym_unload_statement] = STATE(6900), + [sym_set_statement] = STATE(6900), + [sym_assignment_statement] = STATE(6900), + [sym_call_statement] = STATE(6900), + [sym_expression_statement] = STATE(6900), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [sym_identifier] = ACTIONS(3452), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3456), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(3830), + [aux_sym_on_goto_statement_token1] = ACTIONS(3460), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(3832), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(3832), + [sym_beep_statement] = ACTIONS(3832), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(3464), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(293)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(4282), + [sym__inline_for_statement] = STATE(4283), + [sym_for_each_statement] = STATE(4282), + [sym__inline_for_each_statement] = STATE(4284), + [sym__for_header] = STATE(11354), + [sym__for_each_header] = STATE(11356), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3834), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(294)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(5016), + [sym__inline_for_statement] = STATE(5017), + [sym_for_each_statement] = STATE(5016), + [sym__inline_for_each_statement] = STATE(5018), + [sym__for_header] = STATE(11408), + [sym__for_each_header] = STATE(11409), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3836), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(295)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(6453), + [sym__inline_for_statement] = STATE(6454), + [sym_for_each_statement] = STATE(6453), + [sym__inline_for_each_statement] = STATE(6455), + [sym__for_header] = STATE(11443), + [sym__for_each_header] = STATE(11444), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3838), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(296)] = { + [sym_variable_declaration] = STATE(5982), + [sym_const_declaration] = STATE(5982), + [sym_visibility] = STATE(11869), + [sym_single_line_if_statement] = STATE(5982), + [sym_inline_statement_sequence] = STATE(6547), + [sym__inline_statement] = STATE(5982), + [sym_for_statement] = STATE(5982), + [sym__inline_for_statement] = STATE(6443), + [sym_for_each_statement] = STATE(5982), + [sym__inline_for_each_statement] = STATE(6445), + [sym__for_header] = STATE(11298), + [sym__for_each_header] = STATE(11310), + [sym_do_statement] = STATE(5982), + [sym__inline_do_statement] = STATE(6446), + [sym_while_statement] = STATE(5982), + [sym_with_statement] = STATE(5982), + [sym__inline_with_statement] = STATE(6447), + [sym_exit_statement] = STATE(5982), + [sym_on_error_statement] = STATE(5982), + [sym_resume_statement] = STATE(5982), + [sym_goto_statement] = STATE(5982), + [sym_line_number_prefix] = STATE(12386), + [sym_redim_statement] = STATE(5982), + [sym_erase_statement] = STATE(5982), + [sym_open_statement] = STATE(5982), + [sym_input_statement] = STATE(5982), + [sym_line_input_statement] = STATE(5982), + [sym_print_statement] = STATE(5982), + [sym_write_statement] = STATE(5982), + [sym_debug_print_statement] = STATE(5982), + [sym_close_statement] = STATE(5982), + [sym_get_statement] = STATE(5982), + [sym_put_statement] = STATE(5982), + [sym_lock_statement] = STATE(5982), + [sym_unlock_statement] = STATE(5982), + [sym_seek_statement] = STATE(5982), + [sym_raise_event_statement] = STATE(5982), + [sym_name_statement] = STATE(5982), + [sym_load_statement] = STATE(5982), + [sym_unload_statement] = STATE(5982), + [sym_set_statement] = STATE(5982), + [sym_assignment_statement] = STATE(5982), + [sym_call_statement] = STATE(5982), + [sym_expression_statement] = STATE(5982), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [sym_identifier] = ACTIONS(3402), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3406), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(3840), + [aux_sym_on_goto_statement_token1] = ACTIONS(3410), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(3842), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(3842), + [sym_beep_statement] = ACTIONS(3842), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(3414), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(297)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(6556), + [sym__inline_for_statement] = STATE(6557), + [sym_for_each_statement] = STATE(6556), + [sym__inline_for_each_statement] = STATE(6559), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3844), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(298)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(6261), + [sym__inline_for_statement] = STATE(6262), + [sym_for_each_statement] = STATE(6261), + [sym__inline_for_each_statement] = STATE(6266), + [sym__for_header] = STATE(11483), + [sym__for_each_header] = STATE(11488), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3846), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(299)] = { + [sym_variable_declaration] = STATE(6050), + [sym_const_declaration] = STATE(6050), + [sym_visibility] = STATE(11869), + [sym_single_line_if_statement] = STATE(6050), + [sym_inline_statement_sequence] = STATE(6595), + [sym__inline_statement] = STATE(6050), + [sym_for_statement] = STATE(6050), + [sym__inline_for_statement] = STATE(6443), + [sym_for_each_statement] = STATE(6050), + [sym__inline_for_each_statement] = STATE(6445), + [sym__for_header] = STATE(11298), + [sym__for_each_header] = STATE(11310), + [sym_do_statement] = STATE(6050), + [sym__inline_do_statement] = STATE(6446), + [sym_while_statement] = STATE(6050), + [sym_with_statement] = STATE(6050), + [sym__inline_with_statement] = STATE(6447), + [sym_exit_statement] = STATE(6050), + [sym_on_error_statement] = STATE(6050), + [sym_resume_statement] = STATE(6050), + [sym_goto_statement] = STATE(6050), + [sym_line_number_prefix] = STATE(12386), + [sym_redim_statement] = STATE(6050), + [sym_erase_statement] = STATE(6050), + [sym_open_statement] = STATE(6050), + [sym_input_statement] = STATE(6050), + [sym_line_input_statement] = STATE(6050), + [sym_print_statement] = STATE(6050), + [sym_write_statement] = STATE(6050), + [sym_debug_print_statement] = STATE(6050), + [sym_close_statement] = STATE(6050), + [sym_get_statement] = STATE(6050), + [sym_put_statement] = STATE(6050), + [sym_lock_statement] = STATE(6050), + [sym_unlock_statement] = STATE(6050), + [sym_seek_statement] = STATE(6050), + [sym_raise_event_statement] = STATE(6050), + [sym_name_statement] = STATE(6050), + [sym_load_statement] = STATE(6050), + [sym_unload_statement] = STATE(6050), + [sym_set_statement] = STATE(6050), + [sym_assignment_statement] = STATE(6050), + [sym_call_statement] = STATE(6050), + [sym_expression_statement] = STATE(6050), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [sym_identifier] = ACTIONS(3402), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3406), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(3848), + [aux_sym_on_goto_statement_token1] = ACTIONS(3410), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(3850), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(3850), + [sym_beep_statement] = ACTIONS(3850), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(3414), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(300)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(6004), + [sym__inline_for_statement] = STATE(6006), + [sym_for_each_statement] = STATE(6004), + [sym__inline_for_each_statement] = STATE(6007), + [sym__for_header] = STATE(11519), + [sym__for_each_header] = STATE(11520), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3852), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(301)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3854), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(302)] = { + [sym_variable_declaration] = STATE(4222), + [sym_const_declaration] = STATE(4222), + [sym_visibility] = STATE(11839), + [sym_single_line_if_statement] = STATE(4222), + [sym_inline_statement_sequence] = STATE(4445), + [sym__inline_statement] = STATE(4222), + [sym_for_statement] = STATE(4222), + [sym__inline_for_statement] = STATE(4347), + [sym_for_each_statement] = STATE(4222), + [sym__inline_for_each_statement] = STATE(4348), + [sym__for_header] = STATE(11370), + [sym__for_each_header] = STATE(11371), + [sym_do_statement] = STATE(4222), + [sym__inline_do_statement] = STATE(4349), + [sym_while_statement] = STATE(4222), + [sym_with_statement] = STATE(4222), + [sym__inline_with_statement] = STATE(4350), + [sym_exit_statement] = STATE(4222), + [sym_on_error_statement] = STATE(4222), + [sym_resume_statement] = STATE(4222), + [sym_goto_statement] = STATE(4222), + [sym_line_number_prefix] = STATE(12390), + [sym_redim_statement] = STATE(4222), + [sym_erase_statement] = STATE(4222), + [sym_open_statement] = STATE(4222), + [sym_input_statement] = STATE(4222), + [sym_line_input_statement] = STATE(4222), + [sym_print_statement] = STATE(4222), + [sym_write_statement] = STATE(4222), + [sym_debug_print_statement] = STATE(4222), + [sym_close_statement] = STATE(4222), + [sym_get_statement] = STATE(4222), + [sym_put_statement] = STATE(4222), + [sym_lock_statement] = STATE(4222), + [sym_unlock_statement] = STATE(4222), + [sym_seek_statement] = STATE(4222), + [sym_raise_event_statement] = STATE(4222), + [sym_name_statement] = STATE(4222), + [sym_load_statement] = STATE(4222), + [sym_unload_statement] = STATE(4222), + [sym_set_statement] = STATE(4222), + [sym_assignment_statement] = STATE(4222), + [sym_call_statement] = STATE(4222), + [sym_expression_statement] = STATE(4222), + [sym__primary_expression] = STATE(2177), + [sym__expression] = STATE(2177), + [sym__assignable_expression] = STATE(14337), + [sym__callable_expression] = STATE(360), + [sym__print_method_callee] = STATE(363), + [sym__print_method_call_expression] = STATE(4521), + [sym__qualified_print_method_expression] = STATE(4522), + [sym__implicit_print_method_expression] = STATE(4523), + [sym__line_method_expression] = STATE(12218), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2177), + [sym_addressof_expression] = STATE(2177), + [sym_type_of_expression] = STATE(2177), + [sym_member_expression] = STATE(1381), + [sym_qualified_member_expression] = STATE(912), + [sym_implicit_member_expression] = STATE(912), + [sym_parenthesized_expression] = STATE(2177), + [sym_binary_expression] = STATE(2177), + [sym_unary_expression] = STATE(2177), + [sym__signed_unary_expression] = STATE(1199), + [sym__literal] = STATE(2177), + [sym_boolean_literal] = STATE(2177), + [sym_file_number_literal] = STATE(2177), + [sym_identifier] = ACTIONS(3326), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [aux_sym__attribute_identifier_token1] = ACTIONS(431), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3330), + [sym_static_modifier] = ACTIONS(3332), + [sym__dim_keyword] = ACTIONS(451), + [sym__redim_keyword] = ACTIONS(453), + [aux_sym_get_accessor_token1] = ACTIONS(455), + [aux_sym_set_accessor_token1] = ACTIONS(457), + [aux_sym_const_declaration_token1] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [aux_sym_as_type_clause_token2] = ACTIONS(463), + [aux_sym_dotted_type_expression_token1] = ACTIONS(465), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(473), + [aux_sym_do_condition_token1] = ACTIONS(475), + [aux_sym_with_statement_token1] = ACTIONS(477), + [aux_sym_exit_statement_token1] = ACTIONS(479), + [sym_end_statement] = ACTIONS(3856), + [aux_sym_on_goto_statement_token1] = ACTIONS(3336), + [aux_sym_on_goto_statement_token2] = ACTIONS(483), + [aux_sym_on_error_statement_token2] = ACTIONS(485), + [sym__ambiguous_redim_statement] = ACTIONS(487), + [aux_sym_erase_statement_token1] = ACTIONS(489), + [aux_sym_open_statement_token1] = ACTIONS(491), + [aux_sym_file_mode_token2] = ACTIONS(493), + [aux_sym_file_access_token2] = ACTIONS(495), + [aux_sym_file_lock_token2] = ACTIONS(497), + [aux_sym_print_statement_token1] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_QMARK] = ACTIONS(505), + [aux_sym_close_statement_token1] = ACTIONS(507), + [aux_sym_put_statement_token1] = ACTIONS(509), + [aux_sym_unlock_statement_token1] = ACTIONS(511), + [aux_sym_seek_statement_token1] = ACTIONS(513), + [sym_reset_statement] = ACTIONS(3858), + [aux_sym_raise_event_statement_token1] = ACTIONS(517), + [sym_stop_statement] = ACTIONS(3858), + [sym_beep_statement] = ACTIONS(3858), + [aux_sym_unload_statement_token1] = ACTIONS(519), + [aux_sym_call_statement_token1] = ACTIONS(523), + [sym__ambiguous_call_statement] = ACTIONS(525), + [aux_sym_addressof_expression_token1] = ACTIONS(527), + [aux_sym_type_of_expression_token1] = ACTIONS(529), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(533), + [sym_number_literal] = ACTIONS(3340), + [aux_sym_boolean_literal_token1] = ACTIONS(537), + [aux_sym_boolean_literal_token2] = ACTIONS(537), + [sym_nothing_literal] = ACTIONS(539), + [sym_null_literal] = ACTIONS(539), + [sym_empty_literal] = ACTIONS(539), + [sym_date_literal] = ACTIONS(533), + [anon_sym_POUND] = ACTIONS(541), + }, + [STATE(303)] = { + [sym_variable_declaration] = STATE(6115), + [sym_const_declaration] = STATE(6115), + [sym_visibility] = STATE(11869), + [sym_single_line_if_statement] = STATE(6115), + [sym_inline_statement_sequence] = STATE(6630), + [sym__inline_statement] = STATE(6115), + [sym_for_statement] = STATE(6115), + [sym__inline_for_statement] = STATE(6443), + [sym_for_each_statement] = STATE(6115), + [sym__inline_for_each_statement] = STATE(6445), + [sym__for_header] = STATE(11298), + [sym__for_each_header] = STATE(11310), + [sym_do_statement] = STATE(6115), + [sym__inline_do_statement] = STATE(6446), + [sym_while_statement] = STATE(6115), + [sym_with_statement] = STATE(6115), + [sym__inline_with_statement] = STATE(6447), + [sym_exit_statement] = STATE(6115), + [sym_on_error_statement] = STATE(6115), + [sym_resume_statement] = STATE(6115), + [sym_goto_statement] = STATE(6115), + [sym_line_number_prefix] = STATE(12386), + [sym_redim_statement] = STATE(6115), + [sym_erase_statement] = STATE(6115), + [sym_open_statement] = STATE(6115), + [sym_input_statement] = STATE(6115), + [sym_line_input_statement] = STATE(6115), + [sym_print_statement] = STATE(6115), + [sym_write_statement] = STATE(6115), + [sym_debug_print_statement] = STATE(6115), + [sym_close_statement] = STATE(6115), + [sym_get_statement] = STATE(6115), + [sym_put_statement] = STATE(6115), + [sym_lock_statement] = STATE(6115), + [sym_unlock_statement] = STATE(6115), + [sym_seek_statement] = STATE(6115), + [sym_raise_event_statement] = STATE(6115), + [sym_name_statement] = STATE(6115), + [sym_load_statement] = STATE(6115), + [sym_unload_statement] = STATE(6115), + [sym_set_statement] = STATE(6115), + [sym_assignment_statement] = STATE(6115), + [sym_call_statement] = STATE(6115), + [sym_expression_statement] = STATE(6115), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [sym_identifier] = ACTIONS(3402), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3406), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(3860), + [aux_sym_on_goto_statement_token1] = ACTIONS(3410), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(3862), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(3862), + [sym_beep_statement] = ACTIONS(3862), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(3414), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(304)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3864), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(305)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3866), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(306)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3868), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(307)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3870), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(308)] = { + [sym_variable_declaration] = STATE(6444), + [sym_const_declaration] = STATE(6444), + [sym_visibility] = STATE(11767), + [sym_single_line_if_statement] = STATE(6444), + [sym_inline_statement_sequence] = STATE(7245), + [sym__inline_statement] = STATE(6444), + [sym_for_statement] = STATE(6444), + [sym__inline_for_statement] = STATE(7222), + [sym_for_each_statement] = STATE(6444), + [sym__inline_for_each_statement] = STATE(7227), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(6444), + [sym__inline_do_statement] = STATE(7230), + [sym_while_statement] = STATE(6444), + [sym_with_statement] = STATE(6444), + [sym__inline_with_statement] = STATE(7233), + [sym_exit_statement] = STATE(6444), + [sym_on_error_statement] = STATE(6444), + [sym_resume_statement] = STATE(6444), + [sym_goto_statement] = STATE(6444), + [sym_line_number_prefix] = STATE(12265), + [sym_redim_statement] = STATE(6444), + [sym_erase_statement] = STATE(6444), + [sym_open_statement] = STATE(6444), + [sym_input_statement] = STATE(6444), + [sym_line_input_statement] = STATE(6444), + [sym_print_statement] = STATE(6444), + [sym_write_statement] = STATE(6444), + [sym_debug_print_statement] = STATE(6444), + [sym_close_statement] = STATE(6444), + [sym_get_statement] = STATE(6444), + [sym_put_statement] = STATE(6444), + [sym_lock_statement] = STATE(6444), + [sym_unlock_statement] = STATE(6444), + [sym_seek_statement] = STATE(6444), + [sym_raise_event_statement] = STATE(6444), + [sym_name_statement] = STATE(6444), + [sym_load_statement] = STATE(6444), + [sym_unload_statement] = STATE(6444), + [sym_set_statement] = STATE(6444), + [sym_assignment_statement] = STATE(6444), + [sym_call_statement] = STATE(6444), + [sym_expression_statement] = STATE(6444), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [sym_identifier] = ACTIONS(3452), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3456), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(3872), + [aux_sym_on_goto_statement_token1] = ACTIONS(3460), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(3874), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(3874), + [sym_beep_statement] = ACTIONS(3874), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(3464), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(309)] = { + [sym_variable_declaration] = STATE(12238), + [sym_const_declaration] = STATE(12238), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12238), + [sym_inline_statement_sequence] = STATE(12608), + [sym__inline_statement] = STATE(12238), + [sym_for_statement] = STATE(12238), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12238), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11321), + [sym__for_each_header] = STATE(11322), + [sym_do_statement] = STATE(12238), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12238), + [sym_with_statement] = STATE(12238), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12238), + [sym_on_error_statement] = STATE(12238), + [sym_resume_statement] = STATE(12238), + [sym_goto_statement] = STATE(12238), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12238), + [sym_erase_statement] = STATE(12238), + [sym_open_statement] = STATE(12238), + [sym_input_statement] = STATE(12238), + [sym_line_input_statement] = STATE(12238), + [sym_print_statement] = STATE(12238), + [sym_write_statement] = STATE(12238), + [sym_debug_print_statement] = STATE(12238), + [sym_close_statement] = STATE(12238), + [sym_get_statement] = STATE(12238), + [sym_put_statement] = STATE(12238), + [sym_lock_statement] = STATE(12238), + [sym_unlock_statement] = STATE(12238), + [sym_seek_statement] = STATE(12238), + [sym_raise_event_statement] = STATE(12238), + [sym_name_statement] = STATE(12238), + [sym_load_statement] = STATE(12238), + [sym_unload_statement] = STATE(12238), + [sym_set_statement] = STATE(12238), + [sym_assignment_statement] = STATE(12238), + [sym_call_statement] = STATE(12238), + [sym_expression_statement] = STATE(12238), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7419), + [sym__print_method_callee] = STATE(7426), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10319), + [sym__implicit_print_method_expression] = STATE(10320), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10369), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10038), + [sym_qualified_member_expression] = STATE(10034), + [sym_implicit_member_expression] = STATE(10034), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3528), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3540), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3876), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3574), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3584), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3594), + [aux_sym_close_statement_token1] = ACTIONS(3596), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3878), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3878), + [sym_beep_statement] = ACTIONS(3878), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(310)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3880), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(311)] = { + [sym_variable_declaration] = STATE(6722), + [sym_const_declaration] = STATE(6722), + [sym_visibility] = STATE(11767), + [sym_single_line_if_statement] = STATE(6722), + [sym_inline_statement_sequence] = STATE(7166), + [sym__inline_statement] = STATE(6722), + [sym_for_statement] = STATE(6722), + [sym__inline_for_statement] = STATE(7222), + [sym_for_each_statement] = STATE(6722), + [sym__inline_for_each_statement] = STATE(7227), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(6722), + [sym__inline_do_statement] = STATE(7230), + [sym_while_statement] = STATE(6722), + [sym_with_statement] = STATE(6722), + [sym__inline_with_statement] = STATE(7233), + [sym_exit_statement] = STATE(6722), + [sym_on_error_statement] = STATE(6722), + [sym_resume_statement] = STATE(6722), + [sym_goto_statement] = STATE(6722), + [sym_line_number_prefix] = STATE(12265), + [sym_redim_statement] = STATE(6722), + [sym_erase_statement] = STATE(6722), + [sym_open_statement] = STATE(6722), + [sym_input_statement] = STATE(6722), + [sym_line_input_statement] = STATE(6722), + [sym_print_statement] = STATE(6722), + [sym_write_statement] = STATE(6722), + [sym_debug_print_statement] = STATE(6722), + [sym_close_statement] = STATE(6722), + [sym_get_statement] = STATE(6722), + [sym_put_statement] = STATE(6722), + [sym_lock_statement] = STATE(6722), + [sym_unlock_statement] = STATE(6722), + [sym_seek_statement] = STATE(6722), + [sym_raise_event_statement] = STATE(6722), + [sym_name_statement] = STATE(6722), + [sym_load_statement] = STATE(6722), + [sym_unload_statement] = STATE(6722), + [sym_set_statement] = STATE(6722), + [sym_assignment_statement] = STATE(6722), + [sym_call_statement] = STATE(6722), + [sym_expression_statement] = STATE(6722), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [sym_identifier] = ACTIONS(3452), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3456), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(3882), + [aux_sym_on_goto_statement_token1] = ACTIONS(3460), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(3884), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(3884), + [sym_beep_statement] = ACTIONS(3884), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(3464), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(312)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(3954), + [sym__inline_for_statement] = STATE(3955), + [sym_for_each_statement] = STATE(3954), + [sym__inline_for_each_statement] = STATE(3956), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3886), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(313)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3888), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(314)] = { + [sym_variable_declaration] = STATE(4241), + [sym_const_declaration] = STATE(4241), + [sym_visibility] = STATE(11839), + [sym_single_line_if_statement] = STATE(4241), + [sym_inline_statement_sequence] = STATE(4489), + [sym__inline_statement] = STATE(4241), + [sym_for_statement] = STATE(4241), + [sym__inline_for_statement] = STATE(4347), + [sym_for_each_statement] = STATE(4241), + [sym__inline_for_each_statement] = STATE(4348), + [sym__for_header] = STATE(11370), + [sym__for_each_header] = STATE(11371), + [sym_do_statement] = STATE(4241), + [sym__inline_do_statement] = STATE(4349), + [sym_while_statement] = STATE(4241), + [sym_with_statement] = STATE(4241), + [sym__inline_with_statement] = STATE(4350), + [sym_exit_statement] = STATE(4241), + [sym_on_error_statement] = STATE(4241), + [sym_resume_statement] = STATE(4241), + [sym_goto_statement] = STATE(4241), + [sym_line_number_prefix] = STATE(12390), + [sym_redim_statement] = STATE(4241), + [sym_erase_statement] = STATE(4241), + [sym_open_statement] = STATE(4241), + [sym_input_statement] = STATE(4241), + [sym_line_input_statement] = STATE(4241), + [sym_print_statement] = STATE(4241), + [sym_write_statement] = STATE(4241), + [sym_debug_print_statement] = STATE(4241), + [sym_close_statement] = STATE(4241), + [sym_get_statement] = STATE(4241), + [sym_put_statement] = STATE(4241), + [sym_lock_statement] = STATE(4241), + [sym_unlock_statement] = STATE(4241), + [sym_seek_statement] = STATE(4241), + [sym_raise_event_statement] = STATE(4241), + [sym_name_statement] = STATE(4241), + [sym_load_statement] = STATE(4241), + [sym_unload_statement] = STATE(4241), + [sym_set_statement] = STATE(4241), + [sym_assignment_statement] = STATE(4241), + [sym_call_statement] = STATE(4241), + [sym_expression_statement] = STATE(4241), + [sym__primary_expression] = STATE(2177), + [sym__expression] = STATE(2177), + [sym__assignable_expression] = STATE(14337), + [sym__callable_expression] = STATE(360), + [sym__print_method_callee] = STATE(363), + [sym__print_method_call_expression] = STATE(4521), + [sym__qualified_print_method_expression] = STATE(4522), + [sym__implicit_print_method_expression] = STATE(4523), + [sym__line_method_expression] = STATE(12218), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2177), + [sym_addressof_expression] = STATE(2177), + [sym_type_of_expression] = STATE(2177), + [sym_member_expression] = STATE(1381), + [sym_qualified_member_expression] = STATE(912), + [sym_implicit_member_expression] = STATE(912), + [sym_parenthesized_expression] = STATE(2177), + [sym_binary_expression] = STATE(2177), + [sym_unary_expression] = STATE(2177), + [sym__signed_unary_expression] = STATE(1199), + [sym__literal] = STATE(2177), + [sym_boolean_literal] = STATE(2177), + [sym_file_number_literal] = STATE(2177), + [sym_identifier] = ACTIONS(3326), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [aux_sym__attribute_identifier_token1] = ACTIONS(431), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3330), + [sym_static_modifier] = ACTIONS(3332), + [sym__dim_keyword] = ACTIONS(451), + [sym__redim_keyword] = ACTIONS(453), + [aux_sym_get_accessor_token1] = ACTIONS(455), + [aux_sym_set_accessor_token1] = ACTIONS(457), + [aux_sym_const_declaration_token1] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [aux_sym_as_type_clause_token2] = ACTIONS(463), + [aux_sym_dotted_type_expression_token1] = ACTIONS(465), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(473), + [aux_sym_do_condition_token1] = ACTIONS(475), + [aux_sym_with_statement_token1] = ACTIONS(477), + [aux_sym_exit_statement_token1] = ACTIONS(479), + [sym_end_statement] = ACTIONS(3890), + [aux_sym_on_goto_statement_token1] = ACTIONS(3336), + [aux_sym_on_goto_statement_token2] = ACTIONS(483), + [aux_sym_on_error_statement_token2] = ACTIONS(485), + [sym__ambiguous_redim_statement] = ACTIONS(487), + [aux_sym_erase_statement_token1] = ACTIONS(489), + [aux_sym_open_statement_token1] = ACTIONS(491), + [aux_sym_file_mode_token2] = ACTIONS(493), + [aux_sym_file_access_token2] = ACTIONS(495), + [aux_sym_file_lock_token2] = ACTIONS(497), + [aux_sym_print_statement_token1] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_QMARK] = ACTIONS(505), + [aux_sym_close_statement_token1] = ACTIONS(507), + [aux_sym_put_statement_token1] = ACTIONS(509), + [aux_sym_unlock_statement_token1] = ACTIONS(511), + [aux_sym_seek_statement_token1] = ACTIONS(513), + [sym_reset_statement] = ACTIONS(3892), + [aux_sym_raise_event_statement_token1] = ACTIONS(517), + [sym_stop_statement] = ACTIONS(3892), + [sym_beep_statement] = ACTIONS(3892), + [aux_sym_unload_statement_token1] = ACTIONS(519), + [aux_sym_call_statement_token1] = ACTIONS(523), + [sym__ambiguous_call_statement] = ACTIONS(525), + [aux_sym_addressof_expression_token1] = ACTIONS(527), + [aux_sym_type_of_expression_token1] = ACTIONS(529), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(533), + [sym_number_literal] = ACTIONS(3340), + [aux_sym_boolean_literal_token1] = ACTIONS(537), + [aux_sym_boolean_literal_token2] = ACTIONS(537), + [sym_nothing_literal] = ACTIONS(539), + [sym_null_literal] = ACTIONS(539), + [sym_empty_literal] = ACTIONS(539), + [sym_date_literal] = ACTIONS(533), + [anon_sym_POUND] = ACTIONS(541), + }, + [STATE(315)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3894), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(316)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3896), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(317)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3898), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(318)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3900), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(319)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3902), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(320)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3904), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(321)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3906), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(322)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3908), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(323)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3910), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(324)] = { + [sym_variable_declaration] = STATE(5867), + [sym_const_declaration] = STATE(5867), + [sym_visibility] = STATE(11883), + [sym_single_line_if_statement] = STATE(5867), + [sym_inline_statement_sequence] = STATE(6926), + [sym__inline_statement] = STATE(5867), + [sym_for_statement] = STATE(5867), + [sym__inline_for_statement] = STATE(6824), + [sym_for_each_statement] = STATE(5867), + [sym__inline_for_each_statement] = STATE(6825), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(5867), + [sym__inline_do_statement] = STATE(6826), + [sym_while_statement] = STATE(5867), + [sym_with_statement] = STATE(5867), + [sym__inline_with_statement] = STATE(6827), + [sym_exit_statement] = STATE(5867), + [sym_on_error_statement] = STATE(5867), + [sym_resume_statement] = STATE(5867), + [sym_goto_statement] = STATE(5867), + [sym_line_number_prefix] = STATE(12388), + [sym_redim_statement] = STATE(5867), + [sym_erase_statement] = STATE(5867), + [sym_open_statement] = STATE(5867), + [sym_input_statement] = STATE(5867), + [sym_line_input_statement] = STATE(5867), + [sym_print_statement] = STATE(5867), + [sym_write_statement] = STATE(5867), + [sym_debug_print_statement] = STATE(5867), + [sym_close_statement] = STATE(5867), + [sym_get_statement] = STATE(5867), + [sym_put_statement] = STATE(5867), + [sym_lock_statement] = STATE(5867), + [sym_unlock_statement] = STATE(5867), + [sym_seek_statement] = STATE(5867), + [sym_raise_event_statement] = STATE(5867), + [sym_name_statement] = STATE(5867), + [sym_load_statement] = STATE(5867), + [sym_unload_statement] = STATE(5867), + [sym_set_statement] = STATE(5867), + [sym_assignment_statement] = STATE(5867), + [sym_call_statement] = STATE(5867), + [sym_expression_statement] = STATE(5867), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [sym_identifier] = ACTIONS(3430), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3434), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(3912), + [aux_sym_on_goto_statement_token1] = ACTIONS(3438), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(3914), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(3914), + [sym_beep_statement] = ACTIONS(3914), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(3442), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(325)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3916), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(326)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3918), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(327)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3920), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(328)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3922), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(329)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3924), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(330)] = { + [sym_variable_declaration] = STATE(5976), + [sym_const_declaration] = STATE(5976), + [sym_visibility] = STATE(11883), + [sym_single_line_if_statement] = STATE(5976), + [sym_inline_statement_sequence] = STATE(6983), + [sym__inline_statement] = STATE(5976), + [sym_for_statement] = STATE(5976), + [sym__inline_for_statement] = STATE(6824), + [sym_for_each_statement] = STATE(5976), + [sym__inline_for_each_statement] = STATE(6825), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(5976), + [sym__inline_do_statement] = STATE(6826), + [sym_while_statement] = STATE(5976), + [sym_with_statement] = STATE(5976), + [sym__inline_with_statement] = STATE(6827), + [sym_exit_statement] = STATE(5976), + [sym_on_error_statement] = STATE(5976), + [sym_resume_statement] = STATE(5976), + [sym_goto_statement] = STATE(5976), + [sym_line_number_prefix] = STATE(12388), + [sym_redim_statement] = STATE(5976), + [sym_erase_statement] = STATE(5976), + [sym_open_statement] = STATE(5976), + [sym_input_statement] = STATE(5976), + [sym_line_input_statement] = STATE(5976), + [sym_print_statement] = STATE(5976), + [sym_write_statement] = STATE(5976), + [sym_debug_print_statement] = STATE(5976), + [sym_close_statement] = STATE(5976), + [sym_get_statement] = STATE(5976), + [sym_put_statement] = STATE(5976), + [sym_lock_statement] = STATE(5976), + [sym_unlock_statement] = STATE(5976), + [sym_seek_statement] = STATE(5976), + [sym_raise_event_statement] = STATE(5976), + [sym_name_statement] = STATE(5976), + [sym_load_statement] = STATE(5976), + [sym_unload_statement] = STATE(5976), + [sym_set_statement] = STATE(5976), + [sym_assignment_statement] = STATE(5976), + [sym_call_statement] = STATE(5976), + [sym_expression_statement] = STATE(5976), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [sym_identifier] = ACTIONS(3430), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3434), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(3926), + [aux_sym_on_goto_statement_token1] = ACTIONS(3438), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(3928), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(3928), + [sym_beep_statement] = ACTIONS(3928), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(3442), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(331)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3930), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(332)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3932), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(333)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3934), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(334)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_statement_token2] = ACTIONS(3936), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(335)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3938), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(336)] = { + [sym_variable_declaration] = STATE(4986), + [sym_const_declaration] = STATE(4986), + [sym_visibility] = STATE(11799), + [sym_single_line_if_statement] = STATE(4986), + [sym_inline_statement_sequence] = STATE(5634), + [sym__inline_statement] = STATE(4986), + [sym_for_statement] = STATE(4986), + [sym__inline_for_statement] = STATE(5568), + [sym_for_each_statement] = STATE(4986), + [sym__inline_for_each_statement] = STATE(5569), + [sym__for_header] = STATE(11307), + [sym__for_each_header] = STATE(11308), + [sym_do_statement] = STATE(4986), + [sym__inline_do_statement] = STATE(5570), + [sym_while_statement] = STATE(4986), + [sym_with_statement] = STATE(4986), + [sym__inline_with_statement] = STATE(5571), + [sym_exit_statement] = STATE(4986), + [sym_on_error_statement] = STATE(4986), + [sym_resume_statement] = STATE(4986), + [sym_goto_statement] = STATE(4986), + [sym_line_number_prefix] = STATE(12393), + [sym_redim_statement] = STATE(4986), + [sym_erase_statement] = STATE(4986), + [sym_open_statement] = STATE(4986), + [sym_input_statement] = STATE(4986), + [sym_line_input_statement] = STATE(4986), + [sym_print_statement] = STATE(4986), + [sym_write_statement] = STATE(4986), + [sym_debug_print_statement] = STATE(4986), + [sym_close_statement] = STATE(4986), + [sym_get_statement] = STATE(4986), + [sym_put_statement] = STATE(4986), + [sym_lock_statement] = STATE(4986), + [sym_unlock_statement] = STATE(4986), + [sym_seek_statement] = STATE(4986), + [sym_raise_event_statement] = STATE(4986), + [sym_name_statement] = STATE(4986), + [sym_load_statement] = STATE(4986), + [sym_unload_statement] = STATE(4986), + [sym_set_statement] = STATE(4986), + [sym_assignment_statement] = STATE(4986), + [sym_call_statement] = STATE(4986), + [sym_expression_statement] = STATE(4986), + [sym__primary_expression] = STATE(2614), + [sym__expression] = STATE(2614), + [sym__assignable_expression] = STATE(14425), + [sym__callable_expression] = STATE(378), + [sym__print_method_callee] = STATE(393), + [sym__print_method_call_expression] = STATE(5499), + [sym__qualified_print_method_expression] = STATE(5500), + [sym__implicit_print_method_expression] = STATE(5501), + [sym__line_method_expression] = STATE(12228), + [sym_call_expression] = STATE(2293), + [sym_new_expression] = STATE(2614), + [sym_addressof_expression] = STATE(2614), + [sym_type_of_expression] = STATE(2614), + [sym_member_expression] = STATE(2211), + [sym_qualified_member_expression] = STATE(2182), + [sym_implicit_member_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2614), + [sym_binary_expression] = STATE(2614), + [sym_unary_expression] = STATE(2614), + [sym__signed_unary_expression] = STATE(2203), + [sym__literal] = STATE(2614), + [sym_boolean_literal] = STATE(2614), + [sym_file_number_literal] = STATE(2614), + [sym_identifier] = ACTIONS(3342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [aux_sym__attribute_identifier_token1] = ACTIONS(1069), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3346), + [sym_static_modifier] = ACTIONS(1079), + [sym__dim_keyword] = ACTIONS(1081), + [sym__redim_keyword] = ACTIONS(1083), + [aux_sym_get_accessor_token1] = ACTIONS(1085), + [aux_sym_set_accessor_token1] = ACTIONS(1087), + [aux_sym_const_declaration_token1] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_as_type_clause_token2] = ACTIONS(1093), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1095), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1103), + [aux_sym_do_condition_token1] = ACTIONS(1105), + [aux_sym_with_statement_token1] = ACTIONS(1107), + [aux_sym_exit_statement_token1] = ACTIONS(1109), + [sym_end_statement] = ACTIONS(3940), + [aux_sym_on_goto_statement_token1] = ACTIONS(3350), + [aux_sym_on_goto_statement_token2] = ACTIONS(1113), + [aux_sym_on_error_statement_token2] = ACTIONS(1115), + [sym__ambiguous_redim_statement] = ACTIONS(1117), + [aux_sym_erase_statement_token1] = ACTIONS(1119), + [aux_sym_open_statement_token1] = ACTIONS(1121), + [aux_sym_file_mode_token2] = ACTIONS(1123), + [aux_sym_file_access_token2] = ACTIONS(1125), + [aux_sym_file_lock_token2] = ACTIONS(1127), + [aux_sym_print_statement_token1] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [aux_sym_close_statement_token1] = ACTIONS(1137), + [aux_sym_put_statement_token1] = ACTIONS(1139), + [aux_sym_unlock_statement_token1] = ACTIONS(1141), + [aux_sym_seek_statement_token1] = ACTIONS(1143), + [sym_reset_statement] = ACTIONS(3942), + [aux_sym_raise_event_statement_token1] = ACTIONS(1147), + [sym_stop_statement] = ACTIONS(3942), + [sym_beep_statement] = ACTIONS(3942), + [aux_sym_unload_statement_token1] = ACTIONS(1149), + [aux_sym_call_statement_token1] = ACTIONS(1153), + [sym__ambiguous_call_statement] = ACTIONS(1155), + [aux_sym_addressof_expression_token1] = ACTIONS(1157), + [aux_sym_type_of_expression_token1] = ACTIONS(1159), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(3354), + [aux_sym_boolean_literal_token1] = ACTIONS(1167), + [aux_sym_boolean_literal_token2] = ACTIONS(1167), + [sym_nothing_literal] = ACTIONS(1169), + [sym_null_literal] = ACTIONS(1169), + [sym_empty_literal] = ACTIONS(1169), + [sym_date_literal] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(1171), + }, + [STATE(337)] = { + [sym_variable_declaration] = STATE(6090), + [sym_const_declaration] = STATE(6090), + [sym_visibility] = STATE(11858), + [sym_single_line_if_statement] = STATE(6090), + [sym_inline_statement_sequence] = STATE(6422), + [sym__inline_statement] = STATE(6090), + [sym_for_statement] = STATE(6090), + [sym__inline_for_statement] = STATE(6929), + [sym_for_each_statement] = STATE(6090), + [sym__inline_for_each_statement] = STATE(6933), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(6090), + [sym__inline_do_statement] = STATE(6935), + [sym_while_statement] = STATE(6090), + [sym_with_statement] = STATE(6090), + [sym__inline_with_statement] = STATE(6938), + [sym_exit_statement] = STATE(6090), + [sym_on_error_statement] = STATE(6090), + [sym_resume_statement] = STATE(6090), + [sym_goto_statement] = STATE(6090), + [sym_line_number_prefix] = STATE(12383), + [sym_redim_statement] = STATE(6090), + [sym_erase_statement] = STATE(6090), + [sym_open_statement] = STATE(6090), + [sym_input_statement] = STATE(6090), + [sym_line_input_statement] = STATE(6090), + [sym_print_statement] = STATE(6090), + [sym_write_statement] = STATE(6090), + [sym_debug_print_statement] = STATE(6090), + [sym_close_statement] = STATE(6090), + [sym_get_statement] = STATE(6090), + [sym_put_statement] = STATE(6090), + [sym_lock_statement] = STATE(6090), + [sym_unlock_statement] = STATE(6090), + [sym_seek_statement] = STATE(6090), + [sym_raise_event_statement] = STATE(6090), + [sym_name_statement] = STATE(6090), + [sym_load_statement] = STATE(6090), + [sym_unload_statement] = STATE(6090), + [sym_set_statement] = STATE(6090), + [sym_assignment_statement] = STATE(6090), + [sym_call_statement] = STATE(6090), + [sym_expression_statement] = STATE(6090), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [sym_identifier] = ACTIONS(3374), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3378), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(3944), + [aux_sym_on_goto_statement_token1] = ACTIONS(3382), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(3946), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(3946), + [sym_beep_statement] = ACTIONS(3946), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(3386), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(338)] = { + [sym_variable_declaration] = STATE(3852), + [sym_const_declaration] = STATE(3852), + [sym_visibility] = STATE(11841), + [sym_single_line_if_statement] = STATE(3852), + [sym__inline_statement] = STATE(3852), + [sym_for_statement] = STATE(3852), + [sym__inline_for_statement] = STATE(3853), + [sym_for_each_statement] = STATE(3852), + [sym__inline_for_each_statement] = STATE(3854), + [sym__for_header] = STATE(11465), + [sym__for_each_header] = STATE(11498), + [sym_do_statement] = STATE(3852), + [sym__inline_do_statement] = STATE(3855), + [sym_while_statement] = STATE(3852), + [sym_with_statement] = STATE(3852), + [sym__inline_with_statement] = STATE(3856), + [sym_exit_statement] = STATE(3852), + [sym_on_error_statement] = STATE(3852), + [sym_resume_statement] = STATE(3852), + [sym_goto_statement] = STATE(3852), + [sym_line_number_prefix] = STATE(12380), + [sym_redim_statement] = STATE(3852), + [sym_erase_statement] = STATE(3852), + [sym_open_statement] = STATE(3852), + [sym_input_statement] = STATE(3852), + [sym_line_input_statement] = STATE(3852), + [sym_print_statement] = STATE(3852), + [sym_write_statement] = STATE(3852), + [sym_debug_print_statement] = STATE(3852), + [sym_close_statement] = STATE(3852), + [sym_get_statement] = STATE(3852), + [sym_put_statement] = STATE(3852), + [sym_lock_statement] = STATE(3852), + [sym_unlock_statement] = STATE(3852), + [sym_seek_statement] = STATE(3852), + [sym_raise_event_statement] = STATE(3852), + [sym_name_statement] = STATE(3852), + [sym_load_statement] = STATE(3852), + [sym_unload_statement] = STATE(3852), + [sym_set_statement] = STATE(3852), + [sym_assignment_statement] = STATE(3852), + [sym_call_statement] = STATE(3852), + [sym_expression_statement] = STATE(3852), + [sym__primary_expression] = STATE(1532), + [sym__expression] = STATE(1532), + [sym__assignable_expression] = STATE(15112), + [sym__callable_expression] = STATE(350), + [sym__print_method_callee] = STATE(355), + [sym__print_method_call_expression] = STATE(3871), + [sym__qualified_print_method_expression] = STATE(3872), + [sym__implicit_print_method_expression] = STATE(3851), + [sym__line_method_expression] = STATE(12202), + [sym_call_expression] = STATE(1033), + [sym_new_expression] = STATE(1532), + [sym_addressof_expression] = STATE(1532), + [sym_type_of_expression] = STATE(1532), + [sym_member_expression] = STATE(836), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1532), + [sym_binary_expression] = STATE(1532), + [sym_unary_expression] = STATE(1532), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym_file_number_literal] = STATE(1532), + [sym_identifier] = ACTIONS(3290), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(73), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3298), + [sym_static_modifier] = ACTIONS(3300), + [sym__dim_keyword] = ACTIONS(97), + [sym__redim_keyword] = ACTIONS(99), + [aux_sym_get_accessor_token1] = ACTIONS(101), + [aux_sym_set_accessor_token1] = ACTIONS(103), + [aux_sym_const_declaration_token1] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(111), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(121), + [aux_sym_do_condition_token1] = ACTIONS(123), + [aux_sym_with_statement_token1] = ACTIONS(125), + [aux_sym_exit_statement_token1] = ACTIONS(127), + [sym_end_statement] = ACTIONS(3948), + [aux_sym_on_goto_statement_token1] = ACTIONS(3304), + [aux_sym_on_goto_statement_token2] = ACTIONS(131), + [aux_sym_on_error_statement_token2] = ACTIONS(133), + [sym__ambiguous_redim_statement] = ACTIONS(135), + [aux_sym_erase_statement_token1] = ACTIONS(137), + [aux_sym_open_statement_token1] = ACTIONS(139), + [aux_sym_file_mode_token2] = ACTIONS(141), + [aux_sym_file_access_token2] = ACTIONS(143), + [aux_sym_file_lock_token2] = ACTIONS(145), + [aux_sym_print_statement_token1] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(153), + [aux_sym_close_statement_token1] = ACTIONS(155), + [aux_sym_put_statement_token1] = ACTIONS(157), + [aux_sym_unlock_statement_token1] = ACTIONS(159), + [aux_sym_seek_statement_token1] = ACTIONS(161), + [sym_reset_statement] = ACTIONS(3950), + [aux_sym_raise_event_statement_token1] = ACTIONS(165), + [sym_stop_statement] = ACTIONS(3950), + [sym_beep_statement] = ACTIONS(3950), + [aux_sym_unload_statement_token1] = ACTIONS(167), + [aux_sym_call_statement_token1] = ACTIONS(171), + [sym__ambiguous_call_statement] = ACTIONS(173), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(181), + [sym_number_literal] = ACTIONS(3308), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(187), + [sym_null_literal] = ACTIONS(187), + [sym_empty_literal] = ACTIONS(187), + [sym_date_literal] = ACTIONS(181), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(339)] = { + [sym_variable_declaration] = STATE(7101), + [sym_const_declaration] = STATE(7101), + [sym_visibility] = STATE(11928), + [sym_single_line_if_statement] = STATE(7101), + [sym__inline_statement] = STATE(7101), + [sym_for_statement] = STATE(7101), + [sym__inline_for_statement] = STATE(7102), + [sym_for_each_statement] = STATE(7101), + [sym__inline_for_each_statement] = STATE(7103), + [sym__for_header] = STATE(11443), + [sym__for_each_header] = STATE(11444), + [sym_do_statement] = STATE(7101), + [sym__inline_do_statement] = STATE(7104), + [sym_while_statement] = STATE(7101), + [sym_with_statement] = STATE(7101), + [sym__inline_with_statement] = STATE(7105), + [sym_exit_statement] = STATE(7101), + [sym_on_error_statement] = STATE(7101), + [sym_resume_statement] = STATE(7101), + [sym_goto_statement] = STATE(7101), + [sym_line_number_prefix] = STATE(12396), + [sym_redim_statement] = STATE(7101), + [sym_erase_statement] = STATE(7101), + [sym_open_statement] = STATE(7101), + [sym_input_statement] = STATE(7101), + [sym_line_input_statement] = STATE(7101), + [sym_print_statement] = STATE(7101), + [sym_write_statement] = STATE(7101), + [sym_debug_print_statement] = STATE(7101), + [sym_close_statement] = STATE(7101), + [sym_get_statement] = STATE(7101), + [sym_put_statement] = STATE(7101), + [sym_lock_statement] = STATE(7101), + [sym_unlock_statement] = STATE(7101), + [sym_seek_statement] = STATE(7101), + [sym_raise_event_statement] = STATE(7101), + [sym_name_statement] = STATE(7101), + [sym_load_statement] = STATE(7101), + [sym_unload_statement] = STATE(7101), + [sym_set_statement] = STATE(7101), + [sym_assignment_statement] = STATE(7101), + [sym_call_statement] = STATE(7101), + [sym_expression_statement] = STATE(7101), + [sym__primary_expression] = STATE(3463), + [sym__expression] = STATE(3463), + [sym__assignable_expression] = STATE(14513), + [sym__callable_expression] = STATE(418), + [sym__print_method_callee] = STATE(501), + [sym__print_method_call_expression] = STATE(6993), + [sym__qualified_print_method_expression] = STATE(6708), + [sym__implicit_print_method_expression] = STATE(6710), + [sym__line_method_expression] = STATE(12255), + [sym_call_expression] = STATE(2892), + [sym_new_expression] = STATE(3463), + [sym_addressof_expression] = STATE(3463), + [sym_type_of_expression] = STATE(3463), + [sym_member_expression] = STATE(2545), + [sym_qualified_member_expression] = STATE(2265), + [sym_implicit_member_expression] = STATE(2265), + [sym_parenthesized_expression] = STATE(3463), + [sym_binary_expression] = STATE(3463), + [sym_unary_expression] = STATE(3463), + [sym__signed_unary_expression] = STATE(2479), + [sym__literal] = STATE(3463), + [sym_boolean_literal] = STATE(3463), + [sym_file_number_literal] = STATE(3463), + [sym_identifier] = ACTIONS(3416), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1490), + [aux_sym__attribute_identifier_token1] = ACTIONS(1492), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3420), + [sym_static_modifier] = ACTIONS(1500), + [sym__dim_keyword] = ACTIONS(1502), + [sym__redim_keyword] = ACTIONS(1504), + [aux_sym_get_accessor_token1] = ACTIONS(1506), + [aux_sym_set_accessor_token1] = ACTIONS(1508), + [aux_sym_const_declaration_token1] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [aux_sym_as_type_clause_token2] = ACTIONS(1514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1516), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1526), + [aux_sym_do_condition_token1] = ACTIONS(1528), + [aux_sym_with_statement_token1] = ACTIONS(1530), + [aux_sym_exit_statement_token1] = ACTIONS(1532), + [sym_end_statement] = ACTIONS(3952), + [aux_sym_on_goto_statement_token1] = ACTIONS(3424), + [aux_sym_on_goto_statement_token2] = ACTIONS(1536), + [aux_sym_on_error_statement_token2] = ACTIONS(1538), + [sym__ambiguous_redim_statement] = ACTIONS(1540), + [aux_sym_erase_statement_token1] = ACTIONS(1542), + [aux_sym_open_statement_token1] = ACTIONS(1544), + [aux_sym_file_mode_token2] = ACTIONS(1546), + [aux_sym_file_access_token2] = ACTIONS(1548), + [aux_sym_file_lock_token2] = ACTIONS(1550), + [aux_sym_print_statement_token1] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1558), + [aux_sym_close_statement_token1] = ACTIONS(1560), + [aux_sym_put_statement_token1] = ACTIONS(1562), + [aux_sym_unlock_statement_token1] = ACTIONS(1564), + [aux_sym_seek_statement_token1] = ACTIONS(1566), + [sym_reset_statement] = ACTIONS(3954), + [aux_sym_raise_event_statement_token1] = ACTIONS(1570), + [sym_stop_statement] = ACTIONS(3954), + [sym_beep_statement] = ACTIONS(3954), + [aux_sym_unload_statement_token1] = ACTIONS(1572), + [aux_sym_call_statement_token1] = ACTIONS(1576), + [sym__ambiguous_call_statement] = ACTIONS(1578), + [aux_sym_addressof_expression_token1] = ACTIONS(1580), + [aux_sym_type_of_expression_token1] = ACTIONS(1582), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(1586), + [sym_number_literal] = ACTIONS(3428), + [aux_sym_boolean_literal_token1] = ACTIONS(1591), + [aux_sym_boolean_literal_token2] = ACTIONS(1591), + [sym_nothing_literal] = ACTIONS(1593), + [sym_null_literal] = ACTIONS(1593), + [sym_empty_literal] = ACTIONS(1593), + [sym_date_literal] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1595), + }, + [STATE(340)] = { + [sym_variable_declaration] = STATE(4346), + [sym_const_declaration] = STATE(4346), + [sym_visibility] = STATE(11839), + [sym_single_line_if_statement] = STATE(4346), + [sym__inline_statement] = STATE(4346), + [sym_for_statement] = STATE(4346), + [sym__inline_for_statement] = STATE(4347), + [sym_for_each_statement] = STATE(4346), + [sym__inline_for_each_statement] = STATE(4348), + [sym__for_header] = STATE(11370), + [sym__for_each_header] = STATE(11371), + [sym_do_statement] = STATE(4346), + [sym__inline_do_statement] = STATE(4349), + [sym_while_statement] = STATE(4346), + [sym_with_statement] = STATE(4346), + [sym__inline_with_statement] = STATE(4350), + [sym_exit_statement] = STATE(4346), + [sym_on_error_statement] = STATE(4346), + [sym_resume_statement] = STATE(4346), + [sym_goto_statement] = STATE(4346), + [sym_line_number_prefix] = STATE(12390), + [sym_redim_statement] = STATE(4346), + [sym_erase_statement] = STATE(4346), + [sym_open_statement] = STATE(4346), + [sym_input_statement] = STATE(4346), + [sym_line_input_statement] = STATE(4346), + [sym_print_statement] = STATE(4346), + [sym_write_statement] = STATE(4346), + [sym_debug_print_statement] = STATE(4346), + [sym_close_statement] = STATE(4346), + [sym_get_statement] = STATE(4346), + [sym_put_statement] = STATE(4346), + [sym_lock_statement] = STATE(4346), + [sym_unlock_statement] = STATE(4346), + [sym_seek_statement] = STATE(4346), + [sym_raise_event_statement] = STATE(4346), + [sym_name_statement] = STATE(4346), + [sym_load_statement] = STATE(4346), + [sym_unload_statement] = STATE(4346), + [sym_set_statement] = STATE(4346), + [sym_assignment_statement] = STATE(4346), + [sym_call_statement] = STATE(4346), + [sym_expression_statement] = STATE(4346), + [sym__primary_expression] = STATE(2177), + [sym__expression] = STATE(2177), + [sym__assignable_expression] = STATE(14337), + [sym__callable_expression] = STATE(360), + [sym__print_method_callee] = STATE(363), + [sym__print_method_call_expression] = STATE(4521), + [sym__qualified_print_method_expression] = STATE(4522), + [sym__implicit_print_method_expression] = STATE(4523), + [sym__line_method_expression] = STATE(12218), + [sym_call_expression] = STATE(1649), + [sym_new_expression] = STATE(2177), + [sym_addressof_expression] = STATE(2177), + [sym_type_of_expression] = STATE(2177), + [sym_member_expression] = STATE(1381), + [sym_qualified_member_expression] = STATE(912), + [sym_implicit_member_expression] = STATE(912), + [sym_parenthesized_expression] = STATE(2177), + [sym_binary_expression] = STATE(2177), + [sym_unary_expression] = STATE(2177), + [sym__signed_unary_expression] = STATE(1199), + [sym__literal] = STATE(2177), + [sym_boolean_literal] = STATE(2177), + [sym_file_number_literal] = STATE(2177), + [sym_identifier] = ACTIONS(3326), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [aux_sym__attribute_identifier_token1] = ACTIONS(431), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3330), + [sym_static_modifier] = ACTIONS(3332), + [sym__dim_keyword] = ACTIONS(451), + [sym__redim_keyword] = ACTIONS(453), + [aux_sym_get_accessor_token1] = ACTIONS(455), + [aux_sym_set_accessor_token1] = ACTIONS(457), + [aux_sym_const_declaration_token1] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [aux_sym_as_type_clause_token2] = ACTIONS(463), + [aux_sym_dotted_type_expression_token1] = ACTIONS(465), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(473), + [aux_sym_do_condition_token1] = ACTIONS(475), + [aux_sym_with_statement_token1] = ACTIONS(477), + [aux_sym_exit_statement_token1] = ACTIONS(479), + [sym_end_statement] = ACTIONS(3956), + [aux_sym_on_goto_statement_token1] = ACTIONS(3336), + [aux_sym_on_goto_statement_token2] = ACTIONS(483), + [aux_sym_on_error_statement_token2] = ACTIONS(485), + [sym__ambiguous_redim_statement] = ACTIONS(487), + [aux_sym_erase_statement_token1] = ACTIONS(489), + [aux_sym_open_statement_token1] = ACTIONS(491), + [aux_sym_file_mode_token2] = ACTIONS(493), + [aux_sym_file_access_token2] = ACTIONS(495), + [aux_sym_file_lock_token2] = ACTIONS(497), + [aux_sym_print_statement_token1] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_QMARK] = ACTIONS(505), + [aux_sym_close_statement_token1] = ACTIONS(507), + [aux_sym_put_statement_token1] = ACTIONS(509), + [aux_sym_unlock_statement_token1] = ACTIONS(511), + [aux_sym_seek_statement_token1] = ACTIONS(513), + [sym_reset_statement] = ACTIONS(3958), + [aux_sym_raise_event_statement_token1] = ACTIONS(517), + [sym_stop_statement] = ACTIONS(3958), + [sym_beep_statement] = ACTIONS(3958), + [aux_sym_unload_statement_token1] = ACTIONS(519), + [aux_sym_call_statement_token1] = ACTIONS(523), + [sym__ambiguous_call_statement] = ACTIONS(525), + [aux_sym_addressof_expression_token1] = ACTIONS(527), + [aux_sym_type_of_expression_token1] = ACTIONS(529), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(533), + [sym_number_literal] = ACTIONS(3340), + [aux_sym_boolean_literal_token1] = ACTIONS(537), + [aux_sym_boolean_literal_token2] = ACTIONS(537), + [sym_nothing_literal] = ACTIONS(539), + [sym_null_literal] = ACTIONS(539), + [sym_empty_literal] = ACTIONS(539), + [sym_date_literal] = ACTIONS(533), + [anon_sym_POUND] = ACTIONS(541), + }, + [STATE(341)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11467), + [sym__for_each_header] = STATE(11468), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7431), + [sym__print_method_callee] = STATE(7452), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10352), + [sym__implicit_print_method_expression] = STATE(10353), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10401), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10043), + [sym_qualified_member_expression] = STATE(10041), + [sym_implicit_member_expression] = STATE(10041), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3636), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3642), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3644), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3650), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3652), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3656), + [aux_sym_close_statement_token1] = ACTIONS(3658), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(342)] = { + [sym_variable_declaration] = STATE(6521), + [sym_const_declaration] = STATE(6521), + [sym_visibility] = STATE(12008), + [sym_single_line_if_statement] = STATE(6521), + [sym__inline_statement] = STATE(6521), + [sym_for_statement] = STATE(6521), + [sym__inline_for_statement] = STATE(6530), + [sym_for_each_statement] = STATE(6521), + [sym__inline_for_each_statement] = STATE(6531), + [sym__for_header] = STATE(11460), + [sym__for_each_header] = STATE(11461), + [sym_do_statement] = STATE(6521), + [sym__inline_do_statement] = STATE(6542), + [sym_while_statement] = STATE(6521), + [sym_with_statement] = STATE(6521), + [sym__inline_with_statement] = STATE(6543), + [sym_exit_statement] = STATE(6521), + [sym_on_error_statement] = STATE(6521), + [sym_resume_statement] = STATE(6521), + [sym_goto_statement] = STATE(6521), + [sym_line_number_prefix] = STATE(12398), + [sym_redim_statement] = STATE(6521), + [sym_erase_statement] = STATE(6521), + [sym_open_statement] = STATE(6521), + [sym_input_statement] = STATE(6521), + [sym_line_input_statement] = STATE(6521), + [sym_print_statement] = STATE(6521), + [sym_write_statement] = STATE(6521), + [sym_debug_print_statement] = STATE(6521), + [sym_close_statement] = STATE(6521), + [sym_get_statement] = STATE(6521), + [sym_put_statement] = STATE(6521), + [sym_lock_statement] = STATE(6521), + [sym_unlock_statement] = STATE(6521), + [sym_seek_statement] = STATE(6521), + [sym_raise_event_statement] = STATE(6521), + [sym_name_statement] = STATE(6521), + [sym_load_statement] = STATE(6521), + [sym_unload_statement] = STATE(6521), + [sym_set_statement] = STATE(6521), + [sym_assignment_statement] = STATE(6521), + [sym_call_statement] = STATE(6521), + [sym_expression_statement] = STATE(6521), + [sym__primary_expression] = STATE(3687), + [sym__expression] = STATE(3687), + [sym__assignable_expression] = STATE(14598), + [sym__callable_expression] = STATE(419), + [sym__print_method_callee] = STATE(474), + [sym__print_method_call_expression] = STATE(6707), + [sym__qualified_print_method_expression] = STATE(6589), + [sym__implicit_print_method_expression] = STATE(6590), + [sym__line_method_expression] = STATE(12288), + [sym_call_expression] = STATE(2554), + [sym_new_expression] = STATE(3687), + [sym_addressof_expression] = STATE(3687), + [sym_type_of_expression] = STATE(3687), + [sym_member_expression] = STATE(2487), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(3687), + [sym_binary_expression] = STATE(3687), + [sym_unary_expression] = STATE(3687), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(3687), + [sym_boolean_literal] = STATE(3687), + [sym_file_number_literal] = STATE(3687), + [sym_identifier] = ACTIONS(3388), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(2395), + [anon_sym_DOT] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(2401), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3392), + [sym_static_modifier] = ACTIONS(2409), + [sym__dim_keyword] = ACTIONS(2411), + [sym__redim_keyword] = ACTIONS(2413), + [aux_sym_get_accessor_token1] = ACTIONS(2415), + [aux_sym_set_accessor_token1] = ACTIONS(2417), + [aux_sym_const_declaration_token1] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(2425), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(2433), + [aux_sym_do_condition_token1] = ACTIONS(2435), + [aux_sym_with_statement_token1] = ACTIONS(2437), + [aux_sym_exit_statement_token1] = ACTIONS(2439), + [sym_end_statement] = ACTIONS(3960), + [aux_sym_on_goto_statement_token1] = ACTIONS(3396), + [aux_sym_on_goto_statement_token2] = ACTIONS(2443), + [aux_sym_on_error_statement_token2] = ACTIONS(2445), + [sym__ambiguous_redim_statement] = ACTIONS(2447), + [aux_sym_erase_statement_token1] = ACTIONS(2449), + [aux_sym_open_statement_token1] = ACTIONS(2451), + [aux_sym_file_mode_token2] = ACTIONS(2453), + [aux_sym_file_access_token2] = ACTIONS(2455), + [aux_sym_file_lock_token2] = ACTIONS(2457), + [aux_sym_print_statement_token1] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2465), + [aux_sym_close_statement_token1] = ACTIONS(2467), + [aux_sym_put_statement_token1] = ACTIONS(2469), + [aux_sym_unlock_statement_token1] = ACTIONS(2471), + [aux_sym_seek_statement_token1] = ACTIONS(2473), + [sym_reset_statement] = ACTIONS(3962), + [aux_sym_raise_event_statement_token1] = ACTIONS(2477), + [sym_stop_statement] = ACTIONS(3962), + [sym_beep_statement] = ACTIONS(3962), + [aux_sym_unload_statement_token1] = ACTIONS(2479), + [aux_sym_call_statement_token1] = ACTIONS(2483), + [sym__ambiguous_call_statement] = ACTIONS(2485), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(3400), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(2499), + [sym_null_literal] = ACTIONS(2499), + [sym_empty_literal] = ACTIONS(2499), + [sym_date_literal] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(343)] = { + [sym_variable_declaration] = STATE(7219), + [sym_const_declaration] = STATE(7219), + [sym_visibility] = STATE(11767), + [sym_single_line_if_statement] = STATE(7219), + [sym__inline_statement] = STATE(7219), + [sym_for_statement] = STATE(7219), + [sym__inline_for_statement] = STATE(7222), + [sym_for_each_statement] = STATE(7219), + [sym__inline_for_each_statement] = STATE(7227), + [sym__for_header] = STATE(11290), + [sym__for_each_header] = STATE(11291), + [sym_do_statement] = STATE(7219), + [sym__inline_do_statement] = STATE(7230), + [sym_while_statement] = STATE(7219), + [sym_with_statement] = STATE(7219), + [sym__inline_with_statement] = STATE(7233), + [sym_exit_statement] = STATE(7219), + [sym_on_error_statement] = STATE(7219), + [sym_resume_statement] = STATE(7219), + [sym_goto_statement] = STATE(7219), + [sym_line_number_prefix] = STATE(12265), + [sym_redim_statement] = STATE(7219), + [sym_erase_statement] = STATE(7219), + [sym_open_statement] = STATE(7219), + [sym_input_statement] = STATE(7219), + [sym_line_input_statement] = STATE(7219), + [sym_print_statement] = STATE(7219), + [sym_write_statement] = STATE(7219), + [sym_debug_print_statement] = STATE(7219), + [sym_close_statement] = STATE(7219), + [sym_get_statement] = STATE(7219), + [sym_put_statement] = STATE(7219), + [sym_lock_statement] = STATE(7219), + [sym_unlock_statement] = STATE(7219), + [sym_seek_statement] = STATE(7219), + [sym_raise_event_statement] = STATE(7219), + [sym_name_statement] = STATE(7219), + [sym_load_statement] = STATE(7219), + [sym_unload_statement] = STATE(7219), + [sym_set_statement] = STATE(7219), + [sym_assignment_statement] = STATE(7219), + [sym_call_statement] = STATE(7219), + [sym_expression_statement] = STATE(7219), + [sym__primary_expression] = STATE(3761), + [sym__expression] = STATE(3761), + [sym__assignable_expression] = STATE(13814), + [sym__callable_expression] = STATE(540), + [sym__print_method_callee] = STATE(659), + [sym__print_method_call_expression] = STATE(7213), + [sym__qualified_print_method_expression] = STATE(7215), + [sym__implicit_print_method_expression] = STATE(7217), + [sym__line_method_expression] = STATE(12274), + [sym_call_expression] = STATE(3050), + [sym_new_expression] = STATE(3761), + [sym_addressof_expression] = STATE(3761), + [sym_type_of_expression] = STATE(3761), + [sym_member_expression] = STATE(2578), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3761), + [sym_binary_expression] = STATE(3761), + [sym_unary_expression] = STATE(3761), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3761), + [sym_boolean_literal] = STATE(3761), + [sym_file_number_literal] = STATE(3761), + [sym_identifier] = ACTIONS(3452), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(744), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3456), + [sym_static_modifier] = ACTIONS(754), + [sym__dim_keyword] = ACTIONS(756), + [sym__redim_keyword] = ACTIONS(758), + [aux_sym_get_accessor_token1] = ACTIONS(760), + [aux_sym_set_accessor_token1] = ACTIONS(762), + [aux_sym_const_declaration_token1] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(770), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(778), + [aux_sym_do_condition_token1] = ACTIONS(780), + [aux_sym_with_statement_token1] = ACTIONS(782), + [aux_sym_exit_statement_token1] = ACTIONS(784), + [sym_end_statement] = ACTIONS(3964), + [aux_sym_on_goto_statement_token1] = ACTIONS(3460), + [aux_sym_on_goto_statement_token2] = ACTIONS(788), + [aux_sym_on_error_statement_token2] = ACTIONS(790), + [sym__ambiguous_redim_statement] = ACTIONS(792), + [aux_sym_erase_statement_token1] = ACTIONS(794), + [aux_sym_open_statement_token1] = ACTIONS(796), + [aux_sym_file_mode_token2] = ACTIONS(798), + [aux_sym_file_access_token2] = ACTIONS(800), + [aux_sym_file_lock_token2] = ACTIONS(802), + [aux_sym_print_statement_token1] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(810), + [aux_sym_close_statement_token1] = ACTIONS(812), + [aux_sym_put_statement_token1] = ACTIONS(814), + [aux_sym_unlock_statement_token1] = ACTIONS(816), + [aux_sym_seek_statement_token1] = ACTIONS(818), + [sym_reset_statement] = ACTIONS(3966), + [aux_sym_raise_event_statement_token1] = ACTIONS(822), + [sym_stop_statement] = ACTIONS(3966), + [sym_beep_statement] = ACTIONS(3966), + [aux_sym_unload_statement_token1] = ACTIONS(824), + [aux_sym_call_statement_token1] = ACTIONS(828), + [sym__ambiguous_call_statement] = ACTIONS(830), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(838), + [sym_number_literal] = ACTIONS(3464), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(844), + [sym_null_literal] = ACTIONS(844), + [sym_empty_literal] = ACTIONS(844), + [sym_date_literal] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(344)] = { + [sym_variable_declaration] = STATE(6927), + [sym_const_declaration] = STATE(6927), + [sym_visibility] = STATE(11858), + [sym_single_line_if_statement] = STATE(6927), + [sym__inline_statement] = STATE(6927), + [sym_for_statement] = STATE(6927), + [sym__inline_for_statement] = STATE(6929), + [sym_for_each_statement] = STATE(6927), + [sym__inline_for_each_statement] = STATE(6933), + [sym__for_header] = STATE(11272), + [sym__for_each_header] = STATE(11553), + [sym_do_statement] = STATE(6927), + [sym__inline_do_statement] = STATE(6935), + [sym_while_statement] = STATE(6927), + [sym_with_statement] = STATE(6927), + [sym__inline_with_statement] = STATE(6938), + [sym_exit_statement] = STATE(6927), + [sym_on_error_statement] = STATE(6927), + [sym_resume_statement] = STATE(6927), + [sym_goto_statement] = STATE(6927), + [sym_line_number_prefix] = STATE(12383), + [sym_redim_statement] = STATE(6927), + [sym_erase_statement] = STATE(6927), + [sym_open_statement] = STATE(6927), + [sym_input_statement] = STATE(6927), + [sym_line_input_statement] = STATE(6927), + [sym_print_statement] = STATE(6927), + [sym_write_statement] = STATE(6927), + [sym_debug_print_statement] = STATE(6927), + [sym_close_statement] = STATE(6927), + [sym_get_statement] = STATE(6927), + [sym_put_statement] = STATE(6927), + [sym_lock_statement] = STATE(6927), + [sym_unlock_statement] = STATE(6927), + [sym_seek_statement] = STATE(6927), + [sym_raise_event_statement] = STATE(6927), + [sym_name_statement] = STATE(6927), + [sym_load_statement] = STATE(6927), + [sym_unload_statement] = STATE(6927), + [sym_set_statement] = STATE(6927), + [sym_assignment_statement] = STATE(6927), + [sym_call_statement] = STATE(6927), + [sym_expression_statement] = STATE(6927), + [sym__primary_expression] = STATE(3545), + [sym__expression] = STATE(3545), + [sym__assignable_expression] = STATE(13937), + [sym__callable_expression] = STATE(462), + [sym__print_method_callee] = STATE(567), + [sym__print_method_call_expression] = STATE(6775), + [sym__qualified_print_method_expression] = STATE(6778), + [sym__implicit_print_method_expression] = STATE(6785), + [sym__line_method_expression] = STATE(12269), + [sym_call_expression] = STATE(2662), + [sym_new_expression] = STATE(3545), + [sym_addressof_expression] = STATE(3545), + [sym_type_of_expression] = STATE(3545), + [sym_member_expression] = STATE(2549), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3545), + [sym_binary_expression] = STATE(3545), + [sym_unary_expression] = STATE(3545), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3545), + [sym_boolean_literal] = STATE(3545), + [sym_file_number_literal] = STATE(3545), + [sym_identifier] = ACTIONS(3374), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(1609), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3378), + [sym_static_modifier] = ACTIONS(1617), + [sym__dim_keyword] = ACTIONS(1619), + [sym__redim_keyword] = ACTIONS(1621), + [aux_sym_get_accessor_token1] = ACTIONS(1623), + [aux_sym_set_accessor_token1] = ACTIONS(1625), + [aux_sym_const_declaration_token1] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1633), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1641), + [aux_sym_do_condition_token1] = ACTIONS(1645), + [aux_sym_with_statement_token1] = ACTIONS(1647), + [aux_sym_exit_statement_token1] = ACTIONS(1649), + [sym_end_statement] = ACTIONS(3968), + [aux_sym_on_goto_statement_token1] = ACTIONS(3382), + [aux_sym_on_goto_statement_token2] = ACTIONS(1653), + [aux_sym_on_error_statement_token2] = ACTIONS(1655), + [sym__ambiguous_redim_statement] = ACTIONS(1657), + [aux_sym_erase_statement_token1] = ACTIONS(1659), + [aux_sym_open_statement_token1] = ACTIONS(1661), + [aux_sym_file_mode_token2] = ACTIONS(1663), + [aux_sym_file_access_token2] = ACTIONS(1665), + [aux_sym_file_lock_token2] = ACTIONS(1667), + [aux_sym_print_statement_token1] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(1675), + [aux_sym_close_statement_token1] = ACTIONS(1677), + [aux_sym_put_statement_token1] = ACTIONS(1679), + [aux_sym_unlock_statement_token1] = ACTIONS(1681), + [aux_sym_seek_statement_token1] = ACTIONS(1683), + [sym_reset_statement] = ACTIONS(3970), + [aux_sym_raise_event_statement_token1] = ACTIONS(1687), + [sym_stop_statement] = ACTIONS(3970), + [sym_beep_statement] = ACTIONS(3970), + [aux_sym_unload_statement_token1] = ACTIONS(1689), + [aux_sym_call_statement_token1] = ACTIONS(1693), + [sym__ambiguous_call_statement] = ACTIONS(1695), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(1703), + [sym_number_literal] = ACTIONS(3386), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(1709), + [sym_null_literal] = ACTIONS(1709), + [sym_empty_literal] = ACTIONS(1709), + [sym_date_literal] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(345)] = { + [sym_variable_declaration] = STATE(5567), + [sym_const_declaration] = STATE(5567), + [sym_visibility] = STATE(11799), + [sym_single_line_if_statement] = STATE(5567), + [sym__inline_statement] = STATE(5567), + [sym_for_statement] = STATE(5567), + [sym__inline_for_statement] = STATE(5568), + [sym_for_each_statement] = STATE(5567), + [sym__inline_for_each_statement] = STATE(5569), + [sym__for_header] = STATE(11307), + [sym__for_each_header] = STATE(11308), + [sym_do_statement] = STATE(5567), + [sym__inline_do_statement] = STATE(5570), + [sym_while_statement] = STATE(5567), + [sym_with_statement] = STATE(5567), + [sym__inline_with_statement] = STATE(5571), + [sym_exit_statement] = STATE(5567), + [sym_on_error_statement] = STATE(5567), + [sym_resume_statement] = STATE(5567), + [sym_goto_statement] = STATE(5567), + [sym_line_number_prefix] = STATE(12393), + [sym_redim_statement] = STATE(5567), + [sym_erase_statement] = STATE(5567), + [sym_open_statement] = STATE(5567), + [sym_input_statement] = STATE(5567), + [sym_line_input_statement] = STATE(5567), + [sym_print_statement] = STATE(5567), + [sym_write_statement] = STATE(5567), + [sym_debug_print_statement] = STATE(5567), + [sym_close_statement] = STATE(5567), + [sym_get_statement] = STATE(5567), + [sym_put_statement] = STATE(5567), + [sym_lock_statement] = STATE(5567), + [sym_unlock_statement] = STATE(5567), + [sym_seek_statement] = STATE(5567), + [sym_raise_event_statement] = STATE(5567), + [sym_name_statement] = STATE(5567), + [sym_load_statement] = STATE(5567), + [sym_unload_statement] = STATE(5567), + [sym_set_statement] = STATE(5567), + [sym_assignment_statement] = STATE(5567), + [sym_call_statement] = STATE(5567), + [sym_expression_statement] = STATE(5567), + [sym__primary_expression] = STATE(2614), + [sym__expression] = STATE(2614), + [sym__assignable_expression] = STATE(14425), + [sym__callable_expression] = STATE(378), + [sym__print_method_callee] = STATE(393), + [sym__print_method_call_expression] = STATE(5499), + [sym__qualified_print_method_expression] = STATE(5500), + [sym__implicit_print_method_expression] = STATE(5501), + [sym__line_method_expression] = STATE(12228), + [sym_call_expression] = STATE(2293), + [sym_new_expression] = STATE(2614), + [sym_addressof_expression] = STATE(2614), + [sym_type_of_expression] = STATE(2614), + [sym_member_expression] = STATE(2211), + [sym_qualified_member_expression] = STATE(2182), + [sym_implicit_member_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2614), + [sym_binary_expression] = STATE(2614), + [sym_unary_expression] = STATE(2614), + [sym__signed_unary_expression] = STATE(2203), + [sym__literal] = STATE(2614), + [sym_boolean_literal] = STATE(2614), + [sym_file_number_literal] = STATE(2614), + [sym_identifier] = ACTIONS(3342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [aux_sym__attribute_identifier_token1] = ACTIONS(1069), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3346), + [sym_static_modifier] = ACTIONS(1079), + [sym__dim_keyword] = ACTIONS(1081), + [sym__redim_keyword] = ACTIONS(1083), + [aux_sym_get_accessor_token1] = ACTIONS(1085), + [aux_sym_set_accessor_token1] = ACTIONS(1087), + [aux_sym_const_declaration_token1] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_as_type_clause_token2] = ACTIONS(1093), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1095), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1103), + [aux_sym_do_condition_token1] = ACTIONS(1105), + [aux_sym_with_statement_token1] = ACTIONS(1107), + [aux_sym_exit_statement_token1] = ACTIONS(1109), + [sym_end_statement] = ACTIONS(3972), + [aux_sym_on_goto_statement_token1] = ACTIONS(3350), + [aux_sym_on_goto_statement_token2] = ACTIONS(1113), + [aux_sym_on_error_statement_token2] = ACTIONS(1115), + [sym__ambiguous_redim_statement] = ACTIONS(1117), + [aux_sym_erase_statement_token1] = ACTIONS(1119), + [aux_sym_open_statement_token1] = ACTIONS(1121), + [aux_sym_file_mode_token2] = ACTIONS(1123), + [aux_sym_file_access_token2] = ACTIONS(1125), + [aux_sym_file_lock_token2] = ACTIONS(1127), + [aux_sym_print_statement_token1] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1135), + [aux_sym_close_statement_token1] = ACTIONS(1137), + [aux_sym_put_statement_token1] = ACTIONS(1139), + [aux_sym_unlock_statement_token1] = ACTIONS(1141), + [aux_sym_seek_statement_token1] = ACTIONS(1143), + [sym_reset_statement] = ACTIONS(3974), + [aux_sym_raise_event_statement_token1] = ACTIONS(1147), + [sym_stop_statement] = ACTIONS(3974), + [sym_beep_statement] = ACTIONS(3974), + [aux_sym_unload_statement_token1] = ACTIONS(1149), + [aux_sym_call_statement_token1] = ACTIONS(1153), + [sym__ambiguous_call_statement] = ACTIONS(1155), + [aux_sym_addressof_expression_token1] = ACTIONS(1157), + [aux_sym_type_of_expression_token1] = ACTIONS(1159), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(3354), + [aux_sym_boolean_literal_token1] = ACTIONS(1167), + [aux_sym_boolean_literal_token2] = ACTIONS(1167), + [sym_nothing_literal] = ACTIONS(1169), + [sym_null_literal] = ACTIONS(1169), + [sym_empty_literal] = ACTIONS(1169), + [sym_date_literal] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(1171), + }, + [STATE(346)] = { + [sym_variable_declaration] = STATE(12656), + [sym_const_declaration] = STATE(12656), + [sym_visibility] = STATE(12042), + [sym_single_line_if_statement] = STATE(12656), + [sym__inline_statement] = STATE(12656), + [sym_for_statement] = STATE(12656), + [sym__inline_for_statement] = STATE(12661), + [sym_for_each_statement] = STATE(12656), + [sym__inline_for_each_statement] = STATE(12663), + [sym__for_header] = STATE(11321), + [sym__for_each_header] = STATE(11322), + [sym_do_statement] = STATE(12656), + [sym__inline_do_statement] = STATE(12667), + [sym_while_statement] = STATE(12656), + [sym_with_statement] = STATE(12656), + [sym__inline_with_statement] = STATE(12669), + [sym_exit_statement] = STATE(12656), + [sym_on_error_statement] = STATE(12656), + [sym_resume_statement] = STATE(12656), + [sym_goto_statement] = STATE(12656), + [sym_line_number_prefix] = STATE(12173), + [sym_redim_statement] = STATE(12656), + [sym_erase_statement] = STATE(12656), + [sym_open_statement] = STATE(12656), + [sym_input_statement] = STATE(12656), + [sym_line_input_statement] = STATE(12656), + [sym_print_statement] = STATE(12656), + [sym_write_statement] = STATE(12656), + [sym_debug_print_statement] = STATE(12656), + [sym_close_statement] = STATE(12656), + [sym_get_statement] = STATE(12656), + [sym_put_statement] = STATE(12656), + [sym_lock_statement] = STATE(12656), + [sym_unlock_statement] = STATE(12656), + [sym_seek_statement] = STATE(12656), + [sym_raise_event_statement] = STATE(12656), + [sym_name_statement] = STATE(12656), + [sym_load_statement] = STATE(12656), + [sym_unload_statement] = STATE(12656), + [sym_set_statement] = STATE(12656), + [sym_assignment_statement] = STATE(12656), + [sym_call_statement] = STATE(12656), + [sym_expression_statement] = STATE(12656), + [sym__primary_expression] = STATE(10634), + [sym__expression] = STATE(10634), + [sym__assignable_expression] = STATE(14058), + [sym__callable_expression] = STATE(7419), + [sym__print_method_callee] = STATE(7426), + [sym__print_method_call_expression] = STATE(13061), + [sym__qualified_print_method_expression] = STATE(10319), + [sym__implicit_print_method_expression] = STATE(10320), + [sym__line_method_expression] = STATE(12394), + [sym_call_expression] = STATE(10369), + [sym_new_expression] = STATE(10634), + [sym_addressof_expression] = STATE(10634), + [sym_type_of_expression] = STATE(10634), + [sym_member_expression] = STATE(10038), + [sym_qualified_member_expression] = STATE(10034), + [sym_implicit_member_expression] = STATE(10034), + [sym_parenthesized_expression] = STATE(10634), + [sym_binary_expression] = STATE(10634), + [sym_unary_expression] = STATE(10634), + [sym__signed_unary_expression] = STATE(10093), + [sym__literal] = STATE(10634), + [sym_boolean_literal] = STATE(10634), + [sym_file_number_literal] = STATE(10634), + [sym_identifier] = ACTIONS(3528), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(3532), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [aux_sym__attribute_identifier_token1] = ACTIONS(3538), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3540), + [sym_static_modifier] = ACTIONS(3542), + [sym__dim_keyword] = ACTIONS(3544), + [sym__redim_keyword] = ACTIONS(3546), + [aux_sym_get_accessor_token1] = ACTIONS(3548), + [aux_sym_set_accessor_token1] = ACTIONS(3550), + [aux_sym_const_declaration_token1] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [aux_sym_as_type_clause_token2] = ACTIONS(3556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3558), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(3560), + [aux_sym_do_condition_token1] = ACTIONS(3562), + [aux_sym_with_statement_token1] = ACTIONS(3564), + [aux_sym_exit_statement_token1] = ACTIONS(3566), + [sym_end_statement] = ACTIONS(3648), + [aux_sym_on_goto_statement_token1] = ACTIONS(3570), + [aux_sym_on_goto_statement_token2] = ACTIONS(3572), + [aux_sym_on_error_statement_token2] = ACTIONS(3574), + [sym__ambiguous_redim_statement] = ACTIONS(3576), + [aux_sym_erase_statement_token1] = ACTIONS(3578), + [aux_sym_open_statement_token1] = ACTIONS(3580), + [aux_sym_file_mode_token2] = ACTIONS(3582), + [aux_sym_file_access_token2] = ACTIONS(3584), + [aux_sym_file_lock_token2] = ACTIONS(3586), + [aux_sym_print_statement_token1] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_QMARK] = ACTIONS(3594), + [aux_sym_close_statement_token1] = ACTIONS(3596), + [aux_sym_put_statement_token1] = ACTIONS(3598), + [aux_sym_unlock_statement_token1] = ACTIONS(3600), + [aux_sym_seek_statement_token1] = ACTIONS(3602), + [sym_reset_statement] = ACTIONS(3660), + [aux_sym_raise_event_statement_token1] = ACTIONS(3606), + [sym_stop_statement] = ACTIONS(3660), + [sym_beep_statement] = ACTIONS(3660), + [aux_sym_unload_statement_token1] = ACTIONS(3608), + [aux_sym_call_statement_token1] = ACTIONS(3610), + [sym__ambiguous_call_statement] = ACTIONS(3612), + [aux_sym_addressof_expression_token1] = ACTIONS(3614), + [aux_sym_type_of_expression_token1] = ACTIONS(3616), + [aux_sym_unary_expression_token1] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [aux_sym_boolean_literal_token1] = ACTIONS(3624), + [aux_sym_boolean_literal_token2] = ACTIONS(3624), + [sym_nothing_literal] = ACTIONS(3626), + [sym_null_literal] = ACTIONS(3626), + [sym_empty_literal] = ACTIONS(3626), + [sym_date_literal] = ACTIONS(3620), + [anon_sym_POUND] = ACTIONS(3628), + }, + [STATE(347)] = { + [sym_variable_declaration] = STATE(6823), + [sym_const_declaration] = STATE(6823), + [sym_visibility] = STATE(11883), + [sym_single_line_if_statement] = STATE(6823), + [sym__inline_statement] = STATE(6823), + [sym_for_statement] = STATE(6823), + [sym__inline_for_statement] = STATE(6824), + [sym_for_each_statement] = STATE(6823), + [sym__inline_for_each_statement] = STATE(6825), + [sym__for_header] = STATE(11479), + [sym__for_each_header] = STATE(11489), + [sym_do_statement] = STATE(6823), + [sym__inline_do_statement] = STATE(6826), + [sym_while_statement] = STATE(6823), + [sym_with_statement] = STATE(6823), + [sym__inline_with_statement] = STATE(6827), + [sym_exit_statement] = STATE(6823), + [sym_on_error_statement] = STATE(6823), + [sym_resume_statement] = STATE(6823), + [sym_goto_statement] = STATE(6823), + [sym_line_number_prefix] = STATE(12388), + [sym_redim_statement] = STATE(6823), + [sym_erase_statement] = STATE(6823), + [sym_open_statement] = STATE(6823), + [sym_input_statement] = STATE(6823), + [sym_line_input_statement] = STATE(6823), + [sym_print_statement] = STATE(6823), + [sym_write_statement] = STATE(6823), + [sym_debug_print_statement] = STATE(6823), + [sym_close_statement] = STATE(6823), + [sym_get_statement] = STATE(6823), + [sym_put_statement] = STATE(6823), + [sym_lock_statement] = STATE(6823), + [sym_unlock_statement] = STATE(6823), + [sym_seek_statement] = STATE(6823), + [sym_raise_event_statement] = STATE(6823), + [sym_name_statement] = STATE(6823), + [sym_load_statement] = STATE(6823), + [sym_unload_statement] = STATE(6823), + [sym_set_statement] = STATE(6823), + [sym_assignment_statement] = STATE(6823), + [sym_call_statement] = STATE(6823), + [sym_expression_statement] = STATE(6823), + [sym__primary_expression] = STATE(3456), + [sym__expression] = STATE(3456), + [sym__assignable_expression] = STATE(14249), + [sym__callable_expression] = STATE(449), + [sym__print_method_callee] = STATE(550), + [sym__print_method_call_expression] = STATE(6716), + [sym__qualified_print_method_expression] = STATE(6717), + [sym__implicit_print_method_expression] = STATE(6718), + [sym__line_method_expression] = STATE(12203), + [sym_call_expression] = STATE(2635), + [sym_new_expression] = STATE(3456), + [sym_addressof_expression] = STATE(3456), + [sym_type_of_expression] = STATE(3456), + [sym_member_expression] = STATE(2360), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3456), + [sym_binary_expression] = STATE(3456), + [sym_unary_expression] = STATE(3456), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3456), + [sym_boolean_literal] = STATE(3456), + [sym_file_number_literal] = STATE(3456), + [sym_identifier] = ACTIONS(3430), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(1729), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3434), + [sym_static_modifier] = ACTIONS(1737), + [sym__dim_keyword] = ACTIONS(1739), + [sym__redim_keyword] = ACTIONS(1741), + [aux_sym_get_accessor_token1] = ACTIONS(1743), + [aux_sym_set_accessor_token1] = ACTIONS(1745), + [aux_sym_const_declaration_token1] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1753), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1761), + [aux_sym_do_condition_token1] = ACTIONS(1763), + [aux_sym_with_statement_token1] = ACTIONS(1767), + [aux_sym_exit_statement_token1] = ACTIONS(1769), + [sym_end_statement] = ACTIONS(3976), + [aux_sym_on_goto_statement_token1] = ACTIONS(3438), + [aux_sym_on_goto_statement_token2] = ACTIONS(1773), + [aux_sym_on_error_statement_token2] = ACTIONS(1775), + [sym__ambiguous_redim_statement] = ACTIONS(1777), + [aux_sym_erase_statement_token1] = ACTIONS(1779), + [aux_sym_open_statement_token1] = ACTIONS(1781), + [aux_sym_file_mode_token2] = ACTIONS(1783), + [aux_sym_file_access_token2] = ACTIONS(1785), + [aux_sym_file_lock_token2] = ACTIONS(1787), + [aux_sym_print_statement_token1] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(1795), + [aux_sym_close_statement_token1] = ACTIONS(1797), + [aux_sym_put_statement_token1] = ACTIONS(1799), + [aux_sym_unlock_statement_token1] = ACTIONS(1801), + [aux_sym_seek_statement_token1] = ACTIONS(1803), + [sym_reset_statement] = ACTIONS(3978), + [aux_sym_raise_event_statement_token1] = ACTIONS(1807), + [sym_stop_statement] = ACTIONS(3978), + [sym_beep_statement] = ACTIONS(3978), + [aux_sym_unload_statement_token1] = ACTIONS(1809), + [aux_sym_call_statement_token1] = ACTIONS(1813), + [sym__ambiguous_call_statement] = ACTIONS(1815), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(1823), + [sym_number_literal] = ACTIONS(3442), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(1829), + [sym_null_literal] = ACTIONS(1829), + [sym_empty_literal] = ACTIONS(1829), + [sym_date_literal] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(348)] = { + [sym_variable_declaration] = STATE(6442), + [sym_const_declaration] = STATE(6442), + [sym_visibility] = STATE(11869), + [sym_single_line_if_statement] = STATE(6442), + [sym__inline_statement] = STATE(6442), + [sym_for_statement] = STATE(6442), + [sym__inline_for_statement] = STATE(6443), + [sym_for_each_statement] = STATE(6442), + [sym__inline_for_each_statement] = STATE(6445), + [sym__for_header] = STATE(11298), + [sym__for_each_header] = STATE(11310), + [sym_do_statement] = STATE(6442), + [sym__inline_do_statement] = STATE(6446), + [sym_while_statement] = STATE(6442), + [sym_with_statement] = STATE(6442), + [sym__inline_with_statement] = STATE(6447), + [sym_exit_statement] = STATE(6442), + [sym_on_error_statement] = STATE(6442), + [sym_resume_statement] = STATE(6442), + [sym_goto_statement] = STATE(6442), + [sym_line_number_prefix] = STATE(12386), + [sym_redim_statement] = STATE(6442), + [sym_erase_statement] = STATE(6442), + [sym_open_statement] = STATE(6442), + [sym_input_statement] = STATE(6442), + [sym_line_input_statement] = STATE(6442), + [sym_print_statement] = STATE(6442), + [sym_write_statement] = STATE(6442), + [sym_debug_print_statement] = STATE(6442), + [sym_close_statement] = STATE(6442), + [sym_get_statement] = STATE(6442), + [sym_put_statement] = STATE(6442), + [sym_lock_statement] = STATE(6442), + [sym_unlock_statement] = STATE(6442), + [sym_seek_statement] = STATE(6442), + [sym_raise_event_statement] = STATE(6442), + [sym_name_statement] = STATE(6442), + [sym_load_statement] = STATE(6442), + [sym_unload_statement] = STATE(6442), + [sym_set_statement] = STATE(6442), + [sym_assignment_statement] = STATE(6442), + [sym_call_statement] = STATE(6442), + [sym_expression_statement] = STATE(6442), + [sym__primary_expression] = STATE(3555), + [sym__expression] = STATE(3555), + [sym__assignable_expression] = STATE(14161), + [sym__callable_expression] = STATE(447), + [sym__print_method_callee] = STATE(544), + [sym__print_method_call_expression] = STATE(6321), + [sym__qualified_print_method_expression] = STATE(6322), + [sym__implicit_print_method_expression] = STATE(6324), + [sym__line_method_expression] = STATE(12174), + [sym_call_expression] = STATE(2663), + [sym_new_expression] = STATE(3555), + [sym_addressof_expression] = STATE(3555), + [sym_type_of_expression] = STATE(3555), + [sym_member_expression] = STATE(2534), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(3555), + [sym_boolean_literal] = STATE(3555), + [sym_file_number_literal] = STATE(3555), + [sym_identifier] = ACTIONS(3402), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_property_statement_token1] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(1370), + [aux_sym_option_statement_token3] = ACTIONS(746), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3406), + [sym_static_modifier] = ACTIONS(1378), + [sym__dim_keyword] = ACTIONS(1380), + [sym__redim_keyword] = ACTIONS(1382), + [aux_sym_get_accessor_token1] = ACTIONS(1384), + [aux_sym_set_accessor_token1] = ACTIONS(1386), + [aux_sym_const_declaration_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(1394), + [aux_sym_visibility_token1] = ACTIONS(746), + [aux_sym_visibility_token2] = ACTIONS(746), + [aux_sym__for_header_token1] = ACTIONS(119), + [aux_sym_do_statement_token1] = ACTIONS(1404), + [aux_sym_do_condition_token1] = ACTIONS(1406), + [aux_sym_with_statement_token1] = ACTIONS(1408), + [aux_sym_exit_statement_token1] = ACTIONS(1410), + [sym_end_statement] = ACTIONS(3980), + [aux_sym_on_goto_statement_token1] = ACTIONS(3410), + [aux_sym_on_goto_statement_token2] = ACTIONS(1414), + [aux_sym_on_error_statement_token2] = ACTIONS(1416), + [sym__ambiguous_redim_statement] = ACTIONS(1418), + [aux_sym_erase_statement_token1] = ACTIONS(1420), + [aux_sym_open_statement_token1] = ACTIONS(1422), + [aux_sym_file_mode_token2] = ACTIONS(1424), + [aux_sym_file_access_token2] = ACTIONS(1426), + [aux_sym_file_lock_token2] = ACTIONS(1428), + [aux_sym_print_statement_token1] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1436), + [aux_sym_close_statement_token1] = ACTIONS(1438), + [aux_sym_put_statement_token1] = ACTIONS(1440), + [aux_sym_unlock_statement_token1] = ACTIONS(1442), + [aux_sym_seek_statement_token1] = ACTIONS(1444), + [sym_reset_statement] = ACTIONS(3982), + [aux_sym_raise_event_statement_token1] = ACTIONS(1448), + [sym_stop_statement] = ACTIONS(3982), + [sym_beep_statement] = ACTIONS(3982), + [aux_sym_unload_statement_token1] = ACTIONS(1450), + [aux_sym_call_statement_token1] = ACTIONS(1454), + [sym__ambiguous_call_statement] = ACTIONS(1456), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(3414), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(1470), + [sym_null_literal] = ACTIONS(1470), + [sym_empty_literal] = ACTIONS(1470), + [sym_date_literal] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(349)] = { + [sym__primary_expression] = STATE(10805), + [sym__expression] = STATE(10805), + [sym__callable_expression] = STATE(13480), + [sym_call_expression] = STATE(10052), + [sym_new_expression] = STATE(10805), + [sym_addressof_expression] = STATE(10805), + [sym_type_of_expression] = STATE(10805), + [sym_member_expression] = STATE(10054), + [sym_qualified_member_expression] = STATE(10049), + [sym_implicit_member_expression] = STATE(10049), + [sym_parenthesized_expression] = STATE(10805), + [sym_binary_expression] = STATE(10805), + [sym_unary_expression] = STATE(10805), + [sym__signed_unary_expression] = STATE(10078), + [sym__literal] = STATE(10805), + [sym_boolean_literal] = STATE(10805), + [sym_file_number_literal] = STATE(10805), + [sym_identifier] = ACTIONS(3984), + [sym_newline] = ACTIONS(3986), + [anon_sym_COLON] = ACTIONS(3986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3989), + [aux_sym_frm_property_statement_token1] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [aux_sym__attribute_identifier_token1] = ACTIONS(3989), + [aux_sym_option_statement_token3] = ACTIONS(3989), + [aux_sym_type_declaration_token1] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3989), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(3989), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(3989), + [aux_sym_enum_declaration_token1] = ACTIONS(3989), + [aux_sym_declare_sub_statement_token1] = ACTIONS(3989), + [aux_sym_declare_sub_statement_token2] = ACTIONS(3989), + [aux_sym_declare_function_statement_token1] = ACTIONS(3989), + [aux_sym_preprocessor_const_token1] = ACTIONS(3989), + [aux_sym__property_get_header_token1] = ACTIONS(3989), + [aux_sym_event_declaration_token1] = ACTIONS(3989), + [sym_static_modifier] = ACTIONS(3989), + [sym__dim_keyword] = ACTIONS(3989), + [sym__redim_keyword] = ACTIONS(3989), + [aux_sym_byval_modifier_token1] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3989), + [aux_sym_set_accessor_token1] = ACTIONS(3989), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(3998), + [aux_sym_as_type_clause_token2] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4004), + [aux_sym_visibility_token1] = ACTIONS(3989), + [aux_sym_visibility_token2] = ACTIONS(3989), + [aux_sym_elseif_fragment_token1] = ACTIONS(3989), + [aux_sym_else_fragment_token1] = ACTIONS(3989), + [aux_sym_select_statement_token1] = ACTIONS(3989), + [aux_sym__for_header_token1] = ACTIONS(3989), + [aux_sym_do_statement_token1] = ACTIONS(3989), + [aux_sym_do_condition_token1] = ACTIONS(3989), + [aux_sym_with_statement_token1] = ACTIONS(3989), + [aux_sym_exit_statement_token1] = ACTIONS(3989), + [sym_end_statement] = ACTIONS(3986), + [aux_sym_on_goto_statement_token1] = ACTIONS(3989), + [aux_sym_on_goto_statement_token2] = ACTIONS(3989), + [aux_sym_on_error_statement_token2] = ACTIONS(3989), + [sym__ambiguous_redim_statement] = ACTIONS(3986), + [aux_sym_erase_statement_token1] = ACTIONS(3989), + [aux_sym_open_statement_token1] = ACTIONS(3989), + [aux_sym_file_mode_token2] = ACTIONS(3989), + [aux_sym_file_access_token2] = ACTIONS(3989), + [aux_sym_file_lock_token2] = ACTIONS(3989), + [aux_sym_print_statement_token1] = ACTIONS(3989), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(3986), + [aux_sym_close_statement_token1] = ACTIONS(3989), + [aux_sym_put_statement_token1] = ACTIONS(3989), + [aux_sym_unlock_statement_token1] = ACTIONS(3989), + [aux_sym_seek_statement_token1] = ACTIONS(3989), + [sym_reset_statement] = ACTIONS(3989), + [aux_sym_raise_event_statement_token1] = ACTIONS(3989), + [sym_stop_statement] = ACTIONS(3989), + [sym_beep_statement] = ACTIONS(3989), + [aux_sym_unload_statement_token1] = ACTIONS(3989), + [aux_sym_def_type_statement_token1] = ACTIONS(3989), + [aux_sym_def_type_statement_token2] = ACTIONS(3989), + [aux_sym_def_type_statement_token3] = ACTIONS(3989), + [aux_sym_def_type_statement_token4] = ACTIONS(3989), + [aux_sym_def_type_statement_token5] = ACTIONS(3989), + [aux_sym_def_type_statement_token6] = ACTIONS(3989), + [aux_sym_def_type_statement_token7] = ACTIONS(3989), + [aux_sym_def_type_statement_token8] = ACTIONS(3989), + [aux_sym_def_type_statement_token9] = ACTIONS(3989), + [aux_sym_def_type_statement_token10] = ACTIONS(3989), + [aux_sym_def_type_statement_token11] = ACTIONS(3989), + [aux_sym_def_type_statement_token12] = ACTIONS(3989), + [aux_sym_def_type_statement_token13] = ACTIONS(3989), + [aux_sym_def_type_statement_token14] = ACTIONS(3989), + [aux_sym_call_statement_token1] = ACTIONS(3989), + [sym__ambiguous_call_statement] = ACTIONS(3989), + [aux_sym_addressof_expression_token1] = ACTIONS(4012), + [aux_sym_type_of_expression_token1] = ACTIONS(4014), + [aux_sym_unary_expression_token1] = ACTIONS(4016), + [sym_string_literal] = ACTIONS(4018), + [sym_number_literal] = ACTIONS(4018), + [aux_sym_boolean_literal_token1] = ACTIONS(4020), + [aux_sym_boolean_literal_token2] = ACTIONS(4020), + [sym_nothing_literal] = ACTIONS(4022), + [sym_null_literal] = ACTIONS(4022), + [sym_empty_literal] = ACTIONS(4022), + [sym_date_literal] = ACTIONS(4018), + [anon_sym_POUND] = ACTIONS(4024), + }, + [STATE(350)] = { + [sym_argument_list] = STATE(1248), + [sym_unparenthesized_argument_list] = STATE(3927), + [sym__unparenthesized_argument_sequence] = STATE(3928), + [sym__omitted_argument_sequence] = STATE(3928), + [sym__argument] = STATE(2902), + [sym_named_argument] = STATE(2902), + [sym_byval_argument] = STATE(2902), + [sym__primary_expression] = STATE(454), + [sym__expression] = STATE(1053), + [sym_comparison_expression] = STATE(2684), + [sym__comparison_operand] = STATE(11297), + [sym_logical_value_expression] = STATE(2684), + [sym__callable_expression] = STATE(13215), + [sym_call_expression] = STATE(380), + [sym_new_expression] = STATE(454), + [sym_addressof_expression] = STATE(454), + [sym_type_of_expression] = STATE(454), + [sym_member_expression] = STATE(453), + [sym_qualified_member_expression] = STATE(424), + [sym_implicit_member_expression] = STATE(424), + [sym_parenthesized_expression] = STATE(454), + [sym_binary_expression] = STATE(454), + [sym_unary_expression] = STATE(1053), + [sym__signed_unary_expression] = STATE(456), + [sym__literal] = STATE(454), + [sym_boolean_literal] = STATE(454), + [sym_file_number_literal] = STATE(454), + [sym_identifier] = ACTIONS(4026), + [sym_newline] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4030), + [aux_sym_frm_property_statement_token1] = ACTIONS(4032), + [anon_sym_EQ] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(4036), + [anon_sym_BANG] = ACTIONS(4038), + [aux_sym__attribute_identifier_token1] = ACTIONS(4030), + [aux_sym_option_statement_token3] = ACTIONS(4030), + [aux_sym_type_declaration_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4030), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4030), + [aux_sym_enum_declaration_token1] = ACTIONS(4030), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4030), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4030), + [aux_sym_declare_function_statement_token1] = ACTIONS(4030), + [aux_sym_preprocessor_const_token1] = ACTIONS(4030), + [aux_sym__property_get_header_token1] = ACTIONS(4030), + [aux_sym_event_declaration_token1] = ACTIONS(4030), + [sym_static_modifier] = ACTIONS(4030), + [sym__dim_keyword] = ACTIONS(4030), + [sym__redim_keyword] = ACTIONS(4030), + [aux_sym_byval_modifier_token1] = ACTIONS(4040), + [aux_sym_get_accessor_token1] = ACTIONS(4030), + [aux_sym_set_accessor_token1] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4042), + [aux_sym_const_declaration_token1] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4044), + [aux_sym_as_type_clause_token2] = ACTIONS(4046), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4048), + [aux_sym_visibility_token1] = ACTIONS(4030), + [aux_sym_visibility_token2] = ACTIONS(4030), + [aux_sym_elseif_fragment_token1] = ACTIONS(4030), + [aux_sym_else_fragment_token1] = ACTIONS(4030), + [aux_sym_select_statement_token1] = ACTIONS(4030), + [aux_sym__for_header_token1] = ACTIONS(4030), + [aux_sym_do_statement_token1] = ACTIONS(4030), + [aux_sym_do_condition_token1] = ACTIONS(4030), + [aux_sym_with_statement_token1] = ACTIONS(4030), + [aux_sym_exit_statement_token1] = ACTIONS(4030), + [sym_end_statement] = ACTIONS(4028), + [aux_sym_on_goto_statement_token1] = ACTIONS(4030), + [aux_sym_on_goto_statement_token2] = ACTIONS(4030), + [aux_sym_on_error_statement_token2] = ACTIONS(4030), + [sym__ambiguous_redim_statement] = ACTIONS(4028), + [aux_sym_erase_statement_token1] = ACTIONS(4030), + [aux_sym_open_statement_token1] = ACTIONS(4030), + [aux_sym_file_mode_token2] = ACTIONS(4030), + [aux_sym_file_access_token2] = ACTIONS(4030), + [aux_sym_file_lock_token2] = ACTIONS(4030), + [aux_sym_print_statement_token1] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_QMARK] = ACTIONS(4028), + [aux_sym_close_statement_token1] = ACTIONS(4030), + [aux_sym_put_statement_token1] = ACTIONS(4030), + [aux_sym_unlock_statement_token1] = ACTIONS(4030), + [aux_sym_seek_statement_token1] = ACTIONS(4030), + [sym_reset_statement] = ACTIONS(4030), + [aux_sym_raise_event_statement_token1] = ACTIONS(4030), + [sym_stop_statement] = ACTIONS(4030), + [sym_beep_statement] = ACTIONS(4030), + [aux_sym_unload_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token2] = ACTIONS(4030), + [aux_sym_def_type_statement_token3] = ACTIONS(4030), + [aux_sym_def_type_statement_token4] = ACTIONS(4030), + [aux_sym_def_type_statement_token5] = ACTIONS(4030), + [aux_sym_def_type_statement_token6] = ACTIONS(4030), + [aux_sym_def_type_statement_token7] = ACTIONS(4030), + [aux_sym_def_type_statement_token8] = ACTIONS(4030), + [aux_sym_def_type_statement_token9] = ACTIONS(4030), + [aux_sym_def_type_statement_token10] = ACTIONS(4030), + [aux_sym_def_type_statement_token11] = ACTIONS(4030), + [aux_sym_def_type_statement_token12] = ACTIONS(4030), + [aux_sym_def_type_statement_token13] = ACTIONS(4030), + [aux_sym_def_type_statement_token14] = ACTIONS(4030), + [aux_sym_call_statement_token1] = ACTIONS(4030), + [sym__ambiguous_call_statement] = ACTIONS(4030), + [aux_sym_addressof_expression_token1] = ACTIONS(4054), + [aux_sym_type_of_expression_token1] = ACTIONS(4056), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(4058), + [sym_number_literal] = ACTIONS(4058), + [aux_sym_boolean_literal_token1] = ACTIONS(4060), + [aux_sym_boolean_literal_token2] = ACTIONS(4060), + [sym_nothing_literal] = ACTIONS(4062), + [sym_null_literal] = ACTIONS(4062), + [sym_empty_literal] = ACTIONS(4062), + [sym_date_literal] = ACTIONS(4058), + [anon_sym_POUND] = ACTIONS(4064), + }, + [STATE(351)] = { + [sym__primary_expression] = STATE(10848), + [sym__expression] = STATE(10848), + [sym__callable_expression] = STATE(13480), + [sym_call_expression] = STATE(10052), + [sym_new_expression] = STATE(10848), + [sym_addressof_expression] = STATE(10848), + [sym_type_of_expression] = STATE(10848), + [sym_member_expression] = STATE(10054), + [sym_qualified_member_expression] = STATE(10049), + [sym_implicit_member_expression] = STATE(10049), + [sym_parenthesized_expression] = STATE(10848), + [sym_binary_expression] = STATE(10848), + [sym_unary_expression] = STATE(10848), + [sym__signed_unary_expression] = STATE(10078), + [sym__literal] = STATE(10848), + [sym_boolean_literal] = STATE(10848), + [sym_file_number_literal] = STATE(10848), + [sym_identifier] = ACTIONS(3984), + [sym_newline] = ACTIONS(3986), + [anon_sym_COLON] = ACTIONS(3986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3989), + [aux_sym_frm_property_statement_token1] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [aux_sym__attribute_identifier_token1] = ACTIONS(3989), + [aux_sym_option_statement_token3] = ACTIONS(3989), + [aux_sym_type_declaration_token1] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3989), + [aux_sym_enum_declaration_token1] = ACTIONS(3989), + [aux_sym_declare_sub_statement_token1] = ACTIONS(3989), + [aux_sym_declare_sub_statement_token2] = ACTIONS(3989), + [aux_sym_declare_function_statement_token1] = ACTIONS(3989), + [aux_sym_preprocessor_const_token1] = ACTIONS(3989), + [aux_sym__property_get_header_token1] = ACTIONS(3989), + [aux_sym_event_declaration_token1] = ACTIONS(3989), + [sym_static_modifier] = ACTIONS(3989), + [sym__dim_keyword] = ACTIONS(3989), + [sym__redim_keyword] = ACTIONS(3989), + [aux_sym_byval_modifier_token1] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3989), + [aux_sym_set_accessor_token1] = ACTIONS(3989), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(3998), + [aux_sym_as_type_clause_token2] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4004), + [aux_sym_visibility_token1] = ACTIONS(3989), + [aux_sym_visibility_token2] = ACTIONS(3989), + [aux_sym_elseif_fragment_token1] = ACTIONS(3989), + [aux_sym_else_fragment_token1] = ACTIONS(3989), + [aux_sym_select_statement_token1] = ACTIONS(3989), + [aux_sym__for_header_token1] = ACTIONS(3989), + [aux_sym_do_statement_token1] = ACTIONS(3989), + [aux_sym_do_condition_token1] = ACTIONS(3989), + [aux_sym_with_statement_token1] = ACTIONS(3989), + [aux_sym_exit_statement_token1] = ACTIONS(3989), + [sym_end_statement] = ACTIONS(3986), + [aux_sym_on_goto_statement_token1] = ACTIONS(3989), + [aux_sym_on_goto_statement_token2] = ACTIONS(3989), + [aux_sym_on_error_statement_token2] = ACTIONS(3989), + [sym__ambiguous_redim_statement] = ACTIONS(3986), + [aux_sym_erase_statement_token1] = ACTIONS(3989), + [aux_sym_open_statement_token1] = ACTIONS(3989), + [aux_sym_file_mode_token2] = ACTIONS(3989), + [aux_sym_file_access_token2] = ACTIONS(3989), + [aux_sym_file_lock_token2] = ACTIONS(3989), + [aux_sym_print_statement_token1] = ACTIONS(3989), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(3986), + [aux_sym_close_statement_token1] = ACTIONS(3989), + [aux_sym_put_statement_token1] = ACTIONS(3989), + [aux_sym_unlock_statement_token1] = ACTIONS(3989), + [aux_sym_seek_statement_token1] = ACTIONS(3989), + [sym_reset_statement] = ACTIONS(3989), + [aux_sym_raise_event_statement_token1] = ACTIONS(3989), + [sym_stop_statement] = ACTIONS(3989), + [sym_beep_statement] = ACTIONS(3989), + [aux_sym_unload_statement_token1] = ACTIONS(3989), + [aux_sym_def_type_statement_token1] = ACTIONS(3989), + [aux_sym_def_type_statement_token2] = ACTIONS(3989), + [aux_sym_def_type_statement_token3] = ACTIONS(3989), + [aux_sym_def_type_statement_token4] = ACTIONS(3989), + [aux_sym_def_type_statement_token5] = ACTIONS(3989), + [aux_sym_def_type_statement_token6] = ACTIONS(3989), + [aux_sym_def_type_statement_token7] = ACTIONS(3989), + [aux_sym_def_type_statement_token8] = ACTIONS(3989), + [aux_sym_def_type_statement_token9] = ACTIONS(3989), + [aux_sym_def_type_statement_token10] = ACTIONS(3989), + [aux_sym_def_type_statement_token11] = ACTIONS(3989), + [aux_sym_def_type_statement_token12] = ACTIONS(3989), + [aux_sym_def_type_statement_token13] = ACTIONS(3989), + [aux_sym_def_type_statement_token14] = ACTIONS(3989), + [aux_sym_call_statement_token1] = ACTIONS(3989), + [sym__ambiguous_call_statement] = ACTIONS(3989), + [aux_sym_addressof_expression_token1] = ACTIONS(4012), + [aux_sym_type_of_expression_token1] = ACTIONS(4014), + [aux_sym_unary_expression_token1] = ACTIONS(4016), + [sym_string_literal] = ACTIONS(4066), + [sym_number_literal] = ACTIONS(4066), + [aux_sym_boolean_literal_token1] = ACTIONS(4020), + [aux_sym_boolean_literal_token2] = ACTIONS(4020), + [sym_nothing_literal] = ACTIONS(4068), + [sym_null_literal] = ACTIONS(4068), + [sym_empty_literal] = ACTIONS(4068), + [sym_date_literal] = ACTIONS(4066), + [anon_sym_POUND] = ACTIONS(4024), + }, + [STATE(352)] = { + [sym_output_list] = STATE(3913), + [sym__print_output_expression] = STATE(2885), + [sym__unparenthesized_print_output_expression] = STATE(2885), + [sym__print_output_call_binary_expression] = STATE(2885), + [sym__print_output_call_operand] = STATE(10977), + [sym__print_output_member_comparison_expression] = STATE(3693), + [sym__print_output_call_member_expression] = STATE(377), + [sym__print_output_call_expression] = STATE(1052), + [sym__print_output_qualified_callable] = STATE(13504), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10978), + [sym_comparison_expression] = STATE(2899), + [sym__comparison_operand] = STATE(11297), + [sym_logical_value_expression] = STATE(2901), + [sym__callable_expression] = STATE(13604), + [sym_call_expression] = STATE(10295), + [sym_new_expression] = STATE(395), + [sym_addressof_expression] = STATE(395), + [sym_type_of_expression] = STATE(395), + [sym_member_expression] = STATE(397), + [sym_qualified_member_expression] = STATE(424), + [sym_implicit_member_expression] = STATE(424), + [sym_parenthesized_expression] = STATE(415), + [sym_binary_expression] = STATE(416), + [sym_unary_expression] = STATE(878), + [sym__signed_unary_expression] = STATE(456), + [sym__literal] = STATE(395), + [sym_boolean_literal] = STATE(395), + [sym_file_number_literal] = STATE(395), + [sym_identifier] = ACTIONS(4070), + [sym_newline] = ACTIONS(4072), + [anon_sym_COLON] = ACTIONS(4072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4074), + [aux_sym_frm_property_statement_token1] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4036), + [anon_sym_BANG] = ACTIONS(4038), + [aux_sym__attribute_identifier_token1] = ACTIONS(4074), + [aux_sym_option_statement_token3] = ACTIONS(4074), + [aux_sym_type_declaration_token1] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4074), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4074), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4074), + [aux_sym_enum_declaration_token1] = ACTIONS(4074), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4074), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4074), + [aux_sym_declare_function_statement_token1] = ACTIONS(4074), + [aux_sym_preprocessor_const_token1] = ACTIONS(4074), + [aux_sym__property_get_header_token1] = ACTIONS(4074), + [aux_sym_event_declaration_token1] = ACTIONS(4074), + [sym_static_modifier] = ACTIONS(4074), + [sym__dim_keyword] = ACTIONS(4074), + [sym__redim_keyword] = ACTIONS(4074), + [aux_sym_get_accessor_token1] = ACTIONS(4074), + [aux_sym_set_accessor_token1] = ACTIONS(4074), + [aux_sym_const_declaration_token1] = ACTIONS(4074), + [anon_sym_LPAREN] = ACTIONS(4078), + [aux_sym_as_type_clause_token2] = ACTIONS(4046), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4080), + [aux_sym_visibility_token1] = ACTIONS(4074), + [aux_sym_visibility_token2] = ACTIONS(4074), + [aux_sym_elseif_fragment_token1] = ACTIONS(4074), + [aux_sym_else_fragment_token1] = ACTIONS(4074), + [aux_sym_select_statement_token1] = ACTIONS(4074), + [aux_sym__for_header_token1] = ACTIONS(4074), + [aux_sym_do_statement_token1] = ACTIONS(4074), + [aux_sym_do_condition_token1] = ACTIONS(4074), + [aux_sym_with_statement_token1] = ACTIONS(4074), + [aux_sym_exit_statement_token1] = ACTIONS(4074), + [sym_end_statement] = ACTIONS(4072), + [aux_sym_on_goto_statement_token1] = ACTIONS(4074), + [aux_sym_on_goto_statement_token2] = ACTIONS(4074), + [aux_sym_on_error_statement_token2] = ACTIONS(4074), + [sym__ambiguous_redim_statement] = ACTIONS(4072), + [aux_sym_erase_statement_token1] = ACTIONS(4074), + [aux_sym_open_statement_token1] = ACTIONS(4074), + [aux_sym_file_mode_token2] = ACTIONS(4074), + [aux_sym_file_access_token2] = ACTIONS(4074), + [aux_sym_file_lock_token2] = ACTIONS(4074), + [aux_sym_print_statement_token1] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_QMARK] = ACTIONS(4072), + [aux_sym_close_statement_token1] = ACTIONS(4074), + [aux_sym_put_statement_token1] = ACTIONS(4074), + [aux_sym_unlock_statement_token1] = ACTIONS(4074), + [aux_sym_seek_statement_token1] = ACTIONS(4074), + [sym_reset_statement] = ACTIONS(4074), + [aux_sym_raise_event_statement_token1] = ACTIONS(4074), + [sym_stop_statement] = ACTIONS(4074), + [sym_beep_statement] = ACTIONS(4074), + [aux_sym_unload_statement_token1] = ACTIONS(4074), + [aux_sym_def_type_statement_token1] = ACTIONS(4074), + [aux_sym_def_type_statement_token2] = ACTIONS(4074), + [aux_sym_def_type_statement_token3] = ACTIONS(4074), + [aux_sym_def_type_statement_token4] = ACTIONS(4074), + [aux_sym_def_type_statement_token5] = ACTIONS(4074), + [aux_sym_def_type_statement_token6] = ACTIONS(4074), + [aux_sym_def_type_statement_token7] = ACTIONS(4074), + [aux_sym_def_type_statement_token8] = ACTIONS(4074), + [aux_sym_def_type_statement_token9] = ACTIONS(4074), + [aux_sym_def_type_statement_token10] = ACTIONS(4074), + [aux_sym_def_type_statement_token11] = ACTIONS(4074), + [aux_sym_def_type_statement_token12] = ACTIONS(4074), + [aux_sym_def_type_statement_token13] = ACTIONS(4074), + [aux_sym_def_type_statement_token14] = ACTIONS(4074), + [aux_sym_call_statement_token1] = ACTIONS(4074), + [sym__ambiguous_call_statement] = ACTIONS(4074), + [aux_sym_addressof_expression_token1] = ACTIONS(4054), + [aux_sym_type_of_expression_token1] = ACTIONS(4056), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(4082), + [sym_number_literal] = ACTIONS(4082), + [aux_sym_boolean_literal_token1] = ACTIONS(4060), + [aux_sym_boolean_literal_token2] = ACTIONS(4060), + [sym_nothing_literal] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4084), + [sym_empty_literal] = ACTIONS(4084), + [sym_date_literal] = ACTIONS(4082), + [anon_sym_POUND] = ACTIONS(4064), + }, + [STATE(353)] = { + [sym_output_list] = STATE(3979), + [sym__print_output_expression] = STATE(2885), + [sym__unparenthesized_print_output_expression] = STATE(2885), + [sym__print_output_call_binary_expression] = STATE(2885), + [sym__print_output_call_operand] = STATE(10977), + [sym__print_output_member_comparison_expression] = STATE(3693), + [sym__print_output_call_member_expression] = STATE(377), + [sym__print_output_call_expression] = STATE(1052), + [sym__print_output_qualified_callable] = STATE(13504), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10978), + [sym_comparison_expression] = STATE(2899), + [sym__comparison_operand] = STATE(11297), + [sym_logical_value_expression] = STATE(2901), + [sym__callable_expression] = STATE(13604), + [sym_call_expression] = STATE(10295), + [sym_new_expression] = STATE(395), + [sym_addressof_expression] = STATE(395), + [sym_type_of_expression] = STATE(395), + [sym_member_expression] = STATE(397), + [sym_qualified_member_expression] = STATE(424), + [sym_implicit_member_expression] = STATE(424), + [sym_parenthesized_expression] = STATE(415), + [sym_binary_expression] = STATE(416), + [sym_unary_expression] = STATE(878), + [sym__signed_unary_expression] = STATE(456), + [sym__literal] = STATE(395), + [sym_boolean_literal] = STATE(395), + [sym_file_number_literal] = STATE(395), + [sym_identifier] = ACTIONS(4070), + [sym_newline] = ACTIONS(4086), + [anon_sym_COLON] = ACTIONS(4086), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4088), + [aux_sym_frm_property_statement_token1] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4036), + [anon_sym_BANG] = ACTIONS(4038), + [aux_sym__attribute_identifier_token1] = ACTIONS(4088), + [aux_sym_option_statement_token3] = ACTIONS(4088), + [aux_sym_type_declaration_token1] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4088), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4088), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4088), + [aux_sym_enum_declaration_token1] = ACTIONS(4088), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4088), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4088), + [aux_sym_declare_function_statement_token1] = ACTIONS(4088), + [aux_sym_preprocessor_const_token1] = ACTIONS(4088), + [aux_sym__property_get_header_token1] = ACTIONS(4088), + [aux_sym_event_declaration_token1] = ACTIONS(4088), + [sym_static_modifier] = ACTIONS(4088), + [sym__dim_keyword] = ACTIONS(4088), + [sym__redim_keyword] = ACTIONS(4088), + [aux_sym_get_accessor_token1] = ACTIONS(4088), + [aux_sym_set_accessor_token1] = ACTIONS(4088), + [aux_sym_const_declaration_token1] = ACTIONS(4088), + [anon_sym_LPAREN] = ACTIONS(4078), + [aux_sym_as_type_clause_token2] = ACTIONS(4046), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4080), + [aux_sym_visibility_token1] = ACTIONS(4088), + [aux_sym_visibility_token2] = ACTIONS(4088), + [aux_sym_elseif_fragment_token1] = ACTIONS(4088), + [aux_sym_else_fragment_token1] = ACTIONS(4088), + [aux_sym_select_statement_token1] = ACTIONS(4088), + [aux_sym__for_header_token1] = ACTIONS(4088), + [aux_sym_do_statement_token1] = ACTIONS(4088), + [aux_sym_do_condition_token1] = ACTIONS(4088), + [aux_sym_with_statement_token1] = ACTIONS(4088), + [aux_sym_exit_statement_token1] = ACTIONS(4088), + [sym_end_statement] = ACTIONS(4086), + [aux_sym_on_goto_statement_token1] = ACTIONS(4088), + [aux_sym_on_goto_statement_token2] = ACTIONS(4088), + [aux_sym_on_error_statement_token2] = ACTIONS(4088), + [sym__ambiguous_redim_statement] = ACTIONS(4086), + [aux_sym_erase_statement_token1] = ACTIONS(4088), + [aux_sym_open_statement_token1] = ACTIONS(4088), + [aux_sym_file_mode_token2] = ACTIONS(4088), + [aux_sym_file_access_token2] = ACTIONS(4088), + [aux_sym_file_lock_token2] = ACTIONS(4088), + [aux_sym_print_statement_token1] = ACTIONS(4088), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_QMARK] = ACTIONS(4086), + [aux_sym_close_statement_token1] = ACTIONS(4088), + [aux_sym_put_statement_token1] = ACTIONS(4088), + [aux_sym_unlock_statement_token1] = ACTIONS(4088), + [aux_sym_seek_statement_token1] = ACTIONS(4088), + [sym_reset_statement] = ACTIONS(4088), + [aux_sym_raise_event_statement_token1] = ACTIONS(4088), + [sym_stop_statement] = ACTIONS(4088), + [sym_beep_statement] = ACTIONS(4088), + [aux_sym_unload_statement_token1] = ACTIONS(4088), + [aux_sym_def_type_statement_token1] = ACTIONS(4088), + [aux_sym_def_type_statement_token2] = ACTIONS(4088), + [aux_sym_def_type_statement_token3] = ACTIONS(4088), + [aux_sym_def_type_statement_token4] = ACTIONS(4088), + [aux_sym_def_type_statement_token5] = ACTIONS(4088), + [aux_sym_def_type_statement_token6] = ACTIONS(4088), + [aux_sym_def_type_statement_token7] = ACTIONS(4088), + [aux_sym_def_type_statement_token8] = ACTIONS(4088), + [aux_sym_def_type_statement_token9] = ACTIONS(4088), + [aux_sym_def_type_statement_token10] = ACTIONS(4088), + [aux_sym_def_type_statement_token11] = ACTIONS(4088), + [aux_sym_def_type_statement_token12] = ACTIONS(4088), + [aux_sym_def_type_statement_token13] = ACTIONS(4088), + [aux_sym_def_type_statement_token14] = ACTIONS(4088), + [aux_sym_call_statement_token1] = ACTIONS(4088), + [sym__ambiguous_call_statement] = ACTIONS(4088), + [aux_sym_addressof_expression_token1] = ACTIONS(4054), + [aux_sym_type_of_expression_token1] = ACTIONS(4056), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(4082), + [sym_number_literal] = ACTIONS(4082), + [aux_sym_boolean_literal_token1] = ACTIONS(4060), + [aux_sym_boolean_literal_token2] = ACTIONS(4060), + [sym_nothing_literal] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4084), + [sym_empty_literal] = ACTIONS(4084), + [sym_date_literal] = ACTIONS(4082), + [anon_sym_POUND] = ACTIONS(4064), + }, + [STATE(354)] = { + [sym_output_list] = STATE(3981), + [sym__print_output_expression] = STATE(2885), + [sym__unparenthesized_print_output_expression] = STATE(2885), + [sym__print_output_call_binary_expression] = STATE(2885), + [sym__print_output_call_operand] = STATE(10977), + [sym__print_output_member_comparison_expression] = STATE(3693), + [sym__print_output_call_member_expression] = STATE(377), + [sym__print_output_call_expression] = STATE(1052), + [sym__print_output_qualified_callable] = STATE(13504), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10978), + [sym_comparison_expression] = STATE(2899), + [sym__comparison_operand] = STATE(11297), + [sym_logical_value_expression] = STATE(2901), + [sym__callable_expression] = STATE(13604), + [sym_call_expression] = STATE(10295), + [sym_new_expression] = STATE(395), + [sym_addressof_expression] = STATE(395), + [sym_type_of_expression] = STATE(395), + [sym_member_expression] = STATE(397), + [sym_qualified_member_expression] = STATE(424), + [sym_implicit_member_expression] = STATE(424), + [sym_parenthesized_expression] = STATE(415), + [sym_binary_expression] = STATE(416), + [sym_unary_expression] = STATE(878), + [sym__signed_unary_expression] = STATE(456), + [sym__literal] = STATE(395), + [sym_boolean_literal] = STATE(395), + [sym_file_number_literal] = STATE(395), + [sym_identifier] = ACTIONS(4070), + [sym_newline] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4092), + [aux_sym_frm_property_statement_token1] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4036), + [anon_sym_BANG] = ACTIONS(4038), + [aux_sym__attribute_identifier_token1] = ACTIONS(4092), + [aux_sym_option_statement_token3] = ACTIONS(4092), + [aux_sym_type_declaration_token1] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4092), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4092), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4092), + [aux_sym_enum_declaration_token1] = ACTIONS(4092), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4092), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4092), + [aux_sym_declare_function_statement_token1] = ACTIONS(4092), + [aux_sym_preprocessor_const_token1] = ACTIONS(4092), + [aux_sym__property_get_header_token1] = ACTIONS(4092), + [aux_sym_event_declaration_token1] = ACTIONS(4092), + [sym_static_modifier] = ACTIONS(4092), + [sym__dim_keyword] = ACTIONS(4092), + [sym__redim_keyword] = ACTIONS(4092), + [aux_sym_get_accessor_token1] = ACTIONS(4092), + [aux_sym_set_accessor_token1] = ACTIONS(4092), + [aux_sym_const_declaration_token1] = ACTIONS(4092), + [anon_sym_LPAREN] = ACTIONS(4078), + [aux_sym_as_type_clause_token2] = ACTIONS(4046), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4080), + [aux_sym_visibility_token1] = ACTIONS(4092), + [aux_sym_visibility_token2] = ACTIONS(4092), + [aux_sym_elseif_fragment_token1] = ACTIONS(4092), + [aux_sym_else_fragment_token1] = ACTIONS(4092), + [aux_sym_select_statement_token1] = ACTIONS(4092), + [aux_sym__for_header_token1] = ACTIONS(4092), + [aux_sym_do_statement_token1] = ACTIONS(4092), + [aux_sym_do_condition_token1] = ACTIONS(4092), + [aux_sym_with_statement_token1] = ACTIONS(4092), + [aux_sym_exit_statement_token1] = ACTIONS(4092), + [sym_end_statement] = ACTIONS(4090), + [aux_sym_on_goto_statement_token1] = ACTIONS(4092), + [aux_sym_on_goto_statement_token2] = ACTIONS(4092), + [aux_sym_on_error_statement_token2] = ACTIONS(4092), + [sym__ambiguous_redim_statement] = ACTIONS(4090), + [aux_sym_erase_statement_token1] = ACTIONS(4092), + [aux_sym_open_statement_token1] = ACTIONS(4092), + [aux_sym_file_mode_token2] = ACTIONS(4092), + [aux_sym_file_access_token2] = ACTIONS(4092), + [aux_sym_file_lock_token2] = ACTIONS(4092), + [aux_sym_print_statement_token1] = ACTIONS(4092), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_QMARK] = ACTIONS(4090), + [aux_sym_close_statement_token1] = ACTIONS(4092), + [aux_sym_put_statement_token1] = ACTIONS(4092), + [aux_sym_unlock_statement_token1] = ACTIONS(4092), + [aux_sym_seek_statement_token1] = ACTIONS(4092), + [sym_reset_statement] = ACTIONS(4092), + [aux_sym_raise_event_statement_token1] = ACTIONS(4092), + [sym_stop_statement] = ACTIONS(4092), + [sym_beep_statement] = ACTIONS(4092), + [aux_sym_unload_statement_token1] = ACTIONS(4092), + [aux_sym_def_type_statement_token1] = ACTIONS(4092), + [aux_sym_def_type_statement_token2] = ACTIONS(4092), + [aux_sym_def_type_statement_token3] = ACTIONS(4092), + [aux_sym_def_type_statement_token4] = ACTIONS(4092), + [aux_sym_def_type_statement_token5] = ACTIONS(4092), + [aux_sym_def_type_statement_token6] = ACTIONS(4092), + [aux_sym_def_type_statement_token7] = ACTIONS(4092), + [aux_sym_def_type_statement_token8] = ACTIONS(4092), + [aux_sym_def_type_statement_token9] = ACTIONS(4092), + [aux_sym_def_type_statement_token10] = ACTIONS(4092), + [aux_sym_def_type_statement_token11] = ACTIONS(4092), + [aux_sym_def_type_statement_token12] = ACTIONS(4092), + [aux_sym_def_type_statement_token13] = ACTIONS(4092), + [aux_sym_def_type_statement_token14] = ACTIONS(4092), + [aux_sym_call_statement_token1] = ACTIONS(4092), + [sym__ambiguous_call_statement] = ACTIONS(4092), + [aux_sym_addressof_expression_token1] = ACTIONS(4054), + [aux_sym_type_of_expression_token1] = ACTIONS(4056), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(4082), + [sym_number_literal] = ACTIONS(4082), + [aux_sym_boolean_literal_token1] = ACTIONS(4060), + [aux_sym_boolean_literal_token2] = ACTIONS(4060), + [sym_nothing_literal] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4084), + [sym_empty_literal] = ACTIONS(4084), + [sym_date_literal] = ACTIONS(4082), + [anon_sym_POUND] = ACTIONS(4064), + }, + [STATE(355)] = { + [sym__print_method_output_list] = STATE(3929), + [sym__unparenthesized_print_output_expression] = STATE(2686), + [sym__print_output_call_binary_expression] = STATE(2686), + [sym__print_output_call_operand] = STATE(10977), + [sym__print_output_member_comparison_expression] = STATE(3693), + [sym__print_output_call_member_expression] = STATE(377), + [sym__print_output_call_expression] = STATE(1052), + [sym__print_output_qualified_callable] = STATE(13504), + [sym_argument_list] = STATE(3930), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10978), + [sym_comparison_expression] = STATE(2899), + [sym__comparison_operand] = STATE(11297), + [sym_logical_value_expression] = STATE(2901), + [sym__callable_expression] = STATE(13604), + [sym_call_expression] = STATE(10295), + [sym_new_expression] = STATE(395), + [sym_addressof_expression] = STATE(395), + [sym_type_of_expression] = STATE(395), + [sym_member_expression] = STATE(397), + [sym_qualified_member_expression] = STATE(424), + [sym_implicit_member_expression] = STATE(424), + [sym_parenthesized_expression] = STATE(10077), + [sym_binary_expression] = STATE(416), + [sym_unary_expression] = STATE(878), + [sym__signed_unary_expression] = STATE(456), + [sym__literal] = STATE(395), + [sym_boolean_literal] = STATE(395), + [sym_file_number_literal] = STATE(395), + [sym_identifier] = ACTIONS(4070), + [sym_newline] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(4094), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4096), + [aux_sym_frm_property_statement_token1] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4036), + [anon_sym_BANG] = ACTIONS(4038), + [aux_sym__attribute_identifier_token1] = ACTIONS(4096), + [aux_sym_option_statement_token3] = ACTIONS(4096), + [aux_sym_type_declaration_token1] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4096), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4096), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4096), + [aux_sym_enum_declaration_token1] = ACTIONS(4096), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4096), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4096), + [aux_sym_declare_function_statement_token1] = ACTIONS(4096), + [aux_sym_preprocessor_const_token1] = ACTIONS(4096), + [aux_sym__property_get_header_token1] = ACTIONS(4096), + [aux_sym_event_declaration_token1] = ACTIONS(4096), + [sym_static_modifier] = ACTIONS(4096), + [sym__dim_keyword] = ACTIONS(4096), + [sym__redim_keyword] = ACTIONS(4096), + [aux_sym_get_accessor_token1] = ACTIONS(4096), + [aux_sym_set_accessor_token1] = ACTIONS(4096), + [aux_sym_const_declaration_token1] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4098), + [aux_sym_as_type_clause_token2] = ACTIONS(4046), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4080), + [aux_sym_visibility_token1] = ACTIONS(4096), + [aux_sym_visibility_token2] = ACTIONS(4096), + [aux_sym_elseif_fragment_token1] = ACTIONS(4096), + [aux_sym_else_fragment_token1] = ACTIONS(4096), + [aux_sym_select_statement_token1] = ACTIONS(4096), + [aux_sym__for_header_token1] = ACTIONS(4096), + [aux_sym_do_statement_token1] = ACTIONS(4096), + [aux_sym_do_condition_token1] = ACTIONS(4096), + [aux_sym_with_statement_token1] = ACTIONS(4096), + [aux_sym_exit_statement_token1] = ACTIONS(4096), + [sym_end_statement] = ACTIONS(4094), + [aux_sym_on_goto_statement_token1] = ACTIONS(4096), + [aux_sym_on_goto_statement_token2] = ACTIONS(4096), + [aux_sym_on_error_statement_token2] = ACTIONS(4096), + [sym__ambiguous_redim_statement] = ACTIONS(4094), + [aux_sym_erase_statement_token1] = ACTIONS(4096), + [aux_sym_open_statement_token1] = ACTIONS(4096), + [aux_sym_file_mode_token2] = ACTIONS(4096), + [aux_sym_file_access_token2] = ACTIONS(4096), + [aux_sym_file_lock_token2] = ACTIONS(4096), + [aux_sym_print_statement_token1] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_QMARK] = ACTIONS(4094), + [aux_sym_close_statement_token1] = ACTIONS(4096), + [aux_sym_put_statement_token1] = ACTIONS(4096), + [aux_sym_unlock_statement_token1] = ACTIONS(4096), + [aux_sym_seek_statement_token1] = ACTIONS(4096), + [sym_reset_statement] = ACTIONS(4096), + [aux_sym_raise_event_statement_token1] = ACTIONS(4096), + [sym_stop_statement] = ACTIONS(4096), + [sym_beep_statement] = ACTIONS(4096), + [aux_sym_unload_statement_token1] = ACTIONS(4096), + [aux_sym_def_type_statement_token1] = ACTIONS(4096), + [aux_sym_def_type_statement_token2] = ACTIONS(4096), + [aux_sym_def_type_statement_token3] = ACTIONS(4096), + [aux_sym_def_type_statement_token4] = ACTIONS(4096), + [aux_sym_def_type_statement_token5] = ACTIONS(4096), + [aux_sym_def_type_statement_token6] = ACTIONS(4096), + [aux_sym_def_type_statement_token7] = ACTIONS(4096), + [aux_sym_def_type_statement_token8] = ACTIONS(4096), + [aux_sym_def_type_statement_token9] = ACTIONS(4096), + [aux_sym_def_type_statement_token10] = ACTIONS(4096), + [aux_sym_def_type_statement_token11] = ACTIONS(4096), + [aux_sym_def_type_statement_token12] = ACTIONS(4096), + [aux_sym_def_type_statement_token13] = ACTIONS(4096), + [aux_sym_def_type_statement_token14] = ACTIONS(4096), + [aux_sym_call_statement_token1] = ACTIONS(4096), + [sym__ambiguous_call_statement] = ACTIONS(4096), + [aux_sym_addressof_expression_token1] = ACTIONS(4054), + [aux_sym_type_of_expression_token1] = ACTIONS(4056), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(4082), + [sym_number_literal] = ACTIONS(4082), + [aux_sym_boolean_literal_token1] = ACTIONS(4060), + [aux_sym_boolean_literal_token2] = ACTIONS(4060), + [sym_nothing_literal] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4084), + [sym_empty_literal] = ACTIONS(4084), + [sym_date_literal] = ACTIONS(4082), + [anon_sym_POUND] = ACTIONS(4064), + }, + [STATE(356)] = { + [sym__print_output_expression] = STATE(3455), + [sym__unparenthesized_print_output_expression] = STATE(3455), + [sym__print_output_call_binary_expression] = STATE(3455), + [sym__print_output_call_operand] = STATE(10977), + [sym__print_output_member_comparison_expression] = STATE(3693), + [sym__print_output_call_member_expression] = STATE(377), + [sym__print_output_call_expression] = STATE(1052), + [sym__print_output_qualified_callable] = STATE(13504), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10978), + [sym_comparison_expression] = STATE(2899), + [sym__comparison_operand] = STATE(11297), + [sym_logical_value_expression] = STATE(2901), + [sym__callable_expression] = STATE(13604), + [sym_call_expression] = STATE(10295), + [sym_new_expression] = STATE(395), + [sym_addressof_expression] = STATE(395), + [sym_type_of_expression] = STATE(395), + [sym_member_expression] = STATE(397), + [sym_qualified_member_expression] = STATE(424), + [sym_implicit_member_expression] = STATE(424), + [sym_parenthesized_expression] = STATE(415), + [sym_binary_expression] = STATE(416), + [sym_unary_expression] = STATE(878), + [sym__signed_unary_expression] = STATE(456), + [sym__literal] = STATE(395), + [sym_boolean_literal] = STATE(395), + [sym_file_number_literal] = STATE(395), + [sym_identifier] = ACTIONS(4070), + [sym_newline] = ACTIONS(4100), + [anon_sym_COLON] = ACTIONS(4100), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4102), + [aux_sym_frm_property_statement_token1] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4036), + [anon_sym_BANG] = ACTIONS(4038), + [aux_sym__attribute_identifier_token1] = ACTIONS(4102), + [aux_sym_option_statement_token3] = ACTIONS(4102), + [aux_sym_type_declaration_token1] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4102), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4102), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4102), + [aux_sym_enum_declaration_token1] = ACTIONS(4102), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4102), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4102), + [aux_sym_declare_function_statement_token1] = ACTIONS(4102), + [aux_sym_preprocessor_const_token1] = ACTIONS(4102), + [aux_sym__property_get_header_token1] = ACTIONS(4102), + [aux_sym_event_declaration_token1] = ACTIONS(4102), + [sym_static_modifier] = ACTIONS(4102), + [sym__dim_keyword] = ACTIONS(4102), + [sym__redim_keyword] = ACTIONS(4102), + [aux_sym_get_accessor_token1] = ACTIONS(4102), + [aux_sym_set_accessor_token1] = ACTIONS(4102), + [aux_sym_const_declaration_token1] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(4078), + [aux_sym_as_type_clause_token2] = ACTIONS(4046), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4080), + [aux_sym_visibility_token1] = ACTIONS(4102), + [aux_sym_visibility_token2] = ACTIONS(4102), + [aux_sym_elseif_fragment_token1] = ACTIONS(4102), + [aux_sym_else_fragment_token1] = ACTIONS(4102), + [aux_sym_select_statement_token1] = ACTIONS(4102), + [aux_sym__for_header_token1] = ACTIONS(4102), + [aux_sym_do_statement_token1] = ACTIONS(4102), + [aux_sym_do_condition_token1] = ACTIONS(4102), + [aux_sym_with_statement_token1] = ACTIONS(4102), + [aux_sym_exit_statement_token1] = ACTIONS(4102), + [sym_end_statement] = ACTIONS(4100), + [aux_sym_on_goto_statement_token1] = ACTIONS(4102), + [aux_sym_on_goto_statement_token2] = ACTIONS(4102), + [aux_sym_on_error_statement_token2] = ACTIONS(4102), + [sym__ambiguous_redim_statement] = ACTIONS(4100), + [aux_sym_erase_statement_token1] = ACTIONS(4102), + [aux_sym_open_statement_token1] = ACTIONS(4102), + [aux_sym_file_mode_token2] = ACTIONS(4102), + [aux_sym_file_access_token2] = ACTIONS(4102), + [aux_sym_file_lock_token2] = ACTIONS(4102), + [aux_sym_print_statement_token1] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_QMARK] = ACTIONS(4100), + [aux_sym_close_statement_token1] = ACTIONS(4102), + [aux_sym_put_statement_token1] = ACTIONS(4102), + [aux_sym_unlock_statement_token1] = ACTIONS(4102), + [aux_sym_seek_statement_token1] = ACTIONS(4102), + [sym_reset_statement] = ACTIONS(4102), + [aux_sym_raise_event_statement_token1] = ACTIONS(4102), + [sym_stop_statement] = ACTIONS(4102), + [sym_beep_statement] = ACTIONS(4102), + [aux_sym_unload_statement_token1] = ACTIONS(4102), + [aux_sym_def_type_statement_token1] = ACTIONS(4102), + [aux_sym_def_type_statement_token2] = ACTIONS(4102), + [aux_sym_def_type_statement_token3] = ACTIONS(4102), + [aux_sym_def_type_statement_token4] = ACTIONS(4102), + [aux_sym_def_type_statement_token5] = ACTIONS(4102), + [aux_sym_def_type_statement_token6] = ACTIONS(4102), + [aux_sym_def_type_statement_token7] = ACTIONS(4102), + [aux_sym_def_type_statement_token8] = ACTIONS(4102), + [aux_sym_def_type_statement_token9] = ACTIONS(4102), + [aux_sym_def_type_statement_token10] = ACTIONS(4102), + [aux_sym_def_type_statement_token11] = ACTIONS(4102), + [aux_sym_def_type_statement_token12] = ACTIONS(4102), + [aux_sym_def_type_statement_token13] = ACTIONS(4102), + [aux_sym_def_type_statement_token14] = ACTIONS(4102), + [aux_sym_call_statement_token1] = ACTIONS(4102), + [sym__ambiguous_call_statement] = ACTIONS(4102), + [aux_sym_addressof_expression_token1] = ACTIONS(4054), + [aux_sym_type_of_expression_token1] = ACTIONS(4056), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(4082), + [sym_number_literal] = ACTIONS(4082), + [aux_sym_boolean_literal_token1] = ACTIONS(4060), + [aux_sym_boolean_literal_token2] = ACTIONS(4060), + [sym_nothing_literal] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4084), + [sym_empty_literal] = ACTIONS(4084), + [sym_date_literal] = ACTIONS(4082), + [anon_sym_POUND] = ACTIONS(4064), + }, + [STATE(357)] = { + [sym__print_output_expression] = STATE(3455), + [sym__unparenthesized_print_output_expression] = STATE(3455), + [sym__print_output_call_binary_expression] = STATE(3455), + [sym__print_output_call_operand] = STATE(10977), + [sym__print_output_member_comparison_expression] = STATE(3693), + [sym__print_output_call_member_expression] = STATE(377), + [sym__print_output_call_expression] = STATE(1052), + [sym__print_output_qualified_callable] = STATE(13504), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10978), + [sym_comparison_expression] = STATE(2899), + [sym__comparison_operand] = STATE(11297), + [sym_logical_value_expression] = STATE(2901), + [sym__callable_expression] = STATE(13604), + [sym_call_expression] = STATE(10295), + [sym_new_expression] = STATE(395), + [sym_addressof_expression] = STATE(395), + [sym_type_of_expression] = STATE(395), + [sym_member_expression] = STATE(397), + [sym_qualified_member_expression] = STATE(424), + [sym_implicit_member_expression] = STATE(424), + [sym_parenthesized_expression] = STATE(415), + [sym_binary_expression] = STATE(416), + [sym_unary_expression] = STATE(878), + [sym__signed_unary_expression] = STATE(456), + [sym__literal] = STATE(395), + [sym_boolean_literal] = STATE(395), + [sym_file_number_literal] = STATE(395), + [sym_identifier] = ACTIONS(4070), + [sym_newline] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(4104), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4106), + [aux_sym_frm_property_statement_token1] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4036), + [anon_sym_BANG] = ACTIONS(4038), + [aux_sym__attribute_identifier_token1] = ACTIONS(4106), + [aux_sym_option_statement_token3] = ACTIONS(4106), + [aux_sym_type_declaration_token1] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4106), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4106), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4106), + [aux_sym_enum_declaration_token1] = ACTIONS(4106), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4106), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4106), + [aux_sym_declare_function_statement_token1] = ACTIONS(4106), + [aux_sym_preprocessor_const_token1] = ACTIONS(4106), + [aux_sym__property_get_header_token1] = ACTIONS(4106), + [aux_sym_event_declaration_token1] = ACTIONS(4106), + [sym_static_modifier] = ACTIONS(4106), + [sym__dim_keyword] = ACTIONS(4106), + [sym__redim_keyword] = ACTIONS(4106), + [aux_sym_get_accessor_token1] = ACTIONS(4106), + [aux_sym_set_accessor_token1] = ACTIONS(4106), + [aux_sym_const_declaration_token1] = ACTIONS(4106), + [anon_sym_LPAREN] = ACTIONS(4078), + [aux_sym_as_type_clause_token2] = ACTIONS(4046), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4080), + [aux_sym_visibility_token1] = ACTIONS(4106), + [aux_sym_visibility_token2] = ACTIONS(4106), + [aux_sym_elseif_fragment_token1] = ACTIONS(4106), + [aux_sym_else_fragment_token1] = ACTIONS(4106), + [aux_sym_select_statement_token1] = ACTIONS(4106), + [aux_sym__for_header_token1] = ACTIONS(4106), + [aux_sym_do_statement_token1] = ACTIONS(4106), + [aux_sym_do_condition_token1] = ACTIONS(4106), + [aux_sym_with_statement_token1] = ACTIONS(4106), + [aux_sym_exit_statement_token1] = ACTIONS(4106), + [sym_end_statement] = ACTIONS(4104), + [aux_sym_on_goto_statement_token1] = ACTIONS(4106), + [aux_sym_on_goto_statement_token2] = ACTIONS(4106), + [aux_sym_on_error_statement_token2] = ACTIONS(4106), + [sym__ambiguous_redim_statement] = ACTIONS(4104), + [aux_sym_erase_statement_token1] = ACTIONS(4106), + [aux_sym_open_statement_token1] = ACTIONS(4106), + [aux_sym_file_mode_token2] = ACTIONS(4106), + [aux_sym_file_access_token2] = ACTIONS(4106), + [aux_sym_file_lock_token2] = ACTIONS(4106), + [aux_sym_print_statement_token1] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_QMARK] = ACTIONS(4104), + [aux_sym_close_statement_token1] = ACTIONS(4106), + [aux_sym_put_statement_token1] = ACTIONS(4106), + [aux_sym_unlock_statement_token1] = ACTIONS(4106), + [aux_sym_seek_statement_token1] = ACTIONS(4106), + [sym_reset_statement] = ACTIONS(4106), + [aux_sym_raise_event_statement_token1] = ACTIONS(4106), + [sym_stop_statement] = ACTIONS(4106), + [sym_beep_statement] = ACTIONS(4106), + [aux_sym_unload_statement_token1] = ACTIONS(4106), + [aux_sym_def_type_statement_token1] = ACTIONS(4106), + [aux_sym_def_type_statement_token2] = ACTIONS(4106), + [aux_sym_def_type_statement_token3] = ACTIONS(4106), + [aux_sym_def_type_statement_token4] = ACTIONS(4106), + [aux_sym_def_type_statement_token5] = ACTIONS(4106), + [aux_sym_def_type_statement_token6] = ACTIONS(4106), + [aux_sym_def_type_statement_token7] = ACTIONS(4106), + [aux_sym_def_type_statement_token8] = ACTIONS(4106), + [aux_sym_def_type_statement_token9] = ACTIONS(4106), + [aux_sym_def_type_statement_token10] = ACTIONS(4106), + [aux_sym_def_type_statement_token11] = ACTIONS(4106), + [aux_sym_def_type_statement_token12] = ACTIONS(4106), + [aux_sym_def_type_statement_token13] = ACTIONS(4106), + [aux_sym_def_type_statement_token14] = ACTIONS(4106), + [aux_sym_call_statement_token1] = ACTIONS(4106), + [sym__ambiguous_call_statement] = ACTIONS(4106), + [aux_sym_addressof_expression_token1] = ACTIONS(4054), + [aux_sym_type_of_expression_token1] = ACTIONS(4056), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(4082), + [sym_number_literal] = ACTIONS(4082), + [aux_sym_boolean_literal_token1] = ACTIONS(4060), + [aux_sym_boolean_literal_token2] = ACTIONS(4060), + [sym_nothing_literal] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4084), + [sym_empty_literal] = ACTIONS(4084), + [sym_date_literal] = ACTIONS(4082), + [anon_sym_POUND] = ACTIONS(4064), + }, + [STATE(358)] = { + [sym__print_output_expression] = STATE(3455), + [sym__unparenthesized_print_output_expression] = STATE(3455), + [sym__print_output_call_binary_expression] = STATE(3455), + [sym__print_output_call_operand] = STATE(10977), + [sym__print_output_member_comparison_expression] = STATE(3693), + [sym__print_output_call_member_expression] = STATE(377), + [sym__print_output_call_expression] = STATE(1052), + [sym__print_output_qualified_callable] = STATE(13504), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10978), + [sym_comparison_expression] = STATE(2899), + [sym__comparison_operand] = STATE(11297), + [sym_logical_value_expression] = STATE(2901), + [sym__callable_expression] = STATE(13604), + [sym_call_expression] = STATE(10295), + [sym_new_expression] = STATE(395), + [sym_addressof_expression] = STATE(395), + [sym_type_of_expression] = STATE(395), + [sym_member_expression] = STATE(397), + [sym_qualified_member_expression] = STATE(424), + [sym_implicit_member_expression] = STATE(424), + [sym_parenthesized_expression] = STATE(415), + [sym_binary_expression] = STATE(416), + [sym_unary_expression] = STATE(878), + [sym__signed_unary_expression] = STATE(456), + [sym__literal] = STATE(395), + [sym_boolean_literal] = STATE(395), + [sym_file_number_literal] = STATE(395), + [sym_identifier] = ACTIONS(4070), + [sym_newline] = ACTIONS(4108), + [anon_sym_COLON] = ACTIONS(4108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4110), + [aux_sym_frm_property_statement_token1] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4036), + [anon_sym_BANG] = ACTIONS(4038), + [aux_sym__attribute_identifier_token1] = ACTIONS(4110), + [aux_sym_option_statement_token3] = ACTIONS(4110), + [aux_sym_type_declaration_token1] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4110), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4110), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4110), + [aux_sym_enum_declaration_token1] = ACTIONS(4110), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4110), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4110), + [aux_sym_declare_function_statement_token1] = ACTIONS(4110), + [aux_sym_preprocessor_const_token1] = ACTIONS(4110), + [aux_sym__property_get_header_token1] = ACTIONS(4110), + [aux_sym_event_declaration_token1] = ACTIONS(4110), + [sym_static_modifier] = ACTIONS(4110), + [sym__dim_keyword] = ACTIONS(4110), + [sym__redim_keyword] = ACTIONS(4110), + [aux_sym_get_accessor_token1] = ACTIONS(4110), + [aux_sym_set_accessor_token1] = ACTIONS(4110), + [aux_sym_const_declaration_token1] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4078), + [aux_sym_as_type_clause_token2] = ACTIONS(4046), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4080), + [aux_sym_visibility_token1] = ACTIONS(4110), + [aux_sym_visibility_token2] = ACTIONS(4110), + [aux_sym_elseif_fragment_token1] = ACTIONS(4110), + [aux_sym_else_fragment_token1] = ACTIONS(4110), + [aux_sym_select_statement_token1] = ACTIONS(4110), + [aux_sym__for_header_token1] = ACTIONS(4110), + [aux_sym_do_statement_token1] = ACTIONS(4110), + [aux_sym_do_condition_token1] = ACTIONS(4110), + [aux_sym_with_statement_token1] = ACTIONS(4110), + [aux_sym_exit_statement_token1] = ACTIONS(4110), + [sym_end_statement] = ACTIONS(4108), + [aux_sym_on_goto_statement_token1] = ACTIONS(4110), + [aux_sym_on_goto_statement_token2] = ACTIONS(4110), + [aux_sym_on_error_statement_token2] = ACTIONS(4110), + [sym__ambiguous_redim_statement] = ACTIONS(4108), + [aux_sym_erase_statement_token1] = ACTIONS(4110), + [aux_sym_open_statement_token1] = ACTIONS(4110), + [aux_sym_file_mode_token2] = ACTIONS(4110), + [aux_sym_file_access_token2] = ACTIONS(4110), + [aux_sym_file_lock_token2] = ACTIONS(4110), + [aux_sym_print_statement_token1] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_QMARK] = ACTIONS(4108), + [aux_sym_close_statement_token1] = ACTIONS(4110), + [aux_sym_put_statement_token1] = ACTIONS(4110), + [aux_sym_unlock_statement_token1] = ACTIONS(4110), + [aux_sym_seek_statement_token1] = ACTIONS(4110), + [sym_reset_statement] = ACTIONS(4110), + [aux_sym_raise_event_statement_token1] = ACTIONS(4110), + [sym_stop_statement] = ACTIONS(4110), + [sym_beep_statement] = ACTIONS(4110), + [aux_sym_unload_statement_token1] = ACTIONS(4110), + [aux_sym_def_type_statement_token1] = ACTIONS(4110), + [aux_sym_def_type_statement_token2] = ACTIONS(4110), + [aux_sym_def_type_statement_token3] = ACTIONS(4110), + [aux_sym_def_type_statement_token4] = ACTIONS(4110), + [aux_sym_def_type_statement_token5] = ACTIONS(4110), + [aux_sym_def_type_statement_token6] = ACTIONS(4110), + [aux_sym_def_type_statement_token7] = ACTIONS(4110), + [aux_sym_def_type_statement_token8] = ACTIONS(4110), + [aux_sym_def_type_statement_token9] = ACTIONS(4110), + [aux_sym_def_type_statement_token10] = ACTIONS(4110), + [aux_sym_def_type_statement_token11] = ACTIONS(4110), + [aux_sym_def_type_statement_token12] = ACTIONS(4110), + [aux_sym_def_type_statement_token13] = ACTIONS(4110), + [aux_sym_def_type_statement_token14] = ACTIONS(4110), + [aux_sym_call_statement_token1] = ACTIONS(4110), + [sym__ambiguous_call_statement] = ACTIONS(4110), + [aux_sym_addressof_expression_token1] = ACTIONS(4054), + [aux_sym_type_of_expression_token1] = ACTIONS(4056), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(4082), + [sym_number_literal] = ACTIONS(4082), + [aux_sym_boolean_literal_token1] = ACTIONS(4060), + [aux_sym_boolean_literal_token2] = ACTIONS(4060), + [sym_nothing_literal] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4084), + [sym_empty_literal] = ACTIONS(4084), + [sym_date_literal] = ACTIONS(4082), + [anon_sym_POUND] = ACTIONS(4064), + }, + [STATE(359)] = { + [sym__print_output_expression] = STATE(3455), + [sym__unparenthesized_print_output_expression] = STATE(3455), + [sym__print_output_call_binary_expression] = STATE(3455), + [sym__print_output_call_operand] = STATE(10977), + [sym__print_output_member_comparison_expression] = STATE(3693), + [sym__print_output_call_member_expression] = STATE(377), + [sym__print_output_call_expression] = STATE(1052), + [sym__print_output_qualified_callable] = STATE(13504), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10978), + [sym_comparison_expression] = STATE(2899), + [sym__comparison_operand] = STATE(11297), + [sym_logical_value_expression] = STATE(2901), + [sym__callable_expression] = STATE(13604), + [sym_call_expression] = STATE(10295), + [sym_new_expression] = STATE(395), + [sym_addressof_expression] = STATE(395), + [sym_type_of_expression] = STATE(395), + [sym_member_expression] = STATE(397), + [sym_qualified_member_expression] = STATE(424), + [sym_implicit_member_expression] = STATE(424), + [sym_parenthesized_expression] = STATE(415), + [sym_binary_expression] = STATE(416), + [sym_unary_expression] = STATE(878), + [sym__signed_unary_expression] = STATE(456), + [sym__literal] = STATE(395), + [sym_boolean_literal] = STATE(395), + [sym_file_number_literal] = STATE(395), + [sym_identifier] = ACTIONS(4070), + [sym_newline] = ACTIONS(4112), + [anon_sym_COLON] = ACTIONS(4112), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4114), + [aux_sym_frm_property_statement_token1] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4036), + [anon_sym_BANG] = ACTIONS(4038), + [aux_sym__attribute_identifier_token1] = ACTIONS(4114), + [aux_sym_option_statement_token3] = ACTIONS(4114), + [aux_sym_type_declaration_token1] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4114), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4114), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4114), + [aux_sym_enum_declaration_token1] = ACTIONS(4114), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4114), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4114), + [aux_sym_declare_function_statement_token1] = ACTIONS(4114), + [aux_sym_preprocessor_const_token1] = ACTIONS(4114), + [aux_sym__property_get_header_token1] = ACTIONS(4114), + [aux_sym_event_declaration_token1] = ACTIONS(4114), + [sym_static_modifier] = ACTIONS(4114), + [sym__dim_keyword] = ACTIONS(4114), + [sym__redim_keyword] = ACTIONS(4114), + [aux_sym_get_accessor_token1] = ACTIONS(4114), + [aux_sym_set_accessor_token1] = ACTIONS(4114), + [aux_sym_const_declaration_token1] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4078), + [aux_sym_as_type_clause_token2] = ACTIONS(4046), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4080), + [aux_sym_visibility_token1] = ACTIONS(4114), + [aux_sym_visibility_token2] = ACTIONS(4114), + [aux_sym_elseif_fragment_token1] = ACTIONS(4114), + [aux_sym_else_fragment_token1] = ACTIONS(4114), + [aux_sym_select_statement_token1] = ACTIONS(4114), + [aux_sym__for_header_token1] = ACTIONS(4114), + [aux_sym_do_statement_token1] = ACTIONS(4114), + [aux_sym_do_condition_token1] = ACTIONS(4114), + [aux_sym_with_statement_token1] = ACTIONS(4114), + [aux_sym_exit_statement_token1] = ACTIONS(4114), + [sym_end_statement] = ACTIONS(4112), + [aux_sym_on_goto_statement_token1] = ACTIONS(4114), + [aux_sym_on_goto_statement_token2] = ACTIONS(4114), + [aux_sym_on_error_statement_token2] = ACTIONS(4114), + [sym__ambiguous_redim_statement] = ACTIONS(4112), + [aux_sym_erase_statement_token1] = ACTIONS(4114), + [aux_sym_open_statement_token1] = ACTIONS(4114), + [aux_sym_file_mode_token2] = ACTIONS(4114), + [aux_sym_file_access_token2] = ACTIONS(4114), + [aux_sym_file_lock_token2] = ACTIONS(4114), + [aux_sym_print_statement_token1] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_QMARK] = ACTIONS(4112), + [aux_sym_close_statement_token1] = ACTIONS(4114), + [aux_sym_put_statement_token1] = ACTIONS(4114), + [aux_sym_unlock_statement_token1] = ACTIONS(4114), + [aux_sym_seek_statement_token1] = ACTIONS(4114), + [sym_reset_statement] = ACTIONS(4114), + [aux_sym_raise_event_statement_token1] = ACTIONS(4114), + [sym_stop_statement] = ACTIONS(4114), + [sym_beep_statement] = ACTIONS(4114), + [aux_sym_unload_statement_token1] = ACTIONS(4114), + [aux_sym_def_type_statement_token1] = ACTIONS(4114), + [aux_sym_def_type_statement_token2] = ACTIONS(4114), + [aux_sym_def_type_statement_token3] = ACTIONS(4114), + [aux_sym_def_type_statement_token4] = ACTIONS(4114), + [aux_sym_def_type_statement_token5] = ACTIONS(4114), + [aux_sym_def_type_statement_token6] = ACTIONS(4114), + [aux_sym_def_type_statement_token7] = ACTIONS(4114), + [aux_sym_def_type_statement_token8] = ACTIONS(4114), + [aux_sym_def_type_statement_token9] = ACTIONS(4114), + [aux_sym_def_type_statement_token10] = ACTIONS(4114), + [aux_sym_def_type_statement_token11] = ACTIONS(4114), + [aux_sym_def_type_statement_token12] = ACTIONS(4114), + [aux_sym_def_type_statement_token13] = ACTIONS(4114), + [aux_sym_def_type_statement_token14] = ACTIONS(4114), + [aux_sym_call_statement_token1] = ACTIONS(4114), + [sym__ambiguous_call_statement] = ACTIONS(4114), + [aux_sym_addressof_expression_token1] = ACTIONS(4054), + [aux_sym_type_of_expression_token1] = ACTIONS(4056), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(4082), + [sym_number_literal] = ACTIONS(4082), + [aux_sym_boolean_literal_token1] = ACTIONS(4060), + [aux_sym_boolean_literal_token2] = ACTIONS(4060), + [sym_nothing_literal] = ACTIONS(4084), + [sym_null_literal] = ACTIONS(4084), + [sym_empty_literal] = ACTIONS(4084), + [sym_date_literal] = ACTIONS(4082), + [anon_sym_POUND] = ACTIONS(4064), + }, + [STATE(360)] = { + [sym_argument_list] = STATE(2075), + [sym_unparenthesized_argument_list] = STATE(4328), + [sym__unparenthesized_argument_sequence] = STATE(4329), + [sym__omitted_argument_sequence] = STATE(4329), + [sym__argument] = STATE(3469), + [sym_named_argument] = STATE(3469), + [sym_byval_argument] = STATE(3469), + [sym__primary_expression] = STATE(580), + [sym__expression] = STATE(1951), + [sym_comparison_expression] = STATE(3689), + [sym__comparison_operand] = STATE(11254), + [sym_logical_value_expression] = STATE(3689), + [sym__callable_expression] = STATE(13651), + [sym_call_expression] = STATE(541), + [sym_new_expression] = STATE(580), + [sym_addressof_expression] = STATE(580), + [sym_type_of_expression] = STATE(580), + [sym_member_expression] = STATE(592), + [sym_qualified_member_expression] = STATE(632), + [sym_implicit_member_expression] = STATE(632), + [sym_parenthesized_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(1951), + [sym__signed_unary_expression] = STATE(581), + [sym__literal] = STATE(580), + [sym_boolean_literal] = STATE(580), + [sym_file_number_literal] = STATE(580), + [sym_identifier] = ACTIONS(4116), + [sym_newline] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4030), + [aux_sym_frm_property_statement_token1] = ACTIONS(4118), + [anon_sym_EQ] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(4122), + [aux_sym__attribute_identifier_token1] = ACTIONS(4030), + [aux_sym_option_statement_token3] = ACTIONS(4030), + [aux_sym_type_declaration_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4030), + [aux_sym_enum_declaration_token1] = ACTIONS(4030), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4030), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4030), + [aux_sym_declare_function_statement_token1] = ACTIONS(4030), + [aux_sym_preprocessor_const_token1] = ACTIONS(4030), + [aux_sym__property_get_header_token1] = ACTIONS(4030), + [aux_sym_event_declaration_token1] = ACTIONS(4030), + [sym_static_modifier] = ACTIONS(4030), + [sym__dim_keyword] = ACTIONS(4030), + [sym__redim_keyword] = ACTIONS(4030), + [aux_sym_byval_modifier_token1] = ACTIONS(4124), + [aux_sym_get_accessor_token1] = ACTIONS(4030), + [aux_sym_set_accessor_token1] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4126), + [aux_sym_const_declaration_token1] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4128), + [aux_sym_as_type_clause_token2] = ACTIONS(4130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4132), + [aux_sym_visibility_token1] = ACTIONS(4030), + [aux_sym_visibility_token2] = ACTIONS(4030), + [aux_sym_elseif_fragment_token1] = ACTIONS(4030), + [aux_sym_else_fragment_token1] = ACTIONS(4030), + [aux_sym_select_statement_token1] = ACTIONS(4030), + [aux_sym__for_header_token1] = ACTIONS(4030), + [aux_sym_do_statement_token1] = ACTIONS(4030), + [aux_sym_do_condition_token1] = ACTIONS(4030), + [aux_sym_with_statement_token1] = ACTIONS(4030), + [aux_sym_exit_statement_token1] = ACTIONS(4030), + [sym_end_statement] = ACTIONS(4028), + [aux_sym_on_goto_statement_token1] = ACTIONS(4030), + [aux_sym_on_goto_statement_token2] = ACTIONS(4030), + [aux_sym_on_error_statement_token2] = ACTIONS(4030), + [sym__ambiguous_redim_statement] = ACTIONS(4028), + [aux_sym_erase_statement_token1] = ACTIONS(4030), + [aux_sym_open_statement_token1] = ACTIONS(4030), + [aux_sym_file_mode_token2] = ACTIONS(4030), + [aux_sym_file_access_token2] = ACTIONS(4030), + [aux_sym_file_lock_token2] = ACTIONS(4030), + [aux_sym_print_statement_token1] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4028), + [aux_sym_close_statement_token1] = ACTIONS(4030), + [aux_sym_put_statement_token1] = ACTIONS(4030), + [aux_sym_unlock_statement_token1] = ACTIONS(4030), + [aux_sym_seek_statement_token1] = ACTIONS(4030), + [sym_reset_statement] = ACTIONS(4030), + [aux_sym_raise_event_statement_token1] = ACTIONS(4030), + [sym_stop_statement] = ACTIONS(4030), + [sym_beep_statement] = ACTIONS(4030), + [aux_sym_unload_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token2] = ACTIONS(4030), + [aux_sym_def_type_statement_token3] = ACTIONS(4030), + [aux_sym_def_type_statement_token4] = ACTIONS(4030), + [aux_sym_def_type_statement_token5] = ACTIONS(4030), + [aux_sym_def_type_statement_token6] = ACTIONS(4030), + [aux_sym_def_type_statement_token7] = ACTIONS(4030), + [aux_sym_def_type_statement_token8] = ACTIONS(4030), + [aux_sym_def_type_statement_token9] = ACTIONS(4030), + [aux_sym_def_type_statement_token10] = ACTIONS(4030), + [aux_sym_def_type_statement_token11] = ACTIONS(4030), + [aux_sym_def_type_statement_token12] = ACTIONS(4030), + [aux_sym_def_type_statement_token13] = ACTIONS(4030), + [aux_sym_def_type_statement_token14] = ACTIONS(4030), + [aux_sym_call_statement_token1] = ACTIONS(4030), + [sym__ambiguous_call_statement] = ACTIONS(4030), + [aux_sym_addressof_expression_token1] = ACTIONS(4138), + [aux_sym_type_of_expression_token1] = ACTIONS(4140), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(4142), + [sym_number_literal] = ACTIONS(4142), + [aux_sym_boolean_literal_token1] = ACTIONS(4144), + [aux_sym_boolean_literal_token2] = ACTIONS(4144), + [sym_nothing_literal] = ACTIONS(4146), + [sym_null_literal] = ACTIONS(4146), + [sym_empty_literal] = ACTIONS(4146), + [sym_date_literal] = ACTIONS(4142), + [anon_sym_POUND] = ACTIONS(4148), + }, + [STATE(361)] = { + [sym_output_list] = STATE(4549), + [sym__print_output_expression] = STATE(3441), + [sym__unparenthesized_print_output_expression] = STATE(3441), + [sym__print_output_call_binary_expression] = STATE(3441), + [sym__print_output_call_operand] = STATE(10992), + [sym__print_output_member_comparison_expression] = STATE(4029), + [sym__print_output_call_member_expression] = STATE(459), + [sym__print_output_call_expression] = STATE(1676), + [sym__print_output_qualified_callable] = STATE(13339), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10993), + [sym_comparison_expression] = STATE(3445), + [sym__comparison_operand] = STATE(11254), + [sym_logical_value_expression] = STATE(3451), + [sym__callable_expression] = STATE(13340), + [sym_call_expression] = STATE(10301), + [sym_new_expression] = STATE(641), + [sym_addressof_expression] = STATE(641), + [sym_type_of_expression] = STATE(641), + [sym_member_expression] = STATE(642), + [sym_qualified_member_expression] = STATE(632), + [sym_implicit_member_expression] = STATE(632), + [sym_parenthesized_expression] = STATE(643), + [sym_binary_expression] = STATE(644), + [sym_unary_expression] = STATE(1682), + [sym__signed_unary_expression] = STATE(581), + [sym__literal] = STATE(641), + [sym_boolean_literal] = STATE(641), + [sym_file_number_literal] = STATE(641), + [sym_identifier] = ACTIONS(4150), + [sym_newline] = ACTIONS(4072), + [anon_sym_COLON] = ACTIONS(4072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4074), + [aux_sym_frm_property_statement_token1] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(4122), + [aux_sym__attribute_identifier_token1] = ACTIONS(4074), + [aux_sym_option_statement_token3] = ACTIONS(4074), + [aux_sym_type_declaration_token1] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4074), + [aux_sym_enum_declaration_token1] = ACTIONS(4074), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4074), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4074), + [aux_sym_declare_function_statement_token1] = ACTIONS(4074), + [aux_sym_preprocessor_const_token1] = ACTIONS(4074), + [aux_sym__property_get_header_token1] = ACTIONS(4074), + [aux_sym_event_declaration_token1] = ACTIONS(4074), + [sym_static_modifier] = ACTIONS(4074), + [sym__dim_keyword] = ACTIONS(4074), + [sym__redim_keyword] = ACTIONS(4074), + [aux_sym_get_accessor_token1] = ACTIONS(4074), + [aux_sym_set_accessor_token1] = ACTIONS(4074), + [aux_sym_const_declaration_token1] = ACTIONS(4074), + [anon_sym_LPAREN] = ACTIONS(4154), + [aux_sym_as_type_clause_token2] = ACTIONS(4130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4156), + [aux_sym_visibility_token1] = ACTIONS(4074), + [aux_sym_visibility_token2] = ACTIONS(4074), + [aux_sym_elseif_fragment_token1] = ACTIONS(4074), + [aux_sym_else_fragment_token1] = ACTIONS(4074), + [aux_sym_select_statement_token1] = ACTIONS(4074), + [aux_sym__for_header_token1] = ACTIONS(4074), + [aux_sym_do_statement_token1] = ACTIONS(4074), + [aux_sym_do_condition_token1] = ACTIONS(4074), + [aux_sym_with_statement_token1] = ACTIONS(4074), + [aux_sym_exit_statement_token1] = ACTIONS(4074), + [sym_end_statement] = ACTIONS(4072), + [aux_sym_on_goto_statement_token1] = ACTIONS(4074), + [aux_sym_on_goto_statement_token2] = ACTIONS(4074), + [aux_sym_on_error_statement_token2] = ACTIONS(4074), + [sym__ambiguous_redim_statement] = ACTIONS(4072), + [aux_sym_erase_statement_token1] = ACTIONS(4074), + [aux_sym_open_statement_token1] = ACTIONS(4074), + [aux_sym_file_mode_token2] = ACTIONS(4074), + [aux_sym_file_access_token2] = ACTIONS(4074), + [aux_sym_file_lock_token2] = ACTIONS(4074), + [aux_sym_print_statement_token1] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4072), + [aux_sym_close_statement_token1] = ACTIONS(4074), + [aux_sym_put_statement_token1] = ACTIONS(4074), + [aux_sym_unlock_statement_token1] = ACTIONS(4074), + [aux_sym_seek_statement_token1] = ACTIONS(4074), + [sym_reset_statement] = ACTIONS(4074), + [aux_sym_raise_event_statement_token1] = ACTIONS(4074), + [sym_stop_statement] = ACTIONS(4074), + [sym_beep_statement] = ACTIONS(4074), + [aux_sym_unload_statement_token1] = ACTIONS(4074), + [aux_sym_def_type_statement_token1] = ACTIONS(4074), + [aux_sym_def_type_statement_token2] = ACTIONS(4074), + [aux_sym_def_type_statement_token3] = ACTIONS(4074), + [aux_sym_def_type_statement_token4] = ACTIONS(4074), + [aux_sym_def_type_statement_token5] = ACTIONS(4074), + [aux_sym_def_type_statement_token6] = ACTIONS(4074), + [aux_sym_def_type_statement_token7] = ACTIONS(4074), + [aux_sym_def_type_statement_token8] = ACTIONS(4074), + [aux_sym_def_type_statement_token9] = ACTIONS(4074), + [aux_sym_def_type_statement_token10] = ACTIONS(4074), + [aux_sym_def_type_statement_token11] = ACTIONS(4074), + [aux_sym_def_type_statement_token12] = ACTIONS(4074), + [aux_sym_def_type_statement_token13] = ACTIONS(4074), + [aux_sym_def_type_statement_token14] = ACTIONS(4074), + [aux_sym_call_statement_token1] = ACTIONS(4074), + [sym__ambiguous_call_statement] = ACTIONS(4074), + [aux_sym_addressof_expression_token1] = ACTIONS(4138), + [aux_sym_type_of_expression_token1] = ACTIONS(4140), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(4158), + [sym_number_literal] = ACTIONS(4158), + [aux_sym_boolean_literal_token1] = ACTIONS(4144), + [aux_sym_boolean_literal_token2] = ACTIONS(4144), + [sym_nothing_literal] = ACTIONS(4160), + [sym_null_literal] = ACTIONS(4160), + [sym_empty_literal] = ACTIONS(4160), + [sym_date_literal] = ACTIONS(4158), + [anon_sym_POUND] = ACTIONS(4148), + }, + [STATE(362)] = { + [sym_output_list] = STATE(4391), + [sym__print_output_expression] = STATE(3441), + [sym__unparenthesized_print_output_expression] = STATE(3441), + [sym__print_output_call_binary_expression] = STATE(3441), + [sym__print_output_call_operand] = STATE(10992), + [sym__print_output_member_comparison_expression] = STATE(4029), + [sym__print_output_call_member_expression] = STATE(459), + [sym__print_output_call_expression] = STATE(1676), + [sym__print_output_qualified_callable] = STATE(13339), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10993), + [sym_comparison_expression] = STATE(3445), + [sym__comparison_operand] = STATE(11254), + [sym_logical_value_expression] = STATE(3451), + [sym__callable_expression] = STATE(13340), + [sym_call_expression] = STATE(10301), + [sym_new_expression] = STATE(641), + [sym_addressof_expression] = STATE(641), + [sym_type_of_expression] = STATE(641), + [sym_member_expression] = STATE(642), + [sym_qualified_member_expression] = STATE(632), + [sym_implicit_member_expression] = STATE(632), + [sym_parenthesized_expression] = STATE(643), + [sym_binary_expression] = STATE(644), + [sym_unary_expression] = STATE(1682), + [sym__signed_unary_expression] = STATE(581), + [sym__literal] = STATE(641), + [sym_boolean_literal] = STATE(641), + [sym_file_number_literal] = STATE(641), + [sym_identifier] = ACTIONS(4150), + [sym_newline] = ACTIONS(4086), + [anon_sym_COLON] = ACTIONS(4086), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4088), + [aux_sym_frm_property_statement_token1] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(4122), + [aux_sym__attribute_identifier_token1] = ACTIONS(4088), + [aux_sym_option_statement_token3] = ACTIONS(4088), + [aux_sym_type_declaration_token1] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4088), + [aux_sym_enum_declaration_token1] = ACTIONS(4088), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4088), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4088), + [aux_sym_declare_function_statement_token1] = ACTIONS(4088), + [aux_sym_preprocessor_const_token1] = ACTIONS(4088), + [aux_sym__property_get_header_token1] = ACTIONS(4088), + [aux_sym_event_declaration_token1] = ACTIONS(4088), + [sym_static_modifier] = ACTIONS(4088), + [sym__dim_keyword] = ACTIONS(4088), + [sym__redim_keyword] = ACTIONS(4088), + [aux_sym_get_accessor_token1] = ACTIONS(4088), + [aux_sym_set_accessor_token1] = ACTIONS(4088), + [aux_sym_const_declaration_token1] = ACTIONS(4088), + [anon_sym_LPAREN] = ACTIONS(4154), + [aux_sym_as_type_clause_token2] = ACTIONS(4130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4156), + [aux_sym_visibility_token1] = ACTIONS(4088), + [aux_sym_visibility_token2] = ACTIONS(4088), + [aux_sym_elseif_fragment_token1] = ACTIONS(4088), + [aux_sym_else_fragment_token1] = ACTIONS(4088), + [aux_sym_select_statement_token1] = ACTIONS(4088), + [aux_sym__for_header_token1] = ACTIONS(4088), + [aux_sym_do_statement_token1] = ACTIONS(4088), + [aux_sym_do_condition_token1] = ACTIONS(4088), + [aux_sym_with_statement_token1] = ACTIONS(4088), + [aux_sym_exit_statement_token1] = ACTIONS(4088), + [sym_end_statement] = ACTIONS(4086), + [aux_sym_on_goto_statement_token1] = ACTIONS(4088), + [aux_sym_on_goto_statement_token2] = ACTIONS(4088), + [aux_sym_on_error_statement_token2] = ACTIONS(4088), + [sym__ambiguous_redim_statement] = ACTIONS(4086), + [aux_sym_erase_statement_token1] = ACTIONS(4088), + [aux_sym_open_statement_token1] = ACTIONS(4088), + [aux_sym_file_mode_token2] = ACTIONS(4088), + [aux_sym_file_access_token2] = ACTIONS(4088), + [aux_sym_file_lock_token2] = ACTIONS(4088), + [aux_sym_print_statement_token1] = ACTIONS(4088), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4086), + [aux_sym_close_statement_token1] = ACTIONS(4088), + [aux_sym_put_statement_token1] = ACTIONS(4088), + [aux_sym_unlock_statement_token1] = ACTIONS(4088), + [aux_sym_seek_statement_token1] = ACTIONS(4088), + [sym_reset_statement] = ACTIONS(4088), + [aux_sym_raise_event_statement_token1] = ACTIONS(4088), + [sym_stop_statement] = ACTIONS(4088), + [sym_beep_statement] = ACTIONS(4088), + [aux_sym_unload_statement_token1] = ACTIONS(4088), + [aux_sym_def_type_statement_token1] = ACTIONS(4088), + [aux_sym_def_type_statement_token2] = ACTIONS(4088), + [aux_sym_def_type_statement_token3] = ACTIONS(4088), + [aux_sym_def_type_statement_token4] = ACTIONS(4088), + [aux_sym_def_type_statement_token5] = ACTIONS(4088), + [aux_sym_def_type_statement_token6] = ACTIONS(4088), + [aux_sym_def_type_statement_token7] = ACTIONS(4088), + [aux_sym_def_type_statement_token8] = ACTIONS(4088), + [aux_sym_def_type_statement_token9] = ACTIONS(4088), + [aux_sym_def_type_statement_token10] = ACTIONS(4088), + [aux_sym_def_type_statement_token11] = ACTIONS(4088), + [aux_sym_def_type_statement_token12] = ACTIONS(4088), + [aux_sym_def_type_statement_token13] = ACTIONS(4088), + [aux_sym_def_type_statement_token14] = ACTIONS(4088), + [aux_sym_call_statement_token1] = ACTIONS(4088), + [sym__ambiguous_call_statement] = ACTIONS(4088), + [aux_sym_addressof_expression_token1] = ACTIONS(4138), + [aux_sym_type_of_expression_token1] = ACTIONS(4140), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(4158), + [sym_number_literal] = ACTIONS(4158), + [aux_sym_boolean_literal_token1] = ACTIONS(4144), + [aux_sym_boolean_literal_token2] = ACTIONS(4144), + [sym_nothing_literal] = ACTIONS(4160), + [sym_null_literal] = ACTIONS(4160), + [sym_empty_literal] = ACTIONS(4160), + [sym_date_literal] = ACTIONS(4158), + [anon_sym_POUND] = ACTIONS(4148), + }, + [STATE(363)] = { + [sym__print_method_output_list] = STATE(4331), + [sym__unparenthesized_print_output_expression] = STATE(3470), + [sym__print_output_call_binary_expression] = STATE(3470), + [sym__print_output_call_operand] = STATE(10992), + [sym__print_output_member_comparison_expression] = STATE(4029), + [sym__print_output_call_member_expression] = STATE(459), + [sym__print_output_call_expression] = STATE(1676), + [sym__print_output_qualified_callable] = STATE(13339), + [sym_argument_list] = STATE(4333), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10993), + [sym_comparison_expression] = STATE(3445), + [sym__comparison_operand] = STATE(11254), + [sym_logical_value_expression] = STATE(3451), + [sym__callable_expression] = STATE(13340), + [sym_call_expression] = STATE(10301), + [sym_new_expression] = STATE(641), + [sym_addressof_expression] = STATE(641), + [sym_type_of_expression] = STATE(641), + [sym_member_expression] = STATE(642), + [sym_qualified_member_expression] = STATE(632), + [sym_implicit_member_expression] = STATE(632), + [sym_parenthesized_expression] = STATE(10077), + [sym_binary_expression] = STATE(644), + [sym_unary_expression] = STATE(1682), + [sym__signed_unary_expression] = STATE(581), + [sym__literal] = STATE(641), + [sym_boolean_literal] = STATE(641), + [sym_file_number_literal] = STATE(641), + [sym_identifier] = ACTIONS(4150), + [sym_newline] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(4094), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4096), + [aux_sym_frm_property_statement_token1] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(4122), + [aux_sym__attribute_identifier_token1] = ACTIONS(4096), + [aux_sym_option_statement_token3] = ACTIONS(4096), + [aux_sym_type_declaration_token1] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4096), + [aux_sym_enum_declaration_token1] = ACTIONS(4096), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4096), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4096), + [aux_sym_declare_function_statement_token1] = ACTIONS(4096), + [aux_sym_preprocessor_const_token1] = ACTIONS(4096), + [aux_sym__property_get_header_token1] = ACTIONS(4096), + [aux_sym_event_declaration_token1] = ACTIONS(4096), + [sym_static_modifier] = ACTIONS(4096), + [sym__dim_keyword] = ACTIONS(4096), + [sym__redim_keyword] = ACTIONS(4096), + [aux_sym_get_accessor_token1] = ACTIONS(4096), + [aux_sym_set_accessor_token1] = ACTIONS(4096), + [aux_sym_const_declaration_token1] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4162), + [aux_sym_as_type_clause_token2] = ACTIONS(4130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4156), + [aux_sym_visibility_token1] = ACTIONS(4096), + [aux_sym_visibility_token2] = ACTIONS(4096), + [aux_sym_elseif_fragment_token1] = ACTIONS(4096), + [aux_sym_else_fragment_token1] = ACTIONS(4096), + [aux_sym_select_statement_token1] = ACTIONS(4096), + [aux_sym__for_header_token1] = ACTIONS(4096), + [aux_sym_do_statement_token1] = ACTIONS(4096), + [aux_sym_do_condition_token1] = ACTIONS(4096), + [aux_sym_with_statement_token1] = ACTIONS(4096), + [aux_sym_exit_statement_token1] = ACTIONS(4096), + [sym_end_statement] = ACTIONS(4094), + [aux_sym_on_goto_statement_token1] = ACTIONS(4096), + [aux_sym_on_goto_statement_token2] = ACTIONS(4096), + [aux_sym_on_error_statement_token2] = ACTIONS(4096), + [sym__ambiguous_redim_statement] = ACTIONS(4094), + [aux_sym_erase_statement_token1] = ACTIONS(4096), + [aux_sym_open_statement_token1] = ACTIONS(4096), + [aux_sym_file_mode_token2] = ACTIONS(4096), + [aux_sym_file_access_token2] = ACTIONS(4096), + [aux_sym_file_lock_token2] = ACTIONS(4096), + [aux_sym_print_statement_token1] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4094), + [aux_sym_close_statement_token1] = ACTIONS(4096), + [aux_sym_put_statement_token1] = ACTIONS(4096), + [aux_sym_unlock_statement_token1] = ACTIONS(4096), + [aux_sym_seek_statement_token1] = ACTIONS(4096), + [sym_reset_statement] = ACTIONS(4096), + [aux_sym_raise_event_statement_token1] = ACTIONS(4096), + [sym_stop_statement] = ACTIONS(4096), + [sym_beep_statement] = ACTIONS(4096), + [aux_sym_unload_statement_token1] = ACTIONS(4096), + [aux_sym_def_type_statement_token1] = ACTIONS(4096), + [aux_sym_def_type_statement_token2] = ACTIONS(4096), + [aux_sym_def_type_statement_token3] = ACTIONS(4096), + [aux_sym_def_type_statement_token4] = ACTIONS(4096), + [aux_sym_def_type_statement_token5] = ACTIONS(4096), + [aux_sym_def_type_statement_token6] = ACTIONS(4096), + [aux_sym_def_type_statement_token7] = ACTIONS(4096), + [aux_sym_def_type_statement_token8] = ACTIONS(4096), + [aux_sym_def_type_statement_token9] = ACTIONS(4096), + [aux_sym_def_type_statement_token10] = ACTIONS(4096), + [aux_sym_def_type_statement_token11] = ACTIONS(4096), + [aux_sym_def_type_statement_token12] = ACTIONS(4096), + [aux_sym_def_type_statement_token13] = ACTIONS(4096), + [aux_sym_def_type_statement_token14] = ACTIONS(4096), + [aux_sym_call_statement_token1] = ACTIONS(4096), + [sym__ambiguous_call_statement] = ACTIONS(4096), + [aux_sym_addressof_expression_token1] = ACTIONS(4138), + [aux_sym_type_of_expression_token1] = ACTIONS(4140), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(4158), + [sym_number_literal] = ACTIONS(4158), + [aux_sym_boolean_literal_token1] = ACTIONS(4144), + [aux_sym_boolean_literal_token2] = ACTIONS(4144), + [sym_nothing_literal] = ACTIONS(4160), + [sym_null_literal] = ACTIONS(4160), + [sym_empty_literal] = ACTIONS(4160), + [sym_date_literal] = ACTIONS(4158), + [anon_sym_POUND] = ACTIONS(4148), + }, + [STATE(364)] = { + [sym_output_list] = STATE(4394), + [sym__print_output_expression] = STATE(3441), + [sym__unparenthesized_print_output_expression] = STATE(3441), + [sym__print_output_call_binary_expression] = STATE(3441), + [sym__print_output_call_operand] = STATE(10992), + [sym__print_output_member_comparison_expression] = STATE(4029), + [sym__print_output_call_member_expression] = STATE(459), + [sym__print_output_call_expression] = STATE(1676), + [sym__print_output_qualified_callable] = STATE(13339), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10993), + [sym_comparison_expression] = STATE(3445), + [sym__comparison_operand] = STATE(11254), + [sym_logical_value_expression] = STATE(3451), + [sym__callable_expression] = STATE(13340), + [sym_call_expression] = STATE(10301), + [sym_new_expression] = STATE(641), + [sym_addressof_expression] = STATE(641), + [sym_type_of_expression] = STATE(641), + [sym_member_expression] = STATE(642), + [sym_qualified_member_expression] = STATE(632), + [sym_implicit_member_expression] = STATE(632), + [sym_parenthesized_expression] = STATE(643), + [sym_binary_expression] = STATE(644), + [sym_unary_expression] = STATE(1682), + [sym__signed_unary_expression] = STATE(581), + [sym__literal] = STATE(641), + [sym_boolean_literal] = STATE(641), + [sym_file_number_literal] = STATE(641), + [sym_identifier] = ACTIONS(4150), + [sym_newline] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4092), + [aux_sym_frm_property_statement_token1] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(4122), + [aux_sym__attribute_identifier_token1] = ACTIONS(4092), + [aux_sym_option_statement_token3] = ACTIONS(4092), + [aux_sym_type_declaration_token1] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4092), + [aux_sym_enum_declaration_token1] = ACTIONS(4092), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4092), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4092), + [aux_sym_declare_function_statement_token1] = ACTIONS(4092), + [aux_sym_preprocessor_const_token1] = ACTIONS(4092), + [aux_sym__property_get_header_token1] = ACTIONS(4092), + [aux_sym_event_declaration_token1] = ACTIONS(4092), + [sym_static_modifier] = ACTIONS(4092), + [sym__dim_keyword] = ACTIONS(4092), + [sym__redim_keyword] = ACTIONS(4092), + [aux_sym_get_accessor_token1] = ACTIONS(4092), + [aux_sym_set_accessor_token1] = ACTIONS(4092), + [aux_sym_const_declaration_token1] = ACTIONS(4092), + [anon_sym_LPAREN] = ACTIONS(4154), + [aux_sym_as_type_clause_token2] = ACTIONS(4130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4156), + [aux_sym_visibility_token1] = ACTIONS(4092), + [aux_sym_visibility_token2] = ACTIONS(4092), + [aux_sym_elseif_fragment_token1] = ACTIONS(4092), + [aux_sym_else_fragment_token1] = ACTIONS(4092), + [aux_sym_select_statement_token1] = ACTIONS(4092), + [aux_sym__for_header_token1] = ACTIONS(4092), + [aux_sym_do_statement_token1] = ACTIONS(4092), + [aux_sym_do_condition_token1] = ACTIONS(4092), + [aux_sym_with_statement_token1] = ACTIONS(4092), + [aux_sym_exit_statement_token1] = ACTIONS(4092), + [sym_end_statement] = ACTIONS(4090), + [aux_sym_on_goto_statement_token1] = ACTIONS(4092), + [aux_sym_on_goto_statement_token2] = ACTIONS(4092), + [aux_sym_on_error_statement_token2] = ACTIONS(4092), + [sym__ambiguous_redim_statement] = ACTIONS(4090), + [aux_sym_erase_statement_token1] = ACTIONS(4092), + [aux_sym_open_statement_token1] = ACTIONS(4092), + [aux_sym_file_mode_token2] = ACTIONS(4092), + [aux_sym_file_access_token2] = ACTIONS(4092), + [aux_sym_file_lock_token2] = ACTIONS(4092), + [aux_sym_print_statement_token1] = ACTIONS(4092), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4090), + [aux_sym_close_statement_token1] = ACTIONS(4092), + [aux_sym_put_statement_token1] = ACTIONS(4092), + [aux_sym_unlock_statement_token1] = ACTIONS(4092), + [aux_sym_seek_statement_token1] = ACTIONS(4092), + [sym_reset_statement] = ACTIONS(4092), + [aux_sym_raise_event_statement_token1] = ACTIONS(4092), + [sym_stop_statement] = ACTIONS(4092), + [sym_beep_statement] = ACTIONS(4092), + [aux_sym_unload_statement_token1] = ACTIONS(4092), + [aux_sym_def_type_statement_token1] = ACTIONS(4092), + [aux_sym_def_type_statement_token2] = ACTIONS(4092), + [aux_sym_def_type_statement_token3] = ACTIONS(4092), + [aux_sym_def_type_statement_token4] = ACTIONS(4092), + [aux_sym_def_type_statement_token5] = ACTIONS(4092), + [aux_sym_def_type_statement_token6] = ACTIONS(4092), + [aux_sym_def_type_statement_token7] = ACTIONS(4092), + [aux_sym_def_type_statement_token8] = ACTIONS(4092), + [aux_sym_def_type_statement_token9] = ACTIONS(4092), + [aux_sym_def_type_statement_token10] = ACTIONS(4092), + [aux_sym_def_type_statement_token11] = ACTIONS(4092), + [aux_sym_def_type_statement_token12] = ACTIONS(4092), + [aux_sym_def_type_statement_token13] = ACTIONS(4092), + [aux_sym_def_type_statement_token14] = ACTIONS(4092), + [aux_sym_call_statement_token1] = ACTIONS(4092), + [sym__ambiguous_call_statement] = ACTIONS(4092), + [aux_sym_addressof_expression_token1] = ACTIONS(4138), + [aux_sym_type_of_expression_token1] = ACTIONS(4140), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(4158), + [sym_number_literal] = ACTIONS(4158), + [aux_sym_boolean_literal_token1] = ACTIONS(4144), + [aux_sym_boolean_literal_token2] = ACTIONS(4144), + [sym_nothing_literal] = ACTIONS(4160), + [sym_null_literal] = ACTIONS(4160), + [sym_empty_literal] = ACTIONS(4160), + [sym_date_literal] = ACTIONS(4158), + [anon_sym_POUND] = ACTIONS(4148), + }, + [STATE(365)] = { + [sym__print_output_expression] = STATE(4079), + [sym__unparenthesized_print_output_expression] = STATE(4079), + [sym__print_output_call_binary_expression] = STATE(4079), + [sym__print_output_call_operand] = STATE(10992), + [sym__print_output_member_comparison_expression] = STATE(4029), + [sym__print_output_call_member_expression] = STATE(459), + [sym__print_output_call_expression] = STATE(1676), + [sym__print_output_qualified_callable] = STATE(13339), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10993), + [sym_comparison_expression] = STATE(3445), + [sym__comparison_operand] = STATE(11254), + [sym_logical_value_expression] = STATE(3451), + [sym__callable_expression] = STATE(13340), + [sym_call_expression] = STATE(10301), + [sym_new_expression] = STATE(641), + [sym_addressof_expression] = STATE(641), + [sym_type_of_expression] = STATE(641), + [sym_member_expression] = STATE(642), + [sym_qualified_member_expression] = STATE(632), + [sym_implicit_member_expression] = STATE(632), + [sym_parenthesized_expression] = STATE(643), + [sym_binary_expression] = STATE(644), + [sym_unary_expression] = STATE(1682), + [sym__signed_unary_expression] = STATE(581), + [sym__literal] = STATE(641), + [sym_boolean_literal] = STATE(641), + [sym_file_number_literal] = STATE(641), + [sym_identifier] = ACTIONS(4150), + [sym_newline] = ACTIONS(4100), + [anon_sym_COLON] = ACTIONS(4100), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4102), + [aux_sym_frm_property_statement_token1] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(4122), + [aux_sym__attribute_identifier_token1] = ACTIONS(4102), + [aux_sym_option_statement_token3] = ACTIONS(4102), + [aux_sym_type_declaration_token1] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4102), + [aux_sym_enum_declaration_token1] = ACTIONS(4102), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4102), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4102), + [aux_sym_declare_function_statement_token1] = ACTIONS(4102), + [aux_sym_preprocessor_const_token1] = ACTIONS(4102), + [aux_sym__property_get_header_token1] = ACTIONS(4102), + [aux_sym_event_declaration_token1] = ACTIONS(4102), + [sym_static_modifier] = ACTIONS(4102), + [sym__dim_keyword] = ACTIONS(4102), + [sym__redim_keyword] = ACTIONS(4102), + [aux_sym_get_accessor_token1] = ACTIONS(4102), + [aux_sym_set_accessor_token1] = ACTIONS(4102), + [aux_sym_const_declaration_token1] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(4154), + [aux_sym_as_type_clause_token2] = ACTIONS(4130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4156), + [aux_sym_visibility_token1] = ACTIONS(4102), + [aux_sym_visibility_token2] = ACTIONS(4102), + [aux_sym_elseif_fragment_token1] = ACTIONS(4102), + [aux_sym_else_fragment_token1] = ACTIONS(4102), + [aux_sym_select_statement_token1] = ACTIONS(4102), + [aux_sym__for_header_token1] = ACTIONS(4102), + [aux_sym_do_statement_token1] = ACTIONS(4102), + [aux_sym_do_condition_token1] = ACTIONS(4102), + [aux_sym_with_statement_token1] = ACTIONS(4102), + [aux_sym_exit_statement_token1] = ACTIONS(4102), + [sym_end_statement] = ACTIONS(4100), + [aux_sym_on_goto_statement_token1] = ACTIONS(4102), + [aux_sym_on_goto_statement_token2] = ACTIONS(4102), + [aux_sym_on_error_statement_token2] = ACTIONS(4102), + [sym__ambiguous_redim_statement] = ACTIONS(4100), + [aux_sym_erase_statement_token1] = ACTIONS(4102), + [aux_sym_open_statement_token1] = ACTIONS(4102), + [aux_sym_file_mode_token2] = ACTIONS(4102), + [aux_sym_file_access_token2] = ACTIONS(4102), + [aux_sym_file_lock_token2] = ACTIONS(4102), + [aux_sym_print_statement_token1] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4100), + [aux_sym_close_statement_token1] = ACTIONS(4102), + [aux_sym_put_statement_token1] = ACTIONS(4102), + [aux_sym_unlock_statement_token1] = ACTIONS(4102), + [aux_sym_seek_statement_token1] = ACTIONS(4102), + [sym_reset_statement] = ACTIONS(4102), + [aux_sym_raise_event_statement_token1] = ACTIONS(4102), + [sym_stop_statement] = ACTIONS(4102), + [sym_beep_statement] = ACTIONS(4102), + [aux_sym_unload_statement_token1] = ACTIONS(4102), + [aux_sym_def_type_statement_token1] = ACTIONS(4102), + [aux_sym_def_type_statement_token2] = ACTIONS(4102), + [aux_sym_def_type_statement_token3] = ACTIONS(4102), + [aux_sym_def_type_statement_token4] = ACTIONS(4102), + [aux_sym_def_type_statement_token5] = ACTIONS(4102), + [aux_sym_def_type_statement_token6] = ACTIONS(4102), + [aux_sym_def_type_statement_token7] = ACTIONS(4102), + [aux_sym_def_type_statement_token8] = ACTIONS(4102), + [aux_sym_def_type_statement_token9] = ACTIONS(4102), + [aux_sym_def_type_statement_token10] = ACTIONS(4102), + [aux_sym_def_type_statement_token11] = ACTIONS(4102), + [aux_sym_def_type_statement_token12] = ACTIONS(4102), + [aux_sym_def_type_statement_token13] = ACTIONS(4102), + [aux_sym_def_type_statement_token14] = ACTIONS(4102), + [aux_sym_call_statement_token1] = ACTIONS(4102), + [sym__ambiguous_call_statement] = ACTIONS(4102), + [aux_sym_addressof_expression_token1] = ACTIONS(4138), + [aux_sym_type_of_expression_token1] = ACTIONS(4140), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(4158), + [sym_number_literal] = ACTIONS(4158), + [aux_sym_boolean_literal_token1] = ACTIONS(4144), + [aux_sym_boolean_literal_token2] = ACTIONS(4144), + [sym_nothing_literal] = ACTIONS(4160), + [sym_null_literal] = ACTIONS(4160), + [sym_empty_literal] = ACTIONS(4160), + [sym_date_literal] = ACTIONS(4158), + [anon_sym_POUND] = ACTIONS(4148), + }, + [STATE(366)] = { + [sym__print_output_expression] = STATE(4079), + [sym__unparenthesized_print_output_expression] = STATE(4079), + [sym__print_output_call_binary_expression] = STATE(4079), + [sym__print_output_call_operand] = STATE(10992), + [sym__print_output_member_comparison_expression] = STATE(4029), + [sym__print_output_call_member_expression] = STATE(459), + [sym__print_output_call_expression] = STATE(1676), + [sym__print_output_qualified_callable] = STATE(13339), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10993), + [sym_comparison_expression] = STATE(3445), + [sym__comparison_operand] = STATE(11254), + [sym_logical_value_expression] = STATE(3451), + [sym__callable_expression] = STATE(13340), + [sym_call_expression] = STATE(10301), + [sym_new_expression] = STATE(641), + [sym_addressof_expression] = STATE(641), + [sym_type_of_expression] = STATE(641), + [sym_member_expression] = STATE(642), + [sym_qualified_member_expression] = STATE(632), + [sym_implicit_member_expression] = STATE(632), + [sym_parenthesized_expression] = STATE(643), + [sym_binary_expression] = STATE(644), + [sym_unary_expression] = STATE(1682), + [sym__signed_unary_expression] = STATE(581), + [sym__literal] = STATE(641), + [sym_boolean_literal] = STATE(641), + [sym_file_number_literal] = STATE(641), + [sym_identifier] = ACTIONS(4150), + [sym_newline] = ACTIONS(4108), + [anon_sym_COLON] = ACTIONS(4108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4110), + [aux_sym_frm_property_statement_token1] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(4122), + [aux_sym__attribute_identifier_token1] = ACTIONS(4110), + [aux_sym_option_statement_token3] = ACTIONS(4110), + [aux_sym_type_declaration_token1] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4110), + [aux_sym_enum_declaration_token1] = ACTIONS(4110), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4110), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4110), + [aux_sym_declare_function_statement_token1] = ACTIONS(4110), + [aux_sym_preprocessor_const_token1] = ACTIONS(4110), + [aux_sym__property_get_header_token1] = ACTIONS(4110), + [aux_sym_event_declaration_token1] = ACTIONS(4110), + [sym_static_modifier] = ACTIONS(4110), + [sym__dim_keyword] = ACTIONS(4110), + [sym__redim_keyword] = ACTIONS(4110), + [aux_sym_get_accessor_token1] = ACTIONS(4110), + [aux_sym_set_accessor_token1] = ACTIONS(4110), + [aux_sym_const_declaration_token1] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4154), + [aux_sym_as_type_clause_token2] = ACTIONS(4130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4156), + [aux_sym_visibility_token1] = ACTIONS(4110), + [aux_sym_visibility_token2] = ACTIONS(4110), + [aux_sym_elseif_fragment_token1] = ACTIONS(4110), + [aux_sym_else_fragment_token1] = ACTIONS(4110), + [aux_sym_select_statement_token1] = ACTIONS(4110), + [aux_sym__for_header_token1] = ACTIONS(4110), + [aux_sym_do_statement_token1] = ACTIONS(4110), + [aux_sym_do_condition_token1] = ACTIONS(4110), + [aux_sym_with_statement_token1] = ACTIONS(4110), + [aux_sym_exit_statement_token1] = ACTIONS(4110), + [sym_end_statement] = ACTIONS(4108), + [aux_sym_on_goto_statement_token1] = ACTIONS(4110), + [aux_sym_on_goto_statement_token2] = ACTIONS(4110), + [aux_sym_on_error_statement_token2] = ACTIONS(4110), + [sym__ambiguous_redim_statement] = ACTIONS(4108), + [aux_sym_erase_statement_token1] = ACTIONS(4110), + [aux_sym_open_statement_token1] = ACTIONS(4110), + [aux_sym_file_mode_token2] = ACTIONS(4110), + [aux_sym_file_access_token2] = ACTIONS(4110), + [aux_sym_file_lock_token2] = ACTIONS(4110), + [aux_sym_print_statement_token1] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4108), + [aux_sym_close_statement_token1] = ACTIONS(4110), + [aux_sym_put_statement_token1] = ACTIONS(4110), + [aux_sym_unlock_statement_token1] = ACTIONS(4110), + [aux_sym_seek_statement_token1] = ACTIONS(4110), + [sym_reset_statement] = ACTIONS(4110), + [aux_sym_raise_event_statement_token1] = ACTIONS(4110), + [sym_stop_statement] = ACTIONS(4110), + [sym_beep_statement] = ACTIONS(4110), + [aux_sym_unload_statement_token1] = ACTIONS(4110), + [aux_sym_def_type_statement_token1] = ACTIONS(4110), + [aux_sym_def_type_statement_token2] = ACTIONS(4110), + [aux_sym_def_type_statement_token3] = ACTIONS(4110), + [aux_sym_def_type_statement_token4] = ACTIONS(4110), + [aux_sym_def_type_statement_token5] = ACTIONS(4110), + [aux_sym_def_type_statement_token6] = ACTIONS(4110), + [aux_sym_def_type_statement_token7] = ACTIONS(4110), + [aux_sym_def_type_statement_token8] = ACTIONS(4110), + [aux_sym_def_type_statement_token9] = ACTIONS(4110), + [aux_sym_def_type_statement_token10] = ACTIONS(4110), + [aux_sym_def_type_statement_token11] = ACTIONS(4110), + [aux_sym_def_type_statement_token12] = ACTIONS(4110), + [aux_sym_def_type_statement_token13] = ACTIONS(4110), + [aux_sym_def_type_statement_token14] = ACTIONS(4110), + [aux_sym_call_statement_token1] = ACTIONS(4110), + [sym__ambiguous_call_statement] = ACTIONS(4110), + [aux_sym_addressof_expression_token1] = ACTIONS(4138), + [aux_sym_type_of_expression_token1] = ACTIONS(4140), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(4158), + [sym_number_literal] = ACTIONS(4158), + [aux_sym_boolean_literal_token1] = ACTIONS(4144), + [aux_sym_boolean_literal_token2] = ACTIONS(4144), + [sym_nothing_literal] = ACTIONS(4160), + [sym_null_literal] = ACTIONS(4160), + [sym_empty_literal] = ACTIONS(4160), + [sym_date_literal] = ACTIONS(4158), + [anon_sym_POUND] = ACTIONS(4148), + }, + [STATE(367)] = { + [sym__argument] = STATE(3593), + [sym_named_argument] = STATE(3593), + [sym_byval_argument] = STATE(3593), + [sym__primary_expression] = STATE(454), + [sym__expression] = STATE(1053), + [sym_comparison_expression] = STATE(2684), + [sym__comparison_operand] = STATE(11297), + [sym_logical_value_expression] = STATE(2684), + [sym__callable_expression] = STATE(13215), + [sym_call_expression] = STATE(380), + [sym_new_expression] = STATE(454), + [sym_addressof_expression] = STATE(454), + [sym_type_of_expression] = STATE(454), + [sym_member_expression] = STATE(453), + [sym_qualified_member_expression] = STATE(424), + [sym_implicit_member_expression] = STATE(424), + [sym_parenthesized_expression] = STATE(454), + [sym_binary_expression] = STATE(454), + [sym_unary_expression] = STATE(1053), + [sym__signed_unary_expression] = STATE(456), + [sym__literal] = STATE(454), + [sym_boolean_literal] = STATE(454), + [sym_file_number_literal] = STATE(454), + [aux_sym__argument_sequence_repeat2] = STATE(3586), + [sym_identifier] = ACTIONS(4026), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4032), + [anon_sym_DOT] = ACTIONS(4036), + [anon_sym_BANG] = ACTIONS(4038), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_declaration_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4166), + [aux_sym_enum_declaration_token1] = ACTIONS(4166), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4166), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4166), + [aux_sym_declare_function_statement_token1] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [aux_sym__property_get_header_token1] = ACTIONS(4166), + [aux_sym_event_declaration_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_byval_modifier_token1] = ACTIONS(4040), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4168), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4078), + [aux_sym_as_type_clause_token2] = ACTIONS(4046), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4048), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4054), + [aux_sym_type_of_expression_token1] = ACTIONS(4056), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(4058), + [sym_number_literal] = ACTIONS(4058), + [aux_sym_boolean_literal_token1] = ACTIONS(4060), + [aux_sym_boolean_literal_token2] = ACTIONS(4060), + [sym_nothing_literal] = ACTIONS(4062), + [sym_null_literal] = ACTIONS(4062), + [sym_empty_literal] = ACTIONS(4062), + [sym_date_literal] = ACTIONS(4058), + [anon_sym_POUND] = ACTIONS(4064), + }, + [STATE(368)] = { + [sym__argument] = STATE(3531), + [sym_named_argument] = STATE(3531), + [sym_byval_argument] = STATE(3531), + [sym__primary_expression] = STATE(454), + [sym__expression] = STATE(1053), + [sym_comparison_expression] = STATE(2684), + [sym__comparison_operand] = STATE(11297), + [sym_logical_value_expression] = STATE(2684), + [sym__callable_expression] = STATE(13215), + [sym_call_expression] = STATE(380), + [sym_new_expression] = STATE(454), + [sym_addressof_expression] = STATE(454), + [sym_type_of_expression] = STATE(454), + [sym_member_expression] = STATE(453), + [sym_qualified_member_expression] = STATE(424), + [sym_implicit_member_expression] = STATE(424), + [sym_parenthesized_expression] = STATE(454), + [sym_binary_expression] = STATE(454), + [sym_unary_expression] = STATE(1053), + [sym__signed_unary_expression] = STATE(456), + [sym__literal] = STATE(454), + [sym_boolean_literal] = STATE(454), + [sym_file_number_literal] = STATE(454), + [aux_sym__argument_sequence_repeat2] = STATE(3532), + [sym_identifier] = ACTIONS(4026), + [sym_newline] = ACTIONS(4170), + [anon_sym_COLON] = ACTIONS(4170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4172), + [aux_sym_frm_property_statement_token1] = ACTIONS(4032), + [anon_sym_DOT] = ACTIONS(4036), + [anon_sym_BANG] = ACTIONS(4038), + [aux_sym__attribute_identifier_token1] = ACTIONS(4172), + [aux_sym_option_statement_token3] = ACTIONS(4172), + [aux_sym_type_declaration_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4172), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4172), + [aux_sym_enum_declaration_token1] = ACTIONS(4172), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4172), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4172), + [aux_sym_declare_function_statement_token1] = ACTIONS(4172), + [aux_sym_preprocessor_const_token1] = ACTIONS(4172), + [aux_sym__property_get_header_token1] = ACTIONS(4172), + [aux_sym_event_declaration_token1] = ACTIONS(4172), + [sym_static_modifier] = ACTIONS(4172), + [sym__dim_keyword] = ACTIONS(4172), + [sym__redim_keyword] = ACTIONS(4172), + [aux_sym_byval_modifier_token1] = ACTIONS(4040), + [aux_sym_get_accessor_token1] = ACTIONS(4172), + [aux_sym_set_accessor_token1] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4168), + [aux_sym_const_declaration_token1] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4078), + [aux_sym_as_type_clause_token2] = ACTIONS(4046), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4048), + [aux_sym_visibility_token1] = ACTIONS(4172), + [aux_sym_visibility_token2] = ACTIONS(4172), + [aux_sym_elseif_fragment_token1] = ACTIONS(4172), + [aux_sym_else_fragment_token1] = ACTIONS(4172), + [aux_sym_select_statement_token1] = ACTIONS(4172), + [aux_sym__for_header_token1] = ACTIONS(4172), + [aux_sym_do_statement_token1] = ACTIONS(4172), + [aux_sym_do_condition_token1] = ACTIONS(4172), + [aux_sym_with_statement_token1] = ACTIONS(4172), + [aux_sym_exit_statement_token1] = ACTIONS(4172), + [sym_end_statement] = ACTIONS(4170), + [aux_sym_on_goto_statement_token1] = ACTIONS(4172), + [aux_sym_on_goto_statement_token2] = ACTIONS(4172), + [aux_sym_on_error_statement_token2] = ACTIONS(4172), + [sym__ambiguous_redim_statement] = ACTIONS(4170), + [aux_sym_erase_statement_token1] = ACTIONS(4172), + [aux_sym_open_statement_token1] = ACTIONS(4172), + [aux_sym_file_mode_token2] = ACTIONS(4172), + [aux_sym_file_access_token2] = ACTIONS(4172), + [aux_sym_file_lock_token2] = ACTIONS(4172), + [aux_sym_print_statement_token1] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_QMARK] = ACTIONS(4170), + [aux_sym_close_statement_token1] = ACTIONS(4172), + [aux_sym_put_statement_token1] = ACTIONS(4172), + [aux_sym_unlock_statement_token1] = ACTIONS(4172), + [aux_sym_seek_statement_token1] = ACTIONS(4172), + [sym_reset_statement] = ACTIONS(4172), + [aux_sym_raise_event_statement_token1] = ACTIONS(4172), + [sym_stop_statement] = ACTIONS(4172), + [sym_beep_statement] = ACTIONS(4172), + [aux_sym_unload_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token2] = ACTIONS(4172), + [aux_sym_def_type_statement_token3] = ACTIONS(4172), + [aux_sym_def_type_statement_token4] = ACTIONS(4172), + [aux_sym_def_type_statement_token5] = ACTIONS(4172), + [aux_sym_def_type_statement_token6] = ACTIONS(4172), + [aux_sym_def_type_statement_token7] = ACTIONS(4172), + [aux_sym_def_type_statement_token8] = ACTIONS(4172), + [aux_sym_def_type_statement_token9] = ACTIONS(4172), + [aux_sym_def_type_statement_token10] = ACTIONS(4172), + [aux_sym_def_type_statement_token11] = ACTIONS(4172), + [aux_sym_def_type_statement_token12] = ACTIONS(4172), + [aux_sym_def_type_statement_token13] = ACTIONS(4172), + [aux_sym_def_type_statement_token14] = ACTIONS(4172), + [aux_sym_call_statement_token1] = ACTIONS(4172), + [sym__ambiguous_call_statement] = ACTIONS(4172), + [aux_sym_addressof_expression_token1] = ACTIONS(4054), + [aux_sym_type_of_expression_token1] = ACTIONS(4056), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(4058), + [sym_number_literal] = ACTIONS(4058), + [aux_sym_boolean_literal_token1] = ACTIONS(4060), + [aux_sym_boolean_literal_token2] = ACTIONS(4060), + [sym_nothing_literal] = ACTIONS(4062), + [sym_null_literal] = ACTIONS(4062), + [sym_empty_literal] = ACTIONS(4062), + [sym_date_literal] = ACTIONS(4058), + [anon_sym_POUND] = ACTIONS(4064), + }, + [STATE(369)] = { + [sym__print_output_expression] = STATE(4079), + [sym__unparenthesized_print_output_expression] = STATE(4079), + [sym__print_output_call_binary_expression] = STATE(4079), + [sym__print_output_call_operand] = STATE(10992), + [sym__print_output_member_comparison_expression] = STATE(4029), + [sym__print_output_call_member_expression] = STATE(459), + [sym__print_output_call_expression] = STATE(1676), + [sym__print_output_qualified_callable] = STATE(13339), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10993), + [sym_comparison_expression] = STATE(3445), + [sym__comparison_operand] = STATE(11254), + [sym_logical_value_expression] = STATE(3451), + [sym__callable_expression] = STATE(13340), + [sym_call_expression] = STATE(10301), + [sym_new_expression] = STATE(641), + [sym_addressof_expression] = STATE(641), + [sym_type_of_expression] = STATE(641), + [sym_member_expression] = STATE(642), + [sym_qualified_member_expression] = STATE(632), + [sym_implicit_member_expression] = STATE(632), + [sym_parenthesized_expression] = STATE(643), + [sym_binary_expression] = STATE(644), + [sym_unary_expression] = STATE(1682), + [sym__signed_unary_expression] = STATE(581), + [sym__literal] = STATE(641), + [sym_boolean_literal] = STATE(641), + [sym_file_number_literal] = STATE(641), + [sym_identifier] = ACTIONS(4150), + [sym_newline] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(4104), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4106), + [aux_sym_frm_property_statement_token1] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(4122), + [aux_sym__attribute_identifier_token1] = ACTIONS(4106), + [aux_sym_option_statement_token3] = ACTIONS(4106), + [aux_sym_type_declaration_token1] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4106), + [aux_sym_enum_declaration_token1] = ACTIONS(4106), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4106), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4106), + [aux_sym_declare_function_statement_token1] = ACTIONS(4106), + [aux_sym_preprocessor_const_token1] = ACTIONS(4106), + [aux_sym__property_get_header_token1] = ACTIONS(4106), + [aux_sym_event_declaration_token1] = ACTIONS(4106), + [sym_static_modifier] = ACTIONS(4106), + [sym__dim_keyword] = ACTIONS(4106), + [sym__redim_keyword] = ACTIONS(4106), + [aux_sym_get_accessor_token1] = ACTIONS(4106), + [aux_sym_set_accessor_token1] = ACTIONS(4106), + [aux_sym_const_declaration_token1] = ACTIONS(4106), + [anon_sym_LPAREN] = ACTIONS(4154), + [aux_sym_as_type_clause_token2] = ACTIONS(4130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4156), + [aux_sym_visibility_token1] = ACTIONS(4106), + [aux_sym_visibility_token2] = ACTIONS(4106), + [aux_sym_elseif_fragment_token1] = ACTIONS(4106), + [aux_sym_else_fragment_token1] = ACTIONS(4106), + [aux_sym_select_statement_token1] = ACTIONS(4106), + [aux_sym__for_header_token1] = ACTIONS(4106), + [aux_sym_do_statement_token1] = ACTIONS(4106), + [aux_sym_do_condition_token1] = ACTIONS(4106), + [aux_sym_with_statement_token1] = ACTIONS(4106), + [aux_sym_exit_statement_token1] = ACTIONS(4106), + [sym_end_statement] = ACTIONS(4104), + [aux_sym_on_goto_statement_token1] = ACTIONS(4106), + [aux_sym_on_goto_statement_token2] = ACTIONS(4106), + [aux_sym_on_error_statement_token2] = ACTIONS(4106), + [sym__ambiguous_redim_statement] = ACTIONS(4104), + [aux_sym_erase_statement_token1] = ACTIONS(4106), + [aux_sym_open_statement_token1] = ACTIONS(4106), + [aux_sym_file_mode_token2] = ACTIONS(4106), + [aux_sym_file_access_token2] = ACTIONS(4106), + [aux_sym_file_lock_token2] = ACTIONS(4106), + [aux_sym_print_statement_token1] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4104), + [aux_sym_close_statement_token1] = ACTIONS(4106), + [aux_sym_put_statement_token1] = ACTIONS(4106), + [aux_sym_unlock_statement_token1] = ACTIONS(4106), + [aux_sym_seek_statement_token1] = ACTIONS(4106), + [sym_reset_statement] = ACTIONS(4106), + [aux_sym_raise_event_statement_token1] = ACTIONS(4106), + [sym_stop_statement] = ACTIONS(4106), + [sym_beep_statement] = ACTIONS(4106), + [aux_sym_unload_statement_token1] = ACTIONS(4106), + [aux_sym_def_type_statement_token1] = ACTIONS(4106), + [aux_sym_def_type_statement_token2] = ACTIONS(4106), + [aux_sym_def_type_statement_token3] = ACTIONS(4106), + [aux_sym_def_type_statement_token4] = ACTIONS(4106), + [aux_sym_def_type_statement_token5] = ACTIONS(4106), + [aux_sym_def_type_statement_token6] = ACTIONS(4106), + [aux_sym_def_type_statement_token7] = ACTIONS(4106), + [aux_sym_def_type_statement_token8] = ACTIONS(4106), + [aux_sym_def_type_statement_token9] = ACTIONS(4106), + [aux_sym_def_type_statement_token10] = ACTIONS(4106), + [aux_sym_def_type_statement_token11] = ACTIONS(4106), + [aux_sym_def_type_statement_token12] = ACTIONS(4106), + [aux_sym_def_type_statement_token13] = ACTIONS(4106), + [aux_sym_def_type_statement_token14] = ACTIONS(4106), + [aux_sym_call_statement_token1] = ACTIONS(4106), + [sym__ambiguous_call_statement] = ACTIONS(4106), + [aux_sym_addressof_expression_token1] = ACTIONS(4138), + [aux_sym_type_of_expression_token1] = ACTIONS(4140), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(4158), + [sym_number_literal] = ACTIONS(4158), + [aux_sym_boolean_literal_token1] = ACTIONS(4144), + [aux_sym_boolean_literal_token2] = ACTIONS(4144), + [sym_nothing_literal] = ACTIONS(4160), + [sym_null_literal] = ACTIONS(4160), + [sym_empty_literal] = ACTIONS(4160), + [sym_date_literal] = ACTIONS(4158), + [anon_sym_POUND] = ACTIONS(4148), + }, + [STATE(370)] = { + [sym__print_output_expression] = STATE(4079), + [sym__unparenthesized_print_output_expression] = STATE(4079), + [sym__print_output_call_binary_expression] = STATE(4079), + [sym__print_output_call_operand] = STATE(10992), + [sym__print_output_member_comparison_expression] = STATE(4029), + [sym__print_output_call_member_expression] = STATE(459), + [sym__print_output_call_expression] = STATE(1676), + [sym__print_output_qualified_callable] = STATE(13339), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10993), + [sym_comparison_expression] = STATE(3445), + [sym__comparison_operand] = STATE(11254), + [sym_logical_value_expression] = STATE(3451), + [sym__callable_expression] = STATE(13340), + [sym_call_expression] = STATE(10301), + [sym_new_expression] = STATE(641), + [sym_addressof_expression] = STATE(641), + [sym_type_of_expression] = STATE(641), + [sym_member_expression] = STATE(642), + [sym_qualified_member_expression] = STATE(632), + [sym_implicit_member_expression] = STATE(632), + [sym_parenthesized_expression] = STATE(643), + [sym_binary_expression] = STATE(644), + [sym_unary_expression] = STATE(1682), + [sym__signed_unary_expression] = STATE(581), + [sym__literal] = STATE(641), + [sym_boolean_literal] = STATE(641), + [sym_file_number_literal] = STATE(641), + [sym_identifier] = ACTIONS(4150), + [sym_newline] = ACTIONS(4112), + [anon_sym_COLON] = ACTIONS(4112), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4114), + [aux_sym_frm_property_statement_token1] = ACTIONS(4152), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(4122), + [aux_sym__attribute_identifier_token1] = ACTIONS(4114), + [aux_sym_option_statement_token3] = ACTIONS(4114), + [aux_sym_type_declaration_token1] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4114), + [aux_sym_enum_declaration_token1] = ACTIONS(4114), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4114), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4114), + [aux_sym_declare_function_statement_token1] = ACTIONS(4114), + [aux_sym_preprocessor_const_token1] = ACTIONS(4114), + [aux_sym__property_get_header_token1] = ACTIONS(4114), + [aux_sym_event_declaration_token1] = ACTIONS(4114), + [sym_static_modifier] = ACTIONS(4114), + [sym__dim_keyword] = ACTIONS(4114), + [sym__redim_keyword] = ACTIONS(4114), + [aux_sym_get_accessor_token1] = ACTIONS(4114), + [aux_sym_set_accessor_token1] = ACTIONS(4114), + [aux_sym_const_declaration_token1] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4154), + [aux_sym_as_type_clause_token2] = ACTIONS(4130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4156), + [aux_sym_visibility_token1] = ACTIONS(4114), + [aux_sym_visibility_token2] = ACTIONS(4114), + [aux_sym_elseif_fragment_token1] = ACTIONS(4114), + [aux_sym_else_fragment_token1] = ACTIONS(4114), + [aux_sym_select_statement_token1] = ACTIONS(4114), + [aux_sym__for_header_token1] = ACTIONS(4114), + [aux_sym_do_statement_token1] = ACTIONS(4114), + [aux_sym_do_condition_token1] = ACTIONS(4114), + [aux_sym_with_statement_token1] = ACTIONS(4114), + [aux_sym_exit_statement_token1] = ACTIONS(4114), + [sym_end_statement] = ACTIONS(4112), + [aux_sym_on_goto_statement_token1] = ACTIONS(4114), + [aux_sym_on_goto_statement_token2] = ACTIONS(4114), + [aux_sym_on_error_statement_token2] = ACTIONS(4114), + [sym__ambiguous_redim_statement] = ACTIONS(4112), + [aux_sym_erase_statement_token1] = ACTIONS(4114), + [aux_sym_open_statement_token1] = ACTIONS(4114), + [aux_sym_file_mode_token2] = ACTIONS(4114), + [aux_sym_file_access_token2] = ACTIONS(4114), + [aux_sym_file_lock_token2] = ACTIONS(4114), + [aux_sym_print_statement_token1] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4112), + [aux_sym_close_statement_token1] = ACTIONS(4114), + [aux_sym_put_statement_token1] = ACTIONS(4114), + [aux_sym_unlock_statement_token1] = ACTIONS(4114), + [aux_sym_seek_statement_token1] = ACTIONS(4114), + [sym_reset_statement] = ACTIONS(4114), + [aux_sym_raise_event_statement_token1] = ACTIONS(4114), + [sym_stop_statement] = ACTIONS(4114), + [sym_beep_statement] = ACTIONS(4114), + [aux_sym_unload_statement_token1] = ACTIONS(4114), + [aux_sym_def_type_statement_token1] = ACTIONS(4114), + [aux_sym_def_type_statement_token2] = ACTIONS(4114), + [aux_sym_def_type_statement_token3] = ACTIONS(4114), + [aux_sym_def_type_statement_token4] = ACTIONS(4114), + [aux_sym_def_type_statement_token5] = ACTIONS(4114), + [aux_sym_def_type_statement_token6] = ACTIONS(4114), + [aux_sym_def_type_statement_token7] = ACTIONS(4114), + [aux_sym_def_type_statement_token8] = ACTIONS(4114), + [aux_sym_def_type_statement_token9] = ACTIONS(4114), + [aux_sym_def_type_statement_token10] = ACTIONS(4114), + [aux_sym_def_type_statement_token11] = ACTIONS(4114), + [aux_sym_def_type_statement_token12] = ACTIONS(4114), + [aux_sym_def_type_statement_token13] = ACTIONS(4114), + [aux_sym_def_type_statement_token14] = ACTIONS(4114), + [aux_sym_call_statement_token1] = ACTIONS(4114), + [sym__ambiguous_call_statement] = ACTIONS(4114), + [aux_sym_addressof_expression_token1] = ACTIONS(4138), + [aux_sym_type_of_expression_token1] = ACTIONS(4140), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(4158), + [sym_number_literal] = ACTIONS(4158), + [aux_sym_boolean_literal_token1] = ACTIONS(4144), + [aux_sym_boolean_literal_token2] = ACTIONS(4144), + [sym_nothing_literal] = ACTIONS(4160), + [sym_null_literal] = ACTIONS(4160), + [sym_empty_literal] = ACTIONS(4160), + [sym_date_literal] = ACTIONS(4158), + [anon_sym_POUND] = ACTIONS(4148), + }, + [STATE(371)] = { + [sym__argument] = STATE(3644), + [sym_named_argument] = STATE(3644), + [sym_byval_argument] = STATE(3644), + [sym__primary_expression] = STATE(454), + [sym__expression] = STATE(1053), + [sym_comparison_expression] = STATE(2684), + [sym__comparison_operand] = STATE(11297), + [sym_logical_value_expression] = STATE(2684), + [sym__callable_expression] = STATE(13215), + [sym_call_expression] = STATE(380), + [sym_new_expression] = STATE(454), + [sym_addressof_expression] = STATE(454), + [sym_type_of_expression] = STATE(454), + [sym_member_expression] = STATE(453), + [sym_qualified_member_expression] = STATE(424), + [sym_implicit_member_expression] = STATE(424), + [sym_parenthesized_expression] = STATE(454), + [sym_binary_expression] = STATE(454), + [sym_unary_expression] = STATE(1053), + [sym__signed_unary_expression] = STATE(456), + [sym__literal] = STATE(454), + [sym_boolean_literal] = STATE(454), + [sym_file_number_literal] = STATE(454), + [aux_sym__argument_sequence_repeat2] = STATE(3649), + [sym_identifier] = ACTIONS(4026), + [sym_newline] = ACTIONS(4174), + [anon_sym_COLON] = ACTIONS(4174), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4176), + [aux_sym_frm_property_statement_token1] = ACTIONS(4032), + [anon_sym_DOT] = ACTIONS(4036), + [anon_sym_BANG] = ACTIONS(4038), + [aux_sym__attribute_identifier_token1] = ACTIONS(4176), + [aux_sym_option_statement_token3] = ACTIONS(4176), + [aux_sym_type_declaration_token1] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4176), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4176), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4176), + [aux_sym_enum_declaration_token1] = ACTIONS(4176), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4176), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4176), + [aux_sym_declare_function_statement_token1] = ACTIONS(4176), + [aux_sym_preprocessor_const_token1] = ACTIONS(4176), + [aux_sym__property_get_header_token1] = ACTIONS(4176), + [aux_sym_event_declaration_token1] = ACTIONS(4176), + [sym_static_modifier] = ACTIONS(4176), + [sym__dim_keyword] = ACTIONS(4176), + [sym__redim_keyword] = ACTIONS(4176), + [aux_sym_byval_modifier_token1] = ACTIONS(4040), + [aux_sym_get_accessor_token1] = ACTIONS(4176), + [aux_sym_set_accessor_token1] = ACTIONS(4176), + [anon_sym_COMMA] = ACTIONS(4168), + [aux_sym_const_declaration_token1] = ACTIONS(4176), + [anon_sym_LPAREN] = ACTIONS(4078), + [aux_sym_as_type_clause_token2] = ACTIONS(4046), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4048), + [aux_sym_visibility_token1] = ACTIONS(4176), + [aux_sym_visibility_token2] = ACTIONS(4176), + [aux_sym_elseif_fragment_token1] = ACTIONS(4176), + [aux_sym_else_fragment_token1] = ACTIONS(4176), + [aux_sym_select_statement_token1] = ACTIONS(4176), + [aux_sym__for_header_token1] = ACTIONS(4176), + [aux_sym_do_statement_token1] = ACTIONS(4176), + [aux_sym_do_condition_token1] = ACTIONS(4176), + [aux_sym_with_statement_token1] = ACTIONS(4176), + [aux_sym_exit_statement_token1] = ACTIONS(4176), + [sym_end_statement] = ACTIONS(4174), + [aux_sym_on_goto_statement_token1] = ACTIONS(4176), + [aux_sym_on_goto_statement_token2] = ACTIONS(4176), + [aux_sym_on_error_statement_token2] = ACTIONS(4176), + [sym__ambiguous_redim_statement] = ACTIONS(4174), + [aux_sym_erase_statement_token1] = ACTIONS(4176), + [aux_sym_open_statement_token1] = ACTIONS(4176), + [aux_sym_file_mode_token2] = ACTIONS(4176), + [aux_sym_file_access_token2] = ACTIONS(4176), + [aux_sym_file_lock_token2] = ACTIONS(4176), + [aux_sym_print_statement_token1] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_QMARK] = ACTIONS(4174), + [aux_sym_close_statement_token1] = ACTIONS(4176), + [aux_sym_put_statement_token1] = ACTIONS(4176), + [aux_sym_unlock_statement_token1] = ACTIONS(4176), + [aux_sym_seek_statement_token1] = ACTIONS(4176), + [sym_reset_statement] = ACTIONS(4176), + [aux_sym_raise_event_statement_token1] = ACTIONS(4176), + [sym_stop_statement] = ACTIONS(4176), + [sym_beep_statement] = ACTIONS(4176), + [aux_sym_unload_statement_token1] = ACTIONS(4176), + [aux_sym_def_type_statement_token1] = ACTIONS(4176), + [aux_sym_def_type_statement_token2] = ACTIONS(4176), + [aux_sym_def_type_statement_token3] = ACTIONS(4176), + [aux_sym_def_type_statement_token4] = ACTIONS(4176), + [aux_sym_def_type_statement_token5] = ACTIONS(4176), + [aux_sym_def_type_statement_token6] = ACTIONS(4176), + [aux_sym_def_type_statement_token7] = ACTIONS(4176), + [aux_sym_def_type_statement_token8] = ACTIONS(4176), + [aux_sym_def_type_statement_token9] = ACTIONS(4176), + [aux_sym_def_type_statement_token10] = ACTIONS(4176), + [aux_sym_def_type_statement_token11] = ACTIONS(4176), + [aux_sym_def_type_statement_token12] = ACTIONS(4176), + [aux_sym_def_type_statement_token13] = ACTIONS(4176), + [aux_sym_def_type_statement_token14] = ACTIONS(4176), + [aux_sym_call_statement_token1] = ACTIONS(4176), + [sym__ambiguous_call_statement] = ACTIONS(4176), + [aux_sym_addressof_expression_token1] = ACTIONS(4054), + [aux_sym_type_of_expression_token1] = ACTIONS(4056), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(4058), + [sym_number_literal] = ACTIONS(4058), + [aux_sym_boolean_literal_token1] = ACTIONS(4060), + [aux_sym_boolean_literal_token2] = ACTIONS(4060), + [sym_nothing_literal] = ACTIONS(4062), + [sym_null_literal] = ACTIONS(4062), + [sym_empty_literal] = ACTIONS(4062), + [sym_date_literal] = ACTIONS(4058), + [anon_sym_POUND] = ACTIONS(4064), + }, + [STATE(372)] = { + [sym__argument] = STATE(3739), + [sym_named_argument] = STATE(3739), + [sym_byval_argument] = STATE(3739), + [sym__primary_expression] = STATE(454), + [sym__expression] = STATE(1053), + [sym_comparison_expression] = STATE(2684), + [sym__comparison_operand] = STATE(11297), + [sym_logical_value_expression] = STATE(2684), + [sym__callable_expression] = STATE(13215), + [sym_call_expression] = STATE(380), + [sym_new_expression] = STATE(454), + [sym_addressof_expression] = STATE(454), + [sym_type_of_expression] = STATE(454), + [sym_member_expression] = STATE(453), + [sym_qualified_member_expression] = STATE(424), + [sym_implicit_member_expression] = STATE(424), + [sym_parenthesized_expression] = STATE(454), + [sym_binary_expression] = STATE(454), + [sym_unary_expression] = STATE(1053), + [sym__signed_unary_expression] = STATE(456), + [sym__literal] = STATE(454), + [sym_boolean_literal] = STATE(454), + [sym_file_number_literal] = STATE(454), + [sym_identifier] = ACTIONS(4178), + [sym_newline] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4181), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4183), + [aux_sym_frm_property_statement_token1] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4188), + [anon_sym_BANG] = ACTIONS(4191), + [aux_sym__attribute_identifier_token1] = ACTIONS(4183), + [aux_sym_option_statement_token3] = ACTIONS(4183), + [aux_sym_type_declaration_token1] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4183), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4183), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4183), + [aux_sym_enum_declaration_token1] = ACTIONS(4183), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4183), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4183), + [aux_sym_declare_function_statement_token1] = ACTIONS(4183), + [aux_sym_preprocessor_const_token1] = ACTIONS(4183), + [aux_sym__property_get_header_token1] = ACTIONS(4183), + [aux_sym_event_declaration_token1] = ACTIONS(4183), + [sym_static_modifier] = ACTIONS(4183), + [sym__dim_keyword] = ACTIONS(4183), + [sym__redim_keyword] = ACTIONS(4183), + [aux_sym_byval_modifier_token1] = ACTIONS(4040), + [aux_sym_get_accessor_token1] = ACTIONS(4183), + [aux_sym_set_accessor_token1] = ACTIONS(4183), + [anon_sym_COMMA] = ACTIONS(4181), + [aux_sym_const_declaration_token1] = ACTIONS(4183), + [anon_sym_LPAREN] = ACTIONS(4194), + [aux_sym_as_type_clause_token2] = ACTIONS(4197), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4200), + [aux_sym_visibility_token1] = ACTIONS(4183), + [aux_sym_visibility_token2] = ACTIONS(4183), + [aux_sym_elseif_fragment_token1] = ACTIONS(4183), + [aux_sym_else_fragment_token1] = ACTIONS(4183), + [aux_sym_select_statement_token1] = ACTIONS(4183), + [aux_sym__for_header_token1] = ACTIONS(4183), + [aux_sym_do_statement_token1] = ACTIONS(4183), + [aux_sym_do_condition_token1] = ACTIONS(4183), + [aux_sym_with_statement_token1] = ACTIONS(4183), + [aux_sym_exit_statement_token1] = ACTIONS(4183), + [sym_end_statement] = ACTIONS(4181), + [aux_sym_on_goto_statement_token1] = ACTIONS(4183), + [aux_sym_on_goto_statement_token2] = ACTIONS(4183), + [aux_sym_on_error_statement_token2] = ACTIONS(4183), + [sym__ambiguous_redim_statement] = ACTIONS(4181), + [aux_sym_erase_statement_token1] = ACTIONS(4183), + [aux_sym_open_statement_token1] = ACTIONS(4183), + [aux_sym_file_mode_token2] = ACTIONS(4183), + [aux_sym_file_access_token2] = ACTIONS(4183), + [aux_sym_file_lock_token2] = ACTIONS(4183), + [aux_sym_print_statement_token1] = ACTIONS(4183), + [anon_sym_PLUS] = ACTIONS(4203), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_QMARK] = ACTIONS(4181), + [aux_sym_close_statement_token1] = ACTIONS(4183), + [aux_sym_put_statement_token1] = ACTIONS(4183), + [aux_sym_unlock_statement_token1] = ACTIONS(4183), + [aux_sym_seek_statement_token1] = ACTIONS(4183), + [sym_reset_statement] = ACTIONS(4183), + [aux_sym_raise_event_statement_token1] = ACTIONS(4183), + [sym_stop_statement] = ACTIONS(4183), + [sym_beep_statement] = ACTIONS(4183), + [aux_sym_unload_statement_token1] = ACTIONS(4183), + [aux_sym_def_type_statement_token1] = ACTIONS(4183), + [aux_sym_def_type_statement_token2] = ACTIONS(4183), + [aux_sym_def_type_statement_token3] = ACTIONS(4183), + [aux_sym_def_type_statement_token4] = ACTIONS(4183), + [aux_sym_def_type_statement_token5] = ACTIONS(4183), + [aux_sym_def_type_statement_token6] = ACTIONS(4183), + [aux_sym_def_type_statement_token7] = ACTIONS(4183), + [aux_sym_def_type_statement_token8] = ACTIONS(4183), + [aux_sym_def_type_statement_token9] = ACTIONS(4183), + [aux_sym_def_type_statement_token10] = ACTIONS(4183), + [aux_sym_def_type_statement_token11] = ACTIONS(4183), + [aux_sym_def_type_statement_token12] = ACTIONS(4183), + [aux_sym_def_type_statement_token13] = ACTIONS(4183), + [aux_sym_def_type_statement_token14] = ACTIONS(4183), + [aux_sym_call_statement_token1] = ACTIONS(4183), + [sym__ambiguous_call_statement] = ACTIONS(4183), + [aux_sym_addressof_expression_token1] = ACTIONS(4209), + [aux_sym_type_of_expression_token1] = ACTIONS(4212), + [aux_sym_unary_expression_token1] = ACTIONS(4215), + [sym_string_literal] = ACTIONS(4218), + [sym_number_literal] = ACTIONS(4218), + [aux_sym_boolean_literal_token1] = ACTIONS(4221), + [aux_sym_boolean_literal_token2] = ACTIONS(4221), + [sym_nothing_literal] = ACTIONS(4224), + [sym_null_literal] = ACTIONS(4224), + [sym_empty_literal] = ACTIONS(4224), + [sym_date_literal] = ACTIONS(4218), + [anon_sym_POUND] = ACTIONS(4227), + }, + [STATE(373)] = { + [sym__argument] = STATE(4134), + [sym_named_argument] = STATE(4134), + [sym_byval_argument] = STATE(4134), + [sym__primary_expression] = STATE(580), + [sym__expression] = STATE(1951), + [sym_comparison_expression] = STATE(3689), + [sym__comparison_operand] = STATE(11254), + [sym_logical_value_expression] = STATE(3689), + [sym__callable_expression] = STATE(13651), + [sym_call_expression] = STATE(541), + [sym_new_expression] = STATE(580), + [sym_addressof_expression] = STATE(580), + [sym_type_of_expression] = STATE(580), + [sym_member_expression] = STATE(592), + [sym_qualified_member_expression] = STATE(632), + [sym_implicit_member_expression] = STATE(632), + [sym_parenthesized_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(1951), + [sym__signed_unary_expression] = STATE(581), + [sym__literal] = STATE(580), + [sym_boolean_literal] = STATE(580), + [sym_file_number_literal] = STATE(580), + [aux_sym__argument_sequence_repeat2] = STATE(4133), + [sym_identifier] = ACTIONS(4116), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4118), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(4122), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_declaration_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_enum_declaration_token1] = ACTIONS(4166), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4166), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4166), + [aux_sym_declare_function_statement_token1] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [aux_sym__property_get_header_token1] = ACTIONS(4166), + [aux_sym_event_declaration_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_byval_modifier_token1] = ACTIONS(4124), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4230), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4154), + [aux_sym_as_type_clause_token2] = ACTIONS(4130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4132), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4138), + [aux_sym_type_of_expression_token1] = ACTIONS(4140), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(4142), + [sym_number_literal] = ACTIONS(4142), + [aux_sym_boolean_literal_token1] = ACTIONS(4144), + [aux_sym_boolean_literal_token2] = ACTIONS(4144), + [sym_nothing_literal] = ACTIONS(4146), + [sym_null_literal] = ACTIONS(4146), + [sym_empty_literal] = ACTIONS(4146), + [sym_date_literal] = ACTIONS(4142), + [anon_sym_POUND] = ACTIONS(4148), + }, + [STATE(374)] = { + [sym__primary_expression] = STATE(10854), + [sym__expression] = STATE(10854), + [sym__callable_expression] = STATE(13480), + [sym_call_expression] = STATE(10052), + [sym_new_expression] = STATE(10854), + [sym_addressof_expression] = STATE(10854), + [sym_type_of_expression] = STATE(10854), + [sym_member_expression] = STATE(10054), + [sym_qualified_member_expression] = STATE(10049), + [sym_implicit_member_expression] = STATE(10049), + [sym_parenthesized_expression] = STATE(10854), + [sym_binary_expression] = STATE(10854), + [sym_unary_expression] = STATE(10854), + [sym__signed_unary_expression] = STATE(10078), + [sym__literal] = STATE(10854), + [sym_boolean_literal] = STATE(10854), + [sym_file_number_literal] = STATE(10854), + [sym_identifier] = ACTIONS(3984), + [sym_newline] = ACTIONS(3986), + [anon_sym_COLON] = ACTIONS(3986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3989), + [aux_sym_frm_property_statement_token1] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [aux_sym__attribute_identifier_token1] = ACTIONS(3989), + [aux_sym_option_statement_token3] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3989), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(3989), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(3989), + [aux_sym_preprocessor_const_token1] = ACTIONS(3989), + [sym_static_modifier] = ACTIONS(3989), + [sym__dim_keyword] = ACTIONS(3989), + [sym__redim_keyword] = ACTIONS(3989), + [aux_sym_byval_modifier_token1] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3989), + [aux_sym_set_accessor_token1] = ACTIONS(3989), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(3998), + [aux_sym_as_type_clause_token2] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4004), + [aux_sym_visibility_token1] = ACTIONS(3989), + [aux_sym_visibility_token2] = ACTIONS(3989), + [aux_sym_elseif_fragment_token1] = ACTIONS(3989), + [aux_sym_else_fragment_token1] = ACTIONS(3989), + [aux_sym_select_statement_token1] = ACTIONS(3989), + [aux_sym__for_header_token1] = ACTIONS(3989), + [aux_sym_do_statement_token1] = ACTIONS(3989), + [aux_sym_do_condition_token1] = ACTIONS(3989), + [aux_sym_with_statement_token1] = ACTIONS(3989), + [aux_sym_exit_statement_token1] = ACTIONS(3989), + [sym_end_statement] = ACTIONS(3986), + [aux_sym_on_goto_statement_token1] = ACTIONS(3989), + [aux_sym_on_goto_statement_token2] = ACTIONS(3989), + [aux_sym_on_error_statement_token2] = ACTIONS(3989), + [sym__ambiguous_redim_statement] = ACTIONS(3986), + [aux_sym_erase_statement_token1] = ACTIONS(3989), + [aux_sym_open_statement_token1] = ACTIONS(3989), + [aux_sym_file_mode_token2] = ACTIONS(3989), + [aux_sym_file_access_token2] = ACTIONS(3989), + [aux_sym_file_lock_token2] = ACTIONS(3989), + [aux_sym_print_statement_token1] = ACTIONS(3989), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(3986), + [aux_sym_close_statement_token1] = ACTIONS(3989), + [aux_sym_put_statement_token1] = ACTIONS(3989), + [aux_sym_unlock_statement_token1] = ACTIONS(3989), + [aux_sym_seek_statement_token1] = ACTIONS(3989), + [sym_reset_statement] = ACTIONS(3989), + [aux_sym_raise_event_statement_token1] = ACTIONS(3989), + [sym_stop_statement] = ACTIONS(3989), + [sym_beep_statement] = ACTIONS(3989), + [aux_sym_unload_statement_token1] = ACTIONS(3989), + [aux_sym_def_type_statement_token1] = ACTIONS(3989), + [aux_sym_def_type_statement_token2] = ACTIONS(3989), + [aux_sym_def_type_statement_token3] = ACTIONS(3989), + [aux_sym_def_type_statement_token4] = ACTIONS(3989), + [aux_sym_def_type_statement_token5] = ACTIONS(3989), + [aux_sym_def_type_statement_token6] = ACTIONS(3989), + [aux_sym_def_type_statement_token7] = ACTIONS(3989), + [aux_sym_def_type_statement_token8] = ACTIONS(3989), + [aux_sym_def_type_statement_token9] = ACTIONS(3989), + [aux_sym_def_type_statement_token10] = ACTIONS(3989), + [aux_sym_def_type_statement_token11] = ACTIONS(3989), + [aux_sym_def_type_statement_token12] = ACTIONS(3989), + [aux_sym_def_type_statement_token13] = ACTIONS(3989), + [aux_sym_def_type_statement_token14] = ACTIONS(3989), + [aux_sym_call_statement_token1] = ACTIONS(3989), + [sym__ambiguous_call_statement] = ACTIONS(3989), + [aux_sym_addressof_expression_token1] = ACTIONS(4012), + [aux_sym_type_of_expression_token1] = ACTIONS(4014), + [aux_sym_unary_expression_token1] = ACTIONS(4016), + [sym_string_literal] = ACTIONS(4232), + [sym_number_literal] = ACTIONS(4232), + [aux_sym_boolean_literal_token1] = ACTIONS(4020), + [aux_sym_boolean_literal_token2] = ACTIONS(4020), + [sym_nothing_literal] = ACTIONS(4234), + [sym_null_literal] = ACTIONS(4234), + [sym_empty_literal] = ACTIONS(4234), + [sym_date_literal] = ACTIONS(4232), + [anon_sym_POUND] = ACTIONS(4024), + }, + [STATE(375)] = { + [sym__argument] = STATE(4057), + [sym_named_argument] = STATE(4057), + [sym_byval_argument] = STATE(4057), + [sym__primary_expression] = STATE(580), + [sym__expression] = STATE(1951), + [sym_comparison_expression] = STATE(3689), + [sym__comparison_operand] = STATE(11254), + [sym_logical_value_expression] = STATE(3689), + [sym__callable_expression] = STATE(13651), + [sym_call_expression] = STATE(541), + [sym_new_expression] = STATE(580), + [sym_addressof_expression] = STATE(580), + [sym_type_of_expression] = STATE(580), + [sym_member_expression] = STATE(592), + [sym_qualified_member_expression] = STATE(632), + [sym_implicit_member_expression] = STATE(632), + [sym_parenthesized_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(1951), + [sym__signed_unary_expression] = STATE(581), + [sym__literal] = STATE(580), + [sym_boolean_literal] = STATE(580), + [sym_file_number_literal] = STATE(580), + [aux_sym__argument_sequence_repeat2] = STATE(4058), + [sym_identifier] = ACTIONS(4116), + [sym_newline] = ACTIONS(4174), + [anon_sym_COLON] = ACTIONS(4174), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4176), + [aux_sym_frm_property_statement_token1] = ACTIONS(4118), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(4122), + [aux_sym__attribute_identifier_token1] = ACTIONS(4176), + [aux_sym_option_statement_token3] = ACTIONS(4176), + [aux_sym_type_declaration_token1] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4176), + [aux_sym_enum_declaration_token1] = ACTIONS(4176), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4176), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4176), + [aux_sym_declare_function_statement_token1] = ACTIONS(4176), + [aux_sym_preprocessor_const_token1] = ACTIONS(4176), + [aux_sym__property_get_header_token1] = ACTIONS(4176), + [aux_sym_event_declaration_token1] = ACTIONS(4176), + [sym_static_modifier] = ACTIONS(4176), + [sym__dim_keyword] = ACTIONS(4176), + [sym__redim_keyword] = ACTIONS(4176), + [aux_sym_byval_modifier_token1] = ACTIONS(4124), + [aux_sym_get_accessor_token1] = ACTIONS(4176), + [aux_sym_set_accessor_token1] = ACTIONS(4176), + [anon_sym_COMMA] = ACTIONS(4230), + [aux_sym_const_declaration_token1] = ACTIONS(4176), + [anon_sym_LPAREN] = ACTIONS(4154), + [aux_sym_as_type_clause_token2] = ACTIONS(4130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4132), + [aux_sym_visibility_token1] = ACTIONS(4176), + [aux_sym_visibility_token2] = ACTIONS(4176), + [aux_sym_elseif_fragment_token1] = ACTIONS(4176), + [aux_sym_else_fragment_token1] = ACTIONS(4176), + [aux_sym_select_statement_token1] = ACTIONS(4176), + [aux_sym__for_header_token1] = ACTIONS(4176), + [aux_sym_do_statement_token1] = ACTIONS(4176), + [aux_sym_do_condition_token1] = ACTIONS(4176), + [aux_sym_with_statement_token1] = ACTIONS(4176), + [aux_sym_exit_statement_token1] = ACTIONS(4176), + [sym_end_statement] = ACTIONS(4174), + [aux_sym_on_goto_statement_token1] = ACTIONS(4176), + [aux_sym_on_goto_statement_token2] = ACTIONS(4176), + [aux_sym_on_error_statement_token2] = ACTIONS(4176), + [sym__ambiguous_redim_statement] = ACTIONS(4174), + [aux_sym_erase_statement_token1] = ACTIONS(4176), + [aux_sym_open_statement_token1] = ACTIONS(4176), + [aux_sym_file_mode_token2] = ACTIONS(4176), + [aux_sym_file_access_token2] = ACTIONS(4176), + [aux_sym_file_lock_token2] = ACTIONS(4176), + [aux_sym_print_statement_token1] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4174), + [aux_sym_close_statement_token1] = ACTIONS(4176), + [aux_sym_put_statement_token1] = ACTIONS(4176), + [aux_sym_unlock_statement_token1] = ACTIONS(4176), + [aux_sym_seek_statement_token1] = ACTIONS(4176), + [sym_reset_statement] = ACTIONS(4176), + [aux_sym_raise_event_statement_token1] = ACTIONS(4176), + [sym_stop_statement] = ACTIONS(4176), + [sym_beep_statement] = ACTIONS(4176), + [aux_sym_unload_statement_token1] = ACTIONS(4176), + [aux_sym_def_type_statement_token1] = ACTIONS(4176), + [aux_sym_def_type_statement_token2] = ACTIONS(4176), + [aux_sym_def_type_statement_token3] = ACTIONS(4176), + [aux_sym_def_type_statement_token4] = ACTIONS(4176), + [aux_sym_def_type_statement_token5] = ACTIONS(4176), + [aux_sym_def_type_statement_token6] = ACTIONS(4176), + [aux_sym_def_type_statement_token7] = ACTIONS(4176), + [aux_sym_def_type_statement_token8] = ACTIONS(4176), + [aux_sym_def_type_statement_token9] = ACTIONS(4176), + [aux_sym_def_type_statement_token10] = ACTIONS(4176), + [aux_sym_def_type_statement_token11] = ACTIONS(4176), + [aux_sym_def_type_statement_token12] = ACTIONS(4176), + [aux_sym_def_type_statement_token13] = ACTIONS(4176), + [aux_sym_def_type_statement_token14] = ACTIONS(4176), + [aux_sym_call_statement_token1] = ACTIONS(4176), + [sym__ambiguous_call_statement] = ACTIONS(4176), + [aux_sym_addressof_expression_token1] = ACTIONS(4138), + [aux_sym_type_of_expression_token1] = ACTIONS(4140), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(4142), + [sym_number_literal] = ACTIONS(4142), + [aux_sym_boolean_literal_token1] = ACTIONS(4144), + [aux_sym_boolean_literal_token2] = ACTIONS(4144), + [sym_nothing_literal] = ACTIONS(4146), + [sym_null_literal] = ACTIONS(4146), + [sym_empty_literal] = ACTIONS(4146), + [sym_date_literal] = ACTIONS(4142), + [anon_sym_POUND] = ACTIONS(4148), + }, + [STATE(376)] = { + [sym__argument] = STATE(4118), + [sym_named_argument] = STATE(4118), + [sym_byval_argument] = STATE(4118), + [sym__primary_expression] = STATE(580), + [sym__expression] = STATE(1951), + [sym_comparison_expression] = STATE(3689), + [sym__comparison_operand] = STATE(11254), + [sym_logical_value_expression] = STATE(3689), + [sym__callable_expression] = STATE(13651), + [sym_call_expression] = STATE(541), + [sym_new_expression] = STATE(580), + [sym_addressof_expression] = STATE(580), + [sym_type_of_expression] = STATE(580), + [sym_member_expression] = STATE(592), + [sym_qualified_member_expression] = STATE(632), + [sym_implicit_member_expression] = STATE(632), + [sym_parenthesized_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(1951), + [sym__signed_unary_expression] = STATE(581), + [sym__literal] = STATE(580), + [sym_boolean_literal] = STATE(580), + [sym_file_number_literal] = STATE(580), + [aux_sym__argument_sequence_repeat2] = STATE(4119), + [sym_identifier] = ACTIONS(4116), + [sym_newline] = ACTIONS(4170), + [anon_sym_COLON] = ACTIONS(4170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4172), + [aux_sym_frm_property_statement_token1] = ACTIONS(4118), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(4122), + [aux_sym__attribute_identifier_token1] = ACTIONS(4172), + [aux_sym_option_statement_token3] = ACTIONS(4172), + [aux_sym_type_declaration_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4172), + [aux_sym_enum_declaration_token1] = ACTIONS(4172), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4172), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4172), + [aux_sym_declare_function_statement_token1] = ACTIONS(4172), + [aux_sym_preprocessor_const_token1] = ACTIONS(4172), + [aux_sym__property_get_header_token1] = ACTIONS(4172), + [aux_sym_event_declaration_token1] = ACTIONS(4172), + [sym_static_modifier] = ACTIONS(4172), + [sym__dim_keyword] = ACTIONS(4172), + [sym__redim_keyword] = ACTIONS(4172), + [aux_sym_byval_modifier_token1] = ACTIONS(4124), + [aux_sym_get_accessor_token1] = ACTIONS(4172), + [aux_sym_set_accessor_token1] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4230), + [aux_sym_const_declaration_token1] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4154), + [aux_sym_as_type_clause_token2] = ACTIONS(4130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4132), + [aux_sym_visibility_token1] = ACTIONS(4172), + [aux_sym_visibility_token2] = ACTIONS(4172), + [aux_sym_elseif_fragment_token1] = ACTIONS(4172), + [aux_sym_else_fragment_token1] = ACTIONS(4172), + [aux_sym_select_statement_token1] = ACTIONS(4172), + [aux_sym__for_header_token1] = ACTIONS(4172), + [aux_sym_do_statement_token1] = ACTIONS(4172), + [aux_sym_do_condition_token1] = ACTIONS(4172), + [aux_sym_with_statement_token1] = ACTIONS(4172), + [aux_sym_exit_statement_token1] = ACTIONS(4172), + [sym_end_statement] = ACTIONS(4170), + [aux_sym_on_goto_statement_token1] = ACTIONS(4172), + [aux_sym_on_goto_statement_token2] = ACTIONS(4172), + [aux_sym_on_error_statement_token2] = ACTIONS(4172), + [sym__ambiguous_redim_statement] = ACTIONS(4170), + [aux_sym_erase_statement_token1] = ACTIONS(4172), + [aux_sym_open_statement_token1] = ACTIONS(4172), + [aux_sym_file_mode_token2] = ACTIONS(4172), + [aux_sym_file_access_token2] = ACTIONS(4172), + [aux_sym_file_lock_token2] = ACTIONS(4172), + [aux_sym_print_statement_token1] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4170), + [aux_sym_close_statement_token1] = ACTIONS(4172), + [aux_sym_put_statement_token1] = ACTIONS(4172), + [aux_sym_unlock_statement_token1] = ACTIONS(4172), + [aux_sym_seek_statement_token1] = ACTIONS(4172), + [sym_reset_statement] = ACTIONS(4172), + [aux_sym_raise_event_statement_token1] = ACTIONS(4172), + [sym_stop_statement] = ACTIONS(4172), + [sym_beep_statement] = ACTIONS(4172), + [aux_sym_unload_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token2] = ACTIONS(4172), + [aux_sym_def_type_statement_token3] = ACTIONS(4172), + [aux_sym_def_type_statement_token4] = ACTIONS(4172), + [aux_sym_def_type_statement_token5] = ACTIONS(4172), + [aux_sym_def_type_statement_token6] = ACTIONS(4172), + [aux_sym_def_type_statement_token7] = ACTIONS(4172), + [aux_sym_def_type_statement_token8] = ACTIONS(4172), + [aux_sym_def_type_statement_token9] = ACTIONS(4172), + [aux_sym_def_type_statement_token10] = ACTIONS(4172), + [aux_sym_def_type_statement_token11] = ACTIONS(4172), + [aux_sym_def_type_statement_token12] = ACTIONS(4172), + [aux_sym_def_type_statement_token13] = ACTIONS(4172), + [aux_sym_def_type_statement_token14] = ACTIONS(4172), + [aux_sym_call_statement_token1] = ACTIONS(4172), + [sym__ambiguous_call_statement] = ACTIONS(4172), + [aux_sym_addressof_expression_token1] = ACTIONS(4138), + [aux_sym_type_of_expression_token1] = ACTIONS(4140), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(4142), + [sym_number_literal] = ACTIONS(4142), + [aux_sym_boolean_literal_token1] = ACTIONS(4144), + [aux_sym_boolean_literal_token2] = ACTIONS(4144), + [sym_nothing_literal] = ACTIONS(4146), + [sym_null_literal] = ACTIONS(4146), + [sym_empty_literal] = ACTIONS(4146), + [sym_date_literal] = ACTIONS(4142), + [anon_sym_POUND] = ACTIONS(4148), + }, + [STATE(377)] = { + [sym_argument_list] = STATE(991), + [sym_comparison_operator] = STATE(8534), + [sym_identifier] = ACTIONS(4236), + [sym_newline] = ACTIONS(4238), + [anon_sym_COLON] = ACTIONS(4238), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4236), + [aux_sym_frm_property_statement_token1] = ACTIONS(4236), + [anon_sym_EQ] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4244), + [aux_sym__attribute_identifier_token1] = ACTIONS(4236), + [aux_sym_option_statement_token3] = ACTIONS(4236), + [aux_sym_type_declaration_token1] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4236), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4236), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4236), + [aux_sym_enum_declaration_token1] = ACTIONS(4236), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4236), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4236), + [aux_sym_declare_function_statement_token1] = ACTIONS(4236), + [aux_sym_preprocessor_const_token1] = ACTIONS(4236), + [aux_sym__property_get_header_token1] = ACTIONS(4236), + [aux_sym_event_declaration_token1] = ACTIONS(4236), + [sym_static_modifier] = ACTIONS(4236), + [sym__dim_keyword] = ACTIONS(4236), + [sym__redim_keyword] = ACTIONS(4236), + [aux_sym_get_accessor_token1] = ACTIONS(4236), + [aux_sym_set_accessor_token1] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4238), + [aux_sym_const_declaration_token1] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(4246), + [aux_sym_as_type_clause_token2] = ACTIONS(4236), + [anon_sym_STAR] = ACTIONS(4248), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4236), + [aux_sym_visibility_token1] = ACTIONS(4236), + [aux_sym_visibility_token2] = ACTIONS(4236), + [aux_sym_elseif_fragment_token1] = ACTIONS(4236), + [aux_sym_else_fragment_token1] = ACTIONS(4236), + [aux_sym_select_statement_token1] = ACTIONS(4236), + [aux_sym_case_expression_token1] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_LT_GT] = ACTIONS(4240), + [aux_sym__for_header_token1] = ACTIONS(4236), + [aux_sym_do_statement_token1] = ACTIONS(4236), + [aux_sym_do_condition_token1] = ACTIONS(4236), + [aux_sym_with_statement_token1] = ACTIONS(4236), + [aux_sym_exit_statement_token1] = ACTIONS(4236), + [sym_end_statement] = ACTIONS(4238), + [aux_sym_on_goto_statement_token1] = ACTIONS(4236), + [aux_sym_on_goto_statement_token2] = ACTIONS(4236), + [aux_sym_on_error_statement_token2] = ACTIONS(4236), + [sym__ambiguous_redim_statement] = ACTIONS(4238), + [aux_sym_erase_statement_token1] = ACTIONS(4236), + [aux_sym_open_statement_token1] = ACTIONS(4236), + [aux_sym_file_mode_token2] = ACTIONS(4236), + [aux_sym_file_access_token2] = ACTIONS(4236), + [aux_sym_file_lock_token2] = ACTIONS(4236), + [aux_sym_print_statement_token1] = ACTIONS(4236), + [anon_sym_CARET] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_BSLASH] = ACTIONS(4248), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4252), + [anon_sym_SEMI] = ACTIONS(4238), + [anon_sym_QMARK] = ACTIONS(4238), + [aux_sym_close_statement_token1] = ACTIONS(4236), + [aux_sym_put_statement_token1] = ACTIONS(4236), + [aux_sym_unlock_statement_token1] = ACTIONS(4236), + [aux_sym_seek_statement_token1] = ACTIONS(4236), + [sym_reset_statement] = ACTIONS(4236), + [aux_sym_raise_event_statement_token1] = ACTIONS(4236), + [sym_stop_statement] = ACTIONS(4236), + [sym_beep_statement] = ACTIONS(4236), + [aux_sym_unload_statement_token1] = ACTIONS(4236), + [aux_sym_def_type_statement_token1] = ACTIONS(4236), + [aux_sym_def_type_statement_token2] = ACTIONS(4236), + [aux_sym_def_type_statement_token3] = ACTIONS(4236), + [aux_sym_def_type_statement_token4] = ACTIONS(4236), + [aux_sym_def_type_statement_token5] = ACTIONS(4236), + [aux_sym_def_type_statement_token6] = ACTIONS(4236), + [aux_sym_def_type_statement_token7] = ACTIONS(4236), + [aux_sym_def_type_statement_token8] = ACTIONS(4236), + [aux_sym_def_type_statement_token9] = ACTIONS(4236), + [aux_sym_def_type_statement_token10] = ACTIONS(4236), + [aux_sym_def_type_statement_token11] = ACTIONS(4236), + [aux_sym_def_type_statement_token12] = ACTIONS(4236), + [aux_sym_def_type_statement_token13] = ACTIONS(4236), + [aux_sym_def_type_statement_token14] = ACTIONS(4236), + [aux_sym_call_statement_token1] = ACTIONS(4236), + [sym__ambiguous_call_statement] = ACTIONS(4236), + [aux_sym_comparison_operator_token1] = ACTIONS(4250), + [aux_sym_addressof_expression_token1] = ACTIONS(4236), + [aux_sym_type_of_expression_token1] = ACTIONS(4236), + [aux_sym_unary_expression_token1] = ACTIONS(4236), + [sym_string_literal] = ACTIONS(4238), + [sym_number_literal] = ACTIONS(4238), + [aux_sym_boolean_literal_token1] = ACTIONS(4236), + [aux_sym_boolean_literal_token2] = ACTIONS(4236), + [sym_nothing_literal] = ACTIONS(4236), + [sym_null_literal] = ACTIONS(4236), + [sym_empty_literal] = ACTIONS(4236), + [sym_date_literal] = ACTIONS(4238), + [anon_sym_POUND] = ACTIONS(4236), + }, + [STATE(378)] = { + [sym_argument_list] = STATE(2461), + [sym_unparenthesized_argument_list] = STATE(5545), + [sym__unparenthesized_argument_sequence] = STATE(5546), + [sym__omitted_argument_sequence] = STATE(5546), + [sym__argument] = STATE(4602), + [sym_named_argument] = STATE(4602), + [sym_byval_argument] = STATE(4602), + [sym__primary_expression] = STATE(830), + [sym__expression] = STATE(2340), + [sym_comparison_expression] = STATE(4594), + [sym__comparison_operand] = STATE(11302), + [sym_logical_value_expression] = STATE(4594), + [sym__callable_expression] = STATE(13462), + [sym_call_expression] = STATE(777), + [sym_new_expression] = STATE(830), + [sym_addressof_expression] = STATE(830), + [sym_type_of_expression] = STATE(830), + [sym_member_expression] = STATE(814), + [sym_qualified_member_expression] = STATE(865), + [sym_implicit_member_expression] = STATE(865), + [sym_parenthesized_expression] = STATE(830), + [sym_binary_expression] = STATE(830), + [sym_unary_expression] = STATE(2340), + [sym__signed_unary_expression] = STATE(837), + [sym__literal] = STATE(830), + [sym_boolean_literal] = STATE(830), + [sym_file_number_literal] = STATE(830), + [sym_identifier] = ACTIONS(4260), + [sym_newline] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4030), + [aux_sym_frm_property_statement_token1] = ACTIONS(4262), + [anon_sym_EQ] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4266), + [aux_sym__attribute_identifier_token1] = ACTIONS(4030), + [aux_sym_option_statement_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4030), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4030), + [aux_sym_preprocessor_const_token1] = ACTIONS(4030), + [sym_static_modifier] = ACTIONS(4030), + [sym__dim_keyword] = ACTIONS(4030), + [sym__redim_keyword] = ACTIONS(4030), + [aux_sym_byval_modifier_token1] = ACTIONS(4268), + [aux_sym_get_accessor_token1] = ACTIONS(4030), + [aux_sym_set_accessor_token1] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4270), + [aux_sym_const_declaration_token1] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4272), + [aux_sym_as_type_clause_token2] = ACTIONS(4274), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4276), + [aux_sym_visibility_token1] = ACTIONS(4030), + [aux_sym_visibility_token2] = ACTIONS(4030), + [aux_sym_elseif_fragment_token1] = ACTIONS(4030), + [aux_sym_else_fragment_token1] = ACTIONS(4030), + [aux_sym_select_statement_token1] = ACTIONS(4030), + [aux_sym__for_header_token1] = ACTIONS(4030), + [aux_sym_do_statement_token1] = ACTIONS(4030), + [aux_sym_do_condition_token1] = ACTIONS(4030), + [aux_sym_with_statement_token1] = ACTIONS(4030), + [aux_sym_exit_statement_token1] = ACTIONS(4030), + [sym_end_statement] = ACTIONS(4028), + [aux_sym_on_goto_statement_token1] = ACTIONS(4030), + [aux_sym_on_goto_statement_token2] = ACTIONS(4030), + [aux_sym_on_error_statement_token2] = ACTIONS(4030), + [sym__ambiguous_redim_statement] = ACTIONS(4028), + [aux_sym_erase_statement_token1] = ACTIONS(4030), + [aux_sym_open_statement_token1] = ACTIONS(4030), + [aux_sym_file_mode_token2] = ACTIONS(4030), + [aux_sym_file_access_token2] = ACTIONS(4030), + [aux_sym_file_lock_token2] = ACTIONS(4030), + [aux_sym_print_statement_token1] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4028), + [aux_sym_close_statement_token1] = ACTIONS(4030), + [aux_sym_put_statement_token1] = ACTIONS(4030), + [aux_sym_unlock_statement_token1] = ACTIONS(4030), + [aux_sym_seek_statement_token1] = ACTIONS(4030), + [sym_reset_statement] = ACTIONS(4030), + [aux_sym_raise_event_statement_token1] = ACTIONS(4030), + [sym_stop_statement] = ACTIONS(4030), + [sym_beep_statement] = ACTIONS(4030), + [aux_sym_unload_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token2] = ACTIONS(4030), + [aux_sym_def_type_statement_token3] = ACTIONS(4030), + [aux_sym_def_type_statement_token4] = ACTIONS(4030), + [aux_sym_def_type_statement_token5] = ACTIONS(4030), + [aux_sym_def_type_statement_token6] = ACTIONS(4030), + [aux_sym_def_type_statement_token7] = ACTIONS(4030), + [aux_sym_def_type_statement_token8] = ACTIONS(4030), + [aux_sym_def_type_statement_token9] = ACTIONS(4030), + [aux_sym_def_type_statement_token10] = ACTIONS(4030), + [aux_sym_def_type_statement_token11] = ACTIONS(4030), + [aux_sym_def_type_statement_token12] = ACTIONS(4030), + [aux_sym_def_type_statement_token13] = ACTIONS(4030), + [aux_sym_def_type_statement_token14] = ACTIONS(4030), + [aux_sym_call_statement_token1] = ACTIONS(4030), + [sym__ambiguous_call_statement] = ACTIONS(4030), + [aux_sym_addressof_expression_token1] = ACTIONS(4282), + [aux_sym_type_of_expression_token1] = ACTIONS(4284), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(4286), + [sym_number_literal] = ACTIONS(4286), + [aux_sym_boolean_literal_token1] = ACTIONS(4288), + [aux_sym_boolean_literal_token2] = ACTIONS(4288), + [sym_nothing_literal] = ACTIONS(4290), + [sym_null_literal] = ACTIONS(4290), + [sym_empty_literal] = ACTIONS(4290), + [sym_date_literal] = ACTIONS(4286), + [anon_sym_POUND] = ACTIONS(4292), + }, + [STATE(379)] = { + [sym__argument] = STATE(4224), + [sym_named_argument] = STATE(4224), + [sym_byval_argument] = STATE(4224), + [sym__primary_expression] = STATE(580), + [sym__expression] = STATE(1951), + [sym_comparison_expression] = STATE(3689), + [sym__comparison_operand] = STATE(11254), + [sym_logical_value_expression] = STATE(3689), + [sym__callable_expression] = STATE(13651), + [sym_call_expression] = STATE(541), + [sym_new_expression] = STATE(580), + [sym_addressof_expression] = STATE(580), + [sym_type_of_expression] = STATE(580), + [sym_member_expression] = STATE(592), + [sym_qualified_member_expression] = STATE(632), + [sym_implicit_member_expression] = STATE(632), + [sym_parenthesized_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(1951), + [sym__signed_unary_expression] = STATE(581), + [sym__literal] = STATE(580), + [sym_boolean_literal] = STATE(580), + [sym_file_number_literal] = STATE(580), + [sym_identifier] = ACTIONS(4294), + [sym_newline] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4181), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4183), + [aux_sym_frm_property_statement_token1] = ACTIONS(4297), + [anon_sym_DOT] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4303), + [aux_sym__attribute_identifier_token1] = ACTIONS(4183), + [aux_sym_option_statement_token3] = ACTIONS(4183), + [aux_sym_type_declaration_token1] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4183), + [aux_sym_enum_declaration_token1] = ACTIONS(4183), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4183), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4183), + [aux_sym_declare_function_statement_token1] = ACTIONS(4183), + [aux_sym_preprocessor_const_token1] = ACTIONS(4183), + [aux_sym__property_get_header_token1] = ACTIONS(4183), + [aux_sym_event_declaration_token1] = ACTIONS(4183), + [sym_static_modifier] = ACTIONS(4183), + [sym__dim_keyword] = ACTIONS(4183), + [sym__redim_keyword] = ACTIONS(4183), + [aux_sym_byval_modifier_token1] = ACTIONS(4124), + [aux_sym_get_accessor_token1] = ACTIONS(4183), + [aux_sym_set_accessor_token1] = ACTIONS(4183), + [anon_sym_COMMA] = ACTIONS(4181), + [aux_sym_const_declaration_token1] = ACTIONS(4183), + [anon_sym_LPAREN] = ACTIONS(4306), + [aux_sym_as_type_clause_token2] = ACTIONS(4309), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4312), + [aux_sym_visibility_token1] = ACTIONS(4183), + [aux_sym_visibility_token2] = ACTIONS(4183), + [aux_sym_elseif_fragment_token1] = ACTIONS(4183), + [aux_sym_else_fragment_token1] = ACTIONS(4183), + [aux_sym_select_statement_token1] = ACTIONS(4183), + [aux_sym__for_header_token1] = ACTIONS(4183), + [aux_sym_do_statement_token1] = ACTIONS(4183), + [aux_sym_do_condition_token1] = ACTIONS(4183), + [aux_sym_with_statement_token1] = ACTIONS(4183), + [aux_sym_exit_statement_token1] = ACTIONS(4183), + [sym_end_statement] = ACTIONS(4181), + [aux_sym_on_goto_statement_token1] = ACTIONS(4183), + [aux_sym_on_goto_statement_token2] = ACTIONS(4183), + [aux_sym_on_error_statement_token2] = ACTIONS(4183), + [sym__ambiguous_redim_statement] = ACTIONS(4181), + [aux_sym_erase_statement_token1] = ACTIONS(4183), + [aux_sym_open_statement_token1] = ACTIONS(4183), + [aux_sym_file_mode_token2] = ACTIONS(4183), + [aux_sym_file_access_token2] = ACTIONS(4183), + [aux_sym_file_lock_token2] = ACTIONS(4183), + [aux_sym_print_statement_token1] = ACTIONS(4183), + [anon_sym_PLUS] = ACTIONS(4315), + [anon_sym_DASH] = ACTIONS(4318), + [anon_sym_QMARK] = ACTIONS(4181), + [aux_sym_close_statement_token1] = ACTIONS(4183), + [aux_sym_put_statement_token1] = ACTIONS(4183), + [aux_sym_unlock_statement_token1] = ACTIONS(4183), + [aux_sym_seek_statement_token1] = ACTIONS(4183), + [sym_reset_statement] = ACTIONS(4183), + [aux_sym_raise_event_statement_token1] = ACTIONS(4183), + [sym_stop_statement] = ACTIONS(4183), + [sym_beep_statement] = ACTIONS(4183), + [aux_sym_unload_statement_token1] = ACTIONS(4183), + [aux_sym_def_type_statement_token1] = ACTIONS(4183), + [aux_sym_def_type_statement_token2] = ACTIONS(4183), + [aux_sym_def_type_statement_token3] = ACTIONS(4183), + [aux_sym_def_type_statement_token4] = ACTIONS(4183), + [aux_sym_def_type_statement_token5] = ACTIONS(4183), + [aux_sym_def_type_statement_token6] = ACTIONS(4183), + [aux_sym_def_type_statement_token7] = ACTIONS(4183), + [aux_sym_def_type_statement_token8] = ACTIONS(4183), + [aux_sym_def_type_statement_token9] = ACTIONS(4183), + [aux_sym_def_type_statement_token10] = ACTIONS(4183), + [aux_sym_def_type_statement_token11] = ACTIONS(4183), + [aux_sym_def_type_statement_token12] = ACTIONS(4183), + [aux_sym_def_type_statement_token13] = ACTIONS(4183), + [aux_sym_def_type_statement_token14] = ACTIONS(4183), + [aux_sym_call_statement_token1] = ACTIONS(4183), + [sym__ambiguous_call_statement] = ACTIONS(4183), + [aux_sym_addressof_expression_token1] = ACTIONS(4321), + [aux_sym_type_of_expression_token1] = ACTIONS(4324), + [aux_sym_unary_expression_token1] = ACTIONS(4327), + [sym_string_literal] = ACTIONS(4330), + [sym_number_literal] = ACTIONS(4330), + [aux_sym_boolean_literal_token1] = ACTIONS(4333), + [aux_sym_boolean_literal_token2] = ACTIONS(4333), + [sym_nothing_literal] = ACTIONS(4336), + [sym_null_literal] = ACTIONS(4336), + [sym_empty_literal] = ACTIONS(4336), + [sym_date_literal] = ACTIONS(4330), + [anon_sym_POUND] = ACTIONS(4339), + }, + [STATE(380)] = { + [sym_argument_list] = STATE(417), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4350), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(381)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4006), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [anon_sym_COLON_EQ] = ACTIONS(4352), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(382)] = { + [sym__primary_expression] = STATE(10837), + [sym__expression] = STATE(10837), + [sym__callable_expression] = STATE(13480), + [sym_call_expression] = STATE(10052), + [sym_new_expression] = STATE(10837), + [sym_addressof_expression] = STATE(10837), + [sym_type_of_expression] = STATE(10837), + [sym_member_expression] = STATE(10054), + [sym_qualified_member_expression] = STATE(10049), + [sym_implicit_member_expression] = STATE(10049), + [sym_parenthesized_expression] = STATE(10837), + [sym_binary_expression] = STATE(10837), + [sym_unary_expression] = STATE(10837), + [sym__signed_unary_expression] = STATE(10078), + [sym__literal] = STATE(10837), + [sym_boolean_literal] = STATE(10837), + [sym_file_number_literal] = STATE(10837), + [sym_identifier] = ACTIONS(3984), + [sym_newline] = ACTIONS(3986), + [anon_sym_COLON] = ACTIONS(3986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3989), + [aux_sym_frm_property_statement_token1] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [aux_sym__attribute_identifier_token1] = ACTIONS(3989), + [aux_sym_option_statement_token3] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3989), + [aux_sym_preprocessor_const_token1] = ACTIONS(3989), + [sym_static_modifier] = ACTIONS(3989), + [sym__dim_keyword] = ACTIONS(3989), + [sym__redim_keyword] = ACTIONS(3989), + [aux_sym_byval_modifier_token1] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3989), + [aux_sym_set_accessor_token1] = ACTIONS(3989), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(3998), + [aux_sym_as_type_clause_token2] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4004), + [aux_sym_visibility_token1] = ACTIONS(3989), + [aux_sym_visibility_token2] = ACTIONS(3989), + [aux_sym_elseif_fragment_token1] = ACTIONS(3989), + [aux_sym_else_fragment_token1] = ACTIONS(3989), + [aux_sym_select_statement_token1] = ACTIONS(3989), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3989), + [aux_sym__for_header_token1] = ACTIONS(3989), + [aux_sym_do_statement_token1] = ACTIONS(3989), + [aux_sym_do_condition_token1] = ACTIONS(3989), + [aux_sym_with_statement_token1] = ACTIONS(3989), + [aux_sym_exit_statement_token1] = ACTIONS(3989), + [sym_end_statement] = ACTIONS(3986), + [aux_sym_on_goto_statement_token1] = ACTIONS(3989), + [aux_sym_on_goto_statement_token2] = ACTIONS(3989), + [aux_sym_on_error_statement_token2] = ACTIONS(3989), + [sym__ambiguous_redim_statement] = ACTIONS(3986), + [aux_sym_erase_statement_token1] = ACTIONS(3989), + [aux_sym_open_statement_token1] = ACTIONS(3989), + [aux_sym_file_mode_token2] = ACTIONS(3989), + [aux_sym_file_access_token2] = ACTIONS(3989), + [aux_sym_file_lock_token2] = ACTIONS(3989), + [aux_sym_print_statement_token1] = ACTIONS(3989), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(3986), + [aux_sym_close_statement_token1] = ACTIONS(3989), + [aux_sym_put_statement_token1] = ACTIONS(3989), + [aux_sym_unlock_statement_token1] = ACTIONS(3989), + [aux_sym_seek_statement_token1] = ACTIONS(3989), + [sym_reset_statement] = ACTIONS(3989), + [aux_sym_raise_event_statement_token1] = ACTIONS(3989), + [sym_stop_statement] = ACTIONS(3989), + [sym_beep_statement] = ACTIONS(3989), + [aux_sym_unload_statement_token1] = ACTIONS(3989), + [aux_sym_def_type_statement_token1] = ACTIONS(3989), + [aux_sym_def_type_statement_token2] = ACTIONS(3989), + [aux_sym_def_type_statement_token3] = ACTIONS(3989), + [aux_sym_def_type_statement_token4] = ACTIONS(3989), + [aux_sym_def_type_statement_token5] = ACTIONS(3989), + [aux_sym_def_type_statement_token6] = ACTIONS(3989), + [aux_sym_def_type_statement_token7] = ACTIONS(3989), + [aux_sym_def_type_statement_token8] = ACTIONS(3989), + [aux_sym_def_type_statement_token9] = ACTIONS(3989), + [aux_sym_def_type_statement_token10] = ACTIONS(3989), + [aux_sym_def_type_statement_token11] = ACTIONS(3989), + [aux_sym_def_type_statement_token12] = ACTIONS(3989), + [aux_sym_def_type_statement_token13] = ACTIONS(3989), + [aux_sym_def_type_statement_token14] = ACTIONS(3989), + [aux_sym_call_statement_token1] = ACTIONS(3989), + [sym__ambiguous_call_statement] = ACTIONS(3989), + [aux_sym_addressof_expression_token1] = ACTIONS(4012), + [aux_sym_type_of_expression_token1] = ACTIONS(4014), + [aux_sym_unary_expression_token1] = ACTIONS(4016), + [sym_string_literal] = ACTIONS(4354), + [sym_number_literal] = ACTIONS(4354), + [aux_sym_boolean_literal_token1] = ACTIONS(4020), + [aux_sym_boolean_literal_token2] = ACTIONS(4020), + [sym_nothing_literal] = ACTIONS(4356), + [sym_null_literal] = ACTIONS(4356), + [sym_empty_literal] = ACTIONS(4356), + [sym_date_literal] = ACTIONS(4354), + [anon_sym_POUND] = ACTIONS(4024), + }, + [STATE(383)] = { + [sym__primary_expression] = STATE(10858), + [sym__expression] = STATE(10858), + [sym__callable_expression] = STATE(13480), + [sym_call_expression] = STATE(10052), + [sym_new_expression] = STATE(10858), + [sym_addressof_expression] = STATE(10858), + [sym_type_of_expression] = STATE(10858), + [sym_member_expression] = STATE(10054), + [sym_qualified_member_expression] = STATE(10049), + [sym_implicit_member_expression] = STATE(10049), + [sym_parenthesized_expression] = STATE(10858), + [sym_binary_expression] = STATE(10858), + [sym_unary_expression] = STATE(10858), + [sym__signed_unary_expression] = STATE(10078), + [sym__literal] = STATE(10858), + [sym_boolean_literal] = STATE(10858), + [sym_file_number_literal] = STATE(10858), + [sym_identifier] = ACTIONS(3984), + [sym_newline] = ACTIONS(3986), + [anon_sym_COLON] = ACTIONS(3986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3989), + [aux_sym_frm_property_statement_token1] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [aux_sym__attribute_identifier_token1] = ACTIONS(3989), + [aux_sym_option_statement_token3] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3989), + [aux_sym_preprocessor_const_token1] = ACTIONS(3989), + [sym_static_modifier] = ACTIONS(3989), + [sym__dim_keyword] = ACTIONS(3989), + [sym__redim_keyword] = ACTIONS(3989), + [aux_sym_byval_modifier_token1] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3989), + [aux_sym_set_accessor_token1] = ACTIONS(3989), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(3998), + [aux_sym_as_type_clause_token2] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4004), + [aux_sym_visibility_token1] = ACTIONS(3989), + [aux_sym_visibility_token2] = ACTIONS(3989), + [aux_sym_elseif_fragment_token1] = ACTIONS(3989), + [aux_sym_else_fragment_token1] = ACTIONS(3989), + [aux_sym_select_statement_token1] = ACTIONS(3989), + [aux_sym_select_statement_token2] = ACTIONS(3989), + [aux_sym__for_header_token1] = ACTIONS(3989), + [aux_sym_do_statement_token1] = ACTIONS(3989), + [aux_sym_do_condition_token1] = ACTIONS(3989), + [aux_sym_with_statement_token1] = ACTIONS(3989), + [aux_sym_exit_statement_token1] = ACTIONS(3989), + [sym_end_statement] = ACTIONS(3986), + [aux_sym_on_goto_statement_token1] = ACTIONS(3989), + [aux_sym_on_goto_statement_token2] = ACTIONS(3989), + [aux_sym_on_error_statement_token2] = ACTIONS(3989), + [sym__ambiguous_redim_statement] = ACTIONS(3986), + [aux_sym_erase_statement_token1] = ACTIONS(3989), + [aux_sym_open_statement_token1] = ACTIONS(3989), + [aux_sym_file_mode_token2] = ACTIONS(3989), + [aux_sym_file_access_token2] = ACTIONS(3989), + [aux_sym_file_lock_token2] = ACTIONS(3989), + [aux_sym_print_statement_token1] = ACTIONS(3989), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(3986), + [aux_sym_close_statement_token1] = ACTIONS(3989), + [aux_sym_put_statement_token1] = ACTIONS(3989), + [aux_sym_unlock_statement_token1] = ACTIONS(3989), + [aux_sym_seek_statement_token1] = ACTIONS(3989), + [sym_reset_statement] = ACTIONS(3989), + [aux_sym_raise_event_statement_token1] = ACTIONS(3989), + [sym_stop_statement] = ACTIONS(3989), + [sym_beep_statement] = ACTIONS(3989), + [aux_sym_unload_statement_token1] = ACTIONS(3989), + [aux_sym_def_type_statement_token1] = ACTIONS(3989), + [aux_sym_def_type_statement_token2] = ACTIONS(3989), + [aux_sym_def_type_statement_token3] = ACTIONS(3989), + [aux_sym_def_type_statement_token4] = ACTIONS(3989), + [aux_sym_def_type_statement_token5] = ACTIONS(3989), + [aux_sym_def_type_statement_token6] = ACTIONS(3989), + [aux_sym_def_type_statement_token7] = ACTIONS(3989), + [aux_sym_def_type_statement_token8] = ACTIONS(3989), + [aux_sym_def_type_statement_token9] = ACTIONS(3989), + [aux_sym_def_type_statement_token10] = ACTIONS(3989), + [aux_sym_def_type_statement_token11] = ACTIONS(3989), + [aux_sym_def_type_statement_token12] = ACTIONS(3989), + [aux_sym_def_type_statement_token13] = ACTIONS(3989), + [aux_sym_def_type_statement_token14] = ACTIONS(3989), + [aux_sym_call_statement_token1] = ACTIONS(3989), + [sym__ambiguous_call_statement] = ACTIONS(3989), + [aux_sym_addressof_expression_token1] = ACTIONS(4012), + [aux_sym_type_of_expression_token1] = ACTIONS(4014), + [aux_sym_unary_expression_token1] = ACTIONS(4016), + [sym_string_literal] = ACTIONS(4358), + [sym_number_literal] = ACTIONS(4358), + [aux_sym_boolean_literal_token1] = ACTIONS(4020), + [aux_sym_boolean_literal_token2] = ACTIONS(4020), + [sym_nothing_literal] = ACTIONS(4360), + [sym_null_literal] = ACTIONS(4360), + [sym_empty_literal] = ACTIONS(4360), + [sym_date_literal] = ACTIONS(4358), + [anon_sym_POUND] = ACTIONS(4024), + }, + [STATE(384)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(384), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4366), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(385)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(386), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(386)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(384), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_declaration_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4375), + [aux_sym_enum_declaration_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4375), + [aux_sym_declare_function_statement_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [aux_sym__property_get_header_token1] = ACTIONS(4375), + [aux_sym_event_declaration_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(387)] = { + [sym_output_list] = STATE(5608), + [sym__print_output_expression] = STATE(4599), + [sym__unparenthesized_print_output_expression] = STATE(4599), + [sym__print_output_call_binary_expression] = STATE(4599), + [sym__print_output_call_operand] = STATE(10996), + [sym__print_output_member_comparison_expression] = STATE(4793), + [sym__print_output_call_member_expression] = STATE(761), + [sym__print_output_call_expression] = STATE(2297), + [sym__print_output_qualified_callable] = STATE(13144), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10997), + [sym_comparison_expression] = STATE(4600), + [sym__comparison_operand] = STATE(11302), + [sym_logical_value_expression] = STATE(4601), + [sym__callable_expression] = STATE(13147), + [sym_call_expression] = STATE(10292), + [sym_new_expression] = STATE(861), + [sym_addressof_expression] = STATE(861), + [sym_type_of_expression] = STATE(861), + [sym_member_expression] = STATE(862), + [sym_qualified_member_expression] = STATE(865), + [sym_implicit_member_expression] = STATE(865), + [sym_parenthesized_expression] = STATE(863), + [sym_binary_expression] = STATE(864), + [sym_unary_expression] = STATE(2300), + [sym__signed_unary_expression] = STATE(837), + [sym__literal] = STATE(861), + [sym_boolean_literal] = STATE(861), + [sym_file_number_literal] = STATE(861), + [sym_identifier] = ACTIONS(4379), + [sym_newline] = ACTIONS(4086), + [anon_sym_COLON] = ACTIONS(4086), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4088), + [aux_sym_frm_property_statement_token1] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4266), + [aux_sym__attribute_identifier_token1] = ACTIONS(4088), + [aux_sym_option_statement_token3] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4088), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4088), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4088), + [aux_sym_preprocessor_const_token1] = ACTIONS(4088), + [sym_static_modifier] = ACTIONS(4088), + [sym__dim_keyword] = ACTIONS(4088), + [sym__redim_keyword] = ACTIONS(4088), + [aux_sym_get_accessor_token1] = ACTIONS(4088), + [aux_sym_set_accessor_token1] = ACTIONS(4088), + [aux_sym_const_declaration_token1] = ACTIONS(4088), + [anon_sym_LPAREN] = ACTIONS(4383), + [aux_sym_as_type_clause_token2] = ACTIONS(4274), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4385), + [aux_sym_visibility_token1] = ACTIONS(4088), + [aux_sym_visibility_token2] = ACTIONS(4088), + [aux_sym_elseif_fragment_token1] = ACTIONS(4088), + [aux_sym_else_fragment_token1] = ACTIONS(4088), + [aux_sym_select_statement_token1] = ACTIONS(4088), + [aux_sym__for_header_token1] = ACTIONS(4088), + [aux_sym_do_statement_token1] = ACTIONS(4088), + [aux_sym_do_condition_token1] = ACTIONS(4088), + [aux_sym_with_statement_token1] = ACTIONS(4088), + [aux_sym_exit_statement_token1] = ACTIONS(4088), + [sym_end_statement] = ACTIONS(4086), + [aux_sym_on_goto_statement_token1] = ACTIONS(4088), + [aux_sym_on_goto_statement_token2] = ACTIONS(4088), + [aux_sym_on_error_statement_token2] = ACTIONS(4088), + [sym__ambiguous_redim_statement] = ACTIONS(4086), + [aux_sym_erase_statement_token1] = ACTIONS(4088), + [aux_sym_open_statement_token1] = ACTIONS(4088), + [aux_sym_file_mode_token2] = ACTIONS(4088), + [aux_sym_file_access_token2] = ACTIONS(4088), + [aux_sym_file_lock_token2] = ACTIONS(4088), + [aux_sym_print_statement_token1] = ACTIONS(4088), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4086), + [aux_sym_close_statement_token1] = ACTIONS(4088), + [aux_sym_put_statement_token1] = ACTIONS(4088), + [aux_sym_unlock_statement_token1] = ACTIONS(4088), + [aux_sym_seek_statement_token1] = ACTIONS(4088), + [sym_reset_statement] = ACTIONS(4088), + [aux_sym_raise_event_statement_token1] = ACTIONS(4088), + [sym_stop_statement] = ACTIONS(4088), + [sym_beep_statement] = ACTIONS(4088), + [aux_sym_unload_statement_token1] = ACTIONS(4088), + [aux_sym_def_type_statement_token1] = ACTIONS(4088), + [aux_sym_def_type_statement_token2] = ACTIONS(4088), + [aux_sym_def_type_statement_token3] = ACTIONS(4088), + [aux_sym_def_type_statement_token4] = ACTIONS(4088), + [aux_sym_def_type_statement_token5] = ACTIONS(4088), + [aux_sym_def_type_statement_token6] = ACTIONS(4088), + [aux_sym_def_type_statement_token7] = ACTIONS(4088), + [aux_sym_def_type_statement_token8] = ACTIONS(4088), + [aux_sym_def_type_statement_token9] = ACTIONS(4088), + [aux_sym_def_type_statement_token10] = ACTIONS(4088), + [aux_sym_def_type_statement_token11] = ACTIONS(4088), + [aux_sym_def_type_statement_token12] = ACTIONS(4088), + [aux_sym_def_type_statement_token13] = ACTIONS(4088), + [aux_sym_def_type_statement_token14] = ACTIONS(4088), + [aux_sym_call_statement_token1] = ACTIONS(4088), + [sym__ambiguous_call_statement] = ACTIONS(4088), + [aux_sym_addressof_expression_token1] = ACTIONS(4282), + [aux_sym_type_of_expression_token1] = ACTIONS(4284), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(4387), + [sym_number_literal] = ACTIONS(4387), + [aux_sym_boolean_literal_token1] = ACTIONS(4288), + [aux_sym_boolean_literal_token2] = ACTIONS(4288), + [sym_nothing_literal] = ACTIONS(4389), + [sym_null_literal] = ACTIONS(4389), + [sym_empty_literal] = ACTIONS(4389), + [sym_date_literal] = ACTIONS(4387), + [anon_sym_POUND] = ACTIONS(4292), + }, + [STATE(388)] = { + [sym__primary_expression] = STATE(10821), + [sym__expression] = STATE(10821), + [sym__callable_expression] = STATE(13480), + [sym_call_expression] = STATE(10052), + [sym_new_expression] = STATE(10821), + [sym_addressof_expression] = STATE(10821), + [sym_type_of_expression] = STATE(10821), + [sym_member_expression] = STATE(10054), + [sym_qualified_member_expression] = STATE(10049), + [sym_implicit_member_expression] = STATE(10049), + [sym_parenthesized_expression] = STATE(10821), + [sym_binary_expression] = STATE(10821), + [sym_unary_expression] = STATE(10821), + [sym__signed_unary_expression] = STATE(10078), + [sym__literal] = STATE(10821), + [sym_boolean_literal] = STATE(10821), + [sym_file_number_literal] = STATE(10821), + [sym_identifier] = ACTIONS(3984), + [sym_newline] = ACTIONS(3986), + [anon_sym_COLON] = ACTIONS(3986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3989), + [aux_sym_frm_property_statement_token1] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [aux_sym__attribute_identifier_token1] = ACTIONS(3989), + [aux_sym_option_statement_token3] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3989), + [aux_sym_preprocessor_const_token1] = ACTIONS(3989), + [sym_static_modifier] = ACTIONS(3989), + [sym__dim_keyword] = ACTIONS(3989), + [sym__redim_keyword] = ACTIONS(3989), + [aux_sym_byval_modifier_token1] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3989), + [aux_sym_set_accessor_token1] = ACTIONS(3989), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(3998), + [aux_sym_as_type_clause_token2] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4004), + [aux_sym_visibility_token1] = ACTIONS(3989), + [aux_sym_visibility_token2] = ACTIONS(3989), + [aux_sym_elseif_fragment_token1] = ACTIONS(3989), + [aux_sym_else_fragment_token1] = ACTIONS(3989), + [aux_sym_select_statement_token1] = ACTIONS(3989), + [aux_sym__for_header_token1] = ACTIONS(3989), + [aux_sym_do_statement_token1] = ACTIONS(3989), + [aux_sym_do_statement_token2] = ACTIONS(3989), + [aux_sym_do_condition_token1] = ACTIONS(3989), + [aux_sym_with_statement_token1] = ACTIONS(3989), + [aux_sym_exit_statement_token1] = ACTIONS(3989), + [sym_end_statement] = ACTIONS(3986), + [aux_sym_on_goto_statement_token1] = ACTIONS(3989), + [aux_sym_on_goto_statement_token2] = ACTIONS(3989), + [aux_sym_on_error_statement_token2] = ACTIONS(3989), + [sym__ambiguous_redim_statement] = ACTIONS(3986), + [aux_sym_erase_statement_token1] = ACTIONS(3989), + [aux_sym_open_statement_token1] = ACTIONS(3989), + [aux_sym_file_mode_token2] = ACTIONS(3989), + [aux_sym_file_access_token2] = ACTIONS(3989), + [aux_sym_file_lock_token2] = ACTIONS(3989), + [aux_sym_print_statement_token1] = ACTIONS(3989), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(3986), + [aux_sym_close_statement_token1] = ACTIONS(3989), + [aux_sym_put_statement_token1] = ACTIONS(3989), + [aux_sym_unlock_statement_token1] = ACTIONS(3989), + [aux_sym_seek_statement_token1] = ACTIONS(3989), + [sym_reset_statement] = ACTIONS(3989), + [aux_sym_raise_event_statement_token1] = ACTIONS(3989), + [sym_stop_statement] = ACTIONS(3989), + [sym_beep_statement] = ACTIONS(3989), + [aux_sym_unload_statement_token1] = ACTIONS(3989), + [aux_sym_def_type_statement_token1] = ACTIONS(3989), + [aux_sym_def_type_statement_token2] = ACTIONS(3989), + [aux_sym_def_type_statement_token3] = ACTIONS(3989), + [aux_sym_def_type_statement_token4] = ACTIONS(3989), + [aux_sym_def_type_statement_token5] = ACTIONS(3989), + [aux_sym_def_type_statement_token6] = ACTIONS(3989), + [aux_sym_def_type_statement_token7] = ACTIONS(3989), + [aux_sym_def_type_statement_token8] = ACTIONS(3989), + [aux_sym_def_type_statement_token9] = ACTIONS(3989), + [aux_sym_def_type_statement_token10] = ACTIONS(3989), + [aux_sym_def_type_statement_token11] = ACTIONS(3989), + [aux_sym_def_type_statement_token12] = ACTIONS(3989), + [aux_sym_def_type_statement_token13] = ACTIONS(3989), + [aux_sym_def_type_statement_token14] = ACTIONS(3989), + [aux_sym_call_statement_token1] = ACTIONS(3989), + [sym__ambiguous_call_statement] = ACTIONS(3989), + [aux_sym_addressof_expression_token1] = ACTIONS(4012), + [aux_sym_type_of_expression_token1] = ACTIONS(4014), + [aux_sym_unary_expression_token1] = ACTIONS(4016), + [sym_string_literal] = ACTIONS(4391), + [sym_number_literal] = ACTIONS(4391), + [aux_sym_boolean_literal_token1] = ACTIONS(4020), + [aux_sym_boolean_literal_token2] = ACTIONS(4020), + [sym_nothing_literal] = ACTIONS(4393), + [sym_null_literal] = ACTIONS(4393), + [sym_empty_literal] = ACTIONS(4393), + [sym_date_literal] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4024), + }, + [STATE(389)] = { + [sym_output_list] = STATE(5610), + [sym__print_output_expression] = STATE(4599), + [sym__unparenthesized_print_output_expression] = STATE(4599), + [sym__print_output_call_binary_expression] = STATE(4599), + [sym__print_output_call_operand] = STATE(10996), + [sym__print_output_member_comparison_expression] = STATE(4793), + [sym__print_output_call_member_expression] = STATE(761), + [sym__print_output_call_expression] = STATE(2297), + [sym__print_output_qualified_callable] = STATE(13144), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10997), + [sym_comparison_expression] = STATE(4600), + [sym__comparison_operand] = STATE(11302), + [sym_logical_value_expression] = STATE(4601), + [sym__callable_expression] = STATE(13147), + [sym_call_expression] = STATE(10292), + [sym_new_expression] = STATE(861), + [sym_addressof_expression] = STATE(861), + [sym_type_of_expression] = STATE(861), + [sym_member_expression] = STATE(862), + [sym_qualified_member_expression] = STATE(865), + [sym_implicit_member_expression] = STATE(865), + [sym_parenthesized_expression] = STATE(863), + [sym_binary_expression] = STATE(864), + [sym_unary_expression] = STATE(2300), + [sym__signed_unary_expression] = STATE(837), + [sym__literal] = STATE(861), + [sym_boolean_literal] = STATE(861), + [sym_file_number_literal] = STATE(861), + [sym_identifier] = ACTIONS(4379), + [sym_newline] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4092), + [aux_sym_frm_property_statement_token1] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4266), + [aux_sym__attribute_identifier_token1] = ACTIONS(4092), + [aux_sym_option_statement_token3] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4092), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4092), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4092), + [aux_sym_preprocessor_const_token1] = ACTIONS(4092), + [sym_static_modifier] = ACTIONS(4092), + [sym__dim_keyword] = ACTIONS(4092), + [sym__redim_keyword] = ACTIONS(4092), + [aux_sym_get_accessor_token1] = ACTIONS(4092), + [aux_sym_set_accessor_token1] = ACTIONS(4092), + [aux_sym_const_declaration_token1] = ACTIONS(4092), + [anon_sym_LPAREN] = ACTIONS(4383), + [aux_sym_as_type_clause_token2] = ACTIONS(4274), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4385), + [aux_sym_visibility_token1] = ACTIONS(4092), + [aux_sym_visibility_token2] = ACTIONS(4092), + [aux_sym_elseif_fragment_token1] = ACTIONS(4092), + [aux_sym_else_fragment_token1] = ACTIONS(4092), + [aux_sym_select_statement_token1] = ACTIONS(4092), + [aux_sym__for_header_token1] = ACTIONS(4092), + [aux_sym_do_statement_token1] = ACTIONS(4092), + [aux_sym_do_condition_token1] = ACTIONS(4092), + [aux_sym_with_statement_token1] = ACTIONS(4092), + [aux_sym_exit_statement_token1] = ACTIONS(4092), + [sym_end_statement] = ACTIONS(4090), + [aux_sym_on_goto_statement_token1] = ACTIONS(4092), + [aux_sym_on_goto_statement_token2] = ACTIONS(4092), + [aux_sym_on_error_statement_token2] = ACTIONS(4092), + [sym__ambiguous_redim_statement] = ACTIONS(4090), + [aux_sym_erase_statement_token1] = ACTIONS(4092), + [aux_sym_open_statement_token1] = ACTIONS(4092), + [aux_sym_file_mode_token2] = ACTIONS(4092), + [aux_sym_file_access_token2] = ACTIONS(4092), + [aux_sym_file_lock_token2] = ACTIONS(4092), + [aux_sym_print_statement_token1] = ACTIONS(4092), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4090), + [aux_sym_close_statement_token1] = ACTIONS(4092), + [aux_sym_put_statement_token1] = ACTIONS(4092), + [aux_sym_unlock_statement_token1] = ACTIONS(4092), + [aux_sym_seek_statement_token1] = ACTIONS(4092), + [sym_reset_statement] = ACTIONS(4092), + [aux_sym_raise_event_statement_token1] = ACTIONS(4092), + [sym_stop_statement] = ACTIONS(4092), + [sym_beep_statement] = ACTIONS(4092), + [aux_sym_unload_statement_token1] = ACTIONS(4092), + [aux_sym_def_type_statement_token1] = ACTIONS(4092), + [aux_sym_def_type_statement_token2] = ACTIONS(4092), + [aux_sym_def_type_statement_token3] = ACTIONS(4092), + [aux_sym_def_type_statement_token4] = ACTIONS(4092), + [aux_sym_def_type_statement_token5] = ACTIONS(4092), + [aux_sym_def_type_statement_token6] = ACTIONS(4092), + [aux_sym_def_type_statement_token7] = ACTIONS(4092), + [aux_sym_def_type_statement_token8] = ACTIONS(4092), + [aux_sym_def_type_statement_token9] = ACTIONS(4092), + [aux_sym_def_type_statement_token10] = ACTIONS(4092), + [aux_sym_def_type_statement_token11] = ACTIONS(4092), + [aux_sym_def_type_statement_token12] = ACTIONS(4092), + [aux_sym_def_type_statement_token13] = ACTIONS(4092), + [aux_sym_def_type_statement_token14] = ACTIONS(4092), + [aux_sym_call_statement_token1] = ACTIONS(4092), + [sym__ambiguous_call_statement] = ACTIONS(4092), + [aux_sym_addressof_expression_token1] = ACTIONS(4282), + [aux_sym_type_of_expression_token1] = ACTIONS(4284), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(4387), + [sym_number_literal] = ACTIONS(4387), + [aux_sym_boolean_literal_token1] = ACTIONS(4288), + [aux_sym_boolean_literal_token2] = ACTIONS(4288), + [sym_nothing_literal] = ACTIONS(4389), + [sym_null_literal] = ACTIONS(4389), + [sym_empty_literal] = ACTIONS(4389), + [sym_date_literal] = ACTIONS(4387), + [anon_sym_POUND] = ACTIONS(4292), + }, + [STATE(390)] = { + [sym__primary_expression] = STATE(10862), + [sym__expression] = STATE(10862), + [sym__callable_expression] = STATE(13480), + [sym_call_expression] = STATE(10052), + [sym_new_expression] = STATE(10862), + [sym_addressof_expression] = STATE(10862), + [sym_type_of_expression] = STATE(10862), + [sym_member_expression] = STATE(10054), + [sym_qualified_member_expression] = STATE(10049), + [sym_implicit_member_expression] = STATE(10049), + [sym_parenthesized_expression] = STATE(10862), + [sym_binary_expression] = STATE(10862), + [sym_unary_expression] = STATE(10862), + [sym__signed_unary_expression] = STATE(10078), + [sym__literal] = STATE(10862), + [sym_boolean_literal] = STATE(10862), + [sym_file_number_literal] = STATE(10862), + [sym_identifier] = ACTIONS(3984), + [sym_newline] = ACTIONS(3986), + [anon_sym_COLON] = ACTIONS(3986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3989), + [aux_sym_frm_property_statement_token1] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [aux_sym__attribute_identifier_token1] = ACTIONS(3989), + [aux_sym_option_statement_token3] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3989), + [aux_sym_preprocessor_const_token1] = ACTIONS(3989), + [sym_static_modifier] = ACTIONS(3989), + [sym__dim_keyword] = ACTIONS(3989), + [sym__redim_keyword] = ACTIONS(3989), + [aux_sym_byval_modifier_token1] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3989), + [aux_sym_set_accessor_token1] = ACTIONS(3989), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(3998), + [aux_sym_as_type_clause_token2] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4004), + [aux_sym_visibility_token1] = ACTIONS(3989), + [aux_sym_visibility_token2] = ACTIONS(3989), + [aux_sym_elseif_fragment_token1] = ACTIONS(3989), + [aux_sym_else_fragment_token1] = ACTIONS(3989), + [aux_sym_select_statement_token1] = ACTIONS(3989), + [aux_sym__for_header_token1] = ACTIONS(3989), + [aux_sym_do_statement_token1] = ACTIONS(3989), + [aux_sym_do_condition_token1] = ACTIONS(3989), + [aux_sym_with_statement_token1] = ACTIONS(3989), + [aux_sym_exit_statement_token1] = ACTIONS(3989), + [sym_end_statement] = ACTIONS(3986), + [aux_sym_on_goto_statement_token1] = ACTIONS(3989), + [aux_sym_on_goto_statement_token2] = ACTIONS(3989), + [aux_sym_on_error_statement_token2] = ACTIONS(3989), + [sym__ambiguous_redim_statement] = ACTIONS(3986), + [aux_sym_erase_statement_token1] = ACTIONS(3989), + [aux_sym_open_statement_token1] = ACTIONS(3989), + [aux_sym_file_mode_token2] = ACTIONS(3989), + [aux_sym_file_access_token2] = ACTIONS(3989), + [aux_sym_file_lock_token2] = ACTIONS(3989), + [aux_sym_print_statement_token1] = ACTIONS(3989), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(3986), + [aux_sym_close_statement_token1] = ACTIONS(3989), + [aux_sym_put_statement_token1] = ACTIONS(3989), + [aux_sym_unlock_statement_token1] = ACTIONS(3989), + [aux_sym_seek_statement_token1] = ACTIONS(3989), + [sym_reset_statement] = ACTIONS(3989), + [aux_sym_raise_event_statement_token1] = ACTIONS(3989), + [sym_stop_statement] = ACTIONS(3989), + [sym_beep_statement] = ACTIONS(3989), + [aux_sym_unload_statement_token1] = ACTIONS(3989), + [aux_sym_def_type_statement_token1] = ACTIONS(3989), + [aux_sym_def_type_statement_token2] = ACTIONS(3989), + [aux_sym_def_type_statement_token3] = ACTIONS(3989), + [aux_sym_def_type_statement_token4] = ACTIONS(3989), + [aux_sym_def_type_statement_token5] = ACTIONS(3989), + [aux_sym_def_type_statement_token6] = ACTIONS(3989), + [aux_sym_def_type_statement_token7] = ACTIONS(3989), + [aux_sym_def_type_statement_token8] = ACTIONS(3989), + [aux_sym_def_type_statement_token9] = ACTIONS(3989), + [aux_sym_def_type_statement_token10] = ACTIONS(3989), + [aux_sym_def_type_statement_token11] = ACTIONS(3989), + [aux_sym_def_type_statement_token12] = ACTIONS(3989), + [aux_sym_def_type_statement_token13] = ACTIONS(3989), + [aux_sym_def_type_statement_token14] = ACTIONS(3989), + [aux_sym_call_statement_token1] = ACTIONS(3989), + [sym__ambiguous_call_statement] = ACTIONS(3989), + [aux_sym_addressof_expression_token1] = ACTIONS(4012), + [aux_sym_type_of_expression_token1] = ACTIONS(4014), + [aux_sym_unary_expression_token1] = ACTIONS(4016), + [sym_string_literal] = ACTIONS(4395), + [sym_number_literal] = ACTIONS(4395), + [aux_sym_boolean_literal_token1] = ACTIONS(4020), + [aux_sym_boolean_literal_token2] = ACTIONS(4020), + [sym_nothing_literal] = ACTIONS(4397), + [sym_null_literal] = ACTIONS(4397), + [sym_empty_literal] = ACTIONS(4397), + [sym_date_literal] = ACTIONS(4395), + [anon_sym_POUND] = ACTIONS(4024), + }, + [STATE(391)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [anon_sym_COLON_EQ] = ACTIONS(4402), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(392)] = { + [sym_output_list] = STATE(5526), + [sym__print_output_expression] = STATE(4599), + [sym__unparenthesized_print_output_expression] = STATE(4599), + [sym__print_output_call_binary_expression] = STATE(4599), + [sym__print_output_call_operand] = STATE(10996), + [sym__print_output_member_comparison_expression] = STATE(4793), + [sym__print_output_call_member_expression] = STATE(761), + [sym__print_output_call_expression] = STATE(2297), + [sym__print_output_qualified_callable] = STATE(13144), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10997), + [sym_comparison_expression] = STATE(4600), + [sym__comparison_operand] = STATE(11302), + [sym_logical_value_expression] = STATE(4601), + [sym__callable_expression] = STATE(13147), + [sym_call_expression] = STATE(10292), + [sym_new_expression] = STATE(861), + [sym_addressof_expression] = STATE(861), + [sym_type_of_expression] = STATE(861), + [sym_member_expression] = STATE(862), + [sym_qualified_member_expression] = STATE(865), + [sym_implicit_member_expression] = STATE(865), + [sym_parenthesized_expression] = STATE(863), + [sym_binary_expression] = STATE(864), + [sym_unary_expression] = STATE(2300), + [sym__signed_unary_expression] = STATE(837), + [sym__literal] = STATE(861), + [sym_boolean_literal] = STATE(861), + [sym_file_number_literal] = STATE(861), + [sym_identifier] = ACTIONS(4379), + [sym_newline] = ACTIONS(4072), + [anon_sym_COLON] = ACTIONS(4072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4074), + [aux_sym_frm_property_statement_token1] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4266), + [aux_sym__attribute_identifier_token1] = ACTIONS(4074), + [aux_sym_option_statement_token3] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4074), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4074), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4074), + [aux_sym_preprocessor_const_token1] = ACTIONS(4074), + [sym_static_modifier] = ACTIONS(4074), + [sym__dim_keyword] = ACTIONS(4074), + [sym__redim_keyword] = ACTIONS(4074), + [aux_sym_get_accessor_token1] = ACTIONS(4074), + [aux_sym_set_accessor_token1] = ACTIONS(4074), + [aux_sym_const_declaration_token1] = ACTIONS(4074), + [anon_sym_LPAREN] = ACTIONS(4383), + [aux_sym_as_type_clause_token2] = ACTIONS(4274), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4385), + [aux_sym_visibility_token1] = ACTIONS(4074), + [aux_sym_visibility_token2] = ACTIONS(4074), + [aux_sym_elseif_fragment_token1] = ACTIONS(4074), + [aux_sym_else_fragment_token1] = ACTIONS(4074), + [aux_sym_select_statement_token1] = ACTIONS(4074), + [aux_sym__for_header_token1] = ACTIONS(4074), + [aux_sym_do_statement_token1] = ACTIONS(4074), + [aux_sym_do_condition_token1] = ACTIONS(4074), + [aux_sym_with_statement_token1] = ACTIONS(4074), + [aux_sym_exit_statement_token1] = ACTIONS(4074), + [sym_end_statement] = ACTIONS(4072), + [aux_sym_on_goto_statement_token1] = ACTIONS(4074), + [aux_sym_on_goto_statement_token2] = ACTIONS(4074), + [aux_sym_on_error_statement_token2] = ACTIONS(4074), + [sym__ambiguous_redim_statement] = ACTIONS(4072), + [aux_sym_erase_statement_token1] = ACTIONS(4074), + [aux_sym_open_statement_token1] = ACTIONS(4074), + [aux_sym_file_mode_token2] = ACTIONS(4074), + [aux_sym_file_access_token2] = ACTIONS(4074), + [aux_sym_file_lock_token2] = ACTIONS(4074), + [aux_sym_print_statement_token1] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4072), + [aux_sym_close_statement_token1] = ACTIONS(4074), + [aux_sym_put_statement_token1] = ACTIONS(4074), + [aux_sym_unlock_statement_token1] = ACTIONS(4074), + [aux_sym_seek_statement_token1] = ACTIONS(4074), + [sym_reset_statement] = ACTIONS(4074), + [aux_sym_raise_event_statement_token1] = ACTIONS(4074), + [sym_stop_statement] = ACTIONS(4074), + [sym_beep_statement] = ACTIONS(4074), + [aux_sym_unload_statement_token1] = ACTIONS(4074), + [aux_sym_def_type_statement_token1] = ACTIONS(4074), + [aux_sym_def_type_statement_token2] = ACTIONS(4074), + [aux_sym_def_type_statement_token3] = ACTIONS(4074), + [aux_sym_def_type_statement_token4] = ACTIONS(4074), + [aux_sym_def_type_statement_token5] = ACTIONS(4074), + [aux_sym_def_type_statement_token6] = ACTIONS(4074), + [aux_sym_def_type_statement_token7] = ACTIONS(4074), + [aux_sym_def_type_statement_token8] = ACTIONS(4074), + [aux_sym_def_type_statement_token9] = ACTIONS(4074), + [aux_sym_def_type_statement_token10] = ACTIONS(4074), + [aux_sym_def_type_statement_token11] = ACTIONS(4074), + [aux_sym_def_type_statement_token12] = ACTIONS(4074), + [aux_sym_def_type_statement_token13] = ACTIONS(4074), + [aux_sym_def_type_statement_token14] = ACTIONS(4074), + [aux_sym_call_statement_token1] = ACTIONS(4074), + [sym__ambiguous_call_statement] = ACTIONS(4074), + [aux_sym_addressof_expression_token1] = ACTIONS(4282), + [aux_sym_type_of_expression_token1] = ACTIONS(4284), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(4387), + [sym_number_literal] = ACTIONS(4387), + [aux_sym_boolean_literal_token1] = ACTIONS(4288), + [aux_sym_boolean_literal_token2] = ACTIONS(4288), + [sym_nothing_literal] = ACTIONS(4389), + [sym_null_literal] = ACTIONS(4389), + [sym_empty_literal] = ACTIONS(4389), + [sym_date_literal] = ACTIONS(4387), + [anon_sym_POUND] = ACTIONS(4292), + }, + [STATE(393)] = { + [sym__print_method_output_list] = STATE(5548), + [sym__unparenthesized_print_output_expression] = STATE(4603), + [sym__print_output_call_binary_expression] = STATE(4603), + [sym__print_output_call_operand] = STATE(10996), + [sym__print_output_member_comparison_expression] = STATE(4793), + [sym__print_output_call_member_expression] = STATE(761), + [sym__print_output_call_expression] = STATE(2297), + [sym__print_output_qualified_callable] = STATE(13144), + [sym_argument_list] = STATE(5550), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10997), + [sym_comparison_expression] = STATE(4600), + [sym__comparison_operand] = STATE(11302), + [sym_logical_value_expression] = STATE(4601), + [sym__callable_expression] = STATE(13147), + [sym_call_expression] = STATE(10292), + [sym_new_expression] = STATE(861), + [sym_addressof_expression] = STATE(861), + [sym_type_of_expression] = STATE(861), + [sym_member_expression] = STATE(862), + [sym_qualified_member_expression] = STATE(865), + [sym_implicit_member_expression] = STATE(865), + [sym_parenthesized_expression] = STATE(10077), + [sym_binary_expression] = STATE(864), + [sym_unary_expression] = STATE(2300), + [sym__signed_unary_expression] = STATE(837), + [sym__literal] = STATE(861), + [sym_boolean_literal] = STATE(861), + [sym_file_number_literal] = STATE(861), + [sym_identifier] = ACTIONS(4379), + [sym_newline] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(4094), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4096), + [aux_sym_frm_property_statement_token1] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4266), + [aux_sym__attribute_identifier_token1] = ACTIONS(4096), + [aux_sym_option_statement_token3] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4096), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4096), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4096), + [aux_sym_preprocessor_const_token1] = ACTIONS(4096), + [sym_static_modifier] = ACTIONS(4096), + [sym__dim_keyword] = ACTIONS(4096), + [sym__redim_keyword] = ACTIONS(4096), + [aux_sym_get_accessor_token1] = ACTIONS(4096), + [aux_sym_set_accessor_token1] = ACTIONS(4096), + [aux_sym_const_declaration_token1] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4404), + [aux_sym_as_type_clause_token2] = ACTIONS(4274), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4385), + [aux_sym_visibility_token1] = ACTIONS(4096), + [aux_sym_visibility_token2] = ACTIONS(4096), + [aux_sym_elseif_fragment_token1] = ACTIONS(4096), + [aux_sym_else_fragment_token1] = ACTIONS(4096), + [aux_sym_select_statement_token1] = ACTIONS(4096), + [aux_sym__for_header_token1] = ACTIONS(4096), + [aux_sym_do_statement_token1] = ACTIONS(4096), + [aux_sym_do_condition_token1] = ACTIONS(4096), + [aux_sym_with_statement_token1] = ACTIONS(4096), + [aux_sym_exit_statement_token1] = ACTIONS(4096), + [sym_end_statement] = ACTIONS(4094), + [aux_sym_on_goto_statement_token1] = ACTIONS(4096), + [aux_sym_on_goto_statement_token2] = ACTIONS(4096), + [aux_sym_on_error_statement_token2] = ACTIONS(4096), + [sym__ambiguous_redim_statement] = ACTIONS(4094), + [aux_sym_erase_statement_token1] = ACTIONS(4096), + [aux_sym_open_statement_token1] = ACTIONS(4096), + [aux_sym_file_mode_token2] = ACTIONS(4096), + [aux_sym_file_access_token2] = ACTIONS(4096), + [aux_sym_file_lock_token2] = ACTIONS(4096), + [aux_sym_print_statement_token1] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4094), + [aux_sym_close_statement_token1] = ACTIONS(4096), + [aux_sym_put_statement_token1] = ACTIONS(4096), + [aux_sym_unlock_statement_token1] = ACTIONS(4096), + [aux_sym_seek_statement_token1] = ACTIONS(4096), + [sym_reset_statement] = ACTIONS(4096), + [aux_sym_raise_event_statement_token1] = ACTIONS(4096), + [sym_stop_statement] = ACTIONS(4096), + [sym_beep_statement] = ACTIONS(4096), + [aux_sym_unload_statement_token1] = ACTIONS(4096), + [aux_sym_def_type_statement_token1] = ACTIONS(4096), + [aux_sym_def_type_statement_token2] = ACTIONS(4096), + [aux_sym_def_type_statement_token3] = ACTIONS(4096), + [aux_sym_def_type_statement_token4] = ACTIONS(4096), + [aux_sym_def_type_statement_token5] = ACTIONS(4096), + [aux_sym_def_type_statement_token6] = ACTIONS(4096), + [aux_sym_def_type_statement_token7] = ACTIONS(4096), + [aux_sym_def_type_statement_token8] = ACTIONS(4096), + [aux_sym_def_type_statement_token9] = ACTIONS(4096), + [aux_sym_def_type_statement_token10] = ACTIONS(4096), + [aux_sym_def_type_statement_token11] = ACTIONS(4096), + [aux_sym_def_type_statement_token12] = ACTIONS(4096), + [aux_sym_def_type_statement_token13] = ACTIONS(4096), + [aux_sym_def_type_statement_token14] = ACTIONS(4096), + [aux_sym_call_statement_token1] = ACTIONS(4096), + [sym__ambiguous_call_statement] = ACTIONS(4096), + [aux_sym_addressof_expression_token1] = ACTIONS(4282), + [aux_sym_type_of_expression_token1] = ACTIONS(4284), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(4387), + [sym_number_literal] = ACTIONS(4387), + [aux_sym_boolean_literal_token1] = ACTIONS(4288), + [aux_sym_boolean_literal_token2] = ACTIONS(4288), + [sym_nothing_literal] = ACTIONS(4389), + [sym_null_literal] = ACTIONS(4389), + [sym_empty_literal] = ACTIONS(4389), + [sym_date_literal] = ACTIONS(4387), + [anon_sym_POUND] = ACTIONS(4292), + }, + [STATE(394)] = { + [sym__primary_expression] = STATE(10842), + [sym__expression] = STATE(10842), + [sym__callable_expression] = STATE(13480), + [sym_call_expression] = STATE(10052), + [sym_new_expression] = STATE(10842), + [sym_addressof_expression] = STATE(10842), + [sym_type_of_expression] = STATE(10842), + [sym_member_expression] = STATE(10054), + [sym_qualified_member_expression] = STATE(10049), + [sym_implicit_member_expression] = STATE(10049), + [sym_parenthesized_expression] = STATE(10842), + [sym_binary_expression] = STATE(10842), + [sym_unary_expression] = STATE(10842), + [sym__signed_unary_expression] = STATE(10078), + [sym__literal] = STATE(10842), + [sym_boolean_literal] = STATE(10842), + [sym_file_number_literal] = STATE(10842), + [sym_identifier] = ACTIONS(3984), + [sym_newline] = ACTIONS(3986), + [anon_sym_COLON] = ACTIONS(3986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3989), + [aux_sym_frm_property_statement_token1] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [aux_sym__attribute_identifier_token1] = ACTIONS(3989), + [aux_sym_option_statement_token3] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3989), + [aux_sym_preprocessor_const_token1] = ACTIONS(3989), + [sym_static_modifier] = ACTIONS(3989), + [sym__dim_keyword] = ACTIONS(3989), + [sym__redim_keyword] = ACTIONS(3989), + [aux_sym_byval_modifier_token1] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3989), + [aux_sym_set_accessor_token1] = ACTIONS(3989), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(3998), + [aux_sym_as_type_clause_token2] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4004), + [aux_sym_visibility_token1] = ACTIONS(3989), + [aux_sym_visibility_token2] = ACTIONS(3989), + [aux_sym_elseif_fragment_token1] = ACTIONS(3989), + [aux_sym_else_fragment_token1] = ACTIONS(3989), + [aux_sym_select_statement_token1] = ACTIONS(3989), + [aux_sym__for_header_token1] = ACTIONS(3989), + [aux_sym_do_statement_token1] = ACTIONS(3989), + [aux_sym_do_condition_token1] = ACTIONS(3989), + [aux_sym_while_statement_token1] = ACTIONS(3989), + [aux_sym_with_statement_token1] = ACTIONS(3989), + [aux_sym_exit_statement_token1] = ACTIONS(3989), + [sym_end_statement] = ACTIONS(3986), + [aux_sym_on_goto_statement_token1] = ACTIONS(3989), + [aux_sym_on_goto_statement_token2] = ACTIONS(3989), + [aux_sym_on_error_statement_token2] = ACTIONS(3989), + [sym__ambiguous_redim_statement] = ACTIONS(3986), + [aux_sym_erase_statement_token1] = ACTIONS(3989), + [aux_sym_open_statement_token1] = ACTIONS(3989), + [aux_sym_file_mode_token2] = ACTIONS(3989), + [aux_sym_file_access_token2] = ACTIONS(3989), + [aux_sym_file_lock_token2] = ACTIONS(3989), + [aux_sym_print_statement_token1] = ACTIONS(3989), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(3986), + [aux_sym_close_statement_token1] = ACTIONS(3989), + [aux_sym_put_statement_token1] = ACTIONS(3989), + [aux_sym_unlock_statement_token1] = ACTIONS(3989), + [aux_sym_seek_statement_token1] = ACTIONS(3989), + [sym_reset_statement] = ACTIONS(3989), + [aux_sym_raise_event_statement_token1] = ACTIONS(3989), + [sym_stop_statement] = ACTIONS(3989), + [sym_beep_statement] = ACTIONS(3989), + [aux_sym_unload_statement_token1] = ACTIONS(3989), + [aux_sym_def_type_statement_token1] = ACTIONS(3989), + [aux_sym_def_type_statement_token2] = ACTIONS(3989), + [aux_sym_def_type_statement_token3] = ACTIONS(3989), + [aux_sym_def_type_statement_token4] = ACTIONS(3989), + [aux_sym_def_type_statement_token5] = ACTIONS(3989), + [aux_sym_def_type_statement_token6] = ACTIONS(3989), + [aux_sym_def_type_statement_token7] = ACTIONS(3989), + [aux_sym_def_type_statement_token8] = ACTIONS(3989), + [aux_sym_def_type_statement_token9] = ACTIONS(3989), + [aux_sym_def_type_statement_token10] = ACTIONS(3989), + [aux_sym_def_type_statement_token11] = ACTIONS(3989), + [aux_sym_def_type_statement_token12] = ACTIONS(3989), + [aux_sym_def_type_statement_token13] = ACTIONS(3989), + [aux_sym_def_type_statement_token14] = ACTIONS(3989), + [aux_sym_call_statement_token1] = ACTIONS(3989), + [sym__ambiguous_call_statement] = ACTIONS(3989), + [aux_sym_addressof_expression_token1] = ACTIONS(4012), + [aux_sym_type_of_expression_token1] = ACTIONS(4014), + [aux_sym_unary_expression_token1] = ACTIONS(4016), + [sym_string_literal] = ACTIONS(4406), + [sym_number_literal] = ACTIONS(4406), + [aux_sym_boolean_literal_token1] = ACTIONS(4020), + [aux_sym_boolean_literal_token2] = ACTIONS(4020), + [sym_nothing_literal] = ACTIONS(4408), + [sym_null_literal] = ACTIONS(4408), + [sym_empty_literal] = ACTIONS(4408), + [sym_date_literal] = ACTIONS(4406), + [anon_sym_POUND] = ACTIONS(4024), + }, + [STATE(395)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4412), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_declaration_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4410), + [aux_sym_enum_declaration_token1] = ACTIONS(4410), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4410), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4410), + [aux_sym_declare_function_statement_token1] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [aux_sym__property_get_header_token1] = ACTIONS(4410), + [aux_sym_event_declaration_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4412), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(396)] = { + [sym__print_output_expression] = STATE(4822), + [sym__unparenthesized_print_output_expression] = STATE(4822), + [sym__print_output_call_binary_expression] = STATE(4822), + [sym__print_output_call_operand] = STATE(10996), + [sym__print_output_member_comparison_expression] = STATE(4793), + [sym__print_output_call_member_expression] = STATE(761), + [sym__print_output_call_expression] = STATE(2297), + [sym__print_output_qualified_callable] = STATE(13144), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10997), + [sym_comparison_expression] = STATE(4600), + [sym__comparison_operand] = STATE(11302), + [sym_logical_value_expression] = STATE(4601), + [sym__callable_expression] = STATE(13147), + [sym_call_expression] = STATE(10292), + [sym_new_expression] = STATE(861), + [sym_addressof_expression] = STATE(861), + [sym_type_of_expression] = STATE(861), + [sym_member_expression] = STATE(862), + [sym_qualified_member_expression] = STATE(865), + [sym_implicit_member_expression] = STATE(865), + [sym_parenthesized_expression] = STATE(863), + [sym_binary_expression] = STATE(864), + [sym_unary_expression] = STATE(2300), + [sym__signed_unary_expression] = STATE(837), + [sym__literal] = STATE(861), + [sym_boolean_literal] = STATE(861), + [sym_file_number_literal] = STATE(861), + [sym_identifier] = ACTIONS(4379), + [sym_newline] = ACTIONS(4100), + [anon_sym_COLON] = ACTIONS(4100), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4102), + [aux_sym_frm_property_statement_token1] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4266), + [aux_sym__attribute_identifier_token1] = ACTIONS(4102), + [aux_sym_option_statement_token3] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4102), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4102), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4102), + [aux_sym_preprocessor_const_token1] = ACTIONS(4102), + [sym_static_modifier] = ACTIONS(4102), + [sym__dim_keyword] = ACTIONS(4102), + [sym__redim_keyword] = ACTIONS(4102), + [aux_sym_get_accessor_token1] = ACTIONS(4102), + [aux_sym_set_accessor_token1] = ACTIONS(4102), + [aux_sym_const_declaration_token1] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(4383), + [aux_sym_as_type_clause_token2] = ACTIONS(4274), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4385), + [aux_sym_visibility_token1] = ACTIONS(4102), + [aux_sym_visibility_token2] = ACTIONS(4102), + [aux_sym_elseif_fragment_token1] = ACTIONS(4102), + [aux_sym_else_fragment_token1] = ACTIONS(4102), + [aux_sym_select_statement_token1] = ACTIONS(4102), + [aux_sym__for_header_token1] = ACTIONS(4102), + [aux_sym_do_statement_token1] = ACTIONS(4102), + [aux_sym_do_condition_token1] = ACTIONS(4102), + [aux_sym_with_statement_token1] = ACTIONS(4102), + [aux_sym_exit_statement_token1] = ACTIONS(4102), + [sym_end_statement] = ACTIONS(4100), + [aux_sym_on_goto_statement_token1] = ACTIONS(4102), + [aux_sym_on_goto_statement_token2] = ACTIONS(4102), + [aux_sym_on_error_statement_token2] = ACTIONS(4102), + [sym__ambiguous_redim_statement] = ACTIONS(4100), + [aux_sym_erase_statement_token1] = ACTIONS(4102), + [aux_sym_open_statement_token1] = ACTIONS(4102), + [aux_sym_file_mode_token2] = ACTIONS(4102), + [aux_sym_file_access_token2] = ACTIONS(4102), + [aux_sym_file_lock_token2] = ACTIONS(4102), + [aux_sym_print_statement_token1] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4100), + [aux_sym_close_statement_token1] = ACTIONS(4102), + [aux_sym_put_statement_token1] = ACTIONS(4102), + [aux_sym_unlock_statement_token1] = ACTIONS(4102), + [aux_sym_seek_statement_token1] = ACTIONS(4102), + [sym_reset_statement] = ACTIONS(4102), + [aux_sym_raise_event_statement_token1] = ACTIONS(4102), + [sym_stop_statement] = ACTIONS(4102), + [sym_beep_statement] = ACTIONS(4102), + [aux_sym_unload_statement_token1] = ACTIONS(4102), + [aux_sym_def_type_statement_token1] = ACTIONS(4102), + [aux_sym_def_type_statement_token2] = ACTIONS(4102), + [aux_sym_def_type_statement_token3] = ACTIONS(4102), + [aux_sym_def_type_statement_token4] = ACTIONS(4102), + [aux_sym_def_type_statement_token5] = ACTIONS(4102), + [aux_sym_def_type_statement_token6] = ACTIONS(4102), + [aux_sym_def_type_statement_token7] = ACTIONS(4102), + [aux_sym_def_type_statement_token8] = ACTIONS(4102), + [aux_sym_def_type_statement_token9] = ACTIONS(4102), + [aux_sym_def_type_statement_token10] = ACTIONS(4102), + [aux_sym_def_type_statement_token11] = ACTIONS(4102), + [aux_sym_def_type_statement_token12] = ACTIONS(4102), + [aux_sym_def_type_statement_token13] = ACTIONS(4102), + [aux_sym_def_type_statement_token14] = ACTIONS(4102), + [aux_sym_call_statement_token1] = ACTIONS(4102), + [sym__ambiguous_call_statement] = ACTIONS(4102), + [aux_sym_addressof_expression_token1] = ACTIONS(4282), + [aux_sym_type_of_expression_token1] = ACTIONS(4284), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(4387), + [sym_number_literal] = ACTIONS(4387), + [aux_sym_boolean_literal_token1] = ACTIONS(4288), + [aux_sym_boolean_literal_token2] = ACTIONS(4288), + [sym_nothing_literal] = ACTIONS(4389), + [sym_null_literal] = ACTIONS(4389), + [sym_empty_literal] = ACTIONS(4389), + [sym_date_literal] = ACTIONS(4387), + [anon_sym_POUND] = ACTIONS(4292), + }, + [STATE(397)] = { + [sym_identifier] = ACTIONS(4420), + [sym_newline] = ACTIONS(4422), + [anon_sym_COLON] = ACTIONS(4422), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4420), + [aux_sym_frm_property_statement_token1] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_BANG] = ACTIONS(4426), + [aux_sym__attribute_identifier_token1] = ACTIONS(4420), + [aux_sym_option_statement_token3] = ACTIONS(4420), + [aux_sym_type_declaration_token1] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4420), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4420), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4420), + [aux_sym_enum_declaration_token1] = ACTIONS(4420), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4420), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4420), + [aux_sym_declare_function_statement_token1] = ACTIONS(4420), + [aux_sym_preprocessor_const_token1] = ACTIONS(4420), + [aux_sym__property_get_header_token1] = ACTIONS(4420), + [aux_sym_event_declaration_token1] = ACTIONS(4420), + [sym_static_modifier] = ACTIONS(4420), + [sym__dim_keyword] = ACTIONS(4420), + [sym__redim_keyword] = ACTIONS(4420), + [aux_sym_get_accessor_token1] = ACTIONS(4420), + [aux_sym_set_accessor_token1] = ACTIONS(4420), + [anon_sym_COMMA] = ACTIONS(4422), + [aux_sym_const_declaration_token1] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4428), + [aux_sym_as_type_clause_token2] = ACTIONS(4420), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4420), + [aux_sym_visibility_token1] = ACTIONS(4420), + [aux_sym_visibility_token2] = ACTIONS(4420), + [aux_sym_elseif_fragment_token1] = ACTIONS(4420), + [aux_sym_else_fragment_token1] = ACTIONS(4420), + [aux_sym_select_statement_token1] = ACTIONS(4420), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4420), + [aux_sym_do_statement_token1] = ACTIONS(4420), + [aux_sym_do_condition_token1] = ACTIONS(4420), + [aux_sym_with_statement_token1] = ACTIONS(4420), + [aux_sym_exit_statement_token1] = ACTIONS(4420), + [sym_end_statement] = ACTIONS(4422), + [aux_sym_on_goto_statement_token1] = ACTIONS(4420), + [aux_sym_on_goto_statement_token2] = ACTIONS(4420), + [aux_sym_on_error_statement_token2] = ACTIONS(4420), + [sym__ambiguous_redim_statement] = ACTIONS(4422), + [aux_sym_erase_statement_token1] = ACTIONS(4420), + [aux_sym_open_statement_token1] = ACTIONS(4420), + [aux_sym_file_mode_token2] = ACTIONS(4420), + [aux_sym_file_access_token2] = ACTIONS(4420), + [aux_sym_file_lock_token2] = ACTIONS(4420), + [aux_sym_print_statement_token1] = ACTIONS(4420), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4431), + [anon_sym_DASH] = ACTIONS(4434), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym_QMARK] = ACTIONS(4422), + [aux_sym_close_statement_token1] = ACTIONS(4420), + [aux_sym_put_statement_token1] = ACTIONS(4420), + [aux_sym_unlock_statement_token1] = ACTIONS(4420), + [aux_sym_seek_statement_token1] = ACTIONS(4420), + [sym_reset_statement] = ACTIONS(4420), + [aux_sym_raise_event_statement_token1] = ACTIONS(4420), + [sym_stop_statement] = ACTIONS(4420), + [sym_beep_statement] = ACTIONS(4420), + [aux_sym_unload_statement_token1] = ACTIONS(4420), + [aux_sym_def_type_statement_token1] = ACTIONS(4420), + [aux_sym_def_type_statement_token2] = ACTIONS(4420), + [aux_sym_def_type_statement_token3] = ACTIONS(4420), + [aux_sym_def_type_statement_token4] = ACTIONS(4420), + [aux_sym_def_type_statement_token5] = ACTIONS(4420), + [aux_sym_def_type_statement_token6] = ACTIONS(4420), + [aux_sym_def_type_statement_token7] = ACTIONS(4420), + [aux_sym_def_type_statement_token8] = ACTIONS(4420), + [aux_sym_def_type_statement_token9] = ACTIONS(4420), + [aux_sym_def_type_statement_token10] = ACTIONS(4420), + [aux_sym_def_type_statement_token11] = ACTIONS(4420), + [aux_sym_def_type_statement_token12] = ACTIONS(4420), + [aux_sym_def_type_statement_token13] = ACTIONS(4420), + [aux_sym_def_type_statement_token14] = ACTIONS(4420), + [aux_sym_call_statement_token1] = ACTIONS(4420), + [sym__ambiguous_call_statement] = ACTIONS(4420), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4420), + [aux_sym_type_of_expression_token1] = ACTIONS(4420), + [aux_sym_unary_expression_token1] = ACTIONS(4420), + [sym_string_literal] = ACTIONS(4422), + [sym_number_literal] = ACTIONS(4422), + [aux_sym_boolean_literal_token1] = ACTIONS(4420), + [aux_sym_boolean_literal_token2] = ACTIONS(4420), + [sym_nothing_literal] = ACTIONS(4420), + [sym_null_literal] = ACTIONS(4420), + [sym_empty_literal] = ACTIONS(4420), + [sym_date_literal] = ACTIONS(4422), + [anon_sym_POUND] = ACTIONS(4420), + }, + [STATE(398)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_declaration_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4437), + [aux_sym_enum_declaration_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4437), + [aux_sym_declare_function_statement_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [aux_sym__property_get_header_token1] = ACTIONS(4437), + [aux_sym_event_declaration_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(399)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_declaration_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4441), + [aux_sym_enum_declaration_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4441), + [aux_sym_declare_function_statement_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [aux_sym__property_get_header_token1] = ACTIONS(4441), + [aux_sym_event_declaration_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(400)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_declaration_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4447), + [aux_sym_enum_declaration_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4447), + [aux_sym_declare_function_statement_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [aux_sym__property_get_header_token1] = ACTIONS(4447), + [aux_sym_event_declaration_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(401)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_declaration_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4451), + [aux_sym_enum_declaration_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4451), + [aux_sym_declare_function_statement_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [aux_sym__property_get_header_token1] = ACTIONS(4451), + [aux_sym_event_declaration_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4467), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4469), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4471), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4473), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4475), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(402)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_declaration_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4477), + [aux_sym_enum_declaration_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4477), + [aux_sym_declare_function_statement_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [aux_sym__property_get_header_token1] = ACTIONS(4477), + [aux_sym_event_declaration_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(403)] = { + [sym__print_output_expression] = STATE(4822), + [sym__unparenthesized_print_output_expression] = STATE(4822), + [sym__print_output_call_binary_expression] = STATE(4822), + [sym__print_output_call_operand] = STATE(10996), + [sym__print_output_member_comparison_expression] = STATE(4793), + [sym__print_output_call_member_expression] = STATE(761), + [sym__print_output_call_expression] = STATE(2297), + [sym__print_output_qualified_callable] = STATE(13144), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10997), + [sym_comparison_expression] = STATE(4600), + [sym__comparison_operand] = STATE(11302), + [sym_logical_value_expression] = STATE(4601), + [sym__callable_expression] = STATE(13147), + [sym_call_expression] = STATE(10292), + [sym_new_expression] = STATE(861), + [sym_addressof_expression] = STATE(861), + [sym_type_of_expression] = STATE(861), + [sym_member_expression] = STATE(862), + [sym_qualified_member_expression] = STATE(865), + [sym_implicit_member_expression] = STATE(865), + [sym_parenthesized_expression] = STATE(863), + [sym_binary_expression] = STATE(864), + [sym_unary_expression] = STATE(2300), + [sym__signed_unary_expression] = STATE(837), + [sym__literal] = STATE(861), + [sym_boolean_literal] = STATE(861), + [sym_file_number_literal] = STATE(861), + [sym_identifier] = ACTIONS(4379), + [sym_newline] = ACTIONS(4112), + [anon_sym_COLON] = ACTIONS(4112), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4114), + [aux_sym_frm_property_statement_token1] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4266), + [aux_sym__attribute_identifier_token1] = ACTIONS(4114), + [aux_sym_option_statement_token3] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4114), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4114), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4114), + [aux_sym_preprocessor_const_token1] = ACTIONS(4114), + [sym_static_modifier] = ACTIONS(4114), + [sym__dim_keyword] = ACTIONS(4114), + [sym__redim_keyword] = ACTIONS(4114), + [aux_sym_get_accessor_token1] = ACTIONS(4114), + [aux_sym_set_accessor_token1] = ACTIONS(4114), + [aux_sym_const_declaration_token1] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4383), + [aux_sym_as_type_clause_token2] = ACTIONS(4274), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4385), + [aux_sym_visibility_token1] = ACTIONS(4114), + [aux_sym_visibility_token2] = ACTIONS(4114), + [aux_sym_elseif_fragment_token1] = ACTIONS(4114), + [aux_sym_else_fragment_token1] = ACTIONS(4114), + [aux_sym_select_statement_token1] = ACTIONS(4114), + [aux_sym__for_header_token1] = ACTIONS(4114), + [aux_sym_do_statement_token1] = ACTIONS(4114), + [aux_sym_do_condition_token1] = ACTIONS(4114), + [aux_sym_with_statement_token1] = ACTIONS(4114), + [aux_sym_exit_statement_token1] = ACTIONS(4114), + [sym_end_statement] = ACTIONS(4112), + [aux_sym_on_goto_statement_token1] = ACTIONS(4114), + [aux_sym_on_goto_statement_token2] = ACTIONS(4114), + [aux_sym_on_error_statement_token2] = ACTIONS(4114), + [sym__ambiguous_redim_statement] = ACTIONS(4112), + [aux_sym_erase_statement_token1] = ACTIONS(4114), + [aux_sym_open_statement_token1] = ACTIONS(4114), + [aux_sym_file_mode_token2] = ACTIONS(4114), + [aux_sym_file_access_token2] = ACTIONS(4114), + [aux_sym_file_lock_token2] = ACTIONS(4114), + [aux_sym_print_statement_token1] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4112), + [aux_sym_close_statement_token1] = ACTIONS(4114), + [aux_sym_put_statement_token1] = ACTIONS(4114), + [aux_sym_unlock_statement_token1] = ACTIONS(4114), + [aux_sym_seek_statement_token1] = ACTIONS(4114), + [sym_reset_statement] = ACTIONS(4114), + [aux_sym_raise_event_statement_token1] = ACTIONS(4114), + [sym_stop_statement] = ACTIONS(4114), + [sym_beep_statement] = ACTIONS(4114), + [aux_sym_unload_statement_token1] = ACTIONS(4114), + [aux_sym_def_type_statement_token1] = ACTIONS(4114), + [aux_sym_def_type_statement_token2] = ACTIONS(4114), + [aux_sym_def_type_statement_token3] = ACTIONS(4114), + [aux_sym_def_type_statement_token4] = ACTIONS(4114), + [aux_sym_def_type_statement_token5] = ACTIONS(4114), + [aux_sym_def_type_statement_token6] = ACTIONS(4114), + [aux_sym_def_type_statement_token7] = ACTIONS(4114), + [aux_sym_def_type_statement_token8] = ACTIONS(4114), + [aux_sym_def_type_statement_token9] = ACTIONS(4114), + [aux_sym_def_type_statement_token10] = ACTIONS(4114), + [aux_sym_def_type_statement_token11] = ACTIONS(4114), + [aux_sym_def_type_statement_token12] = ACTIONS(4114), + [aux_sym_def_type_statement_token13] = ACTIONS(4114), + [aux_sym_def_type_statement_token14] = ACTIONS(4114), + [aux_sym_call_statement_token1] = ACTIONS(4114), + [sym__ambiguous_call_statement] = ACTIONS(4114), + [aux_sym_addressof_expression_token1] = ACTIONS(4282), + [aux_sym_type_of_expression_token1] = ACTIONS(4284), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(4387), + [sym_number_literal] = ACTIONS(4387), + [aux_sym_boolean_literal_token1] = ACTIONS(4288), + [aux_sym_boolean_literal_token2] = ACTIONS(4288), + [sym_nothing_literal] = ACTIONS(4389), + [sym_null_literal] = ACTIONS(4389), + [sym_empty_literal] = ACTIONS(4389), + [sym_date_literal] = ACTIONS(4387), + [anon_sym_POUND] = ACTIONS(4292), + }, + [STATE(404)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(405)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(406)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(407)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(408)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(409)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(410)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4467), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(411)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4467), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4469), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(412)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4467), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4469), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4471), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(413)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4467), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4469), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4471), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4473), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(414)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_declaration_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4485), + [aux_sym_enum_declaration_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4485), + [aux_sym_declare_function_statement_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [aux_sym__property_get_header_token1] = ACTIONS(4485), + [aux_sym_event_declaration_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(415)] = { + [sym_identifier] = ACTIONS(4489), + [sym_newline] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4491), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4489), + [aux_sym_frm_property_statement_token1] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4489), + [anon_sym_BANG] = ACTIONS(4491), + [aux_sym__attribute_identifier_token1] = ACTIONS(4489), + [aux_sym_option_statement_token3] = ACTIONS(4489), + [aux_sym_type_declaration_token1] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4489), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4489), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4489), + [aux_sym_enum_declaration_token1] = ACTIONS(4489), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4489), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4489), + [aux_sym_declare_function_statement_token1] = ACTIONS(4489), + [aux_sym_preprocessor_const_token1] = ACTIONS(4489), + [aux_sym__property_get_header_token1] = ACTIONS(4489), + [aux_sym_event_declaration_token1] = ACTIONS(4489), + [sym_static_modifier] = ACTIONS(4489), + [sym__dim_keyword] = ACTIONS(4489), + [sym__redim_keyword] = ACTIONS(4489), + [aux_sym_get_accessor_token1] = ACTIONS(4489), + [aux_sym_set_accessor_token1] = ACTIONS(4489), + [anon_sym_COMMA] = ACTIONS(4491), + [aux_sym_const_declaration_token1] = ACTIONS(4489), + [anon_sym_LPAREN] = ACTIONS(4491), + [aux_sym_as_type_clause_token2] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4489), + [aux_sym_visibility_token1] = ACTIONS(4489), + [aux_sym_visibility_token2] = ACTIONS(4489), + [aux_sym_elseif_fragment_token1] = ACTIONS(4489), + [aux_sym_else_fragment_token1] = ACTIONS(4489), + [aux_sym_select_statement_token1] = ACTIONS(4489), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4489), + [aux_sym_do_statement_token1] = ACTIONS(4489), + [aux_sym_do_condition_token1] = ACTIONS(4489), + [aux_sym_with_statement_token1] = ACTIONS(4489), + [aux_sym_exit_statement_token1] = ACTIONS(4489), + [sym_end_statement] = ACTIONS(4491), + [aux_sym_on_goto_statement_token1] = ACTIONS(4489), + [aux_sym_on_goto_statement_token2] = ACTIONS(4489), + [aux_sym_on_error_statement_token2] = ACTIONS(4489), + [sym__ambiguous_redim_statement] = ACTIONS(4491), + [aux_sym_erase_statement_token1] = ACTIONS(4489), + [aux_sym_open_statement_token1] = ACTIONS(4489), + [aux_sym_file_mode_token2] = ACTIONS(4489), + [aux_sym_file_access_token2] = ACTIONS(4489), + [aux_sym_file_lock_token2] = ACTIONS(4489), + [aux_sym_print_statement_token1] = ACTIONS(4489), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4491), + [anon_sym_QMARK] = ACTIONS(4491), + [aux_sym_close_statement_token1] = ACTIONS(4489), + [aux_sym_put_statement_token1] = ACTIONS(4489), + [aux_sym_unlock_statement_token1] = ACTIONS(4489), + [aux_sym_seek_statement_token1] = ACTIONS(4489), + [sym_reset_statement] = ACTIONS(4489), + [aux_sym_raise_event_statement_token1] = ACTIONS(4489), + [sym_stop_statement] = ACTIONS(4489), + [sym_beep_statement] = ACTIONS(4489), + [aux_sym_unload_statement_token1] = ACTIONS(4489), + [aux_sym_def_type_statement_token1] = ACTIONS(4489), + [aux_sym_def_type_statement_token2] = ACTIONS(4489), + [aux_sym_def_type_statement_token3] = ACTIONS(4489), + [aux_sym_def_type_statement_token4] = ACTIONS(4489), + [aux_sym_def_type_statement_token5] = ACTIONS(4489), + [aux_sym_def_type_statement_token6] = ACTIONS(4489), + [aux_sym_def_type_statement_token7] = ACTIONS(4489), + [aux_sym_def_type_statement_token8] = ACTIONS(4489), + [aux_sym_def_type_statement_token9] = ACTIONS(4489), + [aux_sym_def_type_statement_token10] = ACTIONS(4489), + [aux_sym_def_type_statement_token11] = ACTIONS(4489), + [aux_sym_def_type_statement_token12] = ACTIONS(4489), + [aux_sym_def_type_statement_token13] = ACTIONS(4489), + [aux_sym_def_type_statement_token14] = ACTIONS(4489), + [aux_sym_call_statement_token1] = ACTIONS(4489), + [sym__ambiguous_call_statement] = ACTIONS(4489), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4489), + [aux_sym_type_of_expression_token1] = ACTIONS(4489), + [aux_sym_unary_expression_token1] = ACTIONS(4489), + [sym_string_literal] = ACTIONS(4491), + [sym_number_literal] = ACTIONS(4491), + [aux_sym_boolean_literal_token1] = ACTIONS(4489), + [aux_sym_boolean_literal_token2] = ACTIONS(4489), + [sym_nothing_literal] = ACTIONS(4489), + [sym_null_literal] = ACTIONS(4489), + [sym_empty_literal] = ACTIONS(4489), + [sym_date_literal] = ACTIONS(4491), + [anon_sym_POUND] = ACTIONS(4489), + }, + [STATE(416)] = { + [sym_identifier] = ACTIONS(4499), + [sym_newline] = ACTIONS(4501), + [anon_sym_COLON] = ACTIONS(4501), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4499), + [aux_sym_frm_property_statement_token1] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4501), + [aux_sym__attribute_identifier_token1] = ACTIONS(4499), + [aux_sym_option_statement_token3] = ACTIONS(4499), + [aux_sym_type_declaration_token1] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4499), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4499), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4499), + [aux_sym_enum_declaration_token1] = ACTIONS(4499), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4499), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4499), + [aux_sym_declare_function_statement_token1] = ACTIONS(4499), + [aux_sym_preprocessor_const_token1] = ACTIONS(4499), + [aux_sym__property_get_header_token1] = ACTIONS(4499), + [aux_sym_event_declaration_token1] = ACTIONS(4499), + [sym_static_modifier] = ACTIONS(4499), + [sym__dim_keyword] = ACTIONS(4499), + [sym__redim_keyword] = ACTIONS(4499), + [aux_sym_get_accessor_token1] = ACTIONS(4499), + [aux_sym_set_accessor_token1] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4501), + [aux_sym_const_declaration_token1] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4501), + [aux_sym_as_type_clause_token2] = ACTIONS(4499), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4499), + [aux_sym_visibility_token1] = ACTIONS(4499), + [aux_sym_visibility_token2] = ACTIONS(4499), + [aux_sym_elseif_fragment_token1] = ACTIONS(4499), + [aux_sym_else_fragment_token1] = ACTIONS(4499), + [aux_sym_select_statement_token1] = ACTIONS(4499), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4499), + [aux_sym_do_statement_token1] = ACTIONS(4499), + [aux_sym_do_condition_token1] = ACTIONS(4499), + [aux_sym_with_statement_token1] = ACTIONS(4499), + [aux_sym_exit_statement_token1] = ACTIONS(4499), + [sym_end_statement] = ACTIONS(4501), + [aux_sym_on_goto_statement_token1] = ACTIONS(4499), + [aux_sym_on_goto_statement_token2] = ACTIONS(4499), + [aux_sym_on_error_statement_token2] = ACTIONS(4499), + [sym__ambiguous_redim_statement] = ACTIONS(4501), + [aux_sym_erase_statement_token1] = ACTIONS(4499), + [aux_sym_open_statement_token1] = ACTIONS(4499), + [aux_sym_file_mode_token2] = ACTIONS(4499), + [aux_sym_file_access_token2] = ACTIONS(4499), + [aux_sym_file_lock_token2] = ACTIONS(4499), + [aux_sym_print_statement_token1] = ACTIONS(4499), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4514), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4501), + [anon_sym_QMARK] = ACTIONS(4501), + [aux_sym_close_statement_token1] = ACTIONS(4499), + [aux_sym_put_statement_token1] = ACTIONS(4499), + [aux_sym_unlock_statement_token1] = ACTIONS(4499), + [aux_sym_seek_statement_token1] = ACTIONS(4499), + [sym_reset_statement] = ACTIONS(4499), + [aux_sym_raise_event_statement_token1] = ACTIONS(4499), + [sym_stop_statement] = ACTIONS(4499), + [sym_beep_statement] = ACTIONS(4499), + [aux_sym_unload_statement_token1] = ACTIONS(4499), + [aux_sym_def_type_statement_token1] = ACTIONS(4499), + [aux_sym_def_type_statement_token2] = ACTIONS(4499), + [aux_sym_def_type_statement_token3] = ACTIONS(4499), + [aux_sym_def_type_statement_token4] = ACTIONS(4499), + [aux_sym_def_type_statement_token5] = ACTIONS(4499), + [aux_sym_def_type_statement_token6] = ACTIONS(4499), + [aux_sym_def_type_statement_token7] = ACTIONS(4499), + [aux_sym_def_type_statement_token8] = ACTIONS(4499), + [aux_sym_def_type_statement_token9] = ACTIONS(4499), + [aux_sym_def_type_statement_token10] = ACTIONS(4499), + [aux_sym_def_type_statement_token11] = ACTIONS(4499), + [aux_sym_def_type_statement_token12] = ACTIONS(4499), + [aux_sym_def_type_statement_token13] = ACTIONS(4499), + [aux_sym_def_type_statement_token14] = ACTIONS(4499), + [aux_sym_call_statement_token1] = ACTIONS(4499), + [sym__ambiguous_call_statement] = ACTIONS(4499), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4499), + [aux_sym_type_of_expression_token1] = ACTIONS(4499), + [aux_sym_unary_expression_token1] = ACTIONS(4499), + [sym_string_literal] = ACTIONS(4501), + [sym_number_literal] = ACTIONS(4501), + [aux_sym_boolean_literal_token1] = ACTIONS(4499), + [aux_sym_boolean_literal_token2] = ACTIONS(4499), + [sym_nothing_literal] = ACTIONS(4499), + [sym_null_literal] = ACTIONS(4499), + [sym_empty_literal] = ACTIONS(4499), + [sym_date_literal] = ACTIONS(4501), + [anon_sym_POUND] = ACTIONS(4499), + }, + [STATE(417)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4517), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(418)] = { + [sym_argument_list] = STATE(3058), + [sym_unparenthesized_argument_list] = STATE(7075), + [sym__unparenthesized_argument_sequence] = STATE(7076), + [sym__omitted_argument_sequence] = STATE(7076), + [sym__argument] = STATE(4889), + [sym_named_argument] = STATE(4889), + [sym_byval_argument] = STATE(4889), + [sym__primary_expression] = STATE(1237), + [sym__expression] = STATE(2692), + [sym_comparison_expression] = STATE(4877), + [sym__comparison_operand] = STATE(11453), + [sym_logical_value_expression] = STATE(4877), + [sym__callable_expression] = STATE(13269), + [sym_call_expression] = STATE(880), + [sym_new_expression] = STATE(1237), + [sym_addressof_expression] = STATE(1237), + [sym_type_of_expression] = STATE(1237), + [sym_member_expression] = STATE(1344), + [sym_qualified_member_expression] = STATE(1142), + [sym_implicit_member_expression] = STATE(1142), + [sym_parenthesized_expression] = STATE(1237), + [sym_binary_expression] = STATE(1237), + [sym_unary_expression] = STATE(2692), + [sym__signed_unary_expression] = STATE(1246), + [sym__literal] = STATE(1237), + [sym_boolean_literal] = STATE(1237), + [sym_file_number_literal] = STATE(1237), + [sym_identifier] = ACTIONS(4521), + [sym_newline] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4030), + [aux_sym_frm_property_statement_token1] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4527), + [aux_sym__attribute_identifier_token1] = ACTIONS(4030), + [aux_sym_option_statement_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4030), + [aux_sym_preprocessor_const_token1] = ACTIONS(4030), + [sym_static_modifier] = ACTIONS(4030), + [sym__dim_keyword] = ACTIONS(4030), + [sym__redim_keyword] = ACTIONS(4030), + [aux_sym_byval_modifier_token1] = ACTIONS(4529), + [aux_sym_get_accessor_token1] = ACTIONS(4030), + [aux_sym_set_accessor_token1] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4531), + [aux_sym_const_declaration_token1] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4533), + [aux_sym_as_type_clause_token2] = ACTIONS(4535), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4537), + [aux_sym_visibility_token1] = ACTIONS(4030), + [aux_sym_visibility_token2] = ACTIONS(4030), + [aux_sym_elseif_fragment_token1] = ACTIONS(4030), + [aux_sym_else_fragment_token1] = ACTIONS(4030), + [aux_sym_select_statement_token1] = ACTIONS(4030), + [aux_sym_select_statement_token2] = ACTIONS(4030), + [aux_sym__for_header_token1] = ACTIONS(4030), + [aux_sym_do_statement_token1] = ACTIONS(4030), + [aux_sym_do_condition_token1] = ACTIONS(4030), + [aux_sym_with_statement_token1] = ACTIONS(4030), + [aux_sym_exit_statement_token1] = ACTIONS(4030), + [sym_end_statement] = ACTIONS(4028), + [aux_sym_on_goto_statement_token1] = ACTIONS(4030), + [aux_sym_on_goto_statement_token2] = ACTIONS(4030), + [aux_sym_on_error_statement_token2] = ACTIONS(4030), + [sym__ambiguous_redim_statement] = ACTIONS(4028), + [aux_sym_erase_statement_token1] = ACTIONS(4030), + [aux_sym_open_statement_token1] = ACTIONS(4030), + [aux_sym_file_mode_token2] = ACTIONS(4030), + [aux_sym_file_access_token2] = ACTIONS(4030), + [aux_sym_file_lock_token2] = ACTIONS(4030), + [aux_sym_print_statement_token1] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_QMARK] = ACTIONS(4028), + [aux_sym_close_statement_token1] = ACTIONS(4030), + [aux_sym_put_statement_token1] = ACTIONS(4030), + [aux_sym_unlock_statement_token1] = ACTIONS(4030), + [aux_sym_seek_statement_token1] = ACTIONS(4030), + [sym_reset_statement] = ACTIONS(4030), + [aux_sym_raise_event_statement_token1] = ACTIONS(4030), + [sym_stop_statement] = ACTIONS(4030), + [sym_beep_statement] = ACTIONS(4030), + [aux_sym_unload_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token2] = ACTIONS(4030), + [aux_sym_def_type_statement_token3] = ACTIONS(4030), + [aux_sym_def_type_statement_token4] = ACTIONS(4030), + [aux_sym_def_type_statement_token5] = ACTIONS(4030), + [aux_sym_def_type_statement_token6] = ACTIONS(4030), + [aux_sym_def_type_statement_token7] = ACTIONS(4030), + [aux_sym_def_type_statement_token8] = ACTIONS(4030), + [aux_sym_def_type_statement_token9] = ACTIONS(4030), + [aux_sym_def_type_statement_token10] = ACTIONS(4030), + [aux_sym_def_type_statement_token11] = ACTIONS(4030), + [aux_sym_def_type_statement_token12] = ACTIONS(4030), + [aux_sym_def_type_statement_token13] = ACTIONS(4030), + [aux_sym_def_type_statement_token14] = ACTIONS(4030), + [aux_sym_call_statement_token1] = ACTIONS(4030), + [sym__ambiguous_call_statement] = ACTIONS(4030), + [aux_sym_addressof_expression_token1] = ACTIONS(4543), + [aux_sym_type_of_expression_token1] = ACTIONS(4545), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(4547), + [sym_number_literal] = ACTIONS(4547), + [aux_sym_boolean_literal_token1] = ACTIONS(4549), + [aux_sym_boolean_literal_token2] = ACTIONS(4549), + [sym_nothing_literal] = ACTIONS(4551), + [sym_null_literal] = ACTIONS(4551), + [sym_empty_literal] = ACTIONS(4551), + [sym_date_literal] = ACTIONS(4547), + [anon_sym_POUND] = ACTIONS(4553), + }, + [STATE(419)] = { + [sym_argument_list] = STATE(3199), + [sym_unparenthesized_argument_list] = STATE(6353), + [sym__unparenthesized_argument_sequence] = STATE(6358), + [sym__omitted_argument_sequence] = STATE(6358), + [sym__argument] = STATE(4709), + [sym_named_argument] = STATE(4709), + [sym_byval_argument] = STATE(4709), + [sym__primary_expression] = STATE(1347), + [sym__expression] = STATE(2603), + [sym_comparison_expression] = STATE(4779), + [sym__comparison_operand] = STATE(11305), + [sym_logical_value_expression] = STATE(4779), + [sym__callable_expression] = STATE(13180), + [sym_call_expression] = STATE(911), + [sym_new_expression] = STATE(1347), + [sym_addressof_expression] = STATE(1347), + [sym_type_of_expression] = STATE(1347), + [sym_member_expression] = STATE(1116), + [sym_qualified_member_expression] = STATE(1206), + [sym_implicit_member_expression] = STATE(1206), + [sym_parenthesized_expression] = STATE(1347), + [sym_binary_expression] = STATE(1347), + [sym_unary_expression] = STATE(2603), + [sym__signed_unary_expression] = STATE(1348), + [sym__literal] = STATE(1347), + [sym_boolean_literal] = STATE(1347), + [sym_file_number_literal] = STATE(1347), + [sym_identifier] = ACTIONS(4555), + [sym_newline] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4030), + [aux_sym_frm_property_statement_token1] = ACTIONS(4557), + [anon_sym_EQ] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4561), + [aux_sym__attribute_identifier_token1] = ACTIONS(4030), + [aux_sym_option_statement_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4030), + [aux_sym_preprocessor_const_token1] = ACTIONS(4030), + [sym_static_modifier] = ACTIONS(4030), + [sym__dim_keyword] = ACTIONS(4030), + [sym__redim_keyword] = ACTIONS(4030), + [aux_sym_byval_modifier_token1] = ACTIONS(4563), + [aux_sym_get_accessor_token1] = ACTIONS(4030), + [aux_sym_set_accessor_token1] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4565), + [aux_sym_const_declaration_token1] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4567), + [aux_sym_as_type_clause_token2] = ACTIONS(4569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4571), + [aux_sym_visibility_token1] = ACTIONS(4030), + [aux_sym_visibility_token2] = ACTIONS(4030), + [aux_sym_elseif_fragment_token1] = ACTIONS(4030), + [aux_sym_else_fragment_token1] = ACTIONS(4030), + [aux_sym_select_statement_token1] = ACTIONS(4030), + [aux_sym__for_header_token1] = ACTIONS(4030), + [aux_sym_do_statement_token1] = ACTIONS(4030), + [aux_sym_do_condition_token1] = ACTIONS(4030), + [aux_sym_with_statement_token1] = ACTIONS(4030), + [aux_sym_exit_statement_token1] = ACTIONS(4030), + [sym_end_statement] = ACTIONS(4028), + [aux_sym_on_goto_statement_token1] = ACTIONS(4030), + [aux_sym_on_goto_statement_token2] = ACTIONS(4030), + [aux_sym_on_error_statement_token2] = ACTIONS(4030), + [sym__ambiguous_redim_statement] = ACTIONS(4028), + [aux_sym_erase_statement_token1] = ACTIONS(4030), + [aux_sym_open_statement_token1] = ACTIONS(4030), + [aux_sym_file_mode_token2] = ACTIONS(4030), + [aux_sym_file_access_token2] = ACTIONS(4030), + [aux_sym_file_lock_token2] = ACTIONS(4030), + [aux_sym_print_statement_token1] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4028), + [aux_sym_close_statement_token1] = ACTIONS(4030), + [aux_sym_put_statement_token1] = ACTIONS(4030), + [aux_sym_unlock_statement_token1] = ACTIONS(4030), + [aux_sym_seek_statement_token1] = ACTIONS(4030), + [sym_reset_statement] = ACTIONS(4030), + [aux_sym_raise_event_statement_token1] = ACTIONS(4030), + [sym_stop_statement] = ACTIONS(4030), + [sym_beep_statement] = ACTIONS(4030), + [aux_sym_unload_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token2] = ACTIONS(4030), + [aux_sym_def_type_statement_token3] = ACTIONS(4030), + [aux_sym_def_type_statement_token4] = ACTIONS(4030), + [aux_sym_def_type_statement_token5] = ACTIONS(4030), + [aux_sym_def_type_statement_token6] = ACTIONS(4030), + [aux_sym_def_type_statement_token7] = ACTIONS(4030), + [aux_sym_def_type_statement_token8] = ACTIONS(4030), + [aux_sym_def_type_statement_token9] = ACTIONS(4030), + [aux_sym_def_type_statement_token10] = ACTIONS(4030), + [aux_sym_def_type_statement_token11] = ACTIONS(4030), + [aux_sym_def_type_statement_token12] = ACTIONS(4030), + [aux_sym_def_type_statement_token13] = ACTIONS(4030), + [aux_sym_def_type_statement_token14] = ACTIONS(4030), + [aux_sym_call_statement_token1] = ACTIONS(4030), + [sym__ambiguous_call_statement] = ACTIONS(4030), + [aux_sym_addressof_expression_token1] = ACTIONS(4577), + [aux_sym_type_of_expression_token1] = ACTIONS(4579), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(4581), + [sym_number_literal] = ACTIONS(4581), + [aux_sym_boolean_literal_token1] = ACTIONS(4583), + [aux_sym_boolean_literal_token2] = ACTIONS(4583), + [sym_nothing_literal] = ACTIONS(4585), + [sym_null_literal] = ACTIONS(4585), + [sym_empty_literal] = ACTIONS(4585), + [sym_date_literal] = ACTIONS(4581), + [anon_sym_POUND] = ACTIONS(4587), + }, + [STATE(420)] = { + [sym__print_output_expression] = STATE(4822), + [sym__unparenthesized_print_output_expression] = STATE(4822), + [sym__print_output_call_binary_expression] = STATE(4822), + [sym__print_output_call_operand] = STATE(10996), + [sym__print_output_member_comparison_expression] = STATE(4793), + [sym__print_output_call_member_expression] = STATE(761), + [sym__print_output_call_expression] = STATE(2297), + [sym__print_output_qualified_callable] = STATE(13144), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10997), + [sym_comparison_expression] = STATE(4600), + [sym__comparison_operand] = STATE(11302), + [sym_logical_value_expression] = STATE(4601), + [sym__callable_expression] = STATE(13147), + [sym_call_expression] = STATE(10292), + [sym_new_expression] = STATE(861), + [sym_addressof_expression] = STATE(861), + [sym_type_of_expression] = STATE(861), + [sym_member_expression] = STATE(862), + [sym_qualified_member_expression] = STATE(865), + [sym_implicit_member_expression] = STATE(865), + [sym_parenthesized_expression] = STATE(863), + [sym_binary_expression] = STATE(864), + [sym_unary_expression] = STATE(2300), + [sym__signed_unary_expression] = STATE(837), + [sym__literal] = STATE(861), + [sym_boolean_literal] = STATE(861), + [sym_file_number_literal] = STATE(861), + [sym_identifier] = ACTIONS(4379), + [sym_newline] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(4104), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4106), + [aux_sym_frm_property_statement_token1] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4266), + [aux_sym__attribute_identifier_token1] = ACTIONS(4106), + [aux_sym_option_statement_token3] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4106), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4106), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4106), + [aux_sym_preprocessor_const_token1] = ACTIONS(4106), + [sym_static_modifier] = ACTIONS(4106), + [sym__dim_keyword] = ACTIONS(4106), + [sym__redim_keyword] = ACTIONS(4106), + [aux_sym_get_accessor_token1] = ACTIONS(4106), + [aux_sym_set_accessor_token1] = ACTIONS(4106), + [aux_sym_const_declaration_token1] = ACTIONS(4106), + [anon_sym_LPAREN] = ACTIONS(4383), + [aux_sym_as_type_clause_token2] = ACTIONS(4274), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4385), + [aux_sym_visibility_token1] = ACTIONS(4106), + [aux_sym_visibility_token2] = ACTIONS(4106), + [aux_sym_elseif_fragment_token1] = ACTIONS(4106), + [aux_sym_else_fragment_token1] = ACTIONS(4106), + [aux_sym_select_statement_token1] = ACTIONS(4106), + [aux_sym__for_header_token1] = ACTIONS(4106), + [aux_sym_do_statement_token1] = ACTIONS(4106), + [aux_sym_do_condition_token1] = ACTIONS(4106), + [aux_sym_with_statement_token1] = ACTIONS(4106), + [aux_sym_exit_statement_token1] = ACTIONS(4106), + [sym_end_statement] = ACTIONS(4104), + [aux_sym_on_goto_statement_token1] = ACTIONS(4106), + [aux_sym_on_goto_statement_token2] = ACTIONS(4106), + [aux_sym_on_error_statement_token2] = ACTIONS(4106), + [sym__ambiguous_redim_statement] = ACTIONS(4104), + [aux_sym_erase_statement_token1] = ACTIONS(4106), + [aux_sym_open_statement_token1] = ACTIONS(4106), + [aux_sym_file_mode_token2] = ACTIONS(4106), + [aux_sym_file_access_token2] = ACTIONS(4106), + [aux_sym_file_lock_token2] = ACTIONS(4106), + [aux_sym_print_statement_token1] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4104), + [aux_sym_close_statement_token1] = ACTIONS(4106), + [aux_sym_put_statement_token1] = ACTIONS(4106), + [aux_sym_unlock_statement_token1] = ACTIONS(4106), + [aux_sym_seek_statement_token1] = ACTIONS(4106), + [sym_reset_statement] = ACTIONS(4106), + [aux_sym_raise_event_statement_token1] = ACTIONS(4106), + [sym_stop_statement] = ACTIONS(4106), + [sym_beep_statement] = ACTIONS(4106), + [aux_sym_unload_statement_token1] = ACTIONS(4106), + [aux_sym_def_type_statement_token1] = ACTIONS(4106), + [aux_sym_def_type_statement_token2] = ACTIONS(4106), + [aux_sym_def_type_statement_token3] = ACTIONS(4106), + [aux_sym_def_type_statement_token4] = ACTIONS(4106), + [aux_sym_def_type_statement_token5] = ACTIONS(4106), + [aux_sym_def_type_statement_token6] = ACTIONS(4106), + [aux_sym_def_type_statement_token7] = ACTIONS(4106), + [aux_sym_def_type_statement_token8] = ACTIONS(4106), + [aux_sym_def_type_statement_token9] = ACTIONS(4106), + [aux_sym_def_type_statement_token10] = ACTIONS(4106), + [aux_sym_def_type_statement_token11] = ACTIONS(4106), + [aux_sym_def_type_statement_token12] = ACTIONS(4106), + [aux_sym_def_type_statement_token13] = ACTIONS(4106), + [aux_sym_def_type_statement_token14] = ACTIONS(4106), + [aux_sym_call_statement_token1] = ACTIONS(4106), + [sym__ambiguous_call_statement] = ACTIONS(4106), + [aux_sym_addressof_expression_token1] = ACTIONS(4282), + [aux_sym_type_of_expression_token1] = ACTIONS(4284), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(4387), + [sym_number_literal] = ACTIONS(4387), + [aux_sym_boolean_literal_token1] = ACTIONS(4288), + [aux_sym_boolean_literal_token2] = ACTIONS(4288), + [sym_nothing_literal] = ACTIONS(4389), + [sym_null_literal] = ACTIONS(4389), + [sym_empty_literal] = ACTIONS(4389), + [sym_date_literal] = ACTIONS(4387), + [anon_sym_POUND] = ACTIONS(4292), + }, + [STATE(421)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_declaration_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4589), + [aux_sym_enum_declaration_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4589), + [aux_sym_declare_function_statement_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [aux_sym__property_get_header_token1] = ACTIONS(4589), + [aux_sym_event_declaration_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(422)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_declaration_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4593), + [aux_sym_enum_declaration_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4593), + [aux_sym_declare_function_statement_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [aux_sym__property_get_header_token1] = ACTIONS(4593), + [aux_sym_event_declaration_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(423)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_declaration_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4597), + [aux_sym_enum_declaration_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4597), + [aux_sym_declare_function_statement_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [aux_sym__property_get_header_token1] = ACTIONS(4597), + [aux_sym_event_declaration_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(424)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_declaration_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4601), + [aux_sym_enum_declaration_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4601), + [aux_sym_declare_function_statement_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [aux_sym__property_get_header_token1] = ACTIONS(4601), + [aux_sym_event_declaration_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(425)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4605), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(426)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_declaration_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4609), + [aux_sym_enum_declaration_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4609), + [aux_sym_declare_function_statement_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [aux_sym__property_get_header_token1] = ACTIONS(4609), + [aux_sym_event_declaration_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(427)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(428)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(429)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(430)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(431)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4621), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(432)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_declaration_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4625), + [aux_sym_enum_declaration_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4625), + [aux_sym_declare_function_statement_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [aux_sym__property_get_header_token1] = ACTIONS(4625), + [aux_sym_event_declaration_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(433)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(434)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_declaration_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4509), + [aux_sym_enum_declaration_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4509), + [aux_sym_declare_function_statement_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [aux_sym__property_get_header_token1] = ACTIONS(4509), + [aux_sym_event_declaration_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(435)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(436)] = { + [sym_argument_list] = STATE(478), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4641), + [anon_sym_BANG] = ACTIONS(4643), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4645), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(437)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4647), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(438)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4651), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(439)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_declaration_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4375), + [aux_sym_enum_declaration_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4375), + [aux_sym_declare_function_statement_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [aux_sym__property_get_header_token1] = ACTIONS(4375), + [aux_sym_event_declaration_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_array_bound_token1] = ACTIONS(4375), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(440)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4653), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(441)] = { + [sym_argument_list] = STATE(523), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(4658), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4660), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(442)] = { + [sym__primary_expression] = STATE(10954), + [sym__expression] = STATE(10954), + [sym__callable_expression] = STATE(13480), + [sym_call_expression] = STATE(10052), + [sym_new_expression] = STATE(10954), + [sym_addressof_expression] = STATE(10954), + [sym_type_of_expression] = STATE(10954), + [sym_member_expression] = STATE(10054), + [sym_qualified_member_expression] = STATE(10049), + [sym_implicit_member_expression] = STATE(10049), + [sym_parenthesized_expression] = STATE(10954), + [sym_binary_expression] = STATE(10954), + [sym_unary_expression] = STATE(10954), + [sym__signed_unary_expression] = STATE(10078), + [sym__literal] = STATE(10954), + [sym_boolean_literal] = STATE(10954), + [sym_file_number_literal] = STATE(10954), + [sym_identifier] = ACTIONS(3984), + [sym_newline] = ACTIONS(3986), + [anon_sym_COLON] = ACTIONS(3986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3989), + [aux_sym_frm_property_statement_token1] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [aux_sym__attribute_identifier_token1] = ACTIONS(3989), + [aux_sym_option_statement_token3] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3989), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3989), + [aux_sym_preprocessor_const_token1] = ACTIONS(3989), + [sym_static_modifier] = ACTIONS(3989), + [sym__dim_keyword] = ACTIONS(3989), + [sym__redim_keyword] = ACTIONS(3989), + [aux_sym_byval_modifier_token1] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3989), + [aux_sym_set_accessor_token1] = ACTIONS(3989), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(3998), + [aux_sym_as_type_clause_token2] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4004), + [aux_sym_visibility_token1] = ACTIONS(3989), + [aux_sym_visibility_token2] = ACTIONS(3989), + [aux_sym_elseif_fragment_token1] = ACTIONS(3989), + [aux_sym_else_fragment_token1] = ACTIONS(3989), + [aux_sym_select_statement_token1] = ACTIONS(3989), + [aux_sym__for_header_token1] = ACTIONS(3989), + [aux_sym_do_statement_token1] = ACTIONS(3989), + [aux_sym_do_condition_token1] = ACTIONS(3989), + [aux_sym_with_statement_token1] = ACTIONS(3989), + [aux_sym_exit_statement_token1] = ACTIONS(3989), + [sym_end_statement] = ACTIONS(3986), + [aux_sym_on_goto_statement_token1] = ACTIONS(3989), + [aux_sym_on_goto_statement_token2] = ACTIONS(3989), + [aux_sym_on_error_statement_token2] = ACTIONS(3989), + [sym__ambiguous_redim_statement] = ACTIONS(3986), + [aux_sym_erase_statement_token1] = ACTIONS(3989), + [aux_sym_open_statement_token1] = ACTIONS(3989), + [aux_sym_file_mode_token2] = ACTIONS(3989), + [aux_sym_file_access_token2] = ACTIONS(3989), + [aux_sym_file_lock_token2] = ACTIONS(3989), + [aux_sym_print_statement_token1] = ACTIONS(3989), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(3986), + [aux_sym_close_statement_token1] = ACTIONS(3989), + [aux_sym_put_statement_token1] = ACTIONS(3989), + [aux_sym_unlock_statement_token1] = ACTIONS(3989), + [aux_sym_seek_statement_token1] = ACTIONS(3989), + [sym_reset_statement] = ACTIONS(3989), + [aux_sym_raise_event_statement_token1] = ACTIONS(3989), + [sym_stop_statement] = ACTIONS(3989), + [sym_beep_statement] = ACTIONS(3989), + [aux_sym_unload_statement_token1] = ACTIONS(3989), + [aux_sym_def_type_statement_token1] = ACTIONS(3989), + [aux_sym_def_type_statement_token2] = ACTIONS(3989), + [aux_sym_def_type_statement_token3] = ACTIONS(3989), + [aux_sym_def_type_statement_token4] = ACTIONS(3989), + [aux_sym_def_type_statement_token5] = ACTIONS(3989), + [aux_sym_def_type_statement_token6] = ACTIONS(3989), + [aux_sym_def_type_statement_token7] = ACTIONS(3989), + [aux_sym_def_type_statement_token8] = ACTIONS(3989), + [aux_sym_def_type_statement_token9] = ACTIONS(3989), + [aux_sym_def_type_statement_token10] = ACTIONS(3989), + [aux_sym_def_type_statement_token11] = ACTIONS(3989), + [aux_sym_def_type_statement_token12] = ACTIONS(3989), + [aux_sym_def_type_statement_token13] = ACTIONS(3989), + [aux_sym_def_type_statement_token14] = ACTIONS(3989), + [aux_sym_call_statement_token1] = ACTIONS(3989), + [sym__ambiguous_call_statement] = ACTIONS(3989), + [aux_sym_addressof_expression_token1] = ACTIONS(4012), + [aux_sym_type_of_expression_token1] = ACTIONS(4014), + [aux_sym_unary_expression_token1] = ACTIONS(4016), + [sym_string_literal] = ACTIONS(4662), + [sym_number_literal] = ACTIONS(4662), + [aux_sym_boolean_literal_token1] = ACTIONS(4020), + [aux_sym_boolean_literal_token2] = ACTIONS(4020), + [sym_nothing_literal] = ACTIONS(4664), + [sym_null_literal] = ACTIONS(4664), + [sym_empty_literal] = ACTIONS(4664), + [sym_date_literal] = ACTIONS(4662), + [anon_sym_POUND] = ACTIONS(4024), + }, + [STATE(443)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4666), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(444)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(445), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_declaration_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4375), + [aux_sym_enum_declaration_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4375), + [aux_sym_declare_function_statement_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [aux_sym__property_get_header_token1] = ACTIONS(4375), + [aux_sym_event_declaration_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token3] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(445)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(445), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(446)] = { + [sym_identifier] = ACTIONS(4671), + [sym_newline] = ACTIONS(4673), + [anon_sym_COLON] = ACTIONS(4673), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4671), + [aux_sym_frm_property_statement_token1] = ACTIONS(4671), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4671), + [anon_sym_BANG] = ACTIONS(4673), + [aux_sym__attribute_identifier_token1] = ACTIONS(4671), + [aux_sym_option_statement_token3] = ACTIONS(4671), + [aux_sym_type_declaration_token1] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4671), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4671), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4671), + [aux_sym_enum_declaration_token1] = ACTIONS(4671), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4671), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4671), + [aux_sym_declare_function_statement_token1] = ACTIONS(4671), + [aux_sym_preprocessor_const_token1] = ACTIONS(4671), + [aux_sym__property_get_header_token1] = ACTIONS(4671), + [aux_sym_event_declaration_token1] = ACTIONS(4671), + [sym_static_modifier] = ACTIONS(4671), + [sym__dim_keyword] = ACTIONS(4671), + [sym__redim_keyword] = ACTIONS(4671), + [aux_sym_get_accessor_token1] = ACTIONS(4671), + [aux_sym_set_accessor_token1] = ACTIONS(4671), + [anon_sym_COMMA] = ACTIONS(4673), + [aux_sym_const_declaration_token1] = ACTIONS(4671), + [anon_sym_LPAREN] = ACTIONS(4673), + [aux_sym_as_type_clause_token2] = ACTIONS(4671), + [anon_sym_STAR] = ACTIONS(4673), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4671), + [aux_sym_visibility_token1] = ACTIONS(4671), + [aux_sym_visibility_token2] = ACTIONS(4671), + [aux_sym_elseif_fragment_token1] = ACTIONS(4671), + [aux_sym_else_fragment_token1] = ACTIONS(4671), + [aux_sym_select_statement_token1] = ACTIONS(4671), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4671), + [aux_sym_do_statement_token1] = ACTIONS(4671), + [aux_sym_do_condition_token1] = ACTIONS(4671), + [aux_sym_with_statement_token1] = ACTIONS(4671), + [aux_sym_exit_statement_token1] = ACTIONS(4671), + [sym_end_statement] = ACTIONS(4673), + [aux_sym_on_goto_statement_token1] = ACTIONS(4671), + [aux_sym_on_goto_statement_token2] = ACTIONS(4671), + [aux_sym_on_error_statement_token2] = ACTIONS(4671), + [sym__ambiguous_redim_statement] = ACTIONS(4673), + [aux_sym_erase_statement_token1] = ACTIONS(4671), + [aux_sym_open_statement_token1] = ACTIONS(4671), + [aux_sym_file_mode_token2] = ACTIONS(4671), + [aux_sym_file_access_token2] = ACTIONS(4671), + [aux_sym_file_lock_token2] = ACTIONS(4671), + [aux_sym_print_statement_token1] = ACTIONS(4671), + [anon_sym_CARET] = ACTIONS(4673), + [anon_sym_SLASH] = ACTIONS(4673), + [anon_sym_BSLASH] = ACTIONS(4673), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4671), + [anon_sym_PLUS] = ACTIONS(4673), + [anon_sym_DASH] = ACTIONS(4671), + [anon_sym_AMP] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4671), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym_QMARK] = ACTIONS(4673), + [aux_sym_close_statement_token1] = ACTIONS(4671), + [aux_sym_put_statement_token1] = ACTIONS(4671), + [aux_sym_unlock_statement_token1] = ACTIONS(4671), + [aux_sym_seek_statement_token1] = ACTIONS(4671), + [sym_reset_statement] = ACTIONS(4671), + [aux_sym_raise_event_statement_token1] = ACTIONS(4671), + [sym_stop_statement] = ACTIONS(4671), + [sym_beep_statement] = ACTIONS(4671), + [aux_sym_unload_statement_token1] = ACTIONS(4671), + [aux_sym_def_type_statement_token1] = ACTIONS(4671), + [aux_sym_def_type_statement_token2] = ACTIONS(4671), + [aux_sym_def_type_statement_token3] = ACTIONS(4671), + [aux_sym_def_type_statement_token4] = ACTIONS(4671), + [aux_sym_def_type_statement_token5] = ACTIONS(4671), + [aux_sym_def_type_statement_token6] = ACTIONS(4671), + [aux_sym_def_type_statement_token7] = ACTIONS(4671), + [aux_sym_def_type_statement_token8] = ACTIONS(4671), + [aux_sym_def_type_statement_token9] = ACTIONS(4671), + [aux_sym_def_type_statement_token10] = ACTIONS(4671), + [aux_sym_def_type_statement_token11] = ACTIONS(4671), + [aux_sym_def_type_statement_token12] = ACTIONS(4671), + [aux_sym_def_type_statement_token13] = ACTIONS(4671), + [aux_sym_def_type_statement_token14] = ACTIONS(4671), + [aux_sym_call_statement_token1] = ACTIONS(4671), + [sym__ambiguous_call_statement] = ACTIONS(4671), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4671), + [aux_sym_type_of_expression_token1] = ACTIONS(4671), + [aux_sym_unary_expression_token1] = ACTIONS(4671), + [sym_string_literal] = ACTIONS(4673), + [sym_number_literal] = ACTIONS(4673), + [aux_sym_boolean_literal_token1] = ACTIONS(4671), + [aux_sym_boolean_literal_token2] = ACTIONS(4671), + [sym_nothing_literal] = ACTIONS(4671), + [sym_null_literal] = ACTIONS(4671), + [sym_empty_literal] = ACTIONS(4671), + [sym_date_literal] = ACTIONS(4673), + [anon_sym_POUND] = ACTIONS(4671), + }, + [STATE(447)] = { + [sym_argument_list] = STATE(3360), + [sym_unparenthesized_argument_list] = STATE(6420), + [sym__unparenthesized_argument_sequence] = STATE(6421), + [sym__omitted_argument_sequence] = STATE(6421), + [sym__argument] = STATE(4722), + [sym_named_argument] = STATE(4722), + [sym_byval_argument] = STATE(4722), + [sym__primary_expression] = STATE(1157), + [sym__expression] = STATE(2764), + [sym_comparison_expression] = STATE(4900), + [sym__comparison_operand] = STATE(11458), + [sym_logical_value_expression] = STATE(4900), + [sym__callable_expression] = STATE(13443), + [sym_call_expression] = STATE(981), + [sym_new_expression] = STATE(1157), + [sym_addressof_expression] = STATE(1157), + [sym_type_of_expression] = STATE(1157), + [sym_member_expression] = STATE(1343), + [sym_qualified_member_expression] = STATE(1158), + [sym_implicit_member_expression] = STATE(1158), + [sym_parenthesized_expression] = STATE(1157), + [sym_binary_expression] = STATE(1157), + [sym_unary_expression] = STATE(2764), + [sym__signed_unary_expression] = STATE(1163), + [sym__literal] = STATE(1157), + [sym_boolean_literal] = STATE(1157), + [sym_file_number_literal] = STATE(1157), + [sym_identifier] = ACTIONS(4675), + [sym_newline] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4030), + [aux_sym_frm_property_statement_token1] = ACTIONS(4677), + [anon_sym_EQ] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(4681), + [aux_sym__attribute_identifier_token1] = ACTIONS(4030), + [aux_sym_option_statement_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4030), + [aux_sym_preprocessor_const_token1] = ACTIONS(4030), + [sym_static_modifier] = ACTIONS(4030), + [sym__dim_keyword] = ACTIONS(4030), + [sym__redim_keyword] = ACTIONS(4030), + [aux_sym_byval_modifier_token1] = ACTIONS(4683), + [aux_sym_get_accessor_token1] = ACTIONS(4030), + [aux_sym_set_accessor_token1] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4685), + [aux_sym_const_declaration_token1] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4687), + [aux_sym_as_type_clause_token2] = ACTIONS(4689), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4691), + [aux_sym_visibility_token1] = ACTIONS(4030), + [aux_sym_visibility_token2] = ACTIONS(4030), + [aux_sym_elseif_fragment_token1] = ACTIONS(4030), + [aux_sym_else_fragment_token1] = ACTIONS(4030), + [aux_sym_select_statement_token1] = ACTIONS(4030), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4030), + [aux_sym__for_header_token1] = ACTIONS(4030), + [aux_sym_do_statement_token1] = ACTIONS(4030), + [aux_sym_do_condition_token1] = ACTIONS(4030), + [aux_sym_with_statement_token1] = ACTIONS(4030), + [aux_sym_exit_statement_token1] = ACTIONS(4030), + [sym_end_statement] = ACTIONS(4028), + [aux_sym_on_goto_statement_token1] = ACTIONS(4030), + [aux_sym_on_goto_statement_token2] = ACTIONS(4030), + [aux_sym_on_error_statement_token2] = ACTIONS(4030), + [sym__ambiguous_redim_statement] = ACTIONS(4028), + [aux_sym_erase_statement_token1] = ACTIONS(4030), + [aux_sym_open_statement_token1] = ACTIONS(4030), + [aux_sym_file_mode_token2] = ACTIONS(4030), + [aux_sym_file_access_token2] = ACTIONS(4030), + [aux_sym_file_lock_token2] = ACTIONS(4030), + [aux_sym_print_statement_token1] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4693), + [anon_sym_DASH] = ACTIONS(4695), + [anon_sym_QMARK] = ACTIONS(4028), + [aux_sym_close_statement_token1] = ACTIONS(4030), + [aux_sym_put_statement_token1] = ACTIONS(4030), + [aux_sym_unlock_statement_token1] = ACTIONS(4030), + [aux_sym_seek_statement_token1] = ACTIONS(4030), + [sym_reset_statement] = ACTIONS(4030), + [aux_sym_raise_event_statement_token1] = ACTIONS(4030), + [sym_stop_statement] = ACTIONS(4030), + [sym_beep_statement] = ACTIONS(4030), + [aux_sym_unload_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token2] = ACTIONS(4030), + [aux_sym_def_type_statement_token3] = ACTIONS(4030), + [aux_sym_def_type_statement_token4] = ACTIONS(4030), + [aux_sym_def_type_statement_token5] = ACTIONS(4030), + [aux_sym_def_type_statement_token6] = ACTIONS(4030), + [aux_sym_def_type_statement_token7] = ACTIONS(4030), + [aux_sym_def_type_statement_token8] = ACTIONS(4030), + [aux_sym_def_type_statement_token9] = ACTIONS(4030), + [aux_sym_def_type_statement_token10] = ACTIONS(4030), + [aux_sym_def_type_statement_token11] = ACTIONS(4030), + [aux_sym_def_type_statement_token12] = ACTIONS(4030), + [aux_sym_def_type_statement_token13] = ACTIONS(4030), + [aux_sym_def_type_statement_token14] = ACTIONS(4030), + [aux_sym_call_statement_token1] = ACTIONS(4030), + [sym__ambiguous_call_statement] = ACTIONS(4030), + [aux_sym_addressof_expression_token1] = ACTIONS(4697), + [aux_sym_type_of_expression_token1] = ACTIONS(4699), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(4701), + [sym_number_literal] = ACTIONS(4701), + [aux_sym_boolean_literal_token1] = ACTIONS(4703), + [aux_sym_boolean_literal_token2] = ACTIONS(4703), + [sym_nothing_literal] = ACTIONS(4705), + [sym_null_literal] = ACTIONS(4705), + [sym_empty_literal] = ACTIONS(4705), + [sym_date_literal] = ACTIONS(4701), + [anon_sym_POUND] = ACTIONS(4707), + }, + [STATE(448)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4621), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4709), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(449)] = { + [sym_argument_list] = STATE(2993), + [sym_unparenthesized_argument_list] = STATE(6803), + [sym__unparenthesized_argument_sequence] = STATE(6804), + [sym__omitted_argument_sequence] = STATE(6804), + [sym__argument] = STATE(4736), + [sym_named_argument] = STATE(4736), + [sym_byval_argument] = STATE(4736), + [sym__primary_expression] = STATE(1310), + [sym__expression] = STATE(2571), + [sym_comparison_expression] = STATE(4732), + [sym__comparison_operand] = STATE(11361), + [sym_logical_value_expression] = STATE(4732), + [sym__callable_expression] = STATE(13583), + [sym_call_expression] = STATE(1031), + [sym_new_expression] = STATE(1310), + [sym_addressof_expression] = STATE(1310), + [sym_type_of_expression] = STATE(1310), + [sym_member_expression] = STATE(1419), + [sym_qualified_member_expression] = STATE(1221), + [sym_implicit_member_expression] = STATE(1221), + [sym_parenthesized_expression] = STATE(1310), + [sym_binary_expression] = STATE(1310), + [sym_unary_expression] = STATE(2571), + [sym__signed_unary_expression] = STATE(1313), + [sym__literal] = STATE(1310), + [sym_boolean_literal] = STATE(1310), + [sym_file_number_literal] = STATE(1310), + [sym_identifier] = ACTIONS(4711), + [sym_newline] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4030), + [aux_sym_frm_property_statement_token1] = ACTIONS(4713), + [anon_sym_EQ] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(4715), + [anon_sym_BANG] = ACTIONS(4717), + [aux_sym__attribute_identifier_token1] = ACTIONS(4030), + [aux_sym_option_statement_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4030), + [aux_sym_preprocessor_const_token1] = ACTIONS(4030), + [sym_static_modifier] = ACTIONS(4030), + [sym__dim_keyword] = ACTIONS(4030), + [sym__redim_keyword] = ACTIONS(4030), + [aux_sym_byval_modifier_token1] = ACTIONS(4719), + [aux_sym_get_accessor_token1] = ACTIONS(4030), + [aux_sym_set_accessor_token1] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4721), + [aux_sym_const_declaration_token1] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4723), + [aux_sym_as_type_clause_token2] = ACTIONS(4725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4727), + [aux_sym_visibility_token1] = ACTIONS(4030), + [aux_sym_visibility_token2] = ACTIONS(4030), + [aux_sym_elseif_fragment_token1] = ACTIONS(4030), + [aux_sym_else_fragment_token1] = ACTIONS(4030), + [aux_sym_select_statement_token1] = ACTIONS(4030), + [aux_sym__for_header_token1] = ACTIONS(4030), + [aux_sym_do_statement_token1] = ACTIONS(4030), + [aux_sym_do_condition_token1] = ACTIONS(4030), + [aux_sym_while_statement_token1] = ACTIONS(4030), + [aux_sym_with_statement_token1] = ACTIONS(4030), + [aux_sym_exit_statement_token1] = ACTIONS(4030), + [sym_end_statement] = ACTIONS(4028), + [aux_sym_on_goto_statement_token1] = ACTIONS(4030), + [aux_sym_on_goto_statement_token2] = ACTIONS(4030), + [aux_sym_on_error_statement_token2] = ACTIONS(4030), + [sym__ambiguous_redim_statement] = ACTIONS(4028), + [aux_sym_erase_statement_token1] = ACTIONS(4030), + [aux_sym_open_statement_token1] = ACTIONS(4030), + [aux_sym_file_mode_token2] = ACTIONS(4030), + [aux_sym_file_access_token2] = ACTIONS(4030), + [aux_sym_file_lock_token2] = ACTIONS(4030), + [aux_sym_print_statement_token1] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4729), + [anon_sym_DASH] = ACTIONS(4731), + [anon_sym_QMARK] = ACTIONS(4028), + [aux_sym_close_statement_token1] = ACTIONS(4030), + [aux_sym_put_statement_token1] = ACTIONS(4030), + [aux_sym_unlock_statement_token1] = ACTIONS(4030), + [aux_sym_seek_statement_token1] = ACTIONS(4030), + [sym_reset_statement] = ACTIONS(4030), + [aux_sym_raise_event_statement_token1] = ACTIONS(4030), + [sym_stop_statement] = ACTIONS(4030), + [sym_beep_statement] = ACTIONS(4030), + [aux_sym_unload_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token2] = ACTIONS(4030), + [aux_sym_def_type_statement_token3] = ACTIONS(4030), + [aux_sym_def_type_statement_token4] = ACTIONS(4030), + [aux_sym_def_type_statement_token5] = ACTIONS(4030), + [aux_sym_def_type_statement_token6] = ACTIONS(4030), + [aux_sym_def_type_statement_token7] = ACTIONS(4030), + [aux_sym_def_type_statement_token8] = ACTIONS(4030), + [aux_sym_def_type_statement_token9] = ACTIONS(4030), + [aux_sym_def_type_statement_token10] = ACTIONS(4030), + [aux_sym_def_type_statement_token11] = ACTIONS(4030), + [aux_sym_def_type_statement_token12] = ACTIONS(4030), + [aux_sym_def_type_statement_token13] = ACTIONS(4030), + [aux_sym_def_type_statement_token14] = ACTIONS(4030), + [aux_sym_call_statement_token1] = ACTIONS(4030), + [sym__ambiguous_call_statement] = ACTIONS(4030), + [aux_sym_addressof_expression_token1] = ACTIONS(4733), + [aux_sym_type_of_expression_token1] = ACTIONS(4735), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(4737), + [sym_number_literal] = ACTIONS(4737), + [aux_sym_boolean_literal_token1] = ACTIONS(4739), + [aux_sym_boolean_literal_token2] = ACTIONS(4739), + [sym_nothing_literal] = ACTIONS(4741), + [sym_null_literal] = ACTIONS(4741), + [sym_empty_literal] = ACTIONS(4741), + [sym_date_literal] = ACTIONS(4737), + [anon_sym_POUND] = ACTIONS(4743), + }, + [STATE(450)] = { + [sym_identifier] = ACTIONS(4745), + [sym_newline] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4745), + [aux_sym_frm_property_statement_token1] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_BANG] = ACTIONS(4747), + [aux_sym__attribute_identifier_token1] = ACTIONS(4745), + [aux_sym_option_statement_token3] = ACTIONS(4745), + [aux_sym_type_declaration_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4745), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4745), + [aux_sym_enum_declaration_token1] = ACTIONS(4745), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4745), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4745), + [aux_sym_declare_function_statement_token1] = ACTIONS(4745), + [aux_sym_preprocessor_const_token1] = ACTIONS(4745), + [aux_sym__property_get_header_token1] = ACTIONS(4745), + [aux_sym_event_declaration_token1] = ACTIONS(4745), + [sym_static_modifier] = ACTIONS(4745), + [sym__dim_keyword] = ACTIONS(4745), + [sym__redim_keyword] = ACTIONS(4745), + [aux_sym_get_accessor_token1] = ACTIONS(4745), + [aux_sym_set_accessor_token1] = ACTIONS(4745), + [anon_sym_COMMA] = ACTIONS(4747), + [aux_sym_const_declaration_token1] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4747), + [aux_sym_as_type_clause_token2] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4747), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4745), + [aux_sym_visibility_token1] = ACTIONS(4745), + [aux_sym_visibility_token2] = ACTIONS(4745), + [aux_sym_elseif_fragment_token1] = ACTIONS(4745), + [aux_sym_else_fragment_token1] = ACTIONS(4745), + [aux_sym_select_statement_token1] = ACTIONS(4745), + [aux_sym_case_expression_token1] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_LT_EQ] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_GT_EQ] = ACTIONS(4747), + [anon_sym_LT_GT] = ACTIONS(4747), + [aux_sym__for_header_token1] = ACTIONS(4745), + [aux_sym_do_statement_token1] = ACTIONS(4745), + [aux_sym_do_condition_token1] = ACTIONS(4745), + [aux_sym_with_statement_token1] = ACTIONS(4745), + [aux_sym_exit_statement_token1] = ACTIONS(4745), + [sym_end_statement] = ACTIONS(4747), + [aux_sym_on_goto_statement_token1] = ACTIONS(4745), + [aux_sym_on_goto_statement_token2] = ACTIONS(4745), + [aux_sym_on_error_statement_token2] = ACTIONS(4745), + [sym__ambiguous_redim_statement] = ACTIONS(4747), + [aux_sym_erase_statement_token1] = ACTIONS(4745), + [aux_sym_open_statement_token1] = ACTIONS(4745), + [aux_sym_file_mode_token2] = ACTIONS(4745), + [aux_sym_file_access_token2] = ACTIONS(4745), + [aux_sym_file_lock_token2] = ACTIONS(4745), + [aux_sym_print_statement_token1] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_BSLASH] = ACTIONS(4747), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4745), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [aux_sym_close_statement_token1] = ACTIONS(4745), + [aux_sym_put_statement_token1] = ACTIONS(4745), + [aux_sym_unlock_statement_token1] = ACTIONS(4745), + [aux_sym_seek_statement_token1] = ACTIONS(4745), + [sym_reset_statement] = ACTIONS(4745), + [aux_sym_raise_event_statement_token1] = ACTIONS(4745), + [sym_stop_statement] = ACTIONS(4745), + [sym_beep_statement] = ACTIONS(4745), + [aux_sym_unload_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token2] = ACTIONS(4745), + [aux_sym_def_type_statement_token3] = ACTIONS(4745), + [aux_sym_def_type_statement_token4] = ACTIONS(4745), + [aux_sym_def_type_statement_token5] = ACTIONS(4745), + [aux_sym_def_type_statement_token6] = ACTIONS(4745), + [aux_sym_def_type_statement_token7] = ACTIONS(4745), + [aux_sym_def_type_statement_token8] = ACTIONS(4745), + [aux_sym_def_type_statement_token9] = ACTIONS(4745), + [aux_sym_def_type_statement_token10] = ACTIONS(4745), + [aux_sym_def_type_statement_token11] = ACTIONS(4745), + [aux_sym_def_type_statement_token12] = ACTIONS(4745), + [aux_sym_def_type_statement_token13] = ACTIONS(4745), + [aux_sym_def_type_statement_token14] = ACTIONS(4745), + [aux_sym_call_statement_token1] = ACTIONS(4745), + [sym__ambiguous_call_statement] = ACTIONS(4745), + [aux_sym_comparison_operator_token1] = ACTIONS(4745), + [aux_sym_addressof_expression_token1] = ACTIONS(4745), + [aux_sym_type_of_expression_token1] = ACTIONS(4745), + [aux_sym_unary_expression_token1] = ACTIONS(4745), + [sym_string_literal] = ACTIONS(4747), + [sym_number_literal] = ACTIONS(4747), + [aux_sym_boolean_literal_token1] = ACTIONS(4745), + [aux_sym_boolean_literal_token2] = ACTIONS(4745), + [sym_nothing_literal] = ACTIONS(4745), + [sym_null_literal] = ACTIONS(4745), + [sym_empty_literal] = ACTIONS(4745), + [sym_date_literal] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4745), + }, + [STATE(451)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(452)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(453)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4346), + [anon_sym_BANG] = ACTIONS(4348), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(454)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_declaration_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4509), + [aux_sym_enum_declaration_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4509), + [aux_sym_declare_function_statement_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [aux_sym__property_get_header_token1] = ACTIONS(4509), + [aux_sym_event_declaration_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(455)] = { + [sym_identifier] = ACTIONS(4745), + [sym_newline] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4745), + [aux_sym_frm_property_statement_token1] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_BANG] = ACTIONS(4747), + [aux_sym__attribute_identifier_token1] = ACTIONS(4745), + [aux_sym_option_statement_token3] = ACTIONS(4745), + [aux_sym_type_declaration_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4745), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4745), + [aux_sym_enum_declaration_token1] = ACTIONS(4745), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4745), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4745), + [aux_sym_declare_function_statement_token1] = ACTIONS(4745), + [aux_sym_preprocessor_const_token1] = ACTIONS(4745), + [aux_sym__property_get_header_token1] = ACTIONS(4745), + [aux_sym_event_declaration_token1] = ACTIONS(4745), + [sym_static_modifier] = ACTIONS(4745), + [sym__dim_keyword] = ACTIONS(4745), + [sym__redim_keyword] = ACTIONS(4745), + [aux_sym_get_accessor_token1] = ACTIONS(4745), + [aux_sym_set_accessor_token1] = ACTIONS(4745), + [anon_sym_COMMA] = ACTIONS(4747), + [aux_sym_const_declaration_token1] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4747), + [aux_sym_as_type_clause_token2] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4747), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4745), + [aux_sym_visibility_token1] = ACTIONS(4745), + [aux_sym_visibility_token2] = ACTIONS(4745), + [aux_sym_elseif_fragment_token1] = ACTIONS(4745), + [aux_sym_else_fragment_token1] = ACTIONS(4745), + [aux_sym_select_statement_token1] = ACTIONS(4745), + [aux_sym_case_expression_token1] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_LT_EQ] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_GT_EQ] = ACTIONS(4747), + [anon_sym_LT_GT] = ACTIONS(4747), + [aux_sym__for_header_token1] = ACTIONS(4745), + [aux_sym_do_statement_token1] = ACTIONS(4745), + [aux_sym_do_condition_token1] = ACTIONS(4745), + [aux_sym_with_statement_token1] = ACTIONS(4745), + [aux_sym_exit_statement_token1] = ACTIONS(4745), + [sym_end_statement] = ACTIONS(4747), + [aux_sym_on_goto_statement_token1] = ACTIONS(4745), + [aux_sym_on_goto_statement_token2] = ACTIONS(4745), + [aux_sym_on_error_statement_token2] = ACTIONS(4745), + [sym__ambiguous_redim_statement] = ACTIONS(4747), + [aux_sym_erase_statement_token1] = ACTIONS(4745), + [aux_sym_open_statement_token1] = ACTIONS(4745), + [aux_sym_file_mode_token2] = ACTIONS(4745), + [aux_sym_file_access_token2] = ACTIONS(4745), + [aux_sym_file_lock_token2] = ACTIONS(4745), + [aux_sym_print_statement_token1] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_BSLASH] = ACTIONS(4747), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4745), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [aux_sym_close_statement_token1] = ACTIONS(4745), + [aux_sym_put_statement_token1] = ACTIONS(4745), + [aux_sym_unlock_statement_token1] = ACTIONS(4745), + [aux_sym_seek_statement_token1] = ACTIONS(4745), + [sym_reset_statement] = ACTIONS(4745), + [aux_sym_raise_event_statement_token1] = ACTIONS(4745), + [sym_stop_statement] = ACTIONS(4745), + [sym_beep_statement] = ACTIONS(4745), + [aux_sym_unload_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token2] = ACTIONS(4745), + [aux_sym_def_type_statement_token3] = ACTIONS(4745), + [aux_sym_def_type_statement_token4] = ACTIONS(4745), + [aux_sym_def_type_statement_token5] = ACTIONS(4745), + [aux_sym_def_type_statement_token6] = ACTIONS(4745), + [aux_sym_def_type_statement_token7] = ACTIONS(4745), + [aux_sym_def_type_statement_token8] = ACTIONS(4745), + [aux_sym_def_type_statement_token9] = ACTIONS(4745), + [aux_sym_def_type_statement_token10] = ACTIONS(4745), + [aux_sym_def_type_statement_token11] = ACTIONS(4745), + [aux_sym_def_type_statement_token12] = ACTIONS(4745), + [aux_sym_def_type_statement_token13] = ACTIONS(4745), + [aux_sym_def_type_statement_token14] = ACTIONS(4745), + [aux_sym_call_statement_token1] = ACTIONS(4745), + [sym__ambiguous_call_statement] = ACTIONS(4745), + [aux_sym_comparison_operator_token1] = ACTIONS(4745), + [aux_sym_addressof_expression_token1] = ACTIONS(4745), + [aux_sym_type_of_expression_token1] = ACTIONS(4745), + [aux_sym_unary_expression_token1] = ACTIONS(4745), + [sym_string_literal] = ACTIONS(4747), + [sym_number_literal] = ACTIONS(4747), + [aux_sym_boolean_literal_token1] = ACTIONS(4745), + [aux_sym_boolean_literal_token2] = ACTIONS(4745), + [sym_nothing_literal] = ACTIONS(4745), + [sym_null_literal] = ACTIONS(4745), + [sym_empty_literal] = ACTIONS(4745), + [sym_date_literal] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4745), + }, + [STATE(456)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(457)] = { + [sym_identifier] = ACTIONS(4749), + [sym_newline] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4749), + [aux_sym_frm_property_statement_token1] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_BANG] = ACTIONS(4751), + [aux_sym__attribute_identifier_token1] = ACTIONS(4749), + [aux_sym_option_statement_token3] = ACTIONS(4749), + [aux_sym_type_declaration_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4749), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4749), + [aux_sym_enum_declaration_token1] = ACTIONS(4749), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4749), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4749), + [aux_sym_declare_function_statement_token1] = ACTIONS(4749), + [aux_sym_preprocessor_const_token1] = ACTIONS(4749), + [aux_sym__property_get_header_token1] = ACTIONS(4749), + [aux_sym_event_declaration_token1] = ACTIONS(4749), + [sym_static_modifier] = ACTIONS(4749), + [sym__dim_keyword] = ACTIONS(4749), + [sym__redim_keyword] = ACTIONS(4749), + [aux_sym_get_accessor_token1] = ACTIONS(4749), + [aux_sym_set_accessor_token1] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4751), + [aux_sym_const_declaration_token1] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4751), + [aux_sym_as_type_clause_token2] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4749), + [aux_sym_visibility_token1] = ACTIONS(4749), + [aux_sym_visibility_token2] = ACTIONS(4749), + [aux_sym_elseif_fragment_token1] = ACTIONS(4749), + [aux_sym_else_fragment_token1] = ACTIONS(4749), + [aux_sym_select_statement_token1] = ACTIONS(4749), + [aux_sym_case_expression_token1] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_GT] = ACTIONS(4751), + [aux_sym__for_header_token1] = ACTIONS(4749), + [aux_sym_do_statement_token1] = ACTIONS(4749), + [aux_sym_do_condition_token1] = ACTIONS(4749), + [aux_sym_with_statement_token1] = ACTIONS(4749), + [aux_sym_exit_statement_token1] = ACTIONS(4749), + [sym_end_statement] = ACTIONS(4751), + [aux_sym_on_goto_statement_token1] = ACTIONS(4749), + [aux_sym_on_goto_statement_token2] = ACTIONS(4749), + [aux_sym_on_error_statement_token2] = ACTIONS(4749), + [sym__ambiguous_redim_statement] = ACTIONS(4751), + [aux_sym_erase_statement_token1] = ACTIONS(4749), + [aux_sym_open_statement_token1] = ACTIONS(4749), + [aux_sym_file_mode_token2] = ACTIONS(4749), + [aux_sym_file_access_token2] = ACTIONS(4749), + [aux_sym_file_lock_token2] = ACTIONS(4749), + [aux_sym_print_statement_token1] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_BSLASH] = ACTIONS(4751), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [aux_sym_close_statement_token1] = ACTIONS(4749), + [aux_sym_put_statement_token1] = ACTIONS(4749), + [aux_sym_unlock_statement_token1] = ACTIONS(4749), + [aux_sym_seek_statement_token1] = ACTIONS(4749), + [sym_reset_statement] = ACTIONS(4749), + [aux_sym_raise_event_statement_token1] = ACTIONS(4749), + [sym_stop_statement] = ACTIONS(4749), + [sym_beep_statement] = ACTIONS(4749), + [aux_sym_unload_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token2] = ACTIONS(4749), + [aux_sym_def_type_statement_token3] = ACTIONS(4749), + [aux_sym_def_type_statement_token4] = ACTIONS(4749), + [aux_sym_def_type_statement_token5] = ACTIONS(4749), + [aux_sym_def_type_statement_token6] = ACTIONS(4749), + [aux_sym_def_type_statement_token7] = ACTIONS(4749), + [aux_sym_def_type_statement_token8] = ACTIONS(4749), + [aux_sym_def_type_statement_token9] = ACTIONS(4749), + [aux_sym_def_type_statement_token10] = ACTIONS(4749), + [aux_sym_def_type_statement_token11] = ACTIONS(4749), + [aux_sym_def_type_statement_token12] = ACTIONS(4749), + [aux_sym_def_type_statement_token13] = ACTIONS(4749), + [aux_sym_def_type_statement_token14] = ACTIONS(4749), + [aux_sym_call_statement_token1] = ACTIONS(4749), + [sym__ambiguous_call_statement] = ACTIONS(4749), + [aux_sym_comparison_operator_token1] = ACTIONS(4749), + [aux_sym_addressof_expression_token1] = ACTIONS(4749), + [aux_sym_type_of_expression_token1] = ACTIONS(4749), + [aux_sym_unary_expression_token1] = ACTIONS(4749), + [sym_string_literal] = ACTIONS(4751), + [sym_number_literal] = ACTIONS(4751), + [aux_sym_boolean_literal_token1] = ACTIONS(4749), + [aux_sym_boolean_literal_token2] = ACTIONS(4749), + [sym_nothing_literal] = ACTIONS(4749), + [sym_null_literal] = ACTIONS(4749), + [sym_empty_literal] = ACTIONS(4749), + [sym_date_literal] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4749), + }, + [STATE(458)] = { + [sym_identifier] = ACTIONS(4749), + [sym_newline] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4749), + [aux_sym_frm_property_statement_token1] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_BANG] = ACTIONS(4751), + [aux_sym__attribute_identifier_token1] = ACTIONS(4749), + [aux_sym_option_statement_token3] = ACTIONS(4749), + [aux_sym_type_declaration_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4749), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4749), + [aux_sym_enum_declaration_token1] = ACTIONS(4749), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4749), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4749), + [aux_sym_declare_function_statement_token1] = ACTIONS(4749), + [aux_sym_preprocessor_const_token1] = ACTIONS(4749), + [aux_sym__property_get_header_token1] = ACTIONS(4749), + [aux_sym_event_declaration_token1] = ACTIONS(4749), + [sym_static_modifier] = ACTIONS(4749), + [sym__dim_keyword] = ACTIONS(4749), + [sym__redim_keyword] = ACTIONS(4749), + [aux_sym_get_accessor_token1] = ACTIONS(4749), + [aux_sym_set_accessor_token1] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4751), + [aux_sym_const_declaration_token1] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4751), + [aux_sym_as_type_clause_token2] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4749), + [aux_sym_visibility_token1] = ACTIONS(4749), + [aux_sym_visibility_token2] = ACTIONS(4749), + [aux_sym_elseif_fragment_token1] = ACTIONS(4749), + [aux_sym_else_fragment_token1] = ACTIONS(4749), + [aux_sym_select_statement_token1] = ACTIONS(4749), + [aux_sym_case_expression_token1] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_GT] = ACTIONS(4751), + [aux_sym__for_header_token1] = ACTIONS(4749), + [aux_sym_do_statement_token1] = ACTIONS(4749), + [aux_sym_do_condition_token1] = ACTIONS(4749), + [aux_sym_with_statement_token1] = ACTIONS(4749), + [aux_sym_exit_statement_token1] = ACTIONS(4749), + [sym_end_statement] = ACTIONS(4751), + [aux_sym_on_goto_statement_token1] = ACTIONS(4749), + [aux_sym_on_goto_statement_token2] = ACTIONS(4749), + [aux_sym_on_error_statement_token2] = ACTIONS(4749), + [sym__ambiguous_redim_statement] = ACTIONS(4751), + [aux_sym_erase_statement_token1] = ACTIONS(4749), + [aux_sym_open_statement_token1] = ACTIONS(4749), + [aux_sym_file_mode_token2] = ACTIONS(4749), + [aux_sym_file_access_token2] = ACTIONS(4749), + [aux_sym_file_lock_token2] = ACTIONS(4749), + [aux_sym_print_statement_token1] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_BSLASH] = ACTIONS(4751), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [aux_sym_close_statement_token1] = ACTIONS(4749), + [aux_sym_put_statement_token1] = ACTIONS(4749), + [aux_sym_unlock_statement_token1] = ACTIONS(4749), + [aux_sym_seek_statement_token1] = ACTIONS(4749), + [sym_reset_statement] = ACTIONS(4749), + [aux_sym_raise_event_statement_token1] = ACTIONS(4749), + [sym_stop_statement] = ACTIONS(4749), + [sym_beep_statement] = ACTIONS(4749), + [aux_sym_unload_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token2] = ACTIONS(4749), + [aux_sym_def_type_statement_token3] = ACTIONS(4749), + [aux_sym_def_type_statement_token4] = ACTIONS(4749), + [aux_sym_def_type_statement_token5] = ACTIONS(4749), + [aux_sym_def_type_statement_token6] = ACTIONS(4749), + [aux_sym_def_type_statement_token7] = ACTIONS(4749), + [aux_sym_def_type_statement_token8] = ACTIONS(4749), + [aux_sym_def_type_statement_token9] = ACTIONS(4749), + [aux_sym_def_type_statement_token10] = ACTIONS(4749), + [aux_sym_def_type_statement_token11] = ACTIONS(4749), + [aux_sym_def_type_statement_token12] = ACTIONS(4749), + [aux_sym_def_type_statement_token13] = ACTIONS(4749), + [aux_sym_def_type_statement_token14] = ACTIONS(4749), + [aux_sym_call_statement_token1] = ACTIONS(4749), + [sym__ambiguous_call_statement] = ACTIONS(4749), + [aux_sym_comparison_operator_token1] = ACTIONS(4749), + [aux_sym_addressof_expression_token1] = ACTIONS(4749), + [aux_sym_type_of_expression_token1] = ACTIONS(4749), + [aux_sym_unary_expression_token1] = ACTIONS(4749), + [sym_string_literal] = ACTIONS(4751), + [sym_number_literal] = ACTIONS(4751), + [aux_sym_boolean_literal_token1] = ACTIONS(4749), + [aux_sym_boolean_literal_token2] = ACTIONS(4749), + [sym_nothing_literal] = ACTIONS(4749), + [sym_null_literal] = ACTIONS(4749), + [sym_empty_literal] = ACTIONS(4749), + [sym_date_literal] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4749), + }, + [STATE(459)] = { + [sym_argument_list] = STATE(1700), + [sym_comparison_operator] = STATE(8816), + [sym_identifier] = ACTIONS(4236), + [sym_newline] = ACTIONS(4238), + [anon_sym_COLON] = ACTIONS(4238), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4236), + [aux_sym_frm_property_statement_token1] = ACTIONS(4236), + [anon_sym_EQ] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4753), + [anon_sym_BANG] = ACTIONS(4755), + [aux_sym__attribute_identifier_token1] = ACTIONS(4236), + [aux_sym_option_statement_token3] = ACTIONS(4236), + [aux_sym_type_declaration_token1] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4236), + [aux_sym_enum_declaration_token1] = ACTIONS(4236), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4236), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4236), + [aux_sym_declare_function_statement_token1] = ACTIONS(4236), + [aux_sym_preprocessor_const_token1] = ACTIONS(4236), + [aux_sym__property_get_header_token1] = ACTIONS(4236), + [aux_sym_event_declaration_token1] = ACTIONS(4236), + [sym_static_modifier] = ACTIONS(4236), + [sym__dim_keyword] = ACTIONS(4236), + [sym__redim_keyword] = ACTIONS(4236), + [aux_sym_get_accessor_token1] = ACTIONS(4236), + [aux_sym_set_accessor_token1] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4238), + [aux_sym_const_declaration_token1] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(4757), + [aux_sym_as_type_clause_token2] = ACTIONS(4236), + [anon_sym_STAR] = ACTIONS(4248), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4236), + [aux_sym_visibility_token1] = ACTIONS(4236), + [aux_sym_visibility_token2] = ACTIONS(4236), + [aux_sym_elseif_fragment_token1] = ACTIONS(4236), + [aux_sym_else_fragment_token1] = ACTIONS(4236), + [aux_sym_select_statement_token1] = ACTIONS(4236), + [aux_sym_case_expression_token1] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_LT_GT] = ACTIONS(4240), + [aux_sym__for_header_token1] = ACTIONS(4236), + [aux_sym_do_statement_token1] = ACTIONS(4236), + [aux_sym_do_condition_token1] = ACTIONS(4236), + [aux_sym_with_statement_token1] = ACTIONS(4236), + [aux_sym_exit_statement_token1] = ACTIONS(4236), + [sym_end_statement] = ACTIONS(4238), + [aux_sym_on_goto_statement_token1] = ACTIONS(4236), + [aux_sym_on_goto_statement_token2] = ACTIONS(4236), + [aux_sym_on_error_statement_token2] = ACTIONS(4236), + [sym__ambiguous_redim_statement] = ACTIONS(4238), + [aux_sym_erase_statement_token1] = ACTIONS(4236), + [aux_sym_open_statement_token1] = ACTIONS(4236), + [aux_sym_file_mode_token2] = ACTIONS(4236), + [aux_sym_file_access_token2] = ACTIONS(4236), + [aux_sym_file_lock_token2] = ACTIONS(4236), + [aux_sym_print_statement_token1] = ACTIONS(4236), + [anon_sym_CARET] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_BSLASH] = ACTIONS(4248), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4252), + [anon_sym_SEMI] = ACTIONS(4238), + [anon_sym_QMARK] = ACTIONS(4238), + [aux_sym_close_statement_token1] = ACTIONS(4236), + [aux_sym_put_statement_token1] = ACTIONS(4236), + [aux_sym_unlock_statement_token1] = ACTIONS(4236), + [aux_sym_seek_statement_token1] = ACTIONS(4236), + [sym_reset_statement] = ACTIONS(4236), + [aux_sym_raise_event_statement_token1] = ACTIONS(4236), + [sym_stop_statement] = ACTIONS(4236), + [sym_beep_statement] = ACTIONS(4236), + [aux_sym_unload_statement_token1] = ACTIONS(4236), + [aux_sym_def_type_statement_token1] = ACTIONS(4236), + [aux_sym_def_type_statement_token2] = ACTIONS(4236), + [aux_sym_def_type_statement_token3] = ACTIONS(4236), + [aux_sym_def_type_statement_token4] = ACTIONS(4236), + [aux_sym_def_type_statement_token5] = ACTIONS(4236), + [aux_sym_def_type_statement_token6] = ACTIONS(4236), + [aux_sym_def_type_statement_token7] = ACTIONS(4236), + [aux_sym_def_type_statement_token8] = ACTIONS(4236), + [aux_sym_def_type_statement_token9] = ACTIONS(4236), + [aux_sym_def_type_statement_token10] = ACTIONS(4236), + [aux_sym_def_type_statement_token11] = ACTIONS(4236), + [aux_sym_def_type_statement_token12] = ACTIONS(4236), + [aux_sym_def_type_statement_token13] = ACTIONS(4236), + [aux_sym_def_type_statement_token14] = ACTIONS(4236), + [aux_sym_call_statement_token1] = ACTIONS(4236), + [sym__ambiguous_call_statement] = ACTIONS(4236), + [aux_sym_comparison_operator_token1] = ACTIONS(4250), + [aux_sym_addressof_expression_token1] = ACTIONS(4236), + [aux_sym_type_of_expression_token1] = ACTIONS(4236), + [aux_sym_unary_expression_token1] = ACTIONS(4236), + [sym_string_literal] = ACTIONS(4238), + [sym_number_literal] = ACTIONS(4238), + [aux_sym_boolean_literal_token1] = ACTIONS(4236), + [aux_sym_boolean_literal_token2] = ACTIONS(4236), + [sym_nothing_literal] = ACTIONS(4236), + [sym_null_literal] = ACTIONS(4236), + [sym_empty_literal] = ACTIONS(4236), + [sym_date_literal] = ACTIONS(4238), + [anon_sym_POUND] = ACTIONS(4236), + }, + [STATE(460)] = { + [sym_identifier] = ACTIONS(4759), + [sym_newline] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4761), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4759), + [aux_sym_frm_property_statement_token1] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4761), + [aux_sym__attribute_identifier_token1] = ACTIONS(4759), + [aux_sym_option_statement_token3] = ACTIONS(4759), + [aux_sym_type_declaration_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4759), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4759), + [aux_sym_enum_declaration_token1] = ACTIONS(4759), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4759), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4759), + [aux_sym_declare_function_statement_token1] = ACTIONS(4759), + [aux_sym_preprocessor_const_token1] = ACTIONS(4759), + [aux_sym__property_get_header_token1] = ACTIONS(4759), + [aux_sym_event_declaration_token1] = ACTIONS(4759), + [sym_static_modifier] = ACTIONS(4759), + [sym__dim_keyword] = ACTIONS(4759), + [sym__redim_keyword] = ACTIONS(4759), + [aux_sym_get_accessor_token1] = ACTIONS(4759), + [aux_sym_set_accessor_token1] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [aux_sym_const_declaration_token1] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4763), + [aux_sym_as_type_clause_token2] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4759), + [aux_sym_visibility_token1] = ACTIONS(4759), + [aux_sym_visibility_token2] = ACTIONS(4759), + [aux_sym_elseif_fragment_token1] = ACTIONS(4759), + [aux_sym_else_fragment_token1] = ACTIONS(4759), + [aux_sym_select_statement_token1] = ACTIONS(4759), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4759), + [aux_sym_do_statement_token1] = ACTIONS(4759), + [aux_sym_do_condition_token1] = ACTIONS(4759), + [aux_sym_with_statement_token1] = ACTIONS(4759), + [aux_sym_exit_statement_token1] = ACTIONS(4759), + [sym_end_statement] = ACTIONS(4761), + [aux_sym_on_goto_statement_token1] = ACTIONS(4759), + [aux_sym_on_goto_statement_token2] = ACTIONS(4759), + [aux_sym_on_error_statement_token2] = ACTIONS(4759), + [sym__ambiguous_redim_statement] = ACTIONS(4761), + [aux_sym_erase_statement_token1] = ACTIONS(4759), + [aux_sym_open_statement_token1] = ACTIONS(4759), + [aux_sym_file_mode_token2] = ACTIONS(4759), + [aux_sym_file_access_token2] = ACTIONS(4759), + [aux_sym_file_lock_token2] = ACTIONS(4759), + [aux_sym_print_statement_token1] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_QMARK] = ACTIONS(4761), + [aux_sym_close_statement_token1] = ACTIONS(4759), + [aux_sym_put_statement_token1] = ACTIONS(4759), + [aux_sym_unlock_statement_token1] = ACTIONS(4759), + [aux_sym_seek_statement_token1] = ACTIONS(4759), + [sym_reset_statement] = ACTIONS(4759), + [aux_sym_raise_event_statement_token1] = ACTIONS(4759), + [sym_stop_statement] = ACTIONS(4759), + [sym_beep_statement] = ACTIONS(4759), + [aux_sym_unload_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token2] = ACTIONS(4759), + [aux_sym_def_type_statement_token3] = ACTIONS(4759), + [aux_sym_def_type_statement_token4] = ACTIONS(4759), + [aux_sym_def_type_statement_token5] = ACTIONS(4759), + [aux_sym_def_type_statement_token6] = ACTIONS(4759), + [aux_sym_def_type_statement_token7] = ACTIONS(4759), + [aux_sym_def_type_statement_token8] = ACTIONS(4759), + [aux_sym_def_type_statement_token9] = ACTIONS(4759), + [aux_sym_def_type_statement_token10] = ACTIONS(4759), + [aux_sym_def_type_statement_token11] = ACTIONS(4759), + [aux_sym_def_type_statement_token12] = ACTIONS(4759), + [aux_sym_def_type_statement_token13] = ACTIONS(4759), + [aux_sym_def_type_statement_token14] = ACTIONS(4759), + [aux_sym_call_statement_token1] = ACTIONS(4759), + [sym__ambiguous_call_statement] = ACTIONS(4759), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4759), + [aux_sym_type_of_expression_token1] = ACTIONS(4759), + [aux_sym_unary_expression_token1] = ACTIONS(4759), + [sym_string_literal] = ACTIONS(4761), + [sym_number_literal] = ACTIONS(4761), + [aux_sym_boolean_literal_token1] = ACTIONS(4759), + [aux_sym_boolean_literal_token2] = ACTIONS(4759), + [sym_nothing_literal] = ACTIONS(4759), + [sym_null_literal] = ACTIONS(4759), + [sym_empty_literal] = ACTIONS(4759), + [sym_date_literal] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(4759), + }, + [STATE(461)] = { + [sym_identifier] = ACTIONS(4759), + [sym_newline] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4761), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4759), + [aux_sym_frm_property_statement_token1] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4761), + [aux_sym__attribute_identifier_token1] = ACTIONS(4759), + [aux_sym_option_statement_token3] = ACTIONS(4759), + [aux_sym_type_declaration_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4759), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4759), + [aux_sym_enum_declaration_token1] = ACTIONS(4759), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4759), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4759), + [aux_sym_declare_function_statement_token1] = ACTIONS(4759), + [aux_sym_preprocessor_const_token1] = ACTIONS(4759), + [aux_sym__property_get_header_token1] = ACTIONS(4759), + [aux_sym_event_declaration_token1] = ACTIONS(4759), + [sym_static_modifier] = ACTIONS(4759), + [sym__dim_keyword] = ACTIONS(4759), + [sym__redim_keyword] = ACTIONS(4759), + [aux_sym_get_accessor_token1] = ACTIONS(4759), + [aux_sym_set_accessor_token1] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [aux_sym_const_declaration_token1] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4761), + [aux_sym_as_type_clause_token2] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4759), + [aux_sym_visibility_token1] = ACTIONS(4759), + [aux_sym_visibility_token2] = ACTIONS(4759), + [aux_sym_elseif_fragment_token1] = ACTIONS(4759), + [aux_sym_else_fragment_token1] = ACTIONS(4759), + [aux_sym_select_statement_token1] = ACTIONS(4759), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4759), + [aux_sym_do_statement_token1] = ACTIONS(4759), + [aux_sym_do_condition_token1] = ACTIONS(4759), + [aux_sym_with_statement_token1] = ACTIONS(4759), + [aux_sym_exit_statement_token1] = ACTIONS(4759), + [sym_end_statement] = ACTIONS(4761), + [aux_sym_on_goto_statement_token1] = ACTIONS(4759), + [aux_sym_on_goto_statement_token2] = ACTIONS(4759), + [aux_sym_on_error_statement_token2] = ACTIONS(4759), + [sym__ambiguous_redim_statement] = ACTIONS(4761), + [aux_sym_erase_statement_token1] = ACTIONS(4759), + [aux_sym_open_statement_token1] = ACTIONS(4759), + [aux_sym_file_mode_token2] = ACTIONS(4759), + [aux_sym_file_access_token2] = ACTIONS(4759), + [aux_sym_file_lock_token2] = ACTIONS(4759), + [aux_sym_print_statement_token1] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_QMARK] = ACTIONS(4761), + [aux_sym_close_statement_token1] = ACTIONS(4759), + [aux_sym_put_statement_token1] = ACTIONS(4759), + [aux_sym_unlock_statement_token1] = ACTIONS(4759), + [aux_sym_seek_statement_token1] = ACTIONS(4759), + [sym_reset_statement] = ACTIONS(4759), + [aux_sym_raise_event_statement_token1] = ACTIONS(4759), + [sym_stop_statement] = ACTIONS(4759), + [sym_beep_statement] = ACTIONS(4759), + [aux_sym_unload_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token2] = ACTIONS(4759), + [aux_sym_def_type_statement_token3] = ACTIONS(4759), + [aux_sym_def_type_statement_token4] = ACTIONS(4759), + [aux_sym_def_type_statement_token5] = ACTIONS(4759), + [aux_sym_def_type_statement_token6] = ACTIONS(4759), + [aux_sym_def_type_statement_token7] = ACTIONS(4759), + [aux_sym_def_type_statement_token8] = ACTIONS(4759), + [aux_sym_def_type_statement_token9] = ACTIONS(4759), + [aux_sym_def_type_statement_token10] = ACTIONS(4759), + [aux_sym_def_type_statement_token11] = ACTIONS(4759), + [aux_sym_def_type_statement_token12] = ACTIONS(4759), + [aux_sym_def_type_statement_token13] = ACTIONS(4759), + [aux_sym_def_type_statement_token14] = ACTIONS(4759), + [aux_sym_call_statement_token1] = ACTIONS(4759), + [sym__ambiguous_call_statement] = ACTIONS(4759), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4759), + [aux_sym_type_of_expression_token1] = ACTIONS(4759), + [aux_sym_unary_expression_token1] = ACTIONS(4759), + [sym_string_literal] = ACTIONS(4761), + [sym_number_literal] = ACTIONS(4761), + [aux_sym_boolean_literal_token1] = ACTIONS(4759), + [aux_sym_boolean_literal_token2] = ACTIONS(4759), + [sym_nothing_literal] = ACTIONS(4759), + [sym_null_literal] = ACTIONS(4759), + [sym_empty_literal] = ACTIONS(4759), + [sym_date_literal] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(4759), + }, + [STATE(462)] = { + [sym_argument_list] = STATE(2995), + [sym_unparenthesized_argument_list] = STATE(7074), + [sym__unparenthesized_argument_sequence] = STATE(7085), + [sym__omitted_argument_sequence] = STATE(7085), + [sym__argument] = STATE(4896), + [sym_named_argument] = STATE(4896), + [sym_byval_argument] = STATE(4896), + [sym__primary_expression] = STATE(1213), + [sym__expression] = STATE(2701), + [sym_comparison_expression] = STATE(4796), + [sym__comparison_operand] = STATE(11262), + [sym_logical_value_expression] = STATE(4796), + [sym__callable_expression] = STATE(13267), + [sym_call_expression] = STATE(892), + [sym_new_expression] = STATE(1213), + [sym_addressof_expression] = STATE(1213), + [sym_type_of_expression] = STATE(1213), + [sym_member_expression] = STATE(1197), + [sym_qualified_member_expression] = STATE(1441), + [sym_implicit_member_expression] = STATE(1441), + [sym_parenthesized_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_unary_expression] = STATE(2701), + [sym__signed_unary_expression] = STATE(1416), + [sym__literal] = STATE(1213), + [sym_boolean_literal] = STATE(1213), + [sym_file_number_literal] = STATE(1213), + [sym_identifier] = ACTIONS(4772), + [sym_newline] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4030), + [aux_sym_frm_property_statement_token1] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4778), + [aux_sym__attribute_identifier_token1] = ACTIONS(4030), + [aux_sym_option_statement_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4030), + [aux_sym_preprocessor_const_token1] = ACTIONS(4030), + [sym_static_modifier] = ACTIONS(4030), + [sym__dim_keyword] = ACTIONS(4030), + [sym__redim_keyword] = ACTIONS(4030), + [aux_sym_byval_modifier_token1] = ACTIONS(4780), + [aux_sym_get_accessor_token1] = ACTIONS(4030), + [aux_sym_set_accessor_token1] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4782), + [aux_sym_const_declaration_token1] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4784), + [aux_sym_as_type_clause_token2] = ACTIONS(4786), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4788), + [aux_sym_visibility_token1] = ACTIONS(4030), + [aux_sym_visibility_token2] = ACTIONS(4030), + [aux_sym_elseif_fragment_token1] = ACTIONS(4030), + [aux_sym_else_fragment_token1] = ACTIONS(4030), + [aux_sym_select_statement_token1] = ACTIONS(4030), + [aux_sym__for_header_token1] = ACTIONS(4030), + [aux_sym_do_statement_token1] = ACTIONS(4030), + [aux_sym_do_statement_token2] = ACTIONS(4030), + [aux_sym_do_condition_token1] = ACTIONS(4030), + [aux_sym_with_statement_token1] = ACTIONS(4030), + [aux_sym_exit_statement_token1] = ACTIONS(4030), + [sym_end_statement] = ACTIONS(4028), + [aux_sym_on_goto_statement_token1] = ACTIONS(4030), + [aux_sym_on_goto_statement_token2] = ACTIONS(4030), + [aux_sym_on_error_statement_token2] = ACTIONS(4030), + [sym__ambiguous_redim_statement] = ACTIONS(4028), + [aux_sym_erase_statement_token1] = ACTIONS(4030), + [aux_sym_open_statement_token1] = ACTIONS(4030), + [aux_sym_file_mode_token2] = ACTIONS(4030), + [aux_sym_file_access_token2] = ACTIONS(4030), + [aux_sym_file_lock_token2] = ACTIONS(4030), + [aux_sym_print_statement_token1] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_QMARK] = ACTIONS(4028), + [aux_sym_close_statement_token1] = ACTIONS(4030), + [aux_sym_put_statement_token1] = ACTIONS(4030), + [aux_sym_unlock_statement_token1] = ACTIONS(4030), + [aux_sym_seek_statement_token1] = ACTIONS(4030), + [sym_reset_statement] = ACTIONS(4030), + [aux_sym_raise_event_statement_token1] = ACTIONS(4030), + [sym_stop_statement] = ACTIONS(4030), + [sym_beep_statement] = ACTIONS(4030), + [aux_sym_unload_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token2] = ACTIONS(4030), + [aux_sym_def_type_statement_token3] = ACTIONS(4030), + [aux_sym_def_type_statement_token4] = ACTIONS(4030), + [aux_sym_def_type_statement_token5] = ACTIONS(4030), + [aux_sym_def_type_statement_token6] = ACTIONS(4030), + [aux_sym_def_type_statement_token7] = ACTIONS(4030), + [aux_sym_def_type_statement_token8] = ACTIONS(4030), + [aux_sym_def_type_statement_token9] = ACTIONS(4030), + [aux_sym_def_type_statement_token10] = ACTIONS(4030), + [aux_sym_def_type_statement_token11] = ACTIONS(4030), + [aux_sym_def_type_statement_token12] = ACTIONS(4030), + [aux_sym_def_type_statement_token13] = ACTIONS(4030), + [aux_sym_def_type_statement_token14] = ACTIONS(4030), + [aux_sym_call_statement_token1] = ACTIONS(4030), + [sym__ambiguous_call_statement] = ACTIONS(4030), + [aux_sym_addressof_expression_token1] = ACTIONS(4794), + [aux_sym_type_of_expression_token1] = ACTIONS(4796), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(4798), + [sym_number_literal] = ACTIONS(4798), + [aux_sym_boolean_literal_token1] = ACTIONS(4800), + [aux_sym_boolean_literal_token2] = ACTIONS(4800), + [sym_nothing_literal] = ACTIONS(4802), + [sym_null_literal] = ACTIONS(4802), + [sym_empty_literal] = ACTIONS(4802), + [sym_date_literal] = ACTIONS(4798), + [anon_sym_POUND] = ACTIONS(4804), + }, + [STATE(463)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_BANG] = ACTIONS(4426), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_declaration_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4410), + [aux_sym_enum_declaration_token1] = ACTIONS(4410), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4410), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4410), + [aux_sym_declare_function_statement_token1] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [aux_sym__property_get_header_token1] = ACTIONS(4410), + [aux_sym_event_declaration_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4806), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(464)] = { + [sym__print_output_expression] = STATE(4822), + [sym__unparenthesized_print_output_expression] = STATE(4822), + [sym__print_output_call_binary_expression] = STATE(4822), + [sym__print_output_call_operand] = STATE(10996), + [sym__print_output_member_comparison_expression] = STATE(4793), + [sym__print_output_call_member_expression] = STATE(761), + [sym__print_output_call_expression] = STATE(2297), + [sym__print_output_qualified_callable] = STATE(13144), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10997), + [sym_comparison_expression] = STATE(4600), + [sym__comparison_operand] = STATE(11302), + [sym_logical_value_expression] = STATE(4601), + [sym__callable_expression] = STATE(13147), + [sym_call_expression] = STATE(10292), + [sym_new_expression] = STATE(861), + [sym_addressof_expression] = STATE(861), + [sym_type_of_expression] = STATE(861), + [sym_member_expression] = STATE(862), + [sym_qualified_member_expression] = STATE(865), + [sym_implicit_member_expression] = STATE(865), + [sym_parenthesized_expression] = STATE(863), + [sym_binary_expression] = STATE(864), + [sym_unary_expression] = STATE(2300), + [sym__signed_unary_expression] = STATE(837), + [sym__literal] = STATE(861), + [sym_boolean_literal] = STATE(861), + [sym_file_number_literal] = STATE(861), + [sym_identifier] = ACTIONS(4379), + [sym_newline] = ACTIONS(4108), + [anon_sym_COLON] = ACTIONS(4108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4110), + [aux_sym_frm_property_statement_token1] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4266), + [aux_sym__attribute_identifier_token1] = ACTIONS(4110), + [aux_sym_option_statement_token3] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4110), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4110), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4110), + [aux_sym_preprocessor_const_token1] = ACTIONS(4110), + [sym_static_modifier] = ACTIONS(4110), + [sym__dim_keyword] = ACTIONS(4110), + [sym__redim_keyword] = ACTIONS(4110), + [aux_sym_get_accessor_token1] = ACTIONS(4110), + [aux_sym_set_accessor_token1] = ACTIONS(4110), + [aux_sym_const_declaration_token1] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4383), + [aux_sym_as_type_clause_token2] = ACTIONS(4274), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4385), + [aux_sym_visibility_token1] = ACTIONS(4110), + [aux_sym_visibility_token2] = ACTIONS(4110), + [aux_sym_elseif_fragment_token1] = ACTIONS(4110), + [aux_sym_else_fragment_token1] = ACTIONS(4110), + [aux_sym_select_statement_token1] = ACTIONS(4110), + [aux_sym__for_header_token1] = ACTIONS(4110), + [aux_sym_do_statement_token1] = ACTIONS(4110), + [aux_sym_do_condition_token1] = ACTIONS(4110), + [aux_sym_with_statement_token1] = ACTIONS(4110), + [aux_sym_exit_statement_token1] = ACTIONS(4110), + [sym_end_statement] = ACTIONS(4108), + [aux_sym_on_goto_statement_token1] = ACTIONS(4110), + [aux_sym_on_goto_statement_token2] = ACTIONS(4110), + [aux_sym_on_error_statement_token2] = ACTIONS(4110), + [sym__ambiguous_redim_statement] = ACTIONS(4108), + [aux_sym_erase_statement_token1] = ACTIONS(4110), + [aux_sym_open_statement_token1] = ACTIONS(4110), + [aux_sym_file_mode_token2] = ACTIONS(4110), + [aux_sym_file_access_token2] = ACTIONS(4110), + [aux_sym_file_lock_token2] = ACTIONS(4110), + [aux_sym_print_statement_token1] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4108), + [aux_sym_close_statement_token1] = ACTIONS(4110), + [aux_sym_put_statement_token1] = ACTIONS(4110), + [aux_sym_unlock_statement_token1] = ACTIONS(4110), + [aux_sym_seek_statement_token1] = ACTIONS(4110), + [sym_reset_statement] = ACTIONS(4110), + [aux_sym_raise_event_statement_token1] = ACTIONS(4110), + [sym_stop_statement] = ACTIONS(4110), + [sym_beep_statement] = ACTIONS(4110), + [aux_sym_unload_statement_token1] = ACTIONS(4110), + [aux_sym_def_type_statement_token1] = ACTIONS(4110), + [aux_sym_def_type_statement_token2] = ACTIONS(4110), + [aux_sym_def_type_statement_token3] = ACTIONS(4110), + [aux_sym_def_type_statement_token4] = ACTIONS(4110), + [aux_sym_def_type_statement_token5] = ACTIONS(4110), + [aux_sym_def_type_statement_token6] = ACTIONS(4110), + [aux_sym_def_type_statement_token7] = ACTIONS(4110), + [aux_sym_def_type_statement_token8] = ACTIONS(4110), + [aux_sym_def_type_statement_token9] = ACTIONS(4110), + [aux_sym_def_type_statement_token10] = ACTIONS(4110), + [aux_sym_def_type_statement_token11] = ACTIONS(4110), + [aux_sym_def_type_statement_token12] = ACTIONS(4110), + [aux_sym_def_type_statement_token13] = ACTIONS(4110), + [aux_sym_def_type_statement_token14] = ACTIONS(4110), + [aux_sym_call_statement_token1] = ACTIONS(4110), + [sym__ambiguous_call_statement] = ACTIONS(4110), + [aux_sym_addressof_expression_token1] = ACTIONS(4282), + [aux_sym_type_of_expression_token1] = ACTIONS(4284), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(4387), + [sym_number_literal] = ACTIONS(4387), + [aux_sym_boolean_literal_token1] = ACTIONS(4288), + [aux_sym_boolean_literal_token2] = ACTIONS(4288), + [sym_nothing_literal] = ACTIONS(4389), + [sym_null_literal] = ACTIONS(4389), + [sym_empty_literal] = ACTIONS(4389), + [sym_date_literal] = ACTIONS(4387), + [anon_sym_POUND] = ACTIONS(4292), + }, + [STATE(465)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(466)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4809), + [anon_sym_BSLASH] = ACTIONS(4813), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_DASH] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4821), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(467)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4823), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4823), + [anon_sym_BSLASH] = ACTIONS(4827), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4829), + [anon_sym_PLUS] = ACTIONS(4831), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(468)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4823), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4823), + [anon_sym_BSLASH] = ACTIONS(4827), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4829), + [anon_sym_PLUS] = ACTIONS(4831), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_AMP] = ACTIONS(4835), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(469)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4823), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4823), + [anon_sym_BSLASH] = ACTIONS(4827), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4829), + [anon_sym_PLUS] = ACTIONS(4831), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_AMP] = ACTIONS(4835), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4837), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(470)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4823), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4823), + [anon_sym_BSLASH] = ACTIONS(4827), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4829), + [anon_sym_PLUS] = ACTIONS(4831), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_AMP] = ACTIONS(4835), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4837), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4839), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(471)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4823), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4823), + [anon_sym_BSLASH] = ACTIONS(4827), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4829), + [anon_sym_PLUS] = ACTIONS(4831), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_AMP] = ACTIONS(4835), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4837), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4839), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4841), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(472)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4823), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4823), + [anon_sym_BSLASH] = ACTIONS(4827), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4829), + [anon_sym_PLUS] = ACTIONS(4831), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_AMP] = ACTIONS(4835), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4837), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4839), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4841), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4843), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(473)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4823), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4823), + [anon_sym_BSLASH] = ACTIONS(4827), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4829), + [anon_sym_PLUS] = ACTIONS(4831), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_AMP] = ACTIONS(4835), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(474)] = { + [sym__print_method_output_list] = STATE(6382), + [sym__unparenthesized_print_output_expression] = STATE(4710), + [sym__print_output_call_binary_expression] = STATE(4710), + [sym__print_output_call_operand] = STATE(11001), + [sym__print_output_member_comparison_expression] = STATE(5244), + [sym__print_output_call_member_expression] = STATE(871), + [sym__print_output_call_expression] = STATE(2617), + [sym__print_output_qualified_callable] = STATE(13129), + [sym_argument_list] = STATE(6403), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(11002), + [sym_comparison_expression] = STATE(4702), + [sym__comparison_operand] = STATE(11305), + [sym_logical_value_expression] = STATE(4703), + [sym__callable_expression] = STATE(13130), + [sym_call_expression] = STATE(10298), + [sym_new_expression] = STATE(1126), + [sym_addressof_expression] = STATE(1126), + [sym_type_of_expression] = STATE(1126), + [sym_member_expression] = STATE(1168), + [sym_qualified_member_expression] = STATE(1206), + [sym_implicit_member_expression] = STATE(1206), + [sym_parenthesized_expression] = STATE(10077), + [sym_binary_expression] = STATE(1209), + [sym_unary_expression] = STATE(2675), + [sym__signed_unary_expression] = STATE(1348), + [sym__literal] = STATE(1126), + [sym_boolean_literal] = STATE(1126), + [sym_file_number_literal] = STATE(1126), + [sym_identifier] = ACTIONS(4845), + [sym_newline] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(4094), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4096), + [aux_sym_frm_property_statement_token1] = ACTIONS(4847), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4561), + [aux_sym__attribute_identifier_token1] = ACTIONS(4096), + [aux_sym_option_statement_token3] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4096), + [aux_sym_preprocessor_const_token1] = ACTIONS(4096), + [sym_static_modifier] = ACTIONS(4096), + [sym__dim_keyword] = ACTIONS(4096), + [sym__redim_keyword] = ACTIONS(4096), + [aux_sym_get_accessor_token1] = ACTIONS(4096), + [aux_sym_set_accessor_token1] = ACTIONS(4096), + [aux_sym_const_declaration_token1] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4849), + [aux_sym_as_type_clause_token2] = ACTIONS(4569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4851), + [aux_sym_visibility_token1] = ACTIONS(4096), + [aux_sym_visibility_token2] = ACTIONS(4096), + [aux_sym_elseif_fragment_token1] = ACTIONS(4096), + [aux_sym_else_fragment_token1] = ACTIONS(4096), + [aux_sym_select_statement_token1] = ACTIONS(4096), + [aux_sym__for_header_token1] = ACTIONS(4096), + [aux_sym_do_statement_token1] = ACTIONS(4096), + [aux_sym_do_condition_token1] = ACTIONS(4096), + [aux_sym_with_statement_token1] = ACTIONS(4096), + [aux_sym_exit_statement_token1] = ACTIONS(4096), + [sym_end_statement] = ACTIONS(4094), + [aux_sym_on_goto_statement_token1] = ACTIONS(4096), + [aux_sym_on_goto_statement_token2] = ACTIONS(4096), + [aux_sym_on_error_statement_token2] = ACTIONS(4096), + [sym__ambiguous_redim_statement] = ACTIONS(4094), + [aux_sym_erase_statement_token1] = ACTIONS(4096), + [aux_sym_open_statement_token1] = ACTIONS(4096), + [aux_sym_file_mode_token2] = ACTIONS(4096), + [aux_sym_file_access_token2] = ACTIONS(4096), + [aux_sym_file_lock_token2] = ACTIONS(4096), + [aux_sym_print_statement_token1] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4094), + [aux_sym_close_statement_token1] = ACTIONS(4096), + [aux_sym_put_statement_token1] = ACTIONS(4096), + [aux_sym_unlock_statement_token1] = ACTIONS(4096), + [aux_sym_seek_statement_token1] = ACTIONS(4096), + [sym_reset_statement] = ACTIONS(4096), + [aux_sym_raise_event_statement_token1] = ACTIONS(4096), + [sym_stop_statement] = ACTIONS(4096), + [sym_beep_statement] = ACTIONS(4096), + [aux_sym_unload_statement_token1] = ACTIONS(4096), + [aux_sym_def_type_statement_token1] = ACTIONS(4096), + [aux_sym_def_type_statement_token2] = ACTIONS(4096), + [aux_sym_def_type_statement_token3] = ACTIONS(4096), + [aux_sym_def_type_statement_token4] = ACTIONS(4096), + [aux_sym_def_type_statement_token5] = ACTIONS(4096), + [aux_sym_def_type_statement_token6] = ACTIONS(4096), + [aux_sym_def_type_statement_token7] = ACTIONS(4096), + [aux_sym_def_type_statement_token8] = ACTIONS(4096), + [aux_sym_def_type_statement_token9] = ACTIONS(4096), + [aux_sym_def_type_statement_token10] = ACTIONS(4096), + [aux_sym_def_type_statement_token11] = ACTIONS(4096), + [aux_sym_def_type_statement_token12] = ACTIONS(4096), + [aux_sym_def_type_statement_token13] = ACTIONS(4096), + [aux_sym_def_type_statement_token14] = ACTIONS(4096), + [aux_sym_call_statement_token1] = ACTIONS(4096), + [sym__ambiguous_call_statement] = ACTIONS(4096), + [aux_sym_addressof_expression_token1] = ACTIONS(4577), + [aux_sym_type_of_expression_token1] = ACTIONS(4579), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(4853), + [sym_number_literal] = ACTIONS(4853), + [aux_sym_boolean_literal_token1] = ACTIONS(4583), + [aux_sym_boolean_literal_token2] = ACTIONS(4583), + [sym_nothing_literal] = ACTIONS(4855), + [sym_null_literal] = ACTIONS(4855), + [sym_empty_literal] = ACTIONS(4855), + [sym_date_literal] = ACTIONS(4853), + [anon_sym_POUND] = ACTIONS(4587), + }, + [STATE(475)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(476)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4641), + [anon_sym_BANG] = ACTIONS(4643), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(477)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_declaration_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4437), + [aux_sym_enum_declaration_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4437), + [aux_sym_declare_function_statement_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [aux_sym__property_get_header_token1] = ACTIONS(4437), + [aux_sym_event_declaration_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_array_bound_token1] = ACTIONS(4437), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(478)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4517), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_array_bound_token1] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(479)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_declaration_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4593), + [aux_sym_enum_declaration_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4593), + [aux_sym_declare_function_statement_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [aux_sym__property_get_header_token1] = ACTIONS(4593), + [aux_sym_event_declaration_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_array_bound_token1] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(480)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_declaration_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4597), + [aux_sym_enum_declaration_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4597), + [aux_sym_declare_function_statement_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [aux_sym__property_get_header_token1] = ACTIONS(4597), + [aux_sym_event_declaration_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_array_bound_token1] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(481)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_declaration_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4509), + [aux_sym_enum_declaration_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4509), + [aux_sym_declare_function_statement_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [aux_sym__property_get_header_token1] = ACTIONS(4509), + [aux_sym_event_declaration_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(482)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(483)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(484)] = { + [sym_output_list] = STATE(7052), + [sym__print_output_expression] = STATE(4885), + [sym__unparenthesized_print_output_expression] = STATE(4885), + [sym__print_output_call_binary_expression] = STATE(4885), + [sym__print_output_call_operand] = STATE(10998), + [sym__print_output_member_comparison_expression] = STATE(5781), + [sym__print_output_call_member_expression] = STATE(828), + [sym__print_output_call_expression] = STATE(2577), + [sym__print_output_qualified_callable] = STATE(13423), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(11000), + [sym_comparison_expression] = STATE(4886), + [sym__comparison_operand] = STATE(11453), + [sym_logical_value_expression] = STATE(4887), + [sym__callable_expression] = STATE(13426), + [sym_call_expression] = STATE(10296), + [sym_new_expression] = STATE(1056), + [sym_addressof_expression] = STATE(1056), + [sym_type_of_expression] = STATE(1056), + [sym_member_expression] = STATE(1073), + [sym_qualified_member_expression] = STATE(1142), + [sym_implicit_member_expression] = STATE(1142), + [sym_parenthesized_expression] = STATE(1084), + [sym_binary_expression] = STATE(1085), + [sym_unary_expression] = STATE(2774), + [sym__signed_unary_expression] = STATE(1246), + [sym__literal] = STATE(1056), + [sym_boolean_literal] = STATE(1056), + [sym_file_number_literal] = STATE(1056), + [sym_identifier] = ACTIONS(4857), + [sym_newline] = ACTIONS(4072), + [anon_sym_COLON] = ACTIONS(4072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4074), + [aux_sym_frm_property_statement_token1] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4527), + [aux_sym__attribute_identifier_token1] = ACTIONS(4074), + [aux_sym_option_statement_token3] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4074), + [aux_sym_preprocessor_const_token1] = ACTIONS(4074), + [sym_static_modifier] = ACTIONS(4074), + [sym__dim_keyword] = ACTIONS(4074), + [sym__redim_keyword] = ACTIONS(4074), + [aux_sym_get_accessor_token1] = ACTIONS(4074), + [aux_sym_set_accessor_token1] = ACTIONS(4074), + [aux_sym_const_declaration_token1] = ACTIONS(4074), + [anon_sym_LPAREN] = ACTIONS(4861), + [aux_sym_as_type_clause_token2] = ACTIONS(4535), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4863), + [aux_sym_visibility_token1] = ACTIONS(4074), + [aux_sym_visibility_token2] = ACTIONS(4074), + [aux_sym_elseif_fragment_token1] = ACTIONS(4074), + [aux_sym_else_fragment_token1] = ACTIONS(4074), + [aux_sym_select_statement_token1] = ACTIONS(4074), + [aux_sym_select_statement_token2] = ACTIONS(4074), + [aux_sym__for_header_token1] = ACTIONS(4074), + [aux_sym_do_statement_token1] = ACTIONS(4074), + [aux_sym_do_condition_token1] = ACTIONS(4074), + [aux_sym_with_statement_token1] = ACTIONS(4074), + [aux_sym_exit_statement_token1] = ACTIONS(4074), + [sym_end_statement] = ACTIONS(4072), + [aux_sym_on_goto_statement_token1] = ACTIONS(4074), + [aux_sym_on_goto_statement_token2] = ACTIONS(4074), + [aux_sym_on_error_statement_token2] = ACTIONS(4074), + [sym__ambiguous_redim_statement] = ACTIONS(4072), + [aux_sym_erase_statement_token1] = ACTIONS(4074), + [aux_sym_open_statement_token1] = ACTIONS(4074), + [aux_sym_file_mode_token2] = ACTIONS(4074), + [aux_sym_file_access_token2] = ACTIONS(4074), + [aux_sym_file_lock_token2] = ACTIONS(4074), + [aux_sym_print_statement_token1] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_QMARK] = ACTIONS(4072), + [aux_sym_close_statement_token1] = ACTIONS(4074), + [aux_sym_put_statement_token1] = ACTIONS(4074), + [aux_sym_unlock_statement_token1] = ACTIONS(4074), + [aux_sym_seek_statement_token1] = ACTIONS(4074), + [sym_reset_statement] = ACTIONS(4074), + [aux_sym_raise_event_statement_token1] = ACTIONS(4074), + [sym_stop_statement] = ACTIONS(4074), + [sym_beep_statement] = ACTIONS(4074), + [aux_sym_unload_statement_token1] = ACTIONS(4074), + [aux_sym_def_type_statement_token1] = ACTIONS(4074), + [aux_sym_def_type_statement_token2] = ACTIONS(4074), + [aux_sym_def_type_statement_token3] = ACTIONS(4074), + [aux_sym_def_type_statement_token4] = ACTIONS(4074), + [aux_sym_def_type_statement_token5] = ACTIONS(4074), + [aux_sym_def_type_statement_token6] = ACTIONS(4074), + [aux_sym_def_type_statement_token7] = ACTIONS(4074), + [aux_sym_def_type_statement_token8] = ACTIONS(4074), + [aux_sym_def_type_statement_token9] = ACTIONS(4074), + [aux_sym_def_type_statement_token10] = ACTIONS(4074), + [aux_sym_def_type_statement_token11] = ACTIONS(4074), + [aux_sym_def_type_statement_token12] = ACTIONS(4074), + [aux_sym_def_type_statement_token13] = ACTIONS(4074), + [aux_sym_def_type_statement_token14] = ACTIONS(4074), + [aux_sym_call_statement_token1] = ACTIONS(4074), + [sym__ambiguous_call_statement] = ACTIONS(4074), + [aux_sym_addressof_expression_token1] = ACTIONS(4543), + [aux_sym_type_of_expression_token1] = ACTIONS(4545), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(4865), + [sym_number_literal] = ACTIONS(4865), + [aux_sym_boolean_literal_token1] = ACTIONS(4549), + [aux_sym_boolean_literal_token2] = ACTIONS(4549), + [sym_nothing_literal] = ACTIONS(4867), + [sym_null_literal] = ACTIONS(4867), + [sym_empty_literal] = ACTIONS(4867), + [sym_date_literal] = ACTIONS(4865), + [anon_sym_POUND] = ACTIONS(4553), + }, + [STATE(485)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_declaration_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4509), + [aux_sym_enum_declaration_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4509), + [aux_sym_declare_function_statement_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [aux_sym__property_get_header_token1] = ACTIONS(4509), + [aux_sym_event_declaration_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token3] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(486)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(487)] = { + [sym_output_list] = STATE(6765), + [sym__print_output_expression] = STATE(4701), + [sym__unparenthesized_print_output_expression] = STATE(4701), + [sym__print_output_call_binary_expression] = STATE(4701), + [sym__print_output_call_operand] = STATE(11001), + [sym__print_output_member_comparison_expression] = STATE(5244), + [sym__print_output_call_member_expression] = STATE(871), + [sym__print_output_call_expression] = STATE(2617), + [sym__print_output_qualified_callable] = STATE(13129), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(11002), + [sym_comparison_expression] = STATE(4702), + [sym__comparison_operand] = STATE(11305), + [sym_logical_value_expression] = STATE(4703), + [sym__callable_expression] = STATE(13130), + [sym_call_expression] = STATE(10298), + [sym_new_expression] = STATE(1126), + [sym_addressof_expression] = STATE(1126), + [sym_type_of_expression] = STATE(1126), + [sym_member_expression] = STATE(1168), + [sym_qualified_member_expression] = STATE(1206), + [sym_implicit_member_expression] = STATE(1206), + [sym_parenthesized_expression] = STATE(1194), + [sym_binary_expression] = STATE(1209), + [sym_unary_expression] = STATE(2675), + [sym__signed_unary_expression] = STATE(1348), + [sym__literal] = STATE(1126), + [sym_boolean_literal] = STATE(1126), + [sym_file_number_literal] = STATE(1126), + [sym_identifier] = ACTIONS(4845), + [sym_newline] = ACTIONS(4086), + [anon_sym_COLON] = ACTIONS(4086), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4088), + [aux_sym_frm_property_statement_token1] = ACTIONS(4847), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4561), + [aux_sym__attribute_identifier_token1] = ACTIONS(4088), + [aux_sym_option_statement_token3] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4088), + [aux_sym_preprocessor_const_token1] = ACTIONS(4088), + [sym_static_modifier] = ACTIONS(4088), + [sym__dim_keyword] = ACTIONS(4088), + [sym__redim_keyword] = ACTIONS(4088), + [aux_sym_get_accessor_token1] = ACTIONS(4088), + [aux_sym_set_accessor_token1] = ACTIONS(4088), + [aux_sym_const_declaration_token1] = ACTIONS(4088), + [anon_sym_LPAREN] = ACTIONS(4869), + [aux_sym_as_type_clause_token2] = ACTIONS(4569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4851), + [aux_sym_visibility_token1] = ACTIONS(4088), + [aux_sym_visibility_token2] = ACTIONS(4088), + [aux_sym_elseif_fragment_token1] = ACTIONS(4088), + [aux_sym_else_fragment_token1] = ACTIONS(4088), + [aux_sym_select_statement_token1] = ACTIONS(4088), + [aux_sym__for_header_token1] = ACTIONS(4088), + [aux_sym_do_statement_token1] = ACTIONS(4088), + [aux_sym_do_condition_token1] = ACTIONS(4088), + [aux_sym_with_statement_token1] = ACTIONS(4088), + [aux_sym_exit_statement_token1] = ACTIONS(4088), + [sym_end_statement] = ACTIONS(4086), + [aux_sym_on_goto_statement_token1] = ACTIONS(4088), + [aux_sym_on_goto_statement_token2] = ACTIONS(4088), + [aux_sym_on_error_statement_token2] = ACTIONS(4088), + [sym__ambiguous_redim_statement] = ACTIONS(4086), + [aux_sym_erase_statement_token1] = ACTIONS(4088), + [aux_sym_open_statement_token1] = ACTIONS(4088), + [aux_sym_file_mode_token2] = ACTIONS(4088), + [aux_sym_file_access_token2] = ACTIONS(4088), + [aux_sym_file_lock_token2] = ACTIONS(4088), + [aux_sym_print_statement_token1] = ACTIONS(4088), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4086), + [aux_sym_close_statement_token1] = ACTIONS(4088), + [aux_sym_put_statement_token1] = ACTIONS(4088), + [aux_sym_unlock_statement_token1] = ACTIONS(4088), + [aux_sym_seek_statement_token1] = ACTIONS(4088), + [sym_reset_statement] = ACTIONS(4088), + [aux_sym_raise_event_statement_token1] = ACTIONS(4088), + [sym_stop_statement] = ACTIONS(4088), + [sym_beep_statement] = ACTIONS(4088), + [aux_sym_unload_statement_token1] = ACTIONS(4088), + [aux_sym_def_type_statement_token1] = ACTIONS(4088), + [aux_sym_def_type_statement_token2] = ACTIONS(4088), + [aux_sym_def_type_statement_token3] = ACTIONS(4088), + [aux_sym_def_type_statement_token4] = ACTIONS(4088), + [aux_sym_def_type_statement_token5] = ACTIONS(4088), + [aux_sym_def_type_statement_token6] = ACTIONS(4088), + [aux_sym_def_type_statement_token7] = ACTIONS(4088), + [aux_sym_def_type_statement_token8] = ACTIONS(4088), + [aux_sym_def_type_statement_token9] = ACTIONS(4088), + [aux_sym_def_type_statement_token10] = ACTIONS(4088), + [aux_sym_def_type_statement_token11] = ACTIONS(4088), + [aux_sym_def_type_statement_token12] = ACTIONS(4088), + [aux_sym_def_type_statement_token13] = ACTIONS(4088), + [aux_sym_def_type_statement_token14] = ACTIONS(4088), + [aux_sym_call_statement_token1] = ACTIONS(4088), + [sym__ambiguous_call_statement] = ACTIONS(4088), + [aux_sym_addressof_expression_token1] = ACTIONS(4577), + [aux_sym_type_of_expression_token1] = ACTIONS(4579), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(4853), + [sym_number_literal] = ACTIONS(4853), + [aux_sym_boolean_literal_token1] = ACTIONS(4583), + [aux_sym_boolean_literal_token2] = ACTIONS(4583), + [sym_nothing_literal] = ACTIONS(4855), + [sym_null_literal] = ACTIONS(4855), + [sym_empty_literal] = ACTIONS(4855), + [sym_date_literal] = ACTIONS(4853), + [anon_sym_POUND] = ACTIONS(4587), + }, + [STATE(488)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_declaration_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4625), + [aux_sym_enum_declaration_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4625), + [aux_sym_declare_function_statement_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [aux_sym__property_get_header_token1] = ACTIONS(4625), + [aux_sym_event_declaration_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_array_bound_token1] = ACTIONS(4625), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(489)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(490)] = { + [sym_output_list] = STATE(6779), + [sym__print_output_expression] = STATE(4701), + [sym__unparenthesized_print_output_expression] = STATE(4701), + [sym__print_output_call_binary_expression] = STATE(4701), + [sym__print_output_call_operand] = STATE(11001), + [sym__print_output_member_comparison_expression] = STATE(5244), + [sym__print_output_call_member_expression] = STATE(871), + [sym__print_output_call_expression] = STATE(2617), + [sym__print_output_qualified_callable] = STATE(13129), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(11002), + [sym_comparison_expression] = STATE(4702), + [sym__comparison_operand] = STATE(11305), + [sym_logical_value_expression] = STATE(4703), + [sym__callable_expression] = STATE(13130), + [sym_call_expression] = STATE(10298), + [sym_new_expression] = STATE(1126), + [sym_addressof_expression] = STATE(1126), + [sym_type_of_expression] = STATE(1126), + [sym_member_expression] = STATE(1168), + [sym_qualified_member_expression] = STATE(1206), + [sym_implicit_member_expression] = STATE(1206), + [sym_parenthesized_expression] = STATE(1194), + [sym_binary_expression] = STATE(1209), + [sym_unary_expression] = STATE(2675), + [sym__signed_unary_expression] = STATE(1348), + [sym__literal] = STATE(1126), + [sym_boolean_literal] = STATE(1126), + [sym_file_number_literal] = STATE(1126), + [sym_identifier] = ACTIONS(4845), + [sym_newline] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4092), + [aux_sym_frm_property_statement_token1] = ACTIONS(4847), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4561), + [aux_sym__attribute_identifier_token1] = ACTIONS(4092), + [aux_sym_option_statement_token3] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4092), + [aux_sym_preprocessor_const_token1] = ACTIONS(4092), + [sym_static_modifier] = ACTIONS(4092), + [sym__dim_keyword] = ACTIONS(4092), + [sym__redim_keyword] = ACTIONS(4092), + [aux_sym_get_accessor_token1] = ACTIONS(4092), + [aux_sym_set_accessor_token1] = ACTIONS(4092), + [aux_sym_const_declaration_token1] = ACTIONS(4092), + [anon_sym_LPAREN] = ACTIONS(4869), + [aux_sym_as_type_clause_token2] = ACTIONS(4569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4851), + [aux_sym_visibility_token1] = ACTIONS(4092), + [aux_sym_visibility_token2] = ACTIONS(4092), + [aux_sym_elseif_fragment_token1] = ACTIONS(4092), + [aux_sym_else_fragment_token1] = ACTIONS(4092), + [aux_sym_select_statement_token1] = ACTIONS(4092), + [aux_sym__for_header_token1] = ACTIONS(4092), + [aux_sym_do_statement_token1] = ACTIONS(4092), + [aux_sym_do_condition_token1] = ACTIONS(4092), + [aux_sym_with_statement_token1] = ACTIONS(4092), + [aux_sym_exit_statement_token1] = ACTIONS(4092), + [sym_end_statement] = ACTIONS(4090), + [aux_sym_on_goto_statement_token1] = ACTIONS(4092), + [aux_sym_on_goto_statement_token2] = ACTIONS(4092), + [aux_sym_on_error_statement_token2] = ACTIONS(4092), + [sym__ambiguous_redim_statement] = ACTIONS(4090), + [aux_sym_erase_statement_token1] = ACTIONS(4092), + [aux_sym_open_statement_token1] = ACTIONS(4092), + [aux_sym_file_mode_token2] = ACTIONS(4092), + [aux_sym_file_access_token2] = ACTIONS(4092), + [aux_sym_file_lock_token2] = ACTIONS(4092), + [aux_sym_print_statement_token1] = ACTIONS(4092), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4090), + [aux_sym_close_statement_token1] = ACTIONS(4092), + [aux_sym_put_statement_token1] = ACTIONS(4092), + [aux_sym_unlock_statement_token1] = ACTIONS(4092), + [aux_sym_seek_statement_token1] = ACTIONS(4092), + [sym_reset_statement] = ACTIONS(4092), + [aux_sym_raise_event_statement_token1] = ACTIONS(4092), + [sym_stop_statement] = ACTIONS(4092), + [sym_beep_statement] = ACTIONS(4092), + [aux_sym_unload_statement_token1] = ACTIONS(4092), + [aux_sym_def_type_statement_token1] = ACTIONS(4092), + [aux_sym_def_type_statement_token2] = ACTIONS(4092), + [aux_sym_def_type_statement_token3] = ACTIONS(4092), + [aux_sym_def_type_statement_token4] = ACTIONS(4092), + [aux_sym_def_type_statement_token5] = ACTIONS(4092), + [aux_sym_def_type_statement_token6] = ACTIONS(4092), + [aux_sym_def_type_statement_token7] = ACTIONS(4092), + [aux_sym_def_type_statement_token8] = ACTIONS(4092), + [aux_sym_def_type_statement_token9] = ACTIONS(4092), + [aux_sym_def_type_statement_token10] = ACTIONS(4092), + [aux_sym_def_type_statement_token11] = ACTIONS(4092), + [aux_sym_def_type_statement_token12] = ACTIONS(4092), + [aux_sym_def_type_statement_token13] = ACTIONS(4092), + [aux_sym_def_type_statement_token14] = ACTIONS(4092), + [aux_sym_call_statement_token1] = ACTIONS(4092), + [sym__ambiguous_call_statement] = ACTIONS(4092), + [aux_sym_addressof_expression_token1] = ACTIONS(4577), + [aux_sym_type_of_expression_token1] = ACTIONS(4579), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(4853), + [sym_number_literal] = ACTIONS(4853), + [aux_sym_boolean_literal_token1] = ACTIONS(4583), + [aux_sym_boolean_literal_token2] = ACTIONS(4583), + [sym_nothing_literal] = ACTIONS(4855), + [sym_null_literal] = ACTIONS(4855), + [sym_empty_literal] = ACTIONS(4855), + [sym_date_literal] = ACTIONS(4853), + [anon_sym_POUND] = ACTIONS(4587), + }, + [STATE(491)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_declaration_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4509), + [aux_sym_enum_declaration_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4509), + [aux_sym_declare_function_statement_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [aux_sym__property_get_header_token1] = ACTIONS(4509), + [aux_sym_event_declaration_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_array_bound_token1] = ACTIONS(4509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(492)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(493)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_declaration_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4601), + [aux_sym_enum_declaration_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4601), + [aux_sym_declare_function_statement_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [aux_sym__property_get_header_token1] = ACTIONS(4601), + [aux_sym_event_declaration_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_array_bound_token1] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(494)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4605), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_array_bound_token1] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(495)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_declaration_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4609), + [aux_sym_enum_declaration_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4609), + [aux_sym_declare_function_statement_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [aux_sym__property_get_header_token1] = ACTIONS(4609), + [aux_sym_event_declaration_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_array_bound_token1] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(496)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4621), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_array_bound_token1] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(497)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(498)] = { + [sym_output_list] = STATE(6711), + [sym__print_output_expression] = STATE(4879), + [sym__unparenthesized_print_output_expression] = STATE(4879), + [sym__print_output_call_binary_expression] = STATE(4879), + [sym__print_output_call_operand] = STATE(10983), + [sym__print_output_member_comparison_expression] = STATE(5764), + [sym__print_output_call_member_expression] = STATE(866), + [sym__print_output_call_expression] = STATE(2771), + [sym__print_output_qualified_callable] = STATE(13617), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10982), + [sym_comparison_expression] = STATE(4880), + [sym__comparison_operand] = STATE(11262), + [sym_logical_value_expression] = STATE(4881), + [sym__callable_expression] = STATE(13618), + [sym_call_expression] = STATE(10290), + [sym_new_expression] = STATE(1452), + [sym_addressof_expression] = STATE(1452), + [sym_type_of_expression] = STATE(1452), + [sym_member_expression] = STATE(1453), + [sym_qualified_member_expression] = STATE(1441), + [sym_implicit_member_expression] = STATE(1441), + [sym_parenthesized_expression] = STATE(1457), + [sym_binary_expression] = STATE(1211), + [sym_unary_expression] = STATE(2897), + [sym__signed_unary_expression] = STATE(1416), + [sym__literal] = STATE(1452), + [sym_boolean_literal] = STATE(1452), + [sym_file_number_literal] = STATE(1452), + [sym_identifier] = ACTIONS(4871), + [sym_newline] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4092), + [aux_sym_frm_property_statement_token1] = ACTIONS(4873), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4778), + [aux_sym__attribute_identifier_token1] = ACTIONS(4092), + [aux_sym_option_statement_token3] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4092), + [aux_sym_preprocessor_const_token1] = ACTIONS(4092), + [sym_static_modifier] = ACTIONS(4092), + [sym__dim_keyword] = ACTIONS(4092), + [sym__redim_keyword] = ACTIONS(4092), + [aux_sym_get_accessor_token1] = ACTIONS(4092), + [aux_sym_set_accessor_token1] = ACTIONS(4092), + [aux_sym_const_declaration_token1] = ACTIONS(4092), + [anon_sym_LPAREN] = ACTIONS(4875), + [aux_sym_as_type_clause_token2] = ACTIONS(4786), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4877), + [aux_sym_visibility_token1] = ACTIONS(4092), + [aux_sym_visibility_token2] = ACTIONS(4092), + [aux_sym_elseif_fragment_token1] = ACTIONS(4092), + [aux_sym_else_fragment_token1] = ACTIONS(4092), + [aux_sym_select_statement_token1] = ACTIONS(4092), + [aux_sym__for_header_token1] = ACTIONS(4092), + [aux_sym_do_statement_token1] = ACTIONS(4092), + [aux_sym_do_statement_token2] = ACTIONS(4092), + [aux_sym_do_condition_token1] = ACTIONS(4092), + [aux_sym_with_statement_token1] = ACTIONS(4092), + [aux_sym_exit_statement_token1] = ACTIONS(4092), + [sym_end_statement] = ACTIONS(4090), + [aux_sym_on_goto_statement_token1] = ACTIONS(4092), + [aux_sym_on_goto_statement_token2] = ACTIONS(4092), + [aux_sym_on_error_statement_token2] = ACTIONS(4092), + [sym__ambiguous_redim_statement] = ACTIONS(4090), + [aux_sym_erase_statement_token1] = ACTIONS(4092), + [aux_sym_open_statement_token1] = ACTIONS(4092), + [aux_sym_file_mode_token2] = ACTIONS(4092), + [aux_sym_file_access_token2] = ACTIONS(4092), + [aux_sym_file_lock_token2] = ACTIONS(4092), + [aux_sym_print_statement_token1] = ACTIONS(4092), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_QMARK] = ACTIONS(4090), + [aux_sym_close_statement_token1] = ACTIONS(4092), + [aux_sym_put_statement_token1] = ACTIONS(4092), + [aux_sym_unlock_statement_token1] = ACTIONS(4092), + [aux_sym_seek_statement_token1] = ACTIONS(4092), + [sym_reset_statement] = ACTIONS(4092), + [aux_sym_raise_event_statement_token1] = ACTIONS(4092), + [sym_stop_statement] = ACTIONS(4092), + [sym_beep_statement] = ACTIONS(4092), + [aux_sym_unload_statement_token1] = ACTIONS(4092), + [aux_sym_def_type_statement_token1] = ACTIONS(4092), + [aux_sym_def_type_statement_token2] = ACTIONS(4092), + [aux_sym_def_type_statement_token3] = ACTIONS(4092), + [aux_sym_def_type_statement_token4] = ACTIONS(4092), + [aux_sym_def_type_statement_token5] = ACTIONS(4092), + [aux_sym_def_type_statement_token6] = ACTIONS(4092), + [aux_sym_def_type_statement_token7] = ACTIONS(4092), + [aux_sym_def_type_statement_token8] = ACTIONS(4092), + [aux_sym_def_type_statement_token9] = ACTIONS(4092), + [aux_sym_def_type_statement_token10] = ACTIONS(4092), + [aux_sym_def_type_statement_token11] = ACTIONS(4092), + [aux_sym_def_type_statement_token12] = ACTIONS(4092), + [aux_sym_def_type_statement_token13] = ACTIONS(4092), + [aux_sym_def_type_statement_token14] = ACTIONS(4092), + [aux_sym_call_statement_token1] = ACTIONS(4092), + [sym__ambiguous_call_statement] = ACTIONS(4092), + [aux_sym_addressof_expression_token1] = ACTIONS(4794), + [aux_sym_type_of_expression_token1] = ACTIONS(4796), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(4879), + [sym_number_literal] = ACTIONS(4879), + [aux_sym_boolean_literal_token1] = ACTIONS(4800), + [aux_sym_boolean_literal_token2] = ACTIONS(4800), + [sym_nothing_literal] = ACTIONS(4881), + [sym_null_literal] = ACTIONS(4881), + [sym_empty_literal] = ACTIONS(4881), + [sym_date_literal] = ACTIONS(4879), + [anon_sym_POUND] = ACTIONS(4804), + }, + [STATE(499)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_declaration_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4447), + [aux_sym_enum_declaration_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4447), + [aux_sym_declare_function_statement_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [aux_sym__property_get_header_token1] = ACTIONS(4447), + [aux_sym_event_declaration_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token3] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(500)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_declaration_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4477), + [aux_sym_enum_declaration_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4477), + [aux_sym_declare_function_statement_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [aux_sym__property_get_header_token1] = ACTIONS(4477), + [aux_sym_event_declaration_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token3] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(501)] = { + [sym__print_method_output_list] = STATE(7077), + [sym__unparenthesized_print_output_expression] = STATE(4890), + [sym__print_output_call_binary_expression] = STATE(4890), + [sym__print_output_call_operand] = STATE(10998), + [sym__print_output_member_comparison_expression] = STATE(5781), + [sym__print_output_call_member_expression] = STATE(828), + [sym__print_output_call_expression] = STATE(2577), + [sym__print_output_qualified_callable] = STATE(13423), + [sym_argument_list] = STATE(7079), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(11000), + [sym_comparison_expression] = STATE(4886), + [sym__comparison_operand] = STATE(11453), + [sym_logical_value_expression] = STATE(4887), + [sym__callable_expression] = STATE(13426), + [sym_call_expression] = STATE(10296), + [sym_new_expression] = STATE(1056), + [sym_addressof_expression] = STATE(1056), + [sym_type_of_expression] = STATE(1056), + [sym_member_expression] = STATE(1073), + [sym_qualified_member_expression] = STATE(1142), + [sym_implicit_member_expression] = STATE(1142), + [sym_parenthesized_expression] = STATE(10077), + [sym_binary_expression] = STATE(1085), + [sym_unary_expression] = STATE(2774), + [sym__signed_unary_expression] = STATE(1246), + [sym__literal] = STATE(1056), + [sym_boolean_literal] = STATE(1056), + [sym_file_number_literal] = STATE(1056), + [sym_identifier] = ACTIONS(4857), + [sym_newline] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(4094), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4096), + [aux_sym_frm_property_statement_token1] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4527), + [aux_sym__attribute_identifier_token1] = ACTIONS(4096), + [aux_sym_option_statement_token3] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4096), + [aux_sym_preprocessor_const_token1] = ACTIONS(4096), + [sym_static_modifier] = ACTIONS(4096), + [sym__dim_keyword] = ACTIONS(4096), + [sym__redim_keyword] = ACTIONS(4096), + [aux_sym_get_accessor_token1] = ACTIONS(4096), + [aux_sym_set_accessor_token1] = ACTIONS(4096), + [aux_sym_const_declaration_token1] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4883), + [aux_sym_as_type_clause_token2] = ACTIONS(4535), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4863), + [aux_sym_visibility_token1] = ACTIONS(4096), + [aux_sym_visibility_token2] = ACTIONS(4096), + [aux_sym_elseif_fragment_token1] = ACTIONS(4096), + [aux_sym_else_fragment_token1] = ACTIONS(4096), + [aux_sym_select_statement_token1] = ACTIONS(4096), + [aux_sym_select_statement_token2] = ACTIONS(4096), + [aux_sym__for_header_token1] = ACTIONS(4096), + [aux_sym_do_statement_token1] = ACTIONS(4096), + [aux_sym_do_condition_token1] = ACTIONS(4096), + [aux_sym_with_statement_token1] = ACTIONS(4096), + [aux_sym_exit_statement_token1] = ACTIONS(4096), + [sym_end_statement] = ACTIONS(4094), + [aux_sym_on_goto_statement_token1] = ACTIONS(4096), + [aux_sym_on_goto_statement_token2] = ACTIONS(4096), + [aux_sym_on_error_statement_token2] = ACTIONS(4096), + [sym__ambiguous_redim_statement] = ACTIONS(4094), + [aux_sym_erase_statement_token1] = ACTIONS(4096), + [aux_sym_open_statement_token1] = ACTIONS(4096), + [aux_sym_file_mode_token2] = ACTIONS(4096), + [aux_sym_file_access_token2] = ACTIONS(4096), + [aux_sym_file_lock_token2] = ACTIONS(4096), + [aux_sym_print_statement_token1] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_QMARK] = ACTIONS(4094), + [aux_sym_close_statement_token1] = ACTIONS(4096), + [aux_sym_put_statement_token1] = ACTIONS(4096), + [aux_sym_unlock_statement_token1] = ACTIONS(4096), + [aux_sym_seek_statement_token1] = ACTIONS(4096), + [sym_reset_statement] = ACTIONS(4096), + [aux_sym_raise_event_statement_token1] = ACTIONS(4096), + [sym_stop_statement] = ACTIONS(4096), + [sym_beep_statement] = ACTIONS(4096), + [aux_sym_unload_statement_token1] = ACTIONS(4096), + [aux_sym_def_type_statement_token1] = ACTIONS(4096), + [aux_sym_def_type_statement_token2] = ACTIONS(4096), + [aux_sym_def_type_statement_token3] = ACTIONS(4096), + [aux_sym_def_type_statement_token4] = ACTIONS(4096), + [aux_sym_def_type_statement_token5] = ACTIONS(4096), + [aux_sym_def_type_statement_token6] = ACTIONS(4096), + [aux_sym_def_type_statement_token7] = ACTIONS(4096), + [aux_sym_def_type_statement_token8] = ACTIONS(4096), + [aux_sym_def_type_statement_token9] = ACTIONS(4096), + [aux_sym_def_type_statement_token10] = ACTIONS(4096), + [aux_sym_def_type_statement_token11] = ACTIONS(4096), + [aux_sym_def_type_statement_token12] = ACTIONS(4096), + [aux_sym_def_type_statement_token13] = ACTIONS(4096), + [aux_sym_def_type_statement_token14] = ACTIONS(4096), + [aux_sym_call_statement_token1] = ACTIONS(4096), + [sym__ambiguous_call_statement] = ACTIONS(4096), + [aux_sym_addressof_expression_token1] = ACTIONS(4543), + [aux_sym_type_of_expression_token1] = ACTIONS(4545), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(4865), + [sym_number_literal] = ACTIONS(4865), + [aux_sym_boolean_literal_token1] = ACTIONS(4549), + [aux_sym_boolean_literal_token2] = ACTIONS(4549), + [sym_nothing_literal] = ACTIONS(4867), + [sym_null_literal] = ACTIONS(4867), + [sym_empty_literal] = ACTIONS(4867), + [sym_date_literal] = ACTIONS(4865), + [anon_sym_POUND] = ACTIONS(4553), + }, + [STATE(502)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_declaration_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4485), + [aux_sym_enum_declaration_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4485), + [aux_sym_declare_function_statement_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [aux_sym__property_get_header_token1] = ACTIONS(4485), + [aux_sym_event_declaration_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token3] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(503)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_declaration_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4441), + [aux_sym_enum_declaration_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4441), + [aux_sym_declare_function_statement_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [aux_sym__property_get_header_token1] = ACTIONS(4441), + [aux_sym_event_declaration_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token3] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(504)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_declaration_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4451), + [aux_sym_enum_declaration_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4451), + [aux_sym_declare_function_statement_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [aux_sym__property_get_header_token1] = ACTIONS(4451), + [aux_sym_event_declaration_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token3] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4809), + [anon_sym_BSLASH] = ACTIONS(4813), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_DASH] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4821), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4885), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4887), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4889), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4891), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4893), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(505)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_declaration_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4589), + [aux_sym_enum_declaration_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4589), + [aux_sym_declare_function_statement_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [aux_sym__property_get_header_token1] = ACTIONS(4589), + [aux_sym_event_declaration_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token3] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(506)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(507)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(508)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4809), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(509)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4809), + [anon_sym_BSLASH] = ACTIONS(4813), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(510)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4809), + [anon_sym_BSLASH] = ACTIONS(4813), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(511)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4809), + [anon_sym_BSLASH] = ACTIONS(4813), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_DASH] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(512)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4809), + [anon_sym_BSLASH] = ACTIONS(4813), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_DASH] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4821), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(513)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4809), + [anon_sym_BSLASH] = ACTIONS(4813), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_DASH] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4821), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4885), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(514)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4809), + [anon_sym_BSLASH] = ACTIONS(4813), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_DASH] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4821), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4885), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4887), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(515)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4809), + [anon_sym_BSLASH] = ACTIONS(4813), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_DASH] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4821), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4885), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4887), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4889), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(516)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4809), + [anon_sym_BSLASH] = ACTIONS(4813), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_DASH] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4821), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4885), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4887), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4889), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4891), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(517)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(518)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(519)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(520)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(4658), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(521)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4823), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4823), + [anon_sym_BSLASH] = ACTIONS(4827), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(522)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4823), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4823), + [anon_sym_BSLASH] = ACTIONS(4827), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4829), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(523)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4517), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token3] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(524)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_declaration_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4593), + [aux_sym_enum_declaration_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4593), + [aux_sym_declare_function_statement_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [aux_sym__property_get_header_token1] = ACTIONS(4593), + [aux_sym_event_declaration_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token3] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(525)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_declaration_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4597), + [aux_sym_enum_declaration_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4597), + [aux_sym_declare_function_statement_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [aux_sym__property_get_header_token1] = ACTIONS(4597), + [aux_sym_event_declaration_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token3] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(526)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(527)] = { + [sym_output_list] = STATE(6332), + [sym__print_output_expression] = STATE(4885), + [sym__unparenthesized_print_output_expression] = STATE(4885), + [sym__print_output_call_binary_expression] = STATE(4885), + [sym__print_output_call_operand] = STATE(10998), + [sym__print_output_member_comparison_expression] = STATE(5781), + [sym__print_output_call_member_expression] = STATE(828), + [sym__print_output_call_expression] = STATE(2577), + [sym__print_output_qualified_callable] = STATE(13423), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(11000), + [sym_comparison_expression] = STATE(4886), + [sym__comparison_operand] = STATE(11453), + [sym_logical_value_expression] = STATE(4887), + [sym__callable_expression] = STATE(13426), + [sym_call_expression] = STATE(10296), + [sym_new_expression] = STATE(1056), + [sym_addressof_expression] = STATE(1056), + [sym_type_of_expression] = STATE(1056), + [sym_member_expression] = STATE(1073), + [sym_qualified_member_expression] = STATE(1142), + [sym_implicit_member_expression] = STATE(1142), + [sym_parenthesized_expression] = STATE(1084), + [sym_binary_expression] = STATE(1085), + [sym_unary_expression] = STATE(2774), + [sym__signed_unary_expression] = STATE(1246), + [sym__literal] = STATE(1056), + [sym_boolean_literal] = STATE(1056), + [sym_file_number_literal] = STATE(1056), + [sym_identifier] = ACTIONS(4857), + [sym_newline] = ACTIONS(4086), + [anon_sym_COLON] = ACTIONS(4086), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4088), + [aux_sym_frm_property_statement_token1] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4527), + [aux_sym__attribute_identifier_token1] = ACTIONS(4088), + [aux_sym_option_statement_token3] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4088), + [aux_sym_preprocessor_const_token1] = ACTIONS(4088), + [sym_static_modifier] = ACTIONS(4088), + [sym__dim_keyword] = ACTIONS(4088), + [sym__redim_keyword] = ACTIONS(4088), + [aux_sym_get_accessor_token1] = ACTIONS(4088), + [aux_sym_set_accessor_token1] = ACTIONS(4088), + [aux_sym_const_declaration_token1] = ACTIONS(4088), + [anon_sym_LPAREN] = ACTIONS(4861), + [aux_sym_as_type_clause_token2] = ACTIONS(4535), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4863), + [aux_sym_visibility_token1] = ACTIONS(4088), + [aux_sym_visibility_token2] = ACTIONS(4088), + [aux_sym_elseif_fragment_token1] = ACTIONS(4088), + [aux_sym_else_fragment_token1] = ACTIONS(4088), + [aux_sym_select_statement_token1] = ACTIONS(4088), + [aux_sym_select_statement_token2] = ACTIONS(4088), + [aux_sym__for_header_token1] = ACTIONS(4088), + [aux_sym_do_statement_token1] = ACTIONS(4088), + [aux_sym_do_condition_token1] = ACTIONS(4088), + [aux_sym_with_statement_token1] = ACTIONS(4088), + [aux_sym_exit_statement_token1] = ACTIONS(4088), + [sym_end_statement] = ACTIONS(4086), + [aux_sym_on_goto_statement_token1] = ACTIONS(4088), + [aux_sym_on_goto_statement_token2] = ACTIONS(4088), + [aux_sym_on_error_statement_token2] = ACTIONS(4088), + [sym__ambiguous_redim_statement] = ACTIONS(4086), + [aux_sym_erase_statement_token1] = ACTIONS(4088), + [aux_sym_open_statement_token1] = ACTIONS(4088), + [aux_sym_file_mode_token2] = ACTIONS(4088), + [aux_sym_file_access_token2] = ACTIONS(4088), + [aux_sym_file_lock_token2] = ACTIONS(4088), + [aux_sym_print_statement_token1] = ACTIONS(4088), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_QMARK] = ACTIONS(4086), + [aux_sym_close_statement_token1] = ACTIONS(4088), + [aux_sym_put_statement_token1] = ACTIONS(4088), + [aux_sym_unlock_statement_token1] = ACTIONS(4088), + [aux_sym_seek_statement_token1] = ACTIONS(4088), + [sym_reset_statement] = ACTIONS(4088), + [aux_sym_raise_event_statement_token1] = ACTIONS(4088), + [sym_stop_statement] = ACTIONS(4088), + [sym_beep_statement] = ACTIONS(4088), + [aux_sym_unload_statement_token1] = ACTIONS(4088), + [aux_sym_def_type_statement_token1] = ACTIONS(4088), + [aux_sym_def_type_statement_token2] = ACTIONS(4088), + [aux_sym_def_type_statement_token3] = ACTIONS(4088), + [aux_sym_def_type_statement_token4] = ACTIONS(4088), + [aux_sym_def_type_statement_token5] = ACTIONS(4088), + [aux_sym_def_type_statement_token6] = ACTIONS(4088), + [aux_sym_def_type_statement_token7] = ACTIONS(4088), + [aux_sym_def_type_statement_token8] = ACTIONS(4088), + [aux_sym_def_type_statement_token9] = ACTIONS(4088), + [aux_sym_def_type_statement_token10] = ACTIONS(4088), + [aux_sym_def_type_statement_token11] = ACTIONS(4088), + [aux_sym_def_type_statement_token12] = ACTIONS(4088), + [aux_sym_def_type_statement_token13] = ACTIONS(4088), + [aux_sym_def_type_statement_token14] = ACTIONS(4088), + [aux_sym_call_statement_token1] = ACTIONS(4088), + [sym__ambiguous_call_statement] = ACTIONS(4088), + [aux_sym_addressof_expression_token1] = ACTIONS(4543), + [aux_sym_type_of_expression_token1] = ACTIONS(4545), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(4865), + [sym_number_literal] = ACTIONS(4865), + [aux_sym_boolean_literal_token1] = ACTIONS(4549), + [aux_sym_boolean_literal_token2] = ACTIONS(4549), + [sym_nothing_literal] = ACTIONS(4867), + [sym_null_literal] = ACTIONS(4867), + [sym_empty_literal] = ACTIONS(4867), + [sym_date_literal] = ACTIONS(4865), + [anon_sym_POUND] = ACTIONS(4553), + }, + [STATE(528)] = { + [sym_output_list] = STATE(6429), + [sym__print_output_expression] = STATE(4885), + [sym__unparenthesized_print_output_expression] = STATE(4885), + [sym__print_output_call_binary_expression] = STATE(4885), + [sym__print_output_call_operand] = STATE(10998), + [sym__print_output_member_comparison_expression] = STATE(5781), + [sym__print_output_call_member_expression] = STATE(828), + [sym__print_output_call_expression] = STATE(2577), + [sym__print_output_qualified_callable] = STATE(13423), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(11000), + [sym_comparison_expression] = STATE(4886), + [sym__comparison_operand] = STATE(11453), + [sym_logical_value_expression] = STATE(4887), + [sym__callable_expression] = STATE(13426), + [sym_call_expression] = STATE(10296), + [sym_new_expression] = STATE(1056), + [sym_addressof_expression] = STATE(1056), + [sym_type_of_expression] = STATE(1056), + [sym_member_expression] = STATE(1073), + [sym_qualified_member_expression] = STATE(1142), + [sym_implicit_member_expression] = STATE(1142), + [sym_parenthesized_expression] = STATE(1084), + [sym_binary_expression] = STATE(1085), + [sym_unary_expression] = STATE(2774), + [sym__signed_unary_expression] = STATE(1246), + [sym__literal] = STATE(1056), + [sym_boolean_literal] = STATE(1056), + [sym_file_number_literal] = STATE(1056), + [sym_identifier] = ACTIONS(4857), + [sym_newline] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4092), + [aux_sym_frm_property_statement_token1] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4527), + [aux_sym__attribute_identifier_token1] = ACTIONS(4092), + [aux_sym_option_statement_token3] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4092), + [aux_sym_preprocessor_const_token1] = ACTIONS(4092), + [sym_static_modifier] = ACTIONS(4092), + [sym__dim_keyword] = ACTIONS(4092), + [sym__redim_keyword] = ACTIONS(4092), + [aux_sym_get_accessor_token1] = ACTIONS(4092), + [aux_sym_set_accessor_token1] = ACTIONS(4092), + [aux_sym_const_declaration_token1] = ACTIONS(4092), + [anon_sym_LPAREN] = ACTIONS(4861), + [aux_sym_as_type_clause_token2] = ACTIONS(4535), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4863), + [aux_sym_visibility_token1] = ACTIONS(4092), + [aux_sym_visibility_token2] = ACTIONS(4092), + [aux_sym_elseif_fragment_token1] = ACTIONS(4092), + [aux_sym_else_fragment_token1] = ACTIONS(4092), + [aux_sym_select_statement_token1] = ACTIONS(4092), + [aux_sym_select_statement_token2] = ACTIONS(4092), + [aux_sym__for_header_token1] = ACTIONS(4092), + [aux_sym_do_statement_token1] = ACTIONS(4092), + [aux_sym_do_condition_token1] = ACTIONS(4092), + [aux_sym_with_statement_token1] = ACTIONS(4092), + [aux_sym_exit_statement_token1] = ACTIONS(4092), + [sym_end_statement] = ACTIONS(4090), + [aux_sym_on_goto_statement_token1] = ACTIONS(4092), + [aux_sym_on_goto_statement_token2] = ACTIONS(4092), + [aux_sym_on_error_statement_token2] = ACTIONS(4092), + [sym__ambiguous_redim_statement] = ACTIONS(4090), + [aux_sym_erase_statement_token1] = ACTIONS(4092), + [aux_sym_open_statement_token1] = ACTIONS(4092), + [aux_sym_file_mode_token2] = ACTIONS(4092), + [aux_sym_file_access_token2] = ACTIONS(4092), + [aux_sym_file_lock_token2] = ACTIONS(4092), + [aux_sym_print_statement_token1] = ACTIONS(4092), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_QMARK] = ACTIONS(4090), + [aux_sym_close_statement_token1] = ACTIONS(4092), + [aux_sym_put_statement_token1] = ACTIONS(4092), + [aux_sym_unlock_statement_token1] = ACTIONS(4092), + [aux_sym_seek_statement_token1] = ACTIONS(4092), + [sym_reset_statement] = ACTIONS(4092), + [aux_sym_raise_event_statement_token1] = ACTIONS(4092), + [sym_stop_statement] = ACTIONS(4092), + [sym_beep_statement] = ACTIONS(4092), + [aux_sym_unload_statement_token1] = ACTIONS(4092), + [aux_sym_def_type_statement_token1] = ACTIONS(4092), + [aux_sym_def_type_statement_token2] = ACTIONS(4092), + [aux_sym_def_type_statement_token3] = ACTIONS(4092), + [aux_sym_def_type_statement_token4] = ACTIONS(4092), + [aux_sym_def_type_statement_token5] = ACTIONS(4092), + [aux_sym_def_type_statement_token6] = ACTIONS(4092), + [aux_sym_def_type_statement_token7] = ACTIONS(4092), + [aux_sym_def_type_statement_token8] = ACTIONS(4092), + [aux_sym_def_type_statement_token9] = ACTIONS(4092), + [aux_sym_def_type_statement_token10] = ACTIONS(4092), + [aux_sym_def_type_statement_token11] = ACTIONS(4092), + [aux_sym_def_type_statement_token12] = ACTIONS(4092), + [aux_sym_def_type_statement_token13] = ACTIONS(4092), + [aux_sym_def_type_statement_token14] = ACTIONS(4092), + [aux_sym_call_statement_token1] = ACTIONS(4092), + [sym__ambiguous_call_statement] = ACTIONS(4092), + [aux_sym_addressof_expression_token1] = ACTIONS(4543), + [aux_sym_type_of_expression_token1] = ACTIONS(4545), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(4865), + [sym_number_literal] = ACTIONS(4865), + [aux_sym_boolean_literal_token1] = ACTIONS(4549), + [aux_sym_boolean_literal_token2] = ACTIONS(4549), + [sym_nothing_literal] = ACTIONS(4867), + [sym_null_literal] = ACTIONS(4867), + [sym_empty_literal] = ACTIONS(4867), + [sym_date_literal] = ACTIONS(4865), + [anon_sym_POUND] = ACTIONS(4553), + }, + [STATE(529)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_declaration_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4625), + [aux_sym_enum_declaration_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4625), + [aux_sym_declare_function_statement_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [aux_sym__property_get_header_token1] = ACTIONS(4625), + [aux_sym_event_declaration_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token3] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(530)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(531)] = { + [sym_output_list] = STATE(7008), + [sym__print_output_expression] = STATE(4701), + [sym__unparenthesized_print_output_expression] = STATE(4701), + [sym__print_output_call_binary_expression] = STATE(4701), + [sym__print_output_call_operand] = STATE(11001), + [sym__print_output_member_comparison_expression] = STATE(5244), + [sym__print_output_call_member_expression] = STATE(871), + [sym__print_output_call_expression] = STATE(2617), + [sym__print_output_qualified_callable] = STATE(13129), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(11002), + [sym_comparison_expression] = STATE(4702), + [sym__comparison_operand] = STATE(11305), + [sym_logical_value_expression] = STATE(4703), + [sym__callable_expression] = STATE(13130), + [sym_call_expression] = STATE(10298), + [sym_new_expression] = STATE(1126), + [sym_addressof_expression] = STATE(1126), + [sym_type_of_expression] = STATE(1126), + [sym_member_expression] = STATE(1168), + [sym_qualified_member_expression] = STATE(1206), + [sym_implicit_member_expression] = STATE(1206), + [sym_parenthesized_expression] = STATE(1194), + [sym_binary_expression] = STATE(1209), + [sym_unary_expression] = STATE(2675), + [sym__signed_unary_expression] = STATE(1348), + [sym__literal] = STATE(1126), + [sym_boolean_literal] = STATE(1126), + [sym_file_number_literal] = STATE(1126), + [sym_identifier] = ACTIONS(4845), + [sym_newline] = ACTIONS(4072), + [anon_sym_COLON] = ACTIONS(4072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4074), + [aux_sym_frm_property_statement_token1] = ACTIONS(4847), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4561), + [aux_sym__attribute_identifier_token1] = ACTIONS(4074), + [aux_sym_option_statement_token3] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4074), + [aux_sym_preprocessor_const_token1] = ACTIONS(4074), + [sym_static_modifier] = ACTIONS(4074), + [sym__dim_keyword] = ACTIONS(4074), + [sym__redim_keyword] = ACTIONS(4074), + [aux_sym_get_accessor_token1] = ACTIONS(4074), + [aux_sym_set_accessor_token1] = ACTIONS(4074), + [aux_sym_const_declaration_token1] = ACTIONS(4074), + [anon_sym_LPAREN] = ACTIONS(4869), + [aux_sym_as_type_clause_token2] = ACTIONS(4569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4851), + [aux_sym_visibility_token1] = ACTIONS(4074), + [aux_sym_visibility_token2] = ACTIONS(4074), + [aux_sym_elseif_fragment_token1] = ACTIONS(4074), + [aux_sym_else_fragment_token1] = ACTIONS(4074), + [aux_sym_select_statement_token1] = ACTIONS(4074), + [aux_sym__for_header_token1] = ACTIONS(4074), + [aux_sym_do_statement_token1] = ACTIONS(4074), + [aux_sym_do_condition_token1] = ACTIONS(4074), + [aux_sym_with_statement_token1] = ACTIONS(4074), + [aux_sym_exit_statement_token1] = ACTIONS(4074), + [sym_end_statement] = ACTIONS(4072), + [aux_sym_on_goto_statement_token1] = ACTIONS(4074), + [aux_sym_on_goto_statement_token2] = ACTIONS(4074), + [aux_sym_on_error_statement_token2] = ACTIONS(4074), + [sym__ambiguous_redim_statement] = ACTIONS(4072), + [aux_sym_erase_statement_token1] = ACTIONS(4074), + [aux_sym_open_statement_token1] = ACTIONS(4074), + [aux_sym_file_mode_token2] = ACTIONS(4074), + [aux_sym_file_access_token2] = ACTIONS(4074), + [aux_sym_file_lock_token2] = ACTIONS(4074), + [aux_sym_print_statement_token1] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4072), + [aux_sym_close_statement_token1] = ACTIONS(4074), + [aux_sym_put_statement_token1] = ACTIONS(4074), + [aux_sym_unlock_statement_token1] = ACTIONS(4074), + [aux_sym_seek_statement_token1] = ACTIONS(4074), + [sym_reset_statement] = ACTIONS(4074), + [aux_sym_raise_event_statement_token1] = ACTIONS(4074), + [sym_stop_statement] = ACTIONS(4074), + [sym_beep_statement] = ACTIONS(4074), + [aux_sym_unload_statement_token1] = ACTIONS(4074), + [aux_sym_def_type_statement_token1] = ACTIONS(4074), + [aux_sym_def_type_statement_token2] = ACTIONS(4074), + [aux_sym_def_type_statement_token3] = ACTIONS(4074), + [aux_sym_def_type_statement_token4] = ACTIONS(4074), + [aux_sym_def_type_statement_token5] = ACTIONS(4074), + [aux_sym_def_type_statement_token6] = ACTIONS(4074), + [aux_sym_def_type_statement_token7] = ACTIONS(4074), + [aux_sym_def_type_statement_token8] = ACTIONS(4074), + [aux_sym_def_type_statement_token9] = ACTIONS(4074), + [aux_sym_def_type_statement_token10] = ACTIONS(4074), + [aux_sym_def_type_statement_token11] = ACTIONS(4074), + [aux_sym_def_type_statement_token12] = ACTIONS(4074), + [aux_sym_def_type_statement_token13] = ACTIONS(4074), + [aux_sym_def_type_statement_token14] = ACTIONS(4074), + [aux_sym_call_statement_token1] = ACTIONS(4074), + [sym__ambiguous_call_statement] = ACTIONS(4074), + [aux_sym_addressof_expression_token1] = ACTIONS(4577), + [aux_sym_type_of_expression_token1] = ACTIONS(4579), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(4853), + [sym_number_literal] = ACTIONS(4853), + [aux_sym_boolean_literal_token1] = ACTIONS(4583), + [aux_sym_boolean_literal_token2] = ACTIONS(4583), + [sym_nothing_literal] = ACTIONS(4855), + [sym_null_literal] = ACTIONS(4855), + [sym_empty_literal] = ACTIONS(4855), + [sym_date_literal] = ACTIONS(4853), + [anon_sym_POUND] = ACTIONS(4587), + }, + [STATE(532)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4647), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(4823), + [aux_sym_array_bound_token1] = ACTIONS(4647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4823), + [anon_sym_BSLASH] = ACTIONS(4827), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4829), + [anon_sym_PLUS] = ACTIONS(4831), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_AMP] = ACTIONS(4835), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(533)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_declaration_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4601), + [aux_sym_enum_declaration_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4601), + [aux_sym_declare_function_statement_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [aux_sym__property_get_header_token1] = ACTIONS(4601), + [aux_sym_event_declaration_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token3] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(534)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4605), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token3] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(535)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_declaration_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4609), + [aux_sym_enum_declaration_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4609), + [aux_sym_declare_function_statement_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [aux_sym__property_get_header_token1] = ACTIONS(4609), + [aux_sym_event_declaration_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token3] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(536)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4621), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token3] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(537)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_declaration_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4509), + [aux_sym_enum_declaration_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4509), + [aux_sym_declare_function_statement_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [aux_sym__property_get_header_token1] = ACTIONS(4509), + [aux_sym_event_declaration_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token3] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(538)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(539)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4647), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(4809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token3] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4809), + [anon_sym_BSLASH] = ACTIONS(4813), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_DASH] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4821), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(540)] = { + [sym_argument_list] = STATE(3597), + [sym_unparenthesized_argument_list] = STATE(7234), + [sym__unparenthesized_argument_sequence] = STATE(7241), + [sym__omitted_argument_sequence] = STATE(7241), + [sym__argument] = STATE(5006), + [sym_named_argument] = STATE(5006), + [sym_byval_argument] = STATE(5006), + [sym__primary_expression] = STATE(1662), + [sym__expression] = STATE(3023), + [sym_comparison_expression] = STATE(5063), + [sym__comparison_operand] = STATE(11430), + [sym_logical_value_expression] = STATE(5063), + [sym__callable_expression] = STATE(13234), + [sym_call_expression] = STATE(1263), + [sym_new_expression] = STATE(1662), + [sym_addressof_expression] = STATE(1662), + [sym_type_of_expression] = STATE(1662), + [sym_member_expression] = STATE(1654), + [sym_qualified_member_expression] = STATE(1585), + [sym_implicit_member_expression] = STATE(1585), + [sym_parenthesized_expression] = STATE(1662), + [sym_binary_expression] = STATE(1662), + [sym_unary_expression] = STATE(3023), + [sym__signed_unary_expression] = STATE(1674), + [sym__literal] = STATE(1662), + [sym_boolean_literal] = STATE(1662), + [sym_file_number_literal] = STATE(1662), + [sym_identifier] = ACTIONS(4895), + [sym_newline] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4030), + [aux_sym_frm_property_statement_token1] = ACTIONS(4897), + [anon_sym_EQ] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(4899), + [anon_sym_BANG] = ACTIONS(4901), + [aux_sym__attribute_identifier_token1] = ACTIONS(4030), + [aux_sym_option_statement_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4030), + [aux_sym_preprocessor_const_token1] = ACTIONS(4030), + [sym_static_modifier] = ACTIONS(4030), + [sym__dim_keyword] = ACTIONS(4030), + [sym__redim_keyword] = ACTIONS(4030), + [aux_sym_byval_modifier_token1] = ACTIONS(4903), + [aux_sym_get_accessor_token1] = ACTIONS(4030), + [aux_sym_set_accessor_token1] = ACTIONS(4030), + [anon_sym_COMMA] = ACTIONS(4905), + [aux_sym_const_declaration_token1] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4907), + [aux_sym_as_type_clause_token2] = ACTIONS(4909), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4911), + [aux_sym_visibility_token1] = ACTIONS(4030), + [aux_sym_visibility_token2] = ACTIONS(4030), + [aux_sym_elseif_fragment_token1] = ACTIONS(4030), + [aux_sym_else_fragment_token1] = ACTIONS(4030), + [aux_sym_select_statement_token1] = ACTIONS(4030), + [aux_sym__for_header_token1] = ACTIONS(4030), + [aux_sym_do_statement_token1] = ACTIONS(4030), + [aux_sym_do_condition_token1] = ACTIONS(4030), + [aux_sym_with_statement_token1] = ACTIONS(4030), + [aux_sym_exit_statement_token1] = ACTIONS(4030), + [sym_end_statement] = ACTIONS(4028), + [aux_sym_on_goto_statement_token1] = ACTIONS(4030), + [aux_sym_on_goto_statement_token2] = ACTIONS(4030), + [aux_sym_on_error_statement_token2] = ACTIONS(4030), + [sym__ambiguous_redim_statement] = ACTIONS(4028), + [aux_sym_erase_statement_token1] = ACTIONS(4030), + [aux_sym_open_statement_token1] = ACTIONS(4030), + [aux_sym_file_mode_token2] = ACTIONS(4030), + [aux_sym_file_access_token2] = ACTIONS(4030), + [aux_sym_file_lock_token2] = ACTIONS(4030), + [aux_sym_print_statement_token1] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_QMARK] = ACTIONS(4028), + [aux_sym_close_statement_token1] = ACTIONS(4030), + [aux_sym_put_statement_token1] = ACTIONS(4030), + [aux_sym_unlock_statement_token1] = ACTIONS(4030), + [aux_sym_seek_statement_token1] = ACTIONS(4030), + [sym_reset_statement] = ACTIONS(4030), + [aux_sym_raise_event_statement_token1] = ACTIONS(4030), + [sym_stop_statement] = ACTIONS(4030), + [sym_beep_statement] = ACTIONS(4030), + [aux_sym_unload_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token2] = ACTIONS(4030), + [aux_sym_def_type_statement_token3] = ACTIONS(4030), + [aux_sym_def_type_statement_token4] = ACTIONS(4030), + [aux_sym_def_type_statement_token5] = ACTIONS(4030), + [aux_sym_def_type_statement_token6] = ACTIONS(4030), + [aux_sym_def_type_statement_token7] = ACTIONS(4030), + [aux_sym_def_type_statement_token8] = ACTIONS(4030), + [aux_sym_def_type_statement_token9] = ACTIONS(4030), + [aux_sym_def_type_statement_token10] = ACTIONS(4030), + [aux_sym_def_type_statement_token11] = ACTIONS(4030), + [aux_sym_def_type_statement_token12] = ACTIONS(4030), + [aux_sym_def_type_statement_token13] = ACTIONS(4030), + [aux_sym_def_type_statement_token14] = ACTIONS(4030), + [aux_sym_call_statement_token1] = ACTIONS(4030), + [sym__ambiguous_call_statement] = ACTIONS(4030), + [aux_sym_addressof_expression_token1] = ACTIONS(4917), + [aux_sym_type_of_expression_token1] = ACTIONS(4919), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(4921), + [sym_number_literal] = ACTIONS(4921), + [aux_sym_boolean_literal_token1] = ACTIONS(4923), + [aux_sym_boolean_literal_token2] = ACTIONS(4923), + [sym_nothing_literal] = ACTIONS(4925), + [sym_null_literal] = ACTIONS(4925), + [sym_empty_literal] = ACTIONS(4925), + [sym_date_literal] = ACTIONS(4921), + [anon_sym_POUND] = ACTIONS(4927), + }, + [STATE(541)] = { + [sym_argument_list] = STATE(610), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4929), + [anon_sym_BANG] = ACTIONS(4931), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4933), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(542)] = { + [sym_output_list] = STATE(6385), + [sym__print_output_expression] = STATE(4714), + [sym__unparenthesized_print_output_expression] = STATE(4714), + [sym__print_output_call_binary_expression] = STATE(4714), + [sym__print_output_call_operand] = STATE(10987), + [sym__print_output_member_comparison_expression] = STATE(5409), + [sym__print_output_call_member_expression] = STATE(827), + [sym__print_output_call_expression] = STATE(2660), + [sym__print_output_qualified_callable] = STATE(13601), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10988), + [sym_comparison_expression] = STATE(4716), + [sym__comparison_operand] = STATE(11458), + [sym_logical_value_expression] = STATE(4717), + [sym__callable_expression] = STATE(13623), + [sym_call_expression] = STATE(10299), + [sym_new_expression] = STATE(1276), + [sym_addressof_expression] = STATE(1276), + [sym_type_of_expression] = STATE(1276), + [sym_member_expression] = STATE(1277), + [sym_qualified_member_expression] = STATE(1158), + [sym_implicit_member_expression] = STATE(1158), + [sym_parenthesized_expression] = STATE(1055), + [sym_binary_expression] = STATE(1459), + [sym_unary_expression] = STATE(2669), + [sym__signed_unary_expression] = STATE(1163), + [sym__literal] = STATE(1276), + [sym_boolean_literal] = STATE(1276), + [sym_file_number_literal] = STATE(1276), + [sym_identifier] = ACTIONS(4935), + [sym_newline] = ACTIONS(4072), + [anon_sym_COLON] = ACTIONS(4072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4074), + [aux_sym_frm_property_statement_token1] = ACTIONS(4937), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(4681), + [aux_sym__attribute_identifier_token1] = ACTIONS(4074), + [aux_sym_option_statement_token3] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4074), + [aux_sym_preprocessor_const_token1] = ACTIONS(4074), + [sym_static_modifier] = ACTIONS(4074), + [sym__dim_keyword] = ACTIONS(4074), + [sym__redim_keyword] = ACTIONS(4074), + [aux_sym_get_accessor_token1] = ACTIONS(4074), + [aux_sym_set_accessor_token1] = ACTIONS(4074), + [aux_sym_const_declaration_token1] = ACTIONS(4074), + [anon_sym_LPAREN] = ACTIONS(4939), + [aux_sym_as_type_clause_token2] = ACTIONS(4689), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4941), + [aux_sym_visibility_token1] = ACTIONS(4074), + [aux_sym_visibility_token2] = ACTIONS(4074), + [aux_sym_elseif_fragment_token1] = ACTIONS(4074), + [aux_sym_else_fragment_token1] = ACTIONS(4074), + [aux_sym_select_statement_token1] = ACTIONS(4074), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4074), + [aux_sym__for_header_token1] = ACTIONS(4074), + [aux_sym_do_statement_token1] = ACTIONS(4074), + [aux_sym_do_condition_token1] = ACTIONS(4074), + [aux_sym_with_statement_token1] = ACTIONS(4074), + [aux_sym_exit_statement_token1] = ACTIONS(4074), + [sym_end_statement] = ACTIONS(4072), + [aux_sym_on_goto_statement_token1] = ACTIONS(4074), + [aux_sym_on_goto_statement_token2] = ACTIONS(4074), + [aux_sym_on_error_statement_token2] = ACTIONS(4074), + [sym__ambiguous_redim_statement] = ACTIONS(4072), + [aux_sym_erase_statement_token1] = ACTIONS(4074), + [aux_sym_open_statement_token1] = ACTIONS(4074), + [aux_sym_file_mode_token2] = ACTIONS(4074), + [aux_sym_file_access_token2] = ACTIONS(4074), + [aux_sym_file_lock_token2] = ACTIONS(4074), + [aux_sym_print_statement_token1] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(4693), + [anon_sym_DASH] = ACTIONS(4695), + [anon_sym_QMARK] = ACTIONS(4072), + [aux_sym_close_statement_token1] = ACTIONS(4074), + [aux_sym_put_statement_token1] = ACTIONS(4074), + [aux_sym_unlock_statement_token1] = ACTIONS(4074), + [aux_sym_seek_statement_token1] = ACTIONS(4074), + [sym_reset_statement] = ACTIONS(4074), + [aux_sym_raise_event_statement_token1] = ACTIONS(4074), + [sym_stop_statement] = ACTIONS(4074), + [sym_beep_statement] = ACTIONS(4074), + [aux_sym_unload_statement_token1] = ACTIONS(4074), + [aux_sym_def_type_statement_token1] = ACTIONS(4074), + [aux_sym_def_type_statement_token2] = ACTIONS(4074), + [aux_sym_def_type_statement_token3] = ACTIONS(4074), + [aux_sym_def_type_statement_token4] = ACTIONS(4074), + [aux_sym_def_type_statement_token5] = ACTIONS(4074), + [aux_sym_def_type_statement_token6] = ACTIONS(4074), + [aux_sym_def_type_statement_token7] = ACTIONS(4074), + [aux_sym_def_type_statement_token8] = ACTIONS(4074), + [aux_sym_def_type_statement_token9] = ACTIONS(4074), + [aux_sym_def_type_statement_token10] = ACTIONS(4074), + [aux_sym_def_type_statement_token11] = ACTIONS(4074), + [aux_sym_def_type_statement_token12] = ACTIONS(4074), + [aux_sym_def_type_statement_token13] = ACTIONS(4074), + [aux_sym_def_type_statement_token14] = ACTIONS(4074), + [aux_sym_call_statement_token1] = ACTIONS(4074), + [sym__ambiguous_call_statement] = ACTIONS(4074), + [aux_sym_addressof_expression_token1] = ACTIONS(4697), + [aux_sym_type_of_expression_token1] = ACTIONS(4699), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(4943), + [sym_number_literal] = ACTIONS(4943), + [aux_sym_boolean_literal_token1] = ACTIONS(4703), + [aux_sym_boolean_literal_token2] = ACTIONS(4703), + [sym_nothing_literal] = ACTIONS(4945), + [sym_null_literal] = ACTIONS(4945), + [sym_empty_literal] = ACTIONS(4945), + [sym_date_literal] = ACTIONS(4943), + [anon_sym_POUND] = ACTIONS(4707), + }, + [STATE(543)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_declaration_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4509), + [aux_sym_enum_declaration_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4509), + [aux_sym_declare_function_statement_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [aux_sym__property_get_header_token1] = ACTIONS(4509), + [aux_sym_event_declaration_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_array_bound_token1] = ACTIONS(4509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(544)] = { + [sym__print_method_output_list] = STATE(6423), + [sym__unparenthesized_print_output_expression] = STATE(4723), + [sym__print_output_call_binary_expression] = STATE(4723), + [sym__print_output_call_operand] = STATE(10987), + [sym__print_output_member_comparison_expression] = STATE(5409), + [sym__print_output_call_member_expression] = STATE(827), + [sym__print_output_call_expression] = STATE(2660), + [sym__print_output_qualified_callable] = STATE(13601), + [sym_argument_list] = STATE(6425), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10988), + [sym_comparison_expression] = STATE(4716), + [sym__comparison_operand] = STATE(11458), + [sym_logical_value_expression] = STATE(4717), + [sym__callable_expression] = STATE(13623), + [sym_call_expression] = STATE(10299), + [sym_new_expression] = STATE(1276), + [sym_addressof_expression] = STATE(1276), + [sym_type_of_expression] = STATE(1276), + [sym_member_expression] = STATE(1277), + [sym_qualified_member_expression] = STATE(1158), + [sym_implicit_member_expression] = STATE(1158), + [sym_parenthesized_expression] = STATE(10077), + [sym_binary_expression] = STATE(1459), + [sym_unary_expression] = STATE(2669), + [sym__signed_unary_expression] = STATE(1163), + [sym__literal] = STATE(1276), + [sym_boolean_literal] = STATE(1276), + [sym_file_number_literal] = STATE(1276), + [sym_identifier] = ACTIONS(4935), + [sym_newline] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(4094), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4096), + [aux_sym_frm_property_statement_token1] = ACTIONS(4937), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(4681), + [aux_sym__attribute_identifier_token1] = ACTIONS(4096), + [aux_sym_option_statement_token3] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4096), + [aux_sym_preprocessor_const_token1] = ACTIONS(4096), + [sym_static_modifier] = ACTIONS(4096), + [sym__dim_keyword] = ACTIONS(4096), + [sym__redim_keyword] = ACTIONS(4096), + [aux_sym_get_accessor_token1] = ACTIONS(4096), + [aux_sym_set_accessor_token1] = ACTIONS(4096), + [aux_sym_const_declaration_token1] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4947), + [aux_sym_as_type_clause_token2] = ACTIONS(4689), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4941), + [aux_sym_visibility_token1] = ACTIONS(4096), + [aux_sym_visibility_token2] = ACTIONS(4096), + [aux_sym_elseif_fragment_token1] = ACTIONS(4096), + [aux_sym_else_fragment_token1] = ACTIONS(4096), + [aux_sym_select_statement_token1] = ACTIONS(4096), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4096), + [aux_sym__for_header_token1] = ACTIONS(4096), + [aux_sym_do_statement_token1] = ACTIONS(4096), + [aux_sym_do_condition_token1] = ACTIONS(4096), + [aux_sym_with_statement_token1] = ACTIONS(4096), + [aux_sym_exit_statement_token1] = ACTIONS(4096), + [sym_end_statement] = ACTIONS(4094), + [aux_sym_on_goto_statement_token1] = ACTIONS(4096), + [aux_sym_on_goto_statement_token2] = ACTIONS(4096), + [aux_sym_on_error_statement_token2] = ACTIONS(4096), + [sym__ambiguous_redim_statement] = ACTIONS(4094), + [aux_sym_erase_statement_token1] = ACTIONS(4096), + [aux_sym_open_statement_token1] = ACTIONS(4096), + [aux_sym_file_mode_token2] = ACTIONS(4096), + [aux_sym_file_access_token2] = ACTIONS(4096), + [aux_sym_file_lock_token2] = ACTIONS(4096), + [aux_sym_print_statement_token1] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4693), + [anon_sym_DASH] = ACTIONS(4695), + [anon_sym_QMARK] = ACTIONS(4094), + [aux_sym_close_statement_token1] = ACTIONS(4096), + [aux_sym_put_statement_token1] = ACTIONS(4096), + [aux_sym_unlock_statement_token1] = ACTIONS(4096), + [aux_sym_seek_statement_token1] = ACTIONS(4096), + [sym_reset_statement] = ACTIONS(4096), + [aux_sym_raise_event_statement_token1] = ACTIONS(4096), + [sym_stop_statement] = ACTIONS(4096), + [sym_beep_statement] = ACTIONS(4096), + [aux_sym_unload_statement_token1] = ACTIONS(4096), + [aux_sym_def_type_statement_token1] = ACTIONS(4096), + [aux_sym_def_type_statement_token2] = ACTIONS(4096), + [aux_sym_def_type_statement_token3] = ACTIONS(4096), + [aux_sym_def_type_statement_token4] = ACTIONS(4096), + [aux_sym_def_type_statement_token5] = ACTIONS(4096), + [aux_sym_def_type_statement_token6] = ACTIONS(4096), + [aux_sym_def_type_statement_token7] = ACTIONS(4096), + [aux_sym_def_type_statement_token8] = ACTIONS(4096), + [aux_sym_def_type_statement_token9] = ACTIONS(4096), + [aux_sym_def_type_statement_token10] = ACTIONS(4096), + [aux_sym_def_type_statement_token11] = ACTIONS(4096), + [aux_sym_def_type_statement_token12] = ACTIONS(4096), + [aux_sym_def_type_statement_token13] = ACTIONS(4096), + [aux_sym_def_type_statement_token14] = ACTIONS(4096), + [aux_sym_call_statement_token1] = ACTIONS(4096), + [sym__ambiguous_call_statement] = ACTIONS(4096), + [aux_sym_addressof_expression_token1] = ACTIONS(4697), + [aux_sym_type_of_expression_token1] = ACTIONS(4699), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(4943), + [sym_number_literal] = ACTIONS(4943), + [aux_sym_boolean_literal_token1] = ACTIONS(4703), + [aux_sym_boolean_literal_token2] = ACTIONS(4703), + [sym_nothing_literal] = ACTIONS(4945), + [sym_null_literal] = ACTIONS(4945), + [sym_empty_literal] = ACTIONS(4945), + [sym_date_literal] = ACTIONS(4943), + [anon_sym_POUND] = ACTIONS(4707), + }, + [STATE(545)] = { + [sym_output_list] = STATE(6509), + [sym__print_output_expression] = STATE(4714), + [sym__unparenthesized_print_output_expression] = STATE(4714), + [sym__print_output_call_binary_expression] = STATE(4714), + [sym__print_output_call_operand] = STATE(10987), + [sym__print_output_member_comparison_expression] = STATE(5409), + [sym__print_output_call_member_expression] = STATE(827), + [sym__print_output_call_expression] = STATE(2660), + [sym__print_output_qualified_callable] = STATE(13601), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10988), + [sym_comparison_expression] = STATE(4716), + [sym__comparison_operand] = STATE(11458), + [sym_logical_value_expression] = STATE(4717), + [sym__callable_expression] = STATE(13623), + [sym_call_expression] = STATE(10299), + [sym_new_expression] = STATE(1276), + [sym_addressof_expression] = STATE(1276), + [sym_type_of_expression] = STATE(1276), + [sym_member_expression] = STATE(1277), + [sym_qualified_member_expression] = STATE(1158), + [sym_implicit_member_expression] = STATE(1158), + [sym_parenthesized_expression] = STATE(1055), + [sym_binary_expression] = STATE(1459), + [sym_unary_expression] = STATE(2669), + [sym__signed_unary_expression] = STATE(1163), + [sym__literal] = STATE(1276), + [sym_boolean_literal] = STATE(1276), + [sym_file_number_literal] = STATE(1276), + [sym_identifier] = ACTIONS(4935), + [sym_newline] = ACTIONS(4086), + [anon_sym_COLON] = ACTIONS(4086), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4088), + [aux_sym_frm_property_statement_token1] = ACTIONS(4937), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(4681), + [aux_sym__attribute_identifier_token1] = ACTIONS(4088), + [aux_sym_option_statement_token3] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4088), + [aux_sym_preprocessor_const_token1] = ACTIONS(4088), + [sym_static_modifier] = ACTIONS(4088), + [sym__dim_keyword] = ACTIONS(4088), + [sym__redim_keyword] = ACTIONS(4088), + [aux_sym_get_accessor_token1] = ACTIONS(4088), + [aux_sym_set_accessor_token1] = ACTIONS(4088), + [aux_sym_const_declaration_token1] = ACTIONS(4088), + [anon_sym_LPAREN] = ACTIONS(4939), + [aux_sym_as_type_clause_token2] = ACTIONS(4689), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4941), + [aux_sym_visibility_token1] = ACTIONS(4088), + [aux_sym_visibility_token2] = ACTIONS(4088), + [aux_sym_elseif_fragment_token1] = ACTIONS(4088), + [aux_sym_else_fragment_token1] = ACTIONS(4088), + [aux_sym_select_statement_token1] = ACTIONS(4088), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4088), + [aux_sym__for_header_token1] = ACTIONS(4088), + [aux_sym_do_statement_token1] = ACTIONS(4088), + [aux_sym_do_condition_token1] = ACTIONS(4088), + [aux_sym_with_statement_token1] = ACTIONS(4088), + [aux_sym_exit_statement_token1] = ACTIONS(4088), + [sym_end_statement] = ACTIONS(4086), + [aux_sym_on_goto_statement_token1] = ACTIONS(4088), + [aux_sym_on_goto_statement_token2] = ACTIONS(4088), + [aux_sym_on_error_statement_token2] = ACTIONS(4088), + [sym__ambiguous_redim_statement] = ACTIONS(4086), + [aux_sym_erase_statement_token1] = ACTIONS(4088), + [aux_sym_open_statement_token1] = ACTIONS(4088), + [aux_sym_file_mode_token2] = ACTIONS(4088), + [aux_sym_file_access_token2] = ACTIONS(4088), + [aux_sym_file_lock_token2] = ACTIONS(4088), + [aux_sym_print_statement_token1] = ACTIONS(4088), + [anon_sym_PLUS] = ACTIONS(4693), + [anon_sym_DASH] = ACTIONS(4695), + [anon_sym_QMARK] = ACTIONS(4086), + [aux_sym_close_statement_token1] = ACTIONS(4088), + [aux_sym_put_statement_token1] = ACTIONS(4088), + [aux_sym_unlock_statement_token1] = ACTIONS(4088), + [aux_sym_seek_statement_token1] = ACTIONS(4088), + [sym_reset_statement] = ACTIONS(4088), + [aux_sym_raise_event_statement_token1] = ACTIONS(4088), + [sym_stop_statement] = ACTIONS(4088), + [sym_beep_statement] = ACTIONS(4088), + [aux_sym_unload_statement_token1] = ACTIONS(4088), + [aux_sym_def_type_statement_token1] = ACTIONS(4088), + [aux_sym_def_type_statement_token2] = ACTIONS(4088), + [aux_sym_def_type_statement_token3] = ACTIONS(4088), + [aux_sym_def_type_statement_token4] = ACTIONS(4088), + [aux_sym_def_type_statement_token5] = ACTIONS(4088), + [aux_sym_def_type_statement_token6] = ACTIONS(4088), + [aux_sym_def_type_statement_token7] = ACTIONS(4088), + [aux_sym_def_type_statement_token8] = ACTIONS(4088), + [aux_sym_def_type_statement_token9] = ACTIONS(4088), + [aux_sym_def_type_statement_token10] = ACTIONS(4088), + [aux_sym_def_type_statement_token11] = ACTIONS(4088), + [aux_sym_def_type_statement_token12] = ACTIONS(4088), + [aux_sym_def_type_statement_token13] = ACTIONS(4088), + [aux_sym_def_type_statement_token14] = ACTIONS(4088), + [aux_sym_call_statement_token1] = ACTIONS(4088), + [sym__ambiguous_call_statement] = ACTIONS(4088), + [aux_sym_addressof_expression_token1] = ACTIONS(4697), + [aux_sym_type_of_expression_token1] = ACTIONS(4699), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(4943), + [sym_number_literal] = ACTIONS(4943), + [aux_sym_boolean_literal_token1] = ACTIONS(4703), + [aux_sym_boolean_literal_token2] = ACTIONS(4703), + [sym_nothing_literal] = ACTIONS(4945), + [sym_null_literal] = ACTIONS(4945), + [sym_empty_literal] = ACTIONS(4945), + [sym_date_literal] = ACTIONS(4943), + [anon_sym_POUND] = ACTIONS(4707), + }, + [STATE(546)] = { + [sym_output_list] = STATE(6515), + [sym__print_output_expression] = STATE(4714), + [sym__unparenthesized_print_output_expression] = STATE(4714), + [sym__print_output_call_binary_expression] = STATE(4714), + [sym__print_output_call_operand] = STATE(10987), + [sym__print_output_member_comparison_expression] = STATE(5409), + [sym__print_output_call_member_expression] = STATE(827), + [sym__print_output_call_expression] = STATE(2660), + [sym__print_output_qualified_callable] = STATE(13601), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10988), + [sym_comparison_expression] = STATE(4716), + [sym__comparison_operand] = STATE(11458), + [sym_logical_value_expression] = STATE(4717), + [sym__callable_expression] = STATE(13623), + [sym_call_expression] = STATE(10299), + [sym_new_expression] = STATE(1276), + [sym_addressof_expression] = STATE(1276), + [sym_type_of_expression] = STATE(1276), + [sym_member_expression] = STATE(1277), + [sym_qualified_member_expression] = STATE(1158), + [sym_implicit_member_expression] = STATE(1158), + [sym_parenthesized_expression] = STATE(1055), + [sym_binary_expression] = STATE(1459), + [sym_unary_expression] = STATE(2669), + [sym__signed_unary_expression] = STATE(1163), + [sym__literal] = STATE(1276), + [sym_boolean_literal] = STATE(1276), + [sym_file_number_literal] = STATE(1276), + [sym_identifier] = ACTIONS(4935), + [sym_newline] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4092), + [aux_sym_frm_property_statement_token1] = ACTIONS(4937), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(4681), + [aux_sym__attribute_identifier_token1] = ACTIONS(4092), + [aux_sym_option_statement_token3] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4092), + [aux_sym_preprocessor_const_token1] = ACTIONS(4092), + [sym_static_modifier] = ACTIONS(4092), + [sym__dim_keyword] = ACTIONS(4092), + [sym__redim_keyword] = ACTIONS(4092), + [aux_sym_get_accessor_token1] = ACTIONS(4092), + [aux_sym_set_accessor_token1] = ACTIONS(4092), + [aux_sym_const_declaration_token1] = ACTIONS(4092), + [anon_sym_LPAREN] = ACTIONS(4939), + [aux_sym_as_type_clause_token2] = ACTIONS(4689), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4941), + [aux_sym_visibility_token1] = ACTIONS(4092), + [aux_sym_visibility_token2] = ACTIONS(4092), + [aux_sym_elseif_fragment_token1] = ACTIONS(4092), + [aux_sym_else_fragment_token1] = ACTIONS(4092), + [aux_sym_select_statement_token1] = ACTIONS(4092), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4092), + [aux_sym__for_header_token1] = ACTIONS(4092), + [aux_sym_do_statement_token1] = ACTIONS(4092), + [aux_sym_do_condition_token1] = ACTIONS(4092), + [aux_sym_with_statement_token1] = ACTIONS(4092), + [aux_sym_exit_statement_token1] = ACTIONS(4092), + [sym_end_statement] = ACTIONS(4090), + [aux_sym_on_goto_statement_token1] = ACTIONS(4092), + [aux_sym_on_goto_statement_token2] = ACTIONS(4092), + [aux_sym_on_error_statement_token2] = ACTIONS(4092), + [sym__ambiguous_redim_statement] = ACTIONS(4090), + [aux_sym_erase_statement_token1] = ACTIONS(4092), + [aux_sym_open_statement_token1] = ACTIONS(4092), + [aux_sym_file_mode_token2] = ACTIONS(4092), + [aux_sym_file_access_token2] = ACTIONS(4092), + [aux_sym_file_lock_token2] = ACTIONS(4092), + [aux_sym_print_statement_token1] = ACTIONS(4092), + [anon_sym_PLUS] = ACTIONS(4693), + [anon_sym_DASH] = ACTIONS(4695), + [anon_sym_QMARK] = ACTIONS(4090), + [aux_sym_close_statement_token1] = ACTIONS(4092), + [aux_sym_put_statement_token1] = ACTIONS(4092), + [aux_sym_unlock_statement_token1] = ACTIONS(4092), + [aux_sym_seek_statement_token1] = ACTIONS(4092), + [sym_reset_statement] = ACTIONS(4092), + [aux_sym_raise_event_statement_token1] = ACTIONS(4092), + [sym_stop_statement] = ACTIONS(4092), + [sym_beep_statement] = ACTIONS(4092), + [aux_sym_unload_statement_token1] = ACTIONS(4092), + [aux_sym_def_type_statement_token1] = ACTIONS(4092), + [aux_sym_def_type_statement_token2] = ACTIONS(4092), + [aux_sym_def_type_statement_token3] = ACTIONS(4092), + [aux_sym_def_type_statement_token4] = ACTIONS(4092), + [aux_sym_def_type_statement_token5] = ACTIONS(4092), + [aux_sym_def_type_statement_token6] = ACTIONS(4092), + [aux_sym_def_type_statement_token7] = ACTIONS(4092), + [aux_sym_def_type_statement_token8] = ACTIONS(4092), + [aux_sym_def_type_statement_token9] = ACTIONS(4092), + [aux_sym_def_type_statement_token10] = ACTIONS(4092), + [aux_sym_def_type_statement_token11] = ACTIONS(4092), + [aux_sym_def_type_statement_token12] = ACTIONS(4092), + [aux_sym_def_type_statement_token13] = ACTIONS(4092), + [aux_sym_def_type_statement_token14] = ACTIONS(4092), + [aux_sym_call_statement_token1] = ACTIONS(4092), + [sym__ambiguous_call_statement] = ACTIONS(4092), + [aux_sym_addressof_expression_token1] = ACTIONS(4697), + [aux_sym_type_of_expression_token1] = ACTIONS(4699), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(4943), + [sym_number_literal] = ACTIONS(4943), + [aux_sym_boolean_literal_token1] = ACTIONS(4703), + [aux_sym_boolean_literal_token2] = ACTIONS(4703), + [sym_nothing_literal] = ACTIONS(4945), + [sym_null_literal] = ACTIONS(4945), + [sym_empty_literal] = ACTIONS(4945), + [sym_date_literal] = ACTIONS(4943), + [anon_sym_POUND] = ACTIONS(4707), + }, + [STATE(547)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(548)] = { + [sym_output_list] = STATE(6781), + [sym__print_output_expression] = STATE(4733), + [sym__unparenthesized_print_output_expression] = STATE(4733), + [sym__print_output_call_binary_expression] = STATE(4733), + [sym__print_output_call_operand] = STATE(10989), + [sym__print_output_member_comparison_expression] = STATE(5102), + [sym__print_output_call_member_expression] = STATE(803), + [sym__print_output_call_expression] = STATE(2585), + [sym__print_output_qualified_callable] = STATE(13142), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10990), + [sym_comparison_expression] = STATE(4734), + [sym__comparison_operand] = STATE(11361), + [sym_logical_value_expression] = STATE(4735), + [sym__callable_expression] = STATE(13150), + [sym_call_expression] = STATE(10294), + [sym_new_expression] = STATE(1339), + [sym_addressof_expression] = STATE(1339), + [sym_type_of_expression] = STATE(1339), + [sym_member_expression] = STATE(1340), + [sym_qualified_member_expression] = STATE(1221), + [sym_implicit_member_expression] = STATE(1221), + [sym_parenthesized_expression] = STATE(1341), + [sym_binary_expression] = STATE(1342), + [sym_unary_expression] = STATE(2631), + [sym__signed_unary_expression] = STATE(1313), + [sym__literal] = STATE(1339), + [sym_boolean_literal] = STATE(1339), + [sym_file_number_literal] = STATE(1339), + [sym_identifier] = ACTIONS(4949), + [sym_newline] = ACTIONS(4072), + [anon_sym_COLON] = ACTIONS(4072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4074), + [aux_sym_frm_property_statement_token1] = ACTIONS(4951), + [anon_sym_DOT] = ACTIONS(4715), + [anon_sym_BANG] = ACTIONS(4717), + [aux_sym__attribute_identifier_token1] = ACTIONS(4074), + [aux_sym_option_statement_token3] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4074), + [aux_sym_preprocessor_const_token1] = ACTIONS(4074), + [sym_static_modifier] = ACTIONS(4074), + [sym__dim_keyword] = ACTIONS(4074), + [sym__redim_keyword] = ACTIONS(4074), + [aux_sym_get_accessor_token1] = ACTIONS(4074), + [aux_sym_set_accessor_token1] = ACTIONS(4074), + [aux_sym_const_declaration_token1] = ACTIONS(4074), + [anon_sym_LPAREN] = ACTIONS(4953), + [aux_sym_as_type_clause_token2] = ACTIONS(4725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4955), + [aux_sym_visibility_token1] = ACTIONS(4074), + [aux_sym_visibility_token2] = ACTIONS(4074), + [aux_sym_elseif_fragment_token1] = ACTIONS(4074), + [aux_sym_else_fragment_token1] = ACTIONS(4074), + [aux_sym_select_statement_token1] = ACTIONS(4074), + [aux_sym__for_header_token1] = ACTIONS(4074), + [aux_sym_do_statement_token1] = ACTIONS(4074), + [aux_sym_do_condition_token1] = ACTIONS(4074), + [aux_sym_while_statement_token1] = ACTIONS(4074), + [aux_sym_with_statement_token1] = ACTIONS(4074), + [aux_sym_exit_statement_token1] = ACTIONS(4074), + [sym_end_statement] = ACTIONS(4072), + [aux_sym_on_goto_statement_token1] = ACTIONS(4074), + [aux_sym_on_goto_statement_token2] = ACTIONS(4074), + [aux_sym_on_error_statement_token2] = ACTIONS(4074), + [sym__ambiguous_redim_statement] = ACTIONS(4072), + [aux_sym_erase_statement_token1] = ACTIONS(4074), + [aux_sym_open_statement_token1] = ACTIONS(4074), + [aux_sym_file_mode_token2] = ACTIONS(4074), + [aux_sym_file_access_token2] = ACTIONS(4074), + [aux_sym_file_lock_token2] = ACTIONS(4074), + [aux_sym_print_statement_token1] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(4729), + [anon_sym_DASH] = ACTIONS(4731), + [anon_sym_QMARK] = ACTIONS(4072), + [aux_sym_close_statement_token1] = ACTIONS(4074), + [aux_sym_put_statement_token1] = ACTIONS(4074), + [aux_sym_unlock_statement_token1] = ACTIONS(4074), + [aux_sym_seek_statement_token1] = ACTIONS(4074), + [sym_reset_statement] = ACTIONS(4074), + [aux_sym_raise_event_statement_token1] = ACTIONS(4074), + [sym_stop_statement] = ACTIONS(4074), + [sym_beep_statement] = ACTIONS(4074), + [aux_sym_unload_statement_token1] = ACTIONS(4074), + [aux_sym_def_type_statement_token1] = ACTIONS(4074), + [aux_sym_def_type_statement_token2] = ACTIONS(4074), + [aux_sym_def_type_statement_token3] = ACTIONS(4074), + [aux_sym_def_type_statement_token4] = ACTIONS(4074), + [aux_sym_def_type_statement_token5] = ACTIONS(4074), + [aux_sym_def_type_statement_token6] = ACTIONS(4074), + [aux_sym_def_type_statement_token7] = ACTIONS(4074), + [aux_sym_def_type_statement_token8] = ACTIONS(4074), + [aux_sym_def_type_statement_token9] = ACTIONS(4074), + [aux_sym_def_type_statement_token10] = ACTIONS(4074), + [aux_sym_def_type_statement_token11] = ACTIONS(4074), + [aux_sym_def_type_statement_token12] = ACTIONS(4074), + [aux_sym_def_type_statement_token13] = ACTIONS(4074), + [aux_sym_def_type_statement_token14] = ACTIONS(4074), + [aux_sym_call_statement_token1] = ACTIONS(4074), + [sym__ambiguous_call_statement] = ACTIONS(4074), + [aux_sym_addressof_expression_token1] = ACTIONS(4733), + [aux_sym_type_of_expression_token1] = ACTIONS(4735), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(4957), + [sym_number_literal] = ACTIONS(4957), + [aux_sym_boolean_literal_token1] = ACTIONS(4739), + [aux_sym_boolean_literal_token2] = ACTIONS(4739), + [sym_nothing_literal] = ACTIONS(4959), + [sym_null_literal] = ACTIONS(4959), + [sym_empty_literal] = ACTIONS(4959), + [sym_date_literal] = ACTIONS(4957), + [anon_sym_POUND] = ACTIONS(4743), + }, + [STATE(549)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(550)] = { + [sym__print_method_output_list] = STATE(6806), + [sym__unparenthesized_print_output_expression] = STATE(4737), + [sym__print_output_call_binary_expression] = STATE(4737), + [sym__print_output_call_operand] = STATE(10989), + [sym__print_output_member_comparison_expression] = STATE(5102), + [sym__print_output_call_member_expression] = STATE(803), + [sym__print_output_call_expression] = STATE(2585), + [sym__print_output_qualified_callable] = STATE(13142), + [sym_argument_list] = STATE(6807), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10990), + [sym_comparison_expression] = STATE(4734), + [sym__comparison_operand] = STATE(11361), + [sym_logical_value_expression] = STATE(4735), + [sym__callable_expression] = STATE(13150), + [sym_call_expression] = STATE(10294), + [sym_new_expression] = STATE(1339), + [sym_addressof_expression] = STATE(1339), + [sym_type_of_expression] = STATE(1339), + [sym_member_expression] = STATE(1340), + [sym_qualified_member_expression] = STATE(1221), + [sym_implicit_member_expression] = STATE(1221), + [sym_parenthesized_expression] = STATE(10077), + [sym_binary_expression] = STATE(1342), + [sym_unary_expression] = STATE(2631), + [sym__signed_unary_expression] = STATE(1313), + [sym__literal] = STATE(1339), + [sym_boolean_literal] = STATE(1339), + [sym_file_number_literal] = STATE(1339), + [sym_identifier] = ACTIONS(4949), + [sym_newline] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(4094), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4096), + [aux_sym_frm_property_statement_token1] = ACTIONS(4951), + [anon_sym_DOT] = ACTIONS(4715), + [anon_sym_BANG] = ACTIONS(4717), + [aux_sym__attribute_identifier_token1] = ACTIONS(4096), + [aux_sym_option_statement_token3] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4096), + [aux_sym_preprocessor_const_token1] = ACTIONS(4096), + [sym_static_modifier] = ACTIONS(4096), + [sym__dim_keyword] = ACTIONS(4096), + [sym__redim_keyword] = ACTIONS(4096), + [aux_sym_get_accessor_token1] = ACTIONS(4096), + [aux_sym_set_accessor_token1] = ACTIONS(4096), + [aux_sym_const_declaration_token1] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4961), + [aux_sym_as_type_clause_token2] = ACTIONS(4725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4955), + [aux_sym_visibility_token1] = ACTIONS(4096), + [aux_sym_visibility_token2] = ACTIONS(4096), + [aux_sym_elseif_fragment_token1] = ACTIONS(4096), + [aux_sym_else_fragment_token1] = ACTIONS(4096), + [aux_sym_select_statement_token1] = ACTIONS(4096), + [aux_sym__for_header_token1] = ACTIONS(4096), + [aux_sym_do_statement_token1] = ACTIONS(4096), + [aux_sym_do_condition_token1] = ACTIONS(4096), + [aux_sym_while_statement_token1] = ACTIONS(4096), + [aux_sym_with_statement_token1] = ACTIONS(4096), + [aux_sym_exit_statement_token1] = ACTIONS(4096), + [sym_end_statement] = ACTIONS(4094), + [aux_sym_on_goto_statement_token1] = ACTIONS(4096), + [aux_sym_on_goto_statement_token2] = ACTIONS(4096), + [aux_sym_on_error_statement_token2] = ACTIONS(4096), + [sym__ambiguous_redim_statement] = ACTIONS(4094), + [aux_sym_erase_statement_token1] = ACTIONS(4096), + [aux_sym_open_statement_token1] = ACTIONS(4096), + [aux_sym_file_mode_token2] = ACTIONS(4096), + [aux_sym_file_access_token2] = ACTIONS(4096), + [aux_sym_file_lock_token2] = ACTIONS(4096), + [aux_sym_print_statement_token1] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4729), + [anon_sym_DASH] = ACTIONS(4731), + [anon_sym_QMARK] = ACTIONS(4094), + [aux_sym_close_statement_token1] = ACTIONS(4096), + [aux_sym_put_statement_token1] = ACTIONS(4096), + [aux_sym_unlock_statement_token1] = ACTIONS(4096), + [aux_sym_seek_statement_token1] = ACTIONS(4096), + [sym_reset_statement] = ACTIONS(4096), + [aux_sym_raise_event_statement_token1] = ACTIONS(4096), + [sym_stop_statement] = ACTIONS(4096), + [sym_beep_statement] = ACTIONS(4096), + [aux_sym_unload_statement_token1] = ACTIONS(4096), + [aux_sym_def_type_statement_token1] = ACTIONS(4096), + [aux_sym_def_type_statement_token2] = ACTIONS(4096), + [aux_sym_def_type_statement_token3] = ACTIONS(4096), + [aux_sym_def_type_statement_token4] = ACTIONS(4096), + [aux_sym_def_type_statement_token5] = ACTIONS(4096), + [aux_sym_def_type_statement_token6] = ACTIONS(4096), + [aux_sym_def_type_statement_token7] = ACTIONS(4096), + [aux_sym_def_type_statement_token8] = ACTIONS(4096), + [aux_sym_def_type_statement_token9] = ACTIONS(4096), + [aux_sym_def_type_statement_token10] = ACTIONS(4096), + [aux_sym_def_type_statement_token11] = ACTIONS(4096), + [aux_sym_def_type_statement_token12] = ACTIONS(4096), + [aux_sym_def_type_statement_token13] = ACTIONS(4096), + [aux_sym_def_type_statement_token14] = ACTIONS(4096), + [aux_sym_call_statement_token1] = ACTIONS(4096), + [sym__ambiguous_call_statement] = ACTIONS(4096), + [aux_sym_addressof_expression_token1] = ACTIONS(4733), + [aux_sym_type_of_expression_token1] = ACTIONS(4735), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(4957), + [sym_number_literal] = ACTIONS(4957), + [aux_sym_boolean_literal_token1] = ACTIONS(4739), + [aux_sym_boolean_literal_token2] = ACTIONS(4739), + [sym_nothing_literal] = ACTIONS(4959), + [sym_null_literal] = ACTIONS(4959), + [sym_empty_literal] = ACTIONS(4959), + [sym_date_literal] = ACTIONS(4957), + [anon_sym_POUND] = ACTIONS(4743), + }, + [STATE(551)] = { + [sym_output_list] = STATE(6885), + [sym__print_output_expression] = STATE(4733), + [sym__unparenthesized_print_output_expression] = STATE(4733), + [sym__print_output_call_binary_expression] = STATE(4733), + [sym__print_output_call_operand] = STATE(10989), + [sym__print_output_member_comparison_expression] = STATE(5102), + [sym__print_output_call_member_expression] = STATE(803), + [sym__print_output_call_expression] = STATE(2585), + [sym__print_output_qualified_callable] = STATE(13142), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10990), + [sym_comparison_expression] = STATE(4734), + [sym__comparison_operand] = STATE(11361), + [sym_logical_value_expression] = STATE(4735), + [sym__callable_expression] = STATE(13150), + [sym_call_expression] = STATE(10294), + [sym_new_expression] = STATE(1339), + [sym_addressof_expression] = STATE(1339), + [sym_type_of_expression] = STATE(1339), + [sym_member_expression] = STATE(1340), + [sym_qualified_member_expression] = STATE(1221), + [sym_implicit_member_expression] = STATE(1221), + [sym_parenthesized_expression] = STATE(1341), + [sym_binary_expression] = STATE(1342), + [sym_unary_expression] = STATE(2631), + [sym__signed_unary_expression] = STATE(1313), + [sym__literal] = STATE(1339), + [sym_boolean_literal] = STATE(1339), + [sym_file_number_literal] = STATE(1339), + [sym_identifier] = ACTIONS(4949), + [sym_newline] = ACTIONS(4086), + [anon_sym_COLON] = ACTIONS(4086), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4088), + [aux_sym_frm_property_statement_token1] = ACTIONS(4951), + [anon_sym_DOT] = ACTIONS(4715), + [anon_sym_BANG] = ACTIONS(4717), + [aux_sym__attribute_identifier_token1] = ACTIONS(4088), + [aux_sym_option_statement_token3] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4088), + [aux_sym_preprocessor_const_token1] = ACTIONS(4088), + [sym_static_modifier] = ACTIONS(4088), + [sym__dim_keyword] = ACTIONS(4088), + [sym__redim_keyword] = ACTIONS(4088), + [aux_sym_get_accessor_token1] = ACTIONS(4088), + [aux_sym_set_accessor_token1] = ACTIONS(4088), + [aux_sym_const_declaration_token1] = ACTIONS(4088), + [anon_sym_LPAREN] = ACTIONS(4953), + [aux_sym_as_type_clause_token2] = ACTIONS(4725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4955), + [aux_sym_visibility_token1] = ACTIONS(4088), + [aux_sym_visibility_token2] = ACTIONS(4088), + [aux_sym_elseif_fragment_token1] = ACTIONS(4088), + [aux_sym_else_fragment_token1] = ACTIONS(4088), + [aux_sym_select_statement_token1] = ACTIONS(4088), + [aux_sym__for_header_token1] = ACTIONS(4088), + [aux_sym_do_statement_token1] = ACTIONS(4088), + [aux_sym_do_condition_token1] = ACTIONS(4088), + [aux_sym_while_statement_token1] = ACTIONS(4088), + [aux_sym_with_statement_token1] = ACTIONS(4088), + [aux_sym_exit_statement_token1] = ACTIONS(4088), + [sym_end_statement] = ACTIONS(4086), + [aux_sym_on_goto_statement_token1] = ACTIONS(4088), + [aux_sym_on_goto_statement_token2] = ACTIONS(4088), + [aux_sym_on_error_statement_token2] = ACTIONS(4088), + [sym__ambiguous_redim_statement] = ACTIONS(4086), + [aux_sym_erase_statement_token1] = ACTIONS(4088), + [aux_sym_open_statement_token1] = ACTIONS(4088), + [aux_sym_file_mode_token2] = ACTIONS(4088), + [aux_sym_file_access_token2] = ACTIONS(4088), + [aux_sym_file_lock_token2] = ACTIONS(4088), + [aux_sym_print_statement_token1] = ACTIONS(4088), + [anon_sym_PLUS] = ACTIONS(4729), + [anon_sym_DASH] = ACTIONS(4731), + [anon_sym_QMARK] = ACTIONS(4086), + [aux_sym_close_statement_token1] = ACTIONS(4088), + [aux_sym_put_statement_token1] = ACTIONS(4088), + [aux_sym_unlock_statement_token1] = ACTIONS(4088), + [aux_sym_seek_statement_token1] = ACTIONS(4088), + [sym_reset_statement] = ACTIONS(4088), + [aux_sym_raise_event_statement_token1] = ACTIONS(4088), + [sym_stop_statement] = ACTIONS(4088), + [sym_beep_statement] = ACTIONS(4088), + [aux_sym_unload_statement_token1] = ACTIONS(4088), + [aux_sym_def_type_statement_token1] = ACTIONS(4088), + [aux_sym_def_type_statement_token2] = ACTIONS(4088), + [aux_sym_def_type_statement_token3] = ACTIONS(4088), + [aux_sym_def_type_statement_token4] = ACTIONS(4088), + [aux_sym_def_type_statement_token5] = ACTIONS(4088), + [aux_sym_def_type_statement_token6] = ACTIONS(4088), + [aux_sym_def_type_statement_token7] = ACTIONS(4088), + [aux_sym_def_type_statement_token8] = ACTIONS(4088), + [aux_sym_def_type_statement_token9] = ACTIONS(4088), + [aux_sym_def_type_statement_token10] = ACTIONS(4088), + [aux_sym_def_type_statement_token11] = ACTIONS(4088), + [aux_sym_def_type_statement_token12] = ACTIONS(4088), + [aux_sym_def_type_statement_token13] = ACTIONS(4088), + [aux_sym_def_type_statement_token14] = ACTIONS(4088), + [aux_sym_call_statement_token1] = ACTIONS(4088), + [sym__ambiguous_call_statement] = ACTIONS(4088), + [aux_sym_addressof_expression_token1] = ACTIONS(4733), + [aux_sym_type_of_expression_token1] = ACTIONS(4735), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(4957), + [sym_number_literal] = ACTIONS(4957), + [aux_sym_boolean_literal_token1] = ACTIONS(4739), + [aux_sym_boolean_literal_token2] = ACTIONS(4739), + [sym_nothing_literal] = ACTIONS(4959), + [sym_null_literal] = ACTIONS(4959), + [sym_empty_literal] = ACTIONS(4959), + [sym_date_literal] = ACTIONS(4957), + [anon_sym_POUND] = ACTIONS(4743), + }, + [STATE(552)] = { + [sym_output_list] = STATE(6889), + [sym__print_output_expression] = STATE(4733), + [sym__unparenthesized_print_output_expression] = STATE(4733), + [sym__print_output_call_binary_expression] = STATE(4733), + [sym__print_output_call_operand] = STATE(10989), + [sym__print_output_member_comparison_expression] = STATE(5102), + [sym__print_output_call_member_expression] = STATE(803), + [sym__print_output_call_expression] = STATE(2585), + [sym__print_output_qualified_callable] = STATE(13142), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10990), + [sym_comparison_expression] = STATE(4734), + [sym__comparison_operand] = STATE(11361), + [sym_logical_value_expression] = STATE(4735), + [sym__callable_expression] = STATE(13150), + [sym_call_expression] = STATE(10294), + [sym_new_expression] = STATE(1339), + [sym_addressof_expression] = STATE(1339), + [sym_type_of_expression] = STATE(1339), + [sym_member_expression] = STATE(1340), + [sym_qualified_member_expression] = STATE(1221), + [sym_implicit_member_expression] = STATE(1221), + [sym_parenthesized_expression] = STATE(1341), + [sym_binary_expression] = STATE(1342), + [sym_unary_expression] = STATE(2631), + [sym__signed_unary_expression] = STATE(1313), + [sym__literal] = STATE(1339), + [sym_boolean_literal] = STATE(1339), + [sym_file_number_literal] = STATE(1339), + [sym_identifier] = ACTIONS(4949), + [sym_newline] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4092), + [aux_sym_frm_property_statement_token1] = ACTIONS(4951), + [anon_sym_DOT] = ACTIONS(4715), + [anon_sym_BANG] = ACTIONS(4717), + [aux_sym__attribute_identifier_token1] = ACTIONS(4092), + [aux_sym_option_statement_token3] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4092), + [aux_sym_preprocessor_const_token1] = ACTIONS(4092), + [sym_static_modifier] = ACTIONS(4092), + [sym__dim_keyword] = ACTIONS(4092), + [sym__redim_keyword] = ACTIONS(4092), + [aux_sym_get_accessor_token1] = ACTIONS(4092), + [aux_sym_set_accessor_token1] = ACTIONS(4092), + [aux_sym_const_declaration_token1] = ACTIONS(4092), + [anon_sym_LPAREN] = ACTIONS(4953), + [aux_sym_as_type_clause_token2] = ACTIONS(4725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4955), + [aux_sym_visibility_token1] = ACTIONS(4092), + [aux_sym_visibility_token2] = ACTIONS(4092), + [aux_sym_elseif_fragment_token1] = ACTIONS(4092), + [aux_sym_else_fragment_token1] = ACTIONS(4092), + [aux_sym_select_statement_token1] = ACTIONS(4092), + [aux_sym__for_header_token1] = ACTIONS(4092), + [aux_sym_do_statement_token1] = ACTIONS(4092), + [aux_sym_do_condition_token1] = ACTIONS(4092), + [aux_sym_while_statement_token1] = ACTIONS(4092), + [aux_sym_with_statement_token1] = ACTIONS(4092), + [aux_sym_exit_statement_token1] = ACTIONS(4092), + [sym_end_statement] = ACTIONS(4090), + [aux_sym_on_goto_statement_token1] = ACTIONS(4092), + [aux_sym_on_goto_statement_token2] = ACTIONS(4092), + [aux_sym_on_error_statement_token2] = ACTIONS(4092), + [sym__ambiguous_redim_statement] = ACTIONS(4090), + [aux_sym_erase_statement_token1] = ACTIONS(4092), + [aux_sym_open_statement_token1] = ACTIONS(4092), + [aux_sym_file_mode_token2] = ACTIONS(4092), + [aux_sym_file_access_token2] = ACTIONS(4092), + [aux_sym_file_lock_token2] = ACTIONS(4092), + [aux_sym_print_statement_token1] = ACTIONS(4092), + [anon_sym_PLUS] = ACTIONS(4729), + [anon_sym_DASH] = ACTIONS(4731), + [anon_sym_QMARK] = ACTIONS(4090), + [aux_sym_close_statement_token1] = ACTIONS(4092), + [aux_sym_put_statement_token1] = ACTIONS(4092), + [aux_sym_unlock_statement_token1] = ACTIONS(4092), + [aux_sym_seek_statement_token1] = ACTIONS(4092), + [sym_reset_statement] = ACTIONS(4092), + [aux_sym_raise_event_statement_token1] = ACTIONS(4092), + [sym_stop_statement] = ACTIONS(4092), + [sym_beep_statement] = ACTIONS(4092), + [aux_sym_unload_statement_token1] = ACTIONS(4092), + [aux_sym_def_type_statement_token1] = ACTIONS(4092), + [aux_sym_def_type_statement_token2] = ACTIONS(4092), + [aux_sym_def_type_statement_token3] = ACTIONS(4092), + [aux_sym_def_type_statement_token4] = ACTIONS(4092), + [aux_sym_def_type_statement_token5] = ACTIONS(4092), + [aux_sym_def_type_statement_token6] = ACTIONS(4092), + [aux_sym_def_type_statement_token7] = ACTIONS(4092), + [aux_sym_def_type_statement_token8] = ACTIONS(4092), + [aux_sym_def_type_statement_token9] = ACTIONS(4092), + [aux_sym_def_type_statement_token10] = ACTIONS(4092), + [aux_sym_def_type_statement_token11] = ACTIONS(4092), + [aux_sym_def_type_statement_token12] = ACTIONS(4092), + [aux_sym_def_type_statement_token13] = ACTIONS(4092), + [aux_sym_def_type_statement_token14] = ACTIONS(4092), + [aux_sym_call_statement_token1] = ACTIONS(4092), + [sym__ambiguous_call_statement] = ACTIONS(4092), + [aux_sym_addressof_expression_token1] = ACTIONS(4733), + [aux_sym_type_of_expression_token1] = ACTIONS(4735), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(4957), + [sym_number_literal] = ACTIONS(4957), + [aux_sym_boolean_literal_token1] = ACTIONS(4739), + [aux_sym_boolean_literal_token2] = ACTIONS(4739), + [sym_nothing_literal] = ACTIONS(4959), + [sym_null_literal] = ACTIONS(4959), + [sym_empty_literal] = ACTIONS(4959), + [sym_date_literal] = ACTIONS(4957), + [anon_sym_POUND] = ACTIONS(4743), + }, + [STATE(553)] = { + [sym_output_list] = STATE(6694), + [sym__print_output_expression] = STATE(4879), + [sym__unparenthesized_print_output_expression] = STATE(4879), + [sym__print_output_call_binary_expression] = STATE(4879), + [sym__print_output_call_operand] = STATE(10983), + [sym__print_output_member_comparison_expression] = STATE(5764), + [sym__print_output_call_member_expression] = STATE(866), + [sym__print_output_call_expression] = STATE(2771), + [sym__print_output_qualified_callable] = STATE(13617), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10982), + [sym_comparison_expression] = STATE(4880), + [sym__comparison_operand] = STATE(11262), + [sym_logical_value_expression] = STATE(4881), + [sym__callable_expression] = STATE(13618), + [sym_call_expression] = STATE(10290), + [sym_new_expression] = STATE(1452), + [sym_addressof_expression] = STATE(1452), + [sym_type_of_expression] = STATE(1452), + [sym_member_expression] = STATE(1453), + [sym_qualified_member_expression] = STATE(1441), + [sym_implicit_member_expression] = STATE(1441), + [sym_parenthesized_expression] = STATE(1457), + [sym_binary_expression] = STATE(1211), + [sym_unary_expression] = STATE(2897), + [sym__signed_unary_expression] = STATE(1416), + [sym__literal] = STATE(1452), + [sym_boolean_literal] = STATE(1452), + [sym_file_number_literal] = STATE(1452), + [sym_identifier] = ACTIONS(4871), + [sym_newline] = ACTIONS(4086), + [anon_sym_COLON] = ACTIONS(4086), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4088), + [aux_sym_frm_property_statement_token1] = ACTIONS(4873), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4778), + [aux_sym__attribute_identifier_token1] = ACTIONS(4088), + [aux_sym_option_statement_token3] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4088), + [aux_sym_preprocessor_const_token1] = ACTIONS(4088), + [sym_static_modifier] = ACTIONS(4088), + [sym__dim_keyword] = ACTIONS(4088), + [sym__redim_keyword] = ACTIONS(4088), + [aux_sym_get_accessor_token1] = ACTIONS(4088), + [aux_sym_set_accessor_token1] = ACTIONS(4088), + [aux_sym_const_declaration_token1] = ACTIONS(4088), + [anon_sym_LPAREN] = ACTIONS(4875), + [aux_sym_as_type_clause_token2] = ACTIONS(4786), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4877), + [aux_sym_visibility_token1] = ACTIONS(4088), + [aux_sym_visibility_token2] = ACTIONS(4088), + [aux_sym_elseif_fragment_token1] = ACTIONS(4088), + [aux_sym_else_fragment_token1] = ACTIONS(4088), + [aux_sym_select_statement_token1] = ACTIONS(4088), + [aux_sym__for_header_token1] = ACTIONS(4088), + [aux_sym_do_statement_token1] = ACTIONS(4088), + [aux_sym_do_statement_token2] = ACTIONS(4088), + [aux_sym_do_condition_token1] = ACTIONS(4088), + [aux_sym_with_statement_token1] = ACTIONS(4088), + [aux_sym_exit_statement_token1] = ACTIONS(4088), + [sym_end_statement] = ACTIONS(4086), + [aux_sym_on_goto_statement_token1] = ACTIONS(4088), + [aux_sym_on_goto_statement_token2] = ACTIONS(4088), + [aux_sym_on_error_statement_token2] = ACTIONS(4088), + [sym__ambiguous_redim_statement] = ACTIONS(4086), + [aux_sym_erase_statement_token1] = ACTIONS(4088), + [aux_sym_open_statement_token1] = ACTIONS(4088), + [aux_sym_file_mode_token2] = ACTIONS(4088), + [aux_sym_file_access_token2] = ACTIONS(4088), + [aux_sym_file_lock_token2] = ACTIONS(4088), + [aux_sym_print_statement_token1] = ACTIONS(4088), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_QMARK] = ACTIONS(4086), + [aux_sym_close_statement_token1] = ACTIONS(4088), + [aux_sym_put_statement_token1] = ACTIONS(4088), + [aux_sym_unlock_statement_token1] = ACTIONS(4088), + [aux_sym_seek_statement_token1] = ACTIONS(4088), + [sym_reset_statement] = ACTIONS(4088), + [aux_sym_raise_event_statement_token1] = ACTIONS(4088), + [sym_stop_statement] = ACTIONS(4088), + [sym_beep_statement] = ACTIONS(4088), + [aux_sym_unload_statement_token1] = ACTIONS(4088), + [aux_sym_def_type_statement_token1] = ACTIONS(4088), + [aux_sym_def_type_statement_token2] = ACTIONS(4088), + [aux_sym_def_type_statement_token3] = ACTIONS(4088), + [aux_sym_def_type_statement_token4] = ACTIONS(4088), + [aux_sym_def_type_statement_token5] = ACTIONS(4088), + [aux_sym_def_type_statement_token6] = ACTIONS(4088), + [aux_sym_def_type_statement_token7] = ACTIONS(4088), + [aux_sym_def_type_statement_token8] = ACTIONS(4088), + [aux_sym_def_type_statement_token9] = ACTIONS(4088), + [aux_sym_def_type_statement_token10] = ACTIONS(4088), + [aux_sym_def_type_statement_token11] = ACTIONS(4088), + [aux_sym_def_type_statement_token12] = ACTIONS(4088), + [aux_sym_def_type_statement_token13] = ACTIONS(4088), + [aux_sym_def_type_statement_token14] = ACTIONS(4088), + [aux_sym_call_statement_token1] = ACTIONS(4088), + [sym__ambiguous_call_statement] = ACTIONS(4088), + [aux_sym_addressof_expression_token1] = ACTIONS(4794), + [aux_sym_type_of_expression_token1] = ACTIONS(4796), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(4879), + [sym_number_literal] = ACTIONS(4879), + [aux_sym_boolean_literal_token1] = ACTIONS(4800), + [aux_sym_boolean_literal_token2] = ACTIONS(4800), + [sym_nothing_literal] = ACTIONS(4881), + [sym_null_literal] = ACTIONS(4881), + [sym_empty_literal] = ACTIONS(4881), + [sym_date_literal] = ACTIONS(4879), + [anon_sym_POUND] = ACTIONS(4804), + }, + [STATE(554)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_declaration_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4447), + [aux_sym_enum_declaration_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4447), + [aux_sym_declare_function_statement_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [aux_sym__property_get_header_token1] = ACTIONS(4447), + [aux_sym_event_declaration_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_array_bound_token1] = ACTIONS(4447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(555)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_declaration_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4477), + [aux_sym_enum_declaration_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4477), + [aux_sym_declare_function_statement_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [aux_sym__property_get_header_token1] = ACTIONS(4477), + [aux_sym_event_declaration_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_array_bound_token1] = ACTIONS(4477), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(556)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_declaration_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4485), + [aux_sym_enum_declaration_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4485), + [aux_sym_declare_function_statement_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [aux_sym__property_get_header_token1] = ACTIONS(4485), + [aux_sym_event_declaration_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_array_bound_token1] = ACTIONS(4485), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(557)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_declaration_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4441), + [aux_sym_enum_declaration_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4441), + [aux_sym_declare_function_statement_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [aux_sym__property_get_header_token1] = ACTIONS(4441), + [aux_sym_event_declaration_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_array_bound_token1] = ACTIONS(4441), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(558)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_declaration_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4451), + [aux_sym_enum_declaration_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4451), + [aux_sym_declare_function_statement_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [aux_sym__property_get_header_token1] = ACTIONS(4451), + [aux_sym_event_declaration_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4823), + [aux_sym_array_bound_token1] = ACTIONS(4451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4823), + [anon_sym_BSLASH] = ACTIONS(4827), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4829), + [anon_sym_PLUS] = ACTIONS(4831), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_AMP] = ACTIONS(4835), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4837), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4839), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4841), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4843), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4963), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(559)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(561), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4965), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(560)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_declaration_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4589), + [aux_sym_enum_declaration_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4589), + [aux_sym_declare_function_statement_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [aux_sym__property_get_header_token1] = ACTIONS(4589), + [aux_sym_event_declaration_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_array_bound_token1] = ACTIONS(4589), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(561)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(565), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_declaration_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_enum_declaration_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4375), + [aux_sym_declare_function_statement_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [aux_sym__property_get_header_token1] = ACTIONS(4375), + [aux_sym_event_declaration_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(562)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(563)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(564)] = { + [sym_output_list] = STATE(7013), + [sym__print_output_expression] = STATE(4879), + [sym__unparenthesized_print_output_expression] = STATE(4879), + [sym__print_output_call_binary_expression] = STATE(4879), + [sym__print_output_call_operand] = STATE(10983), + [sym__print_output_member_comparison_expression] = STATE(5764), + [sym__print_output_call_member_expression] = STATE(866), + [sym__print_output_call_expression] = STATE(2771), + [sym__print_output_qualified_callable] = STATE(13617), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10982), + [sym_comparison_expression] = STATE(4880), + [sym__comparison_operand] = STATE(11262), + [sym_logical_value_expression] = STATE(4881), + [sym__callable_expression] = STATE(13618), + [sym_call_expression] = STATE(10290), + [sym_new_expression] = STATE(1452), + [sym_addressof_expression] = STATE(1452), + [sym_type_of_expression] = STATE(1452), + [sym_member_expression] = STATE(1453), + [sym_qualified_member_expression] = STATE(1441), + [sym_implicit_member_expression] = STATE(1441), + [sym_parenthesized_expression] = STATE(1457), + [sym_binary_expression] = STATE(1211), + [sym_unary_expression] = STATE(2897), + [sym__signed_unary_expression] = STATE(1416), + [sym__literal] = STATE(1452), + [sym_boolean_literal] = STATE(1452), + [sym_file_number_literal] = STATE(1452), + [sym_identifier] = ACTIONS(4871), + [sym_newline] = ACTIONS(4072), + [anon_sym_COLON] = ACTIONS(4072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4074), + [aux_sym_frm_property_statement_token1] = ACTIONS(4873), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4778), + [aux_sym__attribute_identifier_token1] = ACTIONS(4074), + [aux_sym_option_statement_token3] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4074), + [aux_sym_preprocessor_const_token1] = ACTIONS(4074), + [sym_static_modifier] = ACTIONS(4074), + [sym__dim_keyword] = ACTIONS(4074), + [sym__redim_keyword] = ACTIONS(4074), + [aux_sym_get_accessor_token1] = ACTIONS(4074), + [aux_sym_set_accessor_token1] = ACTIONS(4074), + [aux_sym_const_declaration_token1] = ACTIONS(4074), + [anon_sym_LPAREN] = ACTIONS(4875), + [aux_sym_as_type_clause_token2] = ACTIONS(4786), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4877), + [aux_sym_visibility_token1] = ACTIONS(4074), + [aux_sym_visibility_token2] = ACTIONS(4074), + [aux_sym_elseif_fragment_token1] = ACTIONS(4074), + [aux_sym_else_fragment_token1] = ACTIONS(4074), + [aux_sym_select_statement_token1] = ACTIONS(4074), + [aux_sym__for_header_token1] = ACTIONS(4074), + [aux_sym_do_statement_token1] = ACTIONS(4074), + [aux_sym_do_statement_token2] = ACTIONS(4074), + [aux_sym_do_condition_token1] = ACTIONS(4074), + [aux_sym_with_statement_token1] = ACTIONS(4074), + [aux_sym_exit_statement_token1] = ACTIONS(4074), + [sym_end_statement] = ACTIONS(4072), + [aux_sym_on_goto_statement_token1] = ACTIONS(4074), + [aux_sym_on_goto_statement_token2] = ACTIONS(4074), + [aux_sym_on_error_statement_token2] = ACTIONS(4074), + [sym__ambiguous_redim_statement] = ACTIONS(4072), + [aux_sym_erase_statement_token1] = ACTIONS(4074), + [aux_sym_open_statement_token1] = ACTIONS(4074), + [aux_sym_file_mode_token2] = ACTIONS(4074), + [aux_sym_file_access_token2] = ACTIONS(4074), + [aux_sym_file_lock_token2] = ACTIONS(4074), + [aux_sym_print_statement_token1] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_QMARK] = ACTIONS(4072), + [aux_sym_close_statement_token1] = ACTIONS(4074), + [aux_sym_put_statement_token1] = ACTIONS(4074), + [aux_sym_unlock_statement_token1] = ACTIONS(4074), + [aux_sym_seek_statement_token1] = ACTIONS(4074), + [sym_reset_statement] = ACTIONS(4074), + [aux_sym_raise_event_statement_token1] = ACTIONS(4074), + [sym_stop_statement] = ACTIONS(4074), + [sym_beep_statement] = ACTIONS(4074), + [aux_sym_unload_statement_token1] = ACTIONS(4074), + [aux_sym_def_type_statement_token1] = ACTIONS(4074), + [aux_sym_def_type_statement_token2] = ACTIONS(4074), + [aux_sym_def_type_statement_token3] = ACTIONS(4074), + [aux_sym_def_type_statement_token4] = ACTIONS(4074), + [aux_sym_def_type_statement_token5] = ACTIONS(4074), + [aux_sym_def_type_statement_token6] = ACTIONS(4074), + [aux_sym_def_type_statement_token7] = ACTIONS(4074), + [aux_sym_def_type_statement_token8] = ACTIONS(4074), + [aux_sym_def_type_statement_token9] = ACTIONS(4074), + [aux_sym_def_type_statement_token10] = ACTIONS(4074), + [aux_sym_def_type_statement_token11] = ACTIONS(4074), + [aux_sym_def_type_statement_token12] = ACTIONS(4074), + [aux_sym_def_type_statement_token13] = ACTIONS(4074), + [aux_sym_def_type_statement_token14] = ACTIONS(4074), + [aux_sym_call_statement_token1] = ACTIONS(4074), + [sym__ambiguous_call_statement] = ACTIONS(4074), + [aux_sym_addressof_expression_token1] = ACTIONS(4794), + [aux_sym_type_of_expression_token1] = ACTIONS(4796), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(4879), + [sym_number_literal] = ACTIONS(4879), + [aux_sym_boolean_literal_token1] = ACTIONS(4800), + [aux_sym_boolean_literal_token2] = ACTIONS(4800), + [sym_nothing_literal] = ACTIONS(4881), + [sym_null_literal] = ACTIONS(4881), + [sym_empty_literal] = ACTIONS(4881), + [sym_date_literal] = ACTIONS(4879), + [anon_sym_POUND] = ACTIONS(4804), + }, + [STATE(565)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(565), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4967), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(566)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(567)] = { + [sym__print_method_output_list] = STATE(7093), + [sym__unparenthesized_print_output_expression] = STATE(4897), + [sym__print_output_call_binary_expression] = STATE(4897), + [sym__print_output_call_operand] = STATE(10983), + [sym__print_output_member_comparison_expression] = STATE(5764), + [sym__print_output_call_member_expression] = STATE(866), + [sym__print_output_call_expression] = STATE(2771), + [sym__print_output_qualified_callable] = STATE(13617), + [sym_argument_list] = STATE(7107), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10982), + [sym_comparison_expression] = STATE(4880), + [sym__comparison_operand] = STATE(11262), + [sym_logical_value_expression] = STATE(4881), + [sym__callable_expression] = STATE(13618), + [sym_call_expression] = STATE(10290), + [sym_new_expression] = STATE(1452), + [sym_addressof_expression] = STATE(1452), + [sym_type_of_expression] = STATE(1452), + [sym_member_expression] = STATE(1453), + [sym_qualified_member_expression] = STATE(1441), + [sym_implicit_member_expression] = STATE(1441), + [sym_parenthesized_expression] = STATE(10077), + [sym_binary_expression] = STATE(1211), + [sym_unary_expression] = STATE(2897), + [sym__signed_unary_expression] = STATE(1416), + [sym__literal] = STATE(1452), + [sym_boolean_literal] = STATE(1452), + [sym_file_number_literal] = STATE(1452), + [sym_identifier] = ACTIONS(4871), + [sym_newline] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(4094), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4096), + [aux_sym_frm_property_statement_token1] = ACTIONS(4873), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4778), + [aux_sym__attribute_identifier_token1] = ACTIONS(4096), + [aux_sym_option_statement_token3] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4096), + [aux_sym_preprocessor_const_token1] = ACTIONS(4096), + [sym_static_modifier] = ACTIONS(4096), + [sym__dim_keyword] = ACTIONS(4096), + [sym__redim_keyword] = ACTIONS(4096), + [aux_sym_get_accessor_token1] = ACTIONS(4096), + [aux_sym_set_accessor_token1] = ACTIONS(4096), + [aux_sym_const_declaration_token1] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4970), + [aux_sym_as_type_clause_token2] = ACTIONS(4786), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4877), + [aux_sym_visibility_token1] = ACTIONS(4096), + [aux_sym_visibility_token2] = ACTIONS(4096), + [aux_sym_elseif_fragment_token1] = ACTIONS(4096), + [aux_sym_else_fragment_token1] = ACTIONS(4096), + [aux_sym_select_statement_token1] = ACTIONS(4096), + [aux_sym__for_header_token1] = ACTIONS(4096), + [aux_sym_do_statement_token1] = ACTIONS(4096), + [aux_sym_do_statement_token2] = ACTIONS(4096), + [aux_sym_do_condition_token1] = ACTIONS(4096), + [aux_sym_with_statement_token1] = ACTIONS(4096), + [aux_sym_exit_statement_token1] = ACTIONS(4096), + [sym_end_statement] = ACTIONS(4094), + [aux_sym_on_goto_statement_token1] = ACTIONS(4096), + [aux_sym_on_goto_statement_token2] = ACTIONS(4096), + [aux_sym_on_error_statement_token2] = ACTIONS(4096), + [sym__ambiguous_redim_statement] = ACTIONS(4094), + [aux_sym_erase_statement_token1] = ACTIONS(4096), + [aux_sym_open_statement_token1] = ACTIONS(4096), + [aux_sym_file_mode_token2] = ACTIONS(4096), + [aux_sym_file_access_token2] = ACTIONS(4096), + [aux_sym_file_lock_token2] = ACTIONS(4096), + [aux_sym_print_statement_token1] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_QMARK] = ACTIONS(4094), + [aux_sym_close_statement_token1] = ACTIONS(4096), + [aux_sym_put_statement_token1] = ACTIONS(4096), + [aux_sym_unlock_statement_token1] = ACTIONS(4096), + [aux_sym_seek_statement_token1] = ACTIONS(4096), + [sym_reset_statement] = ACTIONS(4096), + [aux_sym_raise_event_statement_token1] = ACTIONS(4096), + [sym_stop_statement] = ACTIONS(4096), + [sym_beep_statement] = ACTIONS(4096), + [aux_sym_unload_statement_token1] = ACTIONS(4096), + [aux_sym_def_type_statement_token1] = ACTIONS(4096), + [aux_sym_def_type_statement_token2] = ACTIONS(4096), + [aux_sym_def_type_statement_token3] = ACTIONS(4096), + [aux_sym_def_type_statement_token4] = ACTIONS(4096), + [aux_sym_def_type_statement_token5] = ACTIONS(4096), + [aux_sym_def_type_statement_token6] = ACTIONS(4096), + [aux_sym_def_type_statement_token7] = ACTIONS(4096), + [aux_sym_def_type_statement_token8] = ACTIONS(4096), + [aux_sym_def_type_statement_token9] = ACTIONS(4096), + [aux_sym_def_type_statement_token10] = ACTIONS(4096), + [aux_sym_def_type_statement_token11] = ACTIONS(4096), + [aux_sym_def_type_statement_token12] = ACTIONS(4096), + [aux_sym_def_type_statement_token13] = ACTIONS(4096), + [aux_sym_def_type_statement_token14] = ACTIONS(4096), + [aux_sym_call_statement_token1] = ACTIONS(4096), + [sym__ambiguous_call_statement] = ACTIONS(4096), + [aux_sym_addressof_expression_token1] = ACTIONS(4794), + [aux_sym_type_of_expression_token1] = ACTIONS(4796), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(4879), + [sym_number_literal] = ACTIONS(4879), + [aux_sym_boolean_literal_token1] = ACTIONS(4800), + [aux_sym_boolean_literal_token2] = ACTIONS(4800), + [sym_nothing_literal] = ACTIONS(4881), + [sym_null_literal] = ACTIONS(4881), + [sym_empty_literal] = ACTIONS(4881), + [sym_date_literal] = ACTIONS(4879), + [anon_sym_POUND] = ACTIONS(4804), + }, + [STATE(568)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(569)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4006), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [anon_sym_COLON_EQ] = ACTIONS(4972), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(570)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4929), + [anon_sym_BANG] = ACTIONS(4931), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [anon_sym_COLON_EQ] = ACTIONS(4974), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(571)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4823), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4823), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(572)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_declaration_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4437), + [aux_sym_enum_declaration_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4437), + [aux_sym_declare_function_statement_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [aux_sym__property_get_header_token1] = ACTIONS(4437), + [aux_sym_event_declaration_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token3] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(573)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(608), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(574)] = { + [sym__print_output_expression] = STATE(5587), + [sym__unparenthesized_print_output_expression] = STATE(5587), + [sym__print_output_call_binary_expression] = STATE(5587), + [sym__print_output_call_operand] = STATE(11001), + [sym__print_output_member_comparison_expression] = STATE(5244), + [sym__print_output_call_member_expression] = STATE(871), + [sym__print_output_call_expression] = STATE(2617), + [sym__print_output_qualified_callable] = STATE(13129), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(11002), + [sym_comparison_expression] = STATE(4702), + [sym__comparison_operand] = STATE(11305), + [sym_logical_value_expression] = STATE(4703), + [sym__callable_expression] = STATE(13130), + [sym_call_expression] = STATE(10298), + [sym_new_expression] = STATE(1126), + [sym_addressof_expression] = STATE(1126), + [sym_type_of_expression] = STATE(1126), + [sym_member_expression] = STATE(1168), + [sym_qualified_member_expression] = STATE(1206), + [sym_implicit_member_expression] = STATE(1206), + [sym_parenthesized_expression] = STATE(1194), + [sym_binary_expression] = STATE(1209), + [sym_unary_expression] = STATE(2675), + [sym__signed_unary_expression] = STATE(1348), + [sym__literal] = STATE(1126), + [sym_boolean_literal] = STATE(1126), + [sym_file_number_literal] = STATE(1126), + [sym_identifier] = ACTIONS(4845), + [sym_newline] = ACTIONS(4100), + [anon_sym_COLON] = ACTIONS(4100), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4102), + [aux_sym_frm_property_statement_token1] = ACTIONS(4847), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4561), + [aux_sym__attribute_identifier_token1] = ACTIONS(4102), + [aux_sym_option_statement_token3] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4102), + [aux_sym_preprocessor_const_token1] = ACTIONS(4102), + [sym_static_modifier] = ACTIONS(4102), + [sym__dim_keyword] = ACTIONS(4102), + [sym__redim_keyword] = ACTIONS(4102), + [aux_sym_get_accessor_token1] = ACTIONS(4102), + [aux_sym_set_accessor_token1] = ACTIONS(4102), + [aux_sym_const_declaration_token1] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(4869), + [aux_sym_as_type_clause_token2] = ACTIONS(4569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4851), + [aux_sym_visibility_token1] = ACTIONS(4102), + [aux_sym_visibility_token2] = ACTIONS(4102), + [aux_sym_elseif_fragment_token1] = ACTIONS(4102), + [aux_sym_else_fragment_token1] = ACTIONS(4102), + [aux_sym_select_statement_token1] = ACTIONS(4102), + [aux_sym__for_header_token1] = ACTIONS(4102), + [aux_sym_do_statement_token1] = ACTIONS(4102), + [aux_sym_do_condition_token1] = ACTIONS(4102), + [aux_sym_with_statement_token1] = ACTIONS(4102), + [aux_sym_exit_statement_token1] = ACTIONS(4102), + [sym_end_statement] = ACTIONS(4100), + [aux_sym_on_goto_statement_token1] = ACTIONS(4102), + [aux_sym_on_goto_statement_token2] = ACTIONS(4102), + [aux_sym_on_error_statement_token2] = ACTIONS(4102), + [sym__ambiguous_redim_statement] = ACTIONS(4100), + [aux_sym_erase_statement_token1] = ACTIONS(4102), + [aux_sym_open_statement_token1] = ACTIONS(4102), + [aux_sym_file_mode_token2] = ACTIONS(4102), + [aux_sym_file_access_token2] = ACTIONS(4102), + [aux_sym_file_lock_token2] = ACTIONS(4102), + [aux_sym_print_statement_token1] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4100), + [aux_sym_close_statement_token1] = ACTIONS(4102), + [aux_sym_put_statement_token1] = ACTIONS(4102), + [aux_sym_unlock_statement_token1] = ACTIONS(4102), + [aux_sym_seek_statement_token1] = ACTIONS(4102), + [sym_reset_statement] = ACTIONS(4102), + [aux_sym_raise_event_statement_token1] = ACTIONS(4102), + [sym_stop_statement] = ACTIONS(4102), + [sym_beep_statement] = ACTIONS(4102), + [aux_sym_unload_statement_token1] = ACTIONS(4102), + [aux_sym_def_type_statement_token1] = ACTIONS(4102), + [aux_sym_def_type_statement_token2] = ACTIONS(4102), + [aux_sym_def_type_statement_token3] = ACTIONS(4102), + [aux_sym_def_type_statement_token4] = ACTIONS(4102), + [aux_sym_def_type_statement_token5] = ACTIONS(4102), + [aux_sym_def_type_statement_token6] = ACTIONS(4102), + [aux_sym_def_type_statement_token7] = ACTIONS(4102), + [aux_sym_def_type_statement_token8] = ACTIONS(4102), + [aux_sym_def_type_statement_token9] = ACTIONS(4102), + [aux_sym_def_type_statement_token10] = ACTIONS(4102), + [aux_sym_def_type_statement_token11] = ACTIONS(4102), + [aux_sym_def_type_statement_token12] = ACTIONS(4102), + [aux_sym_def_type_statement_token13] = ACTIONS(4102), + [aux_sym_def_type_statement_token14] = ACTIONS(4102), + [aux_sym_call_statement_token1] = ACTIONS(4102), + [sym__ambiguous_call_statement] = ACTIONS(4102), + [aux_sym_addressof_expression_token1] = ACTIONS(4577), + [aux_sym_type_of_expression_token1] = ACTIONS(4579), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(4853), + [sym_number_literal] = ACTIONS(4853), + [aux_sym_boolean_literal_token1] = ACTIONS(4583), + [aux_sym_boolean_literal_token2] = ACTIONS(4583), + [sym_nothing_literal] = ACTIONS(4855), + [sym_null_literal] = ACTIONS(4855), + [sym_empty_literal] = ACTIONS(4855), + [sym_date_literal] = ACTIONS(4853), + [anon_sym_POUND] = ACTIONS(4587), + }, + [STATE(575)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_declaration_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_enum_declaration_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4509), + [aux_sym_declare_function_statement_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [aux_sym__property_get_header_token1] = ACTIONS(4509), + [aux_sym_event_declaration_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(576)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(577)] = { + [sym__print_output_expression] = STATE(5586), + [sym__unparenthesized_print_output_expression] = STATE(5586), + [sym__print_output_call_binary_expression] = STATE(5586), + [sym__print_output_call_operand] = STATE(10983), + [sym__print_output_member_comparison_expression] = STATE(5764), + [sym__print_output_call_member_expression] = STATE(866), + [sym__print_output_call_expression] = STATE(2771), + [sym__print_output_qualified_callable] = STATE(13617), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10982), + [sym_comparison_expression] = STATE(4880), + [sym__comparison_operand] = STATE(11262), + [sym_logical_value_expression] = STATE(4881), + [sym__callable_expression] = STATE(13618), + [sym_call_expression] = STATE(10290), + [sym_new_expression] = STATE(1452), + [sym_addressof_expression] = STATE(1452), + [sym_type_of_expression] = STATE(1452), + [sym_member_expression] = STATE(1453), + [sym_qualified_member_expression] = STATE(1441), + [sym_implicit_member_expression] = STATE(1441), + [sym_parenthesized_expression] = STATE(1457), + [sym_binary_expression] = STATE(1211), + [sym_unary_expression] = STATE(2897), + [sym__signed_unary_expression] = STATE(1416), + [sym__literal] = STATE(1452), + [sym_boolean_literal] = STATE(1452), + [sym_file_number_literal] = STATE(1452), + [sym_identifier] = ACTIONS(4871), + [sym_newline] = ACTIONS(4108), + [anon_sym_COLON] = ACTIONS(4108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4110), + [aux_sym_frm_property_statement_token1] = ACTIONS(4873), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4778), + [aux_sym__attribute_identifier_token1] = ACTIONS(4110), + [aux_sym_option_statement_token3] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4110), + [aux_sym_preprocessor_const_token1] = ACTIONS(4110), + [sym_static_modifier] = ACTIONS(4110), + [sym__dim_keyword] = ACTIONS(4110), + [sym__redim_keyword] = ACTIONS(4110), + [aux_sym_get_accessor_token1] = ACTIONS(4110), + [aux_sym_set_accessor_token1] = ACTIONS(4110), + [aux_sym_const_declaration_token1] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4875), + [aux_sym_as_type_clause_token2] = ACTIONS(4786), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4877), + [aux_sym_visibility_token1] = ACTIONS(4110), + [aux_sym_visibility_token2] = ACTIONS(4110), + [aux_sym_elseif_fragment_token1] = ACTIONS(4110), + [aux_sym_else_fragment_token1] = ACTIONS(4110), + [aux_sym_select_statement_token1] = ACTIONS(4110), + [aux_sym__for_header_token1] = ACTIONS(4110), + [aux_sym_do_statement_token1] = ACTIONS(4110), + [aux_sym_do_statement_token2] = ACTIONS(4110), + [aux_sym_do_condition_token1] = ACTIONS(4110), + [aux_sym_with_statement_token1] = ACTIONS(4110), + [aux_sym_exit_statement_token1] = ACTIONS(4110), + [sym_end_statement] = ACTIONS(4108), + [aux_sym_on_goto_statement_token1] = ACTIONS(4110), + [aux_sym_on_goto_statement_token2] = ACTIONS(4110), + [aux_sym_on_error_statement_token2] = ACTIONS(4110), + [sym__ambiguous_redim_statement] = ACTIONS(4108), + [aux_sym_erase_statement_token1] = ACTIONS(4110), + [aux_sym_open_statement_token1] = ACTIONS(4110), + [aux_sym_file_mode_token2] = ACTIONS(4110), + [aux_sym_file_access_token2] = ACTIONS(4110), + [aux_sym_file_lock_token2] = ACTIONS(4110), + [aux_sym_print_statement_token1] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_QMARK] = ACTIONS(4108), + [aux_sym_close_statement_token1] = ACTIONS(4110), + [aux_sym_put_statement_token1] = ACTIONS(4110), + [aux_sym_unlock_statement_token1] = ACTIONS(4110), + [aux_sym_seek_statement_token1] = ACTIONS(4110), + [sym_reset_statement] = ACTIONS(4110), + [aux_sym_raise_event_statement_token1] = ACTIONS(4110), + [sym_stop_statement] = ACTIONS(4110), + [sym_beep_statement] = ACTIONS(4110), + [aux_sym_unload_statement_token1] = ACTIONS(4110), + [aux_sym_def_type_statement_token1] = ACTIONS(4110), + [aux_sym_def_type_statement_token2] = ACTIONS(4110), + [aux_sym_def_type_statement_token3] = ACTIONS(4110), + [aux_sym_def_type_statement_token4] = ACTIONS(4110), + [aux_sym_def_type_statement_token5] = ACTIONS(4110), + [aux_sym_def_type_statement_token6] = ACTIONS(4110), + [aux_sym_def_type_statement_token7] = ACTIONS(4110), + [aux_sym_def_type_statement_token8] = ACTIONS(4110), + [aux_sym_def_type_statement_token9] = ACTIONS(4110), + [aux_sym_def_type_statement_token10] = ACTIONS(4110), + [aux_sym_def_type_statement_token11] = ACTIONS(4110), + [aux_sym_def_type_statement_token12] = ACTIONS(4110), + [aux_sym_def_type_statement_token13] = ACTIONS(4110), + [aux_sym_def_type_statement_token14] = ACTIONS(4110), + [aux_sym_call_statement_token1] = ACTIONS(4110), + [sym__ambiguous_call_statement] = ACTIONS(4110), + [aux_sym_addressof_expression_token1] = ACTIONS(4794), + [aux_sym_type_of_expression_token1] = ACTIONS(4796), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(4879), + [sym_number_literal] = ACTIONS(4879), + [aux_sym_boolean_literal_token1] = ACTIONS(4800), + [aux_sym_boolean_literal_token2] = ACTIONS(4800), + [sym_nothing_literal] = ACTIONS(4881), + [sym_null_literal] = ACTIONS(4881), + [sym_empty_literal] = ACTIONS(4881), + [sym_date_literal] = ACTIONS(4879), + [anon_sym_POUND] = ACTIONS(4804), + }, + [STATE(578)] = { + [sym__print_output_expression] = STATE(5586), + [sym__unparenthesized_print_output_expression] = STATE(5586), + [sym__print_output_call_binary_expression] = STATE(5586), + [sym__print_output_call_operand] = STATE(10983), + [sym__print_output_member_comparison_expression] = STATE(5764), + [sym__print_output_call_member_expression] = STATE(866), + [sym__print_output_call_expression] = STATE(2771), + [sym__print_output_qualified_callable] = STATE(13617), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10982), + [sym_comparison_expression] = STATE(4880), + [sym__comparison_operand] = STATE(11262), + [sym_logical_value_expression] = STATE(4881), + [sym__callable_expression] = STATE(13618), + [sym_call_expression] = STATE(10290), + [sym_new_expression] = STATE(1452), + [sym_addressof_expression] = STATE(1452), + [sym_type_of_expression] = STATE(1452), + [sym_member_expression] = STATE(1453), + [sym_qualified_member_expression] = STATE(1441), + [sym_implicit_member_expression] = STATE(1441), + [sym_parenthesized_expression] = STATE(1457), + [sym_binary_expression] = STATE(1211), + [sym_unary_expression] = STATE(2897), + [sym__signed_unary_expression] = STATE(1416), + [sym__literal] = STATE(1452), + [sym_boolean_literal] = STATE(1452), + [sym_file_number_literal] = STATE(1452), + [sym_identifier] = ACTIONS(4871), + [sym_newline] = ACTIONS(4112), + [anon_sym_COLON] = ACTIONS(4112), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4114), + [aux_sym_frm_property_statement_token1] = ACTIONS(4873), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4778), + [aux_sym__attribute_identifier_token1] = ACTIONS(4114), + [aux_sym_option_statement_token3] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4114), + [aux_sym_preprocessor_const_token1] = ACTIONS(4114), + [sym_static_modifier] = ACTIONS(4114), + [sym__dim_keyword] = ACTIONS(4114), + [sym__redim_keyword] = ACTIONS(4114), + [aux_sym_get_accessor_token1] = ACTIONS(4114), + [aux_sym_set_accessor_token1] = ACTIONS(4114), + [aux_sym_const_declaration_token1] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4875), + [aux_sym_as_type_clause_token2] = ACTIONS(4786), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4877), + [aux_sym_visibility_token1] = ACTIONS(4114), + [aux_sym_visibility_token2] = ACTIONS(4114), + [aux_sym_elseif_fragment_token1] = ACTIONS(4114), + [aux_sym_else_fragment_token1] = ACTIONS(4114), + [aux_sym_select_statement_token1] = ACTIONS(4114), + [aux_sym__for_header_token1] = ACTIONS(4114), + [aux_sym_do_statement_token1] = ACTIONS(4114), + [aux_sym_do_statement_token2] = ACTIONS(4114), + [aux_sym_do_condition_token1] = ACTIONS(4114), + [aux_sym_with_statement_token1] = ACTIONS(4114), + [aux_sym_exit_statement_token1] = ACTIONS(4114), + [sym_end_statement] = ACTIONS(4112), + [aux_sym_on_goto_statement_token1] = ACTIONS(4114), + [aux_sym_on_goto_statement_token2] = ACTIONS(4114), + [aux_sym_on_error_statement_token2] = ACTIONS(4114), + [sym__ambiguous_redim_statement] = ACTIONS(4112), + [aux_sym_erase_statement_token1] = ACTIONS(4114), + [aux_sym_open_statement_token1] = ACTIONS(4114), + [aux_sym_file_mode_token2] = ACTIONS(4114), + [aux_sym_file_access_token2] = ACTIONS(4114), + [aux_sym_file_lock_token2] = ACTIONS(4114), + [aux_sym_print_statement_token1] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_QMARK] = ACTIONS(4112), + [aux_sym_close_statement_token1] = ACTIONS(4114), + [aux_sym_put_statement_token1] = ACTIONS(4114), + [aux_sym_unlock_statement_token1] = ACTIONS(4114), + [aux_sym_seek_statement_token1] = ACTIONS(4114), + [sym_reset_statement] = ACTIONS(4114), + [aux_sym_raise_event_statement_token1] = ACTIONS(4114), + [sym_stop_statement] = ACTIONS(4114), + [sym_beep_statement] = ACTIONS(4114), + [aux_sym_unload_statement_token1] = ACTIONS(4114), + [aux_sym_def_type_statement_token1] = ACTIONS(4114), + [aux_sym_def_type_statement_token2] = ACTIONS(4114), + [aux_sym_def_type_statement_token3] = ACTIONS(4114), + [aux_sym_def_type_statement_token4] = ACTIONS(4114), + [aux_sym_def_type_statement_token5] = ACTIONS(4114), + [aux_sym_def_type_statement_token6] = ACTIONS(4114), + [aux_sym_def_type_statement_token7] = ACTIONS(4114), + [aux_sym_def_type_statement_token8] = ACTIONS(4114), + [aux_sym_def_type_statement_token9] = ACTIONS(4114), + [aux_sym_def_type_statement_token10] = ACTIONS(4114), + [aux_sym_def_type_statement_token11] = ACTIONS(4114), + [aux_sym_def_type_statement_token12] = ACTIONS(4114), + [aux_sym_def_type_statement_token13] = ACTIONS(4114), + [aux_sym_def_type_statement_token14] = ACTIONS(4114), + [aux_sym_call_statement_token1] = ACTIONS(4114), + [sym__ambiguous_call_statement] = ACTIONS(4114), + [aux_sym_addressof_expression_token1] = ACTIONS(4794), + [aux_sym_type_of_expression_token1] = ACTIONS(4796), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(4879), + [sym_number_literal] = ACTIONS(4879), + [aux_sym_boolean_literal_token1] = ACTIONS(4800), + [aux_sym_boolean_literal_token2] = ACTIONS(4800), + [sym_nothing_literal] = ACTIONS(4881), + [sym_null_literal] = ACTIONS(4881), + [sym_empty_literal] = ACTIONS(4881), + [sym_date_literal] = ACTIONS(4879), + [anon_sym_POUND] = ACTIONS(4804), + }, + [STATE(579)] = { + [sym__print_output_expression] = STATE(5586), + [sym__unparenthesized_print_output_expression] = STATE(5586), + [sym__print_output_call_binary_expression] = STATE(5586), + [sym__print_output_call_operand] = STATE(10983), + [sym__print_output_member_comparison_expression] = STATE(5764), + [sym__print_output_call_member_expression] = STATE(866), + [sym__print_output_call_expression] = STATE(2771), + [sym__print_output_qualified_callable] = STATE(13617), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10982), + [sym_comparison_expression] = STATE(4880), + [sym__comparison_operand] = STATE(11262), + [sym_logical_value_expression] = STATE(4881), + [sym__callable_expression] = STATE(13618), + [sym_call_expression] = STATE(10290), + [sym_new_expression] = STATE(1452), + [sym_addressof_expression] = STATE(1452), + [sym_type_of_expression] = STATE(1452), + [sym_member_expression] = STATE(1453), + [sym_qualified_member_expression] = STATE(1441), + [sym_implicit_member_expression] = STATE(1441), + [sym_parenthesized_expression] = STATE(1457), + [sym_binary_expression] = STATE(1211), + [sym_unary_expression] = STATE(2897), + [sym__signed_unary_expression] = STATE(1416), + [sym__literal] = STATE(1452), + [sym_boolean_literal] = STATE(1452), + [sym_file_number_literal] = STATE(1452), + [sym_identifier] = ACTIONS(4871), + [sym_newline] = ACTIONS(4100), + [anon_sym_COLON] = ACTIONS(4100), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4102), + [aux_sym_frm_property_statement_token1] = ACTIONS(4873), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4778), + [aux_sym__attribute_identifier_token1] = ACTIONS(4102), + [aux_sym_option_statement_token3] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4102), + [aux_sym_preprocessor_const_token1] = ACTIONS(4102), + [sym_static_modifier] = ACTIONS(4102), + [sym__dim_keyword] = ACTIONS(4102), + [sym__redim_keyword] = ACTIONS(4102), + [aux_sym_get_accessor_token1] = ACTIONS(4102), + [aux_sym_set_accessor_token1] = ACTIONS(4102), + [aux_sym_const_declaration_token1] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(4875), + [aux_sym_as_type_clause_token2] = ACTIONS(4786), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4877), + [aux_sym_visibility_token1] = ACTIONS(4102), + [aux_sym_visibility_token2] = ACTIONS(4102), + [aux_sym_elseif_fragment_token1] = ACTIONS(4102), + [aux_sym_else_fragment_token1] = ACTIONS(4102), + [aux_sym_select_statement_token1] = ACTIONS(4102), + [aux_sym__for_header_token1] = ACTIONS(4102), + [aux_sym_do_statement_token1] = ACTIONS(4102), + [aux_sym_do_statement_token2] = ACTIONS(4102), + [aux_sym_do_condition_token1] = ACTIONS(4102), + [aux_sym_with_statement_token1] = ACTIONS(4102), + [aux_sym_exit_statement_token1] = ACTIONS(4102), + [sym_end_statement] = ACTIONS(4100), + [aux_sym_on_goto_statement_token1] = ACTIONS(4102), + [aux_sym_on_goto_statement_token2] = ACTIONS(4102), + [aux_sym_on_error_statement_token2] = ACTIONS(4102), + [sym__ambiguous_redim_statement] = ACTIONS(4100), + [aux_sym_erase_statement_token1] = ACTIONS(4102), + [aux_sym_open_statement_token1] = ACTIONS(4102), + [aux_sym_file_mode_token2] = ACTIONS(4102), + [aux_sym_file_access_token2] = ACTIONS(4102), + [aux_sym_file_lock_token2] = ACTIONS(4102), + [aux_sym_print_statement_token1] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_QMARK] = ACTIONS(4100), + [aux_sym_close_statement_token1] = ACTIONS(4102), + [aux_sym_put_statement_token1] = ACTIONS(4102), + [aux_sym_unlock_statement_token1] = ACTIONS(4102), + [aux_sym_seek_statement_token1] = ACTIONS(4102), + [sym_reset_statement] = ACTIONS(4102), + [aux_sym_raise_event_statement_token1] = ACTIONS(4102), + [sym_stop_statement] = ACTIONS(4102), + [sym_beep_statement] = ACTIONS(4102), + [aux_sym_unload_statement_token1] = ACTIONS(4102), + [aux_sym_def_type_statement_token1] = ACTIONS(4102), + [aux_sym_def_type_statement_token2] = ACTIONS(4102), + [aux_sym_def_type_statement_token3] = ACTIONS(4102), + [aux_sym_def_type_statement_token4] = ACTIONS(4102), + [aux_sym_def_type_statement_token5] = ACTIONS(4102), + [aux_sym_def_type_statement_token6] = ACTIONS(4102), + [aux_sym_def_type_statement_token7] = ACTIONS(4102), + [aux_sym_def_type_statement_token8] = ACTIONS(4102), + [aux_sym_def_type_statement_token9] = ACTIONS(4102), + [aux_sym_def_type_statement_token10] = ACTIONS(4102), + [aux_sym_def_type_statement_token11] = ACTIONS(4102), + [aux_sym_def_type_statement_token12] = ACTIONS(4102), + [aux_sym_def_type_statement_token13] = ACTIONS(4102), + [aux_sym_def_type_statement_token14] = ACTIONS(4102), + [aux_sym_call_statement_token1] = ACTIONS(4102), + [sym__ambiguous_call_statement] = ACTIONS(4102), + [aux_sym_addressof_expression_token1] = ACTIONS(4794), + [aux_sym_type_of_expression_token1] = ACTIONS(4796), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(4879), + [sym_number_literal] = ACTIONS(4879), + [aux_sym_boolean_literal_token1] = ACTIONS(4800), + [aux_sym_boolean_literal_token2] = ACTIONS(4800), + [sym_nothing_literal] = ACTIONS(4881), + [sym_null_literal] = ACTIONS(4881), + [sym_empty_literal] = ACTIONS(4881), + [sym_date_literal] = ACTIONS(4879), + [anon_sym_POUND] = ACTIONS(4804), + }, + [STATE(580)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_declaration_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_enum_declaration_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4509), + [aux_sym_declare_function_statement_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [aux_sym__property_get_header_token1] = ACTIONS(4509), + [aux_sym_event_declaration_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(581)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(582)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(583)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_declaration_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_enum_declaration_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4447), + [aux_sym_declare_function_statement_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [aux_sym__property_get_header_token1] = ACTIONS(4447), + [aux_sym_event_declaration_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(584)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_declaration_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_enum_declaration_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4477), + [aux_sym_declare_function_statement_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [aux_sym__property_get_header_token1] = ACTIONS(4477), + [aux_sym_event_declaration_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(585)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_declaration_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_enum_declaration_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4485), + [aux_sym_declare_function_statement_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [aux_sym__property_get_header_token1] = ACTIONS(4485), + [aux_sym_event_declaration_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(586)] = { + [sym_argument_list] = STATE(667), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_BANG] = ACTIONS(4980), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4982), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(587)] = { + [sym__print_output_expression] = STATE(5439), + [sym__unparenthesized_print_output_expression] = STATE(5439), + [sym__print_output_call_binary_expression] = STATE(5439), + [sym__print_output_call_operand] = STATE(10998), + [sym__print_output_member_comparison_expression] = STATE(5781), + [sym__print_output_call_member_expression] = STATE(828), + [sym__print_output_call_expression] = STATE(2577), + [sym__print_output_qualified_callable] = STATE(13423), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(11000), + [sym_comparison_expression] = STATE(4886), + [sym__comparison_operand] = STATE(11453), + [sym_logical_value_expression] = STATE(4887), + [sym__callable_expression] = STATE(13426), + [sym_call_expression] = STATE(10296), + [sym_new_expression] = STATE(1056), + [sym_addressof_expression] = STATE(1056), + [sym_type_of_expression] = STATE(1056), + [sym_member_expression] = STATE(1073), + [sym_qualified_member_expression] = STATE(1142), + [sym_implicit_member_expression] = STATE(1142), + [sym_parenthesized_expression] = STATE(1084), + [sym_binary_expression] = STATE(1085), + [sym_unary_expression] = STATE(2774), + [sym__signed_unary_expression] = STATE(1246), + [sym__literal] = STATE(1056), + [sym_boolean_literal] = STATE(1056), + [sym_file_number_literal] = STATE(1056), + [sym_identifier] = ACTIONS(4857), + [sym_newline] = ACTIONS(4108), + [anon_sym_COLON] = ACTIONS(4108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4110), + [aux_sym_frm_property_statement_token1] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4527), + [aux_sym__attribute_identifier_token1] = ACTIONS(4110), + [aux_sym_option_statement_token3] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4110), + [aux_sym_preprocessor_const_token1] = ACTIONS(4110), + [sym_static_modifier] = ACTIONS(4110), + [sym__dim_keyword] = ACTIONS(4110), + [sym__redim_keyword] = ACTIONS(4110), + [aux_sym_get_accessor_token1] = ACTIONS(4110), + [aux_sym_set_accessor_token1] = ACTIONS(4110), + [aux_sym_const_declaration_token1] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4861), + [aux_sym_as_type_clause_token2] = ACTIONS(4535), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4863), + [aux_sym_visibility_token1] = ACTIONS(4110), + [aux_sym_visibility_token2] = ACTIONS(4110), + [aux_sym_elseif_fragment_token1] = ACTIONS(4110), + [aux_sym_else_fragment_token1] = ACTIONS(4110), + [aux_sym_select_statement_token1] = ACTIONS(4110), + [aux_sym_select_statement_token2] = ACTIONS(4110), + [aux_sym__for_header_token1] = ACTIONS(4110), + [aux_sym_do_statement_token1] = ACTIONS(4110), + [aux_sym_do_condition_token1] = ACTIONS(4110), + [aux_sym_with_statement_token1] = ACTIONS(4110), + [aux_sym_exit_statement_token1] = ACTIONS(4110), + [sym_end_statement] = ACTIONS(4108), + [aux_sym_on_goto_statement_token1] = ACTIONS(4110), + [aux_sym_on_goto_statement_token2] = ACTIONS(4110), + [aux_sym_on_error_statement_token2] = ACTIONS(4110), + [sym__ambiguous_redim_statement] = ACTIONS(4108), + [aux_sym_erase_statement_token1] = ACTIONS(4110), + [aux_sym_open_statement_token1] = ACTIONS(4110), + [aux_sym_file_mode_token2] = ACTIONS(4110), + [aux_sym_file_access_token2] = ACTIONS(4110), + [aux_sym_file_lock_token2] = ACTIONS(4110), + [aux_sym_print_statement_token1] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_QMARK] = ACTIONS(4108), + [aux_sym_close_statement_token1] = ACTIONS(4110), + [aux_sym_put_statement_token1] = ACTIONS(4110), + [aux_sym_unlock_statement_token1] = ACTIONS(4110), + [aux_sym_seek_statement_token1] = ACTIONS(4110), + [sym_reset_statement] = ACTIONS(4110), + [aux_sym_raise_event_statement_token1] = ACTIONS(4110), + [sym_stop_statement] = ACTIONS(4110), + [sym_beep_statement] = ACTIONS(4110), + [aux_sym_unload_statement_token1] = ACTIONS(4110), + [aux_sym_def_type_statement_token1] = ACTIONS(4110), + [aux_sym_def_type_statement_token2] = ACTIONS(4110), + [aux_sym_def_type_statement_token3] = ACTIONS(4110), + [aux_sym_def_type_statement_token4] = ACTIONS(4110), + [aux_sym_def_type_statement_token5] = ACTIONS(4110), + [aux_sym_def_type_statement_token6] = ACTIONS(4110), + [aux_sym_def_type_statement_token7] = ACTIONS(4110), + [aux_sym_def_type_statement_token8] = ACTIONS(4110), + [aux_sym_def_type_statement_token9] = ACTIONS(4110), + [aux_sym_def_type_statement_token10] = ACTIONS(4110), + [aux_sym_def_type_statement_token11] = ACTIONS(4110), + [aux_sym_def_type_statement_token12] = ACTIONS(4110), + [aux_sym_def_type_statement_token13] = ACTIONS(4110), + [aux_sym_def_type_statement_token14] = ACTIONS(4110), + [aux_sym_call_statement_token1] = ACTIONS(4110), + [sym__ambiguous_call_statement] = ACTIONS(4110), + [aux_sym_addressof_expression_token1] = ACTIONS(4543), + [aux_sym_type_of_expression_token1] = ACTIONS(4545), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(4865), + [sym_number_literal] = ACTIONS(4865), + [aux_sym_boolean_literal_token1] = ACTIONS(4549), + [aux_sym_boolean_literal_token2] = ACTIONS(4549), + [sym_nothing_literal] = ACTIONS(4867), + [sym_null_literal] = ACTIONS(4867), + [sym_empty_literal] = ACTIONS(4867), + [sym_date_literal] = ACTIONS(4865), + [anon_sym_POUND] = ACTIONS(4553), + }, + [STATE(588)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_declaration_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_enum_declaration_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4441), + [aux_sym_declare_function_statement_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [aux_sym__property_get_header_token1] = ACTIONS(4441), + [aux_sym_event_declaration_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(589)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_declaration_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_enum_declaration_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4451), + [aux_sym_declare_function_statement_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [aux_sym__property_get_header_token1] = ACTIONS(4451), + [aux_sym_event_declaration_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4998), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5000), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5002), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5004), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(590)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(591)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_declaration_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_enum_declaration_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4589), + [aux_sym_declare_function_statement_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [aux_sym__property_get_header_token1] = ACTIONS(4589), + [aux_sym_event_declaration_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(592)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4929), + [anon_sym_BANG] = ACTIONS(4931), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(593)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(594)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(595)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(596)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(597)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(598)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(599)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(600)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4998), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(601)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4998), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5000), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(602)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4998), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5000), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5002), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(603)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4998), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5000), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5002), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5004), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(604)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_declaration_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_enum_declaration_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4437), + [aux_sym_declare_function_statement_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [aux_sym__property_get_header_token1] = ACTIONS(4437), + [aux_sym_event_declaration_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(605)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(606)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(607)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(608)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(609), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_declaration_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_enum_declaration_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4375), + [aux_sym_declare_function_statement_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [aux_sym__property_get_header_token1] = ACTIONS(4375), + [aux_sym_event_declaration_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_array_bound_token1] = ACTIONS(4375), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(609)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(609), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(5008), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(610)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(611)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(612)] = { + [sym_argument_list] = STATE(710), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5011), + [anon_sym_BANG] = ACTIONS(5013), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5015), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(613)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(614), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(5017), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(614)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(615), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_declaration_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_enum_declaration_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4375), + [aux_sym_declare_function_statement_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [aux_sym__property_get_header_token1] = ACTIONS(4375), + [aux_sym_event_declaration_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token3] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(615)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(615), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(616)] = { + [sym_output_list] = STATE(7206), + [sym__print_output_expression] = STATE(4957), + [sym__unparenthesized_print_output_expression] = STATE(4957), + [sym__print_output_call_binary_expression] = STATE(4957), + [sym__print_output_call_operand] = STATE(10995), + [sym__print_output_member_comparison_expression] = STATE(5840), + [sym__print_output_call_member_expression] = STATE(997), + [sym__print_output_call_expression] = STATE(2996), + [sym__print_output_qualified_callable] = STATE(13646), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10979), + [sym_comparison_expression] = STATE(5075), + [sym__comparison_operand] = STATE(11430), + [sym_logical_value_expression] = STATE(4906), + [sym__callable_expression] = STATE(13260), + [sym_call_expression] = STATE(10300), + [sym_new_expression] = STATE(1479), + [sym_addressof_expression] = STATE(1479), + [sym_type_of_expression] = STATE(1479), + [sym_member_expression] = STATE(1524), + [sym_qualified_member_expression] = STATE(1585), + [sym_implicit_member_expression] = STATE(1585), + [sym_parenthesized_expression] = STATE(1570), + [sym_binary_expression] = STATE(1573), + [sym_unary_expression] = STATE(3301), + [sym__signed_unary_expression] = STATE(1674), + [sym__literal] = STATE(1479), + [sym_boolean_literal] = STATE(1479), + [sym_file_number_literal] = STATE(1479), + [sym_identifier] = ACTIONS(5022), + [sym_newline] = ACTIONS(4072), + [anon_sym_COLON] = ACTIONS(4072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4074), + [aux_sym_frm_property_statement_token1] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(4899), + [anon_sym_BANG] = ACTIONS(4901), + [aux_sym__attribute_identifier_token1] = ACTIONS(4074), + [aux_sym_option_statement_token3] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4074), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4074), + [aux_sym_preprocessor_const_token1] = ACTIONS(4074), + [sym_static_modifier] = ACTIONS(4074), + [sym__dim_keyword] = ACTIONS(4074), + [sym__redim_keyword] = ACTIONS(4074), + [aux_sym_get_accessor_token1] = ACTIONS(4074), + [aux_sym_set_accessor_token1] = ACTIONS(4074), + [aux_sym_const_declaration_token1] = ACTIONS(4074), + [anon_sym_LPAREN] = ACTIONS(5026), + [aux_sym_as_type_clause_token2] = ACTIONS(4909), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5028), + [aux_sym_visibility_token1] = ACTIONS(4074), + [aux_sym_visibility_token2] = ACTIONS(4074), + [aux_sym_elseif_fragment_token1] = ACTIONS(4074), + [aux_sym_else_fragment_token1] = ACTIONS(4074), + [aux_sym_select_statement_token1] = ACTIONS(4074), + [aux_sym__for_header_token1] = ACTIONS(4074), + [aux_sym_do_statement_token1] = ACTIONS(4074), + [aux_sym_do_condition_token1] = ACTIONS(4074), + [aux_sym_with_statement_token1] = ACTIONS(4074), + [aux_sym_exit_statement_token1] = ACTIONS(4074), + [sym_end_statement] = ACTIONS(4072), + [aux_sym_on_goto_statement_token1] = ACTIONS(4074), + [aux_sym_on_goto_statement_token2] = ACTIONS(4074), + [aux_sym_on_error_statement_token2] = ACTIONS(4074), + [sym__ambiguous_redim_statement] = ACTIONS(4072), + [aux_sym_erase_statement_token1] = ACTIONS(4074), + [aux_sym_open_statement_token1] = ACTIONS(4074), + [aux_sym_file_mode_token2] = ACTIONS(4074), + [aux_sym_file_access_token2] = ACTIONS(4074), + [aux_sym_file_lock_token2] = ACTIONS(4074), + [aux_sym_print_statement_token1] = ACTIONS(4074), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_QMARK] = ACTIONS(4072), + [aux_sym_close_statement_token1] = ACTIONS(4074), + [aux_sym_put_statement_token1] = ACTIONS(4074), + [aux_sym_unlock_statement_token1] = ACTIONS(4074), + [aux_sym_seek_statement_token1] = ACTIONS(4074), + [sym_reset_statement] = ACTIONS(4074), + [aux_sym_raise_event_statement_token1] = ACTIONS(4074), + [sym_stop_statement] = ACTIONS(4074), + [sym_beep_statement] = ACTIONS(4074), + [aux_sym_unload_statement_token1] = ACTIONS(4074), + [aux_sym_def_type_statement_token1] = ACTIONS(4074), + [aux_sym_def_type_statement_token2] = ACTIONS(4074), + [aux_sym_def_type_statement_token3] = ACTIONS(4074), + [aux_sym_def_type_statement_token4] = ACTIONS(4074), + [aux_sym_def_type_statement_token5] = ACTIONS(4074), + [aux_sym_def_type_statement_token6] = ACTIONS(4074), + [aux_sym_def_type_statement_token7] = ACTIONS(4074), + [aux_sym_def_type_statement_token8] = ACTIONS(4074), + [aux_sym_def_type_statement_token9] = ACTIONS(4074), + [aux_sym_def_type_statement_token10] = ACTIONS(4074), + [aux_sym_def_type_statement_token11] = ACTIONS(4074), + [aux_sym_def_type_statement_token12] = ACTIONS(4074), + [aux_sym_def_type_statement_token13] = ACTIONS(4074), + [aux_sym_def_type_statement_token14] = ACTIONS(4074), + [aux_sym_call_statement_token1] = ACTIONS(4074), + [sym__ambiguous_call_statement] = ACTIONS(4074), + [aux_sym_addressof_expression_token1] = ACTIONS(4917), + [aux_sym_type_of_expression_token1] = ACTIONS(4919), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(5030), + [sym_number_literal] = ACTIONS(5030), + [aux_sym_boolean_literal_token1] = ACTIONS(4923), + [aux_sym_boolean_literal_token2] = ACTIONS(4923), + [sym_nothing_literal] = ACTIONS(5032), + [sym_null_literal] = ACTIONS(5032), + [sym_empty_literal] = ACTIONS(5032), + [sym_date_literal] = ACTIONS(5030), + [anon_sym_POUND] = ACTIONS(4927), + }, + [STATE(617)] = { + [sym__print_output_expression] = STATE(5587), + [sym__unparenthesized_print_output_expression] = STATE(5587), + [sym__print_output_call_binary_expression] = STATE(5587), + [sym__print_output_call_operand] = STATE(11001), + [sym__print_output_member_comparison_expression] = STATE(5244), + [sym__print_output_call_member_expression] = STATE(871), + [sym__print_output_call_expression] = STATE(2617), + [sym__print_output_qualified_callable] = STATE(13129), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(11002), + [sym_comparison_expression] = STATE(4702), + [sym__comparison_operand] = STATE(11305), + [sym_logical_value_expression] = STATE(4703), + [sym__callable_expression] = STATE(13130), + [sym_call_expression] = STATE(10298), + [sym_new_expression] = STATE(1126), + [sym_addressof_expression] = STATE(1126), + [sym_type_of_expression] = STATE(1126), + [sym_member_expression] = STATE(1168), + [sym_qualified_member_expression] = STATE(1206), + [sym_implicit_member_expression] = STATE(1206), + [sym_parenthesized_expression] = STATE(1194), + [sym_binary_expression] = STATE(1209), + [sym_unary_expression] = STATE(2675), + [sym__signed_unary_expression] = STATE(1348), + [sym__literal] = STATE(1126), + [sym_boolean_literal] = STATE(1126), + [sym_file_number_literal] = STATE(1126), + [sym_identifier] = ACTIONS(4845), + [sym_newline] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(4104), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4106), + [aux_sym_frm_property_statement_token1] = ACTIONS(4847), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4561), + [aux_sym__attribute_identifier_token1] = ACTIONS(4106), + [aux_sym_option_statement_token3] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4106), + [aux_sym_preprocessor_const_token1] = ACTIONS(4106), + [sym_static_modifier] = ACTIONS(4106), + [sym__dim_keyword] = ACTIONS(4106), + [sym__redim_keyword] = ACTIONS(4106), + [aux_sym_get_accessor_token1] = ACTIONS(4106), + [aux_sym_set_accessor_token1] = ACTIONS(4106), + [aux_sym_const_declaration_token1] = ACTIONS(4106), + [anon_sym_LPAREN] = ACTIONS(4869), + [aux_sym_as_type_clause_token2] = ACTIONS(4569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4851), + [aux_sym_visibility_token1] = ACTIONS(4106), + [aux_sym_visibility_token2] = ACTIONS(4106), + [aux_sym_elseif_fragment_token1] = ACTIONS(4106), + [aux_sym_else_fragment_token1] = ACTIONS(4106), + [aux_sym_select_statement_token1] = ACTIONS(4106), + [aux_sym__for_header_token1] = ACTIONS(4106), + [aux_sym_do_statement_token1] = ACTIONS(4106), + [aux_sym_do_condition_token1] = ACTIONS(4106), + [aux_sym_with_statement_token1] = ACTIONS(4106), + [aux_sym_exit_statement_token1] = ACTIONS(4106), + [sym_end_statement] = ACTIONS(4104), + [aux_sym_on_goto_statement_token1] = ACTIONS(4106), + [aux_sym_on_goto_statement_token2] = ACTIONS(4106), + [aux_sym_on_error_statement_token2] = ACTIONS(4106), + [sym__ambiguous_redim_statement] = ACTIONS(4104), + [aux_sym_erase_statement_token1] = ACTIONS(4106), + [aux_sym_open_statement_token1] = ACTIONS(4106), + [aux_sym_file_mode_token2] = ACTIONS(4106), + [aux_sym_file_access_token2] = ACTIONS(4106), + [aux_sym_file_lock_token2] = ACTIONS(4106), + [aux_sym_print_statement_token1] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4104), + [aux_sym_close_statement_token1] = ACTIONS(4106), + [aux_sym_put_statement_token1] = ACTIONS(4106), + [aux_sym_unlock_statement_token1] = ACTIONS(4106), + [aux_sym_seek_statement_token1] = ACTIONS(4106), + [sym_reset_statement] = ACTIONS(4106), + [aux_sym_raise_event_statement_token1] = ACTIONS(4106), + [sym_stop_statement] = ACTIONS(4106), + [sym_beep_statement] = ACTIONS(4106), + [aux_sym_unload_statement_token1] = ACTIONS(4106), + [aux_sym_def_type_statement_token1] = ACTIONS(4106), + [aux_sym_def_type_statement_token2] = ACTIONS(4106), + [aux_sym_def_type_statement_token3] = ACTIONS(4106), + [aux_sym_def_type_statement_token4] = ACTIONS(4106), + [aux_sym_def_type_statement_token5] = ACTIONS(4106), + [aux_sym_def_type_statement_token6] = ACTIONS(4106), + [aux_sym_def_type_statement_token7] = ACTIONS(4106), + [aux_sym_def_type_statement_token8] = ACTIONS(4106), + [aux_sym_def_type_statement_token9] = ACTIONS(4106), + [aux_sym_def_type_statement_token10] = ACTIONS(4106), + [aux_sym_def_type_statement_token11] = ACTIONS(4106), + [aux_sym_def_type_statement_token12] = ACTIONS(4106), + [aux_sym_def_type_statement_token13] = ACTIONS(4106), + [aux_sym_def_type_statement_token14] = ACTIONS(4106), + [aux_sym_call_statement_token1] = ACTIONS(4106), + [sym__ambiguous_call_statement] = ACTIONS(4106), + [aux_sym_addressof_expression_token1] = ACTIONS(4577), + [aux_sym_type_of_expression_token1] = ACTIONS(4579), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(4853), + [sym_number_literal] = ACTIONS(4853), + [aux_sym_boolean_literal_token1] = ACTIONS(4583), + [aux_sym_boolean_literal_token2] = ACTIONS(4583), + [sym_nothing_literal] = ACTIONS(4855), + [sym_null_literal] = ACTIONS(4855), + [sym_empty_literal] = ACTIONS(4855), + [sym_date_literal] = ACTIONS(4853), + [anon_sym_POUND] = ACTIONS(4587), + }, + [STATE(618)] = { + [sym__print_output_expression] = STATE(5439), + [sym__unparenthesized_print_output_expression] = STATE(5439), + [sym__print_output_call_binary_expression] = STATE(5439), + [sym__print_output_call_operand] = STATE(10998), + [sym__print_output_member_comparison_expression] = STATE(5781), + [sym__print_output_call_member_expression] = STATE(828), + [sym__print_output_call_expression] = STATE(2577), + [sym__print_output_qualified_callable] = STATE(13423), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(11000), + [sym_comparison_expression] = STATE(4886), + [sym__comparison_operand] = STATE(11453), + [sym_logical_value_expression] = STATE(4887), + [sym__callable_expression] = STATE(13426), + [sym_call_expression] = STATE(10296), + [sym_new_expression] = STATE(1056), + [sym_addressof_expression] = STATE(1056), + [sym_type_of_expression] = STATE(1056), + [sym_member_expression] = STATE(1073), + [sym_qualified_member_expression] = STATE(1142), + [sym_implicit_member_expression] = STATE(1142), + [sym_parenthesized_expression] = STATE(1084), + [sym_binary_expression] = STATE(1085), + [sym_unary_expression] = STATE(2774), + [sym__signed_unary_expression] = STATE(1246), + [sym__literal] = STATE(1056), + [sym_boolean_literal] = STATE(1056), + [sym_file_number_literal] = STATE(1056), + [sym_identifier] = ACTIONS(4857), + [sym_newline] = ACTIONS(4112), + [anon_sym_COLON] = ACTIONS(4112), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4114), + [aux_sym_frm_property_statement_token1] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4527), + [aux_sym__attribute_identifier_token1] = ACTIONS(4114), + [aux_sym_option_statement_token3] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4114), + [aux_sym_preprocessor_const_token1] = ACTIONS(4114), + [sym_static_modifier] = ACTIONS(4114), + [sym__dim_keyword] = ACTIONS(4114), + [sym__redim_keyword] = ACTIONS(4114), + [aux_sym_get_accessor_token1] = ACTIONS(4114), + [aux_sym_set_accessor_token1] = ACTIONS(4114), + [aux_sym_const_declaration_token1] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4861), + [aux_sym_as_type_clause_token2] = ACTIONS(4535), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4863), + [aux_sym_visibility_token1] = ACTIONS(4114), + [aux_sym_visibility_token2] = ACTIONS(4114), + [aux_sym_elseif_fragment_token1] = ACTIONS(4114), + [aux_sym_else_fragment_token1] = ACTIONS(4114), + [aux_sym_select_statement_token1] = ACTIONS(4114), + [aux_sym_select_statement_token2] = ACTIONS(4114), + [aux_sym__for_header_token1] = ACTIONS(4114), + [aux_sym_do_statement_token1] = ACTIONS(4114), + [aux_sym_do_condition_token1] = ACTIONS(4114), + [aux_sym_with_statement_token1] = ACTIONS(4114), + [aux_sym_exit_statement_token1] = ACTIONS(4114), + [sym_end_statement] = ACTIONS(4112), + [aux_sym_on_goto_statement_token1] = ACTIONS(4114), + [aux_sym_on_goto_statement_token2] = ACTIONS(4114), + [aux_sym_on_error_statement_token2] = ACTIONS(4114), + [sym__ambiguous_redim_statement] = ACTIONS(4112), + [aux_sym_erase_statement_token1] = ACTIONS(4114), + [aux_sym_open_statement_token1] = ACTIONS(4114), + [aux_sym_file_mode_token2] = ACTIONS(4114), + [aux_sym_file_access_token2] = ACTIONS(4114), + [aux_sym_file_lock_token2] = ACTIONS(4114), + [aux_sym_print_statement_token1] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_QMARK] = ACTIONS(4112), + [aux_sym_close_statement_token1] = ACTIONS(4114), + [aux_sym_put_statement_token1] = ACTIONS(4114), + [aux_sym_unlock_statement_token1] = ACTIONS(4114), + [aux_sym_seek_statement_token1] = ACTIONS(4114), + [sym_reset_statement] = ACTIONS(4114), + [aux_sym_raise_event_statement_token1] = ACTIONS(4114), + [sym_stop_statement] = ACTIONS(4114), + [sym_beep_statement] = ACTIONS(4114), + [aux_sym_unload_statement_token1] = ACTIONS(4114), + [aux_sym_def_type_statement_token1] = ACTIONS(4114), + [aux_sym_def_type_statement_token2] = ACTIONS(4114), + [aux_sym_def_type_statement_token3] = ACTIONS(4114), + [aux_sym_def_type_statement_token4] = ACTIONS(4114), + [aux_sym_def_type_statement_token5] = ACTIONS(4114), + [aux_sym_def_type_statement_token6] = ACTIONS(4114), + [aux_sym_def_type_statement_token7] = ACTIONS(4114), + [aux_sym_def_type_statement_token8] = ACTIONS(4114), + [aux_sym_def_type_statement_token9] = ACTIONS(4114), + [aux_sym_def_type_statement_token10] = ACTIONS(4114), + [aux_sym_def_type_statement_token11] = ACTIONS(4114), + [aux_sym_def_type_statement_token12] = ACTIONS(4114), + [aux_sym_def_type_statement_token13] = ACTIONS(4114), + [aux_sym_def_type_statement_token14] = ACTIONS(4114), + [aux_sym_call_statement_token1] = ACTIONS(4114), + [sym__ambiguous_call_statement] = ACTIONS(4114), + [aux_sym_addressof_expression_token1] = ACTIONS(4543), + [aux_sym_type_of_expression_token1] = ACTIONS(4545), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(4865), + [sym_number_literal] = ACTIONS(4865), + [aux_sym_boolean_literal_token1] = ACTIONS(4549), + [aux_sym_boolean_literal_token2] = ACTIONS(4549), + [sym_nothing_literal] = ACTIONS(4867), + [sym_null_literal] = ACTIONS(4867), + [sym_empty_literal] = ACTIONS(4867), + [sym_date_literal] = ACTIONS(4865), + [anon_sym_POUND] = ACTIONS(4553), + }, + [STATE(619)] = { + [sym__print_output_expression] = STATE(5439), + [sym__unparenthesized_print_output_expression] = STATE(5439), + [sym__print_output_call_binary_expression] = STATE(5439), + [sym__print_output_call_operand] = STATE(10998), + [sym__print_output_member_comparison_expression] = STATE(5781), + [sym__print_output_call_member_expression] = STATE(828), + [sym__print_output_call_expression] = STATE(2577), + [sym__print_output_qualified_callable] = STATE(13423), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(11000), + [sym_comparison_expression] = STATE(4886), + [sym__comparison_operand] = STATE(11453), + [sym_logical_value_expression] = STATE(4887), + [sym__callable_expression] = STATE(13426), + [sym_call_expression] = STATE(10296), + [sym_new_expression] = STATE(1056), + [sym_addressof_expression] = STATE(1056), + [sym_type_of_expression] = STATE(1056), + [sym_member_expression] = STATE(1073), + [sym_qualified_member_expression] = STATE(1142), + [sym_implicit_member_expression] = STATE(1142), + [sym_parenthesized_expression] = STATE(1084), + [sym_binary_expression] = STATE(1085), + [sym_unary_expression] = STATE(2774), + [sym__signed_unary_expression] = STATE(1246), + [sym__literal] = STATE(1056), + [sym_boolean_literal] = STATE(1056), + [sym_file_number_literal] = STATE(1056), + [sym_identifier] = ACTIONS(4857), + [sym_newline] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(4104), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4106), + [aux_sym_frm_property_statement_token1] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4527), + [aux_sym__attribute_identifier_token1] = ACTIONS(4106), + [aux_sym_option_statement_token3] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4106), + [aux_sym_preprocessor_const_token1] = ACTIONS(4106), + [sym_static_modifier] = ACTIONS(4106), + [sym__dim_keyword] = ACTIONS(4106), + [sym__redim_keyword] = ACTIONS(4106), + [aux_sym_get_accessor_token1] = ACTIONS(4106), + [aux_sym_set_accessor_token1] = ACTIONS(4106), + [aux_sym_const_declaration_token1] = ACTIONS(4106), + [anon_sym_LPAREN] = ACTIONS(4861), + [aux_sym_as_type_clause_token2] = ACTIONS(4535), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4863), + [aux_sym_visibility_token1] = ACTIONS(4106), + [aux_sym_visibility_token2] = ACTIONS(4106), + [aux_sym_elseif_fragment_token1] = ACTIONS(4106), + [aux_sym_else_fragment_token1] = ACTIONS(4106), + [aux_sym_select_statement_token1] = ACTIONS(4106), + [aux_sym_select_statement_token2] = ACTIONS(4106), + [aux_sym__for_header_token1] = ACTIONS(4106), + [aux_sym_do_statement_token1] = ACTIONS(4106), + [aux_sym_do_condition_token1] = ACTIONS(4106), + [aux_sym_with_statement_token1] = ACTIONS(4106), + [aux_sym_exit_statement_token1] = ACTIONS(4106), + [sym_end_statement] = ACTIONS(4104), + [aux_sym_on_goto_statement_token1] = ACTIONS(4106), + [aux_sym_on_goto_statement_token2] = ACTIONS(4106), + [aux_sym_on_error_statement_token2] = ACTIONS(4106), + [sym__ambiguous_redim_statement] = ACTIONS(4104), + [aux_sym_erase_statement_token1] = ACTIONS(4106), + [aux_sym_open_statement_token1] = ACTIONS(4106), + [aux_sym_file_mode_token2] = ACTIONS(4106), + [aux_sym_file_access_token2] = ACTIONS(4106), + [aux_sym_file_lock_token2] = ACTIONS(4106), + [aux_sym_print_statement_token1] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_QMARK] = ACTIONS(4104), + [aux_sym_close_statement_token1] = ACTIONS(4106), + [aux_sym_put_statement_token1] = ACTIONS(4106), + [aux_sym_unlock_statement_token1] = ACTIONS(4106), + [aux_sym_seek_statement_token1] = ACTIONS(4106), + [sym_reset_statement] = ACTIONS(4106), + [aux_sym_raise_event_statement_token1] = ACTIONS(4106), + [sym_stop_statement] = ACTIONS(4106), + [sym_beep_statement] = ACTIONS(4106), + [aux_sym_unload_statement_token1] = ACTIONS(4106), + [aux_sym_def_type_statement_token1] = ACTIONS(4106), + [aux_sym_def_type_statement_token2] = ACTIONS(4106), + [aux_sym_def_type_statement_token3] = ACTIONS(4106), + [aux_sym_def_type_statement_token4] = ACTIONS(4106), + [aux_sym_def_type_statement_token5] = ACTIONS(4106), + [aux_sym_def_type_statement_token6] = ACTIONS(4106), + [aux_sym_def_type_statement_token7] = ACTIONS(4106), + [aux_sym_def_type_statement_token8] = ACTIONS(4106), + [aux_sym_def_type_statement_token9] = ACTIONS(4106), + [aux_sym_def_type_statement_token10] = ACTIONS(4106), + [aux_sym_def_type_statement_token11] = ACTIONS(4106), + [aux_sym_def_type_statement_token12] = ACTIONS(4106), + [aux_sym_def_type_statement_token13] = ACTIONS(4106), + [aux_sym_def_type_statement_token14] = ACTIONS(4106), + [aux_sym_call_statement_token1] = ACTIONS(4106), + [sym__ambiguous_call_statement] = ACTIONS(4106), + [aux_sym_addressof_expression_token1] = ACTIONS(4543), + [aux_sym_type_of_expression_token1] = ACTIONS(4545), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(4865), + [sym_number_literal] = ACTIONS(4865), + [aux_sym_boolean_literal_token1] = ACTIONS(4549), + [aux_sym_boolean_literal_token2] = ACTIONS(4549), + [sym_nothing_literal] = ACTIONS(4867), + [sym_null_literal] = ACTIONS(4867), + [sym_empty_literal] = ACTIONS(4867), + [sym_date_literal] = ACTIONS(4865), + [anon_sym_POUND] = ACTIONS(4553), + }, + [STATE(620)] = { + [sym__print_output_expression] = STATE(5572), + [sym__unparenthesized_print_output_expression] = STATE(5572), + [sym__print_output_call_binary_expression] = STATE(5572), + [sym__print_output_call_operand] = STATE(10987), + [sym__print_output_member_comparison_expression] = STATE(5409), + [sym__print_output_call_member_expression] = STATE(827), + [sym__print_output_call_expression] = STATE(2660), + [sym__print_output_qualified_callable] = STATE(13601), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10988), + [sym_comparison_expression] = STATE(4716), + [sym__comparison_operand] = STATE(11458), + [sym_logical_value_expression] = STATE(4717), + [sym__callable_expression] = STATE(13623), + [sym_call_expression] = STATE(10299), + [sym_new_expression] = STATE(1276), + [sym_addressof_expression] = STATE(1276), + [sym_type_of_expression] = STATE(1276), + [sym_member_expression] = STATE(1277), + [sym_qualified_member_expression] = STATE(1158), + [sym_implicit_member_expression] = STATE(1158), + [sym_parenthesized_expression] = STATE(1055), + [sym_binary_expression] = STATE(1459), + [sym_unary_expression] = STATE(2669), + [sym__signed_unary_expression] = STATE(1163), + [sym__literal] = STATE(1276), + [sym_boolean_literal] = STATE(1276), + [sym_file_number_literal] = STATE(1276), + [sym_identifier] = ACTIONS(4935), + [sym_newline] = ACTIONS(4108), + [anon_sym_COLON] = ACTIONS(4108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4110), + [aux_sym_frm_property_statement_token1] = ACTIONS(4937), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(4681), + [aux_sym__attribute_identifier_token1] = ACTIONS(4110), + [aux_sym_option_statement_token3] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4110), + [aux_sym_preprocessor_const_token1] = ACTIONS(4110), + [sym_static_modifier] = ACTIONS(4110), + [sym__dim_keyword] = ACTIONS(4110), + [sym__redim_keyword] = ACTIONS(4110), + [aux_sym_get_accessor_token1] = ACTIONS(4110), + [aux_sym_set_accessor_token1] = ACTIONS(4110), + [aux_sym_const_declaration_token1] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4939), + [aux_sym_as_type_clause_token2] = ACTIONS(4689), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4941), + [aux_sym_visibility_token1] = ACTIONS(4110), + [aux_sym_visibility_token2] = ACTIONS(4110), + [aux_sym_elseif_fragment_token1] = ACTIONS(4110), + [aux_sym_else_fragment_token1] = ACTIONS(4110), + [aux_sym_select_statement_token1] = ACTIONS(4110), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4110), + [aux_sym__for_header_token1] = ACTIONS(4110), + [aux_sym_do_statement_token1] = ACTIONS(4110), + [aux_sym_do_condition_token1] = ACTIONS(4110), + [aux_sym_with_statement_token1] = ACTIONS(4110), + [aux_sym_exit_statement_token1] = ACTIONS(4110), + [sym_end_statement] = ACTIONS(4108), + [aux_sym_on_goto_statement_token1] = ACTIONS(4110), + [aux_sym_on_goto_statement_token2] = ACTIONS(4110), + [aux_sym_on_error_statement_token2] = ACTIONS(4110), + [sym__ambiguous_redim_statement] = ACTIONS(4108), + [aux_sym_erase_statement_token1] = ACTIONS(4110), + [aux_sym_open_statement_token1] = ACTIONS(4110), + [aux_sym_file_mode_token2] = ACTIONS(4110), + [aux_sym_file_access_token2] = ACTIONS(4110), + [aux_sym_file_lock_token2] = ACTIONS(4110), + [aux_sym_print_statement_token1] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4693), + [anon_sym_DASH] = ACTIONS(4695), + [anon_sym_QMARK] = ACTIONS(4108), + [aux_sym_close_statement_token1] = ACTIONS(4110), + [aux_sym_put_statement_token1] = ACTIONS(4110), + [aux_sym_unlock_statement_token1] = ACTIONS(4110), + [aux_sym_seek_statement_token1] = ACTIONS(4110), + [sym_reset_statement] = ACTIONS(4110), + [aux_sym_raise_event_statement_token1] = ACTIONS(4110), + [sym_stop_statement] = ACTIONS(4110), + [sym_beep_statement] = ACTIONS(4110), + [aux_sym_unload_statement_token1] = ACTIONS(4110), + [aux_sym_def_type_statement_token1] = ACTIONS(4110), + [aux_sym_def_type_statement_token2] = ACTIONS(4110), + [aux_sym_def_type_statement_token3] = ACTIONS(4110), + [aux_sym_def_type_statement_token4] = ACTIONS(4110), + [aux_sym_def_type_statement_token5] = ACTIONS(4110), + [aux_sym_def_type_statement_token6] = ACTIONS(4110), + [aux_sym_def_type_statement_token7] = ACTIONS(4110), + [aux_sym_def_type_statement_token8] = ACTIONS(4110), + [aux_sym_def_type_statement_token9] = ACTIONS(4110), + [aux_sym_def_type_statement_token10] = ACTIONS(4110), + [aux_sym_def_type_statement_token11] = ACTIONS(4110), + [aux_sym_def_type_statement_token12] = ACTIONS(4110), + [aux_sym_def_type_statement_token13] = ACTIONS(4110), + [aux_sym_def_type_statement_token14] = ACTIONS(4110), + [aux_sym_call_statement_token1] = ACTIONS(4110), + [sym__ambiguous_call_statement] = ACTIONS(4110), + [aux_sym_addressof_expression_token1] = ACTIONS(4697), + [aux_sym_type_of_expression_token1] = ACTIONS(4699), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(4943), + [sym_number_literal] = ACTIONS(4943), + [aux_sym_boolean_literal_token1] = ACTIONS(4703), + [aux_sym_boolean_literal_token2] = ACTIONS(4703), + [sym_nothing_literal] = ACTIONS(4945), + [sym_null_literal] = ACTIONS(4945), + [sym_empty_literal] = ACTIONS(4945), + [sym_date_literal] = ACTIONS(4943), + [anon_sym_POUND] = ACTIONS(4707), + }, + [STATE(621)] = { + [sym__print_output_expression] = STATE(5572), + [sym__unparenthesized_print_output_expression] = STATE(5572), + [sym__print_output_call_binary_expression] = STATE(5572), + [sym__print_output_call_operand] = STATE(10987), + [sym__print_output_member_comparison_expression] = STATE(5409), + [sym__print_output_call_member_expression] = STATE(827), + [sym__print_output_call_expression] = STATE(2660), + [sym__print_output_qualified_callable] = STATE(13601), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10988), + [sym_comparison_expression] = STATE(4716), + [sym__comparison_operand] = STATE(11458), + [sym_logical_value_expression] = STATE(4717), + [sym__callable_expression] = STATE(13623), + [sym_call_expression] = STATE(10299), + [sym_new_expression] = STATE(1276), + [sym_addressof_expression] = STATE(1276), + [sym_type_of_expression] = STATE(1276), + [sym_member_expression] = STATE(1277), + [sym_qualified_member_expression] = STATE(1158), + [sym_implicit_member_expression] = STATE(1158), + [sym_parenthesized_expression] = STATE(1055), + [sym_binary_expression] = STATE(1459), + [sym_unary_expression] = STATE(2669), + [sym__signed_unary_expression] = STATE(1163), + [sym__literal] = STATE(1276), + [sym_boolean_literal] = STATE(1276), + [sym_file_number_literal] = STATE(1276), + [sym_identifier] = ACTIONS(4935), + [sym_newline] = ACTIONS(4112), + [anon_sym_COLON] = ACTIONS(4112), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4114), + [aux_sym_frm_property_statement_token1] = ACTIONS(4937), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(4681), + [aux_sym__attribute_identifier_token1] = ACTIONS(4114), + [aux_sym_option_statement_token3] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4114), + [aux_sym_preprocessor_const_token1] = ACTIONS(4114), + [sym_static_modifier] = ACTIONS(4114), + [sym__dim_keyword] = ACTIONS(4114), + [sym__redim_keyword] = ACTIONS(4114), + [aux_sym_get_accessor_token1] = ACTIONS(4114), + [aux_sym_set_accessor_token1] = ACTIONS(4114), + [aux_sym_const_declaration_token1] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4939), + [aux_sym_as_type_clause_token2] = ACTIONS(4689), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4941), + [aux_sym_visibility_token1] = ACTIONS(4114), + [aux_sym_visibility_token2] = ACTIONS(4114), + [aux_sym_elseif_fragment_token1] = ACTIONS(4114), + [aux_sym_else_fragment_token1] = ACTIONS(4114), + [aux_sym_select_statement_token1] = ACTIONS(4114), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4114), + [aux_sym__for_header_token1] = ACTIONS(4114), + [aux_sym_do_statement_token1] = ACTIONS(4114), + [aux_sym_do_condition_token1] = ACTIONS(4114), + [aux_sym_with_statement_token1] = ACTIONS(4114), + [aux_sym_exit_statement_token1] = ACTIONS(4114), + [sym_end_statement] = ACTIONS(4112), + [aux_sym_on_goto_statement_token1] = ACTIONS(4114), + [aux_sym_on_goto_statement_token2] = ACTIONS(4114), + [aux_sym_on_error_statement_token2] = ACTIONS(4114), + [sym__ambiguous_redim_statement] = ACTIONS(4112), + [aux_sym_erase_statement_token1] = ACTIONS(4114), + [aux_sym_open_statement_token1] = ACTIONS(4114), + [aux_sym_file_mode_token2] = ACTIONS(4114), + [aux_sym_file_access_token2] = ACTIONS(4114), + [aux_sym_file_lock_token2] = ACTIONS(4114), + [aux_sym_print_statement_token1] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4693), + [anon_sym_DASH] = ACTIONS(4695), + [anon_sym_QMARK] = ACTIONS(4112), + [aux_sym_close_statement_token1] = ACTIONS(4114), + [aux_sym_put_statement_token1] = ACTIONS(4114), + [aux_sym_unlock_statement_token1] = ACTIONS(4114), + [aux_sym_seek_statement_token1] = ACTIONS(4114), + [sym_reset_statement] = ACTIONS(4114), + [aux_sym_raise_event_statement_token1] = ACTIONS(4114), + [sym_stop_statement] = ACTIONS(4114), + [sym_beep_statement] = ACTIONS(4114), + [aux_sym_unload_statement_token1] = ACTIONS(4114), + [aux_sym_def_type_statement_token1] = ACTIONS(4114), + [aux_sym_def_type_statement_token2] = ACTIONS(4114), + [aux_sym_def_type_statement_token3] = ACTIONS(4114), + [aux_sym_def_type_statement_token4] = ACTIONS(4114), + [aux_sym_def_type_statement_token5] = ACTIONS(4114), + [aux_sym_def_type_statement_token6] = ACTIONS(4114), + [aux_sym_def_type_statement_token7] = ACTIONS(4114), + [aux_sym_def_type_statement_token8] = ACTIONS(4114), + [aux_sym_def_type_statement_token9] = ACTIONS(4114), + [aux_sym_def_type_statement_token10] = ACTIONS(4114), + [aux_sym_def_type_statement_token11] = ACTIONS(4114), + [aux_sym_def_type_statement_token12] = ACTIONS(4114), + [aux_sym_def_type_statement_token13] = ACTIONS(4114), + [aux_sym_def_type_statement_token14] = ACTIONS(4114), + [aux_sym_call_statement_token1] = ACTIONS(4114), + [sym__ambiguous_call_statement] = ACTIONS(4114), + [aux_sym_addressof_expression_token1] = ACTIONS(4697), + [aux_sym_type_of_expression_token1] = ACTIONS(4699), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(4943), + [sym_number_literal] = ACTIONS(4943), + [aux_sym_boolean_literal_token1] = ACTIONS(4703), + [aux_sym_boolean_literal_token2] = ACTIONS(4703), + [sym_nothing_literal] = ACTIONS(4945), + [sym_null_literal] = ACTIONS(4945), + [sym_empty_literal] = ACTIONS(4945), + [sym_date_literal] = ACTIONS(4943), + [anon_sym_POUND] = ACTIONS(4707), + }, + [STATE(622)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_declaration_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_enum_declaration_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4593), + [aux_sym_declare_function_statement_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [aux_sym__property_get_header_token1] = ACTIONS(4593), + [aux_sym_event_declaration_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(623)] = { + [sym__print_output_expression] = STATE(5572), + [sym__unparenthesized_print_output_expression] = STATE(5572), + [sym__print_output_call_binary_expression] = STATE(5572), + [sym__print_output_call_operand] = STATE(10987), + [sym__print_output_member_comparison_expression] = STATE(5409), + [sym__print_output_call_member_expression] = STATE(827), + [sym__print_output_call_expression] = STATE(2660), + [sym__print_output_qualified_callable] = STATE(13601), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10988), + [sym_comparison_expression] = STATE(4716), + [sym__comparison_operand] = STATE(11458), + [sym_logical_value_expression] = STATE(4717), + [sym__callable_expression] = STATE(13623), + [sym_call_expression] = STATE(10299), + [sym_new_expression] = STATE(1276), + [sym_addressof_expression] = STATE(1276), + [sym_type_of_expression] = STATE(1276), + [sym_member_expression] = STATE(1277), + [sym_qualified_member_expression] = STATE(1158), + [sym_implicit_member_expression] = STATE(1158), + [sym_parenthesized_expression] = STATE(1055), + [sym_binary_expression] = STATE(1459), + [sym_unary_expression] = STATE(2669), + [sym__signed_unary_expression] = STATE(1163), + [sym__literal] = STATE(1276), + [sym_boolean_literal] = STATE(1276), + [sym_file_number_literal] = STATE(1276), + [sym_identifier] = ACTIONS(4935), + [sym_newline] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(4104), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4106), + [aux_sym_frm_property_statement_token1] = ACTIONS(4937), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(4681), + [aux_sym__attribute_identifier_token1] = ACTIONS(4106), + [aux_sym_option_statement_token3] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4106), + [aux_sym_preprocessor_const_token1] = ACTIONS(4106), + [sym_static_modifier] = ACTIONS(4106), + [sym__dim_keyword] = ACTIONS(4106), + [sym__redim_keyword] = ACTIONS(4106), + [aux_sym_get_accessor_token1] = ACTIONS(4106), + [aux_sym_set_accessor_token1] = ACTIONS(4106), + [aux_sym_const_declaration_token1] = ACTIONS(4106), + [anon_sym_LPAREN] = ACTIONS(4939), + [aux_sym_as_type_clause_token2] = ACTIONS(4689), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4941), + [aux_sym_visibility_token1] = ACTIONS(4106), + [aux_sym_visibility_token2] = ACTIONS(4106), + [aux_sym_elseif_fragment_token1] = ACTIONS(4106), + [aux_sym_else_fragment_token1] = ACTIONS(4106), + [aux_sym_select_statement_token1] = ACTIONS(4106), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4106), + [aux_sym__for_header_token1] = ACTIONS(4106), + [aux_sym_do_statement_token1] = ACTIONS(4106), + [aux_sym_do_condition_token1] = ACTIONS(4106), + [aux_sym_with_statement_token1] = ACTIONS(4106), + [aux_sym_exit_statement_token1] = ACTIONS(4106), + [sym_end_statement] = ACTIONS(4104), + [aux_sym_on_goto_statement_token1] = ACTIONS(4106), + [aux_sym_on_goto_statement_token2] = ACTIONS(4106), + [aux_sym_on_error_statement_token2] = ACTIONS(4106), + [sym__ambiguous_redim_statement] = ACTIONS(4104), + [aux_sym_erase_statement_token1] = ACTIONS(4106), + [aux_sym_open_statement_token1] = ACTIONS(4106), + [aux_sym_file_mode_token2] = ACTIONS(4106), + [aux_sym_file_access_token2] = ACTIONS(4106), + [aux_sym_file_lock_token2] = ACTIONS(4106), + [aux_sym_print_statement_token1] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(4693), + [anon_sym_DASH] = ACTIONS(4695), + [anon_sym_QMARK] = ACTIONS(4104), + [aux_sym_close_statement_token1] = ACTIONS(4106), + [aux_sym_put_statement_token1] = ACTIONS(4106), + [aux_sym_unlock_statement_token1] = ACTIONS(4106), + [aux_sym_seek_statement_token1] = ACTIONS(4106), + [sym_reset_statement] = ACTIONS(4106), + [aux_sym_raise_event_statement_token1] = ACTIONS(4106), + [sym_stop_statement] = ACTIONS(4106), + [sym_beep_statement] = ACTIONS(4106), + [aux_sym_unload_statement_token1] = ACTIONS(4106), + [aux_sym_def_type_statement_token1] = ACTIONS(4106), + [aux_sym_def_type_statement_token2] = ACTIONS(4106), + [aux_sym_def_type_statement_token3] = ACTIONS(4106), + [aux_sym_def_type_statement_token4] = ACTIONS(4106), + [aux_sym_def_type_statement_token5] = ACTIONS(4106), + [aux_sym_def_type_statement_token6] = ACTIONS(4106), + [aux_sym_def_type_statement_token7] = ACTIONS(4106), + [aux_sym_def_type_statement_token8] = ACTIONS(4106), + [aux_sym_def_type_statement_token9] = ACTIONS(4106), + [aux_sym_def_type_statement_token10] = ACTIONS(4106), + [aux_sym_def_type_statement_token11] = ACTIONS(4106), + [aux_sym_def_type_statement_token12] = ACTIONS(4106), + [aux_sym_def_type_statement_token13] = ACTIONS(4106), + [aux_sym_def_type_statement_token14] = ACTIONS(4106), + [aux_sym_call_statement_token1] = ACTIONS(4106), + [sym__ambiguous_call_statement] = ACTIONS(4106), + [aux_sym_addressof_expression_token1] = ACTIONS(4697), + [aux_sym_type_of_expression_token1] = ACTIONS(4699), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(4943), + [sym_number_literal] = ACTIONS(4943), + [aux_sym_boolean_literal_token1] = ACTIONS(4703), + [aux_sym_boolean_literal_token2] = ACTIONS(4703), + [sym_nothing_literal] = ACTIONS(4945), + [sym_null_literal] = ACTIONS(4945), + [sym_empty_literal] = ACTIONS(4945), + [sym_date_literal] = ACTIONS(4943), + [anon_sym_POUND] = ACTIONS(4707), + }, + [STATE(624)] = { + [sym__print_output_expression] = STATE(5572), + [sym__unparenthesized_print_output_expression] = STATE(5572), + [sym__print_output_call_binary_expression] = STATE(5572), + [sym__print_output_call_operand] = STATE(10987), + [sym__print_output_member_comparison_expression] = STATE(5409), + [sym__print_output_call_member_expression] = STATE(827), + [sym__print_output_call_expression] = STATE(2660), + [sym__print_output_qualified_callable] = STATE(13601), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10988), + [sym_comparison_expression] = STATE(4716), + [sym__comparison_operand] = STATE(11458), + [sym_logical_value_expression] = STATE(4717), + [sym__callable_expression] = STATE(13623), + [sym_call_expression] = STATE(10299), + [sym_new_expression] = STATE(1276), + [sym_addressof_expression] = STATE(1276), + [sym_type_of_expression] = STATE(1276), + [sym_member_expression] = STATE(1277), + [sym_qualified_member_expression] = STATE(1158), + [sym_implicit_member_expression] = STATE(1158), + [sym_parenthesized_expression] = STATE(1055), + [sym_binary_expression] = STATE(1459), + [sym_unary_expression] = STATE(2669), + [sym__signed_unary_expression] = STATE(1163), + [sym__literal] = STATE(1276), + [sym_boolean_literal] = STATE(1276), + [sym_file_number_literal] = STATE(1276), + [sym_identifier] = ACTIONS(4935), + [sym_newline] = ACTIONS(4100), + [anon_sym_COLON] = ACTIONS(4100), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4102), + [aux_sym_frm_property_statement_token1] = ACTIONS(4937), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(4681), + [aux_sym__attribute_identifier_token1] = ACTIONS(4102), + [aux_sym_option_statement_token3] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4102), + [aux_sym_preprocessor_const_token1] = ACTIONS(4102), + [sym_static_modifier] = ACTIONS(4102), + [sym__dim_keyword] = ACTIONS(4102), + [sym__redim_keyword] = ACTIONS(4102), + [aux_sym_get_accessor_token1] = ACTIONS(4102), + [aux_sym_set_accessor_token1] = ACTIONS(4102), + [aux_sym_const_declaration_token1] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(4939), + [aux_sym_as_type_clause_token2] = ACTIONS(4689), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4941), + [aux_sym_visibility_token1] = ACTIONS(4102), + [aux_sym_visibility_token2] = ACTIONS(4102), + [aux_sym_elseif_fragment_token1] = ACTIONS(4102), + [aux_sym_else_fragment_token1] = ACTIONS(4102), + [aux_sym_select_statement_token1] = ACTIONS(4102), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4102), + [aux_sym__for_header_token1] = ACTIONS(4102), + [aux_sym_do_statement_token1] = ACTIONS(4102), + [aux_sym_do_condition_token1] = ACTIONS(4102), + [aux_sym_with_statement_token1] = ACTIONS(4102), + [aux_sym_exit_statement_token1] = ACTIONS(4102), + [sym_end_statement] = ACTIONS(4100), + [aux_sym_on_goto_statement_token1] = ACTIONS(4102), + [aux_sym_on_goto_statement_token2] = ACTIONS(4102), + [aux_sym_on_error_statement_token2] = ACTIONS(4102), + [sym__ambiguous_redim_statement] = ACTIONS(4100), + [aux_sym_erase_statement_token1] = ACTIONS(4102), + [aux_sym_open_statement_token1] = ACTIONS(4102), + [aux_sym_file_mode_token2] = ACTIONS(4102), + [aux_sym_file_access_token2] = ACTIONS(4102), + [aux_sym_file_lock_token2] = ACTIONS(4102), + [aux_sym_print_statement_token1] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4693), + [anon_sym_DASH] = ACTIONS(4695), + [anon_sym_QMARK] = ACTIONS(4100), + [aux_sym_close_statement_token1] = ACTIONS(4102), + [aux_sym_put_statement_token1] = ACTIONS(4102), + [aux_sym_unlock_statement_token1] = ACTIONS(4102), + [aux_sym_seek_statement_token1] = ACTIONS(4102), + [sym_reset_statement] = ACTIONS(4102), + [aux_sym_raise_event_statement_token1] = ACTIONS(4102), + [sym_stop_statement] = ACTIONS(4102), + [sym_beep_statement] = ACTIONS(4102), + [aux_sym_unload_statement_token1] = ACTIONS(4102), + [aux_sym_def_type_statement_token1] = ACTIONS(4102), + [aux_sym_def_type_statement_token2] = ACTIONS(4102), + [aux_sym_def_type_statement_token3] = ACTIONS(4102), + [aux_sym_def_type_statement_token4] = ACTIONS(4102), + [aux_sym_def_type_statement_token5] = ACTIONS(4102), + [aux_sym_def_type_statement_token6] = ACTIONS(4102), + [aux_sym_def_type_statement_token7] = ACTIONS(4102), + [aux_sym_def_type_statement_token8] = ACTIONS(4102), + [aux_sym_def_type_statement_token9] = ACTIONS(4102), + [aux_sym_def_type_statement_token10] = ACTIONS(4102), + [aux_sym_def_type_statement_token11] = ACTIONS(4102), + [aux_sym_def_type_statement_token12] = ACTIONS(4102), + [aux_sym_def_type_statement_token13] = ACTIONS(4102), + [aux_sym_def_type_statement_token14] = ACTIONS(4102), + [aux_sym_call_statement_token1] = ACTIONS(4102), + [sym__ambiguous_call_statement] = ACTIONS(4102), + [aux_sym_addressof_expression_token1] = ACTIONS(4697), + [aux_sym_type_of_expression_token1] = ACTIONS(4699), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(4943), + [sym_number_literal] = ACTIONS(4943), + [aux_sym_boolean_literal_token1] = ACTIONS(4703), + [aux_sym_boolean_literal_token2] = ACTIONS(4703), + [sym_nothing_literal] = ACTIONS(4945), + [sym_null_literal] = ACTIONS(4945), + [sym_empty_literal] = ACTIONS(4945), + [sym_date_literal] = ACTIONS(4943), + [anon_sym_POUND] = ACTIONS(4707), + }, + [STATE(625)] = { + [sym__print_output_expression] = STATE(5439), + [sym__unparenthesized_print_output_expression] = STATE(5439), + [sym__print_output_call_binary_expression] = STATE(5439), + [sym__print_output_call_operand] = STATE(10998), + [sym__print_output_member_comparison_expression] = STATE(5781), + [sym__print_output_call_member_expression] = STATE(828), + [sym__print_output_call_expression] = STATE(2577), + [sym__print_output_qualified_callable] = STATE(13423), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(11000), + [sym_comparison_expression] = STATE(4886), + [sym__comparison_operand] = STATE(11453), + [sym_logical_value_expression] = STATE(4887), + [sym__callable_expression] = STATE(13426), + [sym_call_expression] = STATE(10296), + [sym_new_expression] = STATE(1056), + [sym_addressof_expression] = STATE(1056), + [sym_type_of_expression] = STATE(1056), + [sym_member_expression] = STATE(1073), + [sym_qualified_member_expression] = STATE(1142), + [sym_implicit_member_expression] = STATE(1142), + [sym_parenthesized_expression] = STATE(1084), + [sym_binary_expression] = STATE(1085), + [sym_unary_expression] = STATE(2774), + [sym__signed_unary_expression] = STATE(1246), + [sym__literal] = STATE(1056), + [sym_boolean_literal] = STATE(1056), + [sym_file_number_literal] = STATE(1056), + [sym_identifier] = ACTIONS(4857), + [sym_newline] = ACTIONS(4100), + [anon_sym_COLON] = ACTIONS(4100), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4102), + [aux_sym_frm_property_statement_token1] = ACTIONS(4859), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4527), + [aux_sym__attribute_identifier_token1] = ACTIONS(4102), + [aux_sym_option_statement_token3] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4102), + [aux_sym_preprocessor_const_token1] = ACTIONS(4102), + [sym_static_modifier] = ACTIONS(4102), + [sym__dim_keyword] = ACTIONS(4102), + [sym__redim_keyword] = ACTIONS(4102), + [aux_sym_get_accessor_token1] = ACTIONS(4102), + [aux_sym_set_accessor_token1] = ACTIONS(4102), + [aux_sym_const_declaration_token1] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(4861), + [aux_sym_as_type_clause_token2] = ACTIONS(4535), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4863), + [aux_sym_visibility_token1] = ACTIONS(4102), + [aux_sym_visibility_token2] = ACTIONS(4102), + [aux_sym_elseif_fragment_token1] = ACTIONS(4102), + [aux_sym_else_fragment_token1] = ACTIONS(4102), + [aux_sym_select_statement_token1] = ACTIONS(4102), + [aux_sym_select_statement_token2] = ACTIONS(4102), + [aux_sym__for_header_token1] = ACTIONS(4102), + [aux_sym_do_statement_token1] = ACTIONS(4102), + [aux_sym_do_condition_token1] = ACTIONS(4102), + [aux_sym_with_statement_token1] = ACTIONS(4102), + [aux_sym_exit_statement_token1] = ACTIONS(4102), + [sym_end_statement] = ACTIONS(4100), + [aux_sym_on_goto_statement_token1] = ACTIONS(4102), + [aux_sym_on_goto_statement_token2] = ACTIONS(4102), + [aux_sym_on_error_statement_token2] = ACTIONS(4102), + [sym__ambiguous_redim_statement] = ACTIONS(4100), + [aux_sym_erase_statement_token1] = ACTIONS(4102), + [aux_sym_open_statement_token1] = ACTIONS(4102), + [aux_sym_file_mode_token2] = ACTIONS(4102), + [aux_sym_file_access_token2] = ACTIONS(4102), + [aux_sym_file_lock_token2] = ACTIONS(4102), + [aux_sym_print_statement_token1] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_QMARK] = ACTIONS(4100), + [aux_sym_close_statement_token1] = ACTIONS(4102), + [aux_sym_put_statement_token1] = ACTIONS(4102), + [aux_sym_unlock_statement_token1] = ACTIONS(4102), + [aux_sym_seek_statement_token1] = ACTIONS(4102), + [sym_reset_statement] = ACTIONS(4102), + [aux_sym_raise_event_statement_token1] = ACTIONS(4102), + [sym_stop_statement] = ACTIONS(4102), + [sym_beep_statement] = ACTIONS(4102), + [aux_sym_unload_statement_token1] = ACTIONS(4102), + [aux_sym_def_type_statement_token1] = ACTIONS(4102), + [aux_sym_def_type_statement_token2] = ACTIONS(4102), + [aux_sym_def_type_statement_token3] = ACTIONS(4102), + [aux_sym_def_type_statement_token4] = ACTIONS(4102), + [aux_sym_def_type_statement_token5] = ACTIONS(4102), + [aux_sym_def_type_statement_token6] = ACTIONS(4102), + [aux_sym_def_type_statement_token7] = ACTIONS(4102), + [aux_sym_def_type_statement_token8] = ACTIONS(4102), + [aux_sym_def_type_statement_token9] = ACTIONS(4102), + [aux_sym_def_type_statement_token10] = ACTIONS(4102), + [aux_sym_def_type_statement_token11] = ACTIONS(4102), + [aux_sym_def_type_statement_token12] = ACTIONS(4102), + [aux_sym_def_type_statement_token13] = ACTIONS(4102), + [aux_sym_def_type_statement_token14] = ACTIONS(4102), + [aux_sym_call_statement_token1] = ACTIONS(4102), + [sym__ambiguous_call_statement] = ACTIONS(4102), + [aux_sym_addressof_expression_token1] = ACTIONS(4543), + [aux_sym_type_of_expression_token1] = ACTIONS(4545), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(4865), + [sym_number_literal] = ACTIONS(4865), + [aux_sym_boolean_literal_token1] = ACTIONS(4549), + [aux_sym_boolean_literal_token2] = ACTIONS(4549), + [sym_nothing_literal] = ACTIONS(4867), + [sym_null_literal] = ACTIONS(4867), + [sym_empty_literal] = ACTIONS(4867), + [sym_date_literal] = ACTIONS(4865), + [anon_sym_POUND] = ACTIONS(4553), + }, + [STATE(626)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_declaration_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_enum_declaration_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4597), + [aux_sym_declare_function_statement_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [aux_sym__property_get_header_token1] = ACTIONS(4597), + [aux_sym_event_declaration_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(627)] = { + [sym__print_output_expression] = STATE(5586), + [sym__unparenthesized_print_output_expression] = STATE(5586), + [sym__print_output_call_binary_expression] = STATE(5586), + [sym__print_output_call_operand] = STATE(10983), + [sym__print_output_member_comparison_expression] = STATE(5764), + [sym__print_output_call_member_expression] = STATE(866), + [sym__print_output_call_expression] = STATE(2771), + [sym__print_output_qualified_callable] = STATE(13617), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10982), + [sym_comparison_expression] = STATE(4880), + [sym__comparison_operand] = STATE(11262), + [sym_logical_value_expression] = STATE(4881), + [sym__callable_expression] = STATE(13618), + [sym_call_expression] = STATE(10290), + [sym_new_expression] = STATE(1452), + [sym_addressof_expression] = STATE(1452), + [sym_type_of_expression] = STATE(1452), + [sym_member_expression] = STATE(1453), + [sym_qualified_member_expression] = STATE(1441), + [sym_implicit_member_expression] = STATE(1441), + [sym_parenthesized_expression] = STATE(1457), + [sym_binary_expression] = STATE(1211), + [sym_unary_expression] = STATE(2897), + [sym__signed_unary_expression] = STATE(1416), + [sym__literal] = STATE(1452), + [sym_boolean_literal] = STATE(1452), + [sym_file_number_literal] = STATE(1452), + [sym_identifier] = ACTIONS(4871), + [sym_newline] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(4104), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4106), + [aux_sym_frm_property_statement_token1] = ACTIONS(4873), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4778), + [aux_sym__attribute_identifier_token1] = ACTIONS(4106), + [aux_sym_option_statement_token3] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4106), + [aux_sym_preprocessor_const_token1] = ACTIONS(4106), + [sym_static_modifier] = ACTIONS(4106), + [sym__dim_keyword] = ACTIONS(4106), + [sym__redim_keyword] = ACTIONS(4106), + [aux_sym_get_accessor_token1] = ACTIONS(4106), + [aux_sym_set_accessor_token1] = ACTIONS(4106), + [aux_sym_const_declaration_token1] = ACTIONS(4106), + [anon_sym_LPAREN] = ACTIONS(4875), + [aux_sym_as_type_clause_token2] = ACTIONS(4786), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4877), + [aux_sym_visibility_token1] = ACTIONS(4106), + [aux_sym_visibility_token2] = ACTIONS(4106), + [aux_sym_elseif_fragment_token1] = ACTIONS(4106), + [aux_sym_else_fragment_token1] = ACTIONS(4106), + [aux_sym_select_statement_token1] = ACTIONS(4106), + [aux_sym__for_header_token1] = ACTIONS(4106), + [aux_sym_do_statement_token1] = ACTIONS(4106), + [aux_sym_do_statement_token2] = ACTIONS(4106), + [aux_sym_do_condition_token1] = ACTIONS(4106), + [aux_sym_with_statement_token1] = ACTIONS(4106), + [aux_sym_exit_statement_token1] = ACTIONS(4106), + [sym_end_statement] = ACTIONS(4104), + [aux_sym_on_goto_statement_token1] = ACTIONS(4106), + [aux_sym_on_goto_statement_token2] = ACTIONS(4106), + [aux_sym_on_error_statement_token2] = ACTIONS(4106), + [sym__ambiguous_redim_statement] = ACTIONS(4104), + [aux_sym_erase_statement_token1] = ACTIONS(4106), + [aux_sym_open_statement_token1] = ACTIONS(4106), + [aux_sym_file_mode_token2] = ACTIONS(4106), + [aux_sym_file_access_token2] = ACTIONS(4106), + [aux_sym_file_lock_token2] = ACTIONS(4106), + [aux_sym_print_statement_token1] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_QMARK] = ACTIONS(4104), + [aux_sym_close_statement_token1] = ACTIONS(4106), + [aux_sym_put_statement_token1] = ACTIONS(4106), + [aux_sym_unlock_statement_token1] = ACTIONS(4106), + [aux_sym_seek_statement_token1] = ACTIONS(4106), + [sym_reset_statement] = ACTIONS(4106), + [aux_sym_raise_event_statement_token1] = ACTIONS(4106), + [sym_stop_statement] = ACTIONS(4106), + [sym_beep_statement] = ACTIONS(4106), + [aux_sym_unload_statement_token1] = ACTIONS(4106), + [aux_sym_def_type_statement_token1] = ACTIONS(4106), + [aux_sym_def_type_statement_token2] = ACTIONS(4106), + [aux_sym_def_type_statement_token3] = ACTIONS(4106), + [aux_sym_def_type_statement_token4] = ACTIONS(4106), + [aux_sym_def_type_statement_token5] = ACTIONS(4106), + [aux_sym_def_type_statement_token6] = ACTIONS(4106), + [aux_sym_def_type_statement_token7] = ACTIONS(4106), + [aux_sym_def_type_statement_token8] = ACTIONS(4106), + [aux_sym_def_type_statement_token9] = ACTIONS(4106), + [aux_sym_def_type_statement_token10] = ACTIONS(4106), + [aux_sym_def_type_statement_token11] = ACTIONS(4106), + [aux_sym_def_type_statement_token12] = ACTIONS(4106), + [aux_sym_def_type_statement_token13] = ACTIONS(4106), + [aux_sym_def_type_statement_token14] = ACTIONS(4106), + [aux_sym_call_statement_token1] = ACTIONS(4106), + [sym__ambiguous_call_statement] = ACTIONS(4106), + [aux_sym_addressof_expression_token1] = ACTIONS(4794), + [aux_sym_type_of_expression_token1] = ACTIONS(4796), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(4879), + [sym_number_literal] = ACTIONS(4879), + [aux_sym_boolean_literal_token1] = ACTIONS(4800), + [aux_sym_boolean_literal_token2] = ACTIONS(4800), + [sym_nothing_literal] = ACTIONS(4881), + [sym_null_literal] = ACTIONS(4881), + [sym_empty_literal] = ACTIONS(4881), + [sym_date_literal] = ACTIONS(4879), + [anon_sym_POUND] = ACTIONS(4804), + }, + [STATE(628)] = { + [sym__print_output_expression] = STATE(5155), + [sym__unparenthesized_print_output_expression] = STATE(5155), + [sym__print_output_call_binary_expression] = STATE(5155), + [sym__print_output_call_operand] = STATE(10989), + [sym__print_output_member_comparison_expression] = STATE(5102), + [sym__print_output_call_member_expression] = STATE(803), + [sym__print_output_call_expression] = STATE(2585), + [sym__print_output_qualified_callable] = STATE(13142), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10990), + [sym_comparison_expression] = STATE(4734), + [sym__comparison_operand] = STATE(11361), + [sym_logical_value_expression] = STATE(4735), + [sym__callable_expression] = STATE(13150), + [sym_call_expression] = STATE(10294), + [sym_new_expression] = STATE(1339), + [sym_addressof_expression] = STATE(1339), + [sym_type_of_expression] = STATE(1339), + [sym_member_expression] = STATE(1340), + [sym_qualified_member_expression] = STATE(1221), + [sym_implicit_member_expression] = STATE(1221), + [sym_parenthesized_expression] = STATE(1341), + [sym_binary_expression] = STATE(1342), + [sym_unary_expression] = STATE(2631), + [sym__signed_unary_expression] = STATE(1313), + [sym__literal] = STATE(1339), + [sym_boolean_literal] = STATE(1339), + [sym_file_number_literal] = STATE(1339), + [sym_identifier] = ACTIONS(4949), + [sym_newline] = ACTIONS(4108), + [anon_sym_COLON] = ACTIONS(4108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4110), + [aux_sym_frm_property_statement_token1] = ACTIONS(4951), + [anon_sym_DOT] = ACTIONS(4715), + [anon_sym_BANG] = ACTIONS(4717), + [aux_sym__attribute_identifier_token1] = ACTIONS(4110), + [aux_sym_option_statement_token3] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4110), + [aux_sym_preprocessor_const_token1] = ACTIONS(4110), + [sym_static_modifier] = ACTIONS(4110), + [sym__dim_keyword] = ACTIONS(4110), + [sym__redim_keyword] = ACTIONS(4110), + [aux_sym_get_accessor_token1] = ACTIONS(4110), + [aux_sym_set_accessor_token1] = ACTIONS(4110), + [aux_sym_const_declaration_token1] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4953), + [aux_sym_as_type_clause_token2] = ACTIONS(4725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4955), + [aux_sym_visibility_token1] = ACTIONS(4110), + [aux_sym_visibility_token2] = ACTIONS(4110), + [aux_sym_elseif_fragment_token1] = ACTIONS(4110), + [aux_sym_else_fragment_token1] = ACTIONS(4110), + [aux_sym_select_statement_token1] = ACTIONS(4110), + [aux_sym__for_header_token1] = ACTIONS(4110), + [aux_sym_do_statement_token1] = ACTIONS(4110), + [aux_sym_do_condition_token1] = ACTIONS(4110), + [aux_sym_while_statement_token1] = ACTIONS(4110), + [aux_sym_with_statement_token1] = ACTIONS(4110), + [aux_sym_exit_statement_token1] = ACTIONS(4110), + [sym_end_statement] = ACTIONS(4108), + [aux_sym_on_goto_statement_token1] = ACTIONS(4110), + [aux_sym_on_goto_statement_token2] = ACTIONS(4110), + [aux_sym_on_error_statement_token2] = ACTIONS(4110), + [sym__ambiguous_redim_statement] = ACTIONS(4108), + [aux_sym_erase_statement_token1] = ACTIONS(4110), + [aux_sym_open_statement_token1] = ACTIONS(4110), + [aux_sym_file_mode_token2] = ACTIONS(4110), + [aux_sym_file_access_token2] = ACTIONS(4110), + [aux_sym_file_lock_token2] = ACTIONS(4110), + [aux_sym_print_statement_token1] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4729), + [anon_sym_DASH] = ACTIONS(4731), + [anon_sym_QMARK] = ACTIONS(4108), + [aux_sym_close_statement_token1] = ACTIONS(4110), + [aux_sym_put_statement_token1] = ACTIONS(4110), + [aux_sym_unlock_statement_token1] = ACTIONS(4110), + [aux_sym_seek_statement_token1] = ACTIONS(4110), + [sym_reset_statement] = ACTIONS(4110), + [aux_sym_raise_event_statement_token1] = ACTIONS(4110), + [sym_stop_statement] = ACTIONS(4110), + [sym_beep_statement] = ACTIONS(4110), + [aux_sym_unload_statement_token1] = ACTIONS(4110), + [aux_sym_def_type_statement_token1] = ACTIONS(4110), + [aux_sym_def_type_statement_token2] = ACTIONS(4110), + [aux_sym_def_type_statement_token3] = ACTIONS(4110), + [aux_sym_def_type_statement_token4] = ACTIONS(4110), + [aux_sym_def_type_statement_token5] = ACTIONS(4110), + [aux_sym_def_type_statement_token6] = ACTIONS(4110), + [aux_sym_def_type_statement_token7] = ACTIONS(4110), + [aux_sym_def_type_statement_token8] = ACTIONS(4110), + [aux_sym_def_type_statement_token9] = ACTIONS(4110), + [aux_sym_def_type_statement_token10] = ACTIONS(4110), + [aux_sym_def_type_statement_token11] = ACTIONS(4110), + [aux_sym_def_type_statement_token12] = ACTIONS(4110), + [aux_sym_def_type_statement_token13] = ACTIONS(4110), + [aux_sym_def_type_statement_token14] = ACTIONS(4110), + [aux_sym_call_statement_token1] = ACTIONS(4110), + [sym__ambiguous_call_statement] = ACTIONS(4110), + [aux_sym_addressof_expression_token1] = ACTIONS(4733), + [aux_sym_type_of_expression_token1] = ACTIONS(4735), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(4957), + [sym_number_literal] = ACTIONS(4957), + [aux_sym_boolean_literal_token1] = ACTIONS(4739), + [aux_sym_boolean_literal_token2] = ACTIONS(4739), + [sym_nothing_literal] = ACTIONS(4959), + [sym_null_literal] = ACTIONS(4959), + [sym_empty_literal] = ACTIONS(4959), + [sym_date_literal] = ACTIONS(4957), + [anon_sym_POUND] = ACTIONS(4743), + }, + [STATE(629)] = { + [sym__print_output_expression] = STATE(5155), + [sym__unparenthesized_print_output_expression] = STATE(5155), + [sym__print_output_call_binary_expression] = STATE(5155), + [sym__print_output_call_operand] = STATE(10989), + [sym__print_output_member_comparison_expression] = STATE(5102), + [sym__print_output_call_member_expression] = STATE(803), + [sym__print_output_call_expression] = STATE(2585), + [sym__print_output_qualified_callable] = STATE(13142), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10990), + [sym_comparison_expression] = STATE(4734), + [sym__comparison_operand] = STATE(11361), + [sym_logical_value_expression] = STATE(4735), + [sym__callable_expression] = STATE(13150), + [sym_call_expression] = STATE(10294), + [sym_new_expression] = STATE(1339), + [sym_addressof_expression] = STATE(1339), + [sym_type_of_expression] = STATE(1339), + [sym_member_expression] = STATE(1340), + [sym_qualified_member_expression] = STATE(1221), + [sym_implicit_member_expression] = STATE(1221), + [sym_parenthesized_expression] = STATE(1341), + [sym_binary_expression] = STATE(1342), + [sym_unary_expression] = STATE(2631), + [sym__signed_unary_expression] = STATE(1313), + [sym__literal] = STATE(1339), + [sym_boolean_literal] = STATE(1339), + [sym_file_number_literal] = STATE(1339), + [sym_identifier] = ACTIONS(4949), + [sym_newline] = ACTIONS(4112), + [anon_sym_COLON] = ACTIONS(4112), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4114), + [aux_sym_frm_property_statement_token1] = ACTIONS(4951), + [anon_sym_DOT] = ACTIONS(4715), + [anon_sym_BANG] = ACTIONS(4717), + [aux_sym__attribute_identifier_token1] = ACTIONS(4114), + [aux_sym_option_statement_token3] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4114), + [aux_sym_preprocessor_const_token1] = ACTIONS(4114), + [sym_static_modifier] = ACTIONS(4114), + [sym__dim_keyword] = ACTIONS(4114), + [sym__redim_keyword] = ACTIONS(4114), + [aux_sym_get_accessor_token1] = ACTIONS(4114), + [aux_sym_set_accessor_token1] = ACTIONS(4114), + [aux_sym_const_declaration_token1] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4953), + [aux_sym_as_type_clause_token2] = ACTIONS(4725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4955), + [aux_sym_visibility_token1] = ACTIONS(4114), + [aux_sym_visibility_token2] = ACTIONS(4114), + [aux_sym_elseif_fragment_token1] = ACTIONS(4114), + [aux_sym_else_fragment_token1] = ACTIONS(4114), + [aux_sym_select_statement_token1] = ACTIONS(4114), + [aux_sym__for_header_token1] = ACTIONS(4114), + [aux_sym_do_statement_token1] = ACTIONS(4114), + [aux_sym_do_condition_token1] = ACTIONS(4114), + [aux_sym_while_statement_token1] = ACTIONS(4114), + [aux_sym_with_statement_token1] = ACTIONS(4114), + [aux_sym_exit_statement_token1] = ACTIONS(4114), + [sym_end_statement] = ACTIONS(4112), + [aux_sym_on_goto_statement_token1] = ACTIONS(4114), + [aux_sym_on_goto_statement_token2] = ACTIONS(4114), + [aux_sym_on_error_statement_token2] = ACTIONS(4114), + [sym__ambiguous_redim_statement] = ACTIONS(4112), + [aux_sym_erase_statement_token1] = ACTIONS(4114), + [aux_sym_open_statement_token1] = ACTIONS(4114), + [aux_sym_file_mode_token2] = ACTIONS(4114), + [aux_sym_file_access_token2] = ACTIONS(4114), + [aux_sym_file_lock_token2] = ACTIONS(4114), + [aux_sym_print_statement_token1] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4729), + [anon_sym_DASH] = ACTIONS(4731), + [anon_sym_QMARK] = ACTIONS(4112), + [aux_sym_close_statement_token1] = ACTIONS(4114), + [aux_sym_put_statement_token1] = ACTIONS(4114), + [aux_sym_unlock_statement_token1] = ACTIONS(4114), + [aux_sym_seek_statement_token1] = ACTIONS(4114), + [sym_reset_statement] = ACTIONS(4114), + [aux_sym_raise_event_statement_token1] = ACTIONS(4114), + [sym_stop_statement] = ACTIONS(4114), + [sym_beep_statement] = ACTIONS(4114), + [aux_sym_unload_statement_token1] = ACTIONS(4114), + [aux_sym_def_type_statement_token1] = ACTIONS(4114), + [aux_sym_def_type_statement_token2] = ACTIONS(4114), + [aux_sym_def_type_statement_token3] = ACTIONS(4114), + [aux_sym_def_type_statement_token4] = ACTIONS(4114), + [aux_sym_def_type_statement_token5] = ACTIONS(4114), + [aux_sym_def_type_statement_token6] = ACTIONS(4114), + [aux_sym_def_type_statement_token7] = ACTIONS(4114), + [aux_sym_def_type_statement_token8] = ACTIONS(4114), + [aux_sym_def_type_statement_token9] = ACTIONS(4114), + [aux_sym_def_type_statement_token10] = ACTIONS(4114), + [aux_sym_def_type_statement_token11] = ACTIONS(4114), + [aux_sym_def_type_statement_token12] = ACTIONS(4114), + [aux_sym_def_type_statement_token13] = ACTIONS(4114), + [aux_sym_def_type_statement_token14] = ACTIONS(4114), + [aux_sym_call_statement_token1] = ACTIONS(4114), + [sym__ambiguous_call_statement] = ACTIONS(4114), + [aux_sym_addressof_expression_token1] = ACTIONS(4733), + [aux_sym_type_of_expression_token1] = ACTIONS(4735), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(4957), + [sym_number_literal] = ACTIONS(4957), + [aux_sym_boolean_literal_token1] = ACTIONS(4739), + [aux_sym_boolean_literal_token2] = ACTIONS(4739), + [sym_nothing_literal] = ACTIONS(4959), + [sym_null_literal] = ACTIONS(4959), + [sym_empty_literal] = ACTIONS(4959), + [sym_date_literal] = ACTIONS(4957), + [anon_sym_POUND] = ACTIONS(4743), + }, + [STATE(630)] = { + [sym__print_output_expression] = STATE(5155), + [sym__unparenthesized_print_output_expression] = STATE(5155), + [sym__print_output_call_binary_expression] = STATE(5155), + [sym__print_output_call_operand] = STATE(10989), + [sym__print_output_member_comparison_expression] = STATE(5102), + [sym__print_output_call_member_expression] = STATE(803), + [sym__print_output_call_expression] = STATE(2585), + [sym__print_output_qualified_callable] = STATE(13142), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10990), + [sym_comparison_expression] = STATE(4734), + [sym__comparison_operand] = STATE(11361), + [sym_logical_value_expression] = STATE(4735), + [sym__callable_expression] = STATE(13150), + [sym_call_expression] = STATE(10294), + [sym_new_expression] = STATE(1339), + [sym_addressof_expression] = STATE(1339), + [sym_type_of_expression] = STATE(1339), + [sym_member_expression] = STATE(1340), + [sym_qualified_member_expression] = STATE(1221), + [sym_implicit_member_expression] = STATE(1221), + [sym_parenthesized_expression] = STATE(1341), + [sym_binary_expression] = STATE(1342), + [sym_unary_expression] = STATE(2631), + [sym__signed_unary_expression] = STATE(1313), + [sym__literal] = STATE(1339), + [sym_boolean_literal] = STATE(1339), + [sym_file_number_literal] = STATE(1339), + [sym_identifier] = ACTIONS(4949), + [sym_newline] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(4104), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4106), + [aux_sym_frm_property_statement_token1] = ACTIONS(4951), + [anon_sym_DOT] = ACTIONS(4715), + [anon_sym_BANG] = ACTIONS(4717), + [aux_sym__attribute_identifier_token1] = ACTIONS(4106), + [aux_sym_option_statement_token3] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4106), + [aux_sym_preprocessor_const_token1] = ACTIONS(4106), + [sym_static_modifier] = ACTIONS(4106), + [sym__dim_keyword] = ACTIONS(4106), + [sym__redim_keyword] = ACTIONS(4106), + [aux_sym_get_accessor_token1] = ACTIONS(4106), + [aux_sym_set_accessor_token1] = ACTIONS(4106), + [aux_sym_const_declaration_token1] = ACTIONS(4106), + [anon_sym_LPAREN] = ACTIONS(4953), + [aux_sym_as_type_clause_token2] = ACTIONS(4725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4955), + [aux_sym_visibility_token1] = ACTIONS(4106), + [aux_sym_visibility_token2] = ACTIONS(4106), + [aux_sym_elseif_fragment_token1] = ACTIONS(4106), + [aux_sym_else_fragment_token1] = ACTIONS(4106), + [aux_sym_select_statement_token1] = ACTIONS(4106), + [aux_sym__for_header_token1] = ACTIONS(4106), + [aux_sym_do_statement_token1] = ACTIONS(4106), + [aux_sym_do_condition_token1] = ACTIONS(4106), + [aux_sym_while_statement_token1] = ACTIONS(4106), + [aux_sym_with_statement_token1] = ACTIONS(4106), + [aux_sym_exit_statement_token1] = ACTIONS(4106), + [sym_end_statement] = ACTIONS(4104), + [aux_sym_on_goto_statement_token1] = ACTIONS(4106), + [aux_sym_on_goto_statement_token2] = ACTIONS(4106), + [aux_sym_on_error_statement_token2] = ACTIONS(4106), + [sym__ambiguous_redim_statement] = ACTIONS(4104), + [aux_sym_erase_statement_token1] = ACTIONS(4106), + [aux_sym_open_statement_token1] = ACTIONS(4106), + [aux_sym_file_mode_token2] = ACTIONS(4106), + [aux_sym_file_access_token2] = ACTIONS(4106), + [aux_sym_file_lock_token2] = ACTIONS(4106), + [aux_sym_print_statement_token1] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(4729), + [anon_sym_DASH] = ACTIONS(4731), + [anon_sym_QMARK] = ACTIONS(4104), + [aux_sym_close_statement_token1] = ACTIONS(4106), + [aux_sym_put_statement_token1] = ACTIONS(4106), + [aux_sym_unlock_statement_token1] = ACTIONS(4106), + [aux_sym_seek_statement_token1] = ACTIONS(4106), + [sym_reset_statement] = ACTIONS(4106), + [aux_sym_raise_event_statement_token1] = ACTIONS(4106), + [sym_stop_statement] = ACTIONS(4106), + [sym_beep_statement] = ACTIONS(4106), + [aux_sym_unload_statement_token1] = ACTIONS(4106), + [aux_sym_def_type_statement_token1] = ACTIONS(4106), + [aux_sym_def_type_statement_token2] = ACTIONS(4106), + [aux_sym_def_type_statement_token3] = ACTIONS(4106), + [aux_sym_def_type_statement_token4] = ACTIONS(4106), + [aux_sym_def_type_statement_token5] = ACTIONS(4106), + [aux_sym_def_type_statement_token6] = ACTIONS(4106), + [aux_sym_def_type_statement_token7] = ACTIONS(4106), + [aux_sym_def_type_statement_token8] = ACTIONS(4106), + [aux_sym_def_type_statement_token9] = ACTIONS(4106), + [aux_sym_def_type_statement_token10] = ACTIONS(4106), + [aux_sym_def_type_statement_token11] = ACTIONS(4106), + [aux_sym_def_type_statement_token12] = ACTIONS(4106), + [aux_sym_def_type_statement_token13] = ACTIONS(4106), + [aux_sym_def_type_statement_token14] = ACTIONS(4106), + [aux_sym_call_statement_token1] = ACTIONS(4106), + [sym__ambiguous_call_statement] = ACTIONS(4106), + [aux_sym_addressof_expression_token1] = ACTIONS(4733), + [aux_sym_type_of_expression_token1] = ACTIONS(4735), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(4957), + [sym_number_literal] = ACTIONS(4957), + [aux_sym_boolean_literal_token1] = ACTIONS(4739), + [aux_sym_boolean_literal_token2] = ACTIONS(4739), + [sym_nothing_literal] = ACTIONS(4959), + [sym_null_literal] = ACTIONS(4959), + [sym_empty_literal] = ACTIONS(4959), + [sym_date_literal] = ACTIONS(4957), + [anon_sym_POUND] = ACTIONS(4743), + }, + [STATE(631)] = { + [sym__print_output_expression] = STATE(5155), + [sym__unparenthesized_print_output_expression] = STATE(5155), + [sym__print_output_call_binary_expression] = STATE(5155), + [sym__print_output_call_operand] = STATE(10989), + [sym__print_output_member_comparison_expression] = STATE(5102), + [sym__print_output_call_member_expression] = STATE(803), + [sym__print_output_call_expression] = STATE(2585), + [sym__print_output_qualified_callable] = STATE(13142), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10990), + [sym_comparison_expression] = STATE(4734), + [sym__comparison_operand] = STATE(11361), + [sym_logical_value_expression] = STATE(4735), + [sym__callable_expression] = STATE(13150), + [sym_call_expression] = STATE(10294), + [sym_new_expression] = STATE(1339), + [sym_addressof_expression] = STATE(1339), + [sym_type_of_expression] = STATE(1339), + [sym_member_expression] = STATE(1340), + [sym_qualified_member_expression] = STATE(1221), + [sym_implicit_member_expression] = STATE(1221), + [sym_parenthesized_expression] = STATE(1341), + [sym_binary_expression] = STATE(1342), + [sym_unary_expression] = STATE(2631), + [sym__signed_unary_expression] = STATE(1313), + [sym__literal] = STATE(1339), + [sym_boolean_literal] = STATE(1339), + [sym_file_number_literal] = STATE(1339), + [sym_identifier] = ACTIONS(4949), + [sym_newline] = ACTIONS(4100), + [anon_sym_COLON] = ACTIONS(4100), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4102), + [aux_sym_frm_property_statement_token1] = ACTIONS(4951), + [anon_sym_DOT] = ACTIONS(4715), + [anon_sym_BANG] = ACTIONS(4717), + [aux_sym__attribute_identifier_token1] = ACTIONS(4102), + [aux_sym_option_statement_token3] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4102), + [aux_sym_preprocessor_const_token1] = ACTIONS(4102), + [sym_static_modifier] = ACTIONS(4102), + [sym__dim_keyword] = ACTIONS(4102), + [sym__redim_keyword] = ACTIONS(4102), + [aux_sym_get_accessor_token1] = ACTIONS(4102), + [aux_sym_set_accessor_token1] = ACTIONS(4102), + [aux_sym_const_declaration_token1] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(4953), + [aux_sym_as_type_clause_token2] = ACTIONS(4725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4955), + [aux_sym_visibility_token1] = ACTIONS(4102), + [aux_sym_visibility_token2] = ACTIONS(4102), + [aux_sym_elseif_fragment_token1] = ACTIONS(4102), + [aux_sym_else_fragment_token1] = ACTIONS(4102), + [aux_sym_select_statement_token1] = ACTIONS(4102), + [aux_sym__for_header_token1] = ACTIONS(4102), + [aux_sym_do_statement_token1] = ACTIONS(4102), + [aux_sym_do_condition_token1] = ACTIONS(4102), + [aux_sym_while_statement_token1] = ACTIONS(4102), + [aux_sym_with_statement_token1] = ACTIONS(4102), + [aux_sym_exit_statement_token1] = ACTIONS(4102), + [sym_end_statement] = ACTIONS(4100), + [aux_sym_on_goto_statement_token1] = ACTIONS(4102), + [aux_sym_on_goto_statement_token2] = ACTIONS(4102), + [aux_sym_on_error_statement_token2] = ACTIONS(4102), + [sym__ambiguous_redim_statement] = ACTIONS(4100), + [aux_sym_erase_statement_token1] = ACTIONS(4102), + [aux_sym_open_statement_token1] = ACTIONS(4102), + [aux_sym_file_mode_token2] = ACTIONS(4102), + [aux_sym_file_access_token2] = ACTIONS(4102), + [aux_sym_file_lock_token2] = ACTIONS(4102), + [aux_sym_print_statement_token1] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4729), + [anon_sym_DASH] = ACTIONS(4731), + [anon_sym_QMARK] = ACTIONS(4100), + [aux_sym_close_statement_token1] = ACTIONS(4102), + [aux_sym_put_statement_token1] = ACTIONS(4102), + [aux_sym_unlock_statement_token1] = ACTIONS(4102), + [aux_sym_seek_statement_token1] = ACTIONS(4102), + [sym_reset_statement] = ACTIONS(4102), + [aux_sym_raise_event_statement_token1] = ACTIONS(4102), + [sym_stop_statement] = ACTIONS(4102), + [sym_beep_statement] = ACTIONS(4102), + [aux_sym_unload_statement_token1] = ACTIONS(4102), + [aux_sym_def_type_statement_token1] = ACTIONS(4102), + [aux_sym_def_type_statement_token2] = ACTIONS(4102), + [aux_sym_def_type_statement_token3] = ACTIONS(4102), + [aux_sym_def_type_statement_token4] = ACTIONS(4102), + [aux_sym_def_type_statement_token5] = ACTIONS(4102), + [aux_sym_def_type_statement_token6] = ACTIONS(4102), + [aux_sym_def_type_statement_token7] = ACTIONS(4102), + [aux_sym_def_type_statement_token8] = ACTIONS(4102), + [aux_sym_def_type_statement_token9] = ACTIONS(4102), + [aux_sym_def_type_statement_token10] = ACTIONS(4102), + [aux_sym_def_type_statement_token11] = ACTIONS(4102), + [aux_sym_def_type_statement_token12] = ACTIONS(4102), + [aux_sym_def_type_statement_token13] = ACTIONS(4102), + [aux_sym_def_type_statement_token14] = ACTIONS(4102), + [aux_sym_call_statement_token1] = ACTIONS(4102), + [sym__ambiguous_call_statement] = ACTIONS(4102), + [aux_sym_addressof_expression_token1] = ACTIONS(4733), + [aux_sym_type_of_expression_token1] = ACTIONS(4735), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(4957), + [sym_number_literal] = ACTIONS(4957), + [aux_sym_boolean_literal_token1] = ACTIONS(4739), + [aux_sym_boolean_literal_token2] = ACTIONS(4739), + [sym_nothing_literal] = ACTIONS(4959), + [sym_null_literal] = ACTIONS(4959), + [sym_empty_literal] = ACTIONS(4959), + [sym_date_literal] = ACTIONS(4957), + [anon_sym_POUND] = ACTIONS(4743), + }, + [STATE(632)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_declaration_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_enum_declaration_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4601), + [aux_sym_declare_function_statement_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [aux_sym__property_get_header_token1] = ACTIONS(4601), + [aux_sym_event_declaration_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(633)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(634)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_declaration_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_enum_declaration_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4609), + [aux_sym_declare_function_statement_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [aux_sym__property_get_header_token1] = ACTIONS(4609), + [aux_sym_event_declaration_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(635)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(636)] = { + [sym__argument] = STATE(4847), + [sym_named_argument] = STATE(4847), + [sym_byval_argument] = STATE(4847), + [sym__primary_expression] = STATE(830), + [sym__expression] = STATE(2340), + [sym_comparison_expression] = STATE(4594), + [sym__comparison_operand] = STATE(11302), + [sym_logical_value_expression] = STATE(4594), + [sym__callable_expression] = STATE(13462), + [sym_call_expression] = STATE(777), + [sym_new_expression] = STATE(830), + [sym_addressof_expression] = STATE(830), + [sym_type_of_expression] = STATE(830), + [sym_member_expression] = STATE(814), + [sym_qualified_member_expression] = STATE(865), + [sym_implicit_member_expression] = STATE(865), + [sym_parenthesized_expression] = STATE(830), + [sym_binary_expression] = STATE(830), + [sym_unary_expression] = STATE(2340), + [sym__signed_unary_expression] = STATE(837), + [sym__literal] = STATE(830), + [sym_boolean_literal] = STATE(830), + [sym_file_number_literal] = STATE(830), + [aux_sym__argument_sequence_repeat2] = STATE(4848), + [sym_identifier] = ACTIONS(4260), + [sym_newline] = ACTIONS(4170), + [anon_sym_COLON] = ACTIONS(4170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4172), + [aux_sym_frm_property_statement_token1] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4266), + [aux_sym__attribute_identifier_token1] = ACTIONS(4172), + [aux_sym_option_statement_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4172), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4172), + [aux_sym_preprocessor_const_token1] = ACTIONS(4172), + [sym_static_modifier] = ACTIONS(4172), + [sym__dim_keyword] = ACTIONS(4172), + [sym__redim_keyword] = ACTIONS(4172), + [aux_sym_byval_modifier_token1] = ACTIONS(4268), + [aux_sym_get_accessor_token1] = ACTIONS(4172), + [aux_sym_set_accessor_token1] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(5034), + [aux_sym_const_declaration_token1] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4383), + [aux_sym_as_type_clause_token2] = ACTIONS(4274), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4276), + [aux_sym_visibility_token1] = ACTIONS(4172), + [aux_sym_visibility_token2] = ACTIONS(4172), + [aux_sym_elseif_fragment_token1] = ACTIONS(4172), + [aux_sym_else_fragment_token1] = ACTIONS(4172), + [aux_sym_select_statement_token1] = ACTIONS(4172), + [aux_sym__for_header_token1] = ACTIONS(4172), + [aux_sym_do_statement_token1] = ACTIONS(4172), + [aux_sym_do_condition_token1] = ACTIONS(4172), + [aux_sym_with_statement_token1] = ACTIONS(4172), + [aux_sym_exit_statement_token1] = ACTIONS(4172), + [sym_end_statement] = ACTIONS(4170), + [aux_sym_on_goto_statement_token1] = ACTIONS(4172), + [aux_sym_on_goto_statement_token2] = ACTIONS(4172), + [aux_sym_on_error_statement_token2] = ACTIONS(4172), + [sym__ambiguous_redim_statement] = ACTIONS(4170), + [aux_sym_erase_statement_token1] = ACTIONS(4172), + [aux_sym_open_statement_token1] = ACTIONS(4172), + [aux_sym_file_mode_token2] = ACTIONS(4172), + [aux_sym_file_access_token2] = ACTIONS(4172), + [aux_sym_file_lock_token2] = ACTIONS(4172), + [aux_sym_print_statement_token1] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4170), + [aux_sym_close_statement_token1] = ACTIONS(4172), + [aux_sym_put_statement_token1] = ACTIONS(4172), + [aux_sym_unlock_statement_token1] = ACTIONS(4172), + [aux_sym_seek_statement_token1] = ACTIONS(4172), + [sym_reset_statement] = ACTIONS(4172), + [aux_sym_raise_event_statement_token1] = ACTIONS(4172), + [sym_stop_statement] = ACTIONS(4172), + [sym_beep_statement] = ACTIONS(4172), + [aux_sym_unload_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token2] = ACTIONS(4172), + [aux_sym_def_type_statement_token3] = ACTIONS(4172), + [aux_sym_def_type_statement_token4] = ACTIONS(4172), + [aux_sym_def_type_statement_token5] = ACTIONS(4172), + [aux_sym_def_type_statement_token6] = ACTIONS(4172), + [aux_sym_def_type_statement_token7] = ACTIONS(4172), + [aux_sym_def_type_statement_token8] = ACTIONS(4172), + [aux_sym_def_type_statement_token9] = ACTIONS(4172), + [aux_sym_def_type_statement_token10] = ACTIONS(4172), + [aux_sym_def_type_statement_token11] = ACTIONS(4172), + [aux_sym_def_type_statement_token12] = ACTIONS(4172), + [aux_sym_def_type_statement_token13] = ACTIONS(4172), + [aux_sym_def_type_statement_token14] = ACTIONS(4172), + [aux_sym_call_statement_token1] = ACTIONS(4172), + [sym__ambiguous_call_statement] = ACTIONS(4172), + [aux_sym_addressof_expression_token1] = ACTIONS(4282), + [aux_sym_type_of_expression_token1] = ACTIONS(4284), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(4286), + [sym_number_literal] = ACTIONS(4286), + [aux_sym_boolean_literal_token1] = ACTIONS(4288), + [aux_sym_boolean_literal_token2] = ACTIONS(4288), + [sym_nothing_literal] = ACTIONS(4290), + [sym_null_literal] = ACTIONS(4290), + [sym_empty_literal] = ACTIONS(4290), + [sym_date_literal] = ACTIONS(4286), + [anon_sym_POUND] = ACTIONS(4292), + }, + [STATE(637)] = { + [sym_output_list] = STATE(7131), + [sym__print_output_expression] = STATE(4957), + [sym__unparenthesized_print_output_expression] = STATE(4957), + [sym__print_output_call_binary_expression] = STATE(4957), + [sym__print_output_call_operand] = STATE(10995), + [sym__print_output_member_comparison_expression] = STATE(5840), + [sym__print_output_call_member_expression] = STATE(997), + [sym__print_output_call_expression] = STATE(2996), + [sym__print_output_qualified_callable] = STATE(13646), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10979), + [sym_comparison_expression] = STATE(5075), + [sym__comparison_operand] = STATE(11430), + [sym_logical_value_expression] = STATE(4906), + [sym__callable_expression] = STATE(13260), + [sym_call_expression] = STATE(10300), + [sym_new_expression] = STATE(1479), + [sym_addressof_expression] = STATE(1479), + [sym_type_of_expression] = STATE(1479), + [sym_member_expression] = STATE(1524), + [sym_qualified_member_expression] = STATE(1585), + [sym_implicit_member_expression] = STATE(1585), + [sym_parenthesized_expression] = STATE(1570), + [sym_binary_expression] = STATE(1573), + [sym_unary_expression] = STATE(3301), + [sym__signed_unary_expression] = STATE(1674), + [sym__literal] = STATE(1479), + [sym_boolean_literal] = STATE(1479), + [sym_file_number_literal] = STATE(1479), + [sym_identifier] = ACTIONS(5022), + [sym_newline] = ACTIONS(4086), + [anon_sym_COLON] = ACTIONS(4086), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4088), + [aux_sym_frm_property_statement_token1] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(4899), + [anon_sym_BANG] = ACTIONS(4901), + [aux_sym__attribute_identifier_token1] = ACTIONS(4088), + [aux_sym_option_statement_token3] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4088), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4088), + [aux_sym_preprocessor_const_token1] = ACTIONS(4088), + [sym_static_modifier] = ACTIONS(4088), + [sym__dim_keyword] = ACTIONS(4088), + [sym__redim_keyword] = ACTIONS(4088), + [aux_sym_get_accessor_token1] = ACTIONS(4088), + [aux_sym_set_accessor_token1] = ACTIONS(4088), + [aux_sym_const_declaration_token1] = ACTIONS(4088), + [anon_sym_LPAREN] = ACTIONS(5026), + [aux_sym_as_type_clause_token2] = ACTIONS(4909), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5028), + [aux_sym_visibility_token1] = ACTIONS(4088), + [aux_sym_visibility_token2] = ACTIONS(4088), + [aux_sym_elseif_fragment_token1] = ACTIONS(4088), + [aux_sym_else_fragment_token1] = ACTIONS(4088), + [aux_sym_select_statement_token1] = ACTIONS(4088), + [aux_sym__for_header_token1] = ACTIONS(4088), + [aux_sym_do_statement_token1] = ACTIONS(4088), + [aux_sym_do_condition_token1] = ACTIONS(4088), + [aux_sym_with_statement_token1] = ACTIONS(4088), + [aux_sym_exit_statement_token1] = ACTIONS(4088), + [sym_end_statement] = ACTIONS(4086), + [aux_sym_on_goto_statement_token1] = ACTIONS(4088), + [aux_sym_on_goto_statement_token2] = ACTIONS(4088), + [aux_sym_on_error_statement_token2] = ACTIONS(4088), + [sym__ambiguous_redim_statement] = ACTIONS(4086), + [aux_sym_erase_statement_token1] = ACTIONS(4088), + [aux_sym_open_statement_token1] = ACTIONS(4088), + [aux_sym_file_mode_token2] = ACTIONS(4088), + [aux_sym_file_access_token2] = ACTIONS(4088), + [aux_sym_file_lock_token2] = ACTIONS(4088), + [aux_sym_print_statement_token1] = ACTIONS(4088), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_QMARK] = ACTIONS(4086), + [aux_sym_close_statement_token1] = ACTIONS(4088), + [aux_sym_put_statement_token1] = ACTIONS(4088), + [aux_sym_unlock_statement_token1] = ACTIONS(4088), + [aux_sym_seek_statement_token1] = ACTIONS(4088), + [sym_reset_statement] = ACTIONS(4088), + [aux_sym_raise_event_statement_token1] = ACTIONS(4088), + [sym_stop_statement] = ACTIONS(4088), + [sym_beep_statement] = ACTIONS(4088), + [aux_sym_unload_statement_token1] = ACTIONS(4088), + [aux_sym_def_type_statement_token1] = ACTIONS(4088), + [aux_sym_def_type_statement_token2] = ACTIONS(4088), + [aux_sym_def_type_statement_token3] = ACTIONS(4088), + [aux_sym_def_type_statement_token4] = ACTIONS(4088), + [aux_sym_def_type_statement_token5] = ACTIONS(4088), + [aux_sym_def_type_statement_token6] = ACTIONS(4088), + [aux_sym_def_type_statement_token7] = ACTIONS(4088), + [aux_sym_def_type_statement_token8] = ACTIONS(4088), + [aux_sym_def_type_statement_token9] = ACTIONS(4088), + [aux_sym_def_type_statement_token10] = ACTIONS(4088), + [aux_sym_def_type_statement_token11] = ACTIONS(4088), + [aux_sym_def_type_statement_token12] = ACTIONS(4088), + [aux_sym_def_type_statement_token13] = ACTIONS(4088), + [aux_sym_def_type_statement_token14] = ACTIONS(4088), + [aux_sym_call_statement_token1] = ACTIONS(4088), + [sym__ambiguous_call_statement] = ACTIONS(4088), + [aux_sym_addressof_expression_token1] = ACTIONS(4917), + [aux_sym_type_of_expression_token1] = ACTIONS(4919), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(5030), + [sym_number_literal] = ACTIONS(5030), + [aux_sym_boolean_literal_token1] = ACTIONS(4923), + [aux_sym_boolean_literal_token2] = ACTIONS(4923), + [sym_nothing_literal] = ACTIONS(5032), + [sym_null_literal] = ACTIONS(5032), + [sym_empty_literal] = ACTIONS(5032), + [sym_date_literal] = ACTIONS(5030), + [anon_sym_POUND] = ACTIONS(4927), + }, + [STATE(638)] = { + [sym_identifier] = ACTIONS(4759), + [sym_newline] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4761), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4759), + [aux_sym_frm_property_statement_token1] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4761), + [aux_sym__attribute_identifier_token1] = ACTIONS(4759), + [aux_sym_option_statement_token3] = ACTIONS(4759), + [aux_sym_type_declaration_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4759), + [aux_sym_enum_declaration_token1] = ACTIONS(4759), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4759), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4759), + [aux_sym_declare_function_statement_token1] = ACTIONS(4759), + [aux_sym_preprocessor_const_token1] = ACTIONS(4759), + [aux_sym__property_get_header_token1] = ACTIONS(4759), + [aux_sym_event_declaration_token1] = ACTIONS(4759), + [sym_static_modifier] = ACTIONS(4759), + [sym__dim_keyword] = ACTIONS(4759), + [sym__redim_keyword] = ACTIONS(4759), + [aux_sym_get_accessor_token1] = ACTIONS(4759), + [aux_sym_set_accessor_token1] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [aux_sym_const_declaration_token1] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4763), + [aux_sym_as_type_clause_token2] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4759), + [aux_sym_visibility_token1] = ACTIONS(4759), + [aux_sym_visibility_token2] = ACTIONS(4759), + [aux_sym_elseif_fragment_token1] = ACTIONS(4759), + [aux_sym_else_fragment_token1] = ACTIONS(4759), + [aux_sym_select_statement_token1] = ACTIONS(4759), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4759), + [aux_sym_do_statement_token1] = ACTIONS(4759), + [aux_sym_do_condition_token1] = ACTIONS(4759), + [aux_sym_with_statement_token1] = ACTIONS(4759), + [aux_sym_exit_statement_token1] = ACTIONS(4759), + [sym_end_statement] = ACTIONS(4761), + [aux_sym_on_goto_statement_token1] = ACTIONS(4759), + [aux_sym_on_goto_statement_token2] = ACTIONS(4759), + [aux_sym_on_error_statement_token2] = ACTIONS(4759), + [sym__ambiguous_redim_statement] = ACTIONS(4761), + [aux_sym_erase_statement_token1] = ACTIONS(4759), + [aux_sym_open_statement_token1] = ACTIONS(4759), + [aux_sym_file_mode_token2] = ACTIONS(4759), + [aux_sym_file_access_token2] = ACTIONS(4759), + [aux_sym_file_lock_token2] = ACTIONS(4759), + [aux_sym_print_statement_token1] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_QMARK] = ACTIONS(4761), + [aux_sym_close_statement_token1] = ACTIONS(4759), + [aux_sym_put_statement_token1] = ACTIONS(4759), + [aux_sym_unlock_statement_token1] = ACTIONS(4759), + [aux_sym_seek_statement_token1] = ACTIONS(4759), + [sym_reset_statement] = ACTIONS(4759), + [aux_sym_raise_event_statement_token1] = ACTIONS(4759), + [sym_stop_statement] = ACTIONS(4759), + [sym_beep_statement] = ACTIONS(4759), + [aux_sym_unload_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token2] = ACTIONS(4759), + [aux_sym_def_type_statement_token3] = ACTIONS(4759), + [aux_sym_def_type_statement_token4] = ACTIONS(4759), + [aux_sym_def_type_statement_token5] = ACTIONS(4759), + [aux_sym_def_type_statement_token6] = ACTIONS(4759), + [aux_sym_def_type_statement_token7] = ACTIONS(4759), + [aux_sym_def_type_statement_token8] = ACTIONS(4759), + [aux_sym_def_type_statement_token9] = ACTIONS(4759), + [aux_sym_def_type_statement_token10] = ACTIONS(4759), + [aux_sym_def_type_statement_token11] = ACTIONS(4759), + [aux_sym_def_type_statement_token12] = ACTIONS(4759), + [aux_sym_def_type_statement_token13] = ACTIONS(4759), + [aux_sym_def_type_statement_token14] = ACTIONS(4759), + [aux_sym_call_statement_token1] = ACTIONS(4759), + [sym__ambiguous_call_statement] = ACTIONS(4759), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4759), + [aux_sym_type_of_expression_token1] = ACTIONS(4759), + [aux_sym_unary_expression_token1] = ACTIONS(4759), + [sym_string_literal] = ACTIONS(4761), + [sym_number_literal] = ACTIONS(4761), + [aux_sym_boolean_literal_token1] = ACTIONS(4759), + [aux_sym_boolean_literal_token2] = ACTIONS(4759), + [sym_nothing_literal] = ACTIONS(4759), + [sym_null_literal] = ACTIONS(4759), + [sym_empty_literal] = ACTIONS(4759), + [sym_date_literal] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(4759), + }, + [STATE(639)] = { + [sym_identifier] = ACTIONS(4759), + [sym_newline] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4761), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4759), + [aux_sym_frm_property_statement_token1] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4761), + [aux_sym__attribute_identifier_token1] = ACTIONS(4759), + [aux_sym_option_statement_token3] = ACTIONS(4759), + [aux_sym_type_declaration_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4759), + [aux_sym_enum_declaration_token1] = ACTIONS(4759), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4759), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4759), + [aux_sym_declare_function_statement_token1] = ACTIONS(4759), + [aux_sym_preprocessor_const_token1] = ACTIONS(4759), + [aux_sym__property_get_header_token1] = ACTIONS(4759), + [aux_sym_event_declaration_token1] = ACTIONS(4759), + [sym_static_modifier] = ACTIONS(4759), + [sym__dim_keyword] = ACTIONS(4759), + [sym__redim_keyword] = ACTIONS(4759), + [aux_sym_get_accessor_token1] = ACTIONS(4759), + [aux_sym_set_accessor_token1] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [aux_sym_const_declaration_token1] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4761), + [aux_sym_as_type_clause_token2] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4759), + [aux_sym_visibility_token1] = ACTIONS(4759), + [aux_sym_visibility_token2] = ACTIONS(4759), + [aux_sym_elseif_fragment_token1] = ACTIONS(4759), + [aux_sym_else_fragment_token1] = ACTIONS(4759), + [aux_sym_select_statement_token1] = ACTIONS(4759), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4759), + [aux_sym_do_statement_token1] = ACTIONS(4759), + [aux_sym_do_condition_token1] = ACTIONS(4759), + [aux_sym_with_statement_token1] = ACTIONS(4759), + [aux_sym_exit_statement_token1] = ACTIONS(4759), + [sym_end_statement] = ACTIONS(4761), + [aux_sym_on_goto_statement_token1] = ACTIONS(4759), + [aux_sym_on_goto_statement_token2] = ACTIONS(4759), + [aux_sym_on_error_statement_token2] = ACTIONS(4759), + [sym__ambiguous_redim_statement] = ACTIONS(4761), + [aux_sym_erase_statement_token1] = ACTIONS(4759), + [aux_sym_open_statement_token1] = ACTIONS(4759), + [aux_sym_file_mode_token2] = ACTIONS(4759), + [aux_sym_file_access_token2] = ACTIONS(4759), + [aux_sym_file_lock_token2] = ACTIONS(4759), + [aux_sym_print_statement_token1] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_QMARK] = ACTIONS(4761), + [aux_sym_close_statement_token1] = ACTIONS(4759), + [aux_sym_put_statement_token1] = ACTIONS(4759), + [aux_sym_unlock_statement_token1] = ACTIONS(4759), + [aux_sym_seek_statement_token1] = ACTIONS(4759), + [sym_reset_statement] = ACTIONS(4759), + [aux_sym_raise_event_statement_token1] = ACTIONS(4759), + [sym_stop_statement] = ACTIONS(4759), + [sym_beep_statement] = ACTIONS(4759), + [aux_sym_unload_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token2] = ACTIONS(4759), + [aux_sym_def_type_statement_token3] = ACTIONS(4759), + [aux_sym_def_type_statement_token4] = ACTIONS(4759), + [aux_sym_def_type_statement_token5] = ACTIONS(4759), + [aux_sym_def_type_statement_token6] = ACTIONS(4759), + [aux_sym_def_type_statement_token7] = ACTIONS(4759), + [aux_sym_def_type_statement_token8] = ACTIONS(4759), + [aux_sym_def_type_statement_token9] = ACTIONS(4759), + [aux_sym_def_type_statement_token10] = ACTIONS(4759), + [aux_sym_def_type_statement_token11] = ACTIONS(4759), + [aux_sym_def_type_statement_token12] = ACTIONS(4759), + [aux_sym_def_type_statement_token13] = ACTIONS(4759), + [aux_sym_def_type_statement_token14] = ACTIONS(4759), + [aux_sym_call_statement_token1] = ACTIONS(4759), + [sym__ambiguous_call_statement] = ACTIONS(4759), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4759), + [aux_sym_type_of_expression_token1] = ACTIONS(4759), + [aux_sym_unary_expression_token1] = ACTIONS(4759), + [sym_string_literal] = ACTIONS(4761), + [sym_number_literal] = ACTIONS(4761), + [aux_sym_boolean_literal_token1] = ACTIONS(4759), + [aux_sym_boolean_literal_token2] = ACTIONS(4759), + [sym_nothing_literal] = ACTIONS(4759), + [sym_null_literal] = ACTIONS(4759), + [sym_empty_literal] = ACTIONS(4759), + [sym_date_literal] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(4759), + }, + [STATE(640)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(5038), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_declaration_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_enum_declaration_token1] = ACTIONS(4410), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4410), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4410), + [aux_sym_declare_function_statement_token1] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [aux_sym__property_get_header_token1] = ACTIONS(4410), + [aux_sym_event_declaration_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4806), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(641)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4412), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_declaration_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_enum_declaration_token1] = ACTIONS(4410), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4410), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4410), + [aux_sym_declare_function_statement_token1] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [aux_sym__property_get_header_token1] = ACTIONS(4410), + [aux_sym_event_declaration_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4412), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(642)] = { + [sym_identifier] = ACTIONS(4420), + [sym_newline] = ACTIONS(4422), + [anon_sym_COLON] = ACTIONS(4422), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4420), + [aux_sym_frm_property_statement_token1] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5036), + [anon_sym_BANG] = ACTIONS(5038), + [aux_sym__attribute_identifier_token1] = ACTIONS(4420), + [aux_sym_option_statement_token3] = ACTIONS(4420), + [aux_sym_type_declaration_token1] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4420), + [aux_sym_enum_declaration_token1] = ACTIONS(4420), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4420), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4420), + [aux_sym_declare_function_statement_token1] = ACTIONS(4420), + [aux_sym_preprocessor_const_token1] = ACTIONS(4420), + [aux_sym__property_get_header_token1] = ACTIONS(4420), + [aux_sym_event_declaration_token1] = ACTIONS(4420), + [sym_static_modifier] = ACTIONS(4420), + [sym__dim_keyword] = ACTIONS(4420), + [sym__redim_keyword] = ACTIONS(4420), + [aux_sym_get_accessor_token1] = ACTIONS(4420), + [aux_sym_set_accessor_token1] = ACTIONS(4420), + [anon_sym_COMMA] = ACTIONS(4422), + [aux_sym_const_declaration_token1] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4428), + [aux_sym_as_type_clause_token2] = ACTIONS(4420), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4420), + [aux_sym_visibility_token1] = ACTIONS(4420), + [aux_sym_visibility_token2] = ACTIONS(4420), + [aux_sym_elseif_fragment_token1] = ACTIONS(4420), + [aux_sym_else_fragment_token1] = ACTIONS(4420), + [aux_sym_select_statement_token1] = ACTIONS(4420), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4420), + [aux_sym_do_statement_token1] = ACTIONS(4420), + [aux_sym_do_condition_token1] = ACTIONS(4420), + [aux_sym_with_statement_token1] = ACTIONS(4420), + [aux_sym_exit_statement_token1] = ACTIONS(4420), + [sym_end_statement] = ACTIONS(4422), + [aux_sym_on_goto_statement_token1] = ACTIONS(4420), + [aux_sym_on_goto_statement_token2] = ACTIONS(4420), + [aux_sym_on_error_statement_token2] = ACTIONS(4420), + [sym__ambiguous_redim_statement] = ACTIONS(4422), + [aux_sym_erase_statement_token1] = ACTIONS(4420), + [aux_sym_open_statement_token1] = ACTIONS(4420), + [aux_sym_file_mode_token2] = ACTIONS(4420), + [aux_sym_file_access_token2] = ACTIONS(4420), + [aux_sym_file_lock_token2] = ACTIONS(4420), + [aux_sym_print_statement_token1] = ACTIONS(4420), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4431), + [anon_sym_DASH] = ACTIONS(4434), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym_QMARK] = ACTIONS(4422), + [aux_sym_close_statement_token1] = ACTIONS(4420), + [aux_sym_put_statement_token1] = ACTIONS(4420), + [aux_sym_unlock_statement_token1] = ACTIONS(4420), + [aux_sym_seek_statement_token1] = ACTIONS(4420), + [sym_reset_statement] = ACTIONS(4420), + [aux_sym_raise_event_statement_token1] = ACTIONS(4420), + [sym_stop_statement] = ACTIONS(4420), + [sym_beep_statement] = ACTIONS(4420), + [aux_sym_unload_statement_token1] = ACTIONS(4420), + [aux_sym_def_type_statement_token1] = ACTIONS(4420), + [aux_sym_def_type_statement_token2] = ACTIONS(4420), + [aux_sym_def_type_statement_token3] = ACTIONS(4420), + [aux_sym_def_type_statement_token4] = ACTIONS(4420), + [aux_sym_def_type_statement_token5] = ACTIONS(4420), + [aux_sym_def_type_statement_token6] = ACTIONS(4420), + [aux_sym_def_type_statement_token7] = ACTIONS(4420), + [aux_sym_def_type_statement_token8] = ACTIONS(4420), + [aux_sym_def_type_statement_token9] = ACTIONS(4420), + [aux_sym_def_type_statement_token10] = ACTIONS(4420), + [aux_sym_def_type_statement_token11] = ACTIONS(4420), + [aux_sym_def_type_statement_token12] = ACTIONS(4420), + [aux_sym_def_type_statement_token13] = ACTIONS(4420), + [aux_sym_def_type_statement_token14] = ACTIONS(4420), + [aux_sym_call_statement_token1] = ACTIONS(4420), + [sym__ambiguous_call_statement] = ACTIONS(4420), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4420), + [aux_sym_type_of_expression_token1] = ACTIONS(4420), + [aux_sym_unary_expression_token1] = ACTIONS(4420), + [sym_string_literal] = ACTIONS(4422), + [sym_number_literal] = ACTIONS(4422), + [aux_sym_boolean_literal_token1] = ACTIONS(4420), + [aux_sym_boolean_literal_token2] = ACTIONS(4420), + [sym_nothing_literal] = ACTIONS(4420), + [sym_null_literal] = ACTIONS(4420), + [sym_empty_literal] = ACTIONS(4420), + [sym_date_literal] = ACTIONS(4422), + [anon_sym_POUND] = ACTIONS(4420), + }, + [STATE(643)] = { + [sym_identifier] = ACTIONS(4489), + [sym_newline] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4491), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4489), + [aux_sym_frm_property_statement_token1] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4489), + [anon_sym_BANG] = ACTIONS(4491), + [aux_sym__attribute_identifier_token1] = ACTIONS(4489), + [aux_sym_option_statement_token3] = ACTIONS(4489), + [aux_sym_type_declaration_token1] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4489), + [aux_sym_enum_declaration_token1] = ACTIONS(4489), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4489), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4489), + [aux_sym_declare_function_statement_token1] = ACTIONS(4489), + [aux_sym_preprocessor_const_token1] = ACTIONS(4489), + [aux_sym__property_get_header_token1] = ACTIONS(4489), + [aux_sym_event_declaration_token1] = ACTIONS(4489), + [sym_static_modifier] = ACTIONS(4489), + [sym__dim_keyword] = ACTIONS(4489), + [sym__redim_keyword] = ACTIONS(4489), + [aux_sym_get_accessor_token1] = ACTIONS(4489), + [aux_sym_set_accessor_token1] = ACTIONS(4489), + [anon_sym_COMMA] = ACTIONS(4491), + [aux_sym_const_declaration_token1] = ACTIONS(4489), + [anon_sym_LPAREN] = ACTIONS(4491), + [aux_sym_as_type_clause_token2] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4489), + [aux_sym_visibility_token1] = ACTIONS(4489), + [aux_sym_visibility_token2] = ACTIONS(4489), + [aux_sym_elseif_fragment_token1] = ACTIONS(4489), + [aux_sym_else_fragment_token1] = ACTIONS(4489), + [aux_sym_select_statement_token1] = ACTIONS(4489), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4489), + [aux_sym_do_statement_token1] = ACTIONS(4489), + [aux_sym_do_condition_token1] = ACTIONS(4489), + [aux_sym_with_statement_token1] = ACTIONS(4489), + [aux_sym_exit_statement_token1] = ACTIONS(4489), + [sym_end_statement] = ACTIONS(4491), + [aux_sym_on_goto_statement_token1] = ACTIONS(4489), + [aux_sym_on_goto_statement_token2] = ACTIONS(4489), + [aux_sym_on_error_statement_token2] = ACTIONS(4489), + [sym__ambiguous_redim_statement] = ACTIONS(4491), + [aux_sym_erase_statement_token1] = ACTIONS(4489), + [aux_sym_open_statement_token1] = ACTIONS(4489), + [aux_sym_file_mode_token2] = ACTIONS(4489), + [aux_sym_file_access_token2] = ACTIONS(4489), + [aux_sym_file_lock_token2] = ACTIONS(4489), + [aux_sym_print_statement_token1] = ACTIONS(4489), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4491), + [anon_sym_QMARK] = ACTIONS(4491), + [aux_sym_close_statement_token1] = ACTIONS(4489), + [aux_sym_put_statement_token1] = ACTIONS(4489), + [aux_sym_unlock_statement_token1] = ACTIONS(4489), + [aux_sym_seek_statement_token1] = ACTIONS(4489), + [sym_reset_statement] = ACTIONS(4489), + [aux_sym_raise_event_statement_token1] = ACTIONS(4489), + [sym_stop_statement] = ACTIONS(4489), + [sym_beep_statement] = ACTIONS(4489), + [aux_sym_unload_statement_token1] = ACTIONS(4489), + [aux_sym_def_type_statement_token1] = ACTIONS(4489), + [aux_sym_def_type_statement_token2] = ACTIONS(4489), + [aux_sym_def_type_statement_token3] = ACTIONS(4489), + [aux_sym_def_type_statement_token4] = ACTIONS(4489), + [aux_sym_def_type_statement_token5] = ACTIONS(4489), + [aux_sym_def_type_statement_token6] = ACTIONS(4489), + [aux_sym_def_type_statement_token7] = ACTIONS(4489), + [aux_sym_def_type_statement_token8] = ACTIONS(4489), + [aux_sym_def_type_statement_token9] = ACTIONS(4489), + [aux_sym_def_type_statement_token10] = ACTIONS(4489), + [aux_sym_def_type_statement_token11] = ACTIONS(4489), + [aux_sym_def_type_statement_token12] = ACTIONS(4489), + [aux_sym_def_type_statement_token13] = ACTIONS(4489), + [aux_sym_def_type_statement_token14] = ACTIONS(4489), + [aux_sym_call_statement_token1] = ACTIONS(4489), + [sym__ambiguous_call_statement] = ACTIONS(4489), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4489), + [aux_sym_type_of_expression_token1] = ACTIONS(4489), + [aux_sym_unary_expression_token1] = ACTIONS(4489), + [sym_string_literal] = ACTIONS(4491), + [sym_number_literal] = ACTIONS(4491), + [aux_sym_boolean_literal_token1] = ACTIONS(4489), + [aux_sym_boolean_literal_token2] = ACTIONS(4489), + [sym_nothing_literal] = ACTIONS(4489), + [sym_null_literal] = ACTIONS(4489), + [sym_empty_literal] = ACTIONS(4489), + [sym_date_literal] = ACTIONS(4491), + [anon_sym_POUND] = ACTIONS(4489), + }, + [STATE(644)] = { + [sym_identifier] = ACTIONS(4499), + [sym_newline] = ACTIONS(4501), + [anon_sym_COLON] = ACTIONS(4501), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4499), + [aux_sym_frm_property_statement_token1] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4501), + [aux_sym__attribute_identifier_token1] = ACTIONS(4499), + [aux_sym_option_statement_token3] = ACTIONS(4499), + [aux_sym_type_declaration_token1] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4499), + [aux_sym_enum_declaration_token1] = ACTIONS(4499), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4499), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4499), + [aux_sym_declare_function_statement_token1] = ACTIONS(4499), + [aux_sym_preprocessor_const_token1] = ACTIONS(4499), + [aux_sym__property_get_header_token1] = ACTIONS(4499), + [aux_sym_event_declaration_token1] = ACTIONS(4499), + [sym_static_modifier] = ACTIONS(4499), + [sym__dim_keyword] = ACTIONS(4499), + [sym__redim_keyword] = ACTIONS(4499), + [aux_sym_get_accessor_token1] = ACTIONS(4499), + [aux_sym_set_accessor_token1] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4501), + [aux_sym_const_declaration_token1] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4501), + [aux_sym_as_type_clause_token2] = ACTIONS(4499), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4499), + [aux_sym_visibility_token1] = ACTIONS(4499), + [aux_sym_visibility_token2] = ACTIONS(4499), + [aux_sym_elseif_fragment_token1] = ACTIONS(4499), + [aux_sym_else_fragment_token1] = ACTIONS(4499), + [aux_sym_select_statement_token1] = ACTIONS(4499), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4499), + [aux_sym_do_statement_token1] = ACTIONS(4499), + [aux_sym_do_condition_token1] = ACTIONS(4499), + [aux_sym_with_statement_token1] = ACTIONS(4499), + [aux_sym_exit_statement_token1] = ACTIONS(4499), + [sym_end_statement] = ACTIONS(4501), + [aux_sym_on_goto_statement_token1] = ACTIONS(4499), + [aux_sym_on_goto_statement_token2] = ACTIONS(4499), + [aux_sym_on_error_statement_token2] = ACTIONS(4499), + [sym__ambiguous_redim_statement] = ACTIONS(4501), + [aux_sym_erase_statement_token1] = ACTIONS(4499), + [aux_sym_open_statement_token1] = ACTIONS(4499), + [aux_sym_file_mode_token2] = ACTIONS(4499), + [aux_sym_file_access_token2] = ACTIONS(4499), + [aux_sym_file_lock_token2] = ACTIONS(4499), + [aux_sym_print_statement_token1] = ACTIONS(4499), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4514), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4501), + [anon_sym_QMARK] = ACTIONS(4501), + [aux_sym_close_statement_token1] = ACTIONS(4499), + [aux_sym_put_statement_token1] = ACTIONS(4499), + [aux_sym_unlock_statement_token1] = ACTIONS(4499), + [aux_sym_seek_statement_token1] = ACTIONS(4499), + [sym_reset_statement] = ACTIONS(4499), + [aux_sym_raise_event_statement_token1] = ACTIONS(4499), + [sym_stop_statement] = ACTIONS(4499), + [sym_beep_statement] = ACTIONS(4499), + [aux_sym_unload_statement_token1] = ACTIONS(4499), + [aux_sym_def_type_statement_token1] = ACTIONS(4499), + [aux_sym_def_type_statement_token2] = ACTIONS(4499), + [aux_sym_def_type_statement_token3] = ACTIONS(4499), + [aux_sym_def_type_statement_token4] = ACTIONS(4499), + [aux_sym_def_type_statement_token5] = ACTIONS(4499), + [aux_sym_def_type_statement_token6] = ACTIONS(4499), + [aux_sym_def_type_statement_token7] = ACTIONS(4499), + [aux_sym_def_type_statement_token8] = ACTIONS(4499), + [aux_sym_def_type_statement_token9] = ACTIONS(4499), + [aux_sym_def_type_statement_token10] = ACTIONS(4499), + [aux_sym_def_type_statement_token11] = ACTIONS(4499), + [aux_sym_def_type_statement_token12] = ACTIONS(4499), + [aux_sym_def_type_statement_token13] = ACTIONS(4499), + [aux_sym_def_type_statement_token14] = ACTIONS(4499), + [aux_sym_call_statement_token1] = ACTIONS(4499), + [sym__ambiguous_call_statement] = ACTIONS(4499), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4499), + [aux_sym_type_of_expression_token1] = ACTIONS(4499), + [aux_sym_unary_expression_token1] = ACTIONS(4499), + [sym_string_literal] = ACTIONS(4501), + [sym_number_literal] = ACTIONS(4501), + [aux_sym_boolean_literal_token1] = ACTIONS(4499), + [aux_sym_boolean_literal_token2] = ACTIONS(4499), + [sym_nothing_literal] = ACTIONS(4499), + [sym_null_literal] = ACTIONS(4499), + [sym_empty_literal] = ACTIONS(4499), + [sym_date_literal] = ACTIONS(4501), + [anon_sym_POUND] = ACTIONS(4499), + }, + [STATE(645)] = { + [sym_output_list] = STATE(7159), + [sym__print_output_expression] = STATE(4957), + [sym__unparenthesized_print_output_expression] = STATE(4957), + [sym__print_output_call_binary_expression] = STATE(4957), + [sym__print_output_call_operand] = STATE(10995), + [sym__print_output_member_comparison_expression] = STATE(5840), + [sym__print_output_call_member_expression] = STATE(997), + [sym__print_output_call_expression] = STATE(2996), + [sym__print_output_qualified_callable] = STATE(13646), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10979), + [sym_comparison_expression] = STATE(5075), + [sym__comparison_operand] = STATE(11430), + [sym_logical_value_expression] = STATE(4906), + [sym__callable_expression] = STATE(13260), + [sym_call_expression] = STATE(10300), + [sym_new_expression] = STATE(1479), + [sym_addressof_expression] = STATE(1479), + [sym_type_of_expression] = STATE(1479), + [sym_member_expression] = STATE(1524), + [sym_qualified_member_expression] = STATE(1585), + [sym_implicit_member_expression] = STATE(1585), + [sym_parenthesized_expression] = STATE(1570), + [sym_binary_expression] = STATE(1573), + [sym_unary_expression] = STATE(3301), + [sym__signed_unary_expression] = STATE(1674), + [sym__literal] = STATE(1479), + [sym_boolean_literal] = STATE(1479), + [sym_file_number_literal] = STATE(1479), + [sym_identifier] = ACTIONS(5022), + [sym_newline] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4092), + [aux_sym_frm_property_statement_token1] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(4899), + [anon_sym_BANG] = ACTIONS(4901), + [aux_sym__attribute_identifier_token1] = ACTIONS(4092), + [aux_sym_option_statement_token3] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4092), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4092), + [aux_sym_preprocessor_const_token1] = ACTIONS(4092), + [sym_static_modifier] = ACTIONS(4092), + [sym__dim_keyword] = ACTIONS(4092), + [sym__redim_keyword] = ACTIONS(4092), + [aux_sym_get_accessor_token1] = ACTIONS(4092), + [aux_sym_set_accessor_token1] = ACTIONS(4092), + [aux_sym_const_declaration_token1] = ACTIONS(4092), + [anon_sym_LPAREN] = ACTIONS(5026), + [aux_sym_as_type_clause_token2] = ACTIONS(4909), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5028), + [aux_sym_visibility_token1] = ACTIONS(4092), + [aux_sym_visibility_token2] = ACTIONS(4092), + [aux_sym_elseif_fragment_token1] = ACTIONS(4092), + [aux_sym_else_fragment_token1] = ACTIONS(4092), + [aux_sym_select_statement_token1] = ACTIONS(4092), + [aux_sym__for_header_token1] = ACTIONS(4092), + [aux_sym_do_statement_token1] = ACTIONS(4092), + [aux_sym_do_condition_token1] = ACTIONS(4092), + [aux_sym_with_statement_token1] = ACTIONS(4092), + [aux_sym_exit_statement_token1] = ACTIONS(4092), + [sym_end_statement] = ACTIONS(4090), + [aux_sym_on_goto_statement_token1] = ACTIONS(4092), + [aux_sym_on_goto_statement_token2] = ACTIONS(4092), + [aux_sym_on_error_statement_token2] = ACTIONS(4092), + [sym__ambiguous_redim_statement] = ACTIONS(4090), + [aux_sym_erase_statement_token1] = ACTIONS(4092), + [aux_sym_open_statement_token1] = ACTIONS(4092), + [aux_sym_file_mode_token2] = ACTIONS(4092), + [aux_sym_file_access_token2] = ACTIONS(4092), + [aux_sym_file_lock_token2] = ACTIONS(4092), + [aux_sym_print_statement_token1] = ACTIONS(4092), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_QMARK] = ACTIONS(4090), + [aux_sym_close_statement_token1] = ACTIONS(4092), + [aux_sym_put_statement_token1] = ACTIONS(4092), + [aux_sym_unlock_statement_token1] = ACTIONS(4092), + [aux_sym_seek_statement_token1] = ACTIONS(4092), + [sym_reset_statement] = ACTIONS(4092), + [aux_sym_raise_event_statement_token1] = ACTIONS(4092), + [sym_stop_statement] = ACTIONS(4092), + [sym_beep_statement] = ACTIONS(4092), + [aux_sym_unload_statement_token1] = ACTIONS(4092), + [aux_sym_def_type_statement_token1] = ACTIONS(4092), + [aux_sym_def_type_statement_token2] = ACTIONS(4092), + [aux_sym_def_type_statement_token3] = ACTIONS(4092), + [aux_sym_def_type_statement_token4] = ACTIONS(4092), + [aux_sym_def_type_statement_token5] = ACTIONS(4092), + [aux_sym_def_type_statement_token6] = ACTIONS(4092), + [aux_sym_def_type_statement_token7] = ACTIONS(4092), + [aux_sym_def_type_statement_token8] = ACTIONS(4092), + [aux_sym_def_type_statement_token9] = ACTIONS(4092), + [aux_sym_def_type_statement_token10] = ACTIONS(4092), + [aux_sym_def_type_statement_token11] = ACTIONS(4092), + [aux_sym_def_type_statement_token12] = ACTIONS(4092), + [aux_sym_def_type_statement_token13] = ACTIONS(4092), + [aux_sym_def_type_statement_token14] = ACTIONS(4092), + [aux_sym_call_statement_token1] = ACTIONS(4092), + [sym__ambiguous_call_statement] = ACTIONS(4092), + [aux_sym_addressof_expression_token1] = ACTIONS(4917), + [aux_sym_type_of_expression_token1] = ACTIONS(4919), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(5030), + [sym_number_literal] = ACTIONS(5030), + [aux_sym_boolean_literal_token1] = ACTIONS(4923), + [aux_sym_boolean_literal_token2] = ACTIONS(4923), + [sym_nothing_literal] = ACTIONS(5032), + [sym_null_literal] = ACTIONS(5032), + [sym_empty_literal] = ACTIONS(5032), + [sym_date_literal] = ACTIONS(5030), + [anon_sym_POUND] = ACTIONS(4927), + }, + [STATE(646)] = { + [sym_identifier] = ACTIONS(4671), + [sym_newline] = ACTIONS(4673), + [anon_sym_COLON] = ACTIONS(4673), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4671), + [aux_sym_frm_property_statement_token1] = ACTIONS(4671), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4671), + [anon_sym_BANG] = ACTIONS(4673), + [aux_sym__attribute_identifier_token1] = ACTIONS(4671), + [aux_sym_option_statement_token3] = ACTIONS(4671), + [aux_sym_type_declaration_token1] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4671), + [aux_sym_enum_declaration_token1] = ACTIONS(4671), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4671), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4671), + [aux_sym_declare_function_statement_token1] = ACTIONS(4671), + [aux_sym_preprocessor_const_token1] = ACTIONS(4671), + [aux_sym__property_get_header_token1] = ACTIONS(4671), + [aux_sym_event_declaration_token1] = ACTIONS(4671), + [sym_static_modifier] = ACTIONS(4671), + [sym__dim_keyword] = ACTIONS(4671), + [sym__redim_keyword] = ACTIONS(4671), + [aux_sym_get_accessor_token1] = ACTIONS(4671), + [aux_sym_set_accessor_token1] = ACTIONS(4671), + [anon_sym_COMMA] = ACTIONS(4673), + [aux_sym_const_declaration_token1] = ACTIONS(4671), + [anon_sym_LPAREN] = ACTIONS(4673), + [aux_sym_as_type_clause_token2] = ACTIONS(4671), + [anon_sym_STAR] = ACTIONS(4673), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4671), + [aux_sym_visibility_token1] = ACTIONS(4671), + [aux_sym_visibility_token2] = ACTIONS(4671), + [aux_sym_elseif_fragment_token1] = ACTIONS(4671), + [aux_sym_else_fragment_token1] = ACTIONS(4671), + [aux_sym_select_statement_token1] = ACTIONS(4671), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4671), + [aux_sym_do_statement_token1] = ACTIONS(4671), + [aux_sym_do_condition_token1] = ACTIONS(4671), + [aux_sym_with_statement_token1] = ACTIONS(4671), + [aux_sym_exit_statement_token1] = ACTIONS(4671), + [sym_end_statement] = ACTIONS(4673), + [aux_sym_on_goto_statement_token1] = ACTIONS(4671), + [aux_sym_on_goto_statement_token2] = ACTIONS(4671), + [aux_sym_on_error_statement_token2] = ACTIONS(4671), + [sym__ambiguous_redim_statement] = ACTIONS(4673), + [aux_sym_erase_statement_token1] = ACTIONS(4671), + [aux_sym_open_statement_token1] = ACTIONS(4671), + [aux_sym_file_mode_token2] = ACTIONS(4671), + [aux_sym_file_access_token2] = ACTIONS(4671), + [aux_sym_file_lock_token2] = ACTIONS(4671), + [aux_sym_print_statement_token1] = ACTIONS(4671), + [anon_sym_CARET] = ACTIONS(4673), + [anon_sym_SLASH] = ACTIONS(4673), + [anon_sym_BSLASH] = ACTIONS(4673), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4671), + [anon_sym_PLUS] = ACTIONS(4673), + [anon_sym_DASH] = ACTIONS(4671), + [anon_sym_AMP] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4671), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym_QMARK] = ACTIONS(4673), + [aux_sym_close_statement_token1] = ACTIONS(4671), + [aux_sym_put_statement_token1] = ACTIONS(4671), + [aux_sym_unlock_statement_token1] = ACTIONS(4671), + [aux_sym_seek_statement_token1] = ACTIONS(4671), + [sym_reset_statement] = ACTIONS(4671), + [aux_sym_raise_event_statement_token1] = ACTIONS(4671), + [sym_stop_statement] = ACTIONS(4671), + [sym_beep_statement] = ACTIONS(4671), + [aux_sym_unload_statement_token1] = ACTIONS(4671), + [aux_sym_def_type_statement_token1] = ACTIONS(4671), + [aux_sym_def_type_statement_token2] = ACTIONS(4671), + [aux_sym_def_type_statement_token3] = ACTIONS(4671), + [aux_sym_def_type_statement_token4] = ACTIONS(4671), + [aux_sym_def_type_statement_token5] = ACTIONS(4671), + [aux_sym_def_type_statement_token6] = ACTIONS(4671), + [aux_sym_def_type_statement_token7] = ACTIONS(4671), + [aux_sym_def_type_statement_token8] = ACTIONS(4671), + [aux_sym_def_type_statement_token9] = ACTIONS(4671), + [aux_sym_def_type_statement_token10] = ACTIONS(4671), + [aux_sym_def_type_statement_token11] = ACTIONS(4671), + [aux_sym_def_type_statement_token12] = ACTIONS(4671), + [aux_sym_def_type_statement_token13] = ACTIONS(4671), + [aux_sym_def_type_statement_token14] = ACTIONS(4671), + [aux_sym_call_statement_token1] = ACTIONS(4671), + [sym__ambiguous_call_statement] = ACTIONS(4671), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4671), + [aux_sym_type_of_expression_token1] = ACTIONS(4671), + [aux_sym_unary_expression_token1] = ACTIONS(4671), + [sym_string_literal] = ACTIONS(4673), + [sym_number_literal] = ACTIONS(4673), + [aux_sym_boolean_literal_token1] = ACTIONS(4671), + [aux_sym_boolean_literal_token2] = ACTIONS(4671), + [sym_nothing_literal] = ACTIONS(4671), + [sym_null_literal] = ACTIONS(4671), + [sym_empty_literal] = ACTIONS(4671), + [sym_date_literal] = ACTIONS(4673), + [anon_sym_POUND] = ACTIONS(4671), + }, + [STATE(647)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4709), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(648)] = { + [sym_identifier] = ACTIONS(4745), + [sym_newline] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4745), + [aux_sym_frm_property_statement_token1] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_BANG] = ACTIONS(4747), + [aux_sym__attribute_identifier_token1] = ACTIONS(4745), + [aux_sym_option_statement_token3] = ACTIONS(4745), + [aux_sym_type_declaration_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4745), + [aux_sym_enum_declaration_token1] = ACTIONS(4745), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4745), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4745), + [aux_sym_declare_function_statement_token1] = ACTIONS(4745), + [aux_sym_preprocessor_const_token1] = ACTIONS(4745), + [aux_sym__property_get_header_token1] = ACTIONS(4745), + [aux_sym_event_declaration_token1] = ACTIONS(4745), + [sym_static_modifier] = ACTIONS(4745), + [sym__dim_keyword] = ACTIONS(4745), + [sym__redim_keyword] = ACTIONS(4745), + [aux_sym_get_accessor_token1] = ACTIONS(4745), + [aux_sym_set_accessor_token1] = ACTIONS(4745), + [anon_sym_COMMA] = ACTIONS(4747), + [aux_sym_const_declaration_token1] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4747), + [aux_sym_as_type_clause_token2] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4747), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4745), + [aux_sym_visibility_token1] = ACTIONS(4745), + [aux_sym_visibility_token2] = ACTIONS(4745), + [aux_sym_elseif_fragment_token1] = ACTIONS(4745), + [aux_sym_else_fragment_token1] = ACTIONS(4745), + [aux_sym_select_statement_token1] = ACTIONS(4745), + [aux_sym_case_expression_token1] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_LT_EQ] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_GT_EQ] = ACTIONS(4747), + [anon_sym_LT_GT] = ACTIONS(4747), + [aux_sym__for_header_token1] = ACTIONS(4745), + [aux_sym_do_statement_token1] = ACTIONS(4745), + [aux_sym_do_condition_token1] = ACTIONS(4745), + [aux_sym_with_statement_token1] = ACTIONS(4745), + [aux_sym_exit_statement_token1] = ACTIONS(4745), + [sym_end_statement] = ACTIONS(4747), + [aux_sym_on_goto_statement_token1] = ACTIONS(4745), + [aux_sym_on_goto_statement_token2] = ACTIONS(4745), + [aux_sym_on_error_statement_token2] = ACTIONS(4745), + [sym__ambiguous_redim_statement] = ACTIONS(4747), + [aux_sym_erase_statement_token1] = ACTIONS(4745), + [aux_sym_open_statement_token1] = ACTIONS(4745), + [aux_sym_file_mode_token2] = ACTIONS(4745), + [aux_sym_file_access_token2] = ACTIONS(4745), + [aux_sym_file_lock_token2] = ACTIONS(4745), + [aux_sym_print_statement_token1] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_BSLASH] = ACTIONS(4747), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4745), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [aux_sym_close_statement_token1] = ACTIONS(4745), + [aux_sym_put_statement_token1] = ACTIONS(4745), + [aux_sym_unlock_statement_token1] = ACTIONS(4745), + [aux_sym_seek_statement_token1] = ACTIONS(4745), + [sym_reset_statement] = ACTIONS(4745), + [aux_sym_raise_event_statement_token1] = ACTIONS(4745), + [sym_stop_statement] = ACTIONS(4745), + [sym_beep_statement] = ACTIONS(4745), + [aux_sym_unload_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token2] = ACTIONS(4745), + [aux_sym_def_type_statement_token3] = ACTIONS(4745), + [aux_sym_def_type_statement_token4] = ACTIONS(4745), + [aux_sym_def_type_statement_token5] = ACTIONS(4745), + [aux_sym_def_type_statement_token6] = ACTIONS(4745), + [aux_sym_def_type_statement_token7] = ACTIONS(4745), + [aux_sym_def_type_statement_token8] = ACTIONS(4745), + [aux_sym_def_type_statement_token9] = ACTIONS(4745), + [aux_sym_def_type_statement_token10] = ACTIONS(4745), + [aux_sym_def_type_statement_token11] = ACTIONS(4745), + [aux_sym_def_type_statement_token12] = ACTIONS(4745), + [aux_sym_def_type_statement_token13] = ACTIONS(4745), + [aux_sym_def_type_statement_token14] = ACTIONS(4745), + [aux_sym_call_statement_token1] = ACTIONS(4745), + [sym__ambiguous_call_statement] = ACTIONS(4745), + [aux_sym_comparison_operator_token1] = ACTIONS(4745), + [aux_sym_addressof_expression_token1] = ACTIONS(4745), + [aux_sym_type_of_expression_token1] = ACTIONS(4745), + [aux_sym_unary_expression_token1] = ACTIONS(4745), + [sym_string_literal] = ACTIONS(4747), + [sym_number_literal] = ACTIONS(4747), + [aux_sym_boolean_literal_token1] = ACTIONS(4745), + [aux_sym_boolean_literal_token2] = ACTIONS(4745), + [sym_nothing_literal] = ACTIONS(4745), + [sym_null_literal] = ACTIONS(4745), + [sym_empty_literal] = ACTIONS(4745), + [sym_date_literal] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4745), + }, + [STATE(649)] = { + [sym_identifier] = ACTIONS(4745), + [sym_newline] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4745), + [aux_sym_frm_property_statement_token1] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_BANG] = ACTIONS(4747), + [aux_sym__attribute_identifier_token1] = ACTIONS(4745), + [aux_sym_option_statement_token3] = ACTIONS(4745), + [aux_sym_type_declaration_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4745), + [aux_sym_enum_declaration_token1] = ACTIONS(4745), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4745), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4745), + [aux_sym_declare_function_statement_token1] = ACTIONS(4745), + [aux_sym_preprocessor_const_token1] = ACTIONS(4745), + [aux_sym__property_get_header_token1] = ACTIONS(4745), + [aux_sym_event_declaration_token1] = ACTIONS(4745), + [sym_static_modifier] = ACTIONS(4745), + [sym__dim_keyword] = ACTIONS(4745), + [sym__redim_keyword] = ACTIONS(4745), + [aux_sym_get_accessor_token1] = ACTIONS(4745), + [aux_sym_set_accessor_token1] = ACTIONS(4745), + [anon_sym_COMMA] = ACTIONS(4747), + [aux_sym_const_declaration_token1] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4747), + [aux_sym_as_type_clause_token2] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4747), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4745), + [aux_sym_visibility_token1] = ACTIONS(4745), + [aux_sym_visibility_token2] = ACTIONS(4745), + [aux_sym_elseif_fragment_token1] = ACTIONS(4745), + [aux_sym_else_fragment_token1] = ACTIONS(4745), + [aux_sym_select_statement_token1] = ACTIONS(4745), + [aux_sym_case_expression_token1] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_LT_EQ] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_GT_EQ] = ACTIONS(4747), + [anon_sym_LT_GT] = ACTIONS(4747), + [aux_sym__for_header_token1] = ACTIONS(4745), + [aux_sym_do_statement_token1] = ACTIONS(4745), + [aux_sym_do_condition_token1] = ACTIONS(4745), + [aux_sym_with_statement_token1] = ACTIONS(4745), + [aux_sym_exit_statement_token1] = ACTIONS(4745), + [sym_end_statement] = ACTIONS(4747), + [aux_sym_on_goto_statement_token1] = ACTIONS(4745), + [aux_sym_on_goto_statement_token2] = ACTIONS(4745), + [aux_sym_on_error_statement_token2] = ACTIONS(4745), + [sym__ambiguous_redim_statement] = ACTIONS(4747), + [aux_sym_erase_statement_token1] = ACTIONS(4745), + [aux_sym_open_statement_token1] = ACTIONS(4745), + [aux_sym_file_mode_token2] = ACTIONS(4745), + [aux_sym_file_access_token2] = ACTIONS(4745), + [aux_sym_file_lock_token2] = ACTIONS(4745), + [aux_sym_print_statement_token1] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_BSLASH] = ACTIONS(4747), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4745), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [aux_sym_close_statement_token1] = ACTIONS(4745), + [aux_sym_put_statement_token1] = ACTIONS(4745), + [aux_sym_unlock_statement_token1] = ACTIONS(4745), + [aux_sym_seek_statement_token1] = ACTIONS(4745), + [sym_reset_statement] = ACTIONS(4745), + [aux_sym_raise_event_statement_token1] = ACTIONS(4745), + [sym_stop_statement] = ACTIONS(4745), + [sym_beep_statement] = ACTIONS(4745), + [aux_sym_unload_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token2] = ACTIONS(4745), + [aux_sym_def_type_statement_token3] = ACTIONS(4745), + [aux_sym_def_type_statement_token4] = ACTIONS(4745), + [aux_sym_def_type_statement_token5] = ACTIONS(4745), + [aux_sym_def_type_statement_token6] = ACTIONS(4745), + [aux_sym_def_type_statement_token7] = ACTIONS(4745), + [aux_sym_def_type_statement_token8] = ACTIONS(4745), + [aux_sym_def_type_statement_token9] = ACTIONS(4745), + [aux_sym_def_type_statement_token10] = ACTIONS(4745), + [aux_sym_def_type_statement_token11] = ACTIONS(4745), + [aux_sym_def_type_statement_token12] = ACTIONS(4745), + [aux_sym_def_type_statement_token13] = ACTIONS(4745), + [aux_sym_def_type_statement_token14] = ACTIONS(4745), + [aux_sym_call_statement_token1] = ACTIONS(4745), + [sym__ambiguous_call_statement] = ACTIONS(4745), + [aux_sym_comparison_operator_token1] = ACTIONS(4745), + [aux_sym_addressof_expression_token1] = ACTIONS(4745), + [aux_sym_type_of_expression_token1] = ACTIONS(4745), + [aux_sym_unary_expression_token1] = ACTIONS(4745), + [sym_string_literal] = ACTIONS(4747), + [sym_number_literal] = ACTIONS(4747), + [aux_sym_boolean_literal_token1] = ACTIONS(4745), + [aux_sym_boolean_literal_token2] = ACTIONS(4745), + [sym_nothing_literal] = ACTIONS(4745), + [sym_null_literal] = ACTIONS(4745), + [sym_empty_literal] = ACTIONS(4745), + [sym_date_literal] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4745), + }, + [STATE(650)] = { + [sym_identifier] = ACTIONS(4749), + [sym_newline] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4749), + [aux_sym_frm_property_statement_token1] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_BANG] = ACTIONS(4751), + [aux_sym__attribute_identifier_token1] = ACTIONS(4749), + [aux_sym_option_statement_token3] = ACTIONS(4749), + [aux_sym_type_declaration_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4749), + [aux_sym_enum_declaration_token1] = ACTIONS(4749), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4749), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4749), + [aux_sym_declare_function_statement_token1] = ACTIONS(4749), + [aux_sym_preprocessor_const_token1] = ACTIONS(4749), + [aux_sym__property_get_header_token1] = ACTIONS(4749), + [aux_sym_event_declaration_token1] = ACTIONS(4749), + [sym_static_modifier] = ACTIONS(4749), + [sym__dim_keyword] = ACTIONS(4749), + [sym__redim_keyword] = ACTIONS(4749), + [aux_sym_get_accessor_token1] = ACTIONS(4749), + [aux_sym_set_accessor_token1] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4751), + [aux_sym_const_declaration_token1] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4751), + [aux_sym_as_type_clause_token2] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4749), + [aux_sym_visibility_token1] = ACTIONS(4749), + [aux_sym_visibility_token2] = ACTIONS(4749), + [aux_sym_elseif_fragment_token1] = ACTIONS(4749), + [aux_sym_else_fragment_token1] = ACTIONS(4749), + [aux_sym_select_statement_token1] = ACTIONS(4749), + [aux_sym_case_expression_token1] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_GT] = ACTIONS(4751), + [aux_sym__for_header_token1] = ACTIONS(4749), + [aux_sym_do_statement_token1] = ACTIONS(4749), + [aux_sym_do_condition_token1] = ACTIONS(4749), + [aux_sym_with_statement_token1] = ACTIONS(4749), + [aux_sym_exit_statement_token1] = ACTIONS(4749), + [sym_end_statement] = ACTIONS(4751), + [aux_sym_on_goto_statement_token1] = ACTIONS(4749), + [aux_sym_on_goto_statement_token2] = ACTIONS(4749), + [aux_sym_on_error_statement_token2] = ACTIONS(4749), + [sym__ambiguous_redim_statement] = ACTIONS(4751), + [aux_sym_erase_statement_token1] = ACTIONS(4749), + [aux_sym_open_statement_token1] = ACTIONS(4749), + [aux_sym_file_mode_token2] = ACTIONS(4749), + [aux_sym_file_access_token2] = ACTIONS(4749), + [aux_sym_file_lock_token2] = ACTIONS(4749), + [aux_sym_print_statement_token1] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_BSLASH] = ACTIONS(4751), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [aux_sym_close_statement_token1] = ACTIONS(4749), + [aux_sym_put_statement_token1] = ACTIONS(4749), + [aux_sym_unlock_statement_token1] = ACTIONS(4749), + [aux_sym_seek_statement_token1] = ACTIONS(4749), + [sym_reset_statement] = ACTIONS(4749), + [aux_sym_raise_event_statement_token1] = ACTIONS(4749), + [sym_stop_statement] = ACTIONS(4749), + [sym_beep_statement] = ACTIONS(4749), + [aux_sym_unload_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token2] = ACTIONS(4749), + [aux_sym_def_type_statement_token3] = ACTIONS(4749), + [aux_sym_def_type_statement_token4] = ACTIONS(4749), + [aux_sym_def_type_statement_token5] = ACTIONS(4749), + [aux_sym_def_type_statement_token6] = ACTIONS(4749), + [aux_sym_def_type_statement_token7] = ACTIONS(4749), + [aux_sym_def_type_statement_token8] = ACTIONS(4749), + [aux_sym_def_type_statement_token9] = ACTIONS(4749), + [aux_sym_def_type_statement_token10] = ACTIONS(4749), + [aux_sym_def_type_statement_token11] = ACTIONS(4749), + [aux_sym_def_type_statement_token12] = ACTIONS(4749), + [aux_sym_def_type_statement_token13] = ACTIONS(4749), + [aux_sym_def_type_statement_token14] = ACTIONS(4749), + [aux_sym_call_statement_token1] = ACTIONS(4749), + [sym__ambiguous_call_statement] = ACTIONS(4749), + [aux_sym_comparison_operator_token1] = ACTIONS(4749), + [aux_sym_addressof_expression_token1] = ACTIONS(4749), + [aux_sym_type_of_expression_token1] = ACTIONS(4749), + [aux_sym_unary_expression_token1] = ACTIONS(4749), + [sym_string_literal] = ACTIONS(4751), + [sym_number_literal] = ACTIONS(4751), + [aux_sym_boolean_literal_token1] = ACTIONS(4749), + [aux_sym_boolean_literal_token2] = ACTIONS(4749), + [sym_nothing_literal] = ACTIONS(4749), + [sym_null_literal] = ACTIONS(4749), + [sym_empty_literal] = ACTIONS(4749), + [sym_date_literal] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4749), + }, + [STATE(651)] = { + [sym_identifier] = ACTIONS(4749), + [sym_newline] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4749), + [aux_sym_frm_property_statement_token1] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_BANG] = ACTIONS(4751), + [aux_sym__attribute_identifier_token1] = ACTIONS(4749), + [aux_sym_option_statement_token3] = ACTIONS(4749), + [aux_sym_type_declaration_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4749), + [aux_sym_enum_declaration_token1] = ACTIONS(4749), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4749), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4749), + [aux_sym_declare_function_statement_token1] = ACTIONS(4749), + [aux_sym_preprocessor_const_token1] = ACTIONS(4749), + [aux_sym__property_get_header_token1] = ACTIONS(4749), + [aux_sym_event_declaration_token1] = ACTIONS(4749), + [sym_static_modifier] = ACTIONS(4749), + [sym__dim_keyword] = ACTIONS(4749), + [sym__redim_keyword] = ACTIONS(4749), + [aux_sym_get_accessor_token1] = ACTIONS(4749), + [aux_sym_set_accessor_token1] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4751), + [aux_sym_const_declaration_token1] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4751), + [aux_sym_as_type_clause_token2] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4749), + [aux_sym_visibility_token1] = ACTIONS(4749), + [aux_sym_visibility_token2] = ACTIONS(4749), + [aux_sym_elseif_fragment_token1] = ACTIONS(4749), + [aux_sym_else_fragment_token1] = ACTIONS(4749), + [aux_sym_select_statement_token1] = ACTIONS(4749), + [aux_sym_case_expression_token1] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_GT] = ACTIONS(4751), + [aux_sym__for_header_token1] = ACTIONS(4749), + [aux_sym_do_statement_token1] = ACTIONS(4749), + [aux_sym_do_condition_token1] = ACTIONS(4749), + [aux_sym_with_statement_token1] = ACTIONS(4749), + [aux_sym_exit_statement_token1] = ACTIONS(4749), + [sym_end_statement] = ACTIONS(4751), + [aux_sym_on_goto_statement_token1] = ACTIONS(4749), + [aux_sym_on_goto_statement_token2] = ACTIONS(4749), + [aux_sym_on_error_statement_token2] = ACTIONS(4749), + [sym__ambiguous_redim_statement] = ACTIONS(4751), + [aux_sym_erase_statement_token1] = ACTIONS(4749), + [aux_sym_open_statement_token1] = ACTIONS(4749), + [aux_sym_file_mode_token2] = ACTIONS(4749), + [aux_sym_file_access_token2] = ACTIONS(4749), + [aux_sym_file_lock_token2] = ACTIONS(4749), + [aux_sym_print_statement_token1] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_BSLASH] = ACTIONS(4751), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [aux_sym_close_statement_token1] = ACTIONS(4749), + [aux_sym_put_statement_token1] = ACTIONS(4749), + [aux_sym_unlock_statement_token1] = ACTIONS(4749), + [aux_sym_seek_statement_token1] = ACTIONS(4749), + [sym_reset_statement] = ACTIONS(4749), + [aux_sym_raise_event_statement_token1] = ACTIONS(4749), + [sym_stop_statement] = ACTIONS(4749), + [sym_beep_statement] = ACTIONS(4749), + [aux_sym_unload_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token2] = ACTIONS(4749), + [aux_sym_def_type_statement_token3] = ACTIONS(4749), + [aux_sym_def_type_statement_token4] = ACTIONS(4749), + [aux_sym_def_type_statement_token5] = ACTIONS(4749), + [aux_sym_def_type_statement_token6] = ACTIONS(4749), + [aux_sym_def_type_statement_token7] = ACTIONS(4749), + [aux_sym_def_type_statement_token8] = ACTIONS(4749), + [aux_sym_def_type_statement_token9] = ACTIONS(4749), + [aux_sym_def_type_statement_token10] = ACTIONS(4749), + [aux_sym_def_type_statement_token11] = ACTIONS(4749), + [aux_sym_def_type_statement_token12] = ACTIONS(4749), + [aux_sym_def_type_statement_token13] = ACTIONS(4749), + [aux_sym_def_type_statement_token14] = ACTIONS(4749), + [aux_sym_call_statement_token1] = ACTIONS(4749), + [sym__ambiguous_call_statement] = ACTIONS(4749), + [aux_sym_comparison_operator_token1] = ACTIONS(4749), + [aux_sym_addressof_expression_token1] = ACTIONS(4749), + [aux_sym_type_of_expression_token1] = ACTIONS(4749), + [aux_sym_unary_expression_token1] = ACTIONS(4749), + [sym_string_literal] = ACTIONS(4751), + [sym_number_literal] = ACTIONS(4751), + [aux_sym_boolean_literal_token1] = ACTIONS(4749), + [aux_sym_boolean_literal_token2] = ACTIONS(4749), + [sym_nothing_literal] = ACTIONS(4749), + [sym_null_literal] = ACTIONS(4749), + [sym_empty_literal] = ACTIONS(4749), + [sym_date_literal] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4749), + }, + [STATE(652)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(653)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_declaration_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_enum_declaration_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4625), + [aux_sym_declare_function_statement_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [aux_sym__property_get_header_token1] = ACTIONS(4625), + [aux_sym_event_declaration_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(654)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(655)] = { + [sym__argument] = STATE(4861), + [sym_named_argument] = STATE(4861), + [sym_byval_argument] = STATE(4861), + [sym__primary_expression] = STATE(830), + [sym__expression] = STATE(2340), + [sym_comparison_expression] = STATE(4594), + [sym__comparison_operand] = STATE(11302), + [sym_logical_value_expression] = STATE(4594), + [sym__callable_expression] = STATE(13462), + [sym_call_expression] = STATE(777), + [sym_new_expression] = STATE(830), + [sym_addressof_expression] = STATE(830), + [sym_type_of_expression] = STATE(830), + [sym_member_expression] = STATE(814), + [sym_qualified_member_expression] = STATE(865), + [sym_implicit_member_expression] = STATE(865), + [sym_parenthesized_expression] = STATE(830), + [sym_binary_expression] = STATE(830), + [sym_unary_expression] = STATE(2340), + [sym__signed_unary_expression] = STATE(837), + [sym__literal] = STATE(830), + [sym_boolean_literal] = STATE(830), + [sym_file_number_literal] = STATE(830), + [aux_sym__argument_sequence_repeat2] = STATE(4860), + [sym_identifier] = ACTIONS(4260), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4266), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_byval_modifier_token1] = ACTIONS(4268), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5034), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4383), + [aux_sym_as_type_clause_token2] = ACTIONS(4274), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4276), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4282), + [aux_sym_type_of_expression_token1] = ACTIONS(4284), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(4286), + [sym_number_literal] = ACTIONS(4286), + [aux_sym_boolean_literal_token1] = ACTIONS(4288), + [aux_sym_boolean_literal_token2] = ACTIONS(4288), + [sym_nothing_literal] = ACTIONS(4290), + [sym_null_literal] = ACTIONS(4290), + [sym_empty_literal] = ACTIONS(4290), + [sym_date_literal] = ACTIONS(4286), + [anon_sym_POUND] = ACTIONS(4292), + }, + [STATE(656)] = { + [sym__print_output_expression] = STATE(5587), + [sym__unparenthesized_print_output_expression] = STATE(5587), + [sym__print_output_call_binary_expression] = STATE(5587), + [sym__print_output_call_operand] = STATE(11001), + [sym__print_output_member_comparison_expression] = STATE(5244), + [sym__print_output_call_member_expression] = STATE(871), + [sym__print_output_call_expression] = STATE(2617), + [sym__print_output_qualified_callable] = STATE(13129), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(11002), + [sym_comparison_expression] = STATE(4702), + [sym__comparison_operand] = STATE(11305), + [sym_logical_value_expression] = STATE(4703), + [sym__callable_expression] = STATE(13130), + [sym_call_expression] = STATE(10298), + [sym_new_expression] = STATE(1126), + [sym_addressof_expression] = STATE(1126), + [sym_type_of_expression] = STATE(1126), + [sym_member_expression] = STATE(1168), + [sym_qualified_member_expression] = STATE(1206), + [sym_implicit_member_expression] = STATE(1206), + [sym_parenthesized_expression] = STATE(1194), + [sym_binary_expression] = STATE(1209), + [sym_unary_expression] = STATE(2675), + [sym__signed_unary_expression] = STATE(1348), + [sym__literal] = STATE(1126), + [sym_boolean_literal] = STATE(1126), + [sym_file_number_literal] = STATE(1126), + [sym_identifier] = ACTIONS(4845), + [sym_newline] = ACTIONS(4108), + [anon_sym_COLON] = ACTIONS(4108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4110), + [aux_sym_frm_property_statement_token1] = ACTIONS(4847), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4561), + [aux_sym__attribute_identifier_token1] = ACTIONS(4110), + [aux_sym_option_statement_token3] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4110), + [aux_sym_preprocessor_const_token1] = ACTIONS(4110), + [sym_static_modifier] = ACTIONS(4110), + [sym__dim_keyword] = ACTIONS(4110), + [sym__redim_keyword] = ACTIONS(4110), + [aux_sym_get_accessor_token1] = ACTIONS(4110), + [aux_sym_set_accessor_token1] = ACTIONS(4110), + [aux_sym_const_declaration_token1] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4869), + [aux_sym_as_type_clause_token2] = ACTIONS(4569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4851), + [aux_sym_visibility_token1] = ACTIONS(4110), + [aux_sym_visibility_token2] = ACTIONS(4110), + [aux_sym_elseif_fragment_token1] = ACTIONS(4110), + [aux_sym_else_fragment_token1] = ACTIONS(4110), + [aux_sym_select_statement_token1] = ACTIONS(4110), + [aux_sym__for_header_token1] = ACTIONS(4110), + [aux_sym_do_statement_token1] = ACTIONS(4110), + [aux_sym_do_condition_token1] = ACTIONS(4110), + [aux_sym_with_statement_token1] = ACTIONS(4110), + [aux_sym_exit_statement_token1] = ACTIONS(4110), + [sym_end_statement] = ACTIONS(4108), + [aux_sym_on_goto_statement_token1] = ACTIONS(4110), + [aux_sym_on_goto_statement_token2] = ACTIONS(4110), + [aux_sym_on_error_statement_token2] = ACTIONS(4110), + [sym__ambiguous_redim_statement] = ACTIONS(4108), + [aux_sym_erase_statement_token1] = ACTIONS(4110), + [aux_sym_open_statement_token1] = ACTIONS(4110), + [aux_sym_file_mode_token2] = ACTIONS(4110), + [aux_sym_file_access_token2] = ACTIONS(4110), + [aux_sym_file_lock_token2] = ACTIONS(4110), + [aux_sym_print_statement_token1] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4108), + [aux_sym_close_statement_token1] = ACTIONS(4110), + [aux_sym_put_statement_token1] = ACTIONS(4110), + [aux_sym_unlock_statement_token1] = ACTIONS(4110), + [aux_sym_seek_statement_token1] = ACTIONS(4110), + [sym_reset_statement] = ACTIONS(4110), + [aux_sym_raise_event_statement_token1] = ACTIONS(4110), + [sym_stop_statement] = ACTIONS(4110), + [sym_beep_statement] = ACTIONS(4110), + [aux_sym_unload_statement_token1] = ACTIONS(4110), + [aux_sym_def_type_statement_token1] = ACTIONS(4110), + [aux_sym_def_type_statement_token2] = ACTIONS(4110), + [aux_sym_def_type_statement_token3] = ACTIONS(4110), + [aux_sym_def_type_statement_token4] = ACTIONS(4110), + [aux_sym_def_type_statement_token5] = ACTIONS(4110), + [aux_sym_def_type_statement_token6] = ACTIONS(4110), + [aux_sym_def_type_statement_token7] = ACTIONS(4110), + [aux_sym_def_type_statement_token8] = ACTIONS(4110), + [aux_sym_def_type_statement_token9] = ACTIONS(4110), + [aux_sym_def_type_statement_token10] = ACTIONS(4110), + [aux_sym_def_type_statement_token11] = ACTIONS(4110), + [aux_sym_def_type_statement_token12] = ACTIONS(4110), + [aux_sym_def_type_statement_token13] = ACTIONS(4110), + [aux_sym_def_type_statement_token14] = ACTIONS(4110), + [aux_sym_call_statement_token1] = ACTIONS(4110), + [sym__ambiguous_call_statement] = ACTIONS(4110), + [aux_sym_addressof_expression_token1] = ACTIONS(4577), + [aux_sym_type_of_expression_token1] = ACTIONS(4579), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(4853), + [sym_number_literal] = ACTIONS(4853), + [aux_sym_boolean_literal_token1] = ACTIONS(4583), + [aux_sym_boolean_literal_token2] = ACTIONS(4583), + [sym_nothing_literal] = ACTIONS(4855), + [sym_null_literal] = ACTIONS(4855), + [sym_empty_literal] = ACTIONS(4855), + [sym_date_literal] = ACTIONS(4853), + [anon_sym_POUND] = ACTIONS(4587), + }, + [STATE(657)] = { + [sym__argument] = STATE(4808), + [sym_named_argument] = STATE(4808), + [sym_byval_argument] = STATE(4808), + [sym__primary_expression] = STATE(830), + [sym__expression] = STATE(2340), + [sym_comparison_expression] = STATE(4594), + [sym__comparison_operand] = STATE(11302), + [sym_logical_value_expression] = STATE(4594), + [sym__callable_expression] = STATE(13462), + [sym_call_expression] = STATE(777), + [sym_new_expression] = STATE(830), + [sym_addressof_expression] = STATE(830), + [sym_type_of_expression] = STATE(830), + [sym_member_expression] = STATE(814), + [sym_qualified_member_expression] = STATE(865), + [sym_implicit_member_expression] = STATE(865), + [sym_parenthesized_expression] = STATE(830), + [sym_binary_expression] = STATE(830), + [sym_unary_expression] = STATE(2340), + [sym__signed_unary_expression] = STATE(837), + [sym__literal] = STATE(830), + [sym_boolean_literal] = STATE(830), + [sym_file_number_literal] = STATE(830), + [aux_sym__argument_sequence_repeat2] = STATE(4809), + [sym_identifier] = ACTIONS(4260), + [sym_newline] = ACTIONS(4174), + [anon_sym_COLON] = ACTIONS(4174), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4176), + [aux_sym_frm_property_statement_token1] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4266), + [aux_sym__attribute_identifier_token1] = ACTIONS(4176), + [aux_sym_option_statement_token3] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4176), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4176), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4176), + [aux_sym_preprocessor_const_token1] = ACTIONS(4176), + [sym_static_modifier] = ACTIONS(4176), + [sym__dim_keyword] = ACTIONS(4176), + [sym__redim_keyword] = ACTIONS(4176), + [aux_sym_byval_modifier_token1] = ACTIONS(4268), + [aux_sym_get_accessor_token1] = ACTIONS(4176), + [aux_sym_set_accessor_token1] = ACTIONS(4176), + [anon_sym_COMMA] = ACTIONS(5034), + [aux_sym_const_declaration_token1] = ACTIONS(4176), + [anon_sym_LPAREN] = ACTIONS(4383), + [aux_sym_as_type_clause_token2] = ACTIONS(4274), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4276), + [aux_sym_visibility_token1] = ACTIONS(4176), + [aux_sym_visibility_token2] = ACTIONS(4176), + [aux_sym_elseif_fragment_token1] = ACTIONS(4176), + [aux_sym_else_fragment_token1] = ACTIONS(4176), + [aux_sym_select_statement_token1] = ACTIONS(4176), + [aux_sym__for_header_token1] = ACTIONS(4176), + [aux_sym_do_statement_token1] = ACTIONS(4176), + [aux_sym_do_condition_token1] = ACTIONS(4176), + [aux_sym_with_statement_token1] = ACTIONS(4176), + [aux_sym_exit_statement_token1] = ACTIONS(4176), + [sym_end_statement] = ACTIONS(4174), + [aux_sym_on_goto_statement_token1] = ACTIONS(4176), + [aux_sym_on_goto_statement_token2] = ACTIONS(4176), + [aux_sym_on_error_statement_token2] = ACTIONS(4176), + [sym__ambiguous_redim_statement] = ACTIONS(4174), + [aux_sym_erase_statement_token1] = ACTIONS(4176), + [aux_sym_open_statement_token1] = ACTIONS(4176), + [aux_sym_file_mode_token2] = ACTIONS(4176), + [aux_sym_file_access_token2] = ACTIONS(4176), + [aux_sym_file_lock_token2] = ACTIONS(4176), + [aux_sym_print_statement_token1] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4174), + [aux_sym_close_statement_token1] = ACTIONS(4176), + [aux_sym_put_statement_token1] = ACTIONS(4176), + [aux_sym_unlock_statement_token1] = ACTIONS(4176), + [aux_sym_seek_statement_token1] = ACTIONS(4176), + [sym_reset_statement] = ACTIONS(4176), + [aux_sym_raise_event_statement_token1] = ACTIONS(4176), + [sym_stop_statement] = ACTIONS(4176), + [sym_beep_statement] = ACTIONS(4176), + [aux_sym_unload_statement_token1] = ACTIONS(4176), + [aux_sym_def_type_statement_token1] = ACTIONS(4176), + [aux_sym_def_type_statement_token2] = ACTIONS(4176), + [aux_sym_def_type_statement_token3] = ACTIONS(4176), + [aux_sym_def_type_statement_token4] = ACTIONS(4176), + [aux_sym_def_type_statement_token5] = ACTIONS(4176), + [aux_sym_def_type_statement_token6] = ACTIONS(4176), + [aux_sym_def_type_statement_token7] = ACTIONS(4176), + [aux_sym_def_type_statement_token8] = ACTIONS(4176), + [aux_sym_def_type_statement_token9] = ACTIONS(4176), + [aux_sym_def_type_statement_token10] = ACTIONS(4176), + [aux_sym_def_type_statement_token11] = ACTIONS(4176), + [aux_sym_def_type_statement_token12] = ACTIONS(4176), + [aux_sym_def_type_statement_token13] = ACTIONS(4176), + [aux_sym_def_type_statement_token14] = ACTIONS(4176), + [aux_sym_call_statement_token1] = ACTIONS(4176), + [sym__ambiguous_call_statement] = ACTIONS(4176), + [aux_sym_addressof_expression_token1] = ACTIONS(4282), + [aux_sym_type_of_expression_token1] = ACTIONS(4284), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(4286), + [sym_number_literal] = ACTIONS(4286), + [aux_sym_boolean_literal_token1] = ACTIONS(4288), + [aux_sym_boolean_literal_token2] = ACTIONS(4288), + [sym_nothing_literal] = ACTIONS(4290), + [sym_null_literal] = ACTIONS(4290), + [sym_empty_literal] = ACTIONS(4290), + [sym_date_literal] = ACTIONS(4286), + [anon_sym_POUND] = ACTIONS(4292), + }, + [STATE(658)] = { + [sym__print_output_expression] = STATE(5587), + [sym__unparenthesized_print_output_expression] = STATE(5587), + [sym__print_output_call_binary_expression] = STATE(5587), + [sym__print_output_call_operand] = STATE(11001), + [sym__print_output_member_comparison_expression] = STATE(5244), + [sym__print_output_call_member_expression] = STATE(871), + [sym__print_output_call_expression] = STATE(2617), + [sym__print_output_qualified_callable] = STATE(13129), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(11002), + [sym_comparison_expression] = STATE(4702), + [sym__comparison_operand] = STATE(11305), + [sym_logical_value_expression] = STATE(4703), + [sym__callable_expression] = STATE(13130), + [sym_call_expression] = STATE(10298), + [sym_new_expression] = STATE(1126), + [sym_addressof_expression] = STATE(1126), + [sym_type_of_expression] = STATE(1126), + [sym_member_expression] = STATE(1168), + [sym_qualified_member_expression] = STATE(1206), + [sym_implicit_member_expression] = STATE(1206), + [sym_parenthesized_expression] = STATE(1194), + [sym_binary_expression] = STATE(1209), + [sym_unary_expression] = STATE(2675), + [sym__signed_unary_expression] = STATE(1348), + [sym__literal] = STATE(1126), + [sym_boolean_literal] = STATE(1126), + [sym_file_number_literal] = STATE(1126), + [sym_identifier] = ACTIONS(4845), + [sym_newline] = ACTIONS(4112), + [anon_sym_COLON] = ACTIONS(4112), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4114), + [aux_sym_frm_property_statement_token1] = ACTIONS(4847), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4561), + [aux_sym__attribute_identifier_token1] = ACTIONS(4114), + [aux_sym_option_statement_token3] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4114), + [aux_sym_preprocessor_const_token1] = ACTIONS(4114), + [sym_static_modifier] = ACTIONS(4114), + [sym__dim_keyword] = ACTIONS(4114), + [sym__redim_keyword] = ACTIONS(4114), + [aux_sym_get_accessor_token1] = ACTIONS(4114), + [aux_sym_set_accessor_token1] = ACTIONS(4114), + [aux_sym_const_declaration_token1] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4869), + [aux_sym_as_type_clause_token2] = ACTIONS(4569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4851), + [aux_sym_visibility_token1] = ACTIONS(4114), + [aux_sym_visibility_token2] = ACTIONS(4114), + [aux_sym_elseif_fragment_token1] = ACTIONS(4114), + [aux_sym_else_fragment_token1] = ACTIONS(4114), + [aux_sym_select_statement_token1] = ACTIONS(4114), + [aux_sym__for_header_token1] = ACTIONS(4114), + [aux_sym_do_statement_token1] = ACTIONS(4114), + [aux_sym_do_condition_token1] = ACTIONS(4114), + [aux_sym_with_statement_token1] = ACTIONS(4114), + [aux_sym_exit_statement_token1] = ACTIONS(4114), + [sym_end_statement] = ACTIONS(4112), + [aux_sym_on_goto_statement_token1] = ACTIONS(4114), + [aux_sym_on_goto_statement_token2] = ACTIONS(4114), + [aux_sym_on_error_statement_token2] = ACTIONS(4114), + [sym__ambiguous_redim_statement] = ACTIONS(4112), + [aux_sym_erase_statement_token1] = ACTIONS(4114), + [aux_sym_open_statement_token1] = ACTIONS(4114), + [aux_sym_file_mode_token2] = ACTIONS(4114), + [aux_sym_file_access_token2] = ACTIONS(4114), + [aux_sym_file_lock_token2] = ACTIONS(4114), + [aux_sym_print_statement_token1] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4112), + [aux_sym_close_statement_token1] = ACTIONS(4114), + [aux_sym_put_statement_token1] = ACTIONS(4114), + [aux_sym_unlock_statement_token1] = ACTIONS(4114), + [aux_sym_seek_statement_token1] = ACTIONS(4114), + [sym_reset_statement] = ACTIONS(4114), + [aux_sym_raise_event_statement_token1] = ACTIONS(4114), + [sym_stop_statement] = ACTIONS(4114), + [sym_beep_statement] = ACTIONS(4114), + [aux_sym_unload_statement_token1] = ACTIONS(4114), + [aux_sym_def_type_statement_token1] = ACTIONS(4114), + [aux_sym_def_type_statement_token2] = ACTIONS(4114), + [aux_sym_def_type_statement_token3] = ACTIONS(4114), + [aux_sym_def_type_statement_token4] = ACTIONS(4114), + [aux_sym_def_type_statement_token5] = ACTIONS(4114), + [aux_sym_def_type_statement_token6] = ACTIONS(4114), + [aux_sym_def_type_statement_token7] = ACTIONS(4114), + [aux_sym_def_type_statement_token8] = ACTIONS(4114), + [aux_sym_def_type_statement_token9] = ACTIONS(4114), + [aux_sym_def_type_statement_token10] = ACTIONS(4114), + [aux_sym_def_type_statement_token11] = ACTIONS(4114), + [aux_sym_def_type_statement_token12] = ACTIONS(4114), + [aux_sym_def_type_statement_token13] = ACTIONS(4114), + [aux_sym_def_type_statement_token14] = ACTIONS(4114), + [aux_sym_call_statement_token1] = ACTIONS(4114), + [sym__ambiguous_call_statement] = ACTIONS(4114), + [aux_sym_addressof_expression_token1] = ACTIONS(4577), + [aux_sym_type_of_expression_token1] = ACTIONS(4579), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(4853), + [sym_number_literal] = ACTIONS(4853), + [aux_sym_boolean_literal_token1] = ACTIONS(4583), + [aux_sym_boolean_literal_token2] = ACTIONS(4583), + [sym_nothing_literal] = ACTIONS(4855), + [sym_null_literal] = ACTIONS(4855), + [sym_empty_literal] = ACTIONS(4855), + [sym_date_literal] = ACTIONS(4853), + [anon_sym_POUND] = ACTIONS(4587), + }, + [STATE(659)] = { + [sym__print_method_output_list] = STATE(7162), + [sym__unparenthesized_print_output_expression] = STATE(4996), + [sym__print_output_call_binary_expression] = STATE(4996), + [sym__print_output_call_operand] = STATE(10995), + [sym__print_output_member_comparison_expression] = STATE(5840), + [sym__print_output_call_member_expression] = STATE(997), + [sym__print_output_call_expression] = STATE(2996), + [sym__print_output_qualified_callable] = STATE(13646), + [sym_argument_list] = STATE(7149), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10979), + [sym_comparison_expression] = STATE(5075), + [sym__comparison_operand] = STATE(11430), + [sym_logical_value_expression] = STATE(4906), + [sym__callable_expression] = STATE(13260), + [sym_call_expression] = STATE(10300), + [sym_new_expression] = STATE(1479), + [sym_addressof_expression] = STATE(1479), + [sym_type_of_expression] = STATE(1479), + [sym_member_expression] = STATE(1524), + [sym_qualified_member_expression] = STATE(1585), + [sym_implicit_member_expression] = STATE(1585), + [sym_parenthesized_expression] = STATE(10077), + [sym_binary_expression] = STATE(1573), + [sym_unary_expression] = STATE(3301), + [sym__signed_unary_expression] = STATE(1674), + [sym__literal] = STATE(1479), + [sym_boolean_literal] = STATE(1479), + [sym_file_number_literal] = STATE(1479), + [sym_identifier] = ACTIONS(5022), + [sym_newline] = ACTIONS(4094), + [anon_sym_COLON] = ACTIONS(4094), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4096), + [aux_sym_frm_property_statement_token1] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(4899), + [anon_sym_BANG] = ACTIONS(4901), + [aux_sym__attribute_identifier_token1] = ACTIONS(4096), + [aux_sym_option_statement_token3] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4096), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4096), + [aux_sym_preprocessor_const_token1] = ACTIONS(4096), + [sym_static_modifier] = ACTIONS(4096), + [sym__dim_keyword] = ACTIONS(4096), + [sym__redim_keyword] = ACTIONS(4096), + [aux_sym_get_accessor_token1] = ACTIONS(4096), + [aux_sym_set_accessor_token1] = ACTIONS(4096), + [aux_sym_const_declaration_token1] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(5040), + [aux_sym_as_type_clause_token2] = ACTIONS(4909), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5028), + [aux_sym_visibility_token1] = ACTIONS(4096), + [aux_sym_visibility_token2] = ACTIONS(4096), + [aux_sym_elseif_fragment_token1] = ACTIONS(4096), + [aux_sym_else_fragment_token1] = ACTIONS(4096), + [aux_sym_select_statement_token1] = ACTIONS(4096), + [aux_sym__for_header_token1] = ACTIONS(4096), + [aux_sym_do_statement_token1] = ACTIONS(4096), + [aux_sym_do_condition_token1] = ACTIONS(4096), + [aux_sym_with_statement_token1] = ACTIONS(4096), + [aux_sym_exit_statement_token1] = ACTIONS(4096), + [sym_end_statement] = ACTIONS(4094), + [aux_sym_on_goto_statement_token1] = ACTIONS(4096), + [aux_sym_on_goto_statement_token2] = ACTIONS(4096), + [aux_sym_on_error_statement_token2] = ACTIONS(4096), + [sym__ambiguous_redim_statement] = ACTIONS(4094), + [aux_sym_erase_statement_token1] = ACTIONS(4096), + [aux_sym_open_statement_token1] = ACTIONS(4096), + [aux_sym_file_mode_token2] = ACTIONS(4096), + [aux_sym_file_access_token2] = ACTIONS(4096), + [aux_sym_file_lock_token2] = ACTIONS(4096), + [aux_sym_print_statement_token1] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_QMARK] = ACTIONS(4094), + [aux_sym_close_statement_token1] = ACTIONS(4096), + [aux_sym_put_statement_token1] = ACTIONS(4096), + [aux_sym_unlock_statement_token1] = ACTIONS(4096), + [aux_sym_seek_statement_token1] = ACTIONS(4096), + [sym_reset_statement] = ACTIONS(4096), + [aux_sym_raise_event_statement_token1] = ACTIONS(4096), + [sym_stop_statement] = ACTIONS(4096), + [sym_beep_statement] = ACTIONS(4096), + [aux_sym_unload_statement_token1] = ACTIONS(4096), + [aux_sym_def_type_statement_token1] = ACTIONS(4096), + [aux_sym_def_type_statement_token2] = ACTIONS(4096), + [aux_sym_def_type_statement_token3] = ACTIONS(4096), + [aux_sym_def_type_statement_token4] = ACTIONS(4096), + [aux_sym_def_type_statement_token5] = ACTIONS(4096), + [aux_sym_def_type_statement_token6] = ACTIONS(4096), + [aux_sym_def_type_statement_token7] = ACTIONS(4096), + [aux_sym_def_type_statement_token8] = ACTIONS(4096), + [aux_sym_def_type_statement_token9] = ACTIONS(4096), + [aux_sym_def_type_statement_token10] = ACTIONS(4096), + [aux_sym_def_type_statement_token11] = ACTIONS(4096), + [aux_sym_def_type_statement_token12] = ACTIONS(4096), + [aux_sym_def_type_statement_token13] = ACTIONS(4096), + [aux_sym_def_type_statement_token14] = ACTIONS(4096), + [aux_sym_call_statement_token1] = ACTIONS(4096), + [sym__ambiguous_call_statement] = ACTIONS(4096), + [aux_sym_addressof_expression_token1] = ACTIONS(4917), + [aux_sym_type_of_expression_token1] = ACTIONS(4919), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(5030), + [sym_number_literal] = ACTIONS(5030), + [aux_sym_boolean_literal_token1] = ACTIONS(4923), + [aux_sym_boolean_literal_token2] = ACTIONS(4923), + [sym_nothing_literal] = ACTIONS(5032), + [sym_null_literal] = ACTIONS(5032), + [sym_empty_literal] = ACTIONS(5032), + [sym_date_literal] = ACTIONS(5030), + [anon_sym_POUND] = ACTIONS(4927), + }, + [STATE(660)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5011), + [anon_sym_BANG] = ACTIONS(5013), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(661)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(662)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4978), + [anon_sym_BANG] = ACTIONS(4980), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(663)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(5042), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5046), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(664)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_declaration_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_enum_declaration_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4509), + [aux_sym_declare_function_statement_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [aux_sym__property_get_header_token1] = ACTIONS(4509), + [aux_sym_event_declaration_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_array_bound_token1] = ACTIONS(4509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(665)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(666)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_declaration_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_enum_declaration_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4437), + [aux_sym_declare_function_statement_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [aux_sym__property_get_header_token1] = ACTIONS(4437), + [aux_sym_event_declaration_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_array_bound_token1] = ACTIONS(4437), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(667)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_array_bound_token1] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(668)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_declaration_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_enum_declaration_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4593), + [aux_sym_declare_function_statement_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [aux_sym__property_get_header_token1] = ACTIONS(4593), + [aux_sym_event_declaration_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_array_bound_token1] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(669)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_declaration_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_enum_declaration_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4597), + [aux_sym_declare_function_statement_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [aux_sym__property_get_header_token1] = ACTIONS(4597), + [aux_sym_event_declaration_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_array_bound_token1] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(670)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(671)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_declaration_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_enum_declaration_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4625), + [aux_sym_declare_function_statement_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [aux_sym__property_get_header_token1] = ACTIONS(4625), + [aux_sym_event_declaration_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_array_bound_token1] = ACTIONS(4625), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(672)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(673)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_declaration_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_enum_declaration_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4601), + [aux_sym_declare_function_statement_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [aux_sym__property_get_header_token1] = ACTIONS(4601), + [aux_sym_event_declaration_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_array_bound_token1] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(674)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_array_bound_token1] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(675)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_declaration_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_enum_declaration_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4609), + [aux_sym_declare_function_statement_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [aux_sym__property_get_header_token1] = ACTIONS(4609), + [aux_sym_event_declaration_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_array_bound_token1] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(676)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_array_bound_token1] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(677)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(678)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_declaration_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_enum_declaration_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4509), + [aux_sym_declare_function_statement_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [aux_sym__property_get_header_token1] = ACTIONS(4509), + [aux_sym_event_declaration_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(679)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(680)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_declaration_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_enum_declaration_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4447), + [aux_sym_declare_function_statement_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [aux_sym__property_get_header_token1] = ACTIONS(4447), + [aux_sym_event_declaration_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token3] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(681)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_declaration_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_enum_declaration_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4477), + [aux_sym_declare_function_statement_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [aux_sym__property_get_header_token1] = ACTIONS(4477), + [aux_sym_event_declaration_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token3] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(682)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_declaration_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_enum_declaration_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4485), + [aux_sym_declare_function_statement_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [aux_sym__property_get_header_token1] = ACTIONS(4485), + [aux_sym_event_declaration_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token3] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(683)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_declaration_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_enum_declaration_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4509), + [aux_sym_declare_function_statement_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [aux_sym__property_get_header_token1] = ACTIONS(4509), + [aux_sym_event_declaration_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token3] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(684)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(685)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_declaration_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_enum_declaration_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4441), + [aux_sym_declare_function_statement_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [aux_sym__property_get_header_token1] = ACTIONS(4441), + [aux_sym_event_declaration_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token3] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(686)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(687)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(688)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_declaration_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_enum_declaration_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4451), + [aux_sym_declare_function_statement_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [aux_sym__property_get_header_token1] = ACTIONS(4451), + [aux_sym_event_declaration_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(5058), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token3] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5060), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5062), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_AMP] = ACTIONS(5068), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5070), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5072), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5074), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5076), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5078), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(689)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_declaration_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_enum_declaration_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4509), + [aux_sym_declare_function_statement_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [aux_sym__property_get_header_token1] = ACTIONS(4509), + [aux_sym_event_declaration_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_array_bound_token1] = ACTIONS(4509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(690)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(691)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(5058), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5060), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5062), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_AMP] = ACTIONS(5068), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(692)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_declaration_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_enum_declaration_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4589), + [aux_sym_declare_function_statement_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [aux_sym__property_get_header_token1] = ACTIONS(4589), + [aux_sym_event_declaration_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token3] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(693)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(694)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(695)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5058), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(696)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5058), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5060), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(697)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5058), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5060), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5062), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(698)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5058), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5060), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5062), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(699)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5058), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5060), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5062), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_AMP] = ACTIONS(5068), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(700)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5058), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5060), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5062), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_AMP] = ACTIONS(5068), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5070), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(701)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5058), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5060), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5062), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_AMP] = ACTIONS(5068), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5070), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5072), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(702)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5058), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5060), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5062), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_AMP] = ACTIONS(5068), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5070), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5072), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5074), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(703)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5058), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5060), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5062), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_AMP] = ACTIONS(5068), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5070), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5072), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5074), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5076), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(704)] = { + [sym__print_output_expression] = STATE(6247), + [sym__unparenthesized_print_output_expression] = STATE(6247), + [sym__print_output_call_binary_expression] = STATE(6247), + [sym__print_output_call_operand] = STATE(10995), + [sym__print_output_member_comparison_expression] = STATE(5840), + [sym__print_output_call_member_expression] = STATE(997), + [sym__print_output_call_expression] = STATE(2996), + [sym__print_output_qualified_callable] = STATE(13646), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10979), + [sym_comparison_expression] = STATE(5075), + [sym__comparison_operand] = STATE(11430), + [sym_logical_value_expression] = STATE(4906), + [sym__callable_expression] = STATE(13260), + [sym_call_expression] = STATE(10300), + [sym_new_expression] = STATE(1479), + [sym_addressof_expression] = STATE(1479), + [sym_type_of_expression] = STATE(1479), + [sym_member_expression] = STATE(1524), + [sym_qualified_member_expression] = STATE(1585), + [sym_implicit_member_expression] = STATE(1585), + [sym_parenthesized_expression] = STATE(1570), + [sym_binary_expression] = STATE(1573), + [sym_unary_expression] = STATE(3301), + [sym__signed_unary_expression] = STATE(1674), + [sym__literal] = STATE(1479), + [sym_boolean_literal] = STATE(1479), + [sym_file_number_literal] = STATE(1479), + [sym_identifier] = ACTIONS(5022), + [sym_newline] = ACTIONS(4104), + [anon_sym_COLON] = ACTIONS(4104), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4106), + [aux_sym_frm_property_statement_token1] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(4899), + [anon_sym_BANG] = ACTIONS(4901), + [aux_sym__attribute_identifier_token1] = ACTIONS(4106), + [aux_sym_option_statement_token3] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4106), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4106), + [aux_sym_preprocessor_const_token1] = ACTIONS(4106), + [sym_static_modifier] = ACTIONS(4106), + [sym__dim_keyword] = ACTIONS(4106), + [sym__redim_keyword] = ACTIONS(4106), + [aux_sym_get_accessor_token1] = ACTIONS(4106), + [aux_sym_set_accessor_token1] = ACTIONS(4106), + [aux_sym_const_declaration_token1] = ACTIONS(4106), + [anon_sym_LPAREN] = ACTIONS(5026), + [aux_sym_as_type_clause_token2] = ACTIONS(4909), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5028), + [aux_sym_visibility_token1] = ACTIONS(4106), + [aux_sym_visibility_token2] = ACTIONS(4106), + [aux_sym_elseif_fragment_token1] = ACTIONS(4106), + [aux_sym_else_fragment_token1] = ACTIONS(4106), + [aux_sym_select_statement_token1] = ACTIONS(4106), + [aux_sym__for_header_token1] = ACTIONS(4106), + [aux_sym_do_statement_token1] = ACTIONS(4106), + [aux_sym_do_condition_token1] = ACTIONS(4106), + [aux_sym_with_statement_token1] = ACTIONS(4106), + [aux_sym_exit_statement_token1] = ACTIONS(4106), + [sym_end_statement] = ACTIONS(4104), + [aux_sym_on_goto_statement_token1] = ACTIONS(4106), + [aux_sym_on_goto_statement_token2] = ACTIONS(4106), + [aux_sym_on_error_statement_token2] = ACTIONS(4106), + [sym__ambiguous_redim_statement] = ACTIONS(4104), + [aux_sym_erase_statement_token1] = ACTIONS(4106), + [aux_sym_open_statement_token1] = ACTIONS(4106), + [aux_sym_file_mode_token2] = ACTIONS(4106), + [aux_sym_file_access_token2] = ACTIONS(4106), + [aux_sym_file_lock_token2] = ACTIONS(4106), + [aux_sym_print_statement_token1] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_QMARK] = ACTIONS(4104), + [aux_sym_close_statement_token1] = ACTIONS(4106), + [aux_sym_put_statement_token1] = ACTIONS(4106), + [aux_sym_unlock_statement_token1] = ACTIONS(4106), + [aux_sym_seek_statement_token1] = ACTIONS(4106), + [sym_reset_statement] = ACTIONS(4106), + [aux_sym_raise_event_statement_token1] = ACTIONS(4106), + [sym_stop_statement] = ACTIONS(4106), + [sym_beep_statement] = ACTIONS(4106), + [aux_sym_unload_statement_token1] = ACTIONS(4106), + [aux_sym_def_type_statement_token1] = ACTIONS(4106), + [aux_sym_def_type_statement_token2] = ACTIONS(4106), + [aux_sym_def_type_statement_token3] = ACTIONS(4106), + [aux_sym_def_type_statement_token4] = ACTIONS(4106), + [aux_sym_def_type_statement_token5] = ACTIONS(4106), + [aux_sym_def_type_statement_token6] = ACTIONS(4106), + [aux_sym_def_type_statement_token7] = ACTIONS(4106), + [aux_sym_def_type_statement_token8] = ACTIONS(4106), + [aux_sym_def_type_statement_token9] = ACTIONS(4106), + [aux_sym_def_type_statement_token10] = ACTIONS(4106), + [aux_sym_def_type_statement_token11] = ACTIONS(4106), + [aux_sym_def_type_statement_token12] = ACTIONS(4106), + [aux_sym_def_type_statement_token13] = ACTIONS(4106), + [aux_sym_def_type_statement_token14] = ACTIONS(4106), + [aux_sym_call_statement_token1] = ACTIONS(4106), + [sym__ambiguous_call_statement] = ACTIONS(4106), + [aux_sym_addressof_expression_token1] = ACTIONS(4917), + [aux_sym_type_of_expression_token1] = ACTIONS(4919), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(5030), + [sym_number_literal] = ACTIONS(5030), + [aux_sym_boolean_literal_token1] = ACTIONS(4923), + [aux_sym_boolean_literal_token2] = ACTIONS(4923), + [sym_nothing_literal] = ACTIONS(5032), + [sym_null_literal] = ACTIONS(5032), + [sym_empty_literal] = ACTIONS(5032), + [sym_date_literal] = ACTIONS(5030), + [anon_sym_POUND] = ACTIONS(4927), + }, + [STATE(705)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_declaration_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_enum_declaration_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4437), + [aux_sym_declare_function_statement_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [aux_sym__property_get_header_token1] = ACTIONS(4437), + [aux_sym_event_declaration_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token3] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(706)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(707)] = { + [sym__argument] = STATE(4933), + [sym_named_argument] = STATE(4933), + [sym_byval_argument] = STATE(4933), + [sym__primary_expression] = STATE(830), + [sym__expression] = STATE(2340), + [sym_comparison_expression] = STATE(4594), + [sym__comparison_operand] = STATE(11302), + [sym_logical_value_expression] = STATE(4594), + [sym__callable_expression] = STATE(13462), + [sym_call_expression] = STATE(777), + [sym_new_expression] = STATE(830), + [sym_addressof_expression] = STATE(830), + [sym_type_of_expression] = STATE(830), + [sym_member_expression] = STATE(814), + [sym_qualified_member_expression] = STATE(865), + [sym_implicit_member_expression] = STATE(865), + [sym_parenthesized_expression] = STATE(830), + [sym_binary_expression] = STATE(830), + [sym_unary_expression] = STATE(2340), + [sym__signed_unary_expression] = STATE(837), + [sym__literal] = STATE(830), + [sym_boolean_literal] = STATE(830), + [sym_file_number_literal] = STATE(830), + [sym_identifier] = ACTIONS(5080), + [sym_newline] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4181), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4183), + [aux_sym_frm_property_statement_token1] = ACTIONS(5083), + [anon_sym_DOT] = ACTIONS(5086), + [anon_sym_BANG] = ACTIONS(5089), + [aux_sym__attribute_identifier_token1] = ACTIONS(4183), + [aux_sym_option_statement_token3] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4183), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4183), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4183), + [aux_sym_preprocessor_const_token1] = ACTIONS(4183), + [sym_static_modifier] = ACTIONS(4183), + [sym__dim_keyword] = ACTIONS(4183), + [sym__redim_keyword] = ACTIONS(4183), + [aux_sym_byval_modifier_token1] = ACTIONS(4268), + [aux_sym_get_accessor_token1] = ACTIONS(4183), + [aux_sym_set_accessor_token1] = ACTIONS(4183), + [anon_sym_COMMA] = ACTIONS(4181), + [aux_sym_const_declaration_token1] = ACTIONS(4183), + [anon_sym_LPAREN] = ACTIONS(5092), + [aux_sym_as_type_clause_token2] = ACTIONS(5095), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5098), + [aux_sym_visibility_token1] = ACTIONS(4183), + [aux_sym_visibility_token2] = ACTIONS(4183), + [aux_sym_elseif_fragment_token1] = ACTIONS(4183), + [aux_sym_else_fragment_token1] = ACTIONS(4183), + [aux_sym_select_statement_token1] = ACTIONS(4183), + [aux_sym__for_header_token1] = ACTIONS(4183), + [aux_sym_do_statement_token1] = ACTIONS(4183), + [aux_sym_do_condition_token1] = ACTIONS(4183), + [aux_sym_with_statement_token1] = ACTIONS(4183), + [aux_sym_exit_statement_token1] = ACTIONS(4183), + [sym_end_statement] = ACTIONS(4181), + [aux_sym_on_goto_statement_token1] = ACTIONS(4183), + [aux_sym_on_goto_statement_token2] = ACTIONS(4183), + [aux_sym_on_error_statement_token2] = ACTIONS(4183), + [sym__ambiguous_redim_statement] = ACTIONS(4181), + [aux_sym_erase_statement_token1] = ACTIONS(4183), + [aux_sym_open_statement_token1] = ACTIONS(4183), + [aux_sym_file_mode_token2] = ACTIONS(4183), + [aux_sym_file_access_token2] = ACTIONS(4183), + [aux_sym_file_lock_token2] = ACTIONS(4183), + [aux_sym_print_statement_token1] = ACTIONS(4183), + [anon_sym_PLUS] = ACTIONS(5101), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_QMARK] = ACTIONS(4181), + [aux_sym_close_statement_token1] = ACTIONS(4183), + [aux_sym_put_statement_token1] = ACTIONS(4183), + [aux_sym_unlock_statement_token1] = ACTIONS(4183), + [aux_sym_seek_statement_token1] = ACTIONS(4183), + [sym_reset_statement] = ACTIONS(4183), + [aux_sym_raise_event_statement_token1] = ACTIONS(4183), + [sym_stop_statement] = ACTIONS(4183), + [sym_beep_statement] = ACTIONS(4183), + [aux_sym_unload_statement_token1] = ACTIONS(4183), + [aux_sym_def_type_statement_token1] = ACTIONS(4183), + [aux_sym_def_type_statement_token2] = ACTIONS(4183), + [aux_sym_def_type_statement_token3] = ACTIONS(4183), + [aux_sym_def_type_statement_token4] = ACTIONS(4183), + [aux_sym_def_type_statement_token5] = ACTIONS(4183), + [aux_sym_def_type_statement_token6] = ACTIONS(4183), + [aux_sym_def_type_statement_token7] = ACTIONS(4183), + [aux_sym_def_type_statement_token8] = ACTIONS(4183), + [aux_sym_def_type_statement_token9] = ACTIONS(4183), + [aux_sym_def_type_statement_token10] = ACTIONS(4183), + [aux_sym_def_type_statement_token11] = ACTIONS(4183), + [aux_sym_def_type_statement_token12] = ACTIONS(4183), + [aux_sym_def_type_statement_token13] = ACTIONS(4183), + [aux_sym_def_type_statement_token14] = ACTIONS(4183), + [aux_sym_call_statement_token1] = ACTIONS(4183), + [sym__ambiguous_call_statement] = ACTIONS(4183), + [aux_sym_addressof_expression_token1] = ACTIONS(5107), + [aux_sym_type_of_expression_token1] = ACTIONS(5110), + [aux_sym_unary_expression_token1] = ACTIONS(5113), + [sym_string_literal] = ACTIONS(5116), + [sym_number_literal] = ACTIONS(5116), + [aux_sym_boolean_literal_token1] = ACTIONS(5119), + [aux_sym_boolean_literal_token2] = ACTIONS(5119), + [sym_nothing_literal] = ACTIONS(5122), + [sym_null_literal] = ACTIONS(5122), + [sym_empty_literal] = ACTIONS(5122), + [sym_date_literal] = ACTIONS(5116), + [anon_sym_POUND] = ACTIONS(5125), + }, + [STATE(708)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_declaration_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_enum_declaration_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4625), + [aux_sym_declare_function_statement_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [aux_sym__property_get_header_token1] = ACTIONS(4625), + [aux_sym_event_declaration_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token3] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(709)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(710)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token3] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(711)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_declaration_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_enum_declaration_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4593), + [aux_sym_declare_function_statement_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [aux_sym__property_get_header_token1] = ACTIONS(4593), + [aux_sym_event_declaration_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token3] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(712)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_declaration_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_enum_declaration_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4597), + [aux_sym_declare_function_statement_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [aux_sym__property_get_header_token1] = ACTIONS(4597), + [aux_sym_event_declaration_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token3] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(713)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_declaration_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_enum_declaration_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4509), + [aux_sym_declare_function_statement_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [aux_sym__property_get_header_token1] = ACTIONS(4509), + [aux_sym_event_declaration_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token3] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(714)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(715)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(5042), + [aux_sym_array_bound_token1] = ACTIONS(4647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5046), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(716)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_declaration_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_enum_declaration_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4601), + [aux_sym_declare_function_statement_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [aux_sym__property_get_header_token1] = ACTIONS(4601), + [aux_sym_event_declaration_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token3] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(717)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token3] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(718)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_declaration_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_enum_declaration_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4609), + [aux_sym_declare_function_statement_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [aux_sym__property_get_header_token1] = ACTIONS(4609), + [aux_sym_event_declaration_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token3] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(719)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token3] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(720)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(5058), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token3] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5060), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5062), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_AMP] = ACTIONS(5068), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(721)] = { + [sym__print_output_expression] = STATE(6247), + [sym__unparenthesized_print_output_expression] = STATE(6247), + [sym__print_output_call_binary_expression] = STATE(6247), + [sym__print_output_call_operand] = STATE(10995), + [sym__print_output_member_comparison_expression] = STATE(5840), + [sym__print_output_call_member_expression] = STATE(997), + [sym__print_output_call_expression] = STATE(2996), + [sym__print_output_qualified_callable] = STATE(13646), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10979), + [sym_comparison_expression] = STATE(5075), + [sym__comparison_operand] = STATE(11430), + [sym_logical_value_expression] = STATE(4906), + [sym__callable_expression] = STATE(13260), + [sym_call_expression] = STATE(10300), + [sym_new_expression] = STATE(1479), + [sym_addressof_expression] = STATE(1479), + [sym_type_of_expression] = STATE(1479), + [sym_member_expression] = STATE(1524), + [sym_qualified_member_expression] = STATE(1585), + [sym_implicit_member_expression] = STATE(1585), + [sym_parenthesized_expression] = STATE(1570), + [sym_binary_expression] = STATE(1573), + [sym_unary_expression] = STATE(3301), + [sym__signed_unary_expression] = STATE(1674), + [sym__literal] = STATE(1479), + [sym_boolean_literal] = STATE(1479), + [sym_file_number_literal] = STATE(1479), + [sym_identifier] = ACTIONS(5022), + [sym_newline] = ACTIONS(4112), + [anon_sym_COLON] = ACTIONS(4112), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4114), + [aux_sym_frm_property_statement_token1] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(4899), + [anon_sym_BANG] = ACTIONS(4901), + [aux_sym__attribute_identifier_token1] = ACTIONS(4114), + [aux_sym_option_statement_token3] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4114), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4114), + [aux_sym_preprocessor_const_token1] = ACTIONS(4114), + [sym_static_modifier] = ACTIONS(4114), + [sym__dim_keyword] = ACTIONS(4114), + [sym__redim_keyword] = ACTIONS(4114), + [aux_sym_get_accessor_token1] = ACTIONS(4114), + [aux_sym_set_accessor_token1] = ACTIONS(4114), + [aux_sym_const_declaration_token1] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(5026), + [aux_sym_as_type_clause_token2] = ACTIONS(4909), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5028), + [aux_sym_visibility_token1] = ACTIONS(4114), + [aux_sym_visibility_token2] = ACTIONS(4114), + [aux_sym_elseif_fragment_token1] = ACTIONS(4114), + [aux_sym_else_fragment_token1] = ACTIONS(4114), + [aux_sym_select_statement_token1] = ACTIONS(4114), + [aux_sym__for_header_token1] = ACTIONS(4114), + [aux_sym_do_statement_token1] = ACTIONS(4114), + [aux_sym_do_condition_token1] = ACTIONS(4114), + [aux_sym_with_statement_token1] = ACTIONS(4114), + [aux_sym_exit_statement_token1] = ACTIONS(4114), + [sym_end_statement] = ACTIONS(4112), + [aux_sym_on_goto_statement_token1] = ACTIONS(4114), + [aux_sym_on_goto_statement_token2] = ACTIONS(4114), + [aux_sym_on_error_statement_token2] = ACTIONS(4114), + [sym__ambiguous_redim_statement] = ACTIONS(4112), + [aux_sym_erase_statement_token1] = ACTIONS(4114), + [aux_sym_open_statement_token1] = ACTIONS(4114), + [aux_sym_file_mode_token2] = ACTIONS(4114), + [aux_sym_file_access_token2] = ACTIONS(4114), + [aux_sym_file_lock_token2] = ACTIONS(4114), + [aux_sym_print_statement_token1] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_QMARK] = ACTIONS(4112), + [aux_sym_close_statement_token1] = ACTIONS(4114), + [aux_sym_put_statement_token1] = ACTIONS(4114), + [aux_sym_unlock_statement_token1] = ACTIONS(4114), + [aux_sym_seek_statement_token1] = ACTIONS(4114), + [sym_reset_statement] = ACTIONS(4114), + [aux_sym_raise_event_statement_token1] = ACTIONS(4114), + [sym_stop_statement] = ACTIONS(4114), + [sym_beep_statement] = ACTIONS(4114), + [aux_sym_unload_statement_token1] = ACTIONS(4114), + [aux_sym_def_type_statement_token1] = ACTIONS(4114), + [aux_sym_def_type_statement_token2] = ACTIONS(4114), + [aux_sym_def_type_statement_token3] = ACTIONS(4114), + [aux_sym_def_type_statement_token4] = ACTIONS(4114), + [aux_sym_def_type_statement_token5] = ACTIONS(4114), + [aux_sym_def_type_statement_token6] = ACTIONS(4114), + [aux_sym_def_type_statement_token7] = ACTIONS(4114), + [aux_sym_def_type_statement_token8] = ACTIONS(4114), + [aux_sym_def_type_statement_token9] = ACTIONS(4114), + [aux_sym_def_type_statement_token10] = ACTIONS(4114), + [aux_sym_def_type_statement_token11] = ACTIONS(4114), + [aux_sym_def_type_statement_token12] = ACTIONS(4114), + [aux_sym_def_type_statement_token13] = ACTIONS(4114), + [aux_sym_def_type_statement_token14] = ACTIONS(4114), + [aux_sym_call_statement_token1] = ACTIONS(4114), + [sym__ambiguous_call_statement] = ACTIONS(4114), + [aux_sym_addressof_expression_token1] = ACTIONS(4917), + [aux_sym_type_of_expression_token1] = ACTIONS(4919), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(5030), + [sym_number_literal] = ACTIONS(5030), + [aux_sym_boolean_literal_token1] = ACTIONS(4923), + [aux_sym_boolean_literal_token2] = ACTIONS(4923), + [sym_nothing_literal] = ACTIONS(5032), + [sym_null_literal] = ACTIONS(5032), + [sym_empty_literal] = ACTIONS(5032), + [sym_date_literal] = ACTIONS(5030), + [anon_sym_POUND] = ACTIONS(4927), + }, + [STATE(722)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(723)] = { + [sym_file_number] = STATE(3500), + [sym__primary_expression] = STATE(1435), + [sym__expression] = STATE(1435), + [sym__callable_expression] = STATE(13325), + [sym_call_expression] = STATE(775), + [sym_new_expression] = STATE(1435), + [sym_addressof_expression] = STATE(1435), + [sym_type_of_expression] = STATE(1435), + [sym_member_expression] = STATE(792), + [sym_qualified_member_expression] = STATE(771), + [sym_implicit_member_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_unary_expression] = STATE(1435), + [sym__signed_unary_expression] = STATE(835), + [sym__literal] = STATE(1435), + [sym_boolean_literal] = STATE(1435), + [sym_file_number_literal] = STATE(1436), + [sym_identifier] = ACTIONS(5128), + [sym_newline] = ACTIONS(5130), + [anon_sym_COLON] = ACTIONS(5130), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5132), + [aux_sym_frm_property_statement_token1] = ACTIONS(5134), + [anon_sym_DOT] = ACTIONS(5136), + [anon_sym_BANG] = ACTIONS(71), + [aux_sym__attribute_identifier_token1] = ACTIONS(5132), + [aux_sym_option_statement_token3] = ACTIONS(5132), + [aux_sym_type_declaration_token1] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5132), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5132), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5132), + [aux_sym_enum_declaration_token1] = ACTIONS(5132), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5132), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5132), + [aux_sym_declare_function_statement_token1] = ACTIONS(5132), + [aux_sym_preprocessor_const_token1] = ACTIONS(5132), + [aux_sym__property_get_header_token1] = ACTIONS(5132), + [aux_sym_event_declaration_token1] = ACTIONS(5132), + [sym_static_modifier] = ACTIONS(5132), + [sym__dim_keyword] = ACTIONS(5132), + [sym__redim_keyword] = ACTIONS(5132), + [aux_sym_get_accessor_token1] = ACTIONS(5132), + [aux_sym_set_accessor_token1] = ACTIONS(5132), + [aux_sym_const_declaration_token1] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(107), + [aux_sym_as_type_clause_token2] = ACTIONS(109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5138), + [aux_sym_visibility_token1] = ACTIONS(5132), + [aux_sym_visibility_token2] = ACTIONS(5132), + [aux_sym_elseif_fragment_token1] = ACTIONS(5132), + [aux_sym_else_fragment_token1] = ACTIONS(5132), + [aux_sym_select_statement_token1] = ACTIONS(5132), + [aux_sym__for_header_token1] = ACTIONS(5132), + [aux_sym_do_statement_token1] = ACTIONS(5132), + [aux_sym_do_condition_token1] = ACTIONS(5132), + [aux_sym_with_statement_token1] = ACTIONS(5132), + [aux_sym_exit_statement_token1] = ACTIONS(5132), + [sym_end_statement] = ACTIONS(5130), + [aux_sym_on_goto_statement_token1] = ACTIONS(5132), + [aux_sym_on_goto_statement_token2] = ACTIONS(5132), + [aux_sym_on_error_statement_token2] = ACTIONS(5132), + [sym__ambiguous_redim_statement] = ACTIONS(5130), + [aux_sym_erase_statement_token1] = ACTIONS(5132), + [aux_sym_open_statement_token1] = ACTIONS(5132), + [aux_sym_file_mode_token2] = ACTIONS(5132), + [aux_sym_file_access_token2] = ACTIONS(5132), + [aux_sym_file_lock_token2] = ACTIONS(5132), + [aux_sym_print_statement_token1] = ACTIONS(5132), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(5130), + [aux_sym_close_statement_token1] = ACTIONS(5132), + [aux_sym_put_statement_token1] = ACTIONS(5132), + [aux_sym_unlock_statement_token1] = ACTIONS(5132), + [aux_sym_seek_statement_token1] = ACTIONS(5132), + [sym_reset_statement] = ACTIONS(5132), + [aux_sym_raise_event_statement_token1] = ACTIONS(5132), + [sym_stop_statement] = ACTIONS(5132), + [sym_beep_statement] = ACTIONS(5132), + [aux_sym_unload_statement_token1] = ACTIONS(5132), + [aux_sym_def_type_statement_token1] = ACTIONS(5132), + [aux_sym_def_type_statement_token2] = ACTIONS(5132), + [aux_sym_def_type_statement_token3] = ACTIONS(5132), + [aux_sym_def_type_statement_token4] = ACTIONS(5132), + [aux_sym_def_type_statement_token5] = ACTIONS(5132), + [aux_sym_def_type_statement_token6] = ACTIONS(5132), + [aux_sym_def_type_statement_token7] = ACTIONS(5132), + [aux_sym_def_type_statement_token8] = ACTIONS(5132), + [aux_sym_def_type_statement_token9] = ACTIONS(5132), + [aux_sym_def_type_statement_token10] = ACTIONS(5132), + [aux_sym_def_type_statement_token11] = ACTIONS(5132), + [aux_sym_def_type_statement_token12] = ACTIONS(5132), + [aux_sym_def_type_statement_token13] = ACTIONS(5132), + [aux_sym_def_type_statement_token14] = ACTIONS(5132), + [aux_sym_call_statement_token1] = ACTIONS(5132), + [sym__ambiguous_call_statement] = ACTIONS(5132), + [aux_sym_addressof_expression_token1] = ACTIONS(175), + [aux_sym_type_of_expression_token1] = ACTIONS(177), + [aux_sym_unary_expression_token1] = ACTIONS(179), + [sym_string_literal] = ACTIONS(5140), + [sym_number_literal] = ACTIONS(5140), + [aux_sym_boolean_literal_token1] = ACTIONS(185), + [aux_sym_boolean_literal_token2] = ACTIONS(185), + [sym_nothing_literal] = ACTIONS(5142), + [sym_null_literal] = ACTIONS(5142), + [sym_empty_literal] = ACTIONS(5142), + [sym_date_literal] = ACTIONS(5140), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(724)] = { + [sym__print_output_expression] = STATE(6247), + [sym__unparenthesized_print_output_expression] = STATE(6247), + [sym__print_output_call_binary_expression] = STATE(6247), + [sym__print_output_call_operand] = STATE(10995), + [sym__print_output_member_comparison_expression] = STATE(5840), + [sym__print_output_call_member_expression] = STATE(997), + [sym__print_output_call_expression] = STATE(2996), + [sym__print_output_qualified_callable] = STATE(13646), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10979), + [sym_comparison_expression] = STATE(5075), + [sym__comparison_operand] = STATE(11430), + [sym_logical_value_expression] = STATE(4906), + [sym__callable_expression] = STATE(13260), + [sym_call_expression] = STATE(10300), + [sym_new_expression] = STATE(1479), + [sym_addressof_expression] = STATE(1479), + [sym_type_of_expression] = STATE(1479), + [sym_member_expression] = STATE(1524), + [sym_qualified_member_expression] = STATE(1585), + [sym_implicit_member_expression] = STATE(1585), + [sym_parenthesized_expression] = STATE(1570), + [sym_binary_expression] = STATE(1573), + [sym_unary_expression] = STATE(3301), + [sym__signed_unary_expression] = STATE(1674), + [sym__literal] = STATE(1479), + [sym_boolean_literal] = STATE(1479), + [sym_file_number_literal] = STATE(1479), + [sym_identifier] = ACTIONS(5022), + [sym_newline] = ACTIONS(4100), + [anon_sym_COLON] = ACTIONS(4100), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4102), + [aux_sym_frm_property_statement_token1] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(4899), + [anon_sym_BANG] = ACTIONS(4901), + [aux_sym__attribute_identifier_token1] = ACTIONS(4102), + [aux_sym_option_statement_token3] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4102), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4102), + [aux_sym_preprocessor_const_token1] = ACTIONS(4102), + [sym_static_modifier] = ACTIONS(4102), + [sym__dim_keyword] = ACTIONS(4102), + [sym__redim_keyword] = ACTIONS(4102), + [aux_sym_get_accessor_token1] = ACTIONS(4102), + [aux_sym_set_accessor_token1] = ACTIONS(4102), + [aux_sym_const_declaration_token1] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(5026), + [aux_sym_as_type_clause_token2] = ACTIONS(4909), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5028), + [aux_sym_visibility_token1] = ACTIONS(4102), + [aux_sym_visibility_token2] = ACTIONS(4102), + [aux_sym_elseif_fragment_token1] = ACTIONS(4102), + [aux_sym_else_fragment_token1] = ACTIONS(4102), + [aux_sym_select_statement_token1] = ACTIONS(4102), + [aux_sym__for_header_token1] = ACTIONS(4102), + [aux_sym_do_statement_token1] = ACTIONS(4102), + [aux_sym_do_condition_token1] = ACTIONS(4102), + [aux_sym_with_statement_token1] = ACTIONS(4102), + [aux_sym_exit_statement_token1] = ACTIONS(4102), + [sym_end_statement] = ACTIONS(4100), + [aux_sym_on_goto_statement_token1] = ACTIONS(4102), + [aux_sym_on_goto_statement_token2] = ACTIONS(4102), + [aux_sym_on_error_statement_token2] = ACTIONS(4102), + [sym__ambiguous_redim_statement] = ACTIONS(4100), + [aux_sym_erase_statement_token1] = ACTIONS(4102), + [aux_sym_open_statement_token1] = ACTIONS(4102), + [aux_sym_file_mode_token2] = ACTIONS(4102), + [aux_sym_file_access_token2] = ACTIONS(4102), + [aux_sym_file_lock_token2] = ACTIONS(4102), + [aux_sym_print_statement_token1] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_QMARK] = ACTIONS(4100), + [aux_sym_close_statement_token1] = ACTIONS(4102), + [aux_sym_put_statement_token1] = ACTIONS(4102), + [aux_sym_unlock_statement_token1] = ACTIONS(4102), + [aux_sym_seek_statement_token1] = ACTIONS(4102), + [sym_reset_statement] = ACTIONS(4102), + [aux_sym_raise_event_statement_token1] = ACTIONS(4102), + [sym_stop_statement] = ACTIONS(4102), + [sym_beep_statement] = ACTIONS(4102), + [aux_sym_unload_statement_token1] = ACTIONS(4102), + [aux_sym_def_type_statement_token1] = ACTIONS(4102), + [aux_sym_def_type_statement_token2] = ACTIONS(4102), + [aux_sym_def_type_statement_token3] = ACTIONS(4102), + [aux_sym_def_type_statement_token4] = ACTIONS(4102), + [aux_sym_def_type_statement_token5] = ACTIONS(4102), + [aux_sym_def_type_statement_token6] = ACTIONS(4102), + [aux_sym_def_type_statement_token7] = ACTIONS(4102), + [aux_sym_def_type_statement_token8] = ACTIONS(4102), + [aux_sym_def_type_statement_token9] = ACTIONS(4102), + [aux_sym_def_type_statement_token10] = ACTIONS(4102), + [aux_sym_def_type_statement_token11] = ACTIONS(4102), + [aux_sym_def_type_statement_token12] = ACTIONS(4102), + [aux_sym_def_type_statement_token13] = ACTIONS(4102), + [aux_sym_def_type_statement_token14] = ACTIONS(4102), + [aux_sym_call_statement_token1] = ACTIONS(4102), + [sym__ambiguous_call_statement] = ACTIONS(4102), + [aux_sym_addressof_expression_token1] = ACTIONS(4917), + [aux_sym_type_of_expression_token1] = ACTIONS(4919), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(5030), + [sym_number_literal] = ACTIONS(5030), + [aux_sym_boolean_literal_token1] = ACTIONS(4923), + [aux_sym_boolean_literal_token2] = ACTIONS(4923), + [sym_nothing_literal] = ACTIONS(5032), + [sym_null_literal] = ACTIONS(5032), + [sym_empty_literal] = ACTIONS(5032), + [sym_date_literal] = ACTIONS(5030), + [anon_sym_POUND] = ACTIONS(4927), + }, + [STATE(725)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_declaration_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_enum_declaration_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4447), + [aux_sym_declare_function_statement_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [aux_sym__property_get_header_token1] = ACTIONS(4447), + [aux_sym_event_declaration_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_array_bound_token1] = ACTIONS(4447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(726)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_declaration_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_enum_declaration_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4477), + [aux_sym_declare_function_statement_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [aux_sym__property_get_header_token1] = ACTIONS(4477), + [aux_sym_event_declaration_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_array_bound_token1] = ACTIONS(4477), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(727)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_declaration_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_enum_declaration_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4485), + [aux_sym_declare_function_statement_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [aux_sym__property_get_header_token1] = ACTIONS(4485), + [aux_sym_event_declaration_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_array_bound_token1] = ACTIONS(4485), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(728)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_declaration_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_enum_declaration_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4441), + [aux_sym_declare_function_statement_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [aux_sym__property_get_header_token1] = ACTIONS(4441), + [aux_sym_event_declaration_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_array_bound_token1] = ACTIONS(4441), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(729)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_declaration_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_enum_declaration_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4451), + [aux_sym_declare_function_statement_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [aux_sym__property_get_header_token1] = ACTIONS(4451), + [aux_sym_event_declaration_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(5042), + [aux_sym_array_bound_token1] = ACTIONS(4451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5046), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5144), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5146), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5148), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5150), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5152), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(730)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_declaration_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_enum_declaration_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4589), + [aux_sym_declare_function_statement_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [aux_sym__property_get_header_token1] = ACTIONS(4589), + [aux_sym_event_declaration_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_array_bound_token1] = ACTIONS(4589), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(731)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(732)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(733)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5042), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(734)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5042), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5046), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(735)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5042), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5046), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(736)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5042), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5046), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(737)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5042), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5046), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(738)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5042), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5046), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5144), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(739)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5042), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5046), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5144), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5146), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(740)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5042), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5046), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5144), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5146), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5148), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(741)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5042), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5046), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5144), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5146), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5148), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5150), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(742)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(743)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(744)] = { + [sym__print_output_expression] = STATE(6247), + [sym__unparenthesized_print_output_expression] = STATE(6247), + [sym__print_output_call_binary_expression] = STATE(6247), + [sym__print_output_call_operand] = STATE(10995), + [sym__print_output_member_comparison_expression] = STATE(5840), + [sym__print_output_call_member_expression] = STATE(997), + [sym__print_output_call_expression] = STATE(2996), + [sym__print_output_qualified_callable] = STATE(13646), + [sym__primary_expression] = STATE(10077), + [sym__expression] = STATE(10979), + [sym_comparison_expression] = STATE(5075), + [sym__comparison_operand] = STATE(11430), + [sym_logical_value_expression] = STATE(4906), + [sym__callable_expression] = STATE(13260), + [sym_call_expression] = STATE(10300), + [sym_new_expression] = STATE(1479), + [sym_addressof_expression] = STATE(1479), + [sym_type_of_expression] = STATE(1479), + [sym_member_expression] = STATE(1524), + [sym_qualified_member_expression] = STATE(1585), + [sym_implicit_member_expression] = STATE(1585), + [sym_parenthesized_expression] = STATE(1570), + [sym_binary_expression] = STATE(1573), + [sym_unary_expression] = STATE(3301), + [sym__signed_unary_expression] = STATE(1674), + [sym__literal] = STATE(1479), + [sym_boolean_literal] = STATE(1479), + [sym_file_number_literal] = STATE(1479), + [sym_identifier] = ACTIONS(5022), + [sym_newline] = ACTIONS(4108), + [anon_sym_COLON] = ACTIONS(4108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4110), + [aux_sym_frm_property_statement_token1] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(4899), + [anon_sym_BANG] = ACTIONS(4901), + [aux_sym__attribute_identifier_token1] = ACTIONS(4110), + [aux_sym_option_statement_token3] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4110), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4110), + [aux_sym_preprocessor_const_token1] = ACTIONS(4110), + [sym_static_modifier] = ACTIONS(4110), + [sym__dim_keyword] = ACTIONS(4110), + [sym__redim_keyword] = ACTIONS(4110), + [aux_sym_get_accessor_token1] = ACTIONS(4110), + [aux_sym_set_accessor_token1] = ACTIONS(4110), + [aux_sym_const_declaration_token1] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(5026), + [aux_sym_as_type_clause_token2] = ACTIONS(4909), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5028), + [aux_sym_visibility_token1] = ACTIONS(4110), + [aux_sym_visibility_token2] = ACTIONS(4110), + [aux_sym_elseif_fragment_token1] = ACTIONS(4110), + [aux_sym_else_fragment_token1] = ACTIONS(4110), + [aux_sym_select_statement_token1] = ACTIONS(4110), + [aux_sym__for_header_token1] = ACTIONS(4110), + [aux_sym_do_statement_token1] = ACTIONS(4110), + [aux_sym_do_condition_token1] = ACTIONS(4110), + [aux_sym_with_statement_token1] = ACTIONS(4110), + [aux_sym_exit_statement_token1] = ACTIONS(4110), + [sym_end_statement] = ACTIONS(4108), + [aux_sym_on_goto_statement_token1] = ACTIONS(4110), + [aux_sym_on_goto_statement_token2] = ACTIONS(4110), + [aux_sym_on_error_statement_token2] = ACTIONS(4110), + [sym__ambiguous_redim_statement] = ACTIONS(4108), + [aux_sym_erase_statement_token1] = ACTIONS(4110), + [aux_sym_open_statement_token1] = ACTIONS(4110), + [aux_sym_file_mode_token2] = ACTIONS(4110), + [aux_sym_file_access_token2] = ACTIONS(4110), + [aux_sym_file_lock_token2] = ACTIONS(4110), + [aux_sym_print_statement_token1] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_QMARK] = ACTIONS(4108), + [aux_sym_close_statement_token1] = ACTIONS(4110), + [aux_sym_put_statement_token1] = ACTIONS(4110), + [aux_sym_unlock_statement_token1] = ACTIONS(4110), + [aux_sym_seek_statement_token1] = ACTIONS(4110), + [sym_reset_statement] = ACTIONS(4110), + [aux_sym_raise_event_statement_token1] = ACTIONS(4110), + [sym_stop_statement] = ACTIONS(4110), + [sym_beep_statement] = ACTIONS(4110), + [aux_sym_unload_statement_token1] = ACTIONS(4110), + [aux_sym_def_type_statement_token1] = ACTIONS(4110), + [aux_sym_def_type_statement_token2] = ACTIONS(4110), + [aux_sym_def_type_statement_token3] = ACTIONS(4110), + [aux_sym_def_type_statement_token4] = ACTIONS(4110), + [aux_sym_def_type_statement_token5] = ACTIONS(4110), + [aux_sym_def_type_statement_token6] = ACTIONS(4110), + [aux_sym_def_type_statement_token7] = ACTIONS(4110), + [aux_sym_def_type_statement_token8] = ACTIONS(4110), + [aux_sym_def_type_statement_token9] = ACTIONS(4110), + [aux_sym_def_type_statement_token10] = ACTIONS(4110), + [aux_sym_def_type_statement_token11] = ACTIONS(4110), + [aux_sym_def_type_statement_token12] = ACTIONS(4110), + [aux_sym_def_type_statement_token13] = ACTIONS(4110), + [aux_sym_def_type_statement_token14] = ACTIONS(4110), + [aux_sym_call_statement_token1] = ACTIONS(4110), + [sym__ambiguous_call_statement] = ACTIONS(4110), + [aux_sym_addressof_expression_token1] = ACTIONS(4917), + [aux_sym_type_of_expression_token1] = ACTIONS(4919), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(5030), + [sym_number_literal] = ACTIONS(5030), + [aux_sym_boolean_literal_token1] = ACTIONS(4923), + [aux_sym_boolean_literal_token2] = ACTIONS(4923), + [sym_nothing_literal] = ACTIONS(5032), + [sym_null_literal] = ACTIONS(5032), + [sym_empty_literal] = ACTIONS(5032), + [sym_date_literal] = ACTIONS(5030), + [anon_sym_POUND] = ACTIONS(4927), + }, + [STATE(745)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(746)] = { + [sym__argument] = STATE(5120), + [sym_named_argument] = STATE(5120), + [sym_byval_argument] = STATE(5120), + [sym__primary_expression] = STATE(1347), + [sym__expression] = STATE(2603), + [sym_comparison_expression] = STATE(4779), + [sym__comparison_operand] = STATE(11305), + [sym_logical_value_expression] = STATE(4779), + [sym__callable_expression] = STATE(13180), + [sym_call_expression] = STATE(911), + [sym_new_expression] = STATE(1347), + [sym_addressof_expression] = STATE(1347), + [sym_type_of_expression] = STATE(1347), + [sym_member_expression] = STATE(1116), + [sym_qualified_member_expression] = STATE(1206), + [sym_implicit_member_expression] = STATE(1206), + [sym_parenthesized_expression] = STATE(1347), + [sym_binary_expression] = STATE(1347), + [sym_unary_expression] = STATE(2603), + [sym__signed_unary_expression] = STATE(1348), + [sym__literal] = STATE(1347), + [sym_boolean_literal] = STATE(1347), + [sym_file_number_literal] = STATE(1347), + [aux_sym__argument_sequence_repeat2] = STATE(5123), + [sym_identifier] = ACTIONS(4555), + [sym_newline] = ACTIONS(4170), + [anon_sym_COLON] = ACTIONS(4170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4172), + [aux_sym_frm_property_statement_token1] = ACTIONS(4557), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4561), + [aux_sym__attribute_identifier_token1] = ACTIONS(4172), + [aux_sym_option_statement_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4172), + [aux_sym_preprocessor_const_token1] = ACTIONS(4172), + [sym_static_modifier] = ACTIONS(4172), + [sym__dim_keyword] = ACTIONS(4172), + [sym__redim_keyword] = ACTIONS(4172), + [aux_sym_byval_modifier_token1] = ACTIONS(4563), + [aux_sym_get_accessor_token1] = ACTIONS(4172), + [aux_sym_set_accessor_token1] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(5154), + [aux_sym_const_declaration_token1] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4869), + [aux_sym_as_type_clause_token2] = ACTIONS(4569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4571), + [aux_sym_visibility_token1] = ACTIONS(4172), + [aux_sym_visibility_token2] = ACTIONS(4172), + [aux_sym_elseif_fragment_token1] = ACTIONS(4172), + [aux_sym_else_fragment_token1] = ACTIONS(4172), + [aux_sym_select_statement_token1] = ACTIONS(4172), + [aux_sym__for_header_token1] = ACTIONS(4172), + [aux_sym_do_statement_token1] = ACTIONS(4172), + [aux_sym_do_condition_token1] = ACTIONS(4172), + [aux_sym_with_statement_token1] = ACTIONS(4172), + [aux_sym_exit_statement_token1] = ACTIONS(4172), + [sym_end_statement] = ACTIONS(4170), + [aux_sym_on_goto_statement_token1] = ACTIONS(4172), + [aux_sym_on_goto_statement_token2] = ACTIONS(4172), + [aux_sym_on_error_statement_token2] = ACTIONS(4172), + [sym__ambiguous_redim_statement] = ACTIONS(4170), + [aux_sym_erase_statement_token1] = ACTIONS(4172), + [aux_sym_open_statement_token1] = ACTIONS(4172), + [aux_sym_file_mode_token2] = ACTIONS(4172), + [aux_sym_file_access_token2] = ACTIONS(4172), + [aux_sym_file_lock_token2] = ACTIONS(4172), + [aux_sym_print_statement_token1] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4170), + [aux_sym_close_statement_token1] = ACTIONS(4172), + [aux_sym_put_statement_token1] = ACTIONS(4172), + [aux_sym_unlock_statement_token1] = ACTIONS(4172), + [aux_sym_seek_statement_token1] = ACTIONS(4172), + [sym_reset_statement] = ACTIONS(4172), + [aux_sym_raise_event_statement_token1] = ACTIONS(4172), + [sym_stop_statement] = ACTIONS(4172), + [sym_beep_statement] = ACTIONS(4172), + [aux_sym_unload_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token2] = ACTIONS(4172), + [aux_sym_def_type_statement_token3] = ACTIONS(4172), + [aux_sym_def_type_statement_token4] = ACTIONS(4172), + [aux_sym_def_type_statement_token5] = ACTIONS(4172), + [aux_sym_def_type_statement_token6] = ACTIONS(4172), + [aux_sym_def_type_statement_token7] = ACTIONS(4172), + [aux_sym_def_type_statement_token8] = ACTIONS(4172), + [aux_sym_def_type_statement_token9] = ACTIONS(4172), + [aux_sym_def_type_statement_token10] = ACTIONS(4172), + [aux_sym_def_type_statement_token11] = ACTIONS(4172), + [aux_sym_def_type_statement_token12] = ACTIONS(4172), + [aux_sym_def_type_statement_token13] = ACTIONS(4172), + [aux_sym_def_type_statement_token14] = ACTIONS(4172), + [aux_sym_call_statement_token1] = ACTIONS(4172), + [sym__ambiguous_call_statement] = ACTIONS(4172), + [aux_sym_addressof_expression_token1] = ACTIONS(4577), + [aux_sym_type_of_expression_token1] = ACTIONS(4579), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(4581), + [sym_number_literal] = ACTIONS(4581), + [aux_sym_boolean_literal_token1] = ACTIONS(4583), + [aux_sym_boolean_literal_token2] = ACTIONS(4583), + [sym_nothing_literal] = ACTIONS(4585), + [sym_null_literal] = ACTIONS(4585), + [sym_empty_literal] = ACTIONS(4585), + [sym_date_literal] = ACTIONS(4581), + [anon_sym_POUND] = ACTIONS(4587), + }, + [STATE(747)] = { + [sym__argument] = STATE(5377), + [sym_named_argument] = STATE(5377), + [sym_byval_argument] = STATE(5377), + [sym__primary_expression] = STATE(1213), + [sym__expression] = STATE(2701), + [sym_comparison_expression] = STATE(4796), + [sym__comparison_operand] = STATE(11262), + [sym_logical_value_expression] = STATE(4796), + [sym__callable_expression] = STATE(13267), + [sym_call_expression] = STATE(892), + [sym_new_expression] = STATE(1213), + [sym_addressof_expression] = STATE(1213), + [sym_type_of_expression] = STATE(1213), + [sym_member_expression] = STATE(1197), + [sym_qualified_member_expression] = STATE(1441), + [sym_implicit_member_expression] = STATE(1441), + [sym_parenthesized_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_unary_expression] = STATE(2701), + [sym__signed_unary_expression] = STATE(1416), + [sym__literal] = STATE(1213), + [sym_boolean_literal] = STATE(1213), + [sym_file_number_literal] = STATE(1213), + [aux_sym__argument_sequence_repeat2] = STATE(5378), + [sym_identifier] = ACTIONS(4772), + [sym_newline] = ACTIONS(4174), + [anon_sym_COLON] = ACTIONS(4174), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4176), + [aux_sym_frm_property_statement_token1] = ACTIONS(4774), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4778), + [aux_sym__attribute_identifier_token1] = ACTIONS(4176), + [aux_sym_option_statement_token3] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4176), + [aux_sym_preprocessor_const_token1] = ACTIONS(4176), + [sym_static_modifier] = ACTIONS(4176), + [sym__dim_keyword] = ACTIONS(4176), + [sym__redim_keyword] = ACTIONS(4176), + [aux_sym_byval_modifier_token1] = ACTIONS(4780), + [aux_sym_get_accessor_token1] = ACTIONS(4176), + [aux_sym_set_accessor_token1] = ACTIONS(4176), + [anon_sym_COMMA] = ACTIONS(5156), + [aux_sym_const_declaration_token1] = ACTIONS(4176), + [anon_sym_LPAREN] = ACTIONS(4875), + [aux_sym_as_type_clause_token2] = ACTIONS(4786), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4788), + [aux_sym_visibility_token1] = ACTIONS(4176), + [aux_sym_visibility_token2] = ACTIONS(4176), + [aux_sym_elseif_fragment_token1] = ACTIONS(4176), + [aux_sym_else_fragment_token1] = ACTIONS(4176), + [aux_sym_select_statement_token1] = ACTIONS(4176), + [aux_sym__for_header_token1] = ACTIONS(4176), + [aux_sym_do_statement_token1] = ACTIONS(4176), + [aux_sym_do_statement_token2] = ACTIONS(4176), + [aux_sym_do_condition_token1] = ACTIONS(4176), + [aux_sym_with_statement_token1] = ACTIONS(4176), + [aux_sym_exit_statement_token1] = ACTIONS(4176), + [sym_end_statement] = ACTIONS(4174), + [aux_sym_on_goto_statement_token1] = ACTIONS(4176), + [aux_sym_on_goto_statement_token2] = ACTIONS(4176), + [aux_sym_on_error_statement_token2] = ACTIONS(4176), + [sym__ambiguous_redim_statement] = ACTIONS(4174), + [aux_sym_erase_statement_token1] = ACTIONS(4176), + [aux_sym_open_statement_token1] = ACTIONS(4176), + [aux_sym_file_mode_token2] = ACTIONS(4176), + [aux_sym_file_access_token2] = ACTIONS(4176), + [aux_sym_file_lock_token2] = ACTIONS(4176), + [aux_sym_print_statement_token1] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_QMARK] = ACTIONS(4174), + [aux_sym_close_statement_token1] = ACTIONS(4176), + [aux_sym_put_statement_token1] = ACTIONS(4176), + [aux_sym_unlock_statement_token1] = ACTIONS(4176), + [aux_sym_seek_statement_token1] = ACTIONS(4176), + [sym_reset_statement] = ACTIONS(4176), + [aux_sym_raise_event_statement_token1] = ACTIONS(4176), + [sym_stop_statement] = ACTIONS(4176), + [sym_beep_statement] = ACTIONS(4176), + [aux_sym_unload_statement_token1] = ACTIONS(4176), + [aux_sym_def_type_statement_token1] = ACTIONS(4176), + [aux_sym_def_type_statement_token2] = ACTIONS(4176), + [aux_sym_def_type_statement_token3] = ACTIONS(4176), + [aux_sym_def_type_statement_token4] = ACTIONS(4176), + [aux_sym_def_type_statement_token5] = ACTIONS(4176), + [aux_sym_def_type_statement_token6] = ACTIONS(4176), + [aux_sym_def_type_statement_token7] = ACTIONS(4176), + [aux_sym_def_type_statement_token8] = ACTIONS(4176), + [aux_sym_def_type_statement_token9] = ACTIONS(4176), + [aux_sym_def_type_statement_token10] = ACTIONS(4176), + [aux_sym_def_type_statement_token11] = ACTIONS(4176), + [aux_sym_def_type_statement_token12] = ACTIONS(4176), + [aux_sym_def_type_statement_token13] = ACTIONS(4176), + [aux_sym_def_type_statement_token14] = ACTIONS(4176), + [aux_sym_call_statement_token1] = ACTIONS(4176), + [sym__ambiguous_call_statement] = ACTIONS(4176), + [aux_sym_addressof_expression_token1] = ACTIONS(4794), + [aux_sym_type_of_expression_token1] = ACTIONS(4796), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(4798), + [sym_number_literal] = ACTIONS(4798), + [aux_sym_boolean_literal_token1] = ACTIONS(4800), + [aux_sym_boolean_literal_token2] = ACTIONS(4800), + [sym_nothing_literal] = ACTIONS(4802), + [sym_null_literal] = ACTIONS(4802), + [sym_empty_literal] = ACTIONS(4802), + [sym_date_literal] = ACTIONS(4798), + [anon_sym_POUND] = ACTIONS(4804), + }, + [STATE(748)] = { + [sym__argument] = STATE(5804), + [sym_named_argument] = STATE(5804), + [sym_byval_argument] = STATE(5804), + [sym__primary_expression] = STATE(1237), + [sym__expression] = STATE(2692), + [sym_comparison_expression] = STATE(4877), + [sym__comparison_operand] = STATE(11453), + [sym_logical_value_expression] = STATE(4877), + [sym__callable_expression] = STATE(13269), + [sym_call_expression] = STATE(880), + [sym_new_expression] = STATE(1237), + [sym_addressof_expression] = STATE(1237), + [sym_type_of_expression] = STATE(1237), + [sym_member_expression] = STATE(1344), + [sym_qualified_member_expression] = STATE(1142), + [sym_implicit_member_expression] = STATE(1142), + [sym_parenthesized_expression] = STATE(1237), + [sym_binary_expression] = STATE(1237), + [sym_unary_expression] = STATE(2692), + [sym__signed_unary_expression] = STATE(1246), + [sym__literal] = STATE(1237), + [sym_boolean_literal] = STATE(1237), + [sym_file_number_literal] = STATE(1237), + [aux_sym__argument_sequence_repeat2] = STATE(5805), + [sym_identifier] = ACTIONS(4521), + [sym_newline] = ACTIONS(4174), + [anon_sym_COLON] = ACTIONS(4174), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4176), + [aux_sym_frm_property_statement_token1] = ACTIONS(4523), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4527), + [aux_sym__attribute_identifier_token1] = ACTIONS(4176), + [aux_sym_option_statement_token3] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4176), + [aux_sym_preprocessor_const_token1] = ACTIONS(4176), + [sym_static_modifier] = ACTIONS(4176), + [sym__dim_keyword] = ACTIONS(4176), + [sym__redim_keyword] = ACTIONS(4176), + [aux_sym_byval_modifier_token1] = ACTIONS(4529), + [aux_sym_get_accessor_token1] = ACTIONS(4176), + [aux_sym_set_accessor_token1] = ACTIONS(4176), + [anon_sym_COMMA] = ACTIONS(5158), + [aux_sym_const_declaration_token1] = ACTIONS(4176), + [anon_sym_LPAREN] = ACTIONS(4861), + [aux_sym_as_type_clause_token2] = ACTIONS(4535), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4537), + [aux_sym_visibility_token1] = ACTIONS(4176), + [aux_sym_visibility_token2] = ACTIONS(4176), + [aux_sym_elseif_fragment_token1] = ACTIONS(4176), + [aux_sym_else_fragment_token1] = ACTIONS(4176), + [aux_sym_select_statement_token1] = ACTIONS(4176), + [aux_sym_select_statement_token2] = ACTIONS(4176), + [aux_sym__for_header_token1] = ACTIONS(4176), + [aux_sym_do_statement_token1] = ACTIONS(4176), + [aux_sym_do_condition_token1] = ACTIONS(4176), + [aux_sym_with_statement_token1] = ACTIONS(4176), + [aux_sym_exit_statement_token1] = ACTIONS(4176), + [sym_end_statement] = ACTIONS(4174), + [aux_sym_on_goto_statement_token1] = ACTIONS(4176), + [aux_sym_on_goto_statement_token2] = ACTIONS(4176), + [aux_sym_on_error_statement_token2] = ACTIONS(4176), + [sym__ambiguous_redim_statement] = ACTIONS(4174), + [aux_sym_erase_statement_token1] = ACTIONS(4176), + [aux_sym_open_statement_token1] = ACTIONS(4176), + [aux_sym_file_mode_token2] = ACTIONS(4176), + [aux_sym_file_access_token2] = ACTIONS(4176), + [aux_sym_file_lock_token2] = ACTIONS(4176), + [aux_sym_print_statement_token1] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_QMARK] = ACTIONS(4174), + [aux_sym_close_statement_token1] = ACTIONS(4176), + [aux_sym_put_statement_token1] = ACTIONS(4176), + [aux_sym_unlock_statement_token1] = ACTIONS(4176), + [aux_sym_seek_statement_token1] = ACTIONS(4176), + [sym_reset_statement] = ACTIONS(4176), + [aux_sym_raise_event_statement_token1] = ACTIONS(4176), + [sym_stop_statement] = ACTIONS(4176), + [sym_beep_statement] = ACTIONS(4176), + [aux_sym_unload_statement_token1] = ACTIONS(4176), + [aux_sym_def_type_statement_token1] = ACTIONS(4176), + [aux_sym_def_type_statement_token2] = ACTIONS(4176), + [aux_sym_def_type_statement_token3] = ACTIONS(4176), + [aux_sym_def_type_statement_token4] = ACTIONS(4176), + [aux_sym_def_type_statement_token5] = ACTIONS(4176), + [aux_sym_def_type_statement_token6] = ACTIONS(4176), + [aux_sym_def_type_statement_token7] = ACTIONS(4176), + [aux_sym_def_type_statement_token8] = ACTIONS(4176), + [aux_sym_def_type_statement_token9] = ACTIONS(4176), + [aux_sym_def_type_statement_token10] = ACTIONS(4176), + [aux_sym_def_type_statement_token11] = ACTIONS(4176), + [aux_sym_def_type_statement_token12] = ACTIONS(4176), + [aux_sym_def_type_statement_token13] = ACTIONS(4176), + [aux_sym_def_type_statement_token14] = ACTIONS(4176), + [aux_sym_call_statement_token1] = ACTIONS(4176), + [sym__ambiguous_call_statement] = ACTIONS(4176), + [aux_sym_addressof_expression_token1] = ACTIONS(4543), + [aux_sym_type_of_expression_token1] = ACTIONS(4545), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(4547), + [sym_number_literal] = ACTIONS(4547), + [aux_sym_boolean_literal_token1] = ACTIONS(4549), + [aux_sym_boolean_literal_token2] = ACTIONS(4549), + [sym_nothing_literal] = ACTIONS(4551), + [sym_null_literal] = ACTIONS(4551), + [sym_empty_literal] = ACTIONS(4551), + [sym_date_literal] = ACTIONS(4547), + [anon_sym_POUND] = ACTIONS(4553), + }, + [STATE(749)] = { + [sym__argument] = STATE(5429), + [sym_named_argument] = STATE(5429), + [sym_byval_argument] = STATE(5429), + [sym__primary_expression] = STATE(1213), + [sym__expression] = STATE(2701), + [sym_comparison_expression] = STATE(4796), + [sym__comparison_operand] = STATE(11262), + [sym_logical_value_expression] = STATE(4796), + [sym__callable_expression] = STATE(13267), + [sym_call_expression] = STATE(892), + [sym_new_expression] = STATE(1213), + [sym_addressof_expression] = STATE(1213), + [sym_type_of_expression] = STATE(1213), + [sym_member_expression] = STATE(1197), + [sym_qualified_member_expression] = STATE(1441), + [sym_implicit_member_expression] = STATE(1441), + [sym_parenthesized_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_unary_expression] = STATE(2701), + [sym__signed_unary_expression] = STATE(1416), + [sym__literal] = STATE(1213), + [sym_boolean_literal] = STATE(1213), + [sym_file_number_literal] = STATE(1213), + [aux_sym__argument_sequence_repeat2] = STATE(5428), + [sym_identifier] = ACTIONS(4772), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4774), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4778), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_byval_modifier_token1] = ACTIONS(4780), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5156), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4875), + [aux_sym_as_type_clause_token2] = ACTIONS(4786), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4788), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_statement_token2] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4794), + [aux_sym_type_of_expression_token1] = ACTIONS(4796), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(4798), + [sym_number_literal] = ACTIONS(4798), + [aux_sym_boolean_literal_token1] = ACTIONS(4800), + [aux_sym_boolean_literal_token2] = ACTIONS(4800), + [sym_nothing_literal] = ACTIONS(4802), + [sym_null_literal] = ACTIONS(4802), + [sym_empty_literal] = ACTIONS(4802), + [sym_date_literal] = ACTIONS(4798), + [anon_sym_POUND] = ACTIONS(4804), + }, + [STATE(750)] = { + [sym__argument] = STATE(5511), + [sym_named_argument] = STATE(5511), + [sym_byval_argument] = STATE(5511), + [sym__primary_expression] = STATE(1157), + [sym__expression] = STATE(2764), + [sym_comparison_expression] = STATE(4900), + [sym__comparison_operand] = STATE(11458), + [sym_logical_value_expression] = STATE(4900), + [sym__callable_expression] = STATE(13443), + [sym_call_expression] = STATE(981), + [sym_new_expression] = STATE(1157), + [sym_addressof_expression] = STATE(1157), + [sym_type_of_expression] = STATE(1157), + [sym_member_expression] = STATE(1343), + [sym_qualified_member_expression] = STATE(1158), + [sym_implicit_member_expression] = STATE(1158), + [sym_parenthesized_expression] = STATE(1157), + [sym_binary_expression] = STATE(1157), + [sym_unary_expression] = STATE(2764), + [sym__signed_unary_expression] = STATE(1163), + [sym__literal] = STATE(1157), + [sym_boolean_literal] = STATE(1157), + [sym_file_number_literal] = STATE(1157), + [aux_sym__argument_sequence_repeat2] = STATE(5512), + [sym_identifier] = ACTIONS(4675), + [sym_newline] = ACTIONS(4174), + [anon_sym_COLON] = ACTIONS(4174), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4176), + [aux_sym_frm_property_statement_token1] = ACTIONS(4677), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(4681), + [aux_sym__attribute_identifier_token1] = ACTIONS(4176), + [aux_sym_option_statement_token3] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4176), + [aux_sym_preprocessor_const_token1] = ACTIONS(4176), + [sym_static_modifier] = ACTIONS(4176), + [sym__dim_keyword] = ACTIONS(4176), + [sym__redim_keyword] = ACTIONS(4176), + [aux_sym_byval_modifier_token1] = ACTIONS(4683), + [aux_sym_get_accessor_token1] = ACTIONS(4176), + [aux_sym_set_accessor_token1] = ACTIONS(4176), + [anon_sym_COMMA] = ACTIONS(5160), + [aux_sym_const_declaration_token1] = ACTIONS(4176), + [anon_sym_LPAREN] = ACTIONS(4939), + [aux_sym_as_type_clause_token2] = ACTIONS(4689), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4691), + [aux_sym_visibility_token1] = ACTIONS(4176), + [aux_sym_visibility_token2] = ACTIONS(4176), + [aux_sym_elseif_fragment_token1] = ACTIONS(4176), + [aux_sym_else_fragment_token1] = ACTIONS(4176), + [aux_sym_select_statement_token1] = ACTIONS(4176), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4176), + [aux_sym__for_header_token1] = ACTIONS(4176), + [aux_sym_do_statement_token1] = ACTIONS(4176), + [aux_sym_do_condition_token1] = ACTIONS(4176), + [aux_sym_with_statement_token1] = ACTIONS(4176), + [aux_sym_exit_statement_token1] = ACTIONS(4176), + [sym_end_statement] = ACTIONS(4174), + [aux_sym_on_goto_statement_token1] = ACTIONS(4176), + [aux_sym_on_goto_statement_token2] = ACTIONS(4176), + [aux_sym_on_error_statement_token2] = ACTIONS(4176), + [sym__ambiguous_redim_statement] = ACTIONS(4174), + [aux_sym_erase_statement_token1] = ACTIONS(4176), + [aux_sym_open_statement_token1] = ACTIONS(4176), + [aux_sym_file_mode_token2] = ACTIONS(4176), + [aux_sym_file_access_token2] = ACTIONS(4176), + [aux_sym_file_lock_token2] = ACTIONS(4176), + [aux_sym_print_statement_token1] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4693), + [anon_sym_DASH] = ACTIONS(4695), + [anon_sym_QMARK] = ACTIONS(4174), + [aux_sym_close_statement_token1] = ACTIONS(4176), + [aux_sym_put_statement_token1] = ACTIONS(4176), + [aux_sym_unlock_statement_token1] = ACTIONS(4176), + [aux_sym_seek_statement_token1] = ACTIONS(4176), + [sym_reset_statement] = ACTIONS(4176), + [aux_sym_raise_event_statement_token1] = ACTIONS(4176), + [sym_stop_statement] = ACTIONS(4176), + [sym_beep_statement] = ACTIONS(4176), + [aux_sym_unload_statement_token1] = ACTIONS(4176), + [aux_sym_def_type_statement_token1] = ACTIONS(4176), + [aux_sym_def_type_statement_token2] = ACTIONS(4176), + [aux_sym_def_type_statement_token3] = ACTIONS(4176), + [aux_sym_def_type_statement_token4] = ACTIONS(4176), + [aux_sym_def_type_statement_token5] = ACTIONS(4176), + [aux_sym_def_type_statement_token6] = ACTIONS(4176), + [aux_sym_def_type_statement_token7] = ACTIONS(4176), + [aux_sym_def_type_statement_token8] = ACTIONS(4176), + [aux_sym_def_type_statement_token9] = ACTIONS(4176), + [aux_sym_def_type_statement_token10] = ACTIONS(4176), + [aux_sym_def_type_statement_token11] = ACTIONS(4176), + [aux_sym_def_type_statement_token12] = ACTIONS(4176), + [aux_sym_def_type_statement_token13] = ACTIONS(4176), + [aux_sym_def_type_statement_token14] = ACTIONS(4176), + [aux_sym_call_statement_token1] = ACTIONS(4176), + [sym__ambiguous_call_statement] = ACTIONS(4176), + [aux_sym_addressof_expression_token1] = ACTIONS(4697), + [aux_sym_type_of_expression_token1] = ACTIONS(4699), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(4701), + [sym_number_literal] = ACTIONS(4701), + [aux_sym_boolean_literal_token1] = ACTIONS(4703), + [aux_sym_boolean_literal_token2] = ACTIONS(4703), + [sym_nothing_literal] = ACTIONS(4705), + [sym_null_literal] = ACTIONS(4705), + [sym_empty_literal] = ACTIONS(4705), + [sym_date_literal] = ACTIONS(4701), + [anon_sym_POUND] = ACTIONS(4707), + }, + [STATE(751)] = { + [sym__argument] = STATE(5248), + [sym_named_argument] = STATE(5248), + [sym_byval_argument] = STATE(5248), + [sym__primary_expression] = STATE(1237), + [sym__expression] = STATE(2692), + [sym_comparison_expression] = STATE(4877), + [sym__comparison_operand] = STATE(11453), + [sym_logical_value_expression] = STATE(4877), + [sym__callable_expression] = STATE(13269), + [sym_call_expression] = STATE(880), + [sym_new_expression] = STATE(1237), + [sym_addressof_expression] = STATE(1237), + [sym_type_of_expression] = STATE(1237), + [sym_member_expression] = STATE(1344), + [sym_qualified_member_expression] = STATE(1142), + [sym_implicit_member_expression] = STATE(1142), + [sym_parenthesized_expression] = STATE(1237), + [sym_binary_expression] = STATE(1237), + [sym_unary_expression] = STATE(2692), + [sym__signed_unary_expression] = STATE(1246), + [sym__literal] = STATE(1237), + [sym_boolean_literal] = STATE(1237), + [sym_file_number_literal] = STATE(1237), + [aux_sym__argument_sequence_repeat2] = STATE(5249), + [sym_identifier] = ACTIONS(4521), + [sym_newline] = ACTIONS(4170), + [anon_sym_COLON] = ACTIONS(4170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4172), + [aux_sym_frm_property_statement_token1] = ACTIONS(4523), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4527), + [aux_sym__attribute_identifier_token1] = ACTIONS(4172), + [aux_sym_option_statement_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4172), + [aux_sym_preprocessor_const_token1] = ACTIONS(4172), + [sym_static_modifier] = ACTIONS(4172), + [sym__dim_keyword] = ACTIONS(4172), + [sym__redim_keyword] = ACTIONS(4172), + [aux_sym_byval_modifier_token1] = ACTIONS(4529), + [aux_sym_get_accessor_token1] = ACTIONS(4172), + [aux_sym_set_accessor_token1] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(5158), + [aux_sym_const_declaration_token1] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4861), + [aux_sym_as_type_clause_token2] = ACTIONS(4535), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4537), + [aux_sym_visibility_token1] = ACTIONS(4172), + [aux_sym_visibility_token2] = ACTIONS(4172), + [aux_sym_elseif_fragment_token1] = ACTIONS(4172), + [aux_sym_else_fragment_token1] = ACTIONS(4172), + [aux_sym_select_statement_token1] = ACTIONS(4172), + [aux_sym_select_statement_token2] = ACTIONS(4172), + [aux_sym__for_header_token1] = ACTIONS(4172), + [aux_sym_do_statement_token1] = ACTIONS(4172), + [aux_sym_do_condition_token1] = ACTIONS(4172), + [aux_sym_with_statement_token1] = ACTIONS(4172), + [aux_sym_exit_statement_token1] = ACTIONS(4172), + [sym_end_statement] = ACTIONS(4170), + [aux_sym_on_goto_statement_token1] = ACTIONS(4172), + [aux_sym_on_goto_statement_token2] = ACTIONS(4172), + [aux_sym_on_error_statement_token2] = ACTIONS(4172), + [sym__ambiguous_redim_statement] = ACTIONS(4170), + [aux_sym_erase_statement_token1] = ACTIONS(4172), + [aux_sym_open_statement_token1] = ACTIONS(4172), + [aux_sym_file_mode_token2] = ACTIONS(4172), + [aux_sym_file_access_token2] = ACTIONS(4172), + [aux_sym_file_lock_token2] = ACTIONS(4172), + [aux_sym_print_statement_token1] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_QMARK] = ACTIONS(4170), + [aux_sym_close_statement_token1] = ACTIONS(4172), + [aux_sym_put_statement_token1] = ACTIONS(4172), + [aux_sym_unlock_statement_token1] = ACTIONS(4172), + [aux_sym_seek_statement_token1] = ACTIONS(4172), + [sym_reset_statement] = ACTIONS(4172), + [aux_sym_raise_event_statement_token1] = ACTIONS(4172), + [sym_stop_statement] = ACTIONS(4172), + [sym_beep_statement] = ACTIONS(4172), + [aux_sym_unload_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token2] = ACTIONS(4172), + [aux_sym_def_type_statement_token3] = ACTIONS(4172), + [aux_sym_def_type_statement_token4] = ACTIONS(4172), + [aux_sym_def_type_statement_token5] = ACTIONS(4172), + [aux_sym_def_type_statement_token6] = ACTIONS(4172), + [aux_sym_def_type_statement_token7] = ACTIONS(4172), + [aux_sym_def_type_statement_token8] = ACTIONS(4172), + [aux_sym_def_type_statement_token9] = ACTIONS(4172), + [aux_sym_def_type_statement_token10] = ACTIONS(4172), + [aux_sym_def_type_statement_token11] = ACTIONS(4172), + [aux_sym_def_type_statement_token12] = ACTIONS(4172), + [aux_sym_def_type_statement_token13] = ACTIONS(4172), + [aux_sym_def_type_statement_token14] = ACTIONS(4172), + [aux_sym_call_statement_token1] = ACTIONS(4172), + [sym__ambiguous_call_statement] = ACTIONS(4172), + [aux_sym_addressof_expression_token1] = ACTIONS(4543), + [aux_sym_type_of_expression_token1] = ACTIONS(4545), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(4547), + [sym_number_literal] = ACTIONS(4547), + [aux_sym_boolean_literal_token1] = ACTIONS(4549), + [aux_sym_boolean_literal_token2] = ACTIONS(4549), + [sym_nothing_literal] = ACTIONS(4551), + [sym_null_literal] = ACTIONS(4551), + [sym_empty_literal] = ACTIONS(4551), + [sym_date_literal] = ACTIONS(4547), + [anon_sym_POUND] = ACTIONS(4553), + }, + [STATE(752)] = { + [sym__argument] = STATE(5647), + [sym_named_argument] = STATE(5647), + [sym_byval_argument] = STATE(5647), + [sym__primary_expression] = STATE(1157), + [sym__expression] = STATE(2764), + [sym_comparison_expression] = STATE(4900), + [sym__comparison_operand] = STATE(11458), + [sym_logical_value_expression] = STATE(4900), + [sym__callable_expression] = STATE(13443), + [sym_call_expression] = STATE(981), + [sym_new_expression] = STATE(1157), + [sym_addressof_expression] = STATE(1157), + [sym_type_of_expression] = STATE(1157), + [sym_member_expression] = STATE(1343), + [sym_qualified_member_expression] = STATE(1158), + [sym_implicit_member_expression] = STATE(1158), + [sym_parenthesized_expression] = STATE(1157), + [sym_binary_expression] = STATE(1157), + [sym_unary_expression] = STATE(2764), + [sym__signed_unary_expression] = STATE(1163), + [sym__literal] = STATE(1157), + [sym_boolean_literal] = STATE(1157), + [sym_file_number_literal] = STATE(1157), + [aux_sym__argument_sequence_repeat2] = STATE(5648), + [sym_identifier] = ACTIONS(4675), + [sym_newline] = ACTIONS(4170), + [anon_sym_COLON] = ACTIONS(4170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4172), + [aux_sym_frm_property_statement_token1] = ACTIONS(4677), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(4681), + [aux_sym__attribute_identifier_token1] = ACTIONS(4172), + [aux_sym_option_statement_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4172), + [aux_sym_preprocessor_const_token1] = ACTIONS(4172), + [sym_static_modifier] = ACTIONS(4172), + [sym__dim_keyword] = ACTIONS(4172), + [sym__redim_keyword] = ACTIONS(4172), + [aux_sym_byval_modifier_token1] = ACTIONS(4683), + [aux_sym_get_accessor_token1] = ACTIONS(4172), + [aux_sym_set_accessor_token1] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(5160), + [aux_sym_const_declaration_token1] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4939), + [aux_sym_as_type_clause_token2] = ACTIONS(4689), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4691), + [aux_sym_visibility_token1] = ACTIONS(4172), + [aux_sym_visibility_token2] = ACTIONS(4172), + [aux_sym_elseif_fragment_token1] = ACTIONS(4172), + [aux_sym_else_fragment_token1] = ACTIONS(4172), + [aux_sym_select_statement_token1] = ACTIONS(4172), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4172), + [aux_sym__for_header_token1] = ACTIONS(4172), + [aux_sym_do_statement_token1] = ACTIONS(4172), + [aux_sym_do_condition_token1] = ACTIONS(4172), + [aux_sym_with_statement_token1] = ACTIONS(4172), + [aux_sym_exit_statement_token1] = ACTIONS(4172), + [sym_end_statement] = ACTIONS(4170), + [aux_sym_on_goto_statement_token1] = ACTIONS(4172), + [aux_sym_on_goto_statement_token2] = ACTIONS(4172), + [aux_sym_on_error_statement_token2] = ACTIONS(4172), + [sym__ambiguous_redim_statement] = ACTIONS(4170), + [aux_sym_erase_statement_token1] = ACTIONS(4172), + [aux_sym_open_statement_token1] = ACTIONS(4172), + [aux_sym_file_mode_token2] = ACTIONS(4172), + [aux_sym_file_access_token2] = ACTIONS(4172), + [aux_sym_file_lock_token2] = ACTIONS(4172), + [aux_sym_print_statement_token1] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4693), + [anon_sym_DASH] = ACTIONS(4695), + [anon_sym_QMARK] = ACTIONS(4170), + [aux_sym_close_statement_token1] = ACTIONS(4172), + [aux_sym_put_statement_token1] = ACTIONS(4172), + [aux_sym_unlock_statement_token1] = ACTIONS(4172), + [aux_sym_seek_statement_token1] = ACTIONS(4172), + [sym_reset_statement] = ACTIONS(4172), + [aux_sym_raise_event_statement_token1] = ACTIONS(4172), + [sym_stop_statement] = ACTIONS(4172), + [sym_beep_statement] = ACTIONS(4172), + [aux_sym_unload_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token2] = ACTIONS(4172), + [aux_sym_def_type_statement_token3] = ACTIONS(4172), + [aux_sym_def_type_statement_token4] = ACTIONS(4172), + [aux_sym_def_type_statement_token5] = ACTIONS(4172), + [aux_sym_def_type_statement_token6] = ACTIONS(4172), + [aux_sym_def_type_statement_token7] = ACTIONS(4172), + [aux_sym_def_type_statement_token8] = ACTIONS(4172), + [aux_sym_def_type_statement_token9] = ACTIONS(4172), + [aux_sym_def_type_statement_token10] = ACTIONS(4172), + [aux_sym_def_type_statement_token11] = ACTIONS(4172), + [aux_sym_def_type_statement_token12] = ACTIONS(4172), + [aux_sym_def_type_statement_token13] = ACTIONS(4172), + [aux_sym_def_type_statement_token14] = ACTIONS(4172), + [aux_sym_call_statement_token1] = ACTIONS(4172), + [sym__ambiguous_call_statement] = ACTIONS(4172), + [aux_sym_addressof_expression_token1] = ACTIONS(4697), + [aux_sym_type_of_expression_token1] = ACTIONS(4699), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(4701), + [sym_number_literal] = ACTIONS(4701), + [aux_sym_boolean_literal_token1] = ACTIONS(4703), + [aux_sym_boolean_literal_token2] = ACTIONS(4703), + [sym_nothing_literal] = ACTIONS(4705), + [sym_null_literal] = ACTIONS(4705), + [sym_empty_literal] = ACTIONS(4705), + [sym_date_literal] = ACTIONS(4701), + [anon_sym_POUND] = ACTIONS(4707), + }, + [STATE(753)] = { + [sym__argument] = STATE(5708), + [sym_named_argument] = STATE(5708), + [sym_byval_argument] = STATE(5708), + [sym__primary_expression] = STATE(1157), + [sym__expression] = STATE(2764), + [sym_comparison_expression] = STATE(4900), + [sym__comparison_operand] = STATE(11458), + [sym_logical_value_expression] = STATE(4900), + [sym__callable_expression] = STATE(13443), + [sym_call_expression] = STATE(981), + [sym_new_expression] = STATE(1157), + [sym_addressof_expression] = STATE(1157), + [sym_type_of_expression] = STATE(1157), + [sym_member_expression] = STATE(1343), + [sym_qualified_member_expression] = STATE(1158), + [sym_implicit_member_expression] = STATE(1158), + [sym_parenthesized_expression] = STATE(1157), + [sym_binary_expression] = STATE(1157), + [sym_unary_expression] = STATE(2764), + [sym__signed_unary_expression] = STATE(1163), + [sym__literal] = STATE(1157), + [sym_boolean_literal] = STATE(1157), + [sym_file_number_literal] = STATE(1157), + [aux_sym__argument_sequence_repeat2] = STATE(5707), + [sym_identifier] = ACTIONS(4675), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4677), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(4681), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_byval_modifier_token1] = ACTIONS(4683), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5160), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4939), + [aux_sym_as_type_clause_token2] = ACTIONS(4689), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4691), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4693), + [anon_sym_DASH] = ACTIONS(4695), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4697), + [aux_sym_type_of_expression_token1] = ACTIONS(4699), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(4701), + [sym_number_literal] = ACTIONS(4701), + [aux_sym_boolean_literal_token1] = ACTIONS(4703), + [aux_sym_boolean_literal_token2] = ACTIONS(4703), + [sym_nothing_literal] = ACTIONS(4705), + [sym_null_literal] = ACTIONS(4705), + [sym_empty_literal] = ACTIONS(4705), + [sym_date_literal] = ACTIONS(4701), + [anon_sym_POUND] = ACTIONS(4707), + }, + [STATE(754)] = { + [sym__argument] = STATE(5362), + [sym_named_argument] = STATE(5362), + [sym_byval_argument] = STATE(5362), + [sym__primary_expression] = STATE(1237), + [sym__expression] = STATE(2692), + [sym_comparison_expression] = STATE(4877), + [sym__comparison_operand] = STATE(11453), + [sym_logical_value_expression] = STATE(4877), + [sym__callable_expression] = STATE(13269), + [sym_call_expression] = STATE(880), + [sym_new_expression] = STATE(1237), + [sym_addressof_expression] = STATE(1237), + [sym_type_of_expression] = STATE(1237), + [sym_member_expression] = STATE(1344), + [sym_qualified_member_expression] = STATE(1142), + [sym_implicit_member_expression] = STATE(1142), + [sym_parenthesized_expression] = STATE(1237), + [sym_binary_expression] = STATE(1237), + [sym_unary_expression] = STATE(2692), + [sym__signed_unary_expression] = STATE(1246), + [sym__literal] = STATE(1237), + [sym_boolean_literal] = STATE(1237), + [sym_file_number_literal] = STATE(1237), + [aux_sym__argument_sequence_repeat2] = STATE(5357), + [sym_identifier] = ACTIONS(4521), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4523), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4527), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_byval_modifier_token1] = ACTIONS(4529), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5158), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4861), + [aux_sym_as_type_clause_token2] = ACTIONS(4535), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4537), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym_select_statement_token2] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4543), + [aux_sym_type_of_expression_token1] = ACTIONS(4545), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(4547), + [sym_number_literal] = ACTIONS(4547), + [aux_sym_boolean_literal_token1] = ACTIONS(4549), + [aux_sym_boolean_literal_token2] = ACTIONS(4549), + [sym_nothing_literal] = ACTIONS(4551), + [sym_null_literal] = ACTIONS(4551), + [sym_empty_literal] = ACTIONS(4551), + [sym_date_literal] = ACTIONS(4547), + [anon_sym_POUND] = ACTIONS(4553), + }, + [STATE(755)] = { + [sym__argument] = STATE(5135), + [sym_named_argument] = STATE(5135), + [sym_byval_argument] = STATE(5135), + [sym__primary_expression] = STATE(1310), + [sym__expression] = STATE(2571), + [sym_comparison_expression] = STATE(4732), + [sym__comparison_operand] = STATE(11361), + [sym_logical_value_expression] = STATE(4732), + [sym__callable_expression] = STATE(13583), + [sym_call_expression] = STATE(1031), + [sym_new_expression] = STATE(1310), + [sym_addressof_expression] = STATE(1310), + [sym_type_of_expression] = STATE(1310), + [sym_member_expression] = STATE(1419), + [sym_qualified_member_expression] = STATE(1221), + [sym_implicit_member_expression] = STATE(1221), + [sym_parenthesized_expression] = STATE(1310), + [sym_binary_expression] = STATE(1310), + [sym_unary_expression] = STATE(2571), + [sym__signed_unary_expression] = STATE(1313), + [sym__literal] = STATE(1310), + [sym_boolean_literal] = STATE(1310), + [sym_file_number_literal] = STATE(1310), + [aux_sym__argument_sequence_repeat2] = STATE(5136), + [sym_identifier] = ACTIONS(4711), + [sym_newline] = ACTIONS(4174), + [anon_sym_COLON] = ACTIONS(4174), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4176), + [aux_sym_frm_property_statement_token1] = ACTIONS(4713), + [anon_sym_DOT] = ACTIONS(4715), + [anon_sym_BANG] = ACTIONS(4717), + [aux_sym__attribute_identifier_token1] = ACTIONS(4176), + [aux_sym_option_statement_token3] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4176), + [aux_sym_preprocessor_const_token1] = ACTIONS(4176), + [sym_static_modifier] = ACTIONS(4176), + [sym__dim_keyword] = ACTIONS(4176), + [sym__redim_keyword] = ACTIONS(4176), + [aux_sym_byval_modifier_token1] = ACTIONS(4719), + [aux_sym_get_accessor_token1] = ACTIONS(4176), + [aux_sym_set_accessor_token1] = ACTIONS(4176), + [anon_sym_COMMA] = ACTIONS(5162), + [aux_sym_const_declaration_token1] = ACTIONS(4176), + [anon_sym_LPAREN] = ACTIONS(4953), + [aux_sym_as_type_clause_token2] = ACTIONS(4725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4727), + [aux_sym_visibility_token1] = ACTIONS(4176), + [aux_sym_visibility_token2] = ACTIONS(4176), + [aux_sym_elseif_fragment_token1] = ACTIONS(4176), + [aux_sym_else_fragment_token1] = ACTIONS(4176), + [aux_sym_select_statement_token1] = ACTIONS(4176), + [aux_sym__for_header_token1] = ACTIONS(4176), + [aux_sym_do_statement_token1] = ACTIONS(4176), + [aux_sym_do_condition_token1] = ACTIONS(4176), + [aux_sym_while_statement_token1] = ACTIONS(4176), + [aux_sym_with_statement_token1] = ACTIONS(4176), + [aux_sym_exit_statement_token1] = ACTIONS(4176), + [sym_end_statement] = ACTIONS(4174), + [aux_sym_on_goto_statement_token1] = ACTIONS(4176), + [aux_sym_on_goto_statement_token2] = ACTIONS(4176), + [aux_sym_on_error_statement_token2] = ACTIONS(4176), + [sym__ambiguous_redim_statement] = ACTIONS(4174), + [aux_sym_erase_statement_token1] = ACTIONS(4176), + [aux_sym_open_statement_token1] = ACTIONS(4176), + [aux_sym_file_mode_token2] = ACTIONS(4176), + [aux_sym_file_access_token2] = ACTIONS(4176), + [aux_sym_file_lock_token2] = ACTIONS(4176), + [aux_sym_print_statement_token1] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4729), + [anon_sym_DASH] = ACTIONS(4731), + [anon_sym_QMARK] = ACTIONS(4174), + [aux_sym_close_statement_token1] = ACTIONS(4176), + [aux_sym_put_statement_token1] = ACTIONS(4176), + [aux_sym_unlock_statement_token1] = ACTIONS(4176), + [aux_sym_seek_statement_token1] = ACTIONS(4176), + [sym_reset_statement] = ACTIONS(4176), + [aux_sym_raise_event_statement_token1] = ACTIONS(4176), + [sym_stop_statement] = ACTIONS(4176), + [sym_beep_statement] = ACTIONS(4176), + [aux_sym_unload_statement_token1] = ACTIONS(4176), + [aux_sym_def_type_statement_token1] = ACTIONS(4176), + [aux_sym_def_type_statement_token2] = ACTIONS(4176), + [aux_sym_def_type_statement_token3] = ACTIONS(4176), + [aux_sym_def_type_statement_token4] = ACTIONS(4176), + [aux_sym_def_type_statement_token5] = ACTIONS(4176), + [aux_sym_def_type_statement_token6] = ACTIONS(4176), + [aux_sym_def_type_statement_token7] = ACTIONS(4176), + [aux_sym_def_type_statement_token8] = ACTIONS(4176), + [aux_sym_def_type_statement_token9] = ACTIONS(4176), + [aux_sym_def_type_statement_token10] = ACTIONS(4176), + [aux_sym_def_type_statement_token11] = ACTIONS(4176), + [aux_sym_def_type_statement_token12] = ACTIONS(4176), + [aux_sym_def_type_statement_token13] = ACTIONS(4176), + [aux_sym_def_type_statement_token14] = ACTIONS(4176), + [aux_sym_call_statement_token1] = ACTIONS(4176), + [sym__ambiguous_call_statement] = ACTIONS(4176), + [aux_sym_addressof_expression_token1] = ACTIONS(4733), + [aux_sym_type_of_expression_token1] = ACTIONS(4735), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(4737), + [sym_number_literal] = ACTIONS(4737), + [aux_sym_boolean_literal_token1] = ACTIONS(4739), + [aux_sym_boolean_literal_token2] = ACTIONS(4739), + [sym_nothing_literal] = ACTIONS(4741), + [sym_null_literal] = ACTIONS(4741), + [sym_empty_literal] = ACTIONS(4741), + [sym_date_literal] = ACTIONS(4737), + [anon_sym_POUND] = ACTIONS(4743), + }, + [STATE(756)] = { + [sym__argument] = STATE(5186), + [sym_named_argument] = STATE(5186), + [sym_byval_argument] = STATE(5186), + [sym__primary_expression] = STATE(1310), + [sym__expression] = STATE(2571), + [sym_comparison_expression] = STATE(4732), + [sym__comparison_operand] = STATE(11361), + [sym_logical_value_expression] = STATE(4732), + [sym__callable_expression] = STATE(13583), + [sym_call_expression] = STATE(1031), + [sym_new_expression] = STATE(1310), + [sym_addressof_expression] = STATE(1310), + [sym_type_of_expression] = STATE(1310), + [sym_member_expression] = STATE(1419), + [sym_qualified_member_expression] = STATE(1221), + [sym_implicit_member_expression] = STATE(1221), + [sym_parenthesized_expression] = STATE(1310), + [sym_binary_expression] = STATE(1310), + [sym_unary_expression] = STATE(2571), + [sym__signed_unary_expression] = STATE(1313), + [sym__literal] = STATE(1310), + [sym_boolean_literal] = STATE(1310), + [sym_file_number_literal] = STATE(1310), + [aux_sym__argument_sequence_repeat2] = STATE(5187), + [sym_identifier] = ACTIONS(4711), + [sym_newline] = ACTIONS(4170), + [anon_sym_COLON] = ACTIONS(4170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4172), + [aux_sym_frm_property_statement_token1] = ACTIONS(4713), + [anon_sym_DOT] = ACTIONS(4715), + [anon_sym_BANG] = ACTIONS(4717), + [aux_sym__attribute_identifier_token1] = ACTIONS(4172), + [aux_sym_option_statement_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4172), + [aux_sym_preprocessor_const_token1] = ACTIONS(4172), + [sym_static_modifier] = ACTIONS(4172), + [sym__dim_keyword] = ACTIONS(4172), + [sym__redim_keyword] = ACTIONS(4172), + [aux_sym_byval_modifier_token1] = ACTIONS(4719), + [aux_sym_get_accessor_token1] = ACTIONS(4172), + [aux_sym_set_accessor_token1] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(5162), + [aux_sym_const_declaration_token1] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4953), + [aux_sym_as_type_clause_token2] = ACTIONS(4725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4727), + [aux_sym_visibility_token1] = ACTIONS(4172), + [aux_sym_visibility_token2] = ACTIONS(4172), + [aux_sym_elseif_fragment_token1] = ACTIONS(4172), + [aux_sym_else_fragment_token1] = ACTIONS(4172), + [aux_sym_select_statement_token1] = ACTIONS(4172), + [aux_sym__for_header_token1] = ACTIONS(4172), + [aux_sym_do_statement_token1] = ACTIONS(4172), + [aux_sym_do_condition_token1] = ACTIONS(4172), + [aux_sym_while_statement_token1] = ACTIONS(4172), + [aux_sym_with_statement_token1] = ACTIONS(4172), + [aux_sym_exit_statement_token1] = ACTIONS(4172), + [sym_end_statement] = ACTIONS(4170), + [aux_sym_on_goto_statement_token1] = ACTIONS(4172), + [aux_sym_on_goto_statement_token2] = ACTIONS(4172), + [aux_sym_on_error_statement_token2] = ACTIONS(4172), + [sym__ambiguous_redim_statement] = ACTIONS(4170), + [aux_sym_erase_statement_token1] = ACTIONS(4172), + [aux_sym_open_statement_token1] = ACTIONS(4172), + [aux_sym_file_mode_token2] = ACTIONS(4172), + [aux_sym_file_access_token2] = ACTIONS(4172), + [aux_sym_file_lock_token2] = ACTIONS(4172), + [aux_sym_print_statement_token1] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4729), + [anon_sym_DASH] = ACTIONS(4731), + [anon_sym_QMARK] = ACTIONS(4170), + [aux_sym_close_statement_token1] = ACTIONS(4172), + [aux_sym_put_statement_token1] = ACTIONS(4172), + [aux_sym_unlock_statement_token1] = ACTIONS(4172), + [aux_sym_seek_statement_token1] = ACTIONS(4172), + [sym_reset_statement] = ACTIONS(4172), + [aux_sym_raise_event_statement_token1] = ACTIONS(4172), + [sym_stop_statement] = ACTIONS(4172), + [sym_beep_statement] = ACTIONS(4172), + [aux_sym_unload_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token2] = ACTIONS(4172), + [aux_sym_def_type_statement_token3] = ACTIONS(4172), + [aux_sym_def_type_statement_token4] = ACTIONS(4172), + [aux_sym_def_type_statement_token5] = ACTIONS(4172), + [aux_sym_def_type_statement_token6] = ACTIONS(4172), + [aux_sym_def_type_statement_token7] = ACTIONS(4172), + [aux_sym_def_type_statement_token8] = ACTIONS(4172), + [aux_sym_def_type_statement_token9] = ACTIONS(4172), + [aux_sym_def_type_statement_token10] = ACTIONS(4172), + [aux_sym_def_type_statement_token11] = ACTIONS(4172), + [aux_sym_def_type_statement_token12] = ACTIONS(4172), + [aux_sym_def_type_statement_token13] = ACTIONS(4172), + [aux_sym_def_type_statement_token14] = ACTIONS(4172), + [aux_sym_call_statement_token1] = ACTIONS(4172), + [sym__ambiguous_call_statement] = ACTIONS(4172), + [aux_sym_addressof_expression_token1] = ACTIONS(4733), + [aux_sym_type_of_expression_token1] = ACTIONS(4735), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(4737), + [sym_number_literal] = ACTIONS(4737), + [aux_sym_boolean_literal_token1] = ACTIONS(4739), + [aux_sym_boolean_literal_token2] = ACTIONS(4739), + [sym_nothing_literal] = ACTIONS(4741), + [sym_null_literal] = ACTIONS(4741), + [sym_empty_literal] = ACTIONS(4741), + [sym_date_literal] = ACTIONS(4737), + [anon_sym_POUND] = ACTIONS(4743), + }, + [STATE(757)] = { + [sym__argument] = STATE(5210), + [sym_named_argument] = STATE(5210), + [sym_byval_argument] = STATE(5210), + [sym__primary_expression] = STATE(1310), + [sym__expression] = STATE(2571), + [sym_comparison_expression] = STATE(4732), + [sym__comparison_operand] = STATE(11361), + [sym_logical_value_expression] = STATE(4732), + [sym__callable_expression] = STATE(13583), + [sym_call_expression] = STATE(1031), + [sym_new_expression] = STATE(1310), + [sym_addressof_expression] = STATE(1310), + [sym_type_of_expression] = STATE(1310), + [sym_member_expression] = STATE(1419), + [sym_qualified_member_expression] = STATE(1221), + [sym_implicit_member_expression] = STATE(1221), + [sym_parenthesized_expression] = STATE(1310), + [sym_binary_expression] = STATE(1310), + [sym_unary_expression] = STATE(2571), + [sym__signed_unary_expression] = STATE(1313), + [sym__literal] = STATE(1310), + [sym_boolean_literal] = STATE(1310), + [sym_file_number_literal] = STATE(1310), + [aux_sym__argument_sequence_repeat2] = STATE(5209), + [sym_identifier] = ACTIONS(4711), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4713), + [anon_sym_DOT] = ACTIONS(4715), + [anon_sym_BANG] = ACTIONS(4717), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_byval_modifier_token1] = ACTIONS(4719), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5162), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4953), + [aux_sym_as_type_clause_token2] = ACTIONS(4725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4727), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_while_statement_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4729), + [anon_sym_DASH] = ACTIONS(4731), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4733), + [aux_sym_type_of_expression_token1] = ACTIONS(4735), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(4737), + [sym_number_literal] = ACTIONS(4737), + [aux_sym_boolean_literal_token1] = ACTIONS(4739), + [aux_sym_boolean_literal_token2] = ACTIONS(4739), + [sym_nothing_literal] = ACTIONS(4741), + [sym_null_literal] = ACTIONS(4741), + [sym_empty_literal] = ACTIONS(4741), + [sym_date_literal] = ACTIONS(4737), + [anon_sym_POUND] = ACTIONS(4743), + }, + [STATE(758)] = { + [sym__argument] = STATE(5166), + [sym_named_argument] = STATE(5166), + [sym_byval_argument] = STATE(5166), + [sym__primary_expression] = STATE(1347), + [sym__expression] = STATE(2603), + [sym_comparison_expression] = STATE(4779), + [sym__comparison_operand] = STATE(11305), + [sym_logical_value_expression] = STATE(4779), + [sym__callable_expression] = STATE(13180), + [sym_call_expression] = STATE(911), + [sym_new_expression] = STATE(1347), + [sym_addressof_expression] = STATE(1347), + [sym_type_of_expression] = STATE(1347), + [sym_member_expression] = STATE(1116), + [sym_qualified_member_expression] = STATE(1206), + [sym_implicit_member_expression] = STATE(1206), + [sym_parenthesized_expression] = STATE(1347), + [sym_binary_expression] = STATE(1347), + [sym_unary_expression] = STATE(2603), + [sym__signed_unary_expression] = STATE(1348), + [sym__literal] = STATE(1347), + [sym_boolean_literal] = STATE(1347), + [sym_file_number_literal] = STATE(1347), + [aux_sym__argument_sequence_repeat2] = STATE(5165), + [sym_identifier] = ACTIONS(4555), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4557), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4561), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_byval_modifier_token1] = ACTIONS(4563), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5154), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4869), + [aux_sym_as_type_clause_token2] = ACTIONS(4569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4571), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4577), + [aux_sym_type_of_expression_token1] = ACTIONS(4579), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(4581), + [sym_number_literal] = ACTIONS(4581), + [aux_sym_boolean_literal_token1] = ACTIONS(4583), + [aux_sym_boolean_literal_token2] = ACTIONS(4583), + [sym_nothing_literal] = ACTIONS(4585), + [sym_null_literal] = ACTIONS(4585), + [sym_empty_literal] = ACTIONS(4585), + [sym_date_literal] = ACTIONS(4581), + [anon_sym_POUND] = ACTIONS(4587), + }, + [STATE(759)] = { + [sym__argument] = STATE(5402), + [sym_named_argument] = STATE(5402), + [sym_byval_argument] = STATE(5402), + [sym__primary_expression] = STATE(1347), + [sym__expression] = STATE(2603), + [sym_comparison_expression] = STATE(4779), + [sym__comparison_operand] = STATE(11305), + [sym_logical_value_expression] = STATE(4779), + [sym__callable_expression] = STATE(13180), + [sym_call_expression] = STATE(911), + [sym_new_expression] = STATE(1347), + [sym_addressof_expression] = STATE(1347), + [sym_type_of_expression] = STATE(1347), + [sym_member_expression] = STATE(1116), + [sym_qualified_member_expression] = STATE(1206), + [sym_implicit_member_expression] = STATE(1206), + [sym_parenthesized_expression] = STATE(1347), + [sym_binary_expression] = STATE(1347), + [sym_unary_expression] = STATE(2603), + [sym__signed_unary_expression] = STATE(1348), + [sym__literal] = STATE(1347), + [sym_boolean_literal] = STATE(1347), + [sym_file_number_literal] = STATE(1347), + [aux_sym__argument_sequence_repeat2] = STATE(5403), + [sym_identifier] = ACTIONS(4555), + [sym_newline] = ACTIONS(4174), + [anon_sym_COLON] = ACTIONS(4174), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4176), + [aux_sym_frm_property_statement_token1] = ACTIONS(4557), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4561), + [aux_sym__attribute_identifier_token1] = ACTIONS(4176), + [aux_sym_option_statement_token3] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4176), + [aux_sym_preprocessor_const_token1] = ACTIONS(4176), + [sym_static_modifier] = ACTIONS(4176), + [sym__dim_keyword] = ACTIONS(4176), + [sym__redim_keyword] = ACTIONS(4176), + [aux_sym_byval_modifier_token1] = ACTIONS(4563), + [aux_sym_get_accessor_token1] = ACTIONS(4176), + [aux_sym_set_accessor_token1] = ACTIONS(4176), + [anon_sym_COMMA] = ACTIONS(5154), + [aux_sym_const_declaration_token1] = ACTIONS(4176), + [anon_sym_LPAREN] = ACTIONS(4869), + [aux_sym_as_type_clause_token2] = ACTIONS(4569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4571), + [aux_sym_visibility_token1] = ACTIONS(4176), + [aux_sym_visibility_token2] = ACTIONS(4176), + [aux_sym_elseif_fragment_token1] = ACTIONS(4176), + [aux_sym_else_fragment_token1] = ACTIONS(4176), + [aux_sym_select_statement_token1] = ACTIONS(4176), + [aux_sym__for_header_token1] = ACTIONS(4176), + [aux_sym_do_statement_token1] = ACTIONS(4176), + [aux_sym_do_condition_token1] = ACTIONS(4176), + [aux_sym_with_statement_token1] = ACTIONS(4176), + [aux_sym_exit_statement_token1] = ACTIONS(4176), + [sym_end_statement] = ACTIONS(4174), + [aux_sym_on_goto_statement_token1] = ACTIONS(4176), + [aux_sym_on_goto_statement_token2] = ACTIONS(4176), + [aux_sym_on_error_statement_token2] = ACTIONS(4176), + [sym__ambiguous_redim_statement] = ACTIONS(4174), + [aux_sym_erase_statement_token1] = ACTIONS(4176), + [aux_sym_open_statement_token1] = ACTIONS(4176), + [aux_sym_file_mode_token2] = ACTIONS(4176), + [aux_sym_file_access_token2] = ACTIONS(4176), + [aux_sym_file_lock_token2] = ACTIONS(4176), + [aux_sym_print_statement_token1] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4573), + [anon_sym_DASH] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4174), + [aux_sym_close_statement_token1] = ACTIONS(4176), + [aux_sym_put_statement_token1] = ACTIONS(4176), + [aux_sym_unlock_statement_token1] = ACTIONS(4176), + [aux_sym_seek_statement_token1] = ACTIONS(4176), + [sym_reset_statement] = ACTIONS(4176), + [aux_sym_raise_event_statement_token1] = ACTIONS(4176), + [sym_stop_statement] = ACTIONS(4176), + [sym_beep_statement] = ACTIONS(4176), + [aux_sym_unload_statement_token1] = ACTIONS(4176), + [aux_sym_def_type_statement_token1] = ACTIONS(4176), + [aux_sym_def_type_statement_token2] = ACTIONS(4176), + [aux_sym_def_type_statement_token3] = ACTIONS(4176), + [aux_sym_def_type_statement_token4] = ACTIONS(4176), + [aux_sym_def_type_statement_token5] = ACTIONS(4176), + [aux_sym_def_type_statement_token6] = ACTIONS(4176), + [aux_sym_def_type_statement_token7] = ACTIONS(4176), + [aux_sym_def_type_statement_token8] = ACTIONS(4176), + [aux_sym_def_type_statement_token9] = ACTIONS(4176), + [aux_sym_def_type_statement_token10] = ACTIONS(4176), + [aux_sym_def_type_statement_token11] = ACTIONS(4176), + [aux_sym_def_type_statement_token12] = ACTIONS(4176), + [aux_sym_def_type_statement_token13] = ACTIONS(4176), + [aux_sym_def_type_statement_token14] = ACTIONS(4176), + [aux_sym_call_statement_token1] = ACTIONS(4176), + [sym__ambiguous_call_statement] = ACTIONS(4176), + [aux_sym_addressof_expression_token1] = ACTIONS(4577), + [aux_sym_type_of_expression_token1] = ACTIONS(4579), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(4581), + [sym_number_literal] = ACTIONS(4581), + [aux_sym_boolean_literal_token1] = ACTIONS(4583), + [aux_sym_boolean_literal_token2] = ACTIONS(4583), + [sym_nothing_literal] = ACTIONS(4585), + [sym_null_literal] = ACTIONS(4585), + [sym_empty_literal] = ACTIONS(4585), + [sym_date_literal] = ACTIONS(4581), + [anon_sym_POUND] = ACTIONS(4587), + }, + [STATE(760)] = { + [sym__argument] = STATE(5338), + [sym_named_argument] = STATE(5338), + [sym_byval_argument] = STATE(5338), + [sym__primary_expression] = STATE(1213), + [sym__expression] = STATE(2701), + [sym_comparison_expression] = STATE(4796), + [sym__comparison_operand] = STATE(11262), + [sym_logical_value_expression] = STATE(4796), + [sym__callable_expression] = STATE(13267), + [sym_call_expression] = STATE(892), + [sym_new_expression] = STATE(1213), + [sym_addressof_expression] = STATE(1213), + [sym_type_of_expression] = STATE(1213), + [sym_member_expression] = STATE(1197), + [sym_qualified_member_expression] = STATE(1441), + [sym_implicit_member_expression] = STATE(1441), + [sym_parenthesized_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_unary_expression] = STATE(2701), + [sym__signed_unary_expression] = STATE(1416), + [sym__literal] = STATE(1213), + [sym_boolean_literal] = STATE(1213), + [sym_file_number_literal] = STATE(1213), + [aux_sym__argument_sequence_repeat2] = STATE(5342), + [sym_identifier] = ACTIONS(4772), + [sym_newline] = ACTIONS(4170), + [anon_sym_COLON] = ACTIONS(4170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4172), + [aux_sym_frm_property_statement_token1] = ACTIONS(4774), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_BANG] = ACTIONS(4778), + [aux_sym__attribute_identifier_token1] = ACTIONS(4172), + [aux_sym_option_statement_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4172), + [aux_sym_preprocessor_const_token1] = ACTIONS(4172), + [sym_static_modifier] = ACTIONS(4172), + [sym__dim_keyword] = ACTIONS(4172), + [sym__redim_keyword] = ACTIONS(4172), + [aux_sym_byval_modifier_token1] = ACTIONS(4780), + [aux_sym_get_accessor_token1] = ACTIONS(4172), + [aux_sym_set_accessor_token1] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(5156), + [aux_sym_const_declaration_token1] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4875), + [aux_sym_as_type_clause_token2] = ACTIONS(4786), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4788), + [aux_sym_visibility_token1] = ACTIONS(4172), + [aux_sym_visibility_token2] = ACTIONS(4172), + [aux_sym_elseif_fragment_token1] = ACTIONS(4172), + [aux_sym_else_fragment_token1] = ACTIONS(4172), + [aux_sym_select_statement_token1] = ACTIONS(4172), + [aux_sym__for_header_token1] = ACTIONS(4172), + [aux_sym_do_statement_token1] = ACTIONS(4172), + [aux_sym_do_statement_token2] = ACTIONS(4172), + [aux_sym_do_condition_token1] = ACTIONS(4172), + [aux_sym_with_statement_token1] = ACTIONS(4172), + [aux_sym_exit_statement_token1] = ACTIONS(4172), + [sym_end_statement] = ACTIONS(4170), + [aux_sym_on_goto_statement_token1] = ACTIONS(4172), + [aux_sym_on_goto_statement_token2] = ACTIONS(4172), + [aux_sym_on_error_statement_token2] = ACTIONS(4172), + [sym__ambiguous_redim_statement] = ACTIONS(4170), + [aux_sym_erase_statement_token1] = ACTIONS(4172), + [aux_sym_open_statement_token1] = ACTIONS(4172), + [aux_sym_file_mode_token2] = ACTIONS(4172), + [aux_sym_file_access_token2] = ACTIONS(4172), + [aux_sym_file_lock_token2] = ACTIONS(4172), + [aux_sym_print_statement_token1] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4790), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_QMARK] = ACTIONS(4170), + [aux_sym_close_statement_token1] = ACTIONS(4172), + [aux_sym_put_statement_token1] = ACTIONS(4172), + [aux_sym_unlock_statement_token1] = ACTIONS(4172), + [aux_sym_seek_statement_token1] = ACTIONS(4172), + [sym_reset_statement] = ACTIONS(4172), + [aux_sym_raise_event_statement_token1] = ACTIONS(4172), + [sym_stop_statement] = ACTIONS(4172), + [sym_beep_statement] = ACTIONS(4172), + [aux_sym_unload_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token2] = ACTIONS(4172), + [aux_sym_def_type_statement_token3] = ACTIONS(4172), + [aux_sym_def_type_statement_token4] = ACTIONS(4172), + [aux_sym_def_type_statement_token5] = ACTIONS(4172), + [aux_sym_def_type_statement_token6] = ACTIONS(4172), + [aux_sym_def_type_statement_token7] = ACTIONS(4172), + [aux_sym_def_type_statement_token8] = ACTIONS(4172), + [aux_sym_def_type_statement_token9] = ACTIONS(4172), + [aux_sym_def_type_statement_token10] = ACTIONS(4172), + [aux_sym_def_type_statement_token11] = ACTIONS(4172), + [aux_sym_def_type_statement_token12] = ACTIONS(4172), + [aux_sym_def_type_statement_token13] = ACTIONS(4172), + [aux_sym_def_type_statement_token14] = ACTIONS(4172), + [aux_sym_call_statement_token1] = ACTIONS(4172), + [sym__ambiguous_call_statement] = ACTIONS(4172), + [aux_sym_addressof_expression_token1] = ACTIONS(4794), + [aux_sym_type_of_expression_token1] = ACTIONS(4796), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(4798), + [sym_number_literal] = ACTIONS(4798), + [aux_sym_boolean_literal_token1] = ACTIONS(4800), + [aux_sym_boolean_literal_token2] = ACTIONS(4800), + [sym_nothing_literal] = ACTIONS(4802), + [sym_null_literal] = ACTIONS(4802), + [sym_empty_literal] = ACTIONS(4802), + [sym_date_literal] = ACTIONS(4798), + [anon_sym_POUND] = ACTIONS(4804), + }, + [STATE(761)] = { + [sym_argument_list] = STATE(2302), + [sym_comparison_operator] = STATE(8860), + [sym_identifier] = ACTIONS(4236), + [sym_newline] = ACTIONS(4238), + [anon_sym_COLON] = ACTIONS(4238), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4236), + [aux_sym_frm_property_statement_token1] = ACTIONS(4236), + [anon_sym_EQ] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(5164), + [anon_sym_BANG] = ACTIONS(5166), + [aux_sym__attribute_identifier_token1] = ACTIONS(4236), + [aux_sym_option_statement_token3] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4236), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4236), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4236), + [aux_sym_preprocessor_const_token1] = ACTIONS(4236), + [sym_static_modifier] = ACTIONS(4236), + [sym__dim_keyword] = ACTIONS(4236), + [sym__redim_keyword] = ACTIONS(4236), + [aux_sym_get_accessor_token1] = ACTIONS(4236), + [aux_sym_set_accessor_token1] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4238), + [aux_sym_const_declaration_token1] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(5168), + [aux_sym_as_type_clause_token2] = ACTIONS(4236), + [anon_sym_STAR] = ACTIONS(4248), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4236), + [aux_sym_visibility_token1] = ACTIONS(4236), + [aux_sym_visibility_token2] = ACTIONS(4236), + [aux_sym_elseif_fragment_token1] = ACTIONS(4236), + [aux_sym_else_fragment_token1] = ACTIONS(4236), + [aux_sym_select_statement_token1] = ACTIONS(4236), + [aux_sym_case_expression_token1] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_LT_GT] = ACTIONS(4240), + [aux_sym__for_header_token1] = ACTIONS(4236), + [aux_sym_do_statement_token1] = ACTIONS(4236), + [aux_sym_do_condition_token1] = ACTIONS(4236), + [aux_sym_with_statement_token1] = ACTIONS(4236), + [aux_sym_exit_statement_token1] = ACTIONS(4236), + [sym_end_statement] = ACTIONS(4238), + [aux_sym_on_goto_statement_token1] = ACTIONS(4236), + [aux_sym_on_goto_statement_token2] = ACTIONS(4236), + [aux_sym_on_error_statement_token2] = ACTIONS(4236), + [sym__ambiguous_redim_statement] = ACTIONS(4238), + [aux_sym_erase_statement_token1] = ACTIONS(4236), + [aux_sym_open_statement_token1] = ACTIONS(4236), + [aux_sym_file_mode_token2] = ACTIONS(4236), + [aux_sym_file_access_token2] = ACTIONS(4236), + [aux_sym_file_lock_token2] = ACTIONS(4236), + [aux_sym_print_statement_token1] = ACTIONS(4236), + [anon_sym_CARET] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_BSLASH] = ACTIONS(4248), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4252), + [anon_sym_SEMI] = ACTIONS(4238), + [anon_sym_QMARK] = ACTIONS(4238), + [aux_sym_close_statement_token1] = ACTIONS(4236), + [aux_sym_put_statement_token1] = ACTIONS(4236), + [aux_sym_unlock_statement_token1] = ACTIONS(4236), + [aux_sym_seek_statement_token1] = ACTIONS(4236), + [sym_reset_statement] = ACTIONS(4236), + [aux_sym_raise_event_statement_token1] = ACTIONS(4236), + [sym_stop_statement] = ACTIONS(4236), + [sym_beep_statement] = ACTIONS(4236), + [aux_sym_unload_statement_token1] = ACTIONS(4236), + [aux_sym_def_type_statement_token1] = ACTIONS(4236), + [aux_sym_def_type_statement_token2] = ACTIONS(4236), + [aux_sym_def_type_statement_token3] = ACTIONS(4236), + [aux_sym_def_type_statement_token4] = ACTIONS(4236), + [aux_sym_def_type_statement_token5] = ACTIONS(4236), + [aux_sym_def_type_statement_token6] = ACTIONS(4236), + [aux_sym_def_type_statement_token7] = ACTIONS(4236), + [aux_sym_def_type_statement_token8] = ACTIONS(4236), + [aux_sym_def_type_statement_token9] = ACTIONS(4236), + [aux_sym_def_type_statement_token10] = ACTIONS(4236), + [aux_sym_def_type_statement_token11] = ACTIONS(4236), + [aux_sym_def_type_statement_token12] = ACTIONS(4236), + [aux_sym_def_type_statement_token13] = ACTIONS(4236), + [aux_sym_def_type_statement_token14] = ACTIONS(4236), + [aux_sym_call_statement_token1] = ACTIONS(4236), + [sym__ambiguous_call_statement] = ACTIONS(4236), + [aux_sym_comparison_operator_token1] = ACTIONS(4250), + [aux_sym_addressof_expression_token1] = ACTIONS(4236), + [aux_sym_type_of_expression_token1] = ACTIONS(4236), + [aux_sym_unary_expression_token1] = ACTIONS(4236), + [sym_string_literal] = ACTIONS(4238), + [sym_number_literal] = ACTIONS(4238), + [aux_sym_boolean_literal_token1] = ACTIONS(4236), + [aux_sym_boolean_literal_token2] = ACTIONS(4236), + [sym_nothing_literal] = ACTIONS(4236), + [sym_null_literal] = ACTIONS(4236), + [sym_empty_literal] = ACTIONS(4236), + [sym_date_literal] = ACTIONS(4238), + [anon_sym_POUND] = ACTIONS(4236), + }, + [STATE(762)] = { + [sym__argument] = STATE(6145), + [sym_named_argument] = STATE(6145), + [sym_byval_argument] = STATE(6145), + [sym__primary_expression] = STATE(1157), + [sym__expression] = STATE(2764), + [sym_comparison_expression] = STATE(4900), + [sym__comparison_operand] = STATE(11458), + [sym_logical_value_expression] = STATE(4900), + [sym__callable_expression] = STATE(13443), + [sym_call_expression] = STATE(981), + [sym_new_expression] = STATE(1157), + [sym_addressof_expression] = STATE(1157), + [sym_type_of_expression] = STATE(1157), + [sym_member_expression] = STATE(1343), + [sym_qualified_member_expression] = STATE(1158), + [sym_implicit_member_expression] = STATE(1158), + [sym_parenthesized_expression] = STATE(1157), + [sym_binary_expression] = STATE(1157), + [sym_unary_expression] = STATE(2764), + [sym__signed_unary_expression] = STATE(1163), + [sym__literal] = STATE(1157), + [sym_boolean_literal] = STATE(1157), + [sym_file_number_literal] = STATE(1157), + [sym_identifier] = ACTIONS(5170), + [sym_newline] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4181), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4183), + [aux_sym_frm_property_statement_token1] = ACTIONS(5173), + [anon_sym_DOT] = ACTIONS(5176), + [anon_sym_BANG] = ACTIONS(5179), + [aux_sym__attribute_identifier_token1] = ACTIONS(4183), + [aux_sym_option_statement_token3] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4183), + [aux_sym_preprocessor_const_token1] = ACTIONS(4183), + [sym_static_modifier] = ACTIONS(4183), + [sym__dim_keyword] = ACTIONS(4183), + [sym__redim_keyword] = ACTIONS(4183), + [aux_sym_byval_modifier_token1] = ACTIONS(4683), + [aux_sym_get_accessor_token1] = ACTIONS(4183), + [aux_sym_set_accessor_token1] = ACTIONS(4183), + [anon_sym_COMMA] = ACTIONS(4181), + [aux_sym_const_declaration_token1] = ACTIONS(4183), + [anon_sym_LPAREN] = ACTIONS(5182), + [aux_sym_as_type_clause_token2] = ACTIONS(5185), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5188), + [aux_sym_visibility_token1] = ACTIONS(4183), + [aux_sym_visibility_token2] = ACTIONS(4183), + [aux_sym_elseif_fragment_token1] = ACTIONS(4183), + [aux_sym_else_fragment_token1] = ACTIONS(4183), + [aux_sym_select_statement_token1] = ACTIONS(4183), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4183), + [aux_sym__for_header_token1] = ACTIONS(4183), + [aux_sym_do_statement_token1] = ACTIONS(4183), + [aux_sym_do_condition_token1] = ACTIONS(4183), + [aux_sym_with_statement_token1] = ACTIONS(4183), + [aux_sym_exit_statement_token1] = ACTIONS(4183), + [sym_end_statement] = ACTIONS(4181), + [aux_sym_on_goto_statement_token1] = ACTIONS(4183), + [aux_sym_on_goto_statement_token2] = ACTIONS(4183), + [aux_sym_on_error_statement_token2] = ACTIONS(4183), + [sym__ambiguous_redim_statement] = ACTIONS(4181), + [aux_sym_erase_statement_token1] = ACTIONS(4183), + [aux_sym_open_statement_token1] = ACTIONS(4183), + [aux_sym_file_mode_token2] = ACTIONS(4183), + [aux_sym_file_access_token2] = ACTIONS(4183), + [aux_sym_file_lock_token2] = ACTIONS(4183), + [aux_sym_print_statement_token1] = ACTIONS(4183), + [anon_sym_PLUS] = ACTIONS(5191), + [anon_sym_DASH] = ACTIONS(5194), + [anon_sym_QMARK] = ACTIONS(4181), + [aux_sym_close_statement_token1] = ACTIONS(4183), + [aux_sym_put_statement_token1] = ACTIONS(4183), + [aux_sym_unlock_statement_token1] = ACTIONS(4183), + [aux_sym_seek_statement_token1] = ACTIONS(4183), + [sym_reset_statement] = ACTIONS(4183), + [aux_sym_raise_event_statement_token1] = ACTIONS(4183), + [sym_stop_statement] = ACTIONS(4183), + [sym_beep_statement] = ACTIONS(4183), + [aux_sym_unload_statement_token1] = ACTIONS(4183), + [aux_sym_def_type_statement_token1] = ACTIONS(4183), + [aux_sym_def_type_statement_token2] = ACTIONS(4183), + [aux_sym_def_type_statement_token3] = ACTIONS(4183), + [aux_sym_def_type_statement_token4] = ACTIONS(4183), + [aux_sym_def_type_statement_token5] = ACTIONS(4183), + [aux_sym_def_type_statement_token6] = ACTIONS(4183), + [aux_sym_def_type_statement_token7] = ACTIONS(4183), + [aux_sym_def_type_statement_token8] = ACTIONS(4183), + [aux_sym_def_type_statement_token9] = ACTIONS(4183), + [aux_sym_def_type_statement_token10] = ACTIONS(4183), + [aux_sym_def_type_statement_token11] = ACTIONS(4183), + [aux_sym_def_type_statement_token12] = ACTIONS(4183), + [aux_sym_def_type_statement_token13] = ACTIONS(4183), + [aux_sym_def_type_statement_token14] = ACTIONS(4183), + [aux_sym_call_statement_token1] = ACTIONS(4183), + [sym__ambiguous_call_statement] = ACTIONS(4183), + [aux_sym_addressof_expression_token1] = ACTIONS(5197), + [aux_sym_type_of_expression_token1] = ACTIONS(5200), + [aux_sym_unary_expression_token1] = ACTIONS(5203), + [sym_string_literal] = ACTIONS(5206), + [sym_number_literal] = ACTIONS(5206), + [aux_sym_boolean_literal_token1] = ACTIONS(5209), + [aux_sym_boolean_literal_token2] = ACTIONS(5209), + [sym_nothing_literal] = ACTIONS(5212), + [sym_null_literal] = ACTIONS(5212), + [sym_empty_literal] = ACTIONS(5212), + [sym_date_literal] = ACTIONS(5206), + [anon_sym_POUND] = ACTIONS(5215), + }, + [STATE(763)] = { + [sym__argument] = STATE(6110), + [sym_named_argument] = STATE(6110), + [sym_byval_argument] = STATE(6110), + [sym__primary_expression] = STATE(1347), + [sym__expression] = STATE(2603), + [sym_comparison_expression] = STATE(4779), + [sym__comparison_operand] = STATE(11305), + [sym_logical_value_expression] = STATE(4779), + [sym__callable_expression] = STATE(13180), + [sym_call_expression] = STATE(911), + [sym_new_expression] = STATE(1347), + [sym_addressof_expression] = STATE(1347), + [sym_type_of_expression] = STATE(1347), + [sym_member_expression] = STATE(1116), + [sym_qualified_member_expression] = STATE(1206), + [sym_implicit_member_expression] = STATE(1206), + [sym_parenthesized_expression] = STATE(1347), + [sym_binary_expression] = STATE(1347), + [sym_unary_expression] = STATE(2603), + [sym__signed_unary_expression] = STATE(1348), + [sym__literal] = STATE(1347), + [sym_boolean_literal] = STATE(1347), + [sym_file_number_literal] = STATE(1347), + [sym_identifier] = ACTIONS(5218), + [sym_newline] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4181), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4183), + [aux_sym_frm_property_statement_token1] = ACTIONS(5221), + [anon_sym_DOT] = ACTIONS(5224), + [anon_sym_BANG] = ACTIONS(5227), + [aux_sym__attribute_identifier_token1] = ACTIONS(4183), + [aux_sym_option_statement_token3] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4183), + [aux_sym_preprocessor_const_token1] = ACTIONS(4183), + [sym_static_modifier] = ACTIONS(4183), + [sym__dim_keyword] = ACTIONS(4183), + [sym__redim_keyword] = ACTIONS(4183), + [aux_sym_byval_modifier_token1] = ACTIONS(4563), + [aux_sym_get_accessor_token1] = ACTIONS(4183), + [aux_sym_set_accessor_token1] = ACTIONS(4183), + [anon_sym_COMMA] = ACTIONS(4181), + [aux_sym_const_declaration_token1] = ACTIONS(4183), + [anon_sym_LPAREN] = ACTIONS(5230), + [aux_sym_as_type_clause_token2] = ACTIONS(5233), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5236), + [aux_sym_visibility_token1] = ACTIONS(4183), + [aux_sym_visibility_token2] = ACTIONS(4183), + [aux_sym_elseif_fragment_token1] = ACTIONS(4183), + [aux_sym_else_fragment_token1] = ACTIONS(4183), + [aux_sym_select_statement_token1] = ACTIONS(4183), + [aux_sym__for_header_token1] = ACTIONS(4183), + [aux_sym_do_statement_token1] = ACTIONS(4183), + [aux_sym_do_condition_token1] = ACTIONS(4183), + [aux_sym_with_statement_token1] = ACTIONS(4183), + [aux_sym_exit_statement_token1] = ACTIONS(4183), + [sym_end_statement] = ACTIONS(4181), + [aux_sym_on_goto_statement_token1] = ACTIONS(4183), + [aux_sym_on_goto_statement_token2] = ACTIONS(4183), + [aux_sym_on_error_statement_token2] = ACTIONS(4183), + [sym__ambiguous_redim_statement] = ACTIONS(4181), + [aux_sym_erase_statement_token1] = ACTIONS(4183), + [aux_sym_open_statement_token1] = ACTIONS(4183), + [aux_sym_file_mode_token2] = ACTIONS(4183), + [aux_sym_file_access_token2] = ACTIONS(4183), + [aux_sym_file_lock_token2] = ACTIONS(4183), + [aux_sym_print_statement_token1] = ACTIONS(4183), + [anon_sym_PLUS] = ACTIONS(5239), + [anon_sym_DASH] = ACTIONS(5242), + [anon_sym_QMARK] = ACTIONS(4181), + [aux_sym_close_statement_token1] = ACTIONS(4183), + [aux_sym_put_statement_token1] = ACTIONS(4183), + [aux_sym_unlock_statement_token1] = ACTIONS(4183), + [aux_sym_seek_statement_token1] = ACTIONS(4183), + [sym_reset_statement] = ACTIONS(4183), + [aux_sym_raise_event_statement_token1] = ACTIONS(4183), + [sym_stop_statement] = ACTIONS(4183), + [sym_beep_statement] = ACTIONS(4183), + [aux_sym_unload_statement_token1] = ACTIONS(4183), + [aux_sym_def_type_statement_token1] = ACTIONS(4183), + [aux_sym_def_type_statement_token2] = ACTIONS(4183), + [aux_sym_def_type_statement_token3] = ACTIONS(4183), + [aux_sym_def_type_statement_token4] = ACTIONS(4183), + [aux_sym_def_type_statement_token5] = ACTIONS(4183), + [aux_sym_def_type_statement_token6] = ACTIONS(4183), + [aux_sym_def_type_statement_token7] = ACTIONS(4183), + [aux_sym_def_type_statement_token8] = ACTIONS(4183), + [aux_sym_def_type_statement_token9] = ACTIONS(4183), + [aux_sym_def_type_statement_token10] = ACTIONS(4183), + [aux_sym_def_type_statement_token11] = ACTIONS(4183), + [aux_sym_def_type_statement_token12] = ACTIONS(4183), + [aux_sym_def_type_statement_token13] = ACTIONS(4183), + [aux_sym_def_type_statement_token14] = ACTIONS(4183), + [aux_sym_call_statement_token1] = ACTIONS(4183), + [sym__ambiguous_call_statement] = ACTIONS(4183), + [aux_sym_addressof_expression_token1] = ACTIONS(5245), + [aux_sym_type_of_expression_token1] = ACTIONS(5248), + [aux_sym_unary_expression_token1] = ACTIONS(5251), + [sym_string_literal] = ACTIONS(5254), + [sym_number_literal] = ACTIONS(5254), + [aux_sym_boolean_literal_token1] = ACTIONS(5257), + [aux_sym_boolean_literal_token2] = ACTIONS(5257), + [sym_nothing_literal] = ACTIONS(5260), + [sym_null_literal] = ACTIONS(5260), + [sym_empty_literal] = ACTIONS(5260), + [sym_date_literal] = ACTIONS(5254), + [anon_sym_POUND] = ACTIONS(5263), + }, + [STATE(764)] = { + [sym__argument] = STATE(6029), + [sym_named_argument] = STATE(6029), + [sym_byval_argument] = STATE(6029), + [sym__primary_expression] = STATE(1213), + [sym__expression] = STATE(2701), + [sym_comparison_expression] = STATE(4796), + [sym__comparison_operand] = STATE(11262), + [sym_logical_value_expression] = STATE(4796), + [sym__callable_expression] = STATE(13267), + [sym_call_expression] = STATE(892), + [sym_new_expression] = STATE(1213), + [sym_addressof_expression] = STATE(1213), + [sym_type_of_expression] = STATE(1213), + [sym_member_expression] = STATE(1197), + [sym_qualified_member_expression] = STATE(1441), + [sym_implicit_member_expression] = STATE(1441), + [sym_parenthesized_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_unary_expression] = STATE(2701), + [sym__signed_unary_expression] = STATE(1416), + [sym__literal] = STATE(1213), + [sym_boolean_literal] = STATE(1213), + [sym_file_number_literal] = STATE(1213), + [sym_identifier] = ACTIONS(5266), + [sym_newline] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4181), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4183), + [aux_sym_frm_property_statement_token1] = ACTIONS(5269), + [anon_sym_DOT] = ACTIONS(5272), + [anon_sym_BANG] = ACTIONS(5275), + [aux_sym__attribute_identifier_token1] = ACTIONS(4183), + [aux_sym_option_statement_token3] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4183), + [aux_sym_preprocessor_const_token1] = ACTIONS(4183), + [sym_static_modifier] = ACTIONS(4183), + [sym__dim_keyword] = ACTIONS(4183), + [sym__redim_keyword] = ACTIONS(4183), + [aux_sym_byval_modifier_token1] = ACTIONS(4780), + [aux_sym_get_accessor_token1] = ACTIONS(4183), + [aux_sym_set_accessor_token1] = ACTIONS(4183), + [anon_sym_COMMA] = ACTIONS(4181), + [aux_sym_const_declaration_token1] = ACTIONS(4183), + [anon_sym_LPAREN] = ACTIONS(5278), + [aux_sym_as_type_clause_token2] = ACTIONS(5281), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5284), + [aux_sym_visibility_token1] = ACTIONS(4183), + [aux_sym_visibility_token2] = ACTIONS(4183), + [aux_sym_elseif_fragment_token1] = ACTIONS(4183), + [aux_sym_else_fragment_token1] = ACTIONS(4183), + [aux_sym_select_statement_token1] = ACTIONS(4183), + [aux_sym__for_header_token1] = ACTIONS(4183), + [aux_sym_do_statement_token1] = ACTIONS(4183), + [aux_sym_do_statement_token2] = ACTIONS(4183), + [aux_sym_do_condition_token1] = ACTIONS(4183), + [aux_sym_with_statement_token1] = ACTIONS(4183), + [aux_sym_exit_statement_token1] = ACTIONS(4183), + [sym_end_statement] = ACTIONS(4181), + [aux_sym_on_goto_statement_token1] = ACTIONS(4183), + [aux_sym_on_goto_statement_token2] = ACTIONS(4183), + [aux_sym_on_error_statement_token2] = ACTIONS(4183), + [sym__ambiguous_redim_statement] = ACTIONS(4181), + [aux_sym_erase_statement_token1] = ACTIONS(4183), + [aux_sym_open_statement_token1] = ACTIONS(4183), + [aux_sym_file_mode_token2] = ACTIONS(4183), + [aux_sym_file_access_token2] = ACTIONS(4183), + [aux_sym_file_lock_token2] = ACTIONS(4183), + [aux_sym_print_statement_token1] = ACTIONS(4183), + [anon_sym_PLUS] = ACTIONS(5287), + [anon_sym_DASH] = ACTIONS(5290), + [anon_sym_QMARK] = ACTIONS(4181), + [aux_sym_close_statement_token1] = ACTIONS(4183), + [aux_sym_put_statement_token1] = ACTIONS(4183), + [aux_sym_unlock_statement_token1] = ACTIONS(4183), + [aux_sym_seek_statement_token1] = ACTIONS(4183), + [sym_reset_statement] = ACTIONS(4183), + [aux_sym_raise_event_statement_token1] = ACTIONS(4183), + [sym_stop_statement] = ACTIONS(4183), + [sym_beep_statement] = ACTIONS(4183), + [aux_sym_unload_statement_token1] = ACTIONS(4183), + [aux_sym_def_type_statement_token1] = ACTIONS(4183), + [aux_sym_def_type_statement_token2] = ACTIONS(4183), + [aux_sym_def_type_statement_token3] = ACTIONS(4183), + [aux_sym_def_type_statement_token4] = ACTIONS(4183), + [aux_sym_def_type_statement_token5] = ACTIONS(4183), + [aux_sym_def_type_statement_token6] = ACTIONS(4183), + [aux_sym_def_type_statement_token7] = ACTIONS(4183), + [aux_sym_def_type_statement_token8] = ACTIONS(4183), + [aux_sym_def_type_statement_token9] = ACTIONS(4183), + [aux_sym_def_type_statement_token10] = ACTIONS(4183), + [aux_sym_def_type_statement_token11] = ACTIONS(4183), + [aux_sym_def_type_statement_token12] = ACTIONS(4183), + [aux_sym_def_type_statement_token13] = ACTIONS(4183), + [aux_sym_def_type_statement_token14] = ACTIONS(4183), + [aux_sym_call_statement_token1] = ACTIONS(4183), + [sym__ambiguous_call_statement] = ACTIONS(4183), + [aux_sym_addressof_expression_token1] = ACTIONS(5293), + [aux_sym_type_of_expression_token1] = ACTIONS(5296), + [aux_sym_unary_expression_token1] = ACTIONS(5299), + [sym_string_literal] = ACTIONS(5302), + [sym_number_literal] = ACTIONS(5302), + [aux_sym_boolean_literal_token1] = ACTIONS(5305), + [aux_sym_boolean_literal_token2] = ACTIONS(5305), + [sym_nothing_literal] = ACTIONS(5308), + [sym_null_literal] = ACTIONS(5308), + [sym_empty_literal] = ACTIONS(5308), + [sym_date_literal] = ACTIONS(5302), + [anon_sym_POUND] = ACTIONS(5311), + }, + [STATE(765)] = { + [sym__argument] = STATE(5854), + [sym_named_argument] = STATE(5854), + [sym_byval_argument] = STATE(5854), + [sym__primary_expression] = STATE(1662), + [sym__expression] = STATE(3023), + [sym_comparison_expression] = STATE(5063), + [sym__comparison_operand] = STATE(11430), + [sym_logical_value_expression] = STATE(5063), + [sym__callable_expression] = STATE(13234), + [sym_call_expression] = STATE(1263), + [sym_new_expression] = STATE(1662), + [sym_addressof_expression] = STATE(1662), + [sym_type_of_expression] = STATE(1662), + [sym_member_expression] = STATE(1654), + [sym_qualified_member_expression] = STATE(1585), + [sym_implicit_member_expression] = STATE(1585), + [sym_parenthesized_expression] = STATE(1662), + [sym_binary_expression] = STATE(1662), + [sym_unary_expression] = STATE(3023), + [sym__signed_unary_expression] = STATE(1674), + [sym__literal] = STATE(1662), + [sym_boolean_literal] = STATE(1662), + [sym_file_number_literal] = STATE(1662), + [aux_sym__argument_sequence_repeat2] = STATE(6022), + [sym_identifier] = ACTIONS(4895), + [sym_newline] = ACTIONS(4174), + [anon_sym_COLON] = ACTIONS(4174), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4176), + [aux_sym_frm_property_statement_token1] = ACTIONS(4897), + [anon_sym_DOT] = ACTIONS(4899), + [anon_sym_BANG] = ACTIONS(4901), + [aux_sym__attribute_identifier_token1] = ACTIONS(4176), + [aux_sym_option_statement_token3] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4176), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4176), + [aux_sym_preprocessor_const_token1] = ACTIONS(4176), + [sym_static_modifier] = ACTIONS(4176), + [sym__dim_keyword] = ACTIONS(4176), + [sym__redim_keyword] = ACTIONS(4176), + [aux_sym_byval_modifier_token1] = ACTIONS(4903), + [aux_sym_get_accessor_token1] = ACTIONS(4176), + [aux_sym_set_accessor_token1] = ACTIONS(4176), + [anon_sym_COMMA] = ACTIONS(5314), + [aux_sym_const_declaration_token1] = ACTIONS(4176), + [anon_sym_LPAREN] = ACTIONS(5026), + [aux_sym_as_type_clause_token2] = ACTIONS(4909), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4911), + [aux_sym_visibility_token1] = ACTIONS(4176), + [aux_sym_visibility_token2] = ACTIONS(4176), + [aux_sym_elseif_fragment_token1] = ACTIONS(4176), + [aux_sym_else_fragment_token1] = ACTIONS(4176), + [aux_sym_select_statement_token1] = ACTIONS(4176), + [aux_sym__for_header_token1] = ACTIONS(4176), + [aux_sym_do_statement_token1] = ACTIONS(4176), + [aux_sym_do_condition_token1] = ACTIONS(4176), + [aux_sym_with_statement_token1] = ACTIONS(4176), + [aux_sym_exit_statement_token1] = ACTIONS(4176), + [sym_end_statement] = ACTIONS(4174), + [aux_sym_on_goto_statement_token1] = ACTIONS(4176), + [aux_sym_on_goto_statement_token2] = ACTIONS(4176), + [aux_sym_on_error_statement_token2] = ACTIONS(4176), + [sym__ambiguous_redim_statement] = ACTIONS(4174), + [aux_sym_erase_statement_token1] = ACTIONS(4176), + [aux_sym_open_statement_token1] = ACTIONS(4176), + [aux_sym_file_mode_token2] = ACTIONS(4176), + [aux_sym_file_access_token2] = ACTIONS(4176), + [aux_sym_file_lock_token2] = ACTIONS(4176), + [aux_sym_print_statement_token1] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_QMARK] = ACTIONS(4174), + [aux_sym_close_statement_token1] = ACTIONS(4176), + [aux_sym_put_statement_token1] = ACTIONS(4176), + [aux_sym_unlock_statement_token1] = ACTIONS(4176), + [aux_sym_seek_statement_token1] = ACTIONS(4176), + [sym_reset_statement] = ACTIONS(4176), + [aux_sym_raise_event_statement_token1] = ACTIONS(4176), + [sym_stop_statement] = ACTIONS(4176), + [sym_beep_statement] = ACTIONS(4176), + [aux_sym_unload_statement_token1] = ACTIONS(4176), + [aux_sym_def_type_statement_token1] = ACTIONS(4176), + [aux_sym_def_type_statement_token2] = ACTIONS(4176), + [aux_sym_def_type_statement_token3] = ACTIONS(4176), + [aux_sym_def_type_statement_token4] = ACTIONS(4176), + [aux_sym_def_type_statement_token5] = ACTIONS(4176), + [aux_sym_def_type_statement_token6] = ACTIONS(4176), + [aux_sym_def_type_statement_token7] = ACTIONS(4176), + [aux_sym_def_type_statement_token8] = ACTIONS(4176), + [aux_sym_def_type_statement_token9] = ACTIONS(4176), + [aux_sym_def_type_statement_token10] = ACTIONS(4176), + [aux_sym_def_type_statement_token11] = ACTIONS(4176), + [aux_sym_def_type_statement_token12] = ACTIONS(4176), + [aux_sym_def_type_statement_token13] = ACTIONS(4176), + [aux_sym_def_type_statement_token14] = ACTIONS(4176), + [aux_sym_call_statement_token1] = ACTIONS(4176), + [sym__ambiguous_call_statement] = ACTIONS(4176), + [aux_sym_addressof_expression_token1] = ACTIONS(4917), + [aux_sym_type_of_expression_token1] = ACTIONS(4919), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(4921), + [sym_number_literal] = ACTIONS(4921), + [aux_sym_boolean_literal_token1] = ACTIONS(4923), + [aux_sym_boolean_literal_token2] = ACTIONS(4923), + [sym_nothing_literal] = ACTIONS(4925), + [sym_null_literal] = ACTIONS(4925), + [sym_empty_literal] = ACTIONS(4925), + [sym_date_literal] = ACTIONS(4921), + [anon_sym_POUND] = ACTIONS(4927), + }, + [STATE(766)] = { + [sym__argument] = STATE(6056), + [sym_named_argument] = STATE(6056), + [sym_byval_argument] = STATE(6056), + [sym__primary_expression] = STATE(1662), + [sym__expression] = STATE(3023), + [sym_comparison_expression] = STATE(5063), + [sym__comparison_operand] = STATE(11430), + [sym_logical_value_expression] = STATE(5063), + [sym__callable_expression] = STATE(13234), + [sym_call_expression] = STATE(1263), + [sym_new_expression] = STATE(1662), + [sym_addressof_expression] = STATE(1662), + [sym_type_of_expression] = STATE(1662), + [sym_member_expression] = STATE(1654), + [sym_qualified_member_expression] = STATE(1585), + [sym_implicit_member_expression] = STATE(1585), + [sym_parenthesized_expression] = STATE(1662), + [sym_binary_expression] = STATE(1662), + [sym_unary_expression] = STATE(3023), + [sym__signed_unary_expression] = STATE(1674), + [sym__literal] = STATE(1662), + [sym_boolean_literal] = STATE(1662), + [sym_file_number_literal] = STATE(1662), + [aux_sym__argument_sequence_repeat2] = STATE(6088), + [sym_identifier] = ACTIONS(4895), + [sym_newline] = ACTIONS(4170), + [anon_sym_COLON] = ACTIONS(4170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4172), + [aux_sym_frm_property_statement_token1] = ACTIONS(4897), + [anon_sym_DOT] = ACTIONS(4899), + [anon_sym_BANG] = ACTIONS(4901), + [aux_sym__attribute_identifier_token1] = ACTIONS(4172), + [aux_sym_option_statement_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4172), + [aux_sym_preprocessor_const_token1] = ACTIONS(4172), + [sym_static_modifier] = ACTIONS(4172), + [sym__dim_keyword] = ACTIONS(4172), + [sym__redim_keyword] = ACTIONS(4172), + [aux_sym_byval_modifier_token1] = ACTIONS(4903), + [aux_sym_get_accessor_token1] = ACTIONS(4172), + [aux_sym_set_accessor_token1] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(5314), + [aux_sym_const_declaration_token1] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(5026), + [aux_sym_as_type_clause_token2] = ACTIONS(4909), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4911), + [aux_sym_visibility_token1] = ACTIONS(4172), + [aux_sym_visibility_token2] = ACTIONS(4172), + [aux_sym_elseif_fragment_token1] = ACTIONS(4172), + [aux_sym_else_fragment_token1] = ACTIONS(4172), + [aux_sym_select_statement_token1] = ACTIONS(4172), + [aux_sym__for_header_token1] = ACTIONS(4172), + [aux_sym_do_statement_token1] = ACTIONS(4172), + [aux_sym_do_condition_token1] = ACTIONS(4172), + [aux_sym_with_statement_token1] = ACTIONS(4172), + [aux_sym_exit_statement_token1] = ACTIONS(4172), + [sym_end_statement] = ACTIONS(4170), + [aux_sym_on_goto_statement_token1] = ACTIONS(4172), + [aux_sym_on_goto_statement_token2] = ACTIONS(4172), + [aux_sym_on_error_statement_token2] = ACTIONS(4172), + [sym__ambiguous_redim_statement] = ACTIONS(4170), + [aux_sym_erase_statement_token1] = ACTIONS(4172), + [aux_sym_open_statement_token1] = ACTIONS(4172), + [aux_sym_file_mode_token2] = ACTIONS(4172), + [aux_sym_file_access_token2] = ACTIONS(4172), + [aux_sym_file_lock_token2] = ACTIONS(4172), + [aux_sym_print_statement_token1] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_QMARK] = ACTIONS(4170), + [aux_sym_close_statement_token1] = ACTIONS(4172), + [aux_sym_put_statement_token1] = ACTIONS(4172), + [aux_sym_unlock_statement_token1] = ACTIONS(4172), + [aux_sym_seek_statement_token1] = ACTIONS(4172), + [sym_reset_statement] = ACTIONS(4172), + [aux_sym_raise_event_statement_token1] = ACTIONS(4172), + [sym_stop_statement] = ACTIONS(4172), + [sym_beep_statement] = ACTIONS(4172), + [aux_sym_unload_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token2] = ACTIONS(4172), + [aux_sym_def_type_statement_token3] = ACTIONS(4172), + [aux_sym_def_type_statement_token4] = ACTIONS(4172), + [aux_sym_def_type_statement_token5] = ACTIONS(4172), + [aux_sym_def_type_statement_token6] = ACTIONS(4172), + [aux_sym_def_type_statement_token7] = ACTIONS(4172), + [aux_sym_def_type_statement_token8] = ACTIONS(4172), + [aux_sym_def_type_statement_token9] = ACTIONS(4172), + [aux_sym_def_type_statement_token10] = ACTIONS(4172), + [aux_sym_def_type_statement_token11] = ACTIONS(4172), + [aux_sym_def_type_statement_token12] = ACTIONS(4172), + [aux_sym_def_type_statement_token13] = ACTIONS(4172), + [aux_sym_def_type_statement_token14] = ACTIONS(4172), + [aux_sym_call_statement_token1] = ACTIONS(4172), + [sym__ambiguous_call_statement] = ACTIONS(4172), + [aux_sym_addressof_expression_token1] = ACTIONS(4917), + [aux_sym_type_of_expression_token1] = ACTIONS(4919), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(4921), + [sym_number_literal] = ACTIONS(4921), + [aux_sym_boolean_literal_token1] = ACTIONS(4923), + [aux_sym_boolean_literal_token2] = ACTIONS(4923), + [sym_nothing_literal] = ACTIONS(4925), + [sym_null_literal] = ACTIONS(4925), + [sym_empty_literal] = ACTIONS(4925), + [sym_date_literal] = ACTIONS(4921), + [anon_sym_POUND] = ACTIONS(4927), + }, + [STATE(767)] = { + [sym__argument] = STATE(6252), + [sym_named_argument] = STATE(6252), + [sym_byval_argument] = STATE(6252), + [sym__primary_expression] = STATE(1237), + [sym__expression] = STATE(2692), + [sym_comparison_expression] = STATE(4877), + [sym__comparison_operand] = STATE(11453), + [sym_logical_value_expression] = STATE(4877), + [sym__callable_expression] = STATE(13269), + [sym_call_expression] = STATE(880), + [sym_new_expression] = STATE(1237), + [sym_addressof_expression] = STATE(1237), + [sym_type_of_expression] = STATE(1237), + [sym_member_expression] = STATE(1344), + [sym_qualified_member_expression] = STATE(1142), + [sym_implicit_member_expression] = STATE(1142), + [sym_parenthesized_expression] = STATE(1237), + [sym_binary_expression] = STATE(1237), + [sym_unary_expression] = STATE(2692), + [sym__signed_unary_expression] = STATE(1246), + [sym__literal] = STATE(1237), + [sym_boolean_literal] = STATE(1237), + [sym_file_number_literal] = STATE(1237), + [sym_identifier] = ACTIONS(5316), + [sym_newline] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4181), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4183), + [aux_sym_frm_property_statement_token1] = ACTIONS(5319), + [anon_sym_DOT] = ACTIONS(5322), + [anon_sym_BANG] = ACTIONS(5325), + [aux_sym__attribute_identifier_token1] = ACTIONS(4183), + [aux_sym_option_statement_token3] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4183), + [aux_sym_preprocessor_const_token1] = ACTIONS(4183), + [sym_static_modifier] = ACTIONS(4183), + [sym__dim_keyword] = ACTIONS(4183), + [sym__redim_keyword] = ACTIONS(4183), + [aux_sym_byval_modifier_token1] = ACTIONS(4529), + [aux_sym_get_accessor_token1] = ACTIONS(4183), + [aux_sym_set_accessor_token1] = ACTIONS(4183), + [anon_sym_COMMA] = ACTIONS(4181), + [aux_sym_const_declaration_token1] = ACTIONS(4183), + [anon_sym_LPAREN] = ACTIONS(5328), + [aux_sym_as_type_clause_token2] = ACTIONS(5331), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5334), + [aux_sym_visibility_token1] = ACTIONS(4183), + [aux_sym_visibility_token2] = ACTIONS(4183), + [aux_sym_elseif_fragment_token1] = ACTIONS(4183), + [aux_sym_else_fragment_token1] = ACTIONS(4183), + [aux_sym_select_statement_token1] = ACTIONS(4183), + [aux_sym_select_statement_token2] = ACTIONS(4183), + [aux_sym__for_header_token1] = ACTIONS(4183), + [aux_sym_do_statement_token1] = ACTIONS(4183), + [aux_sym_do_condition_token1] = ACTIONS(4183), + [aux_sym_with_statement_token1] = ACTIONS(4183), + [aux_sym_exit_statement_token1] = ACTIONS(4183), + [sym_end_statement] = ACTIONS(4181), + [aux_sym_on_goto_statement_token1] = ACTIONS(4183), + [aux_sym_on_goto_statement_token2] = ACTIONS(4183), + [aux_sym_on_error_statement_token2] = ACTIONS(4183), + [sym__ambiguous_redim_statement] = ACTIONS(4181), + [aux_sym_erase_statement_token1] = ACTIONS(4183), + [aux_sym_open_statement_token1] = ACTIONS(4183), + [aux_sym_file_mode_token2] = ACTIONS(4183), + [aux_sym_file_access_token2] = ACTIONS(4183), + [aux_sym_file_lock_token2] = ACTIONS(4183), + [aux_sym_print_statement_token1] = ACTIONS(4183), + [anon_sym_PLUS] = ACTIONS(5337), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_QMARK] = ACTIONS(4181), + [aux_sym_close_statement_token1] = ACTIONS(4183), + [aux_sym_put_statement_token1] = ACTIONS(4183), + [aux_sym_unlock_statement_token1] = ACTIONS(4183), + [aux_sym_seek_statement_token1] = ACTIONS(4183), + [sym_reset_statement] = ACTIONS(4183), + [aux_sym_raise_event_statement_token1] = ACTIONS(4183), + [sym_stop_statement] = ACTIONS(4183), + [sym_beep_statement] = ACTIONS(4183), + [aux_sym_unload_statement_token1] = ACTIONS(4183), + [aux_sym_def_type_statement_token1] = ACTIONS(4183), + [aux_sym_def_type_statement_token2] = ACTIONS(4183), + [aux_sym_def_type_statement_token3] = ACTIONS(4183), + [aux_sym_def_type_statement_token4] = ACTIONS(4183), + [aux_sym_def_type_statement_token5] = ACTIONS(4183), + [aux_sym_def_type_statement_token6] = ACTIONS(4183), + [aux_sym_def_type_statement_token7] = ACTIONS(4183), + [aux_sym_def_type_statement_token8] = ACTIONS(4183), + [aux_sym_def_type_statement_token9] = ACTIONS(4183), + [aux_sym_def_type_statement_token10] = ACTIONS(4183), + [aux_sym_def_type_statement_token11] = ACTIONS(4183), + [aux_sym_def_type_statement_token12] = ACTIONS(4183), + [aux_sym_def_type_statement_token13] = ACTIONS(4183), + [aux_sym_def_type_statement_token14] = ACTIONS(4183), + [aux_sym_call_statement_token1] = ACTIONS(4183), + [sym__ambiguous_call_statement] = ACTIONS(4183), + [aux_sym_addressof_expression_token1] = ACTIONS(5343), + [aux_sym_type_of_expression_token1] = ACTIONS(5346), + [aux_sym_unary_expression_token1] = ACTIONS(5349), + [sym_string_literal] = ACTIONS(5352), + [sym_number_literal] = ACTIONS(5352), + [aux_sym_boolean_literal_token1] = ACTIONS(5355), + [aux_sym_boolean_literal_token2] = ACTIONS(5355), + [sym_nothing_literal] = ACTIONS(5358), + [sym_null_literal] = ACTIONS(5358), + [sym_empty_literal] = ACTIONS(5358), + [sym_date_literal] = ACTIONS(5352), + [anon_sym_POUND] = ACTIONS(5361), + }, + [STATE(768)] = { + [sym_file_number] = STATE(4035), + [sym__primary_expression] = STATE(2098), + [sym__expression] = STATE(2098), + [sym__callable_expression] = STATE(13634), + [sym_call_expression] = STATE(876), + [sym_new_expression] = STATE(2098), + [sym_addressof_expression] = STATE(2098), + [sym_type_of_expression] = STATE(2098), + [sym_member_expression] = STATE(1406), + [sym_qualified_member_expression] = STATE(912), + [sym_implicit_member_expression] = STATE(912), + [sym_parenthesized_expression] = STATE(2098), + [sym_binary_expression] = STATE(2098), + [sym_unary_expression] = STATE(2098), + [sym__signed_unary_expression] = STATE(1199), + [sym__literal] = STATE(2098), + [sym_boolean_literal] = STATE(2098), + [sym_file_number_literal] = STATE(2099), + [sym_identifier] = ACTIONS(5364), + [sym_newline] = ACTIONS(5130), + [anon_sym_COLON] = ACTIONS(5130), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5132), + [aux_sym_frm_property_statement_token1] = ACTIONS(5366), + [anon_sym_DOT] = ACTIONS(5368), + [anon_sym_BANG] = ACTIONS(429), + [aux_sym__attribute_identifier_token1] = ACTIONS(5132), + [aux_sym_option_statement_token3] = ACTIONS(5132), + [aux_sym_type_declaration_token1] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5132), + [aux_sym_enum_declaration_token1] = ACTIONS(5132), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5132), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5132), + [aux_sym_declare_function_statement_token1] = ACTIONS(5132), + [aux_sym_preprocessor_const_token1] = ACTIONS(5132), + [aux_sym__property_get_header_token1] = ACTIONS(5132), + [aux_sym_event_declaration_token1] = ACTIONS(5132), + [sym_static_modifier] = ACTIONS(5132), + [sym__dim_keyword] = ACTIONS(5132), + [sym__redim_keyword] = ACTIONS(5132), + [aux_sym_get_accessor_token1] = ACTIONS(5132), + [aux_sym_set_accessor_token1] = ACTIONS(5132), + [aux_sym_const_declaration_token1] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(461), + [aux_sym_as_type_clause_token2] = ACTIONS(463), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5370), + [aux_sym_visibility_token1] = ACTIONS(5132), + [aux_sym_visibility_token2] = ACTIONS(5132), + [aux_sym_elseif_fragment_token1] = ACTIONS(5132), + [aux_sym_else_fragment_token1] = ACTIONS(5132), + [aux_sym_select_statement_token1] = ACTIONS(5132), + [aux_sym__for_header_token1] = ACTIONS(5132), + [aux_sym_do_statement_token1] = ACTIONS(5132), + [aux_sym_do_condition_token1] = ACTIONS(5132), + [aux_sym_with_statement_token1] = ACTIONS(5132), + [aux_sym_exit_statement_token1] = ACTIONS(5132), + [sym_end_statement] = ACTIONS(5130), + [aux_sym_on_goto_statement_token1] = ACTIONS(5132), + [aux_sym_on_goto_statement_token2] = ACTIONS(5132), + [aux_sym_on_error_statement_token2] = ACTIONS(5132), + [sym__ambiguous_redim_statement] = ACTIONS(5130), + [aux_sym_erase_statement_token1] = ACTIONS(5132), + [aux_sym_open_statement_token1] = ACTIONS(5132), + [aux_sym_file_mode_token2] = ACTIONS(5132), + [aux_sym_file_access_token2] = ACTIONS(5132), + [aux_sym_file_lock_token2] = ACTIONS(5132), + [aux_sym_print_statement_token1] = ACTIONS(5132), + [anon_sym_PLUS] = ACTIONS(501), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_QMARK] = ACTIONS(5130), + [aux_sym_close_statement_token1] = ACTIONS(5132), + [aux_sym_put_statement_token1] = ACTIONS(5132), + [aux_sym_unlock_statement_token1] = ACTIONS(5132), + [aux_sym_seek_statement_token1] = ACTIONS(5132), + [sym_reset_statement] = ACTIONS(5132), + [aux_sym_raise_event_statement_token1] = ACTIONS(5132), + [sym_stop_statement] = ACTIONS(5132), + [sym_beep_statement] = ACTIONS(5132), + [aux_sym_unload_statement_token1] = ACTIONS(5132), + [aux_sym_def_type_statement_token1] = ACTIONS(5132), + [aux_sym_def_type_statement_token2] = ACTIONS(5132), + [aux_sym_def_type_statement_token3] = ACTIONS(5132), + [aux_sym_def_type_statement_token4] = ACTIONS(5132), + [aux_sym_def_type_statement_token5] = ACTIONS(5132), + [aux_sym_def_type_statement_token6] = ACTIONS(5132), + [aux_sym_def_type_statement_token7] = ACTIONS(5132), + [aux_sym_def_type_statement_token8] = ACTIONS(5132), + [aux_sym_def_type_statement_token9] = ACTIONS(5132), + [aux_sym_def_type_statement_token10] = ACTIONS(5132), + [aux_sym_def_type_statement_token11] = ACTIONS(5132), + [aux_sym_def_type_statement_token12] = ACTIONS(5132), + [aux_sym_def_type_statement_token13] = ACTIONS(5132), + [aux_sym_def_type_statement_token14] = ACTIONS(5132), + [aux_sym_call_statement_token1] = ACTIONS(5132), + [sym__ambiguous_call_statement] = ACTIONS(5132), + [aux_sym_addressof_expression_token1] = ACTIONS(527), + [aux_sym_type_of_expression_token1] = ACTIONS(529), + [aux_sym_unary_expression_token1] = ACTIONS(531), + [sym_string_literal] = ACTIONS(5372), + [sym_number_literal] = ACTIONS(5372), + [aux_sym_boolean_literal_token1] = ACTIONS(537), + [aux_sym_boolean_literal_token2] = ACTIONS(537), + [sym_nothing_literal] = ACTIONS(5374), + [sym_null_literal] = ACTIONS(5374), + [sym_empty_literal] = ACTIONS(5374), + [sym_date_literal] = ACTIONS(5372), + [anon_sym_POUND] = ACTIONS(541), + }, + [STATE(769)] = { + [sym__argument] = STATE(5825), + [sym_named_argument] = STATE(5825), + [sym_byval_argument] = STATE(5825), + [sym__primary_expression] = STATE(1662), + [sym__expression] = STATE(3023), + [sym_comparison_expression] = STATE(5063), + [sym__comparison_operand] = STATE(11430), + [sym_logical_value_expression] = STATE(5063), + [sym__callable_expression] = STATE(13234), + [sym_call_expression] = STATE(1263), + [sym_new_expression] = STATE(1662), + [sym_addressof_expression] = STATE(1662), + [sym_type_of_expression] = STATE(1662), + [sym_member_expression] = STATE(1654), + [sym_qualified_member_expression] = STATE(1585), + [sym_implicit_member_expression] = STATE(1585), + [sym_parenthesized_expression] = STATE(1662), + [sym_binary_expression] = STATE(1662), + [sym_unary_expression] = STATE(3023), + [sym__signed_unary_expression] = STATE(1674), + [sym__literal] = STATE(1662), + [sym_boolean_literal] = STATE(1662), + [sym_file_number_literal] = STATE(1662), + [aux_sym__argument_sequence_repeat2] = STATE(5824), + [sym_identifier] = ACTIONS(4895), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4897), + [anon_sym_DOT] = ACTIONS(4899), + [anon_sym_BANG] = ACTIONS(4901), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_byval_modifier_token1] = ACTIONS(4903), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5314), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(5026), + [aux_sym_as_type_clause_token2] = ACTIONS(4909), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4911), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4917), + [aux_sym_type_of_expression_token1] = ACTIONS(4919), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(4921), + [sym_number_literal] = ACTIONS(4921), + [aux_sym_boolean_literal_token1] = ACTIONS(4923), + [aux_sym_boolean_literal_token2] = ACTIONS(4923), + [sym_nothing_literal] = ACTIONS(4925), + [sym_null_literal] = ACTIONS(4925), + [sym_empty_literal] = ACTIONS(4925), + [sym_date_literal] = ACTIONS(4921), + [anon_sym_POUND] = ACTIONS(4927), + }, + [STATE(770)] = { + [sym__argument] = STATE(6124), + [sym_named_argument] = STATE(6124), + [sym_byval_argument] = STATE(6124), + [sym__primary_expression] = STATE(1310), + [sym__expression] = STATE(2571), + [sym_comparison_expression] = STATE(4732), + [sym__comparison_operand] = STATE(11361), + [sym_logical_value_expression] = STATE(4732), + [sym__callable_expression] = STATE(13583), + [sym_call_expression] = STATE(1031), + [sym_new_expression] = STATE(1310), + [sym_addressof_expression] = STATE(1310), + [sym_type_of_expression] = STATE(1310), + [sym_member_expression] = STATE(1419), + [sym_qualified_member_expression] = STATE(1221), + [sym_implicit_member_expression] = STATE(1221), + [sym_parenthesized_expression] = STATE(1310), + [sym_binary_expression] = STATE(1310), + [sym_unary_expression] = STATE(2571), + [sym__signed_unary_expression] = STATE(1313), + [sym__literal] = STATE(1310), + [sym_boolean_literal] = STATE(1310), + [sym_file_number_literal] = STATE(1310), + [sym_identifier] = ACTIONS(5376), + [sym_newline] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4181), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4183), + [aux_sym_frm_property_statement_token1] = ACTIONS(5379), + [anon_sym_DOT] = ACTIONS(5382), + [anon_sym_BANG] = ACTIONS(5385), + [aux_sym__attribute_identifier_token1] = ACTIONS(4183), + [aux_sym_option_statement_token3] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4183), + [aux_sym_preprocessor_const_token1] = ACTIONS(4183), + [sym_static_modifier] = ACTIONS(4183), + [sym__dim_keyword] = ACTIONS(4183), + [sym__redim_keyword] = ACTIONS(4183), + [aux_sym_byval_modifier_token1] = ACTIONS(4719), + [aux_sym_get_accessor_token1] = ACTIONS(4183), + [aux_sym_set_accessor_token1] = ACTIONS(4183), + [anon_sym_COMMA] = ACTIONS(4181), + [aux_sym_const_declaration_token1] = ACTIONS(4183), + [anon_sym_LPAREN] = ACTIONS(5388), + [aux_sym_as_type_clause_token2] = ACTIONS(5391), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5394), + [aux_sym_visibility_token1] = ACTIONS(4183), + [aux_sym_visibility_token2] = ACTIONS(4183), + [aux_sym_elseif_fragment_token1] = ACTIONS(4183), + [aux_sym_else_fragment_token1] = ACTIONS(4183), + [aux_sym_select_statement_token1] = ACTIONS(4183), + [aux_sym__for_header_token1] = ACTIONS(4183), + [aux_sym_do_statement_token1] = ACTIONS(4183), + [aux_sym_do_condition_token1] = ACTIONS(4183), + [aux_sym_while_statement_token1] = ACTIONS(4183), + [aux_sym_with_statement_token1] = ACTIONS(4183), + [aux_sym_exit_statement_token1] = ACTIONS(4183), + [sym_end_statement] = ACTIONS(4181), + [aux_sym_on_goto_statement_token1] = ACTIONS(4183), + [aux_sym_on_goto_statement_token2] = ACTIONS(4183), + [aux_sym_on_error_statement_token2] = ACTIONS(4183), + [sym__ambiguous_redim_statement] = ACTIONS(4181), + [aux_sym_erase_statement_token1] = ACTIONS(4183), + [aux_sym_open_statement_token1] = ACTIONS(4183), + [aux_sym_file_mode_token2] = ACTIONS(4183), + [aux_sym_file_access_token2] = ACTIONS(4183), + [aux_sym_file_lock_token2] = ACTIONS(4183), + [aux_sym_print_statement_token1] = ACTIONS(4183), + [anon_sym_PLUS] = ACTIONS(5397), + [anon_sym_DASH] = ACTIONS(5400), + [anon_sym_QMARK] = ACTIONS(4181), + [aux_sym_close_statement_token1] = ACTIONS(4183), + [aux_sym_put_statement_token1] = ACTIONS(4183), + [aux_sym_unlock_statement_token1] = ACTIONS(4183), + [aux_sym_seek_statement_token1] = ACTIONS(4183), + [sym_reset_statement] = ACTIONS(4183), + [aux_sym_raise_event_statement_token1] = ACTIONS(4183), + [sym_stop_statement] = ACTIONS(4183), + [sym_beep_statement] = ACTIONS(4183), + [aux_sym_unload_statement_token1] = ACTIONS(4183), + [aux_sym_def_type_statement_token1] = ACTIONS(4183), + [aux_sym_def_type_statement_token2] = ACTIONS(4183), + [aux_sym_def_type_statement_token3] = ACTIONS(4183), + [aux_sym_def_type_statement_token4] = ACTIONS(4183), + [aux_sym_def_type_statement_token5] = ACTIONS(4183), + [aux_sym_def_type_statement_token6] = ACTIONS(4183), + [aux_sym_def_type_statement_token7] = ACTIONS(4183), + [aux_sym_def_type_statement_token8] = ACTIONS(4183), + [aux_sym_def_type_statement_token9] = ACTIONS(4183), + [aux_sym_def_type_statement_token10] = ACTIONS(4183), + [aux_sym_def_type_statement_token11] = ACTIONS(4183), + [aux_sym_def_type_statement_token12] = ACTIONS(4183), + [aux_sym_def_type_statement_token13] = ACTIONS(4183), + [aux_sym_def_type_statement_token14] = ACTIONS(4183), + [aux_sym_call_statement_token1] = ACTIONS(4183), + [sym__ambiguous_call_statement] = ACTIONS(4183), + [aux_sym_addressof_expression_token1] = ACTIONS(5403), + [aux_sym_type_of_expression_token1] = ACTIONS(5406), + [aux_sym_unary_expression_token1] = ACTIONS(5409), + [sym_string_literal] = ACTIONS(5412), + [sym_number_literal] = ACTIONS(5412), + [aux_sym_boolean_literal_token1] = ACTIONS(5415), + [aux_sym_boolean_literal_token2] = ACTIONS(5415), + [sym_nothing_literal] = ACTIONS(5418), + [sym_null_literal] = ACTIONS(5418), + [sym_empty_literal] = ACTIONS(5418), + [sym_date_literal] = ACTIONS(5412), + [anon_sym_POUND] = ACTIONS(5421), + }, + [STATE(771)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_declaration_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4601), + [aux_sym_enum_declaration_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4601), + [aux_sym_declare_function_statement_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [aux_sym__property_get_header_token1] = ACTIONS(4601), + [aux_sym_event_declaration_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_byval_modifier_token1] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(772)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5424), + [anon_sym_BANG] = ACTIONS(5426), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [anon_sym_COLON_EQ] = ACTIONS(5428), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(773)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4605), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_byval_modifier_token1] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(774)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(778), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(5430), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(775)] = { + [sym_argument_list] = STATE(794), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5432), + [anon_sym_BANG] = ACTIONS(5434), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4246), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(776)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(782), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(5436), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(777)] = { + [sym_argument_list] = STATE(815), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5424), + [anon_sym_BANG] = ACTIONS(5426), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5438), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(778)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(781), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_declaration_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4375), + [aux_sym_enum_declaration_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4375), + [aux_sym_declare_function_statement_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [aux_sym__property_get_header_token1] = ACTIONS(4375), + [aux_sym_event_declaration_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(779)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4605), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_byval_modifier_token1] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(5440), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym__for_header_token2] = ACTIONS(5442), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(780)] = { + [sym__argument] = STATE(6434), + [sym_named_argument] = STATE(6434), + [sym_byval_argument] = STATE(6434), + [sym__primary_expression] = STATE(1662), + [sym__expression] = STATE(3023), + [sym_comparison_expression] = STATE(5063), + [sym__comparison_operand] = STATE(11430), + [sym_logical_value_expression] = STATE(5063), + [sym__callable_expression] = STATE(13234), + [sym_call_expression] = STATE(1263), + [sym_new_expression] = STATE(1662), + [sym_addressof_expression] = STATE(1662), + [sym_type_of_expression] = STATE(1662), + [sym_member_expression] = STATE(1654), + [sym_qualified_member_expression] = STATE(1585), + [sym_implicit_member_expression] = STATE(1585), + [sym_parenthesized_expression] = STATE(1662), + [sym_binary_expression] = STATE(1662), + [sym_unary_expression] = STATE(3023), + [sym__signed_unary_expression] = STATE(1674), + [sym__literal] = STATE(1662), + [sym_boolean_literal] = STATE(1662), + [sym_file_number_literal] = STATE(1662), + [sym_identifier] = ACTIONS(5444), + [sym_newline] = ACTIONS(4181), + [anon_sym_COLON] = ACTIONS(4181), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4183), + [aux_sym_frm_property_statement_token1] = ACTIONS(5447), + [anon_sym_DOT] = ACTIONS(5450), + [anon_sym_BANG] = ACTIONS(5453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4183), + [aux_sym_option_statement_token3] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4183), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4183), + [aux_sym_preprocessor_const_token1] = ACTIONS(4183), + [sym_static_modifier] = ACTIONS(4183), + [sym__dim_keyword] = ACTIONS(4183), + [sym__redim_keyword] = ACTIONS(4183), + [aux_sym_byval_modifier_token1] = ACTIONS(4903), + [aux_sym_get_accessor_token1] = ACTIONS(4183), + [aux_sym_set_accessor_token1] = ACTIONS(4183), + [anon_sym_COMMA] = ACTIONS(4181), + [aux_sym_const_declaration_token1] = ACTIONS(4183), + [anon_sym_LPAREN] = ACTIONS(5456), + [aux_sym_as_type_clause_token2] = ACTIONS(5459), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5462), + [aux_sym_visibility_token1] = ACTIONS(4183), + [aux_sym_visibility_token2] = ACTIONS(4183), + [aux_sym_elseif_fragment_token1] = ACTIONS(4183), + [aux_sym_else_fragment_token1] = ACTIONS(4183), + [aux_sym_select_statement_token1] = ACTIONS(4183), + [aux_sym__for_header_token1] = ACTIONS(4183), + [aux_sym_do_statement_token1] = ACTIONS(4183), + [aux_sym_do_condition_token1] = ACTIONS(4183), + [aux_sym_with_statement_token1] = ACTIONS(4183), + [aux_sym_exit_statement_token1] = ACTIONS(4183), + [sym_end_statement] = ACTIONS(4181), + [aux_sym_on_goto_statement_token1] = ACTIONS(4183), + [aux_sym_on_goto_statement_token2] = ACTIONS(4183), + [aux_sym_on_error_statement_token2] = ACTIONS(4183), + [sym__ambiguous_redim_statement] = ACTIONS(4181), + [aux_sym_erase_statement_token1] = ACTIONS(4183), + [aux_sym_open_statement_token1] = ACTIONS(4183), + [aux_sym_file_mode_token2] = ACTIONS(4183), + [aux_sym_file_access_token2] = ACTIONS(4183), + [aux_sym_file_lock_token2] = ACTIONS(4183), + [aux_sym_print_statement_token1] = ACTIONS(4183), + [anon_sym_PLUS] = ACTIONS(5465), + [anon_sym_DASH] = ACTIONS(5468), + [anon_sym_QMARK] = ACTIONS(4181), + [aux_sym_close_statement_token1] = ACTIONS(4183), + [aux_sym_put_statement_token1] = ACTIONS(4183), + [aux_sym_unlock_statement_token1] = ACTIONS(4183), + [aux_sym_seek_statement_token1] = ACTIONS(4183), + [sym_reset_statement] = ACTIONS(4183), + [aux_sym_raise_event_statement_token1] = ACTIONS(4183), + [sym_stop_statement] = ACTIONS(4183), + [sym_beep_statement] = ACTIONS(4183), + [aux_sym_unload_statement_token1] = ACTIONS(4183), + [aux_sym_def_type_statement_token1] = ACTIONS(4183), + [aux_sym_def_type_statement_token2] = ACTIONS(4183), + [aux_sym_def_type_statement_token3] = ACTIONS(4183), + [aux_sym_def_type_statement_token4] = ACTIONS(4183), + [aux_sym_def_type_statement_token5] = ACTIONS(4183), + [aux_sym_def_type_statement_token6] = ACTIONS(4183), + [aux_sym_def_type_statement_token7] = ACTIONS(4183), + [aux_sym_def_type_statement_token8] = ACTIONS(4183), + [aux_sym_def_type_statement_token9] = ACTIONS(4183), + [aux_sym_def_type_statement_token10] = ACTIONS(4183), + [aux_sym_def_type_statement_token11] = ACTIONS(4183), + [aux_sym_def_type_statement_token12] = ACTIONS(4183), + [aux_sym_def_type_statement_token13] = ACTIONS(4183), + [aux_sym_def_type_statement_token14] = ACTIONS(4183), + [aux_sym_call_statement_token1] = ACTIONS(4183), + [sym__ambiguous_call_statement] = ACTIONS(4183), + [aux_sym_addressof_expression_token1] = ACTIONS(5471), + [aux_sym_type_of_expression_token1] = ACTIONS(5474), + [aux_sym_unary_expression_token1] = ACTIONS(5477), + [sym_string_literal] = ACTIONS(5480), + [sym_number_literal] = ACTIONS(5480), + [aux_sym_boolean_literal_token1] = ACTIONS(5483), + [aux_sym_boolean_literal_token2] = ACTIONS(5483), + [sym_nothing_literal] = ACTIONS(5486), + [sym_null_literal] = ACTIONS(5486), + [sym_empty_literal] = ACTIONS(5486), + [sym_date_literal] = ACTIONS(5480), + [anon_sym_POUND] = ACTIONS(5489), + }, + [STATE(781)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(781), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(5492), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(782)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(786), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(783)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_declaration_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4609), + [aux_sym_enum_declaration_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4609), + [aux_sym_declare_function_statement_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [aux_sym__property_get_header_token1] = ACTIONS(4609), + [aux_sym_event_declaration_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_byval_modifier_token1] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(784)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4006), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [anon_sym_COLON_EQ] = ACTIONS(5495), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(785)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4621), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_byval_modifier_token1] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(786)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(786), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(5497), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(787)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(788)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(789)] = { + [sym_argument_list] = STATE(976), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5500), + [anon_sym_BANG] = ACTIONS(5502), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5504), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(790)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(791)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(792)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5432), + [anon_sym_BANG] = ACTIONS(5434), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(793)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(794)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4517), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(795)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_declaration_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4437), + [aux_sym_enum_declaration_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4437), + [aux_sym_declare_function_statement_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [aux_sym__property_get_header_token1] = ACTIONS(4437), + [aux_sym_event_declaration_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(796)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_declaration_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4447), + [aux_sym_enum_declaration_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4447), + [aux_sym_declare_function_statement_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [aux_sym__property_get_header_token1] = ACTIONS(4447), + [aux_sym_event_declaration_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(797)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(798)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(799)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(800)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(801)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_declaration_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4593), + [aux_sym_enum_declaration_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4593), + [aux_sym_declare_function_statement_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [aux_sym__property_get_header_token1] = ACTIONS(4593), + [aux_sym_event_declaration_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(802)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_declaration_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4477), + [aux_sym_enum_declaration_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4477), + [aux_sym_declare_function_statement_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [aux_sym__property_get_header_token1] = ACTIONS(4477), + [aux_sym_event_declaration_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(803)] = { + [sym_argument_list] = STATE(2586), + [sym_comparison_operator] = STATE(8759), + [sym_identifier] = ACTIONS(4236), + [sym_newline] = ACTIONS(4238), + [anon_sym_COLON] = ACTIONS(4238), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4236), + [aux_sym_frm_property_statement_token1] = ACTIONS(4236), + [anon_sym_EQ] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(5520), + [anon_sym_BANG] = ACTIONS(5522), + [aux_sym__attribute_identifier_token1] = ACTIONS(4236), + [aux_sym_option_statement_token3] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4236), + [aux_sym_preprocessor_const_token1] = ACTIONS(4236), + [sym_static_modifier] = ACTIONS(4236), + [sym__dim_keyword] = ACTIONS(4236), + [sym__redim_keyword] = ACTIONS(4236), + [aux_sym_get_accessor_token1] = ACTIONS(4236), + [aux_sym_set_accessor_token1] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4238), + [aux_sym_const_declaration_token1] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(5524), + [aux_sym_as_type_clause_token2] = ACTIONS(4236), + [anon_sym_STAR] = ACTIONS(4248), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4236), + [aux_sym_visibility_token1] = ACTIONS(4236), + [aux_sym_visibility_token2] = ACTIONS(4236), + [aux_sym_elseif_fragment_token1] = ACTIONS(4236), + [aux_sym_else_fragment_token1] = ACTIONS(4236), + [aux_sym_select_statement_token1] = ACTIONS(4236), + [aux_sym_case_expression_token1] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_LT_GT] = ACTIONS(4240), + [aux_sym__for_header_token1] = ACTIONS(4236), + [aux_sym_do_statement_token1] = ACTIONS(4236), + [aux_sym_do_condition_token1] = ACTIONS(4236), + [aux_sym_while_statement_token1] = ACTIONS(4236), + [aux_sym_with_statement_token1] = ACTIONS(4236), + [aux_sym_exit_statement_token1] = ACTIONS(4236), + [sym_end_statement] = ACTIONS(4238), + [aux_sym_on_goto_statement_token1] = ACTIONS(4236), + [aux_sym_on_goto_statement_token2] = ACTIONS(4236), + [aux_sym_on_error_statement_token2] = ACTIONS(4236), + [sym__ambiguous_redim_statement] = ACTIONS(4238), + [aux_sym_erase_statement_token1] = ACTIONS(4236), + [aux_sym_open_statement_token1] = ACTIONS(4236), + [aux_sym_file_mode_token2] = ACTIONS(4236), + [aux_sym_file_access_token2] = ACTIONS(4236), + [aux_sym_file_lock_token2] = ACTIONS(4236), + [aux_sym_print_statement_token1] = ACTIONS(4236), + [anon_sym_CARET] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_BSLASH] = ACTIONS(4248), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4252), + [anon_sym_SEMI] = ACTIONS(4238), + [anon_sym_QMARK] = ACTIONS(4238), + [aux_sym_close_statement_token1] = ACTIONS(4236), + [aux_sym_put_statement_token1] = ACTIONS(4236), + [aux_sym_unlock_statement_token1] = ACTIONS(4236), + [aux_sym_seek_statement_token1] = ACTIONS(4236), + [sym_reset_statement] = ACTIONS(4236), + [aux_sym_raise_event_statement_token1] = ACTIONS(4236), + [sym_stop_statement] = ACTIONS(4236), + [sym_beep_statement] = ACTIONS(4236), + [aux_sym_unload_statement_token1] = ACTIONS(4236), + [aux_sym_def_type_statement_token1] = ACTIONS(4236), + [aux_sym_def_type_statement_token2] = ACTIONS(4236), + [aux_sym_def_type_statement_token3] = ACTIONS(4236), + [aux_sym_def_type_statement_token4] = ACTIONS(4236), + [aux_sym_def_type_statement_token5] = ACTIONS(4236), + [aux_sym_def_type_statement_token6] = ACTIONS(4236), + [aux_sym_def_type_statement_token7] = ACTIONS(4236), + [aux_sym_def_type_statement_token8] = ACTIONS(4236), + [aux_sym_def_type_statement_token9] = ACTIONS(4236), + [aux_sym_def_type_statement_token10] = ACTIONS(4236), + [aux_sym_def_type_statement_token11] = ACTIONS(4236), + [aux_sym_def_type_statement_token12] = ACTIONS(4236), + [aux_sym_def_type_statement_token13] = ACTIONS(4236), + [aux_sym_def_type_statement_token14] = ACTIONS(4236), + [aux_sym_call_statement_token1] = ACTIONS(4236), + [sym__ambiguous_call_statement] = ACTIONS(4236), + [aux_sym_comparison_operator_token1] = ACTIONS(4250), + [aux_sym_addressof_expression_token1] = ACTIONS(4236), + [aux_sym_type_of_expression_token1] = ACTIONS(4236), + [aux_sym_unary_expression_token1] = ACTIONS(4236), + [sym_string_literal] = ACTIONS(4238), + [sym_number_literal] = ACTIONS(4238), + [aux_sym_boolean_literal_token1] = ACTIONS(4236), + [aux_sym_boolean_literal_token2] = ACTIONS(4236), + [sym_nothing_literal] = ACTIONS(4236), + [sym_null_literal] = ACTIONS(4236), + [sym_empty_literal] = ACTIONS(4236), + [sym_date_literal] = ACTIONS(4238), + [anon_sym_POUND] = ACTIONS(4236), + }, + [STATE(804)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(805)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_declaration_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4597), + [aux_sym_enum_declaration_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4597), + [aux_sym_declare_function_statement_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [aux_sym__property_get_header_token1] = ACTIONS(4597), + [aux_sym_event_declaration_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(806)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_declaration_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4485), + [aux_sym_enum_declaration_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4485), + [aux_sym_declare_function_statement_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [aux_sym__property_get_header_token1] = ACTIONS(4485), + [aux_sym_event_declaration_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(807)] = { + [sym_argument_list] = STATE(915), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5526), + [anon_sym_BANG] = ACTIONS(5528), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5530), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(808)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(809)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(810)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(811)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(812)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(813)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(814)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5424), + [anon_sym_BANG] = ACTIONS(5426), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(815)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(816)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(817)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(818)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(819)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(820)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(821)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(822)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5532), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5534), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(823)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(824)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(825)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(834), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(5536), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(826)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5532), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5534), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5538), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(827)] = { + [sym_argument_list] = STATE(2699), + [sym_comparison_operator] = STATE(8717), + [sym_identifier] = ACTIONS(4236), + [sym_newline] = ACTIONS(4238), + [anon_sym_COLON] = ACTIONS(4238), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4236), + [aux_sym_frm_property_statement_token1] = ACTIONS(4236), + [anon_sym_EQ] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(5540), + [anon_sym_BANG] = ACTIONS(5542), + [aux_sym__attribute_identifier_token1] = ACTIONS(4236), + [aux_sym_option_statement_token3] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4236), + [aux_sym_preprocessor_const_token1] = ACTIONS(4236), + [sym_static_modifier] = ACTIONS(4236), + [sym__dim_keyword] = ACTIONS(4236), + [sym__redim_keyword] = ACTIONS(4236), + [aux_sym_get_accessor_token1] = ACTIONS(4236), + [aux_sym_set_accessor_token1] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4238), + [aux_sym_const_declaration_token1] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(5544), + [aux_sym_as_type_clause_token2] = ACTIONS(4236), + [anon_sym_STAR] = ACTIONS(4248), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4236), + [aux_sym_visibility_token1] = ACTIONS(4236), + [aux_sym_visibility_token2] = ACTIONS(4236), + [aux_sym_elseif_fragment_token1] = ACTIONS(4236), + [aux_sym_else_fragment_token1] = ACTIONS(4236), + [aux_sym_select_statement_token1] = ACTIONS(4236), + [aux_sym_case_expression_token1] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_LT_GT] = ACTIONS(4240), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4236), + [aux_sym__for_header_token1] = ACTIONS(4236), + [aux_sym_do_statement_token1] = ACTIONS(4236), + [aux_sym_do_condition_token1] = ACTIONS(4236), + [aux_sym_with_statement_token1] = ACTIONS(4236), + [aux_sym_exit_statement_token1] = ACTIONS(4236), + [sym_end_statement] = ACTIONS(4238), + [aux_sym_on_goto_statement_token1] = ACTIONS(4236), + [aux_sym_on_goto_statement_token2] = ACTIONS(4236), + [aux_sym_on_error_statement_token2] = ACTIONS(4236), + [sym__ambiguous_redim_statement] = ACTIONS(4238), + [aux_sym_erase_statement_token1] = ACTIONS(4236), + [aux_sym_open_statement_token1] = ACTIONS(4236), + [aux_sym_file_mode_token2] = ACTIONS(4236), + [aux_sym_file_access_token2] = ACTIONS(4236), + [aux_sym_file_lock_token2] = ACTIONS(4236), + [aux_sym_print_statement_token1] = ACTIONS(4236), + [anon_sym_CARET] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_BSLASH] = ACTIONS(4248), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4252), + [anon_sym_SEMI] = ACTIONS(4238), + [anon_sym_QMARK] = ACTIONS(4238), + [aux_sym_close_statement_token1] = ACTIONS(4236), + [aux_sym_put_statement_token1] = ACTIONS(4236), + [aux_sym_unlock_statement_token1] = ACTIONS(4236), + [aux_sym_seek_statement_token1] = ACTIONS(4236), + [sym_reset_statement] = ACTIONS(4236), + [aux_sym_raise_event_statement_token1] = ACTIONS(4236), + [sym_stop_statement] = ACTIONS(4236), + [sym_beep_statement] = ACTIONS(4236), + [aux_sym_unload_statement_token1] = ACTIONS(4236), + [aux_sym_def_type_statement_token1] = ACTIONS(4236), + [aux_sym_def_type_statement_token2] = ACTIONS(4236), + [aux_sym_def_type_statement_token3] = ACTIONS(4236), + [aux_sym_def_type_statement_token4] = ACTIONS(4236), + [aux_sym_def_type_statement_token5] = ACTIONS(4236), + [aux_sym_def_type_statement_token6] = ACTIONS(4236), + [aux_sym_def_type_statement_token7] = ACTIONS(4236), + [aux_sym_def_type_statement_token8] = ACTIONS(4236), + [aux_sym_def_type_statement_token9] = ACTIONS(4236), + [aux_sym_def_type_statement_token10] = ACTIONS(4236), + [aux_sym_def_type_statement_token11] = ACTIONS(4236), + [aux_sym_def_type_statement_token12] = ACTIONS(4236), + [aux_sym_def_type_statement_token13] = ACTIONS(4236), + [aux_sym_def_type_statement_token14] = ACTIONS(4236), + [aux_sym_call_statement_token1] = ACTIONS(4236), + [sym__ambiguous_call_statement] = ACTIONS(4236), + [aux_sym_comparison_operator_token1] = ACTIONS(4250), + [aux_sym_addressof_expression_token1] = ACTIONS(4236), + [aux_sym_type_of_expression_token1] = ACTIONS(4236), + [aux_sym_unary_expression_token1] = ACTIONS(4236), + [sym_string_literal] = ACTIONS(4238), + [sym_number_literal] = ACTIONS(4238), + [aux_sym_boolean_literal_token1] = ACTIONS(4236), + [aux_sym_boolean_literal_token2] = ACTIONS(4236), + [sym_nothing_literal] = ACTIONS(4236), + [sym_null_literal] = ACTIONS(4236), + [sym_empty_literal] = ACTIONS(4236), + [sym_date_literal] = ACTIONS(4238), + [anon_sym_POUND] = ACTIONS(4236), + }, + [STATE(828)] = { + [sym_argument_list] = STATE(2696), + [sym_comparison_operator] = STATE(8903), + [sym_identifier] = ACTIONS(4236), + [sym_newline] = ACTIONS(4238), + [anon_sym_COLON] = ACTIONS(4238), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4236), + [aux_sym_frm_property_statement_token1] = ACTIONS(4236), + [anon_sym_EQ] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(5546), + [anon_sym_BANG] = ACTIONS(5548), + [aux_sym__attribute_identifier_token1] = ACTIONS(4236), + [aux_sym_option_statement_token3] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4236), + [aux_sym_preprocessor_const_token1] = ACTIONS(4236), + [sym_static_modifier] = ACTIONS(4236), + [sym__dim_keyword] = ACTIONS(4236), + [sym__redim_keyword] = ACTIONS(4236), + [aux_sym_get_accessor_token1] = ACTIONS(4236), + [aux_sym_set_accessor_token1] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4238), + [aux_sym_const_declaration_token1] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(5550), + [aux_sym_as_type_clause_token2] = ACTIONS(4236), + [anon_sym_STAR] = ACTIONS(4248), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4236), + [aux_sym_visibility_token1] = ACTIONS(4236), + [aux_sym_visibility_token2] = ACTIONS(4236), + [aux_sym_elseif_fragment_token1] = ACTIONS(4236), + [aux_sym_else_fragment_token1] = ACTIONS(4236), + [aux_sym_select_statement_token1] = ACTIONS(4236), + [aux_sym_select_statement_token2] = ACTIONS(4236), + [aux_sym_case_expression_token1] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_LT_GT] = ACTIONS(4240), + [aux_sym__for_header_token1] = ACTIONS(4236), + [aux_sym_do_statement_token1] = ACTIONS(4236), + [aux_sym_do_condition_token1] = ACTIONS(4236), + [aux_sym_with_statement_token1] = ACTIONS(4236), + [aux_sym_exit_statement_token1] = ACTIONS(4236), + [sym_end_statement] = ACTIONS(4238), + [aux_sym_on_goto_statement_token1] = ACTIONS(4236), + [aux_sym_on_goto_statement_token2] = ACTIONS(4236), + [aux_sym_on_error_statement_token2] = ACTIONS(4236), + [sym__ambiguous_redim_statement] = ACTIONS(4238), + [aux_sym_erase_statement_token1] = ACTIONS(4236), + [aux_sym_open_statement_token1] = ACTIONS(4236), + [aux_sym_file_mode_token2] = ACTIONS(4236), + [aux_sym_file_access_token2] = ACTIONS(4236), + [aux_sym_file_lock_token2] = ACTIONS(4236), + [aux_sym_print_statement_token1] = ACTIONS(4236), + [anon_sym_CARET] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_BSLASH] = ACTIONS(4248), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4252), + [anon_sym_SEMI] = ACTIONS(4238), + [anon_sym_QMARK] = ACTIONS(4238), + [aux_sym_close_statement_token1] = ACTIONS(4236), + [aux_sym_put_statement_token1] = ACTIONS(4236), + [aux_sym_unlock_statement_token1] = ACTIONS(4236), + [aux_sym_seek_statement_token1] = ACTIONS(4236), + [sym_reset_statement] = ACTIONS(4236), + [aux_sym_raise_event_statement_token1] = ACTIONS(4236), + [sym_stop_statement] = ACTIONS(4236), + [sym_beep_statement] = ACTIONS(4236), + [aux_sym_unload_statement_token1] = ACTIONS(4236), + [aux_sym_def_type_statement_token1] = ACTIONS(4236), + [aux_sym_def_type_statement_token2] = ACTIONS(4236), + [aux_sym_def_type_statement_token3] = ACTIONS(4236), + [aux_sym_def_type_statement_token4] = ACTIONS(4236), + [aux_sym_def_type_statement_token5] = ACTIONS(4236), + [aux_sym_def_type_statement_token6] = ACTIONS(4236), + [aux_sym_def_type_statement_token7] = ACTIONS(4236), + [aux_sym_def_type_statement_token8] = ACTIONS(4236), + [aux_sym_def_type_statement_token9] = ACTIONS(4236), + [aux_sym_def_type_statement_token10] = ACTIONS(4236), + [aux_sym_def_type_statement_token11] = ACTIONS(4236), + [aux_sym_def_type_statement_token12] = ACTIONS(4236), + [aux_sym_def_type_statement_token13] = ACTIONS(4236), + [aux_sym_def_type_statement_token14] = ACTIONS(4236), + [aux_sym_call_statement_token1] = ACTIONS(4236), + [sym__ambiguous_call_statement] = ACTIONS(4236), + [aux_sym_comparison_operator_token1] = ACTIONS(4250), + [aux_sym_addressof_expression_token1] = ACTIONS(4236), + [aux_sym_type_of_expression_token1] = ACTIONS(4236), + [aux_sym_unary_expression_token1] = ACTIONS(4236), + [sym_string_literal] = ACTIONS(4238), + [sym_number_literal] = ACTIONS(4238), + [aux_sym_boolean_literal_token1] = ACTIONS(4236), + [aux_sym_boolean_literal_token2] = ACTIONS(4236), + [sym_nothing_literal] = ACTIONS(4236), + [sym_null_literal] = ACTIONS(4236), + [sym_empty_literal] = ACTIONS(4236), + [sym_date_literal] = ACTIONS(4238), + [anon_sym_POUND] = ACTIONS(4236), + }, + [STATE(829)] = { + [sym_identifier] = ACTIONS(4749), + [sym_newline] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4749), + [aux_sym_frm_property_statement_token1] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_BANG] = ACTIONS(4751), + [aux_sym__attribute_identifier_token1] = ACTIONS(4749), + [aux_sym_option_statement_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4749), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4749), + [aux_sym_preprocessor_const_token1] = ACTIONS(4749), + [sym_static_modifier] = ACTIONS(4749), + [sym__dim_keyword] = ACTIONS(4749), + [sym__redim_keyword] = ACTIONS(4749), + [aux_sym_get_accessor_token1] = ACTIONS(4749), + [aux_sym_set_accessor_token1] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4751), + [aux_sym_const_declaration_token1] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4751), + [aux_sym_as_type_clause_token2] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4749), + [aux_sym_visibility_token1] = ACTIONS(4749), + [aux_sym_visibility_token2] = ACTIONS(4749), + [aux_sym_elseif_fragment_token1] = ACTIONS(4749), + [aux_sym_else_fragment_token1] = ACTIONS(4749), + [aux_sym_select_statement_token1] = ACTIONS(4749), + [aux_sym_case_expression_token1] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_GT] = ACTIONS(4751), + [aux_sym__for_header_token1] = ACTIONS(4749), + [aux_sym_do_statement_token1] = ACTIONS(4749), + [aux_sym_do_condition_token1] = ACTIONS(4749), + [aux_sym_with_statement_token1] = ACTIONS(4749), + [aux_sym_exit_statement_token1] = ACTIONS(4749), + [sym_end_statement] = ACTIONS(4751), + [aux_sym_on_goto_statement_token1] = ACTIONS(4749), + [aux_sym_on_goto_statement_token2] = ACTIONS(4749), + [aux_sym_on_error_statement_token2] = ACTIONS(4749), + [sym__ambiguous_redim_statement] = ACTIONS(4751), + [aux_sym_erase_statement_token1] = ACTIONS(4749), + [aux_sym_open_statement_token1] = ACTIONS(4749), + [aux_sym_file_mode_token2] = ACTIONS(4749), + [aux_sym_file_access_token2] = ACTIONS(4749), + [aux_sym_file_lock_token2] = ACTIONS(4749), + [aux_sym_print_statement_token1] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_BSLASH] = ACTIONS(4751), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [aux_sym_close_statement_token1] = ACTIONS(4749), + [aux_sym_put_statement_token1] = ACTIONS(4749), + [aux_sym_unlock_statement_token1] = ACTIONS(4749), + [aux_sym_seek_statement_token1] = ACTIONS(4749), + [sym_reset_statement] = ACTIONS(4749), + [aux_sym_raise_event_statement_token1] = ACTIONS(4749), + [sym_stop_statement] = ACTIONS(4749), + [sym_beep_statement] = ACTIONS(4749), + [aux_sym_unload_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token2] = ACTIONS(4749), + [aux_sym_def_type_statement_token3] = ACTIONS(4749), + [aux_sym_def_type_statement_token4] = ACTIONS(4749), + [aux_sym_def_type_statement_token5] = ACTIONS(4749), + [aux_sym_def_type_statement_token6] = ACTIONS(4749), + [aux_sym_def_type_statement_token7] = ACTIONS(4749), + [aux_sym_def_type_statement_token8] = ACTIONS(4749), + [aux_sym_def_type_statement_token9] = ACTIONS(4749), + [aux_sym_def_type_statement_token10] = ACTIONS(4749), + [aux_sym_def_type_statement_token11] = ACTIONS(4749), + [aux_sym_def_type_statement_token12] = ACTIONS(4749), + [aux_sym_def_type_statement_token13] = ACTIONS(4749), + [aux_sym_def_type_statement_token14] = ACTIONS(4749), + [aux_sym_call_statement_token1] = ACTIONS(4749), + [sym__ambiguous_call_statement] = ACTIONS(4749), + [aux_sym_comparison_operator_token1] = ACTIONS(4749), + [aux_sym_addressof_expression_token1] = ACTIONS(4749), + [aux_sym_type_of_expression_token1] = ACTIONS(4749), + [aux_sym_unary_expression_token1] = ACTIONS(4749), + [sym_string_literal] = ACTIONS(4751), + [sym_number_literal] = ACTIONS(4751), + [aux_sym_boolean_literal_token1] = ACTIONS(4749), + [aux_sym_boolean_literal_token2] = ACTIONS(4749), + [sym_nothing_literal] = ACTIONS(4749), + [sym_null_literal] = ACTIONS(4749), + [sym_empty_literal] = ACTIONS(4749), + [sym_date_literal] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4749), + }, + [STATE(830)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(831)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(831), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(5552), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(832)] = { + [sym_identifier] = ACTIONS(4745), + [sym_newline] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4745), + [aux_sym_frm_property_statement_token1] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_BANG] = ACTIONS(4747), + [aux_sym__attribute_identifier_token1] = ACTIONS(4745), + [aux_sym_option_statement_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4745), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4745), + [aux_sym_preprocessor_const_token1] = ACTIONS(4745), + [sym_static_modifier] = ACTIONS(4745), + [sym__dim_keyword] = ACTIONS(4745), + [sym__redim_keyword] = ACTIONS(4745), + [aux_sym_get_accessor_token1] = ACTIONS(4745), + [aux_sym_set_accessor_token1] = ACTIONS(4745), + [anon_sym_COMMA] = ACTIONS(4747), + [aux_sym_const_declaration_token1] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4747), + [aux_sym_as_type_clause_token2] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4747), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4745), + [aux_sym_visibility_token1] = ACTIONS(4745), + [aux_sym_visibility_token2] = ACTIONS(4745), + [aux_sym_elseif_fragment_token1] = ACTIONS(4745), + [aux_sym_else_fragment_token1] = ACTIONS(4745), + [aux_sym_select_statement_token1] = ACTIONS(4745), + [aux_sym_case_expression_token1] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_LT_EQ] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_GT_EQ] = ACTIONS(4747), + [anon_sym_LT_GT] = ACTIONS(4747), + [aux_sym__for_header_token1] = ACTIONS(4745), + [aux_sym_do_statement_token1] = ACTIONS(4745), + [aux_sym_do_condition_token1] = ACTIONS(4745), + [aux_sym_with_statement_token1] = ACTIONS(4745), + [aux_sym_exit_statement_token1] = ACTIONS(4745), + [sym_end_statement] = ACTIONS(4747), + [aux_sym_on_goto_statement_token1] = ACTIONS(4745), + [aux_sym_on_goto_statement_token2] = ACTIONS(4745), + [aux_sym_on_error_statement_token2] = ACTIONS(4745), + [sym__ambiguous_redim_statement] = ACTIONS(4747), + [aux_sym_erase_statement_token1] = ACTIONS(4745), + [aux_sym_open_statement_token1] = ACTIONS(4745), + [aux_sym_file_mode_token2] = ACTIONS(4745), + [aux_sym_file_access_token2] = ACTIONS(4745), + [aux_sym_file_lock_token2] = ACTIONS(4745), + [aux_sym_print_statement_token1] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_BSLASH] = ACTIONS(4747), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4745), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [aux_sym_close_statement_token1] = ACTIONS(4745), + [aux_sym_put_statement_token1] = ACTIONS(4745), + [aux_sym_unlock_statement_token1] = ACTIONS(4745), + [aux_sym_seek_statement_token1] = ACTIONS(4745), + [sym_reset_statement] = ACTIONS(4745), + [aux_sym_raise_event_statement_token1] = ACTIONS(4745), + [sym_stop_statement] = ACTIONS(4745), + [sym_beep_statement] = ACTIONS(4745), + [aux_sym_unload_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token2] = ACTIONS(4745), + [aux_sym_def_type_statement_token3] = ACTIONS(4745), + [aux_sym_def_type_statement_token4] = ACTIONS(4745), + [aux_sym_def_type_statement_token5] = ACTIONS(4745), + [aux_sym_def_type_statement_token6] = ACTIONS(4745), + [aux_sym_def_type_statement_token7] = ACTIONS(4745), + [aux_sym_def_type_statement_token8] = ACTIONS(4745), + [aux_sym_def_type_statement_token9] = ACTIONS(4745), + [aux_sym_def_type_statement_token10] = ACTIONS(4745), + [aux_sym_def_type_statement_token11] = ACTIONS(4745), + [aux_sym_def_type_statement_token12] = ACTIONS(4745), + [aux_sym_def_type_statement_token13] = ACTIONS(4745), + [aux_sym_def_type_statement_token14] = ACTIONS(4745), + [aux_sym_call_statement_token1] = ACTIONS(4745), + [sym__ambiguous_call_statement] = ACTIONS(4745), + [aux_sym_comparison_operator_token1] = ACTIONS(4745), + [aux_sym_addressof_expression_token1] = ACTIONS(4745), + [aux_sym_type_of_expression_token1] = ACTIONS(4745), + [aux_sym_unary_expression_token1] = ACTIONS(4745), + [sym_string_literal] = ACTIONS(4747), + [sym_number_literal] = ACTIONS(4747), + [aux_sym_boolean_literal_token1] = ACTIONS(4745), + [aux_sym_boolean_literal_token2] = ACTIONS(4745), + [sym_nothing_literal] = ACTIONS(4745), + [sym_null_literal] = ACTIONS(4745), + [sym_empty_literal] = ACTIONS(4745), + [sym_date_literal] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4745), + }, + [STATE(833)] = { + [sym_identifier] = ACTIONS(4745), + [sym_newline] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4745), + [aux_sym_frm_property_statement_token1] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_BANG] = ACTIONS(4747), + [aux_sym__attribute_identifier_token1] = ACTIONS(4745), + [aux_sym_option_statement_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4745), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4745), + [aux_sym_preprocessor_const_token1] = ACTIONS(4745), + [sym_static_modifier] = ACTIONS(4745), + [sym__dim_keyword] = ACTIONS(4745), + [sym__redim_keyword] = ACTIONS(4745), + [aux_sym_get_accessor_token1] = ACTIONS(4745), + [aux_sym_set_accessor_token1] = ACTIONS(4745), + [anon_sym_COMMA] = ACTIONS(4747), + [aux_sym_const_declaration_token1] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4747), + [aux_sym_as_type_clause_token2] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4747), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4745), + [aux_sym_visibility_token1] = ACTIONS(4745), + [aux_sym_visibility_token2] = ACTIONS(4745), + [aux_sym_elseif_fragment_token1] = ACTIONS(4745), + [aux_sym_else_fragment_token1] = ACTIONS(4745), + [aux_sym_select_statement_token1] = ACTIONS(4745), + [aux_sym_case_expression_token1] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_LT_EQ] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_GT_EQ] = ACTIONS(4747), + [anon_sym_LT_GT] = ACTIONS(4747), + [aux_sym__for_header_token1] = ACTIONS(4745), + [aux_sym_do_statement_token1] = ACTIONS(4745), + [aux_sym_do_condition_token1] = ACTIONS(4745), + [aux_sym_with_statement_token1] = ACTIONS(4745), + [aux_sym_exit_statement_token1] = ACTIONS(4745), + [sym_end_statement] = ACTIONS(4747), + [aux_sym_on_goto_statement_token1] = ACTIONS(4745), + [aux_sym_on_goto_statement_token2] = ACTIONS(4745), + [aux_sym_on_error_statement_token2] = ACTIONS(4745), + [sym__ambiguous_redim_statement] = ACTIONS(4747), + [aux_sym_erase_statement_token1] = ACTIONS(4745), + [aux_sym_open_statement_token1] = ACTIONS(4745), + [aux_sym_file_mode_token2] = ACTIONS(4745), + [aux_sym_file_access_token2] = ACTIONS(4745), + [aux_sym_file_lock_token2] = ACTIONS(4745), + [aux_sym_print_statement_token1] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_BSLASH] = ACTIONS(4747), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4745), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [aux_sym_close_statement_token1] = ACTIONS(4745), + [aux_sym_put_statement_token1] = ACTIONS(4745), + [aux_sym_unlock_statement_token1] = ACTIONS(4745), + [aux_sym_seek_statement_token1] = ACTIONS(4745), + [sym_reset_statement] = ACTIONS(4745), + [aux_sym_raise_event_statement_token1] = ACTIONS(4745), + [sym_stop_statement] = ACTIONS(4745), + [sym_beep_statement] = ACTIONS(4745), + [aux_sym_unload_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token2] = ACTIONS(4745), + [aux_sym_def_type_statement_token3] = ACTIONS(4745), + [aux_sym_def_type_statement_token4] = ACTIONS(4745), + [aux_sym_def_type_statement_token5] = ACTIONS(4745), + [aux_sym_def_type_statement_token6] = ACTIONS(4745), + [aux_sym_def_type_statement_token7] = ACTIONS(4745), + [aux_sym_def_type_statement_token8] = ACTIONS(4745), + [aux_sym_def_type_statement_token9] = ACTIONS(4745), + [aux_sym_def_type_statement_token10] = ACTIONS(4745), + [aux_sym_def_type_statement_token11] = ACTIONS(4745), + [aux_sym_def_type_statement_token12] = ACTIONS(4745), + [aux_sym_def_type_statement_token13] = ACTIONS(4745), + [aux_sym_def_type_statement_token14] = ACTIONS(4745), + [aux_sym_call_statement_token1] = ACTIONS(4745), + [sym__ambiguous_call_statement] = ACTIONS(4745), + [aux_sym_comparison_operator_token1] = ACTIONS(4745), + [aux_sym_addressof_expression_token1] = ACTIONS(4745), + [aux_sym_type_of_expression_token1] = ACTIONS(4745), + [aux_sym_unary_expression_token1] = ACTIONS(4745), + [sym_string_literal] = ACTIONS(4747), + [sym_number_literal] = ACTIONS(4747), + [aux_sym_boolean_literal_token1] = ACTIONS(4745), + [aux_sym_boolean_literal_token2] = ACTIONS(4745), + [sym_nothing_literal] = ACTIONS(4745), + [sym_null_literal] = ACTIONS(4745), + [sym_empty_literal] = ACTIONS(4745), + [sym_date_literal] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4745), + }, + [STATE(834)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(842), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_array_bound_token1] = ACTIONS(4375), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(835)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(836)] = { + [sym_identifier] = ACTIONS(5555), + [sym_newline] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(4399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5555), + [aux_sym_frm_property_statement_token1] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_BANG] = ACTIONS(5434), + [aux_sym__attribute_identifier_token1] = ACTIONS(5555), + [aux_sym_option_statement_token3] = ACTIONS(5555), + [aux_sym_type_declaration_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5555), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5555), + [aux_sym_enum_declaration_token1] = ACTIONS(5555), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5555), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5555), + [aux_sym_declare_function_statement_token1] = ACTIONS(5555), + [aux_sym_preprocessor_const_token1] = ACTIONS(5555), + [aux_sym__property_get_header_token1] = ACTIONS(5555), + [aux_sym_event_declaration_token1] = ACTIONS(5555), + [sym_static_modifier] = ACTIONS(5555), + [sym__dim_keyword] = ACTIONS(5555), + [sym__redim_keyword] = ACTIONS(5555), + [aux_sym_byval_modifier_token1] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5555), + [aux_sym_set_accessor_token1] = ACTIONS(5555), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5555), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5555), + [aux_sym_visibility_token1] = ACTIONS(5555), + [aux_sym_visibility_token2] = ACTIONS(5555), + [aux_sym_elseif_fragment_token1] = ACTIONS(5555), + [aux_sym_else_fragment_token1] = ACTIONS(5555), + [aux_sym_select_statement_token1] = ACTIONS(5555), + [aux_sym__for_header_token1] = ACTIONS(5555), + [aux_sym_do_statement_token1] = ACTIONS(5555), + [aux_sym_do_condition_token1] = ACTIONS(5555), + [aux_sym_with_statement_token1] = ACTIONS(5555), + [aux_sym_exit_statement_token1] = ACTIONS(5555), + [sym_end_statement] = ACTIONS(4399), + [aux_sym_on_goto_statement_token1] = ACTIONS(5555), + [aux_sym_on_goto_statement_token2] = ACTIONS(5555), + [aux_sym_on_error_statement_token2] = ACTIONS(5555), + [sym__ambiguous_redim_statement] = ACTIONS(4399), + [aux_sym_erase_statement_token1] = ACTIONS(5555), + [aux_sym_open_statement_token1] = ACTIONS(5555), + [aux_sym_file_mode_token2] = ACTIONS(5555), + [aux_sym_file_access_token2] = ACTIONS(5555), + [aux_sym_file_lock_token2] = ACTIONS(5555), + [aux_sym_print_statement_token1] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(5555), + [aux_sym_put_statement_token1] = ACTIONS(5555), + [aux_sym_unlock_statement_token1] = ACTIONS(5555), + [aux_sym_seek_statement_token1] = ACTIONS(5555), + [sym_reset_statement] = ACTIONS(5555), + [aux_sym_raise_event_statement_token1] = ACTIONS(5555), + [sym_stop_statement] = ACTIONS(5555), + [sym_beep_statement] = ACTIONS(5555), + [aux_sym_unload_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token2] = ACTIONS(5555), + [aux_sym_def_type_statement_token3] = ACTIONS(5555), + [aux_sym_def_type_statement_token4] = ACTIONS(5555), + [aux_sym_def_type_statement_token5] = ACTIONS(5555), + [aux_sym_def_type_statement_token6] = ACTIONS(5555), + [aux_sym_def_type_statement_token7] = ACTIONS(5555), + [aux_sym_def_type_statement_token8] = ACTIONS(5555), + [aux_sym_def_type_statement_token9] = ACTIONS(5555), + [aux_sym_def_type_statement_token10] = ACTIONS(5555), + [aux_sym_def_type_statement_token11] = ACTIONS(5555), + [aux_sym_def_type_statement_token12] = ACTIONS(5555), + [aux_sym_def_type_statement_token13] = ACTIONS(5555), + [aux_sym_def_type_statement_token14] = ACTIONS(5555), + [aux_sym_call_statement_token1] = ACTIONS(5555), + [sym__ambiguous_call_statement] = ACTIONS(5555), + [aux_sym_addressof_expression_token1] = ACTIONS(5555), + [aux_sym_type_of_expression_token1] = ACTIONS(5555), + [aux_sym_unary_expression_token1] = ACTIONS(5555), + [sym_string_literal] = ACTIONS(4399), + [sym_number_literal] = ACTIONS(4399), + [aux_sym_boolean_literal_token1] = ACTIONS(5555), + [aux_sym_boolean_literal_token2] = ACTIONS(5555), + [sym_nothing_literal] = ACTIONS(5555), + [sym_null_literal] = ACTIONS(5555), + [sym_empty_literal] = ACTIONS(5555), + [sym_date_literal] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(5555), + }, + [STATE(837)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(838)] = { + [sym_identifier] = ACTIONS(5555), + [sym_newline] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(5564), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5555), + [aux_sym_frm_property_statement_token1] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_BANG] = ACTIONS(5434), + [aux_sym__attribute_identifier_token1] = ACTIONS(5555), + [aux_sym_option_statement_token3] = ACTIONS(5555), + [aux_sym_type_declaration_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5555), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5555), + [aux_sym_enum_declaration_token1] = ACTIONS(5555), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5555), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5555), + [aux_sym_declare_function_statement_token1] = ACTIONS(5555), + [aux_sym_preprocessor_const_token1] = ACTIONS(5555), + [aux_sym__property_get_header_token1] = ACTIONS(5555), + [aux_sym_event_declaration_token1] = ACTIONS(5555), + [sym_static_modifier] = ACTIONS(5555), + [sym__dim_keyword] = ACTIONS(5555), + [sym__redim_keyword] = ACTIONS(5555), + [aux_sym_byval_modifier_token1] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5555), + [aux_sym_set_accessor_token1] = ACTIONS(5555), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5555), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5555), + [aux_sym_visibility_token1] = ACTIONS(5555), + [aux_sym_visibility_token2] = ACTIONS(5555), + [aux_sym_elseif_fragment_token1] = ACTIONS(5555), + [aux_sym_else_fragment_token1] = ACTIONS(5555), + [aux_sym_select_statement_token1] = ACTIONS(5555), + [aux_sym__for_header_token1] = ACTIONS(5555), + [aux_sym_do_statement_token1] = ACTIONS(5555), + [aux_sym_do_condition_token1] = ACTIONS(5555), + [aux_sym_with_statement_token1] = ACTIONS(5555), + [aux_sym_exit_statement_token1] = ACTIONS(5555), + [sym_end_statement] = ACTIONS(4399), + [aux_sym_on_goto_statement_token1] = ACTIONS(5555), + [aux_sym_on_goto_statement_token2] = ACTIONS(5555), + [aux_sym_on_error_statement_token2] = ACTIONS(5555), + [sym__ambiguous_redim_statement] = ACTIONS(4399), + [aux_sym_erase_statement_token1] = ACTIONS(5555), + [aux_sym_open_statement_token1] = ACTIONS(5555), + [aux_sym_file_mode_token2] = ACTIONS(5555), + [aux_sym_file_access_token2] = ACTIONS(5555), + [aux_sym_file_lock_token2] = ACTIONS(5555), + [aux_sym_print_statement_token1] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(5555), + [aux_sym_put_statement_token1] = ACTIONS(5555), + [aux_sym_unlock_statement_token1] = ACTIONS(5555), + [aux_sym_seek_statement_token1] = ACTIONS(5555), + [sym_reset_statement] = ACTIONS(5555), + [aux_sym_raise_event_statement_token1] = ACTIONS(5555), + [sym_stop_statement] = ACTIONS(5555), + [sym_beep_statement] = ACTIONS(5555), + [aux_sym_unload_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token2] = ACTIONS(5555), + [aux_sym_def_type_statement_token3] = ACTIONS(5555), + [aux_sym_def_type_statement_token4] = ACTIONS(5555), + [aux_sym_def_type_statement_token5] = ACTIONS(5555), + [aux_sym_def_type_statement_token6] = ACTIONS(5555), + [aux_sym_def_type_statement_token7] = ACTIONS(5555), + [aux_sym_def_type_statement_token8] = ACTIONS(5555), + [aux_sym_def_type_statement_token9] = ACTIONS(5555), + [aux_sym_def_type_statement_token10] = ACTIONS(5555), + [aux_sym_def_type_statement_token11] = ACTIONS(5555), + [aux_sym_def_type_statement_token12] = ACTIONS(5555), + [aux_sym_def_type_statement_token13] = ACTIONS(5555), + [aux_sym_def_type_statement_token14] = ACTIONS(5555), + [aux_sym_call_statement_token1] = ACTIONS(5555), + [sym__ambiguous_call_statement] = ACTIONS(5555), + [aux_sym_addressof_expression_token1] = ACTIONS(5555), + [aux_sym_type_of_expression_token1] = ACTIONS(5555), + [aux_sym_unary_expression_token1] = ACTIONS(5555), + [sym_string_literal] = ACTIONS(4399), + [sym_number_literal] = ACTIONS(4399), + [aux_sym_boolean_literal_token1] = ACTIONS(5555), + [aux_sym_boolean_literal_token2] = ACTIONS(5555), + [sym_nothing_literal] = ACTIONS(5555), + [sym_null_literal] = ACTIONS(5555), + [sym_empty_literal] = ACTIONS(5555), + [sym_date_literal] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(5555), + }, + [STATE(839)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(3361), + [sym_identifier] = ACTIONS(5566), + [sym_newline] = ACTIONS(5568), + [anon_sym_COLON] = ACTIONS(5568), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5566), + [aux_sym_frm_property_statement_token1] = ACTIONS(5566), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_BANG] = ACTIONS(5568), + [aux_sym__attribute_identifier_token1] = ACTIONS(5566), + [aux_sym_option_statement_token3] = ACTIONS(5566), + [aux_sym_type_declaration_token1] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5566), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5566), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5566), + [aux_sym_enum_declaration_token1] = ACTIONS(5566), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5566), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5566), + [aux_sym_declare_function_statement_token1] = ACTIONS(5566), + [aux_sym_preprocessor_const_token1] = ACTIONS(5566), + [aux_sym__property_get_header_token1] = ACTIONS(5566), + [aux_sym_event_declaration_token1] = ACTIONS(5566), + [sym_static_modifier] = ACTIONS(5566), + [sym__dim_keyword] = ACTIONS(5566), + [sym__redim_keyword] = ACTIONS(5566), + [aux_sym_get_accessor_token1] = ACTIONS(5566), + [aux_sym_set_accessor_token1] = ACTIONS(5566), + [anon_sym_COMMA] = ACTIONS(5570), + [aux_sym_const_declaration_token1] = ACTIONS(5566), + [anon_sym_LPAREN] = ACTIONS(5568), + [aux_sym_as_type_clause_token2] = ACTIONS(5566), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5566), + [aux_sym_visibility_token1] = ACTIONS(5566), + [aux_sym_visibility_token2] = ACTIONS(5566), + [aux_sym_elseif_fragment_token1] = ACTIONS(5566), + [aux_sym_else_fragment_token1] = ACTIONS(5566), + [aux_sym_select_statement_token1] = ACTIONS(5566), + [aux_sym__for_header_token1] = ACTIONS(5566), + [aux_sym_do_statement_token1] = ACTIONS(5566), + [aux_sym_do_condition_token1] = ACTIONS(5566), + [aux_sym_with_statement_token1] = ACTIONS(5566), + [aux_sym_exit_statement_token1] = ACTIONS(5566), + [sym_end_statement] = ACTIONS(5568), + [aux_sym_on_goto_statement_token1] = ACTIONS(5566), + [aux_sym_on_goto_statement_token2] = ACTIONS(5566), + [aux_sym_on_error_statement_token2] = ACTIONS(5566), + [sym__ambiguous_redim_statement] = ACTIONS(5568), + [aux_sym_erase_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_file_mode_token2] = ACTIONS(5566), + [aux_sym_file_access_token2] = ACTIONS(5566), + [aux_sym_file_lock_token2] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(5570), + [anon_sym_QMARK] = ACTIONS(5568), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_put_statement_token1] = ACTIONS(5566), + [aux_sym_unlock_statement_token1] = ACTIONS(5566), + [aux_sym_seek_statement_token1] = ACTIONS(5566), + [sym_reset_statement] = ACTIONS(5566), + [aux_sym_raise_event_statement_token1] = ACTIONS(5566), + [sym_stop_statement] = ACTIONS(5566), + [sym_beep_statement] = ACTIONS(5566), + [aux_sym_unload_statement_token1] = ACTIONS(5566), + [aux_sym_def_type_statement_token1] = ACTIONS(5566), + [aux_sym_def_type_statement_token2] = ACTIONS(5566), + [aux_sym_def_type_statement_token3] = ACTIONS(5566), + [aux_sym_def_type_statement_token4] = ACTIONS(5566), + [aux_sym_def_type_statement_token5] = ACTIONS(5566), + [aux_sym_def_type_statement_token6] = ACTIONS(5566), + [aux_sym_def_type_statement_token7] = ACTIONS(5566), + [aux_sym_def_type_statement_token8] = ACTIONS(5566), + [aux_sym_def_type_statement_token9] = ACTIONS(5566), + [aux_sym_def_type_statement_token10] = ACTIONS(5566), + [aux_sym_def_type_statement_token11] = ACTIONS(5566), + [aux_sym_def_type_statement_token12] = ACTIONS(5566), + [aux_sym_def_type_statement_token13] = ACTIONS(5566), + [aux_sym_def_type_statement_token14] = ACTIONS(5566), + [aux_sym_call_statement_token1] = ACTIONS(5566), + [sym__ambiguous_call_statement] = ACTIONS(5566), + [aux_sym_addressof_expression_token1] = ACTIONS(5566), + [aux_sym_type_of_expression_token1] = ACTIONS(5566), + [aux_sym_unary_expression_token1] = ACTIONS(5566), + [sym_string_literal] = ACTIONS(5568), + [sym_number_literal] = ACTIONS(5568), + [aux_sym_boolean_literal_token1] = ACTIONS(5566), + [aux_sym_boolean_literal_token2] = ACTIONS(5566), + [sym_nothing_literal] = ACTIONS(5566), + [sym_null_literal] = ACTIONS(5566), + [sym_empty_literal] = ACTIONS(5566), + [sym_date_literal] = ACTIONS(5568), + [anon_sym_POUND] = ACTIONS(5566), + }, + [STATE(840)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5532), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(841)] = { + [sym_identifier] = ACTIONS(4749), + [sym_newline] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4749), + [aux_sym_frm_property_statement_token1] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_BANG] = ACTIONS(4751), + [aux_sym__attribute_identifier_token1] = ACTIONS(4749), + [aux_sym_option_statement_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4749), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4749), + [aux_sym_preprocessor_const_token1] = ACTIONS(4749), + [sym_static_modifier] = ACTIONS(4749), + [sym__dim_keyword] = ACTIONS(4749), + [sym__redim_keyword] = ACTIONS(4749), + [aux_sym_get_accessor_token1] = ACTIONS(4749), + [aux_sym_set_accessor_token1] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4751), + [aux_sym_const_declaration_token1] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4751), + [aux_sym_as_type_clause_token2] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4749), + [aux_sym_visibility_token1] = ACTIONS(4749), + [aux_sym_visibility_token2] = ACTIONS(4749), + [aux_sym_elseif_fragment_token1] = ACTIONS(4749), + [aux_sym_else_fragment_token1] = ACTIONS(4749), + [aux_sym_select_statement_token1] = ACTIONS(4749), + [aux_sym_case_expression_token1] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_GT] = ACTIONS(4751), + [aux_sym__for_header_token1] = ACTIONS(4749), + [aux_sym_do_statement_token1] = ACTIONS(4749), + [aux_sym_do_condition_token1] = ACTIONS(4749), + [aux_sym_with_statement_token1] = ACTIONS(4749), + [aux_sym_exit_statement_token1] = ACTIONS(4749), + [sym_end_statement] = ACTIONS(4751), + [aux_sym_on_goto_statement_token1] = ACTIONS(4749), + [aux_sym_on_goto_statement_token2] = ACTIONS(4749), + [aux_sym_on_error_statement_token2] = ACTIONS(4749), + [sym__ambiguous_redim_statement] = ACTIONS(4751), + [aux_sym_erase_statement_token1] = ACTIONS(4749), + [aux_sym_open_statement_token1] = ACTIONS(4749), + [aux_sym_file_mode_token2] = ACTIONS(4749), + [aux_sym_file_access_token2] = ACTIONS(4749), + [aux_sym_file_lock_token2] = ACTIONS(4749), + [aux_sym_print_statement_token1] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_BSLASH] = ACTIONS(4751), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [aux_sym_close_statement_token1] = ACTIONS(4749), + [aux_sym_put_statement_token1] = ACTIONS(4749), + [aux_sym_unlock_statement_token1] = ACTIONS(4749), + [aux_sym_seek_statement_token1] = ACTIONS(4749), + [sym_reset_statement] = ACTIONS(4749), + [aux_sym_raise_event_statement_token1] = ACTIONS(4749), + [sym_stop_statement] = ACTIONS(4749), + [sym_beep_statement] = ACTIONS(4749), + [aux_sym_unload_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token2] = ACTIONS(4749), + [aux_sym_def_type_statement_token3] = ACTIONS(4749), + [aux_sym_def_type_statement_token4] = ACTIONS(4749), + [aux_sym_def_type_statement_token5] = ACTIONS(4749), + [aux_sym_def_type_statement_token6] = ACTIONS(4749), + [aux_sym_def_type_statement_token7] = ACTIONS(4749), + [aux_sym_def_type_statement_token8] = ACTIONS(4749), + [aux_sym_def_type_statement_token9] = ACTIONS(4749), + [aux_sym_def_type_statement_token10] = ACTIONS(4749), + [aux_sym_def_type_statement_token11] = ACTIONS(4749), + [aux_sym_def_type_statement_token12] = ACTIONS(4749), + [aux_sym_def_type_statement_token13] = ACTIONS(4749), + [aux_sym_def_type_statement_token14] = ACTIONS(4749), + [aux_sym_call_statement_token1] = ACTIONS(4749), + [sym__ambiguous_call_statement] = ACTIONS(4749), + [aux_sym_comparison_operator_token1] = ACTIONS(4749), + [aux_sym_addressof_expression_token1] = ACTIONS(4749), + [aux_sym_type_of_expression_token1] = ACTIONS(4749), + [aux_sym_unary_expression_token1] = ACTIONS(4749), + [sym_string_literal] = ACTIONS(4751), + [sym_number_literal] = ACTIONS(4751), + [aux_sym_boolean_literal_token1] = ACTIONS(4749), + [aux_sym_boolean_literal_token2] = ACTIONS(4749), + [sym_nothing_literal] = ACTIONS(4749), + [sym_null_literal] = ACTIONS(4749), + [sym_empty_literal] = ACTIONS(4749), + [sym_date_literal] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4749), + }, + [STATE(842)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(842), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(5596), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(843)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(844)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(845)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(846)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_declaration_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4625), + [aux_sym_enum_declaration_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4625), + [aux_sym_declare_function_statement_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [aux_sym__property_get_header_token1] = ACTIONS(4625), + [aux_sym_event_declaration_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(847)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(848)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(849)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(850)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5532), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5534), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5538), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5599), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5601), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(851)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(852)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(854), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(5603), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(853)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_declaration_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4589), + [aux_sym_enum_declaration_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4589), + [aux_sym_declare_function_statement_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [aux_sym__property_get_header_token1] = ACTIONS(4589), + [aux_sym_event_declaration_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(854)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(831), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token3] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(855)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(856)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(857)] = { + [sym_identifier] = ACTIONS(4759), + [sym_newline] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4761), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4759), + [aux_sym_frm_property_statement_token1] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4761), + [aux_sym__attribute_identifier_token1] = ACTIONS(4759), + [aux_sym_option_statement_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4759), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4759), + [aux_sym_preprocessor_const_token1] = ACTIONS(4759), + [sym_static_modifier] = ACTIONS(4759), + [sym__dim_keyword] = ACTIONS(4759), + [sym__redim_keyword] = ACTIONS(4759), + [aux_sym_get_accessor_token1] = ACTIONS(4759), + [aux_sym_set_accessor_token1] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [aux_sym_const_declaration_token1] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4763), + [aux_sym_as_type_clause_token2] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4759), + [aux_sym_visibility_token1] = ACTIONS(4759), + [aux_sym_visibility_token2] = ACTIONS(4759), + [aux_sym_elseif_fragment_token1] = ACTIONS(4759), + [aux_sym_else_fragment_token1] = ACTIONS(4759), + [aux_sym_select_statement_token1] = ACTIONS(4759), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4759), + [aux_sym_do_statement_token1] = ACTIONS(4759), + [aux_sym_do_condition_token1] = ACTIONS(4759), + [aux_sym_with_statement_token1] = ACTIONS(4759), + [aux_sym_exit_statement_token1] = ACTIONS(4759), + [sym_end_statement] = ACTIONS(4761), + [aux_sym_on_goto_statement_token1] = ACTIONS(4759), + [aux_sym_on_goto_statement_token2] = ACTIONS(4759), + [aux_sym_on_error_statement_token2] = ACTIONS(4759), + [sym__ambiguous_redim_statement] = ACTIONS(4761), + [aux_sym_erase_statement_token1] = ACTIONS(4759), + [aux_sym_open_statement_token1] = ACTIONS(4759), + [aux_sym_file_mode_token2] = ACTIONS(4759), + [aux_sym_file_access_token2] = ACTIONS(4759), + [aux_sym_file_lock_token2] = ACTIONS(4759), + [aux_sym_print_statement_token1] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_QMARK] = ACTIONS(4761), + [aux_sym_close_statement_token1] = ACTIONS(4759), + [aux_sym_put_statement_token1] = ACTIONS(4759), + [aux_sym_unlock_statement_token1] = ACTIONS(4759), + [aux_sym_seek_statement_token1] = ACTIONS(4759), + [sym_reset_statement] = ACTIONS(4759), + [aux_sym_raise_event_statement_token1] = ACTIONS(4759), + [sym_stop_statement] = ACTIONS(4759), + [sym_beep_statement] = ACTIONS(4759), + [aux_sym_unload_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token2] = ACTIONS(4759), + [aux_sym_def_type_statement_token3] = ACTIONS(4759), + [aux_sym_def_type_statement_token4] = ACTIONS(4759), + [aux_sym_def_type_statement_token5] = ACTIONS(4759), + [aux_sym_def_type_statement_token6] = ACTIONS(4759), + [aux_sym_def_type_statement_token7] = ACTIONS(4759), + [aux_sym_def_type_statement_token8] = ACTIONS(4759), + [aux_sym_def_type_statement_token9] = ACTIONS(4759), + [aux_sym_def_type_statement_token10] = ACTIONS(4759), + [aux_sym_def_type_statement_token11] = ACTIONS(4759), + [aux_sym_def_type_statement_token12] = ACTIONS(4759), + [aux_sym_def_type_statement_token13] = ACTIONS(4759), + [aux_sym_def_type_statement_token14] = ACTIONS(4759), + [aux_sym_call_statement_token1] = ACTIONS(4759), + [sym__ambiguous_call_statement] = ACTIONS(4759), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4759), + [aux_sym_type_of_expression_token1] = ACTIONS(4759), + [aux_sym_unary_expression_token1] = ACTIONS(4759), + [sym_string_literal] = ACTIONS(4761), + [sym_number_literal] = ACTIONS(4761), + [aux_sym_boolean_literal_token1] = ACTIONS(4759), + [aux_sym_boolean_literal_token2] = ACTIONS(4759), + [sym_nothing_literal] = ACTIONS(4759), + [sym_null_literal] = ACTIONS(4759), + [sym_empty_literal] = ACTIONS(4759), + [sym_date_literal] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(4759), + }, + [STATE(858)] = { + [sym_identifier] = ACTIONS(4759), + [sym_newline] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4761), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4759), + [aux_sym_frm_property_statement_token1] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4761), + [aux_sym__attribute_identifier_token1] = ACTIONS(4759), + [aux_sym_option_statement_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4759), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4759), + [aux_sym_preprocessor_const_token1] = ACTIONS(4759), + [sym_static_modifier] = ACTIONS(4759), + [sym__dim_keyword] = ACTIONS(4759), + [sym__redim_keyword] = ACTIONS(4759), + [aux_sym_get_accessor_token1] = ACTIONS(4759), + [aux_sym_set_accessor_token1] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [aux_sym_const_declaration_token1] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4761), + [aux_sym_as_type_clause_token2] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4759), + [aux_sym_visibility_token1] = ACTIONS(4759), + [aux_sym_visibility_token2] = ACTIONS(4759), + [aux_sym_elseif_fragment_token1] = ACTIONS(4759), + [aux_sym_else_fragment_token1] = ACTIONS(4759), + [aux_sym_select_statement_token1] = ACTIONS(4759), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4759), + [aux_sym_do_statement_token1] = ACTIONS(4759), + [aux_sym_do_condition_token1] = ACTIONS(4759), + [aux_sym_with_statement_token1] = ACTIONS(4759), + [aux_sym_exit_statement_token1] = ACTIONS(4759), + [sym_end_statement] = ACTIONS(4761), + [aux_sym_on_goto_statement_token1] = ACTIONS(4759), + [aux_sym_on_goto_statement_token2] = ACTIONS(4759), + [aux_sym_on_error_statement_token2] = ACTIONS(4759), + [sym__ambiguous_redim_statement] = ACTIONS(4761), + [aux_sym_erase_statement_token1] = ACTIONS(4759), + [aux_sym_open_statement_token1] = ACTIONS(4759), + [aux_sym_file_mode_token2] = ACTIONS(4759), + [aux_sym_file_access_token2] = ACTIONS(4759), + [aux_sym_file_lock_token2] = ACTIONS(4759), + [aux_sym_print_statement_token1] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_QMARK] = ACTIONS(4761), + [aux_sym_close_statement_token1] = ACTIONS(4759), + [aux_sym_put_statement_token1] = ACTIONS(4759), + [aux_sym_unlock_statement_token1] = ACTIONS(4759), + [aux_sym_seek_statement_token1] = ACTIONS(4759), + [sym_reset_statement] = ACTIONS(4759), + [aux_sym_raise_event_statement_token1] = ACTIONS(4759), + [sym_stop_statement] = ACTIONS(4759), + [sym_beep_statement] = ACTIONS(4759), + [aux_sym_unload_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token2] = ACTIONS(4759), + [aux_sym_def_type_statement_token3] = ACTIONS(4759), + [aux_sym_def_type_statement_token4] = ACTIONS(4759), + [aux_sym_def_type_statement_token5] = ACTIONS(4759), + [aux_sym_def_type_statement_token6] = ACTIONS(4759), + [aux_sym_def_type_statement_token7] = ACTIONS(4759), + [aux_sym_def_type_statement_token8] = ACTIONS(4759), + [aux_sym_def_type_statement_token9] = ACTIONS(4759), + [aux_sym_def_type_statement_token10] = ACTIONS(4759), + [aux_sym_def_type_statement_token11] = ACTIONS(4759), + [aux_sym_def_type_statement_token12] = ACTIONS(4759), + [aux_sym_def_type_statement_token13] = ACTIONS(4759), + [aux_sym_def_type_statement_token14] = ACTIONS(4759), + [aux_sym_call_statement_token1] = ACTIONS(4759), + [sym__ambiguous_call_statement] = ACTIONS(4759), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4759), + [aux_sym_type_of_expression_token1] = ACTIONS(4759), + [aux_sym_unary_expression_token1] = ACTIONS(4759), + [sym_string_literal] = ACTIONS(4761), + [sym_number_literal] = ACTIONS(4761), + [aux_sym_boolean_literal_token1] = ACTIONS(4759), + [aux_sym_boolean_literal_token2] = ACTIONS(4759), + [sym_nothing_literal] = ACTIONS(4759), + [sym_null_literal] = ACTIONS(4759), + [sym_empty_literal] = ACTIONS(4759), + [sym_date_literal] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(4759), + }, + [STATE(859)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5605), + [anon_sym_BANG] = ACTIONS(5607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4806), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(860)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5532), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5534), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5538), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5599), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(861)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4412), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4412), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(862)] = { + [sym_identifier] = ACTIONS(4420), + [sym_newline] = ACTIONS(4422), + [anon_sym_COLON] = ACTIONS(4422), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4420), + [aux_sym_frm_property_statement_token1] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5605), + [anon_sym_BANG] = ACTIONS(5607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4420), + [aux_sym_option_statement_token3] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4420), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4420), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4420), + [aux_sym_preprocessor_const_token1] = ACTIONS(4420), + [sym_static_modifier] = ACTIONS(4420), + [sym__dim_keyword] = ACTIONS(4420), + [sym__redim_keyword] = ACTIONS(4420), + [aux_sym_get_accessor_token1] = ACTIONS(4420), + [aux_sym_set_accessor_token1] = ACTIONS(4420), + [anon_sym_COMMA] = ACTIONS(4422), + [aux_sym_const_declaration_token1] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4428), + [aux_sym_as_type_clause_token2] = ACTIONS(4420), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4420), + [aux_sym_visibility_token1] = ACTIONS(4420), + [aux_sym_visibility_token2] = ACTIONS(4420), + [aux_sym_elseif_fragment_token1] = ACTIONS(4420), + [aux_sym_else_fragment_token1] = ACTIONS(4420), + [aux_sym_select_statement_token1] = ACTIONS(4420), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4420), + [aux_sym_do_statement_token1] = ACTIONS(4420), + [aux_sym_do_condition_token1] = ACTIONS(4420), + [aux_sym_with_statement_token1] = ACTIONS(4420), + [aux_sym_exit_statement_token1] = ACTIONS(4420), + [sym_end_statement] = ACTIONS(4422), + [aux_sym_on_goto_statement_token1] = ACTIONS(4420), + [aux_sym_on_goto_statement_token2] = ACTIONS(4420), + [aux_sym_on_error_statement_token2] = ACTIONS(4420), + [sym__ambiguous_redim_statement] = ACTIONS(4422), + [aux_sym_erase_statement_token1] = ACTIONS(4420), + [aux_sym_open_statement_token1] = ACTIONS(4420), + [aux_sym_file_mode_token2] = ACTIONS(4420), + [aux_sym_file_access_token2] = ACTIONS(4420), + [aux_sym_file_lock_token2] = ACTIONS(4420), + [aux_sym_print_statement_token1] = ACTIONS(4420), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4431), + [anon_sym_DASH] = ACTIONS(4434), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym_QMARK] = ACTIONS(4422), + [aux_sym_close_statement_token1] = ACTIONS(4420), + [aux_sym_put_statement_token1] = ACTIONS(4420), + [aux_sym_unlock_statement_token1] = ACTIONS(4420), + [aux_sym_seek_statement_token1] = ACTIONS(4420), + [sym_reset_statement] = ACTIONS(4420), + [aux_sym_raise_event_statement_token1] = ACTIONS(4420), + [sym_stop_statement] = ACTIONS(4420), + [sym_beep_statement] = ACTIONS(4420), + [aux_sym_unload_statement_token1] = ACTIONS(4420), + [aux_sym_def_type_statement_token1] = ACTIONS(4420), + [aux_sym_def_type_statement_token2] = ACTIONS(4420), + [aux_sym_def_type_statement_token3] = ACTIONS(4420), + [aux_sym_def_type_statement_token4] = ACTIONS(4420), + [aux_sym_def_type_statement_token5] = ACTIONS(4420), + [aux_sym_def_type_statement_token6] = ACTIONS(4420), + [aux_sym_def_type_statement_token7] = ACTIONS(4420), + [aux_sym_def_type_statement_token8] = ACTIONS(4420), + [aux_sym_def_type_statement_token9] = ACTIONS(4420), + [aux_sym_def_type_statement_token10] = ACTIONS(4420), + [aux_sym_def_type_statement_token11] = ACTIONS(4420), + [aux_sym_def_type_statement_token12] = ACTIONS(4420), + [aux_sym_def_type_statement_token13] = ACTIONS(4420), + [aux_sym_def_type_statement_token14] = ACTIONS(4420), + [aux_sym_call_statement_token1] = ACTIONS(4420), + [sym__ambiguous_call_statement] = ACTIONS(4420), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4420), + [aux_sym_type_of_expression_token1] = ACTIONS(4420), + [aux_sym_unary_expression_token1] = ACTIONS(4420), + [sym_string_literal] = ACTIONS(4422), + [sym_number_literal] = ACTIONS(4422), + [aux_sym_boolean_literal_token1] = ACTIONS(4420), + [aux_sym_boolean_literal_token2] = ACTIONS(4420), + [sym_nothing_literal] = ACTIONS(4420), + [sym_null_literal] = ACTIONS(4420), + [sym_empty_literal] = ACTIONS(4420), + [sym_date_literal] = ACTIONS(4422), + [anon_sym_POUND] = ACTIONS(4420), + }, + [STATE(863)] = { + [sym_identifier] = ACTIONS(4489), + [sym_newline] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4491), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4489), + [aux_sym_frm_property_statement_token1] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4489), + [anon_sym_BANG] = ACTIONS(4491), + [aux_sym__attribute_identifier_token1] = ACTIONS(4489), + [aux_sym_option_statement_token3] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4489), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4489), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4489), + [aux_sym_preprocessor_const_token1] = ACTIONS(4489), + [sym_static_modifier] = ACTIONS(4489), + [sym__dim_keyword] = ACTIONS(4489), + [sym__redim_keyword] = ACTIONS(4489), + [aux_sym_get_accessor_token1] = ACTIONS(4489), + [aux_sym_set_accessor_token1] = ACTIONS(4489), + [anon_sym_COMMA] = ACTIONS(4491), + [aux_sym_const_declaration_token1] = ACTIONS(4489), + [anon_sym_LPAREN] = ACTIONS(4491), + [aux_sym_as_type_clause_token2] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4489), + [aux_sym_visibility_token1] = ACTIONS(4489), + [aux_sym_visibility_token2] = ACTIONS(4489), + [aux_sym_elseif_fragment_token1] = ACTIONS(4489), + [aux_sym_else_fragment_token1] = ACTIONS(4489), + [aux_sym_select_statement_token1] = ACTIONS(4489), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4489), + [aux_sym_do_statement_token1] = ACTIONS(4489), + [aux_sym_do_condition_token1] = ACTIONS(4489), + [aux_sym_with_statement_token1] = ACTIONS(4489), + [aux_sym_exit_statement_token1] = ACTIONS(4489), + [sym_end_statement] = ACTIONS(4491), + [aux_sym_on_goto_statement_token1] = ACTIONS(4489), + [aux_sym_on_goto_statement_token2] = ACTIONS(4489), + [aux_sym_on_error_statement_token2] = ACTIONS(4489), + [sym__ambiguous_redim_statement] = ACTIONS(4491), + [aux_sym_erase_statement_token1] = ACTIONS(4489), + [aux_sym_open_statement_token1] = ACTIONS(4489), + [aux_sym_file_mode_token2] = ACTIONS(4489), + [aux_sym_file_access_token2] = ACTIONS(4489), + [aux_sym_file_lock_token2] = ACTIONS(4489), + [aux_sym_print_statement_token1] = ACTIONS(4489), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4491), + [anon_sym_QMARK] = ACTIONS(4491), + [aux_sym_close_statement_token1] = ACTIONS(4489), + [aux_sym_put_statement_token1] = ACTIONS(4489), + [aux_sym_unlock_statement_token1] = ACTIONS(4489), + [aux_sym_seek_statement_token1] = ACTIONS(4489), + [sym_reset_statement] = ACTIONS(4489), + [aux_sym_raise_event_statement_token1] = ACTIONS(4489), + [sym_stop_statement] = ACTIONS(4489), + [sym_beep_statement] = ACTIONS(4489), + [aux_sym_unload_statement_token1] = ACTIONS(4489), + [aux_sym_def_type_statement_token1] = ACTIONS(4489), + [aux_sym_def_type_statement_token2] = ACTIONS(4489), + [aux_sym_def_type_statement_token3] = ACTIONS(4489), + [aux_sym_def_type_statement_token4] = ACTIONS(4489), + [aux_sym_def_type_statement_token5] = ACTIONS(4489), + [aux_sym_def_type_statement_token6] = ACTIONS(4489), + [aux_sym_def_type_statement_token7] = ACTIONS(4489), + [aux_sym_def_type_statement_token8] = ACTIONS(4489), + [aux_sym_def_type_statement_token9] = ACTIONS(4489), + [aux_sym_def_type_statement_token10] = ACTIONS(4489), + [aux_sym_def_type_statement_token11] = ACTIONS(4489), + [aux_sym_def_type_statement_token12] = ACTIONS(4489), + [aux_sym_def_type_statement_token13] = ACTIONS(4489), + [aux_sym_def_type_statement_token14] = ACTIONS(4489), + [aux_sym_call_statement_token1] = ACTIONS(4489), + [sym__ambiguous_call_statement] = ACTIONS(4489), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4489), + [aux_sym_type_of_expression_token1] = ACTIONS(4489), + [aux_sym_unary_expression_token1] = ACTIONS(4489), + [sym_string_literal] = ACTIONS(4491), + [sym_number_literal] = ACTIONS(4491), + [aux_sym_boolean_literal_token1] = ACTIONS(4489), + [aux_sym_boolean_literal_token2] = ACTIONS(4489), + [sym_nothing_literal] = ACTIONS(4489), + [sym_null_literal] = ACTIONS(4489), + [sym_empty_literal] = ACTIONS(4489), + [sym_date_literal] = ACTIONS(4491), + [anon_sym_POUND] = ACTIONS(4489), + }, + [STATE(864)] = { + [sym_identifier] = ACTIONS(4499), + [sym_newline] = ACTIONS(4501), + [anon_sym_COLON] = ACTIONS(4501), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4499), + [aux_sym_frm_property_statement_token1] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4501), + [aux_sym__attribute_identifier_token1] = ACTIONS(4499), + [aux_sym_option_statement_token3] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4499), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4499), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4499), + [aux_sym_preprocessor_const_token1] = ACTIONS(4499), + [sym_static_modifier] = ACTIONS(4499), + [sym__dim_keyword] = ACTIONS(4499), + [sym__redim_keyword] = ACTIONS(4499), + [aux_sym_get_accessor_token1] = ACTIONS(4499), + [aux_sym_set_accessor_token1] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4501), + [aux_sym_const_declaration_token1] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4501), + [aux_sym_as_type_clause_token2] = ACTIONS(4499), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4499), + [aux_sym_visibility_token1] = ACTIONS(4499), + [aux_sym_visibility_token2] = ACTIONS(4499), + [aux_sym_elseif_fragment_token1] = ACTIONS(4499), + [aux_sym_else_fragment_token1] = ACTIONS(4499), + [aux_sym_select_statement_token1] = ACTIONS(4499), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4499), + [aux_sym_do_statement_token1] = ACTIONS(4499), + [aux_sym_do_condition_token1] = ACTIONS(4499), + [aux_sym_with_statement_token1] = ACTIONS(4499), + [aux_sym_exit_statement_token1] = ACTIONS(4499), + [sym_end_statement] = ACTIONS(4501), + [aux_sym_on_goto_statement_token1] = ACTIONS(4499), + [aux_sym_on_goto_statement_token2] = ACTIONS(4499), + [aux_sym_on_error_statement_token2] = ACTIONS(4499), + [sym__ambiguous_redim_statement] = ACTIONS(4501), + [aux_sym_erase_statement_token1] = ACTIONS(4499), + [aux_sym_open_statement_token1] = ACTIONS(4499), + [aux_sym_file_mode_token2] = ACTIONS(4499), + [aux_sym_file_access_token2] = ACTIONS(4499), + [aux_sym_file_lock_token2] = ACTIONS(4499), + [aux_sym_print_statement_token1] = ACTIONS(4499), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4514), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4501), + [anon_sym_QMARK] = ACTIONS(4501), + [aux_sym_close_statement_token1] = ACTIONS(4499), + [aux_sym_put_statement_token1] = ACTIONS(4499), + [aux_sym_unlock_statement_token1] = ACTIONS(4499), + [aux_sym_seek_statement_token1] = ACTIONS(4499), + [sym_reset_statement] = ACTIONS(4499), + [aux_sym_raise_event_statement_token1] = ACTIONS(4499), + [sym_stop_statement] = ACTIONS(4499), + [sym_beep_statement] = ACTIONS(4499), + [aux_sym_unload_statement_token1] = ACTIONS(4499), + [aux_sym_def_type_statement_token1] = ACTIONS(4499), + [aux_sym_def_type_statement_token2] = ACTIONS(4499), + [aux_sym_def_type_statement_token3] = ACTIONS(4499), + [aux_sym_def_type_statement_token4] = ACTIONS(4499), + [aux_sym_def_type_statement_token5] = ACTIONS(4499), + [aux_sym_def_type_statement_token6] = ACTIONS(4499), + [aux_sym_def_type_statement_token7] = ACTIONS(4499), + [aux_sym_def_type_statement_token8] = ACTIONS(4499), + [aux_sym_def_type_statement_token9] = ACTIONS(4499), + [aux_sym_def_type_statement_token10] = ACTIONS(4499), + [aux_sym_def_type_statement_token11] = ACTIONS(4499), + [aux_sym_def_type_statement_token12] = ACTIONS(4499), + [aux_sym_def_type_statement_token13] = ACTIONS(4499), + [aux_sym_def_type_statement_token14] = ACTIONS(4499), + [aux_sym_call_statement_token1] = ACTIONS(4499), + [sym__ambiguous_call_statement] = ACTIONS(4499), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4499), + [aux_sym_type_of_expression_token1] = ACTIONS(4499), + [aux_sym_unary_expression_token1] = ACTIONS(4499), + [sym_string_literal] = ACTIONS(4501), + [sym_number_literal] = ACTIONS(4501), + [aux_sym_boolean_literal_token1] = ACTIONS(4499), + [aux_sym_boolean_literal_token2] = ACTIONS(4499), + [sym_nothing_literal] = ACTIONS(4499), + [sym_null_literal] = ACTIONS(4499), + [sym_empty_literal] = ACTIONS(4499), + [sym_date_literal] = ACTIONS(4501), + [anon_sym_POUND] = ACTIONS(4499), + }, + [STATE(865)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(866)] = { + [sym_argument_list] = STATE(2919), + [sym_comparison_operator] = STATE(8613), + [sym_identifier] = ACTIONS(4236), + [sym_newline] = ACTIONS(4238), + [anon_sym_COLON] = ACTIONS(4238), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4236), + [aux_sym_frm_property_statement_token1] = ACTIONS(4236), + [anon_sym_EQ] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(5609), + [anon_sym_BANG] = ACTIONS(5611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4236), + [aux_sym_option_statement_token3] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4236), + [aux_sym_preprocessor_const_token1] = ACTIONS(4236), + [sym_static_modifier] = ACTIONS(4236), + [sym__dim_keyword] = ACTIONS(4236), + [sym__redim_keyword] = ACTIONS(4236), + [aux_sym_get_accessor_token1] = ACTIONS(4236), + [aux_sym_set_accessor_token1] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4238), + [aux_sym_const_declaration_token1] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(5613), + [aux_sym_as_type_clause_token2] = ACTIONS(4236), + [anon_sym_STAR] = ACTIONS(4248), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4236), + [aux_sym_visibility_token1] = ACTIONS(4236), + [aux_sym_visibility_token2] = ACTIONS(4236), + [aux_sym_elseif_fragment_token1] = ACTIONS(4236), + [aux_sym_else_fragment_token1] = ACTIONS(4236), + [aux_sym_select_statement_token1] = ACTIONS(4236), + [aux_sym_case_expression_token1] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_LT_GT] = ACTIONS(4240), + [aux_sym__for_header_token1] = ACTIONS(4236), + [aux_sym_do_statement_token1] = ACTIONS(4236), + [aux_sym_do_statement_token2] = ACTIONS(4236), + [aux_sym_do_condition_token1] = ACTIONS(4236), + [aux_sym_with_statement_token1] = ACTIONS(4236), + [aux_sym_exit_statement_token1] = ACTIONS(4236), + [sym_end_statement] = ACTIONS(4238), + [aux_sym_on_goto_statement_token1] = ACTIONS(4236), + [aux_sym_on_goto_statement_token2] = ACTIONS(4236), + [aux_sym_on_error_statement_token2] = ACTIONS(4236), + [sym__ambiguous_redim_statement] = ACTIONS(4238), + [aux_sym_erase_statement_token1] = ACTIONS(4236), + [aux_sym_open_statement_token1] = ACTIONS(4236), + [aux_sym_file_mode_token2] = ACTIONS(4236), + [aux_sym_file_access_token2] = ACTIONS(4236), + [aux_sym_file_lock_token2] = ACTIONS(4236), + [aux_sym_print_statement_token1] = ACTIONS(4236), + [anon_sym_CARET] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_BSLASH] = ACTIONS(4248), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4252), + [anon_sym_SEMI] = ACTIONS(4238), + [anon_sym_QMARK] = ACTIONS(4238), + [aux_sym_close_statement_token1] = ACTIONS(4236), + [aux_sym_put_statement_token1] = ACTIONS(4236), + [aux_sym_unlock_statement_token1] = ACTIONS(4236), + [aux_sym_seek_statement_token1] = ACTIONS(4236), + [sym_reset_statement] = ACTIONS(4236), + [aux_sym_raise_event_statement_token1] = ACTIONS(4236), + [sym_stop_statement] = ACTIONS(4236), + [sym_beep_statement] = ACTIONS(4236), + [aux_sym_unload_statement_token1] = ACTIONS(4236), + [aux_sym_def_type_statement_token1] = ACTIONS(4236), + [aux_sym_def_type_statement_token2] = ACTIONS(4236), + [aux_sym_def_type_statement_token3] = ACTIONS(4236), + [aux_sym_def_type_statement_token4] = ACTIONS(4236), + [aux_sym_def_type_statement_token5] = ACTIONS(4236), + [aux_sym_def_type_statement_token6] = ACTIONS(4236), + [aux_sym_def_type_statement_token7] = ACTIONS(4236), + [aux_sym_def_type_statement_token8] = ACTIONS(4236), + [aux_sym_def_type_statement_token9] = ACTIONS(4236), + [aux_sym_def_type_statement_token10] = ACTIONS(4236), + [aux_sym_def_type_statement_token11] = ACTIONS(4236), + [aux_sym_def_type_statement_token12] = ACTIONS(4236), + [aux_sym_def_type_statement_token13] = ACTIONS(4236), + [aux_sym_def_type_statement_token14] = ACTIONS(4236), + [aux_sym_call_statement_token1] = ACTIONS(4236), + [sym__ambiguous_call_statement] = ACTIONS(4236), + [aux_sym_comparison_operator_token1] = ACTIONS(4250), + [aux_sym_addressof_expression_token1] = ACTIONS(4236), + [aux_sym_type_of_expression_token1] = ACTIONS(4236), + [aux_sym_unary_expression_token1] = ACTIONS(4236), + [sym_string_literal] = ACTIONS(4238), + [sym_number_literal] = ACTIONS(4238), + [aux_sym_boolean_literal_token1] = ACTIONS(4236), + [aux_sym_boolean_literal_token2] = ACTIONS(4236), + [sym_nothing_literal] = ACTIONS(4236), + [sym_null_literal] = ACTIONS(4236), + [sym_empty_literal] = ACTIONS(4236), + [sym_date_literal] = ACTIONS(4238), + [anon_sym_POUND] = ACTIONS(4236), + }, + [STATE(867)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(868)] = { + [sym_identifier] = ACTIONS(4671), + [sym_newline] = ACTIONS(4673), + [anon_sym_COLON] = ACTIONS(4673), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4671), + [aux_sym_frm_property_statement_token1] = ACTIONS(4671), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4671), + [anon_sym_BANG] = ACTIONS(4673), + [aux_sym__attribute_identifier_token1] = ACTIONS(4671), + [aux_sym_option_statement_token3] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4671), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4671), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4671), + [aux_sym_preprocessor_const_token1] = ACTIONS(4671), + [sym_static_modifier] = ACTIONS(4671), + [sym__dim_keyword] = ACTIONS(4671), + [sym__redim_keyword] = ACTIONS(4671), + [aux_sym_get_accessor_token1] = ACTIONS(4671), + [aux_sym_set_accessor_token1] = ACTIONS(4671), + [anon_sym_COMMA] = ACTIONS(4673), + [aux_sym_const_declaration_token1] = ACTIONS(4671), + [anon_sym_LPAREN] = ACTIONS(4673), + [aux_sym_as_type_clause_token2] = ACTIONS(4671), + [anon_sym_STAR] = ACTIONS(4673), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4671), + [aux_sym_visibility_token1] = ACTIONS(4671), + [aux_sym_visibility_token2] = ACTIONS(4671), + [aux_sym_elseif_fragment_token1] = ACTIONS(4671), + [aux_sym_else_fragment_token1] = ACTIONS(4671), + [aux_sym_select_statement_token1] = ACTIONS(4671), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4671), + [aux_sym_do_statement_token1] = ACTIONS(4671), + [aux_sym_do_condition_token1] = ACTIONS(4671), + [aux_sym_with_statement_token1] = ACTIONS(4671), + [aux_sym_exit_statement_token1] = ACTIONS(4671), + [sym_end_statement] = ACTIONS(4673), + [aux_sym_on_goto_statement_token1] = ACTIONS(4671), + [aux_sym_on_goto_statement_token2] = ACTIONS(4671), + [aux_sym_on_error_statement_token2] = ACTIONS(4671), + [sym__ambiguous_redim_statement] = ACTIONS(4673), + [aux_sym_erase_statement_token1] = ACTIONS(4671), + [aux_sym_open_statement_token1] = ACTIONS(4671), + [aux_sym_file_mode_token2] = ACTIONS(4671), + [aux_sym_file_access_token2] = ACTIONS(4671), + [aux_sym_file_lock_token2] = ACTIONS(4671), + [aux_sym_print_statement_token1] = ACTIONS(4671), + [anon_sym_CARET] = ACTIONS(4673), + [anon_sym_SLASH] = ACTIONS(4673), + [anon_sym_BSLASH] = ACTIONS(4673), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4671), + [anon_sym_PLUS] = ACTIONS(4673), + [anon_sym_DASH] = ACTIONS(4671), + [anon_sym_AMP] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4671), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym_QMARK] = ACTIONS(4673), + [aux_sym_close_statement_token1] = ACTIONS(4671), + [aux_sym_put_statement_token1] = ACTIONS(4671), + [aux_sym_unlock_statement_token1] = ACTIONS(4671), + [aux_sym_seek_statement_token1] = ACTIONS(4671), + [sym_reset_statement] = ACTIONS(4671), + [aux_sym_raise_event_statement_token1] = ACTIONS(4671), + [sym_stop_statement] = ACTIONS(4671), + [sym_beep_statement] = ACTIONS(4671), + [aux_sym_unload_statement_token1] = ACTIONS(4671), + [aux_sym_def_type_statement_token1] = ACTIONS(4671), + [aux_sym_def_type_statement_token2] = ACTIONS(4671), + [aux_sym_def_type_statement_token3] = ACTIONS(4671), + [aux_sym_def_type_statement_token4] = ACTIONS(4671), + [aux_sym_def_type_statement_token5] = ACTIONS(4671), + [aux_sym_def_type_statement_token6] = ACTIONS(4671), + [aux_sym_def_type_statement_token7] = ACTIONS(4671), + [aux_sym_def_type_statement_token8] = ACTIONS(4671), + [aux_sym_def_type_statement_token9] = ACTIONS(4671), + [aux_sym_def_type_statement_token10] = ACTIONS(4671), + [aux_sym_def_type_statement_token11] = ACTIONS(4671), + [aux_sym_def_type_statement_token12] = ACTIONS(4671), + [aux_sym_def_type_statement_token13] = ACTIONS(4671), + [aux_sym_def_type_statement_token14] = ACTIONS(4671), + [aux_sym_call_statement_token1] = ACTIONS(4671), + [sym__ambiguous_call_statement] = ACTIONS(4671), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4671), + [aux_sym_type_of_expression_token1] = ACTIONS(4671), + [aux_sym_unary_expression_token1] = ACTIONS(4671), + [sym_string_literal] = ACTIONS(4673), + [sym_number_literal] = ACTIONS(4673), + [aux_sym_boolean_literal_token1] = ACTIONS(4671), + [aux_sym_boolean_literal_token2] = ACTIONS(4671), + [sym_nothing_literal] = ACTIONS(4671), + [sym_null_literal] = ACTIONS(4671), + [sym_empty_literal] = ACTIONS(4671), + [sym_date_literal] = ACTIONS(4673), + [anon_sym_POUND] = ACTIONS(4671), + }, + [STATE(869)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(870)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4709), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(871)] = { + [sym_argument_list] = STATE(2846), + [sym_comparison_operator] = STATE(8944), + [sym_identifier] = ACTIONS(4236), + [sym_newline] = ACTIONS(4238), + [anon_sym_COLON] = ACTIONS(4238), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4236), + [aux_sym_frm_property_statement_token1] = ACTIONS(4236), + [anon_sym_EQ] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(5615), + [anon_sym_BANG] = ACTIONS(5617), + [aux_sym__attribute_identifier_token1] = ACTIONS(4236), + [aux_sym_option_statement_token3] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4236), + [aux_sym_preprocessor_const_token1] = ACTIONS(4236), + [sym_static_modifier] = ACTIONS(4236), + [sym__dim_keyword] = ACTIONS(4236), + [sym__redim_keyword] = ACTIONS(4236), + [aux_sym_get_accessor_token1] = ACTIONS(4236), + [aux_sym_set_accessor_token1] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4238), + [aux_sym_const_declaration_token1] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(5619), + [aux_sym_as_type_clause_token2] = ACTIONS(4236), + [anon_sym_STAR] = ACTIONS(4248), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4236), + [aux_sym_visibility_token1] = ACTIONS(4236), + [aux_sym_visibility_token2] = ACTIONS(4236), + [aux_sym_elseif_fragment_token1] = ACTIONS(4236), + [aux_sym_else_fragment_token1] = ACTIONS(4236), + [aux_sym_select_statement_token1] = ACTIONS(4236), + [aux_sym_case_expression_token1] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_LT_GT] = ACTIONS(4240), + [aux_sym__for_header_token1] = ACTIONS(4236), + [aux_sym_do_statement_token1] = ACTIONS(4236), + [aux_sym_do_condition_token1] = ACTIONS(4236), + [aux_sym_with_statement_token1] = ACTIONS(4236), + [aux_sym_exit_statement_token1] = ACTIONS(4236), + [sym_end_statement] = ACTIONS(4238), + [aux_sym_on_goto_statement_token1] = ACTIONS(4236), + [aux_sym_on_goto_statement_token2] = ACTIONS(4236), + [aux_sym_on_error_statement_token2] = ACTIONS(4236), + [sym__ambiguous_redim_statement] = ACTIONS(4238), + [aux_sym_erase_statement_token1] = ACTIONS(4236), + [aux_sym_open_statement_token1] = ACTIONS(4236), + [aux_sym_file_mode_token2] = ACTIONS(4236), + [aux_sym_file_access_token2] = ACTIONS(4236), + [aux_sym_file_lock_token2] = ACTIONS(4236), + [aux_sym_print_statement_token1] = ACTIONS(4236), + [anon_sym_CARET] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_BSLASH] = ACTIONS(4248), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4252), + [anon_sym_SEMI] = ACTIONS(4238), + [anon_sym_QMARK] = ACTIONS(4238), + [aux_sym_close_statement_token1] = ACTIONS(4236), + [aux_sym_put_statement_token1] = ACTIONS(4236), + [aux_sym_unlock_statement_token1] = ACTIONS(4236), + [aux_sym_seek_statement_token1] = ACTIONS(4236), + [sym_reset_statement] = ACTIONS(4236), + [aux_sym_raise_event_statement_token1] = ACTIONS(4236), + [sym_stop_statement] = ACTIONS(4236), + [sym_beep_statement] = ACTIONS(4236), + [aux_sym_unload_statement_token1] = ACTIONS(4236), + [aux_sym_def_type_statement_token1] = ACTIONS(4236), + [aux_sym_def_type_statement_token2] = ACTIONS(4236), + [aux_sym_def_type_statement_token3] = ACTIONS(4236), + [aux_sym_def_type_statement_token4] = ACTIONS(4236), + [aux_sym_def_type_statement_token5] = ACTIONS(4236), + [aux_sym_def_type_statement_token6] = ACTIONS(4236), + [aux_sym_def_type_statement_token7] = ACTIONS(4236), + [aux_sym_def_type_statement_token8] = ACTIONS(4236), + [aux_sym_def_type_statement_token9] = ACTIONS(4236), + [aux_sym_def_type_statement_token10] = ACTIONS(4236), + [aux_sym_def_type_statement_token11] = ACTIONS(4236), + [aux_sym_def_type_statement_token12] = ACTIONS(4236), + [aux_sym_def_type_statement_token13] = ACTIONS(4236), + [aux_sym_def_type_statement_token14] = ACTIONS(4236), + [aux_sym_call_statement_token1] = ACTIONS(4236), + [sym__ambiguous_call_statement] = ACTIONS(4236), + [aux_sym_comparison_operator_token1] = ACTIONS(4250), + [aux_sym_addressof_expression_token1] = ACTIONS(4236), + [aux_sym_type_of_expression_token1] = ACTIONS(4236), + [aux_sym_unary_expression_token1] = ACTIONS(4236), + [sym_string_literal] = ACTIONS(4238), + [sym_number_literal] = ACTIONS(4238), + [aux_sym_boolean_literal_token1] = ACTIONS(4236), + [aux_sym_boolean_literal_token2] = ACTIONS(4236), + [sym_nothing_literal] = ACTIONS(4236), + [sym_null_literal] = ACTIONS(4236), + [sym_empty_literal] = ACTIONS(4236), + [sym_date_literal] = ACTIONS(4238), + [anon_sym_POUND] = ACTIONS(4236), + }, + [STATE(872)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5621), + [anon_sym_BANG] = ACTIONS(5623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [anon_sym_COLON_EQ] = ACTIONS(5625), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(873)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_declaration_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5627), + [aux_sym_enum_declaration_token1] = ACTIONS(5627), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5627), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5627), + [aux_sym_declare_function_statement_token1] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [aux_sym__property_get_header_token1] = ACTIONS(5627), + [aux_sym_event_declaration_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4467), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4471), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4473), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4475), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(874)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_array_bound_token1] = ACTIONS(4509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(875)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(876)] = { + [sym_argument_list] = STATE(1239), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5631), + [anon_sym_BANG] = ACTIONS(5633), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4757), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(877)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4647), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(878)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4412), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_declaration_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4410), + [aux_sym_enum_declaration_token1] = ACTIONS(4410), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4410), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4410), + [aux_sym_declare_function_statement_token1] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [aux_sym__property_get_header_token1] = ACTIONS(4410), + [aux_sym_event_declaration_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4412), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(5635), + [anon_sym_DASH] = ACTIONS(5638), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(879)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(881), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(5641), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(880)] = { + [sym_argument_list] = STATE(1059), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5643), + [anon_sym_BANG] = ACTIONS(5645), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5647), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_select_statement_token2] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(881)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(883), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_declaration_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4375), + [aux_sym_enum_declaration_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4375), + [aux_sym_declare_function_statement_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [aux_sym__property_get_header_token1] = ACTIONS(4375), + [aux_sym_event_declaration_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token3] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(882)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_array_bound_token1] = ACTIONS(4447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(883)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(883), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(5649), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(884)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_array_bound_token1] = ACTIONS(4477), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(885)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(887), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(5652), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(886)] = { + [sym_argument_list] = STATE(1250), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(5654), + [anon_sym_BANG] = ACTIONS(5656), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5658), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(887)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(891), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(888)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_array_bound_token1] = ACTIONS(4485), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(889)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_array_bound_token1] = ACTIONS(4441), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(890)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(5662), + [aux_sym_array_bound_token1] = ACTIONS(4451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(5662), + [anon_sym_BSLASH] = ACTIONS(5664), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5666), + [anon_sym_PLUS] = ACTIONS(5668), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5674), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5676), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5678), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5680), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(891)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(891), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(5684), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(892)] = { + [sym_argument_list] = STATE(1231), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5687), + [anon_sym_BANG] = ACTIONS(5689), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5691), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_statement_token2] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(893)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_array_bound_token1] = ACTIONS(4589), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(894)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(895)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(896)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5662), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(5662), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(897)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5662), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(5662), + [anon_sym_BSLASH] = ACTIONS(5664), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(898)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5662), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(5662), + [anon_sym_BSLASH] = ACTIONS(5664), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5666), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(899)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5662), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(5662), + [anon_sym_BSLASH] = ACTIONS(5664), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5666), + [anon_sym_PLUS] = ACTIONS(5668), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(900)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5662), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(5662), + [anon_sym_BSLASH] = ACTIONS(5664), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5666), + [anon_sym_PLUS] = ACTIONS(5668), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(901)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5662), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(5662), + [anon_sym_BSLASH] = ACTIONS(5664), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5666), + [anon_sym_PLUS] = ACTIONS(5668), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5674), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(902)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5662), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(5662), + [anon_sym_BSLASH] = ACTIONS(5664), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5666), + [anon_sym_PLUS] = ACTIONS(5668), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5674), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5676), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(903)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5662), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(5662), + [anon_sym_BSLASH] = ACTIONS(5664), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5666), + [anon_sym_PLUS] = ACTIONS(5668), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5674), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5676), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5678), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(904)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5662), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(5662), + [anon_sym_BSLASH] = ACTIONS(5664), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5666), + [anon_sym_PLUS] = ACTIONS(5668), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5674), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5676), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5678), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5680), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(905)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(906)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5526), + [anon_sym_BANG] = ACTIONS(5528), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(907)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(908)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(909)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(5662), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(5662), + [anon_sym_BSLASH] = ACTIONS(5664), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5666), + [anon_sym_PLUS] = ACTIONS(5668), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(910)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_array_bound_token1] = ACTIONS(4437), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(911)] = { + [sym_argument_list] = STATE(1185), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5621), + [anon_sym_BANG] = ACTIONS(5623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5693), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(912)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_declaration_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_enum_declaration_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4601), + [aux_sym_declare_function_statement_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [aux_sym__property_get_header_token1] = ACTIONS(4601), + [aux_sym_event_declaration_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_byval_modifier_token1] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(913)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_byval_modifier_token1] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(914)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_declaration_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_enum_declaration_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4609), + [aux_sym_declare_function_statement_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [aux_sym__property_get_header_token1] = ACTIONS(4609), + [aux_sym_event_declaration_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_byval_modifier_token1] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(915)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_array_bound_token1] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(916)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_byval_modifier_token1] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(917)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4006), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [anon_sym_COLON_EQ] = ACTIONS(5695), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(918)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(922), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(5697), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(919)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_array_bound_token1] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(920)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_array_bound_token1] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(921)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4647), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(922)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(925), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_declaration_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_enum_declaration_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4375), + [aux_sym_declare_function_statement_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [aux_sym__property_get_header_token1] = ACTIONS(4375), + [aux_sym_event_declaration_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(923)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(924)] = { + [sym_identifier] = ACTIONS(5699), + [sym_newline] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5701), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5699), + [aux_sym_frm_property_statement_token1] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5699), + [anon_sym_BANG] = ACTIONS(5701), + [aux_sym__attribute_identifier_token1] = ACTIONS(5699), + [aux_sym_option_statement_token3] = ACTIONS(5699), + [aux_sym_type_declaration_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5699), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5699), + [aux_sym_enum_declaration_token1] = ACTIONS(5699), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5699), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5699), + [aux_sym_declare_function_statement_token1] = ACTIONS(5699), + [aux_sym_preprocessor_const_token1] = ACTIONS(5699), + [aux_sym__property_get_header_token1] = ACTIONS(5699), + [aux_sym_event_declaration_token1] = ACTIONS(5699), + [sym_static_modifier] = ACTIONS(5699), + [sym__dim_keyword] = ACTIONS(5699), + [sym__redim_keyword] = ACTIONS(5699), + [aux_sym_get_accessor_token1] = ACTIONS(5699), + [aux_sym_set_accessor_token1] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5701), + [aux_sym_const_declaration_token1] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(5701), + [aux_sym_as_type_clause_token2] = ACTIONS(5699), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5699), + [aux_sym_visibility_token1] = ACTIONS(5699), + [aux_sym_visibility_token2] = ACTIONS(5699), + [aux_sym_elseif_fragment_token1] = ACTIONS(5699), + [aux_sym_else_fragment_token1] = ACTIONS(5699), + [aux_sym_select_statement_token1] = ACTIONS(5699), + [aux_sym__for_header_token1] = ACTIONS(5699), + [aux_sym_do_statement_token1] = ACTIONS(5699), + [aux_sym_do_condition_token1] = ACTIONS(5699), + [aux_sym_with_statement_token1] = ACTIONS(5699), + [aux_sym_exit_statement_token1] = ACTIONS(5699), + [sym_end_statement] = ACTIONS(5701), + [aux_sym_on_goto_statement_token1] = ACTIONS(5699), + [aux_sym_on_goto_statement_token2] = ACTIONS(5699), + [aux_sym_on_error_statement_token2] = ACTIONS(5699), + [sym__ambiguous_redim_statement] = ACTIONS(5701), + [aux_sym_erase_statement_token1] = ACTIONS(5699), + [aux_sym_open_statement_token1] = ACTIONS(5699), + [aux_sym_file_mode_token2] = ACTIONS(5699), + [aux_sym_file_access_token2] = ACTIONS(5699), + [aux_sym_file_lock_token2] = ACTIONS(5699), + [aux_sym_print_statement_token1] = ACTIONS(5699), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5703), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5705), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4471), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4473), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4475), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5701), + [aux_sym_close_statement_token1] = ACTIONS(5699), + [aux_sym_put_statement_token1] = ACTIONS(5699), + [aux_sym_unlock_statement_token1] = ACTIONS(5699), + [aux_sym_seek_statement_token1] = ACTIONS(5699), + [sym_reset_statement] = ACTIONS(5699), + [aux_sym_raise_event_statement_token1] = ACTIONS(5699), + [sym_stop_statement] = ACTIONS(5699), + [sym_beep_statement] = ACTIONS(5699), + [aux_sym_unload_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token2] = ACTIONS(5699), + [aux_sym_def_type_statement_token3] = ACTIONS(5699), + [aux_sym_def_type_statement_token4] = ACTIONS(5699), + [aux_sym_def_type_statement_token5] = ACTIONS(5699), + [aux_sym_def_type_statement_token6] = ACTIONS(5699), + [aux_sym_def_type_statement_token7] = ACTIONS(5699), + [aux_sym_def_type_statement_token8] = ACTIONS(5699), + [aux_sym_def_type_statement_token9] = ACTIONS(5699), + [aux_sym_def_type_statement_token10] = ACTIONS(5699), + [aux_sym_def_type_statement_token11] = ACTIONS(5699), + [aux_sym_def_type_statement_token12] = ACTIONS(5699), + [aux_sym_def_type_statement_token13] = ACTIONS(5699), + [aux_sym_def_type_statement_token14] = ACTIONS(5699), + [aux_sym_call_statement_token1] = ACTIONS(5699), + [sym__ambiguous_call_statement] = ACTIONS(5699), + [aux_sym_addressof_expression_token1] = ACTIONS(5699), + [aux_sym_type_of_expression_token1] = ACTIONS(5699), + [aux_sym_unary_expression_token1] = ACTIONS(5699), + [sym_string_literal] = ACTIONS(5701), + [sym_number_literal] = ACTIONS(5701), + [aux_sym_boolean_literal_token1] = ACTIONS(5699), + [aux_sym_boolean_literal_token2] = ACTIONS(5699), + [sym_nothing_literal] = ACTIONS(5699), + [sym_null_literal] = ACTIONS(5699), + [sym_empty_literal] = ACTIONS(5699), + [sym_date_literal] = ACTIONS(5701), + [anon_sym_POUND] = ACTIONS(5699), + }, + [STATE(925)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(925), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(5707), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(926)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4006), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_select_statement_token2] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [anon_sym_COLON_EQ] = ACTIONS(5710), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(927)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_array_bound_token1] = ACTIONS(4625), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(928)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(929)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5643), + [anon_sym_BANG] = ACTIONS(5645), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_select_statement_token2] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [anon_sym_COLON_EQ] = ACTIONS(5712), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(930)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4647), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(931)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(933), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(5714), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_select_statement_token2] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(932)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(933)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(936), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_select_statement_token2] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(934)] = { + [sym_identifier] = ACTIONS(5716), + [sym_newline] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5716), + [aux_sym_frm_property_statement_token1] = ACTIONS(5716), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_BANG] = ACTIONS(5718), + [aux_sym__attribute_identifier_token1] = ACTIONS(5716), + [aux_sym_option_statement_token3] = ACTIONS(5716), + [aux_sym_type_declaration_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5716), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5716), + [aux_sym_enum_declaration_token1] = ACTIONS(5716), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5716), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5716), + [aux_sym_declare_function_statement_token1] = ACTIONS(5716), + [aux_sym_preprocessor_const_token1] = ACTIONS(5716), + [aux_sym__property_get_header_token1] = ACTIONS(5716), + [aux_sym_event_declaration_token1] = ACTIONS(5716), + [sym_static_modifier] = ACTIONS(5716), + [sym__dim_keyword] = ACTIONS(5716), + [sym__redim_keyword] = ACTIONS(5716), + [aux_sym_get_accessor_token1] = ACTIONS(5716), + [aux_sym_set_accessor_token1] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5718), + [aux_sym_const_declaration_token1] = ACTIONS(5716), + [anon_sym_LPAREN] = ACTIONS(5718), + [aux_sym_as_type_clause_token2] = ACTIONS(5716), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5716), + [aux_sym_visibility_token1] = ACTIONS(5716), + [aux_sym_visibility_token2] = ACTIONS(5716), + [aux_sym_elseif_fragment_token1] = ACTIONS(5716), + [aux_sym_else_fragment_token1] = ACTIONS(5716), + [aux_sym_select_statement_token1] = ACTIONS(5716), + [aux_sym__for_header_token1] = ACTIONS(5716), + [aux_sym_do_statement_token1] = ACTIONS(5716), + [aux_sym_do_condition_token1] = ACTIONS(5716), + [aux_sym_with_statement_token1] = ACTIONS(5716), + [aux_sym_exit_statement_token1] = ACTIONS(5716), + [sym_end_statement] = ACTIONS(5718), + [aux_sym_on_goto_statement_token1] = ACTIONS(5716), + [aux_sym_on_goto_statement_token2] = ACTIONS(5716), + [aux_sym_on_error_statement_token2] = ACTIONS(5716), + [sym__ambiguous_redim_statement] = ACTIONS(5718), + [aux_sym_erase_statement_token1] = ACTIONS(5716), + [aux_sym_open_statement_token1] = ACTIONS(5716), + [aux_sym_file_mode_token2] = ACTIONS(5716), + [aux_sym_file_access_token2] = ACTIONS(5716), + [aux_sym_file_lock_token2] = ACTIONS(5716), + [aux_sym_print_statement_token1] = ACTIONS(5716), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4467), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4469), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4471), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4473), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4475), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [aux_sym_close_statement_token1] = ACTIONS(5716), + [aux_sym_put_statement_token1] = ACTIONS(5716), + [aux_sym_unlock_statement_token1] = ACTIONS(5716), + [aux_sym_seek_statement_token1] = ACTIONS(5716), + [sym_reset_statement] = ACTIONS(5716), + [aux_sym_raise_event_statement_token1] = ACTIONS(5716), + [sym_stop_statement] = ACTIONS(5716), + [sym_beep_statement] = ACTIONS(5716), + [aux_sym_unload_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token2] = ACTIONS(5716), + [aux_sym_def_type_statement_token3] = ACTIONS(5716), + [aux_sym_def_type_statement_token4] = ACTIONS(5716), + [aux_sym_def_type_statement_token5] = ACTIONS(5716), + [aux_sym_def_type_statement_token6] = ACTIONS(5716), + [aux_sym_def_type_statement_token7] = ACTIONS(5716), + [aux_sym_def_type_statement_token8] = ACTIONS(5716), + [aux_sym_def_type_statement_token9] = ACTIONS(5716), + [aux_sym_def_type_statement_token10] = ACTIONS(5716), + [aux_sym_def_type_statement_token11] = ACTIONS(5716), + [aux_sym_def_type_statement_token12] = ACTIONS(5716), + [aux_sym_def_type_statement_token13] = ACTIONS(5716), + [aux_sym_def_type_statement_token14] = ACTIONS(5716), + [aux_sym_call_statement_token1] = ACTIONS(5716), + [sym__ambiguous_call_statement] = ACTIONS(5716), + [aux_sym_addressof_expression_token1] = ACTIONS(5716), + [aux_sym_type_of_expression_token1] = ACTIONS(5716), + [aux_sym_unary_expression_token1] = ACTIONS(5716), + [sym_string_literal] = ACTIONS(5718), + [sym_number_literal] = ACTIONS(5718), + [aux_sym_boolean_literal_token1] = ACTIONS(5716), + [aux_sym_boolean_literal_token2] = ACTIONS(5716), + [sym_nothing_literal] = ACTIONS(5716), + [sym_null_literal] = ACTIONS(5716), + [sym_empty_literal] = ACTIONS(5716), + [sym_date_literal] = ACTIONS(5718), + [anon_sym_POUND] = ACTIONS(5716), + }, + [STATE(935)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token3] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(936)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(936), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(5720), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_select_statement_token2] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(937)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token3] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(938)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token3] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(939)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_array_bound_token1] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(940)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_array_bound_token1] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(941)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_array_bound_token1] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(942)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token3] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(5723), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(943)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(5725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token3] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(5723), + [anon_sym_SLASH] = ACTIONS(5725), + [anon_sym_BSLASH] = ACTIONS(5727), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5729), + [anon_sym_PLUS] = ACTIONS(5731), + [anon_sym_DASH] = ACTIONS(5733), + [anon_sym_AMP] = ACTIONS(5735), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5737), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5739), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5741), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5743), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5745), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(944)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_array_bound_token1] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(945)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(946)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(947)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token3] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(948)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(949)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(950)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(5725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(5723), + [anon_sym_SLASH] = ACTIONS(5725), + [anon_sym_BSLASH] = ACTIONS(5727), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5729), + [anon_sym_PLUS] = ACTIONS(5731), + [anon_sym_DASH] = ACTIONS(5733), + [anon_sym_AMP] = ACTIONS(5735), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(951)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5723), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(952)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5723), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(953)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5723), + [anon_sym_SLASH] = ACTIONS(5725), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(954)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5723), + [anon_sym_SLASH] = ACTIONS(5725), + [anon_sym_BSLASH] = ACTIONS(5727), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(955)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5723), + [anon_sym_SLASH] = ACTIONS(5725), + [anon_sym_BSLASH] = ACTIONS(5727), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5729), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(956)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5723), + [anon_sym_SLASH] = ACTIONS(5725), + [anon_sym_BSLASH] = ACTIONS(5727), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5729), + [anon_sym_PLUS] = ACTIONS(5731), + [anon_sym_DASH] = ACTIONS(5733), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(957)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5723), + [anon_sym_SLASH] = ACTIONS(5725), + [anon_sym_BSLASH] = ACTIONS(5727), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5729), + [anon_sym_PLUS] = ACTIONS(5731), + [anon_sym_DASH] = ACTIONS(5733), + [anon_sym_AMP] = ACTIONS(5735), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(958)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5723), + [anon_sym_SLASH] = ACTIONS(5725), + [anon_sym_BSLASH] = ACTIONS(5727), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5729), + [anon_sym_PLUS] = ACTIONS(5731), + [anon_sym_DASH] = ACTIONS(5733), + [anon_sym_AMP] = ACTIONS(5735), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5737), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(959)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5723), + [anon_sym_SLASH] = ACTIONS(5725), + [anon_sym_BSLASH] = ACTIONS(5727), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5729), + [anon_sym_PLUS] = ACTIONS(5731), + [anon_sym_DASH] = ACTIONS(5733), + [anon_sym_AMP] = ACTIONS(5735), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5737), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5739), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(960)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5723), + [anon_sym_SLASH] = ACTIONS(5725), + [anon_sym_BSLASH] = ACTIONS(5727), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5729), + [anon_sym_PLUS] = ACTIONS(5731), + [anon_sym_DASH] = ACTIONS(5733), + [anon_sym_AMP] = ACTIONS(5735), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5737), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5739), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5741), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(961)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5723), + [anon_sym_SLASH] = ACTIONS(5725), + [anon_sym_BSLASH] = ACTIONS(5727), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5729), + [anon_sym_PLUS] = ACTIONS(5731), + [anon_sym_DASH] = ACTIONS(5733), + [anon_sym_AMP] = ACTIONS(5735), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5737), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5739), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5741), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5743), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(962)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token3] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(963)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(964)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_array_bound_token1] = ACTIONS(4509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(965)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(966)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(969), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(5747), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(967)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(968)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5500), + [anon_sym_BANG] = ACTIONS(5502), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(969)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(970)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token3] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(971)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(5749), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(972)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(973)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token3] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(974)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(975)] = { + [sym_identifier] = ACTIONS(5752), + [sym_newline] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5752), + [aux_sym_frm_property_statement_token1] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5752), + [anon_sym_BANG] = ACTIONS(5754), + [aux_sym__attribute_identifier_token1] = ACTIONS(5752), + [aux_sym_option_statement_token3] = ACTIONS(5752), + [aux_sym_type_declaration_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5752), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5752), + [aux_sym_enum_declaration_token1] = ACTIONS(5752), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5752), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5752), + [aux_sym_declare_function_statement_token1] = ACTIONS(5752), + [aux_sym_preprocessor_const_token1] = ACTIONS(5752), + [aux_sym__property_get_header_token1] = ACTIONS(5752), + [aux_sym_event_declaration_token1] = ACTIONS(5752), + [sym_static_modifier] = ACTIONS(5752), + [sym__dim_keyword] = ACTIONS(5752), + [sym__redim_keyword] = ACTIONS(5752), + [aux_sym_get_accessor_token1] = ACTIONS(5752), + [aux_sym_set_accessor_token1] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5754), + [aux_sym_const_declaration_token1] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [aux_sym_as_type_clause_token2] = ACTIONS(5752), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5752), + [aux_sym_visibility_token1] = ACTIONS(5752), + [aux_sym_visibility_token2] = ACTIONS(5752), + [aux_sym_elseif_fragment_token1] = ACTIONS(5752), + [aux_sym_else_fragment_token1] = ACTIONS(5752), + [aux_sym_select_statement_token1] = ACTIONS(5752), + [aux_sym__for_header_token1] = ACTIONS(5752), + [aux_sym_do_statement_token1] = ACTIONS(5752), + [aux_sym_do_condition_token1] = ACTIONS(5752), + [aux_sym_with_statement_token1] = ACTIONS(5752), + [aux_sym_exit_statement_token1] = ACTIONS(5752), + [sym_end_statement] = ACTIONS(5754), + [aux_sym_on_goto_statement_token1] = ACTIONS(5752), + [aux_sym_on_goto_statement_token2] = ACTIONS(5752), + [aux_sym_on_error_statement_token2] = ACTIONS(5752), + [sym__ambiguous_redim_statement] = ACTIONS(5754), + [aux_sym_erase_statement_token1] = ACTIONS(5752), + [aux_sym_open_statement_token1] = ACTIONS(5752), + [aux_sym_file_mode_token2] = ACTIONS(5752), + [aux_sym_file_access_token2] = ACTIONS(5752), + [aux_sym_file_lock_token2] = ACTIONS(5752), + [aux_sym_print_statement_token1] = ACTIONS(5752), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5703), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5705), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4471), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4473), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4475), + [anon_sym_SEMI] = ACTIONS(5754), + [anon_sym_QMARK] = ACTIONS(5754), + [aux_sym_close_statement_token1] = ACTIONS(5752), + [aux_sym_put_statement_token1] = ACTIONS(5752), + [aux_sym_unlock_statement_token1] = ACTIONS(5752), + [aux_sym_seek_statement_token1] = ACTIONS(5752), + [sym_reset_statement] = ACTIONS(5752), + [aux_sym_raise_event_statement_token1] = ACTIONS(5752), + [sym_stop_statement] = ACTIONS(5752), + [sym_beep_statement] = ACTIONS(5752), + [aux_sym_unload_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token2] = ACTIONS(5752), + [aux_sym_def_type_statement_token3] = ACTIONS(5752), + [aux_sym_def_type_statement_token4] = ACTIONS(5752), + [aux_sym_def_type_statement_token5] = ACTIONS(5752), + [aux_sym_def_type_statement_token6] = ACTIONS(5752), + [aux_sym_def_type_statement_token7] = ACTIONS(5752), + [aux_sym_def_type_statement_token8] = ACTIONS(5752), + [aux_sym_def_type_statement_token9] = ACTIONS(5752), + [aux_sym_def_type_statement_token10] = ACTIONS(5752), + [aux_sym_def_type_statement_token11] = ACTIONS(5752), + [aux_sym_def_type_statement_token12] = ACTIONS(5752), + [aux_sym_def_type_statement_token13] = ACTIONS(5752), + [aux_sym_def_type_statement_token14] = ACTIONS(5752), + [aux_sym_call_statement_token1] = ACTIONS(5752), + [sym__ambiguous_call_statement] = ACTIONS(5752), + [aux_sym_addressof_expression_token1] = ACTIONS(5752), + [aux_sym_type_of_expression_token1] = ACTIONS(5752), + [aux_sym_unary_expression_token1] = ACTIONS(5752), + [sym_string_literal] = ACTIONS(5754), + [sym_number_literal] = ACTIONS(5754), + [aux_sym_boolean_literal_token1] = ACTIONS(5752), + [aux_sym_boolean_literal_token2] = ACTIONS(5752), + [sym_nothing_literal] = ACTIONS(5752), + [sym_null_literal] = ACTIONS(5752), + [sym_empty_literal] = ACTIONS(5752), + [sym_date_literal] = ACTIONS(5754), + [anon_sym_POUND] = ACTIONS(5752), + }, + [STATE(976)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token3] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(977)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token3] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(978)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token3] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(979)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token3] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(980)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(981)] = { + [sym_argument_list] = STATE(1449), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5756), + [anon_sym_BANG] = ACTIONS(5758), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5760), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(982)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token3] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(983)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token3] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(984)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token3] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(985)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token3] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(986)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(5662), + [aux_sym_array_bound_token1] = ACTIONS(4647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(5662), + [anon_sym_BSLASH] = ACTIONS(5664), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5666), + [anon_sym_PLUS] = ACTIONS(5668), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(987)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(5725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token3] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(5723), + [anon_sym_SLASH] = ACTIONS(5725), + [anon_sym_BSLASH] = ACTIONS(5727), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5729), + [anon_sym_PLUS] = ACTIONS(5731), + [anon_sym_DASH] = ACTIONS(5733), + [anon_sym_AMP] = ACTIONS(5735), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(988)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4006), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_statement_token2] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [anon_sym_COLON_EQ] = ACTIONS(5762), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(989)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5687), + [anon_sym_BANG] = ACTIONS(5689), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_statement_token2] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [anon_sym_COLON_EQ] = ACTIONS(5764), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(990)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_declaration_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5627), + [aux_sym_enum_declaration_token1] = ACTIONS(5627), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5627), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5627), + [aux_sym_declare_function_statement_token1] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [aux_sym__property_get_header_token1] = ACTIONS(5627), + [aux_sym_event_declaration_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4471), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4473), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4475), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(991)] = { + [sym_identifier] = ACTIONS(5766), + [sym_newline] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5766), + [aux_sym_frm_property_statement_token1] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5766), + [anon_sym_BANG] = ACTIONS(5768), + [aux_sym__attribute_identifier_token1] = ACTIONS(5766), + [aux_sym_option_statement_token3] = ACTIONS(5766), + [aux_sym_type_declaration_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5766), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5766), + [aux_sym_enum_declaration_token1] = ACTIONS(5766), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5766), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5766), + [aux_sym_declare_function_statement_token1] = ACTIONS(5766), + [aux_sym_preprocessor_const_token1] = ACTIONS(5766), + [aux_sym__property_get_header_token1] = ACTIONS(5766), + [aux_sym_event_declaration_token1] = ACTIONS(5766), + [sym_static_modifier] = ACTIONS(5766), + [sym__dim_keyword] = ACTIONS(5766), + [sym__redim_keyword] = ACTIONS(5766), + [aux_sym_get_accessor_token1] = ACTIONS(5766), + [aux_sym_set_accessor_token1] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [aux_sym_const_declaration_token1] = ACTIONS(5766), + [anon_sym_LPAREN] = ACTIONS(5768), + [aux_sym_as_type_clause_token2] = ACTIONS(5766), + [anon_sym_STAR] = ACTIONS(5768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5766), + [aux_sym_visibility_token1] = ACTIONS(5766), + [aux_sym_visibility_token2] = ACTIONS(5766), + [aux_sym_elseif_fragment_token1] = ACTIONS(5766), + [aux_sym_else_fragment_token1] = ACTIONS(5766), + [aux_sym_select_statement_token1] = ACTIONS(5766), + [aux_sym__for_header_token1] = ACTIONS(5766), + [aux_sym_do_statement_token1] = ACTIONS(5766), + [aux_sym_do_condition_token1] = ACTIONS(5766), + [aux_sym_with_statement_token1] = ACTIONS(5766), + [aux_sym_exit_statement_token1] = ACTIONS(5766), + [sym_end_statement] = ACTIONS(5768), + [aux_sym_on_goto_statement_token1] = ACTIONS(5766), + [aux_sym_on_goto_statement_token2] = ACTIONS(5766), + [aux_sym_on_error_statement_token2] = ACTIONS(5766), + [sym__ambiguous_redim_statement] = ACTIONS(5768), + [aux_sym_erase_statement_token1] = ACTIONS(5766), + [aux_sym_open_statement_token1] = ACTIONS(5766), + [aux_sym_file_mode_token2] = ACTIONS(5766), + [aux_sym_file_access_token2] = ACTIONS(5766), + [aux_sym_file_lock_token2] = ACTIONS(5766), + [aux_sym_print_statement_token1] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_BSLASH] = ACTIONS(5768), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5766), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5768), + [aux_sym_close_statement_token1] = ACTIONS(5766), + [aux_sym_put_statement_token1] = ACTIONS(5766), + [aux_sym_unlock_statement_token1] = ACTIONS(5766), + [aux_sym_seek_statement_token1] = ACTIONS(5766), + [sym_reset_statement] = ACTIONS(5766), + [aux_sym_raise_event_statement_token1] = ACTIONS(5766), + [sym_stop_statement] = ACTIONS(5766), + [sym_beep_statement] = ACTIONS(5766), + [aux_sym_unload_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token2] = ACTIONS(5766), + [aux_sym_def_type_statement_token3] = ACTIONS(5766), + [aux_sym_def_type_statement_token4] = ACTIONS(5766), + [aux_sym_def_type_statement_token5] = ACTIONS(5766), + [aux_sym_def_type_statement_token6] = ACTIONS(5766), + [aux_sym_def_type_statement_token7] = ACTIONS(5766), + [aux_sym_def_type_statement_token8] = ACTIONS(5766), + [aux_sym_def_type_statement_token9] = ACTIONS(5766), + [aux_sym_def_type_statement_token10] = ACTIONS(5766), + [aux_sym_def_type_statement_token11] = ACTIONS(5766), + [aux_sym_def_type_statement_token12] = ACTIONS(5766), + [aux_sym_def_type_statement_token13] = ACTIONS(5766), + [aux_sym_def_type_statement_token14] = ACTIONS(5766), + [aux_sym_call_statement_token1] = ACTIONS(5766), + [sym__ambiguous_call_statement] = ACTIONS(5766), + [aux_sym_addressof_expression_token1] = ACTIONS(5766), + [aux_sym_type_of_expression_token1] = ACTIONS(5766), + [aux_sym_unary_expression_token1] = ACTIONS(5766), + [sym_string_literal] = ACTIONS(5768), + [sym_number_literal] = ACTIONS(5768), + [aux_sym_boolean_literal_token1] = ACTIONS(5766), + [aux_sym_boolean_literal_token2] = ACTIONS(5766), + [sym_nothing_literal] = ACTIONS(5766), + [sym_null_literal] = ACTIONS(5766), + [sym_empty_literal] = ACTIONS(5766), + [sym_date_literal] = ACTIONS(5768), + [anon_sym_POUND] = ACTIONS(5766), + }, + [STATE(992)] = { + [sym_identifier] = ACTIONS(5766), + [sym_newline] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5766), + [aux_sym_frm_property_statement_token1] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5766), + [anon_sym_BANG] = ACTIONS(5768), + [aux_sym__attribute_identifier_token1] = ACTIONS(5766), + [aux_sym_option_statement_token3] = ACTIONS(5766), + [aux_sym_type_declaration_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5766), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5766), + [aux_sym_enum_declaration_token1] = ACTIONS(5766), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5766), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5766), + [aux_sym_declare_function_statement_token1] = ACTIONS(5766), + [aux_sym_preprocessor_const_token1] = ACTIONS(5766), + [aux_sym__property_get_header_token1] = ACTIONS(5766), + [aux_sym_event_declaration_token1] = ACTIONS(5766), + [sym_static_modifier] = ACTIONS(5766), + [sym__dim_keyword] = ACTIONS(5766), + [sym__redim_keyword] = ACTIONS(5766), + [aux_sym_get_accessor_token1] = ACTIONS(5766), + [aux_sym_set_accessor_token1] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [aux_sym_const_declaration_token1] = ACTIONS(5766), + [anon_sym_LPAREN] = ACTIONS(5768), + [aux_sym_as_type_clause_token2] = ACTIONS(5766), + [anon_sym_STAR] = ACTIONS(5768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5766), + [aux_sym_visibility_token1] = ACTIONS(5766), + [aux_sym_visibility_token2] = ACTIONS(5766), + [aux_sym_elseif_fragment_token1] = ACTIONS(5766), + [aux_sym_else_fragment_token1] = ACTIONS(5766), + [aux_sym_select_statement_token1] = ACTIONS(5766), + [aux_sym__for_header_token1] = ACTIONS(5766), + [aux_sym_do_statement_token1] = ACTIONS(5766), + [aux_sym_do_condition_token1] = ACTIONS(5766), + [aux_sym_with_statement_token1] = ACTIONS(5766), + [aux_sym_exit_statement_token1] = ACTIONS(5766), + [sym_end_statement] = ACTIONS(5768), + [aux_sym_on_goto_statement_token1] = ACTIONS(5766), + [aux_sym_on_goto_statement_token2] = ACTIONS(5766), + [aux_sym_on_error_statement_token2] = ACTIONS(5766), + [sym__ambiguous_redim_statement] = ACTIONS(5768), + [aux_sym_erase_statement_token1] = ACTIONS(5766), + [aux_sym_open_statement_token1] = ACTIONS(5766), + [aux_sym_file_mode_token2] = ACTIONS(5766), + [aux_sym_file_access_token2] = ACTIONS(5766), + [aux_sym_file_lock_token2] = ACTIONS(5766), + [aux_sym_print_statement_token1] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_BSLASH] = ACTIONS(5768), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5766), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5768), + [aux_sym_close_statement_token1] = ACTIONS(5766), + [aux_sym_put_statement_token1] = ACTIONS(5766), + [aux_sym_unlock_statement_token1] = ACTIONS(5766), + [aux_sym_seek_statement_token1] = ACTIONS(5766), + [sym_reset_statement] = ACTIONS(5766), + [aux_sym_raise_event_statement_token1] = ACTIONS(5766), + [sym_stop_statement] = ACTIONS(5766), + [sym_beep_statement] = ACTIONS(5766), + [aux_sym_unload_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token2] = ACTIONS(5766), + [aux_sym_def_type_statement_token3] = ACTIONS(5766), + [aux_sym_def_type_statement_token4] = ACTIONS(5766), + [aux_sym_def_type_statement_token5] = ACTIONS(5766), + [aux_sym_def_type_statement_token6] = ACTIONS(5766), + [aux_sym_def_type_statement_token7] = ACTIONS(5766), + [aux_sym_def_type_statement_token8] = ACTIONS(5766), + [aux_sym_def_type_statement_token9] = ACTIONS(5766), + [aux_sym_def_type_statement_token10] = ACTIONS(5766), + [aux_sym_def_type_statement_token11] = ACTIONS(5766), + [aux_sym_def_type_statement_token12] = ACTIONS(5766), + [aux_sym_def_type_statement_token13] = ACTIONS(5766), + [aux_sym_def_type_statement_token14] = ACTIONS(5766), + [aux_sym_call_statement_token1] = ACTIONS(5766), + [sym__ambiguous_call_statement] = ACTIONS(5766), + [aux_sym_addressof_expression_token1] = ACTIONS(5766), + [aux_sym_type_of_expression_token1] = ACTIONS(5766), + [aux_sym_unary_expression_token1] = ACTIONS(5766), + [sym_string_literal] = ACTIONS(5768), + [sym_number_literal] = ACTIONS(5768), + [aux_sym_boolean_literal_token1] = ACTIONS(5766), + [aux_sym_boolean_literal_token2] = ACTIONS(5766), + [sym_nothing_literal] = ACTIONS(5766), + [sym_null_literal] = ACTIONS(5766), + [sym_empty_literal] = ACTIONS(5766), + [sym_date_literal] = ACTIONS(5768), + [anon_sym_POUND] = ACTIONS(5766), + }, + [STATE(993)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(994), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(5770), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_while_statement_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(994)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(995), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_while_statement_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(995)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(995), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(5772), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_while_statement_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(996)] = { + [sym_identifier] = ACTIONS(5775), + [sym_newline] = ACTIONS(5777), + [anon_sym_COLON] = ACTIONS(5777), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5775), + [aux_sym_frm_property_statement_token1] = ACTIONS(5775), + [anon_sym_EQ] = ACTIONS(5777), + [anon_sym_DOT] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5777), + [aux_sym__attribute_identifier_token1] = ACTIONS(5775), + [aux_sym_option_statement_token3] = ACTIONS(5775), + [aux_sym_type_declaration_token1] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5775), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5775), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5775), + [aux_sym_enum_declaration_token1] = ACTIONS(5775), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5775), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5775), + [aux_sym_declare_function_statement_token1] = ACTIONS(5775), + [aux_sym_preprocessor_const_token1] = ACTIONS(5775), + [aux_sym__property_get_header_token1] = ACTIONS(5775), + [aux_sym_event_declaration_token1] = ACTIONS(5775), + [sym_static_modifier] = ACTIONS(5775), + [sym__dim_keyword] = ACTIONS(5775), + [sym__redim_keyword] = ACTIONS(5775), + [aux_sym_get_accessor_token1] = ACTIONS(5775), + [aux_sym_set_accessor_token1] = ACTIONS(5775), + [anon_sym_COMMA] = ACTIONS(5777), + [aux_sym_const_declaration_token1] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5777), + [aux_sym_as_type_clause_token2] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(5779), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5775), + [aux_sym_visibility_token1] = ACTIONS(5775), + [aux_sym_visibility_token2] = ACTIONS(5775), + [aux_sym_elseif_fragment_token1] = ACTIONS(5775), + [aux_sym_else_fragment_token1] = ACTIONS(5775), + [aux_sym_select_statement_token1] = ACTIONS(5775), + [aux_sym__for_header_token1] = ACTIONS(5775), + [aux_sym_do_statement_token1] = ACTIONS(5775), + [aux_sym_do_condition_token1] = ACTIONS(5775), + [aux_sym_with_statement_token1] = ACTIONS(5775), + [aux_sym_exit_statement_token1] = ACTIONS(5775), + [sym_end_statement] = ACTIONS(5777), + [aux_sym_on_goto_statement_token1] = ACTIONS(5775), + [aux_sym_on_goto_statement_token2] = ACTIONS(5775), + [aux_sym_on_error_statement_token2] = ACTIONS(5775), + [sym__ambiguous_redim_statement] = ACTIONS(5777), + [aux_sym_erase_statement_token1] = ACTIONS(5775), + [aux_sym_open_statement_token1] = ACTIONS(5775), + [aux_sym_file_mode_token2] = ACTIONS(5775), + [aux_sym_file_access_token2] = ACTIONS(5775), + [aux_sym_file_lock_token2] = ACTIONS(5775), + [aux_sym_print_statement_token1] = ACTIONS(5775), + [anon_sym_CARET] = ACTIONS(5781), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_BSLASH] = ACTIONS(5783), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5785), + [anon_sym_PLUS] = ACTIONS(5787), + [anon_sym_DASH] = ACTIONS(5789), + [anon_sym_AMP] = ACTIONS(5791), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5793), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5795), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5797), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5799), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5801), + [anon_sym_QMARK] = ACTIONS(5777), + [aux_sym_close_statement_token1] = ACTIONS(5775), + [aux_sym_put_statement_token1] = ACTIONS(5775), + [aux_sym_unlock_statement_token1] = ACTIONS(5775), + [aux_sym_seek_statement_token1] = ACTIONS(5775), + [sym_reset_statement] = ACTIONS(5775), + [aux_sym_raise_event_statement_token1] = ACTIONS(5775), + [sym_stop_statement] = ACTIONS(5775), + [sym_beep_statement] = ACTIONS(5775), + [aux_sym_unload_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token2] = ACTIONS(5775), + [aux_sym_def_type_statement_token3] = ACTIONS(5775), + [aux_sym_def_type_statement_token4] = ACTIONS(5775), + [aux_sym_def_type_statement_token5] = ACTIONS(5775), + [aux_sym_def_type_statement_token6] = ACTIONS(5775), + [aux_sym_def_type_statement_token7] = ACTIONS(5775), + [aux_sym_def_type_statement_token8] = ACTIONS(5775), + [aux_sym_def_type_statement_token9] = ACTIONS(5775), + [aux_sym_def_type_statement_token10] = ACTIONS(5775), + [aux_sym_def_type_statement_token11] = ACTIONS(5775), + [aux_sym_def_type_statement_token12] = ACTIONS(5775), + [aux_sym_def_type_statement_token13] = ACTIONS(5775), + [aux_sym_def_type_statement_token14] = ACTIONS(5775), + [aux_sym_call_statement_token1] = ACTIONS(5775), + [sym__ambiguous_call_statement] = ACTIONS(5775), + [aux_sym_addressof_expression_token1] = ACTIONS(5775), + [aux_sym_type_of_expression_token1] = ACTIONS(5775), + [aux_sym_unary_expression_token1] = ACTIONS(5775), + [sym_string_literal] = ACTIONS(5777), + [sym_number_literal] = ACTIONS(5777), + [aux_sym_boolean_literal_token1] = ACTIONS(5775), + [aux_sym_boolean_literal_token2] = ACTIONS(5775), + [sym_nothing_literal] = ACTIONS(5775), + [sym_null_literal] = ACTIONS(5775), + [sym_empty_literal] = ACTIONS(5775), + [sym_date_literal] = ACTIONS(5777), + [anon_sym_POUND] = ACTIONS(5775), + }, + [STATE(997)] = { + [sym_argument_list] = STATE(3188), + [sym_comparison_operator] = STATE(8599), + [sym_identifier] = ACTIONS(4236), + [sym_newline] = ACTIONS(4238), + [anon_sym_COLON] = ACTIONS(4238), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4236), + [aux_sym_frm_property_statement_token1] = ACTIONS(4236), + [anon_sym_EQ] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(5803), + [anon_sym_BANG] = ACTIONS(5805), + [aux_sym__attribute_identifier_token1] = ACTIONS(4236), + [aux_sym_option_statement_token3] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4236), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4236), + [aux_sym_preprocessor_const_token1] = ACTIONS(4236), + [sym_static_modifier] = ACTIONS(4236), + [sym__dim_keyword] = ACTIONS(4236), + [sym__redim_keyword] = ACTIONS(4236), + [aux_sym_get_accessor_token1] = ACTIONS(4236), + [aux_sym_set_accessor_token1] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4238), + [aux_sym_const_declaration_token1] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(5807), + [aux_sym_as_type_clause_token2] = ACTIONS(4236), + [anon_sym_STAR] = ACTIONS(4248), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4236), + [aux_sym_visibility_token1] = ACTIONS(4236), + [aux_sym_visibility_token2] = ACTIONS(4236), + [aux_sym_elseif_fragment_token1] = ACTIONS(4236), + [aux_sym_else_fragment_token1] = ACTIONS(4236), + [aux_sym_select_statement_token1] = ACTIONS(4236), + [aux_sym_case_expression_token1] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_LT_GT] = ACTIONS(4240), + [aux_sym__for_header_token1] = ACTIONS(4236), + [aux_sym_do_statement_token1] = ACTIONS(4236), + [aux_sym_do_condition_token1] = ACTIONS(4236), + [aux_sym_with_statement_token1] = ACTIONS(4236), + [aux_sym_exit_statement_token1] = ACTIONS(4236), + [sym_end_statement] = ACTIONS(4238), + [aux_sym_on_goto_statement_token1] = ACTIONS(4236), + [aux_sym_on_goto_statement_token2] = ACTIONS(4236), + [aux_sym_on_error_statement_token2] = ACTIONS(4236), + [sym__ambiguous_redim_statement] = ACTIONS(4238), + [aux_sym_erase_statement_token1] = ACTIONS(4236), + [aux_sym_open_statement_token1] = ACTIONS(4236), + [aux_sym_file_mode_token2] = ACTIONS(4236), + [aux_sym_file_access_token2] = ACTIONS(4236), + [aux_sym_file_lock_token2] = ACTIONS(4236), + [aux_sym_print_statement_token1] = ACTIONS(4236), + [anon_sym_CARET] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_BSLASH] = ACTIONS(4248), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_AMP] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4252), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4252), + [anon_sym_SEMI] = ACTIONS(4238), + [anon_sym_QMARK] = ACTIONS(4238), + [aux_sym_close_statement_token1] = ACTIONS(4236), + [aux_sym_put_statement_token1] = ACTIONS(4236), + [aux_sym_unlock_statement_token1] = ACTIONS(4236), + [aux_sym_seek_statement_token1] = ACTIONS(4236), + [sym_reset_statement] = ACTIONS(4236), + [aux_sym_raise_event_statement_token1] = ACTIONS(4236), + [sym_stop_statement] = ACTIONS(4236), + [sym_beep_statement] = ACTIONS(4236), + [aux_sym_unload_statement_token1] = ACTIONS(4236), + [aux_sym_def_type_statement_token1] = ACTIONS(4236), + [aux_sym_def_type_statement_token2] = ACTIONS(4236), + [aux_sym_def_type_statement_token3] = ACTIONS(4236), + [aux_sym_def_type_statement_token4] = ACTIONS(4236), + [aux_sym_def_type_statement_token5] = ACTIONS(4236), + [aux_sym_def_type_statement_token6] = ACTIONS(4236), + [aux_sym_def_type_statement_token7] = ACTIONS(4236), + [aux_sym_def_type_statement_token8] = ACTIONS(4236), + [aux_sym_def_type_statement_token9] = ACTIONS(4236), + [aux_sym_def_type_statement_token10] = ACTIONS(4236), + [aux_sym_def_type_statement_token11] = ACTIONS(4236), + [aux_sym_def_type_statement_token12] = ACTIONS(4236), + [aux_sym_def_type_statement_token13] = ACTIONS(4236), + [aux_sym_def_type_statement_token14] = ACTIONS(4236), + [aux_sym_call_statement_token1] = ACTIONS(4236), + [sym__ambiguous_call_statement] = ACTIONS(4236), + [aux_sym_comparison_operator_token1] = ACTIONS(4250), + [aux_sym_addressof_expression_token1] = ACTIONS(4236), + [aux_sym_type_of_expression_token1] = ACTIONS(4236), + [aux_sym_unary_expression_token1] = ACTIONS(4236), + [sym_string_literal] = ACTIONS(4238), + [sym_number_literal] = ACTIONS(4238), + [aux_sym_boolean_literal_token1] = ACTIONS(4236), + [aux_sym_boolean_literal_token2] = ACTIONS(4236), + [sym_nothing_literal] = ACTIONS(4236), + [sym_null_literal] = ACTIONS(4236), + [sym_empty_literal] = ACTIONS(4236), + [sym_date_literal] = ACTIONS(4238), + [anon_sym_POUND] = ACTIONS(4236), + }, + [STATE(998)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(999)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1000)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_declaration_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4441), + [aux_sym_enum_declaration_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4441), + [aux_sym_declare_function_statement_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [aux_sym__property_get_header_token1] = ACTIONS(4441), + [aux_sym_event_declaration_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1001)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_declaration_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4451), + [aux_sym_enum_declaration_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4451), + [aux_sym_declare_function_statement_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [aux_sym__property_get_header_token1] = ACTIONS(4451), + [aux_sym_event_declaration_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1002)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1003)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1004)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1005)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4006), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [anon_sym_COLON_EQ] = ACTIONS(5813), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1006)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5756), + [anon_sym_BANG] = ACTIONS(5758), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [anon_sym_COLON_EQ] = ACTIONS(5815), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1007)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1008)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1009)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1010)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1011)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1012)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1013)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1014)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1015)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1016)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1017)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1018)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1019)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1020)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1021)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1022)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1023)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1024)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1025), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(5817), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1025)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1028), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_declaration_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4375), + [aux_sym_enum_declaration_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4375), + [aux_sym_declare_function_statement_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [aux_sym__property_get_header_token1] = ACTIONS(4375), + [aux_sym_event_declaration_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_array_bound_token1] = ACTIONS(4375), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(1026)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1032), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(5819), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_statement_token2] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1027)] = { + [sym_identifier] = ACTIONS(5821), + [sym_newline] = ACTIONS(5823), + [anon_sym_COLON] = ACTIONS(5823), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5821), + [aux_sym_frm_property_statement_token1] = ACTIONS(5821), + [anon_sym_DOT] = ACTIONS(5821), + [anon_sym_BANG] = ACTIONS(5823), + [aux_sym__attribute_identifier_token1] = ACTIONS(5821), + [aux_sym_option_statement_token3] = ACTIONS(5821), + [aux_sym_type_declaration_token1] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5821), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5821), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5821), + [aux_sym_enum_declaration_token1] = ACTIONS(5821), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5821), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5821), + [aux_sym_declare_function_statement_token1] = ACTIONS(5821), + [aux_sym_preprocessor_const_token1] = ACTIONS(5821), + [aux_sym__property_get_header_token1] = ACTIONS(5821), + [aux_sym_event_declaration_token1] = ACTIONS(5821), + [sym_static_modifier] = ACTIONS(5821), + [sym__dim_keyword] = ACTIONS(5821), + [sym__redim_keyword] = ACTIONS(5821), + [aux_sym_get_accessor_token1] = ACTIONS(5821), + [aux_sym_set_accessor_token1] = ACTIONS(5821), + [anon_sym_COMMA] = ACTIONS(5823), + [aux_sym_const_declaration_token1] = ACTIONS(5821), + [anon_sym_LPAREN] = ACTIONS(5823), + [aux_sym_as_type_clause_token2] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5821), + [aux_sym_visibility_token1] = ACTIONS(5821), + [aux_sym_visibility_token2] = ACTIONS(5821), + [aux_sym_elseif_fragment_token1] = ACTIONS(5821), + [aux_sym_else_fragment_token1] = ACTIONS(5821), + [aux_sym_select_statement_token1] = ACTIONS(5821), + [aux_sym__for_header_token1] = ACTIONS(5821), + [aux_sym_do_statement_token1] = ACTIONS(5821), + [aux_sym_do_condition_token1] = ACTIONS(5821), + [aux_sym_with_statement_token1] = ACTIONS(5821), + [aux_sym_exit_statement_token1] = ACTIONS(5821), + [sym_end_statement] = ACTIONS(5823), + [aux_sym_on_goto_statement_token1] = ACTIONS(5821), + [aux_sym_on_goto_statement_token2] = ACTIONS(5821), + [aux_sym_on_error_statement_token2] = ACTIONS(5821), + [sym__ambiguous_redim_statement] = ACTIONS(5823), + [aux_sym_erase_statement_token1] = ACTIONS(5821), + [aux_sym_open_statement_token1] = ACTIONS(5821), + [aux_sym_file_mode_token2] = ACTIONS(5821), + [aux_sym_file_access_token2] = ACTIONS(5821), + [aux_sym_file_lock_token2] = ACTIONS(5821), + [aux_sym_print_statement_token1] = ACTIONS(5821), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(5823), + [anon_sym_QMARK] = ACTIONS(5823), + [aux_sym_close_statement_token1] = ACTIONS(5821), + [aux_sym_put_statement_token1] = ACTIONS(5821), + [aux_sym_unlock_statement_token1] = ACTIONS(5821), + [aux_sym_seek_statement_token1] = ACTIONS(5821), + [sym_reset_statement] = ACTIONS(5821), + [aux_sym_raise_event_statement_token1] = ACTIONS(5821), + [sym_stop_statement] = ACTIONS(5821), + [sym_beep_statement] = ACTIONS(5821), + [aux_sym_unload_statement_token1] = ACTIONS(5821), + [aux_sym_def_type_statement_token1] = ACTIONS(5821), + [aux_sym_def_type_statement_token2] = ACTIONS(5821), + [aux_sym_def_type_statement_token3] = ACTIONS(5821), + [aux_sym_def_type_statement_token4] = ACTIONS(5821), + [aux_sym_def_type_statement_token5] = ACTIONS(5821), + [aux_sym_def_type_statement_token6] = ACTIONS(5821), + [aux_sym_def_type_statement_token7] = ACTIONS(5821), + [aux_sym_def_type_statement_token8] = ACTIONS(5821), + [aux_sym_def_type_statement_token9] = ACTIONS(5821), + [aux_sym_def_type_statement_token10] = ACTIONS(5821), + [aux_sym_def_type_statement_token11] = ACTIONS(5821), + [aux_sym_def_type_statement_token12] = ACTIONS(5821), + [aux_sym_def_type_statement_token13] = ACTIONS(5821), + [aux_sym_def_type_statement_token14] = ACTIONS(5821), + [aux_sym_call_statement_token1] = ACTIONS(5821), + [sym__ambiguous_call_statement] = ACTIONS(5821), + [aux_sym_addressof_expression_token1] = ACTIONS(5821), + [aux_sym_type_of_expression_token1] = ACTIONS(5821), + [aux_sym_unary_expression_token1] = ACTIONS(5821), + [sym_string_literal] = ACTIONS(5823), + [sym_number_literal] = ACTIONS(5823), + [aux_sym_boolean_literal_token1] = ACTIONS(5821), + [aux_sym_boolean_literal_token2] = ACTIONS(5821), + [sym_nothing_literal] = ACTIONS(5821), + [sym_null_literal] = ACTIONS(5821), + [sym_empty_literal] = ACTIONS(5821), + [sym_date_literal] = ACTIONS(5823), + [anon_sym_POUND] = ACTIONS(5821), + }, + [STATE(1028)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1028), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(5825), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1029)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4006), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_while_statement_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [anon_sym_COLON_EQ] = ACTIONS(5828), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1030)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5830), + [anon_sym_BANG] = ACTIONS(5832), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_while_statement_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [anon_sym_COLON_EQ] = ACTIONS(5834), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1031)] = { + [sym_argument_list] = STATE(1409), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5830), + [anon_sym_BANG] = ACTIONS(5832), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5836), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_while_statement_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1032)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1034), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_statement_token2] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(1033)] = { + [sym_argument_list] = STATE(794), + [sym_identifier] = ACTIONS(4030), + [sym_newline] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4030), + [aux_sym_frm_property_statement_token1] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(5560), + [anon_sym_BANG] = ACTIONS(5434), + [aux_sym__attribute_identifier_token1] = ACTIONS(4030), + [aux_sym_option_statement_token3] = ACTIONS(4030), + [aux_sym_type_declaration_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4030), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4030), + [aux_sym_enum_declaration_token1] = ACTIONS(4030), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4030), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4030), + [aux_sym_declare_function_statement_token1] = ACTIONS(4030), + [aux_sym_preprocessor_const_token1] = ACTIONS(4030), + [aux_sym__property_get_header_token1] = ACTIONS(4030), + [aux_sym_event_declaration_token1] = ACTIONS(4030), + [sym_static_modifier] = ACTIONS(4030), + [sym__dim_keyword] = ACTIONS(4030), + [sym__redim_keyword] = ACTIONS(4030), + [aux_sym_get_accessor_token1] = ACTIONS(4030), + [aux_sym_set_accessor_token1] = ACTIONS(4030), + [aux_sym_const_declaration_token1] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4246), + [aux_sym_as_type_clause_token2] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4030), + [aux_sym_visibility_token1] = ACTIONS(4030), + [aux_sym_visibility_token2] = ACTIONS(4030), + [aux_sym_elseif_fragment_token1] = ACTIONS(4030), + [aux_sym_else_fragment_token1] = ACTIONS(4030), + [aux_sym_select_statement_token1] = ACTIONS(4030), + [aux_sym__for_header_token1] = ACTIONS(4030), + [aux_sym_do_statement_token1] = ACTIONS(4030), + [aux_sym_do_condition_token1] = ACTIONS(4030), + [aux_sym_with_statement_token1] = ACTIONS(4030), + [aux_sym_exit_statement_token1] = ACTIONS(4030), + [sym_end_statement] = ACTIONS(4028), + [aux_sym_on_goto_statement_token1] = ACTIONS(4030), + [aux_sym_on_goto_statement_token2] = ACTIONS(4030), + [aux_sym_on_error_statement_token2] = ACTIONS(4030), + [sym__ambiguous_redim_statement] = ACTIONS(4028), + [aux_sym_erase_statement_token1] = ACTIONS(4030), + [aux_sym_open_statement_token1] = ACTIONS(4030), + [aux_sym_file_mode_token2] = ACTIONS(4030), + [aux_sym_file_access_token2] = ACTIONS(4030), + [aux_sym_file_lock_token2] = ACTIONS(4030), + [aux_sym_print_statement_token1] = ACTIONS(4030), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4028), + [aux_sym_close_statement_token1] = ACTIONS(4030), + [aux_sym_put_statement_token1] = ACTIONS(4030), + [aux_sym_unlock_statement_token1] = ACTIONS(4030), + [aux_sym_seek_statement_token1] = ACTIONS(4030), + [sym_reset_statement] = ACTIONS(4030), + [aux_sym_raise_event_statement_token1] = ACTIONS(4030), + [sym_stop_statement] = ACTIONS(4030), + [sym_beep_statement] = ACTIONS(4030), + [aux_sym_unload_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token2] = ACTIONS(4030), + [aux_sym_def_type_statement_token3] = ACTIONS(4030), + [aux_sym_def_type_statement_token4] = ACTIONS(4030), + [aux_sym_def_type_statement_token5] = ACTIONS(4030), + [aux_sym_def_type_statement_token6] = ACTIONS(4030), + [aux_sym_def_type_statement_token7] = ACTIONS(4030), + [aux_sym_def_type_statement_token8] = ACTIONS(4030), + [aux_sym_def_type_statement_token9] = ACTIONS(4030), + [aux_sym_def_type_statement_token10] = ACTIONS(4030), + [aux_sym_def_type_statement_token11] = ACTIONS(4030), + [aux_sym_def_type_statement_token12] = ACTIONS(4030), + [aux_sym_def_type_statement_token13] = ACTIONS(4030), + [aux_sym_def_type_statement_token14] = ACTIONS(4030), + [aux_sym_call_statement_token1] = ACTIONS(4030), + [sym__ambiguous_call_statement] = ACTIONS(4030), + [aux_sym_addressof_expression_token1] = ACTIONS(4030), + [aux_sym_type_of_expression_token1] = ACTIONS(4030), + [aux_sym_unary_expression_token1] = ACTIONS(4030), + [sym_string_literal] = ACTIONS(4028), + [sym_number_literal] = ACTIONS(4028), + [aux_sym_boolean_literal_token1] = ACTIONS(4030), + [aux_sym_boolean_literal_token2] = ACTIONS(4030), + [sym_nothing_literal] = ACTIONS(4030), + [sym_null_literal] = ACTIONS(4030), + [sym_empty_literal] = ACTIONS(4030), + [sym_date_literal] = ACTIONS(4028), + [anon_sym_POUND] = ACTIONS(4030), + }, + [STATE(1034)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1034), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(5838), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_statement_token2] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1035)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_byval_modifier_token1] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(5440), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym__for_header_token2] = ACTIONS(5442), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1036)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_declaration_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4441), + [aux_sym_enum_declaration_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4441), + [aux_sym_declare_function_statement_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [aux_sym__property_get_header_token1] = ACTIONS(4441), + [aux_sym_event_declaration_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(5781), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1037)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_declaration_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4451), + [aux_sym_enum_declaration_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4451), + [aux_sym_declare_function_statement_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [aux_sym__property_get_header_token1] = ACTIONS(4451), + [aux_sym_event_declaration_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(5779), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(5781), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_BSLASH] = ACTIONS(5783), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5785), + [anon_sym_PLUS] = ACTIONS(5787), + [anon_sym_DASH] = ACTIONS(5789), + [anon_sym_AMP] = ACTIONS(5791), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5793), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5795), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5797), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5799), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5801), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1038)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5781), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1039)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5781), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1040)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5779), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5781), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1041)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5779), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5781), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_BSLASH] = ACTIONS(5783), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1042)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5779), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5781), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_BSLASH] = ACTIONS(5783), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5785), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1043)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5779), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5781), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_BSLASH] = ACTIONS(5783), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5785), + [anon_sym_PLUS] = ACTIONS(5787), + [anon_sym_DASH] = ACTIONS(5789), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1044)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5779), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5781), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_BSLASH] = ACTIONS(5783), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5785), + [anon_sym_PLUS] = ACTIONS(5787), + [anon_sym_DASH] = ACTIONS(5789), + [anon_sym_AMP] = ACTIONS(5791), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1045)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5779), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5781), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_BSLASH] = ACTIONS(5783), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5785), + [anon_sym_PLUS] = ACTIONS(5787), + [anon_sym_DASH] = ACTIONS(5789), + [anon_sym_AMP] = ACTIONS(5791), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5793), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1046)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5779), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5781), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_BSLASH] = ACTIONS(5783), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5785), + [anon_sym_PLUS] = ACTIONS(5787), + [anon_sym_DASH] = ACTIONS(5789), + [anon_sym_AMP] = ACTIONS(5791), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5793), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5795), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1047)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5779), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5781), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_BSLASH] = ACTIONS(5783), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5785), + [anon_sym_PLUS] = ACTIONS(5787), + [anon_sym_DASH] = ACTIONS(5789), + [anon_sym_AMP] = ACTIONS(5791), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5793), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5795), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5797), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1048)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5779), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5781), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_BSLASH] = ACTIONS(5783), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5785), + [anon_sym_PLUS] = ACTIONS(5787), + [anon_sym_DASH] = ACTIONS(5789), + [anon_sym_AMP] = ACTIONS(5791), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5793), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5795), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5797), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5799), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1049)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4647), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(5779), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(5781), + [anon_sym_SLASH] = ACTIONS(5779), + [anon_sym_BSLASH] = ACTIONS(5783), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5785), + [anon_sym_PLUS] = ACTIONS(5787), + [anon_sym_DASH] = ACTIONS(5789), + [anon_sym_AMP] = ACTIONS(5791), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1050)] = { + [sym_identifier] = ACTIONS(5841), + [sym_newline] = ACTIONS(5843), + [anon_sym_COLON] = ACTIONS(5843), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5841), + [aux_sym_frm_property_statement_token1] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5843), + [aux_sym__attribute_identifier_token1] = ACTIONS(5841), + [aux_sym_option_statement_token3] = ACTIONS(5841), + [aux_sym_type_declaration_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5841), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5841), + [aux_sym_enum_declaration_token1] = ACTIONS(5841), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5841), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5841), + [aux_sym_declare_function_statement_token1] = ACTIONS(5841), + [aux_sym_preprocessor_const_token1] = ACTIONS(5841), + [aux_sym__property_get_header_token1] = ACTIONS(5841), + [aux_sym_event_declaration_token1] = ACTIONS(5841), + [sym_static_modifier] = ACTIONS(5841), + [sym__dim_keyword] = ACTIONS(5841), + [sym__redim_keyword] = ACTIONS(5841), + [aux_sym_get_accessor_token1] = ACTIONS(5841), + [aux_sym_set_accessor_token1] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(5843), + [aux_sym_const_declaration_token1] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5843), + [aux_sym_as_type_clause_token2] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5841), + [aux_sym_visibility_token1] = ACTIONS(5841), + [aux_sym_visibility_token2] = ACTIONS(5841), + [aux_sym_elseif_fragment_token1] = ACTIONS(5841), + [aux_sym_else_fragment_token1] = ACTIONS(5841), + [aux_sym_select_statement_token1] = ACTIONS(5841), + [aux_sym__for_header_token1] = ACTIONS(5841), + [aux_sym_do_statement_token1] = ACTIONS(5841), + [aux_sym_do_condition_token1] = ACTIONS(5841), + [aux_sym_with_statement_token1] = ACTIONS(5841), + [aux_sym_exit_statement_token1] = ACTIONS(5841), + [sym_end_statement] = ACTIONS(5843), + [aux_sym_on_goto_statement_token1] = ACTIONS(5841), + [aux_sym_on_goto_statement_token2] = ACTIONS(5841), + [aux_sym_on_error_statement_token2] = ACTIONS(5841), + [sym__ambiguous_redim_statement] = ACTIONS(5843), + [aux_sym_erase_statement_token1] = ACTIONS(5841), + [aux_sym_open_statement_token1] = ACTIONS(5841), + [aux_sym_file_mode_token2] = ACTIONS(5841), + [aux_sym_file_access_token2] = ACTIONS(5841), + [aux_sym_file_lock_token2] = ACTIONS(5841), + [aux_sym_print_statement_token1] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_SEMI] = ACTIONS(5843), + [anon_sym_QMARK] = ACTIONS(5843), + [aux_sym_close_statement_token1] = ACTIONS(5841), + [aux_sym_put_statement_token1] = ACTIONS(5841), + [aux_sym_unlock_statement_token1] = ACTIONS(5841), + [aux_sym_seek_statement_token1] = ACTIONS(5841), + [sym_reset_statement] = ACTIONS(5841), + [aux_sym_raise_event_statement_token1] = ACTIONS(5841), + [sym_stop_statement] = ACTIONS(5841), + [sym_beep_statement] = ACTIONS(5841), + [aux_sym_unload_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token2] = ACTIONS(5841), + [aux_sym_def_type_statement_token3] = ACTIONS(5841), + [aux_sym_def_type_statement_token4] = ACTIONS(5841), + [aux_sym_def_type_statement_token5] = ACTIONS(5841), + [aux_sym_def_type_statement_token6] = ACTIONS(5841), + [aux_sym_def_type_statement_token7] = ACTIONS(5841), + [aux_sym_def_type_statement_token8] = ACTIONS(5841), + [aux_sym_def_type_statement_token9] = ACTIONS(5841), + [aux_sym_def_type_statement_token10] = ACTIONS(5841), + [aux_sym_def_type_statement_token11] = ACTIONS(5841), + [aux_sym_def_type_statement_token12] = ACTIONS(5841), + [aux_sym_def_type_statement_token13] = ACTIONS(5841), + [aux_sym_def_type_statement_token14] = ACTIONS(5841), + [aux_sym_call_statement_token1] = ACTIONS(5841), + [sym__ambiguous_call_statement] = ACTIONS(5841), + [aux_sym_addressof_expression_token1] = ACTIONS(5841), + [aux_sym_type_of_expression_token1] = ACTIONS(5841), + [aux_sym_unary_expression_token1] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5843), + [sym_number_literal] = ACTIONS(5843), + [aux_sym_boolean_literal_token1] = ACTIONS(5841), + [aux_sym_boolean_literal_token2] = ACTIONS(5841), + [sym_nothing_literal] = ACTIONS(5841), + [sym_null_literal] = ACTIONS(5841), + [sym_empty_literal] = ACTIONS(5841), + [sym_date_literal] = ACTIONS(5843), + [anon_sym_POUND] = ACTIONS(5841), + }, + [STATE(1051)] = { + [sym_argument_list] = STATE(1252), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(5845), + [anon_sym_BANG] = ACTIONS(5847), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5849), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1052)] = { + [sym_identifier] = ACTIONS(5851), + [sym_newline] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5853), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5851), + [aux_sym_frm_property_statement_token1] = ACTIONS(5851), + [anon_sym_DOT] = ACTIONS(5855), + [anon_sym_BANG] = ACTIONS(5857), + [aux_sym__attribute_identifier_token1] = ACTIONS(5851), + [aux_sym_option_statement_token3] = ACTIONS(5851), + [aux_sym_type_declaration_token1] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5851), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5851), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5851), + [aux_sym_enum_declaration_token1] = ACTIONS(5851), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5851), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5851), + [aux_sym_declare_function_statement_token1] = ACTIONS(5851), + [aux_sym_preprocessor_const_token1] = ACTIONS(5851), + [aux_sym__property_get_header_token1] = ACTIONS(5851), + [aux_sym_event_declaration_token1] = ACTIONS(5851), + [sym_static_modifier] = ACTIONS(5851), + [sym__dim_keyword] = ACTIONS(5851), + [sym__redim_keyword] = ACTIONS(5851), + [aux_sym_get_accessor_token1] = ACTIONS(5851), + [aux_sym_set_accessor_token1] = ACTIONS(5851), + [anon_sym_COMMA] = ACTIONS(5853), + [aux_sym_const_declaration_token1] = ACTIONS(5851), + [anon_sym_LPAREN] = ACTIONS(5853), + [aux_sym_as_type_clause_token2] = ACTIONS(5851), + [anon_sym_STAR] = ACTIONS(5859), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5851), + [aux_sym_visibility_token1] = ACTIONS(5851), + [aux_sym_visibility_token2] = ACTIONS(5851), + [aux_sym_elseif_fragment_token1] = ACTIONS(5851), + [aux_sym_else_fragment_token1] = ACTIONS(5851), + [aux_sym_select_statement_token1] = ACTIONS(5851), + [aux_sym__for_header_token1] = ACTIONS(5851), + [aux_sym_do_statement_token1] = ACTIONS(5851), + [aux_sym_do_condition_token1] = ACTIONS(5851), + [aux_sym_with_statement_token1] = ACTIONS(5851), + [aux_sym_exit_statement_token1] = ACTIONS(5851), + [sym_end_statement] = ACTIONS(5853), + [aux_sym_on_goto_statement_token1] = ACTIONS(5851), + [aux_sym_on_goto_statement_token2] = ACTIONS(5851), + [aux_sym_on_error_statement_token2] = ACTIONS(5851), + [sym__ambiguous_redim_statement] = ACTIONS(5853), + [aux_sym_erase_statement_token1] = ACTIONS(5851), + [aux_sym_open_statement_token1] = ACTIONS(5851), + [aux_sym_file_mode_token2] = ACTIONS(5851), + [aux_sym_file_access_token2] = ACTIONS(5851), + [aux_sym_file_lock_token2] = ACTIONS(5851), + [aux_sym_print_statement_token1] = ACTIONS(5851), + [anon_sym_CARET] = ACTIONS(5859), + [anon_sym_SLASH] = ACTIONS(5859), + [anon_sym_BSLASH] = ACTIONS(5859), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5861), + [anon_sym_PLUS] = ACTIONS(5863), + [anon_sym_DASH] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5861), + [anon_sym_SEMI] = ACTIONS(5853), + [anon_sym_QMARK] = ACTIONS(5853), + [aux_sym_close_statement_token1] = ACTIONS(5851), + [aux_sym_put_statement_token1] = ACTIONS(5851), + [aux_sym_unlock_statement_token1] = ACTIONS(5851), + [aux_sym_seek_statement_token1] = ACTIONS(5851), + [sym_reset_statement] = ACTIONS(5851), + [aux_sym_raise_event_statement_token1] = ACTIONS(5851), + [sym_stop_statement] = ACTIONS(5851), + [sym_beep_statement] = ACTIONS(5851), + [aux_sym_unload_statement_token1] = ACTIONS(5851), + [aux_sym_def_type_statement_token1] = ACTIONS(5851), + [aux_sym_def_type_statement_token2] = ACTIONS(5851), + [aux_sym_def_type_statement_token3] = ACTIONS(5851), + [aux_sym_def_type_statement_token4] = ACTIONS(5851), + [aux_sym_def_type_statement_token5] = ACTIONS(5851), + [aux_sym_def_type_statement_token6] = ACTIONS(5851), + [aux_sym_def_type_statement_token7] = ACTIONS(5851), + [aux_sym_def_type_statement_token8] = ACTIONS(5851), + [aux_sym_def_type_statement_token9] = ACTIONS(5851), + [aux_sym_def_type_statement_token10] = ACTIONS(5851), + [aux_sym_def_type_statement_token11] = ACTIONS(5851), + [aux_sym_def_type_statement_token12] = ACTIONS(5851), + [aux_sym_def_type_statement_token13] = ACTIONS(5851), + [aux_sym_def_type_statement_token14] = ACTIONS(5851), + [aux_sym_call_statement_token1] = ACTIONS(5851), + [sym__ambiguous_call_statement] = ACTIONS(5851), + [aux_sym_addressof_expression_token1] = ACTIONS(5851), + [aux_sym_type_of_expression_token1] = ACTIONS(5851), + [aux_sym_unary_expression_token1] = ACTIONS(5851), + [sym_string_literal] = ACTIONS(5853), + [sym_number_literal] = ACTIONS(5853), + [aux_sym_boolean_literal_token1] = ACTIONS(5851), + [aux_sym_boolean_literal_token2] = ACTIONS(5851), + [sym_nothing_literal] = ACTIONS(5851), + [sym_null_literal] = ACTIONS(5851), + [sym_empty_literal] = ACTIONS(5851), + [sym_date_literal] = ACTIONS(5853), + [anon_sym_POUND] = ACTIONS(5851), + }, + [STATE(1053)] = { + [sym_identifier] = ACTIONS(5869), + [sym_newline] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5869), + [aux_sym_frm_property_statement_token1] = ACTIONS(5869), + [anon_sym_DOT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [aux_sym__attribute_identifier_token1] = ACTIONS(5869), + [aux_sym_option_statement_token3] = ACTIONS(5869), + [aux_sym_type_declaration_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5869), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5869), + [aux_sym_enum_declaration_token1] = ACTIONS(5869), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5869), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5869), + [aux_sym_declare_function_statement_token1] = ACTIONS(5869), + [aux_sym_preprocessor_const_token1] = ACTIONS(5869), + [aux_sym__property_get_header_token1] = ACTIONS(5869), + [aux_sym_event_declaration_token1] = ACTIONS(5869), + [sym_static_modifier] = ACTIONS(5869), + [sym__dim_keyword] = ACTIONS(5869), + [sym__redim_keyword] = ACTIONS(5869), + [aux_sym_get_accessor_token1] = ACTIONS(5869), + [aux_sym_set_accessor_token1] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5871), + [aux_sym_const_declaration_token1] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5871), + [aux_sym_as_type_clause_token2] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5869), + [aux_sym_visibility_token1] = ACTIONS(5869), + [aux_sym_visibility_token2] = ACTIONS(5869), + [aux_sym_elseif_fragment_token1] = ACTIONS(5869), + [aux_sym_else_fragment_token1] = ACTIONS(5869), + [aux_sym_select_statement_token1] = ACTIONS(5869), + [aux_sym__for_header_token1] = ACTIONS(5869), + [aux_sym_do_statement_token1] = ACTIONS(5869), + [aux_sym_do_condition_token1] = ACTIONS(5869), + [aux_sym_with_statement_token1] = ACTIONS(5869), + [aux_sym_exit_statement_token1] = ACTIONS(5869), + [sym_end_statement] = ACTIONS(5871), + [aux_sym_on_goto_statement_token1] = ACTIONS(5869), + [aux_sym_on_goto_statement_token2] = ACTIONS(5869), + [aux_sym_on_error_statement_token2] = ACTIONS(5869), + [sym__ambiguous_redim_statement] = ACTIONS(5871), + [aux_sym_erase_statement_token1] = ACTIONS(5869), + [aux_sym_open_statement_token1] = ACTIONS(5869), + [aux_sym_file_mode_token2] = ACTIONS(5869), + [aux_sym_file_access_token2] = ACTIONS(5869), + [aux_sym_file_lock_token2] = ACTIONS(5869), + [aux_sym_print_statement_token1] = ACTIONS(5869), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5703), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5705), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4471), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4473), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4475), + [anon_sym_SEMI] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [aux_sym_close_statement_token1] = ACTIONS(5869), + [aux_sym_put_statement_token1] = ACTIONS(5869), + [aux_sym_unlock_statement_token1] = ACTIONS(5869), + [aux_sym_seek_statement_token1] = ACTIONS(5869), + [sym_reset_statement] = ACTIONS(5869), + [aux_sym_raise_event_statement_token1] = ACTIONS(5869), + [sym_stop_statement] = ACTIONS(5869), + [sym_beep_statement] = ACTIONS(5869), + [aux_sym_unload_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token2] = ACTIONS(5869), + [aux_sym_def_type_statement_token3] = ACTIONS(5869), + [aux_sym_def_type_statement_token4] = ACTIONS(5869), + [aux_sym_def_type_statement_token5] = ACTIONS(5869), + [aux_sym_def_type_statement_token6] = ACTIONS(5869), + [aux_sym_def_type_statement_token7] = ACTIONS(5869), + [aux_sym_def_type_statement_token8] = ACTIONS(5869), + [aux_sym_def_type_statement_token9] = ACTIONS(5869), + [aux_sym_def_type_statement_token10] = ACTIONS(5869), + [aux_sym_def_type_statement_token11] = ACTIONS(5869), + [aux_sym_def_type_statement_token12] = ACTIONS(5869), + [aux_sym_def_type_statement_token13] = ACTIONS(5869), + [aux_sym_def_type_statement_token14] = ACTIONS(5869), + [aux_sym_call_statement_token1] = ACTIONS(5869), + [sym__ambiguous_call_statement] = ACTIONS(5869), + [aux_sym_addressof_expression_token1] = ACTIONS(5869), + [aux_sym_type_of_expression_token1] = ACTIONS(5869), + [aux_sym_unary_expression_token1] = ACTIONS(5869), + [sym_string_literal] = ACTIONS(5871), + [sym_number_literal] = ACTIONS(5871), + [aux_sym_boolean_literal_token1] = ACTIONS(5869), + [aux_sym_boolean_literal_token2] = ACTIONS(5869), + [sym_nothing_literal] = ACTIONS(5869), + [sym_null_literal] = ACTIONS(5869), + [sym_empty_literal] = ACTIONS(5869), + [sym_date_literal] = ACTIONS(5871), + [anon_sym_POUND] = ACTIONS(5869), + }, + [STATE(1054)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1055)] = { + [sym_identifier] = ACTIONS(4489), + [sym_newline] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4491), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4489), + [aux_sym_frm_property_statement_token1] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4489), + [anon_sym_BANG] = ACTIONS(4491), + [aux_sym__attribute_identifier_token1] = ACTIONS(4489), + [aux_sym_option_statement_token3] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4489), + [aux_sym_preprocessor_const_token1] = ACTIONS(4489), + [sym_static_modifier] = ACTIONS(4489), + [sym__dim_keyword] = ACTIONS(4489), + [sym__redim_keyword] = ACTIONS(4489), + [aux_sym_get_accessor_token1] = ACTIONS(4489), + [aux_sym_set_accessor_token1] = ACTIONS(4489), + [anon_sym_COMMA] = ACTIONS(4491), + [aux_sym_const_declaration_token1] = ACTIONS(4489), + [anon_sym_LPAREN] = ACTIONS(4491), + [aux_sym_as_type_clause_token2] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4489), + [aux_sym_visibility_token1] = ACTIONS(4489), + [aux_sym_visibility_token2] = ACTIONS(4489), + [aux_sym_elseif_fragment_token1] = ACTIONS(4489), + [aux_sym_else_fragment_token1] = ACTIONS(4489), + [aux_sym_select_statement_token1] = ACTIONS(4489), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4489), + [aux_sym__for_header_token1] = ACTIONS(4489), + [aux_sym_do_statement_token1] = ACTIONS(4489), + [aux_sym_do_condition_token1] = ACTIONS(4489), + [aux_sym_with_statement_token1] = ACTIONS(4489), + [aux_sym_exit_statement_token1] = ACTIONS(4489), + [sym_end_statement] = ACTIONS(4491), + [aux_sym_on_goto_statement_token1] = ACTIONS(4489), + [aux_sym_on_goto_statement_token2] = ACTIONS(4489), + [aux_sym_on_error_statement_token2] = ACTIONS(4489), + [sym__ambiguous_redim_statement] = ACTIONS(4491), + [aux_sym_erase_statement_token1] = ACTIONS(4489), + [aux_sym_open_statement_token1] = ACTIONS(4489), + [aux_sym_file_mode_token2] = ACTIONS(4489), + [aux_sym_file_access_token2] = ACTIONS(4489), + [aux_sym_file_lock_token2] = ACTIONS(4489), + [aux_sym_print_statement_token1] = ACTIONS(4489), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4491), + [anon_sym_QMARK] = ACTIONS(4491), + [aux_sym_close_statement_token1] = ACTIONS(4489), + [aux_sym_put_statement_token1] = ACTIONS(4489), + [aux_sym_unlock_statement_token1] = ACTIONS(4489), + [aux_sym_seek_statement_token1] = ACTIONS(4489), + [sym_reset_statement] = ACTIONS(4489), + [aux_sym_raise_event_statement_token1] = ACTIONS(4489), + [sym_stop_statement] = ACTIONS(4489), + [sym_beep_statement] = ACTIONS(4489), + [aux_sym_unload_statement_token1] = ACTIONS(4489), + [aux_sym_def_type_statement_token1] = ACTIONS(4489), + [aux_sym_def_type_statement_token2] = ACTIONS(4489), + [aux_sym_def_type_statement_token3] = ACTIONS(4489), + [aux_sym_def_type_statement_token4] = ACTIONS(4489), + [aux_sym_def_type_statement_token5] = ACTIONS(4489), + [aux_sym_def_type_statement_token6] = ACTIONS(4489), + [aux_sym_def_type_statement_token7] = ACTIONS(4489), + [aux_sym_def_type_statement_token8] = ACTIONS(4489), + [aux_sym_def_type_statement_token9] = ACTIONS(4489), + [aux_sym_def_type_statement_token10] = ACTIONS(4489), + [aux_sym_def_type_statement_token11] = ACTIONS(4489), + [aux_sym_def_type_statement_token12] = ACTIONS(4489), + [aux_sym_def_type_statement_token13] = ACTIONS(4489), + [aux_sym_def_type_statement_token14] = ACTIONS(4489), + [aux_sym_call_statement_token1] = ACTIONS(4489), + [sym__ambiguous_call_statement] = ACTIONS(4489), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4489), + [aux_sym_type_of_expression_token1] = ACTIONS(4489), + [aux_sym_unary_expression_token1] = ACTIONS(4489), + [sym_string_literal] = ACTIONS(4491), + [sym_number_literal] = ACTIONS(4491), + [aux_sym_boolean_literal_token1] = ACTIONS(4489), + [aux_sym_boolean_literal_token2] = ACTIONS(4489), + [sym_nothing_literal] = ACTIONS(4489), + [sym_null_literal] = ACTIONS(4489), + [sym_empty_literal] = ACTIONS(4489), + [sym_date_literal] = ACTIONS(4491), + [anon_sym_POUND] = ACTIONS(4489), + }, + [STATE(1056)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4412), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4412), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_select_statement_token2] = ACTIONS(4410), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(1057)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1058)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1059)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_select_statement_token2] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1060)] = { + [sym_identifier] = ACTIONS(4749), + [sym_newline] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4749), + [aux_sym_frm_property_statement_token1] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_BANG] = ACTIONS(4751), + [aux_sym__attribute_identifier_token1] = ACTIONS(4749), + [aux_sym_option_statement_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4749), + [aux_sym_preprocessor_const_token1] = ACTIONS(4749), + [sym_static_modifier] = ACTIONS(4749), + [sym__dim_keyword] = ACTIONS(4749), + [sym__redim_keyword] = ACTIONS(4749), + [aux_sym_get_accessor_token1] = ACTIONS(4749), + [aux_sym_set_accessor_token1] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4751), + [aux_sym_const_declaration_token1] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4751), + [aux_sym_as_type_clause_token2] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4749), + [aux_sym_visibility_token1] = ACTIONS(4749), + [aux_sym_visibility_token2] = ACTIONS(4749), + [aux_sym_elseif_fragment_token1] = ACTIONS(4749), + [aux_sym_else_fragment_token1] = ACTIONS(4749), + [aux_sym_select_statement_token1] = ACTIONS(4749), + [aux_sym_select_statement_token2] = ACTIONS(4749), + [aux_sym_case_expression_token1] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_GT] = ACTIONS(4751), + [aux_sym__for_header_token1] = ACTIONS(4749), + [aux_sym_do_statement_token1] = ACTIONS(4749), + [aux_sym_do_condition_token1] = ACTIONS(4749), + [aux_sym_with_statement_token1] = ACTIONS(4749), + [aux_sym_exit_statement_token1] = ACTIONS(4749), + [sym_end_statement] = ACTIONS(4751), + [aux_sym_on_goto_statement_token1] = ACTIONS(4749), + [aux_sym_on_goto_statement_token2] = ACTIONS(4749), + [aux_sym_on_error_statement_token2] = ACTIONS(4749), + [sym__ambiguous_redim_statement] = ACTIONS(4751), + [aux_sym_erase_statement_token1] = ACTIONS(4749), + [aux_sym_open_statement_token1] = ACTIONS(4749), + [aux_sym_file_mode_token2] = ACTIONS(4749), + [aux_sym_file_access_token2] = ACTIONS(4749), + [aux_sym_file_lock_token2] = ACTIONS(4749), + [aux_sym_print_statement_token1] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_BSLASH] = ACTIONS(4751), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [aux_sym_close_statement_token1] = ACTIONS(4749), + [aux_sym_put_statement_token1] = ACTIONS(4749), + [aux_sym_unlock_statement_token1] = ACTIONS(4749), + [aux_sym_seek_statement_token1] = ACTIONS(4749), + [sym_reset_statement] = ACTIONS(4749), + [aux_sym_raise_event_statement_token1] = ACTIONS(4749), + [sym_stop_statement] = ACTIONS(4749), + [sym_beep_statement] = ACTIONS(4749), + [aux_sym_unload_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token2] = ACTIONS(4749), + [aux_sym_def_type_statement_token3] = ACTIONS(4749), + [aux_sym_def_type_statement_token4] = ACTIONS(4749), + [aux_sym_def_type_statement_token5] = ACTIONS(4749), + [aux_sym_def_type_statement_token6] = ACTIONS(4749), + [aux_sym_def_type_statement_token7] = ACTIONS(4749), + [aux_sym_def_type_statement_token8] = ACTIONS(4749), + [aux_sym_def_type_statement_token9] = ACTIONS(4749), + [aux_sym_def_type_statement_token10] = ACTIONS(4749), + [aux_sym_def_type_statement_token11] = ACTIONS(4749), + [aux_sym_def_type_statement_token12] = ACTIONS(4749), + [aux_sym_def_type_statement_token13] = ACTIONS(4749), + [aux_sym_def_type_statement_token14] = ACTIONS(4749), + [aux_sym_call_statement_token1] = ACTIONS(4749), + [sym__ambiguous_call_statement] = ACTIONS(4749), + [aux_sym_comparison_operator_token1] = ACTIONS(4749), + [aux_sym_addressof_expression_token1] = ACTIONS(4749), + [aux_sym_type_of_expression_token1] = ACTIONS(4749), + [aux_sym_unary_expression_token1] = ACTIONS(4749), + [sym_string_literal] = ACTIONS(4751), + [sym_number_literal] = ACTIONS(4751), + [aux_sym_boolean_literal_token1] = ACTIONS(4749), + [aux_sym_boolean_literal_token2] = ACTIONS(4749), + [sym_nothing_literal] = ACTIONS(4749), + [sym_null_literal] = ACTIONS(4749), + [sym_empty_literal] = ACTIONS(4749), + [sym_date_literal] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4749), + }, + [STATE(1061)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_statement_token2] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1062)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1063)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1064)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1065)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1066)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1067)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1068)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1069)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5887), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1070)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5887), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5889), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1071)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5887), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5889), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5891), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1072)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5887), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5889), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5891), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5893), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1073)] = { + [sym_identifier] = ACTIONS(4420), + [sym_newline] = ACTIONS(4422), + [anon_sym_COLON] = ACTIONS(4422), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4420), + [aux_sym_frm_property_statement_token1] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5895), + [anon_sym_BANG] = ACTIONS(5897), + [aux_sym__attribute_identifier_token1] = ACTIONS(4420), + [aux_sym_option_statement_token3] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4420), + [aux_sym_preprocessor_const_token1] = ACTIONS(4420), + [sym_static_modifier] = ACTIONS(4420), + [sym__dim_keyword] = ACTIONS(4420), + [sym__redim_keyword] = ACTIONS(4420), + [aux_sym_get_accessor_token1] = ACTIONS(4420), + [aux_sym_set_accessor_token1] = ACTIONS(4420), + [anon_sym_COMMA] = ACTIONS(4422), + [aux_sym_const_declaration_token1] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4428), + [aux_sym_as_type_clause_token2] = ACTIONS(4420), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4420), + [aux_sym_visibility_token1] = ACTIONS(4420), + [aux_sym_visibility_token2] = ACTIONS(4420), + [aux_sym_elseif_fragment_token1] = ACTIONS(4420), + [aux_sym_else_fragment_token1] = ACTIONS(4420), + [aux_sym_select_statement_token1] = ACTIONS(4420), + [aux_sym_select_statement_token2] = ACTIONS(4420), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4420), + [aux_sym_do_statement_token1] = ACTIONS(4420), + [aux_sym_do_condition_token1] = ACTIONS(4420), + [aux_sym_with_statement_token1] = ACTIONS(4420), + [aux_sym_exit_statement_token1] = ACTIONS(4420), + [sym_end_statement] = ACTIONS(4422), + [aux_sym_on_goto_statement_token1] = ACTIONS(4420), + [aux_sym_on_goto_statement_token2] = ACTIONS(4420), + [aux_sym_on_error_statement_token2] = ACTIONS(4420), + [sym__ambiguous_redim_statement] = ACTIONS(4422), + [aux_sym_erase_statement_token1] = ACTIONS(4420), + [aux_sym_open_statement_token1] = ACTIONS(4420), + [aux_sym_file_mode_token2] = ACTIONS(4420), + [aux_sym_file_access_token2] = ACTIONS(4420), + [aux_sym_file_lock_token2] = ACTIONS(4420), + [aux_sym_print_statement_token1] = ACTIONS(4420), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4431), + [anon_sym_DASH] = ACTIONS(4434), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym_QMARK] = ACTIONS(4422), + [aux_sym_close_statement_token1] = ACTIONS(4420), + [aux_sym_put_statement_token1] = ACTIONS(4420), + [aux_sym_unlock_statement_token1] = ACTIONS(4420), + [aux_sym_seek_statement_token1] = ACTIONS(4420), + [sym_reset_statement] = ACTIONS(4420), + [aux_sym_raise_event_statement_token1] = ACTIONS(4420), + [sym_stop_statement] = ACTIONS(4420), + [sym_beep_statement] = ACTIONS(4420), + [aux_sym_unload_statement_token1] = ACTIONS(4420), + [aux_sym_def_type_statement_token1] = ACTIONS(4420), + [aux_sym_def_type_statement_token2] = ACTIONS(4420), + [aux_sym_def_type_statement_token3] = ACTIONS(4420), + [aux_sym_def_type_statement_token4] = ACTIONS(4420), + [aux_sym_def_type_statement_token5] = ACTIONS(4420), + [aux_sym_def_type_statement_token6] = ACTIONS(4420), + [aux_sym_def_type_statement_token7] = ACTIONS(4420), + [aux_sym_def_type_statement_token8] = ACTIONS(4420), + [aux_sym_def_type_statement_token9] = ACTIONS(4420), + [aux_sym_def_type_statement_token10] = ACTIONS(4420), + [aux_sym_def_type_statement_token11] = ACTIONS(4420), + [aux_sym_def_type_statement_token12] = ACTIONS(4420), + [aux_sym_def_type_statement_token13] = ACTIONS(4420), + [aux_sym_def_type_statement_token14] = ACTIONS(4420), + [aux_sym_call_statement_token1] = ACTIONS(4420), + [sym__ambiguous_call_statement] = ACTIONS(4420), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4420), + [aux_sym_type_of_expression_token1] = ACTIONS(4420), + [aux_sym_unary_expression_token1] = ACTIONS(4420), + [sym_string_literal] = ACTIONS(4422), + [sym_number_literal] = ACTIONS(4422), + [aux_sym_boolean_literal_token1] = ACTIONS(4420), + [aux_sym_boolean_literal_token2] = ACTIONS(4420), + [sym_nothing_literal] = ACTIONS(4420), + [sym_null_literal] = ACTIONS(4420), + [sym_empty_literal] = ACTIONS(4420), + [sym_date_literal] = ACTIONS(4422), + [anon_sym_POUND] = ACTIONS(4420), + }, + [STATE(1074)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1075)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1076)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_declaration_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5913), + [aux_sym_enum_declaration_token1] = ACTIONS(5913), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5913), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5913), + [aux_sym_declare_function_statement_token1] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [aux_sym__property_get_header_token1] = ACTIONS(5913), + [aux_sym_event_declaration_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(5917), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token3] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5917), + [anon_sym_BSLASH] = ACTIONS(5921), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5923), + [anon_sym_PLUS] = ACTIONS(5925), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_AMP] = ACTIONS(5929), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5931), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5933), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5935), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5937), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5939), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(1077)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_select_statement_token2] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1078)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_while_statement_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1079)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_declaration_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5913), + [aux_sym_enum_declaration_token1] = ACTIONS(5913), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5913), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5913), + [aux_sym_declare_function_statement_token1] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [aux_sym__property_get_header_token1] = ACTIONS(5913), + [aux_sym_event_declaration_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token3] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(1080)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(5943), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_statement_token2] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1081)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_declaration_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_enum_declaration_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4625), + [aux_sym_declare_function_statement_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [aux_sym__property_get_header_token1] = ACTIONS(4625), + [aux_sym_event_declaration_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1082)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1083)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1084)] = { + [sym_identifier] = ACTIONS(4489), + [sym_newline] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4491), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4489), + [aux_sym_frm_property_statement_token1] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4489), + [anon_sym_BANG] = ACTIONS(4491), + [aux_sym__attribute_identifier_token1] = ACTIONS(4489), + [aux_sym_option_statement_token3] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4489), + [aux_sym_preprocessor_const_token1] = ACTIONS(4489), + [sym_static_modifier] = ACTIONS(4489), + [sym__dim_keyword] = ACTIONS(4489), + [sym__redim_keyword] = ACTIONS(4489), + [aux_sym_get_accessor_token1] = ACTIONS(4489), + [aux_sym_set_accessor_token1] = ACTIONS(4489), + [anon_sym_COMMA] = ACTIONS(4491), + [aux_sym_const_declaration_token1] = ACTIONS(4489), + [anon_sym_LPAREN] = ACTIONS(4491), + [aux_sym_as_type_clause_token2] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4489), + [aux_sym_visibility_token1] = ACTIONS(4489), + [aux_sym_visibility_token2] = ACTIONS(4489), + [aux_sym_elseif_fragment_token1] = ACTIONS(4489), + [aux_sym_else_fragment_token1] = ACTIONS(4489), + [aux_sym_select_statement_token1] = ACTIONS(4489), + [aux_sym_select_statement_token2] = ACTIONS(4489), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4489), + [aux_sym_do_statement_token1] = ACTIONS(4489), + [aux_sym_do_condition_token1] = ACTIONS(4489), + [aux_sym_with_statement_token1] = ACTIONS(4489), + [aux_sym_exit_statement_token1] = ACTIONS(4489), + [sym_end_statement] = ACTIONS(4491), + [aux_sym_on_goto_statement_token1] = ACTIONS(4489), + [aux_sym_on_goto_statement_token2] = ACTIONS(4489), + [aux_sym_on_error_statement_token2] = ACTIONS(4489), + [sym__ambiguous_redim_statement] = ACTIONS(4491), + [aux_sym_erase_statement_token1] = ACTIONS(4489), + [aux_sym_open_statement_token1] = ACTIONS(4489), + [aux_sym_file_mode_token2] = ACTIONS(4489), + [aux_sym_file_access_token2] = ACTIONS(4489), + [aux_sym_file_lock_token2] = ACTIONS(4489), + [aux_sym_print_statement_token1] = ACTIONS(4489), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4491), + [anon_sym_QMARK] = ACTIONS(4491), + [aux_sym_close_statement_token1] = ACTIONS(4489), + [aux_sym_put_statement_token1] = ACTIONS(4489), + [aux_sym_unlock_statement_token1] = ACTIONS(4489), + [aux_sym_seek_statement_token1] = ACTIONS(4489), + [sym_reset_statement] = ACTIONS(4489), + [aux_sym_raise_event_statement_token1] = ACTIONS(4489), + [sym_stop_statement] = ACTIONS(4489), + [sym_beep_statement] = ACTIONS(4489), + [aux_sym_unload_statement_token1] = ACTIONS(4489), + [aux_sym_def_type_statement_token1] = ACTIONS(4489), + [aux_sym_def_type_statement_token2] = ACTIONS(4489), + [aux_sym_def_type_statement_token3] = ACTIONS(4489), + [aux_sym_def_type_statement_token4] = ACTIONS(4489), + [aux_sym_def_type_statement_token5] = ACTIONS(4489), + [aux_sym_def_type_statement_token6] = ACTIONS(4489), + [aux_sym_def_type_statement_token7] = ACTIONS(4489), + [aux_sym_def_type_statement_token8] = ACTIONS(4489), + [aux_sym_def_type_statement_token9] = ACTIONS(4489), + [aux_sym_def_type_statement_token10] = ACTIONS(4489), + [aux_sym_def_type_statement_token11] = ACTIONS(4489), + [aux_sym_def_type_statement_token12] = ACTIONS(4489), + [aux_sym_def_type_statement_token13] = ACTIONS(4489), + [aux_sym_def_type_statement_token14] = ACTIONS(4489), + [aux_sym_call_statement_token1] = ACTIONS(4489), + [sym__ambiguous_call_statement] = ACTIONS(4489), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4489), + [aux_sym_type_of_expression_token1] = ACTIONS(4489), + [aux_sym_unary_expression_token1] = ACTIONS(4489), + [sym_string_literal] = ACTIONS(4491), + [sym_number_literal] = ACTIONS(4491), + [aux_sym_boolean_literal_token1] = ACTIONS(4489), + [aux_sym_boolean_literal_token2] = ACTIONS(4489), + [sym_nothing_literal] = ACTIONS(4489), + [sym_null_literal] = ACTIONS(4489), + [sym_empty_literal] = ACTIONS(4489), + [sym_date_literal] = ACTIONS(4491), + [anon_sym_POUND] = ACTIONS(4489), + }, + [STATE(1085)] = { + [sym_identifier] = ACTIONS(4499), + [sym_newline] = ACTIONS(4501), + [anon_sym_COLON] = ACTIONS(4501), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4499), + [aux_sym_frm_property_statement_token1] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4501), + [aux_sym__attribute_identifier_token1] = ACTIONS(4499), + [aux_sym_option_statement_token3] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4499), + [aux_sym_preprocessor_const_token1] = ACTIONS(4499), + [sym_static_modifier] = ACTIONS(4499), + [sym__dim_keyword] = ACTIONS(4499), + [sym__redim_keyword] = ACTIONS(4499), + [aux_sym_get_accessor_token1] = ACTIONS(4499), + [aux_sym_set_accessor_token1] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4501), + [aux_sym_const_declaration_token1] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4501), + [aux_sym_as_type_clause_token2] = ACTIONS(4499), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4499), + [aux_sym_visibility_token1] = ACTIONS(4499), + [aux_sym_visibility_token2] = ACTIONS(4499), + [aux_sym_elseif_fragment_token1] = ACTIONS(4499), + [aux_sym_else_fragment_token1] = ACTIONS(4499), + [aux_sym_select_statement_token1] = ACTIONS(4499), + [aux_sym_select_statement_token2] = ACTIONS(4499), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4499), + [aux_sym_do_statement_token1] = ACTIONS(4499), + [aux_sym_do_condition_token1] = ACTIONS(4499), + [aux_sym_with_statement_token1] = ACTIONS(4499), + [aux_sym_exit_statement_token1] = ACTIONS(4499), + [sym_end_statement] = ACTIONS(4501), + [aux_sym_on_goto_statement_token1] = ACTIONS(4499), + [aux_sym_on_goto_statement_token2] = ACTIONS(4499), + [aux_sym_on_error_statement_token2] = ACTIONS(4499), + [sym__ambiguous_redim_statement] = ACTIONS(4501), + [aux_sym_erase_statement_token1] = ACTIONS(4499), + [aux_sym_open_statement_token1] = ACTIONS(4499), + [aux_sym_file_mode_token2] = ACTIONS(4499), + [aux_sym_file_access_token2] = ACTIONS(4499), + [aux_sym_file_lock_token2] = ACTIONS(4499), + [aux_sym_print_statement_token1] = ACTIONS(4499), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4514), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4501), + [anon_sym_QMARK] = ACTIONS(4501), + [aux_sym_close_statement_token1] = ACTIONS(4499), + [aux_sym_put_statement_token1] = ACTIONS(4499), + [aux_sym_unlock_statement_token1] = ACTIONS(4499), + [aux_sym_seek_statement_token1] = ACTIONS(4499), + [sym_reset_statement] = ACTIONS(4499), + [aux_sym_raise_event_statement_token1] = ACTIONS(4499), + [sym_stop_statement] = ACTIONS(4499), + [sym_beep_statement] = ACTIONS(4499), + [aux_sym_unload_statement_token1] = ACTIONS(4499), + [aux_sym_def_type_statement_token1] = ACTIONS(4499), + [aux_sym_def_type_statement_token2] = ACTIONS(4499), + [aux_sym_def_type_statement_token3] = ACTIONS(4499), + [aux_sym_def_type_statement_token4] = ACTIONS(4499), + [aux_sym_def_type_statement_token5] = ACTIONS(4499), + [aux_sym_def_type_statement_token6] = ACTIONS(4499), + [aux_sym_def_type_statement_token7] = ACTIONS(4499), + [aux_sym_def_type_statement_token8] = ACTIONS(4499), + [aux_sym_def_type_statement_token9] = ACTIONS(4499), + [aux_sym_def_type_statement_token10] = ACTIONS(4499), + [aux_sym_def_type_statement_token11] = ACTIONS(4499), + [aux_sym_def_type_statement_token12] = ACTIONS(4499), + [aux_sym_def_type_statement_token13] = ACTIONS(4499), + [aux_sym_def_type_statement_token14] = ACTIONS(4499), + [aux_sym_call_statement_token1] = ACTIONS(4499), + [sym__ambiguous_call_statement] = ACTIONS(4499), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4499), + [aux_sym_type_of_expression_token1] = ACTIONS(4499), + [aux_sym_unary_expression_token1] = ACTIONS(4499), + [sym_string_literal] = ACTIONS(4501), + [sym_number_literal] = ACTIONS(4501), + [aux_sym_boolean_literal_token1] = ACTIONS(4499), + [aux_sym_boolean_literal_token2] = ACTIONS(4499), + [sym_nothing_literal] = ACTIONS(4499), + [sym_null_literal] = ACTIONS(4499), + [sym_empty_literal] = ACTIONS(4499), + [sym_date_literal] = ACTIONS(4501), + [anon_sym_POUND] = ACTIONS(4499), + }, + [STATE(1086)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4823), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4823), + [anon_sym_BSLASH] = ACTIONS(4827), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4829), + [anon_sym_PLUS] = ACTIONS(4831), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_AMP] = ACTIONS(4835), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1087)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_select_statement_token2] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1088)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_declaration_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4625), + [aux_sym_enum_declaration_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4625), + [aux_sym_declare_function_statement_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [aux_sym__property_get_header_token1] = ACTIONS(4625), + [aux_sym_event_declaration_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token3] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1089)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1090)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_array_bound_token1] = ACTIONS(4375), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_statement_token2] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(1091)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(5945), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_statement_token2] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1092)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_select_statement_token2] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1093)] = { + [sym_identifier] = ACTIONS(4759), + [sym_newline] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4761), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4759), + [aux_sym_frm_property_statement_token1] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4761), + [aux_sym__attribute_identifier_token1] = ACTIONS(4759), + [aux_sym_option_statement_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4759), + [aux_sym_preprocessor_const_token1] = ACTIONS(4759), + [sym_static_modifier] = ACTIONS(4759), + [sym__dim_keyword] = ACTIONS(4759), + [sym__redim_keyword] = ACTIONS(4759), + [aux_sym_get_accessor_token1] = ACTIONS(4759), + [aux_sym_set_accessor_token1] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [aux_sym_const_declaration_token1] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4763), + [aux_sym_as_type_clause_token2] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4759), + [aux_sym_visibility_token1] = ACTIONS(4759), + [aux_sym_visibility_token2] = ACTIONS(4759), + [aux_sym_elseif_fragment_token1] = ACTIONS(4759), + [aux_sym_else_fragment_token1] = ACTIONS(4759), + [aux_sym_select_statement_token1] = ACTIONS(4759), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4759), + [aux_sym_do_statement_token1] = ACTIONS(4759), + [aux_sym_do_condition_token1] = ACTIONS(4759), + [aux_sym_with_statement_token1] = ACTIONS(4759), + [aux_sym_exit_statement_token1] = ACTIONS(4759), + [sym_end_statement] = ACTIONS(4761), + [aux_sym_on_goto_statement_token1] = ACTIONS(4759), + [aux_sym_on_goto_statement_token2] = ACTIONS(4759), + [aux_sym_on_error_statement_token2] = ACTIONS(4759), + [sym__ambiguous_redim_statement] = ACTIONS(4761), + [aux_sym_erase_statement_token1] = ACTIONS(4759), + [aux_sym_open_statement_token1] = ACTIONS(4759), + [aux_sym_file_mode_token2] = ACTIONS(4759), + [aux_sym_file_access_token2] = ACTIONS(4759), + [aux_sym_file_lock_token2] = ACTIONS(4759), + [aux_sym_print_statement_token1] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_QMARK] = ACTIONS(4761), + [aux_sym_close_statement_token1] = ACTIONS(4759), + [aux_sym_put_statement_token1] = ACTIONS(4759), + [aux_sym_unlock_statement_token1] = ACTIONS(4759), + [aux_sym_seek_statement_token1] = ACTIONS(4759), + [sym_reset_statement] = ACTIONS(4759), + [aux_sym_raise_event_statement_token1] = ACTIONS(4759), + [sym_stop_statement] = ACTIONS(4759), + [sym_beep_statement] = ACTIONS(4759), + [aux_sym_unload_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token2] = ACTIONS(4759), + [aux_sym_def_type_statement_token3] = ACTIONS(4759), + [aux_sym_def_type_statement_token4] = ACTIONS(4759), + [aux_sym_def_type_statement_token5] = ACTIONS(4759), + [aux_sym_def_type_statement_token6] = ACTIONS(4759), + [aux_sym_def_type_statement_token7] = ACTIONS(4759), + [aux_sym_def_type_statement_token8] = ACTIONS(4759), + [aux_sym_def_type_statement_token9] = ACTIONS(4759), + [aux_sym_def_type_statement_token10] = ACTIONS(4759), + [aux_sym_def_type_statement_token11] = ACTIONS(4759), + [aux_sym_def_type_statement_token12] = ACTIONS(4759), + [aux_sym_def_type_statement_token13] = ACTIONS(4759), + [aux_sym_def_type_statement_token14] = ACTIONS(4759), + [aux_sym_call_statement_token1] = ACTIONS(4759), + [sym__ambiguous_call_statement] = ACTIONS(4759), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4759), + [aux_sym_type_of_expression_token1] = ACTIONS(4759), + [aux_sym_unary_expression_token1] = ACTIONS(4759), + [sym_string_literal] = ACTIONS(4761), + [sym_number_literal] = ACTIONS(4761), + [aux_sym_boolean_literal_token1] = ACTIONS(4759), + [aux_sym_boolean_literal_token2] = ACTIONS(4759), + [sym_nothing_literal] = ACTIONS(4759), + [sym_null_literal] = ACTIONS(4759), + [sym_empty_literal] = ACTIONS(4759), + [sym_date_literal] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(4759), + }, + [STATE(1094)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_select_statement_token2] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1095)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_while_statement_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5960), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5962), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5964), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5966), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5968), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1096)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_declaration_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_enum_declaration_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4593), + [aux_sym_declare_function_statement_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [aux_sym__property_get_header_token1] = ACTIONS(4593), + [aux_sym_event_declaration_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1097)] = { + [sym_identifier] = ACTIONS(4759), + [sym_newline] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4761), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4759), + [aux_sym_frm_property_statement_token1] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4761), + [aux_sym__attribute_identifier_token1] = ACTIONS(4759), + [aux_sym_option_statement_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4759), + [aux_sym_preprocessor_const_token1] = ACTIONS(4759), + [sym_static_modifier] = ACTIONS(4759), + [sym__dim_keyword] = ACTIONS(4759), + [sym__redim_keyword] = ACTIONS(4759), + [aux_sym_get_accessor_token1] = ACTIONS(4759), + [aux_sym_set_accessor_token1] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [aux_sym_const_declaration_token1] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4761), + [aux_sym_as_type_clause_token2] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4759), + [aux_sym_visibility_token1] = ACTIONS(4759), + [aux_sym_visibility_token2] = ACTIONS(4759), + [aux_sym_elseif_fragment_token1] = ACTIONS(4759), + [aux_sym_else_fragment_token1] = ACTIONS(4759), + [aux_sym_select_statement_token1] = ACTIONS(4759), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4759), + [aux_sym_do_statement_token1] = ACTIONS(4759), + [aux_sym_do_condition_token1] = ACTIONS(4759), + [aux_sym_with_statement_token1] = ACTIONS(4759), + [aux_sym_exit_statement_token1] = ACTIONS(4759), + [sym_end_statement] = ACTIONS(4761), + [aux_sym_on_goto_statement_token1] = ACTIONS(4759), + [aux_sym_on_goto_statement_token2] = ACTIONS(4759), + [aux_sym_on_error_statement_token2] = ACTIONS(4759), + [sym__ambiguous_redim_statement] = ACTIONS(4761), + [aux_sym_erase_statement_token1] = ACTIONS(4759), + [aux_sym_open_statement_token1] = ACTIONS(4759), + [aux_sym_file_mode_token2] = ACTIONS(4759), + [aux_sym_file_access_token2] = ACTIONS(4759), + [aux_sym_file_lock_token2] = ACTIONS(4759), + [aux_sym_print_statement_token1] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_QMARK] = ACTIONS(4761), + [aux_sym_close_statement_token1] = ACTIONS(4759), + [aux_sym_put_statement_token1] = ACTIONS(4759), + [aux_sym_unlock_statement_token1] = ACTIONS(4759), + [aux_sym_seek_statement_token1] = ACTIONS(4759), + [sym_reset_statement] = ACTIONS(4759), + [aux_sym_raise_event_statement_token1] = ACTIONS(4759), + [sym_stop_statement] = ACTIONS(4759), + [sym_beep_statement] = ACTIONS(4759), + [aux_sym_unload_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token2] = ACTIONS(4759), + [aux_sym_def_type_statement_token3] = ACTIONS(4759), + [aux_sym_def_type_statement_token4] = ACTIONS(4759), + [aux_sym_def_type_statement_token5] = ACTIONS(4759), + [aux_sym_def_type_statement_token6] = ACTIONS(4759), + [aux_sym_def_type_statement_token7] = ACTIONS(4759), + [aux_sym_def_type_statement_token8] = ACTIONS(4759), + [aux_sym_def_type_statement_token9] = ACTIONS(4759), + [aux_sym_def_type_statement_token10] = ACTIONS(4759), + [aux_sym_def_type_statement_token11] = ACTIONS(4759), + [aux_sym_def_type_statement_token12] = ACTIONS(4759), + [aux_sym_def_type_statement_token13] = ACTIONS(4759), + [aux_sym_def_type_statement_token14] = ACTIONS(4759), + [aux_sym_call_statement_token1] = ACTIONS(4759), + [sym__ambiguous_call_statement] = ACTIONS(4759), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4759), + [aux_sym_type_of_expression_token1] = ACTIONS(4759), + [aux_sym_unary_expression_token1] = ACTIONS(4759), + [sym_string_literal] = ACTIONS(4761), + [sym_number_literal] = ACTIONS(4761), + [aux_sym_boolean_literal_token1] = ACTIONS(4759), + [aux_sym_boolean_literal_token2] = ACTIONS(4759), + [sym_nothing_literal] = ACTIONS(4759), + [sym_null_literal] = ACTIONS(4759), + [sym_empty_literal] = ACTIONS(4759), + [sym_date_literal] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(4759), + }, + [STATE(1098)] = { + [sym_identifier] = ACTIONS(4745), + [sym_newline] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4745), + [aux_sym_frm_property_statement_token1] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_BANG] = ACTIONS(4747), + [aux_sym__attribute_identifier_token1] = ACTIONS(4745), + [aux_sym_option_statement_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4745), + [aux_sym_preprocessor_const_token1] = ACTIONS(4745), + [sym_static_modifier] = ACTIONS(4745), + [sym__dim_keyword] = ACTIONS(4745), + [sym__redim_keyword] = ACTIONS(4745), + [aux_sym_get_accessor_token1] = ACTIONS(4745), + [aux_sym_set_accessor_token1] = ACTIONS(4745), + [anon_sym_COMMA] = ACTIONS(4747), + [aux_sym_const_declaration_token1] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4747), + [aux_sym_as_type_clause_token2] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4747), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4745), + [aux_sym_visibility_token1] = ACTIONS(4745), + [aux_sym_visibility_token2] = ACTIONS(4745), + [aux_sym_elseif_fragment_token1] = ACTIONS(4745), + [aux_sym_else_fragment_token1] = ACTIONS(4745), + [aux_sym_select_statement_token1] = ACTIONS(4745), + [aux_sym_case_expression_token1] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_LT_EQ] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_GT_EQ] = ACTIONS(4747), + [anon_sym_LT_GT] = ACTIONS(4747), + [aux_sym__for_header_token1] = ACTIONS(4745), + [aux_sym_do_statement_token1] = ACTIONS(4745), + [aux_sym_do_statement_token2] = ACTIONS(4745), + [aux_sym_do_condition_token1] = ACTIONS(4745), + [aux_sym_with_statement_token1] = ACTIONS(4745), + [aux_sym_exit_statement_token1] = ACTIONS(4745), + [sym_end_statement] = ACTIONS(4747), + [aux_sym_on_goto_statement_token1] = ACTIONS(4745), + [aux_sym_on_goto_statement_token2] = ACTIONS(4745), + [aux_sym_on_error_statement_token2] = ACTIONS(4745), + [sym__ambiguous_redim_statement] = ACTIONS(4747), + [aux_sym_erase_statement_token1] = ACTIONS(4745), + [aux_sym_open_statement_token1] = ACTIONS(4745), + [aux_sym_file_mode_token2] = ACTIONS(4745), + [aux_sym_file_access_token2] = ACTIONS(4745), + [aux_sym_file_lock_token2] = ACTIONS(4745), + [aux_sym_print_statement_token1] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_BSLASH] = ACTIONS(4747), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4745), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [aux_sym_close_statement_token1] = ACTIONS(4745), + [aux_sym_put_statement_token1] = ACTIONS(4745), + [aux_sym_unlock_statement_token1] = ACTIONS(4745), + [aux_sym_seek_statement_token1] = ACTIONS(4745), + [sym_reset_statement] = ACTIONS(4745), + [aux_sym_raise_event_statement_token1] = ACTIONS(4745), + [sym_stop_statement] = ACTIONS(4745), + [sym_beep_statement] = ACTIONS(4745), + [aux_sym_unload_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token2] = ACTIONS(4745), + [aux_sym_def_type_statement_token3] = ACTIONS(4745), + [aux_sym_def_type_statement_token4] = ACTIONS(4745), + [aux_sym_def_type_statement_token5] = ACTIONS(4745), + [aux_sym_def_type_statement_token6] = ACTIONS(4745), + [aux_sym_def_type_statement_token7] = ACTIONS(4745), + [aux_sym_def_type_statement_token8] = ACTIONS(4745), + [aux_sym_def_type_statement_token9] = ACTIONS(4745), + [aux_sym_def_type_statement_token10] = ACTIONS(4745), + [aux_sym_def_type_statement_token11] = ACTIONS(4745), + [aux_sym_def_type_statement_token12] = ACTIONS(4745), + [aux_sym_def_type_statement_token13] = ACTIONS(4745), + [aux_sym_def_type_statement_token14] = ACTIONS(4745), + [aux_sym_call_statement_token1] = ACTIONS(4745), + [sym__ambiguous_call_statement] = ACTIONS(4745), + [aux_sym_comparison_operator_token1] = ACTIONS(4745), + [aux_sym_addressof_expression_token1] = ACTIONS(4745), + [aux_sym_type_of_expression_token1] = ACTIONS(4745), + [aux_sym_unary_expression_token1] = ACTIONS(4745), + [sym_string_literal] = ACTIONS(4747), + [sym_number_literal] = ACTIONS(4747), + [aux_sym_boolean_literal_token1] = ACTIONS(4745), + [aux_sym_boolean_literal_token2] = ACTIONS(4745), + [sym_nothing_literal] = ACTIONS(4745), + [sym_null_literal] = ACTIONS(4745), + [sym_empty_literal] = ACTIONS(4745), + [sym_date_literal] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4745), + }, + [STATE(1099)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_BANG] = ACTIONS(5972), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4806), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(1100)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_declaration_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_enum_declaration_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4597), + [aux_sym_declare_function_statement_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [aux_sym__property_get_header_token1] = ACTIONS(4597), + [aux_sym_event_declaration_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1101)] = { + [sym_identifier] = ACTIONS(4749), + [sym_newline] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4749), + [aux_sym_frm_property_statement_token1] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_BANG] = ACTIONS(4751), + [aux_sym__attribute_identifier_token1] = ACTIONS(4749), + [aux_sym_option_statement_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4749), + [aux_sym_preprocessor_const_token1] = ACTIONS(4749), + [sym_static_modifier] = ACTIONS(4749), + [sym__dim_keyword] = ACTIONS(4749), + [sym__redim_keyword] = ACTIONS(4749), + [aux_sym_get_accessor_token1] = ACTIONS(4749), + [aux_sym_set_accessor_token1] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4751), + [aux_sym_const_declaration_token1] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4751), + [aux_sym_as_type_clause_token2] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4749), + [aux_sym_visibility_token1] = ACTIONS(4749), + [aux_sym_visibility_token2] = ACTIONS(4749), + [aux_sym_elseif_fragment_token1] = ACTIONS(4749), + [aux_sym_else_fragment_token1] = ACTIONS(4749), + [aux_sym_select_statement_token1] = ACTIONS(4749), + [aux_sym_case_expression_token1] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_GT] = ACTIONS(4751), + [aux_sym__for_header_token1] = ACTIONS(4749), + [aux_sym_do_statement_token1] = ACTIONS(4749), + [aux_sym_do_statement_token2] = ACTIONS(4749), + [aux_sym_do_condition_token1] = ACTIONS(4749), + [aux_sym_with_statement_token1] = ACTIONS(4749), + [aux_sym_exit_statement_token1] = ACTIONS(4749), + [sym_end_statement] = ACTIONS(4751), + [aux_sym_on_goto_statement_token1] = ACTIONS(4749), + [aux_sym_on_goto_statement_token2] = ACTIONS(4749), + [aux_sym_on_error_statement_token2] = ACTIONS(4749), + [sym__ambiguous_redim_statement] = ACTIONS(4751), + [aux_sym_erase_statement_token1] = ACTIONS(4749), + [aux_sym_open_statement_token1] = ACTIONS(4749), + [aux_sym_file_mode_token2] = ACTIONS(4749), + [aux_sym_file_access_token2] = ACTIONS(4749), + [aux_sym_file_lock_token2] = ACTIONS(4749), + [aux_sym_print_statement_token1] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_BSLASH] = ACTIONS(4751), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [aux_sym_close_statement_token1] = ACTIONS(4749), + [aux_sym_put_statement_token1] = ACTIONS(4749), + [aux_sym_unlock_statement_token1] = ACTIONS(4749), + [aux_sym_seek_statement_token1] = ACTIONS(4749), + [sym_reset_statement] = ACTIONS(4749), + [aux_sym_raise_event_statement_token1] = ACTIONS(4749), + [sym_stop_statement] = ACTIONS(4749), + [sym_beep_statement] = ACTIONS(4749), + [aux_sym_unload_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token2] = ACTIONS(4749), + [aux_sym_def_type_statement_token3] = ACTIONS(4749), + [aux_sym_def_type_statement_token4] = ACTIONS(4749), + [aux_sym_def_type_statement_token5] = ACTIONS(4749), + [aux_sym_def_type_statement_token6] = ACTIONS(4749), + [aux_sym_def_type_statement_token7] = ACTIONS(4749), + [aux_sym_def_type_statement_token8] = ACTIONS(4749), + [aux_sym_def_type_statement_token9] = ACTIONS(4749), + [aux_sym_def_type_statement_token10] = ACTIONS(4749), + [aux_sym_def_type_statement_token11] = ACTIONS(4749), + [aux_sym_def_type_statement_token12] = ACTIONS(4749), + [aux_sym_def_type_statement_token13] = ACTIONS(4749), + [aux_sym_def_type_statement_token14] = ACTIONS(4749), + [aux_sym_call_statement_token1] = ACTIONS(4749), + [sym__ambiguous_call_statement] = ACTIONS(4749), + [aux_sym_comparison_operator_token1] = ACTIONS(4749), + [aux_sym_addressof_expression_token1] = ACTIONS(4749), + [aux_sym_type_of_expression_token1] = ACTIONS(4749), + [aux_sym_unary_expression_token1] = ACTIONS(4749), + [sym_string_literal] = ACTIONS(4751), + [sym_number_literal] = ACTIONS(4751), + [aux_sym_boolean_literal_token1] = ACTIONS(4749), + [aux_sym_boolean_literal_token2] = ACTIONS(4749), + [sym_nothing_literal] = ACTIONS(4749), + [sym_null_literal] = ACTIONS(4749), + [sym_empty_literal] = ACTIONS(4749), + [sym_date_literal] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4749), + }, + [STATE(1102)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1103)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1104)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1105)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_declaration_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4589), + [aux_sym_enum_declaration_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4589), + [aux_sym_declare_function_statement_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [aux_sym__property_get_header_token1] = ACTIONS(4589), + [aux_sym_event_declaration_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_array_bound_token1] = ACTIONS(4589), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1106)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_select_statement_token2] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1107)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_select_statement_token2] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1108)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1109)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4509), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1110)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_statement_token2] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1111)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1112)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1113)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_while_statement_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1114)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1119), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(5974), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_statement_token2] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1115)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1116)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5621), + [anon_sym_BANG] = ACTIONS(5623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1117)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(5654), + [anon_sym_BANG] = ACTIONS(5656), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1118)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_statement_token2] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1119)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1125), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_statement_token2] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token3] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(1120)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1121)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1122)] = { + [sym_identifier] = ACTIONS(4749), + [sym_newline] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4749), + [aux_sym_frm_property_statement_token1] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_BANG] = ACTIONS(4751), + [aux_sym__attribute_identifier_token1] = ACTIONS(4749), + [aux_sym_option_statement_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4749), + [aux_sym_preprocessor_const_token1] = ACTIONS(4749), + [sym_static_modifier] = ACTIONS(4749), + [sym__dim_keyword] = ACTIONS(4749), + [sym__redim_keyword] = ACTIONS(4749), + [aux_sym_get_accessor_token1] = ACTIONS(4749), + [aux_sym_set_accessor_token1] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4751), + [aux_sym_const_declaration_token1] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4751), + [aux_sym_as_type_clause_token2] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4749), + [aux_sym_visibility_token1] = ACTIONS(4749), + [aux_sym_visibility_token2] = ACTIONS(4749), + [aux_sym_elseif_fragment_token1] = ACTIONS(4749), + [aux_sym_else_fragment_token1] = ACTIONS(4749), + [aux_sym_select_statement_token1] = ACTIONS(4749), + [aux_sym_case_expression_token1] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_GT] = ACTIONS(4751), + [aux_sym__for_header_token1] = ACTIONS(4749), + [aux_sym_do_statement_token1] = ACTIONS(4749), + [aux_sym_do_statement_token2] = ACTIONS(4749), + [aux_sym_do_condition_token1] = ACTIONS(4749), + [aux_sym_with_statement_token1] = ACTIONS(4749), + [aux_sym_exit_statement_token1] = ACTIONS(4749), + [sym_end_statement] = ACTIONS(4751), + [aux_sym_on_goto_statement_token1] = ACTIONS(4749), + [aux_sym_on_goto_statement_token2] = ACTIONS(4749), + [aux_sym_on_error_statement_token2] = ACTIONS(4749), + [sym__ambiguous_redim_statement] = ACTIONS(4751), + [aux_sym_erase_statement_token1] = ACTIONS(4749), + [aux_sym_open_statement_token1] = ACTIONS(4749), + [aux_sym_file_mode_token2] = ACTIONS(4749), + [aux_sym_file_access_token2] = ACTIONS(4749), + [aux_sym_file_lock_token2] = ACTIONS(4749), + [aux_sym_print_statement_token1] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_BSLASH] = ACTIONS(4751), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [aux_sym_close_statement_token1] = ACTIONS(4749), + [aux_sym_put_statement_token1] = ACTIONS(4749), + [aux_sym_unlock_statement_token1] = ACTIONS(4749), + [aux_sym_seek_statement_token1] = ACTIONS(4749), + [sym_reset_statement] = ACTIONS(4749), + [aux_sym_raise_event_statement_token1] = ACTIONS(4749), + [sym_stop_statement] = ACTIONS(4749), + [sym_beep_statement] = ACTIONS(4749), + [aux_sym_unload_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token2] = ACTIONS(4749), + [aux_sym_def_type_statement_token3] = ACTIONS(4749), + [aux_sym_def_type_statement_token4] = ACTIONS(4749), + [aux_sym_def_type_statement_token5] = ACTIONS(4749), + [aux_sym_def_type_statement_token6] = ACTIONS(4749), + [aux_sym_def_type_statement_token7] = ACTIONS(4749), + [aux_sym_def_type_statement_token8] = ACTIONS(4749), + [aux_sym_def_type_statement_token9] = ACTIONS(4749), + [aux_sym_def_type_statement_token10] = ACTIONS(4749), + [aux_sym_def_type_statement_token11] = ACTIONS(4749), + [aux_sym_def_type_statement_token12] = ACTIONS(4749), + [aux_sym_def_type_statement_token13] = ACTIONS(4749), + [aux_sym_def_type_statement_token14] = ACTIONS(4749), + [aux_sym_call_statement_token1] = ACTIONS(4749), + [sym__ambiguous_call_statement] = ACTIONS(4749), + [aux_sym_comparison_operator_token1] = ACTIONS(4749), + [aux_sym_addressof_expression_token1] = ACTIONS(4749), + [aux_sym_type_of_expression_token1] = ACTIONS(4749), + [aux_sym_unary_expression_token1] = ACTIONS(4749), + [sym_string_literal] = ACTIONS(4751), + [sym_number_literal] = ACTIONS(4751), + [aux_sym_boolean_literal_token1] = ACTIONS(4749), + [aux_sym_boolean_literal_token2] = ACTIONS(4749), + [sym_nothing_literal] = ACTIONS(4749), + [sym_null_literal] = ACTIONS(4749), + [sym_empty_literal] = ACTIONS(4749), + [sym_date_literal] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4749), + }, + [STATE(1123)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4709), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_statement_token2] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1124)] = { + [sym_argument_list] = STATE(1672), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5976), + [anon_sym_BANG] = ACTIONS(5978), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5980), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_statement_token2] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1125)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1125), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(5982), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_statement_token2] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1126)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4412), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4412), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(1127)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_while_statement_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1128)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5985), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1129)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_declaration_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_enum_declaration_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4589), + [aux_sym_declare_function_statement_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [aux_sym__property_get_header_token1] = ACTIONS(4589), + [aux_sym_event_declaration_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1130)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_while_statement_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1131)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5985), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1132)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5987), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5985), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1133)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5987), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5985), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_BSLASH] = ACTIONS(5989), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1134)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5987), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5985), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_BSLASH] = ACTIONS(5989), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5991), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1135)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5987), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5985), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_BSLASH] = ACTIONS(5989), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5991), + [anon_sym_PLUS] = ACTIONS(5993), + [anon_sym_DASH] = ACTIONS(5995), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1136)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5987), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5985), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_BSLASH] = ACTIONS(5989), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5991), + [anon_sym_PLUS] = ACTIONS(5993), + [anon_sym_DASH] = ACTIONS(5995), + [anon_sym_AMP] = ACTIONS(5997), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1137)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5987), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5985), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_BSLASH] = ACTIONS(5989), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5991), + [anon_sym_PLUS] = ACTIONS(5993), + [anon_sym_DASH] = ACTIONS(5995), + [anon_sym_AMP] = ACTIONS(5997), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5999), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1138)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5987), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5985), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_BSLASH] = ACTIONS(5989), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5991), + [anon_sym_PLUS] = ACTIONS(5993), + [anon_sym_DASH] = ACTIONS(5995), + [anon_sym_AMP] = ACTIONS(5997), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5999), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6001), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1139)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5987), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5985), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_BSLASH] = ACTIONS(5989), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5991), + [anon_sym_PLUS] = ACTIONS(5993), + [anon_sym_DASH] = ACTIONS(5995), + [anon_sym_AMP] = ACTIONS(5997), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5999), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6001), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6003), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1140)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5987), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5985), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_BSLASH] = ACTIONS(5989), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5991), + [anon_sym_PLUS] = ACTIONS(5993), + [anon_sym_DASH] = ACTIONS(5995), + [anon_sym_AMP] = ACTIONS(5997), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5999), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6001), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6003), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6005), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1141)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_while_statement_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1142)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_select_statement_token2] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(1143)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_select_statement_token2] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1144)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_select_statement_token2] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(1145)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1150), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(6007), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1146)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_select_statement_token2] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1147)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1148)] = { + [sym_argument_list] = STATE(1887), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6009), + [anon_sym_BANG] = ACTIONS(6011), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(6013), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_select_statement_token2] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1149)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(5845), + [anon_sym_BANG] = ACTIONS(5847), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1150)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1153), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token3] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(1151)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_select_statement_token2] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1152)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_select_statement_token2] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1153)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1153), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(6015), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1154)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1155)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5917), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5917), + [anon_sym_BSLASH] = ACTIONS(5921), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5923), + [anon_sym_PLUS] = ACTIONS(5925), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_AMP] = ACTIONS(5929), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1156)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_statement_token2] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1157)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4509), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1158)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(1159)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1160)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(1161)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_while_statement_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1162)] = { + [sym_identifier] = ACTIONS(4745), + [sym_newline] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4745), + [aux_sym_frm_property_statement_token1] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_BANG] = ACTIONS(4747), + [aux_sym__attribute_identifier_token1] = ACTIONS(4745), + [aux_sym_option_statement_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4745), + [aux_sym_preprocessor_const_token1] = ACTIONS(4745), + [sym_static_modifier] = ACTIONS(4745), + [sym__dim_keyword] = ACTIONS(4745), + [sym__redim_keyword] = ACTIONS(4745), + [aux_sym_get_accessor_token1] = ACTIONS(4745), + [aux_sym_set_accessor_token1] = ACTIONS(4745), + [anon_sym_COMMA] = ACTIONS(4747), + [aux_sym_const_declaration_token1] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4747), + [aux_sym_as_type_clause_token2] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4747), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4745), + [aux_sym_visibility_token1] = ACTIONS(4745), + [aux_sym_visibility_token2] = ACTIONS(4745), + [aux_sym_elseif_fragment_token1] = ACTIONS(4745), + [aux_sym_else_fragment_token1] = ACTIONS(4745), + [aux_sym_select_statement_token1] = ACTIONS(4745), + [aux_sym_select_statement_token2] = ACTIONS(4745), + [aux_sym_case_expression_token1] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_LT_EQ] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_GT_EQ] = ACTIONS(4747), + [anon_sym_LT_GT] = ACTIONS(4747), + [aux_sym__for_header_token1] = ACTIONS(4745), + [aux_sym_do_statement_token1] = ACTIONS(4745), + [aux_sym_do_condition_token1] = ACTIONS(4745), + [aux_sym_with_statement_token1] = ACTIONS(4745), + [aux_sym_exit_statement_token1] = ACTIONS(4745), + [sym_end_statement] = ACTIONS(4747), + [aux_sym_on_goto_statement_token1] = ACTIONS(4745), + [aux_sym_on_goto_statement_token2] = ACTIONS(4745), + [aux_sym_on_error_statement_token2] = ACTIONS(4745), + [sym__ambiguous_redim_statement] = ACTIONS(4747), + [aux_sym_erase_statement_token1] = ACTIONS(4745), + [aux_sym_open_statement_token1] = ACTIONS(4745), + [aux_sym_file_mode_token2] = ACTIONS(4745), + [aux_sym_file_access_token2] = ACTIONS(4745), + [aux_sym_file_lock_token2] = ACTIONS(4745), + [aux_sym_print_statement_token1] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_BSLASH] = ACTIONS(4747), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4745), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [aux_sym_close_statement_token1] = ACTIONS(4745), + [aux_sym_put_statement_token1] = ACTIONS(4745), + [aux_sym_unlock_statement_token1] = ACTIONS(4745), + [aux_sym_seek_statement_token1] = ACTIONS(4745), + [sym_reset_statement] = ACTIONS(4745), + [aux_sym_raise_event_statement_token1] = ACTIONS(4745), + [sym_stop_statement] = ACTIONS(4745), + [sym_beep_statement] = ACTIONS(4745), + [aux_sym_unload_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token2] = ACTIONS(4745), + [aux_sym_def_type_statement_token3] = ACTIONS(4745), + [aux_sym_def_type_statement_token4] = ACTIONS(4745), + [aux_sym_def_type_statement_token5] = ACTIONS(4745), + [aux_sym_def_type_statement_token6] = ACTIONS(4745), + [aux_sym_def_type_statement_token7] = ACTIONS(4745), + [aux_sym_def_type_statement_token8] = ACTIONS(4745), + [aux_sym_def_type_statement_token9] = ACTIONS(4745), + [aux_sym_def_type_statement_token10] = ACTIONS(4745), + [aux_sym_def_type_statement_token11] = ACTIONS(4745), + [aux_sym_def_type_statement_token12] = ACTIONS(4745), + [aux_sym_def_type_statement_token13] = ACTIONS(4745), + [aux_sym_def_type_statement_token14] = ACTIONS(4745), + [aux_sym_call_statement_token1] = ACTIONS(4745), + [sym__ambiguous_call_statement] = ACTIONS(4745), + [aux_sym_comparison_operator_token1] = ACTIONS(4745), + [aux_sym_addressof_expression_token1] = ACTIONS(4745), + [aux_sym_type_of_expression_token1] = ACTIONS(4745), + [aux_sym_unary_expression_token1] = ACTIONS(4745), + [sym_string_literal] = ACTIONS(4747), + [sym_number_literal] = ACTIONS(4747), + [aux_sym_boolean_literal_token1] = ACTIONS(4745), + [aux_sym_boolean_literal_token2] = ACTIONS(4745), + [sym_nothing_literal] = ACTIONS(4745), + [sym_null_literal] = ACTIONS(4745), + [sym_empty_literal] = ACTIONS(4745), + [sym_date_literal] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4745), + }, + [STATE(1163)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1164)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_while_statement_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1165)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_while_statement_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1166)] = { + [sym_argument_list] = STATE(1892), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6018), + [anon_sym_BANG] = ACTIONS(6020), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(6022), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1167)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_select_statement_token2] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1168)] = { + [sym_identifier] = ACTIONS(4420), + [sym_newline] = ACTIONS(4422), + [anon_sym_COLON] = ACTIONS(4422), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4420), + [aux_sym_frm_property_statement_token1] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_BANG] = ACTIONS(5972), + [aux_sym__attribute_identifier_token1] = ACTIONS(4420), + [aux_sym_option_statement_token3] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4420), + [aux_sym_preprocessor_const_token1] = ACTIONS(4420), + [sym_static_modifier] = ACTIONS(4420), + [sym__dim_keyword] = ACTIONS(4420), + [sym__redim_keyword] = ACTIONS(4420), + [aux_sym_get_accessor_token1] = ACTIONS(4420), + [aux_sym_set_accessor_token1] = ACTIONS(4420), + [anon_sym_COMMA] = ACTIONS(4422), + [aux_sym_const_declaration_token1] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4428), + [aux_sym_as_type_clause_token2] = ACTIONS(4420), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4420), + [aux_sym_visibility_token1] = ACTIONS(4420), + [aux_sym_visibility_token2] = ACTIONS(4420), + [aux_sym_elseif_fragment_token1] = ACTIONS(4420), + [aux_sym_else_fragment_token1] = ACTIONS(4420), + [aux_sym_select_statement_token1] = ACTIONS(4420), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4420), + [aux_sym_do_statement_token1] = ACTIONS(4420), + [aux_sym_do_condition_token1] = ACTIONS(4420), + [aux_sym_with_statement_token1] = ACTIONS(4420), + [aux_sym_exit_statement_token1] = ACTIONS(4420), + [sym_end_statement] = ACTIONS(4422), + [aux_sym_on_goto_statement_token1] = ACTIONS(4420), + [aux_sym_on_goto_statement_token2] = ACTIONS(4420), + [aux_sym_on_error_statement_token2] = ACTIONS(4420), + [sym__ambiguous_redim_statement] = ACTIONS(4422), + [aux_sym_erase_statement_token1] = ACTIONS(4420), + [aux_sym_open_statement_token1] = ACTIONS(4420), + [aux_sym_file_mode_token2] = ACTIONS(4420), + [aux_sym_file_access_token2] = ACTIONS(4420), + [aux_sym_file_lock_token2] = ACTIONS(4420), + [aux_sym_print_statement_token1] = ACTIONS(4420), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4431), + [anon_sym_DASH] = ACTIONS(4434), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym_QMARK] = ACTIONS(4422), + [aux_sym_close_statement_token1] = ACTIONS(4420), + [aux_sym_put_statement_token1] = ACTIONS(4420), + [aux_sym_unlock_statement_token1] = ACTIONS(4420), + [aux_sym_seek_statement_token1] = ACTIONS(4420), + [sym_reset_statement] = ACTIONS(4420), + [aux_sym_raise_event_statement_token1] = ACTIONS(4420), + [sym_stop_statement] = ACTIONS(4420), + [sym_beep_statement] = ACTIONS(4420), + [aux_sym_unload_statement_token1] = ACTIONS(4420), + [aux_sym_def_type_statement_token1] = ACTIONS(4420), + [aux_sym_def_type_statement_token2] = ACTIONS(4420), + [aux_sym_def_type_statement_token3] = ACTIONS(4420), + [aux_sym_def_type_statement_token4] = ACTIONS(4420), + [aux_sym_def_type_statement_token5] = ACTIONS(4420), + [aux_sym_def_type_statement_token6] = ACTIONS(4420), + [aux_sym_def_type_statement_token7] = ACTIONS(4420), + [aux_sym_def_type_statement_token8] = ACTIONS(4420), + [aux_sym_def_type_statement_token9] = ACTIONS(4420), + [aux_sym_def_type_statement_token10] = ACTIONS(4420), + [aux_sym_def_type_statement_token11] = ACTIONS(4420), + [aux_sym_def_type_statement_token12] = ACTIONS(4420), + [aux_sym_def_type_statement_token13] = ACTIONS(4420), + [aux_sym_def_type_statement_token14] = ACTIONS(4420), + [aux_sym_call_statement_token1] = ACTIONS(4420), + [sym__ambiguous_call_statement] = ACTIONS(4420), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4420), + [aux_sym_type_of_expression_token1] = ACTIONS(4420), + [aux_sym_unary_expression_token1] = ACTIONS(4420), + [sym_string_literal] = ACTIONS(4422), + [sym_number_literal] = ACTIONS(4422), + [aux_sym_boolean_literal_token1] = ACTIONS(4420), + [aux_sym_boolean_literal_token2] = ACTIONS(4420), + [sym_nothing_literal] = ACTIONS(4420), + [sym_null_literal] = ACTIONS(4420), + [sym_empty_literal] = ACTIONS(4420), + [sym_date_literal] = ACTIONS(4422), + [anon_sym_POUND] = ACTIONS(4420), + }, + [STATE(1169)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_statement_token2] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1170)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_declaration_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4601), + [aux_sym_enum_declaration_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4601), + [aux_sym_declare_function_statement_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [aux_sym__property_get_header_token1] = ACTIONS(4601), + [aux_sym_event_declaration_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token3] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(1171)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4605), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token3] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1172)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_declaration_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4437), + [aux_sym_enum_declaration_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4437), + [aux_sym_declare_function_statement_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [aux_sym__property_get_header_token1] = ACTIONS(4437), + [aux_sym_event_declaration_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_array_bound_token1] = ACTIONS(4437), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1173)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1174)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_declaration_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4609), + [aux_sym_enum_declaration_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4609), + [aux_sym_declare_function_statement_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [aux_sym__property_get_header_token1] = ACTIONS(4609), + [aux_sym_event_declaration_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token3] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(1175)] = { + [sym_identifier] = ACTIONS(4759), + [sym_newline] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4761), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4759), + [aux_sym_frm_property_statement_token1] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4761), + [aux_sym__attribute_identifier_token1] = ACTIONS(4759), + [aux_sym_option_statement_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4759), + [aux_sym_preprocessor_const_token1] = ACTIONS(4759), + [sym_static_modifier] = ACTIONS(4759), + [sym__dim_keyword] = ACTIONS(4759), + [sym__redim_keyword] = ACTIONS(4759), + [aux_sym_get_accessor_token1] = ACTIONS(4759), + [aux_sym_set_accessor_token1] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [aux_sym_const_declaration_token1] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4761), + [aux_sym_as_type_clause_token2] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4759), + [aux_sym_visibility_token1] = ACTIONS(4759), + [aux_sym_visibility_token2] = ACTIONS(4759), + [aux_sym_elseif_fragment_token1] = ACTIONS(4759), + [aux_sym_else_fragment_token1] = ACTIONS(4759), + [aux_sym_select_statement_token1] = ACTIONS(4759), + [aux_sym_select_statement_token2] = ACTIONS(4759), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4759), + [aux_sym_do_statement_token1] = ACTIONS(4759), + [aux_sym_do_condition_token1] = ACTIONS(4759), + [aux_sym_with_statement_token1] = ACTIONS(4759), + [aux_sym_exit_statement_token1] = ACTIONS(4759), + [sym_end_statement] = ACTIONS(4761), + [aux_sym_on_goto_statement_token1] = ACTIONS(4759), + [aux_sym_on_goto_statement_token2] = ACTIONS(4759), + [aux_sym_on_error_statement_token2] = ACTIONS(4759), + [sym__ambiguous_redim_statement] = ACTIONS(4761), + [aux_sym_erase_statement_token1] = ACTIONS(4759), + [aux_sym_open_statement_token1] = ACTIONS(4759), + [aux_sym_file_mode_token2] = ACTIONS(4759), + [aux_sym_file_access_token2] = ACTIONS(4759), + [aux_sym_file_lock_token2] = ACTIONS(4759), + [aux_sym_print_statement_token1] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_QMARK] = ACTIONS(4761), + [aux_sym_close_statement_token1] = ACTIONS(4759), + [aux_sym_put_statement_token1] = ACTIONS(4759), + [aux_sym_unlock_statement_token1] = ACTIONS(4759), + [aux_sym_seek_statement_token1] = ACTIONS(4759), + [sym_reset_statement] = ACTIONS(4759), + [aux_sym_raise_event_statement_token1] = ACTIONS(4759), + [sym_stop_statement] = ACTIONS(4759), + [sym_beep_statement] = ACTIONS(4759), + [aux_sym_unload_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token2] = ACTIONS(4759), + [aux_sym_def_type_statement_token3] = ACTIONS(4759), + [aux_sym_def_type_statement_token4] = ACTIONS(4759), + [aux_sym_def_type_statement_token5] = ACTIONS(4759), + [aux_sym_def_type_statement_token6] = ACTIONS(4759), + [aux_sym_def_type_statement_token7] = ACTIONS(4759), + [aux_sym_def_type_statement_token8] = ACTIONS(4759), + [aux_sym_def_type_statement_token9] = ACTIONS(4759), + [aux_sym_def_type_statement_token10] = ACTIONS(4759), + [aux_sym_def_type_statement_token11] = ACTIONS(4759), + [aux_sym_def_type_statement_token12] = ACTIONS(4759), + [aux_sym_def_type_statement_token13] = ACTIONS(4759), + [aux_sym_def_type_statement_token14] = ACTIONS(4759), + [aux_sym_call_statement_token1] = ACTIONS(4759), + [sym__ambiguous_call_statement] = ACTIONS(4759), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4759), + [aux_sym_type_of_expression_token1] = ACTIONS(4759), + [aux_sym_unary_expression_token1] = ACTIONS(4759), + [sym_string_literal] = ACTIONS(4761), + [sym_number_literal] = ACTIONS(4761), + [aux_sym_boolean_literal_token1] = ACTIONS(4759), + [aux_sym_boolean_literal_token2] = ACTIONS(4759), + [sym_nothing_literal] = ACTIONS(4759), + [sym_null_literal] = ACTIONS(4759), + [sym_empty_literal] = ACTIONS(4759), + [sym_date_literal] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(4759), + }, + [STATE(1176)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_declaration_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4447), + [aux_sym_enum_declaration_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4447), + [aux_sym_declare_function_statement_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [aux_sym__property_get_header_token1] = ACTIONS(4447), + [aux_sym_event_declaration_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_array_bound_token1] = ACTIONS(4447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1177)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_select_statement_token2] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1178)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_select_statement_token2] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1179)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_select_statement_token2] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1180)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_while_statement_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1181)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1182)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1183)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5895), + [anon_sym_BANG] = ACTIONS(5897), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4806), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_select_statement_token2] = ACTIONS(4410), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(1184)] = { + [sym_argument_list] = STATE(1922), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6026), + [anon_sym_BANG] = ACTIONS(6028), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(6030), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_select_statement_token2] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1185)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1186)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1187)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1188)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1190), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(6032), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_while_statement_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1189)] = { + [sym_argument_list] = STATE(1929), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6034), + [anon_sym_BANG] = ACTIONS(6036), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(6038), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1190)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1191), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_while_statement_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token3] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(1191)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1191), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(6040), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_while_statement_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1192)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1193)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1194)] = { + [sym_identifier] = ACTIONS(4489), + [sym_newline] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4491), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4489), + [aux_sym_frm_property_statement_token1] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4489), + [anon_sym_BANG] = ACTIONS(4491), + [aux_sym__attribute_identifier_token1] = ACTIONS(4489), + [aux_sym_option_statement_token3] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4489), + [aux_sym_preprocessor_const_token1] = ACTIONS(4489), + [sym_static_modifier] = ACTIONS(4489), + [sym__dim_keyword] = ACTIONS(4489), + [sym__redim_keyword] = ACTIONS(4489), + [aux_sym_get_accessor_token1] = ACTIONS(4489), + [aux_sym_set_accessor_token1] = ACTIONS(4489), + [anon_sym_COMMA] = ACTIONS(4491), + [aux_sym_const_declaration_token1] = ACTIONS(4489), + [anon_sym_LPAREN] = ACTIONS(4491), + [aux_sym_as_type_clause_token2] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4489), + [aux_sym_visibility_token1] = ACTIONS(4489), + [aux_sym_visibility_token2] = ACTIONS(4489), + [aux_sym_elseif_fragment_token1] = ACTIONS(4489), + [aux_sym_else_fragment_token1] = ACTIONS(4489), + [aux_sym_select_statement_token1] = ACTIONS(4489), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4489), + [aux_sym_do_statement_token1] = ACTIONS(4489), + [aux_sym_do_condition_token1] = ACTIONS(4489), + [aux_sym_with_statement_token1] = ACTIONS(4489), + [aux_sym_exit_statement_token1] = ACTIONS(4489), + [sym_end_statement] = ACTIONS(4491), + [aux_sym_on_goto_statement_token1] = ACTIONS(4489), + [aux_sym_on_goto_statement_token2] = ACTIONS(4489), + [aux_sym_on_error_statement_token2] = ACTIONS(4489), + [sym__ambiguous_redim_statement] = ACTIONS(4491), + [aux_sym_erase_statement_token1] = ACTIONS(4489), + [aux_sym_open_statement_token1] = ACTIONS(4489), + [aux_sym_file_mode_token2] = ACTIONS(4489), + [aux_sym_file_access_token2] = ACTIONS(4489), + [aux_sym_file_lock_token2] = ACTIONS(4489), + [aux_sym_print_statement_token1] = ACTIONS(4489), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4491), + [anon_sym_QMARK] = ACTIONS(4491), + [aux_sym_close_statement_token1] = ACTIONS(4489), + [aux_sym_put_statement_token1] = ACTIONS(4489), + [aux_sym_unlock_statement_token1] = ACTIONS(4489), + [aux_sym_seek_statement_token1] = ACTIONS(4489), + [sym_reset_statement] = ACTIONS(4489), + [aux_sym_raise_event_statement_token1] = ACTIONS(4489), + [sym_stop_statement] = ACTIONS(4489), + [sym_beep_statement] = ACTIONS(4489), + [aux_sym_unload_statement_token1] = ACTIONS(4489), + [aux_sym_def_type_statement_token1] = ACTIONS(4489), + [aux_sym_def_type_statement_token2] = ACTIONS(4489), + [aux_sym_def_type_statement_token3] = ACTIONS(4489), + [aux_sym_def_type_statement_token4] = ACTIONS(4489), + [aux_sym_def_type_statement_token5] = ACTIONS(4489), + [aux_sym_def_type_statement_token6] = ACTIONS(4489), + [aux_sym_def_type_statement_token7] = ACTIONS(4489), + [aux_sym_def_type_statement_token8] = ACTIONS(4489), + [aux_sym_def_type_statement_token9] = ACTIONS(4489), + [aux_sym_def_type_statement_token10] = ACTIONS(4489), + [aux_sym_def_type_statement_token11] = ACTIONS(4489), + [aux_sym_def_type_statement_token12] = ACTIONS(4489), + [aux_sym_def_type_statement_token13] = ACTIONS(4489), + [aux_sym_def_type_statement_token14] = ACTIONS(4489), + [aux_sym_call_statement_token1] = ACTIONS(4489), + [sym__ambiguous_call_statement] = ACTIONS(4489), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4489), + [aux_sym_type_of_expression_token1] = ACTIONS(4489), + [aux_sym_unary_expression_token1] = ACTIONS(4489), + [sym_string_literal] = ACTIONS(4491), + [sym_number_literal] = ACTIONS(4491), + [aux_sym_boolean_literal_token1] = ACTIONS(4489), + [aux_sym_boolean_literal_token2] = ACTIONS(4489), + [sym_nothing_literal] = ACTIONS(4489), + [sym_null_literal] = ACTIONS(4489), + [sym_empty_literal] = ACTIONS(4489), + [sym_date_literal] = ACTIONS(4491), + [anon_sym_POUND] = ACTIONS(4489), + }, + [STATE(1195)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_statement_token2] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1196)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_statement_token2] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1197)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5687), + [anon_sym_BANG] = ACTIONS(5689), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_statement_token2] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1198)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_statement_token2] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1199)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1200)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1201)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1202)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1203)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_select_statement_token2] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6057), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6059), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6061), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6063), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6065), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1204)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4621), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token3] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1205)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_statement_token2] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6079), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6081), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6083), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6085), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6087), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1206)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(1207)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1208)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(1209)] = { + [sym_identifier] = ACTIONS(4499), + [sym_newline] = ACTIONS(4501), + [anon_sym_COLON] = ACTIONS(4501), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4499), + [aux_sym_frm_property_statement_token1] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4501), + [aux_sym__attribute_identifier_token1] = ACTIONS(4499), + [aux_sym_option_statement_token3] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4499), + [aux_sym_preprocessor_const_token1] = ACTIONS(4499), + [sym_static_modifier] = ACTIONS(4499), + [sym__dim_keyword] = ACTIONS(4499), + [sym__redim_keyword] = ACTIONS(4499), + [aux_sym_get_accessor_token1] = ACTIONS(4499), + [aux_sym_set_accessor_token1] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4501), + [aux_sym_const_declaration_token1] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4501), + [aux_sym_as_type_clause_token2] = ACTIONS(4499), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4499), + [aux_sym_visibility_token1] = ACTIONS(4499), + [aux_sym_visibility_token2] = ACTIONS(4499), + [aux_sym_elseif_fragment_token1] = ACTIONS(4499), + [aux_sym_else_fragment_token1] = ACTIONS(4499), + [aux_sym_select_statement_token1] = ACTIONS(4499), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4499), + [aux_sym_do_statement_token1] = ACTIONS(4499), + [aux_sym_do_condition_token1] = ACTIONS(4499), + [aux_sym_with_statement_token1] = ACTIONS(4499), + [aux_sym_exit_statement_token1] = ACTIONS(4499), + [sym_end_statement] = ACTIONS(4501), + [aux_sym_on_goto_statement_token1] = ACTIONS(4499), + [aux_sym_on_goto_statement_token2] = ACTIONS(4499), + [aux_sym_on_error_statement_token2] = ACTIONS(4499), + [sym__ambiguous_redim_statement] = ACTIONS(4501), + [aux_sym_erase_statement_token1] = ACTIONS(4499), + [aux_sym_open_statement_token1] = ACTIONS(4499), + [aux_sym_file_mode_token2] = ACTIONS(4499), + [aux_sym_file_access_token2] = ACTIONS(4499), + [aux_sym_file_lock_token2] = ACTIONS(4499), + [aux_sym_print_statement_token1] = ACTIONS(4499), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4514), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4501), + [anon_sym_QMARK] = ACTIONS(4501), + [aux_sym_close_statement_token1] = ACTIONS(4499), + [aux_sym_put_statement_token1] = ACTIONS(4499), + [aux_sym_unlock_statement_token1] = ACTIONS(4499), + [aux_sym_seek_statement_token1] = ACTIONS(4499), + [sym_reset_statement] = ACTIONS(4499), + [aux_sym_raise_event_statement_token1] = ACTIONS(4499), + [sym_stop_statement] = ACTIONS(4499), + [sym_beep_statement] = ACTIONS(4499), + [aux_sym_unload_statement_token1] = ACTIONS(4499), + [aux_sym_def_type_statement_token1] = ACTIONS(4499), + [aux_sym_def_type_statement_token2] = ACTIONS(4499), + [aux_sym_def_type_statement_token3] = ACTIONS(4499), + [aux_sym_def_type_statement_token4] = ACTIONS(4499), + [aux_sym_def_type_statement_token5] = ACTIONS(4499), + [aux_sym_def_type_statement_token6] = ACTIONS(4499), + [aux_sym_def_type_statement_token7] = ACTIONS(4499), + [aux_sym_def_type_statement_token8] = ACTIONS(4499), + [aux_sym_def_type_statement_token9] = ACTIONS(4499), + [aux_sym_def_type_statement_token10] = ACTIONS(4499), + [aux_sym_def_type_statement_token11] = ACTIONS(4499), + [aux_sym_def_type_statement_token12] = ACTIONS(4499), + [aux_sym_def_type_statement_token13] = ACTIONS(4499), + [aux_sym_def_type_statement_token14] = ACTIONS(4499), + [aux_sym_call_statement_token1] = ACTIONS(4499), + [sym__ambiguous_call_statement] = ACTIONS(4499), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4499), + [aux_sym_type_of_expression_token1] = ACTIONS(4499), + [aux_sym_unary_expression_token1] = ACTIONS(4499), + [sym_string_literal] = ACTIONS(4501), + [sym_number_literal] = ACTIONS(4501), + [aux_sym_boolean_literal_token1] = ACTIONS(4499), + [aux_sym_boolean_literal_token2] = ACTIONS(4499), + [sym_nothing_literal] = ACTIONS(4499), + [sym_null_literal] = ACTIONS(4499), + [sym_empty_literal] = ACTIONS(4499), + [sym_date_literal] = ACTIONS(4501), + [anon_sym_POUND] = ACTIONS(4499), + }, + [STATE(1210)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1211)] = { + [sym_identifier] = ACTIONS(4499), + [sym_newline] = ACTIONS(4501), + [anon_sym_COLON] = ACTIONS(4501), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4499), + [aux_sym_frm_property_statement_token1] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4501), + [aux_sym__attribute_identifier_token1] = ACTIONS(4499), + [aux_sym_option_statement_token3] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4499), + [aux_sym_preprocessor_const_token1] = ACTIONS(4499), + [sym_static_modifier] = ACTIONS(4499), + [sym__dim_keyword] = ACTIONS(4499), + [sym__redim_keyword] = ACTIONS(4499), + [aux_sym_get_accessor_token1] = ACTIONS(4499), + [aux_sym_set_accessor_token1] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4501), + [aux_sym_const_declaration_token1] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4501), + [aux_sym_as_type_clause_token2] = ACTIONS(4499), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4499), + [aux_sym_visibility_token1] = ACTIONS(4499), + [aux_sym_visibility_token2] = ACTIONS(4499), + [aux_sym_elseif_fragment_token1] = ACTIONS(4499), + [aux_sym_else_fragment_token1] = ACTIONS(4499), + [aux_sym_select_statement_token1] = ACTIONS(4499), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4499), + [aux_sym_do_statement_token1] = ACTIONS(4499), + [aux_sym_do_statement_token2] = ACTIONS(4499), + [aux_sym_do_condition_token1] = ACTIONS(4499), + [aux_sym_with_statement_token1] = ACTIONS(4499), + [aux_sym_exit_statement_token1] = ACTIONS(4499), + [sym_end_statement] = ACTIONS(4501), + [aux_sym_on_goto_statement_token1] = ACTIONS(4499), + [aux_sym_on_goto_statement_token2] = ACTIONS(4499), + [aux_sym_on_error_statement_token2] = ACTIONS(4499), + [sym__ambiguous_redim_statement] = ACTIONS(4501), + [aux_sym_erase_statement_token1] = ACTIONS(4499), + [aux_sym_open_statement_token1] = ACTIONS(4499), + [aux_sym_file_mode_token2] = ACTIONS(4499), + [aux_sym_file_access_token2] = ACTIONS(4499), + [aux_sym_file_lock_token2] = ACTIONS(4499), + [aux_sym_print_statement_token1] = ACTIONS(4499), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4514), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4501), + [anon_sym_QMARK] = ACTIONS(4501), + [aux_sym_close_statement_token1] = ACTIONS(4499), + [aux_sym_put_statement_token1] = ACTIONS(4499), + [aux_sym_unlock_statement_token1] = ACTIONS(4499), + [aux_sym_seek_statement_token1] = ACTIONS(4499), + [sym_reset_statement] = ACTIONS(4499), + [aux_sym_raise_event_statement_token1] = ACTIONS(4499), + [sym_stop_statement] = ACTIONS(4499), + [sym_beep_statement] = ACTIONS(4499), + [aux_sym_unload_statement_token1] = ACTIONS(4499), + [aux_sym_def_type_statement_token1] = ACTIONS(4499), + [aux_sym_def_type_statement_token2] = ACTIONS(4499), + [aux_sym_def_type_statement_token3] = ACTIONS(4499), + [aux_sym_def_type_statement_token4] = ACTIONS(4499), + [aux_sym_def_type_statement_token5] = ACTIONS(4499), + [aux_sym_def_type_statement_token6] = ACTIONS(4499), + [aux_sym_def_type_statement_token7] = ACTIONS(4499), + [aux_sym_def_type_statement_token8] = ACTIONS(4499), + [aux_sym_def_type_statement_token9] = ACTIONS(4499), + [aux_sym_def_type_statement_token10] = ACTIONS(4499), + [aux_sym_def_type_statement_token11] = ACTIONS(4499), + [aux_sym_def_type_statement_token12] = ACTIONS(4499), + [aux_sym_def_type_statement_token13] = ACTIONS(4499), + [aux_sym_def_type_statement_token14] = ACTIONS(4499), + [aux_sym_call_statement_token1] = ACTIONS(4499), + [sym__ambiguous_call_statement] = ACTIONS(4499), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4499), + [aux_sym_type_of_expression_token1] = ACTIONS(4499), + [aux_sym_unary_expression_token1] = ACTIONS(4499), + [sym_string_literal] = ACTIONS(4501), + [sym_number_literal] = ACTIONS(4501), + [aux_sym_boolean_literal_token1] = ACTIONS(4499), + [aux_sym_boolean_literal_token2] = ACTIONS(4499), + [sym_nothing_literal] = ACTIONS(4499), + [sym_null_literal] = ACTIONS(4499), + [sym_empty_literal] = ACTIONS(4499), + [sym_date_literal] = ACTIONS(4501), + [anon_sym_POUND] = ACTIONS(4499), + }, + [STATE(1212)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_declaration_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4477), + [aux_sym_enum_declaration_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4477), + [aux_sym_declare_function_statement_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [aux_sym__property_get_header_token1] = ACTIONS(4477), + [aux_sym_event_declaration_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_array_bound_token1] = ACTIONS(4477), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1213)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_statement_token2] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1214)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1215)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5917), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5917), + [anon_sym_BSLASH] = ACTIONS(5921), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5923), + [anon_sym_PLUS] = ACTIONS(5925), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_AMP] = ACTIONS(5929), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5931), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1216)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1217)] = { + [sym_argument_list] = STATE(1705), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6091), + [anon_sym_BANG] = ACTIONS(6093), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(6095), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1218)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(6097), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_select_statement_token2] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1219)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1220), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_array_bound_token1] = ACTIONS(4375), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_select_statement_token2] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(1220)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1220), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(6099), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_select_statement_token2] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1221)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_while_statement_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(1222)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1225), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(6102), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1223)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1224)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1225)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1226), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_array_bound_token1] = ACTIONS(4375), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(1226)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1226), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(6104), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1227)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_while_statement_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1228)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_while_statement_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(1229)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1230)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_declaration_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4437), + [aux_sym_enum_declaration_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4437), + [aux_sym_declare_function_statement_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [aux_sym__property_get_header_token1] = ACTIONS(4437), + [aux_sym_event_declaration_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token3] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1231)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_statement_token2] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1232)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5917), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5917), + [anon_sym_BSLASH] = ACTIONS(5921), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5923), + [anon_sym_PLUS] = ACTIONS(5925), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_AMP] = ACTIONS(5929), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5931), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5933), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1233)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4647), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(5987), + [aux_sym_array_bound_token1] = ACTIONS(4647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(5985), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_BSLASH] = ACTIONS(5989), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5991), + [anon_sym_PLUS] = ACTIONS(5993), + [anon_sym_DASH] = ACTIONS(5995), + [anon_sym_AMP] = ACTIONS(5997), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1234)] = { + [sym_identifier] = ACTIONS(4749), + [sym_newline] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4749), + [aux_sym_frm_property_statement_token1] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_BANG] = ACTIONS(4751), + [aux_sym__attribute_identifier_token1] = ACTIONS(4749), + [aux_sym_option_statement_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4749), + [aux_sym_preprocessor_const_token1] = ACTIONS(4749), + [sym_static_modifier] = ACTIONS(4749), + [sym__dim_keyword] = ACTIONS(4749), + [sym__redim_keyword] = ACTIONS(4749), + [aux_sym_get_accessor_token1] = ACTIONS(4749), + [aux_sym_set_accessor_token1] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4751), + [aux_sym_const_declaration_token1] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4751), + [aux_sym_as_type_clause_token2] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4749), + [aux_sym_visibility_token1] = ACTIONS(4749), + [aux_sym_visibility_token2] = ACTIONS(4749), + [aux_sym_elseif_fragment_token1] = ACTIONS(4749), + [aux_sym_else_fragment_token1] = ACTIONS(4749), + [aux_sym_select_statement_token1] = ACTIONS(4749), + [aux_sym_select_statement_token2] = ACTIONS(4749), + [aux_sym_case_expression_token1] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_GT] = ACTIONS(4751), + [aux_sym__for_header_token1] = ACTIONS(4749), + [aux_sym_do_statement_token1] = ACTIONS(4749), + [aux_sym_do_condition_token1] = ACTIONS(4749), + [aux_sym_with_statement_token1] = ACTIONS(4749), + [aux_sym_exit_statement_token1] = ACTIONS(4749), + [sym_end_statement] = ACTIONS(4751), + [aux_sym_on_goto_statement_token1] = ACTIONS(4749), + [aux_sym_on_goto_statement_token2] = ACTIONS(4749), + [aux_sym_on_error_statement_token2] = ACTIONS(4749), + [sym__ambiguous_redim_statement] = ACTIONS(4751), + [aux_sym_erase_statement_token1] = ACTIONS(4749), + [aux_sym_open_statement_token1] = ACTIONS(4749), + [aux_sym_file_mode_token2] = ACTIONS(4749), + [aux_sym_file_access_token2] = ACTIONS(4749), + [aux_sym_file_lock_token2] = ACTIONS(4749), + [aux_sym_print_statement_token1] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_BSLASH] = ACTIONS(4751), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [aux_sym_close_statement_token1] = ACTIONS(4749), + [aux_sym_put_statement_token1] = ACTIONS(4749), + [aux_sym_unlock_statement_token1] = ACTIONS(4749), + [aux_sym_seek_statement_token1] = ACTIONS(4749), + [sym_reset_statement] = ACTIONS(4749), + [aux_sym_raise_event_statement_token1] = ACTIONS(4749), + [sym_stop_statement] = ACTIONS(4749), + [sym_beep_statement] = ACTIONS(4749), + [aux_sym_unload_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token2] = ACTIONS(4749), + [aux_sym_def_type_statement_token3] = ACTIONS(4749), + [aux_sym_def_type_statement_token4] = ACTIONS(4749), + [aux_sym_def_type_statement_token5] = ACTIONS(4749), + [aux_sym_def_type_statement_token6] = ACTIONS(4749), + [aux_sym_def_type_statement_token7] = ACTIONS(4749), + [aux_sym_def_type_statement_token8] = ACTIONS(4749), + [aux_sym_def_type_statement_token9] = ACTIONS(4749), + [aux_sym_def_type_statement_token10] = ACTIONS(4749), + [aux_sym_def_type_statement_token11] = ACTIONS(4749), + [aux_sym_def_type_statement_token12] = ACTIONS(4749), + [aux_sym_def_type_statement_token13] = ACTIONS(4749), + [aux_sym_def_type_statement_token14] = ACTIONS(4749), + [aux_sym_call_statement_token1] = ACTIONS(4749), + [sym__ambiguous_call_statement] = ACTIONS(4749), + [aux_sym_comparison_operator_token1] = ACTIONS(4749), + [aux_sym_addressof_expression_token1] = ACTIONS(4749), + [aux_sym_type_of_expression_token1] = ACTIONS(4749), + [aux_sym_unary_expression_token1] = ACTIONS(4749), + [sym_string_literal] = ACTIONS(4751), + [sym_number_literal] = ACTIONS(4751), + [aux_sym_boolean_literal_token1] = ACTIONS(4749), + [aux_sym_boolean_literal_token2] = ACTIONS(4749), + [sym_nothing_literal] = ACTIONS(4749), + [sym_null_literal] = ACTIONS(4749), + [sym_empty_literal] = ACTIONS(4749), + [sym_date_literal] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4749), + }, + [STATE(1235)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1236), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(6107), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_select_statement_token2] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1236)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_select_statement_token2] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token3] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(1237)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_select_statement_token2] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1238)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(6109), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_select_statement_token2] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1239)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1240)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1241), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(6112), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1241)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1242), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token3] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(1242)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1242), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(6114), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1243)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_select_statement_token2] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1244)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1245)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_while_statement_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1246)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_select_statement_token2] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1247)] = { + [sym_identifier] = ACTIONS(4671), + [sym_newline] = ACTIONS(4673), + [anon_sym_COLON] = ACTIONS(4673), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4671), + [aux_sym_frm_property_statement_token1] = ACTIONS(4671), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4671), + [anon_sym_BANG] = ACTIONS(4673), + [aux_sym__attribute_identifier_token1] = ACTIONS(4671), + [aux_sym_option_statement_token3] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4671), + [aux_sym_preprocessor_const_token1] = ACTIONS(4671), + [sym_static_modifier] = ACTIONS(4671), + [sym__dim_keyword] = ACTIONS(4671), + [sym__redim_keyword] = ACTIONS(4671), + [aux_sym_get_accessor_token1] = ACTIONS(4671), + [aux_sym_set_accessor_token1] = ACTIONS(4671), + [anon_sym_COMMA] = ACTIONS(4673), + [aux_sym_const_declaration_token1] = ACTIONS(4671), + [anon_sym_LPAREN] = ACTIONS(4673), + [aux_sym_as_type_clause_token2] = ACTIONS(4671), + [anon_sym_STAR] = ACTIONS(4673), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4671), + [aux_sym_visibility_token1] = ACTIONS(4671), + [aux_sym_visibility_token2] = ACTIONS(4671), + [aux_sym_elseif_fragment_token1] = ACTIONS(4671), + [aux_sym_else_fragment_token1] = ACTIONS(4671), + [aux_sym_select_statement_token1] = ACTIONS(4671), + [aux_sym_select_statement_token2] = ACTIONS(4671), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4671), + [aux_sym_do_statement_token1] = ACTIONS(4671), + [aux_sym_do_condition_token1] = ACTIONS(4671), + [aux_sym_with_statement_token1] = ACTIONS(4671), + [aux_sym_exit_statement_token1] = ACTIONS(4671), + [sym_end_statement] = ACTIONS(4673), + [aux_sym_on_goto_statement_token1] = ACTIONS(4671), + [aux_sym_on_goto_statement_token2] = ACTIONS(4671), + [aux_sym_on_error_statement_token2] = ACTIONS(4671), + [sym__ambiguous_redim_statement] = ACTIONS(4673), + [aux_sym_erase_statement_token1] = ACTIONS(4671), + [aux_sym_open_statement_token1] = ACTIONS(4671), + [aux_sym_file_mode_token2] = ACTIONS(4671), + [aux_sym_file_access_token2] = ACTIONS(4671), + [aux_sym_file_lock_token2] = ACTIONS(4671), + [aux_sym_print_statement_token1] = ACTIONS(4671), + [anon_sym_CARET] = ACTIONS(4673), + [anon_sym_SLASH] = ACTIONS(4673), + [anon_sym_BSLASH] = ACTIONS(4673), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4671), + [anon_sym_PLUS] = ACTIONS(4673), + [anon_sym_DASH] = ACTIONS(4671), + [anon_sym_AMP] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4671), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym_QMARK] = ACTIONS(4673), + [aux_sym_close_statement_token1] = ACTIONS(4671), + [aux_sym_put_statement_token1] = ACTIONS(4671), + [aux_sym_unlock_statement_token1] = ACTIONS(4671), + [aux_sym_seek_statement_token1] = ACTIONS(4671), + [sym_reset_statement] = ACTIONS(4671), + [aux_sym_raise_event_statement_token1] = ACTIONS(4671), + [sym_stop_statement] = ACTIONS(4671), + [sym_beep_statement] = ACTIONS(4671), + [aux_sym_unload_statement_token1] = ACTIONS(4671), + [aux_sym_def_type_statement_token1] = ACTIONS(4671), + [aux_sym_def_type_statement_token2] = ACTIONS(4671), + [aux_sym_def_type_statement_token3] = ACTIONS(4671), + [aux_sym_def_type_statement_token4] = ACTIONS(4671), + [aux_sym_def_type_statement_token5] = ACTIONS(4671), + [aux_sym_def_type_statement_token6] = ACTIONS(4671), + [aux_sym_def_type_statement_token7] = ACTIONS(4671), + [aux_sym_def_type_statement_token8] = ACTIONS(4671), + [aux_sym_def_type_statement_token9] = ACTIONS(4671), + [aux_sym_def_type_statement_token10] = ACTIONS(4671), + [aux_sym_def_type_statement_token11] = ACTIONS(4671), + [aux_sym_def_type_statement_token12] = ACTIONS(4671), + [aux_sym_def_type_statement_token13] = ACTIONS(4671), + [aux_sym_def_type_statement_token14] = ACTIONS(4671), + [aux_sym_call_statement_token1] = ACTIONS(4671), + [sym__ambiguous_call_statement] = ACTIONS(4671), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4671), + [aux_sym_type_of_expression_token1] = ACTIONS(4671), + [aux_sym_unary_expression_token1] = ACTIONS(4671), + [sym_string_literal] = ACTIONS(4673), + [sym_number_literal] = ACTIONS(4673), + [aux_sym_boolean_literal_token1] = ACTIONS(4671), + [aux_sym_boolean_literal_token2] = ACTIONS(4671), + [sym_nothing_literal] = ACTIONS(4671), + [sym_null_literal] = ACTIONS(4671), + [sym_empty_literal] = ACTIONS(4671), + [sym_date_literal] = ACTIONS(4673), + [anon_sym_POUND] = ACTIONS(4671), + }, + [STATE(1248)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4517), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1249)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_while_statement_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1250)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4517), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_array_bound_token1] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1251)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_statement_token2] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1252)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4517), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token3] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1253)] = { + [sym_identifier] = ACTIONS(4759), + [sym_newline] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4761), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4759), + [aux_sym_frm_property_statement_token1] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4761), + [aux_sym__attribute_identifier_token1] = ACTIONS(4759), + [aux_sym_option_statement_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4759), + [aux_sym_preprocessor_const_token1] = ACTIONS(4759), + [sym_static_modifier] = ACTIONS(4759), + [sym__dim_keyword] = ACTIONS(4759), + [sym__redim_keyword] = ACTIONS(4759), + [aux_sym_get_accessor_token1] = ACTIONS(4759), + [aux_sym_set_accessor_token1] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [aux_sym_const_declaration_token1] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4763), + [aux_sym_as_type_clause_token2] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4759), + [aux_sym_visibility_token1] = ACTIONS(4759), + [aux_sym_visibility_token2] = ACTIONS(4759), + [aux_sym_elseif_fragment_token1] = ACTIONS(4759), + [aux_sym_else_fragment_token1] = ACTIONS(4759), + [aux_sym_select_statement_token1] = ACTIONS(4759), + [aux_sym_select_statement_token2] = ACTIONS(4759), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4759), + [aux_sym_do_statement_token1] = ACTIONS(4759), + [aux_sym_do_condition_token1] = ACTIONS(4759), + [aux_sym_with_statement_token1] = ACTIONS(4759), + [aux_sym_exit_statement_token1] = ACTIONS(4759), + [sym_end_statement] = ACTIONS(4761), + [aux_sym_on_goto_statement_token1] = ACTIONS(4759), + [aux_sym_on_goto_statement_token2] = ACTIONS(4759), + [aux_sym_on_error_statement_token2] = ACTIONS(4759), + [sym__ambiguous_redim_statement] = ACTIONS(4761), + [aux_sym_erase_statement_token1] = ACTIONS(4759), + [aux_sym_open_statement_token1] = ACTIONS(4759), + [aux_sym_file_mode_token2] = ACTIONS(4759), + [aux_sym_file_access_token2] = ACTIONS(4759), + [aux_sym_file_lock_token2] = ACTIONS(4759), + [aux_sym_print_statement_token1] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_QMARK] = ACTIONS(4761), + [aux_sym_close_statement_token1] = ACTIONS(4759), + [aux_sym_put_statement_token1] = ACTIONS(4759), + [aux_sym_unlock_statement_token1] = ACTIONS(4759), + [aux_sym_seek_statement_token1] = ACTIONS(4759), + [sym_reset_statement] = ACTIONS(4759), + [aux_sym_raise_event_statement_token1] = ACTIONS(4759), + [sym_stop_statement] = ACTIONS(4759), + [sym_beep_statement] = ACTIONS(4759), + [aux_sym_unload_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token2] = ACTIONS(4759), + [aux_sym_def_type_statement_token3] = ACTIONS(4759), + [aux_sym_def_type_statement_token4] = ACTIONS(4759), + [aux_sym_def_type_statement_token5] = ACTIONS(4759), + [aux_sym_def_type_statement_token6] = ACTIONS(4759), + [aux_sym_def_type_statement_token7] = ACTIONS(4759), + [aux_sym_def_type_statement_token8] = ACTIONS(4759), + [aux_sym_def_type_statement_token9] = ACTIONS(4759), + [aux_sym_def_type_statement_token10] = ACTIONS(4759), + [aux_sym_def_type_statement_token11] = ACTIONS(4759), + [aux_sym_def_type_statement_token12] = ACTIONS(4759), + [aux_sym_def_type_statement_token13] = ACTIONS(4759), + [aux_sym_def_type_statement_token14] = ACTIONS(4759), + [aux_sym_call_statement_token1] = ACTIONS(4759), + [sym__ambiguous_call_statement] = ACTIONS(4759), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4759), + [aux_sym_type_of_expression_token1] = ACTIONS(4759), + [aux_sym_unary_expression_token1] = ACTIONS(4759), + [sym_string_literal] = ACTIONS(4761), + [sym_number_literal] = ACTIONS(4761), + [aux_sym_boolean_literal_token1] = ACTIONS(4759), + [aux_sym_boolean_literal_token2] = ACTIONS(4759), + [sym_nothing_literal] = ACTIONS(4759), + [sym_null_literal] = ACTIONS(4759), + [sym_empty_literal] = ACTIONS(4759), + [sym_date_literal] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(4759), + }, + [STATE(1254)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_while_statement_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1255)] = { + [sym_identifier] = ACTIONS(6117), + [sym_newline] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6117), + [aux_sym_frm_property_statement_token1] = ACTIONS(6117), + [anon_sym_DOT] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6119), + [aux_sym__attribute_identifier_token1] = ACTIONS(6117), + [aux_sym_option_statement_token3] = ACTIONS(6117), + [aux_sym_type_declaration_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6117), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6117), + [aux_sym_enum_declaration_token1] = ACTIONS(6117), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6117), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6117), + [aux_sym_declare_function_statement_token1] = ACTIONS(6117), + [aux_sym_preprocessor_const_token1] = ACTIONS(6117), + [aux_sym__property_get_header_token1] = ACTIONS(6117), + [aux_sym_event_declaration_token1] = ACTIONS(6117), + [sym_static_modifier] = ACTIONS(6117), + [sym__dim_keyword] = ACTIONS(6117), + [sym__redim_keyword] = ACTIONS(6117), + [aux_sym_get_accessor_token1] = ACTIONS(6117), + [aux_sym_set_accessor_token1] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6119), + [aux_sym_const_declaration_token1] = ACTIONS(6117), + [anon_sym_LPAREN] = ACTIONS(6119), + [aux_sym_as_type_clause_token2] = ACTIONS(6117), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6117), + [aux_sym_visibility_token1] = ACTIONS(6117), + [aux_sym_visibility_token2] = ACTIONS(6117), + [aux_sym_elseif_fragment_token1] = ACTIONS(6117), + [aux_sym_else_fragment_token1] = ACTIONS(6117), + [aux_sym_select_statement_token1] = ACTIONS(6117), + [aux_sym__for_header_token1] = ACTIONS(6117), + [aux_sym_do_statement_token1] = ACTIONS(6117), + [aux_sym_do_condition_token1] = ACTIONS(6117), + [aux_sym_with_statement_token1] = ACTIONS(6117), + [aux_sym_exit_statement_token1] = ACTIONS(6117), + [sym_end_statement] = ACTIONS(6119), + [aux_sym_on_goto_statement_token1] = ACTIONS(6117), + [aux_sym_on_goto_statement_token2] = ACTIONS(6117), + [aux_sym_on_error_statement_token2] = ACTIONS(6117), + [sym__ambiguous_redim_statement] = ACTIONS(6119), + [aux_sym_erase_statement_token1] = ACTIONS(6117), + [aux_sym_open_statement_token1] = ACTIONS(6117), + [aux_sym_file_mode_token2] = ACTIONS(6117), + [aux_sym_file_access_token2] = ACTIONS(6117), + [aux_sym_file_lock_token2] = ACTIONS(6117), + [aux_sym_print_statement_token1] = ACTIONS(6117), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4467), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4469), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4471), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4473), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4475), + [anon_sym_QMARK] = ACTIONS(6119), + [aux_sym_close_statement_token1] = ACTIONS(6117), + [aux_sym_put_statement_token1] = ACTIONS(6117), + [aux_sym_unlock_statement_token1] = ACTIONS(6117), + [aux_sym_seek_statement_token1] = ACTIONS(6117), + [sym_reset_statement] = ACTIONS(6117), + [aux_sym_raise_event_statement_token1] = ACTIONS(6117), + [sym_stop_statement] = ACTIONS(6117), + [sym_beep_statement] = ACTIONS(6117), + [aux_sym_unload_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token2] = ACTIONS(6117), + [aux_sym_def_type_statement_token3] = ACTIONS(6117), + [aux_sym_def_type_statement_token4] = ACTIONS(6117), + [aux_sym_def_type_statement_token5] = ACTIONS(6117), + [aux_sym_def_type_statement_token6] = ACTIONS(6117), + [aux_sym_def_type_statement_token7] = ACTIONS(6117), + [aux_sym_def_type_statement_token8] = ACTIONS(6117), + [aux_sym_def_type_statement_token9] = ACTIONS(6117), + [aux_sym_def_type_statement_token10] = ACTIONS(6117), + [aux_sym_def_type_statement_token11] = ACTIONS(6117), + [aux_sym_def_type_statement_token12] = ACTIONS(6117), + [aux_sym_def_type_statement_token13] = ACTIONS(6117), + [aux_sym_def_type_statement_token14] = ACTIONS(6117), + [aux_sym_call_statement_token1] = ACTIONS(6117), + [sym__ambiguous_call_statement] = ACTIONS(6117), + [aux_sym_addressof_expression_token1] = ACTIONS(6117), + [aux_sym_type_of_expression_token1] = ACTIONS(6117), + [aux_sym_unary_expression_token1] = ACTIONS(6117), + [sym_string_literal] = ACTIONS(6119), + [sym_number_literal] = ACTIONS(6119), + [aux_sym_boolean_literal_token1] = ACTIONS(6117), + [aux_sym_boolean_literal_token2] = ACTIONS(6117), + [sym_nothing_literal] = ACTIONS(6117), + [sym_null_literal] = ACTIONS(6117), + [sym_empty_literal] = ACTIONS(6117), + [sym_date_literal] = ACTIONS(6119), + [anon_sym_POUND] = ACTIONS(6117), + }, + [STATE(1256)] = { + [sym_identifier] = ACTIONS(4671), + [sym_newline] = ACTIONS(4673), + [anon_sym_COLON] = ACTIONS(4673), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4671), + [aux_sym_frm_property_statement_token1] = ACTIONS(4671), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4671), + [anon_sym_BANG] = ACTIONS(4673), + [aux_sym__attribute_identifier_token1] = ACTIONS(4671), + [aux_sym_option_statement_token3] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4671), + [aux_sym_preprocessor_const_token1] = ACTIONS(4671), + [sym_static_modifier] = ACTIONS(4671), + [sym__dim_keyword] = ACTIONS(4671), + [sym__redim_keyword] = ACTIONS(4671), + [aux_sym_get_accessor_token1] = ACTIONS(4671), + [aux_sym_set_accessor_token1] = ACTIONS(4671), + [anon_sym_COMMA] = ACTIONS(4673), + [aux_sym_const_declaration_token1] = ACTIONS(4671), + [anon_sym_LPAREN] = ACTIONS(4673), + [aux_sym_as_type_clause_token2] = ACTIONS(4671), + [anon_sym_STAR] = ACTIONS(4673), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4671), + [aux_sym_visibility_token1] = ACTIONS(4671), + [aux_sym_visibility_token2] = ACTIONS(4671), + [aux_sym_elseif_fragment_token1] = ACTIONS(4671), + [aux_sym_else_fragment_token1] = ACTIONS(4671), + [aux_sym_select_statement_token1] = ACTIONS(4671), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4671), + [aux_sym_do_statement_token1] = ACTIONS(4671), + [aux_sym_do_condition_token1] = ACTIONS(4671), + [aux_sym_with_statement_token1] = ACTIONS(4671), + [aux_sym_exit_statement_token1] = ACTIONS(4671), + [sym_end_statement] = ACTIONS(4673), + [aux_sym_on_goto_statement_token1] = ACTIONS(4671), + [aux_sym_on_goto_statement_token2] = ACTIONS(4671), + [aux_sym_on_error_statement_token2] = ACTIONS(4671), + [sym__ambiguous_redim_statement] = ACTIONS(4673), + [aux_sym_erase_statement_token1] = ACTIONS(4671), + [aux_sym_open_statement_token1] = ACTIONS(4671), + [aux_sym_file_mode_token2] = ACTIONS(4671), + [aux_sym_file_access_token2] = ACTIONS(4671), + [aux_sym_file_lock_token2] = ACTIONS(4671), + [aux_sym_print_statement_token1] = ACTIONS(4671), + [anon_sym_CARET] = ACTIONS(4673), + [anon_sym_SLASH] = ACTIONS(4673), + [anon_sym_BSLASH] = ACTIONS(4673), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4671), + [anon_sym_PLUS] = ACTIONS(4673), + [anon_sym_DASH] = ACTIONS(4671), + [anon_sym_AMP] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4671), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym_QMARK] = ACTIONS(4673), + [aux_sym_close_statement_token1] = ACTIONS(4671), + [aux_sym_put_statement_token1] = ACTIONS(4671), + [aux_sym_unlock_statement_token1] = ACTIONS(4671), + [aux_sym_seek_statement_token1] = ACTIONS(4671), + [sym_reset_statement] = ACTIONS(4671), + [aux_sym_raise_event_statement_token1] = ACTIONS(4671), + [sym_stop_statement] = ACTIONS(4671), + [sym_beep_statement] = ACTIONS(4671), + [aux_sym_unload_statement_token1] = ACTIONS(4671), + [aux_sym_def_type_statement_token1] = ACTIONS(4671), + [aux_sym_def_type_statement_token2] = ACTIONS(4671), + [aux_sym_def_type_statement_token3] = ACTIONS(4671), + [aux_sym_def_type_statement_token4] = ACTIONS(4671), + [aux_sym_def_type_statement_token5] = ACTIONS(4671), + [aux_sym_def_type_statement_token6] = ACTIONS(4671), + [aux_sym_def_type_statement_token7] = ACTIONS(4671), + [aux_sym_def_type_statement_token8] = ACTIONS(4671), + [aux_sym_def_type_statement_token9] = ACTIONS(4671), + [aux_sym_def_type_statement_token10] = ACTIONS(4671), + [aux_sym_def_type_statement_token11] = ACTIONS(4671), + [aux_sym_def_type_statement_token12] = ACTIONS(4671), + [aux_sym_def_type_statement_token13] = ACTIONS(4671), + [aux_sym_def_type_statement_token14] = ACTIONS(4671), + [aux_sym_call_statement_token1] = ACTIONS(4671), + [sym__ambiguous_call_statement] = ACTIONS(4671), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4671), + [aux_sym_type_of_expression_token1] = ACTIONS(4671), + [aux_sym_unary_expression_token1] = ACTIONS(4671), + [sym_string_literal] = ACTIONS(4673), + [sym_number_literal] = ACTIONS(4673), + [aux_sym_boolean_literal_token1] = ACTIONS(4671), + [aux_sym_boolean_literal_token2] = ACTIONS(4671), + [sym_nothing_literal] = ACTIONS(4671), + [sym_null_literal] = ACTIONS(4671), + [sym_empty_literal] = ACTIONS(4671), + [sym_date_literal] = ACTIONS(4673), + [anon_sym_POUND] = ACTIONS(4671), + }, + [STATE(1257)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_while_statement_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1258)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4709), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_select_statement_token2] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1259)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(6121), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1260)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_declaration_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4593), + [aux_sym_enum_declaration_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4593), + [aux_sym_declare_function_statement_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [aux_sym__property_get_header_token1] = ACTIONS(4593), + [aux_sym_event_declaration_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token3] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1261)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1262)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_declaration_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4597), + [aux_sym_enum_declaration_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4597), + [aux_sym_declare_function_statement_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [aux_sym__property_get_header_token1] = ACTIONS(4597), + [aux_sym_event_declaration_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token3] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1263)] = { + [sym_argument_list] = STATE(1675), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6123), + [anon_sym_BANG] = ACTIONS(6125), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(6127), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1264)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4709), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1265)] = { + [sym_identifier] = ACTIONS(4745), + [sym_newline] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4745), + [aux_sym_frm_property_statement_token1] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_BANG] = ACTIONS(4747), + [aux_sym__attribute_identifier_token1] = ACTIONS(4745), + [aux_sym_option_statement_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4745), + [aux_sym_preprocessor_const_token1] = ACTIONS(4745), + [sym_static_modifier] = ACTIONS(4745), + [sym__dim_keyword] = ACTIONS(4745), + [sym__redim_keyword] = ACTIONS(4745), + [aux_sym_get_accessor_token1] = ACTIONS(4745), + [aux_sym_set_accessor_token1] = ACTIONS(4745), + [anon_sym_COMMA] = ACTIONS(4747), + [aux_sym_const_declaration_token1] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4747), + [aux_sym_as_type_clause_token2] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4747), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4745), + [aux_sym_visibility_token1] = ACTIONS(4745), + [aux_sym_visibility_token2] = ACTIONS(4745), + [aux_sym_elseif_fragment_token1] = ACTIONS(4745), + [aux_sym_else_fragment_token1] = ACTIONS(4745), + [aux_sym_select_statement_token1] = ACTIONS(4745), + [aux_sym_select_statement_token2] = ACTIONS(4745), + [aux_sym_case_expression_token1] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_LT_EQ] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_GT_EQ] = ACTIONS(4747), + [anon_sym_LT_GT] = ACTIONS(4747), + [aux_sym__for_header_token1] = ACTIONS(4745), + [aux_sym_do_statement_token1] = ACTIONS(4745), + [aux_sym_do_condition_token1] = ACTIONS(4745), + [aux_sym_with_statement_token1] = ACTIONS(4745), + [aux_sym_exit_statement_token1] = ACTIONS(4745), + [sym_end_statement] = ACTIONS(4747), + [aux_sym_on_goto_statement_token1] = ACTIONS(4745), + [aux_sym_on_goto_statement_token2] = ACTIONS(4745), + [aux_sym_on_error_statement_token2] = ACTIONS(4745), + [sym__ambiguous_redim_statement] = ACTIONS(4747), + [aux_sym_erase_statement_token1] = ACTIONS(4745), + [aux_sym_open_statement_token1] = ACTIONS(4745), + [aux_sym_file_mode_token2] = ACTIONS(4745), + [aux_sym_file_access_token2] = ACTIONS(4745), + [aux_sym_file_lock_token2] = ACTIONS(4745), + [aux_sym_print_statement_token1] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_BSLASH] = ACTIONS(4747), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4745), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [aux_sym_close_statement_token1] = ACTIONS(4745), + [aux_sym_put_statement_token1] = ACTIONS(4745), + [aux_sym_unlock_statement_token1] = ACTIONS(4745), + [aux_sym_seek_statement_token1] = ACTIONS(4745), + [sym_reset_statement] = ACTIONS(4745), + [aux_sym_raise_event_statement_token1] = ACTIONS(4745), + [sym_stop_statement] = ACTIONS(4745), + [sym_beep_statement] = ACTIONS(4745), + [aux_sym_unload_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token2] = ACTIONS(4745), + [aux_sym_def_type_statement_token3] = ACTIONS(4745), + [aux_sym_def_type_statement_token4] = ACTIONS(4745), + [aux_sym_def_type_statement_token5] = ACTIONS(4745), + [aux_sym_def_type_statement_token6] = ACTIONS(4745), + [aux_sym_def_type_statement_token7] = ACTIONS(4745), + [aux_sym_def_type_statement_token8] = ACTIONS(4745), + [aux_sym_def_type_statement_token9] = ACTIONS(4745), + [aux_sym_def_type_statement_token10] = ACTIONS(4745), + [aux_sym_def_type_statement_token11] = ACTIONS(4745), + [aux_sym_def_type_statement_token12] = ACTIONS(4745), + [aux_sym_def_type_statement_token13] = ACTIONS(4745), + [aux_sym_def_type_statement_token14] = ACTIONS(4745), + [aux_sym_call_statement_token1] = ACTIONS(4745), + [sym__ambiguous_call_statement] = ACTIONS(4745), + [aux_sym_comparison_operator_token1] = ACTIONS(4745), + [aux_sym_addressof_expression_token1] = ACTIONS(4745), + [aux_sym_type_of_expression_token1] = ACTIONS(4745), + [aux_sym_unary_expression_token1] = ACTIONS(4745), + [sym_string_literal] = ACTIONS(4747), + [sym_number_literal] = ACTIONS(4747), + [aux_sym_boolean_literal_token1] = ACTIONS(4745), + [aux_sym_boolean_literal_token2] = ACTIONS(4745), + [sym_nothing_literal] = ACTIONS(4745), + [sym_null_literal] = ACTIONS(4745), + [sym_empty_literal] = ACTIONS(4745), + [sym_date_literal] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4745), + }, + [STATE(1266)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_while_statement_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1267)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_select_statement_token2] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1268)] = { + [sym_argument_list] = STATE(1489), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6129), + [anon_sym_BANG] = ACTIONS(6131), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(6133), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_statement_token2] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1269)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_while_statement_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1270)] = { + [sym_identifier] = ACTIONS(4745), + [sym_newline] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4745), + [aux_sym_frm_property_statement_token1] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_BANG] = ACTIONS(4747), + [aux_sym__attribute_identifier_token1] = ACTIONS(4745), + [aux_sym_option_statement_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4745), + [aux_sym_preprocessor_const_token1] = ACTIONS(4745), + [sym_static_modifier] = ACTIONS(4745), + [sym__dim_keyword] = ACTIONS(4745), + [sym__redim_keyword] = ACTIONS(4745), + [aux_sym_get_accessor_token1] = ACTIONS(4745), + [aux_sym_set_accessor_token1] = ACTIONS(4745), + [anon_sym_COMMA] = ACTIONS(4747), + [aux_sym_const_declaration_token1] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4747), + [aux_sym_as_type_clause_token2] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4747), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4745), + [aux_sym_visibility_token1] = ACTIONS(4745), + [aux_sym_visibility_token2] = ACTIONS(4745), + [aux_sym_elseif_fragment_token1] = ACTIONS(4745), + [aux_sym_else_fragment_token1] = ACTIONS(4745), + [aux_sym_select_statement_token1] = ACTIONS(4745), + [aux_sym_case_expression_token1] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_LT_EQ] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_GT_EQ] = ACTIONS(4747), + [anon_sym_LT_GT] = ACTIONS(4747), + [aux_sym__for_header_token1] = ACTIONS(4745), + [aux_sym_do_statement_token1] = ACTIONS(4745), + [aux_sym_do_condition_token1] = ACTIONS(4745), + [aux_sym_with_statement_token1] = ACTIONS(4745), + [aux_sym_exit_statement_token1] = ACTIONS(4745), + [sym_end_statement] = ACTIONS(4747), + [aux_sym_on_goto_statement_token1] = ACTIONS(4745), + [aux_sym_on_goto_statement_token2] = ACTIONS(4745), + [aux_sym_on_error_statement_token2] = ACTIONS(4745), + [sym__ambiguous_redim_statement] = ACTIONS(4747), + [aux_sym_erase_statement_token1] = ACTIONS(4745), + [aux_sym_open_statement_token1] = ACTIONS(4745), + [aux_sym_file_mode_token2] = ACTIONS(4745), + [aux_sym_file_access_token2] = ACTIONS(4745), + [aux_sym_file_lock_token2] = ACTIONS(4745), + [aux_sym_print_statement_token1] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_BSLASH] = ACTIONS(4747), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4745), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [aux_sym_close_statement_token1] = ACTIONS(4745), + [aux_sym_put_statement_token1] = ACTIONS(4745), + [aux_sym_unlock_statement_token1] = ACTIONS(4745), + [aux_sym_seek_statement_token1] = ACTIONS(4745), + [sym_reset_statement] = ACTIONS(4745), + [aux_sym_raise_event_statement_token1] = ACTIONS(4745), + [sym_stop_statement] = ACTIONS(4745), + [sym_beep_statement] = ACTIONS(4745), + [aux_sym_unload_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token2] = ACTIONS(4745), + [aux_sym_def_type_statement_token3] = ACTIONS(4745), + [aux_sym_def_type_statement_token4] = ACTIONS(4745), + [aux_sym_def_type_statement_token5] = ACTIONS(4745), + [aux_sym_def_type_statement_token6] = ACTIONS(4745), + [aux_sym_def_type_statement_token7] = ACTIONS(4745), + [aux_sym_def_type_statement_token8] = ACTIONS(4745), + [aux_sym_def_type_statement_token9] = ACTIONS(4745), + [aux_sym_def_type_statement_token10] = ACTIONS(4745), + [aux_sym_def_type_statement_token11] = ACTIONS(4745), + [aux_sym_def_type_statement_token12] = ACTIONS(4745), + [aux_sym_def_type_statement_token13] = ACTIONS(4745), + [aux_sym_def_type_statement_token14] = ACTIONS(4745), + [aux_sym_call_statement_token1] = ACTIONS(4745), + [sym__ambiguous_call_statement] = ACTIONS(4745), + [aux_sym_comparison_operator_token1] = ACTIONS(4745), + [aux_sym_addressof_expression_token1] = ACTIONS(4745), + [aux_sym_type_of_expression_token1] = ACTIONS(4745), + [aux_sym_unary_expression_token1] = ACTIONS(4745), + [sym_string_literal] = ACTIONS(4747), + [sym_number_literal] = ACTIONS(4747), + [aux_sym_boolean_literal_token1] = ACTIONS(4745), + [aux_sym_boolean_literal_token2] = ACTIONS(4745), + [sym_nothing_literal] = ACTIONS(4745), + [sym_null_literal] = ACTIONS(4745), + [sym_empty_literal] = ACTIONS(4745), + [sym_date_literal] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4745), + }, + [STATE(1271)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1272)] = { + [sym_identifier] = ACTIONS(4759), + [sym_newline] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4761), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4759), + [aux_sym_frm_property_statement_token1] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4761), + [aux_sym__attribute_identifier_token1] = ACTIONS(4759), + [aux_sym_option_statement_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4759), + [aux_sym_preprocessor_const_token1] = ACTIONS(4759), + [sym_static_modifier] = ACTIONS(4759), + [sym__dim_keyword] = ACTIONS(4759), + [sym__redim_keyword] = ACTIONS(4759), + [aux_sym_get_accessor_token1] = ACTIONS(4759), + [aux_sym_set_accessor_token1] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [aux_sym_const_declaration_token1] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4763), + [aux_sym_as_type_clause_token2] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4759), + [aux_sym_visibility_token1] = ACTIONS(4759), + [aux_sym_visibility_token2] = ACTIONS(4759), + [aux_sym_elseif_fragment_token1] = ACTIONS(4759), + [aux_sym_else_fragment_token1] = ACTIONS(4759), + [aux_sym_select_statement_token1] = ACTIONS(4759), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4759), + [aux_sym__for_header_token1] = ACTIONS(4759), + [aux_sym_do_statement_token1] = ACTIONS(4759), + [aux_sym_do_condition_token1] = ACTIONS(4759), + [aux_sym_with_statement_token1] = ACTIONS(4759), + [aux_sym_exit_statement_token1] = ACTIONS(4759), + [sym_end_statement] = ACTIONS(4761), + [aux_sym_on_goto_statement_token1] = ACTIONS(4759), + [aux_sym_on_goto_statement_token2] = ACTIONS(4759), + [aux_sym_on_error_statement_token2] = ACTIONS(4759), + [sym__ambiguous_redim_statement] = ACTIONS(4761), + [aux_sym_erase_statement_token1] = ACTIONS(4759), + [aux_sym_open_statement_token1] = ACTIONS(4759), + [aux_sym_file_mode_token2] = ACTIONS(4759), + [aux_sym_file_access_token2] = ACTIONS(4759), + [aux_sym_file_lock_token2] = ACTIONS(4759), + [aux_sym_print_statement_token1] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_QMARK] = ACTIONS(4761), + [aux_sym_close_statement_token1] = ACTIONS(4759), + [aux_sym_put_statement_token1] = ACTIONS(4759), + [aux_sym_unlock_statement_token1] = ACTIONS(4759), + [aux_sym_seek_statement_token1] = ACTIONS(4759), + [sym_reset_statement] = ACTIONS(4759), + [aux_sym_raise_event_statement_token1] = ACTIONS(4759), + [sym_stop_statement] = ACTIONS(4759), + [sym_beep_statement] = ACTIONS(4759), + [aux_sym_unload_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token2] = ACTIONS(4759), + [aux_sym_def_type_statement_token3] = ACTIONS(4759), + [aux_sym_def_type_statement_token4] = ACTIONS(4759), + [aux_sym_def_type_statement_token5] = ACTIONS(4759), + [aux_sym_def_type_statement_token6] = ACTIONS(4759), + [aux_sym_def_type_statement_token7] = ACTIONS(4759), + [aux_sym_def_type_statement_token8] = ACTIONS(4759), + [aux_sym_def_type_statement_token9] = ACTIONS(4759), + [aux_sym_def_type_statement_token10] = ACTIONS(4759), + [aux_sym_def_type_statement_token11] = ACTIONS(4759), + [aux_sym_def_type_statement_token12] = ACTIONS(4759), + [aux_sym_def_type_statement_token13] = ACTIONS(4759), + [aux_sym_def_type_statement_token14] = ACTIONS(4759), + [aux_sym_call_statement_token1] = ACTIONS(4759), + [sym__ambiguous_call_statement] = ACTIONS(4759), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4759), + [aux_sym_type_of_expression_token1] = ACTIONS(4759), + [aux_sym_unary_expression_token1] = ACTIONS(4759), + [sym_string_literal] = ACTIONS(4761), + [sym_number_literal] = ACTIONS(4761), + [aux_sym_boolean_literal_token1] = ACTIONS(4759), + [aux_sym_boolean_literal_token2] = ACTIONS(4759), + [sym_nothing_literal] = ACTIONS(4759), + [sym_null_literal] = ACTIONS(4759), + [sym_empty_literal] = ACTIONS(4759), + [sym_date_literal] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(4759), + }, + [STATE(1273)] = { + [sym_identifier] = ACTIONS(4759), + [sym_newline] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4761), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4759), + [aux_sym_frm_property_statement_token1] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4761), + [aux_sym__attribute_identifier_token1] = ACTIONS(4759), + [aux_sym_option_statement_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4759), + [aux_sym_preprocessor_const_token1] = ACTIONS(4759), + [sym_static_modifier] = ACTIONS(4759), + [sym__dim_keyword] = ACTIONS(4759), + [sym__redim_keyword] = ACTIONS(4759), + [aux_sym_get_accessor_token1] = ACTIONS(4759), + [aux_sym_set_accessor_token1] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [aux_sym_const_declaration_token1] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4761), + [aux_sym_as_type_clause_token2] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4759), + [aux_sym_visibility_token1] = ACTIONS(4759), + [aux_sym_visibility_token2] = ACTIONS(4759), + [aux_sym_elseif_fragment_token1] = ACTIONS(4759), + [aux_sym_else_fragment_token1] = ACTIONS(4759), + [aux_sym_select_statement_token1] = ACTIONS(4759), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4759), + [aux_sym__for_header_token1] = ACTIONS(4759), + [aux_sym_do_statement_token1] = ACTIONS(4759), + [aux_sym_do_condition_token1] = ACTIONS(4759), + [aux_sym_with_statement_token1] = ACTIONS(4759), + [aux_sym_exit_statement_token1] = ACTIONS(4759), + [sym_end_statement] = ACTIONS(4761), + [aux_sym_on_goto_statement_token1] = ACTIONS(4759), + [aux_sym_on_goto_statement_token2] = ACTIONS(4759), + [aux_sym_on_error_statement_token2] = ACTIONS(4759), + [sym__ambiguous_redim_statement] = ACTIONS(4761), + [aux_sym_erase_statement_token1] = ACTIONS(4759), + [aux_sym_open_statement_token1] = ACTIONS(4759), + [aux_sym_file_mode_token2] = ACTIONS(4759), + [aux_sym_file_access_token2] = ACTIONS(4759), + [aux_sym_file_lock_token2] = ACTIONS(4759), + [aux_sym_print_statement_token1] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_QMARK] = ACTIONS(4761), + [aux_sym_close_statement_token1] = ACTIONS(4759), + [aux_sym_put_statement_token1] = ACTIONS(4759), + [aux_sym_unlock_statement_token1] = ACTIONS(4759), + [aux_sym_seek_statement_token1] = ACTIONS(4759), + [sym_reset_statement] = ACTIONS(4759), + [aux_sym_raise_event_statement_token1] = ACTIONS(4759), + [sym_stop_statement] = ACTIONS(4759), + [sym_beep_statement] = ACTIONS(4759), + [aux_sym_unload_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token2] = ACTIONS(4759), + [aux_sym_def_type_statement_token3] = ACTIONS(4759), + [aux_sym_def_type_statement_token4] = ACTIONS(4759), + [aux_sym_def_type_statement_token5] = ACTIONS(4759), + [aux_sym_def_type_statement_token6] = ACTIONS(4759), + [aux_sym_def_type_statement_token7] = ACTIONS(4759), + [aux_sym_def_type_statement_token8] = ACTIONS(4759), + [aux_sym_def_type_statement_token9] = ACTIONS(4759), + [aux_sym_def_type_statement_token10] = ACTIONS(4759), + [aux_sym_def_type_statement_token11] = ACTIONS(4759), + [aux_sym_def_type_statement_token12] = ACTIONS(4759), + [aux_sym_def_type_statement_token13] = ACTIONS(4759), + [aux_sym_def_type_statement_token14] = ACTIONS(4759), + [aux_sym_call_statement_token1] = ACTIONS(4759), + [sym__ambiguous_call_statement] = ACTIONS(4759), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4759), + [aux_sym_type_of_expression_token1] = ACTIONS(4759), + [aux_sym_unary_expression_token1] = ACTIONS(4759), + [sym_string_literal] = ACTIONS(4761), + [sym_number_literal] = ACTIONS(4761), + [aux_sym_boolean_literal_token1] = ACTIONS(4759), + [aux_sym_boolean_literal_token2] = ACTIONS(4759), + [sym_nothing_literal] = ACTIONS(4759), + [sym_null_literal] = ACTIONS(4759), + [sym_empty_literal] = ACTIONS(4759), + [sym_date_literal] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(4759), + }, + [STATE(1274)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6135), + [anon_sym_BANG] = ACTIONS(6137), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4806), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4410), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(1275)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_declaration_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4593), + [aux_sym_enum_declaration_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4593), + [aux_sym_declare_function_statement_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [aux_sym__property_get_header_token1] = ACTIONS(4593), + [aux_sym_event_declaration_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_array_bound_token1] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1276)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4412), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4412), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4410), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(1277)] = { + [sym_identifier] = ACTIONS(4420), + [sym_newline] = ACTIONS(4422), + [anon_sym_COLON] = ACTIONS(4422), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4420), + [aux_sym_frm_property_statement_token1] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6135), + [anon_sym_BANG] = ACTIONS(6137), + [aux_sym__attribute_identifier_token1] = ACTIONS(4420), + [aux_sym_option_statement_token3] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4420), + [aux_sym_preprocessor_const_token1] = ACTIONS(4420), + [sym_static_modifier] = ACTIONS(4420), + [sym__dim_keyword] = ACTIONS(4420), + [sym__redim_keyword] = ACTIONS(4420), + [aux_sym_get_accessor_token1] = ACTIONS(4420), + [aux_sym_set_accessor_token1] = ACTIONS(4420), + [anon_sym_COMMA] = ACTIONS(4422), + [aux_sym_const_declaration_token1] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4428), + [aux_sym_as_type_clause_token2] = ACTIONS(4420), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4420), + [aux_sym_visibility_token1] = ACTIONS(4420), + [aux_sym_visibility_token2] = ACTIONS(4420), + [aux_sym_elseif_fragment_token1] = ACTIONS(4420), + [aux_sym_else_fragment_token1] = ACTIONS(4420), + [aux_sym_select_statement_token1] = ACTIONS(4420), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4420), + [aux_sym__for_header_token1] = ACTIONS(4420), + [aux_sym_do_statement_token1] = ACTIONS(4420), + [aux_sym_do_condition_token1] = ACTIONS(4420), + [aux_sym_with_statement_token1] = ACTIONS(4420), + [aux_sym_exit_statement_token1] = ACTIONS(4420), + [sym_end_statement] = ACTIONS(4422), + [aux_sym_on_goto_statement_token1] = ACTIONS(4420), + [aux_sym_on_goto_statement_token2] = ACTIONS(4420), + [aux_sym_on_error_statement_token2] = ACTIONS(4420), + [sym__ambiguous_redim_statement] = ACTIONS(4422), + [aux_sym_erase_statement_token1] = ACTIONS(4420), + [aux_sym_open_statement_token1] = ACTIONS(4420), + [aux_sym_file_mode_token2] = ACTIONS(4420), + [aux_sym_file_access_token2] = ACTIONS(4420), + [aux_sym_file_lock_token2] = ACTIONS(4420), + [aux_sym_print_statement_token1] = ACTIONS(4420), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4431), + [anon_sym_DASH] = ACTIONS(4434), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym_QMARK] = ACTIONS(4422), + [aux_sym_close_statement_token1] = ACTIONS(4420), + [aux_sym_put_statement_token1] = ACTIONS(4420), + [aux_sym_unlock_statement_token1] = ACTIONS(4420), + [aux_sym_seek_statement_token1] = ACTIONS(4420), + [sym_reset_statement] = ACTIONS(4420), + [aux_sym_raise_event_statement_token1] = ACTIONS(4420), + [sym_stop_statement] = ACTIONS(4420), + [sym_beep_statement] = ACTIONS(4420), + [aux_sym_unload_statement_token1] = ACTIONS(4420), + [aux_sym_def_type_statement_token1] = ACTIONS(4420), + [aux_sym_def_type_statement_token2] = ACTIONS(4420), + [aux_sym_def_type_statement_token3] = ACTIONS(4420), + [aux_sym_def_type_statement_token4] = ACTIONS(4420), + [aux_sym_def_type_statement_token5] = ACTIONS(4420), + [aux_sym_def_type_statement_token6] = ACTIONS(4420), + [aux_sym_def_type_statement_token7] = ACTIONS(4420), + [aux_sym_def_type_statement_token8] = ACTIONS(4420), + [aux_sym_def_type_statement_token9] = ACTIONS(4420), + [aux_sym_def_type_statement_token10] = ACTIONS(4420), + [aux_sym_def_type_statement_token11] = ACTIONS(4420), + [aux_sym_def_type_statement_token12] = ACTIONS(4420), + [aux_sym_def_type_statement_token13] = ACTIONS(4420), + [aux_sym_def_type_statement_token14] = ACTIONS(4420), + [aux_sym_call_statement_token1] = ACTIONS(4420), + [sym__ambiguous_call_statement] = ACTIONS(4420), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4420), + [aux_sym_type_of_expression_token1] = ACTIONS(4420), + [aux_sym_unary_expression_token1] = ACTIONS(4420), + [sym_string_literal] = ACTIONS(4422), + [sym_number_literal] = ACTIONS(4422), + [aux_sym_boolean_literal_token1] = ACTIONS(4420), + [aux_sym_boolean_literal_token2] = ACTIONS(4420), + [sym_nothing_literal] = ACTIONS(4420), + [sym_null_literal] = ACTIONS(4420), + [sym_empty_literal] = ACTIONS(4420), + [sym_date_literal] = ACTIONS(4422), + [anon_sym_POUND] = ACTIONS(4420), + }, + [STATE(1278)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5917), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5917), + [anon_sym_BSLASH] = ACTIONS(5921), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5923), + [anon_sym_PLUS] = ACTIONS(5925), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1279)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_statement_token2] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1280)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_while_statement_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1281)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_while_statement_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1282)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1283)] = { + [sym_identifier] = ACTIONS(6139), + [sym_newline] = ACTIONS(6141), + [anon_sym_COLON] = ACTIONS(6141), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6139), + [aux_sym_frm_property_statement_token1] = ACTIONS(6139), + [anon_sym_DOT] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6141), + [aux_sym__attribute_identifier_token1] = ACTIONS(6139), + [aux_sym_option_statement_token3] = ACTIONS(6139), + [aux_sym_type_declaration_token1] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6139), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6139), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6139), + [aux_sym_enum_declaration_token1] = ACTIONS(6139), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6139), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6139), + [aux_sym_declare_function_statement_token1] = ACTIONS(6139), + [aux_sym_preprocessor_const_token1] = ACTIONS(6139), + [aux_sym__property_get_header_token1] = ACTIONS(6139), + [aux_sym_event_declaration_token1] = ACTIONS(6139), + [sym_static_modifier] = ACTIONS(6139), + [sym__dim_keyword] = ACTIONS(6139), + [sym__redim_keyword] = ACTIONS(6139), + [aux_sym_get_accessor_token1] = ACTIONS(6139), + [aux_sym_set_accessor_token1] = ACTIONS(6139), + [aux_sym_const_declaration_token1] = ACTIONS(6139), + [anon_sym_LPAREN] = ACTIONS(6141), + [aux_sym_as_type_clause_token2] = ACTIONS(6139), + [anon_sym_STAR] = ACTIONS(5987), + [aux_sym_array_bound_token1] = ACTIONS(6143), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6139), + [aux_sym_visibility_token1] = ACTIONS(6139), + [aux_sym_visibility_token2] = ACTIONS(6139), + [aux_sym_elseif_fragment_token1] = ACTIONS(6139), + [aux_sym_else_fragment_token1] = ACTIONS(6139), + [aux_sym_select_statement_token1] = ACTIONS(6139), + [aux_sym__for_header_token1] = ACTIONS(6139), + [aux_sym_do_statement_token1] = ACTIONS(6139), + [aux_sym_do_condition_token1] = ACTIONS(6139), + [aux_sym_with_statement_token1] = ACTIONS(6139), + [aux_sym_exit_statement_token1] = ACTIONS(6139), + [sym_end_statement] = ACTIONS(6141), + [aux_sym_on_goto_statement_token1] = ACTIONS(6139), + [aux_sym_on_goto_statement_token2] = ACTIONS(6139), + [aux_sym_on_error_statement_token2] = ACTIONS(6139), + [sym__ambiguous_redim_statement] = ACTIONS(6141), + [aux_sym_erase_statement_token1] = ACTIONS(6139), + [aux_sym_open_statement_token1] = ACTIONS(6139), + [aux_sym_file_mode_token2] = ACTIONS(6139), + [aux_sym_file_access_token2] = ACTIONS(6139), + [aux_sym_file_lock_token2] = ACTIONS(6139), + [aux_sym_print_statement_token1] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(5985), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_BSLASH] = ACTIONS(5989), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5991), + [anon_sym_PLUS] = ACTIONS(5993), + [anon_sym_DASH] = ACTIONS(5995), + [anon_sym_AMP] = ACTIONS(5997), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5999), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6001), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6003), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6005), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6145), + [anon_sym_QMARK] = ACTIONS(6141), + [aux_sym_close_statement_token1] = ACTIONS(6139), + [aux_sym_put_statement_token1] = ACTIONS(6139), + [aux_sym_unlock_statement_token1] = ACTIONS(6139), + [aux_sym_seek_statement_token1] = ACTIONS(6139), + [sym_reset_statement] = ACTIONS(6139), + [aux_sym_raise_event_statement_token1] = ACTIONS(6139), + [sym_stop_statement] = ACTIONS(6139), + [sym_beep_statement] = ACTIONS(6139), + [aux_sym_unload_statement_token1] = ACTIONS(6139), + [aux_sym_def_type_statement_token1] = ACTIONS(6139), + [aux_sym_def_type_statement_token2] = ACTIONS(6139), + [aux_sym_def_type_statement_token3] = ACTIONS(6139), + [aux_sym_def_type_statement_token4] = ACTIONS(6139), + [aux_sym_def_type_statement_token5] = ACTIONS(6139), + [aux_sym_def_type_statement_token6] = ACTIONS(6139), + [aux_sym_def_type_statement_token7] = ACTIONS(6139), + [aux_sym_def_type_statement_token8] = ACTIONS(6139), + [aux_sym_def_type_statement_token9] = ACTIONS(6139), + [aux_sym_def_type_statement_token10] = ACTIONS(6139), + [aux_sym_def_type_statement_token11] = ACTIONS(6139), + [aux_sym_def_type_statement_token12] = ACTIONS(6139), + [aux_sym_def_type_statement_token13] = ACTIONS(6139), + [aux_sym_def_type_statement_token14] = ACTIONS(6139), + [aux_sym_call_statement_token1] = ACTIONS(6139), + [sym__ambiguous_call_statement] = ACTIONS(6139), + [aux_sym_addressof_expression_token1] = ACTIONS(6139), + [aux_sym_type_of_expression_token1] = ACTIONS(6139), + [aux_sym_unary_expression_token1] = ACTIONS(6139), + [sym_string_literal] = ACTIONS(6141), + [sym_number_literal] = ACTIONS(6141), + [aux_sym_boolean_literal_token1] = ACTIONS(6139), + [aux_sym_boolean_literal_token2] = ACTIONS(6139), + [sym_nothing_literal] = ACTIONS(6139), + [sym_null_literal] = ACTIONS(6139), + [sym_empty_literal] = ACTIONS(6139), + [sym_date_literal] = ACTIONS(6141), + [anon_sym_POUND] = ACTIONS(6139), + }, + [STATE(1284)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_declaration_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4597), + [aux_sym_enum_declaration_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4597), + [aux_sym_declare_function_statement_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [aux_sym__property_get_header_token1] = ACTIONS(4597), + [aux_sym_event_declaration_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_array_bound_token1] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1285)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1286)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1287)] = { + [sym_identifier] = ACTIONS(4671), + [sym_newline] = ACTIONS(4673), + [anon_sym_COLON] = ACTIONS(4673), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4671), + [aux_sym_frm_property_statement_token1] = ACTIONS(4671), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4671), + [anon_sym_BANG] = ACTIONS(4673), + [aux_sym__attribute_identifier_token1] = ACTIONS(4671), + [aux_sym_option_statement_token3] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4671), + [aux_sym_preprocessor_const_token1] = ACTIONS(4671), + [sym_static_modifier] = ACTIONS(4671), + [sym__dim_keyword] = ACTIONS(4671), + [sym__redim_keyword] = ACTIONS(4671), + [aux_sym_get_accessor_token1] = ACTIONS(4671), + [aux_sym_set_accessor_token1] = ACTIONS(4671), + [anon_sym_COMMA] = ACTIONS(4673), + [aux_sym_const_declaration_token1] = ACTIONS(4671), + [anon_sym_LPAREN] = ACTIONS(4673), + [aux_sym_as_type_clause_token2] = ACTIONS(4671), + [anon_sym_STAR] = ACTIONS(4673), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4671), + [aux_sym_visibility_token1] = ACTIONS(4671), + [aux_sym_visibility_token2] = ACTIONS(4671), + [aux_sym_elseif_fragment_token1] = ACTIONS(4671), + [aux_sym_else_fragment_token1] = ACTIONS(4671), + [aux_sym_select_statement_token1] = ACTIONS(4671), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4671), + [aux_sym__for_header_token1] = ACTIONS(4671), + [aux_sym_do_statement_token1] = ACTIONS(4671), + [aux_sym_do_condition_token1] = ACTIONS(4671), + [aux_sym_with_statement_token1] = ACTIONS(4671), + [aux_sym_exit_statement_token1] = ACTIONS(4671), + [sym_end_statement] = ACTIONS(4673), + [aux_sym_on_goto_statement_token1] = ACTIONS(4671), + [aux_sym_on_goto_statement_token2] = ACTIONS(4671), + [aux_sym_on_error_statement_token2] = ACTIONS(4671), + [sym__ambiguous_redim_statement] = ACTIONS(4673), + [aux_sym_erase_statement_token1] = ACTIONS(4671), + [aux_sym_open_statement_token1] = ACTIONS(4671), + [aux_sym_file_mode_token2] = ACTIONS(4671), + [aux_sym_file_access_token2] = ACTIONS(4671), + [aux_sym_file_lock_token2] = ACTIONS(4671), + [aux_sym_print_statement_token1] = ACTIONS(4671), + [anon_sym_CARET] = ACTIONS(4673), + [anon_sym_SLASH] = ACTIONS(4673), + [anon_sym_BSLASH] = ACTIONS(4673), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4671), + [anon_sym_PLUS] = ACTIONS(4673), + [anon_sym_DASH] = ACTIONS(4671), + [anon_sym_AMP] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4671), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym_QMARK] = ACTIONS(4673), + [aux_sym_close_statement_token1] = ACTIONS(4671), + [aux_sym_put_statement_token1] = ACTIONS(4671), + [aux_sym_unlock_statement_token1] = ACTIONS(4671), + [aux_sym_seek_statement_token1] = ACTIONS(4671), + [sym_reset_statement] = ACTIONS(4671), + [aux_sym_raise_event_statement_token1] = ACTIONS(4671), + [sym_stop_statement] = ACTIONS(4671), + [sym_beep_statement] = ACTIONS(4671), + [aux_sym_unload_statement_token1] = ACTIONS(4671), + [aux_sym_def_type_statement_token1] = ACTIONS(4671), + [aux_sym_def_type_statement_token2] = ACTIONS(4671), + [aux_sym_def_type_statement_token3] = ACTIONS(4671), + [aux_sym_def_type_statement_token4] = ACTIONS(4671), + [aux_sym_def_type_statement_token5] = ACTIONS(4671), + [aux_sym_def_type_statement_token6] = ACTIONS(4671), + [aux_sym_def_type_statement_token7] = ACTIONS(4671), + [aux_sym_def_type_statement_token8] = ACTIONS(4671), + [aux_sym_def_type_statement_token9] = ACTIONS(4671), + [aux_sym_def_type_statement_token10] = ACTIONS(4671), + [aux_sym_def_type_statement_token11] = ACTIONS(4671), + [aux_sym_def_type_statement_token12] = ACTIONS(4671), + [aux_sym_def_type_statement_token13] = ACTIONS(4671), + [aux_sym_def_type_statement_token14] = ACTIONS(4671), + [aux_sym_call_statement_token1] = ACTIONS(4671), + [sym__ambiguous_call_statement] = ACTIONS(4671), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4671), + [aux_sym_type_of_expression_token1] = ACTIONS(4671), + [aux_sym_unary_expression_token1] = ACTIONS(4671), + [sym_string_literal] = ACTIONS(4673), + [sym_number_literal] = ACTIONS(4673), + [aux_sym_boolean_literal_token1] = ACTIONS(4671), + [aux_sym_boolean_literal_token2] = ACTIONS(4671), + [sym_nothing_literal] = ACTIONS(4671), + [sym_null_literal] = ACTIONS(4671), + [sym_empty_literal] = ACTIONS(4671), + [sym_date_literal] = ACTIONS(4673), + [anon_sym_POUND] = ACTIONS(4671), + }, + [STATE(1288)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1289)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1361), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(6147), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1290)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1291)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4709), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1292)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1293)] = { + [sym_identifier] = ACTIONS(4745), + [sym_newline] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4745), + [aux_sym_frm_property_statement_token1] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_BANG] = ACTIONS(4747), + [aux_sym__attribute_identifier_token1] = ACTIONS(4745), + [aux_sym_option_statement_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4745), + [aux_sym_preprocessor_const_token1] = ACTIONS(4745), + [sym_static_modifier] = ACTIONS(4745), + [sym__dim_keyword] = ACTIONS(4745), + [sym__redim_keyword] = ACTIONS(4745), + [aux_sym_get_accessor_token1] = ACTIONS(4745), + [aux_sym_set_accessor_token1] = ACTIONS(4745), + [anon_sym_COMMA] = ACTIONS(4747), + [aux_sym_const_declaration_token1] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4747), + [aux_sym_as_type_clause_token2] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4747), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4745), + [aux_sym_visibility_token1] = ACTIONS(4745), + [aux_sym_visibility_token2] = ACTIONS(4745), + [aux_sym_elseif_fragment_token1] = ACTIONS(4745), + [aux_sym_else_fragment_token1] = ACTIONS(4745), + [aux_sym_select_statement_token1] = ACTIONS(4745), + [aux_sym_case_expression_token1] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_LT_EQ] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_GT_EQ] = ACTIONS(4747), + [anon_sym_LT_GT] = ACTIONS(4747), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4745), + [aux_sym__for_header_token1] = ACTIONS(4745), + [aux_sym_do_statement_token1] = ACTIONS(4745), + [aux_sym_do_condition_token1] = ACTIONS(4745), + [aux_sym_with_statement_token1] = ACTIONS(4745), + [aux_sym_exit_statement_token1] = ACTIONS(4745), + [sym_end_statement] = ACTIONS(4747), + [aux_sym_on_goto_statement_token1] = ACTIONS(4745), + [aux_sym_on_goto_statement_token2] = ACTIONS(4745), + [aux_sym_on_error_statement_token2] = ACTIONS(4745), + [sym__ambiguous_redim_statement] = ACTIONS(4747), + [aux_sym_erase_statement_token1] = ACTIONS(4745), + [aux_sym_open_statement_token1] = ACTIONS(4745), + [aux_sym_file_mode_token2] = ACTIONS(4745), + [aux_sym_file_access_token2] = ACTIONS(4745), + [aux_sym_file_lock_token2] = ACTIONS(4745), + [aux_sym_print_statement_token1] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_BSLASH] = ACTIONS(4747), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4745), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [aux_sym_close_statement_token1] = ACTIONS(4745), + [aux_sym_put_statement_token1] = ACTIONS(4745), + [aux_sym_unlock_statement_token1] = ACTIONS(4745), + [aux_sym_seek_statement_token1] = ACTIONS(4745), + [sym_reset_statement] = ACTIONS(4745), + [aux_sym_raise_event_statement_token1] = ACTIONS(4745), + [sym_stop_statement] = ACTIONS(4745), + [sym_beep_statement] = ACTIONS(4745), + [aux_sym_unload_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token2] = ACTIONS(4745), + [aux_sym_def_type_statement_token3] = ACTIONS(4745), + [aux_sym_def_type_statement_token4] = ACTIONS(4745), + [aux_sym_def_type_statement_token5] = ACTIONS(4745), + [aux_sym_def_type_statement_token6] = ACTIONS(4745), + [aux_sym_def_type_statement_token7] = ACTIONS(4745), + [aux_sym_def_type_statement_token8] = ACTIONS(4745), + [aux_sym_def_type_statement_token9] = ACTIONS(4745), + [aux_sym_def_type_statement_token10] = ACTIONS(4745), + [aux_sym_def_type_statement_token11] = ACTIONS(4745), + [aux_sym_def_type_statement_token12] = ACTIONS(4745), + [aux_sym_def_type_statement_token13] = ACTIONS(4745), + [aux_sym_def_type_statement_token14] = ACTIONS(4745), + [aux_sym_call_statement_token1] = ACTIONS(4745), + [sym__ambiguous_call_statement] = ACTIONS(4745), + [aux_sym_comparison_operator_token1] = ACTIONS(4745), + [aux_sym_addressof_expression_token1] = ACTIONS(4745), + [aux_sym_type_of_expression_token1] = ACTIONS(4745), + [aux_sym_unary_expression_token1] = ACTIONS(4745), + [sym_string_literal] = ACTIONS(4747), + [sym_number_literal] = ACTIONS(4747), + [aux_sym_boolean_literal_token1] = ACTIONS(4745), + [aux_sym_boolean_literal_token2] = ACTIONS(4745), + [sym_nothing_literal] = ACTIONS(4745), + [sym_null_literal] = ACTIONS(4745), + [sym_empty_literal] = ACTIONS(4745), + [sym_date_literal] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4745), + }, + [STATE(1294)] = { + [sym_identifier] = ACTIONS(4745), + [sym_newline] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4745), + [aux_sym_frm_property_statement_token1] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_BANG] = ACTIONS(4747), + [aux_sym__attribute_identifier_token1] = ACTIONS(4745), + [aux_sym_option_statement_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4745), + [aux_sym_preprocessor_const_token1] = ACTIONS(4745), + [sym_static_modifier] = ACTIONS(4745), + [sym__dim_keyword] = ACTIONS(4745), + [sym__redim_keyword] = ACTIONS(4745), + [aux_sym_get_accessor_token1] = ACTIONS(4745), + [aux_sym_set_accessor_token1] = ACTIONS(4745), + [anon_sym_COMMA] = ACTIONS(4747), + [aux_sym_const_declaration_token1] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4747), + [aux_sym_as_type_clause_token2] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4747), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4745), + [aux_sym_visibility_token1] = ACTIONS(4745), + [aux_sym_visibility_token2] = ACTIONS(4745), + [aux_sym_elseif_fragment_token1] = ACTIONS(4745), + [aux_sym_else_fragment_token1] = ACTIONS(4745), + [aux_sym_select_statement_token1] = ACTIONS(4745), + [aux_sym_case_expression_token1] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_LT_EQ] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_GT_EQ] = ACTIONS(4747), + [anon_sym_LT_GT] = ACTIONS(4747), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4745), + [aux_sym__for_header_token1] = ACTIONS(4745), + [aux_sym_do_statement_token1] = ACTIONS(4745), + [aux_sym_do_condition_token1] = ACTIONS(4745), + [aux_sym_with_statement_token1] = ACTIONS(4745), + [aux_sym_exit_statement_token1] = ACTIONS(4745), + [sym_end_statement] = ACTIONS(4747), + [aux_sym_on_goto_statement_token1] = ACTIONS(4745), + [aux_sym_on_goto_statement_token2] = ACTIONS(4745), + [aux_sym_on_error_statement_token2] = ACTIONS(4745), + [sym__ambiguous_redim_statement] = ACTIONS(4747), + [aux_sym_erase_statement_token1] = ACTIONS(4745), + [aux_sym_open_statement_token1] = ACTIONS(4745), + [aux_sym_file_mode_token2] = ACTIONS(4745), + [aux_sym_file_access_token2] = ACTIONS(4745), + [aux_sym_file_lock_token2] = ACTIONS(4745), + [aux_sym_print_statement_token1] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_BSLASH] = ACTIONS(4747), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4745), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [aux_sym_close_statement_token1] = ACTIONS(4745), + [aux_sym_put_statement_token1] = ACTIONS(4745), + [aux_sym_unlock_statement_token1] = ACTIONS(4745), + [aux_sym_seek_statement_token1] = ACTIONS(4745), + [sym_reset_statement] = ACTIONS(4745), + [aux_sym_raise_event_statement_token1] = ACTIONS(4745), + [sym_stop_statement] = ACTIONS(4745), + [sym_beep_statement] = ACTIONS(4745), + [aux_sym_unload_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token2] = ACTIONS(4745), + [aux_sym_def_type_statement_token3] = ACTIONS(4745), + [aux_sym_def_type_statement_token4] = ACTIONS(4745), + [aux_sym_def_type_statement_token5] = ACTIONS(4745), + [aux_sym_def_type_statement_token6] = ACTIONS(4745), + [aux_sym_def_type_statement_token7] = ACTIONS(4745), + [aux_sym_def_type_statement_token8] = ACTIONS(4745), + [aux_sym_def_type_statement_token9] = ACTIONS(4745), + [aux_sym_def_type_statement_token10] = ACTIONS(4745), + [aux_sym_def_type_statement_token11] = ACTIONS(4745), + [aux_sym_def_type_statement_token12] = ACTIONS(4745), + [aux_sym_def_type_statement_token13] = ACTIONS(4745), + [aux_sym_def_type_statement_token14] = ACTIONS(4745), + [aux_sym_call_statement_token1] = ACTIONS(4745), + [sym__ambiguous_call_statement] = ACTIONS(4745), + [aux_sym_comparison_operator_token1] = ACTIONS(4745), + [aux_sym_addressof_expression_token1] = ACTIONS(4745), + [aux_sym_type_of_expression_token1] = ACTIONS(4745), + [aux_sym_unary_expression_token1] = ACTIONS(4745), + [sym_string_literal] = ACTIONS(4747), + [sym_number_literal] = ACTIONS(4747), + [aux_sym_boolean_literal_token1] = ACTIONS(4745), + [aux_sym_boolean_literal_token2] = ACTIONS(4745), + [sym_nothing_literal] = ACTIONS(4745), + [sym_null_literal] = ACTIONS(4745), + [sym_empty_literal] = ACTIONS(4745), + [sym_date_literal] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4745), + }, + [STATE(1295)] = { + [sym_identifier] = ACTIONS(4749), + [sym_newline] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4749), + [aux_sym_frm_property_statement_token1] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_BANG] = ACTIONS(4751), + [aux_sym__attribute_identifier_token1] = ACTIONS(4749), + [aux_sym_option_statement_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4749), + [aux_sym_preprocessor_const_token1] = ACTIONS(4749), + [sym_static_modifier] = ACTIONS(4749), + [sym__dim_keyword] = ACTIONS(4749), + [sym__redim_keyword] = ACTIONS(4749), + [aux_sym_get_accessor_token1] = ACTIONS(4749), + [aux_sym_set_accessor_token1] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4751), + [aux_sym_const_declaration_token1] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4751), + [aux_sym_as_type_clause_token2] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4749), + [aux_sym_visibility_token1] = ACTIONS(4749), + [aux_sym_visibility_token2] = ACTIONS(4749), + [aux_sym_elseif_fragment_token1] = ACTIONS(4749), + [aux_sym_else_fragment_token1] = ACTIONS(4749), + [aux_sym_select_statement_token1] = ACTIONS(4749), + [aux_sym_case_expression_token1] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_GT] = ACTIONS(4751), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4749), + [aux_sym__for_header_token1] = ACTIONS(4749), + [aux_sym_do_statement_token1] = ACTIONS(4749), + [aux_sym_do_condition_token1] = ACTIONS(4749), + [aux_sym_with_statement_token1] = ACTIONS(4749), + [aux_sym_exit_statement_token1] = ACTIONS(4749), + [sym_end_statement] = ACTIONS(4751), + [aux_sym_on_goto_statement_token1] = ACTIONS(4749), + [aux_sym_on_goto_statement_token2] = ACTIONS(4749), + [aux_sym_on_error_statement_token2] = ACTIONS(4749), + [sym__ambiguous_redim_statement] = ACTIONS(4751), + [aux_sym_erase_statement_token1] = ACTIONS(4749), + [aux_sym_open_statement_token1] = ACTIONS(4749), + [aux_sym_file_mode_token2] = ACTIONS(4749), + [aux_sym_file_access_token2] = ACTIONS(4749), + [aux_sym_file_lock_token2] = ACTIONS(4749), + [aux_sym_print_statement_token1] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_BSLASH] = ACTIONS(4751), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [aux_sym_close_statement_token1] = ACTIONS(4749), + [aux_sym_put_statement_token1] = ACTIONS(4749), + [aux_sym_unlock_statement_token1] = ACTIONS(4749), + [aux_sym_seek_statement_token1] = ACTIONS(4749), + [sym_reset_statement] = ACTIONS(4749), + [aux_sym_raise_event_statement_token1] = ACTIONS(4749), + [sym_stop_statement] = ACTIONS(4749), + [sym_beep_statement] = ACTIONS(4749), + [aux_sym_unload_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token2] = ACTIONS(4749), + [aux_sym_def_type_statement_token3] = ACTIONS(4749), + [aux_sym_def_type_statement_token4] = ACTIONS(4749), + [aux_sym_def_type_statement_token5] = ACTIONS(4749), + [aux_sym_def_type_statement_token6] = ACTIONS(4749), + [aux_sym_def_type_statement_token7] = ACTIONS(4749), + [aux_sym_def_type_statement_token8] = ACTIONS(4749), + [aux_sym_def_type_statement_token9] = ACTIONS(4749), + [aux_sym_def_type_statement_token10] = ACTIONS(4749), + [aux_sym_def_type_statement_token11] = ACTIONS(4749), + [aux_sym_def_type_statement_token12] = ACTIONS(4749), + [aux_sym_def_type_statement_token13] = ACTIONS(4749), + [aux_sym_def_type_statement_token14] = ACTIONS(4749), + [aux_sym_call_statement_token1] = ACTIONS(4749), + [sym__ambiguous_call_statement] = ACTIONS(4749), + [aux_sym_comparison_operator_token1] = ACTIONS(4749), + [aux_sym_addressof_expression_token1] = ACTIONS(4749), + [aux_sym_type_of_expression_token1] = ACTIONS(4749), + [aux_sym_unary_expression_token1] = ACTIONS(4749), + [sym_string_literal] = ACTIONS(4751), + [sym_number_literal] = ACTIONS(4751), + [aux_sym_boolean_literal_token1] = ACTIONS(4749), + [aux_sym_boolean_literal_token2] = ACTIONS(4749), + [sym_nothing_literal] = ACTIONS(4749), + [sym_null_literal] = ACTIONS(4749), + [sym_empty_literal] = ACTIONS(4749), + [sym_date_literal] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4749), + }, + [STATE(1296)] = { + [sym_identifier] = ACTIONS(4749), + [sym_newline] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4749), + [aux_sym_frm_property_statement_token1] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_BANG] = ACTIONS(4751), + [aux_sym__attribute_identifier_token1] = ACTIONS(4749), + [aux_sym_option_statement_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4749), + [aux_sym_preprocessor_const_token1] = ACTIONS(4749), + [sym_static_modifier] = ACTIONS(4749), + [sym__dim_keyword] = ACTIONS(4749), + [sym__redim_keyword] = ACTIONS(4749), + [aux_sym_get_accessor_token1] = ACTIONS(4749), + [aux_sym_set_accessor_token1] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4751), + [aux_sym_const_declaration_token1] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4751), + [aux_sym_as_type_clause_token2] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4749), + [aux_sym_visibility_token1] = ACTIONS(4749), + [aux_sym_visibility_token2] = ACTIONS(4749), + [aux_sym_elseif_fragment_token1] = ACTIONS(4749), + [aux_sym_else_fragment_token1] = ACTIONS(4749), + [aux_sym_select_statement_token1] = ACTIONS(4749), + [aux_sym_case_expression_token1] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_GT] = ACTIONS(4751), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4749), + [aux_sym__for_header_token1] = ACTIONS(4749), + [aux_sym_do_statement_token1] = ACTIONS(4749), + [aux_sym_do_condition_token1] = ACTIONS(4749), + [aux_sym_with_statement_token1] = ACTIONS(4749), + [aux_sym_exit_statement_token1] = ACTIONS(4749), + [sym_end_statement] = ACTIONS(4751), + [aux_sym_on_goto_statement_token1] = ACTIONS(4749), + [aux_sym_on_goto_statement_token2] = ACTIONS(4749), + [aux_sym_on_error_statement_token2] = ACTIONS(4749), + [sym__ambiguous_redim_statement] = ACTIONS(4751), + [aux_sym_erase_statement_token1] = ACTIONS(4749), + [aux_sym_open_statement_token1] = ACTIONS(4749), + [aux_sym_file_mode_token2] = ACTIONS(4749), + [aux_sym_file_access_token2] = ACTIONS(4749), + [aux_sym_file_lock_token2] = ACTIONS(4749), + [aux_sym_print_statement_token1] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_BSLASH] = ACTIONS(4751), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [aux_sym_close_statement_token1] = ACTIONS(4749), + [aux_sym_put_statement_token1] = ACTIONS(4749), + [aux_sym_unlock_statement_token1] = ACTIONS(4749), + [aux_sym_seek_statement_token1] = ACTIONS(4749), + [sym_reset_statement] = ACTIONS(4749), + [aux_sym_raise_event_statement_token1] = ACTIONS(4749), + [sym_stop_statement] = ACTIONS(4749), + [sym_beep_statement] = ACTIONS(4749), + [aux_sym_unload_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token2] = ACTIONS(4749), + [aux_sym_def_type_statement_token3] = ACTIONS(4749), + [aux_sym_def_type_statement_token4] = ACTIONS(4749), + [aux_sym_def_type_statement_token5] = ACTIONS(4749), + [aux_sym_def_type_statement_token6] = ACTIONS(4749), + [aux_sym_def_type_statement_token7] = ACTIONS(4749), + [aux_sym_def_type_statement_token8] = ACTIONS(4749), + [aux_sym_def_type_statement_token9] = ACTIONS(4749), + [aux_sym_def_type_statement_token10] = ACTIONS(4749), + [aux_sym_def_type_statement_token11] = ACTIONS(4749), + [aux_sym_def_type_statement_token12] = ACTIONS(4749), + [aux_sym_def_type_statement_token13] = ACTIONS(4749), + [aux_sym_def_type_statement_token14] = ACTIONS(4749), + [aux_sym_call_statement_token1] = ACTIONS(4749), + [sym__ambiguous_call_statement] = ACTIONS(4749), + [aux_sym_comparison_operator_token1] = ACTIONS(4749), + [aux_sym_addressof_expression_token1] = ACTIONS(4749), + [aux_sym_type_of_expression_token1] = ACTIONS(4749), + [aux_sym_unary_expression_token1] = ACTIONS(4749), + [sym_string_literal] = ACTIONS(4751), + [sym_number_literal] = ACTIONS(4751), + [aux_sym_boolean_literal_token1] = ACTIONS(4749), + [aux_sym_boolean_literal_token2] = ACTIONS(4749), + [sym_nothing_literal] = ACTIONS(4749), + [sym_null_literal] = ACTIONS(4749), + [sym_empty_literal] = ACTIONS(4749), + [sym_date_literal] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4749), + }, + [STATE(1297)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5917), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5917), + [anon_sym_BSLASH] = ACTIONS(5921), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5923), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1298)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1299)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1300)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1301)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1302)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1303)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6079), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1304)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6079), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6081), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1305)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6079), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6081), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6083), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1306)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6079), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6081), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6083), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6085), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1307)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_statement_token2] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1308)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4811), + [anon_sym_SLASH] = ACTIONS(4809), + [anon_sym_BSLASH] = ACTIONS(4813), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_DASH] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4821), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1309)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1310)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_while_statement_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1311)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1312)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1313)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_while_statement_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1314)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1315)] = { + [sym_identifier] = ACTIONS(5555), + [sym_newline] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(6149), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5555), + [aux_sym_frm_property_statement_token1] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(6151), + [anon_sym_BANG] = ACTIONS(5633), + [aux_sym__attribute_identifier_token1] = ACTIONS(5555), + [aux_sym_option_statement_token3] = ACTIONS(5555), + [aux_sym_type_declaration_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5555), + [aux_sym_enum_declaration_token1] = ACTIONS(5555), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5555), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5555), + [aux_sym_declare_function_statement_token1] = ACTIONS(5555), + [aux_sym_preprocessor_const_token1] = ACTIONS(5555), + [aux_sym__property_get_header_token1] = ACTIONS(5555), + [aux_sym_event_declaration_token1] = ACTIONS(5555), + [sym_static_modifier] = ACTIONS(5555), + [sym__dim_keyword] = ACTIONS(5555), + [sym__redim_keyword] = ACTIONS(5555), + [aux_sym_byval_modifier_token1] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5555), + [aux_sym_set_accessor_token1] = ACTIONS(5555), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5555), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5555), + [aux_sym_visibility_token1] = ACTIONS(5555), + [aux_sym_visibility_token2] = ACTIONS(5555), + [aux_sym_elseif_fragment_token1] = ACTIONS(5555), + [aux_sym_else_fragment_token1] = ACTIONS(5555), + [aux_sym_select_statement_token1] = ACTIONS(5555), + [aux_sym__for_header_token1] = ACTIONS(5555), + [aux_sym_do_statement_token1] = ACTIONS(5555), + [aux_sym_do_condition_token1] = ACTIONS(5555), + [aux_sym_with_statement_token1] = ACTIONS(5555), + [aux_sym_exit_statement_token1] = ACTIONS(5555), + [sym_end_statement] = ACTIONS(4399), + [aux_sym_on_goto_statement_token1] = ACTIONS(5555), + [aux_sym_on_goto_statement_token2] = ACTIONS(5555), + [aux_sym_on_error_statement_token2] = ACTIONS(5555), + [sym__ambiguous_redim_statement] = ACTIONS(4399), + [aux_sym_erase_statement_token1] = ACTIONS(5555), + [aux_sym_open_statement_token1] = ACTIONS(5555), + [aux_sym_file_mode_token2] = ACTIONS(5555), + [aux_sym_file_access_token2] = ACTIONS(5555), + [aux_sym_file_lock_token2] = ACTIONS(5555), + [aux_sym_print_statement_token1] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(5555), + [aux_sym_put_statement_token1] = ACTIONS(5555), + [aux_sym_unlock_statement_token1] = ACTIONS(5555), + [aux_sym_seek_statement_token1] = ACTIONS(5555), + [sym_reset_statement] = ACTIONS(5555), + [aux_sym_raise_event_statement_token1] = ACTIONS(5555), + [sym_stop_statement] = ACTIONS(5555), + [sym_beep_statement] = ACTIONS(5555), + [aux_sym_unload_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token2] = ACTIONS(5555), + [aux_sym_def_type_statement_token3] = ACTIONS(5555), + [aux_sym_def_type_statement_token4] = ACTIONS(5555), + [aux_sym_def_type_statement_token5] = ACTIONS(5555), + [aux_sym_def_type_statement_token6] = ACTIONS(5555), + [aux_sym_def_type_statement_token7] = ACTIONS(5555), + [aux_sym_def_type_statement_token8] = ACTIONS(5555), + [aux_sym_def_type_statement_token9] = ACTIONS(5555), + [aux_sym_def_type_statement_token10] = ACTIONS(5555), + [aux_sym_def_type_statement_token11] = ACTIONS(5555), + [aux_sym_def_type_statement_token12] = ACTIONS(5555), + [aux_sym_def_type_statement_token13] = ACTIONS(5555), + [aux_sym_def_type_statement_token14] = ACTIONS(5555), + [aux_sym_call_statement_token1] = ACTIONS(5555), + [sym__ambiguous_call_statement] = ACTIONS(5555), + [aux_sym_addressof_expression_token1] = ACTIONS(5555), + [aux_sym_type_of_expression_token1] = ACTIONS(5555), + [aux_sym_unary_expression_token1] = ACTIONS(5555), + [sym_string_literal] = ACTIONS(4399), + [sym_number_literal] = ACTIONS(4399), + [aux_sym_boolean_literal_token1] = ACTIONS(5555), + [aux_sym_boolean_literal_token2] = ACTIONS(5555), + [sym_nothing_literal] = ACTIONS(5555), + [sym_null_literal] = ACTIONS(5555), + [sym_empty_literal] = ACTIONS(5555), + [sym_date_literal] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(5555), + }, + [STATE(1316)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1317)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_statement_token2] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1318)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1319)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6057), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1320)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1321)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_statement_token2] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1322)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6057), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6059), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1323)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1324)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6057), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6059), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6061), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1325)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6057), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6059), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6061), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6063), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1326)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1328), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(6153), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_while_statement_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1327)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1328)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1332), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_array_bound_token1] = ACTIONS(4375), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_while_statement_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(1329)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_select_statement_token2] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1330)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5917), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5917), + [anon_sym_BSLASH] = ACTIONS(5921), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5923), + [anon_sym_PLUS] = ACTIONS(5925), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_AMP] = ACTIONS(5929), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5931), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5933), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5935), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1331)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_select_statement_token2] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1332)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1332), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(6155), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_while_statement_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1333)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1334)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_select_statement_token2] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1335)] = { + [sym_identifier] = ACTIONS(4759), + [sym_newline] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4761), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4759), + [aux_sym_frm_property_statement_token1] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4761), + [aux_sym__attribute_identifier_token1] = ACTIONS(4759), + [aux_sym_option_statement_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4759), + [aux_sym_preprocessor_const_token1] = ACTIONS(4759), + [sym_static_modifier] = ACTIONS(4759), + [sym__dim_keyword] = ACTIONS(4759), + [sym__redim_keyword] = ACTIONS(4759), + [aux_sym_get_accessor_token1] = ACTIONS(4759), + [aux_sym_set_accessor_token1] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [aux_sym_const_declaration_token1] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4763), + [aux_sym_as_type_clause_token2] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4759), + [aux_sym_visibility_token1] = ACTIONS(4759), + [aux_sym_visibility_token2] = ACTIONS(4759), + [aux_sym_elseif_fragment_token1] = ACTIONS(4759), + [aux_sym_else_fragment_token1] = ACTIONS(4759), + [aux_sym_select_statement_token1] = ACTIONS(4759), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4759), + [aux_sym_do_statement_token1] = ACTIONS(4759), + [aux_sym_do_condition_token1] = ACTIONS(4759), + [aux_sym_while_statement_token1] = ACTIONS(4759), + [aux_sym_with_statement_token1] = ACTIONS(4759), + [aux_sym_exit_statement_token1] = ACTIONS(4759), + [sym_end_statement] = ACTIONS(4761), + [aux_sym_on_goto_statement_token1] = ACTIONS(4759), + [aux_sym_on_goto_statement_token2] = ACTIONS(4759), + [aux_sym_on_error_statement_token2] = ACTIONS(4759), + [sym__ambiguous_redim_statement] = ACTIONS(4761), + [aux_sym_erase_statement_token1] = ACTIONS(4759), + [aux_sym_open_statement_token1] = ACTIONS(4759), + [aux_sym_file_mode_token2] = ACTIONS(4759), + [aux_sym_file_access_token2] = ACTIONS(4759), + [aux_sym_file_lock_token2] = ACTIONS(4759), + [aux_sym_print_statement_token1] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_QMARK] = ACTIONS(4761), + [aux_sym_close_statement_token1] = ACTIONS(4759), + [aux_sym_put_statement_token1] = ACTIONS(4759), + [aux_sym_unlock_statement_token1] = ACTIONS(4759), + [aux_sym_seek_statement_token1] = ACTIONS(4759), + [sym_reset_statement] = ACTIONS(4759), + [aux_sym_raise_event_statement_token1] = ACTIONS(4759), + [sym_stop_statement] = ACTIONS(4759), + [sym_beep_statement] = ACTIONS(4759), + [aux_sym_unload_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token2] = ACTIONS(4759), + [aux_sym_def_type_statement_token3] = ACTIONS(4759), + [aux_sym_def_type_statement_token4] = ACTIONS(4759), + [aux_sym_def_type_statement_token5] = ACTIONS(4759), + [aux_sym_def_type_statement_token6] = ACTIONS(4759), + [aux_sym_def_type_statement_token7] = ACTIONS(4759), + [aux_sym_def_type_statement_token8] = ACTIONS(4759), + [aux_sym_def_type_statement_token9] = ACTIONS(4759), + [aux_sym_def_type_statement_token10] = ACTIONS(4759), + [aux_sym_def_type_statement_token11] = ACTIONS(4759), + [aux_sym_def_type_statement_token12] = ACTIONS(4759), + [aux_sym_def_type_statement_token13] = ACTIONS(4759), + [aux_sym_def_type_statement_token14] = ACTIONS(4759), + [aux_sym_call_statement_token1] = ACTIONS(4759), + [sym__ambiguous_call_statement] = ACTIONS(4759), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4759), + [aux_sym_type_of_expression_token1] = ACTIONS(4759), + [aux_sym_unary_expression_token1] = ACTIONS(4759), + [sym_string_literal] = ACTIONS(4761), + [sym_number_literal] = ACTIONS(4761), + [aux_sym_boolean_literal_token1] = ACTIONS(4759), + [aux_sym_boolean_literal_token2] = ACTIONS(4759), + [sym_nothing_literal] = ACTIONS(4759), + [sym_null_literal] = ACTIONS(4759), + [sym_empty_literal] = ACTIONS(4759), + [sym_date_literal] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(4759), + }, + [STATE(1336)] = { + [sym_identifier] = ACTIONS(4759), + [sym_newline] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4761), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4759), + [aux_sym_frm_property_statement_token1] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4761), + [aux_sym__attribute_identifier_token1] = ACTIONS(4759), + [aux_sym_option_statement_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4759), + [aux_sym_preprocessor_const_token1] = ACTIONS(4759), + [sym_static_modifier] = ACTIONS(4759), + [sym__dim_keyword] = ACTIONS(4759), + [sym__redim_keyword] = ACTIONS(4759), + [aux_sym_get_accessor_token1] = ACTIONS(4759), + [aux_sym_set_accessor_token1] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [aux_sym_const_declaration_token1] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4761), + [aux_sym_as_type_clause_token2] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4759), + [aux_sym_visibility_token1] = ACTIONS(4759), + [aux_sym_visibility_token2] = ACTIONS(4759), + [aux_sym_elseif_fragment_token1] = ACTIONS(4759), + [aux_sym_else_fragment_token1] = ACTIONS(4759), + [aux_sym_select_statement_token1] = ACTIONS(4759), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4759), + [aux_sym_do_statement_token1] = ACTIONS(4759), + [aux_sym_do_condition_token1] = ACTIONS(4759), + [aux_sym_while_statement_token1] = ACTIONS(4759), + [aux_sym_with_statement_token1] = ACTIONS(4759), + [aux_sym_exit_statement_token1] = ACTIONS(4759), + [sym_end_statement] = ACTIONS(4761), + [aux_sym_on_goto_statement_token1] = ACTIONS(4759), + [aux_sym_on_goto_statement_token2] = ACTIONS(4759), + [aux_sym_on_error_statement_token2] = ACTIONS(4759), + [sym__ambiguous_redim_statement] = ACTIONS(4761), + [aux_sym_erase_statement_token1] = ACTIONS(4759), + [aux_sym_open_statement_token1] = ACTIONS(4759), + [aux_sym_file_mode_token2] = ACTIONS(4759), + [aux_sym_file_access_token2] = ACTIONS(4759), + [aux_sym_file_lock_token2] = ACTIONS(4759), + [aux_sym_print_statement_token1] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_QMARK] = ACTIONS(4761), + [aux_sym_close_statement_token1] = ACTIONS(4759), + [aux_sym_put_statement_token1] = ACTIONS(4759), + [aux_sym_unlock_statement_token1] = ACTIONS(4759), + [aux_sym_seek_statement_token1] = ACTIONS(4759), + [sym_reset_statement] = ACTIONS(4759), + [aux_sym_raise_event_statement_token1] = ACTIONS(4759), + [sym_stop_statement] = ACTIONS(4759), + [sym_beep_statement] = ACTIONS(4759), + [aux_sym_unload_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token2] = ACTIONS(4759), + [aux_sym_def_type_statement_token3] = ACTIONS(4759), + [aux_sym_def_type_statement_token4] = ACTIONS(4759), + [aux_sym_def_type_statement_token5] = ACTIONS(4759), + [aux_sym_def_type_statement_token6] = ACTIONS(4759), + [aux_sym_def_type_statement_token7] = ACTIONS(4759), + [aux_sym_def_type_statement_token8] = ACTIONS(4759), + [aux_sym_def_type_statement_token9] = ACTIONS(4759), + [aux_sym_def_type_statement_token10] = ACTIONS(4759), + [aux_sym_def_type_statement_token11] = ACTIONS(4759), + [aux_sym_def_type_statement_token12] = ACTIONS(4759), + [aux_sym_def_type_statement_token13] = ACTIONS(4759), + [aux_sym_def_type_statement_token14] = ACTIONS(4759), + [aux_sym_call_statement_token1] = ACTIONS(4759), + [sym__ambiguous_call_statement] = ACTIONS(4759), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4759), + [aux_sym_type_of_expression_token1] = ACTIONS(4759), + [aux_sym_unary_expression_token1] = ACTIONS(4759), + [sym_string_literal] = ACTIONS(4761), + [sym_number_literal] = ACTIONS(4761), + [aux_sym_boolean_literal_token1] = ACTIONS(4759), + [aux_sym_boolean_literal_token2] = ACTIONS(4759), + [sym_nothing_literal] = ACTIONS(4759), + [sym_null_literal] = ACTIONS(4759), + [sym_empty_literal] = ACTIONS(4759), + [sym_date_literal] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(4759), + }, + [STATE(1337)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6158), + [anon_sym_BANG] = ACTIONS(6160), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4806), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_while_statement_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(1338)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1339)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4412), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4412), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_while_statement_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(1340)] = { + [sym_identifier] = ACTIONS(4420), + [sym_newline] = ACTIONS(4422), + [anon_sym_COLON] = ACTIONS(4422), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4420), + [aux_sym_frm_property_statement_token1] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6158), + [anon_sym_BANG] = ACTIONS(6160), + [aux_sym__attribute_identifier_token1] = ACTIONS(4420), + [aux_sym_option_statement_token3] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4420), + [aux_sym_preprocessor_const_token1] = ACTIONS(4420), + [sym_static_modifier] = ACTIONS(4420), + [sym__dim_keyword] = ACTIONS(4420), + [sym__redim_keyword] = ACTIONS(4420), + [aux_sym_get_accessor_token1] = ACTIONS(4420), + [aux_sym_set_accessor_token1] = ACTIONS(4420), + [anon_sym_COMMA] = ACTIONS(4422), + [aux_sym_const_declaration_token1] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4428), + [aux_sym_as_type_clause_token2] = ACTIONS(4420), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4420), + [aux_sym_visibility_token1] = ACTIONS(4420), + [aux_sym_visibility_token2] = ACTIONS(4420), + [aux_sym_elseif_fragment_token1] = ACTIONS(4420), + [aux_sym_else_fragment_token1] = ACTIONS(4420), + [aux_sym_select_statement_token1] = ACTIONS(4420), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4420), + [aux_sym_do_statement_token1] = ACTIONS(4420), + [aux_sym_do_condition_token1] = ACTIONS(4420), + [aux_sym_while_statement_token1] = ACTIONS(4420), + [aux_sym_with_statement_token1] = ACTIONS(4420), + [aux_sym_exit_statement_token1] = ACTIONS(4420), + [sym_end_statement] = ACTIONS(4422), + [aux_sym_on_goto_statement_token1] = ACTIONS(4420), + [aux_sym_on_goto_statement_token2] = ACTIONS(4420), + [aux_sym_on_error_statement_token2] = ACTIONS(4420), + [sym__ambiguous_redim_statement] = ACTIONS(4422), + [aux_sym_erase_statement_token1] = ACTIONS(4420), + [aux_sym_open_statement_token1] = ACTIONS(4420), + [aux_sym_file_mode_token2] = ACTIONS(4420), + [aux_sym_file_access_token2] = ACTIONS(4420), + [aux_sym_file_lock_token2] = ACTIONS(4420), + [aux_sym_print_statement_token1] = ACTIONS(4420), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4431), + [anon_sym_DASH] = ACTIONS(4434), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym_QMARK] = ACTIONS(4422), + [aux_sym_close_statement_token1] = ACTIONS(4420), + [aux_sym_put_statement_token1] = ACTIONS(4420), + [aux_sym_unlock_statement_token1] = ACTIONS(4420), + [aux_sym_seek_statement_token1] = ACTIONS(4420), + [sym_reset_statement] = ACTIONS(4420), + [aux_sym_raise_event_statement_token1] = ACTIONS(4420), + [sym_stop_statement] = ACTIONS(4420), + [sym_beep_statement] = ACTIONS(4420), + [aux_sym_unload_statement_token1] = ACTIONS(4420), + [aux_sym_def_type_statement_token1] = ACTIONS(4420), + [aux_sym_def_type_statement_token2] = ACTIONS(4420), + [aux_sym_def_type_statement_token3] = ACTIONS(4420), + [aux_sym_def_type_statement_token4] = ACTIONS(4420), + [aux_sym_def_type_statement_token5] = ACTIONS(4420), + [aux_sym_def_type_statement_token6] = ACTIONS(4420), + [aux_sym_def_type_statement_token7] = ACTIONS(4420), + [aux_sym_def_type_statement_token8] = ACTIONS(4420), + [aux_sym_def_type_statement_token9] = ACTIONS(4420), + [aux_sym_def_type_statement_token10] = ACTIONS(4420), + [aux_sym_def_type_statement_token11] = ACTIONS(4420), + [aux_sym_def_type_statement_token12] = ACTIONS(4420), + [aux_sym_def_type_statement_token13] = ACTIONS(4420), + [aux_sym_def_type_statement_token14] = ACTIONS(4420), + [aux_sym_call_statement_token1] = ACTIONS(4420), + [sym__ambiguous_call_statement] = ACTIONS(4420), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4420), + [aux_sym_type_of_expression_token1] = ACTIONS(4420), + [aux_sym_unary_expression_token1] = ACTIONS(4420), + [sym_string_literal] = ACTIONS(4422), + [sym_number_literal] = ACTIONS(4422), + [aux_sym_boolean_literal_token1] = ACTIONS(4420), + [aux_sym_boolean_literal_token2] = ACTIONS(4420), + [sym_nothing_literal] = ACTIONS(4420), + [sym_null_literal] = ACTIONS(4420), + [sym_empty_literal] = ACTIONS(4420), + [sym_date_literal] = ACTIONS(4422), + [anon_sym_POUND] = ACTIONS(4420), + }, + [STATE(1341)] = { + [sym_identifier] = ACTIONS(4489), + [sym_newline] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4491), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4489), + [aux_sym_frm_property_statement_token1] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4489), + [anon_sym_BANG] = ACTIONS(4491), + [aux_sym__attribute_identifier_token1] = ACTIONS(4489), + [aux_sym_option_statement_token3] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4489), + [aux_sym_preprocessor_const_token1] = ACTIONS(4489), + [sym_static_modifier] = ACTIONS(4489), + [sym__dim_keyword] = ACTIONS(4489), + [sym__redim_keyword] = ACTIONS(4489), + [aux_sym_get_accessor_token1] = ACTIONS(4489), + [aux_sym_set_accessor_token1] = ACTIONS(4489), + [anon_sym_COMMA] = ACTIONS(4491), + [aux_sym_const_declaration_token1] = ACTIONS(4489), + [anon_sym_LPAREN] = ACTIONS(4491), + [aux_sym_as_type_clause_token2] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4489), + [aux_sym_visibility_token1] = ACTIONS(4489), + [aux_sym_visibility_token2] = ACTIONS(4489), + [aux_sym_elseif_fragment_token1] = ACTIONS(4489), + [aux_sym_else_fragment_token1] = ACTIONS(4489), + [aux_sym_select_statement_token1] = ACTIONS(4489), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4489), + [aux_sym_do_statement_token1] = ACTIONS(4489), + [aux_sym_do_condition_token1] = ACTIONS(4489), + [aux_sym_while_statement_token1] = ACTIONS(4489), + [aux_sym_with_statement_token1] = ACTIONS(4489), + [aux_sym_exit_statement_token1] = ACTIONS(4489), + [sym_end_statement] = ACTIONS(4491), + [aux_sym_on_goto_statement_token1] = ACTIONS(4489), + [aux_sym_on_goto_statement_token2] = ACTIONS(4489), + [aux_sym_on_error_statement_token2] = ACTIONS(4489), + [sym__ambiguous_redim_statement] = ACTIONS(4491), + [aux_sym_erase_statement_token1] = ACTIONS(4489), + [aux_sym_open_statement_token1] = ACTIONS(4489), + [aux_sym_file_mode_token2] = ACTIONS(4489), + [aux_sym_file_access_token2] = ACTIONS(4489), + [aux_sym_file_lock_token2] = ACTIONS(4489), + [aux_sym_print_statement_token1] = ACTIONS(4489), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4491), + [anon_sym_QMARK] = ACTIONS(4491), + [aux_sym_close_statement_token1] = ACTIONS(4489), + [aux_sym_put_statement_token1] = ACTIONS(4489), + [aux_sym_unlock_statement_token1] = ACTIONS(4489), + [aux_sym_seek_statement_token1] = ACTIONS(4489), + [sym_reset_statement] = ACTIONS(4489), + [aux_sym_raise_event_statement_token1] = ACTIONS(4489), + [sym_stop_statement] = ACTIONS(4489), + [sym_beep_statement] = ACTIONS(4489), + [aux_sym_unload_statement_token1] = ACTIONS(4489), + [aux_sym_def_type_statement_token1] = ACTIONS(4489), + [aux_sym_def_type_statement_token2] = ACTIONS(4489), + [aux_sym_def_type_statement_token3] = ACTIONS(4489), + [aux_sym_def_type_statement_token4] = ACTIONS(4489), + [aux_sym_def_type_statement_token5] = ACTIONS(4489), + [aux_sym_def_type_statement_token6] = ACTIONS(4489), + [aux_sym_def_type_statement_token7] = ACTIONS(4489), + [aux_sym_def_type_statement_token8] = ACTIONS(4489), + [aux_sym_def_type_statement_token9] = ACTIONS(4489), + [aux_sym_def_type_statement_token10] = ACTIONS(4489), + [aux_sym_def_type_statement_token11] = ACTIONS(4489), + [aux_sym_def_type_statement_token12] = ACTIONS(4489), + [aux_sym_def_type_statement_token13] = ACTIONS(4489), + [aux_sym_def_type_statement_token14] = ACTIONS(4489), + [aux_sym_call_statement_token1] = ACTIONS(4489), + [sym__ambiguous_call_statement] = ACTIONS(4489), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4489), + [aux_sym_type_of_expression_token1] = ACTIONS(4489), + [aux_sym_unary_expression_token1] = ACTIONS(4489), + [sym_string_literal] = ACTIONS(4491), + [sym_number_literal] = ACTIONS(4491), + [aux_sym_boolean_literal_token1] = ACTIONS(4489), + [aux_sym_boolean_literal_token2] = ACTIONS(4489), + [sym_nothing_literal] = ACTIONS(4489), + [sym_null_literal] = ACTIONS(4489), + [sym_empty_literal] = ACTIONS(4489), + [sym_date_literal] = ACTIONS(4491), + [anon_sym_POUND] = ACTIONS(4489), + }, + [STATE(1342)] = { + [sym_identifier] = ACTIONS(4499), + [sym_newline] = ACTIONS(4501), + [anon_sym_COLON] = ACTIONS(4501), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4499), + [aux_sym_frm_property_statement_token1] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4501), + [aux_sym__attribute_identifier_token1] = ACTIONS(4499), + [aux_sym_option_statement_token3] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4499), + [aux_sym_preprocessor_const_token1] = ACTIONS(4499), + [sym_static_modifier] = ACTIONS(4499), + [sym__dim_keyword] = ACTIONS(4499), + [sym__redim_keyword] = ACTIONS(4499), + [aux_sym_get_accessor_token1] = ACTIONS(4499), + [aux_sym_set_accessor_token1] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4501), + [aux_sym_const_declaration_token1] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4501), + [aux_sym_as_type_clause_token2] = ACTIONS(4499), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4499), + [aux_sym_visibility_token1] = ACTIONS(4499), + [aux_sym_visibility_token2] = ACTIONS(4499), + [aux_sym_elseif_fragment_token1] = ACTIONS(4499), + [aux_sym_else_fragment_token1] = ACTIONS(4499), + [aux_sym_select_statement_token1] = ACTIONS(4499), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4499), + [aux_sym_do_statement_token1] = ACTIONS(4499), + [aux_sym_do_condition_token1] = ACTIONS(4499), + [aux_sym_while_statement_token1] = ACTIONS(4499), + [aux_sym_with_statement_token1] = ACTIONS(4499), + [aux_sym_exit_statement_token1] = ACTIONS(4499), + [sym_end_statement] = ACTIONS(4501), + [aux_sym_on_goto_statement_token1] = ACTIONS(4499), + [aux_sym_on_goto_statement_token2] = ACTIONS(4499), + [aux_sym_on_error_statement_token2] = ACTIONS(4499), + [sym__ambiguous_redim_statement] = ACTIONS(4501), + [aux_sym_erase_statement_token1] = ACTIONS(4499), + [aux_sym_open_statement_token1] = ACTIONS(4499), + [aux_sym_file_mode_token2] = ACTIONS(4499), + [aux_sym_file_access_token2] = ACTIONS(4499), + [aux_sym_file_lock_token2] = ACTIONS(4499), + [aux_sym_print_statement_token1] = ACTIONS(4499), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4514), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4501), + [anon_sym_QMARK] = ACTIONS(4501), + [aux_sym_close_statement_token1] = ACTIONS(4499), + [aux_sym_put_statement_token1] = ACTIONS(4499), + [aux_sym_unlock_statement_token1] = ACTIONS(4499), + [aux_sym_seek_statement_token1] = ACTIONS(4499), + [sym_reset_statement] = ACTIONS(4499), + [aux_sym_raise_event_statement_token1] = ACTIONS(4499), + [sym_stop_statement] = ACTIONS(4499), + [sym_beep_statement] = ACTIONS(4499), + [aux_sym_unload_statement_token1] = ACTIONS(4499), + [aux_sym_def_type_statement_token1] = ACTIONS(4499), + [aux_sym_def_type_statement_token2] = ACTIONS(4499), + [aux_sym_def_type_statement_token3] = ACTIONS(4499), + [aux_sym_def_type_statement_token4] = ACTIONS(4499), + [aux_sym_def_type_statement_token5] = ACTIONS(4499), + [aux_sym_def_type_statement_token6] = ACTIONS(4499), + [aux_sym_def_type_statement_token7] = ACTIONS(4499), + [aux_sym_def_type_statement_token8] = ACTIONS(4499), + [aux_sym_def_type_statement_token9] = ACTIONS(4499), + [aux_sym_def_type_statement_token10] = ACTIONS(4499), + [aux_sym_def_type_statement_token11] = ACTIONS(4499), + [aux_sym_def_type_statement_token12] = ACTIONS(4499), + [aux_sym_def_type_statement_token13] = ACTIONS(4499), + [aux_sym_def_type_statement_token14] = ACTIONS(4499), + [aux_sym_call_statement_token1] = ACTIONS(4499), + [sym__ambiguous_call_statement] = ACTIONS(4499), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4499), + [aux_sym_type_of_expression_token1] = ACTIONS(4499), + [aux_sym_unary_expression_token1] = ACTIONS(4499), + [sym_string_literal] = ACTIONS(4501), + [sym_number_literal] = ACTIONS(4501), + [aux_sym_boolean_literal_token1] = ACTIONS(4499), + [aux_sym_boolean_literal_token2] = ACTIONS(4499), + [sym_nothing_literal] = ACTIONS(4499), + [sym_null_literal] = ACTIONS(4499), + [sym_empty_literal] = ACTIONS(4499), + [sym_date_literal] = ACTIONS(4501), + [anon_sym_POUND] = ACTIONS(4499), + }, + [STATE(1343)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5756), + [anon_sym_BANG] = ACTIONS(5758), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1344)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5643), + [anon_sym_BANG] = ACTIONS(5645), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_select_statement_token2] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1345)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1346)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_statement_token2] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1347)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1348)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1349)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_declaration_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_enum_declaration_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4447), + [aux_sym_declare_function_statement_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [aux_sym__property_get_header_token1] = ACTIONS(4447), + [aux_sym_event_declaration_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1350)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_statement_token2] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1351)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_statement_token2] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1352)] = { + [sym_identifier] = ACTIONS(4671), + [sym_newline] = ACTIONS(4673), + [anon_sym_COLON] = ACTIONS(4673), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4671), + [aux_sym_frm_property_statement_token1] = ACTIONS(4671), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4671), + [anon_sym_BANG] = ACTIONS(4673), + [aux_sym__attribute_identifier_token1] = ACTIONS(4671), + [aux_sym_option_statement_token3] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4671), + [aux_sym_preprocessor_const_token1] = ACTIONS(4671), + [sym_static_modifier] = ACTIONS(4671), + [sym__dim_keyword] = ACTIONS(4671), + [sym__redim_keyword] = ACTIONS(4671), + [aux_sym_get_accessor_token1] = ACTIONS(4671), + [aux_sym_set_accessor_token1] = ACTIONS(4671), + [anon_sym_COMMA] = ACTIONS(4673), + [aux_sym_const_declaration_token1] = ACTIONS(4671), + [anon_sym_LPAREN] = ACTIONS(4673), + [aux_sym_as_type_clause_token2] = ACTIONS(4671), + [anon_sym_STAR] = ACTIONS(4673), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4671), + [aux_sym_visibility_token1] = ACTIONS(4671), + [aux_sym_visibility_token2] = ACTIONS(4671), + [aux_sym_elseif_fragment_token1] = ACTIONS(4671), + [aux_sym_else_fragment_token1] = ACTIONS(4671), + [aux_sym_select_statement_token1] = ACTIONS(4671), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4671), + [aux_sym_do_statement_token1] = ACTIONS(4671), + [aux_sym_do_condition_token1] = ACTIONS(4671), + [aux_sym_while_statement_token1] = ACTIONS(4671), + [aux_sym_with_statement_token1] = ACTIONS(4671), + [aux_sym_exit_statement_token1] = ACTIONS(4671), + [sym_end_statement] = ACTIONS(4673), + [aux_sym_on_goto_statement_token1] = ACTIONS(4671), + [aux_sym_on_goto_statement_token2] = ACTIONS(4671), + [aux_sym_on_error_statement_token2] = ACTIONS(4671), + [sym__ambiguous_redim_statement] = ACTIONS(4673), + [aux_sym_erase_statement_token1] = ACTIONS(4671), + [aux_sym_open_statement_token1] = ACTIONS(4671), + [aux_sym_file_mode_token2] = ACTIONS(4671), + [aux_sym_file_access_token2] = ACTIONS(4671), + [aux_sym_file_lock_token2] = ACTIONS(4671), + [aux_sym_print_statement_token1] = ACTIONS(4671), + [anon_sym_CARET] = ACTIONS(4673), + [anon_sym_SLASH] = ACTIONS(4673), + [anon_sym_BSLASH] = ACTIONS(4673), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4671), + [anon_sym_PLUS] = ACTIONS(4673), + [anon_sym_DASH] = ACTIONS(4671), + [anon_sym_AMP] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4671), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym_QMARK] = ACTIONS(4673), + [aux_sym_close_statement_token1] = ACTIONS(4671), + [aux_sym_put_statement_token1] = ACTIONS(4671), + [aux_sym_unlock_statement_token1] = ACTIONS(4671), + [aux_sym_seek_statement_token1] = ACTIONS(4671), + [sym_reset_statement] = ACTIONS(4671), + [aux_sym_raise_event_statement_token1] = ACTIONS(4671), + [sym_stop_statement] = ACTIONS(4671), + [sym_beep_statement] = ACTIONS(4671), + [aux_sym_unload_statement_token1] = ACTIONS(4671), + [aux_sym_def_type_statement_token1] = ACTIONS(4671), + [aux_sym_def_type_statement_token2] = ACTIONS(4671), + [aux_sym_def_type_statement_token3] = ACTIONS(4671), + [aux_sym_def_type_statement_token4] = ACTIONS(4671), + [aux_sym_def_type_statement_token5] = ACTIONS(4671), + [aux_sym_def_type_statement_token6] = ACTIONS(4671), + [aux_sym_def_type_statement_token7] = ACTIONS(4671), + [aux_sym_def_type_statement_token8] = ACTIONS(4671), + [aux_sym_def_type_statement_token9] = ACTIONS(4671), + [aux_sym_def_type_statement_token10] = ACTIONS(4671), + [aux_sym_def_type_statement_token11] = ACTIONS(4671), + [aux_sym_def_type_statement_token12] = ACTIONS(4671), + [aux_sym_def_type_statement_token13] = ACTIONS(4671), + [aux_sym_def_type_statement_token14] = ACTIONS(4671), + [aux_sym_call_statement_token1] = ACTIONS(4671), + [sym__ambiguous_call_statement] = ACTIONS(4671), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4671), + [aux_sym_type_of_expression_token1] = ACTIONS(4671), + [aux_sym_unary_expression_token1] = ACTIONS(4671), + [sym_string_literal] = ACTIONS(4673), + [sym_number_literal] = ACTIONS(4673), + [aux_sym_boolean_literal_token1] = ACTIONS(4671), + [aux_sym_boolean_literal_token2] = ACTIONS(4671), + [sym_nothing_literal] = ACTIONS(4671), + [sym_null_literal] = ACTIONS(4671), + [sym_empty_literal] = ACTIONS(4671), + [sym_date_literal] = ACTIONS(4673), + [anon_sym_POUND] = ACTIONS(4671), + }, + [STATE(1353)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6162), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6164), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6166), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6168), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6170), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1354)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1355)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4709), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_while_statement_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1356)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_declaration_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_enum_declaration_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4477), + [aux_sym_declare_function_statement_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [aux_sym__property_get_header_token1] = ACTIONS(4477), + [aux_sym_event_declaration_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1357)] = { + [sym_identifier] = ACTIONS(4745), + [sym_newline] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4745), + [aux_sym_frm_property_statement_token1] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_BANG] = ACTIONS(4747), + [aux_sym__attribute_identifier_token1] = ACTIONS(4745), + [aux_sym_option_statement_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4745), + [aux_sym_preprocessor_const_token1] = ACTIONS(4745), + [sym_static_modifier] = ACTIONS(4745), + [sym__dim_keyword] = ACTIONS(4745), + [sym__redim_keyword] = ACTIONS(4745), + [aux_sym_get_accessor_token1] = ACTIONS(4745), + [aux_sym_set_accessor_token1] = ACTIONS(4745), + [anon_sym_COMMA] = ACTIONS(4747), + [aux_sym_const_declaration_token1] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4747), + [aux_sym_as_type_clause_token2] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4747), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4745), + [aux_sym_visibility_token1] = ACTIONS(4745), + [aux_sym_visibility_token2] = ACTIONS(4745), + [aux_sym_elseif_fragment_token1] = ACTIONS(4745), + [aux_sym_else_fragment_token1] = ACTIONS(4745), + [aux_sym_select_statement_token1] = ACTIONS(4745), + [aux_sym_case_expression_token1] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_LT_EQ] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_GT_EQ] = ACTIONS(4747), + [anon_sym_LT_GT] = ACTIONS(4747), + [aux_sym__for_header_token1] = ACTIONS(4745), + [aux_sym_do_statement_token1] = ACTIONS(4745), + [aux_sym_do_condition_token1] = ACTIONS(4745), + [aux_sym_while_statement_token1] = ACTIONS(4745), + [aux_sym_with_statement_token1] = ACTIONS(4745), + [aux_sym_exit_statement_token1] = ACTIONS(4745), + [sym_end_statement] = ACTIONS(4747), + [aux_sym_on_goto_statement_token1] = ACTIONS(4745), + [aux_sym_on_goto_statement_token2] = ACTIONS(4745), + [aux_sym_on_error_statement_token2] = ACTIONS(4745), + [sym__ambiguous_redim_statement] = ACTIONS(4747), + [aux_sym_erase_statement_token1] = ACTIONS(4745), + [aux_sym_open_statement_token1] = ACTIONS(4745), + [aux_sym_file_mode_token2] = ACTIONS(4745), + [aux_sym_file_access_token2] = ACTIONS(4745), + [aux_sym_file_lock_token2] = ACTIONS(4745), + [aux_sym_print_statement_token1] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_BSLASH] = ACTIONS(4747), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4745), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [aux_sym_close_statement_token1] = ACTIONS(4745), + [aux_sym_put_statement_token1] = ACTIONS(4745), + [aux_sym_unlock_statement_token1] = ACTIONS(4745), + [aux_sym_seek_statement_token1] = ACTIONS(4745), + [sym_reset_statement] = ACTIONS(4745), + [aux_sym_raise_event_statement_token1] = ACTIONS(4745), + [sym_stop_statement] = ACTIONS(4745), + [sym_beep_statement] = ACTIONS(4745), + [aux_sym_unload_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token2] = ACTIONS(4745), + [aux_sym_def_type_statement_token3] = ACTIONS(4745), + [aux_sym_def_type_statement_token4] = ACTIONS(4745), + [aux_sym_def_type_statement_token5] = ACTIONS(4745), + [aux_sym_def_type_statement_token6] = ACTIONS(4745), + [aux_sym_def_type_statement_token7] = ACTIONS(4745), + [aux_sym_def_type_statement_token8] = ACTIONS(4745), + [aux_sym_def_type_statement_token9] = ACTIONS(4745), + [aux_sym_def_type_statement_token10] = ACTIONS(4745), + [aux_sym_def_type_statement_token11] = ACTIONS(4745), + [aux_sym_def_type_statement_token12] = ACTIONS(4745), + [aux_sym_def_type_statement_token13] = ACTIONS(4745), + [aux_sym_def_type_statement_token14] = ACTIONS(4745), + [aux_sym_call_statement_token1] = ACTIONS(4745), + [sym__ambiguous_call_statement] = ACTIONS(4745), + [aux_sym_comparison_operator_token1] = ACTIONS(4745), + [aux_sym_addressof_expression_token1] = ACTIONS(4745), + [aux_sym_type_of_expression_token1] = ACTIONS(4745), + [aux_sym_unary_expression_token1] = ACTIONS(4745), + [sym_string_literal] = ACTIONS(4747), + [sym_number_literal] = ACTIONS(4747), + [aux_sym_boolean_literal_token1] = ACTIONS(4745), + [aux_sym_boolean_literal_token2] = ACTIONS(4745), + [sym_nothing_literal] = ACTIONS(4745), + [sym_null_literal] = ACTIONS(4745), + [sym_empty_literal] = ACTIONS(4745), + [sym_date_literal] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4745), + }, + [STATE(1358)] = { + [sym_identifier] = ACTIONS(4745), + [sym_newline] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4745), + [aux_sym_frm_property_statement_token1] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_BANG] = ACTIONS(4747), + [aux_sym__attribute_identifier_token1] = ACTIONS(4745), + [aux_sym_option_statement_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4745), + [aux_sym_preprocessor_const_token1] = ACTIONS(4745), + [sym_static_modifier] = ACTIONS(4745), + [sym__dim_keyword] = ACTIONS(4745), + [sym__redim_keyword] = ACTIONS(4745), + [aux_sym_get_accessor_token1] = ACTIONS(4745), + [aux_sym_set_accessor_token1] = ACTIONS(4745), + [anon_sym_COMMA] = ACTIONS(4747), + [aux_sym_const_declaration_token1] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4747), + [aux_sym_as_type_clause_token2] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4747), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4745), + [aux_sym_visibility_token1] = ACTIONS(4745), + [aux_sym_visibility_token2] = ACTIONS(4745), + [aux_sym_elseif_fragment_token1] = ACTIONS(4745), + [aux_sym_else_fragment_token1] = ACTIONS(4745), + [aux_sym_select_statement_token1] = ACTIONS(4745), + [aux_sym_case_expression_token1] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_LT_EQ] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_GT_EQ] = ACTIONS(4747), + [anon_sym_LT_GT] = ACTIONS(4747), + [aux_sym__for_header_token1] = ACTIONS(4745), + [aux_sym_do_statement_token1] = ACTIONS(4745), + [aux_sym_do_condition_token1] = ACTIONS(4745), + [aux_sym_while_statement_token1] = ACTIONS(4745), + [aux_sym_with_statement_token1] = ACTIONS(4745), + [aux_sym_exit_statement_token1] = ACTIONS(4745), + [sym_end_statement] = ACTIONS(4747), + [aux_sym_on_goto_statement_token1] = ACTIONS(4745), + [aux_sym_on_goto_statement_token2] = ACTIONS(4745), + [aux_sym_on_error_statement_token2] = ACTIONS(4745), + [sym__ambiguous_redim_statement] = ACTIONS(4747), + [aux_sym_erase_statement_token1] = ACTIONS(4745), + [aux_sym_open_statement_token1] = ACTIONS(4745), + [aux_sym_file_mode_token2] = ACTIONS(4745), + [aux_sym_file_access_token2] = ACTIONS(4745), + [aux_sym_file_lock_token2] = ACTIONS(4745), + [aux_sym_print_statement_token1] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_BSLASH] = ACTIONS(4747), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4745), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [aux_sym_close_statement_token1] = ACTIONS(4745), + [aux_sym_put_statement_token1] = ACTIONS(4745), + [aux_sym_unlock_statement_token1] = ACTIONS(4745), + [aux_sym_seek_statement_token1] = ACTIONS(4745), + [sym_reset_statement] = ACTIONS(4745), + [aux_sym_raise_event_statement_token1] = ACTIONS(4745), + [sym_stop_statement] = ACTIONS(4745), + [sym_beep_statement] = ACTIONS(4745), + [aux_sym_unload_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token2] = ACTIONS(4745), + [aux_sym_def_type_statement_token3] = ACTIONS(4745), + [aux_sym_def_type_statement_token4] = ACTIONS(4745), + [aux_sym_def_type_statement_token5] = ACTIONS(4745), + [aux_sym_def_type_statement_token6] = ACTIONS(4745), + [aux_sym_def_type_statement_token7] = ACTIONS(4745), + [aux_sym_def_type_statement_token8] = ACTIONS(4745), + [aux_sym_def_type_statement_token9] = ACTIONS(4745), + [aux_sym_def_type_statement_token10] = ACTIONS(4745), + [aux_sym_def_type_statement_token11] = ACTIONS(4745), + [aux_sym_def_type_statement_token12] = ACTIONS(4745), + [aux_sym_def_type_statement_token13] = ACTIONS(4745), + [aux_sym_def_type_statement_token14] = ACTIONS(4745), + [aux_sym_call_statement_token1] = ACTIONS(4745), + [sym__ambiguous_call_statement] = ACTIONS(4745), + [aux_sym_comparison_operator_token1] = ACTIONS(4745), + [aux_sym_addressof_expression_token1] = ACTIONS(4745), + [aux_sym_type_of_expression_token1] = ACTIONS(4745), + [aux_sym_unary_expression_token1] = ACTIONS(4745), + [sym_string_literal] = ACTIONS(4747), + [sym_number_literal] = ACTIONS(4747), + [aux_sym_boolean_literal_token1] = ACTIONS(4745), + [aux_sym_boolean_literal_token2] = ACTIONS(4745), + [sym_nothing_literal] = ACTIONS(4745), + [sym_null_literal] = ACTIONS(4745), + [sym_empty_literal] = ACTIONS(4745), + [sym_date_literal] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4745), + }, + [STATE(1359)] = { + [sym_identifier] = ACTIONS(4749), + [sym_newline] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4749), + [aux_sym_frm_property_statement_token1] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_BANG] = ACTIONS(4751), + [aux_sym__attribute_identifier_token1] = ACTIONS(4749), + [aux_sym_option_statement_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4749), + [aux_sym_preprocessor_const_token1] = ACTIONS(4749), + [sym_static_modifier] = ACTIONS(4749), + [sym__dim_keyword] = ACTIONS(4749), + [sym__redim_keyword] = ACTIONS(4749), + [aux_sym_get_accessor_token1] = ACTIONS(4749), + [aux_sym_set_accessor_token1] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4751), + [aux_sym_const_declaration_token1] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4751), + [aux_sym_as_type_clause_token2] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4749), + [aux_sym_visibility_token1] = ACTIONS(4749), + [aux_sym_visibility_token2] = ACTIONS(4749), + [aux_sym_elseif_fragment_token1] = ACTIONS(4749), + [aux_sym_else_fragment_token1] = ACTIONS(4749), + [aux_sym_select_statement_token1] = ACTIONS(4749), + [aux_sym_case_expression_token1] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_GT] = ACTIONS(4751), + [aux_sym__for_header_token1] = ACTIONS(4749), + [aux_sym_do_statement_token1] = ACTIONS(4749), + [aux_sym_do_condition_token1] = ACTIONS(4749), + [aux_sym_while_statement_token1] = ACTIONS(4749), + [aux_sym_with_statement_token1] = ACTIONS(4749), + [aux_sym_exit_statement_token1] = ACTIONS(4749), + [sym_end_statement] = ACTIONS(4751), + [aux_sym_on_goto_statement_token1] = ACTIONS(4749), + [aux_sym_on_goto_statement_token2] = ACTIONS(4749), + [aux_sym_on_error_statement_token2] = ACTIONS(4749), + [sym__ambiguous_redim_statement] = ACTIONS(4751), + [aux_sym_erase_statement_token1] = ACTIONS(4749), + [aux_sym_open_statement_token1] = ACTIONS(4749), + [aux_sym_file_mode_token2] = ACTIONS(4749), + [aux_sym_file_access_token2] = ACTIONS(4749), + [aux_sym_file_lock_token2] = ACTIONS(4749), + [aux_sym_print_statement_token1] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_BSLASH] = ACTIONS(4751), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [aux_sym_close_statement_token1] = ACTIONS(4749), + [aux_sym_put_statement_token1] = ACTIONS(4749), + [aux_sym_unlock_statement_token1] = ACTIONS(4749), + [aux_sym_seek_statement_token1] = ACTIONS(4749), + [sym_reset_statement] = ACTIONS(4749), + [aux_sym_raise_event_statement_token1] = ACTIONS(4749), + [sym_stop_statement] = ACTIONS(4749), + [sym_beep_statement] = ACTIONS(4749), + [aux_sym_unload_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token2] = ACTIONS(4749), + [aux_sym_def_type_statement_token3] = ACTIONS(4749), + [aux_sym_def_type_statement_token4] = ACTIONS(4749), + [aux_sym_def_type_statement_token5] = ACTIONS(4749), + [aux_sym_def_type_statement_token6] = ACTIONS(4749), + [aux_sym_def_type_statement_token7] = ACTIONS(4749), + [aux_sym_def_type_statement_token8] = ACTIONS(4749), + [aux_sym_def_type_statement_token9] = ACTIONS(4749), + [aux_sym_def_type_statement_token10] = ACTIONS(4749), + [aux_sym_def_type_statement_token11] = ACTIONS(4749), + [aux_sym_def_type_statement_token12] = ACTIONS(4749), + [aux_sym_def_type_statement_token13] = ACTIONS(4749), + [aux_sym_def_type_statement_token14] = ACTIONS(4749), + [aux_sym_call_statement_token1] = ACTIONS(4749), + [sym__ambiguous_call_statement] = ACTIONS(4749), + [aux_sym_comparison_operator_token1] = ACTIONS(4749), + [aux_sym_addressof_expression_token1] = ACTIONS(4749), + [aux_sym_type_of_expression_token1] = ACTIONS(4749), + [aux_sym_unary_expression_token1] = ACTIONS(4749), + [sym_string_literal] = ACTIONS(4751), + [sym_number_literal] = ACTIONS(4751), + [aux_sym_boolean_literal_token1] = ACTIONS(4749), + [aux_sym_boolean_literal_token2] = ACTIONS(4749), + [sym_nothing_literal] = ACTIONS(4749), + [sym_null_literal] = ACTIONS(4749), + [sym_empty_literal] = ACTIONS(4749), + [sym_date_literal] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4749), + }, + [STATE(1360)] = { + [sym_identifier] = ACTIONS(4749), + [sym_newline] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4749), + [aux_sym_frm_property_statement_token1] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_BANG] = ACTIONS(4751), + [aux_sym__attribute_identifier_token1] = ACTIONS(4749), + [aux_sym_option_statement_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4749), + [aux_sym_preprocessor_const_token1] = ACTIONS(4749), + [sym_static_modifier] = ACTIONS(4749), + [sym__dim_keyword] = ACTIONS(4749), + [sym__redim_keyword] = ACTIONS(4749), + [aux_sym_get_accessor_token1] = ACTIONS(4749), + [aux_sym_set_accessor_token1] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4751), + [aux_sym_const_declaration_token1] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4751), + [aux_sym_as_type_clause_token2] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4749), + [aux_sym_visibility_token1] = ACTIONS(4749), + [aux_sym_visibility_token2] = ACTIONS(4749), + [aux_sym_elseif_fragment_token1] = ACTIONS(4749), + [aux_sym_else_fragment_token1] = ACTIONS(4749), + [aux_sym_select_statement_token1] = ACTIONS(4749), + [aux_sym_case_expression_token1] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_GT] = ACTIONS(4751), + [aux_sym__for_header_token1] = ACTIONS(4749), + [aux_sym_do_statement_token1] = ACTIONS(4749), + [aux_sym_do_condition_token1] = ACTIONS(4749), + [aux_sym_while_statement_token1] = ACTIONS(4749), + [aux_sym_with_statement_token1] = ACTIONS(4749), + [aux_sym_exit_statement_token1] = ACTIONS(4749), + [sym_end_statement] = ACTIONS(4751), + [aux_sym_on_goto_statement_token1] = ACTIONS(4749), + [aux_sym_on_goto_statement_token2] = ACTIONS(4749), + [aux_sym_on_error_statement_token2] = ACTIONS(4749), + [sym__ambiguous_redim_statement] = ACTIONS(4751), + [aux_sym_erase_statement_token1] = ACTIONS(4749), + [aux_sym_open_statement_token1] = ACTIONS(4749), + [aux_sym_file_mode_token2] = ACTIONS(4749), + [aux_sym_file_access_token2] = ACTIONS(4749), + [aux_sym_file_lock_token2] = ACTIONS(4749), + [aux_sym_print_statement_token1] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_BSLASH] = ACTIONS(4751), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [aux_sym_close_statement_token1] = ACTIONS(4749), + [aux_sym_put_statement_token1] = ACTIONS(4749), + [aux_sym_unlock_statement_token1] = ACTIONS(4749), + [aux_sym_seek_statement_token1] = ACTIONS(4749), + [sym_reset_statement] = ACTIONS(4749), + [aux_sym_raise_event_statement_token1] = ACTIONS(4749), + [sym_stop_statement] = ACTIONS(4749), + [sym_beep_statement] = ACTIONS(4749), + [aux_sym_unload_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token2] = ACTIONS(4749), + [aux_sym_def_type_statement_token3] = ACTIONS(4749), + [aux_sym_def_type_statement_token4] = ACTIONS(4749), + [aux_sym_def_type_statement_token5] = ACTIONS(4749), + [aux_sym_def_type_statement_token6] = ACTIONS(4749), + [aux_sym_def_type_statement_token7] = ACTIONS(4749), + [aux_sym_def_type_statement_token8] = ACTIONS(4749), + [aux_sym_def_type_statement_token9] = ACTIONS(4749), + [aux_sym_def_type_statement_token10] = ACTIONS(4749), + [aux_sym_def_type_statement_token11] = ACTIONS(4749), + [aux_sym_def_type_statement_token12] = ACTIONS(4749), + [aux_sym_def_type_statement_token13] = ACTIONS(4749), + [aux_sym_def_type_statement_token14] = ACTIONS(4749), + [aux_sym_call_statement_token1] = ACTIONS(4749), + [sym__ambiguous_call_statement] = ACTIONS(4749), + [aux_sym_comparison_operator_token1] = ACTIONS(4749), + [aux_sym_addressof_expression_token1] = ACTIONS(4749), + [aux_sym_type_of_expression_token1] = ACTIONS(4749), + [aux_sym_unary_expression_token1] = ACTIONS(4749), + [sym_string_literal] = ACTIONS(4751), + [sym_number_literal] = ACTIONS(4751), + [aux_sym_boolean_literal_token1] = ACTIONS(4749), + [aux_sym_boolean_literal_token2] = ACTIONS(4749), + [sym_nothing_literal] = ACTIONS(4749), + [sym_null_literal] = ACTIONS(4749), + [sym_empty_literal] = ACTIONS(4749), + [sym_date_literal] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4749), + }, + [STATE(1361)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1402), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_array_bound_token1] = ACTIONS(4375), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(1362)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_declaration_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4601), + [aux_sym_enum_declaration_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4601), + [aux_sym_declare_function_statement_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [aux_sym__property_get_header_token1] = ACTIONS(4601), + [aux_sym_event_declaration_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_array_bound_token1] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(1363)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4605), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_array_bound_token1] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1364)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_select_statement_token2] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1365)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_declaration_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4609), + [aux_sym_enum_declaration_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4609), + [aux_sym_declare_function_statement_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [aux_sym__property_get_header_token1] = ACTIONS(4609), + [aux_sym_event_declaration_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_array_bound_token1] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(1366)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1367)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1374), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(6172), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1368)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5960), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1369)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_declaration_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_enum_declaration_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4485), + [aux_sym_declare_function_statement_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [aux_sym__property_get_header_token1] = ACTIONS(4485), + [aux_sym_event_declaration_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1370)] = { + [sym_argument_list] = STATE(1513), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6174), + [anon_sym_BANG] = ACTIONS(6176), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(6178), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1371)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_statement_token2] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1372)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5960), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5962), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1373)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5960), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5962), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5964), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1374)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1385), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(1375)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5960), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5962), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5964), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5966), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1376)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4621), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_array_bound_token1] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1377)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_declaration_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4625), + [aux_sym_enum_declaration_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4625), + [aux_sym_declare_function_statement_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [aux_sym__property_get_header_token1] = ACTIONS(4625), + [aux_sym_event_declaration_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_array_bound_token1] = ACTIONS(4625), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1378)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1379)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_declaration_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4485), + [aux_sym_enum_declaration_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4485), + [aux_sym_declare_function_statement_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [aux_sym__property_get_header_token1] = ACTIONS(4485), + [aux_sym_event_declaration_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_array_bound_token1] = ACTIONS(4485), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1380)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_while_statement_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1381)] = { + [sym_identifier] = ACTIONS(5555), + [sym_newline] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(4399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5555), + [aux_sym_frm_property_statement_token1] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(6151), + [anon_sym_BANG] = ACTIONS(5633), + [aux_sym__attribute_identifier_token1] = ACTIONS(5555), + [aux_sym_option_statement_token3] = ACTIONS(5555), + [aux_sym_type_declaration_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5555), + [aux_sym_enum_declaration_token1] = ACTIONS(5555), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5555), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5555), + [aux_sym_declare_function_statement_token1] = ACTIONS(5555), + [aux_sym_preprocessor_const_token1] = ACTIONS(5555), + [aux_sym__property_get_header_token1] = ACTIONS(5555), + [aux_sym_event_declaration_token1] = ACTIONS(5555), + [sym_static_modifier] = ACTIONS(5555), + [sym__dim_keyword] = ACTIONS(5555), + [sym__redim_keyword] = ACTIONS(5555), + [aux_sym_byval_modifier_token1] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5555), + [aux_sym_set_accessor_token1] = ACTIONS(5555), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5555), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5555), + [aux_sym_visibility_token1] = ACTIONS(5555), + [aux_sym_visibility_token2] = ACTIONS(5555), + [aux_sym_elseif_fragment_token1] = ACTIONS(5555), + [aux_sym_else_fragment_token1] = ACTIONS(5555), + [aux_sym_select_statement_token1] = ACTIONS(5555), + [aux_sym__for_header_token1] = ACTIONS(5555), + [aux_sym_do_statement_token1] = ACTIONS(5555), + [aux_sym_do_condition_token1] = ACTIONS(5555), + [aux_sym_with_statement_token1] = ACTIONS(5555), + [aux_sym_exit_statement_token1] = ACTIONS(5555), + [sym_end_statement] = ACTIONS(4399), + [aux_sym_on_goto_statement_token1] = ACTIONS(5555), + [aux_sym_on_goto_statement_token2] = ACTIONS(5555), + [aux_sym_on_error_statement_token2] = ACTIONS(5555), + [sym__ambiguous_redim_statement] = ACTIONS(4399), + [aux_sym_erase_statement_token1] = ACTIONS(5555), + [aux_sym_open_statement_token1] = ACTIONS(5555), + [aux_sym_file_mode_token2] = ACTIONS(5555), + [aux_sym_file_access_token2] = ACTIONS(5555), + [aux_sym_file_lock_token2] = ACTIONS(5555), + [aux_sym_print_statement_token1] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(5555), + [aux_sym_put_statement_token1] = ACTIONS(5555), + [aux_sym_unlock_statement_token1] = ACTIONS(5555), + [aux_sym_seek_statement_token1] = ACTIONS(5555), + [sym_reset_statement] = ACTIONS(5555), + [aux_sym_raise_event_statement_token1] = ACTIONS(5555), + [sym_stop_statement] = ACTIONS(5555), + [sym_beep_statement] = ACTIONS(5555), + [aux_sym_unload_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token2] = ACTIONS(5555), + [aux_sym_def_type_statement_token3] = ACTIONS(5555), + [aux_sym_def_type_statement_token4] = ACTIONS(5555), + [aux_sym_def_type_statement_token5] = ACTIONS(5555), + [aux_sym_def_type_statement_token6] = ACTIONS(5555), + [aux_sym_def_type_statement_token7] = ACTIONS(5555), + [aux_sym_def_type_statement_token8] = ACTIONS(5555), + [aux_sym_def_type_statement_token9] = ACTIONS(5555), + [aux_sym_def_type_statement_token10] = ACTIONS(5555), + [aux_sym_def_type_statement_token11] = ACTIONS(5555), + [aux_sym_def_type_statement_token12] = ACTIONS(5555), + [aux_sym_def_type_statement_token13] = ACTIONS(5555), + [aux_sym_def_type_statement_token14] = ACTIONS(5555), + [aux_sym_call_statement_token1] = ACTIONS(5555), + [sym__ambiguous_call_statement] = ACTIONS(5555), + [aux_sym_addressof_expression_token1] = ACTIONS(5555), + [aux_sym_type_of_expression_token1] = ACTIONS(5555), + [aux_sym_unary_expression_token1] = ACTIONS(5555), + [sym_string_literal] = ACTIONS(4399), + [sym_number_literal] = ACTIONS(4399), + [aux_sym_boolean_literal_token1] = ACTIONS(5555), + [aux_sym_boolean_literal_token2] = ACTIONS(5555), + [sym_nothing_literal] = ACTIONS(5555), + [sym_null_literal] = ACTIONS(5555), + [sym_empty_literal] = ACTIONS(5555), + [sym_date_literal] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(5555), + }, + [STATE(1382)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1383)] = { + [sym_identifier] = ACTIONS(4745), + [sym_newline] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4745), + [aux_sym_frm_property_statement_token1] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_BANG] = ACTIONS(4747), + [aux_sym__attribute_identifier_token1] = ACTIONS(4745), + [aux_sym_option_statement_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4745), + [aux_sym_preprocessor_const_token1] = ACTIONS(4745), + [sym_static_modifier] = ACTIONS(4745), + [sym__dim_keyword] = ACTIONS(4745), + [sym__redim_keyword] = ACTIONS(4745), + [aux_sym_get_accessor_token1] = ACTIONS(4745), + [aux_sym_set_accessor_token1] = ACTIONS(4745), + [anon_sym_COMMA] = ACTIONS(4747), + [aux_sym_const_declaration_token1] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4747), + [aux_sym_as_type_clause_token2] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4747), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4745), + [aux_sym_visibility_token1] = ACTIONS(4745), + [aux_sym_visibility_token2] = ACTIONS(4745), + [aux_sym_elseif_fragment_token1] = ACTIONS(4745), + [aux_sym_else_fragment_token1] = ACTIONS(4745), + [aux_sym_select_statement_token1] = ACTIONS(4745), + [aux_sym_case_expression_token1] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_LT_EQ] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_GT_EQ] = ACTIONS(4747), + [anon_sym_LT_GT] = ACTIONS(4747), + [aux_sym__for_header_token1] = ACTIONS(4745), + [aux_sym_do_statement_token1] = ACTIONS(4745), + [aux_sym_do_condition_token1] = ACTIONS(4745), + [aux_sym_with_statement_token1] = ACTIONS(4745), + [aux_sym_exit_statement_token1] = ACTIONS(4745), + [sym_end_statement] = ACTIONS(4747), + [aux_sym_on_goto_statement_token1] = ACTIONS(4745), + [aux_sym_on_goto_statement_token2] = ACTIONS(4745), + [aux_sym_on_error_statement_token2] = ACTIONS(4745), + [sym__ambiguous_redim_statement] = ACTIONS(4747), + [aux_sym_erase_statement_token1] = ACTIONS(4745), + [aux_sym_open_statement_token1] = ACTIONS(4745), + [aux_sym_file_mode_token2] = ACTIONS(4745), + [aux_sym_file_access_token2] = ACTIONS(4745), + [aux_sym_file_lock_token2] = ACTIONS(4745), + [aux_sym_print_statement_token1] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_BSLASH] = ACTIONS(4747), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4745), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [aux_sym_close_statement_token1] = ACTIONS(4745), + [aux_sym_put_statement_token1] = ACTIONS(4745), + [aux_sym_unlock_statement_token1] = ACTIONS(4745), + [aux_sym_seek_statement_token1] = ACTIONS(4745), + [sym_reset_statement] = ACTIONS(4745), + [aux_sym_raise_event_statement_token1] = ACTIONS(4745), + [sym_stop_statement] = ACTIONS(4745), + [sym_beep_statement] = ACTIONS(4745), + [aux_sym_unload_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token2] = ACTIONS(4745), + [aux_sym_def_type_statement_token3] = ACTIONS(4745), + [aux_sym_def_type_statement_token4] = ACTIONS(4745), + [aux_sym_def_type_statement_token5] = ACTIONS(4745), + [aux_sym_def_type_statement_token6] = ACTIONS(4745), + [aux_sym_def_type_statement_token7] = ACTIONS(4745), + [aux_sym_def_type_statement_token8] = ACTIONS(4745), + [aux_sym_def_type_statement_token9] = ACTIONS(4745), + [aux_sym_def_type_statement_token10] = ACTIONS(4745), + [aux_sym_def_type_statement_token11] = ACTIONS(4745), + [aux_sym_def_type_statement_token12] = ACTIONS(4745), + [aux_sym_def_type_statement_token13] = ACTIONS(4745), + [aux_sym_def_type_statement_token14] = ACTIONS(4745), + [aux_sym_call_statement_token1] = ACTIONS(4745), + [sym__ambiguous_call_statement] = ACTIONS(4745), + [aux_sym_comparison_operator_token1] = ACTIONS(4745), + [aux_sym_addressof_expression_token1] = ACTIONS(4745), + [aux_sym_type_of_expression_token1] = ACTIONS(4745), + [aux_sym_unary_expression_token1] = ACTIONS(4745), + [sym_string_literal] = ACTIONS(4747), + [sym_number_literal] = ACTIONS(4747), + [aux_sym_boolean_literal_token1] = ACTIONS(4745), + [aux_sym_boolean_literal_token2] = ACTIONS(4745), + [sym_nothing_literal] = ACTIONS(4745), + [sym_null_literal] = ACTIONS(4745), + [sym_empty_literal] = ACTIONS(4745), + [sym_date_literal] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4745), + }, + [STATE(1384)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1385)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1385), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(6180), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1386)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_while_statement_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1387)] = { + [sym_identifier] = ACTIONS(4749), + [sym_newline] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4749), + [aux_sym_frm_property_statement_token1] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_BANG] = ACTIONS(4751), + [aux_sym__attribute_identifier_token1] = ACTIONS(4749), + [aux_sym_option_statement_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4749), + [aux_sym_preprocessor_const_token1] = ACTIONS(4749), + [sym_static_modifier] = ACTIONS(4749), + [sym__dim_keyword] = ACTIONS(4749), + [sym__redim_keyword] = ACTIONS(4749), + [aux_sym_get_accessor_token1] = ACTIONS(4749), + [aux_sym_set_accessor_token1] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4751), + [aux_sym_const_declaration_token1] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4751), + [aux_sym_as_type_clause_token2] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4749), + [aux_sym_visibility_token1] = ACTIONS(4749), + [aux_sym_visibility_token2] = ACTIONS(4749), + [aux_sym_elseif_fragment_token1] = ACTIONS(4749), + [aux_sym_else_fragment_token1] = ACTIONS(4749), + [aux_sym_select_statement_token1] = ACTIONS(4749), + [aux_sym_case_expression_token1] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_GT] = ACTIONS(4751), + [aux_sym__for_header_token1] = ACTIONS(4749), + [aux_sym_do_statement_token1] = ACTIONS(4749), + [aux_sym_do_condition_token1] = ACTIONS(4749), + [aux_sym_with_statement_token1] = ACTIONS(4749), + [aux_sym_exit_statement_token1] = ACTIONS(4749), + [sym_end_statement] = ACTIONS(4751), + [aux_sym_on_goto_statement_token1] = ACTIONS(4749), + [aux_sym_on_goto_statement_token2] = ACTIONS(4749), + [aux_sym_on_error_statement_token2] = ACTIONS(4749), + [sym__ambiguous_redim_statement] = ACTIONS(4751), + [aux_sym_erase_statement_token1] = ACTIONS(4749), + [aux_sym_open_statement_token1] = ACTIONS(4749), + [aux_sym_file_mode_token2] = ACTIONS(4749), + [aux_sym_file_access_token2] = ACTIONS(4749), + [aux_sym_file_lock_token2] = ACTIONS(4749), + [aux_sym_print_statement_token1] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_BSLASH] = ACTIONS(4751), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [aux_sym_close_statement_token1] = ACTIONS(4749), + [aux_sym_put_statement_token1] = ACTIONS(4749), + [aux_sym_unlock_statement_token1] = ACTIONS(4749), + [aux_sym_seek_statement_token1] = ACTIONS(4749), + [sym_reset_statement] = ACTIONS(4749), + [aux_sym_raise_event_statement_token1] = ACTIONS(4749), + [sym_stop_statement] = ACTIONS(4749), + [sym_beep_statement] = ACTIONS(4749), + [aux_sym_unload_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token2] = ACTIONS(4749), + [aux_sym_def_type_statement_token3] = ACTIONS(4749), + [aux_sym_def_type_statement_token4] = ACTIONS(4749), + [aux_sym_def_type_statement_token5] = ACTIONS(4749), + [aux_sym_def_type_statement_token6] = ACTIONS(4749), + [aux_sym_def_type_statement_token7] = ACTIONS(4749), + [aux_sym_def_type_statement_token8] = ACTIONS(4749), + [aux_sym_def_type_statement_token9] = ACTIONS(4749), + [aux_sym_def_type_statement_token10] = ACTIONS(4749), + [aux_sym_def_type_statement_token11] = ACTIONS(4749), + [aux_sym_def_type_statement_token12] = ACTIONS(4749), + [aux_sym_def_type_statement_token13] = ACTIONS(4749), + [aux_sym_def_type_statement_token14] = ACTIONS(4749), + [aux_sym_call_statement_token1] = ACTIONS(4749), + [sym__ambiguous_call_statement] = ACTIONS(4749), + [aux_sym_comparison_operator_token1] = ACTIONS(4749), + [aux_sym_addressof_expression_token1] = ACTIONS(4749), + [aux_sym_type_of_expression_token1] = ACTIONS(4749), + [aux_sym_unary_expression_token1] = ACTIONS(4749), + [sym_string_literal] = ACTIONS(4751), + [sym_number_literal] = ACTIONS(4751), + [aux_sym_boolean_literal_token1] = ACTIONS(4749), + [aux_sym_boolean_literal_token2] = ACTIONS(4749), + [sym_nothing_literal] = ACTIONS(4749), + [sym_null_literal] = ACTIONS(4749), + [sym_empty_literal] = ACTIONS(4749), + [sym_date_literal] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4749), + }, + [STATE(1388)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_select_statement_token2] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1389)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1390)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1391)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1392)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1393)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_statement_token2] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1394)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1395)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_statement_token2] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1396)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_while_statement_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1397)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4006), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [anon_sym_COLON_EQ] = ACTIONS(6183), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1398)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1399)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6123), + [anon_sym_BANG] = ACTIONS(6125), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [anon_sym_COLON_EQ] = ACTIONS(6185), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1400)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1401)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1402)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1402), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(6187), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1403)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1404)] = { + [sym_identifier] = ACTIONS(4745), + [sym_newline] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4745), + [aux_sym_frm_property_statement_token1] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_BANG] = ACTIONS(4747), + [aux_sym__attribute_identifier_token1] = ACTIONS(4745), + [aux_sym_option_statement_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4745), + [aux_sym_preprocessor_const_token1] = ACTIONS(4745), + [sym_static_modifier] = ACTIONS(4745), + [sym__dim_keyword] = ACTIONS(4745), + [sym__redim_keyword] = ACTIONS(4745), + [aux_sym_get_accessor_token1] = ACTIONS(4745), + [aux_sym_set_accessor_token1] = ACTIONS(4745), + [anon_sym_COMMA] = ACTIONS(4747), + [aux_sym_const_declaration_token1] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4747), + [aux_sym_as_type_clause_token2] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4747), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4745), + [aux_sym_visibility_token1] = ACTIONS(4745), + [aux_sym_visibility_token2] = ACTIONS(4745), + [aux_sym_elseif_fragment_token1] = ACTIONS(4745), + [aux_sym_else_fragment_token1] = ACTIONS(4745), + [aux_sym_select_statement_token1] = ACTIONS(4745), + [aux_sym_case_expression_token1] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_LT_EQ] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_GT_EQ] = ACTIONS(4747), + [anon_sym_LT_GT] = ACTIONS(4747), + [aux_sym__for_header_token1] = ACTIONS(4745), + [aux_sym_do_statement_token1] = ACTIONS(4745), + [aux_sym_do_statement_token2] = ACTIONS(4745), + [aux_sym_do_condition_token1] = ACTIONS(4745), + [aux_sym_with_statement_token1] = ACTIONS(4745), + [aux_sym_exit_statement_token1] = ACTIONS(4745), + [sym_end_statement] = ACTIONS(4747), + [aux_sym_on_goto_statement_token1] = ACTIONS(4745), + [aux_sym_on_goto_statement_token2] = ACTIONS(4745), + [aux_sym_on_error_statement_token2] = ACTIONS(4745), + [sym__ambiguous_redim_statement] = ACTIONS(4747), + [aux_sym_erase_statement_token1] = ACTIONS(4745), + [aux_sym_open_statement_token1] = ACTIONS(4745), + [aux_sym_file_mode_token2] = ACTIONS(4745), + [aux_sym_file_access_token2] = ACTIONS(4745), + [aux_sym_file_lock_token2] = ACTIONS(4745), + [aux_sym_print_statement_token1] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_BSLASH] = ACTIONS(4747), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4745), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [aux_sym_close_statement_token1] = ACTIONS(4745), + [aux_sym_put_statement_token1] = ACTIONS(4745), + [aux_sym_unlock_statement_token1] = ACTIONS(4745), + [aux_sym_seek_statement_token1] = ACTIONS(4745), + [sym_reset_statement] = ACTIONS(4745), + [aux_sym_raise_event_statement_token1] = ACTIONS(4745), + [sym_stop_statement] = ACTIONS(4745), + [sym_beep_statement] = ACTIONS(4745), + [aux_sym_unload_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token2] = ACTIONS(4745), + [aux_sym_def_type_statement_token3] = ACTIONS(4745), + [aux_sym_def_type_statement_token4] = ACTIONS(4745), + [aux_sym_def_type_statement_token5] = ACTIONS(4745), + [aux_sym_def_type_statement_token6] = ACTIONS(4745), + [aux_sym_def_type_statement_token7] = ACTIONS(4745), + [aux_sym_def_type_statement_token8] = ACTIONS(4745), + [aux_sym_def_type_statement_token9] = ACTIONS(4745), + [aux_sym_def_type_statement_token10] = ACTIONS(4745), + [aux_sym_def_type_statement_token11] = ACTIONS(4745), + [aux_sym_def_type_statement_token12] = ACTIONS(4745), + [aux_sym_def_type_statement_token13] = ACTIONS(4745), + [aux_sym_def_type_statement_token14] = ACTIONS(4745), + [aux_sym_call_statement_token1] = ACTIONS(4745), + [sym__ambiguous_call_statement] = ACTIONS(4745), + [aux_sym_comparison_operator_token1] = ACTIONS(4745), + [aux_sym_addressof_expression_token1] = ACTIONS(4745), + [aux_sym_type_of_expression_token1] = ACTIONS(4745), + [aux_sym_unary_expression_token1] = ACTIONS(4745), + [sym_string_literal] = ACTIONS(4747), + [sym_number_literal] = ACTIONS(4747), + [aux_sym_boolean_literal_token1] = ACTIONS(4745), + [aux_sym_boolean_literal_token2] = ACTIONS(4745), + [sym_nothing_literal] = ACTIONS(4745), + [sym_null_literal] = ACTIONS(4745), + [sym_empty_literal] = ACTIONS(4745), + [sym_date_literal] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4745), + }, + [STATE(1405)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1406)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5631), + [anon_sym_BANG] = ACTIONS(5633), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1407)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1408)] = { + [sym_identifier] = ACTIONS(4671), + [sym_newline] = ACTIONS(4673), + [anon_sym_COLON] = ACTIONS(4673), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4671), + [aux_sym_frm_property_statement_token1] = ACTIONS(4671), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4671), + [anon_sym_BANG] = ACTIONS(4673), + [aux_sym__attribute_identifier_token1] = ACTIONS(4671), + [aux_sym_option_statement_token3] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4671), + [aux_sym_preprocessor_const_token1] = ACTIONS(4671), + [sym_static_modifier] = ACTIONS(4671), + [sym__dim_keyword] = ACTIONS(4671), + [sym__redim_keyword] = ACTIONS(4671), + [aux_sym_get_accessor_token1] = ACTIONS(4671), + [aux_sym_set_accessor_token1] = ACTIONS(4671), + [anon_sym_COMMA] = ACTIONS(4673), + [aux_sym_const_declaration_token1] = ACTIONS(4671), + [anon_sym_LPAREN] = ACTIONS(4673), + [aux_sym_as_type_clause_token2] = ACTIONS(4671), + [anon_sym_STAR] = ACTIONS(4673), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4671), + [aux_sym_visibility_token1] = ACTIONS(4671), + [aux_sym_visibility_token2] = ACTIONS(4671), + [aux_sym_elseif_fragment_token1] = ACTIONS(4671), + [aux_sym_else_fragment_token1] = ACTIONS(4671), + [aux_sym_select_statement_token1] = ACTIONS(4671), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4671), + [aux_sym_do_statement_token1] = ACTIONS(4671), + [aux_sym_do_statement_token2] = ACTIONS(4671), + [aux_sym_do_condition_token1] = ACTIONS(4671), + [aux_sym_with_statement_token1] = ACTIONS(4671), + [aux_sym_exit_statement_token1] = ACTIONS(4671), + [sym_end_statement] = ACTIONS(4673), + [aux_sym_on_goto_statement_token1] = ACTIONS(4671), + [aux_sym_on_goto_statement_token2] = ACTIONS(4671), + [aux_sym_on_error_statement_token2] = ACTIONS(4671), + [sym__ambiguous_redim_statement] = ACTIONS(4673), + [aux_sym_erase_statement_token1] = ACTIONS(4671), + [aux_sym_open_statement_token1] = ACTIONS(4671), + [aux_sym_file_mode_token2] = ACTIONS(4671), + [aux_sym_file_access_token2] = ACTIONS(4671), + [aux_sym_file_lock_token2] = ACTIONS(4671), + [aux_sym_print_statement_token1] = ACTIONS(4671), + [anon_sym_CARET] = ACTIONS(4673), + [anon_sym_SLASH] = ACTIONS(4673), + [anon_sym_BSLASH] = ACTIONS(4673), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4671), + [anon_sym_PLUS] = ACTIONS(4673), + [anon_sym_DASH] = ACTIONS(4671), + [anon_sym_AMP] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4671), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym_QMARK] = ACTIONS(4673), + [aux_sym_close_statement_token1] = ACTIONS(4671), + [aux_sym_put_statement_token1] = ACTIONS(4671), + [aux_sym_unlock_statement_token1] = ACTIONS(4671), + [aux_sym_seek_statement_token1] = ACTIONS(4671), + [sym_reset_statement] = ACTIONS(4671), + [aux_sym_raise_event_statement_token1] = ACTIONS(4671), + [sym_stop_statement] = ACTIONS(4671), + [sym_beep_statement] = ACTIONS(4671), + [aux_sym_unload_statement_token1] = ACTIONS(4671), + [aux_sym_def_type_statement_token1] = ACTIONS(4671), + [aux_sym_def_type_statement_token2] = ACTIONS(4671), + [aux_sym_def_type_statement_token3] = ACTIONS(4671), + [aux_sym_def_type_statement_token4] = ACTIONS(4671), + [aux_sym_def_type_statement_token5] = ACTIONS(4671), + [aux_sym_def_type_statement_token6] = ACTIONS(4671), + [aux_sym_def_type_statement_token7] = ACTIONS(4671), + [aux_sym_def_type_statement_token8] = ACTIONS(4671), + [aux_sym_def_type_statement_token9] = ACTIONS(4671), + [aux_sym_def_type_statement_token10] = ACTIONS(4671), + [aux_sym_def_type_statement_token11] = ACTIONS(4671), + [aux_sym_def_type_statement_token12] = ACTIONS(4671), + [aux_sym_def_type_statement_token13] = ACTIONS(4671), + [aux_sym_def_type_statement_token14] = ACTIONS(4671), + [aux_sym_call_statement_token1] = ACTIONS(4671), + [sym__ambiguous_call_statement] = ACTIONS(4671), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4671), + [aux_sym_type_of_expression_token1] = ACTIONS(4671), + [aux_sym_unary_expression_token1] = ACTIONS(4671), + [sym_string_literal] = ACTIONS(4673), + [sym_number_literal] = ACTIONS(4673), + [aux_sym_boolean_literal_token1] = ACTIONS(4671), + [aux_sym_boolean_literal_token2] = ACTIONS(4671), + [sym_nothing_literal] = ACTIONS(4671), + [sym_null_literal] = ACTIONS(4671), + [sym_empty_literal] = ACTIONS(4671), + [sym_date_literal] = ACTIONS(4673), + [anon_sym_POUND] = ACTIONS(4671), + }, + [STATE(1409)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_while_statement_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1410)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5917), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5917), + [anon_sym_BSLASH] = ACTIONS(5921), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5923), + [anon_sym_PLUS] = ACTIONS(5925), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_AMP] = ACTIONS(5929), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5931), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5933), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5935), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5937), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1411)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_declaration_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4441), + [aux_sym_enum_declaration_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4441), + [aux_sym_declare_function_statement_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [aux_sym__property_get_header_token1] = ACTIONS(4441), + [aux_sym_event_declaration_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_array_bound_token1] = ACTIONS(4441), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(5985), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1412)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1413)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1414)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1415)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5887), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5889), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5891), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5893), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6190), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1416)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_statement_token2] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1417)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_declaration_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4451), + [aux_sym_enum_declaration_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4451), + [aux_sym_declare_function_statement_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [aux_sym__property_get_header_token1] = ACTIONS(4451), + [aux_sym_event_declaration_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(5987), + [aux_sym_array_bound_token1] = ACTIONS(4451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(5985), + [anon_sym_SLASH] = ACTIONS(5987), + [anon_sym_BSLASH] = ACTIONS(5989), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5991), + [anon_sym_PLUS] = ACTIONS(5993), + [anon_sym_DASH] = ACTIONS(5995), + [anon_sym_AMP] = ACTIONS(5997), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5999), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6001), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6003), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6005), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6145), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1418)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1419)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5830), + [anon_sym_BANG] = ACTIONS(5832), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_while_statement_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1420)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1421)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_declaration_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4447), + [aux_sym_enum_declaration_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4447), + [aux_sym_declare_function_statement_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [aux_sym__property_get_header_token1] = ACTIONS(4447), + [aux_sym_event_declaration_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token3] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1422)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1423)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1424)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_declaration_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4477), + [aux_sym_enum_declaration_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4477), + [aux_sym_declare_function_statement_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [aux_sym__property_get_header_token1] = ACTIONS(4477), + [aux_sym_event_declaration_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token3] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1425)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1426)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_declaration_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4485), + [aux_sym_enum_declaration_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4485), + [aux_sym_declare_function_statement_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [aux_sym__property_get_header_token1] = ACTIONS(4485), + [aux_sym_event_declaration_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token3] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1427)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6162), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1428)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6162), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6164), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1429)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_declaration_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4441), + [aux_sym_enum_declaration_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4441), + [aux_sym_declare_function_statement_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [aux_sym__property_get_header_token1] = ACTIONS(4441), + [aux_sym_event_declaration_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token3] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1430)] = { + [sym_argument_list] = STATE(1828), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6192), + [anon_sym_BANG] = ACTIONS(6194), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(6196), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_while_statement_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1431)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(3774), + [sym_identifier] = ACTIONS(5566), + [sym_newline] = ACTIONS(5568), + [anon_sym_COLON] = ACTIONS(5568), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5566), + [aux_sym_frm_property_statement_token1] = ACTIONS(5566), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_BANG] = ACTIONS(5568), + [aux_sym__attribute_identifier_token1] = ACTIONS(5566), + [aux_sym_option_statement_token3] = ACTIONS(5566), + [aux_sym_type_declaration_token1] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5566), + [aux_sym_enum_declaration_token1] = ACTIONS(5566), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5566), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5566), + [aux_sym_declare_function_statement_token1] = ACTIONS(5566), + [aux_sym_preprocessor_const_token1] = ACTIONS(5566), + [aux_sym__property_get_header_token1] = ACTIONS(5566), + [aux_sym_event_declaration_token1] = ACTIONS(5566), + [sym_static_modifier] = ACTIONS(5566), + [sym__dim_keyword] = ACTIONS(5566), + [sym__redim_keyword] = ACTIONS(5566), + [aux_sym_get_accessor_token1] = ACTIONS(5566), + [aux_sym_set_accessor_token1] = ACTIONS(5566), + [anon_sym_COMMA] = ACTIONS(6198), + [aux_sym_const_declaration_token1] = ACTIONS(5566), + [anon_sym_LPAREN] = ACTIONS(5568), + [aux_sym_as_type_clause_token2] = ACTIONS(5566), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5566), + [aux_sym_visibility_token1] = ACTIONS(5566), + [aux_sym_visibility_token2] = ACTIONS(5566), + [aux_sym_elseif_fragment_token1] = ACTIONS(5566), + [aux_sym_else_fragment_token1] = ACTIONS(5566), + [aux_sym_select_statement_token1] = ACTIONS(5566), + [aux_sym__for_header_token1] = ACTIONS(5566), + [aux_sym_do_statement_token1] = ACTIONS(5566), + [aux_sym_do_condition_token1] = ACTIONS(5566), + [aux_sym_with_statement_token1] = ACTIONS(5566), + [aux_sym_exit_statement_token1] = ACTIONS(5566), + [sym_end_statement] = ACTIONS(5568), + [aux_sym_on_goto_statement_token1] = ACTIONS(5566), + [aux_sym_on_goto_statement_token2] = ACTIONS(5566), + [aux_sym_on_error_statement_token2] = ACTIONS(5566), + [sym__ambiguous_redim_statement] = ACTIONS(5568), + [aux_sym_erase_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_file_mode_token2] = ACTIONS(5566), + [aux_sym_file_access_token2] = ACTIONS(5566), + [aux_sym_file_lock_token2] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(6198), + [anon_sym_QMARK] = ACTIONS(5568), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_put_statement_token1] = ACTIONS(5566), + [aux_sym_unlock_statement_token1] = ACTIONS(5566), + [aux_sym_seek_statement_token1] = ACTIONS(5566), + [sym_reset_statement] = ACTIONS(5566), + [aux_sym_raise_event_statement_token1] = ACTIONS(5566), + [sym_stop_statement] = ACTIONS(5566), + [sym_beep_statement] = ACTIONS(5566), + [aux_sym_unload_statement_token1] = ACTIONS(5566), + [aux_sym_def_type_statement_token1] = ACTIONS(5566), + [aux_sym_def_type_statement_token2] = ACTIONS(5566), + [aux_sym_def_type_statement_token3] = ACTIONS(5566), + [aux_sym_def_type_statement_token4] = ACTIONS(5566), + [aux_sym_def_type_statement_token5] = ACTIONS(5566), + [aux_sym_def_type_statement_token6] = ACTIONS(5566), + [aux_sym_def_type_statement_token7] = ACTIONS(5566), + [aux_sym_def_type_statement_token8] = ACTIONS(5566), + [aux_sym_def_type_statement_token9] = ACTIONS(5566), + [aux_sym_def_type_statement_token10] = ACTIONS(5566), + [aux_sym_def_type_statement_token11] = ACTIONS(5566), + [aux_sym_def_type_statement_token12] = ACTIONS(5566), + [aux_sym_def_type_statement_token13] = ACTIONS(5566), + [aux_sym_def_type_statement_token14] = ACTIONS(5566), + [aux_sym_call_statement_token1] = ACTIONS(5566), + [sym__ambiguous_call_statement] = ACTIONS(5566), + [aux_sym_addressof_expression_token1] = ACTIONS(5566), + [aux_sym_type_of_expression_token1] = ACTIONS(5566), + [aux_sym_unary_expression_token1] = ACTIONS(5566), + [sym_string_literal] = ACTIONS(5568), + [sym_number_literal] = ACTIONS(5568), + [aux_sym_boolean_literal_token1] = ACTIONS(5566), + [aux_sym_boolean_literal_token2] = ACTIONS(5566), + [sym_nothing_literal] = ACTIONS(5566), + [sym_null_literal] = ACTIONS(5566), + [sym_empty_literal] = ACTIONS(5566), + [sym_date_literal] = ACTIONS(5568), + [anon_sym_POUND] = ACTIONS(5566), + }, + [STATE(1432)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_declaration_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4451), + [aux_sym_enum_declaration_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4451), + [aux_sym_declare_function_statement_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [aux_sym__property_get_header_token1] = ACTIONS(4451), + [aux_sym_event_declaration_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(5917), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token3] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5917), + [anon_sym_BSLASH] = ACTIONS(5921), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5923), + [anon_sym_PLUS] = ACTIONS(5925), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_AMP] = ACTIONS(5929), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5931), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5933), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5935), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5937), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5939), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1433)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_statement_token2] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1434)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1435)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_declaration_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5913), + [aux_sym_enum_declaration_token1] = ACTIONS(5913), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5913), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5913), + [aux_sym_declare_function_statement_token1] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [aux_sym__property_get_header_token1] = ACTIONS(5913), + [aux_sym_event_declaration_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5915), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(1436)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_declaration_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5913), + [aux_sym_enum_declaration_token1] = ACTIONS(5913), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5913), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5913), + [aux_sym_declare_function_statement_token1] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [aux_sym__property_get_header_token1] = ACTIONS(5913), + [aux_sym_event_declaration_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5915), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(1437)] = { + [sym_identifier] = ACTIONS(4759), + [sym_newline] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4761), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4759), + [aux_sym_frm_property_statement_token1] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4761), + [aux_sym__attribute_identifier_token1] = ACTIONS(4759), + [aux_sym_option_statement_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4759), + [aux_sym_preprocessor_const_token1] = ACTIONS(4759), + [sym_static_modifier] = ACTIONS(4759), + [sym__dim_keyword] = ACTIONS(4759), + [sym__redim_keyword] = ACTIONS(4759), + [aux_sym_get_accessor_token1] = ACTIONS(4759), + [aux_sym_set_accessor_token1] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [aux_sym_const_declaration_token1] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4763), + [aux_sym_as_type_clause_token2] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4759), + [aux_sym_visibility_token1] = ACTIONS(4759), + [aux_sym_visibility_token2] = ACTIONS(4759), + [aux_sym_elseif_fragment_token1] = ACTIONS(4759), + [aux_sym_else_fragment_token1] = ACTIONS(4759), + [aux_sym_select_statement_token1] = ACTIONS(4759), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4759), + [aux_sym_do_statement_token1] = ACTIONS(4759), + [aux_sym_do_statement_token2] = ACTIONS(4759), + [aux_sym_do_condition_token1] = ACTIONS(4759), + [aux_sym_with_statement_token1] = ACTIONS(4759), + [aux_sym_exit_statement_token1] = ACTIONS(4759), + [sym_end_statement] = ACTIONS(4761), + [aux_sym_on_goto_statement_token1] = ACTIONS(4759), + [aux_sym_on_goto_statement_token2] = ACTIONS(4759), + [aux_sym_on_error_statement_token2] = ACTIONS(4759), + [sym__ambiguous_redim_statement] = ACTIONS(4761), + [aux_sym_erase_statement_token1] = ACTIONS(4759), + [aux_sym_open_statement_token1] = ACTIONS(4759), + [aux_sym_file_mode_token2] = ACTIONS(4759), + [aux_sym_file_access_token2] = ACTIONS(4759), + [aux_sym_file_lock_token2] = ACTIONS(4759), + [aux_sym_print_statement_token1] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_QMARK] = ACTIONS(4761), + [aux_sym_close_statement_token1] = ACTIONS(4759), + [aux_sym_put_statement_token1] = ACTIONS(4759), + [aux_sym_unlock_statement_token1] = ACTIONS(4759), + [aux_sym_seek_statement_token1] = ACTIONS(4759), + [sym_reset_statement] = ACTIONS(4759), + [aux_sym_raise_event_statement_token1] = ACTIONS(4759), + [sym_stop_statement] = ACTIONS(4759), + [sym_beep_statement] = ACTIONS(4759), + [aux_sym_unload_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token2] = ACTIONS(4759), + [aux_sym_def_type_statement_token3] = ACTIONS(4759), + [aux_sym_def_type_statement_token4] = ACTIONS(4759), + [aux_sym_def_type_statement_token5] = ACTIONS(4759), + [aux_sym_def_type_statement_token6] = ACTIONS(4759), + [aux_sym_def_type_statement_token7] = ACTIONS(4759), + [aux_sym_def_type_statement_token8] = ACTIONS(4759), + [aux_sym_def_type_statement_token9] = ACTIONS(4759), + [aux_sym_def_type_statement_token10] = ACTIONS(4759), + [aux_sym_def_type_statement_token11] = ACTIONS(4759), + [aux_sym_def_type_statement_token12] = ACTIONS(4759), + [aux_sym_def_type_statement_token13] = ACTIONS(4759), + [aux_sym_def_type_statement_token14] = ACTIONS(4759), + [aux_sym_call_statement_token1] = ACTIONS(4759), + [sym__ambiguous_call_statement] = ACTIONS(4759), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4759), + [aux_sym_type_of_expression_token1] = ACTIONS(4759), + [aux_sym_unary_expression_token1] = ACTIONS(4759), + [sym_string_literal] = ACTIONS(4761), + [sym_number_literal] = ACTIONS(4761), + [aux_sym_boolean_literal_token1] = ACTIONS(4759), + [aux_sym_boolean_literal_token2] = ACTIONS(4759), + [sym_nothing_literal] = ACTIONS(4759), + [sym_null_literal] = ACTIONS(4759), + [sym_empty_literal] = ACTIONS(4759), + [sym_date_literal] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(4759), + }, + [STATE(1438)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6162), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6164), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6166), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1439)] = { + [sym_identifier] = ACTIONS(4759), + [sym_newline] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4761), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4759), + [aux_sym_frm_property_statement_token1] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4761), + [aux_sym__attribute_identifier_token1] = ACTIONS(4759), + [aux_sym_option_statement_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4759), + [aux_sym_preprocessor_const_token1] = ACTIONS(4759), + [sym_static_modifier] = ACTIONS(4759), + [sym__dim_keyword] = ACTIONS(4759), + [sym__redim_keyword] = ACTIONS(4759), + [aux_sym_get_accessor_token1] = ACTIONS(4759), + [aux_sym_set_accessor_token1] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [aux_sym_const_declaration_token1] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4761), + [aux_sym_as_type_clause_token2] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4759), + [aux_sym_visibility_token1] = ACTIONS(4759), + [aux_sym_visibility_token2] = ACTIONS(4759), + [aux_sym_elseif_fragment_token1] = ACTIONS(4759), + [aux_sym_else_fragment_token1] = ACTIONS(4759), + [aux_sym_select_statement_token1] = ACTIONS(4759), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4759), + [aux_sym_do_statement_token1] = ACTIONS(4759), + [aux_sym_do_statement_token2] = ACTIONS(4759), + [aux_sym_do_condition_token1] = ACTIONS(4759), + [aux_sym_with_statement_token1] = ACTIONS(4759), + [aux_sym_exit_statement_token1] = ACTIONS(4759), + [sym_end_statement] = ACTIONS(4761), + [aux_sym_on_goto_statement_token1] = ACTIONS(4759), + [aux_sym_on_goto_statement_token2] = ACTIONS(4759), + [aux_sym_on_error_statement_token2] = ACTIONS(4759), + [sym__ambiguous_redim_statement] = ACTIONS(4761), + [aux_sym_erase_statement_token1] = ACTIONS(4759), + [aux_sym_open_statement_token1] = ACTIONS(4759), + [aux_sym_file_mode_token2] = ACTIONS(4759), + [aux_sym_file_access_token2] = ACTIONS(4759), + [aux_sym_file_lock_token2] = ACTIONS(4759), + [aux_sym_print_statement_token1] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_QMARK] = ACTIONS(4761), + [aux_sym_close_statement_token1] = ACTIONS(4759), + [aux_sym_put_statement_token1] = ACTIONS(4759), + [aux_sym_unlock_statement_token1] = ACTIONS(4759), + [aux_sym_seek_statement_token1] = ACTIONS(4759), + [sym_reset_statement] = ACTIONS(4759), + [aux_sym_raise_event_statement_token1] = ACTIONS(4759), + [sym_stop_statement] = ACTIONS(4759), + [sym_beep_statement] = ACTIONS(4759), + [aux_sym_unload_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token2] = ACTIONS(4759), + [aux_sym_def_type_statement_token3] = ACTIONS(4759), + [aux_sym_def_type_statement_token4] = ACTIONS(4759), + [aux_sym_def_type_statement_token5] = ACTIONS(4759), + [aux_sym_def_type_statement_token6] = ACTIONS(4759), + [aux_sym_def_type_statement_token7] = ACTIONS(4759), + [aux_sym_def_type_statement_token8] = ACTIONS(4759), + [aux_sym_def_type_statement_token9] = ACTIONS(4759), + [aux_sym_def_type_statement_token10] = ACTIONS(4759), + [aux_sym_def_type_statement_token11] = ACTIONS(4759), + [aux_sym_def_type_statement_token12] = ACTIONS(4759), + [aux_sym_def_type_statement_token13] = ACTIONS(4759), + [aux_sym_def_type_statement_token14] = ACTIONS(4759), + [aux_sym_call_statement_token1] = ACTIONS(4759), + [sym__ambiguous_call_statement] = ACTIONS(4759), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4759), + [aux_sym_type_of_expression_token1] = ACTIONS(4759), + [aux_sym_unary_expression_token1] = ACTIONS(4759), + [sym_string_literal] = ACTIONS(4761), + [sym_number_literal] = ACTIONS(4761), + [aux_sym_boolean_literal_token1] = ACTIONS(4759), + [aux_sym_boolean_literal_token2] = ACTIONS(4759), + [sym_nothing_literal] = ACTIONS(4759), + [sym_null_literal] = ACTIONS(4759), + [sym_empty_literal] = ACTIONS(4759), + [sym_date_literal] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(4759), + }, + [STATE(1440)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6162), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6164), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6166), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6168), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1441)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_statement_token2] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(1442)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_statement_token2] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1443)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_declaration_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4589), + [aux_sym_enum_declaration_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4589), + [aux_sym_declare_function_statement_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [aux_sym__property_get_header_token1] = ACTIONS(4589), + [aux_sym_event_declaration_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token3] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1444)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_statement_token2] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(1445)] = { + [sym_argument_list] = STATE(1582), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6224), + [anon_sym_BANG] = ACTIONS(6226), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(6228), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_while_statement_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1446)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1447)] = { + [sym_identifier] = ACTIONS(4749), + [sym_newline] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4749), + [aux_sym_frm_property_statement_token1] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_BANG] = ACTIONS(4751), + [aux_sym__attribute_identifier_token1] = ACTIONS(4749), + [aux_sym_option_statement_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4749), + [aux_sym_preprocessor_const_token1] = ACTIONS(4749), + [sym_static_modifier] = ACTIONS(4749), + [sym__dim_keyword] = ACTIONS(4749), + [sym__redim_keyword] = ACTIONS(4749), + [aux_sym_get_accessor_token1] = ACTIONS(4749), + [aux_sym_set_accessor_token1] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4751), + [aux_sym_const_declaration_token1] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4751), + [aux_sym_as_type_clause_token2] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4749), + [aux_sym_visibility_token1] = ACTIONS(4749), + [aux_sym_visibility_token2] = ACTIONS(4749), + [aux_sym_elseif_fragment_token1] = ACTIONS(4749), + [aux_sym_else_fragment_token1] = ACTIONS(4749), + [aux_sym_select_statement_token1] = ACTIONS(4749), + [aux_sym_case_expression_token1] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_GT] = ACTIONS(4751), + [aux_sym__for_header_token1] = ACTIONS(4749), + [aux_sym_do_statement_token1] = ACTIONS(4749), + [aux_sym_do_condition_token1] = ACTIONS(4749), + [aux_sym_with_statement_token1] = ACTIONS(4749), + [aux_sym_exit_statement_token1] = ACTIONS(4749), + [sym_end_statement] = ACTIONS(4751), + [aux_sym_on_goto_statement_token1] = ACTIONS(4749), + [aux_sym_on_goto_statement_token2] = ACTIONS(4749), + [aux_sym_on_error_statement_token2] = ACTIONS(4749), + [sym__ambiguous_redim_statement] = ACTIONS(4751), + [aux_sym_erase_statement_token1] = ACTIONS(4749), + [aux_sym_open_statement_token1] = ACTIONS(4749), + [aux_sym_file_mode_token2] = ACTIONS(4749), + [aux_sym_file_access_token2] = ACTIONS(4749), + [aux_sym_file_lock_token2] = ACTIONS(4749), + [aux_sym_print_statement_token1] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_BSLASH] = ACTIONS(4751), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [aux_sym_close_statement_token1] = ACTIONS(4749), + [aux_sym_put_statement_token1] = ACTIONS(4749), + [aux_sym_unlock_statement_token1] = ACTIONS(4749), + [aux_sym_seek_statement_token1] = ACTIONS(4749), + [sym_reset_statement] = ACTIONS(4749), + [aux_sym_raise_event_statement_token1] = ACTIONS(4749), + [sym_stop_statement] = ACTIONS(4749), + [sym_beep_statement] = ACTIONS(4749), + [aux_sym_unload_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token2] = ACTIONS(4749), + [aux_sym_def_type_statement_token3] = ACTIONS(4749), + [aux_sym_def_type_statement_token4] = ACTIONS(4749), + [aux_sym_def_type_statement_token5] = ACTIONS(4749), + [aux_sym_def_type_statement_token6] = ACTIONS(4749), + [aux_sym_def_type_statement_token7] = ACTIONS(4749), + [aux_sym_def_type_statement_token8] = ACTIONS(4749), + [aux_sym_def_type_statement_token9] = ACTIONS(4749), + [aux_sym_def_type_statement_token10] = ACTIONS(4749), + [aux_sym_def_type_statement_token11] = ACTIONS(4749), + [aux_sym_def_type_statement_token12] = ACTIONS(4749), + [aux_sym_def_type_statement_token13] = ACTIONS(4749), + [aux_sym_def_type_statement_token14] = ACTIONS(4749), + [aux_sym_call_statement_token1] = ACTIONS(4749), + [sym__ambiguous_call_statement] = ACTIONS(4749), + [aux_sym_comparison_operator_token1] = ACTIONS(4749), + [aux_sym_addressof_expression_token1] = ACTIONS(4749), + [aux_sym_type_of_expression_token1] = ACTIONS(4749), + [aux_sym_unary_expression_token1] = ACTIONS(4749), + [sym_string_literal] = ACTIONS(4751), + [sym_number_literal] = ACTIONS(4751), + [aux_sym_boolean_literal_token1] = ACTIONS(4749), + [aux_sym_boolean_literal_token2] = ACTIONS(4749), + [sym_nothing_literal] = ACTIONS(4749), + [sym_null_literal] = ACTIONS(4749), + [sym_empty_literal] = ACTIONS(4749), + [sym_date_literal] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4749), + }, + [STATE(1448)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4647), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(5917), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token3] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5917), + [anon_sym_BSLASH] = ACTIONS(5921), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5923), + [anon_sym_PLUS] = ACTIONS(5925), + [anon_sym_DASH] = ACTIONS(5927), + [anon_sym_AMP] = ACTIONS(5929), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1449)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1450)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6230), + [anon_sym_BANG] = ACTIONS(6232), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4806), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_statement_token2] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(1451)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_declaration_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_enum_declaration_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4437), + [aux_sym_declare_function_statement_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [aux_sym__property_get_header_token1] = ACTIONS(4437), + [aux_sym_event_declaration_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1452)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4412), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4412), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_statement_token2] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(1453)] = { + [sym_identifier] = ACTIONS(4420), + [sym_newline] = ACTIONS(4422), + [anon_sym_COLON] = ACTIONS(4422), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4420), + [aux_sym_frm_property_statement_token1] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6230), + [anon_sym_BANG] = ACTIONS(6232), + [aux_sym__attribute_identifier_token1] = ACTIONS(4420), + [aux_sym_option_statement_token3] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4420), + [aux_sym_preprocessor_const_token1] = ACTIONS(4420), + [sym_static_modifier] = ACTIONS(4420), + [sym__dim_keyword] = ACTIONS(4420), + [sym__redim_keyword] = ACTIONS(4420), + [aux_sym_get_accessor_token1] = ACTIONS(4420), + [aux_sym_set_accessor_token1] = ACTIONS(4420), + [anon_sym_COMMA] = ACTIONS(4422), + [aux_sym_const_declaration_token1] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4428), + [aux_sym_as_type_clause_token2] = ACTIONS(4420), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4420), + [aux_sym_visibility_token1] = ACTIONS(4420), + [aux_sym_visibility_token2] = ACTIONS(4420), + [aux_sym_elseif_fragment_token1] = ACTIONS(4420), + [aux_sym_else_fragment_token1] = ACTIONS(4420), + [aux_sym_select_statement_token1] = ACTIONS(4420), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4420), + [aux_sym_do_statement_token1] = ACTIONS(4420), + [aux_sym_do_statement_token2] = ACTIONS(4420), + [aux_sym_do_condition_token1] = ACTIONS(4420), + [aux_sym_with_statement_token1] = ACTIONS(4420), + [aux_sym_exit_statement_token1] = ACTIONS(4420), + [sym_end_statement] = ACTIONS(4422), + [aux_sym_on_goto_statement_token1] = ACTIONS(4420), + [aux_sym_on_goto_statement_token2] = ACTIONS(4420), + [aux_sym_on_error_statement_token2] = ACTIONS(4420), + [sym__ambiguous_redim_statement] = ACTIONS(4422), + [aux_sym_erase_statement_token1] = ACTIONS(4420), + [aux_sym_open_statement_token1] = ACTIONS(4420), + [aux_sym_file_mode_token2] = ACTIONS(4420), + [aux_sym_file_access_token2] = ACTIONS(4420), + [aux_sym_file_lock_token2] = ACTIONS(4420), + [aux_sym_print_statement_token1] = ACTIONS(4420), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4431), + [anon_sym_DASH] = ACTIONS(4434), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym_QMARK] = ACTIONS(4422), + [aux_sym_close_statement_token1] = ACTIONS(4420), + [aux_sym_put_statement_token1] = ACTIONS(4420), + [aux_sym_unlock_statement_token1] = ACTIONS(4420), + [aux_sym_seek_statement_token1] = ACTIONS(4420), + [sym_reset_statement] = ACTIONS(4420), + [aux_sym_raise_event_statement_token1] = ACTIONS(4420), + [sym_stop_statement] = ACTIONS(4420), + [sym_beep_statement] = ACTIONS(4420), + [aux_sym_unload_statement_token1] = ACTIONS(4420), + [aux_sym_def_type_statement_token1] = ACTIONS(4420), + [aux_sym_def_type_statement_token2] = ACTIONS(4420), + [aux_sym_def_type_statement_token3] = ACTIONS(4420), + [aux_sym_def_type_statement_token4] = ACTIONS(4420), + [aux_sym_def_type_statement_token5] = ACTIONS(4420), + [aux_sym_def_type_statement_token6] = ACTIONS(4420), + [aux_sym_def_type_statement_token7] = ACTIONS(4420), + [aux_sym_def_type_statement_token8] = ACTIONS(4420), + [aux_sym_def_type_statement_token9] = ACTIONS(4420), + [aux_sym_def_type_statement_token10] = ACTIONS(4420), + [aux_sym_def_type_statement_token11] = ACTIONS(4420), + [aux_sym_def_type_statement_token12] = ACTIONS(4420), + [aux_sym_def_type_statement_token13] = ACTIONS(4420), + [aux_sym_def_type_statement_token14] = ACTIONS(4420), + [aux_sym_call_statement_token1] = ACTIONS(4420), + [sym__ambiguous_call_statement] = ACTIONS(4420), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4420), + [aux_sym_type_of_expression_token1] = ACTIONS(4420), + [aux_sym_unary_expression_token1] = ACTIONS(4420), + [sym_string_literal] = ACTIONS(4422), + [sym_number_literal] = ACTIONS(4422), + [aux_sym_boolean_literal_token1] = ACTIONS(4420), + [aux_sym_boolean_literal_token2] = ACTIONS(4420), + [sym_nothing_literal] = ACTIONS(4420), + [sym_null_literal] = ACTIONS(4420), + [sym_empty_literal] = ACTIONS(4420), + [sym_date_literal] = ACTIONS(4422), + [anon_sym_POUND] = ACTIONS(4420), + }, + [STATE(1454)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1455)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1456)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5917), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5917), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1457)] = { + [sym_identifier] = ACTIONS(4489), + [sym_newline] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4491), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4489), + [aux_sym_frm_property_statement_token1] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4489), + [anon_sym_BANG] = ACTIONS(4491), + [aux_sym__attribute_identifier_token1] = ACTIONS(4489), + [aux_sym_option_statement_token3] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4489), + [aux_sym_preprocessor_const_token1] = ACTIONS(4489), + [sym_static_modifier] = ACTIONS(4489), + [sym__dim_keyword] = ACTIONS(4489), + [sym__redim_keyword] = ACTIONS(4489), + [aux_sym_get_accessor_token1] = ACTIONS(4489), + [aux_sym_set_accessor_token1] = ACTIONS(4489), + [anon_sym_COMMA] = ACTIONS(4491), + [aux_sym_const_declaration_token1] = ACTIONS(4489), + [anon_sym_LPAREN] = ACTIONS(4491), + [aux_sym_as_type_clause_token2] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4489), + [aux_sym_visibility_token1] = ACTIONS(4489), + [aux_sym_visibility_token2] = ACTIONS(4489), + [aux_sym_elseif_fragment_token1] = ACTIONS(4489), + [aux_sym_else_fragment_token1] = ACTIONS(4489), + [aux_sym_select_statement_token1] = ACTIONS(4489), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4489), + [aux_sym_do_statement_token1] = ACTIONS(4489), + [aux_sym_do_statement_token2] = ACTIONS(4489), + [aux_sym_do_condition_token1] = ACTIONS(4489), + [aux_sym_with_statement_token1] = ACTIONS(4489), + [aux_sym_exit_statement_token1] = ACTIONS(4489), + [sym_end_statement] = ACTIONS(4491), + [aux_sym_on_goto_statement_token1] = ACTIONS(4489), + [aux_sym_on_goto_statement_token2] = ACTIONS(4489), + [aux_sym_on_error_statement_token2] = ACTIONS(4489), + [sym__ambiguous_redim_statement] = ACTIONS(4491), + [aux_sym_erase_statement_token1] = ACTIONS(4489), + [aux_sym_open_statement_token1] = ACTIONS(4489), + [aux_sym_file_mode_token2] = ACTIONS(4489), + [aux_sym_file_access_token2] = ACTIONS(4489), + [aux_sym_file_lock_token2] = ACTIONS(4489), + [aux_sym_print_statement_token1] = ACTIONS(4489), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4491), + [anon_sym_QMARK] = ACTIONS(4491), + [aux_sym_close_statement_token1] = ACTIONS(4489), + [aux_sym_put_statement_token1] = ACTIONS(4489), + [aux_sym_unlock_statement_token1] = ACTIONS(4489), + [aux_sym_seek_statement_token1] = ACTIONS(4489), + [sym_reset_statement] = ACTIONS(4489), + [aux_sym_raise_event_statement_token1] = ACTIONS(4489), + [sym_stop_statement] = ACTIONS(4489), + [sym_beep_statement] = ACTIONS(4489), + [aux_sym_unload_statement_token1] = ACTIONS(4489), + [aux_sym_def_type_statement_token1] = ACTIONS(4489), + [aux_sym_def_type_statement_token2] = ACTIONS(4489), + [aux_sym_def_type_statement_token3] = ACTIONS(4489), + [aux_sym_def_type_statement_token4] = ACTIONS(4489), + [aux_sym_def_type_statement_token5] = ACTIONS(4489), + [aux_sym_def_type_statement_token6] = ACTIONS(4489), + [aux_sym_def_type_statement_token7] = ACTIONS(4489), + [aux_sym_def_type_statement_token8] = ACTIONS(4489), + [aux_sym_def_type_statement_token9] = ACTIONS(4489), + [aux_sym_def_type_statement_token10] = ACTIONS(4489), + [aux_sym_def_type_statement_token11] = ACTIONS(4489), + [aux_sym_def_type_statement_token12] = ACTIONS(4489), + [aux_sym_def_type_statement_token13] = ACTIONS(4489), + [aux_sym_def_type_statement_token14] = ACTIONS(4489), + [aux_sym_call_statement_token1] = ACTIONS(4489), + [sym__ambiguous_call_statement] = ACTIONS(4489), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4489), + [aux_sym_type_of_expression_token1] = ACTIONS(4489), + [aux_sym_unary_expression_token1] = ACTIONS(4489), + [sym_string_literal] = ACTIONS(4491), + [sym_number_literal] = ACTIONS(4491), + [aux_sym_boolean_literal_token1] = ACTIONS(4489), + [aux_sym_boolean_literal_token2] = ACTIONS(4489), + [sym_nothing_literal] = ACTIONS(4489), + [sym_null_literal] = ACTIONS(4489), + [sym_empty_literal] = ACTIONS(4489), + [sym_date_literal] = ACTIONS(4491), + [anon_sym_POUND] = ACTIONS(4489), + }, + [STATE(1458)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(5917), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5917), + [anon_sym_BSLASH] = ACTIONS(5921), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1459)] = { + [sym_identifier] = ACTIONS(4499), + [sym_newline] = ACTIONS(4501), + [anon_sym_COLON] = ACTIONS(4501), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4499), + [aux_sym_frm_property_statement_token1] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4501), + [aux_sym__attribute_identifier_token1] = ACTIONS(4499), + [aux_sym_option_statement_token3] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4499), + [aux_sym_preprocessor_const_token1] = ACTIONS(4499), + [sym_static_modifier] = ACTIONS(4499), + [sym__dim_keyword] = ACTIONS(4499), + [sym__redim_keyword] = ACTIONS(4499), + [aux_sym_get_accessor_token1] = ACTIONS(4499), + [aux_sym_set_accessor_token1] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4501), + [aux_sym_const_declaration_token1] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4501), + [aux_sym_as_type_clause_token2] = ACTIONS(4499), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4499), + [aux_sym_visibility_token1] = ACTIONS(4499), + [aux_sym_visibility_token2] = ACTIONS(4499), + [aux_sym_elseif_fragment_token1] = ACTIONS(4499), + [aux_sym_else_fragment_token1] = ACTIONS(4499), + [aux_sym_select_statement_token1] = ACTIONS(4499), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4499), + [aux_sym__for_header_token1] = ACTIONS(4499), + [aux_sym_do_statement_token1] = ACTIONS(4499), + [aux_sym_do_condition_token1] = ACTIONS(4499), + [aux_sym_with_statement_token1] = ACTIONS(4499), + [aux_sym_exit_statement_token1] = ACTIONS(4499), + [sym_end_statement] = ACTIONS(4501), + [aux_sym_on_goto_statement_token1] = ACTIONS(4499), + [aux_sym_on_goto_statement_token2] = ACTIONS(4499), + [aux_sym_on_error_statement_token2] = ACTIONS(4499), + [sym__ambiguous_redim_statement] = ACTIONS(4501), + [aux_sym_erase_statement_token1] = ACTIONS(4499), + [aux_sym_open_statement_token1] = ACTIONS(4499), + [aux_sym_file_mode_token2] = ACTIONS(4499), + [aux_sym_file_access_token2] = ACTIONS(4499), + [aux_sym_file_lock_token2] = ACTIONS(4499), + [aux_sym_print_statement_token1] = ACTIONS(4499), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4514), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4501), + [anon_sym_QMARK] = ACTIONS(4501), + [aux_sym_close_statement_token1] = ACTIONS(4499), + [aux_sym_put_statement_token1] = ACTIONS(4499), + [aux_sym_unlock_statement_token1] = ACTIONS(4499), + [aux_sym_seek_statement_token1] = ACTIONS(4499), + [sym_reset_statement] = ACTIONS(4499), + [aux_sym_raise_event_statement_token1] = ACTIONS(4499), + [sym_stop_statement] = ACTIONS(4499), + [sym_beep_statement] = ACTIONS(4499), + [aux_sym_unload_statement_token1] = ACTIONS(4499), + [aux_sym_def_type_statement_token1] = ACTIONS(4499), + [aux_sym_def_type_statement_token2] = ACTIONS(4499), + [aux_sym_def_type_statement_token3] = ACTIONS(4499), + [aux_sym_def_type_statement_token4] = ACTIONS(4499), + [aux_sym_def_type_statement_token5] = ACTIONS(4499), + [aux_sym_def_type_statement_token6] = ACTIONS(4499), + [aux_sym_def_type_statement_token7] = ACTIONS(4499), + [aux_sym_def_type_statement_token8] = ACTIONS(4499), + [aux_sym_def_type_statement_token9] = ACTIONS(4499), + [aux_sym_def_type_statement_token10] = ACTIONS(4499), + [aux_sym_def_type_statement_token11] = ACTIONS(4499), + [aux_sym_def_type_statement_token12] = ACTIONS(4499), + [aux_sym_def_type_statement_token13] = ACTIONS(4499), + [aux_sym_def_type_statement_token14] = ACTIONS(4499), + [aux_sym_call_statement_token1] = ACTIONS(4499), + [sym__ambiguous_call_statement] = ACTIONS(4499), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4499), + [aux_sym_type_of_expression_token1] = ACTIONS(4499), + [aux_sym_unary_expression_token1] = ACTIONS(4499), + [sym_string_literal] = ACTIONS(4501), + [sym_number_literal] = ACTIONS(4501), + [aux_sym_boolean_literal_token1] = ACTIONS(4499), + [aux_sym_boolean_literal_token2] = ACTIONS(4499), + [sym_nothing_literal] = ACTIONS(4499), + [sym_null_literal] = ACTIONS(4499), + [sym_empty_literal] = ACTIONS(4499), + [sym_date_literal] = ACTIONS(4501), + [anon_sym_POUND] = ACTIONS(4499), + }, + [STATE(1460)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6234), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6236), + [anon_sym_SLASH] = ACTIONS(6234), + [anon_sym_BSLASH] = ACTIONS(6238), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6240), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_DASH] = ACTIONS(6244), + [anon_sym_AMP] = ACTIONS(6246), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6248), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6250), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1461)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1462)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1463)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_array_bound_token1] = ACTIONS(4589), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_statement_token2] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1464)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_array_bound_token1] = ACTIONS(4447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1465)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_array_bound_token1] = ACTIONS(4477), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1466)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1467)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1468)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6254), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1469)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6254), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_BSLASH] = ACTIONS(6256), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1470)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6254), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_BSLASH] = ACTIONS(6256), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1471)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6254), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_BSLASH] = ACTIONS(6256), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1472)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6254), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_BSLASH] = ACTIONS(6256), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6264), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1473)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6254), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_BSLASH] = ACTIONS(6256), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6264), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6266), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1474)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6254), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_BSLASH] = ACTIONS(6256), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6264), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6266), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6268), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1475)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6254), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_BSLASH] = ACTIONS(6256), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6264), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6266), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6268), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6270), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1476)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6254), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_BSLASH] = ACTIONS(6256), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6264), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6266), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6268), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6270), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6272), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1477)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_array_bound_token1] = ACTIONS(4485), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1478)] = { + [sym_argument_list] = STATE(2057), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(6274), + [anon_sym_BANG] = ACTIONS(6276), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(6278), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1479)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4412), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4412), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(1480)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_array_bound_token1] = ACTIONS(4441), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6280), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1481)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6282), + [aux_sym_array_bound_token1] = ACTIONS(4451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6280), + [anon_sym_SLASH] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6284), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6286), + [anon_sym_PLUS] = ACTIONS(6288), + [anon_sym_DASH] = ACTIONS(6290), + [anon_sym_AMP] = ACTIONS(6292), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6294), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6296), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6298), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6300), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6302), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1482)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_statement_token2] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1483)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6129), + [anon_sym_BANG] = ACTIONS(6131), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_statement_token2] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1484)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_array_bound_token1] = ACTIONS(4509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_while_statement_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1485)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_while_statement_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1486)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_array_bound_token1] = ACTIONS(4437), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_statement_token2] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1487)] = { + [sym_identifier] = ACTIONS(6304), + [sym_newline] = ACTIONS(6306), + [anon_sym_COLON] = ACTIONS(6306), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6304), + [aux_sym_frm_property_statement_token1] = ACTIONS(6304), + [anon_sym_DOT] = ACTIONS(6304), + [anon_sym_BANG] = ACTIONS(6306), + [aux_sym__attribute_identifier_token1] = ACTIONS(6304), + [aux_sym_option_statement_token3] = ACTIONS(6304), + [aux_sym_type_declaration_token1] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6304), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6304), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6304), + [aux_sym_enum_declaration_token1] = ACTIONS(6304), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6304), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6304), + [aux_sym_declare_function_statement_token1] = ACTIONS(6304), + [aux_sym_preprocessor_const_token1] = ACTIONS(6304), + [aux_sym__property_get_header_token1] = ACTIONS(6304), + [aux_sym_event_declaration_token1] = ACTIONS(6304), + [sym_static_modifier] = ACTIONS(6304), + [sym__dim_keyword] = ACTIONS(6304), + [sym__redim_keyword] = ACTIONS(6304), + [aux_sym_get_accessor_token1] = ACTIONS(6304), + [aux_sym_set_accessor_token1] = ACTIONS(6304), + [aux_sym_const_declaration_token1] = ACTIONS(6304), + [anon_sym_LPAREN] = ACTIONS(6306), + [aux_sym_as_type_clause_token2] = ACTIONS(6304), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6304), + [aux_sym_visibility_token1] = ACTIONS(6304), + [aux_sym_visibility_token2] = ACTIONS(6304), + [aux_sym_elseif_fragment_token1] = ACTIONS(6304), + [aux_sym_else_fragment_token1] = ACTIONS(6304), + [aux_sym_select_statement_token1] = ACTIONS(6304), + [aux_sym__for_header_token1] = ACTIONS(6304), + [aux_sym_do_statement_token1] = ACTIONS(6304), + [aux_sym_do_condition_token1] = ACTIONS(6304), + [aux_sym_with_statement_token1] = ACTIONS(6304), + [aux_sym_exit_statement_token1] = ACTIONS(6304), + [sym_end_statement] = ACTIONS(6306), + [aux_sym_on_goto_statement_token1] = ACTIONS(6304), + [aux_sym_on_goto_statement_token2] = ACTIONS(6304), + [aux_sym_on_error_statement_token2] = ACTIONS(6304), + [sym__ambiguous_redim_statement] = ACTIONS(6306), + [aux_sym_erase_statement_token1] = ACTIONS(6304), + [aux_sym_open_statement_token1] = ACTIONS(6304), + [aux_sym_file_mode_token2] = ACTIONS(6304), + [aux_sym_file_access_token2] = ACTIONS(6304), + [aux_sym_file_lock_token2] = ACTIONS(6304), + [aux_sym_print_statement_token1] = ACTIONS(6304), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_QMARK] = ACTIONS(6306), + [aux_sym_close_statement_token1] = ACTIONS(6304), + [aux_sym_put_statement_token1] = ACTIONS(6304), + [aux_sym_unlock_statement_token1] = ACTIONS(6304), + [aux_sym_seek_statement_token1] = ACTIONS(6304), + [sym_reset_statement] = ACTIONS(6304), + [aux_sym_raise_event_statement_token1] = ACTIONS(6304), + [sym_stop_statement] = ACTIONS(6304), + [sym_beep_statement] = ACTIONS(6304), + [aux_sym_unload_statement_token1] = ACTIONS(6304), + [aux_sym_def_type_statement_token1] = ACTIONS(6304), + [aux_sym_def_type_statement_token2] = ACTIONS(6304), + [aux_sym_def_type_statement_token3] = ACTIONS(6304), + [aux_sym_def_type_statement_token4] = ACTIONS(6304), + [aux_sym_def_type_statement_token5] = ACTIONS(6304), + [aux_sym_def_type_statement_token6] = ACTIONS(6304), + [aux_sym_def_type_statement_token7] = ACTIONS(6304), + [aux_sym_def_type_statement_token8] = ACTIONS(6304), + [aux_sym_def_type_statement_token9] = ACTIONS(6304), + [aux_sym_def_type_statement_token10] = ACTIONS(6304), + [aux_sym_def_type_statement_token11] = ACTIONS(6304), + [aux_sym_def_type_statement_token12] = ACTIONS(6304), + [aux_sym_def_type_statement_token13] = ACTIONS(6304), + [aux_sym_def_type_statement_token14] = ACTIONS(6304), + [aux_sym_call_statement_token1] = ACTIONS(6304), + [sym__ambiguous_call_statement] = ACTIONS(6304), + [aux_sym_addressof_expression_token1] = ACTIONS(6304), + [aux_sym_type_of_expression_token1] = ACTIONS(6304), + [aux_sym_unary_expression_token1] = ACTIONS(6304), + [sym_string_literal] = ACTIONS(6306), + [sym_number_literal] = ACTIONS(6306), + [aux_sym_boolean_literal_token1] = ACTIONS(6304), + [aux_sym_boolean_literal_token2] = ACTIONS(6304), + [sym_nothing_literal] = ACTIONS(6304), + [sym_null_literal] = ACTIONS(6304), + [sym_empty_literal] = ACTIONS(6304), + [sym_date_literal] = ACTIONS(6306), + [anon_sym_POUND] = ACTIONS(6304), + }, + [STATE(1488)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_array_bound_token1] = ACTIONS(4589), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1489)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_array_bound_token1] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_statement_token2] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1490)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_statement_token2] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1491)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_statement_token2] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1492)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_array_bound_token1] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_statement_token2] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1493)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6280), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1494)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6280), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1495)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6282), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6280), + [anon_sym_SLASH] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1496)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6282), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6280), + [anon_sym_SLASH] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6284), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1497)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6282), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6280), + [anon_sym_SLASH] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6284), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6286), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1498)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6282), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6280), + [anon_sym_SLASH] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6284), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6286), + [anon_sym_PLUS] = ACTIONS(6288), + [anon_sym_DASH] = ACTIONS(6290), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1499)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6282), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6280), + [anon_sym_SLASH] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6284), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6286), + [anon_sym_PLUS] = ACTIONS(6288), + [anon_sym_DASH] = ACTIONS(6290), + [anon_sym_AMP] = ACTIONS(6292), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1500)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6282), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6280), + [anon_sym_SLASH] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6284), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6286), + [anon_sym_PLUS] = ACTIONS(6288), + [anon_sym_DASH] = ACTIONS(6290), + [anon_sym_AMP] = ACTIONS(6292), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6294), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1501)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6282), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6280), + [anon_sym_SLASH] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6284), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6286), + [anon_sym_PLUS] = ACTIONS(6288), + [anon_sym_DASH] = ACTIONS(6290), + [anon_sym_AMP] = ACTIONS(6292), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6294), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6296), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1502)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6282), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6280), + [anon_sym_SLASH] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6284), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6286), + [anon_sym_PLUS] = ACTIONS(6288), + [anon_sym_DASH] = ACTIONS(6290), + [anon_sym_AMP] = ACTIONS(6292), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6294), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6296), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6298), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1503)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6282), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6280), + [anon_sym_SLASH] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6284), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6286), + [anon_sym_PLUS] = ACTIONS(6288), + [anon_sym_DASH] = ACTIONS(6290), + [anon_sym_AMP] = ACTIONS(6292), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6294), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6296), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6298), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6300), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1504)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_array_bound_token1] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_statement_token2] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1505)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6254), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_statement_token2] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_BSLASH] = ACTIONS(6256), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6264), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1506)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1507)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_while_statement_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1508)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6174), + [anon_sym_BANG] = ACTIONS(6176), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1509)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_array_bound_token1] = ACTIONS(4437), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1510)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1511)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1512)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_statement_token2] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1513)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_array_bound_token1] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1514)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1515)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_array_bound_token1] = ACTIONS(4447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_while_statement_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1516)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1517)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_array_bound_token1] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1518)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_array_bound_token1] = ACTIONS(4625), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_statement_token2] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1519)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_statement_token2] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1520)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_array_bound_token1] = ACTIONS(4477), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_while_statement_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1521)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1522)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_array_bound_token1] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1523)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_array_bound_token1] = ACTIONS(4485), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_while_statement_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1524)] = { + [sym_identifier] = ACTIONS(4420), + [sym_newline] = ACTIONS(4422), + [anon_sym_COLON] = ACTIONS(4422), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4420), + [aux_sym_frm_property_statement_token1] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6308), + [anon_sym_BANG] = ACTIONS(6310), + [aux_sym__attribute_identifier_token1] = ACTIONS(4420), + [aux_sym_option_statement_token3] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4420), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4420), + [aux_sym_preprocessor_const_token1] = ACTIONS(4420), + [sym_static_modifier] = ACTIONS(4420), + [sym__dim_keyword] = ACTIONS(4420), + [sym__redim_keyword] = ACTIONS(4420), + [aux_sym_get_accessor_token1] = ACTIONS(4420), + [aux_sym_set_accessor_token1] = ACTIONS(4420), + [anon_sym_COMMA] = ACTIONS(4422), + [aux_sym_const_declaration_token1] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4428), + [aux_sym_as_type_clause_token2] = ACTIONS(4420), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4420), + [aux_sym_visibility_token1] = ACTIONS(4420), + [aux_sym_visibility_token2] = ACTIONS(4420), + [aux_sym_elseif_fragment_token1] = ACTIONS(4420), + [aux_sym_else_fragment_token1] = ACTIONS(4420), + [aux_sym_select_statement_token1] = ACTIONS(4420), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4420), + [aux_sym_do_statement_token1] = ACTIONS(4420), + [aux_sym_do_condition_token1] = ACTIONS(4420), + [aux_sym_with_statement_token1] = ACTIONS(4420), + [aux_sym_exit_statement_token1] = ACTIONS(4420), + [sym_end_statement] = ACTIONS(4422), + [aux_sym_on_goto_statement_token1] = ACTIONS(4420), + [aux_sym_on_goto_statement_token2] = ACTIONS(4420), + [aux_sym_on_error_statement_token2] = ACTIONS(4420), + [sym__ambiguous_redim_statement] = ACTIONS(4422), + [aux_sym_erase_statement_token1] = ACTIONS(4420), + [aux_sym_open_statement_token1] = ACTIONS(4420), + [aux_sym_file_mode_token2] = ACTIONS(4420), + [aux_sym_file_access_token2] = ACTIONS(4420), + [aux_sym_file_lock_token2] = ACTIONS(4420), + [aux_sym_print_statement_token1] = ACTIONS(4420), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4431), + [anon_sym_DASH] = ACTIONS(4434), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4422), + [anon_sym_QMARK] = ACTIONS(4422), + [aux_sym_close_statement_token1] = ACTIONS(4420), + [aux_sym_put_statement_token1] = ACTIONS(4420), + [aux_sym_unlock_statement_token1] = ACTIONS(4420), + [aux_sym_seek_statement_token1] = ACTIONS(4420), + [sym_reset_statement] = ACTIONS(4420), + [aux_sym_raise_event_statement_token1] = ACTIONS(4420), + [sym_stop_statement] = ACTIONS(4420), + [sym_beep_statement] = ACTIONS(4420), + [aux_sym_unload_statement_token1] = ACTIONS(4420), + [aux_sym_def_type_statement_token1] = ACTIONS(4420), + [aux_sym_def_type_statement_token2] = ACTIONS(4420), + [aux_sym_def_type_statement_token3] = ACTIONS(4420), + [aux_sym_def_type_statement_token4] = ACTIONS(4420), + [aux_sym_def_type_statement_token5] = ACTIONS(4420), + [aux_sym_def_type_statement_token6] = ACTIONS(4420), + [aux_sym_def_type_statement_token7] = ACTIONS(4420), + [aux_sym_def_type_statement_token8] = ACTIONS(4420), + [aux_sym_def_type_statement_token9] = ACTIONS(4420), + [aux_sym_def_type_statement_token10] = ACTIONS(4420), + [aux_sym_def_type_statement_token11] = ACTIONS(4420), + [aux_sym_def_type_statement_token12] = ACTIONS(4420), + [aux_sym_def_type_statement_token13] = ACTIONS(4420), + [aux_sym_def_type_statement_token14] = ACTIONS(4420), + [aux_sym_call_statement_token1] = ACTIONS(4420), + [sym__ambiguous_call_statement] = ACTIONS(4420), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4420), + [aux_sym_type_of_expression_token1] = ACTIONS(4420), + [aux_sym_unary_expression_token1] = ACTIONS(4420), + [sym_string_literal] = ACTIONS(4422), + [sym_number_literal] = ACTIONS(4422), + [aux_sym_boolean_literal_token1] = ACTIONS(4420), + [aux_sym_boolean_literal_token2] = ACTIONS(4420), + [sym_nothing_literal] = ACTIONS(4420), + [sym_null_literal] = ACTIONS(4420), + [sym_empty_literal] = ACTIONS(4420), + [sym_date_literal] = ACTIONS(4422), + [anon_sym_POUND] = ACTIONS(4420), + }, + [STATE(1525)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_array_bound_token1] = ACTIONS(4441), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_while_statement_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6236), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1526)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6282), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6280), + [anon_sym_SLASH] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6284), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6286), + [anon_sym_PLUS] = ACTIONS(6288), + [anon_sym_DASH] = ACTIONS(6290), + [anon_sym_AMP] = ACTIONS(6292), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1527)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6234), + [aux_sym_array_bound_token1] = ACTIONS(4451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_while_statement_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6236), + [anon_sym_SLASH] = ACTIONS(6234), + [anon_sym_BSLASH] = ACTIONS(6238), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6240), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_DASH] = ACTIONS(6244), + [anon_sym_AMP] = ACTIONS(6246), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6248), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6250), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6312), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6314), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6316), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1528)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_array_bound_token1] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_statement_token2] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(1529)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_array_bound_token1] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_statement_token2] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1530)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_array_bound_token1] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_statement_token2] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(1531)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1534), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(6318), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1532)] = { + [sym_identifier] = ACTIONS(6320), + [sym_newline] = ACTIONS(6322), + [anon_sym_COLON] = ACTIONS(6322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6320), + [aux_sym_frm_property_statement_token1] = ACTIONS(6320), + [anon_sym_DOT] = ACTIONS(6320), + [anon_sym_BANG] = ACTIONS(6322), + [aux_sym__attribute_identifier_token1] = ACTIONS(6320), + [aux_sym_option_statement_token3] = ACTIONS(6320), + [aux_sym_type_declaration_token1] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6320), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6320), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6320), + [aux_sym_enum_declaration_token1] = ACTIONS(6320), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6320), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6320), + [aux_sym_declare_function_statement_token1] = ACTIONS(6320), + [aux_sym_preprocessor_const_token1] = ACTIONS(6320), + [aux_sym__property_get_header_token1] = ACTIONS(6320), + [aux_sym_event_declaration_token1] = ACTIONS(6320), + [sym_static_modifier] = ACTIONS(6320), + [sym__dim_keyword] = ACTIONS(6320), + [sym__redim_keyword] = ACTIONS(6320), + [aux_sym_get_accessor_token1] = ACTIONS(6320), + [aux_sym_set_accessor_token1] = ACTIONS(6320), + [aux_sym_const_declaration_token1] = ACTIONS(6320), + [anon_sym_LPAREN] = ACTIONS(6322), + [aux_sym_as_type_clause_token2] = ACTIONS(6320), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6320), + [aux_sym_visibility_token1] = ACTIONS(6320), + [aux_sym_visibility_token2] = ACTIONS(6320), + [aux_sym_elseif_fragment_token1] = ACTIONS(6320), + [aux_sym_else_fragment_token1] = ACTIONS(6320), + [aux_sym_select_statement_token1] = ACTIONS(6320), + [aux_sym__for_header_token1] = ACTIONS(6320), + [aux_sym_do_statement_token1] = ACTIONS(6320), + [aux_sym_do_condition_token1] = ACTIONS(6320), + [aux_sym_with_statement_token1] = ACTIONS(6320), + [aux_sym_exit_statement_token1] = ACTIONS(6320), + [sym_end_statement] = ACTIONS(6322), + [aux_sym_on_goto_statement_token1] = ACTIONS(6320), + [aux_sym_on_goto_statement_token2] = ACTIONS(6320), + [aux_sym_on_error_statement_token2] = ACTIONS(6320), + [sym__ambiguous_redim_statement] = ACTIONS(6322), + [aux_sym_erase_statement_token1] = ACTIONS(6320), + [aux_sym_open_statement_token1] = ACTIONS(6320), + [aux_sym_file_mode_token2] = ACTIONS(6320), + [aux_sym_file_access_token2] = ACTIONS(6320), + [aux_sym_file_lock_token2] = ACTIONS(6320), + [aux_sym_print_statement_token1] = ACTIONS(6320), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_QMARK] = ACTIONS(6322), + [aux_sym_close_statement_token1] = ACTIONS(6320), + [aux_sym_put_statement_token1] = ACTIONS(6320), + [aux_sym_unlock_statement_token1] = ACTIONS(6320), + [aux_sym_seek_statement_token1] = ACTIONS(6320), + [sym_reset_statement] = ACTIONS(6320), + [aux_sym_raise_event_statement_token1] = ACTIONS(6320), + [sym_stop_statement] = ACTIONS(6320), + [sym_beep_statement] = ACTIONS(6320), + [aux_sym_unload_statement_token1] = ACTIONS(6320), + [aux_sym_def_type_statement_token1] = ACTIONS(6320), + [aux_sym_def_type_statement_token2] = ACTIONS(6320), + [aux_sym_def_type_statement_token3] = ACTIONS(6320), + [aux_sym_def_type_statement_token4] = ACTIONS(6320), + [aux_sym_def_type_statement_token5] = ACTIONS(6320), + [aux_sym_def_type_statement_token6] = ACTIONS(6320), + [aux_sym_def_type_statement_token7] = ACTIONS(6320), + [aux_sym_def_type_statement_token8] = ACTIONS(6320), + [aux_sym_def_type_statement_token9] = ACTIONS(6320), + [aux_sym_def_type_statement_token10] = ACTIONS(6320), + [aux_sym_def_type_statement_token11] = ACTIONS(6320), + [aux_sym_def_type_statement_token12] = ACTIONS(6320), + [aux_sym_def_type_statement_token13] = ACTIONS(6320), + [aux_sym_def_type_statement_token14] = ACTIONS(6320), + [aux_sym_call_statement_token1] = ACTIONS(6320), + [sym__ambiguous_call_statement] = ACTIONS(6320), + [aux_sym_addressof_expression_token1] = ACTIONS(6320), + [aux_sym_type_of_expression_token1] = ACTIONS(6320), + [aux_sym_unary_expression_token1] = ACTIONS(6320), + [sym_string_literal] = ACTIONS(6322), + [sym_number_literal] = ACTIONS(6322), + [aux_sym_boolean_literal_token1] = ACTIONS(6320), + [aux_sym_boolean_literal_token2] = ACTIONS(6320), + [sym_nothing_literal] = ACTIONS(6320), + [sym_null_literal] = ACTIONS(6320), + [sym_empty_literal] = ACTIONS(6320), + [sym_date_literal] = ACTIONS(6322), + [anon_sym_POUND] = ACTIONS(6320), + }, + [STATE(1533)] = { + [sym_identifier] = ACTIONS(6324), + [sym_newline] = ACTIONS(6326), + [anon_sym_COLON] = ACTIONS(6326), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6324), + [aux_sym_frm_property_statement_token1] = ACTIONS(6324), + [anon_sym_DOT] = ACTIONS(6324), + [anon_sym_BANG] = ACTIONS(6326), + [aux_sym__attribute_identifier_token1] = ACTIONS(6324), + [aux_sym_option_statement_token3] = ACTIONS(6324), + [aux_sym_type_declaration_token1] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6324), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6324), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6324), + [aux_sym_enum_declaration_token1] = ACTIONS(6324), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6324), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6324), + [aux_sym_declare_function_statement_token1] = ACTIONS(6324), + [aux_sym_preprocessor_const_token1] = ACTIONS(6324), + [aux_sym__property_get_header_token1] = ACTIONS(6324), + [aux_sym_event_declaration_token1] = ACTIONS(6324), + [sym_static_modifier] = ACTIONS(6324), + [sym__dim_keyword] = ACTIONS(6324), + [sym__redim_keyword] = ACTIONS(6324), + [aux_sym_get_accessor_token1] = ACTIONS(6324), + [aux_sym_set_accessor_token1] = ACTIONS(6324), + [aux_sym_const_declaration_token1] = ACTIONS(6324), + [anon_sym_LPAREN] = ACTIONS(6326), + [aux_sym_as_type_clause_token2] = ACTIONS(6324), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6324), + [aux_sym_visibility_token1] = ACTIONS(6324), + [aux_sym_visibility_token2] = ACTIONS(6324), + [aux_sym_elseif_fragment_token1] = ACTIONS(6324), + [aux_sym_else_fragment_token1] = ACTIONS(6324), + [aux_sym_select_statement_token1] = ACTIONS(6324), + [aux_sym__for_header_token1] = ACTIONS(6324), + [aux_sym_do_statement_token1] = ACTIONS(6324), + [aux_sym_do_condition_token1] = ACTIONS(6324), + [aux_sym_with_statement_token1] = ACTIONS(6324), + [aux_sym_exit_statement_token1] = ACTIONS(6324), + [sym_end_statement] = ACTIONS(6326), + [aux_sym_on_goto_statement_token1] = ACTIONS(6324), + [aux_sym_on_goto_statement_token2] = ACTIONS(6324), + [aux_sym_on_error_statement_token2] = ACTIONS(6324), + [sym__ambiguous_redim_statement] = ACTIONS(6326), + [aux_sym_erase_statement_token1] = ACTIONS(6324), + [aux_sym_open_statement_token1] = ACTIONS(6324), + [aux_sym_file_mode_token2] = ACTIONS(6324), + [aux_sym_file_access_token2] = ACTIONS(6324), + [aux_sym_file_lock_token2] = ACTIONS(6324), + [aux_sym_print_statement_token1] = ACTIONS(6324), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_QMARK] = ACTIONS(6326), + [aux_sym_close_statement_token1] = ACTIONS(6324), + [aux_sym_put_statement_token1] = ACTIONS(6324), + [aux_sym_unlock_statement_token1] = ACTIONS(6324), + [aux_sym_seek_statement_token1] = ACTIONS(6324), + [sym_reset_statement] = ACTIONS(6324), + [aux_sym_raise_event_statement_token1] = ACTIONS(6324), + [sym_stop_statement] = ACTIONS(6324), + [sym_beep_statement] = ACTIONS(6324), + [aux_sym_unload_statement_token1] = ACTIONS(6324), + [aux_sym_def_type_statement_token1] = ACTIONS(6324), + [aux_sym_def_type_statement_token2] = ACTIONS(6324), + [aux_sym_def_type_statement_token3] = ACTIONS(6324), + [aux_sym_def_type_statement_token4] = ACTIONS(6324), + [aux_sym_def_type_statement_token5] = ACTIONS(6324), + [aux_sym_def_type_statement_token6] = ACTIONS(6324), + [aux_sym_def_type_statement_token7] = ACTIONS(6324), + [aux_sym_def_type_statement_token8] = ACTIONS(6324), + [aux_sym_def_type_statement_token9] = ACTIONS(6324), + [aux_sym_def_type_statement_token10] = ACTIONS(6324), + [aux_sym_def_type_statement_token11] = ACTIONS(6324), + [aux_sym_def_type_statement_token12] = ACTIONS(6324), + [aux_sym_def_type_statement_token13] = ACTIONS(6324), + [aux_sym_def_type_statement_token14] = ACTIONS(6324), + [aux_sym_call_statement_token1] = ACTIONS(6324), + [sym__ambiguous_call_statement] = ACTIONS(6324), + [aux_sym_addressof_expression_token1] = ACTIONS(6324), + [aux_sym_type_of_expression_token1] = ACTIONS(6324), + [aux_sym_unary_expression_token1] = ACTIONS(6324), + [sym_string_literal] = ACTIONS(6326), + [sym_number_literal] = ACTIONS(6326), + [aux_sym_boolean_literal_token1] = ACTIONS(6324), + [aux_sym_boolean_literal_token2] = ACTIONS(6324), + [sym_nothing_literal] = ACTIONS(6324), + [sym_null_literal] = ACTIONS(6324), + [sym_empty_literal] = ACTIONS(6324), + [sym_date_literal] = ACTIONS(6326), + [anon_sym_POUND] = ACTIONS(6324), + }, + [STATE(1534)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1536), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token3] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(1535)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_array_bound_token1] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_statement_token2] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1536)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1536), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(6328), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1537)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1538)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_array_bound_token1] = ACTIONS(4589), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_while_statement_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1539)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_statement_token2] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1540)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_statement_token2] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1541)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_while_statement_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1542)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_while_statement_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1543)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_array_bound_token1] = ACTIONS(4625), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1544)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1545)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6236), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1546)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6236), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1547)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6234), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6236), + [anon_sym_SLASH] = ACTIONS(6234), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1548)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6234), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6236), + [anon_sym_SLASH] = ACTIONS(6234), + [anon_sym_BSLASH] = ACTIONS(6238), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1549)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6234), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6236), + [anon_sym_SLASH] = ACTIONS(6234), + [anon_sym_BSLASH] = ACTIONS(6238), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6240), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1550)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6234), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6236), + [anon_sym_SLASH] = ACTIONS(6234), + [anon_sym_BSLASH] = ACTIONS(6238), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6240), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_DASH] = ACTIONS(6244), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1551)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6234), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6236), + [anon_sym_SLASH] = ACTIONS(6234), + [anon_sym_BSLASH] = ACTIONS(6238), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6240), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_DASH] = ACTIONS(6244), + [anon_sym_AMP] = ACTIONS(6246), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1552)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6234), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6236), + [anon_sym_SLASH] = ACTIONS(6234), + [anon_sym_BSLASH] = ACTIONS(6238), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6240), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_DASH] = ACTIONS(6244), + [anon_sym_AMP] = ACTIONS(6246), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6248), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1553)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6234), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6236), + [anon_sym_SLASH] = ACTIONS(6234), + [anon_sym_BSLASH] = ACTIONS(6238), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6240), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_DASH] = ACTIONS(6244), + [anon_sym_AMP] = ACTIONS(6246), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6248), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6250), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6312), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1554)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6234), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6236), + [anon_sym_SLASH] = ACTIONS(6234), + [anon_sym_BSLASH] = ACTIONS(6238), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6240), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_DASH] = ACTIONS(6244), + [anon_sym_AMP] = ACTIONS(6246), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6248), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6250), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6312), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6314), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1555)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1558), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(6331), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1556)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_statement_token2] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token3] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1557)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_statement_token2] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1558)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1560), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_declaration_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_enum_declaration_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4375), + [aux_sym_declare_function_statement_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [aux_sym__property_get_header_token1] = ACTIONS(4375), + [aux_sym_event_declaration_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_array_bound_token1] = ACTIONS(4375), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(1559)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6234), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_while_statement_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6236), + [anon_sym_SLASH] = ACTIONS(6234), + [anon_sym_BSLASH] = ACTIONS(6238), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6240), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_DASH] = ACTIONS(6244), + [anon_sym_AMP] = ACTIONS(6246), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1560)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1560), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(6333), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1561)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_array_bound_token1] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(1562)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_array_bound_token1] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1563)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_array_bound_token1] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(1564)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_while_statement_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1565)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6224), + [anon_sym_BANG] = ACTIONS(6226), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_while_statement_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1566)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_array_bound_token1] = ACTIONS(4509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_statement_token2] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1567)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_statement_token2] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1568)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_array_bound_token1] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1569)] = { + [sym_identifier] = ACTIONS(6336), + [sym_newline] = ACTIONS(6338), + [anon_sym_COLON] = ACTIONS(6338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6336), + [aux_sym_frm_property_statement_token1] = ACTIONS(6336), + [anon_sym_DOT] = ACTIONS(6336), + [anon_sym_BANG] = ACTIONS(6338), + [aux_sym__attribute_identifier_token1] = ACTIONS(6336), + [aux_sym_option_statement_token3] = ACTIONS(6336), + [aux_sym_type_declaration_token1] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6336), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6336), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6336), + [aux_sym_enum_declaration_token1] = ACTIONS(6336), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6336), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6336), + [aux_sym_declare_function_statement_token1] = ACTIONS(6336), + [aux_sym_preprocessor_const_token1] = ACTIONS(6336), + [aux_sym__property_get_header_token1] = ACTIONS(6336), + [aux_sym_event_declaration_token1] = ACTIONS(6336), + [sym_static_modifier] = ACTIONS(6336), + [sym__dim_keyword] = ACTIONS(6336), + [sym__redim_keyword] = ACTIONS(6336), + [aux_sym_get_accessor_token1] = ACTIONS(6336), + [aux_sym_set_accessor_token1] = ACTIONS(6336), + [aux_sym_const_declaration_token1] = ACTIONS(6336), + [anon_sym_LPAREN] = ACTIONS(6338), + [aux_sym_as_type_clause_token2] = ACTIONS(6336), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6336), + [aux_sym_visibility_token1] = ACTIONS(6336), + [aux_sym_visibility_token2] = ACTIONS(6336), + [aux_sym_elseif_fragment_token1] = ACTIONS(6336), + [aux_sym_else_fragment_token1] = ACTIONS(6336), + [aux_sym_select_statement_token1] = ACTIONS(6336), + [aux_sym__for_header_token1] = ACTIONS(6336), + [aux_sym_do_statement_token1] = ACTIONS(6336), + [aux_sym_do_condition_token1] = ACTIONS(6336), + [aux_sym_with_statement_token1] = ACTIONS(6336), + [aux_sym_exit_statement_token1] = ACTIONS(6336), + [sym_end_statement] = ACTIONS(6338), + [aux_sym_on_goto_statement_token1] = ACTIONS(6336), + [aux_sym_on_goto_statement_token2] = ACTIONS(6336), + [aux_sym_on_error_statement_token2] = ACTIONS(6336), + [sym__ambiguous_redim_statement] = ACTIONS(6338), + [aux_sym_erase_statement_token1] = ACTIONS(6336), + [aux_sym_open_statement_token1] = ACTIONS(6336), + [aux_sym_file_mode_token2] = ACTIONS(6336), + [aux_sym_file_access_token2] = ACTIONS(6336), + [aux_sym_file_lock_token2] = ACTIONS(6336), + [aux_sym_print_statement_token1] = ACTIONS(6336), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4467), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4469), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4471), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4473), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4475), + [anon_sym_QMARK] = ACTIONS(6338), + [aux_sym_close_statement_token1] = ACTIONS(6336), + [aux_sym_put_statement_token1] = ACTIONS(6336), + [aux_sym_unlock_statement_token1] = ACTIONS(6336), + [aux_sym_seek_statement_token1] = ACTIONS(6336), + [sym_reset_statement] = ACTIONS(6336), + [aux_sym_raise_event_statement_token1] = ACTIONS(6336), + [sym_stop_statement] = ACTIONS(6336), + [sym_beep_statement] = ACTIONS(6336), + [aux_sym_unload_statement_token1] = ACTIONS(6336), + [aux_sym_def_type_statement_token1] = ACTIONS(6336), + [aux_sym_def_type_statement_token2] = ACTIONS(6336), + [aux_sym_def_type_statement_token3] = ACTIONS(6336), + [aux_sym_def_type_statement_token4] = ACTIONS(6336), + [aux_sym_def_type_statement_token5] = ACTIONS(6336), + [aux_sym_def_type_statement_token6] = ACTIONS(6336), + [aux_sym_def_type_statement_token7] = ACTIONS(6336), + [aux_sym_def_type_statement_token8] = ACTIONS(6336), + [aux_sym_def_type_statement_token9] = ACTIONS(6336), + [aux_sym_def_type_statement_token10] = ACTIONS(6336), + [aux_sym_def_type_statement_token11] = ACTIONS(6336), + [aux_sym_def_type_statement_token12] = ACTIONS(6336), + [aux_sym_def_type_statement_token13] = ACTIONS(6336), + [aux_sym_def_type_statement_token14] = ACTIONS(6336), + [aux_sym_call_statement_token1] = ACTIONS(6336), + [sym__ambiguous_call_statement] = ACTIONS(6336), + [aux_sym_addressof_expression_token1] = ACTIONS(6336), + [aux_sym_type_of_expression_token1] = ACTIONS(6336), + [aux_sym_unary_expression_token1] = ACTIONS(6336), + [sym_string_literal] = ACTIONS(6338), + [sym_number_literal] = ACTIONS(6338), + [aux_sym_boolean_literal_token1] = ACTIONS(6336), + [aux_sym_boolean_literal_token2] = ACTIONS(6336), + [sym_nothing_literal] = ACTIONS(6336), + [sym_null_literal] = ACTIONS(6336), + [sym_empty_literal] = ACTIONS(6336), + [sym_date_literal] = ACTIONS(6338), + [anon_sym_POUND] = ACTIONS(6336), + }, + [STATE(1570)] = { + [sym_identifier] = ACTIONS(4489), + [sym_newline] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4491), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4489), + [aux_sym_frm_property_statement_token1] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4489), + [anon_sym_BANG] = ACTIONS(4491), + [aux_sym__attribute_identifier_token1] = ACTIONS(4489), + [aux_sym_option_statement_token3] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4489), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4489), + [aux_sym_preprocessor_const_token1] = ACTIONS(4489), + [sym_static_modifier] = ACTIONS(4489), + [sym__dim_keyword] = ACTIONS(4489), + [sym__redim_keyword] = ACTIONS(4489), + [aux_sym_get_accessor_token1] = ACTIONS(4489), + [aux_sym_set_accessor_token1] = ACTIONS(4489), + [anon_sym_COMMA] = ACTIONS(4491), + [aux_sym_const_declaration_token1] = ACTIONS(4489), + [anon_sym_LPAREN] = ACTIONS(4491), + [aux_sym_as_type_clause_token2] = ACTIONS(4489), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4489), + [aux_sym_visibility_token1] = ACTIONS(4489), + [aux_sym_visibility_token2] = ACTIONS(4489), + [aux_sym_elseif_fragment_token1] = ACTIONS(4489), + [aux_sym_else_fragment_token1] = ACTIONS(4489), + [aux_sym_select_statement_token1] = ACTIONS(4489), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4489), + [aux_sym_do_statement_token1] = ACTIONS(4489), + [aux_sym_do_condition_token1] = ACTIONS(4489), + [aux_sym_with_statement_token1] = ACTIONS(4489), + [aux_sym_exit_statement_token1] = ACTIONS(4489), + [sym_end_statement] = ACTIONS(4491), + [aux_sym_on_goto_statement_token1] = ACTIONS(4489), + [aux_sym_on_goto_statement_token2] = ACTIONS(4489), + [aux_sym_on_error_statement_token2] = ACTIONS(4489), + [sym__ambiguous_redim_statement] = ACTIONS(4491), + [aux_sym_erase_statement_token1] = ACTIONS(4489), + [aux_sym_open_statement_token1] = ACTIONS(4489), + [aux_sym_file_mode_token2] = ACTIONS(4489), + [aux_sym_file_access_token2] = ACTIONS(4489), + [aux_sym_file_lock_token2] = ACTIONS(4489), + [aux_sym_print_statement_token1] = ACTIONS(4489), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4493), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4491), + [anon_sym_QMARK] = ACTIONS(4491), + [aux_sym_close_statement_token1] = ACTIONS(4489), + [aux_sym_put_statement_token1] = ACTIONS(4489), + [aux_sym_unlock_statement_token1] = ACTIONS(4489), + [aux_sym_seek_statement_token1] = ACTIONS(4489), + [sym_reset_statement] = ACTIONS(4489), + [aux_sym_raise_event_statement_token1] = ACTIONS(4489), + [sym_stop_statement] = ACTIONS(4489), + [sym_beep_statement] = ACTIONS(4489), + [aux_sym_unload_statement_token1] = ACTIONS(4489), + [aux_sym_def_type_statement_token1] = ACTIONS(4489), + [aux_sym_def_type_statement_token2] = ACTIONS(4489), + [aux_sym_def_type_statement_token3] = ACTIONS(4489), + [aux_sym_def_type_statement_token4] = ACTIONS(4489), + [aux_sym_def_type_statement_token5] = ACTIONS(4489), + [aux_sym_def_type_statement_token6] = ACTIONS(4489), + [aux_sym_def_type_statement_token7] = ACTIONS(4489), + [aux_sym_def_type_statement_token8] = ACTIONS(4489), + [aux_sym_def_type_statement_token9] = ACTIONS(4489), + [aux_sym_def_type_statement_token10] = ACTIONS(4489), + [aux_sym_def_type_statement_token11] = ACTIONS(4489), + [aux_sym_def_type_statement_token12] = ACTIONS(4489), + [aux_sym_def_type_statement_token13] = ACTIONS(4489), + [aux_sym_def_type_statement_token14] = ACTIONS(4489), + [aux_sym_call_statement_token1] = ACTIONS(4489), + [sym__ambiguous_call_statement] = ACTIONS(4489), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4489), + [aux_sym_type_of_expression_token1] = ACTIONS(4489), + [aux_sym_unary_expression_token1] = ACTIONS(4489), + [sym_string_literal] = ACTIONS(4491), + [sym_number_literal] = ACTIONS(4491), + [aux_sym_boolean_literal_token1] = ACTIONS(4489), + [aux_sym_boolean_literal_token2] = ACTIONS(4489), + [sym_nothing_literal] = ACTIONS(4489), + [sym_null_literal] = ACTIONS(4489), + [sym_empty_literal] = ACTIONS(4489), + [sym_date_literal] = ACTIONS(4491), + [anon_sym_POUND] = ACTIONS(4489), + }, + [STATE(1571)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_statement_token2] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1572)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_array_bound_token1] = ACTIONS(4437), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_while_statement_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1573)] = { + [sym_identifier] = ACTIONS(4499), + [sym_newline] = ACTIONS(4501), + [anon_sym_COLON] = ACTIONS(4501), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4499), + [aux_sym_frm_property_statement_token1] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4501), + [aux_sym__attribute_identifier_token1] = ACTIONS(4499), + [aux_sym_option_statement_token3] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4499), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4499), + [aux_sym_preprocessor_const_token1] = ACTIONS(4499), + [sym_static_modifier] = ACTIONS(4499), + [sym__dim_keyword] = ACTIONS(4499), + [sym__redim_keyword] = ACTIONS(4499), + [aux_sym_get_accessor_token1] = ACTIONS(4499), + [aux_sym_set_accessor_token1] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4501), + [aux_sym_const_declaration_token1] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4501), + [aux_sym_as_type_clause_token2] = ACTIONS(4499), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4499), + [aux_sym_visibility_token1] = ACTIONS(4499), + [aux_sym_visibility_token2] = ACTIONS(4499), + [aux_sym_elseif_fragment_token1] = ACTIONS(4499), + [aux_sym_else_fragment_token1] = ACTIONS(4499), + [aux_sym_select_statement_token1] = ACTIONS(4499), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4499), + [aux_sym_do_statement_token1] = ACTIONS(4499), + [aux_sym_do_condition_token1] = ACTIONS(4499), + [aux_sym_with_statement_token1] = ACTIONS(4499), + [aux_sym_exit_statement_token1] = ACTIONS(4499), + [sym_end_statement] = ACTIONS(4501), + [aux_sym_on_goto_statement_token1] = ACTIONS(4499), + [aux_sym_on_goto_statement_token2] = ACTIONS(4499), + [aux_sym_on_error_statement_token2] = ACTIONS(4499), + [sym__ambiguous_redim_statement] = ACTIONS(4501), + [aux_sym_erase_statement_token1] = ACTIONS(4499), + [aux_sym_open_statement_token1] = ACTIONS(4499), + [aux_sym_file_mode_token2] = ACTIONS(4499), + [aux_sym_file_access_token2] = ACTIONS(4499), + [aux_sym_file_lock_token2] = ACTIONS(4499), + [aux_sym_print_statement_token1] = ACTIONS(4499), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4514), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4501), + [anon_sym_QMARK] = ACTIONS(4501), + [aux_sym_close_statement_token1] = ACTIONS(4499), + [aux_sym_put_statement_token1] = ACTIONS(4499), + [aux_sym_unlock_statement_token1] = ACTIONS(4499), + [aux_sym_seek_statement_token1] = ACTIONS(4499), + [sym_reset_statement] = ACTIONS(4499), + [aux_sym_raise_event_statement_token1] = ACTIONS(4499), + [sym_stop_statement] = ACTIONS(4499), + [sym_beep_statement] = ACTIONS(4499), + [aux_sym_unload_statement_token1] = ACTIONS(4499), + [aux_sym_def_type_statement_token1] = ACTIONS(4499), + [aux_sym_def_type_statement_token2] = ACTIONS(4499), + [aux_sym_def_type_statement_token3] = ACTIONS(4499), + [aux_sym_def_type_statement_token4] = ACTIONS(4499), + [aux_sym_def_type_statement_token5] = ACTIONS(4499), + [aux_sym_def_type_statement_token6] = ACTIONS(4499), + [aux_sym_def_type_statement_token7] = ACTIONS(4499), + [aux_sym_def_type_statement_token8] = ACTIONS(4499), + [aux_sym_def_type_statement_token9] = ACTIONS(4499), + [aux_sym_def_type_statement_token10] = ACTIONS(4499), + [aux_sym_def_type_statement_token11] = ACTIONS(4499), + [aux_sym_def_type_statement_token12] = ACTIONS(4499), + [aux_sym_def_type_statement_token13] = ACTIONS(4499), + [aux_sym_def_type_statement_token14] = ACTIONS(4499), + [aux_sym_call_statement_token1] = ACTIONS(4499), + [sym__ambiguous_call_statement] = ACTIONS(4499), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4499), + [aux_sym_type_of_expression_token1] = ACTIONS(4499), + [aux_sym_unary_expression_token1] = ACTIONS(4499), + [sym_string_literal] = ACTIONS(4501), + [sym_number_literal] = ACTIONS(4501), + [aux_sym_boolean_literal_token1] = ACTIONS(4499), + [aux_sym_boolean_literal_token2] = ACTIONS(4499), + [sym_nothing_literal] = ACTIONS(4499), + [sym_null_literal] = ACTIONS(4499), + [sym_empty_literal] = ACTIONS(4499), + [sym_date_literal] = ACTIONS(4501), + [anon_sym_POUND] = ACTIONS(4499), + }, + [STATE(1574)] = { + [sym_identifier] = ACTIONS(6340), + [sym_newline] = ACTIONS(6342), + [anon_sym_COLON] = ACTIONS(6342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6340), + [aux_sym_frm_property_statement_token1] = ACTIONS(6340), + [anon_sym_DOT] = ACTIONS(6340), + [anon_sym_BANG] = ACTIONS(6342), + [aux_sym__attribute_identifier_token1] = ACTIONS(6340), + [aux_sym_option_statement_token3] = ACTIONS(6340), + [aux_sym_type_declaration_token1] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6340), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6340), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6340), + [aux_sym_enum_declaration_token1] = ACTIONS(6340), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6340), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6340), + [aux_sym_declare_function_statement_token1] = ACTIONS(6340), + [aux_sym_preprocessor_const_token1] = ACTIONS(6340), + [aux_sym__property_get_header_token1] = ACTIONS(6340), + [aux_sym_event_declaration_token1] = ACTIONS(6340), + [sym_static_modifier] = ACTIONS(6340), + [sym__dim_keyword] = ACTIONS(6340), + [sym__redim_keyword] = ACTIONS(6340), + [aux_sym_get_accessor_token1] = ACTIONS(6340), + [aux_sym_set_accessor_token1] = ACTIONS(6340), + [aux_sym_const_declaration_token1] = ACTIONS(6340), + [anon_sym_LPAREN] = ACTIONS(6342), + [aux_sym_as_type_clause_token2] = ACTIONS(6340), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6340), + [aux_sym_visibility_token1] = ACTIONS(6340), + [aux_sym_visibility_token2] = ACTIONS(6340), + [aux_sym_elseif_fragment_token1] = ACTIONS(6340), + [aux_sym_else_fragment_token1] = ACTIONS(6340), + [aux_sym_select_statement_token1] = ACTIONS(6340), + [aux_sym__for_header_token1] = ACTIONS(6340), + [aux_sym_do_statement_token1] = ACTIONS(6340), + [aux_sym_do_condition_token1] = ACTIONS(6340), + [aux_sym_with_statement_token1] = ACTIONS(6340), + [aux_sym_exit_statement_token1] = ACTIONS(6340), + [sym_end_statement] = ACTIONS(6342), + [aux_sym_on_goto_statement_token1] = ACTIONS(6340), + [aux_sym_on_goto_statement_token2] = ACTIONS(6340), + [aux_sym_on_error_statement_token2] = ACTIONS(6340), + [sym__ambiguous_redim_statement] = ACTIONS(6342), + [aux_sym_erase_statement_token1] = ACTIONS(6340), + [aux_sym_open_statement_token1] = ACTIONS(6340), + [aux_sym_file_mode_token2] = ACTIONS(6340), + [aux_sym_file_access_token2] = ACTIONS(6340), + [aux_sym_file_lock_token2] = ACTIONS(6340), + [aux_sym_print_statement_token1] = ACTIONS(6340), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_QMARK] = ACTIONS(6342), + [aux_sym_close_statement_token1] = ACTIONS(6340), + [aux_sym_put_statement_token1] = ACTIONS(6340), + [aux_sym_unlock_statement_token1] = ACTIONS(6340), + [aux_sym_seek_statement_token1] = ACTIONS(6340), + [sym_reset_statement] = ACTIONS(6340), + [aux_sym_raise_event_statement_token1] = ACTIONS(6340), + [sym_stop_statement] = ACTIONS(6340), + [sym_beep_statement] = ACTIONS(6340), + [aux_sym_unload_statement_token1] = ACTIONS(6340), + [aux_sym_def_type_statement_token1] = ACTIONS(6340), + [aux_sym_def_type_statement_token2] = ACTIONS(6340), + [aux_sym_def_type_statement_token3] = ACTIONS(6340), + [aux_sym_def_type_statement_token4] = ACTIONS(6340), + [aux_sym_def_type_statement_token5] = ACTIONS(6340), + [aux_sym_def_type_statement_token6] = ACTIONS(6340), + [aux_sym_def_type_statement_token7] = ACTIONS(6340), + [aux_sym_def_type_statement_token8] = ACTIONS(6340), + [aux_sym_def_type_statement_token9] = ACTIONS(6340), + [aux_sym_def_type_statement_token10] = ACTIONS(6340), + [aux_sym_def_type_statement_token11] = ACTIONS(6340), + [aux_sym_def_type_statement_token12] = ACTIONS(6340), + [aux_sym_def_type_statement_token13] = ACTIONS(6340), + [aux_sym_def_type_statement_token14] = ACTIONS(6340), + [aux_sym_call_statement_token1] = ACTIONS(6340), + [sym__ambiguous_call_statement] = ACTIONS(6340), + [aux_sym_addressof_expression_token1] = ACTIONS(6340), + [aux_sym_type_of_expression_token1] = ACTIONS(6340), + [aux_sym_unary_expression_token1] = ACTIONS(6340), + [sym_string_literal] = ACTIONS(6342), + [sym_number_literal] = ACTIONS(6342), + [aux_sym_boolean_literal_token1] = ACTIONS(6340), + [aux_sym_boolean_literal_token2] = ACTIONS(6340), + [sym_nothing_literal] = ACTIONS(6340), + [sym_null_literal] = ACTIONS(6340), + [sym_empty_literal] = ACTIONS(6340), + [sym_date_literal] = ACTIONS(6342), + [anon_sym_POUND] = ACTIONS(6340), + }, + [STATE(1575)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_statement_token2] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token3] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1576)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_statement_token2] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token3] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1577)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_statement_token2] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token3] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1578)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1579)] = { + [sym_identifier] = ACTIONS(5775), + [sym_newline] = ACTIONS(5777), + [anon_sym_COLON] = ACTIONS(5777), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5775), + [aux_sym_frm_property_statement_token1] = ACTIONS(5775), + [anon_sym_EQ] = ACTIONS(5777), + [anon_sym_DOT] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5777), + [aux_sym__attribute_identifier_token1] = ACTIONS(5775), + [aux_sym_option_statement_token3] = ACTIONS(5775), + [aux_sym_type_declaration_token1] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5775), + [aux_sym_enum_declaration_token1] = ACTIONS(5775), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5775), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5775), + [aux_sym_declare_function_statement_token1] = ACTIONS(5775), + [aux_sym_preprocessor_const_token1] = ACTIONS(5775), + [aux_sym__property_get_header_token1] = ACTIONS(5775), + [aux_sym_event_declaration_token1] = ACTIONS(5775), + [sym_static_modifier] = ACTIONS(5775), + [sym__dim_keyword] = ACTIONS(5775), + [sym__redim_keyword] = ACTIONS(5775), + [aux_sym_get_accessor_token1] = ACTIONS(5775), + [aux_sym_set_accessor_token1] = ACTIONS(5775), + [anon_sym_COMMA] = ACTIONS(5777), + [aux_sym_const_declaration_token1] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5777), + [aux_sym_as_type_clause_token2] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(6344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5775), + [aux_sym_visibility_token1] = ACTIONS(5775), + [aux_sym_visibility_token2] = ACTIONS(5775), + [aux_sym_elseif_fragment_token1] = ACTIONS(5775), + [aux_sym_else_fragment_token1] = ACTIONS(5775), + [aux_sym_select_statement_token1] = ACTIONS(5775), + [aux_sym__for_header_token1] = ACTIONS(5775), + [aux_sym_do_statement_token1] = ACTIONS(5775), + [aux_sym_do_condition_token1] = ACTIONS(5775), + [aux_sym_with_statement_token1] = ACTIONS(5775), + [aux_sym_exit_statement_token1] = ACTIONS(5775), + [sym_end_statement] = ACTIONS(5777), + [aux_sym_on_goto_statement_token1] = ACTIONS(5775), + [aux_sym_on_goto_statement_token2] = ACTIONS(5775), + [aux_sym_on_error_statement_token2] = ACTIONS(5775), + [sym__ambiguous_redim_statement] = ACTIONS(5777), + [aux_sym_erase_statement_token1] = ACTIONS(5775), + [aux_sym_open_statement_token1] = ACTIONS(5775), + [aux_sym_file_mode_token2] = ACTIONS(5775), + [aux_sym_file_access_token2] = ACTIONS(5775), + [aux_sym_file_lock_token2] = ACTIONS(5775), + [aux_sym_print_statement_token1] = ACTIONS(5775), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(6344), + [anon_sym_BSLASH] = ACTIONS(6348), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6350), + [anon_sym_PLUS] = ACTIONS(6352), + [anon_sym_DASH] = ACTIONS(6354), + [anon_sym_AMP] = ACTIONS(6356), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6358), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6360), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6364), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6366), + [anon_sym_QMARK] = ACTIONS(5777), + [aux_sym_close_statement_token1] = ACTIONS(5775), + [aux_sym_put_statement_token1] = ACTIONS(5775), + [aux_sym_unlock_statement_token1] = ACTIONS(5775), + [aux_sym_seek_statement_token1] = ACTIONS(5775), + [sym_reset_statement] = ACTIONS(5775), + [aux_sym_raise_event_statement_token1] = ACTIONS(5775), + [sym_stop_statement] = ACTIONS(5775), + [sym_beep_statement] = ACTIONS(5775), + [aux_sym_unload_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token2] = ACTIONS(5775), + [aux_sym_def_type_statement_token3] = ACTIONS(5775), + [aux_sym_def_type_statement_token4] = ACTIONS(5775), + [aux_sym_def_type_statement_token5] = ACTIONS(5775), + [aux_sym_def_type_statement_token6] = ACTIONS(5775), + [aux_sym_def_type_statement_token7] = ACTIONS(5775), + [aux_sym_def_type_statement_token8] = ACTIONS(5775), + [aux_sym_def_type_statement_token9] = ACTIONS(5775), + [aux_sym_def_type_statement_token10] = ACTIONS(5775), + [aux_sym_def_type_statement_token11] = ACTIONS(5775), + [aux_sym_def_type_statement_token12] = ACTIONS(5775), + [aux_sym_def_type_statement_token13] = ACTIONS(5775), + [aux_sym_def_type_statement_token14] = ACTIONS(5775), + [aux_sym_call_statement_token1] = ACTIONS(5775), + [sym__ambiguous_call_statement] = ACTIONS(5775), + [aux_sym_addressof_expression_token1] = ACTIONS(5775), + [aux_sym_type_of_expression_token1] = ACTIONS(5775), + [aux_sym_unary_expression_token1] = ACTIONS(5775), + [sym_string_literal] = ACTIONS(5777), + [sym_number_literal] = ACTIONS(5777), + [aux_sym_boolean_literal_token1] = ACTIONS(5775), + [aux_sym_boolean_literal_token2] = ACTIONS(5775), + [sym_nothing_literal] = ACTIONS(5775), + [sym_null_literal] = ACTIONS(5775), + [sym_empty_literal] = ACTIONS(5775), + [sym_date_literal] = ACTIONS(5777), + [anon_sym_POUND] = ACTIONS(5775), + }, + [STATE(1580)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4509), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1581)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1582)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_array_bound_token1] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_while_statement_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1583)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_statement_token2] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token3] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6368), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1584)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_statement_token2] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token3] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6368), + [anon_sym_SLASH] = ACTIONS(6370), + [anon_sym_BSLASH] = ACTIONS(6372), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6374), + [anon_sym_PLUS] = ACTIONS(6376), + [anon_sym_DASH] = ACTIONS(6378), + [anon_sym_AMP] = ACTIONS(6380), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6382), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6384), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6386), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6388), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6390), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1585)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(1586)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1587)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(1588)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1589)] = { + [sym_identifier] = ACTIONS(6392), + [sym_newline] = ACTIONS(6394), + [anon_sym_COLON] = ACTIONS(6394), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6392), + [aux_sym_frm_property_statement_token1] = ACTIONS(6392), + [anon_sym_DOT] = ACTIONS(6392), + [anon_sym_BANG] = ACTIONS(6394), + [aux_sym__attribute_identifier_token1] = ACTIONS(6392), + [aux_sym_option_statement_token3] = ACTIONS(6392), + [aux_sym_type_declaration_token1] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6392), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6392), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6392), + [aux_sym_enum_declaration_token1] = ACTIONS(6392), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6392), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6392), + [aux_sym_declare_function_statement_token1] = ACTIONS(6392), + [aux_sym_preprocessor_const_token1] = ACTIONS(6392), + [aux_sym__property_get_header_token1] = ACTIONS(6392), + [aux_sym_event_declaration_token1] = ACTIONS(6392), + [sym_static_modifier] = ACTIONS(6392), + [sym__dim_keyword] = ACTIONS(6392), + [sym__redim_keyword] = ACTIONS(6392), + [aux_sym_get_accessor_token1] = ACTIONS(6392), + [aux_sym_set_accessor_token1] = ACTIONS(6392), + [aux_sym_const_declaration_token1] = ACTIONS(6392), + [anon_sym_LPAREN] = ACTIONS(6394), + [aux_sym_as_type_clause_token2] = ACTIONS(6392), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6392), + [aux_sym_visibility_token1] = ACTIONS(6392), + [aux_sym_visibility_token2] = ACTIONS(6392), + [aux_sym_elseif_fragment_token1] = ACTIONS(6392), + [aux_sym_else_fragment_token1] = ACTIONS(6392), + [aux_sym_select_statement_token1] = ACTIONS(6392), + [aux_sym__for_header_token1] = ACTIONS(6392), + [aux_sym_do_statement_token1] = ACTIONS(6392), + [aux_sym_do_condition_token1] = ACTIONS(6392), + [aux_sym_with_statement_token1] = ACTIONS(6392), + [aux_sym_exit_statement_token1] = ACTIONS(6392), + [sym_end_statement] = ACTIONS(6394), + [aux_sym_on_goto_statement_token1] = ACTIONS(6392), + [aux_sym_on_goto_statement_token2] = ACTIONS(6392), + [aux_sym_on_error_statement_token2] = ACTIONS(6392), + [sym__ambiguous_redim_statement] = ACTIONS(6394), + [aux_sym_erase_statement_token1] = ACTIONS(6392), + [aux_sym_open_statement_token1] = ACTIONS(6392), + [aux_sym_file_mode_token2] = ACTIONS(6392), + [aux_sym_file_access_token2] = ACTIONS(6392), + [aux_sym_file_lock_token2] = ACTIONS(6392), + [aux_sym_print_statement_token1] = ACTIONS(6392), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_QMARK] = ACTIONS(6394), + [aux_sym_close_statement_token1] = ACTIONS(6392), + [aux_sym_put_statement_token1] = ACTIONS(6392), + [aux_sym_unlock_statement_token1] = ACTIONS(6392), + [aux_sym_seek_statement_token1] = ACTIONS(6392), + [sym_reset_statement] = ACTIONS(6392), + [aux_sym_raise_event_statement_token1] = ACTIONS(6392), + [sym_stop_statement] = ACTIONS(6392), + [sym_beep_statement] = ACTIONS(6392), + [aux_sym_unload_statement_token1] = ACTIONS(6392), + [aux_sym_def_type_statement_token1] = ACTIONS(6392), + [aux_sym_def_type_statement_token2] = ACTIONS(6392), + [aux_sym_def_type_statement_token3] = ACTIONS(6392), + [aux_sym_def_type_statement_token4] = ACTIONS(6392), + [aux_sym_def_type_statement_token5] = ACTIONS(6392), + [aux_sym_def_type_statement_token6] = ACTIONS(6392), + [aux_sym_def_type_statement_token7] = ACTIONS(6392), + [aux_sym_def_type_statement_token8] = ACTIONS(6392), + [aux_sym_def_type_statement_token9] = ACTIONS(6392), + [aux_sym_def_type_statement_token10] = ACTIONS(6392), + [aux_sym_def_type_statement_token11] = ACTIONS(6392), + [aux_sym_def_type_statement_token12] = ACTIONS(6392), + [aux_sym_def_type_statement_token13] = ACTIONS(6392), + [aux_sym_def_type_statement_token14] = ACTIONS(6392), + [aux_sym_call_statement_token1] = ACTIONS(6392), + [sym__ambiguous_call_statement] = ACTIONS(6392), + [aux_sym_addressof_expression_token1] = ACTIONS(6392), + [aux_sym_type_of_expression_token1] = ACTIONS(6392), + [aux_sym_unary_expression_token1] = ACTIONS(6392), + [sym_string_literal] = ACTIONS(6394), + [sym_number_literal] = ACTIONS(6394), + [aux_sym_boolean_literal_token1] = ACTIONS(6392), + [aux_sym_boolean_literal_token2] = ACTIONS(6392), + [sym_nothing_literal] = ACTIONS(6392), + [sym_null_literal] = ACTIONS(6392), + [sym_empty_literal] = ACTIONS(6392), + [sym_date_literal] = ACTIONS(6394), + [anon_sym_POUND] = ACTIONS(6392), + }, + [STATE(1590)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4509), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token3] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1591)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1592)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token3] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1593)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_array_bound_token1] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_while_statement_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1594)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token3] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1595)] = { + [sym_identifier] = ACTIONS(6396), + [sym_newline] = ACTIONS(6398), + [anon_sym_COLON] = ACTIONS(6398), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6396), + [aux_sym_frm_property_statement_token1] = ACTIONS(6396), + [anon_sym_DOT] = ACTIONS(6396), + [anon_sym_BANG] = ACTIONS(6398), + [aux_sym__attribute_identifier_token1] = ACTIONS(6396), + [aux_sym_option_statement_token3] = ACTIONS(6396), + [aux_sym_type_declaration_token1] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6396), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6396), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6396), + [aux_sym_enum_declaration_token1] = ACTIONS(6396), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6396), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6396), + [aux_sym_declare_function_statement_token1] = ACTIONS(6396), + [aux_sym_preprocessor_const_token1] = ACTIONS(6396), + [aux_sym__property_get_header_token1] = ACTIONS(6396), + [aux_sym_event_declaration_token1] = ACTIONS(6396), + [sym_static_modifier] = ACTIONS(6396), + [sym__dim_keyword] = ACTIONS(6396), + [sym__redim_keyword] = ACTIONS(6396), + [aux_sym_get_accessor_token1] = ACTIONS(6396), + [aux_sym_set_accessor_token1] = ACTIONS(6396), + [aux_sym_const_declaration_token1] = ACTIONS(6396), + [anon_sym_LPAREN] = ACTIONS(6398), + [aux_sym_as_type_clause_token2] = ACTIONS(6396), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6396), + [aux_sym_visibility_token1] = ACTIONS(6396), + [aux_sym_visibility_token2] = ACTIONS(6396), + [aux_sym_elseif_fragment_token1] = ACTIONS(6396), + [aux_sym_else_fragment_token1] = ACTIONS(6396), + [aux_sym_select_statement_token1] = ACTIONS(6396), + [aux_sym__for_header_token1] = ACTIONS(6396), + [aux_sym_do_statement_token1] = ACTIONS(6396), + [aux_sym_do_condition_token1] = ACTIONS(6396), + [aux_sym_with_statement_token1] = ACTIONS(6396), + [aux_sym_exit_statement_token1] = ACTIONS(6396), + [sym_end_statement] = ACTIONS(6398), + [aux_sym_on_goto_statement_token1] = ACTIONS(6396), + [aux_sym_on_goto_statement_token2] = ACTIONS(6396), + [aux_sym_on_error_statement_token2] = ACTIONS(6396), + [sym__ambiguous_redim_statement] = ACTIONS(6398), + [aux_sym_erase_statement_token1] = ACTIONS(6396), + [aux_sym_open_statement_token1] = ACTIONS(6396), + [aux_sym_file_mode_token2] = ACTIONS(6396), + [aux_sym_file_access_token2] = ACTIONS(6396), + [aux_sym_file_lock_token2] = ACTIONS(6396), + [aux_sym_print_statement_token1] = ACTIONS(6396), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_QMARK] = ACTIONS(6398), + [aux_sym_close_statement_token1] = ACTIONS(6396), + [aux_sym_put_statement_token1] = ACTIONS(6396), + [aux_sym_unlock_statement_token1] = ACTIONS(6396), + [aux_sym_seek_statement_token1] = ACTIONS(6396), + [sym_reset_statement] = ACTIONS(6396), + [aux_sym_raise_event_statement_token1] = ACTIONS(6396), + [sym_stop_statement] = ACTIONS(6396), + [sym_beep_statement] = ACTIONS(6396), + [aux_sym_unload_statement_token1] = ACTIONS(6396), + [aux_sym_def_type_statement_token1] = ACTIONS(6396), + [aux_sym_def_type_statement_token2] = ACTIONS(6396), + [aux_sym_def_type_statement_token3] = ACTIONS(6396), + [aux_sym_def_type_statement_token4] = ACTIONS(6396), + [aux_sym_def_type_statement_token5] = ACTIONS(6396), + [aux_sym_def_type_statement_token6] = ACTIONS(6396), + [aux_sym_def_type_statement_token7] = ACTIONS(6396), + [aux_sym_def_type_statement_token8] = ACTIONS(6396), + [aux_sym_def_type_statement_token9] = ACTIONS(6396), + [aux_sym_def_type_statement_token10] = ACTIONS(6396), + [aux_sym_def_type_statement_token11] = ACTIONS(6396), + [aux_sym_def_type_statement_token12] = ACTIONS(6396), + [aux_sym_def_type_statement_token13] = ACTIONS(6396), + [aux_sym_def_type_statement_token14] = ACTIONS(6396), + [aux_sym_call_statement_token1] = ACTIONS(6396), + [sym__ambiguous_call_statement] = ACTIONS(6396), + [aux_sym_addressof_expression_token1] = ACTIONS(6396), + [aux_sym_type_of_expression_token1] = ACTIONS(6396), + [aux_sym_unary_expression_token1] = ACTIONS(6396), + [sym_string_literal] = ACTIONS(6398), + [sym_number_literal] = ACTIONS(6398), + [aux_sym_boolean_literal_token1] = ACTIONS(6396), + [aux_sym_boolean_literal_token2] = ACTIONS(6396), + [sym_nothing_literal] = ACTIONS(6396), + [sym_null_literal] = ACTIONS(6396), + [sym_empty_literal] = ACTIONS(6396), + [sym_date_literal] = ACTIONS(6398), + [anon_sym_POUND] = ACTIONS(6396), + }, + [STATE(1596)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_array_bound_token1] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_while_statement_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1597)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token3] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1598)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_while_statement_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1599)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_statement_token2] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token3] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1600)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_array_bound_token1] = ACTIONS(4509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4509), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1601)] = { + [sym_argument_list] = STATE(2019), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(6400), + [anon_sym_BANG] = ACTIONS(6402), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(6404), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1602)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1603)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token3] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6406), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1604)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6408), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token3] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6406), + [anon_sym_SLASH] = ACTIONS(6408), + [anon_sym_BSLASH] = ACTIONS(6410), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6412), + [anon_sym_PLUS] = ACTIONS(6414), + [anon_sym_DASH] = ACTIONS(6416), + [anon_sym_AMP] = ACTIONS(6418), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6420), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6422), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6424), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6426), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6428), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1605)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_array_bound_token1] = ACTIONS(4625), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_while_statement_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1606)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_while_statement_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1607)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6368), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1608)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6368), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1609)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6368), + [anon_sym_SLASH] = ACTIONS(6370), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1610)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6368), + [anon_sym_SLASH] = ACTIONS(6370), + [anon_sym_BSLASH] = ACTIONS(6372), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1611)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6368), + [anon_sym_SLASH] = ACTIONS(6370), + [anon_sym_BSLASH] = ACTIONS(6372), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6374), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1612)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6368), + [anon_sym_SLASH] = ACTIONS(6370), + [anon_sym_BSLASH] = ACTIONS(6372), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6374), + [anon_sym_PLUS] = ACTIONS(6376), + [anon_sym_DASH] = ACTIONS(6378), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1613)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6368), + [anon_sym_SLASH] = ACTIONS(6370), + [anon_sym_BSLASH] = ACTIONS(6372), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6374), + [anon_sym_PLUS] = ACTIONS(6376), + [anon_sym_DASH] = ACTIONS(6378), + [anon_sym_AMP] = ACTIONS(6380), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1614)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6368), + [anon_sym_SLASH] = ACTIONS(6370), + [anon_sym_BSLASH] = ACTIONS(6372), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6374), + [anon_sym_PLUS] = ACTIONS(6376), + [anon_sym_DASH] = ACTIONS(6378), + [anon_sym_AMP] = ACTIONS(6380), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6382), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1615)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6368), + [anon_sym_SLASH] = ACTIONS(6370), + [anon_sym_BSLASH] = ACTIONS(6372), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6374), + [anon_sym_PLUS] = ACTIONS(6376), + [anon_sym_DASH] = ACTIONS(6378), + [anon_sym_AMP] = ACTIONS(6380), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6382), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6384), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1616)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6368), + [anon_sym_SLASH] = ACTIONS(6370), + [anon_sym_BSLASH] = ACTIONS(6372), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6374), + [anon_sym_PLUS] = ACTIONS(6376), + [anon_sym_DASH] = ACTIONS(6378), + [anon_sym_AMP] = ACTIONS(6380), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6382), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6384), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6386), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1617)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6368), + [anon_sym_SLASH] = ACTIONS(6370), + [anon_sym_BSLASH] = ACTIONS(6372), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6374), + [anon_sym_PLUS] = ACTIONS(6376), + [anon_sym_DASH] = ACTIONS(6378), + [anon_sym_AMP] = ACTIONS(6380), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6382), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6384), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6386), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6388), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1618)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_statement_token2] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1619)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_statement_token2] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1620)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1621)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_statement_token2] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1622)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token3] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1623)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(5976), + [anon_sym_BANG] = ACTIONS(5978), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_statement_token2] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1624)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_while_statement_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1625)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_while_statement_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1626)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1627)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1628)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_statement_token2] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6368), + [anon_sym_SLASH] = ACTIONS(6370), + [anon_sym_BSLASH] = ACTIONS(6372), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6374), + [anon_sym_PLUS] = ACTIONS(6376), + [anon_sym_DASH] = ACTIONS(6378), + [anon_sym_AMP] = ACTIONS(6380), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1629)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1630)] = { + [sym_identifier] = ACTIONS(6430), + [sym_newline] = ACTIONS(6432), + [anon_sym_COLON] = ACTIONS(6432), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6430), + [aux_sym_frm_property_statement_token1] = ACTIONS(6430), + [anon_sym_DOT] = ACTIONS(6430), + [anon_sym_BANG] = ACTIONS(6432), + [aux_sym__attribute_identifier_token1] = ACTIONS(6430), + [aux_sym_option_statement_token3] = ACTIONS(6430), + [aux_sym_type_declaration_token1] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6430), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6430), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6430), + [aux_sym_enum_declaration_token1] = ACTIONS(6430), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6430), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6430), + [aux_sym_declare_function_statement_token1] = ACTIONS(6430), + [aux_sym_preprocessor_const_token1] = ACTIONS(6430), + [aux_sym__property_get_header_token1] = ACTIONS(6430), + [aux_sym_event_declaration_token1] = ACTIONS(6430), + [sym_static_modifier] = ACTIONS(6430), + [sym__dim_keyword] = ACTIONS(6430), + [sym__redim_keyword] = ACTIONS(6430), + [aux_sym_get_accessor_token1] = ACTIONS(6430), + [aux_sym_set_accessor_token1] = ACTIONS(6430), + [aux_sym_const_declaration_token1] = ACTIONS(6430), + [anon_sym_LPAREN] = ACTIONS(6432), + [aux_sym_as_type_clause_token2] = ACTIONS(6430), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6430), + [aux_sym_visibility_token1] = ACTIONS(6430), + [aux_sym_visibility_token2] = ACTIONS(6430), + [aux_sym_elseif_fragment_token1] = ACTIONS(6430), + [aux_sym_else_fragment_token1] = ACTIONS(6430), + [aux_sym_select_statement_token1] = ACTIONS(6430), + [aux_sym__for_header_token1] = ACTIONS(6430), + [aux_sym_do_statement_token1] = ACTIONS(6430), + [aux_sym_do_condition_token1] = ACTIONS(6430), + [aux_sym_with_statement_token1] = ACTIONS(6430), + [aux_sym_exit_statement_token1] = ACTIONS(6430), + [sym_end_statement] = ACTIONS(6432), + [aux_sym_on_goto_statement_token1] = ACTIONS(6430), + [aux_sym_on_goto_statement_token2] = ACTIONS(6430), + [aux_sym_on_error_statement_token2] = ACTIONS(6430), + [sym__ambiguous_redim_statement] = ACTIONS(6432), + [aux_sym_erase_statement_token1] = ACTIONS(6430), + [aux_sym_open_statement_token1] = ACTIONS(6430), + [aux_sym_file_mode_token2] = ACTIONS(6430), + [aux_sym_file_access_token2] = ACTIONS(6430), + [aux_sym_file_lock_token2] = ACTIONS(6430), + [aux_sym_print_statement_token1] = ACTIONS(6430), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_QMARK] = ACTIONS(6432), + [aux_sym_close_statement_token1] = ACTIONS(6430), + [aux_sym_put_statement_token1] = ACTIONS(6430), + [aux_sym_unlock_statement_token1] = ACTIONS(6430), + [aux_sym_seek_statement_token1] = ACTIONS(6430), + [sym_reset_statement] = ACTIONS(6430), + [aux_sym_raise_event_statement_token1] = ACTIONS(6430), + [sym_stop_statement] = ACTIONS(6430), + [sym_beep_statement] = ACTIONS(6430), + [aux_sym_unload_statement_token1] = ACTIONS(6430), + [aux_sym_def_type_statement_token1] = ACTIONS(6430), + [aux_sym_def_type_statement_token2] = ACTIONS(6430), + [aux_sym_def_type_statement_token3] = ACTIONS(6430), + [aux_sym_def_type_statement_token4] = ACTIONS(6430), + [aux_sym_def_type_statement_token5] = ACTIONS(6430), + [aux_sym_def_type_statement_token6] = ACTIONS(6430), + [aux_sym_def_type_statement_token7] = ACTIONS(6430), + [aux_sym_def_type_statement_token8] = ACTIONS(6430), + [aux_sym_def_type_statement_token9] = ACTIONS(6430), + [aux_sym_def_type_statement_token10] = ACTIONS(6430), + [aux_sym_def_type_statement_token11] = ACTIONS(6430), + [aux_sym_def_type_statement_token12] = ACTIONS(6430), + [aux_sym_def_type_statement_token13] = ACTIONS(6430), + [aux_sym_def_type_statement_token14] = ACTIONS(6430), + [aux_sym_call_statement_token1] = ACTIONS(6430), + [sym__ambiguous_call_statement] = ACTIONS(6430), + [aux_sym_addressof_expression_token1] = ACTIONS(6430), + [aux_sym_type_of_expression_token1] = ACTIONS(6430), + [aux_sym_unary_expression_token1] = ACTIONS(6430), + [sym_string_literal] = ACTIONS(6432), + [sym_number_literal] = ACTIONS(6432), + [aux_sym_boolean_literal_token1] = ACTIONS(6430), + [aux_sym_boolean_literal_token2] = ACTIONS(6430), + [sym_nothing_literal] = ACTIONS(6430), + [sym_null_literal] = ACTIONS(6430), + [sym_empty_literal] = ACTIONS(6430), + [sym_date_literal] = ACTIONS(6432), + [anon_sym_POUND] = ACTIONS(6430), + }, + [STATE(1631)] = { + [sym_identifier] = ACTIONS(6434), + [sym_newline] = ACTIONS(6436), + [anon_sym_COLON] = ACTIONS(6436), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6434), + [aux_sym_frm_property_statement_token1] = ACTIONS(6434), + [anon_sym_DOT] = ACTIONS(6434), + [anon_sym_BANG] = ACTIONS(6436), + [aux_sym__attribute_identifier_token1] = ACTIONS(6434), + [aux_sym_option_statement_token3] = ACTIONS(6434), + [aux_sym_type_declaration_token1] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6434), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6434), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6434), + [aux_sym_enum_declaration_token1] = ACTIONS(6434), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6434), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6434), + [aux_sym_declare_function_statement_token1] = ACTIONS(6434), + [aux_sym_preprocessor_const_token1] = ACTIONS(6434), + [aux_sym__property_get_header_token1] = ACTIONS(6434), + [aux_sym_event_declaration_token1] = ACTIONS(6434), + [sym_static_modifier] = ACTIONS(6434), + [sym__dim_keyword] = ACTIONS(6434), + [sym__redim_keyword] = ACTIONS(6434), + [aux_sym_get_accessor_token1] = ACTIONS(6434), + [aux_sym_set_accessor_token1] = ACTIONS(6434), + [aux_sym_const_declaration_token1] = ACTIONS(6434), + [anon_sym_LPAREN] = ACTIONS(6436), + [aux_sym_as_type_clause_token2] = ACTIONS(6434), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6434), + [aux_sym_visibility_token1] = ACTIONS(6434), + [aux_sym_visibility_token2] = ACTIONS(6434), + [aux_sym_elseif_fragment_token1] = ACTIONS(6434), + [aux_sym_else_fragment_token1] = ACTIONS(6434), + [aux_sym_select_statement_token1] = ACTIONS(6434), + [aux_sym__for_header_token1] = ACTIONS(6434), + [aux_sym_do_statement_token1] = ACTIONS(6434), + [aux_sym_do_condition_token1] = ACTIONS(6434), + [aux_sym_with_statement_token1] = ACTIONS(6434), + [aux_sym_exit_statement_token1] = ACTIONS(6434), + [sym_end_statement] = ACTIONS(6436), + [aux_sym_on_goto_statement_token1] = ACTIONS(6434), + [aux_sym_on_goto_statement_token2] = ACTIONS(6434), + [aux_sym_on_error_statement_token2] = ACTIONS(6434), + [sym__ambiguous_redim_statement] = ACTIONS(6436), + [aux_sym_erase_statement_token1] = ACTIONS(6434), + [aux_sym_open_statement_token1] = ACTIONS(6434), + [aux_sym_file_mode_token2] = ACTIONS(6434), + [aux_sym_file_access_token2] = ACTIONS(6434), + [aux_sym_file_lock_token2] = ACTIONS(6434), + [aux_sym_print_statement_token1] = ACTIONS(6434), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_QMARK] = ACTIONS(6436), + [aux_sym_close_statement_token1] = ACTIONS(6434), + [aux_sym_put_statement_token1] = ACTIONS(6434), + [aux_sym_unlock_statement_token1] = ACTIONS(6434), + [aux_sym_seek_statement_token1] = ACTIONS(6434), + [sym_reset_statement] = ACTIONS(6434), + [aux_sym_raise_event_statement_token1] = ACTIONS(6434), + [sym_stop_statement] = ACTIONS(6434), + [sym_beep_statement] = ACTIONS(6434), + [aux_sym_unload_statement_token1] = ACTIONS(6434), + [aux_sym_def_type_statement_token1] = ACTIONS(6434), + [aux_sym_def_type_statement_token2] = ACTIONS(6434), + [aux_sym_def_type_statement_token3] = ACTIONS(6434), + [aux_sym_def_type_statement_token4] = ACTIONS(6434), + [aux_sym_def_type_statement_token5] = ACTIONS(6434), + [aux_sym_def_type_statement_token6] = ACTIONS(6434), + [aux_sym_def_type_statement_token7] = ACTIONS(6434), + [aux_sym_def_type_statement_token8] = ACTIONS(6434), + [aux_sym_def_type_statement_token9] = ACTIONS(6434), + [aux_sym_def_type_statement_token10] = ACTIONS(6434), + [aux_sym_def_type_statement_token11] = ACTIONS(6434), + [aux_sym_def_type_statement_token12] = ACTIONS(6434), + [aux_sym_def_type_statement_token13] = ACTIONS(6434), + [aux_sym_def_type_statement_token14] = ACTIONS(6434), + [aux_sym_call_statement_token1] = ACTIONS(6434), + [sym__ambiguous_call_statement] = ACTIONS(6434), + [aux_sym_addressof_expression_token1] = ACTIONS(6434), + [aux_sym_type_of_expression_token1] = ACTIONS(6434), + [aux_sym_unary_expression_token1] = ACTIONS(6434), + [sym_string_literal] = ACTIONS(6436), + [sym_number_literal] = ACTIONS(6436), + [aux_sym_boolean_literal_token1] = ACTIONS(6434), + [aux_sym_boolean_literal_token2] = ACTIONS(6434), + [sym_nothing_literal] = ACTIONS(6434), + [sym_null_literal] = ACTIONS(6434), + [sym_empty_literal] = ACTIONS(6434), + [sym_date_literal] = ACTIONS(6436), + [anon_sym_POUND] = ACTIONS(6434), + }, + [STATE(1632)] = { + [sym_identifier] = ACTIONS(6438), + [sym_newline] = ACTIONS(6440), + [anon_sym_COLON] = ACTIONS(6440), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6438), + [aux_sym_frm_property_statement_token1] = ACTIONS(6438), + [anon_sym_DOT] = ACTIONS(6438), + [anon_sym_BANG] = ACTIONS(6440), + [aux_sym__attribute_identifier_token1] = ACTIONS(6438), + [aux_sym_option_statement_token3] = ACTIONS(6438), + [aux_sym_type_declaration_token1] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6438), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6438), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6438), + [aux_sym_enum_declaration_token1] = ACTIONS(6438), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6438), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6438), + [aux_sym_declare_function_statement_token1] = ACTIONS(6438), + [aux_sym_preprocessor_const_token1] = ACTIONS(6438), + [aux_sym__property_get_header_token1] = ACTIONS(6438), + [aux_sym_event_declaration_token1] = ACTIONS(6438), + [sym_static_modifier] = ACTIONS(6438), + [sym__dim_keyword] = ACTIONS(6438), + [sym__redim_keyword] = ACTIONS(6438), + [aux_sym_get_accessor_token1] = ACTIONS(6438), + [aux_sym_set_accessor_token1] = ACTIONS(6438), + [aux_sym_const_declaration_token1] = ACTIONS(6438), + [anon_sym_LPAREN] = ACTIONS(6440), + [aux_sym_as_type_clause_token2] = ACTIONS(6438), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6438), + [aux_sym_visibility_token1] = ACTIONS(6438), + [aux_sym_visibility_token2] = ACTIONS(6438), + [aux_sym_elseif_fragment_token1] = ACTIONS(6438), + [aux_sym_else_fragment_token1] = ACTIONS(6438), + [aux_sym_select_statement_token1] = ACTIONS(6438), + [aux_sym__for_header_token1] = ACTIONS(6438), + [aux_sym_do_statement_token1] = ACTIONS(6438), + [aux_sym_do_condition_token1] = ACTIONS(6438), + [aux_sym_with_statement_token1] = ACTIONS(6438), + [aux_sym_exit_statement_token1] = ACTIONS(6438), + [sym_end_statement] = ACTIONS(6440), + [aux_sym_on_goto_statement_token1] = ACTIONS(6438), + [aux_sym_on_goto_statement_token2] = ACTIONS(6438), + [aux_sym_on_error_statement_token2] = ACTIONS(6438), + [sym__ambiguous_redim_statement] = ACTIONS(6440), + [aux_sym_erase_statement_token1] = ACTIONS(6438), + [aux_sym_open_statement_token1] = ACTIONS(6438), + [aux_sym_file_mode_token2] = ACTIONS(6438), + [aux_sym_file_access_token2] = ACTIONS(6438), + [aux_sym_file_lock_token2] = ACTIONS(6438), + [aux_sym_print_statement_token1] = ACTIONS(6438), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_QMARK] = ACTIONS(6440), + [aux_sym_close_statement_token1] = ACTIONS(6438), + [aux_sym_put_statement_token1] = ACTIONS(6438), + [aux_sym_unlock_statement_token1] = ACTIONS(6438), + [aux_sym_seek_statement_token1] = ACTIONS(6438), + [sym_reset_statement] = ACTIONS(6438), + [aux_sym_raise_event_statement_token1] = ACTIONS(6438), + [sym_stop_statement] = ACTIONS(6438), + [sym_beep_statement] = ACTIONS(6438), + [aux_sym_unload_statement_token1] = ACTIONS(6438), + [aux_sym_def_type_statement_token1] = ACTIONS(6438), + [aux_sym_def_type_statement_token2] = ACTIONS(6438), + [aux_sym_def_type_statement_token3] = ACTIONS(6438), + [aux_sym_def_type_statement_token4] = ACTIONS(6438), + [aux_sym_def_type_statement_token5] = ACTIONS(6438), + [aux_sym_def_type_statement_token6] = ACTIONS(6438), + [aux_sym_def_type_statement_token7] = ACTIONS(6438), + [aux_sym_def_type_statement_token8] = ACTIONS(6438), + [aux_sym_def_type_statement_token9] = ACTIONS(6438), + [aux_sym_def_type_statement_token10] = ACTIONS(6438), + [aux_sym_def_type_statement_token11] = ACTIONS(6438), + [aux_sym_def_type_statement_token12] = ACTIONS(6438), + [aux_sym_def_type_statement_token13] = ACTIONS(6438), + [aux_sym_def_type_statement_token14] = ACTIONS(6438), + [aux_sym_call_statement_token1] = ACTIONS(6438), + [sym__ambiguous_call_statement] = ACTIONS(6438), + [aux_sym_addressof_expression_token1] = ACTIONS(6438), + [aux_sym_type_of_expression_token1] = ACTIONS(6438), + [aux_sym_unary_expression_token1] = ACTIONS(6438), + [sym_string_literal] = ACTIONS(6440), + [sym_number_literal] = ACTIONS(6440), + [aux_sym_boolean_literal_token1] = ACTIONS(6438), + [aux_sym_boolean_literal_token2] = ACTIONS(6438), + [sym_nothing_literal] = ACTIONS(6438), + [sym_null_literal] = ACTIONS(6438), + [sym_empty_literal] = ACTIONS(6438), + [sym_date_literal] = ACTIONS(6440), + [anon_sym_POUND] = ACTIONS(6438), + }, + [STATE(1633)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6406), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1634)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6406), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1635)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6408), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6406), + [anon_sym_SLASH] = ACTIONS(6408), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1636)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6408), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6406), + [anon_sym_SLASH] = ACTIONS(6408), + [anon_sym_BSLASH] = ACTIONS(6410), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1637)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6408), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6406), + [anon_sym_SLASH] = ACTIONS(6408), + [anon_sym_BSLASH] = ACTIONS(6410), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6412), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1638)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6408), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6406), + [anon_sym_SLASH] = ACTIONS(6408), + [anon_sym_BSLASH] = ACTIONS(6410), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6412), + [anon_sym_PLUS] = ACTIONS(6414), + [anon_sym_DASH] = ACTIONS(6416), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1639)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6408), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6406), + [anon_sym_SLASH] = ACTIONS(6408), + [anon_sym_BSLASH] = ACTIONS(6410), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6412), + [anon_sym_PLUS] = ACTIONS(6414), + [anon_sym_DASH] = ACTIONS(6416), + [anon_sym_AMP] = ACTIONS(6418), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1640)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6408), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6406), + [anon_sym_SLASH] = ACTIONS(6408), + [anon_sym_BSLASH] = ACTIONS(6410), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6412), + [anon_sym_PLUS] = ACTIONS(6414), + [anon_sym_DASH] = ACTIONS(6416), + [anon_sym_AMP] = ACTIONS(6418), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6420), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1641)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6408), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6406), + [anon_sym_SLASH] = ACTIONS(6408), + [anon_sym_BSLASH] = ACTIONS(6410), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6412), + [anon_sym_PLUS] = ACTIONS(6414), + [anon_sym_DASH] = ACTIONS(6416), + [anon_sym_AMP] = ACTIONS(6418), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6420), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6422), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1642)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6408), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6406), + [anon_sym_SLASH] = ACTIONS(6408), + [anon_sym_BSLASH] = ACTIONS(6410), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6412), + [anon_sym_PLUS] = ACTIONS(6414), + [anon_sym_DASH] = ACTIONS(6416), + [anon_sym_AMP] = ACTIONS(6418), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6420), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6422), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6424), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1643)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6408), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6406), + [anon_sym_SLASH] = ACTIONS(6408), + [anon_sym_BSLASH] = ACTIONS(6410), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6412), + [anon_sym_PLUS] = ACTIONS(6414), + [anon_sym_DASH] = ACTIONS(6416), + [anon_sym_AMP] = ACTIONS(6418), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6420), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6422), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6424), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6426), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1644)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_array_bound_token1] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_while_statement_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(1645)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_array_bound_token1] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_while_statement_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1646)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_array_bound_token1] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_while_statement_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(1647)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_while_statement_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token3] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1648)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_while_statement_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1649)] = { + [sym_argument_list] = STATE(1239), + [sym_identifier] = ACTIONS(4030), + [sym_newline] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4030), + [aux_sym_frm_property_statement_token1] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(6151), + [anon_sym_BANG] = ACTIONS(5633), + [aux_sym__attribute_identifier_token1] = ACTIONS(4030), + [aux_sym_option_statement_token3] = ACTIONS(4030), + [aux_sym_type_declaration_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4030), + [aux_sym_enum_declaration_token1] = ACTIONS(4030), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4030), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4030), + [aux_sym_declare_function_statement_token1] = ACTIONS(4030), + [aux_sym_preprocessor_const_token1] = ACTIONS(4030), + [aux_sym__property_get_header_token1] = ACTIONS(4030), + [aux_sym_event_declaration_token1] = ACTIONS(4030), + [sym_static_modifier] = ACTIONS(4030), + [sym__dim_keyword] = ACTIONS(4030), + [sym__redim_keyword] = ACTIONS(4030), + [aux_sym_get_accessor_token1] = ACTIONS(4030), + [aux_sym_set_accessor_token1] = ACTIONS(4030), + [aux_sym_const_declaration_token1] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(4757), + [aux_sym_as_type_clause_token2] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4030), + [aux_sym_visibility_token1] = ACTIONS(4030), + [aux_sym_visibility_token2] = ACTIONS(4030), + [aux_sym_elseif_fragment_token1] = ACTIONS(4030), + [aux_sym_else_fragment_token1] = ACTIONS(4030), + [aux_sym_select_statement_token1] = ACTIONS(4030), + [aux_sym__for_header_token1] = ACTIONS(4030), + [aux_sym_do_statement_token1] = ACTIONS(4030), + [aux_sym_do_condition_token1] = ACTIONS(4030), + [aux_sym_with_statement_token1] = ACTIONS(4030), + [aux_sym_exit_statement_token1] = ACTIONS(4030), + [sym_end_statement] = ACTIONS(4028), + [aux_sym_on_goto_statement_token1] = ACTIONS(4030), + [aux_sym_on_goto_statement_token2] = ACTIONS(4030), + [aux_sym_on_error_statement_token2] = ACTIONS(4030), + [sym__ambiguous_redim_statement] = ACTIONS(4028), + [aux_sym_erase_statement_token1] = ACTIONS(4030), + [aux_sym_open_statement_token1] = ACTIONS(4030), + [aux_sym_file_mode_token2] = ACTIONS(4030), + [aux_sym_file_access_token2] = ACTIONS(4030), + [aux_sym_file_lock_token2] = ACTIONS(4030), + [aux_sym_print_statement_token1] = ACTIONS(4030), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4028), + [aux_sym_close_statement_token1] = ACTIONS(4030), + [aux_sym_put_statement_token1] = ACTIONS(4030), + [aux_sym_unlock_statement_token1] = ACTIONS(4030), + [aux_sym_seek_statement_token1] = ACTIONS(4030), + [sym_reset_statement] = ACTIONS(4030), + [aux_sym_raise_event_statement_token1] = ACTIONS(4030), + [sym_stop_statement] = ACTIONS(4030), + [sym_beep_statement] = ACTIONS(4030), + [aux_sym_unload_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token2] = ACTIONS(4030), + [aux_sym_def_type_statement_token3] = ACTIONS(4030), + [aux_sym_def_type_statement_token4] = ACTIONS(4030), + [aux_sym_def_type_statement_token5] = ACTIONS(4030), + [aux_sym_def_type_statement_token6] = ACTIONS(4030), + [aux_sym_def_type_statement_token7] = ACTIONS(4030), + [aux_sym_def_type_statement_token8] = ACTIONS(4030), + [aux_sym_def_type_statement_token9] = ACTIONS(4030), + [aux_sym_def_type_statement_token10] = ACTIONS(4030), + [aux_sym_def_type_statement_token11] = ACTIONS(4030), + [aux_sym_def_type_statement_token12] = ACTIONS(4030), + [aux_sym_def_type_statement_token13] = ACTIONS(4030), + [aux_sym_def_type_statement_token14] = ACTIONS(4030), + [aux_sym_call_statement_token1] = ACTIONS(4030), + [sym__ambiguous_call_statement] = ACTIONS(4030), + [aux_sym_addressof_expression_token1] = ACTIONS(4030), + [aux_sym_type_of_expression_token1] = ACTIONS(4030), + [aux_sym_unary_expression_token1] = ACTIONS(4030), + [sym_string_literal] = ACTIONS(4028), + [sym_number_literal] = ACTIONS(4028), + [aux_sym_boolean_literal_token1] = ACTIONS(4030), + [aux_sym_boolean_literal_token2] = ACTIONS(4030), + [sym_nothing_literal] = ACTIONS(4030), + [sym_null_literal] = ACTIONS(4030), + [sym_empty_literal] = ACTIONS(4030), + [sym_date_literal] = ACTIONS(4028), + [anon_sym_POUND] = ACTIONS(4030), + }, + [STATE(1650)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_statement_token2] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token3] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1651)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1652)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6408), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6406), + [anon_sym_SLASH] = ACTIONS(6408), + [anon_sym_BSLASH] = ACTIONS(6410), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6412), + [anon_sym_PLUS] = ACTIONS(6414), + [anon_sym_DASH] = ACTIONS(6416), + [anon_sym_AMP] = ACTIONS(6418), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1653)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1654)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6123), + [anon_sym_BANG] = ACTIONS(6125), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1655)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_array_bound_token1] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_while_statement_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1656)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1657)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1658)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1659)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_while_statement_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1660)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6091), + [anon_sym_BANG] = ACTIONS(6093), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1661)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_array_bound_token1] = ACTIONS(4509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_while_statement_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1662)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1663)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_while_statement_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1664)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_while_statement_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token3] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1665)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_while_statement_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token3] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1666)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_while_statement_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token3] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1667)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token3] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1668)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_while_statement_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token3] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6442), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1669)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_while_statement_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1670)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_while_statement_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1671)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6444), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_while_statement_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token3] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6442), + [anon_sym_SLASH] = ACTIONS(6444), + [anon_sym_BSLASH] = ACTIONS(6446), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6448), + [anon_sym_PLUS] = ACTIONS(6450), + [anon_sym_DASH] = ACTIONS(6452), + [anon_sym_AMP] = ACTIONS(6454), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6456), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6458), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6460), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6462), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6464), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1672)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_statement_token2] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token3] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1673)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6444), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_while_statement_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6442), + [anon_sym_SLASH] = ACTIONS(6444), + [anon_sym_BSLASH] = ACTIONS(6446), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6448), + [anon_sym_PLUS] = ACTIONS(6450), + [anon_sym_DASH] = ACTIONS(6452), + [anon_sym_AMP] = ACTIONS(6454), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1674)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1675)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1676)] = { + [sym_identifier] = ACTIONS(5851), + [sym_newline] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5853), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5851), + [aux_sym_frm_property_statement_token1] = ACTIONS(5851), + [anon_sym_DOT] = ACTIONS(6466), + [anon_sym_BANG] = ACTIONS(6468), + [aux_sym__attribute_identifier_token1] = ACTIONS(5851), + [aux_sym_option_statement_token3] = ACTIONS(5851), + [aux_sym_type_declaration_token1] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5851), + [aux_sym_enum_declaration_token1] = ACTIONS(5851), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5851), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5851), + [aux_sym_declare_function_statement_token1] = ACTIONS(5851), + [aux_sym_preprocessor_const_token1] = ACTIONS(5851), + [aux_sym__property_get_header_token1] = ACTIONS(5851), + [aux_sym_event_declaration_token1] = ACTIONS(5851), + [sym_static_modifier] = ACTIONS(5851), + [sym__dim_keyword] = ACTIONS(5851), + [sym__redim_keyword] = ACTIONS(5851), + [aux_sym_get_accessor_token1] = ACTIONS(5851), + [aux_sym_set_accessor_token1] = ACTIONS(5851), + [anon_sym_COMMA] = ACTIONS(5853), + [aux_sym_const_declaration_token1] = ACTIONS(5851), + [anon_sym_LPAREN] = ACTIONS(5853), + [aux_sym_as_type_clause_token2] = ACTIONS(5851), + [anon_sym_STAR] = ACTIONS(5859), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5851), + [aux_sym_visibility_token1] = ACTIONS(5851), + [aux_sym_visibility_token2] = ACTIONS(5851), + [aux_sym_elseif_fragment_token1] = ACTIONS(5851), + [aux_sym_else_fragment_token1] = ACTIONS(5851), + [aux_sym_select_statement_token1] = ACTIONS(5851), + [aux_sym__for_header_token1] = ACTIONS(5851), + [aux_sym_do_statement_token1] = ACTIONS(5851), + [aux_sym_do_condition_token1] = ACTIONS(5851), + [aux_sym_with_statement_token1] = ACTIONS(5851), + [aux_sym_exit_statement_token1] = ACTIONS(5851), + [sym_end_statement] = ACTIONS(5853), + [aux_sym_on_goto_statement_token1] = ACTIONS(5851), + [aux_sym_on_goto_statement_token2] = ACTIONS(5851), + [aux_sym_on_error_statement_token2] = ACTIONS(5851), + [sym__ambiguous_redim_statement] = ACTIONS(5853), + [aux_sym_erase_statement_token1] = ACTIONS(5851), + [aux_sym_open_statement_token1] = ACTIONS(5851), + [aux_sym_file_mode_token2] = ACTIONS(5851), + [aux_sym_file_access_token2] = ACTIONS(5851), + [aux_sym_file_lock_token2] = ACTIONS(5851), + [aux_sym_print_statement_token1] = ACTIONS(5851), + [anon_sym_CARET] = ACTIONS(5859), + [anon_sym_SLASH] = ACTIONS(5859), + [anon_sym_BSLASH] = ACTIONS(5859), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5861), + [anon_sym_PLUS] = ACTIONS(5863), + [anon_sym_DASH] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5861), + [anon_sym_SEMI] = ACTIONS(5853), + [anon_sym_QMARK] = ACTIONS(5853), + [aux_sym_close_statement_token1] = ACTIONS(5851), + [aux_sym_put_statement_token1] = ACTIONS(5851), + [aux_sym_unlock_statement_token1] = ACTIONS(5851), + [aux_sym_seek_statement_token1] = ACTIONS(5851), + [sym_reset_statement] = ACTIONS(5851), + [aux_sym_raise_event_statement_token1] = ACTIONS(5851), + [sym_stop_statement] = ACTIONS(5851), + [sym_beep_statement] = ACTIONS(5851), + [aux_sym_unload_statement_token1] = ACTIONS(5851), + [aux_sym_def_type_statement_token1] = ACTIONS(5851), + [aux_sym_def_type_statement_token2] = ACTIONS(5851), + [aux_sym_def_type_statement_token3] = ACTIONS(5851), + [aux_sym_def_type_statement_token4] = ACTIONS(5851), + [aux_sym_def_type_statement_token5] = ACTIONS(5851), + [aux_sym_def_type_statement_token6] = ACTIONS(5851), + [aux_sym_def_type_statement_token7] = ACTIONS(5851), + [aux_sym_def_type_statement_token8] = ACTIONS(5851), + [aux_sym_def_type_statement_token9] = ACTIONS(5851), + [aux_sym_def_type_statement_token10] = ACTIONS(5851), + [aux_sym_def_type_statement_token11] = ACTIONS(5851), + [aux_sym_def_type_statement_token12] = ACTIONS(5851), + [aux_sym_def_type_statement_token13] = ACTIONS(5851), + [aux_sym_def_type_statement_token14] = ACTIONS(5851), + [aux_sym_call_statement_token1] = ACTIONS(5851), + [sym__ambiguous_call_statement] = ACTIONS(5851), + [aux_sym_addressof_expression_token1] = ACTIONS(5851), + [aux_sym_type_of_expression_token1] = ACTIONS(5851), + [aux_sym_unary_expression_token1] = ACTIONS(5851), + [sym_string_literal] = ACTIONS(5853), + [sym_number_literal] = ACTIONS(5853), + [aux_sym_boolean_literal_token1] = ACTIONS(5851), + [aux_sym_boolean_literal_token2] = ACTIONS(5851), + [sym_nothing_literal] = ACTIONS(5851), + [sym_null_literal] = ACTIONS(5851), + [sym_empty_literal] = ACTIONS(5851), + [sym_date_literal] = ACTIONS(5853), + [anon_sym_POUND] = ACTIONS(5851), + }, + [STATE(1677)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1678)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_while_statement_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token3] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1679)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1680)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1681)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1682)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4412), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_declaration_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_enum_declaration_token1] = ACTIONS(4410), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4410), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4410), + [aux_sym_declare_function_statement_token1] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [aux_sym__property_get_header_token1] = ACTIONS(4410), + [aux_sym_event_declaration_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4412), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(5635), + [anon_sym_DASH] = ACTIONS(5638), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(1683)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_statement_token2] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token3] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1684)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6484), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6486), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6488), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6490), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6492), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1685)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6442), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1686)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6442), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1687)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6444), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6442), + [anon_sym_SLASH] = ACTIONS(6444), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1688)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6444), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6442), + [anon_sym_SLASH] = ACTIONS(6444), + [anon_sym_BSLASH] = ACTIONS(6446), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1689)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6444), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6442), + [anon_sym_SLASH] = ACTIONS(6444), + [anon_sym_BSLASH] = ACTIONS(6446), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6448), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1690)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6444), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6442), + [anon_sym_SLASH] = ACTIONS(6444), + [anon_sym_BSLASH] = ACTIONS(6446), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6448), + [anon_sym_PLUS] = ACTIONS(6450), + [anon_sym_DASH] = ACTIONS(6452), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1691)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6444), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6442), + [anon_sym_SLASH] = ACTIONS(6444), + [anon_sym_BSLASH] = ACTIONS(6446), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6448), + [anon_sym_PLUS] = ACTIONS(6450), + [anon_sym_DASH] = ACTIONS(6452), + [anon_sym_AMP] = ACTIONS(6454), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1692)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6444), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6442), + [anon_sym_SLASH] = ACTIONS(6444), + [anon_sym_BSLASH] = ACTIONS(6446), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6448), + [anon_sym_PLUS] = ACTIONS(6450), + [anon_sym_DASH] = ACTIONS(6452), + [anon_sym_AMP] = ACTIONS(6454), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6456), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1693)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6444), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6442), + [anon_sym_SLASH] = ACTIONS(6444), + [anon_sym_BSLASH] = ACTIONS(6446), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6448), + [anon_sym_PLUS] = ACTIONS(6450), + [anon_sym_DASH] = ACTIONS(6452), + [anon_sym_AMP] = ACTIONS(6454), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6456), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6458), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1694)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6444), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6442), + [anon_sym_SLASH] = ACTIONS(6444), + [anon_sym_BSLASH] = ACTIONS(6446), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6448), + [anon_sym_PLUS] = ACTIONS(6450), + [anon_sym_DASH] = ACTIONS(6452), + [anon_sym_AMP] = ACTIONS(6454), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6456), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6458), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6460), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1695)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6444), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6442), + [anon_sym_SLASH] = ACTIONS(6444), + [anon_sym_BSLASH] = ACTIONS(6446), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6448), + [anon_sym_PLUS] = ACTIONS(6450), + [anon_sym_DASH] = ACTIONS(6452), + [anon_sym_AMP] = ACTIONS(6454), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6456), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6458), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6460), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6462), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1696)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_statement_token2] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token3] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1697)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_declaration_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_enum_declaration_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4441), + [aux_sym_declare_function_statement_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [aux_sym__property_get_header_token1] = ACTIONS(4441), + [aux_sym_event_declaration_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1698)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_statement_token2] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1699)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_declaration_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_enum_declaration_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4451), + [aux_sym_declare_function_statement_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [aux_sym__property_get_header_token1] = ACTIONS(4451), + [aux_sym_event_declaration_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1700)] = { + [sym_identifier] = ACTIONS(5766), + [sym_newline] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5766), + [aux_sym_frm_property_statement_token1] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5766), + [anon_sym_BANG] = ACTIONS(5768), + [aux_sym__attribute_identifier_token1] = ACTIONS(5766), + [aux_sym_option_statement_token3] = ACTIONS(5766), + [aux_sym_type_declaration_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5766), + [aux_sym_enum_declaration_token1] = ACTIONS(5766), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5766), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5766), + [aux_sym_declare_function_statement_token1] = ACTIONS(5766), + [aux_sym_preprocessor_const_token1] = ACTIONS(5766), + [aux_sym__property_get_header_token1] = ACTIONS(5766), + [aux_sym_event_declaration_token1] = ACTIONS(5766), + [sym_static_modifier] = ACTIONS(5766), + [sym__dim_keyword] = ACTIONS(5766), + [sym__redim_keyword] = ACTIONS(5766), + [aux_sym_get_accessor_token1] = ACTIONS(5766), + [aux_sym_set_accessor_token1] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [aux_sym_const_declaration_token1] = ACTIONS(5766), + [anon_sym_LPAREN] = ACTIONS(5768), + [aux_sym_as_type_clause_token2] = ACTIONS(5766), + [anon_sym_STAR] = ACTIONS(5768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5766), + [aux_sym_visibility_token1] = ACTIONS(5766), + [aux_sym_visibility_token2] = ACTIONS(5766), + [aux_sym_elseif_fragment_token1] = ACTIONS(5766), + [aux_sym_else_fragment_token1] = ACTIONS(5766), + [aux_sym_select_statement_token1] = ACTIONS(5766), + [aux_sym__for_header_token1] = ACTIONS(5766), + [aux_sym_do_statement_token1] = ACTIONS(5766), + [aux_sym_do_condition_token1] = ACTIONS(5766), + [aux_sym_with_statement_token1] = ACTIONS(5766), + [aux_sym_exit_statement_token1] = ACTIONS(5766), + [sym_end_statement] = ACTIONS(5768), + [aux_sym_on_goto_statement_token1] = ACTIONS(5766), + [aux_sym_on_goto_statement_token2] = ACTIONS(5766), + [aux_sym_on_error_statement_token2] = ACTIONS(5766), + [sym__ambiguous_redim_statement] = ACTIONS(5768), + [aux_sym_erase_statement_token1] = ACTIONS(5766), + [aux_sym_open_statement_token1] = ACTIONS(5766), + [aux_sym_file_mode_token2] = ACTIONS(5766), + [aux_sym_file_access_token2] = ACTIONS(5766), + [aux_sym_file_lock_token2] = ACTIONS(5766), + [aux_sym_print_statement_token1] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_BSLASH] = ACTIONS(5768), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5766), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5768), + [aux_sym_close_statement_token1] = ACTIONS(5766), + [aux_sym_put_statement_token1] = ACTIONS(5766), + [aux_sym_unlock_statement_token1] = ACTIONS(5766), + [aux_sym_seek_statement_token1] = ACTIONS(5766), + [sym_reset_statement] = ACTIONS(5766), + [aux_sym_raise_event_statement_token1] = ACTIONS(5766), + [sym_stop_statement] = ACTIONS(5766), + [sym_beep_statement] = ACTIONS(5766), + [aux_sym_unload_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token2] = ACTIONS(5766), + [aux_sym_def_type_statement_token3] = ACTIONS(5766), + [aux_sym_def_type_statement_token4] = ACTIONS(5766), + [aux_sym_def_type_statement_token5] = ACTIONS(5766), + [aux_sym_def_type_statement_token6] = ACTIONS(5766), + [aux_sym_def_type_statement_token7] = ACTIONS(5766), + [aux_sym_def_type_statement_token8] = ACTIONS(5766), + [aux_sym_def_type_statement_token9] = ACTIONS(5766), + [aux_sym_def_type_statement_token10] = ACTIONS(5766), + [aux_sym_def_type_statement_token11] = ACTIONS(5766), + [aux_sym_def_type_statement_token12] = ACTIONS(5766), + [aux_sym_def_type_statement_token13] = ACTIONS(5766), + [aux_sym_def_type_statement_token14] = ACTIONS(5766), + [aux_sym_call_statement_token1] = ACTIONS(5766), + [sym__ambiguous_call_statement] = ACTIONS(5766), + [aux_sym_addressof_expression_token1] = ACTIONS(5766), + [aux_sym_type_of_expression_token1] = ACTIONS(5766), + [aux_sym_unary_expression_token1] = ACTIONS(5766), + [sym_string_literal] = ACTIONS(5768), + [sym_number_literal] = ACTIONS(5768), + [aux_sym_boolean_literal_token1] = ACTIONS(5766), + [aux_sym_boolean_literal_token2] = ACTIONS(5766), + [sym_nothing_literal] = ACTIONS(5766), + [sym_null_literal] = ACTIONS(5766), + [sym_empty_literal] = ACTIONS(5766), + [sym_date_literal] = ACTIONS(5768), + [anon_sym_POUND] = ACTIONS(5766), + }, + [STATE(1701)] = { + [sym_identifier] = ACTIONS(5766), + [sym_newline] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5766), + [aux_sym_frm_property_statement_token1] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5766), + [anon_sym_BANG] = ACTIONS(5768), + [aux_sym__attribute_identifier_token1] = ACTIONS(5766), + [aux_sym_option_statement_token3] = ACTIONS(5766), + [aux_sym_type_declaration_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5766), + [aux_sym_enum_declaration_token1] = ACTIONS(5766), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5766), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5766), + [aux_sym_declare_function_statement_token1] = ACTIONS(5766), + [aux_sym_preprocessor_const_token1] = ACTIONS(5766), + [aux_sym__property_get_header_token1] = ACTIONS(5766), + [aux_sym_event_declaration_token1] = ACTIONS(5766), + [sym_static_modifier] = ACTIONS(5766), + [sym__dim_keyword] = ACTIONS(5766), + [sym__redim_keyword] = ACTIONS(5766), + [aux_sym_get_accessor_token1] = ACTIONS(5766), + [aux_sym_set_accessor_token1] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [aux_sym_const_declaration_token1] = ACTIONS(5766), + [anon_sym_LPAREN] = ACTIONS(5768), + [aux_sym_as_type_clause_token2] = ACTIONS(5766), + [anon_sym_STAR] = ACTIONS(5768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5766), + [aux_sym_visibility_token1] = ACTIONS(5766), + [aux_sym_visibility_token2] = ACTIONS(5766), + [aux_sym_elseif_fragment_token1] = ACTIONS(5766), + [aux_sym_else_fragment_token1] = ACTIONS(5766), + [aux_sym_select_statement_token1] = ACTIONS(5766), + [aux_sym__for_header_token1] = ACTIONS(5766), + [aux_sym_do_statement_token1] = ACTIONS(5766), + [aux_sym_do_condition_token1] = ACTIONS(5766), + [aux_sym_with_statement_token1] = ACTIONS(5766), + [aux_sym_exit_statement_token1] = ACTIONS(5766), + [sym_end_statement] = ACTIONS(5768), + [aux_sym_on_goto_statement_token1] = ACTIONS(5766), + [aux_sym_on_goto_statement_token2] = ACTIONS(5766), + [aux_sym_on_error_statement_token2] = ACTIONS(5766), + [sym__ambiguous_redim_statement] = ACTIONS(5768), + [aux_sym_erase_statement_token1] = ACTIONS(5766), + [aux_sym_open_statement_token1] = ACTIONS(5766), + [aux_sym_file_mode_token2] = ACTIONS(5766), + [aux_sym_file_access_token2] = ACTIONS(5766), + [aux_sym_file_lock_token2] = ACTIONS(5766), + [aux_sym_print_statement_token1] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_BSLASH] = ACTIONS(5768), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5766), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5768), + [aux_sym_close_statement_token1] = ACTIONS(5766), + [aux_sym_put_statement_token1] = ACTIONS(5766), + [aux_sym_unlock_statement_token1] = ACTIONS(5766), + [aux_sym_seek_statement_token1] = ACTIONS(5766), + [sym_reset_statement] = ACTIONS(5766), + [aux_sym_raise_event_statement_token1] = ACTIONS(5766), + [sym_stop_statement] = ACTIONS(5766), + [sym_beep_statement] = ACTIONS(5766), + [aux_sym_unload_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token2] = ACTIONS(5766), + [aux_sym_def_type_statement_token3] = ACTIONS(5766), + [aux_sym_def_type_statement_token4] = ACTIONS(5766), + [aux_sym_def_type_statement_token5] = ACTIONS(5766), + [aux_sym_def_type_statement_token6] = ACTIONS(5766), + [aux_sym_def_type_statement_token7] = ACTIONS(5766), + [aux_sym_def_type_statement_token8] = ACTIONS(5766), + [aux_sym_def_type_statement_token9] = ACTIONS(5766), + [aux_sym_def_type_statement_token10] = ACTIONS(5766), + [aux_sym_def_type_statement_token11] = ACTIONS(5766), + [aux_sym_def_type_statement_token12] = ACTIONS(5766), + [aux_sym_def_type_statement_token13] = ACTIONS(5766), + [aux_sym_def_type_statement_token14] = ACTIONS(5766), + [aux_sym_call_statement_token1] = ACTIONS(5766), + [sym__ambiguous_call_statement] = ACTIONS(5766), + [aux_sym_addressof_expression_token1] = ACTIONS(5766), + [aux_sym_type_of_expression_token1] = ACTIONS(5766), + [aux_sym_unary_expression_token1] = ACTIONS(5766), + [sym_string_literal] = ACTIONS(5768), + [sym_number_literal] = ACTIONS(5768), + [aux_sym_boolean_literal_token1] = ACTIONS(5766), + [aux_sym_boolean_literal_token2] = ACTIONS(5766), + [sym_nothing_literal] = ACTIONS(5766), + [sym_null_literal] = ACTIONS(5766), + [sym_empty_literal] = ACTIONS(5766), + [sym_date_literal] = ACTIONS(5768), + [anon_sym_POUND] = ACTIONS(5766), + }, + [STATE(1702)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_statement_token2] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token3] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1703)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_statement_token2] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1704)] = { + [sym_identifier] = ACTIONS(4759), + [sym_newline] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4761), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4759), + [aux_sym_frm_property_statement_token1] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4761), + [aux_sym__attribute_identifier_token1] = ACTIONS(4759), + [aux_sym_option_statement_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4759), + [aux_sym_preprocessor_const_token1] = ACTIONS(4759), + [sym_static_modifier] = ACTIONS(4759), + [sym__dim_keyword] = ACTIONS(4759), + [sym__redim_keyword] = ACTIONS(4759), + [aux_sym_get_accessor_token1] = ACTIONS(4759), + [aux_sym_set_accessor_token1] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [aux_sym_const_declaration_token1] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4763), + [aux_sym_as_type_clause_token2] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4759), + [aux_sym_visibility_token1] = ACTIONS(4759), + [aux_sym_visibility_token2] = ACTIONS(4759), + [aux_sym_elseif_fragment_token1] = ACTIONS(4759), + [aux_sym_else_fragment_token1] = ACTIONS(4759), + [aux_sym_select_statement_token1] = ACTIONS(4759), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4759), + [aux_sym_do_statement_token1] = ACTIONS(4759), + [aux_sym_do_condition_token1] = ACTIONS(4759), + [aux_sym_with_statement_token1] = ACTIONS(4759), + [aux_sym_exit_statement_token1] = ACTIONS(4759), + [sym_end_statement] = ACTIONS(4761), + [aux_sym_on_goto_statement_token1] = ACTIONS(4759), + [aux_sym_on_goto_statement_token2] = ACTIONS(4759), + [aux_sym_on_error_statement_token2] = ACTIONS(4759), + [sym__ambiguous_redim_statement] = ACTIONS(4761), + [aux_sym_erase_statement_token1] = ACTIONS(4759), + [aux_sym_open_statement_token1] = ACTIONS(4759), + [aux_sym_file_mode_token2] = ACTIONS(4759), + [aux_sym_file_access_token2] = ACTIONS(4759), + [aux_sym_file_lock_token2] = ACTIONS(4759), + [aux_sym_print_statement_token1] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_QMARK] = ACTIONS(4761), + [aux_sym_close_statement_token1] = ACTIONS(4759), + [aux_sym_put_statement_token1] = ACTIONS(4759), + [aux_sym_unlock_statement_token1] = ACTIONS(4759), + [aux_sym_seek_statement_token1] = ACTIONS(4759), + [sym_reset_statement] = ACTIONS(4759), + [aux_sym_raise_event_statement_token1] = ACTIONS(4759), + [sym_stop_statement] = ACTIONS(4759), + [sym_beep_statement] = ACTIONS(4759), + [aux_sym_unload_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token2] = ACTIONS(4759), + [aux_sym_def_type_statement_token3] = ACTIONS(4759), + [aux_sym_def_type_statement_token4] = ACTIONS(4759), + [aux_sym_def_type_statement_token5] = ACTIONS(4759), + [aux_sym_def_type_statement_token6] = ACTIONS(4759), + [aux_sym_def_type_statement_token7] = ACTIONS(4759), + [aux_sym_def_type_statement_token8] = ACTIONS(4759), + [aux_sym_def_type_statement_token9] = ACTIONS(4759), + [aux_sym_def_type_statement_token10] = ACTIONS(4759), + [aux_sym_def_type_statement_token11] = ACTIONS(4759), + [aux_sym_def_type_statement_token12] = ACTIONS(4759), + [aux_sym_def_type_statement_token13] = ACTIONS(4759), + [aux_sym_def_type_statement_token14] = ACTIONS(4759), + [aux_sym_call_statement_token1] = ACTIONS(4759), + [sym__ambiguous_call_statement] = ACTIONS(4759), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4759), + [aux_sym_type_of_expression_token1] = ACTIONS(4759), + [aux_sym_unary_expression_token1] = ACTIONS(4759), + [sym_string_literal] = ACTIONS(4761), + [sym_number_literal] = ACTIONS(4761), + [aux_sym_boolean_literal_token1] = ACTIONS(4759), + [aux_sym_boolean_literal_token2] = ACTIONS(4759), + [sym_nothing_literal] = ACTIONS(4759), + [sym_null_literal] = ACTIONS(4759), + [sym_empty_literal] = ACTIONS(4759), + [sym_date_literal] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(4759), + }, + [STATE(1705)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token3] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1706)] = { + [sym_identifier] = ACTIONS(4759), + [sym_newline] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4761), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4759), + [aux_sym_frm_property_statement_token1] = ACTIONS(4759), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4759), + [anon_sym_BANG] = ACTIONS(4761), + [aux_sym__attribute_identifier_token1] = ACTIONS(4759), + [aux_sym_option_statement_token3] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4759), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4759), + [aux_sym_preprocessor_const_token1] = ACTIONS(4759), + [sym_static_modifier] = ACTIONS(4759), + [sym__dim_keyword] = ACTIONS(4759), + [sym__redim_keyword] = ACTIONS(4759), + [aux_sym_get_accessor_token1] = ACTIONS(4759), + [aux_sym_set_accessor_token1] = ACTIONS(4759), + [anon_sym_COMMA] = ACTIONS(4761), + [aux_sym_const_declaration_token1] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4761), + [aux_sym_as_type_clause_token2] = ACTIONS(4759), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4759), + [aux_sym_visibility_token1] = ACTIONS(4759), + [aux_sym_visibility_token2] = ACTIONS(4759), + [aux_sym_elseif_fragment_token1] = ACTIONS(4759), + [aux_sym_else_fragment_token1] = ACTIONS(4759), + [aux_sym_select_statement_token1] = ACTIONS(4759), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4759), + [aux_sym_do_statement_token1] = ACTIONS(4759), + [aux_sym_do_condition_token1] = ACTIONS(4759), + [aux_sym_with_statement_token1] = ACTIONS(4759), + [aux_sym_exit_statement_token1] = ACTIONS(4759), + [sym_end_statement] = ACTIONS(4761), + [aux_sym_on_goto_statement_token1] = ACTIONS(4759), + [aux_sym_on_goto_statement_token2] = ACTIONS(4759), + [aux_sym_on_error_statement_token2] = ACTIONS(4759), + [sym__ambiguous_redim_statement] = ACTIONS(4761), + [aux_sym_erase_statement_token1] = ACTIONS(4759), + [aux_sym_open_statement_token1] = ACTIONS(4759), + [aux_sym_file_mode_token2] = ACTIONS(4759), + [aux_sym_file_access_token2] = ACTIONS(4759), + [aux_sym_file_lock_token2] = ACTIONS(4759), + [aux_sym_print_statement_token1] = ACTIONS(4759), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4769), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4761), + [anon_sym_QMARK] = ACTIONS(4761), + [aux_sym_close_statement_token1] = ACTIONS(4759), + [aux_sym_put_statement_token1] = ACTIONS(4759), + [aux_sym_unlock_statement_token1] = ACTIONS(4759), + [aux_sym_seek_statement_token1] = ACTIONS(4759), + [sym_reset_statement] = ACTIONS(4759), + [aux_sym_raise_event_statement_token1] = ACTIONS(4759), + [sym_stop_statement] = ACTIONS(4759), + [sym_beep_statement] = ACTIONS(4759), + [aux_sym_unload_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token1] = ACTIONS(4759), + [aux_sym_def_type_statement_token2] = ACTIONS(4759), + [aux_sym_def_type_statement_token3] = ACTIONS(4759), + [aux_sym_def_type_statement_token4] = ACTIONS(4759), + [aux_sym_def_type_statement_token5] = ACTIONS(4759), + [aux_sym_def_type_statement_token6] = ACTIONS(4759), + [aux_sym_def_type_statement_token7] = ACTIONS(4759), + [aux_sym_def_type_statement_token8] = ACTIONS(4759), + [aux_sym_def_type_statement_token9] = ACTIONS(4759), + [aux_sym_def_type_statement_token10] = ACTIONS(4759), + [aux_sym_def_type_statement_token11] = ACTIONS(4759), + [aux_sym_def_type_statement_token12] = ACTIONS(4759), + [aux_sym_def_type_statement_token13] = ACTIONS(4759), + [aux_sym_def_type_statement_token14] = ACTIONS(4759), + [aux_sym_call_statement_token1] = ACTIONS(4759), + [sym__ambiguous_call_statement] = ACTIONS(4759), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4759), + [aux_sym_type_of_expression_token1] = ACTIONS(4759), + [aux_sym_unary_expression_token1] = ACTIONS(4759), + [sym_string_literal] = ACTIONS(4761), + [sym_number_literal] = ACTIONS(4761), + [aux_sym_boolean_literal_token1] = ACTIONS(4759), + [aux_sym_boolean_literal_token2] = ACTIONS(4759), + [sym_nothing_literal] = ACTIONS(4759), + [sym_null_literal] = ACTIONS(4759), + [sym_empty_literal] = ACTIONS(4759), + [sym_date_literal] = ACTIONS(4761), + [anon_sym_POUND] = ACTIONS(4759), + }, + [STATE(1707)] = { + [sym_argument_list] = STATE(2100), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6494), + [anon_sym_BANG] = ACTIONS(6496), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(6498), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1708)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1709)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1710)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1711)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1712)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_while_statement_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1713)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_select_statement_token2] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1714)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6192), + [anon_sym_BANG] = ACTIONS(6194), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_while_statement_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1715)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1716)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1717)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1718)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_while_statement_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token3] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1719)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_array_bound_token1] = ACTIONS(4447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_select_statement_token2] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1720)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1721)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1722)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token3] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1723)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token3] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1724)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1725)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1726)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_array_bound_token1] = ACTIONS(4477), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_select_statement_token2] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1727)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1728)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1729)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1730)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1731)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1732)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1733)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1734)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1735)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1736)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6254), + [aux_sym_array_bound_token1] = ACTIONS(4647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_statement_token2] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_BSLASH] = ACTIONS(6256), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6264), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1737)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token3] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1738)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_array_bound_token1] = ACTIONS(4485), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_select_statement_token2] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1739)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_statement_token2] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token3] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(1740)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_statement_token2] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token3] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1741)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_statement_token2] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token3] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(1742)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1743)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_array_bound_token1] = ACTIONS(4441), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_select_statement_token2] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6500), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1744)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_select_statement_token2] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1745)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_array_bound_token1] = ACTIONS(4447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1746)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_select_statement_token2] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1747)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6502), + [aux_sym_array_bound_token1] = ACTIONS(4451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_select_statement_token2] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6500), + [anon_sym_SLASH] = ACTIONS(6502), + [anon_sym_BSLASH] = ACTIONS(6504), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6506), + [anon_sym_PLUS] = ACTIONS(6508), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_AMP] = ACTIONS(6512), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6514), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6516), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6518), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6520), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6522), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1748)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_statement_token2] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token3] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1749)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_array_bound_token1] = ACTIONS(4477), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1750)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_array_bound_token1] = ACTIONS(4485), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1751)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1752), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(6524), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1752)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1757), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_declaration_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_enum_declaration_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4375), + [aux_sym_declare_function_statement_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [aux_sym__property_get_header_token1] = ACTIONS(4375), + [aux_sym_event_declaration_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token3] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(1753)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1754)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_array_bound_token1] = ACTIONS(4441), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6526), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1755)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6502), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_select_statement_token2] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6500), + [anon_sym_SLASH] = ACTIONS(6502), + [anon_sym_BSLASH] = ACTIONS(6504), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6506), + [anon_sym_PLUS] = ACTIONS(6508), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_AMP] = ACTIONS(6512), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1756)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6528), + [aux_sym_array_bound_token1] = ACTIONS(4451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6526), + [anon_sym_SLASH] = ACTIONS(6528), + [anon_sym_BSLASH] = ACTIONS(6530), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6532), + [anon_sym_PLUS] = ACTIONS(6534), + [anon_sym_DASH] = ACTIONS(6536), + [anon_sym_AMP] = ACTIONS(6538), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6540), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6542), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6544), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6546), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6548), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1757)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1757), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1758)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1759)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1760)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_array_bound_token1] = ACTIONS(4589), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_select_statement_token2] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1761)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1762)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_declaration_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_enum_declaration_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5809), + [aux_sym_declare_function_statement_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [aux_sym__property_get_header_token1] = ACTIONS(5809), + [aux_sym_event_declaration_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(1763)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1764)] = { + [sym_identifier] = ACTIONS(4749), + [sym_newline] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4749), + [aux_sym_frm_property_statement_token1] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_BANG] = ACTIONS(4751), + [aux_sym__attribute_identifier_token1] = ACTIONS(4749), + [aux_sym_option_statement_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4749), + [aux_sym_preprocessor_const_token1] = ACTIONS(4749), + [sym_static_modifier] = ACTIONS(4749), + [sym__dim_keyword] = ACTIONS(4749), + [sym__redim_keyword] = ACTIONS(4749), + [aux_sym_get_accessor_token1] = ACTIONS(4749), + [aux_sym_set_accessor_token1] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4751), + [aux_sym_const_declaration_token1] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4751), + [aux_sym_as_type_clause_token2] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4749), + [aux_sym_visibility_token1] = ACTIONS(4749), + [aux_sym_visibility_token2] = ACTIONS(4749), + [aux_sym_elseif_fragment_token1] = ACTIONS(4749), + [aux_sym_else_fragment_token1] = ACTIONS(4749), + [aux_sym_select_statement_token1] = ACTIONS(4749), + [aux_sym_case_expression_token1] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_GT] = ACTIONS(4751), + [aux_sym__for_header_token1] = ACTIONS(4749), + [aux_sym_do_statement_token1] = ACTIONS(4749), + [aux_sym_do_condition_token1] = ACTIONS(4749), + [aux_sym_with_statement_token1] = ACTIONS(4749), + [aux_sym_exit_statement_token1] = ACTIONS(4749), + [sym_end_statement] = ACTIONS(4751), + [aux_sym_on_goto_statement_token1] = ACTIONS(4749), + [aux_sym_on_goto_statement_token2] = ACTIONS(4749), + [aux_sym_on_error_statement_token2] = ACTIONS(4749), + [sym__ambiguous_redim_statement] = ACTIONS(4751), + [aux_sym_erase_statement_token1] = ACTIONS(4749), + [aux_sym_open_statement_token1] = ACTIONS(4749), + [aux_sym_file_mode_token2] = ACTIONS(4749), + [aux_sym_file_access_token2] = ACTIONS(4749), + [aux_sym_file_lock_token2] = ACTIONS(4749), + [aux_sym_print_statement_token1] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_BSLASH] = ACTIONS(4751), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [aux_sym_close_statement_token1] = ACTIONS(4749), + [aux_sym_put_statement_token1] = ACTIONS(4749), + [aux_sym_unlock_statement_token1] = ACTIONS(4749), + [aux_sym_seek_statement_token1] = ACTIONS(4749), + [sym_reset_statement] = ACTIONS(4749), + [aux_sym_raise_event_statement_token1] = ACTIONS(4749), + [sym_stop_statement] = ACTIONS(4749), + [sym_beep_statement] = ACTIONS(4749), + [aux_sym_unload_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token2] = ACTIONS(4749), + [aux_sym_def_type_statement_token3] = ACTIONS(4749), + [aux_sym_def_type_statement_token4] = ACTIONS(4749), + [aux_sym_def_type_statement_token5] = ACTIONS(4749), + [aux_sym_def_type_statement_token6] = ACTIONS(4749), + [aux_sym_def_type_statement_token7] = ACTIONS(4749), + [aux_sym_def_type_statement_token8] = ACTIONS(4749), + [aux_sym_def_type_statement_token9] = ACTIONS(4749), + [aux_sym_def_type_statement_token10] = ACTIONS(4749), + [aux_sym_def_type_statement_token11] = ACTIONS(4749), + [aux_sym_def_type_statement_token12] = ACTIONS(4749), + [aux_sym_def_type_statement_token13] = ACTIONS(4749), + [aux_sym_def_type_statement_token14] = ACTIONS(4749), + [aux_sym_call_statement_token1] = ACTIONS(4749), + [sym__ambiguous_call_statement] = ACTIONS(4749), + [aux_sym_comparison_operator_token1] = ACTIONS(4749), + [aux_sym_addressof_expression_token1] = ACTIONS(4749), + [aux_sym_type_of_expression_token1] = ACTIONS(4749), + [aux_sym_unary_expression_token1] = ACTIONS(4749), + [sym_string_literal] = ACTIONS(4751), + [sym_number_literal] = ACTIONS(4751), + [aux_sym_boolean_literal_token1] = ACTIONS(4749), + [aux_sym_boolean_literal_token2] = ACTIONS(4749), + [sym_nothing_literal] = ACTIONS(4749), + [sym_null_literal] = ACTIONS(4749), + [sym_empty_literal] = ACTIONS(4749), + [sym_date_literal] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4749), + }, + [STATE(1765)] = { + [sym_identifier] = ACTIONS(5821), + [sym_newline] = ACTIONS(5823), + [anon_sym_COLON] = ACTIONS(5823), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5821), + [aux_sym_frm_property_statement_token1] = ACTIONS(5821), + [anon_sym_DOT] = ACTIONS(5821), + [anon_sym_BANG] = ACTIONS(5823), + [aux_sym__attribute_identifier_token1] = ACTIONS(5821), + [aux_sym_option_statement_token3] = ACTIONS(5821), + [aux_sym_type_declaration_token1] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5821), + [aux_sym_enum_declaration_token1] = ACTIONS(5821), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5821), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5821), + [aux_sym_declare_function_statement_token1] = ACTIONS(5821), + [aux_sym_preprocessor_const_token1] = ACTIONS(5821), + [aux_sym__property_get_header_token1] = ACTIONS(5821), + [aux_sym_event_declaration_token1] = ACTIONS(5821), + [sym_static_modifier] = ACTIONS(5821), + [sym__dim_keyword] = ACTIONS(5821), + [sym__redim_keyword] = ACTIONS(5821), + [aux_sym_get_accessor_token1] = ACTIONS(5821), + [aux_sym_set_accessor_token1] = ACTIONS(5821), + [anon_sym_COMMA] = ACTIONS(5823), + [aux_sym_const_declaration_token1] = ACTIONS(5821), + [anon_sym_LPAREN] = ACTIONS(5823), + [aux_sym_as_type_clause_token2] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5821), + [aux_sym_visibility_token1] = ACTIONS(5821), + [aux_sym_visibility_token2] = ACTIONS(5821), + [aux_sym_elseif_fragment_token1] = ACTIONS(5821), + [aux_sym_else_fragment_token1] = ACTIONS(5821), + [aux_sym_select_statement_token1] = ACTIONS(5821), + [aux_sym__for_header_token1] = ACTIONS(5821), + [aux_sym_do_statement_token1] = ACTIONS(5821), + [aux_sym_do_condition_token1] = ACTIONS(5821), + [aux_sym_with_statement_token1] = ACTIONS(5821), + [aux_sym_exit_statement_token1] = ACTIONS(5821), + [sym_end_statement] = ACTIONS(5823), + [aux_sym_on_goto_statement_token1] = ACTIONS(5821), + [aux_sym_on_goto_statement_token2] = ACTIONS(5821), + [aux_sym_on_error_statement_token2] = ACTIONS(5821), + [sym__ambiguous_redim_statement] = ACTIONS(5823), + [aux_sym_erase_statement_token1] = ACTIONS(5821), + [aux_sym_open_statement_token1] = ACTIONS(5821), + [aux_sym_file_mode_token2] = ACTIONS(5821), + [aux_sym_file_access_token2] = ACTIONS(5821), + [aux_sym_file_lock_token2] = ACTIONS(5821), + [aux_sym_print_statement_token1] = ACTIONS(5821), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(5823), + [anon_sym_QMARK] = ACTIONS(5823), + [aux_sym_close_statement_token1] = ACTIONS(5821), + [aux_sym_put_statement_token1] = ACTIONS(5821), + [aux_sym_unlock_statement_token1] = ACTIONS(5821), + [aux_sym_seek_statement_token1] = ACTIONS(5821), + [sym_reset_statement] = ACTIONS(5821), + [aux_sym_raise_event_statement_token1] = ACTIONS(5821), + [sym_stop_statement] = ACTIONS(5821), + [sym_beep_statement] = ACTIONS(5821), + [aux_sym_unload_statement_token1] = ACTIONS(5821), + [aux_sym_def_type_statement_token1] = ACTIONS(5821), + [aux_sym_def_type_statement_token2] = ACTIONS(5821), + [aux_sym_def_type_statement_token3] = ACTIONS(5821), + [aux_sym_def_type_statement_token4] = ACTIONS(5821), + [aux_sym_def_type_statement_token5] = ACTIONS(5821), + [aux_sym_def_type_statement_token6] = ACTIONS(5821), + [aux_sym_def_type_statement_token7] = ACTIONS(5821), + [aux_sym_def_type_statement_token8] = ACTIONS(5821), + [aux_sym_def_type_statement_token9] = ACTIONS(5821), + [aux_sym_def_type_statement_token10] = ACTIONS(5821), + [aux_sym_def_type_statement_token11] = ACTIONS(5821), + [aux_sym_def_type_statement_token12] = ACTIONS(5821), + [aux_sym_def_type_statement_token13] = ACTIONS(5821), + [aux_sym_def_type_statement_token14] = ACTIONS(5821), + [aux_sym_call_statement_token1] = ACTIONS(5821), + [sym__ambiguous_call_statement] = ACTIONS(5821), + [aux_sym_addressof_expression_token1] = ACTIONS(5821), + [aux_sym_type_of_expression_token1] = ACTIONS(5821), + [aux_sym_unary_expression_token1] = ACTIONS(5821), + [sym_string_literal] = ACTIONS(5823), + [sym_number_literal] = ACTIONS(5823), + [aux_sym_boolean_literal_token1] = ACTIONS(5821), + [aux_sym_boolean_literal_token2] = ACTIONS(5821), + [sym_nothing_literal] = ACTIONS(5821), + [sym_null_literal] = ACTIONS(5821), + [sym_empty_literal] = ACTIONS(5821), + [sym_date_literal] = ACTIONS(5823), + [anon_sym_POUND] = ACTIONS(5821), + }, + [STATE(1766)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6500), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1767)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6500), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1768)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6502), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6500), + [anon_sym_SLASH] = ACTIONS(6502), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1769)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6502), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6500), + [anon_sym_SLASH] = ACTIONS(6502), + [anon_sym_BSLASH] = ACTIONS(6504), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1770)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6502), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6500), + [anon_sym_SLASH] = ACTIONS(6502), + [anon_sym_BSLASH] = ACTIONS(6504), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6506), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1771)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6502), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6500), + [anon_sym_SLASH] = ACTIONS(6502), + [anon_sym_BSLASH] = ACTIONS(6504), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6506), + [anon_sym_PLUS] = ACTIONS(6508), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1772)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6502), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6500), + [anon_sym_SLASH] = ACTIONS(6502), + [anon_sym_BSLASH] = ACTIONS(6504), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6506), + [anon_sym_PLUS] = ACTIONS(6508), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_AMP] = ACTIONS(6512), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1773)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6502), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6500), + [anon_sym_SLASH] = ACTIONS(6502), + [anon_sym_BSLASH] = ACTIONS(6504), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6506), + [anon_sym_PLUS] = ACTIONS(6508), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_AMP] = ACTIONS(6512), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6514), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1774)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6502), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6500), + [anon_sym_SLASH] = ACTIONS(6502), + [anon_sym_BSLASH] = ACTIONS(6504), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6506), + [anon_sym_PLUS] = ACTIONS(6508), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_AMP] = ACTIONS(6512), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6514), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6516), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1775)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6502), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6500), + [anon_sym_SLASH] = ACTIONS(6502), + [anon_sym_BSLASH] = ACTIONS(6504), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6506), + [anon_sym_PLUS] = ACTIONS(6508), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_AMP] = ACTIONS(6512), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6514), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6516), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6518), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1776)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6502), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6500), + [anon_sym_SLASH] = ACTIONS(6502), + [anon_sym_BSLASH] = ACTIONS(6504), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6506), + [anon_sym_PLUS] = ACTIONS(6508), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_AMP] = ACTIONS(6512), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6514), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6516), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6518), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6520), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1777)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6282), + [aux_sym_array_bound_token1] = ACTIONS(4647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6280), + [anon_sym_SLASH] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6284), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6286), + [anon_sym_PLUS] = ACTIONS(6288), + [anon_sym_DASH] = ACTIONS(6290), + [anon_sym_AMP] = ACTIONS(6292), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1778)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token3] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(1779)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token3] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1780)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token3] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(1781)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_select_statement_token2] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1782)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_array_bound_token1] = ACTIONS(4589), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1783)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_statement_token2] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token3] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1784)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_statement_token2] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1785)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_select_statement_token2] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1786)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_select_statement_token2] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token3] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1787)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6528), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6526), + [anon_sym_SLASH] = ACTIONS(6528), + [anon_sym_BSLASH] = ACTIONS(6530), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6532), + [anon_sym_PLUS] = ACTIONS(6534), + [anon_sym_DASH] = ACTIONS(6536), + [anon_sym_AMP] = ACTIONS(6538), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1788)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_select_statement_token2] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1789)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token3] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1790)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_select_statement_token2] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token3] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1791)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6526), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1792)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6526), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1793)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6528), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6526), + [anon_sym_SLASH] = ACTIONS(6528), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1794)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6528), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6526), + [anon_sym_SLASH] = ACTIONS(6528), + [anon_sym_BSLASH] = ACTIONS(6530), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1795)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6528), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6526), + [anon_sym_SLASH] = ACTIONS(6528), + [anon_sym_BSLASH] = ACTIONS(6530), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6532), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1796)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6528), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6526), + [anon_sym_SLASH] = ACTIONS(6528), + [anon_sym_BSLASH] = ACTIONS(6530), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6532), + [anon_sym_PLUS] = ACTIONS(6534), + [anon_sym_DASH] = ACTIONS(6536), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1797)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6528), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6526), + [anon_sym_SLASH] = ACTIONS(6528), + [anon_sym_BSLASH] = ACTIONS(6530), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6532), + [anon_sym_PLUS] = ACTIONS(6534), + [anon_sym_DASH] = ACTIONS(6536), + [anon_sym_AMP] = ACTIONS(6538), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1798)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6528), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6526), + [anon_sym_SLASH] = ACTIONS(6528), + [anon_sym_BSLASH] = ACTIONS(6530), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6532), + [anon_sym_PLUS] = ACTIONS(6534), + [anon_sym_DASH] = ACTIONS(6536), + [anon_sym_AMP] = ACTIONS(6538), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6540), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1799)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6528), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6526), + [anon_sym_SLASH] = ACTIONS(6528), + [anon_sym_BSLASH] = ACTIONS(6530), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6532), + [anon_sym_PLUS] = ACTIONS(6534), + [anon_sym_DASH] = ACTIONS(6536), + [anon_sym_AMP] = ACTIONS(6538), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6540), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6542), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1800)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6528), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6526), + [anon_sym_SLASH] = ACTIONS(6528), + [anon_sym_BSLASH] = ACTIONS(6530), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6532), + [anon_sym_PLUS] = ACTIONS(6534), + [anon_sym_DASH] = ACTIONS(6536), + [anon_sym_AMP] = ACTIONS(6538), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6540), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6542), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6544), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1801)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6528), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6526), + [anon_sym_SLASH] = ACTIONS(6528), + [anon_sym_BSLASH] = ACTIONS(6530), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6532), + [anon_sym_PLUS] = ACTIONS(6534), + [anon_sym_DASH] = ACTIONS(6536), + [anon_sym_AMP] = ACTIONS(6538), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6540), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6542), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6544), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6546), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1802)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_select_statement_token2] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token3] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1803)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_while_statement_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1804)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1805)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4509), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token3] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1806)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1807)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_select_statement_token2] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token3] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1808)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1809)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token3] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1810)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6555), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_select_statement_token2] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(6555), + [anon_sym_BSLASH] = ACTIONS(6557), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6559), + [anon_sym_PLUS] = ACTIONS(6561), + [anon_sym_DASH] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1811)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1812)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6555), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_select_statement_token2] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token3] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(6555), + [anon_sym_BSLASH] = ACTIONS(6557), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6559), + [anon_sym_PLUS] = ACTIONS(6561), + [anon_sym_DASH] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6567), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6569), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6571), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6573), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6575), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1813)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_while_statement_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token3] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1814)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_while_statement_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1815)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token3] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1816)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token3] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1817)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_select_statement_token2] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1818)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6009), + [anon_sym_BANG] = ACTIONS(6011), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_select_statement_token2] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1819)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_array_bound_token1] = ACTIONS(4437), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_select_statement_token2] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1820)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token3] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6577), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1821)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6579), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6577), + [anon_sym_SLASH] = ACTIONS(6579), + [anon_sym_BSLASH] = ACTIONS(6581), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6583), + [anon_sym_PLUS] = ACTIONS(6585), + [anon_sym_DASH] = ACTIONS(6587), + [anon_sym_AMP] = ACTIONS(6589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1822)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6579), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token3] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6577), + [anon_sym_SLASH] = ACTIONS(6579), + [anon_sym_BSLASH] = ACTIONS(6581), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6583), + [anon_sym_PLUS] = ACTIONS(6585), + [anon_sym_DASH] = ACTIONS(6587), + [anon_sym_AMP] = ACTIONS(6589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6591), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6595), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6599), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1823)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1824)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_select_statement_token2] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token3] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1825)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6018), + [anon_sym_BANG] = ACTIONS(6020), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1826)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_array_bound_token1] = ACTIONS(4509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_select_statement_token2] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1827)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_select_statement_token2] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1828)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_while_statement_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token3] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1829)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_array_bound_token1] = ACTIONS(4437), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1830)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_while_statement_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token3] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1831)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1832)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1833)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1834)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6555), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(6555), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1835)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6555), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(6555), + [anon_sym_BSLASH] = ACTIONS(6557), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1836)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6555), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(6555), + [anon_sym_BSLASH] = ACTIONS(6557), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6559), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1837)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6555), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(6555), + [anon_sym_BSLASH] = ACTIONS(6557), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6559), + [anon_sym_PLUS] = ACTIONS(6561), + [anon_sym_DASH] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1838)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6555), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(6555), + [anon_sym_BSLASH] = ACTIONS(6557), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6559), + [anon_sym_PLUS] = ACTIONS(6561), + [anon_sym_DASH] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1839)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6555), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(6555), + [anon_sym_BSLASH] = ACTIONS(6557), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6559), + [anon_sym_PLUS] = ACTIONS(6561), + [anon_sym_DASH] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6567), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1840)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6555), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(6555), + [anon_sym_BSLASH] = ACTIONS(6557), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6559), + [anon_sym_PLUS] = ACTIONS(6561), + [anon_sym_DASH] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6567), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6569), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1841)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6555), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(6555), + [anon_sym_BSLASH] = ACTIONS(6557), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6559), + [anon_sym_PLUS] = ACTIONS(6561), + [anon_sym_DASH] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6567), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6569), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6571), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1842)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6555), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(6555), + [anon_sym_BSLASH] = ACTIONS(6557), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6559), + [anon_sym_PLUS] = ACTIONS(6561), + [anon_sym_DASH] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6567), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6569), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6571), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6573), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1843)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_while_statement_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token3] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1844)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1845)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token3] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1846)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_while_statement_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token3] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1847)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_while_statement_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1848)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6577), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1849)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6577), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1850)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6579), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6577), + [anon_sym_SLASH] = ACTIONS(6579), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1851)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6579), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6577), + [anon_sym_SLASH] = ACTIONS(6579), + [anon_sym_BSLASH] = ACTIONS(6581), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1852)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6579), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6577), + [anon_sym_SLASH] = ACTIONS(6579), + [anon_sym_BSLASH] = ACTIONS(6581), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6583), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1853)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6579), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6577), + [anon_sym_SLASH] = ACTIONS(6579), + [anon_sym_BSLASH] = ACTIONS(6581), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6583), + [anon_sym_PLUS] = ACTIONS(6585), + [anon_sym_DASH] = ACTIONS(6587), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1854)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6579), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6577), + [anon_sym_SLASH] = ACTIONS(6579), + [anon_sym_BSLASH] = ACTIONS(6581), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6583), + [anon_sym_PLUS] = ACTIONS(6585), + [anon_sym_DASH] = ACTIONS(6587), + [anon_sym_AMP] = ACTIONS(6589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1855)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6579), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6577), + [anon_sym_SLASH] = ACTIONS(6579), + [anon_sym_BSLASH] = ACTIONS(6581), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6583), + [anon_sym_PLUS] = ACTIONS(6585), + [anon_sym_DASH] = ACTIONS(6587), + [anon_sym_AMP] = ACTIONS(6589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6591), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1856)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6579), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6577), + [anon_sym_SLASH] = ACTIONS(6579), + [anon_sym_BSLASH] = ACTIONS(6581), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6583), + [anon_sym_PLUS] = ACTIONS(6585), + [anon_sym_DASH] = ACTIONS(6587), + [anon_sym_AMP] = ACTIONS(6589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6591), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1857)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6579), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6577), + [anon_sym_SLASH] = ACTIONS(6579), + [anon_sym_BSLASH] = ACTIONS(6581), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6583), + [anon_sym_PLUS] = ACTIONS(6585), + [anon_sym_DASH] = ACTIONS(6587), + [anon_sym_AMP] = ACTIONS(6589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6591), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6595), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1858)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6579), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6577), + [anon_sym_SLASH] = ACTIONS(6579), + [anon_sym_BSLASH] = ACTIONS(6581), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6583), + [anon_sym_PLUS] = ACTIONS(6585), + [anon_sym_DASH] = ACTIONS(6587), + [anon_sym_AMP] = ACTIONS(6589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6591), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6595), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1859)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6234), + [aux_sym_array_bound_token1] = ACTIONS(4647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_while_statement_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6236), + [anon_sym_SLASH] = ACTIONS(6234), + [anon_sym_BSLASH] = ACTIONS(6238), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6240), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_DASH] = ACTIONS(6244), + [anon_sym_AMP] = ACTIONS(6246), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1860)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1861)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1862)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1863)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_select_statement_token2] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1864)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6026), + [anon_sym_BANG] = ACTIONS(6028), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_select_statement_token2] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1865)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_select_statement_token2] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token3] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1866)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1867)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_select_statement_token2] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1868)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1869)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1870)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6034), + [anon_sym_BANG] = ACTIONS(6036), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1871)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_array_bound_token1] = ACTIONS(4509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1872)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1873)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token3] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(1874)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_array_bound_token1] = ACTIONS(4625), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_select_statement_token2] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1875)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_select_statement_token2] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1876)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_while_statement_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token3] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(1877)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_while_statement_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token3] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1878)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_while_statement_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token3] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(1879)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1880)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1881)] = { + [sym_identifier] = ACTIONS(5841), + [sym_newline] = ACTIONS(5843), + [anon_sym_COLON] = ACTIONS(5843), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5841), + [aux_sym_frm_property_statement_token1] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5843), + [aux_sym__attribute_identifier_token1] = ACTIONS(5841), + [aux_sym_option_statement_token3] = ACTIONS(5841), + [aux_sym_type_declaration_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5841), + [aux_sym_enum_declaration_token1] = ACTIONS(5841), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5841), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5841), + [aux_sym_declare_function_statement_token1] = ACTIONS(5841), + [aux_sym_preprocessor_const_token1] = ACTIONS(5841), + [aux_sym__property_get_header_token1] = ACTIONS(5841), + [aux_sym_event_declaration_token1] = ACTIONS(5841), + [sym_static_modifier] = ACTIONS(5841), + [sym__dim_keyword] = ACTIONS(5841), + [sym__redim_keyword] = ACTIONS(5841), + [aux_sym_get_accessor_token1] = ACTIONS(5841), + [aux_sym_set_accessor_token1] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(5843), + [aux_sym_const_declaration_token1] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5843), + [aux_sym_as_type_clause_token2] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5841), + [aux_sym_visibility_token1] = ACTIONS(5841), + [aux_sym_visibility_token2] = ACTIONS(5841), + [aux_sym_elseif_fragment_token1] = ACTIONS(5841), + [aux_sym_else_fragment_token1] = ACTIONS(5841), + [aux_sym_select_statement_token1] = ACTIONS(5841), + [aux_sym__for_header_token1] = ACTIONS(5841), + [aux_sym_do_statement_token1] = ACTIONS(5841), + [aux_sym_do_condition_token1] = ACTIONS(5841), + [aux_sym_with_statement_token1] = ACTIONS(5841), + [aux_sym_exit_statement_token1] = ACTIONS(5841), + [sym_end_statement] = ACTIONS(5843), + [aux_sym_on_goto_statement_token1] = ACTIONS(5841), + [aux_sym_on_goto_statement_token2] = ACTIONS(5841), + [aux_sym_on_error_statement_token2] = ACTIONS(5841), + [sym__ambiguous_redim_statement] = ACTIONS(5843), + [aux_sym_erase_statement_token1] = ACTIONS(5841), + [aux_sym_open_statement_token1] = ACTIONS(5841), + [aux_sym_file_mode_token2] = ACTIONS(5841), + [aux_sym_file_access_token2] = ACTIONS(5841), + [aux_sym_file_lock_token2] = ACTIONS(5841), + [aux_sym_print_statement_token1] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(5843), + [anon_sym_QMARK] = ACTIONS(5843), + [aux_sym_close_statement_token1] = ACTIONS(5841), + [aux_sym_put_statement_token1] = ACTIONS(5841), + [aux_sym_unlock_statement_token1] = ACTIONS(5841), + [aux_sym_seek_statement_token1] = ACTIONS(5841), + [sym_reset_statement] = ACTIONS(5841), + [aux_sym_raise_event_statement_token1] = ACTIONS(5841), + [sym_stop_statement] = ACTIONS(5841), + [sym_beep_statement] = ACTIONS(5841), + [aux_sym_unload_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token2] = ACTIONS(5841), + [aux_sym_def_type_statement_token3] = ACTIONS(5841), + [aux_sym_def_type_statement_token4] = ACTIONS(5841), + [aux_sym_def_type_statement_token5] = ACTIONS(5841), + [aux_sym_def_type_statement_token6] = ACTIONS(5841), + [aux_sym_def_type_statement_token7] = ACTIONS(5841), + [aux_sym_def_type_statement_token8] = ACTIONS(5841), + [aux_sym_def_type_statement_token9] = ACTIONS(5841), + [aux_sym_def_type_statement_token10] = ACTIONS(5841), + [aux_sym_def_type_statement_token11] = ACTIONS(5841), + [aux_sym_def_type_statement_token12] = ACTIONS(5841), + [aux_sym_def_type_statement_token13] = ACTIONS(5841), + [aux_sym_def_type_statement_token14] = ACTIONS(5841), + [aux_sym_call_statement_token1] = ACTIONS(5841), + [sym__ambiguous_call_statement] = ACTIONS(5841), + [aux_sym_addressof_expression_token1] = ACTIONS(5841), + [aux_sym_type_of_expression_token1] = ACTIONS(5841), + [aux_sym_unary_expression_token1] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5843), + [sym_number_literal] = ACTIONS(5843), + [aux_sym_boolean_literal_token1] = ACTIONS(5841), + [aux_sym_boolean_literal_token2] = ACTIONS(5841), + [sym_nothing_literal] = ACTIONS(5841), + [sym_null_literal] = ACTIONS(5841), + [sym_empty_literal] = ACTIONS(5841), + [sym_date_literal] = ACTIONS(5843), + [anon_sym_POUND] = ACTIONS(5841), + }, + [STATE(1882)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_while_statement_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token3] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1883)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_array_bound_token1] = ACTIONS(4625), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1884)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1885)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_select_statement_token2] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1886)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_select_statement_token2] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1887)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_array_bound_token1] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_select_statement_token2] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1888)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_array_bound_token1] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_select_statement_token2] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1889)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_array_bound_token1] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_select_statement_token2] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1890)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_select_statement_token2] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token3] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1891)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_select_statement_token2] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1892)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_array_bound_token1] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1893)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_array_bound_token1] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1894)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_array_bound_token1] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1895)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6484), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1896)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_select_statement_token2] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1897)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_array_bound_token1] = ACTIONS(4509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_select_statement_token2] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1898)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_select_statement_token2] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1899)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_select_statement_token2] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token3] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1900)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_select_statement_token2] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1901)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1902)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1903)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1904)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token3] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(1905)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1906)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1907)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token3] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1908)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1909)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_statement_token2] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token3] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6368), + [anon_sym_SLASH] = ACTIONS(6370), + [anon_sym_BSLASH] = ACTIONS(6372), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6374), + [anon_sym_PLUS] = ACTIONS(6376), + [anon_sym_DASH] = ACTIONS(6378), + [anon_sym_AMP] = ACTIONS(6380), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1910)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_array_bound_token1] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_select_statement_token2] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(1911)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_array_bound_token1] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_select_statement_token2] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1912)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_array_bound_token1] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_select_statement_token2] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(1913)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_array_bound_token1] = ACTIONS(4509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1914)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1915)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_array_bound_token1] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_select_statement_token2] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1916)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6408), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token3] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6406), + [anon_sym_SLASH] = ACTIONS(6408), + [anon_sym_BSLASH] = ACTIONS(6410), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6412), + [anon_sym_PLUS] = ACTIONS(6414), + [anon_sym_DASH] = ACTIONS(6416), + [anon_sym_AMP] = ACTIONS(6418), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1917)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_array_bound_token1] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(1918)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_array_bound_token1] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1919)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_array_bound_token1] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(1920)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_select_statement_token2] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token3] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1921)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_select_statement_token2] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1922)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_select_statement_token2] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token3] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1923)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_array_bound_token1] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1924)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_select_statement_token2] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token3] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1925)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(1926)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_select_statement_token2] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token3] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1927)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token3] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1928)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1929)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token3] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(1930)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token3] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(1931)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token3] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1932)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6444), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_while_statement_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token3] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6442), + [anon_sym_SLASH] = ACTIONS(6444), + [anon_sym_BSLASH] = ACTIONS(6446), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6448), + [anon_sym_PLUS] = ACTIONS(6450), + [anon_sym_DASH] = ACTIONS(6452), + [anon_sym_AMP] = ACTIONS(6454), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1933)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_select_statement_token2] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token3] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(1934)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_select_statement_token2] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token3] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1935)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_select_statement_token2] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token3] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(1936)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_select_statement_token2] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token3] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1937)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token3] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(1938)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token3] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(1939)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token3] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(1940)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token3] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1941)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6484), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6486), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1942)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6502), + [aux_sym_array_bound_token1] = ACTIONS(4647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_select_statement_token2] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6500), + [anon_sym_SLASH] = ACTIONS(6502), + [anon_sym_BSLASH] = ACTIONS(6504), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6506), + [anon_sym_PLUS] = ACTIONS(6508), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_AMP] = ACTIONS(6512), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1943)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6528), + [aux_sym_array_bound_token1] = ACTIONS(4647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6526), + [anon_sym_SLASH] = ACTIONS(6528), + [anon_sym_BSLASH] = ACTIONS(6530), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6532), + [anon_sym_PLUS] = ACTIONS(6534), + [anon_sym_DASH] = ACTIONS(6536), + [anon_sym_AMP] = ACTIONS(6538), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1944)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6555), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_select_statement_token2] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token3] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(6555), + [anon_sym_BSLASH] = ACTIONS(6557), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6559), + [anon_sym_PLUS] = ACTIONS(6561), + [anon_sym_DASH] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1945)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6579), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token3] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6577), + [anon_sym_SLASH] = ACTIONS(6579), + [anon_sym_BSLASH] = ACTIONS(6581), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6583), + [anon_sym_PLUS] = ACTIONS(6585), + [anon_sym_DASH] = ACTIONS(6587), + [anon_sym_AMP] = ACTIONS(6589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1946)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6484), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6486), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6488), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1947)] = { + [sym_file_number] = STATE(4795), + [sym__primary_expression] = STATE(2362), + [sym__expression] = STATE(2362), + [sym__callable_expression] = STATE(13318), + [sym_call_expression] = STATE(2191), + [sym_new_expression] = STATE(2362), + [sym_addressof_expression] = STATE(2362), + [sym_type_of_expression] = STATE(2362), + [sym_member_expression] = STATE(2209), + [sym_qualified_member_expression] = STATE(2182), + [sym_implicit_member_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2362), + [sym_binary_expression] = STATE(2362), + [sym_unary_expression] = STATE(2362), + [sym__signed_unary_expression] = STATE(2203), + [sym__literal] = STATE(2362), + [sym_boolean_literal] = STATE(2362), + [sym_file_number_literal] = STATE(2427), + [sym_identifier] = ACTIONS(6601), + [sym_newline] = ACTIONS(5130), + [anon_sym_COLON] = ACTIONS(5130), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5132), + [aux_sym_frm_property_statement_token1] = ACTIONS(6603), + [anon_sym_DOT] = ACTIONS(6605), + [anon_sym_BANG] = ACTIONS(1067), + [aux_sym__attribute_identifier_token1] = ACTIONS(5132), + [aux_sym_option_statement_token3] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5132), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5132), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5132), + [aux_sym_preprocessor_const_token1] = ACTIONS(5132), + [sym_static_modifier] = ACTIONS(5132), + [sym__dim_keyword] = ACTIONS(5132), + [sym__redim_keyword] = ACTIONS(5132), + [aux_sym_get_accessor_token1] = ACTIONS(5132), + [aux_sym_set_accessor_token1] = ACTIONS(5132), + [aux_sym_const_declaration_token1] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_as_type_clause_token2] = ACTIONS(1093), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6607), + [aux_sym_visibility_token1] = ACTIONS(5132), + [aux_sym_visibility_token2] = ACTIONS(5132), + [aux_sym_elseif_fragment_token1] = ACTIONS(5132), + [aux_sym_else_fragment_token1] = ACTIONS(5132), + [aux_sym_select_statement_token1] = ACTIONS(5132), + [aux_sym__for_header_token1] = ACTIONS(5132), + [aux_sym_do_statement_token1] = ACTIONS(5132), + [aux_sym_do_condition_token1] = ACTIONS(5132), + [aux_sym_with_statement_token1] = ACTIONS(5132), + [aux_sym_exit_statement_token1] = ACTIONS(5132), + [sym_end_statement] = ACTIONS(5130), + [aux_sym_on_goto_statement_token1] = ACTIONS(5132), + [aux_sym_on_goto_statement_token2] = ACTIONS(5132), + [aux_sym_on_error_statement_token2] = ACTIONS(5132), + [sym__ambiguous_redim_statement] = ACTIONS(5130), + [aux_sym_erase_statement_token1] = ACTIONS(5132), + [aux_sym_open_statement_token1] = ACTIONS(5132), + [aux_sym_file_mode_token2] = ACTIONS(5132), + [aux_sym_file_access_token2] = ACTIONS(5132), + [aux_sym_file_lock_token2] = ACTIONS(5132), + [aux_sym_print_statement_token1] = ACTIONS(5132), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(5130), + [aux_sym_close_statement_token1] = ACTIONS(5132), + [aux_sym_put_statement_token1] = ACTIONS(5132), + [aux_sym_unlock_statement_token1] = ACTIONS(5132), + [aux_sym_seek_statement_token1] = ACTIONS(5132), + [sym_reset_statement] = ACTIONS(5132), + [aux_sym_raise_event_statement_token1] = ACTIONS(5132), + [sym_stop_statement] = ACTIONS(5132), + [sym_beep_statement] = ACTIONS(5132), + [aux_sym_unload_statement_token1] = ACTIONS(5132), + [aux_sym_def_type_statement_token1] = ACTIONS(5132), + [aux_sym_def_type_statement_token2] = ACTIONS(5132), + [aux_sym_def_type_statement_token3] = ACTIONS(5132), + [aux_sym_def_type_statement_token4] = ACTIONS(5132), + [aux_sym_def_type_statement_token5] = ACTIONS(5132), + [aux_sym_def_type_statement_token6] = ACTIONS(5132), + [aux_sym_def_type_statement_token7] = ACTIONS(5132), + [aux_sym_def_type_statement_token8] = ACTIONS(5132), + [aux_sym_def_type_statement_token9] = ACTIONS(5132), + [aux_sym_def_type_statement_token10] = ACTIONS(5132), + [aux_sym_def_type_statement_token11] = ACTIONS(5132), + [aux_sym_def_type_statement_token12] = ACTIONS(5132), + [aux_sym_def_type_statement_token13] = ACTIONS(5132), + [aux_sym_def_type_statement_token14] = ACTIONS(5132), + [aux_sym_call_statement_token1] = ACTIONS(5132), + [sym__ambiguous_call_statement] = ACTIONS(5132), + [aux_sym_addressof_expression_token1] = ACTIONS(1157), + [aux_sym_type_of_expression_token1] = ACTIONS(1159), + [aux_sym_unary_expression_token1] = ACTIONS(1161), + [sym_string_literal] = ACTIONS(6609), + [sym_number_literal] = ACTIONS(6609), + [aux_sym_boolean_literal_token1] = ACTIONS(1167), + [aux_sym_boolean_literal_token2] = ACTIONS(1167), + [sym_nothing_literal] = ACTIONS(6611), + [sym_null_literal] = ACTIONS(6611), + [sym_empty_literal] = ACTIONS(6611), + [sym_date_literal] = ACTIONS(6609), + [anon_sym_POUND] = ACTIONS(1171), + }, + [STATE(1948)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6484), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6486), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6488), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6490), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1949)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6308), + [anon_sym_BANG] = ACTIONS(6310), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4806), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(1950)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4709), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(1951)] = { + [sym_identifier] = ACTIONS(5869), + [sym_newline] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5869), + [aux_sym_frm_property_statement_token1] = ACTIONS(5869), + [anon_sym_DOT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [aux_sym__attribute_identifier_token1] = ACTIONS(5869), + [aux_sym_option_statement_token3] = ACTIONS(5869), + [aux_sym_type_declaration_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5869), + [aux_sym_enum_declaration_token1] = ACTIONS(5869), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5869), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5869), + [aux_sym_declare_function_statement_token1] = ACTIONS(5869), + [aux_sym_preprocessor_const_token1] = ACTIONS(5869), + [aux_sym__property_get_header_token1] = ACTIONS(5869), + [aux_sym_event_declaration_token1] = ACTIONS(5869), + [sym_static_modifier] = ACTIONS(5869), + [sym__dim_keyword] = ACTIONS(5869), + [sym__redim_keyword] = ACTIONS(5869), + [aux_sym_get_accessor_token1] = ACTIONS(5869), + [aux_sym_set_accessor_token1] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5871), + [aux_sym_const_declaration_token1] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5871), + [aux_sym_as_type_clause_token2] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5869), + [aux_sym_visibility_token1] = ACTIONS(5869), + [aux_sym_visibility_token2] = ACTIONS(5869), + [aux_sym_elseif_fragment_token1] = ACTIONS(5869), + [aux_sym_else_fragment_token1] = ACTIONS(5869), + [aux_sym_select_statement_token1] = ACTIONS(5869), + [aux_sym__for_header_token1] = ACTIONS(5869), + [aux_sym_do_statement_token1] = ACTIONS(5869), + [aux_sym_do_condition_token1] = ACTIONS(5869), + [aux_sym_with_statement_token1] = ACTIONS(5869), + [aux_sym_exit_statement_token1] = ACTIONS(5869), + [sym_end_statement] = ACTIONS(5871), + [aux_sym_on_goto_statement_token1] = ACTIONS(5869), + [aux_sym_on_goto_statement_token2] = ACTIONS(5869), + [aux_sym_on_error_statement_token2] = ACTIONS(5869), + [sym__ambiguous_redim_statement] = ACTIONS(5871), + [aux_sym_erase_statement_token1] = ACTIONS(5869), + [aux_sym_open_statement_token1] = ACTIONS(5869), + [aux_sym_file_mode_token2] = ACTIONS(5869), + [aux_sym_file_access_token2] = ACTIONS(5869), + [aux_sym_file_lock_token2] = ACTIONS(5869), + [aux_sym_print_statement_token1] = ACTIONS(5869), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6615), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5002), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5004), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [aux_sym_close_statement_token1] = ACTIONS(5869), + [aux_sym_put_statement_token1] = ACTIONS(5869), + [aux_sym_unlock_statement_token1] = ACTIONS(5869), + [aux_sym_seek_statement_token1] = ACTIONS(5869), + [sym_reset_statement] = ACTIONS(5869), + [aux_sym_raise_event_statement_token1] = ACTIONS(5869), + [sym_stop_statement] = ACTIONS(5869), + [sym_beep_statement] = ACTIONS(5869), + [aux_sym_unload_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token2] = ACTIONS(5869), + [aux_sym_def_type_statement_token3] = ACTIONS(5869), + [aux_sym_def_type_statement_token4] = ACTIONS(5869), + [aux_sym_def_type_statement_token5] = ACTIONS(5869), + [aux_sym_def_type_statement_token6] = ACTIONS(5869), + [aux_sym_def_type_statement_token7] = ACTIONS(5869), + [aux_sym_def_type_statement_token8] = ACTIONS(5869), + [aux_sym_def_type_statement_token9] = ACTIONS(5869), + [aux_sym_def_type_statement_token10] = ACTIONS(5869), + [aux_sym_def_type_statement_token11] = ACTIONS(5869), + [aux_sym_def_type_statement_token12] = ACTIONS(5869), + [aux_sym_def_type_statement_token13] = ACTIONS(5869), + [aux_sym_def_type_statement_token14] = ACTIONS(5869), + [aux_sym_call_statement_token1] = ACTIONS(5869), + [sym__ambiguous_call_statement] = ACTIONS(5869), + [aux_sym_addressof_expression_token1] = ACTIONS(5869), + [aux_sym_type_of_expression_token1] = ACTIONS(5869), + [aux_sym_unary_expression_token1] = ACTIONS(5869), + [sym_string_literal] = ACTIONS(5871), + [sym_number_literal] = ACTIONS(5871), + [aux_sym_boolean_literal_token1] = ACTIONS(5869), + [aux_sym_boolean_literal_token2] = ACTIONS(5869), + [sym_nothing_literal] = ACTIONS(5869), + [sym_null_literal] = ACTIONS(5869), + [sym_empty_literal] = ACTIONS(5869), + [sym_date_literal] = ACTIONS(5871), + [anon_sym_POUND] = ACTIONS(5869), + }, + [STATE(1952)] = { + [sym_identifier] = ACTIONS(6617), + [sym_newline] = ACTIONS(6619), + [anon_sym_COLON] = ACTIONS(6619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6617), + [aux_sym_frm_property_statement_token1] = ACTIONS(6617), + [anon_sym_DOT] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(6619), + [aux_sym__attribute_identifier_token1] = ACTIONS(6617), + [aux_sym_option_statement_token3] = ACTIONS(6617), + [aux_sym_type_declaration_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6617), + [aux_sym_enum_declaration_token1] = ACTIONS(6617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6617), + [aux_sym_declare_function_statement_token1] = ACTIONS(6617), + [aux_sym_preprocessor_const_token1] = ACTIONS(6617), + [aux_sym__property_get_header_token1] = ACTIONS(6617), + [aux_sym_event_declaration_token1] = ACTIONS(6617), + [sym_static_modifier] = ACTIONS(6617), + [sym__dim_keyword] = ACTIONS(6617), + [sym__redim_keyword] = ACTIONS(6617), + [aux_sym_get_accessor_token1] = ACTIONS(6617), + [aux_sym_set_accessor_token1] = ACTIONS(6617), + [aux_sym_const_declaration_token1] = ACTIONS(6617), + [anon_sym_LPAREN] = ACTIONS(6619), + [aux_sym_as_type_clause_token2] = ACTIONS(6617), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6617), + [aux_sym_visibility_token1] = ACTIONS(6617), + [aux_sym_visibility_token2] = ACTIONS(6617), + [aux_sym_elseif_fragment_token1] = ACTIONS(6617), + [aux_sym_else_fragment_token1] = ACTIONS(6617), + [aux_sym_select_statement_token1] = ACTIONS(6617), + [aux_sym__for_header_token1] = ACTIONS(6617), + [aux_sym_do_statement_token1] = ACTIONS(6617), + [aux_sym_do_condition_token1] = ACTIONS(6617), + [aux_sym_with_statement_token1] = ACTIONS(6617), + [aux_sym_exit_statement_token1] = ACTIONS(6617), + [sym_end_statement] = ACTIONS(6619), + [aux_sym_on_goto_statement_token1] = ACTIONS(6617), + [aux_sym_on_goto_statement_token2] = ACTIONS(6617), + [aux_sym_on_error_statement_token2] = ACTIONS(6617), + [sym__ambiguous_redim_statement] = ACTIONS(6619), + [aux_sym_erase_statement_token1] = ACTIONS(6617), + [aux_sym_open_statement_token1] = ACTIONS(6617), + [aux_sym_file_mode_token2] = ACTIONS(6617), + [aux_sym_file_access_token2] = ACTIONS(6617), + [aux_sym_file_lock_token2] = ACTIONS(6617), + [aux_sym_print_statement_token1] = ACTIONS(6617), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5703), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5705), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4471), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4473), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4475), + [anon_sym_QMARK] = ACTIONS(6619), + [aux_sym_close_statement_token1] = ACTIONS(6617), + [aux_sym_put_statement_token1] = ACTIONS(6617), + [aux_sym_unlock_statement_token1] = ACTIONS(6617), + [aux_sym_seek_statement_token1] = ACTIONS(6617), + [sym_reset_statement] = ACTIONS(6617), + [aux_sym_raise_event_statement_token1] = ACTIONS(6617), + [sym_stop_statement] = ACTIONS(6617), + [sym_beep_statement] = ACTIONS(6617), + [aux_sym_unload_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token2] = ACTIONS(6617), + [aux_sym_def_type_statement_token3] = ACTIONS(6617), + [aux_sym_def_type_statement_token4] = ACTIONS(6617), + [aux_sym_def_type_statement_token5] = ACTIONS(6617), + [aux_sym_def_type_statement_token6] = ACTIONS(6617), + [aux_sym_def_type_statement_token7] = ACTIONS(6617), + [aux_sym_def_type_statement_token8] = ACTIONS(6617), + [aux_sym_def_type_statement_token9] = ACTIONS(6617), + [aux_sym_def_type_statement_token10] = ACTIONS(6617), + [aux_sym_def_type_statement_token11] = ACTIONS(6617), + [aux_sym_def_type_statement_token12] = ACTIONS(6617), + [aux_sym_def_type_statement_token13] = ACTIONS(6617), + [aux_sym_def_type_statement_token14] = ACTIONS(6617), + [aux_sym_call_statement_token1] = ACTIONS(6617), + [sym__ambiguous_call_statement] = ACTIONS(6617), + [aux_sym_addressof_expression_token1] = ACTIONS(6617), + [aux_sym_type_of_expression_token1] = ACTIONS(6617), + [aux_sym_unary_expression_token1] = ACTIONS(6617), + [sym_string_literal] = ACTIONS(6619), + [sym_number_literal] = ACTIONS(6619), + [aux_sym_boolean_literal_token1] = ACTIONS(6617), + [aux_sym_boolean_literal_token2] = ACTIONS(6617), + [sym_nothing_literal] = ACTIONS(6617), + [sym_null_literal] = ACTIONS(6617), + [sym_empty_literal] = ACTIONS(6617), + [sym_date_literal] = ACTIONS(6619), + [anon_sym_POUND] = ACTIONS(6617), + }, + [STATE(1953)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(1954)] = { + [sym_identifier] = ACTIONS(5716), + [sym_newline] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5716), + [aux_sym_frm_property_statement_token1] = ACTIONS(5716), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_BANG] = ACTIONS(5718), + [aux_sym__attribute_identifier_token1] = ACTIONS(5716), + [aux_sym_option_statement_token3] = ACTIONS(5716), + [aux_sym_type_declaration_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5716), + [aux_sym_enum_declaration_token1] = ACTIONS(5716), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5716), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5716), + [aux_sym_declare_function_statement_token1] = ACTIONS(5716), + [aux_sym_preprocessor_const_token1] = ACTIONS(5716), + [aux_sym__property_get_header_token1] = ACTIONS(5716), + [aux_sym_event_declaration_token1] = ACTIONS(5716), + [sym_static_modifier] = ACTIONS(5716), + [sym__dim_keyword] = ACTIONS(5716), + [sym__redim_keyword] = ACTIONS(5716), + [aux_sym_get_accessor_token1] = ACTIONS(5716), + [aux_sym_set_accessor_token1] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5718), + [aux_sym_const_declaration_token1] = ACTIONS(5716), + [anon_sym_LPAREN] = ACTIONS(5718), + [aux_sym_as_type_clause_token2] = ACTIONS(5716), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5716), + [aux_sym_visibility_token1] = ACTIONS(5716), + [aux_sym_visibility_token2] = ACTIONS(5716), + [aux_sym_elseif_fragment_token1] = ACTIONS(5716), + [aux_sym_else_fragment_token1] = ACTIONS(5716), + [aux_sym_select_statement_token1] = ACTIONS(5716), + [aux_sym__for_header_token1] = ACTIONS(5716), + [aux_sym_do_statement_token1] = ACTIONS(5716), + [aux_sym_do_condition_token1] = ACTIONS(5716), + [aux_sym_with_statement_token1] = ACTIONS(5716), + [aux_sym_exit_statement_token1] = ACTIONS(5716), + [sym_end_statement] = ACTIONS(5718), + [aux_sym_on_goto_statement_token1] = ACTIONS(5716), + [aux_sym_on_goto_statement_token2] = ACTIONS(5716), + [aux_sym_on_error_statement_token2] = ACTIONS(5716), + [sym__ambiguous_redim_statement] = ACTIONS(5718), + [aux_sym_erase_statement_token1] = ACTIONS(5716), + [aux_sym_open_statement_token1] = ACTIONS(5716), + [aux_sym_file_mode_token2] = ACTIONS(5716), + [aux_sym_file_access_token2] = ACTIONS(5716), + [aux_sym_file_lock_token2] = ACTIONS(5716), + [aux_sym_print_statement_token1] = ACTIONS(5716), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4998), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5000), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5002), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5004), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [aux_sym_close_statement_token1] = ACTIONS(5716), + [aux_sym_put_statement_token1] = ACTIONS(5716), + [aux_sym_unlock_statement_token1] = ACTIONS(5716), + [aux_sym_seek_statement_token1] = ACTIONS(5716), + [sym_reset_statement] = ACTIONS(5716), + [aux_sym_raise_event_statement_token1] = ACTIONS(5716), + [sym_stop_statement] = ACTIONS(5716), + [sym_beep_statement] = ACTIONS(5716), + [aux_sym_unload_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token2] = ACTIONS(5716), + [aux_sym_def_type_statement_token3] = ACTIONS(5716), + [aux_sym_def_type_statement_token4] = ACTIONS(5716), + [aux_sym_def_type_statement_token5] = ACTIONS(5716), + [aux_sym_def_type_statement_token6] = ACTIONS(5716), + [aux_sym_def_type_statement_token7] = ACTIONS(5716), + [aux_sym_def_type_statement_token8] = ACTIONS(5716), + [aux_sym_def_type_statement_token9] = ACTIONS(5716), + [aux_sym_def_type_statement_token10] = ACTIONS(5716), + [aux_sym_def_type_statement_token11] = ACTIONS(5716), + [aux_sym_def_type_statement_token12] = ACTIONS(5716), + [aux_sym_def_type_statement_token13] = ACTIONS(5716), + [aux_sym_def_type_statement_token14] = ACTIONS(5716), + [aux_sym_call_statement_token1] = ACTIONS(5716), + [sym__ambiguous_call_statement] = ACTIONS(5716), + [aux_sym_addressof_expression_token1] = ACTIONS(5716), + [aux_sym_type_of_expression_token1] = ACTIONS(5716), + [aux_sym_unary_expression_token1] = ACTIONS(5716), + [sym_string_literal] = ACTIONS(5718), + [sym_number_literal] = ACTIONS(5718), + [aux_sym_boolean_literal_token1] = ACTIONS(5716), + [aux_sym_boolean_literal_token2] = ACTIONS(5716), + [sym_nothing_literal] = ACTIONS(5716), + [sym_null_literal] = ACTIONS(5716), + [sym_empty_literal] = ACTIONS(5716), + [sym_date_literal] = ACTIONS(5718), + [anon_sym_POUND] = ACTIONS(5716), + }, + [STATE(1955)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1956)] = { + [sym_identifier] = ACTIONS(4671), + [sym_newline] = ACTIONS(4673), + [anon_sym_COLON] = ACTIONS(4673), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4671), + [aux_sym_frm_property_statement_token1] = ACTIONS(4671), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4671), + [anon_sym_BANG] = ACTIONS(4673), + [aux_sym__attribute_identifier_token1] = ACTIONS(4671), + [aux_sym_option_statement_token3] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4671), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4671), + [aux_sym_preprocessor_const_token1] = ACTIONS(4671), + [sym_static_modifier] = ACTIONS(4671), + [sym__dim_keyword] = ACTIONS(4671), + [sym__redim_keyword] = ACTIONS(4671), + [aux_sym_get_accessor_token1] = ACTIONS(4671), + [aux_sym_set_accessor_token1] = ACTIONS(4671), + [anon_sym_COMMA] = ACTIONS(4673), + [aux_sym_const_declaration_token1] = ACTIONS(4671), + [anon_sym_LPAREN] = ACTIONS(4673), + [aux_sym_as_type_clause_token2] = ACTIONS(4671), + [anon_sym_STAR] = ACTIONS(4673), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4671), + [aux_sym_visibility_token1] = ACTIONS(4671), + [aux_sym_visibility_token2] = ACTIONS(4671), + [aux_sym_elseif_fragment_token1] = ACTIONS(4671), + [aux_sym_else_fragment_token1] = ACTIONS(4671), + [aux_sym_select_statement_token1] = ACTIONS(4671), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4671), + [aux_sym_do_statement_token1] = ACTIONS(4671), + [aux_sym_do_condition_token1] = ACTIONS(4671), + [aux_sym_with_statement_token1] = ACTIONS(4671), + [aux_sym_exit_statement_token1] = ACTIONS(4671), + [sym_end_statement] = ACTIONS(4673), + [aux_sym_on_goto_statement_token1] = ACTIONS(4671), + [aux_sym_on_goto_statement_token2] = ACTIONS(4671), + [aux_sym_on_error_statement_token2] = ACTIONS(4671), + [sym__ambiguous_redim_statement] = ACTIONS(4673), + [aux_sym_erase_statement_token1] = ACTIONS(4671), + [aux_sym_open_statement_token1] = ACTIONS(4671), + [aux_sym_file_mode_token2] = ACTIONS(4671), + [aux_sym_file_access_token2] = ACTIONS(4671), + [aux_sym_file_lock_token2] = ACTIONS(4671), + [aux_sym_print_statement_token1] = ACTIONS(4671), + [anon_sym_CARET] = ACTIONS(4673), + [anon_sym_SLASH] = ACTIONS(4673), + [anon_sym_BSLASH] = ACTIONS(4673), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4671), + [anon_sym_PLUS] = ACTIONS(4673), + [anon_sym_DASH] = ACTIONS(4671), + [anon_sym_AMP] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4671), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4671), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym_QMARK] = ACTIONS(4673), + [aux_sym_close_statement_token1] = ACTIONS(4671), + [aux_sym_put_statement_token1] = ACTIONS(4671), + [aux_sym_unlock_statement_token1] = ACTIONS(4671), + [aux_sym_seek_statement_token1] = ACTIONS(4671), + [sym_reset_statement] = ACTIONS(4671), + [aux_sym_raise_event_statement_token1] = ACTIONS(4671), + [sym_stop_statement] = ACTIONS(4671), + [sym_beep_statement] = ACTIONS(4671), + [aux_sym_unload_statement_token1] = ACTIONS(4671), + [aux_sym_def_type_statement_token1] = ACTIONS(4671), + [aux_sym_def_type_statement_token2] = ACTIONS(4671), + [aux_sym_def_type_statement_token3] = ACTIONS(4671), + [aux_sym_def_type_statement_token4] = ACTIONS(4671), + [aux_sym_def_type_statement_token5] = ACTIONS(4671), + [aux_sym_def_type_statement_token6] = ACTIONS(4671), + [aux_sym_def_type_statement_token7] = ACTIONS(4671), + [aux_sym_def_type_statement_token8] = ACTIONS(4671), + [aux_sym_def_type_statement_token9] = ACTIONS(4671), + [aux_sym_def_type_statement_token10] = ACTIONS(4671), + [aux_sym_def_type_statement_token11] = ACTIONS(4671), + [aux_sym_def_type_statement_token12] = ACTIONS(4671), + [aux_sym_def_type_statement_token13] = ACTIONS(4671), + [aux_sym_def_type_statement_token14] = ACTIONS(4671), + [aux_sym_call_statement_token1] = ACTIONS(4671), + [sym__ambiguous_call_statement] = ACTIONS(4671), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4671), + [aux_sym_type_of_expression_token1] = ACTIONS(4671), + [aux_sym_unary_expression_token1] = ACTIONS(4671), + [sym_string_literal] = ACTIONS(4673), + [sym_number_literal] = ACTIONS(4673), + [aux_sym_boolean_literal_token1] = ACTIONS(4671), + [aux_sym_boolean_literal_token2] = ACTIONS(4671), + [sym_nothing_literal] = ACTIONS(4671), + [sym_null_literal] = ACTIONS(4671), + [sym_empty_literal] = ACTIONS(4671), + [sym_date_literal] = ACTIONS(4673), + [anon_sym_POUND] = ACTIONS(4671), + }, + [STATE(1957)] = { + [sym_identifier] = ACTIONS(5699), + [sym_newline] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5701), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5699), + [aux_sym_frm_property_statement_token1] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5699), + [anon_sym_BANG] = ACTIONS(5701), + [aux_sym__attribute_identifier_token1] = ACTIONS(5699), + [aux_sym_option_statement_token3] = ACTIONS(5699), + [aux_sym_type_declaration_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5699), + [aux_sym_enum_declaration_token1] = ACTIONS(5699), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5699), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5699), + [aux_sym_declare_function_statement_token1] = ACTIONS(5699), + [aux_sym_preprocessor_const_token1] = ACTIONS(5699), + [aux_sym__property_get_header_token1] = ACTIONS(5699), + [aux_sym_event_declaration_token1] = ACTIONS(5699), + [sym_static_modifier] = ACTIONS(5699), + [sym__dim_keyword] = ACTIONS(5699), + [sym__redim_keyword] = ACTIONS(5699), + [aux_sym_get_accessor_token1] = ACTIONS(5699), + [aux_sym_set_accessor_token1] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5701), + [aux_sym_const_declaration_token1] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(5701), + [aux_sym_as_type_clause_token2] = ACTIONS(5699), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5699), + [aux_sym_visibility_token1] = ACTIONS(5699), + [aux_sym_visibility_token2] = ACTIONS(5699), + [aux_sym_elseif_fragment_token1] = ACTIONS(5699), + [aux_sym_else_fragment_token1] = ACTIONS(5699), + [aux_sym_select_statement_token1] = ACTIONS(5699), + [aux_sym__for_header_token1] = ACTIONS(5699), + [aux_sym_do_statement_token1] = ACTIONS(5699), + [aux_sym_do_condition_token1] = ACTIONS(5699), + [aux_sym_with_statement_token1] = ACTIONS(5699), + [aux_sym_exit_statement_token1] = ACTIONS(5699), + [sym_end_statement] = ACTIONS(5701), + [aux_sym_on_goto_statement_token1] = ACTIONS(5699), + [aux_sym_on_goto_statement_token2] = ACTIONS(5699), + [aux_sym_on_error_statement_token2] = ACTIONS(5699), + [sym__ambiguous_redim_statement] = ACTIONS(5701), + [aux_sym_erase_statement_token1] = ACTIONS(5699), + [aux_sym_open_statement_token1] = ACTIONS(5699), + [aux_sym_file_mode_token2] = ACTIONS(5699), + [aux_sym_file_access_token2] = ACTIONS(5699), + [aux_sym_file_lock_token2] = ACTIONS(5699), + [aux_sym_print_statement_token1] = ACTIONS(5699), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6615), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5002), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5004), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5701), + [aux_sym_close_statement_token1] = ACTIONS(5699), + [aux_sym_put_statement_token1] = ACTIONS(5699), + [aux_sym_unlock_statement_token1] = ACTIONS(5699), + [aux_sym_seek_statement_token1] = ACTIONS(5699), + [sym_reset_statement] = ACTIONS(5699), + [aux_sym_raise_event_statement_token1] = ACTIONS(5699), + [sym_stop_statement] = ACTIONS(5699), + [sym_beep_statement] = ACTIONS(5699), + [aux_sym_unload_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token2] = ACTIONS(5699), + [aux_sym_def_type_statement_token3] = ACTIONS(5699), + [aux_sym_def_type_statement_token4] = ACTIONS(5699), + [aux_sym_def_type_statement_token5] = ACTIONS(5699), + [aux_sym_def_type_statement_token6] = ACTIONS(5699), + [aux_sym_def_type_statement_token7] = ACTIONS(5699), + [aux_sym_def_type_statement_token8] = ACTIONS(5699), + [aux_sym_def_type_statement_token9] = ACTIONS(5699), + [aux_sym_def_type_statement_token10] = ACTIONS(5699), + [aux_sym_def_type_statement_token11] = ACTIONS(5699), + [aux_sym_def_type_statement_token12] = ACTIONS(5699), + [aux_sym_def_type_statement_token13] = ACTIONS(5699), + [aux_sym_def_type_statement_token14] = ACTIONS(5699), + [aux_sym_call_statement_token1] = ACTIONS(5699), + [sym__ambiguous_call_statement] = ACTIONS(5699), + [aux_sym_addressof_expression_token1] = ACTIONS(5699), + [aux_sym_type_of_expression_token1] = ACTIONS(5699), + [aux_sym_unary_expression_token1] = ACTIONS(5699), + [sym_string_literal] = ACTIONS(5701), + [sym_number_literal] = ACTIONS(5701), + [aux_sym_boolean_literal_token1] = ACTIONS(5699), + [aux_sym_boolean_literal_token2] = ACTIONS(5699), + [sym_nothing_literal] = ACTIONS(5699), + [sym_null_literal] = ACTIONS(5699), + [sym_empty_literal] = ACTIONS(5699), + [sym_date_literal] = ACTIONS(5701), + [anon_sym_POUND] = ACTIONS(5699), + }, + [STATE(1958)] = { + [sym_identifier] = ACTIONS(5752), + [sym_newline] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5752), + [aux_sym_frm_property_statement_token1] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5752), + [anon_sym_BANG] = ACTIONS(5754), + [aux_sym__attribute_identifier_token1] = ACTIONS(5752), + [aux_sym_option_statement_token3] = ACTIONS(5752), + [aux_sym_type_declaration_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5752), + [aux_sym_enum_declaration_token1] = ACTIONS(5752), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5752), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5752), + [aux_sym_declare_function_statement_token1] = ACTIONS(5752), + [aux_sym_preprocessor_const_token1] = ACTIONS(5752), + [aux_sym__property_get_header_token1] = ACTIONS(5752), + [aux_sym_event_declaration_token1] = ACTIONS(5752), + [sym_static_modifier] = ACTIONS(5752), + [sym__dim_keyword] = ACTIONS(5752), + [sym__redim_keyword] = ACTIONS(5752), + [aux_sym_get_accessor_token1] = ACTIONS(5752), + [aux_sym_set_accessor_token1] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5754), + [aux_sym_const_declaration_token1] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [aux_sym_as_type_clause_token2] = ACTIONS(5752), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5752), + [aux_sym_visibility_token1] = ACTIONS(5752), + [aux_sym_visibility_token2] = ACTIONS(5752), + [aux_sym_elseif_fragment_token1] = ACTIONS(5752), + [aux_sym_else_fragment_token1] = ACTIONS(5752), + [aux_sym_select_statement_token1] = ACTIONS(5752), + [aux_sym__for_header_token1] = ACTIONS(5752), + [aux_sym_do_statement_token1] = ACTIONS(5752), + [aux_sym_do_condition_token1] = ACTIONS(5752), + [aux_sym_with_statement_token1] = ACTIONS(5752), + [aux_sym_exit_statement_token1] = ACTIONS(5752), + [sym_end_statement] = ACTIONS(5754), + [aux_sym_on_goto_statement_token1] = ACTIONS(5752), + [aux_sym_on_goto_statement_token2] = ACTIONS(5752), + [aux_sym_on_error_statement_token2] = ACTIONS(5752), + [sym__ambiguous_redim_statement] = ACTIONS(5754), + [aux_sym_erase_statement_token1] = ACTIONS(5752), + [aux_sym_open_statement_token1] = ACTIONS(5752), + [aux_sym_file_mode_token2] = ACTIONS(5752), + [aux_sym_file_access_token2] = ACTIONS(5752), + [aux_sym_file_lock_token2] = ACTIONS(5752), + [aux_sym_print_statement_token1] = ACTIONS(5752), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6615), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5002), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5004), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5754), + [anon_sym_QMARK] = ACTIONS(5754), + [aux_sym_close_statement_token1] = ACTIONS(5752), + [aux_sym_put_statement_token1] = ACTIONS(5752), + [aux_sym_unlock_statement_token1] = ACTIONS(5752), + [aux_sym_seek_statement_token1] = ACTIONS(5752), + [sym_reset_statement] = ACTIONS(5752), + [aux_sym_raise_event_statement_token1] = ACTIONS(5752), + [sym_stop_statement] = ACTIONS(5752), + [sym_beep_statement] = ACTIONS(5752), + [aux_sym_unload_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token2] = ACTIONS(5752), + [aux_sym_def_type_statement_token3] = ACTIONS(5752), + [aux_sym_def_type_statement_token4] = ACTIONS(5752), + [aux_sym_def_type_statement_token5] = ACTIONS(5752), + [aux_sym_def_type_statement_token6] = ACTIONS(5752), + [aux_sym_def_type_statement_token7] = ACTIONS(5752), + [aux_sym_def_type_statement_token8] = ACTIONS(5752), + [aux_sym_def_type_statement_token9] = ACTIONS(5752), + [aux_sym_def_type_statement_token10] = ACTIONS(5752), + [aux_sym_def_type_statement_token11] = ACTIONS(5752), + [aux_sym_def_type_statement_token12] = ACTIONS(5752), + [aux_sym_def_type_statement_token13] = ACTIONS(5752), + [aux_sym_def_type_statement_token14] = ACTIONS(5752), + [aux_sym_call_statement_token1] = ACTIONS(5752), + [sym__ambiguous_call_statement] = ACTIONS(5752), + [aux_sym_addressof_expression_token1] = ACTIONS(5752), + [aux_sym_type_of_expression_token1] = ACTIONS(5752), + [aux_sym_unary_expression_token1] = ACTIONS(5752), + [sym_string_literal] = ACTIONS(5754), + [sym_number_literal] = ACTIONS(5754), + [aux_sym_boolean_literal_token1] = ACTIONS(5752), + [aux_sym_boolean_literal_token2] = ACTIONS(5752), + [sym_nothing_literal] = ACTIONS(5752), + [sym_null_literal] = ACTIONS(5752), + [sym_empty_literal] = ACTIONS(5752), + [sym_date_literal] = ACTIONS(5754), + [anon_sym_POUND] = ACTIONS(5752), + }, + [STATE(1959)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_declaration_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_enum_declaration_token1] = ACTIONS(5627), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5627), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5627), + [aux_sym_declare_function_statement_token1] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [aux_sym__property_get_header_token1] = ACTIONS(5627), + [aux_sym_event_declaration_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5002), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5004), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(1960)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_declaration_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_enum_declaration_token1] = ACTIONS(5627), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5627), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5627), + [aux_sym_declare_function_statement_token1] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [aux_sym__property_get_header_token1] = ACTIONS(5627), + [aux_sym_event_declaration_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4998), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5002), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5004), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5006), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(1961)] = { + [sym_identifier] = ACTIONS(6621), + [sym_newline] = ACTIONS(6623), + [anon_sym_COLON] = ACTIONS(6623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6621), + [aux_sym_frm_property_statement_token1] = ACTIONS(6621), + [anon_sym_DOT] = ACTIONS(6621), + [anon_sym_BANG] = ACTIONS(6623), + [aux_sym__attribute_identifier_token1] = ACTIONS(6621), + [aux_sym_option_statement_token3] = ACTIONS(6621), + [aux_sym_type_declaration_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6621), + [aux_sym_enum_declaration_token1] = ACTIONS(6621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6621), + [aux_sym_declare_function_statement_token1] = ACTIONS(6621), + [aux_sym_preprocessor_const_token1] = ACTIONS(6621), + [aux_sym__property_get_header_token1] = ACTIONS(6621), + [aux_sym_event_declaration_token1] = ACTIONS(6621), + [sym_static_modifier] = ACTIONS(6621), + [sym__dim_keyword] = ACTIONS(6621), + [sym__redim_keyword] = ACTIONS(6621), + [aux_sym_get_accessor_token1] = ACTIONS(6621), + [aux_sym_set_accessor_token1] = ACTIONS(6621), + [aux_sym_const_declaration_token1] = ACTIONS(6621), + [anon_sym_LPAREN] = ACTIONS(6623), + [aux_sym_as_type_clause_token2] = ACTIONS(6621), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6621), + [aux_sym_visibility_token1] = ACTIONS(6621), + [aux_sym_visibility_token2] = ACTIONS(6621), + [aux_sym_elseif_fragment_token1] = ACTIONS(6621), + [aux_sym_else_fragment_token1] = ACTIONS(6621), + [aux_sym_select_statement_token1] = ACTIONS(6621), + [aux_sym__for_header_token1] = ACTIONS(6621), + [aux_sym_do_statement_token1] = ACTIONS(6621), + [aux_sym_do_condition_token1] = ACTIONS(6621), + [aux_sym_with_statement_token1] = ACTIONS(6621), + [aux_sym_exit_statement_token1] = ACTIONS(6621), + [sym_end_statement] = ACTIONS(6623), + [aux_sym_on_goto_statement_token1] = ACTIONS(6621), + [aux_sym_on_goto_statement_token2] = ACTIONS(6621), + [aux_sym_on_error_statement_token2] = ACTIONS(6621), + [sym__ambiguous_redim_statement] = ACTIONS(6623), + [aux_sym_erase_statement_token1] = ACTIONS(6621), + [aux_sym_open_statement_token1] = ACTIONS(6621), + [aux_sym_file_mode_token2] = ACTIONS(6621), + [aux_sym_file_access_token2] = ACTIONS(6621), + [aux_sym_file_lock_token2] = ACTIONS(6621), + [aux_sym_print_statement_token1] = ACTIONS(6621), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4467), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4469), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4471), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4473), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4475), + [anon_sym_QMARK] = ACTIONS(6623), + [aux_sym_close_statement_token1] = ACTIONS(6621), + [aux_sym_put_statement_token1] = ACTIONS(6621), + [aux_sym_unlock_statement_token1] = ACTIONS(6621), + [aux_sym_seek_statement_token1] = ACTIONS(6621), + [sym_reset_statement] = ACTIONS(6621), + [aux_sym_raise_event_statement_token1] = ACTIONS(6621), + [sym_stop_statement] = ACTIONS(6621), + [sym_beep_statement] = ACTIONS(6621), + [aux_sym_unload_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token2] = ACTIONS(6621), + [aux_sym_def_type_statement_token3] = ACTIONS(6621), + [aux_sym_def_type_statement_token4] = ACTIONS(6621), + [aux_sym_def_type_statement_token5] = ACTIONS(6621), + [aux_sym_def_type_statement_token6] = ACTIONS(6621), + [aux_sym_def_type_statement_token7] = ACTIONS(6621), + [aux_sym_def_type_statement_token8] = ACTIONS(6621), + [aux_sym_def_type_statement_token9] = ACTIONS(6621), + [aux_sym_def_type_statement_token10] = ACTIONS(6621), + [aux_sym_def_type_statement_token11] = ACTIONS(6621), + [aux_sym_def_type_statement_token12] = ACTIONS(6621), + [aux_sym_def_type_statement_token13] = ACTIONS(6621), + [aux_sym_def_type_statement_token14] = ACTIONS(6621), + [aux_sym_call_statement_token1] = ACTIONS(6621), + [sym__ambiguous_call_statement] = ACTIONS(6621), + [aux_sym_addressof_expression_token1] = ACTIONS(6621), + [aux_sym_type_of_expression_token1] = ACTIONS(6621), + [aux_sym_unary_expression_token1] = ACTIONS(6621), + [sym_string_literal] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [aux_sym_boolean_literal_token1] = ACTIONS(6621), + [aux_sym_boolean_literal_token2] = ACTIONS(6621), + [sym_nothing_literal] = ACTIONS(6621), + [sym_null_literal] = ACTIONS(6621), + [sym_empty_literal] = ACTIONS(6621), + [sym_date_literal] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6621), + }, + [STATE(1962)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_array_bound_token1] = ACTIONS(4509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_statement_token2] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1963)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_statement_token2] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1964)] = { + [sym_identifier] = ACTIONS(6625), + [sym_newline] = ACTIONS(6627), + [anon_sym_COLON] = ACTIONS(6627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6625), + [aux_sym_frm_property_statement_token1] = ACTIONS(6625), + [anon_sym_DOT] = ACTIONS(6625), + [anon_sym_BANG] = ACTIONS(6627), + [aux_sym__attribute_identifier_token1] = ACTIONS(6625), + [aux_sym_option_statement_token3] = ACTIONS(6625), + [aux_sym_type_declaration_token1] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6625), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6625), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6625), + [aux_sym_enum_declaration_token1] = ACTIONS(6625), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6625), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6625), + [aux_sym_declare_function_statement_token1] = ACTIONS(6625), + [aux_sym_preprocessor_const_token1] = ACTIONS(6625), + [aux_sym__property_get_header_token1] = ACTIONS(6625), + [aux_sym_event_declaration_token1] = ACTIONS(6625), + [sym_static_modifier] = ACTIONS(6625), + [sym__dim_keyword] = ACTIONS(6625), + [sym__redim_keyword] = ACTIONS(6625), + [aux_sym_get_accessor_token1] = ACTIONS(6625), + [aux_sym_set_accessor_token1] = ACTIONS(6625), + [aux_sym_const_declaration_token1] = ACTIONS(6625), + [anon_sym_LPAREN] = ACTIONS(6627), + [aux_sym_as_type_clause_token2] = ACTIONS(6625), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6625), + [aux_sym_visibility_token1] = ACTIONS(6625), + [aux_sym_visibility_token2] = ACTIONS(6625), + [aux_sym_elseif_fragment_token1] = ACTIONS(6625), + [aux_sym_else_fragment_token1] = ACTIONS(6625), + [aux_sym_select_statement_token1] = ACTIONS(6625), + [aux_sym__for_header_token1] = ACTIONS(6625), + [aux_sym_do_statement_token1] = ACTIONS(6625), + [aux_sym_do_condition_token1] = ACTIONS(6625), + [aux_sym_with_statement_token1] = ACTIONS(6625), + [aux_sym_exit_statement_token1] = ACTIONS(6625), + [sym_end_statement] = ACTIONS(6627), + [aux_sym_on_goto_statement_token1] = ACTIONS(6625), + [aux_sym_on_goto_statement_token2] = ACTIONS(6625), + [aux_sym_on_error_statement_token2] = ACTIONS(6625), + [sym__ambiguous_redim_statement] = ACTIONS(6627), + [aux_sym_erase_statement_token1] = ACTIONS(6625), + [aux_sym_open_statement_token1] = ACTIONS(6625), + [aux_sym_file_mode_token2] = ACTIONS(6625), + [aux_sym_file_access_token2] = ACTIONS(6625), + [aux_sym_file_lock_token2] = ACTIONS(6625), + [aux_sym_print_statement_token1] = ACTIONS(6625), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_QMARK] = ACTIONS(6627), + [aux_sym_close_statement_token1] = ACTIONS(6625), + [aux_sym_put_statement_token1] = ACTIONS(6625), + [aux_sym_unlock_statement_token1] = ACTIONS(6625), + [aux_sym_seek_statement_token1] = ACTIONS(6625), + [sym_reset_statement] = ACTIONS(6625), + [aux_sym_raise_event_statement_token1] = ACTIONS(6625), + [sym_stop_statement] = ACTIONS(6625), + [sym_beep_statement] = ACTIONS(6625), + [aux_sym_unload_statement_token1] = ACTIONS(6625), + [aux_sym_def_type_statement_token1] = ACTIONS(6625), + [aux_sym_def_type_statement_token2] = ACTIONS(6625), + [aux_sym_def_type_statement_token3] = ACTIONS(6625), + [aux_sym_def_type_statement_token4] = ACTIONS(6625), + [aux_sym_def_type_statement_token5] = ACTIONS(6625), + [aux_sym_def_type_statement_token6] = ACTIONS(6625), + [aux_sym_def_type_statement_token7] = ACTIONS(6625), + [aux_sym_def_type_statement_token8] = ACTIONS(6625), + [aux_sym_def_type_statement_token9] = ACTIONS(6625), + [aux_sym_def_type_statement_token10] = ACTIONS(6625), + [aux_sym_def_type_statement_token11] = ACTIONS(6625), + [aux_sym_def_type_statement_token12] = ACTIONS(6625), + [aux_sym_def_type_statement_token13] = ACTIONS(6625), + [aux_sym_def_type_statement_token14] = ACTIONS(6625), + [aux_sym_call_statement_token1] = ACTIONS(6625), + [sym__ambiguous_call_statement] = ACTIONS(6625), + [aux_sym_addressof_expression_token1] = ACTIONS(6625), + [aux_sym_type_of_expression_token1] = ACTIONS(6625), + [aux_sym_unary_expression_token1] = ACTIONS(6625), + [sym_string_literal] = ACTIONS(6627), + [sym_number_literal] = ACTIONS(6627), + [aux_sym_boolean_literal_token1] = ACTIONS(6625), + [aux_sym_boolean_literal_token2] = ACTIONS(6625), + [sym_nothing_literal] = ACTIONS(6625), + [sym_null_literal] = ACTIONS(6625), + [sym_empty_literal] = ACTIONS(6625), + [sym_date_literal] = ACTIONS(6627), + [anon_sym_POUND] = ACTIONS(6625), + }, + [STATE(1965)] = { + [sym_identifier] = ACTIONS(6629), + [sym_newline] = ACTIONS(6631), + [anon_sym_COLON] = ACTIONS(6631), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6629), + [aux_sym_frm_property_statement_token1] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6631), + [aux_sym__attribute_identifier_token1] = ACTIONS(6629), + [aux_sym_option_statement_token3] = ACTIONS(6629), + [aux_sym_type_declaration_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6629), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6629), + [aux_sym_enum_declaration_token1] = ACTIONS(6629), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6629), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6629), + [aux_sym_declare_function_statement_token1] = ACTIONS(6629), + [aux_sym_preprocessor_const_token1] = ACTIONS(6629), + [aux_sym__property_get_header_token1] = ACTIONS(6629), + [aux_sym_event_declaration_token1] = ACTIONS(6629), + [sym_static_modifier] = ACTIONS(6629), + [sym__dim_keyword] = ACTIONS(6629), + [sym__redim_keyword] = ACTIONS(6629), + [aux_sym_get_accessor_token1] = ACTIONS(6629), + [aux_sym_set_accessor_token1] = ACTIONS(6629), + [aux_sym_const_declaration_token1] = ACTIONS(6629), + [anon_sym_LPAREN] = ACTIONS(6631), + [aux_sym_as_type_clause_token2] = ACTIONS(6629), + [anon_sym_STAR] = ACTIONS(4455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6629), + [aux_sym_visibility_token1] = ACTIONS(6629), + [aux_sym_visibility_token2] = ACTIONS(6629), + [aux_sym_elseif_fragment_token1] = ACTIONS(6629), + [aux_sym_else_fragment_token1] = ACTIONS(6629), + [aux_sym_select_statement_token1] = ACTIONS(6629), + [aux_sym__for_header_token1] = ACTIONS(6629), + [aux_sym_do_statement_token1] = ACTIONS(6629), + [aux_sym_do_condition_token1] = ACTIONS(6629), + [aux_sym_with_statement_token1] = ACTIONS(6629), + [aux_sym_exit_statement_token1] = ACTIONS(6629), + [sym_end_statement] = ACTIONS(6631), + [aux_sym_on_goto_statement_token1] = ACTIONS(6629), + [aux_sym_on_goto_statement_token2] = ACTIONS(6629), + [aux_sym_on_error_statement_token2] = ACTIONS(6629), + [sym__ambiguous_redim_statement] = ACTIONS(6631), + [aux_sym_erase_statement_token1] = ACTIONS(6629), + [aux_sym_open_statement_token1] = ACTIONS(6629), + [aux_sym_file_mode_token2] = ACTIONS(6629), + [aux_sym_file_access_token2] = ACTIONS(6629), + [aux_sym_file_lock_token2] = ACTIONS(6629), + [aux_sym_print_statement_token1] = ACTIONS(6629), + [anon_sym_CARET] = ACTIONS(4445), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_BSLASH] = ACTIONS(4457), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4463), + [anon_sym_AMP] = ACTIONS(4465), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4467), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4469), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4471), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4473), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4475), + [anon_sym_QMARK] = ACTIONS(6631), + [aux_sym_close_statement_token1] = ACTIONS(6629), + [aux_sym_put_statement_token1] = ACTIONS(6629), + [aux_sym_unlock_statement_token1] = ACTIONS(6629), + [aux_sym_seek_statement_token1] = ACTIONS(6629), + [sym_reset_statement] = ACTIONS(6629), + [aux_sym_raise_event_statement_token1] = ACTIONS(6629), + [sym_stop_statement] = ACTIONS(6629), + [sym_beep_statement] = ACTIONS(6629), + [aux_sym_unload_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token2] = ACTIONS(6629), + [aux_sym_def_type_statement_token3] = ACTIONS(6629), + [aux_sym_def_type_statement_token4] = ACTIONS(6629), + [aux_sym_def_type_statement_token5] = ACTIONS(6629), + [aux_sym_def_type_statement_token6] = ACTIONS(6629), + [aux_sym_def_type_statement_token7] = ACTIONS(6629), + [aux_sym_def_type_statement_token8] = ACTIONS(6629), + [aux_sym_def_type_statement_token9] = ACTIONS(6629), + [aux_sym_def_type_statement_token10] = ACTIONS(6629), + [aux_sym_def_type_statement_token11] = ACTIONS(6629), + [aux_sym_def_type_statement_token12] = ACTIONS(6629), + [aux_sym_def_type_statement_token13] = ACTIONS(6629), + [aux_sym_def_type_statement_token14] = ACTIONS(6629), + [aux_sym_call_statement_token1] = ACTIONS(6629), + [sym__ambiguous_call_statement] = ACTIONS(6629), + [aux_sym_addressof_expression_token1] = ACTIONS(6629), + [aux_sym_type_of_expression_token1] = ACTIONS(6629), + [aux_sym_unary_expression_token1] = ACTIONS(6629), + [sym_string_literal] = ACTIONS(6631), + [sym_number_literal] = ACTIONS(6631), + [aux_sym_boolean_literal_token1] = ACTIONS(6629), + [aux_sym_boolean_literal_token2] = ACTIONS(6629), + [sym_nothing_literal] = ACTIONS(6629), + [sym_null_literal] = ACTIONS(6629), + [sym_empty_literal] = ACTIONS(6629), + [sym_date_literal] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6629), + }, + [STATE(1966)] = { + [sym_identifier] = ACTIONS(4745), + [sym_newline] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4745), + [aux_sym_frm_property_statement_token1] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_BANG] = ACTIONS(4747), + [aux_sym__attribute_identifier_token1] = ACTIONS(4745), + [aux_sym_option_statement_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4745), + [aux_sym_preprocessor_const_token1] = ACTIONS(4745), + [sym_static_modifier] = ACTIONS(4745), + [sym__dim_keyword] = ACTIONS(4745), + [sym__redim_keyword] = ACTIONS(4745), + [aux_sym_get_accessor_token1] = ACTIONS(4745), + [aux_sym_set_accessor_token1] = ACTIONS(4745), + [anon_sym_COMMA] = ACTIONS(4747), + [aux_sym_const_declaration_token1] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4747), + [aux_sym_as_type_clause_token2] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4747), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4745), + [aux_sym_visibility_token1] = ACTIONS(4745), + [aux_sym_visibility_token2] = ACTIONS(4745), + [aux_sym_elseif_fragment_token1] = ACTIONS(4745), + [aux_sym_else_fragment_token1] = ACTIONS(4745), + [aux_sym_select_statement_token1] = ACTIONS(4745), + [aux_sym_case_expression_token1] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_LT_EQ] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_GT_EQ] = ACTIONS(4747), + [anon_sym_LT_GT] = ACTIONS(4747), + [aux_sym__for_header_token1] = ACTIONS(4745), + [aux_sym_do_statement_token1] = ACTIONS(4745), + [aux_sym_do_condition_token1] = ACTIONS(4745), + [aux_sym_with_statement_token1] = ACTIONS(4745), + [aux_sym_exit_statement_token1] = ACTIONS(4745), + [sym_end_statement] = ACTIONS(4747), + [aux_sym_on_goto_statement_token1] = ACTIONS(4745), + [aux_sym_on_goto_statement_token2] = ACTIONS(4745), + [aux_sym_on_error_statement_token2] = ACTIONS(4745), + [sym__ambiguous_redim_statement] = ACTIONS(4747), + [aux_sym_erase_statement_token1] = ACTIONS(4745), + [aux_sym_open_statement_token1] = ACTIONS(4745), + [aux_sym_file_mode_token2] = ACTIONS(4745), + [aux_sym_file_access_token2] = ACTIONS(4745), + [aux_sym_file_lock_token2] = ACTIONS(4745), + [aux_sym_print_statement_token1] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_BSLASH] = ACTIONS(4747), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4745), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [aux_sym_close_statement_token1] = ACTIONS(4745), + [aux_sym_put_statement_token1] = ACTIONS(4745), + [aux_sym_unlock_statement_token1] = ACTIONS(4745), + [aux_sym_seek_statement_token1] = ACTIONS(4745), + [sym_reset_statement] = ACTIONS(4745), + [aux_sym_raise_event_statement_token1] = ACTIONS(4745), + [sym_stop_statement] = ACTIONS(4745), + [sym_beep_statement] = ACTIONS(4745), + [aux_sym_unload_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token2] = ACTIONS(4745), + [aux_sym_def_type_statement_token3] = ACTIONS(4745), + [aux_sym_def_type_statement_token4] = ACTIONS(4745), + [aux_sym_def_type_statement_token5] = ACTIONS(4745), + [aux_sym_def_type_statement_token6] = ACTIONS(4745), + [aux_sym_def_type_statement_token7] = ACTIONS(4745), + [aux_sym_def_type_statement_token8] = ACTIONS(4745), + [aux_sym_def_type_statement_token9] = ACTIONS(4745), + [aux_sym_def_type_statement_token10] = ACTIONS(4745), + [aux_sym_def_type_statement_token11] = ACTIONS(4745), + [aux_sym_def_type_statement_token12] = ACTIONS(4745), + [aux_sym_def_type_statement_token13] = ACTIONS(4745), + [aux_sym_def_type_statement_token14] = ACTIONS(4745), + [aux_sym_call_statement_token1] = ACTIONS(4745), + [sym__ambiguous_call_statement] = ACTIONS(4745), + [aux_sym_comparison_operator_token1] = ACTIONS(4745), + [aux_sym_addressof_expression_token1] = ACTIONS(4745), + [aux_sym_type_of_expression_token1] = ACTIONS(4745), + [aux_sym_unary_expression_token1] = ACTIONS(4745), + [sym_string_literal] = ACTIONS(4747), + [sym_number_literal] = ACTIONS(4747), + [aux_sym_boolean_literal_token1] = ACTIONS(4745), + [aux_sym_boolean_literal_token2] = ACTIONS(4745), + [sym_nothing_literal] = ACTIONS(4745), + [sym_null_literal] = ACTIONS(4745), + [sym_empty_literal] = ACTIONS(4745), + [sym_date_literal] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4745), + }, + [STATE(1967)] = { + [sym_identifier] = ACTIONS(4749), + [sym_newline] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4751), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4749), + [aux_sym_frm_property_statement_token1] = ACTIONS(4749), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_DOT] = ACTIONS(4749), + [anon_sym_BANG] = ACTIONS(4751), + [aux_sym__attribute_identifier_token1] = ACTIONS(4749), + [aux_sym_option_statement_token3] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4749), + [aux_sym_preprocessor_const_token1] = ACTIONS(4749), + [sym_static_modifier] = ACTIONS(4749), + [sym__dim_keyword] = ACTIONS(4749), + [sym__redim_keyword] = ACTIONS(4749), + [aux_sym_get_accessor_token1] = ACTIONS(4749), + [aux_sym_set_accessor_token1] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4751), + [aux_sym_const_declaration_token1] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4751), + [aux_sym_as_type_clause_token2] = ACTIONS(4749), + [anon_sym_STAR] = ACTIONS(4751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4749), + [aux_sym_visibility_token1] = ACTIONS(4749), + [aux_sym_visibility_token2] = ACTIONS(4749), + [aux_sym_elseif_fragment_token1] = ACTIONS(4749), + [aux_sym_else_fragment_token1] = ACTIONS(4749), + [aux_sym_select_statement_token1] = ACTIONS(4749), + [aux_sym_case_expression_token1] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4749), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_LT_GT] = ACTIONS(4751), + [aux_sym__for_header_token1] = ACTIONS(4749), + [aux_sym_do_statement_token1] = ACTIONS(4749), + [aux_sym_do_condition_token1] = ACTIONS(4749), + [aux_sym_with_statement_token1] = ACTIONS(4749), + [aux_sym_exit_statement_token1] = ACTIONS(4749), + [sym_end_statement] = ACTIONS(4751), + [aux_sym_on_goto_statement_token1] = ACTIONS(4749), + [aux_sym_on_goto_statement_token2] = ACTIONS(4749), + [aux_sym_on_error_statement_token2] = ACTIONS(4749), + [sym__ambiguous_redim_statement] = ACTIONS(4751), + [aux_sym_erase_statement_token1] = ACTIONS(4749), + [aux_sym_open_statement_token1] = ACTIONS(4749), + [aux_sym_file_mode_token2] = ACTIONS(4749), + [aux_sym_file_access_token2] = ACTIONS(4749), + [aux_sym_file_lock_token2] = ACTIONS(4749), + [aux_sym_print_statement_token1] = ACTIONS(4749), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_BSLASH] = ACTIONS(4751), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4749), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_QMARK] = ACTIONS(4751), + [aux_sym_close_statement_token1] = ACTIONS(4749), + [aux_sym_put_statement_token1] = ACTIONS(4749), + [aux_sym_unlock_statement_token1] = ACTIONS(4749), + [aux_sym_seek_statement_token1] = ACTIONS(4749), + [sym_reset_statement] = ACTIONS(4749), + [aux_sym_raise_event_statement_token1] = ACTIONS(4749), + [sym_stop_statement] = ACTIONS(4749), + [sym_beep_statement] = ACTIONS(4749), + [aux_sym_unload_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token1] = ACTIONS(4749), + [aux_sym_def_type_statement_token2] = ACTIONS(4749), + [aux_sym_def_type_statement_token3] = ACTIONS(4749), + [aux_sym_def_type_statement_token4] = ACTIONS(4749), + [aux_sym_def_type_statement_token5] = ACTIONS(4749), + [aux_sym_def_type_statement_token6] = ACTIONS(4749), + [aux_sym_def_type_statement_token7] = ACTIONS(4749), + [aux_sym_def_type_statement_token8] = ACTIONS(4749), + [aux_sym_def_type_statement_token9] = ACTIONS(4749), + [aux_sym_def_type_statement_token10] = ACTIONS(4749), + [aux_sym_def_type_statement_token11] = ACTIONS(4749), + [aux_sym_def_type_statement_token12] = ACTIONS(4749), + [aux_sym_def_type_statement_token13] = ACTIONS(4749), + [aux_sym_def_type_statement_token14] = ACTIONS(4749), + [aux_sym_call_statement_token1] = ACTIONS(4749), + [sym__ambiguous_call_statement] = ACTIONS(4749), + [aux_sym_comparison_operator_token1] = ACTIONS(4749), + [aux_sym_addressof_expression_token1] = ACTIONS(4749), + [aux_sym_type_of_expression_token1] = ACTIONS(4749), + [aux_sym_unary_expression_token1] = ACTIONS(4749), + [sym_string_literal] = ACTIONS(4751), + [sym_number_literal] = ACTIONS(4751), + [aux_sym_boolean_literal_token1] = ACTIONS(4749), + [aux_sym_boolean_literal_token2] = ACTIONS(4749), + [sym_nothing_literal] = ACTIONS(4749), + [sym_null_literal] = ACTIONS(4749), + [sym_empty_literal] = ACTIONS(4749), + [sym_date_literal] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4749), + }, + [STATE(1968)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_statement_token2] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(1969)] = { + [sym_identifier] = ACTIONS(5775), + [sym_newline] = ACTIONS(5777), + [anon_sym_COLON] = ACTIONS(5777), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5775), + [aux_sym_frm_property_statement_token1] = ACTIONS(5775), + [anon_sym_DOT] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5777), + [aux_sym__attribute_identifier_token1] = ACTIONS(5775), + [aux_sym_option_statement_token3] = ACTIONS(5775), + [aux_sym_type_declaration_token1] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5775), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5775), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5775), + [aux_sym_enum_declaration_token1] = ACTIONS(5775), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5775), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5775), + [aux_sym_declare_function_statement_token1] = ACTIONS(5775), + [aux_sym_preprocessor_const_token1] = ACTIONS(5775), + [aux_sym__property_get_header_token1] = ACTIONS(5775), + [aux_sym_event_declaration_token1] = ACTIONS(5775), + [sym_static_modifier] = ACTIONS(5775), + [sym__dim_keyword] = ACTIONS(5775), + [sym__redim_keyword] = ACTIONS(5775), + [aux_sym_get_accessor_token1] = ACTIONS(5775), + [aux_sym_set_accessor_token1] = ACTIONS(5775), + [aux_sym_const_declaration_token1] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5777), + [aux_sym_as_type_clause_token2] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(5572), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5775), + [aux_sym_visibility_token1] = ACTIONS(5775), + [aux_sym_visibility_token2] = ACTIONS(5775), + [aux_sym_elseif_fragment_token1] = ACTIONS(5775), + [aux_sym_else_fragment_token1] = ACTIONS(5775), + [aux_sym_select_statement_token1] = ACTIONS(5775), + [aux_sym__for_header_token1] = ACTIONS(5775), + [aux_sym_do_statement_token1] = ACTIONS(5775), + [aux_sym_do_condition_token1] = ACTIONS(5775), + [aux_sym_with_statement_token1] = ACTIONS(5775), + [aux_sym_exit_statement_token1] = ACTIONS(5775), + [sym_end_statement] = ACTIONS(5777), + [aux_sym_on_goto_statement_token1] = ACTIONS(5775), + [aux_sym_on_goto_statement_token2] = ACTIONS(5775), + [aux_sym_on_error_statement_token2] = ACTIONS(5775), + [sym__ambiguous_redim_statement] = ACTIONS(5777), + [aux_sym_erase_statement_token1] = ACTIONS(5775), + [aux_sym_open_statement_token1] = ACTIONS(5775), + [aux_sym_file_mode_token2] = ACTIONS(5775), + [aux_sym_file_access_token2] = ACTIONS(5775), + [aux_sym_file_lock_token2] = ACTIONS(5775), + [aux_sym_print_statement_token1] = ACTIONS(5775), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_SLASH] = ACTIONS(5572), + [anon_sym_BSLASH] = ACTIONS(5576), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5578), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_AMP] = ACTIONS(5584), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5586), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5588), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5590), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5592), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5594), + [anon_sym_QMARK] = ACTIONS(5777), + [aux_sym_close_statement_token1] = ACTIONS(5775), + [aux_sym_put_statement_token1] = ACTIONS(5775), + [aux_sym_unlock_statement_token1] = ACTIONS(5775), + [aux_sym_seek_statement_token1] = ACTIONS(5775), + [sym_reset_statement] = ACTIONS(5775), + [aux_sym_raise_event_statement_token1] = ACTIONS(5775), + [sym_stop_statement] = ACTIONS(5775), + [sym_beep_statement] = ACTIONS(5775), + [aux_sym_unload_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token2] = ACTIONS(5775), + [aux_sym_def_type_statement_token3] = ACTIONS(5775), + [aux_sym_def_type_statement_token4] = ACTIONS(5775), + [aux_sym_def_type_statement_token5] = ACTIONS(5775), + [aux_sym_def_type_statement_token6] = ACTIONS(5775), + [aux_sym_def_type_statement_token7] = ACTIONS(5775), + [aux_sym_def_type_statement_token8] = ACTIONS(5775), + [aux_sym_def_type_statement_token9] = ACTIONS(5775), + [aux_sym_def_type_statement_token10] = ACTIONS(5775), + [aux_sym_def_type_statement_token11] = ACTIONS(5775), + [aux_sym_def_type_statement_token12] = ACTIONS(5775), + [aux_sym_def_type_statement_token13] = ACTIONS(5775), + [aux_sym_def_type_statement_token14] = ACTIONS(5775), + [aux_sym_call_statement_token1] = ACTIONS(5775), + [sym__ambiguous_call_statement] = ACTIONS(5775), + [aux_sym_addressof_expression_token1] = ACTIONS(5775), + [aux_sym_type_of_expression_token1] = ACTIONS(5775), + [aux_sym_unary_expression_token1] = ACTIONS(5775), + [sym_string_literal] = ACTIONS(5777), + [sym_number_literal] = ACTIONS(5777), + [aux_sym_boolean_literal_token1] = ACTIONS(5775), + [aux_sym_boolean_literal_token2] = ACTIONS(5775), + [sym_nothing_literal] = ACTIONS(5775), + [sym_null_literal] = ACTIONS(5775), + [sym_empty_literal] = ACTIONS(5775), + [sym_date_literal] = ACTIONS(5777), + [anon_sym_POUND] = ACTIONS(5775), + }, + [STATE(1970)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_array_bound_token1] = ACTIONS(4447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_statement_token2] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(1971)] = { + [sym_identifier] = ACTIONS(4745), + [sym_newline] = ACTIONS(4747), + [anon_sym_COLON] = ACTIONS(4747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4745), + [aux_sym_frm_property_statement_token1] = ACTIONS(4745), + [anon_sym_EQ] = ACTIONS(4747), + [anon_sym_DOT] = ACTIONS(4745), + [anon_sym_BANG] = ACTIONS(4747), + [aux_sym__attribute_identifier_token1] = ACTIONS(4745), + [aux_sym_option_statement_token3] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4745), + [aux_sym_preprocessor_const_token1] = ACTIONS(4745), + [sym_static_modifier] = ACTIONS(4745), + [sym__dim_keyword] = ACTIONS(4745), + [sym__redim_keyword] = ACTIONS(4745), + [aux_sym_get_accessor_token1] = ACTIONS(4745), + [aux_sym_set_accessor_token1] = ACTIONS(4745), + [anon_sym_COMMA] = ACTIONS(4747), + [aux_sym_const_declaration_token1] = ACTIONS(4745), + [anon_sym_LPAREN] = ACTIONS(4747), + [aux_sym_as_type_clause_token2] = ACTIONS(4745), + [anon_sym_STAR] = ACTIONS(4747), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4745), + [aux_sym_visibility_token1] = ACTIONS(4745), + [aux_sym_visibility_token2] = ACTIONS(4745), + [aux_sym_elseif_fragment_token1] = ACTIONS(4745), + [aux_sym_else_fragment_token1] = ACTIONS(4745), + [aux_sym_select_statement_token1] = ACTIONS(4745), + [aux_sym_case_expression_token1] = ACTIONS(4745), + [anon_sym_LT] = ACTIONS(4745), + [anon_sym_LT_EQ] = ACTIONS(4747), + [anon_sym_GT] = ACTIONS(4745), + [anon_sym_GT_EQ] = ACTIONS(4747), + [anon_sym_LT_GT] = ACTIONS(4747), + [aux_sym__for_header_token1] = ACTIONS(4745), + [aux_sym_do_statement_token1] = ACTIONS(4745), + [aux_sym_do_condition_token1] = ACTIONS(4745), + [aux_sym_with_statement_token1] = ACTIONS(4745), + [aux_sym_exit_statement_token1] = ACTIONS(4745), + [sym_end_statement] = ACTIONS(4747), + [aux_sym_on_goto_statement_token1] = ACTIONS(4745), + [aux_sym_on_goto_statement_token2] = ACTIONS(4745), + [aux_sym_on_error_statement_token2] = ACTIONS(4745), + [sym__ambiguous_redim_statement] = ACTIONS(4747), + [aux_sym_erase_statement_token1] = ACTIONS(4745), + [aux_sym_open_statement_token1] = ACTIONS(4745), + [aux_sym_file_mode_token2] = ACTIONS(4745), + [aux_sym_file_access_token2] = ACTIONS(4745), + [aux_sym_file_lock_token2] = ACTIONS(4745), + [aux_sym_print_statement_token1] = ACTIONS(4745), + [anon_sym_CARET] = ACTIONS(4747), + [anon_sym_SLASH] = ACTIONS(4747), + [anon_sym_BSLASH] = ACTIONS(4747), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4745), + [anon_sym_PLUS] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4745), + [anon_sym_AMP] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4745), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4745), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [aux_sym_close_statement_token1] = ACTIONS(4745), + [aux_sym_put_statement_token1] = ACTIONS(4745), + [aux_sym_unlock_statement_token1] = ACTIONS(4745), + [aux_sym_seek_statement_token1] = ACTIONS(4745), + [sym_reset_statement] = ACTIONS(4745), + [aux_sym_raise_event_statement_token1] = ACTIONS(4745), + [sym_stop_statement] = ACTIONS(4745), + [sym_beep_statement] = ACTIONS(4745), + [aux_sym_unload_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token1] = ACTIONS(4745), + [aux_sym_def_type_statement_token2] = ACTIONS(4745), + [aux_sym_def_type_statement_token3] = ACTIONS(4745), + [aux_sym_def_type_statement_token4] = ACTIONS(4745), + [aux_sym_def_type_statement_token5] = ACTIONS(4745), + [aux_sym_def_type_statement_token6] = ACTIONS(4745), + [aux_sym_def_type_statement_token7] = ACTIONS(4745), + [aux_sym_def_type_statement_token8] = ACTIONS(4745), + [aux_sym_def_type_statement_token9] = ACTIONS(4745), + [aux_sym_def_type_statement_token10] = ACTIONS(4745), + [aux_sym_def_type_statement_token11] = ACTIONS(4745), + [aux_sym_def_type_statement_token12] = ACTIONS(4745), + [aux_sym_def_type_statement_token13] = ACTIONS(4745), + [aux_sym_def_type_statement_token14] = ACTIONS(4745), + [aux_sym_call_statement_token1] = ACTIONS(4745), + [sym__ambiguous_call_statement] = ACTIONS(4745), + [aux_sym_comparison_operator_token1] = ACTIONS(4745), + [aux_sym_addressof_expression_token1] = ACTIONS(4745), + [aux_sym_type_of_expression_token1] = ACTIONS(4745), + [aux_sym_unary_expression_token1] = ACTIONS(4745), + [sym_string_literal] = ACTIONS(4747), + [sym_number_literal] = ACTIONS(4747), + [aux_sym_boolean_literal_token1] = ACTIONS(4745), + [aux_sym_boolean_literal_token2] = ACTIONS(4745), + [sym_nothing_literal] = ACTIONS(4745), + [sym_null_literal] = ACTIONS(4745), + [sym_empty_literal] = ACTIONS(4745), + [sym_date_literal] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4745), + }, + [STATE(1972)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_array_bound_token1] = ACTIONS(4477), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_statement_token2] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(1973)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_declaration_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_enum_declaration_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4441), + [aux_sym_declare_function_statement_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [aux_sym__property_get_header_token1] = ACTIONS(4441), + [aux_sym_event_declaration_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1974)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_declaration_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_enum_declaration_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4451), + [aux_sym_declare_function_statement_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [aux_sym__property_get_header_token1] = ACTIONS(4451), + [aux_sym_event_declaration_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(6344), + [anon_sym_BSLASH] = ACTIONS(6348), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6350), + [anon_sym_PLUS] = ACTIONS(6352), + [anon_sym_DASH] = ACTIONS(6354), + [anon_sym_AMP] = ACTIONS(6356), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6358), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6360), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6364), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6366), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1975)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1976)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1977)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(6344), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1978)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(6344), + [anon_sym_BSLASH] = ACTIONS(6348), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1979)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(6344), + [anon_sym_BSLASH] = ACTIONS(6348), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6350), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1980)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(6344), + [anon_sym_BSLASH] = ACTIONS(6348), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6350), + [anon_sym_PLUS] = ACTIONS(6352), + [anon_sym_DASH] = ACTIONS(6354), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1981)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(6344), + [anon_sym_BSLASH] = ACTIONS(6348), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6350), + [anon_sym_PLUS] = ACTIONS(6352), + [anon_sym_DASH] = ACTIONS(6354), + [anon_sym_AMP] = ACTIONS(6356), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1982)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(6344), + [anon_sym_BSLASH] = ACTIONS(6348), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6350), + [anon_sym_PLUS] = ACTIONS(6352), + [anon_sym_DASH] = ACTIONS(6354), + [anon_sym_AMP] = ACTIONS(6356), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6358), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1983)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(6344), + [anon_sym_BSLASH] = ACTIONS(6348), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6350), + [anon_sym_PLUS] = ACTIONS(6352), + [anon_sym_DASH] = ACTIONS(6354), + [anon_sym_AMP] = ACTIONS(6356), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6358), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6360), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1984)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(6344), + [anon_sym_BSLASH] = ACTIONS(6348), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6350), + [anon_sym_PLUS] = ACTIONS(6352), + [anon_sym_DASH] = ACTIONS(6354), + [anon_sym_AMP] = ACTIONS(6356), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6358), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6360), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1985)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(6344), + [anon_sym_BSLASH] = ACTIONS(6348), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6350), + [anon_sym_PLUS] = ACTIONS(6352), + [anon_sym_DASH] = ACTIONS(6354), + [anon_sym_AMP] = ACTIONS(6356), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6358), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6360), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6364), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(1986)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6346), + [anon_sym_SLASH] = ACTIONS(6344), + [anon_sym_BSLASH] = ACTIONS(6348), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6350), + [anon_sym_PLUS] = ACTIONS(6352), + [anon_sym_DASH] = ACTIONS(6354), + [anon_sym_AMP] = ACTIONS(6356), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1987)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_array_bound_token1] = ACTIONS(4485), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_statement_token2] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(1988)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1989), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(6633), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(1989)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1992), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_array_bound_token1] = ACTIONS(4375), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(1990)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_array_bound_token1] = ACTIONS(4441), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_statement_token2] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(1991)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6254), + [aux_sym_array_bound_token1] = ACTIONS(4451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_statement_token2] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_BSLASH] = ACTIONS(6256), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6264), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6266), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6268), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6270), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6272), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6635), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(1992)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(1992), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(6637), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(1993)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(1994)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_array_bound_token1] = ACTIONS(4509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4509), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(1995)] = { + [sym_argument_list] = STATE(2152), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6640), + [anon_sym_BANG] = ACTIONS(6642), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(6644), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(1996)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(1997)] = { + [sym_identifier] = ACTIONS(3370), + [sym_newline] = ACTIONS(3364), + [anon_sym_COLON] = ACTIONS(6646), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3370), + [aux_sym_frm_property_statement_token1] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3364), + [aux_sym__attribute_identifier_token1] = ACTIONS(3370), + [aux_sym_option_statement_token3] = ACTIONS(3370), + [aux_sym_type_declaration_token1] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3370), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(3370), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(3370), + [aux_sym_enum_declaration_token1] = ACTIONS(3370), + [aux_sym_declare_sub_statement_token1] = ACTIONS(3370), + [aux_sym_declare_sub_statement_token2] = ACTIONS(3370), + [aux_sym_declare_function_statement_token1] = ACTIONS(3370), + [aux_sym_preprocessor_const_token1] = ACTIONS(3370), + [aux_sym__property_get_header_token1] = ACTIONS(3370), + [aux_sym_event_declaration_token1] = ACTIONS(3370), + [sym_static_modifier] = ACTIONS(3370), + [sym__dim_keyword] = ACTIONS(3370), + [sym__redim_keyword] = ACTIONS(3370), + [aux_sym_get_accessor_token1] = ACTIONS(3370), + [aux_sym_set_accessor_token1] = ACTIONS(3370), + [aux_sym_const_declaration_token1] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3364), + [aux_sym_as_type_clause_token2] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3370), + [aux_sym_visibility_token1] = ACTIONS(3370), + [aux_sym_visibility_token2] = ACTIONS(3370), + [aux_sym_elseif_fragment_token1] = ACTIONS(3370), + [aux_sym_else_fragment_token1] = ACTIONS(3370), + [aux_sym_select_statement_token1] = ACTIONS(3370), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(3370), + [sym_end_statement] = ACTIONS(3364), + [aux_sym_on_goto_statement_token1] = ACTIONS(3370), + [aux_sym_on_goto_statement_token2] = ACTIONS(3370), + [aux_sym_on_error_statement_token2] = ACTIONS(3370), + [sym__ambiguous_redim_statement] = ACTIONS(3364), + [aux_sym_erase_statement_token1] = ACTIONS(3370), + [aux_sym_open_statement_token1] = ACTIONS(3370), + [aux_sym_file_mode_token2] = ACTIONS(3370), + [aux_sym_file_access_token2] = ACTIONS(3370), + [aux_sym_file_lock_token2] = ACTIONS(3370), + [aux_sym_print_statement_token1] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(3364), + [aux_sym_close_statement_token1] = ACTIONS(3370), + [aux_sym_put_statement_token1] = ACTIONS(3370), + [aux_sym_unlock_statement_token1] = ACTIONS(3370), + [aux_sym_seek_statement_token1] = ACTIONS(3370), + [sym_reset_statement] = ACTIONS(3370), + [aux_sym_raise_event_statement_token1] = ACTIONS(3370), + [sym_stop_statement] = ACTIONS(3370), + [sym_beep_statement] = ACTIONS(3370), + [aux_sym_unload_statement_token1] = ACTIONS(3370), + [aux_sym_def_type_statement_token1] = ACTIONS(3370), + [aux_sym_def_type_statement_token2] = ACTIONS(3370), + [aux_sym_def_type_statement_token3] = ACTIONS(3370), + [aux_sym_def_type_statement_token4] = ACTIONS(3370), + [aux_sym_def_type_statement_token5] = ACTIONS(3370), + [aux_sym_def_type_statement_token6] = ACTIONS(3370), + [aux_sym_def_type_statement_token7] = ACTIONS(3370), + [aux_sym_def_type_statement_token8] = ACTIONS(3370), + [aux_sym_def_type_statement_token9] = ACTIONS(3370), + [aux_sym_def_type_statement_token10] = ACTIONS(3370), + [aux_sym_def_type_statement_token11] = ACTIONS(3370), + [aux_sym_def_type_statement_token12] = ACTIONS(3370), + [aux_sym_def_type_statement_token13] = ACTIONS(3370), + [aux_sym_def_type_statement_token14] = ACTIONS(3370), + [aux_sym_call_statement_token1] = ACTIONS(3370), + [sym__ambiguous_call_statement] = ACTIONS(3370), + [aux_sym_addressof_expression_token1] = ACTIONS(3370), + [aux_sym_type_of_expression_token1] = ACTIONS(3370), + [aux_sym_unary_expression_token1] = ACTIONS(3370), + [sym_string_literal] = ACTIONS(3364), + [sym_number_literal] = ACTIONS(3364), + [aux_sym_boolean_literal_token1] = ACTIONS(3370), + [aux_sym_boolean_literal_token2] = ACTIONS(3370), + [sym_nothing_literal] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3370), + [sym_empty_literal] = ACTIONS(3370), + [sym_date_literal] = ACTIONS(3364), + [anon_sym_POUND] = ACTIONS(3370), + }, + [STATE(1998)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(1999)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2000)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_array_bound_token1] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(2001)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6648), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(6648), + [anon_sym_BSLASH] = ACTIONS(6652), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6654), + [anon_sym_PLUS] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6660), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2002)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token3] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(2003)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_declaration_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_enum_declaration_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4625), + [aux_sym_declare_function_statement_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [aux_sym__property_get_header_token1] = ACTIONS(4625), + [aux_sym_event_declaration_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_array_bound_token1] = ACTIONS(4625), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(2004)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2005)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token3] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(2006)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6648), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(6648), + [anon_sym_BSLASH] = ACTIONS(6652), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6654), + [anon_sym_PLUS] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6660), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6662), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6664), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6666), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2007)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6648), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(6648), + [anon_sym_BSLASH] = ACTIONS(6652), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6654), + [anon_sym_PLUS] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6660), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6662), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6664), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6666), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6668), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2008)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_array_bound_token1] = ACTIONS(4447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(2009)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token3] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(2010)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_array_bound_token1] = ACTIONS(4477), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(2011)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2012)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_array_bound_token1] = ACTIONS(4485), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(2013)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token3] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6672), + [anon_sym_SLASH] = ACTIONS(6670), + [anon_sym_BSLASH] = ACTIONS(6674), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6676), + [anon_sym_PLUS] = ACTIONS(6678), + [anon_sym_DASH] = ACTIONS(6680), + [anon_sym_AMP] = ACTIONS(6682), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2014)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(6274), + [anon_sym_BANG] = ACTIONS(6276), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2015)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2016)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2017)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_declaration_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_enum_declaration_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4447), + [aux_sym_declare_function_statement_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [aux_sym__property_get_header_token1] = ACTIONS(4447), + [aux_sym_event_declaration_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_array_bound_token1] = ACTIONS(4447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(2018)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2019)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token3] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2020)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_declaration_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_enum_declaration_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4437), + [aux_sym_declare_function_statement_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [aux_sym__property_get_header_token1] = ACTIONS(4437), + [aux_sym_event_declaration_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_array_bound_token1] = ACTIONS(4437), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(2021)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6494), + [anon_sym_BANG] = ACTIONS(6496), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2022)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_declaration_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_enum_declaration_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4601), + [aux_sym_declare_function_statement_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [aux_sym__property_get_header_token1] = ACTIONS(4601), + [aux_sym_event_declaration_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_array_bound_token1] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(2023)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_array_bound_token1] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2024)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_declaration_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_enum_declaration_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4609), + [aux_sym_declare_function_statement_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [aux_sym__property_get_header_token1] = ACTIONS(4609), + [aux_sym_event_declaration_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_array_bound_token1] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(2025)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token3] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2026)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(5058), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(5056), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_BSLASH] = ACTIONS(5060), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5062), + [anon_sym_PLUS] = ACTIONS(5064), + [anon_sym_DASH] = ACTIONS(5066), + [anon_sym_AMP] = ACTIONS(5068), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2027)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6648), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token3] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(6648), + [anon_sym_BSLASH] = ACTIONS(6652), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6654), + [anon_sym_PLUS] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6660), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2028)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_array_bound_token1] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(2029)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2030)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_array_bound_token1] = ACTIONS(4441), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6684), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2031)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token3] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(2032)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6686), + [aux_sym_array_bound_token1] = ACTIONS(4647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6686), + [anon_sym_BSLASH] = ACTIONS(6690), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6692), + [anon_sym_PLUS] = ACTIONS(6694), + [anon_sym_DASH] = ACTIONS(6696), + [anon_sym_AMP] = ACTIONS(6698), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2033)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2034)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6700), + [aux_sym_array_bound_token1] = ACTIONS(4451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6684), + [anon_sym_SLASH] = ACTIONS(6700), + [anon_sym_BSLASH] = ACTIONS(6702), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6704), + [anon_sym_PLUS] = ACTIONS(6706), + [anon_sym_DASH] = ACTIONS(6708), + [anon_sym_AMP] = ACTIONS(6710), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6712), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6714), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6716), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6718), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6720), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2035)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_declaration_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_enum_declaration_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4477), + [aux_sym_declare_function_statement_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [aux_sym__property_get_header_token1] = ACTIONS(4477), + [aux_sym_event_declaration_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_array_bound_token1] = ACTIONS(4477), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(2036)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_declaration_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_enum_declaration_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4593), + [aux_sym_declare_function_statement_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [aux_sym__property_get_header_token1] = ACTIONS(4593), + [aux_sym_event_declaration_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token3] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(2037)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_declaration_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_enum_declaration_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4625), + [aux_sym_declare_function_statement_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [aux_sym__property_get_header_token1] = ACTIONS(4625), + [aux_sym_event_declaration_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token3] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(2038)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2039)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_declaration_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_enum_declaration_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4589), + [aux_sym_declare_function_statement_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [aux_sym__property_get_header_token1] = ACTIONS(4589), + [aux_sym_event_declaration_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token3] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(2040)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_declaration_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_enum_declaration_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4597), + [aux_sym_declare_function_statement_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [aux_sym__property_get_header_token1] = ACTIONS(4597), + [aux_sym_event_declaration_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token3] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(2041)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_declaration_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_enum_declaration_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4485), + [aux_sym_declare_function_statement_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [aux_sym__property_get_header_token1] = ACTIONS(4485), + [aux_sym_event_declaration_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_array_bound_token1] = ACTIONS(4485), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(2042)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token3] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(2043)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6672), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2044)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6672), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2045)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6672), + [anon_sym_SLASH] = ACTIONS(6670), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2046)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6672), + [anon_sym_SLASH] = ACTIONS(6670), + [anon_sym_BSLASH] = ACTIONS(6674), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2047)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6672), + [anon_sym_SLASH] = ACTIONS(6670), + [anon_sym_BSLASH] = ACTIONS(6674), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6676), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2048)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6672), + [anon_sym_SLASH] = ACTIONS(6670), + [anon_sym_BSLASH] = ACTIONS(6674), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6676), + [anon_sym_PLUS] = ACTIONS(6678), + [anon_sym_DASH] = ACTIONS(6680), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2049)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6672), + [anon_sym_SLASH] = ACTIONS(6670), + [anon_sym_BSLASH] = ACTIONS(6674), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6676), + [anon_sym_PLUS] = ACTIONS(6678), + [anon_sym_DASH] = ACTIONS(6680), + [anon_sym_AMP] = ACTIONS(6682), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2050)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6672), + [anon_sym_SLASH] = ACTIONS(6670), + [anon_sym_BSLASH] = ACTIONS(6674), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6676), + [anon_sym_PLUS] = ACTIONS(6678), + [anon_sym_DASH] = ACTIONS(6680), + [anon_sym_AMP] = ACTIONS(6682), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6722), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2051)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6672), + [anon_sym_SLASH] = ACTIONS(6670), + [anon_sym_BSLASH] = ACTIONS(6674), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6676), + [anon_sym_PLUS] = ACTIONS(6678), + [anon_sym_DASH] = ACTIONS(6680), + [anon_sym_AMP] = ACTIONS(6682), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6722), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6724), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2052)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6672), + [anon_sym_SLASH] = ACTIONS(6670), + [anon_sym_BSLASH] = ACTIONS(6674), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6676), + [anon_sym_PLUS] = ACTIONS(6678), + [anon_sym_DASH] = ACTIONS(6680), + [anon_sym_AMP] = ACTIONS(6682), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6722), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6724), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6726), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2053)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6672), + [anon_sym_SLASH] = ACTIONS(6670), + [anon_sym_BSLASH] = ACTIONS(6674), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6676), + [anon_sym_PLUS] = ACTIONS(6678), + [anon_sym_DASH] = ACTIONS(6680), + [anon_sym_AMP] = ACTIONS(6682), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6722), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6724), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6726), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6728), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2054)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2055)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6648), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token3] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(6648), + [anon_sym_BSLASH] = ACTIONS(6652), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6654), + [anon_sym_PLUS] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6660), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6662), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6664), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6666), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6668), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6730), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2056)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2057)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_array_bound_token1] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2058)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2059)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(6400), + [anon_sym_BANG] = ACTIONS(6402), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2060)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6700), + [aux_sym_array_bound_token1] = ACTIONS(4647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6684), + [anon_sym_SLASH] = ACTIONS(6700), + [anon_sym_BSLASH] = ACTIONS(6702), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6704), + [anon_sym_PLUS] = ACTIONS(6706), + [anon_sym_DASH] = ACTIONS(6708), + [anon_sym_AMP] = ACTIONS(6710), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2061)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_declaration_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_enum_declaration_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4441), + [aux_sym_declare_function_statement_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [aux_sym__property_get_header_token1] = ACTIONS(4441), + [aux_sym_event_declaration_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_array_bound_token1] = ACTIONS(4441), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2062)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_array_bound_token1] = ACTIONS(4509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(2063)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2064)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_declaration_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_enum_declaration_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4451), + [aux_sym_declare_function_statement_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [aux_sym__property_get_header_token1] = ACTIONS(4451), + [aux_sym_event_declaration_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6686), + [aux_sym_array_bound_token1] = ACTIONS(4451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6686), + [anon_sym_BSLASH] = ACTIONS(6690), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6692), + [anon_sym_PLUS] = ACTIONS(6694), + [anon_sym_DASH] = ACTIONS(6696), + [anon_sym_AMP] = ACTIONS(6698), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6732), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6734), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6736), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6738), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6740), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2065)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_declaration_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_enum_declaration_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4593), + [aux_sym_declare_function_statement_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [aux_sym__property_get_header_token1] = ACTIONS(4593), + [aux_sym_event_declaration_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_array_bound_token1] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(2066)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_declaration_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_enum_declaration_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4597), + [aux_sym_declare_function_statement_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [aux_sym__property_get_header_token1] = ACTIONS(4597), + [aux_sym_event_declaration_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_array_bound_token1] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(2067)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token3] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(2068)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2069)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2070)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2071)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_declaration_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_enum_declaration_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4437), + [aux_sym_declare_function_statement_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [aux_sym__property_get_header_token1] = ACTIONS(4437), + [aux_sym_event_declaration_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token3] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(2072)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_declaration_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_enum_declaration_token1] = ACTIONS(5913), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5913), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5913), + [aux_sym_declare_function_statement_token1] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [aux_sym__property_get_header_token1] = ACTIONS(5913), + [aux_sym_event_declaration_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(6670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token3] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(6672), + [anon_sym_SLASH] = ACTIONS(6670), + [anon_sym_BSLASH] = ACTIONS(6674), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6676), + [anon_sym_PLUS] = ACTIONS(6678), + [anon_sym_DASH] = ACTIONS(6680), + [anon_sym_AMP] = ACTIONS(6682), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6722), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6724), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6726), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6728), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6742), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(2073)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_declaration_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_enum_declaration_token1] = ACTIONS(5913), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5913), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5913), + [aux_sym_declare_function_statement_token1] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [aux_sym__property_get_header_token1] = ACTIONS(5913), + [aux_sym_event_declaration_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token3] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(2074)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6648), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(6648), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2075)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2076)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6648), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(6648), + [anon_sym_BSLASH] = ACTIONS(6652), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2077)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2078)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2079)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_declaration_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_enum_declaration_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4589), + [aux_sym_declare_function_statement_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [aux_sym__property_get_header_token1] = ACTIONS(4589), + [aux_sym_event_declaration_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_array_bound_token1] = ACTIONS(4589), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(2080)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token3] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(2081)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2082)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6640), + [anon_sym_BANG] = ACTIONS(6642), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2083)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_array_bound_token1] = ACTIONS(4589), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(2084)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_array_bound_token1] = ACTIONS(4437), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(2085)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2086)] = { + [sym_identifier] = ACTIONS(6117), + [sym_newline] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6117), + [aux_sym_frm_property_statement_token1] = ACTIONS(6117), + [anon_sym_DOT] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6119), + [aux_sym__attribute_identifier_token1] = ACTIONS(6117), + [aux_sym_option_statement_token3] = ACTIONS(6117), + [aux_sym_type_declaration_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6117), + [aux_sym_enum_declaration_token1] = ACTIONS(6117), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6117), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6117), + [aux_sym_declare_function_statement_token1] = ACTIONS(6117), + [aux_sym_preprocessor_const_token1] = ACTIONS(6117), + [aux_sym__property_get_header_token1] = ACTIONS(6117), + [aux_sym_event_declaration_token1] = ACTIONS(6117), + [sym_static_modifier] = ACTIONS(6117), + [sym__dim_keyword] = ACTIONS(6117), + [sym__redim_keyword] = ACTIONS(6117), + [aux_sym_get_accessor_token1] = ACTIONS(6117), + [aux_sym_set_accessor_token1] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6119), + [aux_sym_const_declaration_token1] = ACTIONS(6117), + [anon_sym_LPAREN] = ACTIONS(6119), + [aux_sym_as_type_clause_token2] = ACTIONS(6117), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6117), + [aux_sym_visibility_token1] = ACTIONS(6117), + [aux_sym_visibility_token2] = ACTIONS(6117), + [aux_sym_elseif_fragment_token1] = ACTIONS(6117), + [aux_sym_else_fragment_token1] = ACTIONS(6117), + [aux_sym_select_statement_token1] = ACTIONS(6117), + [aux_sym__for_header_token1] = ACTIONS(6117), + [aux_sym_do_statement_token1] = ACTIONS(6117), + [aux_sym_do_condition_token1] = ACTIONS(6117), + [aux_sym_with_statement_token1] = ACTIONS(6117), + [aux_sym_exit_statement_token1] = ACTIONS(6117), + [sym_end_statement] = ACTIONS(6119), + [aux_sym_on_goto_statement_token1] = ACTIONS(6117), + [aux_sym_on_goto_statement_token2] = ACTIONS(6117), + [aux_sym_on_error_statement_token2] = ACTIONS(6117), + [sym__ambiguous_redim_statement] = ACTIONS(6119), + [aux_sym_erase_statement_token1] = ACTIONS(6117), + [aux_sym_open_statement_token1] = ACTIONS(6117), + [aux_sym_file_mode_token2] = ACTIONS(6117), + [aux_sym_file_access_token2] = ACTIONS(6117), + [aux_sym_file_lock_token2] = ACTIONS(6117), + [aux_sym_print_statement_token1] = ACTIONS(6117), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4998), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5000), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5002), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5004), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5006), + [anon_sym_QMARK] = ACTIONS(6119), + [aux_sym_close_statement_token1] = ACTIONS(6117), + [aux_sym_put_statement_token1] = ACTIONS(6117), + [aux_sym_unlock_statement_token1] = ACTIONS(6117), + [aux_sym_seek_statement_token1] = ACTIONS(6117), + [sym_reset_statement] = ACTIONS(6117), + [aux_sym_raise_event_statement_token1] = ACTIONS(6117), + [sym_stop_statement] = ACTIONS(6117), + [sym_beep_statement] = ACTIONS(6117), + [aux_sym_unload_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token2] = ACTIONS(6117), + [aux_sym_def_type_statement_token3] = ACTIONS(6117), + [aux_sym_def_type_statement_token4] = ACTIONS(6117), + [aux_sym_def_type_statement_token5] = ACTIONS(6117), + [aux_sym_def_type_statement_token6] = ACTIONS(6117), + [aux_sym_def_type_statement_token7] = ACTIONS(6117), + [aux_sym_def_type_statement_token8] = ACTIONS(6117), + [aux_sym_def_type_statement_token9] = ACTIONS(6117), + [aux_sym_def_type_statement_token10] = ACTIONS(6117), + [aux_sym_def_type_statement_token11] = ACTIONS(6117), + [aux_sym_def_type_statement_token12] = ACTIONS(6117), + [aux_sym_def_type_statement_token13] = ACTIONS(6117), + [aux_sym_def_type_statement_token14] = ACTIONS(6117), + [aux_sym_call_statement_token1] = ACTIONS(6117), + [sym__ambiguous_call_statement] = ACTIONS(6117), + [aux_sym_addressof_expression_token1] = ACTIONS(6117), + [aux_sym_type_of_expression_token1] = ACTIONS(6117), + [aux_sym_unary_expression_token1] = ACTIONS(6117), + [sym_string_literal] = ACTIONS(6119), + [sym_number_literal] = ACTIONS(6119), + [aux_sym_boolean_literal_token1] = ACTIONS(6117), + [aux_sym_boolean_literal_token2] = ACTIONS(6117), + [sym_nothing_literal] = ACTIONS(6117), + [sym_null_literal] = ACTIONS(6117), + [sym_empty_literal] = ACTIONS(6117), + [sym_date_literal] = ACTIONS(6119), + [anon_sym_POUND] = ACTIONS(6117), + }, + [STATE(2087)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6684), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2088)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6684), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2089)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6700), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6684), + [anon_sym_SLASH] = ACTIONS(6700), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2090)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6700), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6684), + [anon_sym_SLASH] = ACTIONS(6700), + [anon_sym_BSLASH] = ACTIONS(6702), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2091)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6700), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6684), + [anon_sym_SLASH] = ACTIONS(6700), + [anon_sym_BSLASH] = ACTIONS(6702), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6704), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2092)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6700), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6684), + [anon_sym_SLASH] = ACTIONS(6700), + [anon_sym_BSLASH] = ACTIONS(6702), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6704), + [anon_sym_PLUS] = ACTIONS(6706), + [anon_sym_DASH] = ACTIONS(6708), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2093)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6700), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6684), + [anon_sym_SLASH] = ACTIONS(6700), + [anon_sym_BSLASH] = ACTIONS(6702), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6704), + [anon_sym_PLUS] = ACTIONS(6706), + [anon_sym_DASH] = ACTIONS(6708), + [anon_sym_AMP] = ACTIONS(6710), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2094)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6700), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6684), + [anon_sym_SLASH] = ACTIONS(6700), + [anon_sym_BSLASH] = ACTIONS(6702), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6704), + [anon_sym_PLUS] = ACTIONS(6706), + [anon_sym_DASH] = ACTIONS(6708), + [anon_sym_AMP] = ACTIONS(6710), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6712), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2095)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6700), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6684), + [anon_sym_SLASH] = ACTIONS(6700), + [anon_sym_BSLASH] = ACTIONS(6702), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6704), + [anon_sym_PLUS] = ACTIONS(6706), + [anon_sym_DASH] = ACTIONS(6708), + [anon_sym_AMP] = ACTIONS(6710), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6712), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6714), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2096)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6700), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6684), + [anon_sym_SLASH] = ACTIONS(6700), + [anon_sym_BSLASH] = ACTIONS(6702), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6704), + [anon_sym_PLUS] = ACTIONS(6706), + [anon_sym_DASH] = ACTIONS(6708), + [anon_sym_AMP] = ACTIONS(6710), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6712), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6714), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6716), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2097)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6700), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6684), + [anon_sym_SLASH] = ACTIONS(6700), + [anon_sym_BSLASH] = ACTIONS(6702), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6704), + [anon_sym_PLUS] = ACTIONS(6706), + [anon_sym_DASH] = ACTIONS(6708), + [anon_sym_AMP] = ACTIONS(6710), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6712), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6714), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6716), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6718), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2098)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_declaration_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_enum_declaration_token1] = ACTIONS(5913), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5913), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5913), + [aux_sym_declare_function_statement_token1] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [aux_sym__property_get_header_token1] = ACTIONS(5913), + [aux_sym_event_declaration_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5915), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(2099)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_declaration_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_enum_declaration_token1] = ACTIONS(5913), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5913), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5913), + [aux_sym_declare_function_statement_token1] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [aux_sym__property_get_header_token1] = ACTIONS(5913), + [aux_sym_event_declaration_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5915), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(2100)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_array_bound_token1] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2101)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6700), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6684), + [anon_sym_SLASH] = ACTIONS(6700), + [anon_sym_BSLASH] = ACTIONS(6702), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6704), + [anon_sym_PLUS] = ACTIONS(6706), + [anon_sym_DASH] = ACTIONS(6708), + [anon_sym_AMP] = ACTIONS(6710), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2102)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token3] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(2103)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2104)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6648), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(6648), + [anon_sym_BSLASH] = ACTIONS(6652), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6654), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2105)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_declaration_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_enum_declaration_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4601), + [aux_sym_declare_function_statement_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [aux_sym__property_get_header_token1] = ACTIONS(4601), + [aux_sym_event_declaration_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token3] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(2106)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(2107)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2108)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token3] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2109)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_declaration_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_enum_declaration_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4609), + [aux_sym_declare_function_statement_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [aux_sym__property_get_header_token1] = ACTIONS(4609), + [aux_sym_event_declaration_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token3] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(2110)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2111)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2112)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2113)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_array_bound_token1] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(2114)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token3] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(2115)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6686), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6686), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2116)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6686), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6686), + [anon_sym_BSLASH] = ACTIONS(6690), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2117)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_array_bound_token1] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(2118)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_array_bound_token1] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2119)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_array_bound_token1] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(2120)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token3] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(2121)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6686), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6686), + [anon_sym_BSLASH] = ACTIONS(6690), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6692), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2122)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2123)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2124)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6686), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6686), + [anon_sym_BSLASH] = ACTIONS(6690), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6692), + [anon_sym_PLUS] = ACTIONS(6694), + [anon_sym_DASH] = ACTIONS(6696), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2125)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2126)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_array_bound_token1] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(2127)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6686), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6686), + [anon_sym_BSLASH] = ACTIONS(6690), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6692), + [anon_sym_PLUS] = ACTIONS(6694), + [anon_sym_DASH] = ACTIONS(6696), + [anon_sym_AMP] = ACTIONS(6698), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2128)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6686), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6686), + [anon_sym_BSLASH] = ACTIONS(6690), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6692), + [anon_sym_PLUS] = ACTIONS(6694), + [anon_sym_DASH] = ACTIONS(6696), + [anon_sym_AMP] = ACTIONS(6698), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6732), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2129)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6686), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6686), + [anon_sym_BSLASH] = ACTIONS(6690), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6692), + [anon_sym_PLUS] = ACTIONS(6694), + [anon_sym_DASH] = ACTIONS(6696), + [anon_sym_AMP] = ACTIONS(6698), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6732), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6734), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2130)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2131)] = { + [sym_identifier] = ACTIONS(6139), + [sym_newline] = ACTIONS(6141), + [anon_sym_COLON] = ACTIONS(6141), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6139), + [aux_sym_frm_property_statement_token1] = ACTIONS(6139), + [anon_sym_DOT] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6141), + [aux_sym__attribute_identifier_token1] = ACTIONS(6139), + [aux_sym_option_statement_token3] = ACTIONS(6139), + [aux_sym_type_declaration_token1] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6139), + [aux_sym_enum_declaration_token1] = ACTIONS(6139), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6139), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6139), + [aux_sym_declare_function_statement_token1] = ACTIONS(6139), + [aux_sym_preprocessor_const_token1] = ACTIONS(6139), + [aux_sym__property_get_header_token1] = ACTIONS(6139), + [aux_sym_event_declaration_token1] = ACTIONS(6139), + [sym_static_modifier] = ACTIONS(6139), + [sym__dim_keyword] = ACTIONS(6139), + [sym__redim_keyword] = ACTIONS(6139), + [aux_sym_get_accessor_token1] = ACTIONS(6139), + [aux_sym_set_accessor_token1] = ACTIONS(6139), + [aux_sym_const_declaration_token1] = ACTIONS(6139), + [anon_sym_LPAREN] = ACTIONS(6141), + [aux_sym_as_type_clause_token2] = ACTIONS(6139), + [anon_sym_STAR] = ACTIONS(6686), + [aux_sym_array_bound_token1] = ACTIONS(6744), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6139), + [aux_sym_visibility_token1] = ACTIONS(6139), + [aux_sym_visibility_token2] = ACTIONS(6139), + [aux_sym_elseif_fragment_token1] = ACTIONS(6139), + [aux_sym_else_fragment_token1] = ACTIONS(6139), + [aux_sym_select_statement_token1] = ACTIONS(6139), + [aux_sym__for_header_token1] = ACTIONS(6139), + [aux_sym_do_statement_token1] = ACTIONS(6139), + [aux_sym_do_condition_token1] = ACTIONS(6139), + [aux_sym_with_statement_token1] = ACTIONS(6139), + [aux_sym_exit_statement_token1] = ACTIONS(6139), + [sym_end_statement] = ACTIONS(6141), + [aux_sym_on_goto_statement_token1] = ACTIONS(6139), + [aux_sym_on_goto_statement_token2] = ACTIONS(6139), + [aux_sym_on_error_statement_token2] = ACTIONS(6139), + [sym__ambiguous_redim_statement] = ACTIONS(6141), + [aux_sym_erase_statement_token1] = ACTIONS(6139), + [aux_sym_open_statement_token1] = ACTIONS(6139), + [aux_sym_file_mode_token2] = ACTIONS(6139), + [aux_sym_file_access_token2] = ACTIONS(6139), + [aux_sym_file_lock_token2] = ACTIONS(6139), + [aux_sym_print_statement_token1] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6686), + [anon_sym_BSLASH] = ACTIONS(6690), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6692), + [anon_sym_PLUS] = ACTIONS(6694), + [anon_sym_DASH] = ACTIONS(6696), + [anon_sym_AMP] = ACTIONS(6698), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6732), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6734), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6736), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6738), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6740), + [anon_sym_QMARK] = ACTIONS(6141), + [aux_sym_close_statement_token1] = ACTIONS(6139), + [aux_sym_put_statement_token1] = ACTIONS(6139), + [aux_sym_unlock_statement_token1] = ACTIONS(6139), + [aux_sym_seek_statement_token1] = ACTIONS(6139), + [sym_reset_statement] = ACTIONS(6139), + [aux_sym_raise_event_statement_token1] = ACTIONS(6139), + [sym_stop_statement] = ACTIONS(6139), + [sym_beep_statement] = ACTIONS(6139), + [aux_sym_unload_statement_token1] = ACTIONS(6139), + [aux_sym_def_type_statement_token1] = ACTIONS(6139), + [aux_sym_def_type_statement_token2] = ACTIONS(6139), + [aux_sym_def_type_statement_token3] = ACTIONS(6139), + [aux_sym_def_type_statement_token4] = ACTIONS(6139), + [aux_sym_def_type_statement_token5] = ACTIONS(6139), + [aux_sym_def_type_statement_token6] = ACTIONS(6139), + [aux_sym_def_type_statement_token7] = ACTIONS(6139), + [aux_sym_def_type_statement_token8] = ACTIONS(6139), + [aux_sym_def_type_statement_token9] = ACTIONS(6139), + [aux_sym_def_type_statement_token10] = ACTIONS(6139), + [aux_sym_def_type_statement_token11] = ACTIONS(6139), + [aux_sym_def_type_statement_token12] = ACTIONS(6139), + [aux_sym_def_type_statement_token13] = ACTIONS(6139), + [aux_sym_def_type_statement_token14] = ACTIONS(6139), + [aux_sym_call_statement_token1] = ACTIONS(6139), + [sym__ambiguous_call_statement] = ACTIONS(6139), + [aux_sym_addressof_expression_token1] = ACTIONS(6139), + [aux_sym_type_of_expression_token1] = ACTIONS(6139), + [aux_sym_unary_expression_token1] = ACTIONS(6139), + [sym_string_literal] = ACTIONS(6141), + [sym_number_literal] = ACTIONS(6141), + [aux_sym_boolean_literal_token1] = ACTIONS(6139), + [aux_sym_boolean_literal_token2] = ACTIONS(6139), + [sym_nothing_literal] = ACTIONS(6139), + [sym_null_literal] = ACTIONS(6139), + [sym_empty_literal] = ACTIONS(6139), + [sym_date_literal] = ACTIONS(6141), + [anon_sym_POUND] = ACTIONS(6139), + }, + [STATE(2132)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6686), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6686), + [anon_sym_BSLASH] = ACTIONS(6690), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6692), + [anon_sym_PLUS] = ACTIONS(6694), + [anon_sym_DASH] = ACTIONS(6696), + [anon_sym_AMP] = ACTIONS(6698), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6732), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6734), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6736), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2133)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_declaration_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_enum_declaration_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4447), + [aux_sym_declare_function_statement_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [aux_sym__property_get_header_token1] = ACTIONS(4447), + [aux_sym_event_declaration_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token3] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(2134)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6686), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6686), + [anon_sym_BSLASH] = ACTIONS(6690), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6692), + [anon_sym_PLUS] = ACTIONS(6694), + [anon_sym_DASH] = ACTIONS(6696), + [anon_sym_AMP] = ACTIONS(6698), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6732), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6734), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6736), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6738), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2135)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_declaration_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_enum_declaration_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4477), + [aux_sym_declare_function_statement_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [aux_sym__property_get_header_token1] = ACTIONS(4477), + [aux_sym_event_declaration_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token3] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(2136)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_declaration_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_enum_declaration_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4485), + [aux_sym_declare_function_statement_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [aux_sym__property_get_header_token1] = ACTIONS(4485), + [aux_sym_event_declaration_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token3] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(2137)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6648), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(6648), + [anon_sym_BSLASH] = ACTIONS(6652), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6654), + [anon_sym_PLUS] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2138)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2139)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token3] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(2140)] = { + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym__attribute_identifier_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [sym__redim_keyword] = ACTIONS(4509), + [aux_sym_get_accessor_token1] = ACTIONS(4509), + [aux_sym_set_accessor_token1] = ACTIONS(4509), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_as_type_clause_token2] = ACTIONS(4509), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_array_bound_token1] = ACTIONS(4509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4509), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_elseif_fragment_token1] = ACTIONS(4509), + [aux_sym_else_fragment_token1] = ACTIONS(4509), + [aux_sym_select_statement_token1] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [aux_sym__for_header_token1] = ACTIONS(4509), + [aux_sym_do_statement_token1] = ACTIONS(4509), + [aux_sym_do_condition_token1] = ACTIONS(4509), + [aux_sym_with_statement_token1] = ACTIONS(4509), + [aux_sym_exit_statement_token1] = ACTIONS(4509), + [sym_end_statement] = ACTIONS(4505), + [aux_sym_on_goto_statement_token1] = ACTIONS(4509), + [aux_sym_on_goto_statement_token2] = ACTIONS(4509), + [aux_sym_on_error_statement_token2] = ACTIONS(4509), + [sym__ambiguous_redim_statement] = ACTIONS(4505), + [aux_sym_erase_statement_token1] = ACTIONS(4509), + [aux_sym_open_statement_token1] = ACTIONS(4509), + [aux_sym_file_mode_token2] = ACTIONS(4509), + [aux_sym_file_access_token2] = ACTIONS(4509), + [aux_sym_file_lock_token2] = ACTIONS(4509), + [aux_sym_print_statement_token1] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_QMARK] = ACTIONS(4505), + [aux_sym_close_statement_token1] = ACTIONS(4509), + [aux_sym_put_statement_token1] = ACTIONS(4509), + [aux_sym_unlock_statement_token1] = ACTIONS(4509), + [aux_sym_seek_statement_token1] = ACTIONS(4509), + [sym_reset_statement] = ACTIONS(4509), + [aux_sym_raise_event_statement_token1] = ACTIONS(4509), + [sym_stop_statement] = ACTIONS(4509), + [sym_beep_statement] = ACTIONS(4509), + [aux_sym_unload_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_call_statement_token1] = ACTIONS(4509), + [sym__ambiguous_call_statement] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [aux_sym_addressof_expression_token1] = ACTIONS(4509), + [aux_sym_type_of_expression_token1] = ACTIONS(4509), + [aux_sym_unary_expression_token1] = ACTIONS(4509), + [sym_string_literal] = ACTIONS(4505), + [sym_number_literal] = ACTIONS(4505), + [aux_sym_boolean_literal_token1] = ACTIONS(4509), + [aux_sym_boolean_literal_token2] = ACTIONS(4509), + [sym_nothing_literal] = ACTIONS(4509), + [sym_null_literal] = ACTIONS(4509), + [sym_empty_literal] = ACTIONS(4509), + [sym_date_literal] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(4509), + }, + [STATE(2141)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2142)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token3] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2143)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token3] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(2144)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(5042), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(5044), + [anon_sym_SLASH] = ACTIONS(5042), + [anon_sym_BSLASH] = ACTIONS(5046), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5048), + [anon_sym_PLUS] = ACTIONS(5050), + [anon_sym_DASH] = ACTIONS(5052), + [anon_sym_AMP] = ACTIONS(5054), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2145)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2146)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_array_bound_token1] = ACTIONS(4625), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(2147)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2148)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6648), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(6648), + [anon_sym_BSLASH] = ACTIONS(6652), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6654), + [anon_sym_PLUS] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6660), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2149)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2150)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_declaration_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_enum_declaration_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4441), + [aux_sym_declare_function_statement_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [aux_sym__property_get_header_token1] = ACTIONS(4441), + [aux_sym_event_declaration_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token3] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6672), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2151)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6648), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(6648), + [anon_sym_BSLASH] = ACTIONS(6652), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6654), + [anon_sym_PLUS] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6660), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6662), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2152)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token3] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2153)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6648), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(6648), + [anon_sym_BSLASH] = ACTIONS(6652), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6654), + [anon_sym_PLUS] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6660), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6662), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6664), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2154)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token3] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(2155)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_declaration_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_enum_declaration_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4451), + [aux_sym_declare_function_statement_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [aux_sym__property_get_header_token1] = ACTIONS(4451), + [aux_sym_event_declaration_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token3] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6672), + [anon_sym_SLASH] = ACTIONS(6670), + [anon_sym_BSLASH] = ACTIONS(6674), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6676), + [anon_sym_PLUS] = ACTIONS(6678), + [anon_sym_DASH] = ACTIONS(6680), + [anon_sym_AMP] = ACTIONS(6682), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6722), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6724), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6726), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6728), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6742), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2156)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(6746), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2157)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token3] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(2158)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2159)] = { + [sym_identifier] = ACTIONS(6621), + [sym_newline] = ACTIONS(6623), + [anon_sym_COLON] = ACTIONS(6623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6621), + [aux_sym_frm_property_statement_token1] = ACTIONS(6621), + [anon_sym_DOT] = ACTIONS(6621), + [anon_sym_BANG] = ACTIONS(6623), + [aux_sym__attribute_identifier_token1] = ACTIONS(6621), + [aux_sym_option_statement_token3] = ACTIONS(6621), + [aux_sym_type_declaration_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6621), + [aux_sym_enum_declaration_token1] = ACTIONS(6621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6621), + [aux_sym_declare_function_statement_token1] = ACTIONS(6621), + [aux_sym_preprocessor_const_token1] = ACTIONS(6621), + [aux_sym__property_get_header_token1] = ACTIONS(6621), + [aux_sym_event_declaration_token1] = ACTIONS(6621), + [sym_static_modifier] = ACTIONS(6621), + [sym__dim_keyword] = ACTIONS(6621), + [sym__redim_keyword] = ACTIONS(6621), + [aux_sym_get_accessor_token1] = ACTIONS(6621), + [aux_sym_set_accessor_token1] = ACTIONS(6621), + [aux_sym_const_declaration_token1] = ACTIONS(6621), + [anon_sym_LPAREN] = ACTIONS(6623), + [aux_sym_as_type_clause_token2] = ACTIONS(6621), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6621), + [aux_sym_visibility_token1] = ACTIONS(6621), + [aux_sym_visibility_token2] = ACTIONS(6621), + [aux_sym_elseif_fragment_token1] = ACTIONS(6621), + [aux_sym_else_fragment_token1] = ACTIONS(6621), + [aux_sym_select_statement_token1] = ACTIONS(6621), + [aux_sym__for_header_token1] = ACTIONS(6621), + [aux_sym_do_statement_token1] = ACTIONS(6621), + [aux_sym_do_condition_token1] = ACTIONS(6621), + [aux_sym_with_statement_token1] = ACTIONS(6621), + [aux_sym_exit_statement_token1] = ACTIONS(6621), + [sym_end_statement] = ACTIONS(6623), + [aux_sym_on_goto_statement_token1] = ACTIONS(6621), + [aux_sym_on_goto_statement_token2] = ACTIONS(6621), + [aux_sym_on_error_statement_token2] = ACTIONS(6621), + [sym__ambiguous_redim_statement] = ACTIONS(6623), + [aux_sym_erase_statement_token1] = ACTIONS(6621), + [aux_sym_open_statement_token1] = ACTIONS(6621), + [aux_sym_file_mode_token2] = ACTIONS(6621), + [aux_sym_file_access_token2] = ACTIONS(6621), + [aux_sym_file_lock_token2] = ACTIONS(6621), + [aux_sym_print_statement_token1] = ACTIONS(6621), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4998), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5000), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5002), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5004), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5006), + [anon_sym_QMARK] = ACTIONS(6623), + [aux_sym_close_statement_token1] = ACTIONS(6621), + [aux_sym_put_statement_token1] = ACTIONS(6621), + [aux_sym_unlock_statement_token1] = ACTIONS(6621), + [aux_sym_seek_statement_token1] = ACTIONS(6621), + [sym_reset_statement] = ACTIONS(6621), + [aux_sym_raise_event_statement_token1] = ACTIONS(6621), + [sym_stop_statement] = ACTIONS(6621), + [sym_beep_statement] = ACTIONS(6621), + [aux_sym_unload_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token2] = ACTIONS(6621), + [aux_sym_def_type_statement_token3] = ACTIONS(6621), + [aux_sym_def_type_statement_token4] = ACTIONS(6621), + [aux_sym_def_type_statement_token5] = ACTIONS(6621), + [aux_sym_def_type_statement_token6] = ACTIONS(6621), + [aux_sym_def_type_statement_token7] = ACTIONS(6621), + [aux_sym_def_type_statement_token8] = ACTIONS(6621), + [aux_sym_def_type_statement_token9] = ACTIONS(6621), + [aux_sym_def_type_statement_token10] = ACTIONS(6621), + [aux_sym_def_type_statement_token11] = ACTIONS(6621), + [aux_sym_def_type_statement_token12] = ACTIONS(6621), + [aux_sym_def_type_statement_token13] = ACTIONS(6621), + [aux_sym_def_type_statement_token14] = ACTIONS(6621), + [aux_sym_call_statement_token1] = ACTIONS(6621), + [sym__ambiguous_call_statement] = ACTIONS(6621), + [aux_sym_addressof_expression_token1] = ACTIONS(6621), + [aux_sym_type_of_expression_token1] = ACTIONS(6621), + [aux_sym_unary_expression_token1] = ACTIONS(6621), + [sym_string_literal] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [aux_sym_boolean_literal_token1] = ACTIONS(6621), + [aux_sym_boolean_literal_token2] = ACTIONS(6621), + [sym_nothing_literal] = ACTIONS(6621), + [sym_null_literal] = ACTIONS(6621), + [sym_empty_literal] = ACTIONS(6621), + [sym_date_literal] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6621), + }, + [STATE(2160)] = { + [sym_identifier] = ACTIONS(3370), + [sym_newline] = ACTIONS(3364), + [anon_sym_COLON] = ACTIONS(6646), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3370), + [aux_sym_frm_property_statement_token1] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3364), + [aux_sym__attribute_identifier_token1] = ACTIONS(3370), + [aux_sym_option_statement_token3] = ACTIONS(3370), + [aux_sym_type_declaration_token1] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3370), + [aux_sym_enum_declaration_token1] = ACTIONS(3370), + [aux_sym_declare_sub_statement_token1] = ACTIONS(3370), + [aux_sym_declare_sub_statement_token2] = ACTIONS(3370), + [aux_sym_declare_function_statement_token1] = ACTIONS(3370), + [aux_sym_preprocessor_const_token1] = ACTIONS(3370), + [aux_sym__property_get_header_token1] = ACTIONS(3370), + [aux_sym_event_declaration_token1] = ACTIONS(3370), + [sym_static_modifier] = ACTIONS(3370), + [sym__dim_keyword] = ACTIONS(3370), + [sym__redim_keyword] = ACTIONS(3370), + [aux_sym_get_accessor_token1] = ACTIONS(3370), + [aux_sym_set_accessor_token1] = ACTIONS(3370), + [aux_sym_const_declaration_token1] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3364), + [aux_sym_as_type_clause_token2] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3370), + [aux_sym_visibility_token1] = ACTIONS(3370), + [aux_sym_visibility_token2] = ACTIONS(3370), + [aux_sym_elseif_fragment_token1] = ACTIONS(3370), + [aux_sym_else_fragment_token1] = ACTIONS(3370), + [aux_sym_select_statement_token1] = ACTIONS(3370), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(3370), + [sym_end_statement] = ACTIONS(3364), + [aux_sym_on_goto_statement_token1] = ACTIONS(3370), + [aux_sym_on_goto_statement_token2] = ACTIONS(3370), + [aux_sym_on_error_statement_token2] = ACTIONS(3370), + [sym__ambiguous_redim_statement] = ACTIONS(3364), + [aux_sym_erase_statement_token1] = ACTIONS(3370), + [aux_sym_open_statement_token1] = ACTIONS(3370), + [aux_sym_file_mode_token2] = ACTIONS(3370), + [aux_sym_file_access_token2] = ACTIONS(3370), + [aux_sym_file_lock_token2] = ACTIONS(3370), + [aux_sym_print_statement_token1] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(3364), + [aux_sym_close_statement_token1] = ACTIONS(3370), + [aux_sym_put_statement_token1] = ACTIONS(3370), + [aux_sym_unlock_statement_token1] = ACTIONS(3370), + [aux_sym_seek_statement_token1] = ACTIONS(3370), + [sym_reset_statement] = ACTIONS(3370), + [aux_sym_raise_event_statement_token1] = ACTIONS(3370), + [sym_stop_statement] = ACTIONS(3370), + [sym_beep_statement] = ACTIONS(3370), + [aux_sym_unload_statement_token1] = ACTIONS(3370), + [aux_sym_def_type_statement_token1] = ACTIONS(3370), + [aux_sym_def_type_statement_token2] = ACTIONS(3370), + [aux_sym_def_type_statement_token3] = ACTIONS(3370), + [aux_sym_def_type_statement_token4] = ACTIONS(3370), + [aux_sym_def_type_statement_token5] = ACTIONS(3370), + [aux_sym_def_type_statement_token6] = ACTIONS(3370), + [aux_sym_def_type_statement_token7] = ACTIONS(3370), + [aux_sym_def_type_statement_token8] = ACTIONS(3370), + [aux_sym_def_type_statement_token9] = ACTIONS(3370), + [aux_sym_def_type_statement_token10] = ACTIONS(3370), + [aux_sym_def_type_statement_token11] = ACTIONS(3370), + [aux_sym_def_type_statement_token12] = ACTIONS(3370), + [aux_sym_def_type_statement_token13] = ACTIONS(3370), + [aux_sym_def_type_statement_token14] = ACTIONS(3370), + [aux_sym_call_statement_token1] = ACTIONS(3370), + [sym__ambiguous_call_statement] = ACTIONS(3370), + [aux_sym_addressof_expression_token1] = ACTIONS(3370), + [aux_sym_type_of_expression_token1] = ACTIONS(3370), + [aux_sym_unary_expression_token1] = ACTIONS(3370), + [sym_string_literal] = ACTIONS(3364), + [sym_number_literal] = ACTIONS(3364), + [aux_sym_boolean_literal_token1] = ACTIONS(3370), + [aux_sym_boolean_literal_token2] = ACTIONS(3370), + [sym_nothing_literal] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3370), + [sym_empty_literal] = ACTIONS(3370), + [sym_date_literal] = ACTIONS(3364), + [anon_sym_POUND] = ACTIONS(3370), + }, + [STATE(2161)] = { + [sym_file_number] = STATE(5436), + [sym__primary_expression] = STATE(2975), + [sym__expression] = STATE(2975), + [sym__callable_expression] = STATE(13366), + [sym_call_expression] = STATE(2261), + [sym_new_expression] = STATE(2975), + [sym_addressof_expression] = STATE(2975), + [sym_type_of_expression] = STATE(2975), + [sym_member_expression] = STATE(2447), + [sym_qualified_member_expression] = STATE(2249), + [sym_implicit_member_expression] = STATE(2249), + [sym_parenthesized_expression] = STATE(2975), + [sym_binary_expression] = STATE(2975), + [sym_unary_expression] = STATE(2975), + [sym__signed_unary_expression] = STATE(2408), + [sym__literal] = STATE(2975), + [sym_boolean_literal] = STATE(2975), + [sym_file_number_literal] = STATE(2976), + [sym_identifier] = ACTIONS(6748), + [sym_newline] = ACTIONS(5130), + [anon_sym_COLON] = ACTIONS(5130), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5132), + [aux_sym_frm_property_statement_token1] = ACTIONS(6750), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_BANG] = ACTIONS(1368), + [aux_sym__attribute_identifier_token1] = ACTIONS(5132), + [aux_sym_option_statement_token3] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5132), + [aux_sym_preprocessor_const_token1] = ACTIONS(5132), + [sym_static_modifier] = ACTIONS(5132), + [sym__dim_keyword] = ACTIONS(5132), + [sym__redim_keyword] = ACTIONS(5132), + [aux_sym_get_accessor_token1] = ACTIONS(5132), + [aux_sym_set_accessor_token1] = ACTIONS(5132), + [aux_sym_const_declaration_token1] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_as_type_clause_token2] = ACTIONS(1392), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6754), + [aux_sym_visibility_token1] = ACTIONS(5132), + [aux_sym_visibility_token2] = ACTIONS(5132), + [aux_sym_elseif_fragment_token1] = ACTIONS(5132), + [aux_sym_else_fragment_token1] = ACTIONS(5132), + [aux_sym_select_statement_token1] = ACTIONS(5132), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5132), + [aux_sym__for_header_token1] = ACTIONS(5132), + [aux_sym_do_statement_token1] = ACTIONS(5132), + [aux_sym_do_condition_token1] = ACTIONS(5132), + [aux_sym_with_statement_token1] = ACTIONS(5132), + [aux_sym_exit_statement_token1] = ACTIONS(5132), + [sym_end_statement] = ACTIONS(5130), + [aux_sym_on_goto_statement_token1] = ACTIONS(5132), + [aux_sym_on_goto_statement_token2] = ACTIONS(5132), + [aux_sym_on_error_statement_token2] = ACTIONS(5132), + [sym__ambiguous_redim_statement] = ACTIONS(5130), + [aux_sym_erase_statement_token1] = ACTIONS(5132), + [aux_sym_open_statement_token1] = ACTIONS(5132), + [aux_sym_file_mode_token2] = ACTIONS(5132), + [aux_sym_file_access_token2] = ACTIONS(5132), + [aux_sym_file_lock_token2] = ACTIONS(5132), + [aux_sym_print_statement_token1] = ACTIONS(5132), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(5130), + [aux_sym_close_statement_token1] = ACTIONS(5132), + [aux_sym_put_statement_token1] = ACTIONS(5132), + [aux_sym_unlock_statement_token1] = ACTIONS(5132), + [aux_sym_seek_statement_token1] = ACTIONS(5132), + [sym_reset_statement] = ACTIONS(5132), + [aux_sym_raise_event_statement_token1] = ACTIONS(5132), + [sym_stop_statement] = ACTIONS(5132), + [sym_beep_statement] = ACTIONS(5132), + [aux_sym_unload_statement_token1] = ACTIONS(5132), + [aux_sym_def_type_statement_token1] = ACTIONS(5132), + [aux_sym_def_type_statement_token2] = ACTIONS(5132), + [aux_sym_def_type_statement_token3] = ACTIONS(5132), + [aux_sym_def_type_statement_token4] = ACTIONS(5132), + [aux_sym_def_type_statement_token5] = ACTIONS(5132), + [aux_sym_def_type_statement_token6] = ACTIONS(5132), + [aux_sym_def_type_statement_token7] = ACTIONS(5132), + [aux_sym_def_type_statement_token8] = ACTIONS(5132), + [aux_sym_def_type_statement_token9] = ACTIONS(5132), + [aux_sym_def_type_statement_token10] = ACTIONS(5132), + [aux_sym_def_type_statement_token11] = ACTIONS(5132), + [aux_sym_def_type_statement_token12] = ACTIONS(5132), + [aux_sym_def_type_statement_token13] = ACTIONS(5132), + [aux_sym_def_type_statement_token14] = ACTIONS(5132), + [aux_sym_call_statement_token1] = ACTIONS(5132), + [sym__ambiguous_call_statement] = ACTIONS(5132), + [aux_sym_addressof_expression_token1] = ACTIONS(1458), + [aux_sym_type_of_expression_token1] = ACTIONS(1460), + [aux_sym_unary_expression_token1] = ACTIONS(1462), + [sym_string_literal] = ACTIONS(6756), + [sym_number_literal] = ACTIONS(6756), + [aux_sym_boolean_literal_token1] = ACTIONS(1468), + [aux_sym_boolean_literal_token2] = ACTIONS(1468), + [sym_nothing_literal] = ACTIONS(6758), + [sym_null_literal] = ACTIONS(6758), + [sym_empty_literal] = ACTIONS(6758), + [sym_date_literal] = ACTIONS(6756), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(2162)] = { + [sym_file_number] = STATE(5767), + [sym__primary_expression] = STATE(3227), + [sym__expression] = STATE(3227), + [sym__callable_expression] = STATE(13088), + [sym_call_expression] = STATE(2325), + [sym_new_expression] = STATE(3227), + [sym_addressof_expression] = STATE(3227), + [sym_type_of_expression] = STATE(3227), + [sym_member_expression] = STATE(2485), + [sym_qualified_member_expression] = STATE(2226), + [sym_implicit_member_expression] = STATE(2226), + [sym_parenthesized_expression] = STATE(3227), + [sym_binary_expression] = STATE(3227), + [sym_unary_expression] = STATE(3227), + [sym__signed_unary_expression] = STATE(2406), + [sym__literal] = STATE(3227), + [sym_boolean_literal] = STATE(3227), + [sym_file_number_literal] = STATE(3229), + [sym_identifier] = ACTIONS(6760), + [sym_newline] = ACTIONS(5130), + [anon_sym_COLON] = ACTIONS(5130), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5132), + [aux_sym_frm_property_statement_token1] = ACTIONS(6762), + [anon_sym_DOT] = ACTIONS(6764), + [anon_sym_BANG] = ACTIONS(1607), + [aux_sym__attribute_identifier_token1] = ACTIONS(5132), + [aux_sym_option_statement_token3] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5132), + [aux_sym_preprocessor_const_token1] = ACTIONS(5132), + [sym_static_modifier] = ACTIONS(5132), + [sym__dim_keyword] = ACTIONS(5132), + [sym__redim_keyword] = ACTIONS(5132), + [aux_sym_get_accessor_token1] = ACTIONS(5132), + [aux_sym_set_accessor_token1] = ACTIONS(5132), + [aux_sym_const_declaration_token1] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_as_type_clause_token2] = ACTIONS(1631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6766), + [aux_sym_visibility_token1] = ACTIONS(5132), + [aux_sym_visibility_token2] = ACTIONS(5132), + [aux_sym_elseif_fragment_token1] = ACTIONS(5132), + [aux_sym_else_fragment_token1] = ACTIONS(5132), + [aux_sym_select_statement_token1] = ACTIONS(5132), + [aux_sym__for_header_token1] = ACTIONS(5132), + [aux_sym_do_statement_token1] = ACTIONS(5132), + [aux_sym_do_statement_token2] = ACTIONS(5132), + [aux_sym_do_condition_token1] = ACTIONS(5132), + [aux_sym_with_statement_token1] = ACTIONS(5132), + [aux_sym_exit_statement_token1] = ACTIONS(5132), + [sym_end_statement] = ACTIONS(5130), + [aux_sym_on_goto_statement_token1] = ACTIONS(5132), + [aux_sym_on_goto_statement_token2] = ACTIONS(5132), + [aux_sym_on_error_statement_token2] = ACTIONS(5132), + [sym__ambiguous_redim_statement] = ACTIONS(5130), + [aux_sym_erase_statement_token1] = ACTIONS(5132), + [aux_sym_open_statement_token1] = ACTIONS(5132), + [aux_sym_file_mode_token2] = ACTIONS(5132), + [aux_sym_file_access_token2] = ACTIONS(5132), + [aux_sym_file_lock_token2] = ACTIONS(5132), + [aux_sym_print_statement_token1] = ACTIONS(5132), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_QMARK] = ACTIONS(5130), + [aux_sym_close_statement_token1] = ACTIONS(5132), + [aux_sym_put_statement_token1] = ACTIONS(5132), + [aux_sym_unlock_statement_token1] = ACTIONS(5132), + [aux_sym_seek_statement_token1] = ACTIONS(5132), + [sym_reset_statement] = ACTIONS(5132), + [aux_sym_raise_event_statement_token1] = ACTIONS(5132), + [sym_stop_statement] = ACTIONS(5132), + [sym_beep_statement] = ACTIONS(5132), + [aux_sym_unload_statement_token1] = ACTIONS(5132), + [aux_sym_def_type_statement_token1] = ACTIONS(5132), + [aux_sym_def_type_statement_token2] = ACTIONS(5132), + [aux_sym_def_type_statement_token3] = ACTIONS(5132), + [aux_sym_def_type_statement_token4] = ACTIONS(5132), + [aux_sym_def_type_statement_token5] = ACTIONS(5132), + [aux_sym_def_type_statement_token6] = ACTIONS(5132), + [aux_sym_def_type_statement_token7] = ACTIONS(5132), + [aux_sym_def_type_statement_token8] = ACTIONS(5132), + [aux_sym_def_type_statement_token9] = ACTIONS(5132), + [aux_sym_def_type_statement_token10] = ACTIONS(5132), + [aux_sym_def_type_statement_token11] = ACTIONS(5132), + [aux_sym_def_type_statement_token12] = ACTIONS(5132), + [aux_sym_def_type_statement_token13] = ACTIONS(5132), + [aux_sym_def_type_statement_token14] = ACTIONS(5132), + [aux_sym_call_statement_token1] = ACTIONS(5132), + [sym__ambiguous_call_statement] = ACTIONS(5132), + [aux_sym_addressof_expression_token1] = ACTIONS(1697), + [aux_sym_type_of_expression_token1] = ACTIONS(1699), + [aux_sym_unary_expression_token1] = ACTIONS(1701), + [sym_string_literal] = ACTIONS(6768), + [sym_number_literal] = ACTIONS(6768), + [aux_sym_boolean_literal_token1] = ACTIONS(1707), + [aux_sym_boolean_literal_token2] = ACTIONS(1707), + [sym_nothing_literal] = ACTIONS(6770), + [sym_null_literal] = ACTIONS(6770), + [sym_empty_literal] = ACTIONS(6770), + [sym_date_literal] = ACTIONS(6768), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(2163)] = { + [sym_identifier] = ACTIONS(6396), + [sym_newline] = ACTIONS(6398), + [anon_sym_COLON] = ACTIONS(6398), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6396), + [aux_sym_frm_property_statement_token1] = ACTIONS(6396), + [anon_sym_DOT] = ACTIONS(6396), + [anon_sym_BANG] = ACTIONS(6398), + [aux_sym__attribute_identifier_token1] = ACTIONS(6396), + [aux_sym_option_statement_token3] = ACTIONS(6396), + [aux_sym_type_declaration_token1] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6396), + [aux_sym_enum_declaration_token1] = ACTIONS(6396), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6396), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6396), + [aux_sym_declare_function_statement_token1] = ACTIONS(6396), + [aux_sym_preprocessor_const_token1] = ACTIONS(6396), + [aux_sym__property_get_header_token1] = ACTIONS(6396), + [aux_sym_event_declaration_token1] = ACTIONS(6396), + [sym_static_modifier] = ACTIONS(6396), + [sym__dim_keyword] = ACTIONS(6396), + [sym__redim_keyword] = ACTIONS(6396), + [aux_sym_get_accessor_token1] = ACTIONS(6396), + [aux_sym_set_accessor_token1] = ACTIONS(6396), + [aux_sym_const_declaration_token1] = ACTIONS(6396), + [anon_sym_LPAREN] = ACTIONS(6398), + [aux_sym_as_type_clause_token2] = ACTIONS(6396), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6396), + [aux_sym_visibility_token1] = ACTIONS(6396), + [aux_sym_visibility_token2] = ACTIONS(6396), + [aux_sym_elseif_fragment_token1] = ACTIONS(6396), + [aux_sym_else_fragment_token1] = ACTIONS(6396), + [aux_sym_select_statement_token1] = ACTIONS(6396), + [aux_sym__for_header_token1] = ACTIONS(6396), + [aux_sym_do_statement_token1] = ACTIONS(6396), + [aux_sym_do_condition_token1] = ACTIONS(6396), + [aux_sym_with_statement_token1] = ACTIONS(6396), + [aux_sym_exit_statement_token1] = ACTIONS(6396), + [sym_end_statement] = ACTIONS(6398), + [aux_sym_on_goto_statement_token1] = ACTIONS(6396), + [aux_sym_on_goto_statement_token2] = ACTIONS(6396), + [aux_sym_on_error_statement_token2] = ACTIONS(6396), + [sym__ambiguous_redim_statement] = ACTIONS(6398), + [aux_sym_erase_statement_token1] = ACTIONS(6396), + [aux_sym_open_statement_token1] = ACTIONS(6396), + [aux_sym_file_mode_token2] = ACTIONS(6396), + [aux_sym_file_access_token2] = ACTIONS(6396), + [aux_sym_file_lock_token2] = ACTIONS(6396), + [aux_sym_print_statement_token1] = ACTIONS(6396), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_QMARK] = ACTIONS(6398), + [aux_sym_close_statement_token1] = ACTIONS(6396), + [aux_sym_put_statement_token1] = ACTIONS(6396), + [aux_sym_unlock_statement_token1] = ACTIONS(6396), + [aux_sym_seek_statement_token1] = ACTIONS(6396), + [sym_reset_statement] = ACTIONS(6396), + [aux_sym_raise_event_statement_token1] = ACTIONS(6396), + [sym_stop_statement] = ACTIONS(6396), + [sym_beep_statement] = ACTIONS(6396), + [aux_sym_unload_statement_token1] = ACTIONS(6396), + [aux_sym_def_type_statement_token1] = ACTIONS(6396), + [aux_sym_def_type_statement_token2] = ACTIONS(6396), + [aux_sym_def_type_statement_token3] = ACTIONS(6396), + [aux_sym_def_type_statement_token4] = ACTIONS(6396), + [aux_sym_def_type_statement_token5] = ACTIONS(6396), + [aux_sym_def_type_statement_token6] = ACTIONS(6396), + [aux_sym_def_type_statement_token7] = ACTIONS(6396), + [aux_sym_def_type_statement_token8] = ACTIONS(6396), + [aux_sym_def_type_statement_token9] = ACTIONS(6396), + [aux_sym_def_type_statement_token10] = ACTIONS(6396), + [aux_sym_def_type_statement_token11] = ACTIONS(6396), + [aux_sym_def_type_statement_token12] = ACTIONS(6396), + [aux_sym_def_type_statement_token13] = ACTIONS(6396), + [aux_sym_def_type_statement_token14] = ACTIONS(6396), + [aux_sym_call_statement_token1] = ACTIONS(6396), + [sym__ambiguous_call_statement] = ACTIONS(6396), + [aux_sym_addressof_expression_token1] = ACTIONS(6396), + [aux_sym_type_of_expression_token1] = ACTIONS(6396), + [aux_sym_unary_expression_token1] = ACTIONS(6396), + [sym_string_literal] = ACTIONS(6398), + [sym_number_literal] = ACTIONS(6398), + [aux_sym_boolean_literal_token1] = ACTIONS(6396), + [aux_sym_boolean_literal_token2] = ACTIONS(6396), + [sym_nothing_literal] = ACTIONS(6396), + [sym_null_literal] = ACTIONS(6396), + [sym_empty_literal] = ACTIONS(6396), + [sym_date_literal] = ACTIONS(6398), + [anon_sym_POUND] = ACTIONS(6396), + }, + [STATE(2164)] = { + [sym_identifier] = ACTIONS(6324), + [sym_newline] = ACTIONS(6326), + [anon_sym_COLON] = ACTIONS(6326), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6324), + [aux_sym_frm_property_statement_token1] = ACTIONS(6324), + [anon_sym_DOT] = ACTIONS(6324), + [anon_sym_BANG] = ACTIONS(6326), + [aux_sym__attribute_identifier_token1] = ACTIONS(6324), + [aux_sym_option_statement_token3] = ACTIONS(6324), + [aux_sym_type_declaration_token1] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6324), + [aux_sym_enum_declaration_token1] = ACTIONS(6324), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6324), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6324), + [aux_sym_declare_function_statement_token1] = ACTIONS(6324), + [aux_sym_preprocessor_const_token1] = ACTIONS(6324), + [aux_sym__property_get_header_token1] = ACTIONS(6324), + [aux_sym_event_declaration_token1] = ACTIONS(6324), + [sym_static_modifier] = ACTIONS(6324), + [sym__dim_keyword] = ACTIONS(6324), + [sym__redim_keyword] = ACTIONS(6324), + [aux_sym_get_accessor_token1] = ACTIONS(6324), + [aux_sym_set_accessor_token1] = ACTIONS(6324), + [aux_sym_const_declaration_token1] = ACTIONS(6324), + [anon_sym_LPAREN] = ACTIONS(6326), + [aux_sym_as_type_clause_token2] = ACTIONS(6324), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6324), + [aux_sym_visibility_token1] = ACTIONS(6324), + [aux_sym_visibility_token2] = ACTIONS(6324), + [aux_sym_elseif_fragment_token1] = ACTIONS(6324), + [aux_sym_else_fragment_token1] = ACTIONS(6324), + [aux_sym_select_statement_token1] = ACTIONS(6324), + [aux_sym__for_header_token1] = ACTIONS(6324), + [aux_sym_do_statement_token1] = ACTIONS(6324), + [aux_sym_do_condition_token1] = ACTIONS(6324), + [aux_sym_with_statement_token1] = ACTIONS(6324), + [aux_sym_exit_statement_token1] = ACTIONS(6324), + [sym_end_statement] = ACTIONS(6326), + [aux_sym_on_goto_statement_token1] = ACTIONS(6324), + [aux_sym_on_goto_statement_token2] = ACTIONS(6324), + [aux_sym_on_error_statement_token2] = ACTIONS(6324), + [sym__ambiguous_redim_statement] = ACTIONS(6326), + [aux_sym_erase_statement_token1] = ACTIONS(6324), + [aux_sym_open_statement_token1] = ACTIONS(6324), + [aux_sym_file_mode_token2] = ACTIONS(6324), + [aux_sym_file_access_token2] = ACTIONS(6324), + [aux_sym_file_lock_token2] = ACTIONS(6324), + [aux_sym_print_statement_token1] = ACTIONS(6324), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_QMARK] = ACTIONS(6326), + [aux_sym_close_statement_token1] = ACTIONS(6324), + [aux_sym_put_statement_token1] = ACTIONS(6324), + [aux_sym_unlock_statement_token1] = ACTIONS(6324), + [aux_sym_seek_statement_token1] = ACTIONS(6324), + [sym_reset_statement] = ACTIONS(6324), + [aux_sym_raise_event_statement_token1] = ACTIONS(6324), + [sym_stop_statement] = ACTIONS(6324), + [sym_beep_statement] = ACTIONS(6324), + [aux_sym_unload_statement_token1] = ACTIONS(6324), + [aux_sym_def_type_statement_token1] = ACTIONS(6324), + [aux_sym_def_type_statement_token2] = ACTIONS(6324), + [aux_sym_def_type_statement_token3] = ACTIONS(6324), + [aux_sym_def_type_statement_token4] = ACTIONS(6324), + [aux_sym_def_type_statement_token5] = ACTIONS(6324), + [aux_sym_def_type_statement_token6] = ACTIONS(6324), + [aux_sym_def_type_statement_token7] = ACTIONS(6324), + [aux_sym_def_type_statement_token8] = ACTIONS(6324), + [aux_sym_def_type_statement_token9] = ACTIONS(6324), + [aux_sym_def_type_statement_token10] = ACTIONS(6324), + [aux_sym_def_type_statement_token11] = ACTIONS(6324), + [aux_sym_def_type_statement_token12] = ACTIONS(6324), + [aux_sym_def_type_statement_token13] = ACTIONS(6324), + [aux_sym_def_type_statement_token14] = ACTIONS(6324), + [aux_sym_call_statement_token1] = ACTIONS(6324), + [sym__ambiguous_call_statement] = ACTIONS(6324), + [aux_sym_addressof_expression_token1] = ACTIONS(6324), + [aux_sym_type_of_expression_token1] = ACTIONS(6324), + [aux_sym_unary_expression_token1] = ACTIONS(6324), + [sym_string_literal] = ACTIONS(6326), + [sym_number_literal] = ACTIONS(6326), + [aux_sym_boolean_literal_token1] = ACTIONS(6324), + [aux_sym_boolean_literal_token2] = ACTIONS(6324), + [sym_nothing_literal] = ACTIONS(6324), + [sym_null_literal] = ACTIONS(6324), + [sym_empty_literal] = ACTIONS(6324), + [sym_date_literal] = ACTIONS(6326), + [anon_sym_POUND] = ACTIONS(6324), + }, + [STATE(2165)] = { + [sym_file_number] = STATE(5784), + [sym__primary_expression] = STATE(3395), + [sym__expression] = STATE(3395), + [sym__callable_expression] = STATE(13216), + [sym_call_expression] = STATE(2298), + [sym_new_expression] = STATE(3395), + [sym_addressof_expression] = STATE(3395), + [sym_type_of_expression] = STATE(3395), + [sym_member_expression] = STATE(2348), + [sym_qualified_member_expression] = STATE(2265), + [sym_implicit_member_expression] = STATE(2265), + [sym_parenthesized_expression] = STATE(3395), + [sym_binary_expression] = STATE(3395), + [sym_unary_expression] = STATE(3395), + [sym__signed_unary_expression] = STATE(2479), + [sym__literal] = STATE(3395), + [sym_boolean_literal] = STATE(3395), + [sym_file_number_literal] = STATE(3396), + [sym_identifier] = ACTIONS(6772), + [sym_newline] = ACTIONS(5130), + [anon_sym_COLON] = ACTIONS(5130), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5132), + [aux_sym_frm_property_statement_token1] = ACTIONS(6774), + [anon_sym_DOT] = ACTIONS(6776), + [anon_sym_BANG] = ACTIONS(1490), + [aux_sym__attribute_identifier_token1] = ACTIONS(5132), + [aux_sym_option_statement_token3] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5132), + [aux_sym_preprocessor_const_token1] = ACTIONS(5132), + [sym_static_modifier] = ACTIONS(5132), + [sym__dim_keyword] = ACTIONS(5132), + [sym__redim_keyword] = ACTIONS(5132), + [aux_sym_get_accessor_token1] = ACTIONS(5132), + [aux_sym_set_accessor_token1] = ACTIONS(5132), + [aux_sym_const_declaration_token1] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(1512), + [aux_sym_as_type_clause_token2] = ACTIONS(1514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6778), + [aux_sym_visibility_token1] = ACTIONS(5132), + [aux_sym_visibility_token2] = ACTIONS(5132), + [aux_sym_elseif_fragment_token1] = ACTIONS(5132), + [aux_sym_else_fragment_token1] = ACTIONS(5132), + [aux_sym_select_statement_token1] = ACTIONS(5132), + [aux_sym_select_statement_token2] = ACTIONS(5132), + [aux_sym__for_header_token1] = ACTIONS(5132), + [aux_sym_do_statement_token1] = ACTIONS(5132), + [aux_sym_do_condition_token1] = ACTIONS(5132), + [aux_sym_with_statement_token1] = ACTIONS(5132), + [aux_sym_exit_statement_token1] = ACTIONS(5132), + [sym_end_statement] = ACTIONS(5130), + [aux_sym_on_goto_statement_token1] = ACTIONS(5132), + [aux_sym_on_goto_statement_token2] = ACTIONS(5132), + [aux_sym_on_error_statement_token2] = ACTIONS(5132), + [sym__ambiguous_redim_statement] = ACTIONS(5130), + [aux_sym_erase_statement_token1] = ACTIONS(5132), + [aux_sym_open_statement_token1] = ACTIONS(5132), + [aux_sym_file_mode_token2] = ACTIONS(5132), + [aux_sym_file_access_token2] = ACTIONS(5132), + [aux_sym_file_lock_token2] = ACTIONS(5132), + [aux_sym_print_statement_token1] = ACTIONS(5132), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(5130), + [aux_sym_close_statement_token1] = ACTIONS(5132), + [aux_sym_put_statement_token1] = ACTIONS(5132), + [aux_sym_unlock_statement_token1] = ACTIONS(5132), + [aux_sym_seek_statement_token1] = ACTIONS(5132), + [sym_reset_statement] = ACTIONS(5132), + [aux_sym_raise_event_statement_token1] = ACTIONS(5132), + [sym_stop_statement] = ACTIONS(5132), + [sym_beep_statement] = ACTIONS(5132), + [aux_sym_unload_statement_token1] = ACTIONS(5132), + [aux_sym_def_type_statement_token1] = ACTIONS(5132), + [aux_sym_def_type_statement_token2] = ACTIONS(5132), + [aux_sym_def_type_statement_token3] = ACTIONS(5132), + [aux_sym_def_type_statement_token4] = ACTIONS(5132), + [aux_sym_def_type_statement_token5] = ACTIONS(5132), + [aux_sym_def_type_statement_token6] = ACTIONS(5132), + [aux_sym_def_type_statement_token7] = ACTIONS(5132), + [aux_sym_def_type_statement_token8] = ACTIONS(5132), + [aux_sym_def_type_statement_token9] = ACTIONS(5132), + [aux_sym_def_type_statement_token10] = ACTIONS(5132), + [aux_sym_def_type_statement_token11] = ACTIONS(5132), + [aux_sym_def_type_statement_token12] = ACTIONS(5132), + [aux_sym_def_type_statement_token13] = ACTIONS(5132), + [aux_sym_def_type_statement_token14] = ACTIONS(5132), + [aux_sym_call_statement_token1] = ACTIONS(5132), + [sym__ambiguous_call_statement] = ACTIONS(5132), + [aux_sym_addressof_expression_token1] = ACTIONS(1580), + [aux_sym_type_of_expression_token1] = ACTIONS(1582), + [aux_sym_unary_expression_token1] = ACTIONS(1584), + [sym_string_literal] = ACTIONS(6780), + [sym_number_literal] = ACTIONS(6780), + [aux_sym_boolean_literal_token1] = ACTIONS(1591), + [aux_sym_boolean_literal_token2] = ACTIONS(1591), + [sym_nothing_literal] = ACTIONS(6782), + [sym_null_literal] = ACTIONS(6782), + [sym_empty_literal] = ACTIONS(6782), + [sym_date_literal] = ACTIONS(6780), + [anon_sym_POUND] = ACTIONS(1595), + }, + [STATE(2166)] = { + [sym_identifier] = ACTIONS(6336), + [sym_newline] = ACTIONS(6338), + [anon_sym_COLON] = ACTIONS(6338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6336), + [aux_sym_frm_property_statement_token1] = ACTIONS(6336), + [anon_sym_DOT] = ACTIONS(6336), + [anon_sym_BANG] = ACTIONS(6338), + [aux_sym__attribute_identifier_token1] = ACTIONS(6336), + [aux_sym_option_statement_token3] = ACTIONS(6336), + [aux_sym_type_declaration_token1] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6336), + [aux_sym_enum_declaration_token1] = ACTIONS(6336), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6336), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6336), + [aux_sym_declare_function_statement_token1] = ACTIONS(6336), + [aux_sym_preprocessor_const_token1] = ACTIONS(6336), + [aux_sym__property_get_header_token1] = ACTIONS(6336), + [aux_sym_event_declaration_token1] = ACTIONS(6336), + [sym_static_modifier] = ACTIONS(6336), + [sym__dim_keyword] = ACTIONS(6336), + [sym__redim_keyword] = ACTIONS(6336), + [aux_sym_get_accessor_token1] = ACTIONS(6336), + [aux_sym_set_accessor_token1] = ACTIONS(6336), + [aux_sym_const_declaration_token1] = ACTIONS(6336), + [anon_sym_LPAREN] = ACTIONS(6338), + [aux_sym_as_type_clause_token2] = ACTIONS(6336), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6336), + [aux_sym_visibility_token1] = ACTIONS(6336), + [aux_sym_visibility_token2] = ACTIONS(6336), + [aux_sym_elseif_fragment_token1] = ACTIONS(6336), + [aux_sym_else_fragment_token1] = ACTIONS(6336), + [aux_sym_select_statement_token1] = ACTIONS(6336), + [aux_sym__for_header_token1] = ACTIONS(6336), + [aux_sym_do_statement_token1] = ACTIONS(6336), + [aux_sym_do_condition_token1] = ACTIONS(6336), + [aux_sym_with_statement_token1] = ACTIONS(6336), + [aux_sym_exit_statement_token1] = ACTIONS(6336), + [sym_end_statement] = ACTIONS(6338), + [aux_sym_on_goto_statement_token1] = ACTIONS(6336), + [aux_sym_on_goto_statement_token2] = ACTIONS(6336), + [aux_sym_on_error_statement_token2] = ACTIONS(6336), + [sym__ambiguous_redim_statement] = ACTIONS(6338), + [aux_sym_erase_statement_token1] = ACTIONS(6336), + [aux_sym_open_statement_token1] = ACTIONS(6336), + [aux_sym_file_mode_token2] = ACTIONS(6336), + [aux_sym_file_access_token2] = ACTIONS(6336), + [aux_sym_file_lock_token2] = ACTIONS(6336), + [aux_sym_print_statement_token1] = ACTIONS(6336), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4998), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5000), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5002), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5004), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5006), + [anon_sym_QMARK] = ACTIONS(6338), + [aux_sym_close_statement_token1] = ACTIONS(6336), + [aux_sym_put_statement_token1] = ACTIONS(6336), + [aux_sym_unlock_statement_token1] = ACTIONS(6336), + [aux_sym_seek_statement_token1] = ACTIONS(6336), + [sym_reset_statement] = ACTIONS(6336), + [aux_sym_raise_event_statement_token1] = ACTIONS(6336), + [sym_stop_statement] = ACTIONS(6336), + [sym_beep_statement] = ACTIONS(6336), + [aux_sym_unload_statement_token1] = ACTIONS(6336), + [aux_sym_def_type_statement_token1] = ACTIONS(6336), + [aux_sym_def_type_statement_token2] = ACTIONS(6336), + [aux_sym_def_type_statement_token3] = ACTIONS(6336), + [aux_sym_def_type_statement_token4] = ACTIONS(6336), + [aux_sym_def_type_statement_token5] = ACTIONS(6336), + [aux_sym_def_type_statement_token6] = ACTIONS(6336), + [aux_sym_def_type_statement_token7] = ACTIONS(6336), + [aux_sym_def_type_statement_token8] = ACTIONS(6336), + [aux_sym_def_type_statement_token9] = ACTIONS(6336), + [aux_sym_def_type_statement_token10] = ACTIONS(6336), + [aux_sym_def_type_statement_token11] = ACTIONS(6336), + [aux_sym_def_type_statement_token12] = ACTIONS(6336), + [aux_sym_def_type_statement_token13] = ACTIONS(6336), + [aux_sym_def_type_statement_token14] = ACTIONS(6336), + [aux_sym_call_statement_token1] = ACTIONS(6336), + [sym__ambiguous_call_statement] = ACTIONS(6336), + [aux_sym_addressof_expression_token1] = ACTIONS(6336), + [aux_sym_type_of_expression_token1] = ACTIONS(6336), + [aux_sym_unary_expression_token1] = ACTIONS(6336), + [sym_string_literal] = ACTIONS(6338), + [sym_number_literal] = ACTIONS(6338), + [aux_sym_boolean_literal_token1] = ACTIONS(6336), + [aux_sym_boolean_literal_token2] = ACTIONS(6336), + [sym_nothing_literal] = ACTIONS(6336), + [sym_null_literal] = ACTIONS(6336), + [sym_empty_literal] = ACTIONS(6336), + [sym_date_literal] = ACTIONS(6338), + [anon_sym_POUND] = ACTIONS(6336), + }, + [STATE(2167)] = { + [sym_identifier] = ACTIONS(6340), + [sym_newline] = ACTIONS(6342), + [anon_sym_COLON] = ACTIONS(6342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6340), + [aux_sym_frm_property_statement_token1] = ACTIONS(6340), + [anon_sym_DOT] = ACTIONS(6340), + [anon_sym_BANG] = ACTIONS(6342), + [aux_sym__attribute_identifier_token1] = ACTIONS(6340), + [aux_sym_option_statement_token3] = ACTIONS(6340), + [aux_sym_type_declaration_token1] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6340), + [aux_sym_enum_declaration_token1] = ACTIONS(6340), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6340), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6340), + [aux_sym_declare_function_statement_token1] = ACTIONS(6340), + [aux_sym_preprocessor_const_token1] = ACTIONS(6340), + [aux_sym__property_get_header_token1] = ACTIONS(6340), + [aux_sym_event_declaration_token1] = ACTIONS(6340), + [sym_static_modifier] = ACTIONS(6340), + [sym__dim_keyword] = ACTIONS(6340), + [sym__redim_keyword] = ACTIONS(6340), + [aux_sym_get_accessor_token1] = ACTIONS(6340), + [aux_sym_set_accessor_token1] = ACTIONS(6340), + [aux_sym_const_declaration_token1] = ACTIONS(6340), + [anon_sym_LPAREN] = ACTIONS(6342), + [aux_sym_as_type_clause_token2] = ACTIONS(6340), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6340), + [aux_sym_visibility_token1] = ACTIONS(6340), + [aux_sym_visibility_token2] = ACTIONS(6340), + [aux_sym_elseif_fragment_token1] = ACTIONS(6340), + [aux_sym_else_fragment_token1] = ACTIONS(6340), + [aux_sym_select_statement_token1] = ACTIONS(6340), + [aux_sym__for_header_token1] = ACTIONS(6340), + [aux_sym_do_statement_token1] = ACTIONS(6340), + [aux_sym_do_condition_token1] = ACTIONS(6340), + [aux_sym_with_statement_token1] = ACTIONS(6340), + [aux_sym_exit_statement_token1] = ACTIONS(6340), + [sym_end_statement] = ACTIONS(6342), + [aux_sym_on_goto_statement_token1] = ACTIONS(6340), + [aux_sym_on_goto_statement_token2] = ACTIONS(6340), + [aux_sym_on_error_statement_token2] = ACTIONS(6340), + [sym__ambiguous_redim_statement] = ACTIONS(6342), + [aux_sym_erase_statement_token1] = ACTIONS(6340), + [aux_sym_open_statement_token1] = ACTIONS(6340), + [aux_sym_file_mode_token2] = ACTIONS(6340), + [aux_sym_file_access_token2] = ACTIONS(6340), + [aux_sym_file_lock_token2] = ACTIONS(6340), + [aux_sym_print_statement_token1] = ACTIONS(6340), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_QMARK] = ACTIONS(6342), + [aux_sym_close_statement_token1] = ACTIONS(6340), + [aux_sym_put_statement_token1] = ACTIONS(6340), + [aux_sym_unlock_statement_token1] = ACTIONS(6340), + [aux_sym_seek_statement_token1] = ACTIONS(6340), + [sym_reset_statement] = ACTIONS(6340), + [aux_sym_raise_event_statement_token1] = ACTIONS(6340), + [sym_stop_statement] = ACTIONS(6340), + [sym_beep_statement] = ACTIONS(6340), + [aux_sym_unload_statement_token1] = ACTIONS(6340), + [aux_sym_def_type_statement_token1] = ACTIONS(6340), + [aux_sym_def_type_statement_token2] = ACTIONS(6340), + [aux_sym_def_type_statement_token3] = ACTIONS(6340), + [aux_sym_def_type_statement_token4] = ACTIONS(6340), + [aux_sym_def_type_statement_token5] = ACTIONS(6340), + [aux_sym_def_type_statement_token6] = ACTIONS(6340), + [aux_sym_def_type_statement_token7] = ACTIONS(6340), + [aux_sym_def_type_statement_token8] = ACTIONS(6340), + [aux_sym_def_type_statement_token9] = ACTIONS(6340), + [aux_sym_def_type_statement_token10] = ACTIONS(6340), + [aux_sym_def_type_statement_token11] = ACTIONS(6340), + [aux_sym_def_type_statement_token12] = ACTIONS(6340), + [aux_sym_def_type_statement_token13] = ACTIONS(6340), + [aux_sym_def_type_statement_token14] = ACTIONS(6340), + [aux_sym_call_statement_token1] = ACTIONS(6340), + [sym__ambiguous_call_statement] = ACTIONS(6340), + [aux_sym_addressof_expression_token1] = ACTIONS(6340), + [aux_sym_type_of_expression_token1] = ACTIONS(6340), + [aux_sym_unary_expression_token1] = ACTIONS(6340), + [sym_string_literal] = ACTIONS(6342), + [sym_number_literal] = ACTIONS(6342), + [aux_sym_boolean_literal_token1] = ACTIONS(6340), + [aux_sym_boolean_literal_token2] = ACTIONS(6340), + [sym_nothing_literal] = ACTIONS(6340), + [sym_null_literal] = ACTIONS(6340), + [sym_empty_literal] = ACTIONS(6340), + [sym_date_literal] = ACTIONS(6342), + [anon_sym_POUND] = ACTIONS(6340), + }, + [STATE(2168)] = { + [sym_identifier] = ACTIONS(5775), + [sym_newline] = ACTIONS(5777), + [anon_sym_COLON] = ACTIONS(5777), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5775), + [aux_sym_frm_property_statement_token1] = ACTIONS(5775), + [anon_sym_DOT] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5777), + [aux_sym__attribute_identifier_token1] = ACTIONS(5775), + [aux_sym_option_statement_token3] = ACTIONS(5775), + [aux_sym_type_declaration_token1] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5775), + [aux_sym_enum_declaration_token1] = ACTIONS(5775), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5775), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5775), + [aux_sym_declare_function_statement_token1] = ACTIONS(5775), + [aux_sym_preprocessor_const_token1] = ACTIONS(5775), + [aux_sym__property_get_header_token1] = ACTIONS(5775), + [aux_sym_event_declaration_token1] = ACTIONS(5775), + [sym_static_modifier] = ACTIONS(5775), + [sym__dim_keyword] = ACTIONS(5775), + [sym__redim_keyword] = ACTIONS(5775), + [aux_sym_get_accessor_token1] = ACTIONS(5775), + [aux_sym_set_accessor_token1] = ACTIONS(5775), + [aux_sym_const_declaration_token1] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5777), + [aux_sym_as_type_clause_token2] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5775), + [aux_sym_visibility_token1] = ACTIONS(5775), + [aux_sym_visibility_token2] = ACTIONS(5775), + [aux_sym_elseif_fragment_token1] = ACTIONS(5775), + [aux_sym_else_fragment_token1] = ACTIONS(5775), + [aux_sym_select_statement_token1] = ACTIONS(5775), + [aux_sym__for_header_token1] = ACTIONS(5775), + [aux_sym_do_statement_token1] = ACTIONS(5775), + [aux_sym_do_condition_token1] = ACTIONS(5775), + [aux_sym_with_statement_token1] = ACTIONS(5775), + [aux_sym_exit_statement_token1] = ACTIONS(5775), + [sym_end_statement] = ACTIONS(5777), + [aux_sym_on_goto_statement_token1] = ACTIONS(5775), + [aux_sym_on_goto_statement_token2] = ACTIONS(5775), + [aux_sym_on_error_statement_token2] = ACTIONS(5775), + [sym__ambiguous_redim_statement] = ACTIONS(5777), + [aux_sym_erase_statement_token1] = ACTIONS(5775), + [aux_sym_open_statement_token1] = ACTIONS(5775), + [aux_sym_file_mode_token2] = ACTIONS(5775), + [aux_sym_file_access_token2] = ACTIONS(5775), + [aux_sym_file_lock_token2] = ACTIONS(5775), + [aux_sym_print_statement_token1] = ACTIONS(5775), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_QMARK] = ACTIONS(5777), + [aux_sym_close_statement_token1] = ACTIONS(5775), + [aux_sym_put_statement_token1] = ACTIONS(5775), + [aux_sym_unlock_statement_token1] = ACTIONS(5775), + [aux_sym_seek_statement_token1] = ACTIONS(5775), + [sym_reset_statement] = ACTIONS(5775), + [aux_sym_raise_event_statement_token1] = ACTIONS(5775), + [sym_stop_statement] = ACTIONS(5775), + [sym_beep_statement] = ACTIONS(5775), + [aux_sym_unload_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token2] = ACTIONS(5775), + [aux_sym_def_type_statement_token3] = ACTIONS(5775), + [aux_sym_def_type_statement_token4] = ACTIONS(5775), + [aux_sym_def_type_statement_token5] = ACTIONS(5775), + [aux_sym_def_type_statement_token6] = ACTIONS(5775), + [aux_sym_def_type_statement_token7] = ACTIONS(5775), + [aux_sym_def_type_statement_token8] = ACTIONS(5775), + [aux_sym_def_type_statement_token9] = ACTIONS(5775), + [aux_sym_def_type_statement_token10] = ACTIONS(5775), + [aux_sym_def_type_statement_token11] = ACTIONS(5775), + [aux_sym_def_type_statement_token12] = ACTIONS(5775), + [aux_sym_def_type_statement_token13] = ACTIONS(5775), + [aux_sym_def_type_statement_token14] = ACTIONS(5775), + [aux_sym_call_statement_token1] = ACTIONS(5775), + [sym__ambiguous_call_statement] = ACTIONS(5775), + [aux_sym_addressof_expression_token1] = ACTIONS(5775), + [aux_sym_type_of_expression_token1] = ACTIONS(5775), + [aux_sym_unary_expression_token1] = ACTIONS(5775), + [sym_string_literal] = ACTIONS(5777), + [sym_number_literal] = ACTIONS(5777), + [aux_sym_boolean_literal_token1] = ACTIONS(5775), + [aux_sym_boolean_literal_token2] = ACTIONS(5775), + [sym_nothing_literal] = ACTIONS(5775), + [sym_null_literal] = ACTIONS(5775), + [sym_empty_literal] = ACTIONS(5775), + [sym_date_literal] = ACTIONS(5777), + [anon_sym_POUND] = ACTIONS(5775), + }, + [STATE(2169)] = { + [sym_identifier] = ACTIONS(6617), + [sym_newline] = ACTIONS(6619), + [anon_sym_COLON] = ACTIONS(6619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6617), + [aux_sym_frm_property_statement_token1] = ACTIONS(6617), + [anon_sym_DOT] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(6619), + [aux_sym__attribute_identifier_token1] = ACTIONS(6617), + [aux_sym_option_statement_token3] = ACTIONS(6617), + [aux_sym_type_declaration_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6617), + [aux_sym_enum_declaration_token1] = ACTIONS(6617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6617), + [aux_sym_declare_function_statement_token1] = ACTIONS(6617), + [aux_sym_preprocessor_const_token1] = ACTIONS(6617), + [aux_sym__property_get_header_token1] = ACTIONS(6617), + [aux_sym_event_declaration_token1] = ACTIONS(6617), + [sym_static_modifier] = ACTIONS(6617), + [sym__dim_keyword] = ACTIONS(6617), + [sym__redim_keyword] = ACTIONS(6617), + [aux_sym_get_accessor_token1] = ACTIONS(6617), + [aux_sym_set_accessor_token1] = ACTIONS(6617), + [aux_sym_const_declaration_token1] = ACTIONS(6617), + [anon_sym_LPAREN] = ACTIONS(6619), + [aux_sym_as_type_clause_token2] = ACTIONS(6617), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6617), + [aux_sym_visibility_token1] = ACTIONS(6617), + [aux_sym_visibility_token2] = ACTIONS(6617), + [aux_sym_elseif_fragment_token1] = ACTIONS(6617), + [aux_sym_else_fragment_token1] = ACTIONS(6617), + [aux_sym_select_statement_token1] = ACTIONS(6617), + [aux_sym__for_header_token1] = ACTIONS(6617), + [aux_sym_do_statement_token1] = ACTIONS(6617), + [aux_sym_do_condition_token1] = ACTIONS(6617), + [aux_sym_with_statement_token1] = ACTIONS(6617), + [aux_sym_exit_statement_token1] = ACTIONS(6617), + [sym_end_statement] = ACTIONS(6619), + [aux_sym_on_goto_statement_token1] = ACTIONS(6617), + [aux_sym_on_goto_statement_token2] = ACTIONS(6617), + [aux_sym_on_error_statement_token2] = ACTIONS(6617), + [sym__ambiguous_redim_statement] = ACTIONS(6619), + [aux_sym_erase_statement_token1] = ACTIONS(6617), + [aux_sym_open_statement_token1] = ACTIONS(6617), + [aux_sym_file_mode_token2] = ACTIONS(6617), + [aux_sym_file_access_token2] = ACTIONS(6617), + [aux_sym_file_lock_token2] = ACTIONS(6617), + [aux_sym_print_statement_token1] = ACTIONS(6617), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6615), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5002), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5004), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5006), + [anon_sym_QMARK] = ACTIONS(6619), + [aux_sym_close_statement_token1] = ACTIONS(6617), + [aux_sym_put_statement_token1] = ACTIONS(6617), + [aux_sym_unlock_statement_token1] = ACTIONS(6617), + [aux_sym_seek_statement_token1] = ACTIONS(6617), + [sym_reset_statement] = ACTIONS(6617), + [aux_sym_raise_event_statement_token1] = ACTIONS(6617), + [sym_stop_statement] = ACTIONS(6617), + [sym_beep_statement] = ACTIONS(6617), + [aux_sym_unload_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token2] = ACTIONS(6617), + [aux_sym_def_type_statement_token3] = ACTIONS(6617), + [aux_sym_def_type_statement_token4] = ACTIONS(6617), + [aux_sym_def_type_statement_token5] = ACTIONS(6617), + [aux_sym_def_type_statement_token6] = ACTIONS(6617), + [aux_sym_def_type_statement_token7] = ACTIONS(6617), + [aux_sym_def_type_statement_token8] = ACTIONS(6617), + [aux_sym_def_type_statement_token9] = ACTIONS(6617), + [aux_sym_def_type_statement_token10] = ACTIONS(6617), + [aux_sym_def_type_statement_token11] = ACTIONS(6617), + [aux_sym_def_type_statement_token12] = ACTIONS(6617), + [aux_sym_def_type_statement_token13] = ACTIONS(6617), + [aux_sym_def_type_statement_token14] = ACTIONS(6617), + [aux_sym_call_statement_token1] = ACTIONS(6617), + [sym__ambiguous_call_statement] = ACTIONS(6617), + [aux_sym_addressof_expression_token1] = ACTIONS(6617), + [aux_sym_type_of_expression_token1] = ACTIONS(6617), + [aux_sym_unary_expression_token1] = ACTIONS(6617), + [sym_string_literal] = ACTIONS(6619), + [sym_number_literal] = ACTIONS(6619), + [aux_sym_boolean_literal_token1] = ACTIONS(6617), + [aux_sym_boolean_literal_token2] = ACTIONS(6617), + [sym_nothing_literal] = ACTIONS(6617), + [sym_null_literal] = ACTIONS(6617), + [sym_empty_literal] = ACTIONS(6617), + [sym_date_literal] = ACTIONS(6619), + [anon_sym_POUND] = ACTIONS(6617), + }, + [STATE(2170)] = { + [sym_identifier] = ACTIONS(6392), + [sym_newline] = ACTIONS(6394), + [anon_sym_COLON] = ACTIONS(6394), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6392), + [aux_sym_frm_property_statement_token1] = ACTIONS(6392), + [anon_sym_DOT] = ACTIONS(6392), + [anon_sym_BANG] = ACTIONS(6394), + [aux_sym__attribute_identifier_token1] = ACTIONS(6392), + [aux_sym_option_statement_token3] = ACTIONS(6392), + [aux_sym_type_declaration_token1] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6392), + [aux_sym_enum_declaration_token1] = ACTIONS(6392), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6392), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6392), + [aux_sym_declare_function_statement_token1] = ACTIONS(6392), + [aux_sym_preprocessor_const_token1] = ACTIONS(6392), + [aux_sym__property_get_header_token1] = ACTIONS(6392), + [aux_sym_event_declaration_token1] = ACTIONS(6392), + [sym_static_modifier] = ACTIONS(6392), + [sym__dim_keyword] = ACTIONS(6392), + [sym__redim_keyword] = ACTIONS(6392), + [aux_sym_get_accessor_token1] = ACTIONS(6392), + [aux_sym_set_accessor_token1] = ACTIONS(6392), + [aux_sym_const_declaration_token1] = ACTIONS(6392), + [anon_sym_LPAREN] = ACTIONS(6394), + [aux_sym_as_type_clause_token2] = ACTIONS(6392), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6392), + [aux_sym_visibility_token1] = ACTIONS(6392), + [aux_sym_visibility_token2] = ACTIONS(6392), + [aux_sym_elseif_fragment_token1] = ACTIONS(6392), + [aux_sym_else_fragment_token1] = ACTIONS(6392), + [aux_sym_select_statement_token1] = ACTIONS(6392), + [aux_sym__for_header_token1] = ACTIONS(6392), + [aux_sym_do_statement_token1] = ACTIONS(6392), + [aux_sym_do_condition_token1] = ACTIONS(6392), + [aux_sym_with_statement_token1] = ACTIONS(6392), + [aux_sym_exit_statement_token1] = ACTIONS(6392), + [sym_end_statement] = ACTIONS(6394), + [aux_sym_on_goto_statement_token1] = ACTIONS(6392), + [aux_sym_on_goto_statement_token2] = ACTIONS(6392), + [aux_sym_on_error_statement_token2] = ACTIONS(6392), + [sym__ambiguous_redim_statement] = ACTIONS(6394), + [aux_sym_erase_statement_token1] = ACTIONS(6392), + [aux_sym_open_statement_token1] = ACTIONS(6392), + [aux_sym_file_mode_token2] = ACTIONS(6392), + [aux_sym_file_access_token2] = ACTIONS(6392), + [aux_sym_file_lock_token2] = ACTIONS(6392), + [aux_sym_print_statement_token1] = ACTIONS(6392), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_QMARK] = ACTIONS(6394), + [aux_sym_close_statement_token1] = ACTIONS(6392), + [aux_sym_put_statement_token1] = ACTIONS(6392), + [aux_sym_unlock_statement_token1] = ACTIONS(6392), + [aux_sym_seek_statement_token1] = ACTIONS(6392), + [sym_reset_statement] = ACTIONS(6392), + [aux_sym_raise_event_statement_token1] = ACTIONS(6392), + [sym_stop_statement] = ACTIONS(6392), + [sym_beep_statement] = ACTIONS(6392), + [aux_sym_unload_statement_token1] = ACTIONS(6392), + [aux_sym_def_type_statement_token1] = ACTIONS(6392), + [aux_sym_def_type_statement_token2] = ACTIONS(6392), + [aux_sym_def_type_statement_token3] = ACTIONS(6392), + [aux_sym_def_type_statement_token4] = ACTIONS(6392), + [aux_sym_def_type_statement_token5] = ACTIONS(6392), + [aux_sym_def_type_statement_token6] = ACTIONS(6392), + [aux_sym_def_type_statement_token7] = ACTIONS(6392), + [aux_sym_def_type_statement_token8] = ACTIONS(6392), + [aux_sym_def_type_statement_token9] = ACTIONS(6392), + [aux_sym_def_type_statement_token10] = ACTIONS(6392), + [aux_sym_def_type_statement_token11] = ACTIONS(6392), + [aux_sym_def_type_statement_token12] = ACTIONS(6392), + [aux_sym_def_type_statement_token13] = ACTIONS(6392), + [aux_sym_def_type_statement_token14] = ACTIONS(6392), + [aux_sym_call_statement_token1] = ACTIONS(6392), + [sym__ambiguous_call_statement] = ACTIONS(6392), + [aux_sym_addressof_expression_token1] = ACTIONS(6392), + [aux_sym_type_of_expression_token1] = ACTIONS(6392), + [aux_sym_unary_expression_token1] = ACTIONS(6392), + [sym_string_literal] = ACTIONS(6394), + [sym_number_literal] = ACTIONS(6394), + [aux_sym_boolean_literal_token1] = ACTIONS(6392), + [aux_sym_boolean_literal_token2] = ACTIONS(6392), + [sym_nothing_literal] = ACTIONS(6392), + [sym_null_literal] = ACTIONS(6392), + [sym_empty_literal] = ACTIONS(6392), + [sym_date_literal] = ACTIONS(6394), + [anon_sym_POUND] = ACTIONS(6392), + }, + [STATE(2171)] = { + [sym_identifier] = ACTIONS(6625), + [sym_newline] = ACTIONS(6627), + [anon_sym_COLON] = ACTIONS(6627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6625), + [aux_sym_frm_property_statement_token1] = ACTIONS(6625), + [anon_sym_DOT] = ACTIONS(6625), + [anon_sym_BANG] = ACTIONS(6627), + [aux_sym__attribute_identifier_token1] = ACTIONS(6625), + [aux_sym_option_statement_token3] = ACTIONS(6625), + [aux_sym_type_declaration_token1] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6625), + [aux_sym_enum_declaration_token1] = ACTIONS(6625), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6625), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6625), + [aux_sym_declare_function_statement_token1] = ACTIONS(6625), + [aux_sym_preprocessor_const_token1] = ACTIONS(6625), + [aux_sym__property_get_header_token1] = ACTIONS(6625), + [aux_sym_event_declaration_token1] = ACTIONS(6625), + [sym_static_modifier] = ACTIONS(6625), + [sym__dim_keyword] = ACTIONS(6625), + [sym__redim_keyword] = ACTIONS(6625), + [aux_sym_get_accessor_token1] = ACTIONS(6625), + [aux_sym_set_accessor_token1] = ACTIONS(6625), + [aux_sym_const_declaration_token1] = ACTIONS(6625), + [anon_sym_LPAREN] = ACTIONS(6627), + [aux_sym_as_type_clause_token2] = ACTIONS(6625), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6625), + [aux_sym_visibility_token1] = ACTIONS(6625), + [aux_sym_visibility_token2] = ACTIONS(6625), + [aux_sym_elseif_fragment_token1] = ACTIONS(6625), + [aux_sym_else_fragment_token1] = ACTIONS(6625), + [aux_sym_select_statement_token1] = ACTIONS(6625), + [aux_sym__for_header_token1] = ACTIONS(6625), + [aux_sym_do_statement_token1] = ACTIONS(6625), + [aux_sym_do_condition_token1] = ACTIONS(6625), + [aux_sym_with_statement_token1] = ACTIONS(6625), + [aux_sym_exit_statement_token1] = ACTIONS(6625), + [sym_end_statement] = ACTIONS(6627), + [aux_sym_on_goto_statement_token1] = ACTIONS(6625), + [aux_sym_on_goto_statement_token2] = ACTIONS(6625), + [aux_sym_on_error_statement_token2] = ACTIONS(6625), + [sym__ambiguous_redim_statement] = ACTIONS(6627), + [aux_sym_erase_statement_token1] = ACTIONS(6625), + [aux_sym_open_statement_token1] = ACTIONS(6625), + [aux_sym_file_mode_token2] = ACTIONS(6625), + [aux_sym_file_access_token2] = ACTIONS(6625), + [aux_sym_file_lock_token2] = ACTIONS(6625), + [aux_sym_print_statement_token1] = ACTIONS(6625), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_QMARK] = ACTIONS(6627), + [aux_sym_close_statement_token1] = ACTIONS(6625), + [aux_sym_put_statement_token1] = ACTIONS(6625), + [aux_sym_unlock_statement_token1] = ACTIONS(6625), + [aux_sym_seek_statement_token1] = ACTIONS(6625), + [sym_reset_statement] = ACTIONS(6625), + [aux_sym_raise_event_statement_token1] = ACTIONS(6625), + [sym_stop_statement] = ACTIONS(6625), + [sym_beep_statement] = ACTIONS(6625), + [aux_sym_unload_statement_token1] = ACTIONS(6625), + [aux_sym_def_type_statement_token1] = ACTIONS(6625), + [aux_sym_def_type_statement_token2] = ACTIONS(6625), + [aux_sym_def_type_statement_token3] = ACTIONS(6625), + [aux_sym_def_type_statement_token4] = ACTIONS(6625), + [aux_sym_def_type_statement_token5] = ACTIONS(6625), + [aux_sym_def_type_statement_token6] = ACTIONS(6625), + [aux_sym_def_type_statement_token7] = ACTIONS(6625), + [aux_sym_def_type_statement_token8] = ACTIONS(6625), + [aux_sym_def_type_statement_token9] = ACTIONS(6625), + [aux_sym_def_type_statement_token10] = ACTIONS(6625), + [aux_sym_def_type_statement_token11] = ACTIONS(6625), + [aux_sym_def_type_statement_token12] = ACTIONS(6625), + [aux_sym_def_type_statement_token13] = ACTIONS(6625), + [aux_sym_def_type_statement_token14] = ACTIONS(6625), + [aux_sym_call_statement_token1] = ACTIONS(6625), + [sym__ambiguous_call_statement] = ACTIONS(6625), + [aux_sym_addressof_expression_token1] = ACTIONS(6625), + [aux_sym_type_of_expression_token1] = ACTIONS(6625), + [aux_sym_unary_expression_token1] = ACTIONS(6625), + [sym_string_literal] = ACTIONS(6627), + [sym_number_literal] = ACTIONS(6627), + [aux_sym_boolean_literal_token1] = ACTIONS(6625), + [aux_sym_boolean_literal_token2] = ACTIONS(6625), + [sym_nothing_literal] = ACTIONS(6625), + [sym_null_literal] = ACTIONS(6625), + [sym_empty_literal] = ACTIONS(6625), + [sym_date_literal] = ACTIONS(6627), + [anon_sym_POUND] = ACTIONS(6625), + }, + [STATE(2172)] = { + [sym_identifier] = ACTIONS(6629), + [sym_newline] = ACTIONS(6631), + [anon_sym_COLON] = ACTIONS(6631), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6629), + [aux_sym_frm_property_statement_token1] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6631), + [aux_sym__attribute_identifier_token1] = ACTIONS(6629), + [aux_sym_option_statement_token3] = ACTIONS(6629), + [aux_sym_type_declaration_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6629), + [aux_sym_enum_declaration_token1] = ACTIONS(6629), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6629), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6629), + [aux_sym_declare_function_statement_token1] = ACTIONS(6629), + [aux_sym_preprocessor_const_token1] = ACTIONS(6629), + [aux_sym__property_get_header_token1] = ACTIONS(6629), + [aux_sym_event_declaration_token1] = ACTIONS(6629), + [sym_static_modifier] = ACTIONS(6629), + [sym__dim_keyword] = ACTIONS(6629), + [sym__redim_keyword] = ACTIONS(6629), + [aux_sym_get_accessor_token1] = ACTIONS(6629), + [aux_sym_set_accessor_token1] = ACTIONS(6629), + [aux_sym_const_declaration_token1] = ACTIONS(6629), + [anon_sym_LPAREN] = ACTIONS(6631), + [aux_sym_as_type_clause_token2] = ACTIONS(6629), + [anon_sym_STAR] = ACTIONS(4986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6629), + [aux_sym_visibility_token1] = ACTIONS(6629), + [aux_sym_visibility_token2] = ACTIONS(6629), + [aux_sym_elseif_fragment_token1] = ACTIONS(6629), + [aux_sym_else_fragment_token1] = ACTIONS(6629), + [aux_sym_select_statement_token1] = ACTIONS(6629), + [aux_sym__for_header_token1] = ACTIONS(6629), + [aux_sym_do_statement_token1] = ACTIONS(6629), + [aux_sym_do_condition_token1] = ACTIONS(6629), + [aux_sym_with_statement_token1] = ACTIONS(6629), + [aux_sym_exit_statement_token1] = ACTIONS(6629), + [sym_end_statement] = ACTIONS(6631), + [aux_sym_on_goto_statement_token1] = ACTIONS(6629), + [aux_sym_on_goto_statement_token2] = ACTIONS(6629), + [aux_sym_on_error_statement_token2] = ACTIONS(6629), + [sym__ambiguous_redim_statement] = ACTIONS(6631), + [aux_sym_erase_statement_token1] = ACTIONS(6629), + [aux_sym_open_statement_token1] = ACTIONS(6629), + [aux_sym_file_mode_token2] = ACTIONS(6629), + [aux_sym_file_access_token2] = ACTIONS(6629), + [aux_sym_file_lock_token2] = ACTIONS(6629), + [aux_sym_print_statement_token1] = ACTIONS(6629), + [anon_sym_CARET] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4986), + [anon_sym_BSLASH] = ACTIONS(4988), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4994), + [anon_sym_AMP] = ACTIONS(4996), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4998), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5000), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5002), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5004), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5006), + [anon_sym_QMARK] = ACTIONS(6631), + [aux_sym_close_statement_token1] = ACTIONS(6629), + [aux_sym_put_statement_token1] = ACTIONS(6629), + [aux_sym_unlock_statement_token1] = ACTIONS(6629), + [aux_sym_seek_statement_token1] = ACTIONS(6629), + [sym_reset_statement] = ACTIONS(6629), + [aux_sym_raise_event_statement_token1] = ACTIONS(6629), + [sym_stop_statement] = ACTIONS(6629), + [sym_beep_statement] = ACTIONS(6629), + [aux_sym_unload_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token2] = ACTIONS(6629), + [aux_sym_def_type_statement_token3] = ACTIONS(6629), + [aux_sym_def_type_statement_token4] = ACTIONS(6629), + [aux_sym_def_type_statement_token5] = ACTIONS(6629), + [aux_sym_def_type_statement_token6] = ACTIONS(6629), + [aux_sym_def_type_statement_token7] = ACTIONS(6629), + [aux_sym_def_type_statement_token8] = ACTIONS(6629), + [aux_sym_def_type_statement_token9] = ACTIONS(6629), + [aux_sym_def_type_statement_token10] = ACTIONS(6629), + [aux_sym_def_type_statement_token11] = ACTIONS(6629), + [aux_sym_def_type_statement_token12] = ACTIONS(6629), + [aux_sym_def_type_statement_token13] = ACTIONS(6629), + [aux_sym_def_type_statement_token14] = ACTIONS(6629), + [aux_sym_call_statement_token1] = ACTIONS(6629), + [sym__ambiguous_call_statement] = ACTIONS(6629), + [aux_sym_addressof_expression_token1] = ACTIONS(6629), + [aux_sym_type_of_expression_token1] = ACTIONS(6629), + [aux_sym_unary_expression_token1] = ACTIONS(6629), + [sym_string_literal] = ACTIONS(6631), + [sym_number_literal] = ACTIONS(6631), + [aux_sym_boolean_literal_token1] = ACTIONS(6629), + [aux_sym_boolean_literal_token2] = ACTIONS(6629), + [sym_nothing_literal] = ACTIONS(6629), + [sym_null_literal] = ACTIONS(6629), + [sym_empty_literal] = ACTIONS(6629), + [sym_date_literal] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6629), + }, + [STATE(2173)] = { + [sym_file_number] = STATE(5104), + [sym__primary_expression] = STATE(3202), + [sym__expression] = STATE(3202), + [sym__callable_expression] = STATE(13536), + [sym_call_expression] = STATE(2304), + [sym_new_expression] = STATE(3202), + [sym_addressof_expression] = STATE(3202), + [sym_type_of_expression] = STATE(3202), + [sym_member_expression] = STATE(2352), + [sym_qualified_member_expression] = STATE(2236), + [sym_implicit_member_expression] = STATE(2236), + [sym_parenthesized_expression] = STATE(3202), + [sym_binary_expression] = STATE(3202), + [sym_unary_expression] = STATE(3202), + [sym__signed_unary_expression] = STATE(2428), + [sym__literal] = STATE(3202), + [sym_boolean_literal] = STATE(3202), + [sym_file_number_literal] = STATE(3208), + [sym_identifier] = ACTIONS(6784), + [sym_newline] = ACTIONS(5130), + [anon_sym_COLON] = ACTIONS(5130), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5132), + [aux_sym_frm_property_statement_token1] = ACTIONS(6786), + [anon_sym_DOT] = ACTIONS(6788), + [anon_sym_BANG] = ACTIONS(1727), + [aux_sym__attribute_identifier_token1] = ACTIONS(5132), + [aux_sym_option_statement_token3] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5132), + [aux_sym_preprocessor_const_token1] = ACTIONS(5132), + [sym_static_modifier] = ACTIONS(5132), + [sym__dim_keyword] = ACTIONS(5132), + [sym__redim_keyword] = ACTIONS(5132), + [aux_sym_get_accessor_token1] = ACTIONS(5132), + [aux_sym_set_accessor_token1] = ACTIONS(5132), + [aux_sym_const_declaration_token1] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(1749), + [aux_sym_as_type_clause_token2] = ACTIONS(1751), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6790), + [aux_sym_visibility_token1] = ACTIONS(5132), + [aux_sym_visibility_token2] = ACTIONS(5132), + [aux_sym_elseif_fragment_token1] = ACTIONS(5132), + [aux_sym_else_fragment_token1] = ACTIONS(5132), + [aux_sym_select_statement_token1] = ACTIONS(5132), + [aux_sym__for_header_token1] = ACTIONS(5132), + [aux_sym_do_statement_token1] = ACTIONS(5132), + [aux_sym_do_condition_token1] = ACTIONS(5132), + [aux_sym_while_statement_token1] = ACTIONS(5132), + [aux_sym_with_statement_token1] = ACTIONS(5132), + [aux_sym_exit_statement_token1] = ACTIONS(5132), + [sym_end_statement] = ACTIONS(5130), + [aux_sym_on_goto_statement_token1] = ACTIONS(5132), + [aux_sym_on_goto_statement_token2] = ACTIONS(5132), + [aux_sym_on_error_statement_token2] = ACTIONS(5132), + [sym__ambiguous_redim_statement] = ACTIONS(5130), + [aux_sym_erase_statement_token1] = ACTIONS(5132), + [aux_sym_open_statement_token1] = ACTIONS(5132), + [aux_sym_file_mode_token2] = ACTIONS(5132), + [aux_sym_file_access_token2] = ACTIONS(5132), + [aux_sym_file_lock_token2] = ACTIONS(5132), + [aux_sym_print_statement_token1] = ACTIONS(5132), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_QMARK] = ACTIONS(5130), + [aux_sym_close_statement_token1] = ACTIONS(5132), + [aux_sym_put_statement_token1] = ACTIONS(5132), + [aux_sym_unlock_statement_token1] = ACTIONS(5132), + [aux_sym_seek_statement_token1] = ACTIONS(5132), + [sym_reset_statement] = ACTIONS(5132), + [aux_sym_raise_event_statement_token1] = ACTIONS(5132), + [sym_stop_statement] = ACTIONS(5132), + [sym_beep_statement] = ACTIONS(5132), + [aux_sym_unload_statement_token1] = ACTIONS(5132), + [aux_sym_def_type_statement_token1] = ACTIONS(5132), + [aux_sym_def_type_statement_token2] = ACTIONS(5132), + [aux_sym_def_type_statement_token3] = ACTIONS(5132), + [aux_sym_def_type_statement_token4] = ACTIONS(5132), + [aux_sym_def_type_statement_token5] = ACTIONS(5132), + [aux_sym_def_type_statement_token6] = ACTIONS(5132), + [aux_sym_def_type_statement_token7] = ACTIONS(5132), + [aux_sym_def_type_statement_token8] = ACTIONS(5132), + [aux_sym_def_type_statement_token9] = ACTIONS(5132), + [aux_sym_def_type_statement_token10] = ACTIONS(5132), + [aux_sym_def_type_statement_token11] = ACTIONS(5132), + [aux_sym_def_type_statement_token12] = ACTIONS(5132), + [aux_sym_def_type_statement_token13] = ACTIONS(5132), + [aux_sym_def_type_statement_token14] = ACTIONS(5132), + [aux_sym_call_statement_token1] = ACTIONS(5132), + [sym__ambiguous_call_statement] = ACTIONS(5132), + [aux_sym_addressof_expression_token1] = ACTIONS(1817), + [aux_sym_type_of_expression_token1] = ACTIONS(1819), + [aux_sym_unary_expression_token1] = ACTIONS(1821), + [sym_string_literal] = ACTIONS(6792), + [sym_number_literal] = ACTIONS(6792), + [aux_sym_boolean_literal_token1] = ACTIONS(1827), + [aux_sym_boolean_literal_token2] = ACTIONS(1827), + [sym_nothing_literal] = ACTIONS(6794), + [sym_null_literal] = ACTIONS(6794), + [sym_empty_literal] = ACTIONS(6794), + [sym_date_literal] = ACTIONS(6792), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(2174)] = { + [sym_identifier] = ACTIONS(6430), + [sym_newline] = ACTIONS(6432), + [anon_sym_COLON] = ACTIONS(6432), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6430), + [aux_sym_frm_property_statement_token1] = ACTIONS(6430), + [anon_sym_DOT] = ACTIONS(6430), + [anon_sym_BANG] = ACTIONS(6432), + [aux_sym__attribute_identifier_token1] = ACTIONS(6430), + [aux_sym_option_statement_token3] = ACTIONS(6430), + [aux_sym_type_declaration_token1] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6430), + [aux_sym_enum_declaration_token1] = ACTIONS(6430), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6430), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6430), + [aux_sym_declare_function_statement_token1] = ACTIONS(6430), + [aux_sym_preprocessor_const_token1] = ACTIONS(6430), + [aux_sym__property_get_header_token1] = ACTIONS(6430), + [aux_sym_event_declaration_token1] = ACTIONS(6430), + [sym_static_modifier] = ACTIONS(6430), + [sym__dim_keyword] = ACTIONS(6430), + [sym__redim_keyword] = ACTIONS(6430), + [aux_sym_get_accessor_token1] = ACTIONS(6430), + [aux_sym_set_accessor_token1] = ACTIONS(6430), + [aux_sym_const_declaration_token1] = ACTIONS(6430), + [anon_sym_LPAREN] = ACTIONS(6432), + [aux_sym_as_type_clause_token2] = ACTIONS(6430), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6430), + [aux_sym_visibility_token1] = ACTIONS(6430), + [aux_sym_visibility_token2] = ACTIONS(6430), + [aux_sym_elseif_fragment_token1] = ACTIONS(6430), + [aux_sym_else_fragment_token1] = ACTIONS(6430), + [aux_sym_select_statement_token1] = ACTIONS(6430), + [aux_sym__for_header_token1] = ACTIONS(6430), + [aux_sym_do_statement_token1] = ACTIONS(6430), + [aux_sym_do_condition_token1] = ACTIONS(6430), + [aux_sym_with_statement_token1] = ACTIONS(6430), + [aux_sym_exit_statement_token1] = ACTIONS(6430), + [sym_end_statement] = ACTIONS(6432), + [aux_sym_on_goto_statement_token1] = ACTIONS(6430), + [aux_sym_on_goto_statement_token2] = ACTIONS(6430), + [aux_sym_on_error_statement_token2] = ACTIONS(6430), + [sym__ambiguous_redim_statement] = ACTIONS(6432), + [aux_sym_erase_statement_token1] = ACTIONS(6430), + [aux_sym_open_statement_token1] = ACTIONS(6430), + [aux_sym_file_mode_token2] = ACTIONS(6430), + [aux_sym_file_access_token2] = ACTIONS(6430), + [aux_sym_file_lock_token2] = ACTIONS(6430), + [aux_sym_print_statement_token1] = ACTIONS(6430), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_QMARK] = ACTIONS(6432), + [aux_sym_close_statement_token1] = ACTIONS(6430), + [aux_sym_put_statement_token1] = ACTIONS(6430), + [aux_sym_unlock_statement_token1] = ACTIONS(6430), + [aux_sym_seek_statement_token1] = ACTIONS(6430), + [sym_reset_statement] = ACTIONS(6430), + [aux_sym_raise_event_statement_token1] = ACTIONS(6430), + [sym_stop_statement] = ACTIONS(6430), + [sym_beep_statement] = ACTIONS(6430), + [aux_sym_unload_statement_token1] = ACTIONS(6430), + [aux_sym_def_type_statement_token1] = ACTIONS(6430), + [aux_sym_def_type_statement_token2] = ACTIONS(6430), + [aux_sym_def_type_statement_token3] = ACTIONS(6430), + [aux_sym_def_type_statement_token4] = ACTIONS(6430), + [aux_sym_def_type_statement_token5] = ACTIONS(6430), + [aux_sym_def_type_statement_token6] = ACTIONS(6430), + [aux_sym_def_type_statement_token7] = ACTIONS(6430), + [aux_sym_def_type_statement_token8] = ACTIONS(6430), + [aux_sym_def_type_statement_token9] = ACTIONS(6430), + [aux_sym_def_type_statement_token10] = ACTIONS(6430), + [aux_sym_def_type_statement_token11] = ACTIONS(6430), + [aux_sym_def_type_statement_token12] = ACTIONS(6430), + [aux_sym_def_type_statement_token13] = ACTIONS(6430), + [aux_sym_def_type_statement_token14] = ACTIONS(6430), + [aux_sym_call_statement_token1] = ACTIONS(6430), + [sym__ambiguous_call_statement] = ACTIONS(6430), + [aux_sym_addressof_expression_token1] = ACTIONS(6430), + [aux_sym_type_of_expression_token1] = ACTIONS(6430), + [aux_sym_unary_expression_token1] = ACTIONS(6430), + [sym_string_literal] = ACTIONS(6432), + [sym_number_literal] = ACTIONS(6432), + [aux_sym_boolean_literal_token1] = ACTIONS(6430), + [aux_sym_boolean_literal_token2] = ACTIONS(6430), + [sym_nothing_literal] = ACTIONS(6430), + [sym_null_literal] = ACTIONS(6430), + [sym_empty_literal] = ACTIONS(6430), + [sym_date_literal] = ACTIONS(6432), + [anon_sym_POUND] = ACTIONS(6430), + }, + [STATE(2175)] = { + [sym_identifier] = ACTIONS(6304), + [sym_newline] = ACTIONS(6306), + [anon_sym_COLON] = ACTIONS(6306), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6304), + [aux_sym_frm_property_statement_token1] = ACTIONS(6304), + [anon_sym_DOT] = ACTIONS(6304), + [anon_sym_BANG] = ACTIONS(6306), + [aux_sym__attribute_identifier_token1] = ACTIONS(6304), + [aux_sym_option_statement_token3] = ACTIONS(6304), + [aux_sym_type_declaration_token1] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6304), + [aux_sym_enum_declaration_token1] = ACTIONS(6304), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6304), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6304), + [aux_sym_declare_function_statement_token1] = ACTIONS(6304), + [aux_sym_preprocessor_const_token1] = ACTIONS(6304), + [aux_sym__property_get_header_token1] = ACTIONS(6304), + [aux_sym_event_declaration_token1] = ACTIONS(6304), + [sym_static_modifier] = ACTIONS(6304), + [sym__dim_keyword] = ACTIONS(6304), + [sym__redim_keyword] = ACTIONS(6304), + [aux_sym_get_accessor_token1] = ACTIONS(6304), + [aux_sym_set_accessor_token1] = ACTIONS(6304), + [aux_sym_const_declaration_token1] = ACTIONS(6304), + [anon_sym_LPAREN] = ACTIONS(6306), + [aux_sym_as_type_clause_token2] = ACTIONS(6304), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6304), + [aux_sym_visibility_token1] = ACTIONS(6304), + [aux_sym_visibility_token2] = ACTIONS(6304), + [aux_sym_elseif_fragment_token1] = ACTIONS(6304), + [aux_sym_else_fragment_token1] = ACTIONS(6304), + [aux_sym_select_statement_token1] = ACTIONS(6304), + [aux_sym__for_header_token1] = ACTIONS(6304), + [aux_sym_do_statement_token1] = ACTIONS(6304), + [aux_sym_do_condition_token1] = ACTIONS(6304), + [aux_sym_with_statement_token1] = ACTIONS(6304), + [aux_sym_exit_statement_token1] = ACTIONS(6304), + [sym_end_statement] = ACTIONS(6306), + [aux_sym_on_goto_statement_token1] = ACTIONS(6304), + [aux_sym_on_goto_statement_token2] = ACTIONS(6304), + [aux_sym_on_error_statement_token2] = ACTIONS(6304), + [sym__ambiguous_redim_statement] = ACTIONS(6306), + [aux_sym_erase_statement_token1] = ACTIONS(6304), + [aux_sym_open_statement_token1] = ACTIONS(6304), + [aux_sym_file_mode_token2] = ACTIONS(6304), + [aux_sym_file_access_token2] = ACTIONS(6304), + [aux_sym_file_lock_token2] = ACTIONS(6304), + [aux_sym_print_statement_token1] = ACTIONS(6304), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_QMARK] = ACTIONS(6306), + [aux_sym_close_statement_token1] = ACTIONS(6304), + [aux_sym_put_statement_token1] = ACTIONS(6304), + [aux_sym_unlock_statement_token1] = ACTIONS(6304), + [aux_sym_seek_statement_token1] = ACTIONS(6304), + [sym_reset_statement] = ACTIONS(6304), + [aux_sym_raise_event_statement_token1] = ACTIONS(6304), + [sym_stop_statement] = ACTIONS(6304), + [sym_beep_statement] = ACTIONS(6304), + [aux_sym_unload_statement_token1] = ACTIONS(6304), + [aux_sym_def_type_statement_token1] = ACTIONS(6304), + [aux_sym_def_type_statement_token2] = ACTIONS(6304), + [aux_sym_def_type_statement_token3] = ACTIONS(6304), + [aux_sym_def_type_statement_token4] = ACTIONS(6304), + [aux_sym_def_type_statement_token5] = ACTIONS(6304), + [aux_sym_def_type_statement_token6] = ACTIONS(6304), + [aux_sym_def_type_statement_token7] = ACTIONS(6304), + [aux_sym_def_type_statement_token8] = ACTIONS(6304), + [aux_sym_def_type_statement_token9] = ACTIONS(6304), + [aux_sym_def_type_statement_token10] = ACTIONS(6304), + [aux_sym_def_type_statement_token11] = ACTIONS(6304), + [aux_sym_def_type_statement_token12] = ACTIONS(6304), + [aux_sym_def_type_statement_token13] = ACTIONS(6304), + [aux_sym_def_type_statement_token14] = ACTIONS(6304), + [aux_sym_call_statement_token1] = ACTIONS(6304), + [sym__ambiguous_call_statement] = ACTIONS(6304), + [aux_sym_addressof_expression_token1] = ACTIONS(6304), + [aux_sym_type_of_expression_token1] = ACTIONS(6304), + [aux_sym_unary_expression_token1] = ACTIONS(6304), + [sym_string_literal] = ACTIONS(6306), + [sym_number_literal] = ACTIONS(6306), + [aux_sym_boolean_literal_token1] = ACTIONS(6304), + [aux_sym_boolean_literal_token2] = ACTIONS(6304), + [sym_nothing_literal] = ACTIONS(6304), + [sym_null_literal] = ACTIONS(6304), + [sym_empty_literal] = ACTIONS(6304), + [sym_date_literal] = ACTIONS(6306), + [anon_sym_POUND] = ACTIONS(6304), + }, + [STATE(2176)] = { + [sym_file_number] = STATE(5599), + [sym__primary_expression] = STATE(2983), + [sym__expression] = STATE(2983), + [sym__callable_expression] = STATE(13148), + [sym_call_expression] = STATE(2277), + [sym_new_expression] = STATE(2983), + [sym_addressof_expression] = STATE(2983), + [sym_type_of_expression] = STATE(2983), + [sym_member_expression] = STATE(2509), + [sym_qualified_member_expression] = STATE(2319), + [sym_implicit_member_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(2983), + [sym_binary_expression] = STATE(2983), + [sym_unary_expression] = STATE(2983), + [sym__signed_unary_expression] = STATE(2361), + [sym__literal] = STATE(2983), + [sym_boolean_literal] = STATE(2983), + [sym_file_number_literal] = STATE(2984), + [sym_identifier] = ACTIONS(6796), + [sym_newline] = ACTIONS(5130), + [anon_sym_COLON] = ACTIONS(5130), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5132), + [aux_sym_frm_property_statement_token1] = ACTIONS(6798), + [anon_sym_DOT] = ACTIONS(6800), + [anon_sym_BANG] = ACTIONS(2399), + [aux_sym__attribute_identifier_token1] = ACTIONS(5132), + [aux_sym_option_statement_token3] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5132), + [aux_sym_preprocessor_const_token1] = ACTIONS(5132), + [sym_static_modifier] = ACTIONS(5132), + [sym__dim_keyword] = ACTIONS(5132), + [sym__redim_keyword] = ACTIONS(5132), + [aux_sym_get_accessor_token1] = ACTIONS(5132), + [aux_sym_set_accessor_token1] = ACTIONS(5132), + [aux_sym_const_declaration_token1] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(2421), + [aux_sym_as_type_clause_token2] = ACTIONS(2423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6802), + [aux_sym_visibility_token1] = ACTIONS(5132), + [aux_sym_visibility_token2] = ACTIONS(5132), + [aux_sym_elseif_fragment_token1] = ACTIONS(5132), + [aux_sym_else_fragment_token1] = ACTIONS(5132), + [aux_sym_select_statement_token1] = ACTIONS(5132), + [aux_sym__for_header_token1] = ACTIONS(5132), + [aux_sym_do_statement_token1] = ACTIONS(5132), + [aux_sym_do_condition_token1] = ACTIONS(5132), + [aux_sym_with_statement_token1] = ACTIONS(5132), + [aux_sym_exit_statement_token1] = ACTIONS(5132), + [sym_end_statement] = ACTIONS(5130), + [aux_sym_on_goto_statement_token1] = ACTIONS(5132), + [aux_sym_on_goto_statement_token2] = ACTIONS(5132), + [aux_sym_on_error_statement_token2] = ACTIONS(5132), + [sym__ambiguous_redim_statement] = ACTIONS(5130), + [aux_sym_erase_statement_token1] = ACTIONS(5132), + [aux_sym_open_statement_token1] = ACTIONS(5132), + [aux_sym_file_mode_token2] = ACTIONS(5132), + [aux_sym_file_access_token2] = ACTIONS(5132), + [aux_sym_file_lock_token2] = ACTIONS(5132), + [aux_sym_print_statement_token1] = ACTIONS(5132), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(5130), + [aux_sym_close_statement_token1] = ACTIONS(5132), + [aux_sym_put_statement_token1] = ACTIONS(5132), + [aux_sym_unlock_statement_token1] = ACTIONS(5132), + [aux_sym_seek_statement_token1] = ACTIONS(5132), + [sym_reset_statement] = ACTIONS(5132), + [aux_sym_raise_event_statement_token1] = ACTIONS(5132), + [sym_stop_statement] = ACTIONS(5132), + [sym_beep_statement] = ACTIONS(5132), + [aux_sym_unload_statement_token1] = ACTIONS(5132), + [aux_sym_def_type_statement_token1] = ACTIONS(5132), + [aux_sym_def_type_statement_token2] = ACTIONS(5132), + [aux_sym_def_type_statement_token3] = ACTIONS(5132), + [aux_sym_def_type_statement_token4] = ACTIONS(5132), + [aux_sym_def_type_statement_token5] = ACTIONS(5132), + [aux_sym_def_type_statement_token6] = ACTIONS(5132), + [aux_sym_def_type_statement_token7] = ACTIONS(5132), + [aux_sym_def_type_statement_token8] = ACTIONS(5132), + [aux_sym_def_type_statement_token9] = ACTIONS(5132), + [aux_sym_def_type_statement_token10] = ACTIONS(5132), + [aux_sym_def_type_statement_token11] = ACTIONS(5132), + [aux_sym_def_type_statement_token12] = ACTIONS(5132), + [aux_sym_def_type_statement_token13] = ACTIONS(5132), + [aux_sym_def_type_statement_token14] = ACTIONS(5132), + [aux_sym_call_statement_token1] = ACTIONS(5132), + [sym__ambiguous_call_statement] = ACTIONS(5132), + [aux_sym_addressof_expression_token1] = ACTIONS(2487), + [aux_sym_type_of_expression_token1] = ACTIONS(2489), + [aux_sym_unary_expression_token1] = ACTIONS(2491), + [sym_string_literal] = ACTIONS(6804), + [sym_number_literal] = ACTIONS(6804), + [aux_sym_boolean_literal_token1] = ACTIONS(2497), + [aux_sym_boolean_literal_token2] = ACTIONS(2497), + [sym_nothing_literal] = ACTIONS(6806), + [sym_null_literal] = ACTIONS(6806), + [sym_empty_literal] = ACTIONS(6806), + [sym_date_literal] = ACTIONS(6804), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(2177)] = { + [sym_identifier] = ACTIONS(6320), + [sym_newline] = ACTIONS(6322), + [anon_sym_COLON] = ACTIONS(6322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6320), + [aux_sym_frm_property_statement_token1] = ACTIONS(6320), + [anon_sym_DOT] = ACTIONS(6320), + [anon_sym_BANG] = ACTIONS(6322), + [aux_sym__attribute_identifier_token1] = ACTIONS(6320), + [aux_sym_option_statement_token3] = ACTIONS(6320), + [aux_sym_type_declaration_token1] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6320), + [aux_sym_enum_declaration_token1] = ACTIONS(6320), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6320), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6320), + [aux_sym_declare_function_statement_token1] = ACTIONS(6320), + [aux_sym_preprocessor_const_token1] = ACTIONS(6320), + [aux_sym__property_get_header_token1] = ACTIONS(6320), + [aux_sym_event_declaration_token1] = ACTIONS(6320), + [sym_static_modifier] = ACTIONS(6320), + [sym__dim_keyword] = ACTIONS(6320), + [sym__redim_keyword] = ACTIONS(6320), + [aux_sym_get_accessor_token1] = ACTIONS(6320), + [aux_sym_set_accessor_token1] = ACTIONS(6320), + [aux_sym_const_declaration_token1] = ACTIONS(6320), + [anon_sym_LPAREN] = ACTIONS(6322), + [aux_sym_as_type_clause_token2] = ACTIONS(6320), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6320), + [aux_sym_visibility_token1] = ACTIONS(6320), + [aux_sym_visibility_token2] = ACTIONS(6320), + [aux_sym_elseif_fragment_token1] = ACTIONS(6320), + [aux_sym_else_fragment_token1] = ACTIONS(6320), + [aux_sym_select_statement_token1] = ACTIONS(6320), + [aux_sym__for_header_token1] = ACTIONS(6320), + [aux_sym_do_statement_token1] = ACTIONS(6320), + [aux_sym_do_condition_token1] = ACTIONS(6320), + [aux_sym_with_statement_token1] = ACTIONS(6320), + [aux_sym_exit_statement_token1] = ACTIONS(6320), + [sym_end_statement] = ACTIONS(6322), + [aux_sym_on_goto_statement_token1] = ACTIONS(6320), + [aux_sym_on_goto_statement_token2] = ACTIONS(6320), + [aux_sym_on_error_statement_token2] = ACTIONS(6320), + [sym__ambiguous_redim_statement] = ACTIONS(6322), + [aux_sym_erase_statement_token1] = ACTIONS(6320), + [aux_sym_open_statement_token1] = ACTIONS(6320), + [aux_sym_file_mode_token2] = ACTIONS(6320), + [aux_sym_file_access_token2] = ACTIONS(6320), + [aux_sym_file_lock_token2] = ACTIONS(6320), + [aux_sym_print_statement_token1] = ACTIONS(6320), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_QMARK] = ACTIONS(6322), + [aux_sym_close_statement_token1] = ACTIONS(6320), + [aux_sym_put_statement_token1] = ACTIONS(6320), + [aux_sym_unlock_statement_token1] = ACTIONS(6320), + [aux_sym_seek_statement_token1] = ACTIONS(6320), + [sym_reset_statement] = ACTIONS(6320), + [aux_sym_raise_event_statement_token1] = ACTIONS(6320), + [sym_stop_statement] = ACTIONS(6320), + [sym_beep_statement] = ACTIONS(6320), + [aux_sym_unload_statement_token1] = ACTIONS(6320), + [aux_sym_def_type_statement_token1] = ACTIONS(6320), + [aux_sym_def_type_statement_token2] = ACTIONS(6320), + [aux_sym_def_type_statement_token3] = ACTIONS(6320), + [aux_sym_def_type_statement_token4] = ACTIONS(6320), + [aux_sym_def_type_statement_token5] = ACTIONS(6320), + [aux_sym_def_type_statement_token6] = ACTIONS(6320), + [aux_sym_def_type_statement_token7] = ACTIONS(6320), + [aux_sym_def_type_statement_token8] = ACTIONS(6320), + [aux_sym_def_type_statement_token9] = ACTIONS(6320), + [aux_sym_def_type_statement_token10] = ACTIONS(6320), + [aux_sym_def_type_statement_token11] = ACTIONS(6320), + [aux_sym_def_type_statement_token12] = ACTIONS(6320), + [aux_sym_def_type_statement_token13] = ACTIONS(6320), + [aux_sym_def_type_statement_token14] = ACTIONS(6320), + [aux_sym_call_statement_token1] = ACTIONS(6320), + [sym__ambiguous_call_statement] = ACTIONS(6320), + [aux_sym_addressof_expression_token1] = ACTIONS(6320), + [aux_sym_type_of_expression_token1] = ACTIONS(6320), + [aux_sym_unary_expression_token1] = ACTIONS(6320), + [sym_string_literal] = ACTIONS(6322), + [sym_number_literal] = ACTIONS(6322), + [aux_sym_boolean_literal_token1] = ACTIONS(6320), + [aux_sym_boolean_literal_token2] = ACTIONS(6320), + [sym_nothing_literal] = ACTIONS(6320), + [sym_null_literal] = ACTIONS(6320), + [sym_empty_literal] = ACTIONS(6320), + [sym_date_literal] = ACTIONS(6322), + [anon_sym_POUND] = ACTIONS(6320), + }, + [STATE(2178)] = { + [sym_identifier] = ACTIONS(6434), + [sym_newline] = ACTIONS(6436), + [anon_sym_COLON] = ACTIONS(6436), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6434), + [aux_sym_frm_property_statement_token1] = ACTIONS(6434), + [anon_sym_DOT] = ACTIONS(6434), + [anon_sym_BANG] = ACTIONS(6436), + [aux_sym__attribute_identifier_token1] = ACTIONS(6434), + [aux_sym_option_statement_token3] = ACTIONS(6434), + [aux_sym_type_declaration_token1] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6434), + [aux_sym_enum_declaration_token1] = ACTIONS(6434), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6434), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6434), + [aux_sym_declare_function_statement_token1] = ACTIONS(6434), + [aux_sym_preprocessor_const_token1] = ACTIONS(6434), + [aux_sym__property_get_header_token1] = ACTIONS(6434), + [aux_sym_event_declaration_token1] = ACTIONS(6434), + [sym_static_modifier] = ACTIONS(6434), + [sym__dim_keyword] = ACTIONS(6434), + [sym__redim_keyword] = ACTIONS(6434), + [aux_sym_get_accessor_token1] = ACTIONS(6434), + [aux_sym_set_accessor_token1] = ACTIONS(6434), + [aux_sym_const_declaration_token1] = ACTIONS(6434), + [anon_sym_LPAREN] = ACTIONS(6436), + [aux_sym_as_type_clause_token2] = ACTIONS(6434), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6434), + [aux_sym_visibility_token1] = ACTIONS(6434), + [aux_sym_visibility_token2] = ACTIONS(6434), + [aux_sym_elseif_fragment_token1] = ACTIONS(6434), + [aux_sym_else_fragment_token1] = ACTIONS(6434), + [aux_sym_select_statement_token1] = ACTIONS(6434), + [aux_sym__for_header_token1] = ACTIONS(6434), + [aux_sym_do_statement_token1] = ACTIONS(6434), + [aux_sym_do_condition_token1] = ACTIONS(6434), + [aux_sym_with_statement_token1] = ACTIONS(6434), + [aux_sym_exit_statement_token1] = ACTIONS(6434), + [sym_end_statement] = ACTIONS(6436), + [aux_sym_on_goto_statement_token1] = ACTIONS(6434), + [aux_sym_on_goto_statement_token2] = ACTIONS(6434), + [aux_sym_on_error_statement_token2] = ACTIONS(6434), + [sym__ambiguous_redim_statement] = ACTIONS(6436), + [aux_sym_erase_statement_token1] = ACTIONS(6434), + [aux_sym_open_statement_token1] = ACTIONS(6434), + [aux_sym_file_mode_token2] = ACTIONS(6434), + [aux_sym_file_access_token2] = ACTIONS(6434), + [aux_sym_file_lock_token2] = ACTIONS(6434), + [aux_sym_print_statement_token1] = ACTIONS(6434), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_QMARK] = ACTIONS(6436), + [aux_sym_close_statement_token1] = ACTIONS(6434), + [aux_sym_put_statement_token1] = ACTIONS(6434), + [aux_sym_unlock_statement_token1] = ACTIONS(6434), + [aux_sym_seek_statement_token1] = ACTIONS(6434), + [sym_reset_statement] = ACTIONS(6434), + [aux_sym_raise_event_statement_token1] = ACTIONS(6434), + [sym_stop_statement] = ACTIONS(6434), + [sym_beep_statement] = ACTIONS(6434), + [aux_sym_unload_statement_token1] = ACTIONS(6434), + [aux_sym_def_type_statement_token1] = ACTIONS(6434), + [aux_sym_def_type_statement_token2] = ACTIONS(6434), + [aux_sym_def_type_statement_token3] = ACTIONS(6434), + [aux_sym_def_type_statement_token4] = ACTIONS(6434), + [aux_sym_def_type_statement_token5] = ACTIONS(6434), + [aux_sym_def_type_statement_token6] = ACTIONS(6434), + [aux_sym_def_type_statement_token7] = ACTIONS(6434), + [aux_sym_def_type_statement_token8] = ACTIONS(6434), + [aux_sym_def_type_statement_token9] = ACTIONS(6434), + [aux_sym_def_type_statement_token10] = ACTIONS(6434), + [aux_sym_def_type_statement_token11] = ACTIONS(6434), + [aux_sym_def_type_statement_token12] = ACTIONS(6434), + [aux_sym_def_type_statement_token13] = ACTIONS(6434), + [aux_sym_def_type_statement_token14] = ACTIONS(6434), + [aux_sym_call_statement_token1] = ACTIONS(6434), + [sym__ambiguous_call_statement] = ACTIONS(6434), + [aux_sym_addressof_expression_token1] = ACTIONS(6434), + [aux_sym_type_of_expression_token1] = ACTIONS(6434), + [aux_sym_unary_expression_token1] = ACTIONS(6434), + [sym_string_literal] = ACTIONS(6436), + [sym_number_literal] = ACTIONS(6436), + [aux_sym_boolean_literal_token1] = ACTIONS(6434), + [aux_sym_boolean_literal_token2] = ACTIONS(6434), + [sym_nothing_literal] = ACTIONS(6434), + [sym_null_literal] = ACTIONS(6434), + [sym_empty_literal] = ACTIONS(6434), + [sym_date_literal] = ACTIONS(6436), + [anon_sym_POUND] = ACTIONS(6434), + }, + [STATE(2179)] = { + [sym_identifier] = ACTIONS(6438), + [sym_newline] = ACTIONS(6440), + [anon_sym_COLON] = ACTIONS(6440), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6438), + [aux_sym_frm_property_statement_token1] = ACTIONS(6438), + [anon_sym_DOT] = ACTIONS(6438), + [anon_sym_BANG] = ACTIONS(6440), + [aux_sym__attribute_identifier_token1] = ACTIONS(6438), + [aux_sym_option_statement_token3] = ACTIONS(6438), + [aux_sym_type_declaration_token1] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6438), + [aux_sym_enum_declaration_token1] = ACTIONS(6438), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6438), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6438), + [aux_sym_declare_function_statement_token1] = ACTIONS(6438), + [aux_sym_preprocessor_const_token1] = ACTIONS(6438), + [aux_sym__property_get_header_token1] = ACTIONS(6438), + [aux_sym_event_declaration_token1] = ACTIONS(6438), + [sym_static_modifier] = ACTIONS(6438), + [sym__dim_keyword] = ACTIONS(6438), + [sym__redim_keyword] = ACTIONS(6438), + [aux_sym_get_accessor_token1] = ACTIONS(6438), + [aux_sym_set_accessor_token1] = ACTIONS(6438), + [aux_sym_const_declaration_token1] = ACTIONS(6438), + [anon_sym_LPAREN] = ACTIONS(6440), + [aux_sym_as_type_clause_token2] = ACTIONS(6438), + [anon_sym_STAR] = ACTIONS(6200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6438), + [aux_sym_visibility_token1] = ACTIONS(6438), + [aux_sym_visibility_token2] = ACTIONS(6438), + [aux_sym_elseif_fragment_token1] = ACTIONS(6438), + [aux_sym_else_fragment_token1] = ACTIONS(6438), + [aux_sym_select_statement_token1] = ACTIONS(6438), + [aux_sym__for_header_token1] = ACTIONS(6438), + [aux_sym_do_statement_token1] = ACTIONS(6438), + [aux_sym_do_condition_token1] = ACTIONS(6438), + [aux_sym_with_statement_token1] = ACTIONS(6438), + [aux_sym_exit_statement_token1] = ACTIONS(6438), + [sym_end_statement] = ACTIONS(6440), + [aux_sym_on_goto_statement_token1] = ACTIONS(6438), + [aux_sym_on_goto_statement_token2] = ACTIONS(6438), + [aux_sym_on_error_statement_token2] = ACTIONS(6438), + [sym__ambiguous_redim_statement] = ACTIONS(6440), + [aux_sym_erase_statement_token1] = ACTIONS(6438), + [aux_sym_open_statement_token1] = ACTIONS(6438), + [aux_sym_file_mode_token2] = ACTIONS(6438), + [aux_sym_file_access_token2] = ACTIONS(6438), + [aux_sym_file_lock_token2] = ACTIONS(6438), + [aux_sym_print_statement_token1] = ACTIONS(6438), + [anon_sym_CARET] = ACTIONS(6202), + [anon_sym_SLASH] = ACTIONS(6200), + [anon_sym_BSLASH] = ACTIONS(6204), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6206), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6212), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6214), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6216), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6218), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6220), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6222), + [anon_sym_QMARK] = ACTIONS(6440), + [aux_sym_close_statement_token1] = ACTIONS(6438), + [aux_sym_put_statement_token1] = ACTIONS(6438), + [aux_sym_unlock_statement_token1] = ACTIONS(6438), + [aux_sym_seek_statement_token1] = ACTIONS(6438), + [sym_reset_statement] = ACTIONS(6438), + [aux_sym_raise_event_statement_token1] = ACTIONS(6438), + [sym_stop_statement] = ACTIONS(6438), + [sym_beep_statement] = ACTIONS(6438), + [aux_sym_unload_statement_token1] = ACTIONS(6438), + [aux_sym_def_type_statement_token1] = ACTIONS(6438), + [aux_sym_def_type_statement_token2] = ACTIONS(6438), + [aux_sym_def_type_statement_token3] = ACTIONS(6438), + [aux_sym_def_type_statement_token4] = ACTIONS(6438), + [aux_sym_def_type_statement_token5] = ACTIONS(6438), + [aux_sym_def_type_statement_token6] = ACTIONS(6438), + [aux_sym_def_type_statement_token7] = ACTIONS(6438), + [aux_sym_def_type_statement_token8] = ACTIONS(6438), + [aux_sym_def_type_statement_token9] = ACTIONS(6438), + [aux_sym_def_type_statement_token10] = ACTIONS(6438), + [aux_sym_def_type_statement_token11] = ACTIONS(6438), + [aux_sym_def_type_statement_token12] = ACTIONS(6438), + [aux_sym_def_type_statement_token13] = ACTIONS(6438), + [aux_sym_def_type_statement_token14] = ACTIONS(6438), + [aux_sym_call_statement_token1] = ACTIONS(6438), + [sym__ambiguous_call_statement] = ACTIONS(6438), + [aux_sym_addressof_expression_token1] = ACTIONS(6438), + [aux_sym_type_of_expression_token1] = ACTIONS(6438), + [aux_sym_unary_expression_token1] = ACTIONS(6438), + [sym_string_literal] = ACTIONS(6440), + [sym_number_literal] = ACTIONS(6440), + [aux_sym_boolean_literal_token1] = ACTIONS(6438), + [aux_sym_boolean_literal_token2] = ACTIONS(6438), + [sym_nothing_literal] = ACTIONS(6438), + [sym_null_literal] = ACTIONS(6438), + [sym_empty_literal] = ACTIONS(6438), + [sym_date_literal] = ACTIONS(6440), + [anon_sym_POUND] = ACTIONS(6438), + }, + [STATE(2180)] = { + [sym_next_variable_list] = STATE(3805), + [sym__assignable_expression] = STATE(3142), + [sym__callable_expression] = STATE(3049), + [sym_call_expression] = STATE(3184), + [sym_member_expression] = STATE(3703), + [sym_qualified_member_expression] = STATE(3537), + [sym_implicit_member_expression] = STATE(3537), + [sym_identifier] = ACTIONS(6808), + [sym_newline] = ACTIONS(6810), + [anon_sym_COLON] = ACTIONS(6810), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6812), + [aux_sym_frm_property_statement_token1] = ACTIONS(6814), + [anon_sym_DOT] = ACTIONS(6816), + [anon_sym_BANG] = ACTIONS(6818), + [aux_sym__attribute_identifier_token1] = ACTIONS(6812), + [aux_sym_option_statement_token3] = ACTIONS(6812), + [aux_sym_type_declaration_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6812), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6812), + [aux_sym_enum_declaration_token1] = ACTIONS(6812), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6812), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6812), + [aux_sym_declare_function_statement_token1] = ACTIONS(6812), + [aux_sym_preprocessor_const_token1] = ACTIONS(6812), + [aux_sym__property_get_header_token1] = ACTIONS(6812), + [aux_sym_event_declaration_token1] = ACTIONS(6812), + [sym_static_modifier] = ACTIONS(6812), + [sym__dim_keyword] = ACTIONS(6812), + [sym__redim_keyword] = ACTIONS(6812), + [aux_sym_get_accessor_token1] = ACTIONS(6812), + [aux_sym_set_accessor_token1] = ACTIONS(6812), + [aux_sym_const_declaration_token1] = ACTIONS(6812), + [anon_sym_LPAREN] = ACTIONS(6810), + [aux_sym_as_type_clause_token2] = ACTIONS(6812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6820), + [aux_sym_visibility_token1] = ACTIONS(6812), + [aux_sym_visibility_token2] = ACTIONS(6812), + [aux_sym_elseif_fragment_token1] = ACTIONS(6812), + [aux_sym_else_fragment_token1] = ACTIONS(6812), + [aux_sym_select_statement_token1] = ACTIONS(6812), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6812), + [aux_sym__for_header_token1] = ACTIONS(6812), + [aux_sym_do_statement_token1] = ACTIONS(6812), + [aux_sym_do_condition_token1] = ACTIONS(6812), + [aux_sym_with_statement_token1] = ACTIONS(6812), + [aux_sym_exit_statement_token1] = ACTIONS(6812), + [sym_end_statement] = ACTIONS(6810), + [aux_sym_on_goto_statement_token1] = ACTIONS(6812), + [aux_sym_on_goto_statement_token2] = ACTIONS(6812), + [aux_sym_on_error_statement_token2] = ACTIONS(6812), + [sym__ambiguous_redim_statement] = ACTIONS(6810), + [aux_sym_erase_statement_token1] = ACTIONS(6812), + [aux_sym_open_statement_token1] = ACTIONS(6812), + [aux_sym_file_mode_token2] = ACTIONS(6812), + [aux_sym_file_access_token2] = ACTIONS(6812), + [aux_sym_file_lock_token2] = ACTIONS(6812), + [aux_sym_print_statement_token1] = ACTIONS(6812), + [anon_sym_PLUS] = ACTIONS(6810), + [anon_sym_DASH] = ACTIONS(6812), + [anon_sym_QMARK] = ACTIONS(6810), + [aux_sym_close_statement_token1] = ACTIONS(6812), + [aux_sym_put_statement_token1] = ACTIONS(6812), + [aux_sym_unlock_statement_token1] = ACTIONS(6812), + [aux_sym_seek_statement_token1] = ACTIONS(6812), + [sym_reset_statement] = ACTIONS(6812), + [aux_sym_raise_event_statement_token1] = ACTIONS(6812), + [sym_stop_statement] = ACTIONS(6812), + [sym_beep_statement] = ACTIONS(6812), + [aux_sym_unload_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token2] = ACTIONS(6812), + [aux_sym_def_type_statement_token3] = ACTIONS(6812), + [aux_sym_def_type_statement_token4] = ACTIONS(6812), + [aux_sym_def_type_statement_token5] = ACTIONS(6812), + [aux_sym_def_type_statement_token6] = ACTIONS(6812), + [aux_sym_def_type_statement_token7] = ACTIONS(6812), + [aux_sym_def_type_statement_token8] = ACTIONS(6812), + [aux_sym_def_type_statement_token9] = ACTIONS(6812), + [aux_sym_def_type_statement_token10] = ACTIONS(6812), + [aux_sym_def_type_statement_token11] = ACTIONS(6812), + [aux_sym_def_type_statement_token12] = ACTIONS(6812), + [aux_sym_def_type_statement_token13] = ACTIONS(6812), + [aux_sym_def_type_statement_token14] = ACTIONS(6812), + [aux_sym_call_statement_token1] = ACTIONS(6812), + [sym__ambiguous_call_statement] = ACTIONS(6812), + [aux_sym_addressof_expression_token1] = ACTIONS(6812), + [aux_sym_type_of_expression_token1] = ACTIONS(6812), + [aux_sym_unary_expression_token1] = ACTIONS(6812), + [sym_string_literal] = ACTIONS(6810), + [sym_number_literal] = ACTIONS(6810), + [aux_sym_boolean_literal_token1] = ACTIONS(6812), + [aux_sym_boolean_literal_token2] = ACTIONS(6812), + [sym_nothing_literal] = ACTIONS(6812), + [sym_null_literal] = ACTIONS(6812), + [sym_empty_literal] = ACTIONS(6812), + [sym_date_literal] = ACTIONS(6810), + [anon_sym_POUND] = ACTIONS(6812), + }, + [STATE(2181)] = { + [sym_next_variable_list] = STATE(3823), + [sym__assignable_expression] = STATE(3142), + [sym__callable_expression] = STATE(3049), + [sym_call_expression] = STATE(3184), + [sym_member_expression] = STATE(3703), + [sym_qualified_member_expression] = STATE(3537), + [sym_implicit_member_expression] = STATE(3537), + [sym_identifier] = ACTIONS(6808), + [sym_newline] = ACTIONS(6822), + [anon_sym_COLON] = ACTIONS(6822), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6824), + [aux_sym_frm_property_statement_token1] = ACTIONS(6814), + [anon_sym_DOT] = ACTIONS(6816), + [anon_sym_BANG] = ACTIONS(6818), + [aux_sym__attribute_identifier_token1] = ACTIONS(6824), + [aux_sym_option_statement_token3] = ACTIONS(6824), + [aux_sym_type_declaration_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6824), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6824), + [aux_sym_enum_declaration_token1] = ACTIONS(6824), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6824), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6824), + [aux_sym_declare_function_statement_token1] = ACTIONS(6824), + [aux_sym_preprocessor_const_token1] = ACTIONS(6824), + [aux_sym__property_get_header_token1] = ACTIONS(6824), + [aux_sym_event_declaration_token1] = ACTIONS(6824), + [sym_static_modifier] = ACTIONS(6824), + [sym__dim_keyword] = ACTIONS(6824), + [sym__redim_keyword] = ACTIONS(6824), + [aux_sym_get_accessor_token1] = ACTIONS(6824), + [aux_sym_set_accessor_token1] = ACTIONS(6824), + [aux_sym_const_declaration_token1] = ACTIONS(6824), + [anon_sym_LPAREN] = ACTIONS(6822), + [aux_sym_as_type_clause_token2] = ACTIONS(6824), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6820), + [aux_sym_visibility_token1] = ACTIONS(6824), + [aux_sym_visibility_token2] = ACTIONS(6824), + [aux_sym_elseif_fragment_token1] = ACTIONS(6824), + [aux_sym_else_fragment_token1] = ACTIONS(6824), + [aux_sym_select_statement_token1] = ACTIONS(6824), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6824), + [aux_sym__for_header_token1] = ACTIONS(6824), + [aux_sym_do_statement_token1] = ACTIONS(6824), + [aux_sym_do_condition_token1] = ACTIONS(6824), + [aux_sym_with_statement_token1] = ACTIONS(6824), + [aux_sym_exit_statement_token1] = ACTIONS(6824), + [sym_end_statement] = ACTIONS(6822), + [aux_sym_on_goto_statement_token1] = ACTIONS(6824), + [aux_sym_on_goto_statement_token2] = ACTIONS(6824), + [aux_sym_on_error_statement_token2] = ACTIONS(6824), + [sym__ambiguous_redim_statement] = ACTIONS(6822), + [aux_sym_erase_statement_token1] = ACTIONS(6824), + [aux_sym_open_statement_token1] = ACTIONS(6824), + [aux_sym_file_mode_token2] = ACTIONS(6824), + [aux_sym_file_access_token2] = ACTIONS(6824), + [aux_sym_file_lock_token2] = ACTIONS(6824), + [aux_sym_print_statement_token1] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6822), + [aux_sym_close_statement_token1] = ACTIONS(6824), + [aux_sym_put_statement_token1] = ACTIONS(6824), + [aux_sym_unlock_statement_token1] = ACTIONS(6824), + [aux_sym_seek_statement_token1] = ACTIONS(6824), + [sym_reset_statement] = ACTIONS(6824), + [aux_sym_raise_event_statement_token1] = ACTIONS(6824), + [sym_stop_statement] = ACTIONS(6824), + [sym_beep_statement] = ACTIONS(6824), + [aux_sym_unload_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token2] = ACTIONS(6824), + [aux_sym_def_type_statement_token3] = ACTIONS(6824), + [aux_sym_def_type_statement_token4] = ACTIONS(6824), + [aux_sym_def_type_statement_token5] = ACTIONS(6824), + [aux_sym_def_type_statement_token6] = ACTIONS(6824), + [aux_sym_def_type_statement_token7] = ACTIONS(6824), + [aux_sym_def_type_statement_token8] = ACTIONS(6824), + [aux_sym_def_type_statement_token9] = ACTIONS(6824), + [aux_sym_def_type_statement_token10] = ACTIONS(6824), + [aux_sym_def_type_statement_token11] = ACTIONS(6824), + [aux_sym_def_type_statement_token12] = ACTIONS(6824), + [aux_sym_def_type_statement_token13] = ACTIONS(6824), + [aux_sym_def_type_statement_token14] = ACTIONS(6824), + [aux_sym_call_statement_token1] = ACTIONS(6824), + [sym__ambiguous_call_statement] = ACTIONS(6824), + [aux_sym_addressof_expression_token1] = ACTIONS(6824), + [aux_sym_type_of_expression_token1] = ACTIONS(6824), + [aux_sym_unary_expression_token1] = ACTIONS(6824), + [sym_string_literal] = ACTIONS(6822), + [sym_number_literal] = ACTIONS(6822), + [aux_sym_boolean_literal_token1] = ACTIONS(6824), + [aux_sym_boolean_literal_token2] = ACTIONS(6824), + [sym_nothing_literal] = ACTIONS(6824), + [sym_null_literal] = ACTIONS(6824), + [sym_empty_literal] = ACTIONS(6824), + [sym_date_literal] = ACTIONS(6822), + [anon_sym_POUND] = ACTIONS(6824), + }, + [STATE(2182)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_byval_modifier_token1] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(2183)] = { + [sym_next_variable_list] = STATE(3806), + [sym__assignable_expression] = STATE(3142), + [sym__callable_expression] = STATE(3049), + [sym_call_expression] = STATE(3184), + [sym_member_expression] = STATE(3703), + [sym_qualified_member_expression] = STATE(3537), + [sym_implicit_member_expression] = STATE(3537), + [sym_identifier] = ACTIONS(6808), + [sym_newline] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6828), + [aux_sym_frm_property_statement_token1] = ACTIONS(6814), + [anon_sym_DOT] = ACTIONS(6816), + [anon_sym_BANG] = ACTIONS(6818), + [aux_sym__attribute_identifier_token1] = ACTIONS(6828), + [aux_sym_option_statement_token3] = ACTIONS(6828), + [aux_sym_type_declaration_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6828), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6828), + [aux_sym_enum_declaration_token1] = ACTIONS(6828), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6828), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6828), + [aux_sym_declare_function_statement_token1] = ACTIONS(6828), + [aux_sym_preprocessor_const_token1] = ACTIONS(6828), + [aux_sym__property_get_header_token1] = ACTIONS(6828), + [aux_sym_event_declaration_token1] = ACTIONS(6828), + [sym_static_modifier] = ACTIONS(6828), + [sym__dim_keyword] = ACTIONS(6828), + [sym__redim_keyword] = ACTIONS(6828), + [aux_sym_get_accessor_token1] = ACTIONS(6828), + [aux_sym_set_accessor_token1] = ACTIONS(6828), + [aux_sym_const_declaration_token1] = ACTIONS(6828), + [anon_sym_LPAREN] = ACTIONS(6826), + [aux_sym_as_type_clause_token2] = ACTIONS(6828), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6820), + [aux_sym_visibility_token1] = ACTIONS(6828), + [aux_sym_visibility_token2] = ACTIONS(6828), + [aux_sym_elseif_fragment_token1] = ACTIONS(6828), + [aux_sym_else_fragment_token1] = ACTIONS(6828), + [aux_sym_select_statement_token1] = ACTIONS(6828), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6828), + [aux_sym__for_header_token1] = ACTIONS(6828), + [aux_sym_do_statement_token1] = ACTIONS(6828), + [aux_sym_do_condition_token1] = ACTIONS(6828), + [aux_sym_with_statement_token1] = ACTIONS(6828), + [aux_sym_exit_statement_token1] = ACTIONS(6828), + [sym_end_statement] = ACTIONS(6826), + [aux_sym_on_goto_statement_token1] = ACTIONS(6828), + [aux_sym_on_goto_statement_token2] = ACTIONS(6828), + [aux_sym_on_error_statement_token2] = ACTIONS(6828), + [sym__ambiguous_redim_statement] = ACTIONS(6826), + [aux_sym_erase_statement_token1] = ACTIONS(6828), + [aux_sym_open_statement_token1] = ACTIONS(6828), + [aux_sym_file_mode_token2] = ACTIONS(6828), + [aux_sym_file_access_token2] = ACTIONS(6828), + [aux_sym_file_lock_token2] = ACTIONS(6828), + [aux_sym_print_statement_token1] = ACTIONS(6828), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_DASH] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6826), + [aux_sym_close_statement_token1] = ACTIONS(6828), + [aux_sym_put_statement_token1] = ACTIONS(6828), + [aux_sym_unlock_statement_token1] = ACTIONS(6828), + [aux_sym_seek_statement_token1] = ACTIONS(6828), + [sym_reset_statement] = ACTIONS(6828), + [aux_sym_raise_event_statement_token1] = ACTIONS(6828), + [sym_stop_statement] = ACTIONS(6828), + [sym_beep_statement] = ACTIONS(6828), + [aux_sym_unload_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token2] = ACTIONS(6828), + [aux_sym_def_type_statement_token3] = ACTIONS(6828), + [aux_sym_def_type_statement_token4] = ACTIONS(6828), + [aux_sym_def_type_statement_token5] = ACTIONS(6828), + [aux_sym_def_type_statement_token6] = ACTIONS(6828), + [aux_sym_def_type_statement_token7] = ACTIONS(6828), + [aux_sym_def_type_statement_token8] = ACTIONS(6828), + [aux_sym_def_type_statement_token9] = ACTIONS(6828), + [aux_sym_def_type_statement_token10] = ACTIONS(6828), + [aux_sym_def_type_statement_token11] = ACTIONS(6828), + [aux_sym_def_type_statement_token12] = ACTIONS(6828), + [aux_sym_def_type_statement_token13] = ACTIONS(6828), + [aux_sym_def_type_statement_token14] = ACTIONS(6828), + [aux_sym_call_statement_token1] = ACTIONS(6828), + [sym__ambiguous_call_statement] = ACTIONS(6828), + [aux_sym_addressof_expression_token1] = ACTIONS(6828), + [aux_sym_type_of_expression_token1] = ACTIONS(6828), + [aux_sym_unary_expression_token1] = ACTIONS(6828), + [sym_string_literal] = ACTIONS(6826), + [sym_number_literal] = ACTIONS(6826), + [aux_sym_boolean_literal_token1] = ACTIONS(6828), + [aux_sym_boolean_literal_token2] = ACTIONS(6828), + [sym_nothing_literal] = ACTIONS(6828), + [sym_null_literal] = ACTIONS(6828), + [sym_empty_literal] = ACTIONS(6828), + [sym_date_literal] = ACTIONS(6826), + [anon_sym_POUND] = ACTIONS(6828), + }, + [STATE(2184)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_byval_modifier_token1] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2185)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_byval_modifier_token1] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(2186)] = { + [sym_file_number] = STATE(6160), + [sym__primary_expression] = STATE(3695), + [sym__expression] = STATE(3695), + [sym__callable_expression] = STATE(13367), + [sym_call_expression] = STATE(2540), + [sym_new_expression] = STATE(3695), + [sym_addressof_expression] = STATE(3695), + [sym_type_of_expression] = STATE(3695), + [sym_member_expression] = STATE(2829), + [sym_qualified_member_expression] = STATE(2420), + [sym_implicit_member_expression] = STATE(2420), + [sym_parenthesized_expression] = STATE(3695), + [sym_binary_expression] = STATE(3695), + [sym_unary_expression] = STATE(3695), + [sym__signed_unary_expression] = STATE(2908), + [sym__literal] = STATE(3695), + [sym_boolean_literal] = STATE(3695), + [sym_file_number_literal] = STATE(3697), + [sym_identifier] = ACTIONS(6830), + [sym_newline] = ACTIONS(5130), + [anon_sym_COLON] = ACTIONS(5130), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5132), + [aux_sym_frm_property_statement_token1] = ACTIONS(6832), + [anon_sym_DOT] = ACTIONS(6834), + [anon_sym_BANG] = ACTIONS(742), + [aux_sym__attribute_identifier_token1] = ACTIONS(5132), + [aux_sym_option_statement_token3] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5132), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5132), + [aux_sym_preprocessor_const_token1] = ACTIONS(5132), + [sym_static_modifier] = ACTIONS(5132), + [sym__dim_keyword] = ACTIONS(5132), + [sym__redim_keyword] = ACTIONS(5132), + [aux_sym_get_accessor_token1] = ACTIONS(5132), + [aux_sym_set_accessor_token1] = ACTIONS(5132), + [aux_sym_const_declaration_token1] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(766), + [aux_sym_as_type_clause_token2] = ACTIONS(768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6836), + [aux_sym_visibility_token1] = ACTIONS(5132), + [aux_sym_visibility_token2] = ACTIONS(5132), + [aux_sym_elseif_fragment_token1] = ACTIONS(5132), + [aux_sym_else_fragment_token1] = ACTIONS(5132), + [aux_sym_select_statement_token1] = ACTIONS(5132), + [aux_sym__for_header_token1] = ACTIONS(5132), + [aux_sym_do_statement_token1] = ACTIONS(5132), + [aux_sym_do_condition_token1] = ACTIONS(5132), + [aux_sym_with_statement_token1] = ACTIONS(5132), + [aux_sym_exit_statement_token1] = ACTIONS(5132), + [sym_end_statement] = ACTIONS(5130), + [aux_sym_on_goto_statement_token1] = ACTIONS(5132), + [aux_sym_on_goto_statement_token2] = ACTIONS(5132), + [aux_sym_on_error_statement_token2] = ACTIONS(5132), + [sym__ambiguous_redim_statement] = ACTIONS(5130), + [aux_sym_erase_statement_token1] = ACTIONS(5132), + [aux_sym_open_statement_token1] = ACTIONS(5132), + [aux_sym_file_mode_token2] = ACTIONS(5132), + [aux_sym_file_access_token2] = ACTIONS(5132), + [aux_sym_file_lock_token2] = ACTIONS(5132), + [aux_sym_print_statement_token1] = ACTIONS(5132), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(5130), + [aux_sym_close_statement_token1] = ACTIONS(5132), + [aux_sym_put_statement_token1] = ACTIONS(5132), + [aux_sym_unlock_statement_token1] = ACTIONS(5132), + [aux_sym_seek_statement_token1] = ACTIONS(5132), + [sym_reset_statement] = ACTIONS(5132), + [aux_sym_raise_event_statement_token1] = ACTIONS(5132), + [sym_stop_statement] = ACTIONS(5132), + [sym_beep_statement] = ACTIONS(5132), + [aux_sym_unload_statement_token1] = ACTIONS(5132), + [aux_sym_def_type_statement_token1] = ACTIONS(5132), + [aux_sym_def_type_statement_token2] = ACTIONS(5132), + [aux_sym_def_type_statement_token3] = ACTIONS(5132), + [aux_sym_def_type_statement_token4] = ACTIONS(5132), + [aux_sym_def_type_statement_token5] = ACTIONS(5132), + [aux_sym_def_type_statement_token6] = ACTIONS(5132), + [aux_sym_def_type_statement_token7] = ACTIONS(5132), + [aux_sym_def_type_statement_token8] = ACTIONS(5132), + [aux_sym_def_type_statement_token9] = ACTIONS(5132), + [aux_sym_def_type_statement_token10] = ACTIONS(5132), + [aux_sym_def_type_statement_token11] = ACTIONS(5132), + [aux_sym_def_type_statement_token12] = ACTIONS(5132), + [aux_sym_def_type_statement_token13] = ACTIONS(5132), + [aux_sym_def_type_statement_token14] = ACTIONS(5132), + [aux_sym_call_statement_token1] = ACTIONS(5132), + [sym__ambiguous_call_statement] = ACTIONS(5132), + [aux_sym_addressof_expression_token1] = ACTIONS(832), + [aux_sym_type_of_expression_token1] = ACTIONS(834), + [aux_sym_unary_expression_token1] = ACTIONS(836), + [sym_string_literal] = ACTIONS(6838), + [sym_number_literal] = ACTIONS(6838), + [aux_sym_boolean_literal_token1] = ACTIONS(842), + [aux_sym_boolean_literal_token2] = ACTIONS(842), + [sym_nothing_literal] = ACTIONS(6840), + [sym_null_literal] = ACTIONS(6840), + [sym_empty_literal] = ACTIONS(6840), + [sym_date_literal] = ACTIONS(6838), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(2187)] = { + [sym_next_variable_list] = STATE(3759), + [sym__assignable_expression] = STATE(3142), + [sym__callable_expression] = STATE(3049), + [sym_call_expression] = STATE(3184), + [sym_member_expression] = STATE(3703), + [sym_qualified_member_expression] = STATE(3537), + [sym_implicit_member_expression] = STATE(3537), + [sym_identifier] = ACTIONS(6808), + [sym_newline] = ACTIONS(6842), + [anon_sym_COLON] = ACTIONS(6842), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6844), + [aux_sym_frm_property_statement_token1] = ACTIONS(6814), + [anon_sym_DOT] = ACTIONS(6816), + [anon_sym_BANG] = ACTIONS(6818), + [aux_sym__attribute_identifier_token1] = ACTIONS(6844), + [aux_sym_option_statement_token3] = ACTIONS(6844), + [aux_sym_type_declaration_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6844), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6844), + [aux_sym_enum_declaration_token1] = ACTIONS(6844), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6844), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6844), + [aux_sym_declare_function_statement_token1] = ACTIONS(6844), + [aux_sym_preprocessor_const_token1] = ACTIONS(6844), + [aux_sym__property_get_header_token1] = ACTIONS(6844), + [aux_sym_event_declaration_token1] = ACTIONS(6844), + [sym_static_modifier] = ACTIONS(6844), + [sym__dim_keyword] = ACTIONS(6844), + [sym__redim_keyword] = ACTIONS(6844), + [aux_sym_get_accessor_token1] = ACTIONS(6844), + [aux_sym_set_accessor_token1] = ACTIONS(6844), + [aux_sym_const_declaration_token1] = ACTIONS(6844), + [anon_sym_LPAREN] = ACTIONS(6842), + [aux_sym_as_type_clause_token2] = ACTIONS(6844), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6820), + [aux_sym_visibility_token1] = ACTIONS(6844), + [aux_sym_visibility_token2] = ACTIONS(6844), + [aux_sym_elseif_fragment_token1] = ACTIONS(6844), + [aux_sym_else_fragment_token1] = ACTIONS(6844), + [aux_sym_select_statement_token1] = ACTIONS(6844), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6844), + [aux_sym__for_header_token1] = ACTIONS(6844), + [aux_sym_do_statement_token1] = ACTIONS(6844), + [aux_sym_do_condition_token1] = ACTIONS(6844), + [aux_sym_with_statement_token1] = ACTIONS(6844), + [aux_sym_exit_statement_token1] = ACTIONS(6844), + [sym_end_statement] = ACTIONS(6842), + [aux_sym_on_goto_statement_token1] = ACTIONS(6844), + [aux_sym_on_goto_statement_token2] = ACTIONS(6844), + [aux_sym_on_error_statement_token2] = ACTIONS(6844), + [sym__ambiguous_redim_statement] = ACTIONS(6842), + [aux_sym_erase_statement_token1] = ACTIONS(6844), + [aux_sym_open_statement_token1] = ACTIONS(6844), + [aux_sym_file_mode_token2] = ACTIONS(6844), + [aux_sym_file_access_token2] = ACTIONS(6844), + [aux_sym_file_lock_token2] = ACTIONS(6844), + [aux_sym_print_statement_token1] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6842), + [aux_sym_close_statement_token1] = ACTIONS(6844), + [aux_sym_put_statement_token1] = ACTIONS(6844), + [aux_sym_unlock_statement_token1] = ACTIONS(6844), + [aux_sym_seek_statement_token1] = ACTIONS(6844), + [sym_reset_statement] = ACTIONS(6844), + [aux_sym_raise_event_statement_token1] = ACTIONS(6844), + [sym_stop_statement] = ACTIONS(6844), + [sym_beep_statement] = ACTIONS(6844), + [aux_sym_unload_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token2] = ACTIONS(6844), + [aux_sym_def_type_statement_token3] = ACTIONS(6844), + [aux_sym_def_type_statement_token4] = ACTIONS(6844), + [aux_sym_def_type_statement_token5] = ACTIONS(6844), + [aux_sym_def_type_statement_token6] = ACTIONS(6844), + [aux_sym_def_type_statement_token7] = ACTIONS(6844), + [aux_sym_def_type_statement_token8] = ACTIONS(6844), + [aux_sym_def_type_statement_token9] = ACTIONS(6844), + [aux_sym_def_type_statement_token10] = ACTIONS(6844), + [aux_sym_def_type_statement_token11] = ACTIONS(6844), + [aux_sym_def_type_statement_token12] = ACTIONS(6844), + [aux_sym_def_type_statement_token13] = ACTIONS(6844), + [aux_sym_def_type_statement_token14] = ACTIONS(6844), + [aux_sym_call_statement_token1] = ACTIONS(6844), + [sym__ambiguous_call_statement] = ACTIONS(6844), + [aux_sym_addressof_expression_token1] = ACTIONS(6844), + [aux_sym_type_of_expression_token1] = ACTIONS(6844), + [aux_sym_unary_expression_token1] = ACTIONS(6844), + [sym_string_literal] = ACTIONS(6842), + [sym_number_literal] = ACTIONS(6842), + [aux_sym_boolean_literal_token1] = ACTIONS(6844), + [aux_sym_boolean_literal_token2] = ACTIONS(6844), + [sym_nothing_literal] = ACTIONS(6844), + [sym_null_literal] = ACTIONS(6844), + [sym_empty_literal] = ACTIONS(6844), + [sym_date_literal] = ACTIONS(6842), + [anon_sym_POUND] = ACTIONS(6844), + }, + [STATE(2188)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2196), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(6846), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2189)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_byval_modifier_token1] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(2190)] = { + [sym_next_variable_list] = STATE(3819), + [sym__assignable_expression] = STATE(3142), + [sym__callable_expression] = STATE(3049), + [sym_call_expression] = STATE(3184), + [sym_member_expression] = STATE(3703), + [sym_qualified_member_expression] = STATE(3537), + [sym_implicit_member_expression] = STATE(3537), + [sym_identifier] = ACTIONS(6808), + [sym_newline] = ACTIONS(6848), + [anon_sym_COLON] = ACTIONS(6848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6850), + [aux_sym_frm_property_statement_token1] = ACTIONS(6814), + [anon_sym_DOT] = ACTIONS(6816), + [anon_sym_BANG] = ACTIONS(6818), + [aux_sym__attribute_identifier_token1] = ACTIONS(6850), + [aux_sym_option_statement_token3] = ACTIONS(6850), + [aux_sym_type_declaration_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6850), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6850), + [aux_sym_enum_declaration_token1] = ACTIONS(6850), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6850), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6850), + [aux_sym_declare_function_statement_token1] = ACTIONS(6850), + [aux_sym_preprocessor_const_token1] = ACTIONS(6850), + [aux_sym__property_get_header_token1] = ACTIONS(6850), + [aux_sym_event_declaration_token1] = ACTIONS(6850), + [sym_static_modifier] = ACTIONS(6850), + [sym__dim_keyword] = ACTIONS(6850), + [sym__redim_keyword] = ACTIONS(6850), + [aux_sym_get_accessor_token1] = ACTIONS(6850), + [aux_sym_set_accessor_token1] = ACTIONS(6850), + [aux_sym_const_declaration_token1] = ACTIONS(6850), + [anon_sym_LPAREN] = ACTIONS(6848), + [aux_sym_as_type_clause_token2] = ACTIONS(6850), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6820), + [aux_sym_visibility_token1] = ACTIONS(6850), + [aux_sym_visibility_token2] = ACTIONS(6850), + [aux_sym_elseif_fragment_token1] = ACTIONS(6850), + [aux_sym_else_fragment_token1] = ACTIONS(6850), + [aux_sym_select_statement_token1] = ACTIONS(6850), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6850), + [aux_sym__for_header_token1] = ACTIONS(6850), + [aux_sym_do_statement_token1] = ACTIONS(6850), + [aux_sym_do_condition_token1] = ACTIONS(6850), + [aux_sym_with_statement_token1] = ACTIONS(6850), + [aux_sym_exit_statement_token1] = ACTIONS(6850), + [sym_end_statement] = ACTIONS(6848), + [aux_sym_on_goto_statement_token1] = ACTIONS(6850), + [aux_sym_on_goto_statement_token2] = ACTIONS(6850), + [aux_sym_on_error_statement_token2] = ACTIONS(6850), + [sym__ambiguous_redim_statement] = ACTIONS(6848), + [aux_sym_erase_statement_token1] = ACTIONS(6850), + [aux_sym_open_statement_token1] = ACTIONS(6850), + [aux_sym_file_mode_token2] = ACTIONS(6850), + [aux_sym_file_access_token2] = ACTIONS(6850), + [aux_sym_file_lock_token2] = ACTIONS(6850), + [aux_sym_print_statement_token1] = ACTIONS(6850), + [anon_sym_PLUS] = ACTIONS(6848), + [anon_sym_DASH] = ACTIONS(6850), + [anon_sym_QMARK] = ACTIONS(6848), + [aux_sym_close_statement_token1] = ACTIONS(6850), + [aux_sym_put_statement_token1] = ACTIONS(6850), + [aux_sym_unlock_statement_token1] = ACTIONS(6850), + [aux_sym_seek_statement_token1] = ACTIONS(6850), + [sym_reset_statement] = ACTIONS(6850), + [aux_sym_raise_event_statement_token1] = ACTIONS(6850), + [sym_stop_statement] = ACTIONS(6850), + [sym_beep_statement] = ACTIONS(6850), + [aux_sym_unload_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token2] = ACTIONS(6850), + [aux_sym_def_type_statement_token3] = ACTIONS(6850), + [aux_sym_def_type_statement_token4] = ACTIONS(6850), + [aux_sym_def_type_statement_token5] = ACTIONS(6850), + [aux_sym_def_type_statement_token6] = ACTIONS(6850), + [aux_sym_def_type_statement_token7] = ACTIONS(6850), + [aux_sym_def_type_statement_token8] = ACTIONS(6850), + [aux_sym_def_type_statement_token9] = ACTIONS(6850), + [aux_sym_def_type_statement_token10] = ACTIONS(6850), + [aux_sym_def_type_statement_token11] = ACTIONS(6850), + [aux_sym_def_type_statement_token12] = ACTIONS(6850), + [aux_sym_def_type_statement_token13] = ACTIONS(6850), + [aux_sym_def_type_statement_token14] = ACTIONS(6850), + [aux_sym_call_statement_token1] = ACTIONS(6850), + [sym__ambiguous_call_statement] = ACTIONS(6850), + [aux_sym_addressof_expression_token1] = ACTIONS(6850), + [aux_sym_type_of_expression_token1] = ACTIONS(6850), + [aux_sym_unary_expression_token1] = ACTIONS(6850), + [sym_string_literal] = ACTIONS(6848), + [sym_number_literal] = ACTIONS(6848), + [aux_sym_boolean_literal_token1] = ACTIONS(6850), + [aux_sym_boolean_literal_token2] = ACTIONS(6850), + [sym_nothing_literal] = ACTIONS(6850), + [sym_null_literal] = ACTIONS(6850), + [sym_empty_literal] = ACTIONS(6850), + [sym_date_literal] = ACTIONS(6848), + [anon_sym_POUND] = ACTIONS(6850), + }, + [STATE(2191)] = { + [sym_argument_list] = STATE(2225), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6852), + [anon_sym_BANG] = ACTIONS(6854), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5168), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2192)] = { + [sym_next_variable_list] = STATE(3765), + [sym__assignable_expression] = STATE(3142), + [sym__callable_expression] = STATE(3049), + [sym_call_expression] = STATE(3184), + [sym_member_expression] = STATE(3703), + [sym_qualified_member_expression] = STATE(3537), + [sym_implicit_member_expression] = STATE(3537), + [sym_identifier] = ACTIONS(6808), + [sym_newline] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(6856), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6858), + [aux_sym_frm_property_statement_token1] = ACTIONS(6814), + [anon_sym_DOT] = ACTIONS(6816), + [anon_sym_BANG] = ACTIONS(6818), + [aux_sym__attribute_identifier_token1] = ACTIONS(6858), + [aux_sym_option_statement_token3] = ACTIONS(6858), + [aux_sym_type_declaration_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6858), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6858), + [aux_sym_enum_declaration_token1] = ACTIONS(6858), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6858), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6858), + [aux_sym_declare_function_statement_token1] = ACTIONS(6858), + [aux_sym_preprocessor_const_token1] = ACTIONS(6858), + [aux_sym__property_get_header_token1] = ACTIONS(6858), + [aux_sym_event_declaration_token1] = ACTIONS(6858), + [sym_static_modifier] = ACTIONS(6858), + [sym__dim_keyword] = ACTIONS(6858), + [sym__redim_keyword] = ACTIONS(6858), + [aux_sym_get_accessor_token1] = ACTIONS(6858), + [aux_sym_set_accessor_token1] = ACTIONS(6858), + [aux_sym_const_declaration_token1] = ACTIONS(6858), + [anon_sym_LPAREN] = ACTIONS(6856), + [aux_sym_as_type_clause_token2] = ACTIONS(6858), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6820), + [aux_sym_visibility_token1] = ACTIONS(6858), + [aux_sym_visibility_token2] = ACTIONS(6858), + [aux_sym_elseif_fragment_token1] = ACTIONS(6858), + [aux_sym_else_fragment_token1] = ACTIONS(6858), + [aux_sym_select_statement_token1] = ACTIONS(6858), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6858), + [aux_sym__for_header_token1] = ACTIONS(6858), + [aux_sym_do_statement_token1] = ACTIONS(6858), + [aux_sym_do_condition_token1] = ACTIONS(6858), + [aux_sym_with_statement_token1] = ACTIONS(6858), + [aux_sym_exit_statement_token1] = ACTIONS(6858), + [sym_end_statement] = ACTIONS(6856), + [aux_sym_on_goto_statement_token1] = ACTIONS(6858), + [aux_sym_on_goto_statement_token2] = ACTIONS(6858), + [aux_sym_on_error_statement_token2] = ACTIONS(6858), + [sym__ambiguous_redim_statement] = ACTIONS(6856), + [aux_sym_erase_statement_token1] = ACTIONS(6858), + [aux_sym_open_statement_token1] = ACTIONS(6858), + [aux_sym_file_mode_token2] = ACTIONS(6858), + [aux_sym_file_access_token2] = ACTIONS(6858), + [aux_sym_file_lock_token2] = ACTIONS(6858), + [aux_sym_print_statement_token1] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6856), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_QMARK] = ACTIONS(6856), + [aux_sym_close_statement_token1] = ACTIONS(6858), + [aux_sym_put_statement_token1] = ACTIONS(6858), + [aux_sym_unlock_statement_token1] = ACTIONS(6858), + [aux_sym_seek_statement_token1] = ACTIONS(6858), + [sym_reset_statement] = ACTIONS(6858), + [aux_sym_raise_event_statement_token1] = ACTIONS(6858), + [sym_stop_statement] = ACTIONS(6858), + [sym_beep_statement] = ACTIONS(6858), + [aux_sym_unload_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token2] = ACTIONS(6858), + [aux_sym_def_type_statement_token3] = ACTIONS(6858), + [aux_sym_def_type_statement_token4] = ACTIONS(6858), + [aux_sym_def_type_statement_token5] = ACTIONS(6858), + [aux_sym_def_type_statement_token6] = ACTIONS(6858), + [aux_sym_def_type_statement_token7] = ACTIONS(6858), + [aux_sym_def_type_statement_token8] = ACTIONS(6858), + [aux_sym_def_type_statement_token9] = ACTIONS(6858), + [aux_sym_def_type_statement_token10] = ACTIONS(6858), + [aux_sym_def_type_statement_token11] = ACTIONS(6858), + [aux_sym_def_type_statement_token12] = ACTIONS(6858), + [aux_sym_def_type_statement_token13] = ACTIONS(6858), + [aux_sym_def_type_statement_token14] = ACTIONS(6858), + [aux_sym_call_statement_token1] = ACTIONS(6858), + [sym__ambiguous_call_statement] = ACTIONS(6858), + [aux_sym_addressof_expression_token1] = ACTIONS(6858), + [aux_sym_type_of_expression_token1] = ACTIONS(6858), + [aux_sym_unary_expression_token1] = ACTIONS(6858), + [sym_string_literal] = ACTIONS(6856), + [sym_number_literal] = ACTIONS(6856), + [aux_sym_boolean_literal_token1] = ACTIONS(6858), + [aux_sym_boolean_literal_token2] = ACTIONS(6858), + [sym_nothing_literal] = ACTIONS(6858), + [sym_null_literal] = ACTIONS(6858), + [sym_empty_literal] = ACTIONS(6858), + [sym_date_literal] = ACTIONS(6856), + [anon_sym_POUND] = ACTIONS(6858), + }, + [STATE(2193)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2193), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(6860), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2194)] = { + [sym_next_variable_list] = STATE(3808), + [sym__assignable_expression] = STATE(3142), + [sym__callable_expression] = STATE(3049), + [sym_call_expression] = STATE(3184), + [sym_member_expression] = STATE(3703), + [sym_qualified_member_expression] = STATE(3537), + [sym_implicit_member_expression] = STATE(3537), + [sym_identifier] = ACTIONS(6808), + [sym_newline] = ACTIONS(6863), + [anon_sym_COLON] = ACTIONS(6863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6865), + [aux_sym_frm_property_statement_token1] = ACTIONS(6814), + [anon_sym_DOT] = ACTIONS(6816), + [anon_sym_BANG] = ACTIONS(6818), + [aux_sym__attribute_identifier_token1] = ACTIONS(6865), + [aux_sym_option_statement_token3] = ACTIONS(6865), + [aux_sym_type_declaration_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6865), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6865), + [aux_sym_enum_declaration_token1] = ACTIONS(6865), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6865), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6865), + [aux_sym_declare_function_statement_token1] = ACTIONS(6865), + [aux_sym_preprocessor_const_token1] = ACTIONS(6865), + [aux_sym__property_get_header_token1] = ACTIONS(6865), + [aux_sym_event_declaration_token1] = ACTIONS(6865), + [sym_static_modifier] = ACTIONS(6865), + [sym__dim_keyword] = ACTIONS(6865), + [sym__redim_keyword] = ACTIONS(6865), + [aux_sym_get_accessor_token1] = ACTIONS(6865), + [aux_sym_set_accessor_token1] = ACTIONS(6865), + [aux_sym_const_declaration_token1] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6863), + [aux_sym_as_type_clause_token2] = ACTIONS(6865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6820), + [aux_sym_visibility_token1] = ACTIONS(6865), + [aux_sym_visibility_token2] = ACTIONS(6865), + [aux_sym_elseif_fragment_token1] = ACTIONS(6865), + [aux_sym_else_fragment_token1] = ACTIONS(6865), + [aux_sym_select_statement_token1] = ACTIONS(6865), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6865), + [aux_sym__for_header_token1] = ACTIONS(6865), + [aux_sym_do_statement_token1] = ACTIONS(6865), + [aux_sym_do_condition_token1] = ACTIONS(6865), + [aux_sym_with_statement_token1] = ACTIONS(6865), + [aux_sym_exit_statement_token1] = ACTIONS(6865), + [sym_end_statement] = ACTIONS(6863), + [aux_sym_on_goto_statement_token1] = ACTIONS(6865), + [aux_sym_on_goto_statement_token2] = ACTIONS(6865), + [aux_sym_on_error_statement_token2] = ACTIONS(6865), + [sym__ambiguous_redim_statement] = ACTIONS(6863), + [aux_sym_erase_statement_token1] = ACTIONS(6865), + [aux_sym_open_statement_token1] = ACTIONS(6865), + [aux_sym_file_mode_token2] = ACTIONS(6865), + [aux_sym_file_access_token2] = ACTIONS(6865), + [aux_sym_file_lock_token2] = ACTIONS(6865), + [aux_sym_print_statement_token1] = ACTIONS(6865), + [anon_sym_PLUS] = ACTIONS(6863), + [anon_sym_DASH] = ACTIONS(6865), + [anon_sym_QMARK] = ACTIONS(6863), + [aux_sym_close_statement_token1] = ACTIONS(6865), + [aux_sym_put_statement_token1] = ACTIONS(6865), + [aux_sym_unlock_statement_token1] = ACTIONS(6865), + [aux_sym_seek_statement_token1] = ACTIONS(6865), + [sym_reset_statement] = ACTIONS(6865), + [aux_sym_raise_event_statement_token1] = ACTIONS(6865), + [sym_stop_statement] = ACTIONS(6865), + [sym_beep_statement] = ACTIONS(6865), + [aux_sym_unload_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token2] = ACTIONS(6865), + [aux_sym_def_type_statement_token3] = ACTIONS(6865), + [aux_sym_def_type_statement_token4] = ACTIONS(6865), + [aux_sym_def_type_statement_token5] = ACTIONS(6865), + [aux_sym_def_type_statement_token6] = ACTIONS(6865), + [aux_sym_def_type_statement_token7] = ACTIONS(6865), + [aux_sym_def_type_statement_token8] = ACTIONS(6865), + [aux_sym_def_type_statement_token9] = ACTIONS(6865), + [aux_sym_def_type_statement_token10] = ACTIONS(6865), + [aux_sym_def_type_statement_token11] = ACTIONS(6865), + [aux_sym_def_type_statement_token12] = ACTIONS(6865), + [aux_sym_def_type_statement_token13] = ACTIONS(6865), + [aux_sym_def_type_statement_token14] = ACTIONS(6865), + [aux_sym_call_statement_token1] = ACTIONS(6865), + [sym__ambiguous_call_statement] = ACTIONS(6865), + [aux_sym_addressof_expression_token1] = ACTIONS(6865), + [aux_sym_type_of_expression_token1] = ACTIONS(6865), + [aux_sym_unary_expression_token1] = ACTIONS(6865), + [sym_string_literal] = ACTIONS(6863), + [sym_number_literal] = ACTIONS(6863), + [aux_sym_boolean_literal_token1] = ACTIONS(6865), + [aux_sym_boolean_literal_token2] = ACTIONS(6865), + [sym_nothing_literal] = ACTIONS(6865), + [sym_null_literal] = ACTIONS(6865), + [sym_empty_literal] = ACTIONS(6865), + [sym_date_literal] = ACTIONS(6863), + [anon_sym_POUND] = ACTIONS(6865), + }, + [STATE(2195)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_byval_modifier_token1] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(5440), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym__for_header_token2] = ACTIONS(5442), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2196)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2193), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2197)] = { + [sym_next_variable_list] = STATE(3799), + [sym__assignable_expression] = STATE(3142), + [sym__callable_expression] = STATE(3049), + [sym_call_expression] = STATE(3184), + [sym_member_expression] = STATE(3703), + [sym_qualified_member_expression] = STATE(3537), + [sym_implicit_member_expression] = STATE(3537), + [sym_identifier] = ACTIONS(6808), + [sym_newline] = ACTIONS(6867), + [anon_sym_COLON] = ACTIONS(6867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6869), + [aux_sym_frm_property_statement_token1] = ACTIONS(6814), + [anon_sym_DOT] = ACTIONS(6816), + [anon_sym_BANG] = ACTIONS(6818), + [aux_sym__attribute_identifier_token1] = ACTIONS(6869), + [aux_sym_option_statement_token3] = ACTIONS(6869), + [aux_sym_type_declaration_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6869), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6869), + [aux_sym_enum_declaration_token1] = ACTIONS(6869), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6869), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6869), + [aux_sym_declare_function_statement_token1] = ACTIONS(6869), + [aux_sym_preprocessor_const_token1] = ACTIONS(6869), + [aux_sym__property_get_header_token1] = ACTIONS(6869), + [aux_sym_event_declaration_token1] = ACTIONS(6869), + [sym_static_modifier] = ACTIONS(6869), + [sym__dim_keyword] = ACTIONS(6869), + [sym__redim_keyword] = ACTIONS(6869), + [aux_sym_get_accessor_token1] = ACTIONS(6869), + [aux_sym_set_accessor_token1] = ACTIONS(6869), + [aux_sym_const_declaration_token1] = ACTIONS(6869), + [anon_sym_LPAREN] = ACTIONS(6867), + [aux_sym_as_type_clause_token2] = ACTIONS(6869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6820), + [aux_sym_visibility_token1] = ACTIONS(6869), + [aux_sym_visibility_token2] = ACTIONS(6869), + [aux_sym_elseif_fragment_token1] = ACTIONS(6869), + [aux_sym_else_fragment_token1] = ACTIONS(6869), + [aux_sym_select_statement_token1] = ACTIONS(6869), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6869), + [aux_sym__for_header_token1] = ACTIONS(6869), + [aux_sym_do_statement_token1] = ACTIONS(6869), + [aux_sym_do_condition_token1] = ACTIONS(6869), + [aux_sym_with_statement_token1] = ACTIONS(6869), + [aux_sym_exit_statement_token1] = ACTIONS(6869), + [sym_end_statement] = ACTIONS(6867), + [aux_sym_on_goto_statement_token1] = ACTIONS(6869), + [aux_sym_on_goto_statement_token2] = ACTIONS(6869), + [aux_sym_on_error_statement_token2] = ACTIONS(6869), + [sym__ambiguous_redim_statement] = ACTIONS(6867), + [aux_sym_erase_statement_token1] = ACTIONS(6869), + [aux_sym_open_statement_token1] = ACTIONS(6869), + [aux_sym_file_mode_token2] = ACTIONS(6869), + [aux_sym_file_access_token2] = ACTIONS(6869), + [aux_sym_file_lock_token2] = ACTIONS(6869), + [aux_sym_print_statement_token1] = ACTIONS(6869), + [anon_sym_PLUS] = ACTIONS(6867), + [anon_sym_DASH] = ACTIONS(6869), + [anon_sym_QMARK] = ACTIONS(6867), + [aux_sym_close_statement_token1] = ACTIONS(6869), + [aux_sym_put_statement_token1] = ACTIONS(6869), + [aux_sym_unlock_statement_token1] = ACTIONS(6869), + [aux_sym_seek_statement_token1] = ACTIONS(6869), + [sym_reset_statement] = ACTIONS(6869), + [aux_sym_raise_event_statement_token1] = ACTIONS(6869), + [sym_stop_statement] = ACTIONS(6869), + [sym_beep_statement] = ACTIONS(6869), + [aux_sym_unload_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token2] = ACTIONS(6869), + [aux_sym_def_type_statement_token3] = ACTIONS(6869), + [aux_sym_def_type_statement_token4] = ACTIONS(6869), + [aux_sym_def_type_statement_token5] = ACTIONS(6869), + [aux_sym_def_type_statement_token6] = ACTIONS(6869), + [aux_sym_def_type_statement_token7] = ACTIONS(6869), + [aux_sym_def_type_statement_token8] = ACTIONS(6869), + [aux_sym_def_type_statement_token9] = ACTIONS(6869), + [aux_sym_def_type_statement_token10] = ACTIONS(6869), + [aux_sym_def_type_statement_token11] = ACTIONS(6869), + [aux_sym_def_type_statement_token12] = ACTIONS(6869), + [aux_sym_def_type_statement_token13] = ACTIONS(6869), + [aux_sym_def_type_statement_token14] = ACTIONS(6869), + [aux_sym_call_statement_token1] = ACTIONS(6869), + [sym__ambiguous_call_statement] = ACTIONS(6869), + [aux_sym_addressof_expression_token1] = ACTIONS(6869), + [aux_sym_type_of_expression_token1] = ACTIONS(6869), + [aux_sym_unary_expression_token1] = ACTIONS(6869), + [sym_string_literal] = ACTIONS(6867), + [sym_number_literal] = ACTIONS(6867), + [aux_sym_boolean_literal_token1] = ACTIONS(6869), + [aux_sym_boolean_literal_token2] = ACTIONS(6869), + [sym_nothing_literal] = ACTIONS(6869), + [sym_null_literal] = ACTIONS(6869), + [sym_empty_literal] = ACTIONS(6869), + [sym_date_literal] = ACTIONS(6867), + [anon_sym_POUND] = ACTIONS(6869), + }, + [STATE(2198)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2199)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2200)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(2201)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2202)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2203)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2204)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2205)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2206)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(2207)] = { + [sym_next_variable_list] = STATE(4055), + [sym__assignable_expression] = STATE(3642), + [sym__callable_expression] = STATE(3557), + [sym_call_expression] = STATE(3562), + [sym_member_expression] = STATE(3796), + [sym_qualified_member_expression] = STATE(3720), + [sym_implicit_member_expression] = STATE(3720), + [sym_identifier] = ACTIONS(6871), + [sym_newline] = ACTIONS(6822), + [anon_sym_COLON] = ACTIONS(6822), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6824), + [aux_sym_frm_property_statement_token1] = ACTIONS(6873), + [anon_sym_DOT] = ACTIONS(6875), + [anon_sym_BANG] = ACTIONS(6877), + [aux_sym__attribute_identifier_token1] = ACTIONS(6824), + [aux_sym_option_statement_token3] = ACTIONS(6824), + [aux_sym_type_declaration_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6824), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6824), + [aux_sym_enum_declaration_token1] = ACTIONS(6824), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6824), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6824), + [aux_sym_declare_function_statement_token1] = ACTIONS(6824), + [aux_sym_preprocessor_const_token1] = ACTIONS(6824), + [aux_sym__property_get_header_token1] = ACTIONS(6824), + [aux_sym_event_declaration_token1] = ACTIONS(6824), + [sym_static_modifier] = ACTIONS(6824), + [sym__dim_keyword] = ACTIONS(6824), + [sym__redim_keyword] = ACTIONS(6824), + [aux_sym_get_accessor_token1] = ACTIONS(6824), + [aux_sym_set_accessor_token1] = ACTIONS(6824), + [aux_sym_const_declaration_token1] = ACTIONS(6824), + [anon_sym_LPAREN] = ACTIONS(6822), + [aux_sym_as_type_clause_token2] = ACTIONS(6824), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6879), + [aux_sym_visibility_token1] = ACTIONS(6824), + [aux_sym_visibility_token2] = ACTIONS(6824), + [aux_sym_elseif_fragment_token1] = ACTIONS(6824), + [aux_sym_else_fragment_token1] = ACTIONS(6824), + [aux_sym_select_statement_token1] = ACTIONS(6824), + [aux_sym__for_header_token1] = ACTIONS(6824), + [aux_sym_do_statement_token1] = ACTIONS(6824), + [aux_sym_do_condition_token1] = ACTIONS(6824), + [aux_sym_with_statement_token1] = ACTIONS(6824), + [aux_sym_exit_statement_token1] = ACTIONS(6824), + [sym_end_statement] = ACTIONS(6822), + [aux_sym_on_goto_statement_token1] = ACTIONS(6824), + [aux_sym_on_goto_statement_token2] = ACTIONS(6824), + [aux_sym_on_error_statement_token2] = ACTIONS(6824), + [sym__ambiguous_redim_statement] = ACTIONS(6822), + [aux_sym_erase_statement_token1] = ACTIONS(6824), + [aux_sym_open_statement_token1] = ACTIONS(6824), + [aux_sym_file_mode_token2] = ACTIONS(6824), + [aux_sym_file_access_token2] = ACTIONS(6824), + [aux_sym_file_lock_token2] = ACTIONS(6824), + [aux_sym_print_statement_token1] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6822), + [aux_sym_close_statement_token1] = ACTIONS(6824), + [aux_sym_put_statement_token1] = ACTIONS(6824), + [aux_sym_unlock_statement_token1] = ACTIONS(6824), + [aux_sym_seek_statement_token1] = ACTIONS(6824), + [sym_reset_statement] = ACTIONS(6824), + [aux_sym_raise_event_statement_token1] = ACTIONS(6824), + [sym_stop_statement] = ACTIONS(6824), + [sym_beep_statement] = ACTIONS(6824), + [aux_sym_unload_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token2] = ACTIONS(6824), + [aux_sym_def_type_statement_token3] = ACTIONS(6824), + [aux_sym_def_type_statement_token4] = ACTIONS(6824), + [aux_sym_def_type_statement_token5] = ACTIONS(6824), + [aux_sym_def_type_statement_token6] = ACTIONS(6824), + [aux_sym_def_type_statement_token7] = ACTIONS(6824), + [aux_sym_def_type_statement_token8] = ACTIONS(6824), + [aux_sym_def_type_statement_token9] = ACTIONS(6824), + [aux_sym_def_type_statement_token10] = ACTIONS(6824), + [aux_sym_def_type_statement_token11] = ACTIONS(6824), + [aux_sym_def_type_statement_token12] = ACTIONS(6824), + [aux_sym_def_type_statement_token13] = ACTIONS(6824), + [aux_sym_def_type_statement_token14] = ACTIONS(6824), + [aux_sym_call_statement_token1] = ACTIONS(6824), + [sym__ambiguous_call_statement] = ACTIONS(6824), + [aux_sym_addressof_expression_token1] = ACTIONS(6824), + [aux_sym_type_of_expression_token1] = ACTIONS(6824), + [aux_sym_unary_expression_token1] = ACTIONS(6824), + [sym_string_literal] = ACTIONS(6822), + [sym_number_literal] = ACTIONS(6822), + [aux_sym_boolean_literal_token1] = ACTIONS(6824), + [aux_sym_boolean_literal_token2] = ACTIONS(6824), + [sym_nothing_literal] = ACTIONS(6824), + [sym_null_literal] = ACTIONS(6824), + [sym_empty_literal] = ACTIONS(6824), + [sym_date_literal] = ACTIONS(6822), + [anon_sym_POUND] = ACTIONS(6824), + }, + [STATE(2208)] = { + [sym_next_variable_list] = STATE(3985), + [sym__assignable_expression] = STATE(3642), + [sym__callable_expression] = STATE(3557), + [sym_call_expression] = STATE(3562), + [sym_member_expression] = STATE(3796), + [sym_qualified_member_expression] = STATE(3720), + [sym_implicit_member_expression] = STATE(3720), + [sym_identifier] = ACTIONS(6871), + [sym_newline] = ACTIONS(6842), + [anon_sym_COLON] = ACTIONS(6842), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6844), + [aux_sym_frm_property_statement_token1] = ACTIONS(6873), + [anon_sym_DOT] = ACTIONS(6875), + [anon_sym_BANG] = ACTIONS(6877), + [aux_sym__attribute_identifier_token1] = ACTIONS(6844), + [aux_sym_option_statement_token3] = ACTIONS(6844), + [aux_sym_type_declaration_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6844), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6844), + [aux_sym_enum_declaration_token1] = ACTIONS(6844), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6844), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6844), + [aux_sym_declare_function_statement_token1] = ACTIONS(6844), + [aux_sym_preprocessor_const_token1] = ACTIONS(6844), + [aux_sym__property_get_header_token1] = ACTIONS(6844), + [aux_sym_event_declaration_token1] = ACTIONS(6844), + [sym_static_modifier] = ACTIONS(6844), + [sym__dim_keyword] = ACTIONS(6844), + [sym__redim_keyword] = ACTIONS(6844), + [aux_sym_get_accessor_token1] = ACTIONS(6844), + [aux_sym_set_accessor_token1] = ACTIONS(6844), + [aux_sym_const_declaration_token1] = ACTIONS(6844), + [anon_sym_LPAREN] = ACTIONS(6842), + [aux_sym_as_type_clause_token2] = ACTIONS(6844), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6879), + [aux_sym_visibility_token1] = ACTIONS(6844), + [aux_sym_visibility_token2] = ACTIONS(6844), + [aux_sym_elseif_fragment_token1] = ACTIONS(6844), + [aux_sym_else_fragment_token1] = ACTIONS(6844), + [aux_sym_select_statement_token1] = ACTIONS(6844), + [aux_sym__for_header_token1] = ACTIONS(6844), + [aux_sym_do_statement_token1] = ACTIONS(6844), + [aux_sym_do_condition_token1] = ACTIONS(6844), + [aux_sym_with_statement_token1] = ACTIONS(6844), + [aux_sym_exit_statement_token1] = ACTIONS(6844), + [sym_end_statement] = ACTIONS(6842), + [aux_sym_on_goto_statement_token1] = ACTIONS(6844), + [aux_sym_on_goto_statement_token2] = ACTIONS(6844), + [aux_sym_on_error_statement_token2] = ACTIONS(6844), + [sym__ambiguous_redim_statement] = ACTIONS(6842), + [aux_sym_erase_statement_token1] = ACTIONS(6844), + [aux_sym_open_statement_token1] = ACTIONS(6844), + [aux_sym_file_mode_token2] = ACTIONS(6844), + [aux_sym_file_access_token2] = ACTIONS(6844), + [aux_sym_file_lock_token2] = ACTIONS(6844), + [aux_sym_print_statement_token1] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6842), + [aux_sym_close_statement_token1] = ACTIONS(6844), + [aux_sym_put_statement_token1] = ACTIONS(6844), + [aux_sym_unlock_statement_token1] = ACTIONS(6844), + [aux_sym_seek_statement_token1] = ACTIONS(6844), + [sym_reset_statement] = ACTIONS(6844), + [aux_sym_raise_event_statement_token1] = ACTIONS(6844), + [sym_stop_statement] = ACTIONS(6844), + [sym_beep_statement] = ACTIONS(6844), + [aux_sym_unload_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token2] = ACTIONS(6844), + [aux_sym_def_type_statement_token3] = ACTIONS(6844), + [aux_sym_def_type_statement_token4] = ACTIONS(6844), + [aux_sym_def_type_statement_token5] = ACTIONS(6844), + [aux_sym_def_type_statement_token6] = ACTIONS(6844), + [aux_sym_def_type_statement_token7] = ACTIONS(6844), + [aux_sym_def_type_statement_token8] = ACTIONS(6844), + [aux_sym_def_type_statement_token9] = ACTIONS(6844), + [aux_sym_def_type_statement_token10] = ACTIONS(6844), + [aux_sym_def_type_statement_token11] = ACTIONS(6844), + [aux_sym_def_type_statement_token12] = ACTIONS(6844), + [aux_sym_def_type_statement_token13] = ACTIONS(6844), + [aux_sym_def_type_statement_token14] = ACTIONS(6844), + [aux_sym_call_statement_token1] = ACTIONS(6844), + [sym__ambiguous_call_statement] = ACTIONS(6844), + [aux_sym_addressof_expression_token1] = ACTIONS(6844), + [aux_sym_type_of_expression_token1] = ACTIONS(6844), + [aux_sym_unary_expression_token1] = ACTIONS(6844), + [sym_string_literal] = ACTIONS(6842), + [sym_number_literal] = ACTIONS(6842), + [aux_sym_boolean_literal_token1] = ACTIONS(6844), + [aux_sym_boolean_literal_token2] = ACTIONS(6844), + [sym_nothing_literal] = ACTIONS(6844), + [sym_null_literal] = ACTIONS(6844), + [sym_empty_literal] = ACTIONS(6844), + [sym_date_literal] = ACTIONS(6842), + [anon_sym_POUND] = ACTIONS(6844), + }, + [STATE(2209)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6852), + [anon_sym_BANG] = ACTIONS(6854), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2210)] = { + [sym_next_variable_list] = STATE(3986), + [sym__assignable_expression] = STATE(3642), + [sym__callable_expression] = STATE(3557), + [sym_call_expression] = STATE(3562), + [sym_member_expression] = STATE(3796), + [sym_qualified_member_expression] = STATE(3720), + [sym_implicit_member_expression] = STATE(3720), + [sym_identifier] = ACTIONS(6871), + [sym_newline] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(6856), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6858), + [aux_sym_frm_property_statement_token1] = ACTIONS(6873), + [anon_sym_DOT] = ACTIONS(6875), + [anon_sym_BANG] = ACTIONS(6877), + [aux_sym__attribute_identifier_token1] = ACTIONS(6858), + [aux_sym_option_statement_token3] = ACTIONS(6858), + [aux_sym_type_declaration_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6858), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6858), + [aux_sym_enum_declaration_token1] = ACTIONS(6858), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6858), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6858), + [aux_sym_declare_function_statement_token1] = ACTIONS(6858), + [aux_sym_preprocessor_const_token1] = ACTIONS(6858), + [aux_sym__property_get_header_token1] = ACTIONS(6858), + [aux_sym_event_declaration_token1] = ACTIONS(6858), + [sym_static_modifier] = ACTIONS(6858), + [sym__dim_keyword] = ACTIONS(6858), + [sym__redim_keyword] = ACTIONS(6858), + [aux_sym_get_accessor_token1] = ACTIONS(6858), + [aux_sym_set_accessor_token1] = ACTIONS(6858), + [aux_sym_const_declaration_token1] = ACTIONS(6858), + [anon_sym_LPAREN] = ACTIONS(6856), + [aux_sym_as_type_clause_token2] = ACTIONS(6858), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6879), + [aux_sym_visibility_token1] = ACTIONS(6858), + [aux_sym_visibility_token2] = ACTIONS(6858), + [aux_sym_elseif_fragment_token1] = ACTIONS(6858), + [aux_sym_else_fragment_token1] = ACTIONS(6858), + [aux_sym_select_statement_token1] = ACTIONS(6858), + [aux_sym__for_header_token1] = ACTIONS(6858), + [aux_sym_do_statement_token1] = ACTIONS(6858), + [aux_sym_do_condition_token1] = ACTIONS(6858), + [aux_sym_with_statement_token1] = ACTIONS(6858), + [aux_sym_exit_statement_token1] = ACTIONS(6858), + [sym_end_statement] = ACTIONS(6856), + [aux_sym_on_goto_statement_token1] = ACTIONS(6858), + [aux_sym_on_goto_statement_token2] = ACTIONS(6858), + [aux_sym_on_error_statement_token2] = ACTIONS(6858), + [sym__ambiguous_redim_statement] = ACTIONS(6856), + [aux_sym_erase_statement_token1] = ACTIONS(6858), + [aux_sym_open_statement_token1] = ACTIONS(6858), + [aux_sym_file_mode_token2] = ACTIONS(6858), + [aux_sym_file_access_token2] = ACTIONS(6858), + [aux_sym_file_lock_token2] = ACTIONS(6858), + [aux_sym_print_statement_token1] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6856), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_QMARK] = ACTIONS(6856), + [aux_sym_close_statement_token1] = ACTIONS(6858), + [aux_sym_put_statement_token1] = ACTIONS(6858), + [aux_sym_unlock_statement_token1] = ACTIONS(6858), + [aux_sym_seek_statement_token1] = ACTIONS(6858), + [sym_reset_statement] = ACTIONS(6858), + [aux_sym_raise_event_statement_token1] = ACTIONS(6858), + [sym_stop_statement] = ACTIONS(6858), + [sym_beep_statement] = ACTIONS(6858), + [aux_sym_unload_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token2] = ACTIONS(6858), + [aux_sym_def_type_statement_token3] = ACTIONS(6858), + [aux_sym_def_type_statement_token4] = ACTIONS(6858), + [aux_sym_def_type_statement_token5] = ACTIONS(6858), + [aux_sym_def_type_statement_token6] = ACTIONS(6858), + [aux_sym_def_type_statement_token7] = ACTIONS(6858), + [aux_sym_def_type_statement_token8] = ACTIONS(6858), + [aux_sym_def_type_statement_token9] = ACTIONS(6858), + [aux_sym_def_type_statement_token10] = ACTIONS(6858), + [aux_sym_def_type_statement_token11] = ACTIONS(6858), + [aux_sym_def_type_statement_token12] = ACTIONS(6858), + [aux_sym_def_type_statement_token13] = ACTIONS(6858), + [aux_sym_def_type_statement_token14] = ACTIONS(6858), + [aux_sym_call_statement_token1] = ACTIONS(6858), + [sym__ambiguous_call_statement] = ACTIONS(6858), + [aux_sym_addressof_expression_token1] = ACTIONS(6858), + [aux_sym_type_of_expression_token1] = ACTIONS(6858), + [aux_sym_unary_expression_token1] = ACTIONS(6858), + [sym_string_literal] = ACTIONS(6856), + [sym_number_literal] = ACTIONS(6856), + [aux_sym_boolean_literal_token1] = ACTIONS(6858), + [aux_sym_boolean_literal_token2] = ACTIONS(6858), + [sym_nothing_literal] = ACTIONS(6858), + [sym_null_literal] = ACTIONS(6858), + [sym_empty_literal] = ACTIONS(6858), + [sym_date_literal] = ACTIONS(6856), + [anon_sym_POUND] = ACTIONS(6858), + }, + [STATE(2211)] = { + [sym_identifier] = ACTIONS(5555), + [sym_newline] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(4399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5555), + [aux_sym_frm_property_statement_token1] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(6881), + [anon_sym_BANG] = ACTIONS(6854), + [aux_sym__attribute_identifier_token1] = ACTIONS(5555), + [aux_sym_option_statement_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5555), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5555), + [aux_sym_preprocessor_const_token1] = ACTIONS(5555), + [sym_static_modifier] = ACTIONS(5555), + [sym__dim_keyword] = ACTIONS(5555), + [sym__redim_keyword] = ACTIONS(5555), + [aux_sym_byval_modifier_token1] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5555), + [aux_sym_set_accessor_token1] = ACTIONS(5555), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5555), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5555), + [aux_sym_visibility_token1] = ACTIONS(5555), + [aux_sym_visibility_token2] = ACTIONS(5555), + [aux_sym_elseif_fragment_token1] = ACTIONS(5555), + [aux_sym_else_fragment_token1] = ACTIONS(5555), + [aux_sym_select_statement_token1] = ACTIONS(5555), + [aux_sym__for_header_token1] = ACTIONS(5555), + [aux_sym_do_statement_token1] = ACTIONS(5555), + [aux_sym_do_condition_token1] = ACTIONS(5555), + [aux_sym_with_statement_token1] = ACTIONS(5555), + [aux_sym_exit_statement_token1] = ACTIONS(5555), + [sym_end_statement] = ACTIONS(4399), + [aux_sym_on_goto_statement_token1] = ACTIONS(5555), + [aux_sym_on_goto_statement_token2] = ACTIONS(5555), + [aux_sym_on_error_statement_token2] = ACTIONS(5555), + [sym__ambiguous_redim_statement] = ACTIONS(4399), + [aux_sym_erase_statement_token1] = ACTIONS(5555), + [aux_sym_open_statement_token1] = ACTIONS(5555), + [aux_sym_file_mode_token2] = ACTIONS(5555), + [aux_sym_file_access_token2] = ACTIONS(5555), + [aux_sym_file_lock_token2] = ACTIONS(5555), + [aux_sym_print_statement_token1] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(5555), + [aux_sym_put_statement_token1] = ACTIONS(5555), + [aux_sym_unlock_statement_token1] = ACTIONS(5555), + [aux_sym_seek_statement_token1] = ACTIONS(5555), + [sym_reset_statement] = ACTIONS(5555), + [aux_sym_raise_event_statement_token1] = ACTIONS(5555), + [sym_stop_statement] = ACTIONS(5555), + [sym_beep_statement] = ACTIONS(5555), + [aux_sym_unload_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token2] = ACTIONS(5555), + [aux_sym_def_type_statement_token3] = ACTIONS(5555), + [aux_sym_def_type_statement_token4] = ACTIONS(5555), + [aux_sym_def_type_statement_token5] = ACTIONS(5555), + [aux_sym_def_type_statement_token6] = ACTIONS(5555), + [aux_sym_def_type_statement_token7] = ACTIONS(5555), + [aux_sym_def_type_statement_token8] = ACTIONS(5555), + [aux_sym_def_type_statement_token9] = ACTIONS(5555), + [aux_sym_def_type_statement_token10] = ACTIONS(5555), + [aux_sym_def_type_statement_token11] = ACTIONS(5555), + [aux_sym_def_type_statement_token12] = ACTIONS(5555), + [aux_sym_def_type_statement_token13] = ACTIONS(5555), + [aux_sym_def_type_statement_token14] = ACTIONS(5555), + [aux_sym_call_statement_token1] = ACTIONS(5555), + [sym__ambiguous_call_statement] = ACTIONS(5555), + [aux_sym_addressof_expression_token1] = ACTIONS(5555), + [aux_sym_type_of_expression_token1] = ACTIONS(5555), + [aux_sym_unary_expression_token1] = ACTIONS(5555), + [sym_string_literal] = ACTIONS(4399), + [sym_number_literal] = ACTIONS(4399), + [aux_sym_boolean_literal_token1] = ACTIONS(5555), + [aux_sym_boolean_literal_token2] = ACTIONS(5555), + [sym_nothing_literal] = ACTIONS(5555), + [sym_null_literal] = ACTIONS(5555), + [sym_empty_literal] = ACTIONS(5555), + [sym_date_literal] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(5555), + }, + [STATE(2212)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(4665), + [sym_identifier] = ACTIONS(5566), + [sym_newline] = ACTIONS(5568), + [anon_sym_COLON] = ACTIONS(5568), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5566), + [aux_sym_frm_property_statement_token1] = ACTIONS(5566), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_BANG] = ACTIONS(5568), + [aux_sym__attribute_identifier_token1] = ACTIONS(5566), + [aux_sym_option_statement_token3] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5566), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5566), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5566), + [aux_sym_preprocessor_const_token1] = ACTIONS(5566), + [sym_static_modifier] = ACTIONS(5566), + [sym__dim_keyword] = ACTIONS(5566), + [sym__redim_keyword] = ACTIONS(5566), + [aux_sym_get_accessor_token1] = ACTIONS(5566), + [aux_sym_set_accessor_token1] = ACTIONS(5566), + [anon_sym_COMMA] = ACTIONS(6883), + [aux_sym_const_declaration_token1] = ACTIONS(5566), + [anon_sym_LPAREN] = ACTIONS(5568), + [aux_sym_as_type_clause_token2] = ACTIONS(5566), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5566), + [aux_sym_visibility_token1] = ACTIONS(5566), + [aux_sym_visibility_token2] = ACTIONS(5566), + [aux_sym_elseif_fragment_token1] = ACTIONS(5566), + [aux_sym_else_fragment_token1] = ACTIONS(5566), + [aux_sym_select_statement_token1] = ACTIONS(5566), + [aux_sym__for_header_token1] = ACTIONS(5566), + [aux_sym_do_statement_token1] = ACTIONS(5566), + [aux_sym_do_condition_token1] = ACTIONS(5566), + [aux_sym_with_statement_token1] = ACTIONS(5566), + [aux_sym_exit_statement_token1] = ACTIONS(5566), + [sym_end_statement] = ACTIONS(5568), + [aux_sym_on_goto_statement_token1] = ACTIONS(5566), + [aux_sym_on_goto_statement_token2] = ACTIONS(5566), + [aux_sym_on_error_statement_token2] = ACTIONS(5566), + [sym__ambiguous_redim_statement] = ACTIONS(5568), + [aux_sym_erase_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_file_mode_token2] = ACTIONS(5566), + [aux_sym_file_access_token2] = ACTIONS(5566), + [aux_sym_file_lock_token2] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_SEMI] = ACTIONS(6883), + [anon_sym_QMARK] = ACTIONS(5568), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_put_statement_token1] = ACTIONS(5566), + [aux_sym_unlock_statement_token1] = ACTIONS(5566), + [aux_sym_seek_statement_token1] = ACTIONS(5566), + [sym_reset_statement] = ACTIONS(5566), + [aux_sym_raise_event_statement_token1] = ACTIONS(5566), + [sym_stop_statement] = ACTIONS(5566), + [sym_beep_statement] = ACTIONS(5566), + [aux_sym_unload_statement_token1] = ACTIONS(5566), + [aux_sym_def_type_statement_token1] = ACTIONS(5566), + [aux_sym_def_type_statement_token2] = ACTIONS(5566), + [aux_sym_def_type_statement_token3] = ACTIONS(5566), + [aux_sym_def_type_statement_token4] = ACTIONS(5566), + [aux_sym_def_type_statement_token5] = ACTIONS(5566), + [aux_sym_def_type_statement_token6] = ACTIONS(5566), + [aux_sym_def_type_statement_token7] = ACTIONS(5566), + [aux_sym_def_type_statement_token8] = ACTIONS(5566), + [aux_sym_def_type_statement_token9] = ACTIONS(5566), + [aux_sym_def_type_statement_token10] = ACTIONS(5566), + [aux_sym_def_type_statement_token11] = ACTIONS(5566), + [aux_sym_def_type_statement_token12] = ACTIONS(5566), + [aux_sym_def_type_statement_token13] = ACTIONS(5566), + [aux_sym_def_type_statement_token14] = ACTIONS(5566), + [aux_sym_call_statement_token1] = ACTIONS(5566), + [sym__ambiguous_call_statement] = ACTIONS(5566), + [aux_sym_addressof_expression_token1] = ACTIONS(5566), + [aux_sym_type_of_expression_token1] = ACTIONS(5566), + [aux_sym_unary_expression_token1] = ACTIONS(5566), + [sym_string_literal] = ACTIONS(5568), + [sym_number_literal] = ACTIONS(5568), + [aux_sym_boolean_literal_token1] = ACTIONS(5566), + [aux_sym_boolean_literal_token2] = ACTIONS(5566), + [sym_nothing_literal] = ACTIONS(5566), + [sym_null_literal] = ACTIONS(5566), + [sym_empty_literal] = ACTIONS(5566), + [sym_date_literal] = ACTIONS(5568), + [anon_sym_POUND] = ACTIONS(5566), + }, + [STATE(2213)] = { + [sym_next_variable_list] = STATE(4016), + [sym__assignable_expression] = STATE(3642), + [sym__callable_expression] = STATE(3557), + [sym_call_expression] = STATE(3562), + [sym_member_expression] = STATE(3796), + [sym_qualified_member_expression] = STATE(3720), + [sym_implicit_member_expression] = STATE(3720), + [sym_identifier] = ACTIONS(6871), + [sym_newline] = ACTIONS(6863), + [anon_sym_COLON] = ACTIONS(6863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6865), + [aux_sym_frm_property_statement_token1] = ACTIONS(6873), + [anon_sym_DOT] = ACTIONS(6875), + [anon_sym_BANG] = ACTIONS(6877), + [aux_sym__attribute_identifier_token1] = ACTIONS(6865), + [aux_sym_option_statement_token3] = ACTIONS(6865), + [aux_sym_type_declaration_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6865), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6865), + [aux_sym_enum_declaration_token1] = ACTIONS(6865), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6865), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6865), + [aux_sym_declare_function_statement_token1] = ACTIONS(6865), + [aux_sym_preprocessor_const_token1] = ACTIONS(6865), + [aux_sym__property_get_header_token1] = ACTIONS(6865), + [aux_sym_event_declaration_token1] = ACTIONS(6865), + [sym_static_modifier] = ACTIONS(6865), + [sym__dim_keyword] = ACTIONS(6865), + [sym__redim_keyword] = ACTIONS(6865), + [aux_sym_get_accessor_token1] = ACTIONS(6865), + [aux_sym_set_accessor_token1] = ACTIONS(6865), + [aux_sym_const_declaration_token1] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6863), + [aux_sym_as_type_clause_token2] = ACTIONS(6865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6879), + [aux_sym_visibility_token1] = ACTIONS(6865), + [aux_sym_visibility_token2] = ACTIONS(6865), + [aux_sym_elseif_fragment_token1] = ACTIONS(6865), + [aux_sym_else_fragment_token1] = ACTIONS(6865), + [aux_sym_select_statement_token1] = ACTIONS(6865), + [aux_sym__for_header_token1] = ACTIONS(6865), + [aux_sym_do_statement_token1] = ACTIONS(6865), + [aux_sym_do_condition_token1] = ACTIONS(6865), + [aux_sym_with_statement_token1] = ACTIONS(6865), + [aux_sym_exit_statement_token1] = ACTIONS(6865), + [sym_end_statement] = ACTIONS(6863), + [aux_sym_on_goto_statement_token1] = ACTIONS(6865), + [aux_sym_on_goto_statement_token2] = ACTIONS(6865), + [aux_sym_on_error_statement_token2] = ACTIONS(6865), + [sym__ambiguous_redim_statement] = ACTIONS(6863), + [aux_sym_erase_statement_token1] = ACTIONS(6865), + [aux_sym_open_statement_token1] = ACTIONS(6865), + [aux_sym_file_mode_token2] = ACTIONS(6865), + [aux_sym_file_access_token2] = ACTIONS(6865), + [aux_sym_file_lock_token2] = ACTIONS(6865), + [aux_sym_print_statement_token1] = ACTIONS(6865), + [anon_sym_PLUS] = ACTIONS(6863), + [anon_sym_DASH] = ACTIONS(6865), + [anon_sym_QMARK] = ACTIONS(6863), + [aux_sym_close_statement_token1] = ACTIONS(6865), + [aux_sym_put_statement_token1] = ACTIONS(6865), + [aux_sym_unlock_statement_token1] = ACTIONS(6865), + [aux_sym_seek_statement_token1] = ACTIONS(6865), + [sym_reset_statement] = ACTIONS(6865), + [aux_sym_raise_event_statement_token1] = ACTIONS(6865), + [sym_stop_statement] = ACTIONS(6865), + [sym_beep_statement] = ACTIONS(6865), + [aux_sym_unload_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token2] = ACTIONS(6865), + [aux_sym_def_type_statement_token3] = ACTIONS(6865), + [aux_sym_def_type_statement_token4] = ACTIONS(6865), + [aux_sym_def_type_statement_token5] = ACTIONS(6865), + [aux_sym_def_type_statement_token6] = ACTIONS(6865), + [aux_sym_def_type_statement_token7] = ACTIONS(6865), + [aux_sym_def_type_statement_token8] = ACTIONS(6865), + [aux_sym_def_type_statement_token9] = ACTIONS(6865), + [aux_sym_def_type_statement_token10] = ACTIONS(6865), + [aux_sym_def_type_statement_token11] = ACTIONS(6865), + [aux_sym_def_type_statement_token12] = ACTIONS(6865), + [aux_sym_def_type_statement_token13] = ACTIONS(6865), + [aux_sym_def_type_statement_token14] = ACTIONS(6865), + [aux_sym_call_statement_token1] = ACTIONS(6865), + [sym__ambiguous_call_statement] = ACTIONS(6865), + [aux_sym_addressof_expression_token1] = ACTIONS(6865), + [aux_sym_type_of_expression_token1] = ACTIONS(6865), + [aux_sym_unary_expression_token1] = ACTIONS(6865), + [sym_string_literal] = ACTIONS(6863), + [sym_number_literal] = ACTIONS(6863), + [aux_sym_boolean_literal_token1] = ACTIONS(6865), + [aux_sym_boolean_literal_token2] = ACTIONS(6865), + [sym_nothing_literal] = ACTIONS(6865), + [sym_null_literal] = ACTIONS(6865), + [sym_empty_literal] = ACTIONS(6865), + [sym_date_literal] = ACTIONS(6863), + [anon_sym_POUND] = ACTIONS(6865), + }, + [STATE(2214)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(2215)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(2216)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(2217)] = { + [sym_next_variable_list] = STATE(4014), + [sym__assignable_expression] = STATE(3642), + [sym__callable_expression] = STATE(3557), + [sym_call_expression] = STATE(3562), + [sym_member_expression] = STATE(3796), + [sym_qualified_member_expression] = STATE(3720), + [sym_implicit_member_expression] = STATE(3720), + [sym_identifier] = ACTIONS(6871), + [sym_newline] = ACTIONS(6810), + [anon_sym_COLON] = ACTIONS(6810), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6812), + [aux_sym_frm_property_statement_token1] = ACTIONS(6873), + [anon_sym_DOT] = ACTIONS(6875), + [anon_sym_BANG] = ACTIONS(6877), + [aux_sym__attribute_identifier_token1] = ACTIONS(6812), + [aux_sym_option_statement_token3] = ACTIONS(6812), + [aux_sym_type_declaration_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6812), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6812), + [aux_sym_enum_declaration_token1] = ACTIONS(6812), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6812), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6812), + [aux_sym_declare_function_statement_token1] = ACTIONS(6812), + [aux_sym_preprocessor_const_token1] = ACTIONS(6812), + [aux_sym__property_get_header_token1] = ACTIONS(6812), + [aux_sym_event_declaration_token1] = ACTIONS(6812), + [sym_static_modifier] = ACTIONS(6812), + [sym__dim_keyword] = ACTIONS(6812), + [sym__redim_keyword] = ACTIONS(6812), + [aux_sym_get_accessor_token1] = ACTIONS(6812), + [aux_sym_set_accessor_token1] = ACTIONS(6812), + [aux_sym_const_declaration_token1] = ACTIONS(6812), + [anon_sym_LPAREN] = ACTIONS(6810), + [aux_sym_as_type_clause_token2] = ACTIONS(6812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6879), + [aux_sym_visibility_token1] = ACTIONS(6812), + [aux_sym_visibility_token2] = ACTIONS(6812), + [aux_sym_elseif_fragment_token1] = ACTIONS(6812), + [aux_sym_else_fragment_token1] = ACTIONS(6812), + [aux_sym_select_statement_token1] = ACTIONS(6812), + [aux_sym__for_header_token1] = ACTIONS(6812), + [aux_sym_do_statement_token1] = ACTIONS(6812), + [aux_sym_do_condition_token1] = ACTIONS(6812), + [aux_sym_with_statement_token1] = ACTIONS(6812), + [aux_sym_exit_statement_token1] = ACTIONS(6812), + [sym_end_statement] = ACTIONS(6810), + [aux_sym_on_goto_statement_token1] = ACTIONS(6812), + [aux_sym_on_goto_statement_token2] = ACTIONS(6812), + [aux_sym_on_error_statement_token2] = ACTIONS(6812), + [sym__ambiguous_redim_statement] = ACTIONS(6810), + [aux_sym_erase_statement_token1] = ACTIONS(6812), + [aux_sym_open_statement_token1] = ACTIONS(6812), + [aux_sym_file_mode_token2] = ACTIONS(6812), + [aux_sym_file_access_token2] = ACTIONS(6812), + [aux_sym_file_lock_token2] = ACTIONS(6812), + [aux_sym_print_statement_token1] = ACTIONS(6812), + [anon_sym_PLUS] = ACTIONS(6810), + [anon_sym_DASH] = ACTIONS(6812), + [anon_sym_QMARK] = ACTIONS(6810), + [aux_sym_close_statement_token1] = ACTIONS(6812), + [aux_sym_put_statement_token1] = ACTIONS(6812), + [aux_sym_unlock_statement_token1] = ACTIONS(6812), + [aux_sym_seek_statement_token1] = ACTIONS(6812), + [sym_reset_statement] = ACTIONS(6812), + [aux_sym_raise_event_statement_token1] = ACTIONS(6812), + [sym_stop_statement] = ACTIONS(6812), + [sym_beep_statement] = ACTIONS(6812), + [aux_sym_unload_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token2] = ACTIONS(6812), + [aux_sym_def_type_statement_token3] = ACTIONS(6812), + [aux_sym_def_type_statement_token4] = ACTIONS(6812), + [aux_sym_def_type_statement_token5] = ACTIONS(6812), + [aux_sym_def_type_statement_token6] = ACTIONS(6812), + [aux_sym_def_type_statement_token7] = ACTIONS(6812), + [aux_sym_def_type_statement_token8] = ACTIONS(6812), + [aux_sym_def_type_statement_token9] = ACTIONS(6812), + [aux_sym_def_type_statement_token10] = ACTIONS(6812), + [aux_sym_def_type_statement_token11] = ACTIONS(6812), + [aux_sym_def_type_statement_token12] = ACTIONS(6812), + [aux_sym_def_type_statement_token13] = ACTIONS(6812), + [aux_sym_def_type_statement_token14] = ACTIONS(6812), + [aux_sym_call_statement_token1] = ACTIONS(6812), + [sym__ambiguous_call_statement] = ACTIONS(6812), + [aux_sym_addressof_expression_token1] = ACTIONS(6812), + [aux_sym_type_of_expression_token1] = ACTIONS(6812), + [aux_sym_unary_expression_token1] = ACTIONS(6812), + [sym_string_literal] = ACTIONS(6810), + [sym_number_literal] = ACTIONS(6810), + [aux_sym_boolean_literal_token1] = ACTIONS(6812), + [aux_sym_boolean_literal_token2] = ACTIONS(6812), + [sym_nothing_literal] = ACTIONS(6812), + [sym_null_literal] = ACTIONS(6812), + [sym_empty_literal] = ACTIONS(6812), + [sym_date_literal] = ACTIONS(6810), + [anon_sym_POUND] = ACTIONS(6812), + }, + [STATE(2218)] = { + [sym_next_variable_list] = STATE(4013), + [sym__assignable_expression] = STATE(3642), + [sym__callable_expression] = STATE(3557), + [sym_call_expression] = STATE(3562), + [sym_member_expression] = STATE(3796), + [sym_qualified_member_expression] = STATE(3720), + [sym_implicit_member_expression] = STATE(3720), + [sym_identifier] = ACTIONS(6871), + [sym_newline] = ACTIONS(6867), + [anon_sym_COLON] = ACTIONS(6867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6869), + [aux_sym_frm_property_statement_token1] = ACTIONS(6873), + [anon_sym_DOT] = ACTIONS(6875), + [anon_sym_BANG] = ACTIONS(6877), + [aux_sym__attribute_identifier_token1] = ACTIONS(6869), + [aux_sym_option_statement_token3] = ACTIONS(6869), + [aux_sym_type_declaration_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6869), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6869), + [aux_sym_enum_declaration_token1] = ACTIONS(6869), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6869), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6869), + [aux_sym_declare_function_statement_token1] = ACTIONS(6869), + [aux_sym_preprocessor_const_token1] = ACTIONS(6869), + [aux_sym__property_get_header_token1] = ACTIONS(6869), + [aux_sym_event_declaration_token1] = ACTIONS(6869), + [sym_static_modifier] = ACTIONS(6869), + [sym__dim_keyword] = ACTIONS(6869), + [sym__redim_keyword] = ACTIONS(6869), + [aux_sym_get_accessor_token1] = ACTIONS(6869), + [aux_sym_set_accessor_token1] = ACTIONS(6869), + [aux_sym_const_declaration_token1] = ACTIONS(6869), + [anon_sym_LPAREN] = ACTIONS(6867), + [aux_sym_as_type_clause_token2] = ACTIONS(6869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6879), + [aux_sym_visibility_token1] = ACTIONS(6869), + [aux_sym_visibility_token2] = ACTIONS(6869), + [aux_sym_elseif_fragment_token1] = ACTIONS(6869), + [aux_sym_else_fragment_token1] = ACTIONS(6869), + [aux_sym_select_statement_token1] = ACTIONS(6869), + [aux_sym__for_header_token1] = ACTIONS(6869), + [aux_sym_do_statement_token1] = ACTIONS(6869), + [aux_sym_do_condition_token1] = ACTIONS(6869), + [aux_sym_with_statement_token1] = ACTIONS(6869), + [aux_sym_exit_statement_token1] = ACTIONS(6869), + [sym_end_statement] = ACTIONS(6867), + [aux_sym_on_goto_statement_token1] = ACTIONS(6869), + [aux_sym_on_goto_statement_token2] = ACTIONS(6869), + [aux_sym_on_error_statement_token2] = ACTIONS(6869), + [sym__ambiguous_redim_statement] = ACTIONS(6867), + [aux_sym_erase_statement_token1] = ACTIONS(6869), + [aux_sym_open_statement_token1] = ACTIONS(6869), + [aux_sym_file_mode_token2] = ACTIONS(6869), + [aux_sym_file_access_token2] = ACTIONS(6869), + [aux_sym_file_lock_token2] = ACTIONS(6869), + [aux_sym_print_statement_token1] = ACTIONS(6869), + [anon_sym_PLUS] = ACTIONS(6867), + [anon_sym_DASH] = ACTIONS(6869), + [anon_sym_QMARK] = ACTIONS(6867), + [aux_sym_close_statement_token1] = ACTIONS(6869), + [aux_sym_put_statement_token1] = ACTIONS(6869), + [aux_sym_unlock_statement_token1] = ACTIONS(6869), + [aux_sym_seek_statement_token1] = ACTIONS(6869), + [sym_reset_statement] = ACTIONS(6869), + [aux_sym_raise_event_statement_token1] = ACTIONS(6869), + [sym_stop_statement] = ACTIONS(6869), + [sym_beep_statement] = ACTIONS(6869), + [aux_sym_unload_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token2] = ACTIONS(6869), + [aux_sym_def_type_statement_token3] = ACTIONS(6869), + [aux_sym_def_type_statement_token4] = ACTIONS(6869), + [aux_sym_def_type_statement_token5] = ACTIONS(6869), + [aux_sym_def_type_statement_token6] = ACTIONS(6869), + [aux_sym_def_type_statement_token7] = ACTIONS(6869), + [aux_sym_def_type_statement_token8] = ACTIONS(6869), + [aux_sym_def_type_statement_token9] = ACTIONS(6869), + [aux_sym_def_type_statement_token10] = ACTIONS(6869), + [aux_sym_def_type_statement_token11] = ACTIONS(6869), + [aux_sym_def_type_statement_token12] = ACTIONS(6869), + [aux_sym_def_type_statement_token13] = ACTIONS(6869), + [aux_sym_def_type_statement_token14] = ACTIONS(6869), + [aux_sym_call_statement_token1] = ACTIONS(6869), + [sym__ambiguous_call_statement] = ACTIONS(6869), + [aux_sym_addressof_expression_token1] = ACTIONS(6869), + [aux_sym_type_of_expression_token1] = ACTIONS(6869), + [aux_sym_unary_expression_token1] = ACTIONS(6869), + [sym_string_literal] = ACTIONS(6867), + [sym_number_literal] = ACTIONS(6867), + [aux_sym_boolean_literal_token1] = ACTIONS(6869), + [aux_sym_boolean_literal_token2] = ACTIONS(6869), + [sym_nothing_literal] = ACTIONS(6869), + [sym_null_literal] = ACTIONS(6869), + [sym_empty_literal] = ACTIONS(6869), + [sym_date_literal] = ACTIONS(6867), + [anon_sym_POUND] = ACTIONS(6869), + }, + [STATE(2219)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(2220)] = { + [sym_next_variable_list] = STATE(4015), + [sym__assignable_expression] = STATE(3642), + [sym__callable_expression] = STATE(3557), + [sym_call_expression] = STATE(3562), + [sym_member_expression] = STATE(3796), + [sym_qualified_member_expression] = STATE(3720), + [sym_implicit_member_expression] = STATE(3720), + [sym_identifier] = ACTIONS(6871), + [sym_newline] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6828), + [aux_sym_frm_property_statement_token1] = ACTIONS(6873), + [anon_sym_DOT] = ACTIONS(6875), + [anon_sym_BANG] = ACTIONS(6877), + [aux_sym__attribute_identifier_token1] = ACTIONS(6828), + [aux_sym_option_statement_token3] = ACTIONS(6828), + [aux_sym_type_declaration_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6828), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6828), + [aux_sym_enum_declaration_token1] = ACTIONS(6828), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6828), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6828), + [aux_sym_declare_function_statement_token1] = ACTIONS(6828), + [aux_sym_preprocessor_const_token1] = ACTIONS(6828), + [aux_sym__property_get_header_token1] = ACTIONS(6828), + [aux_sym_event_declaration_token1] = ACTIONS(6828), + [sym_static_modifier] = ACTIONS(6828), + [sym__dim_keyword] = ACTIONS(6828), + [sym__redim_keyword] = ACTIONS(6828), + [aux_sym_get_accessor_token1] = ACTIONS(6828), + [aux_sym_set_accessor_token1] = ACTIONS(6828), + [aux_sym_const_declaration_token1] = ACTIONS(6828), + [anon_sym_LPAREN] = ACTIONS(6826), + [aux_sym_as_type_clause_token2] = ACTIONS(6828), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6879), + [aux_sym_visibility_token1] = ACTIONS(6828), + [aux_sym_visibility_token2] = ACTIONS(6828), + [aux_sym_elseif_fragment_token1] = ACTIONS(6828), + [aux_sym_else_fragment_token1] = ACTIONS(6828), + [aux_sym_select_statement_token1] = ACTIONS(6828), + [aux_sym__for_header_token1] = ACTIONS(6828), + [aux_sym_do_statement_token1] = ACTIONS(6828), + [aux_sym_do_condition_token1] = ACTIONS(6828), + [aux_sym_with_statement_token1] = ACTIONS(6828), + [aux_sym_exit_statement_token1] = ACTIONS(6828), + [sym_end_statement] = ACTIONS(6826), + [aux_sym_on_goto_statement_token1] = ACTIONS(6828), + [aux_sym_on_goto_statement_token2] = ACTIONS(6828), + [aux_sym_on_error_statement_token2] = ACTIONS(6828), + [sym__ambiguous_redim_statement] = ACTIONS(6826), + [aux_sym_erase_statement_token1] = ACTIONS(6828), + [aux_sym_open_statement_token1] = ACTIONS(6828), + [aux_sym_file_mode_token2] = ACTIONS(6828), + [aux_sym_file_access_token2] = ACTIONS(6828), + [aux_sym_file_lock_token2] = ACTIONS(6828), + [aux_sym_print_statement_token1] = ACTIONS(6828), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_DASH] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6826), + [aux_sym_close_statement_token1] = ACTIONS(6828), + [aux_sym_put_statement_token1] = ACTIONS(6828), + [aux_sym_unlock_statement_token1] = ACTIONS(6828), + [aux_sym_seek_statement_token1] = ACTIONS(6828), + [sym_reset_statement] = ACTIONS(6828), + [aux_sym_raise_event_statement_token1] = ACTIONS(6828), + [sym_stop_statement] = ACTIONS(6828), + [sym_beep_statement] = ACTIONS(6828), + [aux_sym_unload_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token2] = ACTIONS(6828), + [aux_sym_def_type_statement_token3] = ACTIONS(6828), + [aux_sym_def_type_statement_token4] = ACTIONS(6828), + [aux_sym_def_type_statement_token5] = ACTIONS(6828), + [aux_sym_def_type_statement_token6] = ACTIONS(6828), + [aux_sym_def_type_statement_token7] = ACTIONS(6828), + [aux_sym_def_type_statement_token8] = ACTIONS(6828), + [aux_sym_def_type_statement_token9] = ACTIONS(6828), + [aux_sym_def_type_statement_token10] = ACTIONS(6828), + [aux_sym_def_type_statement_token11] = ACTIONS(6828), + [aux_sym_def_type_statement_token12] = ACTIONS(6828), + [aux_sym_def_type_statement_token13] = ACTIONS(6828), + [aux_sym_def_type_statement_token14] = ACTIONS(6828), + [aux_sym_call_statement_token1] = ACTIONS(6828), + [sym__ambiguous_call_statement] = ACTIONS(6828), + [aux_sym_addressof_expression_token1] = ACTIONS(6828), + [aux_sym_type_of_expression_token1] = ACTIONS(6828), + [aux_sym_unary_expression_token1] = ACTIONS(6828), + [sym_string_literal] = ACTIONS(6826), + [sym_number_literal] = ACTIONS(6826), + [aux_sym_boolean_literal_token1] = ACTIONS(6828), + [aux_sym_boolean_literal_token2] = ACTIONS(6828), + [sym_nothing_literal] = ACTIONS(6828), + [sym_null_literal] = ACTIONS(6828), + [sym_empty_literal] = ACTIONS(6828), + [sym_date_literal] = ACTIONS(6826), + [anon_sym_POUND] = ACTIONS(6828), + }, + [STATE(2221)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(2222)] = { + [sym_identifier] = ACTIONS(5555), + [sym_newline] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(6909), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5555), + [aux_sym_frm_property_statement_token1] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(6881), + [anon_sym_BANG] = ACTIONS(6854), + [aux_sym__attribute_identifier_token1] = ACTIONS(5555), + [aux_sym_option_statement_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5555), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5555), + [aux_sym_preprocessor_const_token1] = ACTIONS(5555), + [sym_static_modifier] = ACTIONS(5555), + [sym__dim_keyword] = ACTIONS(5555), + [sym__redim_keyword] = ACTIONS(5555), + [aux_sym_byval_modifier_token1] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5555), + [aux_sym_set_accessor_token1] = ACTIONS(5555), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5555), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5555), + [aux_sym_visibility_token1] = ACTIONS(5555), + [aux_sym_visibility_token2] = ACTIONS(5555), + [aux_sym_elseif_fragment_token1] = ACTIONS(5555), + [aux_sym_else_fragment_token1] = ACTIONS(5555), + [aux_sym_select_statement_token1] = ACTIONS(5555), + [aux_sym__for_header_token1] = ACTIONS(5555), + [aux_sym_do_statement_token1] = ACTIONS(5555), + [aux_sym_do_condition_token1] = ACTIONS(5555), + [aux_sym_with_statement_token1] = ACTIONS(5555), + [aux_sym_exit_statement_token1] = ACTIONS(5555), + [sym_end_statement] = ACTIONS(4399), + [aux_sym_on_goto_statement_token1] = ACTIONS(5555), + [aux_sym_on_goto_statement_token2] = ACTIONS(5555), + [aux_sym_on_error_statement_token2] = ACTIONS(5555), + [sym__ambiguous_redim_statement] = ACTIONS(4399), + [aux_sym_erase_statement_token1] = ACTIONS(5555), + [aux_sym_open_statement_token1] = ACTIONS(5555), + [aux_sym_file_mode_token2] = ACTIONS(5555), + [aux_sym_file_access_token2] = ACTIONS(5555), + [aux_sym_file_lock_token2] = ACTIONS(5555), + [aux_sym_print_statement_token1] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(5555), + [aux_sym_put_statement_token1] = ACTIONS(5555), + [aux_sym_unlock_statement_token1] = ACTIONS(5555), + [aux_sym_seek_statement_token1] = ACTIONS(5555), + [sym_reset_statement] = ACTIONS(5555), + [aux_sym_raise_event_statement_token1] = ACTIONS(5555), + [sym_stop_statement] = ACTIONS(5555), + [sym_beep_statement] = ACTIONS(5555), + [aux_sym_unload_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token2] = ACTIONS(5555), + [aux_sym_def_type_statement_token3] = ACTIONS(5555), + [aux_sym_def_type_statement_token4] = ACTIONS(5555), + [aux_sym_def_type_statement_token5] = ACTIONS(5555), + [aux_sym_def_type_statement_token6] = ACTIONS(5555), + [aux_sym_def_type_statement_token7] = ACTIONS(5555), + [aux_sym_def_type_statement_token8] = ACTIONS(5555), + [aux_sym_def_type_statement_token9] = ACTIONS(5555), + [aux_sym_def_type_statement_token10] = ACTIONS(5555), + [aux_sym_def_type_statement_token11] = ACTIONS(5555), + [aux_sym_def_type_statement_token12] = ACTIONS(5555), + [aux_sym_def_type_statement_token13] = ACTIONS(5555), + [aux_sym_def_type_statement_token14] = ACTIONS(5555), + [aux_sym_call_statement_token1] = ACTIONS(5555), + [sym__ambiguous_call_statement] = ACTIONS(5555), + [aux_sym_addressof_expression_token1] = ACTIONS(5555), + [aux_sym_type_of_expression_token1] = ACTIONS(5555), + [aux_sym_unary_expression_token1] = ACTIONS(5555), + [sym_string_literal] = ACTIONS(4399), + [sym_number_literal] = ACTIONS(4399), + [aux_sym_boolean_literal_token1] = ACTIONS(5555), + [aux_sym_boolean_literal_token2] = ACTIONS(5555), + [sym_nothing_literal] = ACTIONS(5555), + [sym_null_literal] = ACTIONS(5555), + [sym_empty_literal] = ACTIONS(5555), + [sym_date_literal] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(5555), + }, + [STATE(2223)] = { + [sym_next_variable_list] = STATE(4054), + [sym__assignable_expression] = STATE(3642), + [sym__callable_expression] = STATE(3557), + [sym_call_expression] = STATE(3562), + [sym_member_expression] = STATE(3796), + [sym_qualified_member_expression] = STATE(3720), + [sym_implicit_member_expression] = STATE(3720), + [sym_identifier] = ACTIONS(6871), + [sym_newline] = ACTIONS(6848), + [anon_sym_COLON] = ACTIONS(6848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6850), + [aux_sym_frm_property_statement_token1] = ACTIONS(6873), + [anon_sym_DOT] = ACTIONS(6875), + [anon_sym_BANG] = ACTIONS(6877), + [aux_sym__attribute_identifier_token1] = ACTIONS(6850), + [aux_sym_option_statement_token3] = ACTIONS(6850), + [aux_sym_type_declaration_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6850), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6850), + [aux_sym_enum_declaration_token1] = ACTIONS(6850), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6850), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6850), + [aux_sym_declare_function_statement_token1] = ACTIONS(6850), + [aux_sym_preprocessor_const_token1] = ACTIONS(6850), + [aux_sym__property_get_header_token1] = ACTIONS(6850), + [aux_sym_event_declaration_token1] = ACTIONS(6850), + [sym_static_modifier] = ACTIONS(6850), + [sym__dim_keyword] = ACTIONS(6850), + [sym__redim_keyword] = ACTIONS(6850), + [aux_sym_get_accessor_token1] = ACTIONS(6850), + [aux_sym_set_accessor_token1] = ACTIONS(6850), + [aux_sym_const_declaration_token1] = ACTIONS(6850), + [anon_sym_LPAREN] = ACTIONS(6848), + [aux_sym_as_type_clause_token2] = ACTIONS(6850), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6879), + [aux_sym_visibility_token1] = ACTIONS(6850), + [aux_sym_visibility_token2] = ACTIONS(6850), + [aux_sym_elseif_fragment_token1] = ACTIONS(6850), + [aux_sym_else_fragment_token1] = ACTIONS(6850), + [aux_sym_select_statement_token1] = ACTIONS(6850), + [aux_sym__for_header_token1] = ACTIONS(6850), + [aux_sym_do_statement_token1] = ACTIONS(6850), + [aux_sym_do_condition_token1] = ACTIONS(6850), + [aux_sym_with_statement_token1] = ACTIONS(6850), + [aux_sym_exit_statement_token1] = ACTIONS(6850), + [sym_end_statement] = ACTIONS(6848), + [aux_sym_on_goto_statement_token1] = ACTIONS(6850), + [aux_sym_on_goto_statement_token2] = ACTIONS(6850), + [aux_sym_on_error_statement_token2] = ACTIONS(6850), + [sym__ambiguous_redim_statement] = ACTIONS(6848), + [aux_sym_erase_statement_token1] = ACTIONS(6850), + [aux_sym_open_statement_token1] = ACTIONS(6850), + [aux_sym_file_mode_token2] = ACTIONS(6850), + [aux_sym_file_access_token2] = ACTIONS(6850), + [aux_sym_file_lock_token2] = ACTIONS(6850), + [aux_sym_print_statement_token1] = ACTIONS(6850), + [anon_sym_PLUS] = ACTIONS(6848), + [anon_sym_DASH] = ACTIONS(6850), + [anon_sym_QMARK] = ACTIONS(6848), + [aux_sym_close_statement_token1] = ACTIONS(6850), + [aux_sym_put_statement_token1] = ACTIONS(6850), + [aux_sym_unlock_statement_token1] = ACTIONS(6850), + [aux_sym_seek_statement_token1] = ACTIONS(6850), + [sym_reset_statement] = ACTIONS(6850), + [aux_sym_raise_event_statement_token1] = ACTIONS(6850), + [sym_stop_statement] = ACTIONS(6850), + [sym_beep_statement] = ACTIONS(6850), + [aux_sym_unload_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token2] = ACTIONS(6850), + [aux_sym_def_type_statement_token3] = ACTIONS(6850), + [aux_sym_def_type_statement_token4] = ACTIONS(6850), + [aux_sym_def_type_statement_token5] = ACTIONS(6850), + [aux_sym_def_type_statement_token6] = ACTIONS(6850), + [aux_sym_def_type_statement_token7] = ACTIONS(6850), + [aux_sym_def_type_statement_token8] = ACTIONS(6850), + [aux_sym_def_type_statement_token9] = ACTIONS(6850), + [aux_sym_def_type_statement_token10] = ACTIONS(6850), + [aux_sym_def_type_statement_token11] = ACTIONS(6850), + [aux_sym_def_type_statement_token12] = ACTIONS(6850), + [aux_sym_def_type_statement_token13] = ACTIONS(6850), + [aux_sym_def_type_statement_token14] = ACTIONS(6850), + [aux_sym_call_statement_token1] = ACTIONS(6850), + [sym__ambiguous_call_statement] = ACTIONS(6850), + [aux_sym_addressof_expression_token1] = ACTIONS(6850), + [aux_sym_type_of_expression_token1] = ACTIONS(6850), + [aux_sym_unary_expression_token1] = ACTIONS(6850), + [sym_string_literal] = ACTIONS(6848), + [sym_number_literal] = ACTIONS(6848), + [aux_sym_boolean_literal_token1] = ACTIONS(6850), + [aux_sym_boolean_literal_token2] = ACTIONS(6850), + [sym_nothing_literal] = ACTIONS(6850), + [sym_null_literal] = ACTIONS(6850), + [sym_empty_literal] = ACTIONS(6850), + [sym_date_literal] = ACTIONS(6848), + [anon_sym_POUND] = ACTIONS(6850), + }, + [STATE(2224)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(2225)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2226)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_byval_modifier_token1] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_statement_token2] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(2227)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2232), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(6911), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_statement_token2] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2228)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(6913), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2229)] = { + [sym_argument_list] = STATE(2414), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(6915), + [anon_sym_BANG] = ACTIONS(6917), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(6919), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2230)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2234), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_array_bound_token1] = ACTIONS(4375), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2231)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2232)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2235), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_statement_token2] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2233)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2234)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2234), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(6921), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2235)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2235), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(6924), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_statement_token2] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2236)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_byval_modifier_token1] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_while_statement_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(2237)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_byval_modifier_token1] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_while_statement_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2238)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_byval_modifier_token1] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(5440), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym__for_header_token2] = ACTIONS(5442), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2239)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_byval_modifier_token1] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_while_statement_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(2240)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2241), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(6927), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_while_statement_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2241)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2252), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_while_statement_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2242)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2244), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(6929), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_select_statement_token2] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2243)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_byval_modifier_token1] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_while_statement_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(2244)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_select_statement_token2] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2245)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2246)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2248), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(6931), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2247)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(6933), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_select_statement_token2] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2248)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2253), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token3] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2249)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_byval_modifier_token1] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(2250)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_byval_modifier_token1] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2251)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_byval_modifier_token1] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(2252)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2252), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_while_statement_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2253)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2253), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(6939), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2254)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_byval_modifier_token1] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(2255)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2256)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2257)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2258)] = { + [sym_identifier] = ACTIONS(5775), + [sym_newline] = ACTIONS(5777), + [anon_sym_COLON] = ACTIONS(5777), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5775), + [aux_sym_frm_property_statement_token1] = ACTIONS(5775), + [anon_sym_EQ] = ACTIONS(5777), + [anon_sym_DOT] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5777), + [aux_sym__attribute_identifier_token1] = ACTIONS(5775), + [aux_sym_option_statement_token3] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5775), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5775), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5775), + [aux_sym_preprocessor_const_token1] = ACTIONS(5775), + [sym_static_modifier] = ACTIONS(5775), + [sym__dim_keyword] = ACTIONS(5775), + [sym__redim_keyword] = ACTIONS(5775), + [aux_sym_get_accessor_token1] = ACTIONS(5775), + [aux_sym_set_accessor_token1] = ACTIONS(5775), + [anon_sym_COMMA] = ACTIONS(5777), + [aux_sym_const_declaration_token1] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5777), + [aux_sym_as_type_clause_token2] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(6942), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5775), + [aux_sym_visibility_token1] = ACTIONS(5775), + [aux_sym_visibility_token2] = ACTIONS(5775), + [aux_sym_elseif_fragment_token1] = ACTIONS(5775), + [aux_sym_else_fragment_token1] = ACTIONS(5775), + [aux_sym_select_statement_token1] = ACTIONS(5775), + [aux_sym__for_header_token1] = ACTIONS(5775), + [aux_sym_do_statement_token1] = ACTIONS(5775), + [aux_sym_do_condition_token1] = ACTIONS(5775), + [aux_sym_with_statement_token1] = ACTIONS(5775), + [aux_sym_exit_statement_token1] = ACTIONS(5775), + [sym_end_statement] = ACTIONS(5777), + [aux_sym_on_goto_statement_token1] = ACTIONS(5775), + [aux_sym_on_goto_statement_token2] = ACTIONS(5775), + [aux_sym_on_error_statement_token2] = ACTIONS(5775), + [sym__ambiguous_redim_statement] = ACTIONS(5777), + [aux_sym_erase_statement_token1] = ACTIONS(5775), + [aux_sym_open_statement_token1] = ACTIONS(5775), + [aux_sym_file_mode_token2] = ACTIONS(5775), + [aux_sym_file_access_token2] = ACTIONS(5775), + [aux_sym_file_lock_token2] = ACTIONS(5775), + [aux_sym_print_statement_token1] = ACTIONS(5775), + [anon_sym_CARET] = ACTIONS(6944), + [anon_sym_SLASH] = ACTIONS(6942), + [anon_sym_BSLASH] = ACTIONS(6946), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6948), + [anon_sym_PLUS] = ACTIONS(6950), + [anon_sym_DASH] = ACTIONS(6952), + [anon_sym_AMP] = ACTIONS(6954), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6956), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6958), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6960), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6962), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6964), + [anon_sym_QMARK] = ACTIONS(5777), + [aux_sym_close_statement_token1] = ACTIONS(5775), + [aux_sym_put_statement_token1] = ACTIONS(5775), + [aux_sym_unlock_statement_token1] = ACTIONS(5775), + [aux_sym_seek_statement_token1] = ACTIONS(5775), + [sym_reset_statement] = ACTIONS(5775), + [aux_sym_raise_event_statement_token1] = ACTIONS(5775), + [sym_stop_statement] = ACTIONS(5775), + [sym_beep_statement] = ACTIONS(5775), + [aux_sym_unload_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token2] = ACTIONS(5775), + [aux_sym_def_type_statement_token3] = ACTIONS(5775), + [aux_sym_def_type_statement_token4] = ACTIONS(5775), + [aux_sym_def_type_statement_token5] = ACTIONS(5775), + [aux_sym_def_type_statement_token6] = ACTIONS(5775), + [aux_sym_def_type_statement_token7] = ACTIONS(5775), + [aux_sym_def_type_statement_token8] = ACTIONS(5775), + [aux_sym_def_type_statement_token9] = ACTIONS(5775), + [aux_sym_def_type_statement_token10] = ACTIONS(5775), + [aux_sym_def_type_statement_token11] = ACTIONS(5775), + [aux_sym_def_type_statement_token12] = ACTIONS(5775), + [aux_sym_def_type_statement_token13] = ACTIONS(5775), + [aux_sym_def_type_statement_token14] = ACTIONS(5775), + [aux_sym_call_statement_token1] = ACTIONS(5775), + [sym__ambiguous_call_statement] = ACTIONS(5775), + [aux_sym_addressof_expression_token1] = ACTIONS(5775), + [aux_sym_type_of_expression_token1] = ACTIONS(5775), + [aux_sym_unary_expression_token1] = ACTIONS(5775), + [sym_string_literal] = ACTIONS(5777), + [sym_number_literal] = ACTIONS(5777), + [aux_sym_boolean_literal_token1] = ACTIONS(5775), + [aux_sym_boolean_literal_token2] = ACTIONS(5775), + [sym_nothing_literal] = ACTIONS(5775), + [sym_null_literal] = ACTIONS(5775), + [sym_empty_literal] = ACTIONS(5775), + [sym_date_literal] = ACTIONS(5777), + [anon_sym_POUND] = ACTIONS(5775), + }, + [STATE(2259)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2262), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(6966), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2260)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2261)] = { + [sym_argument_list] = STATE(2403), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_BANG] = ACTIONS(6970), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5544), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2262)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2273), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2263)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2264)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2265)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_byval_modifier_token1] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_select_statement_token2] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(2266)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_byval_modifier_token1] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_select_statement_token2] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2267)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_byval_modifier_token1] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_select_statement_token2] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(2268)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2269)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2270)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2271)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2272)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2273)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2273), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(6972), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2274)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_byval_modifier_token1] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_select_statement_token2] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(2275)] = { + [sym_next_variable_list] = STATE(4285), + [sym__assignable_expression] = STATE(3716), + [sym__callable_expression] = STATE(3750), + [sym_call_expression] = STATE(3812), + [sym_member_expression] = STATE(3888), + [sym_qualified_member_expression] = STATE(4182), + [sym_implicit_member_expression] = STATE(4182), + [sym_identifier] = ACTIONS(6975), + [sym_newline] = ACTIONS(6842), + [anon_sym_COLON] = ACTIONS(6842), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6844), + [aux_sym_frm_property_statement_token1] = ACTIONS(6977), + [anon_sym_DOT] = ACTIONS(6979), + [anon_sym_BANG] = ACTIONS(6981), + [aux_sym__attribute_identifier_token1] = ACTIONS(6844), + [aux_sym_option_statement_token3] = ACTIONS(6844), + [aux_sym_type_declaration_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6844), + [aux_sym_enum_declaration_token1] = ACTIONS(6844), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6844), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6844), + [aux_sym_declare_function_statement_token1] = ACTIONS(6844), + [aux_sym_preprocessor_const_token1] = ACTIONS(6844), + [aux_sym__property_get_header_token1] = ACTIONS(6844), + [aux_sym_event_declaration_token1] = ACTIONS(6844), + [sym_static_modifier] = ACTIONS(6844), + [sym__dim_keyword] = ACTIONS(6844), + [sym__redim_keyword] = ACTIONS(6844), + [aux_sym_get_accessor_token1] = ACTIONS(6844), + [aux_sym_set_accessor_token1] = ACTIONS(6844), + [aux_sym_const_declaration_token1] = ACTIONS(6844), + [anon_sym_LPAREN] = ACTIONS(6842), + [aux_sym_as_type_clause_token2] = ACTIONS(6844), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6983), + [aux_sym_visibility_token1] = ACTIONS(6844), + [aux_sym_visibility_token2] = ACTIONS(6844), + [aux_sym_elseif_fragment_token1] = ACTIONS(6844), + [aux_sym_else_fragment_token1] = ACTIONS(6844), + [aux_sym_select_statement_token1] = ACTIONS(6844), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6844), + [aux_sym__for_header_token1] = ACTIONS(6844), + [aux_sym_do_statement_token1] = ACTIONS(6844), + [aux_sym_do_condition_token1] = ACTIONS(6844), + [aux_sym_with_statement_token1] = ACTIONS(6844), + [aux_sym_exit_statement_token1] = ACTIONS(6844), + [sym_end_statement] = ACTIONS(6842), + [aux_sym_on_goto_statement_token1] = ACTIONS(6844), + [aux_sym_on_goto_statement_token2] = ACTIONS(6844), + [aux_sym_on_error_statement_token2] = ACTIONS(6844), + [sym__ambiguous_redim_statement] = ACTIONS(6842), + [aux_sym_erase_statement_token1] = ACTIONS(6844), + [aux_sym_open_statement_token1] = ACTIONS(6844), + [aux_sym_file_mode_token2] = ACTIONS(6844), + [aux_sym_file_access_token2] = ACTIONS(6844), + [aux_sym_file_lock_token2] = ACTIONS(6844), + [aux_sym_print_statement_token1] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6842), + [aux_sym_close_statement_token1] = ACTIONS(6844), + [aux_sym_put_statement_token1] = ACTIONS(6844), + [aux_sym_unlock_statement_token1] = ACTIONS(6844), + [aux_sym_seek_statement_token1] = ACTIONS(6844), + [sym_reset_statement] = ACTIONS(6844), + [aux_sym_raise_event_statement_token1] = ACTIONS(6844), + [sym_stop_statement] = ACTIONS(6844), + [sym_beep_statement] = ACTIONS(6844), + [aux_sym_unload_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token2] = ACTIONS(6844), + [aux_sym_def_type_statement_token3] = ACTIONS(6844), + [aux_sym_def_type_statement_token4] = ACTIONS(6844), + [aux_sym_def_type_statement_token5] = ACTIONS(6844), + [aux_sym_def_type_statement_token6] = ACTIONS(6844), + [aux_sym_def_type_statement_token7] = ACTIONS(6844), + [aux_sym_def_type_statement_token8] = ACTIONS(6844), + [aux_sym_def_type_statement_token9] = ACTIONS(6844), + [aux_sym_def_type_statement_token10] = ACTIONS(6844), + [aux_sym_def_type_statement_token11] = ACTIONS(6844), + [aux_sym_def_type_statement_token12] = ACTIONS(6844), + [aux_sym_def_type_statement_token13] = ACTIONS(6844), + [aux_sym_def_type_statement_token14] = ACTIONS(6844), + [aux_sym_call_statement_token1] = ACTIONS(6844), + [sym__ambiguous_call_statement] = ACTIONS(6844), + [aux_sym_addressof_expression_token1] = ACTIONS(6844), + [aux_sym_type_of_expression_token1] = ACTIONS(6844), + [aux_sym_unary_expression_token1] = ACTIONS(6844), + [sym_string_literal] = ACTIONS(6842), + [sym_number_literal] = ACTIONS(6842), + [aux_sym_boolean_literal_token1] = ACTIONS(6844), + [aux_sym_boolean_literal_token2] = ACTIONS(6844), + [sym_nothing_literal] = ACTIONS(6844), + [sym_null_literal] = ACTIONS(6844), + [sym_empty_literal] = ACTIONS(6844), + [sym_date_literal] = ACTIONS(6842), + [anon_sym_POUND] = ACTIONS(6844), + }, + [STATE(2276)] = { + [sym_next_variable_list] = STATE(4289), + [sym__assignable_expression] = STATE(3716), + [sym__callable_expression] = STATE(3750), + [sym_call_expression] = STATE(3812), + [sym_member_expression] = STATE(3888), + [sym_qualified_member_expression] = STATE(4182), + [sym_implicit_member_expression] = STATE(4182), + [sym_identifier] = ACTIONS(6975), + [sym_newline] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(6856), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6858), + [aux_sym_frm_property_statement_token1] = ACTIONS(6977), + [anon_sym_DOT] = ACTIONS(6979), + [anon_sym_BANG] = ACTIONS(6981), + [aux_sym__attribute_identifier_token1] = ACTIONS(6858), + [aux_sym_option_statement_token3] = ACTIONS(6858), + [aux_sym_type_declaration_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6858), + [aux_sym_enum_declaration_token1] = ACTIONS(6858), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6858), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6858), + [aux_sym_declare_function_statement_token1] = ACTIONS(6858), + [aux_sym_preprocessor_const_token1] = ACTIONS(6858), + [aux_sym__property_get_header_token1] = ACTIONS(6858), + [aux_sym_event_declaration_token1] = ACTIONS(6858), + [sym_static_modifier] = ACTIONS(6858), + [sym__dim_keyword] = ACTIONS(6858), + [sym__redim_keyword] = ACTIONS(6858), + [aux_sym_get_accessor_token1] = ACTIONS(6858), + [aux_sym_set_accessor_token1] = ACTIONS(6858), + [aux_sym_const_declaration_token1] = ACTIONS(6858), + [anon_sym_LPAREN] = ACTIONS(6856), + [aux_sym_as_type_clause_token2] = ACTIONS(6858), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6983), + [aux_sym_visibility_token1] = ACTIONS(6858), + [aux_sym_visibility_token2] = ACTIONS(6858), + [aux_sym_elseif_fragment_token1] = ACTIONS(6858), + [aux_sym_else_fragment_token1] = ACTIONS(6858), + [aux_sym_select_statement_token1] = ACTIONS(6858), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6858), + [aux_sym__for_header_token1] = ACTIONS(6858), + [aux_sym_do_statement_token1] = ACTIONS(6858), + [aux_sym_do_condition_token1] = ACTIONS(6858), + [aux_sym_with_statement_token1] = ACTIONS(6858), + [aux_sym_exit_statement_token1] = ACTIONS(6858), + [sym_end_statement] = ACTIONS(6856), + [aux_sym_on_goto_statement_token1] = ACTIONS(6858), + [aux_sym_on_goto_statement_token2] = ACTIONS(6858), + [aux_sym_on_error_statement_token2] = ACTIONS(6858), + [sym__ambiguous_redim_statement] = ACTIONS(6856), + [aux_sym_erase_statement_token1] = ACTIONS(6858), + [aux_sym_open_statement_token1] = ACTIONS(6858), + [aux_sym_file_mode_token2] = ACTIONS(6858), + [aux_sym_file_access_token2] = ACTIONS(6858), + [aux_sym_file_lock_token2] = ACTIONS(6858), + [aux_sym_print_statement_token1] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6856), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_QMARK] = ACTIONS(6856), + [aux_sym_close_statement_token1] = ACTIONS(6858), + [aux_sym_put_statement_token1] = ACTIONS(6858), + [aux_sym_unlock_statement_token1] = ACTIONS(6858), + [aux_sym_seek_statement_token1] = ACTIONS(6858), + [sym_reset_statement] = ACTIONS(6858), + [aux_sym_raise_event_statement_token1] = ACTIONS(6858), + [sym_stop_statement] = ACTIONS(6858), + [sym_beep_statement] = ACTIONS(6858), + [aux_sym_unload_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token2] = ACTIONS(6858), + [aux_sym_def_type_statement_token3] = ACTIONS(6858), + [aux_sym_def_type_statement_token4] = ACTIONS(6858), + [aux_sym_def_type_statement_token5] = ACTIONS(6858), + [aux_sym_def_type_statement_token6] = ACTIONS(6858), + [aux_sym_def_type_statement_token7] = ACTIONS(6858), + [aux_sym_def_type_statement_token8] = ACTIONS(6858), + [aux_sym_def_type_statement_token9] = ACTIONS(6858), + [aux_sym_def_type_statement_token10] = ACTIONS(6858), + [aux_sym_def_type_statement_token11] = ACTIONS(6858), + [aux_sym_def_type_statement_token12] = ACTIONS(6858), + [aux_sym_def_type_statement_token13] = ACTIONS(6858), + [aux_sym_def_type_statement_token14] = ACTIONS(6858), + [aux_sym_call_statement_token1] = ACTIONS(6858), + [sym__ambiguous_call_statement] = ACTIONS(6858), + [aux_sym_addressof_expression_token1] = ACTIONS(6858), + [aux_sym_type_of_expression_token1] = ACTIONS(6858), + [aux_sym_unary_expression_token1] = ACTIONS(6858), + [sym_string_literal] = ACTIONS(6856), + [sym_number_literal] = ACTIONS(6856), + [aux_sym_boolean_literal_token1] = ACTIONS(6858), + [aux_sym_boolean_literal_token2] = ACTIONS(6858), + [sym_nothing_literal] = ACTIONS(6858), + [sym_null_literal] = ACTIONS(6858), + [sym_empty_literal] = ACTIONS(6858), + [sym_date_literal] = ACTIONS(6856), + [anon_sym_POUND] = ACTIONS(6858), + }, + [STATE(2277)] = { + [sym_argument_list] = STATE(2389), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6985), + [anon_sym_BANG] = ACTIONS(6987), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5619), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2278)] = { + [sym_next_variable_list] = STATE(4302), + [sym__assignable_expression] = STATE(3716), + [sym__callable_expression] = STATE(3750), + [sym_call_expression] = STATE(3812), + [sym_member_expression] = STATE(3888), + [sym_qualified_member_expression] = STATE(4182), + [sym_implicit_member_expression] = STATE(4182), + [sym_identifier] = ACTIONS(6975), + [sym_newline] = ACTIONS(6867), + [anon_sym_COLON] = ACTIONS(6867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6869), + [aux_sym_frm_property_statement_token1] = ACTIONS(6977), + [anon_sym_DOT] = ACTIONS(6979), + [anon_sym_BANG] = ACTIONS(6981), + [aux_sym__attribute_identifier_token1] = ACTIONS(6869), + [aux_sym_option_statement_token3] = ACTIONS(6869), + [aux_sym_type_declaration_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6869), + [aux_sym_enum_declaration_token1] = ACTIONS(6869), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6869), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6869), + [aux_sym_declare_function_statement_token1] = ACTIONS(6869), + [aux_sym_preprocessor_const_token1] = ACTIONS(6869), + [aux_sym__property_get_header_token1] = ACTIONS(6869), + [aux_sym_event_declaration_token1] = ACTIONS(6869), + [sym_static_modifier] = ACTIONS(6869), + [sym__dim_keyword] = ACTIONS(6869), + [sym__redim_keyword] = ACTIONS(6869), + [aux_sym_get_accessor_token1] = ACTIONS(6869), + [aux_sym_set_accessor_token1] = ACTIONS(6869), + [aux_sym_const_declaration_token1] = ACTIONS(6869), + [anon_sym_LPAREN] = ACTIONS(6867), + [aux_sym_as_type_clause_token2] = ACTIONS(6869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6983), + [aux_sym_visibility_token1] = ACTIONS(6869), + [aux_sym_visibility_token2] = ACTIONS(6869), + [aux_sym_elseif_fragment_token1] = ACTIONS(6869), + [aux_sym_else_fragment_token1] = ACTIONS(6869), + [aux_sym_select_statement_token1] = ACTIONS(6869), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6869), + [aux_sym__for_header_token1] = ACTIONS(6869), + [aux_sym_do_statement_token1] = ACTIONS(6869), + [aux_sym_do_condition_token1] = ACTIONS(6869), + [aux_sym_with_statement_token1] = ACTIONS(6869), + [aux_sym_exit_statement_token1] = ACTIONS(6869), + [sym_end_statement] = ACTIONS(6867), + [aux_sym_on_goto_statement_token1] = ACTIONS(6869), + [aux_sym_on_goto_statement_token2] = ACTIONS(6869), + [aux_sym_on_error_statement_token2] = ACTIONS(6869), + [sym__ambiguous_redim_statement] = ACTIONS(6867), + [aux_sym_erase_statement_token1] = ACTIONS(6869), + [aux_sym_open_statement_token1] = ACTIONS(6869), + [aux_sym_file_mode_token2] = ACTIONS(6869), + [aux_sym_file_access_token2] = ACTIONS(6869), + [aux_sym_file_lock_token2] = ACTIONS(6869), + [aux_sym_print_statement_token1] = ACTIONS(6869), + [anon_sym_PLUS] = ACTIONS(6867), + [anon_sym_DASH] = ACTIONS(6869), + [anon_sym_QMARK] = ACTIONS(6867), + [aux_sym_close_statement_token1] = ACTIONS(6869), + [aux_sym_put_statement_token1] = ACTIONS(6869), + [aux_sym_unlock_statement_token1] = ACTIONS(6869), + [aux_sym_seek_statement_token1] = ACTIONS(6869), + [sym_reset_statement] = ACTIONS(6869), + [aux_sym_raise_event_statement_token1] = ACTIONS(6869), + [sym_stop_statement] = ACTIONS(6869), + [sym_beep_statement] = ACTIONS(6869), + [aux_sym_unload_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token2] = ACTIONS(6869), + [aux_sym_def_type_statement_token3] = ACTIONS(6869), + [aux_sym_def_type_statement_token4] = ACTIONS(6869), + [aux_sym_def_type_statement_token5] = ACTIONS(6869), + [aux_sym_def_type_statement_token6] = ACTIONS(6869), + [aux_sym_def_type_statement_token7] = ACTIONS(6869), + [aux_sym_def_type_statement_token8] = ACTIONS(6869), + [aux_sym_def_type_statement_token9] = ACTIONS(6869), + [aux_sym_def_type_statement_token10] = ACTIONS(6869), + [aux_sym_def_type_statement_token11] = ACTIONS(6869), + [aux_sym_def_type_statement_token12] = ACTIONS(6869), + [aux_sym_def_type_statement_token13] = ACTIONS(6869), + [aux_sym_def_type_statement_token14] = ACTIONS(6869), + [aux_sym_call_statement_token1] = ACTIONS(6869), + [sym__ambiguous_call_statement] = ACTIONS(6869), + [aux_sym_addressof_expression_token1] = ACTIONS(6869), + [aux_sym_type_of_expression_token1] = ACTIONS(6869), + [aux_sym_unary_expression_token1] = ACTIONS(6869), + [sym_string_literal] = ACTIONS(6867), + [sym_number_literal] = ACTIONS(6867), + [aux_sym_boolean_literal_token1] = ACTIONS(6869), + [aux_sym_boolean_literal_token2] = ACTIONS(6869), + [sym_nothing_literal] = ACTIONS(6869), + [sym_null_literal] = ACTIONS(6869), + [sym_empty_literal] = ACTIONS(6869), + [sym_date_literal] = ACTIONS(6867), + [anon_sym_POUND] = ACTIONS(6869), + }, + [STATE(2279)] = { + [sym_next_variable_list] = STATE(4307), + [sym__assignable_expression] = STATE(3716), + [sym__callable_expression] = STATE(3750), + [sym_call_expression] = STATE(3812), + [sym_member_expression] = STATE(3888), + [sym_qualified_member_expression] = STATE(4182), + [sym_implicit_member_expression] = STATE(4182), + [sym_identifier] = ACTIONS(6975), + [sym_newline] = ACTIONS(6810), + [anon_sym_COLON] = ACTIONS(6810), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6812), + [aux_sym_frm_property_statement_token1] = ACTIONS(6977), + [anon_sym_DOT] = ACTIONS(6979), + [anon_sym_BANG] = ACTIONS(6981), + [aux_sym__attribute_identifier_token1] = ACTIONS(6812), + [aux_sym_option_statement_token3] = ACTIONS(6812), + [aux_sym_type_declaration_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6812), + [aux_sym_enum_declaration_token1] = ACTIONS(6812), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6812), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6812), + [aux_sym_declare_function_statement_token1] = ACTIONS(6812), + [aux_sym_preprocessor_const_token1] = ACTIONS(6812), + [aux_sym__property_get_header_token1] = ACTIONS(6812), + [aux_sym_event_declaration_token1] = ACTIONS(6812), + [sym_static_modifier] = ACTIONS(6812), + [sym__dim_keyword] = ACTIONS(6812), + [sym__redim_keyword] = ACTIONS(6812), + [aux_sym_get_accessor_token1] = ACTIONS(6812), + [aux_sym_set_accessor_token1] = ACTIONS(6812), + [aux_sym_const_declaration_token1] = ACTIONS(6812), + [anon_sym_LPAREN] = ACTIONS(6810), + [aux_sym_as_type_clause_token2] = ACTIONS(6812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6983), + [aux_sym_visibility_token1] = ACTIONS(6812), + [aux_sym_visibility_token2] = ACTIONS(6812), + [aux_sym_elseif_fragment_token1] = ACTIONS(6812), + [aux_sym_else_fragment_token1] = ACTIONS(6812), + [aux_sym_select_statement_token1] = ACTIONS(6812), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6812), + [aux_sym__for_header_token1] = ACTIONS(6812), + [aux_sym_do_statement_token1] = ACTIONS(6812), + [aux_sym_do_condition_token1] = ACTIONS(6812), + [aux_sym_with_statement_token1] = ACTIONS(6812), + [aux_sym_exit_statement_token1] = ACTIONS(6812), + [sym_end_statement] = ACTIONS(6810), + [aux_sym_on_goto_statement_token1] = ACTIONS(6812), + [aux_sym_on_goto_statement_token2] = ACTIONS(6812), + [aux_sym_on_error_statement_token2] = ACTIONS(6812), + [sym__ambiguous_redim_statement] = ACTIONS(6810), + [aux_sym_erase_statement_token1] = ACTIONS(6812), + [aux_sym_open_statement_token1] = ACTIONS(6812), + [aux_sym_file_mode_token2] = ACTIONS(6812), + [aux_sym_file_access_token2] = ACTIONS(6812), + [aux_sym_file_lock_token2] = ACTIONS(6812), + [aux_sym_print_statement_token1] = ACTIONS(6812), + [anon_sym_PLUS] = ACTIONS(6810), + [anon_sym_DASH] = ACTIONS(6812), + [anon_sym_QMARK] = ACTIONS(6810), + [aux_sym_close_statement_token1] = ACTIONS(6812), + [aux_sym_put_statement_token1] = ACTIONS(6812), + [aux_sym_unlock_statement_token1] = ACTIONS(6812), + [aux_sym_seek_statement_token1] = ACTIONS(6812), + [sym_reset_statement] = ACTIONS(6812), + [aux_sym_raise_event_statement_token1] = ACTIONS(6812), + [sym_stop_statement] = ACTIONS(6812), + [sym_beep_statement] = ACTIONS(6812), + [aux_sym_unload_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token2] = ACTIONS(6812), + [aux_sym_def_type_statement_token3] = ACTIONS(6812), + [aux_sym_def_type_statement_token4] = ACTIONS(6812), + [aux_sym_def_type_statement_token5] = ACTIONS(6812), + [aux_sym_def_type_statement_token6] = ACTIONS(6812), + [aux_sym_def_type_statement_token7] = ACTIONS(6812), + [aux_sym_def_type_statement_token8] = ACTIONS(6812), + [aux_sym_def_type_statement_token9] = ACTIONS(6812), + [aux_sym_def_type_statement_token10] = ACTIONS(6812), + [aux_sym_def_type_statement_token11] = ACTIONS(6812), + [aux_sym_def_type_statement_token12] = ACTIONS(6812), + [aux_sym_def_type_statement_token13] = ACTIONS(6812), + [aux_sym_def_type_statement_token14] = ACTIONS(6812), + [aux_sym_call_statement_token1] = ACTIONS(6812), + [sym__ambiguous_call_statement] = ACTIONS(6812), + [aux_sym_addressof_expression_token1] = ACTIONS(6812), + [aux_sym_type_of_expression_token1] = ACTIONS(6812), + [aux_sym_unary_expression_token1] = ACTIONS(6812), + [sym_string_literal] = ACTIONS(6810), + [sym_number_literal] = ACTIONS(6810), + [aux_sym_boolean_literal_token1] = ACTIONS(6812), + [aux_sym_boolean_literal_token2] = ACTIONS(6812), + [sym_nothing_literal] = ACTIONS(6812), + [sym_null_literal] = ACTIONS(6812), + [sym_empty_literal] = ACTIONS(6812), + [sym_date_literal] = ACTIONS(6810), + [anon_sym_POUND] = ACTIONS(6812), + }, + [STATE(2280)] = { + [sym_next_variable_list] = STATE(4308), + [sym__assignable_expression] = STATE(3716), + [sym__callable_expression] = STATE(3750), + [sym_call_expression] = STATE(3812), + [sym_member_expression] = STATE(3888), + [sym_qualified_member_expression] = STATE(4182), + [sym_implicit_member_expression] = STATE(4182), + [sym_identifier] = ACTIONS(6975), + [sym_newline] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6828), + [aux_sym_frm_property_statement_token1] = ACTIONS(6977), + [anon_sym_DOT] = ACTIONS(6979), + [anon_sym_BANG] = ACTIONS(6981), + [aux_sym__attribute_identifier_token1] = ACTIONS(6828), + [aux_sym_option_statement_token3] = ACTIONS(6828), + [aux_sym_type_declaration_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6828), + [aux_sym_enum_declaration_token1] = ACTIONS(6828), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6828), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6828), + [aux_sym_declare_function_statement_token1] = ACTIONS(6828), + [aux_sym_preprocessor_const_token1] = ACTIONS(6828), + [aux_sym__property_get_header_token1] = ACTIONS(6828), + [aux_sym_event_declaration_token1] = ACTIONS(6828), + [sym_static_modifier] = ACTIONS(6828), + [sym__dim_keyword] = ACTIONS(6828), + [sym__redim_keyword] = ACTIONS(6828), + [aux_sym_get_accessor_token1] = ACTIONS(6828), + [aux_sym_set_accessor_token1] = ACTIONS(6828), + [aux_sym_const_declaration_token1] = ACTIONS(6828), + [anon_sym_LPAREN] = ACTIONS(6826), + [aux_sym_as_type_clause_token2] = ACTIONS(6828), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6983), + [aux_sym_visibility_token1] = ACTIONS(6828), + [aux_sym_visibility_token2] = ACTIONS(6828), + [aux_sym_elseif_fragment_token1] = ACTIONS(6828), + [aux_sym_else_fragment_token1] = ACTIONS(6828), + [aux_sym_select_statement_token1] = ACTIONS(6828), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6828), + [aux_sym__for_header_token1] = ACTIONS(6828), + [aux_sym_do_statement_token1] = ACTIONS(6828), + [aux_sym_do_condition_token1] = ACTIONS(6828), + [aux_sym_with_statement_token1] = ACTIONS(6828), + [aux_sym_exit_statement_token1] = ACTIONS(6828), + [sym_end_statement] = ACTIONS(6826), + [aux_sym_on_goto_statement_token1] = ACTIONS(6828), + [aux_sym_on_goto_statement_token2] = ACTIONS(6828), + [aux_sym_on_error_statement_token2] = ACTIONS(6828), + [sym__ambiguous_redim_statement] = ACTIONS(6826), + [aux_sym_erase_statement_token1] = ACTIONS(6828), + [aux_sym_open_statement_token1] = ACTIONS(6828), + [aux_sym_file_mode_token2] = ACTIONS(6828), + [aux_sym_file_access_token2] = ACTIONS(6828), + [aux_sym_file_lock_token2] = ACTIONS(6828), + [aux_sym_print_statement_token1] = ACTIONS(6828), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_DASH] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6826), + [aux_sym_close_statement_token1] = ACTIONS(6828), + [aux_sym_put_statement_token1] = ACTIONS(6828), + [aux_sym_unlock_statement_token1] = ACTIONS(6828), + [aux_sym_seek_statement_token1] = ACTIONS(6828), + [sym_reset_statement] = ACTIONS(6828), + [aux_sym_raise_event_statement_token1] = ACTIONS(6828), + [sym_stop_statement] = ACTIONS(6828), + [sym_beep_statement] = ACTIONS(6828), + [aux_sym_unload_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token2] = ACTIONS(6828), + [aux_sym_def_type_statement_token3] = ACTIONS(6828), + [aux_sym_def_type_statement_token4] = ACTIONS(6828), + [aux_sym_def_type_statement_token5] = ACTIONS(6828), + [aux_sym_def_type_statement_token6] = ACTIONS(6828), + [aux_sym_def_type_statement_token7] = ACTIONS(6828), + [aux_sym_def_type_statement_token8] = ACTIONS(6828), + [aux_sym_def_type_statement_token9] = ACTIONS(6828), + [aux_sym_def_type_statement_token10] = ACTIONS(6828), + [aux_sym_def_type_statement_token11] = ACTIONS(6828), + [aux_sym_def_type_statement_token12] = ACTIONS(6828), + [aux_sym_def_type_statement_token13] = ACTIONS(6828), + [aux_sym_def_type_statement_token14] = ACTIONS(6828), + [aux_sym_call_statement_token1] = ACTIONS(6828), + [sym__ambiguous_call_statement] = ACTIONS(6828), + [aux_sym_addressof_expression_token1] = ACTIONS(6828), + [aux_sym_type_of_expression_token1] = ACTIONS(6828), + [aux_sym_unary_expression_token1] = ACTIONS(6828), + [sym_string_literal] = ACTIONS(6826), + [sym_number_literal] = ACTIONS(6826), + [aux_sym_boolean_literal_token1] = ACTIONS(6828), + [aux_sym_boolean_literal_token2] = ACTIONS(6828), + [sym_nothing_literal] = ACTIONS(6828), + [sym_null_literal] = ACTIONS(6828), + [sym_empty_literal] = ACTIONS(6828), + [sym_date_literal] = ACTIONS(6826), + [anon_sym_POUND] = ACTIONS(6828), + }, + [STATE(2281)] = { + [sym_next_variable_list] = STATE(4204), + [sym__assignable_expression] = STATE(3716), + [sym__callable_expression] = STATE(3750), + [sym_call_expression] = STATE(3812), + [sym_member_expression] = STATE(3888), + [sym_qualified_member_expression] = STATE(4182), + [sym_implicit_member_expression] = STATE(4182), + [sym_identifier] = ACTIONS(6975), + [sym_newline] = ACTIONS(6863), + [anon_sym_COLON] = ACTIONS(6863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6865), + [aux_sym_frm_property_statement_token1] = ACTIONS(6977), + [anon_sym_DOT] = ACTIONS(6979), + [anon_sym_BANG] = ACTIONS(6981), + [aux_sym__attribute_identifier_token1] = ACTIONS(6865), + [aux_sym_option_statement_token3] = ACTIONS(6865), + [aux_sym_type_declaration_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6865), + [aux_sym_enum_declaration_token1] = ACTIONS(6865), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6865), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6865), + [aux_sym_declare_function_statement_token1] = ACTIONS(6865), + [aux_sym_preprocessor_const_token1] = ACTIONS(6865), + [aux_sym__property_get_header_token1] = ACTIONS(6865), + [aux_sym_event_declaration_token1] = ACTIONS(6865), + [sym_static_modifier] = ACTIONS(6865), + [sym__dim_keyword] = ACTIONS(6865), + [sym__redim_keyword] = ACTIONS(6865), + [aux_sym_get_accessor_token1] = ACTIONS(6865), + [aux_sym_set_accessor_token1] = ACTIONS(6865), + [aux_sym_const_declaration_token1] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6863), + [aux_sym_as_type_clause_token2] = ACTIONS(6865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6983), + [aux_sym_visibility_token1] = ACTIONS(6865), + [aux_sym_visibility_token2] = ACTIONS(6865), + [aux_sym_elseif_fragment_token1] = ACTIONS(6865), + [aux_sym_else_fragment_token1] = ACTIONS(6865), + [aux_sym_select_statement_token1] = ACTIONS(6865), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6865), + [aux_sym__for_header_token1] = ACTIONS(6865), + [aux_sym_do_statement_token1] = ACTIONS(6865), + [aux_sym_do_condition_token1] = ACTIONS(6865), + [aux_sym_with_statement_token1] = ACTIONS(6865), + [aux_sym_exit_statement_token1] = ACTIONS(6865), + [sym_end_statement] = ACTIONS(6863), + [aux_sym_on_goto_statement_token1] = ACTIONS(6865), + [aux_sym_on_goto_statement_token2] = ACTIONS(6865), + [aux_sym_on_error_statement_token2] = ACTIONS(6865), + [sym__ambiguous_redim_statement] = ACTIONS(6863), + [aux_sym_erase_statement_token1] = ACTIONS(6865), + [aux_sym_open_statement_token1] = ACTIONS(6865), + [aux_sym_file_mode_token2] = ACTIONS(6865), + [aux_sym_file_access_token2] = ACTIONS(6865), + [aux_sym_file_lock_token2] = ACTIONS(6865), + [aux_sym_print_statement_token1] = ACTIONS(6865), + [anon_sym_PLUS] = ACTIONS(6863), + [anon_sym_DASH] = ACTIONS(6865), + [anon_sym_QMARK] = ACTIONS(6863), + [aux_sym_close_statement_token1] = ACTIONS(6865), + [aux_sym_put_statement_token1] = ACTIONS(6865), + [aux_sym_unlock_statement_token1] = ACTIONS(6865), + [aux_sym_seek_statement_token1] = ACTIONS(6865), + [sym_reset_statement] = ACTIONS(6865), + [aux_sym_raise_event_statement_token1] = ACTIONS(6865), + [sym_stop_statement] = ACTIONS(6865), + [sym_beep_statement] = ACTIONS(6865), + [aux_sym_unload_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token2] = ACTIONS(6865), + [aux_sym_def_type_statement_token3] = ACTIONS(6865), + [aux_sym_def_type_statement_token4] = ACTIONS(6865), + [aux_sym_def_type_statement_token5] = ACTIONS(6865), + [aux_sym_def_type_statement_token6] = ACTIONS(6865), + [aux_sym_def_type_statement_token7] = ACTIONS(6865), + [aux_sym_def_type_statement_token8] = ACTIONS(6865), + [aux_sym_def_type_statement_token9] = ACTIONS(6865), + [aux_sym_def_type_statement_token10] = ACTIONS(6865), + [aux_sym_def_type_statement_token11] = ACTIONS(6865), + [aux_sym_def_type_statement_token12] = ACTIONS(6865), + [aux_sym_def_type_statement_token13] = ACTIONS(6865), + [aux_sym_def_type_statement_token14] = ACTIONS(6865), + [aux_sym_call_statement_token1] = ACTIONS(6865), + [sym__ambiguous_call_statement] = ACTIONS(6865), + [aux_sym_addressof_expression_token1] = ACTIONS(6865), + [aux_sym_type_of_expression_token1] = ACTIONS(6865), + [aux_sym_unary_expression_token1] = ACTIONS(6865), + [sym_string_literal] = ACTIONS(6863), + [sym_number_literal] = ACTIONS(6863), + [aux_sym_boolean_literal_token1] = ACTIONS(6865), + [aux_sym_boolean_literal_token2] = ACTIONS(6865), + [sym_nothing_literal] = ACTIONS(6865), + [sym_null_literal] = ACTIONS(6865), + [sym_empty_literal] = ACTIONS(6865), + [sym_date_literal] = ACTIONS(6863), + [anon_sym_POUND] = ACTIONS(6865), + }, + [STATE(2282)] = { + [sym_next_variable_list] = STATE(4209), + [sym__assignable_expression] = STATE(3716), + [sym__callable_expression] = STATE(3750), + [sym_call_expression] = STATE(3812), + [sym_member_expression] = STATE(3888), + [sym_qualified_member_expression] = STATE(4182), + [sym_implicit_member_expression] = STATE(4182), + [sym_identifier] = ACTIONS(6975), + [sym_newline] = ACTIONS(6848), + [anon_sym_COLON] = ACTIONS(6848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6850), + [aux_sym_frm_property_statement_token1] = ACTIONS(6977), + [anon_sym_DOT] = ACTIONS(6979), + [anon_sym_BANG] = ACTIONS(6981), + [aux_sym__attribute_identifier_token1] = ACTIONS(6850), + [aux_sym_option_statement_token3] = ACTIONS(6850), + [aux_sym_type_declaration_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6850), + [aux_sym_enum_declaration_token1] = ACTIONS(6850), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6850), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6850), + [aux_sym_declare_function_statement_token1] = ACTIONS(6850), + [aux_sym_preprocessor_const_token1] = ACTIONS(6850), + [aux_sym__property_get_header_token1] = ACTIONS(6850), + [aux_sym_event_declaration_token1] = ACTIONS(6850), + [sym_static_modifier] = ACTIONS(6850), + [sym__dim_keyword] = ACTIONS(6850), + [sym__redim_keyword] = ACTIONS(6850), + [aux_sym_get_accessor_token1] = ACTIONS(6850), + [aux_sym_set_accessor_token1] = ACTIONS(6850), + [aux_sym_const_declaration_token1] = ACTIONS(6850), + [anon_sym_LPAREN] = ACTIONS(6848), + [aux_sym_as_type_clause_token2] = ACTIONS(6850), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6983), + [aux_sym_visibility_token1] = ACTIONS(6850), + [aux_sym_visibility_token2] = ACTIONS(6850), + [aux_sym_elseif_fragment_token1] = ACTIONS(6850), + [aux_sym_else_fragment_token1] = ACTIONS(6850), + [aux_sym_select_statement_token1] = ACTIONS(6850), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6850), + [aux_sym__for_header_token1] = ACTIONS(6850), + [aux_sym_do_statement_token1] = ACTIONS(6850), + [aux_sym_do_condition_token1] = ACTIONS(6850), + [aux_sym_with_statement_token1] = ACTIONS(6850), + [aux_sym_exit_statement_token1] = ACTIONS(6850), + [sym_end_statement] = ACTIONS(6848), + [aux_sym_on_goto_statement_token1] = ACTIONS(6850), + [aux_sym_on_goto_statement_token2] = ACTIONS(6850), + [aux_sym_on_error_statement_token2] = ACTIONS(6850), + [sym__ambiguous_redim_statement] = ACTIONS(6848), + [aux_sym_erase_statement_token1] = ACTIONS(6850), + [aux_sym_open_statement_token1] = ACTIONS(6850), + [aux_sym_file_mode_token2] = ACTIONS(6850), + [aux_sym_file_access_token2] = ACTIONS(6850), + [aux_sym_file_lock_token2] = ACTIONS(6850), + [aux_sym_print_statement_token1] = ACTIONS(6850), + [anon_sym_PLUS] = ACTIONS(6848), + [anon_sym_DASH] = ACTIONS(6850), + [anon_sym_QMARK] = ACTIONS(6848), + [aux_sym_close_statement_token1] = ACTIONS(6850), + [aux_sym_put_statement_token1] = ACTIONS(6850), + [aux_sym_unlock_statement_token1] = ACTIONS(6850), + [aux_sym_seek_statement_token1] = ACTIONS(6850), + [sym_reset_statement] = ACTIONS(6850), + [aux_sym_raise_event_statement_token1] = ACTIONS(6850), + [sym_stop_statement] = ACTIONS(6850), + [sym_beep_statement] = ACTIONS(6850), + [aux_sym_unload_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token2] = ACTIONS(6850), + [aux_sym_def_type_statement_token3] = ACTIONS(6850), + [aux_sym_def_type_statement_token4] = ACTIONS(6850), + [aux_sym_def_type_statement_token5] = ACTIONS(6850), + [aux_sym_def_type_statement_token6] = ACTIONS(6850), + [aux_sym_def_type_statement_token7] = ACTIONS(6850), + [aux_sym_def_type_statement_token8] = ACTIONS(6850), + [aux_sym_def_type_statement_token9] = ACTIONS(6850), + [aux_sym_def_type_statement_token10] = ACTIONS(6850), + [aux_sym_def_type_statement_token11] = ACTIONS(6850), + [aux_sym_def_type_statement_token12] = ACTIONS(6850), + [aux_sym_def_type_statement_token13] = ACTIONS(6850), + [aux_sym_def_type_statement_token14] = ACTIONS(6850), + [aux_sym_call_statement_token1] = ACTIONS(6850), + [sym__ambiguous_call_statement] = ACTIONS(6850), + [aux_sym_addressof_expression_token1] = ACTIONS(6850), + [aux_sym_type_of_expression_token1] = ACTIONS(6850), + [aux_sym_unary_expression_token1] = ACTIONS(6850), + [sym_string_literal] = ACTIONS(6848), + [sym_number_literal] = ACTIONS(6848), + [aux_sym_boolean_literal_token1] = ACTIONS(6850), + [aux_sym_boolean_literal_token2] = ACTIONS(6850), + [sym_nothing_literal] = ACTIONS(6850), + [sym_null_literal] = ACTIONS(6850), + [sym_empty_literal] = ACTIONS(6850), + [sym_date_literal] = ACTIONS(6848), + [anon_sym_POUND] = ACTIONS(6850), + }, + [STATE(2283)] = { + [sym_next_variable_list] = STATE(4210), + [sym__assignable_expression] = STATE(3716), + [sym__callable_expression] = STATE(3750), + [sym_call_expression] = STATE(3812), + [sym_member_expression] = STATE(3888), + [sym_qualified_member_expression] = STATE(4182), + [sym_implicit_member_expression] = STATE(4182), + [sym_identifier] = ACTIONS(6975), + [sym_newline] = ACTIONS(6822), + [anon_sym_COLON] = ACTIONS(6822), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6824), + [aux_sym_frm_property_statement_token1] = ACTIONS(6977), + [anon_sym_DOT] = ACTIONS(6979), + [anon_sym_BANG] = ACTIONS(6981), + [aux_sym__attribute_identifier_token1] = ACTIONS(6824), + [aux_sym_option_statement_token3] = ACTIONS(6824), + [aux_sym_type_declaration_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6824), + [aux_sym_enum_declaration_token1] = ACTIONS(6824), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6824), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6824), + [aux_sym_declare_function_statement_token1] = ACTIONS(6824), + [aux_sym_preprocessor_const_token1] = ACTIONS(6824), + [aux_sym__property_get_header_token1] = ACTIONS(6824), + [aux_sym_event_declaration_token1] = ACTIONS(6824), + [sym_static_modifier] = ACTIONS(6824), + [sym__dim_keyword] = ACTIONS(6824), + [sym__redim_keyword] = ACTIONS(6824), + [aux_sym_get_accessor_token1] = ACTIONS(6824), + [aux_sym_set_accessor_token1] = ACTIONS(6824), + [aux_sym_const_declaration_token1] = ACTIONS(6824), + [anon_sym_LPAREN] = ACTIONS(6822), + [aux_sym_as_type_clause_token2] = ACTIONS(6824), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6983), + [aux_sym_visibility_token1] = ACTIONS(6824), + [aux_sym_visibility_token2] = ACTIONS(6824), + [aux_sym_elseif_fragment_token1] = ACTIONS(6824), + [aux_sym_else_fragment_token1] = ACTIONS(6824), + [aux_sym_select_statement_token1] = ACTIONS(6824), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6824), + [aux_sym__for_header_token1] = ACTIONS(6824), + [aux_sym_do_statement_token1] = ACTIONS(6824), + [aux_sym_do_condition_token1] = ACTIONS(6824), + [aux_sym_with_statement_token1] = ACTIONS(6824), + [aux_sym_exit_statement_token1] = ACTIONS(6824), + [sym_end_statement] = ACTIONS(6822), + [aux_sym_on_goto_statement_token1] = ACTIONS(6824), + [aux_sym_on_goto_statement_token2] = ACTIONS(6824), + [aux_sym_on_error_statement_token2] = ACTIONS(6824), + [sym__ambiguous_redim_statement] = ACTIONS(6822), + [aux_sym_erase_statement_token1] = ACTIONS(6824), + [aux_sym_open_statement_token1] = ACTIONS(6824), + [aux_sym_file_mode_token2] = ACTIONS(6824), + [aux_sym_file_access_token2] = ACTIONS(6824), + [aux_sym_file_lock_token2] = ACTIONS(6824), + [aux_sym_print_statement_token1] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6822), + [aux_sym_close_statement_token1] = ACTIONS(6824), + [aux_sym_put_statement_token1] = ACTIONS(6824), + [aux_sym_unlock_statement_token1] = ACTIONS(6824), + [aux_sym_seek_statement_token1] = ACTIONS(6824), + [sym_reset_statement] = ACTIONS(6824), + [aux_sym_raise_event_statement_token1] = ACTIONS(6824), + [sym_stop_statement] = ACTIONS(6824), + [sym_beep_statement] = ACTIONS(6824), + [aux_sym_unload_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token2] = ACTIONS(6824), + [aux_sym_def_type_statement_token3] = ACTIONS(6824), + [aux_sym_def_type_statement_token4] = ACTIONS(6824), + [aux_sym_def_type_statement_token5] = ACTIONS(6824), + [aux_sym_def_type_statement_token6] = ACTIONS(6824), + [aux_sym_def_type_statement_token7] = ACTIONS(6824), + [aux_sym_def_type_statement_token8] = ACTIONS(6824), + [aux_sym_def_type_statement_token9] = ACTIONS(6824), + [aux_sym_def_type_statement_token10] = ACTIONS(6824), + [aux_sym_def_type_statement_token11] = ACTIONS(6824), + [aux_sym_def_type_statement_token12] = ACTIONS(6824), + [aux_sym_def_type_statement_token13] = ACTIONS(6824), + [aux_sym_def_type_statement_token14] = ACTIONS(6824), + [aux_sym_call_statement_token1] = ACTIONS(6824), + [sym__ambiguous_call_statement] = ACTIONS(6824), + [aux_sym_addressof_expression_token1] = ACTIONS(6824), + [aux_sym_type_of_expression_token1] = ACTIONS(6824), + [aux_sym_unary_expression_token1] = ACTIONS(6824), + [sym_string_literal] = ACTIONS(6822), + [sym_number_literal] = ACTIONS(6822), + [aux_sym_boolean_literal_token1] = ACTIONS(6824), + [aux_sym_boolean_literal_token2] = ACTIONS(6824), + [sym_nothing_literal] = ACTIONS(6824), + [sym_null_literal] = ACTIONS(6824), + [sym_empty_literal] = ACTIONS(6824), + [sym_date_literal] = ACTIONS(6822), + [anon_sym_POUND] = ACTIONS(6824), + }, + [STATE(2284)] = { + [sym_identifier] = ACTIONS(5716), + [sym_newline] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5716), + [aux_sym_frm_property_statement_token1] = ACTIONS(5716), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_BANG] = ACTIONS(5718), + [aux_sym__attribute_identifier_token1] = ACTIONS(5716), + [aux_sym_option_statement_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5716), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5716), + [aux_sym_preprocessor_const_token1] = ACTIONS(5716), + [sym_static_modifier] = ACTIONS(5716), + [sym__dim_keyword] = ACTIONS(5716), + [sym__redim_keyword] = ACTIONS(5716), + [aux_sym_get_accessor_token1] = ACTIONS(5716), + [aux_sym_set_accessor_token1] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5718), + [aux_sym_const_declaration_token1] = ACTIONS(5716), + [anon_sym_LPAREN] = ACTIONS(5718), + [aux_sym_as_type_clause_token2] = ACTIONS(5716), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5716), + [aux_sym_visibility_token1] = ACTIONS(5716), + [aux_sym_visibility_token2] = ACTIONS(5716), + [aux_sym_elseif_fragment_token1] = ACTIONS(5716), + [aux_sym_else_fragment_token1] = ACTIONS(5716), + [aux_sym_select_statement_token1] = ACTIONS(5716), + [aux_sym__for_header_token1] = ACTIONS(5716), + [aux_sym_do_statement_token1] = ACTIONS(5716), + [aux_sym_do_condition_token1] = ACTIONS(5716), + [aux_sym_with_statement_token1] = ACTIONS(5716), + [aux_sym_exit_statement_token1] = ACTIONS(5716), + [sym_end_statement] = ACTIONS(5718), + [aux_sym_on_goto_statement_token1] = ACTIONS(5716), + [aux_sym_on_goto_statement_token2] = ACTIONS(5716), + [aux_sym_on_error_statement_token2] = ACTIONS(5716), + [sym__ambiguous_redim_statement] = ACTIONS(5718), + [aux_sym_erase_statement_token1] = ACTIONS(5716), + [aux_sym_open_statement_token1] = ACTIONS(5716), + [aux_sym_file_mode_token2] = ACTIONS(5716), + [aux_sym_file_access_token2] = ACTIONS(5716), + [aux_sym_file_lock_token2] = ACTIONS(5716), + [aux_sym_print_statement_token1] = ACTIONS(5716), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5532), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5534), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5538), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5599), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5601), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [aux_sym_close_statement_token1] = ACTIONS(5716), + [aux_sym_put_statement_token1] = ACTIONS(5716), + [aux_sym_unlock_statement_token1] = ACTIONS(5716), + [aux_sym_seek_statement_token1] = ACTIONS(5716), + [sym_reset_statement] = ACTIONS(5716), + [aux_sym_raise_event_statement_token1] = ACTIONS(5716), + [sym_stop_statement] = ACTIONS(5716), + [sym_beep_statement] = ACTIONS(5716), + [aux_sym_unload_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token2] = ACTIONS(5716), + [aux_sym_def_type_statement_token3] = ACTIONS(5716), + [aux_sym_def_type_statement_token4] = ACTIONS(5716), + [aux_sym_def_type_statement_token5] = ACTIONS(5716), + [aux_sym_def_type_statement_token6] = ACTIONS(5716), + [aux_sym_def_type_statement_token7] = ACTIONS(5716), + [aux_sym_def_type_statement_token8] = ACTIONS(5716), + [aux_sym_def_type_statement_token9] = ACTIONS(5716), + [aux_sym_def_type_statement_token10] = ACTIONS(5716), + [aux_sym_def_type_statement_token11] = ACTIONS(5716), + [aux_sym_def_type_statement_token12] = ACTIONS(5716), + [aux_sym_def_type_statement_token13] = ACTIONS(5716), + [aux_sym_def_type_statement_token14] = ACTIONS(5716), + [aux_sym_call_statement_token1] = ACTIONS(5716), + [sym__ambiguous_call_statement] = ACTIONS(5716), + [aux_sym_addressof_expression_token1] = ACTIONS(5716), + [aux_sym_type_of_expression_token1] = ACTIONS(5716), + [aux_sym_unary_expression_token1] = ACTIONS(5716), + [sym_string_literal] = ACTIONS(5718), + [sym_number_literal] = ACTIONS(5718), + [aux_sym_boolean_literal_token1] = ACTIONS(5716), + [aux_sym_boolean_literal_token2] = ACTIONS(5716), + [sym_nothing_literal] = ACTIONS(5716), + [sym_null_literal] = ACTIONS(5716), + [sym_empty_literal] = ACTIONS(5716), + [sym_date_literal] = ACTIONS(5718), + [anon_sym_POUND] = ACTIONS(5716), + }, + [STATE(2285)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2286)] = { + [sym_initializer] = STATE(3809), + [sym_as_type_clause] = STATE(3394), + [sym_array_bounds] = STATE(2455), + [sym_identifier] = ACTIONS(6989), + [sym_newline] = ACTIONS(6991), + [anon_sym_COLON] = ACTIONS(6991), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6989), + [aux_sym_frm_property_statement_token1] = ACTIONS(6989), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_DOT] = ACTIONS(6989), + [anon_sym_BANG] = ACTIONS(6991), + [aux_sym__attribute_identifier_token1] = ACTIONS(6989), + [aux_sym_option_statement_token3] = ACTIONS(6989), + [aux_sym_type_declaration_token1] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6989), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6989), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6989), + [aux_sym_enum_declaration_token1] = ACTIONS(6989), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6989), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6989), + [aux_sym_declare_function_statement_token1] = ACTIONS(6989), + [aux_sym_preprocessor_const_token1] = ACTIONS(6989), + [aux_sym__property_get_header_token1] = ACTIONS(6989), + [aux_sym_event_declaration_token1] = ACTIONS(6989), + [sym_static_modifier] = ACTIONS(6989), + [sym__dim_keyword] = ACTIONS(6989), + [sym__redim_keyword] = ACTIONS(6989), + [aux_sym_get_accessor_token1] = ACTIONS(6989), + [aux_sym_set_accessor_token1] = ACTIONS(6989), + [anon_sym_COMMA] = ACTIONS(6991), + [aux_sym_const_declaration_token1] = ACTIONS(6989), + [anon_sym_LPAREN] = ACTIONS(6995), + [aux_sym_as_type_clause_token1] = ACTIONS(6997), + [aux_sym_as_type_clause_token2] = ACTIONS(6989), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6989), + [aux_sym_visibility_token1] = ACTIONS(6989), + [aux_sym_visibility_token2] = ACTIONS(6989), + [aux_sym_elseif_fragment_token1] = ACTIONS(6989), + [aux_sym_else_fragment_token1] = ACTIONS(6989), + [aux_sym_select_statement_token1] = ACTIONS(6989), + [aux_sym__for_header_token1] = ACTIONS(6989), + [aux_sym_do_statement_token1] = ACTIONS(6989), + [aux_sym_do_condition_token1] = ACTIONS(6989), + [aux_sym_with_statement_token1] = ACTIONS(6989), + [aux_sym_exit_statement_token1] = ACTIONS(6989), + [sym_end_statement] = ACTIONS(6991), + [aux_sym_on_goto_statement_token1] = ACTIONS(6989), + [aux_sym_on_goto_statement_token2] = ACTIONS(6989), + [aux_sym_on_error_statement_token2] = ACTIONS(6989), + [sym__ambiguous_redim_statement] = ACTIONS(6991), + [aux_sym_erase_statement_token1] = ACTIONS(6989), + [aux_sym_open_statement_token1] = ACTIONS(6989), + [aux_sym_file_mode_token2] = ACTIONS(6989), + [aux_sym_file_access_token2] = ACTIONS(6989), + [aux_sym_file_lock_token2] = ACTIONS(6989), + [aux_sym_print_statement_token1] = ACTIONS(6989), + [anon_sym_PLUS] = ACTIONS(6991), + [anon_sym_DASH] = ACTIONS(6989), + [anon_sym_QMARK] = ACTIONS(6991), + [aux_sym_close_statement_token1] = ACTIONS(6989), + [aux_sym_put_statement_token1] = ACTIONS(6989), + [aux_sym_unlock_statement_token1] = ACTIONS(6989), + [aux_sym_seek_statement_token1] = ACTIONS(6989), + [sym_reset_statement] = ACTIONS(6989), + [aux_sym_raise_event_statement_token1] = ACTIONS(6989), + [sym_stop_statement] = ACTIONS(6989), + [sym_beep_statement] = ACTIONS(6989), + [aux_sym_unload_statement_token1] = ACTIONS(6989), + [aux_sym_def_type_statement_token1] = ACTIONS(6989), + [aux_sym_def_type_statement_token2] = ACTIONS(6989), + [aux_sym_def_type_statement_token3] = ACTIONS(6989), + [aux_sym_def_type_statement_token4] = ACTIONS(6989), + [aux_sym_def_type_statement_token5] = ACTIONS(6989), + [aux_sym_def_type_statement_token6] = ACTIONS(6989), + [aux_sym_def_type_statement_token7] = ACTIONS(6989), + [aux_sym_def_type_statement_token8] = ACTIONS(6989), + [aux_sym_def_type_statement_token9] = ACTIONS(6989), + [aux_sym_def_type_statement_token10] = ACTIONS(6989), + [aux_sym_def_type_statement_token11] = ACTIONS(6989), + [aux_sym_def_type_statement_token12] = ACTIONS(6989), + [aux_sym_def_type_statement_token13] = ACTIONS(6989), + [aux_sym_def_type_statement_token14] = ACTIONS(6989), + [aux_sym_call_statement_token1] = ACTIONS(6989), + [sym__ambiguous_call_statement] = ACTIONS(6989), + [aux_sym_addressof_expression_token1] = ACTIONS(6989), + [aux_sym_type_of_expression_token1] = ACTIONS(6989), + [aux_sym_unary_expression_token1] = ACTIONS(6989), + [sym_string_literal] = ACTIONS(6991), + [sym_number_literal] = ACTIONS(6991), + [aux_sym_boolean_literal_token1] = ACTIONS(6989), + [aux_sym_boolean_literal_token2] = ACTIONS(6989), + [sym_nothing_literal] = ACTIONS(6989), + [sym_null_literal] = ACTIONS(6989), + [sym_empty_literal] = ACTIONS(6989), + [sym_date_literal] = ACTIONS(6991), + [anon_sym_POUND] = ACTIONS(6989), + }, + [STATE(2287)] = { + [sym_argument_list] = STATE(2518), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(6999), + [anon_sym_BANG] = ACTIONS(7001), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(7003), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2288)] = { + [sym_identifier] = ACTIONS(5699), + [sym_newline] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5701), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5699), + [aux_sym_frm_property_statement_token1] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5699), + [anon_sym_BANG] = ACTIONS(5701), + [aux_sym__attribute_identifier_token1] = ACTIONS(5699), + [aux_sym_option_statement_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5699), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5699), + [aux_sym_preprocessor_const_token1] = ACTIONS(5699), + [sym_static_modifier] = ACTIONS(5699), + [sym__dim_keyword] = ACTIONS(5699), + [sym__redim_keyword] = ACTIONS(5699), + [aux_sym_get_accessor_token1] = ACTIONS(5699), + [aux_sym_set_accessor_token1] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5701), + [aux_sym_const_declaration_token1] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(5701), + [aux_sym_as_type_clause_token2] = ACTIONS(5699), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5699), + [aux_sym_visibility_token1] = ACTIONS(5699), + [aux_sym_visibility_token2] = ACTIONS(5699), + [aux_sym_elseif_fragment_token1] = ACTIONS(5699), + [aux_sym_else_fragment_token1] = ACTIONS(5699), + [aux_sym_select_statement_token1] = ACTIONS(5699), + [aux_sym__for_header_token1] = ACTIONS(5699), + [aux_sym_do_statement_token1] = ACTIONS(5699), + [aux_sym_do_condition_token1] = ACTIONS(5699), + [aux_sym_with_statement_token1] = ACTIONS(5699), + [aux_sym_exit_statement_token1] = ACTIONS(5699), + [sym_end_statement] = ACTIONS(5701), + [aux_sym_on_goto_statement_token1] = ACTIONS(5699), + [aux_sym_on_goto_statement_token2] = ACTIONS(5699), + [aux_sym_on_error_statement_token2] = ACTIONS(5699), + [sym__ambiguous_redim_statement] = ACTIONS(5701), + [aux_sym_erase_statement_token1] = ACTIONS(5699), + [aux_sym_open_statement_token1] = ACTIONS(5699), + [aux_sym_file_mode_token2] = ACTIONS(5699), + [aux_sym_file_access_token2] = ACTIONS(5699), + [aux_sym_file_lock_token2] = ACTIONS(5699), + [aux_sym_print_statement_token1] = ACTIONS(5699), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7005), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7007), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5538), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5599), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5601), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5701), + [aux_sym_close_statement_token1] = ACTIONS(5699), + [aux_sym_put_statement_token1] = ACTIONS(5699), + [aux_sym_unlock_statement_token1] = ACTIONS(5699), + [aux_sym_seek_statement_token1] = ACTIONS(5699), + [sym_reset_statement] = ACTIONS(5699), + [aux_sym_raise_event_statement_token1] = ACTIONS(5699), + [sym_stop_statement] = ACTIONS(5699), + [sym_beep_statement] = ACTIONS(5699), + [aux_sym_unload_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token2] = ACTIONS(5699), + [aux_sym_def_type_statement_token3] = ACTIONS(5699), + [aux_sym_def_type_statement_token4] = ACTIONS(5699), + [aux_sym_def_type_statement_token5] = ACTIONS(5699), + [aux_sym_def_type_statement_token6] = ACTIONS(5699), + [aux_sym_def_type_statement_token7] = ACTIONS(5699), + [aux_sym_def_type_statement_token8] = ACTIONS(5699), + [aux_sym_def_type_statement_token9] = ACTIONS(5699), + [aux_sym_def_type_statement_token10] = ACTIONS(5699), + [aux_sym_def_type_statement_token11] = ACTIONS(5699), + [aux_sym_def_type_statement_token12] = ACTIONS(5699), + [aux_sym_def_type_statement_token13] = ACTIONS(5699), + [aux_sym_def_type_statement_token14] = ACTIONS(5699), + [aux_sym_call_statement_token1] = ACTIONS(5699), + [sym__ambiguous_call_statement] = ACTIONS(5699), + [aux_sym_addressof_expression_token1] = ACTIONS(5699), + [aux_sym_type_of_expression_token1] = ACTIONS(5699), + [aux_sym_unary_expression_token1] = ACTIONS(5699), + [sym_string_literal] = ACTIONS(5701), + [sym_number_literal] = ACTIONS(5701), + [aux_sym_boolean_literal_token1] = ACTIONS(5699), + [aux_sym_boolean_literal_token2] = ACTIONS(5699), + [sym_nothing_literal] = ACTIONS(5699), + [sym_null_literal] = ACTIONS(5699), + [sym_empty_literal] = ACTIONS(5699), + [sym_date_literal] = ACTIONS(5701), + [anon_sym_POUND] = ACTIONS(5699), + }, + [STATE(2289)] = { + [sym_identifier] = ACTIONS(5752), + [sym_newline] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5752), + [aux_sym_frm_property_statement_token1] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5752), + [anon_sym_BANG] = ACTIONS(5754), + [aux_sym__attribute_identifier_token1] = ACTIONS(5752), + [aux_sym_option_statement_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5752), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5752), + [aux_sym_preprocessor_const_token1] = ACTIONS(5752), + [sym_static_modifier] = ACTIONS(5752), + [sym__dim_keyword] = ACTIONS(5752), + [sym__redim_keyword] = ACTIONS(5752), + [aux_sym_get_accessor_token1] = ACTIONS(5752), + [aux_sym_set_accessor_token1] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5754), + [aux_sym_const_declaration_token1] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [aux_sym_as_type_clause_token2] = ACTIONS(5752), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5752), + [aux_sym_visibility_token1] = ACTIONS(5752), + [aux_sym_visibility_token2] = ACTIONS(5752), + [aux_sym_elseif_fragment_token1] = ACTIONS(5752), + [aux_sym_else_fragment_token1] = ACTIONS(5752), + [aux_sym_select_statement_token1] = ACTIONS(5752), + [aux_sym__for_header_token1] = ACTIONS(5752), + [aux_sym_do_statement_token1] = ACTIONS(5752), + [aux_sym_do_condition_token1] = ACTIONS(5752), + [aux_sym_with_statement_token1] = ACTIONS(5752), + [aux_sym_exit_statement_token1] = ACTIONS(5752), + [sym_end_statement] = ACTIONS(5754), + [aux_sym_on_goto_statement_token1] = ACTIONS(5752), + [aux_sym_on_goto_statement_token2] = ACTIONS(5752), + [aux_sym_on_error_statement_token2] = ACTIONS(5752), + [sym__ambiguous_redim_statement] = ACTIONS(5754), + [aux_sym_erase_statement_token1] = ACTIONS(5752), + [aux_sym_open_statement_token1] = ACTIONS(5752), + [aux_sym_file_mode_token2] = ACTIONS(5752), + [aux_sym_file_access_token2] = ACTIONS(5752), + [aux_sym_file_lock_token2] = ACTIONS(5752), + [aux_sym_print_statement_token1] = ACTIONS(5752), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7005), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7007), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5538), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5599), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5601), + [anon_sym_SEMI] = ACTIONS(5754), + [anon_sym_QMARK] = ACTIONS(5754), + [aux_sym_close_statement_token1] = ACTIONS(5752), + [aux_sym_put_statement_token1] = ACTIONS(5752), + [aux_sym_unlock_statement_token1] = ACTIONS(5752), + [aux_sym_seek_statement_token1] = ACTIONS(5752), + [sym_reset_statement] = ACTIONS(5752), + [aux_sym_raise_event_statement_token1] = ACTIONS(5752), + [sym_stop_statement] = ACTIONS(5752), + [sym_beep_statement] = ACTIONS(5752), + [aux_sym_unload_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token2] = ACTIONS(5752), + [aux_sym_def_type_statement_token3] = ACTIONS(5752), + [aux_sym_def_type_statement_token4] = ACTIONS(5752), + [aux_sym_def_type_statement_token5] = ACTIONS(5752), + [aux_sym_def_type_statement_token6] = ACTIONS(5752), + [aux_sym_def_type_statement_token7] = ACTIONS(5752), + [aux_sym_def_type_statement_token8] = ACTIONS(5752), + [aux_sym_def_type_statement_token9] = ACTIONS(5752), + [aux_sym_def_type_statement_token10] = ACTIONS(5752), + [aux_sym_def_type_statement_token11] = ACTIONS(5752), + [aux_sym_def_type_statement_token12] = ACTIONS(5752), + [aux_sym_def_type_statement_token13] = ACTIONS(5752), + [aux_sym_def_type_statement_token14] = ACTIONS(5752), + [aux_sym_call_statement_token1] = ACTIONS(5752), + [sym__ambiguous_call_statement] = ACTIONS(5752), + [aux_sym_addressof_expression_token1] = ACTIONS(5752), + [aux_sym_type_of_expression_token1] = ACTIONS(5752), + [aux_sym_unary_expression_token1] = ACTIONS(5752), + [sym_string_literal] = ACTIONS(5754), + [sym_number_literal] = ACTIONS(5754), + [aux_sym_boolean_literal_token1] = ACTIONS(5752), + [aux_sym_boolean_literal_token2] = ACTIONS(5752), + [sym_nothing_literal] = ACTIONS(5752), + [sym_null_literal] = ACTIONS(5752), + [sym_empty_literal] = ACTIONS(5752), + [sym_date_literal] = ACTIONS(5754), + [anon_sym_POUND] = ACTIONS(5752), + }, + [STATE(2290)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5538), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5599), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5601), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(2291)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2292), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(7009), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2292)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2295), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2293)] = { + [sym_argument_list] = STATE(2225), + [sym_identifier] = ACTIONS(4030), + [sym_newline] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4030), + [aux_sym_frm_property_statement_token1] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(6881), + [anon_sym_BANG] = ACTIONS(6854), + [aux_sym__attribute_identifier_token1] = ACTIONS(4030), + [aux_sym_option_statement_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4030), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4030), + [aux_sym_preprocessor_const_token1] = ACTIONS(4030), + [sym_static_modifier] = ACTIONS(4030), + [sym__dim_keyword] = ACTIONS(4030), + [sym__redim_keyword] = ACTIONS(4030), + [aux_sym_get_accessor_token1] = ACTIONS(4030), + [aux_sym_set_accessor_token1] = ACTIONS(4030), + [aux_sym_const_declaration_token1] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(5168), + [aux_sym_as_type_clause_token2] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4030), + [aux_sym_visibility_token1] = ACTIONS(4030), + [aux_sym_visibility_token2] = ACTIONS(4030), + [aux_sym_elseif_fragment_token1] = ACTIONS(4030), + [aux_sym_else_fragment_token1] = ACTIONS(4030), + [aux_sym_select_statement_token1] = ACTIONS(4030), + [aux_sym__for_header_token1] = ACTIONS(4030), + [aux_sym_do_statement_token1] = ACTIONS(4030), + [aux_sym_do_condition_token1] = ACTIONS(4030), + [aux_sym_with_statement_token1] = ACTIONS(4030), + [aux_sym_exit_statement_token1] = ACTIONS(4030), + [sym_end_statement] = ACTIONS(4028), + [aux_sym_on_goto_statement_token1] = ACTIONS(4030), + [aux_sym_on_goto_statement_token2] = ACTIONS(4030), + [aux_sym_on_error_statement_token2] = ACTIONS(4030), + [sym__ambiguous_redim_statement] = ACTIONS(4028), + [aux_sym_erase_statement_token1] = ACTIONS(4030), + [aux_sym_open_statement_token1] = ACTIONS(4030), + [aux_sym_file_mode_token2] = ACTIONS(4030), + [aux_sym_file_access_token2] = ACTIONS(4030), + [aux_sym_file_lock_token2] = ACTIONS(4030), + [aux_sym_print_statement_token1] = ACTIONS(4030), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4028), + [aux_sym_close_statement_token1] = ACTIONS(4030), + [aux_sym_put_statement_token1] = ACTIONS(4030), + [aux_sym_unlock_statement_token1] = ACTIONS(4030), + [aux_sym_seek_statement_token1] = ACTIONS(4030), + [sym_reset_statement] = ACTIONS(4030), + [aux_sym_raise_event_statement_token1] = ACTIONS(4030), + [sym_stop_statement] = ACTIONS(4030), + [sym_beep_statement] = ACTIONS(4030), + [aux_sym_unload_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token2] = ACTIONS(4030), + [aux_sym_def_type_statement_token3] = ACTIONS(4030), + [aux_sym_def_type_statement_token4] = ACTIONS(4030), + [aux_sym_def_type_statement_token5] = ACTIONS(4030), + [aux_sym_def_type_statement_token6] = ACTIONS(4030), + [aux_sym_def_type_statement_token7] = ACTIONS(4030), + [aux_sym_def_type_statement_token8] = ACTIONS(4030), + [aux_sym_def_type_statement_token9] = ACTIONS(4030), + [aux_sym_def_type_statement_token10] = ACTIONS(4030), + [aux_sym_def_type_statement_token11] = ACTIONS(4030), + [aux_sym_def_type_statement_token12] = ACTIONS(4030), + [aux_sym_def_type_statement_token13] = ACTIONS(4030), + [aux_sym_def_type_statement_token14] = ACTIONS(4030), + [aux_sym_call_statement_token1] = ACTIONS(4030), + [sym__ambiguous_call_statement] = ACTIONS(4030), + [aux_sym_addressof_expression_token1] = ACTIONS(4030), + [aux_sym_type_of_expression_token1] = ACTIONS(4030), + [aux_sym_unary_expression_token1] = ACTIONS(4030), + [sym_string_literal] = ACTIONS(4028), + [sym_number_literal] = ACTIONS(4028), + [aux_sym_boolean_literal_token1] = ACTIONS(4030), + [aux_sym_boolean_literal_token2] = ACTIONS(4030), + [sym_nothing_literal] = ACTIONS(4030), + [sym_null_literal] = ACTIONS(4030), + [sym_empty_literal] = ACTIONS(4030), + [sym_date_literal] = ACTIONS(4028), + [anon_sym_POUND] = ACTIONS(4030), + }, + [STATE(2294)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5532), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5538), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5599), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5601), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(2295)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2295), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(7011), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2296)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_byval_modifier_token1] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_statement_token2] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2297)] = { + [sym_identifier] = ACTIONS(5851), + [sym_newline] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5853), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5851), + [aux_sym_frm_property_statement_token1] = ACTIONS(5851), + [anon_sym_DOT] = ACTIONS(7014), + [anon_sym_BANG] = ACTIONS(7016), + [aux_sym__attribute_identifier_token1] = ACTIONS(5851), + [aux_sym_option_statement_token3] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5851), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5851), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5851), + [aux_sym_preprocessor_const_token1] = ACTIONS(5851), + [sym_static_modifier] = ACTIONS(5851), + [sym__dim_keyword] = ACTIONS(5851), + [sym__redim_keyword] = ACTIONS(5851), + [aux_sym_get_accessor_token1] = ACTIONS(5851), + [aux_sym_set_accessor_token1] = ACTIONS(5851), + [anon_sym_COMMA] = ACTIONS(5853), + [aux_sym_const_declaration_token1] = ACTIONS(5851), + [anon_sym_LPAREN] = ACTIONS(5853), + [aux_sym_as_type_clause_token2] = ACTIONS(5851), + [anon_sym_STAR] = ACTIONS(5859), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5851), + [aux_sym_visibility_token1] = ACTIONS(5851), + [aux_sym_visibility_token2] = ACTIONS(5851), + [aux_sym_elseif_fragment_token1] = ACTIONS(5851), + [aux_sym_else_fragment_token1] = ACTIONS(5851), + [aux_sym_select_statement_token1] = ACTIONS(5851), + [aux_sym__for_header_token1] = ACTIONS(5851), + [aux_sym_do_statement_token1] = ACTIONS(5851), + [aux_sym_do_condition_token1] = ACTIONS(5851), + [aux_sym_with_statement_token1] = ACTIONS(5851), + [aux_sym_exit_statement_token1] = ACTIONS(5851), + [sym_end_statement] = ACTIONS(5853), + [aux_sym_on_goto_statement_token1] = ACTIONS(5851), + [aux_sym_on_goto_statement_token2] = ACTIONS(5851), + [aux_sym_on_error_statement_token2] = ACTIONS(5851), + [sym__ambiguous_redim_statement] = ACTIONS(5853), + [aux_sym_erase_statement_token1] = ACTIONS(5851), + [aux_sym_open_statement_token1] = ACTIONS(5851), + [aux_sym_file_mode_token2] = ACTIONS(5851), + [aux_sym_file_access_token2] = ACTIONS(5851), + [aux_sym_file_lock_token2] = ACTIONS(5851), + [aux_sym_print_statement_token1] = ACTIONS(5851), + [anon_sym_CARET] = ACTIONS(5859), + [anon_sym_SLASH] = ACTIONS(5859), + [anon_sym_BSLASH] = ACTIONS(5859), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5861), + [anon_sym_PLUS] = ACTIONS(5863), + [anon_sym_DASH] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5861), + [anon_sym_SEMI] = ACTIONS(5853), + [anon_sym_QMARK] = ACTIONS(5853), + [aux_sym_close_statement_token1] = ACTIONS(5851), + [aux_sym_put_statement_token1] = ACTIONS(5851), + [aux_sym_unlock_statement_token1] = ACTIONS(5851), + [aux_sym_seek_statement_token1] = ACTIONS(5851), + [sym_reset_statement] = ACTIONS(5851), + [aux_sym_raise_event_statement_token1] = ACTIONS(5851), + [sym_stop_statement] = ACTIONS(5851), + [sym_beep_statement] = ACTIONS(5851), + [aux_sym_unload_statement_token1] = ACTIONS(5851), + [aux_sym_def_type_statement_token1] = ACTIONS(5851), + [aux_sym_def_type_statement_token2] = ACTIONS(5851), + [aux_sym_def_type_statement_token3] = ACTIONS(5851), + [aux_sym_def_type_statement_token4] = ACTIONS(5851), + [aux_sym_def_type_statement_token5] = ACTIONS(5851), + [aux_sym_def_type_statement_token6] = ACTIONS(5851), + [aux_sym_def_type_statement_token7] = ACTIONS(5851), + [aux_sym_def_type_statement_token8] = ACTIONS(5851), + [aux_sym_def_type_statement_token9] = ACTIONS(5851), + [aux_sym_def_type_statement_token10] = ACTIONS(5851), + [aux_sym_def_type_statement_token11] = ACTIONS(5851), + [aux_sym_def_type_statement_token12] = ACTIONS(5851), + [aux_sym_def_type_statement_token13] = ACTIONS(5851), + [aux_sym_def_type_statement_token14] = ACTIONS(5851), + [aux_sym_call_statement_token1] = ACTIONS(5851), + [sym__ambiguous_call_statement] = ACTIONS(5851), + [aux_sym_addressof_expression_token1] = ACTIONS(5851), + [aux_sym_type_of_expression_token1] = ACTIONS(5851), + [aux_sym_unary_expression_token1] = ACTIONS(5851), + [sym_string_literal] = ACTIONS(5853), + [sym_number_literal] = ACTIONS(5853), + [aux_sym_boolean_literal_token1] = ACTIONS(5851), + [aux_sym_boolean_literal_token2] = ACTIONS(5851), + [sym_nothing_literal] = ACTIONS(5851), + [sym_null_literal] = ACTIONS(5851), + [sym_empty_literal] = ACTIONS(5851), + [sym_date_literal] = ACTIONS(5853), + [anon_sym_POUND] = ACTIONS(5851), + }, + [STATE(2298)] = { + [sym_argument_list] = STATE(2535), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(7018), + [anon_sym_BANG] = ACTIONS(7020), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5550), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_select_statement_token2] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2299)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_byval_modifier_token1] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(5440), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym__for_header_token2] = ACTIONS(5442), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_statement_token2] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2300)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4412), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4412), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(5635), + [anon_sym_DASH] = ACTIONS(5638), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(2301)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_byval_modifier_token1] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_statement_token2] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(2302)] = { + [sym_identifier] = ACTIONS(5766), + [sym_newline] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5766), + [aux_sym_frm_property_statement_token1] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5766), + [anon_sym_BANG] = ACTIONS(5768), + [aux_sym__attribute_identifier_token1] = ACTIONS(5766), + [aux_sym_option_statement_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5766), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5766), + [aux_sym_preprocessor_const_token1] = ACTIONS(5766), + [sym_static_modifier] = ACTIONS(5766), + [sym__dim_keyword] = ACTIONS(5766), + [sym__redim_keyword] = ACTIONS(5766), + [aux_sym_get_accessor_token1] = ACTIONS(5766), + [aux_sym_set_accessor_token1] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [aux_sym_const_declaration_token1] = ACTIONS(5766), + [anon_sym_LPAREN] = ACTIONS(5768), + [aux_sym_as_type_clause_token2] = ACTIONS(5766), + [anon_sym_STAR] = ACTIONS(5768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5766), + [aux_sym_visibility_token1] = ACTIONS(5766), + [aux_sym_visibility_token2] = ACTIONS(5766), + [aux_sym_elseif_fragment_token1] = ACTIONS(5766), + [aux_sym_else_fragment_token1] = ACTIONS(5766), + [aux_sym_select_statement_token1] = ACTIONS(5766), + [aux_sym__for_header_token1] = ACTIONS(5766), + [aux_sym_do_statement_token1] = ACTIONS(5766), + [aux_sym_do_condition_token1] = ACTIONS(5766), + [aux_sym_with_statement_token1] = ACTIONS(5766), + [aux_sym_exit_statement_token1] = ACTIONS(5766), + [sym_end_statement] = ACTIONS(5768), + [aux_sym_on_goto_statement_token1] = ACTIONS(5766), + [aux_sym_on_goto_statement_token2] = ACTIONS(5766), + [aux_sym_on_error_statement_token2] = ACTIONS(5766), + [sym__ambiguous_redim_statement] = ACTIONS(5768), + [aux_sym_erase_statement_token1] = ACTIONS(5766), + [aux_sym_open_statement_token1] = ACTIONS(5766), + [aux_sym_file_mode_token2] = ACTIONS(5766), + [aux_sym_file_access_token2] = ACTIONS(5766), + [aux_sym_file_lock_token2] = ACTIONS(5766), + [aux_sym_print_statement_token1] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_BSLASH] = ACTIONS(5768), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5766), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5768), + [aux_sym_close_statement_token1] = ACTIONS(5766), + [aux_sym_put_statement_token1] = ACTIONS(5766), + [aux_sym_unlock_statement_token1] = ACTIONS(5766), + [aux_sym_seek_statement_token1] = ACTIONS(5766), + [sym_reset_statement] = ACTIONS(5766), + [aux_sym_raise_event_statement_token1] = ACTIONS(5766), + [sym_stop_statement] = ACTIONS(5766), + [sym_beep_statement] = ACTIONS(5766), + [aux_sym_unload_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token2] = ACTIONS(5766), + [aux_sym_def_type_statement_token3] = ACTIONS(5766), + [aux_sym_def_type_statement_token4] = ACTIONS(5766), + [aux_sym_def_type_statement_token5] = ACTIONS(5766), + [aux_sym_def_type_statement_token6] = ACTIONS(5766), + [aux_sym_def_type_statement_token7] = ACTIONS(5766), + [aux_sym_def_type_statement_token8] = ACTIONS(5766), + [aux_sym_def_type_statement_token9] = ACTIONS(5766), + [aux_sym_def_type_statement_token10] = ACTIONS(5766), + [aux_sym_def_type_statement_token11] = ACTIONS(5766), + [aux_sym_def_type_statement_token12] = ACTIONS(5766), + [aux_sym_def_type_statement_token13] = ACTIONS(5766), + [aux_sym_def_type_statement_token14] = ACTIONS(5766), + [aux_sym_call_statement_token1] = ACTIONS(5766), + [sym__ambiguous_call_statement] = ACTIONS(5766), + [aux_sym_addressof_expression_token1] = ACTIONS(5766), + [aux_sym_type_of_expression_token1] = ACTIONS(5766), + [aux_sym_unary_expression_token1] = ACTIONS(5766), + [sym_string_literal] = ACTIONS(5768), + [sym_number_literal] = ACTIONS(5768), + [aux_sym_boolean_literal_token1] = ACTIONS(5766), + [aux_sym_boolean_literal_token2] = ACTIONS(5766), + [sym_nothing_literal] = ACTIONS(5766), + [sym_null_literal] = ACTIONS(5766), + [sym_empty_literal] = ACTIONS(5766), + [sym_date_literal] = ACTIONS(5768), + [anon_sym_POUND] = ACTIONS(5766), + }, + [STATE(2303)] = { + [sym_identifier] = ACTIONS(5766), + [sym_newline] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5766), + [aux_sym_frm_property_statement_token1] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5766), + [anon_sym_BANG] = ACTIONS(5768), + [aux_sym__attribute_identifier_token1] = ACTIONS(5766), + [aux_sym_option_statement_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5766), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5766), + [aux_sym_preprocessor_const_token1] = ACTIONS(5766), + [sym_static_modifier] = ACTIONS(5766), + [sym__dim_keyword] = ACTIONS(5766), + [sym__redim_keyword] = ACTIONS(5766), + [aux_sym_get_accessor_token1] = ACTIONS(5766), + [aux_sym_set_accessor_token1] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [aux_sym_const_declaration_token1] = ACTIONS(5766), + [anon_sym_LPAREN] = ACTIONS(5768), + [aux_sym_as_type_clause_token2] = ACTIONS(5766), + [anon_sym_STAR] = ACTIONS(5768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5766), + [aux_sym_visibility_token1] = ACTIONS(5766), + [aux_sym_visibility_token2] = ACTIONS(5766), + [aux_sym_elseif_fragment_token1] = ACTIONS(5766), + [aux_sym_else_fragment_token1] = ACTIONS(5766), + [aux_sym_select_statement_token1] = ACTIONS(5766), + [aux_sym__for_header_token1] = ACTIONS(5766), + [aux_sym_do_statement_token1] = ACTIONS(5766), + [aux_sym_do_condition_token1] = ACTIONS(5766), + [aux_sym_with_statement_token1] = ACTIONS(5766), + [aux_sym_exit_statement_token1] = ACTIONS(5766), + [sym_end_statement] = ACTIONS(5768), + [aux_sym_on_goto_statement_token1] = ACTIONS(5766), + [aux_sym_on_goto_statement_token2] = ACTIONS(5766), + [aux_sym_on_error_statement_token2] = ACTIONS(5766), + [sym__ambiguous_redim_statement] = ACTIONS(5768), + [aux_sym_erase_statement_token1] = ACTIONS(5766), + [aux_sym_open_statement_token1] = ACTIONS(5766), + [aux_sym_file_mode_token2] = ACTIONS(5766), + [aux_sym_file_access_token2] = ACTIONS(5766), + [aux_sym_file_lock_token2] = ACTIONS(5766), + [aux_sym_print_statement_token1] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_BSLASH] = ACTIONS(5768), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5766), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5768), + [aux_sym_close_statement_token1] = ACTIONS(5766), + [aux_sym_put_statement_token1] = ACTIONS(5766), + [aux_sym_unlock_statement_token1] = ACTIONS(5766), + [aux_sym_seek_statement_token1] = ACTIONS(5766), + [sym_reset_statement] = ACTIONS(5766), + [aux_sym_raise_event_statement_token1] = ACTIONS(5766), + [sym_stop_statement] = ACTIONS(5766), + [sym_beep_statement] = ACTIONS(5766), + [aux_sym_unload_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token2] = ACTIONS(5766), + [aux_sym_def_type_statement_token3] = ACTIONS(5766), + [aux_sym_def_type_statement_token4] = ACTIONS(5766), + [aux_sym_def_type_statement_token5] = ACTIONS(5766), + [aux_sym_def_type_statement_token6] = ACTIONS(5766), + [aux_sym_def_type_statement_token7] = ACTIONS(5766), + [aux_sym_def_type_statement_token8] = ACTIONS(5766), + [aux_sym_def_type_statement_token9] = ACTIONS(5766), + [aux_sym_def_type_statement_token10] = ACTIONS(5766), + [aux_sym_def_type_statement_token11] = ACTIONS(5766), + [aux_sym_def_type_statement_token12] = ACTIONS(5766), + [aux_sym_def_type_statement_token13] = ACTIONS(5766), + [aux_sym_def_type_statement_token14] = ACTIONS(5766), + [aux_sym_call_statement_token1] = ACTIONS(5766), + [sym__ambiguous_call_statement] = ACTIONS(5766), + [aux_sym_addressof_expression_token1] = ACTIONS(5766), + [aux_sym_type_of_expression_token1] = ACTIONS(5766), + [aux_sym_unary_expression_token1] = ACTIONS(5766), + [sym_string_literal] = ACTIONS(5768), + [sym_number_literal] = ACTIONS(5768), + [aux_sym_boolean_literal_token1] = ACTIONS(5766), + [aux_sym_boolean_literal_token2] = ACTIONS(5766), + [sym_nothing_literal] = ACTIONS(5766), + [sym_null_literal] = ACTIONS(5766), + [sym_empty_literal] = ACTIONS(5766), + [sym_date_literal] = ACTIONS(5768), + [anon_sym_POUND] = ACTIONS(5766), + }, + [STATE(2304)] = { + [sym_argument_list] = STATE(2451), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(7022), + [anon_sym_BANG] = ACTIONS(7024), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5524), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_while_statement_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2305)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2306)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2307)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2308)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2309)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2310)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2311)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2312)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2313)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2314)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2315)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2316)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_byval_modifier_token1] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(5440), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym__for_header_token2] = ACTIONS(5442), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2317)] = { + [sym_identifier] = ACTIONS(5821), + [sym_newline] = ACTIONS(5823), + [anon_sym_COLON] = ACTIONS(5823), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5821), + [aux_sym_frm_property_statement_token1] = ACTIONS(5821), + [anon_sym_DOT] = ACTIONS(5821), + [anon_sym_BANG] = ACTIONS(5823), + [aux_sym__attribute_identifier_token1] = ACTIONS(5821), + [aux_sym_option_statement_token3] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5821), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5821), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5821), + [aux_sym_preprocessor_const_token1] = ACTIONS(5821), + [sym_static_modifier] = ACTIONS(5821), + [sym__dim_keyword] = ACTIONS(5821), + [sym__redim_keyword] = ACTIONS(5821), + [aux_sym_get_accessor_token1] = ACTIONS(5821), + [aux_sym_set_accessor_token1] = ACTIONS(5821), + [anon_sym_COMMA] = ACTIONS(5823), + [aux_sym_const_declaration_token1] = ACTIONS(5821), + [anon_sym_LPAREN] = ACTIONS(5823), + [aux_sym_as_type_clause_token2] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5821), + [aux_sym_visibility_token1] = ACTIONS(5821), + [aux_sym_visibility_token2] = ACTIONS(5821), + [aux_sym_elseif_fragment_token1] = ACTIONS(5821), + [aux_sym_else_fragment_token1] = ACTIONS(5821), + [aux_sym_select_statement_token1] = ACTIONS(5821), + [aux_sym__for_header_token1] = ACTIONS(5821), + [aux_sym_do_statement_token1] = ACTIONS(5821), + [aux_sym_do_condition_token1] = ACTIONS(5821), + [aux_sym_with_statement_token1] = ACTIONS(5821), + [aux_sym_exit_statement_token1] = ACTIONS(5821), + [sym_end_statement] = ACTIONS(5823), + [aux_sym_on_goto_statement_token1] = ACTIONS(5821), + [aux_sym_on_goto_statement_token2] = ACTIONS(5821), + [aux_sym_on_error_statement_token2] = ACTIONS(5821), + [sym__ambiguous_redim_statement] = ACTIONS(5823), + [aux_sym_erase_statement_token1] = ACTIONS(5821), + [aux_sym_open_statement_token1] = ACTIONS(5821), + [aux_sym_file_mode_token2] = ACTIONS(5821), + [aux_sym_file_access_token2] = ACTIONS(5821), + [aux_sym_file_lock_token2] = ACTIONS(5821), + [aux_sym_print_statement_token1] = ACTIONS(5821), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_SEMI] = ACTIONS(5823), + [anon_sym_QMARK] = ACTIONS(5823), + [aux_sym_close_statement_token1] = ACTIONS(5821), + [aux_sym_put_statement_token1] = ACTIONS(5821), + [aux_sym_unlock_statement_token1] = ACTIONS(5821), + [aux_sym_seek_statement_token1] = ACTIONS(5821), + [sym_reset_statement] = ACTIONS(5821), + [aux_sym_raise_event_statement_token1] = ACTIONS(5821), + [sym_stop_statement] = ACTIONS(5821), + [sym_beep_statement] = ACTIONS(5821), + [aux_sym_unload_statement_token1] = ACTIONS(5821), + [aux_sym_def_type_statement_token1] = ACTIONS(5821), + [aux_sym_def_type_statement_token2] = ACTIONS(5821), + [aux_sym_def_type_statement_token3] = ACTIONS(5821), + [aux_sym_def_type_statement_token4] = ACTIONS(5821), + [aux_sym_def_type_statement_token5] = ACTIONS(5821), + [aux_sym_def_type_statement_token6] = ACTIONS(5821), + [aux_sym_def_type_statement_token7] = ACTIONS(5821), + [aux_sym_def_type_statement_token8] = ACTIONS(5821), + [aux_sym_def_type_statement_token9] = ACTIONS(5821), + [aux_sym_def_type_statement_token10] = ACTIONS(5821), + [aux_sym_def_type_statement_token11] = ACTIONS(5821), + [aux_sym_def_type_statement_token12] = ACTIONS(5821), + [aux_sym_def_type_statement_token13] = ACTIONS(5821), + [aux_sym_def_type_statement_token14] = ACTIONS(5821), + [aux_sym_call_statement_token1] = ACTIONS(5821), + [sym__ambiguous_call_statement] = ACTIONS(5821), + [aux_sym_addressof_expression_token1] = ACTIONS(5821), + [aux_sym_type_of_expression_token1] = ACTIONS(5821), + [aux_sym_unary_expression_token1] = ACTIONS(5821), + [sym_string_literal] = ACTIONS(5823), + [sym_number_literal] = ACTIONS(5823), + [aux_sym_boolean_literal_token1] = ACTIONS(5821), + [aux_sym_boolean_literal_token2] = ACTIONS(5821), + [sym_nothing_literal] = ACTIONS(5821), + [sym_null_literal] = ACTIONS(5821), + [sym_empty_literal] = ACTIONS(5821), + [sym_date_literal] = ACTIONS(5823), + [anon_sym_POUND] = ACTIONS(5821), + }, + [STATE(2318)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2319)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_byval_modifier_token1] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(2320)] = { + [sym_identifier] = ACTIONS(5841), + [sym_newline] = ACTIONS(5843), + [anon_sym_COLON] = ACTIONS(5843), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5841), + [aux_sym_frm_property_statement_token1] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5843), + [aux_sym__attribute_identifier_token1] = ACTIONS(5841), + [aux_sym_option_statement_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5841), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5841), + [aux_sym_preprocessor_const_token1] = ACTIONS(5841), + [sym_static_modifier] = ACTIONS(5841), + [sym__dim_keyword] = ACTIONS(5841), + [sym__redim_keyword] = ACTIONS(5841), + [aux_sym_get_accessor_token1] = ACTIONS(5841), + [aux_sym_set_accessor_token1] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(5843), + [aux_sym_const_declaration_token1] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5843), + [aux_sym_as_type_clause_token2] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5841), + [aux_sym_visibility_token1] = ACTIONS(5841), + [aux_sym_visibility_token2] = ACTIONS(5841), + [aux_sym_elseif_fragment_token1] = ACTIONS(5841), + [aux_sym_else_fragment_token1] = ACTIONS(5841), + [aux_sym_select_statement_token1] = ACTIONS(5841), + [aux_sym__for_header_token1] = ACTIONS(5841), + [aux_sym_do_statement_token1] = ACTIONS(5841), + [aux_sym_do_condition_token1] = ACTIONS(5841), + [aux_sym_with_statement_token1] = ACTIONS(5841), + [aux_sym_exit_statement_token1] = ACTIONS(5841), + [sym_end_statement] = ACTIONS(5843), + [aux_sym_on_goto_statement_token1] = ACTIONS(5841), + [aux_sym_on_goto_statement_token2] = ACTIONS(5841), + [aux_sym_on_error_statement_token2] = ACTIONS(5841), + [sym__ambiguous_redim_statement] = ACTIONS(5843), + [aux_sym_erase_statement_token1] = ACTIONS(5841), + [aux_sym_open_statement_token1] = ACTIONS(5841), + [aux_sym_file_mode_token2] = ACTIONS(5841), + [aux_sym_file_access_token2] = ACTIONS(5841), + [aux_sym_file_lock_token2] = ACTIONS(5841), + [aux_sym_print_statement_token1] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_SEMI] = ACTIONS(5843), + [anon_sym_QMARK] = ACTIONS(5843), + [aux_sym_close_statement_token1] = ACTIONS(5841), + [aux_sym_put_statement_token1] = ACTIONS(5841), + [aux_sym_unlock_statement_token1] = ACTIONS(5841), + [aux_sym_seek_statement_token1] = ACTIONS(5841), + [sym_reset_statement] = ACTIONS(5841), + [aux_sym_raise_event_statement_token1] = ACTIONS(5841), + [sym_stop_statement] = ACTIONS(5841), + [sym_beep_statement] = ACTIONS(5841), + [aux_sym_unload_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token2] = ACTIONS(5841), + [aux_sym_def_type_statement_token3] = ACTIONS(5841), + [aux_sym_def_type_statement_token4] = ACTIONS(5841), + [aux_sym_def_type_statement_token5] = ACTIONS(5841), + [aux_sym_def_type_statement_token6] = ACTIONS(5841), + [aux_sym_def_type_statement_token7] = ACTIONS(5841), + [aux_sym_def_type_statement_token8] = ACTIONS(5841), + [aux_sym_def_type_statement_token9] = ACTIONS(5841), + [aux_sym_def_type_statement_token10] = ACTIONS(5841), + [aux_sym_def_type_statement_token11] = ACTIONS(5841), + [aux_sym_def_type_statement_token12] = ACTIONS(5841), + [aux_sym_def_type_statement_token13] = ACTIONS(5841), + [aux_sym_def_type_statement_token14] = ACTIONS(5841), + [aux_sym_call_statement_token1] = ACTIONS(5841), + [sym__ambiguous_call_statement] = ACTIONS(5841), + [aux_sym_addressof_expression_token1] = ACTIONS(5841), + [aux_sym_type_of_expression_token1] = ACTIONS(5841), + [aux_sym_unary_expression_token1] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5843), + [sym_number_literal] = ACTIONS(5843), + [aux_sym_boolean_literal_token1] = ACTIONS(5841), + [aux_sym_boolean_literal_token2] = ACTIONS(5841), + [sym_nothing_literal] = ACTIONS(5841), + [sym_null_literal] = ACTIONS(5841), + [sym_empty_literal] = ACTIONS(5841), + [sym_date_literal] = ACTIONS(5843), + [anon_sym_POUND] = ACTIONS(5841), + }, + [STATE(2321)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_byval_modifier_token1] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2322)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_byval_modifier_token1] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(2323)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(6944), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2324)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(6942), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(6944), + [anon_sym_SLASH] = ACTIONS(6942), + [anon_sym_BSLASH] = ACTIONS(6946), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6948), + [anon_sym_PLUS] = ACTIONS(6950), + [anon_sym_DASH] = ACTIONS(6952), + [anon_sym_AMP] = ACTIONS(6954), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6956), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6958), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6960), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6962), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6964), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2325)] = { + [sym_argument_list] = STATE(2532), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(7026), + [anon_sym_BANG] = ACTIONS(7028), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5613), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_statement_token2] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2326)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_byval_modifier_token1] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(2327)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_byval_modifier_token1] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_statement_token2] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(2328)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6944), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2329)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6944), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2330)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6942), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6944), + [anon_sym_SLASH] = ACTIONS(6942), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2331)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6942), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6944), + [anon_sym_SLASH] = ACTIONS(6942), + [anon_sym_BSLASH] = ACTIONS(6946), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2332)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6942), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6944), + [anon_sym_SLASH] = ACTIONS(6942), + [anon_sym_BSLASH] = ACTIONS(6946), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6948), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2333)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6942), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6944), + [anon_sym_SLASH] = ACTIONS(6942), + [anon_sym_BSLASH] = ACTIONS(6946), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6948), + [anon_sym_PLUS] = ACTIONS(6950), + [anon_sym_DASH] = ACTIONS(6952), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2334)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6942), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6944), + [anon_sym_SLASH] = ACTIONS(6942), + [anon_sym_BSLASH] = ACTIONS(6946), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6948), + [anon_sym_PLUS] = ACTIONS(6950), + [anon_sym_DASH] = ACTIONS(6952), + [anon_sym_AMP] = ACTIONS(6954), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2335)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6942), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6944), + [anon_sym_SLASH] = ACTIONS(6942), + [anon_sym_BSLASH] = ACTIONS(6946), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6948), + [anon_sym_PLUS] = ACTIONS(6950), + [anon_sym_DASH] = ACTIONS(6952), + [anon_sym_AMP] = ACTIONS(6954), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6956), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2336)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6942), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6944), + [anon_sym_SLASH] = ACTIONS(6942), + [anon_sym_BSLASH] = ACTIONS(6946), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6948), + [anon_sym_PLUS] = ACTIONS(6950), + [anon_sym_DASH] = ACTIONS(6952), + [anon_sym_AMP] = ACTIONS(6954), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6956), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6958), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2337)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6942), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6944), + [anon_sym_SLASH] = ACTIONS(6942), + [anon_sym_BSLASH] = ACTIONS(6946), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6948), + [anon_sym_PLUS] = ACTIONS(6950), + [anon_sym_DASH] = ACTIONS(6952), + [anon_sym_AMP] = ACTIONS(6954), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6956), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6958), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6960), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2338)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(6942), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(6944), + [anon_sym_SLASH] = ACTIONS(6942), + [anon_sym_BSLASH] = ACTIONS(6946), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6948), + [anon_sym_PLUS] = ACTIONS(6950), + [anon_sym_DASH] = ACTIONS(6952), + [anon_sym_AMP] = ACTIONS(6954), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6956), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6958), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6960), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6962), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2339)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(6942), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(6944), + [anon_sym_SLASH] = ACTIONS(6942), + [anon_sym_BSLASH] = ACTIONS(6946), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6948), + [anon_sym_PLUS] = ACTIONS(6950), + [anon_sym_DASH] = ACTIONS(6952), + [anon_sym_AMP] = ACTIONS(6954), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2340)] = { + [sym_identifier] = ACTIONS(5869), + [sym_newline] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5869), + [aux_sym_frm_property_statement_token1] = ACTIONS(5869), + [anon_sym_DOT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [aux_sym__attribute_identifier_token1] = ACTIONS(5869), + [aux_sym_option_statement_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5869), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5869), + [aux_sym_preprocessor_const_token1] = ACTIONS(5869), + [sym_static_modifier] = ACTIONS(5869), + [sym__dim_keyword] = ACTIONS(5869), + [sym__redim_keyword] = ACTIONS(5869), + [aux_sym_get_accessor_token1] = ACTIONS(5869), + [aux_sym_set_accessor_token1] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5871), + [aux_sym_const_declaration_token1] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5871), + [aux_sym_as_type_clause_token2] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5869), + [aux_sym_visibility_token1] = ACTIONS(5869), + [aux_sym_visibility_token2] = ACTIONS(5869), + [aux_sym_elseif_fragment_token1] = ACTIONS(5869), + [aux_sym_else_fragment_token1] = ACTIONS(5869), + [aux_sym_select_statement_token1] = ACTIONS(5869), + [aux_sym__for_header_token1] = ACTIONS(5869), + [aux_sym_do_statement_token1] = ACTIONS(5869), + [aux_sym_do_condition_token1] = ACTIONS(5869), + [aux_sym_with_statement_token1] = ACTIONS(5869), + [aux_sym_exit_statement_token1] = ACTIONS(5869), + [sym_end_statement] = ACTIONS(5871), + [aux_sym_on_goto_statement_token1] = ACTIONS(5869), + [aux_sym_on_goto_statement_token2] = ACTIONS(5869), + [aux_sym_on_error_statement_token2] = ACTIONS(5869), + [sym__ambiguous_redim_statement] = ACTIONS(5871), + [aux_sym_erase_statement_token1] = ACTIONS(5869), + [aux_sym_open_statement_token1] = ACTIONS(5869), + [aux_sym_file_mode_token2] = ACTIONS(5869), + [aux_sym_file_access_token2] = ACTIONS(5869), + [aux_sym_file_lock_token2] = ACTIONS(5869), + [aux_sym_print_statement_token1] = ACTIONS(5869), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7005), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7007), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5538), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5599), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5601), + [anon_sym_SEMI] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [aux_sym_close_statement_token1] = ACTIONS(5869), + [aux_sym_put_statement_token1] = ACTIONS(5869), + [aux_sym_unlock_statement_token1] = ACTIONS(5869), + [aux_sym_seek_statement_token1] = ACTIONS(5869), + [sym_reset_statement] = ACTIONS(5869), + [aux_sym_raise_event_statement_token1] = ACTIONS(5869), + [sym_stop_statement] = ACTIONS(5869), + [sym_beep_statement] = ACTIONS(5869), + [aux_sym_unload_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token2] = ACTIONS(5869), + [aux_sym_def_type_statement_token3] = ACTIONS(5869), + [aux_sym_def_type_statement_token4] = ACTIONS(5869), + [aux_sym_def_type_statement_token5] = ACTIONS(5869), + [aux_sym_def_type_statement_token6] = ACTIONS(5869), + [aux_sym_def_type_statement_token7] = ACTIONS(5869), + [aux_sym_def_type_statement_token8] = ACTIONS(5869), + [aux_sym_def_type_statement_token9] = ACTIONS(5869), + [aux_sym_def_type_statement_token10] = ACTIONS(5869), + [aux_sym_def_type_statement_token11] = ACTIONS(5869), + [aux_sym_def_type_statement_token12] = ACTIONS(5869), + [aux_sym_def_type_statement_token13] = ACTIONS(5869), + [aux_sym_def_type_statement_token14] = ACTIONS(5869), + [aux_sym_call_statement_token1] = ACTIONS(5869), + [sym__ambiguous_call_statement] = ACTIONS(5869), + [aux_sym_addressof_expression_token1] = ACTIONS(5869), + [aux_sym_type_of_expression_token1] = ACTIONS(5869), + [aux_sym_unary_expression_token1] = ACTIONS(5869), + [sym_string_literal] = ACTIONS(5871), + [sym_number_literal] = ACTIONS(5871), + [aux_sym_boolean_literal_token1] = ACTIONS(5869), + [aux_sym_boolean_literal_token2] = ACTIONS(5869), + [sym_nothing_literal] = ACTIONS(5869), + [sym_null_literal] = ACTIONS(5869), + [sym_empty_literal] = ACTIONS(5869), + [sym_date_literal] = ACTIONS(5871), + [anon_sym_POUND] = ACTIONS(5869), + }, + [STATE(2341)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_byval_modifier_token1] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(5440), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym__for_header_token2] = ACTIONS(5442), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_while_statement_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2342)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_byval_modifier_token1] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(5440), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_select_statement_token2] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym__for_header_token2] = ACTIONS(5442), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2343)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(2344)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_array_bound_token1] = ACTIONS(4447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(2345)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2346)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_while_statement_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2347)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_select_statement_token2] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2348)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(7018), + [anon_sym_BANG] = ACTIONS(7020), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_select_statement_token2] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2349)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2350)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_select_statement_token2] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(2351)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_while_statement_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2352)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(7022), + [anon_sym_BANG] = ACTIONS(7024), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_while_statement_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2353)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_statement_token2] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(2354)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(2355)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(2356)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2357)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_select_statement_token2] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2358)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_array_bound_token1] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(2359)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_while_statement_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(2360)] = { + [sym_identifier] = ACTIONS(5555), + [sym_newline] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(4399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5555), + [aux_sym_frm_property_statement_token1] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(7030), + [anon_sym_BANG] = ACTIONS(7024), + [aux_sym__attribute_identifier_token1] = ACTIONS(5555), + [aux_sym_option_statement_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5555), + [aux_sym_preprocessor_const_token1] = ACTIONS(5555), + [sym_static_modifier] = ACTIONS(5555), + [sym__dim_keyword] = ACTIONS(5555), + [sym__redim_keyword] = ACTIONS(5555), + [aux_sym_byval_modifier_token1] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5555), + [aux_sym_set_accessor_token1] = ACTIONS(5555), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5555), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5555), + [aux_sym_visibility_token1] = ACTIONS(5555), + [aux_sym_visibility_token2] = ACTIONS(5555), + [aux_sym_elseif_fragment_token1] = ACTIONS(5555), + [aux_sym_else_fragment_token1] = ACTIONS(5555), + [aux_sym_select_statement_token1] = ACTIONS(5555), + [aux_sym__for_header_token1] = ACTIONS(5555), + [aux_sym_do_statement_token1] = ACTIONS(5555), + [aux_sym_do_condition_token1] = ACTIONS(5555), + [aux_sym_while_statement_token1] = ACTIONS(5555), + [aux_sym_with_statement_token1] = ACTIONS(5555), + [aux_sym_exit_statement_token1] = ACTIONS(5555), + [sym_end_statement] = ACTIONS(4399), + [aux_sym_on_goto_statement_token1] = ACTIONS(5555), + [aux_sym_on_goto_statement_token2] = ACTIONS(5555), + [aux_sym_on_error_statement_token2] = ACTIONS(5555), + [sym__ambiguous_redim_statement] = ACTIONS(4399), + [aux_sym_erase_statement_token1] = ACTIONS(5555), + [aux_sym_open_statement_token1] = ACTIONS(5555), + [aux_sym_file_mode_token2] = ACTIONS(5555), + [aux_sym_file_access_token2] = ACTIONS(5555), + [aux_sym_file_lock_token2] = ACTIONS(5555), + [aux_sym_print_statement_token1] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(5555), + [aux_sym_put_statement_token1] = ACTIONS(5555), + [aux_sym_unlock_statement_token1] = ACTIONS(5555), + [aux_sym_seek_statement_token1] = ACTIONS(5555), + [sym_reset_statement] = ACTIONS(5555), + [aux_sym_raise_event_statement_token1] = ACTIONS(5555), + [sym_stop_statement] = ACTIONS(5555), + [sym_beep_statement] = ACTIONS(5555), + [aux_sym_unload_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token2] = ACTIONS(5555), + [aux_sym_def_type_statement_token3] = ACTIONS(5555), + [aux_sym_def_type_statement_token4] = ACTIONS(5555), + [aux_sym_def_type_statement_token5] = ACTIONS(5555), + [aux_sym_def_type_statement_token6] = ACTIONS(5555), + [aux_sym_def_type_statement_token7] = ACTIONS(5555), + [aux_sym_def_type_statement_token8] = ACTIONS(5555), + [aux_sym_def_type_statement_token9] = ACTIONS(5555), + [aux_sym_def_type_statement_token10] = ACTIONS(5555), + [aux_sym_def_type_statement_token11] = ACTIONS(5555), + [aux_sym_def_type_statement_token12] = ACTIONS(5555), + [aux_sym_def_type_statement_token13] = ACTIONS(5555), + [aux_sym_def_type_statement_token14] = ACTIONS(5555), + [aux_sym_call_statement_token1] = ACTIONS(5555), + [sym__ambiguous_call_statement] = ACTIONS(5555), + [aux_sym_addressof_expression_token1] = ACTIONS(5555), + [aux_sym_type_of_expression_token1] = ACTIONS(5555), + [aux_sym_unary_expression_token1] = ACTIONS(5555), + [sym_string_literal] = ACTIONS(4399), + [sym_number_literal] = ACTIONS(4399), + [aux_sym_boolean_literal_token1] = ACTIONS(5555), + [aux_sym_boolean_literal_token2] = ACTIONS(5555), + [sym_nothing_literal] = ACTIONS(5555), + [sym_null_literal] = ACTIONS(5555), + [sym_empty_literal] = ACTIONS(5555), + [sym_date_literal] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(5555), + }, + [STATE(2361)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2362)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5915), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(2363)] = { + [sym_next_variable_list] = STATE(4429), + [sym__assignable_expression] = STATE(4090), + [sym__callable_expression] = STATE(4025), + [sym_call_expression] = STATE(4181), + [sym_member_expression] = STATE(4299), + [sym_qualified_member_expression] = STATE(4274), + [sym_implicit_member_expression] = STATE(4274), + [sym_identifier] = ACTIONS(7032), + [sym_newline] = ACTIONS(6867), + [anon_sym_COLON] = ACTIONS(6867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6869), + [aux_sym_frm_property_statement_token1] = ACTIONS(7034), + [anon_sym_DOT] = ACTIONS(7036), + [anon_sym_BANG] = ACTIONS(7038), + [aux_sym__attribute_identifier_token1] = ACTIONS(6869), + [aux_sym_option_statement_token3] = ACTIONS(6869), + [aux_sym_type_declaration_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6869), + [aux_sym_enum_declaration_token1] = ACTIONS(6869), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6869), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6869), + [aux_sym_declare_function_statement_token1] = ACTIONS(6869), + [aux_sym_preprocessor_const_token1] = ACTIONS(6869), + [aux_sym__property_get_header_token1] = ACTIONS(6869), + [aux_sym_event_declaration_token1] = ACTIONS(6869), + [sym_static_modifier] = ACTIONS(6869), + [sym__dim_keyword] = ACTIONS(6869), + [sym__redim_keyword] = ACTIONS(6869), + [aux_sym_get_accessor_token1] = ACTIONS(6869), + [aux_sym_set_accessor_token1] = ACTIONS(6869), + [aux_sym_const_declaration_token1] = ACTIONS(6869), + [anon_sym_LPAREN] = ACTIONS(6867), + [aux_sym_as_type_clause_token2] = ACTIONS(6869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7040), + [aux_sym_visibility_token1] = ACTIONS(6869), + [aux_sym_visibility_token2] = ACTIONS(6869), + [aux_sym_elseif_fragment_token1] = ACTIONS(6869), + [aux_sym_else_fragment_token1] = ACTIONS(6869), + [aux_sym_select_statement_token1] = ACTIONS(6869), + [aux_sym__for_header_token1] = ACTIONS(6869), + [aux_sym_do_statement_token1] = ACTIONS(6869), + [aux_sym_do_condition_token1] = ACTIONS(6869), + [aux_sym_with_statement_token1] = ACTIONS(6869), + [aux_sym_exit_statement_token1] = ACTIONS(6869), + [sym_end_statement] = ACTIONS(6867), + [aux_sym_on_goto_statement_token1] = ACTIONS(6869), + [aux_sym_on_goto_statement_token2] = ACTIONS(6869), + [aux_sym_on_error_statement_token2] = ACTIONS(6869), + [sym__ambiguous_redim_statement] = ACTIONS(6867), + [aux_sym_erase_statement_token1] = ACTIONS(6869), + [aux_sym_open_statement_token1] = ACTIONS(6869), + [aux_sym_file_mode_token2] = ACTIONS(6869), + [aux_sym_file_access_token2] = ACTIONS(6869), + [aux_sym_file_lock_token2] = ACTIONS(6869), + [aux_sym_print_statement_token1] = ACTIONS(6869), + [anon_sym_PLUS] = ACTIONS(6867), + [anon_sym_DASH] = ACTIONS(6869), + [anon_sym_QMARK] = ACTIONS(6867), + [aux_sym_close_statement_token1] = ACTIONS(6869), + [aux_sym_put_statement_token1] = ACTIONS(6869), + [aux_sym_unlock_statement_token1] = ACTIONS(6869), + [aux_sym_seek_statement_token1] = ACTIONS(6869), + [sym_reset_statement] = ACTIONS(6869), + [aux_sym_raise_event_statement_token1] = ACTIONS(6869), + [sym_stop_statement] = ACTIONS(6869), + [sym_beep_statement] = ACTIONS(6869), + [aux_sym_unload_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token2] = ACTIONS(6869), + [aux_sym_def_type_statement_token3] = ACTIONS(6869), + [aux_sym_def_type_statement_token4] = ACTIONS(6869), + [aux_sym_def_type_statement_token5] = ACTIONS(6869), + [aux_sym_def_type_statement_token6] = ACTIONS(6869), + [aux_sym_def_type_statement_token7] = ACTIONS(6869), + [aux_sym_def_type_statement_token8] = ACTIONS(6869), + [aux_sym_def_type_statement_token9] = ACTIONS(6869), + [aux_sym_def_type_statement_token10] = ACTIONS(6869), + [aux_sym_def_type_statement_token11] = ACTIONS(6869), + [aux_sym_def_type_statement_token12] = ACTIONS(6869), + [aux_sym_def_type_statement_token13] = ACTIONS(6869), + [aux_sym_def_type_statement_token14] = ACTIONS(6869), + [aux_sym_call_statement_token1] = ACTIONS(6869), + [sym__ambiguous_call_statement] = ACTIONS(6869), + [aux_sym_addressof_expression_token1] = ACTIONS(6869), + [aux_sym_type_of_expression_token1] = ACTIONS(6869), + [aux_sym_unary_expression_token1] = ACTIONS(6869), + [sym_string_literal] = ACTIONS(6867), + [sym_number_literal] = ACTIONS(6867), + [aux_sym_boolean_literal_token1] = ACTIONS(6869), + [aux_sym_boolean_literal_token2] = ACTIONS(6869), + [sym_nothing_literal] = ACTIONS(6869), + [sym_null_literal] = ACTIONS(6869), + [sym_empty_literal] = ACTIONS(6869), + [sym_date_literal] = ACTIONS(6867), + [anon_sym_POUND] = ACTIONS(6869), + }, + [STATE(2364)] = { + [sym_next_variable_list] = STATE(4430), + [sym__assignable_expression] = STATE(4090), + [sym__callable_expression] = STATE(4025), + [sym_call_expression] = STATE(4181), + [sym_member_expression] = STATE(4299), + [sym_qualified_member_expression] = STATE(4274), + [sym_implicit_member_expression] = STATE(4274), + [sym_identifier] = ACTIONS(7032), + [sym_newline] = ACTIONS(6810), + [anon_sym_COLON] = ACTIONS(6810), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6812), + [aux_sym_frm_property_statement_token1] = ACTIONS(7034), + [anon_sym_DOT] = ACTIONS(7036), + [anon_sym_BANG] = ACTIONS(7038), + [aux_sym__attribute_identifier_token1] = ACTIONS(6812), + [aux_sym_option_statement_token3] = ACTIONS(6812), + [aux_sym_type_declaration_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6812), + [aux_sym_enum_declaration_token1] = ACTIONS(6812), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6812), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6812), + [aux_sym_declare_function_statement_token1] = ACTIONS(6812), + [aux_sym_preprocessor_const_token1] = ACTIONS(6812), + [aux_sym__property_get_header_token1] = ACTIONS(6812), + [aux_sym_event_declaration_token1] = ACTIONS(6812), + [sym_static_modifier] = ACTIONS(6812), + [sym__dim_keyword] = ACTIONS(6812), + [sym__redim_keyword] = ACTIONS(6812), + [aux_sym_get_accessor_token1] = ACTIONS(6812), + [aux_sym_set_accessor_token1] = ACTIONS(6812), + [aux_sym_const_declaration_token1] = ACTIONS(6812), + [anon_sym_LPAREN] = ACTIONS(6810), + [aux_sym_as_type_clause_token2] = ACTIONS(6812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7040), + [aux_sym_visibility_token1] = ACTIONS(6812), + [aux_sym_visibility_token2] = ACTIONS(6812), + [aux_sym_elseif_fragment_token1] = ACTIONS(6812), + [aux_sym_else_fragment_token1] = ACTIONS(6812), + [aux_sym_select_statement_token1] = ACTIONS(6812), + [aux_sym__for_header_token1] = ACTIONS(6812), + [aux_sym_do_statement_token1] = ACTIONS(6812), + [aux_sym_do_condition_token1] = ACTIONS(6812), + [aux_sym_with_statement_token1] = ACTIONS(6812), + [aux_sym_exit_statement_token1] = ACTIONS(6812), + [sym_end_statement] = ACTIONS(6810), + [aux_sym_on_goto_statement_token1] = ACTIONS(6812), + [aux_sym_on_goto_statement_token2] = ACTIONS(6812), + [aux_sym_on_error_statement_token2] = ACTIONS(6812), + [sym__ambiguous_redim_statement] = ACTIONS(6810), + [aux_sym_erase_statement_token1] = ACTIONS(6812), + [aux_sym_open_statement_token1] = ACTIONS(6812), + [aux_sym_file_mode_token2] = ACTIONS(6812), + [aux_sym_file_access_token2] = ACTIONS(6812), + [aux_sym_file_lock_token2] = ACTIONS(6812), + [aux_sym_print_statement_token1] = ACTIONS(6812), + [anon_sym_PLUS] = ACTIONS(6810), + [anon_sym_DASH] = ACTIONS(6812), + [anon_sym_QMARK] = ACTIONS(6810), + [aux_sym_close_statement_token1] = ACTIONS(6812), + [aux_sym_put_statement_token1] = ACTIONS(6812), + [aux_sym_unlock_statement_token1] = ACTIONS(6812), + [aux_sym_seek_statement_token1] = ACTIONS(6812), + [sym_reset_statement] = ACTIONS(6812), + [aux_sym_raise_event_statement_token1] = ACTIONS(6812), + [sym_stop_statement] = ACTIONS(6812), + [sym_beep_statement] = ACTIONS(6812), + [aux_sym_unload_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token2] = ACTIONS(6812), + [aux_sym_def_type_statement_token3] = ACTIONS(6812), + [aux_sym_def_type_statement_token4] = ACTIONS(6812), + [aux_sym_def_type_statement_token5] = ACTIONS(6812), + [aux_sym_def_type_statement_token6] = ACTIONS(6812), + [aux_sym_def_type_statement_token7] = ACTIONS(6812), + [aux_sym_def_type_statement_token8] = ACTIONS(6812), + [aux_sym_def_type_statement_token9] = ACTIONS(6812), + [aux_sym_def_type_statement_token10] = ACTIONS(6812), + [aux_sym_def_type_statement_token11] = ACTIONS(6812), + [aux_sym_def_type_statement_token12] = ACTIONS(6812), + [aux_sym_def_type_statement_token13] = ACTIONS(6812), + [aux_sym_def_type_statement_token14] = ACTIONS(6812), + [aux_sym_call_statement_token1] = ACTIONS(6812), + [sym__ambiguous_call_statement] = ACTIONS(6812), + [aux_sym_addressof_expression_token1] = ACTIONS(6812), + [aux_sym_type_of_expression_token1] = ACTIONS(6812), + [aux_sym_unary_expression_token1] = ACTIONS(6812), + [sym_string_literal] = ACTIONS(6810), + [sym_number_literal] = ACTIONS(6810), + [aux_sym_boolean_literal_token1] = ACTIONS(6812), + [aux_sym_boolean_literal_token2] = ACTIONS(6812), + [sym_nothing_literal] = ACTIONS(6812), + [sym_null_literal] = ACTIONS(6812), + [sym_empty_literal] = ACTIONS(6812), + [sym_date_literal] = ACTIONS(6810), + [anon_sym_POUND] = ACTIONS(6812), + }, + [STATE(2365)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2366)] = { + [sym_next_variable_list] = STATE(4431), + [sym__assignable_expression] = STATE(4090), + [sym__callable_expression] = STATE(4025), + [sym_call_expression] = STATE(4181), + [sym_member_expression] = STATE(4299), + [sym_qualified_member_expression] = STATE(4274), + [sym_implicit_member_expression] = STATE(4274), + [sym_identifier] = ACTIONS(7032), + [sym_newline] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6828), + [aux_sym_frm_property_statement_token1] = ACTIONS(7034), + [anon_sym_DOT] = ACTIONS(7036), + [anon_sym_BANG] = ACTIONS(7038), + [aux_sym__attribute_identifier_token1] = ACTIONS(6828), + [aux_sym_option_statement_token3] = ACTIONS(6828), + [aux_sym_type_declaration_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6828), + [aux_sym_enum_declaration_token1] = ACTIONS(6828), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6828), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6828), + [aux_sym_declare_function_statement_token1] = ACTIONS(6828), + [aux_sym_preprocessor_const_token1] = ACTIONS(6828), + [aux_sym__property_get_header_token1] = ACTIONS(6828), + [aux_sym_event_declaration_token1] = ACTIONS(6828), + [sym_static_modifier] = ACTIONS(6828), + [sym__dim_keyword] = ACTIONS(6828), + [sym__redim_keyword] = ACTIONS(6828), + [aux_sym_get_accessor_token1] = ACTIONS(6828), + [aux_sym_set_accessor_token1] = ACTIONS(6828), + [aux_sym_const_declaration_token1] = ACTIONS(6828), + [anon_sym_LPAREN] = ACTIONS(6826), + [aux_sym_as_type_clause_token2] = ACTIONS(6828), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7040), + [aux_sym_visibility_token1] = ACTIONS(6828), + [aux_sym_visibility_token2] = ACTIONS(6828), + [aux_sym_elseif_fragment_token1] = ACTIONS(6828), + [aux_sym_else_fragment_token1] = ACTIONS(6828), + [aux_sym_select_statement_token1] = ACTIONS(6828), + [aux_sym__for_header_token1] = ACTIONS(6828), + [aux_sym_do_statement_token1] = ACTIONS(6828), + [aux_sym_do_condition_token1] = ACTIONS(6828), + [aux_sym_with_statement_token1] = ACTIONS(6828), + [aux_sym_exit_statement_token1] = ACTIONS(6828), + [sym_end_statement] = ACTIONS(6826), + [aux_sym_on_goto_statement_token1] = ACTIONS(6828), + [aux_sym_on_goto_statement_token2] = ACTIONS(6828), + [aux_sym_on_error_statement_token2] = ACTIONS(6828), + [sym__ambiguous_redim_statement] = ACTIONS(6826), + [aux_sym_erase_statement_token1] = ACTIONS(6828), + [aux_sym_open_statement_token1] = ACTIONS(6828), + [aux_sym_file_mode_token2] = ACTIONS(6828), + [aux_sym_file_access_token2] = ACTIONS(6828), + [aux_sym_file_lock_token2] = ACTIONS(6828), + [aux_sym_print_statement_token1] = ACTIONS(6828), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_DASH] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6826), + [aux_sym_close_statement_token1] = ACTIONS(6828), + [aux_sym_put_statement_token1] = ACTIONS(6828), + [aux_sym_unlock_statement_token1] = ACTIONS(6828), + [aux_sym_seek_statement_token1] = ACTIONS(6828), + [sym_reset_statement] = ACTIONS(6828), + [aux_sym_raise_event_statement_token1] = ACTIONS(6828), + [sym_stop_statement] = ACTIONS(6828), + [sym_beep_statement] = ACTIONS(6828), + [aux_sym_unload_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token2] = ACTIONS(6828), + [aux_sym_def_type_statement_token3] = ACTIONS(6828), + [aux_sym_def_type_statement_token4] = ACTIONS(6828), + [aux_sym_def_type_statement_token5] = ACTIONS(6828), + [aux_sym_def_type_statement_token6] = ACTIONS(6828), + [aux_sym_def_type_statement_token7] = ACTIONS(6828), + [aux_sym_def_type_statement_token8] = ACTIONS(6828), + [aux_sym_def_type_statement_token9] = ACTIONS(6828), + [aux_sym_def_type_statement_token10] = ACTIONS(6828), + [aux_sym_def_type_statement_token11] = ACTIONS(6828), + [aux_sym_def_type_statement_token12] = ACTIONS(6828), + [aux_sym_def_type_statement_token13] = ACTIONS(6828), + [aux_sym_def_type_statement_token14] = ACTIONS(6828), + [aux_sym_call_statement_token1] = ACTIONS(6828), + [sym__ambiguous_call_statement] = ACTIONS(6828), + [aux_sym_addressof_expression_token1] = ACTIONS(6828), + [aux_sym_type_of_expression_token1] = ACTIONS(6828), + [aux_sym_unary_expression_token1] = ACTIONS(6828), + [sym_string_literal] = ACTIONS(6826), + [sym_number_literal] = ACTIONS(6826), + [aux_sym_boolean_literal_token1] = ACTIONS(6828), + [aux_sym_boolean_literal_token2] = ACTIONS(6828), + [sym_nothing_literal] = ACTIONS(6828), + [sym_null_literal] = ACTIONS(6828), + [sym_empty_literal] = ACTIONS(6828), + [sym_date_literal] = ACTIONS(6826), + [anon_sym_POUND] = ACTIONS(6828), + }, + [STATE(2367)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_array_bound_token1] = ACTIONS(4485), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(2368)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_while_statement_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(2369)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2370)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_array_bound_token1] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2371)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_array_bound_token1] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(2372)] = { + [sym_next_variable_list] = STATE(4399), + [sym__assignable_expression] = STATE(4090), + [sym__callable_expression] = STATE(4025), + [sym_call_expression] = STATE(4181), + [sym_member_expression] = STATE(4299), + [sym_qualified_member_expression] = STATE(4274), + [sym_implicit_member_expression] = STATE(4274), + [sym_identifier] = ACTIONS(7032), + [sym_newline] = ACTIONS(6842), + [anon_sym_COLON] = ACTIONS(6842), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6844), + [aux_sym_frm_property_statement_token1] = ACTIONS(7034), + [anon_sym_DOT] = ACTIONS(7036), + [anon_sym_BANG] = ACTIONS(7038), + [aux_sym__attribute_identifier_token1] = ACTIONS(6844), + [aux_sym_option_statement_token3] = ACTIONS(6844), + [aux_sym_type_declaration_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6844), + [aux_sym_enum_declaration_token1] = ACTIONS(6844), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6844), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6844), + [aux_sym_declare_function_statement_token1] = ACTIONS(6844), + [aux_sym_preprocessor_const_token1] = ACTIONS(6844), + [aux_sym__property_get_header_token1] = ACTIONS(6844), + [aux_sym_event_declaration_token1] = ACTIONS(6844), + [sym_static_modifier] = ACTIONS(6844), + [sym__dim_keyword] = ACTIONS(6844), + [sym__redim_keyword] = ACTIONS(6844), + [aux_sym_get_accessor_token1] = ACTIONS(6844), + [aux_sym_set_accessor_token1] = ACTIONS(6844), + [aux_sym_const_declaration_token1] = ACTIONS(6844), + [anon_sym_LPAREN] = ACTIONS(6842), + [aux_sym_as_type_clause_token2] = ACTIONS(6844), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7040), + [aux_sym_visibility_token1] = ACTIONS(6844), + [aux_sym_visibility_token2] = ACTIONS(6844), + [aux_sym_elseif_fragment_token1] = ACTIONS(6844), + [aux_sym_else_fragment_token1] = ACTIONS(6844), + [aux_sym_select_statement_token1] = ACTIONS(6844), + [aux_sym__for_header_token1] = ACTIONS(6844), + [aux_sym_do_statement_token1] = ACTIONS(6844), + [aux_sym_do_condition_token1] = ACTIONS(6844), + [aux_sym_with_statement_token1] = ACTIONS(6844), + [aux_sym_exit_statement_token1] = ACTIONS(6844), + [sym_end_statement] = ACTIONS(6842), + [aux_sym_on_goto_statement_token1] = ACTIONS(6844), + [aux_sym_on_goto_statement_token2] = ACTIONS(6844), + [aux_sym_on_error_statement_token2] = ACTIONS(6844), + [sym__ambiguous_redim_statement] = ACTIONS(6842), + [aux_sym_erase_statement_token1] = ACTIONS(6844), + [aux_sym_open_statement_token1] = ACTIONS(6844), + [aux_sym_file_mode_token2] = ACTIONS(6844), + [aux_sym_file_access_token2] = ACTIONS(6844), + [aux_sym_file_lock_token2] = ACTIONS(6844), + [aux_sym_print_statement_token1] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6842), + [aux_sym_close_statement_token1] = ACTIONS(6844), + [aux_sym_put_statement_token1] = ACTIONS(6844), + [aux_sym_unlock_statement_token1] = ACTIONS(6844), + [aux_sym_seek_statement_token1] = ACTIONS(6844), + [sym_reset_statement] = ACTIONS(6844), + [aux_sym_raise_event_statement_token1] = ACTIONS(6844), + [sym_stop_statement] = ACTIONS(6844), + [sym_beep_statement] = ACTIONS(6844), + [aux_sym_unload_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token2] = ACTIONS(6844), + [aux_sym_def_type_statement_token3] = ACTIONS(6844), + [aux_sym_def_type_statement_token4] = ACTIONS(6844), + [aux_sym_def_type_statement_token5] = ACTIONS(6844), + [aux_sym_def_type_statement_token6] = ACTIONS(6844), + [aux_sym_def_type_statement_token7] = ACTIONS(6844), + [aux_sym_def_type_statement_token8] = ACTIONS(6844), + [aux_sym_def_type_statement_token9] = ACTIONS(6844), + [aux_sym_def_type_statement_token10] = ACTIONS(6844), + [aux_sym_def_type_statement_token11] = ACTIONS(6844), + [aux_sym_def_type_statement_token12] = ACTIONS(6844), + [aux_sym_def_type_statement_token13] = ACTIONS(6844), + [aux_sym_def_type_statement_token14] = ACTIONS(6844), + [aux_sym_call_statement_token1] = ACTIONS(6844), + [sym__ambiguous_call_statement] = ACTIONS(6844), + [aux_sym_addressof_expression_token1] = ACTIONS(6844), + [aux_sym_type_of_expression_token1] = ACTIONS(6844), + [aux_sym_unary_expression_token1] = ACTIONS(6844), + [sym_string_literal] = ACTIONS(6842), + [sym_number_literal] = ACTIONS(6842), + [aux_sym_boolean_literal_token1] = ACTIONS(6844), + [aux_sym_boolean_literal_token2] = ACTIONS(6844), + [sym_nothing_literal] = ACTIONS(6844), + [sym_null_literal] = ACTIONS(6844), + [sym_empty_literal] = ACTIONS(6844), + [sym_date_literal] = ACTIONS(6842), + [anon_sym_POUND] = ACTIONS(6844), + }, + [STATE(2373)] = { + [sym_next_variable_list] = STATE(4432), + [sym__assignable_expression] = STATE(4090), + [sym__callable_expression] = STATE(4025), + [sym_call_expression] = STATE(4181), + [sym_member_expression] = STATE(4299), + [sym_qualified_member_expression] = STATE(4274), + [sym_implicit_member_expression] = STATE(4274), + [sym_identifier] = ACTIONS(7032), + [sym_newline] = ACTIONS(6863), + [anon_sym_COLON] = ACTIONS(6863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6865), + [aux_sym_frm_property_statement_token1] = ACTIONS(7034), + [anon_sym_DOT] = ACTIONS(7036), + [anon_sym_BANG] = ACTIONS(7038), + [aux_sym__attribute_identifier_token1] = ACTIONS(6865), + [aux_sym_option_statement_token3] = ACTIONS(6865), + [aux_sym_type_declaration_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6865), + [aux_sym_enum_declaration_token1] = ACTIONS(6865), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6865), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6865), + [aux_sym_declare_function_statement_token1] = ACTIONS(6865), + [aux_sym_preprocessor_const_token1] = ACTIONS(6865), + [aux_sym__property_get_header_token1] = ACTIONS(6865), + [aux_sym_event_declaration_token1] = ACTIONS(6865), + [sym_static_modifier] = ACTIONS(6865), + [sym__dim_keyword] = ACTIONS(6865), + [sym__redim_keyword] = ACTIONS(6865), + [aux_sym_get_accessor_token1] = ACTIONS(6865), + [aux_sym_set_accessor_token1] = ACTIONS(6865), + [aux_sym_const_declaration_token1] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6863), + [aux_sym_as_type_clause_token2] = ACTIONS(6865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7040), + [aux_sym_visibility_token1] = ACTIONS(6865), + [aux_sym_visibility_token2] = ACTIONS(6865), + [aux_sym_elseif_fragment_token1] = ACTIONS(6865), + [aux_sym_else_fragment_token1] = ACTIONS(6865), + [aux_sym_select_statement_token1] = ACTIONS(6865), + [aux_sym__for_header_token1] = ACTIONS(6865), + [aux_sym_do_statement_token1] = ACTIONS(6865), + [aux_sym_do_condition_token1] = ACTIONS(6865), + [aux_sym_with_statement_token1] = ACTIONS(6865), + [aux_sym_exit_statement_token1] = ACTIONS(6865), + [sym_end_statement] = ACTIONS(6863), + [aux_sym_on_goto_statement_token1] = ACTIONS(6865), + [aux_sym_on_goto_statement_token2] = ACTIONS(6865), + [aux_sym_on_error_statement_token2] = ACTIONS(6865), + [sym__ambiguous_redim_statement] = ACTIONS(6863), + [aux_sym_erase_statement_token1] = ACTIONS(6865), + [aux_sym_open_statement_token1] = ACTIONS(6865), + [aux_sym_file_mode_token2] = ACTIONS(6865), + [aux_sym_file_access_token2] = ACTIONS(6865), + [aux_sym_file_lock_token2] = ACTIONS(6865), + [aux_sym_print_statement_token1] = ACTIONS(6865), + [anon_sym_PLUS] = ACTIONS(6863), + [anon_sym_DASH] = ACTIONS(6865), + [anon_sym_QMARK] = ACTIONS(6863), + [aux_sym_close_statement_token1] = ACTIONS(6865), + [aux_sym_put_statement_token1] = ACTIONS(6865), + [aux_sym_unlock_statement_token1] = ACTIONS(6865), + [aux_sym_seek_statement_token1] = ACTIONS(6865), + [sym_reset_statement] = ACTIONS(6865), + [aux_sym_raise_event_statement_token1] = ACTIONS(6865), + [sym_stop_statement] = ACTIONS(6865), + [sym_beep_statement] = ACTIONS(6865), + [aux_sym_unload_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token2] = ACTIONS(6865), + [aux_sym_def_type_statement_token3] = ACTIONS(6865), + [aux_sym_def_type_statement_token4] = ACTIONS(6865), + [aux_sym_def_type_statement_token5] = ACTIONS(6865), + [aux_sym_def_type_statement_token6] = ACTIONS(6865), + [aux_sym_def_type_statement_token7] = ACTIONS(6865), + [aux_sym_def_type_statement_token8] = ACTIONS(6865), + [aux_sym_def_type_statement_token9] = ACTIONS(6865), + [aux_sym_def_type_statement_token10] = ACTIONS(6865), + [aux_sym_def_type_statement_token11] = ACTIONS(6865), + [aux_sym_def_type_statement_token12] = ACTIONS(6865), + [aux_sym_def_type_statement_token13] = ACTIONS(6865), + [aux_sym_def_type_statement_token14] = ACTIONS(6865), + [aux_sym_call_statement_token1] = ACTIONS(6865), + [sym__ambiguous_call_statement] = ACTIONS(6865), + [aux_sym_addressof_expression_token1] = ACTIONS(6865), + [aux_sym_type_of_expression_token1] = ACTIONS(6865), + [aux_sym_unary_expression_token1] = ACTIONS(6865), + [sym_string_literal] = ACTIONS(6863), + [sym_number_literal] = ACTIONS(6863), + [aux_sym_boolean_literal_token1] = ACTIONS(6865), + [aux_sym_boolean_literal_token2] = ACTIONS(6865), + [sym_nothing_literal] = ACTIONS(6865), + [sym_null_literal] = ACTIONS(6865), + [sym_empty_literal] = ACTIONS(6865), + [sym_date_literal] = ACTIONS(6863), + [anon_sym_POUND] = ACTIONS(6865), + }, + [STATE(2374)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_select_statement_token2] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2375)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(6999), + [anon_sym_BANG] = ACTIONS(7001), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2376)] = { + [sym_next_variable_list] = STATE(4402), + [sym__assignable_expression] = STATE(4090), + [sym__callable_expression] = STATE(4025), + [sym_call_expression] = STATE(4181), + [sym_member_expression] = STATE(4299), + [sym_qualified_member_expression] = STATE(4274), + [sym_implicit_member_expression] = STATE(4274), + [sym_identifier] = ACTIONS(7032), + [sym_newline] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(6856), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6858), + [aux_sym_frm_property_statement_token1] = ACTIONS(7034), + [anon_sym_DOT] = ACTIONS(7036), + [anon_sym_BANG] = ACTIONS(7038), + [aux_sym__attribute_identifier_token1] = ACTIONS(6858), + [aux_sym_option_statement_token3] = ACTIONS(6858), + [aux_sym_type_declaration_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6858), + [aux_sym_enum_declaration_token1] = ACTIONS(6858), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6858), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6858), + [aux_sym_declare_function_statement_token1] = ACTIONS(6858), + [aux_sym_preprocessor_const_token1] = ACTIONS(6858), + [aux_sym__property_get_header_token1] = ACTIONS(6858), + [aux_sym_event_declaration_token1] = ACTIONS(6858), + [sym_static_modifier] = ACTIONS(6858), + [sym__dim_keyword] = ACTIONS(6858), + [sym__redim_keyword] = ACTIONS(6858), + [aux_sym_get_accessor_token1] = ACTIONS(6858), + [aux_sym_set_accessor_token1] = ACTIONS(6858), + [aux_sym_const_declaration_token1] = ACTIONS(6858), + [anon_sym_LPAREN] = ACTIONS(6856), + [aux_sym_as_type_clause_token2] = ACTIONS(6858), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7040), + [aux_sym_visibility_token1] = ACTIONS(6858), + [aux_sym_visibility_token2] = ACTIONS(6858), + [aux_sym_elseif_fragment_token1] = ACTIONS(6858), + [aux_sym_else_fragment_token1] = ACTIONS(6858), + [aux_sym_select_statement_token1] = ACTIONS(6858), + [aux_sym__for_header_token1] = ACTIONS(6858), + [aux_sym_do_statement_token1] = ACTIONS(6858), + [aux_sym_do_condition_token1] = ACTIONS(6858), + [aux_sym_with_statement_token1] = ACTIONS(6858), + [aux_sym_exit_statement_token1] = ACTIONS(6858), + [sym_end_statement] = ACTIONS(6856), + [aux_sym_on_goto_statement_token1] = ACTIONS(6858), + [aux_sym_on_goto_statement_token2] = ACTIONS(6858), + [aux_sym_on_error_statement_token2] = ACTIONS(6858), + [sym__ambiguous_redim_statement] = ACTIONS(6856), + [aux_sym_erase_statement_token1] = ACTIONS(6858), + [aux_sym_open_statement_token1] = ACTIONS(6858), + [aux_sym_file_mode_token2] = ACTIONS(6858), + [aux_sym_file_access_token2] = ACTIONS(6858), + [aux_sym_file_lock_token2] = ACTIONS(6858), + [aux_sym_print_statement_token1] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6856), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_QMARK] = ACTIONS(6856), + [aux_sym_close_statement_token1] = ACTIONS(6858), + [aux_sym_put_statement_token1] = ACTIONS(6858), + [aux_sym_unlock_statement_token1] = ACTIONS(6858), + [aux_sym_seek_statement_token1] = ACTIONS(6858), + [sym_reset_statement] = ACTIONS(6858), + [aux_sym_raise_event_statement_token1] = ACTIONS(6858), + [sym_stop_statement] = ACTIONS(6858), + [sym_beep_statement] = ACTIONS(6858), + [aux_sym_unload_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token2] = ACTIONS(6858), + [aux_sym_def_type_statement_token3] = ACTIONS(6858), + [aux_sym_def_type_statement_token4] = ACTIONS(6858), + [aux_sym_def_type_statement_token5] = ACTIONS(6858), + [aux_sym_def_type_statement_token6] = ACTIONS(6858), + [aux_sym_def_type_statement_token7] = ACTIONS(6858), + [aux_sym_def_type_statement_token8] = ACTIONS(6858), + [aux_sym_def_type_statement_token9] = ACTIONS(6858), + [aux_sym_def_type_statement_token10] = ACTIONS(6858), + [aux_sym_def_type_statement_token11] = ACTIONS(6858), + [aux_sym_def_type_statement_token12] = ACTIONS(6858), + [aux_sym_def_type_statement_token13] = ACTIONS(6858), + [aux_sym_def_type_statement_token14] = ACTIONS(6858), + [aux_sym_call_statement_token1] = ACTIONS(6858), + [sym__ambiguous_call_statement] = ACTIONS(6858), + [aux_sym_addressof_expression_token1] = ACTIONS(6858), + [aux_sym_type_of_expression_token1] = ACTIONS(6858), + [aux_sym_unary_expression_token1] = ACTIONS(6858), + [sym_string_literal] = ACTIONS(6856), + [sym_number_literal] = ACTIONS(6856), + [aux_sym_boolean_literal_token1] = ACTIONS(6858), + [aux_sym_boolean_literal_token2] = ACTIONS(6858), + [sym_nothing_literal] = ACTIONS(6858), + [sym_null_literal] = ACTIONS(6858), + [sym_empty_literal] = ACTIONS(6858), + [sym_date_literal] = ACTIONS(6856), + [anon_sym_POUND] = ACTIONS(6858), + }, + [STATE(2377)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token3] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(2378)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token3] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2379)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token3] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(2380)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_array_bound_token1] = ACTIONS(4477), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(2381)] = { + [sym_next_variable_list] = STATE(4467), + [sym__assignable_expression] = STATE(4090), + [sym__callable_expression] = STATE(4025), + [sym_call_expression] = STATE(4181), + [sym_member_expression] = STATE(4299), + [sym_qualified_member_expression] = STATE(4274), + [sym_implicit_member_expression] = STATE(4274), + [sym_identifier] = ACTIONS(7032), + [sym_newline] = ACTIONS(6848), + [anon_sym_COLON] = ACTIONS(6848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6850), + [aux_sym_frm_property_statement_token1] = ACTIONS(7034), + [anon_sym_DOT] = ACTIONS(7036), + [anon_sym_BANG] = ACTIONS(7038), + [aux_sym__attribute_identifier_token1] = ACTIONS(6850), + [aux_sym_option_statement_token3] = ACTIONS(6850), + [aux_sym_type_declaration_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6850), + [aux_sym_enum_declaration_token1] = ACTIONS(6850), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6850), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6850), + [aux_sym_declare_function_statement_token1] = ACTIONS(6850), + [aux_sym_preprocessor_const_token1] = ACTIONS(6850), + [aux_sym__property_get_header_token1] = ACTIONS(6850), + [aux_sym_event_declaration_token1] = ACTIONS(6850), + [sym_static_modifier] = ACTIONS(6850), + [sym__dim_keyword] = ACTIONS(6850), + [sym__redim_keyword] = ACTIONS(6850), + [aux_sym_get_accessor_token1] = ACTIONS(6850), + [aux_sym_set_accessor_token1] = ACTIONS(6850), + [aux_sym_const_declaration_token1] = ACTIONS(6850), + [anon_sym_LPAREN] = ACTIONS(6848), + [aux_sym_as_type_clause_token2] = ACTIONS(6850), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7040), + [aux_sym_visibility_token1] = ACTIONS(6850), + [aux_sym_visibility_token2] = ACTIONS(6850), + [aux_sym_elseif_fragment_token1] = ACTIONS(6850), + [aux_sym_else_fragment_token1] = ACTIONS(6850), + [aux_sym_select_statement_token1] = ACTIONS(6850), + [aux_sym__for_header_token1] = ACTIONS(6850), + [aux_sym_do_statement_token1] = ACTIONS(6850), + [aux_sym_do_condition_token1] = ACTIONS(6850), + [aux_sym_with_statement_token1] = ACTIONS(6850), + [aux_sym_exit_statement_token1] = ACTIONS(6850), + [sym_end_statement] = ACTIONS(6848), + [aux_sym_on_goto_statement_token1] = ACTIONS(6850), + [aux_sym_on_goto_statement_token2] = ACTIONS(6850), + [aux_sym_on_error_statement_token2] = ACTIONS(6850), + [sym__ambiguous_redim_statement] = ACTIONS(6848), + [aux_sym_erase_statement_token1] = ACTIONS(6850), + [aux_sym_open_statement_token1] = ACTIONS(6850), + [aux_sym_file_mode_token2] = ACTIONS(6850), + [aux_sym_file_access_token2] = ACTIONS(6850), + [aux_sym_file_lock_token2] = ACTIONS(6850), + [aux_sym_print_statement_token1] = ACTIONS(6850), + [anon_sym_PLUS] = ACTIONS(6848), + [anon_sym_DASH] = ACTIONS(6850), + [anon_sym_QMARK] = ACTIONS(6848), + [aux_sym_close_statement_token1] = ACTIONS(6850), + [aux_sym_put_statement_token1] = ACTIONS(6850), + [aux_sym_unlock_statement_token1] = ACTIONS(6850), + [aux_sym_seek_statement_token1] = ACTIONS(6850), + [sym_reset_statement] = ACTIONS(6850), + [aux_sym_raise_event_statement_token1] = ACTIONS(6850), + [sym_stop_statement] = ACTIONS(6850), + [sym_beep_statement] = ACTIONS(6850), + [aux_sym_unload_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token2] = ACTIONS(6850), + [aux_sym_def_type_statement_token3] = ACTIONS(6850), + [aux_sym_def_type_statement_token4] = ACTIONS(6850), + [aux_sym_def_type_statement_token5] = ACTIONS(6850), + [aux_sym_def_type_statement_token6] = ACTIONS(6850), + [aux_sym_def_type_statement_token7] = ACTIONS(6850), + [aux_sym_def_type_statement_token8] = ACTIONS(6850), + [aux_sym_def_type_statement_token9] = ACTIONS(6850), + [aux_sym_def_type_statement_token10] = ACTIONS(6850), + [aux_sym_def_type_statement_token11] = ACTIONS(6850), + [aux_sym_def_type_statement_token12] = ACTIONS(6850), + [aux_sym_def_type_statement_token13] = ACTIONS(6850), + [aux_sym_def_type_statement_token14] = ACTIONS(6850), + [aux_sym_call_statement_token1] = ACTIONS(6850), + [sym__ambiguous_call_statement] = ACTIONS(6850), + [aux_sym_addressof_expression_token1] = ACTIONS(6850), + [aux_sym_type_of_expression_token1] = ACTIONS(6850), + [aux_sym_unary_expression_token1] = ACTIONS(6850), + [sym_string_literal] = ACTIONS(6848), + [sym_number_literal] = ACTIONS(6848), + [aux_sym_boolean_literal_token1] = ACTIONS(6850), + [aux_sym_boolean_literal_token2] = ACTIONS(6850), + [sym_nothing_literal] = ACTIONS(6850), + [sym_null_literal] = ACTIONS(6850), + [sym_empty_literal] = ACTIONS(6850), + [sym_date_literal] = ACTIONS(6848), + [anon_sym_POUND] = ACTIONS(6850), + }, + [STATE(2382)] = { + [sym_next_variable_list] = STATE(4468), + [sym__assignable_expression] = STATE(4090), + [sym__callable_expression] = STATE(4025), + [sym_call_expression] = STATE(4181), + [sym_member_expression] = STATE(4299), + [sym_qualified_member_expression] = STATE(4274), + [sym_implicit_member_expression] = STATE(4274), + [sym_identifier] = ACTIONS(7032), + [sym_newline] = ACTIONS(6822), + [anon_sym_COLON] = ACTIONS(6822), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6824), + [aux_sym_frm_property_statement_token1] = ACTIONS(7034), + [anon_sym_DOT] = ACTIONS(7036), + [anon_sym_BANG] = ACTIONS(7038), + [aux_sym__attribute_identifier_token1] = ACTIONS(6824), + [aux_sym_option_statement_token3] = ACTIONS(6824), + [aux_sym_type_declaration_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6824), + [aux_sym_enum_declaration_token1] = ACTIONS(6824), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6824), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6824), + [aux_sym_declare_function_statement_token1] = ACTIONS(6824), + [aux_sym_preprocessor_const_token1] = ACTIONS(6824), + [aux_sym__property_get_header_token1] = ACTIONS(6824), + [aux_sym_event_declaration_token1] = ACTIONS(6824), + [sym_static_modifier] = ACTIONS(6824), + [sym__dim_keyword] = ACTIONS(6824), + [sym__redim_keyword] = ACTIONS(6824), + [aux_sym_get_accessor_token1] = ACTIONS(6824), + [aux_sym_set_accessor_token1] = ACTIONS(6824), + [aux_sym_const_declaration_token1] = ACTIONS(6824), + [anon_sym_LPAREN] = ACTIONS(6822), + [aux_sym_as_type_clause_token2] = ACTIONS(6824), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7040), + [aux_sym_visibility_token1] = ACTIONS(6824), + [aux_sym_visibility_token2] = ACTIONS(6824), + [aux_sym_elseif_fragment_token1] = ACTIONS(6824), + [aux_sym_else_fragment_token1] = ACTIONS(6824), + [aux_sym_select_statement_token1] = ACTIONS(6824), + [aux_sym__for_header_token1] = ACTIONS(6824), + [aux_sym_do_statement_token1] = ACTIONS(6824), + [aux_sym_do_condition_token1] = ACTIONS(6824), + [aux_sym_with_statement_token1] = ACTIONS(6824), + [aux_sym_exit_statement_token1] = ACTIONS(6824), + [sym_end_statement] = ACTIONS(6822), + [aux_sym_on_goto_statement_token1] = ACTIONS(6824), + [aux_sym_on_goto_statement_token2] = ACTIONS(6824), + [aux_sym_on_error_statement_token2] = ACTIONS(6824), + [sym__ambiguous_redim_statement] = ACTIONS(6822), + [aux_sym_erase_statement_token1] = ACTIONS(6824), + [aux_sym_open_statement_token1] = ACTIONS(6824), + [aux_sym_file_mode_token2] = ACTIONS(6824), + [aux_sym_file_access_token2] = ACTIONS(6824), + [aux_sym_file_lock_token2] = ACTIONS(6824), + [aux_sym_print_statement_token1] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6822), + [aux_sym_close_statement_token1] = ACTIONS(6824), + [aux_sym_put_statement_token1] = ACTIONS(6824), + [aux_sym_unlock_statement_token1] = ACTIONS(6824), + [aux_sym_seek_statement_token1] = ACTIONS(6824), + [sym_reset_statement] = ACTIONS(6824), + [aux_sym_raise_event_statement_token1] = ACTIONS(6824), + [sym_stop_statement] = ACTIONS(6824), + [sym_beep_statement] = ACTIONS(6824), + [aux_sym_unload_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token2] = ACTIONS(6824), + [aux_sym_def_type_statement_token3] = ACTIONS(6824), + [aux_sym_def_type_statement_token4] = ACTIONS(6824), + [aux_sym_def_type_statement_token5] = ACTIONS(6824), + [aux_sym_def_type_statement_token6] = ACTIONS(6824), + [aux_sym_def_type_statement_token7] = ACTIONS(6824), + [aux_sym_def_type_statement_token8] = ACTIONS(6824), + [aux_sym_def_type_statement_token9] = ACTIONS(6824), + [aux_sym_def_type_statement_token10] = ACTIONS(6824), + [aux_sym_def_type_statement_token11] = ACTIONS(6824), + [aux_sym_def_type_statement_token12] = ACTIONS(6824), + [aux_sym_def_type_statement_token13] = ACTIONS(6824), + [aux_sym_def_type_statement_token14] = ACTIONS(6824), + [aux_sym_call_statement_token1] = ACTIONS(6824), + [sym__ambiguous_call_statement] = ACTIONS(6824), + [aux_sym_addressof_expression_token1] = ACTIONS(6824), + [aux_sym_type_of_expression_token1] = ACTIONS(6824), + [aux_sym_unary_expression_token1] = ACTIONS(6824), + [sym_string_literal] = ACTIONS(6822), + [sym_number_literal] = ACTIONS(6822), + [aux_sym_boolean_literal_token1] = ACTIONS(6824), + [aux_sym_boolean_literal_token2] = ACTIONS(6824), + [sym_nothing_literal] = ACTIONS(6824), + [sym_null_literal] = ACTIONS(6824), + [sym_empty_literal] = ACTIONS(6824), + [sym_date_literal] = ACTIONS(6822), + [anon_sym_POUND] = ACTIONS(6824), + }, + [STATE(2383)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token3] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(2384)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_declaration_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7042), + [aux_sym_enum_declaration_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7042), + [aux_sym_declare_function_statement_token1] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [aux_sym__property_get_header_token1] = ACTIONS(7042), + [aux_sym_event_declaration_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7046), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(2385)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_statement_token2] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2386)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_statement_token2] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(2387)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_statement_token2] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2388)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_statement_token2] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2389)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2390)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_byval_modifier_token1] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(5440), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym__for_header_token2] = ACTIONS(5442), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2391)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2392)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(6915), + [anon_sym_BANG] = ACTIONS(6917), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2393)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(2394)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_array_bound_token1] = ACTIONS(4441), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7048), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2395)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_array_bound_token1] = ACTIONS(4437), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(2396)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_declaration_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7042), + [aux_sym_enum_declaration_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7042), + [aux_sym_declare_function_statement_token1] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [aux_sym__property_get_header_token1] = ACTIONS(7042), + [aux_sym_event_declaration_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7046), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7050), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(2397)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2398)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_select_statement_token2] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(2399)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7052), + [aux_sym_array_bound_token1] = ACTIONS(4451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7048), + [anon_sym_SLASH] = ACTIONS(7052), + [anon_sym_BSLASH] = ACTIONS(7054), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7056), + [anon_sym_PLUS] = ACTIONS(7058), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_AMP] = ACTIONS(7062), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7064), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7066), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7068), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7070), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7072), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2400)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7074), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token3] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7076), + [anon_sym_SLASH] = ACTIONS(7074), + [anon_sym_BSLASH] = ACTIONS(7078), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7080), + [anon_sym_PLUS] = ACTIONS(7082), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7086), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2401)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2402)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(5052), + [sym_identifier] = ACTIONS(5566), + [sym_newline] = ACTIONS(5568), + [anon_sym_COLON] = ACTIONS(5568), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5566), + [aux_sym_frm_property_statement_token1] = ACTIONS(5566), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_BANG] = ACTIONS(5568), + [aux_sym__attribute_identifier_token1] = ACTIONS(5566), + [aux_sym_option_statement_token3] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5566), + [aux_sym_preprocessor_const_token1] = ACTIONS(5566), + [sym_static_modifier] = ACTIONS(5566), + [sym__dim_keyword] = ACTIONS(5566), + [sym__redim_keyword] = ACTIONS(5566), + [aux_sym_get_accessor_token1] = ACTIONS(5566), + [aux_sym_set_accessor_token1] = ACTIONS(5566), + [anon_sym_COMMA] = ACTIONS(7088), + [aux_sym_const_declaration_token1] = ACTIONS(5566), + [anon_sym_LPAREN] = ACTIONS(5568), + [aux_sym_as_type_clause_token2] = ACTIONS(5566), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5566), + [aux_sym_visibility_token1] = ACTIONS(5566), + [aux_sym_visibility_token2] = ACTIONS(5566), + [aux_sym_elseif_fragment_token1] = ACTIONS(5566), + [aux_sym_else_fragment_token1] = ACTIONS(5566), + [aux_sym_select_statement_token1] = ACTIONS(5566), + [aux_sym__for_header_token1] = ACTIONS(5566), + [aux_sym_do_statement_token1] = ACTIONS(5566), + [aux_sym_do_statement_token2] = ACTIONS(5566), + [aux_sym_do_condition_token1] = ACTIONS(5566), + [aux_sym_with_statement_token1] = ACTIONS(5566), + [aux_sym_exit_statement_token1] = ACTIONS(5566), + [sym_end_statement] = ACTIONS(5568), + [aux_sym_on_goto_statement_token1] = ACTIONS(5566), + [aux_sym_on_goto_statement_token2] = ACTIONS(5566), + [aux_sym_on_error_statement_token2] = ACTIONS(5566), + [sym__ambiguous_redim_statement] = ACTIONS(5568), + [aux_sym_erase_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_file_mode_token2] = ACTIONS(5566), + [aux_sym_file_access_token2] = ACTIONS(5566), + [aux_sym_file_lock_token2] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_SEMI] = ACTIONS(7088), + [anon_sym_QMARK] = ACTIONS(5568), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_put_statement_token1] = ACTIONS(5566), + [aux_sym_unlock_statement_token1] = ACTIONS(5566), + [aux_sym_seek_statement_token1] = ACTIONS(5566), + [sym_reset_statement] = ACTIONS(5566), + [aux_sym_raise_event_statement_token1] = ACTIONS(5566), + [sym_stop_statement] = ACTIONS(5566), + [sym_beep_statement] = ACTIONS(5566), + [aux_sym_unload_statement_token1] = ACTIONS(5566), + [aux_sym_def_type_statement_token1] = ACTIONS(5566), + [aux_sym_def_type_statement_token2] = ACTIONS(5566), + [aux_sym_def_type_statement_token3] = ACTIONS(5566), + [aux_sym_def_type_statement_token4] = ACTIONS(5566), + [aux_sym_def_type_statement_token5] = ACTIONS(5566), + [aux_sym_def_type_statement_token6] = ACTIONS(5566), + [aux_sym_def_type_statement_token7] = ACTIONS(5566), + [aux_sym_def_type_statement_token8] = ACTIONS(5566), + [aux_sym_def_type_statement_token9] = ACTIONS(5566), + [aux_sym_def_type_statement_token10] = ACTIONS(5566), + [aux_sym_def_type_statement_token11] = ACTIONS(5566), + [aux_sym_def_type_statement_token12] = ACTIONS(5566), + [aux_sym_def_type_statement_token13] = ACTIONS(5566), + [aux_sym_def_type_statement_token14] = ACTIONS(5566), + [aux_sym_call_statement_token1] = ACTIONS(5566), + [sym__ambiguous_call_statement] = ACTIONS(5566), + [aux_sym_addressof_expression_token1] = ACTIONS(5566), + [aux_sym_type_of_expression_token1] = ACTIONS(5566), + [aux_sym_unary_expression_token1] = ACTIONS(5566), + [sym_string_literal] = ACTIONS(5568), + [sym_number_literal] = ACTIONS(5568), + [aux_sym_boolean_literal_token1] = ACTIONS(5566), + [aux_sym_boolean_literal_token2] = ACTIONS(5566), + [sym_nothing_literal] = ACTIONS(5566), + [sym_null_literal] = ACTIONS(5566), + [sym_empty_literal] = ACTIONS(5566), + [sym_date_literal] = ACTIONS(5568), + [anon_sym_POUND] = ACTIONS(5566), + }, + [STATE(2403)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2404)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2405)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_declaration_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7042), + [aux_sym_enum_declaration_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7042), + [aux_sym_declare_function_statement_token1] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [aux_sym__property_get_header_token1] = ACTIONS(7042), + [aux_sym_event_declaration_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7046), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7050), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7114), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(2406)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_statement_token2] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2407)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2408)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2409)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2505), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(7116), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2410)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(2411)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_select_statement_token2] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(2412)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token3] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(2413)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_select_statement_token2] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2414)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_array_bound_token1] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2415)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(2416)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_select_statement_token2] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(2417)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token3] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(2418)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(2419)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token3] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(2420)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_byval_modifier_token1] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_SEMI] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(2421)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_byval_modifier_token1] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2422)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_array_bound_token1] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(2423)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token3] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7076), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2424)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_statement_token2] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(2425)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7074), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token3] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7076), + [anon_sym_SLASH] = ACTIONS(7074), + [anon_sym_BSLASH] = ACTIONS(7078), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7080), + [anon_sym_PLUS] = ACTIONS(7082), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7086), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7118), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7120), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7122), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7124), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7126), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2426)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2427)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5915), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(2428)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_while_statement_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2429)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_array_bound_token1] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(2430)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_select_statement_token2] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(2431)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_select_statement_token2] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(2432)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2433)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_array_bound_token1] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(2434)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2435)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(7128), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2436)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2437)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2438)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_while_statement_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2439)] = { + [sym_identifier] = ACTIONS(5555), + [sym_newline] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(7130), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5555), + [aux_sym_frm_property_statement_token1] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(7132), + [anon_sym_BANG] = ACTIONS(7020), + [aux_sym__attribute_identifier_token1] = ACTIONS(5555), + [aux_sym_option_statement_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5555), + [aux_sym_preprocessor_const_token1] = ACTIONS(5555), + [sym_static_modifier] = ACTIONS(5555), + [sym__dim_keyword] = ACTIONS(5555), + [sym__redim_keyword] = ACTIONS(5555), + [aux_sym_byval_modifier_token1] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5555), + [aux_sym_set_accessor_token1] = ACTIONS(5555), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5555), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5555), + [aux_sym_visibility_token1] = ACTIONS(5555), + [aux_sym_visibility_token2] = ACTIONS(5555), + [aux_sym_elseif_fragment_token1] = ACTIONS(5555), + [aux_sym_else_fragment_token1] = ACTIONS(5555), + [aux_sym_select_statement_token1] = ACTIONS(5555), + [aux_sym_select_statement_token2] = ACTIONS(5555), + [aux_sym__for_header_token1] = ACTIONS(5555), + [aux_sym_do_statement_token1] = ACTIONS(5555), + [aux_sym_do_condition_token1] = ACTIONS(5555), + [aux_sym_with_statement_token1] = ACTIONS(5555), + [aux_sym_exit_statement_token1] = ACTIONS(5555), + [sym_end_statement] = ACTIONS(4399), + [aux_sym_on_goto_statement_token1] = ACTIONS(5555), + [aux_sym_on_goto_statement_token2] = ACTIONS(5555), + [aux_sym_on_error_statement_token2] = ACTIONS(5555), + [sym__ambiguous_redim_statement] = ACTIONS(4399), + [aux_sym_erase_statement_token1] = ACTIONS(5555), + [aux_sym_open_statement_token1] = ACTIONS(5555), + [aux_sym_file_mode_token2] = ACTIONS(5555), + [aux_sym_file_access_token2] = ACTIONS(5555), + [aux_sym_file_lock_token2] = ACTIONS(5555), + [aux_sym_print_statement_token1] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(5555), + [aux_sym_put_statement_token1] = ACTIONS(5555), + [aux_sym_unlock_statement_token1] = ACTIONS(5555), + [aux_sym_seek_statement_token1] = ACTIONS(5555), + [sym_reset_statement] = ACTIONS(5555), + [aux_sym_raise_event_statement_token1] = ACTIONS(5555), + [sym_stop_statement] = ACTIONS(5555), + [sym_beep_statement] = ACTIONS(5555), + [aux_sym_unload_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token2] = ACTIONS(5555), + [aux_sym_def_type_statement_token3] = ACTIONS(5555), + [aux_sym_def_type_statement_token4] = ACTIONS(5555), + [aux_sym_def_type_statement_token5] = ACTIONS(5555), + [aux_sym_def_type_statement_token6] = ACTIONS(5555), + [aux_sym_def_type_statement_token7] = ACTIONS(5555), + [aux_sym_def_type_statement_token8] = ACTIONS(5555), + [aux_sym_def_type_statement_token9] = ACTIONS(5555), + [aux_sym_def_type_statement_token10] = ACTIONS(5555), + [aux_sym_def_type_statement_token11] = ACTIONS(5555), + [aux_sym_def_type_statement_token12] = ACTIONS(5555), + [aux_sym_def_type_statement_token13] = ACTIONS(5555), + [aux_sym_def_type_statement_token14] = ACTIONS(5555), + [aux_sym_call_statement_token1] = ACTIONS(5555), + [sym__ambiguous_call_statement] = ACTIONS(5555), + [aux_sym_addressof_expression_token1] = ACTIONS(5555), + [aux_sym_type_of_expression_token1] = ACTIONS(5555), + [aux_sym_unary_expression_token1] = ACTIONS(5555), + [sym_string_literal] = ACTIONS(4399), + [sym_number_literal] = ACTIONS(4399), + [aux_sym_boolean_literal_token1] = ACTIONS(5555), + [aux_sym_boolean_literal_token2] = ACTIONS(5555), + [sym_nothing_literal] = ACTIONS(5555), + [sym_null_literal] = ACTIONS(5555), + [sym_empty_literal] = ACTIONS(5555), + [sym_date_literal] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(5555), + }, + [STATE(2440)] = { + [sym_fixed_string_length] = STATE(3362), + [sym_array_bounds] = STATE(3640), + [sym_identifier] = ACTIONS(7134), + [sym_newline] = ACTIONS(7136), + [anon_sym_COLON] = ACTIONS(7136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7134), + [aux_sym_frm_property_statement_token1] = ACTIONS(7134), + [anon_sym_EQ] = ACTIONS(7136), + [anon_sym_DOT] = ACTIONS(7134), + [anon_sym_BANG] = ACTIONS(7136), + [aux_sym__attribute_identifier_token1] = ACTIONS(7134), + [aux_sym_option_statement_token3] = ACTIONS(7134), + [aux_sym_type_declaration_token1] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7134), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7134), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7134), + [aux_sym_enum_declaration_token1] = ACTIONS(7134), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7134), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7134), + [aux_sym_declare_function_statement_token1] = ACTIONS(7134), + [aux_sym_preprocessor_const_token1] = ACTIONS(7134), + [aux_sym__property_get_header_token1] = ACTIONS(7134), + [aux_sym_event_declaration_token1] = ACTIONS(7134), + [sym_static_modifier] = ACTIONS(7134), + [sym__dim_keyword] = ACTIONS(7134), + [sym__redim_keyword] = ACTIONS(7134), + [aux_sym_get_accessor_token1] = ACTIONS(7134), + [aux_sym_set_accessor_token1] = ACTIONS(7134), + [anon_sym_COMMA] = ACTIONS(7136), + [aux_sym_const_declaration_token1] = ACTIONS(7134), + [anon_sym_LPAREN] = ACTIONS(7138), + [aux_sym_as_type_clause_token2] = ACTIONS(7134), + [anon_sym_STAR] = ACTIONS(7140), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7134), + [aux_sym_visibility_token1] = ACTIONS(7134), + [aux_sym_visibility_token2] = ACTIONS(7134), + [aux_sym_elseif_fragment_token1] = ACTIONS(7134), + [aux_sym_else_fragment_token1] = ACTIONS(7134), + [aux_sym_select_statement_token1] = ACTIONS(7134), + [aux_sym__for_header_token1] = ACTIONS(7134), + [aux_sym_do_statement_token1] = ACTIONS(7134), + [aux_sym_do_condition_token1] = ACTIONS(7134), + [aux_sym_with_statement_token1] = ACTIONS(7134), + [aux_sym_exit_statement_token1] = ACTIONS(7134), + [sym_end_statement] = ACTIONS(7136), + [aux_sym_on_goto_statement_token1] = ACTIONS(7134), + [aux_sym_on_goto_statement_token2] = ACTIONS(7134), + [aux_sym_on_error_statement_token2] = ACTIONS(7134), + [sym__ambiguous_redim_statement] = ACTIONS(7136), + [aux_sym_erase_statement_token1] = ACTIONS(7134), + [aux_sym_open_statement_token1] = ACTIONS(7134), + [aux_sym_file_mode_token2] = ACTIONS(7134), + [aux_sym_file_access_token2] = ACTIONS(7134), + [aux_sym_file_lock_token2] = ACTIONS(7134), + [aux_sym_print_statement_token1] = ACTIONS(7134), + [anon_sym_PLUS] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7134), + [anon_sym_QMARK] = ACTIONS(7136), + [aux_sym_close_statement_token1] = ACTIONS(7134), + [aux_sym_put_statement_token1] = ACTIONS(7134), + [aux_sym_unlock_statement_token1] = ACTIONS(7134), + [aux_sym_seek_statement_token1] = ACTIONS(7134), + [sym_reset_statement] = ACTIONS(7134), + [aux_sym_raise_event_statement_token1] = ACTIONS(7134), + [sym_stop_statement] = ACTIONS(7134), + [sym_beep_statement] = ACTIONS(7134), + [aux_sym_unload_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token2] = ACTIONS(7134), + [aux_sym_def_type_statement_token3] = ACTIONS(7134), + [aux_sym_def_type_statement_token4] = ACTIONS(7134), + [aux_sym_def_type_statement_token5] = ACTIONS(7134), + [aux_sym_def_type_statement_token6] = ACTIONS(7134), + [aux_sym_def_type_statement_token7] = ACTIONS(7134), + [aux_sym_def_type_statement_token8] = ACTIONS(7134), + [aux_sym_def_type_statement_token9] = ACTIONS(7134), + [aux_sym_def_type_statement_token10] = ACTIONS(7134), + [aux_sym_def_type_statement_token11] = ACTIONS(7134), + [aux_sym_def_type_statement_token12] = ACTIONS(7134), + [aux_sym_def_type_statement_token13] = ACTIONS(7134), + [aux_sym_def_type_statement_token14] = ACTIONS(7134), + [aux_sym_call_statement_token1] = ACTIONS(7134), + [sym__ambiguous_call_statement] = ACTIONS(7134), + [aux_sym_addressof_expression_token1] = ACTIONS(7134), + [aux_sym_type_of_expression_token1] = ACTIONS(7134), + [aux_sym_unary_expression_token1] = ACTIONS(7134), + [sym_string_literal] = ACTIONS(7136), + [sym_number_literal] = ACTIONS(7136), + [aux_sym_boolean_literal_token1] = ACTIONS(7134), + [aux_sym_boolean_literal_token2] = ACTIONS(7134), + [sym_nothing_literal] = ACTIONS(7134), + [sym_null_literal] = ACTIONS(7134), + [sym_empty_literal] = ACTIONS(7134), + [sym_date_literal] = ACTIONS(7136), + [anon_sym_POUND] = ACTIONS(7134), + }, + [STATE(2441)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_select_statement_token2] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2442)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(5072), + [sym_identifier] = ACTIONS(5566), + [sym_newline] = ACTIONS(5568), + [anon_sym_COLON] = ACTIONS(5568), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5566), + [aux_sym_frm_property_statement_token1] = ACTIONS(5566), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_BANG] = ACTIONS(5568), + [aux_sym__attribute_identifier_token1] = ACTIONS(5566), + [aux_sym_option_statement_token3] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5566), + [aux_sym_preprocessor_const_token1] = ACTIONS(5566), + [sym_static_modifier] = ACTIONS(5566), + [sym__dim_keyword] = ACTIONS(5566), + [sym__redim_keyword] = ACTIONS(5566), + [aux_sym_get_accessor_token1] = ACTIONS(5566), + [aux_sym_set_accessor_token1] = ACTIONS(5566), + [anon_sym_COMMA] = ACTIONS(7142), + [aux_sym_const_declaration_token1] = ACTIONS(5566), + [anon_sym_LPAREN] = ACTIONS(5568), + [aux_sym_as_type_clause_token2] = ACTIONS(5566), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5566), + [aux_sym_visibility_token1] = ACTIONS(5566), + [aux_sym_visibility_token2] = ACTIONS(5566), + [aux_sym_elseif_fragment_token1] = ACTIONS(5566), + [aux_sym_else_fragment_token1] = ACTIONS(5566), + [aux_sym_select_statement_token1] = ACTIONS(5566), + [aux_sym__for_header_token1] = ACTIONS(5566), + [aux_sym_do_statement_token1] = ACTIONS(5566), + [aux_sym_do_condition_token1] = ACTIONS(5566), + [aux_sym_with_statement_token1] = ACTIONS(5566), + [aux_sym_exit_statement_token1] = ACTIONS(5566), + [sym_end_statement] = ACTIONS(5568), + [aux_sym_on_goto_statement_token1] = ACTIONS(5566), + [aux_sym_on_goto_statement_token2] = ACTIONS(5566), + [aux_sym_on_error_statement_token2] = ACTIONS(5566), + [sym__ambiguous_redim_statement] = ACTIONS(5568), + [aux_sym_erase_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_file_mode_token2] = ACTIONS(5566), + [aux_sym_file_access_token2] = ACTIONS(5566), + [aux_sym_file_lock_token2] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_SEMI] = ACTIONS(7142), + [anon_sym_QMARK] = ACTIONS(5568), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_put_statement_token1] = ACTIONS(5566), + [aux_sym_unlock_statement_token1] = ACTIONS(5566), + [aux_sym_seek_statement_token1] = ACTIONS(5566), + [sym_reset_statement] = ACTIONS(5566), + [aux_sym_raise_event_statement_token1] = ACTIONS(5566), + [sym_stop_statement] = ACTIONS(5566), + [sym_beep_statement] = ACTIONS(5566), + [aux_sym_unload_statement_token1] = ACTIONS(5566), + [aux_sym_def_type_statement_token1] = ACTIONS(5566), + [aux_sym_def_type_statement_token2] = ACTIONS(5566), + [aux_sym_def_type_statement_token3] = ACTIONS(5566), + [aux_sym_def_type_statement_token4] = ACTIONS(5566), + [aux_sym_def_type_statement_token5] = ACTIONS(5566), + [aux_sym_def_type_statement_token6] = ACTIONS(5566), + [aux_sym_def_type_statement_token7] = ACTIONS(5566), + [aux_sym_def_type_statement_token8] = ACTIONS(5566), + [aux_sym_def_type_statement_token9] = ACTIONS(5566), + [aux_sym_def_type_statement_token10] = ACTIONS(5566), + [aux_sym_def_type_statement_token11] = ACTIONS(5566), + [aux_sym_def_type_statement_token12] = ACTIONS(5566), + [aux_sym_def_type_statement_token13] = ACTIONS(5566), + [aux_sym_def_type_statement_token14] = ACTIONS(5566), + [aux_sym_call_statement_token1] = ACTIONS(5566), + [sym__ambiguous_call_statement] = ACTIONS(5566), + [aux_sym_addressof_expression_token1] = ACTIONS(5566), + [aux_sym_type_of_expression_token1] = ACTIONS(5566), + [aux_sym_unary_expression_token1] = ACTIONS(5566), + [sym_string_literal] = ACTIONS(5568), + [sym_number_literal] = ACTIONS(5568), + [aux_sym_boolean_literal_token1] = ACTIONS(5566), + [aux_sym_boolean_literal_token2] = ACTIONS(5566), + [sym_nothing_literal] = ACTIONS(5566), + [sym_null_literal] = ACTIONS(5566), + [sym_empty_literal] = ACTIONS(5566), + [sym_date_literal] = ACTIONS(5568), + [anon_sym_POUND] = ACTIONS(5566), + }, + [STATE(2443)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(4992), + [sym_identifier] = ACTIONS(5566), + [sym_newline] = ACTIONS(5568), + [anon_sym_COLON] = ACTIONS(5568), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5566), + [aux_sym_frm_property_statement_token1] = ACTIONS(5566), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_BANG] = ACTIONS(5568), + [aux_sym__attribute_identifier_token1] = ACTIONS(5566), + [aux_sym_option_statement_token3] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5566), + [aux_sym_preprocessor_const_token1] = ACTIONS(5566), + [sym_static_modifier] = ACTIONS(5566), + [sym__dim_keyword] = ACTIONS(5566), + [sym__redim_keyword] = ACTIONS(5566), + [aux_sym_get_accessor_token1] = ACTIONS(5566), + [aux_sym_set_accessor_token1] = ACTIONS(5566), + [anon_sym_COMMA] = ACTIONS(7168), + [aux_sym_const_declaration_token1] = ACTIONS(5566), + [anon_sym_LPAREN] = ACTIONS(5568), + [aux_sym_as_type_clause_token2] = ACTIONS(5566), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5566), + [aux_sym_visibility_token1] = ACTIONS(5566), + [aux_sym_visibility_token2] = ACTIONS(5566), + [aux_sym_elseif_fragment_token1] = ACTIONS(5566), + [aux_sym_else_fragment_token1] = ACTIONS(5566), + [aux_sym_select_statement_token1] = ACTIONS(5566), + [aux_sym_select_statement_token2] = ACTIONS(5566), + [aux_sym__for_header_token1] = ACTIONS(5566), + [aux_sym_do_statement_token1] = ACTIONS(5566), + [aux_sym_do_condition_token1] = ACTIONS(5566), + [aux_sym_with_statement_token1] = ACTIONS(5566), + [aux_sym_exit_statement_token1] = ACTIONS(5566), + [sym_end_statement] = ACTIONS(5568), + [aux_sym_on_goto_statement_token1] = ACTIONS(5566), + [aux_sym_on_goto_statement_token2] = ACTIONS(5566), + [aux_sym_on_error_statement_token2] = ACTIONS(5566), + [sym__ambiguous_redim_statement] = ACTIONS(5568), + [aux_sym_erase_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_file_mode_token2] = ACTIONS(5566), + [aux_sym_file_access_token2] = ACTIONS(5566), + [aux_sym_file_lock_token2] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_SEMI] = ACTIONS(7168), + [anon_sym_QMARK] = ACTIONS(5568), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_put_statement_token1] = ACTIONS(5566), + [aux_sym_unlock_statement_token1] = ACTIONS(5566), + [aux_sym_seek_statement_token1] = ACTIONS(5566), + [sym_reset_statement] = ACTIONS(5566), + [aux_sym_raise_event_statement_token1] = ACTIONS(5566), + [sym_stop_statement] = ACTIONS(5566), + [sym_beep_statement] = ACTIONS(5566), + [aux_sym_unload_statement_token1] = ACTIONS(5566), + [aux_sym_def_type_statement_token1] = ACTIONS(5566), + [aux_sym_def_type_statement_token2] = ACTIONS(5566), + [aux_sym_def_type_statement_token3] = ACTIONS(5566), + [aux_sym_def_type_statement_token4] = ACTIONS(5566), + [aux_sym_def_type_statement_token5] = ACTIONS(5566), + [aux_sym_def_type_statement_token6] = ACTIONS(5566), + [aux_sym_def_type_statement_token7] = ACTIONS(5566), + [aux_sym_def_type_statement_token8] = ACTIONS(5566), + [aux_sym_def_type_statement_token9] = ACTIONS(5566), + [aux_sym_def_type_statement_token10] = ACTIONS(5566), + [aux_sym_def_type_statement_token11] = ACTIONS(5566), + [aux_sym_def_type_statement_token12] = ACTIONS(5566), + [aux_sym_def_type_statement_token13] = ACTIONS(5566), + [aux_sym_def_type_statement_token14] = ACTIONS(5566), + [aux_sym_call_statement_token1] = ACTIONS(5566), + [sym__ambiguous_call_statement] = ACTIONS(5566), + [aux_sym_addressof_expression_token1] = ACTIONS(5566), + [aux_sym_type_of_expression_token1] = ACTIONS(5566), + [aux_sym_unary_expression_token1] = ACTIONS(5566), + [sym_string_literal] = ACTIONS(5568), + [sym_number_literal] = ACTIONS(5568), + [aux_sym_boolean_literal_token1] = ACTIONS(5566), + [aux_sym_boolean_literal_token2] = ACTIONS(5566), + [sym_nothing_literal] = ACTIONS(5566), + [sym_null_literal] = ACTIONS(5566), + [sym_empty_literal] = ACTIONS(5566), + [sym_date_literal] = ACTIONS(5568), + [anon_sym_POUND] = ACTIONS(5566), + }, + [STATE(2444)] = { + [sym_identifier] = ACTIONS(5555), + [sym_newline] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(7194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5555), + [aux_sym_frm_property_statement_token1] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(7196), + [anon_sym_BANG] = ACTIONS(7028), + [aux_sym__attribute_identifier_token1] = ACTIONS(5555), + [aux_sym_option_statement_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5555), + [aux_sym_preprocessor_const_token1] = ACTIONS(5555), + [sym_static_modifier] = ACTIONS(5555), + [sym__dim_keyword] = ACTIONS(5555), + [sym__redim_keyword] = ACTIONS(5555), + [aux_sym_byval_modifier_token1] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5555), + [aux_sym_set_accessor_token1] = ACTIONS(5555), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5555), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5555), + [aux_sym_visibility_token1] = ACTIONS(5555), + [aux_sym_visibility_token2] = ACTIONS(5555), + [aux_sym_elseif_fragment_token1] = ACTIONS(5555), + [aux_sym_else_fragment_token1] = ACTIONS(5555), + [aux_sym_select_statement_token1] = ACTIONS(5555), + [aux_sym__for_header_token1] = ACTIONS(5555), + [aux_sym_do_statement_token1] = ACTIONS(5555), + [aux_sym_do_statement_token2] = ACTIONS(5555), + [aux_sym_do_condition_token1] = ACTIONS(5555), + [aux_sym_with_statement_token1] = ACTIONS(5555), + [aux_sym_exit_statement_token1] = ACTIONS(5555), + [sym_end_statement] = ACTIONS(4399), + [aux_sym_on_goto_statement_token1] = ACTIONS(5555), + [aux_sym_on_goto_statement_token2] = ACTIONS(5555), + [aux_sym_on_error_statement_token2] = ACTIONS(5555), + [sym__ambiguous_redim_statement] = ACTIONS(4399), + [aux_sym_erase_statement_token1] = ACTIONS(5555), + [aux_sym_open_statement_token1] = ACTIONS(5555), + [aux_sym_file_mode_token2] = ACTIONS(5555), + [aux_sym_file_access_token2] = ACTIONS(5555), + [aux_sym_file_lock_token2] = ACTIONS(5555), + [aux_sym_print_statement_token1] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(5555), + [aux_sym_put_statement_token1] = ACTIONS(5555), + [aux_sym_unlock_statement_token1] = ACTIONS(5555), + [aux_sym_seek_statement_token1] = ACTIONS(5555), + [sym_reset_statement] = ACTIONS(5555), + [aux_sym_raise_event_statement_token1] = ACTIONS(5555), + [sym_stop_statement] = ACTIONS(5555), + [sym_beep_statement] = ACTIONS(5555), + [aux_sym_unload_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token2] = ACTIONS(5555), + [aux_sym_def_type_statement_token3] = ACTIONS(5555), + [aux_sym_def_type_statement_token4] = ACTIONS(5555), + [aux_sym_def_type_statement_token5] = ACTIONS(5555), + [aux_sym_def_type_statement_token6] = ACTIONS(5555), + [aux_sym_def_type_statement_token7] = ACTIONS(5555), + [aux_sym_def_type_statement_token8] = ACTIONS(5555), + [aux_sym_def_type_statement_token9] = ACTIONS(5555), + [aux_sym_def_type_statement_token10] = ACTIONS(5555), + [aux_sym_def_type_statement_token11] = ACTIONS(5555), + [aux_sym_def_type_statement_token12] = ACTIONS(5555), + [aux_sym_def_type_statement_token13] = ACTIONS(5555), + [aux_sym_def_type_statement_token14] = ACTIONS(5555), + [aux_sym_call_statement_token1] = ACTIONS(5555), + [sym__ambiguous_call_statement] = ACTIONS(5555), + [aux_sym_addressof_expression_token1] = ACTIONS(5555), + [aux_sym_type_of_expression_token1] = ACTIONS(5555), + [aux_sym_unary_expression_token1] = ACTIONS(5555), + [sym_string_literal] = ACTIONS(4399), + [sym_number_literal] = ACTIONS(4399), + [aux_sym_boolean_literal_token1] = ACTIONS(5555), + [aux_sym_boolean_literal_token2] = ACTIONS(5555), + [sym_nothing_literal] = ACTIONS(5555), + [sym_null_literal] = ACTIONS(5555), + [sym_empty_literal] = ACTIONS(5555), + [sym_date_literal] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(5555), + }, + [STATE(2445)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_statement_token2] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(2446)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(2447)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6968), + [anon_sym_BANG] = ACTIONS(6970), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2448)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(2449)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2450)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_declaration_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7042), + [aux_sym_enum_declaration_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7042), + [aux_sym_declare_function_statement_token1] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [aux_sym__property_get_header_token1] = ACTIONS(7042), + [aux_sym_event_declaration_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7046), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7050), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7114), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7198), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(2451)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_while_statement_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2452)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_while_statement_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(2453)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_select_statement_token2] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2454)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_while_statement_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(2455)] = { + [sym_initializer] = STATE(3786), + [sym_as_type_clause] = STATE(2961), + [sym_identifier] = ACTIONS(7200), + [sym_newline] = ACTIONS(7202), + [anon_sym_COLON] = ACTIONS(7202), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7200), + [aux_sym_frm_property_statement_token1] = ACTIONS(7200), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_DOT] = ACTIONS(7200), + [anon_sym_BANG] = ACTIONS(7202), + [aux_sym__attribute_identifier_token1] = ACTIONS(7200), + [aux_sym_option_statement_token3] = ACTIONS(7200), + [aux_sym_type_declaration_token1] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7200), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7200), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7200), + [aux_sym_enum_declaration_token1] = ACTIONS(7200), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7200), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7200), + [aux_sym_declare_function_statement_token1] = ACTIONS(7200), + [aux_sym_preprocessor_const_token1] = ACTIONS(7200), + [aux_sym__property_get_header_token1] = ACTIONS(7200), + [aux_sym_event_declaration_token1] = ACTIONS(7200), + [sym_static_modifier] = ACTIONS(7200), + [sym__dim_keyword] = ACTIONS(7200), + [sym__redim_keyword] = ACTIONS(7200), + [aux_sym_get_accessor_token1] = ACTIONS(7200), + [aux_sym_set_accessor_token1] = ACTIONS(7200), + [anon_sym_COMMA] = ACTIONS(7202), + [aux_sym_const_declaration_token1] = ACTIONS(7200), + [anon_sym_LPAREN] = ACTIONS(7202), + [aux_sym_as_type_clause_token1] = ACTIONS(6997), + [aux_sym_as_type_clause_token2] = ACTIONS(7200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7200), + [aux_sym_visibility_token1] = ACTIONS(7200), + [aux_sym_visibility_token2] = ACTIONS(7200), + [aux_sym_elseif_fragment_token1] = ACTIONS(7200), + [aux_sym_else_fragment_token1] = ACTIONS(7200), + [aux_sym_select_statement_token1] = ACTIONS(7200), + [aux_sym__for_header_token1] = ACTIONS(7200), + [aux_sym_do_statement_token1] = ACTIONS(7200), + [aux_sym_do_condition_token1] = ACTIONS(7200), + [aux_sym_with_statement_token1] = ACTIONS(7200), + [aux_sym_exit_statement_token1] = ACTIONS(7200), + [sym_end_statement] = ACTIONS(7202), + [aux_sym_on_goto_statement_token1] = ACTIONS(7200), + [aux_sym_on_goto_statement_token2] = ACTIONS(7200), + [aux_sym_on_error_statement_token2] = ACTIONS(7200), + [sym__ambiguous_redim_statement] = ACTIONS(7202), + [aux_sym_erase_statement_token1] = ACTIONS(7200), + [aux_sym_open_statement_token1] = ACTIONS(7200), + [aux_sym_file_mode_token2] = ACTIONS(7200), + [aux_sym_file_access_token2] = ACTIONS(7200), + [aux_sym_file_lock_token2] = ACTIONS(7200), + [aux_sym_print_statement_token1] = ACTIONS(7200), + [anon_sym_PLUS] = ACTIONS(7202), + [anon_sym_DASH] = ACTIONS(7200), + [anon_sym_QMARK] = ACTIONS(7202), + [aux_sym_close_statement_token1] = ACTIONS(7200), + [aux_sym_put_statement_token1] = ACTIONS(7200), + [aux_sym_unlock_statement_token1] = ACTIONS(7200), + [aux_sym_seek_statement_token1] = ACTIONS(7200), + [sym_reset_statement] = ACTIONS(7200), + [aux_sym_raise_event_statement_token1] = ACTIONS(7200), + [sym_stop_statement] = ACTIONS(7200), + [sym_beep_statement] = ACTIONS(7200), + [aux_sym_unload_statement_token1] = ACTIONS(7200), + [aux_sym_def_type_statement_token1] = ACTIONS(7200), + [aux_sym_def_type_statement_token2] = ACTIONS(7200), + [aux_sym_def_type_statement_token3] = ACTIONS(7200), + [aux_sym_def_type_statement_token4] = ACTIONS(7200), + [aux_sym_def_type_statement_token5] = ACTIONS(7200), + [aux_sym_def_type_statement_token6] = ACTIONS(7200), + [aux_sym_def_type_statement_token7] = ACTIONS(7200), + [aux_sym_def_type_statement_token8] = ACTIONS(7200), + [aux_sym_def_type_statement_token9] = ACTIONS(7200), + [aux_sym_def_type_statement_token10] = ACTIONS(7200), + [aux_sym_def_type_statement_token11] = ACTIONS(7200), + [aux_sym_def_type_statement_token12] = ACTIONS(7200), + [aux_sym_def_type_statement_token13] = ACTIONS(7200), + [aux_sym_def_type_statement_token14] = ACTIONS(7200), + [aux_sym_call_statement_token1] = ACTIONS(7200), + [sym__ambiguous_call_statement] = ACTIONS(7200), + [aux_sym_addressof_expression_token1] = ACTIONS(7200), + [aux_sym_type_of_expression_token1] = ACTIONS(7200), + [aux_sym_unary_expression_token1] = ACTIONS(7200), + [sym_string_literal] = ACTIONS(7202), + [sym_number_literal] = ACTIONS(7202), + [aux_sym_boolean_literal_token1] = ACTIONS(7200), + [aux_sym_boolean_literal_token2] = ACTIONS(7200), + [sym_nothing_literal] = ACTIONS(7200), + [sym_null_literal] = ACTIONS(7200), + [sym_empty_literal] = ACTIONS(7200), + [sym_date_literal] = ACTIONS(7202), + [anon_sym_POUND] = ACTIONS(7200), + }, + [STATE(2456)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(4912), + [sym_identifier] = ACTIONS(5566), + [sym_newline] = ACTIONS(5568), + [anon_sym_COLON] = ACTIONS(5568), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5566), + [aux_sym_frm_property_statement_token1] = ACTIONS(5566), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_BANG] = ACTIONS(5568), + [aux_sym__attribute_identifier_token1] = ACTIONS(5566), + [aux_sym_option_statement_token3] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5566), + [aux_sym_preprocessor_const_token1] = ACTIONS(5566), + [sym_static_modifier] = ACTIONS(5566), + [sym__dim_keyword] = ACTIONS(5566), + [sym__redim_keyword] = ACTIONS(5566), + [aux_sym_get_accessor_token1] = ACTIONS(5566), + [aux_sym_set_accessor_token1] = ACTIONS(5566), + [anon_sym_COMMA] = ACTIONS(7204), + [aux_sym_const_declaration_token1] = ACTIONS(5566), + [anon_sym_LPAREN] = ACTIONS(5568), + [aux_sym_as_type_clause_token2] = ACTIONS(5566), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5566), + [aux_sym_visibility_token1] = ACTIONS(5566), + [aux_sym_visibility_token2] = ACTIONS(5566), + [aux_sym_elseif_fragment_token1] = ACTIONS(5566), + [aux_sym_else_fragment_token1] = ACTIONS(5566), + [aux_sym_select_statement_token1] = ACTIONS(5566), + [aux_sym__for_header_token1] = ACTIONS(5566), + [aux_sym_do_statement_token1] = ACTIONS(5566), + [aux_sym_do_condition_token1] = ACTIONS(5566), + [aux_sym_while_statement_token1] = ACTIONS(5566), + [aux_sym_with_statement_token1] = ACTIONS(5566), + [aux_sym_exit_statement_token1] = ACTIONS(5566), + [sym_end_statement] = ACTIONS(5568), + [aux_sym_on_goto_statement_token1] = ACTIONS(5566), + [aux_sym_on_goto_statement_token2] = ACTIONS(5566), + [aux_sym_on_error_statement_token2] = ACTIONS(5566), + [sym__ambiguous_redim_statement] = ACTIONS(5568), + [aux_sym_erase_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_file_mode_token2] = ACTIONS(5566), + [aux_sym_file_access_token2] = ACTIONS(5566), + [aux_sym_file_lock_token2] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(7204), + [anon_sym_QMARK] = ACTIONS(5568), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_put_statement_token1] = ACTIONS(5566), + [aux_sym_unlock_statement_token1] = ACTIONS(5566), + [aux_sym_seek_statement_token1] = ACTIONS(5566), + [sym_reset_statement] = ACTIONS(5566), + [aux_sym_raise_event_statement_token1] = ACTIONS(5566), + [sym_stop_statement] = ACTIONS(5566), + [sym_beep_statement] = ACTIONS(5566), + [aux_sym_unload_statement_token1] = ACTIONS(5566), + [aux_sym_def_type_statement_token1] = ACTIONS(5566), + [aux_sym_def_type_statement_token2] = ACTIONS(5566), + [aux_sym_def_type_statement_token3] = ACTIONS(5566), + [aux_sym_def_type_statement_token4] = ACTIONS(5566), + [aux_sym_def_type_statement_token5] = ACTIONS(5566), + [aux_sym_def_type_statement_token6] = ACTIONS(5566), + [aux_sym_def_type_statement_token7] = ACTIONS(5566), + [aux_sym_def_type_statement_token8] = ACTIONS(5566), + [aux_sym_def_type_statement_token9] = ACTIONS(5566), + [aux_sym_def_type_statement_token10] = ACTIONS(5566), + [aux_sym_def_type_statement_token11] = ACTIONS(5566), + [aux_sym_def_type_statement_token12] = ACTIONS(5566), + [aux_sym_def_type_statement_token13] = ACTIONS(5566), + [aux_sym_def_type_statement_token14] = ACTIONS(5566), + [aux_sym_call_statement_token1] = ACTIONS(5566), + [sym__ambiguous_call_statement] = ACTIONS(5566), + [aux_sym_addressof_expression_token1] = ACTIONS(5566), + [aux_sym_type_of_expression_token1] = ACTIONS(5566), + [aux_sym_unary_expression_token1] = ACTIONS(5566), + [sym_string_literal] = ACTIONS(5568), + [sym_number_literal] = ACTIONS(5568), + [aux_sym_boolean_literal_token1] = ACTIONS(5566), + [aux_sym_boolean_literal_token2] = ACTIONS(5566), + [sym_nothing_literal] = ACTIONS(5566), + [sym_null_literal] = ACTIONS(5566), + [sym_empty_literal] = ACTIONS(5566), + [sym_date_literal] = ACTIONS(5568), + [anon_sym_POUND] = ACTIONS(5566), + }, + [STATE(2457)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_while_statement_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2458)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token3] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(2459)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_while_statement_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2460)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_array_bound_token1] = ACTIONS(4589), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(2461)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2462)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_statement_token2] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(2463)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(2464)] = { + [sym_fixed_string_length] = STATE(3372), + [sym_array_bounds] = STATE(3660), + [sym_identifier] = ACTIONS(7230), + [sym_newline] = ACTIONS(7232), + [anon_sym_COLON] = ACTIONS(7232), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7230), + [aux_sym_frm_property_statement_token1] = ACTIONS(7230), + [anon_sym_EQ] = ACTIONS(7232), + [anon_sym_DOT] = ACTIONS(7230), + [anon_sym_BANG] = ACTIONS(7232), + [aux_sym__attribute_identifier_token1] = ACTIONS(7230), + [aux_sym_option_statement_token3] = ACTIONS(7230), + [aux_sym_type_declaration_token1] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7230), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7230), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7230), + [aux_sym_enum_declaration_token1] = ACTIONS(7230), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7230), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7230), + [aux_sym_declare_function_statement_token1] = ACTIONS(7230), + [aux_sym_preprocessor_const_token1] = ACTIONS(7230), + [aux_sym__property_get_header_token1] = ACTIONS(7230), + [aux_sym_event_declaration_token1] = ACTIONS(7230), + [sym_static_modifier] = ACTIONS(7230), + [sym__dim_keyword] = ACTIONS(7230), + [sym__redim_keyword] = ACTIONS(7230), + [aux_sym_get_accessor_token1] = ACTIONS(7230), + [aux_sym_set_accessor_token1] = ACTIONS(7230), + [anon_sym_COMMA] = ACTIONS(7232), + [aux_sym_const_declaration_token1] = ACTIONS(7230), + [anon_sym_LPAREN] = ACTIONS(7138), + [aux_sym_as_type_clause_token2] = ACTIONS(7230), + [anon_sym_STAR] = ACTIONS(7140), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7230), + [aux_sym_visibility_token1] = ACTIONS(7230), + [aux_sym_visibility_token2] = ACTIONS(7230), + [aux_sym_elseif_fragment_token1] = ACTIONS(7230), + [aux_sym_else_fragment_token1] = ACTIONS(7230), + [aux_sym_select_statement_token1] = ACTIONS(7230), + [aux_sym__for_header_token1] = ACTIONS(7230), + [aux_sym_do_statement_token1] = ACTIONS(7230), + [aux_sym_do_condition_token1] = ACTIONS(7230), + [aux_sym_with_statement_token1] = ACTIONS(7230), + [aux_sym_exit_statement_token1] = ACTIONS(7230), + [sym_end_statement] = ACTIONS(7232), + [aux_sym_on_goto_statement_token1] = ACTIONS(7230), + [aux_sym_on_goto_statement_token2] = ACTIONS(7230), + [aux_sym_on_error_statement_token2] = ACTIONS(7230), + [sym__ambiguous_redim_statement] = ACTIONS(7232), + [aux_sym_erase_statement_token1] = ACTIONS(7230), + [aux_sym_open_statement_token1] = ACTIONS(7230), + [aux_sym_file_mode_token2] = ACTIONS(7230), + [aux_sym_file_access_token2] = ACTIONS(7230), + [aux_sym_file_lock_token2] = ACTIONS(7230), + [aux_sym_print_statement_token1] = ACTIONS(7230), + [anon_sym_PLUS] = ACTIONS(7232), + [anon_sym_DASH] = ACTIONS(7230), + [anon_sym_QMARK] = ACTIONS(7232), + [aux_sym_close_statement_token1] = ACTIONS(7230), + [aux_sym_put_statement_token1] = ACTIONS(7230), + [aux_sym_unlock_statement_token1] = ACTIONS(7230), + [aux_sym_seek_statement_token1] = ACTIONS(7230), + [sym_reset_statement] = ACTIONS(7230), + [aux_sym_raise_event_statement_token1] = ACTIONS(7230), + [sym_stop_statement] = ACTIONS(7230), + [sym_beep_statement] = ACTIONS(7230), + [aux_sym_unload_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token2] = ACTIONS(7230), + [aux_sym_def_type_statement_token3] = ACTIONS(7230), + [aux_sym_def_type_statement_token4] = ACTIONS(7230), + [aux_sym_def_type_statement_token5] = ACTIONS(7230), + [aux_sym_def_type_statement_token6] = ACTIONS(7230), + [aux_sym_def_type_statement_token7] = ACTIONS(7230), + [aux_sym_def_type_statement_token8] = ACTIONS(7230), + [aux_sym_def_type_statement_token9] = ACTIONS(7230), + [aux_sym_def_type_statement_token10] = ACTIONS(7230), + [aux_sym_def_type_statement_token11] = ACTIONS(7230), + [aux_sym_def_type_statement_token12] = ACTIONS(7230), + [aux_sym_def_type_statement_token13] = ACTIONS(7230), + [aux_sym_def_type_statement_token14] = ACTIONS(7230), + [aux_sym_call_statement_token1] = ACTIONS(7230), + [sym__ambiguous_call_statement] = ACTIONS(7230), + [aux_sym_addressof_expression_token1] = ACTIONS(7230), + [aux_sym_type_of_expression_token1] = ACTIONS(7230), + [aux_sym_unary_expression_token1] = ACTIONS(7230), + [sym_string_literal] = ACTIONS(7232), + [sym_number_literal] = ACTIONS(7232), + [aux_sym_boolean_literal_token1] = ACTIONS(7230), + [aux_sym_boolean_literal_token2] = ACTIONS(7230), + [sym_nothing_literal] = ACTIONS(7230), + [sym_null_literal] = ACTIONS(7230), + [sym_empty_literal] = ACTIONS(7230), + [sym_date_literal] = ACTIONS(7232), + [anon_sym_POUND] = ACTIONS(7230), + }, + [STATE(2465)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_array_bound_token1] = ACTIONS(4625), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(2466)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2467)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_statement_token2] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2468)] = { + [sym_identifier] = ACTIONS(7234), + [sym_newline] = ACTIONS(7236), + [anon_sym_COLON] = ACTIONS(7236), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7234), + [aux_sym_frm_property_statement_token1] = ACTIONS(7234), + [anon_sym_DOT] = ACTIONS(7234), + [anon_sym_BANG] = ACTIONS(7236), + [aux_sym__attribute_identifier_token1] = ACTIONS(7234), + [aux_sym_option_statement_token3] = ACTIONS(7234), + [aux_sym_type_declaration_token1] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7234), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7234), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7234), + [aux_sym_enum_declaration_token1] = ACTIONS(7234), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7234), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7234), + [aux_sym_declare_function_statement_token1] = ACTIONS(7234), + [aux_sym_preprocessor_const_token1] = ACTIONS(7234), + [aux_sym__property_get_header_token1] = ACTIONS(7234), + [aux_sym_event_declaration_token1] = ACTIONS(7234), + [sym_static_modifier] = ACTIONS(7234), + [sym__dim_keyword] = ACTIONS(7234), + [sym__redim_keyword] = ACTIONS(7234), + [aux_sym_get_accessor_token1] = ACTIONS(7234), + [aux_sym_set_accessor_token1] = ACTIONS(7234), + [aux_sym_const_declaration_token1] = ACTIONS(7234), + [anon_sym_LPAREN] = ACTIONS(7236), + [aux_sym_as_type_clause_token2] = ACTIONS(7234), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7234), + [aux_sym_visibility_token1] = ACTIONS(7234), + [aux_sym_visibility_token2] = ACTIONS(7234), + [aux_sym_elseif_fragment_token1] = ACTIONS(7234), + [aux_sym_else_fragment_token1] = ACTIONS(7234), + [aux_sym_select_statement_token1] = ACTIONS(7234), + [aux_sym__for_header_token1] = ACTIONS(7234), + [aux_sym_do_statement_token1] = ACTIONS(7234), + [aux_sym_do_condition_token1] = ACTIONS(7234), + [aux_sym_with_statement_token1] = ACTIONS(7234), + [aux_sym_exit_statement_token1] = ACTIONS(7234), + [sym_end_statement] = ACTIONS(7236), + [aux_sym_on_goto_statement_token1] = ACTIONS(7234), + [aux_sym_on_goto_statement_token2] = ACTIONS(7234), + [aux_sym_on_error_statement_token2] = ACTIONS(7234), + [sym__ambiguous_redim_statement] = ACTIONS(7236), + [aux_sym_erase_statement_token1] = ACTIONS(7234), + [aux_sym_open_statement_token1] = ACTIONS(7234), + [aux_sym_file_mode_token2] = ACTIONS(7234), + [aux_sym_file_access_token2] = ACTIONS(7234), + [aux_sym_file_lock_token2] = ACTIONS(7234), + [aux_sym_print_statement_token1] = ACTIONS(7234), + [anon_sym_PLUS] = ACTIONS(7236), + [anon_sym_DASH] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7234), + [anon_sym_QMARK] = ACTIONS(7236), + [aux_sym_close_statement_token1] = ACTIONS(7234), + [aux_sym_put_statement_token1] = ACTIONS(7234), + [aux_sym_unlock_statement_token1] = ACTIONS(7234), + [aux_sym_seek_statement_token1] = ACTIONS(7234), + [sym_reset_statement] = ACTIONS(7234), + [aux_sym_raise_event_statement_token1] = ACTIONS(7234), + [sym_stop_statement] = ACTIONS(7234), + [sym_beep_statement] = ACTIONS(7234), + [aux_sym_unload_statement_token1] = ACTIONS(7234), + [aux_sym_def_type_statement_token1] = ACTIONS(7234), + [aux_sym_def_type_statement_token2] = ACTIONS(7234), + [aux_sym_def_type_statement_token3] = ACTIONS(7234), + [aux_sym_def_type_statement_token4] = ACTIONS(7234), + [aux_sym_def_type_statement_token5] = ACTIONS(7234), + [aux_sym_def_type_statement_token6] = ACTIONS(7234), + [aux_sym_def_type_statement_token7] = ACTIONS(7234), + [aux_sym_def_type_statement_token8] = ACTIONS(7234), + [aux_sym_def_type_statement_token9] = ACTIONS(7234), + [aux_sym_def_type_statement_token10] = ACTIONS(7234), + [aux_sym_def_type_statement_token11] = ACTIONS(7234), + [aux_sym_def_type_statement_token12] = ACTIONS(7234), + [aux_sym_def_type_statement_token13] = ACTIONS(7234), + [aux_sym_def_type_statement_token14] = ACTIONS(7234), + [aux_sym_call_statement_token1] = ACTIONS(7234), + [sym__ambiguous_call_statement] = ACTIONS(7234), + [aux_sym_addressof_expression_token1] = ACTIONS(7234), + [aux_sym_type_of_expression_token1] = ACTIONS(7234), + [aux_sym_unary_expression_token1] = ACTIONS(7234), + [sym_string_literal] = ACTIONS(7236), + [sym_number_literal] = ACTIONS(7236), + [aux_sym_boolean_literal_token1] = ACTIONS(7234), + [aux_sym_boolean_literal_token2] = ACTIONS(7234), + [sym_nothing_literal] = ACTIONS(7234), + [sym_null_literal] = ACTIONS(7234), + [sym_empty_literal] = ACTIONS(7234), + [sym_date_literal] = ACTIONS(7236), + [anon_sym_POUND] = ACTIONS(7234), + }, + [STATE(2469)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(2470)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_declaration_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7042), + [aux_sym_enum_declaration_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7042), + [aux_sym_declare_function_statement_token1] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [aux_sym__property_get_header_token1] = ACTIONS(7042), + [aux_sym_event_declaration_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(2471)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_while_statement_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2472)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_while_statement_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(2473)] = { + [sym_identifier] = ACTIONS(6139), + [sym_newline] = ACTIONS(6141), + [anon_sym_COLON] = ACTIONS(6141), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6139), + [aux_sym_frm_property_statement_token1] = ACTIONS(6139), + [anon_sym_DOT] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6141), + [aux_sym__attribute_identifier_token1] = ACTIONS(6139), + [aux_sym_option_statement_token3] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6139), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6139), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6139), + [aux_sym_preprocessor_const_token1] = ACTIONS(6139), + [sym_static_modifier] = ACTIONS(6139), + [sym__dim_keyword] = ACTIONS(6139), + [sym__redim_keyword] = ACTIONS(6139), + [aux_sym_get_accessor_token1] = ACTIONS(6139), + [aux_sym_set_accessor_token1] = ACTIONS(6139), + [aux_sym_const_declaration_token1] = ACTIONS(6139), + [anon_sym_LPAREN] = ACTIONS(6141), + [aux_sym_as_type_clause_token2] = ACTIONS(6139), + [anon_sym_STAR] = ACTIONS(7052), + [aux_sym_array_bound_token1] = ACTIONS(7238), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6139), + [aux_sym_visibility_token1] = ACTIONS(6139), + [aux_sym_visibility_token2] = ACTIONS(6139), + [aux_sym_elseif_fragment_token1] = ACTIONS(6139), + [aux_sym_else_fragment_token1] = ACTIONS(6139), + [aux_sym_select_statement_token1] = ACTIONS(6139), + [aux_sym__for_header_token1] = ACTIONS(6139), + [aux_sym_do_statement_token1] = ACTIONS(6139), + [aux_sym_do_condition_token1] = ACTIONS(6139), + [aux_sym_with_statement_token1] = ACTIONS(6139), + [aux_sym_exit_statement_token1] = ACTIONS(6139), + [sym_end_statement] = ACTIONS(6141), + [aux_sym_on_goto_statement_token1] = ACTIONS(6139), + [aux_sym_on_goto_statement_token2] = ACTIONS(6139), + [aux_sym_on_error_statement_token2] = ACTIONS(6139), + [sym__ambiguous_redim_statement] = ACTIONS(6141), + [aux_sym_erase_statement_token1] = ACTIONS(6139), + [aux_sym_open_statement_token1] = ACTIONS(6139), + [aux_sym_file_mode_token2] = ACTIONS(6139), + [aux_sym_file_access_token2] = ACTIONS(6139), + [aux_sym_file_lock_token2] = ACTIONS(6139), + [aux_sym_print_statement_token1] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(7048), + [anon_sym_SLASH] = ACTIONS(7052), + [anon_sym_BSLASH] = ACTIONS(7054), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7056), + [anon_sym_PLUS] = ACTIONS(7058), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_AMP] = ACTIONS(7062), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7064), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7066), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7068), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7070), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7072), + [anon_sym_QMARK] = ACTIONS(6141), + [aux_sym_close_statement_token1] = ACTIONS(6139), + [aux_sym_put_statement_token1] = ACTIONS(6139), + [aux_sym_unlock_statement_token1] = ACTIONS(6139), + [aux_sym_seek_statement_token1] = ACTIONS(6139), + [sym_reset_statement] = ACTIONS(6139), + [aux_sym_raise_event_statement_token1] = ACTIONS(6139), + [sym_stop_statement] = ACTIONS(6139), + [sym_beep_statement] = ACTIONS(6139), + [aux_sym_unload_statement_token1] = ACTIONS(6139), + [aux_sym_def_type_statement_token1] = ACTIONS(6139), + [aux_sym_def_type_statement_token2] = ACTIONS(6139), + [aux_sym_def_type_statement_token3] = ACTIONS(6139), + [aux_sym_def_type_statement_token4] = ACTIONS(6139), + [aux_sym_def_type_statement_token5] = ACTIONS(6139), + [aux_sym_def_type_statement_token6] = ACTIONS(6139), + [aux_sym_def_type_statement_token7] = ACTIONS(6139), + [aux_sym_def_type_statement_token8] = ACTIONS(6139), + [aux_sym_def_type_statement_token9] = ACTIONS(6139), + [aux_sym_def_type_statement_token10] = ACTIONS(6139), + [aux_sym_def_type_statement_token11] = ACTIONS(6139), + [aux_sym_def_type_statement_token12] = ACTIONS(6139), + [aux_sym_def_type_statement_token13] = ACTIONS(6139), + [aux_sym_def_type_statement_token14] = ACTIONS(6139), + [aux_sym_call_statement_token1] = ACTIONS(6139), + [sym__ambiguous_call_statement] = ACTIONS(6139), + [aux_sym_addressof_expression_token1] = ACTIONS(6139), + [aux_sym_type_of_expression_token1] = ACTIONS(6139), + [aux_sym_unary_expression_token1] = ACTIONS(6139), + [sym_string_literal] = ACTIONS(6141), + [sym_number_literal] = ACTIONS(6141), + [aux_sym_boolean_literal_token1] = ACTIONS(6139), + [aux_sym_boolean_literal_token2] = ACTIONS(6139), + [sym_nothing_literal] = ACTIONS(6139), + [sym_null_literal] = ACTIONS(6139), + [sym_empty_literal] = ACTIONS(6139), + [sym_date_literal] = ACTIONS(6141), + [anon_sym_POUND] = ACTIONS(6139), + }, + [STATE(2474)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token3] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(2475)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token3] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(2476)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2477)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7076), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2478)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7076), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2479)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_select_statement_token2] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2480)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7074), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7076), + [anon_sym_SLASH] = ACTIONS(7074), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2481)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7074), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7076), + [anon_sym_SLASH] = ACTIONS(7074), + [anon_sym_BSLASH] = ACTIONS(7078), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2482)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7074), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7076), + [anon_sym_SLASH] = ACTIONS(7074), + [anon_sym_BSLASH] = ACTIONS(7078), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7080), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2483)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7048), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2484)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7074), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7076), + [anon_sym_SLASH] = ACTIONS(7074), + [anon_sym_BSLASH] = ACTIONS(7078), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7080), + [anon_sym_PLUS] = ACTIONS(7082), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2485)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(7026), + [anon_sym_BANG] = ACTIONS(7028), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_statement_token2] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2486)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7048), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2487)] = { + [sym_identifier] = ACTIONS(5555), + [sym_newline] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(4399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5555), + [aux_sym_frm_property_statement_token1] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(7240), + [anon_sym_BANG] = ACTIONS(6987), + [aux_sym__attribute_identifier_token1] = ACTIONS(5555), + [aux_sym_option_statement_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5555), + [aux_sym_preprocessor_const_token1] = ACTIONS(5555), + [sym_static_modifier] = ACTIONS(5555), + [sym__dim_keyword] = ACTIONS(5555), + [sym__redim_keyword] = ACTIONS(5555), + [aux_sym_byval_modifier_token1] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5555), + [aux_sym_set_accessor_token1] = ACTIONS(5555), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5555), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5555), + [aux_sym_visibility_token1] = ACTIONS(5555), + [aux_sym_visibility_token2] = ACTIONS(5555), + [aux_sym_elseif_fragment_token1] = ACTIONS(5555), + [aux_sym_else_fragment_token1] = ACTIONS(5555), + [aux_sym_select_statement_token1] = ACTIONS(5555), + [aux_sym__for_header_token1] = ACTIONS(5555), + [aux_sym_do_statement_token1] = ACTIONS(5555), + [aux_sym_do_condition_token1] = ACTIONS(5555), + [aux_sym_with_statement_token1] = ACTIONS(5555), + [aux_sym_exit_statement_token1] = ACTIONS(5555), + [sym_end_statement] = ACTIONS(4399), + [aux_sym_on_goto_statement_token1] = ACTIONS(5555), + [aux_sym_on_goto_statement_token2] = ACTIONS(5555), + [aux_sym_on_error_statement_token2] = ACTIONS(5555), + [sym__ambiguous_redim_statement] = ACTIONS(4399), + [aux_sym_erase_statement_token1] = ACTIONS(5555), + [aux_sym_open_statement_token1] = ACTIONS(5555), + [aux_sym_file_mode_token2] = ACTIONS(5555), + [aux_sym_file_access_token2] = ACTIONS(5555), + [aux_sym_file_lock_token2] = ACTIONS(5555), + [aux_sym_print_statement_token1] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(5555), + [aux_sym_put_statement_token1] = ACTIONS(5555), + [aux_sym_unlock_statement_token1] = ACTIONS(5555), + [aux_sym_seek_statement_token1] = ACTIONS(5555), + [sym_reset_statement] = ACTIONS(5555), + [aux_sym_raise_event_statement_token1] = ACTIONS(5555), + [sym_stop_statement] = ACTIONS(5555), + [sym_beep_statement] = ACTIONS(5555), + [aux_sym_unload_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token2] = ACTIONS(5555), + [aux_sym_def_type_statement_token3] = ACTIONS(5555), + [aux_sym_def_type_statement_token4] = ACTIONS(5555), + [aux_sym_def_type_statement_token5] = ACTIONS(5555), + [aux_sym_def_type_statement_token6] = ACTIONS(5555), + [aux_sym_def_type_statement_token7] = ACTIONS(5555), + [aux_sym_def_type_statement_token8] = ACTIONS(5555), + [aux_sym_def_type_statement_token9] = ACTIONS(5555), + [aux_sym_def_type_statement_token10] = ACTIONS(5555), + [aux_sym_def_type_statement_token11] = ACTIONS(5555), + [aux_sym_def_type_statement_token12] = ACTIONS(5555), + [aux_sym_def_type_statement_token13] = ACTIONS(5555), + [aux_sym_def_type_statement_token14] = ACTIONS(5555), + [aux_sym_call_statement_token1] = ACTIONS(5555), + [sym__ambiguous_call_statement] = ACTIONS(5555), + [aux_sym_addressof_expression_token1] = ACTIONS(5555), + [aux_sym_type_of_expression_token1] = ACTIONS(5555), + [aux_sym_unary_expression_token1] = ACTIONS(5555), + [sym_string_literal] = ACTIONS(4399), + [sym_number_literal] = ACTIONS(4399), + [aux_sym_boolean_literal_token1] = ACTIONS(5555), + [aux_sym_boolean_literal_token2] = ACTIONS(5555), + [sym_nothing_literal] = ACTIONS(5555), + [sym_null_literal] = ACTIONS(5555), + [sym_empty_literal] = ACTIONS(5555), + [sym_date_literal] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(5555), + }, + [STATE(2488)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7052), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7048), + [anon_sym_SLASH] = ACTIONS(7052), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2489)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7074), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7076), + [anon_sym_SLASH] = ACTIONS(7074), + [anon_sym_BSLASH] = ACTIONS(7078), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7080), + [anon_sym_PLUS] = ACTIONS(7082), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7086), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2490)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7074), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7076), + [anon_sym_SLASH] = ACTIONS(7074), + [anon_sym_BSLASH] = ACTIONS(7078), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7080), + [anon_sym_PLUS] = ACTIONS(7082), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7086), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7118), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2491)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7074), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7076), + [anon_sym_SLASH] = ACTIONS(7074), + [anon_sym_BSLASH] = ACTIONS(7078), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7080), + [anon_sym_PLUS] = ACTIONS(7082), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7086), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7118), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7120), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2492)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7074), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7076), + [anon_sym_SLASH] = ACTIONS(7074), + [anon_sym_BSLASH] = ACTIONS(7078), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7080), + [anon_sym_PLUS] = ACTIONS(7082), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7086), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7118), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7120), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7122), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2493)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7052), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7048), + [anon_sym_SLASH] = ACTIONS(7052), + [anon_sym_BSLASH] = ACTIONS(7054), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2494)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7052), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7048), + [anon_sym_SLASH] = ACTIONS(7052), + [anon_sym_BSLASH] = ACTIONS(7054), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7056), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2495)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7052), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7048), + [anon_sym_SLASH] = ACTIONS(7052), + [anon_sym_BSLASH] = ACTIONS(7054), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7056), + [anon_sym_PLUS] = ACTIONS(7058), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2496)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7052), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7048), + [anon_sym_SLASH] = ACTIONS(7052), + [anon_sym_BSLASH] = ACTIONS(7054), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7056), + [anon_sym_PLUS] = ACTIONS(7058), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_AMP] = ACTIONS(7062), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2497)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7052), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7048), + [anon_sym_SLASH] = ACTIONS(7052), + [anon_sym_BSLASH] = ACTIONS(7054), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7056), + [anon_sym_PLUS] = ACTIONS(7058), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_AMP] = ACTIONS(7062), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7064), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2498)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7074), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7076), + [anon_sym_SLASH] = ACTIONS(7074), + [anon_sym_BSLASH] = ACTIONS(7078), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7080), + [anon_sym_PLUS] = ACTIONS(7082), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7086), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7118), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7120), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7122), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7124), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2499)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7052), + [aux_sym_array_bound_token1] = ACTIONS(4647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7048), + [anon_sym_SLASH] = ACTIONS(7052), + [anon_sym_BSLASH] = ACTIONS(7054), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7056), + [anon_sym_PLUS] = ACTIONS(7058), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_AMP] = ACTIONS(7062), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2500)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2500), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(7242), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2501)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7052), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7048), + [anon_sym_SLASH] = ACTIONS(7052), + [anon_sym_BSLASH] = ACTIONS(7054), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7056), + [anon_sym_PLUS] = ACTIONS(7058), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_AMP] = ACTIONS(7062), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7064), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7066), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2502)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_statement_token2] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(2503)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7052), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7048), + [anon_sym_SLASH] = ACTIONS(7052), + [anon_sym_BSLASH] = ACTIONS(7054), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7056), + [anon_sym_PLUS] = ACTIONS(7058), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_AMP] = ACTIONS(7062), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7064), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7066), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7068), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2504)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(5725), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(5723), + [anon_sym_SLASH] = ACTIONS(5725), + [anon_sym_BSLASH] = ACTIONS(5727), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5729), + [anon_sym_PLUS] = ACTIONS(5731), + [anon_sym_DASH] = ACTIONS(5733), + [anon_sym_AMP] = ACTIONS(5735), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2505)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2500), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2506)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_statement_token2] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(2507)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2508)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(2509)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(6985), + [anon_sym_BANG] = ACTIONS(6987), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2510)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(2511)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_while_statement_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(2512)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_statement_token2] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2513)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(2514)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2515)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2516)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_while_statement_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(2517)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_statement_token2] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2518)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token3] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2519)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(7074), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token3] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(7076), + [anon_sym_SLASH] = ACTIONS(7074), + [anon_sym_BSLASH] = ACTIONS(7078), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7080), + [anon_sym_PLUS] = ACTIONS(7082), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7086), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7118), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7120), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7122), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7124), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7126), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(2520)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7052), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7048), + [anon_sym_SLASH] = ACTIONS(7052), + [anon_sym_BSLASH] = ACTIONS(7054), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7056), + [anon_sym_PLUS] = ACTIONS(7058), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_AMP] = ACTIONS(7062), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7064), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7066), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7068), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7070), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2521)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2522)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2523)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_byval_modifier_token1] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_SEMI] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(2524)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2525)] = { + [sym_identifier] = ACTIONS(5555), + [sym_newline] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(7245), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5555), + [aux_sym_frm_property_statement_token1] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(7247), + [anon_sym_BANG] = ACTIONS(6970), + [aux_sym__attribute_identifier_token1] = ACTIONS(5555), + [aux_sym_option_statement_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5555), + [aux_sym_preprocessor_const_token1] = ACTIONS(5555), + [sym_static_modifier] = ACTIONS(5555), + [sym__dim_keyword] = ACTIONS(5555), + [sym__redim_keyword] = ACTIONS(5555), + [aux_sym_byval_modifier_token1] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5555), + [aux_sym_set_accessor_token1] = ACTIONS(5555), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5555), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5555), + [aux_sym_visibility_token1] = ACTIONS(5555), + [aux_sym_visibility_token2] = ACTIONS(5555), + [aux_sym_elseif_fragment_token1] = ACTIONS(5555), + [aux_sym_else_fragment_token1] = ACTIONS(5555), + [aux_sym_select_statement_token1] = ACTIONS(5555), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5555), + [aux_sym__for_header_token1] = ACTIONS(5555), + [aux_sym_do_statement_token1] = ACTIONS(5555), + [aux_sym_do_condition_token1] = ACTIONS(5555), + [aux_sym_with_statement_token1] = ACTIONS(5555), + [aux_sym_exit_statement_token1] = ACTIONS(5555), + [sym_end_statement] = ACTIONS(4399), + [aux_sym_on_goto_statement_token1] = ACTIONS(5555), + [aux_sym_on_goto_statement_token2] = ACTIONS(5555), + [aux_sym_on_error_statement_token2] = ACTIONS(5555), + [sym__ambiguous_redim_statement] = ACTIONS(4399), + [aux_sym_erase_statement_token1] = ACTIONS(5555), + [aux_sym_open_statement_token1] = ACTIONS(5555), + [aux_sym_file_mode_token2] = ACTIONS(5555), + [aux_sym_file_access_token2] = ACTIONS(5555), + [aux_sym_file_lock_token2] = ACTIONS(5555), + [aux_sym_print_statement_token1] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(5555), + [aux_sym_put_statement_token1] = ACTIONS(5555), + [aux_sym_unlock_statement_token1] = ACTIONS(5555), + [aux_sym_seek_statement_token1] = ACTIONS(5555), + [sym_reset_statement] = ACTIONS(5555), + [aux_sym_raise_event_statement_token1] = ACTIONS(5555), + [sym_stop_statement] = ACTIONS(5555), + [sym_beep_statement] = ACTIONS(5555), + [aux_sym_unload_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token2] = ACTIONS(5555), + [aux_sym_def_type_statement_token3] = ACTIONS(5555), + [aux_sym_def_type_statement_token4] = ACTIONS(5555), + [aux_sym_def_type_statement_token5] = ACTIONS(5555), + [aux_sym_def_type_statement_token6] = ACTIONS(5555), + [aux_sym_def_type_statement_token7] = ACTIONS(5555), + [aux_sym_def_type_statement_token8] = ACTIONS(5555), + [aux_sym_def_type_statement_token9] = ACTIONS(5555), + [aux_sym_def_type_statement_token10] = ACTIONS(5555), + [aux_sym_def_type_statement_token11] = ACTIONS(5555), + [aux_sym_def_type_statement_token12] = ACTIONS(5555), + [aux_sym_def_type_statement_token13] = ACTIONS(5555), + [aux_sym_def_type_statement_token14] = ACTIONS(5555), + [aux_sym_call_statement_token1] = ACTIONS(5555), + [sym__ambiguous_call_statement] = ACTIONS(5555), + [aux_sym_addressof_expression_token1] = ACTIONS(5555), + [aux_sym_type_of_expression_token1] = ACTIONS(5555), + [aux_sym_unary_expression_token1] = ACTIONS(5555), + [sym_string_literal] = ACTIONS(4399), + [sym_number_literal] = ACTIONS(4399), + [aux_sym_boolean_literal_token1] = ACTIONS(5555), + [aux_sym_boolean_literal_token2] = ACTIONS(5555), + [sym_nothing_literal] = ACTIONS(5555), + [sym_null_literal] = ACTIONS(5555), + [sym_empty_literal] = ACTIONS(5555), + [sym_date_literal] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(5555), + }, + [STATE(2526)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token3] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(2527)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2528)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(2529)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token3] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(2530)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token3] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(2531)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_select_statement_token2] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(2532)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_statement_token2] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2533)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_while_statement_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(2534)] = { + [sym_identifier] = ACTIONS(5555), + [sym_newline] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(4399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5555), + [aux_sym_frm_property_statement_token1] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(7247), + [anon_sym_BANG] = ACTIONS(6970), + [aux_sym__attribute_identifier_token1] = ACTIONS(5555), + [aux_sym_option_statement_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5555), + [aux_sym_preprocessor_const_token1] = ACTIONS(5555), + [sym_static_modifier] = ACTIONS(5555), + [sym__dim_keyword] = ACTIONS(5555), + [sym__redim_keyword] = ACTIONS(5555), + [aux_sym_byval_modifier_token1] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5555), + [aux_sym_set_accessor_token1] = ACTIONS(5555), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5555), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5555), + [aux_sym_visibility_token1] = ACTIONS(5555), + [aux_sym_visibility_token2] = ACTIONS(5555), + [aux_sym_elseif_fragment_token1] = ACTIONS(5555), + [aux_sym_else_fragment_token1] = ACTIONS(5555), + [aux_sym_select_statement_token1] = ACTIONS(5555), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5555), + [aux_sym__for_header_token1] = ACTIONS(5555), + [aux_sym_do_statement_token1] = ACTIONS(5555), + [aux_sym_do_condition_token1] = ACTIONS(5555), + [aux_sym_with_statement_token1] = ACTIONS(5555), + [aux_sym_exit_statement_token1] = ACTIONS(5555), + [sym_end_statement] = ACTIONS(4399), + [aux_sym_on_goto_statement_token1] = ACTIONS(5555), + [aux_sym_on_goto_statement_token2] = ACTIONS(5555), + [aux_sym_on_error_statement_token2] = ACTIONS(5555), + [sym__ambiguous_redim_statement] = ACTIONS(4399), + [aux_sym_erase_statement_token1] = ACTIONS(5555), + [aux_sym_open_statement_token1] = ACTIONS(5555), + [aux_sym_file_mode_token2] = ACTIONS(5555), + [aux_sym_file_access_token2] = ACTIONS(5555), + [aux_sym_file_lock_token2] = ACTIONS(5555), + [aux_sym_print_statement_token1] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(5555), + [aux_sym_put_statement_token1] = ACTIONS(5555), + [aux_sym_unlock_statement_token1] = ACTIONS(5555), + [aux_sym_seek_statement_token1] = ACTIONS(5555), + [sym_reset_statement] = ACTIONS(5555), + [aux_sym_raise_event_statement_token1] = ACTIONS(5555), + [sym_stop_statement] = ACTIONS(5555), + [sym_beep_statement] = ACTIONS(5555), + [aux_sym_unload_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token2] = ACTIONS(5555), + [aux_sym_def_type_statement_token3] = ACTIONS(5555), + [aux_sym_def_type_statement_token4] = ACTIONS(5555), + [aux_sym_def_type_statement_token5] = ACTIONS(5555), + [aux_sym_def_type_statement_token6] = ACTIONS(5555), + [aux_sym_def_type_statement_token7] = ACTIONS(5555), + [aux_sym_def_type_statement_token8] = ACTIONS(5555), + [aux_sym_def_type_statement_token9] = ACTIONS(5555), + [aux_sym_def_type_statement_token10] = ACTIONS(5555), + [aux_sym_def_type_statement_token11] = ACTIONS(5555), + [aux_sym_def_type_statement_token12] = ACTIONS(5555), + [aux_sym_def_type_statement_token13] = ACTIONS(5555), + [aux_sym_def_type_statement_token14] = ACTIONS(5555), + [aux_sym_call_statement_token1] = ACTIONS(5555), + [sym__ambiguous_call_statement] = ACTIONS(5555), + [aux_sym_addressof_expression_token1] = ACTIONS(5555), + [aux_sym_type_of_expression_token1] = ACTIONS(5555), + [aux_sym_unary_expression_token1] = ACTIONS(5555), + [sym_string_literal] = ACTIONS(4399), + [sym_number_literal] = ACTIONS(4399), + [aux_sym_boolean_literal_token1] = ACTIONS(5555), + [aux_sym_boolean_literal_token2] = ACTIONS(5555), + [sym_nothing_literal] = ACTIONS(5555), + [sym_null_literal] = ACTIONS(5555), + [sym_empty_literal] = ACTIONS(5555), + [sym_date_literal] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(5555), + }, + [STATE(2535)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_select_statement_token2] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2536)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(2537)] = { + [sym_identifier] = ACTIONS(5555), + [sym_newline] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(7249), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5555), + [aux_sym_frm_property_statement_token1] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(7240), + [anon_sym_BANG] = ACTIONS(6987), + [aux_sym__attribute_identifier_token1] = ACTIONS(5555), + [aux_sym_option_statement_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5555), + [aux_sym_preprocessor_const_token1] = ACTIONS(5555), + [sym_static_modifier] = ACTIONS(5555), + [sym__dim_keyword] = ACTIONS(5555), + [sym__redim_keyword] = ACTIONS(5555), + [aux_sym_byval_modifier_token1] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5555), + [aux_sym_set_accessor_token1] = ACTIONS(5555), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5555), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5555), + [aux_sym_visibility_token1] = ACTIONS(5555), + [aux_sym_visibility_token2] = ACTIONS(5555), + [aux_sym_elseif_fragment_token1] = ACTIONS(5555), + [aux_sym_else_fragment_token1] = ACTIONS(5555), + [aux_sym_select_statement_token1] = ACTIONS(5555), + [aux_sym__for_header_token1] = ACTIONS(5555), + [aux_sym_do_statement_token1] = ACTIONS(5555), + [aux_sym_do_condition_token1] = ACTIONS(5555), + [aux_sym_with_statement_token1] = ACTIONS(5555), + [aux_sym_exit_statement_token1] = ACTIONS(5555), + [sym_end_statement] = ACTIONS(4399), + [aux_sym_on_goto_statement_token1] = ACTIONS(5555), + [aux_sym_on_goto_statement_token2] = ACTIONS(5555), + [aux_sym_on_error_statement_token2] = ACTIONS(5555), + [sym__ambiguous_redim_statement] = ACTIONS(4399), + [aux_sym_erase_statement_token1] = ACTIONS(5555), + [aux_sym_open_statement_token1] = ACTIONS(5555), + [aux_sym_file_mode_token2] = ACTIONS(5555), + [aux_sym_file_access_token2] = ACTIONS(5555), + [aux_sym_file_lock_token2] = ACTIONS(5555), + [aux_sym_print_statement_token1] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(5555), + [aux_sym_put_statement_token1] = ACTIONS(5555), + [aux_sym_unlock_statement_token1] = ACTIONS(5555), + [aux_sym_seek_statement_token1] = ACTIONS(5555), + [sym_reset_statement] = ACTIONS(5555), + [aux_sym_raise_event_statement_token1] = ACTIONS(5555), + [sym_stop_statement] = ACTIONS(5555), + [sym_beep_statement] = ACTIONS(5555), + [aux_sym_unload_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token2] = ACTIONS(5555), + [aux_sym_def_type_statement_token3] = ACTIONS(5555), + [aux_sym_def_type_statement_token4] = ACTIONS(5555), + [aux_sym_def_type_statement_token5] = ACTIONS(5555), + [aux_sym_def_type_statement_token6] = ACTIONS(5555), + [aux_sym_def_type_statement_token7] = ACTIONS(5555), + [aux_sym_def_type_statement_token8] = ACTIONS(5555), + [aux_sym_def_type_statement_token9] = ACTIONS(5555), + [aux_sym_def_type_statement_token10] = ACTIONS(5555), + [aux_sym_def_type_statement_token11] = ACTIONS(5555), + [aux_sym_def_type_statement_token12] = ACTIONS(5555), + [aux_sym_def_type_statement_token13] = ACTIONS(5555), + [aux_sym_def_type_statement_token14] = ACTIONS(5555), + [aux_sym_call_statement_token1] = ACTIONS(5555), + [sym__ambiguous_call_statement] = ACTIONS(5555), + [aux_sym_addressof_expression_token1] = ACTIONS(5555), + [aux_sym_type_of_expression_token1] = ACTIONS(5555), + [aux_sym_unary_expression_token1] = ACTIONS(5555), + [sym_string_literal] = ACTIONS(4399), + [sym_number_literal] = ACTIONS(4399), + [aux_sym_boolean_literal_token1] = ACTIONS(5555), + [aux_sym_boolean_literal_token2] = ACTIONS(5555), + [sym_nothing_literal] = ACTIONS(5555), + [sym_null_literal] = ACTIONS(5555), + [sym_empty_literal] = ACTIONS(5555), + [sym_date_literal] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(5555), + }, + [STATE(2538)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_select_statement_token2] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(2539)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_statement_token2] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(2540)] = { + [sym_argument_list] = STATE(2888), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_BANG] = ACTIONS(7253), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5807), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2541)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_byval_modifier_token1] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_SEMI] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(2542)] = { + [sym_identifier] = ACTIONS(6117), + [sym_newline] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6117), + [aux_sym_frm_property_statement_token1] = ACTIONS(6117), + [anon_sym_DOT] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6119), + [aux_sym__attribute_identifier_token1] = ACTIONS(6117), + [aux_sym_option_statement_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6117), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6117), + [aux_sym_preprocessor_const_token1] = ACTIONS(6117), + [sym_static_modifier] = ACTIONS(6117), + [sym__dim_keyword] = ACTIONS(6117), + [sym__redim_keyword] = ACTIONS(6117), + [aux_sym_get_accessor_token1] = ACTIONS(6117), + [aux_sym_set_accessor_token1] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6119), + [aux_sym_const_declaration_token1] = ACTIONS(6117), + [anon_sym_LPAREN] = ACTIONS(6119), + [aux_sym_as_type_clause_token2] = ACTIONS(6117), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6117), + [aux_sym_visibility_token1] = ACTIONS(6117), + [aux_sym_visibility_token2] = ACTIONS(6117), + [aux_sym_elseif_fragment_token1] = ACTIONS(6117), + [aux_sym_else_fragment_token1] = ACTIONS(6117), + [aux_sym_select_statement_token1] = ACTIONS(6117), + [aux_sym__for_header_token1] = ACTIONS(6117), + [aux_sym_do_statement_token1] = ACTIONS(6117), + [aux_sym_do_condition_token1] = ACTIONS(6117), + [aux_sym_with_statement_token1] = ACTIONS(6117), + [aux_sym_exit_statement_token1] = ACTIONS(6117), + [sym_end_statement] = ACTIONS(6119), + [aux_sym_on_goto_statement_token1] = ACTIONS(6117), + [aux_sym_on_goto_statement_token2] = ACTIONS(6117), + [aux_sym_on_error_statement_token2] = ACTIONS(6117), + [sym__ambiguous_redim_statement] = ACTIONS(6119), + [aux_sym_erase_statement_token1] = ACTIONS(6117), + [aux_sym_open_statement_token1] = ACTIONS(6117), + [aux_sym_file_mode_token2] = ACTIONS(6117), + [aux_sym_file_access_token2] = ACTIONS(6117), + [aux_sym_file_lock_token2] = ACTIONS(6117), + [aux_sym_print_statement_token1] = ACTIONS(6117), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5532), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5534), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5538), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5599), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5601), + [anon_sym_QMARK] = ACTIONS(6119), + [aux_sym_close_statement_token1] = ACTIONS(6117), + [aux_sym_put_statement_token1] = ACTIONS(6117), + [aux_sym_unlock_statement_token1] = ACTIONS(6117), + [aux_sym_seek_statement_token1] = ACTIONS(6117), + [sym_reset_statement] = ACTIONS(6117), + [aux_sym_raise_event_statement_token1] = ACTIONS(6117), + [sym_stop_statement] = ACTIONS(6117), + [sym_beep_statement] = ACTIONS(6117), + [aux_sym_unload_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token2] = ACTIONS(6117), + [aux_sym_def_type_statement_token3] = ACTIONS(6117), + [aux_sym_def_type_statement_token4] = ACTIONS(6117), + [aux_sym_def_type_statement_token5] = ACTIONS(6117), + [aux_sym_def_type_statement_token6] = ACTIONS(6117), + [aux_sym_def_type_statement_token7] = ACTIONS(6117), + [aux_sym_def_type_statement_token8] = ACTIONS(6117), + [aux_sym_def_type_statement_token9] = ACTIONS(6117), + [aux_sym_def_type_statement_token10] = ACTIONS(6117), + [aux_sym_def_type_statement_token11] = ACTIONS(6117), + [aux_sym_def_type_statement_token12] = ACTIONS(6117), + [aux_sym_def_type_statement_token13] = ACTIONS(6117), + [aux_sym_def_type_statement_token14] = ACTIONS(6117), + [aux_sym_call_statement_token1] = ACTIONS(6117), + [sym__ambiguous_call_statement] = ACTIONS(6117), + [aux_sym_addressof_expression_token1] = ACTIONS(6117), + [aux_sym_type_of_expression_token1] = ACTIONS(6117), + [aux_sym_unary_expression_token1] = ACTIONS(6117), + [sym_string_literal] = ACTIONS(6119), + [sym_number_literal] = ACTIONS(6119), + [aux_sym_boolean_literal_token1] = ACTIONS(6117), + [aux_sym_boolean_literal_token2] = ACTIONS(6117), + [sym_nothing_literal] = ACTIONS(6117), + [sym_null_literal] = ACTIONS(6117), + [sym_empty_literal] = ACTIONS(6117), + [sym_date_literal] = ACTIONS(6119), + [anon_sym_POUND] = ACTIONS(6117), + }, + [STATE(2543)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(5566), + [sym_newline] = ACTIONS(5568), + [anon_sym_COLON] = ACTIONS(5568), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5566), + [aux_sym_frm_property_statement_token1] = ACTIONS(5566), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_BANG] = ACTIONS(5568), + [aux_sym__attribute_identifier_token1] = ACTIONS(5566), + [aux_sym_option_statement_token3] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5566), + [aux_sym_preprocessor_const_token1] = ACTIONS(5566), + [sym_static_modifier] = ACTIONS(5566), + [sym__dim_keyword] = ACTIONS(5566), + [sym__redim_keyword] = ACTIONS(5566), + [aux_sym_get_accessor_token1] = ACTIONS(5566), + [aux_sym_set_accessor_token1] = ACTIONS(5566), + [anon_sym_COMMA] = ACTIONS(7255), + [aux_sym_const_declaration_token1] = ACTIONS(5566), + [anon_sym_LPAREN] = ACTIONS(5568), + [aux_sym_as_type_clause_token2] = ACTIONS(5566), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5566), + [aux_sym_visibility_token1] = ACTIONS(5566), + [aux_sym_visibility_token2] = ACTIONS(5566), + [aux_sym_elseif_fragment_token1] = ACTIONS(5566), + [aux_sym_else_fragment_token1] = ACTIONS(5566), + [aux_sym_select_statement_token1] = ACTIONS(5566), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5566), + [aux_sym__for_header_token1] = ACTIONS(5566), + [aux_sym_do_statement_token1] = ACTIONS(5566), + [aux_sym_do_condition_token1] = ACTIONS(5566), + [aux_sym_with_statement_token1] = ACTIONS(5566), + [aux_sym_exit_statement_token1] = ACTIONS(5566), + [sym_end_statement] = ACTIONS(5568), + [aux_sym_on_goto_statement_token1] = ACTIONS(5566), + [aux_sym_on_goto_statement_token2] = ACTIONS(5566), + [aux_sym_on_error_statement_token2] = ACTIONS(5566), + [sym__ambiguous_redim_statement] = ACTIONS(5568), + [aux_sym_erase_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_file_mode_token2] = ACTIONS(5566), + [aux_sym_file_access_token2] = ACTIONS(5566), + [aux_sym_file_lock_token2] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(7255), + [anon_sym_QMARK] = ACTIONS(5568), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_put_statement_token1] = ACTIONS(5566), + [aux_sym_unlock_statement_token1] = ACTIONS(5566), + [aux_sym_seek_statement_token1] = ACTIONS(5566), + [sym_reset_statement] = ACTIONS(5566), + [aux_sym_raise_event_statement_token1] = ACTIONS(5566), + [sym_stop_statement] = ACTIONS(5566), + [sym_beep_statement] = ACTIONS(5566), + [aux_sym_unload_statement_token1] = ACTIONS(5566), + [aux_sym_def_type_statement_token1] = ACTIONS(5566), + [aux_sym_def_type_statement_token2] = ACTIONS(5566), + [aux_sym_def_type_statement_token3] = ACTIONS(5566), + [aux_sym_def_type_statement_token4] = ACTIONS(5566), + [aux_sym_def_type_statement_token5] = ACTIONS(5566), + [aux_sym_def_type_statement_token6] = ACTIONS(5566), + [aux_sym_def_type_statement_token7] = ACTIONS(5566), + [aux_sym_def_type_statement_token8] = ACTIONS(5566), + [aux_sym_def_type_statement_token9] = ACTIONS(5566), + [aux_sym_def_type_statement_token10] = ACTIONS(5566), + [aux_sym_def_type_statement_token11] = ACTIONS(5566), + [aux_sym_def_type_statement_token12] = ACTIONS(5566), + [aux_sym_def_type_statement_token13] = ACTIONS(5566), + [aux_sym_def_type_statement_token14] = ACTIONS(5566), + [aux_sym_call_statement_token1] = ACTIONS(5566), + [sym__ambiguous_call_statement] = ACTIONS(5566), + [aux_sym_addressof_expression_token1] = ACTIONS(5566), + [aux_sym_type_of_expression_token1] = ACTIONS(5566), + [aux_sym_unary_expression_token1] = ACTIONS(5566), + [sym_string_literal] = ACTIONS(5568), + [sym_number_literal] = ACTIONS(5568), + [aux_sym_boolean_literal_token1] = ACTIONS(5566), + [aux_sym_boolean_literal_token2] = ACTIONS(5566), + [sym_nothing_literal] = ACTIONS(5566), + [sym_null_literal] = ACTIONS(5566), + [sym_empty_literal] = ACTIONS(5566), + [sym_date_literal] = ACTIONS(5568), + [anon_sym_POUND] = ACTIONS(5566), + }, + [STATE(2544)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(5662), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(5660), + [anon_sym_SLASH] = ACTIONS(5662), + [anon_sym_BSLASH] = ACTIONS(5664), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5666), + [anon_sym_PLUS] = ACTIONS(5668), + [anon_sym_DASH] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5672), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2545)] = { + [sym_identifier] = ACTIONS(5555), + [sym_newline] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(4399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5555), + [aux_sym_frm_property_statement_token1] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(7132), + [anon_sym_BANG] = ACTIONS(7020), + [aux_sym__attribute_identifier_token1] = ACTIONS(5555), + [aux_sym_option_statement_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5555), + [aux_sym_preprocessor_const_token1] = ACTIONS(5555), + [sym_static_modifier] = ACTIONS(5555), + [sym__dim_keyword] = ACTIONS(5555), + [sym__redim_keyword] = ACTIONS(5555), + [aux_sym_byval_modifier_token1] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5555), + [aux_sym_set_accessor_token1] = ACTIONS(5555), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5555), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5555), + [aux_sym_visibility_token1] = ACTIONS(5555), + [aux_sym_visibility_token2] = ACTIONS(5555), + [aux_sym_elseif_fragment_token1] = ACTIONS(5555), + [aux_sym_else_fragment_token1] = ACTIONS(5555), + [aux_sym_select_statement_token1] = ACTIONS(5555), + [aux_sym_select_statement_token2] = ACTIONS(5555), + [aux_sym__for_header_token1] = ACTIONS(5555), + [aux_sym_do_statement_token1] = ACTIONS(5555), + [aux_sym_do_condition_token1] = ACTIONS(5555), + [aux_sym_with_statement_token1] = ACTIONS(5555), + [aux_sym_exit_statement_token1] = ACTIONS(5555), + [sym_end_statement] = ACTIONS(4399), + [aux_sym_on_goto_statement_token1] = ACTIONS(5555), + [aux_sym_on_goto_statement_token2] = ACTIONS(5555), + [aux_sym_on_error_statement_token2] = ACTIONS(5555), + [sym__ambiguous_redim_statement] = ACTIONS(4399), + [aux_sym_erase_statement_token1] = ACTIONS(5555), + [aux_sym_open_statement_token1] = ACTIONS(5555), + [aux_sym_file_mode_token2] = ACTIONS(5555), + [aux_sym_file_access_token2] = ACTIONS(5555), + [aux_sym_file_lock_token2] = ACTIONS(5555), + [aux_sym_print_statement_token1] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(5555), + [aux_sym_put_statement_token1] = ACTIONS(5555), + [aux_sym_unlock_statement_token1] = ACTIONS(5555), + [aux_sym_seek_statement_token1] = ACTIONS(5555), + [sym_reset_statement] = ACTIONS(5555), + [aux_sym_raise_event_statement_token1] = ACTIONS(5555), + [sym_stop_statement] = ACTIONS(5555), + [sym_beep_statement] = ACTIONS(5555), + [aux_sym_unload_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token2] = ACTIONS(5555), + [aux_sym_def_type_statement_token3] = ACTIONS(5555), + [aux_sym_def_type_statement_token4] = ACTIONS(5555), + [aux_sym_def_type_statement_token5] = ACTIONS(5555), + [aux_sym_def_type_statement_token6] = ACTIONS(5555), + [aux_sym_def_type_statement_token7] = ACTIONS(5555), + [aux_sym_def_type_statement_token8] = ACTIONS(5555), + [aux_sym_def_type_statement_token9] = ACTIONS(5555), + [aux_sym_def_type_statement_token10] = ACTIONS(5555), + [aux_sym_def_type_statement_token11] = ACTIONS(5555), + [aux_sym_def_type_statement_token12] = ACTIONS(5555), + [aux_sym_def_type_statement_token13] = ACTIONS(5555), + [aux_sym_def_type_statement_token14] = ACTIONS(5555), + [aux_sym_call_statement_token1] = ACTIONS(5555), + [sym__ambiguous_call_statement] = ACTIONS(5555), + [aux_sym_addressof_expression_token1] = ACTIONS(5555), + [aux_sym_type_of_expression_token1] = ACTIONS(5555), + [aux_sym_unary_expression_token1] = ACTIONS(5555), + [sym_string_literal] = ACTIONS(4399), + [sym_number_literal] = ACTIONS(4399), + [aux_sym_boolean_literal_token1] = ACTIONS(5555), + [aux_sym_boolean_literal_token2] = ACTIONS(5555), + [sym_nothing_literal] = ACTIONS(5555), + [sym_null_literal] = ACTIONS(5555), + [sym_empty_literal] = ACTIONS(5555), + [sym_date_literal] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(5555), + }, + [STATE(2546)] = { + [sym_identifier] = ACTIONS(7281), + [sym_newline] = ACTIONS(7283), + [anon_sym_COLON] = ACTIONS(7283), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7281), + [aux_sym_frm_property_statement_token1] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7281), + [anon_sym_BANG] = ACTIONS(7283), + [aux_sym__attribute_identifier_token1] = ACTIONS(7281), + [aux_sym_option_statement_token3] = ACTIONS(7281), + [aux_sym_type_declaration_token1] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7281), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7281), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7281), + [aux_sym_enum_declaration_token1] = ACTIONS(7281), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7281), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7281), + [aux_sym_declare_function_statement_token1] = ACTIONS(7281), + [aux_sym_preprocessor_const_token1] = ACTIONS(7281), + [aux_sym__property_get_header_token1] = ACTIONS(7281), + [aux_sym_event_declaration_token1] = ACTIONS(7281), + [sym_static_modifier] = ACTIONS(7281), + [sym__dim_keyword] = ACTIONS(7281), + [sym__redim_keyword] = ACTIONS(7281), + [aux_sym_get_accessor_token1] = ACTIONS(7281), + [aux_sym_set_accessor_token1] = ACTIONS(7281), + [aux_sym_const_declaration_token1] = ACTIONS(7281), + [anon_sym_LPAREN] = ACTIONS(7283), + [aux_sym_as_type_clause_token2] = ACTIONS(7281), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7281), + [aux_sym_visibility_token1] = ACTIONS(7281), + [aux_sym_visibility_token2] = ACTIONS(7281), + [aux_sym_elseif_fragment_token1] = ACTIONS(7281), + [aux_sym_else_fragment_token1] = ACTIONS(7281), + [aux_sym_select_statement_token1] = ACTIONS(7281), + [aux_sym__for_header_token1] = ACTIONS(7281), + [aux_sym_do_statement_token1] = ACTIONS(7281), + [aux_sym_do_condition_token1] = ACTIONS(7281), + [aux_sym_with_statement_token1] = ACTIONS(7281), + [aux_sym_exit_statement_token1] = ACTIONS(7281), + [sym_end_statement] = ACTIONS(7283), + [aux_sym_on_goto_statement_token1] = ACTIONS(7281), + [aux_sym_on_goto_statement_token2] = ACTIONS(7281), + [aux_sym_on_error_statement_token2] = ACTIONS(7281), + [sym__ambiguous_redim_statement] = ACTIONS(7283), + [aux_sym_erase_statement_token1] = ACTIONS(7281), + [aux_sym_open_statement_token1] = ACTIONS(7281), + [aux_sym_file_mode_token2] = ACTIONS(7281), + [aux_sym_file_access_token2] = ACTIONS(7281), + [aux_sym_file_lock_token2] = ACTIONS(7281), + [aux_sym_print_statement_token1] = ACTIONS(7281), + [anon_sym_PLUS] = ACTIONS(7283), + [anon_sym_DASH] = ACTIONS(7281), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7046), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7050), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7114), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7198), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7285), + [anon_sym_QMARK] = ACTIONS(7283), + [aux_sym_close_statement_token1] = ACTIONS(7281), + [aux_sym_put_statement_token1] = ACTIONS(7281), + [aux_sym_unlock_statement_token1] = ACTIONS(7281), + [aux_sym_seek_statement_token1] = ACTIONS(7281), + [sym_reset_statement] = ACTIONS(7281), + [aux_sym_raise_event_statement_token1] = ACTIONS(7281), + [sym_stop_statement] = ACTIONS(7281), + [sym_beep_statement] = ACTIONS(7281), + [aux_sym_unload_statement_token1] = ACTIONS(7281), + [aux_sym_def_type_statement_token1] = ACTIONS(7281), + [aux_sym_def_type_statement_token2] = ACTIONS(7281), + [aux_sym_def_type_statement_token3] = ACTIONS(7281), + [aux_sym_def_type_statement_token4] = ACTIONS(7281), + [aux_sym_def_type_statement_token5] = ACTIONS(7281), + [aux_sym_def_type_statement_token6] = ACTIONS(7281), + [aux_sym_def_type_statement_token7] = ACTIONS(7281), + [aux_sym_def_type_statement_token8] = ACTIONS(7281), + [aux_sym_def_type_statement_token9] = ACTIONS(7281), + [aux_sym_def_type_statement_token10] = ACTIONS(7281), + [aux_sym_def_type_statement_token11] = ACTIONS(7281), + [aux_sym_def_type_statement_token12] = ACTIONS(7281), + [aux_sym_def_type_statement_token13] = ACTIONS(7281), + [aux_sym_def_type_statement_token14] = ACTIONS(7281), + [aux_sym_call_statement_token1] = ACTIONS(7281), + [sym__ambiguous_call_statement] = ACTIONS(7281), + [aux_sym_addressof_expression_token1] = ACTIONS(7281), + [aux_sym_type_of_expression_token1] = ACTIONS(7281), + [aux_sym_unary_expression_token1] = ACTIONS(7281), + [sym_string_literal] = ACTIONS(7283), + [sym_number_literal] = ACTIONS(7283), + [aux_sym_boolean_literal_token1] = ACTIONS(7281), + [aux_sym_boolean_literal_token2] = ACTIONS(7281), + [sym_nothing_literal] = ACTIONS(7281), + [sym_null_literal] = ACTIONS(7281), + [sym_empty_literal] = ACTIONS(7281), + [sym_date_literal] = ACTIONS(7283), + [anon_sym_POUND] = ACTIONS(7281), + }, + [STATE(2547)] = { + [sym_initializer] = STATE(3841), + [sym_as_type_clause] = STATE(3411), + [sym_identifier] = ACTIONS(7287), + [sym_newline] = ACTIONS(7289), + [anon_sym_COLON] = ACTIONS(7289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7287), + [aux_sym_frm_property_statement_token1] = ACTIONS(7287), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_BANG] = ACTIONS(7289), + [aux_sym__attribute_identifier_token1] = ACTIONS(7287), + [aux_sym_option_statement_token3] = ACTIONS(7287), + [aux_sym_type_declaration_token1] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7287), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7287), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7287), + [aux_sym_enum_declaration_token1] = ACTIONS(7287), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7287), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7287), + [aux_sym_declare_function_statement_token1] = ACTIONS(7287), + [aux_sym_preprocessor_const_token1] = ACTIONS(7287), + [aux_sym__property_get_header_token1] = ACTIONS(7287), + [aux_sym_event_declaration_token1] = ACTIONS(7287), + [sym_static_modifier] = ACTIONS(7287), + [sym__dim_keyword] = ACTIONS(7287), + [sym__redim_keyword] = ACTIONS(7287), + [aux_sym_get_accessor_token1] = ACTIONS(7287), + [aux_sym_set_accessor_token1] = ACTIONS(7287), + [anon_sym_COMMA] = ACTIONS(7289), + [aux_sym_const_declaration_token1] = ACTIONS(7287), + [anon_sym_LPAREN] = ACTIONS(7289), + [aux_sym_as_type_clause_token1] = ACTIONS(6997), + [aux_sym_as_type_clause_token2] = ACTIONS(7287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7287), + [aux_sym_visibility_token1] = ACTIONS(7287), + [aux_sym_visibility_token2] = ACTIONS(7287), + [aux_sym_elseif_fragment_token1] = ACTIONS(7287), + [aux_sym_else_fragment_token1] = ACTIONS(7287), + [aux_sym_select_statement_token1] = ACTIONS(7287), + [aux_sym__for_header_token1] = ACTIONS(7287), + [aux_sym_do_statement_token1] = ACTIONS(7287), + [aux_sym_do_condition_token1] = ACTIONS(7287), + [aux_sym_with_statement_token1] = ACTIONS(7287), + [aux_sym_exit_statement_token1] = ACTIONS(7287), + [sym_end_statement] = ACTIONS(7289), + [aux_sym_on_goto_statement_token1] = ACTIONS(7287), + [aux_sym_on_goto_statement_token2] = ACTIONS(7287), + [aux_sym_on_error_statement_token2] = ACTIONS(7287), + [sym__ambiguous_redim_statement] = ACTIONS(7289), + [aux_sym_erase_statement_token1] = ACTIONS(7287), + [aux_sym_open_statement_token1] = ACTIONS(7287), + [aux_sym_file_mode_token2] = ACTIONS(7287), + [aux_sym_file_access_token2] = ACTIONS(7287), + [aux_sym_file_lock_token2] = ACTIONS(7287), + [aux_sym_print_statement_token1] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_QMARK] = ACTIONS(7289), + [aux_sym_close_statement_token1] = ACTIONS(7287), + [aux_sym_put_statement_token1] = ACTIONS(7287), + [aux_sym_unlock_statement_token1] = ACTIONS(7287), + [aux_sym_seek_statement_token1] = ACTIONS(7287), + [sym_reset_statement] = ACTIONS(7287), + [aux_sym_raise_event_statement_token1] = ACTIONS(7287), + [sym_stop_statement] = ACTIONS(7287), + [sym_beep_statement] = ACTIONS(7287), + [aux_sym_unload_statement_token1] = ACTIONS(7287), + [aux_sym_def_type_statement_token1] = ACTIONS(7287), + [aux_sym_def_type_statement_token2] = ACTIONS(7287), + [aux_sym_def_type_statement_token3] = ACTIONS(7287), + [aux_sym_def_type_statement_token4] = ACTIONS(7287), + [aux_sym_def_type_statement_token5] = ACTIONS(7287), + [aux_sym_def_type_statement_token6] = ACTIONS(7287), + [aux_sym_def_type_statement_token7] = ACTIONS(7287), + [aux_sym_def_type_statement_token8] = ACTIONS(7287), + [aux_sym_def_type_statement_token9] = ACTIONS(7287), + [aux_sym_def_type_statement_token10] = ACTIONS(7287), + [aux_sym_def_type_statement_token11] = ACTIONS(7287), + [aux_sym_def_type_statement_token12] = ACTIONS(7287), + [aux_sym_def_type_statement_token13] = ACTIONS(7287), + [aux_sym_def_type_statement_token14] = ACTIONS(7287), + [aux_sym_call_statement_token1] = ACTIONS(7287), + [sym__ambiguous_call_statement] = ACTIONS(7287), + [aux_sym_addressof_expression_token1] = ACTIONS(7287), + [aux_sym_type_of_expression_token1] = ACTIONS(7287), + [aux_sym_unary_expression_token1] = ACTIONS(7287), + [sym_string_literal] = ACTIONS(7289), + [sym_number_literal] = ACTIONS(7289), + [aux_sym_boolean_literal_token1] = ACTIONS(7287), + [aux_sym_boolean_literal_token2] = ACTIONS(7287), + [sym_nothing_literal] = ACTIONS(7287), + [sym_null_literal] = ACTIONS(7287), + [sym_empty_literal] = ACTIONS(7287), + [sym_date_literal] = ACTIONS(7289), + [anon_sym_POUND] = ACTIONS(7287), + }, + [STATE(2548)] = { + [sym_identifier] = ACTIONS(5555), + [sym_newline] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(7291), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5555), + [aux_sym_frm_property_statement_token1] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(7030), + [anon_sym_BANG] = ACTIONS(7024), + [aux_sym__attribute_identifier_token1] = ACTIONS(5555), + [aux_sym_option_statement_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5555), + [aux_sym_preprocessor_const_token1] = ACTIONS(5555), + [sym_static_modifier] = ACTIONS(5555), + [sym__dim_keyword] = ACTIONS(5555), + [sym__redim_keyword] = ACTIONS(5555), + [aux_sym_byval_modifier_token1] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5555), + [aux_sym_set_accessor_token1] = ACTIONS(5555), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5555), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5555), + [aux_sym_visibility_token1] = ACTIONS(5555), + [aux_sym_visibility_token2] = ACTIONS(5555), + [aux_sym_elseif_fragment_token1] = ACTIONS(5555), + [aux_sym_else_fragment_token1] = ACTIONS(5555), + [aux_sym_select_statement_token1] = ACTIONS(5555), + [aux_sym__for_header_token1] = ACTIONS(5555), + [aux_sym_do_statement_token1] = ACTIONS(5555), + [aux_sym_do_condition_token1] = ACTIONS(5555), + [aux_sym_while_statement_token1] = ACTIONS(5555), + [aux_sym_with_statement_token1] = ACTIONS(5555), + [aux_sym_exit_statement_token1] = ACTIONS(5555), + [sym_end_statement] = ACTIONS(4399), + [aux_sym_on_goto_statement_token1] = ACTIONS(5555), + [aux_sym_on_goto_statement_token2] = ACTIONS(5555), + [aux_sym_on_error_statement_token2] = ACTIONS(5555), + [sym__ambiguous_redim_statement] = ACTIONS(4399), + [aux_sym_erase_statement_token1] = ACTIONS(5555), + [aux_sym_open_statement_token1] = ACTIONS(5555), + [aux_sym_file_mode_token2] = ACTIONS(5555), + [aux_sym_file_access_token2] = ACTIONS(5555), + [aux_sym_file_lock_token2] = ACTIONS(5555), + [aux_sym_print_statement_token1] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(5555), + [aux_sym_put_statement_token1] = ACTIONS(5555), + [aux_sym_unlock_statement_token1] = ACTIONS(5555), + [aux_sym_seek_statement_token1] = ACTIONS(5555), + [sym_reset_statement] = ACTIONS(5555), + [aux_sym_raise_event_statement_token1] = ACTIONS(5555), + [sym_stop_statement] = ACTIONS(5555), + [sym_beep_statement] = ACTIONS(5555), + [aux_sym_unload_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token2] = ACTIONS(5555), + [aux_sym_def_type_statement_token3] = ACTIONS(5555), + [aux_sym_def_type_statement_token4] = ACTIONS(5555), + [aux_sym_def_type_statement_token5] = ACTIONS(5555), + [aux_sym_def_type_statement_token6] = ACTIONS(5555), + [aux_sym_def_type_statement_token7] = ACTIONS(5555), + [aux_sym_def_type_statement_token8] = ACTIONS(5555), + [aux_sym_def_type_statement_token9] = ACTIONS(5555), + [aux_sym_def_type_statement_token10] = ACTIONS(5555), + [aux_sym_def_type_statement_token11] = ACTIONS(5555), + [aux_sym_def_type_statement_token12] = ACTIONS(5555), + [aux_sym_def_type_statement_token13] = ACTIONS(5555), + [aux_sym_def_type_statement_token14] = ACTIONS(5555), + [aux_sym_call_statement_token1] = ACTIONS(5555), + [sym__ambiguous_call_statement] = ACTIONS(5555), + [aux_sym_addressof_expression_token1] = ACTIONS(5555), + [aux_sym_type_of_expression_token1] = ACTIONS(5555), + [aux_sym_unary_expression_token1] = ACTIONS(5555), + [sym_string_literal] = ACTIONS(4399), + [sym_number_literal] = ACTIONS(4399), + [aux_sym_boolean_literal_token1] = ACTIONS(5555), + [aux_sym_boolean_literal_token2] = ACTIONS(5555), + [sym_nothing_literal] = ACTIONS(5555), + [sym_null_literal] = ACTIONS(5555), + [sym_empty_literal] = ACTIONS(5555), + [sym_date_literal] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(5555), + }, + [STATE(2549)] = { + [sym_identifier] = ACTIONS(5555), + [sym_newline] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(4399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5555), + [aux_sym_frm_property_statement_token1] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(7196), + [anon_sym_BANG] = ACTIONS(7028), + [aux_sym__attribute_identifier_token1] = ACTIONS(5555), + [aux_sym_option_statement_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5555), + [aux_sym_preprocessor_const_token1] = ACTIONS(5555), + [sym_static_modifier] = ACTIONS(5555), + [sym__dim_keyword] = ACTIONS(5555), + [sym__redim_keyword] = ACTIONS(5555), + [aux_sym_byval_modifier_token1] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5555), + [aux_sym_set_accessor_token1] = ACTIONS(5555), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5555), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5555), + [aux_sym_visibility_token1] = ACTIONS(5555), + [aux_sym_visibility_token2] = ACTIONS(5555), + [aux_sym_elseif_fragment_token1] = ACTIONS(5555), + [aux_sym_else_fragment_token1] = ACTIONS(5555), + [aux_sym_select_statement_token1] = ACTIONS(5555), + [aux_sym__for_header_token1] = ACTIONS(5555), + [aux_sym_do_statement_token1] = ACTIONS(5555), + [aux_sym_do_statement_token2] = ACTIONS(5555), + [aux_sym_do_condition_token1] = ACTIONS(5555), + [aux_sym_with_statement_token1] = ACTIONS(5555), + [aux_sym_exit_statement_token1] = ACTIONS(5555), + [sym_end_statement] = ACTIONS(4399), + [aux_sym_on_goto_statement_token1] = ACTIONS(5555), + [aux_sym_on_goto_statement_token2] = ACTIONS(5555), + [aux_sym_on_error_statement_token2] = ACTIONS(5555), + [sym__ambiguous_redim_statement] = ACTIONS(4399), + [aux_sym_erase_statement_token1] = ACTIONS(5555), + [aux_sym_open_statement_token1] = ACTIONS(5555), + [aux_sym_file_mode_token2] = ACTIONS(5555), + [aux_sym_file_access_token2] = ACTIONS(5555), + [aux_sym_file_lock_token2] = ACTIONS(5555), + [aux_sym_print_statement_token1] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(5555), + [aux_sym_put_statement_token1] = ACTIONS(5555), + [aux_sym_unlock_statement_token1] = ACTIONS(5555), + [aux_sym_seek_statement_token1] = ACTIONS(5555), + [sym_reset_statement] = ACTIONS(5555), + [aux_sym_raise_event_statement_token1] = ACTIONS(5555), + [sym_stop_statement] = ACTIONS(5555), + [sym_beep_statement] = ACTIONS(5555), + [aux_sym_unload_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token2] = ACTIONS(5555), + [aux_sym_def_type_statement_token3] = ACTIONS(5555), + [aux_sym_def_type_statement_token4] = ACTIONS(5555), + [aux_sym_def_type_statement_token5] = ACTIONS(5555), + [aux_sym_def_type_statement_token6] = ACTIONS(5555), + [aux_sym_def_type_statement_token7] = ACTIONS(5555), + [aux_sym_def_type_statement_token8] = ACTIONS(5555), + [aux_sym_def_type_statement_token9] = ACTIONS(5555), + [aux_sym_def_type_statement_token10] = ACTIONS(5555), + [aux_sym_def_type_statement_token11] = ACTIONS(5555), + [aux_sym_def_type_statement_token12] = ACTIONS(5555), + [aux_sym_def_type_statement_token13] = ACTIONS(5555), + [aux_sym_def_type_statement_token14] = ACTIONS(5555), + [aux_sym_call_statement_token1] = ACTIONS(5555), + [sym__ambiguous_call_statement] = ACTIONS(5555), + [aux_sym_addressof_expression_token1] = ACTIONS(5555), + [aux_sym_type_of_expression_token1] = ACTIONS(5555), + [aux_sym_unary_expression_token1] = ACTIONS(5555), + [sym_string_literal] = ACTIONS(4399), + [sym_number_literal] = ACTIONS(4399), + [aux_sym_boolean_literal_token1] = ACTIONS(5555), + [aux_sym_boolean_literal_token2] = ACTIONS(5555), + [sym_nothing_literal] = ACTIONS(5555), + [sym_null_literal] = ACTIONS(5555), + [sym_empty_literal] = ACTIONS(5555), + [sym_date_literal] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(5555), + }, + [STATE(2550)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2551)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_while_statement_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2552)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym_select_statement_token2] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2553)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2625), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_declaration_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4375), + [aux_sym_enum_declaration_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4375), + [aux_sym_declare_function_statement_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [aux_sym__property_get_header_token1] = ACTIONS(4375), + [aux_sym_event_declaration_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2554)] = { + [sym_argument_list] = STATE(2389), + [sym_identifier] = ACTIONS(4030), + [sym_newline] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4030), + [aux_sym_frm_property_statement_token1] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(7240), + [anon_sym_BANG] = ACTIONS(6987), + [aux_sym__attribute_identifier_token1] = ACTIONS(4030), + [aux_sym_option_statement_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4030), + [aux_sym_preprocessor_const_token1] = ACTIONS(4030), + [sym_static_modifier] = ACTIONS(4030), + [sym__dim_keyword] = ACTIONS(4030), + [sym__redim_keyword] = ACTIONS(4030), + [aux_sym_get_accessor_token1] = ACTIONS(4030), + [aux_sym_set_accessor_token1] = ACTIONS(4030), + [aux_sym_const_declaration_token1] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(5619), + [aux_sym_as_type_clause_token2] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4030), + [aux_sym_visibility_token1] = ACTIONS(4030), + [aux_sym_visibility_token2] = ACTIONS(4030), + [aux_sym_elseif_fragment_token1] = ACTIONS(4030), + [aux_sym_else_fragment_token1] = ACTIONS(4030), + [aux_sym_select_statement_token1] = ACTIONS(4030), + [aux_sym__for_header_token1] = ACTIONS(4030), + [aux_sym_do_statement_token1] = ACTIONS(4030), + [aux_sym_do_condition_token1] = ACTIONS(4030), + [aux_sym_with_statement_token1] = ACTIONS(4030), + [aux_sym_exit_statement_token1] = ACTIONS(4030), + [sym_end_statement] = ACTIONS(4028), + [aux_sym_on_goto_statement_token1] = ACTIONS(4030), + [aux_sym_on_goto_statement_token2] = ACTIONS(4030), + [aux_sym_on_error_statement_token2] = ACTIONS(4030), + [sym__ambiguous_redim_statement] = ACTIONS(4028), + [aux_sym_erase_statement_token1] = ACTIONS(4030), + [aux_sym_open_statement_token1] = ACTIONS(4030), + [aux_sym_file_mode_token2] = ACTIONS(4030), + [aux_sym_file_access_token2] = ACTIONS(4030), + [aux_sym_file_lock_token2] = ACTIONS(4030), + [aux_sym_print_statement_token1] = ACTIONS(4030), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4028), + [aux_sym_close_statement_token1] = ACTIONS(4030), + [aux_sym_put_statement_token1] = ACTIONS(4030), + [aux_sym_unlock_statement_token1] = ACTIONS(4030), + [aux_sym_seek_statement_token1] = ACTIONS(4030), + [sym_reset_statement] = ACTIONS(4030), + [aux_sym_raise_event_statement_token1] = ACTIONS(4030), + [sym_stop_statement] = ACTIONS(4030), + [sym_beep_statement] = ACTIONS(4030), + [aux_sym_unload_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token2] = ACTIONS(4030), + [aux_sym_def_type_statement_token3] = ACTIONS(4030), + [aux_sym_def_type_statement_token4] = ACTIONS(4030), + [aux_sym_def_type_statement_token5] = ACTIONS(4030), + [aux_sym_def_type_statement_token6] = ACTIONS(4030), + [aux_sym_def_type_statement_token7] = ACTIONS(4030), + [aux_sym_def_type_statement_token8] = ACTIONS(4030), + [aux_sym_def_type_statement_token9] = ACTIONS(4030), + [aux_sym_def_type_statement_token10] = ACTIONS(4030), + [aux_sym_def_type_statement_token11] = ACTIONS(4030), + [aux_sym_def_type_statement_token12] = ACTIONS(4030), + [aux_sym_def_type_statement_token13] = ACTIONS(4030), + [aux_sym_def_type_statement_token14] = ACTIONS(4030), + [aux_sym_call_statement_token1] = ACTIONS(4030), + [sym__ambiguous_call_statement] = ACTIONS(4030), + [aux_sym_addressof_expression_token1] = ACTIONS(4030), + [aux_sym_type_of_expression_token1] = ACTIONS(4030), + [aux_sym_unary_expression_token1] = ACTIONS(4030), + [sym_string_literal] = ACTIONS(4028), + [sym_number_literal] = ACTIONS(4028), + [aux_sym_boolean_literal_token1] = ACTIONS(4030), + [aux_sym_boolean_literal_token2] = ACTIONS(4030), + [sym_nothing_literal] = ACTIONS(4030), + [sym_null_literal] = ACTIONS(4030), + [sym_empty_literal] = ACTIONS(4030), + [sym_date_literal] = ACTIONS(4028), + [anon_sym_POUND] = ACTIONS(4030), + }, + [STATE(2555)] = { + [sym_argument_list] = STATE(3221), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7293), + [anon_sym_BANG] = ACTIONS(7295), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(7297), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2556)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2556), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(7299), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2557)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2558)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2559)] = { + [sym_identifier] = ACTIONS(5841), + [sym_newline] = ACTIONS(5843), + [anon_sym_COLON] = ACTIONS(5843), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5841), + [aux_sym_frm_property_statement_token1] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5843), + [aux_sym__attribute_identifier_token1] = ACTIONS(5841), + [aux_sym_option_statement_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5841), + [aux_sym_preprocessor_const_token1] = ACTIONS(5841), + [sym_static_modifier] = ACTIONS(5841), + [sym__dim_keyword] = ACTIONS(5841), + [sym__redim_keyword] = ACTIONS(5841), + [aux_sym_get_accessor_token1] = ACTIONS(5841), + [aux_sym_set_accessor_token1] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(5843), + [aux_sym_const_declaration_token1] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5843), + [aux_sym_as_type_clause_token2] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5841), + [aux_sym_visibility_token1] = ACTIONS(5841), + [aux_sym_visibility_token2] = ACTIONS(5841), + [aux_sym_elseif_fragment_token1] = ACTIONS(5841), + [aux_sym_else_fragment_token1] = ACTIONS(5841), + [aux_sym_select_statement_token1] = ACTIONS(5841), + [aux_sym__for_header_token1] = ACTIONS(5841), + [aux_sym_do_statement_token1] = ACTIONS(5841), + [aux_sym_do_statement_token2] = ACTIONS(5841), + [aux_sym_do_condition_token1] = ACTIONS(5841), + [aux_sym_with_statement_token1] = ACTIONS(5841), + [aux_sym_exit_statement_token1] = ACTIONS(5841), + [sym_end_statement] = ACTIONS(5843), + [aux_sym_on_goto_statement_token1] = ACTIONS(5841), + [aux_sym_on_goto_statement_token2] = ACTIONS(5841), + [aux_sym_on_error_statement_token2] = ACTIONS(5841), + [sym__ambiguous_redim_statement] = ACTIONS(5843), + [aux_sym_erase_statement_token1] = ACTIONS(5841), + [aux_sym_open_statement_token1] = ACTIONS(5841), + [aux_sym_file_mode_token2] = ACTIONS(5841), + [aux_sym_file_access_token2] = ACTIONS(5841), + [aux_sym_file_lock_token2] = ACTIONS(5841), + [aux_sym_print_statement_token1] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_SEMI] = ACTIONS(5843), + [anon_sym_QMARK] = ACTIONS(5843), + [aux_sym_close_statement_token1] = ACTIONS(5841), + [aux_sym_put_statement_token1] = ACTIONS(5841), + [aux_sym_unlock_statement_token1] = ACTIONS(5841), + [aux_sym_seek_statement_token1] = ACTIONS(5841), + [sym_reset_statement] = ACTIONS(5841), + [aux_sym_raise_event_statement_token1] = ACTIONS(5841), + [sym_stop_statement] = ACTIONS(5841), + [sym_beep_statement] = ACTIONS(5841), + [aux_sym_unload_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token2] = ACTIONS(5841), + [aux_sym_def_type_statement_token3] = ACTIONS(5841), + [aux_sym_def_type_statement_token4] = ACTIONS(5841), + [aux_sym_def_type_statement_token5] = ACTIONS(5841), + [aux_sym_def_type_statement_token6] = ACTIONS(5841), + [aux_sym_def_type_statement_token7] = ACTIONS(5841), + [aux_sym_def_type_statement_token8] = ACTIONS(5841), + [aux_sym_def_type_statement_token9] = ACTIONS(5841), + [aux_sym_def_type_statement_token10] = ACTIONS(5841), + [aux_sym_def_type_statement_token11] = ACTIONS(5841), + [aux_sym_def_type_statement_token12] = ACTIONS(5841), + [aux_sym_def_type_statement_token13] = ACTIONS(5841), + [aux_sym_def_type_statement_token14] = ACTIONS(5841), + [aux_sym_call_statement_token1] = ACTIONS(5841), + [sym__ambiguous_call_statement] = ACTIONS(5841), + [aux_sym_addressof_expression_token1] = ACTIONS(5841), + [aux_sym_type_of_expression_token1] = ACTIONS(5841), + [aux_sym_unary_expression_token1] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5843), + [sym_number_literal] = ACTIONS(5843), + [aux_sym_boolean_literal_token1] = ACTIONS(5841), + [aux_sym_boolean_literal_token2] = ACTIONS(5841), + [sym_nothing_literal] = ACTIONS(5841), + [sym_null_literal] = ACTIONS(5841), + [sym_empty_literal] = ACTIONS(5841), + [sym_date_literal] = ACTIONS(5843), + [anon_sym_POUND] = ACTIONS(5841), + }, + [STATE(2560)] = { + [sym_identifier] = ACTIONS(5699), + [sym_newline] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5701), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5699), + [aux_sym_frm_property_statement_token1] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5699), + [anon_sym_BANG] = ACTIONS(5701), + [aux_sym__attribute_identifier_token1] = ACTIONS(5699), + [aux_sym_option_statement_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5699), + [aux_sym_preprocessor_const_token1] = ACTIONS(5699), + [sym_static_modifier] = ACTIONS(5699), + [sym__dim_keyword] = ACTIONS(5699), + [sym__redim_keyword] = ACTIONS(5699), + [aux_sym_get_accessor_token1] = ACTIONS(5699), + [aux_sym_set_accessor_token1] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5701), + [aux_sym_const_declaration_token1] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(5701), + [aux_sym_as_type_clause_token2] = ACTIONS(5699), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5699), + [aux_sym_visibility_token1] = ACTIONS(5699), + [aux_sym_visibility_token2] = ACTIONS(5699), + [aux_sym_elseif_fragment_token1] = ACTIONS(5699), + [aux_sym_else_fragment_token1] = ACTIONS(5699), + [aux_sym_select_statement_token1] = ACTIONS(5699), + [aux_sym__for_header_token1] = ACTIONS(5699), + [aux_sym_do_statement_token1] = ACTIONS(5699), + [aux_sym_do_statement_token2] = ACTIONS(5699), + [aux_sym_do_condition_token1] = ACTIONS(5699), + [aux_sym_with_statement_token1] = ACTIONS(5699), + [aux_sym_exit_statement_token1] = ACTIONS(5699), + [sym_end_statement] = ACTIONS(5701), + [aux_sym_on_goto_statement_token1] = ACTIONS(5699), + [aux_sym_on_goto_statement_token2] = ACTIONS(5699), + [aux_sym_on_error_statement_token2] = ACTIONS(5699), + [sym__ambiguous_redim_statement] = ACTIONS(5701), + [aux_sym_erase_statement_token1] = ACTIONS(5699), + [aux_sym_open_statement_token1] = ACTIONS(5699), + [aux_sym_file_mode_token2] = ACTIONS(5699), + [aux_sym_file_access_token2] = ACTIONS(5699), + [aux_sym_file_lock_token2] = ACTIONS(5699), + [aux_sym_print_statement_token1] = ACTIONS(5699), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7302), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7304), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6083), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6085), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6087), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5701), + [aux_sym_close_statement_token1] = ACTIONS(5699), + [aux_sym_put_statement_token1] = ACTIONS(5699), + [aux_sym_unlock_statement_token1] = ACTIONS(5699), + [aux_sym_seek_statement_token1] = ACTIONS(5699), + [sym_reset_statement] = ACTIONS(5699), + [aux_sym_raise_event_statement_token1] = ACTIONS(5699), + [sym_stop_statement] = ACTIONS(5699), + [sym_beep_statement] = ACTIONS(5699), + [aux_sym_unload_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token2] = ACTIONS(5699), + [aux_sym_def_type_statement_token3] = ACTIONS(5699), + [aux_sym_def_type_statement_token4] = ACTIONS(5699), + [aux_sym_def_type_statement_token5] = ACTIONS(5699), + [aux_sym_def_type_statement_token6] = ACTIONS(5699), + [aux_sym_def_type_statement_token7] = ACTIONS(5699), + [aux_sym_def_type_statement_token8] = ACTIONS(5699), + [aux_sym_def_type_statement_token9] = ACTIONS(5699), + [aux_sym_def_type_statement_token10] = ACTIONS(5699), + [aux_sym_def_type_statement_token11] = ACTIONS(5699), + [aux_sym_def_type_statement_token12] = ACTIONS(5699), + [aux_sym_def_type_statement_token13] = ACTIONS(5699), + [aux_sym_def_type_statement_token14] = ACTIONS(5699), + [aux_sym_call_statement_token1] = ACTIONS(5699), + [sym__ambiguous_call_statement] = ACTIONS(5699), + [aux_sym_addressof_expression_token1] = ACTIONS(5699), + [aux_sym_type_of_expression_token1] = ACTIONS(5699), + [aux_sym_unary_expression_token1] = ACTIONS(5699), + [sym_string_literal] = ACTIONS(5701), + [sym_number_literal] = ACTIONS(5701), + [aux_sym_boolean_literal_token1] = ACTIONS(5699), + [aux_sym_boolean_literal_token2] = ACTIONS(5699), + [sym_nothing_literal] = ACTIONS(5699), + [sym_null_literal] = ACTIONS(5699), + [sym_empty_literal] = ACTIONS(5699), + [sym_date_literal] = ACTIONS(5701), + [anon_sym_POUND] = ACTIONS(5699), + }, + [STATE(2561)] = { + [sym_identifier] = ACTIONS(5699), + [sym_newline] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5701), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5699), + [aux_sym_frm_property_statement_token1] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5699), + [anon_sym_BANG] = ACTIONS(5701), + [aux_sym__attribute_identifier_token1] = ACTIONS(5699), + [aux_sym_option_statement_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5699), + [aux_sym_preprocessor_const_token1] = ACTIONS(5699), + [sym_static_modifier] = ACTIONS(5699), + [sym__dim_keyword] = ACTIONS(5699), + [sym__redim_keyword] = ACTIONS(5699), + [aux_sym_get_accessor_token1] = ACTIONS(5699), + [aux_sym_set_accessor_token1] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5701), + [aux_sym_const_declaration_token1] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(5701), + [aux_sym_as_type_clause_token2] = ACTIONS(5699), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5699), + [aux_sym_visibility_token1] = ACTIONS(5699), + [aux_sym_visibility_token2] = ACTIONS(5699), + [aux_sym_elseif_fragment_token1] = ACTIONS(5699), + [aux_sym_else_fragment_token1] = ACTIONS(5699), + [aux_sym_select_statement_token1] = ACTIONS(5699), + [aux_sym_select_statement_token2] = ACTIONS(5699), + [aux_sym__for_header_token1] = ACTIONS(5699), + [aux_sym_do_statement_token1] = ACTIONS(5699), + [aux_sym_do_condition_token1] = ACTIONS(5699), + [aux_sym_with_statement_token1] = ACTIONS(5699), + [aux_sym_exit_statement_token1] = ACTIONS(5699), + [sym_end_statement] = ACTIONS(5701), + [aux_sym_on_goto_statement_token1] = ACTIONS(5699), + [aux_sym_on_goto_statement_token2] = ACTIONS(5699), + [aux_sym_on_error_statement_token2] = ACTIONS(5699), + [sym__ambiguous_redim_statement] = ACTIONS(5701), + [aux_sym_erase_statement_token1] = ACTIONS(5699), + [aux_sym_open_statement_token1] = ACTIONS(5699), + [aux_sym_file_mode_token2] = ACTIONS(5699), + [aux_sym_file_access_token2] = ACTIONS(5699), + [aux_sym_file_lock_token2] = ACTIONS(5699), + [aux_sym_print_statement_token1] = ACTIONS(5699), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7306), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7308), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6061), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6063), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6065), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5701), + [aux_sym_close_statement_token1] = ACTIONS(5699), + [aux_sym_put_statement_token1] = ACTIONS(5699), + [aux_sym_unlock_statement_token1] = ACTIONS(5699), + [aux_sym_seek_statement_token1] = ACTIONS(5699), + [sym_reset_statement] = ACTIONS(5699), + [aux_sym_raise_event_statement_token1] = ACTIONS(5699), + [sym_stop_statement] = ACTIONS(5699), + [sym_beep_statement] = ACTIONS(5699), + [aux_sym_unload_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token2] = ACTIONS(5699), + [aux_sym_def_type_statement_token3] = ACTIONS(5699), + [aux_sym_def_type_statement_token4] = ACTIONS(5699), + [aux_sym_def_type_statement_token5] = ACTIONS(5699), + [aux_sym_def_type_statement_token6] = ACTIONS(5699), + [aux_sym_def_type_statement_token7] = ACTIONS(5699), + [aux_sym_def_type_statement_token8] = ACTIONS(5699), + [aux_sym_def_type_statement_token9] = ACTIONS(5699), + [aux_sym_def_type_statement_token10] = ACTIONS(5699), + [aux_sym_def_type_statement_token11] = ACTIONS(5699), + [aux_sym_def_type_statement_token12] = ACTIONS(5699), + [aux_sym_def_type_statement_token13] = ACTIONS(5699), + [aux_sym_def_type_statement_token14] = ACTIONS(5699), + [aux_sym_call_statement_token1] = ACTIONS(5699), + [sym__ambiguous_call_statement] = ACTIONS(5699), + [aux_sym_addressof_expression_token1] = ACTIONS(5699), + [aux_sym_type_of_expression_token1] = ACTIONS(5699), + [aux_sym_unary_expression_token1] = ACTIONS(5699), + [sym_string_literal] = ACTIONS(5701), + [sym_number_literal] = ACTIONS(5701), + [aux_sym_boolean_literal_token1] = ACTIONS(5699), + [aux_sym_boolean_literal_token2] = ACTIONS(5699), + [sym_nothing_literal] = ACTIONS(5699), + [sym_null_literal] = ACTIONS(5699), + [sym_empty_literal] = ACTIONS(5699), + [sym_date_literal] = ACTIONS(5701), + [anon_sym_POUND] = ACTIONS(5699), + }, + [STATE(2562)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2563)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_SEMI] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(2564)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_while_statement_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2565)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_while_statement_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2566)] = { + [sym_identifier] = ACTIONS(5752), + [sym_newline] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5752), + [aux_sym_frm_property_statement_token1] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5752), + [anon_sym_BANG] = ACTIONS(5754), + [aux_sym__attribute_identifier_token1] = ACTIONS(5752), + [aux_sym_option_statement_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5752), + [aux_sym_preprocessor_const_token1] = ACTIONS(5752), + [sym_static_modifier] = ACTIONS(5752), + [sym__dim_keyword] = ACTIONS(5752), + [sym__redim_keyword] = ACTIONS(5752), + [aux_sym_get_accessor_token1] = ACTIONS(5752), + [aux_sym_set_accessor_token1] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5754), + [aux_sym_const_declaration_token1] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [aux_sym_as_type_clause_token2] = ACTIONS(5752), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5752), + [aux_sym_visibility_token1] = ACTIONS(5752), + [aux_sym_visibility_token2] = ACTIONS(5752), + [aux_sym_elseif_fragment_token1] = ACTIONS(5752), + [aux_sym_else_fragment_token1] = ACTIONS(5752), + [aux_sym_select_statement_token1] = ACTIONS(5752), + [aux_sym__for_header_token1] = ACTIONS(5752), + [aux_sym_do_statement_token1] = ACTIONS(5752), + [aux_sym_do_statement_token2] = ACTIONS(5752), + [aux_sym_do_condition_token1] = ACTIONS(5752), + [aux_sym_with_statement_token1] = ACTIONS(5752), + [aux_sym_exit_statement_token1] = ACTIONS(5752), + [sym_end_statement] = ACTIONS(5754), + [aux_sym_on_goto_statement_token1] = ACTIONS(5752), + [aux_sym_on_goto_statement_token2] = ACTIONS(5752), + [aux_sym_on_error_statement_token2] = ACTIONS(5752), + [sym__ambiguous_redim_statement] = ACTIONS(5754), + [aux_sym_erase_statement_token1] = ACTIONS(5752), + [aux_sym_open_statement_token1] = ACTIONS(5752), + [aux_sym_file_mode_token2] = ACTIONS(5752), + [aux_sym_file_access_token2] = ACTIONS(5752), + [aux_sym_file_lock_token2] = ACTIONS(5752), + [aux_sym_print_statement_token1] = ACTIONS(5752), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7302), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7304), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6083), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6085), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6087), + [anon_sym_SEMI] = ACTIONS(5754), + [anon_sym_QMARK] = ACTIONS(5754), + [aux_sym_close_statement_token1] = ACTIONS(5752), + [aux_sym_put_statement_token1] = ACTIONS(5752), + [aux_sym_unlock_statement_token1] = ACTIONS(5752), + [aux_sym_seek_statement_token1] = ACTIONS(5752), + [sym_reset_statement] = ACTIONS(5752), + [aux_sym_raise_event_statement_token1] = ACTIONS(5752), + [sym_stop_statement] = ACTIONS(5752), + [sym_beep_statement] = ACTIONS(5752), + [aux_sym_unload_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token2] = ACTIONS(5752), + [aux_sym_def_type_statement_token3] = ACTIONS(5752), + [aux_sym_def_type_statement_token4] = ACTIONS(5752), + [aux_sym_def_type_statement_token5] = ACTIONS(5752), + [aux_sym_def_type_statement_token6] = ACTIONS(5752), + [aux_sym_def_type_statement_token7] = ACTIONS(5752), + [aux_sym_def_type_statement_token8] = ACTIONS(5752), + [aux_sym_def_type_statement_token9] = ACTIONS(5752), + [aux_sym_def_type_statement_token10] = ACTIONS(5752), + [aux_sym_def_type_statement_token11] = ACTIONS(5752), + [aux_sym_def_type_statement_token12] = ACTIONS(5752), + [aux_sym_def_type_statement_token13] = ACTIONS(5752), + [aux_sym_def_type_statement_token14] = ACTIONS(5752), + [aux_sym_call_statement_token1] = ACTIONS(5752), + [sym__ambiguous_call_statement] = ACTIONS(5752), + [aux_sym_addressof_expression_token1] = ACTIONS(5752), + [aux_sym_type_of_expression_token1] = ACTIONS(5752), + [aux_sym_unary_expression_token1] = ACTIONS(5752), + [sym_string_literal] = ACTIONS(5754), + [sym_number_literal] = ACTIONS(5754), + [aux_sym_boolean_literal_token1] = ACTIONS(5752), + [aux_sym_boolean_literal_token2] = ACTIONS(5752), + [sym_nothing_literal] = ACTIONS(5752), + [sym_null_literal] = ACTIONS(5752), + [sym_empty_literal] = ACTIONS(5752), + [sym_date_literal] = ACTIONS(5754), + [anon_sym_POUND] = ACTIONS(5752), + }, + [STATE(2567)] = { + [sym_identifier] = ACTIONS(5752), + [sym_newline] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5752), + [aux_sym_frm_property_statement_token1] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5752), + [anon_sym_BANG] = ACTIONS(5754), + [aux_sym__attribute_identifier_token1] = ACTIONS(5752), + [aux_sym_option_statement_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5752), + [aux_sym_preprocessor_const_token1] = ACTIONS(5752), + [sym_static_modifier] = ACTIONS(5752), + [sym__dim_keyword] = ACTIONS(5752), + [sym__redim_keyword] = ACTIONS(5752), + [aux_sym_get_accessor_token1] = ACTIONS(5752), + [aux_sym_set_accessor_token1] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5754), + [aux_sym_const_declaration_token1] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [aux_sym_as_type_clause_token2] = ACTIONS(5752), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5752), + [aux_sym_visibility_token1] = ACTIONS(5752), + [aux_sym_visibility_token2] = ACTIONS(5752), + [aux_sym_elseif_fragment_token1] = ACTIONS(5752), + [aux_sym_else_fragment_token1] = ACTIONS(5752), + [aux_sym_select_statement_token1] = ACTIONS(5752), + [aux_sym_select_statement_token2] = ACTIONS(5752), + [aux_sym__for_header_token1] = ACTIONS(5752), + [aux_sym_do_statement_token1] = ACTIONS(5752), + [aux_sym_do_condition_token1] = ACTIONS(5752), + [aux_sym_with_statement_token1] = ACTIONS(5752), + [aux_sym_exit_statement_token1] = ACTIONS(5752), + [sym_end_statement] = ACTIONS(5754), + [aux_sym_on_goto_statement_token1] = ACTIONS(5752), + [aux_sym_on_goto_statement_token2] = ACTIONS(5752), + [aux_sym_on_error_statement_token2] = ACTIONS(5752), + [sym__ambiguous_redim_statement] = ACTIONS(5754), + [aux_sym_erase_statement_token1] = ACTIONS(5752), + [aux_sym_open_statement_token1] = ACTIONS(5752), + [aux_sym_file_mode_token2] = ACTIONS(5752), + [aux_sym_file_access_token2] = ACTIONS(5752), + [aux_sym_file_lock_token2] = ACTIONS(5752), + [aux_sym_print_statement_token1] = ACTIONS(5752), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7306), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7308), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6061), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6063), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6065), + [anon_sym_SEMI] = ACTIONS(5754), + [anon_sym_QMARK] = ACTIONS(5754), + [aux_sym_close_statement_token1] = ACTIONS(5752), + [aux_sym_put_statement_token1] = ACTIONS(5752), + [aux_sym_unlock_statement_token1] = ACTIONS(5752), + [aux_sym_seek_statement_token1] = ACTIONS(5752), + [sym_reset_statement] = ACTIONS(5752), + [aux_sym_raise_event_statement_token1] = ACTIONS(5752), + [sym_stop_statement] = ACTIONS(5752), + [sym_beep_statement] = ACTIONS(5752), + [aux_sym_unload_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token2] = ACTIONS(5752), + [aux_sym_def_type_statement_token3] = ACTIONS(5752), + [aux_sym_def_type_statement_token4] = ACTIONS(5752), + [aux_sym_def_type_statement_token5] = ACTIONS(5752), + [aux_sym_def_type_statement_token6] = ACTIONS(5752), + [aux_sym_def_type_statement_token7] = ACTIONS(5752), + [aux_sym_def_type_statement_token8] = ACTIONS(5752), + [aux_sym_def_type_statement_token9] = ACTIONS(5752), + [aux_sym_def_type_statement_token10] = ACTIONS(5752), + [aux_sym_def_type_statement_token11] = ACTIONS(5752), + [aux_sym_def_type_statement_token12] = ACTIONS(5752), + [aux_sym_def_type_statement_token13] = ACTIONS(5752), + [aux_sym_def_type_statement_token14] = ACTIONS(5752), + [aux_sym_call_statement_token1] = ACTIONS(5752), + [sym__ambiguous_call_statement] = ACTIONS(5752), + [aux_sym_addressof_expression_token1] = ACTIONS(5752), + [aux_sym_type_of_expression_token1] = ACTIONS(5752), + [aux_sym_unary_expression_token1] = ACTIONS(5752), + [sym_string_literal] = ACTIONS(5754), + [sym_number_literal] = ACTIONS(5754), + [aux_sym_boolean_literal_token1] = ACTIONS(5752), + [aux_sym_boolean_literal_token2] = ACTIONS(5752), + [sym_nothing_literal] = ACTIONS(5752), + [sym_null_literal] = ACTIONS(5752), + [sym_empty_literal] = ACTIONS(5752), + [sym_date_literal] = ACTIONS(5754), + [anon_sym_POUND] = ACTIONS(5752), + }, + [STATE(2568)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_declaration_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5627), + [aux_sym_enum_declaration_token1] = ACTIONS(5627), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5627), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5627), + [aux_sym_declare_function_statement_token1] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [aux_sym__property_get_header_token1] = ACTIONS(5627), + [aux_sym_event_declaration_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(2569)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_while_statement_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2570)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5891), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5893), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6190), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(2571)] = { + [sym_identifier] = ACTIONS(5869), + [sym_newline] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5869), + [aux_sym_frm_property_statement_token1] = ACTIONS(5869), + [anon_sym_DOT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [aux_sym__attribute_identifier_token1] = ACTIONS(5869), + [aux_sym_option_statement_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5869), + [aux_sym_preprocessor_const_token1] = ACTIONS(5869), + [sym_static_modifier] = ACTIONS(5869), + [sym__dim_keyword] = ACTIONS(5869), + [sym__redim_keyword] = ACTIONS(5869), + [aux_sym_get_accessor_token1] = ACTIONS(5869), + [aux_sym_set_accessor_token1] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5871), + [aux_sym_const_declaration_token1] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5871), + [aux_sym_as_type_clause_token2] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5869), + [aux_sym_visibility_token1] = ACTIONS(5869), + [aux_sym_visibility_token2] = ACTIONS(5869), + [aux_sym_elseif_fragment_token1] = ACTIONS(5869), + [aux_sym_else_fragment_token1] = ACTIONS(5869), + [aux_sym_select_statement_token1] = ACTIONS(5869), + [aux_sym__for_header_token1] = ACTIONS(5869), + [aux_sym_do_statement_token1] = ACTIONS(5869), + [aux_sym_do_condition_token1] = ACTIONS(5869), + [aux_sym_while_statement_token1] = ACTIONS(5869), + [aux_sym_with_statement_token1] = ACTIONS(5869), + [aux_sym_exit_statement_token1] = ACTIONS(5869), + [sym_end_statement] = ACTIONS(5871), + [aux_sym_on_goto_statement_token1] = ACTIONS(5869), + [aux_sym_on_goto_statement_token2] = ACTIONS(5869), + [aux_sym_on_error_statement_token2] = ACTIONS(5869), + [sym__ambiguous_redim_statement] = ACTIONS(5871), + [aux_sym_erase_statement_token1] = ACTIONS(5869), + [aux_sym_open_statement_token1] = ACTIONS(5869), + [aux_sym_file_mode_token2] = ACTIONS(5869), + [aux_sym_file_access_token2] = ACTIONS(5869), + [aux_sym_file_lock_token2] = ACTIONS(5869), + [aux_sym_print_statement_token1] = ACTIONS(5869), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7310), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7312), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5964), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5966), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5968), + [anon_sym_SEMI] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [aux_sym_close_statement_token1] = ACTIONS(5869), + [aux_sym_put_statement_token1] = ACTIONS(5869), + [aux_sym_unlock_statement_token1] = ACTIONS(5869), + [aux_sym_seek_statement_token1] = ACTIONS(5869), + [sym_reset_statement] = ACTIONS(5869), + [aux_sym_raise_event_statement_token1] = ACTIONS(5869), + [sym_stop_statement] = ACTIONS(5869), + [sym_beep_statement] = ACTIONS(5869), + [aux_sym_unload_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token2] = ACTIONS(5869), + [aux_sym_def_type_statement_token3] = ACTIONS(5869), + [aux_sym_def_type_statement_token4] = ACTIONS(5869), + [aux_sym_def_type_statement_token5] = ACTIONS(5869), + [aux_sym_def_type_statement_token6] = ACTIONS(5869), + [aux_sym_def_type_statement_token7] = ACTIONS(5869), + [aux_sym_def_type_statement_token8] = ACTIONS(5869), + [aux_sym_def_type_statement_token9] = ACTIONS(5869), + [aux_sym_def_type_statement_token10] = ACTIONS(5869), + [aux_sym_def_type_statement_token11] = ACTIONS(5869), + [aux_sym_def_type_statement_token12] = ACTIONS(5869), + [aux_sym_def_type_statement_token13] = ACTIONS(5869), + [aux_sym_def_type_statement_token14] = ACTIONS(5869), + [aux_sym_call_statement_token1] = ACTIONS(5869), + [sym__ambiguous_call_statement] = ACTIONS(5869), + [aux_sym_addressof_expression_token1] = ACTIONS(5869), + [aux_sym_type_of_expression_token1] = ACTIONS(5869), + [aux_sym_unary_expression_token1] = ACTIONS(5869), + [sym_string_literal] = ACTIONS(5871), + [sym_number_literal] = ACTIONS(5871), + [aux_sym_boolean_literal_token1] = ACTIONS(5869), + [aux_sym_boolean_literal_token2] = ACTIONS(5869), + [sym_nothing_literal] = ACTIONS(5869), + [sym_null_literal] = ACTIONS(5869), + [sym_empty_literal] = ACTIONS(5869), + [sym_date_literal] = ACTIONS(5871), + [anon_sym_POUND] = ACTIONS(5869), + }, + [STATE(2572)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym_select_statement_token2] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6061), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6063), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6065), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(2573)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym_select_statement_token2] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2574)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2575)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym_select_statement_token2] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6057), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6061), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6063), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6065), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(2576)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2615), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(7314), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_while_statement_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2577)] = { + [sym_identifier] = ACTIONS(5851), + [sym_newline] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5853), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5851), + [aux_sym_frm_property_statement_token1] = ACTIONS(5851), + [anon_sym_DOT] = ACTIONS(7316), + [anon_sym_BANG] = ACTIONS(7318), + [aux_sym__attribute_identifier_token1] = ACTIONS(5851), + [aux_sym_option_statement_token3] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5851), + [aux_sym_preprocessor_const_token1] = ACTIONS(5851), + [sym_static_modifier] = ACTIONS(5851), + [sym__dim_keyword] = ACTIONS(5851), + [sym__redim_keyword] = ACTIONS(5851), + [aux_sym_get_accessor_token1] = ACTIONS(5851), + [aux_sym_set_accessor_token1] = ACTIONS(5851), + [anon_sym_COMMA] = ACTIONS(5853), + [aux_sym_const_declaration_token1] = ACTIONS(5851), + [anon_sym_LPAREN] = ACTIONS(5853), + [aux_sym_as_type_clause_token2] = ACTIONS(5851), + [anon_sym_STAR] = ACTIONS(5859), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5851), + [aux_sym_visibility_token1] = ACTIONS(5851), + [aux_sym_visibility_token2] = ACTIONS(5851), + [aux_sym_elseif_fragment_token1] = ACTIONS(5851), + [aux_sym_else_fragment_token1] = ACTIONS(5851), + [aux_sym_select_statement_token1] = ACTIONS(5851), + [aux_sym_select_statement_token2] = ACTIONS(5851), + [aux_sym__for_header_token1] = ACTIONS(5851), + [aux_sym_do_statement_token1] = ACTIONS(5851), + [aux_sym_do_condition_token1] = ACTIONS(5851), + [aux_sym_with_statement_token1] = ACTIONS(5851), + [aux_sym_exit_statement_token1] = ACTIONS(5851), + [sym_end_statement] = ACTIONS(5853), + [aux_sym_on_goto_statement_token1] = ACTIONS(5851), + [aux_sym_on_goto_statement_token2] = ACTIONS(5851), + [aux_sym_on_error_statement_token2] = ACTIONS(5851), + [sym__ambiguous_redim_statement] = ACTIONS(5853), + [aux_sym_erase_statement_token1] = ACTIONS(5851), + [aux_sym_open_statement_token1] = ACTIONS(5851), + [aux_sym_file_mode_token2] = ACTIONS(5851), + [aux_sym_file_access_token2] = ACTIONS(5851), + [aux_sym_file_lock_token2] = ACTIONS(5851), + [aux_sym_print_statement_token1] = ACTIONS(5851), + [anon_sym_CARET] = ACTIONS(5859), + [anon_sym_SLASH] = ACTIONS(5859), + [anon_sym_BSLASH] = ACTIONS(5859), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5861), + [anon_sym_PLUS] = ACTIONS(5863), + [anon_sym_DASH] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5861), + [anon_sym_SEMI] = ACTIONS(5853), + [anon_sym_QMARK] = ACTIONS(5853), + [aux_sym_close_statement_token1] = ACTIONS(5851), + [aux_sym_put_statement_token1] = ACTIONS(5851), + [aux_sym_unlock_statement_token1] = ACTIONS(5851), + [aux_sym_seek_statement_token1] = ACTIONS(5851), + [sym_reset_statement] = ACTIONS(5851), + [aux_sym_raise_event_statement_token1] = ACTIONS(5851), + [sym_stop_statement] = ACTIONS(5851), + [sym_beep_statement] = ACTIONS(5851), + [aux_sym_unload_statement_token1] = ACTIONS(5851), + [aux_sym_def_type_statement_token1] = ACTIONS(5851), + [aux_sym_def_type_statement_token2] = ACTIONS(5851), + [aux_sym_def_type_statement_token3] = ACTIONS(5851), + [aux_sym_def_type_statement_token4] = ACTIONS(5851), + [aux_sym_def_type_statement_token5] = ACTIONS(5851), + [aux_sym_def_type_statement_token6] = ACTIONS(5851), + [aux_sym_def_type_statement_token7] = ACTIONS(5851), + [aux_sym_def_type_statement_token8] = ACTIONS(5851), + [aux_sym_def_type_statement_token9] = ACTIONS(5851), + [aux_sym_def_type_statement_token10] = ACTIONS(5851), + [aux_sym_def_type_statement_token11] = ACTIONS(5851), + [aux_sym_def_type_statement_token12] = ACTIONS(5851), + [aux_sym_def_type_statement_token13] = ACTIONS(5851), + [aux_sym_def_type_statement_token14] = ACTIONS(5851), + [aux_sym_call_statement_token1] = ACTIONS(5851), + [sym__ambiguous_call_statement] = ACTIONS(5851), + [aux_sym_addressof_expression_token1] = ACTIONS(5851), + [aux_sym_type_of_expression_token1] = ACTIONS(5851), + [aux_sym_unary_expression_token1] = ACTIONS(5851), + [sym_string_literal] = ACTIONS(5853), + [sym_number_literal] = ACTIONS(5853), + [aux_sym_boolean_literal_token1] = ACTIONS(5851), + [aux_sym_boolean_literal_token2] = ACTIONS(5851), + [sym_nothing_literal] = ACTIONS(5851), + [sym_null_literal] = ACTIONS(5851), + [sym_empty_literal] = ACTIONS(5851), + [sym_date_literal] = ACTIONS(5853), + [anon_sym_POUND] = ACTIONS(5851), + }, + [STATE(2578)] = { + [sym_identifier] = ACTIONS(5555), + [sym_newline] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(4399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5555), + [aux_sym_frm_property_statement_token1] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(7320), + [anon_sym_BANG] = ACTIONS(7253), + [aux_sym__attribute_identifier_token1] = ACTIONS(5555), + [aux_sym_option_statement_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5555), + [aux_sym_preprocessor_const_token1] = ACTIONS(5555), + [sym_static_modifier] = ACTIONS(5555), + [sym__dim_keyword] = ACTIONS(5555), + [sym__redim_keyword] = ACTIONS(5555), + [aux_sym_byval_modifier_token1] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5555), + [aux_sym_set_accessor_token1] = ACTIONS(5555), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5555), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5555), + [aux_sym_visibility_token1] = ACTIONS(5555), + [aux_sym_visibility_token2] = ACTIONS(5555), + [aux_sym_elseif_fragment_token1] = ACTIONS(5555), + [aux_sym_else_fragment_token1] = ACTIONS(5555), + [aux_sym_select_statement_token1] = ACTIONS(5555), + [aux_sym__for_header_token1] = ACTIONS(5555), + [aux_sym_do_statement_token1] = ACTIONS(5555), + [aux_sym_do_condition_token1] = ACTIONS(5555), + [aux_sym_with_statement_token1] = ACTIONS(5555), + [aux_sym_exit_statement_token1] = ACTIONS(5555), + [sym_end_statement] = ACTIONS(4399), + [aux_sym_on_goto_statement_token1] = ACTIONS(5555), + [aux_sym_on_goto_statement_token2] = ACTIONS(5555), + [aux_sym_on_error_statement_token2] = ACTIONS(5555), + [sym__ambiguous_redim_statement] = ACTIONS(4399), + [aux_sym_erase_statement_token1] = ACTIONS(5555), + [aux_sym_open_statement_token1] = ACTIONS(5555), + [aux_sym_file_mode_token2] = ACTIONS(5555), + [aux_sym_file_access_token2] = ACTIONS(5555), + [aux_sym_file_lock_token2] = ACTIONS(5555), + [aux_sym_print_statement_token1] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(5555), + [aux_sym_put_statement_token1] = ACTIONS(5555), + [aux_sym_unlock_statement_token1] = ACTIONS(5555), + [aux_sym_seek_statement_token1] = ACTIONS(5555), + [sym_reset_statement] = ACTIONS(5555), + [aux_sym_raise_event_statement_token1] = ACTIONS(5555), + [sym_stop_statement] = ACTIONS(5555), + [sym_beep_statement] = ACTIONS(5555), + [aux_sym_unload_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token2] = ACTIONS(5555), + [aux_sym_def_type_statement_token3] = ACTIONS(5555), + [aux_sym_def_type_statement_token4] = ACTIONS(5555), + [aux_sym_def_type_statement_token5] = ACTIONS(5555), + [aux_sym_def_type_statement_token6] = ACTIONS(5555), + [aux_sym_def_type_statement_token7] = ACTIONS(5555), + [aux_sym_def_type_statement_token8] = ACTIONS(5555), + [aux_sym_def_type_statement_token9] = ACTIONS(5555), + [aux_sym_def_type_statement_token10] = ACTIONS(5555), + [aux_sym_def_type_statement_token11] = ACTIONS(5555), + [aux_sym_def_type_statement_token12] = ACTIONS(5555), + [aux_sym_def_type_statement_token13] = ACTIONS(5555), + [aux_sym_def_type_statement_token14] = ACTIONS(5555), + [aux_sym_call_statement_token1] = ACTIONS(5555), + [sym__ambiguous_call_statement] = ACTIONS(5555), + [aux_sym_addressof_expression_token1] = ACTIONS(5555), + [aux_sym_type_of_expression_token1] = ACTIONS(5555), + [aux_sym_unary_expression_token1] = ACTIONS(5555), + [sym_string_literal] = ACTIONS(4399), + [sym_number_literal] = ACTIONS(4399), + [aux_sym_boolean_literal_token1] = ACTIONS(5555), + [aux_sym_boolean_literal_token2] = ACTIONS(5555), + [sym_nothing_literal] = ACTIONS(5555), + [sym_null_literal] = ACTIONS(5555), + [sym_empty_literal] = ACTIONS(5555), + [sym_date_literal] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(5555), + }, + [STATE(2579)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5887), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5891), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5893), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6190), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(2580)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_SEMI] = ACTIONS(4599), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(2581)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym_select_statement_token2] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2582)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_while_statement_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2583)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2583), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(7322), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_statement_token2] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2584)] = { + [sym_identifier] = ACTIONS(5821), + [sym_newline] = ACTIONS(5823), + [anon_sym_COLON] = ACTIONS(5823), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5821), + [aux_sym_frm_property_statement_token1] = ACTIONS(5821), + [anon_sym_DOT] = ACTIONS(5821), + [anon_sym_BANG] = ACTIONS(5823), + [aux_sym__attribute_identifier_token1] = ACTIONS(5821), + [aux_sym_option_statement_token3] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5821), + [aux_sym_preprocessor_const_token1] = ACTIONS(5821), + [sym_static_modifier] = ACTIONS(5821), + [sym__dim_keyword] = ACTIONS(5821), + [sym__redim_keyword] = ACTIONS(5821), + [aux_sym_get_accessor_token1] = ACTIONS(5821), + [aux_sym_set_accessor_token1] = ACTIONS(5821), + [anon_sym_COMMA] = ACTIONS(5823), + [aux_sym_const_declaration_token1] = ACTIONS(5821), + [anon_sym_LPAREN] = ACTIONS(5823), + [aux_sym_as_type_clause_token2] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5821), + [aux_sym_visibility_token1] = ACTIONS(5821), + [aux_sym_visibility_token2] = ACTIONS(5821), + [aux_sym_elseif_fragment_token1] = ACTIONS(5821), + [aux_sym_else_fragment_token1] = ACTIONS(5821), + [aux_sym_select_statement_token1] = ACTIONS(5821), + [aux_sym_select_statement_token2] = ACTIONS(5821), + [aux_sym__for_header_token1] = ACTIONS(5821), + [aux_sym_do_statement_token1] = ACTIONS(5821), + [aux_sym_do_condition_token1] = ACTIONS(5821), + [aux_sym_with_statement_token1] = ACTIONS(5821), + [aux_sym_exit_statement_token1] = ACTIONS(5821), + [sym_end_statement] = ACTIONS(5823), + [aux_sym_on_goto_statement_token1] = ACTIONS(5821), + [aux_sym_on_goto_statement_token2] = ACTIONS(5821), + [aux_sym_on_error_statement_token2] = ACTIONS(5821), + [sym__ambiguous_redim_statement] = ACTIONS(5823), + [aux_sym_erase_statement_token1] = ACTIONS(5821), + [aux_sym_open_statement_token1] = ACTIONS(5821), + [aux_sym_file_mode_token2] = ACTIONS(5821), + [aux_sym_file_access_token2] = ACTIONS(5821), + [aux_sym_file_lock_token2] = ACTIONS(5821), + [aux_sym_print_statement_token1] = ACTIONS(5821), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_SEMI] = ACTIONS(5823), + [anon_sym_QMARK] = ACTIONS(5823), + [aux_sym_close_statement_token1] = ACTIONS(5821), + [aux_sym_put_statement_token1] = ACTIONS(5821), + [aux_sym_unlock_statement_token1] = ACTIONS(5821), + [aux_sym_seek_statement_token1] = ACTIONS(5821), + [sym_reset_statement] = ACTIONS(5821), + [aux_sym_raise_event_statement_token1] = ACTIONS(5821), + [sym_stop_statement] = ACTIONS(5821), + [sym_beep_statement] = ACTIONS(5821), + [aux_sym_unload_statement_token1] = ACTIONS(5821), + [aux_sym_def_type_statement_token1] = ACTIONS(5821), + [aux_sym_def_type_statement_token2] = ACTIONS(5821), + [aux_sym_def_type_statement_token3] = ACTIONS(5821), + [aux_sym_def_type_statement_token4] = ACTIONS(5821), + [aux_sym_def_type_statement_token5] = ACTIONS(5821), + [aux_sym_def_type_statement_token6] = ACTIONS(5821), + [aux_sym_def_type_statement_token7] = ACTIONS(5821), + [aux_sym_def_type_statement_token8] = ACTIONS(5821), + [aux_sym_def_type_statement_token9] = ACTIONS(5821), + [aux_sym_def_type_statement_token10] = ACTIONS(5821), + [aux_sym_def_type_statement_token11] = ACTIONS(5821), + [aux_sym_def_type_statement_token12] = ACTIONS(5821), + [aux_sym_def_type_statement_token13] = ACTIONS(5821), + [aux_sym_def_type_statement_token14] = ACTIONS(5821), + [aux_sym_call_statement_token1] = ACTIONS(5821), + [sym__ambiguous_call_statement] = ACTIONS(5821), + [aux_sym_addressof_expression_token1] = ACTIONS(5821), + [aux_sym_type_of_expression_token1] = ACTIONS(5821), + [aux_sym_unary_expression_token1] = ACTIONS(5821), + [sym_string_literal] = ACTIONS(5823), + [sym_number_literal] = ACTIONS(5823), + [aux_sym_boolean_literal_token1] = ACTIONS(5821), + [aux_sym_boolean_literal_token2] = ACTIONS(5821), + [sym_nothing_literal] = ACTIONS(5821), + [sym_null_literal] = ACTIONS(5821), + [sym_empty_literal] = ACTIONS(5821), + [sym_date_literal] = ACTIONS(5823), + [anon_sym_POUND] = ACTIONS(5821), + }, + [STATE(2585)] = { + [sym_identifier] = ACTIONS(5851), + [sym_newline] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5853), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5851), + [aux_sym_frm_property_statement_token1] = ACTIONS(5851), + [anon_sym_DOT] = ACTIONS(7325), + [anon_sym_BANG] = ACTIONS(7327), + [aux_sym__attribute_identifier_token1] = ACTIONS(5851), + [aux_sym_option_statement_token3] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5851), + [aux_sym_preprocessor_const_token1] = ACTIONS(5851), + [sym_static_modifier] = ACTIONS(5851), + [sym__dim_keyword] = ACTIONS(5851), + [sym__redim_keyword] = ACTIONS(5851), + [aux_sym_get_accessor_token1] = ACTIONS(5851), + [aux_sym_set_accessor_token1] = ACTIONS(5851), + [anon_sym_COMMA] = ACTIONS(5853), + [aux_sym_const_declaration_token1] = ACTIONS(5851), + [anon_sym_LPAREN] = ACTIONS(5853), + [aux_sym_as_type_clause_token2] = ACTIONS(5851), + [anon_sym_STAR] = ACTIONS(5859), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5851), + [aux_sym_visibility_token1] = ACTIONS(5851), + [aux_sym_visibility_token2] = ACTIONS(5851), + [aux_sym_elseif_fragment_token1] = ACTIONS(5851), + [aux_sym_else_fragment_token1] = ACTIONS(5851), + [aux_sym_select_statement_token1] = ACTIONS(5851), + [aux_sym__for_header_token1] = ACTIONS(5851), + [aux_sym_do_statement_token1] = ACTIONS(5851), + [aux_sym_do_condition_token1] = ACTIONS(5851), + [aux_sym_while_statement_token1] = ACTIONS(5851), + [aux_sym_with_statement_token1] = ACTIONS(5851), + [aux_sym_exit_statement_token1] = ACTIONS(5851), + [sym_end_statement] = ACTIONS(5853), + [aux_sym_on_goto_statement_token1] = ACTIONS(5851), + [aux_sym_on_goto_statement_token2] = ACTIONS(5851), + [aux_sym_on_error_statement_token2] = ACTIONS(5851), + [sym__ambiguous_redim_statement] = ACTIONS(5853), + [aux_sym_erase_statement_token1] = ACTIONS(5851), + [aux_sym_open_statement_token1] = ACTIONS(5851), + [aux_sym_file_mode_token2] = ACTIONS(5851), + [aux_sym_file_access_token2] = ACTIONS(5851), + [aux_sym_file_lock_token2] = ACTIONS(5851), + [aux_sym_print_statement_token1] = ACTIONS(5851), + [anon_sym_CARET] = ACTIONS(5859), + [anon_sym_SLASH] = ACTIONS(5859), + [anon_sym_BSLASH] = ACTIONS(5859), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5861), + [anon_sym_PLUS] = ACTIONS(5863), + [anon_sym_DASH] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5861), + [anon_sym_SEMI] = ACTIONS(5853), + [anon_sym_QMARK] = ACTIONS(5853), + [aux_sym_close_statement_token1] = ACTIONS(5851), + [aux_sym_put_statement_token1] = ACTIONS(5851), + [aux_sym_unlock_statement_token1] = ACTIONS(5851), + [aux_sym_seek_statement_token1] = ACTIONS(5851), + [sym_reset_statement] = ACTIONS(5851), + [aux_sym_raise_event_statement_token1] = ACTIONS(5851), + [sym_stop_statement] = ACTIONS(5851), + [sym_beep_statement] = ACTIONS(5851), + [aux_sym_unload_statement_token1] = ACTIONS(5851), + [aux_sym_def_type_statement_token1] = ACTIONS(5851), + [aux_sym_def_type_statement_token2] = ACTIONS(5851), + [aux_sym_def_type_statement_token3] = ACTIONS(5851), + [aux_sym_def_type_statement_token4] = ACTIONS(5851), + [aux_sym_def_type_statement_token5] = ACTIONS(5851), + [aux_sym_def_type_statement_token6] = ACTIONS(5851), + [aux_sym_def_type_statement_token7] = ACTIONS(5851), + [aux_sym_def_type_statement_token8] = ACTIONS(5851), + [aux_sym_def_type_statement_token9] = ACTIONS(5851), + [aux_sym_def_type_statement_token10] = ACTIONS(5851), + [aux_sym_def_type_statement_token11] = ACTIONS(5851), + [aux_sym_def_type_statement_token12] = ACTIONS(5851), + [aux_sym_def_type_statement_token13] = ACTIONS(5851), + [aux_sym_def_type_statement_token14] = ACTIONS(5851), + [aux_sym_call_statement_token1] = ACTIONS(5851), + [sym__ambiguous_call_statement] = ACTIONS(5851), + [aux_sym_addressof_expression_token1] = ACTIONS(5851), + [aux_sym_type_of_expression_token1] = ACTIONS(5851), + [aux_sym_unary_expression_token1] = ACTIONS(5851), + [sym_string_literal] = ACTIONS(5853), + [sym_number_literal] = ACTIONS(5853), + [aux_sym_boolean_literal_token1] = ACTIONS(5851), + [aux_sym_boolean_literal_token2] = ACTIONS(5851), + [sym_nothing_literal] = ACTIONS(5851), + [sym_null_literal] = ACTIONS(5851), + [sym_empty_literal] = ACTIONS(5851), + [sym_date_literal] = ACTIONS(5853), + [anon_sym_POUND] = ACTIONS(5851), + }, + [STATE(2586)] = { + [sym_identifier] = ACTIONS(5766), + [sym_newline] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5766), + [aux_sym_frm_property_statement_token1] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5766), + [anon_sym_BANG] = ACTIONS(5768), + [aux_sym__attribute_identifier_token1] = ACTIONS(5766), + [aux_sym_option_statement_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5766), + [aux_sym_preprocessor_const_token1] = ACTIONS(5766), + [sym_static_modifier] = ACTIONS(5766), + [sym__dim_keyword] = ACTIONS(5766), + [sym__redim_keyword] = ACTIONS(5766), + [aux_sym_get_accessor_token1] = ACTIONS(5766), + [aux_sym_set_accessor_token1] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [aux_sym_const_declaration_token1] = ACTIONS(5766), + [anon_sym_LPAREN] = ACTIONS(5768), + [aux_sym_as_type_clause_token2] = ACTIONS(5766), + [anon_sym_STAR] = ACTIONS(5768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5766), + [aux_sym_visibility_token1] = ACTIONS(5766), + [aux_sym_visibility_token2] = ACTIONS(5766), + [aux_sym_elseif_fragment_token1] = ACTIONS(5766), + [aux_sym_else_fragment_token1] = ACTIONS(5766), + [aux_sym_select_statement_token1] = ACTIONS(5766), + [aux_sym__for_header_token1] = ACTIONS(5766), + [aux_sym_do_statement_token1] = ACTIONS(5766), + [aux_sym_do_condition_token1] = ACTIONS(5766), + [aux_sym_while_statement_token1] = ACTIONS(5766), + [aux_sym_with_statement_token1] = ACTIONS(5766), + [aux_sym_exit_statement_token1] = ACTIONS(5766), + [sym_end_statement] = ACTIONS(5768), + [aux_sym_on_goto_statement_token1] = ACTIONS(5766), + [aux_sym_on_goto_statement_token2] = ACTIONS(5766), + [aux_sym_on_error_statement_token2] = ACTIONS(5766), + [sym__ambiguous_redim_statement] = ACTIONS(5768), + [aux_sym_erase_statement_token1] = ACTIONS(5766), + [aux_sym_open_statement_token1] = ACTIONS(5766), + [aux_sym_file_mode_token2] = ACTIONS(5766), + [aux_sym_file_access_token2] = ACTIONS(5766), + [aux_sym_file_lock_token2] = ACTIONS(5766), + [aux_sym_print_statement_token1] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_BSLASH] = ACTIONS(5768), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5766), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5768), + [aux_sym_close_statement_token1] = ACTIONS(5766), + [aux_sym_put_statement_token1] = ACTIONS(5766), + [aux_sym_unlock_statement_token1] = ACTIONS(5766), + [aux_sym_seek_statement_token1] = ACTIONS(5766), + [sym_reset_statement] = ACTIONS(5766), + [aux_sym_raise_event_statement_token1] = ACTIONS(5766), + [sym_stop_statement] = ACTIONS(5766), + [sym_beep_statement] = ACTIONS(5766), + [aux_sym_unload_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token2] = ACTIONS(5766), + [aux_sym_def_type_statement_token3] = ACTIONS(5766), + [aux_sym_def_type_statement_token4] = ACTIONS(5766), + [aux_sym_def_type_statement_token5] = ACTIONS(5766), + [aux_sym_def_type_statement_token6] = ACTIONS(5766), + [aux_sym_def_type_statement_token7] = ACTIONS(5766), + [aux_sym_def_type_statement_token8] = ACTIONS(5766), + [aux_sym_def_type_statement_token9] = ACTIONS(5766), + [aux_sym_def_type_statement_token10] = ACTIONS(5766), + [aux_sym_def_type_statement_token11] = ACTIONS(5766), + [aux_sym_def_type_statement_token12] = ACTIONS(5766), + [aux_sym_def_type_statement_token13] = ACTIONS(5766), + [aux_sym_def_type_statement_token14] = ACTIONS(5766), + [aux_sym_call_statement_token1] = ACTIONS(5766), + [sym__ambiguous_call_statement] = ACTIONS(5766), + [aux_sym_addressof_expression_token1] = ACTIONS(5766), + [aux_sym_type_of_expression_token1] = ACTIONS(5766), + [aux_sym_unary_expression_token1] = ACTIONS(5766), + [sym_string_literal] = ACTIONS(5768), + [sym_number_literal] = ACTIONS(5768), + [aux_sym_boolean_literal_token1] = ACTIONS(5766), + [aux_sym_boolean_literal_token2] = ACTIONS(5766), + [sym_nothing_literal] = ACTIONS(5766), + [sym_null_literal] = ACTIONS(5766), + [sym_empty_literal] = ACTIONS(5766), + [sym_date_literal] = ACTIONS(5768), + [anon_sym_POUND] = ACTIONS(5766), + }, + [STATE(2587)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_select_statement_token2] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2588)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_while_statement_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2589)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2590)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym_select_statement_token2] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2591)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_statement_token2] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6083), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6085), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6087), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(2592)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_declaration_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5627), + [aux_sym_enum_declaration_token1] = ACTIONS(5627), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5627), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5627), + [aux_sym_declare_function_statement_token1] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [aux_sym__property_get_header_token1] = ACTIONS(5627), + [aux_sym_event_declaration_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(2593)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym_select_statement_token2] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2594)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2595)] = { + [sym_identifier] = ACTIONS(5821), + [sym_newline] = ACTIONS(5823), + [anon_sym_COLON] = ACTIONS(5823), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5821), + [aux_sym_frm_property_statement_token1] = ACTIONS(5821), + [anon_sym_DOT] = ACTIONS(5821), + [anon_sym_BANG] = ACTIONS(5823), + [aux_sym__attribute_identifier_token1] = ACTIONS(5821), + [aux_sym_option_statement_token3] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5821), + [aux_sym_preprocessor_const_token1] = ACTIONS(5821), + [sym_static_modifier] = ACTIONS(5821), + [sym__dim_keyword] = ACTIONS(5821), + [sym__redim_keyword] = ACTIONS(5821), + [aux_sym_get_accessor_token1] = ACTIONS(5821), + [aux_sym_set_accessor_token1] = ACTIONS(5821), + [anon_sym_COMMA] = ACTIONS(5823), + [aux_sym_const_declaration_token1] = ACTIONS(5821), + [anon_sym_LPAREN] = ACTIONS(5823), + [aux_sym_as_type_clause_token2] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5821), + [aux_sym_visibility_token1] = ACTIONS(5821), + [aux_sym_visibility_token2] = ACTIONS(5821), + [aux_sym_elseif_fragment_token1] = ACTIONS(5821), + [aux_sym_else_fragment_token1] = ACTIONS(5821), + [aux_sym_select_statement_token1] = ACTIONS(5821), + [aux_sym__for_header_token1] = ACTIONS(5821), + [aux_sym_do_statement_token1] = ACTIONS(5821), + [aux_sym_do_statement_token2] = ACTIONS(5821), + [aux_sym_do_condition_token1] = ACTIONS(5821), + [aux_sym_with_statement_token1] = ACTIONS(5821), + [aux_sym_exit_statement_token1] = ACTIONS(5821), + [sym_end_statement] = ACTIONS(5823), + [aux_sym_on_goto_statement_token1] = ACTIONS(5821), + [aux_sym_on_goto_statement_token2] = ACTIONS(5821), + [aux_sym_on_error_statement_token2] = ACTIONS(5821), + [sym__ambiguous_redim_statement] = ACTIONS(5823), + [aux_sym_erase_statement_token1] = ACTIONS(5821), + [aux_sym_open_statement_token1] = ACTIONS(5821), + [aux_sym_file_mode_token2] = ACTIONS(5821), + [aux_sym_file_access_token2] = ACTIONS(5821), + [aux_sym_file_lock_token2] = ACTIONS(5821), + [aux_sym_print_statement_token1] = ACTIONS(5821), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_SEMI] = ACTIONS(5823), + [anon_sym_QMARK] = ACTIONS(5823), + [aux_sym_close_statement_token1] = ACTIONS(5821), + [aux_sym_put_statement_token1] = ACTIONS(5821), + [aux_sym_unlock_statement_token1] = ACTIONS(5821), + [aux_sym_seek_statement_token1] = ACTIONS(5821), + [sym_reset_statement] = ACTIONS(5821), + [aux_sym_raise_event_statement_token1] = ACTIONS(5821), + [sym_stop_statement] = ACTIONS(5821), + [sym_beep_statement] = ACTIONS(5821), + [aux_sym_unload_statement_token1] = ACTIONS(5821), + [aux_sym_def_type_statement_token1] = ACTIONS(5821), + [aux_sym_def_type_statement_token2] = ACTIONS(5821), + [aux_sym_def_type_statement_token3] = ACTIONS(5821), + [aux_sym_def_type_statement_token4] = ACTIONS(5821), + [aux_sym_def_type_statement_token5] = ACTIONS(5821), + [aux_sym_def_type_statement_token6] = ACTIONS(5821), + [aux_sym_def_type_statement_token7] = ACTIONS(5821), + [aux_sym_def_type_statement_token8] = ACTIONS(5821), + [aux_sym_def_type_statement_token9] = ACTIONS(5821), + [aux_sym_def_type_statement_token10] = ACTIONS(5821), + [aux_sym_def_type_statement_token11] = ACTIONS(5821), + [aux_sym_def_type_statement_token12] = ACTIONS(5821), + [aux_sym_def_type_statement_token13] = ACTIONS(5821), + [aux_sym_def_type_statement_token14] = ACTIONS(5821), + [aux_sym_call_statement_token1] = ACTIONS(5821), + [sym__ambiguous_call_statement] = ACTIONS(5821), + [aux_sym_addressof_expression_token1] = ACTIONS(5821), + [aux_sym_type_of_expression_token1] = ACTIONS(5821), + [aux_sym_unary_expression_token1] = ACTIONS(5821), + [sym_string_literal] = ACTIONS(5823), + [sym_number_literal] = ACTIONS(5823), + [aux_sym_boolean_literal_token1] = ACTIONS(5821), + [aux_sym_boolean_literal_token2] = ACTIONS(5821), + [sym_nothing_literal] = ACTIONS(5821), + [sym_null_literal] = ACTIONS(5821), + [sym_empty_literal] = ACTIONS(5821), + [sym_date_literal] = ACTIONS(5823), + [anon_sym_POUND] = ACTIONS(5821), + }, + [STATE(2596)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_while_statement_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2597)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2645), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(7329), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_while_statement_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2598)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_while_statement_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2599)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2600)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_statement_token2] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2601)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym_select_statement_token2] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2602)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2603)] = { + [sym_identifier] = ACTIONS(5869), + [sym_newline] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5869), + [aux_sym_frm_property_statement_token1] = ACTIONS(5869), + [anon_sym_DOT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [aux_sym__attribute_identifier_token1] = ACTIONS(5869), + [aux_sym_option_statement_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5869), + [aux_sym_preprocessor_const_token1] = ACTIONS(5869), + [sym_static_modifier] = ACTIONS(5869), + [sym__dim_keyword] = ACTIONS(5869), + [sym__redim_keyword] = ACTIONS(5869), + [aux_sym_get_accessor_token1] = ACTIONS(5869), + [aux_sym_set_accessor_token1] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5871), + [aux_sym_const_declaration_token1] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5871), + [aux_sym_as_type_clause_token2] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5869), + [aux_sym_visibility_token1] = ACTIONS(5869), + [aux_sym_visibility_token2] = ACTIONS(5869), + [aux_sym_elseif_fragment_token1] = ACTIONS(5869), + [aux_sym_else_fragment_token1] = ACTIONS(5869), + [aux_sym_select_statement_token1] = ACTIONS(5869), + [aux_sym__for_header_token1] = ACTIONS(5869), + [aux_sym_do_statement_token1] = ACTIONS(5869), + [aux_sym_do_condition_token1] = ACTIONS(5869), + [aux_sym_with_statement_token1] = ACTIONS(5869), + [aux_sym_exit_statement_token1] = ACTIONS(5869), + [sym_end_statement] = ACTIONS(5871), + [aux_sym_on_goto_statement_token1] = ACTIONS(5869), + [aux_sym_on_goto_statement_token2] = ACTIONS(5869), + [aux_sym_on_error_statement_token2] = ACTIONS(5869), + [sym__ambiguous_redim_statement] = ACTIONS(5871), + [aux_sym_erase_statement_token1] = ACTIONS(5869), + [aux_sym_open_statement_token1] = ACTIONS(5869), + [aux_sym_file_mode_token2] = ACTIONS(5869), + [aux_sym_file_access_token2] = ACTIONS(5869), + [aux_sym_file_lock_token2] = ACTIONS(5869), + [aux_sym_print_statement_token1] = ACTIONS(5869), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7331), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7333), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5891), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5893), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6190), + [anon_sym_SEMI] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [aux_sym_close_statement_token1] = ACTIONS(5869), + [aux_sym_put_statement_token1] = ACTIONS(5869), + [aux_sym_unlock_statement_token1] = ACTIONS(5869), + [aux_sym_seek_statement_token1] = ACTIONS(5869), + [sym_reset_statement] = ACTIONS(5869), + [aux_sym_raise_event_statement_token1] = ACTIONS(5869), + [sym_stop_statement] = ACTIONS(5869), + [sym_beep_statement] = ACTIONS(5869), + [aux_sym_unload_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token2] = ACTIONS(5869), + [aux_sym_def_type_statement_token3] = ACTIONS(5869), + [aux_sym_def_type_statement_token4] = ACTIONS(5869), + [aux_sym_def_type_statement_token5] = ACTIONS(5869), + [aux_sym_def_type_statement_token6] = ACTIONS(5869), + [aux_sym_def_type_statement_token7] = ACTIONS(5869), + [aux_sym_def_type_statement_token8] = ACTIONS(5869), + [aux_sym_def_type_statement_token9] = ACTIONS(5869), + [aux_sym_def_type_statement_token10] = ACTIONS(5869), + [aux_sym_def_type_statement_token11] = ACTIONS(5869), + [aux_sym_def_type_statement_token12] = ACTIONS(5869), + [aux_sym_def_type_statement_token13] = ACTIONS(5869), + [aux_sym_def_type_statement_token14] = ACTIONS(5869), + [aux_sym_call_statement_token1] = ACTIONS(5869), + [sym__ambiguous_call_statement] = ACTIONS(5869), + [aux_sym_addressof_expression_token1] = ACTIONS(5869), + [aux_sym_type_of_expression_token1] = ACTIONS(5869), + [aux_sym_unary_expression_token1] = ACTIONS(5869), + [sym_string_literal] = ACTIONS(5871), + [sym_number_literal] = ACTIONS(5871), + [aux_sym_boolean_literal_token1] = ACTIONS(5869), + [aux_sym_boolean_literal_token2] = ACTIONS(5869), + [sym_nothing_literal] = ACTIONS(5869), + [sym_null_literal] = ACTIONS(5869), + [sym_empty_literal] = ACTIONS(5869), + [sym_date_literal] = ACTIONS(5871), + [anon_sym_POUND] = ACTIONS(5869), + }, + [STATE(2604)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2605)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2606)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_statement_token2] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2607)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_SEMI] = ACTIONS(4487), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(2608)] = { + [sym_identifier] = ACTIONS(5699), + [sym_newline] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5701), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5699), + [aux_sym_frm_property_statement_token1] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5699), + [anon_sym_BANG] = ACTIONS(5701), + [aux_sym__attribute_identifier_token1] = ACTIONS(5699), + [aux_sym_option_statement_token3] = ACTIONS(5699), + [aux_sym_type_declaration_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5699), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5699), + [aux_sym_enum_declaration_token1] = ACTIONS(5699), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5699), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5699), + [aux_sym_declare_function_statement_token1] = ACTIONS(5699), + [aux_sym_preprocessor_const_token1] = ACTIONS(5699), + [aux_sym__property_get_header_token1] = ACTIONS(5699), + [aux_sym_event_declaration_token1] = ACTIONS(5699), + [sym_static_modifier] = ACTIONS(5699), + [sym__dim_keyword] = ACTIONS(5699), + [sym__redim_keyword] = ACTIONS(5699), + [aux_sym_get_accessor_token1] = ACTIONS(5699), + [aux_sym_set_accessor_token1] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5701), + [aux_sym_const_declaration_token1] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(5701), + [aux_sym_as_type_clause_token2] = ACTIONS(5699), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5699), + [aux_sym_visibility_token1] = ACTIONS(5699), + [aux_sym_visibility_token2] = ACTIONS(5699), + [aux_sym_elseif_fragment_token1] = ACTIONS(5699), + [aux_sym_else_fragment_token1] = ACTIONS(5699), + [aux_sym_select_statement_token1] = ACTIONS(5699), + [aux_sym__for_header_token1] = ACTIONS(5699), + [aux_sym_do_statement_token1] = ACTIONS(5699), + [aux_sym_do_condition_token1] = ACTIONS(5699), + [aux_sym_with_statement_token1] = ACTIONS(5699), + [aux_sym_exit_statement_token1] = ACTIONS(5699), + [sym_end_statement] = ACTIONS(5701), + [aux_sym_on_goto_statement_token1] = ACTIONS(5699), + [aux_sym_on_goto_statement_token2] = ACTIONS(5699), + [aux_sym_on_error_statement_token2] = ACTIONS(5699), + [sym__ambiguous_redim_statement] = ACTIONS(5701), + [aux_sym_erase_statement_token1] = ACTIONS(5699), + [aux_sym_open_statement_token1] = ACTIONS(5699), + [aux_sym_file_mode_token2] = ACTIONS(5699), + [aux_sym_file_access_token2] = ACTIONS(5699), + [aux_sym_file_lock_token2] = ACTIONS(5699), + [aux_sym_print_statement_token1] = ACTIONS(5699), + [anon_sym_PLUS] = ACTIONS(5701), + [anon_sym_DASH] = ACTIONS(5699), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7335), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7337), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5701), + [aux_sym_close_statement_token1] = ACTIONS(5699), + [aux_sym_put_statement_token1] = ACTIONS(5699), + [aux_sym_unlock_statement_token1] = ACTIONS(5699), + [aux_sym_seek_statement_token1] = ACTIONS(5699), + [sym_reset_statement] = ACTIONS(5699), + [aux_sym_raise_event_statement_token1] = ACTIONS(5699), + [sym_stop_statement] = ACTIONS(5699), + [sym_beep_statement] = ACTIONS(5699), + [aux_sym_unload_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token2] = ACTIONS(5699), + [aux_sym_def_type_statement_token3] = ACTIONS(5699), + [aux_sym_def_type_statement_token4] = ACTIONS(5699), + [aux_sym_def_type_statement_token5] = ACTIONS(5699), + [aux_sym_def_type_statement_token6] = ACTIONS(5699), + [aux_sym_def_type_statement_token7] = ACTIONS(5699), + [aux_sym_def_type_statement_token8] = ACTIONS(5699), + [aux_sym_def_type_statement_token9] = ACTIONS(5699), + [aux_sym_def_type_statement_token10] = ACTIONS(5699), + [aux_sym_def_type_statement_token11] = ACTIONS(5699), + [aux_sym_def_type_statement_token12] = ACTIONS(5699), + [aux_sym_def_type_statement_token13] = ACTIONS(5699), + [aux_sym_def_type_statement_token14] = ACTIONS(5699), + [aux_sym_call_statement_token1] = ACTIONS(5699), + [sym__ambiguous_call_statement] = ACTIONS(5699), + [aux_sym_addressof_expression_token1] = ACTIONS(5699), + [aux_sym_type_of_expression_token1] = ACTIONS(5699), + [aux_sym_unary_expression_token1] = ACTIONS(5699), + [sym_string_literal] = ACTIONS(5701), + [sym_number_literal] = ACTIONS(5701), + [aux_sym_boolean_literal_token1] = ACTIONS(5699), + [aux_sym_boolean_literal_token2] = ACTIONS(5699), + [sym_nothing_literal] = ACTIONS(5699), + [sym_null_literal] = ACTIONS(5699), + [sym_empty_literal] = ACTIONS(5699), + [sym_date_literal] = ACTIONS(5701), + [anon_sym_POUND] = ACTIONS(5699), + }, + [STATE(2609)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_statement_token2] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2610)] = { + [sym_identifier] = ACTIONS(5775), + [sym_newline] = ACTIONS(5777), + [anon_sym_COLON] = ACTIONS(5777), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5775), + [aux_sym_frm_property_statement_token1] = ACTIONS(5775), + [anon_sym_EQ] = ACTIONS(5777), + [anon_sym_DOT] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5777), + [aux_sym__attribute_identifier_token1] = ACTIONS(5775), + [aux_sym_option_statement_token3] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5775), + [aux_sym_preprocessor_const_token1] = ACTIONS(5775), + [sym_static_modifier] = ACTIONS(5775), + [sym__dim_keyword] = ACTIONS(5775), + [sym__redim_keyword] = ACTIONS(5775), + [aux_sym_get_accessor_token1] = ACTIONS(5775), + [aux_sym_set_accessor_token1] = ACTIONS(5775), + [anon_sym_COMMA] = ACTIONS(5777), + [aux_sym_const_declaration_token1] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5777), + [aux_sym_as_type_clause_token2] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(7339), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5775), + [aux_sym_visibility_token1] = ACTIONS(5775), + [aux_sym_visibility_token2] = ACTIONS(5775), + [aux_sym_elseif_fragment_token1] = ACTIONS(5775), + [aux_sym_else_fragment_token1] = ACTIONS(5775), + [aux_sym_select_statement_token1] = ACTIONS(5775), + [aux_sym__for_header_token1] = ACTIONS(5775), + [aux_sym_do_statement_token1] = ACTIONS(5775), + [aux_sym_do_condition_token1] = ACTIONS(5775), + [aux_sym_with_statement_token1] = ACTIONS(5775), + [aux_sym_exit_statement_token1] = ACTIONS(5775), + [sym_end_statement] = ACTIONS(5777), + [aux_sym_on_goto_statement_token1] = ACTIONS(5775), + [aux_sym_on_goto_statement_token2] = ACTIONS(5775), + [aux_sym_on_error_statement_token2] = ACTIONS(5775), + [sym__ambiguous_redim_statement] = ACTIONS(5777), + [aux_sym_erase_statement_token1] = ACTIONS(5775), + [aux_sym_open_statement_token1] = ACTIONS(5775), + [aux_sym_file_mode_token2] = ACTIONS(5775), + [aux_sym_file_access_token2] = ACTIONS(5775), + [aux_sym_file_lock_token2] = ACTIONS(5775), + [aux_sym_print_statement_token1] = ACTIONS(5775), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(7339), + [anon_sym_BSLASH] = ACTIONS(7343), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7345), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(7351), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7353), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7355), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7357), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7359), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7361), + [anon_sym_QMARK] = ACTIONS(5777), + [aux_sym_close_statement_token1] = ACTIONS(5775), + [aux_sym_put_statement_token1] = ACTIONS(5775), + [aux_sym_unlock_statement_token1] = ACTIONS(5775), + [aux_sym_seek_statement_token1] = ACTIONS(5775), + [sym_reset_statement] = ACTIONS(5775), + [aux_sym_raise_event_statement_token1] = ACTIONS(5775), + [sym_stop_statement] = ACTIONS(5775), + [sym_beep_statement] = ACTIONS(5775), + [aux_sym_unload_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token2] = ACTIONS(5775), + [aux_sym_def_type_statement_token3] = ACTIONS(5775), + [aux_sym_def_type_statement_token4] = ACTIONS(5775), + [aux_sym_def_type_statement_token5] = ACTIONS(5775), + [aux_sym_def_type_statement_token6] = ACTIONS(5775), + [aux_sym_def_type_statement_token7] = ACTIONS(5775), + [aux_sym_def_type_statement_token8] = ACTIONS(5775), + [aux_sym_def_type_statement_token9] = ACTIONS(5775), + [aux_sym_def_type_statement_token10] = ACTIONS(5775), + [aux_sym_def_type_statement_token11] = ACTIONS(5775), + [aux_sym_def_type_statement_token12] = ACTIONS(5775), + [aux_sym_def_type_statement_token13] = ACTIONS(5775), + [aux_sym_def_type_statement_token14] = ACTIONS(5775), + [aux_sym_call_statement_token1] = ACTIONS(5775), + [sym__ambiguous_call_statement] = ACTIONS(5775), + [aux_sym_addressof_expression_token1] = ACTIONS(5775), + [aux_sym_type_of_expression_token1] = ACTIONS(5775), + [aux_sym_unary_expression_token1] = ACTIONS(5775), + [sym_string_literal] = ACTIONS(5777), + [sym_number_literal] = ACTIONS(5777), + [aux_sym_boolean_literal_token1] = ACTIONS(5775), + [aux_sym_boolean_literal_token2] = ACTIONS(5775), + [sym_nothing_literal] = ACTIONS(5775), + [sym_null_literal] = ACTIONS(5775), + [sym_empty_literal] = ACTIONS(5775), + [sym_date_literal] = ACTIONS(5777), + [anon_sym_POUND] = ACTIONS(5775), + }, + [STATE(2611)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_statement_token2] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2612)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2613)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_statement_token2] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2614)] = { + [sym_identifier] = ACTIONS(6320), + [sym_newline] = ACTIONS(6322), + [anon_sym_COLON] = ACTIONS(6322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6320), + [aux_sym_frm_property_statement_token1] = ACTIONS(6320), + [anon_sym_DOT] = ACTIONS(6320), + [anon_sym_BANG] = ACTIONS(6322), + [aux_sym__attribute_identifier_token1] = ACTIONS(6320), + [aux_sym_option_statement_token3] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6320), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6320), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6320), + [aux_sym_preprocessor_const_token1] = ACTIONS(6320), + [sym_static_modifier] = ACTIONS(6320), + [sym__dim_keyword] = ACTIONS(6320), + [sym__redim_keyword] = ACTIONS(6320), + [aux_sym_get_accessor_token1] = ACTIONS(6320), + [aux_sym_set_accessor_token1] = ACTIONS(6320), + [aux_sym_const_declaration_token1] = ACTIONS(6320), + [anon_sym_LPAREN] = ACTIONS(6322), + [aux_sym_as_type_clause_token2] = ACTIONS(6320), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6320), + [aux_sym_visibility_token1] = ACTIONS(6320), + [aux_sym_visibility_token2] = ACTIONS(6320), + [aux_sym_elseif_fragment_token1] = ACTIONS(6320), + [aux_sym_else_fragment_token1] = ACTIONS(6320), + [aux_sym_select_statement_token1] = ACTIONS(6320), + [aux_sym__for_header_token1] = ACTIONS(6320), + [aux_sym_do_statement_token1] = ACTIONS(6320), + [aux_sym_do_condition_token1] = ACTIONS(6320), + [aux_sym_with_statement_token1] = ACTIONS(6320), + [aux_sym_exit_statement_token1] = ACTIONS(6320), + [sym_end_statement] = ACTIONS(6322), + [aux_sym_on_goto_statement_token1] = ACTIONS(6320), + [aux_sym_on_goto_statement_token2] = ACTIONS(6320), + [aux_sym_on_error_statement_token2] = ACTIONS(6320), + [sym__ambiguous_redim_statement] = ACTIONS(6322), + [aux_sym_erase_statement_token1] = ACTIONS(6320), + [aux_sym_open_statement_token1] = ACTIONS(6320), + [aux_sym_file_mode_token2] = ACTIONS(6320), + [aux_sym_file_access_token2] = ACTIONS(6320), + [aux_sym_file_lock_token2] = ACTIONS(6320), + [aux_sym_print_statement_token1] = ACTIONS(6320), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_QMARK] = ACTIONS(6322), + [aux_sym_close_statement_token1] = ACTIONS(6320), + [aux_sym_put_statement_token1] = ACTIONS(6320), + [aux_sym_unlock_statement_token1] = ACTIONS(6320), + [aux_sym_seek_statement_token1] = ACTIONS(6320), + [sym_reset_statement] = ACTIONS(6320), + [aux_sym_raise_event_statement_token1] = ACTIONS(6320), + [sym_stop_statement] = ACTIONS(6320), + [sym_beep_statement] = ACTIONS(6320), + [aux_sym_unload_statement_token1] = ACTIONS(6320), + [aux_sym_def_type_statement_token1] = ACTIONS(6320), + [aux_sym_def_type_statement_token2] = ACTIONS(6320), + [aux_sym_def_type_statement_token3] = ACTIONS(6320), + [aux_sym_def_type_statement_token4] = ACTIONS(6320), + [aux_sym_def_type_statement_token5] = ACTIONS(6320), + [aux_sym_def_type_statement_token6] = ACTIONS(6320), + [aux_sym_def_type_statement_token7] = ACTIONS(6320), + [aux_sym_def_type_statement_token8] = ACTIONS(6320), + [aux_sym_def_type_statement_token9] = ACTIONS(6320), + [aux_sym_def_type_statement_token10] = ACTIONS(6320), + [aux_sym_def_type_statement_token11] = ACTIONS(6320), + [aux_sym_def_type_statement_token12] = ACTIONS(6320), + [aux_sym_def_type_statement_token13] = ACTIONS(6320), + [aux_sym_def_type_statement_token14] = ACTIONS(6320), + [aux_sym_call_statement_token1] = ACTIONS(6320), + [sym__ambiguous_call_statement] = ACTIONS(6320), + [aux_sym_addressof_expression_token1] = ACTIONS(6320), + [aux_sym_type_of_expression_token1] = ACTIONS(6320), + [aux_sym_unary_expression_token1] = ACTIONS(6320), + [sym_string_literal] = ACTIONS(6322), + [sym_number_literal] = ACTIONS(6322), + [aux_sym_boolean_literal_token1] = ACTIONS(6320), + [aux_sym_boolean_literal_token2] = ACTIONS(6320), + [sym_nothing_literal] = ACTIONS(6320), + [sym_null_literal] = ACTIONS(6320), + [sym_empty_literal] = ACTIONS(6320), + [sym_date_literal] = ACTIONS(6322), + [anon_sym_POUND] = ACTIONS(6320), + }, + [STATE(2615)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2670), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_while_statement_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token3] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2616)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2617)] = { + [sym_identifier] = ACTIONS(5851), + [sym_newline] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5853), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5851), + [aux_sym_frm_property_statement_token1] = ACTIONS(5851), + [anon_sym_DOT] = ACTIONS(7363), + [anon_sym_BANG] = ACTIONS(7365), + [aux_sym__attribute_identifier_token1] = ACTIONS(5851), + [aux_sym_option_statement_token3] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5851), + [aux_sym_preprocessor_const_token1] = ACTIONS(5851), + [sym_static_modifier] = ACTIONS(5851), + [sym__dim_keyword] = ACTIONS(5851), + [sym__redim_keyword] = ACTIONS(5851), + [aux_sym_get_accessor_token1] = ACTIONS(5851), + [aux_sym_set_accessor_token1] = ACTIONS(5851), + [anon_sym_COMMA] = ACTIONS(5853), + [aux_sym_const_declaration_token1] = ACTIONS(5851), + [anon_sym_LPAREN] = ACTIONS(5853), + [aux_sym_as_type_clause_token2] = ACTIONS(5851), + [anon_sym_STAR] = ACTIONS(5859), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5851), + [aux_sym_visibility_token1] = ACTIONS(5851), + [aux_sym_visibility_token2] = ACTIONS(5851), + [aux_sym_elseif_fragment_token1] = ACTIONS(5851), + [aux_sym_else_fragment_token1] = ACTIONS(5851), + [aux_sym_select_statement_token1] = ACTIONS(5851), + [aux_sym__for_header_token1] = ACTIONS(5851), + [aux_sym_do_statement_token1] = ACTIONS(5851), + [aux_sym_do_condition_token1] = ACTIONS(5851), + [aux_sym_with_statement_token1] = ACTIONS(5851), + [aux_sym_exit_statement_token1] = ACTIONS(5851), + [sym_end_statement] = ACTIONS(5853), + [aux_sym_on_goto_statement_token1] = ACTIONS(5851), + [aux_sym_on_goto_statement_token2] = ACTIONS(5851), + [aux_sym_on_error_statement_token2] = ACTIONS(5851), + [sym__ambiguous_redim_statement] = ACTIONS(5853), + [aux_sym_erase_statement_token1] = ACTIONS(5851), + [aux_sym_open_statement_token1] = ACTIONS(5851), + [aux_sym_file_mode_token2] = ACTIONS(5851), + [aux_sym_file_access_token2] = ACTIONS(5851), + [aux_sym_file_lock_token2] = ACTIONS(5851), + [aux_sym_print_statement_token1] = ACTIONS(5851), + [anon_sym_CARET] = ACTIONS(5859), + [anon_sym_SLASH] = ACTIONS(5859), + [anon_sym_BSLASH] = ACTIONS(5859), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5861), + [anon_sym_PLUS] = ACTIONS(5863), + [anon_sym_DASH] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5861), + [anon_sym_SEMI] = ACTIONS(5853), + [anon_sym_QMARK] = ACTIONS(5853), + [aux_sym_close_statement_token1] = ACTIONS(5851), + [aux_sym_put_statement_token1] = ACTIONS(5851), + [aux_sym_unlock_statement_token1] = ACTIONS(5851), + [aux_sym_seek_statement_token1] = ACTIONS(5851), + [sym_reset_statement] = ACTIONS(5851), + [aux_sym_raise_event_statement_token1] = ACTIONS(5851), + [sym_stop_statement] = ACTIONS(5851), + [sym_beep_statement] = ACTIONS(5851), + [aux_sym_unload_statement_token1] = ACTIONS(5851), + [aux_sym_def_type_statement_token1] = ACTIONS(5851), + [aux_sym_def_type_statement_token2] = ACTIONS(5851), + [aux_sym_def_type_statement_token3] = ACTIONS(5851), + [aux_sym_def_type_statement_token4] = ACTIONS(5851), + [aux_sym_def_type_statement_token5] = ACTIONS(5851), + [aux_sym_def_type_statement_token6] = ACTIONS(5851), + [aux_sym_def_type_statement_token7] = ACTIONS(5851), + [aux_sym_def_type_statement_token8] = ACTIONS(5851), + [aux_sym_def_type_statement_token9] = ACTIONS(5851), + [aux_sym_def_type_statement_token10] = ACTIONS(5851), + [aux_sym_def_type_statement_token11] = ACTIONS(5851), + [aux_sym_def_type_statement_token12] = ACTIONS(5851), + [aux_sym_def_type_statement_token13] = ACTIONS(5851), + [aux_sym_def_type_statement_token14] = ACTIONS(5851), + [aux_sym_call_statement_token1] = ACTIONS(5851), + [sym__ambiguous_call_statement] = ACTIONS(5851), + [aux_sym_addressof_expression_token1] = ACTIONS(5851), + [aux_sym_type_of_expression_token1] = ACTIONS(5851), + [aux_sym_unary_expression_token1] = ACTIONS(5851), + [sym_string_literal] = ACTIONS(5853), + [sym_number_literal] = ACTIONS(5853), + [aux_sym_boolean_literal_token1] = ACTIONS(5851), + [aux_sym_boolean_literal_token2] = ACTIONS(5851), + [sym_nothing_literal] = ACTIONS(5851), + [sym_null_literal] = ACTIONS(5851), + [sym_empty_literal] = ACTIONS(5851), + [sym_date_literal] = ACTIONS(5853), + [anon_sym_POUND] = ACTIONS(5851), + }, + [STATE(2618)] = { + [sym_identifier] = ACTIONS(5775), + [sym_newline] = ACTIONS(5777), + [anon_sym_COLON] = ACTIONS(5777), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5775), + [aux_sym_frm_property_statement_token1] = ACTIONS(5775), + [anon_sym_EQ] = ACTIONS(5777), + [anon_sym_DOT] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5777), + [aux_sym__attribute_identifier_token1] = ACTIONS(5775), + [aux_sym_option_statement_token3] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5775), + [aux_sym_preprocessor_const_token1] = ACTIONS(5775), + [sym_static_modifier] = ACTIONS(5775), + [sym__dim_keyword] = ACTIONS(5775), + [sym__redim_keyword] = ACTIONS(5775), + [aux_sym_get_accessor_token1] = ACTIONS(5775), + [aux_sym_set_accessor_token1] = ACTIONS(5775), + [anon_sym_COMMA] = ACTIONS(5777), + [aux_sym_const_declaration_token1] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5777), + [aux_sym_as_type_clause_token2] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(7367), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5775), + [aux_sym_visibility_token1] = ACTIONS(5775), + [aux_sym_visibility_token2] = ACTIONS(5775), + [aux_sym_elseif_fragment_token1] = ACTIONS(5775), + [aux_sym_else_fragment_token1] = ACTIONS(5775), + [aux_sym_select_statement_token1] = ACTIONS(5775), + [aux_sym__for_header_token1] = ACTIONS(5775), + [aux_sym_do_statement_token1] = ACTIONS(5775), + [aux_sym_do_statement_token2] = ACTIONS(5775), + [aux_sym_do_condition_token1] = ACTIONS(5775), + [aux_sym_with_statement_token1] = ACTIONS(5775), + [aux_sym_exit_statement_token1] = ACTIONS(5775), + [sym_end_statement] = ACTIONS(5777), + [aux_sym_on_goto_statement_token1] = ACTIONS(5775), + [aux_sym_on_goto_statement_token2] = ACTIONS(5775), + [aux_sym_on_error_statement_token2] = ACTIONS(5775), + [sym__ambiguous_redim_statement] = ACTIONS(5777), + [aux_sym_erase_statement_token1] = ACTIONS(5775), + [aux_sym_open_statement_token1] = ACTIONS(5775), + [aux_sym_file_mode_token2] = ACTIONS(5775), + [aux_sym_file_access_token2] = ACTIONS(5775), + [aux_sym_file_lock_token2] = ACTIONS(5775), + [aux_sym_print_statement_token1] = ACTIONS(5775), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_SLASH] = ACTIONS(7367), + [anon_sym_BSLASH] = ACTIONS(7371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7375), + [anon_sym_DASH] = ACTIONS(7377), + [anon_sym_AMP] = ACTIONS(7379), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7381), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7383), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7385), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7387), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7389), + [anon_sym_QMARK] = ACTIONS(5777), + [aux_sym_close_statement_token1] = ACTIONS(5775), + [aux_sym_put_statement_token1] = ACTIONS(5775), + [aux_sym_unlock_statement_token1] = ACTIONS(5775), + [aux_sym_seek_statement_token1] = ACTIONS(5775), + [sym_reset_statement] = ACTIONS(5775), + [aux_sym_raise_event_statement_token1] = ACTIONS(5775), + [sym_stop_statement] = ACTIONS(5775), + [sym_beep_statement] = ACTIONS(5775), + [aux_sym_unload_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token2] = ACTIONS(5775), + [aux_sym_def_type_statement_token3] = ACTIONS(5775), + [aux_sym_def_type_statement_token4] = ACTIONS(5775), + [aux_sym_def_type_statement_token5] = ACTIONS(5775), + [aux_sym_def_type_statement_token6] = ACTIONS(5775), + [aux_sym_def_type_statement_token7] = ACTIONS(5775), + [aux_sym_def_type_statement_token8] = ACTIONS(5775), + [aux_sym_def_type_statement_token9] = ACTIONS(5775), + [aux_sym_def_type_statement_token10] = ACTIONS(5775), + [aux_sym_def_type_statement_token11] = ACTIONS(5775), + [aux_sym_def_type_statement_token12] = ACTIONS(5775), + [aux_sym_def_type_statement_token13] = ACTIONS(5775), + [aux_sym_def_type_statement_token14] = ACTIONS(5775), + [aux_sym_call_statement_token1] = ACTIONS(5775), + [sym__ambiguous_call_statement] = ACTIONS(5775), + [aux_sym_addressof_expression_token1] = ACTIONS(5775), + [aux_sym_type_of_expression_token1] = ACTIONS(5775), + [aux_sym_unary_expression_token1] = ACTIONS(5775), + [sym_string_literal] = ACTIONS(5777), + [sym_number_literal] = ACTIONS(5777), + [aux_sym_boolean_literal_token1] = ACTIONS(5775), + [aux_sym_boolean_literal_token2] = ACTIONS(5775), + [sym_nothing_literal] = ACTIONS(5775), + [sym_null_literal] = ACTIONS(5775), + [sym_empty_literal] = ACTIONS(5775), + [sym_date_literal] = ACTIONS(5777), + [anon_sym_POUND] = ACTIONS(5775), + }, + [STATE(2619)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_while_statement_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2620)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_while_statement_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2621)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2837), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(7391), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_statement_token2] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2622)] = { + [sym_identifier] = ACTIONS(5775), + [sym_newline] = ACTIONS(5777), + [anon_sym_COLON] = ACTIONS(5777), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5775), + [aux_sym_frm_property_statement_token1] = ACTIONS(5775), + [anon_sym_EQ] = ACTIONS(5777), + [anon_sym_DOT] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5777), + [aux_sym__attribute_identifier_token1] = ACTIONS(5775), + [aux_sym_option_statement_token3] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5775), + [aux_sym_preprocessor_const_token1] = ACTIONS(5775), + [sym_static_modifier] = ACTIONS(5775), + [sym__dim_keyword] = ACTIONS(5775), + [sym__redim_keyword] = ACTIONS(5775), + [aux_sym_get_accessor_token1] = ACTIONS(5775), + [aux_sym_set_accessor_token1] = ACTIONS(5775), + [anon_sym_COMMA] = ACTIONS(5777), + [aux_sym_const_declaration_token1] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5777), + [aux_sym_as_type_clause_token2] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(7393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5775), + [aux_sym_visibility_token1] = ACTIONS(5775), + [aux_sym_visibility_token2] = ACTIONS(5775), + [aux_sym_elseif_fragment_token1] = ACTIONS(5775), + [aux_sym_else_fragment_token1] = ACTIONS(5775), + [aux_sym_select_statement_token1] = ACTIONS(5775), + [aux_sym__for_header_token1] = ACTIONS(5775), + [aux_sym_do_statement_token1] = ACTIONS(5775), + [aux_sym_do_condition_token1] = ACTIONS(5775), + [aux_sym_while_statement_token1] = ACTIONS(5775), + [aux_sym_with_statement_token1] = ACTIONS(5775), + [aux_sym_exit_statement_token1] = ACTIONS(5775), + [sym_end_statement] = ACTIONS(5777), + [aux_sym_on_goto_statement_token1] = ACTIONS(5775), + [aux_sym_on_goto_statement_token2] = ACTIONS(5775), + [aux_sym_on_error_statement_token2] = ACTIONS(5775), + [sym__ambiguous_redim_statement] = ACTIONS(5777), + [aux_sym_erase_statement_token1] = ACTIONS(5775), + [aux_sym_open_statement_token1] = ACTIONS(5775), + [aux_sym_file_mode_token2] = ACTIONS(5775), + [aux_sym_file_access_token2] = ACTIONS(5775), + [aux_sym_file_lock_token2] = ACTIONS(5775), + [aux_sym_print_statement_token1] = ACTIONS(5775), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_BSLASH] = ACTIONS(7397), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7399), + [anon_sym_PLUS] = ACTIONS(7401), + [anon_sym_DASH] = ACTIONS(7403), + [anon_sym_AMP] = ACTIONS(7405), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7407), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7409), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7411), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7413), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7415), + [anon_sym_QMARK] = ACTIONS(5777), + [aux_sym_close_statement_token1] = ACTIONS(5775), + [aux_sym_put_statement_token1] = ACTIONS(5775), + [aux_sym_unlock_statement_token1] = ACTIONS(5775), + [aux_sym_seek_statement_token1] = ACTIONS(5775), + [sym_reset_statement] = ACTIONS(5775), + [aux_sym_raise_event_statement_token1] = ACTIONS(5775), + [sym_stop_statement] = ACTIONS(5775), + [sym_beep_statement] = ACTIONS(5775), + [aux_sym_unload_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token2] = ACTIONS(5775), + [aux_sym_def_type_statement_token3] = ACTIONS(5775), + [aux_sym_def_type_statement_token4] = ACTIONS(5775), + [aux_sym_def_type_statement_token5] = ACTIONS(5775), + [aux_sym_def_type_statement_token6] = ACTIONS(5775), + [aux_sym_def_type_statement_token7] = ACTIONS(5775), + [aux_sym_def_type_statement_token8] = ACTIONS(5775), + [aux_sym_def_type_statement_token9] = ACTIONS(5775), + [aux_sym_def_type_statement_token10] = ACTIONS(5775), + [aux_sym_def_type_statement_token11] = ACTIONS(5775), + [aux_sym_def_type_statement_token12] = ACTIONS(5775), + [aux_sym_def_type_statement_token13] = ACTIONS(5775), + [aux_sym_def_type_statement_token14] = ACTIONS(5775), + [aux_sym_call_statement_token1] = ACTIONS(5775), + [sym__ambiguous_call_statement] = ACTIONS(5775), + [aux_sym_addressof_expression_token1] = ACTIONS(5775), + [aux_sym_type_of_expression_token1] = ACTIONS(5775), + [aux_sym_unary_expression_token1] = ACTIONS(5775), + [sym_string_literal] = ACTIONS(5777), + [sym_number_literal] = ACTIONS(5777), + [aux_sym_boolean_literal_token1] = ACTIONS(5775), + [aux_sym_boolean_literal_token2] = ACTIONS(5775), + [sym_nothing_literal] = ACTIONS(5775), + [sym_null_literal] = ACTIONS(5775), + [sym_empty_literal] = ACTIONS(5775), + [sym_date_literal] = ACTIONS(5777), + [anon_sym_POUND] = ACTIONS(5775), + }, + [STATE(2623)] = { + [sym_identifier] = ACTIONS(5841), + [sym_newline] = ACTIONS(5843), + [anon_sym_COLON] = ACTIONS(5843), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5841), + [aux_sym_frm_property_statement_token1] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5843), + [aux_sym__attribute_identifier_token1] = ACTIONS(5841), + [aux_sym_option_statement_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5841), + [aux_sym_preprocessor_const_token1] = ACTIONS(5841), + [sym_static_modifier] = ACTIONS(5841), + [sym__dim_keyword] = ACTIONS(5841), + [sym__redim_keyword] = ACTIONS(5841), + [aux_sym_get_accessor_token1] = ACTIONS(5841), + [aux_sym_set_accessor_token1] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(5843), + [aux_sym_const_declaration_token1] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5843), + [aux_sym_as_type_clause_token2] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5841), + [aux_sym_visibility_token1] = ACTIONS(5841), + [aux_sym_visibility_token2] = ACTIONS(5841), + [aux_sym_elseif_fragment_token1] = ACTIONS(5841), + [aux_sym_else_fragment_token1] = ACTIONS(5841), + [aux_sym_select_statement_token1] = ACTIONS(5841), + [aux_sym_select_statement_token2] = ACTIONS(5841), + [aux_sym__for_header_token1] = ACTIONS(5841), + [aux_sym_do_statement_token1] = ACTIONS(5841), + [aux_sym_do_condition_token1] = ACTIONS(5841), + [aux_sym_with_statement_token1] = ACTIONS(5841), + [aux_sym_exit_statement_token1] = ACTIONS(5841), + [sym_end_statement] = ACTIONS(5843), + [aux_sym_on_goto_statement_token1] = ACTIONS(5841), + [aux_sym_on_goto_statement_token2] = ACTIONS(5841), + [aux_sym_on_error_statement_token2] = ACTIONS(5841), + [sym__ambiguous_redim_statement] = ACTIONS(5843), + [aux_sym_erase_statement_token1] = ACTIONS(5841), + [aux_sym_open_statement_token1] = ACTIONS(5841), + [aux_sym_file_mode_token2] = ACTIONS(5841), + [aux_sym_file_access_token2] = ACTIONS(5841), + [aux_sym_file_lock_token2] = ACTIONS(5841), + [aux_sym_print_statement_token1] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_SEMI] = ACTIONS(5843), + [anon_sym_QMARK] = ACTIONS(5843), + [aux_sym_close_statement_token1] = ACTIONS(5841), + [aux_sym_put_statement_token1] = ACTIONS(5841), + [aux_sym_unlock_statement_token1] = ACTIONS(5841), + [aux_sym_seek_statement_token1] = ACTIONS(5841), + [sym_reset_statement] = ACTIONS(5841), + [aux_sym_raise_event_statement_token1] = ACTIONS(5841), + [sym_stop_statement] = ACTIONS(5841), + [sym_beep_statement] = ACTIONS(5841), + [aux_sym_unload_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token2] = ACTIONS(5841), + [aux_sym_def_type_statement_token3] = ACTIONS(5841), + [aux_sym_def_type_statement_token4] = ACTIONS(5841), + [aux_sym_def_type_statement_token5] = ACTIONS(5841), + [aux_sym_def_type_statement_token6] = ACTIONS(5841), + [aux_sym_def_type_statement_token7] = ACTIONS(5841), + [aux_sym_def_type_statement_token8] = ACTIONS(5841), + [aux_sym_def_type_statement_token9] = ACTIONS(5841), + [aux_sym_def_type_statement_token10] = ACTIONS(5841), + [aux_sym_def_type_statement_token11] = ACTIONS(5841), + [aux_sym_def_type_statement_token12] = ACTIONS(5841), + [aux_sym_def_type_statement_token13] = ACTIONS(5841), + [aux_sym_def_type_statement_token14] = ACTIONS(5841), + [aux_sym_call_statement_token1] = ACTIONS(5841), + [sym__ambiguous_call_statement] = ACTIONS(5841), + [aux_sym_addressof_expression_token1] = ACTIONS(5841), + [aux_sym_type_of_expression_token1] = ACTIONS(5841), + [aux_sym_unary_expression_token1] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5843), + [sym_number_literal] = ACTIONS(5843), + [aux_sym_boolean_literal_token1] = ACTIONS(5841), + [aux_sym_boolean_literal_token2] = ACTIONS(5841), + [sym_nothing_literal] = ACTIONS(5841), + [sym_null_literal] = ACTIONS(5841), + [sym_empty_literal] = ACTIONS(5841), + [sym_date_literal] = ACTIONS(5843), + [anon_sym_POUND] = ACTIONS(5841), + }, + [STATE(2624)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2625)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2625), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(7417), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2626)] = { + [sym_parameter_list] = STATE(3620), + [sym_as_type_clause] = STATE(4084), + [sym_identifier] = ACTIONS(7420), + [sym_newline] = ACTIONS(7422), + [anon_sym_COLON] = ACTIONS(7422), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7420), + [aux_sym_frm_property_statement_token1] = ACTIONS(7420), + [anon_sym_DOT] = ACTIONS(7420), + [anon_sym_BANG] = ACTIONS(7422), + [aux_sym__attribute_identifier_token1] = ACTIONS(7420), + [aux_sym_option_statement_token3] = ACTIONS(7420), + [aux_sym_type_declaration_token1] = ACTIONS(7420), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7420), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7420), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7420), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7420), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7420), + [aux_sym_enum_declaration_token1] = ACTIONS(7420), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7420), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7420), + [aux_sym_declare_sub_statement_token4] = ACTIONS(7424), + [aux_sym_declare_function_statement_token1] = ACTIONS(7420), + [aux_sym_preprocessor_const_token1] = ACTIONS(7420), + [aux_sym__property_get_header_token1] = ACTIONS(7420), + [aux_sym_event_declaration_token1] = ACTIONS(7420), + [sym_static_modifier] = ACTIONS(7420), + [sym__dim_keyword] = ACTIONS(7420), + [sym__redim_keyword] = ACTIONS(7420), + [aux_sym_get_accessor_token1] = ACTIONS(7420), + [aux_sym_set_accessor_token1] = ACTIONS(7420), + [aux_sym_const_declaration_token1] = ACTIONS(7420), + [anon_sym_LPAREN] = ACTIONS(7426), + [aux_sym_as_type_clause_token1] = ACTIONS(7428), + [aux_sym_as_type_clause_token2] = ACTIONS(7420), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7420), + [aux_sym_visibility_token1] = ACTIONS(7420), + [aux_sym_visibility_token2] = ACTIONS(7420), + [aux_sym_elseif_fragment_token1] = ACTIONS(7420), + [aux_sym_else_fragment_token1] = ACTIONS(7420), + [aux_sym_select_statement_token1] = ACTIONS(7420), + [aux_sym__for_header_token1] = ACTIONS(7420), + [aux_sym_do_statement_token1] = ACTIONS(7420), + [aux_sym_do_condition_token1] = ACTIONS(7420), + [aux_sym_with_statement_token1] = ACTIONS(7420), + [aux_sym_exit_statement_token1] = ACTIONS(7420), + [sym_end_statement] = ACTIONS(7422), + [aux_sym_on_goto_statement_token1] = ACTIONS(7420), + [aux_sym_on_goto_statement_token2] = ACTIONS(7420), + [aux_sym_on_error_statement_token2] = ACTIONS(7420), + [sym__ambiguous_redim_statement] = ACTIONS(7422), + [aux_sym_erase_statement_token1] = ACTIONS(7420), + [aux_sym_open_statement_token1] = ACTIONS(7420), + [aux_sym_file_mode_token2] = ACTIONS(7420), + [aux_sym_file_access_token2] = ACTIONS(7420), + [aux_sym_file_lock_token2] = ACTIONS(7420), + [aux_sym_print_statement_token1] = ACTIONS(7420), + [anon_sym_PLUS] = ACTIONS(7422), + [anon_sym_DASH] = ACTIONS(7420), + [anon_sym_QMARK] = ACTIONS(7422), + [aux_sym_close_statement_token1] = ACTIONS(7420), + [aux_sym_put_statement_token1] = ACTIONS(7420), + [aux_sym_unlock_statement_token1] = ACTIONS(7420), + [aux_sym_seek_statement_token1] = ACTIONS(7420), + [sym_reset_statement] = ACTIONS(7420), + [aux_sym_raise_event_statement_token1] = ACTIONS(7420), + [sym_stop_statement] = ACTIONS(7420), + [sym_beep_statement] = ACTIONS(7420), + [aux_sym_unload_statement_token1] = ACTIONS(7420), + [aux_sym_def_type_statement_token1] = ACTIONS(7420), + [aux_sym_def_type_statement_token2] = ACTIONS(7420), + [aux_sym_def_type_statement_token3] = ACTIONS(7420), + [aux_sym_def_type_statement_token4] = ACTIONS(7420), + [aux_sym_def_type_statement_token5] = ACTIONS(7420), + [aux_sym_def_type_statement_token6] = ACTIONS(7420), + [aux_sym_def_type_statement_token7] = ACTIONS(7420), + [aux_sym_def_type_statement_token8] = ACTIONS(7420), + [aux_sym_def_type_statement_token9] = ACTIONS(7420), + [aux_sym_def_type_statement_token10] = ACTIONS(7420), + [aux_sym_def_type_statement_token11] = ACTIONS(7420), + [aux_sym_def_type_statement_token12] = ACTIONS(7420), + [aux_sym_def_type_statement_token13] = ACTIONS(7420), + [aux_sym_def_type_statement_token14] = ACTIONS(7420), + [aux_sym_call_statement_token1] = ACTIONS(7420), + [sym__ambiguous_call_statement] = ACTIONS(7420), + [aux_sym_addressof_expression_token1] = ACTIONS(7420), + [aux_sym_type_of_expression_token1] = ACTIONS(7420), + [aux_sym_unary_expression_token1] = ACTIONS(7420), + [sym_string_literal] = ACTIONS(7422), + [sym_number_literal] = ACTIONS(7422), + [aux_sym_boolean_literal_token1] = ACTIONS(7420), + [aux_sym_boolean_literal_token2] = ACTIONS(7420), + [sym_nothing_literal] = ACTIONS(7420), + [sym_null_literal] = ACTIONS(7420), + [sym_empty_literal] = ACTIONS(7420), + [sym_date_literal] = ACTIONS(7422), + [anon_sym_POUND] = ACTIONS(7420), + }, + [STATE(2627)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2628)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2629)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2630)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2631)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4412), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4412), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_while_statement_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(5635), + [anon_sym_DASH] = ACTIONS(5638), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(2632)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2633)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2634)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2635)] = { + [sym_argument_list] = STATE(2451), + [sym_identifier] = ACTIONS(4030), + [sym_newline] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4030), + [aux_sym_frm_property_statement_token1] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(7030), + [anon_sym_BANG] = ACTIONS(7024), + [aux_sym__attribute_identifier_token1] = ACTIONS(4030), + [aux_sym_option_statement_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4030), + [aux_sym_preprocessor_const_token1] = ACTIONS(4030), + [sym_static_modifier] = ACTIONS(4030), + [sym__dim_keyword] = ACTIONS(4030), + [sym__redim_keyword] = ACTIONS(4030), + [aux_sym_get_accessor_token1] = ACTIONS(4030), + [aux_sym_set_accessor_token1] = ACTIONS(4030), + [aux_sym_const_declaration_token1] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(5524), + [aux_sym_as_type_clause_token2] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4030), + [aux_sym_visibility_token1] = ACTIONS(4030), + [aux_sym_visibility_token2] = ACTIONS(4030), + [aux_sym_elseif_fragment_token1] = ACTIONS(4030), + [aux_sym_else_fragment_token1] = ACTIONS(4030), + [aux_sym_select_statement_token1] = ACTIONS(4030), + [aux_sym__for_header_token1] = ACTIONS(4030), + [aux_sym_do_statement_token1] = ACTIONS(4030), + [aux_sym_do_condition_token1] = ACTIONS(4030), + [aux_sym_while_statement_token1] = ACTIONS(4030), + [aux_sym_with_statement_token1] = ACTIONS(4030), + [aux_sym_exit_statement_token1] = ACTIONS(4030), + [sym_end_statement] = ACTIONS(4028), + [aux_sym_on_goto_statement_token1] = ACTIONS(4030), + [aux_sym_on_goto_statement_token2] = ACTIONS(4030), + [aux_sym_on_error_statement_token2] = ACTIONS(4030), + [sym__ambiguous_redim_statement] = ACTIONS(4028), + [aux_sym_erase_statement_token1] = ACTIONS(4030), + [aux_sym_open_statement_token1] = ACTIONS(4030), + [aux_sym_file_mode_token2] = ACTIONS(4030), + [aux_sym_file_access_token2] = ACTIONS(4030), + [aux_sym_file_lock_token2] = ACTIONS(4030), + [aux_sym_print_statement_token1] = ACTIONS(4030), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4028), + [aux_sym_close_statement_token1] = ACTIONS(4030), + [aux_sym_put_statement_token1] = ACTIONS(4030), + [aux_sym_unlock_statement_token1] = ACTIONS(4030), + [aux_sym_seek_statement_token1] = ACTIONS(4030), + [sym_reset_statement] = ACTIONS(4030), + [aux_sym_raise_event_statement_token1] = ACTIONS(4030), + [sym_stop_statement] = ACTIONS(4030), + [sym_beep_statement] = ACTIONS(4030), + [aux_sym_unload_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token2] = ACTIONS(4030), + [aux_sym_def_type_statement_token3] = ACTIONS(4030), + [aux_sym_def_type_statement_token4] = ACTIONS(4030), + [aux_sym_def_type_statement_token5] = ACTIONS(4030), + [aux_sym_def_type_statement_token6] = ACTIONS(4030), + [aux_sym_def_type_statement_token7] = ACTIONS(4030), + [aux_sym_def_type_statement_token8] = ACTIONS(4030), + [aux_sym_def_type_statement_token9] = ACTIONS(4030), + [aux_sym_def_type_statement_token10] = ACTIONS(4030), + [aux_sym_def_type_statement_token11] = ACTIONS(4030), + [aux_sym_def_type_statement_token12] = ACTIONS(4030), + [aux_sym_def_type_statement_token13] = ACTIONS(4030), + [aux_sym_def_type_statement_token14] = ACTIONS(4030), + [aux_sym_call_statement_token1] = ACTIONS(4030), + [sym__ambiguous_call_statement] = ACTIONS(4030), + [aux_sym_addressof_expression_token1] = ACTIONS(4030), + [aux_sym_type_of_expression_token1] = ACTIONS(4030), + [aux_sym_unary_expression_token1] = ACTIONS(4030), + [sym_string_literal] = ACTIONS(4028), + [sym_number_literal] = ACTIONS(4028), + [aux_sym_boolean_literal_token1] = ACTIONS(4030), + [aux_sym_boolean_literal_token2] = ACTIONS(4030), + [sym_nothing_literal] = ACTIONS(4030), + [sym_null_literal] = ACTIONS(4030), + [sym_empty_literal] = ACTIONS(4030), + [sym_date_literal] = ACTIONS(4028), + [anon_sym_POUND] = ACTIONS(4030), + }, + [STATE(2636)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2637)] = { + [sym_identifier] = ACTIONS(5821), + [sym_newline] = ACTIONS(5823), + [anon_sym_COLON] = ACTIONS(5823), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5821), + [aux_sym_frm_property_statement_token1] = ACTIONS(5821), + [anon_sym_DOT] = ACTIONS(5821), + [anon_sym_BANG] = ACTIONS(5823), + [aux_sym__attribute_identifier_token1] = ACTIONS(5821), + [aux_sym_option_statement_token3] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5821), + [aux_sym_preprocessor_const_token1] = ACTIONS(5821), + [sym_static_modifier] = ACTIONS(5821), + [sym__dim_keyword] = ACTIONS(5821), + [sym__redim_keyword] = ACTIONS(5821), + [aux_sym_get_accessor_token1] = ACTIONS(5821), + [aux_sym_set_accessor_token1] = ACTIONS(5821), + [anon_sym_COMMA] = ACTIONS(5823), + [aux_sym_const_declaration_token1] = ACTIONS(5821), + [anon_sym_LPAREN] = ACTIONS(5823), + [aux_sym_as_type_clause_token2] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5821), + [aux_sym_visibility_token1] = ACTIONS(5821), + [aux_sym_visibility_token2] = ACTIONS(5821), + [aux_sym_elseif_fragment_token1] = ACTIONS(5821), + [aux_sym_else_fragment_token1] = ACTIONS(5821), + [aux_sym_select_statement_token1] = ACTIONS(5821), + [aux_sym__for_header_token1] = ACTIONS(5821), + [aux_sym_do_statement_token1] = ACTIONS(5821), + [aux_sym_do_condition_token1] = ACTIONS(5821), + [aux_sym_while_statement_token1] = ACTIONS(5821), + [aux_sym_with_statement_token1] = ACTIONS(5821), + [aux_sym_exit_statement_token1] = ACTIONS(5821), + [sym_end_statement] = ACTIONS(5823), + [aux_sym_on_goto_statement_token1] = ACTIONS(5821), + [aux_sym_on_goto_statement_token2] = ACTIONS(5821), + [aux_sym_on_error_statement_token2] = ACTIONS(5821), + [sym__ambiguous_redim_statement] = ACTIONS(5823), + [aux_sym_erase_statement_token1] = ACTIONS(5821), + [aux_sym_open_statement_token1] = ACTIONS(5821), + [aux_sym_file_mode_token2] = ACTIONS(5821), + [aux_sym_file_access_token2] = ACTIONS(5821), + [aux_sym_file_lock_token2] = ACTIONS(5821), + [aux_sym_print_statement_token1] = ACTIONS(5821), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(5823), + [anon_sym_QMARK] = ACTIONS(5823), + [aux_sym_close_statement_token1] = ACTIONS(5821), + [aux_sym_put_statement_token1] = ACTIONS(5821), + [aux_sym_unlock_statement_token1] = ACTIONS(5821), + [aux_sym_seek_statement_token1] = ACTIONS(5821), + [sym_reset_statement] = ACTIONS(5821), + [aux_sym_raise_event_statement_token1] = ACTIONS(5821), + [sym_stop_statement] = ACTIONS(5821), + [sym_beep_statement] = ACTIONS(5821), + [aux_sym_unload_statement_token1] = ACTIONS(5821), + [aux_sym_def_type_statement_token1] = ACTIONS(5821), + [aux_sym_def_type_statement_token2] = ACTIONS(5821), + [aux_sym_def_type_statement_token3] = ACTIONS(5821), + [aux_sym_def_type_statement_token4] = ACTIONS(5821), + [aux_sym_def_type_statement_token5] = ACTIONS(5821), + [aux_sym_def_type_statement_token6] = ACTIONS(5821), + [aux_sym_def_type_statement_token7] = ACTIONS(5821), + [aux_sym_def_type_statement_token8] = ACTIONS(5821), + [aux_sym_def_type_statement_token9] = ACTIONS(5821), + [aux_sym_def_type_statement_token10] = ACTIONS(5821), + [aux_sym_def_type_statement_token11] = ACTIONS(5821), + [aux_sym_def_type_statement_token12] = ACTIONS(5821), + [aux_sym_def_type_statement_token13] = ACTIONS(5821), + [aux_sym_def_type_statement_token14] = ACTIONS(5821), + [aux_sym_call_statement_token1] = ACTIONS(5821), + [sym__ambiguous_call_statement] = ACTIONS(5821), + [aux_sym_addressof_expression_token1] = ACTIONS(5821), + [aux_sym_type_of_expression_token1] = ACTIONS(5821), + [aux_sym_unary_expression_token1] = ACTIONS(5821), + [sym_string_literal] = ACTIONS(5823), + [sym_number_literal] = ACTIONS(5823), + [aux_sym_boolean_literal_token1] = ACTIONS(5821), + [aux_sym_boolean_literal_token2] = ACTIONS(5821), + [sym_nothing_literal] = ACTIONS(5821), + [sym_null_literal] = ACTIONS(5821), + [sym_empty_literal] = ACTIONS(5821), + [sym_date_literal] = ACTIONS(5823), + [anon_sym_POUND] = ACTIONS(5821), + }, + [STATE(2638)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2639)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym_select_statement_token2] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2640)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2641)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2642)] = { + [sym_identifier] = ACTIONS(6621), + [sym_newline] = ACTIONS(6623), + [anon_sym_COLON] = ACTIONS(6623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6621), + [aux_sym_frm_property_statement_token1] = ACTIONS(6621), + [anon_sym_DOT] = ACTIONS(6621), + [anon_sym_BANG] = ACTIONS(6623), + [aux_sym__attribute_identifier_token1] = ACTIONS(6621), + [aux_sym_option_statement_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6621), + [aux_sym_preprocessor_const_token1] = ACTIONS(6621), + [sym_static_modifier] = ACTIONS(6621), + [sym__dim_keyword] = ACTIONS(6621), + [sym__redim_keyword] = ACTIONS(6621), + [aux_sym_get_accessor_token1] = ACTIONS(6621), + [aux_sym_set_accessor_token1] = ACTIONS(6621), + [aux_sym_const_declaration_token1] = ACTIONS(6621), + [anon_sym_LPAREN] = ACTIONS(6623), + [aux_sym_as_type_clause_token2] = ACTIONS(6621), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6621), + [aux_sym_visibility_token1] = ACTIONS(6621), + [aux_sym_visibility_token2] = ACTIONS(6621), + [aux_sym_elseif_fragment_token1] = ACTIONS(6621), + [aux_sym_else_fragment_token1] = ACTIONS(6621), + [aux_sym_select_statement_token1] = ACTIONS(6621), + [aux_sym__for_header_token1] = ACTIONS(6621), + [aux_sym_do_statement_token1] = ACTIONS(6621), + [aux_sym_do_condition_token1] = ACTIONS(6621), + [aux_sym_with_statement_token1] = ACTIONS(6621), + [aux_sym_exit_statement_token1] = ACTIONS(6621), + [sym_end_statement] = ACTIONS(6623), + [aux_sym_on_goto_statement_token1] = ACTIONS(6621), + [aux_sym_on_goto_statement_token2] = ACTIONS(6621), + [aux_sym_on_error_statement_token2] = ACTIONS(6621), + [sym__ambiguous_redim_statement] = ACTIONS(6623), + [aux_sym_erase_statement_token1] = ACTIONS(6621), + [aux_sym_open_statement_token1] = ACTIONS(6621), + [aux_sym_file_mode_token2] = ACTIONS(6621), + [aux_sym_file_access_token2] = ACTIONS(6621), + [aux_sym_file_lock_token2] = ACTIONS(6621), + [aux_sym_print_statement_token1] = ACTIONS(6621), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5532), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5534), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5538), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5599), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5601), + [anon_sym_QMARK] = ACTIONS(6623), + [aux_sym_close_statement_token1] = ACTIONS(6621), + [aux_sym_put_statement_token1] = ACTIONS(6621), + [aux_sym_unlock_statement_token1] = ACTIONS(6621), + [aux_sym_seek_statement_token1] = ACTIONS(6621), + [sym_reset_statement] = ACTIONS(6621), + [aux_sym_raise_event_statement_token1] = ACTIONS(6621), + [sym_stop_statement] = ACTIONS(6621), + [sym_beep_statement] = ACTIONS(6621), + [aux_sym_unload_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token2] = ACTIONS(6621), + [aux_sym_def_type_statement_token3] = ACTIONS(6621), + [aux_sym_def_type_statement_token4] = ACTIONS(6621), + [aux_sym_def_type_statement_token5] = ACTIONS(6621), + [aux_sym_def_type_statement_token6] = ACTIONS(6621), + [aux_sym_def_type_statement_token7] = ACTIONS(6621), + [aux_sym_def_type_statement_token8] = ACTIONS(6621), + [aux_sym_def_type_statement_token9] = ACTIONS(6621), + [aux_sym_def_type_statement_token10] = ACTIONS(6621), + [aux_sym_def_type_statement_token11] = ACTIONS(6621), + [aux_sym_def_type_statement_token12] = ACTIONS(6621), + [aux_sym_def_type_statement_token13] = ACTIONS(6621), + [aux_sym_def_type_statement_token14] = ACTIONS(6621), + [aux_sym_call_statement_token1] = ACTIONS(6621), + [sym__ambiguous_call_statement] = ACTIONS(6621), + [aux_sym_addressof_expression_token1] = ACTIONS(6621), + [aux_sym_type_of_expression_token1] = ACTIONS(6621), + [aux_sym_unary_expression_token1] = ACTIONS(6621), + [sym_string_literal] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [aux_sym_boolean_literal_token1] = ACTIONS(6621), + [aux_sym_boolean_literal_token2] = ACTIONS(6621), + [sym_nothing_literal] = ACTIONS(6621), + [sym_null_literal] = ACTIONS(6621), + [sym_empty_literal] = ACTIONS(6621), + [sym_date_literal] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6621), + }, + [STATE(2643)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2644)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6166), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6168), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6170), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(2645)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2678), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_array_bound_token1] = ACTIONS(4375), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_while_statement_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2646)] = { + [sym_parameter_list] = STATE(3533), + [sym_as_type_clause] = STATE(4023), + [sym_identifier] = ACTIONS(7430), + [sym_newline] = ACTIONS(7432), + [anon_sym_COLON] = ACTIONS(7432), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7430), + [aux_sym_frm_property_statement_token1] = ACTIONS(7430), + [anon_sym_DOT] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(7432), + [aux_sym__attribute_identifier_token1] = ACTIONS(7430), + [aux_sym_option_statement_token3] = ACTIONS(7430), + [aux_sym_type_declaration_token1] = ACTIONS(7430), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7430), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7430), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7430), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7430), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7430), + [aux_sym_enum_declaration_token1] = ACTIONS(7430), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7430), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7430), + [aux_sym_declare_sub_statement_token4] = ACTIONS(7434), + [aux_sym_declare_function_statement_token1] = ACTIONS(7430), + [aux_sym_preprocessor_const_token1] = ACTIONS(7430), + [aux_sym__property_get_header_token1] = ACTIONS(7430), + [aux_sym_event_declaration_token1] = ACTIONS(7430), + [sym_static_modifier] = ACTIONS(7430), + [sym__dim_keyword] = ACTIONS(7430), + [sym__redim_keyword] = ACTIONS(7430), + [aux_sym_get_accessor_token1] = ACTIONS(7430), + [aux_sym_set_accessor_token1] = ACTIONS(7430), + [aux_sym_const_declaration_token1] = ACTIONS(7430), + [anon_sym_LPAREN] = ACTIONS(7426), + [aux_sym_as_type_clause_token1] = ACTIONS(7428), + [aux_sym_as_type_clause_token2] = ACTIONS(7430), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7430), + [aux_sym_visibility_token1] = ACTIONS(7430), + [aux_sym_visibility_token2] = ACTIONS(7430), + [aux_sym_elseif_fragment_token1] = ACTIONS(7430), + [aux_sym_else_fragment_token1] = ACTIONS(7430), + [aux_sym_select_statement_token1] = ACTIONS(7430), + [aux_sym__for_header_token1] = ACTIONS(7430), + [aux_sym_do_statement_token1] = ACTIONS(7430), + [aux_sym_do_condition_token1] = ACTIONS(7430), + [aux_sym_with_statement_token1] = ACTIONS(7430), + [aux_sym_exit_statement_token1] = ACTIONS(7430), + [sym_end_statement] = ACTIONS(7432), + [aux_sym_on_goto_statement_token1] = ACTIONS(7430), + [aux_sym_on_goto_statement_token2] = ACTIONS(7430), + [aux_sym_on_error_statement_token2] = ACTIONS(7430), + [sym__ambiguous_redim_statement] = ACTIONS(7432), + [aux_sym_erase_statement_token1] = ACTIONS(7430), + [aux_sym_open_statement_token1] = ACTIONS(7430), + [aux_sym_file_mode_token2] = ACTIONS(7430), + [aux_sym_file_access_token2] = ACTIONS(7430), + [aux_sym_file_lock_token2] = ACTIONS(7430), + [aux_sym_print_statement_token1] = ACTIONS(7430), + [anon_sym_PLUS] = ACTIONS(7432), + [anon_sym_DASH] = ACTIONS(7430), + [anon_sym_QMARK] = ACTIONS(7432), + [aux_sym_close_statement_token1] = ACTIONS(7430), + [aux_sym_put_statement_token1] = ACTIONS(7430), + [aux_sym_unlock_statement_token1] = ACTIONS(7430), + [aux_sym_seek_statement_token1] = ACTIONS(7430), + [sym_reset_statement] = ACTIONS(7430), + [aux_sym_raise_event_statement_token1] = ACTIONS(7430), + [sym_stop_statement] = ACTIONS(7430), + [sym_beep_statement] = ACTIONS(7430), + [aux_sym_unload_statement_token1] = ACTIONS(7430), + [aux_sym_def_type_statement_token1] = ACTIONS(7430), + [aux_sym_def_type_statement_token2] = ACTIONS(7430), + [aux_sym_def_type_statement_token3] = ACTIONS(7430), + [aux_sym_def_type_statement_token4] = ACTIONS(7430), + [aux_sym_def_type_statement_token5] = ACTIONS(7430), + [aux_sym_def_type_statement_token6] = ACTIONS(7430), + [aux_sym_def_type_statement_token7] = ACTIONS(7430), + [aux_sym_def_type_statement_token8] = ACTIONS(7430), + [aux_sym_def_type_statement_token9] = ACTIONS(7430), + [aux_sym_def_type_statement_token10] = ACTIONS(7430), + [aux_sym_def_type_statement_token11] = ACTIONS(7430), + [aux_sym_def_type_statement_token12] = ACTIONS(7430), + [aux_sym_def_type_statement_token13] = ACTIONS(7430), + [aux_sym_def_type_statement_token14] = ACTIONS(7430), + [aux_sym_call_statement_token1] = ACTIONS(7430), + [sym__ambiguous_call_statement] = ACTIONS(7430), + [aux_sym_addressof_expression_token1] = ACTIONS(7430), + [aux_sym_type_of_expression_token1] = ACTIONS(7430), + [aux_sym_unary_expression_token1] = ACTIONS(7430), + [sym_string_literal] = ACTIONS(7432), + [sym_number_literal] = ACTIONS(7432), + [aux_sym_boolean_literal_token1] = ACTIONS(7430), + [aux_sym_boolean_literal_token2] = ACTIONS(7430), + [sym_nothing_literal] = ACTIONS(7430), + [sym_null_literal] = ACTIONS(7430), + [sym_empty_literal] = ACTIONS(7430), + [sym_date_literal] = ACTIONS(7432), + [anon_sym_POUND] = ACTIONS(7430), + }, + [STATE(2647)] = { + [sym_identifier] = ACTIONS(5766), + [sym_newline] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5766), + [aux_sym_frm_property_statement_token1] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5766), + [anon_sym_BANG] = ACTIONS(5768), + [aux_sym__attribute_identifier_token1] = ACTIONS(5766), + [aux_sym_option_statement_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5766), + [aux_sym_preprocessor_const_token1] = ACTIONS(5766), + [sym_static_modifier] = ACTIONS(5766), + [sym__dim_keyword] = ACTIONS(5766), + [sym__redim_keyword] = ACTIONS(5766), + [aux_sym_get_accessor_token1] = ACTIONS(5766), + [aux_sym_set_accessor_token1] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [aux_sym_const_declaration_token1] = ACTIONS(5766), + [anon_sym_LPAREN] = ACTIONS(5768), + [aux_sym_as_type_clause_token2] = ACTIONS(5766), + [anon_sym_STAR] = ACTIONS(5768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5766), + [aux_sym_visibility_token1] = ACTIONS(5766), + [aux_sym_visibility_token2] = ACTIONS(5766), + [aux_sym_elseif_fragment_token1] = ACTIONS(5766), + [aux_sym_else_fragment_token1] = ACTIONS(5766), + [aux_sym_select_statement_token1] = ACTIONS(5766), + [aux_sym__for_header_token1] = ACTIONS(5766), + [aux_sym_do_statement_token1] = ACTIONS(5766), + [aux_sym_do_statement_token2] = ACTIONS(5766), + [aux_sym_do_condition_token1] = ACTIONS(5766), + [aux_sym_with_statement_token1] = ACTIONS(5766), + [aux_sym_exit_statement_token1] = ACTIONS(5766), + [sym_end_statement] = ACTIONS(5768), + [aux_sym_on_goto_statement_token1] = ACTIONS(5766), + [aux_sym_on_goto_statement_token2] = ACTIONS(5766), + [aux_sym_on_error_statement_token2] = ACTIONS(5766), + [sym__ambiguous_redim_statement] = ACTIONS(5768), + [aux_sym_erase_statement_token1] = ACTIONS(5766), + [aux_sym_open_statement_token1] = ACTIONS(5766), + [aux_sym_file_mode_token2] = ACTIONS(5766), + [aux_sym_file_access_token2] = ACTIONS(5766), + [aux_sym_file_lock_token2] = ACTIONS(5766), + [aux_sym_print_statement_token1] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_BSLASH] = ACTIONS(5768), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5766), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5768), + [aux_sym_close_statement_token1] = ACTIONS(5766), + [aux_sym_put_statement_token1] = ACTIONS(5766), + [aux_sym_unlock_statement_token1] = ACTIONS(5766), + [aux_sym_seek_statement_token1] = ACTIONS(5766), + [sym_reset_statement] = ACTIONS(5766), + [aux_sym_raise_event_statement_token1] = ACTIONS(5766), + [sym_stop_statement] = ACTIONS(5766), + [sym_beep_statement] = ACTIONS(5766), + [aux_sym_unload_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token2] = ACTIONS(5766), + [aux_sym_def_type_statement_token3] = ACTIONS(5766), + [aux_sym_def_type_statement_token4] = ACTIONS(5766), + [aux_sym_def_type_statement_token5] = ACTIONS(5766), + [aux_sym_def_type_statement_token6] = ACTIONS(5766), + [aux_sym_def_type_statement_token7] = ACTIONS(5766), + [aux_sym_def_type_statement_token8] = ACTIONS(5766), + [aux_sym_def_type_statement_token9] = ACTIONS(5766), + [aux_sym_def_type_statement_token10] = ACTIONS(5766), + [aux_sym_def_type_statement_token11] = ACTIONS(5766), + [aux_sym_def_type_statement_token12] = ACTIONS(5766), + [aux_sym_def_type_statement_token13] = ACTIONS(5766), + [aux_sym_def_type_statement_token14] = ACTIONS(5766), + [aux_sym_call_statement_token1] = ACTIONS(5766), + [sym__ambiguous_call_statement] = ACTIONS(5766), + [aux_sym_addressof_expression_token1] = ACTIONS(5766), + [aux_sym_type_of_expression_token1] = ACTIONS(5766), + [aux_sym_unary_expression_token1] = ACTIONS(5766), + [sym_string_literal] = ACTIONS(5768), + [sym_number_literal] = ACTIONS(5768), + [aux_sym_boolean_literal_token1] = ACTIONS(5766), + [aux_sym_boolean_literal_token2] = ACTIONS(5766), + [sym_nothing_literal] = ACTIONS(5766), + [sym_null_literal] = ACTIONS(5766), + [sym_empty_literal] = ACTIONS(5766), + [sym_date_literal] = ACTIONS(5768), + [anon_sym_POUND] = ACTIONS(5766), + }, + [STATE(2648)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2649)] = { + [sym_identifier] = ACTIONS(5716), + [sym_newline] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5716), + [aux_sym_frm_property_statement_token1] = ACTIONS(5716), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_BANG] = ACTIONS(5718), + [aux_sym__attribute_identifier_token1] = ACTIONS(5716), + [aux_sym_option_statement_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5716), + [aux_sym_preprocessor_const_token1] = ACTIONS(5716), + [sym_static_modifier] = ACTIONS(5716), + [sym__dim_keyword] = ACTIONS(5716), + [sym__redim_keyword] = ACTIONS(5716), + [aux_sym_get_accessor_token1] = ACTIONS(5716), + [aux_sym_set_accessor_token1] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5718), + [aux_sym_const_declaration_token1] = ACTIONS(5716), + [anon_sym_LPAREN] = ACTIONS(5718), + [aux_sym_as_type_clause_token2] = ACTIONS(5716), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5716), + [aux_sym_visibility_token1] = ACTIONS(5716), + [aux_sym_visibility_token2] = ACTIONS(5716), + [aux_sym_elseif_fragment_token1] = ACTIONS(5716), + [aux_sym_else_fragment_token1] = ACTIONS(5716), + [aux_sym_select_statement_token1] = ACTIONS(5716), + [aux_sym__for_header_token1] = ACTIONS(5716), + [aux_sym_do_statement_token1] = ACTIONS(5716), + [aux_sym_do_condition_token1] = ACTIONS(5716), + [aux_sym_with_statement_token1] = ACTIONS(5716), + [aux_sym_exit_statement_token1] = ACTIONS(5716), + [sym_end_statement] = ACTIONS(5718), + [aux_sym_on_goto_statement_token1] = ACTIONS(5716), + [aux_sym_on_goto_statement_token2] = ACTIONS(5716), + [aux_sym_on_error_statement_token2] = ACTIONS(5716), + [sym__ambiguous_redim_statement] = ACTIONS(5718), + [aux_sym_erase_statement_token1] = ACTIONS(5716), + [aux_sym_open_statement_token1] = ACTIONS(5716), + [aux_sym_file_mode_token2] = ACTIONS(5716), + [aux_sym_file_access_token2] = ACTIONS(5716), + [aux_sym_file_lock_token2] = ACTIONS(5716), + [aux_sym_print_statement_token1] = ACTIONS(5716), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5887), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5889), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5891), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5893), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6190), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [aux_sym_close_statement_token1] = ACTIONS(5716), + [aux_sym_put_statement_token1] = ACTIONS(5716), + [aux_sym_unlock_statement_token1] = ACTIONS(5716), + [aux_sym_seek_statement_token1] = ACTIONS(5716), + [sym_reset_statement] = ACTIONS(5716), + [aux_sym_raise_event_statement_token1] = ACTIONS(5716), + [sym_stop_statement] = ACTIONS(5716), + [sym_beep_statement] = ACTIONS(5716), + [aux_sym_unload_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token2] = ACTIONS(5716), + [aux_sym_def_type_statement_token3] = ACTIONS(5716), + [aux_sym_def_type_statement_token4] = ACTIONS(5716), + [aux_sym_def_type_statement_token5] = ACTIONS(5716), + [aux_sym_def_type_statement_token6] = ACTIONS(5716), + [aux_sym_def_type_statement_token7] = ACTIONS(5716), + [aux_sym_def_type_statement_token8] = ACTIONS(5716), + [aux_sym_def_type_statement_token9] = ACTIONS(5716), + [aux_sym_def_type_statement_token10] = ACTIONS(5716), + [aux_sym_def_type_statement_token11] = ACTIONS(5716), + [aux_sym_def_type_statement_token12] = ACTIONS(5716), + [aux_sym_def_type_statement_token13] = ACTIONS(5716), + [aux_sym_def_type_statement_token14] = ACTIONS(5716), + [aux_sym_call_statement_token1] = ACTIONS(5716), + [sym__ambiguous_call_statement] = ACTIONS(5716), + [aux_sym_addressof_expression_token1] = ACTIONS(5716), + [aux_sym_type_of_expression_token1] = ACTIONS(5716), + [aux_sym_unary_expression_token1] = ACTIONS(5716), + [sym_string_literal] = ACTIONS(5718), + [sym_number_literal] = ACTIONS(5718), + [aux_sym_boolean_literal_token1] = ACTIONS(5716), + [aux_sym_boolean_literal_token2] = ACTIONS(5716), + [sym_nothing_literal] = ACTIONS(5716), + [sym_null_literal] = ACTIONS(5716), + [sym_empty_literal] = ACTIONS(5716), + [sym_date_literal] = ACTIONS(5718), + [anon_sym_POUND] = ACTIONS(5716), + }, + [STATE(2650)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_while_statement_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2651)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2652)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2653)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2654)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_statement_token2] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2655)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2656)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2657)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2658)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2659)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2660)] = { + [sym_identifier] = ACTIONS(5851), + [sym_newline] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5853), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5851), + [aux_sym_frm_property_statement_token1] = ACTIONS(5851), + [anon_sym_DOT] = ACTIONS(7436), + [anon_sym_BANG] = ACTIONS(7438), + [aux_sym__attribute_identifier_token1] = ACTIONS(5851), + [aux_sym_option_statement_token3] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5851), + [aux_sym_preprocessor_const_token1] = ACTIONS(5851), + [sym_static_modifier] = ACTIONS(5851), + [sym__dim_keyword] = ACTIONS(5851), + [sym__redim_keyword] = ACTIONS(5851), + [aux_sym_get_accessor_token1] = ACTIONS(5851), + [aux_sym_set_accessor_token1] = ACTIONS(5851), + [anon_sym_COMMA] = ACTIONS(5853), + [aux_sym_const_declaration_token1] = ACTIONS(5851), + [anon_sym_LPAREN] = ACTIONS(5853), + [aux_sym_as_type_clause_token2] = ACTIONS(5851), + [anon_sym_STAR] = ACTIONS(5859), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5851), + [aux_sym_visibility_token1] = ACTIONS(5851), + [aux_sym_visibility_token2] = ACTIONS(5851), + [aux_sym_elseif_fragment_token1] = ACTIONS(5851), + [aux_sym_else_fragment_token1] = ACTIONS(5851), + [aux_sym_select_statement_token1] = ACTIONS(5851), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5851), + [aux_sym__for_header_token1] = ACTIONS(5851), + [aux_sym_do_statement_token1] = ACTIONS(5851), + [aux_sym_do_condition_token1] = ACTIONS(5851), + [aux_sym_with_statement_token1] = ACTIONS(5851), + [aux_sym_exit_statement_token1] = ACTIONS(5851), + [sym_end_statement] = ACTIONS(5853), + [aux_sym_on_goto_statement_token1] = ACTIONS(5851), + [aux_sym_on_goto_statement_token2] = ACTIONS(5851), + [aux_sym_on_error_statement_token2] = ACTIONS(5851), + [sym__ambiguous_redim_statement] = ACTIONS(5853), + [aux_sym_erase_statement_token1] = ACTIONS(5851), + [aux_sym_open_statement_token1] = ACTIONS(5851), + [aux_sym_file_mode_token2] = ACTIONS(5851), + [aux_sym_file_access_token2] = ACTIONS(5851), + [aux_sym_file_lock_token2] = ACTIONS(5851), + [aux_sym_print_statement_token1] = ACTIONS(5851), + [anon_sym_CARET] = ACTIONS(5859), + [anon_sym_SLASH] = ACTIONS(5859), + [anon_sym_BSLASH] = ACTIONS(5859), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5861), + [anon_sym_PLUS] = ACTIONS(5863), + [anon_sym_DASH] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5861), + [anon_sym_SEMI] = ACTIONS(5853), + [anon_sym_QMARK] = ACTIONS(5853), + [aux_sym_close_statement_token1] = ACTIONS(5851), + [aux_sym_put_statement_token1] = ACTIONS(5851), + [aux_sym_unlock_statement_token1] = ACTIONS(5851), + [aux_sym_seek_statement_token1] = ACTIONS(5851), + [sym_reset_statement] = ACTIONS(5851), + [aux_sym_raise_event_statement_token1] = ACTIONS(5851), + [sym_stop_statement] = ACTIONS(5851), + [sym_beep_statement] = ACTIONS(5851), + [aux_sym_unload_statement_token1] = ACTIONS(5851), + [aux_sym_def_type_statement_token1] = ACTIONS(5851), + [aux_sym_def_type_statement_token2] = ACTIONS(5851), + [aux_sym_def_type_statement_token3] = ACTIONS(5851), + [aux_sym_def_type_statement_token4] = ACTIONS(5851), + [aux_sym_def_type_statement_token5] = ACTIONS(5851), + [aux_sym_def_type_statement_token6] = ACTIONS(5851), + [aux_sym_def_type_statement_token7] = ACTIONS(5851), + [aux_sym_def_type_statement_token8] = ACTIONS(5851), + [aux_sym_def_type_statement_token9] = ACTIONS(5851), + [aux_sym_def_type_statement_token10] = ACTIONS(5851), + [aux_sym_def_type_statement_token11] = ACTIONS(5851), + [aux_sym_def_type_statement_token12] = ACTIONS(5851), + [aux_sym_def_type_statement_token13] = ACTIONS(5851), + [aux_sym_def_type_statement_token14] = ACTIONS(5851), + [aux_sym_call_statement_token1] = ACTIONS(5851), + [sym__ambiguous_call_statement] = ACTIONS(5851), + [aux_sym_addressof_expression_token1] = ACTIONS(5851), + [aux_sym_type_of_expression_token1] = ACTIONS(5851), + [aux_sym_unary_expression_token1] = ACTIONS(5851), + [sym_string_literal] = ACTIONS(5853), + [sym_number_literal] = ACTIONS(5853), + [aux_sym_boolean_literal_token1] = ACTIONS(5851), + [aux_sym_boolean_literal_token2] = ACTIONS(5851), + [sym_nothing_literal] = ACTIONS(5851), + [sym_null_literal] = ACTIONS(5851), + [sym_empty_literal] = ACTIONS(5851), + [sym_date_literal] = ACTIONS(5853), + [anon_sym_POUND] = ACTIONS(5851), + }, + [STATE(2661)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2662)] = { + [sym_argument_list] = STATE(2532), + [sym_identifier] = ACTIONS(4030), + [sym_newline] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4030), + [aux_sym_frm_property_statement_token1] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(7196), + [anon_sym_BANG] = ACTIONS(7028), + [aux_sym__attribute_identifier_token1] = ACTIONS(4030), + [aux_sym_option_statement_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4030), + [aux_sym_preprocessor_const_token1] = ACTIONS(4030), + [sym_static_modifier] = ACTIONS(4030), + [sym__dim_keyword] = ACTIONS(4030), + [sym__redim_keyword] = ACTIONS(4030), + [aux_sym_get_accessor_token1] = ACTIONS(4030), + [aux_sym_set_accessor_token1] = ACTIONS(4030), + [aux_sym_const_declaration_token1] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(5613), + [aux_sym_as_type_clause_token2] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4030), + [aux_sym_visibility_token1] = ACTIONS(4030), + [aux_sym_visibility_token2] = ACTIONS(4030), + [aux_sym_elseif_fragment_token1] = ACTIONS(4030), + [aux_sym_else_fragment_token1] = ACTIONS(4030), + [aux_sym_select_statement_token1] = ACTIONS(4030), + [aux_sym__for_header_token1] = ACTIONS(4030), + [aux_sym_do_statement_token1] = ACTIONS(4030), + [aux_sym_do_statement_token2] = ACTIONS(4030), + [aux_sym_do_condition_token1] = ACTIONS(4030), + [aux_sym_with_statement_token1] = ACTIONS(4030), + [aux_sym_exit_statement_token1] = ACTIONS(4030), + [sym_end_statement] = ACTIONS(4028), + [aux_sym_on_goto_statement_token1] = ACTIONS(4030), + [aux_sym_on_goto_statement_token2] = ACTIONS(4030), + [aux_sym_on_error_statement_token2] = ACTIONS(4030), + [sym__ambiguous_redim_statement] = ACTIONS(4028), + [aux_sym_erase_statement_token1] = ACTIONS(4030), + [aux_sym_open_statement_token1] = ACTIONS(4030), + [aux_sym_file_mode_token2] = ACTIONS(4030), + [aux_sym_file_access_token2] = ACTIONS(4030), + [aux_sym_file_lock_token2] = ACTIONS(4030), + [aux_sym_print_statement_token1] = ACTIONS(4030), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4028), + [aux_sym_close_statement_token1] = ACTIONS(4030), + [aux_sym_put_statement_token1] = ACTIONS(4030), + [aux_sym_unlock_statement_token1] = ACTIONS(4030), + [aux_sym_seek_statement_token1] = ACTIONS(4030), + [sym_reset_statement] = ACTIONS(4030), + [aux_sym_raise_event_statement_token1] = ACTIONS(4030), + [sym_stop_statement] = ACTIONS(4030), + [sym_beep_statement] = ACTIONS(4030), + [aux_sym_unload_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token2] = ACTIONS(4030), + [aux_sym_def_type_statement_token3] = ACTIONS(4030), + [aux_sym_def_type_statement_token4] = ACTIONS(4030), + [aux_sym_def_type_statement_token5] = ACTIONS(4030), + [aux_sym_def_type_statement_token6] = ACTIONS(4030), + [aux_sym_def_type_statement_token7] = ACTIONS(4030), + [aux_sym_def_type_statement_token8] = ACTIONS(4030), + [aux_sym_def_type_statement_token9] = ACTIONS(4030), + [aux_sym_def_type_statement_token10] = ACTIONS(4030), + [aux_sym_def_type_statement_token11] = ACTIONS(4030), + [aux_sym_def_type_statement_token12] = ACTIONS(4030), + [aux_sym_def_type_statement_token13] = ACTIONS(4030), + [aux_sym_def_type_statement_token14] = ACTIONS(4030), + [aux_sym_call_statement_token1] = ACTIONS(4030), + [sym__ambiguous_call_statement] = ACTIONS(4030), + [aux_sym_addressof_expression_token1] = ACTIONS(4030), + [aux_sym_type_of_expression_token1] = ACTIONS(4030), + [aux_sym_unary_expression_token1] = ACTIONS(4030), + [sym_string_literal] = ACTIONS(4028), + [sym_number_literal] = ACTIONS(4028), + [aux_sym_boolean_literal_token1] = ACTIONS(4030), + [aux_sym_boolean_literal_token2] = ACTIONS(4030), + [sym_nothing_literal] = ACTIONS(4030), + [sym_null_literal] = ACTIONS(4030), + [sym_empty_literal] = ACTIONS(4030), + [sym_date_literal] = ACTIONS(4028), + [anon_sym_POUND] = ACTIONS(4030), + }, + [STATE(2663)] = { + [sym_argument_list] = STATE(2403), + [sym_identifier] = ACTIONS(4030), + [sym_newline] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4030), + [aux_sym_frm_property_statement_token1] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(7247), + [anon_sym_BANG] = ACTIONS(6970), + [aux_sym__attribute_identifier_token1] = ACTIONS(4030), + [aux_sym_option_statement_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4030), + [aux_sym_preprocessor_const_token1] = ACTIONS(4030), + [sym_static_modifier] = ACTIONS(4030), + [sym__dim_keyword] = ACTIONS(4030), + [sym__redim_keyword] = ACTIONS(4030), + [aux_sym_get_accessor_token1] = ACTIONS(4030), + [aux_sym_set_accessor_token1] = ACTIONS(4030), + [aux_sym_const_declaration_token1] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(5544), + [aux_sym_as_type_clause_token2] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4030), + [aux_sym_visibility_token1] = ACTIONS(4030), + [aux_sym_visibility_token2] = ACTIONS(4030), + [aux_sym_elseif_fragment_token1] = ACTIONS(4030), + [aux_sym_else_fragment_token1] = ACTIONS(4030), + [aux_sym_select_statement_token1] = ACTIONS(4030), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4030), + [aux_sym__for_header_token1] = ACTIONS(4030), + [aux_sym_do_statement_token1] = ACTIONS(4030), + [aux_sym_do_condition_token1] = ACTIONS(4030), + [aux_sym_with_statement_token1] = ACTIONS(4030), + [aux_sym_exit_statement_token1] = ACTIONS(4030), + [sym_end_statement] = ACTIONS(4028), + [aux_sym_on_goto_statement_token1] = ACTIONS(4030), + [aux_sym_on_goto_statement_token2] = ACTIONS(4030), + [aux_sym_on_error_statement_token2] = ACTIONS(4030), + [sym__ambiguous_redim_statement] = ACTIONS(4028), + [aux_sym_erase_statement_token1] = ACTIONS(4030), + [aux_sym_open_statement_token1] = ACTIONS(4030), + [aux_sym_file_mode_token2] = ACTIONS(4030), + [aux_sym_file_access_token2] = ACTIONS(4030), + [aux_sym_file_lock_token2] = ACTIONS(4030), + [aux_sym_print_statement_token1] = ACTIONS(4030), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4028), + [aux_sym_close_statement_token1] = ACTIONS(4030), + [aux_sym_put_statement_token1] = ACTIONS(4030), + [aux_sym_unlock_statement_token1] = ACTIONS(4030), + [aux_sym_seek_statement_token1] = ACTIONS(4030), + [sym_reset_statement] = ACTIONS(4030), + [aux_sym_raise_event_statement_token1] = ACTIONS(4030), + [sym_stop_statement] = ACTIONS(4030), + [sym_beep_statement] = ACTIONS(4030), + [aux_sym_unload_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token2] = ACTIONS(4030), + [aux_sym_def_type_statement_token3] = ACTIONS(4030), + [aux_sym_def_type_statement_token4] = ACTIONS(4030), + [aux_sym_def_type_statement_token5] = ACTIONS(4030), + [aux_sym_def_type_statement_token6] = ACTIONS(4030), + [aux_sym_def_type_statement_token7] = ACTIONS(4030), + [aux_sym_def_type_statement_token8] = ACTIONS(4030), + [aux_sym_def_type_statement_token9] = ACTIONS(4030), + [aux_sym_def_type_statement_token10] = ACTIONS(4030), + [aux_sym_def_type_statement_token11] = ACTIONS(4030), + [aux_sym_def_type_statement_token12] = ACTIONS(4030), + [aux_sym_def_type_statement_token13] = ACTIONS(4030), + [aux_sym_def_type_statement_token14] = ACTIONS(4030), + [aux_sym_call_statement_token1] = ACTIONS(4030), + [sym__ambiguous_call_statement] = ACTIONS(4030), + [aux_sym_addressof_expression_token1] = ACTIONS(4030), + [aux_sym_type_of_expression_token1] = ACTIONS(4030), + [aux_sym_unary_expression_token1] = ACTIONS(4030), + [sym_string_literal] = ACTIONS(4028), + [sym_number_literal] = ACTIONS(4028), + [aux_sym_boolean_literal_token1] = ACTIONS(4030), + [aux_sym_boolean_literal_token2] = ACTIONS(4030), + [sym_nothing_literal] = ACTIONS(4030), + [sym_null_literal] = ACTIONS(4030), + [sym_empty_literal] = ACTIONS(4030), + [sym_date_literal] = ACTIONS(4028), + [anon_sym_POUND] = ACTIONS(4030), + }, + [STATE(2664)] = { + [sym_argument_list] = STATE(3352), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7440), + [anon_sym_BANG] = ACTIONS(7442), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(7444), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_statement_token2] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2665)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2666)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_statement_token2] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2667)] = { + [sym_identifier] = ACTIONS(5699), + [sym_newline] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5701), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5699), + [aux_sym_frm_property_statement_token1] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5699), + [anon_sym_BANG] = ACTIONS(5701), + [aux_sym__attribute_identifier_token1] = ACTIONS(5699), + [aux_sym_option_statement_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5699), + [aux_sym_preprocessor_const_token1] = ACTIONS(5699), + [sym_static_modifier] = ACTIONS(5699), + [sym__dim_keyword] = ACTIONS(5699), + [sym__redim_keyword] = ACTIONS(5699), + [aux_sym_get_accessor_token1] = ACTIONS(5699), + [aux_sym_set_accessor_token1] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5701), + [aux_sym_const_declaration_token1] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(5701), + [aux_sym_as_type_clause_token2] = ACTIONS(5699), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5699), + [aux_sym_visibility_token1] = ACTIONS(5699), + [aux_sym_visibility_token2] = ACTIONS(5699), + [aux_sym_elseif_fragment_token1] = ACTIONS(5699), + [aux_sym_else_fragment_token1] = ACTIONS(5699), + [aux_sym_select_statement_token1] = ACTIONS(5699), + [aux_sym__for_header_token1] = ACTIONS(5699), + [aux_sym_do_statement_token1] = ACTIONS(5699), + [aux_sym_do_condition_token1] = ACTIONS(5699), + [aux_sym_while_statement_token1] = ACTIONS(5699), + [aux_sym_with_statement_token1] = ACTIONS(5699), + [aux_sym_exit_statement_token1] = ACTIONS(5699), + [sym_end_statement] = ACTIONS(5701), + [aux_sym_on_goto_statement_token1] = ACTIONS(5699), + [aux_sym_on_goto_statement_token2] = ACTIONS(5699), + [aux_sym_on_error_statement_token2] = ACTIONS(5699), + [sym__ambiguous_redim_statement] = ACTIONS(5701), + [aux_sym_erase_statement_token1] = ACTIONS(5699), + [aux_sym_open_statement_token1] = ACTIONS(5699), + [aux_sym_file_mode_token2] = ACTIONS(5699), + [aux_sym_file_access_token2] = ACTIONS(5699), + [aux_sym_file_lock_token2] = ACTIONS(5699), + [aux_sym_print_statement_token1] = ACTIONS(5699), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7310), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7312), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5964), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5966), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5968), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5701), + [aux_sym_close_statement_token1] = ACTIONS(5699), + [aux_sym_put_statement_token1] = ACTIONS(5699), + [aux_sym_unlock_statement_token1] = ACTIONS(5699), + [aux_sym_seek_statement_token1] = ACTIONS(5699), + [sym_reset_statement] = ACTIONS(5699), + [aux_sym_raise_event_statement_token1] = ACTIONS(5699), + [sym_stop_statement] = ACTIONS(5699), + [sym_beep_statement] = ACTIONS(5699), + [aux_sym_unload_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token2] = ACTIONS(5699), + [aux_sym_def_type_statement_token3] = ACTIONS(5699), + [aux_sym_def_type_statement_token4] = ACTIONS(5699), + [aux_sym_def_type_statement_token5] = ACTIONS(5699), + [aux_sym_def_type_statement_token6] = ACTIONS(5699), + [aux_sym_def_type_statement_token7] = ACTIONS(5699), + [aux_sym_def_type_statement_token8] = ACTIONS(5699), + [aux_sym_def_type_statement_token9] = ACTIONS(5699), + [aux_sym_def_type_statement_token10] = ACTIONS(5699), + [aux_sym_def_type_statement_token11] = ACTIONS(5699), + [aux_sym_def_type_statement_token12] = ACTIONS(5699), + [aux_sym_def_type_statement_token13] = ACTIONS(5699), + [aux_sym_def_type_statement_token14] = ACTIONS(5699), + [aux_sym_call_statement_token1] = ACTIONS(5699), + [sym__ambiguous_call_statement] = ACTIONS(5699), + [aux_sym_addressof_expression_token1] = ACTIONS(5699), + [aux_sym_type_of_expression_token1] = ACTIONS(5699), + [aux_sym_unary_expression_token1] = ACTIONS(5699), + [sym_string_literal] = ACTIONS(5701), + [sym_number_literal] = ACTIONS(5701), + [aux_sym_boolean_literal_token1] = ACTIONS(5699), + [aux_sym_boolean_literal_token2] = ACTIONS(5699), + [sym_nothing_literal] = ACTIONS(5699), + [sym_null_literal] = ACTIONS(5699), + [sym_empty_literal] = ACTIONS(5699), + [sym_date_literal] = ACTIONS(5701), + [anon_sym_POUND] = ACTIONS(5699), + }, + [STATE(2668)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2669)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4412), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4412), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4410), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(5635), + [anon_sym_DASH] = ACTIONS(5638), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(2670)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2670), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(7446), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_while_statement_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2671)] = { + [sym_identifier] = ACTIONS(5841), + [sym_newline] = ACTIONS(5843), + [anon_sym_COLON] = ACTIONS(5843), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5841), + [aux_sym_frm_property_statement_token1] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5843), + [aux_sym__attribute_identifier_token1] = ACTIONS(5841), + [aux_sym_option_statement_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5841), + [aux_sym_preprocessor_const_token1] = ACTIONS(5841), + [sym_static_modifier] = ACTIONS(5841), + [sym__dim_keyword] = ACTIONS(5841), + [sym__redim_keyword] = ACTIONS(5841), + [aux_sym_get_accessor_token1] = ACTIONS(5841), + [aux_sym_set_accessor_token1] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(5843), + [aux_sym_const_declaration_token1] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5843), + [aux_sym_as_type_clause_token2] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5841), + [aux_sym_visibility_token1] = ACTIONS(5841), + [aux_sym_visibility_token2] = ACTIONS(5841), + [aux_sym_elseif_fragment_token1] = ACTIONS(5841), + [aux_sym_else_fragment_token1] = ACTIONS(5841), + [aux_sym_select_statement_token1] = ACTIONS(5841), + [aux_sym__for_header_token1] = ACTIONS(5841), + [aux_sym_do_statement_token1] = ACTIONS(5841), + [aux_sym_do_condition_token1] = ACTIONS(5841), + [aux_sym_while_statement_token1] = ACTIONS(5841), + [aux_sym_with_statement_token1] = ACTIONS(5841), + [aux_sym_exit_statement_token1] = ACTIONS(5841), + [sym_end_statement] = ACTIONS(5843), + [aux_sym_on_goto_statement_token1] = ACTIONS(5841), + [aux_sym_on_goto_statement_token2] = ACTIONS(5841), + [aux_sym_on_error_statement_token2] = ACTIONS(5841), + [sym__ambiguous_redim_statement] = ACTIONS(5843), + [aux_sym_erase_statement_token1] = ACTIONS(5841), + [aux_sym_open_statement_token1] = ACTIONS(5841), + [aux_sym_file_mode_token2] = ACTIONS(5841), + [aux_sym_file_access_token2] = ACTIONS(5841), + [aux_sym_file_lock_token2] = ACTIONS(5841), + [aux_sym_print_statement_token1] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(5843), + [anon_sym_QMARK] = ACTIONS(5843), + [aux_sym_close_statement_token1] = ACTIONS(5841), + [aux_sym_put_statement_token1] = ACTIONS(5841), + [aux_sym_unlock_statement_token1] = ACTIONS(5841), + [aux_sym_seek_statement_token1] = ACTIONS(5841), + [sym_reset_statement] = ACTIONS(5841), + [aux_sym_raise_event_statement_token1] = ACTIONS(5841), + [sym_stop_statement] = ACTIONS(5841), + [sym_beep_statement] = ACTIONS(5841), + [aux_sym_unload_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token2] = ACTIONS(5841), + [aux_sym_def_type_statement_token3] = ACTIONS(5841), + [aux_sym_def_type_statement_token4] = ACTIONS(5841), + [aux_sym_def_type_statement_token5] = ACTIONS(5841), + [aux_sym_def_type_statement_token6] = ACTIONS(5841), + [aux_sym_def_type_statement_token7] = ACTIONS(5841), + [aux_sym_def_type_statement_token8] = ACTIONS(5841), + [aux_sym_def_type_statement_token9] = ACTIONS(5841), + [aux_sym_def_type_statement_token10] = ACTIONS(5841), + [aux_sym_def_type_statement_token11] = ACTIONS(5841), + [aux_sym_def_type_statement_token12] = ACTIONS(5841), + [aux_sym_def_type_statement_token13] = ACTIONS(5841), + [aux_sym_def_type_statement_token14] = ACTIONS(5841), + [aux_sym_call_statement_token1] = ACTIONS(5841), + [sym__ambiguous_call_statement] = ACTIONS(5841), + [aux_sym_addressof_expression_token1] = ACTIONS(5841), + [aux_sym_type_of_expression_token1] = ACTIONS(5841), + [aux_sym_unary_expression_token1] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5843), + [sym_number_literal] = ACTIONS(5843), + [aux_sym_boolean_literal_token1] = ACTIONS(5841), + [aux_sym_boolean_literal_token2] = ACTIONS(5841), + [sym_nothing_literal] = ACTIONS(5841), + [sym_null_literal] = ACTIONS(5841), + [sym_empty_literal] = ACTIONS(5841), + [sym_date_literal] = ACTIONS(5843), + [anon_sym_POUND] = ACTIONS(5841), + }, + [STATE(2672)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(2673)] = { + [sym_argument_list] = STATE(3280), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7449), + [anon_sym_BANG] = ACTIONS(7451), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(7453), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2674)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2675)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4412), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4412), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(5635), + [anon_sym_DASH] = ACTIONS(5638), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(2676)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2677)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2836), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(7455), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2678)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2678), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(7457), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_while_statement_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2679)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2680)] = { + [sym_identifier] = ACTIONS(3370), + [sym_newline] = ACTIONS(3364), + [anon_sym_COLON] = ACTIONS(6646), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3370), + [aux_sym_frm_property_statement_token1] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3364), + [aux_sym__attribute_identifier_token1] = ACTIONS(3370), + [aux_sym_option_statement_token3] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3370), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(3370), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(3370), + [aux_sym_preprocessor_const_token1] = ACTIONS(3370), + [sym_static_modifier] = ACTIONS(3370), + [sym__dim_keyword] = ACTIONS(3370), + [sym__redim_keyword] = ACTIONS(3370), + [aux_sym_get_accessor_token1] = ACTIONS(3370), + [aux_sym_set_accessor_token1] = ACTIONS(3370), + [aux_sym_const_declaration_token1] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3364), + [aux_sym_as_type_clause_token2] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3370), + [aux_sym_visibility_token1] = ACTIONS(3370), + [aux_sym_visibility_token2] = ACTIONS(3370), + [aux_sym_elseif_fragment_token1] = ACTIONS(3370), + [aux_sym_else_fragment_token1] = ACTIONS(3370), + [aux_sym_select_statement_token1] = ACTIONS(3370), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(3370), + [sym_end_statement] = ACTIONS(3364), + [aux_sym_on_goto_statement_token1] = ACTIONS(3370), + [aux_sym_on_goto_statement_token2] = ACTIONS(3370), + [aux_sym_on_error_statement_token2] = ACTIONS(3370), + [sym__ambiguous_redim_statement] = ACTIONS(3364), + [aux_sym_erase_statement_token1] = ACTIONS(3370), + [aux_sym_open_statement_token1] = ACTIONS(3370), + [aux_sym_file_mode_token2] = ACTIONS(3370), + [aux_sym_file_access_token2] = ACTIONS(3370), + [aux_sym_file_lock_token2] = ACTIONS(3370), + [aux_sym_print_statement_token1] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(3364), + [aux_sym_close_statement_token1] = ACTIONS(3370), + [aux_sym_put_statement_token1] = ACTIONS(3370), + [aux_sym_unlock_statement_token1] = ACTIONS(3370), + [aux_sym_seek_statement_token1] = ACTIONS(3370), + [sym_reset_statement] = ACTIONS(3370), + [aux_sym_raise_event_statement_token1] = ACTIONS(3370), + [sym_stop_statement] = ACTIONS(3370), + [sym_beep_statement] = ACTIONS(3370), + [aux_sym_unload_statement_token1] = ACTIONS(3370), + [aux_sym_def_type_statement_token1] = ACTIONS(3370), + [aux_sym_def_type_statement_token2] = ACTIONS(3370), + [aux_sym_def_type_statement_token3] = ACTIONS(3370), + [aux_sym_def_type_statement_token4] = ACTIONS(3370), + [aux_sym_def_type_statement_token5] = ACTIONS(3370), + [aux_sym_def_type_statement_token6] = ACTIONS(3370), + [aux_sym_def_type_statement_token7] = ACTIONS(3370), + [aux_sym_def_type_statement_token8] = ACTIONS(3370), + [aux_sym_def_type_statement_token9] = ACTIONS(3370), + [aux_sym_def_type_statement_token10] = ACTIONS(3370), + [aux_sym_def_type_statement_token11] = ACTIONS(3370), + [aux_sym_def_type_statement_token12] = ACTIONS(3370), + [aux_sym_def_type_statement_token13] = ACTIONS(3370), + [aux_sym_def_type_statement_token14] = ACTIONS(3370), + [aux_sym_call_statement_token1] = ACTIONS(3370), + [sym__ambiguous_call_statement] = ACTIONS(3370), + [aux_sym_addressof_expression_token1] = ACTIONS(3370), + [aux_sym_type_of_expression_token1] = ACTIONS(3370), + [aux_sym_unary_expression_token1] = ACTIONS(3370), + [sym_string_literal] = ACTIONS(3364), + [sym_number_literal] = ACTIONS(3364), + [aux_sym_boolean_literal_token1] = ACTIONS(3370), + [aux_sym_boolean_literal_token2] = ACTIONS(3370), + [sym_nothing_literal] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3370), + [sym_empty_literal] = ACTIONS(3370), + [sym_date_literal] = ACTIONS(3364), + [anon_sym_POUND] = ACTIONS(3370), + }, + [STATE(2681)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_statement_token2] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2682)] = { + [sym_char_position] = STATE(356), + [aux_sym_output_list_repeat1] = STATE(2878), + [sym_identifier] = ACTIONS(7460), + [sym_newline] = ACTIONS(7462), + [anon_sym_COLON] = ACTIONS(7462), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7460), + [aux_sym_frm_property_statement_token1] = ACTIONS(7460), + [anon_sym_DOT] = ACTIONS(7460), + [anon_sym_BANG] = ACTIONS(7462), + [aux_sym__attribute_identifier_token1] = ACTIONS(7460), + [aux_sym_option_statement_token3] = ACTIONS(7460), + [aux_sym_type_declaration_token1] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7460), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7460), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7460), + [aux_sym_enum_declaration_token1] = ACTIONS(7460), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7460), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7460), + [aux_sym_declare_function_statement_token1] = ACTIONS(7460), + [aux_sym_preprocessor_const_token1] = ACTIONS(7460), + [aux_sym__property_get_header_token1] = ACTIONS(7460), + [aux_sym_event_declaration_token1] = ACTIONS(7460), + [sym_static_modifier] = ACTIONS(7460), + [sym__dim_keyword] = ACTIONS(7460), + [sym__redim_keyword] = ACTIONS(7460), + [aux_sym_get_accessor_token1] = ACTIONS(7460), + [aux_sym_set_accessor_token1] = ACTIONS(7460), + [anon_sym_COMMA] = ACTIONS(7464), + [aux_sym_const_declaration_token1] = ACTIONS(7460), + [anon_sym_LPAREN] = ACTIONS(7462), + [aux_sym_as_type_clause_token2] = ACTIONS(7460), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7460), + [aux_sym_visibility_token1] = ACTIONS(7460), + [aux_sym_visibility_token2] = ACTIONS(7460), + [aux_sym_elseif_fragment_token1] = ACTIONS(7460), + [aux_sym_else_fragment_token1] = ACTIONS(7460), + [aux_sym_select_statement_token1] = ACTIONS(7460), + [aux_sym__for_header_token1] = ACTIONS(7460), + [aux_sym_do_statement_token1] = ACTIONS(7460), + [aux_sym_do_condition_token1] = ACTIONS(7460), + [aux_sym_with_statement_token1] = ACTIONS(7460), + [aux_sym_exit_statement_token1] = ACTIONS(7460), + [sym_end_statement] = ACTIONS(7462), + [aux_sym_on_goto_statement_token1] = ACTIONS(7460), + [aux_sym_on_goto_statement_token2] = ACTIONS(7460), + [aux_sym_on_error_statement_token2] = ACTIONS(7460), + [sym__ambiguous_redim_statement] = ACTIONS(7462), + [aux_sym_erase_statement_token1] = ACTIONS(7460), + [aux_sym_open_statement_token1] = ACTIONS(7460), + [aux_sym_file_mode_token2] = ACTIONS(7460), + [aux_sym_file_access_token2] = ACTIONS(7460), + [aux_sym_file_lock_token2] = ACTIONS(7460), + [aux_sym_print_statement_token1] = ACTIONS(7460), + [anon_sym_PLUS] = ACTIONS(7462), + [anon_sym_DASH] = ACTIONS(7460), + [anon_sym_SEMI] = ACTIONS(7464), + [anon_sym_QMARK] = ACTIONS(7462), + [aux_sym_close_statement_token1] = ACTIONS(7460), + [aux_sym_put_statement_token1] = ACTIONS(7460), + [aux_sym_unlock_statement_token1] = ACTIONS(7460), + [aux_sym_seek_statement_token1] = ACTIONS(7460), + [sym_reset_statement] = ACTIONS(7460), + [aux_sym_raise_event_statement_token1] = ACTIONS(7460), + [sym_stop_statement] = ACTIONS(7460), + [sym_beep_statement] = ACTIONS(7460), + [aux_sym_unload_statement_token1] = ACTIONS(7460), + [aux_sym_def_type_statement_token1] = ACTIONS(7460), + [aux_sym_def_type_statement_token2] = ACTIONS(7460), + [aux_sym_def_type_statement_token3] = ACTIONS(7460), + [aux_sym_def_type_statement_token4] = ACTIONS(7460), + [aux_sym_def_type_statement_token5] = ACTIONS(7460), + [aux_sym_def_type_statement_token6] = ACTIONS(7460), + [aux_sym_def_type_statement_token7] = ACTIONS(7460), + [aux_sym_def_type_statement_token8] = ACTIONS(7460), + [aux_sym_def_type_statement_token9] = ACTIONS(7460), + [aux_sym_def_type_statement_token10] = ACTIONS(7460), + [aux_sym_def_type_statement_token11] = ACTIONS(7460), + [aux_sym_def_type_statement_token12] = ACTIONS(7460), + [aux_sym_def_type_statement_token13] = ACTIONS(7460), + [aux_sym_def_type_statement_token14] = ACTIONS(7460), + [aux_sym_call_statement_token1] = ACTIONS(7460), + [sym__ambiguous_call_statement] = ACTIONS(7460), + [aux_sym_addressof_expression_token1] = ACTIONS(7460), + [aux_sym_type_of_expression_token1] = ACTIONS(7460), + [aux_sym_unary_expression_token1] = ACTIONS(7460), + [sym_string_literal] = ACTIONS(7462), + [sym_number_literal] = ACTIONS(7462), + [aux_sym_boolean_literal_token1] = ACTIONS(7460), + [aux_sym_boolean_literal_token2] = ACTIONS(7460), + [sym_nothing_literal] = ACTIONS(7460), + [sym_null_literal] = ACTIONS(7460), + [sym_empty_literal] = ACTIONS(7460), + [sym_date_literal] = ACTIONS(7462), + [anon_sym_POUND] = ACTIONS(7460), + }, + [STATE(2683)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2703), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(7466), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2684)] = { + [sym_identifier] = ACTIONS(5869), + [sym_newline] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5869), + [aux_sym_frm_property_statement_token1] = ACTIONS(5869), + [anon_sym_DOT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [aux_sym__attribute_identifier_token1] = ACTIONS(5869), + [aux_sym_option_statement_token3] = ACTIONS(5869), + [aux_sym_type_declaration_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5869), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5869), + [aux_sym_enum_declaration_token1] = ACTIONS(5869), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5869), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5869), + [aux_sym_declare_function_statement_token1] = ACTIONS(5869), + [aux_sym_preprocessor_const_token1] = ACTIONS(5869), + [aux_sym__property_get_header_token1] = ACTIONS(5869), + [aux_sym_event_declaration_token1] = ACTIONS(5869), + [sym_static_modifier] = ACTIONS(5869), + [sym__dim_keyword] = ACTIONS(5869), + [sym__redim_keyword] = ACTIONS(5869), + [aux_sym_get_accessor_token1] = ACTIONS(5869), + [aux_sym_set_accessor_token1] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5871), + [aux_sym_const_declaration_token1] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5871), + [aux_sym_as_type_clause_token2] = ACTIONS(5869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5869), + [aux_sym_visibility_token1] = ACTIONS(5869), + [aux_sym_visibility_token2] = ACTIONS(5869), + [aux_sym_elseif_fragment_token1] = ACTIONS(5869), + [aux_sym_else_fragment_token1] = ACTIONS(5869), + [aux_sym_select_statement_token1] = ACTIONS(5869), + [aux_sym__for_header_token1] = ACTIONS(5869), + [aux_sym_do_statement_token1] = ACTIONS(5869), + [aux_sym_do_condition_token1] = ACTIONS(5869), + [aux_sym_with_statement_token1] = ACTIONS(5869), + [aux_sym_exit_statement_token1] = ACTIONS(5869), + [sym_end_statement] = ACTIONS(5871), + [aux_sym_on_goto_statement_token1] = ACTIONS(5869), + [aux_sym_on_goto_statement_token2] = ACTIONS(5869), + [aux_sym_on_error_statement_token2] = ACTIONS(5869), + [sym__ambiguous_redim_statement] = ACTIONS(5871), + [aux_sym_erase_statement_token1] = ACTIONS(5869), + [aux_sym_open_statement_token1] = ACTIONS(5869), + [aux_sym_file_mode_token2] = ACTIONS(5869), + [aux_sym_file_access_token2] = ACTIONS(5869), + [aux_sym_file_lock_token2] = ACTIONS(5869), + [aux_sym_print_statement_token1] = ACTIONS(5869), + [anon_sym_PLUS] = ACTIONS(5871), + [anon_sym_DASH] = ACTIONS(5869), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7335), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7337), + [anon_sym_SEMI] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [aux_sym_close_statement_token1] = ACTIONS(5869), + [aux_sym_put_statement_token1] = ACTIONS(5869), + [aux_sym_unlock_statement_token1] = ACTIONS(5869), + [aux_sym_seek_statement_token1] = ACTIONS(5869), + [sym_reset_statement] = ACTIONS(5869), + [aux_sym_raise_event_statement_token1] = ACTIONS(5869), + [sym_stop_statement] = ACTIONS(5869), + [sym_beep_statement] = ACTIONS(5869), + [aux_sym_unload_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token2] = ACTIONS(5869), + [aux_sym_def_type_statement_token3] = ACTIONS(5869), + [aux_sym_def_type_statement_token4] = ACTIONS(5869), + [aux_sym_def_type_statement_token5] = ACTIONS(5869), + [aux_sym_def_type_statement_token6] = ACTIONS(5869), + [aux_sym_def_type_statement_token7] = ACTIONS(5869), + [aux_sym_def_type_statement_token8] = ACTIONS(5869), + [aux_sym_def_type_statement_token9] = ACTIONS(5869), + [aux_sym_def_type_statement_token10] = ACTIONS(5869), + [aux_sym_def_type_statement_token11] = ACTIONS(5869), + [aux_sym_def_type_statement_token12] = ACTIONS(5869), + [aux_sym_def_type_statement_token13] = ACTIONS(5869), + [aux_sym_def_type_statement_token14] = ACTIONS(5869), + [aux_sym_call_statement_token1] = ACTIONS(5869), + [sym__ambiguous_call_statement] = ACTIONS(5869), + [aux_sym_addressof_expression_token1] = ACTIONS(5869), + [aux_sym_type_of_expression_token1] = ACTIONS(5869), + [aux_sym_unary_expression_token1] = ACTIONS(5869), + [sym_string_literal] = ACTIONS(5871), + [sym_number_literal] = ACTIONS(5871), + [aux_sym_boolean_literal_token1] = ACTIONS(5869), + [aux_sym_boolean_literal_token2] = ACTIONS(5869), + [sym_nothing_literal] = ACTIONS(5869), + [sym_null_literal] = ACTIONS(5869), + [sym_empty_literal] = ACTIONS(5869), + [sym_date_literal] = ACTIONS(5871), + [anon_sym_POUND] = ACTIONS(5869), + }, + [STATE(2685)] = { + [sym_argument_list] = STATE(2930), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7468), + [anon_sym_BANG] = ACTIONS(7470), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(7472), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_while_statement_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2686)] = { + [sym_char_position] = STATE(359), + [aux_sym_output_list_repeat1] = STATE(2682), + [sym_identifier] = ACTIONS(7474), + [sym_newline] = ACTIONS(7476), + [anon_sym_COLON] = ACTIONS(7476), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7474), + [aux_sym_frm_property_statement_token1] = ACTIONS(7474), + [anon_sym_DOT] = ACTIONS(7474), + [anon_sym_BANG] = ACTIONS(7476), + [aux_sym__attribute_identifier_token1] = ACTIONS(7474), + [aux_sym_option_statement_token3] = ACTIONS(7474), + [aux_sym_type_declaration_token1] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7474), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7474), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7474), + [aux_sym_enum_declaration_token1] = ACTIONS(7474), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7474), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7474), + [aux_sym_declare_function_statement_token1] = ACTIONS(7474), + [aux_sym_preprocessor_const_token1] = ACTIONS(7474), + [aux_sym__property_get_header_token1] = ACTIONS(7474), + [aux_sym_event_declaration_token1] = ACTIONS(7474), + [sym_static_modifier] = ACTIONS(7474), + [sym__dim_keyword] = ACTIONS(7474), + [sym__redim_keyword] = ACTIONS(7474), + [aux_sym_get_accessor_token1] = ACTIONS(7474), + [aux_sym_set_accessor_token1] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7464), + [aux_sym_const_declaration_token1] = ACTIONS(7474), + [anon_sym_LPAREN] = ACTIONS(7476), + [aux_sym_as_type_clause_token2] = ACTIONS(7474), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7474), + [aux_sym_visibility_token1] = ACTIONS(7474), + [aux_sym_visibility_token2] = ACTIONS(7474), + [aux_sym_elseif_fragment_token1] = ACTIONS(7474), + [aux_sym_else_fragment_token1] = ACTIONS(7474), + [aux_sym_select_statement_token1] = ACTIONS(7474), + [aux_sym__for_header_token1] = ACTIONS(7474), + [aux_sym_do_statement_token1] = ACTIONS(7474), + [aux_sym_do_condition_token1] = ACTIONS(7474), + [aux_sym_with_statement_token1] = ACTIONS(7474), + [aux_sym_exit_statement_token1] = ACTIONS(7474), + [sym_end_statement] = ACTIONS(7476), + [aux_sym_on_goto_statement_token1] = ACTIONS(7474), + [aux_sym_on_goto_statement_token2] = ACTIONS(7474), + [aux_sym_on_error_statement_token2] = ACTIONS(7474), + [sym__ambiguous_redim_statement] = ACTIONS(7476), + [aux_sym_erase_statement_token1] = ACTIONS(7474), + [aux_sym_open_statement_token1] = ACTIONS(7474), + [aux_sym_file_mode_token2] = ACTIONS(7474), + [aux_sym_file_access_token2] = ACTIONS(7474), + [aux_sym_file_lock_token2] = ACTIONS(7474), + [aux_sym_print_statement_token1] = ACTIONS(7474), + [anon_sym_PLUS] = ACTIONS(7476), + [anon_sym_DASH] = ACTIONS(7474), + [anon_sym_SEMI] = ACTIONS(7464), + [anon_sym_QMARK] = ACTIONS(7476), + [aux_sym_close_statement_token1] = ACTIONS(7474), + [aux_sym_put_statement_token1] = ACTIONS(7474), + [aux_sym_unlock_statement_token1] = ACTIONS(7474), + [aux_sym_seek_statement_token1] = ACTIONS(7474), + [sym_reset_statement] = ACTIONS(7474), + [aux_sym_raise_event_statement_token1] = ACTIONS(7474), + [sym_stop_statement] = ACTIONS(7474), + [sym_beep_statement] = ACTIONS(7474), + [aux_sym_unload_statement_token1] = ACTIONS(7474), + [aux_sym_def_type_statement_token1] = ACTIONS(7474), + [aux_sym_def_type_statement_token2] = ACTIONS(7474), + [aux_sym_def_type_statement_token3] = ACTIONS(7474), + [aux_sym_def_type_statement_token4] = ACTIONS(7474), + [aux_sym_def_type_statement_token5] = ACTIONS(7474), + [aux_sym_def_type_statement_token6] = ACTIONS(7474), + [aux_sym_def_type_statement_token7] = ACTIONS(7474), + [aux_sym_def_type_statement_token8] = ACTIONS(7474), + [aux_sym_def_type_statement_token9] = ACTIONS(7474), + [aux_sym_def_type_statement_token10] = ACTIONS(7474), + [aux_sym_def_type_statement_token11] = ACTIONS(7474), + [aux_sym_def_type_statement_token12] = ACTIONS(7474), + [aux_sym_def_type_statement_token13] = ACTIONS(7474), + [aux_sym_def_type_statement_token14] = ACTIONS(7474), + [aux_sym_call_statement_token1] = ACTIONS(7474), + [sym__ambiguous_call_statement] = ACTIONS(7474), + [aux_sym_addressof_expression_token1] = ACTIONS(7474), + [aux_sym_type_of_expression_token1] = ACTIONS(7474), + [aux_sym_unary_expression_token1] = ACTIONS(7474), + [sym_string_literal] = ACTIONS(7476), + [sym_number_literal] = ACTIONS(7476), + [aux_sym_boolean_literal_token1] = ACTIONS(7474), + [aux_sym_boolean_literal_token2] = ACTIONS(7474), + [sym_nothing_literal] = ACTIONS(7474), + [sym_null_literal] = ACTIONS(7474), + [sym_empty_literal] = ACTIONS(7474), + [sym_date_literal] = ACTIONS(7476), + [anon_sym_POUND] = ACTIONS(7474), + }, + [STATE(2687)] = { + [sym_identifier] = ACTIONS(5555), + [sym_newline] = ACTIONS(4399), + [anon_sym_COLON] = ACTIONS(7478), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5555), + [aux_sym_frm_property_statement_token1] = ACTIONS(5555), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DOT] = ACTIONS(7320), + [anon_sym_BANG] = ACTIONS(7253), + [aux_sym__attribute_identifier_token1] = ACTIONS(5555), + [aux_sym_option_statement_token3] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5555), + [aux_sym_preprocessor_const_token1] = ACTIONS(5555), + [sym_static_modifier] = ACTIONS(5555), + [sym__dim_keyword] = ACTIONS(5555), + [sym__redim_keyword] = ACTIONS(5555), + [aux_sym_byval_modifier_token1] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5555), + [aux_sym_set_accessor_token1] = ACTIONS(5555), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5555), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5555), + [aux_sym_visibility_token1] = ACTIONS(5555), + [aux_sym_visibility_token2] = ACTIONS(5555), + [aux_sym_elseif_fragment_token1] = ACTIONS(5555), + [aux_sym_else_fragment_token1] = ACTIONS(5555), + [aux_sym_select_statement_token1] = ACTIONS(5555), + [aux_sym__for_header_token1] = ACTIONS(5555), + [aux_sym_do_statement_token1] = ACTIONS(5555), + [aux_sym_do_condition_token1] = ACTIONS(5555), + [aux_sym_with_statement_token1] = ACTIONS(5555), + [aux_sym_exit_statement_token1] = ACTIONS(5555), + [sym_end_statement] = ACTIONS(4399), + [aux_sym_on_goto_statement_token1] = ACTIONS(5555), + [aux_sym_on_goto_statement_token2] = ACTIONS(5555), + [aux_sym_on_error_statement_token2] = ACTIONS(5555), + [sym__ambiguous_redim_statement] = ACTIONS(4399), + [aux_sym_erase_statement_token1] = ACTIONS(5555), + [aux_sym_open_statement_token1] = ACTIONS(5555), + [aux_sym_file_mode_token2] = ACTIONS(5555), + [aux_sym_file_access_token2] = ACTIONS(5555), + [aux_sym_file_lock_token2] = ACTIONS(5555), + [aux_sym_print_statement_token1] = ACTIONS(5555), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4399), + [aux_sym_close_statement_token1] = ACTIONS(5555), + [aux_sym_put_statement_token1] = ACTIONS(5555), + [aux_sym_unlock_statement_token1] = ACTIONS(5555), + [aux_sym_seek_statement_token1] = ACTIONS(5555), + [sym_reset_statement] = ACTIONS(5555), + [aux_sym_raise_event_statement_token1] = ACTIONS(5555), + [sym_stop_statement] = ACTIONS(5555), + [sym_beep_statement] = ACTIONS(5555), + [aux_sym_unload_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token1] = ACTIONS(5555), + [aux_sym_def_type_statement_token2] = ACTIONS(5555), + [aux_sym_def_type_statement_token3] = ACTIONS(5555), + [aux_sym_def_type_statement_token4] = ACTIONS(5555), + [aux_sym_def_type_statement_token5] = ACTIONS(5555), + [aux_sym_def_type_statement_token6] = ACTIONS(5555), + [aux_sym_def_type_statement_token7] = ACTIONS(5555), + [aux_sym_def_type_statement_token8] = ACTIONS(5555), + [aux_sym_def_type_statement_token9] = ACTIONS(5555), + [aux_sym_def_type_statement_token10] = ACTIONS(5555), + [aux_sym_def_type_statement_token11] = ACTIONS(5555), + [aux_sym_def_type_statement_token12] = ACTIONS(5555), + [aux_sym_def_type_statement_token13] = ACTIONS(5555), + [aux_sym_def_type_statement_token14] = ACTIONS(5555), + [aux_sym_call_statement_token1] = ACTIONS(5555), + [sym__ambiguous_call_statement] = ACTIONS(5555), + [aux_sym_addressof_expression_token1] = ACTIONS(5555), + [aux_sym_type_of_expression_token1] = ACTIONS(5555), + [aux_sym_unary_expression_token1] = ACTIONS(5555), + [sym_string_literal] = ACTIONS(4399), + [sym_number_literal] = ACTIONS(4399), + [aux_sym_boolean_literal_token1] = ACTIONS(5555), + [aux_sym_boolean_literal_token2] = ACTIONS(5555), + [sym_nothing_literal] = ACTIONS(5555), + [sym_null_literal] = ACTIONS(5555), + [sym_empty_literal] = ACTIONS(5555), + [sym_date_literal] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(5555), + }, + [STATE(2688)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2689)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2690)] = { + [sym_identifier] = ACTIONS(5752), + [sym_newline] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5752), + [aux_sym_frm_property_statement_token1] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5752), + [anon_sym_BANG] = ACTIONS(5754), + [aux_sym__attribute_identifier_token1] = ACTIONS(5752), + [aux_sym_option_statement_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5752), + [aux_sym_preprocessor_const_token1] = ACTIONS(5752), + [sym_static_modifier] = ACTIONS(5752), + [sym__dim_keyword] = ACTIONS(5752), + [sym__redim_keyword] = ACTIONS(5752), + [aux_sym_get_accessor_token1] = ACTIONS(5752), + [aux_sym_set_accessor_token1] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5754), + [aux_sym_const_declaration_token1] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [aux_sym_as_type_clause_token2] = ACTIONS(5752), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5752), + [aux_sym_visibility_token1] = ACTIONS(5752), + [aux_sym_visibility_token2] = ACTIONS(5752), + [aux_sym_elseif_fragment_token1] = ACTIONS(5752), + [aux_sym_else_fragment_token1] = ACTIONS(5752), + [aux_sym_select_statement_token1] = ACTIONS(5752), + [aux_sym__for_header_token1] = ACTIONS(5752), + [aux_sym_do_statement_token1] = ACTIONS(5752), + [aux_sym_do_condition_token1] = ACTIONS(5752), + [aux_sym_while_statement_token1] = ACTIONS(5752), + [aux_sym_with_statement_token1] = ACTIONS(5752), + [aux_sym_exit_statement_token1] = ACTIONS(5752), + [sym_end_statement] = ACTIONS(5754), + [aux_sym_on_goto_statement_token1] = ACTIONS(5752), + [aux_sym_on_goto_statement_token2] = ACTIONS(5752), + [aux_sym_on_error_statement_token2] = ACTIONS(5752), + [sym__ambiguous_redim_statement] = ACTIONS(5754), + [aux_sym_erase_statement_token1] = ACTIONS(5752), + [aux_sym_open_statement_token1] = ACTIONS(5752), + [aux_sym_file_mode_token2] = ACTIONS(5752), + [aux_sym_file_access_token2] = ACTIONS(5752), + [aux_sym_file_lock_token2] = ACTIONS(5752), + [aux_sym_print_statement_token1] = ACTIONS(5752), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7310), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7312), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5964), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5966), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5968), + [anon_sym_SEMI] = ACTIONS(5754), + [anon_sym_QMARK] = ACTIONS(5754), + [aux_sym_close_statement_token1] = ACTIONS(5752), + [aux_sym_put_statement_token1] = ACTIONS(5752), + [aux_sym_unlock_statement_token1] = ACTIONS(5752), + [aux_sym_seek_statement_token1] = ACTIONS(5752), + [sym_reset_statement] = ACTIONS(5752), + [aux_sym_raise_event_statement_token1] = ACTIONS(5752), + [sym_stop_statement] = ACTIONS(5752), + [sym_beep_statement] = ACTIONS(5752), + [aux_sym_unload_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token2] = ACTIONS(5752), + [aux_sym_def_type_statement_token3] = ACTIONS(5752), + [aux_sym_def_type_statement_token4] = ACTIONS(5752), + [aux_sym_def_type_statement_token5] = ACTIONS(5752), + [aux_sym_def_type_statement_token6] = ACTIONS(5752), + [aux_sym_def_type_statement_token7] = ACTIONS(5752), + [aux_sym_def_type_statement_token8] = ACTIONS(5752), + [aux_sym_def_type_statement_token9] = ACTIONS(5752), + [aux_sym_def_type_statement_token10] = ACTIONS(5752), + [aux_sym_def_type_statement_token11] = ACTIONS(5752), + [aux_sym_def_type_statement_token12] = ACTIONS(5752), + [aux_sym_def_type_statement_token13] = ACTIONS(5752), + [aux_sym_def_type_statement_token14] = ACTIONS(5752), + [aux_sym_call_statement_token1] = ACTIONS(5752), + [sym__ambiguous_call_statement] = ACTIONS(5752), + [aux_sym_addressof_expression_token1] = ACTIONS(5752), + [aux_sym_type_of_expression_token1] = ACTIONS(5752), + [aux_sym_unary_expression_token1] = ACTIONS(5752), + [sym_string_literal] = ACTIONS(5754), + [sym_number_literal] = ACTIONS(5754), + [aux_sym_boolean_literal_token1] = ACTIONS(5752), + [aux_sym_boolean_literal_token2] = ACTIONS(5752), + [sym_nothing_literal] = ACTIONS(5752), + [sym_null_literal] = ACTIONS(5752), + [sym_empty_literal] = ACTIONS(5752), + [sym_date_literal] = ACTIONS(5754), + [anon_sym_POUND] = ACTIONS(5752), + }, + [STATE(2691)] = { + [sym_identifier] = ACTIONS(6617), + [sym_newline] = ACTIONS(6619), + [anon_sym_COLON] = ACTIONS(6619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6617), + [aux_sym_frm_property_statement_token1] = ACTIONS(6617), + [anon_sym_DOT] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(6619), + [aux_sym__attribute_identifier_token1] = ACTIONS(6617), + [aux_sym_option_statement_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6617), + [aux_sym_preprocessor_const_token1] = ACTIONS(6617), + [sym_static_modifier] = ACTIONS(6617), + [sym__dim_keyword] = ACTIONS(6617), + [sym__redim_keyword] = ACTIONS(6617), + [aux_sym_get_accessor_token1] = ACTIONS(6617), + [aux_sym_set_accessor_token1] = ACTIONS(6617), + [aux_sym_const_declaration_token1] = ACTIONS(6617), + [anon_sym_LPAREN] = ACTIONS(6619), + [aux_sym_as_type_clause_token2] = ACTIONS(6617), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6617), + [aux_sym_visibility_token1] = ACTIONS(6617), + [aux_sym_visibility_token2] = ACTIONS(6617), + [aux_sym_elseif_fragment_token1] = ACTIONS(6617), + [aux_sym_else_fragment_token1] = ACTIONS(6617), + [aux_sym_select_statement_token1] = ACTIONS(6617), + [aux_sym__for_header_token1] = ACTIONS(6617), + [aux_sym_do_statement_token1] = ACTIONS(6617), + [aux_sym_do_condition_token1] = ACTIONS(6617), + [aux_sym_with_statement_token1] = ACTIONS(6617), + [aux_sym_exit_statement_token1] = ACTIONS(6617), + [sym_end_statement] = ACTIONS(6619), + [aux_sym_on_goto_statement_token1] = ACTIONS(6617), + [aux_sym_on_goto_statement_token2] = ACTIONS(6617), + [aux_sym_on_error_statement_token2] = ACTIONS(6617), + [sym__ambiguous_redim_statement] = ACTIONS(6619), + [aux_sym_erase_statement_token1] = ACTIONS(6617), + [aux_sym_open_statement_token1] = ACTIONS(6617), + [aux_sym_file_mode_token2] = ACTIONS(6617), + [aux_sym_file_access_token2] = ACTIONS(6617), + [aux_sym_file_lock_token2] = ACTIONS(6617), + [aux_sym_print_statement_token1] = ACTIONS(6617), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7005), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7007), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5538), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5599), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5601), + [anon_sym_QMARK] = ACTIONS(6619), + [aux_sym_close_statement_token1] = ACTIONS(6617), + [aux_sym_put_statement_token1] = ACTIONS(6617), + [aux_sym_unlock_statement_token1] = ACTIONS(6617), + [aux_sym_seek_statement_token1] = ACTIONS(6617), + [sym_reset_statement] = ACTIONS(6617), + [aux_sym_raise_event_statement_token1] = ACTIONS(6617), + [sym_stop_statement] = ACTIONS(6617), + [sym_beep_statement] = ACTIONS(6617), + [aux_sym_unload_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token2] = ACTIONS(6617), + [aux_sym_def_type_statement_token3] = ACTIONS(6617), + [aux_sym_def_type_statement_token4] = ACTIONS(6617), + [aux_sym_def_type_statement_token5] = ACTIONS(6617), + [aux_sym_def_type_statement_token6] = ACTIONS(6617), + [aux_sym_def_type_statement_token7] = ACTIONS(6617), + [aux_sym_def_type_statement_token8] = ACTIONS(6617), + [aux_sym_def_type_statement_token9] = ACTIONS(6617), + [aux_sym_def_type_statement_token10] = ACTIONS(6617), + [aux_sym_def_type_statement_token11] = ACTIONS(6617), + [aux_sym_def_type_statement_token12] = ACTIONS(6617), + [aux_sym_def_type_statement_token13] = ACTIONS(6617), + [aux_sym_def_type_statement_token14] = ACTIONS(6617), + [aux_sym_call_statement_token1] = ACTIONS(6617), + [sym__ambiguous_call_statement] = ACTIONS(6617), + [aux_sym_addressof_expression_token1] = ACTIONS(6617), + [aux_sym_type_of_expression_token1] = ACTIONS(6617), + [aux_sym_unary_expression_token1] = ACTIONS(6617), + [sym_string_literal] = ACTIONS(6619), + [sym_number_literal] = ACTIONS(6619), + [aux_sym_boolean_literal_token1] = ACTIONS(6617), + [aux_sym_boolean_literal_token2] = ACTIONS(6617), + [sym_nothing_literal] = ACTIONS(6617), + [sym_null_literal] = ACTIONS(6617), + [sym_empty_literal] = ACTIONS(6617), + [sym_date_literal] = ACTIONS(6619), + [anon_sym_POUND] = ACTIONS(6617), + }, + [STATE(2692)] = { + [sym_identifier] = ACTIONS(5869), + [sym_newline] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5869), + [aux_sym_frm_property_statement_token1] = ACTIONS(5869), + [anon_sym_DOT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [aux_sym__attribute_identifier_token1] = ACTIONS(5869), + [aux_sym_option_statement_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5869), + [aux_sym_preprocessor_const_token1] = ACTIONS(5869), + [sym_static_modifier] = ACTIONS(5869), + [sym__dim_keyword] = ACTIONS(5869), + [sym__redim_keyword] = ACTIONS(5869), + [aux_sym_get_accessor_token1] = ACTIONS(5869), + [aux_sym_set_accessor_token1] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5871), + [aux_sym_const_declaration_token1] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5871), + [aux_sym_as_type_clause_token2] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5869), + [aux_sym_visibility_token1] = ACTIONS(5869), + [aux_sym_visibility_token2] = ACTIONS(5869), + [aux_sym_elseif_fragment_token1] = ACTIONS(5869), + [aux_sym_else_fragment_token1] = ACTIONS(5869), + [aux_sym_select_statement_token1] = ACTIONS(5869), + [aux_sym_select_statement_token2] = ACTIONS(5869), + [aux_sym__for_header_token1] = ACTIONS(5869), + [aux_sym_do_statement_token1] = ACTIONS(5869), + [aux_sym_do_condition_token1] = ACTIONS(5869), + [aux_sym_with_statement_token1] = ACTIONS(5869), + [aux_sym_exit_statement_token1] = ACTIONS(5869), + [sym_end_statement] = ACTIONS(5871), + [aux_sym_on_goto_statement_token1] = ACTIONS(5869), + [aux_sym_on_goto_statement_token2] = ACTIONS(5869), + [aux_sym_on_error_statement_token2] = ACTIONS(5869), + [sym__ambiguous_redim_statement] = ACTIONS(5871), + [aux_sym_erase_statement_token1] = ACTIONS(5869), + [aux_sym_open_statement_token1] = ACTIONS(5869), + [aux_sym_file_mode_token2] = ACTIONS(5869), + [aux_sym_file_access_token2] = ACTIONS(5869), + [aux_sym_file_lock_token2] = ACTIONS(5869), + [aux_sym_print_statement_token1] = ACTIONS(5869), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7306), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7308), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6061), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6063), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6065), + [anon_sym_SEMI] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [aux_sym_close_statement_token1] = ACTIONS(5869), + [aux_sym_put_statement_token1] = ACTIONS(5869), + [aux_sym_unlock_statement_token1] = ACTIONS(5869), + [aux_sym_seek_statement_token1] = ACTIONS(5869), + [sym_reset_statement] = ACTIONS(5869), + [aux_sym_raise_event_statement_token1] = ACTIONS(5869), + [sym_stop_statement] = ACTIONS(5869), + [sym_beep_statement] = ACTIONS(5869), + [aux_sym_unload_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token2] = ACTIONS(5869), + [aux_sym_def_type_statement_token3] = ACTIONS(5869), + [aux_sym_def_type_statement_token4] = ACTIONS(5869), + [aux_sym_def_type_statement_token5] = ACTIONS(5869), + [aux_sym_def_type_statement_token6] = ACTIONS(5869), + [aux_sym_def_type_statement_token7] = ACTIONS(5869), + [aux_sym_def_type_statement_token8] = ACTIONS(5869), + [aux_sym_def_type_statement_token9] = ACTIONS(5869), + [aux_sym_def_type_statement_token10] = ACTIONS(5869), + [aux_sym_def_type_statement_token11] = ACTIONS(5869), + [aux_sym_def_type_statement_token12] = ACTIONS(5869), + [aux_sym_def_type_statement_token13] = ACTIONS(5869), + [aux_sym_def_type_statement_token14] = ACTIONS(5869), + [aux_sym_call_statement_token1] = ACTIONS(5869), + [sym__ambiguous_call_statement] = ACTIONS(5869), + [aux_sym_addressof_expression_token1] = ACTIONS(5869), + [aux_sym_type_of_expression_token1] = ACTIONS(5869), + [aux_sym_unary_expression_token1] = ACTIONS(5869), + [sym_string_literal] = ACTIONS(5871), + [sym_number_literal] = ACTIONS(5871), + [aux_sym_boolean_literal_token1] = ACTIONS(5869), + [aux_sym_boolean_literal_token2] = ACTIONS(5869), + [sym_nothing_literal] = ACTIONS(5869), + [sym_null_literal] = ACTIONS(5869), + [sym_empty_literal] = ACTIONS(5869), + [sym_date_literal] = ACTIONS(5871), + [anon_sym_POUND] = ACTIONS(5869), + }, + [STATE(2693)] = { + [sym_identifier] = ACTIONS(5775), + [sym_newline] = ACTIONS(5777), + [anon_sym_COLON] = ACTIONS(5777), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5775), + [aux_sym_frm_property_statement_token1] = ACTIONS(5775), + [anon_sym_EQ] = ACTIONS(5777), + [anon_sym_DOT] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5777), + [aux_sym__attribute_identifier_token1] = ACTIONS(5775), + [aux_sym_option_statement_token3] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5775), + [aux_sym_preprocessor_const_token1] = ACTIONS(5775), + [sym_static_modifier] = ACTIONS(5775), + [sym__dim_keyword] = ACTIONS(5775), + [sym__redim_keyword] = ACTIONS(5775), + [aux_sym_get_accessor_token1] = ACTIONS(5775), + [aux_sym_set_accessor_token1] = ACTIONS(5775), + [anon_sym_COMMA] = ACTIONS(5777), + [aux_sym_const_declaration_token1] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5777), + [aux_sym_as_type_clause_token2] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(7480), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5775), + [aux_sym_visibility_token1] = ACTIONS(5775), + [aux_sym_visibility_token2] = ACTIONS(5775), + [aux_sym_elseif_fragment_token1] = ACTIONS(5775), + [aux_sym_else_fragment_token1] = ACTIONS(5775), + [aux_sym_select_statement_token1] = ACTIONS(5775), + [aux_sym_select_statement_token2] = ACTIONS(5775), + [aux_sym__for_header_token1] = ACTIONS(5775), + [aux_sym_do_statement_token1] = ACTIONS(5775), + [aux_sym_do_condition_token1] = ACTIONS(5775), + [aux_sym_with_statement_token1] = ACTIONS(5775), + [aux_sym_exit_statement_token1] = ACTIONS(5775), + [sym_end_statement] = ACTIONS(5777), + [aux_sym_on_goto_statement_token1] = ACTIONS(5775), + [aux_sym_on_goto_statement_token2] = ACTIONS(5775), + [aux_sym_on_error_statement_token2] = ACTIONS(5775), + [sym__ambiguous_redim_statement] = ACTIONS(5777), + [aux_sym_erase_statement_token1] = ACTIONS(5775), + [aux_sym_open_statement_token1] = ACTIONS(5775), + [aux_sym_file_mode_token2] = ACTIONS(5775), + [aux_sym_file_access_token2] = ACTIONS(5775), + [aux_sym_file_lock_token2] = ACTIONS(5775), + [aux_sym_print_statement_token1] = ACTIONS(5775), + [anon_sym_CARET] = ACTIONS(7482), + [anon_sym_SLASH] = ACTIONS(7480), + [anon_sym_BSLASH] = ACTIONS(7484), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7486), + [anon_sym_PLUS] = ACTIONS(7488), + [anon_sym_DASH] = ACTIONS(7490), + [anon_sym_AMP] = ACTIONS(7492), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7494), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7496), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7498), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7500), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7502), + [anon_sym_QMARK] = ACTIONS(5777), + [aux_sym_close_statement_token1] = ACTIONS(5775), + [aux_sym_put_statement_token1] = ACTIONS(5775), + [aux_sym_unlock_statement_token1] = ACTIONS(5775), + [aux_sym_seek_statement_token1] = ACTIONS(5775), + [sym_reset_statement] = ACTIONS(5775), + [aux_sym_raise_event_statement_token1] = ACTIONS(5775), + [sym_stop_statement] = ACTIONS(5775), + [sym_beep_statement] = ACTIONS(5775), + [aux_sym_unload_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token2] = ACTIONS(5775), + [aux_sym_def_type_statement_token3] = ACTIONS(5775), + [aux_sym_def_type_statement_token4] = ACTIONS(5775), + [aux_sym_def_type_statement_token5] = ACTIONS(5775), + [aux_sym_def_type_statement_token6] = ACTIONS(5775), + [aux_sym_def_type_statement_token7] = ACTIONS(5775), + [aux_sym_def_type_statement_token8] = ACTIONS(5775), + [aux_sym_def_type_statement_token9] = ACTIONS(5775), + [aux_sym_def_type_statement_token10] = ACTIONS(5775), + [aux_sym_def_type_statement_token11] = ACTIONS(5775), + [aux_sym_def_type_statement_token12] = ACTIONS(5775), + [aux_sym_def_type_statement_token13] = ACTIONS(5775), + [aux_sym_def_type_statement_token14] = ACTIONS(5775), + [aux_sym_call_statement_token1] = ACTIONS(5775), + [sym__ambiguous_call_statement] = ACTIONS(5775), + [aux_sym_addressof_expression_token1] = ACTIONS(5775), + [aux_sym_type_of_expression_token1] = ACTIONS(5775), + [aux_sym_unary_expression_token1] = ACTIONS(5775), + [sym_string_literal] = ACTIONS(5777), + [sym_number_literal] = ACTIONS(5777), + [aux_sym_boolean_literal_token1] = ACTIONS(5775), + [aux_sym_boolean_literal_token2] = ACTIONS(5775), + [sym_nothing_literal] = ACTIONS(5775), + [sym_null_literal] = ACTIONS(5775), + [sym_empty_literal] = ACTIONS(5775), + [sym_date_literal] = ACTIONS(5777), + [anon_sym_POUND] = ACTIONS(5775), + }, + [STATE(2694)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_while_statement_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5964), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5966), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5968), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(2695)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2696)] = { + [sym_identifier] = ACTIONS(5766), + [sym_newline] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5766), + [aux_sym_frm_property_statement_token1] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5766), + [anon_sym_BANG] = ACTIONS(5768), + [aux_sym__attribute_identifier_token1] = ACTIONS(5766), + [aux_sym_option_statement_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5766), + [aux_sym_preprocessor_const_token1] = ACTIONS(5766), + [sym_static_modifier] = ACTIONS(5766), + [sym__dim_keyword] = ACTIONS(5766), + [sym__redim_keyword] = ACTIONS(5766), + [aux_sym_get_accessor_token1] = ACTIONS(5766), + [aux_sym_set_accessor_token1] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [aux_sym_const_declaration_token1] = ACTIONS(5766), + [anon_sym_LPAREN] = ACTIONS(5768), + [aux_sym_as_type_clause_token2] = ACTIONS(5766), + [anon_sym_STAR] = ACTIONS(5768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5766), + [aux_sym_visibility_token1] = ACTIONS(5766), + [aux_sym_visibility_token2] = ACTIONS(5766), + [aux_sym_elseif_fragment_token1] = ACTIONS(5766), + [aux_sym_else_fragment_token1] = ACTIONS(5766), + [aux_sym_select_statement_token1] = ACTIONS(5766), + [aux_sym_select_statement_token2] = ACTIONS(5766), + [aux_sym__for_header_token1] = ACTIONS(5766), + [aux_sym_do_statement_token1] = ACTIONS(5766), + [aux_sym_do_condition_token1] = ACTIONS(5766), + [aux_sym_with_statement_token1] = ACTIONS(5766), + [aux_sym_exit_statement_token1] = ACTIONS(5766), + [sym_end_statement] = ACTIONS(5768), + [aux_sym_on_goto_statement_token1] = ACTIONS(5766), + [aux_sym_on_goto_statement_token2] = ACTIONS(5766), + [aux_sym_on_error_statement_token2] = ACTIONS(5766), + [sym__ambiguous_redim_statement] = ACTIONS(5768), + [aux_sym_erase_statement_token1] = ACTIONS(5766), + [aux_sym_open_statement_token1] = ACTIONS(5766), + [aux_sym_file_mode_token2] = ACTIONS(5766), + [aux_sym_file_access_token2] = ACTIONS(5766), + [aux_sym_file_lock_token2] = ACTIONS(5766), + [aux_sym_print_statement_token1] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_BSLASH] = ACTIONS(5768), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5766), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5768), + [aux_sym_close_statement_token1] = ACTIONS(5766), + [aux_sym_put_statement_token1] = ACTIONS(5766), + [aux_sym_unlock_statement_token1] = ACTIONS(5766), + [aux_sym_seek_statement_token1] = ACTIONS(5766), + [sym_reset_statement] = ACTIONS(5766), + [aux_sym_raise_event_statement_token1] = ACTIONS(5766), + [sym_stop_statement] = ACTIONS(5766), + [sym_beep_statement] = ACTIONS(5766), + [aux_sym_unload_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token2] = ACTIONS(5766), + [aux_sym_def_type_statement_token3] = ACTIONS(5766), + [aux_sym_def_type_statement_token4] = ACTIONS(5766), + [aux_sym_def_type_statement_token5] = ACTIONS(5766), + [aux_sym_def_type_statement_token6] = ACTIONS(5766), + [aux_sym_def_type_statement_token7] = ACTIONS(5766), + [aux_sym_def_type_statement_token8] = ACTIONS(5766), + [aux_sym_def_type_statement_token9] = ACTIONS(5766), + [aux_sym_def_type_statement_token10] = ACTIONS(5766), + [aux_sym_def_type_statement_token11] = ACTIONS(5766), + [aux_sym_def_type_statement_token12] = ACTIONS(5766), + [aux_sym_def_type_statement_token13] = ACTIONS(5766), + [aux_sym_def_type_statement_token14] = ACTIONS(5766), + [aux_sym_call_statement_token1] = ACTIONS(5766), + [sym__ambiguous_call_statement] = ACTIONS(5766), + [aux_sym_addressof_expression_token1] = ACTIONS(5766), + [aux_sym_type_of_expression_token1] = ACTIONS(5766), + [aux_sym_unary_expression_token1] = ACTIONS(5766), + [sym_string_literal] = ACTIONS(5768), + [sym_number_literal] = ACTIONS(5768), + [aux_sym_boolean_literal_token1] = ACTIONS(5766), + [aux_sym_boolean_literal_token2] = ACTIONS(5766), + [sym_nothing_literal] = ACTIONS(5766), + [sym_null_literal] = ACTIONS(5766), + [sym_empty_literal] = ACTIONS(5766), + [sym_date_literal] = ACTIONS(5768), + [anon_sym_POUND] = ACTIONS(5766), + }, + [STATE(2697)] = { + [sym_identifier] = ACTIONS(5775), + [sym_newline] = ACTIONS(5777), + [anon_sym_COLON] = ACTIONS(5777), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5775), + [aux_sym_frm_property_statement_token1] = ACTIONS(5775), + [anon_sym_EQ] = ACTIONS(5777), + [anon_sym_DOT] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5777), + [aux_sym__attribute_identifier_token1] = ACTIONS(5775), + [aux_sym_option_statement_token3] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5775), + [aux_sym_preprocessor_const_token1] = ACTIONS(5775), + [sym_static_modifier] = ACTIONS(5775), + [sym__dim_keyword] = ACTIONS(5775), + [sym__redim_keyword] = ACTIONS(5775), + [aux_sym_get_accessor_token1] = ACTIONS(5775), + [aux_sym_set_accessor_token1] = ACTIONS(5775), + [anon_sym_COMMA] = ACTIONS(5777), + [aux_sym_const_declaration_token1] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5777), + [aux_sym_as_type_clause_token2] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(7504), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5775), + [aux_sym_visibility_token1] = ACTIONS(5775), + [aux_sym_visibility_token2] = ACTIONS(5775), + [aux_sym_elseif_fragment_token1] = ACTIONS(5775), + [aux_sym_else_fragment_token1] = ACTIONS(5775), + [aux_sym_select_statement_token1] = ACTIONS(5775), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5775), + [aux_sym__for_header_token1] = ACTIONS(5775), + [aux_sym_do_statement_token1] = ACTIONS(5775), + [aux_sym_do_condition_token1] = ACTIONS(5775), + [aux_sym_with_statement_token1] = ACTIONS(5775), + [aux_sym_exit_statement_token1] = ACTIONS(5775), + [sym_end_statement] = ACTIONS(5777), + [aux_sym_on_goto_statement_token1] = ACTIONS(5775), + [aux_sym_on_goto_statement_token2] = ACTIONS(5775), + [aux_sym_on_error_statement_token2] = ACTIONS(5775), + [sym__ambiguous_redim_statement] = ACTIONS(5777), + [aux_sym_erase_statement_token1] = ACTIONS(5775), + [aux_sym_open_statement_token1] = ACTIONS(5775), + [aux_sym_file_mode_token2] = ACTIONS(5775), + [aux_sym_file_access_token2] = ACTIONS(5775), + [aux_sym_file_lock_token2] = ACTIONS(5775), + [aux_sym_print_statement_token1] = ACTIONS(5775), + [anon_sym_CARET] = ACTIONS(7506), + [anon_sym_SLASH] = ACTIONS(7504), + [anon_sym_BSLASH] = ACTIONS(7508), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7510), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_DASH] = ACTIONS(7514), + [anon_sym_AMP] = ACTIONS(7516), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7518), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7520), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7522), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7524), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7526), + [anon_sym_QMARK] = ACTIONS(5777), + [aux_sym_close_statement_token1] = ACTIONS(5775), + [aux_sym_put_statement_token1] = ACTIONS(5775), + [aux_sym_unlock_statement_token1] = ACTIONS(5775), + [aux_sym_seek_statement_token1] = ACTIONS(5775), + [sym_reset_statement] = ACTIONS(5775), + [aux_sym_raise_event_statement_token1] = ACTIONS(5775), + [sym_stop_statement] = ACTIONS(5775), + [sym_beep_statement] = ACTIONS(5775), + [aux_sym_unload_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token2] = ACTIONS(5775), + [aux_sym_def_type_statement_token3] = ACTIONS(5775), + [aux_sym_def_type_statement_token4] = ACTIONS(5775), + [aux_sym_def_type_statement_token5] = ACTIONS(5775), + [aux_sym_def_type_statement_token6] = ACTIONS(5775), + [aux_sym_def_type_statement_token7] = ACTIONS(5775), + [aux_sym_def_type_statement_token8] = ACTIONS(5775), + [aux_sym_def_type_statement_token9] = ACTIONS(5775), + [aux_sym_def_type_statement_token10] = ACTIONS(5775), + [aux_sym_def_type_statement_token11] = ACTIONS(5775), + [aux_sym_def_type_statement_token12] = ACTIONS(5775), + [aux_sym_def_type_statement_token13] = ACTIONS(5775), + [aux_sym_def_type_statement_token14] = ACTIONS(5775), + [aux_sym_call_statement_token1] = ACTIONS(5775), + [sym__ambiguous_call_statement] = ACTIONS(5775), + [aux_sym_addressof_expression_token1] = ACTIONS(5775), + [aux_sym_type_of_expression_token1] = ACTIONS(5775), + [aux_sym_unary_expression_token1] = ACTIONS(5775), + [sym_string_literal] = ACTIONS(5777), + [sym_number_literal] = ACTIONS(5777), + [aux_sym_boolean_literal_token1] = ACTIONS(5775), + [aux_sym_boolean_literal_token2] = ACTIONS(5775), + [sym_nothing_literal] = ACTIONS(5775), + [sym_null_literal] = ACTIONS(5775), + [sym_empty_literal] = ACTIONS(5775), + [sym_date_literal] = ACTIONS(5777), + [anon_sym_POUND] = ACTIONS(5775), + }, + [STATE(2698)] = { + [sym_identifier] = ACTIONS(6625), + [sym_newline] = ACTIONS(6627), + [anon_sym_COLON] = ACTIONS(6627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6625), + [aux_sym_frm_property_statement_token1] = ACTIONS(6625), + [anon_sym_DOT] = ACTIONS(6625), + [anon_sym_BANG] = ACTIONS(6627), + [aux_sym__attribute_identifier_token1] = ACTIONS(6625), + [aux_sym_option_statement_token3] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6625), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6625), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6625), + [aux_sym_preprocessor_const_token1] = ACTIONS(6625), + [sym_static_modifier] = ACTIONS(6625), + [sym__dim_keyword] = ACTIONS(6625), + [sym__redim_keyword] = ACTIONS(6625), + [aux_sym_get_accessor_token1] = ACTIONS(6625), + [aux_sym_set_accessor_token1] = ACTIONS(6625), + [aux_sym_const_declaration_token1] = ACTIONS(6625), + [anon_sym_LPAREN] = ACTIONS(6627), + [aux_sym_as_type_clause_token2] = ACTIONS(6625), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6625), + [aux_sym_visibility_token1] = ACTIONS(6625), + [aux_sym_visibility_token2] = ACTIONS(6625), + [aux_sym_elseif_fragment_token1] = ACTIONS(6625), + [aux_sym_else_fragment_token1] = ACTIONS(6625), + [aux_sym_select_statement_token1] = ACTIONS(6625), + [aux_sym__for_header_token1] = ACTIONS(6625), + [aux_sym_do_statement_token1] = ACTIONS(6625), + [aux_sym_do_condition_token1] = ACTIONS(6625), + [aux_sym_with_statement_token1] = ACTIONS(6625), + [aux_sym_exit_statement_token1] = ACTIONS(6625), + [sym_end_statement] = ACTIONS(6627), + [aux_sym_on_goto_statement_token1] = ACTIONS(6625), + [aux_sym_on_goto_statement_token2] = ACTIONS(6625), + [aux_sym_on_error_statement_token2] = ACTIONS(6625), + [sym__ambiguous_redim_statement] = ACTIONS(6627), + [aux_sym_erase_statement_token1] = ACTIONS(6625), + [aux_sym_open_statement_token1] = ACTIONS(6625), + [aux_sym_file_mode_token2] = ACTIONS(6625), + [aux_sym_file_access_token2] = ACTIONS(6625), + [aux_sym_file_lock_token2] = ACTIONS(6625), + [aux_sym_print_statement_token1] = ACTIONS(6625), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_QMARK] = ACTIONS(6627), + [aux_sym_close_statement_token1] = ACTIONS(6625), + [aux_sym_put_statement_token1] = ACTIONS(6625), + [aux_sym_unlock_statement_token1] = ACTIONS(6625), + [aux_sym_seek_statement_token1] = ACTIONS(6625), + [sym_reset_statement] = ACTIONS(6625), + [aux_sym_raise_event_statement_token1] = ACTIONS(6625), + [sym_stop_statement] = ACTIONS(6625), + [sym_beep_statement] = ACTIONS(6625), + [aux_sym_unload_statement_token1] = ACTIONS(6625), + [aux_sym_def_type_statement_token1] = ACTIONS(6625), + [aux_sym_def_type_statement_token2] = ACTIONS(6625), + [aux_sym_def_type_statement_token3] = ACTIONS(6625), + [aux_sym_def_type_statement_token4] = ACTIONS(6625), + [aux_sym_def_type_statement_token5] = ACTIONS(6625), + [aux_sym_def_type_statement_token6] = ACTIONS(6625), + [aux_sym_def_type_statement_token7] = ACTIONS(6625), + [aux_sym_def_type_statement_token8] = ACTIONS(6625), + [aux_sym_def_type_statement_token9] = ACTIONS(6625), + [aux_sym_def_type_statement_token10] = ACTIONS(6625), + [aux_sym_def_type_statement_token11] = ACTIONS(6625), + [aux_sym_def_type_statement_token12] = ACTIONS(6625), + [aux_sym_def_type_statement_token13] = ACTIONS(6625), + [aux_sym_def_type_statement_token14] = ACTIONS(6625), + [aux_sym_call_statement_token1] = ACTIONS(6625), + [sym__ambiguous_call_statement] = ACTIONS(6625), + [aux_sym_addressof_expression_token1] = ACTIONS(6625), + [aux_sym_type_of_expression_token1] = ACTIONS(6625), + [aux_sym_unary_expression_token1] = ACTIONS(6625), + [sym_string_literal] = ACTIONS(6627), + [sym_number_literal] = ACTIONS(6627), + [aux_sym_boolean_literal_token1] = ACTIONS(6625), + [aux_sym_boolean_literal_token2] = ACTIONS(6625), + [sym_nothing_literal] = ACTIONS(6625), + [sym_null_literal] = ACTIONS(6625), + [sym_empty_literal] = ACTIONS(6625), + [sym_date_literal] = ACTIONS(6627), + [anon_sym_POUND] = ACTIONS(6625), + }, + [STATE(2699)] = { + [sym_identifier] = ACTIONS(5766), + [sym_newline] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5766), + [aux_sym_frm_property_statement_token1] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5766), + [anon_sym_BANG] = ACTIONS(5768), + [aux_sym__attribute_identifier_token1] = ACTIONS(5766), + [aux_sym_option_statement_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5766), + [aux_sym_preprocessor_const_token1] = ACTIONS(5766), + [sym_static_modifier] = ACTIONS(5766), + [sym__dim_keyword] = ACTIONS(5766), + [sym__redim_keyword] = ACTIONS(5766), + [aux_sym_get_accessor_token1] = ACTIONS(5766), + [aux_sym_set_accessor_token1] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [aux_sym_const_declaration_token1] = ACTIONS(5766), + [anon_sym_LPAREN] = ACTIONS(5768), + [aux_sym_as_type_clause_token2] = ACTIONS(5766), + [anon_sym_STAR] = ACTIONS(5768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5766), + [aux_sym_visibility_token1] = ACTIONS(5766), + [aux_sym_visibility_token2] = ACTIONS(5766), + [aux_sym_elseif_fragment_token1] = ACTIONS(5766), + [aux_sym_else_fragment_token1] = ACTIONS(5766), + [aux_sym_select_statement_token1] = ACTIONS(5766), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5766), + [aux_sym__for_header_token1] = ACTIONS(5766), + [aux_sym_do_statement_token1] = ACTIONS(5766), + [aux_sym_do_condition_token1] = ACTIONS(5766), + [aux_sym_with_statement_token1] = ACTIONS(5766), + [aux_sym_exit_statement_token1] = ACTIONS(5766), + [sym_end_statement] = ACTIONS(5768), + [aux_sym_on_goto_statement_token1] = ACTIONS(5766), + [aux_sym_on_goto_statement_token2] = ACTIONS(5766), + [aux_sym_on_error_statement_token2] = ACTIONS(5766), + [sym__ambiguous_redim_statement] = ACTIONS(5768), + [aux_sym_erase_statement_token1] = ACTIONS(5766), + [aux_sym_open_statement_token1] = ACTIONS(5766), + [aux_sym_file_mode_token2] = ACTIONS(5766), + [aux_sym_file_access_token2] = ACTIONS(5766), + [aux_sym_file_lock_token2] = ACTIONS(5766), + [aux_sym_print_statement_token1] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_BSLASH] = ACTIONS(5768), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5766), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5768), + [aux_sym_close_statement_token1] = ACTIONS(5766), + [aux_sym_put_statement_token1] = ACTIONS(5766), + [aux_sym_unlock_statement_token1] = ACTIONS(5766), + [aux_sym_seek_statement_token1] = ACTIONS(5766), + [sym_reset_statement] = ACTIONS(5766), + [aux_sym_raise_event_statement_token1] = ACTIONS(5766), + [sym_stop_statement] = ACTIONS(5766), + [sym_beep_statement] = ACTIONS(5766), + [aux_sym_unload_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token2] = ACTIONS(5766), + [aux_sym_def_type_statement_token3] = ACTIONS(5766), + [aux_sym_def_type_statement_token4] = ACTIONS(5766), + [aux_sym_def_type_statement_token5] = ACTIONS(5766), + [aux_sym_def_type_statement_token6] = ACTIONS(5766), + [aux_sym_def_type_statement_token7] = ACTIONS(5766), + [aux_sym_def_type_statement_token8] = ACTIONS(5766), + [aux_sym_def_type_statement_token9] = ACTIONS(5766), + [aux_sym_def_type_statement_token10] = ACTIONS(5766), + [aux_sym_def_type_statement_token11] = ACTIONS(5766), + [aux_sym_def_type_statement_token12] = ACTIONS(5766), + [aux_sym_def_type_statement_token13] = ACTIONS(5766), + [aux_sym_def_type_statement_token14] = ACTIONS(5766), + [aux_sym_call_statement_token1] = ACTIONS(5766), + [sym__ambiguous_call_statement] = ACTIONS(5766), + [aux_sym_addressof_expression_token1] = ACTIONS(5766), + [aux_sym_type_of_expression_token1] = ACTIONS(5766), + [aux_sym_unary_expression_token1] = ACTIONS(5766), + [sym_string_literal] = ACTIONS(5768), + [sym_number_literal] = ACTIONS(5768), + [aux_sym_boolean_literal_token1] = ACTIONS(5766), + [aux_sym_boolean_literal_token2] = ACTIONS(5766), + [sym_nothing_literal] = ACTIONS(5766), + [sym_null_literal] = ACTIONS(5766), + [sym_empty_literal] = ACTIONS(5766), + [sym_date_literal] = ACTIONS(5768), + [anon_sym_POUND] = ACTIONS(5766), + }, + [STATE(2700)] = { + [sym_identifier] = ACTIONS(6629), + [sym_newline] = ACTIONS(6631), + [anon_sym_COLON] = ACTIONS(6631), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6629), + [aux_sym_frm_property_statement_token1] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6631), + [aux_sym__attribute_identifier_token1] = ACTIONS(6629), + [aux_sym_option_statement_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6629), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6629), + [aux_sym_preprocessor_const_token1] = ACTIONS(6629), + [sym_static_modifier] = ACTIONS(6629), + [sym__dim_keyword] = ACTIONS(6629), + [sym__redim_keyword] = ACTIONS(6629), + [aux_sym_get_accessor_token1] = ACTIONS(6629), + [aux_sym_set_accessor_token1] = ACTIONS(6629), + [aux_sym_const_declaration_token1] = ACTIONS(6629), + [anon_sym_LPAREN] = ACTIONS(6631), + [aux_sym_as_type_clause_token2] = ACTIONS(6629), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6629), + [aux_sym_visibility_token1] = ACTIONS(6629), + [aux_sym_visibility_token2] = ACTIONS(6629), + [aux_sym_elseif_fragment_token1] = ACTIONS(6629), + [aux_sym_else_fragment_token1] = ACTIONS(6629), + [aux_sym_select_statement_token1] = ACTIONS(6629), + [aux_sym__for_header_token1] = ACTIONS(6629), + [aux_sym_do_statement_token1] = ACTIONS(6629), + [aux_sym_do_condition_token1] = ACTIONS(6629), + [aux_sym_with_statement_token1] = ACTIONS(6629), + [aux_sym_exit_statement_token1] = ACTIONS(6629), + [sym_end_statement] = ACTIONS(6631), + [aux_sym_on_goto_statement_token1] = ACTIONS(6629), + [aux_sym_on_goto_statement_token2] = ACTIONS(6629), + [aux_sym_on_error_statement_token2] = ACTIONS(6629), + [sym__ambiguous_redim_statement] = ACTIONS(6631), + [aux_sym_erase_statement_token1] = ACTIONS(6629), + [aux_sym_open_statement_token1] = ACTIONS(6629), + [aux_sym_file_mode_token2] = ACTIONS(6629), + [aux_sym_file_access_token2] = ACTIONS(6629), + [aux_sym_file_lock_token2] = ACTIONS(6629), + [aux_sym_print_statement_token1] = ACTIONS(6629), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5532), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5534), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5538), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5599), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5601), + [anon_sym_QMARK] = ACTIONS(6631), + [aux_sym_close_statement_token1] = ACTIONS(6629), + [aux_sym_put_statement_token1] = ACTIONS(6629), + [aux_sym_unlock_statement_token1] = ACTIONS(6629), + [aux_sym_seek_statement_token1] = ACTIONS(6629), + [sym_reset_statement] = ACTIONS(6629), + [aux_sym_raise_event_statement_token1] = ACTIONS(6629), + [sym_stop_statement] = ACTIONS(6629), + [sym_beep_statement] = ACTIONS(6629), + [aux_sym_unload_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token2] = ACTIONS(6629), + [aux_sym_def_type_statement_token3] = ACTIONS(6629), + [aux_sym_def_type_statement_token4] = ACTIONS(6629), + [aux_sym_def_type_statement_token5] = ACTIONS(6629), + [aux_sym_def_type_statement_token6] = ACTIONS(6629), + [aux_sym_def_type_statement_token7] = ACTIONS(6629), + [aux_sym_def_type_statement_token8] = ACTIONS(6629), + [aux_sym_def_type_statement_token9] = ACTIONS(6629), + [aux_sym_def_type_statement_token10] = ACTIONS(6629), + [aux_sym_def_type_statement_token11] = ACTIONS(6629), + [aux_sym_def_type_statement_token12] = ACTIONS(6629), + [aux_sym_def_type_statement_token13] = ACTIONS(6629), + [aux_sym_def_type_statement_token14] = ACTIONS(6629), + [aux_sym_call_statement_token1] = ACTIONS(6629), + [sym__ambiguous_call_statement] = ACTIONS(6629), + [aux_sym_addressof_expression_token1] = ACTIONS(6629), + [aux_sym_type_of_expression_token1] = ACTIONS(6629), + [aux_sym_unary_expression_token1] = ACTIONS(6629), + [sym_string_literal] = ACTIONS(6631), + [sym_number_literal] = ACTIONS(6631), + [aux_sym_boolean_literal_token1] = ACTIONS(6629), + [aux_sym_boolean_literal_token2] = ACTIONS(6629), + [sym_nothing_literal] = ACTIONS(6629), + [sym_null_literal] = ACTIONS(6629), + [sym_empty_literal] = ACTIONS(6629), + [sym_date_literal] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6629), + }, + [STATE(2701)] = { + [sym_identifier] = ACTIONS(5869), + [sym_newline] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5869), + [aux_sym_frm_property_statement_token1] = ACTIONS(5869), + [anon_sym_DOT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [aux_sym__attribute_identifier_token1] = ACTIONS(5869), + [aux_sym_option_statement_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5869), + [aux_sym_preprocessor_const_token1] = ACTIONS(5869), + [sym_static_modifier] = ACTIONS(5869), + [sym__dim_keyword] = ACTIONS(5869), + [sym__redim_keyword] = ACTIONS(5869), + [aux_sym_get_accessor_token1] = ACTIONS(5869), + [aux_sym_set_accessor_token1] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5871), + [aux_sym_const_declaration_token1] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5871), + [aux_sym_as_type_clause_token2] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5869), + [aux_sym_visibility_token1] = ACTIONS(5869), + [aux_sym_visibility_token2] = ACTIONS(5869), + [aux_sym_elseif_fragment_token1] = ACTIONS(5869), + [aux_sym_else_fragment_token1] = ACTIONS(5869), + [aux_sym_select_statement_token1] = ACTIONS(5869), + [aux_sym__for_header_token1] = ACTIONS(5869), + [aux_sym_do_statement_token1] = ACTIONS(5869), + [aux_sym_do_statement_token2] = ACTIONS(5869), + [aux_sym_do_condition_token1] = ACTIONS(5869), + [aux_sym_with_statement_token1] = ACTIONS(5869), + [aux_sym_exit_statement_token1] = ACTIONS(5869), + [sym_end_statement] = ACTIONS(5871), + [aux_sym_on_goto_statement_token1] = ACTIONS(5869), + [aux_sym_on_goto_statement_token2] = ACTIONS(5869), + [aux_sym_on_error_statement_token2] = ACTIONS(5869), + [sym__ambiguous_redim_statement] = ACTIONS(5871), + [aux_sym_erase_statement_token1] = ACTIONS(5869), + [aux_sym_open_statement_token1] = ACTIONS(5869), + [aux_sym_file_mode_token2] = ACTIONS(5869), + [aux_sym_file_access_token2] = ACTIONS(5869), + [aux_sym_file_lock_token2] = ACTIONS(5869), + [aux_sym_print_statement_token1] = ACTIONS(5869), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7302), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7304), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6083), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6085), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6087), + [anon_sym_SEMI] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [aux_sym_close_statement_token1] = ACTIONS(5869), + [aux_sym_put_statement_token1] = ACTIONS(5869), + [aux_sym_unlock_statement_token1] = ACTIONS(5869), + [aux_sym_seek_statement_token1] = ACTIONS(5869), + [sym_reset_statement] = ACTIONS(5869), + [aux_sym_raise_event_statement_token1] = ACTIONS(5869), + [sym_stop_statement] = ACTIONS(5869), + [sym_beep_statement] = ACTIONS(5869), + [aux_sym_unload_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token2] = ACTIONS(5869), + [aux_sym_def_type_statement_token3] = ACTIONS(5869), + [aux_sym_def_type_statement_token4] = ACTIONS(5869), + [aux_sym_def_type_statement_token5] = ACTIONS(5869), + [aux_sym_def_type_statement_token6] = ACTIONS(5869), + [aux_sym_def_type_statement_token7] = ACTIONS(5869), + [aux_sym_def_type_statement_token8] = ACTIONS(5869), + [aux_sym_def_type_statement_token9] = ACTIONS(5869), + [aux_sym_def_type_statement_token10] = ACTIONS(5869), + [aux_sym_def_type_statement_token11] = ACTIONS(5869), + [aux_sym_def_type_statement_token12] = ACTIONS(5869), + [aux_sym_def_type_statement_token13] = ACTIONS(5869), + [aux_sym_def_type_statement_token14] = ACTIONS(5869), + [aux_sym_call_statement_token1] = ACTIONS(5869), + [sym__ambiguous_call_statement] = ACTIONS(5869), + [aux_sym_addressof_expression_token1] = ACTIONS(5869), + [aux_sym_type_of_expression_token1] = ACTIONS(5869), + [aux_sym_unary_expression_token1] = ACTIONS(5869), + [sym_string_literal] = ACTIONS(5871), + [sym_number_literal] = ACTIONS(5871), + [aux_sym_boolean_literal_token1] = ACTIONS(5869), + [aux_sym_boolean_literal_token2] = ACTIONS(5869), + [sym_nothing_literal] = ACTIONS(5869), + [sym_null_literal] = ACTIONS(5869), + [sym_empty_literal] = ACTIONS(5869), + [sym_date_literal] = ACTIONS(5871), + [anon_sym_POUND] = ACTIONS(5869), + }, + [STATE(2702)] = { + [sym_identifier] = ACTIONS(5766), + [sym_newline] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5766), + [aux_sym_frm_property_statement_token1] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5766), + [anon_sym_BANG] = ACTIONS(5768), + [aux_sym__attribute_identifier_token1] = ACTIONS(5766), + [aux_sym_option_statement_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5766), + [aux_sym_preprocessor_const_token1] = ACTIONS(5766), + [sym_static_modifier] = ACTIONS(5766), + [sym__dim_keyword] = ACTIONS(5766), + [sym__redim_keyword] = ACTIONS(5766), + [aux_sym_get_accessor_token1] = ACTIONS(5766), + [aux_sym_set_accessor_token1] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [aux_sym_const_declaration_token1] = ACTIONS(5766), + [anon_sym_LPAREN] = ACTIONS(5768), + [aux_sym_as_type_clause_token2] = ACTIONS(5766), + [anon_sym_STAR] = ACTIONS(5768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5766), + [aux_sym_visibility_token1] = ACTIONS(5766), + [aux_sym_visibility_token2] = ACTIONS(5766), + [aux_sym_elseif_fragment_token1] = ACTIONS(5766), + [aux_sym_else_fragment_token1] = ACTIONS(5766), + [aux_sym_select_statement_token1] = ACTIONS(5766), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5766), + [aux_sym__for_header_token1] = ACTIONS(5766), + [aux_sym_do_statement_token1] = ACTIONS(5766), + [aux_sym_do_condition_token1] = ACTIONS(5766), + [aux_sym_with_statement_token1] = ACTIONS(5766), + [aux_sym_exit_statement_token1] = ACTIONS(5766), + [sym_end_statement] = ACTIONS(5768), + [aux_sym_on_goto_statement_token1] = ACTIONS(5766), + [aux_sym_on_goto_statement_token2] = ACTIONS(5766), + [aux_sym_on_error_statement_token2] = ACTIONS(5766), + [sym__ambiguous_redim_statement] = ACTIONS(5768), + [aux_sym_erase_statement_token1] = ACTIONS(5766), + [aux_sym_open_statement_token1] = ACTIONS(5766), + [aux_sym_file_mode_token2] = ACTIONS(5766), + [aux_sym_file_access_token2] = ACTIONS(5766), + [aux_sym_file_lock_token2] = ACTIONS(5766), + [aux_sym_print_statement_token1] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_BSLASH] = ACTIONS(5768), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5766), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5768), + [aux_sym_close_statement_token1] = ACTIONS(5766), + [aux_sym_put_statement_token1] = ACTIONS(5766), + [aux_sym_unlock_statement_token1] = ACTIONS(5766), + [aux_sym_seek_statement_token1] = ACTIONS(5766), + [sym_reset_statement] = ACTIONS(5766), + [aux_sym_raise_event_statement_token1] = ACTIONS(5766), + [sym_stop_statement] = ACTIONS(5766), + [sym_beep_statement] = ACTIONS(5766), + [aux_sym_unload_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token2] = ACTIONS(5766), + [aux_sym_def_type_statement_token3] = ACTIONS(5766), + [aux_sym_def_type_statement_token4] = ACTIONS(5766), + [aux_sym_def_type_statement_token5] = ACTIONS(5766), + [aux_sym_def_type_statement_token6] = ACTIONS(5766), + [aux_sym_def_type_statement_token7] = ACTIONS(5766), + [aux_sym_def_type_statement_token8] = ACTIONS(5766), + [aux_sym_def_type_statement_token9] = ACTIONS(5766), + [aux_sym_def_type_statement_token10] = ACTIONS(5766), + [aux_sym_def_type_statement_token11] = ACTIONS(5766), + [aux_sym_def_type_statement_token12] = ACTIONS(5766), + [aux_sym_def_type_statement_token13] = ACTIONS(5766), + [aux_sym_def_type_statement_token14] = ACTIONS(5766), + [aux_sym_call_statement_token1] = ACTIONS(5766), + [sym__ambiguous_call_statement] = ACTIONS(5766), + [aux_sym_addressof_expression_token1] = ACTIONS(5766), + [aux_sym_type_of_expression_token1] = ACTIONS(5766), + [aux_sym_unary_expression_token1] = ACTIONS(5766), + [sym_string_literal] = ACTIONS(5768), + [sym_number_literal] = ACTIONS(5768), + [aux_sym_boolean_literal_token1] = ACTIONS(5766), + [aux_sym_boolean_literal_token2] = ACTIONS(5766), + [sym_nothing_literal] = ACTIONS(5766), + [sym_null_literal] = ACTIONS(5766), + [sym_empty_literal] = ACTIONS(5766), + [sym_date_literal] = ACTIONS(5768), + [anon_sym_POUND] = ACTIONS(5766), + }, + [STATE(2703)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2721), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token3] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2704)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2708), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_select_statement_token2] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2705)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_while_statement_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2706)] = { + [sym_identifier] = ACTIONS(5699), + [sym_newline] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5701), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5699), + [aux_sym_frm_property_statement_token1] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5699), + [anon_sym_BANG] = ACTIONS(5701), + [aux_sym__attribute_identifier_token1] = ACTIONS(5699), + [aux_sym_option_statement_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5699), + [aux_sym_preprocessor_const_token1] = ACTIONS(5699), + [sym_static_modifier] = ACTIONS(5699), + [sym__dim_keyword] = ACTIONS(5699), + [sym__redim_keyword] = ACTIONS(5699), + [aux_sym_get_accessor_token1] = ACTIONS(5699), + [aux_sym_set_accessor_token1] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5701), + [aux_sym_const_declaration_token1] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(5701), + [aux_sym_as_type_clause_token2] = ACTIONS(5699), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5699), + [aux_sym_visibility_token1] = ACTIONS(5699), + [aux_sym_visibility_token2] = ACTIONS(5699), + [aux_sym_elseif_fragment_token1] = ACTIONS(5699), + [aux_sym_else_fragment_token1] = ACTIONS(5699), + [aux_sym_select_statement_token1] = ACTIONS(5699), + [aux_sym__for_header_token1] = ACTIONS(5699), + [aux_sym_do_statement_token1] = ACTIONS(5699), + [aux_sym_do_condition_token1] = ACTIONS(5699), + [aux_sym_with_statement_token1] = ACTIONS(5699), + [aux_sym_exit_statement_token1] = ACTIONS(5699), + [sym_end_statement] = ACTIONS(5701), + [aux_sym_on_goto_statement_token1] = ACTIONS(5699), + [aux_sym_on_goto_statement_token2] = ACTIONS(5699), + [aux_sym_on_error_statement_token2] = ACTIONS(5699), + [sym__ambiguous_redim_statement] = ACTIONS(5701), + [aux_sym_erase_statement_token1] = ACTIONS(5699), + [aux_sym_open_statement_token1] = ACTIONS(5699), + [aux_sym_file_mode_token2] = ACTIONS(5699), + [aux_sym_file_access_token2] = ACTIONS(5699), + [aux_sym_file_lock_token2] = ACTIONS(5699), + [aux_sym_print_statement_token1] = ACTIONS(5699), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7331), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7333), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5891), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5893), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6190), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5701), + [aux_sym_close_statement_token1] = ACTIONS(5699), + [aux_sym_put_statement_token1] = ACTIONS(5699), + [aux_sym_unlock_statement_token1] = ACTIONS(5699), + [aux_sym_seek_statement_token1] = ACTIONS(5699), + [sym_reset_statement] = ACTIONS(5699), + [aux_sym_raise_event_statement_token1] = ACTIONS(5699), + [sym_stop_statement] = ACTIONS(5699), + [sym_beep_statement] = ACTIONS(5699), + [aux_sym_unload_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token2] = ACTIONS(5699), + [aux_sym_def_type_statement_token3] = ACTIONS(5699), + [aux_sym_def_type_statement_token4] = ACTIONS(5699), + [aux_sym_def_type_statement_token5] = ACTIONS(5699), + [aux_sym_def_type_statement_token6] = ACTIONS(5699), + [aux_sym_def_type_statement_token7] = ACTIONS(5699), + [aux_sym_def_type_statement_token8] = ACTIONS(5699), + [aux_sym_def_type_statement_token9] = ACTIONS(5699), + [aux_sym_def_type_statement_token10] = ACTIONS(5699), + [aux_sym_def_type_statement_token11] = ACTIONS(5699), + [aux_sym_def_type_statement_token12] = ACTIONS(5699), + [aux_sym_def_type_statement_token13] = ACTIONS(5699), + [aux_sym_def_type_statement_token14] = ACTIONS(5699), + [aux_sym_call_statement_token1] = ACTIONS(5699), + [sym__ambiguous_call_statement] = ACTIONS(5699), + [aux_sym_addressof_expression_token1] = ACTIONS(5699), + [aux_sym_type_of_expression_token1] = ACTIONS(5699), + [aux_sym_unary_expression_token1] = ACTIONS(5699), + [sym_string_literal] = ACTIONS(5701), + [sym_number_literal] = ACTIONS(5701), + [aux_sym_boolean_literal_token1] = ACTIONS(5699), + [aux_sym_boolean_literal_token2] = ACTIONS(5699), + [sym_nothing_literal] = ACTIONS(5699), + [sym_null_literal] = ACTIONS(5699), + [sym_empty_literal] = ACTIONS(5699), + [sym_date_literal] = ACTIONS(5701), + [anon_sym_POUND] = ACTIONS(5699), + }, + [STATE(2707)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2708)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2711), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_array_bound_token1] = ACTIONS(4375), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_select_statement_token2] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2709)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2710)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2711)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2711), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(7530), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_select_statement_token2] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2712)] = { + [sym_identifier] = ACTIONS(5752), + [sym_newline] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5752), + [aux_sym_frm_property_statement_token1] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5752), + [anon_sym_BANG] = ACTIONS(5754), + [aux_sym__attribute_identifier_token1] = ACTIONS(5752), + [aux_sym_option_statement_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5752), + [aux_sym_preprocessor_const_token1] = ACTIONS(5752), + [sym_static_modifier] = ACTIONS(5752), + [sym__dim_keyword] = ACTIONS(5752), + [sym__redim_keyword] = ACTIONS(5752), + [aux_sym_get_accessor_token1] = ACTIONS(5752), + [aux_sym_set_accessor_token1] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5754), + [aux_sym_const_declaration_token1] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [aux_sym_as_type_clause_token2] = ACTIONS(5752), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5752), + [aux_sym_visibility_token1] = ACTIONS(5752), + [aux_sym_visibility_token2] = ACTIONS(5752), + [aux_sym_elseif_fragment_token1] = ACTIONS(5752), + [aux_sym_else_fragment_token1] = ACTIONS(5752), + [aux_sym_select_statement_token1] = ACTIONS(5752), + [aux_sym__for_header_token1] = ACTIONS(5752), + [aux_sym_do_statement_token1] = ACTIONS(5752), + [aux_sym_do_condition_token1] = ACTIONS(5752), + [aux_sym_with_statement_token1] = ACTIONS(5752), + [aux_sym_exit_statement_token1] = ACTIONS(5752), + [sym_end_statement] = ACTIONS(5754), + [aux_sym_on_goto_statement_token1] = ACTIONS(5752), + [aux_sym_on_goto_statement_token2] = ACTIONS(5752), + [aux_sym_on_error_statement_token2] = ACTIONS(5752), + [sym__ambiguous_redim_statement] = ACTIONS(5754), + [aux_sym_erase_statement_token1] = ACTIONS(5752), + [aux_sym_open_statement_token1] = ACTIONS(5752), + [aux_sym_file_mode_token2] = ACTIONS(5752), + [aux_sym_file_access_token2] = ACTIONS(5752), + [aux_sym_file_lock_token2] = ACTIONS(5752), + [aux_sym_print_statement_token1] = ACTIONS(5752), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7331), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7333), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5891), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5893), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6190), + [anon_sym_SEMI] = ACTIONS(5754), + [anon_sym_QMARK] = ACTIONS(5754), + [aux_sym_close_statement_token1] = ACTIONS(5752), + [aux_sym_put_statement_token1] = ACTIONS(5752), + [aux_sym_unlock_statement_token1] = ACTIONS(5752), + [aux_sym_seek_statement_token1] = ACTIONS(5752), + [sym_reset_statement] = ACTIONS(5752), + [aux_sym_raise_event_statement_token1] = ACTIONS(5752), + [sym_stop_statement] = ACTIONS(5752), + [sym_beep_statement] = ACTIONS(5752), + [aux_sym_unload_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token2] = ACTIONS(5752), + [aux_sym_def_type_statement_token3] = ACTIONS(5752), + [aux_sym_def_type_statement_token4] = ACTIONS(5752), + [aux_sym_def_type_statement_token5] = ACTIONS(5752), + [aux_sym_def_type_statement_token6] = ACTIONS(5752), + [aux_sym_def_type_statement_token7] = ACTIONS(5752), + [aux_sym_def_type_statement_token8] = ACTIONS(5752), + [aux_sym_def_type_statement_token9] = ACTIONS(5752), + [aux_sym_def_type_statement_token10] = ACTIONS(5752), + [aux_sym_def_type_statement_token11] = ACTIONS(5752), + [aux_sym_def_type_statement_token12] = ACTIONS(5752), + [aux_sym_def_type_statement_token13] = ACTIONS(5752), + [aux_sym_def_type_statement_token14] = ACTIONS(5752), + [aux_sym_call_statement_token1] = ACTIONS(5752), + [sym__ambiguous_call_statement] = ACTIONS(5752), + [aux_sym_addressof_expression_token1] = ACTIONS(5752), + [aux_sym_type_of_expression_token1] = ACTIONS(5752), + [aux_sym_unary_expression_token1] = ACTIONS(5752), + [sym_string_literal] = ACTIONS(5754), + [sym_number_literal] = ACTIONS(5754), + [aux_sym_boolean_literal_token1] = ACTIONS(5752), + [aux_sym_boolean_literal_token2] = ACTIONS(5752), + [sym_nothing_literal] = ACTIONS(5752), + [sym_null_literal] = ACTIONS(5752), + [sym_empty_literal] = ACTIONS(5752), + [sym_date_literal] = ACTIONS(5754), + [anon_sym_POUND] = ACTIONS(5752), + }, + [STATE(2713)] = { + [sym_argument_list] = STATE(3393), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7533), + [anon_sym_BANG] = ACTIONS(7535), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(7537), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2714)] = { + [sym_identifier] = ACTIONS(5766), + [sym_newline] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5766), + [aux_sym_frm_property_statement_token1] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5766), + [anon_sym_BANG] = ACTIONS(5768), + [aux_sym__attribute_identifier_token1] = ACTIONS(5766), + [aux_sym_option_statement_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5766), + [aux_sym_preprocessor_const_token1] = ACTIONS(5766), + [sym_static_modifier] = ACTIONS(5766), + [sym__dim_keyword] = ACTIONS(5766), + [sym__redim_keyword] = ACTIONS(5766), + [aux_sym_get_accessor_token1] = ACTIONS(5766), + [aux_sym_set_accessor_token1] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [aux_sym_const_declaration_token1] = ACTIONS(5766), + [anon_sym_LPAREN] = ACTIONS(5768), + [aux_sym_as_type_clause_token2] = ACTIONS(5766), + [anon_sym_STAR] = ACTIONS(5768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5766), + [aux_sym_visibility_token1] = ACTIONS(5766), + [aux_sym_visibility_token2] = ACTIONS(5766), + [aux_sym_elseif_fragment_token1] = ACTIONS(5766), + [aux_sym_else_fragment_token1] = ACTIONS(5766), + [aux_sym_select_statement_token1] = ACTIONS(5766), + [aux_sym_select_statement_token2] = ACTIONS(5766), + [aux_sym__for_header_token1] = ACTIONS(5766), + [aux_sym_do_statement_token1] = ACTIONS(5766), + [aux_sym_do_condition_token1] = ACTIONS(5766), + [aux_sym_with_statement_token1] = ACTIONS(5766), + [aux_sym_exit_statement_token1] = ACTIONS(5766), + [sym_end_statement] = ACTIONS(5768), + [aux_sym_on_goto_statement_token1] = ACTIONS(5766), + [aux_sym_on_goto_statement_token2] = ACTIONS(5766), + [aux_sym_on_error_statement_token2] = ACTIONS(5766), + [sym__ambiguous_redim_statement] = ACTIONS(5768), + [aux_sym_erase_statement_token1] = ACTIONS(5766), + [aux_sym_open_statement_token1] = ACTIONS(5766), + [aux_sym_file_mode_token2] = ACTIONS(5766), + [aux_sym_file_access_token2] = ACTIONS(5766), + [aux_sym_file_lock_token2] = ACTIONS(5766), + [aux_sym_print_statement_token1] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_BSLASH] = ACTIONS(5768), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5766), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5768), + [aux_sym_close_statement_token1] = ACTIONS(5766), + [aux_sym_put_statement_token1] = ACTIONS(5766), + [aux_sym_unlock_statement_token1] = ACTIONS(5766), + [aux_sym_seek_statement_token1] = ACTIONS(5766), + [sym_reset_statement] = ACTIONS(5766), + [aux_sym_raise_event_statement_token1] = ACTIONS(5766), + [sym_stop_statement] = ACTIONS(5766), + [sym_beep_statement] = ACTIONS(5766), + [aux_sym_unload_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token2] = ACTIONS(5766), + [aux_sym_def_type_statement_token3] = ACTIONS(5766), + [aux_sym_def_type_statement_token4] = ACTIONS(5766), + [aux_sym_def_type_statement_token5] = ACTIONS(5766), + [aux_sym_def_type_statement_token6] = ACTIONS(5766), + [aux_sym_def_type_statement_token7] = ACTIONS(5766), + [aux_sym_def_type_statement_token8] = ACTIONS(5766), + [aux_sym_def_type_statement_token9] = ACTIONS(5766), + [aux_sym_def_type_statement_token10] = ACTIONS(5766), + [aux_sym_def_type_statement_token11] = ACTIONS(5766), + [aux_sym_def_type_statement_token12] = ACTIONS(5766), + [aux_sym_def_type_statement_token13] = ACTIONS(5766), + [aux_sym_def_type_statement_token14] = ACTIONS(5766), + [aux_sym_call_statement_token1] = ACTIONS(5766), + [sym__ambiguous_call_statement] = ACTIONS(5766), + [aux_sym_addressof_expression_token1] = ACTIONS(5766), + [aux_sym_type_of_expression_token1] = ACTIONS(5766), + [aux_sym_unary_expression_token1] = ACTIONS(5766), + [sym_string_literal] = ACTIONS(5768), + [sym_number_literal] = ACTIONS(5768), + [aux_sym_boolean_literal_token1] = ACTIONS(5766), + [aux_sym_boolean_literal_token2] = ACTIONS(5766), + [sym_nothing_literal] = ACTIONS(5766), + [sym_null_literal] = ACTIONS(5766), + [sym_empty_literal] = ACTIONS(5766), + [sym_date_literal] = ACTIONS(5768), + [anon_sym_POUND] = ACTIONS(5766), + }, + [STATE(2715)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_while_statement_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5960), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5964), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5966), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5968), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(2716)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2717)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2723), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(7539), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2718)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2719)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2734), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(7541), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_statement_token2] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2720)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_while_statement_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2721)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2721), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(7543), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2722)] = { + [sym_argument_list] = STATE(3203), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_BANG] = ACTIONS(7548), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(7550), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_select_statement_token2] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2723)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2727), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_array_bound_token1] = ACTIONS(4375), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2724)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2725)] = { + [sym_identifier] = ACTIONS(5841), + [sym_newline] = ACTIONS(5843), + [anon_sym_COLON] = ACTIONS(5843), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5841), + [aux_sym_frm_property_statement_token1] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5843), + [aux_sym__attribute_identifier_token1] = ACTIONS(5841), + [aux_sym_option_statement_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5841), + [aux_sym_preprocessor_const_token1] = ACTIONS(5841), + [sym_static_modifier] = ACTIONS(5841), + [sym__dim_keyword] = ACTIONS(5841), + [sym__redim_keyword] = ACTIONS(5841), + [aux_sym_get_accessor_token1] = ACTIONS(5841), + [aux_sym_set_accessor_token1] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(5843), + [aux_sym_const_declaration_token1] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5843), + [aux_sym_as_type_clause_token2] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5841), + [aux_sym_visibility_token1] = ACTIONS(5841), + [aux_sym_visibility_token2] = ACTIONS(5841), + [aux_sym_elseif_fragment_token1] = ACTIONS(5841), + [aux_sym_else_fragment_token1] = ACTIONS(5841), + [aux_sym_select_statement_token1] = ACTIONS(5841), + [aux_sym__for_header_token1] = ACTIONS(5841), + [aux_sym_do_statement_token1] = ACTIONS(5841), + [aux_sym_do_condition_token1] = ACTIONS(5841), + [aux_sym_with_statement_token1] = ACTIONS(5841), + [aux_sym_exit_statement_token1] = ACTIONS(5841), + [sym_end_statement] = ACTIONS(5843), + [aux_sym_on_goto_statement_token1] = ACTIONS(5841), + [aux_sym_on_goto_statement_token2] = ACTIONS(5841), + [aux_sym_on_error_statement_token2] = ACTIONS(5841), + [sym__ambiguous_redim_statement] = ACTIONS(5843), + [aux_sym_erase_statement_token1] = ACTIONS(5841), + [aux_sym_open_statement_token1] = ACTIONS(5841), + [aux_sym_file_mode_token2] = ACTIONS(5841), + [aux_sym_file_access_token2] = ACTIONS(5841), + [aux_sym_file_lock_token2] = ACTIONS(5841), + [aux_sym_print_statement_token1] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_SEMI] = ACTIONS(5843), + [anon_sym_QMARK] = ACTIONS(5843), + [aux_sym_close_statement_token1] = ACTIONS(5841), + [aux_sym_put_statement_token1] = ACTIONS(5841), + [aux_sym_unlock_statement_token1] = ACTIONS(5841), + [aux_sym_seek_statement_token1] = ACTIONS(5841), + [sym_reset_statement] = ACTIONS(5841), + [aux_sym_raise_event_statement_token1] = ACTIONS(5841), + [sym_stop_statement] = ACTIONS(5841), + [sym_beep_statement] = ACTIONS(5841), + [aux_sym_unload_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token2] = ACTIONS(5841), + [aux_sym_def_type_statement_token3] = ACTIONS(5841), + [aux_sym_def_type_statement_token4] = ACTIONS(5841), + [aux_sym_def_type_statement_token5] = ACTIONS(5841), + [aux_sym_def_type_statement_token6] = ACTIONS(5841), + [aux_sym_def_type_statement_token7] = ACTIONS(5841), + [aux_sym_def_type_statement_token8] = ACTIONS(5841), + [aux_sym_def_type_statement_token9] = ACTIONS(5841), + [aux_sym_def_type_statement_token10] = ACTIONS(5841), + [aux_sym_def_type_statement_token11] = ACTIONS(5841), + [aux_sym_def_type_statement_token12] = ACTIONS(5841), + [aux_sym_def_type_statement_token13] = ACTIONS(5841), + [aux_sym_def_type_statement_token14] = ACTIONS(5841), + [aux_sym_call_statement_token1] = ACTIONS(5841), + [sym__ambiguous_call_statement] = ACTIONS(5841), + [aux_sym_addressof_expression_token1] = ACTIONS(5841), + [aux_sym_type_of_expression_token1] = ACTIONS(5841), + [aux_sym_unary_expression_token1] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5843), + [sym_number_literal] = ACTIONS(5843), + [aux_sym_boolean_literal_token1] = ACTIONS(5841), + [aux_sym_boolean_literal_token2] = ACTIONS(5841), + [sym_nothing_literal] = ACTIONS(5841), + [sym_null_literal] = ACTIONS(5841), + [sym_empty_literal] = ACTIONS(5841), + [sym_date_literal] = ACTIONS(5843), + [anon_sym_POUND] = ACTIONS(5841), + }, + [STATE(2726)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2727)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2727), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(7552), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2728)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2729)] = { + [sym_parameter_list] = STATE(3440), + [sym_as_type_clause] = STATE(3996), + [sym_identifier] = ACTIONS(7555), + [sym_newline] = ACTIONS(7557), + [anon_sym_COLON] = ACTIONS(7557), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7555), + [aux_sym_frm_property_statement_token1] = ACTIONS(7555), + [anon_sym_DOT] = ACTIONS(7555), + [anon_sym_BANG] = ACTIONS(7557), + [aux_sym__attribute_identifier_token1] = ACTIONS(7555), + [aux_sym_option_statement_token3] = ACTIONS(7555), + [aux_sym_type_declaration_token1] = ACTIONS(7555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7555), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7555), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7555), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7555), + [aux_sym_enum_declaration_token1] = ACTIONS(7555), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7555), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7555), + [aux_sym_declare_sub_statement_token4] = ACTIONS(7559), + [aux_sym_declare_function_statement_token1] = ACTIONS(7555), + [aux_sym_preprocessor_const_token1] = ACTIONS(7555), + [aux_sym__property_get_header_token1] = ACTIONS(7555), + [aux_sym_event_declaration_token1] = ACTIONS(7555), + [sym_static_modifier] = ACTIONS(7555), + [sym__dim_keyword] = ACTIONS(7555), + [sym__redim_keyword] = ACTIONS(7555), + [aux_sym_get_accessor_token1] = ACTIONS(7555), + [aux_sym_set_accessor_token1] = ACTIONS(7555), + [aux_sym_const_declaration_token1] = ACTIONS(7555), + [anon_sym_LPAREN] = ACTIONS(7426), + [aux_sym_as_type_clause_token1] = ACTIONS(7428), + [aux_sym_as_type_clause_token2] = ACTIONS(7555), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7555), + [aux_sym_visibility_token1] = ACTIONS(7555), + [aux_sym_visibility_token2] = ACTIONS(7555), + [aux_sym_elseif_fragment_token1] = ACTIONS(7555), + [aux_sym_else_fragment_token1] = ACTIONS(7555), + [aux_sym_select_statement_token1] = ACTIONS(7555), + [aux_sym__for_header_token1] = ACTIONS(7555), + [aux_sym_do_statement_token1] = ACTIONS(7555), + [aux_sym_do_condition_token1] = ACTIONS(7555), + [aux_sym_with_statement_token1] = ACTIONS(7555), + [aux_sym_exit_statement_token1] = ACTIONS(7555), + [sym_end_statement] = ACTIONS(7557), + [aux_sym_on_goto_statement_token1] = ACTIONS(7555), + [aux_sym_on_goto_statement_token2] = ACTIONS(7555), + [aux_sym_on_error_statement_token2] = ACTIONS(7555), + [sym__ambiguous_redim_statement] = ACTIONS(7557), + [aux_sym_erase_statement_token1] = ACTIONS(7555), + [aux_sym_open_statement_token1] = ACTIONS(7555), + [aux_sym_file_mode_token2] = ACTIONS(7555), + [aux_sym_file_access_token2] = ACTIONS(7555), + [aux_sym_file_lock_token2] = ACTIONS(7555), + [aux_sym_print_statement_token1] = ACTIONS(7555), + [anon_sym_PLUS] = ACTIONS(7557), + [anon_sym_DASH] = ACTIONS(7555), + [anon_sym_QMARK] = ACTIONS(7557), + [aux_sym_close_statement_token1] = ACTIONS(7555), + [aux_sym_put_statement_token1] = ACTIONS(7555), + [aux_sym_unlock_statement_token1] = ACTIONS(7555), + [aux_sym_seek_statement_token1] = ACTIONS(7555), + [sym_reset_statement] = ACTIONS(7555), + [aux_sym_raise_event_statement_token1] = ACTIONS(7555), + [sym_stop_statement] = ACTIONS(7555), + [sym_beep_statement] = ACTIONS(7555), + [aux_sym_unload_statement_token1] = ACTIONS(7555), + [aux_sym_def_type_statement_token1] = ACTIONS(7555), + [aux_sym_def_type_statement_token2] = ACTIONS(7555), + [aux_sym_def_type_statement_token3] = ACTIONS(7555), + [aux_sym_def_type_statement_token4] = ACTIONS(7555), + [aux_sym_def_type_statement_token5] = ACTIONS(7555), + [aux_sym_def_type_statement_token6] = ACTIONS(7555), + [aux_sym_def_type_statement_token7] = ACTIONS(7555), + [aux_sym_def_type_statement_token8] = ACTIONS(7555), + [aux_sym_def_type_statement_token9] = ACTIONS(7555), + [aux_sym_def_type_statement_token10] = ACTIONS(7555), + [aux_sym_def_type_statement_token11] = ACTIONS(7555), + [aux_sym_def_type_statement_token12] = ACTIONS(7555), + [aux_sym_def_type_statement_token13] = ACTIONS(7555), + [aux_sym_def_type_statement_token14] = ACTIONS(7555), + [aux_sym_call_statement_token1] = ACTIONS(7555), + [sym__ambiguous_call_statement] = ACTIONS(7555), + [aux_sym_addressof_expression_token1] = ACTIONS(7555), + [aux_sym_type_of_expression_token1] = ACTIONS(7555), + [aux_sym_unary_expression_token1] = ACTIONS(7555), + [sym_string_literal] = ACTIONS(7557), + [sym_number_literal] = ACTIONS(7557), + [aux_sym_boolean_literal_token1] = ACTIONS(7555), + [aux_sym_boolean_literal_token2] = ACTIONS(7555), + [sym_nothing_literal] = ACTIONS(7555), + [sym_null_literal] = ACTIONS(7555), + [sym_empty_literal] = ACTIONS(7555), + [sym_date_literal] = ACTIONS(7557), + [anon_sym_POUND] = ACTIONS(7555), + }, + [STATE(2730)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2731)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2732)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(2733)] = { + [sym_identifier] = ACTIONS(6304), + [sym_newline] = ACTIONS(6306), + [anon_sym_COLON] = ACTIONS(6306), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6304), + [aux_sym_frm_property_statement_token1] = ACTIONS(6304), + [anon_sym_DOT] = ACTIONS(6304), + [anon_sym_BANG] = ACTIONS(6306), + [aux_sym__attribute_identifier_token1] = ACTIONS(6304), + [aux_sym_option_statement_token3] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6304), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6304), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6304), + [aux_sym_preprocessor_const_token1] = ACTIONS(6304), + [sym_static_modifier] = ACTIONS(6304), + [sym__dim_keyword] = ACTIONS(6304), + [sym__redim_keyword] = ACTIONS(6304), + [aux_sym_get_accessor_token1] = ACTIONS(6304), + [aux_sym_set_accessor_token1] = ACTIONS(6304), + [aux_sym_const_declaration_token1] = ACTIONS(6304), + [anon_sym_LPAREN] = ACTIONS(6306), + [aux_sym_as_type_clause_token2] = ACTIONS(6304), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6304), + [aux_sym_visibility_token1] = ACTIONS(6304), + [aux_sym_visibility_token2] = ACTIONS(6304), + [aux_sym_elseif_fragment_token1] = ACTIONS(6304), + [aux_sym_else_fragment_token1] = ACTIONS(6304), + [aux_sym_select_statement_token1] = ACTIONS(6304), + [aux_sym__for_header_token1] = ACTIONS(6304), + [aux_sym_do_statement_token1] = ACTIONS(6304), + [aux_sym_do_condition_token1] = ACTIONS(6304), + [aux_sym_with_statement_token1] = ACTIONS(6304), + [aux_sym_exit_statement_token1] = ACTIONS(6304), + [sym_end_statement] = ACTIONS(6306), + [aux_sym_on_goto_statement_token1] = ACTIONS(6304), + [aux_sym_on_goto_statement_token2] = ACTIONS(6304), + [aux_sym_on_error_statement_token2] = ACTIONS(6304), + [sym__ambiguous_redim_statement] = ACTIONS(6306), + [aux_sym_erase_statement_token1] = ACTIONS(6304), + [aux_sym_open_statement_token1] = ACTIONS(6304), + [aux_sym_file_mode_token2] = ACTIONS(6304), + [aux_sym_file_access_token2] = ACTIONS(6304), + [aux_sym_file_lock_token2] = ACTIONS(6304), + [aux_sym_print_statement_token1] = ACTIONS(6304), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_QMARK] = ACTIONS(6306), + [aux_sym_close_statement_token1] = ACTIONS(6304), + [aux_sym_put_statement_token1] = ACTIONS(6304), + [aux_sym_unlock_statement_token1] = ACTIONS(6304), + [aux_sym_seek_statement_token1] = ACTIONS(6304), + [sym_reset_statement] = ACTIONS(6304), + [aux_sym_raise_event_statement_token1] = ACTIONS(6304), + [sym_stop_statement] = ACTIONS(6304), + [sym_beep_statement] = ACTIONS(6304), + [aux_sym_unload_statement_token1] = ACTIONS(6304), + [aux_sym_def_type_statement_token1] = ACTIONS(6304), + [aux_sym_def_type_statement_token2] = ACTIONS(6304), + [aux_sym_def_type_statement_token3] = ACTIONS(6304), + [aux_sym_def_type_statement_token4] = ACTIONS(6304), + [aux_sym_def_type_statement_token5] = ACTIONS(6304), + [aux_sym_def_type_statement_token6] = ACTIONS(6304), + [aux_sym_def_type_statement_token7] = ACTIONS(6304), + [aux_sym_def_type_statement_token8] = ACTIONS(6304), + [aux_sym_def_type_statement_token9] = ACTIONS(6304), + [aux_sym_def_type_statement_token10] = ACTIONS(6304), + [aux_sym_def_type_statement_token11] = ACTIONS(6304), + [aux_sym_def_type_statement_token12] = ACTIONS(6304), + [aux_sym_def_type_statement_token13] = ACTIONS(6304), + [aux_sym_def_type_statement_token14] = ACTIONS(6304), + [aux_sym_call_statement_token1] = ACTIONS(6304), + [sym__ambiguous_call_statement] = ACTIONS(6304), + [aux_sym_addressof_expression_token1] = ACTIONS(6304), + [aux_sym_type_of_expression_token1] = ACTIONS(6304), + [aux_sym_unary_expression_token1] = ACTIONS(6304), + [sym_string_literal] = ACTIONS(6306), + [sym_number_literal] = ACTIONS(6306), + [aux_sym_boolean_literal_token1] = ACTIONS(6304), + [aux_sym_boolean_literal_token2] = ACTIONS(6304), + [sym_nothing_literal] = ACTIONS(6304), + [sym_null_literal] = ACTIONS(6304), + [sym_empty_literal] = ACTIONS(6304), + [sym_date_literal] = ACTIONS(6306), + [anon_sym_POUND] = ACTIONS(6304), + }, + [STATE(2734)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2891), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_statement_token2] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token3] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2735)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_select_statement_token2] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2736)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_while_statement_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2737)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2738)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2739)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2740)] = { + [sym_identifier] = ACTIONS(6324), + [sym_newline] = ACTIONS(6326), + [anon_sym_COLON] = ACTIONS(6326), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6324), + [aux_sym_frm_property_statement_token1] = ACTIONS(6324), + [anon_sym_DOT] = ACTIONS(6324), + [anon_sym_BANG] = ACTIONS(6326), + [aux_sym__attribute_identifier_token1] = ACTIONS(6324), + [aux_sym_option_statement_token3] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6324), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6324), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6324), + [aux_sym_preprocessor_const_token1] = ACTIONS(6324), + [sym_static_modifier] = ACTIONS(6324), + [sym__dim_keyword] = ACTIONS(6324), + [sym__redim_keyword] = ACTIONS(6324), + [aux_sym_get_accessor_token1] = ACTIONS(6324), + [aux_sym_set_accessor_token1] = ACTIONS(6324), + [aux_sym_const_declaration_token1] = ACTIONS(6324), + [anon_sym_LPAREN] = ACTIONS(6326), + [aux_sym_as_type_clause_token2] = ACTIONS(6324), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6324), + [aux_sym_visibility_token1] = ACTIONS(6324), + [aux_sym_visibility_token2] = ACTIONS(6324), + [aux_sym_elseif_fragment_token1] = ACTIONS(6324), + [aux_sym_else_fragment_token1] = ACTIONS(6324), + [aux_sym_select_statement_token1] = ACTIONS(6324), + [aux_sym__for_header_token1] = ACTIONS(6324), + [aux_sym_do_statement_token1] = ACTIONS(6324), + [aux_sym_do_condition_token1] = ACTIONS(6324), + [aux_sym_with_statement_token1] = ACTIONS(6324), + [aux_sym_exit_statement_token1] = ACTIONS(6324), + [sym_end_statement] = ACTIONS(6326), + [aux_sym_on_goto_statement_token1] = ACTIONS(6324), + [aux_sym_on_goto_statement_token2] = ACTIONS(6324), + [aux_sym_on_error_statement_token2] = ACTIONS(6324), + [sym__ambiguous_redim_statement] = ACTIONS(6326), + [aux_sym_erase_statement_token1] = ACTIONS(6324), + [aux_sym_open_statement_token1] = ACTIONS(6324), + [aux_sym_file_mode_token2] = ACTIONS(6324), + [aux_sym_file_access_token2] = ACTIONS(6324), + [aux_sym_file_lock_token2] = ACTIONS(6324), + [aux_sym_print_statement_token1] = ACTIONS(6324), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_QMARK] = ACTIONS(6326), + [aux_sym_close_statement_token1] = ACTIONS(6324), + [aux_sym_put_statement_token1] = ACTIONS(6324), + [aux_sym_unlock_statement_token1] = ACTIONS(6324), + [aux_sym_seek_statement_token1] = ACTIONS(6324), + [sym_reset_statement] = ACTIONS(6324), + [aux_sym_raise_event_statement_token1] = ACTIONS(6324), + [sym_stop_statement] = ACTIONS(6324), + [sym_beep_statement] = ACTIONS(6324), + [aux_sym_unload_statement_token1] = ACTIONS(6324), + [aux_sym_def_type_statement_token1] = ACTIONS(6324), + [aux_sym_def_type_statement_token2] = ACTIONS(6324), + [aux_sym_def_type_statement_token3] = ACTIONS(6324), + [aux_sym_def_type_statement_token4] = ACTIONS(6324), + [aux_sym_def_type_statement_token5] = ACTIONS(6324), + [aux_sym_def_type_statement_token6] = ACTIONS(6324), + [aux_sym_def_type_statement_token7] = ACTIONS(6324), + [aux_sym_def_type_statement_token8] = ACTIONS(6324), + [aux_sym_def_type_statement_token9] = ACTIONS(6324), + [aux_sym_def_type_statement_token10] = ACTIONS(6324), + [aux_sym_def_type_statement_token11] = ACTIONS(6324), + [aux_sym_def_type_statement_token12] = ACTIONS(6324), + [aux_sym_def_type_statement_token13] = ACTIONS(6324), + [aux_sym_def_type_statement_token14] = ACTIONS(6324), + [aux_sym_call_statement_token1] = ACTIONS(6324), + [sym__ambiguous_call_statement] = ACTIONS(6324), + [aux_sym_addressof_expression_token1] = ACTIONS(6324), + [aux_sym_type_of_expression_token1] = ACTIONS(6324), + [aux_sym_unary_expression_token1] = ACTIONS(6324), + [sym_string_literal] = ACTIONS(6326), + [sym_number_literal] = ACTIONS(6326), + [aux_sym_boolean_literal_token1] = ACTIONS(6324), + [aux_sym_boolean_literal_token2] = ACTIONS(6324), + [sym_nothing_literal] = ACTIONS(6324), + [sym_null_literal] = ACTIONS(6324), + [sym_empty_literal] = ACTIONS(6324), + [sym_date_literal] = ACTIONS(6326), + [anon_sym_POUND] = ACTIONS(6324), + }, + [STATE(2741)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2742)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2743)] = { + [sym_identifier] = ACTIONS(6340), + [sym_newline] = ACTIONS(6342), + [anon_sym_COLON] = ACTIONS(6342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6340), + [aux_sym_frm_property_statement_token1] = ACTIONS(6340), + [anon_sym_DOT] = ACTIONS(6340), + [anon_sym_BANG] = ACTIONS(6342), + [aux_sym__attribute_identifier_token1] = ACTIONS(6340), + [aux_sym_option_statement_token3] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6340), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6340), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6340), + [aux_sym_preprocessor_const_token1] = ACTIONS(6340), + [sym_static_modifier] = ACTIONS(6340), + [sym__dim_keyword] = ACTIONS(6340), + [sym__redim_keyword] = ACTIONS(6340), + [aux_sym_get_accessor_token1] = ACTIONS(6340), + [aux_sym_set_accessor_token1] = ACTIONS(6340), + [aux_sym_const_declaration_token1] = ACTIONS(6340), + [anon_sym_LPAREN] = ACTIONS(6342), + [aux_sym_as_type_clause_token2] = ACTIONS(6340), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6340), + [aux_sym_visibility_token1] = ACTIONS(6340), + [aux_sym_visibility_token2] = ACTIONS(6340), + [aux_sym_elseif_fragment_token1] = ACTIONS(6340), + [aux_sym_else_fragment_token1] = ACTIONS(6340), + [aux_sym_select_statement_token1] = ACTIONS(6340), + [aux_sym__for_header_token1] = ACTIONS(6340), + [aux_sym_do_statement_token1] = ACTIONS(6340), + [aux_sym_do_condition_token1] = ACTIONS(6340), + [aux_sym_with_statement_token1] = ACTIONS(6340), + [aux_sym_exit_statement_token1] = ACTIONS(6340), + [sym_end_statement] = ACTIONS(6342), + [aux_sym_on_goto_statement_token1] = ACTIONS(6340), + [aux_sym_on_goto_statement_token2] = ACTIONS(6340), + [aux_sym_on_error_statement_token2] = ACTIONS(6340), + [sym__ambiguous_redim_statement] = ACTIONS(6342), + [aux_sym_erase_statement_token1] = ACTIONS(6340), + [aux_sym_open_statement_token1] = ACTIONS(6340), + [aux_sym_file_mode_token2] = ACTIONS(6340), + [aux_sym_file_access_token2] = ACTIONS(6340), + [aux_sym_file_lock_token2] = ACTIONS(6340), + [aux_sym_print_statement_token1] = ACTIONS(6340), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_QMARK] = ACTIONS(6342), + [aux_sym_close_statement_token1] = ACTIONS(6340), + [aux_sym_put_statement_token1] = ACTIONS(6340), + [aux_sym_unlock_statement_token1] = ACTIONS(6340), + [aux_sym_seek_statement_token1] = ACTIONS(6340), + [sym_reset_statement] = ACTIONS(6340), + [aux_sym_raise_event_statement_token1] = ACTIONS(6340), + [sym_stop_statement] = ACTIONS(6340), + [sym_beep_statement] = ACTIONS(6340), + [aux_sym_unload_statement_token1] = ACTIONS(6340), + [aux_sym_def_type_statement_token1] = ACTIONS(6340), + [aux_sym_def_type_statement_token2] = ACTIONS(6340), + [aux_sym_def_type_statement_token3] = ACTIONS(6340), + [aux_sym_def_type_statement_token4] = ACTIONS(6340), + [aux_sym_def_type_statement_token5] = ACTIONS(6340), + [aux_sym_def_type_statement_token6] = ACTIONS(6340), + [aux_sym_def_type_statement_token7] = ACTIONS(6340), + [aux_sym_def_type_statement_token8] = ACTIONS(6340), + [aux_sym_def_type_statement_token9] = ACTIONS(6340), + [aux_sym_def_type_statement_token10] = ACTIONS(6340), + [aux_sym_def_type_statement_token11] = ACTIONS(6340), + [aux_sym_def_type_statement_token12] = ACTIONS(6340), + [aux_sym_def_type_statement_token13] = ACTIONS(6340), + [aux_sym_def_type_statement_token14] = ACTIONS(6340), + [aux_sym_call_statement_token1] = ACTIONS(6340), + [sym__ambiguous_call_statement] = ACTIONS(6340), + [aux_sym_addressof_expression_token1] = ACTIONS(6340), + [aux_sym_type_of_expression_token1] = ACTIONS(6340), + [aux_sym_unary_expression_token1] = ACTIONS(6340), + [sym_string_literal] = ACTIONS(6342), + [sym_number_literal] = ACTIONS(6342), + [aux_sym_boolean_literal_token1] = ACTIONS(6340), + [aux_sym_boolean_literal_token2] = ACTIONS(6340), + [sym_nothing_literal] = ACTIONS(6340), + [sym_null_literal] = ACTIONS(6340), + [sym_empty_literal] = ACTIONS(6340), + [sym_date_literal] = ACTIONS(6342), + [anon_sym_POUND] = ACTIONS(6340), + }, + [STATE(2744)] = { + [sym_identifier] = ACTIONS(6392), + [sym_newline] = ACTIONS(6394), + [anon_sym_COLON] = ACTIONS(6394), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6392), + [aux_sym_frm_property_statement_token1] = ACTIONS(6392), + [anon_sym_DOT] = ACTIONS(6392), + [anon_sym_BANG] = ACTIONS(6394), + [aux_sym__attribute_identifier_token1] = ACTIONS(6392), + [aux_sym_option_statement_token3] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6392), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6392), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6392), + [aux_sym_preprocessor_const_token1] = ACTIONS(6392), + [sym_static_modifier] = ACTIONS(6392), + [sym__dim_keyword] = ACTIONS(6392), + [sym__redim_keyword] = ACTIONS(6392), + [aux_sym_get_accessor_token1] = ACTIONS(6392), + [aux_sym_set_accessor_token1] = ACTIONS(6392), + [aux_sym_const_declaration_token1] = ACTIONS(6392), + [anon_sym_LPAREN] = ACTIONS(6394), + [aux_sym_as_type_clause_token2] = ACTIONS(6392), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6392), + [aux_sym_visibility_token1] = ACTIONS(6392), + [aux_sym_visibility_token2] = ACTIONS(6392), + [aux_sym_elseif_fragment_token1] = ACTIONS(6392), + [aux_sym_else_fragment_token1] = ACTIONS(6392), + [aux_sym_select_statement_token1] = ACTIONS(6392), + [aux_sym__for_header_token1] = ACTIONS(6392), + [aux_sym_do_statement_token1] = ACTIONS(6392), + [aux_sym_do_condition_token1] = ACTIONS(6392), + [aux_sym_with_statement_token1] = ACTIONS(6392), + [aux_sym_exit_statement_token1] = ACTIONS(6392), + [sym_end_statement] = ACTIONS(6394), + [aux_sym_on_goto_statement_token1] = ACTIONS(6392), + [aux_sym_on_goto_statement_token2] = ACTIONS(6392), + [aux_sym_on_error_statement_token2] = ACTIONS(6392), + [sym__ambiguous_redim_statement] = ACTIONS(6394), + [aux_sym_erase_statement_token1] = ACTIONS(6392), + [aux_sym_open_statement_token1] = ACTIONS(6392), + [aux_sym_file_mode_token2] = ACTIONS(6392), + [aux_sym_file_access_token2] = ACTIONS(6392), + [aux_sym_file_lock_token2] = ACTIONS(6392), + [aux_sym_print_statement_token1] = ACTIONS(6392), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_QMARK] = ACTIONS(6394), + [aux_sym_close_statement_token1] = ACTIONS(6392), + [aux_sym_put_statement_token1] = ACTIONS(6392), + [aux_sym_unlock_statement_token1] = ACTIONS(6392), + [aux_sym_seek_statement_token1] = ACTIONS(6392), + [sym_reset_statement] = ACTIONS(6392), + [aux_sym_raise_event_statement_token1] = ACTIONS(6392), + [sym_stop_statement] = ACTIONS(6392), + [sym_beep_statement] = ACTIONS(6392), + [aux_sym_unload_statement_token1] = ACTIONS(6392), + [aux_sym_def_type_statement_token1] = ACTIONS(6392), + [aux_sym_def_type_statement_token2] = ACTIONS(6392), + [aux_sym_def_type_statement_token3] = ACTIONS(6392), + [aux_sym_def_type_statement_token4] = ACTIONS(6392), + [aux_sym_def_type_statement_token5] = ACTIONS(6392), + [aux_sym_def_type_statement_token6] = ACTIONS(6392), + [aux_sym_def_type_statement_token7] = ACTIONS(6392), + [aux_sym_def_type_statement_token8] = ACTIONS(6392), + [aux_sym_def_type_statement_token9] = ACTIONS(6392), + [aux_sym_def_type_statement_token10] = ACTIONS(6392), + [aux_sym_def_type_statement_token11] = ACTIONS(6392), + [aux_sym_def_type_statement_token12] = ACTIONS(6392), + [aux_sym_def_type_statement_token13] = ACTIONS(6392), + [aux_sym_def_type_statement_token14] = ACTIONS(6392), + [aux_sym_call_statement_token1] = ACTIONS(6392), + [sym__ambiguous_call_statement] = ACTIONS(6392), + [aux_sym_addressof_expression_token1] = ACTIONS(6392), + [aux_sym_type_of_expression_token1] = ACTIONS(6392), + [aux_sym_unary_expression_token1] = ACTIONS(6392), + [sym_string_literal] = ACTIONS(6394), + [sym_number_literal] = ACTIONS(6394), + [aux_sym_boolean_literal_token1] = ACTIONS(6392), + [aux_sym_boolean_literal_token2] = ACTIONS(6392), + [sym_nothing_literal] = ACTIONS(6392), + [sym_null_literal] = ACTIONS(6392), + [sym_empty_literal] = ACTIONS(6392), + [sym_date_literal] = ACTIONS(6394), + [anon_sym_POUND] = ACTIONS(6392), + }, + [STATE(2745)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2746)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2747)] = { + [sym_identifier] = ACTIONS(6396), + [sym_newline] = ACTIONS(6398), + [anon_sym_COLON] = ACTIONS(6398), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6396), + [aux_sym_frm_property_statement_token1] = ACTIONS(6396), + [anon_sym_DOT] = ACTIONS(6396), + [anon_sym_BANG] = ACTIONS(6398), + [aux_sym__attribute_identifier_token1] = ACTIONS(6396), + [aux_sym_option_statement_token3] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6396), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6396), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6396), + [aux_sym_preprocessor_const_token1] = ACTIONS(6396), + [sym_static_modifier] = ACTIONS(6396), + [sym__dim_keyword] = ACTIONS(6396), + [sym__redim_keyword] = ACTIONS(6396), + [aux_sym_get_accessor_token1] = ACTIONS(6396), + [aux_sym_set_accessor_token1] = ACTIONS(6396), + [aux_sym_const_declaration_token1] = ACTIONS(6396), + [anon_sym_LPAREN] = ACTIONS(6398), + [aux_sym_as_type_clause_token2] = ACTIONS(6396), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6396), + [aux_sym_visibility_token1] = ACTIONS(6396), + [aux_sym_visibility_token2] = ACTIONS(6396), + [aux_sym_elseif_fragment_token1] = ACTIONS(6396), + [aux_sym_else_fragment_token1] = ACTIONS(6396), + [aux_sym_select_statement_token1] = ACTIONS(6396), + [aux_sym__for_header_token1] = ACTIONS(6396), + [aux_sym_do_statement_token1] = ACTIONS(6396), + [aux_sym_do_condition_token1] = ACTIONS(6396), + [aux_sym_with_statement_token1] = ACTIONS(6396), + [aux_sym_exit_statement_token1] = ACTIONS(6396), + [sym_end_statement] = ACTIONS(6398), + [aux_sym_on_goto_statement_token1] = ACTIONS(6396), + [aux_sym_on_goto_statement_token2] = ACTIONS(6396), + [aux_sym_on_error_statement_token2] = ACTIONS(6396), + [sym__ambiguous_redim_statement] = ACTIONS(6398), + [aux_sym_erase_statement_token1] = ACTIONS(6396), + [aux_sym_open_statement_token1] = ACTIONS(6396), + [aux_sym_file_mode_token2] = ACTIONS(6396), + [aux_sym_file_access_token2] = ACTIONS(6396), + [aux_sym_file_lock_token2] = ACTIONS(6396), + [aux_sym_print_statement_token1] = ACTIONS(6396), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_QMARK] = ACTIONS(6398), + [aux_sym_close_statement_token1] = ACTIONS(6396), + [aux_sym_put_statement_token1] = ACTIONS(6396), + [aux_sym_unlock_statement_token1] = ACTIONS(6396), + [aux_sym_seek_statement_token1] = ACTIONS(6396), + [sym_reset_statement] = ACTIONS(6396), + [aux_sym_raise_event_statement_token1] = ACTIONS(6396), + [sym_stop_statement] = ACTIONS(6396), + [sym_beep_statement] = ACTIONS(6396), + [aux_sym_unload_statement_token1] = ACTIONS(6396), + [aux_sym_def_type_statement_token1] = ACTIONS(6396), + [aux_sym_def_type_statement_token2] = ACTIONS(6396), + [aux_sym_def_type_statement_token3] = ACTIONS(6396), + [aux_sym_def_type_statement_token4] = ACTIONS(6396), + [aux_sym_def_type_statement_token5] = ACTIONS(6396), + [aux_sym_def_type_statement_token6] = ACTIONS(6396), + [aux_sym_def_type_statement_token7] = ACTIONS(6396), + [aux_sym_def_type_statement_token8] = ACTIONS(6396), + [aux_sym_def_type_statement_token9] = ACTIONS(6396), + [aux_sym_def_type_statement_token10] = ACTIONS(6396), + [aux_sym_def_type_statement_token11] = ACTIONS(6396), + [aux_sym_def_type_statement_token12] = ACTIONS(6396), + [aux_sym_def_type_statement_token13] = ACTIONS(6396), + [aux_sym_def_type_statement_token14] = ACTIONS(6396), + [aux_sym_call_statement_token1] = ACTIONS(6396), + [sym__ambiguous_call_statement] = ACTIONS(6396), + [aux_sym_addressof_expression_token1] = ACTIONS(6396), + [aux_sym_type_of_expression_token1] = ACTIONS(6396), + [aux_sym_unary_expression_token1] = ACTIONS(6396), + [sym_string_literal] = ACTIONS(6398), + [sym_number_literal] = ACTIONS(6398), + [aux_sym_boolean_literal_token1] = ACTIONS(6396), + [aux_sym_boolean_literal_token2] = ACTIONS(6396), + [sym_nothing_literal] = ACTIONS(6396), + [sym_null_literal] = ACTIONS(6396), + [sym_empty_literal] = ACTIONS(6396), + [sym_date_literal] = ACTIONS(6398), + [anon_sym_POUND] = ACTIONS(6396), + }, + [STATE(2748)] = { + [sym_identifier] = ACTIONS(6430), + [sym_newline] = ACTIONS(6432), + [anon_sym_COLON] = ACTIONS(6432), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6430), + [aux_sym_frm_property_statement_token1] = ACTIONS(6430), + [anon_sym_DOT] = ACTIONS(6430), + [anon_sym_BANG] = ACTIONS(6432), + [aux_sym__attribute_identifier_token1] = ACTIONS(6430), + [aux_sym_option_statement_token3] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6430), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6430), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6430), + [aux_sym_preprocessor_const_token1] = ACTIONS(6430), + [sym_static_modifier] = ACTIONS(6430), + [sym__dim_keyword] = ACTIONS(6430), + [sym__redim_keyword] = ACTIONS(6430), + [aux_sym_get_accessor_token1] = ACTIONS(6430), + [aux_sym_set_accessor_token1] = ACTIONS(6430), + [aux_sym_const_declaration_token1] = ACTIONS(6430), + [anon_sym_LPAREN] = ACTIONS(6432), + [aux_sym_as_type_clause_token2] = ACTIONS(6430), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6430), + [aux_sym_visibility_token1] = ACTIONS(6430), + [aux_sym_visibility_token2] = ACTIONS(6430), + [aux_sym_elseif_fragment_token1] = ACTIONS(6430), + [aux_sym_else_fragment_token1] = ACTIONS(6430), + [aux_sym_select_statement_token1] = ACTIONS(6430), + [aux_sym__for_header_token1] = ACTIONS(6430), + [aux_sym_do_statement_token1] = ACTIONS(6430), + [aux_sym_do_condition_token1] = ACTIONS(6430), + [aux_sym_with_statement_token1] = ACTIONS(6430), + [aux_sym_exit_statement_token1] = ACTIONS(6430), + [sym_end_statement] = ACTIONS(6432), + [aux_sym_on_goto_statement_token1] = ACTIONS(6430), + [aux_sym_on_goto_statement_token2] = ACTIONS(6430), + [aux_sym_on_error_statement_token2] = ACTIONS(6430), + [sym__ambiguous_redim_statement] = ACTIONS(6432), + [aux_sym_erase_statement_token1] = ACTIONS(6430), + [aux_sym_open_statement_token1] = ACTIONS(6430), + [aux_sym_file_mode_token2] = ACTIONS(6430), + [aux_sym_file_access_token2] = ACTIONS(6430), + [aux_sym_file_lock_token2] = ACTIONS(6430), + [aux_sym_print_statement_token1] = ACTIONS(6430), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_QMARK] = ACTIONS(6432), + [aux_sym_close_statement_token1] = ACTIONS(6430), + [aux_sym_put_statement_token1] = ACTIONS(6430), + [aux_sym_unlock_statement_token1] = ACTIONS(6430), + [aux_sym_seek_statement_token1] = ACTIONS(6430), + [sym_reset_statement] = ACTIONS(6430), + [aux_sym_raise_event_statement_token1] = ACTIONS(6430), + [sym_stop_statement] = ACTIONS(6430), + [sym_beep_statement] = ACTIONS(6430), + [aux_sym_unload_statement_token1] = ACTIONS(6430), + [aux_sym_def_type_statement_token1] = ACTIONS(6430), + [aux_sym_def_type_statement_token2] = ACTIONS(6430), + [aux_sym_def_type_statement_token3] = ACTIONS(6430), + [aux_sym_def_type_statement_token4] = ACTIONS(6430), + [aux_sym_def_type_statement_token5] = ACTIONS(6430), + [aux_sym_def_type_statement_token6] = ACTIONS(6430), + [aux_sym_def_type_statement_token7] = ACTIONS(6430), + [aux_sym_def_type_statement_token8] = ACTIONS(6430), + [aux_sym_def_type_statement_token9] = ACTIONS(6430), + [aux_sym_def_type_statement_token10] = ACTIONS(6430), + [aux_sym_def_type_statement_token11] = ACTIONS(6430), + [aux_sym_def_type_statement_token12] = ACTIONS(6430), + [aux_sym_def_type_statement_token13] = ACTIONS(6430), + [aux_sym_def_type_statement_token14] = ACTIONS(6430), + [aux_sym_call_statement_token1] = ACTIONS(6430), + [sym__ambiguous_call_statement] = ACTIONS(6430), + [aux_sym_addressof_expression_token1] = ACTIONS(6430), + [aux_sym_type_of_expression_token1] = ACTIONS(6430), + [aux_sym_unary_expression_token1] = ACTIONS(6430), + [sym_string_literal] = ACTIONS(6432), + [sym_number_literal] = ACTIONS(6432), + [aux_sym_boolean_literal_token1] = ACTIONS(6430), + [aux_sym_boolean_literal_token2] = ACTIONS(6430), + [sym_nothing_literal] = ACTIONS(6430), + [sym_null_literal] = ACTIONS(6430), + [sym_empty_literal] = ACTIONS(6430), + [sym_date_literal] = ACTIONS(6432), + [anon_sym_POUND] = ACTIONS(6430), + }, + [STATE(2749)] = { + [sym_identifier] = ACTIONS(6434), + [sym_newline] = ACTIONS(6436), + [anon_sym_COLON] = ACTIONS(6436), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6434), + [aux_sym_frm_property_statement_token1] = ACTIONS(6434), + [anon_sym_DOT] = ACTIONS(6434), + [anon_sym_BANG] = ACTIONS(6436), + [aux_sym__attribute_identifier_token1] = ACTIONS(6434), + [aux_sym_option_statement_token3] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6434), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6434), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6434), + [aux_sym_preprocessor_const_token1] = ACTIONS(6434), + [sym_static_modifier] = ACTIONS(6434), + [sym__dim_keyword] = ACTIONS(6434), + [sym__redim_keyword] = ACTIONS(6434), + [aux_sym_get_accessor_token1] = ACTIONS(6434), + [aux_sym_set_accessor_token1] = ACTIONS(6434), + [aux_sym_const_declaration_token1] = ACTIONS(6434), + [anon_sym_LPAREN] = ACTIONS(6436), + [aux_sym_as_type_clause_token2] = ACTIONS(6434), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6434), + [aux_sym_visibility_token1] = ACTIONS(6434), + [aux_sym_visibility_token2] = ACTIONS(6434), + [aux_sym_elseif_fragment_token1] = ACTIONS(6434), + [aux_sym_else_fragment_token1] = ACTIONS(6434), + [aux_sym_select_statement_token1] = ACTIONS(6434), + [aux_sym__for_header_token1] = ACTIONS(6434), + [aux_sym_do_statement_token1] = ACTIONS(6434), + [aux_sym_do_condition_token1] = ACTIONS(6434), + [aux_sym_with_statement_token1] = ACTIONS(6434), + [aux_sym_exit_statement_token1] = ACTIONS(6434), + [sym_end_statement] = ACTIONS(6436), + [aux_sym_on_goto_statement_token1] = ACTIONS(6434), + [aux_sym_on_goto_statement_token2] = ACTIONS(6434), + [aux_sym_on_error_statement_token2] = ACTIONS(6434), + [sym__ambiguous_redim_statement] = ACTIONS(6436), + [aux_sym_erase_statement_token1] = ACTIONS(6434), + [aux_sym_open_statement_token1] = ACTIONS(6434), + [aux_sym_file_mode_token2] = ACTIONS(6434), + [aux_sym_file_access_token2] = ACTIONS(6434), + [aux_sym_file_lock_token2] = ACTIONS(6434), + [aux_sym_print_statement_token1] = ACTIONS(6434), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_QMARK] = ACTIONS(6436), + [aux_sym_close_statement_token1] = ACTIONS(6434), + [aux_sym_put_statement_token1] = ACTIONS(6434), + [aux_sym_unlock_statement_token1] = ACTIONS(6434), + [aux_sym_seek_statement_token1] = ACTIONS(6434), + [sym_reset_statement] = ACTIONS(6434), + [aux_sym_raise_event_statement_token1] = ACTIONS(6434), + [sym_stop_statement] = ACTIONS(6434), + [sym_beep_statement] = ACTIONS(6434), + [aux_sym_unload_statement_token1] = ACTIONS(6434), + [aux_sym_def_type_statement_token1] = ACTIONS(6434), + [aux_sym_def_type_statement_token2] = ACTIONS(6434), + [aux_sym_def_type_statement_token3] = ACTIONS(6434), + [aux_sym_def_type_statement_token4] = ACTIONS(6434), + [aux_sym_def_type_statement_token5] = ACTIONS(6434), + [aux_sym_def_type_statement_token6] = ACTIONS(6434), + [aux_sym_def_type_statement_token7] = ACTIONS(6434), + [aux_sym_def_type_statement_token8] = ACTIONS(6434), + [aux_sym_def_type_statement_token9] = ACTIONS(6434), + [aux_sym_def_type_statement_token10] = ACTIONS(6434), + [aux_sym_def_type_statement_token11] = ACTIONS(6434), + [aux_sym_def_type_statement_token12] = ACTIONS(6434), + [aux_sym_def_type_statement_token13] = ACTIONS(6434), + [aux_sym_def_type_statement_token14] = ACTIONS(6434), + [aux_sym_call_statement_token1] = ACTIONS(6434), + [sym__ambiguous_call_statement] = ACTIONS(6434), + [aux_sym_addressof_expression_token1] = ACTIONS(6434), + [aux_sym_type_of_expression_token1] = ACTIONS(6434), + [aux_sym_unary_expression_token1] = ACTIONS(6434), + [sym_string_literal] = ACTIONS(6436), + [sym_number_literal] = ACTIONS(6436), + [aux_sym_boolean_literal_token1] = ACTIONS(6434), + [aux_sym_boolean_literal_token2] = ACTIONS(6434), + [sym_nothing_literal] = ACTIONS(6434), + [sym_null_literal] = ACTIONS(6434), + [sym_empty_literal] = ACTIONS(6434), + [sym_date_literal] = ACTIONS(6436), + [anon_sym_POUND] = ACTIONS(6434), + }, + [STATE(2750)] = { + [sym_identifier] = ACTIONS(6438), + [sym_newline] = ACTIONS(6440), + [anon_sym_COLON] = ACTIONS(6440), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6438), + [aux_sym_frm_property_statement_token1] = ACTIONS(6438), + [anon_sym_DOT] = ACTIONS(6438), + [anon_sym_BANG] = ACTIONS(6440), + [aux_sym__attribute_identifier_token1] = ACTIONS(6438), + [aux_sym_option_statement_token3] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6438), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6438), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6438), + [aux_sym_preprocessor_const_token1] = ACTIONS(6438), + [sym_static_modifier] = ACTIONS(6438), + [sym__dim_keyword] = ACTIONS(6438), + [sym__redim_keyword] = ACTIONS(6438), + [aux_sym_get_accessor_token1] = ACTIONS(6438), + [aux_sym_set_accessor_token1] = ACTIONS(6438), + [aux_sym_const_declaration_token1] = ACTIONS(6438), + [anon_sym_LPAREN] = ACTIONS(6440), + [aux_sym_as_type_clause_token2] = ACTIONS(6438), + [anon_sym_STAR] = ACTIONS(6885), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6438), + [aux_sym_visibility_token1] = ACTIONS(6438), + [aux_sym_visibility_token2] = ACTIONS(6438), + [aux_sym_elseif_fragment_token1] = ACTIONS(6438), + [aux_sym_else_fragment_token1] = ACTIONS(6438), + [aux_sym_select_statement_token1] = ACTIONS(6438), + [aux_sym__for_header_token1] = ACTIONS(6438), + [aux_sym_do_statement_token1] = ACTIONS(6438), + [aux_sym_do_condition_token1] = ACTIONS(6438), + [aux_sym_with_statement_token1] = ACTIONS(6438), + [aux_sym_exit_statement_token1] = ACTIONS(6438), + [sym_end_statement] = ACTIONS(6440), + [aux_sym_on_goto_statement_token1] = ACTIONS(6438), + [aux_sym_on_goto_statement_token2] = ACTIONS(6438), + [aux_sym_on_error_statement_token2] = ACTIONS(6438), + [sym__ambiguous_redim_statement] = ACTIONS(6440), + [aux_sym_erase_statement_token1] = ACTIONS(6438), + [aux_sym_open_statement_token1] = ACTIONS(6438), + [aux_sym_file_mode_token2] = ACTIONS(6438), + [aux_sym_file_access_token2] = ACTIONS(6438), + [aux_sym_file_lock_token2] = ACTIONS(6438), + [aux_sym_print_statement_token1] = ACTIONS(6438), + [anon_sym_CARET] = ACTIONS(6887), + [anon_sym_SLASH] = ACTIONS(6885), + [anon_sym_BSLASH] = ACTIONS(6889), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6891), + [anon_sym_PLUS] = ACTIONS(6893), + [anon_sym_DASH] = ACTIONS(6895), + [anon_sym_AMP] = ACTIONS(6897), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6899), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6901), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6903), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6905), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6907), + [anon_sym_QMARK] = ACTIONS(6440), + [aux_sym_close_statement_token1] = ACTIONS(6438), + [aux_sym_put_statement_token1] = ACTIONS(6438), + [aux_sym_unlock_statement_token1] = ACTIONS(6438), + [aux_sym_seek_statement_token1] = ACTIONS(6438), + [sym_reset_statement] = ACTIONS(6438), + [aux_sym_raise_event_statement_token1] = ACTIONS(6438), + [sym_stop_statement] = ACTIONS(6438), + [sym_beep_statement] = ACTIONS(6438), + [aux_sym_unload_statement_token1] = ACTIONS(6438), + [aux_sym_def_type_statement_token1] = ACTIONS(6438), + [aux_sym_def_type_statement_token2] = ACTIONS(6438), + [aux_sym_def_type_statement_token3] = ACTIONS(6438), + [aux_sym_def_type_statement_token4] = ACTIONS(6438), + [aux_sym_def_type_statement_token5] = ACTIONS(6438), + [aux_sym_def_type_statement_token6] = ACTIONS(6438), + [aux_sym_def_type_statement_token7] = ACTIONS(6438), + [aux_sym_def_type_statement_token8] = ACTIONS(6438), + [aux_sym_def_type_statement_token9] = ACTIONS(6438), + [aux_sym_def_type_statement_token10] = ACTIONS(6438), + [aux_sym_def_type_statement_token11] = ACTIONS(6438), + [aux_sym_def_type_statement_token12] = ACTIONS(6438), + [aux_sym_def_type_statement_token13] = ACTIONS(6438), + [aux_sym_def_type_statement_token14] = ACTIONS(6438), + [aux_sym_call_statement_token1] = ACTIONS(6438), + [sym__ambiguous_call_statement] = ACTIONS(6438), + [aux_sym_addressof_expression_token1] = ACTIONS(6438), + [aux_sym_type_of_expression_token1] = ACTIONS(6438), + [aux_sym_unary_expression_token1] = ACTIONS(6438), + [sym_string_literal] = ACTIONS(6440), + [sym_number_literal] = ACTIONS(6440), + [aux_sym_boolean_literal_token1] = ACTIONS(6438), + [aux_sym_boolean_literal_token2] = ACTIONS(6438), + [sym_nothing_literal] = ACTIONS(6438), + [sym_null_literal] = ACTIONS(6438), + [sym_empty_literal] = ACTIONS(6438), + [sym_date_literal] = ACTIONS(6440), + [anon_sym_POUND] = ACTIONS(6438), + }, + [STATE(2751)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2752)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2753)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2754)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6162), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6166), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6168), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6170), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(2755)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2756)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2757)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2758)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2759)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2760)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2761)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_select_statement_token2] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2762)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2763)] = { + [sym_identifier] = ACTIONS(6336), + [sym_newline] = ACTIONS(6338), + [anon_sym_COLON] = ACTIONS(6338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6336), + [aux_sym_frm_property_statement_token1] = ACTIONS(6336), + [anon_sym_DOT] = ACTIONS(6336), + [anon_sym_BANG] = ACTIONS(6338), + [aux_sym__attribute_identifier_token1] = ACTIONS(6336), + [aux_sym_option_statement_token3] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6336), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6336), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6336), + [aux_sym_preprocessor_const_token1] = ACTIONS(6336), + [sym_static_modifier] = ACTIONS(6336), + [sym__dim_keyword] = ACTIONS(6336), + [sym__redim_keyword] = ACTIONS(6336), + [aux_sym_get_accessor_token1] = ACTIONS(6336), + [aux_sym_set_accessor_token1] = ACTIONS(6336), + [aux_sym_const_declaration_token1] = ACTIONS(6336), + [anon_sym_LPAREN] = ACTIONS(6338), + [aux_sym_as_type_clause_token2] = ACTIONS(6336), + [anon_sym_STAR] = ACTIONS(5506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6336), + [aux_sym_visibility_token1] = ACTIONS(6336), + [aux_sym_visibility_token2] = ACTIONS(6336), + [aux_sym_elseif_fragment_token1] = ACTIONS(6336), + [aux_sym_else_fragment_token1] = ACTIONS(6336), + [aux_sym_select_statement_token1] = ACTIONS(6336), + [aux_sym__for_header_token1] = ACTIONS(6336), + [aux_sym_do_statement_token1] = ACTIONS(6336), + [aux_sym_do_condition_token1] = ACTIONS(6336), + [aux_sym_with_statement_token1] = ACTIONS(6336), + [aux_sym_exit_statement_token1] = ACTIONS(6336), + [sym_end_statement] = ACTIONS(6338), + [aux_sym_on_goto_statement_token1] = ACTIONS(6336), + [aux_sym_on_goto_statement_token2] = ACTIONS(6336), + [aux_sym_on_error_statement_token2] = ACTIONS(6336), + [sym__ambiguous_redim_statement] = ACTIONS(6338), + [aux_sym_erase_statement_token1] = ACTIONS(6336), + [aux_sym_open_statement_token1] = ACTIONS(6336), + [aux_sym_file_mode_token2] = ACTIONS(6336), + [aux_sym_file_access_token2] = ACTIONS(6336), + [aux_sym_file_lock_token2] = ACTIONS(6336), + [aux_sym_print_statement_token1] = ACTIONS(6336), + [anon_sym_CARET] = ACTIONS(5508), + [anon_sym_SLASH] = ACTIONS(5506), + [anon_sym_BSLASH] = ACTIONS(5510), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5516), + [anon_sym_AMP] = ACTIONS(5518), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5532), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5534), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5538), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5599), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5601), + [anon_sym_QMARK] = ACTIONS(6338), + [aux_sym_close_statement_token1] = ACTIONS(6336), + [aux_sym_put_statement_token1] = ACTIONS(6336), + [aux_sym_unlock_statement_token1] = ACTIONS(6336), + [aux_sym_seek_statement_token1] = ACTIONS(6336), + [sym_reset_statement] = ACTIONS(6336), + [aux_sym_raise_event_statement_token1] = ACTIONS(6336), + [sym_stop_statement] = ACTIONS(6336), + [sym_beep_statement] = ACTIONS(6336), + [aux_sym_unload_statement_token1] = ACTIONS(6336), + [aux_sym_def_type_statement_token1] = ACTIONS(6336), + [aux_sym_def_type_statement_token2] = ACTIONS(6336), + [aux_sym_def_type_statement_token3] = ACTIONS(6336), + [aux_sym_def_type_statement_token4] = ACTIONS(6336), + [aux_sym_def_type_statement_token5] = ACTIONS(6336), + [aux_sym_def_type_statement_token6] = ACTIONS(6336), + [aux_sym_def_type_statement_token7] = ACTIONS(6336), + [aux_sym_def_type_statement_token8] = ACTIONS(6336), + [aux_sym_def_type_statement_token9] = ACTIONS(6336), + [aux_sym_def_type_statement_token10] = ACTIONS(6336), + [aux_sym_def_type_statement_token11] = ACTIONS(6336), + [aux_sym_def_type_statement_token12] = ACTIONS(6336), + [aux_sym_def_type_statement_token13] = ACTIONS(6336), + [aux_sym_def_type_statement_token14] = ACTIONS(6336), + [aux_sym_call_statement_token1] = ACTIONS(6336), + [sym__ambiguous_call_statement] = ACTIONS(6336), + [aux_sym_addressof_expression_token1] = ACTIONS(6336), + [aux_sym_type_of_expression_token1] = ACTIONS(6336), + [aux_sym_unary_expression_token1] = ACTIONS(6336), + [sym_string_literal] = ACTIONS(6338), + [sym_number_literal] = ACTIONS(6338), + [aux_sym_boolean_literal_token1] = ACTIONS(6336), + [aux_sym_boolean_literal_token2] = ACTIONS(6336), + [sym_nothing_literal] = ACTIONS(6336), + [sym_null_literal] = ACTIONS(6336), + [sym_empty_literal] = ACTIONS(6336), + [sym_date_literal] = ACTIONS(6338), + [anon_sym_POUND] = ACTIONS(6336), + }, + [STATE(2764)] = { + [sym_identifier] = ACTIONS(5869), + [sym_newline] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5869), + [aux_sym_frm_property_statement_token1] = ACTIONS(5869), + [anon_sym_DOT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [aux_sym__attribute_identifier_token1] = ACTIONS(5869), + [aux_sym_option_statement_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5869), + [aux_sym_preprocessor_const_token1] = ACTIONS(5869), + [sym_static_modifier] = ACTIONS(5869), + [sym__dim_keyword] = ACTIONS(5869), + [sym__redim_keyword] = ACTIONS(5869), + [aux_sym_get_accessor_token1] = ACTIONS(5869), + [aux_sym_set_accessor_token1] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5871), + [aux_sym_const_declaration_token1] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5871), + [aux_sym_as_type_clause_token2] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5869), + [aux_sym_visibility_token1] = ACTIONS(5869), + [aux_sym_visibility_token2] = ACTIONS(5869), + [aux_sym_elseif_fragment_token1] = ACTIONS(5869), + [aux_sym_else_fragment_token1] = ACTIONS(5869), + [aux_sym_select_statement_token1] = ACTIONS(5869), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5869), + [aux_sym__for_header_token1] = ACTIONS(5869), + [aux_sym_do_statement_token1] = ACTIONS(5869), + [aux_sym_do_condition_token1] = ACTIONS(5869), + [aux_sym_with_statement_token1] = ACTIONS(5869), + [aux_sym_exit_statement_token1] = ACTIONS(5869), + [sym_end_statement] = ACTIONS(5871), + [aux_sym_on_goto_statement_token1] = ACTIONS(5869), + [aux_sym_on_goto_statement_token2] = ACTIONS(5869), + [aux_sym_on_error_statement_token2] = ACTIONS(5869), + [sym__ambiguous_redim_statement] = ACTIONS(5871), + [aux_sym_erase_statement_token1] = ACTIONS(5869), + [aux_sym_open_statement_token1] = ACTIONS(5869), + [aux_sym_file_mode_token2] = ACTIONS(5869), + [aux_sym_file_access_token2] = ACTIONS(5869), + [aux_sym_file_lock_token2] = ACTIONS(5869), + [aux_sym_print_statement_token1] = ACTIONS(5869), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7561), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7563), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6166), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6168), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6170), + [anon_sym_SEMI] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [aux_sym_close_statement_token1] = ACTIONS(5869), + [aux_sym_put_statement_token1] = ACTIONS(5869), + [aux_sym_unlock_statement_token1] = ACTIONS(5869), + [aux_sym_seek_statement_token1] = ACTIONS(5869), + [sym_reset_statement] = ACTIONS(5869), + [aux_sym_raise_event_statement_token1] = ACTIONS(5869), + [sym_stop_statement] = ACTIONS(5869), + [sym_beep_statement] = ACTIONS(5869), + [aux_sym_unload_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token2] = ACTIONS(5869), + [aux_sym_def_type_statement_token3] = ACTIONS(5869), + [aux_sym_def_type_statement_token4] = ACTIONS(5869), + [aux_sym_def_type_statement_token5] = ACTIONS(5869), + [aux_sym_def_type_statement_token6] = ACTIONS(5869), + [aux_sym_def_type_statement_token7] = ACTIONS(5869), + [aux_sym_def_type_statement_token8] = ACTIONS(5869), + [aux_sym_def_type_statement_token9] = ACTIONS(5869), + [aux_sym_def_type_statement_token10] = ACTIONS(5869), + [aux_sym_def_type_statement_token11] = ACTIONS(5869), + [aux_sym_def_type_statement_token12] = ACTIONS(5869), + [aux_sym_def_type_statement_token13] = ACTIONS(5869), + [aux_sym_def_type_statement_token14] = ACTIONS(5869), + [aux_sym_call_statement_token1] = ACTIONS(5869), + [sym__ambiguous_call_statement] = ACTIONS(5869), + [aux_sym_addressof_expression_token1] = ACTIONS(5869), + [aux_sym_type_of_expression_token1] = ACTIONS(5869), + [aux_sym_unary_expression_token1] = ACTIONS(5869), + [sym_string_literal] = ACTIONS(5871), + [sym_number_literal] = ACTIONS(5871), + [aux_sym_boolean_literal_token1] = ACTIONS(5869), + [aux_sym_boolean_literal_token2] = ACTIONS(5869), + [sym_nothing_literal] = ACTIONS(5869), + [sym_null_literal] = ACTIONS(5869), + [sym_empty_literal] = ACTIONS(5869), + [sym_date_literal] = ACTIONS(5871), + [anon_sym_POUND] = ACTIONS(5869), + }, + [STATE(2765)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_statement_token2] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2766)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2767)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(5611), + [sym_identifier] = ACTIONS(5566), + [sym_newline] = ACTIONS(5568), + [anon_sym_COLON] = ACTIONS(5568), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5566), + [aux_sym_frm_property_statement_token1] = ACTIONS(5566), + [anon_sym_DOT] = ACTIONS(5566), + [anon_sym_BANG] = ACTIONS(5568), + [aux_sym__attribute_identifier_token1] = ACTIONS(5566), + [aux_sym_option_statement_token3] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5566), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5566), + [aux_sym_preprocessor_const_token1] = ACTIONS(5566), + [sym_static_modifier] = ACTIONS(5566), + [sym__dim_keyword] = ACTIONS(5566), + [sym__redim_keyword] = ACTIONS(5566), + [aux_sym_get_accessor_token1] = ACTIONS(5566), + [aux_sym_set_accessor_token1] = ACTIONS(5566), + [anon_sym_COMMA] = ACTIONS(7565), + [aux_sym_const_declaration_token1] = ACTIONS(5566), + [anon_sym_LPAREN] = ACTIONS(5568), + [aux_sym_as_type_clause_token2] = ACTIONS(5566), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5566), + [aux_sym_visibility_token1] = ACTIONS(5566), + [aux_sym_visibility_token2] = ACTIONS(5566), + [aux_sym_elseif_fragment_token1] = ACTIONS(5566), + [aux_sym_else_fragment_token1] = ACTIONS(5566), + [aux_sym_select_statement_token1] = ACTIONS(5566), + [aux_sym__for_header_token1] = ACTIONS(5566), + [aux_sym_do_statement_token1] = ACTIONS(5566), + [aux_sym_do_condition_token1] = ACTIONS(5566), + [aux_sym_with_statement_token1] = ACTIONS(5566), + [aux_sym_exit_statement_token1] = ACTIONS(5566), + [sym_end_statement] = ACTIONS(5568), + [aux_sym_on_goto_statement_token1] = ACTIONS(5566), + [aux_sym_on_goto_statement_token2] = ACTIONS(5566), + [aux_sym_on_error_statement_token2] = ACTIONS(5566), + [sym__ambiguous_redim_statement] = ACTIONS(5568), + [aux_sym_erase_statement_token1] = ACTIONS(5566), + [aux_sym_open_statement_token1] = ACTIONS(5566), + [aux_sym_file_mode_token2] = ACTIONS(5566), + [aux_sym_file_access_token2] = ACTIONS(5566), + [aux_sym_file_lock_token2] = ACTIONS(5566), + [aux_sym_print_statement_token1] = ACTIONS(5566), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_SEMI] = ACTIONS(7565), + [anon_sym_QMARK] = ACTIONS(5568), + [aux_sym_close_statement_token1] = ACTIONS(5566), + [aux_sym_put_statement_token1] = ACTIONS(5566), + [aux_sym_unlock_statement_token1] = ACTIONS(5566), + [aux_sym_seek_statement_token1] = ACTIONS(5566), + [sym_reset_statement] = ACTIONS(5566), + [aux_sym_raise_event_statement_token1] = ACTIONS(5566), + [sym_stop_statement] = ACTIONS(5566), + [sym_beep_statement] = ACTIONS(5566), + [aux_sym_unload_statement_token1] = ACTIONS(5566), + [aux_sym_def_type_statement_token1] = ACTIONS(5566), + [aux_sym_def_type_statement_token2] = ACTIONS(5566), + [aux_sym_def_type_statement_token3] = ACTIONS(5566), + [aux_sym_def_type_statement_token4] = ACTIONS(5566), + [aux_sym_def_type_statement_token5] = ACTIONS(5566), + [aux_sym_def_type_statement_token6] = ACTIONS(5566), + [aux_sym_def_type_statement_token7] = ACTIONS(5566), + [aux_sym_def_type_statement_token8] = ACTIONS(5566), + [aux_sym_def_type_statement_token9] = ACTIONS(5566), + [aux_sym_def_type_statement_token10] = ACTIONS(5566), + [aux_sym_def_type_statement_token11] = ACTIONS(5566), + [aux_sym_def_type_statement_token12] = ACTIONS(5566), + [aux_sym_def_type_statement_token13] = ACTIONS(5566), + [aux_sym_def_type_statement_token14] = ACTIONS(5566), + [aux_sym_call_statement_token1] = ACTIONS(5566), + [sym__ambiguous_call_statement] = ACTIONS(5566), + [aux_sym_addressof_expression_token1] = ACTIONS(5566), + [aux_sym_type_of_expression_token1] = ACTIONS(5566), + [aux_sym_unary_expression_token1] = ACTIONS(5566), + [sym_string_literal] = ACTIONS(5568), + [sym_number_literal] = ACTIONS(5568), + [aux_sym_boolean_literal_token1] = ACTIONS(5566), + [aux_sym_boolean_literal_token2] = ACTIONS(5566), + [sym_nothing_literal] = ACTIONS(5566), + [sym_null_literal] = ACTIONS(5566), + [sym_empty_literal] = ACTIONS(5566), + [sym_date_literal] = ACTIONS(5568), + [anon_sym_POUND] = ACTIONS(5566), + }, + [STATE(2768)] = { + [sym_parameter_list] = STATE(3471), + [sym_as_type_clause] = STATE(3968), + [sym_identifier] = ACTIONS(7591), + [sym_newline] = ACTIONS(7593), + [anon_sym_COLON] = ACTIONS(7593), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7591), + [aux_sym_frm_property_statement_token1] = ACTIONS(7591), + [anon_sym_DOT] = ACTIONS(7591), + [anon_sym_BANG] = ACTIONS(7593), + [aux_sym__attribute_identifier_token1] = ACTIONS(7591), + [aux_sym_option_statement_token3] = ACTIONS(7591), + [aux_sym_type_declaration_token1] = ACTIONS(7591), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7591), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7591), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7591), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7591), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7591), + [aux_sym_enum_declaration_token1] = ACTIONS(7591), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7591), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7591), + [aux_sym_declare_sub_statement_token4] = ACTIONS(7595), + [aux_sym_declare_function_statement_token1] = ACTIONS(7591), + [aux_sym_preprocessor_const_token1] = ACTIONS(7591), + [aux_sym__property_get_header_token1] = ACTIONS(7591), + [aux_sym_event_declaration_token1] = ACTIONS(7591), + [sym_static_modifier] = ACTIONS(7591), + [sym__dim_keyword] = ACTIONS(7591), + [sym__redim_keyword] = ACTIONS(7591), + [aux_sym_get_accessor_token1] = ACTIONS(7591), + [aux_sym_set_accessor_token1] = ACTIONS(7591), + [aux_sym_const_declaration_token1] = ACTIONS(7591), + [anon_sym_LPAREN] = ACTIONS(7426), + [aux_sym_as_type_clause_token1] = ACTIONS(7428), + [aux_sym_as_type_clause_token2] = ACTIONS(7591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7591), + [aux_sym_visibility_token1] = ACTIONS(7591), + [aux_sym_visibility_token2] = ACTIONS(7591), + [aux_sym_elseif_fragment_token1] = ACTIONS(7591), + [aux_sym_else_fragment_token1] = ACTIONS(7591), + [aux_sym_select_statement_token1] = ACTIONS(7591), + [aux_sym__for_header_token1] = ACTIONS(7591), + [aux_sym_do_statement_token1] = ACTIONS(7591), + [aux_sym_do_condition_token1] = ACTIONS(7591), + [aux_sym_with_statement_token1] = ACTIONS(7591), + [aux_sym_exit_statement_token1] = ACTIONS(7591), + [sym_end_statement] = ACTIONS(7593), + [aux_sym_on_goto_statement_token1] = ACTIONS(7591), + [aux_sym_on_goto_statement_token2] = ACTIONS(7591), + [aux_sym_on_error_statement_token2] = ACTIONS(7591), + [sym__ambiguous_redim_statement] = ACTIONS(7593), + [aux_sym_erase_statement_token1] = ACTIONS(7591), + [aux_sym_open_statement_token1] = ACTIONS(7591), + [aux_sym_file_mode_token2] = ACTIONS(7591), + [aux_sym_file_access_token2] = ACTIONS(7591), + [aux_sym_file_lock_token2] = ACTIONS(7591), + [aux_sym_print_statement_token1] = ACTIONS(7591), + [anon_sym_PLUS] = ACTIONS(7593), + [anon_sym_DASH] = ACTIONS(7591), + [anon_sym_QMARK] = ACTIONS(7593), + [aux_sym_close_statement_token1] = ACTIONS(7591), + [aux_sym_put_statement_token1] = ACTIONS(7591), + [aux_sym_unlock_statement_token1] = ACTIONS(7591), + [aux_sym_seek_statement_token1] = ACTIONS(7591), + [sym_reset_statement] = ACTIONS(7591), + [aux_sym_raise_event_statement_token1] = ACTIONS(7591), + [sym_stop_statement] = ACTIONS(7591), + [sym_beep_statement] = ACTIONS(7591), + [aux_sym_unload_statement_token1] = ACTIONS(7591), + [aux_sym_def_type_statement_token1] = ACTIONS(7591), + [aux_sym_def_type_statement_token2] = ACTIONS(7591), + [aux_sym_def_type_statement_token3] = ACTIONS(7591), + [aux_sym_def_type_statement_token4] = ACTIONS(7591), + [aux_sym_def_type_statement_token5] = ACTIONS(7591), + [aux_sym_def_type_statement_token6] = ACTIONS(7591), + [aux_sym_def_type_statement_token7] = ACTIONS(7591), + [aux_sym_def_type_statement_token8] = ACTIONS(7591), + [aux_sym_def_type_statement_token9] = ACTIONS(7591), + [aux_sym_def_type_statement_token10] = ACTIONS(7591), + [aux_sym_def_type_statement_token11] = ACTIONS(7591), + [aux_sym_def_type_statement_token12] = ACTIONS(7591), + [aux_sym_def_type_statement_token13] = ACTIONS(7591), + [aux_sym_def_type_statement_token14] = ACTIONS(7591), + [aux_sym_call_statement_token1] = ACTIONS(7591), + [sym__ambiguous_call_statement] = ACTIONS(7591), + [aux_sym_addressof_expression_token1] = ACTIONS(7591), + [aux_sym_type_of_expression_token1] = ACTIONS(7591), + [aux_sym_unary_expression_token1] = ACTIONS(7591), + [sym_string_literal] = ACTIONS(7593), + [sym_number_literal] = ACTIONS(7593), + [aux_sym_boolean_literal_token1] = ACTIONS(7591), + [aux_sym_boolean_literal_token2] = ACTIONS(7591), + [sym_nothing_literal] = ACTIONS(7591), + [sym_null_literal] = ACTIONS(7591), + [sym_empty_literal] = ACTIONS(7591), + [sym_date_literal] = ACTIONS(7593), + [anon_sym_POUND] = ACTIONS(7591), + }, + [STATE(2769)] = { + [sym_identifier] = ACTIONS(5716), + [sym_newline] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5716), + [aux_sym_frm_property_statement_token1] = ACTIONS(5716), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_BANG] = ACTIONS(5718), + [aux_sym__attribute_identifier_token1] = ACTIONS(5716), + [aux_sym_option_statement_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5716), + [aux_sym_preprocessor_const_token1] = ACTIONS(5716), + [sym_static_modifier] = ACTIONS(5716), + [sym__dim_keyword] = ACTIONS(5716), + [sym__redim_keyword] = ACTIONS(5716), + [aux_sym_get_accessor_token1] = ACTIONS(5716), + [aux_sym_set_accessor_token1] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5718), + [aux_sym_const_declaration_token1] = ACTIONS(5716), + [anon_sym_LPAREN] = ACTIONS(5718), + [aux_sym_as_type_clause_token2] = ACTIONS(5716), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5716), + [aux_sym_visibility_token1] = ACTIONS(5716), + [aux_sym_visibility_token2] = ACTIONS(5716), + [aux_sym_elseif_fragment_token1] = ACTIONS(5716), + [aux_sym_else_fragment_token1] = ACTIONS(5716), + [aux_sym_select_statement_token1] = ACTIONS(5716), + [aux_sym__for_header_token1] = ACTIONS(5716), + [aux_sym_do_statement_token1] = ACTIONS(5716), + [aux_sym_do_statement_token2] = ACTIONS(5716), + [aux_sym_do_condition_token1] = ACTIONS(5716), + [aux_sym_with_statement_token1] = ACTIONS(5716), + [aux_sym_exit_statement_token1] = ACTIONS(5716), + [sym_end_statement] = ACTIONS(5718), + [aux_sym_on_goto_statement_token1] = ACTIONS(5716), + [aux_sym_on_goto_statement_token2] = ACTIONS(5716), + [aux_sym_on_error_statement_token2] = ACTIONS(5716), + [sym__ambiguous_redim_statement] = ACTIONS(5718), + [aux_sym_erase_statement_token1] = ACTIONS(5716), + [aux_sym_open_statement_token1] = ACTIONS(5716), + [aux_sym_file_mode_token2] = ACTIONS(5716), + [aux_sym_file_access_token2] = ACTIONS(5716), + [aux_sym_file_lock_token2] = ACTIONS(5716), + [aux_sym_print_statement_token1] = ACTIONS(5716), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6079), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6081), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6083), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6085), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6087), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [aux_sym_close_statement_token1] = ACTIONS(5716), + [aux_sym_put_statement_token1] = ACTIONS(5716), + [aux_sym_unlock_statement_token1] = ACTIONS(5716), + [aux_sym_seek_statement_token1] = ACTIONS(5716), + [sym_reset_statement] = ACTIONS(5716), + [aux_sym_raise_event_statement_token1] = ACTIONS(5716), + [sym_stop_statement] = ACTIONS(5716), + [sym_beep_statement] = ACTIONS(5716), + [aux_sym_unload_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token2] = ACTIONS(5716), + [aux_sym_def_type_statement_token3] = ACTIONS(5716), + [aux_sym_def_type_statement_token4] = ACTIONS(5716), + [aux_sym_def_type_statement_token5] = ACTIONS(5716), + [aux_sym_def_type_statement_token6] = ACTIONS(5716), + [aux_sym_def_type_statement_token7] = ACTIONS(5716), + [aux_sym_def_type_statement_token8] = ACTIONS(5716), + [aux_sym_def_type_statement_token9] = ACTIONS(5716), + [aux_sym_def_type_statement_token10] = ACTIONS(5716), + [aux_sym_def_type_statement_token11] = ACTIONS(5716), + [aux_sym_def_type_statement_token12] = ACTIONS(5716), + [aux_sym_def_type_statement_token13] = ACTIONS(5716), + [aux_sym_def_type_statement_token14] = ACTIONS(5716), + [aux_sym_call_statement_token1] = ACTIONS(5716), + [sym__ambiguous_call_statement] = ACTIONS(5716), + [aux_sym_addressof_expression_token1] = ACTIONS(5716), + [aux_sym_type_of_expression_token1] = ACTIONS(5716), + [aux_sym_unary_expression_token1] = ACTIONS(5716), + [sym_string_literal] = ACTIONS(5718), + [sym_number_literal] = ACTIONS(5718), + [aux_sym_boolean_literal_token1] = ACTIONS(5716), + [aux_sym_boolean_literal_token2] = ACTIONS(5716), + [sym_nothing_literal] = ACTIONS(5716), + [sym_null_literal] = ACTIONS(5716), + [sym_empty_literal] = ACTIONS(5716), + [sym_date_literal] = ACTIONS(5718), + [anon_sym_POUND] = ACTIONS(5716), + }, + [STATE(2770)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym_select_statement_token2] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2771)] = { + [sym_identifier] = ACTIONS(5851), + [sym_newline] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5853), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5851), + [aux_sym_frm_property_statement_token1] = ACTIONS(5851), + [anon_sym_DOT] = ACTIONS(7597), + [anon_sym_BANG] = ACTIONS(7599), + [aux_sym__attribute_identifier_token1] = ACTIONS(5851), + [aux_sym_option_statement_token3] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5851), + [aux_sym_preprocessor_const_token1] = ACTIONS(5851), + [sym_static_modifier] = ACTIONS(5851), + [sym__dim_keyword] = ACTIONS(5851), + [sym__redim_keyword] = ACTIONS(5851), + [aux_sym_get_accessor_token1] = ACTIONS(5851), + [aux_sym_set_accessor_token1] = ACTIONS(5851), + [anon_sym_COMMA] = ACTIONS(5853), + [aux_sym_const_declaration_token1] = ACTIONS(5851), + [anon_sym_LPAREN] = ACTIONS(5853), + [aux_sym_as_type_clause_token2] = ACTIONS(5851), + [anon_sym_STAR] = ACTIONS(5859), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5851), + [aux_sym_visibility_token1] = ACTIONS(5851), + [aux_sym_visibility_token2] = ACTIONS(5851), + [aux_sym_elseif_fragment_token1] = ACTIONS(5851), + [aux_sym_else_fragment_token1] = ACTIONS(5851), + [aux_sym_select_statement_token1] = ACTIONS(5851), + [aux_sym__for_header_token1] = ACTIONS(5851), + [aux_sym_do_statement_token1] = ACTIONS(5851), + [aux_sym_do_statement_token2] = ACTIONS(5851), + [aux_sym_do_condition_token1] = ACTIONS(5851), + [aux_sym_with_statement_token1] = ACTIONS(5851), + [aux_sym_exit_statement_token1] = ACTIONS(5851), + [sym_end_statement] = ACTIONS(5853), + [aux_sym_on_goto_statement_token1] = ACTIONS(5851), + [aux_sym_on_goto_statement_token2] = ACTIONS(5851), + [aux_sym_on_error_statement_token2] = ACTIONS(5851), + [sym__ambiguous_redim_statement] = ACTIONS(5853), + [aux_sym_erase_statement_token1] = ACTIONS(5851), + [aux_sym_open_statement_token1] = ACTIONS(5851), + [aux_sym_file_mode_token2] = ACTIONS(5851), + [aux_sym_file_access_token2] = ACTIONS(5851), + [aux_sym_file_lock_token2] = ACTIONS(5851), + [aux_sym_print_statement_token1] = ACTIONS(5851), + [anon_sym_CARET] = ACTIONS(5859), + [anon_sym_SLASH] = ACTIONS(5859), + [anon_sym_BSLASH] = ACTIONS(5859), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5861), + [anon_sym_PLUS] = ACTIONS(5863), + [anon_sym_DASH] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5861), + [anon_sym_SEMI] = ACTIONS(5853), + [anon_sym_QMARK] = ACTIONS(5853), + [aux_sym_close_statement_token1] = ACTIONS(5851), + [aux_sym_put_statement_token1] = ACTIONS(5851), + [aux_sym_unlock_statement_token1] = ACTIONS(5851), + [aux_sym_seek_statement_token1] = ACTIONS(5851), + [sym_reset_statement] = ACTIONS(5851), + [aux_sym_raise_event_statement_token1] = ACTIONS(5851), + [sym_stop_statement] = ACTIONS(5851), + [sym_beep_statement] = ACTIONS(5851), + [aux_sym_unload_statement_token1] = ACTIONS(5851), + [aux_sym_def_type_statement_token1] = ACTIONS(5851), + [aux_sym_def_type_statement_token2] = ACTIONS(5851), + [aux_sym_def_type_statement_token3] = ACTIONS(5851), + [aux_sym_def_type_statement_token4] = ACTIONS(5851), + [aux_sym_def_type_statement_token5] = ACTIONS(5851), + [aux_sym_def_type_statement_token6] = ACTIONS(5851), + [aux_sym_def_type_statement_token7] = ACTIONS(5851), + [aux_sym_def_type_statement_token8] = ACTIONS(5851), + [aux_sym_def_type_statement_token9] = ACTIONS(5851), + [aux_sym_def_type_statement_token10] = ACTIONS(5851), + [aux_sym_def_type_statement_token11] = ACTIONS(5851), + [aux_sym_def_type_statement_token12] = ACTIONS(5851), + [aux_sym_def_type_statement_token13] = ACTIONS(5851), + [aux_sym_def_type_statement_token14] = ACTIONS(5851), + [aux_sym_call_statement_token1] = ACTIONS(5851), + [sym__ambiguous_call_statement] = ACTIONS(5851), + [aux_sym_addressof_expression_token1] = ACTIONS(5851), + [aux_sym_type_of_expression_token1] = ACTIONS(5851), + [aux_sym_unary_expression_token1] = ACTIONS(5851), + [sym_string_literal] = ACTIONS(5853), + [sym_number_literal] = ACTIONS(5853), + [aux_sym_boolean_literal_token1] = ACTIONS(5851), + [aux_sym_boolean_literal_token2] = ACTIONS(5851), + [sym_nothing_literal] = ACTIONS(5851), + [sym_null_literal] = ACTIONS(5851), + [sym_empty_literal] = ACTIONS(5851), + [sym_date_literal] = ACTIONS(5853), + [anon_sym_POUND] = ACTIONS(5851), + }, + [STATE(2772)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_statement_token2] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6079), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6083), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6085), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6087), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(2773)] = { + [sym_identifier] = ACTIONS(5821), + [sym_newline] = ACTIONS(5823), + [anon_sym_COLON] = ACTIONS(5823), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5821), + [aux_sym_frm_property_statement_token1] = ACTIONS(5821), + [anon_sym_DOT] = ACTIONS(5821), + [anon_sym_BANG] = ACTIONS(5823), + [aux_sym__attribute_identifier_token1] = ACTIONS(5821), + [aux_sym_option_statement_token3] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5821), + [aux_sym_preprocessor_const_token1] = ACTIONS(5821), + [sym_static_modifier] = ACTIONS(5821), + [sym__dim_keyword] = ACTIONS(5821), + [sym__redim_keyword] = ACTIONS(5821), + [aux_sym_get_accessor_token1] = ACTIONS(5821), + [aux_sym_set_accessor_token1] = ACTIONS(5821), + [anon_sym_COMMA] = ACTIONS(5823), + [aux_sym_const_declaration_token1] = ACTIONS(5821), + [anon_sym_LPAREN] = ACTIONS(5823), + [aux_sym_as_type_clause_token2] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5821), + [aux_sym_visibility_token1] = ACTIONS(5821), + [aux_sym_visibility_token2] = ACTIONS(5821), + [aux_sym_elseif_fragment_token1] = ACTIONS(5821), + [aux_sym_else_fragment_token1] = ACTIONS(5821), + [aux_sym_select_statement_token1] = ACTIONS(5821), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5821), + [aux_sym__for_header_token1] = ACTIONS(5821), + [aux_sym_do_statement_token1] = ACTIONS(5821), + [aux_sym_do_condition_token1] = ACTIONS(5821), + [aux_sym_with_statement_token1] = ACTIONS(5821), + [aux_sym_exit_statement_token1] = ACTIONS(5821), + [sym_end_statement] = ACTIONS(5823), + [aux_sym_on_goto_statement_token1] = ACTIONS(5821), + [aux_sym_on_goto_statement_token2] = ACTIONS(5821), + [aux_sym_on_error_statement_token2] = ACTIONS(5821), + [sym__ambiguous_redim_statement] = ACTIONS(5823), + [aux_sym_erase_statement_token1] = ACTIONS(5821), + [aux_sym_open_statement_token1] = ACTIONS(5821), + [aux_sym_file_mode_token2] = ACTIONS(5821), + [aux_sym_file_access_token2] = ACTIONS(5821), + [aux_sym_file_lock_token2] = ACTIONS(5821), + [aux_sym_print_statement_token1] = ACTIONS(5821), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(5823), + [anon_sym_QMARK] = ACTIONS(5823), + [aux_sym_close_statement_token1] = ACTIONS(5821), + [aux_sym_put_statement_token1] = ACTIONS(5821), + [aux_sym_unlock_statement_token1] = ACTIONS(5821), + [aux_sym_seek_statement_token1] = ACTIONS(5821), + [sym_reset_statement] = ACTIONS(5821), + [aux_sym_raise_event_statement_token1] = ACTIONS(5821), + [sym_stop_statement] = ACTIONS(5821), + [sym_beep_statement] = ACTIONS(5821), + [aux_sym_unload_statement_token1] = ACTIONS(5821), + [aux_sym_def_type_statement_token1] = ACTIONS(5821), + [aux_sym_def_type_statement_token2] = ACTIONS(5821), + [aux_sym_def_type_statement_token3] = ACTIONS(5821), + [aux_sym_def_type_statement_token4] = ACTIONS(5821), + [aux_sym_def_type_statement_token5] = ACTIONS(5821), + [aux_sym_def_type_statement_token6] = ACTIONS(5821), + [aux_sym_def_type_statement_token7] = ACTIONS(5821), + [aux_sym_def_type_statement_token8] = ACTIONS(5821), + [aux_sym_def_type_statement_token9] = ACTIONS(5821), + [aux_sym_def_type_statement_token10] = ACTIONS(5821), + [aux_sym_def_type_statement_token11] = ACTIONS(5821), + [aux_sym_def_type_statement_token12] = ACTIONS(5821), + [aux_sym_def_type_statement_token13] = ACTIONS(5821), + [aux_sym_def_type_statement_token14] = ACTIONS(5821), + [aux_sym_call_statement_token1] = ACTIONS(5821), + [sym__ambiguous_call_statement] = ACTIONS(5821), + [aux_sym_addressof_expression_token1] = ACTIONS(5821), + [aux_sym_type_of_expression_token1] = ACTIONS(5821), + [aux_sym_unary_expression_token1] = ACTIONS(5821), + [sym_string_literal] = ACTIONS(5823), + [sym_number_literal] = ACTIONS(5823), + [aux_sym_boolean_literal_token1] = ACTIONS(5821), + [aux_sym_boolean_literal_token2] = ACTIONS(5821), + [sym_nothing_literal] = ACTIONS(5821), + [sym_null_literal] = ACTIONS(5821), + [sym_empty_literal] = ACTIONS(5821), + [sym_date_literal] = ACTIONS(5823), + [anon_sym_POUND] = ACTIONS(5821), + }, + [STATE(2774)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4412), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4412), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym_select_statement_token2] = ACTIONS(4410), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(5635), + [anon_sym_DASH] = ACTIONS(5638), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(2775)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_statement_token2] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2776)] = { + [sym_argument_list] = STATE(3207), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7601), + [anon_sym_BANG] = ACTIONS(7603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(7605), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_statement_token2] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2777)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_statement_token2] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2778)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_statement_token2] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2779)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7367), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_statement_token2] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_SLASH] = ACTIONS(7367), + [anon_sym_BSLASH] = ACTIONS(7371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7375), + [anon_sym_DASH] = ACTIONS(7377), + [anon_sym_AMP] = ACTIONS(7379), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7381), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7383), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7385), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7387), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7389), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2780)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2781)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2782)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7367), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_SLASH] = ACTIONS(7367), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2783)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7367), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_SLASH] = ACTIONS(7367), + [anon_sym_BSLASH] = ACTIONS(7371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2784)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7367), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_SLASH] = ACTIONS(7367), + [anon_sym_BSLASH] = ACTIONS(7371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2785)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7367), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_SLASH] = ACTIONS(7367), + [anon_sym_BSLASH] = ACTIONS(7371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7375), + [anon_sym_DASH] = ACTIONS(7377), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2786)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7367), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_SLASH] = ACTIONS(7367), + [anon_sym_BSLASH] = ACTIONS(7371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7375), + [anon_sym_DASH] = ACTIONS(7377), + [anon_sym_AMP] = ACTIONS(7379), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2787)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7367), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_SLASH] = ACTIONS(7367), + [anon_sym_BSLASH] = ACTIONS(7371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7375), + [anon_sym_DASH] = ACTIONS(7377), + [anon_sym_AMP] = ACTIONS(7379), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7381), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2788)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7367), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_SLASH] = ACTIONS(7367), + [anon_sym_BSLASH] = ACTIONS(7371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7375), + [anon_sym_DASH] = ACTIONS(7377), + [anon_sym_AMP] = ACTIONS(7379), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7381), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7383), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2789)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7367), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_SLASH] = ACTIONS(7367), + [anon_sym_BSLASH] = ACTIONS(7371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7375), + [anon_sym_DASH] = ACTIONS(7377), + [anon_sym_AMP] = ACTIONS(7379), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7381), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7383), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7385), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2790)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7367), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_SLASH] = ACTIONS(7367), + [anon_sym_BSLASH] = ACTIONS(7371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7375), + [anon_sym_DASH] = ACTIONS(7377), + [anon_sym_AMP] = ACTIONS(7379), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7381), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7383), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7385), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7387), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2791)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7506), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2792)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7504), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7506), + [anon_sym_SLASH] = ACTIONS(7504), + [anon_sym_BSLASH] = ACTIONS(7508), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7510), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_DASH] = ACTIONS(7514), + [anon_sym_AMP] = ACTIONS(7516), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7518), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7520), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7522), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7524), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7526), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2793)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7506), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2794)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7506), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2795)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7504), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7506), + [anon_sym_SLASH] = ACTIONS(7504), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2796)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7504), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7506), + [anon_sym_SLASH] = ACTIONS(7504), + [anon_sym_BSLASH] = ACTIONS(7508), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2797)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7504), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7506), + [anon_sym_SLASH] = ACTIONS(7504), + [anon_sym_BSLASH] = ACTIONS(7508), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7510), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2798)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7504), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7506), + [anon_sym_SLASH] = ACTIONS(7504), + [anon_sym_BSLASH] = ACTIONS(7508), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7510), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_DASH] = ACTIONS(7514), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2799)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7504), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7506), + [anon_sym_SLASH] = ACTIONS(7504), + [anon_sym_BSLASH] = ACTIONS(7508), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7510), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_DASH] = ACTIONS(7514), + [anon_sym_AMP] = ACTIONS(7516), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2800)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7504), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7506), + [anon_sym_SLASH] = ACTIONS(7504), + [anon_sym_BSLASH] = ACTIONS(7508), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7510), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_DASH] = ACTIONS(7514), + [anon_sym_AMP] = ACTIONS(7516), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7518), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2801)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7504), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7506), + [anon_sym_SLASH] = ACTIONS(7504), + [anon_sym_BSLASH] = ACTIONS(7508), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7510), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_DASH] = ACTIONS(7514), + [anon_sym_AMP] = ACTIONS(7516), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7518), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7520), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2802)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7504), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7506), + [anon_sym_SLASH] = ACTIONS(7504), + [anon_sym_BSLASH] = ACTIONS(7508), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7510), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_DASH] = ACTIONS(7514), + [anon_sym_AMP] = ACTIONS(7516), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7518), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7520), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7522), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2803)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7504), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7506), + [anon_sym_SLASH] = ACTIONS(7504), + [anon_sym_BSLASH] = ACTIONS(7508), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7510), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_DASH] = ACTIONS(7514), + [anon_sym_AMP] = ACTIONS(7516), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7518), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7520), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7522), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7524), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2804)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2805)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2806)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_while_statement_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2807)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_while_statement_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_BSLASH] = ACTIONS(7397), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7399), + [anon_sym_PLUS] = ACTIONS(7401), + [anon_sym_DASH] = ACTIONS(7403), + [anon_sym_AMP] = ACTIONS(7405), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7407), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7409), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7411), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7413), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7415), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2808)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7367), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_statement_token2] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_SLASH] = ACTIONS(7367), + [anon_sym_BSLASH] = ACTIONS(7371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7375), + [anon_sym_DASH] = ACTIONS(7377), + [anon_sym_AMP] = ACTIONS(7379), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2809)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2810)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2811)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2812)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_BSLASH] = ACTIONS(7397), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2813)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_BSLASH] = ACTIONS(7397), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7399), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2814)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_BSLASH] = ACTIONS(7397), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7399), + [anon_sym_PLUS] = ACTIONS(7401), + [anon_sym_DASH] = ACTIONS(7403), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2815)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_BSLASH] = ACTIONS(7397), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7399), + [anon_sym_PLUS] = ACTIONS(7401), + [anon_sym_DASH] = ACTIONS(7403), + [anon_sym_AMP] = ACTIONS(7405), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2816)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_BSLASH] = ACTIONS(7397), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7399), + [anon_sym_PLUS] = ACTIONS(7401), + [anon_sym_DASH] = ACTIONS(7403), + [anon_sym_AMP] = ACTIONS(7405), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7407), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2817)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_BSLASH] = ACTIONS(7397), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7399), + [anon_sym_PLUS] = ACTIONS(7401), + [anon_sym_DASH] = ACTIONS(7403), + [anon_sym_AMP] = ACTIONS(7405), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7407), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7409), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2818)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_BSLASH] = ACTIONS(7397), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7399), + [anon_sym_PLUS] = ACTIONS(7401), + [anon_sym_DASH] = ACTIONS(7403), + [anon_sym_AMP] = ACTIONS(7405), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7407), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7409), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7411), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2819)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_BSLASH] = ACTIONS(7397), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7399), + [anon_sym_PLUS] = ACTIONS(7401), + [anon_sym_DASH] = ACTIONS(7403), + [anon_sym_AMP] = ACTIONS(7405), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7407), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7409), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7411), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7413), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2820)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2821)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym_select_statement_token2] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2822)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2823)] = { + [sym_identifier] = ACTIONS(5716), + [sym_newline] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5716), + [aux_sym_frm_property_statement_token1] = ACTIONS(5716), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_BANG] = ACTIONS(5718), + [aux_sym__attribute_identifier_token1] = ACTIONS(5716), + [aux_sym_option_statement_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5716), + [aux_sym_preprocessor_const_token1] = ACTIONS(5716), + [sym_static_modifier] = ACTIONS(5716), + [sym__dim_keyword] = ACTIONS(5716), + [sym__redim_keyword] = ACTIONS(5716), + [aux_sym_get_accessor_token1] = ACTIONS(5716), + [aux_sym_set_accessor_token1] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5718), + [aux_sym_const_declaration_token1] = ACTIONS(5716), + [anon_sym_LPAREN] = ACTIONS(5718), + [aux_sym_as_type_clause_token2] = ACTIONS(5716), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5716), + [aux_sym_visibility_token1] = ACTIONS(5716), + [aux_sym_visibility_token2] = ACTIONS(5716), + [aux_sym_elseif_fragment_token1] = ACTIONS(5716), + [aux_sym_else_fragment_token1] = ACTIONS(5716), + [aux_sym_select_statement_token1] = ACTIONS(5716), + [aux_sym_select_statement_token2] = ACTIONS(5716), + [aux_sym__for_header_token1] = ACTIONS(5716), + [aux_sym_do_statement_token1] = ACTIONS(5716), + [aux_sym_do_condition_token1] = ACTIONS(5716), + [aux_sym_with_statement_token1] = ACTIONS(5716), + [aux_sym_exit_statement_token1] = ACTIONS(5716), + [sym_end_statement] = ACTIONS(5718), + [aux_sym_on_goto_statement_token1] = ACTIONS(5716), + [aux_sym_on_goto_statement_token2] = ACTIONS(5716), + [aux_sym_on_error_statement_token2] = ACTIONS(5716), + [sym__ambiguous_redim_statement] = ACTIONS(5718), + [aux_sym_erase_statement_token1] = ACTIONS(5716), + [aux_sym_open_statement_token1] = ACTIONS(5716), + [aux_sym_file_mode_token2] = ACTIONS(5716), + [aux_sym_file_access_token2] = ACTIONS(5716), + [aux_sym_file_lock_token2] = ACTIONS(5716), + [aux_sym_print_statement_token1] = ACTIONS(5716), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6057), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6059), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6061), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6063), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6065), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [aux_sym_close_statement_token1] = ACTIONS(5716), + [aux_sym_put_statement_token1] = ACTIONS(5716), + [aux_sym_unlock_statement_token1] = ACTIONS(5716), + [aux_sym_seek_statement_token1] = ACTIONS(5716), + [sym_reset_statement] = ACTIONS(5716), + [aux_sym_raise_event_statement_token1] = ACTIONS(5716), + [sym_stop_statement] = ACTIONS(5716), + [sym_beep_statement] = ACTIONS(5716), + [aux_sym_unload_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token2] = ACTIONS(5716), + [aux_sym_def_type_statement_token3] = ACTIONS(5716), + [aux_sym_def_type_statement_token4] = ACTIONS(5716), + [aux_sym_def_type_statement_token5] = ACTIONS(5716), + [aux_sym_def_type_statement_token6] = ACTIONS(5716), + [aux_sym_def_type_statement_token7] = ACTIONS(5716), + [aux_sym_def_type_statement_token8] = ACTIONS(5716), + [aux_sym_def_type_statement_token9] = ACTIONS(5716), + [aux_sym_def_type_statement_token10] = ACTIONS(5716), + [aux_sym_def_type_statement_token11] = ACTIONS(5716), + [aux_sym_def_type_statement_token12] = ACTIONS(5716), + [aux_sym_def_type_statement_token13] = ACTIONS(5716), + [aux_sym_def_type_statement_token14] = ACTIONS(5716), + [aux_sym_call_statement_token1] = ACTIONS(5716), + [sym__ambiguous_call_statement] = ACTIONS(5716), + [aux_sym_addressof_expression_token1] = ACTIONS(5716), + [aux_sym_type_of_expression_token1] = ACTIONS(5716), + [aux_sym_unary_expression_token1] = ACTIONS(5716), + [sym_string_literal] = ACTIONS(5718), + [sym_number_literal] = ACTIONS(5718), + [aux_sym_boolean_literal_token1] = ACTIONS(5716), + [aux_sym_boolean_literal_token2] = ACTIONS(5716), + [sym_nothing_literal] = ACTIONS(5716), + [sym_null_literal] = ACTIONS(5716), + [sym_empty_literal] = ACTIONS(5716), + [sym_date_literal] = ACTIONS(5718), + [anon_sym_POUND] = ACTIONS(5716), + }, + [STATE(2824)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_SEMI] = ACTIONS(4591), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(2825)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_while_statement_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2826)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2827)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2828)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2829)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_BANG] = ACTIONS(7253), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2830)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2831)] = { + [sym_identifier] = ACTIONS(5716), + [sym_newline] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5716), + [aux_sym_frm_property_statement_token1] = ACTIONS(5716), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_BANG] = ACTIONS(5718), + [aux_sym__attribute_identifier_token1] = ACTIONS(5716), + [aux_sym_option_statement_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5716), + [aux_sym_preprocessor_const_token1] = ACTIONS(5716), + [sym_static_modifier] = ACTIONS(5716), + [sym__dim_keyword] = ACTIONS(5716), + [sym__redim_keyword] = ACTIONS(5716), + [aux_sym_get_accessor_token1] = ACTIONS(5716), + [aux_sym_set_accessor_token1] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5718), + [aux_sym_const_declaration_token1] = ACTIONS(5716), + [anon_sym_LPAREN] = ACTIONS(5718), + [aux_sym_as_type_clause_token2] = ACTIONS(5716), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5716), + [aux_sym_visibility_token1] = ACTIONS(5716), + [aux_sym_visibility_token2] = ACTIONS(5716), + [aux_sym_elseif_fragment_token1] = ACTIONS(5716), + [aux_sym_else_fragment_token1] = ACTIONS(5716), + [aux_sym_select_statement_token1] = ACTIONS(5716), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5716), + [aux_sym__for_header_token1] = ACTIONS(5716), + [aux_sym_do_statement_token1] = ACTIONS(5716), + [aux_sym_do_condition_token1] = ACTIONS(5716), + [aux_sym_with_statement_token1] = ACTIONS(5716), + [aux_sym_exit_statement_token1] = ACTIONS(5716), + [sym_end_statement] = ACTIONS(5718), + [aux_sym_on_goto_statement_token1] = ACTIONS(5716), + [aux_sym_on_goto_statement_token2] = ACTIONS(5716), + [aux_sym_on_error_statement_token2] = ACTIONS(5716), + [sym__ambiguous_redim_statement] = ACTIONS(5718), + [aux_sym_erase_statement_token1] = ACTIONS(5716), + [aux_sym_open_statement_token1] = ACTIONS(5716), + [aux_sym_file_mode_token2] = ACTIONS(5716), + [aux_sym_file_access_token2] = ACTIONS(5716), + [aux_sym_file_lock_token2] = ACTIONS(5716), + [aux_sym_print_statement_token1] = ACTIONS(5716), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6162), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6164), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6166), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6168), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6170), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [aux_sym_close_statement_token1] = ACTIONS(5716), + [aux_sym_put_statement_token1] = ACTIONS(5716), + [aux_sym_unlock_statement_token1] = ACTIONS(5716), + [aux_sym_seek_statement_token1] = ACTIONS(5716), + [sym_reset_statement] = ACTIONS(5716), + [aux_sym_raise_event_statement_token1] = ACTIONS(5716), + [sym_stop_statement] = ACTIONS(5716), + [sym_beep_statement] = ACTIONS(5716), + [aux_sym_unload_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token2] = ACTIONS(5716), + [aux_sym_def_type_statement_token3] = ACTIONS(5716), + [aux_sym_def_type_statement_token4] = ACTIONS(5716), + [aux_sym_def_type_statement_token5] = ACTIONS(5716), + [aux_sym_def_type_statement_token6] = ACTIONS(5716), + [aux_sym_def_type_statement_token7] = ACTIONS(5716), + [aux_sym_def_type_statement_token8] = ACTIONS(5716), + [aux_sym_def_type_statement_token9] = ACTIONS(5716), + [aux_sym_def_type_statement_token10] = ACTIONS(5716), + [aux_sym_def_type_statement_token11] = ACTIONS(5716), + [aux_sym_def_type_statement_token12] = ACTIONS(5716), + [aux_sym_def_type_statement_token13] = ACTIONS(5716), + [aux_sym_def_type_statement_token14] = ACTIONS(5716), + [aux_sym_call_statement_token1] = ACTIONS(5716), + [sym__ambiguous_call_statement] = ACTIONS(5716), + [aux_sym_addressof_expression_token1] = ACTIONS(5716), + [aux_sym_type_of_expression_token1] = ACTIONS(5716), + [aux_sym_unary_expression_token1] = ACTIONS(5716), + [sym_string_literal] = ACTIONS(5718), + [sym_number_literal] = ACTIONS(5718), + [aux_sym_boolean_literal_token1] = ACTIONS(5716), + [aux_sym_boolean_literal_token2] = ACTIONS(5716), + [sym_nothing_literal] = ACTIONS(5716), + [sym_null_literal] = ACTIONS(5716), + [sym_empty_literal] = ACTIONS(5716), + [sym_date_literal] = ACTIONS(5718), + [anon_sym_POUND] = ACTIONS(5716), + }, + [STATE(2832)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_statement_token2] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2833)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2834)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2839), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(7607), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_select_statement_token2] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2835)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7504), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7506), + [anon_sym_SLASH] = ACTIONS(7504), + [anon_sym_BSLASH] = ACTIONS(7508), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7510), + [anon_sym_PLUS] = ACTIONS(7512), + [anon_sym_DASH] = ACTIONS(7514), + [anon_sym_AMP] = ACTIONS(7516), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2836)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2556), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_array_bound_token1] = ACTIONS(4375), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2837)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2583), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_array_bound_token1] = ACTIONS(4375), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_statement_token2] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2838)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2839)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2841), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_select_statement_token2] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token3] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2840)] = { + [sym_char_position] = STATE(357), + [aux_sym_output_list_repeat1] = STATE(2878), + [sym_identifier] = ACTIONS(7609), + [sym_newline] = ACTIONS(7611), + [anon_sym_COLON] = ACTIONS(7611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7609), + [aux_sym_frm_property_statement_token1] = ACTIONS(7609), + [anon_sym_DOT] = ACTIONS(7609), + [anon_sym_BANG] = ACTIONS(7611), + [aux_sym__attribute_identifier_token1] = ACTIONS(7609), + [aux_sym_option_statement_token3] = ACTIONS(7609), + [aux_sym_type_declaration_token1] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7609), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7609), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7609), + [aux_sym_enum_declaration_token1] = ACTIONS(7609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7609), + [aux_sym_declare_function_statement_token1] = ACTIONS(7609), + [aux_sym_preprocessor_const_token1] = ACTIONS(7609), + [aux_sym__property_get_header_token1] = ACTIONS(7609), + [aux_sym_event_declaration_token1] = ACTIONS(7609), + [sym_static_modifier] = ACTIONS(7609), + [sym__dim_keyword] = ACTIONS(7609), + [sym__redim_keyword] = ACTIONS(7609), + [aux_sym_get_accessor_token1] = ACTIONS(7609), + [aux_sym_set_accessor_token1] = ACTIONS(7609), + [anon_sym_COMMA] = ACTIONS(7464), + [aux_sym_const_declaration_token1] = ACTIONS(7609), + [anon_sym_LPAREN] = ACTIONS(7611), + [aux_sym_as_type_clause_token2] = ACTIONS(7609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7609), + [aux_sym_visibility_token1] = ACTIONS(7609), + [aux_sym_visibility_token2] = ACTIONS(7609), + [aux_sym_elseif_fragment_token1] = ACTIONS(7609), + [aux_sym_else_fragment_token1] = ACTIONS(7609), + [aux_sym_select_statement_token1] = ACTIONS(7609), + [aux_sym__for_header_token1] = ACTIONS(7609), + [aux_sym_do_statement_token1] = ACTIONS(7609), + [aux_sym_do_condition_token1] = ACTIONS(7609), + [aux_sym_with_statement_token1] = ACTIONS(7609), + [aux_sym_exit_statement_token1] = ACTIONS(7609), + [sym_end_statement] = ACTIONS(7611), + [aux_sym_on_goto_statement_token1] = ACTIONS(7609), + [aux_sym_on_goto_statement_token2] = ACTIONS(7609), + [aux_sym_on_error_statement_token2] = ACTIONS(7609), + [sym__ambiguous_redim_statement] = ACTIONS(7611), + [aux_sym_erase_statement_token1] = ACTIONS(7609), + [aux_sym_open_statement_token1] = ACTIONS(7609), + [aux_sym_file_mode_token2] = ACTIONS(7609), + [aux_sym_file_access_token2] = ACTIONS(7609), + [aux_sym_file_lock_token2] = ACTIONS(7609), + [aux_sym_print_statement_token1] = ACTIONS(7609), + [anon_sym_PLUS] = ACTIONS(7611), + [anon_sym_DASH] = ACTIONS(7609), + [anon_sym_SEMI] = ACTIONS(7464), + [anon_sym_QMARK] = ACTIONS(7611), + [aux_sym_close_statement_token1] = ACTIONS(7609), + [aux_sym_put_statement_token1] = ACTIONS(7609), + [aux_sym_unlock_statement_token1] = ACTIONS(7609), + [aux_sym_seek_statement_token1] = ACTIONS(7609), + [sym_reset_statement] = ACTIONS(7609), + [aux_sym_raise_event_statement_token1] = ACTIONS(7609), + [sym_stop_statement] = ACTIONS(7609), + [sym_beep_statement] = ACTIONS(7609), + [aux_sym_unload_statement_token1] = ACTIONS(7609), + [aux_sym_def_type_statement_token1] = ACTIONS(7609), + [aux_sym_def_type_statement_token2] = ACTIONS(7609), + [aux_sym_def_type_statement_token3] = ACTIONS(7609), + [aux_sym_def_type_statement_token4] = ACTIONS(7609), + [aux_sym_def_type_statement_token5] = ACTIONS(7609), + [aux_sym_def_type_statement_token6] = ACTIONS(7609), + [aux_sym_def_type_statement_token7] = ACTIONS(7609), + [aux_sym_def_type_statement_token8] = ACTIONS(7609), + [aux_sym_def_type_statement_token9] = ACTIONS(7609), + [aux_sym_def_type_statement_token10] = ACTIONS(7609), + [aux_sym_def_type_statement_token11] = ACTIONS(7609), + [aux_sym_def_type_statement_token12] = ACTIONS(7609), + [aux_sym_def_type_statement_token13] = ACTIONS(7609), + [aux_sym_def_type_statement_token14] = ACTIONS(7609), + [aux_sym_call_statement_token1] = ACTIONS(7609), + [sym__ambiguous_call_statement] = ACTIONS(7609), + [aux_sym_addressof_expression_token1] = ACTIONS(7609), + [aux_sym_type_of_expression_token1] = ACTIONS(7609), + [aux_sym_unary_expression_token1] = ACTIONS(7609), + [sym_string_literal] = ACTIONS(7611), + [sym_number_literal] = ACTIONS(7611), + [aux_sym_boolean_literal_token1] = ACTIONS(7609), + [aux_sym_boolean_literal_token2] = ACTIONS(7609), + [sym_nothing_literal] = ACTIONS(7609), + [sym_null_literal] = ACTIONS(7609), + [sym_empty_literal] = ACTIONS(7609), + [sym_date_literal] = ACTIONS(7611), + [anon_sym_POUND] = ACTIONS(7609), + }, + [STATE(2841)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2841), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(7613), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_select_statement_token2] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2842)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2843)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2844)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2845)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2846)] = { + [sym_identifier] = ACTIONS(5766), + [sym_newline] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5766), + [aux_sym_frm_property_statement_token1] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5766), + [anon_sym_BANG] = ACTIONS(5768), + [aux_sym__attribute_identifier_token1] = ACTIONS(5766), + [aux_sym_option_statement_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5766), + [aux_sym_preprocessor_const_token1] = ACTIONS(5766), + [sym_static_modifier] = ACTIONS(5766), + [sym__dim_keyword] = ACTIONS(5766), + [sym__redim_keyword] = ACTIONS(5766), + [aux_sym_get_accessor_token1] = ACTIONS(5766), + [aux_sym_set_accessor_token1] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [aux_sym_const_declaration_token1] = ACTIONS(5766), + [anon_sym_LPAREN] = ACTIONS(5768), + [aux_sym_as_type_clause_token2] = ACTIONS(5766), + [anon_sym_STAR] = ACTIONS(5768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5766), + [aux_sym_visibility_token1] = ACTIONS(5766), + [aux_sym_visibility_token2] = ACTIONS(5766), + [aux_sym_elseif_fragment_token1] = ACTIONS(5766), + [aux_sym_else_fragment_token1] = ACTIONS(5766), + [aux_sym_select_statement_token1] = ACTIONS(5766), + [aux_sym__for_header_token1] = ACTIONS(5766), + [aux_sym_do_statement_token1] = ACTIONS(5766), + [aux_sym_do_condition_token1] = ACTIONS(5766), + [aux_sym_with_statement_token1] = ACTIONS(5766), + [aux_sym_exit_statement_token1] = ACTIONS(5766), + [sym_end_statement] = ACTIONS(5768), + [aux_sym_on_goto_statement_token1] = ACTIONS(5766), + [aux_sym_on_goto_statement_token2] = ACTIONS(5766), + [aux_sym_on_error_statement_token2] = ACTIONS(5766), + [sym__ambiguous_redim_statement] = ACTIONS(5768), + [aux_sym_erase_statement_token1] = ACTIONS(5766), + [aux_sym_open_statement_token1] = ACTIONS(5766), + [aux_sym_file_mode_token2] = ACTIONS(5766), + [aux_sym_file_access_token2] = ACTIONS(5766), + [aux_sym_file_lock_token2] = ACTIONS(5766), + [aux_sym_print_statement_token1] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_BSLASH] = ACTIONS(5768), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5766), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5768), + [aux_sym_close_statement_token1] = ACTIONS(5766), + [aux_sym_put_statement_token1] = ACTIONS(5766), + [aux_sym_unlock_statement_token1] = ACTIONS(5766), + [aux_sym_seek_statement_token1] = ACTIONS(5766), + [sym_reset_statement] = ACTIONS(5766), + [aux_sym_raise_event_statement_token1] = ACTIONS(5766), + [sym_stop_statement] = ACTIONS(5766), + [sym_beep_statement] = ACTIONS(5766), + [aux_sym_unload_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token2] = ACTIONS(5766), + [aux_sym_def_type_statement_token3] = ACTIONS(5766), + [aux_sym_def_type_statement_token4] = ACTIONS(5766), + [aux_sym_def_type_statement_token5] = ACTIONS(5766), + [aux_sym_def_type_statement_token6] = ACTIONS(5766), + [aux_sym_def_type_statement_token7] = ACTIONS(5766), + [aux_sym_def_type_statement_token8] = ACTIONS(5766), + [aux_sym_def_type_statement_token9] = ACTIONS(5766), + [aux_sym_def_type_statement_token10] = ACTIONS(5766), + [aux_sym_def_type_statement_token11] = ACTIONS(5766), + [aux_sym_def_type_statement_token12] = ACTIONS(5766), + [aux_sym_def_type_statement_token13] = ACTIONS(5766), + [aux_sym_def_type_statement_token14] = ACTIONS(5766), + [aux_sym_call_statement_token1] = ACTIONS(5766), + [sym__ambiguous_call_statement] = ACTIONS(5766), + [aux_sym_addressof_expression_token1] = ACTIONS(5766), + [aux_sym_type_of_expression_token1] = ACTIONS(5766), + [aux_sym_unary_expression_token1] = ACTIONS(5766), + [sym_string_literal] = ACTIONS(5768), + [sym_number_literal] = ACTIONS(5768), + [aux_sym_boolean_literal_token1] = ACTIONS(5766), + [aux_sym_boolean_literal_token2] = ACTIONS(5766), + [sym_nothing_literal] = ACTIONS(5766), + [sym_null_literal] = ACTIONS(5766), + [sym_empty_literal] = ACTIONS(5766), + [sym_date_literal] = ACTIONS(5768), + [anon_sym_POUND] = ACTIONS(5766), + }, + [STATE(2847)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_while_statement_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7395), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_BSLASH] = ACTIONS(7397), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7399), + [anon_sym_PLUS] = ACTIONS(7401), + [anon_sym_DASH] = ACTIONS(7403), + [anon_sym_AMP] = ACTIONS(7405), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2848)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2894), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(7616), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2849)] = { + [sym_identifier] = ACTIONS(5752), + [sym_newline] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5752), + [aux_sym_frm_property_statement_token1] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5752), + [anon_sym_BANG] = ACTIONS(5754), + [aux_sym__attribute_identifier_token1] = ACTIONS(5752), + [aux_sym_option_statement_token3] = ACTIONS(5752), + [aux_sym_type_declaration_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5752), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5752), + [aux_sym_enum_declaration_token1] = ACTIONS(5752), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5752), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5752), + [aux_sym_declare_function_statement_token1] = ACTIONS(5752), + [aux_sym_preprocessor_const_token1] = ACTIONS(5752), + [aux_sym__property_get_header_token1] = ACTIONS(5752), + [aux_sym_event_declaration_token1] = ACTIONS(5752), + [sym_static_modifier] = ACTIONS(5752), + [sym__dim_keyword] = ACTIONS(5752), + [sym__redim_keyword] = ACTIONS(5752), + [aux_sym_get_accessor_token1] = ACTIONS(5752), + [aux_sym_set_accessor_token1] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5754), + [aux_sym_const_declaration_token1] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [aux_sym_as_type_clause_token2] = ACTIONS(5752), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5752), + [aux_sym_visibility_token1] = ACTIONS(5752), + [aux_sym_visibility_token2] = ACTIONS(5752), + [aux_sym_elseif_fragment_token1] = ACTIONS(5752), + [aux_sym_else_fragment_token1] = ACTIONS(5752), + [aux_sym_select_statement_token1] = ACTIONS(5752), + [aux_sym__for_header_token1] = ACTIONS(5752), + [aux_sym_do_statement_token1] = ACTIONS(5752), + [aux_sym_do_condition_token1] = ACTIONS(5752), + [aux_sym_with_statement_token1] = ACTIONS(5752), + [aux_sym_exit_statement_token1] = ACTIONS(5752), + [sym_end_statement] = ACTIONS(5754), + [aux_sym_on_goto_statement_token1] = ACTIONS(5752), + [aux_sym_on_goto_statement_token2] = ACTIONS(5752), + [aux_sym_on_error_statement_token2] = ACTIONS(5752), + [sym__ambiguous_redim_statement] = ACTIONS(5754), + [aux_sym_erase_statement_token1] = ACTIONS(5752), + [aux_sym_open_statement_token1] = ACTIONS(5752), + [aux_sym_file_mode_token2] = ACTIONS(5752), + [aux_sym_file_access_token2] = ACTIONS(5752), + [aux_sym_file_lock_token2] = ACTIONS(5752), + [aux_sym_print_statement_token1] = ACTIONS(5752), + [anon_sym_PLUS] = ACTIONS(5754), + [anon_sym_DASH] = ACTIONS(5752), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7335), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7337), + [anon_sym_SEMI] = ACTIONS(5754), + [anon_sym_QMARK] = ACTIONS(5754), + [aux_sym_close_statement_token1] = ACTIONS(5752), + [aux_sym_put_statement_token1] = ACTIONS(5752), + [aux_sym_unlock_statement_token1] = ACTIONS(5752), + [aux_sym_seek_statement_token1] = ACTIONS(5752), + [sym_reset_statement] = ACTIONS(5752), + [aux_sym_raise_event_statement_token1] = ACTIONS(5752), + [sym_stop_statement] = ACTIONS(5752), + [sym_beep_statement] = ACTIONS(5752), + [aux_sym_unload_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token2] = ACTIONS(5752), + [aux_sym_def_type_statement_token3] = ACTIONS(5752), + [aux_sym_def_type_statement_token4] = ACTIONS(5752), + [aux_sym_def_type_statement_token5] = ACTIONS(5752), + [aux_sym_def_type_statement_token6] = ACTIONS(5752), + [aux_sym_def_type_statement_token7] = ACTIONS(5752), + [aux_sym_def_type_statement_token8] = ACTIONS(5752), + [aux_sym_def_type_statement_token9] = ACTIONS(5752), + [aux_sym_def_type_statement_token10] = ACTIONS(5752), + [aux_sym_def_type_statement_token11] = ACTIONS(5752), + [aux_sym_def_type_statement_token12] = ACTIONS(5752), + [aux_sym_def_type_statement_token13] = ACTIONS(5752), + [aux_sym_def_type_statement_token14] = ACTIONS(5752), + [aux_sym_call_statement_token1] = ACTIONS(5752), + [sym__ambiguous_call_statement] = ACTIONS(5752), + [aux_sym_addressof_expression_token1] = ACTIONS(5752), + [aux_sym_type_of_expression_token1] = ACTIONS(5752), + [aux_sym_unary_expression_token1] = ACTIONS(5752), + [sym_string_literal] = ACTIONS(5754), + [sym_number_literal] = ACTIONS(5754), + [aux_sym_boolean_literal_token1] = ACTIONS(5752), + [aux_sym_boolean_literal_token2] = ACTIONS(5752), + [sym_nothing_literal] = ACTIONS(5752), + [sym_null_literal] = ACTIONS(5752), + [sym_empty_literal] = ACTIONS(5752), + [sym_date_literal] = ACTIONS(5754), + [anon_sym_POUND] = ACTIONS(5752), + }, + [STATE(2850)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_select_statement_token2] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7482), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2851)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7480), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_select_statement_token2] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7482), + [anon_sym_SLASH] = ACTIONS(7480), + [anon_sym_BSLASH] = ACTIONS(7484), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7486), + [anon_sym_PLUS] = ACTIONS(7488), + [anon_sym_DASH] = ACTIONS(7490), + [anon_sym_AMP] = ACTIONS(7492), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7494), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7496), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7498), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7500), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7502), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2852)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7482), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2853)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7482), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2854)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7480), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7482), + [anon_sym_SLASH] = ACTIONS(7480), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2855)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7480), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7482), + [anon_sym_SLASH] = ACTIONS(7480), + [anon_sym_BSLASH] = ACTIONS(7484), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2856)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7480), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7482), + [anon_sym_SLASH] = ACTIONS(7480), + [anon_sym_BSLASH] = ACTIONS(7484), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7486), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2857)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7480), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7482), + [anon_sym_SLASH] = ACTIONS(7480), + [anon_sym_BSLASH] = ACTIONS(7484), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7486), + [anon_sym_PLUS] = ACTIONS(7488), + [anon_sym_DASH] = ACTIONS(7490), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2858)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7480), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7482), + [anon_sym_SLASH] = ACTIONS(7480), + [anon_sym_BSLASH] = ACTIONS(7484), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7486), + [anon_sym_PLUS] = ACTIONS(7488), + [anon_sym_DASH] = ACTIONS(7490), + [anon_sym_AMP] = ACTIONS(7492), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2859)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7480), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7482), + [anon_sym_SLASH] = ACTIONS(7480), + [anon_sym_BSLASH] = ACTIONS(7484), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7486), + [anon_sym_PLUS] = ACTIONS(7488), + [anon_sym_DASH] = ACTIONS(7490), + [anon_sym_AMP] = ACTIONS(7492), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7494), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2860)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7480), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7482), + [anon_sym_SLASH] = ACTIONS(7480), + [anon_sym_BSLASH] = ACTIONS(7484), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7486), + [anon_sym_PLUS] = ACTIONS(7488), + [anon_sym_DASH] = ACTIONS(7490), + [anon_sym_AMP] = ACTIONS(7492), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7494), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7496), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2861)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7480), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7482), + [anon_sym_SLASH] = ACTIONS(7480), + [anon_sym_BSLASH] = ACTIONS(7484), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7486), + [anon_sym_PLUS] = ACTIONS(7488), + [anon_sym_DASH] = ACTIONS(7490), + [anon_sym_AMP] = ACTIONS(7492), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7494), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7496), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7498), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2862)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7480), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7482), + [anon_sym_SLASH] = ACTIONS(7480), + [anon_sym_BSLASH] = ACTIONS(7484), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7486), + [anon_sym_PLUS] = ACTIONS(7488), + [anon_sym_DASH] = ACTIONS(7490), + [anon_sym_AMP] = ACTIONS(7492), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7494), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7496), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7498), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7500), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2863)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2864)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7339), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(7339), + [anon_sym_BSLASH] = ACTIONS(7343), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7345), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(7351), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7353), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7355), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7357), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7359), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7361), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2865)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2866)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2867)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7339), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(7339), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2868)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7339), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(7339), + [anon_sym_BSLASH] = ACTIONS(7343), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2869)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7339), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(7339), + [anon_sym_BSLASH] = ACTIONS(7343), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7345), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2870)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7339), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(7339), + [anon_sym_BSLASH] = ACTIONS(7343), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7345), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2871)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7339), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(7339), + [anon_sym_BSLASH] = ACTIONS(7343), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7345), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(7351), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2872)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7339), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(7339), + [anon_sym_BSLASH] = ACTIONS(7343), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7345), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(7351), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7353), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2873)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7339), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(7339), + [anon_sym_BSLASH] = ACTIONS(7343), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7345), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(7351), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7353), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7355), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2874)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7339), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(7339), + [anon_sym_BSLASH] = ACTIONS(7343), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7345), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(7351), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7353), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7355), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7357), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2875)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7339), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(7339), + [anon_sym_BSLASH] = ACTIONS(7343), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7345), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(7351), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7353), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7355), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7357), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7359), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(2876)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7480), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_select_statement_token2] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7482), + [anon_sym_SLASH] = ACTIONS(7480), + [anon_sym_BSLASH] = ACTIONS(7484), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7486), + [anon_sym_PLUS] = ACTIONS(7488), + [anon_sym_DASH] = ACTIONS(7490), + [anon_sym_AMP] = ACTIONS(7492), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2877)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7339), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_SLASH] = ACTIONS(7339), + [anon_sym_BSLASH] = ACTIONS(7343), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7345), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(7351), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2878)] = { + [sym_char_position] = STATE(7510), + [aux_sym_output_list_repeat1] = STATE(2878), + [sym_identifier] = ACTIONS(7618), + [sym_newline] = ACTIONS(7620), + [anon_sym_COLON] = ACTIONS(7620), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7618), + [aux_sym_frm_property_statement_token1] = ACTIONS(7618), + [anon_sym_DOT] = ACTIONS(7618), + [anon_sym_BANG] = ACTIONS(7620), + [aux_sym__attribute_identifier_token1] = ACTIONS(7618), + [aux_sym_option_statement_token3] = ACTIONS(7618), + [aux_sym_type_declaration_token1] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7618), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7618), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7618), + [aux_sym_enum_declaration_token1] = ACTIONS(7618), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7618), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7618), + [aux_sym_declare_function_statement_token1] = ACTIONS(7618), + [aux_sym_preprocessor_const_token1] = ACTIONS(7618), + [aux_sym__property_get_header_token1] = ACTIONS(7618), + [aux_sym_event_declaration_token1] = ACTIONS(7618), + [sym_static_modifier] = ACTIONS(7618), + [sym__dim_keyword] = ACTIONS(7618), + [sym__redim_keyword] = ACTIONS(7618), + [aux_sym_get_accessor_token1] = ACTIONS(7618), + [aux_sym_set_accessor_token1] = ACTIONS(7618), + [anon_sym_COMMA] = ACTIONS(7622), + [aux_sym_const_declaration_token1] = ACTIONS(7618), + [anon_sym_LPAREN] = ACTIONS(7620), + [aux_sym_as_type_clause_token2] = ACTIONS(7618), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7618), + [aux_sym_visibility_token1] = ACTIONS(7618), + [aux_sym_visibility_token2] = ACTIONS(7618), + [aux_sym_elseif_fragment_token1] = ACTIONS(7618), + [aux_sym_else_fragment_token1] = ACTIONS(7618), + [aux_sym_select_statement_token1] = ACTIONS(7618), + [aux_sym__for_header_token1] = ACTIONS(7618), + [aux_sym_do_statement_token1] = ACTIONS(7618), + [aux_sym_do_condition_token1] = ACTIONS(7618), + [aux_sym_with_statement_token1] = ACTIONS(7618), + [aux_sym_exit_statement_token1] = ACTIONS(7618), + [sym_end_statement] = ACTIONS(7620), + [aux_sym_on_goto_statement_token1] = ACTIONS(7618), + [aux_sym_on_goto_statement_token2] = ACTIONS(7618), + [aux_sym_on_error_statement_token2] = ACTIONS(7618), + [sym__ambiguous_redim_statement] = ACTIONS(7620), + [aux_sym_erase_statement_token1] = ACTIONS(7618), + [aux_sym_open_statement_token1] = ACTIONS(7618), + [aux_sym_file_mode_token2] = ACTIONS(7618), + [aux_sym_file_access_token2] = ACTIONS(7618), + [aux_sym_file_lock_token2] = ACTIONS(7618), + [aux_sym_print_statement_token1] = ACTIONS(7618), + [anon_sym_PLUS] = ACTIONS(7620), + [anon_sym_DASH] = ACTIONS(7618), + [anon_sym_SEMI] = ACTIONS(7622), + [anon_sym_QMARK] = ACTIONS(7620), + [aux_sym_close_statement_token1] = ACTIONS(7618), + [aux_sym_put_statement_token1] = ACTIONS(7618), + [aux_sym_unlock_statement_token1] = ACTIONS(7618), + [aux_sym_seek_statement_token1] = ACTIONS(7618), + [sym_reset_statement] = ACTIONS(7618), + [aux_sym_raise_event_statement_token1] = ACTIONS(7618), + [sym_stop_statement] = ACTIONS(7618), + [sym_beep_statement] = ACTIONS(7618), + [aux_sym_unload_statement_token1] = ACTIONS(7618), + [aux_sym_def_type_statement_token1] = ACTIONS(7618), + [aux_sym_def_type_statement_token2] = ACTIONS(7618), + [aux_sym_def_type_statement_token3] = ACTIONS(7618), + [aux_sym_def_type_statement_token4] = ACTIONS(7618), + [aux_sym_def_type_statement_token5] = ACTIONS(7618), + [aux_sym_def_type_statement_token6] = ACTIONS(7618), + [aux_sym_def_type_statement_token7] = ACTIONS(7618), + [aux_sym_def_type_statement_token8] = ACTIONS(7618), + [aux_sym_def_type_statement_token9] = ACTIONS(7618), + [aux_sym_def_type_statement_token10] = ACTIONS(7618), + [aux_sym_def_type_statement_token11] = ACTIONS(7618), + [aux_sym_def_type_statement_token12] = ACTIONS(7618), + [aux_sym_def_type_statement_token13] = ACTIONS(7618), + [aux_sym_def_type_statement_token14] = ACTIONS(7618), + [aux_sym_call_statement_token1] = ACTIONS(7618), + [sym__ambiguous_call_statement] = ACTIONS(7618), + [aux_sym_addressof_expression_token1] = ACTIONS(7618), + [aux_sym_type_of_expression_token1] = ACTIONS(7618), + [aux_sym_unary_expression_token1] = ACTIONS(7618), + [sym_string_literal] = ACTIONS(7620), + [sym_number_literal] = ACTIONS(7620), + [aux_sym_boolean_literal_token1] = ACTIONS(7618), + [aux_sym_boolean_literal_token2] = ACTIONS(7618), + [sym_nothing_literal] = ACTIONS(7618), + [sym_null_literal] = ACTIONS(7618), + [sym_empty_literal] = ACTIONS(7618), + [sym_date_literal] = ACTIONS(7620), + [anon_sym_POUND] = ACTIONS(7618), + }, + [STATE(2879)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2880)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2881)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_statement_token2] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2882)] = { + [sym_identifier] = ACTIONS(5766), + [sym_newline] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5766), + [aux_sym_frm_property_statement_token1] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5766), + [anon_sym_BANG] = ACTIONS(5768), + [aux_sym__attribute_identifier_token1] = ACTIONS(5766), + [aux_sym_option_statement_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5766), + [aux_sym_preprocessor_const_token1] = ACTIONS(5766), + [sym_static_modifier] = ACTIONS(5766), + [sym__dim_keyword] = ACTIONS(5766), + [sym__redim_keyword] = ACTIONS(5766), + [aux_sym_get_accessor_token1] = ACTIONS(5766), + [aux_sym_set_accessor_token1] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [aux_sym_const_declaration_token1] = ACTIONS(5766), + [anon_sym_LPAREN] = ACTIONS(5768), + [aux_sym_as_type_clause_token2] = ACTIONS(5766), + [anon_sym_STAR] = ACTIONS(5768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5766), + [aux_sym_visibility_token1] = ACTIONS(5766), + [aux_sym_visibility_token2] = ACTIONS(5766), + [aux_sym_elseif_fragment_token1] = ACTIONS(5766), + [aux_sym_else_fragment_token1] = ACTIONS(5766), + [aux_sym_select_statement_token1] = ACTIONS(5766), + [aux_sym__for_header_token1] = ACTIONS(5766), + [aux_sym_do_statement_token1] = ACTIONS(5766), + [aux_sym_do_condition_token1] = ACTIONS(5766), + [aux_sym_while_statement_token1] = ACTIONS(5766), + [aux_sym_with_statement_token1] = ACTIONS(5766), + [aux_sym_exit_statement_token1] = ACTIONS(5766), + [sym_end_statement] = ACTIONS(5768), + [aux_sym_on_goto_statement_token1] = ACTIONS(5766), + [aux_sym_on_goto_statement_token2] = ACTIONS(5766), + [aux_sym_on_error_statement_token2] = ACTIONS(5766), + [sym__ambiguous_redim_statement] = ACTIONS(5768), + [aux_sym_erase_statement_token1] = ACTIONS(5766), + [aux_sym_open_statement_token1] = ACTIONS(5766), + [aux_sym_file_mode_token2] = ACTIONS(5766), + [aux_sym_file_access_token2] = ACTIONS(5766), + [aux_sym_file_lock_token2] = ACTIONS(5766), + [aux_sym_print_statement_token1] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_BSLASH] = ACTIONS(5768), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5766), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5768), + [aux_sym_close_statement_token1] = ACTIONS(5766), + [aux_sym_put_statement_token1] = ACTIONS(5766), + [aux_sym_unlock_statement_token1] = ACTIONS(5766), + [aux_sym_seek_statement_token1] = ACTIONS(5766), + [sym_reset_statement] = ACTIONS(5766), + [aux_sym_raise_event_statement_token1] = ACTIONS(5766), + [sym_stop_statement] = ACTIONS(5766), + [sym_beep_statement] = ACTIONS(5766), + [aux_sym_unload_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token2] = ACTIONS(5766), + [aux_sym_def_type_statement_token3] = ACTIONS(5766), + [aux_sym_def_type_statement_token4] = ACTIONS(5766), + [aux_sym_def_type_statement_token5] = ACTIONS(5766), + [aux_sym_def_type_statement_token6] = ACTIONS(5766), + [aux_sym_def_type_statement_token7] = ACTIONS(5766), + [aux_sym_def_type_statement_token8] = ACTIONS(5766), + [aux_sym_def_type_statement_token9] = ACTIONS(5766), + [aux_sym_def_type_statement_token10] = ACTIONS(5766), + [aux_sym_def_type_statement_token11] = ACTIONS(5766), + [aux_sym_def_type_statement_token12] = ACTIONS(5766), + [aux_sym_def_type_statement_token13] = ACTIONS(5766), + [aux_sym_def_type_statement_token14] = ACTIONS(5766), + [aux_sym_call_statement_token1] = ACTIONS(5766), + [sym__ambiguous_call_statement] = ACTIONS(5766), + [aux_sym_addressof_expression_token1] = ACTIONS(5766), + [aux_sym_type_of_expression_token1] = ACTIONS(5766), + [aux_sym_unary_expression_token1] = ACTIONS(5766), + [sym_string_literal] = ACTIONS(5768), + [sym_number_literal] = ACTIONS(5768), + [aux_sym_boolean_literal_token1] = ACTIONS(5766), + [aux_sym_boolean_literal_token2] = ACTIONS(5766), + [sym_nothing_literal] = ACTIONS(5766), + [sym_null_literal] = ACTIONS(5766), + [sym_empty_literal] = ACTIONS(5766), + [sym_date_literal] = ACTIONS(5768), + [anon_sym_POUND] = ACTIONS(5766), + }, + [STATE(2883)] = { + [sym_argument_list] = STATE(2960), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7625), + [anon_sym_BANG] = ACTIONS(7627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(7629), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_while_statement_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2884)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_statement_token2] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2885)] = { + [sym_char_position] = STATE(358), + [aux_sym_output_list_repeat1] = STATE(2840), + [sym_identifier] = ACTIONS(7631), + [sym_newline] = ACTIONS(7633), + [anon_sym_COLON] = ACTIONS(7633), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7631), + [aux_sym_frm_property_statement_token1] = ACTIONS(7631), + [anon_sym_DOT] = ACTIONS(7631), + [anon_sym_BANG] = ACTIONS(7633), + [aux_sym__attribute_identifier_token1] = ACTIONS(7631), + [aux_sym_option_statement_token3] = ACTIONS(7631), + [aux_sym_type_declaration_token1] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7631), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7631), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7631), + [aux_sym_enum_declaration_token1] = ACTIONS(7631), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7631), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7631), + [aux_sym_declare_function_statement_token1] = ACTIONS(7631), + [aux_sym_preprocessor_const_token1] = ACTIONS(7631), + [aux_sym__property_get_header_token1] = ACTIONS(7631), + [aux_sym_event_declaration_token1] = ACTIONS(7631), + [sym_static_modifier] = ACTIONS(7631), + [sym__dim_keyword] = ACTIONS(7631), + [sym__redim_keyword] = ACTIONS(7631), + [aux_sym_get_accessor_token1] = ACTIONS(7631), + [aux_sym_set_accessor_token1] = ACTIONS(7631), + [anon_sym_COMMA] = ACTIONS(7464), + [aux_sym_const_declaration_token1] = ACTIONS(7631), + [anon_sym_LPAREN] = ACTIONS(7633), + [aux_sym_as_type_clause_token2] = ACTIONS(7631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7631), + [aux_sym_visibility_token1] = ACTIONS(7631), + [aux_sym_visibility_token2] = ACTIONS(7631), + [aux_sym_elseif_fragment_token1] = ACTIONS(7631), + [aux_sym_else_fragment_token1] = ACTIONS(7631), + [aux_sym_select_statement_token1] = ACTIONS(7631), + [aux_sym__for_header_token1] = ACTIONS(7631), + [aux_sym_do_statement_token1] = ACTIONS(7631), + [aux_sym_do_condition_token1] = ACTIONS(7631), + [aux_sym_with_statement_token1] = ACTIONS(7631), + [aux_sym_exit_statement_token1] = ACTIONS(7631), + [sym_end_statement] = ACTIONS(7633), + [aux_sym_on_goto_statement_token1] = ACTIONS(7631), + [aux_sym_on_goto_statement_token2] = ACTIONS(7631), + [aux_sym_on_error_statement_token2] = ACTIONS(7631), + [sym__ambiguous_redim_statement] = ACTIONS(7633), + [aux_sym_erase_statement_token1] = ACTIONS(7631), + [aux_sym_open_statement_token1] = ACTIONS(7631), + [aux_sym_file_mode_token2] = ACTIONS(7631), + [aux_sym_file_access_token2] = ACTIONS(7631), + [aux_sym_file_lock_token2] = ACTIONS(7631), + [aux_sym_print_statement_token1] = ACTIONS(7631), + [anon_sym_PLUS] = ACTIONS(7633), + [anon_sym_DASH] = ACTIONS(7631), + [anon_sym_SEMI] = ACTIONS(7464), + [anon_sym_QMARK] = ACTIONS(7633), + [aux_sym_close_statement_token1] = ACTIONS(7631), + [aux_sym_put_statement_token1] = ACTIONS(7631), + [aux_sym_unlock_statement_token1] = ACTIONS(7631), + [aux_sym_seek_statement_token1] = ACTIONS(7631), + [sym_reset_statement] = ACTIONS(7631), + [aux_sym_raise_event_statement_token1] = ACTIONS(7631), + [sym_stop_statement] = ACTIONS(7631), + [sym_beep_statement] = ACTIONS(7631), + [aux_sym_unload_statement_token1] = ACTIONS(7631), + [aux_sym_def_type_statement_token1] = ACTIONS(7631), + [aux_sym_def_type_statement_token2] = ACTIONS(7631), + [aux_sym_def_type_statement_token3] = ACTIONS(7631), + [aux_sym_def_type_statement_token4] = ACTIONS(7631), + [aux_sym_def_type_statement_token5] = ACTIONS(7631), + [aux_sym_def_type_statement_token6] = ACTIONS(7631), + [aux_sym_def_type_statement_token7] = ACTIONS(7631), + [aux_sym_def_type_statement_token8] = ACTIONS(7631), + [aux_sym_def_type_statement_token9] = ACTIONS(7631), + [aux_sym_def_type_statement_token10] = ACTIONS(7631), + [aux_sym_def_type_statement_token11] = ACTIONS(7631), + [aux_sym_def_type_statement_token12] = ACTIONS(7631), + [aux_sym_def_type_statement_token13] = ACTIONS(7631), + [aux_sym_def_type_statement_token14] = ACTIONS(7631), + [aux_sym_call_statement_token1] = ACTIONS(7631), + [sym__ambiguous_call_statement] = ACTIONS(7631), + [aux_sym_addressof_expression_token1] = ACTIONS(7631), + [aux_sym_type_of_expression_token1] = ACTIONS(7631), + [aux_sym_unary_expression_token1] = ACTIONS(7631), + [sym_string_literal] = ACTIONS(7633), + [sym_number_literal] = ACTIONS(7633), + [aux_sym_boolean_literal_token1] = ACTIONS(7631), + [aux_sym_boolean_literal_token2] = ACTIONS(7631), + [sym_nothing_literal] = ACTIONS(7631), + [sym_null_literal] = ACTIONS(7631), + [sym_empty_literal] = ACTIONS(7631), + [sym_date_literal] = ACTIONS(7633), + [anon_sym_POUND] = ACTIONS(7631), + }, + [STATE(2886)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2887)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym_select_statement_token2] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2888)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2889)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_select_statement_token2] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2890)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym_select_statement_token2] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2891)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2891), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(7635), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_statement_token2] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2892)] = { + [sym_argument_list] = STATE(2535), + [sym_identifier] = ACTIONS(4030), + [sym_newline] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4030), + [aux_sym_frm_property_statement_token1] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(7132), + [anon_sym_BANG] = ACTIONS(7020), + [aux_sym__attribute_identifier_token1] = ACTIONS(4030), + [aux_sym_option_statement_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4030), + [aux_sym_preprocessor_const_token1] = ACTIONS(4030), + [sym_static_modifier] = ACTIONS(4030), + [sym__dim_keyword] = ACTIONS(4030), + [sym__redim_keyword] = ACTIONS(4030), + [aux_sym_get_accessor_token1] = ACTIONS(4030), + [aux_sym_set_accessor_token1] = ACTIONS(4030), + [aux_sym_const_declaration_token1] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(5550), + [aux_sym_as_type_clause_token2] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4030), + [aux_sym_visibility_token1] = ACTIONS(4030), + [aux_sym_visibility_token2] = ACTIONS(4030), + [aux_sym_elseif_fragment_token1] = ACTIONS(4030), + [aux_sym_else_fragment_token1] = ACTIONS(4030), + [aux_sym_select_statement_token1] = ACTIONS(4030), + [aux_sym_select_statement_token2] = ACTIONS(4030), + [aux_sym__for_header_token1] = ACTIONS(4030), + [aux_sym_do_statement_token1] = ACTIONS(4030), + [aux_sym_do_condition_token1] = ACTIONS(4030), + [aux_sym_with_statement_token1] = ACTIONS(4030), + [aux_sym_exit_statement_token1] = ACTIONS(4030), + [sym_end_statement] = ACTIONS(4028), + [aux_sym_on_goto_statement_token1] = ACTIONS(4030), + [aux_sym_on_goto_statement_token2] = ACTIONS(4030), + [aux_sym_on_error_statement_token2] = ACTIONS(4030), + [sym__ambiguous_redim_statement] = ACTIONS(4028), + [aux_sym_erase_statement_token1] = ACTIONS(4030), + [aux_sym_open_statement_token1] = ACTIONS(4030), + [aux_sym_file_mode_token2] = ACTIONS(4030), + [aux_sym_file_access_token2] = ACTIONS(4030), + [aux_sym_file_lock_token2] = ACTIONS(4030), + [aux_sym_print_statement_token1] = ACTIONS(4030), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4028), + [aux_sym_close_statement_token1] = ACTIONS(4030), + [aux_sym_put_statement_token1] = ACTIONS(4030), + [aux_sym_unlock_statement_token1] = ACTIONS(4030), + [aux_sym_seek_statement_token1] = ACTIONS(4030), + [sym_reset_statement] = ACTIONS(4030), + [aux_sym_raise_event_statement_token1] = ACTIONS(4030), + [sym_stop_statement] = ACTIONS(4030), + [sym_beep_statement] = ACTIONS(4030), + [aux_sym_unload_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token2] = ACTIONS(4030), + [aux_sym_def_type_statement_token3] = ACTIONS(4030), + [aux_sym_def_type_statement_token4] = ACTIONS(4030), + [aux_sym_def_type_statement_token5] = ACTIONS(4030), + [aux_sym_def_type_statement_token6] = ACTIONS(4030), + [aux_sym_def_type_statement_token7] = ACTIONS(4030), + [aux_sym_def_type_statement_token8] = ACTIONS(4030), + [aux_sym_def_type_statement_token9] = ACTIONS(4030), + [aux_sym_def_type_statement_token10] = ACTIONS(4030), + [aux_sym_def_type_statement_token11] = ACTIONS(4030), + [aux_sym_def_type_statement_token12] = ACTIONS(4030), + [aux_sym_def_type_statement_token13] = ACTIONS(4030), + [aux_sym_def_type_statement_token14] = ACTIONS(4030), + [aux_sym_call_statement_token1] = ACTIONS(4030), + [sym__ambiguous_call_statement] = ACTIONS(4030), + [aux_sym_addressof_expression_token1] = ACTIONS(4030), + [aux_sym_type_of_expression_token1] = ACTIONS(4030), + [aux_sym_unary_expression_token1] = ACTIONS(4030), + [sym_string_literal] = ACTIONS(4028), + [sym_number_literal] = ACTIONS(4028), + [aux_sym_boolean_literal_token1] = ACTIONS(4030), + [aux_sym_boolean_literal_token2] = ACTIONS(4030), + [sym_nothing_literal] = ACTIONS(4030), + [sym_null_literal] = ACTIONS(4030), + [sym_empty_literal] = ACTIONS(4030), + [sym_date_literal] = ACTIONS(4028), + [anon_sym_POUND] = ACTIONS(4030), + }, + [STATE(2893)] = { + [sym_identifier] = ACTIONS(5716), + [sym_newline] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5716), + [aux_sym_frm_property_statement_token1] = ACTIONS(5716), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_BANG] = ACTIONS(5718), + [aux_sym__attribute_identifier_token1] = ACTIONS(5716), + [aux_sym_option_statement_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5716), + [aux_sym_preprocessor_const_token1] = ACTIONS(5716), + [sym_static_modifier] = ACTIONS(5716), + [sym__dim_keyword] = ACTIONS(5716), + [sym__redim_keyword] = ACTIONS(5716), + [aux_sym_get_accessor_token1] = ACTIONS(5716), + [aux_sym_set_accessor_token1] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5718), + [aux_sym_const_declaration_token1] = ACTIONS(5716), + [anon_sym_LPAREN] = ACTIONS(5718), + [aux_sym_as_type_clause_token2] = ACTIONS(5716), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5716), + [aux_sym_visibility_token1] = ACTIONS(5716), + [aux_sym_visibility_token2] = ACTIONS(5716), + [aux_sym_elseif_fragment_token1] = ACTIONS(5716), + [aux_sym_else_fragment_token1] = ACTIONS(5716), + [aux_sym_select_statement_token1] = ACTIONS(5716), + [aux_sym__for_header_token1] = ACTIONS(5716), + [aux_sym_do_statement_token1] = ACTIONS(5716), + [aux_sym_do_condition_token1] = ACTIONS(5716), + [aux_sym_while_statement_token1] = ACTIONS(5716), + [aux_sym_with_statement_token1] = ACTIONS(5716), + [aux_sym_exit_statement_token1] = ACTIONS(5716), + [sym_end_statement] = ACTIONS(5718), + [aux_sym_on_goto_statement_token1] = ACTIONS(5716), + [aux_sym_on_goto_statement_token2] = ACTIONS(5716), + [aux_sym_on_error_statement_token2] = ACTIONS(5716), + [sym__ambiguous_redim_statement] = ACTIONS(5718), + [aux_sym_erase_statement_token1] = ACTIONS(5716), + [aux_sym_open_statement_token1] = ACTIONS(5716), + [aux_sym_file_mode_token2] = ACTIONS(5716), + [aux_sym_file_access_token2] = ACTIONS(5716), + [aux_sym_file_lock_token2] = ACTIONS(5716), + [aux_sym_print_statement_token1] = ACTIONS(5716), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5960), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5962), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5964), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5966), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5968), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [aux_sym_close_statement_token1] = ACTIONS(5716), + [aux_sym_put_statement_token1] = ACTIONS(5716), + [aux_sym_unlock_statement_token1] = ACTIONS(5716), + [aux_sym_seek_statement_token1] = ACTIONS(5716), + [sym_reset_statement] = ACTIONS(5716), + [aux_sym_raise_event_statement_token1] = ACTIONS(5716), + [sym_stop_statement] = ACTIONS(5716), + [sym_beep_statement] = ACTIONS(5716), + [aux_sym_unload_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token2] = ACTIONS(5716), + [aux_sym_def_type_statement_token3] = ACTIONS(5716), + [aux_sym_def_type_statement_token4] = ACTIONS(5716), + [aux_sym_def_type_statement_token5] = ACTIONS(5716), + [aux_sym_def_type_statement_token6] = ACTIONS(5716), + [aux_sym_def_type_statement_token7] = ACTIONS(5716), + [aux_sym_def_type_statement_token8] = ACTIONS(5716), + [aux_sym_def_type_statement_token9] = ACTIONS(5716), + [aux_sym_def_type_statement_token10] = ACTIONS(5716), + [aux_sym_def_type_statement_token11] = ACTIONS(5716), + [aux_sym_def_type_statement_token12] = ACTIONS(5716), + [aux_sym_def_type_statement_token13] = ACTIONS(5716), + [aux_sym_def_type_statement_token14] = ACTIONS(5716), + [aux_sym_call_statement_token1] = ACTIONS(5716), + [sym__ambiguous_call_statement] = ACTIONS(5716), + [aux_sym_addressof_expression_token1] = ACTIONS(5716), + [aux_sym_type_of_expression_token1] = ACTIONS(5716), + [aux_sym_unary_expression_token1] = ACTIONS(5716), + [sym_string_literal] = ACTIONS(5718), + [sym_number_literal] = ACTIONS(5718), + [aux_sym_boolean_literal_token1] = ACTIONS(5716), + [aux_sym_boolean_literal_token2] = ACTIONS(5716), + [sym_nothing_literal] = ACTIONS(5716), + [sym_null_literal] = ACTIONS(5716), + [sym_empty_literal] = ACTIONS(5716), + [sym_date_literal] = ACTIONS(5718), + [anon_sym_POUND] = ACTIONS(5716), + }, + [STATE(2894)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2900), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token3] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2895)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2553), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(7638), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2896)] = { + [sym_identifier] = ACTIONS(5766), + [sym_newline] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5766), + [aux_sym_frm_property_statement_token1] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5766), + [anon_sym_BANG] = ACTIONS(5768), + [aux_sym__attribute_identifier_token1] = ACTIONS(5766), + [aux_sym_option_statement_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5766), + [aux_sym_preprocessor_const_token1] = ACTIONS(5766), + [sym_static_modifier] = ACTIONS(5766), + [sym__dim_keyword] = ACTIONS(5766), + [sym__redim_keyword] = ACTIONS(5766), + [aux_sym_get_accessor_token1] = ACTIONS(5766), + [aux_sym_set_accessor_token1] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [aux_sym_const_declaration_token1] = ACTIONS(5766), + [anon_sym_LPAREN] = ACTIONS(5768), + [aux_sym_as_type_clause_token2] = ACTIONS(5766), + [anon_sym_STAR] = ACTIONS(5768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5766), + [aux_sym_visibility_token1] = ACTIONS(5766), + [aux_sym_visibility_token2] = ACTIONS(5766), + [aux_sym_elseif_fragment_token1] = ACTIONS(5766), + [aux_sym_else_fragment_token1] = ACTIONS(5766), + [aux_sym_select_statement_token1] = ACTIONS(5766), + [aux_sym__for_header_token1] = ACTIONS(5766), + [aux_sym_do_statement_token1] = ACTIONS(5766), + [aux_sym_do_condition_token1] = ACTIONS(5766), + [aux_sym_with_statement_token1] = ACTIONS(5766), + [aux_sym_exit_statement_token1] = ACTIONS(5766), + [sym_end_statement] = ACTIONS(5768), + [aux_sym_on_goto_statement_token1] = ACTIONS(5766), + [aux_sym_on_goto_statement_token2] = ACTIONS(5766), + [aux_sym_on_error_statement_token2] = ACTIONS(5766), + [sym__ambiguous_redim_statement] = ACTIONS(5768), + [aux_sym_erase_statement_token1] = ACTIONS(5766), + [aux_sym_open_statement_token1] = ACTIONS(5766), + [aux_sym_file_mode_token2] = ACTIONS(5766), + [aux_sym_file_access_token2] = ACTIONS(5766), + [aux_sym_file_lock_token2] = ACTIONS(5766), + [aux_sym_print_statement_token1] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_BSLASH] = ACTIONS(5768), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5766), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5768), + [aux_sym_close_statement_token1] = ACTIONS(5766), + [aux_sym_put_statement_token1] = ACTIONS(5766), + [aux_sym_unlock_statement_token1] = ACTIONS(5766), + [aux_sym_seek_statement_token1] = ACTIONS(5766), + [sym_reset_statement] = ACTIONS(5766), + [aux_sym_raise_event_statement_token1] = ACTIONS(5766), + [sym_stop_statement] = ACTIONS(5766), + [sym_beep_statement] = ACTIONS(5766), + [aux_sym_unload_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token2] = ACTIONS(5766), + [aux_sym_def_type_statement_token3] = ACTIONS(5766), + [aux_sym_def_type_statement_token4] = ACTIONS(5766), + [aux_sym_def_type_statement_token5] = ACTIONS(5766), + [aux_sym_def_type_statement_token6] = ACTIONS(5766), + [aux_sym_def_type_statement_token7] = ACTIONS(5766), + [aux_sym_def_type_statement_token8] = ACTIONS(5766), + [aux_sym_def_type_statement_token9] = ACTIONS(5766), + [aux_sym_def_type_statement_token10] = ACTIONS(5766), + [aux_sym_def_type_statement_token11] = ACTIONS(5766), + [aux_sym_def_type_statement_token12] = ACTIONS(5766), + [aux_sym_def_type_statement_token13] = ACTIONS(5766), + [aux_sym_def_type_statement_token14] = ACTIONS(5766), + [aux_sym_call_statement_token1] = ACTIONS(5766), + [sym__ambiguous_call_statement] = ACTIONS(5766), + [aux_sym_addressof_expression_token1] = ACTIONS(5766), + [aux_sym_type_of_expression_token1] = ACTIONS(5766), + [aux_sym_unary_expression_token1] = ACTIONS(5766), + [sym_string_literal] = ACTIONS(5768), + [sym_number_literal] = ACTIONS(5768), + [aux_sym_boolean_literal_token1] = ACTIONS(5766), + [aux_sym_boolean_literal_token2] = ACTIONS(5766), + [sym_nothing_literal] = ACTIONS(5766), + [sym_null_literal] = ACTIONS(5766), + [sym_empty_literal] = ACTIONS(5766), + [sym_date_literal] = ACTIONS(5768), + [anon_sym_POUND] = ACTIONS(5766), + }, + [STATE(2897)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4412), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4412), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_statement_token2] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(5635), + [anon_sym_DASH] = ACTIONS(5638), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(2898)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(2899)] = { + [sym_identifier] = ACTIONS(7640), + [sym_newline] = ACTIONS(7642), + [anon_sym_COLON] = ACTIONS(7642), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7640), + [aux_sym_frm_property_statement_token1] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7640), + [anon_sym_BANG] = ACTIONS(7642), + [aux_sym__attribute_identifier_token1] = ACTIONS(7640), + [aux_sym_option_statement_token3] = ACTIONS(7640), + [aux_sym_type_declaration_token1] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7640), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7640), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7640), + [aux_sym_enum_declaration_token1] = ACTIONS(7640), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7640), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7640), + [aux_sym_declare_function_statement_token1] = ACTIONS(7640), + [aux_sym_preprocessor_const_token1] = ACTIONS(7640), + [aux_sym__property_get_header_token1] = ACTIONS(7640), + [aux_sym_event_declaration_token1] = ACTIONS(7640), + [sym_static_modifier] = ACTIONS(7640), + [sym__dim_keyword] = ACTIONS(7640), + [sym__redim_keyword] = ACTIONS(7640), + [aux_sym_get_accessor_token1] = ACTIONS(7640), + [aux_sym_set_accessor_token1] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7642), + [aux_sym_const_declaration_token1] = ACTIONS(7640), + [anon_sym_LPAREN] = ACTIONS(7642), + [aux_sym_as_type_clause_token2] = ACTIONS(7640), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7640), + [aux_sym_visibility_token1] = ACTIONS(7640), + [aux_sym_visibility_token2] = ACTIONS(7640), + [aux_sym_elseif_fragment_token1] = ACTIONS(7640), + [aux_sym_else_fragment_token1] = ACTIONS(7640), + [aux_sym_select_statement_token1] = ACTIONS(7640), + [aux_sym__for_header_token1] = ACTIONS(7640), + [aux_sym_do_statement_token1] = ACTIONS(7640), + [aux_sym_do_condition_token1] = ACTIONS(7640), + [aux_sym_with_statement_token1] = ACTIONS(7640), + [aux_sym_exit_statement_token1] = ACTIONS(7640), + [sym_end_statement] = ACTIONS(7642), + [aux_sym_on_goto_statement_token1] = ACTIONS(7640), + [aux_sym_on_goto_statement_token2] = ACTIONS(7640), + [aux_sym_on_error_statement_token2] = ACTIONS(7640), + [sym__ambiguous_redim_statement] = ACTIONS(7642), + [aux_sym_erase_statement_token1] = ACTIONS(7640), + [aux_sym_open_statement_token1] = ACTIONS(7640), + [aux_sym_file_mode_token2] = ACTIONS(7640), + [aux_sym_file_access_token2] = ACTIONS(7640), + [aux_sym_file_lock_token2] = ACTIONS(7640), + [aux_sym_print_statement_token1] = ACTIONS(7640), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_DASH] = ACTIONS(7640), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7335), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7337), + [anon_sym_SEMI] = ACTIONS(7642), + [anon_sym_QMARK] = ACTIONS(7642), + [aux_sym_close_statement_token1] = ACTIONS(7640), + [aux_sym_put_statement_token1] = ACTIONS(7640), + [aux_sym_unlock_statement_token1] = ACTIONS(7640), + [aux_sym_seek_statement_token1] = ACTIONS(7640), + [sym_reset_statement] = ACTIONS(7640), + [aux_sym_raise_event_statement_token1] = ACTIONS(7640), + [sym_stop_statement] = ACTIONS(7640), + [sym_beep_statement] = ACTIONS(7640), + [aux_sym_unload_statement_token1] = ACTIONS(7640), + [aux_sym_def_type_statement_token1] = ACTIONS(7640), + [aux_sym_def_type_statement_token2] = ACTIONS(7640), + [aux_sym_def_type_statement_token3] = ACTIONS(7640), + [aux_sym_def_type_statement_token4] = ACTIONS(7640), + [aux_sym_def_type_statement_token5] = ACTIONS(7640), + [aux_sym_def_type_statement_token6] = ACTIONS(7640), + [aux_sym_def_type_statement_token7] = ACTIONS(7640), + [aux_sym_def_type_statement_token8] = ACTIONS(7640), + [aux_sym_def_type_statement_token9] = ACTIONS(7640), + [aux_sym_def_type_statement_token10] = ACTIONS(7640), + [aux_sym_def_type_statement_token11] = ACTIONS(7640), + [aux_sym_def_type_statement_token12] = ACTIONS(7640), + [aux_sym_def_type_statement_token13] = ACTIONS(7640), + [aux_sym_def_type_statement_token14] = ACTIONS(7640), + [aux_sym_call_statement_token1] = ACTIONS(7640), + [sym__ambiguous_call_statement] = ACTIONS(7640), + [aux_sym_addressof_expression_token1] = ACTIONS(7640), + [aux_sym_type_of_expression_token1] = ACTIONS(7640), + [aux_sym_unary_expression_token1] = ACTIONS(7640), + [sym_string_literal] = ACTIONS(7642), + [sym_number_literal] = ACTIONS(7642), + [aux_sym_boolean_literal_token1] = ACTIONS(7640), + [aux_sym_boolean_literal_token2] = ACTIONS(7640), + [sym_nothing_literal] = ACTIONS(7640), + [sym_null_literal] = ACTIONS(7640), + [sym_empty_literal] = ACTIONS(7640), + [sym_date_literal] = ACTIONS(7642), + [anon_sym_POUND] = ACTIONS(7640), + }, + [STATE(2900)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2900), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(7644), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2901)] = { + [sym_identifier] = ACTIONS(7647), + [sym_newline] = ACTIONS(7649), + [anon_sym_COLON] = ACTIONS(7649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7647), + [aux_sym_frm_property_statement_token1] = ACTIONS(7647), + [anon_sym_DOT] = ACTIONS(7647), + [anon_sym_BANG] = ACTIONS(7649), + [aux_sym__attribute_identifier_token1] = ACTIONS(7647), + [aux_sym_option_statement_token3] = ACTIONS(7647), + [aux_sym_type_declaration_token1] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7647), + [aux_sym_enum_declaration_token1] = ACTIONS(7647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7647), + [aux_sym_declare_function_statement_token1] = ACTIONS(7647), + [aux_sym_preprocessor_const_token1] = ACTIONS(7647), + [aux_sym__property_get_header_token1] = ACTIONS(7647), + [aux_sym_event_declaration_token1] = ACTIONS(7647), + [sym_static_modifier] = ACTIONS(7647), + [sym__dim_keyword] = ACTIONS(7647), + [sym__redim_keyword] = ACTIONS(7647), + [aux_sym_get_accessor_token1] = ACTIONS(7647), + [aux_sym_set_accessor_token1] = ACTIONS(7647), + [anon_sym_COMMA] = ACTIONS(7649), + [aux_sym_const_declaration_token1] = ACTIONS(7647), + [anon_sym_LPAREN] = ACTIONS(7649), + [aux_sym_as_type_clause_token2] = ACTIONS(7647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7647), + [aux_sym_visibility_token1] = ACTIONS(7647), + [aux_sym_visibility_token2] = ACTIONS(7647), + [aux_sym_elseif_fragment_token1] = ACTIONS(7647), + [aux_sym_else_fragment_token1] = ACTIONS(7647), + [aux_sym_select_statement_token1] = ACTIONS(7647), + [aux_sym__for_header_token1] = ACTIONS(7647), + [aux_sym_do_statement_token1] = ACTIONS(7647), + [aux_sym_do_condition_token1] = ACTIONS(7647), + [aux_sym_with_statement_token1] = ACTIONS(7647), + [aux_sym_exit_statement_token1] = ACTIONS(7647), + [sym_end_statement] = ACTIONS(7649), + [aux_sym_on_goto_statement_token1] = ACTIONS(7647), + [aux_sym_on_goto_statement_token2] = ACTIONS(7647), + [aux_sym_on_error_statement_token2] = ACTIONS(7647), + [sym__ambiguous_redim_statement] = ACTIONS(7649), + [aux_sym_erase_statement_token1] = ACTIONS(7647), + [aux_sym_open_statement_token1] = ACTIONS(7647), + [aux_sym_file_mode_token2] = ACTIONS(7647), + [aux_sym_file_access_token2] = ACTIONS(7647), + [aux_sym_file_lock_token2] = ACTIONS(7647), + [aux_sym_print_statement_token1] = ACTIONS(7647), + [anon_sym_PLUS] = ACTIONS(7649), + [anon_sym_DASH] = ACTIONS(7647), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7335), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7337), + [anon_sym_SEMI] = ACTIONS(7649), + [anon_sym_QMARK] = ACTIONS(7649), + [aux_sym_close_statement_token1] = ACTIONS(7647), + [aux_sym_put_statement_token1] = ACTIONS(7647), + [aux_sym_unlock_statement_token1] = ACTIONS(7647), + [aux_sym_seek_statement_token1] = ACTIONS(7647), + [sym_reset_statement] = ACTIONS(7647), + [aux_sym_raise_event_statement_token1] = ACTIONS(7647), + [sym_stop_statement] = ACTIONS(7647), + [sym_beep_statement] = ACTIONS(7647), + [aux_sym_unload_statement_token1] = ACTIONS(7647), + [aux_sym_def_type_statement_token1] = ACTIONS(7647), + [aux_sym_def_type_statement_token2] = ACTIONS(7647), + [aux_sym_def_type_statement_token3] = ACTIONS(7647), + [aux_sym_def_type_statement_token4] = ACTIONS(7647), + [aux_sym_def_type_statement_token5] = ACTIONS(7647), + [aux_sym_def_type_statement_token6] = ACTIONS(7647), + [aux_sym_def_type_statement_token7] = ACTIONS(7647), + [aux_sym_def_type_statement_token8] = ACTIONS(7647), + [aux_sym_def_type_statement_token9] = ACTIONS(7647), + [aux_sym_def_type_statement_token10] = ACTIONS(7647), + [aux_sym_def_type_statement_token11] = ACTIONS(7647), + [aux_sym_def_type_statement_token12] = ACTIONS(7647), + [aux_sym_def_type_statement_token13] = ACTIONS(7647), + [aux_sym_def_type_statement_token14] = ACTIONS(7647), + [aux_sym_call_statement_token1] = ACTIONS(7647), + [sym__ambiguous_call_statement] = ACTIONS(7647), + [aux_sym_addressof_expression_token1] = ACTIONS(7647), + [aux_sym_type_of_expression_token1] = ACTIONS(7647), + [aux_sym_unary_expression_token1] = ACTIONS(7647), + [sym_string_literal] = ACTIONS(7649), + [sym_number_literal] = ACTIONS(7649), + [aux_sym_boolean_literal_token1] = ACTIONS(7647), + [aux_sym_boolean_literal_token2] = ACTIONS(7647), + [sym_nothing_literal] = ACTIONS(7647), + [sym_null_literal] = ACTIONS(7647), + [sym_empty_literal] = ACTIONS(7647), + [sym_date_literal] = ACTIONS(7649), + [anon_sym_POUND] = ACTIONS(7647), + }, + [STATE(2902)] = { + [aux_sym__argument_sequence_repeat1] = STATE(3673), + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(3696), + [sym_identifier] = ACTIONS(7651), + [sym_newline] = ACTIONS(7653), + [anon_sym_COLON] = ACTIONS(7653), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7651), + [aux_sym_frm_property_statement_token1] = ACTIONS(7651), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_BANG] = ACTIONS(7653), + [aux_sym__attribute_identifier_token1] = ACTIONS(7651), + [aux_sym_option_statement_token3] = ACTIONS(7651), + [aux_sym_type_declaration_token1] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7651), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7651), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7651), + [aux_sym_enum_declaration_token1] = ACTIONS(7651), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7651), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7651), + [aux_sym_declare_function_statement_token1] = ACTIONS(7651), + [aux_sym_preprocessor_const_token1] = ACTIONS(7651), + [aux_sym__property_get_header_token1] = ACTIONS(7651), + [aux_sym_event_declaration_token1] = ACTIONS(7651), + [sym_static_modifier] = ACTIONS(7651), + [sym__dim_keyword] = ACTIONS(7651), + [sym__redim_keyword] = ACTIONS(7651), + [aux_sym_get_accessor_token1] = ACTIONS(7651), + [aux_sym_set_accessor_token1] = ACTIONS(7651), + [anon_sym_COMMA] = ACTIONS(7655), + [aux_sym_const_declaration_token1] = ACTIONS(7651), + [anon_sym_LPAREN] = ACTIONS(7653), + [aux_sym_as_type_clause_token2] = ACTIONS(7651), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7651), + [aux_sym_visibility_token1] = ACTIONS(7651), + [aux_sym_visibility_token2] = ACTIONS(7651), + [aux_sym_elseif_fragment_token1] = ACTIONS(7651), + [aux_sym_else_fragment_token1] = ACTIONS(7651), + [aux_sym_select_statement_token1] = ACTIONS(7651), + [aux_sym__for_header_token1] = ACTIONS(7651), + [aux_sym_do_statement_token1] = ACTIONS(7651), + [aux_sym_do_condition_token1] = ACTIONS(7651), + [aux_sym_with_statement_token1] = ACTIONS(7651), + [aux_sym_exit_statement_token1] = ACTIONS(7651), + [sym_end_statement] = ACTIONS(7653), + [aux_sym_on_goto_statement_token1] = ACTIONS(7651), + [aux_sym_on_goto_statement_token2] = ACTIONS(7651), + [aux_sym_on_error_statement_token2] = ACTIONS(7651), + [sym__ambiguous_redim_statement] = ACTIONS(7653), + [aux_sym_erase_statement_token1] = ACTIONS(7651), + [aux_sym_open_statement_token1] = ACTIONS(7651), + [aux_sym_file_mode_token2] = ACTIONS(7651), + [aux_sym_file_access_token2] = ACTIONS(7651), + [aux_sym_file_lock_token2] = ACTIONS(7651), + [aux_sym_print_statement_token1] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_SEMI] = ACTIONS(7657), + [anon_sym_QMARK] = ACTIONS(7653), + [aux_sym_close_statement_token1] = ACTIONS(7651), + [aux_sym_put_statement_token1] = ACTIONS(7651), + [aux_sym_unlock_statement_token1] = ACTIONS(7651), + [aux_sym_seek_statement_token1] = ACTIONS(7651), + [sym_reset_statement] = ACTIONS(7651), + [aux_sym_raise_event_statement_token1] = ACTIONS(7651), + [sym_stop_statement] = ACTIONS(7651), + [sym_beep_statement] = ACTIONS(7651), + [aux_sym_unload_statement_token1] = ACTIONS(7651), + [aux_sym_def_type_statement_token1] = ACTIONS(7651), + [aux_sym_def_type_statement_token2] = ACTIONS(7651), + [aux_sym_def_type_statement_token3] = ACTIONS(7651), + [aux_sym_def_type_statement_token4] = ACTIONS(7651), + [aux_sym_def_type_statement_token5] = ACTIONS(7651), + [aux_sym_def_type_statement_token6] = ACTIONS(7651), + [aux_sym_def_type_statement_token7] = ACTIONS(7651), + [aux_sym_def_type_statement_token8] = ACTIONS(7651), + [aux_sym_def_type_statement_token9] = ACTIONS(7651), + [aux_sym_def_type_statement_token10] = ACTIONS(7651), + [aux_sym_def_type_statement_token11] = ACTIONS(7651), + [aux_sym_def_type_statement_token12] = ACTIONS(7651), + [aux_sym_def_type_statement_token13] = ACTIONS(7651), + [aux_sym_def_type_statement_token14] = ACTIONS(7651), + [aux_sym_call_statement_token1] = ACTIONS(7651), + [sym__ambiguous_call_statement] = ACTIONS(7651), + [aux_sym_addressof_expression_token1] = ACTIONS(7651), + [aux_sym_type_of_expression_token1] = ACTIONS(7651), + [aux_sym_unary_expression_token1] = ACTIONS(7651), + [sym_string_literal] = ACTIONS(7653), + [sym_number_literal] = ACTIONS(7653), + [aux_sym_boolean_literal_token1] = ACTIONS(7651), + [aux_sym_boolean_literal_token2] = ACTIONS(7651), + [sym_nothing_literal] = ACTIONS(7651), + [sym_null_literal] = ACTIONS(7651), + [sym_empty_literal] = ACTIONS(7651), + [sym_date_literal] = ACTIONS(7653), + [anon_sym_POUND] = ACTIONS(7651), + }, + [STATE(2903)] = { + [sym_identifier] = ACTIONS(5821), + [sym_newline] = ACTIONS(5823), + [anon_sym_COLON] = ACTIONS(5823), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5821), + [aux_sym_frm_property_statement_token1] = ACTIONS(5821), + [anon_sym_DOT] = ACTIONS(5821), + [anon_sym_BANG] = ACTIONS(5823), + [aux_sym__attribute_identifier_token1] = ACTIONS(5821), + [aux_sym_option_statement_token3] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5821), + [aux_sym_preprocessor_const_token1] = ACTIONS(5821), + [sym_static_modifier] = ACTIONS(5821), + [sym__dim_keyword] = ACTIONS(5821), + [sym__redim_keyword] = ACTIONS(5821), + [aux_sym_get_accessor_token1] = ACTIONS(5821), + [aux_sym_set_accessor_token1] = ACTIONS(5821), + [anon_sym_COMMA] = ACTIONS(5823), + [aux_sym_const_declaration_token1] = ACTIONS(5821), + [anon_sym_LPAREN] = ACTIONS(5823), + [aux_sym_as_type_clause_token2] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5821), + [aux_sym_visibility_token1] = ACTIONS(5821), + [aux_sym_visibility_token2] = ACTIONS(5821), + [aux_sym_elseif_fragment_token1] = ACTIONS(5821), + [aux_sym_else_fragment_token1] = ACTIONS(5821), + [aux_sym_select_statement_token1] = ACTIONS(5821), + [aux_sym__for_header_token1] = ACTIONS(5821), + [aux_sym_do_statement_token1] = ACTIONS(5821), + [aux_sym_do_condition_token1] = ACTIONS(5821), + [aux_sym_with_statement_token1] = ACTIONS(5821), + [aux_sym_exit_statement_token1] = ACTIONS(5821), + [sym_end_statement] = ACTIONS(5823), + [aux_sym_on_goto_statement_token1] = ACTIONS(5821), + [aux_sym_on_goto_statement_token2] = ACTIONS(5821), + [aux_sym_on_error_statement_token2] = ACTIONS(5821), + [sym__ambiguous_redim_statement] = ACTIONS(5823), + [aux_sym_erase_statement_token1] = ACTIONS(5821), + [aux_sym_open_statement_token1] = ACTIONS(5821), + [aux_sym_file_mode_token2] = ACTIONS(5821), + [aux_sym_file_access_token2] = ACTIONS(5821), + [aux_sym_file_lock_token2] = ACTIONS(5821), + [aux_sym_print_statement_token1] = ACTIONS(5821), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_SEMI] = ACTIONS(5823), + [anon_sym_QMARK] = ACTIONS(5823), + [aux_sym_close_statement_token1] = ACTIONS(5821), + [aux_sym_put_statement_token1] = ACTIONS(5821), + [aux_sym_unlock_statement_token1] = ACTIONS(5821), + [aux_sym_seek_statement_token1] = ACTIONS(5821), + [sym_reset_statement] = ACTIONS(5821), + [aux_sym_raise_event_statement_token1] = ACTIONS(5821), + [sym_stop_statement] = ACTIONS(5821), + [sym_beep_statement] = ACTIONS(5821), + [aux_sym_unload_statement_token1] = ACTIONS(5821), + [aux_sym_def_type_statement_token1] = ACTIONS(5821), + [aux_sym_def_type_statement_token2] = ACTIONS(5821), + [aux_sym_def_type_statement_token3] = ACTIONS(5821), + [aux_sym_def_type_statement_token4] = ACTIONS(5821), + [aux_sym_def_type_statement_token5] = ACTIONS(5821), + [aux_sym_def_type_statement_token6] = ACTIONS(5821), + [aux_sym_def_type_statement_token7] = ACTIONS(5821), + [aux_sym_def_type_statement_token8] = ACTIONS(5821), + [aux_sym_def_type_statement_token9] = ACTIONS(5821), + [aux_sym_def_type_statement_token10] = ACTIONS(5821), + [aux_sym_def_type_statement_token11] = ACTIONS(5821), + [aux_sym_def_type_statement_token12] = ACTIONS(5821), + [aux_sym_def_type_statement_token13] = ACTIONS(5821), + [aux_sym_def_type_statement_token14] = ACTIONS(5821), + [aux_sym_call_statement_token1] = ACTIONS(5821), + [sym__ambiguous_call_statement] = ACTIONS(5821), + [aux_sym_addressof_expression_token1] = ACTIONS(5821), + [aux_sym_type_of_expression_token1] = ACTIONS(5821), + [aux_sym_unary_expression_token1] = ACTIONS(5821), + [sym_string_literal] = ACTIONS(5823), + [sym_number_literal] = ACTIONS(5823), + [aux_sym_boolean_literal_token1] = ACTIONS(5821), + [aux_sym_boolean_literal_token2] = ACTIONS(5821), + [sym_nothing_literal] = ACTIONS(5821), + [sym_null_literal] = ACTIONS(5821), + [sym_empty_literal] = ACTIONS(5821), + [sym_date_literal] = ACTIONS(5823), + [anon_sym_POUND] = ACTIONS(5821), + }, + [STATE(2904)] = { + [sym_identifier] = ACTIONS(5841), + [sym_newline] = ACTIONS(5843), + [anon_sym_COLON] = ACTIONS(5843), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5841), + [aux_sym_frm_property_statement_token1] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5843), + [aux_sym__attribute_identifier_token1] = ACTIONS(5841), + [aux_sym_option_statement_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5841), + [aux_sym_preprocessor_const_token1] = ACTIONS(5841), + [sym_static_modifier] = ACTIONS(5841), + [sym__dim_keyword] = ACTIONS(5841), + [sym__redim_keyword] = ACTIONS(5841), + [aux_sym_get_accessor_token1] = ACTIONS(5841), + [aux_sym_set_accessor_token1] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(5843), + [aux_sym_const_declaration_token1] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5843), + [aux_sym_as_type_clause_token2] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5841), + [aux_sym_visibility_token1] = ACTIONS(5841), + [aux_sym_visibility_token2] = ACTIONS(5841), + [aux_sym_elseif_fragment_token1] = ACTIONS(5841), + [aux_sym_else_fragment_token1] = ACTIONS(5841), + [aux_sym_select_statement_token1] = ACTIONS(5841), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5841), + [aux_sym__for_header_token1] = ACTIONS(5841), + [aux_sym_do_statement_token1] = ACTIONS(5841), + [aux_sym_do_condition_token1] = ACTIONS(5841), + [aux_sym_with_statement_token1] = ACTIONS(5841), + [aux_sym_exit_statement_token1] = ACTIONS(5841), + [sym_end_statement] = ACTIONS(5843), + [aux_sym_on_goto_statement_token1] = ACTIONS(5841), + [aux_sym_on_goto_statement_token2] = ACTIONS(5841), + [aux_sym_on_error_statement_token2] = ACTIONS(5841), + [sym__ambiguous_redim_statement] = ACTIONS(5843), + [aux_sym_erase_statement_token1] = ACTIONS(5841), + [aux_sym_open_statement_token1] = ACTIONS(5841), + [aux_sym_file_mode_token2] = ACTIONS(5841), + [aux_sym_file_access_token2] = ACTIONS(5841), + [aux_sym_file_lock_token2] = ACTIONS(5841), + [aux_sym_print_statement_token1] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(5843), + [anon_sym_QMARK] = ACTIONS(5843), + [aux_sym_close_statement_token1] = ACTIONS(5841), + [aux_sym_put_statement_token1] = ACTIONS(5841), + [aux_sym_unlock_statement_token1] = ACTIONS(5841), + [aux_sym_seek_statement_token1] = ACTIONS(5841), + [sym_reset_statement] = ACTIONS(5841), + [aux_sym_raise_event_statement_token1] = ACTIONS(5841), + [sym_stop_statement] = ACTIONS(5841), + [sym_beep_statement] = ACTIONS(5841), + [aux_sym_unload_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token2] = ACTIONS(5841), + [aux_sym_def_type_statement_token3] = ACTIONS(5841), + [aux_sym_def_type_statement_token4] = ACTIONS(5841), + [aux_sym_def_type_statement_token5] = ACTIONS(5841), + [aux_sym_def_type_statement_token6] = ACTIONS(5841), + [aux_sym_def_type_statement_token7] = ACTIONS(5841), + [aux_sym_def_type_statement_token8] = ACTIONS(5841), + [aux_sym_def_type_statement_token9] = ACTIONS(5841), + [aux_sym_def_type_statement_token10] = ACTIONS(5841), + [aux_sym_def_type_statement_token11] = ACTIONS(5841), + [aux_sym_def_type_statement_token12] = ACTIONS(5841), + [aux_sym_def_type_statement_token13] = ACTIONS(5841), + [aux_sym_def_type_statement_token14] = ACTIONS(5841), + [aux_sym_call_statement_token1] = ACTIONS(5841), + [sym__ambiguous_call_statement] = ACTIONS(5841), + [aux_sym_addressof_expression_token1] = ACTIONS(5841), + [aux_sym_type_of_expression_token1] = ACTIONS(5841), + [aux_sym_unary_expression_token1] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5843), + [sym_number_literal] = ACTIONS(5843), + [aux_sym_boolean_literal_token1] = ACTIONS(5841), + [aux_sym_boolean_literal_token2] = ACTIONS(5841), + [sym_nothing_literal] = ACTIONS(5841), + [sym_null_literal] = ACTIONS(5841), + [sym_empty_literal] = ACTIONS(5841), + [sym_date_literal] = ACTIONS(5843), + [anon_sym_POUND] = ACTIONS(5841), + }, + [STATE(2905)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_select_statement_token2] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2906)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_statement_token2] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2907)] = { + [sym_argument_list] = STATE(3177), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7659), + [anon_sym_BANG] = ACTIONS(7661), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(7663), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2908)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_SEMI] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2909)] = { + [sym_identifier] = ACTIONS(5699), + [sym_newline] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5701), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5699), + [aux_sym_frm_property_statement_token1] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5699), + [anon_sym_BANG] = ACTIONS(5701), + [aux_sym__attribute_identifier_token1] = ACTIONS(5699), + [aux_sym_option_statement_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5699), + [aux_sym_preprocessor_const_token1] = ACTIONS(5699), + [sym_static_modifier] = ACTIONS(5699), + [sym__dim_keyword] = ACTIONS(5699), + [sym__redim_keyword] = ACTIONS(5699), + [aux_sym_get_accessor_token1] = ACTIONS(5699), + [aux_sym_set_accessor_token1] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5701), + [aux_sym_const_declaration_token1] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(5701), + [aux_sym_as_type_clause_token2] = ACTIONS(5699), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5699), + [aux_sym_visibility_token1] = ACTIONS(5699), + [aux_sym_visibility_token2] = ACTIONS(5699), + [aux_sym_elseif_fragment_token1] = ACTIONS(5699), + [aux_sym_else_fragment_token1] = ACTIONS(5699), + [aux_sym_select_statement_token1] = ACTIONS(5699), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5699), + [aux_sym__for_header_token1] = ACTIONS(5699), + [aux_sym_do_statement_token1] = ACTIONS(5699), + [aux_sym_do_condition_token1] = ACTIONS(5699), + [aux_sym_with_statement_token1] = ACTIONS(5699), + [aux_sym_exit_statement_token1] = ACTIONS(5699), + [sym_end_statement] = ACTIONS(5701), + [aux_sym_on_goto_statement_token1] = ACTIONS(5699), + [aux_sym_on_goto_statement_token2] = ACTIONS(5699), + [aux_sym_on_error_statement_token2] = ACTIONS(5699), + [sym__ambiguous_redim_statement] = ACTIONS(5701), + [aux_sym_erase_statement_token1] = ACTIONS(5699), + [aux_sym_open_statement_token1] = ACTIONS(5699), + [aux_sym_file_mode_token2] = ACTIONS(5699), + [aux_sym_file_access_token2] = ACTIONS(5699), + [aux_sym_file_lock_token2] = ACTIONS(5699), + [aux_sym_print_statement_token1] = ACTIONS(5699), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7561), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7563), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6166), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6168), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6170), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5701), + [aux_sym_close_statement_token1] = ACTIONS(5699), + [aux_sym_put_statement_token1] = ACTIONS(5699), + [aux_sym_unlock_statement_token1] = ACTIONS(5699), + [aux_sym_seek_statement_token1] = ACTIONS(5699), + [sym_reset_statement] = ACTIONS(5699), + [aux_sym_raise_event_statement_token1] = ACTIONS(5699), + [sym_stop_statement] = ACTIONS(5699), + [sym_beep_statement] = ACTIONS(5699), + [aux_sym_unload_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token2] = ACTIONS(5699), + [aux_sym_def_type_statement_token3] = ACTIONS(5699), + [aux_sym_def_type_statement_token4] = ACTIONS(5699), + [aux_sym_def_type_statement_token5] = ACTIONS(5699), + [aux_sym_def_type_statement_token6] = ACTIONS(5699), + [aux_sym_def_type_statement_token7] = ACTIONS(5699), + [aux_sym_def_type_statement_token8] = ACTIONS(5699), + [aux_sym_def_type_statement_token9] = ACTIONS(5699), + [aux_sym_def_type_statement_token10] = ACTIONS(5699), + [aux_sym_def_type_statement_token11] = ACTIONS(5699), + [aux_sym_def_type_statement_token12] = ACTIONS(5699), + [aux_sym_def_type_statement_token13] = ACTIONS(5699), + [aux_sym_def_type_statement_token14] = ACTIONS(5699), + [aux_sym_call_statement_token1] = ACTIONS(5699), + [sym__ambiguous_call_statement] = ACTIONS(5699), + [aux_sym_addressof_expression_token1] = ACTIONS(5699), + [aux_sym_type_of_expression_token1] = ACTIONS(5699), + [aux_sym_unary_expression_token1] = ACTIONS(5699), + [sym_string_literal] = ACTIONS(5701), + [sym_number_literal] = ACTIONS(5701), + [aux_sym_boolean_literal_token1] = ACTIONS(5699), + [aux_sym_boolean_literal_token2] = ACTIONS(5699), + [sym_nothing_literal] = ACTIONS(5699), + [sym_null_literal] = ACTIONS(5699), + [sym_empty_literal] = ACTIONS(5699), + [sym_date_literal] = ACTIONS(5701), + [anon_sym_POUND] = ACTIONS(5699), + }, + [STATE(2910)] = { + [sym_argument_list] = STATE(3173), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7665), + [anon_sym_BANG] = ACTIONS(7667), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(7669), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_select_statement_token2] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2911)] = { + [sym_identifier] = ACTIONS(5752), + [sym_newline] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5752), + [aux_sym_frm_property_statement_token1] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5752), + [anon_sym_BANG] = ACTIONS(5754), + [aux_sym__attribute_identifier_token1] = ACTIONS(5752), + [aux_sym_option_statement_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5752), + [aux_sym_preprocessor_const_token1] = ACTIONS(5752), + [sym_static_modifier] = ACTIONS(5752), + [sym__dim_keyword] = ACTIONS(5752), + [sym__redim_keyword] = ACTIONS(5752), + [aux_sym_get_accessor_token1] = ACTIONS(5752), + [aux_sym_set_accessor_token1] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5754), + [aux_sym_const_declaration_token1] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [aux_sym_as_type_clause_token2] = ACTIONS(5752), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5752), + [aux_sym_visibility_token1] = ACTIONS(5752), + [aux_sym_visibility_token2] = ACTIONS(5752), + [aux_sym_elseif_fragment_token1] = ACTIONS(5752), + [aux_sym_else_fragment_token1] = ACTIONS(5752), + [aux_sym_select_statement_token1] = ACTIONS(5752), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5752), + [aux_sym__for_header_token1] = ACTIONS(5752), + [aux_sym_do_statement_token1] = ACTIONS(5752), + [aux_sym_do_condition_token1] = ACTIONS(5752), + [aux_sym_with_statement_token1] = ACTIONS(5752), + [aux_sym_exit_statement_token1] = ACTIONS(5752), + [sym_end_statement] = ACTIONS(5754), + [aux_sym_on_goto_statement_token1] = ACTIONS(5752), + [aux_sym_on_goto_statement_token2] = ACTIONS(5752), + [aux_sym_on_error_statement_token2] = ACTIONS(5752), + [sym__ambiguous_redim_statement] = ACTIONS(5754), + [aux_sym_erase_statement_token1] = ACTIONS(5752), + [aux_sym_open_statement_token1] = ACTIONS(5752), + [aux_sym_file_mode_token2] = ACTIONS(5752), + [aux_sym_file_access_token2] = ACTIONS(5752), + [aux_sym_file_lock_token2] = ACTIONS(5752), + [aux_sym_print_statement_token1] = ACTIONS(5752), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7561), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7563), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6166), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6168), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6170), + [anon_sym_SEMI] = ACTIONS(5754), + [anon_sym_QMARK] = ACTIONS(5754), + [aux_sym_close_statement_token1] = ACTIONS(5752), + [aux_sym_put_statement_token1] = ACTIONS(5752), + [aux_sym_unlock_statement_token1] = ACTIONS(5752), + [aux_sym_seek_statement_token1] = ACTIONS(5752), + [sym_reset_statement] = ACTIONS(5752), + [aux_sym_raise_event_statement_token1] = ACTIONS(5752), + [sym_stop_statement] = ACTIONS(5752), + [sym_beep_statement] = ACTIONS(5752), + [aux_sym_unload_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token2] = ACTIONS(5752), + [aux_sym_def_type_statement_token3] = ACTIONS(5752), + [aux_sym_def_type_statement_token4] = ACTIONS(5752), + [aux_sym_def_type_statement_token5] = ACTIONS(5752), + [aux_sym_def_type_statement_token6] = ACTIONS(5752), + [aux_sym_def_type_statement_token7] = ACTIONS(5752), + [aux_sym_def_type_statement_token8] = ACTIONS(5752), + [aux_sym_def_type_statement_token9] = ACTIONS(5752), + [aux_sym_def_type_statement_token10] = ACTIONS(5752), + [aux_sym_def_type_statement_token11] = ACTIONS(5752), + [aux_sym_def_type_statement_token12] = ACTIONS(5752), + [aux_sym_def_type_statement_token13] = ACTIONS(5752), + [aux_sym_def_type_statement_token14] = ACTIONS(5752), + [aux_sym_call_statement_token1] = ACTIONS(5752), + [sym__ambiguous_call_statement] = ACTIONS(5752), + [aux_sym_addressof_expression_token1] = ACTIONS(5752), + [aux_sym_type_of_expression_token1] = ACTIONS(5752), + [aux_sym_unary_expression_token1] = ACTIONS(5752), + [sym_string_literal] = ACTIONS(5754), + [sym_number_literal] = ACTIONS(5754), + [aux_sym_boolean_literal_token1] = ACTIONS(5752), + [aux_sym_boolean_literal_token2] = ACTIONS(5752), + [sym_nothing_literal] = ACTIONS(5752), + [sym_null_literal] = ACTIONS(5752), + [sym_empty_literal] = ACTIONS(5752), + [sym_date_literal] = ACTIONS(5754), + [anon_sym_POUND] = ACTIONS(5752), + }, + [STATE(2912)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_while_statement_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2913)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(2914)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2915)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_SEMI] = ACTIONS(4619), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2916)] = { + [sym_initializer] = STATE(4270), + [sym_as_type_clause] = STATE(3741), + [sym_array_bounds] = STATE(3365), + [sym_identifier] = ACTIONS(6989), + [sym_newline] = ACTIONS(6991), + [anon_sym_COLON] = ACTIONS(6991), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6989), + [aux_sym_frm_property_statement_token1] = ACTIONS(6989), + [anon_sym_EQ] = ACTIONS(7671), + [anon_sym_DOT] = ACTIONS(6989), + [anon_sym_BANG] = ACTIONS(6991), + [aux_sym__attribute_identifier_token1] = ACTIONS(6989), + [aux_sym_option_statement_token3] = ACTIONS(6989), + [aux_sym_type_declaration_token1] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6989), + [aux_sym_enum_declaration_token1] = ACTIONS(6989), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6989), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6989), + [aux_sym_declare_function_statement_token1] = ACTIONS(6989), + [aux_sym_preprocessor_const_token1] = ACTIONS(6989), + [aux_sym__property_get_header_token1] = ACTIONS(6989), + [aux_sym_event_declaration_token1] = ACTIONS(6989), + [sym_static_modifier] = ACTIONS(6989), + [sym__dim_keyword] = ACTIONS(6989), + [sym__redim_keyword] = ACTIONS(6989), + [aux_sym_get_accessor_token1] = ACTIONS(6989), + [aux_sym_set_accessor_token1] = ACTIONS(6989), + [anon_sym_COMMA] = ACTIONS(6991), + [aux_sym_const_declaration_token1] = ACTIONS(6989), + [anon_sym_LPAREN] = ACTIONS(7673), + [aux_sym_as_type_clause_token1] = ACTIONS(7675), + [aux_sym_as_type_clause_token2] = ACTIONS(6989), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6989), + [aux_sym_visibility_token1] = ACTIONS(6989), + [aux_sym_visibility_token2] = ACTIONS(6989), + [aux_sym_elseif_fragment_token1] = ACTIONS(6989), + [aux_sym_else_fragment_token1] = ACTIONS(6989), + [aux_sym_select_statement_token1] = ACTIONS(6989), + [aux_sym__for_header_token1] = ACTIONS(6989), + [aux_sym_do_statement_token1] = ACTIONS(6989), + [aux_sym_do_condition_token1] = ACTIONS(6989), + [aux_sym_with_statement_token1] = ACTIONS(6989), + [aux_sym_exit_statement_token1] = ACTIONS(6989), + [sym_end_statement] = ACTIONS(6991), + [aux_sym_on_goto_statement_token1] = ACTIONS(6989), + [aux_sym_on_goto_statement_token2] = ACTIONS(6989), + [aux_sym_on_error_statement_token2] = ACTIONS(6989), + [sym__ambiguous_redim_statement] = ACTIONS(6991), + [aux_sym_erase_statement_token1] = ACTIONS(6989), + [aux_sym_open_statement_token1] = ACTIONS(6989), + [aux_sym_file_mode_token2] = ACTIONS(6989), + [aux_sym_file_access_token2] = ACTIONS(6989), + [aux_sym_file_lock_token2] = ACTIONS(6989), + [aux_sym_print_statement_token1] = ACTIONS(6989), + [anon_sym_PLUS] = ACTIONS(6991), + [anon_sym_DASH] = ACTIONS(6989), + [anon_sym_QMARK] = ACTIONS(6991), + [aux_sym_close_statement_token1] = ACTIONS(6989), + [aux_sym_put_statement_token1] = ACTIONS(6989), + [aux_sym_unlock_statement_token1] = ACTIONS(6989), + [aux_sym_seek_statement_token1] = ACTIONS(6989), + [sym_reset_statement] = ACTIONS(6989), + [aux_sym_raise_event_statement_token1] = ACTIONS(6989), + [sym_stop_statement] = ACTIONS(6989), + [sym_beep_statement] = ACTIONS(6989), + [aux_sym_unload_statement_token1] = ACTIONS(6989), + [aux_sym_def_type_statement_token1] = ACTIONS(6989), + [aux_sym_def_type_statement_token2] = ACTIONS(6989), + [aux_sym_def_type_statement_token3] = ACTIONS(6989), + [aux_sym_def_type_statement_token4] = ACTIONS(6989), + [aux_sym_def_type_statement_token5] = ACTIONS(6989), + [aux_sym_def_type_statement_token6] = ACTIONS(6989), + [aux_sym_def_type_statement_token7] = ACTIONS(6989), + [aux_sym_def_type_statement_token8] = ACTIONS(6989), + [aux_sym_def_type_statement_token9] = ACTIONS(6989), + [aux_sym_def_type_statement_token10] = ACTIONS(6989), + [aux_sym_def_type_statement_token11] = ACTIONS(6989), + [aux_sym_def_type_statement_token12] = ACTIONS(6989), + [aux_sym_def_type_statement_token13] = ACTIONS(6989), + [aux_sym_def_type_statement_token14] = ACTIONS(6989), + [aux_sym_call_statement_token1] = ACTIONS(6989), + [sym__ambiguous_call_statement] = ACTIONS(6989), + [aux_sym_addressof_expression_token1] = ACTIONS(6989), + [aux_sym_type_of_expression_token1] = ACTIONS(6989), + [aux_sym_unary_expression_token1] = ACTIONS(6989), + [sym_string_literal] = ACTIONS(6991), + [sym_number_literal] = ACTIONS(6991), + [aux_sym_boolean_literal_token1] = ACTIONS(6989), + [aux_sym_boolean_literal_token2] = ACTIONS(6989), + [sym_nothing_literal] = ACTIONS(6989), + [sym_null_literal] = ACTIONS(6989), + [sym_empty_literal] = ACTIONS(6989), + [sym_date_literal] = ACTIONS(6991), + [anon_sym_POUND] = ACTIONS(6989), + }, + [STATE(2917)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2918)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_statement_token2] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2919)] = { + [sym_identifier] = ACTIONS(5766), + [sym_newline] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5766), + [aux_sym_frm_property_statement_token1] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5766), + [anon_sym_BANG] = ACTIONS(5768), + [aux_sym__attribute_identifier_token1] = ACTIONS(5766), + [aux_sym_option_statement_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5766), + [aux_sym_preprocessor_const_token1] = ACTIONS(5766), + [sym_static_modifier] = ACTIONS(5766), + [sym__dim_keyword] = ACTIONS(5766), + [sym__redim_keyword] = ACTIONS(5766), + [aux_sym_get_accessor_token1] = ACTIONS(5766), + [aux_sym_set_accessor_token1] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [aux_sym_const_declaration_token1] = ACTIONS(5766), + [anon_sym_LPAREN] = ACTIONS(5768), + [aux_sym_as_type_clause_token2] = ACTIONS(5766), + [anon_sym_STAR] = ACTIONS(5768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5766), + [aux_sym_visibility_token1] = ACTIONS(5766), + [aux_sym_visibility_token2] = ACTIONS(5766), + [aux_sym_elseif_fragment_token1] = ACTIONS(5766), + [aux_sym_else_fragment_token1] = ACTIONS(5766), + [aux_sym_select_statement_token1] = ACTIONS(5766), + [aux_sym__for_header_token1] = ACTIONS(5766), + [aux_sym_do_statement_token1] = ACTIONS(5766), + [aux_sym_do_statement_token2] = ACTIONS(5766), + [aux_sym_do_condition_token1] = ACTIONS(5766), + [aux_sym_with_statement_token1] = ACTIONS(5766), + [aux_sym_exit_statement_token1] = ACTIONS(5766), + [sym_end_statement] = ACTIONS(5768), + [aux_sym_on_goto_statement_token1] = ACTIONS(5766), + [aux_sym_on_goto_statement_token2] = ACTIONS(5766), + [aux_sym_on_error_statement_token2] = ACTIONS(5766), + [sym__ambiguous_redim_statement] = ACTIONS(5768), + [aux_sym_erase_statement_token1] = ACTIONS(5766), + [aux_sym_open_statement_token1] = ACTIONS(5766), + [aux_sym_file_mode_token2] = ACTIONS(5766), + [aux_sym_file_access_token2] = ACTIONS(5766), + [aux_sym_file_lock_token2] = ACTIONS(5766), + [aux_sym_print_statement_token1] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_BSLASH] = ACTIONS(5768), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5766), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5768), + [aux_sym_close_statement_token1] = ACTIONS(5766), + [aux_sym_put_statement_token1] = ACTIONS(5766), + [aux_sym_unlock_statement_token1] = ACTIONS(5766), + [aux_sym_seek_statement_token1] = ACTIONS(5766), + [sym_reset_statement] = ACTIONS(5766), + [aux_sym_raise_event_statement_token1] = ACTIONS(5766), + [sym_stop_statement] = ACTIONS(5766), + [sym_beep_statement] = ACTIONS(5766), + [aux_sym_unload_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token2] = ACTIONS(5766), + [aux_sym_def_type_statement_token3] = ACTIONS(5766), + [aux_sym_def_type_statement_token4] = ACTIONS(5766), + [aux_sym_def_type_statement_token5] = ACTIONS(5766), + [aux_sym_def_type_statement_token6] = ACTIONS(5766), + [aux_sym_def_type_statement_token7] = ACTIONS(5766), + [aux_sym_def_type_statement_token8] = ACTIONS(5766), + [aux_sym_def_type_statement_token9] = ACTIONS(5766), + [aux_sym_def_type_statement_token10] = ACTIONS(5766), + [aux_sym_def_type_statement_token11] = ACTIONS(5766), + [aux_sym_def_type_statement_token12] = ACTIONS(5766), + [aux_sym_def_type_statement_token13] = ACTIONS(5766), + [aux_sym_def_type_statement_token14] = ACTIONS(5766), + [aux_sym_call_statement_token1] = ACTIONS(5766), + [sym__ambiguous_call_statement] = ACTIONS(5766), + [aux_sym_addressof_expression_token1] = ACTIONS(5766), + [aux_sym_type_of_expression_token1] = ACTIONS(5766), + [aux_sym_unary_expression_token1] = ACTIONS(5766), + [sym_string_literal] = ACTIONS(5768), + [sym_number_literal] = ACTIONS(5768), + [aux_sym_boolean_literal_token1] = ACTIONS(5766), + [aux_sym_boolean_literal_token2] = ACTIONS(5766), + [sym_nothing_literal] = ACTIONS(5766), + [sym_null_literal] = ACTIONS(5766), + [sym_empty_literal] = ACTIONS(5766), + [sym_date_literal] = ACTIONS(5768), + [anon_sym_POUND] = ACTIONS(5766), + }, + [STATE(2920)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2921)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_array_bound_token1] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_statement_token2] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(2922)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_statement_token2] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(7677), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2923)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_statement_token2] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2924)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_statement_token2] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2925)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_array_bound_token1] = ACTIONS(4625), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_statement_token2] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(2926)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_statement_token2] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2927)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2928)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(7679), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_while_statement_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token3] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(7679), + [anon_sym_BSLASH] = ACTIONS(7683), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7685), + [anon_sym_PLUS] = ACTIONS(7687), + [anon_sym_DASH] = ACTIONS(7689), + [anon_sym_AMP] = ACTIONS(7691), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7693), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7695), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7697), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7699), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7701), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(2929)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_while_statement_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token3] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(2930)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_while_statement_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token3] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2931)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_array_bound_token1] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_statement_token2] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(2932)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_array_bound_token1] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_statement_token2] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(2933)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2938), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(7703), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2934)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_while_statement_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2935)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7625), + [anon_sym_BANG] = ACTIONS(7627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_while_statement_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(2936)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2937)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2938)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2943), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token3] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(2939)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_array_bound_token1] = ACTIONS(4437), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_while_statement_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(2940)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_statement_token2] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6368), + [anon_sym_SLASH] = ACTIONS(6370), + [anon_sym_BSLASH] = ACTIONS(6372), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6374), + [anon_sym_PLUS] = ACTIONS(6376), + [anon_sym_DASH] = ACTIONS(6378), + [anon_sym_AMP] = ACTIONS(6380), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2941)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_array_bound_token1] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_statement_token2] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(2942)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_while_statement_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(7705), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2943)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(2943), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(7707), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2944)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2945)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2946)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_select_statement_token2] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2947)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2948)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_array_bound_token1] = ACTIONS(4447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_select_statement_token2] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(2949)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2950)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2951)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_while_statement_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token3] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(2952)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2953)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_statement_token2] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2954)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_array_bound_token1] = ACTIONS(4477), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_select_statement_token2] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(2955)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2956)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_while_statement_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token3] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(2957)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_array_bound_token1] = ACTIONS(4485), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_select_statement_token2] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(2958)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_while_statement_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(2959)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2960)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_array_bound_token1] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_while_statement_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2961)] = { + [sym_initializer] = STATE(3797), + [sym_identifier] = ACTIONS(7710), + [sym_newline] = ACTIONS(7712), + [anon_sym_COLON] = ACTIONS(7712), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7710), + [aux_sym_frm_property_statement_token1] = ACTIONS(7710), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_DOT] = ACTIONS(7710), + [anon_sym_BANG] = ACTIONS(7712), + [aux_sym__attribute_identifier_token1] = ACTIONS(7710), + [aux_sym_option_statement_token3] = ACTIONS(7710), + [aux_sym_type_declaration_token1] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7710), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7710), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7710), + [aux_sym_enum_declaration_token1] = ACTIONS(7710), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7710), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7710), + [aux_sym_declare_function_statement_token1] = ACTIONS(7710), + [aux_sym_preprocessor_const_token1] = ACTIONS(7710), + [aux_sym__property_get_header_token1] = ACTIONS(7710), + [aux_sym_event_declaration_token1] = ACTIONS(7710), + [sym_static_modifier] = ACTIONS(7710), + [sym__dim_keyword] = ACTIONS(7710), + [sym__redim_keyword] = ACTIONS(7710), + [aux_sym_get_accessor_token1] = ACTIONS(7710), + [aux_sym_set_accessor_token1] = ACTIONS(7710), + [anon_sym_COMMA] = ACTIONS(7712), + [aux_sym_const_declaration_token1] = ACTIONS(7710), + [anon_sym_LPAREN] = ACTIONS(7712), + [aux_sym_as_type_clause_token2] = ACTIONS(7710), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7710), + [aux_sym_visibility_token1] = ACTIONS(7710), + [aux_sym_visibility_token2] = ACTIONS(7710), + [aux_sym_elseif_fragment_token1] = ACTIONS(7710), + [aux_sym_else_fragment_token1] = ACTIONS(7710), + [aux_sym_select_statement_token1] = ACTIONS(7710), + [aux_sym__for_header_token1] = ACTIONS(7710), + [aux_sym_do_statement_token1] = ACTIONS(7710), + [aux_sym_do_condition_token1] = ACTIONS(7710), + [aux_sym_with_statement_token1] = ACTIONS(7710), + [aux_sym_exit_statement_token1] = ACTIONS(7710), + [sym_end_statement] = ACTIONS(7712), + [aux_sym_on_goto_statement_token1] = ACTIONS(7710), + [aux_sym_on_goto_statement_token2] = ACTIONS(7710), + [aux_sym_on_error_statement_token2] = ACTIONS(7710), + [sym__ambiguous_redim_statement] = ACTIONS(7712), + [aux_sym_erase_statement_token1] = ACTIONS(7710), + [aux_sym_open_statement_token1] = ACTIONS(7710), + [aux_sym_file_mode_token2] = ACTIONS(7710), + [aux_sym_file_access_token2] = ACTIONS(7710), + [aux_sym_file_lock_token2] = ACTIONS(7710), + [aux_sym_print_statement_token1] = ACTIONS(7710), + [anon_sym_PLUS] = ACTIONS(7712), + [anon_sym_DASH] = ACTIONS(7710), + [anon_sym_QMARK] = ACTIONS(7712), + [aux_sym_close_statement_token1] = ACTIONS(7710), + [aux_sym_put_statement_token1] = ACTIONS(7710), + [aux_sym_unlock_statement_token1] = ACTIONS(7710), + [aux_sym_seek_statement_token1] = ACTIONS(7710), + [sym_reset_statement] = ACTIONS(7710), + [aux_sym_raise_event_statement_token1] = ACTIONS(7710), + [sym_stop_statement] = ACTIONS(7710), + [sym_beep_statement] = ACTIONS(7710), + [aux_sym_unload_statement_token1] = ACTIONS(7710), + [aux_sym_def_type_statement_token1] = ACTIONS(7710), + [aux_sym_def_type_statement_token2] = ACTIONS(7710), + [aux_sym_def_type_statement_token3] = ACTIONS(7710), + [aux_sym_def_type_statement_token4] = ACTIONS(7710), + [aux_sym_def_type_statement_token5] = ACTIONS(7710), + [aux_sym_def_type_statement_token6] = ACTIONS(7710), + [aux_sym_def_type_statement_token7] = ACTIONS(7710), + [aux_sym_def_type_statement_token8] = ACTIONS(7710), + [aux_sym_def_type_statement_token9] = ACTIONS(7710), + [aux_sym_def_type_statement_token10] = ACTIONS(7710), + [aux_sym_def_type_statement_token11] = ACTIONS(7710), + [aux_sym_def_type_statement_token12] = ACTIONS(7710), + [aux_sym_def_type_statement_token13] = ACTIONS(7710), + [aux_sym_def_type_statement_token14] = ACTIONS(7710), + [aux_sym_call_statement_token1] = ACTIONS(7710), + [sym__ambiguous_call_statement] = ACTIONS(7710), + [aux_sym_addressof_expression_token1] = ACTIONS(7710), + [aux_sym_type_of_expression_token1] = ACTIONS(7710), + [aux_sym_unary_expression_token1] = ACTIONS(7710), + [sym_string_literal] = ACTIONS(7712), + [sym_number_literal] = ACTIONS(7712), + [aux_sym_boolean_literal_token1] = ACTIONS(7710), + [aux_sym_boolean_literal_token2] = ACTIONS(7710), + [sym_nothing_literal] = ACTIONS(7710), + [sym_null_literal] = ACTIONS(7710), + [sym_empty_literal] = ACTIONS(7710), + [sym_date_literal] = ACTIONS(7712), + [anon_sym_POUND] = ACTIONS(7710), + }, + [STATE(2962)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_array_bound_token1] = ACTIONS(4441), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_select_statement_token2] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2963)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_array_bound_token1] = ACTIONS(4447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(2964)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6528), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6526), + [anon_sym_SLASH] = ACTIONS(6528), + [anon_sym_BSLASH] = ACTIONS(6530), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6532), + [anon_sym_PLUS] = ACTIONS(6534), + [anon_sym_DASH] = ACTIONS(6536), + [anon_sym_AMP] = ACTIONS(6538), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2965)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7716), + [aux_sym_array_bound_token1] = ACTIONS(4451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_select_statement_token2] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(7716), + [anon_sym_BSLASH] = ACTIONS(7718), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7720), + [anon_sym_PLUS] = ACTIONS(7722), + [anon_sym_DASH] = ACTIONS(7724), + [anon_sym_AMP] = ACTIONS(7726), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7728), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7730), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7732), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7734), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7736), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2966)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_while_statement_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token3] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(2967)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_while_statement_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2968)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_array_bound_token1] = ACTIONS(4477), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(2969)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_array_bound_token1] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_while_statement_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(2970)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_array_bound_token1] = ACTIONS(4625), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(2971)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(2972)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7738), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_statement_token2] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token3] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7740), + [anon_sym_SLASH] = ACTIONS(7738), + [anon_sym_BSLASH] = ACTIONS(7742), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7744), + [anon_sym_PLUS] = ACTIONS(7746), + [anon_sym_DASH] = ACTIONS(7748), + [anon_sym_AMP] = ACTIONS(7750), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(2973)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_array_bound_token1] = ACTIONS(4485), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(2974)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2975)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5915), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(2976)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5915), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(2977)] = { + [sym_identifier] = ACTIONS(5841), + [sym_newline] = ACTIONS(5843), + [anon_sym_COLON] = ACTIONS(5843), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5841), + [aux_sym_frm_property_statement_token1] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5843), + [aux_sym__attribute_identifier_token1] = ACTIONS(5841), + [aux_sym_option_statement_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5841), + [aux_sym_preprocessor_const_token1] = ACTIONS(5841), + [sym_static_modifier] = ACTIONS(5841), + [sym__dim_keyword] = ACTIONS(5841), + [sym__redim_keyword] = ACTIONS(5841), + [aux_sym_get_accessor_token1] = ACTIONS(5841), + [aux_sym_set_accessor_token1] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(5843), + [aux_sym_const_declaration_token1] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5843), + [aux_sym_as_type_clause_token2] = ACTIONS(5841), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5841), + [aux_sym_visibility_token1] = ACTIONS(5841), + [aux_sym_visibility_token2] = ACTIONS(5841), + [aux_sym_elseif_fragment_token1] = ACTIONS(5841), + [aux_sym_else_fragment_token1] = ACTIONS(5841), + [aux_sym_select_statement_token1] = ACTIONS(5841), + [aux_sym__for_header_token1] = ACTIONS(5841), + [aux_sym_do_statement_token1] = ACTIONS(5841), + [aux_sym_do_condition_token1] = ACTIONS(5841), + [aux_sym_with_statement_token1] = ACTIONS(5841), + [aux_sym_exit_statement_token1] = ACTIONS(5841), + [sym_end_statement] = ACTIONS(5843), + [aux_sym_on_goto_statement_token1] = ACTIONS(5841), + [aux_sym_on_goto_statement_token2] = ACTIONS(5841), + [aux_sym_on_error_statement_token2] = ACTIONS(5841), + [sym__ambiguous_redim_statement] = ACTIONS(5843), + [aux_sym_erase_statement_token1] = ACTIONS(5841), + [aux_sym_open_statement_token1] = ACTIONS(5841), + [aux_sym_file_mode_token2] = ACTIONS(5841), + [aux_sym_file_access_token2] = ACTIONS(5841), + [aux_sym_file_lock_token2] = ACTIONS(5841), + [aux_sym_print_statement_token1] = ACTIONS(5841), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_SEMI] = ACTIONS(5843), + [anon_sym_QMARK] = ACTIONS(5843), + [aux_sym_close_statement_token1] = ACTIONS(5841), + [aux_sym_put_statement_token1] = ACTIONS(5841), + [aux_sym_unlock_statement_token1] = ACTIONS(5841), + [aux_sym_seek_statement_token1] = ACTIONS(5841), + [sym_reset_statement] = ACTIONS(5841), + [aux_sym_raise_event_statement_token1] = ACTIONS(5841), + [sym_stop_statement] = ACTIONS(5841), + [sym_beep_statement] = ACTIONS(5841), + [aux_sym_unload_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token2] = ACTIONS(5841), + [aux_sym_def_type_statement_token3] = ACTIONS(5841), + [aux_sym_def_type_statement_token4] = ACTIONS(5841), + [aux_sym_def_type_statement_token5] = ACTIONS(5841), + [aux_sym_def_type_statement_token6] = ACTIONS(5841), + [aux_sym_def_type_statement_token7] = ACTIONS(5841), + [aux_sym_def_type_statement_token8] = ACTIONS(5841), + [aux_sym_def_type_statement_token9] = ACTIONS(5841), + [aux_sym_def_type_statement_token10] = ACTIONS(5841), + [aux_sym_def_type_statement_token11] = ACTIONS(5841), + [aux_sym_def_type_statement_token12] = ACTIONS(5841), + [aux_sym_def_type_statement_token13] = ACTIONS(5841), + [aux_sym_def_type_statement_token14] = ACTIONS(5841), + [aux_sym_call_statement_token1] = ACTIONS(5841), + [sym__ambiguous_call_statement] = ACTIONS(5841), + [aux_sym_addressof_expression_token1] = ACTIONS(5841), + [aux_sym_type_of_expression_token1] = ACTIONS(5841), + [aux_sym_unary_expression_token1] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5843), + [sym_number_literal] = ACTIONS(5843), + [aux_sym_boolean_literal_token1] = ACTIONS(5841), + [aux_sym_boolean_literal_token2] = ACTIONS(5841), + [sym_nothing_literal] = ACTIONS(5841), + [sym_null_literal] = ACTIONS(5841), + [sym_empty_literal] = ACTIONS(5841), + [sym_date_literal] = ACTIONS(5843), + [anon_sym_POUND] = ACTIONS(5841), + }, + [STATE(2978)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_array_bound_token1] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_while_statement_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(2979)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_array_bound_token1] = ACTIONS(4441), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7752), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(2980)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_select_statement_token2] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2981)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_select_statement_token2] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2982)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7754), + [aux_sym_array_bound_token1] = ACTIONS(4451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7752), + [anon_sym_SLASH] = ACTIONS(7754), + [anon_sym_BSLASH] = ACTIONS(7756), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7758), + [anon_sym_PLUS] = ACTIONS(7760), + [anon_sym_DASH] = ACTIONS(7762), + [anon_sym_AMP] = ACTIONS(7764), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7768), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7770), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7772), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7774), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(2983)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5915), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(2984)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5915), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(2985)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(2986)] = { + [sym_identifier] = ACTIONS(5699), + [sym_newline] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5701), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5699), + [aux_sym_frm_property_statement_token1] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5699), + [anon_sym_BANG] = ACTIONS(5701), + [aux_sym__attribute_identifier_token1] = ACTIONS(5699), + [aux_sym_option_statement_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5699), + [aux_sym_preprocessor_const_token1] = ACTIONS(5699), + [sym_static_modifier] = ACTIONS(5699), + [sym__dim_keyword] = ACTIONS(5699), + [sym__redim_keyword] = ACTIONS(5699), + [aux_sym_get_accessor_token1] = ACTIONS(5699), + [aux_sym_set_accessor_token1] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5701), + [aux_sym_const_declaration_token1] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(5701), + [aux_sym_as_type_clause_token2] = ACTIONS(5699), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5699), + [aux_sym_visibility_token1] = ACTIONS(5699), + [aux_sym_visibility_token2] = ACTIONS(5699), + [aux_sym_elseif_fragment_token1] = ACTIONS(5699), + [aux_sym_else_fragment_token1] = ACTIONS(5699), + [aux_sym_select_statement_token1] = ACTIONS(5699), + [aux_sym__for_header_token1] = ACTIONS(5699), + [aux_sym_do_statement_token1] = ACTIONS(5699), + [aux_sym_do_condition_token1] = ACTIONS(5699), + [aux_sym_with_statement_token1] = ACTIONS(5699), + [aux_sym_exit_statement_token1] = ACTIONS(5699), + [sym_end_statement] = ACTIONS(5701), + [aux_sym_on_goto_statement_token1] = ACTIONS(5699), + [aux_sym_on_goto_statement_token2] = ACTIONS(5699), + [aux_sym_on_error_statement_token2] = ACTIONS(5699), + [sym__ambiguous_redim_statement] = ACTIONS(5701), + [aux_sym_erase_statement_token1] = ACTIONS(5699), + [aux_sym_open_statement_token1] = ACTIONS(5699), + [aux_sym_file_mode_token2] = ACTIONS(5699), + [aux_sym_file_access_token2] = ACTIONS(5699), + [aux_sym_file_lock_token2] = ACTIONS(5699), + [aux_sym_print_statement_token1] = ACTIONS(5699), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7776), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7778), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6488), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6490), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6492), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5701), + [aux_sym_close_statement_token1] = ACTIONS(5699), + [aux_sym_put_statement_token1] = ACTIONS(5699), + [aux_sym_unlock_statement_token1] = ACTIONS(5699), + [aux_sym_seek_statement_token1] = ACTIONS(5699), + [sym_reset_statement] = ACTIONS(5699), + [aux_sym_raise_event_statement_token1] = ACTIONS(5699), + [sym_stop_statement] = ACTIONS(5699), + [sym_beep_statement] = ACTIONS(5699), + [aux_sym_unload_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token2] = ACTIONS(5699), + [aux_sym_def_type_statement_token3] = ACTIONS(5699), + [aux_sym_def_type_statement_token4] = ACTIONS(5699), + [aux_sym_def_type_statement_token5] = ACTIONS(5699), + [aux_sym_def_type_statement_token6] = ACTIONS(5699), + [aux_sym_def_type_statement_token7] = ACTIONS(5699), + [aux_sym_def_type_statement_token8] = ACTIONS(5699), + [aux_sym_def_type_statement_token9] = ACTIONS(5699), + [aux_sym_def_type_statement_token10] = ACTIONS(5699), + [aux_sym_def_type_statement_token11] = ACTIONS(5699), + [aux_sym_def_type_statement_token12] = ACTIONS(5699), + [aux_sym_def_type_statement_token13] = ACTIONS(5699), + [aux_sym_def_type_statement_token14] = ACTIONS(5699), + [aux_sym_call_statement_token1] = ACTIONS(5699), + [sym__ambiguous_call_statement] = ACTIONS(5699), + [aux_sym_addressof_expression_token1] = ACTIONS(5699), + [aux_sym_type_of_expression_token1] = ACTIONS(5699), + [aux_sym_unary_expression_token1] = ACTIONS(5699), + [sym_string_literal] = ACTIONS(5701), + [sym_number_literal] = ACTIONS(5701), + [aux_sym_boolean_literal_token1] = ACTIONS(5699), + [aux_sym_boolean_literal_token2] = ACTIONS(5699), + [sym_nothing_literal] = ACTIONS(5699), + [sym_null_literal] = ACTIONS(5699), + [sym_empty_literal] = ACTIONS(5699), + [sym_date_literal] = ACTIONS(5701), + [anon_sym_POUND] = ACTIONS(5699), + }, + [STATE(2987)] = { + [sym_identifier] = ACTIONS(5752), + [sym_newline] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5752), + [aux_sym_frm_property_statement_token1] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5752), + [anon_sym_BANG] = ACTIONS(5754), + [aux_sym__attribute_identifier_token1] = ACTIONS(5752), + [aux_sym_option_statement_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5752), + [aux_sym_preprocessor_const_token1] = ACTIONS(5752), + [sym_static_modifier] = ACTIONS(5752), + [sym__dim_keyword] = ACTIONS(5752), + [sym__redim_keyword] = ACTIONS(5752), + [aux_sym_get_accessor_token1] = ACTIONS(5752), + [aux_sym_set_accessor_token1] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5754), + [aux_sym_const_declaration_token1] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [aux_sym_as_type_clause_token2] = ACTIONS(5752), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5752), + [aux_sym_visibility_token1] = ACTIONS(5752), + [aux_sym_visibility_token2] = ACTIONS(5752), + [aux_sym_elseif_fragment_token1] = ACTIONS(5752), + [aux_sym_else_fragment_token1] = ACTIONS(5752), + [aux_sym_select_statement_token1] = ACTIONS(5752), + [aux_sym__for_header_token1] = ACTIONS(5752), + [aux_sym_do_statement_token1] = ACTIONS(5752), + [aux_sym_do_condition_token1] = ACTIONS(5752), + [aux_sym_with_statement_token1] = ACTIONS(5752), + [aux_sym_exit_statement_token1] = ACTIONS(5752), + [sym_end_statement] = ACTIONS(5754), + [aux_sym_on_goto_statement_token1] = ACTIONS(5752), + [aux_sym_on_goto_statement_token2] = ACTIONS(5752), + [aux_sym_on_error_statement_token2] = ACTIONS(5752), + [sym__ambiguous_redim_statement] = ACTIONS(5754), + [aux_sym_erase_statement_token1] = ACTIONS(5752), + [aux_sym_open_statement_token1] = ACTIONS(5752), + [aux_sym_file_mode_token2] = ACTIONS(5752), + [aux_sym_file_access_token2] = ACTIONS(5752), + [aux_sym_file_lock_token2] = ACTIONS(5752), + [aux_sym_print_statement_token1] = ACTIONS(5752), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7776), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7778), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6488), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6490), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6492), + [anon_sym_SEMI] = ACTIONS(5754), + [anon_sym_QMARK] = ACTIONS(5754), + [aux_sym_close_statement_token1] = ACTIONS(5752), + [aux_sym_put_statement_token1] = ACTIONS(5752), + [aux_sym_unlock_statement_token1] = ACTIONS(5752), + [aux_sym_seek_statement_token1] = ACTIONS(5752), + [sym_reset_statement] = ACTIONS(5752), + [aux_sym_raise_event_statement_token1] = ACTIONS(5752), + [sym_stop_statement] = ACTIONS(5752), + [sym_beep_statement] = ACTIONS(5752), + [aux_sym_unload_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token2] = ACTIONS(5752), + [aux_sym_def_type_statement_token3] = ACTIONS(5752), + [aux_sym_def_type_statement_token4] = ACTIONS(5752), + [aux_sym_def_type_statement_token5] = ACTIONS(5752), + [aux_sym_def_type_statement_token6] = ACTIONS(5752), + [aux_sym_def_type_statement_token7] = ACTIONS(5752), + [aux_sym_def_type_statement_token8] = ACTIONS(5752), + [aux_sym_def_type_statement_token9] = ACTIONS(5752), + [aux_sym_def_type_statement_token10] = ACTIONS(5752), + [aux_sym_def_type_statement_token11] = ACTIONS(5752), + [aux_sym_def_type_statement_token12] = ACTIONS(5752), + [aux_sym_def_type_statement_token13] = ACTIONS(5752), + [aux_sym_def_type_statement_token14] = ACTIONS(5752), + [aux_sym_call_statement_token1] = ACTIONS(5752), + [sym__ambiguous_call_statement] = ACTIONS(5752), + [aux_sym_addressof_expression_token1] = ACTIONS(5752), + [aux_sym_type_of_expression_token1] = ACTIONS(5752), + [aux_sym_unary_expression_token1] = ACTIONS(5752), + [sym_string_literal] = ACTIONS(5754), + [sym_number_literal] = ACTIONS(5754), + [aux_sym_boolean_literal_token1] = ACTIONS(5752), + [aux_sym_boolean_literal_token2] = ACTIONS(5752), + [sym_nothing_literal] = ACTIONS(5752), + [sym_null_literal] = ACTIONS(5752), + [sym_empty_literal] = ACTIONS(5752), + [sym_date_literal] = ACTIONS(5754), + [anon_sym_POUND] = ACTIONS(5752), + }, + [STATE(2988)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6488), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6490), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6492), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(2989)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(2990)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_statement_token2] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token3] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(2991)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_statement_token2] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2992)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(2993)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_while_statement_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2994)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6484), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6488), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6490), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6492), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(2995)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_statement_token2] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(2996)] = { + [sym_identifier] = ACTIONS(5851), + [sym_newline] = ACTIONS(5853), + [anon_sym_COLON] = ACTIONS(5853), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5851), + [aux_sym_frm_property_statement_token1] = ACTIONS(5851), + [anon_sym_DOT] = ACTIONS(7780), + [anon_sym_BANG] = ACTIONS(7782), + [aux_sym__attribute_identifier_token1] = ACTIONS(5851), + [aux_sym_option_statement_token3] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5851), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5851), + [aux_sym_preprocessor_const_token1] = ACTIONS(5851), + [sym_static_modifier] = ACTIONS(5851), + [sym__dim_keyword] = ACTIONS(5851), + [sym__redim_keyword] = ACTIONS(5851), + [aux_sym_get_accessor_token1] = ACTIONS(5851), + [aux_sym_set_accessor_token1] = ACTIONS(5851), + [anon_sym_COMMA] = ACTIONS(5853), + [aux_sym_const_declaration_token1] = ACTIONS(5851), + [anon_sym_LPAREN] = ACTIONS(5853), + [aux_sym_as_type_clause_token2] = ACTIONS(5851), + [anon_sym_STAR] = ACTIONS(5859), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5851), + [aux_sym_visibility_token1] = ACTIONS(5851), + [aux_sym_visibility_token2] = ACTIONS(5851), + [aux_sym_elseif_fragment_token1] = ACTIONS(5851), + [aux_sym_else_fragment_token1] = ACTIONS(5851), + [aux_sym_select_statement_token1] = ACTIONS(5851), + [aux_sym__for_header_token1] = ACTIONS(5851), + [aux_sym_do_statement_token1] = ACTIONS(5851), + [aux_sym_do_condition_token1] = ACTIONS(5851), + [aux_sym_with_statement_token1] = ACTIONS(5851), + [aux_sym_exit_statement_token1] = ACTIONS(5851), + [sym_end_statement] = ACTIONS(5853), + [aux_sym_on_goto_statement_token1] = ACTIONS(5851), + [aux_sym_on_goto_statement_token2] = ACTIONS(5851), + [aux_sym_on_error_statement_token2] = ACTIONS(5851), + [sym__ambiguous_redim_statement] = ACTIONS(5853), + [aux_sym_erase_statement_token1] = ACTIONS(5851), + [aux_sym_open_statement_token1] = ACTIONS(5851), + [aux_sym_file_mode_token2] = ACTIONS(5851), + [aux_sym_file_access_token2] = ACTIONS(5851), + [aux_sym_file_lock_token2] = ACTIONS(5851), + [aux_sym_print_statement_token1] = ACTIONS(5851), + [anon_sym_CARET] = ACTIONS(5859), + [anon_sym_SLASH] = ACTIONS(5859), + [anon_sym_BSLASH] = ACTIONS(5859), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5861), + [anon_sym_PLUS] = ACTIONS(5863), + [anon_sym_DASH] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5861), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5861), + [anon_sym_SEMI] = ACTIONS(5853), + [anon_sym_QMARK] = ACTIONS(5853), + [aux_sym_close_statement_token1] = ACTIONS(5851), + [aux_sym_put_statement_token1] = ACTIONS(5851), + [aux_sym_unlock_statement_token1] = ACTIONS(5851), + [aux_sym_seek_statement_token1] = ACTIONS(5851), + [sym_reset_statement] = ACTIONS(5851), + [aux_sym_raise_event_statement_token1] = ACTIONS(5851), + [sym_stop_statement] = ACTIONS(5851), + [sym_beep_statement] = ACTIONS(5851), + [aux_sym_unload_statement_token1] = ACTIONS(5851), + [aux_sym_def_type_statement_token1] = ACTIONS(5851), + [aux_sym_def_type_statement_token2] = ACTIONS(5851), + [aux_sym_def_type_statement_token3] = ACTIONS(5851), + [aux_sym_def_type_statement_token4] = ACTIONS(5851), + [aux_sym_def_type_statement_token5] = ACTIONS(5851), + [aux_sym_def_type_statement_token6] = ACTIONS(5851), + [aux_sym_def_type_statement_token7] = ACTIONS(5851), + [aux_sym_def_type_statement_token8] = ACTIONS(5851), + [aux_sym_def_type_statement_token9] = ACTIONS(5851), + [aux_sym_def_type_statement_token10] = ACTIONS(5851), + [aux_sym_def_type_statement_token11] = ACTIONS(5851), + [aux_sym_def_type_statement_token12] = ACTIONS(5851), + [aux_sym_def_type_statement_token13] = ACTIONS(5851), + [aux_sym_def_type_statement_token14] = ACTIONS(5851), + [aux_sym_call_statement_token1] = ACTIONS(5851), + [sym__ambiguous_call_statement] = ACTIONS(5851), + [aux_sym_addressof_expression_token1] = ACTIONS(5851), + [aux_sym_type_of_expression_token1] = ACTIONS(5851), + [aux_sym_unary_expression_token1] = ACTIONS(5851), + [sym_string_literal] = ACTIONS(5853), + [sym_number_literal] = ACTIONS(5853), + [aux_sym_boolean_literal_token1] = ACTIONS(5851), + [aux_sym_boolean_literal_token2] = ACTIONS(5851), + [sym_nothing_literal] = ACTIONS(5851), + [sym_null_literal] = ACTIONS(5851), + [sym_empty_literal] = ACTIONS(5851), + [sym_date_literal] = ACTIONS(5853), + [anon_sym_POUND] = ACTIONS(5851), + }, + [STATE(2997)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_statement_token2] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token3] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(2998)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_select_statement_token2] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(7784), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(2999)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_array_bound_token1] = ACTIONS(4589), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_select_statement_token2] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(3000)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6555), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_select_statement_token2] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6553), + [anon_sym_SLASH] = ACTIONS(6555), + [anon_sym_BSLASH] = ACTIONS(6557), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6559), + [anon_sym_PLUS] = ACTIONS(6561), + [anon_sym_DASH] = ACTIONS(6563), + [anon_sym_AMP] = ACTIONS(6565), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(3001)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_statement_token2] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token3] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(3002)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_array_bound_token1] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(3003)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_array_bound_token1] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(3004)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3005)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3006)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7716), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(7716), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3007)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7716), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(7716), + [anon_sym_BSLASH] = ACTIONS(7718), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3008)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7716), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(7716), + [anon_sym_BSLASH] = ACTIONS(7718), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7720), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3009)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7716), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(7716), + [anon_sym_BSLASH] = ACTIONS(7718), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7720), + [anon_sym_PLUS] = ACTIONS(7722), + [anon_sym_DASH] = ACTIONS(7724), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3010)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7716), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(7716), + [anon_sym_BSLASH] = ACTIONS(7718), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7720), + [anon_sym_PLUS] = ACTIONS(7722), + [anon_sym_DASH] = ACTIONS(7724), + [anon_sym_AMP] = ACTIONS(7726), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3011)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7716), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(7716), + [anon_sym_BSLASH] = ACTIONS(7718), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7720), + [anon_sym_PLUS] = ACTIONS(7722), + [anon_sym_DASH] = ACTIONS(7724), + [anon_sym_AMP] = ACTIONS(7726), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7728), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3012)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7716), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(7716), + [anon_sym_BSLASH] = ACTIONS(7718), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7720), + [anon_sym_PLUS] = ACTIONS(7722), + [anon_sym_DASH] = ACTIONS(7724), + [anon_sym_AMP] = ACTIONS(7726), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7728), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7730), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3013)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7716), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(7716), + [anon_sym_BSLASH] = ACTIONS(7718), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7720), + [anon_sym_PLUS] = ACTIONS(7722), + [anon_sym_DASH] = ACTIONS(7724), + [anon_sym_AMP] = ACTIONS(7726), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7728), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7730), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7732), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3014)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7716), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(7716), + [anon_sym_BSLASH] = ACTIONS(7718), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7720), + [anon_sym_PLUS] = ACTIONS(7722), + [anon_sym_DASH] = ACTIONS(7724), + [anon_sym_AMP] = ACTIONS(7726), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7728), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7730), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7732), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7734), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3015)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_array_bound_token1] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(3016)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_while_statement_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token3] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(3017)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_while_statement_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token3] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(3018)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_while_statement_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token3] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(3019)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3020)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_select_statement_token2] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3021)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_array_bound_token1] = ACTIONS(4589), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(3022)] = { + [sym_identifier] = ACTIONS(5821), + [sym_newline] = ACTIONS(5823), + [anon_sym_COLON] = ACTIONS(5823), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5821), + [aux_sym_frm_property_statement_token1] = ACTIONS(5821), + [anon_sym_DOT] = ACTIONS(5821), + [anon_sym_BANG] = ACTIONS(5823), + [aux_sym__attribute_identifier_token1] = ACTIONS(5821), + [aux_sym_option_statement_token3] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5821), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5821), + [aux_sym_preprocessor_const_token1] = ACTIONS(5821), + [sym_static_modifier] = ACTIONS(5821), + [sym__dim_keyword] = ACTIONS(5821), + [sym__redim_keyword] = ACTIONS(5821), + [aux_sym_get_accessor_token1] = ACTIONS(5821), + [aux_sym_set_accessor_token1] = ACTIONS(5821), + [anon_sym_COMMA] = ACTIONS(5823), + [aux_sym_const_declaration_token1] = ACTIONS(5821), + [anon_sym_LPAREN] = ACTIONS(5823), + [aux_sym_as_type_clause_token2] = ACTIONS(5821), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5821), + [aux_sym_visibility_token1] = ACTIONS(5821), + [aux_sym_visibility_token2] = ACTIONS(5821), + [aux_sym_elseif_fragment_token1] = ACTIONS(5821), + [aux_sym_else_fragment_token1] = ACTIONS(5821), + [aux_sym_select_statement_token1] = ACTIONS(5821), + [aux_sym__for_header_token1] = ACTIONS(5821), + [aux_sym_do_statement_token1] = ACTIONS(5821), + [aux_sym_do_condition_token1] = ACTIONS(5821), + [aux_sym_with_statement_token1] = ACTIONS(5821), + [aux_sym_exit_statement_token1] = ACTIONS(5821), + [sym_end_statement] = ACTIONS(5823), + [aux_sym_on_goto_statement_token1] = ACTIONS(5821), + [aux_sym_on_goto_statement_token2] = ACTIONS(5821), + [aux_sym_on_error_statement_token2] = ACTIONS(5821), + [sym__ambiguous_redim_statement] = ACTIONS(5823), + [aux_sym_erase_statement_token1] = ACTIONS(5821), + [aux_sym_open_statement_token1] = ACTIONS(5821), + [aux_sym_file_mode_token2] = ACTIONS(5821), + [aux_sym_file_access_token2] = ACTIONS(5821), + [aux_sym_file_lock_token2] = ACTIONS(5821), + [aux_sym_print_statement_token1] = ACTIONS(5821), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_SEMI] = ACTIONS(5823), + [anon_sym_QMARK] = ACTIONS(5823), + [aux_sym_close_statement_token1] = ACTIONS(5821), + [aux_sym_put_statement_token1] = ACTIONS(5821), + [aux_sym_unlock_statement_token1] = ACTIONS(5821), + [aux_sym_seek_statement_token1] = ACTIONS(5821), + [sym_reset_statement] = ACTIONS(5821), + [aux_sym_raise_event_statement_token1] = ACTIONS(5821), + [sym_stop_statement] = ACTIONS(5821), + [sym_beep_statement] = ACTIONS(5821), + [aux_sym_unload_statement_token1] = ACTIONS(5821), + [aux_sym_def_type_statement_token1] = ACTIONS(5821), + [aux_sym_def_type_statement_token2] = ACTIONS(5821), + [aux_sym_def_type_statement_token3] = ACTIONS(5821), + [aux_sym_def_type_statement_token4] = ACTIONS(5821), + [aux_sym_def_type_statement_token5] = ACTIONS(5821), + [aux_sym_def_type_statement_token6] = ACTIONS(5821), + [aux_sym_def_type_statement_token7] = ACTIONS(5821), + [aux_sym_def_type_statement_token8] = ACTIONS(5821), + [aux_sym_def_type_statement_token9] = ACTIONS(5821), + [aux_sym_def_type_statement_token10] = ACTIONS(5821), + [aux_sym_def_type_statement_token11] = ACTIONS(5821), + [aux_sym_def_type_statement_token12] = ACTIONS(5821), + [aux_sym_def_type_statement_token13] = ACTIONS(5821), + [aux_sym_def_type_statement_token14] = ACTIONS(5821), + [aux_sym_call_statement_token1] = ACTIONS(5821), + [sym__ambiguous_call_statement] = ACTIONS(5821), + [aux_sym_addressof_expression_token1] = ACTIONS(5821), + [aux_sym_type_of_expression_token1] = ACTIONS(5821), + [aux_sym_unary_expression_token1] = ACTIONS(5821), + [sym_string_literal] = ACTIONS(5823), + [sym_number_literal] = ACTIONS(5823), + [aux_sym_boolean_literal_token1] = ACTIONS(5821), + [aux_sym_boolean_literal_token2] = ACTIONS(5821), + [sym_nothing_literal] = ACTIONS(5821), + [sym_null_literal] = ACTIONS(5821), + [sym_empty_literal] = ACTIONS(5821), + [sym_date_literal] = ACTIONS(5823), + [anon_sym_POUND] = ACTIONS(5821), + }, + [STATE(3023)] = { + [sym_identifier] = ACTIONS(5869), + [sym_newline] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5869), + [aux_sym_frm_property_statement_token1] = ACTIONS(5869), + [anon_sym_DOT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [aux_sym__attribute_identifier_token1] = ACTIONS(5869), + [aux_sym_option_statement_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5869), + [aux_sym_preprocessor_const_token1] = ACTIONS(5869), + [sym_static_modifier] = ACTIONS(5869), + [sym__dim_keyword] = ACTIONS(5869), + [sym__redim_keyword] = ACTIONS(5869), + [aux_sym_get_accessor_token1] = ACTIONS(5869), + [aux_sym_set_accessor_token1] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5871), + [aux_sym_const_declaration_token1] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5871), + [aux_sym_as_type_clause_token2] = ACTIONS(5869), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5869), + [aux_sym_visibility_token1] = ACTIONS(5869), + [aux_sym_visibility_token2] = ACTIONS(5869), + [aux_sym_elseif_fragment_token1] = ACTIONS(5869), + [aux_sym_else_fragment_token1] = ACTIONS(5869), + [aux_sym_select_statement_token1] = ACTIONS(5869), + [aux_sym__for_header_token1] = ACTIONS(5869), + [aux_sym_do_statement_token1] = ACTIONS(5869), + [aux_sym_do_condition_token1] = ACTIONS(5869), + [aux_sym_with_statement_token1] = ACTIONS(5869), + [aux_sym_exit_statement_token1] = ACTIONS(5869), + [sym_end_statement] = ACTIONS(5871), + [aux_sym_on_goto_statement_token1] = ACTIONS(5869), + [aux_sym_on_goto_statement_token2] = ACTIONS(5869), + [aux_sym_on_error_statement_token2] = ACTIONS(5869), + [sym__ambiguous_redim_statement] = ACTIONS(5871), + [aux_sym_erase_statement_token1] = ACTIONS(5869), + [aux_sym_open_statement_token1] = ACTIONS(5869), + [aux_sym_file_mode_token2] = ACTIONS(5869), + [aux_sym_file_access_token2] = ACTIONS(5869), + [aux_sym_file_lock_token2] = ACTIONS(5869), + [aux_sym_print_statement_token1] = ACTIONS(5869), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7776), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7778), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6488), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6490), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6492), + [anon_sym_SEMI] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [aux_sym_close_statement_token1] = ACTIONS(5869), + [aux_sym_put_statement_token1] = ACTIONS(5869), + [aux_sym_unlock_statement_token1] = ACTIONS(5869), + [aux_sym_seek_statement_token1] = ACTIONS(5869), + [sym_reset_statement] = ACTIONS(5869), + [aux_sym_raise_event_statement_token1] = ACTIONS(5869), + [sym_stop_statement] = ACTIONS(5869), + [sym_beep_statement] = ACTIONS(5869), + [aux_sym_unload_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token2] = ACTIONS(5869), + [aux_sym_def_type_statement_token3] = ACTIONS(5869), + [aux_sym_def_type_statement_token4] = ACTIONS(5869), + [aux_sym_def_type_statement_token5] = ACTIONS(5869), + [aux_sym_def_type_statement_token6] = ACTIONS(5869), + [aux_sym_def_type_statement_token7] = ACTIONS(5869), + [aux_sym_def_type_statement_token8] = ACTIONS(5869), + [aux_sym_def_type_statement_token9] = ACTIONS(5869), + [aux_sym_def_type_statement_token10] = ACTIONS(5869), + [aux_sym_def_type_statement_token11] = ACTIONS(5869), + [aux_sym_def_type_statement_token12] = ACTIONS(5869), + [aux_sym_def_type_statement_token13] = ACTIONS(5869), + [aux_sym_def_type_statement_token14] = ACTIONS(5869), + [aux_sym_call_statement_token1] = ACTIONS(5869), + [sym__ambiguous_call_statement] = ACTIONS(5869), + [aux_sym_addressof_expression_token1] = ACTIONS(5869), + [aux_sym_type_of_expression_token1] = ACTIONS(5869), + [aux_sym_unary_expression_token1] = ACTIONS(5869), + [sym_string_literal] = ACTIONS(5871), + [sym_number_literal] = ACTIONS(5871), + [aux_sym_boolean_literal_token1] = ACTIONS(5869), + [aux_sym_boolean_literal_token2] = ACTIONS(5869), + [sym_nothing_literal] = ACTIONS(5869), + [sym_null_literal] = ACTIONS(5869), + [sym_empty_literal] = ACTIONS(5869), + [sym_date_literal] = ACTIONS(5871), + [anon_sym_POUND] = ACTIONS(5869), + }, + [STATE(3024)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(3025)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym_select_statement_token2] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token3] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(3026)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(3027)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_statement_token2] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token3] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7740), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(3028)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_while_statement_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token3] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(3029)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6408), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6406), + [anon_sym_SLASH] = ACTIONS(6408), + [anon_sym_BSLASH] = ACTIONS(6410), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6412), + [anon_sym_PLUS] = ACTIONS(6414), + [anon_sym_DASH] = ACTIONS(6416), + [anon_sym_AMP] = ACTIONS(6418), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(3030)] = { + [sym_identifier] = ACTIONS(6139), + [sym_newline] = ACTIONS(6141), + [anon_sym_COLON] = ACTIONS(6141), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6139), + [aux_sym_frm_property_statement_token1] = ACTIONS(6139), + [anon_sym_DOT] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6141), + [aux_sym__attribute_identifier_token1] = ACTIONS(6139), + [aux_sym_option_statement_token3] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6139), + [aux_sym_preprocessor_const_token1] = ACTIONS(6139), + [sym_static_modifier] = ACTIONS(6139), + [sym__dim_keyword] = ACTIONS(6139), + [sym__redim_keyword] = ACTIONS(6139), + [aux_sym_get_accessor_token1] = ACTIONS(6139), + [aux_sym_set_accessor_token1] = ACTIONS(6139), + [aux_sym_const_declaration_token1] = ACTIONS(6139), + [anon_sym_LPAREN] = ACTIONS(6141), + [aux_sym_as_type_clause_token2] = ACTIONS(6139), + [anon_sym_STAR] = ACTIONS(7786), + [aux_sym_array_bound_token1] = ACTIONS(7788), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6139), + [aux_sym_visibility_token1] = ACTIONS(6139), + [aux_sym_visibility_token2] = ACTIONS(6139), + [aux_sym_elseif_fragment_token1] = ACTIONS(6139), + [aux_sym_else_fragment_token1] = ACTIONS(6139), + [aux_sym_select_statement_token1] = ACTIONS(6139), + [aux_sym__for_header_token1] = ACTIONS(6139), + [aux_sym_do_statement_token1] = ACTIONS(6139), + [aux_sym_do_condition_token1] = ACTIONS(6139), + [aux_sym_while_statement_token1] = ACTIONS(6139), + [aux_sym_with_statement_token1] = ACTIONS(6139), + [aux_sym_exit_statement_token1] = ACTIONS(6139), + [sym_end_statement] = ACTIONS(6141), + [aux_sym_on_goto_statement_token1] = ACTIONS(6139), + [aux_sym_on_goto_statement_token2] = ACTIONS(6139), + [aux_sym_on_error_statement_token2] = ACTIONS(6139), + [sym__ambiguous_redim_statement] = ACTIONS(6141), + [aux_sym_erase_statement_token1] = ACTIONS(6139), + [aux_sym_open_statement_token1] = ACTIONS(6139), + [aux_sym_file_mode_token2] = ACTIONS(6139), + [aux_sym_file_access_token2] = ACTIONS(6139), + [aux_sym_file_lock_token2] = ACTIONS(6139), + [aux_sym_print_statement_token1] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_BSLASH] = ACTIONS(7792), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7798), + [anon_sym_AMP] = ACTIONS(7800), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7802), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7804), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7806), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7808), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7810), + [anon_sym_QMARK] = ACTIONS(6141), + [aux_sym_close_statement_token1] = ACTIONS(6139), + [aux_sym_put_statement_token1] = ACTIONS(6139), + [aux_sym_unlock_statement_token1] = ACTIONS(6139), + [aux_sym_seek_statement_token1] = ACTIONS(6139), + [sym_reset_statement] = ACTIONS(6139), + [aux_sym_raise_event_statement_token1] = ACTIONS(6139), + [sym_stop_statement] = ACTIONS(6139), + [sym_beep_statement] = ACTIONS(6139), + [aux_sym_unload_statement_token1] = ACTIONS(6139), + [aux_sym_def_type_statement_token1] = ACTIONS(6139), + [aux_sym_def_type_statement_token2] = ACTIONS(6139), + [aux_sym_def_type_statement_token3] = ACTIONS(6139), + [aux_sym_def_type_statement_token4] = ACTIONS(6139), + [aux_sym_def_type_statement_token5] = ACTIONS(6139), + [aux_sym_def_type_statement_token6] = ACTIONS(6139), + [aux_sym_def_type_statement_token7] = ACTIONS(6139), + [aux_sym_def_type_statement_token8] = ACTIONS(6139), + [aux_sym_def_type_statement_token9] = ACTIONS(6139), + [aux_sym_def_type_statement_token10] = ACTIONS(6139), + [aux_sym_def_type_statement_token11] = ACTIONS(6139), + [aux_sym_def_type_statement_token12] = ACTIONS(6139), + [aux_sym_def_type_statement_token13] = ACTIONS(6139), + [aux_sym_def_type_statement_token14] = ACTIONS(6139), + [aux_sym_call_statement_token1] = ACTIONS(6139), + [sym__ambiguous_call_statement] = ACTIONS(6139), + [aux_sym_addressof_expression_token1] = ACTIONS(6139), + [aux_sym_type_of_expression_token1] = ACTIONS(6139), + [aux_sym_unary_expression_token1] = ACTIONS(6139), + [sym_string_literal] = ACTIONS(6141), + [sym_number_literal] = ACTIONS(6141), + [aux_sym_boolean_literal_token1] = ACTIONS(6139), + [aux_sym_boolean_literal_token2] = ACTIONS(6139), + [sym_nothing_literal] = ACTIONS(6139), + [sym_null_literal] = ACTIONS(6139), + [sym_empty_literal] = ACTIONS(6139), + [sym_date_literal] = ACTIONS(6141), + [anon_sym_POUND] = ACTIONS(6139), + }, + [STATE(3031)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym_select_statement_token2] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token3] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(3032)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7752), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3033)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7752), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3034)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7754), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7752), + [anon_sym_SLASH] = ACTIONS(7754), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3035)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7754), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7752), + [anon_sym_SLASH] = ACTIONS(7754), + [anon_sym_BSLASH] = ACTIONS(7756), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3036)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7754), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7752), + [anon_sym_SLASH] = ACTIONS(7754), + [anon_sym_BSLASH] = ACTIONS(7756), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7758), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3037)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7754), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7752), + [anon_sym_SLASH] = ACTIONS(7754), + [anon_sym_BSLASH] = ACTIONS(7756), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7758), + [anon_sym_PLUS] = ACTIONS(7760), + [anon_sym_DASH] = ACTIONS(7762), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3038)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7754), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7752), + [anon_sym_SLASH] = ACTIONS(7754), + [anon_sym_BSLASH] = ACTIONS(7756), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7758), + [anon_sym_PLUS] = ACTIONS(7760), + [anon_sym_DASH] = ACTIONS(7762), + [anon_sym_AMP] = ACTIONS(7764), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3039)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7754), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7752), + [anon_sym_SLASH] = ACTIONS(7754), + [anon_sym_BSLASH] = ACTIONS(7756), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7758), + [anon_sym_PLUS] = ACTIONS(7760), + [anon_sym_DASH] = ACTIONS(7762), + [anon_sym_AMP] = ACTIONS(7764), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3040)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7754), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7752), + [anon_sym_SLASH] = ACTIONS(7754), + [anon_sym_BSLASH] = ACTIONS(7756), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7758), + [anon_sym_PLUS] = ACTIONS(7760), + [anon_sym_DASH] = ACTIONS(7762), + [anon_sym_AMP] = ACTIONS(7764), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7768), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3041)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7754), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7752), + [anon_sym_SLASH] = ACTIONS(7754), + [anon_sym_BSLASH] = ACTIONS(7756), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7758), + [anon_sym_PLUS] = ACTIONS(7760), + [anon_sym_DASH] = ACTIONS(7762), + [anon_sym_AMP] = ACTIONS(7764), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7768), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7770), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3042)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7754), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7752), + [anon_sym_SLASH] = ACTIONS(7754), + [anon_sym_BSLASH] = ACTIONS(7756), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7758), + [anon_sym_PLUS] = ACTIONS(7760), + [anon_sym_DASH] = ACTIONS(7762), + [anon_sym_AMP] = ACTIONS(7764), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7768), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7770), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7772), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3043)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token3] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(7812), + [anon_sym_BSLASH] = ACTIONS(7816), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7818), + [anon_sym_PLUS] = ACTIONS(7820), + [anon_sym_DASH] = ACTIONS(7822), + [anon_sym_AMP] = ACTIONS(7824), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(3044)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7738), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_statement_token2] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token3] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7740), + [anon_sym_SLASH] = ACTIONS(7738), + [anon_sym_BSLASH] = ACTIONS(7742), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7744), + [anon_sym_PLUS] = ACTIONS(7746), + [anon_sym_DASH] = ACTIONS(7748), + [anon_sym_AMP] = ACTIONS(7750), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7826), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7828), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7830), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7832), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7834), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(3045)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym_select_statement_token2] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token3] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(3046)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_array_bound_token1] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(3047)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(3048)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3049)] = { + [sym_argument_list] = STATE(3624), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7836), + [anon_sym_BANG] = ACTIONS(4034), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_declaration_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7836), + [aux_sym_enum_declaration_token1] = ACTIONS(7836), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7836), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7836), + [aux_sym_declare_function_statement_token1] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [aux_sym__property_get_header_token1] = ACTIONS(7836), + [aux_sym_event_declaration_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(7838), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(3050)] = { + [sym_argument_list] = STATE(2888), + [sym_identifier] = ACTIONS(4030), + [sym_newline] = ACTIONS(4028), + [anon_sym_COLON] = ACTIONS(4028), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4030), + [aux_sym_frm_property_statement_token1] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4034), + [anon_sym_DOT] = ACTIONS(7320), + [anon_sym_BANG] = ACTIONS(7253), + [aux_sym__attribute_identifier_token1] = ACTIONS(4030), + [aux_sym_option_statement_token3] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4030), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4030), + [aux_sym_preprocessor_const_token1] = ACTIONS(4030), + [sym_static_modifier] = ACTIONS(4030), + [sym__dim_keyword] = ACTIONS(4030), + [sym__redim_keyword] = ACTIONS(4030), + [aux_sym_get_accessor_token1] = ACTIONS(4030), + [aux_sym_set_accessor_token1] = ACTIONS(4030), + [aux_sym_const_declaration_token1] = ACTIONS(4030), + [anon_sym_LPAREN] = ACTIONS(5807), + [aux_sym_as_type_clause_token2] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4030), + [aux_sym_visibility_token1] = ACTIONS(4030), + [aux_sym_visibility_token2] = ACTIONS(4030), + [aux_sym_elseif_fragment_token1] = ACTIONS(4030), + [aux_sym_else_fragment_token1] = ACTIONS(4030), + [aux_sym_select_statement_token1] = ACTIONS(4030), + [aux_sym__for_header_token1] = ACTIONS(4030), + [aux_sym_do_statement_token1] = ACTIONS(4030), + [aux_sym_do_condition_token1] = ACTIONS(4030), + [aux_sym_with_statement_token1] = ACTIONS(4030), + [aux_sym_exit_statement_token1] = ACTIONS(4030), + [sym_end_statement] = ACTIONS(4028), + [aux_sym_on_goto_statement_token1] = ACTIONS(4030), + [aux_sym_on_goto_statement_token2] = ACTIONS(4030), + [aux_sym_on_error_statement_token2] = ACTIONS(4030), + [sym__ambiguous_redim_statement] = ACTIONS(4028), + [aux_sym_erase_statement_token1] = ACTIONS(4030), + [aux_sym_open_statement_token1] = ACTIONS(4030), + [aux_sym_file_mode_token2] = ACTIONS(4030), + [aux_sym_file_access_token2] = ACTIONS(4030), + [aux_sym_file_lock_token2] = ACTIONS(4030), + [aux_sym_print_statement_token1] = ACTIONS(4030), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4028), + [aux_sym_close_statement_token1] = ACTIONS(4030), + [aux_sym_put_statement_token1] = ACTIONS(4030), + [aux_sym_unlock_statement_token1] = ACTIONS(4030), + [aux_sym_seek_statement_token1] = ACTIONS(4030), + [sym_reset_statement] = ACTIONS(4030), + [aux_sym_raise_event_statement_token1] = ACTIONS(4030), + [sym_stop_statement] = ACTIONS(4030), + [sym_beep_statement] = ACTIONS(4030), + [aux_sym_unload_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token1] = ACTIONS(4030), + [aux_sym_def_type_statement_token2] = ACTIONS(4030), + [aux_sym_def_type_statement_token3] = ACTIONS(4030), + [aux_sym_def_type_statement_token4] = ACTIONS(4030), + [aux_sym_def_type_statement_token5] = ACTIONS(4030), + [aux_sym_def_type_statement_token6] = ACTIONS(4030), + [aux_sym_def_type_statement_token7] = ACTIONS(4030), + [aux_sym_def_type_statement_token8] = ACTIONS(4030), + [aux_sym_def_type_statement_token9] = ACTIONS(4030), + [aux_sym_def_type_statement_token10] = ACTIONS(4030), + [aux_sym_def_type_statement_token11] = ACTIONS(4030), + [aux_sym_def_type_statement_token12] = ACTIONS(4030), + [aux_sym_def_type_statement_token13] = ACTIONS(4030), + [aux_sym_def_type_statement_token14] = ACTIONS(4030), + [aux_sym_call_statement_token1] = ACTIONS(4030), + [sym__ambiguous_call_statement] = ACTIONS(4030), + [aux_sym_addressof_expression_token1] = ACTIONS(4030), + [aux_sym_type_of_expression_token1] = ACTIONS(4030), + [aux_sym_unary_expression_token1] = ACTIONS(4030), + [sym_string_literal] = ACTIONS(4028), + [sym_number_literal] = ACTIONS(4028), + [aux_sym_boolean_literal_token1] = ACTIONS(4030), + [aux_sym_boolean_literal_token2] = ACTIONS(4030), + [sym_nothing_literal] = ACTIONS(4030), + [sym_null_literal] = ACTIONS(4030), + [sym_empty_literal] = ACTIONS(4030), + [sym_date_literal] = ACTIONS(4028), + [anon_sym_POUND] = ACTIONS(4030), + }, + [STATE(3051)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym_select_statement_token2] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token3] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7840), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(3052)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token3] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(3053)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6579), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6577), + [anon_sym_SLASH] = ACTIONS(6579), + [anon_sym_BSLASH] = ACTIONS(6581), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6583), + [anon_sym_PLUS] = ACTIONS(6585), + [anon_sym_DASH] = ACTIONS(6587), + [anon_sym_AMP] = ACTIONS(6589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(3054)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7842), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym_select_statement_token2] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token3] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7840), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_BSLASH] = ACTIONS(7844), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(7848), + [anon_sym_DASH] = ACTIONS(7850), + [anon_sym_AMP] = ACTIONS(7852), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7854), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7856), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7858), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7860), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7862), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(3055)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token3] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(3056)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3057)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_while_statement_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(3058)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_select_statement_token2] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(3059)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token3] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(3060)] = { + [sym_argument_list] = STATE(10051), + [aux_sym_input_statement_repeat1] = STATE(3495), + [sym_identifier] = ACTIONS(7864), + [sym_newline] = ACTIONS(7866), + [anon_sym_COLON] = ACTIONS(7866), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7864), + [aux_sym_frm_property_statement_token1] = ACTIONS(7864), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_BANG] = ACTIONS(7866), + [aux_sym__attribute_identifier_token1] = ACTIONS(7864), + [aux_sym_option_statement_token3] = ACTIONS(7864), + [aux_sym_type_declaration_token1] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7864), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7864), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7864), + [aux_sym_enum_declaration_token1] = ACTIONS(7864), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7864), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7864), + [aux_sym_declare_function_statement_token1] = ACTIONS(7864), + [aux_sym_preprocessor_const_token1] = ACTIONS(7864), + [aux_sym__property_get_header_token1] = ACTIONS(7864), + [aux_sym_event_declaration_token1] = ACTIONS(7864), + [sym_static_modifier] = ACTIONS(7864), + [sym__dim_keyword] = ACTIONS(7864), + [sym__redim_keyword] = ACTIONS(7864), + [aux_sym_get_accessor_token1] = ACTIONS(7864), + [aux_sym_set_accessor_token1] = ACTIONS(7864), + [anon_sym_COMMA] = ACTIONS(7868), + [aux_sym_const_declaration_token1] = ACTIONS(7864), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(7864), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7864), + [aux_sym_visibility_token1] = ACTIONS(7864), + [aux_sym_visibility_token2] = ACTIONS(7864), + [aux_sym_elseif_fragment_token1] = ACTIONS(7864), + [aux_sym_else_fragment_token1] = ACTIONS(7864), + [aux_sym_select_statement_token1] = ACTIONS(7864), + [aux_sym__for_header_token1] = ACTIONS(7864), + [aux_sym_do_statement_token1] = ACTIONS(7864), + [aux_sym_do_condition_token1] = ACTIONS(7864), + [aux_sym_with_statement_token1] = ACTIONS(7864), + [aux_sym_exit_statement_token1] = ACTIONS(7864), + [sym_end_statement] = ACTIONS(7866), + [aux_sym_on_goto_statement_token1] = ACTIONS(7864), + [aux_sym_on_goto_statement_token2] = ACTIONS(7864), + [aux_sym_on_error_statement_token2] = ACTIONS(7864), + [sym__ambiguous_redim_statement] = ACTIONS(7866), + [aux_sym_erase_statement_token1] = ACTIONS(7864), + [aux_sym_open_statement_token1] = ACTIONS(7864), + [aux_sym_file_mode_token2] = ACTIONS(7864), + [aux_sym_file_access_token2] = ACTIONS(7864), + [aux_sym_file_lock_token2] = ACTIONS(7864), + [aux_sym_print_statement_token1] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7866), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7866), + [aux_sym_close_statement_token1] = ACTIONS(7864), + [aux_sym_put_statement_token1] = ACTIONS(7864), + [aux_sym_unlock_statement_token1] = ACTIONS(7864), + [aux_sym_seek_statement_token1] = ACTIONS(7864), + [sym_reset_statement] = ACTIONS(7864), + [aux_sym_raise_event_statement_token1] = ACTIONS(7864), + [sym_stop_statement] = ACTIONS(7864), + [sym_beep_statement] = ACTIONS(7864), + [aux_sym_unload_statement_token1] = ACTIONS(7864), + [aux_sym_def_type_statement_token1] = ACTIONS(7864), + [aux_sym_def_type_statement_token2] = ACTIONS(7864), + [aux_sym_def_type_statement_token3] = ACTIONS(7864), + [aux_sym_def_type_statement_token4] = ACTIONS(7864), + [aux_sym_def_type_statement_token5] = ACTIONS(7864), + [aux_sym_def_type_statement_token6] = ACTIONS(7864), + [aux_sym_def_type_statement_token7] = ACTIONS(7864), + [aux_sym_def_type_statement_token8] = ACTIONS(7864), + [aux_sym_def_type_statement_token9] = ACTIONS(7864), + [aux_sym_def_type_statement_token10] = ACTIONS(7864), + [aux_sym_def_type_statement_token11] = ACTIONS(7864), + [aux_sym_def_type_statement_token12] = ACTIONS(7864), + [aux_sym_def_type_statement_token13] = ACTIONS(7864), + [aux_sym_def_type_statement_token14] = ACTIONS(7864), + [aux_sym_call_statement_token1] = ACTIONS(7864), + [sym__ambiguous_call_statement] = ACTIONS(7864), + [aux_sym_addressof_expression_token1] = ACTIONS(7864), + [aux_sym_type_of_expression_token1] = ACTIONS(7864), + [aux_sym_unary_expression_token1] = ACTIONS(7864), + [sym_string_literal] = ACTIONS(7866), + [sym_number_literal] = ACTIONS(7866), + [aux_sym_boolean_literal_token1] = ACTIONS(7864), + [aux_sym_boolean_literal_token2] = ACTIONS(7864), + [sym_nothing_literal] = ACTIONS(7864), + [sym_null_literal] = ACTIONS(7864), + [sym_empty_literal] = ACTIONS(7864), + [sym_date_literal] = ACTIONS(7866), + [anon_sym_POUND] = ACTIONS(7864), + }, + [STATE(3061)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(7842), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym_select_statement_token2] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token3] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(7840), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_BSLASH] = ACTIONS(7844), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(7848), + [anon_sym_DASH] = ACTIONS(7850), + [anon_sym_AMP] = ACTIONS(7852), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7854), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7856), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7858), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7860), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7862), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(3062)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_select_statement_token2] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3063)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym_select_statement_token2] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token3] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(3064)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7665), + [anon_sym_BANG] = ACTIONS(7667), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_select_statement_token2] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(3065)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token3] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(3066)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_array_bound_token1] = ACTIONS(4437), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_select_statement_token2] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(3067)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token3] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7872), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(3068)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(3076), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(7874), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(3069)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3070)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7876), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token3] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7872), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_BSLASH] = ACTIONS(7878), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7880), + [anon_sym_PLUS] = ACTIONS(7882), + [anon_sym_DASH] = ACTIONS(7884), + [anon_sym_AMP] = ACTIONS(7886), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7888), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7890), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7892), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7894), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7896), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(3071)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_array_bound_token1] = ACTIONS(4625), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_while_statement_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(3072)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_while_statement_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(3073)] = { + [sym_identifier] = ACTIONS(6139), + [sym_newline] = ACTIONS(6141), + [anon_sym_COLON] = ACTIONS(6141), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6139), + [aux_sym_frm_property_statement_token1] = ACTIONS(6139), + [anon_sym_DOT] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6141), + [aux_sym__attribute_identifier_token1] = ACTIONS(6139), + [aux_sym_option_statement_token3] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6139), + [aux_sym_preprocessor_const_token1] = ACTIONS(6139), + [sym_static_modifier] = ACTIONS(6139), + [sym__dim_keyword] = ACTIONS(6139), + [sym__redim_keyword] = ACTIONS(6139), + [aux_sym_get_accessor_token1] = ACTIONS(6139), + [aux_sym_set_accessor_token1] = ACTIONS(6139), + [aux_sym_const_declaration_token1] = ACTIONS(6139), + [anon_sym_LPAREN] = ACTIONS(6141), + [aux_sym_as_type_clause_token2] = ACTIONS(6139), + [anon_sym_STAR] = ACTIONS(7898), + [aux_sym_array_bound_token1] = ACTIONS(7900), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6139), + [aux_sym_visibility_token1] = ACTIONS(6139), + [aux_sym_visibility_token2] = ACTIONS(6139), + [aux_sym_elseif_fragment_token1] = ACTIONS(6139), + [aux_sym_else_fragment_token1] = ACTIONS(6139), + [aux_sym_select_statement_token1] = ACTIONS(6139), + [aux_sym__for_header_token1] = ACTIONS(6139), + [aux_sym_do_statement_token1] = ACTIONS(6139), + [aux_sym_do_statement_token2] = ACTIONS(6139), + [aux_sym_do_condition_token1] = ACTIONS(6139), + [aux_sym_with_statement_token1] = ACTIONS(6139), + [aux_sym_exit_statement_token1] = ACTIONS(6139), + [sym_end_statement] = ACTIONS(6141), + [aux_sym_on_goto_statement_token1] = ACTIONS(6139), + [aux_sym_on_goto_statement_token2] = ACTIONS(6139), + [aux_sym_on_error_statement_token2] = ACTIONS(6139), + [sym__ambiguous_redim_statement] = ACTIONS(6141), + [aux_sym_erase_statement_token1] = ACTIONS(6139), + [aux_sym_open_statement_token1] = ACTIONS(6139), + [aux_sym_file_mode_token2] = ACTIONS(6139), + [aux_sym_file_access_token2] = ACTIONS(6139), + [aux_sym_file_lock_token2] = ACTIONS(6139), + [aux_sym_print_statement_token1] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(7902), + [anon_sym_SLASH] = ACTIONS(7898), + [anon_sym_BSLASH] = ACTIONS(7904), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7906), + [anon_sym_PLUS] = ACTIONS(7908), + [anon_sym_DASH] = ACTIONS(7910), + [anon_sym_AMP] = ACTIONS(7912), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7914), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7916), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7918), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7920), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7922), + [anon_sym_QMARK] = ACTIONS(6141), + [aux_sym_close_statement_token1] = ACTIONS(6139), + [aux_sym_put_statement_token1] = ACTIONS(6139), + [aux_sym_unlock_statement_token1] = ACTIONS(6139), + [aux_sym_seek_statement_token1] = ACTIONS(6139), + [sym_reset_statement] = ACTIONS(6139), + [aux_sym_raise_event_statement_token1] = ACTIONS(6139), + [sym_stop_statement] = ACTIONS(6139), + [sym_beep_statement] = ACTIONS(6139), + [aux_sym_unload_statement_token1] = ACTIONS(6139), + [aux_sym_def_type_statement_token1] = ACTIONS(6139), + [aux_sym_def_type_statement_token2] = ACTIONS(6139), + [aux_sym_def_type_statement_token3] = ACTIONS(6139), + [aux_sym_def_type_statement_token4] = ACTIONS(6139), + [aux_sym_def_type_statement_token5] = ACTIONS(6139), + [aux_sym_def_type_statement_token6] = ACTIONS(6139), + [aux_sym_def_type_statement_token7] = ACTIONS(6139), + [aux_sym_def_type_statement_token8] = ACTIONS(6139), + [aux_sym_def_type_statement_token9] = ACTIONS(6139), + [aux_sym_def_type_statement_token10] = ACTIONS(6139), + [aux_sym_def_type_statement_token11] = ACTIONS(6139), + [aux_sym_def_type_statement_token12] = ACTIONS(6139), + [aux_sym_def_type_statement_token13] = ACTIONS(6139), + [aux_sym_def_type_statement_token14] = ACTIONS(6139), + [aux_sym_call_statement_token1] = ACTIONS(6139), + [sym__ambiguous_call_statement] = ACTIONS(6139), + [aux_sym_addressof_expression_token1] = ACTIONS(6139), + [aux_sym_type_of_expression_token1] = ACTIONS(6139), + [aux_sym_unary_expression_token1] = ACTIONS(6139), + [sym_string_literal] = ACTIONS(6141), + [sym_number_literal] = ACTIONS(6141), + [aux_sym_boolean_literal_token1] = ACTIONS(6139), + [aux_sym_boolean_literal_token2] = ACTIONS(6139), + [sym_nothing_literal] = ACTIONS(6139), + [sym_null_literal] = ACTIONS(6139), + [sym_empty_literal] = ACTIONS(6139), + [sym_date_literal] = ACTIONS(6141), + [anon_sym_POUND] = ACTIONS(6139), + }, + [STATE(3074)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token3] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(3075)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3076)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(3080), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_array_bound_token1] = ACTIONS(4375), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(3077)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_statement_token2] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(3078)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_statement_token2] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(3079)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token3] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(3080)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(3080), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(7924), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(3081)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3082)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(7876), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token3] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(7872), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_BSLASH] = ACTIONS(7878), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7880), + [anon_sym_PLUS] = ACTIONS(7882), + [anon_sym_DASH] = ACTIONS(7884), + [anon_sym_AMP] = ACTIONS(7886), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7888), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7890), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7892), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7894), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7896), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(3083)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym_select_statement_token2] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token3] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(3084)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7659), + [anon_sym_BANG] = ACTIONS(7661), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(3085)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token3] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(3086)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3087)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_statement_token2] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token3] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(3088)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_array_bound_token1] = ACTIONS(4437), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(3089)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3090)] = { + [sym_identifier] = ACTIONS(6139), + [sym_newline] = ACTIONS(6141), + [anon_sym_COLON] = ACTIONS(6141), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6139), + [aux_sym_frm_property_statement_token1] = ACTIONS(6139), + [anon_sym_DOT] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6141), + [aux_sym__attribute_identifier_token1] = ACTIONS(6139), + [aux_sym_option_statement_token3] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6139), + [aux_sym_preprocessor_const_token1] = ACTIONS(6139), + [sym_static_modifier] = ACTIONS(6139), + [sym__dim_keyword] = ACTIONS(6139), + [sym__redim_keyword] = ACTIONS(6139), + [aux_sym_get_accessor_token1] = ACTIONS(6139), + [aux_sym_set_accessor_token1] = ACTIONS(6139), + [aux_sym_const_declaration_token1] = ACTIONS(6139), + [anon_sym_LPAREN] = ACTIONS(6141), + [aux_sym_as_type_clause_token2] = ACTIONS(6139), + [anon_sym_STAR] = ACTIONS(7716), + [aux_sym_array_bound_token1] = ACTIONS(7927), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6139), + [aux_sym_visibility_token1] = ACTIONS(6139), + [aux_sym_visibility_token2] = ACTIONS(6139), + [aux_sym_elseif_fragment_token1] = ACTIONS(6139), + [aux_sym_else_fragment_token1] = ACTIONS(6139), + [aux_sym_select_statement_token1] = ACTIONS(6139), + [aux_sym_select_statement_token2] = ACTIONS(6139), + [aux_sym__for_header_token1] = ACTIONS(6139), + [aux_sym_do_statement_token1] = ACTIONS(6139), + [aux_sym_do_condition_token1] = ACTIONS(6139), + [aux_sym_with_statement_token1] = ACTIONS(6139), + [aux_sym_exit_statement_token1] = ACTIONS(6139), + [sym_end_statement] = ACTIONS(6141), + [aux_sym_on_goto_statement_token1] = ACTIONS(6139), + [aux_sym_on_goto_statement_token2] = ACTIONS(6139), + [aux_sym_on_error_statement_token2] = ACTIONS(6139), + [sym__ambiguous_redim_statement] = ACTIONS(6141), + [aux_sym_erase_statement_token1] = ACTIONS(6139), + [aux_sym_open_statement_token1] = ACTIONS(6139), + [aux_sym_file_mode_token2] = ACTIONS(6139), + [aux_sym_file_access_token2] = ACTIONS(6139), + [aux_sym_file_lock_token2] = ACTIONS(6139), + [aux_sym_print_statement_token1] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(7716), + [anon_sym_BSLASH] = ACTIONS(7718), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7720), + [anon_sym_PLUS] = ACTIONS(7722), + [anon_sym_DASH] = ACTIONS(7724), + [anon_sym_AMP] = ACTIONS(7726), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7728), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7730), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7732), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7734), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7736), + [anon_sym_QMARK] = ACTIONS(6141), + [aux_sym_close_statement_token1] = ACTIONS(6139), + [aux_sym_put_statement_token1] = ACTIONS(6139), + [aux_sym_unlock_statement_token1] = ACTIONS(6139), + [aux_sym_seek_statement_token1] = ACTIONS(6139), + [sym_reset_statement] = ACTIONS(6139), + [aux_sym_raise_event_statement_token1] = ACTIONS(6139), + [sym_stop_statement] = ACTIONS(6139), + [sym_beep_statement] = ACTIONS(6139), + [aux_sym_unload_statement_token1] = ACTIONS(6139), + [aux_sym_def_type_statement_token1] = ACTIONS(6139), + [aux_sym_def_type_statement_token2] = ACTIONS(6139), + [aux_sym_def_type_statement_token3] = ACTIONS(6139), + [aux_sym_def_type_statement_token4] = ACTIONS(6139), + [aux_sym_def_type_statement_token5] = ACTIONS(6139), + [aux_sym_def_type_statement_token6] = ACTIONS(6139), + [aux_sym_def_type_statement_token7] = ACTIONS(6139), + [aux_sym_def_type_statement_token8] = ACTIONS(6139), + [aux_sym_def_type_statement_token9] = ACTIONS(6139), + [aux_sym_def_type_statement_token10] = ACTIONS(6139), + [aux_sym_def_type_statement_token11] = ACTIONS(6139), + [aux_sym_def_type_statement_token12] = ACTIONS(6139), + [aux_sym_def_type_statement_token13] = ACTIONS(6139), + [aux_sym_def_type_statement_token14] = ACTIONS(6139), + [aux_sym_call_statement_token1] = ACTIONS(6139), + [sym__ambiguous_call_statement] = ACTIONS(6139), + [aux_sym_addressof_expression_token1] = ACTIONS(6139), + [aux_sym_type_of_expression_token1] = ACTIONS(6139), + [aux_sym_unary_expression_token1] = ACTIONS(6139), + [sym_string_literal] = ACTIONS(6141), + [sym_number_literal] = ACTIONS(6141), + [aux_sym_boolean_literal_token1] = ACTIONS(6139), + [aux_sym_boolean_literal_token2] = ACTIONS(6139), + [sym_nothing_literal] = ACTIONS(6139), + [sym_null_literal] = ACTIONS(6139), + [sym_empty_literal] = ACTIONS(6139), + [sym_date_literal] = ACTIONS(6141), + [anon_sym_POUND] = ACTIONS(6139), + }, + [STATE(3091)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3092)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token3] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(3093)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_while_statement_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(3094)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_while_statement_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(3095)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token3] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(7812), + [anon_sym_BSLASH] = ACTIONS(7816), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7818), + [anon_sym_PLUS] = ACTIONS(7820), + [anon_sym_DASH] = ACTIONS(7822), + [anon_sym_AMP] = ACTIONS(7824), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7929), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7931), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7933), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7935), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7937), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(3096)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7840), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3097)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7840), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3098)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7842), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7840), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3099)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7842), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7840), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_BSLASH] = ACTIONS(7844), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3100)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7842), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7840), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_BSLASH] = ACTIONS(7844), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3101)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7842), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7840), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_BSLASH] = ACTIONS(7844), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(7848), + [anon_sym_DASH] = ACTIONS(7850), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3102)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7842), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7840), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_BSLASH] = ACTIONS(7844), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(7848), + [anon_sym_DASH] = ACTIONS(7850), + [anon_sym_AMP] = ACTIONS(7852), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3103)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7842), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7840), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_BSLASH] = ACTIONS(7844), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(7848), + [anon_sym_DASH] = ACTIONS(7850), + [anon_sym_AMP] = ACTIONS(7852), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7854), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3104)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7842), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7840), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_BSLASH] = ACTIONS(7844), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(7848), + [anon_sym_DASH] = ACTIONS(7850), + [anon_sym_AMP] = ACTIONS(7852), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7854), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7856), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3105)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7842), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7840), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_BSLASH] = ACTIONS(7844), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(7848), + [anon_sym_DASH] = ACTIONS(7850), + [anon_sym_AMP] = ACTIONS(7852), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7854), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7856), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7858), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3106)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7842), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym_select_statement_token2] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7840), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_BSLASH] = ACTIONS(7844), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(7848), + [anon_sym_DASH] = ACTIONS(7850), + [anon_sym_AMP] = ACTIONS(7852), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7854), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7856), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7858), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7860), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3107)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3108)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3109)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6254), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_statement_token2] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6252), + [anon_sym_SLASH] = ACTIONS(6254), + [anon_sym_BSLASH] = ACTIONS(6256), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6258), + [anon_sym_PLUS] = ACTIONS(6260), + [anon_sym_DASH] = ACTIONS(6262), + [anon_sym_AMP] = ACTIONS(6264), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(3110)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3111)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7740), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3112)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token3] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(3113)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7740), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3114)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7738), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7740), + [anon_sym_SLASH] = ACTIONS(7738), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3115)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7738), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7740), + [anon_sym_SLASH] = ACTIONS(7738), + [anon_sym_BSLASH] = ACTIONS(7742), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3116)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7738), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7740), + [anon_sym_SLASH] = ACTIONS(7738), + [anon_sym_BSLASH] = ACTIONS(7742), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7744), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3117)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7738), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7740), + [anon_sym_SLASH] = ACTIONS(7738), + [anon_sym_BSLASH] = ACTIONS(7742), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7744), + [anon_sym_PLUS] = ACTIONS(7746), + [anon_sym_DASH] = ACTIONS(7748), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3118)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7738), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7740), + [anon_sym_SLASH] = ACTIONS(7738), + [anon_sym_BSLASH] = ACTIONS(7742), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7744), + [anon_sym_PLUS] = ACTIONS(7746), + [anon_sym_DASH] = ACTIONS(7748), + [anon_sym_AMP] = ACTIONS(7750), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3119)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7738), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7740), + [anon_sym_SLASH] = ACTIONS(7738), + [anon_sym_BSLASH] = ACTIONS(7742), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7744), + [anon_sym_PLUS] = ACTIONS(7746), + [anon_sym_DASH] = ACTIONS(7748), + [anon_sym_AMP] = ACTIONS(7750), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7826), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3120)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7738), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7740), + [anon_sym_SLASH] = ACTIONS(7738), + [anon_sym_BSLASH] = ACTIONS(7742), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7744), + [anon_sym_PLUS] = ACTIONS(7746), + [anon_sym_DASH] = ACTIONS(7748), + [anon_sym_AMP] = ACTIONS(7750), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7826), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7828), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3121)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7872), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3122)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7872), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3123)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7876), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7872), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3124)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7876), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7872), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_BSLASH] = ACTIONS(7878), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3125)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7876), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7872), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_BSLASH] = ACTIONS(7878), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7880), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3126)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7876), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7872), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_BSLASH] = ACTIONS(7878), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7880), + [anon_sym_PLUS] = ACTIONS(7882), + [anon_sym_DASH] = ACTIONS(7884), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3127)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7876), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7872), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_BSLASH] = ACTIONS(7878), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7880), + [anon_sym_PLUS] = ACTIONS(7882), + [anon_sym_DASH] = ACTIONS(7884), + [anon_sym_AMP] = ACTIONS(7886), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3128)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7876), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7872), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_BSLASH] = ACTIONS(7878), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7880), + [anon_sym_PLUS] = ACTIONS(7882), + [anon_sym_DASH] = ACTIONS(7884), + [anon_sym_AMP] = ACTIONS(7886), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7888), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3129)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7876), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7872), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_BSLASH] = ACTIONS(7878), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7880), + [anon_sym_PLUS] = ACTIONS(7882), + [anon_sym_DASH] = ACTIONS(7884), + [anon_sym_AMP] = ACTIONS(7886), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7888), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7890), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3130)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7876), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7872), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_BSLASH] = ACTIONS(7878), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7880), + [anon_sym_PLUS] = ACTIONS(7882), + [anon_sym_DASH] = ACTIONS(7884), + [anon_sym_AMP] = ACTIONS(7886), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7888), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7890), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7892), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3131)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7876), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7872), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_BSLASH] = ACTIONS(7878), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7880), + [anon_sym_PLUS] = ACTIONS(7882), + [anon_sym_DASH] = ACTIONS(7884), + [anon_sym_AMP] = ACTIONS(7886), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7888), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7890), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7892), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7894), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3132)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7738), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7740), + [anon_sym_SLASH] = ACTIONS(7738), + [anon_sym_BSLASH] = ACTIONS(7742), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7744), + [anon_sym_PLUS] = ACTIONS(7746), + [anon_sym_DASH] = ACTIONS(7748), + [anon_sym_AMP] = ACTIONS(7750), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7826), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7828), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7830), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3133)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7738), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7740), + [anon_sym_SLASH] = ACTIONS(7738), + [anon_sym_BSLASH] = ACTIONS(7742), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7744), + [anon_sym_PLUS] = ACTIONS(7746), + [anon_sym_DASH] = ACTIONS(7748), + [anon_sym_AMP] = ACTIONS(7750), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7826), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7828), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7830), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7832), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3134)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3135)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3136)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_SEMI] = ACTIONS(4483), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3137)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_array_bound_token1] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_while_statement_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(3138)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_array_bound_token1] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_while_statement_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(3139)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_array_bound_token1] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_while_statement_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(3140)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_statement_token2] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3141)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7601), + [anon_sym_BANG] = ACTIONS(7603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_statement_token2] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(3142)] = { + [aux_sym_next_variable_list_repeat1] = STATE(3148), + [sym_identifier] = ACTIONS(7939), + [sym_newline] = ACTIONS(7941), + [anon_sym_COLON] = ACTIONS(7941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7939), + [aux_sym_frm_property_statement_token1] = ACTIONS(7939), + [anon_sym_DOT] = ACTIONS(7939), + [anon_sym_BANG] = ACTIONS(7941), + [aux_sym__attribute_identifier_token1] = ACTIONS(7939), + [aux_sym_option_statement_token3] = ACTIONS(7939), + [aux_sym_type_declaration_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7939), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7939), + [aux_sym_enum_declaration_token1] = ACTIONS(7939), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7939), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7939), + [aux_sym_declare_function_statement_token1] = ACTIONS(7939), + [aux_sym_preprocessor_const_token1] = ACTIONS(7939), + [aux_sym__property_get_header_token1] = ACTIONS(7939), + [aux_sym_event_declaration_token1] = ACTIONS(7939), + [sym_static_modifier] = ACTIONS(7939), + [sym__dim_keyword] = ACTIONS(7939), + [sym__redim_keyword] = ACTIONS(7939), + [aux_sym_get_accessor_token1] = ACTIONS(7939), + [aux_sym_set_accessor_token1] = ACTIONS(7939), + [anon_sym_COMMA] = ACTIONS(7943), + [aux_sym_const_declaration_token1] = ACTIONS(7939), + [anon_sym_LPAREN] = ACTIONS(7941), + [aux_sym_as_type_clause_token2] = ACTIONS(7939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7939), + [aux_sym_visibility_token1] = ACTIONS(7939), + [aux_sym_visibility_token2] = ACTIONS(7939), + [aux_sym_elseif_fragment_token1] = ACTIONS(7939), + [aux_sym_else_fragment_token1] = ACTIONS(7939), + [aux_sym_select_statement_token1] = ACTIONS(7939), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7939), + [aux_sym__for_header_token1] = ACTIONS(7939), + [aux_sym_do_statement_token1] = ACTIONS(7939), + [aux_sym_do_condition_token1] = ACTIONS(7939), + [aux_sym_with_statement_token1] = ACTIONS(7939), + [aux_sym_exit_statement_token1] = ACTIONS(7939), + [sym_end_statement] = ACTIONS(7941), + [aux_sym_on_goto_statement_token1] = ACTIONS(7939), + [aux_sym_on_goto_statement_token2] = ACTIONS(7939), + [aux_sym_on_error_statement_token2] = ACTIONS(7939), + [sym__ambiguous_redim_statement] = ACTIONS(7941), + [aux_sym_erase_statement_token1] = ACTIONS(7939), + [aux_sym_open_statement_token1] = ACTIONS(7939), + [aux_sym_file_mode_token2] = ACTIONS(7939), + [aux_sym_file_access_token2] = ACTIONS(7939), + [aux_sym_file_lock_token2] = ACTIONS(7939), + [aux_sym_print_statement_token1] = ACTIONS(7939), + [anon_sym_PLUS] = ACTIONS(7941), + [anon_sym_DASH] = ACTIONS(7939), + [anon_sym_QMARK] = ACTIONS(7941), + [aux_sym_close_statement_token1] = ACTIONS(7939), + [aux_sym_put_statement_token1] = ACTIONS(7939), + [aux_sym_unlock_statement_token1] = ACTIONS(7939), + [aux_sym_seek_statement_token1] = ACTIONS(7939), + [sym_reset_statement] = ACTIONS(7939), + [aux_sym_raise_event_statement_token1] = ACTIONS(7939), + [sym_stop_statement] = ACTIONS(7939), + [sym_beep_statement] = ACTIONS(7939), + [aux_sym_unload_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token2] = ACTIONS(7939), + [aux_sym_def_type_statement_token3] = ACTIONS(7939), + [aux_sym_def_type_statement_token4] = ACTIONS(7939), + [aux_sym_def_type_statement_token5] = ACTIONS(7939), + [aux_sym_def_type_statement_token6] = ACTIONS(7939), + [aux_sym_def_type_statement_token7] = ACTIONS(7939), + [aux_sym_def_type_statement_token8] = ACTIONS(7939), + [aux_sym_def_type_statement_token9] = ACTIONS(7939), + [aux_sym_def_type_statement_token10] = ACTIONS(7939), + [aux_sym_def_type_statement_token11] = ACTIONS(7939), + [aux_sym_def_type_statement_token12] = ACTIONS(7939), + [aux_sym_def_type_statement_token13] = ACTIONS(7939), + [aux_sym_def_type_statement_token14] = ACTIONS(7939), + [aux_sym_call_statement_token1] = ACTIONS(7939), + [sym__ambiguous_call_statement] = ACTIONS(7939), + [aux_sym_addressof_expression_token1] = ACTIONS(7939), + [aux_sym_type_of_expression_token1] = ACTIONS(7939), + [aux_sym_unary_expression_token1] = ACTIONS(7939), + [sym_string_literal] = ACTIONS(7941), + [sym_number_literal] = ACTIONS(7941), + [aux_sym_boolean_literal_token1] = ACTIONS(7939), + [aux_sym_boolean_literal_token2] = ACTIONS(7939), + [sym_nothing_literal] = ACTIONS(7939), + [sym_null_literal] = ACTIONS(7939), + [sym_empty_literal] = ACTIONS(7939), + [sym_date_literal] = ACTIONS(7941), + [anon_sym_POUND] = ACTIONS(7939), + }, + [STATE(3143)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6444), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_while_statement_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6442), + [anon_sym_SLASH] = ACTIONS(6444), + [anon_sym_BSLASH] = ACTIONS(6446), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6448), + [anon_sym_PLUS] = ACTIONS(6450), + [anon_sym_DASH] = ACTIONS(6452), + [anon_sym_AMP] = ACTIONS(6454), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(3144)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7679), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_while_statement_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token3] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(7679), + [anon_sym_BSLASH] = ACTIONS(7683), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7685), + [anon_sym_PLUS] = ACTIONS(7687), + [anon_sym_DASH] = ACTIONS(7689), + [anon_sym_AMP] = ACTIONS(7691), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(3145)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_array_bound_token1] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_while_statement_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(3146)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_select_statement_token2] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3147)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7546), + [anon_sym_BANG] = ACTIONS(7548), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym_select_statement_token2] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(3148)] = { + [aux_sym_next_variable_list_repeat1] = STATE(3150), + [sym_identifier] = ACTIONS(7945), + [sym_newline] = ACTIONS(7947), + [anon_sym_COLON] = ACTIONS(7947), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7945), + [aux_sym_frm_property_statement_token1] = ACTIONS(7945), + [anon_sym_DOT] = ACTIONS(7945), + [anon_sym_BANG] = ACTIONS(7947), + [aux_sym__attribute_identifier_token1] = ACTIONS(7945), + [aux_sym_option_statement_token3] = ACTIONS(7945), + [aux_sym_type_declaration_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7945), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7945), + [aux_sym_enum_declaration_token1] = ACTIONS(7945), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7945), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7945), + [aux_sym_declare_function_statement_token1] = ACTIONS(7945), + [aux_sym_preprocessor_const_token1] = ACTIONS(7945), + [aux_sym__property_get_header_token1] = ACTIONS(7945), + [aux_sym_event_declaration_token1] = ACTIONS(7945), + [sym_static_modifier] = ACTIONS(7945), + [sym__dim_keyword] = ACTIONS(7945), + [sym__redim_keyword] = ACTIONS(7945), + [aux_sym_get_accessor_token1] = ACTIONS(7945), + [aux_sym_set_accessor_token1] = ACTIONS(7945), + [anon_sym_COMMA] = ACTIONS(7943), + [aux_sym_const_declaration_token1] = ACTIONS(7945), + [anon_sym_LPAREN] = ACTIONS(7947), + [aux_sym_as_type_clause_token2] = ACTIONS(7945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7945), + [aux_sym_visibility_token1] = ACTIONS(7945), + [aux_sym_visibility_token2] = ACTIONS(7945), + [aux_sym_elseif_fragment_token1] = ACTIONS(7945), + [aux_sym_else_fragment_token1] = ACTIONS(7945), + [aux_sym_select_statement_token1] = ACTIONS(7945), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7945), + [aux_sym__for_header_token1] = ACTIONS(7945), + [aux_sym_do_statement_token1] = ACTIONS(7945), + [aux_sym_do_condition_token1] = ACTIONS(7945), + [aux_sym_with_statement_token1] = ACTIONS(7945), + [aux_sym_exit_statement_token1] = ACTIONS(7945), + [sym_end_statement] = ACTIONS(7947), + [aux_sym_on_goto_statement_token1] = ACTIONS(7945), + [aux_sym_on_goto_statement_token2] = ACTIONS(7945), + [aux_sym_on_error_statement_token2] = ACTIONS(7945), + [sym__ambiguous_redim_statement] = ACTIONS(7947), + [aux_sym_erase_statement_token1] = ACTIONS(7945), + [aux_sym_open_statement_token1] = ACTIONS(7945), + [aux_sym_file_mode_token2] = ACTIONS(7945), + [aux_sym_file_access_token2] = ACTIONS(7945), + [aux_sym_file_lock_token2] = ACTIONS(7945), + [aux_sym_print_statement_token1] = ACTIONS(7945), + [anon_sym_PLUS] = ACTIONS(7947), + [anon_sym_DASH] = ACTIONS(7945), + [anon_sym_QMARK] = ACTIONS(7947), + [aux_sym_close_statement_token1] = ACTIONS(7945), + [aux_sym_put_statement_token1] = ACTIONS(7945), + [aux_sym_unlock_statement_token1] = ACTIONS(7945), + [aux_sym_seek_statement_token1] = ACTIONS(7945), + [sym_reset_statement] = ACTIONS(7945), + [aux_sym_raise_event_statement_token1] = ACTIONS(7945), + [sym_stop_statement] = ACTIONS(7945), + [sym_beep_statement] = ACTIONS(7945), + [aux_sym_unload_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token2] = ACTIONS(7945), + [aux_sym_def_type_statement_token3] = ACTIONS(7945), + [aux_sym_def_type_statement_token4] = ACTIONS(7945), + [aux_sym_def_type_statement_token5] = ACTIONS(7945), + [aux_sym_def_type_statement_token6] = ACTIONS(7945), + [aux_sym_def_type_statement_token7] = ACTIONS(7945), + [aux_sym_def_type_statement_token8] = ACTIONS(7945), + [aux_sym_def_type_statement_token9] = ACTIONS(7945), + [aux_sym_def_type_statement_token10] = ACTIONS(7945), + [aux_sym_def_type_statement_token11] = ACTIONS(7945), + [aux_sym_def_type_statement_token12] = ACTIONS(7945), + [aux_sym_def_type_statement_token13] = ACTIONS(7945), + [aux_sym_def_type_statement_token14] = ACTIONS(7945), + [aux_sym_call_statement_token1] = ACTIONS(7945), + [sym__ambiguous_call_statement] = ACTIONS(7945), + [aux_sym_addressof_expression_token1] = ACTIONS(7945), + [aux_sym_type_of_expression_token1] = ACTIONS(7945), + [aux_sym_unary_expression_token1] = ACTIONS(7945), + [sym_string_literal] = ACTIONS(7947), + [sym_number_literal] = ACTIONS(7947), + [aux_sym_boolean_literal_token1] = ACTIONS(7945), + [aux_sym_boolean_literal_token2] = ACTIONS(7945), + [sym_nothing_literal] = ACTIONS(7945), + [sym_null_literal] = ACTIONS(7945), + [sym_empty_literal] = ACTIONS(7945), + [sym_date_literal] = ACTIONS(7947), + [anon_sym_POUND] = ACTIONS(7945), + }, + [STATE(3149)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym_select_statement_token2] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token3] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(3150)] = { + [aux_sym_next_variable_list_repeat1] = STATE(3150), + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_declaration_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7949), + [aux_sym_enum_declaration_token1] = ACTIONS(7949), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7949), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7949), + [aux_sym_declare_function_statement_token1] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [aux_sym__property_get_header_token1] = ACTIONS(7949), + [aux_sym_event_declaration_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(7953), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(3151)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_select_statement_token2] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(3152)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token3] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(3153)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3154)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7293), + [anon_sym_BANG] = ACTIONS(7295), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(3155)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token3] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(3156)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_array_bound_token1] = ACTIONS(4625), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_select_statement_token2] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(3157)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_select_statement_token2] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(3158)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_statement_token2] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token3] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(3159)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(3160)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3161)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3162)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(7812), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3163)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_array_bound_token1] = ACTIONS(4625), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(3164)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(3165)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(7812), + [anon_sym_BSLASH] = ACTIONS(7816), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3166)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(7812), + [anon_sym_BSLASH] = ACTIONS(7816), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7818), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3167)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(7812), + [anon_sym_BSLASH] = ACTIONS(7816), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7818), + [anon_sym_PLUS] = ACTIONS(7820), + [anon_sym_DASH] = ACTIONS(7822), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3168)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(7812), + [anon_sym_BSLASH] = ACTIONS(7816), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7818), + [anon_sym_PLUS] = ACTIONS(7820), + [anon_sym_DASH] = ACTIONS(7822), + [anon_sym_AMP] = ACTIONS(7824), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3169)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(7812), + [anon_sym_BSLASH] = ACTIONS(7816), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7818), + [anon_sym_PLUS] = ACTIONS(7820), + [anon_sym_DASH] = ACTIONS(7822), + [anon_sym_AMP] = ACTIONS(7824), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7929), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3170)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(7812), + [anon_sym_BSLASH] = ACTIONS(7816), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7818), + [anon_sym_PLUS] = ACTIONS(7820), + [anon_sym_DASH] = ACTIONS(7822), + [anon_sym_AMP] = ACTIONS(7824), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7929), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7931), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3171)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(7812), + [anon_sym_BSLASH] = ACTIONS(7816), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7818), + [anon_sym_PLUS] = ACTIONS(7820), + [anon_sym_DASH] = ACTIONS(7822), + [anon_sym_AMP] = ACTIONS(7824), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7929), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7931), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7933), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3172)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(7812), + [anon_sym_BSLASH] = ACTIONS(7816), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7818), + [anon_sym_PLUS] = ACTIONS(7820), + [anon_sym_DASH] = ACTIONS(7822), + [anon_sym_AMP] = ACTIONS(7824), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7929), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7931), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7933), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7935), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3173)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_array_bound_token1] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_select_statement_token2] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(3174)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_array_bound_token1] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_select_statement_token2] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(3175)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_array_bound_token1] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_select_statement_token2] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(3176)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(7956), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3177)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_array_bound_token1] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(3178)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_array_bound_token1] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(3179)] = { + [sym_identifier] = ACTIONS(7234), + [sym_newline] = ACTIONS(7236), + [anon_sym_COLON] = ACTIONS(7236), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7234), + [aux_sym_frm_property_statement_token1] = ACTIONS(7234), + [anon_sym_DOT] = ACTIONS(7234), + [anon_sym_BANG] = ACTIONS(7236), + [aux_sym__attribute_identifier_token1] = ACTIONS(7234), + [aux_sym_option_statement_token3] = ACTIONS(7234), + [aux_sym_type_declaration_token1] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7234), + [aux_sym_enum_declaration_token1] = ACTIONS(7234), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7234), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7234), + [aux_sym_declare_function_statement_token1] = ACTIONS(7234), + [aux_sym_preprocessor_const_token1] = ACTIONS(7234), + [aux_sym__property_get_header_token1] = ACTIONS(7234), + [aux_sym_event_declaration_token1] = ACTIONS(7234), + [sym_static_modifier] = ACTIONS(7234), + [sym__dim_keyword] = ACTIONS(7234), + [sym__redim_keyword] = ACTIONS(7234), + [aux_sym_get_accessor_token1] = ACTIONS(7234), + [aux_sym_set_accessor_token1] = ACTIONS(7234), + [aux_sym_const_declaration_token1] = ACTIONS(7234), + [anon_sym_LPAREN] = ACTIONS(7236), + [aux_sym_as_type_clause_token2] = ACTIONS(7234), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7234), + [aux_sym_visibility_token1] = ACTIONS(7234), + [aux_sym_visibility_token2] = ACTIONS(7234), + [aux_sym_elseif_fragment_token1] = ACTIONS(7234), + [aux_sym_else_fragment_token1] = ACTIONS(7234), + [aux_sym_select_statement_token1] = ACTIONS(7234), + [aux_sym__for_header_token1] = ACTIONS(7234), + [aux_sym_do_statement_token1] = ACTIONS(7234), + [aux_sym_do_condition_token1] = ACTIONS(7234), + [aux_sym_with_statement_token1] = ACTIONS(7234), + [aux_sym_exit_statement_token1] = ACTIONS(7234), + [sym_end_statement] = ACTIONS(7236), + [aux_sym_on_goto_statement_token1] = ACTIONS(7234), + [aux_sym_on_goto_statement_token2] = ACTIONS(7234), + [aux_sym_on_error_statement_token2] = ACTIONS(7234), + [sym__ambiguous_redim_statement] = ACTIONS(7236), + [aux_sym_erase_statement_token1] = ACTIONS(7234), + [aux_sym_open_statement_token1] = ACTIONS(7234), + [aux_sym_file_mode_token2] = ACTIONS(7234), + [aux_sym_file_access_token2] = ACTIONS(7234), + [aux_sym_file_lock_token2] = ACTIONS(7234), + [aux_sym_print_statement_token1] = ACTIONS(7234), + [anon_sym_PLUS] = ACTIONS(7236), + [anon_sym_DASH] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7234), + [anon_sym_QMARK] = ACTIONS(7236), + [aux_sym_close_statement_token1] = ACTIONS(7234), + [aux_sym_put_statement_token1] = ACTIONS(7234), + [aux_sym_unlock_statement_token1] = ACTIONS(7234), + [aux_sym_seek_statement_token1] = ACTIONS(7234), + [sym_reset_statement] = ACTIONS(7234), + [aux_sym_raise_event_statement_token1] = ACTIONS(7234), + [sym_stop_statement] = ACTIONS(7234), + [sym_beep_statement] = ACTIONS(7234), + [aux_sym_unload_statement_token1] = ACTIONS(7234), + [aux_sym_def_type_statement_token1] = ACTIONS(7234), + [aux_sym_def_type_statement_token2] = ACTIONS(7234), + [aux_sym_def_type_statement_token3] = ACTIONS(7234), + [aux_sym_def_type_statement_token4] = ACTIONS(7234), + [aux_sym_def_type_statement_token5] = ACTIONS(7234), + [aux_sym_def_type_statement_token6] = ACTIONS(7234), + [aux_sym_def_type_statement_token7] = ACTIONS(7234), + [aux_sym_def_type_statement_token8] = ACTIONS(7234), + [aux_sym_def_type_statement_token9] = ACTIONS(7234), + [aux_sym_def_type_statement_token10] = ACTIONS(7234), + [aux_sym_def_type_statement_token11] = ACTIONS(7234), + [aux_sym_def_type_statement_token12] = ACTIONS(7234), + [aux_sym_def_type_statement_token13] = ACTIONS(7234), + [aux_sym_def_type_statement_token14] = ACTIONS(7234), + [aux_sym_call_statement_token1] = ACTIONS(7234), + [sym__ambiguous_call_statement] = ACTIONS(7234), + [aux_sym_addressof_expression_token1] = ACTIONS(7234), + [aux_sym_type_of_expression_token1] = ACTIONS(7234), + [aux_sym_unary_expression_token1] = ACTIONS(7234), + [sym_string_literal] = ACTIONS(7236), + [sym_number_literal] = ACTIONS(7236), + [aux_sym_boolean_literal_token1] = ACTIONS(7234), + [aux_sym_boolean_literal_token2] = ACTIONS(7234), + [sym_nothing_literal] = ACTIONS(7234), + [sym_null_literal] = ACTIONS(7234), + [sym_empty_literal] = ACTIONS(7234), + [sym_date_literal] = ACTIONS(7236), + [anon_sym_POUND] = ACTIONS(7234), + }, + [STATE(3180)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_declaration_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_enum_declaration_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7042), + [aux_sym_declare_function_statement_token1] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [aux_sym__property_get_header_token1] = ACTIONS(7042), + [aux_sym_event_declaration_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(3181)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_array_bound_token1] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(3182)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_select_statement_token2] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(3183)] = { + [sym_fixed_string_length] = STATE(3755), + [sym_array_bounds] = STATE(3860), + [sym_identifier] = ACTIONS(7134), + [sym_newline] = ACTIONS(7136), + [anon_sym_COLON] = ACTIONS(7136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7134), + [aux_sym_frm_property_statement_token1] = ACTIONS(7134), + [anon_sym_EQ] = ACTIONS(7136), + [anon_sym_DOT] = ACTIONS(7134), + [anon_sym_BANG] = ACTIONS(7136), + [aux_sym__attribute_identifier_token1] = ACTIONS(7134), + [aux_sym_option_statement_token3] = ACTIONS(7134), + [aux_sym_type_declaration_token1] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7134), + [aux_sym_enum_declaration_token1] = ACTIONS(7134), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7134), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7134), + [aux_sym_declare_function_statement_token1] = ACTIONS(7134), + [aux_sym_preprocessor_const_token1] = ACTIONS(7134), + [aux_sym__property_get_header_token1] = ACTIONS(7134), + [aux_sym_event_declaration_token1] = ACTIONS(7134), + [sym_static_modifier] = ACTIONS(7134), + [sym__dim_keyword] = ACTIONS(7134), + [sym__redim_keyword] = ACTIONS(7134), + [aux_sym_get_accessor_token1] = ACTIONS(7134), + [aux_sym_set_accessor_token1] = ACTIONS(7134), + [anon_sym_COMMA] = ACTIONS(7136), + [aux_sym_const_declaration_token1] = ACTIONS(7134), + [anon_sym_LPAREN] = ACTIONS(7958), + [aux_sym_as_type_clause_token2] = ACTIONS(7134), + [anon_sym_STAR] = ACTIONS(7960), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7134), + [aux_sym_visibility_token1] = ACTIONS(7134), + [aux_sym_visibility_token2] = ACTIONS(7134), + [aux_sym_elseif_fragment_token1] = ACTIONS(7134), + [aux_sym_else_fragment_token1] = ACTIONS(7134), + [aux_sym_select_statement_token1] = ACTIONS(7134), + [aux_sym__for_header_token1] = ACTIONS(7134), + [aux_sym_do_statement_token1] = ACTIONS(7134), + [aux_sym_do_condition_token1] = ACTIONS(7134), + [aux_sym_with_statement_token1] = ACTIONS(7134), + [aux_sym_exit_statement_token1] = ACTIONS(7134), + [sym_end_statement] = ACTIONS(7136), + [aux_sym_on_goto_statement_token1] = ACTIONS(7134), + [aux_sym_on_goto_statement_token2] = ACTIONS(7134), + [aux_sym_on_error_statement_token2] = ACTIONS(7134), + [sym__ambiguous_redim_statement] = ACTIONS(7136), + [aux_sym_erase_statement_token1] = ACTIONS(7134), + [aux_sym_open_statement_token1] = ACTIONS(7134), + [aux_sym_file_mode_token2] = ACTIONS(7134), + [aux_sym_file_access_token2] = ACTIONS(7134), + [aux_sym_file_lock_token2] = ACTIONS(7134), + [aux_sym_print_statement_token1] = ACTIONS(7134), + [anon_sym_PLUS] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7134), + [anon_sym_QMARK] = ACTIONS(7136), + [aux_sym_close_statement_token1] = ACTIONS(7134), + [aux_sym_put_statement_token1] = ACTIONS(7134), + [aux_sym_unlock_statement_token1] = ACTIONS(7134), + [aux_sym_seek_statement_token1] = ACTIONS(7134), + [sym_reset_statement] = ACTIONS(7134), + [aux_sym_raise_event_statement_token1] = ACTIONS(7134), + [sym_stop_statement] = ACTIONS(7134), + [sym_beep_statement] = ACTIONS(7134), + [aux_sym_unload_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token2] = ACTIONS(7134), + [aux_sym_def_type_statement_token3] = ACTIONS(7134), + [aux_sym_def_type_statement_token4] = ACTIONS(7134), + [aux_sym_def_type_statement_token5] = ACTIONS(7134), + [aux_sym_def_type_statement_token6] = ACTIONS(7134), + [aux_sym_def_type_statement_token7] = ACTIONS(7134), + [aux_sym_def_type_statement_token8] = ACTIONS(7134), + [aux_sym_def_type_statement_token9] = ACTIONS(7134), + [aux_sym_def_type_statement_token10] = ACTIONS(7134), + [aux_sym_def_type_statement_token11] = ACTIONS(7134), + [aux_sym_def_type_statement_token12] = ACTIONS(7134), + [aux_sym_def_type_statement_token13] = ACTIONS(7134), + [aux_sym_def_type_statement_token14] = ACTIONS(7134), + [aux_sym_call_statement_token1] = ACTIONS(7134), + [sym__ambiguous_call_statement] = ACTIONS(7134), + [aux_sym_addressof_expression_token1] = ACTIONS(7134), + [aux_sym_type_of_expression_token1] = ACTIONS(7134), + [aux_sym_unary_expression_token1] = ACTIONS(7134), + [sym_string_literal] = ACTIONS(7136), + [sym_number_literal] = ACTIONS(7136), + [aux_sym_boolean_literal_token1] = ACTIONS(7134), + [aux_sym_boolean_literal_token2] = ACTIONS(7134), + [sym_nothing_literal] = ACTIONS(7134), + [sym_null_literal] = ACTIONS(7134), + [sym_empty_literal] = ACTIONS(7134), + [sym_date_literal] = ACTIONS(7136), + [anon_sym_POUND] = ACTIONS(7134), + }, + [STATE(3184)] = { + [sym_argument_list] = STATE(3624), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7962), + [anon_sym_BANG] = ACTIONS(7964), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_declaration_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7836), + [aux_sym_enum_declaration_token1] = ACTIONS(7836), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7836), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7836), + [aux_sym_declare_function_statement_token1] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [aux_sym__property_get_header_token1] = ACTIONS(7836), + [aux_sym_event_declaration_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(7838), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(3185)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_select_statement_token2] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token3] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(3186)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_select_statement_token2] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(3187)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_statement_token2] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3188)] = { + [sym_identifier] = ACTIONS(5766), + [sym_newline] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5766), + [aux_sym_frm_property_statement_token1] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5766), + [anon_sym_BANG] = ACTIONS(5768), + [aux_sym__attribute_identifier_token1] = ACTIONS(5766), + [aux_sym_option_statement_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5766), + [aux_sym_preprocessor_const_token1] = ACTIONS(5766), + [sym_static_modifier] = ACTIONS(5766), + [sym__dim_keyword] = ACTIONS(5766), + [sym__redim_keyword] = ACTIONS(5766), + [aux_sym_get_accessor_token1] = ACTIONS(5766), + [aux_sym_set_accessor_token1] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [aux_sym_const_declaration_token1] = ACTIONS(5766), + [anon_sym_LPAREN] = ACTIONS(5768), + [aux_sym_as_type_clause_token2] = ACTIONS(5766), + [anon_sym_STAR] = ACTIONS(5768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5766), + [aux_sym_visibility_token1] = ACTIONS(5766), + [aux_sym_visibility_token2] = ACTIONS(5766), + [aux_sym_elseif_fragment_token1] = ACTIONS(5766), + [aux_sym_else_fragment_token1] = ACTIONS(5766), + [aux_sym_select_statement_token1] = ACTIONS(5766), + [aux_sym__for_header_token1] = ACTIONS(5766), + [aux_sym_do_statement_token1] = ACTIONS(5766), + [aux_sym_do_condition_token1] = ACTIONS(5766), + [aux_sym_with_statement_token1] = ACTIONS(5766), + [aux_sym_exit_statement_token1] = ACTIONS(5766), + [sym_end_statement] = ACTIONS(5768), + [aux_sym_on_goto_statement_token1] = ACTIONS(5766), + [aux_sym_on_goto_statement_token2] = ACTIONS(5766), + [aux_sym_on_error_statement_token2] = ACTIONS(5766), + [sym__ambiguous_redim_statement] = ACTIONS(5768), + [aux_sym_erase_statement_token1] = ACTIONS(5766), + [aux_sym_open_statement_token1] = ACTIONS(5766), + [aux_sym_file_mode_token2] = ACTIONS(5766), + [aux_sym_file_access_token2] = ACTIONS(5766), + [aux_sym_file_lock_token2] = ACTIONS(5766), + [aux_sym_print_statement_token1] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_BSLASH] = ACTIONS(5768), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5766), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5768), + [aux_sym_close_statement_token1] = ACTIONS(5766), + [aux_sym_put_statement_token1] = ACTIONS(5766), + [aux_sym_unlock_statement_token1] = ACTIONS(5766), + [aux_sym_seek_statement_token1] = ACTIONS(5766), + [sym_reset_statement] = ACTIONS(5766), + [aux_sym_raise_event_statement_token1] = ACTIONS(5766), + [sym_stop_statement] = ACTIONS(5766), + [sym_beep_statement] = ACTIONS(5766), + [aux_sym_unload_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token2] = ACTIONS(5766), + [aux_sym_def_type_statement_token3] = ACTIONS(5766), + [aux_sym_def_type_statement_token4] = ACTIONS(5766), + [aux_sym_def_type_statement_token5] = ACTIONS(5766), + [aux_sym_def_type_statement_token6] = ACTIONS(5766), + [aux_sym_def_type_statement_token7] = ACTIONS(5766), + [aux_sym_def_type_statement_token8] = ACTIONS(5766), + [aux_sym_def_type_statement_token9] = ACTIONS(5766), + [aux_sym_def_type_statement_token10] = ACTIONS(5766), + [aux_sym_def_type_statement_token11] = ACTIONS(5766), + [aux_sym_def_type_statement_token12] = ACTIONS(5766), + [aux_sym_def_type_statement_token13] = ACTIONS(5766), + [aux_sym_def_type_statement_token14] = ACTIONS(5766), + [aux_sym_call_statement_token1] = ACTIONS(5766), + [sym__ambiguous_call_statement] = ACTIONS(5766), + [aux_sym_addressof_expression_token1] = ACTIONS(5766), + [aux_sym_type_of_expression_token1] = ACTIONS(5766), + [aux_sym_unary_expression_token1] = ACTIONS(5766), + [sym_string_literal] = ACTIONS(5768), + [sym_number_literal] = ACTIONS(5768), + [aux_sym_boolean_literal_token1] = ACTIONS(5766), + [aux_sym_boolean_literal_token2] = ACTIONS(5766), + [sym_nothing_literal] = ACTIONS(5766), + [sym_null_literal] = ACTIONS(5766), + [sym_empty_literal] = ACTIONS(5766), + [sym_date_literal] = ACTIONS(5768), + [anon_sym_POUND] = ACTIONS(5766), + }, + [STATE(3189)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(3190)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(3191)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_array_bound_token1] = ACTIONS(4447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_statement_token2] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(3192)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(3193)] = { + [sym_fixed_string_length] = STATE(3372), + [sym_array_bounds] = STATE(3660), + [sym_identifier] = ACTIONS(7230), + [sym_newline] = ACTIONS(7232), + [anon_sym_COLON] = ACTIONS(7232), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7230), + [aux_sym_frm_property_statement_token1] = ACTIONS(7230), + [anon_sym_DOT] = ACTIONS(7230), + [anon_sym_BANG] = ACTIONS(7232), + [aux_sym__attribute_identifier_token1] = ACTIONS(7230), + [aux_sym_option_statement_token3] = ACTIONS(7230), + [aux_sym_type_declaration_token1] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7230), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7230), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7230), + [aux_sym_enum_declaration_token1] = ACTIONS(7230), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7230), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7230), + [aux_sym_declare_function_statement_token1] = ACTIONS(7230), + [aux_sym_preprocessor_const_token1] = ACTIONS(7230), + [aux_sym__property_get_header_token1] = ACTIONS(7230), + [aux_sym_event_declaration_token1] = ACTIONS(7230), + [sym_static_modifier] = ACTIONS(7230), + [sym__dim_keyword] = ACTIONS(7230), + [sym__redim_keyword] = ACTIONS(7230), + [aux_sym_get_accessor_token1] = ACTIONS(7230), + [aux_sym_set_accessor_token1] = ACTIONS(7230), + [aux_sym_const_declaration_token1] = ACTIONS(7230), + [anon_sym_LPAREN] = ACTIONS(7138), + [aux_sym_as_type_clause_token2] = ACTIONS(7230), + [anon_sym_STAR] = ACTIONS(7966), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7230), + [aux_sym_visibility_token1] = ACTIONS(7230), + [aux_sym_visibility_token2] = ACTIONS(7230), + [aux_sym_elseif_fragment_token1] = ACTIONS(7230), + [aux_sym_else_fragment_token1] = ACTIONS(7230), + [aux_sym_select_statement_token1] = ACTIONS(7230), + [aux_sym__for_header_token1] = ACTIONS(7230), + [aux_sym_do_statement_token1] = ACTIONS(7230), + [aux_sym_do_condition_token1] = ACTIONS(7230), + [aux_sym_with_statement_token1] = ACTIONS(7230), + [aux_sym_exit_statement_token1] = ACTIONS(7230), + [sym_end_statement] = ACTIONS(7232), + [aux_sym_on_goto_statement_token1] = ACTIONS(7230), + [aux_sym_on_goto_statement_token2] = ACTIONS(7230), + [aux_sym_on_error_statement_token2] = ACTIONS(7230), + [sym__ambiguous_redim_statement] = ACTIONS(7232), + [aux_sym_erase_statement_token1] = ACTIONS(7230), + [aux_sym_open_statement_token1] = ACTIONS(7230), + [aux_sym_file_mode_token2] = ACTIONS(7230), + [aux_sym_file_access_token2] = ACTIONS(7230), + [aux_sym_file_lock_token2] = ACTIONS(7230), + [aux_sym_print_statement_token1] = ACTIONS(7230), + [anon_sym_PLUS] = ACTIONS(7232), + [anon_sym_DASH] = ACTIONS(7230), + [anon_sym_QMARK] = ACTIONS(7232), + [aux_sym_close_statement_token1] = ACTIONS(7230), + [aux_sym_put_statement_token1] = ACTIONS(7230), + [aux_sym_unlock_statement_token1] = ACTIONS(7230), + [aux_sym_seek_statement_token1] = ACTIONS(7230), + [sym_reset_statement] = ACTIONS(7230), + [aux_sym_raise_event_statement_token1] = ACTIONS(7230), + [sym_stop_statement] = ACTIONS(7230), + [sym_beep_statement] = ACTIONS(7230), + [aux_sym_unload_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token2] = ACTIONS(7230), + [aux_sym_def_type_statement_token3] = ACTIONS(7230), + [aux_sym_def_type_statement_token4] = ACTIONS(7230), + [aux_sym_def_type_statement_token5] = ACTIONS(7230), + [aux_sym_def_type_statement_token6] = ACTIONS(7230), + [aux_sym_def_type_statement_token7] = ACTIONS(7230), + [aux_sym_def_type_statement_token8] = ACTIONS(7230), + [aux_sym_def_type_statement_token9] = ACTIONS(7230), + [aux_sym_def_type_statement_token10] = ACTIONS(7230), + [aux_sym_def_type_statement_token11] = ACTIONS(7230), + [aux_sym_def_type_statement_token12] = ACTIONS(7230), + [aux_sym_def_type_statement_token13] = ACTIONS(7230), + [aux_sym_def_type_statement_token14] = ACTIONS(7230), + [aux_sym_call_statement_token1] = ACTIONS(7230), + [sym__ambiguous_call_statement] = ACTIONS(7230), + [aux_sym_addressof_expression_token1] = ACTIONS(7230), + [aux_sym_type_of_expression_token1] = ACTIONS(7230), + [aux_sym_unary_expression_token1] = ACTIONS(7230), + [sym_string_literal] = ACTIONS(7232), + [sym_number_literal] = ACTIONS(7232), + [aux_sym_boolean_literal_token1] = ACTIONS(7230), + [aux_sym_boolean_literal_token2] = ACTIONS(7230), + [sym_nothing_literal] = ACTIONS(7230), + [sym_null_literal] = ACTIONS(7230), + [sym_empty_literal] = ACTIONS(7230), + [sym_date_literal] = ACTIONS(7232), + [anon_sym_POUND] = ACTIONS(7230), + }, + [STATE(3194)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token3] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(3195)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(3196)] = { + [sym_identifier] = ACTIONS(5766), + [sym_newline] = ACTIONS(5768), + [anon_sym_COLON] = ACTIONS(5768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5766), + [aux_sym_frm_property_statement_token1] = ACTIONS(5766), + [anon_sym_DOT] = ACTIONS(5766), + [anon_sym_BANG] = ACTIONS(5768), + [aux_sym__attribute_identifier_token1] = ACTIONS(5766), + [aux_sym_option_statement_token3] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5766), + [aux_sym_preprocessor_const_token1] = ACTIONS(5766), + [sym_static_modifier] = ACTIONS(5766), + [sym__dim_keyword] = ACTIONS(5766), + [sym__redim_keyword] = ACTIONS(5766), + [aux_sym_get_accessor_token1] = ACTIONS(5766), + [aux_sym_set_accessor_token1] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [aux_sym_const_declaration_token1] = ACTIONS(5766), + [anon_sym_LPAREN] = ACTIONS(5768), + [aux_sym_as_type_clause_token2] = ACTIONS(5766), + [anon_sym_STAR] = ACTIONS(5768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5766), + [aux_sym_visibility_token1] = ACTIONS(5766), + [aux_sym_visibility_token2] = ACTIONS(5766), + [aux_sym_elseif_fragment_token1] = ACTIONS(5766), + [aux_sym_else_fragment_token1] = ACTIONS(5766), + [aux_sym_select_statement_token1] = ACTIONS(5766), + [aux_sym__for_header_token1] = ACTIONS(5766), + [aux_sym_do_statement_token1] = ACTIONS(5766), + [aux_sym_do_condition_token1] = ACTIONS(5766), + [aux_sym_with_statement_token1] = ACTIONS(5766), + [aux_sym_exit_statement_token1] = ACTIONS(5766), + [sym_end_statement] = ACTIONS(5768), + [aux_sym_on_goto_statement_token1] = ACTIONS(5766), + [aux_sym_on_goto_statement_token2] = ACTIONS(5766), + [aux_sym_on_error_statement_token2] = ACTIONS(5766), + [sym__ambiguous_redim_statement] = ACTIONS(5768), + [aux_sym_erase_statement_token1] = ACTIONS(5766), + [aux_sym_open_statement_token1] = ACTIONS(5766), + [aux_sym_file_mode_token2] = ACTIONS(5766), + [aux_sym_file_access_token2] = ACTIONS(5766), + [aux_sym_file_lock_token2] = ACTIONS(5766), + [aux_sym_print_statement_token1] = ACTIONS(5766), + [anon_sym_CARET] = ACTIONS(5768), + [anon_sym_SLASH] = ACTIONS(5768), + [anon_sym_BSLASH] = ACTIONS(5768), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5766), + [anon_sym_PLUS] = ACTIONS(5768), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_AMP] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5766), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5766), + [anon_sym_SEMI] = ACTIONS(5768), + [anon_sym_QMARK] = ACTIONS(5768), + [aux_sym_close_statement_token1] = ACTIONS(5766), + [aux_sym_put_statement_token1] = ACTIONS(5766), + [aux_sym_unlock_statement_token1] = ACTIONS(5766), + [aux_sym_seek_statement_token1] = ACTIONS(5766), + [sym_reset_statement] = ACTIONS(5766), + [aux_sym_raise_event_statement_token1] = ACTIONS(5766), + [sym_stop_statement] = ACTIONS(5766), + [sym_beep_statement] = ACTIONS(5766), + [aux_sym_unload_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token1] = ACTIONS(5766), + [aux_sym_def_type_statement_token2] = ACTIONS(5766), + [aux_sym_def_type_statement_token3] = ACTIONS(5766), + [aux_sym_def_type_statement_token4] = ACTIONS(5766), + [aux_sym_def_type_statement_token5] = ACTIONS(5766), + [aux_sym_def_type_statement_token6] = ACTIONS(5766), + [aux_sym_def_type_statement_token7] = ACTIONS(5766), + [aux_sym_def_type_statement_token8] = ACTIONS(5766), + [aux_sym_def_type_statement_token9] = ACTIONS(5766), + [aux_sym_def_type_statement_token10] = ACTIONS(5766), + [aux_sym_def_type_statement_token11] = ACTIONS(5766), + [aux_sym_def_type_statement_token12] = ACTIONS(5766), + [aux_sym_def_type_statement_token13] = ACTIONS(5766), + [aux_sym_def_type_statement_token14] = ACTIONS(5766), + [aux_sym_call_statement_token1] = ACTIONS(5766), + [sym__ambiguous_call_statement] = ACTIONS(5766), + [aux_sym_addressof_expression_token1] = ACTIONS(5766), + [aux_sym_type_of_expression_token1] = ACTIONS(5766), + [aux_sym_unary_expression_token1] = ACTIONS(5766), + [sym_string_literal] = ACTIONS(5768), + [sym_number_literal] = ACTIONS(5768), + [aux_sym_boolean_literal_token1] = ACTIONS(5766), + [aux_sym_boolean_literal_token2] = ACTIONS(5766), + [sym_nothing_literal] = ACTIONS(5766), + [sym_null_literal] = ACTIONS(5766), + [sym_empty_literal] = ACTIONS(5766), + [sym_date_literal] = ACTIONS(5768), + [anon_sym_POUND] = ACTIONS(5766), + }, + [STATE(3197)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_array_bound_token1] = ACTIONS(4477), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_statement_token2] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(3198)] = { + [sym_identifier] = ACTIONS(6117), + [sym_newline] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6117), + [aux_sym_frm_property_statement_token1] = ACTIONS(6117), + [anon_sym_DOT] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6119), + [aux_sym__attribute_identifier_token1] = ACTIONS(6117), + [aux_sym_option_statement_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6117), + [aux_sym_preprocessor_const_token1] = ACTIONS(6117), + [sym_static_modifier] = ACTIONS(6117), + [sym__dim_keyword] = ACTIONS(6117), + [sym__redim_keyword] = ACTIONS(6117), + [aux_sym_get_accessor_token1] = ACTIONS(6117), + [aux_sym_set_accessor_token1] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6119), + [aux_sym_const_declaration_token1] = ACTIONS(6117), + [anon_sym_LPAREN] = ACTIONS(6119), + [aux_sym_as_type_clause_token2] = ACTIONS(6117), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6117), + [aux_sym_visibility_token1] = ACTIONS(6117), + [aux_sym_visibility_token2] = ACTIONS(6117), + [aux_sym_elseif_fragment_token1] = ACTIONS(6117), + [aux_sym_else_fragment_token1] = ACTIONS(6117), + [aux_sym_select_statement_token1] = ACTIONS(6117), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6117), + [aux_sym__for_header_token1] = ACTIONS(6117), + [aux_sym_do_statement_token1] = ACTIONS(6117), + [aux_sym_do_condition_token1] = ACTIONS(6117), + [aux_sym_with_statement_token1] = ACTIONS(6117), + [aux_sym_exit_statement_token1] = ACTIONS(6117), + [sym_end_statement] = ACTIONS(6119), + [aux_sym_on_goto_statement_token1] = ACTIONS(6117), + [aux_sym_on_goto_statement_token2] = ACTIONS(6117), + [aux_sym_on_error_statement_token2] = ACTIONS(6117), + [sym__ambiguous_redim_statement] = ACTIONS(6119), + [aux_sym_erase_statement_token1] = ACTIONS(6117), + [aux_sym_open_statement_token1] = ACTIONS(6117), + [aux_sym_file_mode_token2] = ACTIONS(6117), + [aux_sym_file_access_token2] = ACTIONS(6117), + [aux_sym_file_lock_token2] = ACTIONS(6117), + [aux_sym_print_statement_token1] = ACTIONS(6117), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6162), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6164), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6166), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6168), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6170), + [anon_sym_QMARK] = ACTIONS(6119), + [aux_sym_close_statement_token1] = ACTIONS(6117), + [aux_sym_put_statement_token1] = ACTIONS(6117), + [aux_sym_unlock_statement_token1] = ACTIONS(6117), + [aux_sym_seek_statement_token1] = ACTIONS(6117), + [sym_reset_statement] = ACTIONS(6117), + [aux_sym_raise_event_statement_token1] = ACTIONS(6117), + [sym_stop_statement] = ACTIONS(6117), + [sym_beep_statement] = ACTIONS(6117), + [aux_sym_unload_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token2] = ACTIONS(6117), + [aux_sym_def_type_statement_token3] = ACTIONS(6117), + [aux_sym_def_type_statement_token4] = ACTIONS(6117), + [aux_sym_def_type_statement_token5] = ACTIONS(6117), + [aux_sym_def_type_statement_token6] = ACTIONS(6117), + [aux_sym_def_type_statement_token7] = ACTIONS(6117), + [aux_sym_def_type_statement_token8] = ACTIONS(6117), + [aux_sym_def_type_statement_token9] = ACTIONS(6117), + [aux_sym_def_type_statement_token10] = ACTIONS(6117), + [aux_sym_def_type_statement_token11] = ACTIONS(6117), + [aux_sym_def_type_statement_token12] = ACTIONS(6117), + [aux_sym_def_type_statement_token13] = ACTIONS(6117), + [aux_sym_def_type_statement_token14] = ACTIONS(6117), + [aux_sym_call_statement_token1] = ACTIONS(6117), + [sym__ambiguous_call_statement] = ACTIONS(6117), + [aux_sym_addressof_expression_token1] = ACTIONS(6117), + [aux_sym_type_of_expression_token1] = ACTIONS(6117), + [aux_sym_unary_expression_token1] = ACTIONS(6117), + [sym_string_literal] = ACTIONS(6119), + [sym_number_literal] = ACTIONS(6119), + [aux_sym_boolean_literal_token1] = ACTIONS(6117), + [aux_sym_boolean_literal_token2] = ACTIONS(6117), + [sym_nothing_literal] = ACTIONS(6117), + [sym_null_literal] = ACTIONS(6117), + [sym_empty_literal] = ACTIONS(6117), + [sym_date_literal] = ACTIONS(6119), + [anon_sym_POUND] = ACTIONS(6117), + }, + [STATE(3199)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(3200)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3201)] = { + [sym_identifier] = ACTIONS(7968), + [sym_newline] = ACTIONS(7970), + [anon_sym_COLON] = ACTIONS(7970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7968), + [aux_sym_frm_property_statement_token1] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_BANG] = ACTIONS(7970), + [aux_sym__attribute_identifier_token1] = ACTIONS(7968), + [aux_sym_option_statement_token3] = ACTIONS(7968), + [aux_sym_type_declaration_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7968), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7968), + [aux_sym_enum_declaration_token1] = ACTIONS(7968), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7968), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7968), + [aux_sym_declare_function_statement_token1] = ACTIONS(7968), + [aux_sym_preprocessor_const_token1] = ACTIONS(7968), + [aux_sym__property_get_header_token1] = ACTIONS(7968), + [aux_sym_event_declaration_token1] = ACTIONS(7968), + [sym_static_modifier] = ACTIONS(7968), + [sym__dim_keyword] = ACTIONS(7968), + [sym__redim_keyword] = ACTIONS(7968), + [aux_sym_get_accessor_token1] = ACTIONS(7968), + [aux_sym_set_accessor_token1] = ACTIONS(7968), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_const_declaration_token1] = ACTIONS(7968), + [anon_sym_LPAREN] = ACTIONS(7970), + [aux_sym_as_type_clause_token1] = ACTIONS(7968), + [aux_sym_as_type_clause_token2] = ACTIONS(7968), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7968), + [aux_sym_visibility_token1] = ACTIONS(7968), + [aux_sym_visibility_token2] = ACTIONS(7968), + [aux_sym_elseif_fragment_token1] = ACTIONS(7968), + [aux_sym_else_fragment_token1] = ACTIONS(7968), + [aux_sym_select_statement_token1] = ACTIONS(7968), + [aux_sym__for_header_token1] = ACTIONS(7968), + [aux_sym_do_statement_token1] = ACTIONS(7968), + [aux_sym_do_condition_token1] = ACTIONS(7968), + [aux_sym_with_statement_token1] = ACTIONS(7968), + [aux_sym_exit_statement_token1] = ACTIONS(7968), + [sym_end_statement] = ACTIONS(7970), + [aux_sym_on_goto_statement_token1] = ACTIONS(7968), + [aux_sym_on_goto_statement_token2] = ACTIONS(7968), + [aux_sym_on_error_statement_token2] = ACTIONS(7968), + [sym__ambiguous_redim_statement] = ACTIONS(7970), + [aux_sym_erase_statement_token1] = ACTIONS(7968), + [aux_sym_open_statement_token1] = ACTIONS(7968), + [aux_sym_file_mode_token2] = ACTIONS(7968), + [aux_sym_file_access_token2] = ACTIONS(7968), + [aux_sym_file_lock_token2] = ACTIONS(7968), + [aux_sym_print_statement_token1] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7970), + [aux_sym_close_statement_token1] = ACTIONS(7968), + [aux_sym_put_statement_token1] = ACTIONS(7968), + [aux_sym_unlock_statement_token1] = ACTIONS(7968), + [aux_sym_seek_statement_token1] = ACTIONS(7968), + [sym_reset_statement] = ACTIONS(7968), + [aux_sym_raise_event_statement_token1] = ACTIONS(7968), + [sym_stop_statement] = ACTIONS(7968), + [sym_beep_statement] = ACTIONS(7968), + [aux_sym_unload_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token2] = ACTIONS(7968), + [aux_sym_def_type_statement_token3] = ACTIONS(7968), + [aux_sym_def_type_statement_token4] = ACTIONS(7968), + [aux_sym_def_type_statement_token5] = ACTIONS(7968), + [aux_sym_def_type_statement_token6] = ACTIONS(7968), + [aux_sym_def_type_statement_token7] = ACTIONS(7968), + [aux_sym_def_type_statement_token8] = ACTIONS(7968), + [aux_sym_def_type_statement_token9] = ACTIONS(7968), + [aux_sym_def_type_statement_token10] = ACTIONS(7968), + [aux_sym_def_type_statement_token11] = ACTIONS(7968), + [aux_sym_def_type_statement_token12] = ACTIONS(7968), + [aux_sym_def_type_statement_token13] = ACTIONS(7968), + [aux_sym_def_type_statement_token14] = ACTIONS(7968), + [aux_sym_call_statement_token1] = ACTIONS(7968), + [sym__ambiguous_call_statement] = ACTIONS(7968), + [aux_sym_addressof_expression_token1] = ACTIONS(7968), + [aux_sym_type_of_expression_token1] = ACTIONS(7968), + [aux_sym_unary_expression_token1] = ACTIONS(7968), + [sym_string_literal] = ACTIONS(7970), + [sym_number_literal] = ACTIONS(7970), + [aux_sym_boolean_literal_token1] = ACTIONS(7968), + [aux_sym_boolean_literal_token2] = ACTIONS(7968), + [sym_nothing_literal] = ACTIONS(7968), + [sym_null_literal] = ACTIONS(7968), + [sym_empty_literal] = ACTIONS(7968), + [sym_date_literal] = ACTIONS(7970), + [anon_sym_POUND] = ACTIONS(7968), + }, + [STATE(3202)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5915), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_while_statement_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(3203)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_select_statement_token2] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token3] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(3204)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7449), + [anon_sym_BANG] = ACTIONS(7451), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(3205)] = { + [sym_fixed_string_length] = STATE(3753), + [sym_array_bounds] = STATE(3861), + [sym_identifier] = ACTIONS(7230), + [sym_newline] = ACTIONS(7232), + [anon_sym_COLON] = ACTIONS(7232), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7230), + [aux_sym_frm_property_statement_token1] = ACTIONS(7230), + [anon_sym_EQ] = ACTIONS(7232), + [anon_sym_DOT] = ACTIONS(7230), + [anon_sym_BANG] = ACTIONS(7232), + [aux_sym__attribute_identifier_token1] = ACTIONS(7230), + [aux_sym_option_statement_token3] = ACTIONS(7230), + [aux_sym_type_declaration_token1] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7230), + [aux_sym_enum_declaration_token1] = ACTIONS(7230), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7230), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7230), + [aux_sym_declare_function_statement_token1] = ACTIONS(7230), + [aux_sym_preprocessor_const_token1] = ACTIONS(7230), + [aux_sym__property_get_header_token1] = ACTIONS(7230), + [aux_sym_event_declaration_token1] = ACTIONS(7230), + [sym_static_modifier] = ACTIONS(7230), + [sym__dim_keyword] = ACTIONS(7230), + [sym__redim_keyword] = ACTIONS(7230), + [aux_sym_get_accessor_token1] = ACTIONS(7230), + [aux_sym_set_accessor_token1] = ACTIONS(7230), + [anon_sym_COMMA] = ACTIONS(7232), + [aux_sym_const_declaration_token1] = ACTIONS(7230), + [anon_sym_LPAREN] = ACTIONS(7958), + [aux_sym_as_type_clause_token2] = ACTIONS(7230), + [anon_sym_STAR] = ACTIONS(7960), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7230), + [aux_sym_visibility_token1] = ACTIONS(7230), + [aux_sym_visibility_token2] = ACTIONS(7230), + [aux_sym_elseif_fragment_token1] = ACTIONS(7230), + [aux_sym_else_fragment_token1] = ACTIONS(7230), + [aux_sym_select_statement_token1] = ACTIONS(7230), + [aux_sym__for_header_token1] = ACTIONS(7230), + [aux_sym_do_statement_token1] = ACTIONS(7230), + [aux_sym_do_condition_token1] = ACTIONS(7230), + [aux_sym_with_statement_token1] = ACTIONS(7230), + [aux_sym_exit_statement_token1] = ACTIONS(7230), + [sym_end_statement] = ACTIONS(7232), + [aux_sym_on_goto_statement_token1] = ACTIONS(7230), + [aux_sym_on_goto_statement_token2] = ACTIONS(7230), + [aux_sym_on_error_statement_token2] = ACTIONS(7230), + [sym__ambiguous_redim_statement] = ACTIONS(7232), + [aux_sym_erase_statement_token1] = ACTIONS(7230), + [aux_sym_open_statement_token1] = ACTIONS(7230), + [aux_sym_file_mode_token2] = ACTIONS(7230), + [aux_sym_file_access_token2] = ACTIONS(7230), + [aux_sym_file_lock_token2] = ACTIONS(7230), + [aux_sym_print_statement_token1] = ACTIONS(7230), + [anon_sym_PLUS] = ACTIONS(7232), + [anon_sym_DASH] = ACTIONS(7230), + [anon_sym_QMARK] = ACTIONS(7232), + [aux_sym_close_statement_token1] = ACTIONS(7230), + [aux_sym_put_statement_token1] = ACTIONS(7230), + [aux_sym_unlock_statement_token1] = ACTIONS(7230), + [aux_sym_seek_statement_token1] = ACTIONS(7230), + [sym_reset_statement] = ACTIONS(7230), + [aux_sym_raise_event_statement_token1] = ACTIONS(7230), + [sym_stop_statement] = ACTIONS(7230), + [sym_beep_statement] = ACTIONS(7230), + [aux_sym_unload_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token2] = ACTIONS(7230), + [aux_sym_def_type_statement_token3] = ACTIONS(7230), + [aux_sym_def_type_statement_token4] = ACTIONS(7230), + [aux_sym_def_type_statement_token5] = ACTIONS(7230), + [aux_sym_def_type_statement_token6] = ACTIONS(7230), + [aux_sym_def_type_statement_token7] = ACTIONS(7230), + [aux_sym_def_type_statement_token8] = ACTIONS(7230), + [aux_sym_def_type_statement_token9] = ACTIONS(7230), + [aux_sym_def_type_statement_token10] = ACTIONS(7230), + [aux_sym_def_type_statement_token11] = ACTIONS(7230), + [aux_sym_def_type_statement_token12] = ACTIONS(7230), + [aux_sym_def_type_statement_token13] = ACTIONS(7230), + [aux_sym_def_type_statement_token14] = ACTIONS(7230), + [aux_sym_call_statement_token1] = ACTIONS(7230), + [sym__ambiguous_call_statement] = ACTIONS(7230), + [aux_sym_addressof_expression_token1] = ACTIONS(7230), + [aux_sym_type_of_expression_token1] = ACTIONS(7230), + [aux_sym_unary_expression_token1] = ACTIONS(7230), + [sym_string_literal] = ACTIONS(7232), + [sym_number_literal] = ACTIONS(7232), + [aux_sym_boolean_literal_token1] = ACTIONS(7230), + [aux_sym_boolean_literal_token2] = ACTIONS(7230), + [sym_nothing_literal] = ACTIONS(7230), + [sym_null_literal] = ACTIONS(7230), + [sym_empty_literal] = ACTIONS(7230), + [sym_date_literal] = ACTIONS(7232), + [anon_sym_POUND] = ACTIONS(7230), + }, + [STATE(3206)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_select_statement_token2] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token3] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(3207)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_statement_token2] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token3] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(3208)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5915), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_while_statement_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(3209)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_select_statement_token2] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token3] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(3210)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_array_bound_token1] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_select_statement_token2] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(3211)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_array_bound_token1] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_select_statement_token2] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(3212)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_array_bound_token1] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_select_statement_token2] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(3213)] = { + [sym_parameter_list] = STATE(3554), + [sym_as_type_clause] = STATE(4030), + [sym_identifier] = ACTIONS(7972), + [sym_newline] = ACTIONS(7974), + [anon_sym_COLON] = ACTIONS(7974), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7972), + [aux_sym_frm_property_statement_token1] = ACTIONS(7972), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_BANG] = ACTIONS(7974), + [aux_sym__attribute_identifier_token1] = ACTIONS(7972), + [aux_sym_option_statement_token3] = ACTIONS(7972), + [aux_sym_type_declaration_token1] = ACTIONS(7972), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7972), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7972), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7972), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7972), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7972), + [aux_sym_enum_declaration_token1] = ACTIONS(7972), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7972), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7972), + [aux_sym_declare_function_statement_token1] = ACTIONS(7972), + [aux_sym_preprocessor_const_token1] = ACTIONS(7972), + [aux_sym__property_get_header_token1] = ACTIONS(7972), + [aux_sym_event_declaration_token1] = ACTIONS(7972), + [sym_static_modifier] = ACTIONS(7972), + [sym__dim_keyword] = ACTIONS(7972), + [sym__redim_keyword] = ACTIONS(7972), + [aux_sym_get_accessor_token1] = ACTIONS(7972), + [aux_sym_set_accessor_token1] = ACTIONS(7972), + [aux_sym_const_declaration_token1] = ACTIONS(7972), + [anon_sym_LPAREN] = ACTIONS(7426), + [aux_sym_as_type_clause_token1] = ACTIONS(7428), + [aux_sym_as_type_clause_token2] = ACTIONS(7972), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7972), + [aux_sym_visibility_token1] = ACTIONS(7972), + [aux_sym_visibility_token2] = ACTIONS(7972), + [aux_sym_elseif_fragment_token1] = ACTIONS(7972), + [aux_sym_else_fragment_token1] = ACTIONS(7972), + [aux_sym_select_statement_token1] = ACTIONS(7972), + [aux_sym__for_header_token1] = ACTIONS(7972), + [aux_sym_do_statement_token1] = ACTIONS(7972), + [aux_sym_do_condition_token1] = ACTIONS(7972), + [aux_sym_with_statement_token1] = ACTIONS(7972), + [aux_sym_exit_statement_token1] = ACTIONS(7972), + [sym_end_statement] = ACTIONS(7974), + [aux_sym_on_goto_statement_token1] = ACTIONS(7972), + [aux_sym_on_goto_statement_token2] = ACTIONS(7972), + [aux_sym_on_error_statement_token2] = ACTIONS(7972), + [sym__ambiguous_redim_statement] = ACTIONS(7974), + [aux_sym_erase_statement_token1] = ACTIONS(7972), + [aux_sym_open_statement_token1] = ACTIONS(7972), + [aux_sym_file_mode_token2] = ACTIONS(7972), + [aux_sym_file_access_token2] = ACTIONS(7972), + [aux_sym_file_lock_token2] = ACTIONS(7972), + [aux_sym_print_statement_token1] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7974), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7974), + [aux_sym_close_statement_token1] = ACTIONS(7972), + [aux_sym_put_statement_token1] = ACTIONS(7972), + [aux_sym_unlock_statement_token1] = ACTIONS(7972), + [aux_sym_seek_statement_token1] = ACTIONS(7972), + [sym_reset_statement] = ACTIONS(7972), + [aux_sym_raise_event_statement_token1] = ACTIONS(7972), + [sym_stop_statement] = ACTIONS(7972), + [sym_beep_statement] = ACTIONS(7972), + [aux_sym_unload_statement_token1] = ACTIONS(7972), + [aux_sym_def_type_statement_token1] = ACTIONS(7972), + [aux_sym_def_type_statement_token2] = ACTIONS(7972), + [aux_sym_def_type_statement_token3] = ACTIONS(7972), + [aux_sym_def_type_statement_token4] = ACTIONS(7972), + [aux_sym_def_type_statement_token5] = ACTIONS(7972), + [aux_sym_def_type_statement_token6] = ACTIONS(7972), + [aux_sym_def_type_statement_token7] = ACTIONS(7972), + [aux_sym_def_type_statement_token8] = ACTIONS(7972), + [aux_sym_def_type_statement_token9] = ACTIONS(7972), + [aux_sym_def_type_statement_token10] = ACTIONS(7972), + [aux_sym_def_type_statement_token11] = ACTIONS(7972), + [aux_sym_def_type_statement_token12] = ACTIONS(7972), + [aux_sym_def_type_statement_token13] = ACTIONS(7972), + [aux_sym_def_type_statement_token14] = ACTIONS(7972), + [aux_sym_call_statement_token1] = ACTIONS(7972), + [sym__ambiguous_call_statement] = ACTIONS(7972), + [aux_sym_addressof_expression_token1] = ACTIONS(7972), + [aux_sym_type_of_expression_token1] = ACTIONS(7972), + [aux_sym_unary_expression_token1] = ACTIONS(7972), + [sym_string_literal] = ACTIONS(7974), + [sym_number_literal] = ACTIONS(7974), + [aux_sym_boolean_literal_token1] = ACTIONS(7972), + [aux_sym_boolean_literal_token2] = ACTIONS(7972), + [sym_nothing_literal] = ACTIONS(7972), + [sym_null_literal] = ACTIONS(7972), + [sym_empty_literal] = ACTIONS(7972), + [sym_date_literal] = ACTIONS(7974), + [anon_sym_POUND] = ACTIONS(7972), + }, + [STATE(3214)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(3215)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_array_bound_token1] = ACTIONS(4485), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_statement_token2] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(3216)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_array_bound_token1] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_select_statement_token2] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(3217)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_array_bound_token1] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(3218)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_array_bound_token1] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(3219)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_array_bound_token1] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(3220)] = { + [sym_argument_list] = STATE(3656), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7976), + [anon_sym_BANG] = ACTIONS(7978), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(7980), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(3221)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token3] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(3222)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_array_bound_token1] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(3223)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token3] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(3224)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token3] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(3225)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_array_bound_token1] = ACTIONS(4441), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_statement_token2] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7902), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(3226)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6282), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6280), + [anon_sym_SLASH] = ACTIONS(6282), + [anon_sym_BSLASH] = ACTIONS(6284), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6286), + [anon_sym_PLUS] = ACTIONS(6288), + [anon_sym_DASH] = ACTIONS(6290), + [anon_sym_AMP] = ACTIONS(6292), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(3227)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5915), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_statement_token2] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(3228)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7898), + [aux_sym_array_bound_token1] = ACTIONS(4451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_statement_token2] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7902), + [anon_sym_SLASH] = ACTIONS(7898), + [anon_sym_BSLASH] = ACTIONS(7904), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7906), + [anon_sym_PLUS] = ACTIONS(7908), + [anon_sym_DASH] = ACTIONS(7910), + [anon_sym_AMP] = ACTIONS(7912), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7914), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7916), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7918), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7920), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7922), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(3229)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5915), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_statement_token2] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(3230)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3231)] = { + [sym_identifier] = ACTIONS(6139), + [sym_newline] = ACTIONS(6141), + [anon_sym_COLON] = ACTIONS(6141), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6139), + [aux_sym_frm_property_statement_token1] = ACTIONS(6139), + [anon_sym_DOT] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6141), + [aux_sym__attribute_identifier_token1] = ACTIONS(6139), + [aux_sym_option_statement_token3] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6139), + [aux_sym_preprocessor_const_token1] = ACTIONS(6139), + [sym_static_modifier] = ACTIONS(6139), + [sym__dim_keyword] = ACTIONS(6139), + [sym__redim_keyword] = ACTIONS(6139), + [aux_sym_get_accessor_token1] = ACTIONS(6139), + [aux_sym_set_accessor_token1] = ACTIONS(6139), + [aux_sym_const_declaration_token1] = ACTIONS(6139), + [anon_sym_LPAREN] = ACTIONS(6141), + [aux_sym_as_type_clause_token2] = ACTIONS(6139), + [anon_sym_STAR] = ACTIONS(7754), + [aux_sym_array_bound_token1] = ACTIONS(7982), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6139), + [aux_sym_visibility_token1] = ACTIONS(6139), + [aux_sym_visibility_token2] = ACTIONS(6139), + [aux_sym_elseif_fragment_token1] = ACTIONS(6139), + [aux_sym_else_fragment_token1] = ACTIONS(6139), + [aux_sym_select_statement_token1] = ACTIONS(6139), + [aux_sym__for_header_token1] = ACTIONS(6139), + [aux_sym_do_statement_token1] = ACTIONS(6139), + [aux_sym_do_condition_token1] = ACTIONS(6139), + [aux_sym_with_statement_token1] = ACTIONS(6139), + [aux_sym_exit_statement_token1] = ACTIONS(6139), + [sym_end_statement] = ACTIONS(6141), + [aux_sym_on_goto_statement_token1] = ACTIONS(6139), + [aux_sym_on_goto_statement_token2] = ACTIONS(6139), + [aux_sym_on_error_statement_token2] = ACTIONS(6139), + [sym__ambiguous_redim_statement] = ACTIONS(6141), + [aux_sym_erase_statement_token1] = ACTIONS(6139), + [aux_sym_open_statement_token1] = ACTIONS(6139), + [aux_sym_file_mode_token2] = ACTIONS(6139), + [aux_sym_file_access_token2] = ACTIONS(6139), + [aux_sym_file_lock_token2] = ACTIONS(6139), + [aux_sym_print_statement_token1] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(7752), + [anon_sym_SLASH] = ACTIONS(7754), + [anon_sym_BSLASH] = ACTIONS(7756), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7758), + [anon_sym_PLUS] = ACTIONS(7760), + [anon_sym_DASH] = ACTIONS(7762), + [anon_sym_AMP] = ACTIONS(7764), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7766), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7768), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7770), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7772), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7774), + [anon_sym_QMARK] = ACTIONS(6141), + [aux_sym_close_statement_token1] = ACTIONS(6139), + [aux_sym_put_statement_token1] = ACTIONS(6139), + [aux_sym_unlock_statement_token1] = ACTIONS(6139), + [aux_sym_seek_statement_token1] = ACTIONS(6139), + [sym_reset_statement] = ACTIONS(6139), + [aux_sym_raise_event_statement_token1] = ACTIONS(6139), + [sym_stop_statement] = ACTIONS(6139), + [sym_beep_statement] = ACTIONS(6139), + [aux_sym_unload_statement_token1] = ACTIONS(6139), + [aux_sym_def_type_statement_token1] = ACTIONS(6139), + [aux_sym_def_type_statement_token2] = ACTIONS(6139), + [aux_sym_def_type_statement_token3] = ACTIONS(6139), + [aux_sym_def_type_statement_token4] = ACTIONS(6139), + [aux_sym_def_type_statement_token5] = ACTIONS(6139), + [aux_sym_def_type_statement_token6] = ACTIONS(6139), + [aux_sym_def_type_statement_token7] = ACTIONS(6139), + [aux_sym_def_type_statement_token8] = ACTIONS(6139), + [aux_sym_def_type_statement_token9] = ACTIONS(6139), + [aux_sym_def_type_statement_token10] = ACTIONS(6139), + [aux_sym_def_type_statement_token11] = ACTIONS(6139), + [aux_sym_def_type_statement_token12] = ACTIONS(6139), + [aux_sym_def_type_statement_token13] = ACTIONS(6139), + [aux_sym_def_type_statement_token14] = ACTIONS(6139), + [aux_sym_call_statement_token1] = ACTIONS(6139), + [sym__ambiguous_call_statement] = ACTIONS(6139), + [aux_sym_addressof_expression_token1] = ACTIONS(6139), + [aux_sym_type_of_expression_token1] = ACTIONS(6139), + [aux_sym_unary_expression_token1] = ACTIONS(6139), + [sym_string_literal] = ACTIONS(6141), + [sym_number_literal] = ACTIONS(6141), + [aux_sym_boolean_literal_token1] = ACTIONS(6139), + [aux_sym_boolean_literal_token2] = ACTIONS(6139), + [sym_nothing_literal] = ACTIONS(6139), + [sym_null_literal] = ACTIONS(6139), + [sym_empty_literal] = ACTIONS(6139), + [sym_date_literal] = ACTIONS(6141), + [anon_sym_POUND] = ACTIONS(6139), + }, + [STATE(3232)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_while_statement_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3233)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_select_statement_token2] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token3] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(3234)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_select_statement_token2] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token3] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(3235)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_select_statement_token2] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token3] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(3236)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_select_statement_token2] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token3] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(3237)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7716), + [aux_sym_array_bound_token1] = ACTIONS(4647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_select_statement_token2] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(7716), + [anon_sym_BSLASH] = ACTIONS(7718), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7720), + [anon_sym_PLUS] = ACTIONS(7722), + [anon_sym_DASH] = ACTIONS(7724), + [anon_sym_AMP] = ACTIONS(7726), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(3238)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token3] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(3239)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token3] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(3240)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token3] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(3241)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token3] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(3242)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token3] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(3243)] = { + [sym_identifier] = ACTIONS(7984), + [sym_newline] = ACTIONS(7986), + [anon_sym_COLON] = ACTIONS(7986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7984), + [aux_sym_frm_property_statement_token1] = ACTIONS(7984), + [anon_sym_EQ] = ACTIONS(7986), + [anon_sym_DOT] = ACTIONS(7984), + [anon_sym_BANG] = ACTIONS(7986), + [aux_sym__attribute_identifier_token1] = ACTIONS(7984), + [aux_sym_option_statement_token3] = ACTIONS(7984), + [aux_sym_type_declaration_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7984), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7984), + [aux_sym_enum_declaration_token1] = ACTIONS(7984), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7984), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7984), + [aux_sym_declare_function_statement_token1] = ACTIONS(7984), + [aux_sym_preprocessor_const_token1] = ACTIONS(7984), + [aux_sym__property_get_header_token1] = ACTIONS(7984), + [aux_sym_event_declaration_token1] = ACTIONS(7984), + [sym_static_modifier] = ACTIONS(7984), + [sym__dim_keyword] = ACTIONS(7984), + [sym__redim_keyword] = ACTIONS(7984), + [aux_sym_get_accessor_token1] = ACTIONS(7984), + [aux_sym_set_accessor_token1] = ACTIONS(7984), + [anon_sym_COMMA] = ACTIONS(7986), + [aux_sym_const_declaration_token1] = ACTIONS(7984), + [anon_sym_LPAREN] = ACTIONS(7986), + [aux_sym_as_type_clause_token1] = ACTIONS(7984), + [aux_sym_as_type_clause_token2] = ACTIONS(7984), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7984), + [aux_sym_visibility_token1] = ACTIONS(7984), + [aux_sym_visibility_token2] = ACTIONS(7984), + [aux_sym_elseif_fragment_token1] = ACTIONS(7984), + [aux_sym_else_fragment_token1] = ACTIONS(7984), + [aux_sym_select_statement_token1] = ACTIONS(7984), + [aux_sym__for_header_token1] = ACTIONS(7984), + [aux_sym_do_statement_token1] = ACTIONS(7984), + [aux_sym_do_condition_token1] = ACTIONS(7984), + [aux_sym_with_statement_token1] = ACTIONS(7984), + [aux_sym_exit_statement_token1] = ACTIONS(7984), + [sym_end_statement] = ACTIONS(7986), + [aux_sym_on_goto_statement_token1] = ACTIONS(7984), + [aux_sym_on_goto_statement_token2] = ACTIONS(7984), + [aux_sym_on_error_statement_token2] = ACTIONS(7984), + [sym__ambiguous_redim_statement] = ACTIONS(7986), + [aux_sym_erase_statement_token1] = ACTIONS(7984), + [aux_sym_open_statement_token1] = ACTIONS(7984), + [aux_sym_file_mode_token2] = ACTIONS(7984), + [aux_sym_file_access_token2] = ACTIONS(7984), + [aux_sym_file_lock_token2] = ACTIONS(7984), + [aux_sym_print_statement_token1] = ACTIONS(7984), + [anon_sym_PLUS] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(7984), + [anon_sym_QMARK] = ACTIONS(7986), + [aux_sym_close_statement_token1] = ACTIONS(7984), + [aux_sym_put_statement_token1] = ACTIONS(7984), + [aux_sym_unlock_statement_token1] = ACTIONS(7984), + [aux_sym_seek_statement_token1] = ACTIONS(7984), + [sym_reset_statement] = ACTIONS(7984), + [aux_sym_raise_event_statement_token1] = ACTIONS(7984), + [sym_stop_statement] = ACTIONS(7984), + [sym_beep_statement] = ACTIONS(7984), + [aux_sym_unload_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token2] = ACTIONS(7984), + [aux_sym_def_type_statement_token3] = ACTIONS(7984), + [aux_sym_def_type_statement_token4] = ACTIONS(7984), + [aux_sym_def_type_statement_token5] = ACTIONS(7984), + [aux_sym_def_type_statement_token6] = ACTIONS(7984), + [aux_sym_def_type_statement_token7] = ACTIONS(7984), + [aux_sym_def_type_statement_token8] = ACTIONS(7984), + [aux_sym_def_type_statement_token9] = ACTIONS(7984), + [aux_sym_def_type_statement_token10] = ACTIONS(7984), + [aux_sym_def_type_statement_token11] = ACTIONS(7984), + [aux_sym_def_type_statement_token12] = ACTIONS(7984), + [aux_sym_def_type_statement_token13] = ACTIONS(7984), + [aux_sym_def_type_statement_token14] = ACTIONS(7984), + [aux_sym_call_statement_token1] = ACTIONS(7984), + [sym__ambiguous_call_statement] = ACTIONS(7984), + [aux_sym_addressof_expression_token1] = ACTIONS(7984), + [aux_sym_type_of_expression_token1] = ACTIONS(7984), + [aux_sym_unary_expression_token1] = ACTIONS(7984), + [sym_string_literal] = ACTIONS(7986), + [sym_number_literal] = ACTIONS(7986), + [aux_sym_boolean_literal_token1] = ACTIONS(7984), + [aux_sym_boolean_literal_token2] = ACTIONS(7984), + [sym_nothing_literal] = ACTIONS(7984), + [sym_null_literal] = ACTIONS(7984), + [sym_empty_literal] = ACTIONS(7984), + [sym_date_literal] = ACTIONS(7986), + [anon_sym_POUND] = ACTIONS(7984), + }, + [STATE(3244)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3245)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7754), + [aux_sym_array_bound_token1] = ACTIONS(4647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7752), + [anon_sym_SLASH] = ACTIONS(7754), + [anon_sym_BSLASH] = ACTIONS(7756), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7758), + [anon_sym_PLUS] = ACTIONS(7760), + [anon_sym_DASH] = ACTIONS(7762), + [anon_sym_AMP] = ACTIONS(7764), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(3246)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_statement_token2] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token3] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(3247)] = { + [sym_identifier] = ACTIONS(7281), + [sym_newline] = ACTIONS(7283), + [anon_sym_COLON] = ACTIONS(7283), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7281), + [aux_sym_frm_property_statement_token1] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7281), + [anon_sym_BANG] = ACTIONS(7283), + [aux_sym__attribute_identifier_token1] = ACTIONS(7281), + [aux_sym_option_statement_token3] = ACTIONS(7281), + [aux_sym_type_declaration_token1] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7281), + [aux_sym_enum_declaration_token1] = ACTIONS(7281), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7281), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7281), + [aux_sym_declare_function_statement_token1] = ACTIONS(7281), + [aux_sym_preprocessor_const_token1] = ACTIONS(7281), + [aux_sym__property_get_header_token1] = ACTIONS(7281), + [aux_sym_event_declaration_token1] = ACTIONS(7281), + [sym_static_modifier] = ACTIONS(7281), + [sym__dim_keyword] = ACTIONS(7281), + [sym__redim_keyword] = ACTIONS(7281), + [aux_sym_get_accessor_token1] = ACTIONS(7281), + [aux_sym_set_accessor_token1] = ACTIONS(7281), + [aux_sym_const_declaration_token1] = ACTIONS(7281), + [anon_sym_LPAREN] = ACTIONS(7283), + [aux_sym_as_type_clause_token2] = ACTIONS(7281), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7281), + [aux_sym_visibility_token1] = ACTIONS(7281), + [aux_sym_visibility_token2] = ACTIONS(7281), + [aux_sym_elseif_fragment_token1] = ACTIONS(7281), + [aux_sym_else_fragment_token1] = ACTIONS(7281), + [aux_sym_select_statement_token1] = ACTIONS(7281), + [aux_sym__for_header_token1] = ACTIONS(7281), + [aux_sym_do_statement_token1] = ACTIONS(7281), + [aux_sym_do_condition_token1] = ACTIONS(7281), + [aux_sym_with_statement_token1] = ACTIONS(7281), + [aux_sym_exit_statement_token1] = ACTIONS(7281), + [sym_end_statement] = ACTIONS(7283), + [aux_sym_on_goto_statement_token1] = ACTIONS(7281), + [aux_sym_on_goto_statement_token2] = ACTIONS(7281), + [aux_sym_on_error_statement_token2] = ACTIONS(7281), + [sym__ambiguous_redim_statement] = ACTIONS(7283), + [aux_sym_erase_statement_token1] = ACTIONS(7281), + [aux_sym_open_statement_token1] = ACTIONS(7281), + [aux_sym_file_mode_token2] = ACTIONS(7281), + [aux_sym_file_access_token2] = ACTIONS(7281), + [aux_sym_file_lock_token2] = ACTIONS(7281), + [aux_sym_print_statement_token1] = ACTIONS(7281), + [anon_sym_PLUS] = ACTIONS(7283), + [anon_sym_DASH] = ACTIONS(7281), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7988), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7990), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7992), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7994), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7996), + [anon_sym_QMARK] = ACTIONS(7283), + [aux_sym_close_statement_token1] = ACTIONS(7281), + [aux_sym_put_statement_token1] = ACTIONS(7281), + [aux_sym_unlock_statement_token1] = ACTIONS(7281), + [aux_sym_seek_statement_token1] = ACTIONS(7281), + [sym_reset_statement] = ACTIONS(7281), + [aux_sym_raise_event_statement_token1] = ACTIONS(7281), + [sym_stop_statement] = ACTIONS(7281), + [sym_beep_statement] = ACTIONS(7281), + [aux_sym_unload_statement_token1] = ACTIONS(7281), + [aux_sym_def_type_statement_token1] = ACTIONS(7281), + [aux_sym_def_type_statement_token2] = ACTIONS(7281), + [aux_sym_def_type_statement_token3] = ACTIONS(7281), + [aux_sym_def_type_statement_token4] = ACTIONS(7281), + [aux_sym_def_type_statement_token5] = ACTIONS(7281), + [aux_sym_def_type_statement_token6] = ACTIONS(7281), + [aux_sym_def_type_statement_token7] = ACTIONS(7281), + [aux_sym_def_type_statement_token8] = ACTIONS(7281), + [aux_sym_def_type_statement_token9] = ACTIONS(7281), + [aux_sym_def_type_statement_token10] = ACTIONS(7281), + [aux_sym_def_type_statement_token11] = ACTIONS(7281), + [aux_sym_def_type_statement_token12] = ACTIONS(7281), + [aux_sym_def_type_statement_token13] = ACTIONS(7281), + [aux_sym_def_type_statement_token14] = ACTIONS(7281), + [aux_sym_call_statement_token1] = ACTIONS(7281), + [sym__ambiguous_call_statement] = ACTIONS(7281), + [aux_sym_addressof_expression_token1] = ACTIONS(7281), + [aux_sym_type_of_expression_token1] = ACTIONS(7281), + [aux_sym_unary_expression_token1] = ACTIONS(7281), + [sym_string_literal] = ACTIONS(7283), + [sym_number_literal] = ACTIONS(7283), + [aux_sym_boolean_literal_token1] = ACTIONS(7281), + [aux_sym_boolean_literal_token2] = ACTIONS(7281), + [sym_nothing_literal] = ACTIONS(7281), + [sym_null_literal] = ACTIONS(7281), + [sym_empty_literal] = ACTIONS(7281), + [sym_date_literal] = ACTIONS(7283), + [anon_sym_POUND] = ACTIONS(7281), + }, + [STATE(3248)] = { + [sym_identifier] = ACTIONS(5775), + [sym_newline] = ACTIONS(5777), + [anon_sym_COLON] = ACTIONS(5777), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5775), + [aux_sym_frm_property_statement_token1] = ACTIONS(5775), + [anon_sym_EQ] = ACTIONS(5777), + [anon_sym_DOT] = ACTIONS(5775), + [anon_sym_BANG] = ACTIONS(5777), + [aux_sym__attribute_identifier_token1] = ACTIONS(5775), + [aux_sym_option_statement_token3] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5775), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5775), + [aux_sym_preprocessor_const_token1] = ACTIONS(5775), + [sym_static_modifier] = ACTIONS(5775), + [sym__dim_keyword] = ACTIONS(5775), + [sym__redim_keyword] = ACTIONS(5775), + [aux_sym_get_accessor_token1] = ACTIONS(5775), + [aux_sym_set_accessor_token1] = ACTIONS(5775), + [anon_sym_COMMA] = ACTIONS(5777), + [aux_sym_const_declaration_token1] = ACTIONS(5775), + [anon_sym_LPAREN] = ACTIONS(5777), + [aux_sym_as_type_clause_token2] = ACTIONS(5775), + [anon_sym_STAR] = ACTIONS(7998), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5775), + [aux_sym_visibility_token1] = ACTIONS(5775), + [aux_sym_visibility_token2] = ACTIONS(5775), + [aux_sym_elseif_fragment_token1] = ACTIONS(5775), + [aux_sym_else_fragment_token1] = ACTIONS(5775), + [aux_sym_select_statement_token1] = ACTIONS(5775), + [aux_sym__for_header_token1] = ACTIONS(5775), + [aux_sym_do_statement_token1] = ACTIONS(5775), + [aux_sym_do_condition_token1] = ACTIONS(5775), + [aux_sym_with_statement_token1] = ACTIONS(5775), + [aux_sym_exit_statement_token1] = ACTIONS(5775), + [sym_end_statement] = ACTIONS(5777), + [aux_sym_on_goto_statement_token1] = ACTIONS(5775), + [aux_sym_on_goto_statement_token2] = ACTIONS(5775), + [aux_sym_on_error_statement_token2] = ACTIONS(5775), + [sym__ambiguous_redim_statement] = ACTIONS(5777), + [aux_sym_erase_statement_token1] = ACTIONS(5775), + [aux_sym_open_statement_token1] = ACTIONS(5775), + [aux_sym_file_mode_token2] = ACTIONS(5775), + [aux_sym_file_access_token2] = ACTIONS(5775), + [aux_sym_file_lock_token2] = ACTIONS(5775), + [aux_sym_print_statement_token1] = ACTIONS(5775), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(7998), + [anon_sym_BSLASH] = ACTIONS(8002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8004), + [anon_sym_PLUS] = ACTIONS(8006), + [anon_sym_DASH] = ACTIONS(8008), + [anon_sym_AMP] = ACTIONS(8010), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8012), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8014), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(8016), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(8018), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(8020), + [anon_sym_QMARK] = ACTIONS(5777), + [aux_sym_close_statement_token1] = ACTIONS(5775), + [aux_sym_put_statement_token1] = ACTIONS(5775), + [aux_sym_unlock_statement_token1] = ACTIONS(5775), + [aux_sym_seek_statement_token1] = ACTIONS(5775), + [sym_reset_statement] = ACTIONS(5775), + [aux_sym_raise_event_statement_token1] = ACTIONS(5775), + [sym_stop_statement] = ACTIONS(5775), + [sym_beep_statement] = ACTIONS(5775), + [aux_sym_unload_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token1] = ACTIONS(5775), + [aux_sym_def_type_statement_token2] = ACTIONS(5775), + [aux_sym_def_type_statement_token3] = ACTIONS(5775), + [aux_sym_def_type_statement_token4] = ACTIONS(5775), + [aux_sym_def_type_statement_token5] = ACTIONS(5775), + [aux_sym_def_type_statement_token6] = ACTIONS(5775), + [aux_sym_def_type_statement_token7] = ACTIONS(5775), + [aux_sym_def_type_statement_token8] = ACTIONS(5775), + [aux_sym_def_type_statement_token9] = ACTIONS(5775), + [aux_sym_def_type_statement_token10] = ACTIONS(5775), + [aux_sym_def_type_statement_token11] = ACTIONS(5775), + [aux_sym_def_type_statement_token12] = ACTIONS(5775), + [aux_sym_def_type_statement_token13] = ACTIONS(5775), + [aux_sym_def_type_statement_token14] = ACTIONS(5775), + [aux_sym_call_statement_token1] = ACTIONS(5775), + [sym__ambiguous_call_statement] = ACTIONS(5775), + [aux_sym_addressof_expression_token1] = ACTIONS(5775), + [aux_sym_type_of_expression_token1] = ACTIONS(5775), + [aux_sym_unary_expression_token1] = ACTIONS(5775), + [sym_string_literal] = ACTIONS(5777), + [sym_number_literal] = ACTIONS(5777), + [aux_sym_boolean_literal_token1] = ACTIONS(5775), + [aux_sym_boolean_literal_token2] = ACTIONS(5775), + [sym_nothing_literal] = ACTIONS(5775), + [sym_null_literal] = ACTIONS(5775), + [sym_empty_literal] = ACTIONS(5775), + [sym_date_literal] = ACTIONS(5777), + [anon_sym_POUND] = ACTIONS(5775), + }, + [STATE(3249)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7842), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym_select_statement_token2] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token3] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7840), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_BSLASH] = ACTIONS(7844), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(7848), + [anon_sym_DASH] = ACTIONS(7850), + [anon_sym_AMP] = ACTIONS(7852), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(3250)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7876), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token3] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7872), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_BSLASH] = ACTIONS(7878), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7880), + [anon_sym_PLUS] = ACTIONS(7882), + [anon_sym_DASH] = ACTIONS(7884), + [anon_sym_AMP] = ACTIONS(7886), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(3251)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_array_bound_token1] = ACTIONS(4447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(3252)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_statement_token2] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token3] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(3253)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_array_bound_token1] = ACTIONS(4477), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(3254)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3255)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3256)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7998), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(7998), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3257)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7998), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(7998), + [anon_sym_BSLASH] = ACTIONS(8002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3258)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7998), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(7998), + [anon_sym_BSLASH] = ACTIONS(8002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8004), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3259)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7998), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(7998), + [anon_sym_BSLASH] = ACTIONS(8002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8004), + [anon_sym_PLUS] = ACTIONS(8006), + [anon_sym_DASH] = ACTIONS(8008), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3260)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7998), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(7998), + [anon_sym_BSLASH] = ACTIONS(8002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8004), + [anon_sym_PLUS] = ACTIONS(8006), + [anon_sym_DASH] = ACTIONS(8008), + [anon_sym_AMP] = ACTIONS(8010), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3261)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7998), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(7998), + [anon_sym_BSLASH] = ACTIONS(8002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8004), + [anon_sym_PLUS] = ACTIONS(8006), + [anon_sym_DASH] = ACTIONS(8008), + [anon_sym_AMP] = ACTIONS(8010), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8012), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3262)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7998), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(7998), + [anon_sym_BSLASH] = ACTIONS(8002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8004), + [anon_sym_PLUS] = ACTIONS(8006), + [anon_sym_DASH] = ACTIONS(8008), + [anon_sym_AMP] = ACTIONS(8010), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8012), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8014), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3263)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7998), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(7998), + [anon_sym_BSLASH] = ACTIONS(8002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8004), + [anon_sym_PLUS] = ACTIONS(8006), + [anon_sym_DASH] = ACTIONS(8008), + [anon_sym_AMP] = ACTIONS(8010), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8012), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8014), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(8016), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3264)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7998), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(7998), + [anon_sym_BSLASH] = ACTIONS(8002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8004), + [anon_sym_PLUS] = ACTIONS(8006), + [anon_sym_DASH] = ACTIONS(8008), + [anon_sym_AMP] = ACTIONS(8010), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8012), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8014), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(8016), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(8018), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3265)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7998), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(7998), + [anon_sym_BSLASH] = ACTIONS(8002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8004), + [anon_sym_PLUS] = ACTIONS(8006), + [anon_sym_DASH] = ACTIONS(8008), + [anon_sym_AMP] = ACTIONS(8010), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(3266)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_while_statement_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token3] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(3267)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_array_bound_token1] = ACTIONS(4485), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(3268)] = { + [sym_identifier] = ACTIONS(8022), + [sym_newline] = ACTIONS(8024), + [anon_sym_COLON] = ACTIONS(8024), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8022), + [aux_sym_frm_property_statement_token1] = ACTIONS(8022), + [anon_sym_EQ] = ACTIONS(8024), + [anon_sym_DOT] = ACTIONS(8022), + [anon_sym_BANG] = ACTIONS(8024), + [aux_sym__attribute_identifier_token1] = ACTIONS(8022), + [aux_sym_option_statement_token3] = ACTIONS(8022), + [aux_sym_type_declaration_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8022), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8022), + [aux_sym_enum_declaration_token1] = ACTIONS(8022), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8022), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8022), + [aux_sym_declare_function_statement_token1] = ACTIONS(8022), + [aux_sym_preprocessor_const_token1] = ACTIONS(8022), + [aux_sym__property_get_header_token1] = ACTIONS(8022), + [aux_sym_event_declaration_token1] = ACTIONS(8022), + [sym_static_modifier] = ACTIONS(8022), + [sym__dim_keyword] = ACTIONS(8022), + [sym__redim_keyword] = ACTIONS(8022), + [aux_sym_get_accessor_token1] = ACTIONS(8022), + [aux_sym_set_accessor_token1] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8024), + [aux_sym_const_declaration_token1] = ACTIONS(8022), + [anon_sym_LPAREN] = ACTIONS(8024), + [aux_sym_as_type_clause_token1] = ACTIONS(8022), + [aux_sym_as_type_clause_token2] = ACTIONS(8022), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8022), + [aux_sym_visibility_token1] = ACTIONS(8022), + [aux_sym_visibility_token2] = ACTIONS(8022), + [aux_sym_elseif_fragment_token1] = ACTIONS(8022), + [aux_sym_else_fragment_token1] = ACTIONS(8022), + [aux_sym_select_statement_token1] = ACTIONS(8022), + [aux_sym__for_header_token1] = ACTIONS(8022), + [aux_sym_do_statement_token1] = ACTIONS(8022), + [aux_sym_do_condition_token1] = ACTIONS(8022), + [aux_sym_with_statement_token1] = ACTIONS(8022), + [aux_sym_exit_statement_token1] = ACTIONS(8022), + [sym_end_statement] = ACTIONS(8024), + [aux_sym_on_goto_statement_token1] = ACTIONS(8022), + [aux_sym_on_goto_statement_token2] = ACTIONS(8022), + [aux_sym_on_error_statement_token2] = ACTIONS(8022), + [sym__ambiguous_redim_statement] = ACTIONS(8024), + [aux_sym_erase_statement_token1] = ACTIONS(8022), + [aux_sym_open_statement_token1] = ACTIONS(8022), + [aux_sym_file_mode_token2] = ACTIONS(8022), + [aux_sym_file_access_token2] = ACTIONS(8022), + [aux_sym_file_lock_token2] = ACTIONS(8022), + [aux_sym_print_statement_token1] = ACTIONS(8022), + [anon_sym_PLUS] = ACTIONS(8024), + [anon_sym_DASH] = ACTIONS(8022), + [anon_sym_QMARK] = ACTIONS(8024), + [aux_sym_close_statement_token1] = ACTIONS(8022), + [aux_sym_put_statement_token1] = ACTIONS(8022), + [aux_sym_unlock_statement_token1] = ACTIONS(8022), + [aux_sym_seek_statement_token1] = ACTIONS(8022), + [sym_reset_statement] = ACTIONS(8022), + [aux_sym_raise_event_statement_token1] = ACTIONS(8022), + [sym_stop_statement] = ACTIONS(8022), + [sym_beep_statement] = ACTIONS(8022), + [aux_sym_unload_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token2] = ACTIONS(8022), + [aux_sym_def_type_statement_token3] = ACTIONS(8022), + [aux_sym_def_type_statement_token4] = ACTIONS(8022), + [aux_sym_def_type_statement_token5] = ACTIONS(8022), + [aux_sym_def_type_statement_token6] = ACTIONS(8022), + [aux_sym_def_type_statement_token7] = ACTIONS(8022), + [aux_sym_def_type_statement_token8] = ACTIONS(8022), + [aux_sym_def_type_statement_token9] = ACTIONS(8022), + [aux_sym_def_type_statement_token10] = ACTIONS(8022), + [aux_sym_def_type_statement_token11] = ACTIONS(8022), + [aux_sym_def_type_statement_token12] = ACTIONS(8022), + [aux_sym_def_type_statement_token13] = ACTIONS(8022), + [aux_sym_def_type_statement_token14] = ACTIONS(8022), + [aux_sym_call_statement_token1] = ACTIONS(8022), + [sym__ambiguous_call_statement] = ACTIONS(8022), + [aux_sym_addressof_expression_token1] = ACTIONS(8022), + [aux_sym_type_of_expression_token1] = ACTIONS(8022), + [aux_sym_unary_expression_token1] = ACTIONS(8022), + [sym_string_literal] = ACTIONS(8024), + [sym_number_literal] = ACTIONS(8024), + [aux_sym_boolean_literal_token1] = ACTIONS(8022), + [aux_sym_boolean_literal_token2] = ACTIONS(8022), + [sym_nothing_literal] = ACTIONS(8022), + [sym_null_literal] = ACTIONS(8022), + [sym_empty_literal] = ACTIONS(8022), + [sym_date_literal] = ACTIONS(8024), + [anon_sym_POUND] = ACTIONS(8022), + }, + [STATE(3269)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_while_statement_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token3] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(3270)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_array_bound_token1] = ACTIONS(4589), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_statement_token2] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(3271)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_array_bound_token1] = ACTIONS(4441), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(8026), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(3272)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_while_statement_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(3273)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_while_statement_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(3274)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_while_statement_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token3] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(3275)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_statement_token2] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(3276)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(8028), + [aux_sym_array_bound_token1] = ACTIONS(4451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(8026), + [anon_sym_SLASH] = ACTIONS(8028), + [anon_sym_BSLASH] = ACTIONS(8030), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8032), + [anon_sym_PLUS] = ACTIONS(8034), + [anon_sym_DASH] = ACTIONS(8036), + [anon_sym_AMP] = ACTIONS(8038), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8040), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(8044), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(8046), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(8048), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(3277)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(8050), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3278)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7902), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3279)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7902), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3280)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token3] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(3281)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7898), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7902), + [anon_sym_SLASH] = ACTIONS(7898), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3282)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7898), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7902), + [anon_sym_SLASH] = ACTIONS(7898), + [anon_sym_BSLASH] = ACTIONS(7904), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3283)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_while_statement_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token3] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(3284)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7898), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7902), + [anon_sym_SLASH] = ACTIONS(7898), + [anon_sym_BSLASH] = ACTIONS(7904), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7906), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3285)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7898), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7902), + [anon_sym_SLASH] = ACTIONS(7898), + [anon_sym_BSLASH] = ACTIONS(7904), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7906), + [anon_sym_PLUS] = ACTIONS(7908), + [anon_sym_DASH] = ACTIONS(7910), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3286)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7898), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7902), + [anon_sym_SLASH] = ACTIONS(7898), + [anon_sym_BSLASH] = ACTIONS(7904), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7906), + [anon_sym_PLUS] = ACTIONS(7908), + [anon_sym_DASH] = ACTIONS(7910), + [anon_sym_AMP] = ACTIONS(7912), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3287)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7898), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7902), + [anon_sym_SLASH] = ACTIONS(7898), + [anon_sym_BSLASH] = ACTIONS(7904), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7906), + [anon_sym_PLUS] = ACTIONS(7908), + [anon_sym_DASH] = ACTIONS(7910), + [anon_sym_AMP] = ACTIONS(7912), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7914), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3288)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7679), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_while_statement_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token3] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(7679), + [anon_sym_BSLASH] = ACTIONS(7683), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7685), + [anon_sym_PLUS] = ACTIONS(7687), + [anon_sym_DASH] = ACTIONS(7689), + [anon_sym_AMP] = ACTIONS(7691), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7693), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7695), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7697), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7699), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7701), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(3289)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7898), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7902), + [anon_sym_SLASH] = ACTIONS(7898), + [anon_sym_BSLASH] = ACTIONS(7904), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7906), + [anon_sym_PLUS] = ACTIONS(7908), + [anon_sym_DASH] = ACTIONS(7910), + [anon_sym_AMP] = ACTIONS(7912), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7914), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7916), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3290)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_statement_token2] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token3] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(3291)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_statement_token2] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(3292)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7898), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7902), + [anon_sym_SLASH] = ACTIONS(7898), + [anon_sym_BSLASH] = ACTIONS(7904), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7906), + [anon_sym_PLUS] = ACTIONS(7908), + [anon_sym_DASH] = ACTIONS(7910), + [anon_sym_AMP] = ACTIONS(7912), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7914), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7916), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7918), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3293)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7898), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_statement_token2] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7902), + [anon_sym_SLASH] = ACTIONS(7898), + [anon_sym_BSLASH] = ACTIONS(7904), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7906), + [anon_sym_PLUS] = ACTIONS(7908), + [anon_sym_DASH] = ACTIONS(7910), + [anon_sym_AMP] = ACTIONS(7912), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7914), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7916), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7918), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7920), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3294)] = { + [sym_parameter_list] = STATE(3625), + [sym_as_type_clause] = STATE(4087), + [sym_identifier] = ACTIONS(8052), + [sym_newline] = ACTIONS(8054), + [anon_sym_COLON] = ACTIONS(8054), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8052), + [aux_sym_frm_property_statement_token1] = ACTIONS(8052), + [anon_sym_DOT] = ACTIONS(8052), + [anon_sym_BANG] = ACTIONS(8054), + [aux_sym__attribute_identifier_token1] = ACTIONS(8052), + [aux_sym_option_statement_token3] = ACTIONS(8052), + [aux_sym_type_declaration_token1] = ACTIONS(8052), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8052), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8052), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8052), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8052), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8052), + [aux_sym_enum_declaration_token1] = ACTIONS(8052), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8052), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8052), + [aux_sym_declare_function_statement_token1] = ACTIONS(8052), + [aux_sym_preprocessor_const_token1] = ACTIONS(8052), + [aux_sym__property_get_header_token1] = ACTIONS(8052), + [aux_sym_event_declaration_token1] = ACTIONS(8052), + [sym_static_modifier] = ACTIONS(8052), + [sym__dim_keyword] = ACTIONS(8052), + [sym__redim_keyword] = ACTIONS(8052), + [aux_sym_get_accessor_token1] = ACTIONS(8052), + [aux_sym_set_accessor_token1] = ACTIONS(8052), + [aux_sym_const_declaration_token1] = ACTIONS(8052), + [anon_sym_LPAREN] = ACTIONS(7426), + [aux_sym_as_type_clause_token1] = ACTIONS(7428), + [aux_sym_as_type_clause_token2] = ACTIONS(8052), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8052), + [aux_sym_visibility_token1] = ACTIONS(8052), + [aux_sym_visibility_token2] = ACTIONS(8052), + [aux_sym_elseif_fragment_token1] = ACTIONS(8052), + [aux_sym_else_fragment_token1] = ACTIONS(8052), + [aux_sym_select_statement_token1] = ACTIONS(8052), + [aux_sym__for_header_token1] = ACTIONS(8052), + [aux_sym_do_statement_token1] = ACTIONS(8052), + [aux_sym_do_condition_token1] = ACTIONS(8052), + [aux_sym_with_statement_token1] = ACTIONS(8052), + [aux_sym_exit_statement_token1] = ACTIONS(8052), + [sym_end_statement] = ACTIONS(8054), + [aux_sym_on_goto_statement_token1] = ACTIONS(8052), + [aux_sym_on_goto_statement_token2] = ACTIONS(8052), + [aux_sym_on_error_statement_token2] = ACTIONS(8052), + [sym__ambiguous_redim_statement] = ACTIONS(8054), + [aux_sym_erase_statement_token1] = ACTIONS(8052), + [aux_sym_open_statement_token1] = ACTIONS(8052), + [aux_sym_file_mode_token2] = ACTIONS(8052), + [aux_sym_file_access_token2] = ACTIONS(8052), + [aux_sym_file_lock_token2] = ACTIONS(8052), + [aux_sym_print_statement_token1] = ACTIONS(8052), + [anon_sym_PLUS] = ACTIONS(8054), + [anon_sym_DASH] = ACTIONS(8052), + [anon_sym_QMARK] = ACTIONS(8054), + [aux_sym_close_statement_token1] = ACTIONS(8052), + [aux_sym_put_statement_token1] = ACTIONS(8052), + [aux_sym_unlock_statement_token1] = ACTIONS(8052), + [aux_sym_seek_statement_token1] = ACTIONS(8052), + [sym_reset_statement] = ACTIONS(8052), + [aux_sym_raise_event_statement_token1] = ACTIONS(8052), + [sym_stop_statement] = ACTIONS(8052), + [sym_beep_statement] = ACTIONS(8052), + [aux_sym_unload_statement_token1] = ACTIONS(8052), + [aux_sym_def_type_statement_token1] = ACTIONS(8052), + [aux_sym_def_type_statement_token2] = ACTIONS(8052), + [aux_sym_def_type_statement_token3] = ACTIONS(8052), + [aux_sym_def_type_statement_token4] = ACTIONS(8052), + [aux_sym_def_type_statement_token5] = ACTIONS(8052), + [aux_sym_def_type_statement_token6] = ACTIONS(8052), + [aux_sym_def_type_statement_token7] = ACTIONS(8052), + [aux_sym_def_type_statement_token8] = ACTIONS(8052), + [aux_sym_def_type_statement_token9] = ACTIONS(8052), + [aux_sym_def_type_statement_token10] = ACTIONS(8052), + [aux_sym_def_type_statement_token11] = ACTIONS(8052), + [aux_sym_def_type_statement_token12] = ACTIONS(8052), + [aux_sym_def_type_statement_token13] = ACTIONS(8052), + [aux_sym_def_type_statement_token14] = ACTIONS(8052), + [aux_sym_call_statement_token1] = ACTIONS(8052), + [sym__ambiguous_call_statement] = ACTIONS(8052), + [aux_sym_addressof_expression_token1] = ACTIONS(8052), + [aux_sym_type_of_expression_token1] = ACTIONS(8052), + [aux_sym_unary_expression_token1] = ACTIONS(8052), + [sym_string_literal] = ACTIONS(8054), + [sym_number_literal] = ACTIONS(8054), + [aux_sym_boolean_literal_token1] = ACTIONS(8052), + [aux_sym_boolean_literal_token2] = ACTIONS(8052), + [sym_nothing_literal] = ACTIONS(8052), + [sym_null_literal] = ACTIONS(8052), + [sym_empty_literal] = ACTIONS(8052), + [sym_date_literal] = ACTIONS(8054), + [anon_sym_POUND] = ACTIONS(8052), + }, + [STATE(3295)] = { + [sym_identifier] = ACTIONS(6117), + [sym_newline] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6117), + [aux_sym_frm_property_statement_token1] = ACTIONS(6117), + [anon_sym_DOT] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6119), + [aux_sym__attribute_identifier_token1] = ACTIONS(6117), + [aux_sym_option_statement_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6117), + [aux_sym_preprocessor_const_token1] = ACTIONS(6117), + [sym_static_modifier] = ACTIONS(6117), + [sym__dim_keyword] = ACTIONS(6117), + [sym__redim_keyword] = ACTIONS(6117), + [aux_sym_get_accessor_token1] = ACTIONS(6117), + [aux_sym_set_accessor_token1] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6119), + [aux_sym_const_declaration_token1] = ACTIONS(6117), + [anon_sym_LPAREN] = ACTIONS(6119), + [aux_sym_as_type_clause_token2] = ACTIONS(6117), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6117), + [aux_sym_visibility_token1] = ACTIONS(6117), + [aux_sym_visibility_token2] = ACTIONS(6117), + [aux_sym_elseif_fragment_token1] = ACTIONS(6117), + [aux_sym_else_fragment_token1] = ACTIONS(6117), + [aux_sym_select_statement_token1] = ACTIONS(6117), + [aux_sym_select_statement_token2] = ACTIONS(6117), + [aux_sym__for_header_token1] = ACTIONS(6117), + [aux_sym_do_statement_token1] = ACTIONS(6117), + [aux_sym_do_condition_token1] = ACTIONS(6117), + [aux_sym_with_statement_token1] = ACTIONS(6117), + [aux_sym_exit_statement_token1] = ACTIONS(6117), + [sym_end_statement] = ACTIONS(6119), + [aux_sym_on_goto_statement_token1] = ACTIONS(6117), + [aux_sym_on_goto_statement_token2] = ACTIONS(6117), + [aux_sym_on_error_statement_token2] = ACTIONS(6117), + [sym__ambiguous_redim_statement] = ACTIONS(6119), + [aux_sym_erase_statement_token1] = ACTIONS(6117), + [aux_sym_open_statement_token1] = ACTIONS(6117), + [aux_sym_file_mode_token2] = ACTIONS(6117), + [aux_sym_file_access_token2] = ACTIONS(6117), + [aux_sym_file_lock_token2] = ACTIONS(6117), + [aux_sym_print_statement_token1] = ACTIONS(6117), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6057), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6059), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6061), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6063), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6065), + [anon_sym_QMARK] = ACTIONS(6119), + [aux_sym_close_statement_token1] = ACTIONS(6117), + [aux_sym_put_statement_token1] = ACTIONS(6117), + [aux_sym_unlock_statement_token1] = ACTIONS(6117), + [aux_sym_seek_statement_token1] = ACTIONS(6117), + [sym_reset_statement] = ACTIONS(6117), + [aux_sym_raise_event_statement_token1] = ACTIONS(6117), + [sym_stop_statement] = ACTIONS(6117), + [sym_beep_statement] = ACTIONS(6117), + [aux_sym_unload_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token2] = ACTIONS(6117), + [aux_sym_def_type_statement_token3] = ACTIONS(6117), + [aux_sym_def_type_statement_token4] = ACTIONS(6117), + [aux_sym_def_type_statement_token5] = ACTIONS(6117), + [aux_sym_def_type_statement_token6] = ACTIONS(6117), + [aux_sym_def_type_statement_token7] = ACTIONS(6117), + [aux_sym_def_type_statement_token8] = ACTIONS(6117), + [aux_sym_def_type_statement_token9] = ACTIONS(6117), + [aux_sym_def_type_statement_token10] = ACTIONS(6117), + [aux_sym_def_type_statement_token11] = ACTIONS(6117), + [aux_sym_def_type_statement_token12] = ACTIONS(6117), + [aux_sym_def_type_statement_token13] = ACTIONS(6117), + [aux_sym_def_type_statement_token14] = ACTIONS(6117), + [aux_sym_call_statement_token1] = ACTIONS(6117), + [sym__ambiguous_call_statement] = ACTIONS(6117), + [aux_sym_addressof_expression_token1] = ACTIONS(6117), + [aux_sym_type_of_expression_token1] = ACTIONS(6117), + [aux_sym_unary_expression_token1] = ACTIONS(6117), + [sym_string_literal] = ACTIONS(6119), + [sym_number_literal] = ACTIONS(6119), + [aux_sym_boolean_literal_token1] = ACTIONS(6117), + [aux_sym_boolean_literal_token2] = ACTIONS(6117), + [sym_nothing_literal] = ACTIONS(6117), + [sym_null_literal] = ACTIONS(6117), + [sym_empty_literal] = ACTIONS(6117), + [sym_date_literal] = ACTIONS(6119), + [anon_sym_POUND] = ACTIONS(6117), + }, + [STATE(3296)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_statement_token2] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3297)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(8028), + [aux_sym_array_bound_token1] = ACTIONS(4647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(8026), + [anon_sym_SLASH] = ACTIONS(8028), + [anon_sym_BSLASH] = ACTIONS(8030), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8032), + [anon_sym_PLUS] = ACTIONS(8034), + [anon_sym_DASH] = ACTIONS(8036), + [anon_sym_AMP] = ACTIONS(8038), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(3298)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7440), + [anon_sym_BANG] = ACTIONS(7442), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_statement_token2] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(3299)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_array_bound_token1] = ACTIONS(4437), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_statement_token2] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(3300)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6234), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_while_statement_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6236), + [anon_sym_SLASH] = ACTIONS(6234), + [anon_sym_BSLASH] = ACTIONS(6238), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6240), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_DASH] = ACTIONS(6244), + [anon_sym_AMP] = ACTIONS(6246), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(3301)] = { + [sym_identifier] = ACTIONS(4410), + [sym_newline] = ACTIONS(4412), + [anon_sym_COLON] = ACTIONS(4412), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4410), + [aux_sym_frm_property_statement_token1] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_BANG] = ACTIONS(4412), + [aux_sym__attribute_identifier_token1] = ACTIONS(4410), + [aux_sym_option_statement_token3] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4410), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4410), + [aux_sym_preprocessor_const_token1] = ACTIONS(4410), + [sym_static_modifier] = ACTIONS(4410), + [sym__dim_keyword] = ACTIONS(4410), + [sym__redim_keyword] = ACTIONS(4410), + [aux_sym_get_accessor_token1] = ACTIONS(4410), + [aux_sym_set_accessor_token1] = ACTIONS(4410), + [anon_sym_COMMA] = ACTIONS(4412), + [aux_sym_const_declaration_token1] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(4412), + [aux_sym_as_type_clause_token2] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4410), + [aux_sym_visibility_token1] = ACTIONS(4410), + [aux_sym_visibility_token2] = ACTIONS(4410), + [aux_sym_elseif_fragment_token1] = ACTIONS(4410), + [aux_sym_else_fragment_token1] = ACTIONS(4410), + [aux_sym_select_statement_token1] = ACTIONS(4410), + [aux_sym__for_header_token1] = ACTIONS(4410), + [aux_sym_do_statement_token1] = ACTIONS(4410), + [aux_sym_do_condition_token1] = ACTIONS(4410), + [aux_sym_with_statement_token1] = ACTIONS(4410), + [aux_sym_exit_statement_token1] = ACTIONS(4410), + [sym_end_statement] = ACTIONS(4412), + [aux_sym_on_goto_statement_token1] = ACTIONS(4410), + [aux_sym_on_goto_statement_token2] = ACTIONS(4410), + [aux_sym_on_error_statement_token2] = ACTIONS(4410), + [sym__ambiguous_redim_statement] = ACTIONS(4412), + [aux_sym_erase_statement_token1] = ACTIONS(4410), + [aux_sym_open_statement_token1] = ACTIONS(4410), + [aux_sym_file_mode_token2] = ACTIONS(4410), + [aux_sym_file_access_token2] = ACTIONS(4410), + [aux_sym_file_lock_token2] = ACTIONS(4410), + [aux_sym_print_statement_token1] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(5635), + [anon_sym_DASH] = ACTIONS(5638), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [aux_sym_close_statement_token1] = ACTIONS(4410), + [aux_sym_put_statement_token1] = ACTIONS(4410), + [aux_sym_unlock_statement_token1] = ACTIONS(4410), + [aux_sym_seek_statement_token1] = ACTIONS(4410), + [sym_reset_statement] = ACTIONS(4410), + [aux_sym_raise_event_statement_token1] = ACTIONS(4410), + [sym_stop_statement] = ACTIONS(4410), + [sym_beep_statement] = ACTIONS(4410), + [aux_sym_unload_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token1] = ACTIONS(4410), + [aux_sym_def_type_statement_token2] = ACTIONS(4410), + [aux_sym_def_type_statement_token3] = ACTIONS(4410), + [aux_sym_def_type_statement_token4] = ACTIONS(4410), + [aux_sym_def_type_statement_token5] = ACTIONS(4410), + [aux_sym_def_type_statement_token6] = ACTIONS(4410), + [aux_sym_def_type_statement_token7] = ACTIONS(4410), + [aux_sym_def_type_statement_token8] = ACTIONS(4410), + [aux_sym_def_type_statement_token9] = ACTIONS(4410), + [aux_sym_def_type_statement_token10] = ACTIONS(4410), + [aux_sym_def_type_statement_token11] = ACTIONS(4410), + [aux_sym_def_type_statement_token12] = ACTIONS(4410), + [aux_sym_def_type_statement_token13] = ACTIONS(4410), + [aux_sym_def_type_statement_token14] = ACTIONS(4410), + [aux_sym_call_statement_token1] = ACTIONS(4410), + [sym__ambiguous_call_statement] = ACTIONS(4410), + [aux_sym_addressof_expression_token1] = ACTIONS(4410), + [aux_sym_type_of_expression_token1] = ACTIONS(4410), + [aux_sym_unary_expression_token1] = ACTIONS(4410), + [sym_string_literal] = ACTIONS(4412), + [sym_number_literal] = ACTIONS(4412), + [aux_sym_boolean_literal_token1] = ACTIONS(4410), + [aux_sym_boolean_literal_token2] = ACTIONS(4410), + [sym_nothing_literal] = ACTIONS(4410), + [sym_null_literal] = ACTIONS(4410), + [sym_empty_literal] = ACTIONS(4410), + [sym_date_literal] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4410), + }, + [STATE(3302)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token3] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(3303)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_SEMI] = ACTIONS(4649), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(3304)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_while_statement_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3305)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_array_bound_token1] = ACTIONS(4589), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(3306)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token3] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(3307)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_statement_token2] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token3] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(3308)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_statement_token2] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token3] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(3309)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_statement_token2] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token3] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(3310)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(3311)] = { + [sym_identifier] = ACTIONS(6117), + [sym_newline] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6117), + [aux_sym_frm_property_statement_token1] = ACTIONS(6117), + [anon_sym_DOT] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6119), + [aux_sym__attribute_identifier_token1] = ACTIONS(6117), + [aux_sym_option_statement_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6117), + [aux_sym_preprocessor_const_token1] = ACTIONS(6117), + [sym_static_modifier] = ACTIONS(6117), + [sym__dim_keyword] = ACTIONS(6117), + [sym__redim_keyword] = ACTIONS(6117), + [aux_sym_get_accessor_token1] = ACTIONS(6117), + [aux_sym_set_accessor_token1] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6119), + [aux_sym_const_declaration_token1] = ACTIONS(6117), + [anon_sym_LPAREN] = ACTIONS(6119), + [aux_sym_as_type_clause_token2] = ACTIONS(6117), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6117), + [aux_sym_visibility_token1] = ACTIONS(6117), + [aux_sym_visibility_token2] = ACTIONS(6117), + [aux_sym_elseif_fragment_token1] = ACTIONS(6117), + [aux_sym_else_fragment_token1] = ACTIONS(6117), + [aux_sym_select_statement_token1] = ACTIONS(6117), + [aux_sym__for_header_token1] = ACTIONS(6117), + [aux_sym_do_statement_token1] = ACTIONS(6117), + [aux_sym_do_statement_token2] = ACTIONS(6117), + [aux_sym_do_condition_token1] = ACTIONS(6117), + [aux_sym_with_statement_token1] = ACTIONS(6117), + [aux_sym_exit_statement_token1] = ACTIONS(6117), + [sym_end_statement] = ACTIONS(6119), + [aux_sym_on_goto_statement_token1] = ACTIONS(6117), + [aux_sym_on_goto_statement_token2] = ACTIONS(6117), + [aux_sym_on_error_statement_token2] = ACTIONS(6117), + [sym__ambiguous_redim_statement] = ACTIONS(6119), + [aux_sym_erase_statement_token1] = ACTIONS(6117), + [aux_sym_open_statement_token1] = ACTIONS(6117), + [aux_sym_file_mode_token2] = ACTIONS(6117), + [aux_sym_file_access_token2] = ACTIONS(6117), + [aux_sym_file_lock_token2] = ACTIONS(6117), + [aux_sym_print_statement_token1] = ACTIONS(6117), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6079), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6081), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6083), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6085), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6087), + [anon_sym_QMARK] = ACTIONS(6119), + [aux_sym_close_statement_token1] = ACTIONS(6117), + [aux_sym_put_statement_token1] = ACTIONS(6117), + [aux_sym_unlock_statement_token1] = ACTIONS(6117), + [aux_sym_seek_statement_token1] = ACTIONS(6117), + [sym_reset_statement] = ACTIONS(6117), + [aux_sym_raise_event_statement_token1] = ACTIONS(6117), + [sym_stop_statement] = ACTIONS(6117), + [sym_beep_statement] = ACTIONS(6117), + [aux_sym_unload_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token2] = ACTIONS(6117), + [aux_sym_def_type_statement_token3] = ACTIONS(6117), + [aux_sym_def_type_statement_token4] = ACTIONS(6117), + [aux_sym_def_type_statement_token5] = ACTIONS(6117), + [aux_sym_def_type_statement_token6] = ACTIONS(6117), + [aux_sym_def_type_statement_token7] = ACTIONS(6117), + [aux_sym_def_type_statement_token8] = ACTIONS(6117), + [aux_sym_def_type_statement_token9] = ACTIONS(6117), + [aux_sym_def_type_statement_token10] = ACTIONS(6117), + [aux_sym_def_type_statement_token11] = ACTIONS(6117), + [aux_sym_def_type_statement_token12] = ACTIONS(6117), + [aux_sym_def_type_statement_token13] = ACTIONS(6117), + [aux_sym_def_type_statement_token14] = ACTIONS(6117), + [aux_sym_call_statement_token1] = ACTIONS(6117), + [sym__ambiguous_call_statement] = ACTIONS(6117), + [aux_sym_addressof_expression_token1] = ACTIONS(6117), + [aux_sym_type_of_expression_token1] = ACTIONS(6117), + [aux_sym_unary_expression_token1] = ACTIONS(6117), + [sym_string_literal] = ACTIONS(6119), + [sym_number_literal] = ACTIONS(6119), + [aux_sym_boolean_literal_token1] = ACTIONS(6117), + [aux_sym_boolean_literal_token2] = ACTIONS(6117), + [sym_nothing_literal] = ACTIONS(6117), + [sym_null_literal] = ACTIONS(6117), + [sym_empty_literal] = ACTIONS(6117), + [sym_date_literal] = ACTIONS(6119), + [anon_sym_POUND] = ACTIONS(6117), + }, + [STATE(3312)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_while_statement_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token3] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(3313)] = { + [sym_argument_list] = STATE(3536), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(8056), + [anon_sym_BANG] = ACTIONS(8058), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(8060), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(3314)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_array_bound_token1] = ACTIONS(4447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_while_statement_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(3315)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_SEMI] = ACTIONS(4443), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(3316)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_statement_token2] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token3] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(3317)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token3] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(3318)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(3319)] = { + [sym_parameter_list] = STATE(3639), + [sym_as_type_clause] = STATE(4151), + [sym_identifier] = ACTIONS(8062), + [sym_newline] = ACTIONS(8064), + [anon_sym_COLON] = ACTIONS(8064), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8062), + [aux_sym_frm_property_statement_token1] = ACTIONS(8062), + [anon_sym_DOT] = ACTIONS(8062), + [anon_sym_BANG] = ACTIONS(8064), + [aux_sym__attribute_identifier_token1] = ACTIONS(8062), + [aux_sym_option_statement_token3] = ACTIONS(8062), + [aux_sym_type_declaration_token1] = ACTIONS(8062), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8062), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8062), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8062), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8062), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8062), + [aux_sym_enum_declaration_token1] = ACTIONS(8062), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8062), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8062), + [aux_sym_declare_function_statement_token1] = ACTIONS(8062), + [aux_sym_preprocessor_const_token1] = ACTIONS(8062), + [aux_sym__property_get_header_token1] = ACTIONS(8062), + [aux_sym_event_declaration_token1] = ACTIONS(8062), + [sym_static_modifier] = ACTIONS(8062), + [sym__dim_keyword] = ACTIONS(8062), + [sym__redim_keyword] = ACTIONS(8062), + [aux_sym_get_accessor_token1] = ACTIONS(8062), + [aux_sym_set_accessor_token1] = ACTIONS(8062), + [aux_sym_const_declaration_token1] = ACTIONS(8062), + [anon_sym_LPAREN] = ACTIONS(7426), + [aux_sym_as_type_clause_token1] = ACTIONS(7428), + [aux_sym_as_type_clause_token2] = ACTIONS(8062), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8062), + [aux_sym_visibility_token1] = ACTIONS(8062), + [aux_sym_visibility_token2] = ACTIONS(8062), + [aux_sym_elseif_fragment_token1] = ACTIONS(8062), + [aux_sym_else_fragment_token1] = ACTIONS(8062), + [aux_sym_select_statement_token1] = ACTIONS(8062), + [aux_sym__for_header_token1] = ACTIONS(8062), + [aux_sym_do_statement_token1] = ACTIONS(8062), + [aux_sym_do_condition_token1] = ACTIONS(8062), + [aux_sym_with_statement_token1] = ACTIONS(8062), + [aux_sym_exit_statement_token1] = ACTIONS(8062), + [sym_end_statement] = ACTIONS(8064), + [aux_sym_on_goto_statement_token1] = ACTIONS(8062), + [aux_sym_on_goto_statement_token2] = ACTIONS(8062), + [aux_sym_on_error_statement_token2] = ACTIONS(8062), + [sym__ambiguous_redim_statement] = ACTIONS(8064), + [aux_sym_erase_statement_token1] = ACTIONS(8062), + [aux_sym_open_statement_token1] = ACTIONS(8062), + [aux_sym_file_mode_token2] = ACTIONS(8062), + [aux_sym_file_access_token2] = ACTIONS(8062), + [aux_sym_file_lock_token2] = ACTIONS(8062), + [aux_sym_print_statement_token1] = ACTIONS(8062), + [anon_sym_PLUS] = ACTIONS(8064), + [anon_sym_DASH] = ACTIONS(8062), + [anon_sym_QMARK] = ACTIONS(8064), + [aux_sym_close_statement_token1] = ACTIONS(8062), + [aux_sym_put_statement_token1] = ACTIONS(8062), + [aux_sym_unlock_statement_token1] = ACTIONS(8062), + [aux_sym_seek_statement_token1] = ACTIONS(8062), + [sym_reset_statement] = ACTIONS(8062), + [aux_sym_raise_event_statement_token1] = ACTIONS(8062), + [sym_stop_statement] = ACTIONS(8062), + [sym_beep_statement] = ACTIONS(8062), + [aux_sym_unload_statement_token1] = ACTIONS(8062), + [aux_sym_def_type_statement_token1] = ACTIONS(8062), + [aux_sym_def_type_statement_token2] = ACTIONS(8062), + [aux_sym_def_type_statement_token3] = ACTIONS(8062), + [aux_sym_def_type_statement_token4] = ACTIONS(8062), + [aux_sym_def_type_statement_token5] = ACTIONS(8062), + [aux_sym_def_type_statement_token6] = ACTIONS(8062), + [aux_sym_def_type_statement_token7] = ACTIONS(8062), + [aux_sym_def_type_statement_token8] = ACTIONS(8062), + [aux_sym_def_type_statement_token9] = ACTIONS(8062), + [aux_sym_def_type_statement_token10] = ACTIONS(8062), + [aux_sym_def_type_statement_token11] = ACTIONS(8062), + [aux_sym_def_type_statement_token12] = ACTIONS(8062), + [aux_sym_def_type_statement_token13] = ACTIONS(8062), + [aux_sym_def_type_statement_token14] = ACTIONS(8062), + [aux_sym_call_statement_token1] = ACTIONS(8062), + [sym__ambiguous_call_statement] = ACTIONS(8062), + [aux_sym_addressof_expression_token1] = ACTIONS(8062), + [aux_sym_type_of_expression_token1] = ACTIONS(8062), + [aux_sym_unary_expression_token1] = ACTIONS(8062), + [sym_string_literal] = ACTIONS(8064), + [sym_number_literal] = ACTIONS(8064), + [aux_sym_boolean_literal_token1] = ACTIONS(8062), + [aux_sym_boolean_literal_token2] = ACTIONS(8062), + [sym_nothing_literal] = ACTIONS(8062), + [sym_null_literal] = ACTIONS(8062), + [sym_empty_literal] = ACTIONS(8062), + [sym_date_literal] = ACTIONS(8064), + [anon_sym_POUND] = ACTIONS(8062), + }, + [STATE(3320)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_array_bound_token1] = ACTIONS(4477), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_while_statement_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(3321)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3322)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3323)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7679), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(7679), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3324)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7679), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(7679), + [anon_sym_BSLASH] = ACTIONS(7683), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3325)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7679), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(7679), + [anon_sym_BSLASH] = ACTIONS(7683), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7685), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3326)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(3327)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7998), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(7998), + [anon_sym_BSLASH] = ACTIONS(8002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8004), + [anon_sym_PLUS] = ACTIONS(8006), + [anon_sym_DASH] = ACTIONS(8008), + [anon_sym_AMP] = ACTIONS(8010), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8012), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8014), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(8016), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(8018), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(8020), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(3328)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7679), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(7679), + [anon_sym_BSLASH] = ACTIONS(7683), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7685), + [anon_sym_PLUS] = ACTIONS(7687), + [anon_sym_DASH] = ACTIONS(7689), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3329)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7679), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(7679), + [anon_sym_BSLASH] = ACTIONS(7683), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7685), + [anon_sym_PLUS] = ACTIONS(7687), + [anon_sym_DASH] = ACTIONS(7689), + [anon_sym_AMP] = ACTIONS(7691), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3330)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7679), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(7679), + [anon_sym_BSLASH] = ACTIONS(7683), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7685), + [anon_sym_PLUS] = ACTIONS(7687), + [anon_sym_DASH] = ACTIONS(7689), + [anon_sym_AMP] = ACTIONS(7691), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7693), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3331)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7679), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(7679), + [anon_sym_BSLASH] = ACTIONS(7683), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7685), + [anon_sym_PLUS] = ACTIONS(7687), + [anon_sym_DASH] = ACTIONS(7689), + [anon_sym_AMP] = ACTIONS(7691), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7693), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7695), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3332)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7679), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(7679), + [anon_sym_BSLASH] = ACTIONS(7683), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7685), + [anon_sym_PLUS] = ACTIONS(7687), + [anon_sym_DASH] = ACTIONS(7689), + [anon_sym_AMP] = ACTIONS(7691), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7693), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7695), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7697), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3333)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7679), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(7679), + [anon_sym_BSLASH] = ACTIONS(7683), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7685), + [anon_sym_PLUS] = ACTIONS(7687), + [anon_sym_DASH] = ACTIONS(7689), + [anon_sym_AMP] = ACTIONS(7691), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7693), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7695), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7697), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7699), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3334)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8026), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3335)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8026), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3336)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8028), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8026), + [anon_sym_SLASH] = ACTIONS(8028), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3337)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8028), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8026), + [anon_sym_SLASH] = ACTIONS(8028), + [anon_sym_BSLASH] = ACTIONS(8030), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3338)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8028), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8026), + [anon_sym_SLASH] = ACTIONS(8028), + [anon_sym_BSLASH] = ACTIONS(8030), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8032), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3339)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8028), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8026), + [anon_sym_SLASH] = ACTIONS(8028), + [anon_sym_BSLASH] = ACTIONS(8030), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8032), + [anon_sym_PLUS] = ACTIONS(8034), + [anon_sym_DASH] = ACTIONS(8036), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3340)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8028), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8026), + [anon_sym_SLASH] = ACTIONS(8028), + [anon_sym_BSLASH] = ACTIONS(8030), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8032), + [anon_sym_PLUS] = ACTIONS(8034), + [anon_sym_DASH] = ACTIONS(8036), + [anon_sym_AMP] = ACTIONS(8038), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3341)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8028), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8026), + [anon_sym_SLASH] = ACTIONS(8028), + [anon_sym_BSLASH] = ACTIONS(8030), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8032), + [anon_sym_PLUS] = ACTIONS(8034), + [anon_sym_DASH] = ACTIONS(8036), + [anon_sym_AMP] = ACTIONS(8038), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8040), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3342)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8028), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8026), + [anon_sym_SLASH] = ACTIONS(8028), + [anon_sym_BSLASH] = ACTIONS(8030), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8032), + [anon_sym_PLUS] = ACTIONS(8034), + [anon_sym_DASH] = ACTIONS(8036), + [anon_sym_AMP] = ACTIONS(8038), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8040), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3343)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8028), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8026), + [anon_sym_SLASH] = ACTIONS(8028), + [anon_sym_BSLASH] = ACTIONS(8030), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8032), + [anon_sym_PLUS] = ACTIONS(8034), + [anon_sym_DASH] = ACTIONS(8036), + [anon_sym_AMP] = ACTIONS(8038), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8040), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(8044), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3344)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8028), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8026), + [anon_sym_SLASH] = ACTIONS(8028), + [anon_sym_BSLASH] = ACTIONS(8030), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8032), + [anon_sym_PLUS] = ACTIONS(8034), + [anon_sym_DASH] = ACTIONS(8036), + [anon_sym_AMP] = ACTIONS(8038), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8040), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(8044), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(8046), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3345)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(3346)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_array_bound_token1] = ACTIONS(4485), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_while_statement_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(3347)] = { + [sym_identifier] = ACTIONS(6117), + [sym_newline] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6117), + [aux_sym_frm_property_statement_token1] = ACTIONS(6117), + [anon_sym_DOT] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6119), + [aux_sym__attribute_identifier_token1] = ACTIONS(6117), + [aux_sym_option_statement_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6117), + [aux_sym_preprocessor_const_token1] = ACTIONS(6117), + [sym_static_modifier] = ACTIONS(6117), + [sym__dim_keyword] = ACTIONS(6117), + [sym__redim_keyword] = ACTIONS(6117), + [aux_sym_get_accessor_token1] = ACTIONS(6117), + [aux_sym_set_accessor_token1] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6119), + [aux_sym_const_declaration_token1] = ACTIONS(6117), + [anon_sym_LPAREN] = ACTIONS(6119), + [aux_sym_as_type_clause_token2] = ACTIONS(6117), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6117), + [aux_sym_visibility_token1] = ACTIONS(6117), + [aux_sym_visibility_token2] = ACTIONS(6117), + [aux_sym_elseif_fragment_token1] = ACTIONS(6117), + [aux_sym_else_fragment_token1] = ACTIONS(6117), + [aux_sym_select_statement_token1] = ACTIONS(6117), + [aux_sym__for_header_token1] = ACTIONS(6117), + [aux_sym_do_statement_token1] = ACTIONS(6117), + [aux_sym_do_condition_token1] = ACTIONS(6117), + [aux_sym_with_statement_token1] = ACTIONS(6117), + [aux_sym_exit_statement_token1] = ACTIONS(6117), + [sym_end_statement] = ACTIONS(6119), + [aux_sym_on_goto_statement_token1] = ACTIONS(6117), + [aux_sym_on_goto_statement_token2] = ACTIONS(6117), + [aux_sym_on_error_statement_token2] = ACTIONS(6117), + [sym__ambiguous_redim_statement] = ACTIONS(6119), + [aux_sym_erase_statement_token1] = ACTIONS(6117), + [aux_sym_open_statement_token1] = ACTIONS(6117), + [aux_sym_file_mode_token2] = ACTIONS(6117), + [aux_sym_file_access_token2] = ACTIONS(6117), + [aux_sym_file_lock_token2] = ACTIONS(6117), + [aux_sym_print_statement_token1] = ACTIONS(6117), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5887), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5889), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5891), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5893), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6190), + [anon_sym_QMARK] = ACTIONS(6119), + [aux_sym_close_statement_token1] = ACTIONS(6117), + [aux_sym_put_statement_token1] = ACTIONS(6117), + [aux_sym_unlock_statement_token1] = ACTIONS(6117), + [aux_sym_seek_statement_token1] = ACTIONS(6117), + [sym_reset_statement] = ACTIONS(6117), + [aux_sym_raise_event_statement_token1] = ACTIONS(6117), + [sym_stop_statement] = ACTIONS(6117), + [sym_beep_statement] = ACTIONS(6117), + [aux_sym_unload_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token2] = ACTIONS(6117), + [aux_sym_def_type_statement_token3] = ACTIONS(6117), + [aux_sym_def_type_statement_token4] = ACTIONS(6117), + [aux_sym_def_type_statement_token5] = ACTIONS(6117), + [aux_sym_def_type_statement_token6] = ACTIONS(6117), + [aux_sym_def_type_statement_token7] = ACTIONS(6117), + [aux_sym_def_type_statement_token8] = ACTIONS(6117), + [aux_sym_def_type_statement_token9] = ACTIONS(6117), + [aux_sym_def_type_statement_token10] = ACTIONS(6117), + [aux_sym_def_type_statement_token11] = ACTIONS(6117), + [aux_sym_def_type_statement_token12] = ACTIONS(6117), + [aux_sym_def_type_statement_token13] = ACTIONS(6117), + [aux_sym_def_type_statement_token14] = ACTIONS(6117), + [aux_sym_call_statement_token1] = ACTIONS(6117), + [sym__ambiguous_call_statement] = ACTIONS(6117), + [aux_sym_addressof_expression_token1] = ACTIONS(6117), + [aux_sym_type_of_expression_token1] = ACTIONS(6117), + [aux_sym_unary_expression_token1] = ACTIONS(6117), + [sym_string_literal] = ACTIONS(6119), + [sym_number_literal] = ACTIONS(6119), + [aux_sym_boolean_literal_token1] = ACTIONS(6117), + [aux_sym_boolean_literal_token2] = ACTIONS(6117), + [sym_nothing_literal] = ACTIONS(6117), + [sym_null_literal] = ACTIONS(6117), + [sym_empty_literal] = ACTIONS(6117), + [sym_date_literal] = ACTIONS(6119), + [anon_sym_POUND] = ACTIONS(6117), + }, + [STATE(3348)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(7738), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_statement_token2] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token3] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(7740), + [anon_sym_SLASH] = ACTIONS(7738), + [anon_sym_BSLASH] = ACTIONS(7742), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7744), + [anon_sym_PLUS] = ACTIONS(7746), + [anon_sym_DASH] = ACTIONS(7748), + [anon_sym_AMP] = ACTIONS(7750), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7826), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7828), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7830), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7832), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7834), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(3349)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_statement_token2] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token3] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(3350)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3351)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7533), + [anon_sym_BANG] = ACTIONS(7535), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(3352)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_array_bound_token1] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_statement_token2] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(3353)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_array_bound_token1] = ACTIONS(4437), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(3354)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_array_bound_token1] = ACTIONS(4441), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_while_statement_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(3355)] = { + [sym_initializer] = STATE(4275), + [sym_as_type_clause] = STATE(3745), + [sym_identifier] = ACTIONS(7287), + [sym_newline] = ACTIONS(7289), + [anon_sym_COLON] = ACTIONS(7289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7287), + [aux_sym_frm_property_statement_token1] = ACTIONS(7287), + [anon_sym_EQ] = ACTIONS(7671), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_BANG] = ACTIONS(7289), + [aux_sym__attribute_identifier_token1] = ACTIONS(7287), + [aux_sym_option_statement_token3] = ACTIONS(7287), + [aux_sym_type_declaration_token1] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7287), + [aux_sym_enum_declaration_token1] = ACTIONS(7287), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7287), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7287), + [aux_sym_declare_function_statement_token1] = ACTIONS(7287), + [aux_sym_preprocessor_const_token1] = ACTIONS(7287), + [aux_sym__property_get_header_token1] = ACTIONS(7287), + [aux_sym_event_declaration_token1] = ACTIONS(7287), + [sym_static_modifier] = ACTIONS(7287), + [sym__dim_keyword] = ACTIONS(7287), + [sym__redim_keyword] = ACTIONS(7287), + [aux_sym_get_accessor_token1] = ACTIONS(7287), + [aux_sym_set_accessor_token1] = ACTIONS(7287), + [anon_sym_COMMA] = ACTIONS(7289), + [aux_sym_const_declaration_token1] = ACTIONS(7287), + [anon_sym_LPAREN] = ACTIONS(7289), + [aux_sym_as_type_clause_token1] = ACTIONS(7675), + [aux_sym_as_type_clause_token2] = ACTIONS(7287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7287), + [aux_sym_visibility_token1] = ACTIONS(7287), + [aux_sym_visibility_token2] = ACTIONS(7287), + [aux_sym_elseif_fragment_token1] = ACTIONS(7287), + [aux_sym_else_fragment_token1] = ACTIONS(7287), + [aux_sym_select_statement_token1] = ACTIONS(7287), + [aux_sym__for_header_token1] = ACTIONS(7287), + [aux_sym_do_statement_token1] = ACTIONS(7287), + [aux_sym_do_condition_token1] = ACTIONS(7287), + [aux_sym_with_statement_token1] = ACTIONS(7287), + [aux_sym_exit_statement_token1] = ACTIONS(7287), + [sym_end_statement] = ACTIONS(7289), + [aux_sym_on_goto_statement_token1] = ACTIONS(7287), + [aux_sym_on_goto_statement_token2] = ACTIONS(7287), + [aux_sym_on_error_statement_token2] = ACTIONS(7287), + [sym__ambiguous_redim_statement] = ACTIONS(7289), + [aux_sym_erase_statement_token1] = ACTIONS(7287), + [aux_sym_open_statement_token1] = ACTIONS(7287), + [aux_sym_file_mode_token2] = ACTIONS(7287), + [aux_sym_file_access_token2] = ACTIONS(7287), + [aux_sym_file_lock_token2] = ACTIONS(7287), + [aux_sym_print_statement_token1] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_QMARK] = ACTIONS(7289), + [aux_sym_close_statement_token1] = ACTIONS(7287), + [aux_sym_put_statement_token1] = ACTIONS(7287), + [aux_sym_unlock_statement_token1] = ACTIONS(7287), + [aux_sym_seek_statement_token1] = ACTIONS(7287), + [sym_reset_statement] = ACTIONS(7287), + [aux_sym_raise_event_statement_token1] = ACTIONS(7287), + [sym_stop_statement] = ACTIONS(7287), + [sym_beep_statement] = ACTIONS(7287), + [aux_sym_unload_statement_token1] = ACTIONS(7287), + [aux_sym_def_type_statement_token1] = ACTIONS(7287), + [aux_sym_def_type_statement_token2] = ACTIONS(7287), + [aux_sym_def_type_statement_token3] = ACTIONS(7287), + [aux_sym_def_type_statement_token4] = ACTIONS(7287), + [aux_sym_def_type_statement_token5] = ACTIONS(7287), + [aux_sym_def_type_statement_token6] = ACTIONS(7287), + [aux_sym_def_type_statement_token7] = ACTIONS(7287), + [aux_sym_def_type_statement_token8] = ACTIONS(7287), + [aux_sym_def_type_statement_token9] = ACTIONS(7287), + [aux_sym_def_type_statement_token10] = ACTIONS(7287), + [aux_sym_def_type_statement_token11] = ACTIONS(7287), + [aux_sym_def_type_statement_token12] = ACTIONS(7287), + [aux_sym_def_type_statement_token13] = ACTIONS(7287), + [aux_sym_def_type_statement_token14] = ACTIONS(7287), + [aux_sym_call_statement_token1] = ACTIONS(7287), + [sym__ambiguous_call_statement] = ACTIONS(7287), + [aux_sym_addressof_expression_token1] = ACTIONS(7287), + [aux_sym_type_of_expression_token1] = ACTIONS(7287), + [aux_sym_unary_expression_token1] = ACTIONS(7287), + [sym_string_literal] = ACTIONS(7289), + [sym_number_literal] = ACTIONS(7289), + [aux_sym_boolean_literal_token1] = ACTIONS(7287), + [aux_sym_boolean_literal_token2] = ACTIONS(7287), + [sym_nothing_literal] = ACTIONS(7287), + [sym_null_literal] = ACTIONS(7287), + [sym_empty_literal] = ACTIONS(7287), + [sym_date_literal] = ACTIONS(7289), + [anon_sym_POUND] = ACTIONS(7287), + }, + [STATE(3356)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_while_statement_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3357)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7786), + [aux_sym_array_bound_token1] = ACTIONS(4451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_while_statement_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_BSLASH] = ACTIONS(7792), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7798), + [anon_sym_AMP] = ACTIONS(7800), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7802), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7804), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7806), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7808), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7810), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(3358)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_array_bound_token1] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_statement_token2] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(3359)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7786), + [aux_sym_array_bound_token1] = ACTIONS(4647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_while_statement_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_BSLASH] = ACTIONS(7792), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7798), + [anon_sym_AMP] = ACTIONS(7800), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(3360)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(3361)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(3370), + [sym_identifier] = ACTIONS(8066), + [sym_newline] = ACTIONS(8068), + [anon_sym_COLON] = ACTIONS(8068), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8066), + [aux_sym_frm_property_statement_token1] = ACTIONS(8066), + [anon_sym_DOT] = ACTIONS(8066), + [anon_sym_BANG] = ACTIONS(8068), + [aux_sym__attribute_identifier_token1] = ACTIONS(8066), + [aux_sym_option_statement_token3] = ACTIONS(8066), + [aux_sym_type_declaration_token1] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8066), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8066), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8066), + [aux_sym_enum_declaration_token1] = ACTIONS(8066), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8066), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8066), + [aux_sym_declare_function_statement_token1] = ACTIONS(8066), + [aux_sym_preprocessor_const_token1] = ACTIONS(8066), + [aux_sym__property_get_header_token1] = ACTIONS(8066), + [aux_sym_event_declaration_token1] = ACTIONS(8066), + [sym_static_modifier] = ACTIONS(8066), + [sym__dim_keyword] = ACTIONS(8066), + [sym__redim_keyword] = ACTIONS(8066), + [aux_sym_get_accessor_token1] = ACTIONS(8066), + [aux_sym_set_accessor_token1] = ACTIONS(8066), + [anon_sym_COMMA] = ACTIONS(5570), + [aux_sym_const_declaration_token1] = ACTIONS(8066), + [anon_sym_LPAREN] = ACTIONS(8068), + [aux_sym_as_type_clause_token2] = ACTIONS(8066), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8066), + [aux_sym_visibility_token1] = ACTIONS(8066), + [aux_sym_visibility_token2] = ACTIONS(8066), + [aux_sym_elseif_fragment_token1] = ACTIONS(8066), + [aux_sym_else_fragment_token1] = ACTIONS(8066), + [aux_sym_select_statement_token1] = ACTIONS(8066), + [aux_sym__for_header_token1] = ACTIONS(8066), + [aux_sym_do_statement_token1] = ACTIONS(8066), + [aux_sym_do_condition_token1] = ACTIONS(8066), + [aux_sym_with_statement_token1] = ACTIONS(8066), + [aux_sym_exit_statement_token1] = ACTIONS(8066), + [sym_end_statement] = ACTIONS(8068), + [aux_sym_on_goto_statement_token1] = ACTIONS(8066), + [aux_sym_on_goto_statement_token2] = ACTIONS(8066), + [aux_sym_on_error_statement_token2] = ACTIONS(8066), + [sym__ambiguous_redim_statement] = ACTIONS(8068), + [aux_sym_erase_statement_token1] = ACTIONS(8066), + [aux_sym_open_statement_token1] = ACTIONS(8066), + [aux_sym_file_mode_token2] = ACTIONS(8066), + [aux_sym_file_access_token2] = ACTIONS(8066), + [aux_sym_file_lock_token2] = ACTIONS(8066), + [aux_sym_print_statement_token1] = ACTIONS(8066), + [anon_sym_PLUS] = ACTIONS(8068), + [anon_sym_DASH] = ACTIONS(8066), + [anon_sym_SEMI] = ACTIONS(5570), + [anon_sym_QMARK] = ACTIONS(8068), + [aux_sym_close_statement_token1] = ACTIONS(8066), + [aux_sym_put_statement_token1] = ACTIONS(8066), + [aux_sym_unlock_statement_token1] = ACTIONS(8066), + [aux_sym_seek_statement_token1] = ACTIONS(8066), + [sym_reset_statement] = ACTIONS(8066), + [aux_sym_raise_event_statement_token1] = ACTIONS(8066), + [sym_stop_statement] = ACTIONS(8066), + [sym_beep_statement] = ACTIONS(8066), + [aux_sym_unload_statement_token1] = ACTIONS(8066), + [aux_sym_def_type_statement_token1] = ACTIONS(8066), + [aux_sym_def_type_statement_token2] = ACTIONS(8066), + [aux_sym_def_type_statement_token3] = ACTIONS(8066), + [aux_sym_def_type_statement_token4] = ACTIONS(8066), + [aux_sym_def_type_statement_token5] = ACTIONS(8066), + [aux_sym_def_type_statement_token6] = ACTIONS(8066), + [aux_sym_def_type_statement_token7] = ACTIONS(8066), + [aux_sym_def_type_statement_token8] = ACTIONS(8066), + [aux_sym_def_type_statement_token9] = ACTIONS(8066), + [aux_sym_def_type_statement_token10] = ACTIONS(8066), + [aux_sym_def_type_statement_token11] = ACTIONS(8066), + [aux_sym_def_type_statement_token12] = ACTIONS(8066), + [aux_sym_def_type_statement_token13] = ACTIONS(8066), + [aux_sym_def_type_statement_token14] = ACTIONS(8066), + [aux_sym_call_statement_token1] = ACTIONS(8066), + [sym__ambiguous_call_statement] = ACTIONS(8066), + [aux_sym_addressof_expression_token1] = ACTIONS(8066), + [aux_sym_type_of_expression_token1] = ACTIONS(8066), + [aux_sym_unary_expression_token1] = ACTIONS(8066), + [sym_string_literal] = ACTIONS(8068), + [sym_number_literal] = ACTIONS(8068), + [aux_sym_boolean_literal_token1] = ACTIONS(8066), + [aux_sym_boolean_literal_token2] = ACTIONS(8066), + [sym_nothing_literal] = ACTIONS(8066), + [sym_null_literal] = ACTIONS(8066), + [sym_empty_literal] = ACTIONS(8066), + [sym_date_literal] = ACTIONS(8068), + [anon_sym_POUND] = ACTIONS(8066), + }, + [STATE(3362)] = { + [sym_array_bounds] = STATE(3661), + [sym_identifier] = ACTIONS(8070), + [sym_newline] = ACTIONS(8072), + [anon_sym_COLON] = ACTIONS(8072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8070), + [aux_sym_frm_property_statement_token1] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(8072), + [anon_sym_DOT] = ACTIONS(8070), + [anon_sym_BANG] = ACTIONS(8072), + [aux_sym__attribute_identifier_token1] = ACTIONS(8070), + [aux_sym_option_statement_token3] = ACTIONS(8070), + [aux_sym_type_declaration_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8070), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8070), + [aux_sym_enum_declaration_token1] = ACTIONS(8070), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8070), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8070), + [aux_sym_declare_function_statement_token1] = ACTIONS(8070), + [aux_sym_preprocessor_const_token1] = ACTIONS(8070), + [aux_sym__property_get_header_token1] = ACTIONS(8070), + [aux_sym_event_declaration_token1] = ACTIONS(8070), + [sym_static_modifier] = ACTIONS(8070), + [sym__dim_keyword] = ACTIONS(8070), + [sym__redim_keyword] = ACTIONS(8070), + [aux_sym_get_accessor_token1] = ACTIONS(8070), + [aux_sym_set_accessor_token1] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [aux_sym_const_declaration_token1] = ACTIONS(8070), + [anon_sym_LPAREN] = ACTIONS(7138), + [aux_sym_as_type_clause_token2] = ACTIONS(8070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8070), + [aux_sym_visibility_token1] = ACTIONS(8070), + [aux_sym_visibility_token2] = ACTIONS(8070), + [aux_sym_elseif_fragment_token1] = ACTIONS(8070), + [aux_sym_else_fragment_token1] = ACTIONS(8070), + [aux_sym_select_statement_token1] = ACTIONS(8070), + [aux_sym__for_header_token1] = ACTIONS(8070), + [aux_sym_do_statement_token1] = ACTIONS(8070), + [aux_sym_do_condition_token1] = ACTIONS(8070), + [aux_sym_with_statement_token1] = ACTIONS(8070), + [aux_sym_exit_statement_token1] = ACTIONS(8070), + [sym_end_statement] = ACTIONS(8072), + [aux_sym_on_goto_statement_token1] = ACTIONS(8070), + [aux_sym_on_goto_statement_token2] = ACTIONS(8070), + [aux_sym_on_error_statement_token2] = ACTIONS(8070), + [sym__ambiguous_redim_statement] = ACTIONS(8072), + [aux_sym_erase_statement_token1] = ACTIONS(8070), + [aux_sym_open_statement_token1] = ACTIONS(8070), + [aux_sym_file_mode_token2] = ACTIONS(8070), + [aux_sym_file_access_token2] = ACTIONS(8070), + [aux_sym_file_lock_token2] = ACTIONS(8070), + [aux_sym_print_statement_token1] = ACTIONS(8070), + [anon_sym_PLUS] = ACTIONS(8072), + [anon_sym_DASH] = ACTIONS(8070), + [anon_sym_QMARK] = ACTIONS(8072), + [aux_sym_close_statement_token1] = ACTIONS(8070), + [aux_sym_put_statement_token1] = ACTIONS(8070), + [aux_sym_unlock_statement_token1] = ACTIONS(8070), + [aux_sym_seek_statement_token1] = ACTIONS(8070), + [sym_reset_statement] = ACTIONS(8070), + [aux_sym_raise_event_statement_token1] = ACTIONS(8070), + [sym_stop_statement] = ACTIONS(8070), + [sym_beep_statement] = ACTIONS(8070), + [aux_sym_unload_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token2] = ACTIONS(8070), + [aux_sym_def_type_statement_token3] = ACTIONS(8070), + [aux_sym_def_type_statement_token4] = ACTIONS(8070), + [aux_sym_def_type_statement_token5] = ACTIONS(8070), + [aux_sym_def_type_statement_token6] = ACTIONS(8070), + [aux_sym_def_type_statement_token7] = ACTIONS(8070), + [aux_sym_def_type_statement_token8] = ACTIONS(8070), + [aux_sym_def_type_statement_token9] = ACTIONS(8070), + [aux_sym_def_type_statement_token10] = ACTIONS(8070), + [aux_sym_def_type_statement_token11] = ACTIONS(8070), + [aux_sym_def_type_statement_token12] = ACTIONS(8070), + [aux_sym_def_type_statement_token13] = ACTIONS(8070), + [aux_sym_def_type_statement_token14] = ACTIONS(8070), + [aux_sym_call_statement_token1] = ACTIONS(8070), + [sym__ambiguous_call_statement] = ACTIONS(8070), + [aux_sym_addressof_expression_token1] = ACTIONS(8070), + [aux_sym_type_of_expression_token1] = ACTIONS(8070), + [aux_sym_unary_expression_token1] = ACTIONS(8070), + [sym_string_literal] = ACTIONS(8072), + [sym_number_literal] = ACTIONS(8072), + [aux_sym_boolean_literal_token1] = ACTIONS(8070), + [aux_sym_boolean_literal_token2] = ACTIONS(8070), + [sym_nothing_literal] = ACTIONS(8070), + [sym_null_literal] = ACTIONS(8070), + [sym_empty_literal] = ACTIONS(8070), + [sym_date_literal] = ACTIONS(8072), + [anon_sym_POUND] = ACTIONS(8070), + }, + [STATE(3363)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_while_statement_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3364)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7468), + [anon_sym_BANG] = ACTIONS(7470), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_while_statement_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(3365)] = { + [sym_initializer] = STATE(4293), + [sym_as_type_clause] = STATE(3803), + [sym_identifier] = ACTIONS(7200), + [sym_newline] = ACTIONS(7202), + [anon_sym_COLON] = ACTIONS(7202), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7200), + [aux_sym_frm_property_statement_token1] = ACTIONS(7200), + [anon_sym_EQ] = ACTIONS(7671), + [anon_sym_DOT] = ACTIONS(7200), + [anon_sym_BANG] = ACTIONS(7202), + [aux_sym__attribute_identifier_token1] = ACTIONS(7200), + [aux_sym_option_statement_token3] = ACTIONS(7200), + [aux_sym_type_declaration_token1] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7200), + [aux_sym_enum_declaration_token1] = ACTIONS(7200), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7200), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7200), + [aux_sym_declare_function_statement_token1] = ACTIONS(7200), + [aux_sym_preprocessor_const_token1] = ACTIONS(7200), + [aux_sym__property_get_header_token1] = ACTIONS(7200), + [aux_sym_event_declaration_token1] = ACTIONS(7200), + [sym_static_modifier] = ACTIONS(7200), + [sym__dim_keyword] = ACTIONS(7200), + [sym__redim_keyword] = ACTIONS(7200), + [aux_sym_get_accessor_token1] = ACTIONS(7200), + [aux_sym_set_accessor_token1] = ACTIONS(7200), + [anon_sym_COMMA] = ACTIONS(7202), + [aux_sym_const_declaration_token1] = ACTIONS(7200), + [anon_sym_LPAREN] = ACTIONS(7202), + [aux_sym_as_type_clause_token1] = ACTIONS(7675), + [aux_sym_as_type_clause_token2] = ACTIONS(7200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7200), + [aux_sym_visibility_token1] = ACTIONS(7200), + [aux_sym_visibility_token2] = ACTIONS(7200), + [aux_sym_elseif_fragment_token1] = ACTIONS(7200), + [aux_sym_else_fragment_token1] = ACTIONS(7200), + [aux_sym_select_statement_token1] = ACTIONS(7200), + [aux_sym__for_header_token1] = ACTIONS(7200), + [aux_sym_do_statement_token1] = ACTIONS(7200), + [aux_sym_do_condition_token1] = ACTIONS(7200), + [aux_sym_with_statement_token1] = ACTIONS(7200), + [aux_sym_exit_statement_token1] = ACTIONS(7200), + [sym_end_statement] = ACTIONS(7202), + [aux_sym_on_goto_statement_token1] = ACTIONS(7200), + [aux_sym_on_goto_statement_token2] = ACTIONS(7200), + [aux_sym_on_error_statement_token2] = ACTIONS(7200), + [sym__ambiguous_redim_statement] = ACTIONS(7202), + [aux_sym_erase_statement_token1] = ACTIONS(7200), + [aux_sym_open_statement_token1] = ACTIONS(7200), + [aux_sym_file_mode_token2] = ACTIONS(7200), + [aux_sym_file_access_token2] = ACTIONS(7200), + [aux_sym_file_lock_token2] = ACTIONS(7200), + [aux_sym_print_statement_token1] = ACTIONS(7200), + [anon_sym_PLUS] = ACTIONS(7202), + [anon_sym_DASH] = ACTIONS(7200), + [anon_sym_QMARK] = ACTIONS(7202), + [aux_sym_close_statement_token1] = ACTIONS(7200), + [aux_sym_put_statement_token1] = ACTIONS(7200), + [aux_sym_unlock_statement_token1] = ACTIONS(7200), + [aux_sym_seek_statement_token1] = ACTIONS(7200), + [sym_reset_statement] = ACTIONS(7200), + [aux_sym_raise_event_statement_token1] = ACTIONS(7200), + [sym_stop_statement] = ACTIONS(7200), + [sym_beep_statement] = ACTIONS(7200), + [aux_sym_unload_statement_token1] = ACTIONS(7200), + [aux_sym_def_type_statement_token1] = ACTIONS(7200), + [aux_sym_def_type_statement_token2] = ACTIONS(7200), + [aux_sym_def_type_statement_token3] = ACTIONS(7200), + [aux_sym_def_type_statement_token4] = ACTIONS(7200), + [aux_sym_def_type_statement_token5] = ACTIONS(7200), + [aux_sym_def_type_statement_token6] = ACTIONS(7200), + [aux_sym_def_type_statement_token7] = ACTIONS(7200), + [aux_sym_def_type_statement_token8] = ACTIONS(7200), + [aux_sym_def_type_statement_token9] = ACTIONS(7200), + [aux_sym_def_type_statement_token10] = ACTIONS(7200), + [aux_sym_def_type_statement_token11] = ACTIONS(7200), + [aux_sym_def_type_statement_token12] = ACTIONS(7200), + [aux_sym_def_type_statement_token13] = ACTIONS(7200), + [aux_sym_def_type_statement_token14] = ACTIONS(7200), + [aux_sym_call_statement_token1] = ACTIONS(7200), + [sym__ambiguous_call_statement] = ACTIONS(7200), + [aux_sym_addressof_expression_token1] = ACTIONS(7200), + [aux_sym_type_of_expression_token1] = ACTIONS(7200), + [aux_sym_unary_expression_token1] = ACTIONS(7200), + [sym_string_literal] = ACTIONS(7202), + [sym_number_literal] = ACTIONS(7202), + [aux_sym_boolean_literal_token1] = ACTIONS(7200), + [aux_sym_boolean_literal_token2] = ACTIONS(7200), + [sym_nothing_literal] = ACTIONS(7200), + [sym_null_literal] = ACTIONS(7200), + [sym_empty_literal] = ACTIONS(7200), + [sym_date_literal] = ACTIONS(7202), + [anon_sym_POUND] = ACTIONS(7200), + }, + [STATE(3366)] = { + [sym_parameter_list] = STATE(3651), + [sym_as_type_clause] = STATE(4171), + [sym_identifier] = ACTIONS(8074), + [sym_newline] = ACTIONS(8076), + [anon_sym_COLON] = ACTIONS(8076), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8074), + [aux_sym_frm_property_statement_token1] = ACTIONS(8074), + [anon_sym_DOT] = ACTIONS(8074), + [anon_sym_BANG] = ACTIONS(8076), + [aux_sym__attribute_identifier_token1] = ACTIONS(8074), + [aux_sym_option_statement_token3] = ACTIONS(8074), + [aux_sym_type_declaration_token1] = ACTIONS(8074), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8074), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8074), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8074), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8074), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8074), + [aux_sym_enum_declaration_token1] = ACTIONS(8074), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8074), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8074), + [aux_sym_declare_function_statement_token1] = ACTIONS(8074), + [aux_sym_preprocessor_const_token1] = ACTIONS(8074), + [aux_sym__property_get_header_token1] = ACTIONS(8074), + [aux_sym_event_declaration_token1] = ACTIONS(8074), + [sym_static_modifier] = ACTIONS(8074), + [sym__dim_keyword] = ACTIONS(8074), + [sym__redim_keyword] = ACTIONS(8074), + [aux_sym_get_accessor_token1] = ACTIONS(8074), + [aux_sym_set_accessor_token1] = ACTIONS(8074), + [aux_sym_const_declaration_token1] = ACTIONS(8074), + [anon_sym_LPAREN] = ACTIONS(7426), + [aux_sym_as_type_clause_token1] = ACTIONS(7428), + [aux_sym_as_type_clause_token2] = ACTIONS(8074), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8074), + [aux_sym_visibility_token1] = ACTIONS(8074), + [aux_sym_visibility_token2] = ACTIONS(8074), + [aux_sym_elseif_fragment_token1] = ACTIONS(8074), + [aux_sym_else_fragment_token1] = ACTIONS(8074), + [aux_sym_select_statement_token1] = ACTIONS(8074), + [aux_sym__for_header_token1] = ACTIONS(8074), + [aux_sym_do_statement_token1] = ACTIONS(8074), + [aux_sym_do_condition_token1] = ACTIONS(8074), + [aux_sym_with_statement_token1] = ACTIONS(8074), + [aux_sym_exit_statement_token1] = ACTIONS(8074), + [sym_end_statement] = ACTIONS(8076), + [aux_sym_on_goto_statement_token1] = ACTIONS(8074), + [aux_sym_on_goto_statement_token2] = ACTIONS(8074), + [aux_sym_on_error_statement_token2] = ACTIONS(8074), + [sym__ambiguous_redim_statement] = ACTIONS(8076), + [aux_sym_erase_statement_token1] = ACTIONS(8074), + [aux_sym_open_statement_token1] = ACTIONS(8074), + [aux_sym_file_mode_token2] = ACTIONS(8074), + [aux_sym_file_access_token2] = ACTIONS(8074), + [aux_sym_file_lock_token2] = ACTIONS(8074), + [aux_sym_print_statement_token1] = ACTIONS(8074), + [anon_sym_PLUS] = ACTIONS(8076), + [anon_sym_DASH] = ACTIONS(8074), + [anon_sym_QMARK] = ACTIONS(8076), + [aux_sym_close_statement_token1] = ACTIONS(8074), + [aux_sym_put_statement_token1] = ACTIONS(8074), + [aux_sym_unlock_statement_token1] = ACTIONS(8074), + [aux_sym_seek_statement_token1] = ACTIONS(8074), + [sym_reset_statement] = ACTIONS(8074), + [aux_sym_raise_event_statement_token1] = ACTIONS(8074), + [sym_stop_statement] = ACTIONS(8074), + [sym_beep_statement] = ACTIONS(8074), + [aux_sym_unload_statement_token1] = ACTIONS(8074), + [aux_sym_def_type_statement_token1] = ACTIONS(8074), + [aux_sym_def_type_statement_token2] = ACTIONS(8074), + [aux_sym_def_type_statement_token3] = ACTIONS(8074), + [aux_sym_def_type_statement_token4] = ACTIONS(8074), + [aux_sym_def_type_statement_token5] = ACTIONS(8074), + [aux_sym_def_type_statement_token6] = ACTIONS(8074), + [aux_sym_def_type_statement_token7] = ACTIONS(8074), + [aux_sym_def_type_statement_token8] = ACTIONS(8074), + [aux_sym_def_type_statement_token9] = ACTIONS(8074), + [aux_sym_def_type_statement_token10] = ACTIONS(8074), + [aux_sym_def_type_statement_token11] = ACTIONS(8074), + [aux_sym_def_type_statement_token12] = ACTIONS(8074), + [aux_sym_def_type_statement_token13] = ACTIONS(8074), + [aux_sym_def_type_statement_token14] = ACTIONS(8074), + [aux_sym_call_statement_token1] = ACTIONS(8074), + [sym__ambiguous_call_statement] = ACTIONS(8074), + [aux_sym_addressof_expression_token1] = ACTIONS(8074), + [aux_sym_type_of_expression_token1] = ACTIONS(8074), + [aux_sym_unary_expression_token1] = ACTIONS(8074), + [sym_string_literal] = ACTIONS(8076), + [sym_number_literal] = ACTIONS(8076), + [aux_sym_boolean_literal_token1] = ACTIONS(8074), + [aux_sym_boolean_literal_token2] = ACTIONS(8074), + [sym_nothing_literal] = ACTIONS(8074), + [sym_null_literal] = ACTIONS(8074), + [sym_empty_literal] = ACTIONS(8074), + [sym_date_literal] = ACTIONS(8076), + [anon_sym_POUND] = ACTIONS(8074), + }, + [STATE(3367)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_array_bound_token1] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_statement_token2] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(3368)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(7812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token3] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(7812), + [anon_sym_BSLASH] = ACTIONS(7816), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7818), + [anon_sym_PLUS] = ACTIONS(7820), + [anon_sym_DASH] = ACTIONS(7822), + [anon_sym_AMP] = ACTIONS(7824), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7929), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7931), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7933), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7935), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7937), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(3369)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token3] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(3370)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(3370), + [sym_identifier] = ACTIONS(5841), + [sym_newline] = ACTIONS(5843), + [anon_sym_COLON] = ACTIONS(5843), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5841), + [aux_sym_frm_property_statement_token1] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5843), + [aux_sym__attribute_identifier_token1] = ACTIONS(5841), + [aux_sym_option_statement_token3] = ACTIONS(5841), + [aux_sym_type_declaration_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5841), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5841), + [aux_sym_enum_declaration_token1] = ACTIONS(5841), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5841), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5841), + [aux_sym_declare_function_statement_token1] = ACTIONS(5841), + [aux_sym_preprocessor_const_token1] = ACTIONS(5841), + [aux_sym__property_get_header_token1] = ACTIONS(5841), + [aux_sym_event_declaration_token1] = ACTIONS(5841), + [sym_static_modifier] = ACTIONS(5841), + [sym__dim_keyword] = ACTIONS(5841), + [sym__redim_keyword] = ACTIONS(5841), + [aux_sym_get_accessor_token1] = ACTIONS(5841), + [aux_sym_set_accessor_token1] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(8078), + [aux_sym_const_declaration_token1] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5843), + [aux_sym_as_type_clause_token2] = ACTIONS(5841), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5841), + [aux_sym_visibility_token1] = ACTIONS(5841), + [aux_sym_visibility_token2] = ACTIONS(5841), + [aux_sym_elseif_fragment_token1] = ACTIONS(5841), + [aux_sym_else_fragment_token1] = ACTIONS(5841), + [aux_sym_select_statement_token1] = ACTIONS(5841), + [aux_sym__for_header_token1] = ACTIONS(5841), + [aux_sym_do_statement_token1] = ACTIONS(5841), + [aux_sym_do_condition_token1] = ACTIONS(5841), + [aux_sym_with_statement_token1] = ACTIONS(5841), + [aux_sym_exit_statement_token1] = ACTIONS(5841), + [sym_end_statement] = ACTIONS(5843), + [aux_sym_on_goto_statement_token1] = ACTIONS(5841), + [aux_sym_on_goto_statement_token2] = ACTIONS(5841), + [aux_sym_on_error_statement_token2] = ACTIONS(5841), + [sym__ambiguous_redim_statement] = ACTIONS(5843), + [aux_sym_erase_statement_token1] = ACTIONS(5841), + [aux_sym_open_statement_token1] = ACTIONS(5841), + [aux_sym_file_mode_token2] = ACTIONS(5841), + [aux_sym_file_access_token2] = ACTIONS(5841), + [aux_sym_file_lock_token2] = ACTIONS(5841), + [aux_sym_print_statement_token1] = ACTIONS(5841), + [anon_sym_PLUS] = ACTIONS(5843), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_SEMI] = ACTIONS(8078), + [anon_sym_QMARK] = ACTIONS(5843), + [aux_sym_close_statement_token1] = ACTIONS(5841), + [aux_sym_put_statement_token1] = ACTIONS(5841), + [aux_sym_unlock_statement_token1] = ACTIONS(5841), + [aux_sym_seek_statement_token1] = ACTIONS(5841), + [sym_reset_statement] = ACTIONS(5841), + [aux_sym_raise_event_statement_token1] = ACTIONS(5841), + [sym_stop_statement] = ACTIONS(5841), + [sym_beep_statement] = ACTIONS(5841), + [aux_sym_unload_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token2] = ACTIONS(5841), + [aux_sym_def_type_statement_token3] = ACTIONS(5841), + [aux_sym_def_type_statement_token4] = ACTIONS(5841), + [aux_sym_def_type_statement_token5] = ACTIONS(5841), + [aux_sym_def_type_statement_token6] = ACTIONS(5841), + [aux_sym_def_type_statement_token7] = ACTIONS(5841), + [aux_sym_def_type_statement_token8] = ACTIONS(5841), + [aux_sym_def_type_statement_token9] = ACTIONS(5841), + [aux_sym_def_type_statement_token10] = ACTIONS(5841), + [aux_sym_def_type_statement_token11] = ACTIONS(5841), + [aux_sym_def_type_statement_token12] = ACTIONS(5841), + [aux_sym_def_type_statement_token13] = ACTIONS(5841), + [aux_sym_def_type_statement_token14] = ACTIONS(5841), + [aux_sym_call_statement_token1] = ACTIONS(5841), + [sym__ambiguous_call_statement] = ACTIONS(5841), + [aux_sym_addressof_expression_token1] = ACTIONS(5841), + [aux_sym_type_of_expression_token1] = ACTIONS(5841), + [aux_sym_unary_expression_token1] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5843), + [sym_number_literal] = ACTIONS(5843), + [aux_sym_boolean_literal_token1] = ACTIONS(5841), + [aux_sym_boolean_literal_token2] = ACTIONS(5841), + [sym_nothing_literal] = ACTIONS(5841), + [sym_null_literal] = ACTIONS(5841), + [sym_empty_literal] = ACTIONS(5841), + [sym_date_literal] = ACTIONS(5843), + [anon_sym_POUND] = ACTIONS(5841), + }, + [STATE(3371)] = { + [sym_identifier] = ACTIONS(5716), + [sym_newline] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5716), + [aux_sym_frm_property_statement_token1] = ACTIONS(5716), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_BANG] = ACTIONS(5718), + [aux_sym__attribute_identifier_token1] = ACTIONS(5716), + [aux_sym_option_statement_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5716), + [aux_sym_preprocessor_const_token1] = ACTIONS(5716), + [sym_static_modifier] = ACTIONS(5716), + [sym__dim_keyword] = ACTIONS(5716), + [sym__redim_keyword] = ACTIONS(5716), + [aux_sym_get_accessor_token1] = ACTIONS(5716), + [aux_sym_set_accessor_token1] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5718), + [aux_sym_const_declaration_token1] = ACTIONS(5716), + [anon_sym_LPAREN] = ACTIONS(5718), + [aux_sym_as_type_clause_token2] = ACTIONS(5716), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5716), + [aux_sym_visibility_token1] = ACTIONS(5716), + [aux_sym_visibility_token2] = ACTIONS(5716), + [aux_sym_elseif_fragment_token1] = ACTIONS(5716), + [aux_sym_else_fragment_token1] = ACTIONS(5716), + [aux_sym_select_statement_token1] = ACTIONS(5716), + [aux_sym__for_header_token1] = ACTIONS(5716), + [aux_sym_do_statement_token1] = ACTIONS(5716), + [aux_sym_do_condition_token1] = ACTIONS(5716), + [aux_sym_with_statement_token1] = ACTIONS(5716), + [aux_sym_exit_statement_token1] = ACTIONS(5716), + [sym_end_statement] = ACTIONS(5718), + [aux_sym_on_goto_statement_token1] = ACTIONS(5716), + [aux_sym_on_goto_statement_token2] = ACTIONS(5716), + [aux_sym_on_error_statement_token2] = ACTIONS(5716), + [sym__ambiguous_redim_statement] = ACTIONS(5718), + [aux_sym_erase_statement_token1] = ACTIONS(5716), + [aux_sym_open_statement_token1] = ACTIONS(5716), + [aux_sym_file_mode_token2] = ACTIONS(5716), + [aux_sym_file_access_token2] = ACTIONS(5716), + [aux_sym_file_lock_token2] = ACTIONS(5716), + [aux_sym_print_statement_token1] = ACTIONS(5716), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6484), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6486), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6488), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6490), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6492), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [aux_sym_close_statement_token1] = ACTIONS(5716), + [aux_sym_put_statement_token1] = ACTIONS(5716), + [aux_sym_unlock_statement_token1] = ACTIONS(5716), + [aux_sym_seek_statement_token1] = ACTIONS(5716), + [sym_reset_statement] = ACTIONS(5716), + [aux_sym_raise_event_statement_token1] = ACTIONS(5716), + [sym_stop_statement] = ACTIONS(5716), + [sym_beep_statement] = ACTIONS(5716), + [aux_sym_unload_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token2] = ACTIONS(5716), + [aux_sym_def_type_statement_token3] = ACTIONS(5716), + [aux_sym_def_type_statement_token4] = ACTIONS(5716), + [aux_sym_def_type_statement_token5] = ACTIONS(5716), + [aux_sym_def_type_statement_token6] = ACTIONS(5716), + [aux_sym_def_type_statement_token7] = ACTIONS(5716), + [aux_sym_def_type_statement_token8] = ACTIONS(5716), + [aux_sym_def_type_statement_token9] = ACTIONS(5716), + [aux_sym_def_type_statement_token10] = ACTIONS(5716), + [aux_sym_def_type_statement_token11] = ACTIONS(5716), + [aux_sym_def_type_statement_token12] = ACTIONS(5716), + [aux_sym_def_type_statement_token13] = ACTIONS(5716), + [aux_sym_def_type_statement_token14] = ACTIONS(5716), + [aux_sym_call_statement_token1] = ACTIONS(5716), + [sym__ambiguous_call_statement] = ACTIONS(5716), + [aux_sym_addressof_expression_token1] = ACTIONS(5716), + [aux_sym_type_of_expression_token1] = ACTIONS(5716), + [aux_sym_unary_expression_token1] = ACTIONS(5716), + [sym_string_literal] = ACTIONS(5718), + [sym_number_literal] = ACTIONS(5718), + [aux_sym_boolean_literal_token1] = ACTIONS(5716), + [aux_sym_boolean_literal_token2] = ACTIONS(5716), + [sym_nothing_literal] = ACTIONS(5716), + [sym_null_literal] = ACTIONS(5716), + [sym_empty_literal] = ACTIONS(5716), + [sym_date_literal] = ACTIONS(5718), + [anon_sym_POUND] = ACTIONS(5716), + }, + [STATE(3372)] = { + [sym_array_bounds] = STATE(3709), + [sym_identifier] = ACTIONS(8081), + [sym_newline] = ACTIONS(8083), + [anon_sym_COLON] = ACTIONS(8083), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8081), + [aux_sym_frm_property_statement_token1] = ACTIONS(8081), + [anon_sym_EQ] = ACTIONS(8083), + [anon_sym_DOT] = ACTIONS(8081), + [anon_sym_BANG] = ACTIONS(8083), + [aux_sym__attribute_identifier_token1] = ACTIONS(8081), + [aux_sym_option_statement_token3] = ACTIONS(8081), + [aux_sym_type_declaration_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8081), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8081), + [aux_sym_enum_declaration_token1] = ACTIONS(8081), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8081), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8081), + [aux_sym_declare_function_statement_token1] = ACTIONS(8081), + [aux_sym_preprocessor_const_token1] = ACTIONS(8081), + [aux_sym__property_get_header_token1] = ACTIONS(8081), + [aux_sym_event_declaration_token1] = ACTIONS(8081), + [sym_static_modifier] = ACTIONS(8081), + [sym__dim_keyword] = ACTIONS(8081), + [sym__redim_keyword] = ACTIONS(8081), + [aux_sym_get_accessor_token1] = ACTIONS(8081), + [aux_sym_set_accessor_token1] = ACTIONS(8081), + [anon_sym_COMMA] = ACTIONS(8083), + [aux_sym_const_declaration_token1] = ACTIONS(8081), + [anon_sym_LPAREN] = ACTIONS(7138), + [aux_sym_as_type_clause_token2] = ACTIONS(8081), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8081), + [aux_sym_visibility_token1] = ACTIONS(8081), + [aux_sym_visibility_token2] = ACTIONS(8081), + [aux_sym_elseif_fragment_token1] = ACTIONS(8081), + [aux_sym_else_fragment_token1] = ACTIONS(8081), + [aux_sym_select_statement_token1] = ACTIONS(8081), + [aux_sym__for_header_token1] = ACTIONS(8081), + [aux_sym_do_statement_token1] = ACTIONS(8081), + [aux_sym_do_condition_token1] = ACTIONS(8081), + [aux_sym_with_statement_token1] = ACTIONS(8081), + [aux_sym_exit_statement_token1] = ACTIONS(8081), + [sym_end_statement] = ACTIONS(8083), + [aux_sym_on_goto_statement_token1] = ACTIONS(8081), + [aux_sym_on_goto_statement_token2] = ACTIONS(8081), + [aux_sym_on_error_statement_token2] = ACTIONS(8081), + [sym__ambiguous_redim_statement] = ACTIONS(8083), + [aux_sym_erase_statement_token1] = ACTIONS(8081), + [aux_sym_open_statement_token1] = ACTIONS(8081), + [aux_sym_file_mode_token2] = ACTIONS(8081), + [aux_sym_file_access_token2] = ACTIONS(8081), + [aux_sym_file_lock_token2] = ACTIONS(8081), + [aux_sym_print_statement_token1] = ACTIONS(8081), + [anon_sym_PLUS] = ACTIONS(8083), + [anon_sym_DASH] = ACTIONS(8081), + [anon_sym_QMARK] = ACTIONS(8083), + [aux_sym_close_statement_token1] = ACTIONS(8081), + [aux_sym_put_statement_token1] = ACTIONS(8081), + [aux_sym_unlock_statement_token1] = ACTIONS(8081), + [aux_sym_seek_statement_token1] = ACTIONS(8081), + [sym_reset_statement] = ACTIONS(8081), + [aux_sym_raise_event_statement_token1] = ACTIONS(8081), + [sym_stop_statement] = ACTIONS(8081), + [sym_beep_statement] = ACTIONS(8081), + [aux_sym_unload_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token2] = ACTIONS(8081), + [aux_sym_def_type_statement_token3] = ACTIONS(8081), + [aux_sym_def_type_statement_token4] = ACTIONS(8081), + [aux_sym_def_type_statement_token5] = ACTIONS(8081), + [aux_sym_def_type_statement_token6] = ACTIONS(8081), + [aux_sym_def_type_statement_token7] = ACTIONS(8081), + [aux_sym_def_type_statement_token8] = ACTIONS(8081), + [aux_sym_def_type_statement_token9] = ACTIONS(8081), + [aux_sym_def_type_statement_token10] = ACTIONS(8081), + [aux_sym_def_type_statement_token11] = ACTIONS(8081), + [aux_sym_def_type_statement_token12] = ACTIONS(8081), + [aux_sym_def_type_statement_token13] = ACTIONS(8081), + [aux_sym_def_type_statement_token14] = ACTIONS(8081), + [aux_sym_call_statement_token1] = ACTIONS(8081), + [sym__ambiguous_call_statement] = ACTIONS(8081), + [aux_sym_addressof_expression_token1] = ACTIONS(8081), + [aux_sym_type_of_expression_token1] = ACTIONS(8081), + [aux_sym_unary_expression_token1] = ACTIONS(8081), + [sym_string_literal] = ACTIONS(8083), + [sym_number_literal] = ACTIONS(8083), + [aux_sym_boolean_literal_token1] = ACTIONS(8081), + [aux_sym_boolean_literal_token2] = ACTIONS(8081), + [sym_nothing_literal] = ACTIONS(8081), + [sym_null_literal] = ACTIONS(8081), + [sym_empty_literal] = ACTIONS(8081), + [sym_date_literal] = ACTIONS(8083), + [anon_sym_POUND] = ACTIONS(8081), + }, + [STATE(3373)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token3] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(3374)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token3] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(3375)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token3] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(3376)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_declaration_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4625), + [aux_sym_enum_declaration_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4625), + [aux_sym_declare_function_statement_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [aux_sym__property_get_header_token1] = ACTIONS(4625), + [aux_sym_event_declaration_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(3377)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(3378)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_while_statement_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token3] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(3379)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(3380)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym_select_statement_token2] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(3381)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_select_statement_token2] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(3382)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_declaration_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_enum_declaration_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7042), + [aux_sym_declare_function_statement_token1] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [aux_sym__property_get_header_token1] = ACTIONS(7042), + [aux_sym_event_declaration_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7988), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(3383)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token3] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(3384)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_declaration_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_enum_declaration_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7042), + [aux_sym_declare_function_statement_token1] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [aux_sym__property_get_header_token1] = ACTIONS(7042), + [aux_sym_event_declaration_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7988), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7990), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(3385)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_declaration_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_enum_declaration_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7042), + [aux_sym_declare_function_statement_token1] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [aux_sym__property_get_header_token1] = ACTIONS(7042), + [aux_sym_event_declaration_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7988), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7990), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7992), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(3386)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_declaration_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_enum_declaration_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7042), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7042), + [aux_sym_declare_function_statement_token1] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [aux_sym__property_get_header_token1] = ACTIONS(7042), + [aux_sym_event_declaration_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7988), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7990), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7992), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7994), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(3387)] = { + [sym_identifier] = ACTIONS(6139), + [sym_newline] = ACTIONS(6141), + [anon_sym_COLON] = ACTIONS(6141), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6139), + [aux_sym_frm_property_statement_token1] = ACTIONS(6139), + [anon_sym_DOT] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6141), + [aux_sym__attribute_identifier_token1] = ACTIONS(6139), + [aux_sym_option_statement_token3] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6139), + [aux_sym_preprocessor_const_token1] = ACTIONS(6139), + [sym_static_modifier] = ACTIONS(6139), + [sym__dim_keyword] = ACTIONS(6139), + [sym__redim_keyword] = ACTIONS(6139), + [aux_sym_get_accessor_token1] = ACTIONS(6139), + [aux_sym_set_accessor_token1] = ACTIONS(6139), + [aux_sym_const_declaration_token1] = ACTIONS(6139), + [anon_sym_LPAREN] = ACTIONS(6141), + [aux_sym_as_type_clause_token2] = ACTIONS(6139), + [anon_sym_STAR] = ACTIONS(8028), + [aux_sym_array_bound_token1] = ACTIONS(8085), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6139), + [aux_sym_visibility_token1] = ACTIONS(6139), + [aux_sym_visibility_token2] = ACTIONS(6139), + [aux_sym_elseif_fragment_token1] = ACTIONS(6139), + [aux_sym_else_fragment_token1] = ACTIONS(6139), + [aux_sym_select_statement_token1] = ACTIONS(6139), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6139), + [aux_sym__for_header_token1] = ACTIONS(6139), + [aux_sym_do_statement_token1] = ACTIONS(6139), + [aux_sym_do_condition_token1] = ACTIONS(6139), + [aux_sym_with_statement_token1] = ACTIONS(6139), + [aux_sym_exit_statement_token1] = ACTIONS(6139), + [sym_end_statement] = ACTIONS(6141), + [aux_sym_on_goto_statement_token1] = ACTIONS(6139), + [aux_sym_on_goto_statement_token2] = ACTIONS(6139), + [aux_sym_on_error_statement_token2] = ACTIONS(6139), + [sym__ambiguous_redim_statement] = ACTIONS(6141), + [aux_sym_erase_statement_token1] = ACTIONS(6139), + [aux_sym_open_statement_token1] = ACTIONS(6139), + [aux_sym_file_mode_token2] = ACTIONS(6139), + [aux_sym_file_access_token2] = ACTIONS(6139), + [aux_sym_file_lock_token2] = ACTIONS(6139), + [aux_sym_print_statement_token1] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(8026), + [anon_sym_SLASH] = ACTIONS(8028), + [anon_sym_BSLASH] = ACTIONS(8030), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8032), + [anon_sym_PLUS] = ACTIONS(8034), + [anon_sym_DASH] = ACTIONS(8036), + [anon_sym_AMP] = ACTIONS(8038), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8040), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(8044), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(8046), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(8048), + [anon_sym_QMARK] = ACTIONS(6141), + [aux_sym_close_statement_token1] = ACTIONS(6139), + [aux_sym_put_statement_token1] = ACTIONS(6139), + [aux_sym_unlock_statement_token1] = ACTIONS(6139), + [aux_sym_seek_statement_token1] = ACTIONS(6139), + [sym_reset_statement] = ACTIONS(6139), + [aux_sym_raise_event_statement_token1] = ACTIONS(6139), + [sym_stop_statement] = ACTIONS(6139), + [sym_beep_statement] = ACTIONS(6139), + [aux_sym_unload_statement_token1] = ACTIONS(6139), + [aux_sym_def_type_statement_token1] = ACTIONS(6139), + [aux_sym_def_type_statement_token2] = ACTIONS(6139), + [aux_sym_def_type_statement_token3] = ACTIONS(6139), + [aux_sym_def_type_statement_token4] = ACTIONS(6139), + [aux_sym_def_type_statement_token5] = ACTIONS(6139), + [aux_sym_def_type_statement_token6] = ACTIONS(6139), + [aux_sym_def_type_statement_token7] = ACTIONS(6139), + [aux_sym_def_type_statement_token8] = ACTIONS(6139), + [aux_sym_def_type_statement_token9] = ACTIONS(6139), + [aux_sym_def_type_statement_token10] = ACTIONS(6139), + [aux_sym_def_type_statement_token11] = ACTIONS(6139), + [aux_sym_def_type_statement_token12] = ACTIONS(6139), + [aux_sym_def_type_statement_token13] = ACTIONS(6139), + [aux_sym_def_type_statement_token14] = ACTIONS(6139), + [aux_sym_call_statement_token1] = ACTIONS(6139), + [sym__ambiguous_call_statement] = ACTIONS(6139), + [aux_sym_addressof_expression_token1] = ACTIONS(6139), + [aux_sym_type_of_expression_token1] = ACTIONS(6139), + [aux_sym_unary_expression_token1] = ACTIONS(6139), + [sym_string_literal] = ACTIONS(6141), + [sym_number_literal] = ACTIONS(6141), + [aux_sym_boolean_literal_token1] = ACTIONS(6139), + [aux_sym_boolean_literal_token2] = ACTIONS(6139), + [sym_nothing_literal] = ACTIONS(6139), + [sym_null_literal] = ACTIONS(6139), + [sym_empty_literal] = ACTIONS(6139), + [sym_date_literal] = ACTIONS(6141), + [anon_sym_POUND] = ACTIONS(6139), + }, + [STATE(3388)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(3389)] = { + [sym_identifier] = ACTIONS(5809), + [sym_newline] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5809), + [aux_sym_frm_property_statement_token1] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_BANG] = ACTIONS(5811), + [aux_sym__attribute_identifier_token1] = ACTIONS(5809), + [aux_sym_option_statement_token3] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5809), + [aux_sym_preprocessor_const_token1] = ACTIONS(5809), + [sym_static_modifier] = ACTIONS(5809), + [sym__dim_keyword] = ACTIONS(5809), + [sym__redim_keyword] = ACTIONS(5809), + [aux_sym_get_accessor_token1] = ACTIONS(5809), + [aux_sym_set_accessor_token1] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5811), + [aux_sym_const_declaration_token1] = ACTIONS(5809), + [anon_sym_LPAREN] = ACTIONS(5811), + [aux_sym_as_type_clause_token2] = ACTIONS(5809), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5809), + [aux_sym_visibility_token1] = ACTIONS(5809), + [aux_sym_visibility_token2] = ACTIONS(5809), + [aux_sym_elseif_fragment_token1] = ACTIONS(5809), + [aux_sym_else_fragment_token1] = ACTIONS(5809), + [aux_sym_select_statement_token1] = ACTIONS(5809), + [aux_sym__for_header_token1] = ACTIONS(5809), + [aux_sym_do_statement_token1] = ACTIONS(5809), + [aux_sym_do_condition_token1] = ACTIONS(5809), + [aux_sym_with_statement_token1] = ACTIONS(5809), + [aux_sym_exit_statement_token1] = ACTIONS(5809), + [sym_end_statement] = ACTIONS(5811), + [aux_sym_on_goto_statement_token1] = ACTIONS(5809), + [aux_sym_on_goto_statement_token2] = ACTIONS(5809), + [aux_sym_on_error_statement_token2] = ACTIONS(5809), + [sym__ambiguous_redim_statement] = ACTIONS(5811), + [aux_sym_erase_statement_token1] = ACTIONS(5809), + [aux_sym_open_statement_token1] = ACTIONS(5809), + [aux_sym_file_mode_token2] = ACTIONS(5809), + [aux_sym_file_access_token2] = ACTIONS(5809), + [aux_sym_file_lock_token2] = ACTIONS(5809), + [aux_sym_print_statement_token1] = ACTIONS(5809), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_DASH] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_SEMI] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5811), + [aux_sym_close_statement_token1] = ACTIONS(5809), + [aux_sym_put_statement_token1] = ACTIONS(5809), + [aux_sym_unlock_statement_token1] = ACTIONS(5809), + [aux_sym_seek_statement_token1] = ACTIONS(5809), + [sym_reset_statement] = ACTIONS(5809), + [aux_sym_raise_event_statement_token1] = ACTIONS(5809), + [sym_stop_statement] = ACTIONS(5809), + [sym_beep_statement] = ACTIONS(5809), + [aux_sym_unload_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token1] = ACTIONS(5809), + [aux_sym_def_type_statement_token2] = ACTIONS(5809), + [aux_sym_def_type_statement_token3] = ACTIONS(5809), + [aux_sym_def_type_statement_token4] = ACTIONS(5809), + [aux_sym_def_type_statement_token5] = ACTIONS(5809), + [aux_sym_def_type_statement_token6] = ACTIONS(5809), + [aux_sym_def_type_statement_token7] = ACTIONS(5809), + [aux_sym_def_type_statement_token8] = ACTIONS(5809), + [aux_sym_def_type_statement_token9] = ACTIONS(5809), + [aux_sym_def_type_statement_token10] = ACTIONS(5809), + [aux_sym_def_type_statement_token11] = ACTIONS(5809), + [aux_sym_def_type_statement_token12] = ACTIONS(5809), + [aux_sym_def_type_statement_token13] = ACTIONS(5809), + [aux_sym_def_type_statement_token14] = ACTIONS(5809), + [aux_sym_call_statement_token1] = ACTIONS(5809), + [sym__ambiguous_call_statement] = ACTIONS(5809), + [aux_sym_addressof_expression_token1] = ACTIONS(5809), + [aux_sym_type_of_expression_token1] = ACTIONS(5809), + [aux_sym_unary_expression_token1] = ACTIONS(5809), + [sym_string_literal] = ACTIONS(5811), + [sym_number_literal] = ACTIONS(5811), + [aux_sym_boolean_literal_token1] = ACTIONS(5809), + [aux_sym_boolean_literal_token2] = ACTIONS(5809), + [sym_nothing_literal] = ACTIONS(5809), + [sym_null_literal] = ACTIONS(5809), + [sym_empty_literal] = ACTIONS(5809), + [sym_date_literal] = ACTIONS(5811), + [anon_sym_POUND] = ACTIONS(5809), + }, + [STATE(3390)] = { + [sym_identifier] = ACTIONS(6117), + [sym_newline] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6117), + [aux_sym_frm_property_statement_token1] = ACTIONS(6117), + [anon_sym_DOT] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6119), + [aux_sym__attribute_identifier_token1] = ACTIONS(6117), + [aux_sym_option_statement_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6117), + [aux_sym_preprocessor_const_token1] = ACTIONS(6117), + [sym_static_modifier] = ACTIONS(6117), + [sym__dim_keyword] = ACTIONS(6117), + [sym__redim_keyword] = ACTIONS(6117), + [aux_sym_get_accessor_token1] = ACTIONS(6117), + [aux_sym_set_accessor_token1] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6119), + [aux_sym_const_declaration_token1] = ACTIONS(6117), + [anon_sym_LPAREN] = ACTIONS(6119), + [aux_sym_as_type_clause_token2] = ACTIONS(6117), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6117), + [aux_sym_visibility_token1] = ACTIONS(6117), + [aux_sym_visibility_token2] = ACTIONS(6117), + [aux_sym_elseif_fragment_token1] = ACTIONS(6117), + [aux_sym_else_fragment_token1] = ACTIONS(6117), + [aux_sym_select_statement_token1] = ACTIONS(6117), + [aux_sym__for_header_token1] = ACTIONS(6117), + [aux_sym_do_statement_token1] = ACTIONS(6117), + [aux_sym_do_condition_token1] = ACTIONS(6117), + [aux_sym_while_statement_token1] = ACTIONS(6117), + [aux_sym_with_statement_token1] = ACTIONS(6117), + [aux_sym_exit_statement_token1] = ACTIONS(6117), + [sym_end_statement] = ACTIONS(6119), + [aux_sym_on_goto_statement_token1] = ACTIONS(6117), + [aux_sym_on_goto_statement_token2] = ACTIONS(6117), + [aux_sym_on_error_statement_token2] = ACTIONS(6117), + [sym__ambiguous_redim_statement] = ACTIONS(6119), + [aux_sym_erase_statement_token1] = ACTIONS(6117), + [aux_sym_open_statement_token1] = ACTIONS(6117), + [aux_sym_file_mode_token2] = ACTIONS(6117), + [aux_sym_file_access_token2] = ACTIONS(6117), + [aux_sym_file_lock_token2] = ACTIONS(6117), + [aux_sym_print_statement_token1] = ACTIONS(6117), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5960), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5962), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5964), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5966), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5968), + [anon_sym_QMARK] = ACTIONS(6119), + [aux_sym_close_statement_token1] = ACTIONS(6117), + [aux_sym_put_statement_token1] = ACTIONS(6117), + [aux_sym_unlock_statement_token1] = ACTIONS(6117), + [aux_sym_seek_statement_token1] = ACTIONS(6117), + [sym_reset_statement] = ACTIONS(6117), + [aux_sym_raise_event_statement_token1] = ACTIONS(6117), + [sym_stop_statement] = ACTIONS(6117), + [sym_beep_statement] = ACTIONS(6117), + [aux_sym_unload_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token2] = ACTIONS(6117), + [aux_sym_def_type_statement_token3] = ACTIONS(6117), + [aux_sym_def_type_statement_token4] = ACTIONS(6117), + [aux_sym_def_type_statement_token5] = ACTIONS(6117), + [aux_sym_def_type_statement_token6] = ACTIONS(6117), + [aux_sym_def_type_statement_token7] = ACTIONS(6117), + [aux_sym_def_type_statement_token8] = ACTIONS(6117), + [aux_sym_def_type_statement_token9] = ACTIONS(6117), + [aux_sym_def_type_statement_token10] = ACTIONS(6117), + [aux_sym_def_type_statement_token11] = ACTIONS(6117), + [aux_sym_def_type_statement_token12] = ACTIONS(6117), + [aux_sym_def_type_statement_token13] = ACTIONS(6117), + [aux_sym_def_type_statement_token14] = ACTIONS(6117), + [aux_sym_call_statement_token1] = ACTIONS(6117), + [sym__ambiguous_call_statement] = ACTIONS(6117), + [aux_sym_addressof_expression_token1] = ACTIONS(6117), + [aux_sym_type_of_expression_token1] = ACTIONS(6117), + [aux_sym_unary_expression_token1] = ACTIONS(6117), + [sym_string_literal] = ACTIONS(6119), + [sym_number_literal] = ACTIONS(6119), + [aux_sym_boolean_literal_token1] = ACTIONS(6117), + [aux_sym_boolean_literal_token2] = ACTIONS(6117), + [sym_nothing_literal] = ACTIONS(6117), + [sym_null_literal] = ACTIONS(6117), + [sym_empty_literal] = ACTIONS(6117), + [sym_date_literal] = ACTIONS(6119), + [anon_sym_POUND] = ACTIONS(6117), + }, + [STATE(3391)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_array_bound_token1] = ACTIONS(4589), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_while_statement_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(3392)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6502), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym_select_statement_token2] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6500), + [anon_sym_SLASH] = ACTIONS(6502), + [anon_sym_BSLASH] = ACTIONS(6504), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6506), + [anon_sym_PLUS] = ACTIONS(6508), + [anon_sym_DASH] = ACTIONS(6510), + [anon_sym_AMP] = ACTIONS(6512), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(3393)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_array_bound_token1] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(3394)] = { + [sym_initializer] = STATE(3773), + [sym_identifier] = ACTIONS(8087), + [sym_newline] = ACTIONS(8089), + [anon_sym_COLON] = ACTIONS(8089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8087), + [aux_sym_frm_property_statement_token1] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_BANG] = ACTIONS(8089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8087), + [aux_sym_option_statement_token3] = ACTIONS(8087), + [aux_sym_type_declaration_token1] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8087), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8087), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8087), + [aux_sym_enum_declaration_token1] = ACTIONS(8087), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8087), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8087), + [aux_sym_declare_function_statement_token1] = ACTIONS(8087), + [aux_sym_preprocessor_const_token1] = ACTIONS(8087), + [aux_sym__property_get_header_token1] = ACTIONS(8087), + [aux_sym_event_declaration_token1] = ACTIONS(8087), + [sym_static_modifier] = ACTIONS(8087), + [sym__dim_keyword] = ACTIONS(8087), + [sym__redim_keyword] = ACTIONS(8087), + [aux_sym_get_accessor_token1] = ACTIONS(8087), + [aux_sym_set_accessor_token1] = ACTIONS(8087), + [anon_sym_COMMA] = ACTIONS(8089), + [aux_sym_const_declaration_token1] = ACTIONS(8087), + [anon_sym_LPAREN] = ACTIONS(8089), + [aux_sym_as_type_clause_token2] = ACTIONS(8087), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8087), + [aux_sym_visibility_token1] = ACTIONS(8087), + [aux_sym_visibility_token2] = ACTIONS(8087), + [aux_sym_elseif_fragment_token1] = ACTIONS(8087), + [aux_sym_else_fragment_token1] = ACTIONS(8087), + [aux_sym_select_statement_token1] = ACTIONS(8087), + [aux_sym__for_header_token1] = ACTIONS(8087), + [aux_sym_do_statement_token1] = ACTIONS(8087), + [aux_sym_do_condition_token1] = ACTIONS(8087), + [aux_sym_with_statement_token1] = ACTIONS(8087), + [aux_sym_exit_statement_token1] = ACTIONS(8087), + [sym_end_statement] = ACTIONS(8089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8087), + [aux_sym_on_goto_statement_token2] = ACTIONS(8087), + [aux_sym_on_error_statement_token2] = ACTIONS(8087), + [sym__ambiguous_redim_statement] = ACTIONS(8089), + [aux_sym_erase_statement_token1] = ACTIONS(8087), + [aux_sym_open_statement_token1] = ACTIONS(8087), + [aux_sym_file_mode_token2] = ACTIONS(8087), + [aux_sym_file_access_token2] = ACTIONS(8087), + [aux_sym_file_lock_token2] = ACTIONS(8087), + [aux_sym_print_statement_token1] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [aux_sym_close_statement_token1] = ACTIONS(8087), + [aux_sym_put_statement_token1] = ACTIONS(8087), + [aux_sym_unlock_statement_token1] = ACTIONS(8087), + [aux_sym_seek_statement_token1] = ACTIONS(8087), + [sym_reset_statement] = ACTIONS(8087), + [aux_sym_raise_event_statement_token1] = ACTIONS(8087), + [sym_stop_statement] = ACTIONS(8087), + [sym_beep_statement] = ACTIONS(8087), + [aux_sym_unload_statement_token1] = ACTIONS(8087), + [aux_sym_def_type_statement_token1] = ACTIONS(8087), + [aux_sym_def_type_statement_token2] = ACTIONS(8087), + [aux_sym_def_type_statement_token3] = ACTIONS(8087), + [aux_sym_def_type_statement_token4] = ACTIONS(8087), + [aux_sym_def_type_statement_token5] = ACTIONS(8087), + [aux_sym_def_type_statement_token6] = ACTIONS(8087), + [aux_sym_def_type_statement_token7] = ACTIONS(8087), + [aux_sym_def_type_statement_token8] = ACTIONS(8087), + [aux_sym_def_type_statement_token9] = ACTIONS(8087), + [aux_sym_def_type_statement_token10] = ACTIONS(8087), + [aux_sym_def_type_statement_token11] = ACTIONS(8087), + [aux_sym_def_type_statement_token12] = ACTIONS(8087), + [aux_sym_def_type_statement_token13] = ACTIONS(8087), + [aux_sym_def_type_statement_token14] = ACTIONS(8087), + [aux_sym_call_statement_token1] = ACTIONS(8087), + [sym__ambiguous_call_statement] = ACTIONS(8087), + [aux_sym_addressof_expression_token1] = ACTIONS(8087), + [aux_sym_type_of_expression_token1] = ACTIONS(8087), + [aux_sym_unary_expression_token1] = ACTIONS(8087), + [sym_string_literal] = ACTIONS(8089), + [sym_number_literal] = ACTIONS(8089), + [aux_sym_boolean_literal_token1] = ACTIONS(8087), + [aux_sym_boolean_literal_token2] = ACTIONS(8087), + [sym_nothing_literal] = ACTIONS(8087), + [sym_null_literal] = ACTIONS(8087), + [sym_empty_literal] = ACTIONS(8087), + [sym_date_literal] = ACTIONS(8089), + [anon_sym_POUND] = ACTIONS(8087), + }, + [STATE(3395)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5915), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym_select_statement_token2] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(3396)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5915), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym_select_statement_token2] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(3397)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_array_bound_token1] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(3398)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3399)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3400)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7786), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3401)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7786), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_BSLASH] = ACTIONS(7792), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3402)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7786), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_BSLASH] = ACTIONS(7792), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3403)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7786), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_BSLASH] = ACTIONS(7792), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7798), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3404)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7786), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_BSLASH] = ACTIONS(7792), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7798), + [anon_sym_AMP] = ACTIONS(7800), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3405)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7786), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_BSLASH] = ACTIONS(7792), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7798), + [anon_sym_AMP] = ACTIONS(7800), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7802), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3406)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7786), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_BSLASH] = ACTIONS(7792), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7798), + [anon_sym_AMP] = ACTIONS(7800), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7802), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7804), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3407)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7786), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_BSLASH] = ACTIONS(7792), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7798), + [anon_sym_AMP] = ACTIONS(7800), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7802), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7804), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7806), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3408)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(7786), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_while_statement_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_BSLASH] = ACTIONS(7792), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7798), + [anon_sym_AMP] = ACTIONS(7800), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7802), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7804), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7806), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7808), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3409)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_array_bound_token1] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(3410)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_statement_token2] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(3411)] = { + [sym_initializer] = STATE(3735), + [sym_identifier] = ACTIONS(8091), + [sym_newline] = ACTIONS(8093), + [anon_sym_COLON] = ACTIONS(8093), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8091), + [aux_sym_frm_property_statement_token1] = ACTIONS(8091), + [anon_sym_EQ] = ACTIONS(6993), + [anon_sym_DOT] = ACTIONS(8091), + [anon_sym_BANG] = ACTIONS(8093), + [aux_sym__attribute_identifier_token1] = ACTIONS(8091), + [aux_sym_option_statement_token3] = ACTIONS(8091), + [aux_sym_type_declaration_token1] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8091), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8091), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8091), + [aux_sym_enum_declaration_token1] = ACTIONS(8091), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8091), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8091), + [aux_sym_declare_function_statement_token1] = ACTIONS(8091), + [aux_sym_preprocessor_const_token1] = ACTIONS(8091), + [aux_sym__property_get_header_token1] = ACTIONS(8091), + [aux_sym_event_declaration_token1] = ACTIONS(8091), + [sym_static_modifier] = ACTIONS(8091), + [sym__dim_keyword] = ACTIONS(8091), + [sym__redim_keyword] = ACTIONS(8091), + [aux_sym_get_accessor_token1] = ACTIONS(8091), + [aux_sym_set_accessor_token1] = ACTIONS(8091), + [anon_sym_COMMA] = ACTIONS(8093), + [aux_sym_const_declaration_token1] = ACTIONS(8091), + [anon_sym_LPAREN] = ACTIONS(8093), + [aux_sym_as_type_clause_token2] = ACTIONS(8091), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8091), + [aux_sym_visibility_token1] = ACTIONS(8091), + [aux_sym_visibility_token2] = ACTIONS(8091), + [aux_sym_elseif_fragment_token1] = ACTIONS(8091), + [aux_sym_else_fragment_token1] = ACTIONS(8091), + [aux_sym_select_statement_token1] = ACTIONS(8091), + [aux_sym__for_header_token1] = ACTIONS(8091), + [aux_sym_do_statement_token1] = ACTIONS(8091), + [aux_sym_do_condition_token1] = ACTIONS(8091), + [aux_sym_with_statement_token1] = ACTIONS(8091), + [aux_sym_exit_statement_token1] = ACTIONS(8091), + [sym_end_statement] = ACTIONS(8093), + [aux_sym_on_goto_statement_token1] = ACTIONS(8091), + [aux_sym_on_goto_statement_token2] = ACTIONS(8091), + [aux_sym_on_error_statement_token2] = ACTIONS(8091), + [sym__ambiguous_redim_statement] = ACTIONS(8093), + [aux_sym_erase_statement_token1] = ACTIONS(8091), + [aux_sym_open_statement_token1] = ACTIONS(8091), + [aux_sym_file_mode_token2] = ACTIONS(8091), + [aux_sym_file_access_token2] = ACTIONS(8091), + [aux_sym_file_lock_token2] = ACTIONS(8091), + [aux_sym_print_statement_token1] = ACTIONS(8091), + [anon_sym_PLUS] = ACTIONS(8093), + [anon_sym_DASH] = ACTIONS(8091), + [anon_sym_QMARK] = ACTIONS(8093), + [aux_sym_close_statement_token1] = ACTIONS(8091), + [aux_sym_put_statement_token1] = ACTIONS(8091), + [aux_sym_unlock_statement_token1] = ACTIONS(8091), + [aux_sym_seek_statement_token1] = ACTIONS(8091), + [sym_reset_statement] = ACTIONS(8091), + [aux_sym_raise_event_statement_token1] = ACTIONS(8091), + [sym_stop_statement] = ACTIONS(8091), + [sym_beep_statement] = ACTIONS(8091), + [aux_sym_unload_statement_token1] = ACTIONS(8091), + [aux_sym_def_type_statement_token1] = ACTIONS(8091), + [aux_sym_def_type_statement_token2] = ACTIONS(8091), + [aux_sym_def_type_statement_token3] = ACTIONS(8091), + [aux_sym_def_type_statement_token4] = ACTIONS(8091), + [aux_sym_def_type_statement_token5] = ACTIONS(8091), + [aux_sym_def_type_statement_token6] = ACTIONS(8091), + [aux_sym_def_type_statement_token7] = ACTIONS(8091), + [aux_sym_def_type_statement_token8] = ACTIONS(8091), + [aux_sym_def_type_statement_token9] = ACTIONS(8091), + [aux_sym_def_type_statement_token10] = ACTIONS(8091), + [aux_sym_def_type_statement_token11] = ACTIONS(8091), + [aux_sym_def_type_statement_token12] = ACTIONS(8091), + [aux_sym_def_type_statement_token13] = ACTIONS(8091), + [aux_sym_def_type_statement_token14] = ACTIONS(8091), + [aux_sym_call_statement_token1] = ACTIONS(8091), + [sym__ambiguous_call_statement] = ACTIONS(8091), + [aux_sym_addressof_expression_token1] = ACTIONS(8091), + [aux_sym_type_of_expression_token1] = ACTIONS(8091), + [aux_sym_unary_expression_token1] = ACTIONS(8091), + [sym_string_literal] = ACTIONS(8093), + [sym_number_literal] = ACTIONS(8093), + [aux_sym_boolean_literal_token1] = ACTIONS(8091), + [aux_sym_boolean_literal_token2] = ACTIONS(8091), + [sym_nothing_literal] = ACTIONS(8091), + [sym_null_literal] = ACTIONS(8091), + [sym_empty_literal] = ACTIONS(8091), + [sym_date_literal] = ACTIONS(8093), + [anon_sym_POUND] = ACTIONS(8091), + }, + [STATE(3412)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym_select_statement_token2] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3413)] = { + [sym_fixed_string_length] = STATE(3362), + [sym_array_bounds] = STATE(3640), + [sym_identifier] = ACTIONS(7134), + [sym_newline] = ACTIONS(7136), + [anon_sym_COLON] = ACTIONS(7136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7134), + [aux_sym_frm_property_statement_token1] = ACTIONS(7134), + [anon_sym_DOT] = ACTIONS(7134), + [anon_sym_BANG] = ACTIONS(7136), + [aux_sym__attribute_identifier_token1] = ACTIONS(7134), + [aux_sym_option_statement_token3] = ACTIONS(7134), + [aux_sym_type_declaration_token1] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7134), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7134), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7134), + [aux_sym_enum_declaration_token1] = ACTIONS(7134), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7134), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7134), + [aux_sym_declare_function_statement_token1] = ACTIONS(7134), + [aux_sym_preprocessor_const_token1] = ACTIONS(7134), + [aux_sym__property_get_header_token1] = ACTIONS(7134), + [aux_sym_event_declaration_token1] = ACTIONS(7134), + [sym_static_modifier] = ACTIONS(7134), + [sym__dim_keyword] = ACTIONS(7134), + [sym__redim_keyword] = ACTIONS(7134), + [aux_sym_get_accessor_token1] = ACTIONS(7134), + [aux_sym_set_accessor_token1] = ACTIONS(7134), + [aux_sym_const_declaration_token1] = ACTIONS(7134), + [anon_sym_LPAREN] = ACTIONS(7138), + [aux_sym_as_type_clause_token2] = ACTIONS(7134), + [anon_sym_STAR] = ACTIONS(7966), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7134), + [aux_sym_visibility_token1] = ACTIONS(7134), + [aux_sym_visibility_token2] = ACTIONS(7134), + [aux_sym_elseif_fragment_token1] = ACTIONS(7134), + [aux_sym_else_fragment_token1] = ACTIONS(7134), + [aux_sym_select_statement_token1] = ACTIONS(7134), + [aux_sym__for_header_token1] = ACTIONS(7134), + [aux_sym_do_statement_token1] = ACTIONS(7134), + [aux_sym_do_condition_token1] = ACTIONS(7134), + [aux_sym_with_statement_token1] = ACTIONS(7134), + [aux_sym_exit_statement_token1] = ACTIONS(7134), + [sym_end_statement] = ACTIONS(7136), + [aux_sym_on_goto_statement_token1] = ACTIONS(7134), + [aux_sym_on_goto_statement_token2] = ACTIONS(7134), + [aux_sym_on_error_statement_token2] = ACTIONS(7134), + [sym__ambiguous_redim_statement] = ACTIONS(7136), + [aux_sym_erase_statement_token1] = ACTIONS(7134), + [aux_sym_open_statement_token1] = ACTIONS(7134), + [aux_sym_file_mode_token2] = ACTIONS(7134), + [aux_sym_file_access_token2] = ACTIONS(7134), + [aux_sym_file_lock_token2] = ACTIONS(7134), + [aux_sym_print_statement_token1] = ACTIONS(7134), + [anon_sym_PLUS] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7134), + [anon_sym_QMARK] = ACTIONS(7136), + [aux_sym_close_statement_token1] = ACTIONS(7134), + [aux_sym_put_statement_token1] = ACTIONS(7134), + [aux_sym_unlock_statement_token1] = ACTIONS(7134), + [aux_sym_seek_statement_token1] = ACTIONS(7134), + [sym_reset_statement] = ACTIONS(7134), + [aux_sym_raise_event_statement_token1] = ACTIONS(7134), + [sym_stop_statement] = ACTIONS(7134), + [sym_beep_statement] = ACTIONS(7134), + [aux_sym_unload_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token2] = ACTIONS(7134), + [aux_sym_def_type_statement_token3] = ACTIONS(7134), + [aux_sym_def_type_statement_token4] = ACTIONS(7134), + [aux_sym_def_type_statement_token5] = ACTIONS(7134), + [aux_sym_def_type_statement_token6] = ACTIONS(7134), + [aux_sym_def_type_statement_token7] = ACTIONS(7134), + [aux_sym_def_type_statement_token8] = ACTIONS(7134), + [aux_sym_def_type_statement_token9] = ACTIONS(7134), + [aux_sym_def_type_statement_token10] = ACTIONS(7134), + [aux_sym_def_type_statement_token11] = ACTIONS(7134), + [aux_sym_def_type_statement_token12] = ACTIONS(7134), + [aux_sym_def_type_statement_token13] = ACTIONS(7134), + [aux_sym_def_type_statement_token14] = ACTIONS(7134), + [aux_sym_call_statement_token1] = ACTIONS(7134), + [sym__ambiguous_call_statement] = ACTIONS(7134), + [aux_sym_addressof_expression_token1] = ACTIONS(7134), + [aux_sym_type_of_expression_token1] = ACTIONS(7134), + [aux_sym_unary_expression_token1] = ACTIONS(7134), + [sym_string_literal] = ACTIONS(7136), + [sym_number_literal] = ACTIONS(7136), + [aux_sym_boolean_literal_token1] = ACTIONS(7134), + [aux_sym_boolean_literal_token2] = ACTIONS(7134), + [sym_nothing_literal] = ACTIONS(7134), + [sym_null_literal] = ACTIONS(7134), + [sym_empty_literal] = ACTIONS(7134), + [sym_date_literal] = ACTIONS(7136), + [anon_sym_POUND] = ACTIONS(7134), + }, + [STATE(3414)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(7898), + [aux_sym_array_bound_token1] = ACTIONS(4647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_statement_token2] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(7902), + [anon_sym_SLASH] = ACTIONS(7898), + [anon_sym_BSLASH] = ACTIONS(7904), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7906), + [anon_sym_PLUS] = ACTIONS(7908), + [anon_sym_DASH] = ACTIONS(7910), + [anon_sym_AMP] = ACTIONS(7912), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(3415)] = { + [aux_sym_variable_declaration_repeat1] = STATE(3521), + [sym_identifier] = ACTIONS(8095), + [sym_newline] = ACTIONS(8097), + [anon_sym_COLON] = ACTIONS(8097), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8095), + [aux_sym_frm_property_statement_token1] = ACTIONS(8095), + [anon_sym_DOT] = ACTIONS(8095), + [anon_sym_BANG] = ACTIONS(8097), + [aux_sym__attribute_identifier_token1] = ACTIONS(8095), + [aux_sym_option_statement_token3] = ACTIONS(8095), + [aux_sym_type_declaration_token1] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8095), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8095), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8095), + [aux_sym_enum_declaration_token1] = ACTIONS(8095), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8095), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8095), + [aux_sym_declare_function_statement_token1] = ACTIONS(8095), + [aux_sym_preprocessor_const_token1] = ACTIONS(8095), + [aux_sym__property_get_header_token1] = ACTIONS(8095), + [aux_sym_event_declaration_token1] = ACTIONS(8095), + [sym_static_modifier] = ACTIONS(8095), + [sym__dim_keyword] = ACTIONS(8095), + [sym__redim_keyword] = ACTIONS(8095), + [aux_sym_get_accessor_token1] = ACTIONS(8095), + [aux_sym_set_accessor_token1] = ACTIONS(8095), + [anon_sym_COMMA] = ACTIONS(8099), + [aux_sym_const_declaration_token1] = ACTIONS(8095), + [anon_sym_LPAREN] = ACTIONS(8097), + [aux_sym_as_type_clause_token2] = ACTIONS(8095), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8095), + [aux_sym_visibility_token1] = ACTIONS(8095), + [aux_sym_visibility_token2] = ACTIONS(8095), + [aux_sym_elseif_fragment_token1] = ACTIONS(8095), + [aux_sym_else_fragment_token1] = ACTIONS(8095), + [aux_sym_select_statement_token1] = ACTIONS(8095), + [aux_sym__for_header_token1] = ACTIONS(8095), + [aux_sym_do_statement_token1] = ACTIONS(8095), + [aux_sym_do_condition_token1] = ACTIONS(8095), + [aux_sym_with_statement_token1] = ACTIONS(8095), + [aux_sym_exit_statement_token1] = ACTIONS(8095), + [sym_end_statement] = ACTIONS(8097), + [aux_sym_on_goto_statement_token1] = ACTIONS(8095), + [aux_sym_on_goto_statement_token2] = ACTIONS(8095), + [aux_sym_on_error_statement_token2] = ACTIONS(8095), + [sym__ambiguous_redim_statement] = ACTIONS(8097), + [aux_sym_erase_statement_token1] = ACTIONS(8095), + [aux_sym_open_statement_token1] = ACTIONS(8095), + [aux_sym_file_mode_token2] = ACTIONS(8095), + [aux_sym_file_access_token2] = ACTIONS(8095), + [aux_sym_file_lock_token2] = ACTIONS(8095), + [aux_sym_print_statement_token1] = ACTIONS(8095), + [anon_sym_PLUS] = ACTIONS(8097), + [anon_sym_DASH] = ACTIONS(8095), + [anon_sym_QMARK] = ACTIONS(8097), + [aux_sym_close_statement_token1] = ACTIONS(8095), + [aux_sym_put_statement_token1] = ACTIONS(8095), + [aux_sym_unlock_statement_token1] = ACTIONS(8095), + [aux_sym_seek_statement_token1] = ACTIONS(8095), + [sym_reset_statement] = ACTIONS(8095), + [aux_sym_raise_event_statement_token1] = ACTIONS(8095), + [sym_stop_statement] = ACTIONS(8095), + [sym_beep_statement] = ACTIONS(8095), + [aux_sym_unload_statement_token1] = ACTIONS(8095), + [aux_sym_def_type_statement_token1] = ACTIONS(8095), + [aux_sym_def_type_statement_token2] = ACTIONS(8095), + [aux_sym_def_type_statement_token3] = ACTIONS(8095), + [aux_sym_def_type_statement_token4] = ACTIONS(8095), + [aux_sym_def_type_statement_token5] = ACTIONS(8095), + [aux_sym_def_type_statement_token6] = ACTIONS(8095), + [aux_sym_def_type_statement_token7] = ACTIONS(8095), + [aux_sym_def_type_statement_token8] = ACTIONS(8095), + [aux_sym_def_type_statement_token9] = ACTIONS(8095), + [aux_sym_def_type_statement_token10] = ACTIONS(8095), + [aux_sym_def_type_statement_token11] = ACTIONS(8095), + [aux_sym_def_type_statement_token12] = ACTIONS(8095), + [aux_sym_def_type_statement_token13] = ACTIONS(8095), + [aux_sym_def_type_statement_token14] = ACTIONS(8095), + [aux_sym_call_statement_token1] = ACTIONS(8095), + [sym__ambiguous_call_statement] = ACTIONS(8095), + [aux_sym_addressof_expression_token1] = ACTIONS(8095), + [aux_sym_type_of_expression_token1] = ACTIONS(8095), + [aux_sym_unary_expression_token1] = ACTIONS(8095), + [sym_string_literal] = ACTIONS(8097), + [sym_number_literal] = ACTIONS(8097), + [aux_sym_boolean_literal_token1] = ACTIONS(8095), + [aux_sym_boolean_literal_token2] = ACTIONS(8095), + [sym_nothing_literal] = ACTIONS(8095), + [sym_null_literal] = ACTIONS(8095), + [sym_empty_literal] = ACTIONS(8095), + [sym_date_literal] = ACTIONS(8097), + [anon_sym_POUND] = ACTIONS(8095), + }, + [STATE(3416)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token3] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(3417)] = { + [aux_sym__argument_sequence_repeat2] = STATE(3477), + [sym_identifier] = ACTIONS(4172), + [sym_newline] = ACTIONS(4170), + [anon_sym_COLON] = ACTIONS(4170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4172), + [aux_sym_frm_property_statement_token1] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [aux_sym__attribute_identifier_token1] = ACTIONS(4172), + [aux_sym_option_statement_token3] = ACTIONS(4172), + [aux_sym_type_declaration_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4172), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4172), + [aux_sym_enum_declaration_token1] = ACTIONS(4172), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4172), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4172), + [aux_sym_declare_function_statement_token1] = ACTIONS(4172), + [aux_sym_preprocessor_const_token1] = ACTIONS(4172), + [aux_sym__property_get_header_token1] = ACTIONS(4172), + [aux_sym_event_declaration_token1] = ACTIONS(4172), + [sym_static_modifier] = ACTIONS(4172), + [sym__dim_keyword] = ACTIONS(4172), + [sym__redim_keyword] = ACTIONS(4172), + [aux_sym_get_accessor_token1] = ACTIONS(4172), + [aux_sym_set_accessor_token1] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4168), + [aux_sym_const_declaration_token1] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4170), + [aux_sym_as_type_clause_token2] = ACTIONS(4172), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4172), + [aux_sym_visibility_token1] = ACTIONS(4172), + [aux_sym_visibility_token2] = ACTIONS(4172), + [aux_sym_elseif_fragment_token1] = ACTIONS(4172), + [aux_sym_else_fragment_token1] = ACTIONS(4172), + [aux_sym_select_statement_token1] = ACTIONS(4172), + [aux_sym__for_header_token1] = ACTIONS(4172), + [aux_sym_do_statement_token1] = ACTIONS(4172), + [aux_sym_do_condition_token1] = ACTIONS(4172), + [aux_sym_with_statement_token1] = ACTIONS(4172), + [aux_sym_exit_statement_token1] = ACTIONS(4172), + [sym_end_statement] = ACTIONS(4170), + [aux_sym_on_goto_statement_token1] = ACTIONS(4172), + [aux_sym_on_goto_statement_token2] = ACTIONS(4172), + [aux_sym_on_error_statement_token2] = ACTIONS(4172), + [sym__ambiguous_redim_statement] = ACTIONS(4170), + [aux_sym_erase_statement_token1] = ACTIONS(4172), + [aux_sym_open_statement_token1] = ACTIONS(4172), + [aux_sym_file_mode_token2] = ACTIONS(4172), + [aux_sym_file_access_token2] = ACTIONS(4172), + [aux_sym_file_lock_token2] = ACTIONS(4172), + [aux_sym_print_statement_token1] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4172), + [anon_sym_QMARK] = ACTIONS(4170), + [aux_sym_close_statement_token1] = ACTIONS(4172), + [aux_sym_put_statement_token1] = ACTIONS(4172), + [aux_sym_unlock_statement_token1] = ACTIONS(4172), + [aux_sym_seek_statement_token1] = ACTIONS(4172), + [sym_reset_statement] = ACTIONS(4172), + [aux_sym_raise_event_statement_token1] = ACTIONS(4172), + [sym_stop_statement] = ACTIONS(4172), + [sym_beep_statement] = ACTIONS(4172), + [aux_sym_unload_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token2] = ACTIONS(4172), + [aux_sym_def_type_statement_token3] = ACTIONS(4172), + [aux_sym_def_type_statement_token4] = ACTIONS(4172), + [aux_sym_def_type_statement_token5] = ACTIONS(4172), + [aux_sym_def_type_statement_token6] = ACTIONS(4172), + [aux_sym_def_type_statement_token7] = ACTIONS(4172), + [aux_sym_def_type_statement_token8] = ACTIONS(4172), + [aux_sym_def_type_statement_token9] = ACTIONS(4172), + [aux_sym_def_type_statement_token10] = ACTIONS(4172), + [aux_sym_def_type_statement_token11] = ACTIONS(4172), + [aux_sym_def_type_statement_token12] = ACTIONS(4172), + [aux_sym_def_type_statement_token13] = ACTIONS(4172), + [aux_sym_def_type_statement_token14] = ACTIONS(4172), + [aux_sym_call_statement_token1] = ACTIONS(4172), + [sym__ambiguous_call_statement] = ACTIONS(4172), + [aux_sym_addressof_expression_token1] = ACTIONS(4172), + [aux_sym_type_of_expression_token1] = ACTIONS(4172), + [aux_sym_unary_expression_token1] = ACTIONS(4172), + [sym_string_literal] = ACTIONS(4170), + [sym_number_literal] = ACTIONS(4170), + [aux_sym_boolean_literal_token1] = ACTIONS(4172), + [aux_sym_boolean_literal_token2] = ACTIONS(4172), + [sym_nothing_literal] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4172), + [sym_empty_literal] = ACTIONS(4172), + [sym_date_literal] = ACTIONS(4170), + [anon_sym_POUND] = ACTIONS(4172), + }, + [STATE(3418)] = { + [sym_identifier] = ACTIONS(5699), + [sym_newline] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5701), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5699), + [aux_sym_frm_property_statement_token1] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5699), + [anon_sym_BANG] = ACTIONS(5701), + [aux_sym__attribute_identifier_token1] = ACTIONS(5699), + [aux_sym_option_statement_token3] = ACTIONS(5699), + [aux_sym_type_declaration_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5699), + [aux_sym_enum_declaration_token1] = ACTIONS(5699), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5699), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5699), + [aux_sym_declare_function_statement_token1] = ACTIONS(5699), + [aux_sym_preprocessor_const_token1] = ACTIONS(5699), + [aux_sym__property_get_header_token1] = ACTIONS(5699), + [aux_sym_event_declaration_token1] = ACTIONS(5699), + [sym_static_modifier] = ACTIONS(5699), + [sym__dim_keyword] = ACTIONS(5699), + [sym__redim_keyword] = ACTIONS(5699), + [aux_sym_get_accessor_token1] = ACTIONS(5699), + [aux_sym_set_accessor_token1] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5701), + [aux_sym_const_declaration_token1] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(5701), + [aux_sym_as_type_clause_token2] = ACTIONS(5699), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5699), + [aux_sym_visibility_token1] = ACTIONS(5699), + [aux_sym_visibility_token2] = ACTIONS(5699), + [aux_sym_elseif_fragment_token1] = ACTIONS(5699), + [aux_sym_else_fragment_token1] = ACTIONS(5699), + [aux_sym_select_statement_token1] = ACTIONS(5699), + [aux_sym__for_header_token1] = ACTIONS(5699), + [aux_sym_do_statement_token1] = ACTIONS(5699), + [aux_sym_do_condition_token1] = ACTIONS(5699), + [aux_sym_with_statement_token1] = ACTIONS(5699), + [aux_sym_exit_statement_token1] = ACTIONS(5699), + [sym_end_statement] = ACTIONS(5701), + [aux_sym_on_goto_statement_token1] = ACTIONS(5699), + [aux_sym_on_goto_statement_token2] = ACTIONS(5699), + [aux_sym_on_error_statement_token2] = ACTIONS(5699), + [sym__ambiguous_redim_statement] = ACTIONS(5701), + [aux_sym_erase_statement_token1] = ACTIONS(5699), + [aux_sym_open_statement_token1] = ACTIONS(5699), + [aux_sym_file_mode_token2] = ACTIONS(5699), + [aux_sym_file_access_token2] = ACTIONS(5699), + [aux_sym_file_lock_token2] = ACTIONS(5699), + [aux_sym_print_statement_token1] = ACTIONS(5699), + [anon_sym_PLUS] = ACTIONS(5701), + [anon_sym_DASH] = ACTIONS(5699), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8101), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8103), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5701), + [aux_sym_close_statement_token1] = ACTIONS(5699), + [aux_sym_put_statement_token1] = ACTIONS(5699), + [aux_sym_unlock_statement_token1] = ACTIONS(5699), + [aux_sym_seek_statement_token1] = ACTIONS(5699), + [sym_reset_statement] = ACTIONS(5699), + [aux_sym_raise_event_statement_token1] = ACTIONS(5699), + [sym_stop_statement] = ACTIONS(5699), + [sym_beep_statement] = ACTIONS(5699), + [aux_sym_unload_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token2] = ACTIONS(5699), + [aux_sym_def_type_statement_token3] = ACTIONS(5699), + [aux_sym_def_type_statement_token4] = ACTIONS(5699), + [aux_sym_def_type_statement_token5] = ACTIONS(5699), + [aux_sym_def_type_statement_token6] = ACTIONS(5699), + [aux_sym_def_type_statement_token7] = ACTIONS(5699), + [aux_sym_def_type_statement_token8] = ACTIONS(5699), + [aux_sym_def_type_statement_token9] = ACTIONS(5699), + [aux_sym_def_type_statement_token10] = ACTIONS(5699), + [aux_sym_def_type_statement_token11] = ACTIONS(5699), + [aux_sym_def_type_statement_token12] = ACTIONS(5699), + [aux_sym_def_type_statement_token13] = ACTIONS(5699), + [aux_sym_def_type_statement_token14] = ACTIONS(5699), + [aux_sym_call_statement_token1] = ACTIONS(5699), + [sym__ambiguous_call_statement] = ACTIONS(5699), + [aux_sym_addressof_expression_token1] = ACTIONS(5699), + [aux_sym_type_of_expression_token1] = ACTIONS(5699), + [aux_sym_unary_expression_token1] = ACTIONS(5699), + [sym_string_literal] = ACTIONS(5701), + [sym_number_literal] = ACTIONS(5701), + [aux_sym_boolean_literal_token1] = ACTIONS(5699), + [aux_sym_boolean_literal_token2] = ACTIONS(5699), + [sym_nothing_literal] = ACTIONS(5699), + [sym_null_literal] = ACTIONS(5699), + [sym_empty_literal] = ACTIONS(5699), + [sym_date_literal] = ACTIONS(5701), + [anon_sym_POUND] = ACTIONS(5699), + }, + [STATE(3419)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8105), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8107), + [anon_sym_SLASH] = ACTIONS(8105), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3420)] = { + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(3420), + [sym_identifier] = ACTIONS(8109), + [sym_newline] = ACTIONS(8111), + [anon_sym_COLON] = ACTIONS(8111), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8109), + [aux_sym_frm_property_statement_token1] = ACTIONS(8109), + [anon_sym_DOT] = ACTIONS(8109), + [anon_sym_BANG] = ACTIONS(8111), + [aux_sym__attribute_identifier_token1] = ACTIONS(8109), + [aux_sym_option_statement_token3] = ACTIONS(8109), + [aux_sym_type_declaration_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8109), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8109), + [aux_sym_enum_declaration_token1] = ACTIONS(8109), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8109), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8109), + [aux_sym_declare_function_statement_token1] = ACTIONS(8109), + [aux_sym_preprocessor_const_token1] = ACTIONS(8109), + [aux_sym__property_get_header_token1] = ACTIONS(8109), + [aux_sym_event_declaration_token1] = ACTIONS(8109), + [sym_static_modifier] = ACTIONS(8109), + [sym__dim_keyword] = ACTIONS(8109), + [sym__redim_keyword] = ACTIONS(8109), + [aux_sym_get_accessor_token1] = ACTIONS(8109), + [aux_sym_set_accessor_token1] = ACTIONS(8109), + [aux_sym_const_declaration_token1] = ACTIONS(8109), + [anon_sym_LPAREN] = ACTIONS(8111), + [aux_sym_as_type_clause_token2] = ACTIONS(8109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8109), + [aux_sym_visibility_token1] = ACTIONS(8109), + [aux_sym_visibility_token2] = ACTIONS(8109), + [aux_sym_elseif_fragment_token1] = ACTIONS(8109), + [aux_sym_else_fragment_token1] = ACTIONS(8109), + [aux_sym_select_statement_token1] = ACTIONS(8109), + [aux_sym__for_header_token1] = ACTIONS(8109), + [aux_sym_do_statement_token1] = ACTIONS(8109), + [aux_sym_do_condition_token1] = ACTIONS(8109), + [aux_sym_with_statement_token1] = ACTIONS(8109), + [aux_sym_exit_statement_token1] = ACTIONS(8109), + [sym_end_statement] = ACTIONS(8111), + [aux_sym_on_goto_statement_token1] = ACTIONS(8109), + [aux_sym_on_goto_statement_token2] = ACTIONS(8109), + [aux_sym_on_error_statement_token2] = ACTIONS(8109), + [sym__ambiguous_redim_statement] = ACTIONS(8111), + [aux_sym_erase_statement_token1] = ACTIONS(8109), + [aux_sym_open_statement_token1] = ACTIONS(8109), + [aux_sym_file_mode_token2] = ACTIONS(8109), + [aux_sym_file_access_token2] = ACTIONS(8109), + [aux_sym_file_lock_token2] = ACTIONS(8109), + [aux_sym_print_statement_token1] = ACTIONS(8109), + [anon_sym_PLUS] = ACTIONS(8111), + [anon_sym_DASH] = ACTIONS(8109), + [anon_sym_SEMI] = ACTIONS(8113), + [anon_sym_QMARK] = ACTIONS(8111), + [aux_sym_close_statement_token1] = ACTIONS(8109), + [aux_sym_put_statement_token1] = ACTIONS(8109), + [aux_sym_unlock_statement_token1] = ACTIONS(8109), + [aux_sym_seek_statement_token1] = ACTIONS(8109), + [sym_reset_statement] = ACTIONS(8109), + [aux_sym_raise_event_statement_token1] = ACTIONS(8109), + [sym_stop_statement] = ACTIONS(8109), + [sym_beep_statement] = ACTIONS(8109), + [aux_sym_unload_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token2] = ACTIONS(8109), + [aux_sym_def_type_statement_token3] = ACTIONS(8109), + [aux_sym_def_type_statement_token4] = ACTIONS(8109), + [aux_sym_def_type_statement_token5] = ACTIONS(8109), + [aux_sym_def_type_statement_token6] = ACTIONS(8109), + [aux_sym_def_type_statement_token7] = ACTIONS(8109), + [aux_sym_def_type_statement_token8] = ACTIONS(8109), + [aux_sym_def_type_statement_token9] = ACTIONS(8109), + [aux_sym_def_type_statement_token10] = ACTIONS(8109), + [aux_sym_def_type_statement_token11] = ACTIONS(8109), + [aux_sym_def_type_statement_token12] = ACTIONS(8109), + [aux_sym_def_type_statement_token13] = ACTIONS(8109), + [aux_sym_def_type_statement_token14] = ACTIONS(8109), + [aux_sym_call_statement_token1] = ACTIONS(8109), + [sym__ambiguous_call_statement] = ACTIONS(8109), + [aux_sym_addressof_expression_token1] = ACTIONS(8109), + [aux_sym_type_of_expression_token1] = ACTIONS(8109), + [aux_sym_unary_expression_token1] = ACTIONS(8109), + [sym_string_literal] = ACTIONS(8111), + [sym_number_literal] = ACTIONS(8111), + [aux_sym_boolean_literal_token1] = ACTIONS(8109), + [aux_sym_boolean_literal_token2] = ACTIONS(8109), + [sym_nothing_literal] = ACTIONS(8109), + [sym_null_literal] = ACTIONS(8109), + [sym_empty_literal] = ACTIONS(8109), + [sym_date_literal] = ACTIONS(8111), + [anon_sym_POUND] = ACTIONS(8109), + }, + [STATE(3421)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8105), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8107), + [anon_sym_SLASH] = ACTIONS(8105), + [anon_sym_BSLASH] = ACTIONS(8116), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3422)] = { + [sym_identifier] = ACTIONS(6625), + [sym_newline] = ACTIONS(6627), + [anon_sym_COLON] = ACTIONS(6627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6625), + [aux_sym_frm_property_statement_token1] = ACTIONS(6625), + [anon_sym_DOT] = ACTIONS(6625), + [anon_sym_BANG] = ACTIONS(6627), + [aux_sym__attribute_identifier_token1] = ACTIONS(6625), + [aux_sym_option_statement_token3] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6625), + [aux_sym_preprocessor_const_token1] = ACTIONS(6625), + [sym_static_modifier] = ACTIONS(6625), + [sym__dim_keyword] = ACTIONS(6625), + [sym__redim_keyword] = ACTIONS(6625), + [aux_sym_get_accessor_token1] = ACTIONS(6625), + [aux_sym_set_accessor_token1] = ACTIONS(6625), + [aux_sym_const_declaration_token1] = ACTIONS(6625), + [anon_sym_LPAREN] = ACTIONS(6627), + [aux_sym_as_type_clause_token2] = ACTIONS(6625), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6625), + [aux_sym_visibility_token1] = ACTIONS(6625), + [aux_sym_visibility_token2] = ACTIONS(6625), + [aux_sym_elseif_fragment_token1] = ACTIONS(6625), + [aux_sym_else_fragment_token1] = ACTIONS(6625), + [aux_sym_select_statement_token1] = ACTIONS(6625), + [aux_sym__for_header_token1] = ACTIONS(6625), + [aux_sym_do_statement_token1] = ACTIONS(6625), + [aux_sym_do_statement_token2] = ACTIONS(6625), + [aux_sym_do_condition_token1] = ACTIONS(6625), + [aux_sym_with_statement_token1] = ACTIONS(6625), + [aux_sym_exit_statement_token1] = ACTIONS(6625), + [sym_end_statement] = ACTIONS(6627), + [aux_sym_on_goto_statement_token1] = ACTIONS(6625), + [aux_sym_on_goto_statement_token2] = ACTIONS(6625), + [aux_sym_on_error_statement_token2] = ACTIONS(6625), + [sym__ambiguous_redim_statement] = ACTIONS(6627), + [aux_sym_erase_statement_token1] = ACTIONS(6625), + [aux_sym_open_statement_token1] = ACTIONS(6625), + [aux_sym_file_mode_token2] = ACTIONS(6625), + [aux_sym_file_access_token2] = ACTIONS(6625), + [aux_sym_file_lock_token2] = ACTIONS(6625), + [aux_sym_print_statement_token1] = ACTIONS(6625), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_QMARK] = ACTIONS(6627), + [aux_sym_close_statement_token1] = ACTIONS(6625), + [aux_sym_put_statement_token1] = ACTIONS(6625), + [aux_sym_unlock_statement_token1] = ACTIONS(6625), + [aux_sym_seek_statement_token1] = ACTIONS(6625), + [sym_reset_statement] = ACTIONS(6625), + [aux_sym_raise_event_statement_token1] = ACTIONS(6625), + [sym_stop_statement] = ACTIONS(6625), + [sym_beep_statement] = ACTIONS(6625), + [aux_sym_unload_statement_token1] = ACTIONS(6625), + [aux_sym_def_type_statement_token1] = ACTIONS(6625), + [aux_sym_def_type_statement_token2] = ACTIONS(6625), + [aux_sym_def_type_statement_token3] = ACTIONS(6625), + [aux_sym_def_type_statement_token4] = ACTIONS(6625), + [aux_sym_def_type_statement_token5] = ACTIONS(6625), + [aux_sym_def_type_statement_token6] = ACTIONS(6625), + [aux_sym_def_type_statement_token7] = ACTIONS(6625), + [aux_sym_def_type_statement_token8] = ACTIONS(6625), + [aux_sym_def_type_statement_token9] = ACTIONS(6625), + [aux_sym_def_type_statement_token10] = ACTIONS(6625), + [aux_sym_def_type_statement_token11] = ACTIONS(6625), + [aux_sym_def_type_statement_token12] = ACTIONS(6625), + [aux_sym_def_type_statement_token13] = ACTIONS(6625), + [aux_sym_def_type_statement_token14] = ACTIONS(6625), + [aux_sym_call_statement_token1] = ACTIONS(6625), + [sym__ambiguous_call_statement] = ACTIONS(6625), + [aux_sym_addressof_expression_token1] = ACTIONS(6625), + [aux_sym_type_of_expression_token1] = ACTIONS(6625), + [aux_sym_unary_expression_token1] = ACTIONS(6625), + [sym_string_literal] = ACTIONS(6627), + [sym_number_literal] = ACTIONS(6627), + [aux_sym_boolean_literal_token1] = ACTIONS(6625), + [aux_sym_boolean_literal_token2] = ACTIONS(6625), + [sym_nothing_literal] = ACTIONS(6625), + [sym_null_literal] = ACTIONS(6625), + [sym_empty_literal] = ACTIONS(6625), + [sym_date_literal] = ACTIONS(6627), + [anon_sym_POUND] = ACTIONS(6625), + }, + [STATE(3423)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8105), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8107), + [anon_sym_SLASH] = ACTIONS(8105), + [anon_sym_BSLASH] = ACTIONS(8116), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8118), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3424)] = { + [sym_identifier] = ACTIONS(6304), + [sym_newline] = ACTIONS(6306), + [anon_sym_COLON] = ACTIONS(6306), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6304), + [aux_sym_frm_property_statement_token1] = ACTIONS(6304), + [anon_sym_DOT] = ACTIONS(6304), + [anon_sym_BANG] = ACTIONS(6306), + [aux_sym__attribute_identifier_token1] = ACTIONS(6304), + [aux_sym_option_statement_token3] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6304), + [aux_sym_preprocessor_const_token1] = ACTIONS(6304), + [sym_static_modifier] = ACTIONS(6304), + [sym__dim_keyword] = ACTIONS(6304), + [sym__redim_keyword] = ACTIONS(6304), + [aux_sym_get_accessor_token1] = ACTIONS(6304), + [aux_sym_set_accessor_token1] = ACTIONS(6304), + [aux_sym_const_declaration_token1] = ACTIONS(6304), + [anon_sym_LPAREN] = ACTIONS(6306), + [aux_sym_as_type_clause_token2] = ACTIONS(6304), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6304), + [aux_sym_visibility_token1] = ACTIONS(6304), + [aux_sym_visibility_token2] = ACTIONS(6304), + [aux_sym_elseif_fragment_token1] = ACTIONS(6304), + [aux_sym_else_fragment_token1] = ACTIONS(6304), + [aux_sym_select_statement_token1] = ACTIONS(6304), + [aux_sym__for_header_token1] = ACTIONS(6304), + [aux_sym_do_statement_token1] = ACTIONS(6304), + [aux_sym_do_condition_token1] = ACTIONS(6304), + [aux_sym_while_statement_token1] = ACTIONS(6304), + [aux_sym_with_statement_token1] = ACTIONS(6304), + [aux_sym_exit_statement_token1] = ACTIONS(6304), + [sym_end_statement] = ACTIONS(6306), + [aux_sym_on_goto_statement_token1] = ACTIONS(6304), + [aux_sym_on_goto_statement_token2] = ACTIONS(6304), + [aux_sym_on_error_statement_token2] = ACTIONS(6304), + [sym__ambiguous_redim_statement] = ACTIONS(6306), + [aux_sym_erase_statement_token1] = ACTIONS(6304), + [aux_sym_open_statement_token1] = ACTIONS(6304), + [aux_sym_file_mode_token2] = ACTIONS(6304), + [aux_sym_file_access_token2] = ACTIONS(6304), + [aux_sym_file_lock_token2] = ACTIONS(6304), + [aux_sym_print_statement_token1] = ACTIONS(6304), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_QMARK] = ACTIONS(6306), + [aux_sym_close_statement_token1] = ACTIONS(6304), + [aux_sym_put_statement_token1] = ACTIONS(6304), + [aux_sym_unlock_statement_token1] = ACTIONS(6304), + [aux_sym_seek_statement_token1] = ACTIONS(6304), + [sym_reset_statement] = ACTIONS(6304), + [aux_sym_raise_event_statement_token1] = ACTIONS(6304), + [sym_stop_statement] = ACTIONS(6304), + [sym_beep_statement] = ACTIONS(6304), + [aux_sym_unload_statement_token1] = ACTIONS(6304), + [aux_sym_def_type_statement_token1] = ACTIONS(6304), + [aux_sym_def_type_statement_token2] = ACTIONS(6304), + [aux_sym_def_type_statement_token3] = ACTIONS(6304), + [aux_sym_def_type_statement_token4] = ACTIONS(6304), + [aux_sym_def_type_statement_token5] = ACTIONS(6304), + [aux_sym_def_type_statement_token6] = ACTIONS(6304), + [aux_sym_def_type_statement_token7] = ACTIONS(6304), + [aux_sym_def_type_statement_token8] = ACTIONS(6304), + [aux_sym_def_type_statement_token9] = ACTIONS(6304), + [aux_sym_def_type_statement_token10] = ACTIONS(6304), + [aux_sym_def_type_statement_token11] = ACTIONS(6304), + [aux_sym_def_type_statement_token12] = ACTIONS(6304), + [aux_sym_def_type_statement_token13] = ACTIONS(6304), + [aux_sym_def_type_statement_token14] = ACTIONS(6304), + [aux_sym_call_statement_token1] = ACTIONS(6304), + [sym__ambiguous_call_statement] = ACTIONS(6304), + [aux_sym_addressof_expression_token1] = ACTIONS(6304), + [aux_sym_type_of_expression_token1] = ACTIONS(6304), + [aux_sym_unary_expression_token1] = ACTIONS(6304), + [sym_string_literal] = ACTIONS(6306), + [sym_number_literal] = ACTIONS(6306), + [aux_sym_boolean_literal_token1] = ACTIONS(6304), + [aux_sym_boolean_literal_token2] = ACTIONS(6304), + [sym_nothing_literal] = ACTIONS(6304), + [sym_null_literal] = ACTIONS(6304), + [sym_empty_literal] = ACTIONS(6304), + [sym_date_literal] = ACTIONS(6306), + [anon_sym_POUND] = ACTIONS(6304), + }, + [STATE(3425)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_array_bound_token1] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(3426)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_array_bound_token1] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(3427)] = { + [sym_parameter_list] = STATE(4022), + [sym_identifier] = ACTIONS(8120), + [sym_newline] = ACTIONS(8122), + [anon_sym_COLON] = ACTIONS(8122), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8120), + [aux_sym_frm_property_statement_token1] = ACTIONS(8120), + [anon_sym_DOT] = ACTIONS(8120), + [anon_sym_BANG] = ACTIONS(8122), + [aux_sym__attribute_identifier_token1] = ACTIONS(8120), + [aux_sym_option_statement_token3] = ACTIONS(8120), + [aux_sym_type_declaration_token1] = ACTIONS(8120), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8120), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8120), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8120), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8120), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8120), + [aux_sym_enum_declaration_token1] = ACTIONS(8120), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8120), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8120), + [aux_sym_declare_sub_statement_token4] = ACTIONS(8124), + [aux_sym_declare_function_statement_token1] = ACTIONS(8120), + [aux_sym_preprocessor_const_token1] = ACTIONS(8120), + [aux_sym__property_get_header_token1] = ACTIONS(8120), + [aux_sym_event_declaration_token1] = ACTIONS(8120), + [sym_static_modifier] = ACTIONS(8120), + [sym__dim_keyword] = ACTIONS(8120), + [sym__redim_keyword] = ACTIONS(8120), + [aux_sym_get_accessor_token1] = ACTIONS(8120), + [aux_sym_set_accessor_token1] = ACTIONS(8120), + [aux_sym_const_declaration_token1] = ACTIONS(8120), + [anon_sym_LPAREN] = ACTIONS(8126), + [aux_sym_as_type_clause_token2] = ACTIONS(8120), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8120), + [aux_sym_visibility_token1] = ACTIONS(8120), + [aux_sym_visibility_token2] = ACTIONS(8120), + [aux_sym_elseif_fragment_token1] = ACTIONS(8120), + [aux_sym_else_fragment_token1] = ACTIONS(8120), + [aux_sym_select_statement_token1] = ACTIONS(8120), + [aux_sym__for_header_token1] = ACTIONS(8120), + [aux_sym_do_statement_token1] = ACTIONS(8120), + [aux_sym_do_condition_token1] = ACTIONS(8120), + [aux_sym_with_statement_token1] = ACTIONS(8120), + [aux_sym_exit_statement_token1] = ACTIONS(8120), + [sym_end_statement] = ACTIONS(8122), + [aux_sym_on_goto_statement_token1] = ACTIONS(8120), + [aux_sym_on_goto_statement_token2] = ACTIONS(8120), + [aux_sym_on_error_statement_token2] = ACTIONS(8120), + [sym__ambiguous_redim_statement] = ACTIONS(8122), + [aux_sym_erase_statement_token1] = ACTIONS(8120), + [aux_sym_open_statement_token1] = ACTIONS(8120), + [aux_sym_file_mode_token2] = ACTIONS(8120), + [aux_sym_file_access_token2] = ACTIONS(8120), + [aux_sym_file_lock_token2] = ACTIONS(8120), + [aux_sym_print_statement_token1] = ACTIONS(8120), + [anon_sym_PLUS] = ACTIONS(8122), + [anon_sym_DASH] = ACTIONS(8120), + [anon_sym_QMARK] = ACTIONS(8122), + [aux_sym_close_statement_token1] = ACTIONS(8120), + [aux_sym_put_statement_token1] = ACTIONS(8120), + [aux_sym_unlock_statement_token1] = ACTIONS(8120), + [aux_sym_seek_statement_token1] = ACTIONS(8120), + [sym_reset_statement] = ACTIONS(8120), + [aux_sym_raise_event_statement_token1] = ACTIONS(8120), + [sym_stop_statement] = ACTIONS(8120), + [sym_beep_statement] = ACTIONS(8120), + [aux_sym_unload_statement_token1] = ACTIONS(8120), + [aux_sym_def_type_statement_token1] = ACTIONS(8120), + [aux_sym_def_type_statement_token2] = ACTIONS(8120), + [aux_sym_def_type_statement_token3] = ACTIONS(8120), + [aux_sym_def_type_statement_token4] = ACTIONS(8120), + [aux_sym_def_type_statement_token5] = ACTIONS(8120), + [aux_sym_def_type_statement_token6] = ACTIONS(8120), + [aux_sym_def_type_statement_token7] = ACTIONS(8120), + [aux_sym_def_type_statement_token8] = ACTIONS(8120), + [aux_sym_def_type_statement_token9] = ACTIONS(8120), + [aux_sym_def_type_statement_token10] = ACTIONS(8120), + [aux_sym_def_type_statement_token11] = ACTIONS(8120), + [aux_sym_def_type_statement_token12] = ACTIONS(8120), + [aux_sym_def_type_statement_token13] = ACTIONS(8120), + [aux_sym_def_type_statement_token14] = ACTIONS(8120), + [aux_sym_call_statement_token1] = ACTIONS(8120), + [sym__ambiguous_call_statement] = ACTIONS(8120), + [aux_sym_addressof_expression_token1] = ACTIONS(8120), + [aux_sym_type_of_expression_token1] = ACTIONS(8120), + [aux_sym_unary_expression_token1] = ACTIONS(8120), + [sym_string_literal] = ACTIONS(8122), + [sym_number_literal] = ACTIONS(8122), + [aux_sym_boolean_literal_token1] = ACTIONS(8120), + [aux_sym_boolean_literal_token2] = ACTIONS(8120), + [sym_nothing_literal] = ACTIONS(8120), + [sym_null_literal] = ACTIONS(8120), + [sym_empty_literal] = ACTIONS(8120), + [sym_date_literal] = ACTIONS(8122), + [anon_sym_POUND] = ACTIONS(8120), + }, + [STATE(3428)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8105), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8107), + [anon_sym_SLASH] = ACTIONS(8105), + [anon_sym_BSLASH] = ACTIONS(8116), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8118), + [anon_sym_PLUS] = ACTIONS(8128), + [anon_sym_DASH] = ACTIONS(8130), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3429)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_array_bound_token1] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(3430)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8105), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8107), + [anon_sym_SLASH] = ACTIONS(8105), + [anon_sym_BSLASH] = ACTIONS(8116), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8118), + [anon_sym_PLUS] = ACTIONS(8128), + [anon_sym_DASH] = ACTIONS(8130), + [anon_sym_AMP] = ACTIONS(8132), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3431)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_array_bound_token1] = ACTIONS(4369), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(3432)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8105), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8107), + [anon_sym_SLASH] = ACTIONS(8105), + [anon_sym_BSLASH] = ACTIONS(8116), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8118), + [anon_sym_PLUS] = ACTIONS(8128), + [anon_sym_DASH] = ACTIONS(8130), + [anon_sym_AMP] = ACTIONS(8132), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8134), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3433)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8105), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8107), + [anon_sym_SLASH] = ACTIONS(8105), + [anon_sym_BSLASH] = ACTIONS(8116), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8118), + [anon_sym_PLUS] = ACTIONS(8128), + [anon_sym_DASH] = ACTIONS(8130), + [anon_sym_AMP] = ACTIONS(8132), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8134), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8136), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3434)] = { + [sym_identifier] = ACTIONS(6629), + [sym_newline] = ACTIONS(6631), + [anon_sym_COLON] = ACTIONS(6631), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6629), + [aux_sym_frm_property_statement_token1] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6631), + [aux_sym__attribute_identifier_token1] = ACTIONS(6629), + [aux_sym_option_statement_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6629), + [aux_sym_preprocessor_const_token1] = ACTIONS(6629), + [sym_static_modifier] = ACTIONS(6629), + [sym__dim_keyword] = ACTIONS(6629), + [sym__redim_keyword] = ACTIONS(6629), + [aux_sym_get_accessor_token1] = ACTIONS(6629), + [aux_sym_set_accessor_token1] = ACTIONS(6629), + [aux_sym_const_declaration_token1] = ACTIONS(6629), + [anon_sym_LPAREN] = ACTIONS(6631), + [aux_sym_as_type_clause_token2] = ACTIONS(6629), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6629), + [aux_sym_visibility_token1] = ACTIONS(6629), + [aux_sym_visibility_token2] = ACTIONS(6629), + [aux_sym_elseif_fragment_token1] = ACTIONS(6629), + [aux_sym_else_fragment_token1] = ACTIONS(6629), + [aux_sym_select_statement_token1] = ACTIONS(6629), + [aux_sym__for_header_token1] = ACTIONS(6629), + [aux_sym_do_statement_token1] = ACTIONS(6629), + [aux_sym_do_statement_token2] = ACTIONS(6629), + [aux_sym_do_condition_token1] = ACTIONS(6629), + [aux_sym_with_statement_token1] = ACTIONS(6629), + [aux_sym_exit_statement_token1] = ACTIONS(6629), + [sym_end_statement] = ACTIONS(6631), + [aux_sym_on_goto_statement_token1] = ACTIONS(6629), + [aux_sym_on_goto_statement_token2] = ACTIONS(6629), + [aux_sym_on_error_statement_token2] = ACTIONS(6629), + [sym__ambiguous_redim_statement] = ACTIONS(6631), + [aux_sym_erase_statement_token1] = ACTIONS(6629), + [aux_sym_open_statement_token1] = ACTIONS(6629), + [aux_sym_file_mode_token2] = ACTIONS(6629), + [aux_sym_file_access_token2] = ACTIONS(6629), + [aux_sym_file_lock_token2] = ACTIONS(6629), + [aux_sym_print_statement_token1] = ACTIONS(6629), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6079), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6081), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6083), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6085), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6087), + [anon_sym_QMARK] = ACTIONS(6631), + [aux_sym_close_statement_token1] = ACTIONS(6629), + [aux_sym_put_statement_token1] = ACTIONS(6629), + [aux_sym_unlock_statement_token1] = ACTIONS(6629), + [aux_sym_seek_statement_token1] = ACTIONS(6629), + [sym_reset_statement] = ACTIONS(6629), + [aux_sym_raise_event_statement_token1] = ACTIONS(6629), + [sym_stop_statement] = ACTIONS(6629), + [sym_beep_statement] = ACTIONS(6629), + [aux_sym_unload_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token2] = ACTIONS(6629), + [aux_sym_def_type_statement_token3] = ACTIONS(6629), + [aux_sym_def_type_statement_token4] = ACTIONS(6629), + [aux_sym_def_type_statement_token5] = ACTIONS(6629), + [aux_sym_def_type_statement_token6] = ACTIONS(6629), + [aux_sym_def_type_statement_token7] = ACTIONS(6629), + [aux_sym_def_type_statement_token8] = ACTIONS(6629), + [aux_sym_def_type_statement_token9] = ACTIONS(6629), + [aux_sym_def_type_statement_token10] = ACTIONS(6629), + [aux_sym_def_type_statement_token11] = ACTIONS(6629), + [aux_sym_def_type_statement_token12] = ACTIONS(6629), + [aux_sym_def_type_statement_token13] = ACTIONS(6629), + [aux_sym_def_type_statement_token14] = ACTIONS(6629), + [aux_sym_call_statement_token1] = ACTIONS(6629), + [sym__ambiguous_call_statement] = ACTIONS(6629), + [aux_sym_addressof_expression_token1] = ACTIONS(6629), + [aux_sym_type_of_expression_token1] = ACTIONS(6629), + [aux_sym_unary_expression_token1] = ACTIONS(6629), + [sym_string_literal] = ACTIONS(6631), + [sym_number_literal] = ACTIONS(6631), + [aux_sym_boolean_literal_token1] = ACTIONS(6629), + [aux_sym_boolean_literal_token2] = ACTIONS(6629), + [sym_nothing_literal] = ACTIONS(6629), + [sym_null_literal] = ACTIONS(6629), + [sym_empty_literal] = ACTIONS(6629), + [sym_date_literal] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6629), + }, + [STATE(3435)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8105), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8107), + [anon_sym_SLASH] = ACTIONS(8105), + [anon_sym_BSLASH] = ACTIONS(8116), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8118), + [anon_sym_PLUS] = ACTIONS(8128), + [anon_sym_DASH] = ACTIONS(8130), + [anon_sym_AMP] = ACTIONS(8132), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8134), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8136), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(8138), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3436)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token3] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(3437)] = { + [sym_identifier] = ACTIONS(3370), + [sym_newline] = ACTIONS(3364), + [anon_sym_COLON] = ACTIONS(6646), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3370), + [aux_sym_frm_property_statement_token1] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3364), + [aux_sym__attribute_identifier_token1] = ACTIONS(3370), + [aux_sym_option_statement_token3] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3370), + [aux_sym_preprocessor_const_token1] = ACTIONS(3370), + [sym_static_modifier] = ACTIONS(3370), + [sym__dim_keyword] = ACTIONS(3370), + [sym__redim_keyword] = ACTIONS(3370), + [aux_sym_get_accessor_token1] = ACTIONS(3370), + [aux_sym_set_accessor_token1] = ACTIONS(3370), + [aux_sym_const_declaration_token1] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3364), + [aux_sym_as_type_clause_token2] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3370), + [aux_sym_visibility_token1] = ACTIONS(3370), + [aux_sym_visibility_token2] = ACTIONS(3370), + [aux_sym_elseif_fragment_token1] = ACTIONS(3370), + [aux_sym_else_fragment_token1] = ACTIONS(3370), + [aux_sym_select_statement_token1] = ACTIONS(3370), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(3370), + [sym_end_statement] = ACTIONS(3364), + [aux_sym_on_goto_statement_token1] = ACTIONS(3370), + [aux_sym_on_goto_statement_token2] = ACTIONS(3370), + [aux_sym_on_error_statement_token2] = ACTIONS(3370), + [sym__ambiguous_redim_statement] = ACTIONS(3364), + [aux_sym_erase_statement_token1] = ACTIONS(3370), + [aux_sym_open_statement_token1] = ACTIONS(3370), + [aux_sym_file_mode_token2] = ACTIONS(3370), + [aux_sym_file_access_token2] = ACTIONS(3370), + [aux_sym_file_lock_token2] = ACTIONS(3370), + [aux_sym_print_statement_token1] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(3364), + [aux_sym_close_statement_token1] = ACTIONS(3370), + [aux_sym_put_statement_token1] = ACTIONS(3370), + [aux_sym_unlock_statement_token1] = ACTIONS(3370), + [aux_sym_seek_statement_token1] = ACTIONS(3370), + [sym_reset_statement] = ACTIONS(3370), + [aux_sym_raise_event_statement_token1] = ACTIONS(3370), + [sym_stop_statement] = ACTIONS(3370), + [sym_beep_statement] = ACTIONS(3370), + [aux_sym_unload_statement_token1] = ACTIONS(3370), + [aux_sym_def_type_statement_token1] = ACTIONS(3370), + [aux_sym_def_type_statement_token2] = ACTIONS(3370), + [aux_sym_def_type_statement_token3] = ACTIONS(3370), + [aux_sym_def_type_statement_token4] = ACTIONS(3370), + [aux_sym_def_type_statement_token5] = ACTIONS(3370), + [aux_sym_def_type_statement_token6] = ACTIONS(3370), + [aux_sym_def_type_statement_token7] = ACTIONS(3370), + [aux_sym_def_type_statement_token8] = ACTIONS(3370), + [aux_sym_def_type_statement_token9] = ACTIONS(3370), + [aux_sym_def_type_statement_token10] = ACTIONS(3370), + [aux_sym_def_type_statement_token11] = ACTIONS(3370), + [aux_sym_def_type_statement_token12] = ACTIONS(3370), + [aux_sym_def_type_statement_token13] = ACTIONS(3370), + [aux_sym_def_type_statement_token14] = ACTIONS(3370), + [aux_sym_call_statement_token1] = ACTIONS(3370), + [sym__ambiguous_call_statement] = ACTIONS(3370), + [aux_sym_addressof_expression_token1] = ACTIONS(3370), + [aux_sym_type_of_expression_token1] = ACTIONS(3370), + [aux_sym_unary_expression_token1] = ACTIONS(3370), + [sym_string_literal] = ACTIONS(3364), + [sym_number_literal] = ACTIONS(3364), + [aux_sym_boolean_literal_token1] = ACTIONS(3370), + [aux_sym_boolean_literal_token2] = ACTIONS(3370), + [sym_nothing_literal] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3370), + [sym_empty_literal] = ACTIONS(3370), + [sym_date_literal] = ACTIONS(3364), + [anon_sym_POUND] = ACTIONS(3370), + }, + [STATE(3438)] = { + [sym_do_condition] = STATE(3972), + [sym_identifier] = ACTIONS(8140), + [sym_newline] = ACTIONS(8142), + [anon_sym_COLON] = ACTIONS(8142), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8140), + [aux_sym_frm_property_statement_token1] = ACTIONS(8140), + [anon_sym_DOT] = ACTIONS(8140), + [anon_sym_BANG] = ACTIONS(8142), + [aux_sym__attribute_identifier_token1] = ACTIONS(8140), + [aux_sym_option_statement_token3] = ACTIONS(8140), + [aux_sym_type_declaration_token1] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8140), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8140), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8140), + [aux_sym_enum_declaration_token1] = ACTIONS(8140), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8140), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8140), + [aux_sym_declare_function_statement_token1] = ACTIONS(8140), + [aux_sym_preprocessor_const_token1] = ACTIONS(8140), + [aux_sym__property_get_header_token1] = ACTIONS(8140), + [aux_sym_event_declaration_token1] = ACTIONS(8140), + [sym_static_modifier] = ACTIONS(8140), + [sym__dim_keyword] = ACTIONS(8140), + [sym__redim_keyword] = ACTIONS(8140), + [aux_sym_get_accessor_token1] = ACTIONS(8140), + [aux_sym_set_accessor_token1] = ACTIONS(8140), + [aux_sym_const_declaration_token1] = ACTIONS(8140), + [anon_sym_LPAREN] = ACTIONS(8142), + [aux_sym_as_type_clause_token2] = ACTIONS(8140), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8140), + [aux_sym_visibility_token1] = ACTIONS(8140), + [aux_sym_visibility_token2] = ACTIONS(8140), + [aux_sym_elseif_fragment_token1] = ACTIONS(8140), + [aux_sym_else_fragment_token1] = ACTIONS(8140), + [aux_sym_select_statement_token1] = ACTIONS(8140), + [aux_sym__for_header_token1] = ACTIONS(8140), + [aux_sym_do_statement_token1] = ACTIONS(8140), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8140), + [aux_sym_exit_statement_token1] = ACTIONS(8140), + [sym_end_statement] = ACTIONS(8142), + [aux_sym_on_goto_statement_token1] = ACTIONS(8140), + [aux_sym_on_goto_statement_token2] = ACTIONS(8140), + [aux_sym_on_error_statement_token2] = ACTIONS(8140), + [sym__ambiguous_redim_statement] = ACTIONS(8142), + [aux_sym_erase_statement_token1] = ACTIONS(8140), + [aux_sym_open_statement_token1] = ACTIONS(8140), + [aux_sym_file_mode_token2] = ACTIONS(8140), + [aux_sym_file_access_token2] = ACTIONS(8140), + [aux_sym_file_lock_token2] = ACTIONS(8140), + [aux_sym_print_statement_token1] = ACTIONS(8140), + [anon_sym_PLUS] = ACTIONS(8142), + [anon_sym_DASH] = ACTIONS(8140), + [anon_sym_QMARK] = ACTIONS(8142), + [aux_sym_close_statement_token1] = ACTIONS(8140), + [aux_sym_put_statement_token1] = ACTIONS(8140), + [aux_sym_unlock_statement_token1] = ACTIONS(8140), + [aux_sym_seek_statement_token1] = ACTIONS(8140), + [sym_reset_statement] = ACTIONS(8140), + [aux_sym_raise_event_statement_token1] = ACTIONS(8140), + [sym_stop_statement] = ACTIONS(8140), + [sym_beep_statement] = ACTIONS(8140), + [aux_sym_unload_statement_token1] = ACTIONS(8140), + [aux_sym_def_type_statement_token1] = ACTIONS(8140), + [aux_sym_def_type_statement_token2] = ACTIONS(8140), + [aux_sym_def_type_statement_token3] = ACTIONS(8140), + [aux_sym_def_type_statement_token4] = ACTIONS(8140), + [aux_sym_def_type_statement_token5] = ACTIONS(8140), + [aux_sym_def_type_statement_token6] = ACTIONS(8140), + [aux_sym_def_type_statement_token7] = ACTIONS(8140), + [aux_sym_def_type_statement_token8] = ACTIONS(8140), + [aux_sym_def_type_statement_token9] = ACTIONS(8140), + [aux_sym_def_type_statement_token10] = ACTIONS(8140), + [aux_sym_def_type_statement_token11] = ACTIONS(8140), + [aux_sym_def_type_statement_token12] = ACTIONS(8140), + [aux_sym_def_type_statement_token13] = ACTIONS(8140), + [aux_sym_def_type_statement_token14] = ACTIONS(8140), + [aux_sym_call_statement_token1] = ACTIONS(8140), + [sym__ambiguous_call_statement] = ACTIONS(8140), + [aux_sym_addressof_expression_token1] = ACTIONS(8140), + [aux_sym_type_of_expression_token1] = ACTIONS(8140), + [aux_sym_unary_expression_token1] = ACTIONS(8140), + [sym_string_literal] = ACTIONS(8142), + [sym_number_literal] = ACTIONS(8142), + [aux_sym_boolean_literal_token1] = ACTIONS(8140), + [aux_sym_boolean_literal_token2] = ACTIONS(8140), + [sym_nothing_literal] = ACTIONS(8140), + [sym_null_literal] = ACTIONS(8140), + [sym_empty_literal] = ACTIONS(8140), + [sym_date_literal] = ACTIONS(8142), + [anon_sym_POUND] = ACTIONS(8140), + }, + [STATE(3439)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8105), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8107), + [anon_sym_SLASH] = ACTIONS(8105), + [anon_sym_BSLASH] = ACTIONS(8116), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8118), + [anon_sym_PLUS] = ACTIONS(8128), + [anon_sym_DASH] = ACTIONS(8130), + [anon_sym_AMP] = ACTIONS(8132), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8134), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8136), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(8138), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(8146), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3440)] = { + [sym_as_type_clause] = STATE(4031), + [sym_identifier] = ACTIONS(8148), + [sym_newline] = ACTIONS(8150), + [anon_sym_COLON] = ACTIONS(8150), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8148), + [aux_sym_frm_property_statement_token1] = ACTIONS(8148), + [anon_sym_DOT] = ACTIONS(8148), + [anon_sym_BANG] = ACTIONS(8150), + [aux_sym__attribute_identifier_token1] = ACTIONS(8148), + [aux_sym_option_statement_token3] = ACTIONS(8148), + [aux_sym_type_declaration_token1] = ACTIONS(8148), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8148), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8148), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8148), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8148), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8148), + [aux_sym_enum_declaration_token1] = ACTIONS(8148), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8148), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8148), + [aux_sym_declare_function_statement_token1] = ACTIONS(8148), + [aux_sym_preprocessor_const_token1] = ACTIONS(8148), + [aux_sym__property_get_header_token1] = ACTIONS(8148), + [aux_sym_event_declaration_token1] = ACTIONS(8148), + [sym_static_modifier] = ACTIONS(8148), + [sym__dim_keyword] = ACTIONS(8148), + [sym__redim_keyword] = ACTIONS(8148), + [aux_sym_get_accessor_token1] = ACTIONS(8148), + [aux_sym_set_accessor_token1] = ACTIONS(8148), + [aux_sym_const_declaration_token1] = ACTIONS(8148), + [anon_sym_LPAREN] = ACTIONS(8150), + [aux_sym_as_type_clause_token1] = ACTIONS(7428), + [aux_sym_as_type_clause_token2] = ACTIONS(8148), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8148), + [aux_sym_visibility_token1] = ACTIONS(8148), + [aux_sym_visibility_token2] = ACTIONS(8148), + [aux_sym_elseif_fragment_token1] = ACTIONS(8148), + [aux_sym_else_fragment_token1] = ACTIONS(8148), + [aux_sym_select_statement_token1] = ACTIONS(8148), + [aux_sym__for_header_token1] = ACTIONS(8148), + [aux_sym_do_statement_token1] = ACTIONS(8148), + [aux_sym_do_condition_token1] = ACTIONS(8148), + [aux_sym_with_statement_token1] = ACTIONS(8148), + [aux_sym_exit_statement_token1] = ACTIONS(8148), + [sym_end_statement] = ACTIONS(8150), + [aux_sym_on_goto_statement_token1] = ACTIONS(8148), + [aux_sym_on_goto_statement_token2] = ACTIONS(8148), + [aux_sym_on_error_statement_token2] = ACTIONS(8148), + [sym__ambiguous_redim_statement] = ACTIONS(8150), + [aux_sym_erase_statement_token1] = ACTIONS(8148), + [aux_sym_open_statement_token1] = ACTIONS(8148), + [aux_sym_file_mode_token2] = ACTIONS(8148), + [aux_sym_file_access_token2] = ACTIONS(8148), + [aux_sym_file_lock_token2] = ACTIONS(8148), + [aux_sym_print_statement_token1] = ACTIONS(8148), + [anon_sym_PLUS] = ACTIONS(8150), + [anon_sym_DASH] = ACTIONS(8148), + [anon_sym_QMARK] = ACTIONS(8150), + [aux_sym_close_statement_token1] = ACTIONS(8148), + [aux_sym_put_statement_token1] = ACTIONS(8148), + [aux_sym_unlock_statement_token1] = ACTIONS(8148), + [aux_sym_seek_statement_token1] = ACTIONS(8148), + [sym_reset_statement] = ACTIONS(8148), + [aux_sym_raise_event_statement_token1] = ACTIONS(8148), + [sym_stop_statement] = ACTIONS(8148), + [sym_beep_statement] = ACTIONS(8148), + [aux_sym_unload_statement_token1] = ACTIONS(8148), + [aux_sym_def_type_statement_token1] = ACTIONS(8148), + [aux_sym_def_type_statement_token2] = ACTIONS(8148), + [aux_sym_def_type_statement_token3] = ACTIONS(8148), + [aux_sym_def_type_statement_token4] = ACTIONS(8148), + [aux_sym_def_type_statement_token5] = ACTIONS(8148), + [aux_sym_def_type_statement_token6] = ACTIONS(8148), + [aux_sym_def_type_statement_token7] = ACTIONS(8148), + [aux_sym_def_type_statement_token8] = ACTIONS(8148), + [aux_sym_def_type_statement_token9] = ACTIONS(8148), + [aux_sym_def_type_statement_token10] = ACTIONS(8148), + [aux_sym_def_type_statement_token11] = ACTIONS(8148), + [aux_sym_def_type_statement_token12] = ACTIONS(8148), + [aux_sym_def_type_statement_token13] = ACTIONS(8148), + [aux_sym_def_type_statement_token14] = ACTIONS(8148), + [aux_sym_call_statement_token1] = ACTIONS(8148), + [sym__ambiguous_call_statement] = ACTIONS(8148), + [aux_sym_addressof_expression_token1] = ACTIONS(8148), + [aux_sym_type_of_expression_token1] = ACTIONS(8148), + [aux_sym_unary_expression_token1] = ACTIONS(8148), + [sym_string_literal] = ACTIONS(8150), + [sym_number_literal] = ACTIONS(8150), + [aux_sym_boolean_literal_token1] = ACTIONS(8148), + [aux_sym_boolean_literal_token2] = ACTIONS(8148), + [sym_nothing_literal] = ACTIONS(8148), + [sym_null_literal] = ACTIONS(8148), + [sym_empty_literal] = ACTIONS(8148), + [sym_date_literal] = ACTIONS(8150), + [anon_sym_POUND] = ACTIONS(8148), + }, + [STATE(3441)] = { + [sym_char_position] = STATE(366), + [aux_sym_output_list_repeat1] = STATE(3492), + [sym_identifier] = ACTIONS(7631), + [sym_newline] = ACTIONS(7633), + [anon_sym_COLON] = ACTIONS(7633), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7631), + [aux_sym_frm_property_statement_token1] = ACTIONS(7631), + [anon_sym_DOT] = ACTIONS(7631), + [anon_sym_BANG] = ACTIONS(7633), + [aux_sym__attribute_identifier_token1] = ACTIONS(7631), + [aux_sym_option_statement_token3] = ACTIONS(7631), + [aux_sym_type_declaration_token1] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7631), + [aux_sym_enum_declaration_token1] = ACTIONS(7631), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7631), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7631), + [aux_sym_declare_function_statement_token1] = ACTIONS(7631), + [aux_sym_preprocessor_const_token1] = ACTIONS(7631), + [aux_sym__property_get_header_token1] = ACTIONS(7631), + [aux_sym_event_declaration_token1] = ACTIONS(7631), + [sym_static_modifier] = ACTIONS(7631), + [sym__dim_keyword] = ACTIONS(7631), + [sym__redim_keyword] = ACTIONS(7631), + [aux_sym_get_accessor_token1] = ACTIONS(7631), + [aux_sym_set_accessor_token1] = ACTIONS(7631), + [anon_sym_COMMA] = ACTIONS(8152), + [aux_sym_const_declaration_token1] = ACTIONS(7631), + [anon_sym_LPAREN] = ACTIONS(7633), + [aux_sym_as_type_clause_token2] = ACTIONS(7631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7631), + [aux_sym_visibility_token1] = ACTIONS(7631), + [aux_sym_visibility_token2] = ACTIONS(7631), + [aux_sym_elseif_fragment_token1] = ACTIONS(7631), + [aux_sym_else_fragment_token1] = ACTIONS(7631), + [aux_sym_select_statement_token1] = ACTIONS(7631), + [aux_sym__for_header_token1] = ACTIONS(7631), + [aux_sym_do_statement_token1] = ACTIONS(7631), + [aux_sym_do_condition_token1] = ACTIONS(7631), + [aux_sym_with_statement_token1] = ACTIONS(7631), + [aux_sym_exit_statement_token1] = ACTIONS(7631), + [sym_end_statement] = ACTIONS(7633), + [aux_sym_on_goto_statement_token1] = ACTIONS(7631), + [aux_sym_on_goto_statement_token2] = ACTIONS(7631), + [aux_sym_on_error_statement_token2] = ACTIONS(7631), + [sym__ambiguous_redim_statement] = ACTIONS(7633), + [aux_sym_erase_statement_token1] = ACTIONS(7631), + [aux_sym_open_statement_token1] = ACTIONS(7631), + [aux_sym_file_mode_token2] = ACTIONS(7631), + [aux_sym_file_access_token2] = ACTIONS(7631), + [aux_sym_file_lock_token2] = ACTIONS(7631), + [aux_sym_print_statement_token1] = ACTIONS(7631), + [anon_sym_PLUS] = ACTIONS(7633), + [anon_sym_DASH] = ACTIONS(7631), + [anon_sym_SEMI] = ACTIONS(8152), + [anon_sym_QMARK] = ACTIONS(7633), + [aux_sym_close_statement_token1] = ACTIONS(7631), + [aux_sym_put_statement_token1] = ACTIONS(7631), + [aux_sym_unlock_statement_token1] = ACTIONS(7631), + [aux_sym_seek_statement_token1] = ACTIONS(7631), + [sym_reset_statement] = ACTIONS(7631), + [aux_sym_raise_event_statement_token1] = ACTIONS(7631), + [sym_stop_statement] = ACTIONS(7631), + [sym_beep_statement] = ACTIONS(7631), + [aux_sym_unload_statement_token1] = ACTIONS(7631), + [aux_sym_def_type_statement_token1] = ACTIONS(7631), + [aux_sym_def_type_statement_token2] = ACTIONS(7631), + [aux_sym_def_type_statement_token3] = ACTIONS(7631), + [aux_sym_def_type_statement_token4] = ACTIONS(7631), + [aux_sym_def_type_statement_token5] = ACTIONS(7631), + [aux_sym_def_type_statement_token6] = ACTIONS(7631), + [aux_sym_def_type_statement_token7] = ACTIONS(7631), + [aux_sym_def_type_statement_token8] = ACTIONS(7631), + [aux_sym_def_type_statement_token9] = ACTIONS(7631), + [aux_sym_def_type_statement_token10] = ACTIONS(7631), + [aux_sym_def_type_statement_token11] = ACTIONS(7631), + [aux_sym_def_type_statement_token12] = ACTIONS(7631), + [aux_sym_def_type_statement_token13] = ACTIONS(7631), + [aux_sym_def_type_statement_token14] = ACTIONS(7631), + [aux_sym_call_statement_token1] = ACTIONS(7631), + [sym__ambiguous_call_statement] = ACTIONS(7631), + [aux_sym_addressof_expression_token1] = ACTIONS(7631), + [aux_sym_type_of_expression_token1] = ACTIONS(7631), + [aux_sym_unary_expression_token1] = ACTIONS(7631), + [sym_string_literal] = ACTIONS(7633), + [sym_number_literal] = ACTIONS(7633), + [aux_sym_boolean_literal_token1] = ACTIONS(7631), + [aux_sym_boolean_literal_token2] = ACTIONS(7631), + [sym_nothing_literal] = ACTIONS(7631), + [sym_null_literal] = ACTIONS(7631), + [sym_empty_literal] = ACTIONS(7631), + [sym_date_literal] = ACTIONS(7633), + [anon_sym_POUND] = ACTIONS(7631), + }, + [STATE(3442)] = { + [aux_sym_variable_declaration_repeat1] = STATE(3521), + [sym_identifier] = ACTIONS(8154), + [sym_newline] = ACTIONS(8156), + [anon_sym_COLON] = ACTIONS(8156), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8154), + [aux_sym_frm_property_statement_token1] = ACTIONS(8154), + [anon_sym_DOT] = ACTIONS(8154), + [anon_sym_BANG] = ACTIONS(8156), + [aux_sym__attribute_identifier_token1] = ACTIONS(8154), + [aux_sym_option_statement_token3] = ACTIONS(8154), + [aux_sym_type_declaration_token1] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8154), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8154), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8154), + [aux_sym_enum_declaration_token1] = ACTIONS(8154), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8154), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8154), + [aux_sym_declare_function_statement_token1] = ACTIONS(8154), + [aux_sym_preprocessor_const_token1] = ACTIONS(8154), + [aux_sym__property_get_header_token1] = ACTIONS(8154), + [aux_sym_event_declaration_token1] = ACTIONS(8154), + [sym_static_modifier] = ACTIONS(8154), + [sym__dim_keyword] = ACTIONS(8154), + [sym__redim_keyword] = ACTIONS(8154), + [aux_sym_get_accessor_token1] = ACTIONS(8154), + [aux_sym_set_accessor_token1] = ACTIONS(8154), + [anon_sym_COMMA] = ACTIONS(8099), + [aux_sym_const_declaration_token1] = ACTIONS(8154), + [anon_sym_LPAREN] = ACTIONS(8156), + [aux_sym_as_type_clause_token2] = ACTIONS(8154), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8154), + [aux_sym_visibility_token1] = ACTIONS(8154), + [aux_sym_visibility_token2] = ACTIONS(8154), + [aux_sym_elseif_fragment_token1] = ACTIONS(8154), + [aux_sym_else_fragment_token1] = ACTIONS(8154), + [aux_sym_select_statement_token1] = ACTIONS(8154), + [aux_sym__for_header_token1] = ACTIONS(8154), + [aux_sym_do_statement_token1] = ACTIONS(8154), + [aux_sym_do_condition_token1] = ACTIONS(8154), + [aux_sym_with_statement_token1] = ACTIONS(8154), + [aux_sym_exit_statement_token1] = ACTIONS(8154), + [sym_end_statement] = ACTIONS(8156), + [aux_sym_on_goto_statement_token1] = ACTIONS(8154), + [aux_sym_on_goto_statement_token2] = ACTIONS(8154), + [aux_sym_on_error_statement_token2] = ACTIONS(8154), + [sym__ambiguous_redim_statement] = ACTIONS(8156), + [aux_sym_erase_statement_token1] = ACTIONS(8154), + [aux_sym_open_statement_token1] = ACTIONS(8154), + [aux_sym_file_mode_token2] = ACTIONS(8154), + [aux_sym_file_access_token2] = ACTIONS(8154), + [aux_sym_file_lock_token2] = ACTIONS(8154), + [aux_sym_print_statement_token1] = ACTIONS(8154), + [anon_sym_PLUS] = ACTIONS(8156), + [anon_sym_DASH] = ACTIONS(8154), + [anon_sym_QMARK] = ACTIONS(8156), + [aux_sym_close_statement_token1] = ACTIONS(8154), + [aux_sym_put_statement_token1] = ACTIONS(8154), + [aux_sym_unlock_statement_token1] = ACTIONS(8154), + [aux_sym_seek_statement_token1] = ACTIONS(8154), + [sym_reset_statement] = ACTIONS(8154), + [aux_sym_raise_event_statement_token1] = ACTIONS(8154), + [sym_stop_statement] = ACTIONS(8154), + [sym_beep_statement] = ACTIONS(8154), + [aux_sym_unload_statement_token1] = ACTIONS(8154), + [aux_sym_def_type_statement_token1] = ACTIONS(8154), + [aux_sym_def_type_statement_token2] = ACTIONS(8154), + [aux_sym_def_type_statement_token3] = ACTIONS(8154), + [aux_sym_def_type_statement_token4] = ACTIONS(8154), + [aux_sym_def_type_statement_token5] = ACTIONS(8154), + [aux_sym_def_type_statement_token6] = ACTIONS(8154), + [aux_sym_def_type_statement_token7] = ACTIONS(8154), + [aux_sym_def_type_statement_token8] = ACTIONS(8154), + [aux_sym_def_type_statement_token9] = ACTIONS(8154), + [aux_sym_def_type_statement_token10] = ACTIONS(8154), + [aux_sym_def_type_statement_token11] = ACTIONS(8154), + [aux_sym_def_type_statement_token12] = ACTIONS(8154), + [aux_sym_def_type_statement_token13] = ACTIONS(8154), + [aux_sym_def_type_statement_token14] = ACTIONS(8154), + [aux_sym_call_statement_token1] = ACTIONS(8154), + [sym__ambiguous_call_statement] = ACTIONS(8154), + [aux_sym_addressof_expression_token1] = ACTIONS(8154), + [aux_sym_type_of_expression_token1] = ACTIONS(8154), + [aux_sym_unary_expression_token1] = ACTIONS(8154), + [sym_string_literal] = ACTIONS(8156), + [sym_number_literal] = ACTIONS(8156), + [aux_sym_boolean_literal_token1] = ACTIONS(8154), + [aux_sym_boolean_literal_token2] = ACTIONS(8154), + [sym_nothing_literal] = ACTIONS(8154), + [sym_null_literal] = ACTIONS(8154), + [sym_empty_literal] = ACTIONS(8154), + [sym_date_literal] = ACTIONS(8156), + [anon_sym_POUND] = ACTIONS(8154), + }, + [STATE(3443)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3444)] = { + [sym_identifier] = ACTIONS(6621), + [sym_newline] = ACTIONS(6623), + [anon_sym_COLON] = ACTIONS(6623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6621), + [aux_sym_frm_property_statement_token1] = ACTIONS(6621), + [anon_sym_DOT] = ACTIONS(6621), + [anon_sym_BANG] = ACTIONS(6623), + [aux_sym__attribute_identifier_token1] = ACTIONS(6621), + [aux_sym_option_statement_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6621), + [aux_sym_preprocessor_const_token1] = ACTIONS(6621), + [sym_static_modifier] = ACTIONS(6621), + [sym__dim_keyword] = ACTIONS(6621), + [sym__redim_keyword] = ACTIONS(6621), + [aux_sym_get_accessor_token1] = ACTIONS(6621), + [aux_sym_set_accessor_token1] = ACTIONS(6621), + [aux_sym_const_declaration_token1] = ACTIONS(6621), + [anon_sym_LPAREN] = ACTIONS(6623), + [aux_sym_as_type_clause_token2] = ACTIONS(6621), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6621), + [aux_sym_visibility_token1] = ACTIONS(6621), + [aux_sym_visibility_token2] = ACTIONS(6621), + [aux_sym_elseif_fragment_token1] = ACTIONS(6621), + [aux_sym_else_fragment_token1] = ACTIONS(6621), + [aux_sym_select_statement_token1] = ACTIONS(6621), + [aux_sym__for_header_token1] = ACTIONS(6621), + [aux_sym_do_statement_token1] = ACTIONS(6621), + [aux_sym_do_statement_token2] = ACTIONS(6621), + [aux_sym_do_condition_token1] = ACTIONS(6621), + [aux_sym_with_statement_token1] = ACTIONS(6621), + [aux_sym_exit_statement_token1] = ACTIONS(6621), + [sym_end_statement] = ACTIONS(6623), + [aux_sym_on_goto_statement_token1] = ACTIONS(6621), + [aux_sym_on_goto_statement_token2] = ACTIONS(6621), + [aux_sym_on_error_statement_token2] = ACTIONS(6621), + [sym__ambiguous_redim_statement] = ACTIONS(6623), + [aux_sym_erase_statement_token1] = ACTIONS(6621), + [aux_sym_open_statement_token1] = ACTIONS(6621), + [aux_sym_file_mode_token2] = ACTIONS(6621), + [aux_sym_file_access_token2] = ACTIONS(6621), + [aux_sym_file_lock_token2] = ACTIONS(6621), + [aux_sym_print_statement_token1] = ACTIONS(6621), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6079), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6081), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6083), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6085), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6087), + [anon_sym_QMARK] = ACTIONS(6623), + [aux_sym_close_statement_token1] = ACTIONS(6621), + [aux_sym_put_statement_token1] = ACTIONS(6621), + [aux_sym_unlock_statement_token1] = ACTIONS(6621), + [aux_sym_seek_statement_token1] = ACTIONS(6621), + [sym_reset_statement] = ACTIONS(6621), + [aux_sym_raise_event_statement_token1] = ACTIONS(6621), + [sym_stop_statement] = ACTIONS(6621), + [sym_beep_statement] = ACTIONS(6621), + [aux_sym_unload_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token2] = ACTIONS(6621), + [aux_sym_def_type_statement_token3] = ACTIONS(6621), + [aux_sym_def_type_statement_token4] = ACTIONS(6621), + [aux_sym_def_type_statement_token5] = ACTIONS(6621), + [aux_sym_def_type_statement_token6] = ACTIONS(6621), + [aux_sym_def_type_statement_token7] = ACTIONS(6621), + [aux_sym_def_type_statement_token8] = ACTIONS(6621), + [aux_sym_def_type_statement_token9] = ACTIONS(6621), + [aux_sym_def_type_statement_token10] = ACTIONS(6621), + [aux_sym_def_type_statement_token11] = ACTIONS(6621), + [aux_sym_def_type_statement_token12] = ACTIONS(6621), + [aux_sym_def_type_statement_token13] = ACTIONS(6621), + [aux_sym_def_type_statement_token14] = ACTIONS(6621), + [aux_sym_call_statement_token1] = ACTIONS(6621), + [sym__ambiguous_call_statement] = ACTIONS(6621), + [aux_sym_addressof_expression_token1] = ACTIONS(6621), + [aux_sym_type_of_expression_token1] = ACTIONS(6621), + [aux_sym_unary_expression_token1] = ACTIONS(6621), + [sym_string_literal] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [aux_sym_boolean_literal_token1] = ACTIONS(6621), + [aux_sym_boolean_literal_token2] = ACTIONS(6621), + [sym_nothing_literal] = ACTIONS(6621), + [sym_null_literal] = ACTIONS(6621), + [sym_empty_literal] = ACTIONS(6621), + [sym_date_literal] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6621), + }, + [STATE(3445)] = { + [sym_identifier] = ACTIONS(7640), + [sym_newline] = ACTIONS(7642), + [anon_sym_COLON] = ACTIONS(7642), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7640), + [aux_sym_frm_property_statement_token1] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7640), + [anon_sym_BANG] = ACTIONS(7642), + [aux_sym__attribute_identifier_token1] = ACTIONS(7640), + [aux_sym_option_statement_token3] = ACTIONS(7640), + [aux_sym_type_declaration_token1] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7640), + [aux_sym_enum_declaration_token1] = ACTIONS(7640), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7640), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7640), + [aux_sym_declare_function_statement_token1] = ACTIONS(7640), + [aux_sym_preprocessor_const_token1] = ACTIONS(7640), + [aux_sym__property_get_header_token1] = ACTIONS(7640), + [aux_sym_event_declaration_token1] = ACTIONS(7640), + [sym_static_modifier] = ACTIONS(7640), + [sym__dim_keyword] = ACTIONS(7640), + [sym__redim_keyword] = ACTIONS(7640), + [aux_sym_get_accessor_token1] = ACTIONS(7640), + [aux_sym_set_accessor_token1] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7642), + [aux_sym_const_declaration_token1] = ACTIONS(7640), + [anon_sym_LPAREN] = ACTIONS(7642), + [aux_sym_as_type_clause_token2] = ACTIONS(7640), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7640), + [aux_sym_visibility_token1] = ACTIONS(7640), + [aux_sym_visibility_token2] = ACTIONS(7640), + [aux_sym_elseif_fragment_token1] = ACTIONS(7640), + [aux_sym_else_fragment_token1] = ACTIONS(7640), + [aux_sym_select_statement_token1] = ACTIONS(7640), + [aux_sym__for_header_token1] = ACTIONS(7640), + [aux_sym_do_statement_token1] = ACTIONS(7640), + [aux_sym_do_condition_token1] = ACTIONS(7640), + [aux_sym_with_statement_token1] = ACTIONS(7640), + [aux_sym_exit_statement_token1] = ACTIONS(7640), + [sym_end_statement] = ACTIONS(7642), + [aux_sym_on_goto_statement_token1] = ACTIONS(7640), + [aux_sym_on_goto_statement_token2] = ACTIONS(7640), + [aux_sym_on_error_statement_token2] = ACTIONS(7640), + [sym__ambiguous_redim_statement] = ACTIONS(7642), + [aux_sym_erase_statement_token1] = ACTIONS(7640), + [aux_sym_open_statement_token1] = ACTIONS(7640), + [aux_sym_file_mode_token2] = ACTIONS(7640), + [aux_sym_file_access_token2] = ACTIONS(7640), + [aux_sym_file_lock_token2] = ACTIONS(7640), + [aux_sym_print_statement_token1] = ACTIONS(7640), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_DASH] = ACTIONS(7640), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8101), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8103), + [anon_sym_SEMI] = ACTIONS(7642), + [anon_sym_QMARK] = ACTIONS(7642), + [aux_sym_close_statement_token1] = ACTIONS(7640), + [aux_sym_put_statement_token1] = ACTIONS(7640), + [aux_sym_unlock_statement_token1] = ACTIONS(7640), + [aux_sym_seek_statement_token1] = ACTIONS(7640), + [sym_reset_statement] = ACTIONS(7640), + [aux_sym_raise_event_statement_token1] = ACTIONS(7640), + [sym_stop_statement] = ACTIONS(7640), + [sym_beep_statement] = ACTIONS(7640), + [aux_sym_unload_statement_token1] = ACTIONS(7640), + [aux_sym_def_type_statement_token1] = ACTIONS(7640), + [aux_sym_def_type_statement_token2] = ACTIONS(7640), + [aux_sym_def_type_statement_token3] = ACTIONS(7640), + [aux_sym_def_type_statement_token4] = ACTIONS(7640), + [aux_sym_def_type_statement_token5] = ACTIONS(7640), + [aux_sym_def_type_statement_token6] = ACTIONS(7640), + [aux_sym_def_type_statement_token7] = ACTIONS(7640), + [aux_sym_def_type_statement_token8] = ACTIONS(7640), + [aux_sym_def_type_statement_token9] = ACTIONS(7640), + [aux_sym_def_type_statement_token10] = ACTIONS(7640), + [aux_sym_def_type_statement_token11] = ACTIONS(7640), + [aux_sym_def_type_statement_token12] = ACTIONS(7640), + [aux_sym_def_type_statement_token13] = ACTIONS(7640), + [aux_sym_def_type_statement_token14] = ACTIONS(7640), + [aux_sym_call_statement_token1] = ACTIONS(7640), + [sym__ambiguous_call_statement] = ACTIONS(7640), + [aux_sym_addressof_expression_token1] = ACTIONS(7640), + [aux_sym_type_of_expression_token1] = ACTIONS(7640), + [aux_sym_unary_expression_token1] = ACTIONS(7640), + [sym_string_literal] = ACTIONS(7642), + [sym_number_literal] = ACTIONS(7642), + [aux_sym_boolean_literal_token1] = ACTIONS(7640), + [aux_sym_boolean_literal_token2] = ACTIONS(7640), + [sym_nothing_literal] = ACTIONS(7640), + [sym_null_literal] = ACTIONS(7640), + [sym_empty_literal] = ACTIONS(7640), + [sym_date_literal] = ACTIONS(7642), + [anon_sym_POUND] = ACTIONS(7640), + }, + [STATE(3446)] = { + [sym_identifier] = ACTIONS(6617), + [sym_newline] = ACTIONS(6619), + [anon_sym_COLON] = ACTIONS(6619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6617), + [aux_sym_frm_property_statement_token1] = ACTIONS(6617), + [anon_sym_DOT] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(6619), + [aux_sym__attribute_identifier_token1] = ACTIONS(6617), + [aux_sym_option_statement_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6617), + [aux_sym_preprocessor_const_token1] = ACTIONS(6617), + [sym_static_modifier] = ACTIONS(6617), + [sym__dim_keyword] = ACTIONS(6617), + [sym__redim_keyword] = ACTIONS(6617), + [aux_sym_get_accessor_token1] = ACTIONS(6617), + [aux_sym_set_accessor_token1] = ACTIONS(6617), + [aux_sym_const_declaration_token1] = ACTIONS(6617), + [anon_sym_LPAREN] = ACTIONS(6619), + [aux_sym_as_type_clause_token2] = ACTIONS(6617), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6617), + [aux_sym_visibility_token1] = ACTIONS(6617), + [aux_sym_visibility_token2] = ACTIONS(6617), + [aux_sym_elseif_fragment_token1] = ACTIONS(6617), + [aux_sym_else_fragment_token1] = ACTIONS(6617), + [aux_sym_select_statement_token1] = ACTIONS(6617), + [aux_sym_select_statement_token2] = ACTIONS(6617), + [aux_sym__for_header_token1] = ACTIONS(6617), + [aux_sym_do_statement_token1] = ACTIONS(6617), + [aux_sym_do_condition_token1] = ACTIONS(6617), + [aux_sym_with_statement_token1] = ACTIONS(6617), + [aux_sym_exit_statement_token1] = ACTIONS(6617), + [sym_end_statement] = ACTIONS(6619), + [aux_sym_on_goto_statement_token1] = ACTIONS(6617), + [aux_sym_on_goto_statement_token2] = ACTIONS(6617), + [aux_sym_on_error_statement_token2] = ACTIONS(6617), + [sym__ambiguous_redim_statement] = ACTIONS(6619), + [aux_sym_erase_statement_token1] = ACTIONS(6617), + [aux_sym_open_statement_token1] = ACTIONS(6617), + [aux_sym_file_mode_token2] = ACTIONS(6617), + [aux_sym_file_access_token2] = ACTIONS(6617), + [aux_sym_file_lock_token2] = ACTIONS(6617), + [aux_sym_print_statement_token1] = ACTIONS(6617), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7306), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7308), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6061), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6063), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6065), + [anon_sym_QMARK] = ACTIONS(6619), + [aux_sym_close_statement_token1] = ACTIONS(6617), + [aux_sym_put_statement_token1] = ACTIONS(6617), + [aux_sym_unlock_statement_token1] = ACTIONS(6617), + [aux_sym_seek_statement_token1] = ACTIONS(6617), + [sym_reset_statement] = ACTIONS(6617), + [aux_sym_raise_event_statement_token1] = ACTIONS(6617), + [sym_stop_statement] = ACTIONS(6617), + [sym_beep_statement] = ACTIONS(6617), + [aux_sym_unload_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token2] = ACTIONS(6617), + [aux_sym_def_type_statement_token3] = ACTIONS(6617), + [aux_sym_def_type_statement_token4] = ACTIONS(6617), + [aux_sym_def_type_statement_token5] = ACTIONS(6617), + [aux_sym_def_type_statement_token6] = ACTIONS(6617), + [aux_sym_def_type_statement_token7] = ACTIONS(6617), + [aux_sym_def_type_statement_token8] = ACTIONS(6617), + [aux_sym_def_type_statement_token9] = ACTIONS(6617), + [aux_sym_def_type_statement_token10] = ACTIONS(6617), + [aux_sym_def_type_statement_token11] = ACTIONS(6617), + [aux_sym_def_type_statement_token12] = ACTIONS(6617), + [aux_sym_def_type_statement_token13] = ACTIONS(6617), + [aux_sym_def_type_statement_token14] = ACTIONS(6617), + [aux_sym_call_statement_token1] = ACTIONS(6617), + [sym__ambiguous_call_statement] = ACTIONS(6617), + [aux_sym_addressof_expression_token1] = ACTIONS(6617), + [aux_sym_type_of_expression_token1] = ACTIONS(6617), + [aux_sym_unary_expression_token1] = ACTIONS(6617), + [sym_string_literal] = ACTIONS(6619), + [sym_number_literal] = ACTIONS(6619), + [aux_sym_boolean_literal_token1] = ACTIONS(6617), + [aux_sym_boolean_literal_token2] = ACTIONS(6617), + [sym_nothing_literal] = ACTIONS(6617), + [sym_null_literal] = ACTIONS(6617), + [sym_empty_literal] = ACTIONS(6617), + [sym_date_literal] = ACTIONS(6619), + [anon_sym_POUND] = ACTIONS(6617), + }, + [STATE(3447)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_array_bound_token1] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(3448)] = { + [sym_identifier] = ACTIONS(6617), + [sym_newline] = ACTIONS(6619), + [anon_sym_COLON] = ACTIONS(6619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6617), + [aux_sym_frm_property_statement_token1] = ACTIONS(6617), + [anon_sym_DOT] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(6619), + [aux_sym__attribute_identifier_token1] = ACTIONS(6617), + [aux_sym_option_statement_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6617), + [aux_sym_preprocessor_const_token1] = ACTIONS(6617), + [sym_static_modifier] = ACTIONS(6617), + [sym__dim_keyword] = ACTIONS(6617), + [sym__redim_keyword] = ACTIONS(6617), + [aux_sym_get_accessor_token1] = ACTIONS(6617), + [aux_sym_set_accessor_token1] = ACTIONS(6617), + [aux_sym_const_declaration_token1] = ACTIONS(6617), + [anon_sym_LPAREN] = ACTIONS(6619), + [aux_sym_as_type_clause_token2] = ACTIONS(6617), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6617), + [aux_sym_visibility_token1] = ACTIONS(6617), + [aux_sym_visibility_token2] = ACTIONS(6617), + [aux_sym_elseif_fragment_token1] = ACTIONS(6617), + [aux_sym_else_fragment_token1] = ACTIONS(6617), + [aux_sym_select_statement_token1] = ACTIONS(6617), + [aux_sym__for_header_token1] = ACTIONS(6617), + [aux_sym_do_statement_token1] = ACTIONS(6617), + [aux_sym_do_condition_token1] = ACTIONS(6617), + [aux_sym_with_statement_token1] = ACTIONS(6617), + [aux_sym_exit_statement_token1] = ACTIONS(6617), + [sym_end_statement] = ACTIONS(6619), + [aux_sym_on_goto_statement_token1] = ACTIONS(6617), + [aux_sym_on_goto_statement_token2] = ACTIONS(6617), + [aux_sym_on_error_statement_token2] = ACTIONS(6617), + [sym__ambiguous_redim_statement] = ACTIONS(6619), + [aux_sym_erase_statement_token1] = ACTIONS(6617), + [aux_sym_open_statement_token1] = ACTIONS(6617), + [aux_sym_file_mode_token2] = ACTIONS(6617), + [aux_sym_file_access_token2] = ACTIONS(6617), + [aux_sym_file_lock_token2] = ACTIONS(6617), + [aux_sym_print_statement_token1] = ACTIONS(6617), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7331), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7333), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5891), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5893), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6190), + [anon_sym_QMARK] = ACTIONS(6619), + [aux_sym_close_statement_token1] = ACTIONS(6617), + [aux_sym_put_statement_token1] = ACTIONS(6617), + [aux_sym_unlock_statement_token1] = ACTIONS(6617), + [aux_sym_seek_statement_token1] = ACTIONS(6617), + [sym_reset_statement] = ACTIONS(6617), + [aux_sym_raise_event_statement_token1] = ACTIONS(6617), + [sym_stop_statement] = ACTIONS(6617), + [sym_beep_statement] = ACTIONS(6617), + [aux_sym_unload_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token2] = ACTIONS(6617), + [aux_sym_def_type_statement_token3] = ACTIONS(6617), + [aux_sym_def_type_statement_token4] = ACTIONS(6617), + [aux_sym_def_type_statement_token5] = ACTIONS(6617), + [aux_sym_def_type_statement_token6] = ACTIONS(6617), + [aux_sym_def_type_statement_token7] = ACTIONS(6617), + [aux_sym_def_type_statement_token8] = ACTIONS(6617), + [aux_sym_def_type_statement_token9] = ACTIONS(6617), + [aux_sym_def_type_statement_token10] = ACTIONS(6617), + [aux_sym_def_type_statement_token11] = ACTIONS(6617), + [aux_sym_def_type_statement_token12] = ACTIONS(6617), + [aux_sym_def_type_statement_token13] = ACTIONS(6617), + [aux_sym_def_type_statement_token14] = ACTIONS(6617), + [aux_sym_call_statement_token1] = ACTIONS(6617), + [sym__ambiguous_call_statement] = ACTIONS(6617), + [aux_sym_addressof_expression_token1] = ACTIONS(6617), + [aux_sym_type_of_expression_token1] = ACTIONS(6617), + [aux_sym_unary_expression_token1] = ACTIONS(6617), + [sym_string_literal] = ACTIONS(6619), + [sym_number_literal] = ACTIONS(6619), + [aux_sym_boolean_literal_token1] = ACTIONS(6617), + [aux_sym_boolean_literal_token2] = ACTIONS(6617), + [sym_nothing_literal] = ACTIONS(6617), + [sym_null_literal] = ACTIONS(6617), + [sym_empty_literal] = ACTIONS(6617), + [sym_date_literal] = ACTIONS(6619), + [anon_sym_POUND] = ACTIONS(6617), + }, + [STATE(3449)] = { + [sym_identifier] = ACTIONS(6324), + [sym_newline] = ACTIONS(6326), + [anon_sym_COLON] = ACTIONS(6326), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6324), + [aux_sym_frm_property_statement_token1] = ACTIONS(6324), + [anon_sym_DOT] = ACTIONS(6324), + [anon_sym_BANG] = ACTIONS(6326), + [aux_sym__attribute_identifier_token1] = ACTIONS(6324), + [aux_sym_option_statement_token3] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6324), + [aux_sym_preprocessor_const_token1] = ACTIONS(6324), + [sym_static_modifier] = ACTIONS(6324), + [sym__dim_keyword] = ACTIONS(6324), + [sym__redim_keyword] = ACTIONS(6324), + [aux_sym_get_accessor_token1] = ACTIONS(6324), + [aux_sym_set_accessor_token1] = ACTIONS(6324), + [aux_sym_const_declaration_token1] = ACTIONS(6324), + [anon_sym_LPAREN] = ACTIONS(6326), + [aux_sym_as_type_clause_token2] = ACTIONS(6324), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6324), + [aux_sym_visibility_token1] = ACTIONS(6324), + [aux_sym_visibility_token2] = ACTIONS(6324), + [aux_sym_elseif_fragment_token1] = ACTIONS(6324), + [aux_sym_else_fragment_token1] = ACTIONS(6324), + [aux_sym_select_statement_token1] = ACTIONS(6324), + [aux_sym__for_header_token1] = ACTIONS(6324), + [aux_sym_do_statement_token1] = ACTIONS(6324), + [aux_sym_do_condition_token1] = ACTIONS(6324), + [aux_sym_while_statement_token1] = ACTIONS(6324), + [aux_sym_with_statement_token1] = ACTIONS(6324), + [aux_sym_exit_statement_token1] = ACTIONS(6324), + [sym_end_statement] = ACTIONS(6326), + [aux_sym_on_goto_statement_token1] = ACTIONS(6324), + [aux_sym_on_goto_statement_token2] = ACTIONS(6324), + [aux_sym_on_error_statement_token2] = ACTIONS(6324), + [sym__ambiguous_redim_statement] = ACTIONS(6326), + [aux_sym_erase_statement_token1] = ACTIONS(6324), + [aux_sym_open_statement_token1] = ACTIONS(6324), + [aux_sym_file_mode_token2] = ACTIONS(6324), + [aux_sym_file_access_token2] = ACTIONS(6324), + [aux_sym_file_lock_token2] = ACTIONS(6324), + [aux_sym_print_statement_token1] = ACTIONS(6324), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_QMARK] = ACTIONS(6326), + [aux_sym_close_statement_token1] = ACTIONS(6324), + [aux_sym_put_statement_token1] = ACTIONS(6324), + [aux_sym_unlock_statement_token1] = ACTIONS(6324), + [aux_sym_seek_statement_token1] = ACTIONS(6324), + [sym_reset_statement] = ACTIONS(6324), + [aux_sym_raise_event_statement_token1] = ACTIONS(6324), + [sym_stop_statement] = ACTIONS(6324), + [sym_beep_statement] = ACTIONS(6324), + [aux_sym_unload_statement_token1] = ACTIONS(6324), + [aux_sym_def_type_statement_token1] = ACTIONS(6324), + [aux_sym_def_type_statement_token2] = ACTIONS(6324), + [aux_sym_def_type_statement_token3] = ACTIONS(6324), + [aux_sym_def_type_statement_token4] = ACTIONS(6324), + [aux_sym_def_type_statement_token5] = ACTIONS(6324), + [aux_sym_def_type_statement_token6] = ACTIONS(6324), + [aux_sym_def_type_statement_token7] = ACTIONS(6324), + [aux_sym_def_type_statement_token8] = ACTIONS(6324), + [aux_sym_def_type_statement_token9] = ACTIONS(6324), + [aux_sym_def_type_statement_token10] = ACTIONS(6324), + [aux_sym_def_type_statement_token11] = ACTIONS(6324), + [aux_sym_def_type_statement_token12] = ACTIONS(6324), + [aux_sym_def_type_statement_token13] = ACTIONS(6324), + [aux_sym_def_type_statement_token14] = ACTIONS(6324), + [aux_sym_call_statement_token1] = ACTIONS(6324), + [sym__ambiguous_call_statement] = ACTIONS(6324), + [aux_sym_addressof_expression_token1] = ACTIONS(6324), + [aux_sym_type_of_expression_token1] = ACTIONS(6324), + [aux_sym_unary_expression_token1] = ACTIONS(6324), + [sym_string_literal] = ACTIONS(6326), + [sym_number_literal] = ACTIONS(6326), + [aux_sym_boolean_literal_token1] = ACTIONS(6324), + [aux_sym_boolean_literal_token2] = ACTIONS(6324), + [sym_nothing_literal] = ACTIONS(6324), + [sym_null_literal] = ACTIONS(6324), + [sym_empty_literal] = ACTIONS(6324), + [sym_date_literal] = ACTIONS(6326), + [anon_sym_POUND] = ACTIONS(6324), + }, + [STATE(3450)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_array_bound_token1] = ACTIONS(4625), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(3451)] = { + [sym_identifier] = ACTIONS(7647), + [sym_newline] = ACTIONS(7649), + [anon_sym_COLON] = ACTIONS(7649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7647), + [aux_sym_frm_property_statement_token1] = ACTIONS(7647), + [anon_sym_DOT] = ACTIONS(7647), + [anon_sym_BANG] = ACTIONS(7649), + [aux_sym__attribute_identifier_token1] = ACTIONS(7647), + [aux_sym_option_statement_token3] = ACTIONS(7647), + [aux_sym_type_declaration_token1] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7647), + [aux_sym_enum_declaration_token1] = ACTIONS(7647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7647), + [aux_sym_declare_function_statement_token1] = ACTIONS(7647), + [aux_sym_preprocessor_const_token1] = ACTIONS(7647), + [aux_sym__property_get_header_token1] = ACTIONS(7647), + [aux_sym_event_declaration_token1] = ACTIONS(7647), + [sym_static_modifier] = ACTIONS(7647), + [sym__dim_keyword] = ACTIONS(7647), + [sym__redim_keyword] = ACTIONS(7647), + [aux_sym_get_accessor_token1] = ACTIONS(7647), + [aux_sym_set_accessor_token1] = ACTIONS(7647), + [anon_sym_COMMA] = ACTIONS(7649), + [aux_sym_const_declaration_token1] = ACTIONS(7647), + [anon_sym_LPAREN] = ACTIONS(7649), + [aux_sym_as_type_clause_token2] = ACTIONS(7647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7647), + [aux_sym_visibility_token1] = ACTIONS(7647), + [aux_sym_visibility_token2] = ACTIONS(7647), + [aux_sym_elseif_fragment_token1] = ACTIONS(7647), + [aux_sym_else_fragment_token1] = ACTIONS(7647), + [aux_sym_select_statement_token1] = ACTIONS(7647), + [aux_sym__for_header_token1] = ACTIONS(7647), + [aux_sym_do_statement_token1] = ACTIONS(7647), + [aux_sym_do_condition_token1] = ACTIONS(7647), + [aux_sym_with_statement_token1] = ACTIONS(7647), + [aux_sym_exit_statement_token1] = ACTIONS(7647), + [sym_end_statement] = ACTIONS(7649), + [aux_sym_on_goto_statement_token1] = ACTIONS(7647), + [aux_sym_on_goto_statement_token2] = ACTIONS(7647), + [aux_sym_on_error_statement_token2] = ACTIONS(7647), + [sym__ambiguous_redim_statement] = ACTIONS(7649), + [aux_sym_erase_statement_token1] = ACTIONS(7647), + [aux_sym_open_statement_token1] = ACTIONS(7647), + [aux_sym_file_mode_token2] = ACTIONS(7647), + [aux_sym_file_access_token2] = ACTIONS(7647), + [aux_sym_file_lock_token2] = ACTIONS(7647), + [aux_sym_print_statement_token1] = ACTIONS(7647), + [anon_sym_PLUS] = ACTIONS(7649), + [anon_sym_DASH] = ACTIONS(7647), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8101), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8103), + [anon_sym_SEMI] = ACTIONS(7649), + [anon_sym_QMARK] = ACTIONS(7649), + [aux_sym_close_statement_token1] = ACTIONS(7647), + [aux_sym_put_statement_token1] = ACTIONS(7647), + [aux_sym_unlock_statement_token1] = ACTIONS(7647), + [aux_sym_seek_statement_token1] = ACTIONS(7647), + [sym_reset_statement] = ACTIONS(7647), + [aux_sym_raise_event_statement_token1] = ACTIONS(7647), + [sym_stop_statement] = ACTIONS(7647), + [sym_beep_statement] = ACTIONS(7647), + [aux_sym_unload_statement_token1] = ACTIONS(7647), + [aux_sym_def_type_statement_token1] = ACTIONS(7647), + [aux_sym_def_type_statement_token2] = ACTIONS(7647), + [aux_sym_def_type_statement_token3] = ACTIONS(7647), + [aux_sym_def_type_statement_token4] = ACTIONS(7647), + [aux_sym_def_type_statement_token5] = ACTIONS(7647), + [aux_sym_def_type_statement_token6] = ACTIONS(7647), + [aux_sym_def_type_statement_token7] = ACTIONS(7647), + [aux_sym_def_type_statement_token8] = ACTIONS(7647), + [aux_sym_def_type_statement_token9] = ACTIONS(7647), + [aux_sym_def_type_statement_token10] = ACTIONS(7647), + [aux_sym_def_type_statement_token11] = ACTIONS(7647), + [aux_sym_def_type_statement_token12] = ACTIONS(7647), + [aux_sym_def_type_statement_token13] = ACTIONS(7647), + [aux_sym_def_type_statement_token14] = ACTIONS(7647), + [aux_sym_call_statement_token1] = ACTIONS(7647), + [sym__ambiguous_call_statement] = ACTIONS(7647), + [aux_sym_addressof_expression_token1] = ACTIONS(7647), + [aux_sym_type_of_expression_token1] = ACTIONS(7647), + [aux_sym_unary_expression_token1] = ACTIONS(7647), + [sym_string_literal] = ACTIONS(7649), + [sym_number_literal] = ACTIONS(7649), + [aux_sym_boolean_literal_token1] = ACTIONS(7647), + [aux_sym_boolean_literal_token2] = ACTIONS(7647), + [sym_nothing_literal] = ACTIONS(7647), + [sym_null_literal] = ACTIONS(7647), + [sym_empty_literal] = ACTIONS(7647), + [sym_date_literal] = ACTIONS(7649), + [anon_sym_POUND] = ACTIONS(7647), + }, + [STATE(3452)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_array_bound_token1] = ACTIONS(4362), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(3453)] = { + [aux_sym_variable_declaration_repeat1] = STATE(3521), + [sym_identifier] = ACTIONS(8158), + [sym_newline] = ACTIONS(8160), + [anon_sym_COLON] = ACTIONS(8160), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8158), + [aux_sym_frm_property_statement_token1] = ACTIONS(8158), + [anon_sym_DOT] = ACTIONS(8158), + [anon_sym_BANG] = ACTIONS(8160), + [aux_sym__attribute_identifier_token1] = ACTIONS(8158), + [aux_sym_option_statement_token3] = ACTIONS(8158), + [aux_sym_type_declaration_token1] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8158), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8158), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8158), + [aux_sym_enum_declaration_token1] = ACTIONS(8158), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8158), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8158), + [aux_sym_declare_function_statement_token1] = ACTIONS(8158), + [aux_sym_preprocessor_const_token1] = ACTIONS(8158), + [aux_sym__property_get_header_token1] = ACTIONS(8158), + [aux_sym_event_declaration_token1] = ACTIONS(8158), + [sym_static_modifier] = ACTIONS(8158), + [sym__dim_keyword] = ACTIONS(8158), + [sym__redim_keyword] = ACTIONS(8158), + [aux_sym_get_accessor_token1] = ACTIONS(8158), + [aux_sym_set_accessor_token1] = ACTIONS(8158), + [anon_sym_COMMA] = ACTIONS(8099), + [aux_sym_const_declaration_token1] = ACTIONS(8158), + [anon_sym_LPAREN] = ACTIONS(8160), + [aux_sym_as_type_clause_token2] = ACTIONS(8158), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8158), + [aux_sym_visibility_token1] = ACTIONS(8158), + [aux_sym_visibility_token2] = ACTIONS(8158), + [aux_sym_elseif_fragment_token1] = ACTIONS(8158), + [aux_sym_else_fragment_token1] = ACTIONS(8158), + [aux_sym_select_statement_token1] = ACTIONS(8158), + [aux_sym__for_header_token1] = ACTIONS(8158), + [aux_sym_do_statement_token1] = ACTIONS(8158), + [aux_sym_do_condition_token1] = ACTIONS(8158), + [aux_sym_with_statement_token1] = ACTIONS(8158), + [aux_sym_exit_statement_token1] = ACTIONS(8158), + [sym_end_statement] = ACTIONS(8160), + [aux_sym_on_goto_statement_token1] = ACTIONS(8158), + [aux_sym_on_goto_statement_token2] = ACTIONS(8158), + [aux_sym_on_error_statement_token2] = ACTIONS(8158), + [sym__ambiguous_redim_statement] = ACTIONS(8160), + [aux_sym_erase_statement_token1] = ACTIONS(8158), + [aux_sym_open_statement_token1] = ACTIONS(8158), + [aux_sym_file_mode_token2] = ACTIONS(8158), + [aux_sym_file_access_token2] = ACTIONS(8158), + [aux_sym_file_lock_token2] = ACTIONS(8158), + [aux_sym_print_statement_token1] = ACTIONS(8158), + [anon_sym_PLUS] = ACTIONS(8160), + [anon_sym_DASH] = ACTIONS(8158), + [anon_sym_QMARK] = ACTIONS(8160), + [aux_sym_close_statement_token1] = ACTIONS(8158), + [aux_sym_put_statement_token1] = ACTIONS(8158), + [aux_sym_unlock_statement_token1] = ACTIONS(8158), + [aux_sym_seek_statement_token1] = ACTIONS(8158), + [sym_reset_statement] = ACTIONS(8158), + [aux_sym_raise_event_statement_token1] = ACTIONS(8158), + [sym_stop_statement] = ACTIONS(8158), + [sym_beep_statement] = ACTIONS(8158), + [aux_sym_unload_statement_token1] = ACTIONS(8158), + [aux_sym_def_type_statement_token1] = ACTIONS(8158), + [aux_sym_def_type_statement_token2] = ACTIONS(8158), + [aux_sym_def_type_statement_token3] = ACTIONS(8158), + [aux_sym_def_type_statement_token4] = ACTIONS(8158), + [aux_sym_def_type_statement_token5] = ACTIONS(8158), + [aux_sym_def_type_statement_token6] = ACTIONS(8158), + [aux_sym_def_type_statement_token7] = ACTIONS(8158), + [aux_sym_def_type_statement_token8] = ACTIONS(8158), + [aux_sym_def_type_statement_token9] = ACTIONS(8158), + [aux_sym_def_type_statement_token10] = ACTIONS(8158), + [aux_sym_def_type_statement_token11] = ACTIONS(8158), + [aux_sym_def_type_statement_token12] = ACTIONS(8158), + [aux_sym_def_type_statement_token13] = ACTIONS(8158), + [aux_sym_def_type_statement_token14] = ACTIONS(8158), + [aux_sym_call_statement_token1] = ACTIONS(8158), + [sym__ambiguous_call_statement] = ACTIONS(8158), + [aux_sym_addressof_expression_token1] = ACTIONS(8158), + [aux_sym_type_of_expression_token1] = ACTIONS(8158), + [aux_sym_unary_expression_token1] = ACTIONS(8158), + [sym_string_literal] = ACTIONS(8160), + [sym_number_literal] = ACTIONS(8160), + [aux_sym_boolean_literal_token1] = ACTIONS(8158), + [aux_sym_boolean_literal_token2] = ACTIONS(8158), + [sym_nothing_literal] = ACTIONS(8158), + [sym_null_literal] = ACTIONS(8158), + [sym_empty_literal] = ACTIONS(8158), + [sym_date_literal] = ACTIONS(8160), + [anon_sym_POUND] = ACTIONS(8158), + }, + [STATE(3454)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token3] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(3455)] = { + [sym_identifier] = ACTIONS(8162), + [sym_newline] = ACTIONS(8164), + [anon_sym_COLON] = ACTIONS(8164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8162), + [aux_sym_frm_property_statement_token1] = ACTIONS(8162), + [anon_sym_DOT] = ACTIONS(8162), + [anon_sym_BANG] = ACTIONS(8164), + [aux_sym__attribute_identifier_token1] = ACTIONS(8162), + [aux_sym_option_statement_token3] = ACTIONS(8162), + [aux_sym_type_declaration_token1] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8162), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8162), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8162), + [aux_sym_enum_declaration_token1] = ACTIONS(8162), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8162), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8162), + [aux_sym_declare_function_statement_token1] = ACTIONS(8162), + [aux_sym_preprocessor_const_token1] = ACTIONS(8162), + [aux_sym__property_get_header_token1] = ACTIONS(8162), + [aux_sym_event_declaration_token1] = ACTIONS(8162), + [sym_static_modifier] = ACTIONS(8162), + [sym__dim_keyword] = ACTIONS(8162), + [sym__redim_keyword] = ACTIONS(8162), + [aux_sym_get_accessor_token1] = ACTIONS(8162), + [aux_sym_set_accessor_token1] = ACTIONS(8162), + [anon_sym_COMMA] = ACTIONS(8164), + [aux_sym_const_declaration_token1] = ACTIONS(8162), + [anon_sym_LPAREN] = ACTIONS(8164), + [aux_sym_as_type_clause_token2] = ACTIONS(8162), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8162), + [aux_sym_visibility_token1] = ACTIONS(8162), + [aux_sym_visibility_token2] = ACTIONS(8162), + [aux_sym_elseif_fragment_token1] = ACTIONS(8162), + [aux_sym_else_fragment_token1] = ACTIONS(8162), + [aux_sym_select_statement_token1] = ACTIONS(8162), + [aux_sym__for_header_token1] = ACTIONS(8162), + [aux_sym_do_statement_token1] = ACTIONS(8162), + [aux_sym_do_condition_token1] = ACTIONS(8162), + [aux_sym_with_statement_token1] = ACTIONS(8162), + [aux_sym_exit_statement_token1] = ACTIONS(8162), + [sym_end_statement] = ACTIONS(8164), + [aux_sym_on_goto_statement_token1] = ACTIONS(8162), + [aux_sym_on_goto_statement_token2] = ACTIONS(8162), + [aux_sym_on_error_statement_token2] = ACTIONS(8162), + [sym__ambiguous_redim_statement] = ACTIONS(8164), + [aux_sym_erase_statement_token1] = ACTIONS(8162), + [aux_sym_open_statement_token1] = ACTIONS(8162), + [aux_sym_file_mode_token2] = ACTIONS(8162), + [aux_sym_file_access_token2] = ACTIONS(8162), + [aux_sym_file_lock_token2] = ACTIONS(8162), + [aux_sym_print_statement_token1] = ACTIONS(8162), + [anon_sym_PLUS] = ACTIONS(8164), + [anon_sym_DASH] = ACTIONS(8162), + [anon_sym_SEMI] = ACTIONS(8164), + [anon_sym_QMARK] = ACTIONS(8164), + [aux_sym_close_statement_token1] = ACTIONS(8162), + [aux_sym_put_statement_token1] = ACTIONS(8162), + [aux_sym_unlock_statement_token1] = ACTIONS(8162), + [aux_sym_seek_statement_token1] = ACTIONS(8162), + [sym_reset_statement] = ACTIONS(8162), + [aux_sym_raise_event_statement_token1] = ACTIONS(8162), + [sym_stop_statement] = ACTIONS(8162), + [sym_beep_statement] = ACTIONS(8162), + [aux_sym_unload_statement_token1] = ACTIONS(8162), + [aux_sym_def_type_statement_token1] = ACTIONS(8162), + [aux_sym_def_type_statement_token2] = ACTIONS(8162), + [aux_sym_def_type_statement_token3] = ACTIONS(8162), + [aux_sym_def_type_statement_token4] = ACTIONS(8162), + [aux_sym_def_type_statement_token5] = ACTIONS(8162), + [aux_sym_def_type_statement_token6] = ACTIONS(8162), + [aux_sym_def_type_statement_token7] = ACTIONS(8162), + [aux_sym_def_type_statement_token8] = ACTIONS(8162), + [aux_sym_def_type_statement_token9] = ACTIONS(8162), + [aux_sym_def_type_statement_token10] = ACTIONS(8162), + [aux_sym_def_type_statement_token11] = ACTIONS(8162), + [aux_sym_def_type_statement_token12] = ACTIONS(8162), + [aux_sym_def_type_statement_token13] = ACTIONS(8162), + [aux_sym_def_type_statement_token14] = ACTIONS(8162), + [aux_sym_call_statement_token1] = ACTIONS(8162), + [sym__ambiguous_call_statement] = ACTIONS(8162), + [aux_sym_addressof_expression_token1] = ACTIONS(8162), + [aux_sym_type_of_expression_token1] = ACTIONS(8162), + [aux_sym_unary_expression_token1] = ACTIONS(8162), + [sym_string_literal] = ACTIONS(8164), + [sym_number_literal] = ACTIONS(8164), + [aux_sym_boolean_literal_token1] = ACTIONS(8162), + [aux_sym_boolean_literal_token2] = ACTIONS(8162), + [sym_nothing_literal] = ACTIONS(8162), + [sym_null_literal] = ACTIONS(8162), + [sym_empty_literal] = ACTIONS(8162), + [sym_date_literal] = ACTIONS(8164), + [anon_sym_POUND] = ACTIONS(8162), + }, + [STATE(3456)] = { + [sym_identifier] = ACTIONS(6320), + [sym_newline] = ACTIONS(6322), + [anon_sym_COLON] = ACTIONS(6322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6320), + [aux_sym_frm_property_statement_token1] = ACTIONS(6320), + [anon_sym_DOT] = ACTIONS(6320), + [anon_sym_BANG] = ACTIONS(6322), + [aux_sym__attribute_identifier_token1] = ACTIONS(6320), + [aux_sym_option_statement_token3] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6320), + [aux_sym_preprocessor_const_token1] = ACTIONS(6320), + [sym_static_modifier] = ACTIONS(6320), + [sym__dim_keyword] = ACTIONS(6320), + [sym__redim_keyword] = ACTIONS(6320), + [aux_sym_get_accessor_token1] = ACTIONS(6320), + [aux_sym_set_accessor_token1] = ACTIONS(6320), + [aux_sym_const_declaration_token1] = ACTIONS(6320), + [anon_sym_LPAREN] = ACTIONS(6322), + [aux_sym_as_type_clause_token2] = ACTIONS(6320), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6320), + [aux_sym_visibility_token1] = ACTIONS(6320), + [aux_sym_visibility_token2] = ACTIONS(6320), + [aux_sym_elseif_fragment_token1] = ACTIONS(6320), + [aux_sym_else_fragment_token1] = ACTIONS(6320), + [aux_sym_select_statement_token1] = ACTIONS(6320), + [aux_sym__for_header_token1] = ACTIONS(6320), + [aux_sym_do_statement_token1] = ACTIONS(6320), + [aux_sym_do_condition_token1] = ACTIONS(6320), + [aux_sym_while_statement_token1] = ACTIONS(6320), + [aux_sym_with_statement_token1] = ACTIONS(6320), + [aux_sym_exit_statement_token1] = ACTIONS(6320), + [sym_end_statement] = ACTIONS(6322), + [aux_sym_on_goto_statement_token1] = ACTIONS(6320), + [aux_sym_on_goto_statement_token2] = ACTIONS(6320), + [aux_sym_on_error_statement_token2] = ACTIONS(6320), + [sym__ambiguous_redim_statement] = ACTIONS(6322), + [aux_sym_erase_statement_token1] = ACTIONS(6320), + [aux_sym_open_statement_token1] = ACTIONS(6320), + [aux_sym_file_mode_token2] = ACTIONS(6320), + [aux_sym_file_access_token2] = ACTIONS(6320), + [aux_sym_file_lock_token2] = ACTIONS(6320), + [aux_sym_print_statement_token1] = ACTIONS(6320), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_QMARK] = ACTIONS(6322), + [aux_sym_close_statement_token1] = ACTIONS(6320), + [aux_sym_put_statement_token1] = ACTIONS(6320), + [aux_sym_unlock_statement_token1] = ACTIONS(6320), + [aux_sym_seek_statement_token1] = ACTIONS(6320), + [sym_reset_statement] = ACTIONS(6320), + [aux_sym_raise_event_statement_token1] = ACTIONS(6320), + [sym_stop_statement] = ACTIONS(6320), + [sym_beep_statement] = ACTIONS(6320), + [aux_sym_unload_statement_token1] = ACTIONS(6320), + [aux_sym_def_type_statement_token1] = ACTIONS(6320), + [aux_sym_def_type_statement_token2] = ACTIONS(6320), + [aux_sym_def_type_statement_token3] = ACTIONS(6320), + [aux_sym_def_type_statement_token4] = ACTIONS(6320), + [aux_sym_def_type_statement_token5] = ACTIONS(6320), + [aux_sym_def_type_statement_token6] = ACTIONS(6320), + [aux_sym_def_type_statement_token7] = ACTIONS(6320), + [aux_sym_def_type_statement_token8] = ACTIONS(6320), + [aux_sym_def_type_statement_token9] = ACTIONS(6320), + [aux_sym_def_type_statement_token10] = ACTIONS(6320), + [aux_sym_def_type_statement_token11] = ACTIONS(6320), + [aux_sym_def_type_statement_token12] = ACTIONS(6320), + [aux_sym_def_type_statement_token13] = ACTIONS(6320), + [aux_sym_def_type_statement_token14] = ACTIONS(6320), + [aux_sym_call_statement_token1] = ACTIONS(6320), + [sym__ambiguous_call_statement] = ACTIONS(6320), + [aux_sym_addressof_expression_token1] = ACTIONS(6320), + [aux_sym_type_of_expression_token1] = ACTIONS(6320), + [aux_sym_unary_expression_token1] = ACTIONS(6320), + [sym_string_literal] = ACTIONS(6322), + [sym_number_literal] = ACTIONS(6322), + [aux_sym_boolean_literal_token1] = ACTIONS(6320), + [aux_sym_boolean_literal_token2] = ACTIONS(6320), + [sym_nothing_literal] = ACTIONS(6320), + [sym_null_literal] = ACTIONS(6320), + [sym_empty_literal] = ACTIONS(6320), + [sym_date_literal] = ACTIONS(6322), + [anon_sym_POUND] = ACTIONS(6320), + }, + [STATE(3457)] = { + [sym_identifier] = ACTIONS(3370), + [sym_newline] = ACTIONS(3364), + [anon_sym_COLON] = ACTIONS(6646), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3370), + [aux_sym_frm_property_statement_token1] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3364), + [aux_sym__attribute_identifier_token1] = ACTIONS(3370), + [aux_sym_option_statement_token3] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3370), + [aux_sym_preprocessor_const_token1] = ACTIONS(3370), + [sym_static_modifier] = ACTIONS(3370), + [sym__dim_keyword] = ACTIONS(3370), + [sym__redim_keyword] = ACTIONS(3370), + [aux_sym_get_accessor_token1] = ACTIONS(3370), + [aux_sym_set_accessor_token1] = ACTIONS(3370), + [aux_sym_const_declaration_token1] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3364), + [aux_sym_as_type_clause_token2] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3370), + [aux_sym_visibility_token1] = ACTIONS(3370), + [aux_sym_visibility_token2] = ACTIONS(3370), + [aux_sym_elseif_fragment_token1] = ACTIONS(3370), + [aux_sym_else_fragment_token1] = ACTIONS(3370), + [aux_sym_select_statement_token1] = ACTIONS(3370), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_while_statement_token1] = ACTIONS(3370), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(3370), + [sym_end_statement] = ACTIONS(3364), + [aux_sym_on_goto_statement_token1] = ACTIONS(3370), + [aux_sym_on_goto_statement_token2] = ACTIONS(3370), + [aux_sym_on_error_statement_token2] = ACTIONS(3370), + [sym__ambiguous_redim_statement] = ACTIONS(3364), + [aux_sym_erase_statement_token1] = ACTIONS(3370), + [aux_sym_open_statement_token1] = ACTIONS(3370), + [aux_sym_file_mode_token2] = ACTIONS(3370), + [aux_sym_file_access_token2] = ACTIONS(3370), + [aux_sym_file_lock_token2] = ACTIONS(3370), + [aux_sym_print_statement_token1] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(3364), + [aux_sym_close_statement_token1] = ACTIONS(3370), + [aux_sym_put_statement_token1] = ACTIONS(3370), + [aux_sym_unlock_statement_token1] = ACTIONS(3370), + [aux_sym_seek_statement_token1] = ACTIONS(3370), + [sym_reset_statement] = ACTIONS(3370), + [aux_sym_raise_event_statement_token1] = ACTIONS(3370), + [sym_stop_statement] = ACTIONS(3370), + [sym_beep_statement] = ACTIONS(3370), + [aux_sym_unload_statement_token1] = ACTIONS(3370), + [aux_sym_def_type_statement_token1] = ACTIONS(3370), + [aux_sym_def_type_statement_token2] = ACTIONS(3370), + [aux_sym_def_type_statement_token3] = ACTIONS(3370), + [aux_sym_def_type_statement_token4] = ACTIONS(3370), + [aux_sym_def_type_statement_token5] = ACTIONS(3370), + [aux_sym_def_type_statement_token6] = ACTIONS(3370), + [aux_sym_def_type_statement_token7] = ACTIONS(3370), + [aux_sym_def_type_statement_token8] = ACTIONS(3370), + [aux_sym_def_type_statement_token9] = ACTIONS(3370), + [aux_sym_def_type_statement_token10] = ACTIONS(3370), + [aux_sym_def_type_statement_token11] = ACTIONS(3370), + [aux_sym_def_type_statement_token12] = ACTIONS(3370), + [aux_sym_def_type_statement_token13] = ACTIONS(3370), + [aux_sym_def_type_statement_token14] = ACTIONS(3370), + [aux_sym_call_statement_token1] = ACTIONS(3370), + [sym__ambiguous_call_statement] = ACTIONS(3370), + [aux_sym_addressof_expression_token1] = ACTIONS(3370), + [aux_sym_type_of_expression_token1] = ACTIONS(3370), + [aux_sym_unary_expression_token1] = ACTIONS(3370), + [sym_string_literal] = ACTIONS(3364), + [sym_number_literal] = ACTIONS(3364), + [aux_sym_boolean_literal_token1] = ACTIONS(3370), + [aux_sym_boolean_literal_token2] = ACTIONS(3370), + [sym_nothing_literal] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3370), + [sym_empty_literal] = ACTIONS(3370), + [sym_date_literal] = ACTIONS(3364), + [anon_sym_POUND] = ACTIONS(3370), + }, + [STATE(3458)] = { + [aux_sym_variable_declaration_repeat1] = STATE(3521), + [sym_identifier] = ACTIONS(8166), + [sym_newline] = ACTIONS(8168), + [anon_sym_COLON] = ACTIONS(8168), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8166), + [aux_sym_frm_property_statement_token1] = ACTIONS(8166), + [anon_sym_DOT] = ACTIONS(8166), + [anon_sym_BANG] = ACTIONS(8168), + [aux_sym__attribute_identifier_token1] = ACTIONS(8166), + [aux_sym_option_statement_token3] = ACTIONS(8166), + [aux_sym_type_declaration_token1] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8166), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8166), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8166), + [aux_sym_enum_declaration_token1] = ACTIONS(8166), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8166), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8166), + [aux_sym_declare_function_statement_token1] = ACTIONS(8166), + [aux_sym_preprocessor_const_token1] = ACTIONS(8166), + [aux_sym__property_get_header_token1] = ACTIONS(8166), + [aux_sym_event_declaration_token1] = ACTIONS(8166), + [sym_static_modifier] = ACTIONS(8166), + [sym__dim_keyword] = ACTIONS(8166), + [sym__redim_keyword] = ACTIONS(8166), + [aux_sym_get_accessor_token1] = ACTIONS(8166), + [aux_sym_set_accessor_token1] = ACTIONS(8166), + [anon_sym_COMMA] = ACTIONS(8099), + [aux_sym_const_declaration_token1] = ACTIONS(8166), + [anon_sym_LPAREN] = ACTIONS(8168), + [aux_sym_as_type_clause_token2] = ACTIONS(8166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8166), + [aux_sym_visibility_token1] = ACTIONS(8166), + [aux_sym_visibility_token2] = ACTIONS(8166), + [aux_sym_elseif_fragment_token1] = ACTIONS(8166), + [aux_sym_else_fragment_token1] = ACTIONS(8166), + [aux_sym_select_statement_token1] = ACTIONS(8166), + [aux_sym__for_header_token1] = ACTIONS(8166), + [aux_sym_do_statement_token1] = ACTIONS(8166), + [aux_sym_do_condition_token1] = ACTIONS(8166), + [aux_sym_with_statement_token1] = ACTIONS(8166), + [aux_sym_exit_statement_token1] = ACTIONS(8166), + [sym_end_statement] = ACTIONS(8168), + [aux_sym_on_goto_statement_token1] = ACTIONS(8166), + [aux_sym_on_goto_statement_token2] = ACTIONS(8166), + [aux_sym_on_error_statement_token2] = ACTIONS(8166), + [sym__ambiguous_redim_statement] = ACTIONS(8168), + [aux_sym_erase_statement_token1] = ACTIONS(8166), + [aux_sym_open_statement_token1] = ACTIONS(8166), + [aux_sym_file_mode_token2] = ACTIONS(8166), + [aux_sym_file_access_token2] = ACTIONS(8166), + [aux_sym_file_lock_token2] = ACTIONS(8166), + [aux_sym_print_statement_token1] = ACTIONS(8166), + [anon_sym_PLUS] = ACTIONS(8168), + [anon_sym_DASH] = ACTIONS(8166), + [anon_sym_QMARK] = ACTIONS(8168), + [aux_sym_close_statement_token1] = ACTIONS(8166), + [aux_sym_put_statement_token1] = ACTIONS(8166), + [aux_sym_unlock_statement_token1] = ACTIONS(8166), + [aux_sym_seek_statement_token1] = ACTIONS(8166), + [sym_reset_statement] = ACTIONS(8166), + [aux_sym_raise_event_statement_token1] = ACTIONS(8166), + [sym_stop_statement] = ACTIONS(8166), + [sym_beep_statement] = ACTIONS(8166), + [aux_sym_unload_statement_token1] = ACTIONS(8166), + [aux_sym_def_type_statement_token1] = ACTIONS(8166), + [aux_sym_def_type_statement_token2] = ACTIONS(8166), + [aux_sym_def_type_statement_token3] = ACTIONS(8166), + [aux_sym_def_type_statement_token4] = ACTIONS(8166), + [aux_sym_def_type_statement_token5] = ACTIONS(8166), + [aux_sym_def_type_statement_token6] = ACTIONS(8166), + [aux_sym_def_type_statement_token7] = ACTIONS(8166), + [aux_sym_def_type_statement_token8] = ACTIONS(8166), + [aux_sym_def_type_statement_token9] = ACTIONS(8166), + [aux_sym_def_type_statement_token10] = ACTIONS(8166), + [aux_sym_def_type_statement_token11] = ACTIONS(8166), + [aux_sym_def_type_statement_token12] = ACTIONS(8166), + [aux_sym_def_type_statement_token13] = ACTIONS(8166), + [aux_sym_def_type_statement_token14] = ACTIONS(8166), + [aux_sym_call_statement_token1] = ACTIONS(8166), + [sym__ambiguous_call_statement] = ACTIONS(8166), + [aux_sym_addressof_expression_token1] = ACTIONS(8166), + [aux_sym_type_of_expression_token1] = ACTIONS(8166), + [aux_sym_unary_expression_token1] = ACTIONS(8166), + [sym_string_literal] = ACTIONS(8168), + [sym_number_literal] = ACTIONS(8168), + [aux_sym_boolean_literal_token1] = ACTIONS(8166), + [aux_sym_boolean_literal_token2] = ACTIONS(8166), + [sym_nothing_literal] = ACTIONS(8166), + [sym_null_literal] = ACTIONS(8166), + [sym_empty_literal] = ACTIONS(8166), + [sym_date_literal] = ACTIONS(8168), + [anon_sym_POUND] = ACTIONS(8166), + }, + [STATE(3459)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token3] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(3460)] = { + [sym_do_condition] = STATE(3971), + [sym_identifier] = ACTIONS(8170), + [sym_newline] = ACTIONS(8172), + [anon_sym_COLON] = ACTIONS(8172), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8170), + [aux_sym_frm_property_statement_token1] = ACTIONS(8170), + [anon_sym_DOT] = ACTIONS(8170), + [anon_sym_BANG] = ACTIONS(8172), + [aux_sym__attribute_identifier_token1] = ACTIONS(8170), + [aux_sym_option_statement_token3] = ACTIONS(8170), + [aux_sym_type_declaration_token1] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8170), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8170), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8170), + [aux_sym_enum_declaration_token1] = ACTIONS(8170), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8170), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8170), + [aux_sym_declare_function_statement_token1] = ACTIONS(8170), + [aux_sym_preprocessor_const_token1] = ACTIONS(8170), + [aux_sym__property_get_header_token1] = ACTIONS(8170), + [aux_sym_event_declaration_token1] = ACTIONS(8170), + [sym_static_modifier] = ACTIONS(8170), + [sym__dim_keyword] = ACTIONS(8170), + [sym__redim_keyword] = ACTIONS(8170), + [aux_sym_get_accessor_token1] = ACTIONS(8170), + [aux_sym_set_accessor_token1] = ACTIONS(8170), + [aux_sym_const_declaration_token1] = ACTIONS(8170), + [anon_sym_LPAREN] = ACTIONS(8172), + [aux_sym_as_type_clause_token2] = ACTIONS(8170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8170), + [aux_sym_visibility_token1] = ACTIONS(8170), + [aux_sym_visibility_token2] = ACTIONS(8170), + [aux_sym_elseif_fragment_token1] = ACTIONS(8170), + [aux_sym_else_fragment_token1] = ACTIONS(8170), + [aux_sym_select_statement_token1] = ACTIONS(8170), + [aux_sym__for_header_token1] = ACTIONS(8170), + [aux_sym_do_statement_token1] = ACTIONS(8170), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8170), + [aux_sym_exit_statement_token1] = ACTIONS(8170), + [sym_end_statement] = ACTIONS(8172), + [aux_sym_on_goto_statement_token1] = ACTIONS(8170), + [aux_sym_on_goto_statement_token2] = ACTIONS(8170), + [aux_sym_on_error_statement_token2] = ACTIONS(8170), + [sym__ambiguous_redim_statement] = ACTIONS(8172), + [aux_sym_erase_statement_token1] = ACTIONS(8170), + [aux_sym_open_statement_token1] = ACTIONS(8170), + [aux_sym_file_mode_token2] = ACTIONS(8170), + [aux_sym_file_access_token2] = ACTIONS(8170), + [aux_sym_file_lock_token2] = ACTIONS(8170), + [aux_sym_print_statement_token1] = ACTIONS(8170), + [anon_sym_PLUS] = ACTIONS(8172), + [anon_sym_DASH] = ACTIONS(8170), + [anon_sym_QMARK] = ACTIONS(8172), + [aux_sym_close_statement_token1] = ACTIONS(8170), + [aux_sym_put_statement_token1] = ACTIONS(8170), + [aux_sym_unlock_statement_token1] = ACTIONS(8170), + [aux_sym_seek_statement_token1] = ACTIONS(8170), + [sym_reset_statement] = ACTIONS(8170), + [aux_sym_raise_event_statement_token1] = ACTIONS(8170), + [sym_stop_statement] = ACTIONS(8170), + [sym_beep_statement] = ACTIONS(8170), + [aux_sym_unload_statement_token1] = ACTIONS(8170), + [aux_sym_def_type_statement_token1] = ACTIONS(8170), + [aux_sym_def_type_statement_token2] = ACTIONS(8170), + [aux_sym_def_type_statement_token3] = ACTIONS(8170), + [aux_sym_def_type_statement_token4] = ACTIONS(8170), + [aux_sym_def_type_statement_token5] = ACTIONS(8170), + [aux_sym_def_type_statement_token6] = ACTIONS(8170), + [aux_sym_def_type_statement_token7] = ACTIONS(8170), + [aux_sym_def_type_statement_token8] = ACTIONS(8170), + [aux_sym_def_type_statement_token9] = ACTIONS(8170), + [aux_sym_def_type_statement_token10] = ACTIONS(8170), + [aux_sym_def_type_statement_token11] = ACTIONS(8170), + [aux_sym_def_type_statement_token12] = ACTIONS(8170), + [aux_sym_def_type_statement_token13] = ACTIONS(8170), + [aux_sym_def_type_statement_token14] = ACTIONS(8170), + [aux_sym_call_statement_token1] = ACTIONS(8170), + [sym__ambiguous_call_statement] = ACTIONS(8170), + [aux_sym_addressof_expression_token1] = ACTIONS(8170), + [aux_sym_type_of_expression_token1] = ACTIONS(8170), + [aux_sym_unary_expression_token1] = ACTIONS(8170), + [sym_string_literal] = ACTIONS(8172), + [sym_number_literal] = ACTIONS(8172), + [aux_sym_boolean_literal_token1] = ACTIONS(8170), + [aux_sym_boolean_literal_token2] = ACTIONS(8170), + [sym_nothing_literal] = ACTIONS(8170), + [sym_null_literal] = ACTIONS(8170), + [sym_empty_literal] = ACTIONS(8170), + [sym_date_literal] = ACTIONS(8172), + [anon_sym_POUND] = ACTIONS(8170), + }, + [STATE(3461)] = { + [sym_identifier] = ACTIONS(6625), + [sym_newline] = ACTIONS(6627), + [anon_sym_COLON] = ACTIONS(6627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6625), + [aux_sym_frm_property_statement_token1] = ACTIONS(6625), + [anon_sym_DOT] = ACTIONS(6625), + [anon_sym_BANG] = ACTIONS(6627), + [aux_sym__attribute_identifier_token1] = ACTIONS(6625), + [aux_sym_option_statement_token3] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6625), + [aux_sym_preprocessor_const_token1] = ACTIONS(6625), + [sym_static_modifier] = ACTIONS(6625), + [sym__dim_keyword] = ACTIONS(6625), + [sym__redim_keyword] = ACTIONS(6625), + [aux_sym_get_accessor_token1] = ACTIONS(6625), + [aux_sym_set_accessor_token1] = ACTIONS(6625), + [aux_sym_const_declaration_token1] = ACTIONS(6625), + [anon_sym_LPAREN] = ACTIONS(6627), + [aux_sym_as_type_clause_token2] = ACTIONS(6625), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6625), + [aux_sym_visibility_token1] = ACTIONS(6625), + [aux_sym_visibility_token2] = ACTIONS(6625), + [aux_sym_elseif_fragment_token1] = ACTIONS(6625), + [aux_sym_else_fragment_token1] = ACTIONS(6625), + [aux_sym_select_statement_token1] = ACTIONS(6625), + [aux_sym__for_header_token1] = ACTIONS(6625), + [aux_sym_do_statement_token1] = ACTIONS(6625), + [aux_sym_do_condition_token1] = ACTIONS(6625), + [aux_sym_with_statement_token1] = ACTIONS(6625), + [aux_sym_exit_statement_token1] = ACTIONS(6625), + [sym_end_statement] = ACTIONS(6627), + [aux_sym_on_goto_statement_token1] = ACTIONS(6625), + [aux_sym_on_goto_statement_token2] = ACTIONS(6625), + [aux_sym_on_error_statement_token2] = ACTIONS(6625), + [sym__ambiguous_redim_statement] = ACTIONS(6627), + [aux_sym_erase_statement_token1] = ACTIONS(6625), + [aux_sym_open_statement_token1] = ACTIONS(6625), + [aux_sym_file_mode_token2] = ACTIONS(6625), + [aux_sym_file_access_token2] = ACTIONS(6625), + [aux_sym_file_lock_token2] = ACTIONS(6625), + [aux_sym_print_statement_token1] = ACTIONS(6625), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_QMARK] = ACTIONS(6627), + [aux_sym_close_statement_token1] = ACTIONS(6625), + [aux_sym_put_statement_token1] = ACTIONS(6625), + [aux_sym_unlock_statement_token1] = ACTIONS(6625), + [aux_sym_seek_statement_token1] = ACTIONS(6625), + [sym_reset_statement] = ACTIONS(6625), + [aux_sym_raise_event_statement_token1] = ACTIONS(6625), + [sym_stop_statement] = ACTIONS(6625), + [sym_beep_statement] = ACTIONS(6625), + [aux_sym_unload_statement_token1] = ACTIONS(6625), + [aux_sym_def_type_statement_token1] = ACTIONS(6625), + [aux_sym_def_type_statement_token2] = ACTIONS(6625), + [aux_sym_def_type_statement_token3] = ACTIONS(6625), + [aux_sym_def_type_statement_token4] = ACTIONS(6625), + [aux_sym_def_type_statement_token5] = ACTIONS(6625), + [aux_sym_def_type_statement_token6] = ACTIONS(6625), + [aux_sym_def_type_statement_token7] = ACTIONS(6625), + [aux_sym_def_type_statement_token8] = ACTIONS(6625), + [aux_sym_def_type_statement_token9] = ACTIONS(6625), + [aux_sym_def_type_statement_token10] = ACTIONS(6625), + [aux_sym_def_type_statement_token11] = ACTIONS(6625), + [aux_sym_def_type_statement_token12] = ACTIONS(6625), + [aux_sym_def_type_statement_token13] = ACTIONS(6625), + [aux_sym_def_type_statement_token14] = ACTIONS(6625), + [aux_sym_call_statement_token1] = ACTIONS(6625), + [sym__ambiguous_call_statement] = ACTIONS(6625), + [aux_sym_addressof_expression_token1] = ACTIONS(6625), + [aux_sym_type_of_expression_token1] = ACTIONS(6625), + [aux_sym_unary_expression_token1] = ACTIONS(6625), + [sym_string_literal] = ACTIONS(6627), + [sym_number_literal] = ACTIONS(6627), + [aux_sym_boolean_literal_token1] = ACTIONS(6625), + [aux_sym_boolean_literal_token2] = ACTIONS(6625), + [sym_nothing_literal] = ACTIONS(6625), + [sym_null_literal] = ACTIONS(6625), + [sym_empty_literal] = ACTIONS(6625), + [sym_date_literal] = ACTIONS(6627), + [anon_sym_POUND] = ACTIONS(6625), + }, + [STATE(3462)] = { + [sym_identifier] = ACTIONS(6629), + [sym_newline] = ACTIONS(6631), + [anon_sym_COLON] = ACTIONS(6631), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6629), + [aux_sym_frm_property_statement_token1] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6631), + [aux_sym__attribute_identifier_token1] = ACTIONS(6629), + [aux_sym_option_statement_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6629), + [aux_sym_preprocessor_const_token1] = ACTIONS(6629), + [sym_static_modifier] = ACTIONS(6629), + [sym__dim_keyword] = ACTIONS(6629), + [sym__redim_keyword] = ACTIONS(6629), + [aux_sym_get_accessor_token1] = ACTIONS(6629), + [aux_sym_set_accessor_token1] = ACTIONS(6629), + [aux_sym_const_declaration_token1] = ACTIONS(6629), + [anon_sym_LPAREN] = ACTIONS(6631), + [aux_sym_as_type_clause_token2] = ACTIONS(6629), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6629), + [aux_sym_visibility_token1] = ACTIONS(6629), + [aux_sym_visibility_token2] = ACTIONS(6629), + [aux_sym_elseif_fragment_token1] = ACTIONS(6629), + [aux_sym_else_fragment_token1] = ACTIONS(6629), + [aux_sym_select_statement_token1] = ACTIONS(6629), + [aux_sym__for_header_token1] = ACTIONS(6629), + [aux_sym_do_statement_token1] = ACTIONS(6629), + [aux_sym_do_condition_token1] = ACTIONS(6629), + [aux_sym_with_statement_token1] = ACTIONS(6629), + [aux_sym_exit_statement_token1] = ACTIONS(6629), + [sym_end_statement] = ACTIONS(6631), + [aux_sym_on_goto_statement_token1] = ACTIONS(6629), + [aux_sym_on_goto_statement_token2] = ACTIONS(6629), + [aux_sym_on_error_statement_token2] = ACTIONS(6629), + [sym__ambiguous_redim_statement] = ACTIONS(6631), + [aux_sym_erase_statement_token1] = ACTIONS(6629), + [aux_sym_open_statement_token1] = ACTIONS(6629), + [aux_sym_file_mode_token2] = ACTIONS(6629), + [aux_sym_file_access_token2] = ACTIONS(6629), + [aux_sym_file_lock_token2] = ACTIONS(6629), + [aux_sym_print_statement_token1] = ACTIONS(6629), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5887), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5889), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5891), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5893), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6190), + [anon_sym_QMARK] = ACTIONS(6631), + [aux_sym_close_statement_token1] = ACTIONS(6629), + [aux_sym_put_statement_token1] = ACTIONS(6629), + [aux_sym_unlock_statement_token1] = ACTIONS(6629), + [aux_sym_seek_statement_token1] = ACTIONS(6629), + [sym_reset_statement] = ACTIONS(6629), + [aux_sym_raise_event_statement_token1] = ACTIONS(6629), + [sym_stop_statement] = ACTIONS(6629), + [sym_beep_statement] = ACTIONS(6629), + [aux_sym_unload_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token2] = ACTIONS(6629), + [aux_sym_def_type_statement_token3] = ACTIONS(6629), + [aux_sym_def_type_statement_token4] = ACTIONS(6629), + [aux_sym_def_type_statement_token5] = ACTIONS(6629), + [aux_sym_def_type_statement_token6] = ACTIONS(6629), + [aux_sym_def_type_statement_token7] = ACTIONS(6629), + [aux_sym_def_type_statement_token8] = ACTIONS(6629), + [aux_sym_def_type_statement_token9] = ACTIONS(6629), + [aux_sym_def_type_statement_token10] = ACTIONS(6629), + [aux_sym_def_type_statement_token11] = ACTIONS(6629), + [aux_sym_def_type_statement_token12] = ACTIONS(6629), + [aux_sym_def_type_statement_token13] = ACTIONS(6629), + [aux_sym_def_type_statement_token14] = ACTIONS(6629), + [aux_sym_call_statement_token1] = ACTIONS(6629), + [sym__ambiguous_call_statement] = ACTIONS(6629), + [aux_sym_addressof_expression_token1] = ACTIONS(6629), + [aux_sym_type_of_expression_token1] = ACTIONS(6629), + [aux_sym_unary_expression_token1] = ACTIONS(6629), + [sym_string_literal] = ACTIONS(6631), + [sym_number_literal] = ACTIONS(6631), + [aux_sym_boolean_literal_token1] = ACTIONS(6629), + [aux_sym_boolean_literal_token2] = ACTIONS(6629), + [sym_nothing_literal] = ACTIONS(6629), + [sym_null_literal] = ACTIONS(6629), + [sym_empty_literal] = ACTIONS(6629), + [sym_date_literal] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6629), + }, + [STATE(3463)] = { + [sym_identifier] = ACTIONS(6320), + [sym_newline] = ACTIONS(6322), + [anon_sym_COLON] = ACTIONS(6322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6320), + [aux_sym_frm_property_statement_token1] = ACTIONS(6320), + [anon_sym_DOT] = ACTIONS(6320), + [anon_sym_BANG] = ACTIONS(6322), + [aux_sym__attribute_identifier_token1] = ACTIONS(6320), + [aux_sym_option_statement_token3] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6320), + [aux_sym_preprocessor_const_token1] = ACTIONS(6320), + [sym_static_modifier] = ACTIONS(6320), + [sym__dim_keyword] = ACTIONS(6320), + [sym__redim_keyword] = ACTIONS(6320), + [aux_sym_get_accessor_token1] = ACTIONS(6320), + [aux_sym_set_accessor_token1] = ACTIONS(6320), + [aux_sym_const_declaration_token1] = ACTIONS(6320), + [anon_sym_LPAREN] = ACTIONS(6322), + [aux_sym_as_type_clause_token2] = ACTIONS(6320), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6320), + [aux_sym_visibility_token1] = ACTIONS(6320), + [aux_sym_visibility_token2] = ACTIONS(6320), + [aux_sym_elseif_fragment_token1] = ACTIONS(6320), + [aux_sym_else_fragment_token1] = ACTIONS(6320), + [aux_sym_select_statement_token1] = ACTIONS(6320), + [aux_sym_select_statement_token2] = ACTIONS(6320), + [aux_sym__for_header_token1] = ACTIONS(6320), + [aux_sym_do_statement_token1] = ACTIONS(6320), + [aux_sym_do_condition_token1] = ACTIONS(6320), + [aux_sym_with_statement_token1] = ACTIONS(6320), + [aux_sym_exit_statement_token1] = ACTIONS(6320), + [sym_end_statement] = ACTIONS(6322), + [aux_sym_on_goto_statement_token1] = ACTIONS(6320), + [aux_sym_on_goto_statement_token2] = ACTIONS(6320), + [aux_sym_on_error_statement_token2] = ACTIONS(6320), + [sym__ambiguous_redim_statement] = ACTIONS(6322), + [aux_sym_erase_statement_token1] = ACTIONS(6320), + [aux_sym_open_statement_token1] = ACTIONS(6320), + [aux_sym_file_mode_token2] = ACTIONS(6320), + [aux_sym_file_access_token2] = ACTIONS(6320), + [aux_sym_file_lock_token2] = ACTIONS(6320), + [aux_sym_print_statement_token1] = ACTIONS(6320), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_QMARK] = ACTIONS(6322), + [aux_sym_close_statement_token1] = ACTIONS(6320), + [aux_sym_put_statement_token1] = ACTIONS(6320), + [aux_sym_unlock_statement_token1] = ACTIONS(6320), + [aux_sym_seek_statement_token1] = ACTIONS(6320), + [sym_reset_statement] = ACTIONS(6320), + [aux_sym_raise_event_statement_token1] = ACTIONS(6320), + [sym_stop_statement] = ACTIONS(6320), + [sym_beep_statement] = ACTIONS(6320), + [aux_sym_unload_statement_token1] = ACTIONS(6320), + [aux_sym_def_type_statement_token1] = ACTIONS(6320), + [aux_sym_def_type_statement_token2] = ACTIONS(6320), + [aux_sym_def_type_statement_token3] = ACTIONS(6320), + [aux_sym_def_type_statement_token4] = ACTIONS(6320), + [aux_sym_def_type_statement_token5] = ACTIONS(6320), + [aux_sym_def_type_statement_token6] = ACTIONS(6320), + [aux_sym_def_type_statement_token7] = ACTIONS(6320), + [aux_sym_def_type_statement_token8] = ACTIONS(6320), + [aux_sym_def_type_statement_token9] = ACTIONS(6320), + [aux_sym_def_type_statement_token10] = ACTIONS(6320), + [aux_sym_def_type_statement_token11] = ACTIONS(6320), + [aux_sym_def_type_statement_token12] = ACTIONS(6320), + [aux_sym_def_type_statement_token13] = ACTIONS(6320), + [aux_sym_def_type_statement_token14] = ACTIONS(6320), + [aux_sym_call_statement_token1] = ACTIONS(6320), + [sym__ambiguous_call_statement] = ACTIONS(6320), + [aux_sym_addressof_expression_token1] = ACTIONS(6320), + [aux_sym_type_of_expression_token1] = ACTIONS(6320), + [aux_sym_unary_expression_token1] = ACTIONS(6320), + [sym_string_literal] = ACTIONS(6322), + [sym_number_literal] = ACTIONS(6322), + [aux_sym_boolean_literal_token1] = ACTIONS(6320), + [aux_sym_boolean_literal_token2] = ACTIONS(6320), + [sym_nothing_literal] = ACTIONS(6320), + [sym_null_literal] = ACTIONS(6320), + [sym_empty_literal] = ACTIONS(6320), + [sym_date_literal] = ACTIONS(6322), + [anon_sym_POUND] = ACTIONS(6320), + }, + [STATE(3464)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_array_bound_token1] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(3465)] = { + [aux_sym_const_declaration_repeat1] = STATE(3550), + [sym_identifier] = ACTIONS(8174), + [sym_newline] = ACTIONS(8176), + [anon_sym_COLON] = ACTIONS(8176), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8174), + [aux_sym_frm_property_statement_token1] = ACTIONS(8174), + [anon_sym_DOT] = ACTIONS(8174), + [anon_sym_BANG] = ACTIONS(8176), + [aux_sym__attribute_identifier_token1] = ACTIONS(8174), + [aux_sym_option_statement_token3] = ACTIONS(8174), + [aux_sym_type_declaration_token1] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8174), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8174), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8174), + [aux_sym_enum_declaration_token1] = ACTIONS(8174), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8174), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8174), + [aux_sym_declare_function_statement_token1] = ACTIONS(8174), + [aux_sym_preprocessor_const_token1] = ACTIONS(8174), + [aux_sym__property_get_header_token1] = ACTIONS(8174), + [aux_sym_event_declaration_token1] = ACTIONS(8174), + [sym_static_modifier] = ACTIONS(8174), + [sym__dim_keyword] = ACTIONS(8174), + [sym__redim_keyword] = ACTIONS(8174), + [aux_sym_get_accessor_token1] = ACTIONS(8174), + [aux_sym_set_accessor_token1] = ACTIONS(8174), + [anon_sym_COMMA] = ACTIONS(8178), + [aux_sym_const_declaration_token1] = ACTIONS(8174), + [anon_sym_LPAREN] = ACTIONS(8176), + [aux_sym_as_type_clause_token2] = ACTIONS(8174), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8174), + [aux_sym_visibility_token1] = ACTIONS(8174), + [aux_sym_visibility_token2] = ACTIONS(8174), + [aux_sym_elseif_fragment_token1] = ACTIONS(8174), + [aux_sym_else_fragment_token1] = ACTIONS(8174), + [aux_sym_select_statement_token1] = ACTIONS(8174), + [aux_sym__for_header_token1] = ACTIONS(8174), + [aux_sym_do_statement_token1] = ACTIONS(8174), + [aux_sym_do_condition_token1] = ACTIONS(8174), + [aux_sym_with_statement_token1] = ACTIONS(8174), + [aux_sym_exit_statement_token1] = ACTIONS(8174), + [sym_end_statement] = ACTIONS(8176), + [aux_sym_on_goto_statement_token1] = ACTIONS(8174), + [aux_sym_on_goto_statement_token2] = ACTIONS(8174), + [aux_sym_on_error_statement_token2] = ACTIONS(8174), + [sym__ambiguous_redim_statement] = ACTIONS(8176), + [aux_sym_erase_statement_token1] = ACTIONS(8174), + [aux_sym_open_statement_token1] = ACTIONS(8174), + [aux_sym_file_mode_token2] = ACTIONS(8174), + [aux_sym_file_access_token2] = ACTIONS(8174), + [aux_sym_file_lock_token2] = ACTIONS(8174), + [aux_sym_print_statement_token1] = ACTIONS(8174), + [anon_sym_PLUS] = ACTIONS(8176), + [anon_sym_DASH] = ACTIONS(8174), + [anon_sym_QMARK] = ACTIONS(8176), + [aux_sym_close_statement_token1] = ACTIONS(8174), + [aux_sym_put_statement_token1] = ACTIONS(8174), + [aux_sym_unlock_statement_token1] = ACTIONS(8174), + [aux_sym_seek_statement_token1] = ACTIONS(8174), + [sym_reset_statement] = ACTIONS(8174), + [aux_sym_raise_event_statement_token1] = ACTIONS(8174), + [sym_stop_statement] = ACTIONS(8174), + [sym_beep_statement] = ACTIONS(8174), + [aux_sym_unload_statement_token1] = ACTIONS(8174), + [aux_sym_def_type_statement_token1] = ACTIONS(8174), + [aux_sym_def_type_statement_token2] = ACTIONS(8174), + [aux_sym_def_type_statement_token3] = ACTIONS(8174), + [aux_sym_def_type_statement_token4] = ACTIONS(8174), + [aux_sym_def_type_statement_token5] = ACTIONS(8174), + [aux_sym_def_type_statement_token6] = ACTIONS(8174), + [aux_sym_def_type_statement_token7] = ACTIONS(8174), + [aux_sym_def_type_statement_token8] = ACTIONS(8174), + [aux_sym_def_type_statement_token9] = ACTIONS(8174), + [aux_sym_def_type_statement_token10] = ACTIONS(8174), + [aux_sym_def_type_statement_token11] = ACTIONS(8174), + [aux_sym_def_type_statement_token12] = ACTIONS(8174), + [aux_sym_def_type_statement_token13] = ACTIONS(8174), + [aux_sym_def_type_statement_token14] = ACTIONS(8174), + [aux_sym_call_statement_token1] = ACTIONS(8174), + [sym__ambiguous_call_statement] = ACTIONS(8174), + [aux_sym_addressof_expression_token1] = ACTIONS(8174), + [aux_sym_type_of_expression_token1] = ACTIONS(8174), + [aux_sym_unary_expression_token1] = ACTIONS(8174), + [sym_string_literal] = ACTIONS(8176), + [sym_number_literal] = ACTIONS(8176), + [aux_sym_boolean_literal_token1] = ACTIONS(8174), + [aux_sym_boolean_literal_token2] = ACTIONS(8174), + [sym_nothing_literal] = ACTIONS(8174), + [sym_null_literal] = ACTIONS(8174), + [sym_empty_literal] = ACTIONS(8174), + [sym_date_literal] = ACTIONS(8176), + [anon_sym_POUND] = ACTIONS(8174), + }, + [STATE(3466)] = { + [sym_identifier] = ACTIONS(6340), + [sym_newline] = ACTIONS(6342), + [anon_sym_COLON] = ACTIONS(6342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6340), + [aux_sym_frm_property_statement_token1] = ACTIONS(6340), + [anon_sym_DOT] = ACTIONS(6340), + [anon_sym_BANG] = ACTIONS(6342), + [aux_sym__attribute_identifier_token1] = ACTIONS(6340), + [aux_sym_option_statement_token3] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6340), + [aux_sym_preprocessor_const_token1] = ACTIONS(6340), + [sym_static_modifier] = ACTIONS(6340), + [sym__dim_keyword] = ACTIONS(6340), + [sym__redim_keyword] = ACTIONS(6340), + [aux_sym_get_accessor_token1] = ACTIONS(6340), + [aux_sym_set_accessor_token1] = ACTIONS(6340), + [aux_sym_const_declaration_token1] = ACTIONS(6340), + [anon_sym_LPAREN] = ACTIONS(6342), + [aux_sym_as_type_clause_token2] = ACTIONS(6340), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6340), + [aux_sym_visibility_token1] = ACTIONS(6340), + [aux_sym_visibility_token2] = ACTIONS(6340), + [aux_sym_elseif_fragment_token1] = ACTIONS(6340), + [aux_sym_else_fragment_token1] = ACTIONS(6340), + [aux_sym_select_statement_token1] = ACTIONS(6340), + [aux_sym__for_header_token1] = ACTIONS(6340), + [aux_sym_do_statement_token1] = ACTIONS(6340), + [aux_sym_do_condition_token1] = ACTIONS(6340), + [aux_sym_while_statement_token1] = ACTIONS(6340), + [aux_sym_with_statement_token1] = ACTIONS(6340), + [aux_sym_exit_statement_token1] = ACTIONS(6340), + [sym_end_statement] = ACTIONS(6342), + [aux_sym_on_goto_statement_token1] = ACTIONS(6340), + [aux_sym_on_goto_statement_token2] = ACTIONS(6340), + [aux_sym_on_error_statement_token2] = ACTIONS(6340), + [sym__ambiguous_redim_statement] = ACTIONS(6342), + [aux_sym_erase_statement_token1] = ACTIONS(6340), + [aux_sym_open_statement_token1] = ACTIONS(6340), + [aux_sym_file_mode_token2] = ACTIONS(6340), + [aux_sym_file_access_token2] = ACTIONS(6340), + [aux_sym_file_lock_token2] = ACTIONS(6340), + [aux_sym_print_statement_token1] = ACTIONS(6340), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_QMARK] = ACTIONS(6342), + [aux_sym_close_statement_token1] = ACTIONS(6340), + [aux_sym_put_statement_token1] = ACTIONS(6340), + [aux_sym_unlock_statement_token1] = ACTIONS(6340), + [aux_sym_seek_statement_token1] = ACTIONS(6340), + [sym_reset_statement] = ACTIONS(6340), + [aux_sym_raise_event_statement_token1] = ACTIONS(6340), + [sym_stop_statement] = ACTIONS(6340), + [sym_beep_statement] = ACTIONS(6340), + [aux_sym_unload_statement_token1] = ACTIONS(6340), + [aux_sym_def_type_statement_token1] = ACTIONS(6340), + [aux_sym_def_type_statement_token2] = ACTIONS(6340), + [aux_sym_def_type_statement_token3] = ACTIONS(6340), + [aux_sym_def_type_statement_token4] = ACTIONS(6340), + [aux_sym_def_type_statement_token5] = ACTIONS(6340), + [aux_sym_def_type_statement_token6] = ACTIONS(6340), + [aux_sym_def_type_statement_token7] = ACTIONS(6340), + [aux_sym_def_type_statement_token8] = ACTIONS(6340), + [aux_sym_def_type_statement_token9] = ACTIONS(6340), + [aux_sym_def_type_statement_token10] = ACTIONS(6340), + [aux_sym_def_type_statement_token11] = ACTIONS(6340), + [aux_sym_def_type_statement_token12] = ACTIONS(6340), + [aux_sym_def_type_statement_token13] = ACTIONS(6340), + [aux_sym_def_type_statement_token14] = ACTIONS(6340), + [aux_sym_call_statement_token1] = ACTIONS(6340), + [sym__ambiguous_call_statement] = ACTIONS(6340), + [aux_sym_addressof_expression_token1] = ACTIONS(6340), + [aux_sym_type_of_expression_token1] = ACTIONS(6340), + [aux_sym_unary_expression_token1] = ACTIONS(6340), + [sym_string_literal] = ACTIONS(6342), + [sym_number_literal] = ACTIONS(6342), + [aux_sym_boolean_literal_token1] = ACTIONS(6340), + [aux_sym_boolean_literal_token2] = ACTIONS(6340), + [sym_nothing_literal] = ACTIONS(6340), + [sym_null_literal] = ACTIONS(6340), + [sym_empty_literal] = ACTIONS(6340), + [sym_date_literal] = ACTIONS(6342), + [anon_sym_POUND] = ACTIONS(6340), + }, + [STATE(3467)] = { + [sym_identifier] = ACTIONS(6392), + [sym_newline] = ACTIONS(6394), + [anon_sym_COLON] = ACTIONS(6394), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6392), + [aux_sym_frm_property_statement_token1] = ACTIONS(6392), + [anon_sym_DOT] = ACTIONS(6392), + [anon_sym_BANG] = ACTIONS(6394), + [aux_sym__attribute_identifier_token1] = ACTIONS(6392), + [aux_sym_option_statement_token3] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6392), + [aux_sym_preprocessor_const_token1] = ACTIONS(6392), + [sym_static_modifier] = ACTIONS(6392), + [sym__dim_keyword] = ACTIONS(6392), + [sym__redim_keyword] = ACTIONS(6392), + [aux_sym_get_accessor_token1] = ACTIONS(6392), + [aux_sym_set_accessor_token1] = ACTIONS(6392), + [aux_sym_const_declaration_token1] = ACTIONS(6392), + [anon_sym_LPAREN] = ACTIONS(6394), + [aux_sym_as_type_clause_token2] = ACTIONS(6392), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6392), + [aux_sym_visibility_token1] = ACTIONS(6392), + [aux_sym_visibility_token2] = ACTIONS(6392), + [aux_sym_elseif_fragment_token1] = ACTIONS(6392), + [aux_sym_else_fragment_token1] = ACTIONS(6392), + [aux_sym_select_statement_token1] = ACTIONS(6392), + [aux_sym__for_header_token1] = ACTIONS(6392), + [aux_sym_do_statement_token1] = ACTIONS(6392), + [aux_sym_do_condition_token1] = ACTIONS(6392), + [aux_sym_while_statement_token1] = ACTIONS(6392), + [aux_sym_with_statement_token1] = ACTIONS(6392), + [aux_sym_exit_statement_token1] = ACTIONS(6392), + [sym_end_statement] = ACTIONS(6394), + [aux_sym_on_goto_statement_token1] = ACTIONS(6392), + [aux_sym_on_goto_statement_token2] = ACTIONS(6392), + [aux_sym_on_error_statement_token2] = ACTIONS(6392), + [sym__ambiguous_redim_statement] = ACTIONS(6394), + [aux_sym_erase_statement_token1] = ACTIONS(6392), + [aux_sym_open_statement_token1] = ACTIONS(6392), + [aux_sym_file_mode_token2] = ACTIONS(6392), + [aux_sym_file_access_token2] = ACTIONS(6392), + [aux_sym_file_lock_token2] = ACTIONS(6392), + [aux_sym_print_statement_token1] = ACTIONS(6392), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_QMARK] = ACTIONS(6394), + [aux_sym_close_statement_token1] = ACTIONS(6392), + [aux_sym_put_statement_token1] = ACTIONS(6392), + [aux_sym_unlock_statement_token1] = ACTIONS(6392), + [aux_sym_seek_statement_token1] = ACTIONS(6392), + [sym_reset_statement] = ACTIONS(6392), + [aux_sym_raise_event_statement_token1] = ACTIONS(6392), + [sym_stop_statement] = ACTIONS(6392), + [sym_beep_statement] = ACTIONS(6392), + [aux_sym_unload_statement_token1] = ACTIONS(6392), + [aux_sym_def_type_statement_token1] = ACTIONS(6392), + [aux_sym_def_type_statement_token2] = ACTIONS(6392), + [aux_sym_def_type_statement_token3] = ACTIONS(6392), + [aux_sym_def_type_statement_token4] = ACTIONS(6392), + [aux_sym_def_type_statement_token5] = ACTIONS(6392), + [aux_sym_def_type_statement_token6] = ACTIONS(6392), + [aux_sym_def_type_statement_token7] = ACTIONS(6392), + [aux_sym_def_type_statement_token8] = ACTIONS(6392), + [aux_sym_def_type_statement_token9] = ACTIONS(6392), + [aux_sym_def_type_statement_token10] = ACTIONS(6392), + [aux_sym_def_type_statement_token11] = ACTIONS(6392), + [aux_sym_def_type_statement_token12] = ACTIONS(6392), + [aux_sym_def_type_statement_token13] = ACTIONS(6392), + [aux_sym_def_type_statement_token14] = ACTIONS(6392), + [aux_sym_call_statement_token1] = ACTIONS(6392), + [sym__ambiguous_call_statement] = ACTIONS(6392), + [aux_sym_addressof_expression_token1] = ACTIONS(6392), + [aux_sym_type_of_expression_token1] = ACTIONS(6392), + [aux_sym_unary_expression_token1] = ACTIONS(6392), + [sym_string_literal] = ACTIONS(6394), + [sym_number_literal] = ACTIONS(6394), + [aux_sym_boolean_literal_token1] = ACTIONS(6392), + [aux_sym_boolean_literal_token2] = ACTIONS(6392), + [sym_nothing_literal] = ACTIONS(6392), + [sym_null_literal] = ACTIONS(6392), + [sym_empty_literal] = ACTIONS(6392), + [sym_date_literal] = ACTIONS(6394), + [anon_sym_POUND] = ACTIONS(6392), + }, + [STATE(3468)] = { + [sym_identifier] = ACTIONS(3370), + [sym_newline] = ACTIONS(3364), + [anon_sym_COLON] = ACTIONS(6646), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3370), + [aux_sym_frm_property_statement_token1] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3364), + [aux_sym__attribute_identifier_token1] = ACTIONS(3370), + [aux_sym_option_statement_token3] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3370), + [aux_sym_preprocessor_const_token1] = ACTIONS(3370), + [sym_static_modifier] = ACTIONS(3370), + [sym__dim_keyword] = ACTIONS(3370), + [sym__redim_keyword] = ACTIONS(3370), + [aux_sym_get_accessor_token1] = ACTIONS(3370), + [aux_sym_set_accessor_token1] = ACTIONS(3370), + [aux_sym_const_declaration_token1] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3364), + [aux_sym_as_type_clause_token2] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3370), + [aux_sym_visibility_token1] = ACTIONS(3370), + [aux_sym_visibility_token2] = ACTIONS(3370), + [aux_sym_elseif_fragment_token1] = ACTIONS(3370), + [aux_sym_else_fragment_token1] = ACTIONS(3370), + [aux_sym_select_statement_token1] = ACTIONS(3370), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_statement_token2] = ACTIONS(3370), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(3370), + [sym_end_statement] = ACTIONS(3364), + [aux_sym_on_goto_statement_token1] = ACTIONS(3370), + [aux_sym_on_goto_statement_token2] = ACTIONS(3370), + [aux_sym_on_error_statement_token2] = ACTIONS(3370), + [sym__ambiguous_redim_statement] = ACTIONS(3364), + [aux_sym_erase_statement_token1] = ACTIONS(3370), + [aux_sym_open_statement_token1] = ACTIONS(3370), + [aux_sym_file_mode_token2] = ACTIONS(3370), + [aux_sym_file_access_token2] = ACTIONS(3370), + [aux_sym_file_lock_token2] = ACTIONS(3370), + [aux_sym_print_statement_token1] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(3364), + [aux_sym_close_statement_token1] = ACTIONS(3370), + [aux_sym_put_statement_token1] = ACTIONS(3370), + [aux_sym_unlock_statement_token1] = ACTIONS(3370), + [aux_sym_seek_statement_token1] = ACTIONS(3370), + [sym_reset_statement] = ACTIONS(3370), + [aux_sym_raise_event_statement_token1] = ACTIONS(3370), + [sym_stop_statement] = ACTIONS(3370), + [sym_beep_statement] = ACTIONS(3370), + [aux_sym_unload_statement_token1] = ACTIONS(3370), + [aux_sym_def_type_statement_token1] = ACTIONS(3370), + [aux_sym_def_type_statement_token2] = ACTIONS(3370), + [aux_sym_def_type_statement_token3] = ACTIONS(3370), + [aux_sym_def_type_statement_token4] = ACTIONS(3370), + [aux_sym_def_type_statement_token5] = ACTIONS(3370), + [aux_sym_def_type_statement_token6] = ACTIONS(3370), + [aux_sym_def_type_statement_token7] = ACTIONS(3370), + [aux_sym_def_type_statement_token8] = ACTIONS(3370), + [aux_sym_def_type_statement_token9] = ACTIONS(3370), + [aux_sym_def_type_statement_token10] = ACTIONS(3370), + [aux_sym_def_type_statement_token11] = ACTIONS(3370), + [aux_sym_def_type_statement_token12] = ACTIONS(3370), + [aux_sym_def_type_statement_token13] = ACTIONS(3370), + [aux_sym_def_type_statement_token14] = ACTIONS(3370), + [aux_sym_call_statement_token1] = ACTIONS(3370), + [sym__ambiguous_call_statement] = ACTIONS(3370), + [aux_sym_addressof_expression_token1] = ACTIONS(3370), + [aux_sym_type_of_expression_token1] = ACTIONS(3370), + [aux_sym_unary_expression_token1] = ACTIONS(3370), + [sym_string_literal] = ACTIONS(3364), + [sym_number_literal] = ACTIONS(3364), + [aux_sym_boolean_literal_token1] = ACTIONS(3370), + [aux_sym_boolean_literal_token2] = ACTIONS(3370), + [sym_nothing_literal] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3370), + [sym_empty_literal] = ACTIONS(3370), + [sym_date_literal] = ACTIONS(3364), + [anon_sym_POUND] = ACTIONS(3370), + }, + [STATE(3469)] = { + [aux_sym__argument_sequence_repeat1] = STATE(4059), + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(4060), + [sym_identifier] = ACTIONS(7651), + [sym_newline] = ACTIONS(7653), + [anon_sym_COLON] = ACTIONS(7653), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7651), + [aux_sym_frm_property_statement_token1] = ACTIONS(7651), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_BANG] = ACTIONS(7653), + [aux_sym__attribute_identifier_token1] = ACTIONS(7651), + [aux_sym_option_statement_token3] = ACTIONS(7651), + [aux_sym_type_declaration_token1] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7651), + [aux_sym_enum_declaration_token1] = ACTIONS(7651), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7651), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7651), + [aux_sym_declare_function_statement_token1] = ACTIONS(7651), + [aux_sym_preprocessor_const_token1] = ACTIONS(7651), + [aux_sym__property_get_header_token1] = ACTIONS(7651), + [aux_sym_event_declaration_token1] = ACTIONS(7651), + [sym_static_modifier] = ACTIONS(7651), + [sym__dim_keyword] = ACTIONS(7651), + [sym__redim_keyword] = ACTIONS(7651), + [aux_sym_get_accessor_token1] = ACTIONS(7651), + [aux_sym_set_accessor_token1] = ACTIONS(7651), + [anon_sym_COMMA] = ACTIONS(8180), + [aux_sym_const_declaration_token1] = ACTIONS(7651), + [anon_sym_LPAREN] = ACTIONS(7653), + [aux_sym_as_type_clause_token2] = ACTIONS(7651), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7651), + [aux_sym_visibility_token1] = ACTIONS(7651), + [aux_sym_visibility_token2] = ACTIONS(7651), + [aux_sym_elseif_fragment_token1] = ACTIONS(7651), + [aux_sym_else_fragment_token1] = ACTIONS(7651), + [aux_sym_select_statement_token1] = ACTIONS(7651), + [aux_sym__for_header_token1] = ACTIONS(7651), + [aux_sym_do_statement_token1] = ACTIONS(7651), + [aux_sym_do_condition_token1] = ACTIONS(7651), + [aux_sym_with_statement_token1] = ACTIONS(7651), + [aux_sym_exit_statement_token1] = ACTIONS(7651), + [sym_end_statement] = ACTIONS(7653), + [aux_sym_on_goto_statement_token1] = ACTIONS(7651), + [aux_sym_on_goto_statement_token2] = ACTIONS(7651), + [aux_sym_on_error_statement_token2] = ACTIONS(7651), + [sym__ambiguous_redim_statement] = ACTIONS(7653), + [aux_sym_erase_statement_token1] = ACTIONS(7651), + [aux_sym_open_statement_token1] = ACTIONS(7651), + [aux_sym_file_mode_token2] = ACTIONS(7651), + [aux_sym_file_access_token2] = ACTIONS(7651), + [aux_sym_file_lock_token2] = ACTIONS(7651), + [aux_sym_print_statement_token1] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_SEMI] = ACTIONS(8182), + [anon_sym_QMARK] = ACTIONS(7653), + [aux_sym_close_statement_token1] = ACTIONS(7651), + [aux_sym_put_statement_token1] = ACTIONS(7651), + [aux_sym_unlock_statement_token1] = ACTIONS(7651), + [aux_sym_seek_statement_token1] = ACTIONS(7651), + [sym_reset_statement] = ACTIONS(7651), + [aux_sym_raise_event_statement_token1] = ACTIONS(7651), + [sym_stop_statement] = ACTIONS(7651), + [sym_beep_statement] = ACTIONS(7651), + [aux_sym_unload_statement_token1] = ACTIONS(7651), + [aux_sym_def_type_statement_token1] = ACTIONS(7651), + [aux_sym_def_type_statement_token2] = ACTIONS(7651), + [aux_sym_def_type_statement_token3] = ACTIONS(7651), + [aux_sym_def_type_statement_token4] = ACTIONS(7651), + [aux_sym_def_type_statement_token5] = ACTIONS(7651), + [aux_sym_def_type_statement_token6] = ACTIONS(7651), + [aux_sym_def_type_statement_token7] = ACTIONS(7651), + [aux_sym_def_type_statement_token8] = ACTIONS(7651), + [aux_sym_def_type_statement_token9] = ACTIONS(7651), + [aux_sym_def_type_statement_token10] = ACTIONS(7651), + [aux_sym_def_type_statement_token11] = ACTIONS(7651), + [aux_sym_def_type_statement_token12] = ACTIONS(7651), + [aux_sym_def_type_statement_token13] = ACTIONS(7651), + [aux_sym_def_type_statement_token14] = ACTIONS(7651), + [aux_sym_call_statement_token1] = ACTIONS(7651), + [sym__ambiguous_call_statement] = ACTIONS(7651), + [aux_sym_addressof_expression_token1] = ACTIONS(7651), + [aux_sym_type_of_expression_token1] = ACTIONS(7651), + [aux_sym_unary_expression_token1] = ACTIONS(7651), + [sym_string_literal] = ACTIONS(7653), + [sym_number_literal] = ACTIONS(7653), + [aux_sym_boolean_literal_token1] = ACTIONS(7651), + [aux_sym_boolean_literal_token2] = ACTIONS(7651), + [sym_nothing_literal] = ACTIONS(7651), + [sym_null_literal] = ACTIONS(7651), + [sym_empty_literal] = ACTIONS(7651), + [sym_date_literal] = ACTIONS(7653), + [anon_sym_POUND] = ACTIONS(7651), + }, + [STATE(3470)] = { + [sym_char_position] = STATE(370), + [aux_sym_output_list_repeat1] = STATE(3511), + [sym_identifier] = ACTIONS(7474), + [sym_newline] = ACTIONS(7476), + [anon_sym_COLON] = ACTIONS(7476), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7474), + [aux_sym_frm_property_statement_token1] = ACTIONS(7474), + [anon_sym_DOT] = ACTIONS(7474), + [anon_sym_BANG] = ACTIONS(7476), + [aux_sym__attribute_identifier_token1] = ACTIONS(7474), + [aux_sym_option_statement_token3] = ACTIONS(7474), + [aux_sym_type_declaration_token1] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7474), + [aux_sym_enum_declaration_token1] = ACTIONS(7474), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7474), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7474), + [aux_sym_declare_function_statement_token1] = ACTIONS(7474), + [aux_sym_preprocessor_const_token1] = ACTIONS(7474), + [aux_sym__property_get_header_token1] = ACTIONS(7474), + [aux_sym_event_declaration_token1] = ACTIONS(7474), + [sym_static_modifier] = ACTIONS(7474), + [sym__dim_keyword] = ACTIONS(7474), + [sym__redim_keyword] = ACTIONS(7474), + [aux_sym_get_accessor_token1] = ACTIONS(7474), + [aux_sym_set_accessor_token1] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(8152), + [aux_sym_const_declaration_token1] = ACTIONS(7474), + [anon_sym_LPAREN] = ACTIONS(7476), + [aux_sym_as_type_clause_token2] = ACTIONS(7474), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7474), + [aux_sym_visibility_token1] = ACTIONS(7474), + [aux_sym_visibility_token2] = ACTIONS(7474), + [aux_sym_elseif_fragment_token1] = ACTIONS(7474), + [aux_sym_else_fragment_token1] = ACTIONS(7474), + [aux_sym_select_statement_token1] = ACTIONS(7474), + [aux_sym__for_header_token1] = ACTIONS(7474), + [aux_sym_do_statement_token1] = ACTIONS(7474), + [aux_sym_do_condition_token1] = ACTIONS(7474), + [aux_sym_with_statement_token1] = ACTIONS(7474), + [aux_sym_exit_statement_token1] = ACTIONS(7474), + [sym_end_statement] = ACTIONS(7476), + [aux_sym_on_goto_statement_token1] = ACTIONS(7474), + [aux_sym_on_goto_statement_token2] = ACTIONS(7474), + [aux_sym_on_error_statement_token2] = ACTIONS(7474), + [sym__ambiguous_redim_statement] = ACTIONS(7476), + [aux_sym_erase_statement_token1] = ACTIONS(7474), + [aux_sym_open_statement_token1] = ACTIONS(7474), + [aux_sym_file_mode_token2] = ACTIONS(7474), + [aux_sym_file_access_token2] = ACTIONS(7474), + [aux_sym_file_lock_token2] = ACTIONS(7474), + [aux_sym_print_statement_token1] = ACTIONS(7474), + [anon_sym_PLUS] = ACTIONS(7476), + [anon_sym_DASH] = ACTIONS(7474), + [anon_sym_SEMI] = ACTIONS(8152), + [anon_sym_QMARK] = ACTIONS(7476), + [aux_sym_close_statement_token1] = ACTIONS(7474), + [aux_sym_put_statement_token1] = ACTIONS(7474), + [aux_sym_unlock_statement_token1] = ACTIONS(7474), + [aux_sym_seek_statement_token1] = ACTIONS(7474), + [sym_reset_statement] = ACTIONS(7474), + [aux_sym_raise_event_statement_token1] = ACTIONS(7474), + [sym_stop_statement] = ACTIONS(7474), + [sym_beep_statement] = ACTIONS(7474), + [aux_sym_unload_statement_token1] = ACTIONS(7474), + [aux_sym_def_type_statement_token1] = ACTIONS(7474), + [aux_sym_def_type_statement_token2] = ACTIONS(7474), + [aux_sym_def_type_statement_token3] = ACTIONS(7474), + [aux_sym_def_type_statement_token4] = ACTIONS(7474), + [aux_sym_def_type_statement_token5] = ACTIONS(7474), + [aux_sym_def_type_statement_token6] = ACTIONS(7474), + [aux_sym_def_type_statement_token7] = ACTIONS(7474), + [aux_sym_def_type_statement_token8] = ACTIONS(7474), + [aux_sym_def_type_statement_token9] = ACTIONS(7474), + [aux_sym_def_type_statement_token10] = ACTIONS(7474), + [aux_sym_def_type_statement_token11] = ACTIONS(7474), + [aux_sym_def_type_statement_token12] = ACTIONS(7474), + [aux_sym_def_type_statement_token13] = ACTIONS(7474), + [aux_sym_def_type_statement_token14] = ACTIONS(7474), + [aux_sym_call_statement_token1] = ACTIONS(7474), + [sym__ambiguous_call_statement] = ACTIONS(7474), + [aux_sym_addressof_expression_token1] = ACTIONS(7474), + [aux_sym_type_of_expression_token1] = ACTIONS(7474), + [aux_sym_unary_expression_token1] = ACTIONS(7474), + [sym_string_literal] = ACTIONS(7476), + [sym_number_literal] = ACTIONS(7476), + [aux_sym_boolean_literal_token1] = ACTIONS(7474), + [aux_sym_boolean_literal_token2] = ACTIONS(7474), + [sym_nothing_literal] = ACTIONS(7474), + [sym_null_literal] = ACTIONS(7474), + [sym_empty_literal] = ACTIONS(7474), + [sym_date_literal] = ACTIONS(7476), + [anon_sym_POUND] = ACTIONS(7474), + }, + [STATE(3471)] = { + [sym_as_type_clause] = STATE(3994), + [sym_identifier] = ACTIONS(8184), + [sym_newline] = ACTIONS(8186), + [anon_sym_COLON] = ACTIONS(8186), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8184), + [aux_sym_frm_property_statement_token1] = ACTIONS(8184), + [anon_sym_DOT] = ACTIONS(8184), + [anon_sym_BANG] = ACTIONS(8186), + [aux_sym__attribute_identifier_token1] = ACTIONS(8184), + [aux_sym_option_statement_token3] = ACTIONS(8184), + [aux_sym_type_declaration_token1] = ACTIONS(8184), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8184), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8184), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8184), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8184), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8184), + [aux_sym_enum_declaration_token1] = ACTIONS(8184), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8184), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8184), + [aux_sym_declare_function_statement_token1] = ACTIONS(8184), + [aux_sym_preprocessor_const_token1] = ACTIONS(8184), + [aux_sym__property_get_header_token1] = ACTIONS(8184), + [aux_sym_event_declaration_token1] = ACTIONS(8184), + [sym_static_modifier] = ACTIONS(8184), + [sym__dim_keyword] = ACTIONS(8184), + [sym__redim_keyword] = ACTIONS(8184), + [aux_sym_get_accessor_token1] = ACTIONS(8184), + [aux_sym_set_accessor_token1] = ACTIONS(8184), + [aux_sym_const_declaration_token1] = ACTIONS(8184), + [anon_sym_LPAREN] = ACTIONS(8186), + [aux_sym_as_type_clause_token1] = ACTIONS(7428), + [aux_sym_as_type_clause_token2] = ACTIONS(8184), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8184), + [aux_sym_visibility_token1] = ACTIONS(8184), + [aux_sym_visibility_token2] = ACTIONS(8184), + [aux_sym_elseif_fragment_token1] = ACTIONS(8184), + [aux_sym_else_fragment_token1] = ACTIONS(8184), + [aux_sym_select_statement_token1] = ACTIONS(8184), + [aux_sym__for_header_token1] = ACTIONS(8184), + [aux_sym_do_statement_token1] = ACTIONS(8184), + [aux_sym_do_condition_token1] = ACTIONS(8184), + [aux_sym_with_statement_token1] = ACTIONS(8184), + [aux_sym_exit_statement_token1] = ACTIONS(8184), + [sym_end_statement] = ACTIONS(8186), + [aux_sym_on_goto_statement_token1] = ACTIONS(8184), + [aux_sym_on_goto_statement_token2] = ACTIONS(8184), + [aux_sym_on_error_statement_token2] = ACTIONS(8184), + [sym__ambiguous_redim_statement] = ACTIONS(8186), + [aux_sym_erase_statement_token1] = ACTIONS(8184), + [aux_sym_open_statement_token1] = ACTIONS(8184), + [aux_sym_file_mode_token2] = ACTIONS(8184), + [aux_sym_file_access_token2] = ACTIONS(8184), + [aux_sym_file_lock_token2] = ACTIONS(8184), + [aux_sym_print_statement_token1] = ACTIONS(8184), + [anon_sym_PLUS] = ACTIONS(8186), + [anon_sym_DASH] = ACTIONS(8184), + [anon_sym_QMARK] = ACTIONS(8186), + [aux_sym_close_statement_token1] = ACTIONS(8184), + [aux_sym_put_statement_token1] = ACTIONS(8184), + [aux_sym_unlock_statement_token1] = ACTIONS(8184), + [aux_sym_seek_statement_token1] = ACTIONS(8184), + [sym_reset_statement] = ACTIONS(8184), + [aux_sym_raise_event_statement_token1] = ACTIONS(8184), + [sym_stop_statement] = ACTIONS(8184), + [sym_beep_statement] = ACTIONS(8184), + [aux_sym_unload_statement_token1] = ACTIONS(8184), + [aux_sym_def_type_statement_token1] = ACTIONS(8184), + [aux_sym_def_type_statement_token2] = ACTIONS(8184), + [aux_sym_def_type_statement_token3] = ACTIONS(8184), + [aux_sym_def_type_statement_token4] = ACTIONS(8184), + [aux_sym_def_type_statement_token5] = ACTIONS(8184), + [aux_sym_def_type_statement_token6] = ACTIONS(8184), + [aux_sym_def_type_statement_token7] = ACTIONS(8184), + [aux_sym_def_type_statement_token8] = ACTIONS(8184), + [aux_sym_def_type_statement_token9] = ACTIONS(8184), + [aux_sym_def_type_statement_token10] = ACTIONS(8184), + [aux_sym_def_type_statement_token11] = ACTIONS(8184), + [aux_sym_def_type_statement_token12] = ACTIONS(8184), + [aux_sym_def_type_statement_token13] = ACTIONS(8184), + [aux_sym_def_type_statement_token14] = ACTIONS(8184), + [aux_sym_call_statement_token1] = ACTIONS(8184), + [sym__ambiguous_call_statement] = ACTIONS(8184), + [aux_sym_addressof_expression_token1] = ACTIONS(8184), + [aux_sym_type_of_expression_token1] = ACTIONS(8184), + [aux_sym_unary_expression_token1] = ACTIONS(8184), + [sym_string_literal] = ACTIONS(8186), + [sym_number_literal] = ACTIONS(8186), + [aux_sym_boolean_literal_token1] = ACTIONS(8184), + [aux_sym_boolean_literal_token2] = ACTIONS(8184), + [sym_nothing_literal] = ACTIONS(8184), + [sym_null_literal] = ACTIONS(8184), + [sym_empty_literal] = ACTIONS(8184), + [sym_date_literal] = ACTIONS(8186), + [anon_sym_POUND] = ACTIONS(8184), + }, + [STATE(3472)] = { + [sym_do_condition] = STATE(4036), + [sym_identifier] = ACTIONS(8188), + [sym_newline] = ACTIONS(8190), + [anon_sym_COLON] = ACTIONS(8190), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8188), + [aux_sym_frm_property_statement_token1] = ACTIONS(8188), + [anon_sym_DOT] = ACTIONS(8188), + [anon_sym_BANG] = ACTIONS(8190), + [aux_sym__attribute_identifier_token1] = ACTIONS(8188), + [aux_sym_option_statement_token3] = ACTIONS(8188), + [aux_sym_type_declaration_token1] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8188), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8188), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8188), + [aux_sym_enum_declaration_token1] = ACTIONS(8188), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8188), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8188), + [aux_sym_declare_function_statement_token1] = ACTIONS(8188), + [aux_sym_preprocessor_const_token1] = ACTIONS(8188), + [aux_sym__property_get_header_token1] = ACTIONS(8188), + [aux_sym_event_declaration_token1] = ACTIONS(8188), + [sym_static_modifier] = ACTIONS(8188), + [sym__dim_keyword] = ACTIONS(8188), + [sym__redim_keyword] = ACTIONS(8188), + [aux_sym_get_accessor_token1] = ACTIONS(8188), + [aux_sym_set_accessor_token1] = ACTIONS(8188), + [aux_sym_const_declaration_token1] = ACTIONS(8188), + [anon_sym_LPAREN] = ACTIONS(8190), + [aux_sym_as_type_clause_token2] = ACTIONS(8188), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8188), + [aux_sym_visibility_token1] = ACTIONS(8188), + [aux_sym_visibility_token2] = ACTIONS(8188), + [aux_sym_elseif_fragment_token1] = ACTIONS(8188), + [aux_sym_else_fragment_token1] = ACTIONS(8188), + [aux_sym_select_statement_token1] = ACTIONS(8188), + [aux_sym__for_header_token1] = ACTIONS(8188), + [aux_sym_do_statement_token1] = ACTIONS(8188), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8188), + [aux_sym_exit_statement_token1] = ACTIONS(8188), + [sym_end_statement] = ACTIONS(8190), + [aux_sym_on_goto_statement_token1] = ACTIONS(8188), + [aux_sym_on_goto_statement_token2] = ACTIONS(8188), + [aux_sym_on_error_statement_token2] = ACTIONS(8188), + [sym__ambiguous_redim_statement] = ACTIONS(8190), + [aux_sym_erase_statement_token1] = ACTIONS(8188), + [aux_sym_open_statement_token1] = ACTIONS(8188), + [aux_sym_file_mode_token2] = ACTIONS(8188), + [aux_sym_file_access_token2] = ACTIONS(8188), + [aux_sym_file_lock_token2] = ACTIONS(8188), + [aux_sym_print_statement_token1] = ACTIONS(8188), + [anon_sym_PLUS] = ACTIONS(8190), + [anon_sym_DASH] = ACTIONS(8188), + [anon_sym_QMARK] = ACTIONS(8190), + [aux_sym_close_statement_token1] = ACTIONS(8188), + [aux_sym_put_statement_token1] = ACTIONS(8188), + [aux_sym_unlock_statement_token1] = ACTIONS(8188), + [aux_sym_seek_statement_token1] = ACTIONS(8188), + [sym_reset_statement] = ACTIONS(8188), + [aux_sym_raise_event_statement_token1] = ACTIONS(8188), + [sym_stop_statement] = ACTIONS(8188), + [sym_beep_statement] = ACTIONS(8188), + [aux_sym_unload_statement_token1] = ACTIONS(8188), + [aux_sym_def_type_statement_token1] = ACTIONS(8188), + [aux_sym_def_type_statement_token2] = ACTIONS(8188), + [aux_sym_def_type_statement_token3] = ACTIONS(8188), + [aux_sym_def_type_statement_token4] = ACTIONS(8188), + [aux_sym_def_type_statement_token5] = ACTIONS(8188), + [aux_sym_def_type_statement_token6] = ACTIONS(8188), + [aux_sym_def_type_statement_token7] = ACTIONS(8188), + [aux_sym_def_type_statement_token8] = ACTIONS(8188), + [aux_sym_def_type_statement_token9] = ACTIONS(8188), + [aux_sym_def_type_statement_token10] = ACTIONS(8188), + [aux_sym_def_type_statement_token11] = ACTIONS(8188), + [aux_sym_def_type_statement_token12] = ACTIONS(8188), + [aux_sym_def_type_statement_token13] = ACTIONS(8188), + [aux_sym_def_type_statement_token14] = ACTIONS(8188), + [aux_sym_call_statement_token1] = ACTIONS(8188), + [sym__ambiguous_call_statement] = ACTIONS(8188), + [aux_sym_addressof_expression_token1] = ACTIONS(8188), + [aux_sym_type_of_expression_token1] = ACTIONS(8188), + [aux_sym_unary_expression_token1] = ACTIONS(8188), + [sym_string_literal] = ACTIONS(8190), + [sym_number_literal] = ACTIONS(8190), + [aux_sym_boolean_literal_token1] = ACTIONS(8188), + [aux_sym_boolean_literal_token2] = ACTIONS(8188), + [sym_nothing_literal] = ACTIONS(8188), + [sym_null_literal] = ACTIONS(8188), + [sym_empty_literal] = ACTIONS(8188), + [sym_date_literal] = ACTIONS(8190), + [anon_sym_POUND] = ACTIONS(8188), + }, + [STATE(3473)] = { + [sym_identifier] = ACTIONS(6625), + [sym_newline] = ACTIONS(6627), + [anon_sym_COLON] = ACTIONS(6627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6625), + [aux_sym_frm_property_statement_token1] = ACTIONS(6625), + [anon_sym_DOT] = ACTIONS(6625), + [anon_sym_BANG] = ACTIONS(6627), + [aux_sym__attribute_identifier_token1] = ACTIONS(6625), + [aux_sym_option_statement_token3] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6625), + [aux_sym_preprocessor_const_token1] = ACTIONS(6625), + [sym_static_modifier] = ACTIONS(6625), + [sym__dim_keyword] = ACTIONS(6625), + [sym__redim_keyword] = ACTIONS(6625), + [aux_sym_get_accessor_token1] = ACTIONS(6625), + [aux_sym_set_accessor_token1] = ACTIONS(6625), + [aux_sym_const_declaration_token1] = ACTIONS(6625), + [anon_sym_LPAREN] = ACTIONS(6627), + [aux_sym_as_type_clause_token2] = ACTIONS(6625), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6625), + [aux_sym_visibility_token1] = ACTIONS(6625), + [aux_sym_visibility_token2] = ACTIONS(6625), + [aux_sym_elseif_fragment_token1] = ACTIONS(6625), + [aux_sym_else_fragment_token1] = ACTIONS(6625), + [aux_sym_select_statement_token1] = ACTIONS(6625), + [aux_sym_select_statement_token2] = ACTIONS(6625), + [aux_sym__for_header_token1] = ACTIONS(6625), + [aux_sym_do_statement_token1] = ACTIONS(6625), + [aux_sym_do_condition_token1] = ACTIONS(6625), + [aux_sym_with_statement_token1] = ACTIONS(6625), + [aux_sym_exit_statement_token1] = ACTIONS(6625), + [sym_end_statement] = ACTIONS(6627), + [aux_sym_on_goto_statement_token1] = ACTIONS(6625), + [aux_sym_on_goto_statement_token2] = ACTIONS(6625), + [aux_sym_on_error_statement_token2] = ACTIONS(6625), + [sym__ambiguous_redim_statement] = ACTIONS(6627), + [aux_sym_erase_statement_token1] = ACTIONS(6625), + [aux_sym_open_statement_token1] = ACTIONS(6625), + [aux_sym_file_mode_token2] = ACTIONS(6625), + [aux_sym_file_access_token2] = ACTIONS(6625), + [aux_sym_file_lock_token2] = ACTIONS(6625), + [aux_sym_print_statement_token1] = ACTIONS(6625), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_QMARK] = ACTIONS(6627), + [aux_sym_close_statement_token1] = ACTIONS(6625), + [aux_sym_put_statement_token1] = ACTIONS(6625), + [aux_sym_unlock_statement_token1] = ACTIONS(6625), + [aux_sym_seek_statement_token1] = ACTIONS(6625), + [sym_reset_statement] = ACTIONS(6625), + [aux_sym_raise_event_statement_token1] = ACTIONS(6625), + [sym_stop_statement] = ACTIONS(6625), + [sym_beep_statement] = ACTIONS(6625), + [aux_sym_unload_statement_token1] = ACTIONS(6625), + [aux_sym_def_type_statement_token1] = ACTIONS(6625), + [aux_sym_def_type_statement_token2] = ACTIONS(6625), + [aux_sym_def_type_statement_token3] = ACTIONS(6625), + [aux_sym_def_type_statement_token4] = ACTIONS(6625), + [aux_sym_def_type_statement_token5] = ACTIONS(6625), + [aux_sym_def_type_statement_token6] = ACTIONS(6625), + [aux_sym_def_type_statement_token7] = ACTIONS(6625), + [aux_sym_def_type_statement_token8] = ACTIONS(6625), + [aux_sym_def_type_statement_token9] = ACTIONS(6625), + [aux_sym_def_type_statement_token10] = ACTIONS(6625), + [aux_sym_def_type_statement_token11] = ACTIONS(6625), + [aux_sym_def_type_statement_token12] = ACTIONS(6625), + [aux_sym_def_type_statement_token13] = ACTIONS(6625), + [aux_sym_def_type_statement_token14] = ACTIONS(6625), + [aux_sym_call_statement_token1] = ACTIONS(6625), + [sym__ambiguous_call_statement] = ACTIONS(6625), + [aux_sym_addressof_expression_token1] = ACTIONS(6625), + [aux_sym_type_of_expression_token1] = ACTIONS(6625), + [aux_sym_unary_expression_token1] = ACTIONS(6625), + [sym_string_literal] = ACTIONS(6627), + [sym_number_literal] = ACTIONS(6627), + [aux_sym_boolean_literal_token1] = ACTIONS(6625), + [aux_sym_boolean_literal_token2] = ACTIONS(6625), + [sym_nothing_literal] = ACTIONS(6625), + [sym_null_literal] = ACTIONS(6625), + [sym_empty_literal] = ACTIONS(6625), + [sym_date_literal] = ACTIONS(6627), + [anon_sym_POUND] = ACTIONS(6625), + }, + [STATE(3474)] = { + [sym_identifier] = ACTIONS(5716), + [sym_newline] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5716), + [aux_sym_frm_property_statement_token1] = ACTIONS(5716), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_BANG] = ACTIONS(5718), + [aux_sym__attribute_identifier_token1] = ACTIONS(5716), + [aux_sym_option_statement_token3] = ACTIONS(5716), + [aux_sym_type_declaration_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5716), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5716), + [aux_sym_enum_declaration_token1] = ACTIONS(5716), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5716), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5716), + [aux_sym_declare_function_statement_token1] = ACTIONS(5716), + [aux_sym_preprocessor_const_token1] = ACTIONS(5716), + [aux_sym__property_get_header_token1] = ACTIONS(5716), + [aux_sym_event_declaration_token1] = ACTIONS(5716), + [sym_static_modifier] = ACTIONS(5716), + [sym__dim_keyword] = ACTIONS(5716), + [sym__redim_keyword] = ACTIONS(5716), + [aux_sym_get_accessor_token1] = ACTIONS(5716), + [aux_sym_set_accessor_token1] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5718), + [aux_sym_const_declaration_token1] = ACTIONS(5716), + [anon_sym_LPAREN] = ACTIONS(5718), + [aux_sym_as_type_clause_token2] = ACTIONS(5716), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5716), + [aux_sym_visibility_token1] = ACTIONS(5716), + [aux_sym_visibility_token2] = ACTIONS(5716), + [aux_sym_elseif_fragment_token1] = ACTIONS(5716), + [aux_sym_else_fragment_token1] = ACTIONS(5716), + [aux_sym_select_statement_token1] = ACTIONS(5716), + [aux_sym__for_header_token1] = ACTIONS(5716), + [aux_sym_do_statement_token1] = ACTIONS(5716), + [aux_sym_do_condition_token1] = ACTIONS(5716), + [aux_sym_with_statement_token1] = ACTIONS(5716), + [aux_sym_exit_statement_token1] = ACTIONS(5716), + [sym_end_statement] = ACTIONS(5718), + [aux_sym_on_goto_statement_token1] = ACTIONS(5716), + [aux_sym_on_goto_statement_token2] = ACTIONS(5716), + [aux_sym_on_error_statement_token2] = ACTIONS(5716), + [sym__ambiguous_redim_statement] = ACTIONS(5718), + [aux_sym_erase_statement_token1] = ACTIONS(5716), + [aux_sym_open_statement_token1] = ACTIONS(5716), + [aux_sym_file_mode_token2] = ACTIONS(5716), + [aux_sym_file_access_token2] = ACTIONS(5716), + [aux_sym_file_lock_token2] = ACTIONS(5716), + [aux_sym_print_statement_token1] = ACTIONS(5716), + [anon_sym_PLUS] = ACTIONS(5718), + [anon_sym_DASH] = ACTIONS(5716), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [aux_sym_close_statement_token1] = ACTIONS(5716), + [aux_sym_put_statement_token1] = ACTIONS(5716), + [aux_sym_unlock_statement_token1] = ACTIONS(5716), + [aux_sym_seek_statement_token1] = ACTIONS(5716), + [sym_reset_statement] = ACTIONS(5716), + [aux_sym_raise_event_statement_token1] = ACTIONS(5716), + [sym_stop_statement] = ACTIONS(5716), + [sym_beep_statement] = ACTIONS(5716), + [aux_sym_unload_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token2] = ACTIONS(5716), + [aux_sym_def_type_statement_token3] = ACTIONS(5716), + [aux_sym_def_type_statement_token4] = ACTIONS(5716), + [aux_sym_def_type_statement_token5] = ACTIONS(5716), + [aux_sym_def_type_statement_token6] = ACTIONS(5716), + [aux_sym_def_type_statement_token7] = ACTIONS(5716), + [aux_sym_def_type_statement_token8] = ACTIONS(5716), + [aux_sym_def_type_statement_token9] = ACTIONS(5716), + [aux_sym_def_type_statement_token10] = ACTIONS(5716), + [aux_sym_def_type_statement_token11] = ACTIONS(5716), + [aux_sym_def_type_statement_token12] = ACTIONS(5716), + [aux_sym_def_type_statement_token13] = ACTIONS(5716), + [aux_sym_def_type_statement_token14] = ACTIONS(5716), + [aux_sym_call_statement_token1] = ACTIONS(5716), + [sym__ambiguous_call_statement] = ACTIONS(5716), + [aux_sym_addressof_expression_token1] = ACTIONS(5716), + [aux_sym_type_of_expression_token1] = ACTIONS(5716), + [aux_sym_unary_expression_token1] = ACTIONS(5716), + [sym_string_literal] = ACTIONS(5718), + [sym_number_literal] = ACTIONS(5718), + [aux_sym_boolean_literal_token1] = ACTIONS(5716), + [aux_sym_boolean_literal_token2] = ACTIONS(5716), + [sym_nothing_literal] = ACTIONS(5716), + [sym_null_literal] = ACTIONS(5716), + [sym_empty_literal] = ACTIONS(5716), + [sym_date_literal] = ACTIONS(5718), + [anon_sym_POUND] = ACTIONS(5716), + }, + [STATE(3475)] = { + [sym_do_condition] = STATE(4037), + [sym_identifier] = ACTIONS(8192), + [sym_newline] = ACTIONS(8194), + [anon_sym_COLON] = ACTIONS(8194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8192), + [aux_sym_frm_property_statement_token1] = ACTIONS(8192), + [anon_sym_DOT] = ACTIONS(8192), + [anon_sym_BANG] = ACTIONS(8194), + [aux_sym__attribute_identifier_token1] = ACTIONS(8192), + [aux_sym_option_statement_token3] = ACTIONS(8192), + [aux_sym_type_declaration_token1] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8192), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8192), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8192), + [aux_sym_enum_declaration_token1] = ACTIONS(8192), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8192), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8192), + [aux_sym_declare_function_statement_token1] = ACTIONS(8192), + [aux_sym_preprocessor_const_token1] = ACTIONS(8192), + [aux_sym__property_get_header_token1] = ACTIONS(8192), + [aux_sym_event_declaration_token1] = ACTIONS(8192), + [sym_static_modifier] = ACTIONS(8192), + [sym__dim_keyword] = ACTIONS(8192), + [sym__redim_keyword] = ACTIONS(8192), + [aux_sym_get_accessor_token1] = ACTIONS(8192), + [aux_sym_set_accessor_token1] = ACTIONS(8192), + [aux_sym_const_declaration_token1] = ACTIONS(8192), + [anon_sym_LPAREN] = ACTIONS(8194), + [aux_sym_as_type_clause_token2] = ACTIONS(8192), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8192), + [aux_sym_visibility_token1] = ACTIONS(8192), + [aux_sym_visibility_token2] = ACTIONS(8192), + [aux_sym_elseif_fragment_token1] = ACTIONS(8192), + [aux_sym_else_fragment_token1] = ACTIONS(8192), + [aux_sym_select_statement_token1] = ACTIONS(8192), + [aux_sym__for_header_token1] = ACTIONS(8192), + [aux_sym_do_statement_token1] = ACTIONS(8192), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8192), + [aux_sym_exit_statement_token1] = ACTIONS(8192), + [sym_end_statement] = ACTIONS(8194), + [aux_sym_on_goto_statement_token1] = ACTIONS(8192), + [aux_sym_on_goto_statement_token2] = ACTIONS(8192), + [aux_sym_on_error_statement_token2] = ACTIONS(8192), + [sym__ambiguous_redim_statement] = ACTIONS(8194), + [aux_sym_erase_statement_token1] = ACTIONS(8192), + [aux_sym_open_statement_token1] = ACTIONS(8192), + [aux_sym_file_mode_token2] = ACTIONS(8192), + [aux_sym_file_access_token2] = ACTIONS(8192), + [aux_sym_file_lock_token2] = ACTIONS(8192), + [aux_sym_print_statement_token1] = ACTIONS(8192), + [anon_sym_PLUS] = ACTIONS(8194), + [anon_sym_DASH] = ACTIONS(8192), + [anon_sym_QMARK] = ACTIONS(8194), + [aux_sym_close_statement_token1] = ACTIONS(8192), + [aux_sym_put_statement_token1] = ACTIONS(8192), + [aux_sym_unlock_statement_token1] = ACTIONS(8192), + [aux_sym_seek_statement_token1] = ACTIONS(8192), + [sym_reset_statement] = ACTIONS(8192), + [aux_sym_raise_event_statement_token1] = ACTIONS(8192), + [sym_stop_statement] = ACTIONS(8192), + [sym_beep_statement] = ACTIONS(8192), + [aux_sym_unload_statement_token1] = ACTIONS(8192), + [aux_sym_def_type_statement_token1] = ACTIONS(8192), + [aux_sym_def_type_statement_token2] = ACTIONS(8192), + [aux_sym_def_type_statement_token3] = ACTIONS(8192), + [aux_sym_def_type_statement_token4] = ACTIONS(8192), + [aux_sym_def_type_statement_token5] = ACTIONS(8192), + [aux_sym_def_type_statement_token6] = ACTIONS(8192), + [aux_sym_def_type_statement_token7] = ACTIONS(8192), + [aux_sym_def_type_statement_token8] = ACTIONS(8192), + [aux_sym_def_type_statement_token9] = ACTIONS(8192), + [aux_sym_def_type_statement_token10] = ACTIONS(8192), + [aux_sym_def_type_statement_token11] = ACTIONS(8192), + [aux_sym_def_type_statement_token12] = ACTIONS(8192), + [aux_sym_def_type_statement_token13] = ACTIONS(8192), + [aux_sym_def_type_statement_token14] = ACTIONS(8192), + [aux_sym_call_statement_token1] = ACTIONS(8192), + [sym__ambiguous_call_statement] = ACTIONS(8192), + [aux_sym_addressof_expression_token1] = ACTIONS(8192), + [aux_sym_type_of_expression_token1] = ACTIONS(8192), + [aux_sym_unary_expression_token1] = ACTIONS(8192), + [sym_string_literal] = ACTIONS(8194), + [sym_number_literal] = ACTIONS(8194), + [aux_sym_boolean_literal_token1] = ACTIONS(8192), + [aux_sym_boolean_literal_token2] = ACTIONS(8192), + [sym_nothing_literal] = ACTIONS(8192), + [sym_null_literal] = ACTIONS(8192), + [sym_empty_literal] = ACTIONS(8192), + [sym_date_literal] = ACTIONS(8194), + [anon_sym_POUND] = ACTIONS(8192), + }, + [STATE(3476)] = { + [sym_identifier] = ACTIONS(6629), + [sym_newline] = ACTIONS(6631), + [anon_sym_COLON] = ACTIONS(6631), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6629), + [aux_sym_frm_property_statement_token1] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6631), + [aux_sym__attribute_identifier_token1] = ACTIONS(6629), + [aux_sym_option_statement_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6629), + [aux_sym_preprocessor_const_token1] = ACTIONS(6629), + [sym_static_modifier] = ACTIONS(6629), + [sym__dim_keyword] = ACTIONS(6629), + [sym__redim_keyword] = ACTIONS(6629), + [aux_sym_get_accessor_token1] = ACTIONS(6629), + [aux_sym_set_accessor_token1] = ACTIONS(6629), + [aux_sym_const_declaration_token1] = ACTIONS(6629), + [anon_sym_LPAREN] = ACTIONS(6631), + [aux_sym_as_type_clause_token2] = ACTIONS(6629), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6629), + [aux_sym_visibility_token1] = ACTIONS(6629), + [aux_sym_visibility_token2] = ACTIONS(6629), + [aux_sym_elseif_fragment_token1] = ACTIONS(6629), + [aux_sym_else_fragment_token1] = ACTIONS(6629), + [aux_sym_select_statement_token1] = ACTIONS(6629), + [aux_sym_select_statement_token2] = ACTIONS(6629), + [aux_sym__for_header_token1] = ACTIONS(6629), + [aux_sym_do_statement_token1] = ACTIONS(6629), + [aux_sym_do_condition_token1] = ACTIONS(6629), + [aux_sym_with_statement_token1] = ACTIONS(6629), + [aux_sym_exit_statement_token1] = ACTIONS(6629), + [sym_end_statement] = ACTIONS(6631), + [aux_sym_on_goto_statement_token1] = ACTIONS(6629), + [aux_sym_on_goto_statement_token2] = ACTIONS(6629), + [aux_sym_on_error_statement_token2] = ACTIONS(6629), + [sym__ambiguous_redim_statement] = ACTIONS(6631), + [aux_sym_erase_statement_token1] = ACTIONS(6629), + [aux_sym_open_statement_token1] = ACTIONS(6629), + [aux_sym_file_mode_token2] = ACTIONS(6629), + [aux_sym_file_access_token2] = ACTIONS(6629), + [aux_sym_file_lock_token2] = ACTIONS(6629), + [aux_sym_print_statement_token1] = ACTIONS(6629), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6057), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6059), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6061), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6063), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6065), + [anon_sym_QMARK] = ACTIONS(6631), + [aux_sym_close_statement_token1] = ACTIONS(6629), + [aux_sym_put_statement_token1] = ACTIONS(6629), + [aux_sym_unlock_statement_token1] = ACTIONS(6629), + [aux_sym_seek_statement_token1] = ACTIONS(6629), + [sym_reset_statement] = ACTIONS(6629), + [aux_sym_raise_event_statement_token1] = ACTIONS(6629), + [sym_stop_statement] = ACTIONS(6629), + [sym_beep_statement] = ACTIONS(6629), + [aux_sym_unload_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token2] = ACTIONS(6629), + [aux_sym_def_type_statement_token3] = ACTIONS(6629), + [aux_sym_def_type_statement_token4] = ACTIONS(6629), + [aux_sym_def_type_statement_token5] = ACTIONS(6629), + [aux_sym_def_type_statement_token6] = ACTIONS(6629), + [aux_sym_def_type_statement_token7] = ACTIONS(6629), + [aux_sym_def_type_statement_token8] = ACTIONS(6629), + [aux_sym_def_type_statement_token9] = ACTIONS(6629), + [aux_sym_def_type_statement_token10] = ACTIONS(6629), + [aux_sym_def_type_statement_token11] = ACTIONS(6629), + [aux_sym_def_type_statement_token12] = ACTIONS(6629), + [aux_sym_def_type_statement_token13] = ACTIONS(6629), + [aux_sym_def_type_statement_token14] = ACTIONS(6629), + [aux_sym_call_statement_token1] = ACTIONS(6629), + [sym__ambiguous_call_statement] = ACTIONS(6629), + [aux_sym_addressof_expression_token1] = ACTIONS(6629), + [aux_sym_type_of_expression_token1] = ACTIONS(6629), + [aux_sym_unary_expression_token1] = ACTIONS(6629), + [sym_string_literal] = ACTIONS(6631), + [sym_number_literal] = ACTIONS(6631), + [aux_sym_boolean_literal_token1] = ACTIONS(6629), + [aux_sym_boolean_literal_token2] = ACTIONS(6629), + [sym_nothing_literal] = ACTIONS(6629), + [sym_null_literal] = ACTIONS(6629), + [sym_empty_literal] = ACTIONS(6629), + [sym_date_literal] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6629), + }, + [STATE(3477)] = { + [aux_sym__argument_sequence_repeat2] = STATE(3477), + [sym_identifier] = ACTIONS(8196), + [sym_newline] = ACTIONS(8198), + [anon_sym_COLON] = ACTIONS(8198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8196), + [aux_sym_frm_property_statement_token1] = ACTIONS(8196), + [anon_sym_DOT] = ACTIONS(8196), + [anon_sym_BANG] = ACTIONS(8198), + [aux_sym__attribute_identifier_token1] = ACTIONS(8196), + [aux_sym_option_statement_token3] = ACTIONS(8196), + [aux_sym_type_declaration_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8196), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8196), + [aux_sym_enum_declaration_token1] = ACTIONS(8196), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8196), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8196), + [aux_sym_declare_function_statement_token1] = ACTIONS(8196), + [aux_sym_preprocessor_const_token1] = ACTIONS(8196), + [aux_sym__property_get_header_token1] = ACTIONS(8196), + [aux_sym_event_declaration_token1] = ACTIONS(8196), + [sym_static_modifier] = ACTIONS(8196), + [sym__dim_keyword] = ACTIONS(8196), + [sym__redim_keyword] = ACTIONS(8196), + [aux_sym_get_accessor_token1] = ACTIONS(8196), + [aux_sym_set_accessor_token1] = ACTIONS(8196), + [anon_sym_COMMA] = ACTIONS(8200), + [aux_sym_const_declaration_token1] = ACTIONS(8196), + [anon_sym_LPAREN] = ACTIONS(8198), + [aux_sym_as_type_clause_token2] = ACTIONS(8196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8196), + [aux_sym_visibility_token1] = ACTIONS(8196), + [aux_sym_visibility_token2] = ACTIONS(8196), + [aux_sym_elseif_fragment_token1] = ACTIONS(8196), + [aux_sym_else_fragment_token1] = ACTIONS(8196), + [aux_sym_select_statement_token1] = ACTIONS(8196), + [aux_sym__for_header_token1] = ACTIONS(8196), + [aux_sym_do_statement_token1] = ACTIONS(8196), + [aux_sym_do_condition_token1] = ACTIONS(8196), + [aux_sym_with_statement_token1] = ACTIONS(8196), + [aux_sym_exit_statement_token1] = ACTIONS(8196), + [sym_end_statement] = ACTIONS(8198), + [aux_sym_on_goto_statement_token1] = ACTIONS(8196), + [aux_sym_on_goto_statement_token2] = ACTIONS(8196), + [aux_sym_on_error_statement_token2] = ACTIONS(8196), + [sym__ambiguous_redim_statement] = ACTIONS(8198), + [aux_sym_erase_statement_token1] = ACTIONS(8196), + [aux_sym_open_statement_token1] = ACTIONS(8196), + [aux_sym_file_mode_token2] = ACTIONS(8196), + [aux_sym_file_access_token2] = ACTIONS(8196), + [aux_sym_file_lock_token2] = ACTIONS(8196), + [aux_sym_print_statement_token1] = ACTIONS(8196), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(8196), + [anon_sym_QMARK] = ACTIONS(8198), + [aux_sym_close_statement_token1] = ACTIONS(8196), + [aux_sym_put_statement_token1] = ACTIONS(8196), + [aux_sym_unlock_statement_token1] = ACTIONS(8196), + [aux_sym_seek_statement_token1] = ACTIONS(8196), + [sym_reset_statement] = ACTIONS(8196), + [aux_sym_raise_event_statement_token1] = ACTIONS(8196), + [sym_stop_statement] = ACTIONS(8196), + [sym_beep_statement] = ACTIONS(8196), + [aux_sym_unload_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token2] = ACTIONS(8196), + [aux_sym_def_type_statement_token3] = ACTIONS(8196), + [aux_sym_def_type_statement_token4] = ACTIONS(8196), + [aux_sym_def_type_statement_token5] = ACTIONS(8196), + [aux_sym_def_type_statement_token6] = ACTIONS(8196), + [aux_sym_def_type_statement_token7] = ACTIONS(8196), + [aux_sym_def_type_statement_token8] = ACTIONS(8196), + [aux_sym_def_type_statement_token9] = ACTIONS(8196), + [aux_sym_def_type_statement_token10] = ACTIONS(8196), + [aux_sym_def_type_statement_token11] = ACTIONS(8196), + [aux_sym_def_type_statement_token12] = ACTIONS(8196), + [aux_sym_def_type_statement_token13] = ACTIONS(8196), + [aux_sym_def_type_statement_token14] = ACTIONS(8196), + [aux_sym_call_statement_token1] = ACTIONS(8196), + [sym__ambiguous_call_statement] = ACTIONS(8196), + [aux_sym_addressof_expression_token1] = ACTIONS(8196), + [aux_sym_type_of_expression_token1] = ACTIONS(8196), + [aux_sym_unary_expression_token1] = ACTIONS(8196), + [sym_string_literal] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8198), + [aux_sym_boolean_literal_token1] = ACTIONS(8196), + [aux_sym_boolean_literal_token2] = ACTIONS(8196), + [sym_nothing_literal] = ACTIONS(8196), + [sym_null_literal] = ACTIONS(8196), + [sym_empty_literal] = ACTIONS(8196), + [sym_date_literal] = ACTIONS(8198), + [anon_sym_POUND] = ACTIONS(8196), + }, + [STATE(3478)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token3] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(3479)] = { + [sym_do_condition] = STATE(4038), + [sym_identifier] = ACTIONS(8203), + [sym_newline] = ACTIONS(8205), + [anon_sym_COLON] = ACTIONS(8205), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8203), + [aux_sym_frm_property_statement_token1] = ACTIONS(8203), + [anon_sym_DOT] = ACTIONS(8203), + [anon_sym_BANG] = ACTIONS(8205), + [aux_sym__attribute_identifier_token1] = ACTIONS(8203), + [aux_sym_option_statement_token3] = ACTIONS(8203), + [aux_sym_type_declaration_token1] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8203), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8203), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8203), + [aux_sym_enum_declaration_token1] = ACTIONS(8203), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8203), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8203), + [aux_sym_declare_function_statement_token1] = ACTIONS(8203), + [aux_sym_preprocessor_const_token1] = ACTIONS(8203), + [aux_sym__property_get_header_token1] = ACTIONS(8203), + [aux_sym_event_declaration_token1] = ACTIONS(8203), + [sym_static_modifier] = ACTIONS(8203), + [sym__dim_keyword] = ACTIONS(8203), + [sym__redim_keyword] = ACTIONS(8203), + [aux_sym_get_accessor_token1] = ACTIONS(8203), + [aux_sym_set_accessor_token1] = ACTIONS(8203), + [aux_sym_const_declaration_token1] = ACTIONS(8203), + [anon_sym_LPAREN] = ACTIONS(8205), + [aux_sym_as_type_clause_token2] = ACTIONS(8203), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8203), + [aux_sym_visibility_token1] = ACTIONS(8203), + [aux_sym_visibility_token2] = ACTIONS(8203), + [aux_sym_elseif_fragment_token1] = ACTIONS(8203), + [aux_sym_else_fragment_token1] = ACTIONS(8203), + [aux_sym_select_statement_token1] = ACTIONS(8203), + [aux_sym__for_header_token1] = ACTIONS(8203), + [aux_sym_do_statement_token1] = ACTIONS(8203), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8203), + [aux_sym_exit_statement_token1] = ACTIONS(8203), + [sym_end_statement] = ACTIONS(8205), + [aux_sym_on_goto_statement_token1] = ACTIONS(8203), + [aux_sym_on_goto_statement_token2] = ACTIONS(8203), + [aux_sym_on_error_statement_token2] = ACTIONS(8203), + [sym__ambiguous_redim_statement] = ACTIONS(8205), + [aux_sym_erase_statement_token1] = ACTIONS(8203), + [aux_sym_open_statement_token1] = ACTIONS(8203), + [aux_sym_file_mode_token2] = ACTIONS(8203), + [aux_sym_file_access_token2] = ACTIONS(8203), + [aux_sym_file_lock_token2] = ACTIONS(8203), + [aux_sym_print_statement_token1] = ACTIONS(8203), + [anon_sym_PLUS] = ACTIONS(8205), + [anon_sym_DASH] = ACTIONS(8203), + [anon_sym_QMARK] = ACTIONS(8205), + [aux_sym_close_statement_token1] = ACTIONS(8203), + [aux_sym_put_statement_token1] = ACTIONS(8203), + [aux_sym_unlock_statement_token1] = ACTIONS(8203), + [aux_sym_seek_statement_token1] = ACTIONS(8203), + [sym_reset_statement] = ACTIONS(8203), + [aux_sym_raise_event_statement_token1] = ACTIONS(8203), + [sym_stop_statement] = ACTIONS(8203), + [sym_beep_statement] = ACTIONS(8203), + [aux_sym_unload_statement_token1] = ACTIONS(8203), + [aux_sym_def_type_statement_token1] = ACTIONS(8203), + [aux_sym_def_type_statement_token2] = ACTIONS(8203), + [aux_sym_def_type_statement_token3] = ACTIONS(8203), + [aux_sym_def_type_statement_token4] = ACTIONS(8203), + [aux_sym_def_type_statement_token5] = ACTIONS(8203), + [aux_sym_def_type_statement_token6] = ACTIONS(8203), + [aux_sym_def_type_statement_token7] = ACTIONS(8203), + [aux_sym_def_type_statement_token8] = ACTIONS(8203), + [aux_sym_def_type_statement_token9] = ACTIONS(8203), + [aux_sym_def_type_statement_token10] = ACTIONS(8203), + [aux_sym_def_type_statement_token11] = ACTIONS(8203), + [aux_sym_def_type_statement_token12] = ACTIONS(8203), + [aux_sym_def_type_statement_token13] = ACTIONS(8203), + [aux_sym_def_type_statement_token14] = ACTIONS(8203), + [aux_sym_call_statement_token1] = ACTIONS(8203), + [sym__ambiguous_call_statement] = ACTIONS(8203), + [aux_sym_addressof_expression_token1] = ACTIONS(8203), + [aux_sym_type_of_expression_token1] = ACTIONS(8203), + [aux_sym_unary_expression_token1] = ACTIONS(8203), + [sym_string_literal] = ACTIONS(8205), + [sym_number_literal] = ACTIONS(8205), + [aux_sym_boolean_literal_token1] = ACTIONS(8203), + [aux_sym_boolean_literal_token2] = ACTIONS(8203), + [sym_nothing_literal] = ACTIONS(8203), + [sym_null_literal] = ACTIONS(8203), + [sym_empty_literal] = ACTIONS(8203), + [sym_date_literal] = ACTIONS(8205), + [anon_sym_POUND] = ACTIONS(8203), + }, + [STATE(3480)] = { + [sym_parameter_list] = STATE(3858), + [sym_as_type_clause] = STATE(4537), + [sym_identifier] = ACTIONS(7591), + [sym_newline] = ACTIONS(7593), + [anon_sym_COLON] = ACTIONS(7593), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7591), + [aux_sym_frm_property_statement_token1] = ACTIONS(7591), + [anon_sym_DOT] = ACTIONS(7591), + [anon_sym_BANG] = ACTIONS(7593), + [aux_sym__attribute_identifier_token1] = ACTIONS(7591), + [aux_sym_option_statement_token3] = ACTIONS(7591), + [aux_sym_type_declaration_token1] = ACTIONS(7591), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7591), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7591), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7591), + [aux_sym_enum_declaration_token1] = ACTIONS(7591), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7591), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7591), + [aux_sym_declare_sub_statement_token4] = ACTIONS(8207), + [aux_sym_declare_function_statement_token1] = ACTIONS(7591), + [aux_sym_preprocessor_const_token1] = ACTIONS(7591), + [aux_sym__property_get_header_token1] = ACTIONS(7591), + [aux_sym_event_declaration_token1] = ACTIONS(7591), + [sym_static_modifier] = ACTIONS(7591), + [sym__dim_keyword] = ACTIONS(7591), + [sym__redim_keyword] = ACTIONS(7591), + [aux_sym_get_accessor_token1] = ACTIONS(7591), + [aux_sym_set_accessor_token1] = ACTIONS(7591), + [aux_sym_const_declaration_token1] = ACTIONS(7591), + [anon_sym_LPAREN] = ACTIONS(8209), + [aux_sym_as_type_clause_token1] = ACTIONS(8211), + [aux_sym_as_type_clause_token2] = ACTIONS(7591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7591), + [aux_sym_visibility_token1] = ACTIONS(7591), + [aux_sym_visibility_token2] = ACTIONS(7591), + [aux_sym_elseif_fragment_token1] = ACTIONS(7591), + [aux_sym_else_fragment_token1] = ACTIONS(7591), + [aux_sym_select_statement_token1] = ACTIONS(7591), + [aux_sym__for_header_token1] = ACTIONS(7591), + [aux_sym_do_statement_token1] = ACTIONS(7591), + [aux_sym_do_condition_token1] = ACTIONS(7591), + [aux_sym_with_statement_token1] = ACTIONS(7591), + [aux_sym_exit_statement_token1] = ACTIONS(7591), + [sym_end_statement] = ACTIONS(7593), + [aux_sym_on_goto_statement_token1] = ACTIONS(7591), + [aux_sym_on_goto_statement_token2] = ACTIONS(7591), + [aux_sym_on_error_statement_token2] = ACTIONS(7591), + [sym__ambiguous_redim_statement] = ACTIONS(7593), + [aux_sym_erase_statement_token1] = ACTIONS(7591), + [aux_sym_open_statement_token1] = ACTIONS(7591), + [aux_sym_file_mode_token2] = ACTIONS(7591), + [aux_sym_file_access_token2] = ACTIONS(7591), + [aux_sym_file_lock_token2] = ACTIONS(7591), + [aux_sym_print_statement_token1] = ACTIONS(7591), + [anon_sym_PLUS] = ACTIONS(7593), + [anon_sym_DASH] = ACTIONS(7591), + [anon_sym_QMARK] = ACTIONS(7593), + [aux_sym_close_statement_token1] = ACTIONS(7591), + [aux_sym_put_statement_token1] = ACTIONS(7591), + [aux_sym_unlock_statement_token1] = ACTIONS(7591), + [aux_sym_seek_statement_token1] = ACTIONS(7591), + [sym_reset_statement] = ACTIONS(7591), + [aux_sym_raise_event_statement_token1] = ACTIONS(7591), + [sym_stop_statement] = ACTIONS(7591), + [sym_beep_statement] = ACTIONS(7591), + [aux_sym_unload_statement_token1] = ACTIONS(7591), + [aux_sym_def_type_statement_token1] = ACTIONS(7591), + [aux_sym_def_type_statement_token2] = ACTIONS(7591), + [aux_sym_def_type_statement_token3] = ACTIONS(7591), + [aux_sym_def_type_statement_token4] = ACTIONS(7591), + [aux_sym_def_type_statement_token5] = ACTIONS(7591), + [aux_sym_def_type_statement_token6] = ACTIONS(7591), + [aux_sym_def_type_statement_token7] = ACTIONS(7591), + [aux_sym_def_type_statement_token8] = ACTIONS(7591), + [aux_sym_def_type_statement_token9] = ACTIONS(7591), + [aux_sym_def_type_statement_token10] = ACTIONS(7591), + [aux_sym_def_type_statement_token11] = ACTIONS(7591), + [aux_sym_def_type_statement_token12] = ACTIONS(7591), + [aux_sym_def_type_statement_token13] = ACTIONS(7591), + [aux_sym_def_type_statement_token14] = ACTIONS(7591), + [aux_sym_call_statement_token1] = ACTIONS(7591), + [sym__ambiguous_call_statement] = ACTIONS(7591), + [aux_sym_addressof_expression_token1] = ACTIONS(7591), + [aux_sym_type_of_expression_token1] = ACTIONS(7591), + [aux_sym_unary_expression_token1] = ACTIONS(7591), + [sym_string_literal] = ACTIONS(7593), + [sym_number_literal] = ACTIONS(7593), + [aux_sym_boolean_literal_token1] = ACTIONS(7591), + [aux_sym_boolean_literal_token2] = ACTIONS(7591), + [sym_nothing_literal] = ACTIONS(7591), + [sym_null_literal] = ACTIONS(7591), + [sym_empty_literal] = ACTIONS(7591), + [sym_date_literal] = ACTIONS(7593), + [anon_sym_POUND] = ACTIONS(7591), + }, + [STATE(3481)] = { + [sym_identifier] = ACTIONS(6396), + [sym_newline] = ACTIONS(6398), + [anon_sym_COLON] = ACTIONS(6398), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6396), + [aux_sym_frm_property_statement_token1] = ACTIONS(6396), + [anon_sym_DOT] = ACTIONS(6396), + [anon_sym_BANG] = ACTIONS(6398), + [aux_sym__attribute_identifier_token1] = ACTIONS(6396), + [aux_sym_option_statement_token3] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6396), + [aux_sym_preprocessor_const_token1] = ACTIONS(6396), + [sym_static_modifier] = ACTIONS(6396), + [sym__dim_keyword] = ACTIONS(6396), + [sym__redim_keyword] = ACTIONS(6396), + [aux_sym_get_accessor_token1] = ACTIONS(6396), + [aux_sym_set_accessor_token1] = ACTIONS(6396), + [aux_sym_const_declaration_token1] = ACTIONS(6396), + [anon_sym_LPAREN] = ACTIONS(6398), + [aux_sym_as_type_clause_token2] = ACTIONS(6396), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6396), + [aux_sym_visibility_token1] = ACTIONS(6396), + [aux_sym_visibility_token2] = ACTIONS(6396), + [aux_sym_elseif_fragment_token1] = ACTIONS(6396), + [aux_sym_else_fragment_token1] = ACTIONS(6396), + [aux_sym_select_statement_token1] = ACTIONS(6396), + [aux_sym__for_header_token1] = ACTIONS(6396), + [aux_sym_do_statement_token1] = ACTIONS(6396), + [aux_sym_do_condition_token1] = ACTIONS(6396), + [aux_sym_while_statement_token1] = ACTIONS(6396), + [aux_sym_with_statement_token1] = ACTIONS(6396), + [aux_sym_exit_statement_token1] = ACTIONS(6396), + [sym_end_statement] = ACTIONS(6398), + [aux_sym_on_goto_statement_token1] = ACTIONS(6396), + [aux_sym_on_goto_statement_token2] = ACTIONS(6396), + [aux_sym_on_error_statement_token2] = ACTIONS(6396), + [sym__ambiguous_redim_statement] = ACTIONS(6398), + [aux_sym_erase_statement_token1] = ACTIONS(6396), + [aux_sym_open_statement_token1] = ACTIONS(6396), + [aux_sym_file_mode_token2] = ACTIONS(6396), + [aux_sym_file_access_token2] = ACTIONS(6396), + [aux_sym_file_lock_token2] = ACTIONS(6396), + [aux_sym_print_statement_token1] = ACTIONS(6396), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_QMARK] = ACTIONS(6398), + [aux_sym_close_statement_token1] = ACTIONS(6396), + [aux_sym_put_statement_token1] = ACTIONS(6396), + [aux_sym_unlock_statement_token1] = ACTIONS(6396), + [aux_sym_seek_statement_token1] = ACTIONS(6396), + [sym_reset_statement] = ACTIONS(6396), + [aux_sym_raise_event_statement_token1] = ACTIONS(6396), + [sym_stop_statement] = ACTIONS(6396), + [sym_beep_statement] = ACTIONS(6396), + [aux_sym_unload_statement_token1] = ACTIONS(6396), + [aux_sym_def_type_statement_token1] = ACTIONS(6396), + [aux_sym_def_type_statement_token2] = ACTIONS(6396), + [aux_sym_def_type_statement_token3] = ACTIONS(6396), + [aux_sym_def_type_statement_token4] = ACTIONS(6396), + [aux_sym_def_type_statement_token5] = ACTIONS(6396), + [aux_sym_def_type_statement_token6] = ACTIONS(6396), + [aux_sym_def_type_statement_token7] = ACTIONS(6396), + [aux_sym_def_type_statement_token8] = ACTIONS(6396), + [aux_sym_def_type_statement_token9] = ACTIONS(6396), + [aux_sym_def_type_statement_token10] = ACTIONS(6396), + [aux_sym_def_type_statement_token11] = ACTIONS(6396), + [aux_sym_def_type_statement_token12] = ACTIONS(6396), + [aux_sym_def_type_statement_token13] = ACTIONS(6396), + [aux_sym_def_type_statement_token14] = ACTIONS(6396), + [aux_sym_call_statement_token1] = ACTIONS(6396), + [sym__ambiguous_call_statement] = ACTIONS(6396), + [aux_sym_addressof_expression_token1] = ACTIONS(6396), + [aux_sym_type_of_expression_token1] = ACTIONS(6396), + [aux_sym_unary_expression_token1] = ACTIONS(6396), + [sym_string_literal] = ACTIONS(6398), + [sym_number_literal] = ACTIONS(6398), + [aux_sym_boolean_literal_token1] = ACTIONS(6396), + [aux_sym_boolean_literal_token2] = ACTIONS(6396), + [sym_nothing_literal] = ACTIONS(6396), + [sym_null_literal] = ACTIONS(6396), + [sym_empty_literal] = ACTIONS(6396), + [sym_date_literal] = ACTIONS(6398), + [anon_sym_POUND] = ACTIONS(6396), + }, + [STATE(3482)] = { + [sym_identifier] = ACTIONS(6430), + [sym_newline] = ACTIONS(6432), + [anon_sym_COLON] = ACTIONS(6432), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6430), + [aux_sym_frm_property_statement_token1] = ACTIONS(6430), + [anon_sym_DOT] = ACTIONS(6430), + [anon_sym_BANG] = ACTIONS(6432), + [aux_sym__attribute_identifier_token1] = ACTIONS(6430), + [aux_sym_option_statement_token3] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6430), + [aux_sym_preprocessor_const_token1] = ACTIONS(6430), + [sym_static_modifier] = ACTIONS(6430), + [sym__dim_keyword] = ACTIONS(6430), + [sym__redim_keyword] = ACTIONS(6430), + [aux_sym_get_accessor_token1] = ACTIONS(6430), + [aux_sym_set_accessor_token1] = ACTIONS(6430), + [aux_sym_const_declaration_token1] = ACTIONS(6430), + [anon_sym_LPAREN] = ACTIONS(6432), + [aux_sym_as_type_clause_token2] = ACTIONS(6430), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6430), + [aux_sym_visibility_token1] = ACTIONS(6430), + [aux_sym_visibility_token2] = ACTIONS(6430), + [aux_sym_elseif_fragment_token1] = ACTIONS(6430), + [aux_sym_else_fragment_token1] = ACTIONS(6430), + [aux_sym_select_statement_token1] = ACTIONS(6430), + [aux_sym__for_header_token1] = ACTIONS(6430), + [aux_sym_do_statement_token1] = ACTIONS(6430), + [aux_sym_do_condition_token1] = ACTIONS(6430), + [aux_sym_while_statement_token1] = ACTIONS(6430), + [aux_sym_with_statement_token1] = ACTIONS(6430), + [aux_sym_exit_statement_token1] = ACTIONS(6430), + [sym_end_statement] = ACTIONS(6432), + [aux_sym_on_goto_statement_token1] = ACTIONS(6430), + [aux_sym_on_goto_statement_token2] = ACTIONS(6430), + [aux_sym_on_error_statement_token2] = ACTIONS(6430), + [sym__ambiguous_redim_statement] = ACTIONS(6432), + [aux_sym_erase_statement_token1] = ACTIONS(6430), + [aux_sym_open_statement_token1] = ACTIONS(6430), + [aux_sym_file_mode_token2] = ACTIONS(6430), + [aux_sym_file_access_token2] = ACTIONS(6430), + [aux_sym_file_lock_token2] = ACTIONS(6430), + [aux_sym_print_statement_token1] = ACTIONS(6430), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_QMARK] = ACTIONS(6432), + [aux_sym_close_statement_token1] = ACTIONS(6430), + [aux_sym_put_statement_token1] = ACTIONS(6430), + [aux_sym_unlock_statement_token1] = ACTIONS(6430), + [aux_sym_seek_statement_token1] = ACTIONS(6430), + [sym_reset_statement] = ACTIONS(6430), + [aux_sym_raise_event_statement_token1] = ACTIONS(6430), + [sym_stop_statement] = ACTIONS(6430), + [sym_beep_statement] = ACTIONS(6430), + [aux_sym_unload_statement_token1] = ACTIONS(6430), + [aux_sym_def_type_statement_token1] = ACTIONS(6430), + [aux_sym_def_type_statement_token2] = ACTIONS(6430), + [aux_sym_def_type_statement_token3] = ACTIONS(6430), + [aux_sym_def_type_statement_token4] = ACTIONS(6430), + [aux_sym_def_type_statement_token5] = ACTIONS(6430), + [aux_sym_def_type_statement_token6] = ACTIONS(6430), + [aux_sym_def_type_statement_token7] = ACTIONS(6430), + [aux_sym_def_type_statement_token8] = ACTIONS(6430), + [aux_sym_def_type_statement_token9] = ACTIONS(6430), + [aux_sym_def_type_statement_token10] = ACTIONS(6430), + [aux_sym_def_type_statement_token11] = ACTIONS(6430), + [aux_sym_def_type_statement_token12] = ACTIONS(6430), + [aux_sym_def_type_statement_token13] = ACTIONS(6430), + [aux_sym_def_type_statement_token14] = ACTIONS(6430), + [aux_sym_call_statement_token1] = ACTIONS(6430), + [sym__ambiguous_call_statement] = ACTIONS(6430), + [aux_sym_addressof_expression_token1] = ACTIONS(6430), + [aux_sym_type_of_expression_token1] = ACTIONS(6430), + [aux_sym_unary_expression_token1] = ACTIONS(6430), + [sym_string_literal] = ACTIONS(6432), + [sym_number_literal] = ACTIONS(6432), + [aux_sym_boolean_literal_token1] = ACTIONS(6430), + [aux_sym_boolean_literal_token2] = ACTIONS(6430), + [sym_nothing_literal] = ACTIONS(6430), + [sym_null_literal] = ACTIONS(6430), + [sym_empty_literal] = ACTIONS(6430), + [sym_date_literal] = ACTIONS(6432), + [anon_sym_POUND] = ACTIONS(6430), + }, + [STATE(3483)] = { + [sym_do_condition] = STATE(4039), + [sym_identifier] = ACTIONS(8213), + [sym_newline] = ACTIONS(8215), + [anon_sym_COLON] = ACTIONS(8215), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8213), + [aux_sym_frm_property_statement_token1] = ACTIONS(8213), + [anon_sym_DOT] = ACTIONS(8213), + [anon_sym_BANG] = ACTIONS(8215), + [aux_sym__attribute_identifier_token1] = ACTIONS(8213), + [aux_sym_option_statement_token3] = ACTIONS(8213), + [aux_sym_type_declaration_token1] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8213), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8213), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8213), + [aux_sym_enum_declaration_token1] = ACTIONS(8213), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8213), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8213), + [aux_sym_declare_function_statement_token1] = ACTIONS(8213), + [aux_sym_preprocessor_const_token1] = ACTIONS(8213), + [aux_sym__property_get_header_token1] = ACTIONS(8213), + [aux_sym_event_declaration_token1] = ACTIONS(8213), + [sym_static_modifier] = ACTIONS(8213), + [sym__dim_keyword] = ACTIONS(8213), + [sym__redim_keyword] = ACTIONS(8213), + [aux_sym_get_accessor_token1] = ACTIONS(8213), + [aux_sym_set_accessor_token1] = ACTIONS(8213), + [aux_sym_const_declaration_token1] = ACTIONS(8213), + [anon_sym_LPAREN] = ACTIONS(8215), + [aux_sym_as_type_clause_token2] = ACTIONS(8213), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8213), + [aux_sym_visibility_token1] = ACTIONS(8213), + [aux_sym_visibility_token2] = ACTIONS(8213), + [aux_sym_elseif_fragment_token1] = ACTIONS(8213), + [aux_sym_else_fragment_token1] = ACTIONS(8213), + [aux_sym_select_statement_token1] = ACTIONS(8213), + [aux_sym__for_header_token1] = ACTIONS(8213), + [aux_sym_do_statement_token1] = ACTIONS(8213), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8213), + [aux_sym_exit_statement_token1] = ACTIONS(8213), + [sym_end_statement] = ACTIONS(8215), + [aux_sym_on_goto_statement_token1] = ACTIONS(8213), + [aux_sym_on_goto_statement_token2] = ACTIONS(8213), + [aux_sym_on_error_statement_token2] = ACTIONS(8213), + [sym__ambiguous_redim_statement] = ACTIONS(8215), + [aux_sym_erase_statement_token1] = ACTIONS(8213), + [aux_sym_open_statement_token1] = ACTIONS(8213), + [aux_sym_file_mode_token2] = ACTIONS(8213), + [aux_sym_file_access_token2] = ACTIONS(8213), + [aux_sym_file_lock_token2] = ACTIONS(8213), + [aux_sym_print_statement_token1] = ACTIONS(8213), + [anon_sym_PLUS] = ACTIONS(8215), + [anon_sym_DASH] = ACTIONS(8213), + [anon_sym_QMARK] = ACTIONS(8215), + [aux_sym_close_statement_token1] = ACTIONS(8213), + [aux_sym_put_statement_token1] = ACTIONS(8213), + [aux_sym_unlock_statement_token1] = ACTIONS(8213), + [aux_sym_seek_statement_token1] = ACTIONS(8213), + [sym_reset_statement] = ACTIONS(8213), + [aux_sym_raise_event_statement_token1] = ACTIONS(8213), + [sym_stop_statement] = ACTIONS(8213), + [sym_beep_statement] = ACTIONS(8213), + [aux_sym_unload_statement_token1] = ACTIONS(8213), + [aux_sym_def_type_statement_token1] = ACTIONS(8213), + [aux_sym_def_type_statement_token2] = ACTIONS(8213), + [aux_sym_def_type_statement_token3] = ACTIONS(8213), + [aux_sym_def_type_statement_token4] = ACTIONS(8213), + [aux_sym_def_type_statement_token5] = ACTIONS(8213), + [aux_sym_def_type_statement_token6] = ACTIONS(8213), + [aux_sym_def_type_statement_token7] = ACTIONS(8213), + [aux_sym_def_type_statement_token8] = ACTIONS(8213), + [aux_sym_def_type_statement_token9] = ACTIONS(8213), + [aux_sym_def_type_statement_token10] = ACTIONS(8213), + [aux_sym_def_type_statement_token11] = ACTIONS(8213), + [aux_sym_def_type_statement_token12] = ACTIONS(8213), + [aux_sym_def_type_statement_token13] = ACTIONS(8213), + [aux_sym_def_type_statement_token14] = ACTIONS(8213), + [aux_sym_call_statement_token1] = ACTIONS(8213), + [sym__ambiguous_call_statement] = ACTIONS(8213), + [aux_sym_addressof_expression_token1] = ACTIONS(8213), + [aux_sym_type_of_expression_token1] = ACTIONS(8213), + [aux_sym_unary_expression_token1] = ACTIONS(8213), + [sym_string_literal] = ACTIONS(8215), + [sym_number_literal] = ACTIONS(8215), + [aux_sym_boolean_literal_token1] = ACTIONS(8213), + [aux_sym_boolean_literal_token2] = ACTIONS(8213), + [sym_nothing_literal] = ACTIONS(8213), + [sym_null_literal] = ACTIONS(8213), + [sym_empty_literal] = ACTIONS(8213), + [sym_date_literal] = ACTIONS(8215), + [anon_sym_POUND] = ACTIONS(8213), + }, + [STATE(3484)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token3] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(3485)] = { + [sym_do_condition] = STATE(4040), + [sym_identifier] = ACTIONS(8217), + [sym_newline] = ACTIONS(8219), + [anon_sym_COLON] = ACTIONS(8219), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8217), + [aux_sym_frm_property_statement_token1] = ACTIONS(8217), + [anon_sym_DOT] = ACTIONS(8217), + [anon_sym_BANG] = ACTIONS(8219), + [aux_sym__attribute_identifier_token1] = ACTIONS(8217), + [aux_sym_option_statement_token3] = ACTIONS(8217), + [aux_sym_type_declaration_token1] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8217), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8217), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8217), + [aux_sym_enum_declaration_token1] = ACTIONS(8217), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8217), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8217), + [aux_sym_declare_function_statement_token1] = ACTIONS(8217), + [aux_sym_preprocessor_const_token1] = ACTIONS(8217), + [aux_sym__property_get_header_token1] = ACTIONS(8217), + [aux_sym_event_declaration_token1] = ACTIONS(8217), + [sym_static_modifier] = ACTIONS(8217), + [sym__dim_keyword] = ACTIONS(8217), + [sym__redim_keyword] = ACTIONS(8217), + [aux_sym_get_accessor_token1] = ACTIONS(8217), + [aux_sym_set_accessor_token1] = ACTIONS(8217), + [aux_sym_const_declaration_token1] = ACTIONS(8217), + [anon_sym_LPAREN] = ACTIONS(8219), + [aux_sym_as_type_clause_token2] = ACTIONS(8217), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8217), + [aux_sym_visibility_token1] = ACTIONS(8217), + [aux_sym_visibility_token2] = ACTIONS(8217), + [aux_sym_elseif_fragment_token1] = ACTIONS(8217), + [aux_sym_else_fragment_token1] = ACTIONS(8217), + [aux_sym_select_statement_token1] = ACTIONS(8217), + [aux_sym__for_header_token1] = ACTIONS(8217), + [aux_sym_do_statement_token1] = ACTIONS(8217), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8217), + [aux_sym_exit_statement_token1] = ACTIONS(8217), + [sym_end_statement] = ACTIONS(8219), + [aux_sym_on_goto_statement_token1] = ACTIONS(8217), + [aux_sym_on_goto_statement_token2] = ACTIONS(8217), + [aux_sym_on_error_statement_token2] = ACTIONS(8217), + [sym__ambiguous_redim_statement] = ACTIONS(8219), + [aux_sym_erase_statement_token1] = ACTIONS(8217), + [aux_sym_open_statement_token1] = ACTIONS(8217), + [aux_sym_file_mode_token2] = ACTIONS(8217), + [aux_sym_file_access_token2] = ACTIONS(8217), + [aux_sym_file_lock_token2] = ACTIONS(8217), + [aux_sym_print_statement_token1] = ACTIONS(8217), + [anon_sym_PLUS] = ACTIONS(8219), + [anon_sym_DASH] = ACTIONS(8217), + [anon_sym_QMARK] = ACTIONS(8219), + [aux_sym_close_statement_token1] = ACTIONS(8217), + [aux_sym_put_statement_token1] = ACTIONS(8217), + [aux_sym_unlock_statement_token1] = ACTIONS(8217), + [aux_sym_seek_statement_token1] = ACTIONS(8217), + [sym_reset_statement] = ACTIONS(8217), + [aux_sym_raise_event_statement_token1] = ACTIONS(8217), + [sym_stop_statement] = ACTIONS(8217), + [sym_beep_statement] = ACTIONS(8217), + [aux_sym_unload_statement_token1] = ACTIONS(8217), + [aux_sym_def_type_statement_token1] = ACTIONS(8217), + [aux_sym_def_type_statement_token2] = ACTIONS(8217), + [aux_sym_def_type_statement_token3] = ACTIONS(8217), + [aux_sym_def_type_statement_token4] = ACTIONS(8217), + [aux_sym_def_type_statement_token5] = ACTIONS(8217), + [aux_sym_def_type_statement_token6] = ACTIONS(8217), + [aux_sym_def_type_statement_token7] = ACTIONS(8217), + [aux_sym_def_type_statement_token8] = ACTIONS(8217), + [aux_sym_def_type_statement_token9] = ACTIONS(8217), + [aux_sym_def_type_statement_token10] = ACTIONS(8217), + [aux_sym_def_type_statement_token11] = ACTIONS(8217), + [aux_sym_def_type_statement_token12] = ACTIONS(8217), + [aux_sym_def_type_statement_token13] = ACTIONS(8217), + [aux_sym_def_type_statement_token14] = ACTIONS(8217), + [aux_sym_call_statement_token1] = ACTIONS(8217), + [sym__ambiguous_call_statement] = ACTIONS(8217), + [aux_sym_addressof_expression_token1] = ACTIONS(8217), + [aux_sym_type_of_expression_token1] = ACTIONS(8217), + [aux_sym_unary_expression_token1] = ACTIONS(8217), + [sym_string_literal] = ACTIONS(8219), + [sym_number_literal] = ACTIONS(8219), + [aux_sym_boolean_literal_token1] = ACTIONS(8217), + [aux_sym_boolean_literal_token2] = ACTIONS(8217), + [sym_nothing_literal] = ACTIONS(8217), + [sym_null_literal] = ACTIONS(8217), + [sym_empty_literal] = ACTIONS(8217), + [sym_date_literal] = ACTIONS(8219), + [anon_sym_POUND] = ACTIONS(8217), + }, + [STATE(3486)] = { + [sym_identifier] = ACTIONS(7984), + [sym_newline] = ACTIONS(7986), + [anon_sym_COLON] = ACTIONS(7986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7984), + [aux_sym_frm_property_statement_token1] = ACTIONS(7984), + [anon_sym_EQ] = ACTIONS(7986), + [anon_sym_DOT] = ACTIONS(7984), + [anon_sym_BANG] = ACTIONS(7986), + [aux_sym__attribute_identifier_token1] = ACTIONS(7984), + [aux_sym_option_statement_token3] = ACTIONS(7984), + [aux_sym_type_declaration_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7984), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7984), + [aux_sym_enum_declaration_token1] = ACTIONS(7984), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7984), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7984), + [aux_sym_declare_function_statement_token1] = ACTIONS(7984), + [aux_sym_preprocessor_const_token1] = ACTIONS(7984), + [aux_sym__property_get_header_token1] = ACTIONS(7984), + [aux_sym_event_declaration_token1] = ACTIONS(7984), + [sym_static_modifier] = ACTIONS(7984), + [sym__dim_keyword] = ACTIONS(7984), + [sym__redim_keyword] = ACTIONS(7984), + [aux_sym_get_accessor_token1] = ACTIONS(7984), + [aux_sym_set_accessor_token1] = ACTIONS(7984), + [anon_sym_COMMA] = ACTIONS(7986), + [aux_sym_const_declaration_token1] = ACTIONS(7984), + [anon_sym_LPAREN] = ACTIONS(7986), + [aux_sym_as_type_clause_token2] = ACTIONS(7984), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7984), + [aux_sym_visibility_token1] = ACTIONS(7984), + [aux_sym_visibility_token2] = ACTIONS(7984), + [aux_sym_elseif_fragment_token1] = ACTIONS(7984), + [aux_sym_else_fragment_token1] = ACTIONS(7984), + [aux_sym_select_statement_token1] = ACTIONS(7984), + [aux_sym__for_header_token1] = ACTIONS(7984), + [aux_sym_do_statement_token1] = ACTIONS(7984), + [aux_sym_do_condition_token1] = ACTIONS(7984), + [aux_sym_with_statement_token1] = ACTIONS(7984), + [aux_sym_exit_statement_token1] = ACTIONS(7984), + [sym_end_statement] = ACTIONS(7986), + [aux_sym_on_goto_statement_token1] = ACTIONS(7984), + [aux_sym_on_goto_statement_token2] = ACTIONS(7984), + [aux_sym_on_error_statement_token2] = ACTIONS(7984), + [sym__ambiguous_redim_statement] = ACTIONS(7986), + [aux_sym_erase_statement_token1] = ACTIONS(7984), + [aux_sym_open_statement_token1] = ACTIONS(7984), + [aux_sym_file_mode_token2] = ACTIONS(7984), + [aux_sym_file_access_token2] = ACTIONS(7984), + [aux_sym_file_lock_token2] = ACTIONS(7984), + [aux_sym_print_statement_token1] = ACTIONS(7984), + [anon_sym_PLUS] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(7984), + [anon_sym_QMARK] = ACTIONS(7986), + [aux_sym_close_statement_token1] = ACTIONS(7984), + [aux_sym_put_statement_token1] = ACTIONS(7984), + [aux_sym_unlock_statement_token1] = ACTIONS(7984), + [aux_sym_seek_statement_token1] = ACTIONS(7984), + [sym_reset_statement] = ACTIONS(7984), + [aux_sym_raise_event_statement_token1] = ACTIONS(7984), + [sym_stop_statement] = ACTIONS(7984), + [sym_beep_statement] = ACTIONS(7984), + [aux_sym_unload_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token2] = ACTIONS(7984), + [aux_sym_def_type_statement_token3] = ACTIONS(7984), + [aux_sym_def_type_statement_token4] = ACTIONS(7984), + [aux_sym_def_type_statement_token5] = ACTIONS(7984), + [aux_sym_def_type_statement_token6] = ACTIONS(7984), + [aux_sym_def_type_statement_token7] = ACTIONS(7984), + [aux_sym_def_type_statement_token8] = ACTIONS(7984), + [aux_sym_def_type_statement_token9] = ACTIONS(7984), + [aux_sym_def_type_statement_token10] = ACTIONS(7984), + [aux_sym_def_type_statement_token11] = ACTIONS(7984), + [aux_sym_def_type_statement_token12] = ACTIONS(7984), + [aux_sym_def_type_statement_token13] = ACTIONS(7984), + [aux_sym_def_type_statement_token14] = ACTIONS(7984), + [aux_sym_call_statement_token1] = ACTIONS(7984), + [sym__ambiguous_call_statement] = ACTIONS(7984), + [aux_sym_addressof_expression_token1] = ACTIONS(7984), + [aux_sym_type_of_expression_token1] = ACTIONS(7984), + [aux_sym_unary_expression_token1] = ACTIONS(7984), + [sym_string_literal] = ACTIONS(7986), + [sym_number_literal] = ACTIONS(7986), + [aux_sym_boolean_literal_token1] = ACTIONS(7984), + [aux_sym_boolean_literal_token2] = ACTIONS(7984), + [sym_nothing_literal] = ACTIONS(7984), + [sym_null_literal] = ACTIONS(7984), + [sym_empty_literal] = ACTIONS(7984), + [sym_date_literal] = ACTIONS(7986), + [anon_sym_POUND] = ACTIONS(7984), + }, + [STATE(3487)] = { + [sym_identifier] = ACTIONS(6396), + [sym_newline] = ACTIONS(6398), + [anon_sym_COLON] = ACTIONS(6398), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6396), + [aux_sym_frm_property_statement_token1] = ACTIONS(6396), + [anon_sym_DOT] = ACTIONS(6396), + [anon_sym_BANG] = ACTIONS(6398), + [aux_sym__attribute_identifier_token1] = ACTIONS(6396), + [aux_sym_option_statement_token3] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6396), + [aux_sym_preprocessor_const_token1] = ACTIONS(6396), + [sym_static_modifier] = ACTIONS(6396), + [sym__dim_keyword] = ACTIONS(6396), + [sym__redim_keyword] = ACTIONS(6396), + [aux_sym_get_accessor_token1] = ACTIONS(6396), + [aux_sym_set_accessor_token1] = ACTIONS(6396), + [aux_sym_const_declaration_token1] = ACTIONS(6396), + [anon_sym_LPAREN] = ACTIONS(6398), + [aux_sym_as_type_clause_token2] = ACTIONS(6396), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6396), + [aux_sym_visibility_token1] = ACTIONS(6396), + [aux_sym_visibility_token2] = ACTIONS(6396), + [aux_sym_elseif_fragment_token1] = ACTIONS(6396), + [aux_sym_else_fragment_token1] = ACTIONS(6396), + [aux_sym_select_statement_token1] = ACTIONS(6396), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6396), + [aux_sym__for_header_token1] = ACTIONS(6396), + [aux_sym_do_statement_token1] = ACTIONS(6396), + [aux_sym_do_condition_token1] = ACTIONS(6396), + [aux_sym_with_statement_token1] = ACTIONS(6396), + [aux_sym_exit_statement_token1] = ACTIONS(6396), + [sym_end_statement] = ACTIONS(6398), + [aux_sym_on_goto_statement_token1] = ACTIONS(6396), + [aux_sym_on_goto_statement_token2] = ACTIONS(6396), + [aux_sym_on_error_statement_token2] = ACTIONS(6396), + [sym__ambiguous_redim_statement] = ACTIONS(6398), + [aux_sym_erase_statement_token1] = ACTIONS(6396), + [aux_sym_open_statement_token1] = ACTIONS(6396), + [aux_sym_file_mode_token2] = ACTIONS(6396), + [aux_sym_file_access_token2] = ACTIONS(6396), + [aux_sym_file_lock_token2] = ACTIONS(6396), + [aux_sym_print_statement_token1] = ACTIONS(6396), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(6398), + [aux_sym_close_statement_token1] = ACTIONS(6396), + [aux_sym_put_statement_token1] = ACTIONS(6396), + [aux_sym_unlock_statement_token1] = ACTIONS(6396), + [aux_sym_seek_statement_token1] = ACTIONS(6396), + [sym_reset_statement] = ACTIONS(6396), + [aux_sym_raise_event_statement_token1] = ACTIONS(6396), + [sym_stop_statement] = ACTIONS(6396), + [sym_beep_statement] = ACTIONS(6396), + [aux_sym_unload_statement_token1] = ACTIONS(6396), + [aux_sym_def_type_statement_token1] = ACTIONS(6396), + [aux_sym_def_type_statement_token2] = ACTIONS(6396), + [aux_sym_def_type_statement_token3] = ACTIONS(6396), + [aux_sym_def_type_statement_token4] = ACTIONS(6396), + [aux_sym_def_type_statement_token5] = ACTIONS(6396), + [aux_sym_def_type_statement_token6] = ACTIONS(6396), + [aux_sym_def_type_statement_token7] = ACTIONS(6396), + [aux_sym_def_type_statement_token8] = ACTIONS(6396), + [aux_sym_def_type_statement_token9] = ACTIONS(6396), + [aux_sym_def_type_statement_token10] = ACTIONS(6396), + [aux_sym_def_type_statement_token11] = ACTIONS(6396), + [aux_sym_def_type_statement_token12] = ACTIONS(6396), + [aux_sym_def_type_statement_token13] = ACTIONS(6396), + [aux_sym_def_type_statement_token14] = ACTIONS(6396), + [aux_sym_call_statement_token1] = ACTIONS(6396), + [sym__ambiguous_call_statement] = ACTIONS(6396), + [aux_sym_addressof_expression_token1] = ACTIONS(6396), + [aux_sym_type_of_expression_token1] = ACTIONS(6396), + [aux_sym_unary_expression_token1] = ACTIONS(6396), + [sym_string_literal] = ACTIONS(6398), + [sym_number_literal] = ACTIONS(6398), + [aux_sym_boolean_literal_token1] = ACTIONS(6396), + [aux_sym_boolean_literal_token2] = ACTIONS(6396), + [sym_nothing_literal] = ACTIONS(6396), + [sym_null_literal] = ACTIONS(6396), + [sym_empty_literal] = ACTIONS(6396), + [sym_date_literal] = ACTIONS(6398), + [anon_sym_POUND] = ACTIONS(6396), + }, + [STATE(3488)] = { + [sym_identifier] = ACTIONS(5752), + [sym_newline] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5752), + [aux_sym_frm_property_statement_token1] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5752), + [anon_sym_BANG] = ACTIONS(5754), + [aux_sym__attribute_identifier_token1] = ACTIONS(5752), + [aux_sym_option_statement_token3] = ACTIONS(5752), + [aux_sym_type_declaration_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5752), + [aux_sym_enum_declaration_token1] = ACTIONS(5752), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5752), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5752), + [aux_sym_declare_function_statement_token1] = ACTIONS(5752), + [aux_sym_preprocessor_const_token1] = ACTIONS(5752), + [aux_sym__property_get_header_token1] = ACTIONS(5752), + [aux_sym_event_declaration_token1] = ACTIONS(5752), + [sym_static_modifier] = ACTIONS(5752), + [sym__dim_keyword] = ACTIONS(5752), + [sym__redim_keyword] = ACTIONS(5752), + [aux_sym_get_accessor_token1] = ACTIONS(5752), + [aux_sym_set_accessor_token1] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5754), + [aux_sym_const_declaration_token1] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [aux_sym_as_type_clause_token2] = ACTIONS(5752), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5752), + [aux_sym_visibility_token1] = ACTIONS(5752), + [aux_sym_visibility_token2] = ACTIONS(5752), + [aux_sym_elseif_fragment_token1] = ACTIONS(5752), + [aux_sym_else_fragment_token1] = ACTIONS(5752), + [aux_sym_select_statement_token1] = ACTIONS(5752), + [aux_sym__for_header_token1] = ACTIONS(5752), + [aux_sym_do_statement_token1] = ACTIONS(5752), + [aux_sym_do_condition_token1] = ACTIONS(5752), + [aux_sym_with_statement_token1] = ACTIONS(5752), + [aux_sym_exit_statement_token1] = ACTIONS(5752), + [sym_end_statement] = ACTIONS(5754), + [aux_sym_on_goto_statement_token1] = ACTIONS(5752), + [aux_sym_on_goto_statement_token2] = ACTIONS(5752), + [aux_sym_on_error_statement_token2] = ACTIONS(5752), + [sym__ambiguous_redim_statement] = ACTIONS(5754), + [aux_sym_erase_statement_token1] = ACTIONS(5752), + [aux_sym_open_statement_token1] = ACTIONS(5752), + [aux_sym_file_mode_token2] = ACTIONS(5752), + [aux_sym_file_access_token2] = ACTIONS(5752), + [aux_sym_file_lock_token2] = ACTIONS(5752), + [aux_sym_print_statement_token1] = ACTIONS(5752), + [anon_sym_PLUS] = ACTIONS(5754), + [anon_sym_DASH] = ACTIONS(5752), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8101), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8103), + [anon_sym_SEMI] = ACTIONS(5754), + [anon_sym_QMARK] = ACTIONS(5754), + [aux_sym_close_statement_token1] = ACTIONS(5752), + [aux_sym_put_statement_token1] = ACTIONS(5752), + [aux_sym_unlock_statement_token1] = ACTIONS(5752), + [aux_sym_seek_statement_token1] = ACTIONS(5752), + [sym_reset_statement] = ACTIONS(5752), + [aux_sym_raise_event_statement_token1] = ACTIONS(5752), + [sym_stop_statement] = ACTIONS(5752), + [sym_beep_statement] = ACTIONS(5752), + [aux_sym_unload_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token2] = ACTIONS(5752), + [aux_sym_def_type_statement_token3] = ACTIONS(5752), + [aux_sym_def_type_statement_token4] = ACTIONS(5752), + [aux_sym_def_type_statement_token5] = ACTIONS(5752), + [aux_sym_def_type_statement_token6] = ACTIONS(5752), + [aux_sym_def_type_statement_token7] = ACTIONS(5752), + [aux_sym_def_type_statement_token8] = ACTIONS(5752), + [aux_sym_def_type_statement_token9] = ACTIONS(5752), + [aux_sym_def_type_statement_token10] = ACTIONS(5752), + [aux_sym_def_type_statement_token11] = ACTIONS(5752), + [aux_sym_def_type_statement_token12] = ACTIONS(5752), + [aux_sym_def_type_statement_token13] = ACTIONS(5752), + [aux_sym_def_type_statement_token14] = ACTIONS(5752), + [aux_sym_call_statement_token1] = ACTIONS(5752), + [sym__ambiguous_call_statement] = ACTIONS(5752), + [aux_sym_addressof_expression_token1] = ACTIONS(5752), + [aux_sym_type_of_expression_token1] = ACTIONS(5752), + [aux_sym_unary_expression_token1] = ACTIONS(5752), + [sym_string_literal] = ACTIONS(5754), + [sym_number_literal] = ACTIONS(5754), + [aux_sym_boolean_literal_token1] = ACTIONS(5752), + [aux_sym_boolean_literal_token2] = ACTIONS(5752), + [sym_nothing_literal] = ACTIONS(5752), + [sym_null_literal] = ACTIONS(5752), + [sym_empty_literal] = ACTIONS(5752), + [sym_date_literal] = ACTIONS(5754), + [anon_sym_POUND] = ACTIONS(5752), + }, + [STATE(3489)] = { + [sym_do_condition] = STATE(4042), + [sym_identifier] = ACTIONS(8221), + [sym_newline] = ACTIONS(8223), + [anon_sym_COLON] = ACTIONS(8223), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8221), + [aux_sym_frm_property_statement_token1] = ACTIONS(8221), + [anon_sym_DOT] = ACTIONS(8221), + [anon_sym_BANG] = ACTIONS(8223), + [aux_sym__attribute_identifier_token1] = ACTIONS(8221), + [aux_sym_option_statement_token3] = ACTIONS(8221), + [aux_sym_type_declaration_token1] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8221), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8221), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8221), + [aux_sym_enum_declaration_token1] = ACTIONS(8221), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8221), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8221), + [aux_sym_declare_function_statement_token1] = ACTIONS(8221), + [aux_sym_preprocessor_const_token1] = ACTIONS(8221), + [aux_sym__property_get_header_token1] = ACTIONS(8221), + [aux_sym_event_declaration_token1] = ACTIONS(8221), + [sym_static_modifier] = ACTIONS(8221), + [sym__dim_keyword] = ACTIONS(8221), + [sym__redim_keyword] = ACTIONS(8221), + [aux_sym_get_accessor_token1] = ACTIONS(8221), + [aux_sym_set_accessor_token1] = ACTIONS(8221), + [aux_sym_const_declaration_token1] = ACTIONS(8221), + [anon_sym_LPAREN] = ACTIONS(8223), + [aux_sym_as_type_clause_token2] = ACTIONS(8221), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8221), + [aux_sym_visibility_token1] = ACTIONS(8221), + [aux_sym_visibility_token2] = ACTIONS(8221), + [aux_sym_elseif_fragment_token1] = ACTIONS(8221), + [aux_sym_else_fragment_token1] = ACTIONS(8221), + [aux_sym_select_statement_token1] = ACTIONS(8221), + [aux_sym__for_header_token1] = ACTIONS(8221), + [aux_sym_do_statement_token1] = ACTIONS(8221), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8221), + [aux_sym_exit_statement_token1] = ACTIONS(8221), + [sym_end_statement] = ACTIONS(8223), + [aux_sym_on_goto_statement_token1] = ACTIONS(8221), + [aux_sym_on_goto_statement_token2] = ACTIONS(8221), + [aux_sym_on_error_statement_token2] = ACTIONS(8221), + [sym__ambiguous_redim_statement] = ACTIONS(8223), + [aux_sym_erase_statement_token1] = ACTIONS(8221), + [aux_sym_open_statement_token1] = ACTIONS(8221), + [aux_sym_file_mode_token2] = ACTIONS(8221), + [aux_sym_file_access_token2] = ACTIONS(8221), + [aux_sym_file_lock_token2] = ACTIONS(8221), + [aux_sym_print_statement_token1] = ACTIONS(8221), + [anon_sym_PLUS] = ACTIONS(8223), + [anon_sym_DASH] = ACTIONS(8221), + [anon_sym_QMARK] = ACTIONS(8223), + [aux_sym_close_statement_token1] = ACTIONS(8221), + [aux_sym_put_statement_token1] = ACTIONS(8221), + [aux_sym_unlock_statement_token1] = ACTIONS(8221), + [aux_sym_seek_statement_token1] = ACTIONS(8221), + [sym_reset_statement] = ACTIONS(8221), + [aux_sym_raise_event_statement_token1] = ACTIONS(8221), + [sym_stop_statement] = ACTIONS(8221), + [sym_beep_statement] = ACTIONS(8221), + [aux_sym_unload_statement_token1] = ACTIONS(8221), + [aux_sym_def_type_statement_token1] = ACTIONS(8221), + [aux_sym_def_type_statement_token2] = ACTIONS(8221), + [aux_sym_def_type_statement_token3] = ACTIONS(8221), + [aux_sym_def_type_statement_token4] = ACTIONS(8221), + [aux_sym_def_type_statement_token5] = ACTIONS(8221), + [aux_sym_def_type_statement_token6] = ACTIONS(8221), + [aux_sym_def_type_statement_token7] = ACTIONS(8221), + [aux_sym_def_type_statement_token8] = ACTIONS(8221), + [aux_sym_def_type_statement_token9] = ACTIONS(8221), + [aux_sym_def_type_statement_token10] = ACTIONS(8221), + [aux_sym_def_type_statement_token11] = ACTIONS(8221), + [aux_sym_def_type_statement_token12] = ACTIONS(8221), + [aux_sym_def_type_statement_token13] = ACTIONS(8221), + [aux_sym_def_type_statement_token14] = ACTIONS(8221), + [aux_sym_call_statement_token1] = ACTIONS(8221), + [sym__ambiguous_call_statement] = ACTIONS(8221), + [aux_sym_addressof_expression_token1] = ACTIONS(8221), + [aux_sym_type_of_expression_token1] = ACTIONS(8221), + [aux_sym_unary_expression_token1] = ACTIONS(8221), + [sym_string_literal] = ACTIONS(8223), + [sym_number_literal] = ACTIONS(8223), + [aux_sym_boolean_literal_token1] = ACTIONS(8221), + [aux_sym_boolean_literal_token2] = ACTIONS(8221), + [sym_nothing_literal] = ACTIONS(8221), + [sym_null_literal] = ACTIONS(8221), + [sym_empty_literal] = ACTIONS(8221), + [sym_date_literal] = ACTIONS(8223), + [anon_sym_POUND] = ACTIONS(8221), + }, + [STATE(3490)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(3563), + [sym_identifier] = ACTIONS(8225), + [sym_newline] = ACTIONS(8227), + [anon_sym_COLON] = ACTIONS(8227), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8225), + [aux_sym_frm_property_statement_token1] = ACTIONS(8225), + [anon_sym_DOT] = ACTIONS(8225), + [anon_sym_BANG] = ACTIONS(8227), + [aux_sym__attribute_identifier_token1] = ACTIONS(8225), + [aux_sym_option_statement_token3] = ACTIONS(8225), + [aux_sym_type_declaration_token1] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8225), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8225), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8225), + [aux_sym_enum_declaration_token1] = ACTIONS(8225), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8225), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8225), + [aux_sym_declare_function_statement_token1] = ACTIONS(8225), + [aux_sym_preprocessor_const_token1] = ACTIONS(8225), + [aux_sym__property_get_header_token1] = ACTIONS(8225), + [aux_sym_event_declaration_token1] = ACTIONS(8225), + [sym_static_modifier] = ACTIONS(8225), + [sym__dim_keyword] = ACTIONS(8225), + [sym__redim_keyword] = ACTIONS(8225), + [aux_sym_get_accessor_token1] = ACTIONS(8225), + [aux_sym_set_accessor_token1] = ACTIONS(8225), + [anon_sym_COMMA] = ACTIONS(8229), + [aux_sym_const_declaration_token1] = ACTIONS(8225), + [anon_sym_LPAREN] = ACTIONS(8227), + [aux_sym_as_type_clause_token2] = ACTIONS(8225), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8225), + [aux_sym_visibility_token1] = ACTIONS(8225), + [aux_sym_visibility_token2] = ACTIONS(8225), + [aux_sym_elseif_fragment_token1] = ACTIONS(8225), + [aux_sym_else_fragment_token1] = ACTIONS(8225), + [aux_sym_select_statement_token1] = ACTIONS(8225), + [aux_sym__for_header_token1] = ACTIONS(8225), + [aux_sym_do_statement_token1] = ACTIONS(8225), + [aux_sym_do_condition_token1] = ACTIONS(8225), + [aux_sym_with_statement_token1] = ACTIONS(8225), + [aux_sym_exit_statement_token1] = ACTIONS(8225), + [sym_end_statement] = ACTIONS(8227), + [aux_sym_on_goto_statement_token1] = ACTIONS(8225), + [aux_sym_on_goto_statement_token2] = ACTIONS(8225), + [aux_sym_on_error_statement_token2] = ACTIONS(8225), + [sym__ambiguous_redim_statement] = ACTIONS(8227), + [aux_sym_erase_statement_token1] = ACTIONS(8225), + [aux_sym_open_statement_token1] = ACTIONS(8225), + [aux_sym_file_mode_token2] = ACTIONS(8225), + [aux_sym_file_access_token2] = ACTIONS(8225), + [aux_sym_file_lock_token2] = ACTIONS(8225), + [aux_sym_print_statement_token1] = ACTIONS(8225), + [anon_sym_PLUS] = ACTIONS(8227), + [anon_sym_DASH] = ACTIONS(8225), + [anon_sym_QMARK] = ACTIONS(8227), + [aux_sym_close_statement_token1] = ACTIONS(8225), + [aux_sym_put_statement_token1] = ACTIONS(8225), + [aux_sym_unlock_statement_token1] = ACTIONS(8225), + [aux_sym_seek_statement_token1] = ACTIONS(8225), + [sym_reset_statement] = ACTIONS(8225), + [aux_sym_raise_event_statement_token1] = ACTIONS(8225), + [sym_stop_statement] = ACTIONS(8225), + [sym_beep_statement] = ACTIONS(8225), + [aux_sym_unload_statement_token1] = ACTIONS(8225), + [aux_sym_def_type_statement_token1] = ACTIONS(8225), + [aux_sym_def_type_statement_token2] = ACTIONS(8225), + [aux_sym_def_type_statement_token3] = ACTIONS(8225), + [aux_sym_def_type_statement_token4] = ACTIONS(8225), + [aux_sym_def_type_statement_token5] = ACTIONS(8225), + [aux_sym_def_type_statement_token6] = ACTIONS(8225), + [aux_sym_def_type_statement_token7] = ACTIONS(8225), + [aux_sym_def_type_statement_token8] = ACTIONS(8225), + [aux_sym_def_type_statement_token9] = ACTIONS(8225), + [aux_sym_def_type_statement_token10] = ACTIONS(8225), + [aux_sym_def_type_statement_token11] = ACTIONS(8225), + [aux_sym_def_type_statement_token12] = ACTIONS(8225), + [aux_sym_def_type_statement_token13] = ACTIONS(8225), + [aux_sym_def_type_statement_token14] = ACTIONS(8225), + [aux_sym_call_statement_token1] = ACTIONS(8225), + [sym__ambiguous_call_statement] = ACTIONS(8225), + [aux_sym_addressof_expression_token1] = ACTIONS(8225), + [aux_sym_type_of_expression_token1] = ACTIONS(8225), + [aux_sym_unary_expression_token1] = ACTIONS(8225), + [sym_string_literal] = ACTIONS(8227), + [sym_number_literal] = ACTIONS(8227), + [aux_sym_boolean_literal_token1] = ACTIONS(8225), + [aux_sym_boolean_literal_token2] = ACTIONS(8225), + [sym_nothing_literal] = ACTIONS(8225), + [sym_null_literal] = ACTIONS(8225), + [sym_empty_literal] = ACTIONS(8225), + [sym_date_literal] = ACTIONS(8227), + [anon_sym_POUND] = ACTIONS(8225), + }, + [STATE(3491)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(3563), + [sym_identifier] = ACTIONS(8231), + [sym_newline] = ACTIONS(8233), + [anon_sym_COLON] = ACTIONS(8233), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8231), + [aux_sym_frm_property_statement_token1] = ACTIONS(8231), + [anon_sym_DOT] = ACTIONS(8231), + [anon_sym_BANG] = ACTIONS(8233), + [aux_sym__attribute_identifier_token1] = ACTIONS(8231), + [aux_sym_option_statement_token3] = ACTIONS(8231), + [aux_sym_type_declaration_token1] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8231), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8231), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8231), + [aux_sym_enum_declaration_token1] = ACTIONS(8231), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8231), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8231), + [aux_sym_declare_function_statement_token1] = ACTIONS(8231), + [aux_sym_preprocessor_const_token1] = ACTIONS(8231), + [aux_sym__property_get_header_token1] = ACTIONS(8231), + [aux_sym_event_declaration_token1] = ACTIONS(8231), + [sym_static_modifier] = ACTIONS(8231), + [sym__dim_keyword] = ACTIONS(8231), + [sym__redim_keyword] = ACTIONS(8231), + [aux_sym_get_accessor_token1] = ACTIONS(8231), + [aux_sym_set_accessor_token1] = ACTIONS(8231), + [anon_sym_COMMA] = ACTIONS(8229), + [aux_sym_const_declaration_token1] = ACTIONS(8231), + [anon_sym_LPAREN] = ACTIONS(8233), + [aux_sym_as_type_clause_token2] = ACTIONS(8231), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8231), + [aux_sym_visibility_token1] = ACTIONS(8231), + [aux_sym_visibility_token2] = ACTIONS(8231), + [aux_sym_elseif_fragment_token1] = ACTIONS(8231), + [aux_sym_else_fragment_token1] = ACTIONS(8231), + [aux_sym_select_statement_token1] = ACTIONS(8231), + [aux_sym__for_header_token1] = ACTIONS(8231), + [aux_sym_do_statement_token1] = ACTIONS(8231), + [aux_sym_do_condition_token1] = ACTIONS(8231), + [aux_sym_with_statement_token1] = ACTIONS(8231), + [aux_sym_exit_statement_token1] = ACTIONS(8231), + [sym_end_statement] = ACTIONS(8233), + [aux_sym_on_goto_statement_token1] = ACTIONS(8231), + [aux_sym_on_goto_statement_token2] = ACTIONS(8231), + [aux_sym_on_error_statement_token2] = ACTIONS(8231), + [sym__ambiguous_redim_statement] = ACTIONS(8233), + [aux_sym_erase_statement_token1] = ACTIONS(8231), + [aux_sym_open_statement_token1] = ACTIONS(8231), + [aux_sym_file_mode_token2] = ACTIONS(8231), + [aux_sym_file_access_token2] = ACTIONS(8231), + [aux_sym_file_lock_token2] = ACTIONS(8231), + [aux_sym_print_statement_token1] = ACTIONS(8231), + [anon_sym_PLUS] = ACTIONS(8233), + [anon_sym_DASH] = ACTIONS(8231), + [anon_sym_QMARK] = ACTIONS(8233), + [aux_sym_close_statement_token1] = ACTIONS(8231), + [aux_sym_put_statement_token1] = ACTIONS(8231), + [aux_sym_unlock_statement_token1] = ACTIONS(8231), + [aux_sym_seek_statement_token1] = ACTIONS(8231), + [sym_reset_statement] = ACTIONS(8231), + [aux_sym_raise_event_statement_token1] = ACTIONS(8231), + [sym_stop_statement] = ACTIONS(8231), + [sym_beep_statement] = ACTIONS(8231), + [aux_sym_unload_statement_token1] = ACTIONS(8231), + [aux_sym_def_type_statement_token1] = ACTIONS(8231), + [aux_sym_def_type_statement_token2] = ACTIONS(8231), + [aux_sym_def_type_statement_token3] = ACTIONS(8231), + [aux_sym_def_type_statement_token4] = ACTIONS(8231), + [aux_sym_def_type_statement_token5] = ACTIONS(8231), + [aux_sym_def_type_statement_token6] = ACTIONS(8231), + [aux_sym_def_type_statement_token7] = ACTIONS(8231), + [aux_sym_def_type_statement_token8] = ACTIONS(8231), + [aux_sym_def_type_statement_token9] = ACTIONS(8231), + [aux_sym_def_type_statement_token10] = ACTIONS(8231), + [aux_sym_def_type_statement_token11] = ACTIONS(8231), + [aux_sym_def_type_statement_token12] = ACTIONS(8231), + [aux_sym_def_type_statement_token13] = ACTIONS(8231), + [aux_sym_def_type_statement_token14] = ACTIONS(8231), + [aux_sym_call_statement_token1] = ACTIONS(8231), + [sym__ambiguous_call_statement] = ACTIONS(8231), + [aux_sym_addressof_expression_token1] = ACTIONS(8231), + [aux_sym_type_of_expression_token1] = ACTIONS(8231), + [aux_sym_unary_expression_token1] = ACTIONS(8231), + [sym_string_literal] = ACTIONS(8233), + [sym_number_literal] = ACTIONS(8233), + [aux_sym_boolean_literal_token1] = ACTIONS(8231), + [aux_sym_boolean_literal_token2] = ACTIONS(8231), + [sym_nothing_literal] = ACTIONS(8231), + [sym_null_literal] = ACTIONS(8231), + [sym_empty_literal] = ACTIONS(8231), + [sym_date_literal] = ACTIONS(8233), + [anon_sym_POUND] = ACTIONS(8231), + }, + [STATE(3492)] = { + [sym_char_position] = STATE(369), + [aux_sym_output_list_repeat1] = STATE(3534), + [sym_identifier] = ACTIONS(7609), + [sym_newline] = ACTIONS(7611), + [anon_sym_COLON] = ACTIONS(7611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7609), + [aux_sym_frm_property_statement_token1] = ACTIONS(7609), + [anon_sym_DOT] = ACTIONS(7609), + [anon_sym_BANG] = ACTIONS(7611), + [aux_sym__attribute_identifier_token1] = ACTIONS(7609), + [aux_sym_option_statement_token3] = ACTIONS(7609), + [aux_sym_type_declaration_token1] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7609), + [aux_sym_enum_declaration_token1] = ACTIONS(7609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7609), + [aux_sym_declare_function_statement_token1] = ACTIONS(7609), + [aux_sym_preprocessor_const_token1] = ACTIONS(7609), + [aux_sym__property_get_header_token1] = ACTIONS(7609), + [aux_sym_event_declaration_token1] = ACTIONS(7609), + [sym_static_modifier] = ACTIONS(7609), + [sym__dim_keyword] = ACTIONS(7609), + [sym__redim_keyword] = ACTIONS(7609), + [aux_sym_get_accessor_token1] = ACTIONS(7609), + [aux_sym_set_accessor_token1] = ACTIONS(7609), + [anon_sym_COMMA] = ACTIONS(8152), + [aux_sym_const_declaration_token1] = ACTIONS(7609), + [anon_sym_LPAREN] = ACTIONS(7611), + [aux_sym_as_type_clause_token2] = ACTIONS(7609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7609), + [aux_sym_visibility_token1] = ACTIONS(7609), + [aux_sym_visibility_token2] = ACTIONS(7609), + [aux_sym_elseif_fragment_token1] = ACTIONS(7609), + [aux_sym_else_fragment_token1] = ACTIONS(7609), + [aux_sym_select_statement_token1] = ACTIONS(7609), + [aux_sym__for_header_token1] = ACTIONS(7609), + [aux_sym_do_statement_token1] = ACTIONS(7609), + [aux_sym_do_condition_token1] = ACTIONS(7609), + [aux_sym_with_statement_token1] = ACTIONS(7609), + [aux_sym_exit_statement_token1] = ACTIONS(7609), + [sym_end_statement] = ACTIONS(7611), + [aux_sym_on_goto_statement_token1] = ACTIONS(7609), + [aux_sym_on_goto_statement_token2] = ACTIONS(7609), + [aux_sym_on_error_statement_token2] = ACTIONS(7609), + [sym__ambiguous_redim_statement] = ACTIONS(7611), + [aux_sym_erase_statement_token1] = ACTIONS(7609), + [aux_sym_open_statement_token1] = ACTIONS(7609), + [aux_sym_file_mode_token2] = ACTIONS(7609), + [aux_sym_file_access_token2] = ACTIONS(7609), + [aux_sym_file_lock_token2] = ACTIONS(7609), + [aux_sym_print_statement_token1] = ACTIONS(7609), + [anon_sym_PLUS] = ACTIONS(7611), + [anon_sym_DASH] = ACTIONS(7609), + [anon_sym_SEMI] = ACTIONS(8152), + [anon_sym_QMARK] = ACTIONS(7611), + [aux_sym_close_statement_token1] = ACTIONS(7609), + [aux_sym_put_statement_token1] = ACTIONS(7609), + [aux_sym_unlock_statement_token1] = ACTIONS(7609), + [aux_sym_seek_statement_token1] = ACTIONS(7609), + [sym_reset_statement] = ACTIONS(7609), + [aux_sym_raise_event_statement_token1] = ACTIONS(7609), + [sym_stop_statement] = ACTIONS(7609), + [sym_beep_statement] = ACTIONS(7609), + [aux_sym_unload_statement_token1] = ACTIONS(7609), + [aux_sym_def_type_statement_token1] = ACTIONS(7609), + [aux_sym_def_type_statement_token2] = ACTIONS(7609), + [aux_sym_def_type_statement_token3] = ACTIONS(7609), + [aux_sym_def_type_statement_token4] = ACTIONS(7609), + [aux_sym_def_type_statement_token5] = ACTIONS(7609), + [aux_sym_def_type_statement_token6] = ACTIONS(7609), + [aux_sym_def_type_statement_token7] = ACTIONS(7609), + [aux_sym_def_type_statement_token8] = ACTIONS(7609), + [aux_sym_def_type_statement_token9] = ACTIONS(7609), + [aux_sym_def_type_statement_token10] = ACTIONS(7609), + [aux_sym_def_type_statement_token11] = ACTIONS(7609), + [aux_sym_def_type_statement_token12] = ACTIONS(7609), + [aux_sym_def_type_statement_token13] = ACTIONS(7609), + [aux_sym_def_type_statement_token14] = ACTIONS(7609), + [aux_sym_call_statement_token1] = ACTIONS(7609), + [sym__ambiguous_call_statement] = ACTIONS(7609), + [aux_sym_addressof_expression_token1] = ACTIONS(7609), + [aux_sym_type_of_expression_token1] = ACTIONS(7609), + [aux_sym_unary_expression_token1] = ACTIONS(7609), + [sym_string_literal] = ACTIONS(7611), + [sym_number_literal] = ACTIONS(7611), + [aux_sym_boolean_literal_token1] = ACTIONS(7609), + [aux_sym_boolean_literal_token2] = ACTIONS(7609), + [sym_nothing_literal] = ACTIONS(7609), + [sym_null_literal] = ACTIONS(7609), + [sym_empty_literal] = ACTIONS(7609), + [sym_date_literal] = ACTIONS(7611), + [anon_sym_POUND] = ACTIONS(7609), + }, + [STATE(3493)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token3] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(8235), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(3494)] = { + [sym_identifier] = ACTIONS(6304), + [sym_newline] = ACTIONS(6306), + [anon_sym_COLON] = ACTIONS(6306), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6304), + [aux_sym_frm_property_statement_token1] = ACTIONS(6304), + [anon_sym_DOT] = ACTIONS(6304), + [anon_sym_BANG] = ACTIONS(6306), + [aux_sym__attribute_identifier_token1] = ACTIONS(6304), + [aux_sym_option_statement_token3] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6304), + [aux_sym_preprocessor_const_token1] = ACTIONS(6304), + [sym_static_modifier] = ACTIONS(6304), + [sym__dim_keyword] = ACTIONS(6304), + [sym__redim_keyword] = ACTIONS(6304), + [aux_sym_get_accessor_token1] = ACTIONS(6304), + [aux_sym_set_accessor_token1] = ACTIONS(6304), + [aux_sym_const_declaration_token1] = ACTIONS(6304), + [anon_sym_LPAREN] = ACTIONS(6306), + [aux_sym_as_type_clause_token2] = ACTIONS(6304), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6304), + [aux_sym_visibility_token1] = ACTIONS(6304), + [aux_sym_visibility_token2] = ACTIONS(6304), + [aux_sym_elseif_fragment_token1] = ACTIONS(6304), + [aux_sym_else_fragment_token1] = ACTIONS(6304), + [aux_sym_select_statement_token1] = ACTIONS(6304), + [aux_sym__for_header_token1] = ACTIONS(6304), + [aux_sym_do_statement_token1] = ACTIONS(6304), + [aux_sym_do_condition_token1] = ACTIONS(6304), + [aux_sym_with_statement_token1] = ACTIONS(6304), + [aux_sym_exit_statement_token1] = ACTIONS(6304), + [sym_end_statement] = ACTIONS(6306), + [aux_sym_on_goto_statement_token1] = ACTIONS(6304), + [aux_sym_on_goto_statement_token2] = ACTIONS(6304), + [aux_sym_on_error_statement_token2] = ACTIONS(6304), + [sym__ambiguous_redim_statement] = ACTIONS(6306), + [aux_sym_erase_statement_token1] = ACTIONS(6304), + [aux_sym_open_statement_token1] = ACTIONS(6304), + [aux_sym_file_mode_token2] = ACTIONS(6304), + [aux_sym_file_access_token2] = ACTIONS(6304), + [aux_sym_file_lock_token2] = ACTIONS(6304), + [aux_sym_print_statement_token1] = ACTIONS(6304), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_QMARK] = ACTIONS(6306), + [aux_sym_close_statement_token1] = ACTIONS(6304), + [aux_sym_put_statement_token1] = ACTIONS(6304), + [aux_sym_unlock_statement_token1] = ACTIONS(6304), + [aux_sym_seek_statement_token1] = ACTIONS(6304), + [sym_reset_statement] = ACTIONS(6304), + [aux_sym_raise_event_statement_token1] = ACTIONS(6304), + [sym_stop_statement] = ACTIONS(6304), + [sym_beep_statement] = ACTIONS(6304), + [aux_sym_unload_statement_token1] = ACTIONS(6304), + [aux_sym_def_type_statement_token1] = ACTIONS(6304), + [aux_sym_def_type_statement_token2] = ACTIONS(6304), + [aux_sym_def_type_statement_token3] = ACTIONS(6304), + [aux_sym_def_type_statement_token4] = ACTIONS(6304), + [aux_sym_def_type_statement_token5] = ACTIONS(6304), + [aux_sym_def_type_statement_token6] = ACTIONS(6304), + [aux_sym_def_type_statement_token7] = ACTIONS(6304), + [aux_sym_def_type_statement_token8] = ACTIONS(6304), + [aux_sym_def_type_statement_token9] = ACTIONS(6304), + [aux_sym_def_type_statement_token10] = ACTIONS(6304), + [aux_sym_def_type_statement_token11] = ACTIONS(6304), + [aux_sym_def_type_statement_token12] = ACTIONS(6304), + [aux_sym_def_type_statement_token13] = ACTIONS(6304), + [aux_sym_def_type_statement_token14] = ACTIONS(6304), + [aux_sym_call_statement_token1] = ACTIONS(6304), + [sym__ambiguous_call_statement] = ACTIONS(6304), + [aux_sym_addressof_expression_token1] = ACTIONS(6304), + [aux_sym_type_of_expression_token1] = ACTIONS(6304), + [aux_sym_unary_expression_token1] = ACTIONS(6304), + [sym_string_literal] = ACTIONS(6306), + [sym_number_literal] = ACTIONS(6306), + [aux_sym_boolean_literal_token1] = ACTIONS(6304), + [aux_sym_boolean_literal_token2] = ACTIONS(6304), + [sym_nothing_literal] = ACTIONS(6304), + [sym_null_literal] = ACTIONS(6304), + [sym_empty_literal] = ACTIONS(6304), + [sym_date_literal] = ACTIONS(6306), + [anon_sym_POUND] = ACTIONS(6304), + }, + [STATE(3495)] = { + [aux_sym_input_statement_repeat1] = STATE(3566), + [sym_identifier] = ACTIONS(8237), + [sym_newline] = ACTIONS(8239), + [anon_sym_COLON] = ACTIONS(8239), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8237), + [aux_sym_frm_property_statement_token1] = ACTIONS(8237), + [anon_sym_DOT] = ACTIONS(8237), + [anon_sym_BANG] = ACTIONS(8239), + [aux_sym__attribute_identifier_token1] = ACTIONS(8237), + [aux_sym_option_statement_token3] = ACTIONS(8237), + [aux_sym_type_declaration_token1] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8237), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8237), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8237), + [aux_sym_enum_declaration_token1] = ACTIONS(8237), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8237), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8237), + [aux_sym_declare_function_statement_token1] = ACTIONS(8237), + [aux_sym_preprocessor_const_token1] = ACTIONS(8237), + [aux_sym__property_get_header_token1] = ACTIONS(8237), + [aux_sym_event_declaration_token1] = ACTIONS(8237), + [sym_static_modifier] = ACTIONS(8237), + [sym__dim_keyword] = ACTIONS(8237), + [sym__redim_keyword] = ACTIONS(8237), + [aux_sym_get_accessor_token1] = ACTIONS(8237), + [aux_sym_set_accessor_token1] = ACTIONS(8237), + [anon_sym_COMMA] = ACTIONS(7868), + [aux_sym_const_declaration_token1] = ACTIONS(8237), + [anon_sym_LPAREN] = ACTIONS(8239), + [aux_sym_as_type_clause_token2] = ACTIONS(8237), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8237), + [aux_sym_visibility_token1] = ACTIONS(8237), + [aux_sym_visibility_token2] = ACTIONS(8237), + [aux_sym_elseif_fragment_token1] = ACTIONS(8237), + [aux_sym_else_fragment_token1] = ACTIONS(8237), + [aux_sym_select_statement_token1] = ACTIONS(8237), + [aux_sym__for_header_token1] = ACTIONS(8237), + [aux_sym_do_statement_token1] = ACTIONS(8237), + [aux_sym_do_condition_token1] = ACTIONS(8237), + [aux_sym_with_statement_token1] = ACTIONS(8237), + [aux_sym_exit_statement_token1] = ACTIONS(8237), + [sym_end_statement] = ACTIONS(8239), + [aux_sym_on_goto_statement_token1] = ACTIONS(8237), + [aux_sym_on_goto_statement_token2] = ACTIONS(8237), + [aux_sym_on_error_statement_token2] = ACTIONS(8237), + [sym__ambiguous_redim_statement] = ACTIONS(8239), + [aux_sym_erase_statement_token1] = ACTIONS(8237), + [aux_sym_open_statement_token1] = ACTIONS(8237), + [aux_sym_file_mode_token2] = ACTIONS(8237), + [aux_sym_file_access_token2] = ACTIONS(8237), + [aux_sym_file_lock_token2] = ACTIONS(8237), + [aux_sym_print_statement_token1] = ACTIONS(8237), + [anon_sym_PLUS] = ACTIONS(8239), + [anon_sym_DASH] = ACTIONS(8237), + [anon_sym_QMARK] = ACTIONS(8239), + [aux_sym_close_statement_token1] = ACTIONS(8237), + [aux_sym_put_statement_token1] = ACTIONS(8237), + [aux_sym_unlock_statement_token1] = ACTIONS(8237), + [aux_sym_seek_statement_token1] = ACTIONS(8237), + [sym_reset_statement] = ACTIONS(8237), + [aux_sym_raise_event_statement_token1] = ACTIONS(8237), + [sym_stop_statement] = ACTIONS(8237), + [sym_beep_statement] = ACTIONS(8237), + [aux_sym_unload_statement_token1] = ACTIONS(8237), + [aux_sym_def_type_statement_token1] = ACTIONS(8237), + [aux_sym_def_type_statement_token2] = ACTIONS(8237), + [aux_sym_def_type_statement_token3] = ACTIONS(8237), + [aux_sym_def_type_statement_token4] = ACTIONS(8237), + [aux_sym_def_type_statement_token5] = ACTIONS(8237), + [aux_sym_def_type_statement_token6] = ACTIONS(8237), + [aux_sym_def_type_statement_token7] = ACTIONS(8237), + [aux_sym_def_type_statement_token8] = ACTIONS(8237), + [aux_sym_def_type_statement_token9] = ACTIONS(8237), + [aux_sym_def_type_statement_token10] = ACTIONS(8237), + [aux_sym_def_type_statement_token11] = ACTIONS(8237), + [aux_sym_def_type_statement_token12] = ACTIONS(8237), + [aux_sym_def_type_statement_token13] = ACTIONS(8237), + [aux_sym_def_type_statement_token14] = ACTIONS(8237), + [aux_sym_call_statement_token1] = ACTIONS(8237), + [sym__ambiguous_call_statement] = ACTIONS(8237), + [aux_sym_addressof_expression_token1] = ACTIONS(8237), + [aux_sym_type_of_expression_token1] = ACTIONS(8237), + [aux_sym_unary_expression_token1] = ACTIONS(8237), + [sym_string_literal] = ACTIONS(8239), + [sym_number_literal] = ACTIONS(8239), + [aux_sym_boolean_literal_token1] = ACTIONS(8237), + [aux_sym_boolean_literal_token2] = ACTIONS(8237), + [sym_nothing_literal] = ACTIONS(8237), + [sym_null_literal] = ACTIONS(8237), + [sym_empty_literal] = ACTIONS(8237), + [sym_date_literal] = ACTIONS(8239), + [anon_sym_POUND] = ACTIONS(8237), + }, + [STATE(3496)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(8241), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token3] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(8235), + [anon_sym_SLASH] = ACTIONS(8241), + [anon_sym_BSLASH] = ACTIONS(8243), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8245), + [anon_sym_PLUS] = ACTIONS(8247), + [anon_sym_DASH] = ACTIONS(8249), + [anon_sym_AMP] = ACTIONS(8251), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(3497)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(8241), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token3] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(8235), + [anon_sym_SLASH] = ACTIONS(8241), + [anon_sym_BSLASH] = ACTIONS(8243), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8245), + [anon_sym_PLUS] = ACTIONS(8247), + [anon_sym_DASH] = ACTIONS(8249), + [anon_sym_AMP] = ACTIONS(8251), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8253), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8255), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(8257), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(8259), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(8261), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(3498)] = { + [aux_sym_next_variable_list_repeat1] = STATE(3567), + [sym_identifier] = ACTIONS(7945), + [sym_newline] = ACTIONS(7947), + [anon_sym_COLON] = ACTIONS(7947), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7945), + [aux_sym_frm_property_statement_token1] = ACTIONS(7945), + [anon_sym_DOT] = ACTIONS(7945), + [anon_sym_BANG] = ACTIONS(7947), + [aux_sym__attribute_identifier_token1] = ACTIONS(7945), + [aux_sym_option_statement_token3] = ACTIONS(7945), + [aux_sym_type_declaration_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7945), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7945), + [aux_sym_enum_declaration_token1] = ACTIONS(7945), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7945), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7945), + [aux_sym_declare_function_statement_token1] = ACTIONS(7945), + [aux_sym_preprocessor_const_token1] = ACTIONS(7945), + [aux_sym__property_get_header_token1] = ACTIONS(7945), + [aux_sym_event_declaration_token1] = ACTIONS(7945), + [sym_static_modifier] = ACTIONS(7945), + [sym__dim_keyword] = ACTIONS(7945), + [sym__redim_keyword] = ACTIONS(7945), + [aux_sym_get_accessor_token1] = ACTIONS(7945), + [aux_sym_set_accessor_token1] = ACTIONS(7945), + [anon_sym_COMMA] = ACTIONS(8263), + [aux_sym_const_declaration_token1] = ACTIONS(7945), + [anon_sym_LPAREN] = ACTIONS(7947), + [aux_sym_as_type_clause_token2] = ACTIONS(7945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7945), + [aux_sym_visibility_token1] = ACTIONS(7945), + [aux_sym_visibility_token2] = ACTIONS(7945), + [aux_sym_elseif_fragment_token1] = ACTIONS(7945), + [aux_sym_else_fragment_token1] = ACTIONS(7945), + [aux_sym_select_statement_token1] = ACTIONS(7945), + [aux_sym__for_header_token1] = ACTIONS(7945), + [aux_sym_do_statement_token1] = ACTIONS(7945), + [aux_sym_do_condition_token1] = ACTIONS(7945), + [aux_sym_with_statement_token1] = ACTIONS(7945), + [aux_sym_exit_statement_token1] = ACTIONS(7945), + [sym_end_statement] = ACTIONS(7947), + [aux_sym_on_goto_statement_token1] = ACTIONS(7945), + [aux_sym_on_goto_statement_token2] = ACTIONS(7945), + [aux_sym_on_error_statement_token2] = ACTIONS(7945), + [sym__ambiguous_redim_statement] = ACTIONS(7947), + [aux_sym_erase_statement_token1] = ACTIONS(7945), + [aux_sym_open_statement_token1] = ACTIONS(7945), + [aux_sym_file_mode_token2] = ACTIONS(7945), + [aux_sym_file_access_token2] = ACTIONS(7945), + [aux_sym_file_lock_token2] = ACTIONS(7945), + [aux_sym_print_statement_token1] = ACTIONS(7945), + [anon_sym_PLUS] = ACTIONS(7947), + [anon_sym_DASH] = ACTIONS(7945), + [anon_sym_QMARK] = ACTIONS(7947), + [aux_sym_close_statement_token1] = ACTIONS(7945), + [aux_sym_put_statement_token1] = ACTIONS(7945), + [aux_sym_unlock_statement_token1] = ACTIONS(7945), + [aux_sym_seek_statement_token1] = ACTIONS(7945), + [sym_reset_statement] = ACTIONS(7945), + [aux_sym_raise_event_statement_token1] = ACTIONS(7945), + [sym_stop_statement] = ACTIONS(7945), + [sym_beep_statement] = ACTIONS(7945), + [aux_sym_unload_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token2] = ACTIONS(7945), + [aux_sym_def_type_statement_token3] = ACTIONS(7945), + [aux_sym_def_type_statement_token4] = ACTIONS(7945), + [aux_sym_def_type_statement_token5] = ACTIONS(7945), + [aux_sym_def_type_statement_token6] = ACTIONS(7945), + [aux_sym_def_type_statement_token7] = ACTIONS(7945), + [aux_sym_def_type_statement_token8] = ACTIONS(7945), + [aux_sym_def_type_statement_token9] = ACTIONS(7945), + [aux_sym_def_type_statement_token10] = ACTIONS(7945), + [aux_sym_def_type_statement_token11] = ACTIONS(7945), + [aux_sym_def_type_statement_token12] = ACTIONS(7945), + [aux_sym_def_type_statement_token13] = ACTIONS(7945), + [aux_sym_def_type_statement_token14] = ACTIONS(7945), + [aux_sym_call_statement_token1] = ACTIONS(7945), + [sym__ambiguous_call_statement] = ACTIONS(7945), + [aux_sym_addressof_expression_token1] = ACTIONS(7945), + [aux_sym_type_of_expression_token1] = ACTIONS(7945), + [aux_sym_unary_expression_token1] = ACTIONS(7945), + [sym_string_literal] = ACTIONS(7947), + [sym_number_literal] = ACTIONS(7947), + [aux_sym_boolean_literal_token1] = ACTIONS(7945), + [aux_sym_boolean_literal_token2] = ACTIONS(7945), + [sym_nothing_literal] = ACTIONS(7945), + [sym_null_literal] = ACTIONS(7945), + [sym_empty_literal] = ACTIONS(7945), + [sym_date_literal] = ACTIONS(7947), + [anon_sym_POUND] = ACTIONS(7945), + }, + [STATE(3499)] = { + [sym_identifier] = ACTIONS(6324), + [sym_newline] = ACTIONS(6326), + [anon_sym_COLON] = ACTIONS(6326), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6324), + [aux_sym_frm_property_statement_token1] = ACTIONS(6324), + [anon_sym_DOT] = ACTIONS(6324), + [anon_sym_BANG] = ACTIONS(6326), + [aux_sym__attribute_identifier_token1] = ACTIONS(6324), + [aux_sym_option_statement_token3] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6324), + [aux_sym_preprocessor_const_token1] = ACTIONS(6324), + [sym_static_modifier] = ACTIONS(6324), + [sym__dim_keyword] = ACTIONS(6324), + [sym__redim_keyword] = ACTIONS(6324), + [aux_sym_get_accessor_token1] = ACTIONS(6324), + [aux_sym_set_accessor_token1] = ACTIONS(6324), + [aux_sym_const_declaration_token1] = ACTIONS(6324), + [anon_sym_LPAREN] = ACTIONS(6326), + [aux_sym_as_type_clause_token2] = ACTIONS(6324), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6324), + [aux_sym_visibility_token1] = ACTIONS(6324), + [aux_sym_visibility_token2] = ACTIONS(6324), + [aux_sym_elseif_fragment_token1] = ACTIONS(6324), + [aux_sym_else_fragment_token1] = ACTIONS(6324), + [aux_sym_select_statement_token1] = ACTIONS(6324), + [aux_sym__for_header_token1] = ACTIONS(6324), + [aux_sym_do_statement_token1] = ACTIONS(6324), + [aux_sym_do_condition_token1] = ACTIONS(6324), + [aux_sym_with_statement_token1] = ACTIONS(6324), + [aux_sym_exit_statement_token1] = ACTIONS(6324), + [sym_end_statement] = ACTIONS(6326), + [aux_sym_on_goto_statement_token1] = ACTIONS(6324), + [aux_sym_on_goto_statement_token2] = ACTIONS(6324), + [aux_sym_on_error_statement_token2] = ACTIONS(6324), + [sym__ambiguous_redim_statement] = ACTIONS(6326), + [aux_sym_erase_statement_token1] = ACTIONS(6324), + [aux_sym_open_statement_token1] = ACTIONS(6324), + [aux_sym_file_mode_token2] = ACTIONS(6324), + [aux_sym_file_access_token2] = ACTIONS(6324), + [aux_sym_file_lock_token2] = ACTIONS(6324), + [aux_sym_print_statement_token1] = ACTIONS(6324), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_QMARK] = ACTIONS(6326), + [aux_sym_close_statement_token1] = ACTIONS(6324), + [aux_sym_put_statement_token1] = ACTIONS(6324), + [aux_sym_unlock_statement_token1] = ACTIONS(6324), + [aux_sym_seek_statement_token1] = ACTIONS(6324), + [sym_reset_statement] = ACTIONS(6324), + [aux_sym_raise_event_statement_token1] = ACTIONS(6324), + [sym_stop_statement] = ACTIONS(6324), + [sym_beep_statement] = ACTIONS(6324), + [aux_sym_unload_statement_token1] = ACTIONS(6324), + [aux_sym_def_type_statement_token1] = ACTIONS(6324), + [aux_sym_def_type_statement_token2] = ACTIONS(6324), + [aux_sym_def_type_statement_token3] = ACTIONS(6324), + [aux_sym_def_type_statement_token4] = ACTIONS(6324), + [aux_sym_def_type_statement_token5] = ACTIONS(6324), + [aux_sym_def_type_statement_token6] = ACTIONS(6324), + [aux_sym_def_type_statement_token7] = ACTIONS(6324), + [aux_sym_def_type_statement_token8] = ACTIONS(6324), + [aux_sym_def_type_statement_token9] = ACTIONS(6324), + [aux_sym_def_type_statement_token10] = ACTIONS(6324), + [aux_sym_def_type_statement_token11] = ACTIONS(6324), + [aux_sym_def_type_statement_token12] = ACTIONS(6324), + [aux_sym_def_type_statement_token13] = ACTIONS(6324), + [aux_sym_def_type_statement_token14] = ACTIONS(6324), + [aux_sym_call_statement_token1] = ACTIONS(6324), + [sym__ambiguous_call_statement] = ACTIONS(6324), + [aux_sym_addressof_expression_token1] = ACTIONS(6324), + [aux_sym_type_of_expression_token1] = ACTIONS(6324), + [aux_sym_unary_expression_token1] = ACTIONS(6324), + [sym_string_literal] = ACTIONS(6326), + [sym_number_literal] = ACTIONS(6326), + [aux_sym_boolean_literal_token1] = ACTIONS(6324), + [aux_sym_boolean_literal_token2] = ACTIONS(6324), + [sym_nothing_literal] = ACTIONS(6324), + [sym_null_literal] = ACTIONS(6324), + [sym_empty_literal] = ACTIONS(6324), + [sym_date_literal] = ACTIONS(6326), + [anon_sym_POUND] = ACTIONS(6324), + }, + [STATE(3500)] = { + [aux_sym_close_statement_repeat1] = STATE(3659), + [sym_identifier] = ACTIONS(8265), + [sym_newline] = ACTIONS(8267), + [anon_sym_COLON] = ACTIONS(8267), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8265), + [aux_sym_frm_property_statement_token1] = ACTIONS(8265), + [anon_sym_DOT] = ACTIONS(8265), + [anon_sym_BANG] = ACTIONS(8267), + [aux_sym__attribute_identifier_token1] = ACTIONS(8265), + [aux_sym_option_statement_token3] = ACTIONS(8265), + [aux_sym_type_declaration_token1] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8265), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8265), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8265), + [aux_sym_enum_declaration_token1] = ACTIONS(8265), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8265), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8265), + [aux_sym_declare_function_statement_token1] = ACTIONS(8265), + [aux_sym_preprocessor_const_token1] = ACTIONS(8265), + [aux_sym__property_get_header_token1] = ACTIONS(8265), + [aux_sym_event_declaration_token1] = ACTIONS(8265), + [sym_static_modifier] = ACTIONS(8265), + [sym__dim_keyword] = ACTIONS(8265), + [sym__redim_keyword] = ACTIONS(8265), + [aux_sym_get_accessor_token1] = ACTIONS(8265), + [aux_sym_set_accessor_token1] = ACTIONS(8265), + [anon_sym_COMMA] = ACTIONS(8269), + [aux_sym_const_declaration_token1] = ACTIONS(8265), + [anon_sym_LPAREN] = ACTIONS(8267), + [aux_sym_as_type_clause_token2] = ACTIONS(8265), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8265), + [aux_sym_visibility_token1] = ACTIONS(8265), + [aux_sym_visibility_token2] = ACTIONS(8265), + [aux_sym_elseif_fragment_token1] = ACTIONS(8265), + [aux_sym_else_fragment_token1] = ACTIONS(8265), + [aux_sym_select_statement_token1] = ACTIONS(8265), + [aux_sym__for_header_token1] = ACTIONS(8265), + [aux_sym_do_statement_token1] = ACTIONS(8265), + [aux_sym_do_condition_token1] = ACTIONS(8265), + [aux_sym_with_statement_token1] = ACTIONS(8265), + [aux_sym_exit_statement_token1] = ACTIONS(8265), + [sym_end_statement] = ACTIONS(8267), + [aux_sym_on_goto_statement_token1] = ACTIONS(8265), + [aux_sym_on_goto_statement_token2] = ACTIONS(8265), + [aux_sym_on_error_statement_token2] = ACTIONS(8265), + [sym__ambiguous_redim_statement] = ACTIONS(8267), + [aux_sym_erase_statement_token1] = ACTIONS(8265), + [aux_sym_open_statement_token1] = ACTIONS(8265), + [aux_sym_file_mode_token2] = ACTIONS(8265), + [aux_sym_file_access_token2] = ACTIONS(8265), + [aux_sym_file_lock_token2] = ACTIONS(8265), + [aux_sym_print_statement_token1] = ACTIONS(8265), + [anon_sym_PLUS] = ACTIONS(8267), + [anon_sym_DASH] = ACTIONS(8265), + [anon_sym_QMARK] = ACTIONS(8267), + [aux_sym_close_statement_token1] = ACTIONS(8265), + [aux_sym_put_statement_token1] = ACTIONS(8265), + [aux_sym_unlock_statement_token1] = ACTIONS(8265), + [aux_sym_seek_statement_token1] = ACTIONS(8265), + [sym_reset_statement] = ACTIONS(8265), + [aux_sym_raise_event_statement_token1] = ACTIONS(8265), + [sym_stop_statement] = ACTIONS(8265), + [sym_beep_statement] = ACTIONS(8265), + [aux_sym_unload_statement_token1] = ACTIONS(8265), + [aux_sym_def_type_statement_token1] = ACTIONS(8265), + [aux_sym_def_type_statement_token2] = ACTIONS(8265), + [aux_sym_def_type_statement_token3] = ACTIONS(8265), + [aux_sym_def_type_statement_token4] = ACTIONS(8265), + [aux_sym_def_type_statement_token5] = ACTIONS(8265), + [aux_sym_def_type_statement_token6] = ACTIONS(8265), + [aux_sym_def_type_statement_token7] = ACTIONS(8265), + [aux_sym_def_type_statement_token8] = ACTIONS(8265), + [aux_sym_def_type_statement_token9] = ACTIONS(8265), + [aux_sym_def_type_statement_token10] = ACTIONS(8265), + [aux_sym_def_type_statement_token11] = ACTIONS(8265), + [aux_sym_def_type_statement_token12] = ACTIONS(8265), + [aux_sym_def_type_statement_token13] = ACTIONS(8265), + [aux_sym_def_type_statement_token14] = ACTIONS(8265), + [aux_sym_call_statement_token1] = ACTIONS(8265), + [sym__ambiguous_call_statement] = ACTIONS(8265), + [aux_sym_addressof_expression_token1] = ACTIONS(8265), + [aux_sym_type_of_expression_token1] = ACTIONS(8265), + [aux_sym_unary_expression_token1] = ACTIONS(8265), + [sym_string_literal] = ACTIONS(8267), + [sym_number_literal] = ACTIONS(8267), + [aux_sym_boolean_literal_token1] = ACTIONS(8265), + [aux_sym_boolean_literal_token2] = ACTIONS(8265), + [sym_nothing_literal] = ACTIONS(8265), + [sym_null_literal] = ACTIONS(8265), + [sym_empty_literal] = ACTIONS(8265), + [sym_date_literal] = ACTIONS(8267), + [anon_sym_POUND] = ACTIONS(8265), + }, + [STATE(3501)] = { + [sym_identifier] = ACTIONS(6430), + [sym_newline] = ACTIONS(6432), + [anon_sym_COLON] = ACTIONS(6432), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6430), + [aux_sym_frm_property_statement_token1] = ACTIONS(6430), + [anon_sym_DOT] = ACTIONS(6430), + [anon_sym_BANG] = ACTIONS(6432), + [aux_sym__attribute_identifier_token1] = ACTIONS(6430), + [aux_sym_option_statement_token3] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6430), + [aux_sym_preprocessor_const_token1] = ACTIONS(6430), + [sym_static_modifier] = ACTIONS(6430), + [sym__dim_keyword] = ACTIONS(6430), + [sym__redim_keyword] = ACTIONS(6430), + [aux_sym_get_accessor_token1] = ACTIONS(6430), + [aux_sym_set_accessor_token1] = ACTIONS(6430), + [aux_sym_const_declaration_token1] = ACTIONS(6430), + [anon_sym_LPAREN] = ACTIONS(6432), + [aux_sym_as_type_clause_token2] = ACTIONS(6430), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6430), + [aux_sym_visibility_token1] = ACTIONS(6430), + [aux_sym_visibility_token2] = ACTIONS(6430), + [aux_sym_elseif_fragment_token1] = ACTIONS(6430), + [aux_sym_else_fragment_token1] = ACTIONS(6430), + [aux_sym_select_statement_token1] = ACTIONS(6430), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6430), + [aux_sym__for_header_token1] = ACTIONS(6430), + [aux_sym_do_statement_token1] = ACTIONS(6430), + [aux_sym_do_condition_token1] = ACTIONS(6430), + [aux_sym_with_statement_token1] = ACTIONS(6430), + [aux_sym_exit_statement_token1] = ACTIONS(6430), + [sym_end_statement] = ACTIONS(6432), + [aux_sym_on_goto_statement_token1] = ACTIONS(6430), + [aux_sym_on_goto_statement_token2] = ACTIONS(6430), + [aux_sym_on_error_statement_token2] = ACTIONS(6430), + [sym__ambiguous_redim_statement] = ACTIONS(6432), + [aux_sym_erase_statement_token1] = ACTIONS(6430), + [aux_sym_open_statement_token1] = ACTIONS(6430), + [aux_sym_file_mode_token2] = ACTIONS(6430), + [aux_sym_file_access_token2] = ACTIONS(6430), + [aux_sym_file_lock_token2] = ACTIONS(6430), + [aux_sym_print_statement_token1] = ACTIONS(6430), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(6432), + [aux_sym_close_statement_token1] = ACTIONS(6430), + [aux_sym_put_statement_token1] = ACTIONS(6430), + [aux_sym_unlock_statement_token1] = ACTIONS(6430), + [aux_sym_seek_statement_token1] = ACTIONS(6430), + [sym_reset_statement] = ACTIONS(6430), + [aux_sym_raise_event_statement_token1] = ACTIONS(6430), + [sym_stop_statement] = ACTIONS(6430), + [sym_beep_statement] = ACTIONS(6430), + [aux_sym_unload_statement_token1] = ACTIONS(6430), + [aux_sym_def_type_statement_token1] = ACTIONS(6430), + [aux_sym_def_type_statement_token2] = ACTIONS(6430), + [aux_sym_def_type_statement_token3] = ACTIONS(6430), + [aux_sym_def_type_statement_token4] = ACTIONS(6430), + [aux_sym_def_type_statement_token5] = ACTIONS(6430), + [aux_sym_def_type_statement_token6] = ACTIONS(6430), + [aux_sym_def_type_statement_token7] = ACTIONS(6430), + [aux_sym_def_type_statement_token8] = ACTIONS(6430), + [aux_sym_def_type_statement_token9] = ACTIONS(6430), + [aux_sym_def_type_statement_token10] = ACTIONS(6430), + [aux_sym_def_type_statement_token11] = ACTIONS(6430), + [aux_sym_def_type_statement_token12] = ACTIONS(6430), + [aux_sym_def_type_statement_token13] = ACTIONS(6430), + [aux_sym_def_type_statement_token14] = ACTIONS(6430), + [aux_sym_call_statement_token1] = ACTIONS(6430), + [sym__ambiguous_call_statement] = ACTIONS(6430), + [aux_sym_addressof_expression_token1] = ACTIONS(6430), + [aux_sym_type_of_expression_token1] = ACTIONS(6430), + [aux_sym_unary_expression_token1] = ACTIONS(6430), + [sym_string_literal] = ACTIONS(6432), + [sym_number_literal] = ACTIONS(6432), + [aux_sym_boolean_literal_token1] = ACTIONS(6430), + [aux_sym_boolean_literal_token2] = ACTIONS(6430), + [sym_nothing_literal] = ACTIONS(6430), + [sym_null_literal] = ACTIONS(6430), + [sym_empty_literal] = ACTIONS(6430), + [sym_date_literal] = ACTIONS(6432), + [anon_sym_POUND] = ACTIONS(6430), + }, + [STATE(3502)] = { + [sym_do_condition] = STATE(4061), + [sym_identifier] = ACTIONS(8271), + [sym_newline] = ACTIONS(8273), + [anon_sym_COLON] = ACTIONS(8273), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8271), + [aux_sym_frm_property_statement_token1] = ACTIONS(8271), + [anon_sym_DOT] = ACTIONS(8271), + [anon_sym_BANG] = ACTIONS(8273), + [aux_sym__attribute_identifier_token1] = ACTIONS(8271), + [aux_sym_option_statement_token3] = ACTIONS(8271), + [aux_sym_type_declaration_token1] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8271), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8271), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8271), + [aux_sym_enum_declaration_token1] = ACTIONS(8271), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8271), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8271), + [aux_sym_declare_function_statement_token1] = ACTIONS(8271), + [aux_sym_preprocessor_const_token1] = ACTIONS(8271), + [aux_sym__property_get_header_token1] = ACTIONS(8271), + [aux_sym_event_declaration_token1] = ACTIONS(8271), + [sym_static_modifier] = ACTIONS(8271), + [sym__dim_keyword] = ACTIONS(8271), + [sym__redim_keyword] = ACTIONS(8271), + [aux_sym_get_accessor_token1] = ACTIONS(8271), + [aux_sym_set_accessor_token1] = ACTIONS(8271), + [aux_sym_const_declaration_token1] = ACTIONS(8271), + [anon_sym_LPAREN] = ACTIONS(8273), + [aux_sym_as_type_clause_token2] = ACTIONS(8271), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8271), + [aux_sym_visibility_token1] = ACTIONS(8271), + [aux_sym_visibility_token2] = ACTIONS(8271), + [aux_sym_elseif_fragment_token1] = ACTIONS(8271), + [aux_sym_else_fragment_token1] = ACTIONS(8271), + [aux_sym_select_statement_token1] = ACTIONS(8271), + [aux_sym__for_header_token1] = ACTIONS(8271), + [aux_sym_do_statement_token1] = ACTIONS(8271), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8271), + [aux_sym_exit_statement_token1] = ACTIONS(8271), + [sym_end_statement] = ACTIONS(8273), + [aux_sym_on_goto_statement_token1] = ACTIONS(8271), + [aux_sym_on_goto_statement_token2] = ACTIONS(8271), + [aux_sym_on_error_statement_token2] = ACTIONS(8271), + [sym__ambiguous_redim_statement] = ACTIONS(8273), + [aux_sym_erase_statement_token1] = ACTIONS(8271), + [aux_sym_open_statement_token1] = ACTIONS(8271), + [aux_sym_file_mode_token2] = ACTIONS(8271), + [aux_sym_file_access_token2] = ACTIONS(8271), + [aux_sym_file_lock_token2] = ACTIONS(8271), + [aux_sym_print_statement_token1] = ACTIONS(8271), + [anon_sym_PLUS] = ACTIONS(8273), + [anon_sym_DASH] = ACTIONS(8271), + [anon_sym_QMARK] = ACTIONS(8273), + [aux_sym_close_statement_token1] = ACTIONS(8271), + [aux_sym_put_statement_token1] = ACTIONS(8271), + [aux_sym_unlock_statement_token1] = ACTIONS(8271), + [aux_sym_seek_statement_token1] = ACTIONS(8271), + [sym_reset_statement] = ACTIONS(8271), + [aux_sym_raise_event_statement_token1] = ACTIONS(8271), + [sym_stop_statement] = ACTIONS(8271), + [sym_beep_statement] = ACTIONS(8271), + [aux_sym_unload_statement_token1] = ACTIONS(8271), + [aux_sym_def_type_statement_token1] = ACTIONS(8271), + [aux_sym_def_type_statement_token2] = ACTIONS(8271), + [aux_sym_def_type_statement_token3] = ACTIONS(8271), + [aux_sym_def_type_statement_token4] = ACTIONS(8271), + [aux_sym_def_type_statement_token5] = ACTIONS(8271), + [aux_sym_def_type_statement_token6] = ACTIONS(8271), + [aux_sym_def_type_statement_token7] = ACTIONS(8271), + [aux_sym_def_type_statement_token8] = ACTIONS(8271), + [aux_sym_def_type_statement_token9] = ACTIONS(8271), + [aux_sym_def_type_statement_token10] = ACTIONS(8271), + [aux_sym_def_type_statement_token11] = ACTIONS(8271), + [aux_sym_def_type_statement_token12] = ACTIONS(8271), + [aux_sym_def_type_statement_token13] = ACTIONS(8271), + [aux_sym_def_type_statement_token14] = ACTIONS(8271), + [aux_sym_call_statement_token1] = ACTIONS(8271), + [sym__ambiguous_call_statement] = ACTIONS(8271), + [aux_sym_addressof_expression_token1] = ACTIONS(8271), + [aux_sym_type_of_expression_token1] = ACTIONS(8271), + [aux_sym_unary_expression_token1] = ACTIONS(8271), + [sym_string_literal] = ACTIONS(8273), + [sym_number_literal] = ACTIONS(8273), + [aux_sym_boolean_literal_token1] = ACTIONS(8271), + [aux_sym_boolean_literal_token2] = ACTIONS(8271), + [sym_nothing_literal] = ACTIONS(8271), + [sym_null_literal] = ACTIONS(8271), + [sym_empty_literal] = ACTIONS(8271), + [sym_date_literal] = ACTIONS(8273), + [anon_sym_POUND] = ACTIONS(8271), + }, + [STATE(3503)] = { + [sym_identifier] = ACTIONS(6340), + [sym_newline] = ACTIONS(6342), + [anon_sym_COLON] = ACTIONS(6342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6340), + [aux_sym_frm_property_statement_token1] = ACTIONS(6340), + [anon_sym_DOT] = ACTIONS(6340), + [anon_sym_BANG] = ACTIONS(6342), + [aux_sym__attribute_identifier_token1] = ACTIONS(6340), + [aux_sym_option_statement_token3] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6340), + [aux_sym_preprocessor_const_token1] = ACTIONS(6340), + [sym_static_modifier] = ACTIONS(6340), + [sym__dim_keyword] = ACTIONS(6340), + [sym__redim_keyword] = ACTIONS(6340), + [aux_sym_get_accessor_token1] = ACTIONS(6340), + [aux_sym_set_accessor_token1] = ACTIONS(6340), + [aux_sym_const_declaration_token1] = ACTIONS(6340), + [anon_sym_LPAREN] = ACTIONS(6342), + [aux_sym_as_type_clause_token2] = ACTIONS(6340), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6340), + [aux_sym_visibility_token1] = ACTIONS(6340), + [aux_sym_visibility_token2] = ACTIONS(6340), + [aux_sym_elseif_fragment_token1] = ACTIONS(6340), + [aux_sym_else_fragment_token1] = ACTIONS(6340), + [aux_sym_select_statement_token1] = ACTIONS(6340), + [aux_sym__for_header_token1] = ACTIONS(6340), + [aux_sym_do_statement_token1] = ACTIONS(6340), + [aux_sym_do_condition_token1] = ACTIONS(6340), + [aux_sym_with_statement_token1] = ACTIONS(6340), + [aux_sym_exit_statement_token1] = ACTIONS(6340), + [sym_end_statement] = ACTIONS(6342), + [aux_sym_on_goto_statement_token1] = ACTIONS(6340), + [aux_sym_on_goto_statement_token2] = ACTIONS(6340), + [aux_sym_on_error_statement_token2] = ACTIONS(6340), + [sym__ambiguous_redim_statement] = ACTIONS(6342), + [aux_sym_erase_statement_token1] = ACTIONS(6340), + [aux_sym_open_statement_token1] = ACTIONS(6340), + [aux_sym_file_mode_token2] = ACTIONS(6340), + [aux_sym_file_access_token2] = ACTIONS(6340), + [aux_sym_file_lock_token2] = ACTIONS(6340), + [aux_sym_print_statement_token1] = ACTIONS(6340), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_QMARK] = ACTIONS(6342), + [aux_sym_close_statement_token1] = ACTIONS(6340), + [aux_sym_put_statement_token1] = ACTIONS(6340), + [aux_sym_unlock_statement_token1] = ACTIONS(6340), + [aux_sym_seek_statement_token1] = ACTIONS(6340), + [sym_reset_statement] = ACTIONS(6340), + [aux_sym_raise_event_statement_token1] = ACTIONS(6340), + [sym_stop_statement] = ACTIONS(6340), + [sym_beep_statement] = ACTIONS(6340), + [aux_sym_unload_statement_token1] = ACTIONS(6340), + [aux_sym_def_type_statement_token1] = ACTIONS(6340), + [aux_sym_def_type_statement_token2] = ACTIONS(6340), + [aux_sym_def_type_statement_token3] = ACTIONS(6340), + [aux_sym_def_type_statement_token4] = ACTIONS(6340), + [aux_sym_def_type_statement_token5] = ACTIONS(6340), + [aux_sym_def_type_statement_token6] = ACTIONS(6340), + [aux_sym_def_type_statement_token7] = ACTIONS(6340), + [aux_sym_def_type_statement_token8] = ACTIONS(6340), + [aux_sym_def_type_statement_token9] = ACTIONS(6340), + [aux_sym_def_type_statement_token10] = ACTIONS(6340), + [aux_sym_def_type_statement_token11] = ACTIONS(6340), + [aux_sym_def_type_statement_token12] = ACTIONS(6340), + [aux_sym_def_type_statement_token13] = ACTIONS(6340), + [aux_sym_def_type_statement_token14] = ACTIONS(6340), + [aux_sym_call_statement_token1] = ACTIONS(6340), + [sym__ambiguous_call_statement] = ACTIONS(6340), + [aux_sym_addressof_expression_token1] = ACTIONS(6340), + [aux_sym_type_of_expression_token1] = ACTIONS(6340), + [aux_sym_unary_expression_token1] = ACTIONS(6340), + [sym_string_literal] = ACTIONS(6342), + [sym_number_literal] = ACTIONS(6342), + [aux_sym_boolean_literal_token1] = ACTIONS(6340), + [aux_sym_boolean_literal_token2] = ACTIONS(6340), + [sym_nothing_literal] = ACTIONS(6340), + [sym_null_literal] = ACTIONS(6340), + [sym_empty_literal] = ACTIONS(6340), + [sym_date_literal] = ACTIONS(6342), + [anon_sym_POUND] = ACTIONS(6340), + }, + [STATE(3504)] = { + [sym_identifier] = ACTIONS(6392), + [sym_newline] = ACTIONS(6394), + [anon_sym_COLON] = ACTIONS(6394), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6392), + [aux_sym_frm_property_statement_token1] = ACTIONS(6392), + [anon_sym_DOT] = ACTIONS(6392), + [anon_sym_BANG] = ACTIONS(6394), + [aux_sym__attribute_identifier_token1] = ACTIONS(6392), + [aux_sym_option_statement_token3] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6392), + [aux_sym_preprocessor_const_token1] = ACTIONS(6392), + [sym_static_modifier] = ACTIONS(6392), + [sym__dim_keyword] = ACTIONS(6392), + [sym__redim_keyword] = ACTIONS(6392), + [aux_sym_get_accessor_token1] = ACTIONS(6392), + [aux_sym_set_accessor_token1] = ACTIONS(6392), + [aux_sym_const_declaration_token1] = ACTIONS(6392), + [anon_sym_LPAREN] = ACTIONS(6394), + [aux_sym_as_type_clause_token2] = ACTIONS(6392), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6392), + [aux_sym_visibility_token1] = ACTIONS(6392), + [aux_sym_visibility_token2] = ACTIONS(6392), + [aux_sym_elseif_fragment_token1] = ACTIONS(6392), + [aux_sym_else_fragment_token1] = ACTIONS(6392), + [aux_sym_select_statement_token1] = ACTIONS(6392), + [aux_sym__for_header_token1] = ACTIONS(6392), + [aux_sym_do_statement_token1] = ACTIONS(6392), + [aux_sym_do_condition_token1] = ACTIONS(6392), + [aux_sym_with_statement_token1] = ACTIONS(6392), + [aux_sym_exit_statement_token1] = ACTIONS(6392), + [sym_end_statement] = ACTIONS(6394), + [aux_sym_on_goto_statement_token1] = ACTIONS(6392), + [aux_sym_on_goto_statement_token2] = ACTIONS(6392), + [aux_sym_on_error_statement_token2] = ACTIONS(6392), + [sym__ambiguous_redim_statement] = ACTIONS(6394), + [aux_sym_erase_statement_token1] = ACTIONS(6392), + [aux_sym_open_statement_token1] = ACTIONS(6392), + [aux_sym_file_mode_token2] = ACTIONS(6392), + [aux_sym_file_access_token2] = ACTIONS(6392), + [aux_sym_file_lock_token2] = ACTIONS(6392), + [aux_sym_print_statement_token1] = ACTIONS(6392), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_QMARK] = ACTIONS(6394), + [aux_sym_close_statement_token1] = ACTIONS(6392), + [aux_sym_put_statement_token1] = ACTIONS(6392), + [aux_sym_unlock_statement_token1] = ACTIONS(6392), + [aux_sym_seek_statement_token1] = ACTIONS(6392), + [sym_reset_statement] = ACTIONS(6392), + [aux_sym_raise_event_statement_token1] = ACTIONS(6392), + [sym_stop_statement] = ACTIONS(6392), + [sym_beep_statement] = ACTIONS(6392), + [aux_sym_unload_statement_token1] = ACTIONS(6392), + [aux_sym_def_type_statement_token1] = ACTIONS(6392), + [aux_sym_def_type_statement_token2] = ACTIONS(6392), + [aux_sym_def_type_statement_token3] = ACTIONS(6392), + [aux_sym_def_type_statement_token4] = ACTIONS(6392), + [aux_sym_def_type_statement_token5] = ACTIONS(6392), + [aux_sym_def_type_statement_token6] = ACTIONS(6392), + [aux_sym_def_type_statement_token7] = ACTIONS(6392), + [aux_sym_def_type_statement_token8] = ACTIONS(6392), + [aux_sym_def_type_statement_token9] = ACTIONS(6392), + [aux_sym_def_type_statement_token10] = ACTIONS(6392), + [aux_sym_def_type_statement_token11] = ACTIONS(6392), + [aux_sym_def_type_statement_token12] = ACTIONS(6392), + [aux_sym_def_type_statement_token13] = ACTIONS(6392), + [aux_sym_def_type_statement_token14] = ACTIONS(6392), + [aux_sym_call_statement_token1] = ACTIONS(6392), + [sym__ambiguous_call_statement] = ACTIONS(6392), + [aux_sym_addressof_expression_token1] = ACTIONS(6392), + [aux_sym_type_of_expression_token1] = ACTIONS(6392), + [aux_sym_unary_expression_token1] = ACTIONS(6392), + [sym_string_literal] = ACTIONS(6394), + [sym_number_literal] = ACTIONS(6394), + [aux_sym_boolean_literal_token1] = ACTIONS(6392), + [aux_sym_boolean_literal_token2] = ACTIONS(6392), + [sym_nothing_literal] = ACTIONS(6392), + [sym_null_literal] = ACTIONS(6392), + [sym_empty_literal] = ACTIONS(6392), + [sym_date_literal] = ACTIONS(6394), + [anon_sym_POUND] = ACTIONS(6392), + }, + [STATE(3505)] = { + [sym_do_condition] = STATE(4062), + [sym_identifier] = ACTIONS(8275), + [sym_newline] = ACTIONS(8277), + [anon_sym_COLON] = ACTIONS(8277), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8275), + [aux_sym_frm_property_statement_token1] = ACTIONS(8275), + [anon_sym_DOT] = ACTIONS(8275), + [anon_sym_BANG] = ACTIONS(8277), + [aux_sym__attribute_identifier_token1] = ACTIONS(8275), + [aux_sym_option_statement_token3] = ACTIONS(8275), + [aux_sym_type_declaration_token1] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8275), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8275), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8275), + [aux_sym_enum_declaration_token1] = ACTIONS(8275), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8275), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8275), + [aux_sym_declare_function_statement_token1] = ACTIONS(8275), + [aux_sym_preprocessor_const_token1] = ACTIONS(8275), + [aux_sym__property_get_header_token1] = ACTIONS(8275), + [aux_sym_event_declaration_token1] = ACTIONS(8275), + [sym_static_modifier] = ACTIONS(8275), + [sym__dim_keyword] = ACTIONS(8275), + [sym__redim_keyword] = ACTIONS(8275), + [aux_sym_get_accessor_token1] = ACTIONS(8275), + [aux_sym_set_accessor_token1] = ACTIONS(8275), + [aux_sym_const_declaration_token1] = ACTIONS(8275), + [anon_sym_LPAREN] = ACTIONS(8277), + [aux_sym_as_type_clause_token2] = ACTIONS(8275), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8275), + [aux_sym_visibility_token1] = ACTIONS(8275), + [aux_sym_visibility_token2] = ACTIONS(8275), + [aux_sym_elseif_fragment_token1] = ACTIONS(8275), + [aux_sym_else_fragment_token1] = ACTIONS(8275), + [aux_sym_select_statement_token1] = ACTIONS(8275), + [aux_sym__for_header_token1] = ACTIONS(8275), + [aux_sym_do_statement_token1] = ACTIONS(8275), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8275), + [aux_sym_exit_statement_token1] = ACTIONS(8275), + [sym_end_statement] = ACTIONS(8277), + [aux_sym_on_goto_statement_token1] = ACTIONS(8275), + [aux_sym_on_goto_statement_token2] = ACTIONS(8275), + [aux_sym_on_error_statement_token2] = ACTIONS(8275), + [sym__ambiguous_redim_statement] = ACTIONS(8277), + [aux_sym_erase_statement_token1] = ACTIONS(8275), + [aux_sym_open_statement_token1] = ACTIONS(8275), + [aux_sym_file_mode_token2] = ACTIONS(8275), + [aux_sym_file_access_token2] = ACTIONS(8275), + [aux_sym_file_lock_token2] = ACTIONS(8275), + [aux_sym_print_statement_token1] = ACTIONS(8275), + [anon_sym_PLUS] = ACTIONS(8277), + [anon_sym_DASH] = ACTIONS(8275), + [anon_sym_QMARK] = ACTIONS(8277), + [aux_sym_close_statement_token1] = ACTIONS(8275), + [aux_sym_put_statement_token1] = ACTIONS(8275), + [aux_sym_unlock_statement_token1] = ACTIONS(8275), + [aux_sym_seek_statement_token1] = ACTIONS(8275), + [sym_reset_statement] = ACTIONS(8275), + [aux_sym_raise_event_statement_token1] = ACTIONS(8275), + [sym_stop_statement] = ACTIONS(8275), + [sym_beep_statement] = ACTIONS(8275), + [aux_sym_unload_statement_token1] = ACTIONS(8275), + [aux_sym_def_type_statement_token1] = ACTIONS(8275), + [aux_sym_def_type_statement_token2] = ACTIONS(8275), + [aux_sym_def_type_statement_token3] = ACTIONS(8275), + [aux_sym_def_type_statement_token4] = ACTIONS(8275), + [aux_sym_def_type_statement_token5] = ACTIONS(8275), + [aux_sym_def_type_statement_token6] = ACTIONS(8275), + [aux_sym_def_type_statement_token7] = ACTIONS(8275), + [aux_sym_def_type_statement_token8] = ACTIONS(8275), + [aux_sym_def_type_statement_token9] = ACTIONS(8275), + [aux_sym_def_type_statement_token10] = ACTIONS(8275), + [aux_sym_def_type_statement_token11] = ACTIONS(8275), + [aux_sym_def_type_statement_token12] = ACTIONS(8275), + [aux_sym_def_type_statement_token13] = ACTIONS(8275), + [aux_sym_def_type_statement_token14] = ACTIONS(8275), + [aux_sym_call_statement_token1] = ACTIONS(8275), + [sym__ambiguous_call_statement] = ACTIONS(8275), + [aux_sym_addressof_expression_token1] = ACTIONS(8275), + [aux_sym_type_of_expression_token1] = ACTIONS(8275), + [aux_sym_unary_expression_token1] = ACTIONS(8275), + [sym_string_literal] = ACTIONS(8277), + [sym_number_literal] = ACTIONS(8277), + [aux_sym_boolean_literal_token1] = ACTIONS(8275), + [aux_sym_boolean_literal_token2] = ACTIONS(8275), + [sym_nothing_literal] = ACTIONS(8275), + [sym_null_literal] = ACTIONS(8275), + [sym_empty_literal] = ACTIONS(8275), + [sym_date_literal] = ACTIONS(8277), + [anon_sym_POUND] = ACTIONS(8275), + }, + [STATE(3506)] = { + [sym_identifier] = ACTIONS(6336), + [sym_newline] = ACTIONS(6338), + [anon_sym_COLON] = ACTIONS(6338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6336), + [aux_sym_frm_property_statement_token1] = ACTIONS(6336), + [anon_sym_DOT] = ACTIONS(6336), + [anon_sym_BANG] = ACTIONS(6338), + [aux_sym__attribute_identifier_token1] = ACTIONS(6336), + [aux_sym_option_statement_token3] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6336), + [aux_sym_preprocessor_const_token1] = ACTIONS(6336), + [sym_static_modifier] = ACTIONS(6336), + [sym__dim_keyword] = ACTIONS(6336), + [sym__redim_keyword] = ACTIONS(6336), + [aux_sym_get_accessor_token1] = ACTIONS(6336), + [aux_sym_set_accessor_token1] = ACTIONS(6336), + [aux_sym_const_declaration_token1] = ACTIONS(6336), + [anon_sym_LPAREN] = ACTIONS(6338), + [aux_sym_as_type_clause_token2] = ACTIONS(6336), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6336), + [aux_sym_visibility_token1] = ACTIONS(6336), + [aux_sym_visibility_token2] = ACTIONS(6336), + [aux_sym_elseif_fragment_token1] = ACTIONS(6336), + [aux_sym_else_fragment_token1] = ACTIONS(6336), + [aux_sym_select_statement_token1] = ACTIONS(6336), + [aux_sym__for_header_token1] = ACTIONS(6336), + [aux_sym_do_statement_token1] = ACTIONS(6336), + [aux_sym_do_statement_token2] = ACTIONS(6336), + [aux_sym_do_condition_token1] = ACTIONS(6336), + [aux_sym_with_statement_token1] = ACTIONS(6336), + [aux_sym_exit_statement_token1] = ACTIONS(6336), + [sym_end_statement] = ACTIONS(6338), + [aux_sym_on_goto_statement_token1] = ACTIONS(6336), + [aux_sym_on_goto_statement_token2] = ACTIONS(6336), + [aux_sym_on_error_statement_token2] = ACTIONS(6336), + [sym__ambiguous_redim_statement] = ACTIONS(6338), + [aux_sym_erase_statement_token1] = ACTIONS(6336), + [aux_sym_open_statement_token1] = ACTIONS(6336), + [aux_sym_file_mode_token2] = ACTIONS(6336), + [aux_sym_file_access_token2] = ACTIONS(6336), + [aux_sym_file_lock_token2] = ACTIONS(6336), + [aux_sym_print_statement_token1] = ACTIONS(6336), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6079), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6081), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6083), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6085), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6087), + [anon_sym_QMARK] = ACTIONS(6338), + [aux_sym_close_statement_token1] = ACTIONS(6336), + [aux_sym_put_statement_token1] = ACTIONS(6336), + [aux_sym_unlock_statement_token1] = ACTIONS(6336), + [aux_sym_seek_statement_token1] = ACTIONS(6336), + [sym_reset_statement] = ACTIONS(6336), + [aux_sym_raise_event_statement_token1] = ACTIONS(6336), + [sym_stop_statement] = ACTIONS(6336), + [sym_beep_statement] = ACTIONS(6336), + [aux_sym_unload_statement_token1] = ACTIONS(6336), + [aux_sym_def_type_statement_token1] = ACTIONS(6336), + [aux_sym_def_type_statement_token2] = ACTIONS(6336), + [aux_sym_def_type_statement_token3] = ACTIONS(6336), + [aux_sym_def_type_statement_token4] = ACTIONS(6336), + [aux_sym_def_type_statement_token5] = ACTIONS(6336), + [aux_sym_def_type_statement_token6] = ACTIONS(6336), + [aux_sym_def_type_statement_token7] = ACTIONS(6336), + [aux_sym_def_type_statement_token8] = ACTIONS(6336), + [aux_sym_def_type_statement_token9] = ACTIONS(6336), + [aux_sym_def_type_statement_token10] = ACTIONS(6336), + [aux_sym_def_type_statement_token11] = ACTIONS(6336), + [aux_sym_def_type_statement_token12] = ACTIONS(6336), + [aux_sym_def_type_statement_token13] = ACTIONS(6336), + [aux_sym_def_type_statement_token14] = ACTIONS(6336), + [aux_sym_call_statement_token1] = ACTIONS(6336), + [sym__ambiguous_call_statement] = ACTIONS(6336), + [aux_sym_addressof_expression_token1] = ACTIONS(6336), + [aux_sym_type_of_expression_token1] = ACTIONS(6336), + [aux_sym_unary_expression_token1] = ACTIONS(6336), + [sym_string_literal] = ACTIONS(6338), + [sym_number_literal] = ACTIONS(6338), + [aux_sym_boolean_literal_token1] = ACTIONS(6336), + [aux_sym_boolean_literal_token2] = ACTIONS(6336), + [sym_nothing_literal] = ACTIONS(6336), + [sym_null_literal] = ACTIONS(6336), + [sym_empty_literal] = ACTIONS(6336), + [sym_date_literal] = ACTIONS(6338), + [anon_sym_POUND] = ACTIONS(6336), + }, + [STATE(3507)] = { + [sym_identifier] = ACTIONS(6396), + [sym_newline] = ACTIONS(6398), + [anon_sym_COLON] = ACTIONS(6398), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6396), + [aux_sym_frm_property_statement_token1] = ACTIONS(6396), + [anon_sym_DOT] = ACTIONS(6396), + [anon_sym_BANG] = ACTIONS(6398), + [aux_sym__attribute_identifier_token1] = ACTIONS(6396), + [aux_sym_option_statement_token3] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6396), + [aux_sym_preprocessor_const_token1] = ACTIONS(6396), + [sym_static_modifier] = ACTIONS(6396), + [sym__dim_keyword] = ACTIONS(6396), + [sym__redim_keyword] = ACTIONS(6396), + [aux_sym_get_accessor_token1] = ACTIONS(6396), + [aux_sym_set_accessor_token1] = ACTIONS(6396), + [aux_sym_const_declaration_token1] = ACTIONS(6396), + [anon_sym_LPAREN] = ACTIONS(6398), + [aux_sym_as_type_clause_token2] = ACTIONS(6396), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6396), + [aux_sym_visibility_token1] = ACTIONS(6396), + [aux_sym_visibility_token2] = ACTIONS(6396), + [aux_sym_elseif_fragment_token1] = ACTIONS(6396), + [aux_sym_else_fragment_token1] = ACTIONS(6396), + [aux_sym_select_statement_token1] = ACTIONS(6396), + [aux_sym__for_header_token1] = ACTIONS(6396), + [aux_sym_do_statement_token1] = ACTIONS(6396), + [aux_sym_do_condition_token1] = ACTIONS(6396), + [aux_sym_with_statement_token1] = ACTIONS(6396), + [aux_sym_exit_statement_token1] = ACTIONS(6396), + [sym_end_statement] = ACTIONS(6398), + [aux_sym_on_goto_statement_token1] = ACTIONS(6396), + [aux_sym_on_goto_statement_token2] = ACTIONS(6396), + [aux_sym_on_error_statement_token2] = ACTIONS(6396), + [sym__ambiguous_redim_statement] = ACTIONS(6398), + [aux_sym_erase_statement_token1] = ACTIONS(6396), + [aux_sym_open_statement_token1] = ACTIONS(6396), + [aux_sym_file_mode_token2] = ACTIONS(6396), + [aux_sym_file_access_token2] = ACTIONS(6396), + [aux_sym_file_lock_token2] = ACTIONS(6396), + [aux_sym_print_statement_token1] = ACTIONS(6396), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_QMARK] = ACTIONS(6398), + [aux_sym_close_statement_token1] = ACTIONS(6396), + [aux_sym_put_statement_token1] = ACTIONS(6396), + [aux_sym_unlock_statement_token1] = ACTIONS(6396), + [aux_sym_seek_statement_token1] = ACTIONS(6396), + [sym_reset_statement] = ACTIONS(6396), + [aux_sym_raise_event_statement_token1] = ACTIONS(6396), + [sym_stop_statement] = ACTIONS(6396), + [sym_beep_statement] = ACTIONS(6396), + [aux_sym_unload_statement_token1] = ACTIONS(6396), + [aux_sym_def_type_statement_token1] = ACTIONS(6396), + [aux_sym_def_type_statement_token2] = ACTIONS(6396), + [aux_sym_def_type_statement_token3] = ACTIONS(6396), + [aux_sym_def_type_statement_token4] = ACTIONS(6396), + [aux_sym_def_type_statement_token5] = ACTIONS(6396), + [aux_sym_def_type_statement_token6] = ACTIONS(6396), + [aux_sym_def_type_statement_token7] = ACTIONS(6396), + [aux_sym_def_type_statement_token8] = ACTIONS(6396), + [aux_sym_def_type_statement_token9] = ACTIONS(6396), + [aux_sym_def_type_statement_token10] = ACTIONS(6396), + [aux_sym_def_type_statement_token11] = ACTIONS(6396), + [aux_sym_def_type_statement_token12] = ACTIONS(6396), + [aux_sym_def_type_statement_token13] = ACTIONS(6396), + [aux_sym_def_type_statement_token14] = ACTIONS(6396), + [aux_sym_call_statement_token1] = ACTIONS(6396), + [sym__ambiguous_call_statement] = ACTIONS(6396), + [aux_sym_addressof_expression_token1] = ACTIONS(6396), + [aux_sym_type_of_expression_token1] = ACTIONS(6396), + [aux_sym_unary_expression_token1] = ACTIONS(6396), + [sym_string_literal] = ACTIONS(6398), + [sym_number_literal] = ACTIONS(6398), + [aux_sym_boolean_literal_token1] = ACTIONS(6396), + [aux_sym_boolean_literal_token2] = ACTIONS(6396), + [sym_nothing_literal] = ACTIONS(6396), + [sym_null_literal] = ACTIONS(6396), + [sym_empty_literal] = ACTIONS(6396), + [sym_date_literal] = ACTIONS(6398), + [anon_sym_POUND] = ACTIONS(6396), + }, + [STATE(3508)] = { + [sym_identifier] = ACTIONS(6430), + [sym_newline] = ACTIONS(6432), + [anon_sym_COLON] = ACTIONS(6432), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6430), + [aux_sym_frm_property_statement_token1] = ACTIONS(6430), + [anon_sym_DOT] = ACTIONS(6430), + [anon_sym_BANG] = ACTIONS(6432), + [aux_sym__attribute_identifier_token1] = ACTIONS(6430), + [aux_sym_option_statement_token3] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6430), + [aux_sym_preprocessor_const_token1] = ACTIONS(6430), + [sym_static_modifier] = ACTIONS(6430), + [sym__dim_keyword] = ACTIONS(6430), + [sym__redim_keyword] = ACTIONS(6430), + [aux_sym_get_accessor_token1] = ACTIONS(6430), + [aux_sym_set_accessor_token1] = ACTIONS(6430), + [aux_sym_const_declaration_token1] = ACTIONS(6430), + [anon_sym_LPAREN] = ACTIONS(6432), + [aux_sym_as_type_clause_token2] = ACTIONS(6430), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6430), + [aux_sym_visibility_token1] = ACTIONS(6430), + [aux_sym_visibility_token2] = ACTIONS(6430), + [aux_sym_elseif_fragment_token1] = ACTIONS(6430), + [aux_sym_else_fragment_token1] = ACTIONS(6430), + [aux_sym_select_statement_token1] = ACTIONS(6430), + [aux_sym__for_header_token1] = ACTIONS(6430), + [aux_sym_do_statement_token1] = ACTIONS(6430), + [aux_sym_do_condition_token1] = ACTIONS(6430), + [aux_sym_with_statement_token1] = ACTIONS(6430), + [aux_sym_exit_statement_token1] = ACTIONS(6430), + [sym_end_statement] = ACTIONS(6432), + [aux_sym_on_goto_statement_token1] = ACTIONS(6430), + [aux_sym_on_goto_statement_token2] = ACTIONS(6430), + [aux_sym_on_error_statement_token2] = ACTIONS(6430), + [sym__ambiguous_redim_statement] = ACTIONS(6432), + [aux_sym_erase_statement_token1] = ACTIONS(6430), + [aux_sym_open_statement_token1] = ACTIONS(6430), + [aux_sym_file_mode_token2] = ACTIONS(6430), + [aux_sym_file_access_token2] = ACTIONS(6430), + [aux_sym_file_lock_token2] = ACTIONS(6430), + [aux_sym_print_statement_token1] = ACTIONS(6430), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_QMARK] = ACTIONS(6432), + [aux_sym_close_statement_token1] = ACTIONS(6430), + [aux_sym_put_statement_token1] = ACTIONS(6430), + [aux_sym_unlock_statement_token1] = ACTIONS(6430), + [aux_sym_seek_statement_token1] = ACTIONS(6430), + [sym_reset_statement] = ACTIONS(6430), + [aux_sym_raise_event_statement_token1] = ACTIONS(6430), + [sym_stop_statement] = ACTIONS(6430), + [sym_beep_statement] = ACTIONS(6430), + [aux_sym_unload_statement_token1] = ACTIONS(6430), + [aux_sym_def_type_statement_token1] = ACTIONS(6430), + [aux_sym_def_type_statement_token2] = ACTIONS(6430), + [aux_sym_def_type_statement_token3] = ACTIONS(6430), + [aux_sym_def_type_statement_token4] = ACTIONS(6430), + [aux_sym_def_type_statement_token5] = ACTIONS(6430), + [aux_sym_def_type_statement_token6] = ACTIONS(6430), + [aux_sym_def_type_statement_token7] = ACTIONS(6430), + [aux_sym_def_type_statement_token8] = ACTIONS(6430), + [aux_sym_def_type_statement_token9] = ACTIONS(6430), + [aux_sym_def_type_statement_token10] = ACTIONS(6430), + [aux_sym_def_type_statement_token11] = ACTIONS(6430), + [aux_sym_def_type_statement_token12] = ACTIONS(6430), + [aux_sym_def_type_statement_token13] = ACTIONS(6430), + [aux_sym_def_type_statement_token14] = ACTIONS(6430), + [aux_sym_call_statement_token1] = ACTIONS(6430), + [sym__ambiguous_call_statement] = ACTIONS(6430), + [aux_sym_addressof_expression_token1] = ACTIONS(6430), + [aux_sym_type_of_expression_token1] = ACTIONS(6430), + [aux_sym_unary_expression_token1] = ACTIONS(6430), + [sym_string_literal] = ACTIONS(6432), + [sym_number_literal] = ACTIONS(6432), + [aux_sym_boolean_literal_token1] = ACTIONS(6430), + [aux_sym_boolean_literal_token2] = ACTIONS(6430), + [sym_nothing_literal] = ACTIONS(6430), + [sym_null_literal] = ACTIONS(6430), + [sym_empty_literal] = ACTIONS(6430), + [sym_date_literal] = ACTIONS(6432), + [anon_sym_POUND] = ACTIONS(6430), + }, + [STATE(3509)] = { + [sym_identifier] = ACTIONS(6434), + [sym_newline] = ACTIONS(6436), + [anon_sym_COLON] = ACTIONS(6436), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6434), + [aux_sym_frm_property_statement_token1] = ACTIONS(6434), + [anon_sym_DOT] = ACTIONS(6434), + [anon_sym_BANG] = ACTIONS(6436), + [aux_sym__attribute_identifier_token1] = ACTIONS(6434), + [aux_sym_option_statement_token3] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6434), + [aux_sym_preprocessor_const_token1] = ACTIONS(6434), + [sym_static_modifier] = ACTIONS(6434), + [sym__dim_keyword] = ACTIONS(6434), + [sym__redim_keyword] = ACTIONS(6434), + [aux_sym_get_accessor_token1] = ACTIONS(6434), + [aux_sym_set_accessor_token1] = ACTIONS(6434), + [aux_sym_const_declaration_token1] = ACTIONS(6434), + [anon_sym_LPAREN] = ACTIONS(6436), + [aux_sym_as_type_clause_token2] = ACTIONS(6434), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6434), + [aux_sym_visibility_token1] = ACTIONS(6434), + [aux_sym_visibility_token2] = ACTIONS(6434), + [aux_sym_elseif_fragment_token1] = ACTIONS(6434), + [aux_sym_else_fragment_token1] = ACTIONS(6434), + [aux_sym_select_statement_token1] = ACTIONS(6434), + [aux_sym__for_header_token1] = ACTIONS(6434), + [aux_sym_do_statement_token1] = ACTIONS(6434), + [aux_sym_do_condition_token1] = ACTIONS(6434), + [aux_sym_with_statement_token1] = ACTIONS(6434), + [aux_sym_exit_statement_token1] = ACTIONS(6434), + [sym_end_statement] = ACTIONS(6436), + [aux_sym_on_goto_statement_token1] = ACTIONS(6434), + [aux_sym_on_goto_statement_token2] = ACTIONS(6434), + [aux_sym_on_error_statement_token2] = ACTIONS(6434), + [sym__ambiguous_redim_statement] = ACTIONS(6436), + [aux_sym_erase_statement_token1] = ACTIONS(6434), + [aux_sym_open_statement_token1] = ACTIONS(6434), + [aux_sym_file_mode_token2] = ACTIONS(6434), + [aux_sym_file_access_token2] = ACTIONS(6434), + [aux_sym_file_lock_token2] = ACTIONS(6434), + [aux_sym_print_statement_token1] = ACTIONS(6434), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_QMARK] = ACTIONS(6436), + [aux_sym_close_statement_token1] = ACTIONS(6434), + [aux_sym_put_statement_token1] = ACTIONS(6434), + [aux_sym_unlock_statement_token1] = ACTIONS(6434), + [aux_sym_seek_statement_token1] = ACTIONS(6434), + [sym_reset_statement] = ACTIONS(6434), + [aux_sym_raise_event_statement_token1] = ACTIONS(6434), + [sym_stop_statement] = ACTIONS(6434), + [sym_beep_statement] = ACTIONS(6434), + [aux_sym_unload_statement_token1] = ACTIONS(6434), + [aux_sym_def_type_statement_token1] = ACTIONS(6434), + [aux_sym_def_type_statement_token2] = ACTIONS(6434), + [aux_sym_def_type_statement_token3] = ACTIONS(6434), + [aux_sym_def_type_statement_token4] = ACTIONS(6434), + [aux_sym_def_type_statement_token5] = ACTIONS(6434), + [aux_sym_def_type_statement_token6] = ACTIONS(6434), + [aux_sym_def_type_statement_token7] = ACTIONS(6434), + [aux_sym_def_type_statement_token8] = ACTIONS(6434), + [aux_sym_def_type_statement_token9] = ACTIONS(6434), + [aux_sym_def_type_statement_token10] = ACTIONS(6434), + [aux_sym_def_type_statement_token11] = ACTIONS(6434), + [aux_sym_def_type_statement_token12] = ACTIONS(6434), + [aux_sym_def_type_statement_token13] = ACTIONS(6434), + [aux_sym_def_type_statement_token14] = ACTIONS(6434), + [aux_sym_call_statement_token1] = ACTIONS(6434), + [sym__ambiguous_call_statement] = ACTIONS(6434), + [aux_sym_addressof_expression_token1] = ACTIONS(6434), + [aux_sym_type_of_expression_token1] = ACTIONS(6434), + [aux_sym_unary_expression_token1] = ACTIONS(6434), + [sym_string_literal] = ACTIONS(6436), + [sym_number_literal] = ACTIONS(6436), + [aux_sym_boolean_literal_token1] = ACTIONS(6434), + [aux_sym_boolean_literal_token2] = ACTIONS(6434), + [sym_nothing_literal] = ACTIONS(6434), + [sym_null_literal] = ACTIONS(6434), + [sym_empty_literal] = ACTIONS(6434), + [sym_date_literal] = ACTIONS(6436), + [anon_sym_POUND] = ACTIONS(6434), + }, + [STATE(3510)] = { + [sym_identifier] = ACTIONS(6438), + [sym_newline] = ACTIONS(6440), + [anon_sym_COLON] = ACTIONS(6440), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6438), + [aux_sym_frm_property_statement_token1] = ACTIONS(6438), + [anon_sym_DOT] = ACTIONS(6438), + [anon_sym_BANG] = ACTIONS(6440), + [aux_sym__attribute_identifier_token1] = ACTIONS(6438), + [aux_sym_option_statement_token3] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6438), + [aux_sym_preprocessor_const_token1] = ACTIONS(6438), + [sym_static_modifier] = ACTIONS(6438), + [sym__dim_keyword] = ACTIONS(6438), + [sym__redim_keyword] = ACTIONS(6438), + [aux_sym_get_accessor_token1] = ACTIONS(6438), + [aux_sym_set_accessor_token1] = ACTIONS(6438), + [aux_sym_const_declaration_token1] = ACTIONS(6438), + [anon_sym_LPAREN] = ACTIONS(6440), + [aux_sym_as_type_clause_token2] = ACTIONS(6438), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6438), + [aux_sym_visibility_token1] = ACTIONS(6438), + [aux_sym_visibility_token2] = ACTIONS(6438), + [aux_sym_elseif_fragment_token1] = ACTIONS(6438), + [aux_sym_else_fragment_token1] = ACTIONS(6438), + [aux_sym_select_statement_token1] = ACTIONS(6438), + [aux_sym__for_header_token1] = ACTIONS(6438), + [aux_sym_do_statement_token1] = ACTIONS(6438), + [aux_sym_do_condition_token1] = ACTIONS(6438), + [aux_sym_with_statement_token1] = ACTIONS(6438), + [aux_sym_exit_statement_token1] = ACTIONS(6438), + [sym_end_statement] = ACTIONS(6440), + [aux_sym_on_goto_statement_token1] = ACTIONS(6438), + [aux_sym_on_goto_statement_token2] = ACTIONS(6438), + [aux_sym_on_error_statement_token2] = ACTIONS(6438), + [sym__ambiguous_redim_statement] = ACTIONS(6440), + [aux_sym_erase_statement_token1] = ACTIONS(6438), + [aux_sym_open_statement_token1] = ACTIONS(6438), + [aux_sym_file_mode_token2] = ACTIONS(6438), + [aux_sym_file_access_token2] = ACTIONS(6438), + [aux_sym_file_lock_token2] = ACTIONS(6438), + [aux_sym_print_statement_token1] = ACTIONS(6438), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_QMARK] = ACTIONS(6440), + [aux_sym_close_statement_token1] = ACTIONS(6438), + [aux_sym_put_statement_token1] = ACTIONS(6438), + [aux_sym_unlock_statement_token1] = ACTIONS(6438), + [aux_sym_seek_statement_token1] = ACTIONS(6438), + [sym_reset_statement] = ACTIONS(6438), + [aux_sym_raise_event_statement_token1] = ACTIONS(6438), + [sym_stop_statement] = ACTIONS(6438), + [sym_beep_statement] = ACTIONS(6438), + [aux_sym_unload_statement_token1] = ACTIONS(6438), + [aux_sym_def_type_statement_token1] = ACTIONS(6438), + [aux_sym_def_type_statement_token2] = ACTIONS(6438), + [aux_sym_def_type_statement_token3] = ACTIONS(6438), + [aux_sym_def_type_statement_token4] = ACTIONS(6438), + [aux_sym_def_type_statement_token5] = ACTIONS(6438), + [aux_sym_def_type_statement_token6] = ACTIONS(6438), + [aux_sym_def_type_statement_token7] = ACTIONS(6438), + [aux_sym_def_type_statement_token8] = ACTIONS(6438), + [aux_sym_def_type_statement_token9] = ACTIONS(6438), + [aux_sym_def_type_statement_token10] = ACTIONS(6438), + [aux_sym_def_type_statement_token11] = ACTIONS(6438), + [aux_sym_def_type_statement_token12] = ACTIONS(6438), + [aux_sym_def_type_statement_token13] = ACTIONS(6438), + [aux_sym_def_type_statement_token14] = ACTIONS(6438), + [aux_sym_call_statement_token1] = ACTIONS(6438), + [sym__ambiguous_call_statement] = ACTIONS(6438), + [aux_sym_addressof_expression_token1] = ACTIONS(6438), + [aux_sym_type_of_expression_token1] = ACTIONS(6438), + [aux_sym_unary_expression_token1] = ACTIONS(6438), + [sym_string_literal] = ACTIONS(6440), + [sym_number_literal] = ACTIONS(6440), + [aux_sym_boolean_literal_token1] = ACTIONS(6438), + [aux_sym_boolean_literal_token2] = ACTIONS(6438), + [sym_nothing_literal] = ACTIONS(6438), + [sym_null_literal] = ACTIONS(6438), + [sym_empty_literal] = ACTIONS(6438), + [sym_date_literal] = ACTIONS(6440), + [anon_sym_POUND] = ACTIONS(6438), + }, + [STATE(3511)] = { + [sym_char_position] = STATE(365), + [aux_sym_output_list_repeat1] = STATE(3534), + [sym_identifier] = ACTIONS(7460), + [sym_newline] = ACTIONS(7462), + [anon_sym_COLON] = ACTIONS(7462), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7460), + [aux_sym_frm_property_statement_token1] = ACTIONS(7460), + [anon_sym_DOT] = ACTIONS(7460), + [anon_sym_BANG] = ACTIONS(7462), + [aux_sym__attribute_identifier_token1] = ACTIONS(7460), + [aux_sym_option_statement_token3] = ACTIONS(7460), + [aux_sym_type_declaration_token1] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7460), + [aux_sym_enum_declaration_token1] = ACTIONS(7460), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7460), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7460), + [aux_sym_declare_function_statement_token1] = ACTIONS(7460), + [aux_sym_preprocessor_const_token1] = ACTIONS(7460), + [aux_sym__property_get_header_token1] = ACTIONS(7460), + [aux_sym_event_declaration_token1] = ACTIONS(7460), + [sym_static_modifier] = ACTIONS(7460), + [sym__dim_keyword] = ACTIONS(7460), + [sym__redim_keyword] = ACTIONS(7460), + [aux_sym_get_accessor_token1] = ACTIONS(7460), + [aux_sym_set_accessor_token1] = ACTIONS(7460), + [anon_sym_COMMA] = ACTIONS(8152), + [aux_sym_const_declaration_token1] = ACTIONS(7460), + [anon_sym_LPAREN] = ACTIONS(7462), + [aux_sym_as_type_clause_token2] = ACTIONS(7460), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7460), + [aux_sym_visibility_token1] = ACTIONS(7460), + [aux_sym_visibility_token2] = ACTIONS(7460), + [aux_sym_elseif_fragment_token1] = ACTIONS(7460), + [aux_sym_else_fragment_token1] = ACTIONS(7460), + [aux_sym_select_statement_token1] = ACTIONS(7460), + [aux_sym__for_header_token1] = ACTIONS(7460), + [aux_sym_do_statement_token1] = ACTIONS(7460), + [aux_sym_do_condition_token1] = ACTIONS(7460), + [aux_sym_with_statement_token1] = ACTIONS(7460), + [aux_sym_exit_statement_token1] = ACTIONS(7460), + [sym_end_statement] = ACTIONS(7462), + [aux_sym_on_goto_statement_token1] = ACTIONS(7460), + [aux_sym_on_goto_statement_token2] = ACTIONS(7460), + [aux_sym_on_error_statement_token2] = ACTIONS(7460), + [sym__ambiguous_redim_statement] = ACTIONS(7462), + [aux_sym_erase_statement_token1] = ACTIONS(7460), + [aux_sym_open_statement_token1] = ACTIONS(7460), + [aux_sym_file_mode_token2] = ACTIONS(7460), + [aux_sym_file_access_token2] = ACTIONS(7460), + [aux_sym_file_lock_token2] = ACTIONS(7460), + [aux_sym_print_statement_token1] = ACTIONS(7460), + [anon_sym_PLUS] = ACTIONS(7462), + [anon_sym_DASH] = ACTIONS(7460), + [anon_sym_SEMI] = ACTIONS(8152), + [anon_sym_QMARK] = ACTIONS(7462), + [aux_sym_close_statement_token1] = ACTIONS(7460), + [aux_sym_put_statement_token1] = ACTIONS(7460), + [aux_sym_unlock_statement_token1] = ACTIONS(7460), + [aux_sym_seek_statement_token1] = ACTIONS(7460), + [sym_reset_statement] = ACTIONS(7460), + [aux_sym_raise_event_statement_token1] = ACTIONS(7460), + [sym_stop_statement] = ACTIONS(7460), + [sym_beep_statement] = ACTIONS(7460), + [aux_sym_unload_statement_token1] = ACTIONS(7460), + [aux_sym_def_type_statement_token1] = ACTIONS(7460), + [aux_sym_def_type_statement_token2] = ACTIONS(7460), + [aux_sym_def_type_statement_token3] = ACTIONS(7460), + [aux_sym_def_type_statement_token4] = ACTIONS(7460), + [aux_sym_def_type_statement_token5] = ACTIONS(7460), + [aux_sym_def_type_statement_token6] = ACTIONS(7460), + [aux_sym_def_type_statement_token7] = ACTIONS(7460), + [aux_sym_def_type_statement_token8] = ACTIONS(7460), + [aux_sym_def_type_statement_token9] = ACTIONS(7460), + [aux_sym_def_type_statement_token10] = ACTIONS(7460), + [aux_sym_def_type_statement_token11] = ACTIONS(7460), + [aux_sym_def_type_statement_token12] = ACTIONS(7460), + [aux_sym_def_type_statement_token13] = ACTIONS(7460), + [aux_sym_def_type_statement_token14] = ACTIONS(7460), + [aux_sym_call_statement_token1] = ACTIONS(7460), + [sym__ambiguous_call_statement] = ACTIONS(7460), + [aux_sym_addressof_expression_token1] = ACTIONS(7460), + [aux_sym_type_of_expression_token1] = ACTIONS(7460), + [aux_sym_unary_expression_token1] = ACTIONS(7460), + [sym_string_literal] = ACTIONS(7462), + [sym_number_literal] = ACTIONS(7462), + [aux_sym_boolean_literal_token1] = ACTIONS(7460), + [aux_sym_boolean_literal_token2] = ACTIONS(7460), + [sym_nothing_literal] = ACTIONS(7460), + [sym_null_literal] = ACTIONS(7460), + [sym_empty_literal] = ACTIONS(7460), + [sym_date_literal] = ACTIONS(7462), + [anon_sym_POUND] = ACTIONS(7460), + }, + [STATE(3512)] = { + [sym_identifier] = ACTIONS(6117), + [sym_newline] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6117), + [aux_sym_frm_property_statement_token1] = ACTIONS(6117), + [anon_sym_DOT] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6119), + [aux_sym__attribute_identifier_token1] = ACTIONS(6117), + [aux_sym_option_statement_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6117), + [aux_sym_preprocessor_const_token1] = ACTIONS(6117), + [sym_static_modifier] = ACTIONS(6117), + [sym__dim_keyword] = ACTIONS(6117), + [sym__redim_keyword] = ACTIONS(6117), + [aux_sym_get_accessor_token1] = ACTIONS(6117), + [aux_sym_set_accessor_token1] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6119), + [aux_sym_const_declaration_token1] = ACTIONS(6117), + [anon_sym_LPAREN] = ACTIONS(6119), + [aux_sym_as_type_clause_token2] = ACTIONS(6117), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6117), + [aux_sym_visibility_token1] = ACTIONS(6117), + [aux_sym_visibility_token2] = ACTIONS(6117), + [aux_sym_elseif_fragment_token1] = ACTIONS(6117), + [aux_sym_else_fragment_token1] = ACTIONS(6117), + [aux_sym_select_statement_token1] = ACTIONS(6117), + [aux_sym__for_header_token1] = ACTIONS(6117), + [aux_sym_do_statement_token1] = ACTIONS(6117), + [aux_sym_do_condition_token1] = ACTIONS(6117), + [aux_sym_with_statement_token1] = ACTIONS(6117), + [aux_sym_exit_statement_token1] = ACTIONS(6117), + [sym_end_statement] = ACTIONS(6119), + [aux_sym_on_goto_statement_token1] = ACTIONS(6117), + [aux_sym_on_goto_statement_token2] = ACTIONS(6117), + [aux_sym_on_error_statement_token2] = ACTIONS(6117), + [sym__ambiguous_redim_statement] = ACTIONS(6119), + [aux_sym_erase_statement_token1] = ACTIONS(6117), + [aux_sym_open_statement_token1] = ACTIONS(6117), + [aux_sym_file_mode_token2] = ACTIONS(6117), + [aux_sym_file_access_token2] = ACTIONS(6117), + [aux_sym_file_lock_token2] = ACTIONS(6117), + [aux_sym_print_statement_token1] = ACTIONS(6117), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6484), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6486), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6488), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6490), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6492), + [anon_sym_QMARK] = ACTIONS(6119), + [aux_sym_close_statement_token1] = ACTIONS(6117), + [aux_sym_put_statement_token1] = ACTIONS(6117), + [aux_sym_unlock_statement_token1] = ACTIONS(6117), + [aux_sym_seek_statement_token1] = ACTIONS(6117), + [sym_reset_statement] = ACTIONS(6117), + [aux_sym_raise_event_statement_token1] = ACTIONS(6117), + [sym_stop_statement] = ACTIONS(6117), + [sym_beep_statement] = ACTIONS(6117), + [aux_sym_unload_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token2] = ACTIONS(6117), + [aux_sym_def_type_statement_token3] = ACTIONS(6117), + [aux_sym_def_type_statement_token4] = ACTIONS(6117), + [aux_sym_def_type_statement_token5] = ACTIONS(6117), + [aux_sym_def_type_statement_token6] = ACTIONS(6117), + [aux_sym_def_type_statement_token7] = ACTIONS(6117), + [aux_sym_def_type_statement_token8] = ACTIONS(6117), + [aux_sym_def_type_statement_token9] = ACTIONS(6117), + [aux_sym_def_type_statement_token10] = ACTIONS(6117), + [aux_sym_def_type_statement_token11] = ACTIONS(6117), + [aux_sym_def_type_statement_token12] = ACTIONS(6117), + [aux_sym_def_type_statement_token13] = ACTIONS(6117), + [aux_sym_def_type_statement_token14] = ACTIONS(6117), + [aux_sym_call_statement_token1] = ACTIONS(6117), + [sym__ambiguous_call_statement] = ACTIONS(6117), + [aux_sym_addressof_expression_token1] = ACTIONS(6117), + [aux_sym_type_of_expression_token1] = ACTIONS(6117), + [aux_sym_unary_expression_token1] = ACTIONS(6117), + [sym_string_literal] = ACTIONS(6119), + [sym_number_literal] = ACTIONS(6119), + [aux_sym_boolean_literal_token1] = ACTIONS(6117), + [aux_sym_boolean_literal_token2] = ACTIONS(6117), + [sym_nothing_literal] = ACTIONS(6117), + [sym_null_literal] = ACTIONS(6117), + [sym_empty_literal] = ACTIONS(6117), + [sym_date_literal] = ACTIONS(6119), + [anon_sym_POUND] = ACTIONS(6117), + }, + [STATE(3513)] = { + [sym_identifier] = ACTIONS(6434), + [sym_newline] = ACTIONS(6436), + [anon_sym_COLON] = ACTIONS(6436), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6434), + [aux_sym_frm_property_statement_token1] = ACTIONS(6434), + [anon_sym_DOT] = ACTIONS(6434), + [anon_sym_BANG] = ACTIONS(6436), + [aux_sym__attribute_identifier_token1] = ACTIONS(6434), + [aux_sym_option_statement_token3] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6434), + [aux_sym_preprocessor_const_token1] = ACTIONS(6434), + [sym_static_modifier] = ACTIONS(6434), + [sym__dim_keyword] = ACTIONS(6434), + [sym__redim_keyword] = ACTIONS(6434), + [aux_sym_get_accessor_token1] = ACTIONS(6434), + [aux_sym_set_accessor_token1] = ACTIONS(6434), + [aux_sym_const_declaration_token1] = ACTIONS(6434), + [anon_sym_LPAREN] = ACTIONS(6436), + [aux_sym_as_type_clause_token2] = ACTIONS(6434), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6434), + [aux_sym_visibility_token1] = ACTIONS(6434), + [aux_sym_visibility_token2] = ACTIONS(6434), + [aux_sym_elseif_fragment_token1] = ACTIONS(6434), + [aux_sym_else_fragment_token1] = ACTIONS(6434), + [aux_sym_select_statement_token1] = ACTIONS(6434), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6434), + [aux_sym__for_header_token1] = ACTIONS(6434), + [aux_sym_do_statement_token1] = ACTIONS(6434), + [aux_sym_do_condition_token1] = ACTIONS(6434), + [aux_sym_with_statement_token1] = ACTIONS(6434), + [aux_sym_exit_statement_token1] = ACTIONS(6434), + [sym_end_statement] = ACTIONS(6436), + [aux_sym_on_goto_statement_token1] = ACTIONS(6434), + [aux_sym_on_goto_statement_token2] = ACTIONS(6434), + [aux_sym_on_error_statement_token2] = ACTIONS(6434), + [sym__ambiguous_redim_statement] = ACTIONS(6436), + [aux_sym_erase_statement_token1] = ACTIONS(6434), + [aux_sym_open_statement_token1] = ACTIONS(6434), + [aux_sym_file_mode_token2] = ACTIONS(6434), + [aux_sym_file_access_token2] = ACTIONS(6434), + [aux_sym_file_lock_token2] = ACTIONS(6434), + [aux_sym_print_statement_token1] = ACTIONS(6434), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(6436), + [aux_sym_close_statement_token1] = ACTIONS(6434), + [aux_sym_put_statement_token1] = ACTIONS(6434), + [aux_sym_unlock_statement_token1] = ACTIONS(6434), + [aux_sym_seek_statement_token1] = ACTIONS(6434), + [sym_reset_statement] = ACTIONS(6434), + [aux_sym_raise_event_statement_token1] = ACTIONS(6434), + [sym_stop_statement] = ACTIONS(6434), + [sym_beep_statement] = ACTIONS(6434), + [aux_sym_unload_statement_token1] = ACTIONS(6434), + [aux_sym_def_type_statement_token1] = ACTIONS(6434), + [aux_sym_def_type_statement_token2] = ACTIONS(6434), + [aux_sym_def_type_statement_token3] = ACTIONS(6434), + [aux_sym_def_type_statement_token4] = ACTIONS(6434), + [aux_sym_def_type_statement_token5] = ACTIONS(6434), + [aux_sym_def_type_statement_token6] = ACTIONS(6434), + [aux_sym_def_type_statement_token7] = ACTIONS(6434), + [aux_sym_def_type_statement_token8] = ACTIONS(6434), + [aux_sym_def_type_statement_token9] = ACTIONS(6434), + [aux_sym_def_type_statement_token10] = ACTIONS(6434), + [aux_sym_def_type_statement_token11] = ACTIONS(6434), + [aux_sym_def_type_statement_token12] = ACTIONS(6434), + [aux_sym_def_type_statement_token13] = ACTIONS(6434), + [aux_sym_def_type_statement_token14] = ACTIONS(6434), + [aux_sym_call_statement_token1] = ACTIONS(6434), + [sym__ambiguous_call_statement] = ACTIONS(6434), + [aux_sym_addressof_expression_token1] = ACTIONS(6434), + [aux_sym_type_of_expression_token1] = ACTIONS(6434), + [aux_sym_unary_expression_token1] = ACTIONS(6434), + [sym_string_literal] = ACTIONS(6436), + [sym_number_literal] = ACTIONS(6436), + [aux_sym_boolean_literal_token1] = ACTIONS(6434), + [aux_sym_boolean_literal_token2] = ACTIONS(6434), + [sym_nothing_literal] = ACTIONS(6434), + [sym_null_literal] = ACTIONS(6434), + [sym_empty_literal] = ACTIONS(6434), + [sym_date_literal] = ACTIONS(6436), + [anon_sym_POUND] = ACTIONS(6434), + }, + [STATE(3514)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_array_bound_token1] = ACTIONS(4589), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(3515)] = { + [sym_identifier] = ACTIONS(6434), + [sym_newline] = ACTIONS(6436), + [anon_sym_COLON] = ACTIONS(6436), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6434), + [aux_sym_frm_property_statement_token1] = ACTIONS(6434), + [anon_sym_DOT] = ACTIONS(6434), + [anon_sym_BANG] = ACTIONS(6436), + [aux_sym__attribute_identifier_token1] = ACTIONS(6434), + [aux_sym_option_statement_token3] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6434), + [aux_sym_preprocessor_const_token1] = ACTIONS(6434), + [sym_static_modifier] = ACTIONS(6434), + [sym__dim_keyword] = ACTIONS(6434), + [sym__redim_keyword] = ACTIONS(6434), + [aux_sym_get_accessor_token1] = ACTIONS(6434), + [aux_sym_set_accessor_token1] = ACTIONS(6434), + [aux_sym_const_declaration_token1] = ACTIONS(6434), + [anon_sym_LPAREN] = ACTIONS(6436), + [aux_sym_as_type_clause_token2] = ACTIONS(6434), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6434), + [aux_sym_visibility_token1] = ACTIONS(6434), + [aux_sym_visibility_token2] = ACTIONS(6434), + [aux_sym_elseif_fragment_token1] = ACTIONS(6434), + [aux_sym_else_fragment_token1] = ACTIONS(6434), + [aux_sym_select_statement_token1] = ACTIONS(6434), + [aux_sym__for_header_token1] = ACTIONS(6434), + [aux_sym_do_statement_token1] = ACTIONS(6434), + [aux_sym_do_condition_token1] = ACTIONS(6434), + [aux_sym_while_statement_token1] = ACTIONS(6434), + [aux_sym_with_statement_token1] = ACTIONS(6434), + [aux_sym_exit_statement_token1] = ACTIONS(6434), + [sym_end_statement] = ACTIONS(6436), + [aux_sym_on_goto_statement_token1] = ACTIONS(6434), + [aux_sym_on_goto_statement_token2] = ACTIONS(6434), + [aux_sym_on_error_statement_token2] = ACTIONS(6434), + [sym__ambiguous_redim_statement] = ACTIONS(6436), + [aux_sym_erase_statement_token1] = ACTIONS(6434), + [aux_sym_open_statement_token1] = ACTIONS(6434), + [aux_sym_file_mode_token2] = ACTIONS(6434), + [aux_sym_file_access_token2] = ACTIONS(6434), + [aux_sym_file_lock_token2] = ACTIONS(6434), + [aux_sym_print_statement_token1] = ACTIONS(6434), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_QMARK] = ACTIONS(6436), + [aux_sym_close_statement_token1] = ACTIONS(6434), + [aux_sym_put_statement_token1] = ACTIONS(6434), + [aux_sym_unlock_statement_token1] = ACTIONS(6434), + [aux_sym_seek_statement_token1] = ACTIONS(6434), + [sym_reset_statement] = ACTIONS(6434), + [aux_sym_raise_event_statement_token1] = ACTIONS(6434), + [sym_stop_statement] = ACTIONS(6434), + [sym_beep_statement] = ACTIONS(6434), + [aux_sym_unload_statement_token1] = ACTIONS(6434), + [aux_sym_def_type_statement_token1] = ACTIONS(6434), + [aux_sym_def_type_statement_token2] = ACTIONS(6434), + [aux_sym_def_type_statement_token3] = ACTIONS(6434), + [aux_sym_def_type_statement_token4] = ACTIONS(6434), + [aux_sym_def_type_statement_token5] = ACTIONS(6434), + [aux_sym_def_type_statement_token6] = ACTIONS(6434), + [aux_sym_def_type_statement_token7] = ACTIONS(6434), + [aux_sym_def_type_statement_token8] = ACTIONS(6434), + [aux_sym_def_type_statement_token9] = ACTIONS(6434), + [aux_sym_def_type_statement_token10] = ACTIONS(6434), + [aux_sym_def_type_statement_token11] = ACTIONS(6434), + [aux_sym_def_type_statement_token12] = ACTIONS(6434), + [aux_sym_def_type_statement_token13] = ACTIONS(6434), + [aux_sym_def_type_statement_token14] = ACTIONS(6434), + [aux_sym_call_statement_token1] = ACTIONS(6434), + [sym__ambiguous_call_statement] = ACTIONS(6434), + [aux_sym_addressof_expression_token1] = ACTIONS(6434), + [aux_sym_type_of_expression_token1] = ACTIONS(6434), + [aux_sym_unary_expression_token1] = ACTIONS(6434), + [sym_string_literal] = ACTIONS(6436), + [sym_number_literal] = ACTIONS(6436), + [aux_sym_boolean_literal_token1] = ACTIONS(6434), + [aux_sym_boolean_literal_token2] = ACTIONS(6434), + [sym_nothing_literal] = ACTIONS(6434), + [sym_null_literal] = ACTIONS(6434), + [sym_empty_literal] = ACTIONS(6434), + [sym_date_literal] = ACTIONS(6436), + [anon_sym_POUND] = ACTIONS(6434), + }, + [STATE(3516)] = { + [sym_identifier] = ACTIONS(6438), + [sym_newline] = ACTIONS(6440), + [anon_sym_COLON] = ACTIONS(6440), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6438), + [aux_sym_frm_property_statement_token1] = ACTIONS(6438), + [anon_sym_DOT] = ACTIONS(6438), + [anon_sym_BANG] = ACTIONS(6440), + [aux_sym__attribute_identifier_token1] = ACTIONS(6438), + [aux_sym_option_statement_token3] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6438), + [aux_sym_preprocessor_const_token1] = ACTIONS(6438), + [sym_static_modifier] = ACTIONS(6438), + [sym__dim_keyword] = ACTIONS(6438), + [sym__redim_keyword] = ACTIONS(6438), + [aux_sym_get_accessor_token1] = ACTIONS(6438), + [aux_sym_set_accessor_token1] = ACTIONS(6438), + [aux_sym_const_declaration_token1] = ACTIONS(6438), + [anon_sym_LPAREN] = ACTIONS(6440), + [aux_sym_as_type_clause_token2] = ACTIONS(6438), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6438), + [aux_sym_visibility_token1] = ACTIONS(6438), + [aux_sym_visibility_token2] = ACTIONS(6438), + [aux_sym_elseif_fragment_token1] = ACTIONS(6438), + [aux_sym_else_fragment_token1] = ACTIONS(6438), + [aux_sym_select_statement_token1] = ACTIONS(6438), + [aux_sym__for_header_token1] = ACTIONS(6438), + [aux_sym_do_statement_token1] = ACTIONS(6438), + [aux_sym_do_condition_token1] = ACTIONS(6438), + [aux_sym_while_statement_token1] = ACTIONS(6438), + [aux_sym_with_statement_token1] = ACTIONS(6438), + [aux_sym_exit_statement_token1] = ACTIONS(6438), + [sym_end_statement] = ACTIONS(6440), + [aux_sym_on_goto_statement_token1] = ACTIONS(6438), + [aux_sym_on_goto_statement_token2] = ACTIONS(6438), + [aux_sym_on_error_statement_token2] = ACTIONS(6438), + [sym__ambiguous_redim_statement] = ACTIONS(6440), + [aux_sym_erase_statement_token1] = ACTIONS(6438), + [aux_sym_open_statement_token1] = ACTIONS(6438), + [aux_sym_file_mode_token2] = ACTIONS(6438), + [aux_sym_file_access_token2] = ACTIONS(6438), + [aux_sym_file_lock_token2] = ACTIONS(6438), + [aux_sym_print_statement_token1] = ACTIONS(6438), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_QMARK] = ACTIONS(6440), + [aux_sym_close_statement_token1] = ACTIONS(6438), + [aux_sym_put_statement_token1] = ACTIONS(6438), + [aux_sym_unlock_statement_token1] = ACTIONS(6438), + [aux_sym_seek_statement_token1] = ACTIONS(6438), + [sym_reset_statement] = ACTIONS(6438), + [aux_sym_raise_event_statement_token1] = ACTIONS(6438), + [sym_stop_statement] = ACTIONS(6438), + [sym_beep_statement] = ACTIONS(6438), + [aux_sym_unload_statement_token1] = ACTIONS(6438), + [aux_sym_def_type_statement_token1] = ACTIONS(6438), + [aux_sym_def_type_statement_token2] = ACTIONS(6438), + [aux_sym_def_type_statement_token3] = ACTIONS(6438), + [aux_sym_def_type_statement_token4] = ACTIONS(6438), + [aux_sym_def_type_statement_token5] = ACTIONS(6438), + [aux_sym_def_type_statement_token6] = ACTIONS(6438), + [aux_sym_def_type_statement_token7] = ACTIONS(6438), + [aux_sym_def_type_statement_token8] = ACTIONS(6438), + [aux_sym_def_type_statement_token9] = ACTIONS(6438), + [aux_sym_def_type_statement_token10] = ACTIONS(6438), + [aux_sym_def_type_statement_token11] = ACTIONS(6438), + [aux_sym_def_type_statement_token12] = ACTIONS(6438), + [aux_sym_def_type_statement_token13] = ACTIONS(6438), + [aux_sym_def_type_statement_token14] = ACTIONS(6438), + [aux_sym_call_statement_token1] = ACTIONS(6438), + [sym__ambiguous_call_statement] = ACTIONS(6438), + [aux_sym_addressof_expression_token1] = ACTIONS(6438), + [aux_sym_type_of_expression_token1] = ACTIONS(6438), + [aux_sym_unary_expression_token1] = ACTIONS(6438), + [sym_string_literal] = ACTIONS(6440), + [sym_number_literal] = ACTIONS(6440), + [aux_sym_boolean_literal_token1] = ACTIONS(6438), + [aux_sym_boolean_literal_token2] = ACTIONS(6438), + [sym_nothing_literal] = ACTIONS(6438), + [sym_null_literal] = ACTIONS(6438), + [sym_empty_literal] = ACTIONS(6438), + [sym_date_literal] = ACTIONS(6440), + [anon_sym_POUND] = ACTIONS(6438), + }, + [STATE(3517)] = { + [sym_identifier] = ACTIONS(6438), + [sym_newline] = ACTIONS(6440), + [anon_sym_COLON] = ACTIONS(6440), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6438), + [aux_sym_frm_property_statement_token1] = ACTIONS(6438), + [anon_sym_DOT] = ACTIONS(6438), + [anon_sym_BANG] = ACTIONS(6440), + [aux_sym__attribute_identifier_token1] = ACTIONS(6438), + [aux_sym_option_statement_token3] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6438), + [aux_sym_preprocessor_const_token1] = ACTIONS(6438), + [sym_static_modifier] = ACTIONS(6438), + [sym__dim_keyword] = ACTIONS(6438), + [sym__redim_keyword] = ACTIONS(6438), + [aux_sym_get_accessor_token1] = ACTIONS(6438), + [aux_sym_set_accessor_token1] = ACTIONS(6438), + [aux_sym_const_declaration_token1] = ACTIONS(6438), + [anon_sym_LPAREN] = ACTIONS(6440), + [aux_sym_as_type_clause_token2] = ACTIONS(6438), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6438), + [aux_sym_visibility_token1] = ACTIONS(6438), + [aux_sym_visibility_token2] = ACTIONS(6438), + [aux_sym_elseif_fragment_token1] = ACTIONS(6438), + [aux_sym_else_fragment_token1] = ACTIONS(6438), + [aux_sym_select_statement_token1] = ACTIONS(6438), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6438), + [aux_sym__for_header_token1] = ACTIONS(6438), + [aux_sym_do_statement_token1] = ACTIONS(6438), + [aux_sym_do_condition_token1] = ACTIONS(6438), + [aux_sym_with_statement_token1] = ACTIONS(6438), + [aux_sym_exit_statement_token1] = ACTIONS(6438), + [sym_end_statement] = ACTIONS(6440), + [aux_sym_on_goto_statement_token1] = ACTIONS(6438), + [aux_sym_on_goto_statement_token2] = ACTIONS(6438), + [aux_sym_on_error_statement_token2] = ACTIONS(6438), + [sym__ambiguous_redim_statement] = ACTIONS(6440), + [aux_sym_erase_statement_token1] = ACTIONS(6438), + [aux_sym_open_statement_token1] = ACTIONS(6438), + [aux_sym_file_mode_token2] = ACTIONS(6438), + [aux_sym_file_access_token2] = ACTIONS(6438), + [aux_sym_file_lock_token2] = ACTIONS(6438), + [aux_sym_print_statement_token1] = ACTIONS(6438), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(6440), + [aux_sym_close_statement_token1] = ACTIONS(6438), + [aux_sym_put_statement_token1] = ACTIONS(6438), + [aux_sym_unlock_statement_token1] = ACTIONS(6438), + [aux_sym_seek_statement_token1] = ACTIONS(6438), + [sym_reset_statement] = ACTIONS(6438), + [aux_sym_raise_event_statement_token1] = ACTIONS(6438), + [sym_stop_statement] = ACTIONS(6438), + [sym_beep_statement] = ACTIONS(6438), + [aux_sym_unload_statement_token1] = ACTIONS(6438), + [aux_sym_def_type_statement_token1] = ACTIONS(6438), + [aux_sym_def_type_statement_token2] = ACTIONS(6438), + [aux_sym_def_type_statement_token3] = ACTIONS(6438), + [aux_sym_def_type_statement_token4] = ACTIONS(6438), + [aux_sym_def_type_statement_token5] = ACTIONS(6438), + [aux_sym_def_type_statement_token6] = ACTIONS(6438), + [aux_sym_def_type_statement_token7] = ACTIONS(6438), + [aux_sym_def_type_statement_token8] = ACTIONS(6438), + [aux_sym_def_type_statement_token9] = ACTIONS(6438), + [aux_sym_def_type_statement_token10] = ACTIONS(6438), + [aux_sym_def_type_statement_token11] = ACTIONS(6438), + [aux_sym_def_type_statement_token12] = ACTIONS(6438), + [aux_sym_def_type_statement_token13] = ACTIONS(6438), + [aux_sym_def_type_statement_token14] = ACTIONS(6438), + [aux_sym_call_statement_token1] = ACTIONS(6438), + [sym__ambiguous_call_statement] = ACTIONS(6438), + [aux_sym_addressof_expression_token1] = ACTIONS(6438), + [aux_sym_type_of_expression_token1] = ACTIONS(6438), + [aux_sym_unary_expression_token1] = ACTIONS(6438), + [sym_string_literal] = ACTIONS(6440), + [sym_number_literal] = ACTIONS(6440), + [aux_sym_boolean_literal_token1] = ACTIONS(6438), + [aux_sym_boolean_literal_token2] = ACTIONS(6438), + [sym_nothing_literal] = ACTIONS(6438), + [sym_null_literal] = ACTIONS(6438), + [sym_empty_literal] = ACTIONS(6438), + [sym_date_literal] = ACTIONS(6440), + [anon_sym_POUND] = ACTIONS(6438), + }, + [STATE(3518)] = { + [sym_identifier] = ACTIONS(8022), + [sym_newline] = ACTIONS(8024), + [anon_sym_COLON] = ACTIONS(8024), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8022), + [aux_sym_frm_property_statement_token1] = ACTIONS(8022), + [anon_sym_EQ] = ACTIONS(8024), + [anon_sym_DOT] = ACTIONS(8022), + [anon_sym_BANG] = ACTIONS(8024), + [aux_sym__attribute_identifier_token1] = ACTIONS(8022), + [aux_sym_option_statement_token3] = ACTIONS(8022), + [aux_sym_type_declaration_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8022), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8022), + [aux_sym_enum_declaration_token1] = ACTIONS(8022), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8022), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8022), + [aux_sym_declare_function_statement_token1] = ACTIONS(8022), + [aux_sym_preprocessor_const_token1] = ACTIONS(8022), + [aux_sym__property_get_header_token1] = ACTIONS(8022), + [aux_sym_event_declaration_token1] = ACTIONS(8022), + [sym_static_modifier] = ACTIONS(8022), + [sym__dim_keyword] = ACTIONS(8022), + [sym__redim_keyword] = ACTIONS(8022), + [aux_sym_get_accessor_token1] = ACTIONS(8022), + [aux_sym_set_accessor_token1] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8024), + [aux_sym_const_declaration_token1] = ACTIONS(8022), + [anon_sym_LPAREN] = ACTIONS(8024), + [aux_sym_as_type_clause_token2] = ACTIONS(8022), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8022), + [aux_sym_visibility_token1] = ACTIONS(8022), + [aux_sym_visibility_token2] = ACTIONS(8022), + [aux_sym_elseif_fragment_token1] = ACTIONS(8022), + [aux_sym_else_fragment_token1] = ACTIONS(8022), + [aux_sym_select_statement_token1] = ACTIONS(8022), + [aux_sym__for_header_token1] = ACTIONS(8022), + [aux_sym_do_statement_token1] = ACTIONS(8022), + [aux_sym_do_condition_token1] = ACTIONS(8022), + [aux_sym_with_statement_token1] = ACTIONS(8022), + [aux_sym_exit_statement_token1] = ACTIONS(8022), + [sym_end_statement] = ACTIONS(8024), + [aux_sym_on_goto_statement_token1] = ACTIONS(8022), + [aux_sym_on_goto_statement_token2] = ACTIONS(8022), + [aux_sym_on_error_statement_token2] = ACTIONS(8022), + [sym__ambiguous_redim_statement] = ACTIONS(8024), + [aux_sym_erase_statement_token1] = ACTIONS(8022), + [aux_sym_open_statement_token1] = ACTIONS(8022), + [aux_sym_file_mode_token2] = ACTIONS(8022), + [aux_sym_file_access_token2] = ACTIONS(8022), + [aux_sym_file_lock_token2] = ACTIONS(8022), + [aux_sym_print_statement_token1] = ACTIONS(8022), + [anon_sym_PLUS] = ACTIONS(8024), + [anon_sym_DASH] = ACTIONS(8022), + [anon_sym_QMARK] = ACTIONS(8024), + [aux_sym_close_statement_token1] = ACTIONS(8022), + [aux_sym_put_statement_token1] = ACTIONS(8022), + [aux_sym_unlock_statement_token1] = ACTIONS(8022), + [aux_sym_seek_statement_token1] = ACTIONS(8022), + [sym_reset_statement] = ACTIONS(8022), + [aux_sym_raise_event_statement_token1] = ACTIONS(8022), + [sym_stop_statement] = ACTIONS(8022), + [sym_beep_statement] = ACTIONS(8022), + [aux_sym_unload_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token2] = ACTIONS(8022), + [aux_sym_def_type_statement_token3] = ACTIONS(8022), + [aux_sym_def_type_statement_token4] = ACTIONS(8022), + [aux_sym_def_type_statement_token5] = ACTIONS(8022), + [aux_sym_def_type_statement_token6] = ACTIONS(8022), + [aux_sym_def_type_statement_token7] = ACTIONS(8022), + [aux_sym_def_type_statement_token8] = ACTIONS(8022), + [aux_sym_def_type_statement_token9] = ACTIONS(8022), + [aux_sym_def_type_statement_token10] = ACTIONS(8022), + [aux_sym_def_type_statement_token11] = ACTIONS(8022), + [aux_sym_def_type_statement_token12] = ACTIONS(8022), + [aux_sym_def_type_statement_token13] = ACTIONS(8022), + [aux_sym_def_type_statement_token14] = ACTIONS(8022), + [aux_sym_call_statement_token1] = ACTIONS(8022), + [sym__ambiguous_call_statement] = ACTIONS(8022), + [aux_sym_addressof_expression_token1] = ACTIONS(8022), + [aux_sym_type_of_expression_token1] = ACTIONS(8022), + [aux_sym_unary_expression_token1] = ACTIONS(8022), + [sym_string_literal] = ACTIONS(8024), + [sym_number_literal] = ACTIONS(8024), + [aux_sym_boolean_literal_token1] = ACTIONS(8022), + [aux_sym_boolean_literal_token2] = ACTIONS(8022), + [sym_nothing_literal] = ACTIONS(8022), + [sym_null_literal] = ACTIONS(8022), + [sym_empty_literal] = ACTIONS(8022), + [sym_date_literal] = ACTIONS(8024), + [anon_sym_POUND] = ACTIONS(8022), + }, + [STATE(3519)] = { + [sym_do_condition] = STATE(4063), + [sym_identifier] = ACTIONS(8279), + [sym_newline] = ACTIONS(8281), + [anon_sym_COLON] = ACTIONS(8281), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8279), + [aux_sym_frm_property_statement_token1] = ACTIONS(8279), + [anon_sym_DOT] = ACTIONS(8279), + [anon_sym_BANG] = ACTIONS(8281), + [aux_sym__attribute_identifier_token1] = ACTIONS(8279), + [aux_sym_option_statement_token3] = ACTIONS(8279), + [aux_sym_type_declaration_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8279), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8279), + [aux_sym_enum_declaration_token1] = ACTIONS(8279), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8279), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8279), + [aux_sym_declare_function_statement_token1] = ACTIONS(8279), + [aux_sym_preprocessor_const_token1] = ACTIONS(8279), + [aux_sym__property_get_header_token1] = ACTIONS(8279), + [aux_sym_event_declaration_token1] = ACTIONS(8279), + [sym_static_modifier] = ACTIONS(8279), + [sym__dim_keyword] = ACTIONS(8279), + [sym__redim_keyword] = ACTIONS(8279), + [aux_sym_get_accessor_token1] = ACTIONS(8279), + [aux_sym_set_accessor_token1] = ACTIONS(8279), + [aux_sym_const_declaration_token1] = ACTIONS(8279), + [anon_sym_LPAREN] = ACTIONS(8281), + [aux_sym_as_type_clause_token2] = ACTIONS(8279), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8279), + [aux_sym_visibility_token1] = ACTIONS(8279), + [aux_sym_visibility_token2] = ACTIONS(8279), + [aux_sym_elseif_fragment_token1] = ACTIONS(8279), + [aux_sym_else_fragment_token1] = ACTIONS(8279), + [aux_sym_select_statement_token1] = ACTIONS(8279), + [aux_sym__for_header_token1] = ACTIONS(8279), + [aux_sym_do_statement_token1] = ACTIONS(8279), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8279), + [aux_sym_exit_statement_token1] = ACTIONS(8279), + [sym_end_statement] = ACTIONS(8281), + [aux_sym_on_goto_statement_token1] = ACTIONS(8279), + [aux_sym_on_goto_statement_token2] = ACTIONS(8279), + [aux_sym_on_error_statement_token2] = ACTIONS(8279), + [sym__ambiguous_redim_statement] = ACTIONS(8281), + [aux_sym_erase_statement_token1] = ACTIONS(8279), + [aux_sym_open_statement_token1] = ACTIONS(8279), + [aux_sym_file_mode_token2] = ACTIONS(8279), + [aux_sym_file_access_token2] = ACTIONS(8279), + [aux_sym_file_lock_token2] = ACTIONS(8279), + [aux_sym_print_statement_token1] = ACTIONS(8279), + [anon_sym_PLUS] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8279), + [anon_sym_QMARK] = ACTIONS(8281), + [aux_sym_close_statement_token1] = ACTIONS(8279), + [aux_sym_put_statement_token1] = ACTIONS(8279), + [aux_sym_unlock_statement_token1] = ACTIONS(8279), + [aux_sym_seek_statement_token1] = ACTIONS(8279), + [sym_reset_statement] = ACTIONS(8279), + [aux_sym_raise_event_statement_token1] = ACTIONS(8279), + [sym_stop_statement] = ACTIONS(8279), + [sym_beep_statement] = ACTIONS(8279), + [aux_sym_unload_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token2] = ACTIONS(8279), + [aux_sym_def_type_statement_token3] = ACTIONS(8279), + [aux_sym_def_type_statement_token4] = ACTIONS(8279), + [aux_sym_def_type_statement_token5] = ACTIONS(8279), + [aux_sym_def_type_statement_token6] = ACTIONS(8279), + [aux_sym_def_type_statement_token7] = ACTIONS(8279), + [aux_sym_def_type_statement_token8] = ACTIONS(8279), + [aux_sym_def_type_statement_token9] = ACTIONS(8279), + [aux_sym_def_type_statement_token10] = ACTIONS(8279), + [aux_sym_def_type_statement_token11] = ACTIONS(8279), + [aux_sym_def_type_statement_token12] = ACTIONS(8279), + [aux_sym_def_type_statement_token13] = ACTIONS(8279), + [aux_sym_def_type_statement_token14] = ACTIONS(8279), + [aux_sym_call_statement_token1] = ACTIONS(8279), + [sym__ambiguous_call_statement] = ACTIONS(8279), + [aux_sym_addressof_expression_token1] = ACTIONS(8279), + [aux_sym_type_of_expression_token1] = ACTIONS(8279), + [aux_sym_unary_expression_token1] = ACTIONS(8279), + [sym_string_literal] = ACTIONS(8281), + [sym_number_literal] = ACTIONS(8281), + [aux_sym_boolean_literal_token1] = ACTIONS(8279), + [aux_sym_boolean_literal_token2] = ACTIONS(8279), + [sym_nothing_literal] = ACTIONS(8279), + [sym_null_literal] = ACTIONS(8279), + [sym_empty_literal] = ACTIONS(8279), + [sym_date_literal] = ACTIONS(8281), + [anon_sym_POUND] = ACTIONS(8279), + }, + [STATE(3520)] = { + [sym_do_condition] = STATE(4064), + [sym_identifier] = ACTIONS(8283), + [sym_newline] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8283), + [aux_sym_frm_property_statement_token1] = ACTIONS(8283), + [anon_sym_DOT] = ACTIONS(8283), + [anon_sym_BANG] = ACTIONS(8285), + [aux_sym__attribute_identifier_token1] = ACTIONS(8283), + [aux_sym_option_statement_token3] = ACTIONS(8283), + [aux_sym_type_declaration_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8283), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8283), + [aux_sym_enum_declaration_token1] = ACTIONS(8283), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8283), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8283), + [aux_sym_declare_function_statement_token1] = ACTIONS(8283), + [aux_sym_preprocessor_const_token1] = ACTIONS(8283), + [aux_sym__property_get_header_token1] = ACTIONS(8283), + [aux_sym_event_declaration_token1] = ACTIONS(8283), + [sym_static_modifier] = ACTIONS(8283), + [sym__dim_keyword] = ACTIONS(8283), + [sym__redim_keyword] = ACTIONS(8283), + [aux_sym_get_accessor_token1] = ACTIONS(8283), + [aux_sym_set_accessor_token1] = ACTIONS(8283), + [aux_sym_const_declaration_token1] = ACTIONS(8283), + [anon_sym_LPAREN] = ACTIONS(8285), + [aux_sym_as_type_clause_token2] = ACTIONS(8283), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8283), + [aux_sym_visibility_token1] = ACTIONS(8283), + [aux_sym_visibility_token2] = ACTIONS(8283), + [aux_sym_elseif_fragment_token1] = ACTIONS(8283), + [aux_sym_else_fragment_token1] = ACTIONS(8283), + [aux_sym_select_statement_token1] = ACTIONS(8283), + [aux_sym__for_header_token1] = ACTIONS(8283), + [aux_sym_do_statement_token1] = ACTIONS(8283), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8283), + [aux_sym_exit_statement_token1] = ACTIONS(8283), + [sym_end_statement] = ACTIONS(8285), + [aux_sym_on_goto_statement_token1] = ACTIONS(8283), + [aux_sym_on_goto_statement_token2] = ACTIONS(8283), + [aux_sym_on_error_statement_token2] = ACTIONS(8283), + [sym__ambiguous_redim_statement] = ACTIONS(8285), + [aux_sym_erase_statement_token1] = ACTIONS(8283), + [aux_sym_open_statement_token1] = ACTIONS(8283), + [aux_sym_file_mode_token2] = ACTIONS(8283), + [aux_sym_file_access_token2] = ACTIONS(8283), + [aux_sym_file_lock_token2] = ACTIONS(8283), + [aux_sym_print_statement_token1] = ACTIONS(8283), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_DASH] = ACTIONS(8283), + [anon_sym_QMARK] = ACTIONS(8285), + [aux_sym_close_statement_token1] = ACTIONS(8283), + [aux_sym_put_statement_token1] = ACTIONS(8283), + [aux_sym_unlock_statement_token1] = ACTIONS(8283), + [aux_sym_seek_statement_token1] = ACTIONS(8283), + [sym_reset_statement] = ACTIONS(8283), + [aux_sym_raise_event_statement_token1] = ACTIONS(8283), + [sym_stop_statement] = ACTIONS(8283), + [sym_beep_statement] = ACTIONS(8283), + [aux_sym_unload_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token2] = ACTIONS(8283), + [aux_sym_def_type_statement_token3] = ACTIONS(8283), + [aux_sym_def_type_statement_token4] = ACTIONS(8283), + [aux_sym_def_type_statement_token5] = ACTIONS(8283), + [aux_sym_def_type_statement_token6] = ACTIONS(8283), + [aux_sym_def_type_statement_token7] = ACTIONS(8283), + [aux_sym_def_type_statement_token8] = ACTIONS(8283), + [aux_sym_def_type_statement_token9] = ACTIONS(8283), + [aux_sym_def_type_statement_token10] = ACTIONS(8283), + [aux_sym_def_type_statement_token11] = ACTIONS(8283), + [aux_sym_def_type_statement_token12] = ACTIONS(8283), + [aux_sym_def_type_statement_token13] = ACTIONS(8283), + [aux_sym_def_type_statement_token14] = ACTIONS(8283), + [aux_sym_call_statement_token1] = ACTIONS(8283), + [sym__ambiguous_call_statement] = ACTIONS(8283), + [aux_sym_addressof_expression_token1] = ACTIONS(8283), + [aux_sym_type_of_expression_token1] = ACTIONS(8283), + [aux_sym_unary_expression_token1] = ACTIONS(8283), + [sym_string_literal] = ACTIONS(8285), + [sym_number_literal] = ACTIONS(8285), + [aux_sym_boolean_literal_token1] = ACTIONS(8283), + [aux_sym_boolean_literal_token2] = ACTIONS(8283), + [sym_nothing_literal] = ACTIONS(8283), + [sym_null_literal] = ACTIONS(8283), + [sym_empty_literal] = ACTIONS(8283), + [sym_date_literal] = ACTIONS(8285), + [anon_sym_POUND] = ACTIONS(8283), + }, + [STATE(3521)] = { + [aux_sym_variable_declaration_repeat1] = STATE(3521), + [sym_identifier] = ACTIONS(8287), + [sym_newline] = ACTIONS(8289), + [anon_sym_COLON] = ACTIONS(8289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8287), + [aux_sym_frm_property_statement_token1] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8287), + [anon_sym_BANG] = ACTIONS(8289), + [aux_sym__attribute_identifier_token1] = ACTIONS(8287), + [aux_sym_option_statement_token3] = ACTIONS(8287), + [aux_sym_type_declaration_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8287), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8287), + [aux_sym_enum_declaration_token1] = ACTIONS(8287), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8287), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8287), + [aux_sym_declare_function_statement_token1] = ACTIONS(8287), + [aux_sym_preprocessor_const_token1] = ACTIONS(8287), + [aux_sym__property_get_header_token1] = ACTIONS(8287), + [aux_sym_event_declaration_token1] = ACTIONS(8287), + [sym_static_modifier] = ACTIONS(8287), + [sym__dim_keyword] = ACTIONS(8287), + [sym__redim_keyword] = ACTIONS(8287), + [aux_sym_get_accessor_token1] = ACTIONS(8287), + [aux_sym_set_accessor_token1] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8291), + [aux_sym_const_declaration_token1] = ACTIONS(8287), + [anon_sym_LPAREN] = ACTIONS(8289), + [aux_sym_as_type_clause_token2] = ACTIONS(8287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8287), + [aux_sym_visibility_token1] = ACTIONS(8287), + [aux_sym_visibility_token2] = ACTIONS(8287), + [aux_sym_elseif_fragment_token1] = ACTIONS(8287), + [aux_sym_else_fragment_token1] = ACTIONS(8287), + [aux_sym_select_statement_token1] = ACTIONS(8287), + [aux_sym__for_header_token1] = ACTIONS(8287), + [aux_sym_do_statement_token1] = ACTIONS(8287), + [aux_sym_do_condition_token1] = ACTIONS(8287), + [aux_sym_with_statement_token1] = ACTIONS(8287), + [aux_sym_exit_statement_token1] = ACTIONS(8287), + [sym_end_statement] = ACTIONS(8289), + [aux_sym_on_goto_statement_token1] = ACTIONS(8287), + [aux_sym_on_goto_statement_token2] = ACTIONS(8287), + [aux_sym_on_error_statement_token2] = ACTIONS(8287), + [sym__ambiguous_redim_statement] = ACTIONS(8289), + [aux_sym_erase_statement_token1] = ACTIONS(8287), + [aux_sym_open_statement_token1] = ACTIONS(8287), + [aux_sym_file_mode_token2] = ACTIONS(8287), + [aux_sym_file_access_token2] = ACTIONS(8287), + [aux_sym_file_lock_token2] = ACTIONS(8287), + [aux_sym_print_statement_token1] = ACTIONS(8287), + [anon_sym_PLUS] = ACTIONS(8289), + [anon_sym_DASH] = ACTIONS(8287), + [anon_sym_QMARK] = ACTIONS(8289), + [aux_sym_close_statement_token1] = ACTIONS(8287), + [aux_sym_put_statement_token1] = ACTIONS(8287), + [aux_sym_unlock_statement_token1] = ACTIONS(8287), + [aux_sym_seek_statement_token1] = ACTIONS(8287), + [sym_reset_statement] = ACTIONS(8287), + [aux_sym_raise_event_statement_token1] = ACTIONS(8287), + [sym_stop_statement] = ACTIONS(8287), + [sym_beep_statement] = ACTIONS(8287), + [aux_sym_unload_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token2] = ACTIONS(8287), + [aux_sym_def_type_statement_token3] = ACTIONS(8287), + [aux_sym_def_type_statement_token4] = ACTIONS(8287), + [aux_sym_def_type_statement_token5] = ACTIONS(8287), + [aux_sym_def_type_statement_token6] = ACTIONS(8287), + [aux_sym_def_type_statement_token7] = ACTIONS(8287), + [aux_sym_def_type_statement_token8] = ACTIONS(8287), + [aux_sym_def_type_statement_token9] = ACTIONS(8287), + [aux_sym_def_type_statement_token10] = ACTIONS(8287), + [aux_sym_def_type_statement_token11] = ACTIONS(8287), + [aux_sym_def_type_statement_token12] = ACTIONS(8287), + [aux_sym_def_type_statement_token13] = ACTIONS(8287), + [aux_sym_def_type_statement_token14] = ACTIONS(8287), + [aux_sym_call_statement_token1] = ACTIONS(8287), + [sym__ambiguous_call_statement] = ACTIONS(8287), + [aux_sym_addressof_expression_token1] = ACTIONS(8287), + [aux_sym_type_of_expression_token1] = ACTIONS(8287), + [aux_sym_unary_expression_token1] = ACTIONS(8287), + [sym_string_literal] = ACTIONS(8289), + [sym_number_literal] = ACTIONS(8289), + [aux_sym_boolean_literal_token1] = ACTIONS(8287), + [aux_sym_boolean_literal_token2] = ACTIONS(8287), + [sym_nothing_literal] = ACTIONS(8287), + [sym_null_literal] = ACTIONS(8287), + [sym_empty_literal] = ACTIONS(8287), + [sym_date_literal] = ACTIONS(8289), + [anon_sym_POUND] = ACTIONS(8287), + }, + [STATE(3522)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_declaration_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_enum_declaration_token1] = ACTIONS(5627), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5627), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5627), + [aux_sym_declare_function_statement_token1] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [aux_sym__property_get_header_token1] = ACTIONS(5627), + [aux_sym_event_declaration_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(3523)] = { + [sym_identifier] = ACTIONS(6617), + [sym_newline] = ACTIONS(6619), + [anon_sym_COLON] = ACTIONS(6619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6617), + [aux_sym_frm_property_statement_token1] = ACTIONS(6617), + [anon_sym_DOT] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(6619), + [aux_sym__attribute_identifier_token1] = ACTIONS(6617), + [aux_sym_option_statement_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6617), + [aux_sym_preprocessor_const_token1] = ACTIONS(6617), + [sym_static_modifier] = ACTIONS(6617), + [sym__dim_keyword] = ACTIONS(6617), + [sym__redim_keyword] = ACTIONS(6617), + [aux_sym_get_accessor_token1] = ACTIONS(6617), + [aux_sym_set_accessor_token1] = ACTIONS(6617), + [aux_sym_const_declaration_token1] = ACTIONS(6617), + [anon_sym_LPAREN] = ACTIONS(6619), + [aux_sym_as_type_clause_token2] = ACTIONS(6617), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6617), + [aux_sym_visibility_token1] = ACTIONS(6617), + [aux_sym_visibility_token2] = ACTIONS(6617), + [aux_sym_elseif_fragment_token1] = ACTIONS(6617), + [aux_sym_else_fragment_token1] = ACTIONS(6617), + [aux_sym_select_statement_token1] = ACTIONS(6617), + [aux_sym__for_header_token1] = ACTIONS(6617), + [aux_sym_do_statement_token1] = ACTIONS(6617), + [aux_sym_do_condition_token1] = ACTIONS(6617), + [aux_sym_while_statement_token1] = ACTIONS(6617), + [aux_sym_with_statement_token1] = ACTIONS(6617), + [aux_sym_exit_statement_token1] = ACTIONS(6617), + [sym_end_statement] = ACTIONS(6619), + [aux_sym_on_goto_statement_token1] = ACTIONS(6617), + [aux_sym_on_goto_statement_token2] = ACTIONS(6617), + [aux_sym_on_error_statement_token2] = ACTIONS(6617), + [sym__ambiguous_redim_statement] = ACTIONS(6619), + [aux_sym_erase_statement_token1] = ACTIONS(6617), + [aux_sym_open_statement_token1] = ACTIONS(6617), + [aux_sym_file_mode_token2] = ACTIONS(6617), + [aux_sym_file_access_token2] = ACTIONS(6617), + [aux_sym_file_lock_token2] = ACTIONS(6617), + [aux_sym_print_statement_token1] = ACTIONS(6617), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7310), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7312), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5964), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5966), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5968), + [anon_sym_QMARK] = ACTIONS(6619), + [aux_sym_close_statement_token1] = ACTIONS(6617), + [aux_sym_put_statement_token1] = ACTIONS(6617), + [aux_sym_unlock_statement_token1] = ACTIONS(6617), + [aux_sym_seek_statement_token1] = ACTIONS(6617), + [sym_reset_statement] = ACTIONS(6617), + [aux_sym_raise_event_statement_token1] = ACTIONS(6617), + [sym_stop_statement] = ACTIONS(6617), + [sym_beep_statement] = ACTIONS(6617), + [aux_sym_unload_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token2] = ACTIONS(6617), + [aux_sym_def_type_statement_token3] = ACTIONS(6617), + [aux_sym_def_type_statement_token4] = ACTIONS(6617), + [aux_sym_def_type_statement_token5] = ACTIONS(6617), + [aux_sym_def_type_statement_token6] = ACTIONS(6617), + [aux_sym_def_type_statement_token7] = ACTIONS(6617), + [aux_sym_def_type_statement_token8] = ACTIONS(6617), + [aux_sym_def_type_statement_token9] = ACTIONS(6617), + [aux_sym_def_type_statement_token10] = ACTIONS(6617), + [aux_sym_def_type_statement_token11] = ACTIONS(6617), + [aux_sym_def_type_statement_token12] = ACTIONS(6617), + [aux_sym_def_type_statement_token13] = ACTIONS(6617), + [aux_sym_def_type_statement_token14] = ACTIONS(6617), + [aux_sym_call_statement_token1] = ACTIONS(6617), + [sym__ambiguous_call_statement] = ACTIONS(6617), + [aux_sym_addressof_expression_token1] = ACTIONS(6617), + [aux_sym_type_of_expression_token1] = ACTIONS(6617), + [aux_sym_unary_expression_token1] = ACTIONS(6617), + [sym_string_literal] = ACTIONS(6619), + [sym_number_literal] = ACTIONS(6619), + [aux_sym_boolean_literal_token1] = ACTIONS(6617), + [aux_sym_boolean_literal_token2] = ACTIONS(6617), + [sym_nothing_literal] = ACTIONS(6617), + [sym_null_literal] = ACTIONS(6617), + [sym_empty_literal] = ACTIONS(6617), + [sym_date_literal] = ACTIONS(6619), + [anon_sym_POUND] = ACTIONS(6617), + }, + [STATE(3524)] = { + [sym_identifier] = ACTIONS(6336), + [sym_newline] = ACTIONS(6338), + [anon_sym_COLON] = ACTIONS(6338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6336), + [aux_sym_frm_property_statement_token1] = ACTIONS(6336), + [anon_sym_DOT] = ACTIONS(6336), + [anon_sym_BANG] = ACTIONS(6338), + [aux_sym__attribute_identifier_token1] = ACTIONS(6336), + [aux_sym_option_statement_token3] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6336), + [aux_sym_preprocessor_const_token1] = ACTIONS(6336), + [sym_static_modifier] = ACTIONS(6336), + [sym__dim_keyword] = ACTIONS(6336), + [sym__redim_keyword] = ACTIONS(6336), + [aux_sym_get_accessor_token1] = ACTIONS(6336), + [aux_sym_set_accessor_token1] = ACTIONS(6336), + [aux_sym_const_declaration_token1] = ACTIONS(6336), + [anon_sym_LPAREN] = ACTIONS(6338), + [aux_sym_as_type_clause_token2] = ACTIONS(6336), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6336), + [aux_sym_visibility_token1] = ACTIONS(6336), + [aux_sym_visibility_token2] = ACTIONS(6336), + [aux_sym_elseif_fragment_token1] = ACTIONS(6336), + [aux_sym_else_fragment_token1] = ACTIONS(6336), + [aux_sym_select_statement_token1] = ACTIONS(6336), + [aux_sym__for_header_token1] = ACTIONS(6336), + [aux_sym_do_statement_token1] = ACTIONS(6336), + [aux_sym_do_condition_token1] = ACTIONS(6336), + [aux_sym_with_statement_token1] = ACTIONS(6336), + [aux_sym_exit_statement_token1] = ACTIONS(6336), + [sym_end_statement] = ACTIONS(6338), + [aux_sym_on_goto_statement_token1] = ACTIONS(6336), + [aux_sym_on_goto_statement_token2] = ACTIONS(6336), + [aux_sym_on_error_statement_token2] = ACTIONS(6336), + [sym__ambiguous_redim_statement] = ACTIONS(6338), + [aux_sym_erase_statement_token1] = ACTIONS(6336), + [aux_sym_open_statement_token1] = ACTIONS(6336), + [aux_sym_file_mode_token2] = ACTIONS(6336), + [aux_sym_file_access_token2] = ACTIONS(6336), + [aux_sym_file_lock_token2] = ACTIONS(6336), + [aux_sym_print_statement_token1] = ACTIONS(6336), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5887), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5889), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5891), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5893), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6190), + [anon_sym_QMARK] = ACTIONS(6338), + [aux_sym_close_statement_token1] = ACTIONS(6336), + [aux_sym_put_statement_token1] = ACTIONS(6336), + [aux_sym_unlock_statement_token1] = ACTIONS(6336), + [aux_sym_seek_statement_token1] = ACTIONS(6336), + [sym_reset_statement] = ACTIONS(6336), + [aux_sym_raise_event_statement_token1] = ACTIONS(6336), + [sym_stop_statement] = ACTIONS(6336), + [sym_beep_statement] = ACTIONS(6336), + [aux_sym_unload_statement_token1] = ACTIONS(6336), + [aux_sym_def_type_statement_token1] = ACTIONS(6336), + [aux_sym_def_type_statement_token2] = ACTIONS(6336), + [aux_sym_def_type_statement_token3] = ACTIONS(6336), + [aux_sym_def_type_statement_token4] = ACTIONS(6336), + [aux_sym_def_type_statement_token5] = ACTIONS(6336), + [aux_sym_def_type_statement_token6] = ACTIONS(6336), + [aux_sym_def_type_statement_token7] = ACTIONS(6336), + [aux_sym_def_type_statement_token8] = ACTIONS(6336), + [aux_sym_def_type_statement_token9] = ACTIONS(6336), + [aux_sym_def_type_statement_token10] = ACTIONS(6336), + [aux_sym_def_type_statement_token11] = ACTIONS(6336), + [aux_sym_def_type_statement_token12] = ACTIONS(6336), + [aux_sym_def_type_statement_token13] = ACTIONS(6336), + [aux_sym_def_type_statement_token14] = ACTIONS(6336), + [aux_sym_call_statement_token1] = ACTIONS(6336), + [sym__ambiguous_call_statement] = ACTIONS(6336), + [aux_sym_addressof_expression_token1] = ACTIONS(6336), + [aux_sym_type_of_expression_token1] = ACTIONS(6336), + [aux_sym_unary_expression_token1] = ACTIONS(6336), + [sym_string_literal] = ACTIONS(6338), + [sym_number_literal] = ACTIONS(6338), + [aux_sym_boolean_literal_token1] = ACTIONS(6336), + [aux_sym_boolean_literal_token2] = ACTIONS(6336), + [sym_nothing_literal] = ACTIONS(6336), + [sym_null_literal] = ACTIONS(6336), + [sym_empty_literal] = ACTIONS(6336), + [sym_date_literal] = ACTIONS(6338), + [anon_sym_POUND] = ACTIONS(6336), + }, + [STATE(3525)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_declaration_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_enum_declaration_token1] = ACTIONS(5627), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5627), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5627), + [aux_sym_declare_function_statement_token1] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [aux_sym__property_get_header_token1] = ACTIONS(5627), + [aux_sym_event_declaration_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(3526)] = { + [sym_do_condition] = STATE(4065), + [sym_identifier] = ACTIONS(8294), + [sym_newline] = ACTIONS(8296), + [anon_sym_COLON] = ACTIONS(8296), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8294), + [aux_sym_frm_property_statement_token1] = ACTIONS(8294), + [anon_sym_DOT] = ACTIONS(8294), + [anon_sym_BANG] = ACTIONS(8296), + [aux_sym__attribute_identifier_token1] = ACTIONS(8294), + [aux_sym_option_statement_token3] = ACTIONS(8294), + [aux_sym_type_declaration_token1] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8294), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8294), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8294), + [aux_sym_enum_declaration_token1] = ACTIONS(8294), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8294), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8294), + [aux_sym_declare_function_statement_token1] = ACTIONS(8294), + [aux_sym_preprocessor_const_token1] = ACTIONS(8294), + [aux_sym__property_get_header_token1] = ACTIONS(8294), + [aux_sym_event_declaration_token1] = ACTIONS(8294), + [sym_static_modifier] = ACTIONS(8294), + [sym__dim_keyword] = ACTIONS(8294), + [sym__redim_keyword] = ACTIONS(8294), + [aux_sym_get_accessor_token1] = ACTIONS(8294), + [aux_sym_set_accessor_token1] = ACTIONS(8294), + [aux_sym_const_declaration_token1] = ACTIONS(8294), + [anon_sym_LPAREN] = ACTIONS(8296), + [aux_sym_as_type_clause_token2] = ACTIONS(8294), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8294), + [aux_sym_visibility_token1] = ACTIONS(8294), + [aux_sym_visibility_token2] = ACTIONS(8294), + [aux_sym_elseif_fragment_token1] = ACTIONS(8294), + [aux_sym_else_fragment_token1] = ACTIONS(8294), + [aux_sym_select_statement_token1] = ACTIONS(8294), + [aux_sym__for_header_token1] = ACTIONS(8294), + [aux_sym_do_statement_token1] = ACTIONS(8294), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8294), + [aux_sym_exit_statement_token1] = ACTIONS(8294), + [sym_end_statement] = ACTIONS(8296), + [aux_sym_on_goto_statement_token1] = ACTIONS(8294), + [aux_sym_on_goto_statement_token2] = ACTIONS(8294), + [aux_sym_on_error_statement_token2] = ACTIONS(8294), + [sym__ambiguous_redim_statement] = ACTIONS(8296), + [aux_sym_erase_statement_token1] = ACTIONS(8294), + [aux_sym_open_statement_token1] = ACTIONS(8294), + [aux_sym_file_mode_token2] = ACTIONS(8294), + [aux_sym_file_access_token2] = ACTIONS(8294), + [aux_sym_file_lock_token2] = ACTIONS(8294), + [aux_sym_print_statement_token1] = ACTIONS(8294), + [anon_sym_PLUS] = ACTIONS(8296), + [anon_sym_DASH] = ACTIONS(8294), + [anon_sym_QMARK] = ACTIONS(8296), + [aux_sym_close_statement_token1] = ACTIONS(8294), + [aux_sym_put_statement_token1] = ACTIONS(8294), + [aux_sym_unlock_statement_token1] = ACTIONS(8294), + [aux_sym_seek_statement_token1] = ACTIONS(8294), + [sym_reset_statement] = ACTIONS(8294), + [aux_sym_raise_event_statement_token1] = ACTIONS(8294), + [sym_stop_statement] = ACTIONS(8294), + [sym_beep_statement] = ACTIONS(8294), + [aux_sym_unload_statement_token1] = ACTIONS(8294), + [aux_sym_def_type_statement_token1] = ACTIONS(8294), + [aux_sym_def_type_statement_token2] = ACTIONS(8294), + [aux_sym_def_type_statement_token3] = ACTIONS(8294), + [aux_sym_def_type_statement_token4] = ACTIONS(8294), + [aux_sym_def_type_statement_token5] = ACTIONS(8294), + [aux_sym_def_type_statement_token6] = ACTIONS(8294), + [aux_sym_def_type_statement_token7] = ACTIONS(8294), + [aux_sym_def_type_statement_token8] = ACTIONS(8294), + [aux_sym_def_type_statement_token9] = ACTIONS(8294), + [aux_sym_def_type_statement_token10] = ACTIONS(8294), + [aux_sym_def_type_statement_token11] = ACTIONS(8294), + [aux_sym_def_type_statement_token12] = ACTIONS(8294), + [aux_sym_def_type_statement_token13] = ACTIONS(8294), + [aux_sym_def_type_statement_token14] = ACTIONS(8294), + [aux_sym_call_statement_token1] = ACTIONS(8294), + [sym__ambiguous_call_statement] = ACTIONS(8294), + [aux_sym_addressof_expression_token1] = ACTIONS(8294), + [aux_sym_type_of_expression_token1] = ACTIONS(8294), + [aux_sym_unary_expression_token1] = ACTIONS(8294), + [sym_string_literal] = ACTIONS(8296), + [sym_number_literal] = ACTIONS(8296), + [aux_sym_boolean_literal_token1] = ACTIONS(8294), + [aux_sym_boolean_literal_token2] = ACTIONS(8294), + [sym_nothing_literal] = ACTIONS(8294), + [sym_null_literal] = ACTIONS(8294), + [sym_empty_literal] = ACTIONS(8294), + [sym_date_literal] = ACTIONS(8296), + [anon_sym_POUND] = ACTIONS(8294), + }, + [STATE(3527)] = { + [sym_do_condition] = STATE(4068), + [sym_identifier] = ACTIONS(8298), + [sym_newline] = ACTIONS(8300), + [anon_sym_COLON] = ACTIONS(8300), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8298), + [aux_sym_frm_property_statement_token1] = ACTIONS(8298), + [anon_sym_DOT] = ACTIONS(8298), + [anon_sym_BANG] = ACTIONS(8300), + [aux_sym__attribute_identifier_token1] = ACTIONS(8298), + [aux_sym_option_statement_token3] = ACTIONS(8298), + [aux_sym_type_declaration_token1] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8298), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8298), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8298), + [aux_sym_enum_declaration_token1] = ACTIONS(8298), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8298), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8298), + [aux_sym_declare_function_statement_token1] = ACTIONS(8298), + [aux_sym_preprocessor_const_token1] = ACTIONS(8298), + [aux_sym__property_get_header_token1] = ACTIONS(8298), + [aux_sym_event_declaration_token1] = ACTIONS(8298), + [sym_static_modifier] = ACTIONS(8298), + [sym__dim_keyword] = ACTIONS(8298), + [sym__redim_keyword] = ACTIONS(8298), + [aux_sym_get_accessor_token1] = ACTIONS(8298), + [aux_sym_set_accessor_token1] = ACTIONS(8298), + [aux_sym_const_declaration_token1] = ACTIONS(8298), + [anon_sym_LPAREN] = ACTIONS(8300), + [aux_sym_as_type_clause_token2] = ACTIONS(8298), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8298), + [aux_sym_visibility_token1] = ACTIONS(8298), + [aux_sym_visibility_token2] = ACTIONS(8298), + [aux_sym_elseif_fragment_token1] = ACTIONS(8298), + [aux_sym_else_fragment_token1] = ACTIONS(8298), + [aux_sym_select_statement_token1] = ACTIONS(8298), + [aux_sym__for_header_token1] = ACTIONS(8298), + [aux_sym_do_statement_token1] = ACTIONS(8298), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8298), + [aux_sym_exit_statement_token1] = ACTIONS(8298), + [sym_end_statement] = ACTIONS(8300), + [aux_sym_on_goto_statement_token1] = ACTIONS(8298), + [aux_sym_on_goto_statement_token2] = ACTIONS(8298), + [aux_sym_on_error_statement_token2] = ACTIONS(8298), + [sym__ambiguous_redim_statement] = ACTIONS(8300), + [aux_sym_erase_statement_token1] = ACTIONS(8298), + [aux_sym_open_statement_token1] = ACTIONS(8298), + [aux_sym_file_mode_token2] = ACTIONS(8298), + [aux_sym_file_access_token2] = ACTIONS(8298), + [aux_sym_file_lock_token2] = ACTIONS(8298), + [aux_sym_print_statement_token1] = ACTIONS(8298), + [anon_sym_PLUS] = ACTIONS(8300), + [anon_sym_DASH] = ACTIONS(8298), + [anon_sym_QMARK] = ACTIONS(8300), + [aux_sym_close_statement_token1] = ACTIONS(8298), + [aux_sym_put_statement_token1] = ACTIONS(8298), + [aux_sym_unlock_statement_token1] = ACTIONS(8298), + [aux_sym_seek_statement_token1] = ACTIONS(8298), + [sym_reset_statement] = ACTIONS(8298), + [aux_sym_raise_event_statement_token1] = ACTIONS(8298), + [sym_stop_statement] = ACTIONS(8298), + [sym_beep_statement] = ACTIONS(8298), + [aux_sym_unload_statement_token1] = ACTIONS(8298), + [aux_sym_def_type_statement_token1] = ACTIONS(8298), + [aux_sym_def_type_statement_token2] = ACTIONS(8298), + [aux_sym_def_type_statement_token3] = ACTIONS(8298), + [aux_sym_def_type_statement_token4] = ACTIONS(8298), + [aux_sym_def_type_statement_token5] = ACTIONS(8298), + [aux_sym_def_type_statement_token6] = ACTIONS(8298), + [aux_sym_def_type_statement_token7] = ACTIONS(8298), + [aux_sym_def_type_statement_token8] = ACTIONS(8298), + [aux_sym_def_type_statement_token9] = ACTIONS(8298), + [aux_sym_def_type_statement_token10] = ACTIONS(8298), + [aux_sym_def_type_statement_token11] = ACTIONS(8298), + [aux_sym_def_type_statement_token12] = ACTIONS(8298), + [aux_sym_def_type_statement_token13] = ACTIONS(8298), + [aux_sym_def_type_statement_token14] = ACTIONS(8298), + [aux_sym_call_statement_token1] = ACTIONS(8298), + [sym__ambiguous_call_statement] = ACTIONS(8298), + [aux_sym_addressof_expression_token1] = ACTIONS(8298), + [aux_sym_type_of_expression_token1] = ACTIONS(8298), + [aux_sym_unary_expression_token1] = ACTIONS(8298), + [sym_string_literal] = ACTIONS(8300), + [sym_number_literal] = ACTIONS(8300), + [aux_sym_boolean_literal_token1] = ACTIONS(8298), + [aux_sym_boolean_literal_token2] = ACTIONS(8298), + [sym_nothing_literal] = ACTIONS(8298), + [sym_null_literal] = ACTIONS(8298), + [sym_empty_literal] = ACTIONS(8298), + [sym_date_literal] = ACTIONS(8300), + [anon_sym_POUND] = ACTIONS(8298), + }, + [STATE(3528)] = { + [sym_parameter_list] = STATE(3995), + [sym_identifier] = ACTIONS(8302), + [sym_newline] = ACTIONS(8304), + [anon_sym_COLON] = ACTIONS(8304), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8302), + [aux_sym_frm_property_statement_token1] = ACTIONS(8302), + [anon_sym_DOT] = ACTIONS(8302), + [anon_sym_BANG] = ACTIONS(8304), + [aux_sym__attribute_identifier_token1] = ACTIONS(8302), + [aux_sym_option_statement_token3] = ACTIONS(8302), + [aux_sym_type_declaration_token1] = ACTIONS(8302), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8302), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8302), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8302), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8302), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8302), + [aux_sym_enum_declaration_token1] = ACTIONS(8302), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8302), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8302), + [aux_sym_declare_sub_statement_token4] = ACTIONS(8306), + [aux_sym_declare_function_statement_token1] = ACTIONS(8302), + [aux_sym_preprocessor_const_token1] = ACTIONS(8302), + [aux_sym__property_get_header_token1] = ACTIONS(8302), + [aux_sym_event_declaration_token1] = ACTIONS(8302), + [sym_static_modifier] = ACTIONS(8302), + [sym__dim_keyword] = ACTIONS(8302), + [sym__redim_keyword] = ACTIONS(8302), + [aux_sym_get_accessor_token1] = ACTIONS(8302), + [aux_sym_set_accessor_token1] = ACTIONS(8302), + [aux_sym_const_declaration_token1] = ACTIONS(8302), + [anon_sym_LPAREN] = ACTIONS(8126), + [aux_sym_as_type_clause_token2] = ACTIONS(8302), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8302), + [aux_sym_visibility_token1] = ACTIONS(8302), + [aux_sym_visibility_token2] = ACTIONS(8302), + [aux_sym_elseif_fragment_token1] = ACTIONS(8302), + [aux_sym_else_fragment_token1] = ACTIONS(8302), + [aux_sym_select_statement_token1] = ACTIONS(8302), + [aux_sym__for_header_token1] = ACTIONS(8302), + [aux_sym_do_statement_token1] = ACTIONS(8302), + [aux_sym_do_condition_token1] = ACTIONS(8302), + [aux_sym_with_statement_token1] = ACTIONS(8302), + [aux_sym_exit_statement_token1] = ACTIONS(8302), + [sym_end_statement] = ACTIONS(8304), + [aux_sym_on_goto_statement_token1] = ACTIONS(8302), + [aux_sym_on_goto_statement_token2] = ACTIONS(8302), + [aux_sym_on_error_statement_token2] = ACTIONS(8302), + [sym__ambiguous_redim_statement] = ACTIONS(8304), + [aux_sym_erase_statement_token1] = ACTIONS(8302), + [aux_sym_open_statement_token1] = ACTIONS(8302), + [aux_sym_file_mode_token2] = ACTIONS(8302), + [aux_sym_file_access_token2] = ACTIONS(8302), + [aux_sym_file_lock_token2] = ACTIONS(8302), + [aux_sym_print_statement_token1] = ACTIONS(8302), + [anon_sym_PLUS] = ACTIONS(8304), + [anon_sym_DASH] = ACTIONS(8302), + [anon_sym_QMARK] = ACTIONS(8304), + [aux_sym_close_statement_token1] = ACTIONS(8302), + [aux_sym_put_statement_token1] = ACTIONS(8302), + [aux_sym_unlock_statement_token1] = ACTIONS(8302), + [aux_sym_seek_statement_token1] = ACTIONS(8302), + [sym_reset_statement] = ACTIONS(8302), + [aux_sym_raise_event_statement_token1] = ACTIONS(8302), + [sym_stop_statement] = ACTIONS(8302), + [sym_beep_statement] = ACTIONS(8302), + [aux_sym_unload_statement_token1] = ACTIONS(8302), + [aux_sym_def_type_statement_token1] = ACTIONS(8302), + [aux_sym_def_type_statement_token2] = ACTIONS(8302), + [aux_sym_def_type_statement_token3] = ACTIONS(8302), + [aux_sym_def_type_statement_token4] = ACTIONS(8302), + [aux_sym_def_type_statement_token5] = ACTIONS(8302), + [aux_sym_def_type_statement_token6] = ACTIONS(8302), + [aux_sym_def_type_statement_token7] = ACTIONS(8302), + [aux_sym_def_type_statement_token8] = ACTIONS(8302), + [aux_sym_def_type_statement_token9] = ACTIONS(8302), + [aux_sym_def_type_statement_token10] = ACTIONS(8302), + [aux_sym_def_type_statement_token11] = ACTIONS(8302), + [aux_sym_def_type_statement_token12] = ACTIONS(8302), + [aux_sym_def_type_statement_token13] = ACTIONS(8302), + [aux_sym_def_type_statement_token14] = ACTIONS(8302), + [aux_sym_call_statement_token1] = ACTIONS(8302), + [sym__ambiguous_call_statement] = ACTIONS(8302), + [aux_sym_addressof_expression_token1] = ACTIONS(8302), + [aux_sym_type_of_expression_token1] = ACTIONS(8302), + [aux_sym_unary_expression_token1] = ACTIONS(8302), + [sym_string_literal] = ACTIONS(8304), + [sym_number_literal] = ACTIONS(8304), + [aux_sym_boolean_literal_token1] = ACTIONS(8302), + [aux_sym_boolean_literal_token2] = ACTIONS(8302), + [sym_nothing_literal] = ACTIONS(8302), + [sym_null_literal] = ACTIONS(8302), + [sym_empty_literal] = ACTIONS(8302), + [sym_date_literal] = ACTIONS(8304), + [anon_sym_POUND] = ACTIONS(8302), + }, + [STATE(3529)] = { + [aux_sym_variable_declaration_repeat1] = STATE(3442), + [sym_identifier] = ACTIONS(8308), + [sym_newline] = ACTIONS(8310), + [anon_sym_COLON] = ACTIONS(8310), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8308), + [aux_sym_frm_property_statement_token1] = ACTIONS(8308), + [anon_sym_DOT] = ACTIONS(8308), + [anon_sym_BANG] = ACTIONS(8310), + [aux_sym__attribute_identifier_token1] = ACTIONS(8308), + [aux_sym_option_statement_token3] = ACTIONS(8308), + [aux_sym_type_declaration_token1] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8308), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8308), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8308), + [aux_sym_enum_declaration_token1] = ACTIONS(8308), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8308), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8308), + [aux_sym_declare_function_statement_token1] = ACTIONS(8308), + [aux_sym_preprocessor_const_token1] = ACTIONS(8308), + [aux_sym__property_get_header_token1] = ACTIONS(8308), + [aux_sym_event_declaration_token1] = ACTIONS(8308), + [sym_static_modifier] = ACTIONS(8308), + [sym__dim_keyword] = ACTIONS(8308), + [sym__redim_keyword] = ACTIONS(8308), + [aux_sym_get_accessor_token1] = ACTIONS(8308), + [aux_sym_set_accessor_token1] = ACTIONS(8308), + [anon_sym_COMMA] = ACTIONS(8099), + [aux_sym_const_declaration_token1] = ACTIONS(8308), + [anon_sym_LPAREN] = ACTIONS(8310), + [aux_sym_as_type_clause_token2] = ACTIONS(8308), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8308), + [aux_sym_visibility_token1] = ACTIONS(8308), + [aux_sym_visibility_token2] = ACTIONS(8308), + [aux_sym_elseif_fragment_token1] = ACTIONS(8308), + [aux_sym_else_fragment_token1] = ACTIONS(8308), + [aux_sym_select_statement_token1] = ACTIONS(8308), + [aux_sym__for_header_token1] = ACTIONS(8308), + [aux_sym_do_statement_token1] = ACTIONS(8308), + [aux_sym_do_condition_token1] = ACTIONS(8308), + [aux_sym_with_statement_token1] = ACTIONS(8308), + [aux_sym_exit_statement_token1] = ACTIONS(8308), + [sym_end_statement] = ACTIONS(8310), + [aux_sym_on_goto_statement_token1] = ACTIONS(8308), + [aux_sym_on_goto_statement_token2] = ACTIONS(8308), + [aux_sym_on_error_statement_token2] = ACTIONS(8308), + [sym__ambiguous_redim_statement] = ACTIONS(8310), + [aux_sym_erase_statement_token1] = ACTIONS(8308), + [aux_sym_open_statement_token1] = ACTIONS(8308), + [aux_sym_file_mode_token2] = ACTIONS(8308), + [aux_sym_file_access_token2] = ACTIONS(8308), + [aux_sym_file_lock_token2] = ACTIONS(8308), + [aux_sym_print_statement_token1] = ACTIONS(8308), + [anon_sym_PLUS] = ACTIONS(8310), + [anon_sym_DASH] = ACTIONS(8308), + [anon_sym_QMARK] = ACTIONS(8310), + [aux_sym_close_statement_token1] = ACTIONS(8308), + [aux_sym_put_statement_token1] = ACTIONS(8308), + [aux_sym_unlock_statement_token1] = ACTIONS(8308), + [aux_sym_seek_statement_token1] = ACTIONS(8308), + [sym_reset_statement] = ACTIONS(8308), + [aux_sym_raise_event_statement_token1] = ACTIONS(8308), + [sym_stop_statement] = ACTIONS(8308), + [sym_beep_statement] = ACTIONS(8308), + [aux_sym_unload_statement_token1] = ACTIONS(8308), + [aux_sym_def_type_statement_token1] = ACTIONS(8308), + [aux_sym_def_type_statement_token2] = ACTIONS(8308), + [aux_sym_def_type_statement_token3] = ACTIONS(8308), + [aux_sym_def_type_statement_token4] = ACTIONS(8308), + [aux_sym_def_type_statement_token5] = ACTIONS(8308), + [aux_sym_def_type_statement_token6] = ACTIONS(8308), + [aux_sym_def_type_statement_token7] = ACTIONS(8308), + [aux_sym_def_type_statement_token8] = ACTIONS(8308), + [aux_sym_def_type_statement_token9] = ACTIONS(8308), + [aux_sym_def_type_statement_token10] = ACTIONS(8308), + [aux_sym_def_type_statement_token11] = ACTIONS(8308), + [aux_sym_def_type_statement_token12] = ACTIONS(8308), + [aux_sym_def_type_statement_token13] = ACTIONS(8308), + [aux_sym_def_type_statement_token14] = ACTIONS(8308), + [aux_sym_call_statement_token1] = ACTIONS(8308), + [sym__ambiguous_call_statement] = ACTIONS(8308), + [aux_sym_addressof_expression_token1] = ACTIONS(8308), + [aux_sym_type_of_expression_token1] = ACTIONS(8308), + [aux_sym_unary_expression_token1] = ACTIONS(8308), + [sym_string_literal] = ACTIONS(8310), + [sym_number_literal] = ACTIONS(8310), + [aux_sym_boolean_literal_token1] = ACTIONS(8308), + [aux_sym_boolean_literal_token2] = ACTIONS(8308), + [sym_nothing_literal] = ACTIONS(8308), + [sym_null_literal] = ACTIONS(8308), + [sym_empty_literal] = ACTIONS(8308), + [sym_date_literal] = ACTIONS(8310), + [anon_sym_POUND] = ACTIONS(8308), + }, + [STATE(3530)] = { + [sym__required_file_number] = STATE(3770), + [sym_file_number_literal] = STATE(3754), + [sym_identifier] = ACTIONS(8312), + [sym_newline] = ACTIONS(8314), + [anon_sym_COLON] = ACTIONS(8314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8312), + [aux_sym_frm_property_statement_token1] = ACTIONS(8312), + [anon_sym_DOT] = ACTIONS(8312), + [anon_sym_BANG] = ACTIONS(8314), + [aux_sym__attribute_identifier_token1] = ACTIONS(8312), + [aux_sym_option_statement_token3] = ACTIONS(8312), + [aux_sym_type_declaration_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8312), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8312), + [aux_sym_enum_declaration_token1] = ACTIONS(8312), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8312), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8312), + [aux_sym_declare_function_statement_token1] = ACTIONS(8312), + [aux_sym_preprocessor_const_token1] = ACTIONS(8312), + [aux_sym__property_get_header_token1] = ACTIONS(8312), + [aux_sym_event_declaration_token1] = ACTIONS(8312), + [sym_static_modifier] = ACTIONS(8312), + [sym__dim_keyword] = ACTIONS(8312), + [sym__redim_keyword] = ACTIONS(8312), + [aux_sym_get_accessor_token1] = ACTIONS(8312), + [aux_sym_set_accessor_token1] = ACTIONS(8312), + [aux_sym_const_declaration_token1] = ACTIONS(8312), + [anon_sym_LPAREN] = ACTIONS(8314), + [aux_sym_as_type_clause_token2] = ACTIONS(8312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8312), + [aux_sym_visibility_token1] = ACTIONS(8312), + [aux_sym_visibility_token2] = ACTIONS(8312), + [aux_sym_elseif_fragment_token1] = ACTIONS(8312), + [aux_sym_else_fragment_token1] = ACTIONS(8312), + [aux_sym_select_statement_token1] = ACTIONS(8312), + [aux_sym__for_header_token1] = ACTIONS(8312), + [aux_sym_do_statement_token1] = ACTIONS(8312), + [aux_sym_do_condition_token1] = ACTIONS(8312), + [aux_sym_with_statement_token1] = ACTIONS(8312), + [aux_sym_exit_statement_token1] = ACTIONS(8312), + [sym_end_statement] = ACTIONS(8314), + [aux_sym_on_goto_statement_token1] = ACTIONS(8312), + [aux_sym_on_goto_statement_token2] = ACTIONS(8312), + [aux_sym_on_error_statement_token2] = ACTIONS(8312), + [sym__ambiguous_redim_statement] = ACTIONS(8314), + [aux_sym_erase_statement_token1] = ACTIONS(8312), + [aux_sym_open_statement_token1] = ACTIONS(8312), + [aux_sym_file_mode_token2] = ACTIONS(8312), + [aux_sym_file_access_token2] = ACTIONS(8312), + [aux_sym_file_lock_token2] = ACTIONS(8312), + [aux_sym_print_statement_token1] = ACTIONS(8312), + [anon_sym_PLUS] = ACTIONS(8314), + [anon_sym_DASH] = ACTIONS(8312), + [anon_sym_QMARK] = ACTIONS(8314), + [aux_sym_close_statement_token1] = ACTIONS(8312), + [aux_sym_put_statement_token1] = ACTIONS(8312), + [aux_sym_unlock_statement_token1] = ACTIONS(8312), + [aux_sym_seek_statement_token1] = ACTIONS(8312), + [sym_reset_statement] = ACTIONS(8312), + [aux_sym_raise_event_statement_token1] = ACTIONS(8312), + [sym_stop_statement] = ACTIONS(8312), + [sym_beep_statement] = ACTIONS(8312), + [aux_sym_unload_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token2] = ACTIONS(8312), + [aux_sym_def_type_statement_token3] = ACTIONS(8312), + [aux_sym_def_type_statement_token4] = ACTIONS(8312), + [aux_sym_def_type_statement_token5] = ACTIONS(8312), + [aux_sym_def_type_statement_token6] = ACTIONS(8312), + [aux_sym_def_type_statement_token7] = ACTIONS(8312), + [aux_sym_def_type_statement_token8] = ACTIONS(8312), + [aux_sym_def_type_statement_token9] = ACTIONS(8312), + [aux_sym_def_type_statement_token10] = ACTIONS(8312), + [aux_sym_def_type_statement_token11] = ACTIONS(8312), + [aux_sym_def_type_statement_token12] = ACTIONS(8312), + [aux_sym_def_type_statement_token13] = ACTIONS(8312), + [aux_sym_def_type_statement_token14] = ACTIONS(8312), + [aux_sym_call_statement_token1] = ACTIONS(8312), + [sym__ambiguous_call_statement] = ACTIONS(8312), + [aux_sym_addressof_expression_token1] = ACTIONS(8312), + [aux_sym_type_of_expression_token1] = ACTIONS(8312), + [aux_sym_unary_expression_token1] = ACTIONS(8312), + [sym_string_literal] = ACTIONS(8314), + [sym_number_literal] = ACTIONS(8314), + [aux_sym_boolean_literal_token1] = ACTIONS(8312), + [aux_sym_boolean_literal_token2] = ACTIONS(8312), + [sym_nothing_literal] = ACTIONS(8312), + [sym_null_literal] = ACTIONS(8312), + [sym_empty_literal] = ACTIONS(8312), + [sym_date_literal] = ACTIONS(8314), + [anon_sym_POUND] = ACTIONS(189), + }, + [STATE(3531)] = { + [aux_sym__argument_sequence_repeat2] = STATE(3586), + [sym_identifier] = ACTIONS(4166), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_declaration_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4166), + [aux_sym_enum_declaration_token1] = ACTIONS(4166), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4166), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4166), + [aux_sym_declare_function_statement_token1] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [aux_sym__property_get_header_token1] = ACTIONS(4166), + [aux_sym_event_declaration_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4168), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4164), + [aux_sym_as_type_clause_token2] = ACTIONS(4166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4166), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4166), + [aux_sym_type_of_expression_token1] = ACTIONS(4166), + [aux_sym_unary_expression_token1] = ACTIONS(4166), + [sym_string_literal] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4164), + [aux_sym_boolean_literal_token1] = ACTIONS(4166), + [aux_sym_boolean_literal_token2] = ACTIONS(4166), + [sym_nothing_literal] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4166), + [sym_empty_literal] = ACTIONS(4166), + [sym_date_literal] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4166), + }, + [STATE(3532)] = { + [aux_sym__argument_sequence_repeat2] = STATE(3477), + [sym_identifier] = ACTIONS(4166), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_declaration_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4166), + [aux_sym_enum_declaration_token1] = ACTIONS(4166), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4166), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4166), + [aux_sym_declare_function_statement_token1] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [aux_sym__property_get_header_token1] = ACTIONS(4166), + [aux_sym_event_declaration_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4168), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4164), + [aux_sym_as_type_clause_token2] = ACTIONS(4166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4166), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4166), + [aux_sym_type_of_expression_token1] = ACTIONS(4166), + [aux_sym_unary_expression_token1] = ACTIONS(4166), + [sym_string_literal] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4164), + [aux_sym_boolean_literal_token1] = ACTIONS(4166), + [aux_sym_boolean_literal_token2] = ACTIONS(4166), + [sym_nothing_literal] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4166), + [sym_empty_literal] = ACTIONS(4166), + [sym_date_literal] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4166), + }, + [STATE(3533)] = { + [sym_as_type_clause] = STATE(4082), + [sym_identifier] = ACTIONS(8316), + [sym_newline] = ACTIONS(8318), + [anon_sym_COLON] = ACTIONS(8318), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8316), + [aux_sym_frm_property_statement_token1] = ACTIONS(8316), + [anon_sym_DOT] = ACTIONS(8316), + [anon_sym_BANG] = ACTIONS(8318), + [aux_sym__attribute_identifier_token1] = ACTIONS(8316), + [aux_sym_option_statement_token3] = ACTIONS(8316), + [aux_sym_type_declaration_token1] = ACTIONS(8316), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8316), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8316), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8316), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8316), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8316), + [aux_sym_enum_declaration_token1] = ACTIONS(8316), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8316), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8316), + [aux_sym_declare_function_statement_token1] = ACTIONS(8316), + [aux_sym_preprocessor_const_token1] = ACTIONS(8316), + [aux_sym__property_get_header_token1] = ACTIONS(8316), + [aux_sym_event_declaration_token1] = ACTIONS(8316), + [sym_static_modifier] = ACTIONS(8316), + [sym__dim_keyword] = ACTIONS(8316), + [sym__redim_keyword] = ACTIONS(8316), + [aux_sym_get_accessor_token1] = ACTIONS(8316), + [aux_sym_set_accessor_token1] = ACTIONS(8316), + [aux_sym_const_declaration_token1] = ACTIONS(8316), + [anon_sym_LPAREN] = ACTIONS(8318), + [aux_sym_as_type_clause_token1] = ACTIONS(7428), + [aux_sym_as_type_clause_token2] = ACTIONS(8316), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8316), + [aux_sym_visibility_token1] = ACTIONS(8316), + [aux_sym_visibility_token2] = ACTIONS(8316), + [aux_sym_elseif_fragment_token1] = ACTIONS(8316), + [aux_sym_else_fragment_token1] = ACTIONS(8316), + [aux_sym_select_statement_token1] = ACTIONS(8316), + [aux_sym__for_header_token1] = ACTIONS(8316), + [aux_sym_do_statement_token1] = ACTIONS(8316), + [aux_sym_do_condition_token1] = ACTIONS(8316), + [aux_sym_with_statement_token1] = ACTIONS(8316), + [aux_sym_exit_statement_token1] = ACTIONS(8316), + [sym_end_statement] = ACTIONS(8318), + [aux_sym_on_goto_statement_token1] = ACTIONS(8316), + [aux_sym_on_goto_statement_token2] = ACTIONS(8316), + [aux_sym_on_error_statement_token2] = ACTIONS(8316), + [sym__ambiguous_redim_statement] = ACTIONS(8318), + [aux_sym_erase_statement_token1] = ACTIONS(8316), + [aux_sym_open_statement_token1] = ACTIONS(8316), + [aux_sym_file_mode_token2] = ACTIONS(8316), + [aux_sym_file_access_token2] = ACTIONS(8316), + [aux_sym_file_lock_token2] = ACTIONS(8316), + [aux_sym_print_statement_token1] = ACTIONS(8316), + [anon_sym_PLUS] = ACTIONS(8318), + [anon_sym_DASH] = ACTIONS(8316), + [anon_sym_QMARK] = ACTIONS(8318), + [aux_sym_close_statement_token1] = ACTIONS(8316), + [aux_sym_put_statement_token1] = ACTIONS(8316), + [aux_sym_unlock_statement_token1] = ACTIONS(8316), + [aux_sym_seek_statement_token1] = ACTIONS(8316), + [sym_reset_statement] = ACTIONS(8316), + [aux_sym_raise_event_statement_token1] = ACTIONS(8316), + [sym_stop_statement] = ACTIONS(8316), + [sym_beep_statement] = ACTIONS(8316), + [aux_sym_unload_statement_token1] = ACTIONS(8316), + [aux_sym_def_type_statement_token1] = ACTIONS(8316), + [aux_sym_def_type_statement_token2] = ACTIONS(8316), + [aux_sym_def_type_statement_token3] = ACTIONS(8316), + [aux_sym_def_type_statement_token4] = ACTIONS(8316), + [aux_sym_def_type_statement_token5] = ACTIONS(8316), + [aux_sym_def_type_statement_token6] = ACTIONS(8316), + [aux_sym_def_type_statement_token7] = ACTIONS(8316), + [aux_sym_def_type_statement_token8] = ACTIONS(8316), + [aux_sym_def_type_statement_token9] = ACTIONS(8316), + [aux_sym_def_type_statement_token10] = ACTIONS(8316), + [aux_sym_def_type_statement_token11] = ACTIONS(8316), + [aux_sym_def_type_statement_token12] = ACTIONS(8316), + [aux_sym_def_type_statement_token13] = ACTIONS(8316), + [aux_sym_def_type_statement_token14] = ACTIONS(8316), + [aux_sym_call_statement_token1] = ACTIONS(8316), + [sym__ambiguous_call_statement] = ACTIONS(8316), + [aux_sym_addressof_expression_token1] = ACTIONS(8316), + [aux_sym_type_of_expression_token1] = ACTIONS(8316), + [aux_sym_unary_expression_token1] = ACTIONS(8316), + [sym_string_literal] = ACTIONS(8318), + [sym_number_literal] = ACTIONS(8318), + [aux_sym_boolean_literal_token1] = ACTIONS(8316), + [aux_sym_boolean_literal_token2] = ACTIONS(8316), + [sym_nothing_literal] = ACTIONS(8316), + [sym_null_literal] = ACTIONS(8316), + [sym_empty_literal] = ACTIONS(8316), + [sym_date_literal] = ACTIONS(8318), + [anon_sym_POUND] = ACTIONS(8316), + }, + [STATE(3534)] = { + [sym_char_position] = STATE(7541), + [aux_sym_output_list_repeat1] = STATE(3534), + [sym_identifier] = ACTIONS(7618), + [sym_newline] = ACTIONS(7620), + [anon_sym_COLON] = ACTIONS(7620), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7618), + [aux_sym_frm_property_statement_token1] = ACTIONS(7618), + [anon_sym_DOT] = ACTIONS(7618), + [anon_sym_BANG] = ACTIONS(7620), + [aux_sym__attribute_identifier_token1] = ACTIONS(7618), + [aux_sym_option_statement_token3] = ACTIONS(7618), + [aux_sym_type_declaration_token1] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7618), + [aux_sym_enum_declaration_token1] = ACTIONS(7618), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7618), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7618), + [aux_sym_declare_function_statement_token1] = ACTIONS(7618), + [aux_sym_preprocessor_const_token1] = ACTIONS(7618), + [aux_sym__property_get_header_token1] = ACTIONS(7618), + [aux_sym_event_declaration_token1] = ACTIONS(7618), + [sym_static_modifier] = ACTIONS(7618), + [sym__dim_keyword] = ACTIONS(7618), + [sym__redim_keyword] = ACTIONS(7618), + [aux_sym_get_accessor_token1] = ACTIONS(7618), + [aux_sym_set_accessor_token1] = ACTIONS(7618), + [anon_sym_COMMA] = ACTIONS(7622), + [aux_sym_const_declaration_token1] = ACTIONS(7618), + [anon_sym_LPAREN] = ACTIONS(7620), + [aux_sym_as_type_clause_token2] = ACTIONS(7618), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7618), + [aux_sym_visibility_token1] = ACTIONS(7618), + [aux_sym_visibility_token2] = ACTIONS(7618), + [aux_sym_elseif_fragment_token1] = ACTIONS(7618), + [aux_sym_else_fragment_token1] = ACTIONS(7618), + [aux_sym_select_statement_token1] = ACTIONS(7618), + [aux_sym__for_header_token1] = ACTIONS(7618), + [aux_sym_do_statement_token1] = ACTIONS(7618), + [aux_sym_do_condition_token1] = ACTIONS(7618), + [aux_sym_with_statement_token1] = ACTIONS(7618), + [aux_sym_exit_statement_token1] = ACTIONS(7618), + [sym_end_statement] = ACTIONS(7620), + [aux_sym_on_goto_statement_token1] = ACTIONS(7618), + [aux_sym_on_goto_statement_token2] = ACTIONS(7618), + [aux_sym_on_error_statement_token2] = ACTIONS(7618), + [sym__ambiguous_redim_statement] = ACTIONS(7620), + [aux_sym_erase_statement_token1] = ACTIONS(7618), + [aux_sym_open_statement_token1] = ACTIONS(7618), + [aux_sym_file_mode_token2] = ACTIONS(7618), + [aux_sym_file_access_token2] = ACTIONS(7618), + [aux_sym_file_lock_token2] = ACTIONS(7618), + [aux_sym_print_statement_token1] = ACTIONS(7618), + [anon_sym_PLUS] = ACTIONS(7620), + [anon_sym_DASH] = ACTIONS(7618), + [anon_sym_SEMI] = ACTIONS(7622), + [anon_sym_QMARK] = ACTIONS(7620), + [aux_sym_close_statement_token1] = ACTIONS(7618), + [aux_sym_put_statement_token1] = ACTIONS(7618), + [aux_sym_unlock_statement_token1] = ACTIONS(7618), + [aux_sym_seek_statement_token1] = ACTIONS(7618), + [sym_reset_statement] = ACTIONS(7618), + [aux_sym_raise_event_statement_token1] = ACTIONS(7618), + [sym_stop_statement] = ACTIONS(7618), + [sym_beep_statement] = ACTIONS(7618), + [aux_sym_unload_statement_token1] = ACTIONS(7618), + [aux_sym_def_type_statement_token1] = ACTIONS(7618), + [aux_sym_def_type_statement_token2] = ACTIONS(7618), + [aux_sym_def_type_statement_token3] = ACTIONS(7618), + [aux_sym_def_type_statement_token4] = ACTIONS(7618), + [aux_sym_def_type_statement_token5] = ACTIONS(7618), + [aux_sym_def_type_statement_token6] = ACTIONS(7618), + [aux_sym_def_type_statement_token7] = ACTIONS(7618), + [aux_sym_def_type_statement_token8] = ACTIONS(7618), + [aux_sym_def_type_statement_token9] = ACTIONS(7618), + [aux_sym_def_type_statement_token10] = ACTIONS(7618), + [aux_sym_def_type_statement_token11] = ACTIONS(7618), + [aux_sym_def_type_statement_token12] = ACTIONS(7618), + [aux_sym_def_type_statement_token13] = ACTIONS(7618), + [aux_sym_def_type_statement_token14] = ACTIONS(7618), + [aux_sym_call_statement_token1] = ACTIONS(7618), + [sym__ambiguous_call_statement] = ACTIONS(7618), + [aux_sym_addressof_expression_token1] = ACTIONS(7618), + [aux_sym_type_of_expression_token1] = ACTIONS(7618), + [aux_sym_unary_expression_token1] = ACTIONS(7618), + [sym_string_literal] = ACTIONS(7620), + [sym_number_literal] = ACTIONS(7620), + [aux_sym_boolean_literal_token1] = ACTIONS(7618), + [aux_sym_boolean_literal_token2] = ACTIONS(7618), + [sym_nothing_literal] = ACTIONS(7618), + [sym_null_literal] = ACTIONS(7618), + [sym_empty_literal] = ACTIONS(7618), + [sym_date_literal] = ACTIONS(7620), + [anon_sym_POUND] = ACTIONS(7618), + }, + [STATE(3535)] = { + [aux_sym_erase_statement_repeat1] = STATE(3705), + [sym_identifier] = ACTIONS(8320), + [sym_newline] = ACTIONS(8322), + [anon_sym_COLON] = ACTIONS(8322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8320), + [aux_sym_frm_property_statement_token1] = ACTIONS(8320), + [anon_sym_DOT] = ACTIONS(8320), + [anon_sym_BANG] = ACTIONS(8322), + [aux_sym__attribute_identifier_token1] = ACTIONS(8320), + [aux_sym_option_statement_token3] = ACTIONS(8320), + [aux_sym_type_declaration_token1] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8320), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8320), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8320), + [aux_sym_enum_declaration_token1] = ACTIONS(8320), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8320), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8320), + [aux_sym_declare_function_statement_token1] = ACTIONS(8320), + [aux_sym_preprocessor_const_token1] = ACTIONS(8320), + [aux_sym__property_get_header_token1] = ACTIONS(8320), + [aux_sym_event_declaration_token1] = ACTIONS(8320), + [sym_static_modifier] = ACTIONS(8320), + [sym__dim_keyword] = ACTIONS(8320), + [sym__redim_keyword] = ACTIONS(8320), + [aux_sym_get_accessor_token1] = ACTIONS(8320), + [aux_sym_set_accessor_token1] = ACTIONS(8320), + [anon_sym_COMMA] = ACTIONS(8324), + [aux_sym_const_declaration_token1] = ACTIONS(8320), + [anon_sym_LPAREN] = ACTIONS(8322), + [aux_sym_as_type_clause_token2] = ACTIONS(8320), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8320), + [aux_sym_visibility_token1] = ACTIONS(8320), + [aux_sym_visibility_token2] = ACTIONS(8320), + [aux_sym_elseif_fragment_token1] = ACTIONS(8320), + [aux_sym_else_fragment_token1] = ACTIONS(8320), + [aux_sym_select_statement_token1] = ACTIONS(8320), + [aux_sym__for_header_token1] = ACTIONS(8320), + [aux_sym_do_statement_token1] = ACTIONS(8320), + [aux_sym_do_condition_token1] = ACTIONS(8320), + [aux_sym_with_statement_token1] = ACTIONS(8320), + [aux_sym_exit_statement_token1] = ACTIONS(8320), + [sym_end_statement] = ACTIONS(8322), + [aux_sym_on_goto_statement_token1] = ACTIONS(8320), + [aux_sym_on_goto_statement_token2] = ACTIONS(8320), + [aux_sym_on_error_statement_token2] = ACTIONS(8320), + [sym__ambiguous_redim_statement] = ACTIONS(8322), + [aux_sym_erase_statement_token1] = ACTIONS(8320), + [aux_sym_open_statement_token1] = ACTIONS(8320), + [aux_sym_file_mode_token2] = ACTIONS(8320), + [aux_sym_file_access_token2] = ACTIONS(8320), + [aux_sym_file_lock_token2] = ACTIONS(8320), + [aux_sym_print_statement_token1] = ACTIONS(8320), + [anon_sym_PLUS] = ACTIONS(8322), + [anon_sym_DASH] = ACTIONS(8320), + [anon_sym_QMARK] = ACTIONS(8322), + [aux_sym_close_statement_token1] = ACTIONS(8320), + [aux_sym_put_statement_token1] = ACTIONS(8320), + [aux_sym_unlock_statement_token1] = ACTIONS(8320), + [aux_sym_seek_statement_token1] = ACTIONS(8320), + [sym_reset_statement] = ACTIONS(8320), + [aux_sym_raise_event_statement_token1] = ACTIONS(8320), + [sym_stop_statement] = ACTIONS(8320), + [sym_beep_statement] = ACTIONS(8320), + [aux_sym_unload_statement_token1] = ACTIONS(8320), + [aux_sym_def_type_statement_token1] = ACTIONS(8320), + [aux_sym_def_type_statement_token2] = ACTIONS(8320), + [aux_sym_def_type_statement_token3] = ACTIONS(8320), + [aux_sym_def_type_statement_token4] = ACTIONS(8320), + [aux_sym_def_type_statement_token5] = ACTIONS(8320), + [aux_sym_def_type_statement_token6] = ACTIONS(8320), + [aux_sym_def_type_statement_token7] = ACTIONS(8320), + [aux_sym_def_type_statement_token8] = ACTIONS(8320), + [aux_sym_def_type_statement_token9] = ACTIONS(8320), + [aux_sym_def_type_statement_token10] = ACTIONS(8320), + [aux_sym_def_type_statement_token11] = ACTIONS(8320), + [aux_sym_def_type_statement_token12] = ACTIONS(8320), + [aux_sym_def_type_statement_token13] = ACTIONS(8320), + [aux_sym_def_type_statement_token14] = ACTIONS(8320), + [aux_sym_call_statement_token1] = ACTIONS(8320), + [sym__ambiguous_call_statement] = ACTIONS(8320), + [aux_sym_addressof_expression_token1] = ACTIONS(8320), + [aux_sym_type_of_expression_token1] = ACTIONS(8320), + [aux_sym_unary_expression_token1] = ACTIONS(8320), + [sym_string_literal] = ACTIONS(8322), + [sym_number_literal] = ACTIONS(8322), + [aux_sym_boolean_literal_token1] = ACTIONS(8320), + [aux_sym_boolean_literal_token2] = ACTIONS(8320), + [sym_nothing_literal] = ACTIONS(8320), + [sym_null_literal] = ACTIONS(8320), + [sym_empty_literal] = ACTIONS(8320), + [sym_date_literal] = ACTIONS(8322), + [anon_sym_POUND] = ACTIONS(8320), + }, + [STATE(3536)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_array_bound_token1] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(3537)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_declaration_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4601), + [aux_sym_enum_declaration_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4601), + [aux_sym_declare_function_statement_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [aux_sym__property_get_header_token1] = ACTIONS(4601), + [aux_sym_event_declaration_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(3538)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4605), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(3539)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_declaration_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4609), + [aux_sym_enum_declaration_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4609), + [aux_sym_declare_function_statement_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [aux_sym__property_get_header_token1] = ACTIONS(4609), + [aux_sym_event_declaration_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(3540)] = { + [sym_parameter_list] = STATE(4083), + [sym_identifier] = ACTIONS(8326), + [sym_newline] = ACTIONS(8328), + [anon_sym_COLON] = ACTIONS(8328), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8326), + [aux_sym_frm_property_statement_token1] = ACTIONS(8326), + [anon_sym_DOT] = ACTIONS(8326), + [anon_sym_BANG] = ACTIONS(8328), + [aux_sym__attribute_identifier_token1] = ACTIONS(8326), + [aux_sym_option_statement_token3] = ACTIONS(8326), + [aux_sym_type_declaration_token1] = ACTIONS(8326), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8326), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8326), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8326), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8326), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8326), + [aux_sym_enum_declaration_token1] = ACTIONS(8326), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8326), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8326), + [aux_sym_declare_sub_statement_token4] = ACTIONS(8330), + [aux_sym_declare_function_statement_token1] = ACTIONS(8326), + [aux_sym_preprocessor_const_token1] = ACTIONS(8326), + [aux_sym__property_get_header_token1] = ACTIONS(8326), + [aux_sym_event_declaration_token1] = ACTIONS(8326), + [sym_static_modifier] = ACTIONS(8326), + [sym__dim_keyword] = ACTIONS(8326), + [sym__redim_keyword] = ACTIONS(8326), + [aux_sym_get_accessor_token1] = ACTIONS(8326), + [aux_sym_set_accessor_token1] = ACTIONS(8326), + [aux_sym_const_declaration_token1] = ACTIONS(8326), + [anon_sym_LPAREN] = ACTIONS(8126), + [aux_sym_as_type_clause_token2] = ACTIONS(8326), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8326), + [aux_sym_visibility_token1] = ACTIONS(8326), + [aux_sym_visibility_token2] = ACTIONS(8326), + [aux_sym_elseif_fragment_token1] = ACTIONS(8326), + [aux_sym_else_fragment_token1] = ACTIONS(8326), + [aux_sym_select_statement_token1] = ACTIONS(8326), + [aux_sym__for_header_token1] = ACTIONS(8326), + [aux_sym_do_statement_token1] = ACTIONS(8326), + [aux_sym_do_condition_token1] = ACTIONS(8326), + [aux_sym_with_statement_token1] = ACTIONS(8326), + [aux_sym_exit_statement_token1] = ACTIONS(8326), + [sym_end_statement] = ACTIONS(8328), + [aux_sym_on_goto_statement_token1] = ACTIONS(8326), + [aux_sym_on_goto_statement_token2] = ACTIONS(8326), + [aux_sym_on_error_statement_token2] = ACTIONS(8326), + [sym__ambiguous_redim_statement] = ACTIONS(8328), + [aux_sym_erase_statement_token1] = ACTIONS(8326), + [aux_sym_open_statement_token1] = ACTIONS(8326), + [aux_sym_file_mode_token2] = ACTIONS(8326), + [aux_sym_file_access_token2] = ACTIONS(8326), + [aux_sym_file_lock_token2] = ACTIONS(8326), + [aux_sym_print_statement_token1] = ACTIONS(8326), + [anon_sym_PLUS] = ACTIONS(8328), + [anon_sym_DASH] = ACTIONS(8326), + [anon_sym_QMARK] = ACTIONS(8328), + [aux_sym_close_statement_token1] = ACTIONS(8326), + [aux_sym_put_statement_token1] = ACTIONS(8326), + [aux_sym_unlock_statement_token1] = ACTIONS(8326), + [aux_sym_seek_statement_token1] = ACTIONS(8326), + [sym_reset_statement] = ACTIONS(8326), + [aux_sym_raise_event_statement_token1] = ACTIONS(8326), + [sym_stop_statement] = ACTIONS(8326), + [sym_beep_statement] = ACTIONS(8326), + [aux_sym_unload_statement_token1] = ACTIONS(8326), + [aux_sym_def_type_statement_token1] = ACTIONS(8326), + [aux_sym_def_type_statement_token2] = ACTIONS(8326), + [aux_sym_def_type_statement_token3] = ACTIONS(8326), + [aux_sym_def_type_statement_token4] = ACTIONS(8326), + [aux_sym_def_type_statement_token5] = ACTIONS(8326), + [aux_sym_def_type_statement_token6] = ACTIONS(8326), + [aux_sym_def_type_statement_token7] = ACTIONS(8326), + [aux_sym_def_type_statement_token8] = ACTIONS(8326), + [aux_sym_def_type_statement_token9] = ACTIONS(8326), + [aux_sym_def_type_statement_token10] = ACTIONS(8326), + [aux_sym_def_type_statement_token11] = ACTIONS(8326), + [aux_sym_def_type_statement_token12] = ACTIONS(8326), + [aux_sym_def_type_statement_token13] = ACTIONS(8326), + [aux_sym_def_type_statement_token14] = ACTIONS(8326), + [aux_sym_call_statement_token1] = ACTIONS(8326), + [sym__ambiguous_call_statement] = ACTIONS(8326), + [aux_sym_addressof_expression_token1] = ACTIONS(8326), + [aux_sym_type_of_expression_token1] = ACTIONS(8326), + [aux_sym_unary_expression_token1] = ACTIONS(8326), + [sym_string_literal] = ACTIONS(8328), + [sym_number_literal] = ACTIONS(8328), + [aux_sym_boolean_literal_token1] = ACTIONS(8326), + [aux_sym_boolean_literal_token2] = ACTIONS(8326), + [sym_nothing_literal] = ACTIONS(8326), + [sym_null_literal] = ACTIONS(8326), + [sym_empty_literal] = ACTIONS(8326), + [sym_date_literal] = ACTIONS(8328), + [anon_sym_POUND] = ACTIONS(8326), + }, + [STATE(3541)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_array_bound_token1] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(3542)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_array_bound_token1] = ACTIONS(4437), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(3543)] = { + [sym_identifier] = ACTIONS(6625), + [sym_newline] = ACTIONS(6627), + [anon_sym_COLON] = ACTIONS(6627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6625), + [aux_sym_frm_property_statement_token1] = ACTIONS(6625), + [anon_sym_DOT] = ACTIONS(6625), + [anon_sym_BANG] = ACTIONS(6627), + [aux_sym__attribute_identifier_token1] = ACTIONS(6625), + [aux_sym_option_statement_token3] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6625), + [aux_sym_preprocessor_const_token1] = ACTIONS(6625), + [sym_static_modifier] = ACTIONS(6625), + [sym__dim_keyword] = ACTIONS(6625), + [sym__redim_keyword] = ACTIONS(6625), + [aux_sym_get_accessor_token1] = ACTIONS(6625), + [aux_sym_set_accessor_token1] = ACTIONS(6625), + [aux_sym_const_declaration_token1] = ACTIONS(6625), + [anon_sym_LPAREN] = ACTIONS(6627), + [aux_sym_as_type_clause_token2] = ACTIONS(6625), + [anon_sym_STAR] = ACTIONS(7206), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6625), + [aux_sym_visibility_token1] = ACTIONS(6625), + [aux_sym_visibility_token2] = ACTIONS(6625), + [aux_sym_elseif_fragment_token1] = ACTIONS(6625), + [aux_sym_else_fragment_token1] = ACTIONS(6625), + [aux_sym_select_statement_token1] = ACTIONS(6625), + [aux_sym__for_header_token1] = ACTIONS(6625), + [aux_sym_do_statement_token1] = ACTIONS(6625), + [aux_sym_do_condition_token1] = ACTIONS(6625), + [aux_sym_while_statement_token1] = ACTIONS(6625), + [aux_sym_with_statement_token1] = ACTIONS(6625), + [aux_sym_exit_statement_token1] = ACTIONS(6625), + [sym_end_statement] = ACTIONS(6627), + [aux_sym_on_goto_statement_token1] = ACTIONS(6625), + [aux_sym_on_goto_statement_token2] = ACTIONS(6625), + [aux_sym_on_error_statement_token2] = ACTIONS(6625), + [sym__ambiguous_redim_statement] = ACTIONS(6627), + [aux_sym_erase_statement_token1] = ACTIONS(6625), + [aux_sym_open_statement_token1] = ACTIONS(6625), + [aux_sym_file_mode_token2] = ACTIONS(6625), + [aux_sym_file_access_token2] = ACTIONS(6625), + [aux_sym_file_lock_token2] = ACTIONS(6625), + [aux_sym_print_statement_token1] = ACTIONS(6625), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7206), + [anon_sym_BSLASH] = ACTIONS(7210), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7218), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7220), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7222), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7224), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7226), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7228), + [anon_sym_QMARK] = ACTIONS(6627), + [aux_sym_close_statement_token1] = ACTIONS(6625), + [aux_sym_put_statement_token1] = ACTIONS(6625), + [aux_sym_unlock_statement_token1] = ACTIONS(6625), + [aux_sym_seek_statement_token1] = ACTIONS(6625), + [sym_reset_statement] = ACTIONS(6625), + [aux_sym_raise_event_statement_token1] = ACTIONS(6625), + [sym_stop_statement] = ACTIONS(6625), + [sym_beep_statement] = ACTIONS(6625), + [aux_sym_unload_statement_token1] = ACTIONS(6625), + [aux_sym_def_type_statement_token1] = ACTIONS(6625), + [aux_sym_def_type_statement_token2] = ACTIONS(6625), + [aux_sym_def_type_statement_token3] = ACTIONS(6625), + [aux_sym_def_type_statement_token4] = ACTIONS(6625), + [aux_sym_def_type_statement_token5] = ACTIONS(6625), + [aux_sym_def_type_statement_token6] = ACTIONS(6625), + [aux_sym_def_type_statement_token7] = ACTIONS(6625), + [aux_sym_def_type_statement_token8] = ACTIONS(6625), + [aux_sym_def_type_statement_token9] = ACTIONS(6625), + [aux_sym_def_type_statement_token10] = ACTIONS(6625), + [aux_sym_def_type_statement_token11] = ACTIONS(6625), + [aux_sym_def_type_statement_token12] = ACTIONS(6625), + [aux_sym_def_type_statement_token13] = ACTIONS(6625), + [aux_sym_def_type_statement_token14] = ACTIONS(6625), + [aux_sym_call_statement_token1] = ACTIONS(6625), + [sym__ambiguous_call_statement] = ACTIONS(6625), + [aux_sym_addressof_expression_token1] = ACTIONS(6625), + [aux_sym_type_of_expression_token1] = ACTIONS(6625), + [aux_sym_unary_expression_token1] = ACTIONS(6625), + [sym_string_literal] = ACTIONS(6627), + [sym_number_literal] = ACTIONS(6627), + [aux_sym_boolean_literal_token1] = ACTIONS(6625), + [aux_sym_boolean_literal_token2] = ACTIONS(6625), + [sym_nothing_literal] = ACTIONS(6625), + [sym_null_literal] = ACTIONS(6625), + [sym_empty_literal] = ACTIONS(6625), + [sym_date_literal] = ACTIONS(6627), + [anon_sym_POUND] = ACTIONS(6625), + }, + [STATE(3544)] = { + [aux_sym_variable_declaration_repeat1] = STATE(3453), + [sym_identifier] = ACTIONS(8332), + [sym_newline] = ACTIONS(8334), + [anon_sym_COLON] = ACTIONS(8334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8332), + [aux_sym_frm_property_statement_token1] = ACTIONS(8332), + [anon_sym_DOT] = ACTIONS(8332), + [anon_sym_BANG] = ACTIONS(8334), + [aux_sym__attribute_identifier_token1] = ACTIONS(8332), + [aux_sym_option_statement_token3] = ACTIONS(8332), + [aux_sym_type_declaration_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8332), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8332), + [aux_sym_enum_declaration_token1] = ACTIONS(8332), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8332), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8332), + [aux_sym_declare_function_statement_token1] = ACTIONS(8332), + [aux_sym_preprocessor_const_token1] = ACTIONS(8332), + [aux_sym__property_get_header_token1] = ACTIONS(8332), + [aux_sym_event_declaration_token1] = ACTIONS(8332), + [sym_static_modifier] = ACTIONS(8332), + [sym__dim_keyword] = ACTIONS(8332), + [sym__redim_keyword] = ACTIONS(8332), + [aux_sym_get_accessor_token1] = ACTIONS(8332), + [aux_sym_set_accessor_token1] = ACTIONS(8332), + [anon_sym_COMMA] = ACTIONS(8099), + [aux_sym_const_declaration_token1] = ACTIONS(8332), + [anon_sym_LPAREN] = ACTIONS(8334), + [aux_sym_as_type_clause_token2] = ACTIONS(8332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8332), + [aux_sym_visibility_token1] = ACTIONS(8332), + [aux_sym_visibility_token2] = ACTIONS(8332), + [aux_sym_elseif_fragment_token1] = ACTIONS(8332), + [aux_sym_else_fragment_token1] = ACTIONS(8332), + [aux_sym_select_statement_token1] = ACTIONS(8332), + [aux_sym__for_header_token1] = ACTIONS(8332), + [aux_sym_do_statement_token1] = ACTIONS(8332), + [aux_sym_do_condition_token1] = ACTIONS(8332), + [aux_sym_with_statement_token1] = ACTIONS(8332), + [aux_sym_exit_statement_token1] = ACTIONS(8332), + [sym_end_statement] = ACTIONS(8334), + [aux_sym_on_goto_statement_token1] = ACTIONS(8332), + [aux_sym_on_goto_statement_token2] = ACTIONS(8332), + [aux_sym_on_error_statement_token2] = ACTIONS(8332), + [sym__ambiguous_redim_statement] = ACTIONS(8334), + [aux_sym_erase_statement_token1] = ACTIONS(8332), + [aux_sym_open_statement_token1] = ACTIONS(8332), + [aux_sym_file_mode_token2] = ACTIONS(8332), + [aux_sym_file_access_token2] = ACTIONS(8332), + [aux_sym_file_lock_token2] = ACTIONS(8332), + [aux_sym_print_statement_token1] = ACTIONS(8332), + [anon_sym_PLUS] = ACTIONS(8334), + [anon_sym_DASH] = ACTIONS(8332), + [anon_sym_QMARK] = ACTIONS(8334), + [aux_sym_close_statement_token1] = ACTIONS(8332), + [aux_sym_put_statement_token1] = ACTIONS(8332), + [aux_sym_unlock_statement_token1] = ACTIONS(8332), + [aux_sym_seek_statement_token1] = ACTIONS(8332), + [sym_reset_statement] = ACTIONS(8332), + [aux_sym_raise_event_statement_token1] = ACTIONS(8332), + [sym_stop_statement] = ACTIONS(8332), + [sym_beep_statement] = ACTIONS(8332), + [aux_sym_unload_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token2] = ACTIONS(8332), + [aux_sym_def_type_statement_token3] = ACTIONS(8332), + [aux_sym_def_type_statement_token4] = ACTIONS(8332), + [aux_sym_def_type_statement_token5] = ACTIONS(8332), + [aux_sym_def_type_statement_token6] = ACTIONS(8332), + [aux_sym_def_type_statement_token7] = ACTIONS(8332), + [aux_sym_def_type_statement_token8] = ACTIONS(8332), + [aux_sym_def_type_statement_token9] = ACTIONS(8332), + [aux_sym_def_type_statement_token10] = ACTIONS(8332), + [aux_sym_def_type_statement_token11] = ACTIONS(8332), + [aux_sym_def_type_statement_token12] = ACTIONS(8332), + [aux_sym_def_type_statement_token13] = ACTIONS(8332), + [aux_sym_def_type_statement_token14] = ACTIONS(8332), + [aux_sym_call_statement_token1] = ACTIONS(8332), + [sym__ambiguous_call_statement] = ACTIONS(8332), + [aux_sym_addressof_expression_token1] = ACTIONS(8332), + [aux_sym_type_of_expression_token1] = ACTIONS(8332), + [aux_sym_unary_expression_token1] = ACTIONS(8332), + [sym_string_literal] = ACTIONS(8334), + [sym_number_literal] = ACTIONS(8334), + [aux_sym_boolean_literal_token1] = ACTIONS(8332), + [aux_sym_boolean_literal_token2] = ACTIONS(8332), + [sym_nothing_literal] = ACTIONS(8332), + [sym_null_literal] = ACTIONS(8332), + [sym_empty_literal] = ACTIONS(8332), + [sym_date_literal] = ACTIONS(8334), + [anon_sym_POUND] = ACTIONS(8332), + }, + [STATE(3545)] = { + [sym_identifier] = ACTIONS(6320), + [sym_newline] = ACTIONS(6322), + [anon_sym_COLON] = ACTIONS(6322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6320), + [aux_sym_frm_property_statement_token1] = ACTIONS(6320), + [anon_sym_DOT] = ACTIONS(6320), + [anon_sym_BANG] = ACTIONS(6322), + [aux_sym__attribute_identifier_token1] = ACTIONS(6320), + [aux_sym_option_statement_token3] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6320), + [aux_sym_preprocessor_const_token1] = ACTIONS(6320), + [sym_static_modifier] = ACTIONS(6320), + [sym__dim_keyword] = ACTIONS(6320), + [sym__redim_keyword] = ACTIONS(6320), + [aux_sym_get_accessor_token1] = ACTIONS(6320), + [aux_sym_set_accessor_token1] = ACTIONS(6320), + [aux_sym_const_declaration_token1] = ACTIONS(6320), + [anon_sym_LPAREN] = ACTIONS(6322), + [aux_sym_as_type_clause_token2] = ACTIONS(6320), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6320), + [aux_sym_visibility_token1] = ACTIONS(6320), + [aux_sym_visibility_token2] = ACTIONS(6320), + [aux_sym_elseif_fragment_token1] = ACTIONS(6320), + [aux_sym_else_fragment_token1] = ACTIONS(6320), + [aux_sym_select_statement_token1] = ACTIONS(6320), + [aux_sym__for_header_token1] = ACTIONS(6320), + [aux_sym_do_statement_token1] = ACTIONS(6320), + [aux_sym_do_statement_token2] = ACTIONS(6320), + [aux_sym_do_condition_token1] = ACTIONS(6320), + [aux_sym_with_statement_token1] = ACTIONS(6320), + [aux_sym_exit_statement_token1] = ACTIONS(6320), + [sym_end_statement] = ACTIONS(6322), + [aux_sym_on_goto_statement_token1] = ACTIONS(6320), + [aux_sym_on_goto_statement_token2] = ACTIONS(6320), + [aux_sym_on_error_statement_token2] = ACTIONS(6320), + [sym__ambiguous_redim_statement] = ACTIONS(6322), + [aux_sym_erase_statement_token1] = ACTIONS(6320), + [aux_sym_open_statement_token1] = ACTIONS(6320), + [aux_sym_file_mode_token2] = ACTIONS(6320), + [aux_sym_file_access_token2] = ACTIONS(6320), + [aux_sym_file_lock_token2] = ACTIONS(6320), + [aux_sym_print_statement_token1] = ACTIONS(6320), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_QMARK] = ACTIONS(6322), + [aux_sym_close_statement_token1] = ACTIONS(6320), + [aux_sym_put_statement_token1] = ACTIONS(6320), + [aux_sym_unlock_statement_token1] = ACTIONS(6320), + [aux_sym_seek_statement_token1] = ACTIONS(6320), + [sym_reset_statement] = ACTIONS(6320), + [aux_sym_raise_event_statement_token1] = ACTIONS(6320), + [sym_stop_statement] = ACTIONS(6320), + [sym_beep_statement] = ACTIONS(6320), + [aux_sym_unload_statement_token1] = ACTIONS(6320), + [aux_sym_def_type_statement_token1] = ACTIONS(6320), + [aux_sym_def_type_statement_token2] = ACTIONS(6320), + [aux_sym_def_type_statement_token3] = ACTIONS(6320), + [aux_sym_def_type_statement_token4] = ACTIONS(6320), + [aux_sym_def_type_statement_token5] = ACTIONS(6320), + [aux_sym_def_type_statement_token6] = ACTIONS(6320), + [aux_sym_def_type_statement_token7] = ACTIONS(6320), + [aux_sym_def_type_statement_token8] = ACTIONS(6320), + [aux_sym_def_type_statement_token9] = ACTIONS(6320), + [aux_sym_def_type_statement_token10] = ACTIONS(6320), + [aux_sym_def_type_statement_token11] = ACTIONS(6320), + [aux_sym_def_type_statement_token12] = ACTIONS(6320), + [aux_sym_def_type_statement_token13] = ACTIONS(6320), + [aux_sym_def_type_statement_token14] = ACTIONS(6320), + [aux_sym_call_statement_token1] = ACTIONS(6320), + [sym__ambiguous_call_statement] = ACTIONS(6320), + [aux_sym_addressof_expression_token1] = ACTIONS(6320), + [aux_sym_type_of_expression_token1] = ACTIONS(6320), + [aux_sym_unary_expression_token1] = ACTIONS(6320), + [sym_string_literal] = ACTIONS(6322), + [sym_number_literal] = ACTIONS(6322), + [aux_sym_boolean_literal_token1] = ACTIONS(6320), + [aux_sym_boolean_literal_token2] = ACTIONS(6320), + [sym_nothing_literal] = ACTIONS(6320), + [sym_null_literal] = ACTIONS(6320), + [sym_empty_literal] = ACTIONS(6320), + [sym_date_literal] = ACTIONS(6322), + [anon_sym_POUND] = ACTIONS(6320), + }, + [STATE(3546)] = { + [aux_sym_variable_declaration_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(8336), + [sym_newline] = ACTIONS(8338), + [anon_sym_COLON] = ACTIONS(8338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8336), + [aux_sym_frm_property_statement_token1] = ACTIONS(8336), + [anon_sym_DOT] = ACTIONS(8336), + [anon_sym_BANG] = ACTIONS(8338), + [aux_sym__attribute_identifier_token1] = ACTIONS(8336), + [aux_sym_option_statement_token3] = ACTIONS(8336), + [aux_sym_type_declaration_token1] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8336), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8336), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8336), + [aux_sym_enum_declaration_token1] = ACTIONS(8336), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8336), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8336), + [aux_sym_declare_function_statement_token1] = ACTIONS(8336), + [aux_sym_preprocessor_const_token1] = ACTIONS(8336), + [aux_sym__property_get_header_token1] = ACTIONS(8336), + [aux_sym_event_declaration_token1] = ACTIONS(8336), + [sym_static_modifier] = ACTIONS(8336), + [sym__dim_keyword] = ACTIONS(8336), + [sym__redim_keyword] = ACTIONS(8336), + [aux_sym_get_accessor_token1] = ACTIONS(8336), + [aux_sym_set_accessor_token1] = ACTIONS(8336), + [anon_sym_COMMA] = ACTIONS(8099), + [aux_sym_const_declaration_token1] = ACTIONS(8336), + [anon_sym_LPAREN] = ACTIONS(8338), + [aux_sym_as_type_clause_token2] = ACTIONS(8336), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8336), + [aux_sym_visibility_token1] = ACTIONS(8336), + [aux_sym_visibility_token2] = ACTIONS(8336), + [aux_sym_elseif_fragment_token1] = ACTIONS(8336), + [aux_sym_else_fragment_token1] = ACTIONS(8336), + [aux_sym_select_statement_token1] = ACTIONS(8336), + [aux_sym__for_header_token1] = ACTIONS(8336), + [aux_sym_do_statement_token1] = ACTIONS(8336), + [aux_sym_do_condition_token1] = ACTIONS(8336), + [aux_sym_with_statement_token1] = ACTIONS(8336), + [aux_sym_exit_statement_token1] = ACTIONS(8336), + [sym_end_statement] = ACTIONS(8338), + [aux_sym_on_goto_statement_token1] = ACTIONS(8336), + [aux_sym_on_goto_statement_token2] = ACTIONS(8336), + [aux_sym_on_error_statement_token2] = ACTIONS(8336), + [sym__ambiguous_redim_statement] = ACTIONS(8338), + [aux_sym_erase_statement_token1] = ACTIONS(8336), + [aux_sym_open_statement_token1] = ACTIONS(8336), + [aux_sym_file_mode_token2] = ACTIONS(8336), + [aux_sym_file_access_token2] = ACTIONS(8336), + [aux_sym_file_lock_token2] = ACTIONS(8336), + [aux_sym_print_statement_token1] = ACTIONS(8336), + [anon_sym_PLUS] = ACTIONS(8338), + [anon_sym_DASH] = ACTIONS(8336), + [anon_sym_QMARK] = ACTIONS(8338), + [aux_sym_close_statement_token1] = ACTIONS(8336), + [aux_sym_put_statement_token1] = ACTIONS(8336), + [aux_sym_unlock_statement_token1] = ACTIONS(8336), + [aux_sym_seek_statement_token1] = ACTIONS(8336), + [sym_reset_statement] = ACTIONS(8336), + [aux_sym_raise_event_statement_token1] = ACTIONS(8336), + [sym_stop_statement] = ACTIONS(8336), + [sym_beep_statement] = ACTIONS(8336), + [aux_sym_unload_statement_token1] = ACTIONS(8336), + [aux_sym_def_type_statement_token1] = ACTIONS(8336), + [aux_sym_def_type_statement_token2] = ACTIONS(8336), + [aux_sym_def_type_statement_token3] = ACTIONS(8336), + [aux_sym_def_type_statement_token4] = ACTIONS(8336), + [aux_sym_def_type_statement_token5] = ACTIONS(8336), + [aux_sym_def_type_statement_token6] = ACTIONS(8336), + [aux_sym_def_type_statement_token7] = ACTIONS(8336), + [aux_sym_def_type_statement_token8] = ACTIONS(8336), + [aux_sym_def_type_statement_token9] = ACTIONS(8336), + [aux_sym_def_type_statement_token10] = ACTIONS(8336), + [aux_sym_def_type_statement_token11] = ACTIONS(8336), + [aux_sym_def_type_statement_token12] = ACTIONS(8336), + [aux_sym_def_type_statement_token13] = ACTIONS(8336), + [aux_sym_def_type_statement_token14] = ACTIONS(8336), + [aux_sym_call_statement_token1] = ACTIONS(8336), + [sym__ambiguous_call_statement] = ACTIONS(8336), + [aux_sym_addressof_expression_token1] = ACTIONS(8336), + [aux_sym_type_of_expression_token1] = ACTIONS(8336), + [aux_sym_unary_expression_token1] = ACTIONS(8336), + [sym_string_literal] = ACTIONS(8338), + [sym_number_literal] = ACTIONS(8338), + [aux_sym_boolean_literal_token1] = ACTIONS(8336), + [aux_sym_boolean_literal_token2] = ACTIONS(8336), + [sym_nothing_literal] = ACTIONS(8336), + [sym_null_literal] = ACTIONS(8336), + [sym_empty_literal] = ACTIONS(8336), + [sym_date_literal] = ACTIONS(8338), + [anon_sym_POUND] = ACTIONS(8336), + }, + [STATE(3547)] = { + [aux_sym_redim_statement_repeat1] = STATE(3623), + [sym_identifier] = ACTIONS(8340), + [sym_newline] = ACTIONS(8342), + [anon_sym_COLON] = ACTIONS(8342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8340), + [aux_sym_frm_property_statement_token1] = ACTIONS(8340), + [anon_sym_DOT] = ACTIONS(8340), + [anon_sym_BANG] = ACTIONS(8342), + [aux_sym__attribute_identifier_token1] = ACTIONS(8340), + [aux_sym_option_statement_token3] = ACTIONS(8340), + [aux_sym_type_declaration_token1] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8340), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8340), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8340), + [aux_sym_enum_declaration_token1] = ACTIONS(8340), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8340), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8340), + [aux_sym_declare_function_statement_token1] = ACTIONS(8340), + [aux_sym_preprocessor_const_token1] = ACTIONS(8340), + [aux_sym__property_get_header_token1] = ACTIONS(8340), + [aux_sym_event_declaration_token1] = ACTIONS(8340), + [sym_static_modifier] = ACTIONS(8340), + [sym__dim_keyword] = ACTIONS(8340), + [sym__redim_keyword] = ACTIONS(8340), + [aux_sym_get_accessor_token1] = ACTIONS(8340), + [aux_sym_set_accessor_token1] = ACTIONS(8340), + [anon_sym_COMMA] = ACTIONS(8344), + [aux_sym_const_declaration_token1] = ACTIONS(8340), + [anon_sym_LPAREN] = ACTIONS(8342), + [aux_sym_as_type_clause_token2] = ACTIONS(8340), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8340), + [aux_sym_visibility_token1] = ACTIONS(8340), + [aux_sym_visibility_token2] = ACTIONS(8340), + [aux_sym_elseif_fragment_token1] = ACTIONS(8340), + [aux_sym_else_fragment_token1] = ACTIONS(8340), + [aux_sym_select_statement_token1] = ACTIONS(8340), + [aux_sym__for_header_token1] = ACTIONS(8340), + [aux_sym_do_statement_token1] = ACTIONS(8340), + [aux_sym_do_condition_token1] = ACTIONS(8340), + [aux_sym_with_statement_token1] = ACTIONS(8340), + [aux_sym_exit_statement_token1] = ACTIONS(8340), + [sym_end_statement] = ACTIONS(8342), + [aux_sym_on_goto_statement_token1] = ACTIONS(8340), + [aux_sym_on_goto_statement_token2] = ACTIONS(8340), + [aux_sym_on_error_statement_token2] = ACTIONS(8340), + [sym__ambiguous_redim_statement] = ACTIONS(8342), + [aux_sym_erase_statement_token1] = ACTIONS(8340), + [aux_sym_open_statement_token1] = ACTIONS(8340), + [aux_sym_file_mode_token2] = ACTIONS(8340), + [aux_sym_file_access_token2] = ACTIONS(8340), + [aux_sym_file_lock_token2] = ACTIONS(8340), + [aux_sym_print_statement_token1] = ACTIONS(8340), + [anon_sym_PLUS] = ACTIONS(8342), + [anon_sym_DASH] = ACTIONS(8340), + [anon_sym_QMARK] = ACTIONS(8342), + [aux_sym_close_statement_token1] = ACTIONS(8340), + [aux_sym_put_statement_token1] = ACTIONS(8340), + [aux_sym_unlock_statement_token1] = ACTIONS(8340), + [aux_sym_seek_statement_token1] = ACTIONS(8340), + [sym_reset_statement] = ACTIONS(8340), + [aux_sym_raise_event_statement_token1] = ACTIONS(8340), + [sym_stop_statement] = ACTIONS(8340), + [sym_beep_statement] = ACTIONS(8340), + [aux_sym_unload_statement_token1] = ACTIONS(8340), + [aux_sym_def_type_statement_token1] = ACTIONS(8340), + [aux_sym_def_type_statement_token2] = ACTIONS(8340), + [aux_sym_def_type_statement_token3] = ACTIONS(8340), + [aux_sym_def_type_statement_token4] = ACTIONS(8340), + [aux_sym_def_type_statement_token5] = ACTIONS(8340), + [aux_sym_def_type_statement_token6] = ACTIONS(8340), + [aux_sym_def_type_statement_token7] = ACTIONS(8340), + [aux_sym_def_type_statement_token8] = ACTIONS(8340), + [aux_sym_def_type_statement_token9] = ACTIONS(8340), + [aux_sym_def_type_statement_token10] = ACTIONS(8340), + [aux_sym_def_type_statement_token11] = ACTIONS(8340), + [aux_sym_def_type_statement_token12] = ACTIONS(8340), + [aux_sym_def_type_statement_token13] = ACTIONS(8340), + [aux_sym_def_type_statement_token14] = ACTIONS(8340), + [aux_sym_call_statement_token1] = ACTIONS(8340), + [sym__ambiguous_call_statement] = ACTIONS(8340), + [aux_sym_addressof_expression_token1] = ACTIONS(8340), + [aux_sym_type_of_expression_token1] = ACTIONS(8340), + [aux_sym_unary_expression_token1] = ACTIONS(8340), + [sym_string_literal] = ACTIONS(8342), + [sym_number_literal] = ACTIONS(8342), + [aux_sym_boolean_literal_token1] = ACTIONS(8340), + [aux_sym_boolean_literal_token2] = ACTIONS(8340), + [sym_nothing_literal] = ACTIONS(8340), + [sym_null_literal] = ACTIONS(8340), + [sym_empty_literal] = ACTIONS(8340), + [sym_date_literal] = ACTIONS(8342), + [anon_sym_POUND] = ACTIONS(8340), + }, + [STATE(3548)] = { + [sym_identifier] = ACTIONS(6629), + [sym_newline] = ACTIONS(6631), + [anon_sym_COLON] = ACTIONS(6631), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6629), + [aux_sym_frm_property_statement_token1] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6631), + [aux_sym__attribute_identifier_token1] = ACTIONS(6629), + [aux_sym_option_statement_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6629), + [aux_sym_preprocessor_const_token1] = ACTIONS(6629), + [sym_static_modifier] = ACTIONS(6629), + [sym__dim_keyword] = ACTIONS(6629), + [sym__redim_keyword] = ACTIONS(6629), + [aux_sym_get_accessor_token1] = ACTIONS(6629), + [aux_sym_set_accessor_token1] = ACTIONS(6629), + [aux_sym_const_declaration_token1] = ACTIONS(6629), + [anon_sym_LPAREN] = ACTIONS(6631), + [aux_sym_as_type_clause_token2] = ACTIONS(6629), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6629), + [aux_sym_visibility_token1] = ACTIONS(6629), + [aux_sym_visibility_token2] = ACTIONS(6629), + [aux_sym_elseif_fragment_token1] = ACTIONS(6629), + [aux_sym_else_fragment_token1] = ACTIONS(6629), + [aux_sym_select_statement_token1] = ACTIONS(6629), + [aux_sym__for_header_token1] = ACTIONS(6629), + [aux_sym_do_statement_token1] = ACTIONS(6629), + [aux_sym_do_condition_token1] = ACTIONS(6629), + [aux_sym_while_statement_token1] = ACTIONS(6629), + [aux_sym_with_statement_token1] = ACTIONS(6629), + [aux_sym_exit_statement_token1] = ACTIONS(6629), + [sym_end_statement] = ACTIONS(6631), + [aux_sym_on_goto_statement_token1] = ACTIONS(6629), + [aux_sym_on_goto_statement_token2] = ACTIONS(6629), + [aux_sym_on_error_statement_token2] = ACTIONS(6629), + [sym__ambiguous_redim_statement] = ACTIONS(6631), + [aux_sym_erase_statement_token1] = ACTIONS(6629), + [aux_sym_open_statement_token1] = ACTIONS(6629), + [aux_sym_file_mode_token2] = ACTIONS(6629), + [aux_sym_file_access_token2] = ACTIONS(6629), + [aux_sym_file_lock_token2] = ACTIONS(6629), + [aux_sym_print_statement_token1] = ACTIONS(6629), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5960), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5962), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5964), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5966), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5968), + [anon_sym_QMARK] = ACTIONS(6631), + [aux_sym_close_statement_token1] = ACTIONS(6629), + [aux_sym_put_statement_token1] = ACTIONS(6629), + [aux_sym_unlock_statement_token1] = ACTIONS(6629), + [aux_sym_seek_statement_token1] = ACTIONS(6629), + [sym_reset_statement] = ACTIONS(6629), + [aux_sym_raise_event_statement_token1] = ACTIONS(6629), + [sym_stop_statement] = ACTIONS(6629), + [sym_beep_statement] = ACTIONS(6629), + [aux_sym_unload_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token2] = ACTIONS(6629), + [aux_sym_def_type_statement_token3] = ACTIONS(6629), + [aux_sym_def_type_statement_token4] = ACTIONS(6629), + [aux_sym_def_type_statement_token5] = ACTIONS(6629), + [aux_sym_def_type_statement_token6] = ACTIONS(6629), + [aux_sym_def_type_statement_token7] = ACTIONS(6629), + [aux_sym_def_type_statement_token8] = ACTIONS(6629), + [aux_sym_def_type_statement_token9] = ACTIONS(6629), + [aux_sym_def_type_statement_token10] = ACTIONS(6629), + [aux_sym_def_type_statement_token11] = ACTIONS(6629), + [aux_sym_def_type_statement_token12] = ACTIONS(6629), + [aux_sym_def_type_statement_token13] = ACTIONS(6629), + [aux_sym_def_type_statement_token14] = ACTIONS(6629), + [aux_sym_call_statement_token1] = ACTIONS(6629), + [sym__ambiguous_call_statement] = ACTIONS(6629), + [aux_sym_addressof_expression_token1] = ACTIONS(6629), + [aux_sym_type_of_expression_token1] = ACTIONS(6629), + [aux_sym_unary_expression_token1] = ACTIONS(6629), + [sym_string_literal] = ACTIONS(6631), + [sym_number_literal] = ACTIONS(6631), + [aux_sym_boolean_literal_token1] = ACTIONS(6629), + [aux_sym_boolean_literal_token2] = ACTIONS(6629), + [sym_nothing_literal] = ACTIONS(6629), + [sym_null_literal] = ACTIONS(6629), + [sym_empty_literal] = ACTIONS(6629), + [sym_date_literal] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6629), + }, + [STATE(3549)] = { + [aux_sym_const_declaration_repeat1] = STATE(3465), + [sym_identifier] = ACTIONS(8346), + [sym_newline] = ACTIONS(8348), + [anon_sym_COLON] = ACTIONS(8348), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8346), + [aux_sym_frm_property_statement_token1] = ACTIONS(8346), + [anon_sym_DOT] = ACTIONS(8346), + [anon_sym_BANG] = ACTIONS(8348), + [aux_sym__attribute_identifier_token1] = ACTIONS(8346), + [aux_sym_option_statement_token3] = ACTIONS(8346), + [aux_sym_type_declaration_token1] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8346), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8346), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8346), + [aux_sym_enum_declaration_token1] = ACTIONS(8346), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8346), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8346), + [aux_sym_declare_function_statement_token1] = ACTIONS(8346), + [aux_sym_preprocessor_const_token1] = ACTIONS(8346), + [aux_sym__property_get_header_token1] = ACTIONS(8346), + [aux_sym_event_declaration_token1] = ACTIONS(8346), + [sym_static_modifier] = ACTIONS(8346), + [sym__dim_keyword] = ACTIONS(8346), + [sym__redim_keyword] = ACTIONS(8346), + [aux_sym_get_accessor_token1] = ACTIONS(8346), + [aux_sym_set_accessor_token1] = ACTIONS(8346), + [anon_sym_COMMA] = ACTIONS(8178), + [aux_sym_const_declaration_token1] = ACTIONS(8346), + [anon_sym_LPAREN] = ACTIONS(8348), + [aux_sym_as_type_clause_token2] = ACTIONS(8346), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8346), + [aux_sym_visibility_token1] = ACTIONS(8346), + [aux_sym_visibility_token2] = ACTIONS(8346), + [aux_sym_elseif_fragment_token1] = ACTIONS(8346), + [aux_sym_else_fragment_token1] = ACTIONS(8346), + [aux_sym_select_statement_token1] = ACTIONS(8346), + [aux_sym__for_header_token1] = ACTIONS(8346), + [aux_sym_do_statement_token1] = ACTIONS(8346), + [aux_sym_do_condition_token1] = ACTIONS(8346), + [aux_sym_with_statement_token1] = ACTIONS(8346), + [aux_sym_exit_statement_token1] = ACTIONS(8346), + [sym_end_statement] = ACTIONS(8348), + [aux_sym_on_goto_statement_token1] = ACTIONS(8346), + [aux_sym_on_goto_statement_token2] = ACTIONS(8346), + [aux_sym_on_error_statement_token2] = ACTIONS(8346), + [sym__ambiguous_redim_statement] = ACTIONS(8348), + [aux_sym_erase_statement_token1] = ACTIONS(8346), + [aux_sym_open_statement_token1] = ACTIONS(8346), + [aux_sym_file_mode_token2] = ACTIONS(8346), + [aux_sym_file_access_token2] = ACTIONS(8346), + [aux_sym_file_lock_token2] = ACTIONS(8346), + [aux_sym_print_statement_token1] = ACTIONS(8346), + [anon_sym_PLUS] = ACTIONS(8348), + [anon_sym_DASH] = ACTIONS(8346), + [anon_sym_QMARK] = ACTIONS(8348), + [aux_sym_close_statement_token1] = ACTIONS(8346), + [aux_sym_put_statement_token1] = ACTIONS(8346), + [aux_sym_unlock_statement_token1] = ACTIONS(8346), + [aux_sym_seek_statement_token1] = ACTIONS(8346), + [sym_reset_statement] = ACTIONS(8346), + [aux_sym_raise_event_statement_token1] = ACTIONS(8346), + [sym_stop_statement] = ACTIONS(8346), + [sym_beep_statement] = ACTIONS(8346), + [aux_sym_unload_statement_token1] = ACTIONS(8346), + [aux_sym_def_type_statement_token1] = ACTIONS(8346), + [aux_sym_def_type_statement_token2] = ACTIONS(8346), + [aux_sym_def_type_statement_token3] = ACTIONS(8346), + [aux_sym_def_type_statement_token4] = ACTIONS(8346), + [aux_sym_def_type_statement_token5] = ACTIONS(8346), + [aux_sym_def_type_statement_token6] = ACTIONS(8346), + [aux_sym_def_type_statement_token7] = ACTIONS(8346), + [aux_sym_def_type_statement_token8] = ACTIONS(8346), + [aux_sym_def_type_statement_token9] = ACTIONS(8346), + [aux_sym_def_type_statement_token10] = ACTIONS(8346), + [aux_sym_def_type_statement_token11] = ACTIONS(8346), + [aux_sym_def_type_statement_token12] = ACTIONS(8346), + [aux_sym_def_type_statement_token13] = ACTIONS(8346), + [aux_sym_def_type_statement_token14] = ACTIONS(8346), + [aux_sym_call_statement_token1] = ACTIONS(8346), + [sym__ambiguous_call_statement] = ACTIONS(8346), + [aux_sym_addressof_expression_token1] = ACTIONS(8346), + [aux_sym_type_of_expression_token1] = ACTIONS(8346), + [aux_sym_unary_expression_token1] = ACTIONS(8346), + [sym_string_literal] = ACTIONS(8348), + [sym_number_literal] = ACTIONS(8348), + [aux_sym_boolean_literal_token1] = ACTIONS(8346), + [aux_sym_boolean_literal_token2] = ACTIONS(8346), + [sym_nothing_literal] = ACTIONS(8346), + [sym_null_literal] = ACTIONS(8346), + [sym_empty_literal] = ACTIONS(8346), + [sym_date_literal] = ACTIONS(8348), + [anon_sym_POUND] = ACTIONS(8346), + }, + [STATE(3550)] = { + [aux_sym_const_declaration_repeat1] = STATE(3550), + [sym_identifier] = ACTIONS(8350), + [sym_newline] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8350), + [aux_sym_frm_property_statement_token1] = ACTIONS(8350), + [anon_sym_DOT] = ACTIONS(8350), + [anon_sym_BANG] = ACTIONS(8352), + [aux_sym__attribute_identifier_token1] = ACTIONS(8350), + [aux_sym_option_statement_token3] = ACTIONS(8350), + [aux_sym_type_declaration_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8350), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8350), + [aux_sym_enum_declaration_token1] = ACTIONS(8350), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8350), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8350), + [aux_sym_declare_function_statement_token1] = ACTIONS(8350), + [aux_sym_preprocessor_const_token1] = ACTIONS(8350), + [aux_sym__property_get_header_token1] = ACTIONS(8350), + [aux_sym_event_declaration_token1] = ACTIONS(8350), + [sym_static_modifier] = ACTIONS(8350), + [sym__dim_keyword] = ACTIONS(8350), + [sym__redim_keyword] = ACTIONS(8350), + [aux_sym_get_accessor_token1] = ACTIONS(8350), + [aux_sym_set_accessor_token1] = ACTIONS(8350), + [anon_sym_COMMA] = ACTIONS(8354), + [aux_sym_const_declaration_token1] = ACTIONS(8350), + [anon_sym_LPAREN] = ACTIONS(8352), + [aux_sym_as_type_clause_token2] = ACTIONS(8350), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8350), + [aux_sym_visibility_token1] = ACTIONS(8350), + [aux_sym_visibility_token2] = ACTIONS(8350), + [aux_sym_elseif_fragment_token1] = ACTIONS(8350), + [aux_sym_else_fragment_token1] = ACTIONS(8350), + [aux_sym_select_statement_token1] = ACTIONS(8350), + [aux_sym__for_header_token1] = ACTIONS(8350), + [aux_sym_do_statement_token1] = ACTIONS(8350), + [aux_sym_do_condition_token1] = ACTIONS(8350), + [aux_sym_with_statement_token1] = ACTIONS(8350), + [aux_sym_exit_statement_token1] = ACTIONS(8350), + [sym_end_statement] = ACTIONS(8352), + [aux_sym_on_goto_statement_token1] = ACTIONS(8350), + [aux_sym_on_goto_statement_token2] = ACTIONS(8350), + [aux_sym_on_error_statement_token2] = ACTIONS(8350), + [sym__ambiguous_redim_statement] = ACTIONS(8352), + [aux_sym_erase_statement_token1] = ACTIONS(8350), + [aux_sym_open_statement_token1] = ACTIONS(8350), + [aux_sym_file_mode_token2] = ACTIONS(8350), + [aux_sym_file_access_token2] = ACTIONS(8350), + [aux_sym_file_lock_token2] = ACTIONS(8350), + [aux_sym_print_statement_token1] = ACTIONS(8350), + [anon_sym_PLUS] = ACTIONS(8352), + [anon_sym_DASH] = ACTIONS(8350), + [anon_sym_QMARK] = ACTIONS(8352), + [aux_sym_close_statement_token1] = ACTIONS(8350), + [aux_sym_put_statement_token1] = ACTIONS(8350), + [aux_sym_unlock_statement_token1] = ACTIONS(8350), + [aux_sym_seek_statement_token1] = ACTIONS(8350), + [sym_reset_statement] = ACTIONS(8350), + [aux_sym_raise_event_statement_token1] = ACTIONS(8350), + [sym_stop_statement] = ACTIONS(8350), + [sym_beep_statement] = ACTIONS(8350), + [aux_sym_unload_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token2] = ACTIONS(8350), + [aux_sym_def_type_statement_token3] = ACTIONS(8350), + [aux_sym_def_type_statement_token4] = ACTIONS(8350), + [aux_sym_def_type_statement_token5] = ACTIONS(8350), + [aux_sym_def_type_statement_token6] = ACTIONS(8350), + [aux_sym_def_type_statement_token7] = ACTIONS(8350), + [aux_sym_def_type_statement_token8] = ACTIONS(8350), + [aux_sym_def_type_statement_token9] = ACTIONS(8350), + [aux_sym_def_type_statement_token10] = ACTIONS(8350), + [aux_sym_def_type_statement_token11] = ACTIONS(8350), + [aux_sym_def_type_statement_token12] = ACTIONS(8350), + [aux_sym_def_type_statement_token13] = ACTIONS(8350), + [aux_sym_def_type_statement_token14] = ACTIONS(8350), + [aux_sym_call_statement_token1] = ACTIONS(8350), + [sym__ambiguous_call_statement] = ACTIONS(8350), + [aux_sym_addressof_expression_token1] = ACTIONS(8350), + [aux_sym_type_of_expression_token1] = ACTIONS(8350), + [aux_sym_unary_expression_token1] = ACTIONS(8350), + [sym_string_literal] = ACTIONS(8352), + [sym_number_literal] = ACTIONS(8352), + [aux_sym_boolean_literal_token1] = ACTIONS(8350), + [aux_sym_boolean_literal_token2] = ACTIONS(8350), + [sym_nothing_literal] = ACTIONS(8350), + [sym_null_literal] = ACTIONS(8350), + [sym_empty_literal] = ACTIONS(8350), + [sym_date_literal] = ACTIONS(8352), + [anon_sym_POUND] = ACTIONS(8350), + }, + [STATE(3551)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4621), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(3552)] = { + [aux_sym_def_type_statement_repeat1] = STATE(3552), + [sym_identifier] = ACTIONS(8357), + [sym_newline] = ACTIONS(8359), + [anon_sym_COLON] = ACTIONS(8359), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8357), + [aux_sym_frm_property_statement_token1] = ACTIONS(8357), + [anon_sym_DOT] = ACTIONS(8357), + [anon_sym_BANG] = ACTIONS(8359), + [aux_sym__attribute_identifier_token1] = ACTIONS(8357), + [aux_sym_option_statement_token3] = ACTIONS(8357), + [aux_sym_type_declaration_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8357), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8357), + [aux_sym_enum_declaration_token1] = ACTIONS(8357), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8357), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8357), + [aux_sym_declare_function_statement_token1] = ACTIONS(8357), + [aux_sym_preprocessor_const_token1] = ACTIONS(8357), + [aux_sym__property_get_header_token1] = ACTIONS(8357), + [aux_sym_event_declaration_token1] = ACTIONS(8357), + [sym_static_modifier] = ACTIONS(8357), + [sym__dim_keyword] = ACTIONS(8357), + [sym__redim_keyword] = ACTIONS(8357), + [aux_sym_get_accessor_token1] = ACTIONS(8357), + [aux_sym_set_accessor_token1] = ACTIONS(8357), + [anon_sym_COMMA] = ACTIONS(8361), + [aux_sym_const_declaration_token1] = ACTIONS(8357), + [anon_sym_LPAREN] = ACTIONS(8359), + [aux_sym_as_type_clause_token2] = ACTIONS(8357), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8357), + [aux_sym_visibility_token1] = ACTIONS(8357), + [aux_sym_visibility_token2] = ACTIONS(8357), + [aux_sym_elseif_fragment_token1] = ACTIONS(8357), + [aux_sym_else_fragment_token1] = ACTIONS(8357), + [aux_sym_select_statement_token1] = ACTIONS(8357), + [aux_sym__for_header_token1] = ACTIONS(8357), + [aux_sym_do_statement_token1] = ACTIONS(8357), + [aux_sym_do_condition_token1] = ACTIONS(8357), + [aux_sym_with_statement_token1] = ACTIONS(8357), + [aux_sym_exit_statement_token1] = ACTIONS(8357), + [sym_end_statement] = ACTIONS(8359), + [aux_sym_on_goto_statement_token1] = ACTIONS(8357), + [aux_sym_on_goto_statement_token2] = ACTIONS(8357), + [aux_sym_on_error_statement_token2] = ACTIONS(8357), + [sym__ambiguous_redim_statement] = ACTIONS(8359), + [aux_sym_erase_statement_token1] = ACTIONS(8357), + [aux_sym_open_statement_token1] = ACTIONS(8357), + [aux_sym_file_mode_token2] = ACTIONS(8357), + [aux_sym_file_access_token2] = ACTIONS(8357), + [aux_sym_file_lock_token2] = ACTIONS(8357), + [aux_sym_print_statement_token1] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_QMARK] = ACTIONS(8359), + [aux_sym_close_statement_token1] = ACTIONS(8357), + [aux_sym_put_statement_token1] = ACTIONS(8357), + [aux_sym_unlock_statement_token1] = ACTIONS(8357), + [aux_sym_seek_statement_token1] = ACTIONS(8357), + [sym_reset_statement] = ACTIONS(8357), + [aux_sym_raise_event_statement_token1] = ACTIONS(8357), + [sym_stop_statement] = ACTIONS(8357), + [sym_beep_statement] = ACTIONS(8357), + [aux_sym_unload_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token2] = ACTIONS(8357), + [aux_sym_def_type_statement_token3] = ACTIONS(8357), + [aux_sym_def_type_statement_token4] = ACTIONS(8357), + [aux_sym_def_type_statement_token5] = ACTIONS(8357), + [aux_sym_def_type_statement_token6] = ACTIONS(8357), + [aux_sym_def_type_statement_token7] = ACTIONS(8357), + [aux_sym_def_type_statement_token8] = ACTIONS(8357), + [aux_sym_def_type_statement_token9] = ACTIONS(8357), + [aux_sym_def_type_statement_token10] = ACTIONS(8357), + [aux_sym_def_type_statement_token11] = ACTIONS(8357), + [aux_sym_def_type_statement_token12] = ACTIONS(8357), + [aux_sym_def_type_statement_token13] = ACTIONS(8357), + [aux_sym_def_type_statement_token14] = ACTIONS(8357), + [aux_sym_call_statement_token1] = ACTIONS(8357), + [sym__ambiguous_call_statement] = ACTIONS(8357), + [aux_sym_addressof_expression_token1] = ACTIONS(8357), + [aux_sym_type_of_expression_token1] = ACTIONS(8357), + [aux_sym_unary_expression_token1] = ACTIONS(8357), + [sym_string_literal] = ACTIONS(8359), + [sym_number_literal] = ACTIONS(8359), + [aux_sym_boolean_literal_token1] = ACTIONS(8357), + [aux_sym_boolean_literal_token2] = ACTIONS(8357), + [sym_nothing_literal] = ACTIONS(8357), + [sym_null_literal] = ACTIONS(8357), + [sym_empty_literal] = ACTIONS(8357), + [sym_date_literal] = ACTIONS(8359), + [anon_sym_POUND] = ACTIONS(8357), + }, + [STATE(3553)] = { + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [anon_sym_COLON] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym__attribute_identifier_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [sym__redim_keyword] = ACTIONS(4647), + [aux_sym_get_accessor_token1] = ACTIONS(4647), + [aux_sym_set_accessor_token1] = ACTIONS(4647), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [aux_sym_as_type_clause_token2] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(8105), + [aux_sym_array_bound_token1] = ACTIONS(4647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4647), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_elseif_fragment_token1] = ACTIONS(4647), + [aux_sym_else_fragment_token1] = ACTIONS(4647), + [aux_sym_select_statement_token1] = ACTIONS(4647), + [aux_sym__for_header_token1] = ACTIONS(4647), + [aux_sym_do_statement_token1] = ACTIONS(4647), + [aux_sym_do_condition_token1] = ACTIONS(4647), + [aux_sym_with_statement_token1] = ACTIONS(4647), + [aux_sym_exit_statement_token1] = ACTIONS(4647), + [sym_end_statement] = ACTIONS(4649), + [aux_sym_on_goto_statement_token1] = ACTIONS(4647), + [aux_sym_on_goto_statement_token2] = ACTIONS(4647), + [aux_sym_on_error_statement_token2] = ACTIONS(4647), + [sym__ambiguous_redim_statement] = ACTIONS(4649), + [aux_sym_erase_statement_token1] = ACTIONS(4647), + [aux_sym_open_statement_token1] = ACTIONS(4647), + [aux_sym_file_mode_token2] = ACTIONS(4647), + [aux_sym_file_access_token2] = ACTIONS(4647), + [aux_sym_file_lock_token2] = ACTIONS(4647), + [aux_sym_print_statement_token1] = ACTIONS(4647), + [anon_sym_CARET] = ACTIONS(8107), + [anon_sym_SLASH] = ACTIONS(8105), + [anon_sym_BSLASH] = ACTIONS(8116), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8118), + [anon_sym_PLUS] = ACTIONS(8128), + [anon_sym_DASH] = ACTIONS(8130), + [anon_sym_AMP] = ACTIONS(8132), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [anon_sym_QMARK] = ACTIONS(4649), + [aux_sym_close_statement_token1] = ACTIONS(4647), + [aux_sym_put_statement_token1] = ACTIONS(4647), + [aux_sym_unlock_statement_token1] = ACTIONS(4647), + [aux_sym_seek_statement_token1] = ACTIONS(4647), + [sym_reset_statement] = ACTIONS(4647), + [aux_sym_raise_event_statement_token1] = ACTIONS(4647), + [sym_stop_statement] = ACTIONS(4647), + [sym_beep_statement] = ACTIONS(4647), + [aux_sym_unload_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_call_statement_token1] = ACTIONS(4647), + [sym__ambiguous_call_statement] = ACTIONS(4647), + [aux_sym_addressof_expression_token1] = ACTIONS(4647), + [aux_sym_type_of_expression_token1] = ACTIONS(4647), + [aux_sym_unary_expression_token1] = ACTIONS(4647), + [sym_string_literal] = ACTIONS(4649), + [sym_number_literal] = ACTIONS(4649), + [aux_sym_boolean_literal_token1] = ACTIONS(4647), + [aux_sym_boolean_literal_token2] = ACTIONS(4647), + [sym_nothing_literal] = ACTIONS(4647), + [sym_null_literal] = ACTIONS(4647), + [sym_empty_literal] = ACTIONS(4647), + [sym_date_literal] = ACTIONS(4649), + [anon_sym_POUND] = ACTIONS(4647), + }, + [STATE(3554)] = { + [sym_as_type_clause] = STATE(4085), + [sym_identifier] = ACTIONS(8364), + [sym_newline] = ACTIONS(8366), + [anon_sym_COLON] = ACTIONS(8366), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8364), + [aux_sym_frm_property_statement_token1] = ACTIONS(8364), + [anon_sym_DOT] = ACTIONS(8364), + [anon_sym_BANG] = ACTIONS(8366), + [aux_sym__attribute_identifier_token1] = ACTIONS(8364), + [aux_sym_option_statement_token3] = ACTIONS(8364), + [aux_sym_type_declaration_token1] = ACTIONS(8364), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8364), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8364), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8364), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8364), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8364), + [aux_sym_enum_declaration_token1] = ACTIONS(8364), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8364), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8364), + [aux_sym_declare_function_statement_token1] = ACTIONS(8364), + [aux_sym_preprocessor_const_token1] = ACTIONS(8364), + [aux_sym__property_get_header_token1] = ACTIONS(8364), + [aux_sym_event_declaration_token1] = ACTIONS(8364), + [sym_static_modifier] = ACTIONS(8364), + [sym__dim_keyword] = ACTIONS(8364), + [sym__redim_keyword] = ACTIONS(8364), + [aux_sym_get_accessor_token1] = ACTIONS(8364), + [aux_sym_set_accessor_token1] = ACTIONS(8364), + [aux_sym_const_declaration_token1] = ACTIONS(8364), + [anon_sym_LPAREN] = ACTIONS(8366), + [aux_sym_as_type_clause_token1] = ACTIONS(7428), + [aux_sym_as_type_clause_token2] = ACTIONS(8364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8364), + [aux_sym_visibility_token1] = ACTIONS(8364), + [aux_sym_visibility_token2] = ACTIONS(8364), + [aux_sym_elseif_fragment_token1] = ACTIONS(8364), + [aux_sym_else_fragment_token1] = ACTIONS(8364), + [aux_sym_select_statement_token1] = ACTIONS(8364), + [aux_sym__for_header_token1] = ACTIONS(8364), + [aux_sym_do_statement_token1] = ACTIONS(8364), + [aux_sym_do_condition_token1] = ACTIONS(8364), + [aux_sym_with_statement_token1] = ACTIONS(8364), + [aux_sym_exit_statement_token1] = ACTIONS(8364), + [sym_end_statement] = ACTIONS(8366), + [aux_sym_on_goto_statement_token1] = ACTIONS(8364), + [aux_sym_on_goto_statement_token2] = ACTIONS(8364), + [aux_sym_on_error_statement_token2] = ACTIONS(8364), + [sym__ambiguous_redim_statement] = ACTIONS(8366), + [aux_sym_erase_statement_token1] = ACTIONS(8364), + [aux_sym_open_statement_token1] = ACTIONS(8364), + [aux_sym_file_mode_token2] = ACTIONS(8364), + [aux_sym_file_access_token2] = ACTIONS(8364), + [aux_sym_file_lock_token2] = ACTIONS(8364), + [aux_sym_print_statement_token1] = ACTIONS(8364), + [anon_sym_PLUS] = ACTIONS(8366), + [anon_sym_DASH] = ACTIONS(8364), + [anon_sym_QMARK] = ACTIONS(8366), + [aux_sym_close_statement_token1] = ACTIONS(8364), + [aux_sym_put_statement_token1] = ACTIONS(8364), + [aux_sym_unlock_statement_token1] = ACTIONS(8364), + [aux_sym_seek_statement_token1] = ACTIONS(8364), + [sym_reset_statement] = ACTIONS(8364), + [aux_sym_raise_event_statement_token1] = ACTIONS(8364), + [sym_stop_statement] = ACTIONS(8364), + [sym_beep_statement] = ACTIONS(8364), + [aux_sym_unload_statement_token1] = ACTIONS(8364), + [aux_sym_def_type_statement_token1] = ACTIONS(8364), + [aux_sym_def_type_statement_token2] = ACTIONS(8364), + [aux_sym_def_type_statement_token3] = ACTIONS(8364), + [aux_sym_def_type_statement_token4] = ACTIONS(8364), + [aux_sym_def_type_statement_token5] = ACTIONS(8364), + [aux_sym_def_type_statement_token6] = ACTIONS(8364), + [aux_sym_def_type_statement_token7] = ACTIONS(8364), + [aux_sym_def_type_statement_token8] = ACTIONS(8364), + [aux_sym_def_type_statement_token9] = ACTIONS(8364), + [aux_sym_def_type_statement_token10] = ACTIONS(8364), + [aux_sym_def_type_statement_token11] = ACTIONS(8364), + [aux_sym_def_type_statement_token12] = ACTIONS(8364), + [aux_sym_def_type_statement_token13] = ACTIONS(8364), + [aux_sym_def_type_statement_token14] = ACTIONS(8364), + [aux_sym_call_statement_token1] = ACTIONS(8364), + [sym__ambiguous_call_statement] = ACTIONS(8364), + [aux_sym_addressof_expression_token1] = ACTIONS(8364), + [aux_sym_type_of_expression_token1] = ACTIONS(8364), + [aux_sym_unary_expression_token1] = ACTIONS(8364), + [sym_string_literal] = ACTIONS(8366), + [sym_number_literal] = ACTIONS(8366), + [aux_sym_boolean_literal_token1] = ACTIONS(8364), + [aux_sym_boolean_literal_token2] = ACTIONS(8364), + [sym_nothing_literal] = ACTIONS(8364), + [sym_null_literal] = ACTIONS(8364), + [sym_empty_literal] = ACTIONS(8364), + [sym_date_literal] = ACTIONS(8366), + [anon_sym_POUND] = ACTIONS(8364), + }, + [STATE(3555)] = { + [sym_identifier] = ACTIONS(6320), + [sym_newline] = ACTIONS(6322), + [anon_sym_COLON] = ACTIONS(6322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6320), + [aux_sym_frm_property_statement_token1] = ACTIONS(6320), + [anon_sym_DOT] = ACTIONS(6320), + [anon_sym_BANG] = ACTIONS(6322), + [aux_sym__attribute_identifier_token1] = ACTIONS(6320), + [aux_sym_option_statement_token3] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6320), + [aux_sym_preprocessor_const_token1] = ACTIONS(6320), + [sym_static_modifier] = ACTIONS(6320), + [sym__dim_keyword] = ACTIONS(6320), + [sym__redim_keyword] = ACTIONS(6320), + [aux_sym_get_accessor_token1] = ACTIONS(6320), + [aux_sym_set_accessor_token1] = ACTIONS(6320), + [aux_sym_const_declaration_token1] = ACTIONS(6320), + [anon_sym_LPAREN] = ACTIONS(6322), + [aux_sym_as_type_clause_token2] = ACTIONS(6320), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6320), + [aux_sym_visibility_token1] = ACTIONS(6320), + [aux_sym_visibility_token2] = ACTIONS(6320), + [aux_sym_elseif_fragment_token1] = ACTIONS(6320), + [aux_sym_else_fragment_token1] = ACTIONS(6320), + [aux_sym_select_statement_token1] = ACTIONS(6320), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6320), + [aux_sym__for_header_token1] = ACTIONS(6320), + [aux_sym_do_statement_token1] = ACTIONS(6320), + [aux_sym_do_condition_token1] = ACTIONS(6320), + [aux_sym_with_statement_token1] = ACTIONS(6320), + [aux_sym_exit_statement_token1] = ACTIONS(6320), + [sym_end_statement] = ACTIONS(6322), + [aux_sym_on_goto_statement_token1] = ACTIONS(6320), + [aux_sym_on_goto_statement_token2] = ACTIONS(6320), + [aux_sym_on_error_statement_token2] = ACTIONS(6320), + [sym__ambiguous_redim_statement] = ACTIONS(6322), + [aux_sym_erase_statement_token1] = ACTIONS(6320), + [aux_sym_open_statement_token1] = ACTIONS(6320), + [aux_sym_file_mode_token2] = ACTIONS(6320), + [aux_sym_file_access_token2] = ACTIONS(6320), + [aux_sym_file_lock_token2] = ACTIONS(6320), + [aux_sym_print_statement_token1] = ACTIONS(6320), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(6322), + [aux_sym_close_statement_token1] = ACTIONS(6320), + [aux_sym_put_statement_token1] = ACTIONS(6320), + [aux_sym_unlock_statement_token1] = ACTIONS(6320), + [aux_sym_seek_statement_token1] = ACTIONS(6320), + [sym_reset_statement] = ACTIONS(6320), + [aux_sym_raise_event_statement_token1] = ACTIONS(6320), + [sym_stop_statement] = ACTIONS(6320), + [sym_beep_statement] = ACTIONS(6320), + [aux_sym_unload_statement_token1] = ACTIONS(6320), + [aux_sym_def_type_statement_token1] = ACTIONS(6320), + [aux_sym_def_type_statement_token2] = ACTIONS(6320), + [aux_sym_def_type_statement_token3] = ACTIONS(6320), + [aux_sym_def_type_statement_token4] = ACTIONS(6320), + [aux_sym_def_type_statement_token5] = ACTIONS(6320), + [aux_sym_def_type_statement_token6] = ACTIONS(6320), + [aux_sym_def_type_statement_token7] = ACTIONS(6320), + [aux_sym_def_type_statement_token8] = ACTIONS(6320), + [aux_sym_def_type_statement_token9] = ACTIONS(6320), + [aux_sym_def_type_statement_token10] = ACTIONS(6320), + [aux_sym_def_type_statement_token11] = ACTIONS(6320), + [aux_sym_def_type_statement_token12] = ACTIONS(6320), + [aux_sym_def_type_statement_token13] = ACTIONS(6320), + [aux_sym_def_type_statement_token14] = ACTIONS(6320), + [aux_sym_call_statement_token1] = ACTIONS(6320), + [sym__ambiguous_call_statement] = ACTIONS(6320), + [aux_sym_addressof_expression_token1] = ACTIONS(6320), + [aux_sym_type_of_expression_token1] = ACTIONS(6320), + [aux_sym_unary_expression_token1] = ACTIONS(6320), + [sym_string_literal] = ACTIONS(6322), + [sym_number_literal] = ACTIONS(6322), + [aux_sym_boolean_literal_token1] = ACTIONS(6320), + [aux_sym_boolean_literal_token2] = ACTIONS(6320), + [sym_nothing_literal] = ACTIONS(6320), + [sym_null_literal] = ACTIONS(6320), + [sym_empty_literal] = ACTIONS(6320), + [sym_date_literal] = ACTIONS(6322), + [anon_sym_POUND] = ACTIONS(6320), + }, + [STATE(3556)] = { + [aux_sym_redim_statement_repeat1] = STATE(3690), + [sym_identifier] = ACTIONS(8368), + [sym_newline] = ACTIONS(8370), + [anon_sym_COLON] = ACTIONS(8370), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8368), + [aux_sym_frm_property_statement_token1] = ACTIONS(8368), + [anon_sym_DOT] = ACTIONS(8368), + [anon_sym_BANG] = ACTIONS(8370), + [aux_sym__attribute_identifier_token1] = ACTIONS(8368), + [aux_sym_option_statement_token3] = ACTIONS(8368), + [aux_sym_type_declaration_token1] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8368), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8368), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8368), + [aux_sym_enum_declaration_token1] = ACTIONS(8368), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8368), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8368), + [aux_sym_declare_function_statement_token1] = ACTIONS(8368), + [aux_sym_preprocessor_const_token1] = ACTIONS(8368), + [aux_sym__property_get_header_token1] = ACTIONS(8368), + [aux_sym_event_declaration_token1] = ACTIONS(8368), + [sym_static_modifier] = ACTIONS(8368), + [sym__dim_keyword] = ACTIONS(8368), + [sym__redim_keyword] = ACTIONS(8368), + [aux_sym_get_accessor_token1] = ACTIONS(8368), + [aux_sym_set_accessor_token1] = ACTIONS(8368), + [anon_sym_COMMA] = ACTIONS(8344), + [aux_sym_const_declaration_token1] = ACTIONS(8368), + [anon_sym_LPAREN] = ACTIONS(8370), + [aux_sym_as_type_clause_token2] = ACTIONS(8368), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8368), + [aux_sym_visibility_token1] = ACTIONS(8368), + [aux_sym_visibility_token2] = ACTIONS(8368), + [aux_sym_elseif_fragment_token1] = ACTIONS(8368), + [aux_sym_else_fragment_token1] = ACTIONS(8368), + [aux_sym_select_statement_token1] = ACTIONS(8368), + [aux_sym__for_header_token1] = ACTIONS(8368), + [aux_sym_do_statement_token1] = ACTIONS(8368), + [aux_sym_do_condition_token1] = ACTIONS(8368), + [aux_sym_with_statement_token1] = ACTIONS(8368), + [aux_sym_exit_statement_token1] = ACTIONS(8368), + [sym_end_statement] = ACTIONS(8370), + [aux_sym_on_goto_statement_token1] = ACTIONS(8368), + [aux_sym_on_goto_statement_token2] = ACTIONS(8368), + [aux_sym_on_error_statement_token2] = ACTIONS(8368), + [sym__ambiguous_redim_statement] = ACTIONS(8370), + [aux_sym_erase_statement_token1] = ACTIONS(8368), + [aux_sym_open_statement_token1] = ACTIONS(8368), + [aux_sym_file_mode_token2] = ACTIONS(8368), + [aux_sym_file_access_token2] = ACTIONS(8368), + [aux_sym_file_lock_token2] = ACTIONS(8368), + [aux_sym_print_statement_token1] = ACTIONS(8368), + [anon_sym_PLUS] = ACTIONS(8370), + [anon_sym_DASH] = ACTIONS(8368), + [anon_sym_QMARK] = ACTIONS(8370), + [aux_sym_close_statement_token1] = ACTIONS(8368), + [aux_sym_put_statement_token1] = ACTIONS(8368), + [aux_sym_unlock_statement_token1] = ACTIONS(8368), + [aux_sym_seek_statement_token1] = ACTIONS(8368), + [sym_reset_statement] = ACTIONS(8368), + [aux_sym_raise_event_statement_token1] = ACTIONS(8368), + [sym_stop_statement] = ACTIONS(8368), + [sym_beep_statement] = ACTIONS(8368), + [aux_sym_unload_statement_token1] = ACTIONS(8368), + [aux_sym_def_type_statement_token1] = ACTIONS(8368), + [aux_sym_def_type_statement_token2] = ACTIONS(8368), + [aux_sym_def_type_statement_token3] = ACTIONS(8368), + [aux_sym_def_type_statement_token4] = ACTIONS(8368), + [aux_sym_def_type_statement_token5] = ACTIONS(8368), + [aux_sym_def_type_statement_token6] = ACTIONS(8368), + [aux_sym_def_type_statement_token7] = ACTIONS(8368), + [aux_sym_def_type_statement_token8] = ACTIONS(8368), + [aux_sym_def_type_statement_token9] = ACTIONS(8368), + [aux_sym_def_type_statement_token10] = ACTIONS(8368), + [aux_sym_def_type_statement_token11] = ACTIONS(8368), + [aux_sym_def_type_statement_token12] = ACTIONS(8368), + [aux_sym_def_type_statement_token13] = ACTIONS(8368), + [aux_sym_def_type_statement_token14] = ACTIONS(8368), + [aux_sym_call_statement_token1] = ACTIONS(8368), + [sym__ambiguous_call_statement] = ACTIONS(8368), + [aux_sym_addressof_expression_token1] = ACTIONS(8368), + [aux_sym_type_of_expression_token1] = ACTIONS(8368), + [aux_sym_unary_expression_token1] = ACTIONS(8368), + [sym_string_literal] = ACTIONS(8370), + [sym_number_literal] = ACTIONS(8370), + [aux_sym_boolean_literal_token1] = ACTIONS(8368), + [aux_sym_boolean_literal_token2] = ACTIONS(8368), + [sym_nothing_literal] = ACTIONS(8368), + [sym_null_literal] = ACTIONS(8368), + [sym_empty_literal] = ACTIONS(8368), + [sym_date_literal] = ACTIONS(8370), + [anon_sym_POUND] = ACTIONS(8368), + }, + [STATE(3557)] = { + [sym_argument_list] = STATE(3747), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7836), + [anon_sym_BANG] = ACTIONS(4034), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_declaration_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7836), + [aux_sym_enum_declaration_token1] = ACTIONS(7836), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7836), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7836), + [aux_sym_declare_function_statement_token1] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [aux_sym__property_get_header_token1] = ACTIONS(7836), + [aux_sym_event_declaration_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(8372), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(3558)] = { + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [anon_sym_COLON] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym__attribute_identifier_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [sym__redim_keyword] = ACTIONS(4589), + [aux_sym_get_accessor_token1] = ACTIONS(4589), + [aux_sym_set_accessor_token1] = ACTIONS(4589), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [aux_sym_as_type_clause_token2] = ACTIONS(4589), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4589), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_elseif_fragment_token1] = ACTIONS(4589), + [aux_sym_else_fragment_token1] = ACTIONS(4589), + [aux_sym_select_statement_token1] = ACTIONS(4589), + [aux_sym__for_header_token1] = ACTIONS(4589), + [aux_sym_do_statement_token1] = ACTIONS(4589), + [aux_sym_do_condition_token1] = ACTIONS(4589), + [aux_sym_with_statement_token1] = ACTIONS(4589), + [aux_sym_exit_statement_token1] = ACTIONS(4589), + [sym_end_statement] = ACTIONS(4591), + [aux_sym_on_goto_statement_token1] = ACTIONS(4589), + [aux_sym_on_goto_statement_token2] = ACTIONS(4589), + [aux_sym_on_error_statement_token2] = ACTIONS(4589), + [sym__ambiguous_redim_statement] = ACTIONS(4591), + [aux_sym_erase_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token1] = ACTIONS(4589), + [aux_sym_open_statement_token3] = ACTIONS(4589), + [aux_sym_file_mode_token2] = ACTIONS(4589), + [aux_sym_file_access_token2] = ACTIONS(4589), + [aux_sym_file_lock_token2] = ACTIONS(4589), + [aux_sym_print_statement_token1] = ACTIONS(4589), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [anon_sym_QMARK] = ACTIONS(4591), + [aux_sym_close_statement_token1] = ACTIONS(4589), + [aux_sym_put_statement_token1] = ACTIONS(4589), + [aux_sym_unlock_statement_token1] = ACTIONS(4589), + [aux_sym_seek_statement_token1] = ACTIONS(4589), + [sym_reset_statement] = ACTIONS(4589), + [aux_sym_raise_event_statement_token1] = ACTIONS(4589), + [sym_stop_statement] = ACTIONS(4589), + [sym_beep_statement] = ACTIONS(4589), + [aux_sym_unload_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_call_statement_token1] = ACTIONS(4589), + [sym__ambiguous_call_statement] = ACTIONS(4589), + [aux_sym_addressof_expression_token1] = ACTIONS(4589), + [aux_sym_type_of_expression_token1] = ACTIONS(4589), + [aux_sym_unary_expression_token1] = ACTIONS(4589), + [sym_string_literal] = ACTIONS(4591), + [sym_number_literal] = ACTIONS(4591), + [aux_sym_boolean_literal_token1] = ACTIONS(4589), + [aux_sym_boolean_literal_token2] = ACTIONS(4589), + [sym_nothing_literal] = ACTIONS(4589), + [sym_null_literal] = ACTIONS(4589), + [sym_empty_literal] = ACTIONS(4589), + [sym_date_literal] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4589), + }, + [STATE(3559)] = { + [sym_identifier] = ACTIONS(6336), + [sym_newline] = ACTIONS(6338), + [anon_sym_COLON] = ACTIONS(6338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6336), + [aux_sym_frm_property_statement_token1] = ACTIONS(6336), + [anon_sym_DOT] = ACTIONS(6336), + [anon_sym_BANG] = ACTIONS(6338), + [aux_sym__attribute_identifier_token1] = ACTIONS(6336), + [aux_sym_option_statement_token3] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6336), + [aux_sym_preprocessor_const_token1] = ACTIONS(6336), + [sym_static_modifier] = ACTIONS(6336), + [sym__dim_keyword] = ACTIONS(6336), + [sym__redim_keyword] = ACTIONS(6336), + [aux_sym_get_accessor_token1] = ACTIONS(6336), + [aux_sym_set_accessor_token1] = ACTIONS(6336), + [aux_sym_const_declaration_token1] = ACTIONS(6336), + [anon_sym_LPAREN] = ACTIONS(6338), + [aux_sym_as_type_clause_token2] = ACTIONS(6336), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6336), + [aux_sym_visibility_token1] = ACTIONS(6336), + [aux_sym_visibility_token2] = ACTIONS(6336), + [aux_sym_elseif_fragment_token1] = ACTIONS(6336), + [aux_sym_else_fragment_token1] = ACTIONS(6336), + [aux_sym_select_statement_token1] = ACTIONS(6336), + [aux_sym__for_header_token1] = ACTIONS(6336), + [aux_sym_do_statement_token1] = ACTIONS(6336), + [aux_sym_do_condition_token1] = ACTIONS(6336), + [aux_sym_while_statement_token1] = ACTIONS(6336), + [aux_sym_with_statement_token1] = ACTIONS(6336), + [aux_sym_exit_statement_token1] = ACTIONS(6336), + [sym_end_statement] = ACTIONS(6338), + [aux_sym_on_goto_statement_token1] = ACTIONS(6336), + [aux_sym_on_goto_statement_token2] = ACTIONS(6336), + [aux_sym_on_error_statement_token2] = ACTIONS(6336), + [sym__ambiguous_redim_statement] = ACTIONS(6338), + [aux_sym_erase_statement_token1] = ACTIONS(6336), + [aux_sym_open_statement_token1] = ACTIONS(6336), + [aux_sym_file_mode_token2] = ACTIONS(6336), + [aux_sym_file_access_token2] = ACTIONS(6336), + [aux_sym_file_lock_token2] = ACTIONS(6336), + [aux_sym_print_statement_token1] = ACTIONS(6336), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5960), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5962), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5964), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5966), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5968), + [anon_sym_QMARK] = ACTIONS(6338), + [aux_sym_close_statement_token1] = ACTIONS(6336), + [aux_sym_put_statement_token1] = ACTIONS(6336), + [aux_sym_unlock_statement_token1] = ACTIONS(6336), + [aux_sym_seek_statement_token1] = ACTIONS(6336), + [sym_reset_statement] = ACTIONS(6336), + [aux_sym_raise_event_statement_token1] = ACTIONS(6336), + [sym_stop_statement] = ACTIONS(6336), + [sym_beep_statement] = ACTIONS(6336), + [aux_sym_unload_statement_token1] = ACTIONS(6336), + [aux_sym_def_type_statement_token1] = ACTIONS(6336), + [aux_sym_def_type_statement_token2] = ACTIONS(6336), + [aux_sym_def_type_statement_token3] = ACTIONS(6336), + [aux_sym_def_type_statement_token4] = ACTIONS(6336), + [aux_sym_def_type_statement_token5] = ACTIONS(6336), + [aux_sym_def_type_statement_token6] = ACTIONS(6336), + [aux_sym_def_type_statement_token7] = ACTIONS(6336), + [aux_sym_def_type_statement_token8] = ACTIONS(6336), + [aux_sym_def_type_statement_token9] = ACTIONS(6336), + [aux_sym_def_type_statement_token10] = ACTIONS(6336), + [aux_sym_def_type_statement_token11] = ACTIONS(6336), + [aux_sym_def_type_statement_token12] = ACTIONS(6336), + [aux_sym_def_type_statement_token13] = ACTIONS(6336), + [aux_sym_def_type_statement_token14] = ACTIONS(6336), + [aux_sym_call_statement_token1] = ACTIONS(6336), + [sym__ambiguous_call_statement] = ACTIONS(6336), + [aux_sym_addressof_expression_token1] = ACTIONS(6336), + [aux_sym_type_of_expression_token1] = ACTIONS(6336), + [aux_sym_unary_expression_token1] = ACTIONS(6336), + [sym_string_literal] = ACTIONS(6338), + [sym_number_literal] = ACTIONS(6338), + [aux_sym_boolean_literal_token1] = ACTIONS(6336), + [aux_sym_boolean_literal_token2] = ACTIONS(6336), + [sym_nothing_literal] = ACTIONS(6336), + [sym_null_literal] = ACTIONS(6336), + [sym_empty_literal] = ACTIONS(6336), + [sym_date_literal] = ACTIONS(6338), + [anon_sym_POUND] = ACTIONS(6336), + }, + [STATE(3560)] = { + [sym_do_condition] = STATE(4093), + [sym_identifier] = ACTIONS(8374), + [sym_newline] = ACTIONS(8376), + [anon_sym_COLON] = ACTIONS(8376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8374), + [aux_sym_frm_property_statement_token1] = ACTIONS(8374), + [anon_sym_DOT] = ACTIONS(8374), + [anon_sym_BANG] = ACTIONS(8376), + [aux_sym__attribute_identifier_token1] = ACTIONS(8374), + [aux_sym_option_statement_token3] = ACTIONS(8374), + [aux_sym_type_declaration_token1] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8374), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8374), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8374), + [aux_sym_enum_declaration_token1] = ACTIONS(8374), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8374), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8374), + [aux_sym_declare_function_statement_token1] = ACTIONS(8374), + [aux_sym_preprocessor_const_token1] = ACTIONS(8374), + [aux_sym__property_get_header_token1] = ACTIONS(8374), + [aux_sym_event_declaration_token1] = ACTIONS(8374), + [sym_static_modifier] = ACTIONS(8374), + [sym__dim_keyword] = ACTIONS(8374), + [sym__redim_keyword] = ACTIONS(8374), + [aux_sym_get_accessor_token1] = ACTIONS(8374), + [aux_sym_set_accessor_token1] = ACTIONS(8374), + [aux_sym_const_declaration_token1] = ACTIONS(8374), + [anon_sym_LPAREN] = ACTIONS(8376), + [aux_sym_as_type_clause_token2] = ACTIONS(8374), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8374), + [aux_sym_visibility_token1] = ACTIONS(8374), + [aux_sym_visibility_token2] = ACTIONS(8374), + [aux_sym_elseif_fragment_token1] = ACTIONS(8374), + [aux_sym_else_fragment_token1] = ACTIONS(8374), + [aux_sym_select_statement_token1] = ACTIONS(8374), + [aux_sym__for_header_token1] = ACTIONS(8374), + [aux_sym_do_statement_token1] = ACTIONS(8374), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8374), + [aux_sym_exit_statement_token1] = ACTIONS(8374), + [sym_end_statement] = ACTIONS(8376), + [aux_sym_on_goto_statement_token1] = ACTIONS(8374), + [aux_sym_on_goto_statement_token2] = ACTIONS(8374), + [aux_sym_on_error_statement_token2] = ACTIONS(8374), + [sym__ambiguous_redim_statement] = ACTIONS(8376), + [aux_sym_erase_statement_token1] = ACTIONS(8374), + [aux_sym_open_statement_token1] = ACTIONS(8374), + [aux_sym_file_mode_token2] = ACTIONS(8374), + [aux_sym_file_access_token2] = ACTIONS(8374), + [aux_sym_file_lock_token2] = ACTIONS(8374), + [aux_sym_print_statement_token1] = ACTIONS(8374), + [anon_sym_PLUS] = ACTIONS(8376), + [anon_sym_DASH] = ACTIONS(8374), + [anon_sym_QMARK] = ACTIONS(8376), + [aux_sym_close_statement_token1] = ACTIONS(8374), + [aux_sym_put_statement_token1] = ACTIONS(8374), + [aux_sym_unlock_statement_token1] = ACTIONS(8374), + [aux_sym_seek_statement_token1] = ACTIONS(8374), + [sym_reset_statement] = ACTIONS(8374), + [aux_sym_raise_event_statement_token1] = ACTIONS(8374), + [sym_stop_statement] = ACTIONS(8374), + [sym_beep_statement] = ACTIONS(8374), + [aux_sym_unload_statement_token1] = ACTIONS(8374), + [aux_sym_def_type_statement_token1] = ACTIONS(8374), + [aux_sym_def_type_statement_token2] = ACTIONS(8374), + [aux_sym_def_type_statement_token3] = ACTIONS(8374), + [aux_sym_def_type_statement_token4] = ACTIONS(8374), + [aux_sym_def_type_statement_token5] = ACTIONS(8374), + [aux_sym_def_type_statement_token6] = ACTIONS(8374), + [aux_sym_def_type_statement_token7] = ACTIONS(8374), + [aux_sym_def_type_statement_token8] = ACTIONS(8374), + [aux_sym_def_type_statement_token9] = ACTIONS(8374), + [aux_sym_def_type_statement_token10] = ACTIONS(8374), + [aux_sym_def_type_statement_token11] = ACTIONS(8374), + [aux_sym_def_type_statement_token12] = ACTIONS(8374), + [aux_sym_def_type_statement_token13] = ACTIONS(8374), + [aux_sym_def_type_statement_token14] = ACTIONS(8374), + [aux_sym_call_statement_token1] = ACTIONS(8374), + [sym__ambiguous_call_statement] = ACTIONS(8374), + [aux_sym_addressof_expression_token1] = ACTIONS(8374), + [aux_sym_type_of_expression_token1] = ACTIONS(8374), + [aux_sym_unary_expression_token1] = ACTIONS(8374), + [sym_string_literal] = ACTIONS(8376), + [sym_number_literal] = ACTIONS(8376), + [aux_sym_boolean_literal_token1] = ACTIONS(8374), + [aux_sym_boolean_literal_token2] = ACTIONS(8374), + [sym_nothing_literal] = ACTIONS(8374), + [sym_null_literal] = ACTIONS(8374), + [sym_empty_literal] = ACTIONS(8374), + [sym_date_literal] = ACTIONS(8376), + [anon_sym_POUND] = ACTIONS(8374), + }, + [STATE(3561)] = { + [sym_do_condition] = STATE(4094), + [sym_identifier] = ACTIONS(8378), + [sym_newline] = ACTIONS(8380), + [anon_sym_COLON] = ACTIONS(8380), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8378), + [aux_sym_frm_property_statement_token1] = ACTIONS(8378), + [anon_sym_DOT] = ACTIONS(8378), + [anon_sym_BANG] = ACTIONS(8380), + [aux_sym__attribute_identifier_token1] = ACTIONS(8378), + [aux_sym_option_statement_token3] = ACTIONS(8378), + [aux_sym_type_declaration_token1] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8378), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8378), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8378), + [aux_sym_enum_declaration_token1] = ACTIONS(8378), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8378), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8378), + [aux_sym_declare_function_statement_token1] = ACTIONS(8378), + [aux_sym_preprocessor_const_token1] = ACTIONS(8378), + [aux_sym__property_get_header_token1] = ACTIONS(8378), + [aux_sym_event_declaration_token1] = ACTIONS(8378), + [sym_static_modifier] = ACTIONS(8378), + [sym__dim_keyword] = ACTIONS(8378), + [sym__redim_keyword] = ACTIONS(8378), + [aux_sym_get_accessor_token1] = ACTIONS(8378), + [aux_sym_set_accessor_token1] = ACTIONS(8378), + [aux_sym_const_declaration_token1] = ACTIONS(8378), + [anon_sym_LPAREN] = ACTIONS(8380), + [aux_sym_as_type_clause_token2] = ACTIONS(8378), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8378), + [aux_sym_visibility_token1] = ACTIONS(8378), + [aux_sym_visibility_token2] = ACTIONS(8378), + [aux_sym_elseif_fragment_token1] = ACTIONS(8378), + [aux_sym_else_fragment_token1] = ACTIONS(8378), + [aux_sym_select_statement_token1] = ACTIONS(8378), + [aux_sym__for_header_token1] = ACTIONS(8378), + [aux_sym_do_statement_token1] = ACTIONS(8378), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8378), + [aux_sym_exit_statement_token1] = ACTIONS(8378), + [sym_end_statement] = ACTIONS(8380), + [aux_sym_on_goto_statement_token1] = ACTIONS(8378), + [aux_sym_on_goto_statement_token2] = ACTIONS(8378), + [aux_sym_on_error_statement_token2] = ACTIONS(8378), + [sym__ambiguous_redim_statement] = ACTIONS(8380), + [aux_sym_erase_statement_token1] = ACTIONS(8378), + [aux_sym_open_statement_token1] = ACTIONS(8378), + [aux_sym_file_mode_token2] = ACTIONS(8378), + [aux_sym_file_access_token2] = ACTIONS(8378), + [aux_sym_file_lock_token2] = ACTIONS(8378), + [aux_sym_print_statement_token1] = ACTIONS(8378), + [anon_sym_PLUS] = ACTIONS(8380), + [anon_sym_DASH] = ACTIONS(8378), + [anon_sym_QMARK] = ACTIONS(8380), + [aux_sym_close_statement_token1] = ACTIONS(8378), + [aux_sym_put_statement_token1] = ACTIONS(8378), + [aux_sym_unlock_statement_token1] = ACTIONS(8378), + [aux_sym_seek_statement_token1] = ACTIONS(8378), + [sym_reset_statement] = ACTIONS(8378), + [aux_sym_raise_event_statement_token1] = ACTIONS(8378), + [sym_stop_statement] = ACTIONS(8378), + [sym_beep_statement] = ACTIONS(8378), + [aux_sym_unload_statement_token1] = ACTIONS(8378), + [aux_sym_def_type_statement_token1] = ACTIONS(8378), + [aux_sym_def_type_statement_token2] = ACTIONS(8378), + [aux_sym_def_type_statement_token3] = ACTIONS(8378), + [aux_sym_def_type_statement_token4] = ACTIONS(8378), + [aux_sym_def_type_statement_token5] = ACTIONS(8378), + [aux_sym_def_type_statement_token6] = ACTIONS(8378), + [aux_sym_def_type_statement_token7] = ACTIONS(8378), + [aux_sym_def_type_statement_token8] = ACTIONS(8378), + [aux_sym_def_type_statement_token9] = ACTIONS(8378), + [aux_sym_def_type_statement_token10] = ACTIONS(8378), + [aux_sym_def_type_statement_token11] = ACTIONS(8378), + [aux_sym_def_type_statement_token12] = ACTIONS(8378), + [aux_sym_def_type_statement_token13] = ACTIONS(8378), + [aux_sym_def_type_statement_token14] = ACTIONS(8378), + [aux_sym_call_statement_token1] = ACTIONS(8378), + [sym__ambiguous_call_statement] = ACTIONS(8378), + [aux_sym_addressof_expression_token1] = ACTIONS(8378), + [aux_sym_type_of_expression_token1] = ACTIONS(8378), + [aux_sym_unary_expression_token1] = ACTIONS(8378), + [sym_string_literal] = ACTIONS(8380), + [sym_number_literal] = ACTIONS(8380), + [aux_sym_boolean_literal_token1] = ACTIONS(8378), + [aux_sym_boolean_literal_token2] = ACTIONS(8378), + [sym_nothing_literal] = ACTIONS(8378), + [sym_null_literal] = ACTIONS(8378), + [sym_empty_literal] = ACTIONS(8378), + [sym_date_literal] = ACTIONS(8380), + [anon_sym_POUND] = ACTIONS(8378), + }, + [STATE(3562)] = { + [sym_argument_list] = STATE(3747), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(8382), + [anon_sym_BANG] = ACTIONS(8384), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_declaration_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7836), + [aux_sym_enum_declaration_token1] = ACTIONS(7836), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7836), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7836), + [aux_sym_declare_function_statement_token1] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [aux_sym__property_get_header_token1] = ACTIONS(7836), + [aux_sym_event_declaration_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(8372), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(3563)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(3563), + [sym_identifier] = ACTIONS(8386), + [sym_newline] = ACTIONS(8388), + [anon_sym_COLON] = ACTIONS(8388), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8386), + [aux_sym_frm_property_statement_token1] = ACTIONS(8386), + [anon_sym_DOT] = ACTIONS(8386), + [anon_sym_BANG] = ACTIONS(8388), + [aux_sym__attribute_identifier_token1] = ACTIONS(8386), + [aux_sym_option_statement_token3] = ACTIONS(8386), + [aux_sym_type_declaration_token1] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8386), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8386), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8386), + [aux_sym_enum_declaration_token1] = ACTIONS(8386), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8386), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8386), + [aux_sym_declare_function_statement_token1] = ACTIONS(8386), + [aux_sym_preprocessor_const_token1] = ACTIONS(8386), + [aux_sym__property_get_header_token1] = ACTIONS(8386), + [aux_sym_event_declaration_token1] = ACTIONS(8386), + [sym_static_modifier] = ACTIONS(8386), + [sym__dim_keyword] = ACTIONS(8386), + [sym__redim_keyword] = ACTIONS(8386), + [aux_sym_get_accessor_token1] = ACTIONS(8386), + [aux_sym_set_accessor_token1] = ACTIONS(8386), + [anon_sym_COMMA] = ACTIONS(8390), + [aux_sym_const_declaration_token1] = ACTIONS(8386), + [anon_sym_LPAREN] = ACTIONS(8388), + [aux_sym_as_type_clause_token2] = ACTIONS(8386), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8386), + [aux_sym_visibility_token1] = ACTIONS(8386), + [aux_sym_visibility_token2] = ACTIONS(8386), + [aux_sym_elseif_fragment_token1] = ACTIONS(8386), + [aux_sym_else_fragment_token1] = ACTIONS(8386), + [aux_sym_select_statement_token1] = ACTIONS(8386), + [aux_sym__for_header_token1] = ACTIONS(8386), + [aux_sym_do_statement_token1] = ACTIONS(8386), + [aux_sym_do_condition_token1] = ACTIONS(8386), + [aux_sym_with_statement_token1] = ACTIONS(8386), + [aux_sym_exit_statement_token1] = ACTIONS(8386), + [sym_end_statement] = ACTIONS(8388), + [aux_sym_on_goto_statement_token1] = ACTIONS(8386), + [aux_sym_on_goto_statement_token2] = ACTIONS(8386), + [aux_sym_on_error_statement_token2] = ACTIONS(8386), + [sym__ambiguous_redim_statement] = ACTIONS(8388), + [aux_sym_erase_statement_token1] = ACTIONS(8386), + [aux_sym_open_statement_token1] = ACTIONS(8386), + [aux_sym_file_mode_token2] = ACTIONS(8386), + [aux_sym_file_access_token2] = ACTIONS(8386), + [aux_sym_file_lock_token2] = ACTIONS(8386), + [aux_sym_print_statement_token1] = ACTIONS(8386), + [anon_sym_PLUS] = ACTIONS(8388), + [anon_sym_DASH] = ACTIONS(8386), + [anon_sym_QMARK] = ACTIONS(8388), + [aux_sym_close_statement_token1] = ACTIONS(8386), + [aux_sym_put_statement_token1] = ACTIONS(8386), + [aux_sym_unlock_statement_token1] = ACTIONS(8386), + [aux_sym_seek_statement_token1] = ACTIONS(8386), + [sym_reset_statement] = ACTIONS(8386), + [aux_sym_raise_event_statement_token1] = ACTIONS(8386), + [sym_stop_statement] = ACTIONS(8386), + [sym_beep_statement] = ACTIONS(8386), + [aux_sym_unload_statement_token1] = ACTIONS(8386), + [aux_sym_def_type_statement_token1] = ACTIONS(8386), + [aux_sym_def_type_statement_token2] = ACTIONS(8386), + [aux_sym_def_type_statement_token3] = ACTIONS(8386), + [aux_sym_def_type_statement_token4] = ACTIONS(8386), + [aux_sym_def_type_statement_token5] = ACTIONS(8386), + [aux_sym_def_type_statement_token6] = ACTIONS(8386), + [aux_sym_def_type_statement_token7] = ACTIONS(8386), + [aux_sym_def_type_statement_token8] = ACTIONS(8386), + [aux_sym_def_type_statement_token9] = ACTIONS(8386), + [aux_sym_def_type_statement_token10] = ACTIONS(8386), + [aux_sym_def_type_statement_token11] = ACTIONS(8386), + [aux_sym_def_type_statement_token12] = ACTIONS(8386), + [aux_sym_def_type_statement_token13] = ACTIONS(8386), + [aux_sym_def_type_statement_token14] = ACTIONS(8386), + [aux_sym_call_statement_token1] = ACTIONS(8386), + [sym__ambiguous_call_statement] = ACTIONS(8386), + [aux_sym_addressof_expression_token1] = ACTIONS(8386), + [aux_sym_type_of_expression_token1] = ACTIONS(8386), + [aux_sym_unary_expression_token1] = ACTIONS(8386), + [sym_string_literal] = ACTIONS(8388), + [sym_number_literal] = ACTIONS(8388), + [aux_sym_boolean_literal_token1] = ACTIONS(8386), + [aux_sym_boolean_literal_token2] = ACTIONS(8386), + [sym_nothing_literal] = ACTIONS(8386), + [sym_null_literal] = ACTIONS(8386), + [sym_empty_literal] = ACTIONS(8386), + [sym_date_literal] = ACTIONS(8388), + [anon_sym_POUND] = ACTIONS(8386), + }, + [STATE(3564)] = { + [sym_argument_list] = STATE(10051), + [sym_identifier] = ACTIONS(8393), + [sym_newline] = ACTIONS(8395), + [anon_sym_COLON] = ACTIONS(8395), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8393), + [aux_sym_frm_property_statement_token1] = ACTIONS(8393), + [anon_sym_DOT] = ACTIONS(8393), + [anon_sym_BANG] = ACTIONS(8395), + [aux_sym__attribute_identifier_token1] = ACTIONS(8393), + [aux_sym_option_statement_token3] = ACTIONS(8393), + [aux_sym_type_declaration_token1] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8393), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8393), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8393), + [aux_sym_enum_declaration_token1] = ACTIONS(8393), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8393), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8393), + [aux_sym_declare_function_statement_token1] = ACTIONS(8393), + [aux_sym_preprocessor_const_token1] = ACTIONS(8393), + [aux_sym__property_get_header_token1] = ACTIONS(8393), + [aux_sym_event_declaration_token1] = ACTIONS(8393), + [sym_static_modifier] = ACTIONS(8393), + [sym__dim_keyword] = ACTIONS(8393), + [sym__redim_keyword] = ACTIONS(8393), + [aux_sym_get_accessor_token1] = ACTIONS(8393), + [aux_sym_set_accessor_token1] = ACTIONS(8393), + [anon_sym_COMMA] = ACTIONS(8395), + [aux_sym_const_declaration_token1] = ACTIONS(8393), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(8393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8393), + [aux_sym_visibility_token1] = ACTIONS(8393), + [aux_sym_visibility_token2] = ACTIONS(8393), + [aux_sym_elseif_fragment_token1] = ACTIONS(8393), + [aux_sym_else_fragment_token1] = ACTIONS(8393), + [aux_sym_select_statement_token1] = ACTIONS(8393), + [aux_sym__for_header_token1] = ACTIONS(8393), + [aux_sym_do_statement_token1] = ACTIONS(8393), + [aux_sym_do_condition_token1] = ACTIONS(8393), + [aux_sym_with_statement_token1] = ACTIONS(8393), + [aux_sym_exit_statement_token1] = ACTIONS(8393), + [sym_end_statement] = ACTIONS(8395), + [aux_sym_on_goto_statement_token1] = ACTIONS(8393), + [aux_sym_on_goto_statement_token2] = ACTIONS(8393), + [aux_sym_on_error_statement_token2] = ACTIONS(8393), + [sym__ambiguous_redim_statement] = ACTIONS(8395), + [aux_sym_erase_statement_token1] = ACTIONS(8393), + [aux_sym_open_statement_token1] = ACTIONS(8393), + [aux_sym_file_mode_token2] = ACTIONS(8393), + [aux_sym_file_access_token2] = ACTIONS(8393), + [aux_sym_file_lock_token2] = ACTIONS(8393), + [aux_sym_print_statement_token1] = ACTIONS(8393), + [anon_sym_PLUS] = ACTIONS(8395), + [anon_sym_DASH] = ACTIONS(8393), + [anon_sym_QMARK] = ACTIONS(8395), + [aux_sym_close_statement_token1] = ACTIONS(8393), + [aux_sym_put_statement_token1] = ACTIONS(8393), + [aux_sym_unlock_statement_token1] = ACTIONS(8393), + [aux_sym_seek_statement_token1] = ACTIONS(8393), + [sym_reset_statement] = ACTIONS(8393), + [aux_sym_raise_event_statement_token1] = ACTIONS(8393), + [sym_stop_statement] = ACTIONS(8393), + [sym_beep_statement] = ACTIONS(8393), + [aux_sym_unload_statement_token1] = ACTIONS(8393), + [aux_sym_def_type_statement_token1] = ACTIONS(8393), + [aux_sym_def_type_statement_token2] = ACTIONS(8393), + [aux_sym_def_type_statement_token3] = ACTIONS(8393), + [aux_sym_def_type_statement_token4] = ACTIONS(8393), + [aux_sym_def_type_statement_token5] = ACTIONS(8393), + [aux_sym_def_type_statement_token6] = ACTIONS(8393), + [aux_sym_def_type_statement_token7] = ACTIONS(8393), + [aux_sym_def_type_statement_token8] = ACTIONS(8393), + [aux_sym_def_type_statement_token9] = ACTIONS(8393), + [aux_sym_def_type_statement_token10] = ACTIONS(8393), + [aux_sym_def_type_statement_token11] = ACTIONS(8393), + [aux_sym_def_type_statement_token12] = ACTIONS(8393), + [aux_sym_def_type_statement_token13] = ACTIONS(8393), + [aux_sym_def_type_statement_token14] = ACTIONS(8393), + [aux_sym_call_statement_token1] = ACTIONS(8393), + [sym__ambiguous_call_statement] = ACTIONS(8393), + [aux_sym_addressof_expression_token1] = ACTIONS(8393), + [aux_sym_type_of_expression_token1] = ACTIONS(8393), + [aux_sym_unary_expression_token1] = ACTIONS(8393), + [sym_string_literal] = ACTIONS(8395), + [sym_number_literal] = ACTIONS(8395), + [aux_sym_boolean_literal_token1] = ACTIONS(8393), + [aux_sym_boolean_literal_token2] = ACTIONS(8393), + [sym_nothing_literal] = ACTIONS(8393), + [sym_null_literal] = ACTIONS(8393), + [sym_empty_literal] = ACTIONS(8393), + [sym_date_literal] = ACTIONS(8395), + [anon_sym_POUND] = ACTIONS(8393), + }, + [STATE(3565)] = { + [aux_sym_erase_statement_repeat1] = STATE(3535), + [sym_identifier] = ACTIONS(8397), + [sym_newline] = ACTIONS(8399), + [anon_sym_COLON] = ACTIONS(8399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8397), + [aux_sym_frm_property_statement_token1] = ACTIONS(8397), + [anon_sym_DOT] = ACTIONS(8397), + [anon_sym_BANG] = ACTIONS(8399), + [aux_sym__attribute_identifier_token1] = ACTIONS(8397), + [aux_sym_option_statement_token3] = ACTIONS(8397), + [aux_sym_type_declaration_token1] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8397), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8397), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8397), + [aux_sym_enum_declaration_token1] = ACTIONS(8397), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8397), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8397), + [aux_sym_declare_function_statement_token1] = ACTIONS(8397), + [aux_sym_preprocessor_const_token1] = ACTIONS(8397), + [aux_sym__property_get_header_token1] = ACTIONS(8397), + [aux_sym_event_declaration_token1] = ACTIONS(8397), + [sym_static_modifier] = ACTIONS(8397), + [sym__dim_keyword] = ACTIONS(8397), + [sym__redim_keyword] = ACTIONS(8397), + [aux_sym_get_accessor_token1] = ACTIONS(8397), + [aux_sym_set_accessor_token1] = ACTIONS(8397), + [anon_sym_COMMA] = ACTIONS(8324), + [aux_sym_const_declaration_token1] = ACTIONS(8397), + [anon_sym_LPAREN] = ACTIONS(8399), + [aux_sym_as_type_clause_token2] = ACTIONS(8397), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8397), + [aux_sym_visibility_token1] = ACTIONS(8397), + [aux_sym_visibility_token2] = ACTIONS(8397), + [aux_sym_elseif_fragment_token1] = ACTIONS(8397), + [aux_sym_else_fragment_token1] = ACTIONS(8397), + [aux_sym_select_statement_token1] = ACTIONS(8397), + [aux_sym__for_header_token1] = ACTIONS(8397), + [aux_sym_do_statement_token1] = ACTIONS(8397), + [aux_sym_do_condition_token1] = ACTIONS(8397), + [aux_sym_with_statement_token1] = ACTIONS(8397), + [aux_sym_exit_statement_token1] = ACTIONS(8397), + [sym_end_statement] = ACTIONS(8399), + [aux_sym_on_goto_statement_token1] = ACTIONS(8397), + [aux_sym_on_goto_statement_token2] = ACTIONS(8397), + [aux_sym_on_error_statement_token2] = ACTIONS(8397), + [sym__ambiguous_redim_statement] = ACTIONS(8399), + [aux_sym_erase_statement_token1] = ACTIONS(8397), + [aux_sym_open_statement_token1] = ACTIONS(8397), + [aux_sym_file_mode_token2] = ACTIONS(8397), + [aux_sym_file_access_token2] = ACTIONS(8397), + [aux_sym_file_lock_token2] = ACTIONS(8397), + [aux_sym_print_statement_token1] = ACTIONS(8397), + [anon_sym_PLUS] = ACTIONS(8399), + [anon_sym_DASH] = ACTIONS(8397), + [anon_sym_QMARK] = ACTIONS(8399), + [aux_sym_close_statement_token1] = ACTIONS(8397), + [aux_sym_put_statement_token1] = ACTIONS(8397), + [aux_sym_unlock_statement_token1] = ACTIONS(8397), + [aux_sym_seek_statement_token1] = ACTIONS(8397), + [sym_reset_statement] = ACTIONS(8397), + [aux_sym_raise_event_statement_token1] = ACTIONS(8397), + [sym_stop_statement] = ACTIONS(8397), + [sym_beep_statement] = ACTIONS(8397), + [aux_sym_unload_statement_token1] = ACTIONS(8397), + [aux_sym_def_type_statement_token1] = ACTIONS(8397), + [aux_sym_def_type_statement_token2] = ACTIONS(8397), + [aux_sym_def_type_statement_token3] = ACTIONS(8397), + [aux_sym_def_type_statement_token4] = ACTIONS(8397), + [aux_sym_def_type_statement_token5] = ACTIONS(8397), + [aux_sym_def_type_statement_token6] = ACTIONS(8397), + [aux_sym_def_type_statement_token7] = ACTIONS(8397), + [aux_sym_def_type_statement_token8] = ACTIONS(8397), + [aux_sym_def_type_statement_token9] = ACTIONS(8397), + [aux_sym_def_type_statement_token10] = ACTIONS(8397), + [aux_sym_def_type_statement_token11] = ACTIONS(8397), + [aux_sym_def_type_statement_token12] = ACTIONS(8397), + [aux_sym_def_type_statement_token13] = ACTIONS(8397), + [aux_sym_def_type_statement_token14] = ACTIONS(8397), + [aux_sym_call_statement_token1] = ACTIONS(8397), + [sym__ambiguous_call_statement] = ACTIONS(8397), + [aux_sym_addressof_expression_token1] = ACTIONS(8397), + [aux_sym_type_of_expression_token1] = ACTIONS(8397), + [aux_sym_unary_expression_token1] = ACTIONS(8397), + [sym_string_literal] = ACTIONS(8399), + [sym_number_literal] = ACTIONS(8399), + [aux_sym_boolean_literal_token1] = ACTIONS(8397), + [aux_sym_boolean_literal_token2] = ACTIONS(8397), + [sym_nothing_literal] = ACTIONS(8397), + [sym_null_literal] = ACTIONS(8397), + [sym_empty_literal] = ACTIONS(8397), + [sym_date_literal] = ACTIONS(8399), + [anon_sym_POUND] = ACTIONS(8397), + }, + [STATE(3566)] = { + [aux_sym_input_statement_repeat1] = STATE(3566), + [sym_identifier] = ACTIONS(8401), + [sym_newline] = ACTIONS(8403), + [anon_sym_COLON] = ACTIONS(8403), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8401), + [aux_sym_frm_property_statement_token1] = ACTIONS(8401), + [anon_sym_DOT] = ACTIONS(8401), + [anon_sym_BANG] = ACTIONS(8403), + [aux_sym__attribute_identifier_token1] = ACTIONS(8401), + [aux_sym_option_statement_token3] = ACTIONS(8401), + [aux_sym_type_declaration_token1] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8401), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8401), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8401), + [aux_sym_enum_declaration_token1] = ACTIONS(8401), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8401), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8401), + [aux_sym_declare_function_statement_token1] = ACTIONS(8401), + [aux_sym_preprocessor_const_token1] = ACTIONS(8401), + [aux_sym__property_get_header_token1] = ACTIONS(8401), + [aux_sym_event_declaration_token1] = ACTIONS(8401), + [sym_static_modifier] = ACTIONS(8401), + [sym__dim_keyword] = ACTIONS(8401), + [sym__redim_keyword] = ACTIONS(8401), + [aux_sym_get_accessor_token1] = ACTIONS(8401), + [aux_sym_set_accessor_token1] = ACTIONS(8401), + [anon_sym_COMMA] = ACTIONS(8405), + [aux_sym_const_declaration_token1] = ACTIONS(8401), + [anon_sym_LPAREN] = ACTIONS(8403), + [aux_sym_as_type_clause_token2] = ACTIONS(8401), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8401), + [aux_sym_visibility_token1] = ACTIONS(8401), + [aux_sym_visibility_token2] = ACTIONS(8401), + [aux_sym_elseif_fragment_token1] = ACTIONS(8401), + [aux_sym_else_fragment_token1] = ACTIONS(8401), + [aux_sym_select_statement_token1] = ACTIONS(8401), + [aux_sym__for_header_token1] = ACTIONS(8401), + [aux_sym_do_statement_token1] = ACTIONS(8401), + [aux_sym_do_condition_token1] = ACTIONS(8401), + [aux_sym_with_statement_token1] = ACTIONS(8401), + [aux_sym_exit_statement_token1] = ACTIONS(8401), + [sym_end_statement] = ACTIONS(8403), + [aux_sym_on_goto_statement_token1] = ACTIONS(8401), + [aux_sym_on_goto_statement_token2] = ACTIONS(8401), + [aux_sym_on_error_statement_token2] = ACTIONS(8401), + [sym__ambiguous_redim_statement] = ACTIONS(8403), + [aux_sym_erase_statement_token1] = ACTIONS(8401), + [aux_sym_open_statement_token1] = ACTIONS(8401), + [aux_sym_file_mode_token2] = ACTIONS(8401), + [aux_sym_file_access_token2] = ACTIONS(8401), + [aux_sym_file_lock_token2] = ACTIONS(8401), + [aux_sym_print_statement_token1] = ACTIONS(8401), + [anon_sym_PLUS] = ACTIONS(8403), + [anon_sym_DASH] = ACTIONS(8401), + [anon_sym_QMARK] = ACTIONS(8403), + [aux_sym_close_statement_token1] = ACTIONS(8401), + [aux_sym_put_statement_token1] = ACTIONS(8401), + [aux_sym_unlock_statement_token1] = ACTIONS(8401), + [aux_sym_seek_statement_token1] = ACTIONS(8401), + [sym_reset_statement] = ACTIONS(8401), + [aux_sym_raise_event_statement_token1] = ACTIONS(8401), + [sym_stop_statement] = ACTIONS(8401), + [sym_beep_statement] = ACTIONS(8401), + [aux_sym_unload_statement_token1] = ACTIONS(8401), + [aux_sym_def_type_statement_token1] = ACTIONS(8401), + [aux_sym_def_type_statement_token2] = ACTIONS(8401), + [aux_sym_def_type_statement_token3] = ACTIONS(8401), + [aux_sym_def_type_statement_token4] = ACTIONS(8401), + [aux_sym_def_type_statement_token5] = ACTIONS(8401), + [aux_sym_def_type_statement_token6] = ACTIONS(8401), + [aux_sym_def_type_statement_token7] = ACTIONS(8401), + [aux_sym_def_type_statement_token8] = ACTIONS(8401), + [aux_sym_def_type_statement_token9] = ACTIONS(8401), + [aux_sym_def_type_statement_token10] = ACTIONS(8401), + [aux_sym_def_type_statement_token11] = ACTIONS(8401), + [aux_sym_def_type_statement_token12] = ACTIONS(8401), + [aux_sym_def_type_statement_token13] = ACTIONS(8401), + [aux_sym_def_type_statement_token14] = ACTIONS(8401), + [aux_sym_call_statement_token1] = ACTIONS(8401), + [sym__ambiguous_call_statement] = ACTIONS(8401), + [aux_sym_addressof_expression_token1] = ACTIONS(8401), + [aux_sym_type_of_expression_token1] = ACTIONS(8401), + [aux_sym_unary_expression_token1] = ACTIONS(8401), + [sym_string_literal] = ACTIONS(8403), + [sym_number_literal] = ACTIONS(8403), + [aux_sym_boolean_literal_token1] = ACTIONS(8401), + [aux_sym_boolean_literal_token2] = ACTIONS(8401), + [sym_nothing_literal] = ACTIONS(8401), + [sym_null_literal] = ACTIONS(8401), + [sym_empty_literal] = ACTIONS(8401), + [sym_date_literal] = ACTIONS(8403), + [anon_sym_POUND] = ACTIONS(8401), + }, + [STATE(3567)] = { + [aux_sym_next_variable_list_repeat1] = STATE(3567), + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_declaration_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7949), + [aux_sym_enum_declaration_token1] = ACTIONS(7949), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7949), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7949), + [aux_sym_declare_function_statement_token1] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [aux_sym__property_get_header_token1] = ACTIONS(7949), + [aux_sym_event_declaration_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(8408), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(3568)] = { + [sym_do_condition] = STATE(4110), + [sym_identifier] = ACTIONS(8411), + [sym_newline] = ACTIONS(8413), + [anon_sym_COLON] = ACTIONS(8413), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8411), + [aux_sym_frm_property_statement_token1] = ACTIONS(8411), + [anon_sym_DOT] = ACTIONS(8411), + [anon_sym_BANG] = ACTIONS(8413), + [aux_sym__attribute_identifier_token1] = ACTIONS(8411), + [aux_sym_option_statement_token3] = ACTIONS(8411), + [aux_sym_type_declaration_token1] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8411), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8411), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8411), + [aux_sym_enum_declaration_token1] = ACTIONS(8411), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8411), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8411), + [aux_sym_declare_function_statement_token1] = ACTIONS(8411), + [aux_sym_preprocessor_const_token1] = ACTIONS(8411), + [aux_sym__property_get_header_token1] = ACTIONS(8411), + [aux_sym_event_declaration_token1] = ACTIONS(8411), + [sym_static_modifier] = ACTIONS(8411), + [sym__dim_keyword] = ACTIONS(8411), + [sym__redim_keyword] = ACTIONS(8411), + [aux_sym_get_accessor_token1] = ACTIONS(8411), + [aux_sym_set_accessor_token1] = ACTIONS(8411), + [aux_sym_const_declaration_token1] = ACTIONS(8411), + [anon_sym_LPAREN] = ACTIONS(8413), + [aux_sym_as_type_clause_token2] = ACTIONS(8411), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8411), + [aux_sym_visibility_token1] = ACTIONS(8411), + [aux_sym_visibility_token2] = ACTIONS(8411), + [aux_sym_elseif_fragment_token1] = ACTIONS(8411), + [aux_sym_else_fragment_token1] = ACTIONS(8411), + [aux_sym_select_statement_token1] = ACTIONS(8411), + [aux_sym__for_header_token1] = ACTIONS(8411), + [aux_sym_do_statement_token1] = ACTIONS(8411), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8411), + [aux_sym_exit_statement_token1] = ACTIONS(8411), + [sym_end_statement] = ACTIONS(8413), + [aux_sym_on_goto_statement_token1] = ACTIONS(8411), + [aux_sym_on_goto_statement_token2] = ACTIONS(8411), + [aux_sym_on_error_statement_token2] = ACTIONS(8411), + [sym__ambiguous_redim_statement] = ACTIONS(8413), + [aux_sym_erase_statement_token1] = ACTIONS(8411), + [aux_sym_open_statement_token1] = ACTIONS(8411), + [aux_sym_file_mode_token2] = ACTIONS(8411), + [aux_sym_file_access_token2] = ACTIONS(8411), + [aux_sym_file_lock_token2] = ACTIONS(8411), + [aux_sym_print_statement_token1] = ACTIONS(8411), + [anon_sym_PLUS] = ACTIONS(8413), + [anon_sym_DASH] = ACTIONS(8411), + [anon_sym_QMARK] = ACTIONS(8413), + [aux_sym_close_statement_token1] = ACTIONS(8411), + [aux_sym_put_statement_token1] = ACTIONS(8411), + [aux_sym_unlock_statement_token1] = ACTIONS(8411), + [aux_sym_seek_statement_token1] = ACTIONS(8411), + [sym_reset_statement] = ACTIONS(8411), + [aux_sym_raise_event_statement_token1] = ACTIONS(8411), + [sym_stop_statement] = ACTIONS(8411), + [sym_beep_statement] = ACTIONS(8411), + [aux_sym_unload_statement_token1] = ACTIONS(8411), + [aux_sym_def_type_statement_token1] = ACTIONS(8411), + [aux_sym_def_type_statement_token2] = ACTIONS(8411), + [aux_sym_def_type_statement_token3] = ACTIONS(8411), + [aux_sym_def_type_statement_token4] = ACTIONS(8411), + [aux_sym_def_type_statement_token5] = ACTIONS(8411), + [aux_sym_def_type_statement_token6] = ACTIONS(8411), + [aux_sym_def_type_statement_token7] = ACTIONS(8411), + [aux_sym_def_type_statement_token8] = ACTIONS(8411), + [aux_sym_def_type_statement_token9] = ACTIONS(8411), + [aux_sym_def_type_statement_token10] = ACTIONS(8411), + [aux_sym_def_type_statement_token11] = ACTIONS(8411), + [aux_sym_def_type_statement_token12] = ACTIONS(8411), + [aux_sym_def_type_statement_token13] = ACTIONS(8411), + [aux_sym_def_type_statement_token14] = ACTIONS(8411), + [aux_sym_call_statement_token1] = ACTIONS(8411), + [sym__ambiguous_call_statement] = ACTIONS(8411), + [aux_sym_addressof_expression_token1] = ACTIONS(8411), + [aux_sym_type_of_expression_token1] = ACTIONS(8411), + [aux_sym_unary_expression_token1] = ACTIONS(8411), + [sym_string_literal] = ACTIONS(8413), + [sym_number_literal] = ACTIONS(8413), + [aux_sym_boolean_literal_token1] = ACTIONS(8411), + [aux_sym_boolean_literal_token2] = ACTIONS(8411), + [sym_nothing_literal] = ACTIONS(8411), + [sym_null_literal] = ACTIONS(8411), + [sym_empty_literal] = ACTIONS(8411), + [sym_date_literal] = ACTIONS(8413), + [anon_sym_POUND] = ACTIONS(8411), + }, + [STATE(3569)] = { + [sym_do_condition] = STATE(4111), + [sym_identifier] = ACTIONS(8415), + [sym_newline] = ACTIONS(8417), + [anon_sym_COLON] = ACTIONS(8417), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8415), + [aux_sym_frm_property_statement_token1] = ACTIONS(8415), + [anon_sym_DOT] = ACTIONS(8415), + [anon_sym_BANG] = ACTIONS(8417), + [aux_sym__attribute_identifier_token1] = ACTIONS(8415), + [aux_sym_option_statement_token3] = ACTIONS(8415), + [aux_sym_type_declaration_token1] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8415), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8415), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8415), + [aux_sym_enum_declaration_token1] = ACTIONS(8415), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8415), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8415), + [aux_sym_declare_function_statement_token1] = ACTIONS(8415), + [aux_sym_preprocessor_const_token1] = ACTIONS(8415), + [aux_sym__property_get_header_token1] = ACTIONS(8415), + [aux_sym_event_declaration_token1] = ACTIONS(8415), + [sym_static_modifier] = ACTIONS(8415), + [sym__dim_keyword] = ACTIONS(8415), + [sym__redim_keyword] = ACTIONS(8415), + [aux_sym_get_accessor_token1] = ACTIONS(8415), + [aux_sym_set_accessor_token1] = ACTIONS(8415), + [aux_sym_const_declaration_token1] = ACTIONS(8415), + [anon_sym_LPAREN] = ACTIONS(8417), + [aux_sym_as_type_clause_token2] = ACTIONS(8415), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8415), + [aux_sym_visibility_token1] = ACTIONS(8415), + [aux_sym_visibility_token2] = ACTIONS(8415), + [aux_sym_elseif_fragment_token1] = ACTIONS(8415), + [aux_sym_else_fragment_token1] = ACTIONS(8415), + [aux_sym_select_statement_token1] = ACTIONS(8415), + [aux_sym__for_header_token1] = ACTIONS(8415), + [aux_sym_do_statement_token1] = ACTIONS(8415), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8415), + [aux_sym_exit_statement_token1] = ACTIONS(8415), + [sym_end_statement] = ACTIONS(8417), + [aux_sym_on_goto_statement_token1] = ACTIONS(8415), + [aux_sym_on_goto_statement_token2] = ACTIONS(8415), + [aux_sym_on_error_statement_token2] = ACTIONS(8415), + [sym__ambiguous_redim_statement] = ACTIONS(8417), + [aux_sym_erase_statement_token1] = ACTIONS(8415), + [aux_sym_open_statement_token1] = ACTIONS(8415), + [aux_sym_file_mode_token2] = ACTIONS(8415), + [aux_sym_file_access_token2] = ACTIONS(8415), + [aux_sym_file_lock_token2] = ACTIONS(8415), + [aux_sym_print_statement_token1] = ACTIONS(8415), + [anon_sym_PLUS] = ACTIONS(8417), + [anon_sym_DASH] = ACTIONS(8415), + [anon_sym_QMARK] = ACTIONS(8417), + [aux_sym_close_statement_token1] = ACTIONS(8415), + [aux_sym_put_statement_token1] = ACTIONS(8415), + [aux_sym_unlock_statement_token1] = ACTIONS(8415), + [aux_sym_seek_statement_token1] = ACTIONS(8415), + [sym_reset_statement] = ACTIONS(8415), + [aux_sym_raise_event_statement_token1] = ACTIONS(8415), + [sym_stop_statement] = ACTIONS(8415), + [sym_beep_statement] = ACTIONS(8415), + [aux_sym_unload_statement_token1] = ACTIONS(8415), + [aux_sym_def_type_statement_token1] = ACTIONS(8415), + [aux_sym_def_type_statement_token2] = ACTIONS(8415), + [aux_sym_def_type_statement_token3] = ACTIONS(8415), + [aux_sym_def_type_statement_token4] = ACTIONS(8415), + [aux_sym_def_type_statement_token5] = ACTIONS(8415), + [aux_sym_def_type_statement_token6] = ACTIONS(8415), + [aux_sym_def_type_statement_token7] = ACTIONS(8415), + [aux_sym_def_type_statement_token8] = ACTIONS(8415), + [aux_sym_def_type_statement_token9] = ACTIONS(8415), + [aux_sym_def_type_statement_token10] = ACTIONS(8415), + [aux_sym_def_type_statement_token11] = ACTIONS(8415), + [aux_sym_def_type_statement_token12] = ACTIONS(8415), + [aux_sym_def_type_statement_token13] = ACTIONS(8415), + [aux_sym_def_type_statement_token14] = ACTIONS(8415), + [aux_sym_call_statement_token1] = ACTIONS(8415), + [sym__ambiguous_call_statement] = ACTIONS(8415), + [aux_sym_addressof_expression_token1] = ACTIONS(8415), + [aux_sym_type_of_expression_token1] = ACTIONS(8415), + [aux_sym_unary_expression_token1] = ACTIONS(8415), + [sym_string_literal] = ACTIONS(8417), + [sym_number_literal] = ACTIONS(8417), + [aux_sym_boolean_literal_token1] = ACTIONS(8415), + [aux_sym_boolean_literal_token2] = ACTIONS(8415), + [sym_nothing_literal] = ACTIONS(8415), + [sym_null_literal] = ACTIONS(8415), + [sym_empty_literal] = ACTIONS(8415), + [sym_date_literal] = ACTIONS(8417), + [anon_sym_POUND] = ACTIONS(8415), + }, + [STATE(3570)] = { + [sym_do_condition] = STATE(4120), + [sym_identifier] = ACTIONS(8419), + [sym_newline] = ACTIONS(8421), + [anon_sym_COLON] = ACTIONS(8421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8419), + [aux_sym_frm_property_statement_token1] = ACTIONS(8419), + [anon_sym_DOT] = ACTIONS(8419), + [anon_sym_BANG] = ACTIONS(8421), + [aux_sym__attribute_identifier_token1] = ACTIONS(8419), + [aux_sym_option_statement_token3] = ACTIONS(8419), + [aux_sym_type_declaration_token1] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8419), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8419), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8419), + [aux_sym_enum_declaration_token1] = ACTIONS(8419), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8419), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8419), + [aux_sym_declare_function_statement_token1] = ACTIONS(8419), + [aux_sym_preprocessor_const_token1] = ACTIONS(8419), + [aux_sym__property_get_header_token1] = ACTIONS(8419), + [aux_sym_event_declaration_token1] = ACTIONS(8419), + [sym_static_modifier] = ACTIONS(8419), + [sym__dim_keyword] = ACTIONS(8419), + [sym__redim_keyword] = ACTIONS(8419), + [aux_sym_get_accessor_token1] = ACTIONS(8419), + [aux_sym_set_accessor_token1] = ACTIONS(8419), + [aux_sym_const_declaration_token1] = ACTIONS(8419), + [anon_sym_LPAREN] = ACTIONS(8421), + [aux_sym_as_type_clause_token2] = ACTIONS(8419), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8419), + [aux_sym_visibility_token1] = ACTIONS(8419), + [aux_sym_visibility_token2] = ACTIONS(8419), + [aux_sym_elseif_fragment_token1] = ACTIONS(8419), + [aux_sym_else_fragment_token1] = ACTIONS(8419), + [aux_sym_select_statement_token1] = ACTIONS(8419), + [aux_sym__for_header_token1] = ACTIONS(8419), + [aux_sym_do_statement_token1] = ACTIONS(8419), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8419), + [aux_sym_exit_statement_token1] = ACTIONS(8419), + [sym_end_statement] = ACTIONS(8421), + [aux_sym_on_goto_statement_token1] = ACTIONS(8419), + [aux_sym_on_goto_statement_token2] = ACTIONS(8419), + [aux_sym_on_error_statement_token2] = ACTIONS(8419), + [sym__ambiguous_redim_statement] = ACTIONS(8421), + [aux_sym_erase_statement_token1] = ACTIONS(8419), + [aux_sym_open_statement_token1] = ACTIONS(8419), + [aux_sym_file_mode_token2] = ACTIONS(8419), + [aux_sym_file_access_token2] = ACTIONS(8419), + [aux_sym_file_lock_token2] = ACTIONS(8419), + [aux_sym_print_statement_token1] = ACTIONS(8419), + [anon_sym_PLUS] = ACTIONS(8421), + [anon_sym_DASH] = ACTIONS(8419), + [anon_sym_QMARK] = ACTIONS(8421), + [aux_sym_close_statement_token1] = ACTIONS(8419), + [aux_sym_put_statement_token1] = ACTIONS(8419), + [aux_sym_unlock_statement_token1] = ACTIONS(8419), + [aux_sym_seek_statement_token1] = ACTIONS(8419), + [sym_reset_statement] = ACTIONS(8419), + [aux_sym_raise_event_statement_token1] = ACTIONS(8419), + [sym_stop_statement] = ACTIONS(8419), + [sym_beep_statement] = ACTIONS(8419), + [aux_sym_unload_statement_token1] = ACTIONS(8419), + [aux_sym_def_type_statement_token1] = ACTIONS(8419), + [aux_sym_def_type_statement_token2] = ACTIONS(8419), + [aux_sym_def_type_statement_token3] = ACTIONS(8419), + [aux_sym_def_type_statement_token4] = ACTIONS(8419), + [aux_sym_def_type_statement_token5] = ACTIONS(8419), + [aux_sym_def_type_statement_token6] = ACTIONS(8419), + [aux_sym_def_type_statement_token7] = ACTIONS(8419), + [aux_sym_def_type_statement_token8] = ACTIONS(8419), + [aux_sym_def_type_statement_token9] = ACTIONS(8419), + [aux_sym_def_type_statement_token10] = ACTIONS(8419), + [aux_sym_def_type_statement_token11] = ACTIONS(8419), + [aux_sym_def_type_statement_token12] = ACTIONS(8419), + [aux_sym_def_type_statement_token13] = ACTIONS(8419), + [aux_sym_def_type_statement_token14] = ACTIONS(8419), + [aux_sym_call_statement_token1] = ACTIONS(8419), + [sym__ambiguous_call_statement] = ACTIONS(8419), + [aux_sym_addressof_expression_token1] = ACTIONS(8419), + [aux_sym_type_of_expression_token1] = ACTIONS(8419), + [aux_sym_unary_expression_token1] = ACTIONS(8419), + [sym_string_literal] = ACTIONS(8421), + [sym_number_literal] = ACTIONS(8421), + [aux_sym_boolean_literal_token1] = ACTIONS(8419), + [aux_sym_boolean_literal_token2] = ACTIONS(8419), + [sym_nothing_literal] = ACTIONS(8419), + [sym_null_literal] = ACTIONS(8419), + [sym_empty_literal] = ACTIONS(8419), + [sym_date_literal] = ACTIONS(8421), + [anon_sym_POUND] = ACTIONS(8419), + }, + [STATE(3571)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8235), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3572)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8235), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3573)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8241), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8235), + [anon_sym_SLASH] = ACTIONS(8241), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3574)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8241), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8235), + [anon_sym_SLASH] = ACTIONS(8241), + [anon_sym_BSLASH] = ACTIONS(8243), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3575)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8241), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8235), + [anon_sym_SLASH] = ACTIONS(8241), + [anon_sym_BSLASH] = ACTIONS(8243), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8245), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3576)] = { + [sym_identifier] = ACTIONS(6304), + [sym_newline] = ACTIONS(6306), + [anon_sym_COLON] = ACTIONS(6306), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6304), + [aux_sym_frm_property_statement_token1] = ACTIONS(6304), + [anon_sym_DOT] = ACTIONS(6304), + [anon_sym_BANG] = ACTIONS(6306), + [aux_sym__attribute_identifier_token1] = ACTIONS(6304), + [aux_sym_option_statement_token3] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6304), + [aux_sym_preprocessor_const_token1] = ACTIONS(6304), + [sym_static_modifier] = ACTIONS(6304), + [sym__dim_keyword] = ACTIONS(6304), + [sym__redim_keyword] = ACTIONS(6304), + [aux_sym_get_accessor_token1] = ACTIONS(6304), + [aux_sym_set_accessor_token1] = ACTIONS(6304), + [aux_sym_const_declaration_token1] = ACTIONS(6304), + [anon_sym_LPAREN] = ACTIONS(6306), + [aux_sym_as_type_clause_token2] = ACTIONS(6304), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6304), + [aux_sym_visibility_token1] = ACTIONS(6304), + [aux_sym_visibility_token2] = ACTIONS(6304), + [aux_sym_elseif_fragment_token1] = ACTIONS(6304), + [aux_sym_else_fragment_token1] = ACTIONS(6304), + [aux_sym_select_statement_token1] = ACTIONS(6304), + [aux_sym_select_statement_token2] = ACTIONS(6304), + [aux_sym__for_header_token1] = ACTIONS(6304), + [aux_sym_do_statement_token1] = ACTIONS(6304), + [aux_sym_do_condition_token1] = ACTIONS(6304), + [aux_sym_with_statement_token1] = ACTIONS(6304), + [aux_sym_exit_statement_token1] = ACTIONS(6304), + [sym_end_statement] = ACTIONS(6306), + [aux_sym_on_goto_statement_token1] = ACTIONS(6304), + [aux_sym_on_goto_statement_token2] = ACTIONS(6304), + [aux_sym_on_error_statement_token2] = ACTIONS(6304), + [sym__ambiguous_redim_statement] = ACTIONS(6306), + [aux_sym_erase_statement_token1] = ACTIONS(6304), + [aux_sym_open_statement_token1] = ACTIONS(6304), + [aux_sym_file_mode_token2] = ACTIONS(6304), + [aux_sym_file_access_token2] = ACTIONS(6304), + [aux_sym_file_lock_token2] = ACTIONS(6304), + [aux_sym_print_statement_token1] = ACTIONS(6304), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_QMARK] = ACTIONS(6306), + [aux_sym_close_statement_token1] = ACTIONS(6304), + [aux_sym_put_statement_token1] = ACTIONS(6304), + [aux_sym_unlock_statement_token1] = ACTIONS(6304), + [aux_sym_seek_statement_token1] = ACTIONS(6304), + [sym_reset_statement] = ACTIONS(6304), + [aux_sym_raise_event_statement_token1] = ACTIONS(6304), + [sym_stop_statement] = ACTIONS(6304), + [sym_beep_statement] = ACTIONS(6304), + [aux_sym_unload_statement_token1] = ACTIONS(6304), + [aux_sym_def_type_statement_token1] = ACTIONS(6304), + [aux_sym_def_type_statement_token2] = ACTIONS(6304), + [aux_sym_def_type_statement_token3] = ACTIONS(6304), + [aux_sym_def_type_statement_token4] = ACTIONS(6304), + [aux_sym_def_type_statement_token5] = ACTIONS(6304), + [aux_sym_def_type_statement_token6] = ACTIONS(6304), + [aux_sym_def_type_statement_token7] = ACTIONS(6304), + [aux_sym_def_type_statement_token8] = ACTIONS(6304), + [aux_sym_def_type_statement_token9] = ACTIONS(6304), + [aux_sym_def_type_statement_token10] = ACTIONS(6304), + [aux_sym_def_type_statement_token11] = ACTIONS(6304), + [aux_sym_def_type_statement_token12] = ACTIONS(6304), + [aux_sym_def_type_statement_token13] = ACTIONS(6304), + [aux_sym_def_type_statement_token14] = ACTIONS(6304), + [aux_sym_call_statement_token1] = ACTIONS(6304), + [sym__ambiguous_call_statement] = ACTIONS(6304), + [aux_sym_addressof_expression_token1] = ACTIONS(6304), + [aux_sym_type_of_expression_token1] = ACTIONS(6304), + [aux_sym_unary_expression_token1] = ACTIONS(6304), + [sym_string_literal] = ACTIONS(6306), + [sym_number_literal] = ACTIONS(6306), + [aux_sym_boolean_literal_token1] = ACTIONS(6304), + [aux_sym_boolean_literal_token2] = ACTIONS(6304), + [sym_nothing_literal] = ACTIONS(6304), + [sym_null_literal] = ACTIONS(6304), + [sym_empty_literal] = ACTIONS(6304), + [sym_date_literal] = ACTIONS(6306), + [anon_sym_POUND] = ACTIONS(6304), + }, + [STATE(3577)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8241), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8235), + [anon_sym_SLASH] = ACTIONS(8241), + [anon_sym_BSLASH] = ACTIONS(8243), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8245), + [anon_sym_PLUS] = ACTIONS(8247), + [anon_sym_DASH] = ACTIONS(8249), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3578)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8241), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8235), + [anon_sym_SLASH] = ACTIONS(8241), + [anon_sym_BSLASH] = ACTIONS(8243), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8245), + [anon_sym_PLUS] = ACTIONS(8247), + [anon_sym_DASH] = ACTIONS(8249), + [anon_sym_AMP] = ACTIONS(8251), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3579)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8241), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8235), + [anon_sym_SLASH] = ACTIONS(8241), + [anon_sym_BSLASH] = ACTIONS(8243), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8245), + [anon_sym_PLUS] = ACTIONS(8247), + [anon_sym_DASH] = ACTIONS(8249), + [anon_sym_AMP] = ACTIONS(8251), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8253), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3580)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8241), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8235), + [anon_sym_SLASH] = ACTIONS(8241), + [anon_sym_BSLASH] = ACTIONS(8243), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8245), + [anon_sym_PLUS] = ACTIONS(8247), + [anon_sym_DASH] = ACTIONS(8249), + [anon_sym_AMP] = ACTIONS(8251), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8253), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8255), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3581)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8241), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8235), + [anon_sym_SLASH] = ACTIONS(8241), + [anon_sym_BSLASH] = ACTIONS(8243), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8245), + [anon_sym_PLUS] = ACTIONS(8247), + [anon_sym_DASH] = ACTIONS(8249), + [anon_sym_AMP] = ACTIONS(8251), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8253), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8255), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(8257), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3582)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(8241), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token3] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8235), + [anon_sym_SLASH] = ACTIONS(8241), + [anon_sym_BSLASH] = ACTIONS(8243), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8245), + [anon_sym_PLUS] = ACTIONS(8247), + [anon_sym_DASH] = ACTIONS(8249), + [anon_sym_AMP] = ACTIONS(8251), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8253), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8255), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(8257), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(8259), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3583)] = { + [sym_do_condition] = STATE(4125), + [sym_identifier] = ACTIONS(8423), + [sym_newline] = ACTIONS(8425), + [anon_sym_COLON] = ACTIONS(8425), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8423), + [aux_sym_frm_property_statement_token1] = ACTIONS(8423), + [anon_sym_DOT] = ACTIONS(8423), + [anon_sym_BANG] = ACTIONS(8425), + [aux_sym__attribute_identifier_token1] = ACTIONS(8423), + [aux_sym_option_statement_token3] = ACTIONS(8423), + [aux_sym_type_declaration_token1] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8423), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8423), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8423), + [aux_sym_enum_declaration_token1] = ACTIONS(8423), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8423), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8423), + [aux_sym_declare_function_statement_token1] = ACTIONS(8423), + [aux_sym_preprocessor_const_token1] = ACTIONS(8423), + [aux_sym__property_get_header_token1] = ACTIONS(8423), + [aux_sym_event_declaration_token1] = ACTIONS(8423), + [sym_static_modifier] = ACTIONS(8423), + [sym__dim_keyword] = ACTIONS(8423), + [sym__redim_keyword] = ACTIONS(8423), + [aux_sym_get_accessor_token1] = ACTIONS(8423), + [aux_sym_set_accessor_token1] = ACTIONS(8423), + [aux_sym_const_declaration_token1] = ACTIONS(8423), + [anon_sym_LPAREN] = ACTIONS(8425), + [aux_sym_as_type_clause_token2] = ACTIONS(8423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8423), + [aux_sym_visibility_token1] = ACTIONS(8423), + [aux_sym_visibility_token2] = ACTIONS(8423), + [aux_sym_elseif_fragment_token1] = ACTIONS(8423), + [aux_sym_else_fragment_token1] = ACTIONS(8423), + [aux_sym_select_statement_token1] = ACTIONS(8423), + [aux_sym__for_header_token1] = ACTIONS(8423), + [aux_sym_do_statement_token1] = ACTIONS(8423), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8423), + [aux_sym_exit_statement_token1] = ACTIONS(8423), + [sym_end_statement] = ACTIONS(8425), + [aux_sym_on_goto_statement_token1] = ACTIONS(8423), + [aux_sym_on_goto_statement_token2] = ACTIONS(8423), + [aux_sym_on_error_statement_token2] = ACTIONS(8423), + [sym__ambiguous_redim_statement] = ACTIONS(8425), + [aux_sym_erase_statement_token1] = ACTIONS(8423), + [aux_sym_open_statement_token1] = ACTIONS(8423), + [aux_sym_file_mode_token2] = ACTIONS(8423), + [aux_sym_file_access_token2] = ACTIONS(8423), + [aux_sym_file_lock_token2] = ACTIONS(8423), + [aux_sym_print_statement_token1] = ACTIONS(8423), + [anon_sym_PLUS] = ACTIONS(8425), + [anon_sym_DASH] = ACTIONS(8423), + [anon_sym_QMARK] = ACTIONS(8425), + [aux_sym_close_statement_token1] = ACTIONS(8423), + [aux_sym_put_statement_token1] = ACTIONS(8423), + [aux_sym_unlock_statement_token1] = ACTIONS(8423), + [aux_sym_seek_statement_token1] = ACTIONS(8423), + [sym_reset_statement] = ACTIONS(8423), + [aux_sym_raise_event_statement_token1] = ACTIONS(8423), + [sym_stop_statement] = ACTIONS(8423), + [sym_beep_statement] = ACTIONS(8423), + [aux_sym_unload_statement_token1] = ACTIONS(8423), + [aux_sym_def_type_statement_token1] = ACTIONS(8423), + [aux_sym_def_type_statement_token2] = ACTIONS(8423), + [aux_sym_def_type_statement_token3] = ACTIONS(8423), + [aux_sym_def_type_statement_token4] = ACTIONS(8423), + [aux_sym_def_type_statement_token5] = ACTIONS(8423), + [aux_sym_def_type_statement_token6] = ACTIONS(8423), + [aux_sym_def_type_statement_token7] = ACTIONS(8423), + [aux_sym_def_type_statement_token8] = ACTIONS(8423), + [aux_sym_def_type_statement_token9] = ACTIONS(8423), + [aux_sym_def_type_statement_token10] = ACTIONS(8423), + [aux_sym_def_type_statement_token11] = ACTIONS(8423), + [aux_sym_def_type_statement_token12] = ACTIONS(8423), + [aux_sym_def_type_statement_token13] = ACTIONS(8423), + [aux_sym_def_type_statement_token14] = ACTIONS(8423), + [aux_sym_call_statement_token1] = ACTIONS(8423), + [sym__ambiguous_call_statement] = ACTIONS(8423), + [aux_sym_addressof_expression_token1] = ACTIONS(8423), + [aux_sym_type_of_expression_token1] = ACTIONS(8423), + [aux_sym_unary_expression_token1] = ACTIONS(8423), + [sym_string_literal] = ACTIONS(8425), + [sym_number_literal] = ACTIONS(8425), + [aux_sym_boolean_literal_token1] = ACTIONS(8423), + [aux_sym_boolean_literal_token2] = ACTIONS(8423), + [sym_nothing_literal] = ACTIONS(8423), + [sym_null_literal] = ACTIONS(8423), + [sym_empty_literal] = ACTIONS(8423), + [sym_date_literal] = ACTIONS(8425), + [anon_sym_POUND] = ACTIONS(8423), + }, + [STATE(3584)] = { + [sym_do_condition] = STATE(4135), + [sym_identifier] = ACTIONS(8427), + [sym_newline] = ACTIONS(8429), + [anon_sym_COLON] = ACTIONS(8429), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8427), + [aux_sym_frm_property_statement_token1] = ACTIONS(8427), + [anon_sym_DOT] = ACTIONS(8427), + [anon_sym_BANG] = ACTIONS(8429), + [aux_sym__attribute_identifier_token1] = ACTIONS(8427), + [aux_sym_option_statement_token3] = ACTIONS(8427), + [aux_sym_type_declaration_token1] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8427), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8427), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8427), + [aux_sym_enum_declaration_token1] = ACTIONS(8427), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8427), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8427), + [aux_sym_declare_function_statement_token1] = ACTIONS(8427), + [aux_sym_preprocessor_const_token1] = ACTIONS(8427), + [aux_sym__property_get_header_token1] = ACTIONS(8427), + [aux_sym_event_declaration_token1] = ACTIONS(8427), + [sym_static_modifier] = ACTIONS(8427), + [sym__dim_keyword] = ACTIONS(8427), + [sym__redim_keyword] = ACTIONS(8427), + [aux_sym_get_accessor_token1] = ACTIONS(8427), + [aux_sym_set_accessor_token1] = ACTIONS(8427), + [aux_sym_const_declaration_token1] = ACTIONS(8427), + [anon_sym_LPAREN] = ACTIONS(8429), + [aux_sym_as_type_clause_token2] = ACTIONS(8427), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8427), + [aux_sym_visibility_token1] = ACTIONS(8427), + [aux_sym_visibility_token2] = ACTIONS(8427), + [aux_sym_elseif_fragment_token1] = ACTIONS(8427), + [aux_sym_else_fragment_token1] = ACTIONS(8427), + [aux_sym_select_statement_token1] = ACTIONS(8427), + [aux_sym__for_header_token1] = ACTIONS(8427), + [aux_sym_do_statement_token1] = ACTIONS(8427), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8427), + [aux_sym_exit_statement_token1] = ACTIONS(8427), + [sym_end_statement] = ACTIONS(8429), + [aux_sym_on_goto_statement_token1] = ACTIONS(8427), + [aux_sym_on_goto_statement_token2] = ACTIONS(8427), + [aux_sym_on_error_statement_token2] = ACTIONS(8427), + [sym__ambiguous_redim_statement] = ACTIONS(8429), + [aux_sym_erase_statement_token1] = ACTIONS(8427), + [aux_sym_open_statement_token1] = ACTIONS(8427), + [aux_sym_file_mode_token2] = ACTIONS(8427), + [aux_sym_file_access_token2] = ACTIONS(8427), + [aux_sym_file_lock_token2] = ACTIONS(8427), + [aux_sym_print_statement_token1] = ACTIONS(8427), + [anon_sym_PLUS] = ACTIONS(8429), + [anon_sym_DASH] = ACTIONS(8427), + [anon_sym_QMARK] = ACTIONS(8429), + [aux_sym_close_statement_token1] = ACTIONS(8427), + [aux_sym_put_statement_token1] = ACTIONS(8427), + [aux_sym_unlock_statement_token1] = ACTIONS(8427), + [aux_sym_seek_statement_token1] = ACTIONS(8427), + [sym_reset_statement] = ACTIONS(8427), + [aux_sym_raise_event_statement_token1] = ACTIONS(8427), + [sym_stop_statement] = ACTIONS(8427), + [sym_beep_statement] = ACTIONS(8427), + [aux_sym_unload_statement_token1] = ACTIONS(8427), + [aux_sym_def_type_statement_token1] = ACTIONS(8427), + [aux_sym_def_type_statement_token2] = ACTIONS(8427), + [aux_sym_def_type_statement_token3] = ACTIONS(8427), + [aux_sym_def_type_statement_token4] = ACTIONS(8427), + [aux_sym_def_type_statement_token5] = ACTIONS(8427), + [aux_sym_def_type_statement_token6] = ACTIONS(8427), + [aux_sym_def_type_statement_token7] = ACTIONS(8427), + [aux_sym_def_type_statement_token8] = ACTIONS(8427), + [aux_sym_def_type_statement_token9] = ACTIONS(8427), + [aux_sym_def_type_statement_token10] = ACTIONS(8427), + [aux_sym_def_type_statement_token11] = ACTIONS(8427), + [aux_sym_def_type_statement_token12] = ACTIONS(8427), + [aux_sym_def_type_statement_token13] = ACTIONS(8427), + [aux_sym_def_type_statement_token14] = ACTIONS(8427), + [aux_sym_call_statement_token1] = ACTIONS(8427), + [sym__ambiguous_call_statement] = ACTIONS(8427), + [aux_sym_addressof_expression_token1] = ACTIONS(8427), + [aux_sym_type_of_expression_token1] = ACTIONS(8427), + [aux_sym_unary_expression_token1] = ACTIONS(8427), + [sym_string_literal] = ACTIONS(8429), + [sym_number_literal] = ACTIONS(8429), + [aux_sym_boolean_literal_token1] = ACTIONS(8427), + [aux_sym_boolean_literal_token2] = ACTIONS(8427), + [sym_nothing_literal] = ACTIONS(8427), + [sym_null_literal] = ACTIONS(8427), + [sym_empty_literal] = ACTIONS(8427), + [sym_date_literal] = ACTIONS(8429), + [anon_sym_POUND] = ACTIONS(8427), + }, + [STATE(3585)] = { + [sym_do_condition] = STATE(4140), + [sym_identifier] = ACTIONS(8431), + [sym_newline] = ACTIONS(8433), + [anon_sym_COLON] = ACTIONS(8433), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8431), + [aux_sym_frm_property_statement_token1] = ACTIONS(8431), + [anon_sym_DOT] = ACTIONS(8431), + [anon_sym_BANG] = ACTIONS(8433), + [aux_sym__attribute_identifier_token1] = ACTIONS(8431), + [aux_sym_option_statement_token3] = ACTIONS(8431), + [aux_sym_type_declaration_token1] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8431), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8431), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8431), + [aux_sym_enum_declaration_token1] = ACTIONS(8431), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8431), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8431), + [aux_sym_declare_function_statement_token1] = ACTIONS(8431), + [aux_sym_preprocessor_const_token1] = ACTIONS(8431), + [aux_sym__property_get_header_token1] = ACTIONS(8431), + [aux_sym_event_declaration_token1] = ACTIONS(8431), + [sym_static_modifier] = ACTIONS(8431), + [sym__dim_keyword] = ACTIONS(8431), + [sym__redim_keyword] = ACTIONS(8431), + [aux_sym_get_accessor_token1] = ACTIONS(8431), + [aux_sym_set_accessor_token1] = ACTIONS(8431), + [aux_sym_const_declaration_token1] = ACTIONS(8431), + [anon_sym_LPAREN] = ACTIONS(8433), + [aux_sym_as_type_clause_token2] = ACTIONS(8431), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8431), + [aux_sym_visibility_token1] = ACTIONS(8431), + [aux_sym_visibility_token2] = ACTIONS(8431), + [aux_sym_elseif_fragment_token1] = ACTIONS(8431), + [aux_sym_else_fragment_token1] = ACTIONS(8431), + [aux_sym_select_statement_token1] = ACTIONS(8431), + [aux_sym__for_header_token1] = ACTIONS(8431), + [aux_sym_do_statement_token1] = ACTIONS(8431), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8431), + [aux_sym_exit_statement_token1] = ACTIONS(8431), + [sym_end_statement] = ACTIONS(8433), + [aux_sym_on_goto_statement_token1] = ACTIONS(8431), + [aux_sym_on_goto_statement_token2] = ACTIONS(8431), + [aux_sym_on_error_statement_token2] = ACTIONS(8431), + [sym__ambiguous_redim_statement] = ACTIONS(8433), + [aux_sym_erase_statement_token1] = ACTIONS(8431), + [aux_sym_open_statement_token1] = ACTIONS(8431), + [aux_sym_file_mode_token2] = ACTIONS(8431), + [aux_sym_file_access_token2] = ACTIONS(8431), + [aux_sym_file_lock_token2] = ACTIONS(8431), + [aux_sym_print_statement_token1] = ACTIONS(8431), + [anon_sym_PLUS] = ACTIONS(8433), + [anon_sym_DASH] = ACTIONS(8431), + [anon_sym_QMARK] = ACTIONS(8433), + [aux_sym_close_statement_token1] = ACTIONS(8431), + [aux_sym_put_statement_token1] = ACTIONS(8431), + [aux_sym_unlock_statement_token1] = ACTIONS(8431), + [aux_sym_seek_statement_token1] = ACTIONS(8431), + [sym_reset_statement] = ACTIONS(8431), + [aux_sym_raise_event_statement_token1] = ACTIONS(8431), + [sym_stop_statement] = ACTIONS(8431), + [sym_beep_statement] = ACTIONS(8431), + [aux_sym_unload_statement_token1] = ACTIONS(8431), + [aux_sym_def_type_statement_token1] = ACTIONS(8431), + [aux_sym_def_type_statement_token2] = ACTIONS(8431), + [aux_sym_def_type_statement_token3] = ACTIONS(8431), + [aux_sym_def_type_statement_token4] = ACTIONS(8431), + [aux_sym_def_type_statement_token5] = ACTIONS(8431), + [aux_sym_def_type_statement_token6] = ACTIONS(8431), + [aux_sym_def_type_statement_token7] = ACTIONS(8431), + [aux_sym_def_type_statement_token8] = ACTIONS(8431), + [aux_sym_def_type_statement_token9] = ACTIONS(8431), + [aux_sym_def_type_statement_token10] = ACTIONS(8431), + [aux_sym_def_type_statement_token11] = ACTIONS(8431), + [aux_sym_def_type_statement_token12] = ACTIONS(8431), + [aux_sym_def_type_statement_token13] = ACTIONS(8431), + [aux_sym_def_type_statement_token14] = ACTIONS(8431), + [aux_sym_call_statement_token1] = ACTIONS(8431), + [sym__ambiguous_call_statement] = ACTIONS(8431), + [aux_sym_addressof_expression_token1] = ACTIONS(8431), + [aux_sym_type_of_expression_token1] = ACTIONS(8431), + [aux_sym_unary_expression_token1] = ACTIONS(8431), + [sym_string_literal] = ACTIONS(8433), + [sym_number_literal] = ACTIONS(8433), + [aux_sym_boolean_literal_token1] = ACTIONS(8431), + [aux_sym_boolean_literal_token2] = ACTIONS(8431), + [sym_nothing_literal] = ACTIONS(8431), + [sym_null_literal] = ACTIONS(8431), + [sym_empty_literal] = ACTIONS(8431), + [sym_date_literal] = ACTIONS(8433), + [anon_sym_POUND] = ACTIONS(8431), + }, + [STATE(3586)] = { + [aux_sym__argument_sequence_repeat2] = STATE(3477), + [sym_identifier] = ACTIONS(8435), + [sym_newline] = ACTIONS(8437), + [anon_sym_COLON] = ACTIONS(8437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8435), + [aux_sym_frm_property_statement_token1] = ACTIONS(8435), + [anon_sym_DOT] = ACTIONS(8435), + [anon_sym_BANG] = ACTIONS(8437), + [aux_sym__attribute_identifier_token1] = ACTIONS(8435), + [aux_sym_option_statement_token3] = ACTIONS(8435), + [aux_sym_type_declaration_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8435), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8435), + [aux_sym_enum_declaration_token1] = ACTIONS(8435), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8435), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8435), + [aux_sym_declare_function_statement_token1] = ACTIONS(8435), + [aux_sym_preprocessor_const_token1] = ACTIONS(8435), + [aux_sym__property_get_header_token1] = ACTIONS(8435), + [aux_sym_event_declaration_token1] = ACTIONS(8435), + [sym_static_modifier] = ACTIONS(8435), + [sym__dim_keyword] = ACTIONS(8435), + [sym__redim_keyword] = ACTIONS(8435), + [aux_sym_get_accessor_token1] = ACTIONS(8435), + [aux_sym_set_accessor_token1] = ACTIONS(8435), + [anon_sym_COMMA] = ACTIONS(4168), + [aux_sym_const_declaration_token1] = ACTIONS(8435), + [anon_sym_LPAREN] = ACTIONS(8437), + [aux_sym_as_type_clause_token2] = ACTIONS(8435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8435), + [aux_sym_visibility_token1] = ACTIONS(8435), + [aux_sym_visibility_token2] = ACTIONS(8435), + [aux_sym_elseif_fragment_token1] = ACTIONS(8435), + [aux_sym_else_fragment_token1] = ACTIONS(8435), + [aux_sym_select_statement_token1] = ACTIONS(8435), + [aux_sym__for_header_token1] = ACTIONS(8435), + [aux_sym_do_statement_token1] = ACTIONS(8435), + [aux_sym_do_condition_token1] = ACTIONS(8435), + [aux_sym_with_statement_token1] = ACTIONS(8435), + [aux_sym_exit_statement_token1] = ACTIONS(8435), + [sym_end_statement] = ACTIONS(8437), + [aux_sym_on_goto_statement_token1] = ACTIONS(8435), + [aux_sym_on_goto_statement_token2] = ACTIONS(8435), + [aux_sym_on_error_statement_token2] = ACTIONS(8435), + [sym__ambiguous_redim_statement] = ACTIONS(8437), + [aux_sym_erase_statement_token1] = ACTIONS(8435), + [aux_sym_open_statement_token1] = ACTIONS(8435), + [aux_sym_file_mode_token2] = ACTIONS(8435), + [aux_sym_file_access_token2] = ACTIONS(8435), + [aux_sym_file_lock_token2] = ACTIONS(8435), + [aux_sym_print_statement_token1] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(8437), + [anon_sym_DASH] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8437), + [aux_sym_close_statement_token1] = ACTIONS(8435), + [aux_sym_put_statement_token1] = ACTIONS(8435), + [aux_sym_unlock_statement_token1] = ACTIONS(8435), + [aux_sym_seek_statement_token1] = ACTIONS(8435), + [sym_reset_statement] = ACTIONS(8435), + [aux_sym_raise_event_statement_token1] = ACTIONS(8435), + [sym_stop_statement] = ACTIONS(8435), + [sym_beep_statement] = ACTIONS(8435), + [aux_sym_unload_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token2] = ACTIONS(8435), + [aux_sym_def_type_statement_token3] = ACTIONS(8435), + [aux_sym_def_type_statement_token4] = ACTIONS(8435), + [aux_sym_def_type_statement_token5] = ACTIONS(8435), + [aux_sym_def_type_statement_token6] = ACTIONS(8435), + [aux_sym_def_type_statement_token7] = ACTIONS(8435), + [aux_sym_def_type_statement_token8] = ACTIONS(8435), + [aux_sym_def_type_statement_token9] = ACTIONS(8435), + [aux_sym_def_type_statement_token10] = ACTIONS(8435), + [aux_sym_def_type_statement_token11] = ACTIONS(8435), + [aux_sym_def_type_statement_token12] = ACTIONS(8435), + [aux_sym_def_type_statement_token13] = ACTIONS(8435), + [aux_sym_def_type_statement_token14] = ACTIONS(8435), + [aux_sym_call_statement_token1] = ACTIONS(8435), + [sym__ambiguous_call_statement] = ACTIONS(8435), + [aux_sym_addressof_expression_token1] = ACTIONS(8435), + [aux_sym_type_of_expression_token1] = ACTIONS(8435), + [aux_sym_unary_expression_token1] = ACTIONS(8435), + [sym_string_literal] = ACTIONS(8437), + [sym_number_literal] = ACTIONS(8437), + [aux_sym_boolean_literal_token1] = ACTIONS(8435), + [aux_sym_boolean_literal_token2] = ACTIONS(8435), + [sym_nothing_literal] = ACTIONS(8435), + [sym_null_literal] = ACTIONS(8435), + [sym_empty_literal] = ACTIONS(8435), + [sym_date_literal] = ACTIONS(8437), + [anon_sym_POUND] = ACTIONS(8435), + }, + [STATE(3587)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token3] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3588)] = { + [sym_identifier] = ACTIONS(6340), + [sym_newline] = ACTIONS(6342), + [anon_sym_COLON] = ACTIONS(6342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6340), + [aux_sym_frm_property_statement_token1] = ACTIONS(6340), + [anon_sym_DOT] = ACTIONS(6340), + [anon_sym_BANG] = ACTIONS(6342), + [aux_sym__attribute_identifier_token1] = ACTIONS(6340), + [aux_sym_option_statement_token3] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6340), + [aux_sym_preprocessor_const_token1] = ACTIONS(6340), + [sym_static_modifier] = ACTIONS(6340), + [sym__dim_keyword] = ACTIONS(6340), + [sym__redim_keyword] = ACTIONS(6340), + [aux_sym_get_accessor_token1] = ACTIONS(6340), + [aux_sym_set_accessor_token1] = ACTIONS(6340), + [aux_sym_const_declaration_token1] = ACTIONS(6340), + [anon_sym_LPAREN] = ACTIONS(6342), + [aux_sym_as_type_clause_token2] = ACTIONS(6340), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6340), + [aux_sym_visibility_token1] = ACTIONS(6340), + [aux_sym_visibility_token2] = ACTIONS(6340), + [aux_sym_elseif_fragment_token1] = ACTIONS(6340), + [aux_sym_else_fragment_token1] = ACTIONS(6340), + [aux_sym_select_statement_token1] = ACTIONS(6340), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6340), + [aux_sym__for_header_token1] = ACTIONS(6340), + [aux_sym_do_statement_token1] = ACTIONS(6340), + [aux_sym_do_condition_token1] = ACTIONS(6340), + [aux_sym_with_statement_token1] = ACTIONS(6340), + [aux_sym_exit_statement_token1] = ACTIONS(6340), + [sym_end_statement] = ACTIONS(6342), + [aux_sym_on_goto_statement_token1] = ACTIONS(6340), + [aux_sym_on_goto_statement_token2] = ACTIONS(6340), + [aux_sym_on_error_statement_token2] = ACTIONS(6340), + [sym__ambiguous_redim_statement] = ACTIONS(6342), + [aux_sym_erase_statement_token1] = ACTIONS(6340), + [aux_sym_open_statement_token1] = ACTIONS(6340), + [aux_sym_file_mode_token2] = ACTIONS(6340), + [aux_sym_file_access_token2] = ACTIONS(6340), + [aux_sym_file_lock_token2] = ACTIONS(6340), + [aux_sym_print_statement_token1] = ACTIONS(6340), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(6342), + [aux_sym_close_statement_token1] = ACTIONS(6340), + [aux_sym_put_statement_token1] = ACTIONS(6340), + [aux_sym_unlock_statement_token1] = ACTIONS(6340), + [aux_sym_seek_statement_token1] = ACTIONS(6340), + [sym_reset_statement] = ACTIONS(6340), + [aux_sym_raise_event_statement_token1] = ACTIONS(6340), + [sym_stop_statement] = ACTIONS(6340), + [sym_beep_statement] = ACTIONS(6340), + [aux_sym_unload_statement_token1] = ACTIONS(6340), + [aux_sym_def_type_statement_token1] = ACTIONS(6340), + [aux_sym_def_type_statement_token2] = ACTIONS(6340), + [aux_sym_def_type_statement_token3] = ACTIONS(6340), + [aux_sym_def_type_statement_token4] = ACTIONS(6340), + [aux_sym_def_type_statement_token5] = ACTIONS(6340), + [aux_sym_def_type_statement_token6] = ACTIONS(6340), + [aux_sym_def_type_statement_token7] = ACTIONS(6340), + [aux_sym_def_type_statement_token8] = ACTIONS(6340), + [aux_sym_def_type_statement_token9] = ACTIONS(6340), + [aux_sym_def_type_statement_token10] = ACTIONS(6340), + [aux_sym_def_type_statement_token11] = ACTIONS(6340), + [aux_sym_def_type_statement_token12] = ACTIONS(6340), + [aux_sym_def_type_statement_token13] = ACTIONS(6340), + [aux_sym_def_type_statement_token14] = ACTIONS(6340), + [aux_sym_call_statement_token1] = ACTIONS(6340), + [sym__ambiguous_call_statement] = ACTIONS(6340), + [aux_sym_addressof_expression_token1] = ACTIONS(6340), + [aux_sym_type_of_expression_token1] = ACTIONS(6340), + [aux_sym_unary_expression_token1] = ACTIONS(6340), + [sym_string_literal] = ACTIONS(6342), + [sym_number_literal] = ACTIONS(6342), + [aux_sym_boolean_literal_token1] = ACTIONS(6340), + [aux_sym_boolean_literal_token2] = ACTIONS(6340), + [sym_nothing_literal] = ACTIONS(6340), + [sym_null_literal] = ACTIONS(6340), + [sym_empty_literal] = ACTIONS(6340), + [sym_date_literal] = ACTIONS(6342), + [anon_sym_POUND] = ACTIONS(6340), + }, + [STATE(3589)] = { + [sym_identifier] = ACTIONS(6324), + [sym_newline] = ACTIONS(6326), + [anon_sym_COLON] = ACTIONS(6326), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6324), + [aux_sym_frm_property_statement_token1] = ACTIONS(6324), + [anon_sym_DOT] = ACTIONS(6324), + [anon_sym_BANG] = ACTIONS(6326), + [aux_sym__attribute_identifier_token1] = ACTIONS(6324), + [aux_sym_option_statement_token3] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6324), + [aux_sym_preprocessor_const_token1] = ACTIONS(6324), + [sym_static_modifier] = ACTIONS(6324), + [sym__dim_keyword] = ACTIONS(6324), + [sym__redim_keyword] = ACTIONS(6324), + [aux_sym_get_accessor_token1] = ACTIONS(6324), + [aux_sym_set_accessor_token1] = ACTIONS(6324), + [aux_sym_const_declaration_token1] = ACTIONS(6324), + [anon_sym_LPAREN] = ACTIONS(6326), + [aux_sym_as_type_clause_token2] = ACTIONS(6324), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6324), + [aux_sym_visibility_token1] = ACTIONS(6324), + [aux_sym_visibility_token2] = ACTIONS(6324), + [aux_sym_elseif_fragment_token1] = ACTIONS(6324), + [aux_sym_else_fragment_token1] = ACTIONS(6324), + [aux_sym_select_statement_token1] = ACTIONS(6324), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6324), + [aux_sym__for_header_token1] = ACTIONS(6324), + [aux_sym_do_statement_token1] = ACTIONS(6324), + [aux_sym_do_condition_token1] = ACTIONS(6324), + [aux_sym_with_statement_token1] = ACTIONS(6324), + [aux_sym_exit_statement_token1] = ACTIONS(6324), + [sym_end_statement] = ACTIONS(6326), + [aux_sym_on_goto_statement_token1] = ACTIONS(6324), + [aux_sym_on_goto_statement_token2] = ACTIONS(6324), + [aux_sym_on_error_statement_token2] = ACTIONS(6324), + [sym__ambiguous_redim_statement] = ACTIONS(6326), + [aux_sym_erase_statement_token1] = ACTIONS(6324), + [aux_sym_open_statement_token1] = ACTIONS(6324), + [aux_sym_file_mode_token2] = ACTIONS(6324), + [aux_sym_file_access_token2] = ACTIONS(6324), + [aux_sym_file_lock_token2] = ACTIONS(6324), + [aux_sym_print_statement_token1] = ACTIONS(6324), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(6326), + [aux_sym_close_statement_token1] = ACTIONS(6324), + [aux_sym_put_statement_token1] = ACTIONS(6324), + [aux_sym_unlock_statement_token1] = ACTIONS(6324), + [aux_sym_seek_statement_token1] = ACTIONS(6324), + [sym_reset_statement] = ACTIONS(6324), + [aux_sym_raise_event_statement_token1] = ACTIONS(6324), + [sym_stop_statement] = ACTIONS(6324), + [sym_beep_statement] = ACTIONS(6324), + [aux_sym_unload_statement_token1] = ACTIONS(6324), + [aux_sym_def_type_statement_token1] = ACTIONS(6324), + [aux_sym_def_type_statement_token2] = ACTIONS(6324), + [aux_sym_def_type_statement_token3] = ACTIONS(6324), + [aux_sym_def_type_statement_token4] = ACTIONS(6324), + [aux_sym_def_type_statement_token5] = ACTIONS(6324), + [aux_sym_def_type_statement_token6] = ACTIONS(6324), + [aux_sym_def_type_statement_token7] = ACTIONS(6324), + [aux_sym_def_type_statement_token8] = ACTIONS(6324), + [aux_sym_def_type_statement_token9] = ACTIONS(6324), + [aux_sym_def_type_statement_token10] = ACTIONS(6324), + [aux_sym_def_type_statement_token11] = ACTIONS(6324), + [aux_sym_def_type_statement_token12] = ACTIONS(6324), + [aux_sym_def_type_statement_token13] = ACTIONS(6324), + [aux_sym_def_type_statement_token14] = ACTIONS(6324), + [aux_sym_call_statement_token1] = ACTIONS(6324), + [sym__ambiguous_call_statement] = ACTIONS(6324), + [aux_sym_addressof_expression_token1] = ACTIONS(6324), + [aux_sym_type_of_expression_token1] = ACTIONS(6324), + [aux_sym_unary_expression_token1] = ACTIONS(6324), + [sym_string_literal] = ACTIONS(6326), + [sym_number_literal] = ACTIONS(6326), + [aux_sym_boolean_literal_token1] = ACTIONS(6324), + [aux_sym_boolean_literal_token2] = ACTIONS(6324), + [sym_nothing_literal] = ACTIONS(6324), + [sym_null_literal] = ACTIONS(6324), + [sym_empty_literal] = ACTIONS(6324), + [sym_date_literal] = ACTIONS(6326), + [anon_sym_POUND] = ACTIONS(6324), + }, + [STATE(3590)] = { + [sym_identifier] = ACTIONS(6304), + [sym_newline] = ACTIONS(6306), + [anon_sym_COLON] = ACTIONS(6306), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6304), + [aux_sym_frm_property_statement_token1] = ACTIONS(6304), + [anon_sym_DOT] = ACTIONS(6304), + [anon_sym_BANG] = ACTIONS(6306), + [aux_sym__attribute_identifier_token1] = ACTIONS(6304), + [aux_sym_option_statement_token3] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6304), + [aux_sym_preprocessor_const_token1] = ACTIONS(6304), + [sym_static_modifier] = ACTIONS(6304), + [sym__dim_keyword] = ACTIONS(6304), + [sym__redim_keyword] = ACTIONS(6304), + [aux_sym_get_accessor_token1] = ACTIONS(6304), + [aux_sym_set_accessor_token1] = ACTIONS(6304), + [aux_sym_const_declaration_token1] = ACTIONS(6304), + [anon_sym_LPAREN] = ACTIONS(6306), + [aux_sym_as_type_clause_token2] = ACTIONS(6304), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6304), + [aux_sym_visibility_token1] = ACTIONS(6304), + [aux_sym_visibility_token2] = ACTIONS(6304), + [aux_sym_elseif_fragment_token1] = ACTIONS(6304), + [aux_sym_else_fragment_token1] = ACTIONS(6304), + [aux_sym_select_statement_token1] = ACTIONS(6304), + [aux_sym__for_header_token1] = ACTIONS(6304), + [aux_sym_do_statement_token1] = ACTIONS(6304), + [aux_sym_do_statement_token2] = ACTIONS(6304), + [aux_sym_do_condition_token1] = ACTIONS(6304), + [aux_sym_with_statement_token1] = ACTIONS(6304), + [aux_sym_exit_statement_token1] = ACTIONS(6304), + [sym_end_statement] = ACTIONS(6306), + [aux_sym_on_goto_statement_token1] = ACTIONS(6304), + [aux_sym_on_goto_statement_token2] = ACTIONS(6304), + [aux_sym_on_error_statement_token2] = ACTIONS(6304), + [sym__ambiguous_redim_statement] = ACTIONS(6306), + [aux_sym_erase_statement_token1] = ACTIONS(6304), + [aux_sym_open_statement_token1] = ACTIONS(6304), + [aux_sym_file_mode_token2] = ACTIONS(6304), + [aux_sym_file_access_token2] = ACTIONS(6304), + [aux_sym_file_lock_token2] = ACTIONS(6304), + [aux_sym_print_statement_token1] = ACTIONS(6304), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_QMARK] = ACTIONS(6306), + [aux_sym_close_statement_token1] = ACTIONS(6304), + [aux_sym_put_statement_token1] = ACTIONS(6304), + [aux_sym_unlock_statement_token1] = ACTIONS(6304), + [aux_sym_seek_statement_token1] = ACTIONS(6304), + [sym_reset_statement] = ACTIONS(6304), + [aux_sym_raise_event_statement_token1] = ACTIONS(6304), + [sym_stop_statement] = ACTIONS(6304), + [sym_beep_statement] = ACTIONS(6304), + [aux_sym_unload_statement_token1] = ACTIONS(6304), + [aux_sym_def_type_statement_token1] = ACTIONS(6304), + [aux_sym_def_type_statement_token2] = ACTIONS(6304), + [aux_sym_def_type_statement_token3] = ACTIONS(6304), + [aux_sym_def_type_statement_token4] = ACTIONS(6304), + [aux_sym_def_type_statement_token5] = ACTIONS(6304), + [aux_sym_def_type_statement_token6] = ACTIONS(6304), + [aux_sym_def_type_statement_token7] = ACTIONS(6304), + [aux_sym_def_type_statement_token8] = ACTIONS(6304), + [aux_sym_def_type_statement_token9] = ACTIONS(6304), + [aux_sym_def_type_statement_token10] = ACTIONS(6304), + [aux_sym_def_type_statement_token11] = ACTIONS(6304), + [aux_sym_def_type_statement_token12] = ACTIONS(6304), + [aux_sym_def_type_statement_token13] = ACTIONS(6304), + [aux_sym_def_type_statement_token14] = ACTIONS(6304), + [aux_sym_call_statement_token1] = ACTIONS(6304), + [sym__ambiguous_call_statement] = ACTIONS(6304), + [aux_sym_addressof_expression_token1] = ACTIONS(6304), + [aux_sym_type_of_expression_token1] = ACTIONS(6304), + [aux_sym_unary_expression_token1] = ACTIONS(6304), + [sym_string_literal] = ACTIONS(6306), + [sym_number_literal] = ACTIONS(6306), + [aux_sym_boolean_literal_token1] = ACTIONS(6304), + [aux_sym_boolean_literal_token2] = ACTIONS(6304), + [sym_nothing_literal] = ACTIONS(6304), + [sym_null_literal] = ACTIONS(6304), + [sym_empty_literal] = ACTIONS(6304), + [sym_date_literal] = ACTIONS(6306), + [anon_sym_POUND] = ACTIONS(6304), + }, + [STATE(3591)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token3] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(3592)] = { + [sym_identifier] = ACTIONS(6621), + [sym_newline] = ACTIONS(6623), + [anon_sym_COLON] = ACTIONS(6623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6621), + [aux_sym_frm_property_statement_token1] = ACTIONS(6621), + [anon_sym_DOT] = ACTIONS(6621), + [anon_sym_BANG] = ACTIONS(6623), + [aux_sym__attribute_identifier_token1] = ACTIONS(6621), + [aux_sym_option_statement_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6621), + [aux_sym_preprocessor_const_token1] = ACTIONS(6621), + [sym_static_modifier] = ACTIONS(6621), + [sym__dim_keyword] = ACTIONS(6621), + [sym__redim_keyword] = ACTIONS(6621), + [aux_sym_get_accessor_token1] = ACTIONS(6621), + [aux_sym_set_accessor_token1] = ACTIONS(6621), + [aux_sym_const_declaration_token1] = ACTIONS(6621), + [anon_sym_LPAREN] = ACTIONS(6623), + [aux_sym_as_type_clause_token2] = ACTIONS(6621), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6621), + [aux_sym_visibility_token1] = ACTIONS(6621), + [aux_sym_visibility_token2] = ACTIONS(6621), + [aux_sym_elseif_fragment_token1] = ACTIONS(6621), + [aux_sym_else_fragment_token1] = ACTIONS(6621), + [aux_sym_select_statement_token1] = ACTIONS(6621), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6621), + [aux_sym__for_header_token1] = ACTIONS(6621), + [aux_sym_do_statement_token1] = ACTIONS(6621), + [aux_sym_do_condition_token1] = ACTIONS(6621), + [aux_sym_with_statement_token1] = ACTIONS(6621), + [aux_sym_exit_statement_token1] = ACTIONS(6621), + [sym_end_statement] = ACTIONS(6623), + [aux_sym_on_goto_statement_token1] = ACTIONS(6621), + [aux_sym_on_goto_statement_token2] = ACTIONS(6621), + [aux_sym_on_error_statement_token2] = ACTIONS(6621), + [sym__ambiguous_redim_statement] = ACTIONS(6623), + [aux_sym_erase_statement_token1] = ACTIONS(6621), + [aux_sym_open_statement_token1] = ACTIONS(6621), + [aux_sym_file_mode_token2] = ACTIONS(6621), + [aux_sym_file_access_token2] = ACTIONS(6621), + [aux_sym_file_lock_token2] = ACTIONS(6621), + [aux_sym_print_statement_token1] = ACTIONS(6621), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6162), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6164), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6166), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6168), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6170), + [anon_sym_QMARK] = ACTIONS(6623), + [aux_sym_close_statement_token1] = ACTIONS(6621), + [aux_sym_put_statement_token1] = ACTIONS(6621), + [aux_sym_unlock_statement_token1] = ACTIONS(6621), + [aux_sym_seek_statement_token1] = ACTIONS(6621), + [sym_reset_statement] = ACTIONS(6621), + [aux_sym_raise_event_statement_token1] = ACTIONS(6621), + [sym_stop_statement] = ACTIONS(6621), + [sym_beep_statement] = ACTIONS(6621), + [aux_sym_unload_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token2] = ACTIONS(6621), + [aux_sym_def_type_statement_token3] = ACTIONS(6621), + [aux_sym_def_type_statement_token4] = ACTIONS(6621), + [aux_sym_def_type_statement_token5] = ACTIONS(6621), + [aux_sym_def_type_statement_token6] = ACTIONS(6621), + [aux_sym_def_type_statement_token7] = ACTIONS(6621), + [aux_sym_def_type_statement_token8] = ACTIONS(6621), + [aux_sym_def_type_statement_token9] = ACTIONS(6621), + [aux_sym_def_type_statement_token10] = ACTIONS(6621), + [aux_sym_def_type_statement_token11] = ACTIONS(6621), + [aux_sym_def_type_statement_token12] = ACTIONS(6621), + [aux_sym_def_type_statement_token13] = ACTIONS(6621), + [aux_sym_def_type_statement_token14] = ACTIONS(6621), + [aux_sym_call_statement_token1] = ACTIONS(6621), + [sym__ambiguous_call_statement] = ACTIONS(6621), + [aux_sym_addressof_expression_token1] = ACTIONS(6621), + [aux_sym_type_of_expression_token1] = ACTIONS(6621), + [aux_sym_unary_expression_token1] = ACTIONS(6621), + [sym_string_literal] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [aux_sym_boolean_literal_token1] = ACTIONS(6621), + [aux_sym_boolean_literal_token2] = ACTIONS(6621), + [sym_nothing_literal] = ACTIONS(6621), + [sym_null_literal] = ACTIONS(6621), + [sym_empty_literal] = ACTIONS(6621), + [sym_date_literal] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6621), + }, + [STATE(3593)] = { + [aux_sym__argument_sequence_repeat2] = STATE(3637), + [sym_identifier] = ACTIONS(8435), + [sym_newline] = ACTIONS(8437), + [anon_sym_COLON] = ACTIONS(8437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8435), + [aux_sym_frm_property_statement_token1] = ACTIONS(8435), + [anon_sym_DOT] = ACTIONS(8435), + [anon_sym_BANG] = ACTIONS(8437), + [aux_sym__attribute_identifier_token1] = ACTIONS(8435), + [aux_sym_option_statement_token3] = ACTIONS(8435), + [aux_sym_type_declaration_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8435), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8435), + [aux_sym_enum_declaration_token1] = ACTIONS(8435), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8435), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8435), + [aux_sym_declare_function_statement_token1] = ACTIONS(8435), + [aux_sym_preprocessor_const_token1] = ACTIONS(8435), + [aux_sym__property_get_header_token1] = ACTIONS(8435), + [aux_sym_event_declaration_token1] = ACTIONS(8435), + [sym_static_modifier] = ACTIONS(8435), + [sym__dim_keyword] = ACTIONS(8435), + [sym__redim_keyword] = ACTIONS(8435), + [aux_sym_get_accessor_token1] = ACTIONS(8435), + [aux_sym_set_accessor_token1] = ACTIONS(8435), + [anon_sym_COMMA] = ACTIONS(4168), + [aux_sym_const_declaration_token1] = ACTIONS(8435), + [anon_sym_LPAREN] = ACTIONS(8437), + [aux_sym_as_type_clause_token2] = ACTIONS(8435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8435), + [aux_sym_visibility_token1] = ACTIONS(8435), + [aux_sym_visibility_token2] = ACTIONS(8435), + [aux_sym_elseif_fragment_token1] = ACTIONS(8435), + [aux_sym_else_fragment_token1] = ACTIONS(8435), + [aux_sym_select_statement_token1] = ACTIONS(8435), + [aux_sym__for_header_token1] = ACTIONS(8435), + [aux_sym_do_statement_token1] = ACTIONS(8435), + [aux_sym_do_condition_token1] = ACTIONS(8435), + [aux_sym_with_statement_token1] = ACTIONS(8435), + [aux_sym_exit_statement_token1] = ACTIONS(8435), + [sym_end_statement] = ACTIONS(8437), + [aux_sym_on_goto_statement_token1] = ACTIONS(8435), + [aux_sym_on_goto_statement_token2] = ACTIONS(8435), + [aux_sym_on_error_statement_token2] = ACTIONS(8435), + [sym__ambiguous_redim_statement] = ACTIONS(8437), + [aux_sym_erase_statement_token1] = ACTIONS(8435), + [aux_sym_open_statement_token1] = ACTIONS(8435), + [aux_sym_file_mode_token2] = ACTIONS(8435), + [aux_sym_file_access_token2] = ACTIONS(8435), + [aux_sym_file_lock_token2] = ACTIONS(8435), + [aux_sym_print_statement_token1] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(8437), + [anon_sym_DASH] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8437), + [aux_sym_close_statement_token1] = ACTIONS(8435), + [aux_sym_put_statement_token1] = ACTIONS(8435), + [aux_sym_unlock_statement_token1] = ACTIONS(8435), + [aux_sym_seek_statement_token1] = ACTIONS(8435), + [sym_reset_statement] = ACTIONS(8435), + [aux_sym_raise_event_statement_token1] = ACTIONS(8435), + [sym_stop_statement] = ACTIONS(8435), + [sym_beep_statement] = ACTIONS(8435), + [aux_sym_unload_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token2] = ACTIONS(8435), + [aux_sym_def_type_statement_token3] = ACTIONS(8435), + [aux_sym_def_type_statement_token4] = ACTIONS(8435), + [aux_sym_def_type_statement_token5] = ACTIONS(8435), + [aux_sym_def_type_statement_token6] = ACTIONS(8435), + [aux_sym_def_type_statement_token7] = ACTIONS(8435), + [aux_sym_def_type_statement_token8] = ACTIONS(8435), + [aux_sym_def_type_statement_token9] = ACTIONS(8435), + [aux_sym_def_type_statement_token10] = ACTIONS(8435), + [aux_sym_def_type_statement_token11] = ACTIONS(8435), + [aux_sym_def_type_statement_token12] = ACTIONS(8435), + [aux_sym_def_type_statement_token13] = ACTIONS(8435), + [aux_sym_def_type_statement_token14] = ACTIONS(8435), + [aux_sym_call_statement_token1] = ACTIONS(8435), + [sym__ambiguous_call_statement] = ACTIONS(8435), + [aux_sym_addressof_expression_token1] = ACTIONS(8435), + [aux_sym_type_of_expression_token1] = ACTIONS(8435), + [aux_sym_unary_expression_token1] = ACTIONS(8435), + [sym_string_literal] = ACTIONS(8437), + [sym_number_literal] = ACTIONS(8437), + [aux_sym_boolean_literal_token1] = ACTIONS(8435), + [aux_sym_boolean_literal_token2] = ACTIONS(8435), + [sym_nothing_literal] = ACTIONS(8435), + [sym_null_literal] = ACTIONS(8435), + [sym_empty_literal] = ACTIONS(8435), + [sym_date_literal] = ACTIONS(8437), + [anon_sym_POUND] = ACTIONS(8435), + }, + [STATE(3594)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token3] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(3595)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3596)] = { + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym__attribute_identifier_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [sym__redim_keyword] = ACTIONS(4437), + [aux_sym_get_accessor_token1] = ACTIONS(4437), + [aux_sym_set_accessor_token1] = ACTIONS(4437), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [aux_sym_as_type_clause_token2] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4437), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_elseif_fragment_token1] = ACTIONS(4437), + [aux_sym_else_fragment_token1] = ACTIONS(4437), + [aux_sym_select_statement_token1] = ACTIONS(4437), + [aux_sym__for_header_token1] = ACTIONS(4437), + [aux_sym_do_statement_token1] = ACTIONS(4437), + [aux_sym_do_condition_token1] = ACTIONS(4437), + [aux_sym_with_statement_token1] = ACTIONS(4437), + [aux_sym_exit_statement_token1] = ACTIONS(4437), + [sym_end_statement] = ACTIONS(4439), + [aux_sym_on_goto_statement_token1] = ACTIONS(4437), + [aux_sym_on_goto_statement_token2] = ACTIONS(4437), + [aux_sym_on_error_statement_token2] = ACTIONS(4437), + [sym__ambiguous_redim_statement] = ACTIONS(4439), + [aux_sym_erase_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token1] = ACTIONS(4437), + [aux_sym_open_statement_token3] = ACTIONS(4437), + [aux_sym_file_mode_token2] = ACTIONS(4437), + [aux_sym_file_access_token2] = ACTIONS(4437), + [aux_sym_file_lock_token2] = ACTIONS(4437), + [aux_sym_print_statement_token1] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4439), + [aux_sym_close_statement_token1] = ACTIONS(4437), + [aux_sym_put_statement_token1] = ACTIONS(4437), + [aux_sym_unlock_statement_token1] = ACTIONS(4437), + [aux_sym_seek_statement_token1] = ACTIONS(4437), + [sym_reset_statement] = ACTIONS(4437), + [aux_sym_raise_event_statement_token1] = ACTIONS(4437), + [sym_stop_statement] = ACTIONS(4437), + [sym_beep_statement] = ACTIONS(4437), + [aux_sym_unload_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_call_statement_token1] = ACTIONS(4437), + [sym__ambiguous_call_statement] = ACTIONS(4437), + [aux_sym_addressof_expression_token1] = ACTIONS(4437), + [aux_sym_type_of_expression_token1] = ACTIONS(4437), + [aux_sym_unary_expression_token1] = ACTIONS(4437), + [sym_string_literal] = ACTIONS(4439), + [sym_number_literal] = ACTIONS(4439), + [aux_sym_boolean_literal_token1] = ACTIONS(4437), + [aux_sym_boolean_literal_token2] = ACTIONS(4437), + [sym_nothing_literal] = ACTIONS(4437), + [sym_null_literal] = ACTIONS(4437), + [sym_empty_literal] = ACTIONS(4437), + [sym_date_literal] = ACTIONS(4439), + [anon_sym_POUND] = ACTIONS(4437), + }, + [STATE(3597)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(3598)] = { + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [anon_sym_COLON] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym__attribute_identifier_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [sym__redim_keyword] = ACTIONS(4613), + [aux_sym_get_accessor_token1] = ACTIONS(4613), + [aux_sym_set_accessor_token1] = ACTIONS(4613), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [aux_sym_as_type_clause_token2] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_array_bound_token1] = ACTIONS(4613), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4613), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_elseif_fragment_token1] = ACTIONS(4613), + [aux_sym_else_fragment_token1] = ACTIONS(4613), + [aux_sym_select_statement_token1] = ACTIONS(4613), + [aux_sym__for_header_token1] = ACTIONS(4613), + [aux_sym_do_statement_token1] = ACTIONS(4613), + [aux_sym_do_condition_token1] = ACTIONS(4613), + [aux_sym_with_statement_token1] = ACTIONS(4613), + [aux_sym_exit_statement_token1] = ACTIONS(4613), + [sym_end_statement] = ACTIONS(4615), + [aux_sym_on_goto_statement_token1] = ACTIONS(4613), + [aux_sym_on_goto_statement_token2] = ACTIONS(4613), + [aux_sym_on_error_statement_token2] = ACTIONS(4613), + [sym__ambiguous_redim_statement] = ACTIONS(4615), + [aux_sym_erase_statement_token1] = ACTIONS(4613), + [aux_sym_open_statement_token1] = ACTIONS(4613), + [aux_sym_file_mode_token2] = ACTIONS(4613), + [aux_sym_file_access_token2] = ACTIONS(4613), + [aux_sym_file_lock_token2] = ACTIONS(4613), + [aux_sym_print_statement_token1] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [anon_sym_QMARK] = ACTIONS(4615), + [aux_sym_close_statement_token1] = ACTIONS(4613), + [aux_sym_put_statement_token1] = ACTIONS(4613), + [aux_sym_unlock_statement_token1] = ACTIONS(4613), + [aux_sym_seek_statement_token1] = ACTIONS(4613), + [sym_reset_statement] = ACTIONS(4613), + [aux_sym_raise_event_statement_token1] = ACTIONS(4613), + [sym_stop_statement] = ACTIONS(4613), + [sym_beep_statement] = ACTIONS(4613), + [aux_sym_unload_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_call_statement_token1] = ACTIONS(4613), + [sym__ambiguous_call_statement] = ACTIONS(4613), + [aux_sym_addressof_expression_token1] = ACTIONS(4613), + [aux_sym_type_of_expression_token1] = ACTIONS(4613), + [aux_sym_unary_expression_token1] = ACTIONS(4613), + [sym_string_literal] = ACTIONS(4615), + [sym_number_literal] = ACTIONS(4615), + [aux_sym_boolean_literal_token1] = ACTIONS(4613), + [aux_sym_boolean_literal_token2] = ACTIONS(4613), + [sym_nothing_literal] = ACTIONS(4613), + [sym_null_literal] = ACTIONS(4613), + [sym_empty_literal] = ACTIONS(4613), + [sym_date_literal] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + }, + [STATE(3599)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6700), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6684), + [anon_sym_SLASH] = ACTIONS(6700), + [anon_sym_BSLASH] = ACTIONS(6702), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6704), + [anon_sym_PLUS] = ACTIONS(6706), + [anon_sym_DASH] = ACTIONS(6708), + [anon_sym_AMP] = ACTIONS(6710), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(3600)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_array_bound_token1] = ACTIONS(4617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(3601)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(3602)] = { + [sym_identifier] = ACTIONS(6621), + [sym_newline] = ACTIONS(6623), + [anon_sym_COLON] = ACTIONS(6623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6621), + [aux_sym_frm_property_statement_token1] = ACTIONS(6621), + [anon_sym_DOT] = ACTIONS(6621), + [anon_sym_BANG] = ACTIONS(6623), + [aux_sym__attribute_identifier_token1] = ACTIONS(6621), + [aux_sym_option_statement_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6621), + [aux_sym_preprocessor_const_token1] = ACTIONS(6621), + [sym_static_modifier] = ACTIONS(6621), + [sym__dim_keyword] = ACTIONS(6621), + [sym__redim_keyword] = ACTIONS(6621), + [aux_sym_get_accessor_token1] = ACTIONS(6621), + [aux_sym_set_accessor_token1] = ACTIONS(6621), + [aux_sym_const_declaration_token1] = ACTIONS(6621), + [anon_sym_LPAREN] = ACTIONS(6623), + [aux_sym_as_type_clause_token2] = ACTIONS(6621), + [anon_sym_STAR] = ACTIONS(5948), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6621), + [aux_sym_visibility_token1] = ACTIONS(6621), + [aux_sym_visibility_token2] = ACTIONS(6621), + [aux_sym_elseif_fragment_token1] = ACTIONS(6621), + [aux_sym_else_fragment_token1] = ACTIONS(6621), + [aux_sym_select_statement_token1] = ACTIONS(6621), + [aux_sym__for_header_token1] = ACTIONS(6621), + [aux_sym_do_statement_token1] = ACTIONS(6621), + [aux_sym_do_condition_token1] = ACTIONS(6621), + [aux_sym_while_statement_token1] = ACTIONS(6621), + [aux_sym_with_statement_token1] = ACTIONS(6621), + [aux_sym_exit_statement_token1] = ACTIONS(6621), + [sym_end_statement] = ACTIONS(6623), + [aux_sym_on_goto_statement_token1] = ACTIONS(6621), + [aux_sym_on_goto_statement_token2] = ACTIONS(6621), + [aux_sym_on_error_statement_token2] = ACTIONS(6621), + [sym__ambiguous_redim_statement] = ACTIONS(6623), + [aux_sym_erase_statement_token1] = ACTIONS(6621), + [aux_sym_open_statement_token1] = ACTIONS(6621), + [aux_sym_file_mode_token2] = ACTIONS(6621), + [aux_sym_file_access_token2] = ACTIONS(6621), + [aux_sym_file_lock_token2] = ACTIONS(6621), + [aux_sym_print_statement_token1] = ACTIONS(6621), + [anon_sym_CARET] = ACTIONS(5941), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_BSLASH] = ACTIONS(5950), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5960), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5962), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5964), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5966), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(5968), + [anon_sym_QMARK] = ACTIONS(6623), + [aux_sym_close_statement_token1] = ACTIONS(6621), + [aux_sym_put_statement_token1] = ACTIONS(6621), + [aux_sym_unlock_statement_token1] = ACTIONS(6621), + [aux_sym_seek_statement_token1] = ACTIONS(6621), + [sym_reset_statement] = ACTIONS(6621), + [aux_sym_raise_event_statement_token1] = ACTIONS(6621), + [sym_stop_statement] = ACTIONS(6621), + [sym_beep_statement] = ACTIONS(6621), + [aux_sym_unload_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token2] = ACTIONS(6621), + [aux_sym_def_type_statement_token3] = ACTIONS(6621), + [aux_sym_def_type_statement_token4] = ACTIONS(6621), + [aux_sym_def_type_statement_token5] = ACTIONS(6621), + [aux_sym_def_type_statement_token6] = ACTIONS(6621), + [aux_sym_def_type_statement_token7] = ACTIONS(6621), + [aux_sym_def_type_statement_token8] = ACTIONS(6621), + [aux_sym_def_type_statement_token9] = ACTIONS(6621), + [aux_sym_def_type_statement_token10] = ACTIONS(6621), + [aux_sym_def_type_statement_token11] = ACTIONS(6621), + [aux_sym_def_type_statement_token12] = ACTIONS(6621), + [aux_sym_def_type_statement_token13] = ACTIONS(6621), + [aux_sym_def_type_statement_token14] = ACTIONS(6621), + [aux_sym_call_statement_token1] = ACTIONS(6621), + [sym__ambiguous_call_statement] = ACTIONS(6621), + [aux_sym_addressof_expression_token1] = ACTIONS(6621), + [aux_sym_type_of_expression_token1] = ACTIONS(6621), + [aux_sym_unary_expression_token1] = ACTIONS(6621), + [sym_string_literal] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [aux_sym_boolean_literal_token1] = ACTIONS(6621), + [aux_sym_boolean_literal_token2] = ACTIONS(6621), + [sym_nothing_literal] = ACTIONS(6621), + [sym_null_literal] = ACTIONS(6621), + [sym_empty_literal] = ACTIONS(6621), + [sym_date_literal] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6621), + }, + [STATE(3603)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token3] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(3604)] = { + [sym_identifier] = ACTIONS(6324), + [sym_newline] = ACTIONS(6326), + [anon_sym_COLON] = ACTIONS(6326), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6324), + [aux_sym_frm_property_statement_token1] = ACTIONS(6324), + [anon_sym_DOT] = ACTIONS(6324), + [anon_sym_BANG] = ACTIONS(6326), + [aux_sym__attribute_identifier_token1] = ACTIONS(6324), + [aux_sym_option_statement_token3] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6324), + [aux_sym_preprocessor_const_token1] = ACTIONS(6324), + [sym_static_modifier] = ACTIONS(6324), + [sym__dim_keyword] = ACTIONS(6324), + [sym__redim_keyword] = ACTIONS(6324), + [aux_sym_get_accessor_token1] = ACTIONS(6324), + [aux_sym_set_accessor_token1] = ACTIONS(6324), + [aux_sym_const_declaration_token1] = ACTIONS(6324), + [anon_sym_LPAREN] = ACTIONS(6326), + [aux_sym_as_type_clause_token2] = ACTIONS(6324), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6324), + [aux_sym_visibility_token1] = ACTIONS(6324), + [aux_sym_visibility_token2] = ACTIONS(6324), + [aux_sym_elseif_fragment_token1] = ACTIONS(6324), + [aux_sym_else_fragment_token1] = ACTIONS(6324), + [aux_sym_select_statement_token1] = ACTIONS(6324), + [aux_sym_select_statement_token2] = ACTIONS(6324), + [aux_sym__for_header_token1] = ACTIONS(6324), + [aux_sym_do_statement_token1] = ACTIONS(6324), + [aux_sym_do_condition_token1] = ACTIONS(6324), + [aux_sym_with_statement_token1] = ACTIONS(6324), + [aux_sym_exit_statement_token1] = ACTIONS(6324), + [sym_end_statement] = ACTIONS(6326), + [aux_sym_on_goto_statement_token1] = ACTIONS(6324), + [aux_sym_on_goto_statement_token2] = ACTIONS(6324), + [aux_sym_on_error_statement_token2] = ACTIONS(6324), + [sym__ambiguous_redim_statement] = ACTIONS(6326), + [aux_sym_erase_statement_token1] = ACTIONS(6324), + [aux_sym_open_statement_token1] = ACTIONS(6324), + [aux_sym_file_mode_token2] = ACTIONS(6324), + [aux_sym_file_access_token2] = ACTIONS(6324), + [aux_sym_file_lock_token2] = ACTIONS(6324), + [aux_sym_print_statement_token1] = ACTIONS(6324), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_QMARK] = ACTIONS(6326), + [aux_sym_close_statement_token1] = ACTIONS(6324), + [aux_sym_put_statement_token1] = ACTIONS(6324), + [aux_sym_unlock_statement_token1] = ACTIONS(6324), + [aux_sym_seek_statement_token1] = ACTIONS(6324), + [sym_reset_statement] = ACTIONS(6324), + [aux_sym_raise_event_statement_token1] = ACTIONS(6324), + [sym_stop_statement] = ACTIONS(6324), + [sym_beep_statement] = ACTIONS(6324), + [aux_sym_unload_statement_token1] = ACTIONS(6324), + [aux_sym_def_type_statement_token1] = ACTIONS(6324), + [aux_sym_def_type_statement_token2] = ACTIONS(6324), + [aux_sym_def_type_statement_token3] = ACTIONS(6324), + [aux_sym_def_type_statement_token4] = ACTIONS(6324), + [aux_sym_def_type_statement_token5] = ACTIONS(6324), + [aux_sym_def_type_statement_token6] = ACTIONS(6324), + [aux_sym_def_type_statement_token7] = ACTIONS(6324), + [aux_sym_def_type_statement_token8] = ACTIONS(6324), + [aux_sym_def_type_statement_token9] = ACTIONS(6324), + [aux_sym_def_type_statement_token10] = ACTIONS(6324), + [aux_sym_def_type_statement_token11] = ACTIONS(6324), + [aux_sym_def_type_statement_token12] = ACTIONS(6324), + [aux_sym_def_type_statement_token13] = ACTIONS(6324), + [aux_sym_def_type_statement_token14] = ACTIONS(6324), + [aux_sym_call_statement_token1] = ACTIONS(6324), + [sym__ambiguous_call_statement] = ACTIONS(6324), + [aux_sym_addressof_expression_token1] = ACTIONS(6324), + [aux_sym_type_of_expression_token1] = ACTIONS(6324), + [aux_sym_unary_expression_token1] = ACTIONS(6324), + [sym_string_literal] = ACTIONS(6326), + [sym_number_literal] = ACTIONS(6326), + [aux_sym_boolean_literal_token1] = ACTIONS(6324), + [aux_sym_boolean_literal_token2] = ACTIONS(6324), + [sym_nothing_literal] = ACTIONS(6324), + [sym_null_literal] = ACTIONS(6324), + [sym_empty_literal] = ACTIONS(6324), + [sym_date_literal] = ACTIONS(6326), + [anon_sym_POUND] = ACTIONS(6324), + }, + [STATE(3605)] = { + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [anon_sym_COLON] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym__attribute_identifier_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [sym__redim_keyword] = ACTIONS(4451), + [aux_sym_get_accessor_token1] = ACTIONS(4451), + [aux_sym_set_accessor_token1] = ACTIONS(4451), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [aux_sym_as_type_clause_token2] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(8105), + [aux_sym_array_bound_token1] = ACTIONS(4451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4451), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_elseif_fragment_token1] = ACTIONS(4451), + [aux_sym_else_fragment_token1] = ACTIONS(4451), + [aux_sym_select_statement_token1] = ACTIONS(4451), + [aux_sym__for_header_token1] = ACTIONS(4451), + [aux_sym_do_statement_token1] = ACTIONS(4451), + [aux_sym_do_condition_token1] = ACTIONS(4451), + [aux_sym_with_statement_token1] = ACTIONS(4451), + [aux_sym_exit_statement_token1] = ACTIONS(4451), + [sym_end_statement] = ACTIONS(4453), + [aux_sym_on_goto_statement_token1] = ACTIONS(4451), + [aux_sym_on_goto_statement_token2] = ACTIONS(4451), + [aux_sym_on_error_statement_token2] = ACTIONS(4451), + [sym__ambiguous_redim_statement] = ACTIONS(4453), + [aux_sym_erase_statement_token1] = ACTIONS(4451), + [aux_sym_open_statement_token1] = ACTIONS(4451), + [aux_sym_file_mode_token2] = ACTIONS(4451), + [aux_sym_file_access_token2] = ACTIONS(4451), + [aux_sym_file_lock_token2] = ACTIONS(4451), + [aux_sym_print_statement_token1] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(8107), + [anon_sym_SLASH] = ACTIONS(8105), + [anon_sym_BSLASH] = ACTIONS(8116), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8118), + [anon_sym_PLUS] = ACTIONS(8128), + [anon_sym_DASH] = ACTIONS(8130), + [anon_sym_AMP] = ACTIONS(8132), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8134), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8136), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(8138), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(8146), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(8439), + [anon_sym_QMARK] = ACTIONS(4453), + [aux_sym_close_statement_token1] = ACTIONS(4451), + [aux_sym_put_statement_token1] = ACTIONS(4451), + [aux_sym_unlock_statement_token1] = ACTIONS(4451), + [aux_sym_seek_statement_token1] = ACTIONS(4451), + [sym_reset_statement] = ACTIONS(4451), + [aux_sym_raise_event_statement_token1] = ACTIONS(4451), + [sym_stop_statement] = ACTIONS(4451), + [sym_beep_statement] = ACTIONS(4451), + [aux_sym_unload_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_call_statement_token1] = ACTIONS(4451), + [sym__ambiguous_call_statement] = ACTIONS(4451), + [aux_sym_addressof_expression_token1] = ACTIONS(4451), + [aux_sym_type_of_expression_token1] = ACTIONS(4451), + [aux_sym_unary_expression_token1] = ACTIONS(4451), + [sym_string_literal] = ACTIONS(4453), + [sym_number_literal] = ACTIONS(4453), + [aux_sym_boolean_literal_token1] = ACTIONS(4451), + [aux_sym_boolean_literal_token2] = ACTIONS(4451), + [sym_nothing_literal] = ACTIONS(4451), + [sym_null_literal] = ACTIONS(4451), + [sym_empty_literal] = ACTIONS(4451), + [sym_date_literal] = ACTIONS(4453), + [anon_sym_POUND] = ACTIONS(4451), + }, + [STATE(3606)] = { + [aux_sym_variable_declaration_repeat1] = STATE(3521), + [sym_identifier] = ACTIONS(8332), + [sym_newline] = ACTIONS(8334), + [anon_sym_COLON] = ACTIONS(8334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8332), + [aux_sym_frm_property_statement_token1] = ACTIONS(8332), + [anon_sym_DOT] = ACTIONS(8332), + [anon_sym_BANG] = ACTIONS(8334), + [aux_sym__attribute_identifier_token1] = ACTIONS(8332), + [aux_sym_option_statement_token3] = ACTIONS(8332), + [aux_sym_type_declaration_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8332), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8332), + [aux_sym_enum_declaration_token1] = ACTIONS(8332), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8332), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8332), + [aux_sym_declare_function_statement_token1] = ACTIONS(8332), + [aux_sym_preprocessor_const_token1] = ACTIONS(8332), + [aux_sym__property_get_header_token1] = ACTIONS(8332), + [aux_sym_event_declaration_token1] = ACTIONS(8332), + [sym_static_modifier] = ACTIONS(8332), + [sym__dim_keyword] = ACTIONS(8332), + [sym__redim_keyword] = ACTIONS(8332), + [aux_sym_get_accessor_token1] = ACTIONS(8332), + [aux_sym_set_accessor_token1] = ACTIONS(8332), + [anon_sym_COMMA] = ACTIONS(8099), + [aux_sym_const_declaration_token1] = ACTIONS(8332), + [anon_sym_LPAREN] = ACTIONS(8334), + [aux_sym_as_type_clause_token2] = ACTIONS(8332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8332), + [aux_sym_visibility_token1] = ACTIONS(8332), + [aux_sym_visibility_token2] = ACTIONS(8332), + [aux_sym_elseif_fragment_token1] = ACTIONS(8332), + [aux_sym_else_fragment_token1] = ACTIONS(8332), + [aux_sym_select_statement_token1] = ACTIONS(8332), + [aux_sym__for_header_token1] = ACTIONS(8332), + [aux_sym_do_statement_token1] = ACTIONS(8332), + [aux_sym_do_condition_token1] = ACTIONS(8332), + [aux_sym_with_statement_token1] = ACTIONS(8332), + [aux_sym_exit_statement_token1] = ACTIONS(8332), + [sym_end_statement] = ACTIONS(8334), + [aux_sym_on_goto_statement_token1] = ACTIONS(8332), + [aux_sym_on_goto_statement_token2] = ACTIONS(8332), + [aux_sym_on_error_statement_token2] = ACTIONS(8332), + [sym__ambiguous_redim_statement] = ACTIONS(8334), + [aux_sym_erase_statement_token1] = ACTIONS(8332), + [aux_sym_open_statement_token1] = ACTIONS(8332), + [aux_sym_file_mode_token2] = ACTIONS(8332), + [aux_sym_file_access_token2] = ACTIONS(8332), + [aux_sym_file_lock_token2] = ACTIONS(8332), + [aux_sym_print_statement_token1] = ACTIONS(8332), + [anon_sym_PLUS] = ACTIONS(8334), + [anon_sym_DASH] = ACTIONS(8332), + [anon_sym_QMARK] = ACTIONS(8334), + [aux_sym_close_statement_token1] = ACTIONS(8332), + [aux_sym_put_statement_token1] = ACTIONS(8332), + [aux_sym_unlock_statement_token1] = ACTIONS(8332), + [aux_sym_seek_statement_token1] = ACTIONS(8332), + [sym_reset_statement] = ACTIONS(8332), + [aux_sym_raise_event_statement_token1] = ACTIONS(8332), + [sym_stop_statement] = ACTIONS(8332), + [sym_beep_statement] = ACTIONS(8332), + [aux_sym_unload_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token2] = ACTIONS(8332), + [aux_sym_def_type_statement_token3] = ACTIONS(8332), + [aux_sym_def_type_statement_token4] = ACTIONS(8332), + [aux_sym_def_type_statement_token5] = ACTIONS(8332), + [aux_sym_def_type_statement_token6] = ACTIONS(8332), + [aux_sym_def_type_statement_token7] = ACTIONS(8332), + [aux_sym_def_type_statement_token8] = ACTIONS(8332), + [aux_sym_def_type_statement_token9] = ACTIONS(8332), + [aux_sym_def_type_statement_token10] = ACTIONS(8332), + [aux_sym_def_type_statement_token11] = ACTIONS(8332), + [aux_sym_def_type_statement_token12] = ACTIONS(8332), + [aux_sym_def_type_statement_token13] = ACTIONS(8332), + [aux_sym_def_type_statement_token14] = ACTIONS(8332), + [aux_sym_call_statement_token1] = ACTIONS(8332), + [sym__ambiguous_call_statement] = ACTIONS(8332), + [aux_sym_addressof_expression_token1] = ACTIONS(8332), + [aux_sym_type_of_expression_token1] = ACTIONS(8332), + [aux_sym_unary_expression_token1] = ACTIONS(8332), + [sym_string_literal] = ACTIONS(8334), + [sym_number_literal] = ACTIONS(8334), + [aux_sym_boolean_literal_token1] = ACTIONS(8332), + [aux_sym_boolean_literal_token2] = ACTIONS(8332), + [sym_nothing_literal] = ACTIONS(8332), + [sym_null_literal] = ACTIONS(8332), + [sym_empty_literal] = ACTIONS(8332), + [sym_date_literal] = ACTIONS(8334), + [anon_sym_POUND] = ACTIONS(8332), + }, + [STATE(3607)] = { + [sym_parameter_list] = STATE(3880), + [sym_as_type_clause] = STATE(4497), + [sym_identifier] = ACTIONS(7430), + [sym_newline] = ACTIONS(7432), + [anon_sym_COLON] = ACTIONS(7432), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7430), + [aux_sym_frm_property_statement_token1] = ACTIONS(7430), + [anon_sym_DOT] = ACTIONS(7430), + [anon_sym_BANG] = ACTIONS(7432), + [aux_sym__attribute_identifier_token1] = ACTIONS(7430), + [aux_sym_option_statement_token3] = ACTIONS(7430), + [aux_sym_type_declaration_token1] = ACTIONS(7430), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7430), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7430), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7430), + [aux_sym_enum_declaration_token1] = ACTIONS(7430), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7430), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7430), + [aux_sym_declare_sub_statement_token4] = ACTIONS(8441), + [aux_sym_declare_function_statement_token1] = ACTIONS(7430), + [aux_sym_preprocessor_const_token1] = ACTIONS(7430), + [aux_sym__property_get_header_token1] = ACTIONS(7430), + [aux_sym_event_declaration_token1] = ACTIONS(7430), + [sym_static_modifier] = ACTIONS(7430), + [sym__dim_keyword] = ACTIONS(7430), + [sym__redim_keyword] = ACTIONS(7430), + [aux_sym_get_accessor_token1] = ACTIONS(7430), + [aux_sym_set_accessor_token1] = ACTIONS(7430), + [aux_sym_const_declaration_token1] = ACTIONS(7430), + [anon_sym_LPAREN] = ACTIONS(8209), + [aux_sym_as_type_clause_token1] = ACTIONS(8211), + [aux_sym_as_type_clause_token2] = ACTIONS(7430), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7430), + [aux_sym_visibility_token1] = ACTIONS(7430), + [aux_sym_visibility_token2] = ACTIONS(7430), + [aux_sym_elseif_fragment_token1] = ACTIONS(7430), + [aux_sym_else_fragment_token1] = ACTIONS(7430), + [aux_sym_select_statement_token1] = ACTIONS(7430), + [aux_sym__for_header_token1] = ACTIONS(7430), + [aux_sym_do_statement_token1] = ACTIONS(7430), + [aux_sym_do_condition_token1] = ACTIONS(7430), + [aux_sym_with_statement_token1] = ACTIONS(7430), + [aux_sym_exit_statement_token1] = ACTIONS(7430), + [sym_end_statement] = ACTIONS(7432), + [aux_sym_on_goto_statement_token1] = ACTIONS(7430), + [aux_sym_on_goto_statement_token2] = ACTIONS(7430), + [aux_sym_on_error_statement_token2] = ACTIONS(7430), + [sym__ambiguous_redim_statement] = ACTIONS(7432), + [aux_sym_erase_statement_token1] = ACTIONS(7430), + [aux_sym_open_statement_token1] = ACTIONS(7430), + [aux_sym_file_mode_token2] = ACTIONS(7430), + [aux_sym_file_access_token2] = ACTIONS(7430), + [aux_sym_file_lock_token2] = ACTIONS(7430), + [aux_sym_print_statement_token1] = ACTIONS(7430), + [anon_sym_PLUS] = ACTIONS(7432), + [anon_sym_DASH] = ACTIONS(7430), + [anon_sym_QMARK] = ACTIONS(7432), + [aux_sym_close_statement_token1] = ACTIONS(7430), + [aux_sym_put_statement_token1] = ACTIONS(7430), + [aux_sym_unlock_statement_token1] = ACTIONS(7430), + [aux_sym_seek_statement_token1] = ACTIONS(7430), + [sym_reset_statement] = ACTIONS(7430), + [aux_sym_raise_event_statement_token1] = ACTIONS(7430), + [sym_stop_statement] = ACTIONS(7430), + [sym_beep_statement] = ACTIONS(7430), + [aux_sym_unload_statement_token1] = ACTIONS(7430), + [aux_sym_def_type_statement_token1] = ACTIONS(7430), + [aux_sym_def_type_statement_token2] = ACTIONS(7430), + [aux_sym_def_type_statement_token3] = ACTIONS(7430), + [aux_sym_def_type_statement_token4] = ACTIONS(7430), + [aux_sym_def_type_statement_token5] = ACTIONS(7430), + [aux_sym_def_type_statement_token6] = ACTIONS(7430), + [aux_sym_def_type_statement_token7] = ACTIONS(7430), + [aux_sym_def_type_statement_token8] = ACTIONS(7430), + [aux_sym_def_type_statement_token9] = ACTIONS(7430), + [aux_sym_def_type_statement_token10] = ACTIONS(7430), + [aux_sym_def_type_statement_token11] = ACTIONS(7430), + [aux_sym_def_type_statement_token12] = ACTIONS(7430), + [aux_sym_def_type_statement_token13] = ACTIONS(7430), + [aux_sym_def_type_statement_token14] = ACTIONS(7430), + [aux_sym_call_statement_token1] = ACTIONS(7430), + [sym__ambiguous_call_statement] = ACTIONS(7430), + [aux_sym_addressof_expression_token1] = ACTIONS(7430), + [aux_sym_type_of_expression_token1] = ACTIONS(7430), + [aux_sym_unary_expression_token1] = ACTIONS(7430), + [sym_string_literal] = ACTIONS(7432), + [sym_number_literal] = ACTIONS(7432), + [aux_sym_boolean_literal_token1] = ACTIONS(7430), + [aux_sym_boolean_literal_token2] = ACTIONS(7430), + [sym_nothing_literal] = ACTIONS(7430), + [sym_null_literal] = ACTIONS(7430), + [sym_empty_literal] = ACTIONS(7430), + [sym_date_literal] = ACTIONS(7432), + [anon_sym_POUND] = ACTIONS(7430), + }, + [STATE(3608)] = { + [sym_identifier] = ACTIONS(6340), + [sym_newline] = ACTIONS(6342), + [anon_sym_COLON] = ACTIONS(6342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6340), + [aux_sym_frm_property_statement_token1] = ACTIONS(6340), + [anon_sym_DOT] = ACTIONS(6340), + [anon_sym_BANG] = ACTIONS(6342), + [aux_sym__attribute_identifier_token1] = ACTIONS(6340), + [aux_sym_option_statement_token3] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6340), + [aux_sym_preprocessor_const_token1] = ACTIONS(6340), + [sym_static_modifier] = ACTIONS(6340), + [sym__dim_keyword] = ACTIONS(6340), + [sym__redim_keyword] = ACTIONS(6340), + [aux_sym_get_accessor_token1] = ACTIONS(6340), + [aux_sym_set_accessor_token1] = ACTIONS(6340), + [aux_sym_const_declaration_token1] = ACTIONS(6340), + [anon_sym_LPAREN] = ACTIONS(6342), + [aux_sym_as_type_clause_token2] = ACTIONS(6340), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6340), + [aux_sym_visibility_token1] = ACTIONS(6340), + [aux_sym_visibility_token2] = ACTIONS(6340), + [aux_sym_elseif_fragment_token1] = ACTIONS(6340), + [aux_sym_else_fragment_token1] = ACTIONS(6340), + [aux_sym_select_statement_token1] = ACTIONS(6340), + [aux_sym_select_statement_token2] = ACTIONS(6340), + [aux_sym__for_header_token1] = ACTIONS(6340), + [aux_sym_do_statement_token1] = ACTIONS(6340), + [aux_sym_do_condition_token1] = ACTIONS(6340), + [aux_sym_with_statement_token1] = ACTIONS(6340), + [aux_sym_exit_statement_token1] = ACTIONS(6340), + [sym_end_statement] = ACTIONS(6342), + [aux_sym_on_goto_statement_token1] = ACTIONS(6340), + [aux_sym_on_goto_statement_token2] = ACTIONS(6340), + [aux_sym_on_error_statement_token2] = ACTIONS(6340), + [sym__ambiguous_redim_statement] = ACTIONS(6342), + [aux_sym_erase_statement_token1] = ACTIONS(6340), + [aux_sym_open_statement_token1] = ACTIONS(6340), + [aux_sym_file_mode_token2] = ACTIONS(6340), + [aux_sym_file_access_token2] = ACTIONS(6340), + [aux_sym_file_lock_token2] = ACTIONS(6340), + [aux_sym_print_statement_token1] = ACTIONS(6340), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_QMARK] = ACTIONS(6342), + [aux_sym_close_statement_token1] = ACTIONS(6340), + [aux_sym_put_statement_token1] = ACTIONS(6340), + [aux_sym_unlock_statement_token1] = ACTIONS(6340), + [aux_sym_seek_statement_token1] = ACTIONS(6340), + [sym_reset_statement] = ACTIONS(6340), + [aux_sym_raise_event_statement_token1] = ACTIONS(6340), + [sym_stop_statement] = ACTIONS(6340), + [sym_beep_statement] = ACTIONS(6340), + [aux_sym_unload_statement_token1] = ACTIONS(6340), + [aux_sym_def_type_statement_token1] = ACTIONS(6340), + [aux_sym_def_type_statement_token2] = ACTIONS(6340), + [aux_sym_def_type_statement_token3] = ACTIONS(6340), + [aux_sym_def_type_statement_token4] = ACTIONS(6340), + [aux_sym_def_type_statement_token5] = ACTIONS(6340), + [aux_sym_def_type_statement_token6] = ACTIONS(6340), + [aux_sym_def_type_statement_token7] = ACTIONS(6340), + [aux_sym_def_type_statement_token8] = ACTIONS(6340), + [aux_sym_def_type_statement_token9] = ACTIONS(6340), + [aux_sym_def_type_statement_token10] = ACTIONS(6340), + [aux_sym_def_type_statement_token11] = ACTIONS(6340), + [aux_sym_def_type_statement_token12] = ACTIONS(6340), + [aux_sym_def_type_statement_token13] = ACTIONS(6340), + [aux_sym_def_type_statement_token14] = ACTIONS(6340), + [aux_sym_call_statement_token1] = ACTIONS(6340), + [sym__ambiguous_call_statement] = ACTIONS(6340), + [aux_sym_addressof_expression_token1] = ACTIONS(6340), + [aux_sym_type_of_expression_token1] = ACTIONS(6340), + [aux_sym_unary_expression_token1] = ACTIONS(6340), + [sym_string_literal] = ACTIONS(6342), + [sym_number_literal] = ACTIONS(6342), + [aux_sym_boolean_literal_token1] = ACTIONS(6340), + [aux_sym_boolean_literal_token2] = ACTIONS(6340), + [sym_nothing_literal] = ACTIONS(6340), + [sym_null_literal] = ACTIONS(6340), + [sym_empty_literal] = ACTIONS(6340), + [sym_date_literal] = ACTIONS(6342), + [anon_sym_POUND] = ACTIONS(6340), + }, + [STATE(3609)] = { + [sym_identifier] = ACTIONS(6392), + [sym_newline] = ACTIONS(6394), + [anon_sym_COLON] = ACTIONS(6394), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6392), + [aux_sym_frm_property_statement_token1] = ACTIONS(6392), + [anon_sym_DOT] = ACTIONS(6392), + [anon_sym_BANG] = ACTIONS(6394), + [aux_sym__attribute_identifier_token1] = ACTIONS(6392), + [aux_sym_option_statement_token3] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6392), + [aux_sym_preprocessor_const_token1] = ACTIONS(6392), + [sym_static_modifier] = ACTIONS(6392), + [sym__dim_keyword] = ACTIONS(6392), + [sym__redim_keyword] = ACTIONS(6392), + [aux_sym_get_accessor_token1] = ACTIONS(6392), + [aux_sym_set_accessor_token1] = ACTIONS(6392), + [aux_sym_const_declaration_token1] = ACTIONS(6392), + [anon_sym_LPAREN] = ACTIONS(6394), + [aux_sym_as_type_clause_token2] = ACTIONS(6392), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6392), + [aux_sym_visibility_token1] = ACTIONS(6392), + [aux_sym_visibility_token2] = ACTIONS(6392), + [aux_sym_elseif_fragment_token1] = ACTIONS(6392), + [aux_sym_else_fragment_token1] = ACTIONS(6392), + [aux_sym_select_statement_token1] = ACTIONS(6392), + [aux_sym_select_statement_token2] = ACTIONS(6392), + [aux_sym__for_header_token1] = ACTIONS(6392), + [aux_sym_do_statement_token1] = ACTIONS(6392), + [aux_sym_do_condition_token1] = ACTIONS(6392), + [aux_sym_with_statement_token1] = ACTIONS(6392), + [aux_sym_exit_statement_token1] = ACTIONS(6392), + [sym_end_statement] = ACTIONS(6394), + [aux_sym_on_goto_statement_token1] = ACTIONS(6392), + [aux_sym_on_goto_statement_token2] = ACTIONS(6392), + [aux_sym_on_error_statement_token2] = ACTIONS(6392), + [sym__ambiguous_redim_statement] = ACTIONS(6394), + [aux_sym_erase_statement_token1] = ACTIONS(6392), + [aux_sym_open_statement_token1] = ACTIONS(6392), + [aux_sym_file_mode_token2] = ACTIONS(6392), + [aux_sym_file_access_token2] = ACTIONS(6392), + [aux_sym_file_lock_token2] = ACTIONS(6392), + [aux_sym_print_statement_token1] = ACTIONS(6392), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_QMARK] = ACTIONS(6394), + [aux_sym_close_statement_token1] = ACTIONS(6392), + [aux_sym_put_statement_token1] = ACTIONS(6392), + [aux_sym_unlock_statement_token1] = ACTIONS(6392), + [aux_sym_seek_statement_token1] = ACTIONS(6392), + [sym_reset_statement] = ACTIONS(6392), + [aux_sym_raise_event_statement_token1] = ACTIONS(6392), + [sym_stop_statement] = ACTIONS(6392), + [sym_beep_statement] = ACTIONS(6392), + [aux_sym_unload_statement_token1] = ACTIONS(6392), + [aux_sym_def_type_statement_token1] = ACTIONS(6392), + [aux_sym_def_type_statement_token2] = ACTIONS(6392), + [aux_sym_def_type_statement_token3] = ACTIONS(6392), + [aux_sym_def_type_statement_token4] = ACTIONS(6392), + [aux_sym_def_type_statement_token5] = ACTIONS(6392), + [aux_sym_def_type_statement_token6] = ACTIONS(6392), + [aux_sym_def_type_statement_token7] = ACTIONS(6392), + [aux_sym_def_type_statement_token8] = ACTIONS(6392), + [aux_sym_def_type_statement_token9] = ACTIONS(6392), + [aux_sym_def_type_statement_token10] = ACTIONS(6392), + [aux_sym_def_type_statement_token11] = ACTIONS(6392), + [aux_sym_def_type_statement_token12] = ACTIONS(6392), + [aux_sym_def_type_statement_token13] = ACTIONS(6392), + [aux_sym_def_type_statement_token14] = ACTIONS(6392), + [aux_sym_call_statement_token1] = ACTIONS(6392), + [sym__ambiguous_call_statement] = ACTIONS(6392), + [aux_sym_addressof_expression_token1] = ACTIONS(6392), + [aux_sym_type_of_expression_token1] = ACTIONS(6392), + [aux_sym_unary_expression_token1] = ACTIONS(6392), + [sym_string_literal] = ACTIONS(6394), + [sym_number_literal] = ACTIONS(6394), + [aux_sym_boolean_literal_token1] = ACTIONS(6392), + [aux_sym_boolean_literal_token2] = ACTIONS(6392), + [sym_nothing_literal] = ACTIONS(6392), + [sym_null_literal] = ACTIONS(6392), + [sym_empty_literal] = ACTIONS(6392), + [sym_date_literal] = ACTIONS(6394), + [anon_sym_POUND] = ACTIONS(6392), + }, + [STATE(3610)] = { + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_declaration_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7949), + [aux_sym_enum_declaration_token1] = ACTIONS(7949), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7949), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7949), + [aux_sym_declare_function_statement_token1] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [aux_sym__property_get_header_token1] = ACTIONS(7949), + [aux_sym_event_declaration_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(7951), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(3611)] = { + [sym_identifier] = ACTIONS(6392), + [sym_newline] = ACTIONS(6394), + [anon_sym_COLON] = ACTIONS(6394), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6392), + [aux_sym_frm_property_statement_token1] = ACTIONS(6392), + [anon_sym_DOT] = ACTIONS(6392), + [anon_sym_BANG] = ACTIONS(6394), + [aux_sym__attribute_identifier_token1] = ACTIONS(6392), + [aux_sym_option_statement_token3] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6392), + [aux_sym_preprocessor_const_token1] = ACTIONS(6392), + [sym_static_modifier] = ACTIONS(6392), + [sym__dim_keyword] = ACTIONS(6392), + [sym__redim_keyword] = ACTIONS(6392), + [aux_sym_get_accessor_token1] = ACTIONS(6392), + [aux_sym_set_accessor_token1] = ACTIONS(6392), + [aux_sym_const_declaration_token1] = ACTIONS(6392), + [anon_sym_LPAREN] = ACTIONS(6394), + [aux_sym_as_type_clause_token2] = ACTIONS(6392), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6392), + [aux_sym_visibility_token1] = ACTIONS(6392), + [aux_sym_visibility_token2] = ACTIONS(6392), + [aux_sym_elseif_fragment_token1] = ACTIONS(6392), + [aux_sym_else_fragment_token1] = ACTIONS(6392), + [aux_sym_select_statement_token1] = ACTIONS(6392), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6392), + [aux_sym__for_header_token1] = ACTIONS(6392), + [aux_sym_do_statement_token1] = ACTIONS(6392), + [aux_sym_do_condition_token1] = ACTIONS(6392), + [aux_sym_with_statement_token1] = ACTIONS(6392), + [aux_sym_exit_statement_token1] = ACTIONS(6392), + [sym_end_statement] = ACTIONS(6394), + [aux_sym_on_goto_statement_token1] = ACTIONS(6392), + [aux_sym_on_goto_statement_token2] = ACTIONS(6392), + [aux_sym_on_error_statement_token2] = ACTIONS(6392), + [sym__ambiguous_redim_statement] = ACTIONS(6394), + [aux_sym_erase_statement_token1] = ACTIONS(6392), + [aux_sym_open_statement_token1] = ACTIONS(6392), + [aux_sym_file_mode_token2] = ACTIONS(6392), + [aux_sym_file_access_token2] = ACTIONS(6392), + [aux_sym_file_lock_token2] = ACTIONS(6392), + [aux_sym_print_statement_token1] = ACTIONS(6392), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(6394), + [aux_sym_close_statement_token1] = ACTIONS(6392), + [aux_sym_put_statement_token1] = ACTIONS(6392), + [aux_sym_unlock_statement_token1] = ACTIONS(6392), + [aux_sym_seek_statement_token1] = ACTIONS(6392), + [sym_reset_statement] = ACTIONS(6392), + [aux_sym_raise_event_statement_token1] = ACTIONS(6392), + [sym_stop_statement] = ACTIONS(6392), + [sym_beep_statement] = ACTIONS(6392), + [aux_sym_unload_statement_token1] = ACTIONS(6392), + [aux_sym_def_type_statement_token1] = ACTIONS(6392), + [aux_sym_def_type_statement_token2] = ACTIONS(6392), + [aux_sym_def_type_statement_token3] = ACTIONS(6392), + [aux_sym_def_type_statement_token4] = ACTIONS(6392), + [aux_sym_def_type_statement_token5] = ACTIONS(6392), + [aux_sym_def_type_statement_token6] = ACTIONS(6392), + [aux_sym_def_type_statement_token7] = ACTIONS(6392), + [aux_sym_def_type_statement_token8] = ACTIONS(6392), + [aux_sym_def_type_statement_token9] = ACTIONS(6392), + [aux_sym_def_type_statement_token10] = ACTIONS(6392), + [aux_sym_def_type_statement_token11] = ACTIONS(6392), + [aux_sym_def_type_statement_token12] = ACTIONS(6392), + [aux_sym_def_type_statement_token13] = ACTIONS(6392), + [aux_sym_def_type_statement_token14] = ACTIONS(6392), + [aux_sym_call_statement_token1] = ACTIONS(6392), + [sym__ambiguous_call_statement] = ACTIONS(6392), + [aux_sym_addressof_expression_token1] = ACTIONS(6392), + [aux_sym_type_of_expression_token1] = ACTIONS(6392), + [aux_sym_unary_expression_token1] = ACTIONS(6392), + [sym_string_literal] = ACTIONS(6394), + [sym_number_literal] = ACTIONS(6394), + [aux_sym_boolean_literal_token1] = ACTIONS(6392), + [aux_sym_boolean_literal_token2] = ACTIONS(6392), + [sym_nothing_literal] = ACTIONS(6392), + [sym_null_literal] = ACTIONS(6392), + [sym_empty_literal] = ACTIONS(6392), + [sym_date_literal] = ACTIONS(6394), + [anon_sym_POUND] = ACTIONS(6392), + }, + [STATE(3612)] = { + [aux_sym_close_statement_repeat1] = STATE(3612), + [sym_identifier] = ACTIONS(8443), + [sym_newline] = ACTIONS(8445), + [anon_sym_COLON] = ACTIONS(8445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8443), + [aux_sym_frm_property_statement_token1] = ACTIONS(8443), + [anon_sym_DOT] = ACTIONS(8443), + [anon_sym_BANG] = ACTIONS(8445), + [aux_sym__attribute_identifier_token1] = ACTIONS(8443), + [aux_sym_option_statement_token3] = ACTIONS(8443), + [aux_sym_type_declaration_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8443), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8443), + [aux_sym_enum_declaration_token1] = ACTIONS(8443), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8443), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8443), + [aux_sym_declare_function_statement_token1] = ACTIONS(8443), + [aux_sym_preprocessor_const_token1] = ACTIONS(8443), + [aux_sym__property_get_header_token1] = ACTIONS(8443), + [aux_sym_event_declaration_token1] = ACTIONS(8443), + [sym_static_modifier] = ACTIONS(8443), + [sym__dim_keyword] = ACTIONS(8443), + [sym__redim_keyword] = ACTIONS(8443), + [aux_sym_get_accessor_token1] = ACTIONS(8443), + [aux_sym_set_accessor_token1] = ACTIONS(8443), + [anon_sym_COMMA] = ACTIONS(8447), + [aux_sym_const_declaration_token1] = ACTIONS(8443), + [anon_sym_LPAREN] = ACTIONS(8445), + [aux_sym_as_type_clause_token2] = ACTIONS(8443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8443), + [aux_sym_visibility_token1] = ACTIONS(8443), + [aux_sym_visibility_token2] = ACTIONS(8443), + [aux_sym_elseif_fragment_token1] = ACTIONS(8443), + [aux_sym_else_fragment_token1] = ACTIONS(8443), + [aux_sym_select_statement_token1] = ACTIONS(8443), + [aux_sym__for_header_token1] = ACTIONS(8443), + [aux_sym_do_statement_token1] = ACTIONS(8443), + [aux_sym_do_condition_token1] = ACTIONS(8443), + [aux_sym_with_statement_token1] = ACTIONS(8443), + [aux_sym_exit_statement_token1] = ACTIONS(8443), + [sym_end_statement] = ACTIONS(8445), + [aux_sym_on_goto_statement_token1] = ACTIONS(8443), + [aux_sym_on_goto_statement_token2] = ACTIONS(8443), + [aux_sym_on_error_statement_token2] = ACTIONS(8443), + [sym__ambiguous_redim_statement] = ACTIONS(8445), + [aux_sym_erase_statement_token1] = ACTIONS(8443), + [aux_sym_open_statement_token1] = ACTIONS(8443), + [aux_sym_file_mode_token2] = ACTIONS(8443), + [aux_sym_file_access_token2] = ACTIONS(8443), + [aux_sym_file_lock_token2] = ACTIONS(8443), + [aux_sym_print_statement_token1] = ACTIONS(8443), + [anon_sym_PLUS] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8443), + [anon_sym_QMARK] = ACTIONS(8445), + [aux_sym_close_statement_token1] = ACTIONS(8443), + [aux_sym_put_statement_token1] = ACTIONS(8443), + [aux_sym_unlock_statement_token1] = ACTIONS(8443), + [aux_sym_seek_statement_token1] = ACTIONS(8443), + [sym_reset_statement] = ACTIONS(8443), + [aux_sym_raise_event_statement_token1] = ACTIONS(8443), + [sym_stop_statement] = ACTIONS(8443), + [sym_beep_statement] = ACTIONS(8443), + [aux_sym_unload_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token2] = ACTIONS(8443), + [aux_sym_def_type_statement_token3] = ACTIONS(8443), + [aux_sym_def_type_statement_token4] = ACTIONS(8443), + [aux_sym_def_type_statement_token5] = ACTIONS(8443), + [aux_sym_def_type_statement_token6] = ACTIONS(8443), + [aux_sym_def_type_statement_token7] = ACTIONS(8443), + [aux_sym_def_type_statement_token8] = ACTIONS(8443), + [aux_sym_def_type_statement_token9] = ACTIONS(8443), + [aux_sym_def_type_statement_token10] = ACTIONS(8443), + [aux_sym_def_type_statement_token11] = ACTIONS(8443), + [aux_sym_def_type_statement_token12] = ACTIONS(8443), + [aux_sym_def_type_statement_token13] = ACTIONS(8443), + [aux_sym_def_type_statement_token14] = ACTIONS(8443), + [aux_sym_call_statement_token1] = ACTIONS(8443), + [sym__ambiguous_call_statement] = ACTIONS(8443), + [aux_sym_addressof_expression_token1] = ACTIONS(8443), + [aux_sym_type_of_expression_token1] = ACTIONS(8443), + [aux_sym_unary_expression_token1] = ACTIONS(8443), + [sym_string_literal] = ACTIONS(8445), + [sym_number_literal] = ACTIONS(8445), + [aux_sym_boolean_literal_token1] = ACTIONS(8443), + [aux_sym_boolean_literal_token2] = ACTIONS(8443), + [sym_nothing_literal] = ACTIONS(8443), + [sym_null_literal] = ACTIONS(8443), + [sym_empty_literal] = ACTIONS(8443), + [sym_date_literal] = ACTIONS(8445), + [anon_sym_POUND] = ACTIONS(8443), + }, + [STATE(3613)] = { + [sym_identifier] = ACTIONS(6324), + [sym_newline] = ACTIONS(6326), + [anon_sym_COLON] = ACTIONS(6326), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6324), + [aux_sym_frm_property_statement_token1] = ACTIONS(6324), + [anon_sym_DOT] = ACTIONS(6324), + [anon_sym_BANG] = ACTIONS(6326), + [aux_sym__attribute_identifier_token1] = ACTIONS(6324), + [aux_sym_option_statement_token3] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6324), + [aux_sym_preprocessor_const_token1] = ACTIONS(6324), + [sym_static_modifier] = ACTIONS(6324), + [sym__dim_keyword] = ACTIONS(6324), + [sym__redim_keyword] = ACTIONS(6324), + [aux_sym_get_accessor_token1] = ACTIONS(6324), + [aux_sym_set_accessor_token1] = ACTIONS(6324), + [aux_sym_const_declaration_token1] = ACTIONS(6324), + [anon_sym_LPAREN] = ACTIONS(6326), + [aux_sym_as_type_clause_token2] = ACTIONS(6324), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6324), + [aux_sym_visibility_token1] = ACTIONS(6324), + [aux_sym_visibility_token2] = ACTIONS(6324), + [aux_sym_elseif_fragment_token1] = ACTIONS(6324), + [aux_sym_else_fragment_token1] = ACTIONS(6324), + [aux_sym_select_statement_token1] = ACTIONS(6324), + [aux_sym__for_header_token1] = ACTIONS(6324), + [aux_sym_do_statement_token1] = ACTIONS(6324), + [aux_sym_do_statement_token2] = ACTIONS(6324), + [aux_sym_do_condition_token1] = ACTIONS(6324), + [aux_sym_with_statement_token1] = ACTIONS(6324), + [aux_sym_exit_statement_token1] = ACTIONS(6324), + [sym_end_statement] = ACTIONS(6326), + [aux_sym_on_goto_statement_token1] = ACTIONS(6324), + [aux_sym_on_goto_statement_token2] = ACTIONS(6324), + [aux_sym_on_error_statement_token2] = ACTIONS(6324), + [sym__ambiguous_redim_statement] = ACTIONS(6326), + [aux_sym_erase_statement_token1] = ACTIONS(6324), + [aux_sym_open_statement_token1] = ACTIONS(6324), + [aux_sym_file_mode_token2] = ACTIONS(6324), + [aux_sym_file_access_token2] = ACTIONS(6324), + [aux_sym_file_lock_token2] = ACTIONS(6324), + [aux_sym_print_statement_token1] = ACTIONS(6324), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_QMARK] = ACTIONS(6326), + [aux_sym_close_statement_token1] = ACTIONS(6324), + [aux_sym_put_statement_token1] = ACTIONS(6324), + [aux_sym_unlock_statement_token1] = ACTIONS(6324), + [aux_sym_seek_statement_token1] = ACTIONS(6324), + [sym_reset_statement] = ACTIONS(6324), + [aux_sym_raise_event_statement_token1] = ACTIONS(6324), + [sym_stop_statement] = ACTIONS(6324), + [sym_beep_statement] = ACTIONS(6324), + [aux_sym_unload_statement_token1] = ACTIONS(6324), + [aux_sym_def_type_statement_token1] = ACTIONS(6324), + [aux_sym_def_type_statement_token2] = ACTIONS(6324), + [aux_sym_def_type_statement_token3] = ACTIONS(6324), + [aux_sym_def_type_statement_token4] = ACTIONS(6324), + [aux_sym_def_type_statement_token5] = ACTIONS(6324), + [aux_sym_def_type_statement_token6] = ACTIONS(6324), + [aux_sym_def_type_statement_token7] = ACTIONS(6324), + [aux_sym_def_type_statement_token8] = ACTIONS(6324), + [aux_sym_def_type_statement_token9] = ACTIONS(6324), + [aux_sym_def_type_statement_token10] = ACTIONS(6324), + [aux_sym_def_type_statement_token11] = ACTIONS(6324), + [aux_sym_def_type_statement_token12] = ACTIONS(6324), + [aux_sym_def_type_statement_token13] = ACTIONS(6324), + [aux_sym_def_type_statement_token14] = ACTIONS(6324), + [aux_sym_call_statement_token1] = ACTIONS(6324), + [sym__ambiguous_call_statement] = ACTIONS(6324), + [aux_sym_addressof_expression_token1] = ACTIONS(6324), + [aux_sym_type_of_expression_token1] = ACTIONS(6324), + [aux_sym_unary_expression_token1] = ACTIONS(6324), + [sym_string_literal] = ACTIONS(6326), + [sym_number_literal] = ACTIONS(6326), + [aux_sym_boolean_literal_token1] = ACTIONS(6324), + [aux_sym_boolean_literal_token2] = ACTIONS(6324), + [sym_nothing_literal] = ACTIONS(6324), + [sym_null_literal] = ACTIONS(6324), + [sym_empty_literal] = ACTIONS(6324), + [sym_date_literal] = ACTIONS(6326), + [anon_sym_POUND] = ACTIONS(6324), + }, + [STATE(3614)] = { + [sym_identifier] = ACTIONS(6396), + [sym_newline] = ACTIONS(6398), + [anon_sym_COLON] = ACTIONS(6398), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6396), + [aux_sym_frm_property_statement_token1] = ACTIONS(6396), + [anon_sym_DOT] = ACTIONS(6396), + [anon_sym_BANG] = ACTIONS(6398), + [aux_sym__attribute_identifier_token1] = ACTIONS(6396), + [aux_sym_option_statement_token3] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6396), + [aux_sym_preprocessor_const_token1] = ACTIONS(6396), + [sym_static_modifier] = ACTIONS(6396), + [sym__dim_keyword] = ACTIONS(6396), + [sym__redim_keyword] = ACTIONS(6396), + [aux_sym_get_accessor_token1] = ACTIONS(6396), + [aux_sym_set_accessor_token1] = ACTIONS(6396), + [aux_sym_const_declaration_token1] = ACTIONS(6396), + [anon_sym_LPAREN] = ACTIONS(6398), + [aux_sym_as_type_clause_token2] = ACTIONS(6396), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6396), + [aux_sym_visibility_token1] = ACTIONS(6396), + [aux_sym_visibility_token2] = ACTIONS(6396), + [aux_sym_elseif_fragment_token1] = ACTIONS(6396), + [aux_sym_else_fragment_token1] = ACTIONS(6396), + [aux_sym_select_statement_token1] = ACTIONS(6396), + [aux_sym_select_statement_token2] = ACTIONS(6396), + [aux_sym__for_header_token1] = ACTIONS(6396), + [aux_sym_do_statement_token1] = ACTIONS(6396), + [aux_sym_do_condition_token1] = ACTIONS(6396), + [aux_sym_with_statement_token1] = ACTIONS(6396), + [aux_sym_exit_statement_token1] = ACTIONS(6396), + [sym_end_statement] = ACTIONS(6398), + [aux_sym_on_goto_statement_token1] = ACTIONS(6396), + [aux_sym_on_goto_statement_token2] = ACTIONS(6396), + [aux_sym_on_error_statement_token2] = ACTIONS(6396), + [sym__ambiguous_redim_statement] = ACTIONS(6398), + [aux_sym_erase_statement_token1] = ACTIONS(6396), + [aux_sym_open_statement_token1] = ACTIONS(6396), + [aux_sym_file_mode_token2] = ACTIONS(6396), + [aux_sym_file_access_token2] = ACTIONS(6396), + [aux_sym_file_lock_token2] = ACTIONS(6396), + [aux_sym_print_statement_token1] = ACTIONS(6396), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_QMARK] = ACTIONS(6398), + [aux_sym_close_statement_token1] = ACTIONS(6396), + [aux_sym_put_statement_token1] = ACTIONS(6396), + [aux_sym_unlock_statement_token1] = ACTIONS(6396), + [aux_sym_seek_statement_token1] = ACTIONS(6396), + [sym_reset_statement] = ACTIONS(6396), + [aux_sym_raise_event_statement_token1] = ACTIONS(6396), + [sym_stop_statement] = ACTIONS(6396), + [sym_beep_statement] = ACTIONS(6396), + [aux_sym_unload_statement_token1] = ACTIONS(6396), + [aux_sym_def_type_statement_token1] = ACTIONS(6396), + [aux_sym_def_type_statement_token2] = ACTIONS(6396), + [aux_sym_def_type_statement_token3] = ACTIONS(6396), + [aux_sym_def_type_statement_token4] = ACTIONS(6396), + [aux_sym_def_type_statement_token5] = ACTIONS(6396), + [aux_sym_def_type_statement_token6] = ACTIONS(6396), + [aux_sym_def_type_statement_token7] = ACTIONS(6396), + [aux_sym_def_type_statement_token8] = ACTIONS(6396), + [aux_sym_def_type_statement_token9] = ACTIONS(6396), + [aux_sym_def_type_statement_token10] = ACTIONS(6396), + [aux_sym_def_type_statement_token11] = ACTIONS(6396), + [aux_sym_def_type_statement_token12] = ACTIONS(6396), + [aux_sym_def_type_statement_token13] = ACTIONS(6396), + [aux_sym_def_type_statement_token14] = ACTIONS(6396), + [aux_sym_call_statement_token1] = ACTIONS(6396), + [sym__ambiguous_call_statement] = ACTIONS(6396), + [aux_sym_addressof_expression_token1] = ACTIONS(6396), + [aux_sym_type_of_expression_token1] = ACTIONS(6396), + [aux_sym_unary_expression_token1] = ACTIONS(6396), + [sym_string_literal] = ACTIONS(6398), + [sym_number_literal] = ACTIONS(6398), + [aux_sym_boolean_literal_token1] = ACTIONS(6396), + [aux_sym_boolean_literal_token2] = ACTIONS(6396), + [sym_nothing_literal] = ACTIONS(6396), + [sym_null_literal] = ACTIONS(6396), + [sym_empty_literal] = ACTIONS(6396), + [sym_date_literal] = ACTIONS(6398), + [anon_sym_POUND] = ACTIONS(6396), + }, + [STATE(3615)] = { + [sym_identifier] = ACTIONS(6430), + [sym_newline] = ACTIONS(6432), + [anon_sym_COLON] = ACTIONS(6432), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6430), + [aux_sym_frm_property_statement_token1] = ACTIONS(6430), + [anon_sym_DOT] = ACTIONS(6430), + [anon_sym_BANG] = ACTIONS(6432), + [aux_sym__attribute_identifier_token1] = ACTIONS(6430), + [aux_sym_option_statement_token3] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6430), + [aux_sym_preprocessor_const_token1] = ACTIONS(6430), + [sym_static_modifier] = ACTIONS(6430), + [sym__dim_keyword] = ACTIONS(6430), + [sym__redim_keyword] = ACTIONS(6430), + [aux_sym_get_accessor_token1] = ACTIONS(6430), + [aux_sym_set_accessor_token1] = ACTIONS(6430), + [aux_sym_const_declaration_token1] = ACTIONS(6430), + [anon_sym_LPAREN] = ACTIONS(6432), + [aux_sym_as_type_clause_token2] = ACTIONS(6430), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6430), + [aux_sym_visibility_token1] = ACTIONS(6430), + [aux_sym_visibility_token2] = ACTIONS(6430), + [aux_sym_elseif_fragment_token1] = ACTIONS(6430), + [aux_sym_else_fragment_token1] = ACTIONS(6430), + [aux_sym_select_statement_token1] = ACTIONS(6430), + [aux_sym_select_statement_token2] = ACTIONS(6430), + [aux_sym__for_header_token1] = ACTIONS(6430), + [aux_sym_do_statement_token1] = ACTIONS(6430), + [aux_sym_do_condition_token1] = ACTIONS(6430), + [aux_sym_with_statement_token1] = ACTIONS(6430), + [aux_sym_exit_statement_token1] = ACTIONS(6430), + [sym_end_statement] = ACTIONS(6432), + [aux_sym_on_goto_statement_token1] = ACTIONS(6430), + [aux_sym_on_goto_statement_token2] = ACTIONS(6430), + [aux_sym_on_error_statement_token2] = ACTIONS(6430), + [sym__ambiguous_redim_statement] = ACTIONS(6432), + [aux_sym_erase_statement_token1] = ACTIONS(6430), + [aux_sym_open_statement_token1] = ACTIONS(6430), + [aux_sym_file_mode_token2] = ACTIONS(6430), + [aux_sym_file_access_token2] = ACTIONS(6430), + [aux_sym_file_lock_token2] = ACTIONS(6430), + [aux_sym_print_statement_token1] = ACTIONS(6430), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_QMARK] = ACTIONS(6432), + [aux_sym_close_statement_token1] = ACTIONS(6430), + [aux_sym_put_statement_token1] = ACTIONS(6430), + [aux_sym_unlock_statement_token1] = ACTIONS(6430), + [aux_sym_seek_statement_token1] = ACTIONS(6430), + [sym_reset_statement] = ACTIONS(6430), + [aux_sym_raise_event_statement_token1] = ACTIONS(6430), + [sym_stop_statement] = ACTIONS(6430), + [sym_beep_statement] = ACTIONS(6430), + [aux_sym_unload_statement_token1] = ACTIONS(6430), + [aux_sym_def_type_statement_token1] = ACTIONS(6430), + [aux_sym_def_type_statement_token2] = ACTIONS(6430), + [aux_sym_def_type_statement_token3] = ACTIONS(6430), + [aux_sym_def_type_statement_token4] = ACTIONS(6430), + [aux_sym_def_type_statement_token5] = ACTIONS(6430), + [aux_sym_def_type_statement_token6] = ACTIONS(6430), + [aux_sym_def_type_statement_token7] = ACTIONS(6430), + [aux_sym_def_type_statement_token8] = ACTIONS(6430), + [aux_sym_def_type_statement_token9] = ACTIONS(6430), + [aux_sym_def_type_statement_token10] = ACTIONS(6430), + [aux_sym_def_type_statement_token11] = ACTIONS(6430), + [aux_sym_def_type_statement_token12] = ACTIONS(6430), + [aux_sym_def_type_statement_token13] = ACTIONS(6430), + [aux_sym_def_type_statement_token14] = ACTIONS(6430), + [aux_sym_call_statement_token1] = ACTIONS(6430), + [sym__ambiguous_call_statement] = ACTIONS(6430), + [aux_sym_addressof_expression_token1] = ACTIONS(6430), + [aux_sym_type_of_expression_token1] = ACTIONS(6430), + [aux_sym_unary_expression_token1] = ACTIONS(6430), + [sym_string_literal] = ACTIONS(6432), + [sym_number_literal] = ACTIONS(6432), + [aux_sym_boolean_literal_token1] = ACTIONS(6430), + [aux_sym_boolean_literal_token2] = ACTIONS(6430), + [sym_nothing_literal] = ACTIONS(6430), + [sym_null_literal] = ACTIONS(6430), + [sym_empty_literal] = ACTIONS(6430), + [sym_date_literal] = ACTIONS(6432), + [anon_sym_POUND] = ACTIONS(6430), + }, + [STATE(3616)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(3631), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(8450), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(3617)] = { + [sym_identifier] = ACTIONS(6617), + [sym_newline] = ACTIONS(6619), + [anon_sym_COLON] = ACTIONS(6619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6617), + [aux_sym_frm_property_statement_token1] = ACTIONS(6617), + [anon_sym_DOT] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(6619), + [aux_sym__attribute_identifier_token1] = ACTIONS(6617), + [aux_sym_option_statement_token3] = ACTIONS(6617), + [aux_sym_type_declaration_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6617), + [aux_sym_enum_declaration_token1] = ACTIONS(6617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6617), + [aux_sym_declare_function_statement_token1] = ACTIONS(6617), + [aux_sym_preprocessor_const_token1] = ACTIONS(6617), + [aux_sym__property_get_header_token1] = ACTIONS(6617), + [aux_sym_event_declaration_token1] = ACTIONS(6617), + [sym_static_modifier] = ACTIONS(6617), + [sym__dim_keyword] = ACTIONS(6617), + [sym__redim_keyword] = ACTIONS(6617), + [aux_sym_get_accessor_token1] = ACTIONS(6617), + [aux_sym_set_accessor_token1] = ACTIONS(6617), + [aux_sym_const_declaration_token1] = ACTIONS(6617), + [anon_sym_LPAREN] = ACTIONS(6619), + [aux_sym_as_type_clause_token2] = ACTIONS(6617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6617), + [aux_sym_visibility_token1] = ACTIONS(6617), + [aux_sym_visibility_token2] = ACTIONS(6617), + [aux_sym_elseif_fragment_token1] = ACTIONS(6617), + [aux_sym_else_fragment_token1] = ACTIONS(6617), + [aux_sym_select_statement_token1] = ACTIONS(6617), + [aux_sym__for_header_token1] = ACTIONS(6617), + [aux_sym_do_statement_token1] = ACTIONS(6617), + [aux_sym_do_condition_token1] = ACTIONS(6617), + [aux_sym_with_statement_token1] = ACTIONS(6617), + [aux_sym_exit_statement_token1] = ACTIONS(6617), + [sym_end_statement] = ACTIONS(6619), + [aux_sym_on_goto_statement_token1] = ACTIONS(6617), + [aux_sym_on_goto_statement_token2] = ACTIONS(6617), + [aux_sym_on_error_statement_token2] = ACTIONS(6617), + [sym__ambiguous_redim_statement] = ACTIONS(6619), + [aux_sym_erase_statement_token1] = ACTIONS(6617), + [aux_sym_open_statement_token1] = ACTIONS(6617), + [aux_sym_file_mode_token2] = ACTIONS(6617), + [aux_sym_file_access_token2] = ACTIONS(6617), + [aux_sym_file_lock_token2] = ACTIONS(6617), + [aux_sym_print_statement_token1] = ACTIONS(6617), + [anon_sym_PLUS] = ACTIONS(6619), + [anon_sym_DASH] = ACTIONS(6617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7335), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7337), + [anon_sym_QMARK] = ACTIONS(6619), + [aux_sym_close_statement_token1] = ACTIONS(6617), + [aux_sym_put_statement_token1] = ACTIONS(6617), + [aux_sym_unlock_statement_token1] = ACTIONS(6617), + [aux_sym_seek_statement_token1] = ACTIONS(6617), + [sym_reset_statement] = ACTIONS(6617), + [aux_sym_raise_event_statement_token1] = ACTIONS(6617), + [sym_stop_statement] = ACTIONS(6617), + [sym_beep_statement] = ACTIONS(6617), + [aux_sym_unload_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token2] = ACTIONS(6617), + [aux_sym_def_type_statement_token3] = ACTIONS(6617), + [aux_sym_def_type_statement_token4] = ACTIONS(6617), + [aux_sym_def_type_statement_token5] = ACTIONS(6617), + [aux_sym_def_type_statement_token6] = ACTIONS(6617), + [aux_sym_def_type_statement_token7] = ACTIONS(6617), + [aux_sym_def_type_statement_token8] = ACTIONS(6617), + [aux_sym_def_type_statement_token9] = ACTIONS(6617), + [aux_sym_def_type_statement_token10] = ACTIONS(6617), + [aux_sym_def_type_statement_token11] = ACTIONS(6617), + [aux_sym_def_type_statement_token12] = ACTIONS(6617), + [aux_sym_def_type_statement_token13] = ACTIONS(6617), + [aux_sym_def_type_statement_token14] = ACTIONS(6617), + [aux_sym_call_statement_token1] = ACTIONS(6617), + [sym__ambiguous_call_statement] = ACTIONS(6617), + [aux_sym_addressof_expression_token1] = ACTIONS(6617), + [aux_sym_type_of_expression_token1] = ACTIONS(6617), + [aux_sym_unary_expression_token1] = ACTIONS(6617), + [sym_string_literal] = ACTIONS(6619), + [sym_number_literal] = ACTIONS(6619), + [aux_sym_boolean_literal_token1] = ACTIONS(6617), + [aux_sym_boolean_literal_token2] = ACTIONS(6617), + [sym_nothing_literal] = ACTIONS(6617), + [sym_null_literal] = ACTIONS(6617), + [sym_empty_literal] = ACTIONS(6617), + [sym_date_literal] = ACTIONS(6619), + [anon_sym_POUND] = ACTIONS(6617), + }, + [STATE(3618)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token3] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(3619)] = { + [sym_identifier] = ACTIONS(6621), + [sym_newline] = ACTIONS(6623), + [anon_sym_COLON] = ACTIONS(6623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6621), + [aux_sym_frm_property_statement_token1] = ACTIONS(6621), + [anon_sym_DOT] = ACTIONS(6621), + [anon_sym_BANG] = ACTIONS(6623), + [aux_sym__attribute_identifier_token1] = ACTIONS(6621), + [aux_sym_option_statement_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6621), + [aux_sym_preprocessor_const_token1] = ACTIONS(6621), + [sym_static_modifier] = ACTIONS(6621), + [sym__dim_keyword] = ACTIONS(6621), + [sym__redim_keyword] = ACTIONS(6621), + [aux_sym_get_accessor_token1] = ACTIONS(6621), + [aux_sym_set_accessor_token1] = ACTIONS(6621), + [aux_sym_const_declaration_token1] = ACTIONS(6621), + [anon_sym_LPAREN] = ACTIONS(6623), + [aux_sym_as_type_clause_token2] = ACTIONS(6621), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6621), + [aux_sym_visibility_token1] = ACTIONS(6621), + [aux_sym_visibility_token2] = ACTIONS(6621), + [aux_sym_elseif_fragment_token1] = ACTIONS(6621), + [aux_sym_else_fragment_token1] = ACTIONS(6621), + [aux_sym_select_statement_token1] = ACTIONS(6621), + [aux_sym_select_statement_token2] = ACTIONS(6621), + [aux_sym__for_header_token1] = ACTIONS(6621), + [aux_sym_do_statement_token1] = ACTIONS(6621), + [aux_sym_do_condition_token1] = ACTIONS(6621), + [aux_sym_with_statement_token1] = ACTIONS(6621), + [aux_sym_exit_statement_token1] = ACTIONS(6621), + [sym_end_statement] = ACTIONS(6623), + [aux_sym_on_goto_statement_token1] = ACTIONS(6621), + [aux_sym_on_goto_statement_token2] = ACTIONS(6621), + [aux_sym_on_error_statement_token2] = ACTIONS(6621), + [sym__ambiguous_redim_statement] = ACTIONS(6623), + [aux_sym_erase_statement_token1] = ACTIONS(6621), + [aux_sym_open_statement_token1] = ACTIONS(6621), + [aux_sym_file_mode_token2] = ACTIONS(6621), + [aux_sym_file_access_token2] = ACTIONS(6621), + [aux_sym_file_lock_token2] = ACTIONS(6621), + [aux_sym_print_statement_token1] = ACTIONS(6621), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6057), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6059), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6061), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6063), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6065), + [anon_sym_QMARK] = ACTIONS(6623), + [aux_sym_close_statement_token1] = ACTIONS(6621), + [aux_sym_put_statement_token1] = ACTIONS(6621), + [aux_sym_unlock_statement_token1] = ACTIONS(6621), + [aux_sym_seek_statement_token1] = ACTIONS(6621), + [sym_reset_statement] = ACTIONS(6621), + [aux_sym_raise_event_statement_token1] = ACTIONS(6621), + [sym_stop_statement] = ACTIONS(6621), + [sym_beep_statement] = ACTIONS(6621), + [aux_sym_unload_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token2] = ACTIONS(6621), + [aux_sym_def_type_statement_token3] = ACTIONS(6621), + [aux_sym_def_type_statement_token4] = ACTIONS(6621), + [aux_sym_def_type_statement_token5] = ACTIONS(6621), + [aux_sym_def_type_statement_token6] = ACTIONS(6621), + [aux_sym_def_type_statement_token7] = ACTIONS(6621), + [aux_sym_def_type_statement_token8] = ACTIONS(6621), + [aux_sym_def_type_statement_token9] = ACTIONS(6621), + [aux_sym_def_type_statement_token10] = ACTIONS(6621), + [aux_sym_def_type_statement_token11] = ACTIONS(6621), + [aux_sym_def_type_statement_token12] = ACTIONS(6621), + [aux_sym_def_type_statement_token13] = ACTIONS(6621), + [aux_sym_def_type_statement_token14] = ACTIONS(6621), + [aux_sym_call_statement_token1] = ACTIONS(6621), + [sym__ambiguous_call_statement] = ACTIONS(6621), + [aux_sym_addressof_expression_token1] = ACTIONS(6621), + [aux_sym_type_of_expression_token1] = ACTIONS(6621), + [aux_sym_unary_expression_token1] = ACTIONS(6621), + [sym_string_literal] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [aux_sym_boolean_literal_token1] = ACTIONS(6621), + [aux_sym_boolean_literal_token2] = ACTIONS(6621), + [sym_nothing_literal] = ACTIONS(6621), + [sym_null_literal] = ACTIONS(6621), + [sym_empty_literal] = ACTIONS(6621), + [sym_date_literal] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6621), + }, + [STATE(3620)] = { + [sym_as_type_clause] = STATE(4155), + [sym_identifier] = ACTIONS(8452), + [sym_newline] = ACTIONS(8454), + [anon_sym_COLON] = ACTIONS(8454), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8452), + [aux_sym_frm_property_statement_token1] = ACTIONS(8452), + [anon_sym_DOT] = ACTIONS(8452), + [anon_sym_BANG] = ACTIONS(8454), + [aux_sym__attribute_identifier_token1] = ACTIONS(8452), + [aux_sym_option_statement_token3] = ACTIONS(8452), + [aux_sym_type_declaration_token1] = ACTIONS(8452), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8452), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8452), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8452), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8452), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8452), + [aux_sym_enum_declaration_token1] = ACTIONS(8452), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8452), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8452), + [aux_sym_declare_function_statement_token1] = ACTIONS(8452), + [aux_sym_preprocessor_const_token1] = ACTIONS(8452), + [aux_sym__property_get_header_token1] = ACTIONS(8452), + [aux_sym_event_declaration_token1] = ACTIONS(8452), + [sym_static_modifier] = ACTIONS(8452), + [sym__dim_keyword] = ACTIONS(8452), + [sym__redim_keyword] = ACTIONS(8452), + [aux_sym_get_accessor_token1] = ACTIONS(8452), + [aux_sym_set_accessor_token1] = ACTIONS(8452), + [aux_sym_const_declaration_token1] = ACTIONS(8452), + [anon_sym_LPAREN] = ACTIONS(8454), + [aux_sym_as_type_clause_token1] = ACTIONS(7428), + [aux_sym_as_type_clause_token2] = ACTIONS(8452), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8452), + [aux_sym_visibility_token1] = ACTIONS(8452), + [aux_sym_visibility_token2] = ACTIONS(8452), + [aux_sym_elseif_fragment_token1] = ACTIONS(8452), + [aux_sym_else_fragment_token1] = ACTIONS(8452), + [aux_sym_select_statement_token1] = ACTIONS(8452), + [aux_sym__for_header_token1] = ACTIONS(8452), + [aux_sym_do_statement_token1] = ACTIONS(8452), + [aux_sym_do_condition_token1] = ACTIONS(8452), + [aux_sym_with_statement_token1] = ACTIONS(8452), + [aux_sym_exit_statement_token1] = ACTIONS(8452), + [sym_end_statement] = ACTIONS(8454), + [aux_sym_on_goto_statement_token1] = ACTIONS(8452), + [aux_sym_on_goto_statement_token2] = ACTIONS(8452), + [aux_sym_on_error_statement_token2] = ACTIONS(8452), + [sym__ambiguous_redim_statement] = ACTIONS(8454), + [aux_sym_erase_statement_token1] = ACTIONS(8452), + [aux_sym_open_statement_token1] = ACTIONS(8452), + [aux_sym_file_mode_token2] = ACTIONS(8452), + [aux_sym_file_access_token2] = ACTIONS(8452), + [aux_sym_file_lock_token2] = ACTIONS(8452), + [aux_sym_print_statement_token1] = ACTIONS(8452), + [anon_sym_PLUS] = ACTIONS(8454), + [anon_sym_DASH] = ACTIONS(8452), + [anon_sym_QMARK] = ACTIONS(8454), + [aux_sym_close_statement_token1] = ACTIONS(8452), + [aux_sym_put_statement_token1] = ACTIONS(8452), + [aux_sym_unlock_statement_token1] = ACTIONS(8452), + [aux_sym_seek_statement_token1] = ACTIONS(8452), + [sym_reset_statement] = ACTIONS(8452), + [aux_sym_raise_event_statement_token1] = ACTIONS(8452), + [sym_stop_statement] = ACTIONS(8452), + [sym_beep_statement] = ACTIONS(8452), + [aux_sym_unload_statement_token1] = ACTIONS(8452), + [aux_sym_def_type_statement_token1] = ACTIONS(8452), + [aux_sym_def_type_statement_token2] = ACTIONS(8452), + [aux_sym_def_type_statement_token3] = ACTIONS(8452), + [aux_sym_def_type_statement_token4] = ACTIONS(8452), + [aux_sym_def_type_statement_token5] = ACTIONS(8452), + [aux_sym_def_type_statement_token6] = ACTIONS(8452), + [aux_sym_def_type_statement_token7] = ACTIONS(8452), + [aux_sym_def_type_statement_token8] = ACTIONS(8452), + [aux_sym_def_type_statement_token9] = ACTIONS(8452), + [aux_sym_def_type_statement_token10] = ACTIONS(8452), + [aux_sym_def_type_statement_token11] = ACTIONS(8452), + [aux_sym_def_type_statement_token12] = ACTIONS(8452), + [aux_sym_def_type_statement_token13] = ACTIONS(8452), + [aux_sym_def_type_statement_token14] = ACTIONS(8452), + [aux_sym_call_statement_token1] = ACTIONS(8452), + [sym__ambiguous_call_statement] = ACTIONS(8452), + [aux_sym_addressof_expression_token1] = ACTIONS(8452), + [aux_sym_type_of_expression_token1] = ACTIONS(8452), + [aux_sym_unary_expression_token1] = ACTIONS(8452), + [sym_string_literal] = ACTIONS(8454), + [sym_number_literal] = ACTIONS(8454), + [aux_sym_boolean_literal_token1] = ACTIONS(8452), + [aux_sym_boolean_literal_token2] = ACTIONS(8452), + [sym_nothing_literal] = ACTIONS(8452), + [sym_null_literal] = ACTIONS(8452), + [sym_empty_literal] = ACTIONS(8452), + [sym_date_literal] = ACTIONS(8454), + [anon_sym_POUND] = ACTIONS(8452), + }, + [STATE(3621)] = { + [sym_identifier] = ACTIONS(6434), + [sym_newline] = ACTIONS(6436), + [anon_sym_COLON] = ACTIONS(6436), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6434), + [aux_sym_frm_property_statement_token1] = ACTIONS(6434), + [anon_sym_DOT] = ACTIONS(6434), + [anon_sym_BANG] = ACTIONS(6436), + [aux_sym__attribute_identifier_token1] = ACTIONS(6434), + [aux_sym_option_statement_token3] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6434), + [aux_sym_preprocessor_const_token1] = ACTIONS(6434), + [sym_static_modifier] = ACTIONS(6434), + [sym__dim_keyword] = ACTIONS(6434), + [sym__redim_keyword] = ACTIONS(6434), + [aux_sym_get_accessor_token1] = ACTIONS(6434), + [aux_sym_set_accessor_token1] = ACTIONS(6434), + [aux_sym_const_declaration_token1] = ACTIONS(6434), + [anon_sym_LPAREN] = ACTIONS(6436), + [aux_sym_as_type_clause_token2] = ACTIONS(6434), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6434), + [aux_sym_visibility_token1] = ACTIONS(6434), + [aux_sym_visibility_token2] = ACTIONS(6434), + [aux_sym_elseif_fragment_token1] = ACTIONS(6434), + [aux_sym_else_fragment_token1] = ACTIONS(6434), + [aux_sym_select_statement_token1] = ACTIONS(6434), + [aux_sym_select_statement_token2] = ACTIONS(6434), + [aux_sym__for_header_token1] = ACTIONS(6434), + [aux_sym_do_statement_token1] = ACTIONS(6434), + [aux_sym_do_condition_token1] = ACTIONS(6434), + [aux_sym_with_statement_token1] = ACTIONS(6434), + [aux_sym_exit_statement_token1] = ACTIONS(6434), + [sym_end_statement] = ACTIONS(6436), + [aux_sym_on_goto_statement_token1] = ACTIONS(6434), + [aux_sym_on_goto_statement_token2] = ACTIONS(6434), + [aux_sym_on_error_statement_token2] = ACTIONS(6434), + [sym__ambiguous_redim_statement] = ACTIONS(6436), + [aux_sym_erase_statement_token1] = ACTIONS(6434), + [aux_sym_open_statement_token1] = ACTIONS(6434), + [aux_sym_file_mode_token2] = ACTIONS(6434), + [aux_sym_file_access_token2] = ACTIONS(6434), + [aux_sym_file_lock_token2] = ACTIONS(6434), + [aux_sym_print_statement_token1] = ACTIONS(6434), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_QMARK] = ACTIONS(6436), + [aux_sym_close_statement_token1] = ACTIONS(6434), + [aux_sym_put_statement_token1] = ACTIONS(6434), + [aux_sym_unlock_statement_token1] = ACTIONS(6434), + [aux_sym_seek_statement_token1] = ACTIONS(6434), + [sym_reset_statement] = ACTIONS(6434), + [aux_sym_raise_event_statement_token1] = ACTIONS(6434), + [sym_stop_statement] = ACTIONS(6434), + [sym_beep_statement] = ACTIONS(6434), + [aux_sym_unload_statement_token1] = ACTIONS(6434), + [aux_sym_def_type_statement_token1] = ACTIONS(6434), + [aux_sym_def_type_statement_token2] = ACTIONS(6434), + [aux_sym_def_type_statement_token3] = ACTIONS(6434), + [aux_sym_def_type_statement_token4] = ACTIONS(6434), + [aux_sym_def_type_statement_token5] = ACTIONS(6434), + [aux_sym_def_type_statement_token6] = ACTIONS(6434), + [aux_sym_def_type_statement_token7] = ACTIONS(6434), + [aux_sym_def_type_statement_token8] = ACTIONS(6434), + [aux_sym_def_type_statement_token9] = ACTIONS(6434), + [aux_sym_def_type_statement_token10] = ACTIONS(6434), + [aux_sym_def_type_statement_token11] = ACTIONS(6434), + [aux_sym_def_type_statement_token12] = ACTIONS(6434), + [aux_sym_def_type_statement_token13] = ACTIONS(6434), + [aux_sym_def_type_statement_token14] = ACTIONS(6434), + [aux_sym_call_statement_token1] = ACTIONS(6434), + [sym__ambiguous_call_statement] = ACTIONS(6434), + [aux_sym_addressof_expression_token1] = ACTIONS(6434), + [aux_sym_type_of_expression_token1] = ACTIONS(6434), + [aux_sym_unary_expression_token1] = ACTIONS(6434), + [sym_string_literal] = ACTIONS(6436), + [sym_number_literal] = ACTIONS(6436), + [aux_sym_boolean_literal_token1] = ACTIONS(6434), + [aux_sym_boolean_literal_token2] = ACTIONS(6434), + [sym_nothing_literal] = ACTIONS(6434), + [sym_null_literal] = ACTIONS(6434), + [sym_empty_literal] = ACTIONS(6434), + [sym_date_literal] = ACTIONS(6436), + [anon_sym_POUND] = ACTIONS(6434), + }, + [STATE(3622)] = { + [sym_identifier] = ACTIONS(6438), + [sym_newline] = ACTIONS(6440), + [anon_sym_COLON] = ACTIONS(6440), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6438), + [aux_sym_frm_property_statement_token1] = ACTIONS(6438), + [anon_sym_DOT] = ACTIONS(6438), + [anon_sym_BANG] = ACTIONS(6440), + [aux_sym__attribute_identifier_token1] = ACTIONS(6438), + [aux_sym_option_statement_token3] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6438), + [aux_sym_preprocessor_const_token1] = ACTIONS(6438), + [sym_static_modifier] = ACTIONS(6438), + [sym__dim_keyword] = ACTIONS(6438), + [sym__redim_keyword] = ACTIONS(6438), + [aux_sym_get_accessor_token1] = ACTIONS(6438), + [aux_sym_set_accessor_token1] = ACTIONS(6438), + [aux_sym_const_declaration_token1] = ACTIONS(6438), + [anon_sym_LPAREN] = ACTIONS(6440), + [aux_sym_as_type_clause_token2] = ACTIONS(6438), + [anon_sym_STAR] = ACTIONS(7170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6438), + [aux_sym_visibility_token1] = ACTIONS(6438), + [aux_sym_visibility_token2] = ACTIONS(6438), + [aux_sym_elseif_fragment_token1] = ACTIONS(6438), + [aux_sym_else_fragment_token1] = ACTIONS(6438), + [aux_sym_select_statement_token1] = ACTIONS(6438), + [aux_sym_select_statement_token2] = ACTIONS(6438), + [aux_sym__for_header_token1] = ACTIONS(6438), + [aux_sym_do_statement_token1] = ACTIONS(6438), + [aux_sym_do_condition_token1] = ACTIONS(6438), + [aux_sym_with_statement_token1] = ACTIONS(6438), + [aux_sym_exit_statement_token1] = ACTIONS(6438), + [sym_end_statement] = ACTIONS(6440), + [aux_sym_on_goto_statement_token1] = ACTIONS(6438), + [aux_sym_on_goto_statement_token2] = ACTIONS(6438), + [aux_sym_on_error_statement_token2] = ACTIONS(6438), + [sym__ambiguous_redim_statement] = ACTIONS(6440), + [aux_sym_erase_statement_token1] = ACTIONS(6438), + [aux_sym_open_statement_token1] = ACTIONS(6438), + [aux_sym_file_mode_token2] = ACTIONS(6438), + [aux_sym_file_access_token2] = ACTIONS(6438), + [aux_sym_file_lock_token2] = ACTIONS(6438), + [aux_sym_print_statement_token1] = ACTIONS(6438), + [anon_sym_CARET] = ACTIONS(7172), + [anon_sym_SLASH] = ACTIONS(7170), + [anon_sym_BSLASH] = ACTIONS(7174), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7180), + [anon_sym_AMP] = ACTIONS(7182), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7184), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7186), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7188), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7190), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7192), + [anon_sym_QMARK] = ACTIONS(6440), + [aux_sym_close_statement_token1] = ACTIONS(6438), + [aux_sym_put_statement_token1] = ACTIONS(6438), + [aux_sym_unlock_statement_token1] = ACTIONS(6438), + [aux_sym_seek_statement_token1] = ACTIONS(6438), + [sym_reset_statement] = ACTIONS(6438), + [aux_sym_raise_event_statement_token1] = ACTIONS(6438), + [sym_stop_statement] = ACTIONS(6438), + [sym_beep_statement] = ACTIONS(6438), + [aux_sym_unload_statement_token1] = ACTIONS(6438), + [aux_sym_def_type_statement_token1] = ACTIONS(6438), + [aux_sym_def_type_statement_token2] = ACTIONS(6438), + [aux_sym_def_type_statement_token3] = ACTIONS(6438), + [aux_sym_def_type_statement_token4] = ACTIONS(6438), + [aux_sym_def_type_statement_token5] = ACTIONS(6438), + [aux_sym_def_type_statement_token6] = ACTIONS(6438), + [aux_sym_def_type_statement_token7] = ACTIONS(6438), + [aux_sym_def_type_statement_token8] = ACTIONS(6438), + [aux_sym_def_type_statement_token9] = ACTIONS(6438), + [aux_sym_def_type_statement_token10] = ACTIONS(6438), + [aux_sym_def_type_statement_token11] = ACTIONS(6438), + [aux_sym_def_type_statement_token12] = ACTIONS(6438), + [aux_sym_def_type_statement_token13] = ACTIONS(6438), + [aux_sym_def_type_statement_token14] = ACTIONS(6438), + [aux_sym_call_statement_token1] = ACTIONS(6438), + [sym__ambiguous_call_statement] = ACTIONS(6438), + [aux_sym_addressof_expression_token1] = ACTIONS(6438), + [aux_sym_type_of_expression_token1] = ACTIONS(6438), + [aux_sym_unary_expression_token1] = ACTIONS(6438), + [sym_string_literal] = ACTIONS(6440), + [sym_number_literal] = ACTIONS(6440), + [aux_sym_boolean_literal_token1] = ACTIONS(6438), + [aux_sym_boolean_literal_token2] = ACTIONS(6438), + [sym_nothing_literal] = ACTIONS(6438), + [sym_null_literal] = ACTIONS(6438), + [sym_empty_literal] = ACTIONS(6438), + [sym_date_literal] = ACTIONS(6440), + [anon_sym_POUND] = ACTIONS(6438), + }, + [STATE(3623)] = { + [aux_sym_redim_statement_repeat1] = STATE(3623), + [sym_identifier] = ACTIONS(8456), + [sym_newline] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8458), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8456), + [aux_sym_frm_property_statement_token1] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_BANG] = ACTIONS(8458), + [aux_sym__attribute_identifier_token1] = ACTIONS(8456), + [aux_sym_option_statement_token3] = ACTIONS(8456), + [aux_sym_type_declaration_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8456), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8456), + [aux_sym_enum_declaration_token1] = ACTIONS(8456), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8456), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8456), + [aux_sym_declare_function_statement_token1] = ACTIONS(8456), + [aux_sym_preprocessor_const_token1] = ACTIONS(8456), + [aux_sym__property_get_header_token1] = ACTIONS(8456), + [aux_sym_event_declaration_token1] = ACTIONS(8456), + [sym_static_modifier] = ACTIONS(8456), + [sym__dim_keyword] = ACTIONS(8456), + [sym__redim_keyword] = ACTIONS(8456), + [aux_sym_get_accessor_token1] = ACTIONS(8456), + [aux_sym_set_accessor_token1] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(8460), + [aux_sym_const_declaration_token1] = ACTIONS(8456), + [anon_sym_LPAREN] = ACTIONS(8458), + [aux_sym_as_type_clause_token2] = ACTIONS(8456), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8456), + [aux_sym_visibility_token1] = ACTIONS(8456), + [aux_sym_visibility_token2] = ACTIONS(8456), + [aux_sym_elseif_fragment_token1] = ACTIONS(8456), + [aux_sym_else_fragment_token1] = ACTIONS(8456), + [aux_sym_select_statement_token1] = ACTIONS(8456), + [aux_sym__for_header_token1] = ACTIONS(8456), + [aux_sym_do_statement_token1] = ACTIONS(8456), + [aux_sym_do_condition_token1] = ACTIONS(8456), + [aux_sym_with_statement_token1] = ACTIONS(8456), + [aux_sym_exit_statement_token1] = ACTIONS(8456), + [sym_end_statement] = ACTIONS(8458), + [aux_sym_on_goto_statement_token1] = ACTIONS(8456), + [aux_sym_on_goto_statement_token2] = ACTIONS(8456), + [aux_sym_on_error_statement_token2] = ACTIONS(8456), + [sym__ambiguous_redim_statement] = ACTIONS(8458), + [aux_sym_erase_statement_token1] = ACTIONS(8456), + [aux_sym_open_statement_token1] = ACTIONS(8456), + [aux_sym_file_mode_token2] = ACTIONS(8456), + [aux_sym_file_access_token2] = ACTIONS(8456), + [aux_sym_file_lock_token2] = ACTIONS(8456), + [aux_sym_print_statement_token1] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8458), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8458), + [aux_sym_close_statement_token1] = ACTIONS(8456), + [aux_sym_put_statement_token1] = ACTIONS(8456), + [aux_sym_unlock_statement_token1] = ACTIONS(8456), + [aux_sym_seek_statement_token1] = ACTIONS(8456), + [sym_reset_statement] = ACTIONS(8456), + [aux_sym_raise_event_statement_token1] = ACTIONS(8456), + [sym_stop_statement] = ACTIONS(8456), + [sym_beep_statement] = ACTIONS(8456), + [aux_sym_unload_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token2] = ACTIONS(8456), + [aux_sym_def_type_statement_token3] = ACTIONS(8456), + [aux_sym_def_type_statement_token4] = ACTIONS(8456), + [aux_sym_def_type_statement_token5] = ACTIONS(8456), + [aux_sym_def_type_statement_token6] = ACTIONS(8456), + [aux_sym_def_type_statement_token7] = ACTIONS(8456), + [aux_sym_def_type_statement_token8] = ACTIONS(8456), + [aux_sym_def_type_statement_token9] = ACTIONS(8456), + [aux_sym_def_type_statement_token10] = ACTIONS(8456), + [aux_sym_def_type_statement_token11] = ACTIONS(8456), + [aux_sym_def_type_statement_token12] = ACTIONS(8456), + [aux_sym_def_type_statement_token13] = ACTIONS(8456), + [aux_sym_def_type_statement_token14] = ACTIONS(8456), + [aux_sym_call_statement_token1] = ACTIONS(8456), + [sym__ambiguous_call_statement] = ACTIONS(8456), + [aux_sym_addressof_expression_token1] = ACTIONS(8456), + [aux_sym_type_of_expression_token1] = ACTIONS(8456), + [aux_sym_unary_expression_token1] = ACTIONS(8456), + [sym_string_literal] = ACTIONS(8458), + [sym_number_literal] = ACTIONS(8458), + [aux_sym_boolean_literal_token1] = ACTIONS(8456), + [aux_sym_boolean_literal_token2] = ACTIONS(8456), + [sym_nothing_literal] = ACTIONS(8456), + [sym_null_literal] = ACTIONS(8456), + [sym_empty_literal] = ACTIONS(8456), + [sym_date_literal] = ACTIONS(8458), + [anon_sym_POUND] = ACTIONS(8456), + }, + [STATE(3624)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4517), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(3625)] = { + [sym_as_type_clause] = STATE(4156), + [sym_identifier] = ACTIONS(8463), + [sym_newline] = ACTIONS(8465), + [anon_sym_COLON] = ACTIONS(8465), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8463), + [aux_sym_frm_property_statement_token1] = ACTIONS(8463), + [anon_sym_DOT] = ACTIONS(8463), + [anon_sym_BANG] = ACTIONS(8465), + [aux_sym__attribute_identifier_token1] = ACTIONS(8463), + [aux_sym_option_statement_token3] = ACTIONS(8463), + [aux_sym_type_declaration_token1] = ACTIONS(8463), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8463), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8463), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8463), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8463), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8463), + [aux_sym_enum_declaration_token1] = ACTIONS(8463), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8463), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8463), + [aux_sym_declare_function_statement_token1] = ACTIONS(8463), + [aux_sym_preprocessor_const_token1] = ACTIONS(8463), + [aux_sym__property_get_header_token1] = ACTIONS(8463), + [aux_sym_event_declaration_token1] = ACTIONS(8463), + [sym_static_modifier] = ACTIONS(8463), + [sym__dim_keyword] = ACTIONS(8463), + [sym__redim_keyword] = ACTIONS(8463), + [aux_sym_get_accessor_token1] = ACTIONS(8463), + [aux_sym_set_accessor_token1] = ACTIONS(8463), + [aux_sym_const_declaration_token1] = ACTIONS(8463), + [anon_sym_LPAREN] = ACTIONS(8465), + [aux_sym_as_type_clause_token1] = ACTIONS(7428), + [aux_sym_as_type_clause_token2] = ACTIONS(8463), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8463), + [aux_sym_visibility_token1] = ACTIONS(8463), + [aux_sym_visibility_token2] = ACTIONS(8463), + [aux_sym_elseif_fragment_token1] = ACTIONS(8463), + [aux_sym_else_fragment_token1] = ACTIONS(8463), + [aux_sym_select_statement_token1] = ACTIONS(8463), + [aux_sym__for_header_token1] = ACTIONS(8463), + [aux_sym_do_statement_token1] = ACTIONS(8463), + [aux_sym_do_condition_token1] = ACTIONS(8463), + [aux_sym_with_statement_token1] = ACTIONS(8463), + [aux_sym_exit_statement_token1] = ACTIONS(8463), + [sym_end_statement] = ACTIONS(8465), + [aux_sym_on_goto_statement_token1] = ACTIONS(8463), + [aux_sym_on_goto_statement_token2] = ACTIONS(8463), + [aux_sym_on_error_statement_token2] = ACTIONS(8463), + [sym__ambiguous_redim_statement] = ACTIONS(8465), + [aux_sym_erase_statement_token1] = ACTIONS(8463), + [aux_sym_open_statement_token1] = ACTIONS(8463), + [aux_sym_file_mode_token2] = ACTIONS(8463), + [aux_sym_file_access_token2] = ACTIONS(8463), + [aux_sym_file_lock_token2] = ACTIONS(8463), + [aux_sym_print_statement_token1] = ACTIONS(8463), + [anon_sym_PLUS] = ACTIONS(8465), + [anon_sym_DASH] = ACTIONS(8463), + [anon_sym_QMARK] = ACTIONS(8465), + [aux_sym_close_statement_token1] = ACTIONS(8463), + [aux_sym_put_statement_token1] = ACTIONS(8463), + [aux_sym_unlock_statement_token1] = ACTIONS(8463), + [aux_sym_seek_statement_token1] = ACTIONS(8463), + [sym_reset_statement] = ACTIONS(8463), + [aux_sym_raise_event_statement_token1] = ACTIONS(8463), + [sym_stop_statement] = ACTIONS(8463), + [sym_beep_statement] = ACTIONS(8463), + [aux_sym_unload_statement_token1] = ACTIONS(8463), + [aux_sym_def_type_statement_token1] = ACTIONS(8463), + [aux_sym_def_type_statement_token2] = ACTIONS(8463), + [aux_sym_def_type_statement_token3] = ACTIONS(8463), + [aux_sym_def_type_statement_token4] = ACTIONS(8463), + [aux_sym_def_type_statement_token5] = ACTIONS(8463), + [aux_sym_def_type_statement_token6] = ACTIONS(8463), + [aux_sym_def_type_statement_token7] = ACTIONS(8463), + [aux_sym_def_type_statement_token8] = ACTIONS(8463), + [aux_sym_def_type_statement_token9] = ACTIONS(8463), + [aux_sym_def_type_statement_token10] = ACTIONS(8463), + [aux_sym_def_type_statement_token11] = ACTIONS(8463), + [aux_sym_def_type_statement_token12] = ACTIONS(8463), + [aux_sym_def_type_statement_token13] = ACTIONS(8463), + [aux_sym_def_type_statement_token14] = ACTIONS(8463), + [aux_sym_call_statement_token1] = ACTIONS(8463), + [sym__ambiguous_call_statement] = ACTIONS(8463), + [aux_sym_addressof_expression_token1] = ACTIONS(8463), + [aux_sym_type_of_expression_token1] = ACTIONS(8463), + [aux_sym_unary_expression_token1] = ACTIONS(8463), + [sym_string_literal] = ACTIONS(8465), + [sym_number_literal] = ACTIONS(8465), + [aux_sym_boolean_literal_token1] = ACTIONS(8463), + [aux_sym_boolean_literal_token2] = ACTIONS(8463), + [sym_nothing_literal] = ACTIONS(8463), + [sym_null_literal] = ACTIONS(8463), + [sym_empty_literal] = ACTIONS(8463), + [sym_date_literal] = ACTIONS(8465), + [anon_sym_POUND] = ACTIONS(8463), + }, + [STATE(3626)] = { + [sym_identifier] = ACTIONS(8467), + [sym_newline] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8467), + [aux_sym_frm_property_statement_token1] = ACTIONS(8467), + [anon_sym_DOT] = ACTIONS(8467), + [anon_sym_BANG] = ACTIONS(6089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8467), + [aux_sym_option_statement_token3] = ACTIONS(8467), + [aux_sym_type_declaration_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8467), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8467), + [aux_sym_enum_declaration_token1] = ACTIONS(8467), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8467), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8467), + [aux_sym_declare_function_statement_token1] = ACTIONS(8467), + [aux_sym_preprocessor_const_token1] = ACTIONS(8467), + [aux_sym__property_get_header_token1] = ACTIONS(8467), + [aux_sym_event_declaration_token1] = ACTIONS(8467), + [sym_static_modifier] = ACTIONS(8467), + [sym__dim_keyword] = ACTIONS(8467), + [sym__redim_keyword] = ACTIONS(8467), + [aux_sym_get_accessor_token1] = ACTIONS(8467), + [aux_sym_set_accessor_token1] = ACTIONS(8467), + [anon_sym_COMMA] = ACTIONS(6089), + [aux_sym_const_declaration_token1] = ACTIONS(8467), + [anon_sym_LPAREN] = ACTIONS(6089), + [aux_sym_as_type_clause_token2] = ACTIONS(8467), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8467), + [aux_sym_visibility_token1] = ACTIONS(8467), + [aux_sym_visibility_token2] = ACTIONS(8467), + [aux_sym_elseif_fragment_token1] = ACTIONS(8467), + [aux_sym_else_fragment_token1] = ACTIONS(8467), + [aux_sym_select_statement_token1] = ACTIONS(8467), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8467), + [aux_sym__for_header_token1] = ACTIONS(8467), + [aux_sym_do_statement_token1] = ACTIONS(8467), + [aux_sym_do_condition_token1] = ACTIONS(8467), + [aux_sym_with_statement_token1] = ACTIONS(8467), + [aux_sym_exit_statement_token1] = ACTIONS(8467), + [sym_end_statement] = ACTIONS(6089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8467), + [aux_sym_on_goto_statement_token2] = ACTIONS(8467), + [aux_sym_on_error_statement_token2] = ACTIONS(8467), + [sym__ambiguous_redim_statement] = ACTIONS(6089), + [aux_sym_erase_statement_token1] = ACTIONS(8467), + [aux_sym_open_statement_token1] = ACTIONS(8467), + [aux_sym_file_mode_token2] = ACTIONS(8467), + [aux_sym_file_access_token2] = ACTIONS(8467), + [aux_sym_file_lock_token2] = ACTIONS(8467), + [aux_sym_print_statement_token1] = ACTIONS(8467), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(8467), + [anon_sym_QMARK] = ACTIONS(6089), + [aux_sym_close_statement_token1] = ACTIONS(8467), + [aux_sym_put_statement_token1] = ACTIONS(8467), + [aux_sym_unlock_statement_token1] = ACTIONS(8467), + [aux_sym_seek_statement_token1] = ACTIONS(8467), + [sym_reset_statement] = ACTIONS(8467), + [aux_sym_raise_event_statement_token1] = ACTIONS(8467), + [sym_stop_statement] = ACTIONS(8467), + [sym_beep_statement] = ACTIONS(8467), + [aux_sym_unload_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token2] = ACTIONS(8467), + [aux_sym_def_type_statement_token3] = ACTIONS(8467), + [aux_sym_def_type_statement_token4] = ACTIONS(8467), + [aux_sym_def_type_statement_token5] = ACTIONS(8467), + [aux_sym_def_type_statement_token6] = ACTIONS(8467), + [aux_sym_def_type_statement_token7] = ACTIONS(8467), + [aux_sym_def_type_statement_token8] = ACTIONS(8467), + [aux_sym_def_type_statement_token9] = ACTIONS(8467), + [aux_sym_def_type_statement_token10] = ACTIONS(8467), + [aux_sym_def_type_statement_token11] = ACTIONS(8467), + [aux_sym_def_type_statement_token12] = ACTIONS(8467), + [aux_sym_def_type_statement_token13] = ACTIONS(8467), + [aux_sym_def_type_statement_token14] = ACTIONS(8467), + [aux_sym_call_statement_token1] = ACTIONS(8467), + [sym__ambiguous_call_statement] = ACTIONS(8467), + [aux_sym_addressof_expression_token1] = ACTIONS(8467), + [aux_sym_type_of_expression_token1] = ACTIONS(8467), + [aux_sym_unary_expression_token1] = ACTIONS(8467), + [sym_string_literal] = ACTIONS(6089), + [sym_number_literal] = ACTIONS(6089), + [aux_sym_boolean_literal_token1] = ACTIONS(8467), + [aux_sym_boolean_literal_token2] = ACTIONS(8467), + [sym_nothing_literal] = ACTIONS(8467), + [sym_null_literal] = ACTIONS(8467), + [sym_empty_literal] = ACTIONS(8467), + [sym_date_literal] = ACTIONS(6089), + [anon_sym_POUND] = ACTIONS(8467), + }, + [STATE(3627)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token3] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(3628)] = { + [sym_parameter_list] = STATE(3886), + [sym_as_type_clause] = STATE(4550), + [sym_identifier] = ACTIONS(7420), + [sym_newline] = ACTIONS(7422), + [anon_sym_COLON] = ACTIONS(7422), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7420), + [aux_sym_frm_property_statement_token1] = ACTIONS(7420), + [anon_sym_DOT] = ACTIONS(7420), + [anon_sym_BANG] = ACTIONS(7422), + [aux_sym__attribute_identifier_token1] = ACTIONS(7420), + [aux_sym_option_statement_token3] = ACTIONS(7420), + [aux_sym_type_declaration_token1] = ACTIONS(7420), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7420), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7420), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7420), + [aux_sym_enum_declaration_token1] = ACTIONS(7420), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7420), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7420), + [aux_sym_declare_sub_statement_token4] = ACTIONS(8469), + [aux_sym_declare_function_statement_token1] = ACTIONS(7420), + [aux_sym_preprocessor_const_token1] = ACTIONS(7420), + [aux_sym__property_get_header_token1] = ACTIONS(7420), + [aux_sym_event_declaration_token1] = ACTIONS(7420), + [sym_static_modifier] = ACTIONS(7420), + [sym__dim_keyword] = ACTIONS(7420), + [sym__redim_keyword] = ACTIONS(7420), + [aux_sym_get_accessor_token1] = ACTIONS(7420), + [aux_sym_set_accessor_token1] = ACTIONS(7420), + [aux_sym_const_declaration_token1] = ACTIONS(7420), + [anon_sym_LPAREN] = ACTIONS(8209), + [aux_sym_as_type_clause_token1] = ACTIONS(8211), + [aux_sym_as_type_clause_token2] = ACTIONS(7420), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7420), + [aux_sym_visibility_token1] = ACTIONS(7420), + [aux_sym_visibility_token2] = ACTIONS(7420), + [aux_sym_elseif_fragment_token1] = ACTIONS(7420), + [aux_sym_else_fragment_token1] = ACTIONS(7420), + [aux_sym_select_statement_token1] = ACTIONS(7420), + [aux_sym__for_header_token1] = ACTIONS(7420), + [aux_sym_do_statement_token1] = ACTIONS(7420), + [aux_sym_do_condition_token1] = ACTIONS(7420), + [aux_sym_with_statement_token1] = ACTIONS(7420), + [aux_sym_exit_statement_token1] = ACTIONS(7420), + [sym_end_statement] = ACTIONS(7422), + [aux_sym_on_goto_statement_token1] = ACTIONS(7420), + [aux_sym_on_goto_statement_token2] = ACTIONS(7420), + [aux_sym_on_error_statement_token2] = ACTIONS(7420), + [sym__ambiguous_redim_statement] = ACTIONS(7422), + [aux_sym_erase_statement_token1] = ACTIONS(7420), + [aux_sym_open_statement_token1] = ACTIONS(7420), + [aux_sym_file_mode_token2] = ACTIONS(7420), + [aux_sym_file_access_token2] = ACTIONS(7420), + [aux_sym_file_lock_token2] = ACTIONS(7420), + [aux_sym_print_statement_token1] = ACTIONS(7420), + [anon_sym_PLUS] = ACTIONS(7422), + [anon_sym_DASH] = ACTIONS(7420), + [anon_sym_QMARK] = ACTIONS(7422), + [aux_sym_close_statement_token1] = ACTIONS(7420), + [aux_sym_put_statement_token1] = ACTIONS(7420), + [aux_sym_unlock_statement_token1] = ACTIONS(7420), + [aux_sym_seek_statement_token1] = ACTIONS(7420), + [sym_reset_statement] = ACTIONS(7420), + [aux_sym_raise_event_statement_token1] = ACTIONS(7420), + [sym_stop_statement] = ACTIONS(7420), + [sym_beep_statement] = ACTIONS(7420), + [aux_sym_unload_statement_token1] = ACTIONS(7420), + [aux_sym_def_type_statement_token1] = ACTIONS(7420), + [aux_sym_def_type_statement_token2] = ACTIONS(7420), + [aux_sym_def_type_statement_token3] = ACTIONS(7420), + [aux_sym_def_type_statement_token4] = ACTIONS(7420), + [aux_sym_def_type_statement_token5] = ACTIONS(7420), + [aux_sym_def_type_statement_token6] = ACTIONS(7420), + [aux_sym_def_type_statement_token7] = ACTIONS(7420), + [aux_sym_def_type_statement_token8] = ACTIONS(7420), + [aux_sym_def_type_statement_token9] = ACTIONS(7420), + [aux_sym_def_type_statement_token10] = ACTIONS(7420), + [aux_sym_def_type_statement_token11] = ACTIONS(7420), + [aux_sym_def_type_statement_token12] = ACTIONS(7420), + [aux_sym_def_type_statement_token13] = ACTIONS(7420), + [aux_sym_def_type_statement_token14] = ACTIONS(7420), + [aux_sym_call_statement_token1] = ACTIONS(7420), + [sym__ambiguous_call_statement] = ACTIONS(7420), + [aux_sym_addressof_expression_token1] = ACTIONS(7420), + [aux_sym_type_of_expression_token1] = ACTIONS(7420), + [aux_sym_unary_expression_token1] = ACTIONS(7420), + [sym_string_literal] = ACTIONS(7422), + [sym_number_literal] = ACTIONS(7422), + [aux_sym_boolean_literal_token1] = ACTIONS(7420), + [aux_sym_boolean_literal_token2] = ACTIONS(7420), + [sym_nothing_literal] = ACTIONS(7420), + [sym_null_literal] = ACTIONS(7420), + [sym_empty_literal] = ACTIONS(7420), + [sym_date_literal] = ACTIONS(7422), + [anon_sym_POUND] = ACTIONS(7420), + }, + [STATE(3629)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token3] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(3630)] = { + [sym_do_condition] = STATE(4160), + [sym_identifier] = ACTIONS(8471), + [sym_newline] = ACTIONS(8473), + [anon_sym_COLON] = ACTIONS(8473), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8471), + [aux_sym_frm_property_statement_token1] = ACTIONS(8471), + [anon_sym_DOT] = ACTIONS(8471), + [anon_sym_BANG] = ACTIONS(8473), + [aux_sym__attribute_identifier_token1] = ACTIONS(8471), + [aux_sym_option_statement_token3] = ACTIONS(8471), + [aux_sym_type_declaration_token1] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8471), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8471), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8471), + [aux_sym_enum_declaration_token1] = ACTIONS(8471), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8471), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8471), + [aux_sym_declare_function_statement_token1] = ACTIONS(8471), + [aux_sym_preprocessor_const_token1] = ACTIONS(8471), + [aux_sym__property_get_header_token1] = ACTIONS(8471), + [aux_sym_event_declaration_token1] = ACTIONS(8471), + [sym_static_modifier] = ACTIONS(8471), + [sym__dim_keyword] = ACTIONS(8471), + [sym__redim_keyword] = ACTIONS(8471), + [aux_sym_get_accessor_token1] = ACTIONS(8471), + [aux_sym_set_accessor_token1] = ACTIONS(8471), + [aux_sym_const_declaration_token1] = ACTIONS(8471), + [anon_sym_LPAREN] = ACTIONS(8473), + [aux_sym_as_type_clause_token2] = ACTIONS(8471), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8471), + [aux_sym_visibility_token1] = ACTIONS(8471), + [aux_sym_visibility_token2] = ACTIONS(8471), + [aux_sym_elseif_fragment_token1] = ACTIONS(8471), + [aux_sym_else_fragment_token1] = ACTIONS(8471), + [aux_sym_select_statement_token1] = ACTIONS(8471), + [aux_sym__for_header_token1] = ACTIONS(8471), + [aux_sym_do_statement_token1] = ACTIONS(8471), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8471), + [aux_sym_exit_statement_token1] = ACTIONS(8471), + [sym_end_statement] = ACTIONS(8473), + [aux_sym_on_goto_statement_token1] = ACTIONS(8471), + [aux_sym_on_goto_statement_token2] = ACTIONS(8471), + [aux_sym_on_error_statement_token2] = ACTIONS(8471), + [sym__ambiguous_redim_statement] = ACTIONS(8473), + [aux_sym_erase_statement_token1] = ACTIONS(8471), + [aux_sym_open_statement_token1] = ACTIONS(8471), + [aux_sym_file_mode_token2] = ACTIONS(8471), + [aux_sym_file_access_token2] = ACTIONS(8471), + [aux_sym_file_lock_token2] = ACTIONS(8471), + [aux_sym_print_statement_token1] = ACTIONS(8471), + [anon_sym_PLUS] = ACTIONS(8473), + [anon_sym_DASH] = ACTIONS(8471), + [anon_sym_QMARK] = ACTIONS(8473), + [aux_sym_close_statement_token1] = ACTIONS(8471), + [aux_sym_put_statement_token1] = ACTIONS(8471), + [aux_sym_unlock_statement_token1] = ACTIONS(8471), + [aux_sym_seek_statement_token1] = ACTIONS(8471), + [sym_reset_statement] = ACTIONS(8471), + [aux_sym_raise_event_statement_token1] = ACTIONS(8471), + [sym_stop_statement] = ACTIONS(8471), + [sym_beep_statement] = ACTIONS(8471), + [aux_sym_unload_statement_token1] = ACTIONS(8471), + [aux_sym_def_type_statement_token1] = ACTIONS(8471), + [aux_sym_def_type_statement_token2] = ACTIONS(8471), + [aux_sym_def_type_statement_token3] = ACTIONS(8471), + [aux_sym_def_type_statement_token4] = ACTIONS(8471), + [aux_sym_def_type_statement_token5] = ACTIONS(8471), + [aux_sym_def_type_statement_token6] = ACTIONS(8471), + [aux_sym_def_type_statement_token7] = ACTIONS(8471), + [aux_sym_def_type_statement_token8] = ACTIONS(8471), + [aux_sym_def_type_statement_token9] = ACTIONS(8471), + [aux_sym_def_type_statement_token10] = ACTIONS(8471), + [aux_sym_def_type_statement_token11] = ACTIONS(8471), + [aux_sym_def_type_statement_token12] = ACTIONS(8471), + [aux_sym_def_type_statement_token13] = ACTIONS(8471), + [aux_sym_def_type_statement_token14] = ACTIONS(8471), + [aux_sym_call_statement_token1] = ACTIONS(8471), + [sym__ambiguous_call_statement] = ACTIONS(8471), + [aux_sym_addressof_expression_token1] = ACTIONS(8471), + [aux_sym_type_of_expression_token1] = ACTIONS(8471), + [aux_sym_unary_expression_token1] = ACTIONS(8471), + [sym_string_literal] = ACTIONS(8473), + [sym_number_literal] = ACTIONS(8473), + [aux_sym_boolean_literal_token1] = ACTIONS(8471), + [aux_sym_boolean_literal_token2] = ACTIONS(8471), + [sym_nothing_literal] = ACTIONS(8471), + [sym_null_literal] = ACTIONS(8471), + [sym_empty_literal] = ACTIONS(8471), + [sym_date_literal] = ACTIONS(8473), + [anon_sym_POUND] = ACTIONS(8471), + }, + [STATE(3631)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_declaration_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_enum_declaration_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4375), + [aux_sym_declare_function_statement_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [aux_sym__property_get_header_token1] = ACTIONS(4375), + [aux_sym_event_declaration_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(3632)] = { + [sym_do_condition] = STATE(4000), + [sym_identifier] = ACTIONS(8475), + [sym_newline] = ACTIONS(8477), + [anon_sym_COLON] = ACTIONS(8477), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8475), + [aux_sym_frm_property_statement_token1] = ACTIONS(8475), + [anon_sym_DOT] = ACTIONS(8475), + [anon_sym_BANG] = ACTIONS(8477), + [aux_sym__attribute_identifier_token1] = ACTIONS(8475), + [aux_sym_option_statement_token3] = ACTIONS(8475), + [aux_sym_type_declaration_token1] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8475), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8475), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8475), + [aux_sym_enum_declaration_token1] = ACTIONS(8475), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8475), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8475), + [aux_sym_declare_function_statement_token1] = ACTIONS(8475), + [aux_sym_preprocessor_const_token1] = ACTIONS(8475), + [aux_sym__property_get_header_token1] = ACTIONS(8475), + [aux_sym_event_declaration_token1] = ACTIONS(8475), + [sym_static_modifier] = ACTIONS(8475), + [sym__dim_keyword] = ACTIONS(8475), + [sym__redim_keyword] = ACTIONS(8475), + [aux_sym_get_accessor_token1] = ACTIONS(8475), + [aux_sym_set_accessor_token1] = ACTIONS(8475), + [aux_sym_const_declaration_token1] = ACTIONS(8475), + [anon_sym_LPAREN] = ACTIONS(8477), + [aux_sym_as_type_clause_token2] = ACTIONS(8475), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8475), + [aux_sym_visibility_token1] = ACTIONS(8475), + [aux_sym_visibility_token2] = ACTIONS(8475), + [aux_sym_elseif_fragment_token1] = ACTIONS(8475), + [aux_sym_else_fragment_token1] = ACTIONS(8475), + [aux_sym_select_statement_token1] = ACTIONS(8475), + [aux_sym__for_header_token1] = ACTIONS(8475), + [aux_sym_do_statement_token1] = ACTIONS(8475), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8475), + [aux_sym_exit_statement_token1] = ACTIONS(8475), + [sym_end_statement] = ACTIONS(8477), + [aux_sym_on_goto_statement_token1] = ACTIONS(8475), + [aux_sym_on_goto_statement_token2] = ACTIONS(8475), + [aux_sym_on_error_statement_token2] = ACTIONS(8475), + [sym__ambiguous_redim_statement] = ACTIONS(8477), + [aux_sym_erase_statement_token1] = ACTIONS(8475), + [aux_sym_open_statement_token1] = ACTIONS(8475), + [aux_sym_file_mode_token2] = ACTIONS(8475), + [aux_sym_file_access_token2] = ACTIONS(8475), + [aux_sym_file_lock_token2] = ACTIONS(8475), + [aux_sym_print_statement_token1] = ACTIONS(8475), + [anon_sym_PLUS] = ACTIONS(8477), + [anon_sym_DASH] = ACTIONS(8475), + [anon_sym_QMARK] = ACTIONS(8477), + [aux_sym_close_statement_token1] = ACTIONS(8475), + [aux_sym_put_statement_token1] = ACTIONS(8475), + [aux_sym_unlock_statement_token1] = ACTIONS(8475), + [aux_sym_seek_statement_token1] = ACTIONS(8475), + [sym_reset_statement] = ACTIONS(8475), + [aux_sym_raise_event_statement_token1] = ACTIONS(8475), + [sym_stop_statement] = ACTIONS(8475), + [sym_beep_statement] = ACTIONS(8475), + [aux_sym_unload_statement_token1] = ACTIONS(8475), + [aux_sym_def_type_statement_token1] = ACTIONS(8475), + [aux_sym_def_type_statement_token2] = ACTIONS(8475), + [aux_sym_def_type_statement_token3] = ACTIONS(8475), + [aux_sym_def_type_statement_token4] = ACTIONS(8475), + [aux_sym_def_type_statement_token5] = ACTIONS(8475), + [aux_sym_def_type_statement_token6] = ACTIONS(8475), + [aux_sym_def_type_statement_token7] = ACTIONS(8475), + [aux_sym_def_type_statement_token8] = ACTIONS(8475), + [aux_sym_def_type_statement_token9] = ACTIONS(8475), + [aux_sym_def_type_statement_token10] = ACTIONS(8475), + [aux_sym_def_type_statement_token11] = ACTIONS(8475), + [aux_sym_def_type_statement_token12] = ACTIONS(8475), + [aux_sym_def_type_statement_token13] = ACTIONS(8475), + [aux_sym_def_type_statement_token14] = ACTIONS(8475), + [aux_sym_call_statement_token1] = ACTIONS(8475), + [sym__ambiguous_call_statement] = ACTIONS(8475), + [aux_sym_addressof_expression_token1] = ACTIONS(8475), + [aux_sym_type_of_expression_token1] = ACTIONS(8475), + [aux_sym_unary_expression_token1] = ACTIONS(8475), + [sym_string_literal] = ACTIONS(8477), + [sym_number_literal] = ACTIONS(8477), + [aux_sym_boolean_literal_token1] = ACTIONS(8475), + [aux_sym_boolean_literal_token2] = ACTIONS(8475), + [sym_nothing_literal] = ACTIONS(8475), + [sym_null_literal] = ACTIONS(8475), + [sym_empty_literal] = ACTIONS(8475), + [sym_date_literal] = ACTIONS(8477), + [anon_sym_POUND] = ACTIONS(8475), + }, + [STATE(3633)] = { + [sym_do_condition] = STATE(4161), + [sym_identifier] = ACTIONS(8479), + [sym_newline] = ACTIONS(8481), + [anon_sym_COLON] = ACTIONS(8481), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8479), + [aux_sym_frm_property_statement_token1] = ACTIONS(8479), + [anon_sym_DOT] = ACTIONS(8479), + [anon_sym_BANG] = ACTIONS(8481), + [aux_sym__attribute_identifier_token1] = ACTIONS(8479), + [aux_sym_option_statement_token3] = ACTIONS(8479), + [aux_sym_type_declaration_token1] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8479), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8479), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8479), + [aux_sym_enum_declaration_token1] = ACTIONS(8479), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8479), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8479), + [aux_sym_declare_function_statement_token1] = ACTIONS(8479), + [aux_sym_preprocessor_const_token1] = ACTIONS(8479), + [aux_sym__property_get_header_token1] = ACTIONS(8479), + [aux_sym_event_declaration_token1] = ACTIONS(8479), + [sym_static_modifier] = ACTIONS(8479), + [sym__dim_keyword] = ACTIONS(8479), + [sym__redim_keyword] = ACTIONS(8479), + [aux_sym_get_accessor_token1] = ACTIONS(8479), + [aux_sym_set_accessor_token1] = ACTIONS(8479), + [aux_sym_const_declaration_token1] = ACTIONS(8479), + [anon_sym_LPAREN] = ACTIONS(8481), + [aux_sym_as_type_clause_token2] = ACTIONS(8479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8479), + [aux_sym_visibility_token1] = ACTIONS(8479), + [aux_sym_visibility_token2] = ACTIONS(8479), + [aux_sym_elseif_fragment_token1] = ACTIONS(8479), + [aux_sym_else_fragment_token1] = ACTIONS(8479), + [aux_sym_select_statement_token1] = ACTIONS(8479), + [aux_sym__for_header_token1] = ACTIONS(8479), + [aux_sym_do_statement_token1] = ACTIONS(8479), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8479), + [aux_sym_exit_statement_token1] = ACTIONS(8479), + [sym_end_statement] = ACTIONS(8481), + [aux_sym_on_goto_statement_token1] = ACTIONS(8479), + [aux_sym_on_goto_statement_token2] = ACTIONS(8479), + [aux_sym_on_error_statement_token2] = ACTIONS(8479), + [sym__ambiguous_redim_statement] = ACTIONS(8481), + [aux_sym_erase_statement_token1] = ACTIONS(8479), + [aux_sym_open_statement_token1] = ACTIONS(8479), + [aux_sym_file_mode_token2] = ACTIONS(8479), + [aux_sym_file_access_token2] = ACTIONS(8479), + [aux_sym_file_lock_token2] = ACTIONS(8479), + [aux_sym_print_statement_token1] = ACTIONS(8479), + [anon_sym_PLUS] = ACTIONS(8481), + [anon_sym_DASH] = ACTIONS(8479), + [anon_sym_QMARK] = ACTIONS(8481), + [aux_sym_close_statement_token1] = ACTIONS(8479), + [aux_sym_put_statement_token1] = ACTIONS(8479), + [aux_sym_unlock_statement_token1] = ACTIONS(8479), + [aux_sym_seek_statement_token1] = ACTIONS(8479), + [sym_reset_statement] = ACTIONS(8479), + [aux_sym_raise_event_statement_token1] = ACTIONS(8479), + [sym_stop_statement] = ACTIONS(8479), + [sym_beep_statement] = ACTIONS(8479), + [aux_sym_unload_statement_token1] = ACTIONS(8479), + [aux_sym_def_type_statement_token1] = ACTIONS(8479), + [aux_sym_def_type_statement_token2] = ACTIONS(8479), + [aux_sym_def_type_statement_token3] = ACTIONS(8479), + [aux_sym_def_type_statement_token4] = ACTIONS(8479), + [aux_sym_def_type_statement_token5] = ACTIONS(8479), + [aux_sym_def_type_statement_token6] = ACTIONS(8479), + [aux_sym_def_type_statement_token7] = ACTIONS(8479), + [aux_sym_def_type_statement_token8] = ACTIONS(8479), + [aux_sym_def_type_statement_token9] = ACTIONS(8479), + [aux_sym_def_type_statement_token10] = ACTIONS(8479), + [aux_sym_def_type_statement_token11] = ACTIONS(8479), + [aux_sym_def_type_statement_token12] = ACTIONS(8479), + [aux_sym_def_type_statement_token13] = ACTIONS(8479), + [aux_sym_def_type_statement_token14] = ACTIONS(8479), + [aux_sym_call_statement_token1] = ACTIONS(8479), + [sym__ambiguous_call_statement] = ACTIONS(8479), + [aux_sym_addressof_expression_token1] = ACTIONS(8479), + [aux_sym_type_of_expression_token1] = ACTIONS(8479), + [aux_sym_unary_expression_token1] = ACTIONS(8479), + [sym_string_literal] = ACTIONS(8481), + [sym_number_literal] = ACTIONS(8481), + [aux_sym_boolean_literal_token1] = ACTIONS(8479), + [aux_sym_boolean_literal_token2] = ACTIONS(8479), + [sym_nothing_literal] = ACTIONS(8479), + [sym_null_literal] = ACTIONS(8479), + [sym_empty_literal] = ACTIONS(8479), + [sym_date_literal] = ACTIONS(8481), + [anon_sym_POUND] = ACTIONS(8479), + }, + [STATE(3634)] = { + [sym_identifier] = ACTIONS(6340), + [sym_newline] = ACTIONS(6342), + [anon_sym_COLON] = ACTIONS(6342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6340), + [aux_sym_frm_property_statement_token1] = ACTIONS(6340), + [anon_sym_DOT] = ACTIONS(6340), + [anon_sym_BANG] = ACTIONS(6342), + [aux_sym__attribute_identifier_token1] = ACTIONS(6340), + [aux_sym_option_statement_token3] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6340), + [aux_sym_preprocessor_const_token1] = ACTIONS(6340), + [sym_static_modifier] = ACTIONS(6340), + [sym__dim_keyword] = ACTIONS(6340), + [sym__redim_keyword] = ACTIONS(6340), + [aux_sym_get_accessor_token1] = ACTIONS(6340), + [aux_sym_set_accessor_token1] = ACTIONS(6340), + [aux_sym_const_declaration_token1] = ACTIONS(6340), + [anon_sym_LPAREN] = ACTIONS(6342), + [aux_sym_as_type_clause_token2] = ACTIONS(6340), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6340), + [aux_sym_visibility_token1] = ACTIONS(6340), + [aux_sym_visibility_token2] = ACTIONS(6340), + [aux_sym_elseif_fragment_token1] = ACTIONS(6340), + [aux_sym_else_fragment_token1] = ACTIONS(6340), + [aux_sym_select_statement_token1] = ACTIONS(6340), + [aux_sym__for_header_token1] = ACTIONS(6340), + [aux_sym_do_statement_token1] = ACTIONS(6340), + [aux_sym_do_statement_token2] = ACTIONS(6340), + [aux_sym_do_condition_token1] = ACTIONS(6340), + [aux_sym_with_statement_token1] = ACTIONS(6340), + [aux_sym_exit_statement_token1] = ACTIONS(6340), + [sym_end_statement] = ACTIONS(6342), + [aux_sym_on_goto_statement_token1] = ACTIONS(6340), + [aux_sym_on_goto_statement_token2] = ACTIONS(6340), + [aux_sym_on_error_statement_token2] = ACTIONS(6340), + [sym__ambiguous_redim_statement] = ACTIONS(6342), + [aux_sym_erase_statement_token1] = ACTIONS(6340), + [aux_sym_open_statement_token1] = ACTIONS(6340), + [aux_sym_file_mode_token2] = ACTIONS(6340), + [aux_sym_file_access_token2] = ACTIONS(6340), + [aux_sym_file_lock_token2] = ACTIONS(6340), + [aux_sym_print_statement_token1] = ACTIONS(6340), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_QMARK] = ACTIONS(6342), + [aux_sym_close_statement_token1] = ACTIONS(6340), + [aux_sym_put_statement_token1] = ACTIONS(6340), + [aux_sym_unlock_statement_token1] = ACTIONS(6340), + [aux_sym_seek_statement_token1] = ACTIONS(6340), + [sym_reset_statement] = ACTIONS(6340), + [aux_sym_raise_event_statement_token1] = ACTIONS(6340), + [sym_stop_statement] = ACTIONS(6340), + [sym_beep_statement] = ACTIONS(6340), + [aux_sym_unload_statement_token1] = ACTIONS(6340), + [aux_sym_def_type_statement_token1] = ACTIONS(6340), + [aux_sym_def_type_statement_token2] = ACTIONS(6340), + [aux_sym_def_type_statement_token3] = ACTIONS(6340), + [aux_sym_def_type_statement_token4] = ACTIONS(6340), + [aux_sym_def_type_statement_token5] = ACTIONS(6340), + [aux_sym_def_type_statement_token6] = ACTIONS(6340), + [aux_sym_def_type_statement_token7] = ACTIONS(6340), + [aux_sym_def_type_statement_token8] = ACTIONS(6340), + [aux_sym_def_type_statement_token9] = ACTIONS(6340), + [aux_sym_def_type_statement_token10] = ACTIONS(6340), + [aux_sym_def_type_statement_token11] = ACTIONS(6340), + [aux_sym_def_type_statement_token12] = ACTIONS(6340), + [aux_sym_def_type_statement_token13] = ACTIONS(6340), + [aux_sym_def_type_statement_token14] = ACTIONS(6340), + [aux_sym_call_statement_token1] = ACTIONS(6340), + [sym__ambiguous_call_statement] = ACTIONS(6340), + [aux_sym_addressof_expression_token1] = ACTIONS(6340), + [aux_sym_type_of_expression_token1] = ACTIONS(6340), + [aux_sym_unary_expression_token1] = ACTIONS(6340), + [sym_string_literal] = ACTIONS(6342), + [sym_number_literal] = ACTIONS(6342), + [aux_sym_boolean_literal_token1] = ACTIONS(6340), + [aux_sym_boolean_literal_token2] = ACTIONS(6340), + [sym_nothing_literal] = ACTIONS(6340), + [sym_null_literal] = ACTIONS(6340), + [sym_empty_literal] = ACTIONS(6340), + [sym_date_literal] = ACTIONS(6342), + [anon_sym_POUND] = ACTIONS(6340), + }, + [STATE(3635)] = { + [sym_identifier] = ACTIONS(6392), + [sym_newline] = ACTIONS(6394), + [anon_sym_COLON] = ACTIONS(6394), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6392), + [aux_sym_frm_property_statement_token1] = ACTIONS(6392), + [anon_sym_DOT] = ACTIONS(6392), + [anon_sym_BANG] = ACTIONS(6394), + [aux_sym__attribute_identifier_token1] = ACTIONS(6392), + [aux_sym_option_statement_token3] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6392), + [aux_sym_preprocessor_const_token1] = ACTIONS(6392), + [sym_static_modifier] = ACTIONS(6392), + [sym__dim_keyword] = ACTIONS(6392), + [sym__redim_keyword] = ACTIONS(6392), + [aux_sym_get_accessor_token1] = ACTIONS(6392), + [aux_sym_set_accessor_token1] = ACTIONS(6392), + [aux_sym_const_declaration_token1] = ACTIONS(6392), + [anon_sym_LPAREN] = ACTIONS(6394), + [aux_sym_as_type_clause_token2] = ACTIONS(6392), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6392), + [aux_sym_visibility_token1] = ACTIONS(6392), + [aux_sym_visibility_token2] = ACTIONS(6392), + [aux_sym_elseif_fragment_token1] = ACTIONS(6392), + [aux_sym_else_fragment_token1] = ACTIONS(6392), + [aux_sym_select_statement_token1] = ACTIONS(6392), + [aux_sym__for_header_token1] = ACTIONS(6392), + [aux_sym_do_statement_token1] = ACTIONS(6392), + [aux_sym_do_statement_token2] = ACTIONS(6392), + [aux_sym_do_condition_token1] = ACTIONS(6392), + [aux_sym_with_statement_token1] = ACTIONS(6392), + [aux_sym_exit_statement_token1] = ACTIONS(6392), + [sym_end_statement] = ACTIONS(6394), + [aux_sym_on_goto_statement_token1] = ACTIONS(6392), + [aux_sym_on_goto_statement_token2] = ACTIONS(6392), + [aux_sym_on_error_statement_token2] = ACTIONS(6392), + [sym__ambiguous_redim_statement] = ACTIONS(6394), + [aux_sym_erase_statement_token1] = ACTIONS(6392), + [aux_sym_open_statement_token1] = ACTIONS(6392), + [aux_sym_file_mode_token2] = ACTIONS(6392), + [aux_sym_file_access_token2] = ACTIONS(6392), + [aux_sym_file_lock_token2] = ACTIONS(6392), + [aux_sym_print_statement_token1] = ACTIONS(6392), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_QMARK] = ACTIONS(6394), + [aux_sym_close_statement_token1] = ACTIONS(6392), + [aux_sym_put_statement_token1] = ACTIONS(6392), + [aux_sym_unlock_statement_token1] = ACTIONS(6392), + [aux_sym_seek_statement_token1] = ACTIONS(6392), + [sym_reset_statement] = ACTIONS(6392), + [aux_sym_raise_event_statement_token1] = ACTIONS(6392), + [sym_stop_statement] = ACTIONS(6392), + [sym_beep_statement] = ACTIONS(6392), + [aux_sym_unload_statement_token1] = ACTIONS(6392), + [aux_sym_def_type_statement_token1] = ACTIONS(6392), + [aux_sym_def_type_statement_token2] = ACTIONS(6392), + [aux_sym_def_type_statement_token3] = ACTIONS(6392), + [aux_sym_def_type_statement_token4] = ACTIONS(6392), + [aux_sym_def_type_statement_token5] = ACTIONS(6392), + [aux_sym_def_type_statement_token6] = ACTIONS(6392), + [aux_sym_def_type_statement_token7] = ACTIONS(6392), + [aux_sym_def_type_statement_token8] = ACTIONS(6392), + [aux_sym_def_type_statement_token9] = ACTIONS(6392), + [aux_sym_def_type_statement_token10] = ACTIONS(6392), + [aux_sym_def_type_statement_token11] = ACTIONS(6392), + [aux_sym_def_type_statement_token12] = ACTIONS(6392), + [aux_sym_def_type_statement_token13] = ACTIONS(6392), + [aux_sym_def_type_statement_token14] = ACTIONS(6392), + [aux_sym_call_statement_token1] = ACTIONS(6392), + [sym__ambiguous_call_statement] = ACTIONS(6392), + [aux_sym_addressof_expression_token1] = ACTIONS(6392), + [aux_sym_type_of_expression_token1] = ACTIONS(6392), + [aux_sym_unary_expression_token1] = ACTIONS(6392), + [sym_string_literal] = ACTIONS(6394), + [sym_number_literal] = ACTIONS(6394), + [aux_sym_boolean_literal_token1] = ACTIONS(6392), + [aux_sym_boolean_literal_token2] = ACTIONS(6392), + [sym_nothing_literal] = ACTIONS(6392), + [sym_null_literal] = ACTIONS(6392), + [sym_empty_literal] = ACTIONS(6392), + [sym_date_literal] = ACTIONS(6394), + [anon_sym_POUND] = ACTIONS(6392), + }, + [STATE(3636)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_declaration_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4593), + [aux_sym_enum_declaration_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4593), + [aux_sym_declare_function_statement_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [aux_sym__property_get_header_token1] = ACTIONS(4593), + [aux_sym_event_declaration_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(3637)] = { + [aux_sym__argument_sequence_repeat2] = STATE(3477), + [sym_identifier] = ACTIONS(8483), + [sym_newline] = ACTIONS(8485), + [anon_sym_COLON] = ACTIONS(8485), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8483), + [aux_sym_frm_property_statement_token1] = ACTIONS(8483), + [anon_sym_DOT] = ACTIONS(8483), + [anon_sym_BANG] = ACTIONS(8485), + [aux_sym__attribute_identifier_token1] = ACTIONS(8483), + [aux_sym_option_statement_token3] = ACTIONS(8483), + [aux_sym_type_declaration_token1] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8483), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8483), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8483), + [aux_sym_enum_declaration_token1] = ACTIONS(8483), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8483), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8483), + [aux_sym_declare_function_statement_token1] = ACTIONS(8483), + [aux_sym_preprocessor_const_token1] = ACTIONS(8483), + [aux_sym__property_get_header_token1] = ACTIONS(8483), + [aux_sym_event_declaration_token1] = ACTIONS(8483), + [sym_static_modifier] = ACTIONS(8483), + [sym__dim_keyword] = ACTIONS(8483), + [sym__redim_keyword] = ACTIONS(8483), + [aux_sym_get_accessor_token1] = ACTIONS(8483), + [aux_sym_set_accessor_token1] = ACTIONS(8483), + [anon_sym_COMMA] = ACTIONS(4168), + [aux_sym_const_declaration_token1] = ACTIONS(8483), + [anon_sym_LPAREN] = ACTIONS(8485), + [aux_sym_as_type_clause_token2] = ACTIONS(8483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8483), + [aux_sym_visibility_token1] = ACTIONS(8483), + [aux_sym_visibility_token2] = ACTIONS(8483), + [aux_sym_elseif_fragment_token1] = ACTIONS(8483), + [aux_sym_else_fragment_token1] = ACTIONS(8483), + [aux_sym_select_statement_token1] = ACTIONS(8483), + [aux_sym__for_header_token1] = ACTIONS(8483), + [aux_sym_do_statement_token1] = ACTIONS(8483), + [aux_sym_do_condition_token1] = ACTIONS(8483), + [aux_sym_with_statement_token1] = ACTIONS(8483), + [aux_sym_exit_statement_token1] = ACTIONS(8483), + [sym_end_statement] = ACTIONS(8485), + [aux_sym_on_goto_statement_token1] = ACTIONS(8483), + [aux_sym_on_goto_statement_token2] = ACTIONS(8483), + [aux_sym_on_error_statement_token2] = ACTIONS(8483), + [sym__ambiguous_redim_statement] = ACTIONS(8485), + [aux_sym_erase_statement_token1] = ACTIONS(8483), + [aux_sym_open_statement_token1] = ACTIONS(8483), + [aux_sym_file_mode_token2] = ACTIONS(8483), + [aux_sym_file_access_token2] = ACTIONS(8483), + [aux_sym_file_lock_token2] = ACTIONS(8483), + [aux_sym_print_statement_token1] = ACTIONS(8483), + [anon_sym_PLUS] = ACTIONS(8485), + [anon_sym_DASH] = ACTIONS(8483), + [anon_sym_QMARK] = ACTIONS(8485), + [aux_sym_close_statement_token1] = ACTIONS(8483), + [aux_sym_put_statement_token1] = ACTIONS(8483), + [aux_sym_unlock_statement_token1] = ACTIONS(8483), + [aux_sym_seek_statement_token1] = ACTIONS(8483), + [sym_reset_statement] = ACTIONS(8483), + [aux_sym_raise_event_statement_token1] = ACTIONS(8483), + [sym_stop_statement] = ACTIONS(8483), + [sym_beep_statement] = ACTIONS(8483), + [aux_sym_unload_statement_token1] = ACTIONS(8483), + [aux_sym_def_type_statement_token1] = ACTIONS(8483), + [aux_sym_def_type_statement_token2] = ACTIONS(8483), + [aux_sym_def_type_statement_token3] = ACTIONS(8483), + [aux_sym_def_type_statement_token4] = ACTIONS(8483), + [aux_sym_def_type_statement_token5] = ACTIONS(8483), + [aux_sym_def_type_statement_token6] = ACTIONS(8483), + [aux_sym_def_type_statement_token7] = ACTIONS(8483), + [aux_sym_def_type_statement_token8] = ACTIONS(8483), + [aux_sym_def_type_statement_token9] = ACTIONS(8483), + [aux_sym_def_type_statement_token10] = ACTIONS(8483), + [aux_sym_def_type_statement_token11] = ACTIONS(8483), + [aux_sym_def_type_statement_token12] = ACTIONS(8483), + [aux_sym_def_type_statement_token13] = ACTIONS(8483), + [aux_sym_def_type_statement_token14] = ACTIONS(8483), + [aux_sym_call_statement_token1] = ACTIONS(8483), + [sym__ambiguous_call_statement] = ACTIONS(8483), + [aux_sym_addressof_expression_token1] = ACTIONS(8483), + [aux_sym_type_of_expression_token1] = ACTIONS(8483), + [aux_sym_unary_expression_token1] = ACTIONS(8483), + [sym_string_literal] = ACTIONS(8485), + [sym_number_literal] = ACTIONS(8485), + [aux_sym_boolean_literal_token1] = ACTIONS(8483), + [aux_sym_boolean_literal_token2] = ACTIONS(8483), + [sym_nothing_literal] = ACTIONS(8483), + [sym_null_literal] = ACTIONS(8483), + [sym_empty_literal] = ACTIONS(8483), + [sym_date_literal] = ACTIONS(8485), + [anon_sym_POUND] = ACTIONS(8483), + }, + [STATE(3638)] = { + [sym_identifier] = ACTIONS(6336), + [sym_newline] = ACTIONS(6338), + [anon_sym_COLON] = ACTIONS(6338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6336), + [aux_sym_frm_property_statement_token1] = ACTIONS(6336), + [anon_sym_DOT] = ACTIONS(6336), + [anon_sym_BANG] = ACTIONS(6338), + [aux_sym__attribute_identifier_token1] = ACTIONS(6336), + [aux_sym_option_statement_token3] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6336), + [aux_sym_preprocessor_const_token1] = ACTIONS(6336), + [sym_static_modifier] = ACTIONS(6336), + [sym__dim_keyword] = ACTIONS(6336), + [sym__redim_keyword] = ACTIONS(6336), + [aux_sym_get_accessor_token1] = ACTIONS(6336), + [aux_sym_set_accessor_token1] = ACTIONS(6336), + [aux_sym_const_declaration_token1] = ACTIONS(6336), + [anon_sym_LPAREN] = ACTIONS(6338), + [aux_sym_as_type_clause_token2] = ACTIONS(6336), + [anon_sym_STAR] = ACTIONS(6045), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6336), + [aux_sym_visibility_token1] = ACTIONS(6336), + [aux_sym_visibility_token2] = ACTIONS(6336), + [aux_sym_elseif_fragment_token1] = ACTIONS(6336), + [aux_sym_else_fragment_token1] = ACTIONS(6336), + [aux_sym_select_statement_token1] = ACTIONS(6336), + [aux_sym_select_statement_token2] = ACTIONS(6336), + [aux_sym__for_header_token1] = ACTIONS(6336), + [aux_sym_do_statement_token1] = ACTIONS(6336), + [aux_sym_do_condition_token1] = ACTIONS(6336), + [aux_sym_with_statement_token1] = ACTIONS(6336), + [aux_sym_exit_statement_token1] = ACTIONS(6336), + [sym_end_statement] = ACTIONS(6338), + [aux_sym_on_goto_statement_token1] = ACTIONS(6336), + [aux_sym_on_goto_statement_token2] = ACTIONS(6336), + [aux_sym_on_error_statement_token2] = ACTIONS(6336), + [sym__ambiguous_redim_statement] = ACTIONS(6338), + [aux_sym_erase_statement_token1] = ACTIONS(6336), + [aux_sym_open_statement_token1] = ACTIONS(6336), + [aux_sym_file_mode_token2] = ACTIONS(6336), + [aux_sym_file_access_token2] = ACTIONS(6336), + [aux_sym_file_lock_token2] = ACTIONS(6336), + [aux_sym_print_statement_token1] = ACTIONS(6336), + [anon_sym_CARET] = ACTIONS(6024), + [anon_sym_SLASH] = ACTIONS(6045), + [anon_sym_BSLASH] = ACTIONS(6047), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6049), + [anon_sym_PLUS] = ACTIONS(6051), + [anon_sym_DASH] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(6055), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6057), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6059), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6061), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6063), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6065), + [anon_sym_QMARK] = ACTIONS(6338), + [aux_sym_close_statement_token1] = ACTIONS(6336), + [aux_sym_put_statement_token1] = ACTIONS(6336), + [aux_sym_unlock_statement_token1] = ACTIONS(6336), + [aux_sym_seek_statement_token1] = ACTIONS(6336), + [sym_reset_statement] = ACTIONS(6336), + [aux_sym_raise_event_statement_token1] = ACTIONS(6336), + [sym_stop_statement] = ACTIONS(6336), + [sym_beep_statement] = ACTIONS(6336), + [aux_sym_unload_statement_token1] = ACTIONS(6336), + [aux_sym_def_type_statement_token1] = ACTIONS(6336), + [aux_sym_def_type_statement_token2] = ACTIONS(6336), + [aux_sym_def_type_statement_token3] = ACTIONS(6336), + [aux_sym_def_type_statement_token4] = ACTIONS(6336), + [aux_sym_def_type_statement_token5] = ACTIONS(6336), + [aux_sym_def_type_statement_token6] = ACTIONS(6336), + [aux_sym_def_type_statement_token7] = ACTIONS(6336), + [aux_sym_def_type_statement_token8] = ACTIONS(6336), + [aux_sym_def_type_statement_token9] = ACTIONS(6336), + [aux_sym_def_type_statement_token10] = ACTIONS(6336), + [aux_sym_def_type_statement_token11] = ACTIONS(6336), + [aux_sym_def_type_statement_token12] = ACTIONS(6336), + [aux_sym_def_type_statement_token13] = ACTIONS(6336), + [aux_sym_def_type_statement_token14] = ACTIONS(6336), + [aux_sym_call_statement_token1] = ACTIONS(6336), + [sym__ambiguous_call_statement] = ACTIONS(6336), + [aux_sym_addressof_expression_token1] = ACTIONS(6336), + [aux_sym_type_of_expression_token1] = ACTIONS(6336), + [aux_sym_unary_expression_token1] = ACTIONS(6336), + [sym_string_literal] = ACTIONS(6338), + [sym_number_literal] = ACTIONS(6338), + [aux_sym_boolean_literal_token1] = ACTIONS(6336), + [aux_sym_boolean_literal_token2] = ACTIONS(6336), + [sym_nothing_literal] = ACTIONS(6336), + [sym_null_literal] = ACTIONS(6336), + [sym_empty_literal] = ACTIONS(6336), + [sym_date_literal] = ACTIONS(6338), + [anon_sym_POUND] = ACTIONS(6336), + }, + [STATE(3639)] = { + [sym_as_type_clause] = STATE(4169), + [sym_identifier] = ACTIONS(8487), + [sym_newline] = ACTIONS(8489), + [anon_sym_COLON] = ACTIONS(8489), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8487), + [aux_sym_frm_property_statement_token1] = ACTIONS(8487), + [anon_sym_DOT] = ACTIONS(8487), + [anon_sym_BANG] = ACTIONS(8489), + [aux_sym__attribute_identifier_token1] = ACTIONS(8487), + [aux_sym_option_statement_token3] = ACTIONS(8487), + [aux_sym_type_declaration_token1] = ACTIONS(8487), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8487), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8487), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8487), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8487), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8487), + [aux_sym_enum_declaration_token1] = ACTIONS(8487), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8487), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8487), + [aux_sym_declare_function_statement_token1] = ACTIONS(8487), + [aux_sym_preprocessor_const_token1] = ACTIONS(8487), + [aux_sym__property_get_header_token1] = ACTIONS(8487), + [aux_sym_event_declaration_token1] = ACTIONS(8487), + [sym_static_modifier] = ACTIONS(8487), + [sym__dim_keyword] = ACTIONS(8487), + [sym__redim_keyword] = ACTIONS(8487), + [aux_sym_get_accessor_token1] = ACTIONS(8487), + [aux_sym_set_accessor_token1] = ACTIONS(8487), + [aux_sym_const_declaration_token1] = ACTIONS(8487), + [anon_sym_LPAREN] = ACTIONS(8489), + [aux_sym_as_type_clause_token1] = ACTIONS(7428), + [aux_sym_as_type_clause_token2] = ACTIONS(8487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8487), + [aux_sym_visibility_token1] = ACTIONS(8487), + [aux_sym_visibility_token2] = ACTIONS(8487), + [aux_sym_elseif_fragment_token1] = ACTIONS(8487), + [aux_sym_else_fragment_token1] = ACTIONS(8487), + [aux_sym_select_statement_token1] = ACTIONS(8487), + [aux_sym__for_header_token1] = ACTIONS(8487), + [aux_sym_do_statement_token1] = ACTIONS(8487), + [aux_sym_do_condition_token1] = ACTIONS(8487), + [aux_sym_with_statement_token1] = ACTIONS(8487), + [aux_sym_exit_statement_token1] = ACTIONS(8487), + [sym_end_statement] = ACTIONS(8489), + [aux_sym_on_goto_statement_token1] = ACTIONS(8487), + [aux_sym_on_goto_statement_token2] = ACTIONS(8487), + [aux_sym_on_error_statement_token2] = ACTIONS(8487), + [sym__ambiguous_redim_statement] = ACTIONS(8489), + [aux_sym_erase_statement_token1] = ACTIONS(8487), + [aux_sym_open_statement_token1] = ACTIONS(8487), + [aux_sym_file_mode_token2] = ACTIONS(8487), + [aux_sym_file_access_token2] = ACTIONS(8487), + [aux_sym_file_lock_token2] = ACTIONS(8487), + [aux_sym_print_statement_token1] = ACTIONS(8487), + [anon_sym_PLUS] = ACTIONS(8489), + [anon_sym_DASH] = ACTIONS(8487), + [anon_sym_QMARK] = ACTIONS(8489), + [aux_sym_close_statement_token1] = ACTIONS(8487), + [aux_sym_put_statement_token1] = ACTIONS(8487), + [aux_sym_unlock_statement_token1] = ACTIONS(8487), + [aux_sym_seek_statement_token1] = ACTIONS(8487), + [sym_reset_statement] = ACTIONS(8487), + [aux_sym_raise_event_statement_token1] = ACTIONS(8487), + [sym_stop_statement] = ACTIONS(8487), + [sym_beep_statement] = ACTIONS(8487), + [aux_sym_unload_statement_token1] = ACTIONS(8487), + [aux_sym_def_type_statement_token1] = ACTIONS(8487), + [aux_sym_def_type_statement_token2] = ACTIONS(8487), + [aux_sym_def_type_statement_token3] = ACTIONS(8487), + [aux_sym_def_type_statement_token4] = ACTIONS(8487), + [aux_sym_def_type_statement_token5] = ACTIONS(8487), + [aux_sym_def_type_statement_token6] = ACTIONS(8487), + [aux_sym_def_type_statement_token7] = ACTIONS(8487), + [aux_sym_def_type_statement_token8] = ACTIONS(8487), + [aux_sym_def_type_statement_token9] = ACTIONS(8487), + [aux_sym_def_type_statement_token10] = ACTIONS(8487), + [aux_sym_def_type_statement_token11] = ACTIONS(8487), + [aux_sym_def_type_statement_token12] = ACTIONS(8487), + [aux_sym_def_type_statement_token13] = ACTIONS(8487), + [aux_sym_def_type_statement_token14] = ACTIONS(8487), + [aux_sym_call_statement_token1] = ACTIONS(8487), + [sym__ambiguous_call_statement] = ACTIONS(8487), + [aux_sym_addressof_expression_token1] = ACTIONS(8487), + [aux_sym_type_of_expression_token1] = ACTIONS(8487), + [aux_sym_unary_expression_token1] = ACTIONS(8487), + [sym_string_literal] = ACTIONS(8489), + [sym_number_literal] = ACTIONS(8489), + [aux_sym_boolean_literal_token1] = ACTIONS(8487), + [aux_sym_boolean_literal_token2] = ACTIONS(8487), + [sym_nothing_literal] = ACTIONS(8487), + [sym_null_literal] = ACTIONS(8487), + [sym_empty_literal] = ACTIONS(8487), + [sym_date_literal] = ACTIONS(8489), + [anon_sym_POUND] = ACTIONS(8487), + }, + [STATE(3640)] = { + [sym_identifier] = ACTIONS(8070), + [sym_newline] = ACTIONS(8072), + [anon_sym_COLON] = ACTIONS(8072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8070), + [aux_sym_frm_property_statement_token1] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(8072), + [anon_sym_DOT] = ACTIONS(8070), + [anon_sym_BANG] = ACTIONS(8072), + [aux_sym__attribute_identifier_token1] = ACTIONS(8070), + [aux_sym_option_statement_token3] = ACTIONS(8070), + [aux_sym_type_declaration_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8070), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8070), + [aux_sym_enum_declaration_token1] = ACTIONS(8070), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8070), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8070), + [aux_sym_declare_function_statement_token1] = ACTIONS(8070), + [aux_sym_preprocessor_const_token1] = ACTIONS(8070), + [aux_sym__property_get_header_token1] = ACTIONS(8070), + [aux_sym_event_declaration_token1] = ACTIONS(8070), + [sym_static_modifier] = ACTIONS(8070), + [sym__dim_keyword] = ACTIONS(8070), + [sym__redim_keyword] = ACTIONS(8070), + [aux_sym_get_accessor_token1] = ACTIONS(8070), + [aux_sym_set_accessor_token1] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [aux_sym_const_declaration_token1] = ACTIONS(8070), + [anon_sym_LPAREN] = ACTIONS(8072), + [aux_sym_as_type_clause_token2] = ACTIONS(8070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8070), + [aux_sym_visibility_token1] = ACTIONS(8070), + [aux_sym_visibility_token2] = ACTIONS(8070), + [aux_sym_elseif_fragment_token1] = ACTIONS(8070), + [aux_sym_else_fragment_token1] = ACTIONS(8070), + [aux_sym_select_statement_token1] = ACTIONS(8070), + [aux_sym__for_header_token1] = ACTIONS(8070), + [aux_sym_do_statement_token1] = ACTIONS(8070), + [aux_sym_do_condition_token1] = ACTIONS(8070), + [aux_sym_with_statement_token1] = ACTIONS(8070), + [aux_sym_exit_statement_token1] = ACTIONS(8070), + [sym_end_statement] = ACTIONS(8072), + [aux_sym_on_goto_statement_token1] = ACTIONS(8070), + [aux_sym_on_goto_statement_token2] = ACTIONS(8070), + [aux_sym_on_error_statement_token2] = ACTIONS(8070), + [sym__ambiguous_redim_statement] = ACTIONS(8072), + [aux_sym_erase_statement_token1] = ACTIONS(8070), + [aux_sym_open_statement_token1] = ACTIONS(8070), + [aux_sym_file_mode_token2] = ACTIONS(8070), + [aux_sym_file_access_token2] = ACTIONS(8070), + [aux_sym_file_lock_token2] = ACTIONS(8070), + [aux_sym_print_statement_token1] = ACTIONS(8070), + [anon_sym_PLUS] = ACTIONS(8072), + [anon_sym_DASH] = ACTIONS(8070), + [anon_sym_QMARK] = ACTIONS(8072), + [aux_sym_close_statement_token1] = ACTIONS(8070), + [aux_sym_put_statement_token1] = ACTIONS(8070), + [aux_sym_unlock_statement_token1] = ACTIONS(8070), + [aux_sym_seek_statement_token1] = ACTIONS(8070), + [sym_reset_statement] = ACTIONS(8070), + [aux_sym_raise_event_statement_token1] = ACTIONS(8070), + [sym_stop_statement] = ACTIONS(8070), + [sym_beep_statement] = ACTIONS(8070), + [aux_sym_unload_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token2] = ACTIONS(8070), + [aux_sym_def_type_statement_token3] = ACTIONS(8070), + [aux_sym_def_type_statement_token4] = ACTIONS(8070), + [aux_sym_def_type_statement_token5] = ACTIONS(8070), + [aux_sym_def_type_statement_token6] = ACTIONS(8070), + [aux_sym_def_type_statement_token7] = ACTIONS(8070), + [aux_sym_def_type_statement_token8] = ACTIONS(8070), + [aux_sym_def_type_statement_token9] = ACTIONS(8070), + [aux_sym_def_type_statement_token10] = ACTIONS(8070), + [aux_sym_def_type_statement_token11] = ACTIONS(8070), + [aux_sym_def_type_statement_token12] = ACTIONS(8070), + [aux_sym_def_type_statement_token13] = ACTIONS(8070), + [aux_sym_def_type_statement_token14] = ACTIONS(8070), + [aux_sym_call_statement_token1] = ACTIONS(8070), + [sym__ambiguous_call_statement] = ACTIONS(8070), + [aux_sym_addressof_expression_token1] = ACTIONS(8070), + [aux_sym_type_of_expression_token1] = ACTIONS(8070), + [aux_sym_unary_expression_token1] = ACTIONS(8070), + [sym_string_literal] = ACTIONS(8072), + [sym_number_literal] = ACTIONS(8072), + [aux_sym_boolean_literal_token1] = ACTIONS(8070), + [aux_sym_boolean_literal_token2] = ACTIONS(8070), + [sym_nothing_literal] = ACTIONS(8070), + [sym_null_literal] = ACTIONS(8070), + [sym_empty_literal] = ACTIONS(8070), + [sym_date_literal] = ACTIONS(8072), + [anon_sym_POUND] = ACTIONS(8070), + }, + [STATE(3641)] = { + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [anon_sym_COLON] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym__attribute_identifier_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [sym__redim_keyword] = ACTIONS(4617), + [aux_sym_get_accessor_token1] = ACTIONS(4617), + [aux_sym_set_accessor_token1] = ACTIONS(4617), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [aux_sym_as_type_clause_token2] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(6648), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4617), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_elseif_fragment_token1] = ACTIONS(4617), + [aux_sym_else_fragment_token1] = ACTIONS(4617), + [aux_sym_select_statement_token1] = ACTIONS(4617), + [aux_sym__for_header_token1] = ACTIONS(4617), + [aux_sym_do_statement_token1] = ACTIONS(4617), + [aux_sym_do_condition_token1] = ACTIONS(4617), + [aux_sym_with_statement_token1] = ACTIONS(4617), + [aux_sym_exit_statement_token1] = ACTIONS(4617), + [sym_end_statement] = ACTIONS(4619), + [aux_sym_on_goto_statement_token1] = ACTIONS(4617), + [aux_sym_on_goto_statement_token2] = ACTIONS(4617), + [aux_sym_on_error_statement_token2] = ACTIONS(4617), + [sym__ambiguous_redim_statement] = ACTIONS(4619), + [aux_sym_erase_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token1] = ACTIONS(4617), + [aux_sym_open_statement_token3] = ACTIONS(4617), + [aux_sym_file_mode_token2] = ACTIONS(4617), + [aux_sym_file_access_token2] = ACTIONS(4617), + [aux_sym_file_lock_token2] = ACTIONS(4617), + [aux_sym_print_statement_token1] = ACTIONS(4617), + [anon_sym_CARET] = ACTIONS(6650), + [anon_sym_SLASH] = ACTIONS(6648), + [anon_sym_BSLASH] = ACTIONS(6652), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6654), + [anon_sym_PLUS] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6660), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(4619), + [aux_sym_close_statement_token1] = ACTIONS(4617), + [aux_sym_put_statement_token1] = ACTIONS(4617), + [aux_sym_unlock_statement_token1] = ACTIONS(4617), + [aux_sym_seek_statement_token1] = ACTIONS(4617), + [sym_reset_statement] = ACTIONS(4617), + [aux_sym_raise_event_statement_token1] = ACTIONS(4617), + [sym_stop_statement] = ACTIONS(4617), + [sym_beep_statement] = ACTIONS(4617), + [aux_sym_unload_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_call_statement_token1] = ACTIONS(4617), + [sym__ambiguous_call_statement] = ACTIONS(4617), + [aux_sym_addressof_expression_token1] = ACTIONS(4617), + [aux_sym_type_of_expression_token1] = ACTIONS(4617), + [aux_sym_unary_expression_token1] = ACTIONS(4617), + [sym_string_literal] = ACTIONS(4619), + [sym_number_literal] = ACTIONS(4619), + [aux_sym_boolean_literal_token1] = ACTIONS(4617), + [aux_sym_boolean_literal_token2] = ACTIONS(4617), + [sym_nothing_literal] = ACTIONS(4617), + [sym_null_literal] = ACTIONS(4617), + [sym_empty_literal] = ACTIONS(4617), + [sym_date_literal] = ACTIONS(4619), + [anon_sym_POUND] = ACTIONS(4617), + }, + [STATE(3642)] = { + [aux_sym_next_variable_list_repeat1] = STATE(3498), + [sym_identifier] = ACTIONS(7939), + [sym_newline] = ACTIONS(7941), + [anon_sym_COLON] = ACTIONS(7941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7939), + [aux_sym_frm_property_statement_token1] = ACTIONS(7939), + [anon_sym_DOT] = ACTIONS(7939), + [anon_sym_BANG] = ACTIONS(7941), + [aux_sym__attribute_identifier_token1] = ACTIONS(7939), + [aux_sym_option_statement_token3] = ACTIONS(7939), + [aux_sym_type_declaration_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7939), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7939), + [aux_sym_enum_declaration_token1] = ACTIONS(7939), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7939), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7939), + [aux_sym_declare_function_statement_token1] = ACTIONS(7939), + [aux_sym_preprocessor_const_token1] = ACTIONS(7939), + [aux_sym__property_get_header_token1] = ACTIONS(7939), + [aux_sym_event_declaration_token1] = ACTIONS(7939), + [sym_static_modifier] = ACTIONS(7939), + [sym__dim_keyword] = ACTIONS(7939), + [sym__redim_keyword] = ACTIONS(7939), + [aux_sym_get_accessor_token1] = ACTIONS(7939), + [aux_sym_set_accessor_token1] = ACTIONS(7939), + [anon_sym_COMMA] = ACTIONS(8263), + [aux_sym_const_declaration_token1] = ACTIONS(7939), + [anon_sym_LPAREN] = ACTIONS(7941), + [aux_sym_as_type_clause_token2] = ACTIONS(7939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7939), + [aux_sym_visibility_token1] = ACTIONS(7939), + [aux_sym_visibility_token2] = ACTIONS(7939), + [aux_sym_elseif_fragment_token1] = ACTIONS(7939), + [aux_sym_else_fragment_token1] = ACTIONS(7939), + [aux_sym_select_statement_token1] = ACTIONS(7939), + [aux_sym__for_header_token1] = ACTIONS(7939), + [aux_sym_do_statement_token1] = ACTIONS(7939), + [aux_sym_do_condition_token1] = ACTIONS(7939), + [aux_sym_with_statement_token1] = ACTIONS(7939), + [aux_sym_exit_statement_token1] = ACTIONS(7939), + [sym_end_statement] = ACTIONS(7941), + [aux_sym_on_goto_statement_token1] = ACTIONS(7939), + [aux_sym_on_goto_statement_token2] = ACTIONS(7939), + [aux_sym_on_error_statement_token2] = ACTIONS(7939), + [sym__ambiguous_redim_statement] = ACTIONS(7941), + [aux_sym_erase_statement_token1] = ACTIONS(7939), + [aux_sym_open_statement_token1] = ACTIONS(7939), + [aux_sym_file_mode_token2] = ACTIONS(7939), + [aux_sym_file_access_token2] = ACTIONS(7939), + [aux_sym_file_lock_token2] = ACTIONS(7939), + [aux_sym_print_statement_token1] = ACTIONS(7939), + [anon_sym_PLUS] = ACTIONS(7941), + [anon_sym_DASH] = ACTIONS(7939), + [anon_sym_QMARK] = ACTIONS(7941), + [aux_sym_close_statement_token1] = ACTIONS(7939), + [aux_sym_put_statement_token1] = ACTIONS(7939), + [aux_sym_unlock_statement_token1] = ACTIONS(7939), + [aux_sym_seek_statement_token1] = ACTIONS(7939), + [sym_reset_statement] = ACTIONS(7939), + [aux_sym_raise_event_statement_token1] = ACTIONS(7939), + [sym_stop_statement] = ACTIONS(7939), + [sym_beep_statement] = ACTIONS(7939), + [aux_sym_unload_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token2] = ACTIONS(7939), + [aux_sym_def_type_statement_token3] = ACTIONS(7939), + [aux_sym_def_type_statement_token4] = ACTIONS(7939), + [aux_sym_def_type_statement_token5] = ACTIONS(7939), + [aux_sym_def_type_statement_token6] = ACTIONS(7939), + [aux_sym_def_type_statement_token7] = ACTIONS(7939), + [aux_sym_def_type_statement_token8] = ACTIONS(7939), + [aux_sym_def_type_statement_token9] = ACTIONS(7939), + [aux_sym_def_type_statement_token10] = ACTIONS(7939), + [aux_sym_def_type_statement_token11] = ACTIONS(7939), + [aux_sym_def_type_statement_token12] = ACTIONS(7939), + [aux_sym_def_type_statement_token13] = ACTIONS(7939), + [aux_sym_def_type_statement_token14] = ACTIONS(7939), + [aux_sym_call_statement_token1] = ACTIONS(7939), + [sym__ambiguous_call_statement] = ACTIONS(7939), + [aux_sym_addressof_expression_token1] = ACTIONS(7939), + [aux_sym_type_of_expression_token1] = ACTIONS(7939), + [aux_sym_unary_expression_token1] = ACTIONS(7939), + [sym_string_literal] = ACTIONS(7941), + [sym_number_literal] = ACTIONS(7941), + [aux_sym_boolean_literal_token1] = ACTIONS(7939), + [aux_sym_boolean_literal_token2] = ACTIONS(7939), + [sym_nothing_literal] = ACTIONS(7939), + [sym_null_literal] = ACTIONS(7939), + [sym_empty_literal] = ACTIONS(7939), + [sym_date_literal] = ACTIONS(7941), + [anon_sym_POUND] = ACTIONS(7939), + }, + [STATE(3643)] = { + [sym_do_condition] = STATE(4002), + [sym_identifier] = ACTIONS(8491), + [sym_newline] = ACTIONS(8493), + [anon_sym_COLON] = ACTIONS(8493), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8491), + [aux_sym_frm_property_statement_token1] = ACTIONS(8491), + [anon_sym_DOT] = ACTIONS(8491), + [anon_sym_BANG] = ACTIONS(8493), + [aux_sym__attribute_identifier_token1] = ACTIONS(8491), + [aux_sym_option_statement_token3] = ACTIONS(8491), + [aux_sym_type_declaration_token1] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8491), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8491), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8491), + [aux_sym_enum_declaration_token1] = ACTIONS(8491), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8491), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8491), + [aux_sym_declare_function_statement_token1] = ACTIONS(8491), + [aux_sym_preprocessor_const_token1] = ACTIONS(8491), + [aux_sym__property_get_header_token1] = ACTIONS(8491), + [aux_sym_event_declaration_token1] = ACTIONS(8491), + [sym_static_modifier] = ACTIONS(8491), + [sym__dim_keyword] = ACTIONS(8491), + [sym__redim_keyword] = ACTIONS(8491), + [aux_sym_get_accessor_token1] = ACTIONS(8491), + [aux_sym_set_accessor_token1] = ACTIONS(8491), + [aux_sym_const_declaration_token1] = ACTIONS(8491), + [anon_sym_LPAREN] = ACTIONS(8493), + [aux_sym_as_type_clause_token2] = ACTIONS(8491), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8491), + [aux_sym_visibility_token1] = ACTIONS(8491), + [aux_sym_visibility_token2] = ACTIONS(8491), + [aux_sym_elseif_fragment_token1] = ACTIONS(8491), + [aux_sym_else_fragment_token1] = ACTIONS(8491), + [aux_sym_select_statement_token1] = ACTIONS(8491), + [aux_sym__for_header_token1] = ACTIONS(8491), + [aux_sym_do_statement_token1] = ACTIONS(8491), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8491), + [aux_sym_exit_statement_token1] = ACTIONS(8491), + [sym_end_statement] = ACTIONS(8493), + [aux_sym_on_goto_statement_token1] = ACTIONS(8491), + [aux_sym_on_goto_statement_token2] = ACTIONS(8491), + [aux_sym_on_error_statement_token2] = ACTIONS(8491), + [sym__ambiguous_redim_statement] = ACTIONS(8493), + [aux_sym_erase_statement_token1] = ACTIONS(8491), + [aux_sym_open_statement_token1] = ACTIONS(8491), + [aux_sym_file_mode_token2] = ACTIONS(8491), + [aux_sym_file_access_token2] = ACTIONS(8491), + [aux_sym_file_lock_token2] = ACTIONS(8491), + [aux_sym_print_statement_token1] = ACTIONS(8491), + [anon_sym_PLUS] = ACTIONS(8493), + [anon_sym_DASH] = ACTIONS(8491), + [anon_sym_QMARK] = ACTIONS(8493), + [aux_sym_close_statement_token1] = ACTIONS(8491), + [aux_sym_put_statement_token1] = ACTIONS(8491), + [aux_sym_unlock_statement_token1] = ACTIONS(8491), + [aux_sym_seek_statement_token1] = ACTIONS(8491), + [sym_reset_statement] = ACTIONS(8491), + [aux_sym_raise_event_statement_token1] = ACTIONS(8491), + [sym_stop_statement] = ACTIONS(8491), + [sym_beep_statement] = ACTIONS(8491), + [aux_sym_unload_statement_token1] = ACTIONS(8491), + [aux_sym_def_type_statement_token1] = ACTIONS(8491), + [aux_sym_def_type_statement_token2] = ACTIONS(8491), + [aux_sym_def_type_statement_token3] = ACTIONS(8491), + [aux_sym_def_type_statement_token4] = ACTIONS(8491), + [aux_sym_def_type_statement_token5] = ACTIONS(8491), + [aux_sym_def_type_statement_token6] = ACTIONS(8491), + [aux_sym_def_type_statement_token7] = ACTIONS(8491), + [aux_sym_def_type_statement_token8] = ACTIONS(8491), + [aux_sym_def_type_statement_token9] = ACTIONS(8491), + [aux_sym_def_type_statement_token10] = ACTIONS(8491), + [aux_sym_def_type_statement_token11] = ACTIONS(8491), + [aux_sym_def_type_statement_token12] = ACTIONS(8491), + [aux_sym_def_type_statement_token13] = ACTIONS(8491), + [aux_sym_def_type_statement_token14] = ACTIONS(8491), + [aux_sym_call_statement_token1] = ACTIONS(8491), + [sym__ambiguous_call_statement] = ACTIONS(8491), + [aux_sym_addressof_expression_token1] = ACTIONS(8491), + [aux_sym_type_of_expression_token1] = ACTIONS(8491), + [aux_sym_unary_expression_token1] = ACTIONS(8491), + [sym_string_literal] = ACTIONS(8493), + [sym_number_literal] = ACTIONS(8493), + [aux_sym_boolean_literal_token1] = ACTIONS(8491), + [aux_sym_boolean_literal_token2] = ACTIONS(8491), + [sym_nothing_literal] = ACTIONS(8491), + [sym_null_literal] = ACTIONS(8491), + [sym_empty_literal] = ACTIONS(8491), + [sym_date_literal] = ACTIONS(8493), + [anon_sym_POUND] = ACTIONS(8491), + }, + [STATE(3644)] = { + [aux_sym__argument_sequence_repeat2] = STATE(3417), + [sym_identifier] = ACTIONS(8495), + [sym_newline] = ACTIONS(8497), + [anon_sym_COLON] = ACTIONS(8497), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8495), + [aux_sym_frm_property_statement_token1] = ACTIONS(8495), + [anon_sym_DOT] = ACTIONS(8495), + [anon_sym_BANG] = ACTIONS(8497), + [aux_sym__attribute_identifier_token1] = ACTIONS(8495), + [aux_sym_option_statement_token3] = ACTIONS(8495), + [aux_sym_type_declaration_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8495), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8495), + [aux_sym_enum_declaration_token1] = ACTIONS(8495), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8495), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8495), + [aux_sym_declare_function_statement_token1] = ACTIONS(8495), + [aux_sym_preprocessor_const_token1] = ACTIONS(8495), + [aux_sym__property_get_header_token1] = ACTIONS(8495), + [aux_sym_event_declaration_token1] = ACTIONS(8495), + [sym_static_modifier] = ACTIONS(8495), + [sym__dim_keyword] = ACTIONS(8495), + [sym__redim_keyword] = ACTIONS(8495), + [aux_sym_get_accessor_token1] = ACTIONS(8495), + [aux_sym_set_accessor_token1] = ACTIONS(8495), + [anon_sym_COMMA] = ACTIONS(4168), + [aux_sym_const_declaration_token1] = ACTIONS(8495), + [anon_sym_LPAREN] = ACTIONS(8497), + [aux_sym_as_type_clause_token2] = ACTIONS(8495), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8495), + [aux_sym_visibility_token1] = ACTIONS(8495), + [aux_sym_visibility_token2] = ACTIONS(8495), + [aux_sym_elseif_fragment_token1] = ACTIONS(8495), + [aux_sym_else_fragment_token1] = ACTIONS(8495), + [aux_sym_select_statement_token1] = ACTIONS(8495), + [aux_sym__for_header_token1] = ACTIONS(8495), + [aux_sym_do_statement_token1] = ACTIONS(8495), + [aux_sym_do_condition_token1] = ACTIONS(8495), + [aux_sym_with_statement_token1] = ACTIONS(8495), + [aux_sym_exit_statement_token1] = ACTIONS(8495), + [sym_end_statement] = ACTIONS(8497), + [aux_sym_on_goto_statement_token1] = ACTIONS(8495), + [aux_sym_on_goto_statement_token2] = ACTIONS(8495), + [aux_sym_on_error_statement_token2] = ACTIONS(8495), + [sym__ambiguous_redim_statement] = ACTIONS(8497), + [aux_sym_erase_statement_token1] = ACTIONS(8495), + [aux_sym_open_statement_token1] = ACTIONS(8495), + [aux_sym_file_mode_token2] = ACTIONS(8495), + [aux_sym_file_access_token2] = ACTIONS(8495), + [aux_sym_file_lock_token2] = ACTIONS(8495), + [aux_sym_print_statement_token1] = ACTIONS(8495), + [anon_sym_PLUS] = ACTIONS(8497), + [anon_sym_DASH] = ACTIONS(8495), + [anon_sym_QMARK] = ACTIONS(8497), + [aux_sym_close_statement_token1] = ACTIONS(8495), + [aux_sym_put_statement_token1] = ACTIONS(8495), + [aux_sym_unlock_statement_token1] = ACTIONS(8495), + [aux_sym_seek_statement_token1] = ACTIONS(8495), + [sym_reset_statement] = ACTIONS(8495), + [aux_sym_raise_event_statement_token1] = ACTIONS(8495), + [sym_stop_statement] = ACTIONS(8495), + [sym_beep_statement] = ACTIONS(8495), + [aux_sym_unload_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token2] = ACTIONS(8495), + [aux_sym_def_type_statement_token3] = ACTIONS(8495), + [aux_sym_def_type_statement_token4] = ACTIONS(8495), + [aux_sym_def_type_statement_token5] = ACTIONS(8495), + [aux_sym_def_type_statement_token6] = ACTIONS(8495), + [aux_sym_def_type_statement_token7] = ACTIONS(8495), + [aux_sym_def_type_statement_token8] = ACTIONS(8495), + [aux_sym_def_type_statement_token9] = ACTIONS(8495), + [aux_sym_def_type_statement_token10] = ACTIONS(8495), + [aux_sym_def_type_statement_token11] = ACTIONS(8495), + [aux_sym_def_type_statement_token12] = ACTIONS(8495), + [aux_sym_def_type_statement_token13] = ACTIONS(8495), + [aux_sym_def_type_statement_token14] = ACTIONS(8495), + [aux_sym_call_statement_token1] = ACTIONS(8495), + [sym__ambiguous_call_statement] = ACTIONS(8495), + [aux_sym_addressof_expression_token1] = ACTIONS(8495), + [aux_sym_type_of_expression_token1] = ACTIONS(8495), + [aux_sym_unary_expression_token1] = ACTIONS(8495), + [sym_string_literal] = ACTIONS(8497), + [sym_number_literal] = ACTIONS(8497), + [aux_sym_boolean_literal_token1] = ACTIONS(8495), + [aux_sym_boolean_literal_token2] = ACTIONS(8495), + [sym_nothing_literal] = ACTIONS(8495), + [sym_null_literal] = ACTIONS(8495), + [sym_empty_literal] = ACTIONS(8495), + [sym_date_literal] = ACTIONS(8497), + [anon_sym_POUND] = ACTIONS(8495), + }, + [STATE(3645)] = { + [sym_identifier] = ACTIONS(3370), + [sym_newline] = ACTIONS(3364), + [anon_sym_COLON] = ACTIONS(6646), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3370), + [aux_sym_frm_property_statement_token1] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3364), + [aux_sym__attribute_identifier_token1] = ACTIONS(3370), + [aux_sym_option_statement_token3] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3370), + [aux_sym_preprocessor_const_token1] = ACTIONS(3370), + [sym_static_modifier] = ACTIONS(3370), + [sym__dim_keyword] = ACTIONS(3370), + [sym__redim_keyword] = ACTIONS(3370), + [aux_sym_get_accessor_token1] = ACTIONS(3370), + [aux_sym_set_accessor_token1] = ACTIONS(3370), + [aux_sym_const_declaration_token1] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3364), + [aux_sym_as_type_clause_token2] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3370), + [aux_sym_visibility_token1] = ACTIONS(3370), + [aux_sym_visibility_token2] = ACTIONS(3370), + [aux_sym_elseif_fragment_token1] = ACTIONS(3370), + [aux_sym_else_fragment_token1] = ACTIONS(3370), + [aux_sym_select_statement_token1] = ACTIONS(3370), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3370), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(3370), + [sym_end_statement] = ACTIONS(3364), + [aux_sym_on_goto_statement_token1] = ACTIONS(3370), + [aux_sym_on_goto_statement_token2] = ACTIONS(3370), + [aux_sym_on_error_statement_token2] = ACTIONS(3370), + [sym__ambiguous_redim_statement] = ACTIONS(3364), + [aux_sym_erase_statement_token1] = ACTIONS(3370), + [aux_sym_open_statement_token1] = ACTIONS(3370), + [aux_sym_file_mode_token2] = ACTIONS(3370), + [aux_sym_file_access_token2] = ACTIONS(3370), + [aux_sym_file_lock_token2] = ACTIONS(3370), + [aux_sym_print_statement_token1] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(3364), + [aux_sym_close_statement_token1] = ACTIONS(3370), + [aux_sym_put_statement_token1] = ACTIONS(3370), + [aux_sym_unlock_statement_token1] = ACTIONS(3370), + [aux_sym_seek_statement_token1] = ACTIONS(3370), + [sym_reset_statement] = ACTIONS(3370), + [aux_sym_raise_event_statement_token1] = ACTIONS(3370), + [sym_stop_statement] = ACTIONS(3370), + [sym_beep_statement] = ACTIONS(3370), + [aux_sym_unload_statement_token1] = ACTIONS(3370), + [aux_sym_def_type_statement_token1] = ACTIONS(3370), + [aux_sym_def_type_statement_token2] = ACTIONS(3370), + [aux_sym_def_type_statement_token3] = ACTIONS(3370), + [aux_sym_def_type_statement_token4] = ACTIONS(3370), + [aux_sym_def_type_statement_token5] = ACTIONS(3370), + [aux_sym_def_type_statement_token6] = ACTIONS(3370), + [aux_sym_def_type_statement_token7] = ACTIONS(3370), + [aux_sym_def_type_statement_token8] = ACTIONS(3370), + [aux_sym_def_type_statement_token9] = ACTIONS(3370), + [aux_sym_def_type_statement_token10] = ACTIONS(3370), + [aux_sym_def_type_statement_token11] = ACTIONS(3370), + [aux_sym_def_type_statement_token12] = ACTIONS(3370), + [aux_sym_def_type_statement_token13] = ACTIONS(3370), + [aux_sym_def_type_statement_token14] = ACTIONS(3370), + [aux_sym_call_statement_token1] = ACTIONS(3370), + [sym__ambiguous_call_statement] = ACTIONS(3370), + [aux_sym_addressof_expression_token1] = ACTIONS(3370), + [aux_sym_type_of_expression_token1] = ACTIONS(3370), + [aux_sym_unary_expression_token1] = ACTIONS(3370), + [sym_string_literal] = ACTIONS(3364), + [sym_number_literal] = ACTIONS(3364), + [aux_sym_boolean_literal_token1] = ACTIONS(3370), + [aux_sym_boolean_literal_token2] = ACTIONS(3370), + [sym_nothing_literal] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3370), + [sym_empty_literal] = ACTIONS(3370), + [sym_date_literal] = ACTIONS(3364), + [anon_sym_POUND] = ACTIONS(3370), + }, + [STATE(3646)] = { + [sym_identifier] = ACTIONS(6139), + [sym_newline] = ACTIONS(6141), + [anon_sym_COLON] = ACTIONS(6141), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6139), + [aux_sym_frm_property_statement_token1] = ACTIONS(6139), + [anon_sym_DOT] = ACTIONS(6139), + [anon_sym_BANG] = ACTIONS(6141), + [aux_sym__attribute_identifier_token1] = ACTIONS(6139), + [aux_sym_option_statement_token3] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6139), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6139), + [aux_sym_preprocessor_const_token1] = ACTIONS(6139), + [sym_static_modifier] = ACTIONS(6139), + [sym__dim_keyword] = ACTIONS(6139), + [sym__redim_keyword] = ACTIONS(6139), + [aux_sym_get_accessor_token1] = ACTIONS(6139), + [aux_sym_set_accessor_token1] = ACTIONS(6139), + [aux_sym_const_declaration_token1] = ACTIONS(6139), + [anon_sym_LPAREN] = ACTIONS(6141), + [aux_sym_as_type_clause_token2] = ACTIONS(6139), + [anon_sym_STAR] = ACTIONS(8105), + [aux_sym_array_bound_token1] = ACTIONS(8499), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6139), + [aux_sym_visibility_token1] = ACTIONS(6139), + [aux_sym_visibility_token2] = ACTIONS(6139), + [aux_sym_elseif_fragment_token1] = ACTIONS(6139), + [aux_sym_else_fragment_token1] = ACTIONS(6139), + [aux_sym_select_statement_token1] = ACTIONS(6139), + [aux_sym__for_header_token1] = ACTIONS(6139), + [aux_sym_do_statement_token1] = ACTIONS(6139), + [aux_sym_do_condition_token1] = ACTIONS(6139), + [aux_sym_with_statement_token1] = ACTIONS(6139), + [aux_sym_exit_statement_token1] = ACTIONS(6139), + [sym_end_statement] = ACTIONS(6141), + [aux_sym_on_goto_statement_token1] = ACTIONS(6139), + [aux_sym_on_goto_statement_token2] = ACTIONS(6139), + [aux_sym_on_error_statement_token2] = ACTIONS(6139), + [sym__ambiguous_redim_statement] = ACTIONS(6141), + [aux_sym_erase_statement_token1] = ACTIONS(6139), + [aux_sym_open_statement_token1] = ACTIONS(6139), + [aux_sym_file_mode_token2] = ACTIONS(6139), + [aux_sym_file_access_token2] = ACTIONS(6139), + [aux_sym_file_lock_token2] = ACTIONS(6139), + [aux_sym_print_statement_token1] = ACTIONS(6139), + [anon_sym_CARET] = ACTIONS(8107), + [anon_sym_SLASH] = ACTIONS(8105), + [anon_sym_BSLASH] = ACTIONS(8116), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8118), + [anon_sym_PLUS] = ACTIONS(8128), + [anon_sym_DASH] = ACTIONS(8130), + [anon_sym_AMP] = ACTIONS(8132), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8134), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8136), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(8138), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(8146), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(8439), + [anon_sym_QMARK] = ACTIONS(6141), + [aux_sym_close_statement_token1] = ACTIONS(6139), + [aux_sym_put_statement_token1] = ACTIONS(6139), + [aux_sym_unlock_statement_token1] = ACTIONS(6139), + [aux_sym_seek_statement_token1] = ACTIONS(6139), + [sym_reset_statement] = ACTIONS(6139), + [aux_sym_raise_event_statement_token1] = ACTIONS(6139), + [sym_stop_statement] = ACTIONS(6139), + [sym_beep_statement] = ACTIONS(6139), + [aux_sym_unload_statement_token1] = ACTIONS(6139), + [aux_sym_def_type_statement_token1] = ACTIONS(6139), + [aux_sym_def_type_statement_token2] = ACTIONS(6139), + [aux_sym_def_type_statement_token3] = ACTIONS(6139), + [aux_sym_def_type_statement_token4] = ACTIONS(6139), + [aux_sym_def_type_statement_token5] = ACTIONS(6139), + [aux_sym_def_type_statement_token6] = ACTIONS(6139), + [aux_sym_def_type_statement_token7] = ACTIONS(6139), + [aux_sym_def_type_statement_token8] = ACTIONS(6139), + [aux_sym_def_type_statement_token9] = ACTIONS(6139), + [aux_sym_def_type_statement_token10] = ACTIONS(6139), + [aux_sym_def_type_statement_token11] = ACTIONS(6139), + [aux_sym_def_type_statement_token12] = ACTIONS(6139), + [aux_sym_def_type_statement_token13] = ACTIONS(6139), + [aux_sym_def_type_statement_token14] = ACTIONS(6139), + [aux_sym_call_statement_token1] = ACTIONS(6139), + [sym__ambiguous_call_statement] = ACTIONS(6139), + [aux_sym_addressof_expression_token1] = ACTIONS(6139), + [aux_sym_type_of_expression_token1] = ACTIONS(6139), + [aux_sym_unary_expression_token1] = ACTIONS(6139), + [sym_string_literal] = ACTIONS(6141), + [sym_number_literal] = ACTIONS(6141), + [aux_sym_boolean_literal_token1] = ACTIONS(6139), + [aux_sym_boolean_literal_token2] = ACTIONS(6139), + [sym_nothing_literal] = ACTIONS(6139), + [sym_null_literal] = ACTIONS(6139), + [sym_empty_literal] = ACTIONS(6139), + [sym_date_literal] = ACTIONS(6141), + [anon_sym_POUND] = ACTIONS(6139), + }, + [STATE(3647)] = { + [sym_identifier] = ACTIONS(6617), + [sym_newline] = ACTIONS(6619), + [anon_sym_COLON] = ACTIONS(6619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6617), + [aux_sym_frm_property_statement_token1] = ACTIONS(6617), + [anon_sym_DOT] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(6619), + [aux_sym__attribute_identifier_token1] = ACTIONS(6617), + [aux_sym_option_statement_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6617), + [aux_sym_preprocessor_const_token1] = ACTIONS(6617), + [sym_static_modifier] = ACTIONS(6617), + [sym__dim_keyword] = ACTIONS(6617), + [sym__redim_keyword] = ACTIONS(6617), + [aux_sym_get_accessor_token1] = ACTIONS(6617), + [aux_sym_set_accessor_token1] = ACTIONS(6617), + [aux_sym_const_declaration_token1] = ACTIONS(6617), + [anon_sym_LPAREN] = ACTIONS(6619), + [aux_sym_as_type_clause_token2] = ACTIONS(6617), + [anon_sym_STAR] = ACTIONS(6067), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6617), + [aux_sym_visibility_token1] = ACTIONS(6617), + [aux_sym_visibility_token2] = ACTIONS(6617), + [aux_sym_elseif_fragment_token1] = ACTIONS(6617), + [aux_sym_else_fragment_token1] = ACTIONS(6617), + [aux_sym_select_statement_token1] = ACTIONS(6617), + [aux_sym__for_header_token1] = ACTIONS(6617), + [aux_sym_do_statement_token1] = ACTIONS(6617), + [aux_sym_do_statement_token2] = ACTIONS(6617), + [aux_sym_do_condition_token1] = ACTIONS(6617), + [aux_sym_with_statement_token1] = ACTIONS(6617), + [aux_sym_exit_statement_token1] = ACTIONS(6617), + [sym_end_statement] = ACTIONS(6619), + [aux_sym_on_goto_statement_token1] = ACTIONS(6617), + [aux_sym_on_goto_statement_token2] = ACTIONS(6617), + [aux_sym_on_error_statement_token2] = ACTIONS(6617), + [sym__ambiguous_redim_statement] = ACTIONS(6619), + [aux_sym_erase_statement_token1] = ACTIONS(6617), + [aux_sym_open_statement_token1] = ACTIONS(6617), + [aux_sym_file_mode_token2] = ACTIONS(6617), + [aux_sym_file_access_token2] = ACTIONS(6617), + [aux_sym_file_lock_token2] = ACTIONS(6617), + [aux_sym_print_statement_token1] = ACTIONS(6617), + [anon_sym_CARET] = ACTIONS(6043), + [anon_sym_SLASH] = ACTIONS(6067), + [anon_sym_BSLASH] = ACTIONS(6069), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6071), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6077), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7302), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7304), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6083), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6085), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6087), + [anon_sym_QMARK] = ACTIONS(6619), + [aux_sym_close_statement_token1] = ACTIONS(6617), + [aux_sym_put_statement_token1] = ACTIONS(6617), + [aux_sym_unlock_statement_token1] = ACTIONS(6617), + [aux_sym_seek_statement_token1] = ACTIONS(6617), + [sym_reset_statement] = ACTIONS(6617), + [aux_sym_raise_event_statement_token1] = ACTIONS(6617), + [sym_stop_statement] = ACTIONS(6617), + [sym_beep_statement] = ACTIONS(6617), + [aux_sym_unload_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token2] = ACTIONS(6617), + [aux_sym_def_type_statement_token3] = ACTIONS(6617), + [aux_sym_def_type_statement_token4] = ACTIONS(6617), + [aux_sym_def_type_statement_token5] = ACTIONS(6617), + [aux_sym_def_type_statement_token6] = ACTIONS(6617), + [aux_sym_def_type_statement_token7] = ACTIONS(6617), + [aux_sym_def_type_statement_token8] = ACTIONS(6617), + [aux_sym_def_type_statement_token9] = ACTIONS(6617), + [aux_sym_def_type_statement_token10] = ACTIONS(6617), + [aux_sym_def_type_statement_token11] = ACTIONS(6617), + [aux_sym_def_type_statement_token12] = ACTIONS(6617), + [aux_sym_def_type_statement_token13] = ACTIONS(6617), + [aux_sym_def_type_statement_token14] = ACTIONS(6617), + [aux_sym_call_statement_token1] = ACTIONS(6617), + [sym__ambiguous_call_statement] = ACTIONS(6617), + [aux_sym_addressof_expression_token1] = ACTIONS(6617), + [aux_sym_type_of_expression_token1] = ACTIONS(6617), + [aux_sym_unary_expression_token1] = ACTIONS(6617), + [sym_string_literal] = ACTIONS(6619), + [sym_number_literal] = ACTIONS(6619), + [aux_sym_boolean_literal_token1] = ACTIONS(6617), + [aux_sym_boolean_literal_token2] = ACTIONS(6617), + [sym_nothing_literal] = ACTIONS(6617), + [sym_null_literal] = ACTIONS(6617), + [sym_empty_literal] = ACTIONS(6617), + [sym_date_literal] = ACTIONS(6619), + [anon_sym_POUND] = ACTIONS(6617), + }, + [STATE(3648)] = { + [sym_identifier] = ACTIONS(3996), + [sym_newline] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3996), + [aux_sym_frm_property_statement_token1] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3994), + [aux_sym__attribute_identifier_token1] = ACTIONS(3996), + [aux_sym_option_statement_token3] = ACTIONS(3996), + [aux_sym_type_declaration_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3996), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(3996), + [aux_sym_enum_declaration_token1] = ACTIONS(3996), + [aux_sym_declare_sub_statement_token1] = ACTIONS(3996), + [aux_sym_declare_sub_statement_token2] = ACTIONS(3996), + [aux_sym_declare_function_statement_token1] = ACTIONS(3996), + [aux_sym_preprocessor_const_token1] = ACTIONS(3996), + [aux_sym__property_get_header_token1] = ACTIONS(3996), + [aux_sym_event_declaration_token1] = ACTIONS(3996), + [sym_static_modifier] = ACTIONS(3996), + [sym__dim_keyword] = ACTIONS(3996), + [sym__redim_keyword] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3996), + [aux_sym_set_accessor_token1] = ACTIONS(3996), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3994), + [aux_sym_as_type_clause_token2] = ACTIONS(3996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3996), + [aux_sym_visibility_token1] = ACTIONS(3996), + [aux_sym_visibility_token2] = ACTIONS(3996), + [aux_sym_elseif_fragment_token1] = ACTIONS(3996), + [aux_sym_else_fragment_token1] = ACTIONS(3996), + [aux_sym_select_statement_token1] = ACTIONS(3996), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3996), + [aux_sym__for_header_token1] = ACTIONS(3996), + [aux_sym_do_statement_token1] = ACTIONS(3996), + [aux_sym_do_condition_token1] = ACTIONS(3996), + [aux_sym_with_statement_token1] = ACTIONS(3996), + [aux_sym_exit_statement_token1] = ACTIONS(3996), + [sym_end_statement] = ACTIONS(3994), + [aux_sym_on_goto_statement_token1] = ACTIONS(3996), + [aux_sym_on_goto_statement_token2] = ACTIONS(3996), + [aux_sym_on_error_statement_token2] = ACTIONS(3996), + [sym__ambiguous_redim_statement] = ACTIONS(3994), + [aux_sym_erase_statement_token1] = ACTIONS(3996), + [aux_sym_open_statement_token1] = ACTIONS(3996), + [aux_sym_file_mode_token2] = ACTIONS(3996), + [aux_sym_file_access_token2] = ACTIONS(3996), + [aux_sym_file_lock_token2] = ACTIONS(3996), + [aux_sym_print_statement_token1] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3994), + [aux_sym_close_statement_token1] = ACTIONS(3996), + [aux_sym_put_statement_token1] = ACTIONS(3996), + [aux_sym_unlock_statement_token1] = ACTIONS(3996), + [aux_sym_seek_statement_token1] = ACTIONS(3996), + [sym_reset_statement] = ACTIONS(3996), + [aux_sym_raise_event_statement_token1] = ACTIONS(3996), + [sym_stop_statement] = ACTIONS(3996), + [sym_beep_statement] = ACTIONS(3996), + [aux_sym_unload_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token2] = ACTIONS(3996), + [aux_sym_def_type_statement_token3] = ACTIONS(3996), + [aux_sym_def_type_statement_token4] = ACTIONS(3996), + [aux_sym_def_type_statement_token5] = ACTIONS(3996), + [aux_sym_def_type_statement_token6] = ACTIONS(3996), + [aux_sym_def_type_statement_token7] = ACTIONS(3996), + [aux_sym_def_type_statement_token8] = ACTIONS(3996), + [aux_sym_def_type_statement_token9] = ACTIONS(3996), + [aux_sym_def_type_statement_token10] = ACTIONS(3996), + [aux_sym_def_type_statement_token11] = ACTIONS(3996), + [aux_sym_def_type_statement_token12] = ACTIONS(3996), + [aux_sym_def_type_statement_token13] = ACTIONS(3996), + [aux_sym_def_type_statement_token14] = ACTIONS(3996), + [aux_sym_call_statement_token1] = ACTIONS(3996), + [sym__ambiguous_call_statement] = ACTIONS(3996), + [aux_sym_addressof_expression_token1] = ACTIONS(3996), + [aux_sym_type_of_expression_token1] = ACTIONS(3996), + [aux_sym_unary_expression_token1] = ACTIONS(3996), + [sym_string_literal] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3994), + [aux_sym_boolean_literal_token1] = ACTIONS(3996), + [aux_sym_boolean_literal_token2] = ACTIONS(3996), + [sym_nothing_literal] = ACTIONS(3996), + [sym_null_literal] = ACTIONS(3996), + [sym_empty_literal] = ACTIONS(3996), + [sym_date_literal] = ACTIONS(3994), + [anon_sym_POUND] = ACTIONS(3996), + }, + [STATE(3649)] = { + [aux_sym__argument_sequence_repeat2] = STATE(3477), + [sym_identifier] = ACTIONS(8495), + [sym_newline] = ACTIONS(8497), + [anon_sym_COLON] = ACTIONS(8497), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8495), + [aux_sym_frm_property_statement_token1] = ACTIONS(8495), + [anon_sym_DOT] = ACTIONS(8495), + [anon_sym_BANG] = ACTIONS(8497), + [aux_sym__attribute_identifier_token1] = ACTIONS(8495), + [aux_sym_option_statement_token3] = ACTIONS(8495), + [aux_sym_type_declaration_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8495), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8495), + [aux_sym_enum_declaration_token1] = ACTIONS(8495), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8495), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8495), + [aux_sym_declare_function_statement_token1] = ACTIONS(8495), + [aux_sym_preprocessor_const_token1] = ACTIONS(8495), + [aux_sym__property_get_header_token1] = ACTIONS(8495), + [aux_sym_event_declaration_token1] = ACTIONS(8495), + [sym_static_modifier] = ACTIONS(8495), + [sym__dim_keyword] = ACTIONS(8495), + [sym__redim_keyword] = ACTIONS(8495), + [aux_sym_get_accessor_token1] = ACTIONS(8495), + [aux_sym_set_accessor_token1] = ACTIONS(8495), + [anon_sym_COMMA] = ACTIONS(4168), + [aux_sym_const_declaration_token1] = ACTIONS(8495), + [anon_sym_LPAREN] = ACTIONS(8497), + [aux_sym_as_type_clause_token2] = ACTIONS(8495), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8495), + [aux_sym_visibility_token1] = ACTIONS(8495), + [aux_sym_visibility_token2] = ACTIONS(8495), + [aux_sym_elseif_fragment_token1] = ACTIONS(8495), + [aux_sym_else_fragment_token1] = ACTIONS(8495), + [aux_sym_select_statement_token1] = ACTIONS(8495), + [aux_sym__for_header_token1] = ACTIONS(8495), + [aux_sym_do_statement_token1] = ACTIONS(8495), + [aux_sym_do_condition_token1] = ACTIONS(8495), + [aux_sym_with_statement_token1] = ACTIONS(8495), + [aux_sym_exit_statement_token1] = ACTIONS(8495), + [sym_end_statement] = ACTIONS(8497), + [aux_sym_on_goto_statement_token1] = ACTIONS(8495), + [aux_sym_on_goto_statement_token2] = ACTIONS(8495), + [aux_sym_on_error_statement_token2] = ACTIONS(8495), + [sym__ambiguous_redim_statement] = ACTIONS(8497), + [aux_sym_erase_statement_token1] = ACTIONS(8495), + [aux_sym_open_statement_token1] = ACTIONS(8495), + [aux_sym_file_mode_token2] = ACTIONS(8495), + [aux_sym_file_access_token2] = ACTIONS(8495), + [aux_sym_file_lock_token2] = ACTIONS(8495), + [aux_sym_print_statement_token1] = ACTIONS(8495), + [anon_sym_PLUS] = ACTIONS(8497), + [anon_sym_DASH] = ACTIONS(8495), + [anon_sym_QMARK] = ACTIONS(8497), + [aux_sym_close_statement_token1] = ACTIONS(8495), + [aux_sym_put_statement_token1] = ACTIONS(8495), + [aux_sym_unlock_statement_token1] = ACTIONS(8495), + [aux_sym_seek_statement_token1] = ACTIONS(8495), + [sym_reset_statement] = ACTIONS(8495), + [aux_sym_raise_event_statement_token1] = ACTIONS(8495), + [sym_stop_statement] = ACTIONS(8495), + [sym_beep_statement] = ACTIONS(8495), + [aux_sym_unload_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token2] = ACTIONS(8495), + [aux_sym_def_type_statement_token3] = ACTIONS(8495), + [aux_sym_def_type_statement_token4] = ACTIONS(8495), + [aux_sym_def_type_statement_token5] = ACTIONS(8495), + [aux_sym_def_type_statement_token6] = ACTIONS(8495), + [aux_sym_def_type_statement_token7] = ACTIONS(8495), + [aux_sym_def_type_statement_token8] = ACTIONS(8495), + [aux_sym_def_type_statement_token9] = ACTIONS(8495), + [aux_sym_def_type_statement_token10] = ACTIONS(8495), + [aux_sym_def_type_statement_token11] = ACTIONS(8495), + [aux_sym_def_type_statement_token12] = ACTIONS(8495), + [aux_sym_def_type_statement_token13] = ACTIONS(8495), + [aux_sym_def_type_statement_token14] = ACTIONS(8495), + [aux_sym_call_statement_token1] = ACTIONS(8495), + [sym__ambiguous_call_statement] = ACTIONS(8495), + [aux_sym_addressof_expression_token1] = ACTIONS(8495), + [aux_sym_type_of_expression_token1] = ACTIONS(8495), + [aux_sym_unary_expression_token1] = ACTIONS(8495), + [sym_string_literal] = ACTIONS(8497), + [sym_number_literal] = ACTIONS(8497), + [aux_sym_boolean_literal_token1] = ACTIONS(8495), + [aux_sym_boolean_literal_token2] = ACTIONS(8495), + [sym_nothing_literal] = ACTIONS(8495), + [sym_null_literal] = ACTIONS(8495), + [sym_empty_literal] = ACTIONS(8495), + [sym_date_literal] = ACTIONS(8497), + [anon_sym_POUND] = ACTIONS(8495), + }, + [STATE(3650)] = { + [sym_do_condition] = STATE(4003), + [sym_identifier] = ACTIONS(8501), + [sym_newline] = ACTIONS(8503), + [anon_sym_COLON] = ACTIONS(8503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8501), + [aux_sym_frm_property_statement_token1] = ACTIONS(8501), + [anon_sym_DOT] = ACTIONS(8501), + [anon_sym_BANG] = ACTIONS(8503), + [aux_sym__attribute_identifier_token1] = ACTIONS(8501), + [aux_sym_option_statement_token3] = ACTIONS(8501), + [aux_sym_type_declaration_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8501), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8501), + [aux_sym_enum_declaration_token1] = ACTIONS(8501), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8501), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8501), + [aux_sym_declare_function_statement_token1] = ACTIONS(8501), + [aux_sym_preprocessor_const_token1] = ACTIONS(8501), + [aux_sym__property_get_header_token1] = ACTIONS(8501), + [aux_sym_event_declaration_token1] = ACTIONS(8501), + [sym_static_modifier] = ACTIONS(8501), + [sym__dim_keyword] = ACTIONS(8501), + [sym__redim_keyword] = ACTIONS(8501), + [aux_sym_get_accessor_token1] = ACTIONS(8501), + [aux_sym_set_accessor_token1] = ACTIONS(8501), + [aux_sym_const_declaration_token1] = ACTIONS(8501), + [anon_sym_LPAREN] = ACTIONS(8503), + [aux_sym_as_type_clause_token2] = ACTIONS(8501), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8501), + [aux_sym_visibility_token1] = ACTIONS(8501), + [aux_sym_visibility_token2] = ACTIONS(8501), + [aux_sym_elseif_fragment_token1] = ACTIONS(8501), + [aux_sym_else_fragment_token1] = ACTIONS(8501), + [aux_sym_select_statement_token1] = ACTIONS(8501), + [aux_sym__for_header_token1] = ACTIONS(8501), + [aux_sym_do_statement_token1] = ACTIONS(8501), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8501), + [aux_sym_exit_statement_token1] = ACTIONS(8501), + [sym_end_statement] = ACTIONS(8503), + [aux_sym_on_goto_statement_token1] = ACTIONS(8501), + [aux_sym_on_goto_statement_token2] = ACTIONS(8501), + [aux_sym_on_error_statement_token2] = ACTIONS(8501), + [sym__ambiguous_redim_statement] = ACTIONS(8503), + [aux_sym_erase_statement_token1] = ACTIONS(8501), + [aux_sym_open_statement_token1] = ACTIONS(8501), + [aux_sym_file_mode_token2] = ACTIONS(8501), + [aux_sym_file_access_token2] = ACTIONS(8501), + [aux_sym_file_lock_token2] = ACTIONS(8501), + [aux_sym_print_statement_token1] = ACTIONS(8501), + [anon_sym_PLUS] = ACTIONS(8503), + [anon_sym_DASH] = ACTIONS(8501), + [anon_sym_QMARK] = ACTIONS(8503), + [aux_sym_close_statement_token1] = ACTIONS(8501), + [aux_sym_put_statement_token1] = ACTIONS(8501), + [aux_sym_unlock_statement_token1] = ACTIONS(8501), + [aux_sym_seek_statement_token1] = ACTIONS(8501), + [sym_reset_statement] = ACTIONS(8501), + [aux_sym_raise_event_statement_token1] = ACTIONS(8501), + [sym_stop_statement] = ACTIONS(8501), + [sym_beep_statement] = ACTIONS(8501), + [aux_sym_unload_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token2] = ACTIONS(8501), + [aux_sym_def_type_statement_token3] = ACTIONS(8501), + [aux_sym_def_type_statement_token4] = ACTIONS(8501), + [aux_sym_def_type_statement_token5] = ACTIONS(8501), + [aux_sym_def_type_statement_token6] = ACTIONS(8501), + [aux_sym_def_type_statement_token7] = ACTIONS(8501), + [aux_sym_def_type_statement_token8] = ACTIONS(8501), + [aux_sym_def_type_statement_token9] = ACTIONS(8501), + [aux_sym_def_type_statement_token10] = ACTIONS(8501), + [aux_sym_def_type_statement_token11] = ACTIONS(8501), + [aux_sym_def_type_statement_token12] = ACTIONS(8501), + [aux_sym_def_type_statement_token13] = ACTIONS(8501), + [aux_sym_def_type_statement_token14] = ACTIONS(8501), + [aux_sym_call_statement_token1] = ACTIONS(8501), + [sym__ambiguous_call_statement] = ACTIONS(8501), + [aux_sym_addressof_expression_token1] = ACTIONS(8501), + [aux_sym_type_of_expression_token1] = ACTIONS(8501), + [aux_sym_unary_expression_token1] = ACTIONS(8501), + [sym_string_literal] = ACTIONS(8503), + [sym_number_literal] = ACTIONS(8503), + [aux_sym_boolean_literal_token1] = ACTIONS(8501), + [aux_sym_boolean_literal_token2] = ACTIONS(8501), + [sym_nothing_literal] = ACTIONS(8501), + [sym_null_literal] = ACTIONS(8501), + [sym_empty_literal] = ACTIONS(8501), + [sym_date_literal] = ACTIONS(8503), + [anon_sym_POUND] = ACTIONS(8501), + }, + [STATE(3651)] = { + [sym_as_type_clause] = STATE(4173), + [sym_identifier] = ACTIONS(8505), + [sym_newline] = ACTIONS(8507), + [anon_sym_COLON] = ACTIONS(8507), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8505), + [aux_sym_frm_property_statement_token1] = ACTIONS(8505), + [anon_sym_DOT] = ACTIONS(8505), + [anon_sym_BANG] = ACTIONS(8507), + [aux_sym__attribute_identifier_token1] = ACTIONS(8505), + [aux_sym_option_statement_token3] = ACTIONS(8505), + [aux_sym_type_declaration_token1] = ACTIONS(8505), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8505), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8505), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8505), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8505), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8505), + [aux_sym_enum_declaration_token1] = ACTIONS(8505), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8505), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8505), + [aux_sym_declare_function_statement_token1] = ACTIONS(8505), + [aux_sym_preprocessor_const_token1] = ACTIONS(8505), + [aux_sym__property_get_header_token1] = ACTIONS(8505), + [aux_sym_event_declaration_token1] = ACTIONS(8505), + [sym_static_modifier] = ACTIONS(8505), + [sym__dim_keyword] = ACTIONS(8505), + [sym__redim_keyword] = ACTIONS(8505), + [aux_sym_get_accessor_token1] = ACTIONS(8505), + [aux_sym_set_accessor_token1] = ACTIONS(8505), + [aux_sym_const_declaration_token1] = ACTIONS(8505), + [anon_sym_LPAREN] = ACTIONS(8507), + [aux_sym_as_type_clause_token1] = ACTIONS(7428), + [aux_sym_as_type_clause_token2] = ACTIONS(8505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8505), + [aux_sym_visibility_token1] = ACTIONS(8505), + [aux_sym_visibility_token2] = ACTIONS(8505), + [aux_sym_elseif_fragment_token1] = ACTIONS(8505), + [aux_sym_else_fragment_token1] = ACTIONS(8505), + [aux_sym_select_statement_token1] = ACTIONS(8505), + [aux_sym__for_header_token1] = ACTIONS(8505), + [aux_sym_do_statement_token1] = ACTIONS(8505), + [aux_sym_do_condition_token1] = ACTIONS(8505), + [aux_sym_with_statement_token1] = ACTIONS(8505), + [aux_sym_exit_statement_token1] = ACTIONS(8505), + [sym_end_statement] = ACTIONS(8507), + [aux_sym_on_goto_statement_token1] = ACTIONS(8505), + [aux_sym_on_goto_statement_token2] = ACTIONS(8505), + [aux_sym_on_error_statement_token2] = ACTIONS(8505), + [sym__ambiguous_redim_statement] = ACTIONS(8507), + [aux_sym_erase_statement_token1] = ACTIONS(8505), + [aux_sym_open_statement_token1] = ACTIONS(8505), + [aux_sym_file_mode_token2] = ACTIONS(8505), + [aux_sym_file_access_token2] = ACTIONS(8505), + [aux_sym_file_lock_token2] = ACTIONS(8505), + [aux_sym_print_statement_token1] = ACTIONS(8505), + [anon_sym_PLUS] = ACTIONS(8507), + [anon_sym_DASH] = ACTIONS(8505), + [anon_sym_QMARK] = ACTIONS(8507), + [aux_sym_close_statement_token1] = ACTIONS(8505), + [aux_sym_put_statement_token1] = ACTIONS(8505), + [aux_sym_unlock_statement_token1] = ACTIONS(8505), + [aux_sym_seek_statement_token1] = ACTIONS(8505), + [sym_reset_statement] = ACTIONS(8505), + [aux_sym_raise_event_statement_token1] = ACTIONS(8505), + [sym_stop_statement] = ACTIONS(8505), + [sym_beep_statement] = ACTIONS(8505), + [aux_sym_unload_statement_token1] = ACTIONS(8505), + [aux_sym_def_type_statement_token1] = ACTIONS(8505), + [aux_sym_def_type_statement_token2] = ACTIONS(8505), + [aux_sym_def_type_statement_token3] = ACTIONS(8505), + [aux_sym_def_type_statement_token4] = ACTIONS(8505), + [aux_sym_def_type_statement_token5] = ACTIONS(8505), + [aux_sym_def_type_statement_token6] = ACTIONS(8505), + [aux_sym_def_type_statement_token7] = ACTIONS(8505), + [aux_sym_def_type_statement_token8] = ACTIONS(8505), + [aux_sym_def_type_statement_token9] = ACTIONS(8505), + [aux_sym_def_type_statement_token10] = ACTIONS(8505), + [aux_sym_def_type_statement_token11] = ACTIONS(8505), + [aux_sym_def_type_statement_token12] = ACTIONS(8505), + [aux_sym_def_type_statement_token13] = ACTIONS(8505), + [aux_sym_def_type_statement_token14] = ACTIONS(8505), + [aux_sym_call_statement_token1] = ACTIONS(8505), + [sym__ambiguous_call_statement] = ACTIONS(8505), + [aux_sym_addressof_expression_token1] = ACTIONS(8505), + [aux_sym_type_of_expression_token1] = ACTIONS(8505), + [aux_sym_unary_expression_token1] = ACTIONS(8505), + [sym_string_literal] = ACTIONS(8507), + [sym_number_literal] = ACTIONS(8507), + [aux_sym_boolean_literal_token1] = ACTIONS(8505), + [aux_sym_boolean_literal_token2] = ACTIONS(8505), + [sym_nothing_literal] = ACTIONS(8505), + [sym_null_literal] = ACTIONS(8505), + [sym_empty_literal] = ACTIONS(8505), + [sym_date_literal] = ACTIONS(8507), + [anon_sym_POUND] = ACTIONS(8505), + }, + [STATE(3652)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3653)] = { + [sym_identifier] = ACTIONS(6336), + [sym_newline] = ACTIONS(6338), + [anon_sym_COLON] = ACTIONS(6338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6336), + [aux_sym_frm_property_statement_token1] = ACTIONS(6336), + [anon_sym_DOT] = ACTIONS(6336), + [anon_sym_BANG] = ACTIONS(6338), + [aux_sym__attribute_identifier_token1] = ACTIONS(6336), + [aux_sym_option_statement_token3] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6336), + [aux_sym_preprocessor_const_token1] = ACTIONS(6336), + [sym_static_modifier] = ACTIONS(6336), + [sym__dim_keyword] = ACTIONS(6336), + [sym__redim_keyword] = ACTIONS(6336), + [aux_sym_get_accessor_token1] = ACTIONS(6336), + [aux_sym_set_accessor_token1] = ACTIONS(6336), + [aux_sym_const_declaration_token1] = ACTIONS(6336), + [anon_sym_LPAREN] = ACTIONS(6338), + [aux_sym_as_type_clause_token2] = ACTIONS(6336), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6336), + [aux_sym_visibility_token1] = ACTIONS(6336), + [aux_sym_visibility_token2] = ACTIONS(6336), + [aux_sym_elseif_fragment_token1] = ACTIONS(6336), + [aux_sym_else_fragment_token1] = ACTIONS(6336), + [aux_sym_select_statement_token1] = ACTIONS(6336), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6336), + [aux_sym__for_header_token1] = ACTIONS(6336), + [aux_sym_do_statement_token1] = ACTIONS(6336), + [aux_sym_do_condition_token1] = ACTIONS(6336), + [aux_sym_with_statement_token1] = ACTIONS(6336), + [aux_sym_exit_statement_token1] = ACTIONS(6336), + [sym_end_statement] = ACTIONS(6338), + [aux_sym_on_goto_statement_token1] = ACTIONS(6336), + [aux_sym_on_goto_statement_token2] = ACTIONS(6336), + [aux_sym_on_error_statement_token2] = ACTIONS(6336), + [sym__ambiguous_redim_statement] = ACTIONS(6338), + [aux_sym_erase_statement_token1] = ACTIONS(6336), + [aux_sym_open_statement_token1] = ACTIONS(6336), + [aux_sym_file_mode_token2] = ACTIONS(6336), + [aux_sym_file_access_token2] = ACTIONS(6336), + [aux_sym_file_lock_token2] = ACTIONS(6336), + [aux_sym_print_statement_token1] = ACTIONS(6336), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6162), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6164), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6166), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6168), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6170), + [anon_sym_QMARK] = ACTIONS(6338), + [aux_sym_close_statement_token1] = ACTIONS(6336), + [aux_sym_put_statement_token1] = ACTIONS(6336), + [aux_sym_unlock_statement_token1] = ACTIONS(6336), + [aux_sym_seek_statement_token1] = ACTIONS(6336), + [sym_reset_statement] = ACTIONS(6336), + [aux_sym_raise_event_statement_token1] = ACTIONS(6336), + [sym_stop_statement] = ACTIONS(6336), + [sym_beep_statement] = ACTIONS(6336), + [aux_sym_unload_statement_token1] = ACTIONS(6336), + [aux_sym_def_type_statement_token1] = ACTIONS(6336), + [aux_sym_def_type_statement_token2] = ACTIONS(6336), + [aux_sym_def_type_statement_token3] = ACTIONS(6336), + [aux_sym_def_type_statement_token4] = ACTIONS(6336), + [aux_sym_def_type_statement_token5] = ACTIONS(6336), + [aux_sym_def_type_statement_token6] = ACTIONS(6336), + [aux_sym_def_type_statement_token7] = ACTIONS(6336), + [aux_sym_def_type_statement_token8] = ACTIONS(6336), + [aux_sym_def_type_statement_token9] = ACTIONS(6336), + [aux_sym_def_type_statement_token10] = ACTIONS(6336), + [aux_sym_def_type_statement_token11] = ACTIONS(6336), + [aux_sym_def_type_statement_token12] = ACTIONS(6336), + [aux_sym_def_type_statement_token13] = ACTIONS(6336), + [aux_sym_def_type_statement_token14] = ACTIONS(6336), + [aux_sym_call_statement_token1] = ACTIONS(6336), + [sym__ambiguous_call_statement] = ACTIONS(6336), + [aux_sym_addressof_expression_token1] = ACTIONS(6336), + [aux_sym_type_of_expression_token1] = ACTIONS(6336), + [aux_sym_unary_expression_token1] = ACTIONS(6336), + [sym_string_literal] = ACTIONS(6338), + [sym_number_literal] = ACTIONS(6338), + [aux_sym_boolean_literal_token1] = ACTIONS(6336), + [aux_sym_boolean_literal_token2] = ACTIONS(6336), + [sym_nothing_literal] = ACTIONS(6336), + [sym_null_literal] = ACTIONS(6336), + [sym_empty_literal] = ACTIONS(6336), + [sym_date_literal] = ACTIONS(6338), + [anon_sym_POUND] = ACTIONS(6336), + }, + [STATE(3654)] = { + [sym_identifier] = ACTIONS(6617), + [sym_newline] = ACTIONS(6619), + [anon_sym_COLON] = ACTIONS(6619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6617), + [aux_sym_frm_property_statement_token1] = ACTIONS(6617), + [anon_sym_DOT] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(6619), + [aux_sym__attribute_identifier_token1] = ACTIONS(6617), + [aux_sym_option_statement_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6617), + [aux_sym_preprocessor_const_token1] = ACTIONS(6617), + [sym_static_modifier] = ACTIONS(6617), + [sym__dim_keyword] = ACTIONS(6617), + [sym__redim_keyword] = ACTIONS(6617), + [aux_sym_get_accessor_token1] = ACTIONS(6617), + [aux_sym_set_accessor_token1] = ACTIONS(6617), + [aux_sym_const_declaration_token1] = ACTIONS(6617), + [anon_sym_LPAREN] = ACTIONS(6619), + [aux_sym_as_type_clause_token2] = ACTIONS(6617), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6617), + [aux_sym_visibility_token1] = ACTIONS(6617), + [aux_sym_visibility_token2] = ACTIONS(6617), + [aux_sym_elseif_fragment_token1] = ACTIONS(6617), + [aux_sym_else_fragment_token1] = ACTIONS(6617), + [aux_sym_select_statement_token1] = ACTIONS(6617), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6617), + [aux_sym__for_header_token1] = ACTIONS(6617), + [aux_sym_do_statement_token1] = ACTIONS(6617), + [aux_sym_do_condition_token1] = ACTIONS(6617), + [aux_sym_with_statement_token1] = ACTIONS(6617), + [aux_sym_exit_statement_token1] = ACTIONS(6617), + [sym_end_statement] = ACTIONS(6619), + [aux_sym_on_goto_statement_token1] = ACTIONS(6617), + [aux_sym_on_goto_statement_token2] = ACTIONS(6617), + [aux_sym_on_error_statement_token2] = ACTIONS(6617), + [sym__ambiguous_redim_statement] = ACTIONS(6619), + [aux_sym_erase_statement_token1] = ACTIONS(6617), + [aux_sym_open_statement_token1] = ACTIONS(6617), + [aux_sym_file_mode_token2] = ACTIONS(6617), + [aux_sym_file_access_token2] = ACTIONS(6617), + [aux_sym_file_lock_token2] = ACTIONS(6617), + [aux_sym_print_statement_token1] = ACTIONS(6617), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7561), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7563), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6166), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6168), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6170), + [anon_sym_QMARK] = ACTIONS(6619), + [aux_sym_close_statement_token1] = ACTIONS(6617), + [aux_sym_put_statement_token1] = ACTIONS(6617), + [aux_sym_unlock_statement_token1] = ACTIONS(6617), + [aux_sym_seek_statement_token1] = ACTIONS(6617), + [sym_reset_statement] = ACTIONS(6617), + [aux_sym_raise_event_statement_token1] = ACTIONS(6617), + [sym_stop_statement] = ACTIONS(6617), + [sym_beep_statement] = ACTIONS(6617), + [aux_sym_unload_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token2] = ACTIONS(6617), + [aux_sym_def_type_statement_token3] = ACTIONS(6617), + [aux_sym_def_type_statement_token4] = ACTIONS(6617), + [aux_sym_def_type_statement_token5] = ACTIONS(6617), + [aux_sym_def_type_statement_token6] = ACTIONS(6617), + [aux_sym_def_type_statement_token7] = ACTIONS(6617), + [aux_sym_def_type_statement_token8] = ACTIONS(6617), + [aux_sym_def_type_statement_token9] = ACTIONS(6617), + [aux_sym_def_type_statement_token10] = ACTIONS(6617), + [aux_sym_def_type_statement_token11] = ACTIONS(6617), + [aux_sym_def_type_statement_token12] = ACTIONS(6617), + [aux_sym_def_type_statement_token13] = ACTIONS(6617), + [aux_sym_def_type_statement_token14] = ACTIONS(6617), + [aux_sym_call_statement_token1] = ACTIONS(6617), + [sym__ambiguous_call_statement] = ACTIONS(6617), + [aux_sym_addressof_expression_token1] = ACTIONS(6617), + [aux_sym_type_of_expression_token1] = ACTIONS(6617), + [aux_sym_unary_expression_token1] = ACTIONS(6617), + [sym_string_literal] = ACTIONS(6619), + [sym_number_literal] = ACTIONS(6619), + [aux_sym_boolean_literal_token1] = ACTIONS(6617), + [aux_sym_boolean_literal_token2] = ACTIONS(6617), + [sym_nothing_literal] = ACTIONS(6617), + [sym_null_literal] = ACTIONS(6617), + [sym_empty_literal] = ACTIONS(6617), + [sym_date_literal] = ACTIONS(6619), + [anon_sym_POUND] = ACTIONS(6617), + }, + [STATE(3655)] = { + [sym_do_condition] = STATE(4004), + [sym_identifier] = ACTIONS(8509), + [sym_newline] = ACTIONS(8511), + [anon_sym_COLON] = ACTIONS(8511), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8509), + [aux_sym_frm_property_statement_token1] = ACTIONS(8509), + [anon_sym_DOT] = ACTIONS(8509), + [anon_sym_BANG] = ACTIONS(8511), + [aux_sym__attribute_identifier_token1] = ACTIONS(8509), + [aux_sym_option_statement_token3] = ACTIONS(8509), + [aux_sym_type_declaration_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8509), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8509), + [aux_sym_enum_declaration_token1] = ACTIONS(8509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8509), + [aux_sym_declare_function_statement_token1] = ACTIONS(8509), + [aux_sym_preprocessor_const_token1] = ACTIONS(8509), + [aux_sym__property_get_header_token1] = ACTIONS(8509), + [aux_sym_event_declaration_token1] = ACTIONS(8509), + [sym_static_modifier] = ACTIONS(8509), + [sym__dim_keyword] = ACTIONS(8509), + [sym__redim_keyword] = ACTIONS(8509), + [aux_sym_get_accessor_token1] = ACTIONS(8509), + [aux_sym_set_accessor_token1] = ACTIONS(8509), + [aux_sym_const_declaration_token1] = ACTIONS(8509), + [anon_sym_LPAREN] = ACTIONS(8511), + [aux_sym_as_type_clause_token2] = ACTIONS(8509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8509), + [aux_sym_visibility_token1] = ACTIONS(8509), + [aux_sym_visibility_token2] = ACTIONS(8509), + [aux_sym_elseif_fragment_token1] = ACTIONS(8509), + [aux_sym_else_fragment_token1] = ACTIONS(8509), + [aux_sym_select_statement_token1] = ACTIONS(8509), + [aux_sym__for_header_token1] = ACTIONS(8509), + [aux_sym_do_statement_token1] = ACTIONS(8509), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8509), + [aux_sym_exit_statement_token1] = ACTIONS(8509), + [sym_end_statement] = ACTIONS(8511), + [aux_sym_on_goto_statement_token1] = ACTIONS(8509), + [aux_sym_on_goto_statement_token2] = ACTIONS(8509), + [aux_sym_on_error_statement_token2] = ACTIONS(8509), + [sym__ambiguous_redim_statement] = ACTIONS(8511), + [aux_sym_erase_statement_token1] = ACTIONS(8509), + [aux_sym_open_statement_token1] = ACTIONS(8509), + [aux_sym_file_mode_token2] = ACTIONS(8509), + [aux_sym_file_access_token2] = ACTIONS(8509), + [aux_sym_file_lock_token2] = ACTIONS(8509), + [aux_sym_print_statement_token1] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(8511), + [anon_sym_DASH] = ACTIONS(8509), + [anon_sym_QMARK] = ACTIONS(8511), + [aux_sym_close_statement_token1] = ACTIONS(8509), + [aux_sym_put_statement_token1] = ACTIONS(8509), + [aux_sym_unlock_statement_token1] = ACTIONS(8509), + [aux_sym_seek_statement_token1] = ACTIONS(8509), + [sym_reset_statement] = ACTIONS(8509), + [aux_sym_raise_event_statement_token1] = ACTIONS(8509), + [sym_stop_statement] = ACTIONS(8509), + [sym_beep_statement] = ACTIONS(8509), + [aux_sym_unload_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token2] = ACTIONS(8509), + [aux_sym_def_type_statement_token3] = ACTIONS(8509), + [aux_sym_def_type_statement_token4] = ACTIONS(8509), + [aux_sym_def_type_statement_token5] = ACTIONS(8509), + [aux_sym_def_type_statement_token6] = ACTIONS(8509), + [aux_sym_def_type_statement_token7] = ACTIONS(8509), + [aux_sym_def_type_statement_token8] = ACTIONS(8509), + [aux_sym_def_type_statement_token9] = ACTIONS(8509), + [aux_sym_def_type_statement_token10] = ACTIONS(8509), + [aux_sym_def_type_statement_token11] = ACTIONS(8509), + [aux_sym_def_type_statement_token12] = ACTIONS(8509), + [aux_sym_def_type_statement_token13] = ACTIONS(8509), + [aux_sym_def_type_statement_token14] = ACTIONS(8509), + [aux_sym_call_statement_token1] = ACTIONS(8509), + [sym__ambiguous_call_statement] = ACTIONS(8509), + [aux_sym_addressof_expression_token1] = ACTIONS(8509), + [aux_sym_type_of_expression_token1] = ACTIONS(8509), + [aux_sym_unary_expression_token1] = ACTIONS(8509), + [sym_string_literal] = ACTIONS(8511), + [sym_number_literal] = ACTIONS(8511), + [aux_sym_boolean_literal_token1] = ACTIONS(8509), + [aux_sym_boolean_literal_token2] = ACTIONS(8509), + [sym_nothing_literal] = ACTIONS(8509), + [sym_null_literal] = ACTIONS(8509), + [sym_empty_literal] = ACTIONS(8509), + [sym_date_literal] = ACTIONS(8511), + [anon_sym_POUND] = ACTIONS(8509), + }, + [STATE(3656)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token3] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(3657)] = { + [sym_do_condition] = STATE(4005), + [sym_identifier] = ACTIONS(8513), + [sym_newline] = ACTIONS(8515), + [anon_sym_COLON] = ACTIONS(8515), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8513), + [aux_sym_frm_property_statement_token1] = ACTIONS(8513), + [anon_sym_DOT] = ACTIONS(8513), + [anon_sym_BANG] = ACTIONS(8515), + [aux_sym__attribute_identifier_token1] = ACTIONS(8513), + [aux_sym_option_statement_token3] = ACTIONS(8513), + [aux_sym_type_declaration_token1] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8513), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8513), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8513), + [aux_sym_enum_declaration_token1] = ACTIONS(8513), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8513), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8513), + [aux_sym_declare_function_statement_token1] = ACTIONS(8513), + [aux_sym_preprocessor_const_token1] = ACTIONS(8513), + [aux_sym__property_get_header_token1] = ACTIONS(8513), + [aux_sym_event_declaration_token1] = ACTIONS(8513), + [sym_static_modifier] = ACTIONS(8513), + [sym__dim_keyword] = ACTIONS(8513), + [sym__redim_keyword] = ACTIONS(8513), + [aux_sym_get_accessor_token1] = ACTIONS(8513), + [aux_sym_set_accessor_token1] = ACTIONS(8513), + [aux_sym_const_declaration_token1] = ACTIONS(8513), + [anon_sym_LPAREN] = ACTIONS(8515), + [aux_sym_as_type_clause_token2] = ACTIONS(8513), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8513), + [aux_sym_visibility_token1] = ACTIONS(8513), + [aux_sym_visibility_token2] = ACTIONS(8513), + [aux_sym_elseif_fragment_token1] = ACTIONS(8513), + [aux_sym_else_fragment_token1] = ACTIONS(8513), + [aux_sym_select_statement_token1] = ACTIONS(8513), + [aux_sym__for_header_token1] = ACTIONS(8513), + [aux_sym_do_statement_token1] = ACTIONS(8513), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8513), + [aux_sym_exit_statement_token1] = ACTIONS(8513), + [sym_end_statement] = ACTIONS(8515), + [aux_sym_on_goto_statement_token1] = ACTIONS(8513), + [aux_sym_on_goto_statement_token2] = ACTIONS(8513), + [aux_sym_on_error_statement_token2] = ACTIONS(8513), + [sym__ambiguous_redim_statement] = ACTIONS(8515), + [aux_sym_erase_statement_token1] = ACTIONS(8513), + [aux_sym_open_statement_token1] = ACTIONS(8513), + [aux_sym_file_mode_token2] = ACTIONS(8513), + [aux_sym_file_access_token2] = ACTIONS(8513), + [aux_sym_file_lock_token2] = ACTIONS(8513), + [aux_sym_print_statement_token1] = ACTIONS(8513), + [anon_sym_PLUS] = ACTIONS(8515), + [anon_sym_DASH] = ACTIONS(8513), + [anon_sym_QMARK] = ACTIONS(8515), + [aux_sym_close_statement_token1] = ACTIONS(8513), + [aux_sym_put_statement_token1] = ACTIONS(8513), + [aux_sym_unlock_statement_token1] = ACTIONS(8513), + [aux_sym_seek_statement_token1] = ACTIONS(8513), + [sym_reset_statement] = ACTIONS(8513), + [aux_sym_raise_event_statement_token1] = ACTIONS(8513), + [sym_stop_statement] = ACTIONS(8513), + [sym_beep_statement] = ACTIONS(8513), + [aux_sym_unload_statement_token1] = ACTIONS(8513), + [aux_sym_def_type_statement_token1] = ACTIONS(8513), + [aux_sym_def_type_statement_token2] = ACTIONS(8513), + [aux_sym_def_type_statement_token3] = ACTIONS(8513), + [aux_sym_def_type_statement_token4] = ACTIONS(8513), + [aux_sym_def_type_statement_token5] = ACTIONS(8513), + [aux_sym_def_type_statement_token6] = ACTIONS(8513), + [aux_sym_def_type_statement_token7] = ACTIONS(8513), + [aux_sym_def_type_statement_token8] = ACTIONS(8513), + [aux_sym_def_type_statement_token9] = ACTIONS(8513), + [aux_sym_def_type_statement_token10] = ACTIONS(8513), + [aux_sym_def_type_statement_token11] = ACTIONS(8513), + [aux_sym_def_type_statement_token12] = ACTIONS(8513), + [aux_sym_def_type_statement_token13] = ACTIONS(8513), + [aux_sym_def_type_statement_token14] = ACTIONS(8513), + [aux_sym_call_statement_token1] = ACTIONS(8513), + [sym__ambiguous_call_statement] = ACTIONS(8513), + [aux_sym_addressof_expression_token1] = ACTIONS(8513), + [aux_sym_type_of_expression_token1] = ACTIONS(8513), + [aux_sym_unary_expression_token1] = ACTIONS(8513), + [sym_string_literal] = ACTIONS(8515), + [sym_number_literal] = ACTIONS(8515), + [aux_sym_boolean_literal_token1] = ACTIONS(8513), + [aux_sym_boolean_literal_token2] = ACTIONS(8513), + [sym_nothing_literal] = ACTIONS(8513), + [sym_null_literal] = ACTIONS(8513), + [sym_empty_literal] = ACTIONS(8513), + [sym_date_literal] = ACTIONS(8515), + [anon_sym_POUND] = ACTIONS(8513), + }, + [STATE(3658)] = { + [sym_do_condition] = STATE(4007), + [sym_identifier] = ACTIONS(8517), + [sym_newline] = ACTIONS(8519), + [anon_sym_COLON] = ACTIONS(8519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8517), + [aux_sym_frm_property_statement_token1] = ACTIONS(8517), + [anon_sym_DOT] = ACTIONS(8517), + [anon_sym_BANG] = ACTIONS(8519), + [aux_sym__attribute_identifier_token1] = ACTIONS(8517), + [aux_sym_option_statement_token3] = ACTIONS(8517), + [aux_sym_type_declaration_token1] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8517), + [aux_sym_enum_declaration_token1] = ACTIONS(8517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8517), + [aux_sym_declare_function_statement_token1] = ACTIONS(8517), + [aux_sym_preprocessor_const_token1] = ACTIONS(8517), + [aux_sym__property_get_header_token1] = ACTIONS(8517), + [aux_sym_event_declaration_token1] = ACTIONS(8517), + [sym_static_modifier] = ACTIONS(8517), + [sym__dim_keyword] = ACTIONS(8517), + [sym__redim_keyword] = ACTIONS(8517), + [aux_sym_get_accessor_token1] = ACTIONS(8517), + [aux_sym_set_accessor_token1] = ACTIONS(8517), + [aux_sym_const_declaration_token1] = ACTIONS(8517), + [anon_sym_LPAREN] = ACTIONS(8519), + [aux_sym_as_type_clause_token2] = ACTIONS(8517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8517), + [aux_sym_visibility_token1] = ACTIONS(8517), + [aux_sym_visibility_token2] = ACTIONS(8517), + [aux_sym_elseif_fragment_token1] = ACTIONS(8517), + [aux_sym_else_fragment_token1] = ACTIONS(8517), + [aux_sym_select_statement_token1] = ACTIONS(8517), + [aux_sym__for_header_token1] = ACTIONS(8517), + [aux_sym_do_statement_token1] = ACTIONS(8517), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8517), + [aux_sym_exit_statement_token1] = ACTIONS(8517), + [sym_end_statement] = ACTIONS(8519), + [aux_sym_on_goto_statement_token1] = ACTIONS(8517), + [aux_sym_on_goto_statement_token2] = ACTIONS(8517), + [aux_sym_on_error_statement_token2] = ACTIONS(8517), + [sym__ambiguous_redim_statement] = ACTIONS(8519), + [aux_sym_erase_statement_token1] = ACTIONS(8517), + [aux_sym_open_statement_token1] = ACTIONS(8517), + [aux_sym_file_mode_token2] = ACTIONS(8517), + [aux_sym_file_access_token2] = ACTIONS(8517), + [aux_sym_file_lock_token2] = ACTIONS(8517), + [aux_sym_print_statement_token1] = ACTIONS(8517), + [anon_sym_PLUS] = ACTIONS(8519), + [anon_sym_DASH] = ACTIONS(8517), + [anon_sym_QMARK] = ACTIONS(8519), + [aux_sym_close_statement_token1] = ACTIONS(8517), + [aux_sym_put_statement_token1] = ACTIONS(8517), + [aux_sym_unlock_statement_token1] = ACTIONS(8517), + [aux_sym_seek_statement_token1] = ACTIONS(8517), + [sym_reset_statement] = ACTIONS(8517), + [aux_sym_raise_event_statement_token1] = ACTIONS(8517), + [sym_stop_statement] = ACTIONS(8517), + [sym_beep_statement] = ACTIONS(8517), + [aux_sym_unload_statement_token1] = ACTIONS(8517), + [aux_sym_def_type_statement_token1] = ACTIONS(8517), + [aux_sym_def_type_statement_token2] = ACTIONS(8517), + [aux_sym_def_type_statement_token3] = ACTIONS(8517), + [aux_sym_def_type_statement_token4] = ACTIONS(8517), + [aux_sym_def_type_statement_token5] = ACTIONS(8517), + [aux_sym_def_type_statement_token6] = ACTIONS(8517), + [aux_sym_def_type_statement_token7] = ACTIONS(8517), + [aux_sym_def_type_statement_token8] = ACTIONS(8517), + [aux_sym_def_type_statement_token9] = ACTIONS(8517), + [aux_sym_def_type_statement_token10] = ACTIONS(8517), + [aux_sym_def_type_statement_token11] = ACTIONS(8517), + [aux_sym_def_type_statement_token12] = ACTIONS(8517), + [aux_sym_def_type_statement_token13] = ACTIONS(8517), + [aux_sym_def_type_statement_token14] = ACTIONS(8517), + [aux_sym_call_statement_token1] = ACTIONS(8517), + [sym__ambiguous_call_statement] = ACTIONS(8517), + [aux_sym_addressof_expression_token1] = ACTIONS(8517), + [aux_sym_type_of_expression_token1] = ACTIONS(8517), + [aux_sym_unary_expression_token1] = ACTIONS(8517), + [sym_string_literal] = ACTIONS(8519), + [sym_number_literal] = ACTIONS(8519), + [aux_sym_boolean_literal_token1] = ACTIONS(8517), + [aux_sym_boolean_literal_token2] = ACTIONS(8517), + [sym_nothing_literal] = ACTIONS(8517), + [sym_null_literal] = ACTIONS(8517), + [sym_empty_literal] = ACTIONS(8517), + [sym_date_literal] = ACTIONS(8519), + [anon_sym_POUND] = ACTIONS(8517), + }, + [STATE(3659)] = { + [aux_sym_close_statement_repeat1] = STATE(3612), + [sym_identifier] = ACTIONS(8521), + [sym_newline] = ACTIONS(8523), + [anon_sym_COLON] = ACTIONS(8523), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8521), + [aux_sym_frm_property_statement_token1] = ACTIONS(8521), + [anon_sym_DOT] = ACTIONS(8521), + [anon_sym_BANG] = ACTIONS(8523), + [aux_sym__attribute_identifier_token1] = ACTIONS(8521), + [aux_sym_option_statement_token3] = ACTIONS(8521), + [aux_sym_type_declaration_token1] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8521), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8521), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8521), + [aux_sym_enum_declaration_token1] = ACTIONS(8521), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8521), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8521), + [aux_sym_declare_function_statement_token1] = ACTIONS(8521), + [aux_sym_preprocessor_const_token1] = ACTIONS(8521), + [aux_sym__property_get_header_token1] = ACTIONS(8521), + [aux_sym_event_declaration_token1] = ACTIONS(8521), + [sym_static_modifier] = ACTIONS(8521), + [sym__dim_keyword] = ACTIONS(8521), + [sym__redim_keyword] = ACTIONS(8521), + [aux_sym_get_accessor_token1] = ACTIONS(8521), + [aux_sym_set_accessor_token1] = ACTIONS(8521), + [anon_sym_COMMA] = ACTIONS(8269), + [aux_sym_const_declaration_token1] = ACTIONS(8521), + [anon_sym_LPAREN] = ACTIONS(8523), + [aux_sym_as_type_clause_token2] = ACTIONS(8521), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8521), + [aux_sym_visibility_token1] = ACTIONS(8521), + [aux_sym_visibility_token2] = ACTIONS(8521), + [aux_sym_elseif_fragment_token1] = ACTIONS(8521), + [aux_sym_else_fragment_token1] = ACTIONS(8521), + [aux_sym_select_statement_token1] = ACTIONS(8521), + [aux_sym__for_header_token1] = ACTIONS(8521), + [aux_sym_do_statement_token1] = ACTIONS(8521), + [aux_sym_do_condition_token1] = ACTIONS(8521), + [aux_sym_with_statement_token1] = ACTIONS(8521), + [aux_sym_exit_statement_token1] = ACTIONS(8521), + [sym_end_statement] = ACTIONS(8523), + [aux_sym_on_goto_statement_token1] = ACTIONS(8521), + [aux_sym_on_goto_statement_token2] = ACTIONS(8521), + [aux_sym_on_error_statement_token2] = ACTIONS(8521), + [sym__ambiguous_redim_statement] = ACTIONS(8523), + [aux_sym_erase_statement_token1] = ACTIONS(8521), + [aux_sym_open_statement_token1] = ACTIONS(8521), + [aux_sym_file_mode_token2] = ACTIONS(8521), + [aux_sym_file_access_token2] = ACTIONS(8521), + [aux_sym_file_lock_token2] = ACTIONS(8521), + [aux_sym_print_statement_token1] = ACTIONS(8521), + [anon_sym_PLUS] = ACTIONS(8523), + [anon_sym_DASH] = ACTIONS(8521), + [anon_sym_QMARK] = ACTIONS(8523), + [aux_sym_close_statement_token1] = ACTIONS(8521), + [aux_sym_put_statement_token1] = ACTIONS(8521), + [aux_sym_unlock_statement_token1] = ACTIONS(8521), + [aux_sym_seek_statement_token1] = ACTIONS(8521), + [sym_reset_statement] = ACTIONS(8521), + [aux_sym_raise_event_statement_token1] = ACTIONS(8521), + [sym_stop_statement] = ACTIONS(8521), + [sym_beep_statement] = ACTIONS(8521), + [aux_sym_unload_statement_token1] = ACTIONS(8521), + [aux_sym_def_type_statement_token1] = ACTIONS(8521), + [aux_sym_def_type_statement_token2] = ACTIONS(8521), + [aux_sym_def_type_statement_token3] = ACTIONS(8521), + [aux_sym_def_type_statement_token4] = ACTIONS(8521), + [aux_sym_def_type_statement_token5] = ACTIONS(8521), + [aux_sym_def_type_statement_token6] = ACTIONS(8521), + [aux_sym_def_type_statement_token7] = ACTIONS(8521), + [aux_sym_def_type_statement_token8] = ACTIONS(8521), + [aux_sym_def_type_statement_token9] = ACTIONS(8521), + [aux_sym_def_type_statement_token10] = ACTIONS(8521), + [aux_sym_def_type_statement_token11] = ACTIONS(8521), + [aux_sym_def_type_statement_token12] = ACTIONS(8521), + [aux_sym_def_type_statement_token13] = ACTIONS(8521), + [aux_sym_def_type_statement_token14] = ACTIONS(8521), + [aux_sym_call_statement_token1] = ACTIONS(8521), + [sym__ambiguous_call_statement] = ACTIONS(8521), + [aux_sym_addressof_expression_token1] = ACTIONS(8521), + [aux_sym_type_of_expression_token1] = ACTIONS(8521), + [aux_sym_unary_expression_token1] = ACTIONS(8521), + [sym_string_literal] = ACTIONS(8523), + [sym_number_literal] = ACTIONS(8523), + [aux_sym_boolean_literal_token1] = ACTIONS(8521), + [aux_sym_boolean_literal_token2] = ACTIONS(8521), + [sym_nothing_literal] = ACTIONS(8521), + [sym_null_literal] = ACTIONS(8521), + [sym_empty_literal] = ACTIONS(8521), + [sym_date_literal] = ACTIONS(8523), + [anon_sym_POUND] = ACTIONS(8521), + }, + [STATE(3660)] = { + [sym_identifier] = ACTIONS(8081), + [sym_newline] = ACTIONS(8083), + [anon_sym_COLON] = ACTIONS(8083), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8081), + [aux_sym_frm_property_statement_token1] = ACTIONS(8081), + [anon_sym_EQ] = ACTIONS(8083), + [anon_sym_DOT] = ACTIONS(8081), + [anon_sym_BANG] = ACTIONS(8083), + [aux_sym__attribute_identifier_token1] = ACTIONS(8081), + [aux_sym_option_statement_token3] = ACTIONS(8081), + [aux_sym_type_declaration_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8081), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8081), + [aux_sym_enum_declaration_token1] = ACTIONS(8081), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8081), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8081), + [aux_sym_declare_function_statement_token1] = ACTIONS(8081), + [aux_sym_preprocessor_const_token1] = ACTIONS(8081), + [aux_sym__property_get_header_token1] = ACTIONS(8081), + [aux_sym_event_declaration_token1] = ACTIONS(8081), + [sym_static_modifier] = ACTIONS(8081), + [sym__dim_keyword] = ACTIONS(8081), + [sym__redim_keyword] = ACTIONS(8081), + [aux_sym_get_accessor_token1] = ACTIONS(8081), + [aux_sym_set_accessor_token1] = ACTIONS(8081), + [anon_sym_COMMA] = ACTIONS(8083), + [aux_sym_const_declaration_token1] = ACTIONS(8081), + [anon_sym_LPAREN] = ACTIONS(8083), + [aux_sym_as_type_clause_token2] = ACTIONS(8081), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8081), + [aux_sym_visibility_token1] = ACTIONS(8081), + [aux_sym_visibility_token2] = ACTIONS(8081), + [aux_sym_elseif_fragment_token1] = ACTIONS(8081), + [aux_sym_else_fragment_token1] = ACTIONS(8081), + [aux_sym_select_statement_token1] = ACTIONS(8081), + [aux_sym__for_header_token1] = ACTIONS(8081), + [aux_sym_do_statement_token1] = ACTIONS(8081), + [aux_sym_do_condition_token1] = ACTIONS(8081), + [aux_sym_with_statement_token1] = ACTIONS(8081), + [aux_sym_exit_statement_token1] = ACTIONS(8081), + [sym_end_statement] = ACTIONS(8083), + [aux_sym_on_goto_statement_token1] = ACTIONS(8081), + [aux_sym_on_goto_statement_token2] = ACTIONS(8081), + [aux_sym_on_error_statement_token2] = ACTIONS(8081), + [sym__ambiguous_redim_statement] = ACTIONS(8083), + [aux_sym_erase_statement_token1] = ACTIONS(8081), + [aux_sym_open_statement_token1] = ACTIONS(8081), + [aux_sym_file_mode_token2] = ACTIONS(8081), + [aux_sym_file_access_token2] = ACTIONS(8081), + [aux_sym_file_lock_token2] = ACTIONS(8081), + [aux_sym_print_statement_token1] = ACTIONS(8081), + [anon_sym_PLUS] = ACTIONS(8083), + [anon_sym_DASH] = ACTIONS(8081), + [anon_sym_QMARK] = ACTIONS(8083), + [aux_sym_close_statement_token1] = ACTIONS(8081), + [aux_sym_put_statement_token1] = ACTIONS(8081), + [aux_sym_unlock_statement_token1] = ACTIONS(8081), + [aux_sym_seek_statement_token1] = ACTIONS(8081), + [sym_reset_statement] = ACTIONS(8081), + [aux_sym_raise_event_statement_token1] = ACTIONS(8081), + [sym_stop_statement] = ACTIONS(8081), + [sym_beep_statement] = ACTIONS(8081), + [aux_sym_unload_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token2] = ACTIONS(8081), + [aux_sym_def_type_statement_token3] = ACTIONS(8081), + [aux_sym_def_type_statement_token4] = ACTIONS(8081), + [aux_sym_def_type_statement_token5] = ACTIONS(8081), + [aux_sym_def_type_statement_token6] = ACTIONS(8081), + [aux_sym_def_type_statement_token7] = ACTIONS(8081), + [aux_sym_def_type_statement_token8] = ACTIONS(8081), + [aux_sym_def_type_statement_token9] = ACTIONS(8081), + [aux_sym_def_type_statement_token10] = ACTIONS(8081), + [aux_sym_def_type_statement_token11] = ACTIONS(8081), + [aux_sym_def_type_statement_token12] = ACTIONS(8081), + [aux_sym_def_type_statement_token13] = ACTIONS(8081), + [aux_sym_def_type_statement_token14] = ACTIONS(8081), + [aux_sym_call_statement_token1] = ACTIONS(8081), + [sym__ambiguous_call_statement] = ACTIONS(8081), + [aux_sym_addressof_expression_token1] = ACTIONS(8081), + [aux_sym_type_of_expression_token1] = ACTIONS(8081), + [aux_sym_unary_expression_token1] = ACTIONS(8081), + [sym_string_literal] = ACTIONS(8083), + [sym_number_literal] = ACTIONS(8083), + [aux_sym_boolean_literal_token1] = ACTIONS(8081), + [aux_sym_boolean_literal_token2] = ACTIONS(8081), + [sym_nothing_literal] = ACTIONS(8081), + [sym_null_literal] = ACTIONS(8081), + [sym_empty_literal] = ACTIONS(8081), + [sym_date_literal] = ACTIONS(8083), + [anon_sym_POUND] = ACTIONS(8081), + }, + [STATE(3661)] = { + [sym_identifier] = ACTIONS(8525), + [sym_newline] = ACTIONS(8527), + [anon_sym_COLON] = ACTIONS(8527), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8525), + [aux_sym_frm_property_statement_token1] = ACTIONS(8525), + [anon_sym_EQ] = ACTIONS(8527), + [anon_sym_DOT] = ACTIONS(8525), + [anon_sym_BANG] = ACTIONS(8527), + [aux_sym__attribute_identifier_token1] = ACTIONS(8525), + [aux_sym_option_statement_token3] = ACTIONS(8525), + [aux_sym_type_declaration_token1] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8525), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8525), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8525), + [aux_sym_enum_declaration_token1] = ACTIONS(8525), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8525), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8525), + [aux_sym_declare_function_statement_token1] = ACTIONS(8525), + [aux_sym_preprocessor_const_token1] = ACTIONS(8525), + [aux_sym__property_get_header_token1] = ACTIONS(8525), + [aux_sym_event_declaration_token1] = ACTIONS(8525), + [sym_static_modifier] = ACTIONS(8525), + [sym__dim_keyword] = ACTIONS(8525), + [sym__redim_keyword] = ACTIONS(8525), + [aux_sym_get_accessor_token1] = ACTIONS(8525), + [aux_sym_set_accessor_token1] = ACTIONS(8525), + [anon_sym_COMMA] = ACTIONS(8527), + [aux_sym_const_declaration_token1] = ACTIONS(8525), + [anon_sym_LPAREN] = ACTIONS(8527), + [aux_sym_as_type_clause_token2] = ACTIONS(8525), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8525), + [aux_sym_visibility_token1] = ACTIONS(8525), + [aux_sym_visibility_token2] = ACTIONS(8525), + [aux_sym_elseif_fragment_token1] = ACTIONS(8525), + [aux_sym_else_fragment_token1] = ACTIONS(8525), + [aux_sym_select_statement_token1] = ACTIONS(8525), + [aux_sym__for_header_token1] = ACTIONS(8525), + [aux_sym_do_statement_token1] = ACTIONS(8525), + [aux_sym_do_condition_token1] = ACTIONS(8525), + [aux_sym_with_statement_token1] = ACTIONS(8525), + [aux_sym_exit_statement_token1] = ACTIONS(8525), + [sym_end_statement] = ACTIONS(8527), + [aux_sym_on_goto_statement_token1] = ACTIONS(8525), + [aux_sym_on_goto_statement_token2] = ACTIONS(8525), + [aux_sym_on_error_statement_token2] = ACTIONS(8525), + [sym__ambiguous_redim_statement] = ACTIONS(8527), + [aux_sym_erase_statement_token1] = ACTIONS(8525), + [aux_sym_open_statement_token1] = ACTIONS(8525), + [aux_sym_file_mode_token2] = ACTIONS(8525), + [aux_sym_file_access_token2] = ACTIONS(8525), + [aux_sym_file_lock_token2] = ACTIONS(8525), + [aux_sym_print_statement_token1] = ACTIONS(8525), + [anon_sym_PLUS] = ACTIONS(8527), + [anon_sym_DASH] = ACTIONS(8525), + [anon_sym_QMARK] = ACTIONS(8527), + [aux_sym_close_statement_token1] = ACTIONS(8525), + [aux_sym_put_statement_token1] = ACTIONS(8525), + [aux_sym_unlock_statement_token1] = ACTIONS(8525), + [aux_sym_seek_statement_token1] = ACTIONS(8525), + [sym_reset_statement] = ACTIONS(8525), + [aux_sym_raise_event_statement_token1] = ACTIONS(8525), + [sym_stop_statement] = ACTIONS(8525), + [sym_beep_statement] = ACTIONS(8525), + [aux_sym_unload_statement_token1] = ACTIONS(8525), + [aux_sym_def_type_statement_token1] = ACTIONS(8525), + [aux_sym_def_type_statement_token2] = ACTIONS(8525), + [aux_sym_def_type_statement_token3] = ACTIONS(8525), + [aux_sym_def_type_statement_token4] = ACTIONS(8525), + [aux_sym_def_type_statement_token5] = ACTIONS(8525), + [aux_sym_def_type_statement_token6] = ACTIONS(8525), + [aux_sym_def_type_statement_token7] = ACTIONS(8525), + [aux_sym_def_type_statement_token8] = ACTIONS(8525), + [aux_sym_def_type_statement_token9] = ACTIONS(8525), + [aux_sym_def_type_statement_token10] = ACTIONS(8525), + [aux_sym_def_type_statement_token11] = ACTIONS(8525), + [aux_sym_def_type_statement_token12] = ACTIONS(8525), + [aux_sym_def_type_statement_token13] = ACTIONS(8525), + [aux_sym_def_type_statement_token14] = ACTIONS(8525), + [aux_sym_call_statement_token1] = ACTIONS(8525), + [sym__ambiguous_call_statement] = ACTIONS(8525), + [aux_sym_addressof_expression_token1] = ACTIONS(8525), + [aux_sym_type_of_expression_token1] = ACTIONS(8525), + [aux_sym_unary_expression_token1] = ACTIONS(8525), + [sym_string_literal] = ACTIONS(8527), + [sym_number_literal] = ACTIONS(8527), + [aux_sym_boolean_literal_token1] = ACTIONS(8525), + [aux_sym_boolean_literal_token2] = ACTIONS(8525), + [sym_nothing_literal] = ACTIONS(8525), + [sym_null_literal] = ACTIONS(8525), + [sym_empty_literal] = ACTIONS(8525), + [sym_date_literal] = ACTIONS(8527), + [anon_sym_POUND] = ACTIONS(8525), + }, + [STATE(3662)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(3490), + [sym_identifier] = ACTIONS(8529), + [sym_newline] = ACTIONS(8531), + [anon_sym_COLON] = ACTIONS(8531), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8529), + [aux_sym_frm_property_statement_token1] = ACTIONS(8529), + [anon_sym_DOT] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(8531), + [aux_sym__attribute_identifier_token1] = ACTIONS(8529), + [aux_sym_option_statement_token3] = ACTIONS(8529), + [aux_sym_type_declaration_token1] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8529), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8529), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8529), + [aux_sym_enum_declaration_token1] = ACTIONS(8529), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8529), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8529), + [aux_sym_declare_function_statement_token1] = ACTIONS(8529), + [aux_sym_preprocessor_const_token1] = ACTIONS(8529), + [aux_sym__property_get_header_token1] = ACTIONS(8529), + [aux_sym_event_declaration_token1] = ACTIONS(8529), + [sym_static_modifier] = ACTIONS(8529), + [sym__dim_keyword] = ACTIONS(8529), + [sym__redim_keyword] = ACTIONS(8529), + [aux_sym_get_accessor_token1] = ACTIONS(8529), + [aux_sym_set_accessor_token1] = ACTIONS(8529), + [anon_sym_COMMA] = ACTIONS(8229), + [aux_sym_const_declaration_token1] = ACTIONS(8529), + [anon_sym_LPAREN] = ACTIONS(8531), + [aux_sym_as_type_clause_token2] = ACTIONS(8529), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8529), + [aux_sym_visibility_token1] = ACTIONS(8529), + [aux_sym_visibility_token2] = ACTIONS(8529), + [aux_sym_elseif_fragment_token1] = ACTIONS(8529), + [aux_sym_else_fragment_token1] = ACTIONS(8529), + [aux_sym_select_statement_token1] = ACTIONS(8529), + [aux_sym__for_header_token1] = ACTIONS(8529), + [aux_sym_do_statement_token1] = ACTIONS(8529), + [aux_sym_do_condition_token1] = ACTIONS(8529), + [aux_sym_with_statement_token1] = ACTIONS(8529), + [aux_sym_exit_statement_token1] = ACTIONS(8529), + [sym_end_statement] = ACTIONS(8531), + [aux_sym_on_goto_statement_token1] = ACTIONS(8529), + [aux_sym_on_goto_statement_token2] = ACTIONS(8529), + [aux_sym_on_error_statement_token2] = ACTIONS(8529), + [sym__ambiguous_redim_statement] = ACTIONS(8531), + [aux_sym_erase_statement_token1] = ACTIONS(8529), + [aux_sym_open_statement_token1] = ACTIONS(8529), + [aux_sym_file_mode_token2] = ACTIONS(8529), + [aux_sym_file_access_token2] = ACTIONS(8529), + [aux_sym_file_lock_token2] = ACTIONS(8529), + [aux_sym_print_statement_token1] = ACTIONS(8529), + [anon_sym_PLUS] = ACTIONS(8531), + [anon_sym_DASH] = ACTIONS(8529), + [anon_sym_QMARK] = ACTIONS(8531), + [aux_sym_close_statement_token1] = ACTIONS(8529), + [aux_sym_put_statement_token1] = ACTIONS(8529), + [aux_sym_unlock_statement_token1] = ACTIONS(8529), + [aux_sym_seek_statement_token1] = ACTIONS(8529), + [sym_reset_statement] = ACTIONS(8529), + [aux_sym_raise_event_statement_token1] = ACTIONS(8529), + [sym_stop_statement] = ACTIONS(8529), + [sym_beep_statement] = ACTIONS(8529), + [aux_sym_unload_statement_token1] = ACTIONS(8529), + [aux_sym_def_type_statement_token1] = ACTIONS(8529), + [aux_sym_def_type_statement_token2] = ACTIONS(8529), + [aux_sym_def_type_statement_token3] = ACTIONS(8529), + [aux_sym_def_type_statement_token4] = ACTIONS(8529), + [aux_sym_def_type_statement_token5] = ACTIONS(8529), + [aux_sym_def_type_statement_token6] = ACTIONS(8529), + [aux_sym_def_type_statement_token7] = ACTIONS(8529), + [aux_sym_def_type_statement_token8] = ACTIONS(8529), + [aux_sym_def_type_statement_token9] = ACTIONS(8529), + [aux_sym_def_type_statement_token10] = ACTIONS(8529), + [aux_sym_def_type_statement_token11] = ACTIONS(8529), + [aux_sym_def_type_statement_token12] = ACTIONS(8529), + [aux_sym_def_type_statement_token13] = ACTIONS(8529), + [aux_sym_def_type_statement_token14] = ACTIONS(8529), + [aux_sym_call_statement_token1] = ACTIONS(8529), + [sym__ambiguous_call_statement] = ACTIONS(8529), + [aux_sym_addressof_expression_token1] = ACTIONS(8529), + [aux_sym_type_of_expression_token1] = ACTIONS(8529), + [aux_sym_unary_expression_token1] = ACTIONS(8529), + [sym_string_literal] = ACTIONS(8531), + [sym_number_literal] = ACTIONS(8531), + [aux_sym_boolean_literal_token1] = ACTIONS(8529), + [aux_sym_boolean_literal_token2] = ACTIONS(8529), + [sym_nothing_literal] = ACTIONS(8529), + [sym_null_literal] = ACTIONS(8529), + [sym_empty_literal] = ACTIONS(8529), + [sym_date_literal] = ACTIONS(8531), + [anon_sym_POUND] = ACTIONS(8529), + }, + [STATE(3663)] = { + [aux_sym__argument_sequence_repeat1] = STATE(3663), + [sym_identifier] = ACTIONS(8533), + [sym_newline] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(8535), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8533), + [aux_sym_frm_property_statement_token1] = ACTIONS(8533), + [anon_sym_DOT] = ACTIONS(8533), + [anon_sym_BANG] = ACTIONS(8535), + [aux_sym__attribute_identifier_token1] = ACTIONS(8533), + [aux_sym_option_statement_token3] = ACTIONS(8533), + [aux_sym_type_declaration_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8533), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8533), + [aux_sym_enum_declaration_token1] = ACTIONS(8533), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8533), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8533), + [aux_sym_declare_function_statement_token1] = ACTIONS(8533), + [aux_sym_preprocessor_const_token1] = ACTIONS(8533), + [aux_sym__property_get_header_token1] = ACTIONS(8533), + [aux_sym_event_declaration_token1] = ACTIONS(8533), + [sym_static_modifier] = ACTIONS(8533), + [sym__dim_keyword] = ACTIONS(8533), + [sym__redim_keyword] = ACTIONS(8533), + [aux_sym_get_accessor_token1] = ACTIONS(8533), + [aux_sym_set_accessor_token1] = ACTIONS(8533), + [anon_sym_COMMA] = ACTIONS(8537), + [aux_sym_const_declaration_token1] = ACTIONS(8533), + [anon_sym_LPAREN] = ACTIONS(8535), + [aux_sym_as_type_clause_token2] = ACTIONS(8533), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8533), + [aux_sym_visibility_token1] = ACTIONS(8533), + [aux_sym_visibility_token2] = ACTIONS(8533), + [aux_sym_elseif_fragment_token1] = ACTIONS(8533), + [aux_sym_else_fragment_token1] = ACTIONS(8533), + [aux_sym_select_statement_token1] = ACTIONS(8533), + [aux_sym__for_header_token1] = ACTIONS(8533), + [aux_sym_do_statement_token1] = ACTIONS(8533), + [aux_sym_do_condition_token1] = ACTIONS(8533), + [aux_sym_with_statement_token1] = ACTIONS(8533), + [aux_sym_exit_statement_token1] = ACTIONS(8533), + [sym_end_statement] = ACTIONS(8535), + [aux_sym_on_goto_statement_token1] = ACTIONS(8533), + [aux_sym_on_goto_statement_token2] = ACTIONS(8533), + [aux_sym_on_error_statement_token2] = ACTIONS(8533), + [sym__ambiguous_redim_statement] = ACTIONS(8535), + [aux_sym_erase_statement_token1] = ACTIONS(8533), + [aux_sym_open_statement_token1] = ACTIONS(8533), + [aux_sym_file_mode_token2] = ACTIONS(8533), + [aux_sym_file_access_token2] = ACTIONS(8533), + [aux_sym_file_lock_token2] = ACTIONS(8533), + [aux_sym_print_statement_token1] = ACTIONS(8533), + [anon_sym_PLUS] = ACTIONS(8535), + [anon_sym_DASH] = ACTIONS(8533), + [anon_sym_QMARK] = ACTIONS(8535), + [aux_sym_close_statement_token1] = ACTIONS(8533), + [aux_sym_put_statement_token1] = ACTIONS(8533), + [aux_sym_unlock_statement_token1] = ACTIONS(8533), + [aux_sym_seek_statement_token1] = ACTIONS(8533), + [sym_reset_statement] = ACTIONS(8533), + [aux_sym_raise_event_statement_token1] = ACTIONS(8533), + [sym_stop_statement] = ACTIONS(8533), + [sym_beep_statement] = ACTIONS(8533), + [aux_sym_unload_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token2] = ACTIONS(8533), + [aux_sym_def_type_statement_token3] = ACTIONS(8533), + [aux_sym_def_type_statement_token4] = ACTIONS(8533), + [aux_sym_def_type_statement_token5] = ACTIONS(8533), + [aux_sym_def_type_statement_token6] = ACTIONS(8533), + [aux_sym_def_type_statement_token7] = ACTIONS(8533), + [aux_sym_def_type_statement_token8] = ACTIONS(8533), + [aux_sym_def_type_statement_token9] = ACTIONS(8533), + [aux_sym_def_type_statement_token10] = ACTIONS(8533), + [aux_sym_def_type_statement_token11] = ACTIONS(8533), + [aux_sym_def_type_statement_token12] = ACTIONS(8533), + [aux_sym_def_type_statement_token13] = ACTIONS(8533), + [aux_sym_def_type_statement_token14] = ACTIONS(8533), + [aux_sym_call_statement_token1] = ACTIONS(8533), + [sym__ambiguous_call_statement] = ACTIONS(8533), + [aux_sym_addressof_expression_token1] = ACTIONS(8533), + [aux_sym_type_of_expression_token1] = ACTIONS(8533), + [aux_sym_unary_expression_token1] = ACTIONS(8533), + [sym_string_literal] = ACTIONS(8535), + [sym_number_literal] = ACTIONS(8535), + [aux_sym_boolean_literal_token1] = ACTIONS(8533), + [aux_sym_boolean_literal_token2] = ACTIONS(8533), + [sym_nothing_literal] = ACTIONS(8533), + [sym_null_literal] = ACTIONS(8533), + [sym_empty_literal] = ACTIONS(8533), + [sym_date_literal] = ACTIONS(8535), + [anon_sym_POUND] = ACTIONS(8533), + }, + [STATE(3664)] = { + [sym_identifier] = ACTIONS(6625), + [sym_newline] = ACTIONS(6627), + [anon_sym_COLON] = ACTIONS(6627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6625), + [aux_sym_frm_property_statement_token1] = ACTIONS(6625), + [anon_sym_DOT] = ACTIONS(6625), + [anon_sym_BANG] = ACTIONS(6627), + [aux_sym__attribute_identifier_token1] = ACTIONS(6625), + [aux_sym_option_statement_token3] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6625), + [aux_sym_preprocessor_const_token1] = ACTIONS(6625), + [sym_static_modifier] = ACTIONS(6625), + [sym__dim_keyword] = ACTIONS(6625), + [sym__redim_keyword] = ACTIONS(6625), + [aux_sym_get_accessor_token1] = ACTIONS(6625), + [aux_sym_set_accessor_token1] = ACTIONS(6625), + [aux_sym_const_declaration_token1] = ACTIONS(6625), + [anon_sym_LPAREN] = ACTIONS(6627), + [aux_sym_as_type_clause_token2] = ACTIONS(6625), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6625), + [aux_sym_visibility_token1] = ACTIONS(6625), + [aux_sym_visibility_token2] = ACTIONS(6625), + [aux_sym_elseif_fragment_token1] = ACTIONS(6625), + [aux_sym_else_fragment_token1] = ACTIONS(6625), + [aux_sym_select_statement_token1] = ACTIONS(6625), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6625), + [aux_sym__for_header_token1] = ACTIONS(6625), + [aux_sym_do_statement_token1] = ACTIONS(6625), + [aux_sym_do_condition_token1] = ACTIONS(6625), + [aux_sym_with_statement_token1] = ACTIONS(6625), + [aux_sym_exit_statement_token1] = ACTIONS(6625), + [sym_end_statement] = ACTIONS(6627), + [aux_sym_on_goto_statement_token1] = ACTIONS(6625), + [aux_sym_on_goto_statement_token2] = ACTIONS(6625), + [aux_sym_on_error_statement_token2] = ACTIONS(6625), + [sym__ambiguous_redim_statement] = ACTIONS(6627), + [aux_sym_erase_statement_token1] = ACTIONS(6625), + [aux_sym_open_statement_token1] = ACTIONS(6625), + [aux_sym_file_mode_token2] = ACTIONS(6625), + [aux_sym_file_access_token2] = ACTIONS(6625), + [aux_sym_file_lock_token2] = ACTIONS(6625), + [aux_sym_print_statement_token1] = ACTIONS(6625), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(6627), + [aux_sym_close_statement_token1] = ACTIONS(6625), + [aux_sym_put_statement_token1] = ACTIONS(6625), + [aux_sym_unlock_statement_token1] = ACTIONS(6625), + [aux_sym_seek_statement_token1] = ACTIONS(6625), + [sym_reset_statement] = ACTIONS(6625), + [aux_sym_raise_event_statement_token1] = ACTIONS(6625), + [sym_stop_statement] = ACTIONS(6625), + [sym_beep_statement] = ACTIONS(6625), + [aux_sym_unload_statement_token1] = ACTIONS(6625), + [aux_sym_def_type_statement_token1] = ACTIONS(6625), + [aux_sym_def_type_statement_token2] = ACTIONS(6625), + [aux_sym_def_type_statement_token3] = ACTIONS(6625), + [aux_sym_def_type_statement_token4] = ACTIONS(6625), + [aux_sym_def_type_statement_token5] = ACTIONS(6625), + [aux_sym_def_type_statement_token6] = ACTIONS(6625), + [aux_sym_def_type_statement_token7] = ACTIONS(6625), + [aux_sym_def_type_statement_token8] = ACTIONS(6625), + [aux_sym_def_type_statement_token9] = ACTIONS(6625), + [aux_sym_def_type_statement_token10] = ACTIONS(6625), + [aux_sym_def_type_statement_token11] = ACTIONS(6625), + [aux_sym_def_type_statement_token12] = ACTIONS(6625), + [aux_sym_def_type_statement_token13] = ACTIONS(6625), + [aux_sym_def_type_statement_token14] = ACTIONS(6625), + [aux_sym_call_statement_token1] = ACTIONS(6625), + [sym__ambiguous_call_statement] = ACTIONS(6625), + [aux_sym_addressof_expression_token1] = ACTIONS(6625), + [aux_sym_type_of_expression_token1] = ACTIONS(6625), + [aux_sym_unary_expression_token1] = ACTIONS(6625), + [sym_string_literal] = ACTIONS(6627), + [sym_number_literal] = ACTIONS(6627), + [aux_sym_boolean_literal_token1] = ACTIONS(6625), + [aux_sym_boolean_literal_token2] = ACTIONS(6625), + [sym_nothing_literal] = ACTIONS(6625), + [sym_null_literal] = ACTIONS(6625), + [sym_empty_literal] = ACTIONS(6625), + [sym_date_literal] = ACTIONS(6627), + [anon_sym_POUND] = ACTIONS(6625), + }, + [STATE(3665)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_array_bound_token1] = ACTIONS(4006), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(4006), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3666)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_declaration_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4597), + [aux_sym_enum_declaration_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4597), + [aux_sym_declare_function_statement_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [aux_sym__property_get_header_token1] = ACTIONS(4597), + [aux_sym_event_declaration_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(3667)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(3491), + [sym_identifier] = ACTIONS(8540), + [sym_newline] = ACTIONS(8542), + [anon_sym_COLON] = ACTIONS(8542), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8540), + [aux_sym_frm_property_statement_token1] = ACTIONS(8540), + [anon_sym_DOT] = ACTIONS(8540), + [anon_sym_BANG] = ACTIONS(8542), + [aux_sym__attribute_identifier_token1] = ACTIONS(8540), + [aux_sym_option_statement_token3] = ACTIONS(8540), + [aux_sym_type_declaration_token1] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8540), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8540), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8540), + [aux_sym_enum_declaration_token1] = ACTIONS(8540), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8540), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8540), + [aux_sym_declare_function_statement_token1] = ACTIONS(8540), + [aux_sym_preprocessor_const_token1] = ACTIONS(8540), + [aux_sym__property_get_header_token1] = ACTIONS(8540), + [aux_sym_event_declaration_token1] = ACTIONS(8540), + [sym_static_modifier] = ACTIONS(8540), + [sym__dim_keyword] = ACTIONS(8540), + [sym__redim_keyword] = ACTIONS(8540), + [aux_sym_get_accessor_token1] = ACTIONS(8540), + [aux_sym_set_accessor_token1] = ACTIONS(8540), + [anon_sym_COMMA] = ACTIONS(8229), + [aux_sym_const_declaration_token1] = ACTIONS(8540), + [anon_sym_LPAREN] = ACTIONS(8542), + [aux_sym_as_type_clause_token2] = ACTIONS(8540), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8540), + [aux_sym_visibility_token1] = ACTIONS(8540), + [aux_sym_visibility_token2] = ACTIONS(8540), + [aux_sym_elseif_fragment_token1] = ACTIONS(8540), + [aux_sym_else_fragment_token1] = ACTIONS(8540), + [aux_sym_select_statement_token1] = ACTIONS(8540), + [aux_sym__for_header_token1] = ACTIONS(8540), + [aux_sym_do_statement_token1] = ACTIONS(8540), + [aux_sym_do_condition_token1] = ACTIONS(8540), + [aux_sym_with_statement_token1] = ACTIONS(8540), + [aux_sym_exit_statement_token1] = ACTIONS(8540), + [sym_end_statement] = ACTIONS(8542), + [aux_sym_on_goto_statement_token1] = ACTIONS(8540), + [aux_sym_on_goto_statement_token2] = ACTIONS(8540), + [aux_sym_on_error_statement_token2] = ACTIONS(8540), + [sym__ambiguous_redim_statement] = ACTIONS(8542), + [aux_sym_erase_statement_token1] = ACTIONS(8540), + [aux_sym_open_statement_token1] = ACTIONS(8540), + [aux_sym_file_mode_token2] = ACTIONS(8540), + [aux_sym_file_access_token2] = ACTIONS(8540), + [aux_sym_file_lock_token2] = ACTIONS(8540), + [aux_sym_print_statement_token1] = ACTIONS(8540), + [anon_sym_PLUS] = ACTIONS(8542), + [anon_sym_DASH] = ACTIONS(8540), + [anon_sym_QMARK] = ACTIONS(8542), + [aux_sym_close_statement_token1] = ACTIONS(8540), + [aux_sym_put_statement_token1] = ACTIONS(8540), + [aux_sym_unlock_statement_token1] = ACTIONS(8540), + [aux_sym_seek_statement_token1] = ACTIONS(8540), + [sym_reset_statement] = ACTIONS(8540), + [aux_sym_raise_event_statement_token1] = ACTIONS(8540), + [sym_stop_statement] = ACTIONS(8540), + [sym_beep_statement] = ACTIONS(8540), + [aux_sym_unload_statement_token1] = ACTIONS(8540), + [aux_sym_def_type_statement_token1] = ACTIONS(8540), + [aux_sym_def_type_statement_token2] = ACTIONS(8540), + [aux_sym_def_type_statement_token3] = ACTIONS(8540), + [aux_sym_def_type_statement_token4] = ACTIONS(8540), + [aux_sym_def_type_statement_token5] = ACTIONS(8540), + [aux_sym_def_type_statement_token6] = ACTIONS(8540), + [aux_sym_def_type_statement_token7] = ACTIONS(8540), + [aux_sym_def_type_statement_token8] = ACTIONS(8540), + [aux_sym_def_type_statement_token9] = ACTIONS(8540), + [aux_sym_def_type_statement_token10] = ACTIONS(8540), + [aux_sym_def_type_statement_token11] = ACTIONS(8540), + [aux_sym_def_type_statement_token12] = ACTIONS(8540), + [aux_sym_def_type_statement_token13] = ACTIONS(8540), + [aux_sym_def_type_statement_token14] = ACTIONS(8540), + [aux_sym_call_statement_token1] = ACTIONS(8540), + [sym__ambiguous_call_statement] = ACTIONS(8540), + [aux_sym_addressof_expression_token1] = ACTIONS(8540), + [aux_sym_type_of_expression_token1] = ACTIONS(8540), + [aux_sym_unary_expression_token1] = ACTIONS(8540), + [sym_string_literal] = ACTIONS(8542), + [sym_number_literal] = ACTIONS(8542), + [aux_sym_boolean_literal_token1] = ACTIONS(8540), + [aux_sym_boolean_literal_token2] = ACTIONS(8540), + [sym_nothing_literal] = ACTIONS(8540), + [sym_null_literal] = ACTIONS(8540), + [sym_empty_literal] = ACTIONS(8540), + [sym_date_literal] = ACTIONS(8542), + [anon_sym_POUND] = ACTIONS(8540), + }, + [STATE(3668)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token3] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(3669)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(8056), + [anon_sym_BANG] = ACTIONS(8058), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_array_bound_token1] = ACTIONS(4342), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(3670)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(3670), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(8544), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(3671)] = { + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(6089), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym__attribute_identifier_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [sym__redim_keyword] = ACTIONS(4006), + [aux_sym_get_accessor_token1] = ACTIONS(4006), + [aux_sym_set_accessor_token1] = ACTIONS(4006), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [aux_sym_as_type_clause_token2] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4006), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_elseif_fragment_token1] = ACTIONS(4006), + [aux_sym_else_fragment_token1] = ACTIONS(4006), + [aux_sym_select_statement_token1] = ACTIONS(4006), + [aux_sym__for_header_token1] = ACTIONS(4006), + [aux_sym_do_statement_token1] = ACTIONS(4006), + [aux_sym_do_condition_token1] = ACTIONS(4006), + [aux_sym_with_statement_token1] = ACTIONS(4006), + [aux_sym_exit_statement_token1] = ACTIONS(4006), + [sym_end_statement] = ACTIONS(4002), + [aux_sym_on_goto_statement_token1] = ACTIONS(4006), + [aux_sym_on_goto_statement_token2] = ACTIONS(4006), + [aux_sym_on_error_statement_token2] = ACTIONS(4006), + [sym__ambiguous_redim_statement] = ACTIONS(4002), + [aux_sym_erase_statement_token1] = ACTIONS(4006), + [aux_sym_open_statement_token1] = ACTIONS(4006), + [aux_sym_file_mode_token2] = ACTIONS(8547), + [aux_sym_file_access_token2] = ACTIONS(4006), + [aux_sym_file_lock_token2] = ACTIONS(4006), + [aux_sym_print_statement_token1] = ACTIONS(4006), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [anon_sym_QMARK] = ACTIONS(4002), + [aux_sym_close_statement_token1] = ACTIONS(4006), + [aux_sym_put_statement_token1] = ACTIONS(4006), + [aux_sym_unlock_statement_token1] = ACTIONS(4006), + [aux_sym_seek_statement_token1] = ACTIONS(4006), + [sym_reset_statement] = ACTIONS(4006), + [aux_sym_raise_event_statement_token1] = ACTIONS(4006), + [sym_stop_statement] = ACTIONS(4006), + [sym_beep_statement] = ACTIONS(4006), + [aux_sym_unload_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_call_statement_token1] = ACTIONS(4006), + [sym__ambiguous_call_statement] = ACTIONS(4006), + [aux_sym_addressof_expression_token1] = ACTIONS(4006), + [aux_sym_type_of_expression_token1] = ACTIONS(4006), + [aux_sym_unary_expression_token1] = ACTIONS(4006), + [sym_string_literal] = ACTIONS(4002), + [sym_number_literal] = ACTIONS(4002), + [aux_sym_boolean_literal_token1] = ACTIONS(4006), + [aux_sym_boolean_literal_token2] = ACTIONS(4006), + [sym_nothing_literal] = ACTIONS(4006), + [sym_null_literal] = ACTIONS(4006), + [sym_empty_literal] = ACTIONS(4006), + [sym_date_literal] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4006), + }, + [STATE(3672)] = { + [sym_identifier] = ACTIONS(6629), + [sym_newline] = ACTIONS(6631), + [anon_sym_COLON] = ACTIONS(6631), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6629), + [aux_sym_frm_property_statement_token1] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6631), + [aux_sym__attribute_identifier_token1] = ACTIONS(6629), + [aux_sym_option_statement_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6629), + [aux_sym_preprocessor_const_token1] = ACTIONS(6629), + [sym_static_modifier] = ACTIONS(6629), + [sym__dim_keyword] = ACTIONS(6629), + [sym__redim_keyword] = ACTIONS(6629), + [aux_sym_get_accessor_token1] = ACTIONS(6629), + [aux_sym_set_accessor_token1] = ACTIONS(6629), + [aux_sym_const_declaration_token1] = ACTIONS(6629), + [anon_sym_LPAREN] = ACTIONS(6631), + [aux_sym_as_type_clause_token2] = ACTIONS(6629), + [anon_sym_STAR] = ACTIONS(5899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6629), + [aux_sym_visibility_token1] = ACTIONS(6629), + [aux_sym_visibility_token2] = ACTIONS(6629), + [aux_sym_elseif_fragment_token1] = ACTIONS(6629), + [aux_sym_else_fragment_token1] = ACTIONS(6629), + [aux_sym_select_statement_token1] = ACTIONS(6629), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6629), + [aux_sym__for_header_token1] = ACTIONS(6629), + [aux_sym_do_statement_token1] = ACTIONS(6629), + [aux_sym_do_condition_token1] = ACTIONS(6629), + [aux_sym_with_statement_token1] = ACTIONS(6629), + [aux_sym_exit_statement_token1] = ACTIONS(6629), + [sym_end_statement] = ACTIONS(6631), + [aux_sym_on_goto_statement_token1] = ACTIONS(6629), + [aux_sym_on_goto_statement_token2] = ACTIONS(6629), + [aux_sym_on_error_statement_token2] = ACTIONS(6629), + [sym__ambiguous_redim_statement] = ACTIONS(6631), + [aux_sym_erase_statement_token1] = ACTIONS(6629), + [aux_sym_open_statement_token1] = ACTIONS(6629), + [aux_sym_file_mode_token2] = ACTIONS(6629), + [aux_sym_file_access_token2] = ACTIONS(6629), + [aux_sym_file_lock_token2] = ACTIONS(6629), + [aux_sym_print_statement_token1] = ACTIONS(6629), + [anon_sym_CARET] = ACTIONS(5901), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_BSLASH] = ACTIONS(5903), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5905), + [anon_sym_PLUS] = ACTIONS(5907), + [anon_sym_DASH] = ACTIONS(5909), + [anon_sym_AMP] = ACTIONS(5911), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6162), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6164), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6166), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6168), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6170), + [anon_sym_QMARK] = ACTIONS(6631), + [aux_sym_close_statement_token1] = ACTIONS(6629), + [aux_sym_put_statement_token1] = ACTIONS(6629), + [aux_sym_unlock_statement_token1] = ACTIONS(6629), + [aux_sym_seek_statement_token1] = ACTIONS(6629), + [sym_reset_statement] = ACTIONS(6629), + [aux_sym_raise_event_statement_token1] = ACTIONS(6629), + [sym_stop_statement] = ACTIONS(6629), + [sym_beep_statement] = ACTIONS(6629), + [aux_sym_unload_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token2] = ACTIONS(6629), + [aux_sym_def_type_statement_token3] = ACTIONS(6629), + [aux_sym_def_type_statement_token4] = ACTIONS(6629), + [aux_sym_def_type_statement_token5] = ACTIONS(6629), + [aux_sym_def_type_statement_token6] = ACTIONS(6629), + [aux_sym_def_type_statement_token7] = ACTIONS(6629), + [aux_sym_def_type_statement_token8] = ACTIONS(6629), + [aux_sym_def_type_statement_token9] = ACTIONS(6629), + [aux_sym_def_type_statement_token10] = ACTIONS(6629), + [aux_sym_def_type_statement_token11] = ACTIONS(6629), + [aux_sym_def_type_statement_token12] = ACTIONS(6629), + [aux_sym_def_type_statement_token13] = ACTIONS(6629), + [aux_sym_def_type_statement_token14] = ACTIONS(6629), + [aux_sym_call_statement_token1] = ACTIONS(6629), + [sym__ambiguous_call_statement] = ACTIONS(6629), + [aux_sym_addressof_expression_token1] = ACTIONS(6629), + [aux_sym_type_of_expression_token1] = ACTIONS(6629), + [aux_sym_unary_expression_token1] = ACTIONS(6629), + [sym_string_literal] = ACTIONS(6631), + [sym_number_literal] = ACTIONS(6631), + [aux_sym_boolean_literal_token1] = ACTIONS(6629), + [aux_sym_boolean_literal_token2] = ACTIONS(6629), + [sym_nothing_literal] = ACTIONS(6629), + [sym_null_literal] = ACTIONS(6629), + [sym_empty_literal] = ACTIONS(6629), + [sym_date_literal] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6629), + }, + [STATE(3673)] = { + [aux_sym__argument_sequence_repeat1] = STATE(3663), + [sym_identifier] = ACTIONS(8549), + [sym_newline] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8549), + [aux_sym_frm_property_statement_token1] = ACTIONS(8549), + [anon_sym_DOT] = ACTIONS(8549), + [anon_sym_BANG] = ACTIONS(8551), + [aux_sym__attribute_identifier_token1] = ACTIONS(8549), + [aux_sym_option_statement_token3] = ACTIONS(8549), + [aux_sym_type_declaration_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8549), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8549), + [aux_sym_enum_declaration_token1] = ACTIONS(8549), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8549), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8549), + [aux_sym_declare_function_statement_token1] = ACTIONS(8549), + [aux_sym_preprocessor_const_token1] = ACTIONS(8549), + [aux_sym__property_get_header_token1] = ACTIONS(8549), + [aux_sym_event_declaration_token1] = ACTIONS(8549), + [sym_static_modifier] = ACTIONS(8549), + [sym__dim_keyword] = ACTIONS(8549), + [sym__redim_keyword] = ACTIONS(8549), + [aux_sym_get_accessor_token1] = ACTIONS(8549), + [aux_sym_set_accessor_token1] = ACTIONS(8549), + [anon_sym_COMMA] = ACTIONS(8553), + [aux_sym_const_declaration_token1] = ACTIONS(8549), + [anon_sym_LPAREN] = ACTIONS(8551), + [aux_sym_as_type_clause_token2] = ACTIONS(8549), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8549), + [aux_sym_visibility_token1] = ACTIONS(8549), + [aux_sym_visibility_token2] = ACTIONS(8549), + [aux_sym_elseif_fragment_token1] = ACTIONS(8549), + [aux_sym_else_fragment_token1] = ACTIONS(8549), + [aux_sym_select_statement_token1] = ACTIONS(8549), + [aux_sym__for_header_token1] = ACTIONS(8549), + [aux_sym_do_statement_token1] = ACTIONS(8549), + [aux_sym_do_condition_token1] = ACTIONS(8549), + [aux_sym_with_statement_token1] = ACTIONS(8549), + [aux_sym_exit_statement_token1] = ACTIONS(8549), + [sym_end_statement] = ACTIONS(8551), + [aux_sym_on_goto_statement_token1] = ACTIONS(8549), + [aux_sym_on_goto_statement_token2] = ACTIONS(8549), + [aux_sym_on_error_statement_token2] = ACTIONS(8549), + [sym__ambiguous_redim_statement] = ACTIONS(8551), + [aux_sym_erase_statement_token1] = ACTIONS(8549), + [aux_sym_open_statement_token1] = ACTIONS(8549), + [aux_sym_file_mode_token2] = ACTIONS(8549), + [aux_sym_file_access_token2] = ACTIONS(8549), + [aux_sym_file_lock_token2] = ACTIONS(8549), + [aux_sym_print_statement_token1] = ACTIONS(8549), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_DASH] = ACTIONS(8549), + [anon_sym_QMARK] = ACTIONS(8551), + [aux_sym_close_statement_token1] = ACTIONS(8549), + [aux_sym_put_statement_token1] = ACTIONS(8549), + [aux_sym_unlock_statement_token1] = ACTIONS(8549), + [aux_sym_seek_statement_token1] = ACTIONS(8549), + [sym_reset_statement] = ACTIONS(8549), + [aux_sym_raise_event_statement_token1] = ACTIONS(8549), + [sym_stop_statement] = ACTIONS(8549), + [sym_beep_statement] = ACTIONS(8549), + [aux_sym_unload_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token2] = ACTIONS(8549), + [aux_sym_def_type_statement_token3] = ACTIONS(8549), + [aux_sym_def_type_statement_token4] = ACTIONS(8549), + [aux_sym_def_type_statement_token5] = ACTIONS(8549), + [aux_sym_def_type_statement_token6] = ACTIONS(8549), + [aux_sym_def_type_statement_token7] = ACTIONS(8549), + [aux_sym_def_type_statement_token8] = ACTIONS(8549), + [aux_sym_def_type_statement_token9] = ACTIONS(8549), + [aux_sym_def_type_statement_token10] = ACTIONS(8549), + [aux_sym_def_type_statement_token11] = ACTIONS(8549), + [aux_sym_def_type_statement_token12] = ACTIONS(8549), + [aux_sym_def_type_statement_token13] = ACTIONS(8549), + [aux_sym_def_type_statement_token14] = ACTIONS(8549), + [aux_sym_call_statement_token1] = ACTIONS(8549), + [sym__ambiguous_call_statement] = ACTIONS(8549), + [aux_sym_addressof_expression_token1] = ACTIONS(8549), + [aux_sym_type_of_expression_token1] = ACTIONS(8549), + [aux_sym_unary_expression_token1] = ACTIONS(8549), + [sym_string_literal] = ACTIONS(8551), + [sym_number_literal] = ACTIONS(8551), + [aux_sym_boolean_literal_token1] = ACTIONS(8549), + [aux_sym_boolean_literal_token2] = ACTIONS(8549), + [sym_nothing_literal] = ACTIONS(8549), + [sym_null_literal] = ACTIONS(8549), + [sym_empty_literal] = ACTIONS(8549), + [sym_date_literal] = ACTIONS(8551), + [anon_sym_POUND] = ACTIONS(8549), + }, + [STATE(3674)] = { + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [anon_sym_COLON] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym__attribute_identifier_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [sym__redim_keyword] = ACTIONS(4447), + [aux_sym_get_accessor_token1] = ACTIONS(4447), + [aux_sym_set_accessor_token1] = ACTIONS(4447), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [aux_sym_as_type_clause_token2] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_array_bound_token1] = ACTIONS(4447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4447), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_elseif_fragment_token1] = ACTIONS(4447), + [aux_sym_else_fragment_token1] = ACTIONS(4447), + [aux_sym_select_statement_token1] = ACTIONS(4447), + [aux_sym__for_header_token1] = ACTIONS(4447), + [aux_sym_do_statement_token1] = ACTIONS(4447), + [aux_sym_do_condition_token1] = ACTIONS(4447), + [aux_sym_with_statement_token1] = ACTIONS(4447), + [aux_sym_exit_statement_token1] = ACTIONS(4447), + [sym_end_statement] = ACTIONS(4449), + [aux_sym_on_goto_statement_token1] = ACTIONS(4447), + [aux_sym_on_goto_statement_token2] = ACTIONS(4447), + [aux_sym_on_error_statement_token2] = ACTIONS(4447), + [sym__ambiguous_redim_statement] = ACTIONS(4449), + [aux_sym_erase_statement_token1] = ACTIONS(4447), + [aux_sym_open_statement_token1] = ACTIONS(4447), + [aux_sym_file_mode_token2] = ACTIONS(4447), + [aux_sym_file_access_token2] = ACTIONS(4447), + [aux_sym_file_lock_token2] = ACTIONS(4447), + [aux_sym_print_statement_token1] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [anon_sym_QMARK] = ACTIONS(4449), + [aux_sym_close_statement_token1] = ACTIONS(4447), + [aux_sym_put_statement_token1] = ACTIONS(4447), + [aux_sym_unlock_statement_token1] = ACTIONS(4447), + [aux_sym_seek_statement_token1] = ACTIONS(4447), + [sym_reset_statement] = ACTIONS(4447), + [aux_sym_raise_event_statement_token1] = ACTIONS(4447), + [sym_stop_statement] = ACTIONS(4447), + [sym_beep_statement] = ACTIONS(4447), + [aux_sym_unload_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_call_statement_token1] = ACTIONS(4447), + [sym__ambiguous_call_statement] = ACTIONS(4447), + [aux_sym_addressof_expression_token1] = ACTIONS(4447), + [aux_sym_type_of_expression_token1] = ACTIONS(4447), + [aux_sym_unary_expression_token1] = ACTIONS(4447), + [sym_string_literal] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4449), + [aux_sym_boolean_literal_token1] = ACTIONS(4447), + [aux_sym_boolean_literal_token2] = ACTIONS(4447), + [sym_nothing_literal] = ACTIONS(4447), + [sym_null_literal] = ACTIONS(4447), + [sym_empty_literal] = ACTIONS(4447), + [sym_date_literal] = ACTIONS(4449), + [anon_sym_POUND] = ACTIONS(4447), + }, + [STATE(3675)] = { + [sym_parameter_list] = STATE(3967), + [sym_identifier] = ACTIONS(8555), + [sym_newline] = ACTIONS(8557), + [anon_sym_COLON] = ACTIONS(8557), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8555), + [aux_sym_frm_property_statement_token1] = ACTIONS(8555), + [anon_sym_DOT] = ACTIONS(8555), + [anon_sym_BANG] = ACTIONS(8557), + [aux_sym__attribute_identifier_token1] = ACTIONS(8555), + [aux_sym_option_statement_token3] = ACTIONS(8555), + [aux_sym_type_declaration_token1] = ACTIONS(8555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8555), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8555), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8555), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8555), + [aux_sym_enum_declaration_token1] = ACTIONS(8555), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8555), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8555), + [aux_sym_declare_sub_statement_token4] = ACTIONS(8559), + [aux_sym_declare_function_statement_token1] = ACTIONS(8555), + [aux_sym_preprocessor_const_token1] = ACTIONS(8555), + [aux_sym__property_get_header_token1] = ACTIONS(8555), + [aux_sym_event_declaration_token1] = ACTIONS(8555), + [sym_static_modifier] = ACTIONS(8555), + [sym__dim_keyword] = ACTIONS(8555), + [sym__redim_keyword] = ACTIONS(8555), + [aux_sym_get_accessor_token1] = ACTIONS(8555), + [aux_sym_set_accessor_token1] = ACTIONS(8555), + [aux_sym_const_declaration_token1] = ACTIONS(8555), + [anon_sym_LPAREN] = ACTIONS(8126), + [aux_sym_as_type_clause_token2] = ACTIONS(8555), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8555), + [aux_sym_visibility_token1] = ACTIONS(8555), + [aux_sym_visibility_token2] = ACTIONS(8555), + [aux_sym_elseif_fragment_token1] = ACTIONS(8555), + [aux_sym_else_fragment_token1] = ACTIONS(8555), + [aux_sym_select_statement_token1] = ACTIONS(8555), + [aux_sym__for_header_token1] = ACTIONS(8555), + [aux_sym_do_statement_token1] = ACTIONS(8555), + [aux_sym_do_condition_token1] = ACTIONS(8555), + [aux_sym_with_statement_token1] = ACTIONS(8555), + [aux_sym_exit_statement_token1] = ACTIONS(8555), + [sym_end_statement] = ACTIONS(8557), + [aux_sym_on_goto_statement_token1] = ACTIONS(8555), + [aux_sym_on_goto_statement_token2] = ACTIONS(8555), + [aux_sym_on_error_statement_token2] = ACTIONS(8555), + [sym__ambiguous_redim_statement] = ACTIONS(8557), + [aux_sym_erase_statement_token1] = ACTIONS(8555), + [aux_sym_open_statement_token1] = ACTIONS(8555), + [aux_sym_file_mode_token2] = ACTIONS(8555), + [aux_sym_file_access_token2] = ACTIONS(8555), + [aux_sym_file_lock_token2] = ACTIONS(8555), + [aux_sym_print_statement_token1] = ACTIONS(8555), + [anon_sym_PLUS] = ACTIONS(8557), + [anon_sym_DASH] = ACTIONS(8555), + [anon_sym_QMARK] = ACTIONS(8557), + [aux_sym_close_statement_token1] = ACTIONS(8555), + [aux_sym_put_statement_token1] = ACTIONS(8555), + [aux_sym_unlock_statement_token1] = ACTIONS(8555), + [aux_sym_seek_statement_token1] = ACTIONS(8555), + [sym_reset_statement] = ACTIONS(8555), + [aux_sym_raise_event_statement_token1] = ACTIONS(8555), + [sym_stop_statement] = ACTIONS(8555), + [sym_beep_statement] = ACTIONS(8555), + [aux_sym_unload_statement_token1] = ACTIONS(8555), + [aux_sym_def_type_statement_token1] = ACTIONS(8555), + [aux_sym_def_type_statement_token2] = ACTIONS(8555), + [aux_sym_def_type_statement_token3] = ACTIONS(8555), + [aux_sym_def_type_statement_token4] = ACTIONS(8555), + [aux_sym_def_type_statement_token5] = ACTIONS(8555), + [aux_sym_def_type_statement_token6] = ACTIONS(8555), + [aux_sym_def_type_statement_token7] = ACTIONS(8555), + [aux_sym_def_type_statement_token8] = ACTIONS(8555), + [aux_sym_def_type_statement_token9] = ACTIONS(8555), + [aux_sym_def_type_statement_token10] = ACTIONS(8555), + [aux_sym_def_type_statement_token11] = ACTIONS(8555), + [aux_sym_def_type_statement_token12] = ACTIONS(8555), + [aux_sym_def_type_statement_token13] = ACTIONS(8555), + [aux_sym_def_type_statement_token14] = ACTIONS(8555), + [aux_sym_call_statement_token1] = ACTIONS(8555), + [sym__ambiguous_call_statement] = ACTIONS(8555), + [aux_sym_addressof_expression_token1] = ACTIONS(8555), + [aux_sym_type_of_expression_token1] = ACTIONS(8555), + [aux_sym_unary_expression_token1] = ACTIONS(8555), + [sym_string_literal] = ACTIONS(8557), + [sym_number_literal] = ACTIONS(8557), + [aux_sym_boolean_literal_token1] = ACTIONS(8555), + [aux_sym_boolean_literal_token2] = ACTIONS(8555), + [sym_nothing_literal] = ACTIONS(8555), + [sym_null_literal] = ACTIONS(8555), + [sym_empty_literal] = ACTIONS(8555), + [sym_date_literal] = ACTIONS(8557), + [anon_sym_POUND] = ACTIONS(8555), + }, + [STATE(3676)] = { + [sym_identifier] = ACTIONS(6396), + [sym_newline] = ACTIONS(6398), + [anon_sym_COLON] = ACTIONS(6398), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6396), + [aux_sym_frm_property_statement_token1] = ACTIONS(6396), + [anon_sym_DOT] = ACTIONS(6396), + [anon_sym_BANG] = ACTIONS(6398), + [aux_sym__attribute_identifier_token1] = ACTIONS(6396), + [aux_sym_option_statement_token3] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6396), + [aux_sym_preprocessor_const_token1] = ACTIONS(6396), + [sym_static_modifier] = ACTIONS(6396), + [sym__dim_keyword] = ACTIONS(6396), + [sym__redim_keyword] = ACTIONS(6396), + [aux_sym_get_accessor_token1] = ACTIONS(6396), + [aux_sym_set_accessor_token1] = ACTIONS(6396), + [aux_sym_const_declaration_token1] = ACTIONS(6396), + [anon_sym_LPAREN] = ACTIONS(6398), + [aux_sym_as_type_clause_token2] = ACTIONS(6396), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6396), + [aux_sym_visibility_token1] = ACTIONS(6396), + [aux_sym_visibility_token2] = ACTIONS(6396), + [aux_sym_elseif_fragment_token1] = ACTIONS(6396), + [aux_sym_else_fragment_token1] = ACTIONS(6396), + [aux_sym_select_statement_token1] = ACTIONS(6396), + [aux_sym__for_header_token1] = ACTIONS(6396), + [aux_sym_do_statement_token1] = ACTIONS(6396), + [aux_sym_do_statement_token2] = ACTIONS(6396), + [aux_sym_do_condition_token1] = ACTIONS(6396), + [aux_sym_with_statement_token1] = ACTIONS(6396), + [aux_sym_exit_statement_token1] = ACTIONS(6396), + [sym_end_statement] = ACTIONS(6398), + [aux_sym_on_goto_statement_token1] = ACTIONS(6396), + [aux_sym_on_goto_statement_token2] = ACTIONS(6396), + [aux_sym_on_error_statement_token2] = ACTIONS(6396), + [sym__ambiguous_redim_statement] = ACTIONS(6398), + [aux_sym_erase_statement_token1] = ACTIONS(6396), + [aux_sym_open_statement_token1] = ACTIONS(6396), + [aux_sym_file_mode_token2] = ACTIONS(6396), + [aux_sym_file_access_token2] = ACTIONS(6396), + [aux_sym_file_lock_token2] = ACTIONS(6396), + [aux_sym_print_statement_token1] = ACTIONS(6396), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_QMARK] = ACTIONS(6398), + [aux_sym_close_statement_token1] = ACTIONS(6396), + [aux_sym_put_statement_token1] = ACTIONS(6396), + [aux_sym_unlock_statement_token1] = ACTIONS(6396), + [aux_sym_seek_statement_token1] = ACTIONS(6396), + [sym_reset_statement] = ACTIONS(6396), + [aux_sym_raise_event_statement_token1] = ACTIONS(6396), + [sym_stop_statement] = ACTIONS(6396), + [sym_beep_statement] = ACTIONS(6396), + [aux_sym_unload_statement_token1] = ACTIONS(6396), + [aux_sym_def_type_statement_token1] = ACTIONS(6396), + [aux_sym_def_type_statement_token2] = ACTIONS(6396), + [aux_sym_def_type_statement_token3] = ACTIONS(6396), + [aux_sym_def_type_statement_token4] = ACTIONS(6396), + [aux_sym_def_type_statement_token5] = ACTIONS(6396), + [aux_sym_def_type_statement_token6] = ACTIONS(6396), + [aux_sym_def_type_statement_token7] = ACTIONS(6396), + [aux_sym_def_type_statement_token8] = ACTIONS(6396), + [aux_sym_def_type_statement_token9] = ACTIONS(6396), + [aux_sym_def_type_statement_token10] = ACTIONS(6396), + [aux_sym_def_type_statement_token11] = ACTIONS(6396), + [aux_sym_def_type_statement_token12] = ACTIONS(6396), + [aux_sym_def_type_statement_token13] = ACTIONS(6396), + [aux_sym_def_type_statement_token14] = ACTIONS(6396), + [aux_sym_call_statement_token1] = ACTIONS(6396), + [sym__ambiguous_call_statement] = ACTIONS(6396), + [aux_sym_addressof_expression_token1] = ACTIONS(6396), + [aux_sym_type_of_expression_token1] = ACTIONS(6396), + [aux_sym_unary_expression_token1] = ACTIONS(6396), + [sym_string_literal] = ACTIONS(6398), + [sym_number_literal] = ACTIONS(6398), + [aux_sym_boolean_literal_token1] = ACTIONS(6396), + [aux_sym_boolean_literal_token2] = ACTIONS(6396), + [sym_nothing_literal] = ACTIONS(6396), + [sym_null_literal] = ACTIONS(6396), + [sym_empty_literal] = ACTIONS(6396), + [sym_date_literal] = ACTIONS(6398), + [anon_sym_POUND] = ACTIONS(6396), + }, + [STATE(3677)] = { + [aux_sym_redim_statement_repeat1] = STATE(3547), + [sym_identifier] = ACTIONS(8561), + [sym_newline] = ACTIONS(8563), + [anon_sym_COLON] = ACTIONS(8563), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8561), + [aux_sym_frm_property_statement_token1] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8561), + [anon_sym_BANG] = ACTIONS(8563), + [aux_sym__attribute_identifier_token1] = ACTIONS(8561), + [aux_sym_option_statement_token3] = ACTIONS(8561), + [aux_sym_type_declaration_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8561), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8561), + [aux_sym_enum_declaration_token1] = ACTIONS(8561), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8561), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8561), + [aux_sym_declare_function_statement_token1] = ACTIONS(8561), + [aux_sym_preprocessor_const_token1] = ACTIONS(8561), + [aux_sym__property_get_header_token1] = ACTIONS(8561), + [aux_sym_event_declaration_token1] = ACTIONS(8561), + [sym_static_modifier] = ACTIONS(8561), + [sym__dim_keyword] = ACTIONS(8561), + [sym__redim_keyword] = ACTIONS(8561), + [aux_sym_get_accessor_token1] = ACTIONS(8561), + [aux_sym_set_accessor_token1] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(8344), + [aux_sym_const_declaration_token1] = ACTIONS(8561), + [anon_sym_LPAREN] = ACTIONS(8563), + [aux_sym_as_type_clause_token2] = ACTIONS(8561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8561), + [aux_sym_visibility_token1] = ACTIONS(8561), + [aux_sym_visibility_token2] = ACTIONS(8561), + [aux_sym_elseif_fragment_token1] = ACTIONS(8561), + [aux_sym_else_fragment_token1] = ACTIONS(8561), + [aux_sym_select_statement_token1] = ACTIONS(8561), + [aux_sym__for_header_token1] = ACTIONS(8561), + [aux_sym_do_statement_token1] = ACTIONS(8561), + [aux_sym_do_condition_token1] = ACTIONS(8561), + [aux_sym_with_statement_token1] = ACTIONS(8561), + [aux_sym_exit_statement_token1] = ACTIONS(8561), + [sym_end_statement] = ACTIONS(8563), + [aux_sym_on_goto_statement_token1] = ACTIONS(8561), + [aux_sym_on_goto_statement_token2] = ACTIONS(8561), + [aux_sym_on_error_statement_token2] = ACTIONS(8561), + [sym__ambiguous_redim_statement] = ACTIONS(8563), + [aux_sym_erase_statement_token1] = ACTIONS(8561), + [aux_sym_open_statement_token1] = ACTIONS(8561), + [aux_sym_file_mode_token2] = ACTIONS(8561), + [aux_sym_file_access_token2] = ACTIONS(8561), + [aux_sym_file_lock_token2] = ACTIONS(8561), + [aux_sym_print_statement_token1] = ACTIONS(8561), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(8561), + [anon_sym_QMARK] = ACTIONS(8563), + [aux_sym_close_statement_token1] = ACTIONS(8561), + [aux_sym_put_statement_token1] = ACTIONS(8561), + [aux_sym_unlock_statement_token1] = ACTIONS(8561), + [aux_sym_seek_statement_token1] = ACTIONS(8561), + [sym_reset_statement] = ACTIONS(8561), + [aux_sym_raise_event_statement_token1] = ACTIONS(8561), + [sym_stop_statement] = ACTIONS(8561), + [sym_beep_statement] = ACTIONS(8561), + [aux_sym_unload_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token2] = ACTIONS(8561), + [aux_sym_def_type_statement_token3] = ACTIONS(8561), + [aux_sym_def_type_statement_token4] = ACTIONS(8561), + [aux_sym_def_type_statement_token5] = ACTIONS(8561), + [aux_sym_def_type_statement_token6] = ACTIONS(8561), + [aux_sym_def_type_statement_token7] = ACTIONS(8561), + [aux_sym_def_type_statement_token8] = ACTIONS(8561), + [aux_sym_def_type_statement_token9] = ACTIONS(8561), + [aux_sym_def_type_statement_token10] = ACTIONS(8561), + [aux_sym_def_type_statement_token11] = ACTIONS(8561), + [aux_sym_def_type_statement_token12] = ACTIONS(8561), + [aux_sym_def_type_statement_token13] = ACTIONS(8561), + [aux_sym_def_type_statement_token14] = ACTIONS(8561), + [aux_sym_call_statement_token1] = ACTIONS(8561), + [sym__ambiguous_call_statement] = ACTIONS(8561), + [aux_sym_addressof_expression_token1] = ACTIONS(8561), + [aux_sym_type_of_expression_token1] = ACTIONS(8561), + [aux_sym_unary_expression_token1] = ACTIONS(8561), + [sym_string_literal] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8563), + [aux_sym_boolean_literal_token1] = ACTIONS(8561), + [aux_sym_boolean_literal_token2] = ACTIONS(8561), + [sym_nothing_literal] = ACTIONS(8561), + [sym_null_literal] = ACTIONS(8561), + [sym_empty_literal] = ACTIONS(8561), + [sym_date_literal] = ACTIONS(8563), + [anon_sym_POUND] = ACTIONS(8561), + }, + [STATE(3678)] = { + [aux_sym_variable_declaration_repeat1] = STATE(3694), + [sym_identifier] = ACTIONS(8565), + [sym_newline] = ACTIONS(8567), + [anon_sym_COLON] = ACTIONS(8567), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8565), + [aux_sym_frm_property_statement_token1] = ACTIONS(8565), + [anon_sym_DOT] = ACTIONS(8565), + [anon_sym_BANG] = ACTIONS(8567), + [aux_sym__attribute_identifier_token1] = ACTIONS(8565), + [aux_sym_option_statement_token3] = ACTIONS(8565), + [aux_sym_type_declaration_token1] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8565), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8565), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8565), + [aux_sym_enum_declaration_token1] = ACTIONS(8565), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8565), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8565), + [aux_sym_declare_function_statement_token1] = ACTIONS(8565), + [aux_sym_preprocessor_const_token1] = ACTIONS(8565), + [aux_sym__property_get_header_token1] = ACTIONS(8565), + [aux_sym_event_declaration_token1] = ACTIONS(8565), + [sym_static_modifier] = ACTIONS(8565), + [sym__dim_keyword] = ACTIONS(8565), + [sym__redim_keyword] = ACTIONS(8565), + [aux_sym_get_accessor_token1] = ACTIONS(8565), + [aux_sym_set_accessor_token1] = ACTIONS(8565), + [anon_sym_COMMA] = ACTIONS(8099), + [aux_sym_const_declaration_token1] = ACTIONS(8565), + [anon_sym_LPAREN] = ACTIONS(8567), + [aux_sym_as_type_clause_token2] = ACTIONS(8565), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8565), + [aux_sym_visibility_token1] = ACTIONS(8565), + [aux_sym_visibility_token2] = ACTIONS(8565), + [aux_sym_elseif_fragment_token1] = ACTIONS(8565), + [aux_sym_else_fragment_token1] = ACTIONS(8565), + [aux_sym_select_statement_token1] = ACTIONS(8565), + [aux_sym__for_header_token1] = ACTIONS(8565), + [aux_sym_do_statement_token1] = ACTIONS(8565), + [aux_sym_do_condition_token1] = ACTIONS(8565), + [aux_sym_with_statement_token1] = ACTIONS(8565), + [aux_sym_exit_statement_token1] = ACTIONS(8565), + [sym_end_statement] = ACTIONS(8567), + [aux_sym_on_goto_statement_token1] = ACTIONS(8565), + [aux_sym_on_goto_statement_token2] = ACTIONS(8565), + [aux_sym_on_error_statement_token2] = ACTIONS(8565), + [sym__ambiguous_redim_statement] = ACTIONS(8567), + [aux_sym_erase_statement_token1] = ACTIONS(8565), + [aux_sym_open_statement_token1] = ACTIONS(8565), + [aux_sym_file_mode_token2] = ACTIONS(8565), + [aux_sym_file_access_token2] = ACTIONS(8565), + [aux_sym_file_lock_token2] = ACTIONS(8565), + [aux_sym_print_statement_token1] = ACTIONS(8565), + [anon_sym_PLUS] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(8565), + [anon_sym_QMARK] = ACTIONS(8567), + [aux_sym_close_statement_token1] = ACTIONS(8565), + [aux_sym_put_statement_token1] = ACTIONS(8565), + [aux_sym_unlock_statement_token1] = ACTIONS(8565), + [aux_sym_seek_statement_token1] = ACTIONS(8565), + [sym_reset_statement] = ACTIONS(8565), + [aux_sym_raise_event_statement_token1] = ACTIONS(8565), + [sym_stop_statement] = ACTIONS(8565), + [sym_beep_statement] = ACTIONS(8565), + [aux_sym_unload_statement_token1] = ACTIONS(8565), + [aux_sym_def_type_statement_token1] = ACTIONS(8565), + [aux_sym_def_type_statement_token2] = ACTIONS(8565), + [aux_sym_def_type_statement_token3] = ACTIONS(8565), + [aux_sym_def_type_statement_token4] = ACTIONS(8565), + [aux_sym_def_type_statement_token5] = ACTIONS(8565), + [aux_sym_def_type_statement_token6] = ACTIONS(8565), + [aux_sym_def_type_statement_token7] = ACTIONS(8565), + [aux_sym_def_type_statement_token8] = ACTIONS(8565), + [aux_sym_def_type_statement_token9] = ACTIONS(8565), + [aux_sym_def_type_statement_token10] = ACTIONS(8565), + [aux_sym_def_type_statement_token11] = ACTIONS(8565), + [aux_sym_def_type_statement_token12] = ACTIONS(8565), + [aux_sym_def_type_statement_token13] = ACTIONS(8565), + [aux_sym_def_type_statement_token14] = ACTIONS(8565), + [aux_sym_call_statement_token1] = ACTIONS(8565), + [sym__ambiguous_call_statement] = ACTIONS(8565), + [aux_sym_addressof_expression_token1] = ACTIONS(8565), + [aux_sym_type_of_expression_token1] = ACTIONS(8565), + [aux_sym_unary_expression_token1] = ACTIONS(8565), + [sym_string_literal] = ACTIONS(8567), + [sym_number_literal] = ACTIONS(8567), + [aux_sym_boolean_literal_token1] = ACTIONS(8565), + [aux_sym_boolean_literal_token2] = ACTIONS(8565), + [sym_nothing_literal] = ACTIONS(8565), + [sym_null_literal] = ACTIONS(8565), + [sym_empty_literal] = ACTIONS(8565), + [sym_date_literal] = ACTIONS(8567), + [anon_sym_POUND] = ACTIONS(8565), + }, + [STATE(3679)] = { + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym__attribute_identifier_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [sym__redim_keyword] = ACTIONS(4477), + [aux_sym_get_accessor_token1] = ACTIONS(4477), + [aux_sym_set_accessor_token1] = ACTIONS(4477), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [aux_sym_as_type_clause_token2] = ACTIONS(4477), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_array_bound_token1] = ACTIONS(4477), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4477), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_elseif_fragment_token1] = ACTIONS(4477), + [aux_sym_else_fragment_token1] = ACTIONS(4477), + [aux_sym_select_statement_token1] = ACTIONS(4477), + [aux_sym__for_header_token1] = ACTIONS(4477), + [aux_sym_do_statement_token1] = ACTIONS(4477), + [aux_sym_do_condition_token1] = ACTIONS(4477), + [aux_sym_with_statement_token1] = ACTIONS(4477), + [aux_sym_exit_statement_token1] = ACTIONS(4477), + [sym_end_statement] = ACTIONS(4479), + [aux_sym_on_goto_statement_token1] = ACTIONS(4477), + [aux_sym_on_goto_statement_token2] = ACTIONS(4477), + [aux_sym_on_error_statement_token2] = ACTIONS(4477), + [sym__ambiguous_redim_statement] = ACTIONS(4479), + [aux_sym_erase_statement_token1] = ACTIONS(4477), + [aux_sym_open_statement_token1] = ACTIONS(4477), + [aux_sym_file_mode_token2] = ACTIONS(4477), + [aux_sym_file_access_token2] = ACTIONS(4477), + [aux_sym_file_lock_token2] = ACTIONS(4477), + [aux_sym_print_statement_token1] = ACTIONS(4477), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [anon_sym_QMARK] = ACTIONS(4479), + [aux_sym_close_statement_token1] = ACTIONS(4477), + [aux_sym_put_statement_token1] = ACTIONS(4477), + [aux_sym_unlock_statement_token1] = ACTIONS(4477), + [aux_sym_seek_statement_token1] = ACTIONS(4477), + [sym_reset_statement] = ACTIONS(4477), + [aux_sym_raise_event_statement_token1] = ACTIONS(4477), + [sym_stop_statement] = ACTIONS(4477), + [sym_beep_statement] = ACTIONS(4477), + [aux_sym_unload_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_call_statement_token1] = ACTIONS(4477), + [sym__ambiguous_call_statement] = ACTIONS(4477), + [aux_sym_addressof_expression_token1] = ACTIONS(4477), + [aux_sym_type_of_expression_token1] = ACTIONS(4477), + [aux_sym_unary_expression_token1] = ACTIONS(4477), + [sym_string_literal] = ACTIONS(4479), + [sym_number_literal] = ACTIONS(4479), + [aux_sym_boolean_literal_token1] = ACTIONS(4477), + [aux_sym_boolean_literal_token2] = ACTIONS(4477), + [sym_nothing_literal] = ACTIONS(4477), + [sym_null_literal] = ACTIONS(4477), + [sym_empty_literal] = ACTIONS(4477), + [sym_date_literal] = ACTIONS(4479), + [anon_sym_POUND] = ACTIONS(4477), + }, + [STATE(3680)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token3] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(3681)] = { + [aux_sym_variable_declaration_repeat1] = STATE(3415), + [sym_identifier] = ACTIONS(8569), + [sym_newline] = ACTIONS(8571), + [anon_sym_COLON] = ACTIONS(8571), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8569), + [aux_sym_frm_property_statement_token1] = ACTIONS(8569), + [anon_sym_DOT] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(8571), + [aux_sym__attribute_identifier_token1] = ACTIONS(8569), + [aux_sym_option_statement_token3] = ACTIONS(8569), + [aux_sym_type_declaration_token1] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8569), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8569), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8569), + [aux_sym_enum_declaration_token1] = ACTIONS(8569), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8569), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8569), + [aux_sym_declare_function_statement_token1] = ACTIONS(8569), + [aux_sym_preprocessor_const_token1] = ACTIONS(8569), + [aux_sym__property_get_header_token1] = ACTIONS(8569), + [aux_sym_event_declaration_token1] = ACTIONS(8569), + [sym_static_modifier] = ACTIONS(8569), + [sym__dim_keyword] = ACTIONS(8569), + [sym__redim_keyword] = ACTIONS(8569), + [aux_sym_get_accessor_token1] = ACTIONS(8569), + [aux_sym_set_accessor_token1] = ACTIONS(8569), + [anon_sym_COMMA] = ACTIONS(8099), + [aux_sym_const_declaration_token1] = ACTIONS(8569), + [anon_sym_LPAREN] = ACTIONS(8571), + [aux_sym_as_type_clause_token2] = ACTIONS(8569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8569), + [aux_sym_visibility_token1] = ACTIONS(8569), + [aux_sym_visibility_token2] = ACTIONS(8569), + [aux_sym_elseif_fragment_token1] = ACTIONS(8569), + [aux_sym_else_fragment_token1] = ACTIONS(8569), + [aux_sym_select_statement_token1] = ACTIONS(8569), + [aux_sym__for_header_token1] = ACTIONS(8569), + [aux_sym_do_statement_token1] = ACTIONS(8569), + [aux_sym_do_condition_token1] = ACTIONS(8569), + [aux_sym_with_statement_token1] = ACTIONS(8569), + [aux_sym_exit_statement_token1] = ACTIONS(8569), + [sym_end_statement] = ACTIONS(8571), + [aux_sym_on_goto_statement_token1] = ACTIONS(8569), + [aux_sym_on_goto_statement_token2] = ACTIONS(8569), + [aux_sym_on_error_statement_token2] = ACTIONS(8569), + [sym__ambiguous_redim_statement] = ACTIONS(8571), + [aux_sym_erase_statement_token1] = ACTIONS(8569), + [aux_sym_open_statement_token1] = ACTIONS(8569), + [aux_sym_file_mode_token2] = ACTIONS(8569), + [aux_sym_file_access_token2] = ACTIONS(8569), + [aux_sym_file_lock_token2] = ACTIONS(8569), + [aux_sym_print_statement_token1] = ACTIONS(8569), + [anon_sym_PLUS] = ACTIONS(8571), + [anon_sym_DASH] = ACTIONS(8569), + [anon_sym_QMARK] = ACTIONS(8571), + [aux_sym_close_statement_token1] = ACTIONS(8569), + [aux_sym_put_statement_token1] = ACTIONS(8569), + [aux_sym_unlock_statement_token1] = ACTIONS(8569), + [aux_sym_seek_statement_token1] = ACTIONS(8569), + [sym_reset_statement] = ACTIONS(8569), + [aux_sym_raise_event_statement_token1] = ACTIONS(8569), + [sym_stop_statement] = ACTIONS(8569), + [sym_beep_statement] = ACTIONS(8569), + [aux_sym_unload_statement_token1] = ACTIONS(8569), + [aux_sym_def_type_statement_token1] = ACTIONS(8569), + [aux_sym_def_type_statement_token2] = ACTIONS(8569), + [aux_sym_def_type_statement_token3] = ACTIONS(8569), + [aux_sym_def_type_statement_token4] = ACTIONS(8569), + [aux_sym_def_type_statement_token5] = ACTIONS(8569), + [aux_sym_def_type_statement_token6] = ACTIONS(8569), + [aux_sym_def_type_statement_token7] = ACTIONS(8569), + [aux_sym_def_type_statement_token8] = ACTIONS(8569), + [aux_sym_def_type_statement_token9] = ACTIONS(8569), + [aux_sym_def_type_statement_token10] = ACTIONS(8569), + [aux_sym_def_type_statement_token11] = ACTIONS(8569), + [aux_sym_def_type_statement_token12] = ACTIONS(8569), + [aux_sym_def_type_statement_token13] = ACTIONS(8569), + [aux_sym_def_type_statement_token14] = ACTIONS(8569), + [aux_sym_call_statement_token1] = ACTIONS(8569), + [sym__ambiguous_call_statement] = ACTIONS(8569), + [aux_sym_addressof_expression_token1] = ACTIONS(8569), + [aux_sym_type_of_expression_token1] = ACTIONS(8569), + [aux_sym_unary_expression_token1] = ACTIONS(8569), + [sym_string_literal] = ACTIONS(8571), + [sym_number_literal] = ACTIONS(8571), + [aux_sym_boolean_literal_token1] = ACTIONS(8569), + [aux_sym_boolean_literal_token2] = ACTIONS(8569), + [sym_nothing_literal] = ACTIONS(8569), + [sym_null_literal] = ACTIONS(8569), + [sym_empty_literal] = ACTIONS(8569), + [sym_date_literal] = ACTIONS(8571), + [anon_sym_POUND] = ACTIONS(8569), + }, + [STATE(3682)] = { + [aux_sym_const_declaration_repeat1] = STATE(3707), + [sym_identifier] = ACTIONS(8573), + [sym_newline] = ACTIONS(8575), + [anon_sym_COLON] = ACTIONS(8575), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8573), + [aux_sym_frm_property_statement_token1] = ACTIONS(8573), + [anon_sym_DOT] = ACTIONS(8573), + [anon_sym_BANG] = ACTIONS(8575), + [aux_sym__attribute_identifier_token1] = ACTIONS(8573), + [aux_sym_option_statement_token3] = ACTIONS(8573), + [aux_sym_type_declaration_token1] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8573), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8573), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8573), + [aux_sym_enum_declaration_token1] = ACTIONS(8573), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8573), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8573), + [aux_sym_declare_function_statement_token1] = ACTIONS(8573), + [aux_sym_preprocessor_const_token1] = ACTIONS(8573), + [aux_sym__property_get_header_token1] = ACTIONS(8573), + [aux_sym_event_declaration_token1] = ACTIONS(8573), + [sym_static_modifier] = ACTIONS(8573), + [sym__dim_keyword] = ACTIONS(8573), + [sym__redim_keyword] = ACTIONS(8573), + [aux_sym_get_accessor_token1] = ACTIONS(8573), + [aux_sym_set_accessor_token1] = ACTIONS(8573), + [anon_sym_COMMA] = ACTIONS(8178), + [aux_sym_const_declaration_token1] = ACTIONS(8573), + [anon_sym_LPAREN] = ACTIONS(8575), + [aux_sym_as_type_clause_token2] = ACTIONS(8573), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8573), + [aux_sym_visibility_token1] = ACTIONS(8573), + [aux_sym_visibility_token2] = ACTIONS(8573), + [aux_sym_elseif_fragment_token1] = ACTIONS(8573), + [aux_sym_else_fragment_token1] = ACTIONS(8573), + [aux_sym_select_statement_token1] = ACTIONS(8573), + [aux_sym__for_header_token1] = ACTIONS(8573), + [aux_sym_do_statement_token1] = ACTIONS(8573), + [aux_sym_do_condition_token1] = ACTIONS(8573), + [aux_sym_with_statement_token1] = ACTIONS(8573), + [aux_sym_exit_statement_token1] = ACTIONS(8573), + [sym_end_statement] = ACTIONS(8575), + [aux_sym_on_goto_statement_token1] = ACTIONS(8573), + [aux_sym_on_goto_statement_token2] = ACTIONS(8573), + [aux_sym_on_error_statement_token2] = ACTIONS(8573), + [sym__ambiguous_redim_statement] = ACTIONS(8575), + [aux_sym_erase_statement_token1] = ACTIONS(8573), + [aux_sym_open_statement_token1] = ACTIONS(8573), + [aux_sym_file_mode_token2] = ACTIONS(8573), + [aux_sym_file_access_token2] = ACTIONS(8573), + [aux_sym_file_lock_token2] = ACTIONS(8573), + [aux_sym_print_statement_token1] = ACTIONS(8573), + [anon_sym_PLUS] = ACTIONS(8575), + [anon_sym_DASH] = ACTIONS(8573), + [anon_sym_QMARK] = ACTIONS(8575), + [aux_sym_close_statement_token1] = ACTIONS(8573), + [aux_sym_put_statement_token1] = ACTIONS(8573), + [aux_sym_unlock_statement_token1] = ACTIONS(8573), + [aux_sym_seek_statement_token1] = ACTIONS(8573), + [sym_reset_statement] = ACTIONS(8573), + [aux_sym_raise_event_statement_token1] = ACTIONS(8573), + [sym_stop_statement] = ACTIONS(8573), + [sym_beep_statement] = ACTIONS(8573), + [aux_sym_unload_statement_token1] = ACTIONS(8573), + [aux_sym_def_type_statement_token1] = ACTIONS(8573), + [aux_sym_def_type_statement_token2] = ACTIONS(8573), + [aux_sym_def_type_statement_token3] = ACTIONS(8573), + [aux_sym_def_type_statement_token4] = ACTIONS(8573), + [aux_sym_def_type_statement_token5] = ACTIONS(8573), + [aux_sym_def_type_statement_token6] = ACTIONS(8573), + [aux_sym_def_type_statement_token7] = ACTIONS(8573), + [aux_sym_def_type_statement_token8] = ACTIONS(8573), + [aux_sym_def_type_statement_token9] = ACTIONS(8573), + [aux_sym_def_type_statement_token10] = ACTIONS(8573), + [aux_sym_def_type_statement_token11] = ACTIONS(8573), + [aux_sym_def_type_statement_token12] = ACTIONS(8573), + [aux_sym_def_type_statement_token13] = ACTIONS(8573), + [aux_sym_def_type_statement_token14] = ACTIONS(8573), + [aux_sym_call_statement_token1] = ACTIONS(8573), + [sym__ambiguous_call_statement] = ACTIONS(8573), + [aux_sym_addressof_expression_token1] = ACTIONS(8573), + [aux_sym_type_of_expression_token1] = ACTIONS(8573), + [aux_sym_unary_expression_token1] = ACTIONS(8573), + [sym_string_literal] = ACTIONS(8575), + [sym_number_literal] = ACTIONS(8575), + [aux_sym_boolean_literal_token1] = ACTIONS(8573), + [aux_sym_boolean_literal_token2] = ACTIONS(8573), + [sym_nothing_literal] = ACTIONS(8573), + [sym_null_literal] = ACTIONS(8573), + [sym_empty_literal] = ACTIONS(8573), + [sym_date_literal] = ACTIONS(8575), + [anon_sym_POUND] = ACTIONS(8573), + }, + [STATE(3683)] = { + [sym_identifier] = ACTIONS(7968), + [sym_newline] = ACTIONS(7970), + [anon_sym_COLON] = ACTIONS(7970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7968), + [aux_sym_frm_property_statement_token1] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_BANG] = ACTIONS(7970), + [aux_sym__attribute_identifier_token1] = ACTIONS(7968), + [aux_sym_option_statement_token3] = ACTIONS(7968), + [aux_sym_type_declaration_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7968), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7968), + [aux_sym_enum_declaration_token1] = ACTIONS(7968), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7968), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7968), + [aux_sym_declare_function_statement_token1] = ACTIONS(7968), + [aux_sym_preprocessor_const_token1] = ACTIONS(7968), + [aux_sym__property_get_header_token1] = ACTIONS(7968), + [aux_sym_event_declaration_token1] = ACTIONS(7968), + [sym_static_modifier] = ACTIONS(7968), + [sym__dim_keyword] = ACTIONS(7968), + [sym__redim_keyword] = ACTIONS(7968), + [aux_sym_get_accessor_token1] = ACTIONS(7968), + [aux_sym_set_accessor_token1] = ACTIONS(7968), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_const_declaration_token1] = ACTIONS(7968), + [anon_sym_LPAREN] = ACTIONS(7970), + [aux_sym_as_type_clause_token2] = ACTIONS(7968), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7968), + [aux_sym_visibility_token1] = ACTIONS(7968), + [aux_sym_visibility_token2] = ACTIONS(7968), + [aux_sym_elseif_fragment_token1] = ACTIONS(7968), + [aux_sym_else_fragment_token1] = ACTIONS(7968), + [aux_sym_select_statement_token1] = ACTIONS(7968), + [aux_sym__for_header_token1] = ACTIONS(7968), + [aux_sym_do_statement_token1] = ACTIONS(7968), + [aux_sym_do_condition_token1] = ACTIONS(7968), + [aux_sym_with_statement_token1] = ACTIONS(7968), + [aux_sym_exit_statement_token1] = ACTIONS(7968), + [sym_end_statement] = ACTIONS(7970), + [aux_sym_on_goto_statement_token1] = ACTIONS(7968), + [aux_sym_on_goto_statement_token2] = ACTIONS(7968), + [aux_sym_on_error_statement_token2] = ACTIONS(7968), + [sym__ambiguous_redim_statement] = ACTIONS(7970), + [aux_sym_erase_statement_token1] = ACTIONS(7968), + [aux_sym_open_statement_token1] = ACTIONS(7968), + [aux_sym_file_mode_token2] = ACTIONS(7968), + [aux_sym_file_access_token2] = ACTIONS(7968), + [aux_sym_file_lock_token2] = ACTIONS(7968), + [aux_sym_print_statement_token1] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7970), + [aux_sym_close_statement_token1] = ACTIONS(7968), + [aux_sym_put_statement_token1] = ACTIONS(7968), + [aux_sym_unlock_statement_token1] = ACTIONS(7968), + [aux_sym_seek_statement_token1] = ACTIONS(7968), + [sym_reset_statement] = ACTIONS(7968), + [aux_sym_raise_event_statement_token1] = ACTIONS(7968), + [sym_stop_statement] = ACTIONS(7968), + [sym_beep_statement] = ACTIONS(7968), + [aux_sym_unload_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token2] = ACTIONS(7968), + [aux_sym_def_type_statement_token3] = ACTIONS(7968), + [aux_sym_def_type_statement_token4] = ACTIONS(7968), + [aux_sym_def_type_statement_token5] = ACTIONS(7968), + [aux_sym_def_type_statement_token6] = ACTIONS(7968), + [aux_sym_def_type_statement_token7] = ACTIONS(7968), + [aux_sym_def_type_statement_token8] = ACTIONS(7968), + [aux_sym_def_type_statement_token9] = ACTIONS(7968), + [aux_sym_def_type_statement_token10] = ACTIONS(7968), + [aux_sym_def_type_statement_token11] = ACTIONS(7968), + [aux_sym_def_type_statement_token12] = ACTIONS(7968), + [aux_sym_def_type_statement_token13] = ACTIONS(7968), + [aux_sym_def_type_statement_token14] = ACTIONS(7968), + [aux_sym_call_statement_token1] = ACTIONS(7968), + [sym__ambiguous_call_statement] = ACTIONS(7968), + [aux_sym_addressof_expression_token1] = ACTIONS(7968), + [aux_sym_type_of_expression_token1] = ACTIONS(7968), + [aux_sym_unary_expression_token1] = ACTIONS(7968), + [sym_string_literal] = ACTIONS(7970), + [sym_number_literal] = ACTIONS(7970), + [aux_sym_boolean_literal_token1] = ACTIONS(7968), + [aux_sym_boolean_literal_token2] = ACTIONS(7968), + [sym_nothing_literal] = ACTIONS(7968), + [sym_null_literal] = ACTIONS(7968), + [sym_empty_literal] = ACTIONS(7968), + [sym_date_literal] = ACTIONS(7970), + [anon_sym_POUND] = ACTIONS(7968), + }, + [STATE(3684)] = { + [sym_identifier] = ACTIONS(6430), + [sym_newline] = ACTIONS(6432), + [anon_sym_COLON] = ACTIONS(6432), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6430), + [aux_sym_frm_property_statement_token1] = ACTIONS(6430), + [anon_sym_DOT] = ACTIONS(6430), + [anon_sym_BANG] = ACTIONS(6432), + [aux_sym__attribute_identifier_token1] = ACTIONS(6430), + [aux_sym_option_statement_token3] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6430), + [aux_sym_preprocessor_const_token1] = ACTIONS(6430), + [sym_static_modifier] = ACTIONS(6430), + [sym__dim_keyword] = ACTIONS(6430), + [sym__redim_keyword] = ACTIONS(6430), + [aux_sym_get_accessor_token1] = ACTIONS(6430), + [aux_sym_set_accessor_token1] = ACTIONS(6430), + [aux_sym_const_declaration_token1] = ACTIONS(6430), + [anon_sym_LPAREN] = ACTIONS(6432), + [aux_sym_as_type_clause_token2] = ACTIONS(6430), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6430), + [aux_sym_visibility_token1] = ACTIONS(6430), + [aux_sym_visibility_token2] = ACTIONS(6430), + [aux_sym_elseif_fragment_token1] = ACTIONS(6430), + [aux_sym_else_fragment_token1] = ACTIONS(6430), + [aux_sym_select_statement_token1] = ACTIONS(6430), + [aux_sym__for_header_token1] = ACTIONS(6430), + [aux_sym_do_statement_token1] = ACTIONS(6430), + [aux_sym_do_statement_token2] = ACTIONS(6430), + [aux_sym_do_condition_token1] = ACTIONS(6430), + [aux_sym_with_statement_token1] = ACTIONS(6430), + [aux_sym_exit_statement_token1] = ACTIONS(6430), + [sym_end_statement] = ACTIONS(6432), + [aux_sym_on_goto_statement_token1] = ACTIONS(6430), + [aux_sym_on_goto_statement_token2] = ACTIONS(6430), + [aux_sym_on_error_statement_token2] = ACTIONS(6430), + [sym__ambiguous_redim_statement] = ACTIONS(6432), + [aux_sym_erase_statement_token1] = ACTIONS(6430), + [aux_sym_open_statement_token1] = ACTIONS(6430), + [aux_sym_file_mode_token2] = ACTIONS(6430), + [aux_sym_file_access_token2] = ACTIONS(6430), + [aux_sym_file_lock_token2] = ACTIONS(6430), + [aux_sym_print_statement_token1] = ACTIONS(6430), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_QMARK] = ACTIONS(6432), + [aux_sym_close_statement_token1] = ACTIONS(6430), + [aux_sym_put_statement_token1] = ACTIONS(6430), + [aux_sym_unlock_statement_token1] = ACTIONS(6430), + [aux_sym_seek_statement_token1] = ACTIONS(6430), + [sym_reset_statement] = ACTIONS(6430), + [aux_sym_raise_event_statement_token1] = ACTIONS(6430), + [sym_stop_statement] = ACTIONS(6430), + [sym_beep_statement] = ACTIONS(6430), + [aux_sym_unload_statement_token1] = ACTIONS(6430), + [aux_sym_def_type_statement_token1] = ACTIONS(6430), + [aux_sym_def_type_statement_token2] = ACTIONS(6430), + [aux_sym_def_type_statement_token3] = ACTIONS(6430), + [aux_sym_def_type_statement_token4] = ACTIONS(6430), + [aux_sym_def_type_statement_token5] = ACTIONS(6430), + [aux_sym_def_type_statement_token6] = ACTIONS(6430), + [aux_sym_def_type_statement_token7] = ACTIONS(6430), + [aux_sym_def_type_statement_token8] = ACTIONS(6430), + [aux_sym_def_type_statement_token9] = ACTIONS(6430), + [aux_sym_def_type_statement_token10] = ACTIONS(6430), + [aux_sym_def_type_statement_token11] = ACTIONS(6430), + [aux_sym_def_type_statement_token12] = ACTIONS(6430), + [aux_sym_def_type_statement_token13] = ACTIONS(6430), + [aux_sym_def_type_statement_token14] = ACTIONS(6430), + [aux_sym_call_statement_token1] = ACTIONS(6430), + [sym__ambiguous_call_statement] = ACTIONS(6430), + [aux_sym_addressof_expression_token1] = ACTIONS(6430), + [aux_sym_type_of_expression_token1] = ACTIONS(6430), + [aux_sym_unary_expression_token1] = ACTIONS(6430), + [sym_string_literal] = ACTIONS(6432), + [sym_number_literal] = ACTIONS(6432), + [aux_sym_boolean_literal_token1] = ACTIONS(6430), + [aux_sym_boolean_literal_token2] = ACTIONS(6430), + [sym_nothing_literal] = ACTIONS(6430), + [sym_null_literal] = ACTIONS(6430), + [sym_empty_literal] = ACTIONS(6430), + [sym_date_literal] = ACTIONS(6432), + [anon_sym_POUND] = ACTIONS(6430), + }, + [STATE(3685)] = { + [aux_sym_def_type_statement_repeat1] = STATE(3704), + [sym_identifier] = ACTIONS(8577), + [sym_newline] = ACTIONS(8579), + [anon_sym_COLON] = ACTIONS(8579), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8577), + [aux_sym_frm_property_statement_token1] = ACTIONS(8577), + [anon_sym_DOT] = ACTIONS(8577), + [anon_sym_BANG] = ACTIONS(8579), + [aux_sym__attribute_identifier_token1] = ACTIONS(8577), + [aux_sym_option_statement_token3] = ACTIONS(8577), + [aux_sym_type_declaration_token1] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8577), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8577), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8577), + [aux_sym_enum_declaration_token1] = ACTIONS(8577), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8577), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8577), + [aux_sym_declare_function_statement_token1] = ACTIONS(8577), + [aux_sym_preprocessor_const_token1] = ACTIONS(8577), + [aux_sym__property_get_header_token1] = ACTIONS(8577), + [aux_sym_event_declaration_token1] = ACTIONS(8577), + [sym_static_modifier] = ACTIONS(8577), + [sym__dim_keyword] = ACTIONS(8577), + [sym__redim_keyword] = ACTIONS(8577), + [aux_sym_get_accessor_token1] = ACTIONS(8577), + [aux_sym_set_accessor_token1] = ACTIONS(8577), + [anon_sym_COMMA] = ACTIONS(8581), + [aux_sym_const_declaration_token1] = ACTIONS(8577), + [anon_sym_LPAREN] = ACTIONS(8579), + [aux_sym_as_type_clause_token2] = ACTIONS(8577), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8577), + [aux_sym_visibility_token1] = ACTIONS(8577), + [aux_sym_visibility_token2] = ACTIONS(8577), + [aux_sym_elseif_fragment_token1] = ACTIONS(8577), + [aux_sym_else_fragment_token1] = ACTIONS(8577), + [aux_sym_select_statement_token1] = ACTIONS(8577), + [aux_sym__for_header_token1] = ACTIONS(8577), + [aux_sym_do_statement_token1] = ACTIONS(8577), + [aux_sym_do_condition_token1] = ACTIONS(8577), + [aux_sym_with_statement_token1] = ACTIONS(8577), + [aux_sym_exit_statement_token1] = ACTIONS(8577), + [sym_end_statement] = ACTIONS(8579), + [aux_sym_on_goto_statement_token1] = ACTIONS(8577), + [aux_sym_on_goto_statement_token2] = ACTIONS(8577), + [aux_sym_on_error_statement_token2] = ACTIONS(8577), + [sym__ambiguous_redim_statement] = ACTIONS(8579), + [aux_sym_erase_statement_token1] = ACTIONS(8577), + [aux_sym_open_statement_token1] = ACTIONS(8577), + [aux_sym_file_mode_token2] = ACTIONS(8577), + [aux_sym_file_access_token2] = ACTIONS(8577), + [aux_sym_file_lock_token2] = ACTIONS(8577), + [aux_sym_print_statement_token1] = ACTIONS(8577), + [anon_sym_PLUS] = ACTIONS(8579), + [anon_sym_DASH] = ACTIONS(8577), + [anon_sym_QMARK] = ACTIONS(8579), + [aux_sym_close_statement_token1] = ACTIONS(8577), + [aux_sym_put_statement_token1] = ACTIONS(8577), + [aux_sym_unlock_statement_token1] = ACTIONS(8577), + [aux_sym_seek_statement_token1] = ACTIONS(8577), + [sym_reset_statement] = ACTIONS(8577), + [aux_sym_raise_event_statement_token1] = ACTIONS(8577), + [sym_stop_statement] = ACTIONS(8577), + [sym_beep_statement] = ACTIONS(8577), + [aux_sym_unload_statement_token1] = ACTIONS(8577), + [aux_sym_def_type_statement_token1] = ACTIONS(8577), + [aux_sym_def_type_statement_token2] = ACTIONS(8577), + [aux_sym_def_type_statement_token3] = ACTIONS(8577), + [aux_sym_def_type_statement_token4] = ACTIONS(8577), + [aux_sym_def_type_statement_token5] = ACTIONS(8577), + [aux_sym_def_type_statement_token6] = ACTIONS(8577), + [aux_sym_def_type_statement_token7] = ACTIONS(8577), + [aux_sym_def_type_statement_token8] = ACTIONS(8577), + [aux_sym_def_type_statement_token9] = ACTIONS(8577), + [aux_sym_def_type_statement_token10] = ACTIONS(8577), + [aux_sym_def_type_statement_token11] = ACTIONS(8577), + [aux_sym_def_type_statement_token12] = ACTIONS(8577), + [aux_sym_def_type_statement_token13] = ACTIONS(8577), + [aux_sym_def_type_statement_token14] = ACTIONS(8577), + [aux_sym_call_statement_token1] = ACTIONS(8577), + [sym__ambiguous_call_statement] = ACTIONS(8577), + [aux_sym_addressof_expression_token1] = ACTIONS(8577), + [aux_sym_type_of_expression_token1] = ACTIONS(8577), + [aux_sym_unary_expression_token1] = ACTIONS(8577), + [sym_string_literal] = ACTIONS(8579), + [sym_number_literal] = ACTIONS(8579), + [aux_sym_boolean_literal_token1] = ACTIONS(8577), + [aux_sym_boolean_literal_token2] = ACTIONS(8577), + [sym_nothing_literal] = ACTIONS(8577), + [sym_null_literal] = ACTIONS(8577), + [sym_empty_literal] = ACTIONS(8577), + [sym_date_literal] = ACTIONS(8579), + [anon_sym_POUND] = ACTIONS(8577), + }, + [STATE(3686)] = { + [aux_sym_variable_declaration_repeat1] = STATE(3606), + [sym_identifier] = ACTIONS(8583), + [sym_newline] = ACTIONS(8585), + [anon_sym_COLON] = ACTIONS(8585), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8583), + [aux_sym_frm_property_statement_token1] = ACTIONS(8583), + [anon_sym_DOT] = ACTIONS(8583), + [anon_sym_BANG] = ACTIONS(8585), + [aux_sym__attribute_identifier_token1] = ACTIONS(8583), + [aux_sym_option_statement_token3] = ACTIONS(8583), + [aux_sym_type_declaration_token1] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8583), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8583), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8583), + [aux_sym_enum_declaration_token1] = ACTIONS(8583), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8583), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8583), + [aux_sym_declare_function_statement_token1] = ACTIONS(8583), + [aux_sym_preprocessor_const_token1] = ACTIONS(8583), + [aux_sym__property_get_header_token1] = ACTIONS(8583), + [aux_sym_event_declaration_token1] = ACTIONS(8583), + [sym_static_modifier] = ACTIONS(8583), + [sym__dim_keyword] = ACTIONS(8583), + [sym__redim_keyword] = ACTIONS(8583), + [aux_sym_get_accessor_token1] = ACTIONS(8583), + [aux_sym_set_accessor_token1] = ACTIONS(8583), + [anon_sym_COMMA] = ACTIONS(8099), + [aux_sym_const_declaration_token1] = ACTIONS(8583), + [anon_sym_LPAREN] = ACTIONS(8585), + [aux_sym_as_type_clause_token2] = ACTIONS(8583), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8583), + [aux_sym_visibility_token1] = ACTIONS(8583), + [aux_sym_visibility_token2] = ACTIONS(8583), + [aux_sym_elseif_fragment_token1] = ACTIONS(8583), + [aux_sym_else_fragment_token1] = ACTIONS(8583), + [aux_sym_select_statement_token1] = ACTIONS(8583), + [aux_sym__for_header_token1] = ACTIONS(8583), + [aux_sym_do_statement_token1] = ACTIONS(8583), + [aux_sym_do_condition_token1] = ACTIONS(8583), + [aux_sym_with_statement_token1] = ACTIONS(8583), + [aux_sym_exit_statement_token1] = ACTIONS(8583), + [sym_end_statement] = ACTIONS(8585), + [aux_sym_on_goto_statement_token1] = ACTIONS(8583), + [aux_sym_on_goto_statement_token2] = ACTIONS(8583), + [aux_sym_on_error_statement_token2] = ACTIONS(8583), + [sym__ambiguous_redim_statement] = ACTIONS(8585), + [aux_sym_erase_statement_token1] = ACTIONS(8583), + [aux_sym_open_statement_token1] = ACTIONS(8583), + [aux_sym_file_mode_token2] = ACTIONS(8583), + [aux_sym_file_access_token2] = ACTIONS(8583), + [aux_sym_file_lock_token2] = ACTIONS(8583), + [aux_sym_print_statement_token1] = ACTIONS(8583), + [anon_sym_PLUS] = ACTIONS(8585), + [anon_sym_DASH] = ACTIONS(8583), + [anon_sym_QMARK] = ACTIONS(8585), + [aux_sym_close_statement_token1] = ACTIONS(8583), + [aux_sym_put_statement_token1] = ACTIONS(8583), + [aux_sym_unlock_statement_token1] = ACTIONS(8583), + [aux_sym_seek_statement_token1] = ACTIONS(8583), + [sym_reset_statement] = ACTIONS(8583), + [aux_sym_raise_event_statement_token1] = ACTIONS(8583), + [sym_stop_statement] = ACTIONS(8583), + [sym_beep_statement] = ACTIONS(8583), + [aux_sym_unload_statement_token1] = ACTIONS(8583), + [aux_sym_def_type_statement_token1] = ACTIONS(8583), + [aux_sym_def_type_statement_token2] = ACTIONS(8583), + [aux_sym_def_type_statement_token3] = ACTIONS(8583), + [aux_sym_def_type_statement_token4] = ACTIONS(8583), + [aux_sym_def_type_statement_token5] = ACTIONS(8583), + [aux_sym_def_type_statement_token6] = ACTIONS(8583), + [aux_sym_def_type_statement_token7] = ACTIONS(8583), + [aux_sym_def_type_statement_token8] = ACTIONS(8583), + [aux_sym_def_type_statement_token9] = ACTIONS(8583), + [aux_sym_def_type_statement_token10] = ACTIONS(8583), + [aux_sym_def_type_statement_token11] = ACTIONS(8583), + [aux_sym_def_type_statement_token12] = ACTIONS(8583), + [aux_sym_def_type_statement_token13] = ACTIONS(8583), + [aux_sym_def_type_statement_token14] = ACTIONS(8583), + [aux_sym_call_statement_token1] = ACTIONS(8583), + [sym__ambiguous_call_statement] = ACTIONS(8583), + [aux_sym_addressof_expression_token1] = ACTIONS(8583), + [aux_sym_type_of_expression_token1] = ACTIONS(8583), + [aux_sym_unary_expression_token1] = ACTIONS(8583), + [sym_string_literal] = ACTIONS(8585), + [sym_number_literal] = ACTIONS(8585), + [aux_sym_boolean_literal_token1] = ACTIONS(8583), + [aux_sym_boolean_literal_token2] = ACTIONS(8583), + [sym_nothing_literal] = ACTIONS(8583), + [sym_null_literal] = ACTIONS(8583), + [sym_empty_literal] = ACTIONS(8583), + [sym_date_literal] = ACTIONS(8585), + [anon_sym_POUND] = ACTIONS(8583), + }, + [STATE(3687)] = { + [sym_identifier] = ACTIONS(6320), + [sym_newline] = ACTIONS(6322), + [anon_sym_COLON] = ACTIONS(6322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6320), + [aux_sym_frm_property_statement_token1] = ACTIONS(6320), + [anon_sym_DOT] = ACTIONS(6320), + [anon_sym_BANG] = ACTIONS(6322), + [aux_sym__attribute_identifier_token1] = ACTIONS(6320), + [aux_sym_option_statement_token3] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6320), + [aux_sym_preprocessor_const_token1] = ACTIONS(6320), + [sym_static_modifier] = ACTIONS(6320), + [sym__dim_keyword] = ACTIONS(6320), + [sym__redim_keyword] = ACTIONS(6320), + [aux_sym_get_accessor_token1] = ACTIONS(6320), + [aux_sym_set_accessor_token1] = ACTIONS(6320), + [aux_sym_const_declaration_token1] = ACTIONS(6320), + [anon_sym_LPAREN] = ACTIONS(6322), + [aux_sym_as_type_clause_token2] = ACTIONS(6320), + [anon_sym_STAR] = ACTIONS(7144), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6320), + [aux_sym_visibility_token1] = ACTIONS(6320), + [aux_sym_visibility_token2] = ACTIONS(6320), + [aux_sym_elseif_fragment_token1] = ACTIONS(6320), + [aux_sym_else_fragment_token1] = ACTIONS(6320), + [aux_sym_select_statement_token1] = ACTIONS(6320), + [aux_sym__for_header_token1] = ACTIONS(6320), + [aux_sym_do_statement_token1] = ACTIONS(6320), + [aux_sym_do_condition_token1] = ACTIONS(6320), + [aux_sym_with_statement_token1] = ACTIONS(6320), + [aux_sym_exit_statement_token1] = ACTIONS(6320), + [sym_end_statement] = ACTIONS(6322), + [aux_sym_on_goto_statement_token1] = ACTIONS(6320), + [aux_sym_on_goto_statement_token2] = ACTIONS(6320), + [aux_sym_on_error_statement_token2] = ACTIONS(6320), + [sym__ambiguous_redim_statement] = ACTIONS(6322), + [aux_sym_erase_statement_token1] = ACTIONS(6320), + [aux_sym_open_statement_token1] = ACTIONS(6320), + [aux_sym_file_mode_token2] = ACTIONS(6320), + [aux_sym_file_access_token2] = ACTIONS(6320), + [aux_sym_file_lock_token2] = ACTIONS(6320), + [aux_sym_print_statement_token1] = ACTIONS(6320), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_BSLASH] = ACTIONS(7148), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7150), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_DASH] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7156), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7158), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7160), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7162), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7164), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7166), + [anon_sym_QMARK] = ACTIONS(6322), + [aux_sym_close_statement_token1] = ACTIONS(6320), + [aux_sym_put_statement_token1] = ACTIONS(6320), + [aux_sym_unlock_statement_token1] = ACTIONS(6320), + [aux_sym_seek_statement_token1] = ACTIONS(6320), + [sym_reset_statement] = ACTIONS(6320), + [aux_sym_raise_event_statement_token1] = ACTIONS(6320), + [sym_stop_statement] = ACTIONS(6320), + [sym_beep_statement] = ACTIONS(6320), + [aux_sym_unload_statement_token1] = ACTIONS(6320), + [aux_sym_def_type_statement_token1] = ACTIONS(6320), + [aux_sym_def_type_statement_token2] = ACTIONS(6320), + [aux_sym_def_type_statement_token3] = ACTIONS(6320), + [aux_sym_def_type_statement_token4] = ACTIONS(6320), + [aux_sym_def_type_statement_token5] = ACTIONS(6320), + [aux_sym_def_type_statement_token6] = ACTIONS(6320), + [aux_sym_def_type_statement_token7] = ACTIONS(6320), + [aux_sym_def_type_statement_token8] = ACTIONS(6320), + [aux_sym_def_type_statement_token9] = ACTIONS(6320), + [aux_sym_def_type_statement_token10] = ACTIONS(6320), + [aux_sym_def_type_statement_token11] = ACTIONS(6320), + [aux_sym_def_type_statement_token12] = ACTIONS(6320), + [aux_sym_def_type_statement_token13] = ACTIONS(6320), + [aux_sym_def_type_statement_token14] = ACTIONS(6320), + [aux_sym_call_statement_token1] = ACTIONS(6320), + [sym__ambiguous_call_statement] = ACTIONS(6320), + [aux_sym_addressof_expression_token1] = ACTIONS(6320), + [aux_sym_type_of_expression_token1] = ACTIONS(6320), + [aux_sym_unary_expression_token1] = ACTIONS(6320), + [sym_string_literal] = ACTIONS(6322), + [sym_number_literal] = ACTIONS(6322), + [aux_sym_boolean_literal_token1] = ACTIONS(6320), + [aux_sym_boolean_literal_token2] = ACTIONS(6320), + [sym_nothing_literal] = ACTIONS(6320), + [sym_null_literal] = ACTIONS(6320), + [sym_empty_literal] = ACTIONS(6320), + [sym_date_literal] = ACTIONS(6322), + [anon_sym_POUND] = ACTIONS(6320), + }, + [STATE(3688)] = { + [sym_identifier] = ACTIONS(6434), + [sym_newline] = ACTIONS(6436), + [anon_sym_COLON] = ACTIONS(6436), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6434), + [aux_sym_frm_property_statement_token1] = ACTIONS(6434), + [anon_sym_DOT] = ACTIONS(6434), + [anon_sym_BANG] = ACTIONS(6436), + [aux_sym__attribute_identifier_token1] = ACTIONS(6434), + [aux_sym_option_statement_token3] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6434), + [aux_sym_preprocessor_const_token1] = ACTIONS(6434), + [sym_static_modifier] = ACTIONS(6434), + [sym__dim_keyword] = ACTIONS(6434), + [sym__redim_keyword] = ACTIONS(6434), + [aux_sym_get_accessor_token1] = ACTIONS(6434), + [aux_sym_set_accessor_token1] = ACTIONS(6434), + [aux_sym_const_declaration_token1] = ACTIONS(6434), + [anon_sym_LPAREN] = ACTIONS(6436), + [aux_sym_as_type_clause_token2] = ACTIONS(6434), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6434), + [aux_sym_visibility_token1] = ACTIONS(6434), + [aux_sym_visibility_token2] = ACTIONS(6434), + [aux_sym_elseif_fragment_token1] = ACTIONS(6434), + [aux_sym_else_fragment_token1] = ACTIONS(6434), + [aux_sym_select_statement_token1] = ACTIONS(6434), + [aux_sym__for_header_token1] = ACTIONS(6434), + [aux_sym_do_statement_token1] = ACTIONS(6434), + [aux_sym_do_statement_token2] = ACTIONS(6434), + [aux_sym_do_condition_token1] = ACTIONS(6434), + [aux_sym_with_statement_token1] = ACTIONS(6434), + [aux_sym_exit_statement_token1] = ACTIONS(6434), + [sym_end_statement] = ACTIONS(6436), + [aux_sym_on_goto_statement_token1] = ACTIONS(6434), + [aux_sym_on_goto_statement_token2] = ACTIONS(6434), + [aux_sym_on_error_statement_token2] = ACTIONS(6434), + [sym__ambiguous_redim_statement] = ACTIONS(6436), + [aux_sym_erase_statement_token1] = ACTIONS(6434), + [aux_sym_open_statement_token1] = ACTIONS(6434), + [aux_sym_file_mode_token2] = ACTIONS(6434), + [aux_sym_file_access_token2] = ACTIONS(6434), + [aux_sym_file_lock_token2] = ACTIONS(6434), + [aux_sym_print_statement_token1] = ACTIONS(6434), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_QMARK] = ACTIONS(6436), + [aux_sym_close_statement_token1] = ACTIONS(6434), + [aux_sym_put_statement_token1] = ACTIONS(6434), + [aux_sym_unlock_statement_token1] = ACTIONS(6434), + [aux_sym_seek_statement_token1] = ACTIONS(6434), + [sym_reset_statement] = ACTIONS(6434), + [aux_sym_raise_event_statement_token1] = ACTIONS(6434), + [sym_stop_statement] = ACTIONS(6434), + [sym_beep_statement] = ACTIONS(6434), + [aux_sym_unload_statement_token1] = ACTIONS(6434), + [aux_sym_def_type_statement_token1] = ACTIONS(6434), + [aux_sym_def_type_statement_token2] = ACTIONS(6434), + [aux_sym_def_type_statement_token3] = ACTIONS(6434), + [aux_sym_def_type_statement_token4] = ACTIONS(6434), + [aux_sym_def_type_statement_token5] = ACTIONS(6434), + [aux_sym_def_type_statement_token6] = ACTIONS(6434), + [aux_sym_def_type_statement_token7] = ACTIONS(6434), + [aux_sym_def_type_statement_token8] = ACTIONS(6434), + [aux_sym_def_type_statement_token9] = ACTIONS(6434), + [aux_sym_def_type_statement_token10] = ACTIONS(6434), + [aux_sym_def_type_statement_token11] = ACTIONS(6434), + [aux_sym_def_type_statement_token12] = ACTIONS(6434), + [aux_sym_def_type_statement_token13] = ACTIONS(6434), + [aux_sym_def_type_statement_token14] = ACTIONS(6434), + [aux_sym_call_statement_token1] = ACTIONS(6434), + [sym__ambiguous_call_statement] = ACTIONS(6434), + [aux_sym_addressof_expression_token1] = ACTIONS(6434), + [aux_sym_type_of_expression_token1] = ACTIONS(6434), + [aux_sym_unary_expression_token1] = ACTIONS(6434), + [sym_string_literal] = ACTIONS(6436), + [sym_number_literal] = ACTIONS(6436), + [aux_sym_boolean_literal_token1] = ACTIONS(6434), + [aux_sym_boolean_literal_token2] = ACTIONS(6434), + [sym_nothing_literal] = ACTIONS(6434), + [sym_null_literal] = ACTIONS(6434), + [sym_empty_literal] = ACTIONS(6434), + [sym_date_literal] = ACTIONS(6436), + [anon_sym_POUND] = ACTIONS(6434), + }, + [STATE(3689)] = { + [sym_identifier] = ACTIONS(5869), + [sym_newline] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5869), + [aux_sym_frm_property_statement_token1] = ACTIONS(5869), + [anon_sym_DOT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [aux_sym__attribute_identifier_token1] = ACTIONS(5869), + [aux_sym_option_statement_token3] = ACTIONS(5869), + [aux_sym_type_declaration_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5869), + [aux_sym_enum_declaration_token1] = ACTIONS(5869), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5869), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5869), + [aux_sym_declare_function_statement_token1] = ACTIONS(5869), + [aux_sym_preprocessor_const_token1] = ACTIONS(5869), + [aux_sym__property_get_header_token1] = ACTIONS(5869), + [aux_sym_event_declaration_token1] = ACTIONS(5869), + [sym_static_modifier] = ACTIONS(5869), + [sym__dim_keyword] = ACTIONS(5869), + [sym__redim_keyword] = ACTIONS(5869), + [aux_sym_get_accessor_token1] = ACTIONS(5869), + [aux_sym_set_accessor_token1] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5871), + [aux_sym_const_declaration_token1] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5871), + [aux_sym_as_type_clause_token2] = ACTIONS(5869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5869), + [aux_sym_visibility_token1] = ACTIONS(5869), + [aux_sym_visibility_token2] = ACTIONS(5869), + [aux_sym_elseif_fragment_token1] = ACTIONS(5869), + [aux_sym_else_fragment_token1] = ACTIONS(5869), + [aux_sym_select_statement_token1] = ACTIONS(5869), + [aux_sym__for_header_token1] = ACTIONS(5869), + [aux_sym_do_statement_token1] = ACTIONS(5869), + [aux_sym_do_condition_token1] = ACTIONS(5869), + [aux_sym_with_statement_token1] = ACTIONS(5869), + [aux_sym_exit_statement_token1] = ACTIONS(5869), + [sym_end_statement] = ACTIONS(5871), + [aux_sym_on_goto_statement_token1] = ACTIONS(5869), + [aux_sym_on_goto_statement_token2] = ACTIONS(5869), + [aux_sym_on_error_statement_token2] = ACTIONS(5869), + [sym__ambiguous_redim_statement] = ACTIONS(5871), + [aux_sym_erase_statement_token1] = ACTIONS(5869), + [aux_sym_open_statement_token1] = ACTIONS(5869), + [aux_sym_file_mode_token2] = ACTIONS(5869), + [aux_sym_file_access_token2] = ACTIONS(5869), + [aux_sym_file_lock_token2] = ACTIONS(5869), + [aux_sym_print_statement_token1] = ACTIONS(5869), + [anon_sym_PLUS] = ACTIONS(5871), + [anon_sym_DASH] = ACTIONS(5869), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8101), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8103), + [anon_sym_SEMI] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [aux_sym_close_statement_token1] = ACTIONS(5869), + [aux_sym_put_statement_token1] = ACTIONS(5869), + [aux_sym_unlock_statement_token1] = ACTIONS(5869), + [aux_sym_seek_statement_token1] = ACTIONS(5869), + [sym_reset_statement] = ACTIONS(5869), + [aux_sym_raise_event_statement_token1] = ACTIONS(5869), + [sym_stop_statement] = ACTIONS(5869), + [sym_beep_statement] = ACTIONS(5869), + [aux_sym_unload_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token2] = ACTIONS(5869), + [aux_sym_def_type_statement_token3] = ACTIONS(5869), + [aux_sym_def_type_statement_token4] = ACTIONS(5869), + [aux_sym_def_type_statement_token5] = ACTIONS(5869), + [aux_sym_def_type_statement_token6] = ACTIONS(5869), + [aux_sym_def_type_statement_token7] = ACTIONS(5869), + [aux_sym_def_type_statement_token8] = ACTIONS(5869), + [aux_sym_def_type_statement_token9] = ACTIONS(5869), + [aux_sym_def_type_statement_token10] = ACTIONS(5869), + [aux_sym_def_type_statement_token11] = ACTIONS(5869), + [aux_sym_def_type_statement_token12] = ACTIONS(5869), + [aux_sym_def_type_statement_token13] = ACTIONS(5869), + [aux_sym_def_type_statement_token14] = ACTIONS(5869), + [aux_sym_call_statement_token1] = ACTIONS(5869), + [sym__ambiguous_call_statement] = ACTIONS(5869), + [aux_sym_addressof_expression_token1] = ACTIONS(5869), + [aux_sym_type_of_expression_token1] = ACTIONS(5869), + [aux_sym_unary_expression_token1] = ACTIONS(5869), + [sym_string_literal] = ACTIONS(5871), + [sym_number_literal] = ACTIONS(5871), + [aux_sym_boolean_literal_token1] = ACTIONS(5869), + [aux_sym_boolean_literal_token2] = ACTIONS(5869), + [sym_nothing_literal] = ACTIONS(5869), + [sym_null_literal] = ACTIONS(5869), + [sym_empty_literal] = ACTIONS(5869), + [sym_date_literal] = ACTIONS(5871), + [anon_sym_POUND] = ACTIONS(5869), + }, + [STATE(3690)] = { + [aux_sym_redim_statement_repeat1] = STATE(3623), + [sym_identifier] = ACTIONS(8561), + [sym_newline] = ACTIONS(8563), + [anon_sym_COLON] = ACTIONS(8563), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8561), + [aux_sym_frm_property_statement_token1] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8561), + [anon_sym_BANG] = ACTIONS(8563), + [aux_sym__attribute_identifier_token1] = ACTIONS(8561), + [aux_sym_option_statement_token3] = ACTIONS(8561), + [aux_sym_type_declaration_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8561), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8561), + [aux_sym_enum_declaration_token1] = ACTIONS(8561), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8561), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8561), + [aux_sym_declare_function_statement_token1] = ACTIONS(8561), + [aux_sym_preprocessor_const_token1] = ACTIONS(8561), + [aux_sym__property_get_header_token1] = ACTIONS(8561), + [aux_sym_event_declaration_token1] = ACTIONS(8561), + [sym_static_modifier] = ACTIONS(8561), + [sym__dim_keyword] = ACTIONS(8561), + [sym__redim_keyword] = ACTIONS(8561), + [aux_sym_get_accessor_token1] = ACTIONS(8561), + [aux_sym_set_accessor_token1] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(8344), + [aux_sym_const_declaration_token1] = ACTIONS(8561), + [anon_sym_LPAREN] = ACTIONS(8563), + [aux_sym_as_type_clause_token2] = ACTIONS(8561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8561), + [aux_sym_visibility_token1] = ACTIONS(8561), + [aux_sym_visibility_token2] = ACTIONS(8561), + [aux_sym_elseif_fragment_token1] = ACTIONS(8561), + [aux_sym_else_fragment_token1] = ACTIONS(8561), + [aux_sym_select_statement_token1] = ACTIONS(8561), + [aux_sym__for_header_token1] = ACTIONS(8561), + [aux_sym_do_statement_token1] = ACTIONS(8561), + [aux_sym_do_condition_token1] = ACTIONS(8561), + [aux_sym_with_statement_token1] = ACTIONS(8561), + [aux_sym_exit_statement_token1] = ACTIONS(8561), + [sym_end_statement] = ACTIONS(8563), + [aux_sym_on_goto_statement_token1] = ACTIONS(8561), + [aux_sym_on_goto_statement_token2] = ACTIONS(8561), + [aux_sym_on_error_statement_token2] = ACTIONS(8561), + [sym__ambiguous_redim_statement] = ACTIONS(8563), + [aux_sym_erase_statement_token1] = ACTIONS(8561), + [aux_sym_open_statement_token1] = ACTIONS(8561), + [aux_sym_file_mode_token2] = ACTIONS(8561), + [aux_sym_file_access_token2] = ACTIONS(8561), + [aux_sym_file_lock_token2] = ACTIONS(8561), + [aux_sym_print_statement_token1] = ACTIONS(8561), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(8561), + [anon_sym_QMARK] = ACTIONS(8563), + [aux_sym_close_statement_token1] = ACTIONS(8561), + [aux_sym_put_statement_token1] = ACTIONS(8561), + [aux_sym_unlock_statement_token1] = ACTIONS(8561), + [aux_sym_seek_statement_token1] = ACTIONS(8561), + [sym_reset_statement] = ACTIONS(8561), + [aux_sym_raise_event_statement_token1] = ACTIONS(8561), + [sym_stop_statement] = ACTIONS(8561), + [sym_beep_statement] = ACTIONS(8561), + [aux_sym_unload_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token2] = ACTIONS(8561), + [aux_sym_def_type_statement_token3] = ACTIONS(8561), + [aux_sym_def_type_statement_token4] = ACTIONS(8561), + [aux_sym_def_type_statement_token5] = ACTIONS(8561), + [aux_sym_def_type_statement_token6] = ACTIONS(8561), + [aux_sym_def_type_statement_token7] = ACTIONS(8561), + [aux_sym_def_type_statement_token8] = ACTIONS(8561), + [aux_sym_def_type_statement_token9] = ACTIONS(8561), + [aux_sym_def_type_statement_token10] = ACTIONS(8561), + [aux_sym_def_type_statement_token11] = ACTIONS(8561), + [aux_sym_def_type_statement_token12] = ACTIONS(8561), + [aux_sym_def_type_statement_token13] = ACTIONS(8561), + [aux_sym_def_type_statement_token14] = ACTIONS(8561), + [aux_sym_call_statement_token1] = ACTIONS(8561), + [sym__ambiguous_call_statement] = ACTIONS(8561), + [aux_sym_addressof_expression_token1] = ACTIONS(8561), + [aux_sym_type_of_expression_token1] = ACTIONS(8561), + [aux_sym_unary_expression_token1] = ACTIONS(8561), + [sym_string_literal] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8563), + [aux_sym_boolean_literal_token1] = ACTIONS(8561), + [aux_sym_boolean_literal_token2] = ACTIONS(8561), + [sym_nothing_literal] = ACTIONS(8561), + [sym_null_literal] = ACTIONS(8561), + [sym_empty_literal] = ACTIONS(8561), + [sym_date_literal] = ACTIONS(8563), + [anon_sym_POUND] = ACTIONS(8561), + }, + [STATE(3691)] = { + [sym_identifier] = ACTIONS(6438), + [sym_newline] = ACTIONS(6440), + [anon_sym_COLON] = ACTIONS(6440), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6438), + [aux_sym_frm_property_statement_token1] = ACTIONS(6438), + [anon_sym_DOT] = ACTIONS(6438), + [anon_sym_BANG] = ACTIONS(6440), + [aux_sym__attribute_identifier_token1] = ACTIONS(6438), + [aux_sym_option_statement_token3] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6438), + [aux_sym_preprocessor_const_token1] = ACTIONS(6438), + [sym_static_modifier] = ACTIONS(6438), + [sym__dim_keyword] = ACTIONS(6438), + [sym__redim_keyword] = ACTIONS(6438), + [aux_sym_get_accessor_token1] = ACTIONS(6438), + [aux_sym_set_accessor_token1] = ACTIONS(6438), + [aux_sym_const_declaration_token1] = ACTIONS(6438), + [anon_sym_LPAREN] = ACTIONS(6440), + [aux_sym_as_type_clause_token2] = ACTIONS(6438), + [anon_sym_STAR] = ACTIONS(7090), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6438), + [aux_sym_visibility_token1] = ACTIONS(6438), + [aux_sym_visibility_token2] = ACTIONS(6438), + [aux_sym_elseif_fragment_token1] = ACTIONS(6438), + [aux_sym_else_fragment_token1] = ACTIONS(6438), + [aux_sym_select_statement_token1] = ACTIONS(6438), + [aux_sym__for_header_token1] = ACTIONS(6438), + [aux_sym_do_statement_token1] = ACTIONS(6438), + [aux_sym_do_statement_token2] = ACTIONS(6438), + [aux_sym_do_condition_token1] = ACTIONS(6438), + [aux_sym_with_statement_token1] = ACTIONS(6438), + [aux_sym_exit_statement_token1] = ACTIONS(6438), + [sym_end_statement] = ACTIONS(6440), + [aux_sym_on_goto_statement_token1] = ACTIONS(6438), + [aux_sym_on_goto_statement_token2] = ACTIONS(6438), + [aux_sym_on_error_statement_token2] = ACTIONS(6438), + [sym__ambiguous_redim_statement] = ACTIONS(6440), + [aux_sym_erase_statement_token1] = ACTIONS(6438), + [aux_sym_open_statement_token1] = ACTIONS(6438), + [aux_sym_file_mode_token2] = ACTIONS(6438), + [aux_sym_file_access_token2] = ACTIONS(6438), + [aux_sym_file_lock_token2] = ACTIONS(6438), + [aux_sym_print_statement_token1] = ACTIONS(6438), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7090), + [anon_sym_BSLASH] = ACTIONS(7094), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7102), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7104), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7106), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7108), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7110), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7112), + [anon_sym_QMARK] = ACTIONS(6440), + [aux_sym_close_statement_token1] = ACTIONS(6438), + [aux_sym_put_statement_token1] = ACTIONS(6438), + [aux_sym_unlock_statement_token1] = ACTIONS(6438), + [aux_sym_seek_statement_token1] = ACTIONS(6438), + [sym_reset_statement] = ACTIONS(6438), + [aux_sym_raise_event_statement_token1] = ACTIONS(6438), + [sym_stop_statement] = ACTIONS(6438), + [sym_beep_statement] = ACTIONS(6438), + [aux_sym_unload_statement_token1] = ACTIONS(6438), + [aux_sym_def_type_statement_token1] = ACTIONS(6438), + [aux_sym_def_type_statement_token2] = ACTIONS(6438), + [aux_sym_def_type_statement_token3] = ACTIONS(6438), + [aux_sym_def_type_statement_token4] = ACTIONS(6438), + [aux_sym_def_type_statement_token5] = ACTIONS(6438), + [aux_sym_def_type_statement_token6] = ACTIONS(6438), + [aux_sym_def_type_statement_token7] = ACTIONS(6438), + [aux_sym_def_type_statement_token8] = ACTIONS(6438), + [aux_sym_def_type_statement_token9] = ACTIONS(6438), + [aux_sym_def_type_statement_token10] = ACTIONS(6438), + [aux_sym_def_type_statement_token11] = ACTIONS(6438), + [aux_sym_def_type_statement_token12] = ACTIONS(6438), + [aux_sym_def_type_statement_token13] = ACTIONS(6438), + [aux_sym_def_type_statement_token14] = ACTIONS(6438), + [aux_sym_call_statement_token1] = ACTIONS(6438), + [sym__ambiguous_call_statement] = ACTIONS(6438), + [aux_sym_addressof_expression_token1] = ACTIONS(6438), + [aux_sym_type_of_expression_token1] = ACTIONS(6438), + [aux_sym_unary_expression_token1] = ACTIONS(6438), + [sym_string_literal] = ACTIONS(6440), + [sym_number_literal] = ACTIONS(6440), + [aux_sym_boolean_literal_token1] = ACTIONS(6438), + [aux_sym_boolean_literal_token2] = ACTIONS(6438), + [sym_nothing_literal] = ACTIONS(6438), + [sym_null_literal] = ACTIONS(6438), + [sym_empty_literal] = ACTIONS(6438), + [sym_date_literal] = ACTIONS(6440), + [anon_sym_POUND] = ACTIONS(6438), + }, + [STATE(3692)] = { + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym__attribute_identifier_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [sym__redim_keyword] = ACTIONS(4485), + [aux_sym_get_accessor_token1] = ACTIONS(4485), + [aux_sym_set_accessor_token1] = ACTIONS(4485), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [aux_sym_as_type_clause_token2] = ACTIONS(4485), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_array_bound_token1] = ACTIONS(4485), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4485), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_elseif_fragment_token1] = ACTIONS(4485), + [aux_sym_else_fragment_token1] = ACTIONS(4485), + [aux_sym_select_statement_token1] = ACTIONS(4485), + [aux_sym__for_header_token1] = ACTIONS(4485), + [aux_sym_do_statement_token1] = ACTIONS(4485), + [aux_sym_do_condition_token1] = ACTIONS(4485), + [aux_sym_with_statement_token1] = ACTIONS(4485), + [aux_sym_exit_statement_token1] = ACTIONS(4485), + [sym_end_statement] = ACTIONS(4487), + [aux_sym_on_goto_statement_token1] = ACTIONS(4485), + [aux_sym_on_goto_statement_token2] = ACTIONS(4485), + [aux_sym_on_error_statement_token2] = ACTIONS(4485), + [sym__ambiguous_redim_statement] = ACTIONS(4487), + [aux_sym_erase_statement_token1] = ACTIONS(4485), + [aux_sym_open_statement_token1] = ACTIONS(4485), + [aux_sym_file_mode_token2] = ACTIONS(4485), + [aux_sym_file_access_token2] = ACTIONS(4485), + [aux_sym_file_lock_token2] = ACTIONS(4485), + [aux_sym_print_statement_token1] = ACTIONS(4485), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [anon_sym_QMARK] = ACTIONS(4487), + [aux_sym_close_statement_token1] = ACTIONS(4485), + [aux_sym_put_statement_token1] = ACTIONS(4485), + [aux_sym_unlock_statement_token1] = ACTIONS(4485), + [aux_sym_seek_statement_token1] = ACTIONS(4485), + [sym_reset_statement] = ACTIONS(4485), + [aux_sym_raise_event_statement_token1] = ACTIONS(4485), + [sym_stop_statement] = ACTIONS(4485), + [sym_beep_statement] = ACTIONS(4485), + [aux_sym_unload_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_call_statement_token1] = ACTIONS(4485), + [sym__ambiguous_call_statement] = ACTIONS(4485), + [aux_sym_addressof_expression_token1] = ACTIONS(4485), + [aux_sym_type_of_expression_token1] = ACTIONS(4485), + [aux_sym_unary_expression_token1] = ACTIONS(4485), + [sym_string_literal] = ACTIONS(4487), + [sym_number_literal] = ACTIONS(4487), + [aux_sym_boolean_literal_token1] = ACTIONS(4485), + [aux_sym_boolean_literal_token2] = ACTIONS(4485), + [sym_nothing_literal] = ACTIONS(4485), + [sym_null_literal] = ACTIONS(4485), + [sym_empty_literal] = ACTIONS(4485), + [sym_date_literal] = ACTIONS(4487), + [anon_sym_POUND] = ACTIONS(4485), + }, + [STATE(3693)] = { + [sym_identifier] = ACTIONS(8587), + [sym_newline] = ACTIONS(8589), + [anon_sym_COLON] = ACTIONS(8589), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8587), + [aux_sym_frm_property_statement_token1] = ACTIONS(8587), + [anon_sym_DOT] = ACTIONS(8587), + [anon_sym_BANG] = ACTIONS(8589), + [aux_sym__attribute_identifier_token1] = ACTIONS(8587), + [aux_sym_option_statement_token3] = ACTIONS(8587), + [aux_sym_type_declaration_token1] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8587), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8587), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8587), + [aux_sym_enum_declaration_token1] = ACTIONS(8587), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8587), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8587), + [aux_sym_declare_function_statement_token1] = ACTIONS(8587), + [aux_sym_preprocessor_const_token1] = ACTIONS(8587), + [aux_sym__property_get_header_token1] = ACTIONS(8587), + [aux_sym_event_declaration_token1] = ACTIONS(8587), + [sym_static_modifier] = ACTIONS(8587), + [sym__dim_keyword] = ACTIONS(8587), + [sym__redim_keyword] = ACTIONS(8587), + [aux_sym_get_accessor_token1] = ACTIONS(8587), + [aux_sym_set_accessor_token1] = ACTIONS(8587), + [anon_sym_COMMA] = ACTIONS(8589), + [aux_sym_const_declaration_token1] = ACTIONS(8587), + [anon_sym_LPAREN] = ACTIONS(8589), + [aux_sym_as_type_clause_token2] = ACTIONS(8587), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8587), + [aux_sym_visibility_token1] = ACTIONS(8587), + [aux_sym_visibility_token2] = ACTIONS(8587), + [aux_sym_elseif_fragment_token1] = ACTIONS(8587), + [aux_sym_else_fragment_token1] = ACTIONS(8587), + [aux_sym_select_statement_token1] = ACTIONS(8587), + [aux_sym__for_header_token1] = ACTIONS(8587), + [aux_sym_do_statement_token1] = ACTIONS(8587), + [aux_sym_do_condition_token1] = ACTIONS(8587), + [aux_sym_with_statement_token1] = ACTIONS(8587), + [aux_sym_exit_statement_token1] = ACTIONS(8587), + [sym_end_statement] = ACTIONS(8589), + [aux_sym_on_goto_statement_token1] = ACTIONS(8587), + [aux_sym_on_goto_statement_token2] = ACTIONS(8587), + [aux_sym_on_error_statement_token2] = ACTIONS(8587), + [sym__ambiguous_redim_statement] = ACTIONS(8589), + [aux_sym_erase_statement_token1] = ACTIONS(8587), + [aux_sym_open_statement_token1] = ACTIONS(8587), + [aux_sym_file_mode_token2] = ACTIONS(8587), + [aux_sym_file_access_token2] = ACTIONS(8587), + [aux_sym_file_lock_token2] = ACTIONS(8587), + [aux_sym_print_statement_token1] = ACTIONS(8587), + [anon_sym_PLUS] = ACTIONS(8589), + [anon_sym_DASH] = ACTIONS(8587), + [anon_sym_SEMI] = ACTIONS(8589), + [anon_sym_QMARK] = ACTIONS(8589), + [aux_sym_close_statement_token1] = ACTIONS(8587), + [aux_sym_put_statement_token1] = ACTIONS(8587), + [aux_sym_unlock_statement_token1] = ACTIONS(8587), + [aux_sym_seek_statement_token1] = ACTIONS(8587), + [sym_reset_statement] = ACTIONS(8587), + [aux_sym_raise_event_statement_token1] = ACTIONS(8587), + [sym_stop_statement] = ACTIONS(8587), + [sym_beep_statement] = ACTIONS(8587), + [aux_sym_unload_statement_token1] = ACTIONS(8587), + [aux_sym_def_type_statement_token1] = ACTIONS(8587), + [aux_sym_def_type_statement_token2] = ACTIONS(8587), + [aux_sym_def_type_statement_token3] = ACTIONS(8587), + [aux_sym_def_type_statement_token4] = ACTIONS(8587), + [aux_sym_def_type_statement_token5] = ACTIONS(8587), + [aux_sym_def_type_statement_token6] = ACTIONS(8587), + [aux_sym_def_type_statement_token7] = ACTIONS(8587), + [aux_sym_def_type_statement_token8] = ACTIONS(8587), + [aux_sym_def_type_statement_token9] = ACTIONS(8587), + [aux_sym_def_type_statement_token10] = ACTIONS(8587), + [aux_sym_def_type_statement_token11] = ACTIONS(8587), + [aux_sym_def_type_statement_token12] = ACTIONS(8587), + [aux_sym_def_type_statement_token13] = ACTIONS(8587), + [aux_sym_def_type_statement_token14] = ACTIONS(8587), + [aux_sym_call_statement_token1] = ACTIONS(8587), + [sym__ambiguous_call_statement] = ACTIONS(8587), + [aux_sym_addressof_expression_token1] = ACTIONS(8587), + [aux_sym_type_of_expression_token1] = ACTIONS(8587), + [aux_sym_unary_expression_token1] = ACTIONS(8587), + [sym_string_literal] = ACTIONS(8589), + [sym_number_literal] = ACTIONS(8589), + [aux_sym_boolean_literal_token1] = ACTIONS(8587), + [aux_sym_boolean_literal_token2] = ACTIONS(8587), + [sym_nothing_literal] = ACTIONS(8587), + [sym_null_literal] = ACTIONS(8587), + [sym_empty_literal] = ACTIONS(8587), + [sym_date_literal] = ACTIONS(8589), + [anon_sym_POUND] = ACTIONS(8587), + }, + [STATE(3694)] = { + [aux_sym_variable_declaration_repeat1] = STATE(3521), + [sym_identifier] = ACTIONS(8591), + [sym_newline] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(8593), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8591), + [aux_sym_frm_property_statement_token1] = ACTIONS(8591), + [anon_sym_DOT] = ACTIONS(8591), + [anon_sym_BANG] = ACTIONS(8593), + [aux_sym__attribute_identifier_token1] = ACTIONS(8591), + [aux_sym_option_statement_token3] = ACTIONS(8591), + [aux_sym_type_declaration_token1] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8591), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8591), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8591), + [aux_sym_enum_declaration_token1] = ACTIONS(8591), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8591), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8591), + [aux_sym_declare_function_statement_token1] = ACTIONS(8591), + [aux_sym_preprocessor_const_token1] = ACTIONS(8591), + [aux_sym__property_get_header_token1] = ACTIONS(8591), + [aux_sym_event_declaration_token1] = ACTIONS(8591), + [sym_static_modifier] = ACTIONS(8591), + [sym__dim_keyword] = ACTIONS(8591), + [sym__redim_keyword] = ACTIONS(8591), + [aux_sym_get_accessor_token1] = ACTIONS(8591), + [aux_sym_set_accessor_token1] = ACTIONS(8591), + [anon_sym_COMMA] = ACTIONS(8099), + [aux_sym_const_declaration_token1] = ACTIONS(8591), + [anon_sym_LPAREN] = ACTIONS(8593), + [aux_sym_as_type_clause_token2] = ACTIONS(8591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8591), + [aux_sym_visibility_token1] = ACTIONS(8591), + [aux_sym_visibility_token2] = ACTIONS(8591), + [aux_sym_elseif_fragment_token1] = ACTIONS(8591), + [aux_sym_else_fragment_token1] = ACTIONS(8591), + [aux_sym_select_statement_token1] = ACTIONS(8591), + [aux_sym__for_header_token1] = ACTIONS(8591), + [aux_sym_do_statement_token1] = ACTIONS(8591), + [aux_sym_do_condition_token1] = ACTIONS(8591), + [aux_sym_with_statement_token1] = ACTIONS(8591), + [aux_sym_exit_statement_token1] = ACTIONS(8591), + [sym_end_statement] = ACTIONS(8593), + [aux_sym_on_goto_statement_token1] = ACTIONS(8591), + [aux_sym_on_goto_statement_token2] = ACTIONS(8591), + [aux_sym_on_error_statement_token2] = ACTIONS(8591), + [sym__ambiguous_redim_statement] = ACTIONS(8593), + [aux_sym_erase_statement_token1] = ACTIONS(8591), + [aux_sym_open_statement_token1] = ACTIONS(8591), + [aux_sym_file_mode_token2] = ACTIONS(8591), + [aux_sym_file_access_token2] = ACTIONS(8591), + [aux_sym_file_lock_token2] = ACTIONS(8591), + [aux_sym_print_statement_token1] = ACTIONS(8591), + [anon_sym_PLUS] = ACTIONS(8593), + [anon_sym_DASH] = ACTIONS(8591), + [anon_sym_QMARK] = ACTIONS(8593), + [aux_sym_close_statement_token1] = ACTIONS(8591), + [aux_sym_put_statement_token1] = ACTIONS(8591), + [aux_sym_unlock_statement_token1] = ACTIONS(8591), + [aux_sym_seek_statement_token1] = ACTIONS(8591), + [sym_reset_statement] = ACTIONS(8591), + [aux_sym_raise_event_statement_token1] = ACTIONS(8591), + [sym_stop_statement] = ACTIONS(8591), + [sym_beep_statement] = ACTIONS(8591), + [aux_sym_unload_statement_token1] = ACTIONS(8591), + [aux_sym_def_type_statement_token1] = ACTIONS(8591), + [aux_sym_def_type_statement_token2] = ACTIONS(8591), + [aux_sym_def_type_statement_token3] = ACTIONS(8591), + [aux_sym_def_type_statement_token4] = ACTIONS(8591), + [aux_sym_def_type_statement_token5] = ACTIONS(8591), + [aux_sym_def_type_statement_token6] = ACTIONS(8591), + [aux_sym_def_type_statement_token7] = ACTIONS(8591), + [aux_sym_def_type_statement_token8] = ACTIONS(8591), + [aux_sym_def_type_statement_token9] = ACTIONS(8591), + [aux_sym_def_type_statement_token10] = ACTIONS(8591), + [aux_sym_def_type_statement_token11] = ACTIONS(8591), + [aux_sym_def_type_statement_token12] = ACTIONS(8591), + [aux_sym_def_type_statement_token13] = ACTIONS(8591), + [aux_sym_def_type_statement_token14] = ACTIONS(8591), + [aux_sym_call_statement_token1] = ACTIONS(8591), + [sym__ambiguous_call_statement] = ACTIONS(8591), + [aux_sym_addressof_expression_token1] = ACTIONS(8591), + [aux_sym_type_of_expression_token1] = ACTIONS(8591), + [aux_sym_unary_expression_token1] = ACTIONS(8591), + [sym_string_literal] = ACTIONS(8593), + [sym_number_literal] = ACTIONS(8593), + [aux_sym_boolean_literal_token1] = ACTIONS(8591), + [aux_sym_boolean_literal_token2] = ACTIONS(8591), + [sym_nothing_literal] = ACTIONS(8591), + [sym_null_literal] = ACTIONS(8591), + [sym_empty_literal] = ACTIONS(8591), + [sym_date_literal] = ACTIONS(8593), + [anon_sym_POUND] = ACTIONS(8591), + }, + [STATE(3695)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5915), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(3696)] = { + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(3420), + [sym_identifier] = ACTIONS(8549), + [sym_newline] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8549), + [aux_sym_frm_property_statement_token1] = ACTIONS(8549), + [anon_sym_DOT] = ACTIONS(8549), + [anon_sym_BANG] = ACTIONS(8551), + [aux_sym__attribute_identifier_token1] = ACTIONS(8549), + [aux_sym_option_statement_token3] = ACTIONS(8549), + [aux_sym_type_declaration_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8549), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8549), + [aux_sym_enum_declaration_token1] = ACTIONS(8549), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8549), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8549), + [aux_sym_declare_function_statement_token1] = ACTIONS(8549), + [aux_sym_preprocessor_const_token1] = ACTIONS(8549), + [aux_sym__property_get_header_token1] = ACTIONS(8549), + [aux_sym_event_declaration_token1] = ACTIONS(8549), + [sym_static_modifier] = ACTIONS(8549), + [sym__dim_keyword] = ACTIONS(8549), + [sym__redim_keyword] = ACTIONS(8549), + [aux_sym_get_accessor_token1] = ACTIONS(8549), + [aux_sym_set_accessor_token1] = ACTIONS(8549), + [aux_sym_const_declaration_token1] = ACTIONS(8549), + [anon_sym_LPAREN] = ACTIONS(8551), + [aux_sym_as_type_clause_token2] = ACTIONS(8549), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8549), + [aux_sym_visibility_token1] = ACTIONS(8549), + [aux_sym_visibility_token2] = ACTIONS(8549), + [aux_sym_elseif_fragment_token1] = ACTIONS(8549), + [aux_sym_else_fragment_token1] = ACTIONS(8549), + [aux_sym_select_statement_token1] = ACTIONS(8549), + [aux_sym__for_header_token1] = ACTIONS(8549), + [aux_sym_do_statement_token1] = ACTIONS(8549), + [aux_sym_do_condition_token1] = ACTIONS(8549), + [aux_sym_with_statement_token1] = ACTIONS(8549), + [aux_sym_exit_statement_token1] = ACTIONS(8549), + [sym_end_statement] = ACTIONS(8551), + [aux_sym_on_goto_statement_token1] = ACTIONS(8549), + [aux_sym_on_goto_statement_token2] = ACTIONS(8549), + [aux_sym_on_error_statement_token2] = ACTIONS(8549), + [sym__ambiguous_redim_statement] = ACTIONS(8551), + [aux_sym_erase_statement_token1] = ACTIONS(8549), + [aux_sym_open_statement_token1] = ACTIONS(8549), + [aux_sym_file_mode_token2] = ACTIONS(8549), + [aux_sym_file_access_token2] = ACTIONS(8549), + [aux_sym_file_lock_token2] = ACTIONS(8549), + [aux_sym_print_statement_token1] = ACTIONS(8549), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_DASH] = ACTIONS(8549), + [anon_sym_SEMI] = ACTIONS(7657), + [anon_sym_QMARK] = ACTIONS(8551), + [aux_sym_close_statement_token1] = ACTIONS(8549), + [aux_sym_put_statement_token1] = ACTIONS(8549), + [aux_sym_unlock_statement_token1] = ACTIONS(8549), + [aux_sym_seek_statement_token1] = ACTIONS(8549), + [sym_reset_statement] = ACTIONS(8549), + [aux_sym_raise_event_statement_token1] = ACTIONS(8549), + [sym_stop_statement] = ACTIONS(8549), + [sym_beep_statement] = ACTIONS(8549), + [aux_sym_unload_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token2] = ACTIONS(8549), + [aux_sym_def_type_statement_token3] = ACTIONS(8549), + [aux_sym_def_type_statement_token4] = ACTIONS(8549), + [aux_sym_def_type_statement_token5] = ACTIONS(8549), + [aux_sym_def_type_statement_token6] = ACTIONS(8549), + [aux_sym_def_type_statement_token7] = ACTIONS(8549), + [aux_sym_def_type_statement_token8] = ACTIONS(8549), + [aux_sym_def_type_statement_token9] = ACTIONS(8549), + [aux_sym_def_type_statement_token10] = ACTIONS(8549), + [aux_sym_def_type_statement_token11] = ACTIONS(8549), + [aux_sym_def_type_statement_token12] = ACTIONS(8549), + [aux_sym_def_type_statement_token13] = ACTIONS(8549), + [aux_sym_def_type_statement_token14] = ACTIONS(8549), + [aux_sym_call_statement_token1] = ACTIONS(8549), + [sym__ambiguous_call_statement] = ACTIONS(8549), + [aux_sym_addressof_expression_token1] = ACTIONS(8549), + [aux_sym_type_of_expression_token1] = ACTIONS(8549), + [aux_sym_unary_expression_token1] = ACTIONS(8549), + [sym_string_literal] = ACTIONS(8551), + [sym_number_literal] = ACTIONS(8551), + [aux_sym_boolean_literal_token1] = ACTIONS(8549), + [aux_sym_boolean_literal_token2] = ACTIONS(8549), + [sym_nothing_literal] = ACTIONS(8549), + [sym_null_literal] = ACTIONS(8549), + [sym_empty_literal] = ACTIONS(8549), + [sym_date_literal] = ACTIONS(8551), + [anon_sym_POUND] = ACTIONS(8549), + }, + [STATE(3697)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5915), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(3698)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8107), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3699)] = { + [sym_do_condition] = STATE(4017), + [sym_identifier] = ACTIONS(8595), + [sym_newline] = ACTIONS(8597), + [anon_sym_COLON] = ACTIONS(8597), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8595), + [aux_sym_frm_property_statement_token1] = ACTIONS(8595), + [anon_sym_DOT] = ACTIONS(8595), + [anon_sym_BANG] = ACTIONS(8597), + [aux_sym__attribute_identifier_token1] = ACTIONS(8595), + [aux_sym_option_statement_token3] = ACTIONS(8595), + [aux_sym_type_declaration_token1] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8595), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8595), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8595), + [aux_sym_enum_declaration_token1] = ACTIONS(8595), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8595), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8595), + [aux_sym_declare_function_statement_token1] = ACTIONS(8595), + [aux_sym_preprocessor_const_token1] = ACTIONS(8595), + [aux_sym__property_get_header_token1] = ACTIONS(8595), + [aux_sym_event_declaration_token1] = ACTIONS(8595), + [sym_static_modifier] = ACTIONS(8595), + [sym__dim_keyword] = ACTIONS(8595), + [sym__redim_keyword] = ACTIONS(8595), + [aux_sym_get_accessor_token1] = ACTIONS(8595), + [aux_sym_set_accessor_token1] = ACTIONS(8595), + [aux_sym_const_declaration_token1] = ACTIONS(8595), + [anon_sym_LPAREN] = ACTIONS(8597), + [aux_sym_as_type_clause_token2] = ACTIONS(8595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8595), + [aux_sym_visibility_token1] = ACTIONS(8595), + [aux_sym_visibility_token2] = ACTIONS(8595), + [aux_sym_elseif_fragment_token1] = ACTIONS(8595), + [aux_sym_else_fragment_token1] = ACTIONS(8595), + [aux_sym_select_statement_token1] = ACTIONS(8595), + [aux_sym__for_header_token1] = ACTIONS(8595), + [aux_sym_do_statement_token1] = ACTIONS(8595), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8595), + [aux_sym_exit_statement_token1] = ACTIONS(8595), + [sym_end_statement] = ACTIONS(8597), + [aux_sym_on_goto_statement_token1] = ACTIONS(8595), + [aux_sym_on_goto_statement_token2] = ACTIONS(8595), + [aux_sym_on_error_statement_token2] = ACTIONS(8595), + [sym__ambiguous_redim_statement] = ACTIONS(8597), + [aux_sym_erase_statement_token1] = ACTIONS(8595), + [aux_sym_open_statement_token1] = ACTIONS(8595), + [aux_sym_file_mode_token2] = ACTIONS(8595), + [aux_sym_file_access_token2] = ACTIONS(8595), + [aux_sym_file_lock_token2] = ACTIONS(8595), + [aux_sym_print_statement_token1] = ACTIONS(8595), + [anon_sym_PLUS] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(8595), + [anon_sym_QMARK] = ACTIONS(8597), + [aux_sym_close_statement_token1] = ACTIONS(8595), + [aux_sym_put_statement_token1] = ACTIONS(8595), + [aux_sym_unlock_statement_token1] = ACTIONS(8595), + [aux_sym_seek_statement_token1] = ACTIONS(8595), + [sym_reset_statement] = ACTIONS(8595), + [aux_sym_raise_event_statement_token1] = ACTIONS(8595), + [sym_stop_statement] = ACTIONS(8595), + [sym_beep_statement] = ACTIONS(8595), + [aux_sym_unload_statement_token1] = ACTIONS(8595), + [aux_sym_def_type_statement_token1] = ACTIONS(8595), + [aux_sym_def_type_statement_token2] = ACTIONS(8595), + [aux_sym_def_type_statement_token3] = ACTIONS(8595), + [aux_sym_def_type_statement_token4] = ACTIONS(8595), + [aux_sym_def_type_statement_token5] = ACTIONS(8595), + [aux_sym_def_type_statement_token6] = ACTIONS(8595), + [aux_sym_def_type_statement_token7] = ACTIONS(8595), + [aux_sym_def_type_statement_token8] = ACTIONS(8595), + [aux_sym_def_type_statement_token9] = ACTIONS(8595), + [aux_sym_def_type_statement_token10] = ACTIONS(8595), + [aux_sym_def_type_statement_token11] = ACTIONS(8595), + [aux_sym_def_type_statement_token12] = ACTIONS(8595), + [aux_sym_def_type_statement_token13] = ACTIONS(8595), + [aux_sym_def_type_statement_token14] = ACTIONS(8595), + [aux_sym_call_statement_token1] = ACTIONS(8595), + [sym__ambiguous_call_statement] = ACTIONS(8595), + [aux_sym_addressof_expression_token1] = ACTIONS(8595), + [aux_sym_type_of_expression_token1] = ACTIONS(8595), + [aux_sym_unary_expression_token1] = ACTIONS(8595), + [sym_string_literal] = ACTIONS(8597), + [sym_number_literal] = ACTIONS(8597), + [aux_sym_boolean_literal_token1] = ACTIONS(8595), + [aux_sym_boolean_literal_token2] = ACTIONS(8595), + [sym_nothing_literal] = ACTIONS(8595), + [sym_null_literal] = ACTIONS(8595), + [sym_empty_literal] = ACTIONS(8595), + [sym_date_literal] = ACTIONS(8597), + [anon_sym_POUND] = ACTIONS(8595), + }, + [STATE(3700)] = { + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym__attribute_identifier_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [sym__redim_keyword] = ACTIONS(4481), + [aux_sym_get_accessor_token1] = ACTIONS(4481), + [aux_sym_set_accessor_token1] = ACTIONS(4481), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [aux_sym_as_type_clause_token2] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_array_bound_token1] = ACTIONS(4481), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4481), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_elseif_fragment_token1] = ACTIONS(4481), + [aux_sym_else_fragment_token1] = ACTIONS(4481), + [aux_sym_select_statement_token1] = ACTIONS(4481), + [aux_sym__for_header_token1] = ACTIONS(4481), + [aux_sym_do_statement_token1] = ACTIONS(4481), + [aux_sym_do_condition_token1] = ACTIONS(4481), + [aux_sym_with_statement_token1] = ACTIONS(4481), + [aux_sym_exit_statement_token1] = ACTIONS(4481), + [sym_end_statement] = ACTIONS(4483), + [aux_sym_on_goto_statement_token1] = ACTIONS(4481), + [aux_sym_on_goto_statement_token2] = ACTIONS(4481), + [aux_sym_on_error_statement_token2] = ACTIONS(4481), + [sym__ambiguous_redim_statement] = ACTIONS(4483), + [aux_sym_erase_statement_token1] = ACTIONS(4481), + [aux_sym_open_statement_token1] = ACTIONS(4481), + [aux_sym_file_mode_token2] = ACTIONS(4481), + [aux_sym_file_access_token2] = ACTIONS(4481), + [aux_sym_file_lock_token2] = ACTIONS(4481), + [aux_sym_print_statement_token1] = ACTIONS(4481), + [anon_sym_CARET] = ACTIONS(8107), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [anon_sym_QMARK] = ACTIONS(4483), + [aux_sym_close_statement_token1] = ACTIONS(4481), + [aux_sym_put_statement_token1] = ACTIONS(4481), + [aux_sym_unlock_statement_token1] = ACTIONS(4481), + [aux_sym_seek_statement_token1] = ACTIONS(4481), + [sym_reset_statement] = ACTIONS(4481), + [aux_sym_raise_event_statement_token1] = ACTIONS(4481), + [sym_stop_statement] = ACTIONS(4481), + [sym_beep_statement] = ACTIONS(4481), + [aux_sym_unload_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_call_statement_token1] = ACTIONS(4481), + [sym__ambiguous_call_statement] = ACTIONS(4481), + [aux_sym_addressof_expression_token1] = ACTIONS(4481), + [aux_sym_type_of_expression_token1] = ACTIONS(4481), + [aux_sym_unary_expression_token1] = ACTIONS(4481), + [sym_string_literal] = ACTIONS(4483), + [sym_number_literal] = ACTIONS(4483), + [aux_sym_boolean_literal_token1] = ACTIONS(4481), + [aux_sym_boolean_literal_token2] = ACTIONS(4481), + [sym_nothing_literal] = ACTIONS(4481), + [sym_null_literal] = ACTIONS(4481), + [sym_empty_literal] = ACTIONS(4481), + [sym_date_literal] = ACTIONS(4483), + [anon_sym_POUND] = ACTIONS(4481), + }, + [STATE(3701)] = { + [sym_identifier] = ACTIONS(6621), + [sym_newline] = ACTIONS(6623), + [anon_sym_COLON] = ACTIONS(6623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6621), + [aux_sym_frm_property_statement_token1] = ACTIONS(6621), + [anon_sym_DOT] = ACTIONS(6621), + [anon_sym_BANG] = ACTIONS(6623), + [aux_sym__attribute_identifier_token1] = ACTIONS(6621), + [aux_sym_option_statement_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6621), + [aux_sym_preprocessor_const_token1] = ACTIONS(6621), + [sym_static_modifier] = ACTIONS(6621), + [sym__dim_keyword] = ACTIONS(6621), + [sym__redim_keyword] = ACTIONS(6621), + [aux_sym_get_accessor_token1] = ACTIONS(6621), + [aux_sym_set_accessor_token1] = ACTIONS(6621), + [aux_sym_const_declaration_token1] = ACTIONS(6621), + [anon_sym_LPAREN] = ACTIONS(6623), + [aux_sym_as_type_clause_token2] = ACTIONS(6621), + [anon_sym_STAR] = ACTIONS(5875), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6621), + [aux_sym_visibility_token1] = ACTIONS(6621), + [aux_sym_visibility_token2] = ACTIONS(6621), + [aux_sym_elseif_fragment_token1] = ACTIONS(6621), + [aux_sym_else_fragment_token1] = ACTIONS(6621), + [aux_sym_select_statement_token1] = ACTIONS(6621), + [aux_sym__for_header_token1] = ACTIONS(6621), + [aux_sym_do_statement_token1] = ACTIONS(6621), + [aux_sym_do_condition_token1] = ACTIONS(6621), + [aux_sym_with_statement_token1] = ACTIONS(6621), + [aux_sym_exit_statement_token1] = ACTIONS(6621), + [sym_end_statement] = ACTIONS(6623), + [aux_sym_on_goto_statement_token1] = ACTIONS(6621), + [aux_sym_on_goto_statement_token2] = ACTIONS(6621), + [aux_sym_on_error_statement_token2] = ACTIONS(6621), + [sym__ambiguous_redim_statement] = ACTIONS(6623), + [aux_sym_erase_statement_token1] = ACTIONS(6621), + [aux_sym_open_statement_token1] = ACTIONS(6621), + [aux_sym_file_mode_token2] = ACTIONS(6621), + [aux_sym_file_access_token2] = ACTIONS(6621), + [aux_sym_file_lock_token2] = ACTIONS(6621), + [aux_sym_print_statement_token1] = ACTIONS(6621), + [anon_sym_CARET] = ACTIONS(5873), + [anon_sym_SLASH] = ACTIONS(5875), + [anon_sym_BSLASH] = ACTIONS(5877), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(5879), + [anon_sym_PLUS] = ACTIONS(5881), + [anon_sym_DASH] = ACTIONS(5883), + [anon_sym_AMP] = ACTIONS(5885), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5887), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5889), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(5891), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(5893), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6190), + [anon_sym_QMARK] = ACTIONS(6623), + [aux_sym_close_statement_token1] = ACTIONS(6621), + [aux_sym_put_statement_token1] = ACTIONS(6621), + [aux_sym_unlock_statement_token1] = ACTIONS(6621), + [aux_sym_seek_statement_token1] = ACTIONS(6621), + [sym_reset_statement] = ACTIONS(6621), + [aux_sym_raise_event_statement_token1] = ACTIONS(6621), + [sym_stop_statement] = ACTIONS(6621), + [sym_beep_statement] = ACTIONS(6621), + [aux_sym_unload_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token2] = ACTIONS(6621), + [aux_sym_def_type_statement_token3] = ACTIONS(6621), + [aux_sym_def_type_statement_token4] = ACTIONS(6621), + [aux_sym_def_type_statement_token5] = ACTIONS(6621), + [aux_sym_def_type_statement_token6] = ACTIONS(6621), + [aux_sym_def_type_statement_token7] = ACTIONS(6621), + [aux_sym_def_type_statement_token8] = ACTIONS(6621), + [aux_sym_def_type_statement_token9] = ACTIONS(6621), + [aux_sym_def_type_statement_token10] = ACTIONS(6621), + [aux_sym_def_type_statement_token11] = ACTIONS(6621), + [aux_sym_def_type_statement_token12] = ACTIONS(6621), + [aux_sym_def_type_statement_token13] = ACTIONS(6621), + [aux_sym_def_type_statement_token14] = ACTIONS(6621), + [aux_sym_call_statement_token1] = ACTIONS(6621), + [sym__ambiguous_call_statement] = ACTIONS(6621), + [aux_sym_addressof_expression_token1] = ACTIONS(6621), + [aux_sym_type_of_expression_token1] = ACTIONS(6621), + [aux_sym_unary_expression_token1] = ACTIONS(6621), + [sym_string_literal] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [aux_sym_boolean_literal_token1] = ACTIONS(6621), + [aux_sym_boolean_literal_token2] = ACTIONS(6621), + [sym_nothing_literal] = ACTIONS(6621), + [sym_null_literal] = ACTIONS(6621), + [sym_empty_literal] = ACTIONS(6621), + [sym_date_literal] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6621), + }, + [STATE(3702)] = { + [sym_do_condition] = STATE(4018), + [sym_identifier] = ACTIONS(8599), + [sym_newline] = ACTIONS(8601), + [anon_sym_COLON] = ACTIONS(8601), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8599), + [aux_sym_frm_property_statement_token1] = ACTIONS(8599), + [anon_sym_DOT] = ACTIONS(8599), + [anon_sym_BANG] = ACTIONS(8601), + [aux_sym__attribute_identifier_token1] = ACTIONS(8599), + [aux_sym_option_statement_token3] = ACTIONS(8599), + [aux_sym_type_declaration_token1] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8599), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8599), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8599), + [aux_sym_enum_declaration_token1] = ACTIONS(8599), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8599), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8599), + [aux_sym_declare_function_statement_token1] = ACTIONS(8599), + [aux_sym_preprocessor_const_token1] = ACTIONS(8599), + [aux_sym__property_get_header_token1] = ACTIONS(8599), + [aux_sym_event_declaration_token1] = ACTIONS(8599), + [sym_static_modifier] = ACTIONS(8599), + [sym__dim_keyword] = ACTIONS(8599), + [sym__redim_keyword] = ACTIONS(8599), + [aux_sym_get_accessor_token1] = ACTIONS(8599), + [aux_sym_set_accessor_token1] = ACTIONS(8599), + [aux_sym_const_declaration_token1] = ACTIONS(8599), + [anon_sym_LPAREN] = ACTIONS(8601), + [aux_sym_as_type_clause_token2] = ACTIONS(8599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8599), + [aux_sym_visibility_token1] = ACTIONS(8599), + [aux_sym_visibility_token2] = ACTIONS(8599), + [aux_sym_elseif_fragment_token1] = ACTIONS(8599), + [aux_sym_else_fragment_token1] = ACTIONS(8599), + [aux_sym_select_statement_token1] = ACTIONS(8599), + [aux_sym__for_header_token1] = ACTIONS(8599), + [aux_sym_do_statement_token1] = ACTIONS(8599), + [aux_sym_do_condition_token1] = ACTIONS(8144), + [aux_sym_do_condition_token2] = ACTIONS(8144), + [aux_sym_with_statement_token1] = ACTIONS(8599), + [aux_sym_exit_statement_token1] = ACTIONS(8599), + [sym_end_statement] = ACTIONS(8601), + [aux_sym_on_goto_statement_token1] = ACTIONS(8599), + [aux_sym_on_goto_statement_token2] = ACTIONS(8599), + [aux_sym_on_error_statement_token2] = ACTIONS(8599), + [sym__ambiguous_redim_statement] = ACTIONS(8601), + [aux_sym_erase_statement_token1] = ACTIONS(8599), + [aux_sym_open_statement_token1] = ACTIONS(8599), + [aux_sym_file_mode_token2] = ACTIONS(8599), + [aux_sym_file_access_token2] = ACTIONS(8599), + [aux_sym_file_lock_token2] = ACTIONS(8599), + [aux_sym_print_statement_token1] = ACTIONS(8599), + [anon_sym_PLUS] = ACTIONS(8601), + [anon_sym_DASH] = ACTIONS(8599), + [anon_sym_QMARK] = ACTIONS(8601), + [aux_sym_close_statement_token1] = ACTIONS(8599), + [aux_sym_put_statement_token1] = ACTIONS(8599), + [aux_sym_unlock_statement_token1] = ACTIONS(8599), + [aux_sym_seek_statement_token1] = ACTIONS(8599), + [sym_reset_statement] = ACTIONS(8599), + [aux_sym_raise_event_statement_token1] = ACTIONS(8599), + [sym_stop_statement] = ACTIONS(8599), + [sym_beep_statement] = ACTIONS(8599), + [aux_sym_unload_statement_token1] = ACTIONS(8599), + [aux_sym_def_type_statement_token1] = ACTIONS(8599), + [aux_sym_def_type_statement_token2] = ACTIONS(8599), + [aux_sym_def_type_statement_token3] = ACTIONS(8599), + [aux_sym_def_type_statement_token4] = ACTIONS(8599), + [aux_sym_def_type_statement_token5] = ACTIONS(8599), + [aux_sym_def_type_statement_token6] = ACTIONS(8599), + [aux_sym_def_type_statement_token7] = ACTIONS(8599), + [aux_sym_def_type_statement_token8] = ACTIONS(8599), + [aux_sym_def_type_statement_token9] = ACTIONS(8599), + [aux_sym_def_type_statement_token10] = ACTIONS(8599), + [aux_sym_def_type_statement_token11] = ACTIONS(8599), + [aux_sym_def_type_statement_token12] = ACTIONS(8599), + [aux_sym_def_type_statement_token13] = ACTIONS(8599), + [aux_sym_def_type_statement_token14] = ACTIONS(8599), + [aux_sym_call_statement_token1] = ACTIONS(8599), + [sym__ambiguous_call_statement] = ACTIONS(8599), + [aux_sym_addressof_expression_token1] = ACTIONS(8599), + [aux_sym_type_of_expression_token1] = ACTIONS(8599), + [aux_sym_unary_expression_token1] = ACTIONS(8599), + [sym_string_literal] = ACTIONS(8601), + [sym_number_literal] = ACTIONS(8601), + [aux_sym_boolean_literal_token1] = ACTIONS(8599), + [aux_sym_boolean_literal_token2] = ACTIONS(8599), + [sym_nothing_literal] = ACTIONS(8599), + [sym_null_literal] = ACTIONS(8599), + [sym_empty_literal] = ACTIONS(8599), + [sym_date_literal] = ACTIONS(8601), + [anon_sym_POUND] = ACTIONS(8599), + }, + [STATE(3703)] = { + [sym_identifier] = ACTIONS(5562), + [sym_newline] = ACTIONS(5558), + [anon_sym_COLON] = ACTIONS(5558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5562), + [aux_sym_frm_property_statement_token1] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(7962), + [anon_sym_BANG] = ACTIONS(7964), + [aux_sym__attribute_identifier_token1] = ACTIONS(5562), + [aux_sym_option_statement_token3] = ACTIONS(5562), + [aux_sym_type_declaration_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5562), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5562), + [aux_sym_enum_declaration_token1] = ACTIONS(5562), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5562), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5562), + [aux_sym_declare_function_statement_token1] = ACTIONS(5562), + [aux_sym_preprocessor_const_token1] = ACTIONS(5562), + [aux_sym__property_get_header_token1] = ACTIONS(5562), + [aux_sym_event_declaration_token1] = ACTIONS(5562), + [sym_static_modifier] = ACTIONS(5562), + [sym__dim_keyword] = ACTIONS(5562), + [sym__redim_keyword] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5562), + [aux_sym_set_accessor_token1] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5558), + [aux_sym_as_type_clause_token2] = ACTIONS(5562), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5562), + [aux_sym_visibility_token1] = ACTIONS(5562), + [aux_sym_visibility_token2] = ACTIONS(5562), + [aux_sym_elseif_fragment_token1] = ACTIONS(5562), + [aux_sym_else_fragment_token1] = ACTIONS(5562), + [aux_sym_select_statement_token1] = ACTIONS(5562), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5562), + [aux_sym__for_header_token1] = ACTIONS(5562), + [aux_sym_do_statement_token1] = ACTIONS(5562), + [aux_sym_do_condition_token1] = ACTIONS(5562), + [aux_sym_with_statement_token1] = ACTIONS(5562), + [aux_sym_exit_statement_token1] = ACTIONS(5562), + [sym_end_statement] = ACTIONS(5558), + [aux_sym_on_goto_statement_token1] = ACTIONS(5562), + [aux_sym_on_goto_statement_token2] = ACTIONS(5562), + [aux_sym_on_error_statement_token2] = ACTIONS(5562), + [sym__ambiguous_redim_statement] = ACTIONS(5558), + [aux_sym_erase_statement_token1] = ACTIONS(5562), + [aux_sym_open_statement_token1] = ACTIONS(5562), + [aux_sym_file_mode_token2] = ACTIONS(5562), + [aux_sym_file_access_token2] = ACTIONS(5562), + [aux_sym_file_lock_token2] = ACTIONS(5562), + [aux_sym_print_statement_token1] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5558), + [aux_sym_close_statement_token1] = ACTIONS(5562), + [aux_sym_put_statement_token1] = ACTIONS(5562), + [aux_sym_unlock_statement_token1] = ACTIONS(5562), + [aux_sym_seek_statement_token1] = ACTIONS(5562), + [sym_reset_statement] = ACTIONS(5562), + [aux_sym_raise_event_statement_token1] = ACTIONS(5562), + [sym_stop_statement] = ACTIONS(5562), + [sym_beep_statement] = ACTIONS(5562), + [aux_sym_unload_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token2] = ACTIONS(5562), + [aux_sym_def_type_statement_token3] = ACTIONS(5562), + [aux_sym_def_type_statement_token4] = ACTIONS(5562), + [aux_sym_def_type_statement_token5] = ACTIONS(5562), + [aux_sym_def_type_statement_token6] = ACTIONS(5562), + [aux_sym_def_type_statement_token7] = ACTIONS(5562), + [aux_sym_def_type_statement_token8] = ACTIONS(5562), + [aux_sym_def_type_statement_token9] = ACTIONS(5562), + [aux_sym_def_type_statement_token10] = ACTIONS(5562), + [aux_sym_def_type_statement_token11] = ACTIONS(5562), + [aux_sym_def_type_statement_token12] = ACTIONS(5562), + [aux_sym_def_type_statement_token13] = ACTIONS(5562), + [aux_sym_def_type_statement_token14] = ACTIONS(5562), + [aux_sym_call_statement_token1] = ACTIONS(5562), + [sym__ambiguous_call_statement] = ACTIONS(5562), + [aux_sym_addressof_expression_token1] = ACTIONS(5562), + [aux_sym_type_of_expression_token1] = ACTIONS(5562), + [aux_sym_unary_expression_token1] = ACTIONS(5562), + [sym_string_literal] = ACTIONS(5558), + [sym_number_literal] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5562), + [aux_sym_boolean_literal_token2] = ACTIONS(5562), + [sym_nothing_literal] = ACTIONS(5562), + [sym_null_literal] = ACTIONS(5562), + [sym_empty_literal] = ACTIONS(5562), + [sym_date_literal] = ACTIONS(5558), + [anon_sym_POUND] = ACTIONS(5562), + }, + [STATE(3704)] = { + [aux_sym_def_type_statement_repeat1] = STATE(3552), + [sym_identifier] = ACTIONS(8603), + [sym_newline] = ACTIONS(8605), + [anon_sym_COLON] = ACTIONS(8605), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8603), + [aux_sym_frm_property_statement_token1] = ACTIONS(8603), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_BANG] = ACTIONS(8605), + [aux_sym__attribute_identifier_token1] = ACTIONS(8603), + [aux_sym_option_statement_token3] = ACTIONS(8603), + [aux_sym_type_declaration_token1] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8603), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8603), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8603), + [aux_sym_enum_declaration_token1] = ACTIONS(8603), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8603), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8603), + [aux_sym_declare_function_statement_token1] = ACTIONS(8603), + [aux_sym_preprocessor_const_token1] = ACTIONS(8603), + [aux_sym__property_get_header_token1] = ACTIONS(8603), + [aux_sym_event_declaration_token1] = ACTIONS(8603), + [sym_static_modifier] = ACTIONS(8603), + [sym__dim_keyword] = ACTIONS(8603), + [sym__redim_keyword] = ACTIONS(8603), + [aux_sym_get_accessor_token1] = ACTIONS(8603), + [aux_sym_set_accessor_token1] = ACTIONS(8603), + [anon_sym_COMMA] = ACTIONS(8581), + [aux_sym_const_declaration_token1] = ACTIONS(8603), + [anon_sym_LPAREN] = ACTIONS(8605), + [aux_sym_as_type_clause_token2] = ACTIONS(8603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8603), + [aux_sym_visibility_token1] = ACTIONS(8603), + [aux_sym_visibility_token2] = ACTIONS(8603), + [aux_sym_elseif_fragment_token1] = ACTIONS(8603), + [aux_sym_else_fragment_token1] = ACTIONS(8603), + [aux_sym_select_statement_token1] = ACTIONS(8603), + [aux_sym__for_header_token1] = ACTIONS(8603), + [aux_sym_do_statement_token1] = ACTIONS(8603), + [aux_sym_do_condition_token1] = ACTIONS(8603), + [aux_sym_with_statement_token1] = ACTIONS(8603), + [aux_sym_exit_statement_token1] = ACTIONS(8603), + [sym_end_statement] = ACTIONS(8605), + [aux_sym_on_goto_statement_token1] = ACTIONS(8603), + [aux_sym_on_goto_statement_token2] = ACTIONS(8603), + [aux_sym_on_error_statement_token2] = ACTIONS(8603), + [sym__ambiguous_redim_statement] = ACTIONS(8605), + [aux_sym_erase_statement_token1] = ACTIONS(8603), + [aux_sym_open_statement_token1] = ACTIONS(8603), + [aux_sym_file_mode_token2] = ACTIONS(8603), + [aux_sym_file_access_token2] = ACTIONS(8603), + [aux_sym_file_lock_token2] = ACTIONS(8603), + [aux_sym_print_statement_token1] = ACTIONS(8603), + [anon_sym_PLUS] = ACTIONS(8605), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_QMARK] = ACTIONS(8605), + [aux_sym_close_statement_token1] = ACTIONS(8603), + [aux_sym_put_statement_token1] = ACTIONS(8603), + [aux_sym_unlock_statement_token1] = ACTIONS(8603), + [aux_sym_seek_statement_token1] = ACTIONS(8603), + [sym_reset_statement] = ACTIONS(8603), + [aux_sym_raise_event_statement_token1] = ACTIONS(8603), + [sym_stop_statement] = ACTIONS(8603), + [sym_beep_statement] = ACTIONS(8603), + [aux_sym_unload_statement_token1] = ACTIONS(8603), + [aux_sym_def_type_statement_token1] = ACTIONS(8603), + [aux_sym_def_type_statement_token2] = ACTIONS(8603), + [aux_sym_def_type_statement_token3] = ACTIONS(8603), + [aux_sym_def_type_statement_token4] = ACTIONS(8603), + [aux_sym_def_type_statement_token5] = ACTIONS(8603), + [aux_sym_def_type_statement_token6] = ACTIONS(8603), + [aux_sym_def_type_statement_token7] = ACTIONS(8603), + [aux_sym_def_type_statement_token8] = ACTIONS(8603), + [aux_sym_def_type_statement_token9] = ACTIONS(8603), + [aux_sym_def_type_statement_token10] = ACTIONS(8603), + [aux_sym_def_type_statement_token11] = ACTIONS(8603), + [aux_sym_def_type_statement_token12] = ACTIONS(8603), + [aux_sym_def_type_statement_token13] = ACTIONS(8603), + [aux_sym_def_type_statement_token14] = ACTIONS(8603), + [aux_sym_call_statement_token1] = ACTIONS(8603), + [sym__ambiguous_call_statement] = ACTIONS(8603), + [aux_sym_addressof_expression_token1] = ACTIONS(8603), + [aux_sym_type_of_expression_token1] = ACTIONS(8603), + [aux_sym_unary_expression_token1] = ACTIONS(8603), + [sym_string_literal] = ACTIONS(8605), + [sym_number_literal] = ACTIONS(8605), + [aux_sym_boolean_literal_token1] = ACTIONS(8603), + [aux_sym_boolean_literal_token2] = ACTIONS(8603), + [sym_nothing_literal] = ACTIONS(8603), + [sym_null_literal] = ACTIONS(8603), + [sym_empty_literal] = ACTIONS(8603), + [sym_date_literal] = ACTIONS(8605), + [anon_sym_POUND] = ACTIONS(8603), + }, + [STATE(3705)] = { + [aux_sym_erase_statement_repeat1] = STATE(3705), + [sym_identifier] = ACTIONS(8607), + [sym_newline] = ACTIONS(8609), + [anon_sym_COLON] = ACTIONS(8609), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8607), + [aux_sym_frm_property_statement_token1] = ACTIONS(8607), + [anon_sym_DOT] = ACTIONS(8607), + [anon_sym_BANG] = ACTIONS(8609), + [aux_sym__attribute_identifier_token1] = ACTIONS(8607), + [aux_sym_option_statement_token3] = ACTIONS(8607), + [aux_sym_type_declaration_token1] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8607), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8607), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8607), + [aux_sym_enum_declaration_token1] = ACTIONS(8607), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8607), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8607), + [aux_sym_declare_function_statement_token1] = ACTIONS(8607), + [aux_sym_preprocessor_const_token1] = ACTIONS(8607), + [aux_sym__property_get_header_token1] = ACTIONS(8607), + [aux_sym_event_declaration_token1] = ACTIONS(8607), + [sym_static_modifier] = ACTIONS(8607), + [sym__dim_keyword] = ACTIONS(8607), + [sym__redim_keyword] = ACTIONS(8607), + [aux_sym_get_accessor_token1] = ACTIONS(8607), + [aux_sym_set_accessor_token1] = ACTIONS(8607), + [anon_sym_COMMA] = ACTIONS(8611), + [aux_sym_const_declaration_token1] = ACTIONS(8607), + [anon_sym_LPAREN] = ACTIONS(8609), + [aux_sym_as_type_clause_token2] = ACTIONS(8607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8607), + [aux_sym_visibility_token1] = ACTIONS(8607), + [aux_sym_visibility_token2] = ACTIONS(8607), + [aux_sym_elseif_fragment_token1] = ACTIONS(8607), + [aux_sym_else_fragment_token1] = ACTIONS(8607), + [aux_sym_select_statement_token1] = ACTIONS(8607), + [aux_sym__for_header_token1] = ACTIONS(8607), + [aux_sym_do_statement_token1] = ACTIONS(8607), + [aux_sym_do_condition_token1] = ACTIONS(8607), + [aux_sym_with_statement_token1] = ACTIONS(8607), + [aux_sym_exit_statement_token1] = ACTIONS(8607), + [sym_end_statement] = ACTIONS(8609), + [aux_sym_on_goto_statement_token1] = ACTIONS(8607), + [aux_sym_on_goto_statement_token2] = ACTIONS(8607), + [aux_sym_on_error_statement_token2] = ACTIONS(8607), + [sym__ambiguous_redim_statement] = ACTIONS(8609), + [aux_sym_erase_statement_token1] = ACTIONS(8607), + [aux_sym_open_statement_token1] = ACTIONS(8607), + [aux_sym_file_mode_token2] = ACTIONS(8607), + [aux_sym_file_access_token2] = ACTIONS(8607), + [aux_sym_file_lock_token2] = ACTIONS(8607), + [aux_sym_print_statement_token1] = ACTIONS(8607), + [anon_sym_PLUS] = ACTIONS(8609), + [anon_sym_DASH] = ACTIONS(8607), + [anon_sym_QMARK] = ACTIONS(8609), + [aux_sym_close_statement_token1] = ACTIONS(8607), + [aux_sym_put_statement_token1] = ACTIONS(8607), + [aux_sym_unlock_statement_token1] = ACTIONS(8607), + [aux_sym_seek_statement_token1] = ACTIONS(8607), + [sym_reset_statement] = ACTIONS(8607), + [aux_sym_raise_event_statement_token1] = ACTIONS(8607), + [sym_stop_statement] = ACTIONS(8607), + [sym_beep_statement] = ACTIONS(8607), + [aux_sym_unload_statement_token1] = ACTIONS(8607), + [aux_sym_def_type_statement_token1] = ACTIONS(8607), + [aux_sym_def_type_statement_token2] = ACTIONS(8607), + [aux_sym_def_type_statement_token3] = ACTIONS(8607), + [aux_sym_def_type_statement_token4] = ACTIONS(8607), + [aux_sym_def_type_statement_token5] = ACTIONS(8607), + [aux_sym_def_type_statement_token6] = ACTIONS(8607), + [aux_sym_def_type_statement_token7] = ACTIONS(8607), + [aux_sym_def_type_statement_token8] = ACTIONS(8607), + [aux_sym_def_type_statement_token9] = ACTIONS(8607), + [aux_sym_def_type_statement_token10] = ACTIONS(8607), + [aux_sym_def_type_statement_token11] = ACTIONS(8607), + [aux_sym_def_type_statement_token12] = ACTIONS(8607), + [aux_sym_def_type_statement_token13] = ACTIONS(8607), + [aux_sym_def_type_statement_token14] = ACTIONS(8607), + [aux_sym_call_statement_token1] = ACTIONS(8607), + [sym__ambiguous_call_statement] = ACTIONS(8607), + [aux_sym_addressof_expression_token1] = ACTIONS(8607), + [aux_sym_type_of_expression_token1] = ACTIONS(8607), + [aux_sym_unary_expression_token1] = ACTIONS(8607), + [sym_string_literal] = ACTIONS(8609), + [sym_number_literal] = ACTIONS(8609), + [aux_sym_boolean_literal_token1] = ACTIONS(8607), + [aux_sym_boolean_literal_token2] = ACTIONS(8607), + [sym_nothing_literal] = ACTIONS(8607), + [sym_null_literal] = ACTIONS(8607), + [sym_empty_literal] = ACTIONS(8607), + [sym_date_literal] = ACTIONS(8609), + [anon_sym_POUND] = ACTIONS(8607), + }, + [STATE(3706)] = { + [sym_identifier] = ACTIONS(6304), + [sym_newline] = ACTIONS(6306), + [anon_sym_COLON] = ACTIONS(6306), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6304), + [aux_sym_frm_property_statement_token1] = ACTIONS(6304), + [anon_sym_DOT] = ACTIONS(6304), + [anon_sym_BANG] = ACTIONS(6306), + [aux_sym__attribute_identifier_token1] = ACTIONS(6304), + [aux_sym_option_statement_token3] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6304), + [aux_sym_preprocessor_const_token1] = ACTIONS(6304), + [sym_static_modifier] = ACTIONS(6304), + [sym__dim_keyword] = ACTIONS(6304), + [sym__redim_keyword] = ACTIONS(6304), + [aux_sym_get_accessor_token1] = ACTIONS(6304), + [aux_sym_set_accessor_token1] = ACTIONS(6304), + [aux_sym_const_declaration_token1] = ACTIONS(6304), + [anon_sym_LPAREN] = ACTIONS(6306), + [aux_sym_as_type_clause_token2] = ACTIONS(6304), + [anon_sym_STAR] = ACTIONS(7257), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6304), + [aux_sym_visibility_token1] = ACTIONS(6304), + [aux_sym_visibility_token2] = ACTIONS(6304), + [aux_sym_elseif_fragment_token1] = ACTIONS(6304), + [aux_sym_else_fragment_token1] = ACTIONS(6304), + [aux_sym_select_statement_token1] = ACTIONS(6304), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6304), + [aux_sym__for_header_token1] = ACTIONS(6304), + [aux_sym_do_statement_token1] = ACTIONS(6304), + [aux_sym_do_condition_token1] = ACTIONS(6304), + [aux_sym_with_statement_token1] = ACTIONS(6304), + [aux_sym_exit_statement_token1] = ACTIONS(6304), + [sym_end_statement] = ACTIONS(6306), + [aux_sym_on_goto_statement_token1] = ACTIONS(6304), + [aux_sym_on_goto_statement_token2] = ACTIONS(6304), + [aux_sym_on_error_statement_token2] = ACTIONS(6304), + [sym__ambiguous_redim_statement] = ACTIONS(6306), + [aux_sym_erase_statement_token1] = ACTIONS(6304), + [aux_sym_open_statement_token1] = ACTIONS(6304), + [aux_sym_file_mode_token2] = ACTIONS(6304), + [aux_sym_file_access_token2] = ACTIONS(6304), + [aux_sym_file_lock_token2] = ACTIONS(6304), + [aux_sym_print_statement_token1] = ACTIONS(6304), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7257), + [anon_sym_BSLASH] = ACTIONS(7261), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7267), + [anon_sym_AMP] = ACTIONS(7269), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7271), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7273), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7275), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7277), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(6306), + [aux_sym_close_statement_token1] = ACTIONS(6304), + [aux_sym_put_statement_token1] = ACTIONS(6304), + [aux_sym_unlock_statement_token1] = ACTIONS(6304), + [aux_sym_seek_statement_token1] = ACTIONS(6304), + [sym_reset_statement] = ACTIONS(6304), + [aux_sym_raise_event_statement_token1] = ACTIONS(6304), + [sym_stop_statement] = ACTIONS(6304), + [sym_beep_statement] = ACTIONS(6304), + [aux_sym_unload_statement_token1] = ACTIONS(6304), + [aux_sym_def_type_statement_token1] = ACTIONS(6304), + [aux_sym_def_type_statement_token2] = ACTIONS(6304), + [aux_sym_def_type_statement_token3] = ACTIONS(6304), + [aux_sym_def_type_statement_token4] = ACTIONS(6304), + [aux_sym_def_type_statement_token5] = ACTIONS(6304), + [aux_sym_def_type_statement_token6] = ACTIONS(6304), + [aux_sym_def_type_statement_token7] = ACTIONS(6304), + [aux_sym_def_type_statement_token8] = ACTIONS(6304), + [aux_sym_def_type_statement_token9] = ACTIONS(6304), + [aux_sym_def_type_statement_token10] = ACTIONS(6304), + [aux_sym_def_type_statement_token11] = ACTIONS(6304), + [aux_sym_def_type_statement_token12] = ACTIONS(6304), + [aux_sym_def_type_statement_token13] = ACTIONS(6304), + [aux_sym_def_type_statement_token14] = ACTIONS(6304), + [aux_sym_call_statement_token1] = ACTIONS(6304), + [sym__ambiguous_call_statement] = ACTIONS(6304), + [aux_sym_addressof_expression_token1] = ACTIONS(6304), + [aux_sym_type_of_expression_token1] = ACTIONS(6304), + [aux_sym_unary_expression_token1] = ACTIONS(6304), + [sym_string_literal] = ACTIONS(6306), + [sym_number_literal] = ACTIONS(6306), + [aux_sym_boolean_literal_token1] = ACTIONS(6304), + [aux_sym_boolean_literal_token2] = ACTIONS(6304), + [sym_nothing_literal] = ACTIONS(6304), + [sym_null_literal] = ACTIONS(6304), + [sym_empty_literal] = ACTIONS(6304), + [sym_date_literal] = ACTIONS(6306), + [anon_sym_POUND] = ACTIONS(6304), + }, + [STATE(3707)] = { + [aux_sym_const_declaration_repeat1] = STATE(3550), + [sym_identifier] = ACTIONS(8614), + [sym_newline] = ACTIONS(8616), + [anon_sym_COLON] = ACTIONS(8616), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8614), + [aux_sym_frm_property_statement_token1] = ACTIONS(8614), + [anon_sym_DOT] = ACTIONS(8614), + [anon_sym_BANG] = ACTIONS(8616), + [aux_sym__attribute_identifier_token1] = ACTIONS(8614), + [aux_sym_option_statement_token3] = ACTIONS(8614), + [aux_sym_type_declaration_token1] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8614), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8614), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8614), + [aux_sym_enum_declaration_token1] = ACTIONS(8614), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8614), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8614), + [aux_sym_declare_function_statement_token1] = ACTIONS(8614), + [aux_sym_preprocessor_const_token1] = ACTIONS(8614), + [aux_sym__property_get_header_token1] = ACTIONS(8614), + [aux_sym_event_declaration_token1] = ACTIONS(8614), + [sym_static_modifier] = ACTIONS(8614), + [sym__dim_keyword] = ACTIONS(8614), + [sym__redim_keyword] = ACTIONS(8614), + [aux_sym_get_accessor_token1] = ACTIONS(8614), + [aux_sym_set_accessor_token1] = ACTIONS(8614), + [anon_sym_COMMA] = ACTIONS(8178), + [aux_sym_const_declaration_token1] = ACTIONS(8614), + [anon_sym_LPAREN] = ACTIONS(8616), + [aux_sym_as_type_clause_token2] = ACTIONS(8614), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8614), + [aux_sym_visibility_token1] = ACTIONS(8614), + [aux_sym_visibility_token2] = ACTIONS(8614), + [aux_sym_elseif_fragment_token1] = ACTIONS(8614), + [aux_sym_else_fragment_token1] = ACTIONS(8614), + [aux_sym_select_statement_token1] = ACTIONS(8614), + [aux_sym__for_header_token1] = ACTIONS(8614), + [aux_sym_do_statement_token1] = ACTIONS(8614), + [aux_sym_do_condition_token1] = ACTIONS(8614), + [aux_sym_with_statement_token1] = ACTIONS(8614), + [aux_sym_exit_statement_token1] = ACTIONS(8614), + [sym_end_statement] = ACTIONS(8616), + [aux_sym_on_goto_statement_token1] = ACTIONS(8614), + [aux_sym_on_goto_statement_token2] = ACTIONS(8614), + [aux_sym_on_error_statement_token2] = ACTIONS(8614), + [sym__ambiguous_redim_statement] = ACTIONS(8616), + [aux_sym_erase_statement_token1] = ACTIONS(8614), + [aux_sym_open_statement_token1] = ACTIONS(8614), + [aux_sym_file_mode_token2] = ACTIONS(8614), + [aux_sym_file_access_token2] = ACTIONS(8614), + [aux_sym_file_lock_token2] = ACTIONS(8614), + [aux_sym_print_statement_token1] = ACTIONS(8614), + [anon_sym_PLUS] = ACTIONS(8616), + [anon_sym_DASH] = ACTIONS(8614), + [anon_sym_QMARK] = ACTIONS(8616), + [aux_sym_close_statement_token1] = ACTIONS(8614), + [aux_sym_put_statement_token1] = ACTIONS(8614), + [aux_sym_unlock_statement_token1] = ACTIONS(8614), + [aux_sym_seek_statement_token1] = ACTIONS(8614), + [sym_reset_statement] = ACTIONS(8614), + [aux_sym_raise_event_statement_token1] = ACTIONS(8614), + [sym_stop_statement] = ACTIONS(8614), + [sym_beep_statement] = ACTIONS(8614), + [aux_sym_unload_statement_token1] = ACTIONS(8614), + [aux_sym_def_type_statement_token1] = ACTIONS(8614), + [aux_sym_def_type_statement_token2] = ACTIONS(8614), + [aux_sym_def_type_statement_token3] = ACTIONS(8614), + [aux_sym_def_type_statement_token4] = ACTIONS(8614), + [aux_sym_def_type_statement_token5] = ACTIONS(8614), + [aux_sym_def_type_statement_token6] = ACTIONS(8614), + [aux_sym_def_type_statement_token7] = ACTIONS(8614), + [aux_sym_def_type_statement_token8] = ACTIONS(8614), + [aux_sym_def_type_statement_token9] = ACTIONS(8614), + [aux_sym_def_type_statement_token10] = ACTIONS(8614), + [aux_sym_def_type_statement_token11] = ACTIONS(8614), + [aux_sym_def_type_statement_token12] = ACTIONS(8614), + [aux_sym_def_type_statement_token13] = ACTIONS(8614), + [aux_sym_def_type_statement_token14] = ACTIONS(8614), + [aux_sym_call_statement_token1] = ACTIONS(8614), + [sym__ambiguous_call_statement] = ACTIONS(8614), + [aux_sym_addressof_expression_token1] = ACTIONS(8614), + [aux_sym_type_of_expression_token1] = ACTIONS(8614), + [aux_sym_unary_expression_token1] = ACTIONS(8614), + [sym_string_literal] = ACTIONS(8616), + [sym_number_literal] = ACTIONS(8616), + [aux_sym_boolean_literal_token1] = ACTIONS(8614), + [aux_sym_boolean_literal_token2] = ACTIONS(8614), + [sym_nothing_literal] = ACTIONS(8614), + [sym_null_literal] = ACTIONS(8614), + [sym_empty_literal] = ACTIONS(8614), + [sym_date_literal] = ACTIONS(8616), + [anon_sym_POUND] = ACTIONS(8614), + }, + [STATE(3708)] = { + [sym_parameter_list] = STATE(3878), + [sym_as_type_clause] = STATE(4330), + [sym_identifier] = ACTIONS(7555), + [sym_newline] = ACTIONS(7557), + [anon_sym_COLON] = ACTIONS(7557), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7555), + [aux_sym_frm_property_statement_token1] = ACTIONS(7555), + [anon_sym_DOT] = ACTIONS(7555), + [anon_sym_BANG] = ACTIONS(7557), + [aux_sym__attribute_identifier_token1] = ACTIONS(7555), + [aux_sym_option_statement_token3] = ACTIONS(7555), + [aux_sym_type_declaration_token1] = ACTIONS(7555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7555), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7555), + [aux_sym_enum_declaration_token1] = ACTIONS(7555), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7555), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7555), + [aux_sym_declare_sub_statement_token4] = ACTIONS(8618), + [aux_sym_declare_function_statement_token1] = ACTIONS(7555), + [aux_sym_preprocessor_const_token1] = ACTIONS(7555), + [aux_sym__property_get_header_token1] = ACTIONS(7555), + [aux_sym_event_declaration_token1] = ACTIONS(7555), + [sym_static_modifier] = ACTIONS(7555), + [sym__dim_keyword] = ACTIONS(7555), + [sym__redim_keyword] = ACTIONS(7555), + [aux_sym_get_accessor_token1] = ACTIONS(7555), + [aux_sym_set_accessor_token1] = ACTIONS(7555), + [aux_sym_const_declaration_token1] = ACTIONS(7555), + [anon_sym_LPAREN] = ACTIONS(8209), + [aux_sym_as_type_clause_token1] = ACTIONS(8211), + [aux_sym_as_type_clause_token2] = ACTIONS(7555), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7555), + [aux_sym_visibility_token1] = ACTIONS(7555), + [aux_sym_visibility_token2] = ACTIONS(7555), + [aux_sym_elseif_fragment_token1] = ACTIONS(7555), + [aux_sym_else_fragment_token1] = ACTIONS(7555), + [aux_sym_select_statement_token1] = ACTIONS(7555), + [aux_sym__for_header_token1] = ACTIONS(7555), + [aux_sym_do_statement_token1] = ACTIONS(7555), + [aux_sym_do_condition_token1] = ACTIONS(7555), + [aux_sym_with_statement_token1] = ACTIONS(7555), + [aux_sym_exit_statement_token1] = ACTIONS(7555), + [sym_end_statement] = ACTIONS(7557), + [aux_sym_on_goto_statement_token1] = ACTIONS(7555), + [aux_sym_on_goto_statement_token2] = ACTIONS(7555), + [aux_sym_on_error_statement_token2] = ACTIONS(7555), + [sym__ambiguous_redim_statement] = ACTIONS(7557), + [aux_sym_erase_statement_token1] = ACTIONS(7555), + [aux_sym_open_statement_token1] = ACTIONS(7555), + [aux_sym_file_mode_token2] = ACTIONS(7555), + [aux_sym_file_access_token2] = ACTIONS(7555), + [aux_sym_file_lock_token2] = ACTIONS(7555), + [aux_sym_print_statement_token1] = ACTIONS(7555), + [anon_sym_PLUS] = ACTIONS(7557), + [anon_sym_DASH] = ACTIONS(7555), + [anon_sym_QMARK] = ACTIONS(7557), + [aux_sym_close_statement_token1] = ACTIONS(7555), + [aux_sym_put_statement_token1] = ACTIONS(7555), + [aux_sym_unlock_statement_token1] = ACTIONS(7555), + [aux_sym_seek_statement_token1] = ACTIONS(7555), + [sym_reset_statement] = ACTIONS(7555), + [aux_sym_raise_event_statement_token1] = ACTIONS(7555), + [sym_stop_statement] = ACTIONS(7555), + [sym_beep_statement] = ACTIONS(7555), + [aux_sym_unload_statement_token1] = ACTIONS(7555), + [aux_sym_def_type_statement_token1] = ACTIONS(7555), + [aux_sym_def_type_statement_token2] = ACTIONS(7555), + [aux_sym_def_type_statement_token3] = ACTIONS(7555), + [aux_sym_def_type_statement_token4] = ACTIONS(7555), + [aux_sym_def_type_statement_token5] = ACTIONS(7555), + [aux_sym_def_type_statement_token6] = ACTIONS(7555), + [aux_sym_def_type_statement_token7] = ACTIONS(7555), + [aux_sym_def_type_statement_token8] = ACTIONS(7555), + [aux_sym_def_type_statement_token9] = ACTIONS(7555), + [aux_sym_def_type_statement_token10] = ACTIONS(7555), + [aux_sym_def_type_statement_token11] = ACTIONS(7555), + [aux_sym_def_type_statement_token12] = ACTIONS(7555), + [aux_sym_def_type_statement_token13] = ACTIONS(7555), + [aux_sym_def_type_statement_token14] = ACTIONS(7555), + [aux_sym_call_statement_token1] = ACTIONS(7555), + [sym__ambiguous_call_statement] = ACTIONS(7555), + [aux_sym_addressof_expression_token1] = ACTIONS(7555), + [aux_sym_type_of_expression_token1] = ACTIONS(7555), + [aux_sym_unary_expression_token1] = ACTIONS(7555), + [sym_string_literal] = ACTIONS(7557), + [sym_number_literal] = ACTIONS(7557), + [aux_sym_boolean_literal_token1] = ACTIONS(7555), + [aux_sym_boolean_literal_token2] = ACTIONS(7555), + [sym_nothing_literal] = ACTIONS(7555), + [sym_null_literal] = ACTIONS(7555), + [sym_empty_literal] = ACTIONS(7555), + [sym_date_literal] = ACTIONS(7557), + [anon_sym_POUND] = ACTIONS(7555), + }, + [STATE(3709)] = { + [sym_identifier] = ACTIONS(8620), + [sym_newline] = ACTIONS(8622), + [anon_sym_COLON] = ACTIONS(8622), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8620), + [aux_sym_frm_property_statement_token1] = ACTIONS(8620), + [anon_sym_EQ] = ACTIONS(8622), + [anon_sym_DOT] = ACTIONS(8620), + [anon_sym_BANG] = ACTIONS(8622), + [aux_sym__attribute_identifier_token1] = ACTIONS(8620), + [aux_sym_option_statement_token3] = ACTIONS(8620), + [aux_sym_type_declaration_token1] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8620), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8620), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8620), + [aux_sym_enum_declaration_token1] = ACTIONS(8620), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8620), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8620), + [aux_sym_declare_function_statement_token1] = ACTIONS(8620), + [aux_sym_preprocessor_const_token1] = ACTIONS(8620), + [aux_sym__property_get_header_token1] = ACTIONS(8620), + [aux_sym_event_declaration_token1] = ACTIONS(8620), + [sym_static_modifier] = ACTIONS(8620), + [sym__dim_keyword] = ACTIONS(8620), + [sym__redim_keyword] = ACTIONS(8620), + [aux_sym_get_accessor_token1] = ACTIONS(8620), + [aux_sym_set_accessor_token1] = ACTIONS(8620), + [anon_sym_COMMA] = ACTIONS(8622), + [aux_sym_const_declaration_token1] = ACTIONS(8620), + [anon_sym_LPAREN] = ACTIONS(8622), + [aux_sym_as_type_clause_token2] = ACTIONS(8620), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8620), + [aux_sym_visibility_token1] = ACTIONS(8620), + [aux_sym_visibility_token2] = ACTIONS(8620), + [aux_sym_elseif_fragment_token1] = ACTIONS(8620), + [aux_sym_else_fragment_token1] = ACTIONS(8620), + [aux_sym_select_statement_token1] = ACTIONS(8620), + [aux_sym__for_header_token1] = ACTIONS(8620), + [aux_sym_do_statement_token1] = ACTIONS(8620), + [aux_sym_do_condition_token1] = ACTIONS(8620), + [aux_sym_with_statement_token1] = ACTIONS(8620), + [aux_sym_exit_statement_token1] = ACTIONS(8620), + [sym_end_statement] = ACTIONS(8622), + [aux_sym_on_goto_statement_token1] = ACTIONS(8620), + [aux_sym_on_goto_statement_token2] = ACTIONS(8620), + [aux_sym_on_error_statement_token2] = ACTIONS(8620), + [sym__ambiguous_redim_statement] = ACTIONS(8622), + [aux_sym_erase_statement_token1] = ACTIONS(8620), + [aux_sym_open_statement_token1] = ACTIONS(8620), + [aux_sym_file_mode_token2] = ACTIONS(8620), + [aux_sym_file_access_token2] = ACTIONS(8620), + [aux_sym_file_lock_token2] = ACTIONS(8620), + [aux_sym_print_statement_token1] = ACTIONS(8620), + [anon_sym_PLUS] = ACTIONS(8622), + [anon_sym_DASH] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(8622), + [aux_sym_close_statement_token1] = ACTIONS(8620), + [aux_sym_put_statement_token1] = ACTIONS(8620), + [aux_sym_unlock_statement_token1] = ACTIONS(8620), + [aux_sym_seek_statement_token1] = ACTIONS(8620), + [sym_reset_statement] = ACTIONS(8620), + [aux_sym_raise_event_statement_token1] = ACTIONS(8620), + [sym_stop_statement] = ACTIONS(8620), + [sym_beep_statement] = ACTIONS(8620), + [aux_sym_unload_statement_token1] = ACTIONS(8620), + [aux_sym_def_type_statement_token1] = ACTIONS(8620), + [aux_sym_def_type_statement_token2] = ACTIONS(8620), + [aux_sym_def_type_statement_token3] = ACTIONS(8620), + [aux_sym_def_type_statement_token4] = ACTIONS(8620), + [aux_sym_def_type_statement_token5] = ACTIONS(8620), + [aux_sym_def_type_statement_token6] = ACTIONS(8620), + [aux_sym_def_type_statement_token7] = ACTIONS(8620), + [aux_sym_def_type_statement_token8] = ACTIONS(8620), + [aux_sym_def_type_statement_token9] = ACTIONS(8620), + [aux_sym_def_type_statement_token10] = ACTIONS(8620), + [aux_sym_def_type_statement_token11] = ACTIONS(8620), + [aux_sym_def_type_statement_token12] = ACTIONS(8620), + [aux_sym_def_type_statement_token13] = ACTIONS(8620), + [aux_sym_def_type_statement_token14] = ACTIONS(8620), + [aux_sym_call_statement_token1] = ACTIONS(8620), + [sym__ambiguous_call_statement] = ACTIONS(8620), + [aux_sym_addressof_expression_token1] = ACTIONS(8620), + [aux_sym_type_of_expression_token1] = ACTIONS(8620), + [aux_sym_unary_expression_token1] = ACTIONS(8620), + [sym_string_literal] = ACTIONS(8622), + [sym_number_literal] = ACTIONS(8622), + [aux_sym_boolean_literal_token1] = ACTIONS(8620), + [aux_sym_boolean_literal_token2] = ACTIONS(8620), + [sym_nothing_literal] = ACTIONS(8620), + [sym_null_literal] = ACTIONS(8620), + [sym_empty_literal] = ACTIONS(8620), + [sym_date_literal] = ACTIONS(8622), + [anon_sym_POUND] = ACTIONS(8620), + }, + [STATE(3710)] = { + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [anon_sym_COLON] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym__attribute_identifier_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [sym__redim_keyword] = ACTIONS(4441), + [aux_sym_get_accessor_token1] = ACTIONS(4441), + [aux_sym_set_accessor_token1] = ACTIONS(4441), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [aux_sym_as_type_clause_token2] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_array_bound_token1] = ACTIONS(4441), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4441), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_elseif_fragment_token1] = ACTIONS(4441), + [aux_sym_else_fragment_token1] = ACTIONS(4441), + [aux_sym_select_statement_token1] = ACTIONS(4441), + [aux_sym__for_header_token1] = ACTIONS(4441), + [aux_sym_do_statement_token1] = ACTIONS(4441), + [aux_sym_do_condition_token1] = ACTIONS(4441), + [aux_sym_with_statement_token1] = ACTIONS(4441), + [aux_sym_exit_statement_token1] = ACTIONS(4441), + [sym_end_statement] = ACTIONS(4443), + [aux_sym_on_goto_statement_token1] = ACTIONS(4441), + [aux_sym_on_goto_statement_token2] = ACTIONS(4441), + [aux_sym_on_error_statement_token2] = ACTIONS(4441), + [sym__ambiguous_redim_statement] = ACTIONS(4443), + [aux_sym_erase_statement_token1] = ACTIONS(4441), + [aux_sym_open_statement_token1] = ACTIONS(4441), + [aux_sym_file_mode_token2] = ACTIONS(4441), + [aux_sym_file_access_token2] = ACTIONS(4441), + [aux_sym_file_lock_token2] = ACTIONS(4441), + [aux_sym_print_statement_token1] = ACTIONS(4441), + [anon_sym_CARET] = ACTIONS(8107), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [anon_sym_QMARK] = ACTIONS(4443), + [aux_sym_close_statement_token1] = ACTIONS(4441), + [aux_sym_put_statement_token1] = ACTIONS(4441), + [aux_sym_unlock_statement_token1] = ACTIONS(4441), + [aux_sym_seek_statement_token1] = ACTIONS(4441), + [sym_reset_statement] = ACTIONS(4441), + [aux_sym_raise_event_statement_token1] = ACTIONS(4441), + [sym_stop_statement] = ACTIONS(4441), + [sym_beep_statement] = ACTIONS(4441), + [aux_sym_unload_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_call_statement_token1] = ACTIONS(4441), + [sym__ambiguous_call_statement] = ACTIONS(4441), + [aux_sym_addressof_expression_token1] = ACTIONS(4441), + [aux_sym_type_of_expression_token1] = ACTIONS(4441), + [aux_sym_unary_expression_token1] = ACTIONS(4441), + [sym_string_literal] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4443), + [aux_sym_boolean_literal_token1] = ACTIONS(4441), + [aux_sym_boolean_literal_token2] = ACTIONS(4441), + [sym_nothing_literal] = ACTIONS(4441), + [sym_null_literal] = ACTIONS(4441), + [sym_empty_literal] = ACTIONS(4441), + [sym_date_literal] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(4441), + }, + [STATE(3711)] = { + [sym_identifier] = ACTIONS(3370), + [sym_newline] = ACTIONS(3364), + [anon_sym_COLON] = ACTIONS(6646), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3370), + [aux_sym_frm_property_statement_token1] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3364), + [aux_sym__attribute_identifier_token1] = ACTIONS(3370), + [aux_sym_option_statement_token3] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3370), + [aux_sym_preprocessor_const_token1] = ACTIONS(3370), + [sym_static_modifier] = ACTIONS(3370), + [sym__dim_keyword] = ACTIONS(3370), + [sym__redim_keyword] = ACTIONS(3370), + [aux_sym_get_accessor_token1] = ACTIONS(3370), + [aux_sym_set_accessor_token1] = ACTIONS(3370), + [aux_sym_const_declaration_token1] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3364), + [aux_sym_as_type_clause_token2] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3370), + [aux_sym_visibility_token1] = ACTIONS(3370), + [aux_sym_visibility_token2] = ACTIONS(3370), + [aux_sym_elseif_fragment_token1] = ACTIONS(3370), + [aux_sym_else_fragment_token1] = ACTIONS(3370), + [aux_sym_select_statement_token1] = ACTIONS(3370), + [aux_sym_select_statement_token2] = ACTIONS(3370), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(3370), + [sym_end_statement] = ACTIONS(3364), + [aux_sym_on_goto_statement_token1] = ACTIONS(3370), + [aux_sym_on_goto_statement_token2] = ACTIONS(3370), + [aux_sym_on_error_statement_token2] = ACTIONS(3370), + [sym__ambiguous_redim_statement] = ACTIONS(3364), + [aux_sym_erase_statement_token1] = ACTIONS(3370), + [aux_sym_open_statement_token1] = ACTIONS(3370), + [aux_sym_file_mode_token2] = ACTIONS(3370), + [aux_sym_file_access_token2] = ACTIONS(3370), + [aux_sym_file_lock_token2] = ACTIONS(3370), + [aux_sym_print_statement_token1] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(3364), + [aux_sym_close_statement_token1] = ACTIONS(3370), + [aux_sym_put_statement_token1] = ACTIONS(3370), + [aux_sym_unlock_statement_token1] = ACTIONS(3370), + [aux_sym_seek_statement_token1] = ACTIONS(3370), + [sym_reset_statement] = ACTIONS(3370), + [aux_sym_raise_event_statement_token1] = ACTIONS(3370), + [sym_stop_statement] = ACTIONS(3370), + [sym_beep_statement] = ACTIONS(3370), + [aux_sym_unload_statement_token1] = ACTIONS(3370), + [aux_sym_def_type_statement_token1] = ACTIONS(3370), + [aux_sym_def_type_statement_token2] = ACTIONS(3370), + [aux_sym_def_type_statement_token3] = ACTIONS(3370), + [aux_sym_def_type_statement_token4] = ACTIONS(3370), + [aux_sym_def_type_statement_token5] = ACTIONS(3370), + [aux_sym_def_type_statement_token6] = ACTIONS(3370), + [aux_sym_def_type_statement_token7] = ACTIONS(3370), + [aux_sym_def_type_statement_token8] = ACTIONS(3370), + [aux_sym_def_type_statement_token9] = ACTIONS(3370), + [aux_sym_def_type_statement_token10] = ACTIONS(3370), + [aux_sym_def_type_statement_token11] = ACTIONS(3370), + [aux_sym_def_type_statement_token12] = ACTIONS(3370), + [aux_sym_def_type_statement_token13] = ACTIONS(3370), + [aux_sym_def_type_statement_token14] = ACTIONS(3370), + [aux_sym_call_statement_token1] = ACTIONS(3370), + [sym__ambiguous_call_statement] = ACTIONS(3370), + [aux_sym_addressof_expression_token1] = ACTIONS(3370), + [aux_sym_type_of_expression_token1] = ACTIONS(3370), + [aux_sym_unary_expression_token1] = ACTIONS(3370), + [sym_string_literal] = ACTIONS(3364), + [sym_number_literal] = ACTIONS(3364), + [aux_sym_boolean_literal_token1] = ACTIONS(3370), + [aux_sym_boolean_literal_token2] = ACTIONS(3370), + [sym_nothing_literal] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3370), + [sym_empty_literal] = ACTIONS(3370), + [sym_date_literal] = ACTIONS(3364), + [anon_sym_POUND] = ACTIONS(3370), + }, + [STATE(3712)] = { + [sym_identifier] = ACTIONS(5913), + [sym_newline] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5915), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5913), + [aux_sym_frm_property_statement_token1] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_BANG] = ACTIONS(5915), + [aux_sym__attribute_identifier_token1] = ACTIONS(5913), + [aux_sym_option_statement_token3] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5913), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5913), + [aux_sym_preprocessor_const_token1] = ACTIONS(5913), + [sym_static_modifier] = ACTIONS(5913), + [sym__dim_keyword] = ACTIONS(5913), + [sym__redim_keyword] = ACTIONS(5913), + [aux_sym_get_accessor_token1] = ACTIONS(5913), + [aux_sym_set_accessor_token1] = ACTIONS(5913), + [aux_sym_const_declaration_token1] = ACTIONS(5913), + [anon_sym_LPAREN] = ACTIONS(5915), + [aux_sym_as_type_clause_token2] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(8241), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5913), + [aux_sym_visibility_token1] = ACTIONS(5913), + [aux_sym_visibility_token2] = ACTIONS(5913), + [aux_sym_elseif_fragment_token1] = ACTIONS(5913), + [aux_sym_else_fragment_token1] = ACTIONS(5913), + [aux_sym_select_statement_token1] = ACTIONS(5913), + [aux_sym__for_header_token1] = ACTIONS(5913), + [aux_sym_do_statement_token1] = ACTIONS(5913), + [aux_sym_do_condition_token1] = ACTIONS(5913), + [aux_sym_with_statement_token1] = ACTIONS(5913), + [aux_sym_exit_statement_token1] = ACTIONS(5913), + [sym_end_statement] = ACTIONS(5915), + [aux_sym_on_goto_statement_token1] = ACTIONS(5913), + [aux_sym_on_goto_statement_token2] = ACTIONS(5913), + [aux_sym_on_error_statement_token2] = ACTIONS(5913), + [sym__ambiguous_redim_statement] = ACTIONS(5915), + [aux_sym_erase_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token1] = ACTIONS(5913), + [aux_sym_open_statement_token3] = ACTIONS(5913), + [aux_sym_file_mode_token2] = ACTIONS(5913), + [aux_sym_file_access_token2] = ACTIONS(5913), + [aux_sym_file_lock_token2] = ACTIONS(5913), + [aux_sym_print_statement_token1] = ACTIONS(5913), + [anon_sym_CARET] = ACTIONS(8235), + [anon_sym_SLASH] = ACTIONS(8241), + [anon_sym_BSLASH] = ACTIONS(8243), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(8245), + [anon_sym_PLUS] = ACTIONS(8247), + [anon_sym_DASH] = ACTIONS(8249), + [anon_sym_AMP] = ACTIONS(8251), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8253), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8255), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(8257), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(8259), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(8261), + [anon_sym_QMARK] = ACTIONS(5915), + [aux_sym_close_statement_token1] = ACTIONS(5913), + [aux_sym_put_statement_token1] = ACTIONS(5913), + [aux_sym_unlock_statement_token1] = ACTIONS(5913), + [aux_sym_seek_statement_token1] = ACTIONS(5913), + [sym_reset_statement] = ACTIONS(5913), + [aux_sym_raise_event_statement_token1] = ACTIONS(5913), + [sym_stop_statement] = ACTIONS(5913), + [sym_beep_statement] = ACTIONS(5913), + [aux_sym_unload_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token1] = ACTIONS(5913), + [aux_sym_def_type_statement_token2] = ACTIONS(5913), + [aux_sym_def_type_statement_token3] = ACTIONS(5913), + [aux_sym_def_type_statement_token4] = ACTIONS(5913), + [aux_sym_def_type_statement_token5] = ACTIONS(5913), + [aux_sym_def_type_statement_token6] = ACTIONS(5913), + [aux_sym_def_type_statement_token7] = ACTIONS(5913), + [aux_sym_def_type_statement_token8] = ACTIONS(5913), + [aux_sym_def_type_statement_token9] = ACTIONS(5913), + [aux_sym_def_type_statement_token10] = ACTIONS(5913), + [aux_sym_def_type_statement_token11] = ACTIONS(5913), + [aux_sym_def_type_statement_token12] = ACTIONS(5913), + [aux_sym_def_type_statement_token13] = ACTIONS(5913), + [aux_sym_def_type_statement_token14] = ACTIONS(5913), + [aux_sym_call_statement_token1] = ACTIONS(5913), + [sym__ambiguous_call_statement] = ACTIONS(5913), + [aux_sym_addressof_expression_token1] = ACTIONS(5913), + [aux_sym_type_of_expression_token1] = ACTIONS(5913), + [aux_sym_unary_expression_token1] = ACTIONS(5913), + [sym_string_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5915), + [aux_sym_boolean_literal_token1] = ACTIONS(5913), + [aux_sym_boolean_literal_token2] = ACTIONS(5913), + [sym_nothing_literal] = ACTIONS(5913), + [sym_null_literal] = ACTIONS(5913), + [sym_empty_literal] = ACTIONS(5913), + [sym_date_literal] = ACTIONS(5915), + [anon_sym_POUND] = ACTIONS(5913), + }, + [STATE(3713)] = { + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [anon_sym_COLON] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(7976), + [anon_sym_BANG] = ACTIONS(7978), + [aux_sym__attribute_identifier_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [sym__redim_keyword] = ACTIONS(4342), + [aux_sym_get_accessor_token1] = ACTIONS(4342), + [aux_sym_set_accessor_token1] = ACTIONS(4342), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [aux_sym_as_type_clause_token2] = ACTIONS(4342), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4342), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_elseif_fragment_token1] = ACTIONS(4342), + [aux_sym_else_fragment_token1] = ACTIONS(4342), + [aux_sym_select_statement_token1] = ACTIONS(4342), + [aux_sym__for_header_token1] = ACTIONS(4342), + [aux_sym_do_statement_token1] = ACTIONS(4342), + [aux_sym_do_condition_token1] = ACTIONS(4342), + [aux_sym_with_statement_token1] = ACTIONS(4342), + [aux_sym_exit_statement_token1] = ACTIONS(4342), + [sym_end_statement] = ACTIONS(4344), + [aux_sym_on_goto_statement_token1] = ACTIONS(4342), + [aux_sym_on_goto_statement_token2] = ACTIONS(4342), + [aux_sym_on_error_statement_token2] = ACTIONS(4342), + [sym__ambiguous_redim_statement] = ACTIONS(4344), + [aux_sym_erase_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token1] = ACTIONS(4342), + [aux_sym_open_statement_token3] = ACTIONS(4342), + [aux_sym_file_mode_token2] = ACTIONS(4342), + [aux_sym_file_access_token2] = ACTIONS(4342), + [aux_sym_file_lock_token2] = ACTIONS(4342), + [aux_sym_print_statement_token1] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [anon_sym_QMARK] = ACTIONS(4344), + [aux_sym_close_statement_token1] = ACTIONS(4342), + [aux_sym_put_statement_token1] = ACTIONS(4342), + [aux_sym_unlock_statement_token1] = ACTIONS(4342), + [aux_sym_seek_statement_token1] = ACTIONS(4342), + [sym_reset_statement] = ACTIONS(4342), + [aux_sym_raise_event_statement_token1] = ACTIONS(4342), + [sym_stop_statement] = ACTIONS(4342), + [sym_beep_statement] = ACTIONS(4342), + [aux_sym_unload_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_call_statement_token1] = ACTIONS(4342), + [sym__ambiguous_call_statement] = ACTIONS(4342), + [aux_sym_addressof_expression_token1] = ACTIONS(4342), + [aux_sym_type_of_expression_token1] = ACTIONS(4342), + [aux_sym_unary_expression_token1] = ACTIONS(4342), + [sym_string_literal] = ACTIONS(4344), + [sym_number_literal] = ACTIONS(4344), + [aux_sym_boolean_literal_token1] = ACTIONS(4342), + [aux_sym_boolean_literal_token2] = ACTIONS(4342), + [sym_nothing_literal] = ACTIONS(4342), + [sym_null_literal] = ACTIONS(4342), + [sym_empty_literal] = ACTIONS(4342), + [sym_date_literal] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4342), + }, + [STATE(3714)] = { + [sym_identifier] = ACTIONS(8357), + [sym_newline] = ACTIONS(8359), + [anon_sym_COLON] = ACTIONS(8359), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8357), + [aux_sym_frm_property_statement_token1] = ACTIONS(8357), + [anon_sym_DOT] = ACTIONS(8357), + [anon_sym_BANG] = ACTIONS(8359), + [aux_sym__attribute_identifier_token1] = ACTIONS(8357), + [aux_sym_option_statement_token3] = ACTIONS(8357), + [aux_sym_type_declaration_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8357), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8357), + [aux_sym_enum_declaration_token1] = ACTIONS(8357), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8357), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8357), + [aux_sym_declare_function_statement_token1] = ACTIONS(8357), + [aux_sym_preprocessor_const_token1] = ACTIONS(8357), + [aux_sym__property_get_header_token1] = ACTIONS(8357), + [aux_sym_event_declaration_token1] = ACTIONS(8357), + [sym_static_modifier] = ACTIONS(8357), + [sym__dim_keyword] = ACTIONS(8357), + [sym__redim_keyword] = ACTIONS(8357), + [aux_sym_get_accessor_token1] = ACTIONS(8357), + [aux_sym_set_accessor_token1] = ACTIONS(8357), + [anon_sym_COMMA] = ACTIONS(8359), + [aux_sym_const_declaration_token1] = ACTIONS(8357), + [anon_sym_LPAREN] = ACTIONS(8359), + [aux_sym_as_type_clause_token2] = ACTIONS(8357), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8357), + [aux_sym_visibility_token1] = ACTIONS(8357), + [aux_sym_visibility_token2] = ACTIONS(8357), + [aux_sym_elseif_fragment_token1] = ACTIONS(8357), + [aux_sym_else_fragment_token1] = ACTIONS(8357), + [aux_sym_select_statement_token1] = ACTIONS(8357), + [aux_sym__for_header_token1] = ACTIONS(8357), + [aux_sym_do_statement_token1] = ACTIONS(8357), + [aux_sym_do_condition_token1] = ACTIONS(8357), + [aux_sym_with_statement_token1] = ACTIONS(8357), + [aux_sym_exit_statement_token1] = ACTIONS(8357), + [sym_end_statement] = ACTIONS(8359), + [aux_sym_on_goto_statement_token1] = ACTIONS(8357), + [aux_sym_on_goto_statement_token2] = ACTIONS(8357), + [aux_sym_on_error_statement_token2] = ACTIONS(8357), + [sym__ambiguous_redim_statement] = ACTIONS(8359), + [aux_sym_erase_statement_token1] = ACTIONS(8357), + [aux_sym_open_statement_token1] = ACTIONS(8357), + [aux_sym_file_mode_token2] = ACTIONS(8357), + [aux_sym_file_access_token2] = ACTIONS(8357), + [aux_sym_file_lock_token2] = ACTIONS(8357), + [aux_sym_print_statement_token1] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_QMARK] = ACTIONS(8359), + [aux_sym_close_statement_token1] = ACTIONS(8357), + [aux_sym_put_statement_token1] = ACTIONS(8357), + [aux_sym_unlock_statement_token1] = ACTIONS(8357), + [aux_sym_seek_statement_token1] = ACTIONS(8357), + [sym_reset_statement] = ACTIONS(8357), + [aux_sym_raise_event_statement_token1] = ACTIONS(8357), + [sym_stop_statement] = ACTIONS(8357), + [sym_beep_statement] = ACTIONS(8357), + [aux_sym_unload_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token2] = ACTIONS(8357), + [aux_sym_def_type_statement_token3] = ACTIONS(8357), + [aux_sym_def_type_statement_token4] = ACTIONS(8357), + [aux_sym_def_type_statement_token5] = ACTIONS(8357), + [aux_sym_def_type_statement_token6] = ACTIONS(8357), + [aux_sym_def_type_statement_token7] = ACTIONS(8357), + [aux_sym_def_type_statement_token8] = ACTIONS(8357), + [aux_sym_def_type_statement_token9] = ACTIONS(8357), + [aux_sym_def_type_statement_token10] = ACTIONS(8357), + [aux_sym_def_type_statement_token11] = ACTIONS(8357), + [aux_sym_def_type_statement_token12] = ACTIONS(8357), + [aux_sym_def_type_statement_token13] = ACTIONS(8357), + [aux_sym_def_type_statement_token14] = ACTIONS(8357), + [aux_sym_call_statement_token1] = ACTIONS(8357), + [sym__ambiguous_call_statement] = ACTIONS(8357), + [aux_sym_addressof_expression_token1] = ACTIONS(8357), + [aux_sym_type_of_expression_token1] = ACTIONS(8357), + [aux_sym_unary_expression_token1] = ACTIONS(8357), + [sym_string_literal] = ACTIONS(8359), + [sym_number_literal] = ACTIONS(8359), + [aux_sym_boolean_literal_token1] = ACTIONS(8357), + [aux_sym_boolean_literal_token2] = ACTIONS(8357), + [sym_nothing_literal] = ACTIONS(8357), + [sym_null_literal] = ACTIONS(8357), + [sym_empty_literal] = ACTIONS(8357), + [sym_date_literal] = ACTIONS(8359), + [anon_sym_POUND] = ACTIONS(8357), + }, + [STATE(3715)] = { + [sym_identifier] = ACTIONS(8624), + [sym_newline] = ACTIONS(8626), + [anon_sym_COLON] = ACTIONS(8626), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8624), + [aux_sym_frm_property_statement_token1] = ACTIONS(8624), + [anon_sym_DOT] = ACTIONS(8624), + [anon_sym_BANG] = ACTIONS(8626), + [aux_sym__attribute_identifier_token1] = ACTIONS(8624), + [aux_sym_option_statement_token3] = ACTIONS(8624), + [aux_sym_type_declaration_token1] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8624), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8624), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8624), + [aux_sym_enum_declaration_token1] = ACTIONS(8624), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8624), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8624), + [aux_sym_declare_function_statement_token1] = ACTIONS(8624), + [aux_sym_preprocessor_const_token1] = ACTIONS(8624), + [aux_sym__property_get_header_token1] = ACTIONS(8624), + [aux_sym_event_declaration_token1] = ACTIONS(8624), + [sym_static_modifier] = ACTIONS(8624), + [sym__dim_keyword] = ACTIONS(8624), + [sym__redim_keyword] = ACTIONS(8624), + [aux_sym_get_accessor_token1] = ACTIONS(8624), + [aux_sym_set_accessor_token1] = ACTIONS(8624), + [aux_sym_const_declaration_token1] = ACTIONS(8624), + [anon_sym_LPAREN] = ACTIONS(8626), + [aux_sym_as_type_clause_token2] = ACTIONS(8624), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8624), + [aux_sym_visibility_token1] = ACTIONS(8624), + [aux_sym_visibility_token2] = ACTIONS(8624), + [aux_sym_elseif_fragment_token1] = ACTIONS(8624), + [aux_sym_else_fragment_token1] = ACTIONS(8624), + [aux_sym_select_statement_token1] = ACTIONS(8624), + [aux_sym__for_header_token1] = ACTIONS(8624), + [aux_sym_do_statement_token1] = ACTIONS(8624), + [aux_sym_do_condition_token1] = ACTIONS(8624), + [aux_sym_with_statement_token1] = ACTIONS(8624), + [aux_sym_exit_statement_token1] = ACTIONS(8624), + [sym_end_statement] = ACTIONS(8626), + [aux_sym_on_goto_statement_token1] = ACTIONS(8624), + [aux_sym_on_goto_statement_token2] = ACTIONS(8624), + [aux_sym_on_error_statement_token2] = ACTIONS(8624), + [sym__ambiguous_redim_statement] = ACTIONS(8626), + [aux_sym_erase_statement_token1] = ACTIONS(8624), + [aux_sym_open_statement_token1] = ACTIONS(8624), + [aux_sym_open_statement_token3] = ACTIONS(8628), + [aux_sym_file_mode_token2] = ACTIONS(8624), + [aux_sym_file_access_token2] = ACTIONS(8624), + [aux_sym_file_lock_token2] = ACTIONS(8624), + [aux_sym_print_statement_token1] = ACTIONS(8624), + [anon_sym_PLUS] = ACTIONS(8626), + [anon_sym_DASH] = ACTIONS(8624), + [anon_sym_QMARK] = ACTIONS(8626), + [aux_sym_close_statement_token1] = ACTIONS(8624), + [aux_sym_put_statement_token1] = ACTIONS(8624), + [aux_sym_unlock_statement_token1] = ACTIONS(8624), + [aux_sym_seek_statement_token1] = ACTIONS(8624), + [sym_reset_statement] = ACTIONS(8624), + [aux_sym_raise_event_statement_token1] = ACTIONS(8624), + [sym_stop_statement] = ACTIONS(8624), + [sym_beep_statement] = ACTIONS(8624), + [aux_sym_unload_statement_token1] = ACTIONS(8624), + [aux_sym_def_type_statement_token1] = ACTIONS(8624), + [aux_sym_def_type_statement_token2] = ACTIONS(8624), + [aux_sym_def_type_statement_token3] = ACTIONS(8624), + [aux_sym_def_type_statement_token4] = ACTIONS(8624), + [aux_sym_def_type_statement_token5] = ACTIONS(8624), + [aux_sym_def_type_statement_token6] = ACTIONS(8624), + [aux_sym_def_type_statement_token7] = ACTIONS(8624), + [aux_sym_def_type_statement_token8] = ACTIONS(8624), + [aux_sym_def_type_statement_token9] = ACTIONS(8624), + [aux_sym_def_type_statement_token10] = ACTIONS(8624), + [aux_sym_def_type_statement_token11] = ACTIONS(8624), + [aux_sym_def_type_statement_token12] = ACTIONS(8624), + [aux_sym_def_type_statement_token13] = ACTIONS(8624), + [aux_sym_def_type_statement_token14] = ACTIONS(8624), + [aux_sym_call_statement_token1] = ACTIONS(8624), + [sym__ambiguous_call_statement] = ACTIONS(8624), + [aux_sym_addressof_expression_token1] = ACTIONS(8624), + [aux_sym_type_of_expression_token1] = ACTIONS(8624), + [aux_sym_unary_expression_token1] = ACTIONS(8624), + [sym_string_literal] = ACTIONS(8626), + [sym_number_literal] = ACTIONS(8626), + [aux_sym_boolean_literal_token1] = ACTIONS(8624), + [aux_sym_boolean_literal_token2] = ACTIONS(8624), + [sym_nothing_literal] = ACTIONS(8624), + [sym_null_literal] = ACTIONS(8624), + [sym_empty_literal] = ACTIONS(8624), + [sym_date_literal] = ACTIONS(8626), + [anon_sym_POUND] = ACTIONS(8624), + }, + [STATE(3716)] = { + [aux_sym_next_variable_list_repeat1] = STATE(3718), + [sym_identifier] = ACTIONS(7939), + [sym_newline] = ACTIONS(7941), + [anon_sym_COLON] = ACTIONS(7941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7939), + [aux_sym_frm_property_statement_token1] = ACTIONS(7939), + [anon_sym_DOT] = ACTIONS(7939), + [anon_sym_BANG] = ACTIONS(7941), + [aux_sym__attribute_identifier_token1] = ACTIONS(7939), + [aux_sym_option_statement_token3] = ACTIONS(7939), + [aux_sym_type_declaration_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7939), + [aux_sym_enum_declaration_token1] = ACTIONS(7939), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7939), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7939), + [aux_sym_declare_function_statement_token1] = ACTIONS(7939), + [aux_sym_preprocessor_const_token1] = ACTIONS(7939), + [aux_sym__property_get_header_token1] = ACTIONS(7939), + [aux_sym_event_declaration_token1] = ACTIONS(7939), + [sym_static_modifier] = ACTIONS(7939), + [sym__dim_keyword] = ACTIONS(7939), + [sym__redim_keyword] = ACTIONS(7939), + [aux_sym_get_accessor_token1] = ACTIONS(7939), + [aux_sym_set_accessor_token1] = ACTIONS(7939), + [anon_sym_COMMA] = ACTIONS(8630), + [aux_sym_const_declaration_token1] = ACTIONS(7939), + [anon_sym_LPAREN] = ACTIONS(7941), + [aux_sym_as_type_clause_token2] = ACTIONS(7939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7939), + [aux_sym_visibility_token1] = ACTIONS(7939), + [aux_sym_visibility_token2] = ACTIONS(7939), + [aux_sym_elseif_fragment_token1] = ACTIONS(7939), + [aux_sym_else_fragment_token1] = ACTIONS(7939), + [aux_sym_select_statement_token1] = ACTIONS(7939), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7939), + [aux_sym__for_header_token1] = ACTIONS(7939), + [aux_sym_do_statement_token1] = ACTIONS(7939), + [aux_sym_do_condition_token1] = ACTIONS(7939), + [aux_sym_with_statement_token1] = ACTIONS(7939), + [aux_sym_exit_statement_token1] = ACTIONS(7939), + [sym_end_statement] = ACTIONS(7941), + [aux_sym_on_goto_statement_token1] = ACTIONS(7939), + [aux_sym_on_goto_statement_token2] = ACTIONS(7939), + [aux_sym_on_error_statement_token2] = ACTIONS(7939), + [sym__ambiguous_redim_statement] = ACTIONS(7941), + [aux_sym_erase_statement_token1] = ACTIONS(7939), + [aux_sym_open_statement_token1] = ACTIONS(7939), + [aux_sym_file_mode_token2] = ACTIONS(7939), + [aux_sym_file_access_token2] = ACTIONS(7939), + [aux_sym_file_lock_token2] = ACTIONS(7939), + [aux_sym_print_statement_token1] = ACTIONS(7939), + [anon_sym_PLUS] = ACTIONS(7941), + [anon_sym_DASH] = ACTIONS(7939), + [anon_sym_QMARK] = ACTIONS(7941), + [aux_sym_close_statement_token1] = ACTIONS(7939), + [aux_sym_put_statement_token1] = ACTIONS(7939), + [aux_sym_unlock_statement_token1] = ACTIONS(7939), + [aux_sym_seek_statement_token1] = ACTIONS(7939), + [sym_reset_statement] = ACTIONS(7939), + [aux_sym_raise_event_statement_token1] = ACTIONS(7939), + [sym_stop_statement] = ACTIONS(7939), + [sym_beep_statement] = ACTIONS(7939), + [aux_sym_unload_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token2] = ACTIONS(7939), + [aux_sym_def_type_statement_token3] = ACTIONS(7939), + [aux_sym_def_type_statement_token4] = ACTIONS(7939), + [aux_sym_def_type_statement_token5] = ACTIONS(7939), + [aux_sym_def_type_statement_token6] = ACTIONS(7939), + [aux_sym_def_type_statement_token7] = ACTIONS(7939), + [aux_sym_def_type_statement_token8] = ACTIONS(7939), + [aux_sym_def_type_statement_token9] = ACTIONS(7939), + [aux_sym_def_type_statement_token10] = ACTIONS(7939), + [aux_sym_def_type_statement_token11] = ACTIONS(7939), + [aux_sym_def_type_statement_token12] = ACTIONS(7939), + [aux_sym_def_type_statement_token13] = ACTIONS(7939), + [aux_sym_def_type_statement_token14] = ACTIONS(7939), + [aux_sym_call_statement_token1] = ACTIONS(7939), + [sym__ambiguous_call_statement] = ACTIONS(7939), + [aux_sym_addressof_expression_token1] = ACTIONS(7939), + [aux_sym_type_of_expression_token1] = ACTIONS(7939), + [aux_sym_unary_expression_token1] = ACTIONS(7939), + [sym_string_literal] = ACTIONS(7941), + [sym_number_literal] = ACTIONS(7941), + [aux_sym_boolean_literal_token1] = ACTIONS(7939), + [aux_sym_boolean_literal_token2] = ACTIONS(7939), + [sym_nothing_literal] = ACTIONS(7939), + [sym_null_literal] = ACTIONS(7939), + [sym_empty_literal] = ACTIONS(7939), + [sym_date_literal] = ACTIONS(7941), + [anon_sym_POUND] = ACTIONS(7939), + }, + [STATE(3717)] = { + [sym_identifier] = ACTIONS(6340), + [sym_newline] = ACTIONS(6342), + [anon_sym_COLON] = ACTIONS(6342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6340), + [aux_sym_frm_property_statement_token1] = ACTIONS(6340), + [anon_sym_DOT] = ACTIONS(6340), + [anon_sym_BANG] = ACTIONS(6342), + [aux_sym__attribute_identifier_token1] = ACTIONS(6340), + [aux_sym_option_statement_token3] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6340), + [aux_sym_preprocessor_const_token1] = ACTIONS(6340), + [sym_static_modifier] = ACTIONS(6340), + [sym__dim_keyword] = ACTIONS(6340), + [sym__redim_keyword] = ACTIONS(6340), + [aux_sym_get_accessor_token1] = ACTIONS(6340), + [aux_sym_set_accessor_token1] = ACTIONS(6340), + [aux_sym_const_declaration_token1] = ACTIONS(6340), + [anon_sym_LPAREN] = ACTIONS(6342), + [aux_sym_as_type_clause_token2] = ACTIONS(6340), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6340), + [aux_sym_visibility_token1] = ACTIONS(6340), + [aux_sym_visibility_token2] = ACTIONS(6340), + [aux_sym_elseif_fragment_token1] = ACTIONS(6340), + [aux_sym_else_fragment_token1] = ACTIONS(6340), + [aux_sym_select_statement_token1] = ACTIONS(6340), + [aux_sym__for_header_token1] = ACTIONS(6340), + [aux_sym_do_statement_token1] = ACTIONS(6340), + [aux_sym_do_condition_token1] = ACTIONS(6340), + [aux_sym_with_statement_token1] = ACTIONS(6340), + [aux_sym_exit_statement_token1] = ACTIONS(6340), + [sym_end_statement] = ACTIONS(6342), + [aux_sym_on_goto_statement_token1] = ACTIONS(6340), + [aux_sym_on_goto_statement_token2] = ACTIONS(6340), + [aux_sym_on_error_statement_token2] = ACTIONS(6340), + [sym__ambiguous_redim_statement] = ACTIONS(6342), + [aux_sym_erase_statement_token1] = ACTIONS(6340), + [aux_sym_open_statement_token1] = ACTIONS(6340), + [aux_sym_file_mode_token2] = ACTIONS(6340), + [aux_sym_file_access_token2] = ACTIONS(6340), + [aux_sym_file_lock_token2] = ACTIONS(6340), + [aux_sym_print_statement_token1] = ACTIONS(6340), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_QMARK] = ACTIONS(6342), + [aux_sym_close_statement_token1] = ACTIONS(6340), + [aux_sym_put_statement_token1] = ACTIONS(6340), + [aux_sym_unlock_statement_token1] = ACTIONS(6340), + [aux_sym_seek_statement_token1] = ACTIONS(6340), + [sym_reset_statement] = ACTIONS(6340), + [aux_sym_raise_event_statement_token1] = ACTIONS(6340), + [sym_stop_statement] = ACTIONS(6340), + [sym_beep_statement] = ACTIONS(6340), + [aux_sym_unload_statement_token1] = ACTIONS(6340), + [aux_sym_def_type_statement_token1] = ACTIONS(6340), + [aux_sym_def_type_statement_token2] = ACTIONS(6340), + [aux_sym_def_type_statement_token3] = ACTIONS(6340), + [aux_sym_def_type_statement_token4] = ACTIONS(6340), + [aux_sym_def_type_statement_token5] = ACTIONS(6340), + [aux_sym_def_type_statement_token6] = ACTIONS(6340), + [aux_sym_def_type_statement_token7] = ACTIONS(6340), + [aux_sym_def_type_statement_token8] = ACTIONS(6340), + [aux_sym_def_type_statement_token9] = ACTIONS(6340), + [aux_sym_def_type_statement_token10] = ACTIONS(6340), + [aux_sym_def_type_statement_token11] = ACTIONS(6340), + [aux_sym_def_type_statement_token12] = ACTIONS(6340), + [aux_sym_def_type_statement_token13] = ACTIONS(6340), + [aux_sym_def_type_statement_token14] = ACTIONS(6340), + [aux_sym_call_statement_token1] = ACTIONS(6340), + [sym__ambiguous_call_statement] = ACTIONS(6340), + [aux_sym_addressof_expression_token1] = ACTIONS(6340), + [aux_sym_type_of_expression_token1] = ACTIONS(6340), + [aux_sym_unary_expression_token1] = ACTIONS(6340), + [sym_string_literal] = ACTIONS(6342), + [sym_number_literal] = ACTIONS(6342), + [aux_sym_boolean_literal_token1] = ACTIONS(6340), + [aux_sym_boolean_literal_token2] = ACTIONS(6340), + [sym_nothing_literal] = ACTIONS(6340), + [sym_null_literal] = ACTIONS(6340), + [sym_empty_literal] = ACTIONS(6340), + [sym_date_literal] = ACTIONS(6342), + [anon_sym_POUND] = ACTIONS(6340), + }, + [STATE(3718)] = { + [aux_sym_next_variable_list_repeat1] = STATE(3719), + [sym_identifier] = ACTIONS(7945), + [sym_newline] = ACTIONS(7947), + [anon_sym_COLON] = ACTIONS(7947), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7945), + [aux_sym_frm_property_statement_token1] = ACTIONS(7945), + [anon_sym_DOT] = ACTIONS(7945), + [anon_sym_BANG] = ACTIONS(7947), + [aux_sym__attribute_identifier_token1] = ACTIONS(7945), + [aux_sym_option_statement_token3] = ACTIONS(7945), + [aux_sym_type_declaration_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7945), + [aux_sym_enum_declaration_token1] = ACTIONS(7945), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7945), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7945), + [aux_sym_declare_function_statement_token1] = ACTIONS(7945), + [aux_sym_preprocessor_const_token1] = ACTIONS(7945), + [aux_sym__property_get_header_token1] = ACTIONS(7945), + [aux_sym_event_declaration_token1] = ACTIONS(7945), + [sym_static_modifier] = ACTIONS(7945), + [sym__dim_keyword] = ACTIONS(7945), + [sym__redim_keyword] = ACTIONS(7945), + [aux_sym_get_accessor_token1] = ACTIONS(7945), + [aux_sym_set_accessor_token1] = ACTIONS(7945), + [anon_sym_COMMA] = ACTIONS(8630), + [aux_sym_const_declaration_token1] = ACTIONS(7945), + [anon_sym_LPAREN] = ACTIONS(7947), + [aux_sym_as_type_clause_token2] = ACTIONS(7945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7945), + [aux_sym_visibility_token1] = ACTIONS(7945), + [aux_sym_visibility_token2] = ACTIONS(7945), + [aux_sym_elseif_fragment_token1] = ACTIONS(7945), + [aux_sym_else_fragment_token1] = ACTIONS(7945), + [aux_sym_select_statement_token1] = ACTIONS(7945), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7945), + [aux_sym__for_header_token1] = ACTIONS(7945), + [aux_sym_do_statement_token1] = ACTIONS(7945), + [aux_sym_do_condition_token1] = ACTIONS(7945), + [aux_sym_with_statement_token1] = ACTIONS(7945), + [aux_sym_exit_statement_token1] = ACTIONS(7945), + [sym_end_statement] = ACTIONS(7947), + [aux_sym_on_goto_statement_token1] = ACTIONS(7945), + [aux_sym_on_goto_statement_token2] = ACTIONS(7945), + [aux_sym_on_error_statement_token2] = ACTIONS(7945), + [sym__ambiguous_redim_statement] = ACTIONS(7947), + [aux_sym_erase_statement_token1] = ACTIONS(7945), + [aux_sym_open_statement_token1] = ACTIONS(7945), + [aux_sym_file_mode_token2] = ACTIONS(7945), + [aux_sym_file_access_token2] = ACTIONS(7945), + [aux_sym_file_lock_token2] = ACTIONS(7945), + [aux_sym_print_statement_token1] = ACTIONS(7945), + [anon_sym_PLUS] = ACTIONS(7947), + [anon_sym_DASH] = ACTIONS(7945), + [anon_sym_QMARK] = ACTIONS(7947), + [aux_sym_close_statement_token1] = ACTIONS(7945), + [aux_sym_put_statement_token1] = ACTIONS(7945), + [aux_sym_unlock_statement_token1] = ACTIONS(7945), + [aux_sym_seek_statement_token1] = ACTIONS(7945), + [sym_reset_statement] = ACTIONS(7945), + [aux_sym_raise_event_statement_token1] = ACTIONS(7945), + [sym_stop_statement] = ACTIONS(7945), + [sym_beep_statement] = ACTIONS(7945), + [aux_sym_unload_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token2] = ACTIONS(7945), + [aux_sym_def_type_statement_token3] = ACTIONS(7945), + [aux_sym_def_type_statement_token4] = ACTIONS(7945), + [aux_sym_def_type_statement_token5] = ACTIONS(7945), + [aux_sym_def_type_statement_token6] = ACTIONS(7945), + [aux_sym_def_type_statement_token7] = ACTIONS(7945), + [aux_sym_def_type_statement_token8] = ACTIONS(7945), + [aux_sym_def_type_statement_token9] = ACTIONS(7945), + [aux_sym_def_type_statement_token10] = ACTIONS(7945), + [aux_sym_def_type_statement_token11] = ACTIONS(7945), + [aux_sym_def_type_statement_token12] = ACTIONS(7945), + [aux_sym_def_type_statement_token13] = ACTIONS(7945), + [aux_sym_def_type_statement_token14] = ACTIONS(7945), + [aux_sym_call_statement_token1] = ACTIONS(7945), + [sym__ambiguous_call_statement] = ACTIONS(7945), + [aux_sym_addressof_expression_token1] = ACTIONS(7945), + [aux_sym_type_of_expression_token1] = ACTIONS(7945), + [aux_sym_unary_expression_token1] = ACTIONS(7945), + [sym_string_literal] = ACTIONS(7947), + [sym_number_literal] = ACTIONS(7947), + [aux_sym_boolean_literal_token1] = ACTIONS(7945), + [aux_sym_boolean_literal_token2] = ACTIONS(7945), + [sym_nothing_literal] = ACTIONS(7945), + [sym_null_literal] = ACTIONS(7945), + [sym_empty_literal] = ACTIONS(7945), + [sym_date_literal] = ACTIONS(7947), + [anon_sym_POUND] = ACTIONS(7945), + }, + [STATE(3719)] = { + [aux_sym_next_variable_list_repeat1] = STATE(3719), + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_declaration_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_enum_declaration_token1] = ACTIONS(7949), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7949), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7949), + [aux_sym_declare_function_statement_token1] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [aux_sym__property_get_header_token1] = ACTIONS(7949), + [aux_sym_event_declaration_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(8632), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(3720)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_declaration_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4601), + [aux_sym_enum_declaration_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4601), + [aux_sym_declare_function_statement_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [aux_sym__property_get_header_token1] = ACTIONS(4601), + [aux_sym_event_declaration_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(3721)] = { + [sym_identifier] = ACTIONS(8635), + [sym_newline] = ACTIONS(8637), + [anon_sym_COLON] = ACTIONS(8637), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8635), + [aux_sym_frm_property_statement_token1] = ACTIONS(8635), + [anon_sym_DOT] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(8637), + [aux_sym__attribute_identifier_token1] = ACTIONS(8635), + [aux_sym_option_statement_token3] = ACTIONS(8635), + [aux_sym_type_declaration_token1] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8635), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8635), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8635), + [aux_sym_enum_declaration_token1] = ACTIONS(8635), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8635), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8635), + [aux_sym_declare_function_statement_token1] = ACTIONS(8635), + [aux_sym_preprocessor_const_token1] = ACTIONS(8635), + [aux_sym__property_get_header_token1] = ACTIONS(8635), + [aux_sym_event_declaration_token1] = ACTIONS(8635), + [sym_static_modifier] = ACTIONS(8635), + [sym__dim_keyword] = ACTIONS(8635), + [sym__redim_keyword] = ACTIONS(8635), + [aux_sym_get_accessor_token1] = ACTIONS(8635), + [aux_sym_set_accessor_token1] = ACTIONS(8635), + [anon_sym_COMMA] = ACTIONS(8639), + [aux_sym_const_declaration_token1] = ACTIONS(8635), + [anon_sym_LPAREN] = ACTIONS(8637), + [aux_sym_as_type_clause_token2] = ACTIONS(8635), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8635), + [aux_sym_visibility_token1] = ACTIONS(8635), + [aux_sym_visibility_token2] = ACTIONS(8635), + [aux_sym_elseif_fragment_token1] = ACTIONS(8635), + [aux_sym_else_fragment_token1] = ACTIONS(8635), + [aux_sym_select_statement_token1] = ACTIONS(8635), + [aux_sym__for_header_token1] = ACTIONS(8635), + [aux_sym_do_statement_token1] = ACTIONS(8635), + [aux_sym_do_condition_token1] = ACTIONS(8635), + [aux_sym_with_statement_token1] = ACTIONS(8635), + [aux_sym_exit_statement_token1] = ACTIONS(8635), + [sym_end_statement] = ACTIONS(8637), + [aux_sym_on_goto_statement_token1] = ACTIONS(8635), + [aux_sym_on_goto_statement_token2] = ACTIONS(8635), + [aux_sym_on_error_statement_token2] = ACTIONS(8635), + [sym__ambiguous_redim_statement] = ACTIONS(8637), + [aux_sym_erase_statement_token1] = ACTIONS(8635), + [aux_sym_open_statement_token1] = ACTIONS(8635), + [aux_sym_file_mode_token2] = ACTIONS(8635), + [aux_sym_file_access_token2] = ACTIONS(8635), + [aux_sym_file_lock_token2] = ACTIONS(8635), + [aux_sym_print_statement_token1] = ACTIONS(8635), + [anon_sym_PLUS] = ACTIONS(8637), + [anon_sym_DASH] = ACTIONS(8635), + [anon_sym_QMARK] = ACTIONS(8637), + [aux_sym_close_statement_token1] = ACTIONS(8635), + [aux_sym_put_statement_token1] = ACTIONS(8635), + [aux_sym_unlock_statement_token1] = ACTIONS(8635), + [aux_sym_seek_statement_token1] = ACTIONS(8635), + [sym_reset_statement] = ACTIONS(8635), + [aux_sym_raise_event_statement_token1] = ACTIONS(8635), + [sym_stop_statement] = ACTIONS(8635), + [sym_beep_statement] = ACTIONS(8635), + [aux_sym_unload_statement_token1] = ACTIONS(8635), + [aux_sym_def_type_statement_token1] = ACTIONS(8635), + [aux_sym_def_type_statement_token2] = ACTIONS(8635), + [aux_sym_def_type_statement_token3] = ACTIONS(8635), + [aux_sym_def_type_statement_token4] = ACTIONS(8635), + [aux_sym_def_type_statement_token5] = ACTIONS(8635), + [aux_sym_def_type_statement_token6] = ACTIONS(8635), + [aux_sym_def_type_statement_token7] = ACTIONS(8635), + [aux_sym_def_type_statement_token8] = ACTIONS(8635), + [aux_sym_def_type_statement_token9] = ACTIONS(8635), + [aux_sym_def_type_statement_token10] = ACTIONS(8635), + [aux_sym_def_type_statement_token11] = ACTIONS(8635), + [aux_sym_def_type_statement_token12] = ACTIONS(8635), + [aux_sym_def_type_statement_token13] = ACTIONS(8635), + [aux_sym_def_type_statement_token14] = ACTIONS(8635), + [aux_sym_call_statement_token1] = ACTIONS(8635), + [sym__ambiguous_call_statement] = ACTIONS(8635), + [aux_sym_addressof_expression_token1] = ACTIONS(8635), + [aux_sym_type_of_expression_token1] = ACTIONS(8635), + [aux_sym_unary_expression_token1] = ACTIONS(8635), + [sym_string_literal] = ACTIONS(8637), + [sym_number_literal] = ACTIONS(8637), + [aux_sym_boolean_literal_token1] = ACTIONS(8635), + [aux_sym_boolean_literal_token2] = ACTIONS(8635), + [sym_nothing_literal] = ACTIONS(8635), + [sym_null_literal] = ACTIONS(8635), + [sym_empty_literal] = ACTIONS(8635), + [sym_date_literal] = ACTIONS(8637), + [anon_sym_POUND] = ACTIONS(8635), + }, + [STATE(3722)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4605), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(3723)] = { + [sym_identifier] = ACTIONS(6629), + [sym_newline] = ACTIONS(6631), + [anon_sym_COLON] = ACTIONS(6631), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6629), + [aux_sym_frm_property_statement_token1] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6631), + [aux_sym__attribute_identifier_token1] = ACTIONS(6629), + [aux_sym_option_statement_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6629), + [aux_sym_preprocessor_const_token1] = ACTIONS(6629), + [sym_static_modifier] = ACTIONS(6629), + [sym__dim_keyword] = ACTIONS(6629), + [sym__redim_keyword] = ACTIONS(6629), + [aux_sym_get_accessor_token1] = ACTIONS(6629), + [aux_sym_set_accessor_token1] = ACTIONS(6629), + [aux_sym_const_declaration_token1] = ACTIONS(6629), + [anon_sym_LPAREN] = ACTIONS(6631), + [aux_sym_as_type_clause_token2] = ACTIONS(6629), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6629), + [aux_sym_visibility_token1] = ACTIONS(6629), + [aux_sym_visibility_token2] = ACTIONS(6629), + [aux_sym_elseif_fragment_token1] = ACTIONS(6629), + [aux_sym_else_fragment_token1] = ACTIONS(6629), + [aux_sym_select_statement_token1] = ACTIONS(6629), + [aux_sym__for_header_token1] = ACTIONS(6629), + [aux_sym_do_statement_token1] = ACTIONS(6629), + [aux_sym_do_condition_token1] = ACTIONS(6629), + [aux_sym_with_statement_token1] = ACTIONS(6629), + [aux_sym_exit_statement_token1] = ACTIONS(6629), + [sym_end_statement] = ACTIONS(6631), + [aux_sym_on_goto_statement_token1] = ACTIONS(6629), + [aux_sym_on_goto_statement_token2] = ACTIONS(6629), + [aux_sym_on_error_statement_token2] = ACTIONS(6629), + [sym__ambiguous_redim_statement] = ACTIONS(6631), + [aux_sym_erase_statement_token1] = ACTIONS(6629), + [aux_sym_open_statement_token1] = ACTIONS(6629), + [aux_sym_file_mode_token2] = ACTIONS(6629), + [aux_sym_file_access_token2] = ACTIONS(6629), + [aux_sym_file_lock_token2] = ACTIONS(6629), + [aux_sym_print_statement_token1] = ACTIONS(6629), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6484), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6486), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6488), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6490), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6492), + [anon_sym_QMARK] = ACTIONS(6631), + [aux_sym_close_statement_token1] = ACTIONS(6629), + [aux_sym_put_statement_token1] = ACTIONS(6629), + [aux_sym_unlock_statement_token1] = ACTIONS(6629), + [aux_sym_seek_statement_token1] = ACTIONS(6629), + [sym_reset_statement] = ACTIONS(6629), + [aux_sym_raise_event_statement_token1] = ACTIONS(6629), + [sym_stop_statement] = ACTIONS(6629), + [sym_beep_statement] = ACTIONS(6629), + [aux_sym_unload_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token2] = ACTIONS(6629), + [aux_sym_def_type_statement_token3] = ACTIONS(6629), + [aux_sym_def_type_statement_token4] = ACTIONS(6629), + [aux_sym_def_type_statement_token5] = ACTIONS(6629), + [aux_sym_def_type_statement_token6] = ACTIONS(6629), + [aux_sym_def_type_statement_token7] = ACTIONS(6629), + [aux_sym_def_type_statement_token8] = ACTIONS(6629), + [aux_sym_def_type_statement_token9] = ACTIONS(6629), + [aux_sym_def_type_statement_token10] = ACTIONS(6629), + [aux_sym_def_type_statement_token11] = ACTIONS(6629), + [aux_sym_def_type_statement_token12] = ACTIONS(6629), + [aux_sym_def_type_statement_token13] = ACTIONS(6629), + [aux_sym_def_type_statement_token14] = ACTIONS(6629), + [aux_sym_call_statement_token1] = ACTIONS(6629), + [sym__ambiguous_call_statement] = ACTIONS(6629), + [aux_sym_addressof_expression_token1] = ACTIONS(6629), + [aux_sym_type_of_expression_token1] = ACTIONS(6629), + [aux_sym_unary_expression_token1] = ACTIONS(6629), + [sym_string_literal] = ACTIONS(6631), + [sym_number_literal] = ACTIONS(6631), + [aux_sym_boolean_literal_token1] = ACTIONS(6629), + [aux_sym_boolean_literal_token2] = ACTIONS(6629), + [sym_nothing_literal] = ACTIONS(6629), + [sym_null_literal] = ACTIONS(6629), + [sym_empty_literal] = ACTIONS(6629), + [sym_date_literal] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6629), + }, + [STATE(3724)] = { + [sym_parameter_list] = STATE(3887), + [sym_as_type_clause] = STATE(4561), + [sym_identifier] = ACTIONS(8052), + [sym_newline] = ACTIONS(8054), + [anon_sym_COLON] = ACTIONS(8054), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8052), + [aux_sym_frm_property_statement_token1] = ACTIONS(8052), + [anon_sym_DOT] = ACTIONS(8052), + [anon_sym_BANG] = ACTIONS(8054), + [aux_sym__attribute_identifier_token1] = ACTIONS(8052), + [aux_sym_option_statement_token3] = ACTIONS(8052), + [aux_sym_type_declaration_token1] = ACTIONS(8052), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8052), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8052), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8052), + [aux_sym_enum_declaration_token1] = ACTIONS(8052), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8052), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8052), + [aux_sym_declare_function_statement_token1] = ACTIONS(8052), + [aux_sym_preprocessor_const_token1] = ACTIONS(8052), + [aux_sym__property_get_header_token1] = ACTIONS(8052), + [aux_sym_event_declaration_token1] = ACTIONS(8052), + [sym_static_modifier] = ACTIONS(8052), + [sym__dim_keyword] = ACTIONS(8052), + [sym__redim_keyword] = ACTIONS(8052), + [aux_sym_get_accessor_token1] = ACTIONS(8052), + [aux_sym_set_accessor_token1] = ACTIONS(8052), + [aux_sym_const_declaration_token1] = ACTIONS(8052), + [anon_sym_LPAREN] = ACTIONS(8209), + [aux_sym_as_type_clause_token1] = ACTIONS(8211), + [aux_sym_as_type_clause_token2] = ACTIONS(8052), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8052), + [aux_sym_visibility_token1] = ACTIONS(8052), + [aux_sym_visibility_token2] = ACTIONS(8052), + [aux_sym_elseif_fragment_token1] = ACTIONS(8052), + [aux_sym_else_fragment_token1] = ACTIONS(8052), + [aux_sym_select_statement_token1] = ACTIONS(8052), + [aux_sym__for_header_token1] = ACTIONS(8052), + [aux_sym_do_statement_token1] = ACTIONS(8052), + [aux_sym_do_condition_token1] = ACTIONS(8052), + [aux_sym_with_statement_token1] = ACTIONS(8052), + [aux_sym_exit_statement_token1] = ACTIONS(8052), + [sym_end_statement] = ACTIONS(8054), + [aux_sym_on_goto_statement_token1] = ACTIONS(8052), + [aux_sym_on_goto_statement_token2] = ACTIONS(8052), + [aux_sym_on_error_statement_token2] = ACTIONS(8052), + [sym__ambiguous_redim_statement] = ACTIONS(8054), + [aux_sym_erase_statement_token1] = ACTIONS(8052), + [aux_sym_open_statement_token1] = ACTIONS(8052), + [aux_sym_file_mode_token2] = ACTIONS(8052), + [aux_sym_file_access_token2] = ACTIONS(8052), + [aux_sym_file_lock_token2] = ACTIONS(8052), + [aux_sym_print_statement_token1] = ACTIONS(8052), + [anon_sym_PLUS] = ACTIONS(8054), + [anon_sym_DASH] = ACTIONS(8052), + [anon_sym_QMARK] = ACTIONS(8054), + [aux_sym_close_statement_token1] = ACTIONS(8052), + [aux_sym_put_statement_token1] = ACTIONS(8052), + [aux_sym_unlock_statement_token1] = ACTIONS(8052), + [aux_sym_seek_statement_token1] = ACTIONS(8052), + [sym_reset_statement] = ACTIONS(8052), + [aux_sym_raise_event_statement_token1] = ACTIONS(8052), + [sym_stop_statement] = ACTIONS(8052), + [sym_beep_statement] = ACTIONS(8052), + [aux_sym_unload_statement_token1] = ACTIONS(8052), + [aux_sym_def_type_statement_token1] = ACTIONS(8052), + [aux_sym_def_type_statement_token2] = ACTIONS(8052), + [aux_sym_def_type_statement_token3] = ACTIONS(8052), + [aux_sym_def_type_statement_token4] = ACTIONS(8052), + [aux_sym_def_type_statement_token5] = ACTIONS(8052), + [aux_sym_def_type_statement_token6] = ACTIONS(8052), + [aux_sym_def_type_statement_token7] = ACTIONS(8052), + [aux_sym_def_type_statement_token8] = ACTIONS(8052), + [aux_sym_def_type_statement_token9] = ACTIONS(8052), + [aux_sym_def_type_statement_token10] = ACTIONS(8052), + [aux_sym_def_type_statement_token11] = ACTIONS(8052), + [aux_sym_def_type_statement_token12] = ACTIONS(8052), + [aux_sym_def_type_statement_token13] = ACTIONS(8052), + [aux_sym_def_type_statement_token14] = ACTIONS(8052), + [aux_sym_call_statement_token1] = ACTIONS(8052), + [sym__ambiguous_call_statement] = ACTIONS(8052), + [aux_sym_addressof_expression_token1] = ACTIONS(8052), + [aux_sym_type_of_expression_token1] = ACTIONS(8052), + [aux_sym_unary_expression_token1] = ACTIONS(8052), + [sym_string_literal] = ACTIONS(8054), + [sym_number_literal] = ACTIONS(8054), + [aux_sym_boolean_literal_token1] = ACTIONS(8052), + [aux_sym_boolean_literal_token2] = ACTIONS(8052), + [sym_nothing_literal] = ACTIONS(8052), + [sym_null_literal] = ACTIONS(8052), + [sym_empty_literal] = ACTIONS(8052), + [sym_date_literal] = ACTIONS(8054), + [anon_sym_POUND] = ACTIONS(8052), + }, + [STATE(3725)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_declaration_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4609), + [aux_sym_enum_declaration_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4609), + [aux_sym_declare_function_statement_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [aux_sym__property_get_header_token1] = ACTIONS(4609), + [aux_sym_event_declaration_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(3726)] = { + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_declaration_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7949), + [aux_sym_enum_declaration_token1] = ACTIONS(7949), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7949), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7949), + [aux_sym_declare_function_statement_token1] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [aux_sym__property_get_header_token1] = ACTIONS(7949), + [aux_sym_event_declaration_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(7951), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(3727)] = { + [sym_identifier] = ACTIONS(6396), + [sym_newline] = ACTIONS(6398), + [anon_sym_COLON] = ACTIONS(6398), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6396), + [aux_sym_frm_property_statement_token1] = ACTIONS(6396), + [anon_sym_DOT] = ACTIONS(6396), + [anon_sym_BANG] = ACTIONS(6398), + [aux_sym__attribute_identifier_token1] = ACTIONS(6396), + [aux_sym_option_statement_token3] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6396), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6396), + [aux_sym_preprocessor_const_token1] = ACTIONS(6396), + [sym_static_modifier] = ACTIONS(6396), + [sym__dim_keyword] = ACTIONS(6396), + [sym__redim_keyword] = ACTIONS(6396), + [aux_sym_get_accessor_token1] = ACTIONS(6396), + [aux_sym_set_accessor_token1] = ACTIONS(6396), + [aux_sym_const_declaration_token1] = ACTIONS(6396), + [anon_sym_LPAREN] = ACTIONS(6398), + [aux_sym_as_type_clause_token2] = ACTIONS(6396), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6396), + [aux_sym_visibility_token1] = ACTIONS(6396), + [aux_sym_visibility_token2] = ACTIONS(6396), + [aux_sym_elseif_fragment_token1] = ACTIONS(6396), + [aux_sym_else_fragment_token1] = ACTIONS(6396), + [aux_sym_select_statement_token1] = ACTIONS(6396), + [aux_sym__for_header_token1] = ACTIONS(6396), + [aux_sym_do_statement_token1] = ACTIONS(6396), + [aux_sym_do_condition_token1] = ACTIONS(6396), + [aux_sym_with_statement_token1] = ACTIONS(6396), + [aux_sym_exit_statement_token1] = ACTIONS(6396), + [sym_end_statement] = ACTIONS(6398), + [aux_sym_on_goto_statement_token1] = ACTIONS(6396), + [aux_sym_on_goto_statement_token2] = ACTIONS(6396), + [aux_sym_on_error_statement_token2] = ACTIONS(6396), + [sym__ambiguous_redim_statement] = ACTIONS(6398), + [aux_sym_erase_statement_token1] = ACTIONS(6396), + [aux_sym_open_statement_token1] = ACTIONS(6396), + [aux_sym_file_mode_token2] = ACTIONS(6396), + [aux_sym_file_access_token2] = ACTIONS(6396), + [aux_sym_file_lock_token2] = ACTIONS(6396), + [aux_sym_print_statement_token1] = ACTIONS(6396), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_QMARK] = ACTIONS(6398), + [aux_sym_close_statement_token1] = ACTIONS(6396), + [aux_sym_put_statement_token1] = ACTIONS(6396), + [aux_sym_unlock_statement_token1] = ACTIONS(6396), + [aux_sym_seek_statement_token1] = ACTIONS(6396), + [sym_reset_statement] = ACTIONS(6396), + [aux_sym_raise_event_statement_token1] = ACTIONS(6396), + [sym_stop_statement] = ACTIONS(6396), + [sym_beep_statement] = ACTIONS(6396), + [aux_sym_unload_statement_token1] = ACTIONS(6396), + [aux_sym_def_type_statement_token1] = ACTIONS(6396), + [aux_sym_def_type_statement_token2] = ACTIONS(6396), + [aux_sym_def_type_statement_token3] = ACTIONS(6396), + [aux_sym_def_type_statement_token4] = ACTIONS(6396), + [aux_sym_def_type_statement_token5] = ACTIONS(6396), + [aux_sym_def_type_statement_token6] = ACTIONS(6396), + [aux_sym_def_type_statement_token7] = ACTIONS(6396), + [aux_sym_def_type_statement_token8] = ACTIONS(6396), + [aux_sym_def_type_statement_token9] = ACTIONS(6396), + [aux_sym_def_type_statement_token10] = ACTIONS(6396), + [aux_sym_def_type_statement_token11] = ACTIONS(6396), + [aux_sym_def_type_statement_token12] = ACTIONS(6396), + [aux_sym_def_type_statement_token13] = ACTIONS(6396), + [aux_sym_def_type_statement_token14] = ACTIONS(6396), + [aux_sym_call_statement_token1] = ACTIONS(6396), + [sym__ambiguous_call_statement] = ACTIONS(6396), + [aux_sym_addressof_expression_token1] = ACTIONS(6396), + [aux_sym_type_of_expression_token1] = ACTIONS(6396), + [aux_sym_unary_expression_token1] = ACTIONS(6396), + [sym_string_literal] = ACTIONS(6398), + [sym_number_literal] = ACTIONS(6398), + [aux_sym_boolean_literal_token1] = ACTIONS(6396), + [aux_sym_boolean_literal_token2] = ACTIONS(6396), + [sym_nothing_literal] = ACTIONS(6396), + [sym_null_literal] = ACTIONS(6396), + [sym_empty_literal] = ACTIONS(6396), + [sym_date_literal] = ACTIONS(6398), + [anon_sym_POUND] = ACTIONS(6396), + }, + [STATE(3728)] = { + [sym_parameter_list] = STATE(3857), + [sym_identifier] = ACTIONS(8641), + [sym_newline] = ACTIONS(8643), + [anon_sym_COLON] = ACTIONS(8643), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8641), + [aux_sym_frm_property_statement_token1] = ACTIONS(8641), + [anon_sym_DOT] = ACTIONS(8641), + [anon_sym_BANG] = ACTIONS(8643), + [aux_sym__attribute_identifier_token1] = ACTIONS(8641), + [aux_sym_option_statement_token3] = ACTIONS(8641), + [aux_sym_type_declaration_token1] = ACTIONS(8641), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8641), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8641), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8641), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8641), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8641), + [aux_sym_enum_declaration_token1] = ACTIONS(8641), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8641), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8641), + [aux_sym_declare_function_statement_token1] = ACTIONS(8641), + [aux_sym_preprocessor_const_token1] = ACTIONS(8641), + [aux_sym__property_get_header_token1] = ACTIONS(8641), + [aux_sym_event_declaration_token1] = ACTIONS(8641), + [sym_static_modifier] = ACTIONS(8641), + [sym__dim_keyword] = ACTIONS(8641), + [sym__redim_keyword] = ACTIONS(8641), + [aux_sym_get_accessor_token1] = ACTIONS(8641), + [aux_sym_set_accessor_token1] = ACTIONS(8641), + [aux_sym_const_declaration_token1] = ACTIONS(8641), + [anon_sym_LPAREN] = ACTIONS(8126), + [aux_sym_as_type_clause_token2] = ACTIONS(8641), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8641), + [aux_sym_visibility_token1] = ACTIONS(8641), + [aux_sym_visibility_token2] = ACTIONS(8641), + [aux_sym_elseif_fragment_token1] = ACTIONS(8641), + [aux_sym_else_fragment_token1] = ACTIONS(8641), + [aux_sym_select_statement_token1] = ACTIONS(8641), + [aux_sym__for_header_token1] = ACTIONS(8641), + [aux_sym_do_statement_token1] = ACTIONS(8641), + [aux_sym_do_condition_token1] = ACTIONS(8641), + [aux_sym_with_statement_token1] = ACTIONS(8641), + [aux_sym_exit_statement_token1] = ACTIONS(8641), + [sym_end_statement] = ACTIONS(8643), + [aux_sym_on_goto_statement_token1] = ACTIONS(8641), + [aux_sym_on_goto_statement_token2] = ACTIONS(8641), + [aux_sym_on_error_statement_token2] = ACTIONS(8641), + [sym__ambiguous_redim_statement] = ACTIONS(8643), + [aux_sym_erase_statement_token1] = ACTIONS(8641), + [aux_sym_open_statement_token1] = ACTIONS(8641), + [aux_sym_file_mode_token2] = ACTIONS(8641), + [aux_sym_file_access_token2] = ACTIONS(8641), + [aux_sym_file_lock_token2] = ACTIONS(8641), + [aux_sym_print_statement_token1] = ACTIONS(8641), + [anon_sym_PLUS] = ACTIONS(8643), + [anon_sym_DASH] = ACTIONS(8641), + [anon_sym_QMARK] = ACTIONS(8643), + [aux_sym_close_statement_token1] = ACTIONS(8641), + [aux_sym_put_statement_token1] = ACTIONS(8641), + [aux_sym_unlock_statement_token1] = ACTIONS(8641), + [aux_sym_seek_statement_token1] = ACTIONS(8641), + [sym_reset_statement] = ACTIONS(8641), + [aux_sym_raise_event_statement_token1] = ACTIONS(8641), + [sym_stop_statement] = ACTIONS(8641), + [sym_beep_statement] = ACTIONS(8641), + [aux_sym_unload_statement_token1] = ACTIONS(8641), + [aux_sym_def_type_statement_token1] = ACTIONS(8641), + [aux_sym_def_type_statement_token2] = ACTIONS(8641), + [aux_sym_def_type_statement_token3] = ACTIONS(8641), + [aux_sym_def_type_statement_token4] = ACTIONS(8641), + [aux_sym_def_type_statement_token5] = ACTIONS(8641), + [aux_sym_def_type_statement_token6] = ACTIONS(8641), + [aux_sym_def_type_statement_token7] = ACTIONS(8641), + [aux_sym_def_type_statement_token8] = ACTIONS(8641), + [aux_sym_def_type_statement_token9] = ACTIONS(8641), + [aux_sym_def_type_statement_token10] = ACTIONS(8641), + [aux_sym_def_type_statement_token11] = ACTIONS(8641), + [aux_sym_def_type_statement_token12] = ACTIONS(8641), + [aux_sym_def_type_statement_token13] = ACTIONS(8641), + [aux_sym_def_type_statement_token14] = ACTIONS(8641), + [aux_sym_call_statement_token1] = ACTIONS(8641), + [sym__ambiguous_call_statement] = ACTIONS(8641), + [aux_sym_addressof_expression_token1] = ACTIONS(8641), + [aux_sym_type_of_expression_token1] = ACTIONS(8641), + [aux_sym_unary_expression_token1] = ACTIONS(8641), + [sym_string_literal] = ACTIONS(8643), + [sym_number_literal] = ACTIONS(8643), + [aux_sym_boolean_literal_token1] = ACTIONS(8641), + [aux_sym_boolean_literal_token2] = ACTIONS(8641), + [sym_nothing_literal] = ACTIONS(8641), + [sym_null_literal] = ACTIONS(8641), + [sym_empty_literal] = ACTIONS(8641), + [sym_date_literal] = ACTIONS(8643), + [anon_sym_POUND] = ACTIONS(8641), + }, + [STATE(3729)] = { + [sym_identifier] = ACTIONS(8645), + [sym_newline] = ACTIONS(8647), + [anon_sym_COLON] = ACTIONS(8649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8645), + [aux_sym_frm_property_statement_token1] = ACTIONS(8645), + [anon_sym_DOT] = ACTIONS(8645), + [anon_sym_BANG] = ACTIONS(8647), + [aux_sym__attribute_identifier_token1] = ACTIONS(8645), + [aux_sym_option_statement_token3] = ACTIONS(8645), + [aux_sym_type_declaration_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8645), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8645), + [aux_sym_enum_declaration_token1] = ACTIONS(8645), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8645), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8645), + [aux_sym_declare_function_statement_token1] = ACTIONS(8645), + [aux_sym_preprocessor_const_token1] = ACTIONS(8645), + [aux_sym__property_get_header_token1] = ACTIONS(8645), + [aux_sym_event_declaration_token1] = ACTIONS(8645), + [sym_static_modifier] = ACTIONS(8645), + [sym__dim_keyword] = ACTIONS(8645), + [sym__redim_keyword] = ACTIONS(8645), + [aux_sym_get_accessor_token1] = ACTIONS(8645), + [aux_sym_set_accessor_token1] = ACTIONS(8645), + [aux_sym_const_declaration_token1] = ACTIONS(8645), + [anon_sym_LPAREN] = ACTIONS(8647), + [aux_sym_as_type_clause_token2] = ACTIONS(8645), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8645), + [aux_sym_visibility_token1] = ACTIONS(8645), + [aux_sym_visibility_token2] = ACTIONS(8645), + [aux_sym_elseif_fragment_token1] = ACTIONS(8645), + [aux_sym_else_fragment_token1] = ACTIONS(8645), + [aux_sym_select_statement_token1] = ACTIONS(8645), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8645), + [aux_sym__for_header_token1] = ACTIONS(8645), + [aux_sym_do_statement_token1] = ACTIONS(8645), + [aux_sym_do_condition_token1] = ACTIONS(8645), + [aux_sym_with_statement_token1] = ACTIONS(8645), + [aux_sym_exit_statement_token1] = ACTIONS(8645), + [sym_end_statement] = ACTIONS(8647), + [aux_sym_on_goto_statement_token1] = ACTIONS(8645), + [aux_sym_on_goto_statement_token2] = ACTIONS(8645), + [aux_sym_on_error_statement_token2] = ACTIONS(8645), + [sym__ambiguous_redim_statement] = ACTIONS(8647), + [aux_sym_erase_statement_token1] = ACTIONS(8645), + [aux_sym_open_statement_token1] = ACTIONS(8645), + [aux_sym_file_mode_token2] = ACTIONS(8645), + [aux_sym_file_access_token2] = ACTIONS(8645), + [aux_sym_file_lock_token2] = ACTIONS(8645), + [aux_sym_print_statement_token1] = ACTIONS(8645), + [anon_sym_PLUS] = ACTIONS(8647), + [anon_sym_DASH] = ACTIONS(8645), + [anon_sym_QMARK] = ACTIONS(8647), + [aux_sym_close_statement_token1] = ACTIONS(8645), + [aux_sym_put_statement_token1] = ACTIONS(8645), + [aux_sym_unlock_statement_token1] = ACTIONS(8645), + [aux_sym_seek_statement_token1] = ACTIONS(8645), + [sym_reset_statement] = ACTIONS(8645), + [aux_sym_raise_event_statement_token1] = ACTIONS(8645), + [sym_stop_statement] = ACTIONS(8645), + [sym_beep_statement] = ACTIONS(8645), + [aux_sym_unload_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token2] = ACTIONS(8645), + [aux_sym_def_type_statement_token3] = ACTIONS(8645), + [aux_sym_def_type_statement_token4] = ACTIONS(8645), + [aux_sym_def_type_statement_token5] = ACTIONS(8645), + [aux_sym_def_type_statement_token6] = ACTIONS(8645), + [aux_sym_def_type_statement_token7] = ACTIONS(8645), + [aux_sym_def_type_statement_token8] = ACTIONS(8645), + [aux_sym_def_type_statement_token9] = ACTIONS(8645), + [aux_sym_def_type_statement_token10] = ACTIONS(8645), + [aux_sym_def_type_statement_token11] = ACTIONS(8645), + [aux_sym_def_type_statement_token12] = ACTIONS(8645), + [aux_sym_def_type_statement_token13] = ACTIONS(8645), + [aux_sym_def_type_statement_token14] = ACTIONS(8645), + [aux_sym_call_statement_token1] = ACTIONS(8645), + [sym__ambiguous_call_statement] = ACTIONS(8645), + [aux_sym_addressof_expression_token1] = ACTIONS(8645), + [aux_sym_type_of_expression_token1] = ACTIONS(8645), + [aux_sym_unary_expression_token1] = ACTIONS(8645), + [sym_string_literal] = ACTIONS(8647), + [sym_number_literal] = ACTIONS(8649), + [aux_sym_boolean_literal_token1] = ACTIONS(8645), + [aux_sym_boolean_literal_token2] = ACTIONS(8645), + [sym_nothing_literal] = ACTIONS(8645), + [sym_null_literal] = ACTIONS(8645), + [sym_empty_literal] = ACTIONS(8645), + [sym_date_literal] = ACTIONS(8647), + [anon_sym_POUND] = ACTIONS(8645), + }, + [STATE(3730)] = { + [sym_identifier] = ACTIONS(7984), + [sym_newline] = ACTIONS(7986), + [anon_sym_COLON] = ACTIONS(7986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7984), + [aux_sym_frm_property_statement_token1] = ACTIONS(7984), + [anon_sym_EQ] = ACTIONS(7986), + [anon_sym_DOT] = ACTIONS(7984), + [anon_sym_BANG] = ACTIONS(7986), + [aux_sym__attribute_identifier_token1] = ACTIONS(7984), + [aux_sym_option_statement_token3] = ACTIONS(7984), + [aux_sym_type_declaration_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7984), + [aux_sym_enum_declaration_token1] = ACTIONS(7984), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7984), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7984), + [aux_sym_declare_function_statement_token1] = ACTIONS(7984), + [aux_sym_preprocessor_const_token1] = ACTIONS(7984), + [aux_sym__property_get_header_token1] = ACTIONS(7984), + [aux_sym_event_declaration_token1] = ACTIONS(7984), + [sym_static_modifier] = ACTIONS(7984), + [sym__dim_keyword] = ACTIONS(7984), + [sym__redim_keyword] = ACTIONS(7984), + [aux_sym_get_accessor_token1] = ACTIONS(7984), + [aux_sym_set_accessor_token1] = ACTIONS(7984), + [anon_sym_COMMA] = ACTIONS(7986), + [aux_sym_const_declaration_token1] = ACTIONS(7984), + [anon_sym_LPAREN] = ACTIONS(7986), + [aux_sym_as_type_clause_token1] = ACTIONS(7984), + [aux_sym_as_type_clause_token2] = ACTIONS(7984), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7984), + [aux_sym_visibility_token1] = ACTIONS(7984), + [aux_sym_visibility_token2] = ACTIONS(7984), + [aux_sym_elseif_fragment_token1] = ACTIONS(7984), + [aux_sym_else_fragment_token1] = ACTIONS(7984), + [aux_sym_select_statement_token1] = ACTIONS(7984), + [aux_sym__for_header_token1] = ACTIONS(7984), + [aux_sym_do_statement_token1] = ACTIONS(7984), + [aux_sym_do_condition_token1] = ACTIONS(7984), + [aux_sym_with_statement_token1] = ACTIONS(7984), + [aux_sym_exit_statement_token1] = ACTIONS(7984), + [sym_end_statement] = ACTIONS(7986), + [aux_sym_on_goto_statement_token1] = ACTIONS(7984), + [aux_sym_on_goto_statement_token2] = ACTIONS(7984), + [aux_sym_on_error_statement_token2] = ACTIONS(7984), + [sym__ambiguous_redim_statement] = ACTIONS(7986), + [aux_sym_erase_statement_token1] = ACTIONS(7984), + [aux_sym_open_statement_token1] = ACTIONS(7984), + [aux_sym_file_mode_token2] = ACTIONS(7984), + [aux_sym_file_access_token2] = ACTIONS(7984), + [aux_sym_file_lock_token2] = ACTIONS(7984), + [aux_sym_print_statement_token1] = ACTIONS(7984), + [anon_sym_PLUS] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(7984), + [anon_sym_QMARK] = ACTIONS(7986), + [aux_sym_close_statement_token1] = ACTIONS(7984), + [aux_sym_put_statement_token1] = ACTIONS(7984), + [aux_sym_unlock_statement_token1] = ACTIONS(7984), + [aux_sym_seek_statement_token1] = ACTIONS(7984), + [sym_reset_statement] = ACTIONS(7984), + [aux_sym_raise_event_statement_token1] = ACTIONS(7984), + [sym_stop_statement] = ACTIONS(7984), + [sym_beep_statement] = ACTIONS(7984), + [aux_sym_unload_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token2] = ACTIONS(7984), + [aux_sym_def_type_statement_token3] = ACTIONS(7984), + [aux_sym_def_type_statement_token4] = ACTIONS(7984), + [aux_sym_def_type_statement_token5] = ACTIONS(7984), + [aux_sym_def_type_statement_token6] = ACTIONS(7984), + [aux_sym_def_type_statement_token7] = ACTIONS(7984), + [aux_sym_def_type_statement_token8] = ACTIONS(7984), + [aux_sym_def_type_statement_token9] = ACTIONS(7984), + [aux_sym_def_type_statement_token10] = ACTIONS(7984), + [aux_sym_def_type_statement_token11] = ACTIONS(7984), + [aux_sym_def_type_statement_token12] = ACTIONS(7984), + [aux_sym_def_type_statement_token13] = ACTIONS(7984), + [aux_sym_def_type_statement_token14] = ACTIONS(7984), + [aux_sym_call_statement_token1] = ACTIONS(7984), + [sym__ambiguous_call_statement] = ACTIONS(7984), + [aux_sym_addressof_expression_token1] = ACTIONS(7984), + [aux_sym_type_of_expression_token1] = ACTIONS(7984), + [aux_sym_unary_expression_token1] = ACTIONS(7984), + [sym_string_literal] = ACTIONS(7986), + [sym_number_literal] = ACTIONS(7986), + [aux_sym_boolean_literal_token1] = ACTIONS(7984), + [aux_sym_boolean_literal_token2] = ACTIONS(7984), + [sym_nothing_literal] = ACTIONS(7984), + [sym_null_literal] = ACTIONS(7984), + [sym_empty_literal] = ACTIONS(7984), + [sym_date_literal] = ACTIONS(7986), + [anon_sym_POUND] = ACTIONS(7984), + }, + [STATE(3731)] = { + [sym_identifier] = ACTIONS(8652), + [sym_newline] = ACTIONS(8654), + [anon_sym_COLON] = ACTIONS(8654), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8652), + [aux_sym_frm_property_statement_token1] = ACTIONS(8652), + [anon_sym_DOT] = ACTIONS(8652), + [anon_sym_BANG] = ACTIONS(8654), + [aux_sym__attribute_identifier_token1] = ACTIONS(8652), + [aux_sym_option_statement_token3] = ACTIONS(8652), + [aux_sym_type_declaration_token1] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8652), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8652), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8652), + [aux_sym_enum_declaration_token1] = ACTIONS(8652), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8652), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8652), + [aux_sym_declare_function_statement_token1] = ACTIONS(8652), + [aux_sym_preprocessor_const_token1] = ACTIONS(8652), + [aux_sym__property_get_header_token1] = ACTIONS(8652), + [aux_sym_event_declaration_token1] = ACTIONS(8652), + [sym_static_modifier] = ACTIONS(8652), + [sym__dim_keyword] = ACTIONS(8652), + [sym__redim_keyword] = ACTIONS(8652), + [aux_sym_get_accessor_token1] = ACTIONS(8652), + [aux_sym_set_accessor_token1] = ACTIONS(8652), + [anon_sym_COMMA] = ACTIONS(8656), + [aux_sym_const_declaration_token1] = ACTIONS(8652), + [anon_sym_LPAREN] = ACTIONS(8654), + [aux_sym_as_type_clause_token2] = ACTIONS(8652), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8652), + [aux_sym_visibility_token1] = ACTIONS(8652), + [aux_sym_visibility_token2] = ACTIONS(8652), + [aux_sym_elseif_fragment_token1] = ACTIONS(8652), + [aux_sym_else_fragment_token1] = ACTIONS(8652), + [aux_sym_select_statement_token1] = ACTIONS(8652), + [aux_sym__for_header_token1] = ACTIONS(8652), + [aux_sym_do_statement_token1] = ACTIONS(8652), + [aux_sym_do_condition_token1] = ACTIONS(8652), + [aux_sym_with_statement_token1] = ACTIONS(8652), + [aux_sym_exit_statement_token1] = ACTIONS(8652), + [sym_end_statement] = ACTIONS(8654), + [aux_sym_on_goto_statement_token1] = ACTIONS(8652), + [aux_sym_on_goto_statement_token2] = ACTIONS(8652), + [aux_sym_on_error_statement_token2] = ACTIONS(8652), + [sym__ambiguous_redim_statement] = ACTIONS(8654), + [aux_sym_erase_statement_token1] = ACTIONS(8652), + [aux_sym_open_statement_token1] = ACTIONS(8652), + [aux_sym_file_mode_token2] = ACTIONS(8652), + [aux_sym_file_access_token2] = ACTIONS(8652), + [aux_sym_file_lock_token2] = ACTIONS(8652), + [aux_sym_print_statement_token1] = ACTIONS(8652), + [anon_sym_PLUS] = ACTIONS(8654), + [anon_sym_DASH] = ACTIONS(8652), + [anon_sym_QMARK] = ACTIONS(8654), + [aux_sym_close_statement_token1] = ACTIONS(8652), + [aux_sym_put_statement_token1] = ACTIONS(8652), + [aux_sym_unlock_statement_token1] = ACTIONS(8652), + [aux_sym_seek_statement_token1] = ACTIONS(8652), + [sym_reset_statement] = ACTIONS(8652), + [aux_sym_raise_event_statement_token1] = ACTIONS(8652), + [sym_stop_statement] = ACTIONS(8652), + [sym_beep_statement] = ACTIONS(8652), + [aux_sym_unload_statement_token1] = ACTIONS(8652), + [aux_sym_def_type_statement_token1] = ACTIONS(8652), + [aux_sym_def_type_statement_token2] = ACTIONS(8652), + [aux_sym_def_type_statement_token3] = ACTIONS(8652), + [aux_sym_def_type_statement_token4] = ACTIONS(8652), + [aux_sym_def_type_statement_token5] = ACTIONS(8652), + [aux_sym_def_type_statement_token6] = ACTIONS(8652), + [aux_sym_def_type_statement_token7] = ACTIONS(8652), + [aux_sym_def_type_statement_token8] = ACTIONS(8652), + [aux_sym_def_type_statement_token9] = ACTIONS(8652), + [aux_sym_def_type_statement_token10] = ACTIONS(8652), + [aux_sym_def_type_statement_token11] = ACTIONS(8652), + [aux_sym_def_type_statement_token12] = ACTIONS(8652), + [aux_sym_def_type_statement_token13] = ACTIONS(8652), + [aux_sym_def_type_statement_token14] = ACTIONS(8652), + [aux_sym_call_statement_token1] = ACTIONS(8652), + [sym__ambiguous_call_statement] = ACTIONS(8652), + [aux_sym_addressof_expression_token1] = ACTIONS(8652), + [aux_sym_type_of_expression_token1] = ACTIONS(8652), + [aux_sym_unary_expression_token1] = ACTIONS(8652), + [sym_string_literal] = ACTIONS(8654), + [sym_number_literal] = ACTIONS(8654), + [aux_sym_boolean_literal_token1] = ACTIONS(8652), + [aux_sym_boolean_literal_token2] = ACTIONS(8652), + [sym_nothing_literal] = ACTIONS(8652), + [sym_null_literal] = ACTIONS(8652), + [sym_empty_literal] = ACTIONS(8652), + [sym_date_literal] = ACTIONS(8654), + [anon_sym_POUND] = ACTIONS(8652), + }, + [STATE(3732)] = { + [sym_argument_list] = STATE(10051), + [aux_sym_input_statement_repeat1] = STATE(4107), + [sym_identifier] = ACTIONS(7864), + [sym_newline] = ACTIONS(7866), + [anon_sym_COLON] = ACTIONS(7866), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7864), + [aux_sym_frm_property_statement_token1] = ACTIONS(7864), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_BANG] = ACTIONS(7866), + [aux_sym__attribute_identifier_token1] = ACTIONS(7864), + [aux_sym_option_statement_token3] = ACTIONS(7864), + [aux_sym_type_declaration_token1] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7864), + [aux_sym_enum_declaration_token1] = ACTIONS(7864), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7864), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7864), + [aux_sym_declare_function_statement_token1] = ACTIONS(7864), + [aux_sym_preprocessor_const_token1] = ACTIONS(7864), + [aux_sym__property_get_header_token1] = ACTIONS(7864), + [aux_sym_event_declaration_token1] = ACTIONS(7864), + [sym_static_modifier] = ACTIONS(7864), + [sym__dim_keyword] = ACTIONS(7864), + [sym__redim_keyword] = ACTIONS(7864), + [aux_sym_get_accessor_token1] = ACTIONS(7864), + [aux_sym_set_accessor_token1] = ACTIONS(7864), + [anon_sym_COMMA] = ACTIONS(8658), + [aux_sym_const_declaration_token1] = ACTIONS(7864), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(7864), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7864), + [aux_sym_visibility_token1] = ACTIONS(7864), + [aux_sym_visibility_token2] = ACTIONS(7864), + [aux_sym_elseif_fragment_token1] = ACTIONS(7864), + [aux_sym_else_fragment_token1] = ACTIONS(7864), + [aux_sym_select_statement_token1] = ACTIONS(7864), + [aux_sym__for_header_token1] = ACTIONS(7864), + [aux_sym_do_statement_token1] = ACTIONS(7864), + [aux_sym_do_condition_token1] = ACTIONS(7864), + [aux_sym_with_statement_token1] = ACTIONS(7864), + [aux_sym_exit_statement_token1] = ACTIONS(7864), + [sym_end_statement] = ACTIONS(7866), + [aux_sym_on_goto_statement_token1] = ACTIONS(7864), + [aux_sym_on_goto_statement_token2] = ACTIONS(7864), + [aux_sym_on_error_statement_token2] = ACTIONS(7864), + [sym__ambiguous_redim_statement] = ACTIONS(7866), + [aux_sym_erase_statement_token1] = ACTIONS(7864), + [aux_sym_open_statement_token1] = ACTIONS(7864), + [aux_sym_file_mode_token2] = ACTIONS(7864), + [aux_sym_file_access_token2] = ACTIONS(7864), + [aux_sym_file_lock_token2] = ACTIONS(7864), + [aux_sym_print_statement_token1] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7866), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7866), + [aux_sym_close_statement_token1] = ACTIONS(7864), + [aux_sym_put_statement_token1] = ACTIONS(7864), + [aux_sym_unlock_statement_token1] = ACTIONS(7864), + [aux_sym_seek_statement_token1] = ACTIONS(7864), + [sym_reset_statement] = ACTIONS(7864), + [aux_sym_raise_event_statement_token1] = ACTIONS(7864), + [sym_stop_statement] = ACTIONS(7864), + [sym_beep_statement] = ACTIONS(7864), + [aux_sym_unload_statement_token1] = ACTIONS(7864), + [aux_sym_def_type_statement_token1] = ACTIONS(7864), + [aux_sym_def_type_statement_token2] = ACTIONS(7864), + [aux_sym_def_type_statement_token3] = ACTIONS(7864), + [aux_sym_def_type_statement_token4] = ACTIONS(7864), + [aux_sym_def_type_statement_token5] = ACTIONS(7864), + [aux_sym_def_type_statement_token6] = ACTIONS(7864), + [aux_sym_def_type_statement_token7] = ACTIONS(7864), + [aux_sym_def_type_statement_token8] = ACTIONS(7864), + [aux_sym_def_type_statement_token9] = ACTIONS(7864), + [aux_sym_def_type_statement_token10] = ACTIONS(7864), + [aux_sym_def_type_statement_token11] = ACTIONS(7864), + [aux_sym_def_type_statement_token12] = ACTIONS(7864), + [aux_sym_def_type_statement_token13] = ACTIONS(7864), + [aux_sym_def_type_statement_token14] = ACTIONS(7864), + [aux_sym_call_statement_token1] = ACTIONS(7864), + [sym__ambiguous_call_statement] = ACTIONS(7864), + [aux_sym_addressof_expression_token1] = ACTIONS(7864), + [aux_sym_type_of_expression_token1] = ACTIONS(7864), + [aux_sym_unary_expression_token1] = ACTIONS(7864), + [sym_string_literal] = ACTIONS(7866), + [sym_number_literal] = ACTIONS(7866), + [aux_sym_boolean_literal_token1] = ACTIONS(7864), + [aux_sym_boolean_literal_token2] = ACTIONS(7864), + [sym_nothing_literal] = ACTIONS(7864), + [sym_null_literal] = ACTIONS(7864), + [sym_empty_literal] = ACTIONS(7864), + [sym_date_literal] = ACTIONS(7866), + [anon_sym_POUND] = ACTIONS(7864), + }, + [STATE(3733)] = { + [sym_identifier] = ACTIONS(8660), + [sym_newline] = ACTIONS(8662), + [anon_sym_COLON] = ACTIONS(8662), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8660), + [aux_sym_frm_property_statement_token1] = ACTIONS(8660), + [anon_sym_DOT] = ACTIONS(8660), + [anon_sym_BANG] = ACTIONS(8662), + [aux_sym__attribute_identifier_token1] = ACTIONS(8660), + [aux_sym_option_statement_token3] = ACTIONS(8660), + [aux_sym_type_declaration_token1] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8660), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8660), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8660), + [aux_sym_enum_declaration_token1] = ACTIONS(8660), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8660), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8660), + [aux_sym_declare_function_statement_token1] = ACTIONS(8660), + [aux_sym_preprocessor_const_token1] = ACTIONS(8660), + [aux_sym__property_get_header_token1] = ACTIONS(8660), + [aux_sym_event_declaration_token1] = ACTIONS(8660), + [sym_static_modifier] = ACTIONS(8660), + [sym__dim_keyword] = ACTIONS(8660), + [sym__redim_keyword] = ACTIONS(8660), + [aux_sym_get_accessor_token1] = ACTIONS(8660), + [aux_sym_set_accessor_token1] = ACTIONS(8660), + [anon_sym_COMMA] = ACTIONS(8664), + [aux_sym_const_declaration_token1] = ACTIONS(8660), + [anon_sym_LPAREN] = ACTIONS(8662), + [aux_sym_as_type_clause_token2] = ACTIONS(8660), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8660), + [aux_sym_visibility_token1] = ACTIONS(8660), + [aux_sym_visibility_token2] = ACTIONS(8660), + [aux_sym_elseif_fragment_token1] = ACTIONS(8660), + [aux_sym_else_fragment_token1] = ACTIONS(8660), + [aux_sym_select_statement_token1] = ACTIONS(8660), + [aux_sym__for_header_token1] = ACTIONS(8660), + [aux_sym_do_statement_token1] = ACTIONS(8660), + [aux_sym_do_condition_token1] = ACTIONS(8660), + [aux_sym_with_statement_token1] = ACTIONS(8660), + [aux_sym_exit_statement_token1] = ACTIONS(8660), + [sym_end_statement] = ACTIONS(8662), + [aux_sym_on_goto_statement_token1] = ACTIONS(8660), + [aux_sym_on_goto_statement_token2] = ACTIONS(8660), + [aux_sym_on_error_statement_token2] = ACTIONS(8660), + [sym__ambiguous_redim_statement] = ACTIONS(8662), + [aux_sym_erase_statement_token1] = ACTIONS(8660), + [aux_sym_open_statement_token1] = ACTIONS(8660), + [aux_sym_file_mode_token2] = ACTIONS(8660), + [aux_sym_file_access_token2] = ACTIONS(8660), + [aux_sym_file_lock_token2] = ACTIONS(8660), + [aux_sym_print_statement_token1] = ACTIONS(8660), + [anon_sym_PLUS] = ACTIONS(8662), + [anon_sym_DASH] = ACTIONS(8660), + [anon_sym_QMARK] = ACTIONS(8662), + [aux_sym_close_statement_token1] = ACTIONS(8660), + [aux_sym_put_statement_token1] = ACTIONS(8660), + [aux_sym_unlock_statement_token1] = ACTIONS(8660), + [aux_sym_seek_statement_token1] = ACTIONS(8660), + [sym_reset_statement] = ACTIONS(8660), + [aux_sym_raise_event_statement_token1] = ACTIONS(8660), + [sym_stop_statement] = ACTIONS(8660), + [sym_beep_statement] = ACTIONS(8660), + [aux_sym_unload_statement_token1] = ACTIONS(8660), + [aux_sym_def_type_statement_token1] = ACTIONS(8660), + [aux_sym_def_type_statement_token2] = ACTIONS(8660), + [aux_sym_def_type_statement_token3] = ACTIONS(8660), + [aux_sym_def_type_statement_token4] = ACTIONS(8660), + [aux_sym_def_type_statement_token5] = ACTIONS(8660), + [aux_sym_def_type_statement_token6] = ACTIONS(8660), + [aux_sym_def_type_statement_token7] = ACTIONS(8660), + [aux_sym_def_type_statement_token8] = ACTIONS(8660), + [aux_sym_def_type_statement_token9] = ACTIONS(8660), + [aux_sym_def_type_statement_token10] = ACTIONS(8660), + [aux_sym_def_type_statement_token11] = ACTIONS(8660), + [aux_sym_def_type_statement_token12] = ACTIONS(8660), + [aux_sym_def_type_statement_token13] = ACTIONS(8660), + [aux_sym_def_type_statement_token14] = ACTIONS(8660), + [aux_sym_call_statement_token1] = ACTIONS(8660), + [sym__ambiguous_call_statement] = ACTIONS(8660), + [aux_sym_addressof_expression_token1] = ACTIONS(8660), + [aux_sym_type_of_expression_token1] = ACTIONS(8660), + [aux_sym_unary_expression_token1] = ACTIONS(8660), + [sym_string_literal] = ACTIONS(8662), + [sym_number_literal] = ACTIONS(8662), + [aux_sym_boolean_literal_token1] = ACTIONS(8660), + [aux_sym_boolean_literal_token2] = ACTIONS(8660), + [sym_nothing_literal] = ACTIONS(8660), + [sym_null_literal] = ACTIONS(8660), + [sym_empty_literal] = ACTIONS(8660), + [sym_date_literal] = ACTIONS(8662), + [anon_sym_POUND] = ACTIONS(8660), + }, + [STATE(3734)] = { + [sym_identifier] = ACTIONS(8666), + [sym_newline] = ACTIONS(8668), + [anon_sym_COLON] = ACTIONS(8668), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8666), + [aux_sym_frm_property_statement_token1] = ACTIONS(8666), + [anon_sym_DOT] = ACTIONS(8666), + [anon_sym_BANG] = ACTIONS(8668), + [aux_sym__attribute_identifier_token1] = ACTIONS(8666), + [aux_sym_option_statement_token3] = ACTIONS(8666), + [aux_sym_type_declaration_token1] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8666), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8666), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8666), + [aux_sym_enum_declaration_token1] = ACTIONS(8666), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8666), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8666), + [aux_sym_declare_function_statement_token1] = ACTIONS(8666), + [aux_sym_preprocessor_const_token1] = ACTIONS(8666), + [aux_sym__property_get_header_token1] = ACTIONS(8666), + [aux_sym_event_declaration_token1] = ACTIONS(8666), + [sym_static_modifier] = ACTIONS(8666), + [sym__dim_keyword] = ACTIONS(8666), + [sym__redim_keyword] = ACTIONS(8666), + [aux_sym_get_accessor_token1] = ACTIONS(8666), + [aux_sym_set_accessor_token1] = ACTIONS(8666), + [anon_sym_COMMA] = ACTIONS(8670), + [aux_sym_const_declaration_token1] = ACTIONS(8666), + [anon_sym_LPAREN] = ACTIONS(8668), + [aux_sym_as_type_clause_token2] = ACTIONS(8666), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8666), + [aux_sym_visibility_token1] = ACTIONS(8666), + [aux_sym_visibility_token2] = ACTIONS(8666), + [aux_sym_elseif_fragment_token1] = ACTIONS(8666), + [aux_sym_else_fragment_token1] = ACTIONS(8666), + [aux_sym_select_statement_token1] = ACTIONS(8666), + [aux_sym__for_header_token1] = ACTIONS(8666), + [aux_sym_do_statement_token1] = ACTIONS(8666), + [aux_sym_do_condition_token1] = ACTIONS(8666), + [aux_sym_with_statement_token1] = ACTIONS(8666), + [aux_sym_exit_statement_token1] = ACTIONS(8666), + [sym_end_statement] = ACTIONS(8668), + [aux_sym_on_goto_statement_token1] = ACTIONS(8666), + [aux_sym_on_goto_statement_token2] = ACTIONS(8666), + [aux_sym_on_error_statement_token2] = ACTIONS(8666), + [sym__ambiguous_redim_statement] = ACTIONS(8668), + [aux_sym_erase_statement_token1] = ACTIONS(8666), + [aux_sym_open_statement_token1] = ACTIONS(8666), + [aux_sym_file_mode_token2] = ACTIONS(8666), + [aux_sym_file_access_token2] = ACTIONS(8666), + [aux_sym_file_lock_token2] = ACTIONS(8666), + [aux_sym_print_statement_token1] = ACTIONS(8666), + [anon_sym_PLUS] = ACTIONS(8668), + [anon_sym_DASH] = ACTIONS(8666), + [anon_sym_QMARK] = ACTIONS(8668), + [aux_sym_close_statement_token1] = ACTIONS(8666), + [aux_sym_put_statement_token1] = ACTIONS(8666), + [aux_sym_unlock_statement_token1] = ACTIONS(8666), + [aux_sym_seek_statement_token1] = ACTIONS(8666), + [sym_reset_statement] = ACTIONS(8666), + [aux_sym_raise_event_statement_token1] = ACTIONS(8666), + [sym_stop_statement] = ACTIONS(8666), + [sym_beep_statement] = ACTIONS(8666), + [aux_sym_unload_statement_token1] = ACTIONS(8666), + [aux_sym_def_type_statement_token1] = ACTIONS(8666), + [aux_sym_def_type_statement_token2] = ACTIONS(8666), + [aux_sym_def_type_statement_token3] = ACTIONS(8666), + [aux_sym_def_type_statement_token4] = ACTIONS(8666), + [aux_sym_def_type_statement_token5] = ACTIONS(8666), + [aux_sym_def_type_statement_token6] = ACTIONS(8666), + [aux_sym_def_type_statement_token7] = ACTIONS(8666), + [aux_sym_def_type_statement_token8] = ACTIONS(8666), + [aux_sym_def_type_statement_token9] = ACTIONS(8666), + [aux_sym_def_type_statement_token10] = ACTIONS(8666), + [aux_sym_def_type_statement_token11] = ACTIONS(8666), + [aux_sym_def_type_statement_token12] = ACTIONS(8666), + [aux_sym_def_type_statement_token13] = ACTIONS(8666), + [aux_sym_def_type_statement_token14] = ACTIONS(8666), + [aux_sym_call_statement_token1] = ACTIONS(8666), + [sym__ambiguous_call_statement] = ACTIONS(8666), + [aux_sym_addressof_expression_token1] = ACTIONS(8666), + [aux_sym_type_of_expression_token1] = ACTIONS(8666), + [aux_sym_unary_expression_token1] = ACTIONS(8666), + [sym_string_literal] = ACTIONS(8668), + [sym_number_literal] = ACTIONS(8668), + [aux_sym_boolean_literal_token1] = ACTIONS(8666), + [aux_sym_boolean_literal_token2] = ACTIONS(8666), + [sym_nothing_literal] = ACTIONS(8666), + [sym_null_literal] = ACTIONS(8666), + [sym_empty_literal] = ACTIONS(8666), + [sym_date_literal] = ACTIONS(8668), + [anon_sym_POUND] = ACTIONS(8666), + }, + [STATE(3735)] = { + [sym_identifier] = ACTIONS(8672), + [sym_newline] = ACTIONS(8674), + [anon_sym_COLON] = ACTIONS(8674), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8672), + [aux_sym_frm_property_statement_token1] = ACTIONS(8672), + [anon_sym_DOT] = ACTIONS(8672), + [anon_sym_BANG] = ACTIONS(8674), + [aux_sym__attribute_identifier_token1] = ACTIONS(8672), + [aux_sym_option_statement_token3] = ACTIONS(8672), + [aux_sym_type_declaration_token1] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8672), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8672), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8672), + [aux_sym_enum_declaration_token1] = ACTIONS(8672), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8672), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8672), + [aux_sym_declare_function_statement_token1] = ACTIONS(8672), + [aux_sym_preprocessor_const_token1] = ACTIONS(8672), + [aux_sym__property_get_header_token1] = ACTIONS(8672), + [aux_sym_event_declaration_token1] = ACTIONS(8672), + [sym_static_modifier] = ACTIONS(8672), + [sym__dim_keyword] = ACTIONS(8672), + [sym__redim_keyword] = ACTIONS(8672), + [aux_sym_get_accessor_token1] = ACTIONS(8672), + [aux_sym_set_accessor_token1] = ACTIONS(8672), + [anon_sym_COMMA] = ACTIONS(8674), + [aux_sym_const_declaration_token1] = ACTIONS(8672), + [anon_sym_LPAREN] = ACTIONS(8674), + [aux_sym_as_type_clause_token2] = ACTIONS(8672), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8672), + [aux_sym_visibility_token1] = ACTIONS(8672), + [aux_sym_visibility_token2] = ACTIONS(8672), + [aux_sym_elseif_fragment_token1] = ACTIONS(8672), + [aux_sym_else_fragment_token1] = ACTIONS(8672), + [aux_sym_select_statement_token1] = ACTIONS(8672), + [aux_sym__for_header_token1] = ACTIONS(8672), + [aux_sym_do_statement_token1] = ACTIONS(8672), + [aux_sym_do_condition_token1] = ACTIONS(8672), + [aux_sym_with_statement_token1] = ACTIONS(8672), + [aux_sym_exit_statement_token1] = ACTIONS(8672), + [sym_end_statement] = ACTIONS(8674), + [aux_sym_on_goto_statement_token1] = ACTIONS(8672), + [aux_sym_on_goto_statement_token2] = ACTIONS(8672), + [aux_sym_on_error_statement_token2] = ACTIONS(8672), + [sym__ambiguous_redim_statement] = ACTIONS(8674), + [aux_sym_erase_statement_token1] = ACTIONS(8672), + [aux_sym_open_statement_token1] = ACTIONS(8672), + [aux_sym_file_mode_token2] = ACTIONS(8672), + [aux_sym_file_access_token2] = ACTIONS(8672), + [aux_sym_file_lock_token2] = ACTIONS(8672), + [aux_sym_print_statement_token1] = ACTIONS(8672), + [anon_sym_PLUS] = ACTIONS(8674), + [anon_sym_DASH] = ACTIONS(8672), + [anon_sym_QMARK] = ACTIONS(8674), + [aux_sym_close_statement_token1] = ACTIONS(8672), + [aux_sym_put_statement_token1] = ACTIONS(8672), + [aux_sym_unlock_statement_token1] = ACTIONS(8672), + [aux_sym_seek_statement_token1] = ACTIONS(8672), + [sym_reset_statement] = ACTIONS(8672), + [aux_sym_raise_event_statement_token1] = ACTIONS(8672), + [sym_stop_statement] = ACTIONS(8672), + [sym_beep_statement] = ACTIONS(8672), + [aux_sym_unload_statement_token1] = ACTIONS(8672), + [aux_sym_def_type_statement_token1] = ACTIONS(8672), + [aux_sym_def_type_statement_token2] = ACTIONS(8672), + [aux_sym_def_type_statement_token3] = ACTIONS(8672), + [aux_sym_def_type_statement_token4] = ACTIONS(8672), + [aux_sym_def_type_statement_token5] = ACTIONS(8672), + [aux_sym_def_type_statement_token6] = ACTIONS(8672), + [aux_sym_def_type_statement_token7] = ACTIONS(8672), + [aux_sym_def_type_statement_token8] = ACTIONS(8672), + [aux_sym_def_type_statement_token9] = ACTIONS(8672), + [aux_sym_def_type_statement_token10] = ACTIONS(8672), + [aux_sym_def_type_statement_token11] = ACTIONS(8672), + [aux_sym_def_type_statement_token12] = ACTIONS(8672), + [aux_sym_def_type_statement_token13] = ACTIONS(8672), + [aux_sym_def_type_statement_token14] = ACTIONS(8672), + [aux_sym_call_statement_token1] = ACTIONS(8672), + [sym__ambiguous_call_statement] = ACTIONS(8672), + [aux_sym_addressof_expression_token1] = ACTIONS(8672), + [aux_sym_type_of_expression_token1] = ACTIONS(8672), + [aux_sym_unary_expression_token1] = ACTIONS(8672), + [sym_string_literal] = ACTIONS(8674), + [sym_number_literal] = ACTIONS(8674), + [aux_sym_boolean_literal_token1] = ACTIONS(8672), + [aux_sym_boolean_literal_token2] = ACTIONS(8672), + [sym_nothing_literal] = ACTIONS(8672), + [sym_null_literal] = ACTIONS(8672), + [sym_empty_literal] = ACTIONS(8672), + [sym_date_literal] = ACTIONS(8674), + [anon_sym_POUND] = ACTIONS(8672), + }, + [STATE(3736)] = { + [sym_identifier] = ACTIONS(6617), + [sym_newline] = ACTIONS(6619), + [anon_sym_COLON] = ACTIONS(6619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6617), + [aux_sym_frm_property_statement_token1] = ACTIONS(6617), + [anon_sym_DOT] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(6619), + [aux_sym__attribute_identifier_token1] = ACTIONS(6617), + [aux_sym_option_statement_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6617), + [aux_sym_preprocessor_const_token1] = ACTIONS(6617), + [sym_static_modifier] = ACTIONS(6617), + [sym__dim_keyword] = ACTIONS(6617), + [sym__redim_keyword] = ACTIONS(6617), + [aux_sym_get_accessor_token1] = ACTIONS(6617), + [aux_sym_set_accessor_token1] = ACTIONS(6617), + [aux_sym_const_declaration_token1] = ACTIONS(6617), + [anon_sym_LPAREN] = ACTIONS(6619), + [aux_sym_as_type_clause_token2] = ACTIONS(6617), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6617), + [aux_sym_visibility_token1] = ACTIONS(6617), + [aux_sym_visibility_token2] = ACTIONS(6617), + [aux_sym_elseif_fragment_token1] = ACTIONS(6617), + [aux_sym_else_fragment_token1] = ACTIONS(6617), + [aux_sym_select_statement_token1] = ACTIONS(6617), + [aux_sym__for_header_token1] = ACTIONS(6617), + [aux_sym_do_statement_token1] = ACTIONS(6617), + [aux_sym_do_condition_token1] = ACTIONS(6617), + [aux_sym_with_statement_token1] = ACTIONS(6617), + [aux_sym_exit_statement_token1] = ACTIONS(6617), + [sym_end_statement] = ACTIONS(6619), + [aux_sym_on_goto_statement_token1] = ACTIONS(6617), + [aux_sym_on_goto_statement_token2] = ACTIONS(6617), + [aux_sym_on_error_statement_token2] = ACTIONS(6617), + [sym__ambiguous_redim_statement] = ACTIONS(6619), + [aux_sym_erase_statement_token1] = ACTIONS(6617), + [aux_sym_open_statement_token1] = ACTIONS(6617), + [aux_sym_file_mode_token2] = ACTIONS(6617), + [aux_sym_file_access_token2] = ACTIONS(6617), + [aux_sym_file_lock_token2] = ACTIONS(6617), + [aux_sym_print_statement_token1] = ACTIONS(6617), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7776), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7778), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6488), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6490), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6492), + [anon_sym_QMARK] = ACTIONS(6619), + [aux_sym_close_statement_token1] = ACTIONS(6617), + [aux_sym_put_statement_token1] = ACTIONS(6617), + [aux_sym_unlock_statement_token1] = ACTIONS(6617), + [aux_sym_seek_statement_token1] = ACTIONS(6617), + [sym_reset_statement] = ACTIONS(6617), + [aux_sym_raise_event_statement_token1] = ACTIONS(6617), + [sym_stop_statement] = ACTIONS(6617), + [sym_beep_statement] = ACTIONS(6617), + [aux_sym_unload_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token2] = ACTIONS(6617), + [aux_sym_def_type_statement_token3] = ACTIONS(6617), + [aux_sym_def_type_statement_token4] = ACTIONS(6617), + [aux_sym_def_type_statement_token5] = ACTIONS(6617), + [aux_sym_def_type_statement_token6] = ACTIONS(6617), + [aux_sym_def_type_statement_token7] = ACTIONS(6617), + [aux_sym_def_type_statement_token8] = ACTIONS(6617), + [aux_sym_def_type_statement_token9] = ACTIONS(6617), + [aux_sym_def_type_statement_token10] = ACTIONS(6617), + [aux_sym_def_type_statement_token11] = ACTIONS(6617), + [aux_sym_def_type_statement_token12] = ACTIONS(6617), + [aux_sym_def_type_statement_token13] = ACTIONS(6617), + [aux_sym_def_type_statement_token14] = ACTIONS(6617), + [aux_sym_call_statement_token1] = ACTIONS(6617), + [sym__ambiguous_call_statement] = ACTIONS(6617), + [aux_sym_addressof_expression_token1] = ACTIONS(6617), + [aux_sym_type_of_expression_token1] = ACTIONS(6617), + [aux_sym_unary_expression_token1] = ACTIONS(6617), + [sym_string_literal] = ACTIONS(6619), + [sym_number_literal] = ACTIONS(6619), + [aux_sym_boolean_literal_token1] = ACTIONS(6617), + [aux_sym_boolean_literal_token2] = ACTIONS(6617), + [sym_nothing_literal] = ACTIONS(6617), + [sym_null_literal] = ACTIONS(6617), + [sym_empty_literal] = ACTIONS(6617), + [sym_date_literal] = ACTIONS(6619), + [anon_sym_POUND] = ACTIONS(6617), + }, + [STATE(3737)] = { + [sym_parameter_list] = STATE(4170), + [sym_identifier] = ACTIONS(8676), + [sym_newline] = ACTIONS(8678), + [anon_sym_COLON] = ACTIONS(8678), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8676), + [aux_sym_frm_property_statement_token1] = ACTIONS(8676), + [anon_sym_DOT] = ACTIONS(8676), + [anon_sym_BANG] = ACTIONS(8678), + [aux_sym__attribute_identifier_token1] = ACTIONS(8676), + [aux_sym_option_statement_token3] = ACTIONS(8676), + [aux_sym_type_declaration_token1] = ACTIONS(8676), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8676), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8676), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8676), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8676), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8676), + [aux_sym_enum_declaration_token1] = ACTIONS(8676), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8676), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8676), + [aux_sym_declare_function_statement_token1] = ACTIONS(8676), + [aux_sym_preprocessor_const_token1] = ACTIONS(8676), + [aux_sym__property_get_header_token1] = ACTIONS(8676), + [aux_sym_event_declaration_token1] = ACTIONS(8676), + [sym_static_modifier] = ACTIONS(8676), + [sym__dim_keyword] = ACTIONS(8676), + [sym__redim_keyword] = ACTIONS(8676), + [aux_sym_get_accessor_token1] = ACTIONS(8676), + [aux_sym_set_accessor_token1] = ACTIONS(8676), + [aux_sym_const_declaration_token1] = ACTIONS(8676), + [anon_sym_LPAREN] = ACTIONS(8126), + [aux_sym_as_type_clause_token2] = ACTIONS(8676), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8676), + [aux_sym_visibility_token1] = ACTIONS(8676), + [aux_sym_visibility_token2] = ACTIONS(8676), + [aux_sym_elseif_fragment_token1] = ACTIONS(8676), + [aux_sym_else_fragment_token1] = ACTIONS(8676), + [aux_sym_select_statement_token1] = ACTIONS(8676), + [aux_sym__for_header_token1] = ACTIONS(8676), + [aux_sym_do_statement_token1] = ACTIONS(8676), + [aux_sym_do_condition_token1] = ACTIONS(8676), + [aux_sym_with_statement_token1] = ACTIONS(8676), + [aux_sym_exit_statement_token1] = ACTIONS(8676), + [sym_end_statement] = ACTIONS(8678), + [aux_sym_on_goto_statement_token1] = ACTIONS(8676), + [aux_sym_on_goto_statement_token2] = ACTIONS(8676), + [aux_sym_on_error_statement_token2] = ACTIONS(8676), + [sym__ambiguous_redim_statement] = ACTIONS(8678), + [aux_sym_erase_statement_token1] = ACTIONS(8676), + [aux_sym_open_statement_token1] = ACTIONS(8676), + [aux_sym_file_mode_token2] = ACTIONS(8676), + [aux_sym_file_access_token2] = ACTIONS(8676), + [aux_sym_file_lock_token2] = ACTIONS(8676), + [aux_sym_print_statement_token1] = ACTIONS(8676), + [anon_sym_PLUS] = ACTIONS(8678), + [anon_sym_DASH] = ACTIONS(8676), + [anon_sym_QMARK] = ACTIONS(8678), + [aux_sym_close_statement_token1] = ACTIONS(8676), + [aux_sym_put_statement_token1] = ACTIONS(8676), + [aux_sym_unlock_statement_token1] = ACTIONS(8676), + [aux_sym_seek_statement_token1] = ACTIONS(8676), + [sym_reset_statement] = ACTIONS(8676), + [aux_sym_raise_event_statement_token1] = ACTIONS(8676), + [sym_stop_statement] = ACTIONS(8676), + [sym_beep_statement] = ACTIONS(8676), + [aux_sym_unload_statement_token1] = ACTIONS(8676), + [aux_sym_def_type_statement_token1] = ACTIONS(8676), + [aux_sym_def_type_statement_token2] = ACTIONS(8676), + [aux_sym_def_type_statement_token3] = ACTIONS(8676), + [aux_sym_def_type_statement_token4] = ACTIONS(8676), + [aux_sym_def_type_statement_token5] = ACTIONS(8676), + [aux_sym_def_type_statement_token6] = ACTIONS(8676), + [aux_sym_def_type_statement_token7] = ACTIONS(8676), + [aux_sym_def_type_statement_token8] = ACTIONS(8676), + [aux_sym_def_type_statement_token9] = ACTIONS(8676), + [aux_sym_def_type_statement_token10] = ACTIONS(8676), + [aux_sym_def_type_statement_token11] = ACTIONS(8676), + [aux_sym_def_type_statement_token12] = ACTIONS(8676), + [aux_sym_def_type_statement_token13] = ACTIONS(8676), + [aux_sym_def_type_statement_token14] = ACTIONS(8676), + [aux_sym_call_statement_token1] = ACTIONS(8676), + [sym__ambiguous_call_statement] = ACTIONS(8676), + [aux_sym_addressof_expression_token1] = ACTIONS(8676), + [aux_sym_type_of_expression_token1] = ACTIONS(8676), + [aux_sym_unary_expression_token1] = ACTIONS(8676), + [sym_string_literal] = ACTIONS(8678), + [sym_number_literal] = ACTIONS(8678), + [aux_sym_boolean_literal_token1] = ACTIONS(8676), + [aux_sym_boolean_literal_token2] = ACTIONS(8676), + [sym_nothing_literal] = ACTIONS(8676), + [sym_null_literal] = ACTIONS(8676), + [sym_empty_literal] = ACTIONS(8676), + [sym_date_literal] = ACTIONS(8678), + [anon_sym_POUND] = ACTIONS(8676), + }, + [STATE(3738)] = { + [sym_identifier] = ACTIONS(8680), + [sym_newline] = ACTIONS(8682), + [anon_sym_COLON] = ACTIONS(8682), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8680), + [aux_sym_frm_property_statement_token1] = ACTIONS(8680), + [anon_sym_DOT] = ACTIONS(8680), + [anon_sym_BANG] = ACTIONS(8682), + [aux_sym__attribute_identifier_token1] = ACTIONS(8680), + [aux_sym_option_statement_token3] = ACTIONS(8680), + [aux_sym_type_declaration_token1] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8680), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8680), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8680), + [aux_sym_enum_declaration_token1] = ACTIONS(8680), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8680), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8680), + [aux_sym_declare_function_statement_token1] = ACTIONS(8680), + [aux_sym_preprocessor_const_token1] = ACTIONS(8680), + [aux_sym__property_get_header_token1] = ACTIONS(8680), + [aux_sym_event_declaration_token1] = ACTIONS(8680), + [sym_static_modifier] = ACTIONS(8680), + [sym__dim_keyword] = ACTIONS(8680), + [sym__redim_keyword] = ACTIONS(8680), + [aux_sym_get_accessor_token1] = ACTIONS(8680), + [aux_sym_set_accessor_token1] = ACTIONS(8680), + [anon_sym_COMMA] = ACTIONS(8682), + [aux_sym_const_declaration_token1] = ACTIONS(8680), + [anon_sym_LPAREN] = ACTIONS(8682), + [aux_sym_as_type_clause_token2] = ACTIONS(8680), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8680), + [aux_sym_visibility_token1] = ACTIONS(8680), + [aux_sym_visibility_token2] = ACTIONS(8680), + [aux_sym_elseif_fragment_token1] = ACTIONS(8680), + [aux_sym_else_fragment_token1] = ACTIONS(8680), + [aux_sym_select_statement_token1] = ACTIONS(8680), + [aux_sym__for_header_token1] = ACTIONS(8680), + [aux_sym_do_statement_token1] = ACTIONS(8680), + [aux_sym_do_condition_token1] = ACTIONS(8680), + [aux_sym_with_statement_token1] = ACTIONS(8680), + [aux_sym_exit_statement_token1] = ACTIONS(8680), + [sym_end_statement] = ACTIONS(8682), + [aux_sym_on_goto_statement_token1] = ACTIONS(8680), + [aux_sym_on_goto_statement_token2] = ACTIONS(8680), + [aux_sym_on_error_statement_token2] = ACTIONS(8680), + [sym__ambiguous_redim_statement] = ACTIONS(8682), + [aux_sym_erase_statement_token1] = ACTIONS(8680), + [aux_sym_open_statement_token1] = ACTIONS(8680), + [aux_sym_file_mode_token2] = ACTIONS(8680), + [aux_sym_file_access_token2] = ACTIONS(8680), + [aux_sym_file_lock_token2] = ACTIONS(8680), + [aux_sym_print_statement_token1] = ACTIONS(8680), + [anon_sym_PLUS] = ACTIONS(8682), + [anon_sym_DASH] = ACTIONS(8680), + [anon_sym_QMARK] = ACTIONS(8682), + [aux_sym_close_statement_token1] = ACTIONS(8680), + [aux_sym_put_statement_token1] = ACTIONS(8680), + [aux_sym_unlock_statement_token1] = ACTIONS(8680), + [aux_sym_seek_statement_token1] = ACTIONS(8680), + [sym_reset_statement] = ACTIONS(8680), + [aux_sym_raise_event_statement_token1] = ACTIONS(8680), + [sym_stop_statement] = ACTIONS(8680), + [sym_beep_statement] = ACTIONS(8680), + [aux_sym_unload_statement_token1] = ACTIONS(8680), + [aux_sym_def_type_statement_token1] = ACTIONS(8680), + [aux_sym_def_type_statement_token2] = ACTIONS(8680), + [aux_sym_def_type_statement_token3] = ACTIONS(8680), + [aux_sym_def_type_statement_token4] = ACTIONS(8680), + [aux_sym_def_type_statement_token5] = ACTIONS(8680), + [aux_sym_def_type_statement_token6] = ACTIONS(8680), + [aux_sym_def_type_statement_token7] = ACTIONS(8680), + [aux_sym_def_type_statement_token8] = ACTIONS(8680), + [aux_sym_def_type_statement_token9] = ACTIONS(8680), + [aux_sym_def_type_statement_token10] = ACTIONS(8680), + [aux_sym_def_type_statement_token11] = ACTIONS(8680), + [aux_sym_def_type_statement_token12] = ACTIONS(8680), + [aux_sym_def_type_statement_token13] = ACTIONS(8680), + [aux_sym_def_type_statement_token14] = ACTIONS(8680), + [aux_sym_call_statement_token1] = ACTIONS(8680), + [sym__ambiguous_call_statement] = ACTIONS(8680), + [aux_sym_addressof_expression_token1] = ACTIONS(8680), + [aux_sym_type_of_expression_token1] = ACTIONS(8680), + [aux_sym_unary_expression_token1] = ACTIONS(8680), + [sym_string_literal] = ACTIONS(8682), + [sym_number_literal] = ACTIONS(8682), + [aux_sym_boolean_literal_token1] = ACTIONS(8680), + [aux_sym_boolean_literal_token2] = ACTIONS(8680), + [sym_nothing_literal] = ACTIONS(8680), + [sym_null_literal] = ACTIONS(8680), + [sym_empty_literal] = ACTIONS(8680), + [sym_date_literal] = ACTIONS(8682), + [anon_sym_POUND] = ACTIONS(8680), + }, + [STATE(3739)] = { + [sym_identifier] = ACTIONS(8196), + [sym_newline] = ACTIONS(8198), + [anon_sym_COLON] = ACTIONS(8198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8196), + [aux_sym_frm_property_statement_token1] = ACTIONS(8196), + [anon_sym_DOT] = ACTIONS(8196), + [anon_sym_BANG] = ACTIONS(8198), + [aux_sym__attribute_identifier_token1] = ACTIONS(8196), + [aux_sym_option_statement_token3] = ACTIONS(8196), + [aux_sym_type_declaration_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8196), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8196), + [aux_sym_enum_declaration_token1] = ACTIONS(8196), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8196), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8196), + [aux_sym_declare_function_statement_token1] = ACTIONS(8196), + [aux_sym_preprocessor_const_token1] = ACTIONS(8196), + [aux_sym__property_get_header_token1] = ACTIONS(8196), + [aux_sym_event_declaration_token1] = ACTIONS(8196), + [sym_static_modifier] = ACTIONS(8196), + [sym__dim_keyword] = ACTIONS(8196), + [sym__redim_keyword] = ACTIONS(8196), + [aux_sym_get_accessor_token1] = ACTIONS(8196), + [aux_sym_set_accessor_token1] = ACTIONS(8196), + [anon_sym_COMMA] = ACTIONS(8198), + [aux_sym_const_declaration_token1] = ACTIONS(8196), + [anon_sym_LPAREN] = ACTIONS(8198), + [aux_sym_as_type_clause_token2] = ACTIONS(8196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8196), + [aux_sym_visibility_token1] = ACTIONS(8196), + [aux_sym_visibility_token2] = ACTIONS(8196), + [aux_sym_elseif_fragment_token1] = ACTIONS(8196), + [aux_sym_else_fragment_token1] = ACTIONS(8196), + [aux_sym_select_statement_token1] = ACTIONS(8196), + [aux_sym__for_header_token1] = ACTIONS(8196), + [aux_sym_do_statement_token1] = ACTIONS(8196), + [aux_sym_do_condition_token1] = ACTIONS(8196), + [aux_sym_with_statement_token1] = ACTIONS(8196), + [aux_sym_exit_statement_token1] = ACTIONS(8196), + [sym_end_statement] = ACTIONS(8198), + [aux_sym_on_goto_statement_token1] = ACTIONS(8196), + [aux_sym_on_goto_statement_token2] = ACTIONS(8196), + [aux_sym_on_error_statement_token2] = ACTIONS(8196), + [sym__ambiguous_redim_statement] = ACTIONS(8198), + [aux_sym_erase_statement_token1] = ACTIONS(8196), + [aux_sym_open_statement_token1] = ACTIONS(8196), + [aux_sym_file_mode_token2] = ACTIONS(8196), + [aux_sym_file_access_token2] = ACTIONS(8196), + [aux_sym_file_lock_token2] = ACTIONS(8196), + [aux_sym_print_statement_token1] = ACTIONS(8196), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(8196), + [anon_sym_QMARK] = ACTIONS(8198), + [aux_sym_close_statement_token1] = ACTIONS(8196), + [aux_sym_put_statement_token1] = ACTIONS(8196), + [aux_sym_unlock_statement_token1] = ACTIONS(8196), + [aux_sym_seek_statement_token1] = ACTIONS(8196), + [sym_reset_statement] = ACTIONS(8196), + [aux_sym_raise_event_statement_token1] = ACTIONS(8196), + [sym_stop_statement] = ACTIONS(8196), + [sym_beep_statement] = ACTIONS(8196), + [aux_sym_unload_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token2] = ACTIONS(8196), + [aux_sym_def_type_statement_token3] = ACTIONS(8196), + [aux_sym_def_type_statement_token4] = ACTIONS(8196), + [aux_sym_def_type_statement_token5] = ACTIONS(8196), + [aux_sym_def_type_statement_token6] = ACTIONS(8196), + [aux_sym_def_type_statement_token7] = ACTIONS(8196), + [aux_sym_def_type_statement_token8] = ACTIONS(8196), + [aux_sym_def_type_statement_token9] = ACTIONS(8196), + [aux_sym_def_type_statement_token10] = ACTIONS(8196), + [aux_sym_def_type_statement_token11] = ACTIONS(8196), + [aux_sym_def_type_statement_token12] = ACTIONS(8196), + [aux_sym_def_type_statement_token13] = ACTIONS(8196), + [aux_sym_def_type_statement_token14] = ACTIONS(8196), + [aux_sym_call_statement_token1] = ACTIONS(8196), + [sym__ambiguous_call_statement] = ACTIONS(8196), + [aux_sym_addressof_expression_token1] = ACTIONS(8196), + [aux_sym_type_of_expression_token1] = ACTIONS(8196), + [aux_sym_unary_expression_token1] = ACTIONS(8196), + [sym_string_literal] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8198), + [aux_sym_boolean_literal_token1] = ACTIONS(8196), + [aux_sym_boolean_literal_token2] = ACTIONS(8196), + [sym_nothing_literal] = ACTIONS(8196), + [sym_null_literal] = ACTIONS(8196), + [sym_empty_literal] = ACTIONS(8196), + [sym_date_literal] = ACTIONS(8198), + [anon_sym_POUND] = ACTIONS(8196), + }, + [STATE(3740)] = { + [sym_identifier] = ACTIONS(8022), + [sym_newline] = ACTIONS(8024), + [anon_sym_COLON] = ACTIONS(8024), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8022), + [aux_sym_frm_property_statement_token1] = ACTIONS(8022), + [anon_sym_EQ] = ACTIONS(8024), + [anon_sym_DOT] = ACTIONS(8022), + [anon_sym_BANG] = ACTIONS(8024), + [aux_sym__attribute_identifier_token1] = ACTIONS(8022), + [aux_sym_option_statement_token3] = ACTIONS(8022), + [aux_sym_type_declaration_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8022), + [aux_sym_enum_declaration_token1] = ACTIONS(8022), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8022), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8022), + [aux_sym_declare_function_statement_token1] = ACTIONS(8022), + [aux_sym_preprocessor_const_token1] = ACTIONS(8022), + [aux_sym__property_get_header_token1] = ACTIONS(8022), + [aux_sym_event_declaration_token1] = ACTIONS(8022), + [sym_static_modifier] = ACTIONS(8022), + [sym__dim_keyword] = ACTIONS(8022), + [sym__redim_keyword] = ACTIONS(8022), + [aux_sym_get_accessor_token1] = ACTIONS(8022), + [aux_sym_set_accessor_token1] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8024), + [aux_sym_const_declaration_token1] = ACTIONS(8022), + [anon_sym_LPAREN] = ACTIONS(8024), + [aux_sym_as_type_clause_token1] = ACTIONS(8022), + [aux_sym_as_type_clause_token2] = ACTIONS(8022), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8022), + [aux_sym_visibility_token1] = ACTIONS(8022), + [aux_sym_visibility_token2] = ACTIONS(8022), + [aux_sym_elseif_fragment_token1] = ACTIONS(8022), + [aux_sym_else_fragment_token1] = ACTIONS(8022), + [aux_sym_select_statement_token1] = ACTIONS(8022), + [aux_sym__for_header_token1] = ACTIONS(8022), + [aux_sym_do_statement_token1] = ACTIONS(8022), + [aux_sym_do_condition_token1] = ACTIONS(8022), + [aux_sym_with_statement_token1] = ACTIONS(8022), + [aux_sym_exit_statement_token1] = ACTIONS(8022), + [sym_end_statement] = ACTIONS(8024), + [aux_sym_on_goto_statement_token1] = ACTIONS(8022), + [aux_sym_on_goto_statement_token2] = ACTIONS(8022), + [aux_sym_on_error_statement_token2] = ACTIONS(8022), + [sym__ambiguous_redim_statement] = ACTIONS(8024), + [aux_sym_erase_statement_token1] = ACTIONS(8022), + [aux_sym_open_statement_token1] = ACTIONS(8022), + [aux_sym_file_mode_token2] = ACTIONS(8022), + [aux_sym_file_access_token2] = ACTIONS(8022), + [aux_sym_file_lock_token2] = ACTIONS(8022), + [aux_sym_print_statement_token1] = ACTIONS(8022), + [anon_sym_PLUS] = ACTIONS(8024), + [anon_sym_DASH] = ACTIONS(8022), + [anon_sym_QMARK] = ACTIONS(8024), + [aux_sym_close_statement_token1] = ACTIONS(8022), + [aux_sym_put_statement_token1] = ACTIONS(8022), + [aux_sym_unlock_statement_token1] = ACTIONS(8022), + [aux_sym_seek_statement_token1] = ACTIONS(8022), + [sym_reset_statement] = ACTIONS(8022), + [aux_sym_raise_event_statement_token1] = ACTIONS(8022), + [sym_stop_statement] = ACTIONS(8022), + [sym_beep_statement] = ACTIONS(8022), + [aux_sym_unload_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token2] = ACTIONS(8022), + [aux_sym_def_type_statement_token3] = ACTIONS(8022), + [aux_sym_def_type_statement_token4] = ACTIONS(8022), + [aux_sym_def_type_statement_token5] = ACTIONS(8022), + [aux_sym_def_type_statement_token6] = ACTIONS(8022), + [aux_sym_def_type_statement_token7] = ACTIONS(8022), + [aux_sym_def_type_statement_token8] = ACTIONS(8022), + [aux_sym_def_type_statement_token9] = ACTIONS(8022), + [aux_sym_def_type_statement_token10] = ACTIONS(8022), + [aux_sym_def_type_statement_token11] = ACTIONS(8022), + [aux_sym_def_type_statement_token12] = ACTIONS(8022), + [aux_sym_def_type_statement_token13] = ACTIONS(8022), + [aux_sym_def_type_statement_token14] = ACTIONS(8022), + [aux_sym_call_statement_token1] = ACTIONS(8022), + [sym__ambiguous_call_statement] = ACTIONS(8022), + [aux_sym_addressof_expression_token1] = ACTIONS(8022), + [aux_sym_type_of_expression_token1] = ACTIONS(8022), + [aux_sym_unary_expression_token1] = ACTIONS(8022), + [sym_string_literal] = ACTIONS(8024), + [sym_number_literal] = ACTIONS(8024), + [aux_sym_boolean_literal_token1] = ACTIONS(8022), + [aux_sym_boolean_literal_token2] = ACTIONS(8022), + [sym_nothing_literal] = ACTIONS(8022), + [sym_null_literal] = ACTIONS(8022), + [sym_empty_literal] = ACTIONS(8022), + [sym_date_literal] = ACTIONS(8024), + [anon_sym_POUND] = ACTIONS(8022), + }, + [STATE(3741)] = { + [sym_initializer] = STATE(4292), + [sym_identifier] = ACTIONS(8087), + [sym_newline] = ACTIONS(8089), + [anon_sym_COLON] = ACTIONS(8089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8087), + [aux_sym_frm_property_statement_token1] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(7671), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_BANG] = ACTIONS(8089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8087), + [aux_sym_option_statement_token3] = ACTIONS(8087), + [aux_sym_type_declaration_token1] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8087), + [aux_sym_enum_declaration_token1] = ACTIONS(8087), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8087), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8087), + [aux_sym_declare_function_statement_token1] = ACTIONS(8087), + [aux_sym_preprocessor_const_token1] = ACTIONS(8087), + [aux_sym__property_get_header_token1] = ACTIONS(8087), + [aux_sym_event_declaration_token1] = ACTIONS(8087), + [sym_static_modifier] = ACTIONS(8087), + [sym__dim_keyword] = ACTIONS(8087), + [sym__redim_keyword] = ACTIONS(8087), + [aux_sym_get_accessor_token1] = ACTIONS(8087), + [aux_sym_set_accessor_token1] = ACTIONS(8087), + [anon_sym_COMMA] = ACTIONS(8089), + [aux_sym_const_declaration_token1] = ACTIONS(8087), + [anon_sym_LPAREN] = ACTIONS(8089), + [aux_sym_as_type_clause_token2] = ACTIONS(8087), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8087), + [aux_sym_visibility_token1] = ACTIONS(8087), + [aux_sym_visibility_token2] = ACTIONS(8087), + [aux_sym_elseif_fragment_token1] = ACTIONS(8087), + [aux_sym_else_fragment_token1] = ACTIONS(8087), + [aux_sym_select_statement_token1] = ACTIONS(8087), + [aux_sym__for_header_token1] = ACTIONS(8087), + [aux_sym_do_statement_token1] = ACTIONS(8087), + [aux_sym_do_condition_token1] = ACTIONS(8087), + [aux_sym_with_statement_token1] = ACTIONS(8087), + [aux_sym_exit_statement_token1] = ACTIONS(8087), + [sym_end_statement] = ACTIONS(8089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8087), + [aux_sym_on_goto_statement_token2] = ACTIONS(8087), + [aux_sym_on_error_statement_token2] = ACTIONS(8087), + [sym__ambiguous_redim_statement] = ACTIONS(8089), + [aux_sym_erase_statement_token1] = ACTIONS(8087), + [aux_sym_open_statement_token1] = ACTIONS(8087), + [aux_sym_file_mode_token2] = ACTIONS(8087), + [aux_sym_file_access_token2] = ACTIONS(8087), + [aux_sym_file_lock_token2] = ACTIONS(8087), + [aux_sym_print_statement_token1] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [aux_sym_close_statement_token1] = ACTIONS(8087), + [aux_sym_put_statement_token1] = ACTIONS(8087), + [aux_sym_unlock_statement_token1] = ACTIONS(8087), + [aux_sym_seek_statement_token1] = ACTIONS(8087), + [sym_reset_statement] = ACTIONS(8087), + [aux_sym_raise_event_statement_token1] = ACTIONS(8087), + [sym_stop_statement] = ACTIONS(8087), + [sym_beep_statement] = ACTIONS(8087), + [aux_sym_unload_statement_token1] = ACTIONS(8087), + [aux_sym_def_type_statement_token1] = ACTIONS(8087), + [aux_sym_def_type_statement_token2] = ACTIONS(8087), + [aux_sym_def_type_statement_token3] = ACTIONS(8087), + [aux_sym_def_type_statement_token4] = ACTIONS(8087), + [aux_sym_def_type_statement_token5] = ACTIONS(8087), + [aux_sym_def_type_statement_token6] = ACTIONS(8087), + [aux_sym_def_type_statement_token7] = ACTIONS(8087), + [aux_sym_def_type_statement_token8] = ACTIONS(8087), + [aux_sym_def_type_statement_token9] = ACTIONS(8087), + [aux_sym_def_type_statement_token10] = ACTIONS(8087), + [aux_sym_def_type_statement_token11] = ACTIONS(8087), + [aux_sym_def_type_statement_token12] = ACTIONS(8087), + [aux_sym_def_type_statement_token13] = ACTIONS(8087), + [aux_sym_def_type_statement_token14] = ACTIONS(8087), + [aux_sym_call_statement_token1] = ACTIONS(8087), + [sym__ambiguous_call_statement] = ACTIONS(8087), + [aux_sym_addressof_expression_token1] = ACTIONS(8087), + [aux_sym_type_of_expression_token1] = ACTIONS(8087), + [aux_sym_unary_expression_token1] = ACTIONS(8087), + [sym_string_literal] = ACTIONS(8089), + [sym_number_literal] = ACTIONS(8089), + [aux_sym_boolean_literal_token1] = ACTIONS(8087), + [aux_sym_boolean_literal_token2] = ACTIONS(8087), + [sym_nothing_literal] = ACTIONS(8087), + [sym_null_literal] = ACTIONS(8087), + [sym_empty_literal] = ACTIONS(8087), + [sym_date_literal] = ACTIONS(8089), + [anon_sym_POUND] = ACTIONS(8087), + }, + [STATE(3742)] = { + [sym_fixed_string_length] = STATE(3753), + [sym_array_bounds] = STATE(3861), + [sym_identifier] = ACTIONS(7230), + [sym_newline] = ACTIONS(7232), + [anon_sym_COLON] = ACTIONS(7232), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7230), + [aux_sym_frm_property_statement_token1] = ACTIONS(7230), + [anon_sym_DOT] = ACTIONS(7230), + [anon_sym_BANG] = ACTIONS(7232), + [aux_sym__attribute_identifier_token1] = ACTIONS(7230), + [aux_sym_option_statement_token3] = ACTIONS(7230), + [aux_sym_type_declaration_token1] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7230), + [aux_sym_enum_declaration_token1] = ACTIONS(7230), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7230), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7230), + [aux_sym_declare_function_statement_token1] = ACTIONS(7230), + [aux_sym_preprocessor_const_token1] = ACTIONS(7230), + [aux_sym__property_get_header_token1] = ACTIONS(7230), + [aux_sym_event_declaration_token1] = ACTIONS(7230), + [sym_static_modifier] = ACTIONS(7230), + [sym__dim_keyword] = ACTIONS(7230), + [sym__redim_keyword] = ACTIONS(7230), + [aux_sym_get_accessor_token1] = ACTIONS(7230), + [aux_sym_set_accessor_token1] = ACTIONS(7230), + [aux_sym_const_declaration_token1] = ACTIONS(7230), + [anon_sym_LPAREN] = ACTIONS(7958), + [aux_sym_as_type_clause_token2] = ACTIONS(7230), + [anon_sym_STAR] = ACTIONS(8684), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7230), + [aux_sym_visibility_token1] = ACTIONS(7230), + [aux_sym_visibility_token2] = ACTIONS(7230), + [aux_sym_elseif_fragment_token1] = ACTIONS(7230), + [aux_sym_else_fragment_token1] = ACTIONS(7230), + [aux_sym_select_statement_token1] = ACTIONS(7230), + [aux_sym__for_header_token1] = ACTIONS(7230), + [aux_sym_do_statement_token1] = ACTIONS(7230), + [aux_sym_do_condition_token1] = ACTIONS(7230), + [aux_sym_with_statement_token1] = ACTIONS(7230), + [aux_sym_exit_statement_token1] = ACTIONS(7230), + [sym_end_statement] = ACTIONS(7232), + [aux_sym_on_goto_statement_token1] = ACTIONS(7230), + [aux_sym_on_goto_statement_token2] = ACTIONS(7230), + [aux_sym_on_error_statement_token2] = ACTIONS(7230), + [sym__ambiguous_redim_statement] = ACTIONS(7232), + [aux_sym_erase_statement_token1] = ACTIONS(7230), + [aux_sym_open_statement_token1] = ACTIONS(7230), + [aux_sym_file_mode_token2] = ACTIONS(7230), + [aux_sym_file_access_token2] = ACTIONS(7230), + [aux_sym_file_lock_token2] = ACTIONS(7230), + [aux_sym_print_statement_token1] = ACTIONS(7230), + [anon_sym_PLUS] = ACTIONS(7232), + [anon_sym_DASH] = ACTIONS(7230), + [anon_sym_QMARK] = ACTIONS(7232), + [aux_sym_close_statement_token1] = ACTIONS(7230), + [aux_sym_put_statement_token1] = ACTIONS(7230), + [aux_sym_unlock_statement_token1] = ACTIONS(7230), + [aux_sym_seek_statement_token1] = ACTIONS(7230), + [sym_reset_statement] = ACTIONS(7230), + [aux_sym_raise_event_statement_token1] = ACTIONS(7230), + [sym_stop_statement] = ACTIONS(7230), + [sym_beep_statement] = ACTIONS(7230), + [aux_sym_unload_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token2] = ACTIONS(7230), + [aux_sym_def_type_statement_token3] = ACTIONS(7230), + [aux_sym_def_type_statement_token4] = ACTIONS(7230), + [aux_sym_def_type_statement_token5] = ACTIONS(7230), + [aux_sym_def_type_statement_token6] = ACTIONS(7230), + [aux_sym_def_type_statement_token7] = ACTIONS(7230), + [aux_sym_def_type_statement_token8] = ACTIONS(7230), + [aux_sym_def_type_statement_token9] = ACTIONS(7230), + [aux_sym_def_type_statement_token10] = ACTIONS(7230), + [aux_sym_def_type_statement_token11] = ACTIONS(7230), + [aux_sym_def_type_statement_token12] = ACTIONS(7230), + [aux_sym_def_type_statement_token13] = ACTIONS(7230), + [aux_sym_def_type_statement_token14] = ACTIONS(7230), + [aux_sym_call_statement_token1] = ACTIONS(7230), + [sym__ambiguous_call_statement] = ACTIONS(7230), + [aux_sym_addressof_expression_token1] = ACTIONS(7230), + [aux_sym_type_of_expression_token1] = ACTIONS(7230), + [aux_sym_unary_expression_token1] = ACTIONS(7230), + [sym_string_literal] = ACTIONS(7232), + [sym_number_literal] = ACTIONS(7232), + [aux_sym_boolean_literal_token1] = ACTIONS(7230), + [aux_sym_boolean_literal_token2] = ACTIONS(7230), + [sym_nothing_literal] = ACTIONS(7230), + [sym_null_literal] = ACTIONS(7230), + [sym_empty_literal] = ACTIONS(7230), + [sym_date_literal] = ACTIONS(7232), + [anon_sym_POUND] = ACTIONS(7230), + }, + [STATE(3743)] = { + [sym_identifier] = ACTIONS(6625), + [sym_newline] = ACTIONS(6627), + [anon_sym_COLON] = ACTIONS(6627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6625), + [aux_sym_frm_property_statement_token1] = ACTIONS(6625), + [anon_sym_DOT] = ACTIONS(6625), + [anon_sym_BANG] = ACTIONS(6627), + [aux_sym__attribute_identifier_token1] = ACTIONS(6625), + [aux_sym_option_statement_token3] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6625), + [aux_sym_preprocessor_const_token1] = ACTIONS(6625), + [sym_static_modifier] = ACTIONS(6625), + [sym__dim_keyword] = ACTIONS(6625), + [sym__redim_keyword] = ACTIONS(6625), + [aux_sym_get_accessor_token1] = ACTIONS(6625), + [aux_sym_set_accessor_token1] = ACTIONS(6625), + [aux_sym_const_declaration_token1] = ACTIONS(6625), + [anon_sym_LPAREN] = ACTIONS(6627), + [aux_sym_as_type_clause_token2] = ACTIONS(6625), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6625), + [aux_sym_visibility_token1] = ACTIONS(6625), + [aux_sym_visibility_token2] = ACTIONS(6625), + [aux_sym_elseif_fragment_token1] = ACTIONS(6625), + [aux_sym_else_fragment_token1] = ACTIONS(6625), + [aux_sym_select_statement_token1] = ACTIONS(6625), + [aux_sym__for_header_token1] = ACTIONS(6625), + [aux_sym_do_statement_token1] = ACTIONS(6625), + [aux_sym_do_condition_token1] = ACTIONS(6625), + [aux_sym_with_statement_token1] = ACTIONS(6625), + [aux_sym_exit_statement_token1] = ACTIONS(6625), + [sym_end_statement] = ACTIONS(6627), + [aux_sym_on_goto_statement_token1] = ACTIONS(6625), + [aux_sym_on_goto_statement_token2] = ACTIONS(6625), + [aux_sym_on_error_statement_token2] = ACTIONS(6625), + [sym__ambiguous_redim_statement] = ACTIONS(6627), + [aux_sym_erase_statement_token1] = ACTIONS(6625), + [aux_sym_open_statement_token1] = ACTIONS(6625), + [aux_sym_file_mode_token2] = ACTIONS(6625), + [aux_sym_file_access_token2] = ACTIONS(6625), + [aux_sym_file_lock_token2] = ACTIONS(6625), + [aux_sym_print_statement_token1] = ACTIONS(6625), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_QMARK] = ACTIONS(6627), + [aux_sym_close_statement_token1] = ACTIONS(6625), + [aux_sym_put_statement_token1] = ACTIONS(6625), + [aux_sym_unlock_statement_token1] = ACTIONS(6625), + [aux_sym_seek_statement_token1] = ACTIONS(6625), + [sym_reset_statement] = ACTIONS(6625), + [aux_sym_raise_event_statement_token1] = ACTIONS(6625), + [sym_stop_statement] = ACTIONS(6625), + [sym_beep_statement] = ACTIONS(6625), + [aux_sym_unload_statement_token1] = ACTIONS(6625), + [aux_sym_def_type_statement_token1] = ACTIONS(6625), + [aux_sym_def_type_statement_token2] = ACTIONS(6625), + [aux_sym_def_type_statement_token3] = ACTIONS(6625), + [aux_sym_def_type_statement_token4] = ACTIONS(6625), + [aux_sym_def_type_statement_token5] = ACTIONS(6625), + [aux_sym_def_type_statement_token6] = ACTIONS(6625), + [aux_sym_def_type_statement_token7] = ACTIONS(6625), + [aux_sym_def_type_statement_token8] = ACTIONS(6625), + [aux_sym_def_type_statement_token9] = ACTIONS(6625), + [aux_sym_def_type_statement_token10] = ACTIONS(6625), + [aux_sym_def_type_statement_token11] = ACTIONS(6625), + [aux_sym_def_type_statement_token12] = ACTIONS(6625), + [aux_sym_def_type_statement_token13] = ACTIONS(6625), + [aux_sym_def_type_statement_token14] = ACTIONS(6625), + [aux_sym_call_statement_token1] = ACTIONS(6625), + [sym__ambiguous_call_statement] = ACTIONS(6625), + [aux_sym_addressof_expression_token1] = ACTIONS(6625), + [aux_sym_type_of_expression_token1] = ACTIONS(6625), + [aux_sym_unary_expression_token1] = ACTIONS(6625), + [sym_string_literal] = ACTIONS(6627), + [sym_number_literal] = ACTIONS(6627), + [aux_sym_boolean_literal_token1] = ACTIONS(6625), + [aux_sym_boolean_literal_token2] = ACTIONS(6625), + [sym_nothing_literal] = ACTIONS(6625), + [sym_null_literal] = ACTIONS(6625), + [sym_empty_literal] = ACTIONS(6625), + [sym_date_literal] = ACTIONS(6627), + [anon_sym_POUND] = ACTIONS(6625), + }, + [STATE(3744)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4621), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(3745)] = { + [sym_initializer] = STATE(4296), + [sym_identifier] = ACTIONS(8091), + [sym_newline] = ACTIONS(8093), + [anon_sym_COLON] = ACTIONS(8093), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8091), + [aux_sym_frm_property_statement_token1] = ACTIONS(8091), + [anon_sym_EQ] = ACTIONS(7671), + [anon_sym_DOT] = ACTIONS(8091), + [anon_sym_BANG] = ACTIONS(8093), + [aux_sym__attribute_identifier_token1] = ACTIONS(8091), + [aux_sym_option_statement_token3] = ACTIONS(8091), + [aux_sym_type_declaration_token1] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8091), + [aux_sym_enum_declaration_token1] = ACTIONS(8091), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8091), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8091), + [aux_sym_declare_function_statement_token1] = ACTIONS(8091), + [aux_sym_preprocessor_const_token1] = ACTIONS(8091), + [aux_sym__property_get_header_token1] = ACTIONS(8091), + [aux_sym_event_declaration_token1] = ACTIONS(8091), + [sym_static_modifier] = ACTIONS(8091), + [sym__dim_keyword] = ACTIONS(8091), + [sym__redim_keyword] = ACTIONS(8091), + [aux_sym_get_accessor_token1] = ACTIONS(8091), + [aux_sym_set_accessor_token1] = ACTIONS(8091), + [anon_sym_COMMA] = ACTIONS(8093), + [aux_sym_const_declaration_token1] = ACTIONS(8091), + [anon_sym_LPAREN] = ACTIONS(8093), + [aux_sym_as_type_clause_token2] = ACTIONS(8091), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8091), + [aux_sym_visibility_token1] = ACTIONS(8091), + [aux_sym_visibility_token2] = ACTIONS(8091), + [aux_sym_elseif_fragment_token1] = ACTIONS(8091), + [aux_sym_else_fragment_token1] = ACTIONS(8091), + [aux_sym_select_statement_token1] = ACTIONS(8091), + [aux_sym__for_header_token1] = ACTIONS(8091), + [aux_sym_do_statement_token1] = ACTIONS(8091), + [aux_sym_do_condition_token1] = ACTIONS(8091), + [aux_sym_with_statement_token1] = ACTIONS(8091), + [aux_sym_exit_statement_token1] = ACTIONS(8091), + [sym_end_statement] = ACTIONS(8093), + [aux_sym_on_goto_statement_token1] = ACTIONS(8091), + [aux_sym_on_goto_statement_token2] = ACTIONS(8091), + [aux_sym_on_error_statement_token2] = ACTIONS(8091), + [sym__ambiguous_redim_statement] = ACTIONS(8093), + [aux_sym_erase_statement_token1] = ACTIONS(8091), + [aux_sym_open_statement_token1] = ACTIONS(8091), + [aux_sym_file_mode_token2] = ACTIONS(8091), + [aux_sym_file_access_token2] = ACTIONS(8091), + [aux_sym_file_lock_token2] = ACTIONS(8091), + [aux_sym_print_statement_token1] = ACTIONS(8091), + [anon_sym_PLUS] = ACTIONS(8093), + [anon_sym_DASH] = ACTIONS(8091), + [anon_sym_QMARK] = ACTIONS(8093), + [aux_sym_close_statement_token1] = ACTIONS(8091), + [aux_sym_put_statement_token1] = ACTIONS(8091), + [aux_sym_unlock_statement_token1] = ACTIONS(8091), + [aux_sym_seek_statement_token1] = ACTIONS(8091), + [sym_reset_statement] = ACTIONS(8091), + [aux_sym_raise_event_statement_token1] = ACTIONS(8091), + [sym_stop_statement] = ACTIONS(8091), + [sym_beep_statement] = ACTIONS(8091), + [aux_sym_unload_statement_token1] = ACTIONS(8091), + [aux_sym_def_type_statement_token1] = ACTIONS(8091), + [aux_sym_def_type_statement_token2] = ACTIONS(8091), + [aux_sym_def_type_statement_token3] = ACTIONS(8091), + [aux_sym_def_type_statement_token4] = ACTIONS(8091), + [aux_sym_def_type_statement_token5] = ACTIONS(8091), + [aux_sym_def_type_statement_token6] = ACTIONS(8091), + [aux_sym_def_type_statement_token7] = ACTIONS(8091), + [aux_sym_def_type_statement_token8] = ACTIONS(8091), + [aux_sym_def_type_statement_token9] = ACTIONS(8091), + [aux_sym_def_type_statement_token10] = ACTIONS(8091), + [aux_sym_def_type_statement_token11] = ACTIONS(8091), + [aux_sym_def_type_statement_token12] = ACTIONS(8091), + [aux_sym_def_type_statement_token13] = ACTIONS(8091), + [aux_sym_def_type_statement_token14] = ACTIONS(8091), + [aux_sym_call_statement_token1] = ACTIONS(8091), + [sym__ambiguous_call_statement] = ACTIONS(8091), + [aux_sym_addressof_expression_token1] = ACTIONS(8091), + [aux_sym_type_of_expression_token1] = ACTIONS(8091), + [aux_sym_unary_expression_token1] = ACTIONS(8091), + [sym_string_literal] = ACTIONS(8093), + [sym_number_literal] = ACTIONS(8093), + [aux_sym_boolean_literal_token1] = ACTIONS(8091), + [aux_sym_boolean_literal_token2] = ACTIONS(8091), + [sym_nothing_literal] = ACTIONS(8091), + [sym_null_literal] = ACTIONS(8091), + [sym_empty_literal] = ACTIONS(8091), + [sym_date_literal] = ACTIONS(8093), + [anon_sym_POUND] = ACTIONS(8091), + }, + [STATE(3746)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_declaration_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4597), + [aux_sym_enum_declaration_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4597), + [aux_sym_declare_function_statement_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [aux_sym__property_get_header_token1] = ACTIONS(4597), + [aux_sym_event_declaration_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(3747)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4517), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(3748)] = { + [sym_identifier] = ACTIONS(8686), + [sym_newline] = ACTIONS(8688), + [anon_sym_COLON] = ACTIONS(8688), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8686), + [aux_sym_frm_property_statement_token1] = ACTIONS(8686), + [anon_sym_DOT] = ACTIONS(8686), + [anon_sym_BANG] = ACTIONS(8688), + [aux_sym__attribute_identifier_token1] = ACTIONS(8686), + [aux_sym_option_statement_token3] = ACTIONS(8686), + [aux_sym_type_declaration_token1] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8686), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8686), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8686), + [aux_sym_enum_declaration_token1] = ACTIONS(8686), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8686), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8686), + [aux_sym_declare_function_statement_token1] = ACTIONS(8686), + [aux_sym_preprocessor_const_token1] = ACTIONS(8686), + [aux_sym__property_get_header_token1] = ACTIONS(8686), + [aux_sym_event_declaration_token1] = ACTIONS(8686), + [sym_static_modifier] = ACTIONS(8686), + [sym__dim_keyword] = ACTIONS(8686), + [sym__redim_keyword] = ACTIONS(8686), + [aux_sym_get_accessor_token1] = ACTIONS(8686), + [aux_sym_set_accessor_token1] = ACTIONS(8686), + [aux_sym_const_declaration_token1] = ACTIONS(8686), + [anon_sym_LPAREN] = ACTIONS(8688), + [aux_sym_as_type_clause_token2] = ACTIONS(8686), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8686), + [aux_sym_visibility_token1] = ACTIONS(8686), + [aux_sym_visibility_token2] = ACTIONS(8686), + [aux_sym_elseif_fragment_token1] = ACTIONS(8686), + [aux_sym_else_fragment_token1] = ACTIONS(8686), + [aux_sym_select_statement_token1] = ACTIONS(8686), + [aux_sym__for_header_token1] = ACTIONS(8686), + [aux_sym_do_statement_token1] = ACTIONS(8686), + [aux_sym_do_condition_token1] = ACTIONS(8686), + [aux_sym_with_statement_token1] = ACTIONS(8686), + [aux_sym_exit_statement_token1] = ACTIONS(8686), + [sym_end_statement] = ACTIONS(8688), + [aux_sym_on_goto_statement_token1] = ACTIONS(8686), + [aux_sym_on_goto_statement_token2] = ACTIONS(8686), + [aux_sym_on_error_statement_token2] = ACTIONS(8686), + [sym__ambiguous_redim_statement] = ACTIONS(8688), + [aux_sym_erase_statement_token1] = ACTIONS(8686), + [aux_sym_open_statement_token1] = ACTIONS(8686), + [aux_sym_open_statement_token3] = ACTIONS(8690), + [aux_sym_file_mode_token2] = ACTIONS(8686), + [aux_sym_file_access_token2] = ACTIONS(8686), + [aux_sym_file_lock_token2] = ACTIONS(8686), + [aux_sym_print_statement_token1] = ACTIONS(8686), + [anon_sym_PLUS] = ACTIONS(8688), + [anon_sym_DASH] = ACTIONS(8686), + [anon_sym_QMARK] = ACTIONS(8688), + [aux_sym_close_statement_token1] = ACTIONS(8686), + [aux_sym_put_statement_token1] = ACTIONS(8686), + [aux_sym_unlock_statement_token1] = ACTIONS(8686), + [aux_sym_seek_statement_token1] = ACTIONS(8686), + [sym_reset_statement] = ACTIONS(8686), + [aux_sym_raise_event_statement_token1] = ACTIONS(8686), + [sym_stop_statement] = ACTIONS(8686), + [sym_beep_statement] = ACTIONS(8686), + [aux_sym_unload_statement_token1] = ACTIONS(8686), + [aux_sym_def_type_statement_token1] = ACTIONS(8686), + [aux_sym_def_type_statement_token2] = ACTIONS(8686), + [aux_sym_def_type_statement_token3] = ACTIONS(8686), + [aux_sym_def_type_statement_token4] = ACTIONS(8686), + [aux_sym_def_type_statement_token5] = ACTIONS(8686), + [aux_sym_def_type_statement_token6] = ACTIONS(8686), + [aux_sym_def_type_statement_token7] = ACTIONS(8686), + [aux_sym_def_type_statement_token8] = ACTIONS(8686), + [aux_sym_def_type_statement_token9] = ACTIONS(8686), + [aux_sym_def_type_statement_token10] = ACTIONS(8686), + [aux_sym_def_type_statement_token11] = ACTIONS(8686), + [aux_sym_def_type_statement_token12] = ACTIONS(8686), + [aux_sym_def_type_statement_token13] = ACTIONS(8686), + [aux_sym_def_type_statement_token14] = ACTIONS(8686), + [aux_sym_call_statement_token1] = ACTIONS(8686), + [sym__ambiguous_call_statement] = ACTIONS(8686), + [aux_sym_addressof_expression_token1] = ACTIONS(8686), + [aux_sym_type_of_expression_token1] = ACTIONS(8686), + [aux_sym_unary_expression_token1] = ACTIONS(8686), + [sym_string_literal] = ACTIONS(8688), + [sym_number_literal] = ACTIONS(8688), + [aux_sym_boolean_literal_token1] = ACTIONS(8686), + [aux_sym_boolean_literal_token2] = ACTIONS(8686), + [sym_nothing_literal] = ACTIONS(8686), + [sym_null_literal] = ACTIONS(8686), + [sym_empty_literal] = ACTIONS(8686), + [sym_date_literal] = ACTIONS(8688), + [anon_sym_POUND] = ACTIONS(8686), + }, + [STATE(3749)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(3772), + [sym_identifier] = ACTIONS(8692), + [sym_newline] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(8696), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8692), + [aux_sym_frm_property_statement_token1] = ACTIONS(8692), + [anon_sym_DOT] = ACTIONS(8692), + [anon_sym_BANG] = ACTIONS(8694), + [aux_sym__attribute_identifier_token1] = ACTIONS(8692), + [aux_sym_option_statement_token3] = ACTIONS(8692), + [aux_sym_type_declaration_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8692), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8692), + [aux_sym_enum_declaration_token1] = ACTIONS(8692), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8692), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8692), + [aux_sym_declare_function_statement_token1] = ACTIONS(8692), + [aux_sym_preprocessor_const_token1] = ACTIONS(8692), + [aux_sym__property_get_header_token1] = ACTIONS(8692), + [aux_sym_event_declaration_token1] = ACTIONS(8692), + [sym_static_modifier] = ACTIONS(8692), + [sym__dim_keyword] = ACTIONS(8692), + [sym__redim_keyword] = ACTIONS(8692), + [aux_sym_get_accessor_token1] = ACTIONS(8692), + [aux_sym_set_accessor_token1] = ACTIONS(8692), + [aux_sym_const_declaration_token1] = ACTIONS(8692), + [anon_sym_LPAREN] = ACTIONS(8694), + [aux_sym_as_type_clause_token2] = ACTIONS(8692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8692), + [aux_sym_visibility_token1] = ACTIONS(8692), + [aux_sym_visibility_token2] = ACTIONS(8692), + [aux_sym_elseif_fragment_token1] = ACTIONS(8692), + [aux_sym_else_fragment_token1] = ACTIONS(8698), + [aux_sym_select_statement_token1] = ACTIONS(8692), + [aux_sym__for_header_token1] = ACTIONS(8692), + [aux_sym_do_statement_token1] = ACTIONS(8692), + [aux_sym_do_condition_token1] = ACTIONS(8692), + [aux_sym_with_statement_token1] = ACTIONS(8692), + [aux_sym_exit_statement_token1] = ACTIONS(8692), + [sym_end_statement] = ACTIONS(8694), + [aux_sym_on_goto_statement_token1] = ACTIONS(8692), + [aux_sym_on_goto_statement_token2] = ACTIONS(8692), + [aux_sym_on_error_statement_token2] = ACTIONS(8692), + [sym__ambiguous_redim_statement] = ACTIONS(8694), + [aux_sym_erase_statement_token1] = ACTIONS(8692), + [aux_sym_open_statement_token1] = ACTIONS(8692), + [aux_sym_file_mode_token2] = ACTIONS(8692), + [aux_sym_file_access_token2] = ACTIONS(8692), + [aux_sym_file_lock_token2] = ACTIONS(8692), + [aux_sym_print_statement_token1] = ACTIONS(8692), + [anon_sym_PLUS] = ACTIONS(8694), + [anon_sym_DASH] = ACTIONS(8692), + [anon_sym_QMARK] = ACTIONS(8694), + [aux_sym_close_statement_token1] = ACTIONS(8692), + [aux_sym_put_statement_token1] = ACTIONS(8692), + [aux_sym_unlock_statement_token1] = ACTIONS(8692), + [aux_sym_seek_statement_token1] = ACTIONS(8692), + [sym_reset_statement] = ACTIONS(8692), + [aux_sym_raise_event_statement_token1] = ACTIONS(8692), + [sym_stop_statement] = ACTIONS(8692), + [sym_beep_statement] = ACTIONS(8692), + [aux_sym_unload_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token2] = ACTIONS(8692), + [aux_sym_def_type_statement_token3] = ACTIONS(8692), + [aux_sym_def_type_statement_token4] = ACTIONS(8692), + [aux_sym_def_type_statement_token5] = ACTIONS(8692), + [aux_sym_def_type_statement_token6] = ACTIONS(8692), + [aux_sym_def_type_statement_token7] = ACTIONS(8692), + [aux_sym_def_type_statement_token8] = ACTIONS(8692), + [aux_sym_def_type_statement_token9] = ACTIONS(8692), + [aux_sym_def_type_statement_token10] = ACTIONS(8692), + [aux_sym_def_type_statement_token11] = ACTIONS(8692), + [aux_sym_def_type_statement_token12] = ACTIONS(8692), + [aux_sym_def_type_statement_token13] = ACTIONS(8692), + [aux_sym_def_type_statement_token14] = ACTIONS(8692), + [aux_sym_call_statement_token1] = ACTIONS(8692), + [sym__ambiguous_call_statement] = ACTIONS(8692), + [aux_sym_addressof_expression_token1] = ACTIONS(8692), + [aux_sym_type_of_expression_token1] = ACTIONS(8692), + [aux_sym_unary_expression_token1] = ACTIONS(8692), + [sym_string_literal] = ACTIONS(8694), + [sym_number_literal] = ACTIONS(8694), + [aux_sym_boolean_literal_token1] = ACTIONS(8692), + [aux_sym_boolean_literal_token2] = ACTIONS(8692), + [sym_nothing_literal] = ACTIONS(8692), + [sym_null_literal] = ACTIONS(8692), + [sym_empty_literal] = ACTIONS(8692), + [sym_date_literal] = ACTIONS(8694), + [anon_sym_POUND] = ACTIONS(8692), + }, + [STATE(3750)] = { + [sym_argument_list] = STATE(4137), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7836), + [anon_sym_BANG] = ACTIONS(4034), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_declaration_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_enum_declaration_token1] = ACTIONS(7836), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7836), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7836), + [aux_sym_declare_function_statement_token1] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [aux_sym__property_get_header_token1] = ACTIONS(7836), + [aux_sym_event_declaration_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(8700), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(3751)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(3751), + [sym_identifier] = ACTIONS(8702), + [sym_newline] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(8706), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8702), + [aux_sym_frm_property_statement_token1] = ACTIONS(8702), + [anon_sym_DOT] = ACTIONS(8702), + [anon_sym_BANG] = ACTIONS(8704), + [aux_sym__attribute_identifier_token1] = ACTIONS(8702), + [aux_sym_option_statement_token3] = ACTIONS(8702), + [aux_sym_type_declaration_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8702), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8702), + [aux_sym_enum_declaration_token1] = ACTIONS(8702), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8702), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8702), + [aux_sym_declare_function_statement_token1] = ACTIONS(8702), + [aux_sym_preprocessor_const_token1] = ACTIONS(8702), + [aux_sym__property_get_header_token1] = ACTIONS(8702), + [aux_sym_event_declaration_token1] = ACTIONS(8702), + [sym_static_modifier] = ACTIONS(8702), + [sym__dim_keyword] = ACTIONS(8702), + [sym__redim_keyword] = ACTIONS(8702), + [aux_sym_get_accessor_token1] = ACTIONS(8702), + [aux_sym_set_accessor_token1] = ACTIONS(8702), + [aux_sym_const_declaration_token1] = ACTIONS(8702), + [anon_sym_LPAREN] = ACTIONS(8704), + [aux_sym_as_type_clause_token2] = ACTIONS(8702), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8702), + [aux_sym_visibility_token1] = ACTIONS(8702), + [aux_sym_visibility_token2] = ACTIONS(8702), + [aux_sym_elseif_fragment_token1] = ACTIONS(8702), + [aux_sym_else_fragment_token1] = ACTIONS(8702), + [aux_sym_select_statement_token1] = ACTIONS(8702), + [aux_sym__for_header_token1] = ACTIONS(8702), + [aux_sym_do_statement_token1] = ACTIONS(8702), + [aux_sym_do_condition_token1] = ACTIONS(8702), + [aux_sym_with_statement_token1] = ACTIONS(8702), + [aux_sym_exit_statement_token1] = ACTIONS(8702), + [sym_end_statement] = ACTIONS(8704), + [aux_sym_on_goto_statement_token1] = ACTIONS(8702), + [aux_sym_on_goto_statement_token2] = ACTIONS(8702), + [aux_sym_on_error_statement_token2] = ACTIONS(8702), + [sym__ambiguous_redim_statement] = ACTIONS(8704), + [aux_sym_erase_statement_token1] = ACTIONS(8702), + [aux_sym_open_statement_token1] = ACTIONS(8702), + [aux_sym_file_mode_token2] = ACTIONS(8702), + [aux_sym_file_access_token2] = ACTIONS(8702), + [aux_sym_file_lock_token2] = ACTIONS(8702), + [aux_sym_print_statement_token1] = ACTIONS(8702), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_DASH] = ACTIONS(8702), + [anon_sym_QMARK] = ACTIONS(8704), + [aux_sym_close_statement_token1] = ACTIONS(8702), + [aux_sym_put_statement_token1] = ACTIONS(8702), + [aux_sym_unlock_statement_token1] = ACTIONS(8702), + [aux_sym_seek_statement_token1] = ACTIONS(8702), + [sym_reset_statement] = ACTIONS(8702), + [aux_sym_raise_event_statement_token1] = ACTIONS(8702), + [sym_stop_statement] = ACTIONS(8702), + [sym_beep_statement] = ACTIONS(8702), + [aux_sym_unload_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token2] = ACTIONS(8702), + [aux_sym_def_type_statement_token3] = ACTIONS(8702), + [aux_sym_def_type_statement_token4] = ACTIONS(8702), + [aux_sym_def_type_statement_token5] = ACTIONS(8702), + [aux_sym_def_type_statement_token6] = ACTIONS(8702), + [aux_sym_def_type_statement_token7] = ACTIONS(8702), + [aux_sym_def_type_statement_token8] = ACTIONS(8702), + [aux_sym_def_type_statement_token9] = ACTIONS(8702), + [aux_sym_def_type_statement_token10] = ACTIONS(8702), + [aux_sym_def_type_statement_token11] = ACTIONS(8702), + [aux_sym_def_type_statement_token12] = ACTIONS(8702), + [aux_sym_def_type_statement_token13] = ACTIONS(8702), + [aux_sym_def_type_statement_token14] = ACTIONS(8702), + [aux_sym_call_statement_token1] = ACTIONS(8702), + [sym__ambiguous_call_statement] = ACTIONS(8702), + [aux_sym_addressof_expression_token1] = ACTIONS(8702), + [aux_sym_type_of_expression_token1] = ACTIONS(8702), + [aux_sym_unary_expression_token1] = ACTIONS(8702), + [sym_string_literal] = ACTIONS(8704), + [sym_number_literal] = ACTIONS(8704), + [aux_sym_boolean_literal_token1] = ACTIONS(8702), + [aux_sym_boolean_literal_token2] = ACTIONS(8702), + [sym_nothing_literal] = ACTIONS(8702), + [sym_null_literal] = ACTIONS(8702), + [sym_empty_literal] = ACTIONS(8702), + [sym_date_literal] = ACTIONS(8704), + [anon_sym_POUND] = ACTIONS(8702), + }, + [STATE(3752)] = { + [sym_identifier] = ACTIONS(8709), + [sym_newline] = ACTIONS(8711), + [anon_sym_COLON] = ACTIONS(8711), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8709), + [aux_sym_frm_property_statement_token1] = ACTIONS(8709), + [anon_sym_DOT] = ACTIONS(8709), + [anon_sym_BANG] = ACTIONS(8711), + [aux_sym__attribute_identifier_token1] = ACTIONS(8709), + [aux_sym_option_statement_token3] = ACTIONS(8709), + [aux_sym_type_declaration_token1] = ACTIONS(8709), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8709), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8709), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8709), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8709), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8709), + [aux_sym_enum_declaration_token1] = ACTIONS(8709), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8709), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8709), + [aux_sym_declare_function_statement_token1] = ACTIONS(8709), + [aux_sym_preprocessor_const_token1] = ACTIONS(8709), + [aux_sym__property_get_header_token1] = ACTIONS(8709), + [aux_sym_event_declaration_token1] = ACTIONS(8709), + [sym_static_modifier] = ACTIONS(8709), + [sym__dim_keyword] = ACTIONS(8709), + [sym__redim_keyword] = ACTIONS(8709), + [aux_sym_get_accessor_token1] = ACTIONS(8709), + [aux_sym_set_accessor_token1] = ACTIONS(8709), + [aux_sym_const_declaration_token1] = ACTIONS(8709), + [anon_sym_LPAREN] = ACTIONS(8711), + [aux_sym_as_type_clause_token1] = ACTIONS(8709), + [aux_sym_as_type_clause_token2] = ACTIONS(8709), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8709), + [aux_sym_visibility_token1] = ACTIONS(8709), + [aux_sym_visibility_token2] = ACTIONS(8709), + [aux_sym_elseif_fragment_token1] = ACTIONS(8709), + [aux_sym_else_fragment_token1] = ACTIONS(8709), + [aux_sym_select_statement_token1] = ACTIONS(8709), + [aux_sym__for_header_token1] = ACTIONS(8709), + [aux_sym_do_statement_token1] = ACTIONS(8709), + [aux_sym_do_condition_token1] = ACTIONS(8709), + [aux_sym_with_statement_token1] = ACTIONS(8709), + [aux_sym_exit_statement_token1] = ACTIONS(8709), + [sym_end_statement] = ACTIONS(8711), + [aux_sym_on_goto_statement_token1] = ACTIONS(8709), + [aux_sym_on_goto_statement_token2] = ACTIONS(8709), + [aux_sym_on_error_statement_token2] = ACTIONS(8709), + [sym__ambiguous_redim_statement] = ACTIONS(8711), + [aux_sym_erase_statement_token1] = ACTIONS(8709), + [aux_sym_open_statement_token1] = ACTIONS(8709), + [aux_sym_file_mode_token2] = ACTIONS(8709), + [aux_sym_file_access_token2] = ACTIONS(8709), + [aux_sym_file_lock_token2] = ACTIONS(8709), + [aux_sym_print_statement_token1] = ACTIONS(8709), + [anon_sym_PLUS] = ACTIONS(8711), + [anon_sym_DASH] = ACTIONS(8709), + [anon_sym_QMARK] = ACTIONS(8711), + [aux_sym_close_statement_token1] = ACTIONS(8709), + [aux_sym_put_statement_token1] = ACTIONS(8709), + [aux_sym_unlock_statement_token1] = ACTIONS(8709), + [aux_sym_seek_statement_token1] = ACTIONS(8709), + [sym_reset_statement] = ACTIONS(8709), + [aux_sym_raise_event_statement_token1] = ACTIONS(8709), + [sym_stop_statement] = ACTIONS(8709), + [sym_beep_statement] = ACTIONS(8709), + [aux_sym_unload_statement_token1] = ACTIONS(8709), + [aux_sym_def_type_statement_token1] = ACTIONS(8709), + [aux_sym_def_type_statement_token2] = ACTIONS(8709), + [aux_sym_def_type_statement_token3] = ACTIONS(8709), + [aux_sym_def_type_statement_token4] = ACTIONS(8709), + [aux_sym_def_type_statement_token5] = ACTIONS(8709), + [aux_sym_def_type_statement_token6] = ACTIONS(8709), + [aux_sym_def_type_statement_token7] = ACTIONS(8709), + [aux_sym_def_type_statement_token8] = ACTIONS(8709), + [aux_sym_def_type_statement_token9] = ACTIONS(8709), + [aux_sym_def_type_statement_token10] = ACTIONS(8709), + [aux_sym_def_type_statement_token11] = ACTIONS(8709), + [aux_sym_def_type_statement_token12] = ACTIONS(8709), + [aux_sym_def_type_statement_token13] = ACTIONS(8709), + [aux_sym_def_type_statement_token14] = ACTIONS(8709), + [aux_sym_call_statement_token1] = ACTIONS(8709), + [sym__ambiguous_call_statement] = ACTIONS(8709), + [aux_sym_addressof_expression_token1] = ACTIONS(8709), + [aux_sym_type_of_expression_token1] = ACTIONS(8709), + [aux_sym_unary_expression_token1] = ACTIONS(8709), + [sym_string_literal] = ACTIONS(8711), + [sym_number_literal] = ACTIONS(8711), + [aux_sym_boolean_literal_token1] = ACTIONS(8709), + [aux_sym_boolean_literal_token2] = ACTIONS(8709), + [sym_nothing_literal] = ACTIONS(8709), + [sym_null_literal] = ACTIONS(8709), + [sym_empty_literal] = ACTIONS(8709), + [sym_date_literal] = ACTIONS(8711), + [anon_sym_POUND] = ACTIONS(8709), + }, + [STATE(3753)] = { + [sym_array_bounds] = STATE(3873), + [sym_identifier] = ACTIONS(8081), + [sym_newline] = ACTIONS(8083), + [anon_sym_COLON] = ACTIONS(8083), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8081), + [aux_sym_frm_property_statement_token1] = ACTIONS(8081), + [anon_sym_EQ] = ACTIONS(8083), + [anon_sym_DOT] = ACTIONS(8081), + [anon_sym_BANG] = ACTIONS(8083), + [aux_sym__attribute_identifier_token1] = ACTIONS(8081), + [aux_sym_option_statement_token3] = ACTIONS(8081), + [aux_sym_type_declaration_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8081), + [aux_sym_enum_declaration_token1] = ACTIONS(8081), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8081), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8081), + [aux_sym_declare_function_statement_token1] = ACTIONS(8081), + [aux_sym_preprocessor_const_token1] = ACTIONS(8081), + [aux_sym__property_get_header_token1] = ACTIONS(8081), + [aux_sym_event_declaration_token1] = ACTIONS(8081), + [sym_static_modifier] = ACTIONS(8081), + [sym__dim_keyword] = ACTIONS(8081), + [sym__redim_keyword] = ACTIONS(8081), + [aux_sym_get_accessor_token1] = ACTIONS(8081), + [aux_sym_set_accessor_token1] = ACTIONS(8081), + [anon_sym_COMMA] = ACTIONS(8083), + [aux_sym_const_declaration_token1] = ACTIONS(8081), + [anon_sym_LPAREN] = ACTIONS(7958), + [aux_sym_as_type_clause_token2] = ACTIONS(8081), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8081), + [aux_sym_visibility_token1] = ACTIONS(8081), + [aux_sym_visibility_token2] = ACTIONS(8081), + [aux_sym_elseif_fragment_token1] = ACTIONS(8081), + [aux_sym_else_fragment_token1] = ACTIONS(8081), + [aux_sym_select_statement_token1] = ACTIONS(8081), + [aux_sym__for_header_token1] = ACTIONS(8081), + [aux_sym_do_statement_token1] = ACTIONS(8081), + [aux_sym_do_condition_token1] = ACTIONS(8081), + [aux_sym_with_statement_token1] = ACTIONS(8081), + [aux_sym_exit_statement_token1] = ACTIONS(8081), + [sym_end_statement] = ACTIONS(8083), + [aux_sym_on_goto_statement_token1] = ACTIONS(8081), + [aux_sym_on_goto_statement_token2] = ACTIONS(8081), + [aux_sym_on_error_statement_token2] = ACTIONS(8081), + [sym__ambiguous_redim_statement] = ACTIONS(8083), + [aux_sym_erase_statement_token1] = ACTIONS(8081), + [aux_sym_open_statement_token1] = ACTIONS(8081), + [aux_sym_file_mode_token2] = ACTIONS(8081), + [aux_sym_file_access_token2] = ACTIONS(8081), + [aux_sym_file_lock_token2] = ACTIONS(8081), + [aux_sym_print_statement_token1] = ACTIONS(8081), + [anon_sym_PLUS] = ACTIONS(8083), + [anon_sym_DASH] = ACTIONS(8081), + [anon_sym_QMARK] = ACTIONS(8083), + [aux_sym_close_statement_token1] = ACTIONS(8081), + [aux_sym_put_statement_token1] = ACTIONS(8081), + [aux_sym_unlock_statement_token1] = ACTIONS(8081), + [aux_sym_seek_statement_token1] = ACTIONS(8081), + [sym_reset_statement] = ACTIONS(8081), + [aux_sym_raise_event_statement_token1] = ACTIONS(8081), + [sym_stop_statement] = ACTIONS(8081), + [sym_beep_statement] = ACTIONS(8081), + [aux_sym_unload_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token2] = ACTIONS(8081), + [aux_sym_def_type_statement_token3] = ACTIONS(8081), + [aux_sym_def_type_statement_token4] = ACTIONS(8081), + [aux_sym_def_type_statement_token5] = ACTIONS(8081), + [aux_sym_def_type_statement_token6] = ACTIONS(8081), + [aux_sym_def_type_statement_token7] = ACTIONS(8081), + [aux_sym_def_type_statement_token8] = ACTIONS(8081), + [aux_sym_def_type_statement_token9] = ACTIONS(8081), + [aux_sym_def_type_statement_token10] = ACTIONS(8081), + [aux_sym_def_type_statement_token11] = ACTIONS(8081), + [aux_sym_def_type_statement_token12] = ACTIONS(8081), + [aux_sym_def_type_statement_token13] = ACTIONS(8081), + [aux_sym_def_type_statement_token14] = ACTIONS(8081), + [aux_sym_call_statement_token1] = ACTIONS(8081), + [sym__ambiguous_call_statement] = ACTIONS(8081), + [aux_sym_addressof_expression_token1] = ACTIONS(8081), + [aux_sym_type_of_expression_token1] = ACTIONS(8081), + [aux_sym_unary_expression_token1] = ACTIONS(8081), + [sym_string_literal] = ACTIONS(8083), + [sym_number_literal] = ACTIONS(8083), + [aux_sym_boolean_literal_token1] = ACTIONS(8081), + [aux_sym_boolean_literal_token2] = ACTIONS(8081), + [sym_nothing_literal] = ACTIONS(8081), + [sym_null_literal] = ACTIONS(8081), + [sym_empty_literal] = ACTIONS(8081), + [sym_date_literal] = ACTIONS(8083), + [anon_sym_POUND] = ACTIONS(8081), + }, + [STATE(3754)] = { + [sym_identifier] = ACTIONS(8713), + [sym_newline] = ACTIONS(8715), + [anon_sym_COLON] = ACTIONS(8715), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8713), + [aux_sym_frm_property_statement_token1] = ACTIONS(8713), + [anon_sym_DOT] = ACTIONS(8713), + [anon_sym_BANG] = ACTIONS(8715), + [aux_sym__attribute_identifier_token1] = ACTIONS(8713), + [aux_sym_option_statement_token3] = ACTIONS(8713), + [aux_sym_type_declaration_token1] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8713), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8713), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8713), + [aux_sym_enum_declaration_token1] = ACTIONS(8713), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8713), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8713), + [aux_sym_declare_function_statement_token1] = ACTIONS(8713), + [aux_sym_preprocessor_const_token1] = ACTIONS(8713), + [aux_sym__property_get_header_token1] = ACTIONS(8713), + [aux_sym_event_declaration_token1] = ACTIONS(8713), + [sym_static_modifier] = ACTIONS(8713), + [sym__dim_keyword] = ACTIONS(8713), + [sym__redim_keyword] = ACTIONS(8713), + [aux_sym_get_accessor_token1] = ACTIONS(8713), + [aux_sym_set_accessor_token1] = ACTIONS(8713), + [anon_sym_COMMA] = ACTIONS(8715), + [aux_sym_const_declaration_token1] = ACTIONS(8713), + [anon_sym_LPAREN] = ACTIONS(8715), + [aux_sym_as_type_clause_token2] = ACTIONS(8713), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8713), + [aux_sym_visibility_token1] = ACTIONS(8713), + [aux_sym_visibility_token2] = ACTIONS(8713), + [aux_sym_elseif_fragment_token1] = ACTIONS(8713), + [aux_sym_else_fragment_token1] = ACTIONS(8713), + [aux_sym_select_statement_token1] = ACTIONS(8713), + [aux_sym__for_header_token1] = ACTIONS(8713), + [aux_sym_do_statement_token1] = ACTIONS(8713), + [aux_sym_do_condition_token1] = ACTIONS(8713), + [aux_sym_with_statement_token1] = ACTIONS(8713), + [aux_sym_exit_statement_token1] = ACTIONS(8713), + [sym_end_statement] = ACTIONS(8715), + [aux_sym_on_goto_statement_token1] = ACTIONS(8713), + [aux_sym_on_goto_statement_token2] = ACTIONS(8713), + [aux_sym_on_error_statement_token2] = ACTIONS(8713), + [sym__ambiguous_redim_statement] = ACTIONS(8715), + [aux_sym_erase_statement_token1] = ACTIONS(8713), + [aux_sym_open_statement_token1] = ACTIONS(8713), + [aux_sym_file_mode_token2] = ACTIONS(8713), + [aux_sym_file_access_token2] = ACTIONS(8713), + [aux_sym_file_lock_token2] = ACTIONS(8713), + [aux_sym_print_statement_token1] = ACTIONS(8713), + [anon_sym_PLUS] = ACTIONS(8715), + [anon_sym_DASH] = ACTIONS(8713), + [anon_sym_QMARK] = ACTIONS(8715), + [aux_sym_close_statement_token1] = ACTIONS(8713), + [aux_sym_put_statement_token1] = ACTIONS(8713), + [aux_sym_unlock_statement_token1] = ACTIONS(8713), + [aux_sym_seek_statement_token1] = ACTIONS(8713), + [sym_reset_statement] = ACTIONS(8713), + [aux_sym_raise_event_statement_token1] = ACTIONS(8713), + [sym_stop_statement] = ACTIONS(8713), + [sym_beep_statement] = ACTIONS(8713), + [aux_sym_unload_statement_token1] = ACTIONS(8713), + [aux_sym_def_type_statement_token1] = ACTIONS(8713), + [aux_sym_def_type_statement_token2] = ACTIONS(8713), + [aux_sym_def_type_statement_token3] = ACTIONS(8713), + [aux_sym_def_type_statement_token4] = ACTIONS(8713), + [aux_sym_def_type_statement_token5] = ACTIONS(8713), + [aux_sym_def_type_statement_token6] = ACTIONS(8713), + [aux_sym_def_type_statement_token7] = ACTIONS(8713), + [aux_sym_def_type_statement_token8] = ACTIONS(8713), + [aux_sym_def_type_statement_token9] = ACTIONS(8713), + [aux_sym_def_type_statement_token10] = ACTIONS(8713), + [aux_sym_def_type_statement_token11] = ACTIONS(8713), + [aux_sym_def_type_statement_token12] = ACTIONS(8713), + [aux_sym_def_type_statement_token13] = ACTIONS(8713), + [aux_sym_def_type_statement_token14] = ACTIONS(8713), + [aux_sym_call_statement_token1] = ACTIONS(8713), + [sym__ambiguous_call_statement] = ACTIONS(8713), + [aux_sym_addressof_expression_token1] = ACTIONS(8713), + [aux_sym_type_of_expression_token1] = ACTIONS(8713), + [aux_sym_unary_expression_token1] = ACTIONS(8713), + [sym_string_literal] = ACTIONS(8715), + [sym_number_literal] = ACTIONS(8715), + [aux_sym_boolean_literal_token1] = ACTIONS(8713), + [aux_sym_boolean_literal_token2] = ACTIONS(8713), + [sym_nothing_literal] = ACTIONS(8713), + [sym_null_literal] = ACTIONS(8713), + [sym_empty_literal] = ACTIONS(8713), + [sym_date_literal] = ACTIONS(8715), + [anon_sym_POUND] = ACTIONS(8713), + }, + [STATE(3755)] = { + [sym_array_bounds] = STATE(3862), + [sym_identifier] = ACTIONS(8070), + [sym_newline] = ACTIONS(8072), + [anon_sym_COLON] = ACTIONS(8072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8070), + [aux_sym_frm_property_statement_token1] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(8072), + [anon_sym_DOT] = ACTIONS(8070), + [anon_sym_BANG] = ACTIONS(8072), + [aux_sym__attribute_identifier_token1] = ACTIONS(8070), + [aux_sym_option_statement_token3] = ACTIONS(8070), + [aux_sym_type_declaration_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8070), + [aux_sym_enum_declaration_token1] = ACTIONS(8070), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8070), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8070), + [aux_sym_declare_function_statement_token1] = ACTIONS(8070), + [aux_sym_preprocessor_const_token1] = ACTIONS(8070), + [aux_sym__property_get_header_token1] = ACTIONS(8070), + [aux_sym_event_declaration_token1] = ACTIONS(8070), + [sym_static_modifier] = ACTIONS(8070), + [sym__dim_keyword] = ACTIONS(8070), + [sym__redim_keyword] = ACTIONS(8070), + [aux_sym_get_accessor_token1] = ACTIONS(8070), + [aux_sym_set_accessor_token1] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [aux_sym_const_declaration_token1] = ACTIONS(8070), + [anon_sym_LPAREN] = ACTIONS(7958), + [aux_sym_as_type_clause_token2] = ACTIONS(8070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8070), + [aux_sym_visibility_token1] = ACTIONS(8070), + [aux_sym_visibility_token2] = ACTIONS(8070), + [aux_sym_elseif_fragment_token1] = ACTIONS(8070), + [aux_sym_else_fragment_token1] = ACTIONS(8070), + [aux_sym_select_statement_token1] = ACTIONS(8070), + [aux_sym__for_header_token1] = ACTIONS(8070), + [aux_sym_do_statement_token1] = ACTIONS(8070), + [aux_sym_do_condition_token1] = ACTIONS(8070), + [aux_sym_with_statement_token1] = ACTIONS(8070), + [aux_sym_exit_statement_token1] = ACTIONS(8070), + [sym_end_statement] = ACTIONS(8072), + [aux_sym_on_goto_statement_token1] = ACTIONS(8070), + [aux_sym_on_goto_statement_token2] = ACTIONS(8070), + [aux_sym_on_error_statement_token2] = ACTIONS(8070), + [sym__ambiguous_redim_statement] = ACTIONS(8072), + [aux_sym_erase_statement_token1] = ACTIONS(8070), + [aux_sym_open_statement_token1] = ACTIONS(8070), + [aux_sym_file_mode_token2] = ACTIONS(8070), + [aux_sym_file_access_token2] = ACTIONS(8070), + [aux_sym_file_lock_token2] = ACTIONS(8070), + [aux_sym_print_statement_token1] = ACTIONS(8070), + [anon_sym_PLUS] = ACTIONS(8072), + [anon_sym_DASH] = ACTIONS(8070), + [anon_sym_QMARK] = ACTIONS(8072), + [aux_sym_close_statement_token1] = ACTIONS(8070), + [aux_sym_put_statement_token1] = ACTIONS(8070), + [aux_sym_unlock_statement_token1] = ACTIONS(8070), + [aux_sym_seek_statement_token1] = ACTIONS(8070), + [sym_reset_statement] = ACTIONS(8070), + [aux_sym_raise_event_statement_token1] = ACTIONS(8070), + [sym_stop_statement] = ACTIONS(8070), + [sym_beep_statement] = ACTIONS(8070), + [aux_sym_unload_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token2] = ACTIONS(8070), + [aux_sym_def_type_statement_token3] = ACTIONS(8070), + [aux_sym_def_type_statement_token4] = ACTIONS(8070), + [aux_sym_def_type_statement_token5] = ACTIONS(8070), + [aux_sym_def_type_statement_token6] = ACTIONS(8070), + [aux_sym_def_type_statement_token7] = ACTIONS(8070), + [aux_sym_def_type_statement_token8] = ACTIONS(8070), + [aux_sym_def_type_statement_token9] = ACTIONS(8070), + [aux_sym_def_type_statement_token10] = ACTIONS(8070), + [aux_sym_def_type_statement_token11] = ACTIONS(8070), + [aux_sym_def_type_statement_token12] = ACTIONS(8070), + [aux_sym_def_type_statement_token13] = ACTIONS(8070), + [aux_sym_def_type_statement_token14] = ACTIONS(8070), + [aux_sym_call_statement_token1] = ACTIONS(8070), + [sym__ambiguous_call_statement] = ACTIONS(8070), + [aux_sym_addressof_expression_token1] = ACTIONS(8070), + [aux_sym_type_of_expression_token1] = ACTIONS(8070), + [aux_sym_unary_expression_token1] = ACTIONS(8070), + [sym_string_literal] = ACTIONS(8072), + [sym_number_literal] = ACTIONS(8072), + [aux_sym_boolean_literal_token1] = ACTIONS(8070), + [aux_sym_boolean_literal_token2] = ACTIONS(8070), + [sym_nothing_literal] = ACTIONS(8070), + [sym_null_literal] = ACTIONS(8070), + [sym_empty_literal] = ACTIONS(8070), + [sym_date_literal] = ACTIONS(8072), + [anon_sym_POUND] = ACTIONS(8070), + }, + [STATE(3756)] = { + [sym_identifier] = ACTIONS(8717), + [sym_newline] = ACTIONS(8719), + [anon_sym_COLON] = ACTIONS(8719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8717), + [aux_sym_frm_property_statement_token1] = ACTIONS(8717), + [anon_sym_DOT] = ACTIONS(8717), + [anon_sym_BANG] = ACTIONS(8719), + [aux_sym__attribute_identifier_token1] = ACTIONS(8717), + [aux_sym_option_statement_token3] = ACTIONS(8717), + [aux_sym_type_declaration_token1] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8717), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8717), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8717), + [aux_sym_enum_declaration_token1] = ACTIONS(8717), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8717), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8717), + [aux_sym_declare_function_statement_token1] = ACTIONS(8717), + [aux_sym_preprocessor_const_token1] = ACTIONS(8717), + [aux_sym__property_get_header_token1] = ACTIONS(8717), + [aux_sym_event_declaration_token1] = ACTIONS(8717), + [sym_static_modifier] = ACTIONS(8717), + [sym__dim_keyword] = ACTIONS(8717), + [sym__redim_keyword] = ACTIONS(8717), + [aux_sym_get_accessor_token1] = ACTIONS(8717), + [aux_sym_set_accessor_token1] = ACTIONS(8717), + [anon_sym_COMMA] = ACTIONS(8721), + [aux_sym_const_declaration_token1] = ACTIONS(8717), + [anon_sym_LPAREN] = ACTIONS(8719), + [aux_sym_as_type_clause_token2] = ACTIONS(8717), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8717), + [aux_sym_visibility_token1] = ACTIONS(8717), + [aux_sym_visibility_token2] = ACTIONS(8717), + [aux_sym_elseif_fragment_token1] = ACTIONS(8717), + [aux_sym_else_fragment_token1] = ACTIONS(8717), + [aux_sym_select_statement_token1] = ACTIONS(8717), + [aux_sym__for_header_token1] = ACTIONS(8717), + [aux_sym_do_statement_token1] = ACTIONS(8717), + [aux_sym_do_condition_token1] = ACTIONS(8717), + [aux_sym_with_statement_token1] = ACTIONS(8717), + [aux_sym_exit_statement_token1] = ACTIONS(8717), + [sym_end_statement] = ACTIONS(8719), + [aux_sym_on_goto_statement_token1] = ACTIONS(8717), + [aux_sym_on_goto_statement_token2] = ACTIONS(8717), + [aux_sym_on_error_statement_token2] = ACTIONS(8717), + [sym__ambiguous_redim_statement] = ACTIONS(8719), + [aux_sym_erase_statement_token1] = ACTIONS(8717), + [aux_sym_open_statement_token1] = ACTIONS(8717), + [aux_sym_file_mode_token2] = ACTIONS(8717), + [aux_sym_file_access_token2] = ACTIONS(8717), + [aux_sym_file_lock_token2] = ACTIONS(8717), + [aux_sym_print_statement_token1] = ACTIONS(8717), + [anon_sym_PLUS] = ACTIONS(8719), + [anon_sym_DASH] = ACTIONS(8717), + [anon_sym_QMARK] = ACTIONS(8719), + [aux_sym_close_statement_token1] = ACTIONS(8717), + [aux_sym_put_statement_token1] = ACTIONS(8717), + [aux_sym_unlock_statement_token1] = ACTIONS(8717), + [aux_sym_seek_statement_token1] = ACTIONS(8717), + [sym_reset_statement] = ACTIONS(8717), + [aux_sym_raise_event_statement_token1] = ACTIONS(8717), + [sym_stop_statement] = ACTIONS(8717), + [sym_beep_statement] = ACTIONS(8717), + [aux_sym_unload_statement_token1] = ACTIONS(8717), + [aux_sym_def_type_statement_token1] = ACTIONS(8717), + [aux_sym_def_type_statement_token2] = ACTIONS(8717), + [aux_sym_def_type_statement_token3] = ACTIONS(8717), + [aux_sym_def_type_statement_token4] = ACTIONS(8717), + [aux_sym_def_type_statement_token5] = ACTIONS(8717), + [aux_sym_def_type_statement_token6] = ACTIONS(8717), + [aux_sym_def_type_statement_token7] = ACTIONS(8717), + [aux_sym_def_type_statement_token8] = ACTIONS(8717), + [aux_sym_def_type_statement_token9] = ACTIONS(8717), + [aux_sym_def_type_statement_token10] = ACTIONS(8717), + [aux_sym_def_type_statement_token11] = ACTIONS(8717), + [aux_sym_def_type_statement_token12] = ACTIONS(8717), + [aux_sym_def_type_statement_token13] = ACTIONS(8717), + [aux_sym_def_type_statement_token14] = ACTIONS(8717), + [aux_sym_call_statement_token1] = ACTIONS(8717), + [sym__ambiguous_call_statement] = ACTIONS(8717), + [aux_sym_addressof_expression_token1] = ACTIONS(8717), + [aux_sym_type_of_expression_token1] = ACTIONS(8717), + [aux_sym_unary_expression_token1] = ACTIONS(8717), + [sym_string_literal] = ACTIONS(8719), + [sym_number_literal] = ACTIONS(8719), + [aux_sym_boolean_literal_token1] = ACTIONS(8717), + [aux_sym_boolean_literal_token2] = ACTIONS(8717), + [sym_nothing_literal] = ACTIONS(8717), + [sym_null_literal] = ACTIONS(8717), + [sym_empty_literal] = ACTIONS(8717), + [sym_date_literal] = ACTIONS(8719), + [anon_sym_POUND] = ACTIONS(8717), + }, + [STATE(3757)] = { + [sym_identifier] = ACTIONS(8723), + [sym_newline] = ACTIONS(8725), + [anon_sym_COLON] = ACTIONS(8725), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8723), + [aux_sym_frm_property_statement_token1] = ACTIONS(8723), + [anon_sym_DOT] = ACTIONS(8723), + [anon_sym_BANG] = ACTIONS(8725), + [aux_sym__attribute_identifier_token1] = ACTIONS(8723), + [aux_sym_option_statement_token3] = ACTIONS(8723), + [aux_sym_type_declaration_token1] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8723), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8723), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8723), + [aux_sym_enum_declaration_token1] = ACTIONS(8723), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8723), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8723), + [aux_sym_declare_function_statement_token1] = ACTIONS(8723), + [aux_sym_preprocessor_const_token1] = ACTIONS(8723), + [aux_sym__property_get_header_token1] = ACTIONS(8723), + [aux_sym_event_declaration_token1] = ACTIONS(8723), + [sym_static_modifier] = ACTIONS(8723), + [sym__dim_keyword] = ACTIONS(8723), + [sym__redim_keyword] = ACTIONS(8723), + [aux_sym_get_accessor_token1] = ACTIONS(8723), + [aux_sym_set_accessor_token1] = ACTIONS(8723), + [aux_sym_const_declaration_token1] = ACTIONS(8723), + [anon_sym_LPAREN] = ACTIONS(8725), + [aux_sym_as_type_clause_token2] = ACTIONS(8723), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8723), + [aux_sym_visibility_token1] = ACTIONS(8723), + [aux_sym_visibility_token2] = ACTIONS(8723), + [aux_sym_elseif_fragment_token1] = ACTIONS(8723), + [aux_sym_else_fragment_token1] = ACTIONS(8723), + [aux_sym_select_statement_token1] = ACTIONS(8723), + [aux_sym__for_header_token1] = ACTIONS(8723), + [aux_sym_do_statement_token1] = ACTIONS(8723), + [aux_sym_do_condition_token1] = ACTIONS(8723), + [aux_sym_with_statement_token1] = ACTIONS(8723), + [aux_sym_exit_statement_token1] = ACTIONS(8723), + [sym_end_statement] = ACTIONS(8725), + [aux_sym_on_goto_statement_token1] = ACTIONS(8723), + [aux_sym_on_goto_statement_token2] = ACTIONS(8723), + [aux_sym_on_error_statement_token2] = ACTIONS(8723), + [sym__ambiguous_redim_statement] = ACTIONS(8725), + [aux_sym_erase_statement_token1] = ACTIONS(8723), + [aux_sym_open_statement_token1] = ACTIONS(8723), + [aux_sym_open_statement_token3] = ACTIONS(8727), + [aux_sym_file_mode_token2] = ACTIONS(8723), + [aux_sym_file_access_token2] = ACTIONS(8723), + [aux_sym_file_lock_token2] = ACTIONS(8723), + [aux_sym_print_statement_token1] = ACTIONS(8723), + [anon_sym_PLUS] = ACTIONS(8725), + [anon_sym_DASH] = ACTIONS(8723), + [anon_sym_QMARK] = ACTIONS(8725), + [aux_sym_close_statement_token1] = ACTIONS(8723), + [aux_sym_put_statement_token1] = ACTIONS(8723), + [aux_sym_unlock_statement_token1] = ACTIONS(8723), + [aux_sym_seek_statement_token1] = ACTIONS(8723), + [sym_reset_statement] = ACTIONS(8723), + [aux_sym_raise_event_statement_token1] = ACTIONS(8723), + [sym_stop_statement] = ACTIONS(8723), + [sym_beep_statement] = ACTIONS(8723), + [aux_sym_unload_statement_token1] = ACTIONS(8723), + [aux_sym_def_type_statement_token1] = ACTIONS(8723), + [aux_sym_def_type_statement_token2] = ACTIONS(8723), + [aux_sym_def_type_statement_token3] = ACTIONS(8723), + [aux_sym_def_type_statement_token4] = ACTIONS(8723), + [aux_sym_def_type_statement_token5] = ACTIONS(8723), + [aux_sym_def_type_statement_token6] = ACTIONS(8723), + [aux_sym_def_type_statement_token7] = ACTIONS(8723), + [aux_sym_def_type_statement_token8] = ACTIONS(8723), + [aux_sym_def_type_statement_token9] = ACTIONS(8723), + [aux_sym_def_type_statement_token10] = ACTIONS(8723), + [aux_sym_def_type_statement_token11] = ACTIONS(8723), + [aux_sym_def_type_statement_token12] = ACTIONS(8723), + [aux_sym_def_type_statement_token13] = ACTIONS(8723), + [aux_sym_def_type_statement_token14] = ACTIONS(8723), + [aux_sym_call_statement_token1] = ACTIONS(8723), + [sym__ambiguous_call_statement] = ACTIONS(8723), + [aux_sym_addressof_expression_token1] = ACTIONS(8723), + [aux_sym_type_of_expression_token1] = ACTIONS(8723), + [aux_sym_unary_expression_token1] = ACTIONS(8723), + [sym_string_literal] = ACTIONS(8725), + [sym_number_literal] = ACTIONS(8725), + [aux_sym_boolean_literal_token1] = ACTIONS(8723), + [aux_sym_boolean_literal_token2] = ACTIONS(8723), + [sym_nothing_literal] = ACTIONS(8723), + [sym_null_literal] = ACTIONS(8723), + [sym_empty_literal] = ACTIONS(8723), + [sym_date_literal] = ACTIONS(8725), + [anon_sym_POUND] = ACTIONS(8723), + }, + [STATE(3758)] = { + [sym_identifier] = ACTIONS(6324), + [sym_newline] = ACTIONS(6326), + [anon_sym_COLON] = ACTIONS(6326), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6324), + [aux_sym_frm_property_statement_token1] = ACTIONS(6324), + [anon_sym_DOT] = ACTIONS(6324), + [anon_sym_BANG] = ACTIONS(6326), + [aux_sym__attribute_identifier_token1] = ACTIONS(6324), + [aux_sym_option_statement_token3] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6324), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6324), + [aux_sym_preprocessor_const_token1] = ACTIONS(6324), + [sym_static_modifier] = ACTIONS(6324), + [sym__dim_keyword] = ACTIONS(6324), + [sym__redim_keyword] = ACTIONS(6324), + [aux_sym_get_accessor_token1] = ACTIONS(6324), + [aux_sym_set_accessor_token1] = ACTIONS(6324), + [aux_sym_const_declaration_token1] = ACTIONS(6324), + [anon_sym_LPAREN] = ACTIONS(6326), + [aux_sym_as_type_clause_token2] = ACTIONS(6324), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6324), + [aux_sym_visibility_token1] = ACTIONS(6324), + [aux_sym_visibility_token2] = ACTIONS(6324), + [aux_sym_elseif_fragment_token1] = ACTIONS(6324), + [aux_sym_else_fragment_token1] = ACTIONS(6324), + [aux_sym_select_statement_token1] = ACTIONS(6324), + [aux_sym__for_header_token1] = ACTIONS(6324), + [aux_sym_do_statement_token1] = ACTIONS(6324), + [aux_sym_do_condition_token1] = ACTIONS(6324), + [aux_sym_with_statement_token1] = ACTIONS(6324), + [aux_sym_exit_statement_token1] = ACTIONS(6324), + [sym_end_statement] = ACTIONS(6326), + [aux_sym_on_goto_statement_token1] = ACTIONS(6324), + [aux_sym_on_goto_statement_token2] = ACTIONS(6324), + [aux_sym_on_error_statement_token2] = ACTIONS(6324), + [sym__ambiguous_redim_statement] = ACTIONS(6326), + [aux_sym_erase_statement_token1] = ACTIONS(6324), + [aux_sym_open_statement_token1] = ACTIONS(6324), + [aux_sym_file_mode_token2] = ACTIONS(6324), + [aux_sym_file_access_token2] = ACTIONS(6324), + [aux_sym_file_lock_token2] = ACTIONS(6324), + [aux_sym_print_statement_token1] = ACTIONS(6324), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_QMARK] = ACTIONS(6326), + [aux_sym_close_statement_token1] = ACTIONS(6324), + [aux_sym_put_statement_token1] = ACTIONS(6324), + [aux_sym_unlock_statement_token1] = ACTIONS(6324), + [aux_sym_seek_statement_token1] = ACTIONS(6324), + [sym_reset_statement] = ACTIONS(6324), + [aux_sym_raise_event_statement_token1] = ACTIONS(6324), + [sym_stop_statement] = ACTIONS(6324), + [sym_beep_statement] = ACTIONS(6324), + [aux_sym_unload_statement_token1] = ACTIONS(6324), + [aux_sym_def_type_statement_token1] = ACTIONS(6324), + [aux_sym_def_type_statement_token2] = ACTIONS(6324), + [aux_sym_def_type_statement_token3] = ACTIONS(6324), + [aux_sym_def_type_statement_token4] = ACTIONS(6324), + [aux_sym_def_type_statement_token5] = ACTIONS(6324), + [aux_sym_def_type_statement_token6] = ACTIONS(6324), + [aux_sym_def_type_statement_token7] = ACTIONS(6324), + [aux_sym_def_type_statement_token8] = ACTIONS(6324), + [aux_sym_def_type_statement_token9] = ACTIONS(6324), + [aux_sym_def_type_statement_token10] = ACTIONS(6324), + [aux_sym_def_type_statement_token11] = ACTIONS(6324), + [aux_sym_def_type_statement_token12] = ACTIONS(6324), + [aux_sym_def_type_statement_token13] = ACTIONS(6324), + [aux_sym_def_type_statement_token14] = ACTIONS(6324), + [aux_sym_call_statement_token1] = ACTIONS(6324), + [sym__ambiguous_call_statement] = ACTIONS(6324), + [aux_sym_addressof_expression_token1] = ACTIONS(6324), + [aux_sym_type_of_expression_token1] = ACTIONS(6324), + [aux_sym_unary_expression_token1] = ACTIONS(6324), + [sym_string_literal] = ACTIONS(6326), + [sym_number_literal] = ACTIONS(6326), + [aux_sym_boolean_literal_token1] = ACTIONS(6324), + [aux_sym_boolean_literal_token2] = ACTIONS(6324), + [sym_nothing_literal] = ACTIONS(6324), + [sym_null_literal] = ACTIONS(6324), + [sym_empty_literal] = ACTIONS(6324), + [sym_date_literal] = ACTIONS(6326), + [anon_sym_POUND] = ACTIONS(6324), + }, + [STATE(3759)] = { + [sym_identifier] = ACTIONS(8729), + [sym_newline] = ACTIONS(8731), + [anon_sym_COLON] = ACTIONS(8731), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8729), + [aux_sym_frm_property_statement_token1] = ACTIONS(8729), + [anon_sym_DOT] = ACTIONS(8729), + [anon_sym_BANG] = ACTIONS(8731), + [aux_sym__attribute_identifier_token1] = ACTIONS(8729), + [aux_sym_option_statement_token3] = ACTIONS(8729), + [aux_sym_type_declaration_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8729), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8729), + [aux_sym_enum_declaration_token1] = ACTIONS(8729), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8729), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8729), + [aux_sym_declare_function_statement_token1] = ACTIONS(8729), + [aux_sym_preprocessor_const_token1] = ACTIONS(8729), + [aux_sym__property_get_header_token1] = ACTIONS(8729), + [aux_sym_event_declaration_token1] = ACTIONS(8729), + [sym_static_modifier] = ACTIONS(8729), + [sym__dim_keyword] = ACTIONS(8729), + [sym__redim_keyword] = ACTIONS(8729), + [aux_sym_get_accessor_token1] = ACTIONS(8729), + [aux_sym_set_accessor_token1] = ACTIONS(8729), + [aux_sym_const_declaration_token1] = ACTIONS(8729), + [anon_sym_LPAREN] = ACTIONS(8731), + [aux_sym_as_type_clause_token2] = ACTIONS(8729), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8729), + [aux_sym_visibility_token1] = ACTIONS(8729), + [aux_sym_visibility_token2] = ACTIONS(8729), + [aux_sym_elseif_fragment_token1] = ACTIONS(8729), + [aux_sym_else_fragment_token1] = ACTIONS(8729), + [aux_sym_select_statement_token1] = ACTIONS(8729), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8729), + [aux_sym__for_header_token1] = ACTIONS(8729), + [aux_sym_do_statement_token1] = ACTIONS(8729), + [aux_sym_do_condition_token1] = ACTIONS(8729), + [aux_sym_with_statement_token1] = ACTIONS(8729), + [aux_sym_exit_statement_token1] = ACTIONS(8729), + [sym_end_statement] = ACTIONS(8731), + [aux_sym_on_goto_statement_token1] = ACTIONS(8729), + [aux_sym_on_goto_statement_token2] = ACTIONS(8729), + [aux_sym_on_error_statement_token2] = ACTIONS(8729), + [sym__ambiguous_redim_statement] = ACTIONS(8731), + [aux_sym_erase_statement_token1] = ACTIONS(8729), + [aux_sym_open_statement_token1] = ACTIONS(8729), + [aux_sym_file_mode_token2] = ACTIONS(8729), + [aux_sym_file_access_token2] = ACTIONS(8729), + [aux_sym_file_lock_token2] = ACTIONS(8729), + [aux_sym_print_statement_token1] = ACTIONS(8729), + [anon_sym_PLUS] = ACTIONS(8731), + [anon_sym_DASH] = ACTIONS(8729), + [anon_sym_QMARK] = ACTIONS(8731), + [aux_sym_close_statement_token1] = ACTIONS(8729), + [aux_sym_put_statement_token1] = ACTIONS(8729), + [aux_sym_unlock_statement_token1] = ACTIONS(8729), + [aux_sym_seek_statement_token1] = ACTIONS(8729), + [sym_reset_statement] = ACTIONS(8729), + [aux_sym_raise_event_statement_token1] = ACTIONS(8729), + [sym_stop_statement] = ACTIONS(8729), + [sym_beep_statement] = ACTIONS(8729), + [aux_sym_unload_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token2] = ACTIONS(8729), + [aux_sym_def_type_statement_token3] = ACTIONS(8729), + [aux_sym_def_type_statement_token4] = ACTIONS(8729), + [aux_sym_def_type_statement_token5] = ACTIONS(8729), + [aux_sym_def_type_statement_token6] = ACTIONS(8729), + [aux_sym_def_type_statement_token7] = ACTIONS(8729), + [aux_sym_def_type_statement_token8] = ACTIONS(8729), + [aux_sym_def_type_statement_token9] = ACTIONS(8729), + [aux_sym_def_type_statement_token10] = ACTIONS(8729), + [aux_sym_def_type_statement_token11] = ACTIONS(8729), + [aux_sym_def_type_statement_token12] = ACTIONS(8729), + [aux_sym_def_type_statement_token13] = ACTIONS(8729), + [aux_sym_def_type_statement_token14] = ACTIONS(8729), + [aux_sym_call_statement_token1] = ACTIONS(8729), + [sym__ambiguous_call_statement] = ACTIONS(8729), + [aux_sym_addressof_expression_token1] = ACTIONS(8729), + [aux_sym_type_of_expression_token1] = ACTIONS(8729), + [aux_sym_unary_expression_token1] = ACTIONS(8729), + [sym_string_literal] = ACTIONS(8731), + [sym_number_literal] = ACTIONS(8731), + [aux_sym_boolean_literal_token1] = ACTIONS(8729), + [aux_sym_boolean_literal_token2] = ACTIONS(8729), + [sym_nothing_literal] = ACTIONS(8729), + [sym_null_literal] = ACTIONS(8729), + [sym_empty_literal] = ACTIONS(8729), + [sym_date_literal] = ACTIONS(8731), + [anon_sym_POUND] = ACTIONS(8729), + }, + [STATE(3760)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(3772), + [sym_identifier] = ACTIONS(8733), + [sym_newline] = ACTIONS(8735), + [anon_sym_COLON] = ACTIONS(8696), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8733), + [aux_sym_frm_property_statement_token1] = ACTIONS(8733), + [anon_sym_DOT] = ACTIONS(8733), + [anon_sym_BANG] = ACTIONS(8735), + [aux_sym__attribute_identifier_token1] = ACTIONS(8733), + [aux_sym_option_statement_token3] = ACTIONS(8733), + [aux_sym_type_declaration_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8733), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8733), + [aux_sym_enum_declaration_token1] = ACTIONS(8733), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8733), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8733), + [aux_sym_declare_function_statement_token1] = ACTIONS(8733), + [aux_sym_preprocessor_const_token1] = ACTIONS(8733), + [aux_sym__property_get_header_token1] = ACTIONS(8733), + [aux_sym_event_declaration_token1] = ACTIONS(8733), + [sym_static_modifier] = ACTIONS(8733), + [sym__dim_keyword] = ACTIONS(8733), + [sym__redim_keyword] = ACTIONS(8733), + [aux_sym_get_accessor_token1] = ACTIONS(8733), + [aux_sym_set_accessor_token1] = ACTIONS(8733), + [aux_sym_const_declaration_token1] = ACTIONS(8733), + [anon_sym_LPAREN] = ACTIONS(8735), + [aux_sym_as_type_clause_token2] = ACTIONS(8733), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8733), + [aux_sym_visibility_token1] = ACTIONS(8733), + [aux_sym_visibility_token2] = ACTIONS(8733), + [aux_sym_elseif_fragment_token1] = ACTIONS(8733), + [aux_sym_else_fragment_token1] = ACTIONS(8737), + [aux_sym_select_statement_token1] = ACTIONS(8733), + [aux_sym__for_header_token1] = ACTIONS(8733), + [aux_sym_do_statement_token1] = ACTIONS(8733), + [aux_sym_do_condition_token1] = ACTIONS(8733), + [aux_sym_with_statement_token1] = ACTIONS(8733), + [aux_sym_exit_statement_token1] = ACTIONS(8733), + [sym_end_statement] = ACTIONS(8735), + [aux_sym_on_goto_statement_token1] = ACTIONS(8733), + [aux_sym_on_goto_statement_token2] = ACTIONS(8733), + [aux_sym_on_error_statement_token2] = ACTIONS(8733), + [sym__ambiguous_redim_statement] = ACTIONS(8735), + [aux_sym_erase_statement_token1] = ACTIONS(8733), + [aux_sym_open_statement_token1] = ACTIONS(8733), + [aux_sym_file_mode_token2] = ACTIONS(8733), + [aux_sym_file_access_token2] = ACTIONS(8733), + [aux_sym_file_lock_token2] = ACTIONS(8733), + [aux_sym_print_statement_token1] = ACTIONS(8733), + [anon_sym_PLUS] = ACTIONS(8735), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_QMARK] = ACTIONS(8735), + [aux_sym_close_statement_token1] = ACTIONS(8733), + [aux_sym_put_statement_token1] = ACTIONS(8733), + [aux_sym_unlock_statement_token1] = ACTIONS(8733), + [aux_sym_seek_statement_token1] = ACTIONS(8733), + [sym_reset_statement] = ACTIONS(8733), + [aux_sym_raise_event_statement_token1] = ACTIONS(8733), + [sym_stop_statement] = ACTIONS(8733), + [sym_beep_statement] = ACTIONS(8733), + [aux_sym_unload_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token2] = ACTIONS(8733), + [aux_sym_def_type_statement_token3] = ACTIONS(8733), + [aux_sym_def_type_statement_token4] = ACTIONS(8733), + [aux_sym_def_type_statement_token5] = ACTIONS(8733), + [aux_sym_def_type_statement_token6] = ACTIONS(8733), + [aux_sym_def_type_statement_token7] = ACTIONS(8733), + [aux_sym_def_type_statement_token8] = ACTIONS(8733), + [aux_sym_def_type_statement_token9] = ACTIONS(8733), + [aux_sym_def_type_statement_token10] = ACTIONS(8733), + [aux_sym_def_type_statement_token11] = ACTIONS(8733), + [aux_sym_def_type_statement_token12] = ACTIONS(8733), + [aux_sym_def_type_statement_token13] = ACTIONS(8733), + [aux_sym_def_type_statement_token14] = ACTIONS(8733), + [aux_sym_call_statement_token1] = ACTIONS(8733), + [sym__ambiguous_call_statement] = ACTIONS(8733), + [aux_sym_addressof_expression_token1] = ACTIONS(8733), + [aux_sym_type_of_expression_token1] = ACTIONS(8733), + [aux_sym_unary_expression_token1] = ACTIONS(8733), + [sym_string_literal] = ACTIONS(8735), + [sym_number_literal] = ACTIONS(8735), + [aux_sym_boolean_literal_token1] = ACTIONS(8733), + [aux_sym_boolean_literal_token2] = ACTIONS(8733), + [sym_nothing_literal] = ACTIONS(8733), + [sym_null_literal] = ACTIONS(8733), + [sym_empty_literal] = ACTIONS(8733), + [sym_date_literal] = ACTIONS(8735), + [anon_sym_POUND] = ACTIONS(8733), + }, + [STATE(3761)] = { + [sym_identifier] = ACTIONS(6320), + [sym_newline] = ACTIONS(6322), + [anon_sym_COLON] = ACTIONS(6322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6320), + [aux_sym_frm_property_statement_token1] = ACTIONS(6320), + [anon_sym_DOT] = ACTIONS(6320), + [anon_sym_BANG] = ACTIONS(6322), + [aux_sym__attribute_identifier_token1] = ACTIONS(6320), + [aux_sym_option_statement_token3] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6320), + [aux_sym_preprocessor_const_token1] = ACTIONS(6320), + [sym_static_modifier] = ACTIONS(6320), + [sym__dim_keyword] = ACTIONS(6320), + [sym__redim_keyword] = ACTIONS(6320), + [aux_sym_get_accessor_token1] = ACTIONS(6320), + [aux_sym_set_accessor_token1] = ACTIONS(6320), + [aux_sym_const_declaration_token1] = ACTIONS(6320), + [anon_sym_LPAREN] = ACTIONS(6322), + [aux_sym_as_type_clause_token2] = ACTIONS(6320), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6320), + [aux_sym_visibility_token1] = ACTIONS(6320), + [aux_sym_visibility_token2] = ACTIONS(6320), + [aux_sym_elseif_fragment_token1] = ACTIONS(6320), + [aux_sym_else_fragment_token1] = ACTIONS(6320), + [aux_sym_select_statement_token1] = ACTIONS(6320), + [aux_sym__for_header_token1] = ACTIONS(6320), + [aux_sym_do_statement_token1] = ACTIONS(6320), + [aux_sym_do_condition_token1] = ACTIONS(6320), + [aux_sym_with_statement_token1] = ACTIONS(6320), + [aux_sym_exit_statement_token1] = ACTIONS(6320), + [sym_end_statement] = ACTIONS(6322), + [aux_sym_on_goto_statement_token1] = ACTIONS(6320), + [aux_sym_on_goto_statement_token2] = ACTIONS(6320), + [aux_sym_on_error_statement_token2] = ACTIONS(6320), + [sym__ambiguous_redim_statement] = ACTIONS(6322), + [aux_sym_erase_statement_token1] = ACTIONS(6320), + [aux_sym_open_statement_token1] = ACTIONS(6320), + [aux_sym_file_mode_token2] = ACTIONS(6320), + [aux_sym_file_access_token2] = ACTIONS(6320), + [aux_sym_file_lock_token2] = ACTIONS(6320), + [aux_sym_print_statement_token1] = ACTIONS(6320), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_QMARK] = ACTIONS(6322), + [aux_sym_close_statement_token1] = ACTIONS(6320), + [aux_sym_put_statement_token1] = ACTIONS(6320), + [aux_sym_unlock_statement_token1] = ACTIONS(6320), + [aux_sym_seek_statement_token1] = ACTIONS(6320), + [sym_reset_statement] = ACTIONS(6320), + [aux_sym_raise_event_statement_token1] = ACTIONS(6320), + [sym_stop_statement] = ACTIONS(6320), + [sym_beep_statement] = ACTIONS(6320), + [aux_sym_unload_statement_token1] = ACTIONS(6320), + [aux_sym_def_type_statement_token1] = ACTIONS(6320), + [aux_sym_def_type_statement_token2] = ACTIONS(6320), + [aux_sym_def_type_statement_token3] = ACTIONS(6320), + [aux_sym_def_type_statement_token4] = ACTIONS(6320), + [aux_sym_def_type_statement_token5] = ACTIONS(6320), + [aux_sym_def_type_statement_token6] = ACTIONS(6320), + [aux_sym_def_type_statement_token7] = ACTIONS(6320), + [aux_sym_def_type_statement_token8] = ACTIONS(6320), + [aux_sym_def_type_statement_token9] = ACTIONS(6320), + [aux_sym_def_type_statement_token10] = ACTIONS(6320), + [aux_sym_def_type_statement_token11] = ACTIONS(6320), + [aux_sym_def_type_statement_token12] = ACTIONS(6320), + [aux_sym_def_type_statement_token13] = ACTIONS(6320), + [aux_sym_def_type_statement_token14] = ACTIONS(6320), + [aux_sym_call_statement_token1] = ACTIONS(6320), + [sym__ambiguous_call_statement] = ACTIONS(6320), + [aux_sym_addressof_expression_token1] = ACTIONS(6320), + [aux_sym_type_of_expression_token1] = ACTIONS(6320), + [aux_sym_unary_expression_token1] = ACTIONS(6320), + [sym_string_literal] = ACTIONS(6322), + [sym_number_literal] = ACTIONS(6322), + [aux_sym_boolean_literal_token1] = ACTIONS(6320), + [aux_sym_boolean_literal_token2] = ACTIONS(6320), + [sym_nothing_literal] = ACTIONS(6320), + [sym_null_literal] = ACTIONS(6320), + [sym_empty_literal] = ACTIONS(6320), + [sym_date_literal] = ACTIONS(6322), + [anon_sym_POUND] = ACTIONS(6320), + }, + [STATE(3762)] = { + [sym_identifier] = ACTIONS(6434), + [sym_newline] = ACTIONS(6436), + [anon_sym_COLON] = ACTIONS(6436), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6434), + [aux_sym_frm_property_statement_token1] = ACTIONS(6434), + [anon_sym_DOT] = ACTIONS(6434), + [anon_sym_BANG] = ACTIONS(6436), + [aux_sym__attribute_identifier_token1] = ACTIONS(6434), + [aux_sym_option_statement_token3] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6434), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6434), + [aux_sym_preprocessor_const_token1] = ACTIONS(6434), + [sym_static_modifier] = ACTIONS(6434), + [sym__dim_keyword] = ACTIONS(6434), + [sym__redim_keyword] = ACTIONS(6434), + [aux_sym_get_accessor_token1] = ACTIONS(6434), + [aux_sym_set_accessor_token1] = ACTIONS(6434), + [aux_sym_const_declaration_token1] = ACTIONS(6434), + [anon_sym_LPAREN] = ACTIONS(6436), + [aux_sym_as_type_clause_token2] = ACTIONS(6434), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6434), + [aux_sym_visibility_token1] = ACTIONS(6434), + [aux_sym_visibility_token2] = ACTIONS(6434), + [aux_sym_elseif_fragment_token1] = ACTIONS(6434), + [aux_sym_else_fragment_token1] = ACTIONS(6434), + [aux_sym_select_statement_token1] = ACTIONS(6434), + [aux_sym__for_header_token1] = ACTIONS(6434), + [aux_sym_do_statement_token1] = ACTIONS(6434), + [aux_sym_do_condition_token1] = ACTIONS(6434), + [aux_sym_with_statement_token1] = ACTIONS(6434), + [aux_sym_exit_statement_token1] = ACTIONS(6434), + [sym_end_statement] = ACTIONS(6436), + [aux_sym_on_goto_statement_token1] = ACTIONS(6434), + [aux_sym_on_goto_statement_token2] = ACTIONS(6434), + [aux_sym_on_error_statement_token2] = ACTIONS(6434), + [sym__ambiguous_redim_statement] = ACTIONS(6436), + [aux_sym_erase_statement_token1] = ACTIONS(6434), + [aux_sym_open_statement_token1] = ACTIONS(6434), + [aux_sym_file_mode_token2] = ACTIONS(6434), + [aux_sym_file_access_token2] = ACTIONS(6434), + [aux_sym_file_lock_token2] = ACTIONS(6434), + [aux_sym_print_statement_token1] = ACTIONS(6434), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_QMARK] = ACTIONS(6436), + [aux_sym_close_statement_token1] = ACTIONS(6434), + [aux_sym_put_statement_token1] = ACTIONS(6434), + [aux_sym_unlock_statement_token1] = ACTIONS(6434), + [aux_sym_seek_statement_token1] = ACTIONS(6434), + [sym_reset_statement] = ACTIONS(6434), + [aux_sym_raise_event_statement_token1] = ACTIONS(6434), + [sym_stop_statement] = ACTIONS(6434), + [sym_beep_statement] = ACTIONS(6434), + [aux_sym_unload_statement_token1] = ACTIONS(6434), + [aux_sym_def_type_statement_token1] = ACTIONS(6434), + [aux_sym_def_type_statement_token2] = ACTIONS(6434), + [aux_sym_def_type_statement_token3] = ACTIONS(6434), + [aux_sym_def_type_statement_token4] = ACTIONS(6434), + [aux_sym_def_type_statement_token5] = ACTIONS(6434), + [aux_sym_def_type_statement_token6] = ACTIONS(6434), + [aux_sym_def_type_statement_token7] = ACTIONS(6434), + [aux_sym_def_type_statement_token8] = ACTIONS(6434), + [aux_sym_def_type_statement_token9] = ACTIONS(6434), + [aux_sym_def_type_statement_token10] = ACTIONS(6434), + [aux_sym_def_type_statement_token11] = ACTIONS(6434), + [aux_sym_def_type_statement_token12] = ACTIONS(6434), + [aux_sym_def_type_statement_token13] = ACTIONS(6434), + [aux_sym_def_type_statement_token14] = ACTIONS(6434), + [aux_sym_call_statement_token1] = ACTIONS(6434), + [sym__ambiguous_call_statement] = ACTIONS(6434), + [aux_sym_addressof_expression_token1] = ACTIONS(6434), + [aux_sym_type_of_expression_token1] = ACTIONS(6434), + [aux_sym_unary_expression_token1] = ACTIONS(6434), + [sym_string_literal] = ACTIONS(6436), + [sym_number_literal] = ACTIONS(6436), + [aux_sym_boolean_literal_token1] = ACTIONS(6434), + [aux_sym_boolean_literal_token2] = ACTIONS(6434), + [sym_nothing_literal] = ACTIONS(6434), + [sym_null_literal] = ACTIONS(6434), + [sym_empty_literal] = ACTIONS(6434), + [sym_date_literal] = ACTIONS(6436), + [anon_sym_POUND] = ACTIONS(6434), + }, + [STATE(3763)] = { + [sym_identifier] = ACTIONS(8739), + [sym_newline] = ACTIONS(8741), + [anon_sym_COLON] = ACTIONS(8741), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8739), + [aux_sym_frm_property_statement_token1] = ACTIONS(8739), + [anon_sym_DOT] = ACTIONS(8739), + [anon_sym_BANG] = ACTIONS(8741), + [aux_sym__attribute_identifier_token1] = ACTIONS(8739), + [aux_sym_option_statement_token3] = ACTIONS(8739), + [aux_sym_type_declaration_token1] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8739), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8739), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8739), + [aux_sym_enum_declaration_token1] = ACTIONS(8739), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8739), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8739), + [aux_sym_declare_function_statement_token1] = ACTIONS(8739), + [aux_sym_preprocessor_const_token1] = ACTIONS(8739), + [aux_sym__property_get_header_token1] = ACTIONS(8739), + [aux_sym_event_declaration_token1] = ACTIONS(8739), + [sym_static_modifier] = ACTIONS(8739), + [sym__dim_keyword] = ACTIONS(8739), + [sym__redim_keyword] = ACTIONS(8739), + [aux_sym_get_accessor_token1] = ACTIONS(8739), + [aux_sym_set_accessor_token1] = ACTIONS(8739), + [anon_sym_COMMA] = ACTIONS(8743), + [aux_sym_const_declaration_token1] = ACTIONS(8739), + [anon_sym_LPAREN] = ACTIONS(8741), + [aux_sym_as_type_clause_token2] = ACTIONS(8739), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8739), + [aux_sym_visibility_token1] = ACTIONS(8739), + [aux_sym_visibility_token2] = ACTIONS(8739), + [aux_sym_elseif_fragment_token1] = ACTIONS(8739), + [aux_sym_else_fragment_token1] = ACTIONS(8739), + [aux_sym_select_statement_token1] = ACTIONS(8739), + [aux_sym__for_header_token1] = ACTIONS(8739), + [aux_sym_do_statement_token1] = ACTIONS(8739), + [aux_sym_do_condition_token1] = ACTIONS(8739), + [aux_sym_with_statement_token1] = ACTIONS(8739), + [aux_sym_exit_statement_token1] = ACTIONS(8739), + [sym_end_statement] = ACTIONS(8741), + [aux_sym_on_goto_statement_token1] = ACTIONS(8739), + [aux_sym_on_goto_statement_token2] = ACTIONS(8739), + [aux_sym_on_error_statement_token2] = ACTIONS(8739), + [sym__ambiguous_redim_statement] = ACTIONS(8741), + [aux_sym_erase_statement_token1] = ACTIONS(8739), + [aux_sym_open_statement_token1] = ACTIONS(8739), + [aux_sym_file_mode_token2] = ACTIONS(8739), + [aux_sym_file_access_token2] = ACTIONS(8739), + [aux_sym_file_lock_token2] = ACTIONS(8739), + [aux_sym_print_statement_token1] = ACTIONS(8739), + [anon_sym_PLUS] = ACTIONS(8741), + [anon_sym_DASH] = ACTIONS(8739), + [anon_sym_QMARK] = ACTIONS(8741), + [aux_sym_close_statement_token1] = ACTIONS(8739), + [aux_sym_put_statement_token1] = ACTIONS(8739), + [aux_sym_unlock_statement_token1] = ACTIONS(8739), + [aux_sym_seek_statement_token1] = ACTIONS(8739), + [sym_reset_statement] = ACTIONS(8739), + [aux_sym_raise_event_statement_token1] = ACTIONS(8739), + [sym_stop_statement] = ACTIONS(8739), + [sym_beep_statement] = ACTIONS(8739), + [aux_sym_unload_statement_token1] = ACTIONS(8739), + [aux_sym_def_type_statement_token1] = ACTIONS(8739), + [aux_sym_def_type_statement_token2] = ACTIONS(8739), + [aux_sym_def_type_statement_token3] = ACTIONS(8739), + [aux_sym_def_type_statement_token4] = ACTIONS(8739), + [aux_sym_def_type_statement_token5] = ACTIONS(8739), + [aux_sym_def_type_statement_token6] = ACTIONS(8739), + [aux_sym_def_type_statement_token7] = ACTIONS(8739), + [aux_sym_def_type_statement_token8] = ACTIONS(8739), + [aux_sym_def_type_statement_token9] = ACTIONS(8739), + [aux_sym_def_type_statement_token10] = ACTIONS(8739), + [aux_sym_def_type_statement_token11] = ACTIONS(8739), + [aux_sym_def_type_statement_token12] = ACTIONS(8739), + [aux_sym_def_type_statement_token13] = ACTIONS(8739), + [aux_sym_def_type_statement_token14] = ACTIONS(8739), + [aux_sym_call_statement_token1] = ACTIONS(8739), + [sym__ambiguous_call_statement] = ACTIONS(8739), + [aux_sym_addressof_expression_token1] = ACTIONS(8739), + [aux_sym_type_of_expression_token1] = ACTIONS(8739), + [aux_sym_unary_expression_token1] = ACTIONS(8739), + [sym_string_literal] = ACTIONS(8741), + [sym_number_literal] = ACTIONS(8741), + [aux_sym_boolean_literal_token1] = ACTIONS(8739), + [aux_sym_boolean_literal_token2] = ACTIONS(8739), + [sym_nothing_literal] = ACTIONS(8739), + [sym_null_literal] = ACTIONS(8739), + [sym_empty_literal] = ACTIONS(8739), + [sym_date_literal] = ACTIONS(8741), + [anon_sym_POUND] = ACTIONS(8739), + }, + [STATE(3764)] = { + [sym_identifier] = ACTIONS(8350), + [sym_newline] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8350), + [aux_sym_frm_property_statement_token1] = ACTIONS(8350), + [anon_sym_DOT] = ACTIONS(8350), + [anon_sym_BANG] = ACTIONS(8352), + [aux_sym__attribute_identifier_token1] = ACTIONS(8350), + [aux_sym_option_statement_token3] = ACTIONS(8350), + [aux_sym_type_declaration_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8350), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8350), + [aux_sym_enum_declaration_token1] = ACTIONS(8350), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8350), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8350), + [aux_sym_declare_function_statement_token1] = ACTIONS(8350), + [aux_sym_preprocessor_const_token1] = ACTIONS(8350), + [aux_sym__property_get_header_token1] = ACTIONS(8350), + [aux_sym_event_declaration_token1] = ACTIONS(8350), + [sym_static_modifier] = ACTIONS(8350), + [sym__dim_keyword] = ACTIONS(8350), + [sym__redim_keyword] = ACTIONS(8350), + [aux_sym_get_accessor_token1] = ACTIONS(8350), + [aux_sym_set_accessor_token1] = ACTIONS(8350), + [anon_sym_COMMA] = ACTIONS(8352), + [aux_sym_const_declaration_token1] = ACTIONS(8350), + [anon_sym_LPAREN] = ACTIONS(8352), + [aux_sym_as_type_clause_token2] = ACTIONS(8350), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8350), + [aux_sym_visibility_token1] = ACTIONS(8350), + [aux_sym_visibility_token2] = ACTIONS(8350), + [aux_sym_elseif_fragment_token1] = ACTIONS(8350), + [aux_sym_else_fragment_token1] = ACTIONS(8350), + [aux_sym_select_statement_token1] = ACTIONS(8350), + [aux_sym__for_header_token1] = ACTIONS(8350), + [aux_sym_do_statement_token1] = ACTIONS(8350), + [aux_sym_do_condition_token1] = ACTIONS(8350), + [aux_sym_with_statement_token1] = ACTIONS(8350), + [aux_sym_exit_statement_token1] = ACTIONS(8350), + [sym_end_statement] = ACTIONS(8352), + [aux_sym_on_goto_statement_token1] = ACTIONS(8350), + [aux_sym_on_goto_statement_token2] = ACTIONS(8350), + [aux_sym_on_error_statement_token2] = ACTIONS(8350), + [sym__ambiguous_redim_statement] = ACTIONS(8352), + [aux_sym_erase_statement_token1] = ACTIONS(8350), + [aux_sym_open_statement_token1] = ACTIONS(8350), + [aux_sym_file_mode_token2] = ACTIONS(8350), + [aux_sym_file_access_token2] = ACTIONS(8350), + [aux_sym_file_lock_token2] = ACTIONS(8350), + [aux_sym_print_statement_token1] = ACTIONS(8350), + [anon_sym_PLUS] = ACTIONS(8352), + [anon_sym_DASH] = ACTIONS(8350), + [anon_sym_QMARK] = ACTIONS(8352), + [aux_sym_close_statement_token1] = ACTIONS(8350), + [aux_sym_put_statement_token1] = ACTIONS(8350), + [aux_sym_unlock_statement_token1] = ACTIONS(8350), + [aux_sym_seek_statement_token1] = ACTIONS(8350), + [sym_reset_statement] = ACTIONS(8350), + [aux_sym_raise_event_statement_token1] = ACTIONS(8350), + [sym_stop_statement] = ACTIONS(8350), + [sym_beep_statement] = ACTIONS(8350), + [aux_sym_unload_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token2] = ACTIONS(8350), + [aux_sym_def_type_statement_token3] = ACTIONS(8350), + [aux_sym_def_type_statement_token4] = ACTIONS(8350), + [aux_sym_def_type_statement_token5] = ACTIONS(8350), + [aux_sym_def_type_statement_token6] = ACTIONS(8350), + [aux_sym_def_type_statement_token7] = ACTIONS(8350), + [aux_sym_def_type_statement_token8] = ACTIONS(8350), + [aux_sym_def_type_statement_token9] = ACTIONS(8350), + [aux_sym_def_type_statement_token10] = ACTIONS(8350), + [aux_sym_def_type_statement_token11] = ACTIONS(8350), + [aux_sym_def_type_statement_token12] = ACTIONS(8350), + [aux_sym_def_type_statement_token13] = ACTIONS(8350), + [aux_sym_def_type_statement_token14] = ACTIONS(8350), + [aux_sym_call_statement_token1] = ACTIONS(8350), + [sym__ambiguous_call_statement] = ACTIONS(8350), + [aux_sym_addressof_expression_token1] = ACTIONS(8350), + [aux_sym_type_of_expression_token1] = ACTIONS(8350), + [aux_sym_unary_expression_token1] = ACTIONS(8350), + [sym_string_literal] = ACTIONS(8352), + [sym_number_literal] = ACTIONS(8352), + [aux_sym_boolean_literal_token1] = ACTIONS(8350), + [aux_sym_boolean_literal_token2] = ACTIONS(8350), + [sym_nothing_literal] = ACTIONS(8350), + [sym_null_literal] = ACTIONS(8350), + [sym_empty_literal] = ACTIONS(8350), + [sym_date_literal] = ACTIONS(8352), + [anon_sym_POUND] = ACTIONS(8350), + }, + [STATE(3765)] = { + [sym_identifier] = ACTIONS(8745), + [sym_newline] = ACTIONS(8747), + [anon_sym_COLON] = ACTIONS(8747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8745), + [aux_sym_frm_property_statement_token1] = ACTIONS(8745), + [anon_sym_DOT] = ACTIONS(8745), + [anon_sym_BANG] = ACTIONS(8747), + [aux_sym__attribute_identifier_token1] = ACTIONS(8745), + [aux_sym_option_statement_token3] = ACTIONS(8745), + [aux_sym_type_declaration_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8745), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8745), + [aux_sym_enum_declaration_token1] = ACTIONS(8745), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8745), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8745), + [aux_sym_declare_function_statement_token1] = ACTIONS(8745), + [aux_sym_preprocessor_const_token1] = ACTIONS(8745), + [aux_sym__property_get_header_token1] = ACTIONS(8745), + [aux_sym_event_declaration_token1] = ACTIONS(8745), + [sym_static_modifier] = ACTIONS(8745), + [sym__dim_keyword] = ACTIONS(8745), + [sym__redim_keyword] = ACTIONS(8745), + [aux_sym_get_accessor_token1] = ACTIONS(8745), + [aux_sym_set_accessor_token1] = ACTIONS(8745), + [aux_sym_const_declaration_token1] = ACTIONS(8745), + [anon_sym_LPAREN] = ACTIONS(8747), + [aux_sym_as_type_clause_token2] = ACTIONS(8745), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8745), + [aux_sym_visibility_token1] = ACTIONS(8745), + [aux_sym_visibility_token2] = ACTIONS(8745), + [aux_sym_elseif_fragment_token1] = ACTIONS(8745), + [aux_sym_else_fragment_token1] = ACTIONS(8745), + [aux_sym_select_statement_token1] = ACTIONS(8745), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8745), + [aux_sym__for_header_token1] = ACTIONS(8745), + [aux_sym_do_statement_token1] = ACTIONS(8745), + [aux_sym_do_condition_token1] = ACTIONS(8745), + [aux_sym_with_statement_token1] = ACTIONS(8745), + [aux_sym_exit_statement_token1] = ACTIONS(8745), + [sym_end_statement] = ACTIONS(8747), + [aux_sym_on_goto_statement_token1] = ACTIONS(8745), + [aux_sym_on_goto_statement_token2] = ACTIONS(8745), + [aux_sym_on_error_statement_token2] = ACTIONS(8745), + [sym__ambiguous_redim_statement] = ACTIONS(8747), + [aux_sym_erase_statement_token1] = ACTIONS(8745), + [aux_sym_open_statement_token1] = ACTIONS(8745), + [aux_sym_file_mode_token2] = ACTIONS(8745), + [aux_sym_file_access_token2] = ACTIONS(8745), + [aux_sym_file_lock_token2] = ACTIONS(8745), + [aux_sym_print_statement_token1] = ACTIONS(8745), + [anon_sym_PLUS] = ACTIONS(8747), + [anon_sym_DASH] = ACTIONS(8745), + [anon_sym_QMARK] = ACTIONS(8747), + [aux_sym_close_statement_token1] = ACTIONS(8745), + [aux_sym_put_statement_token1] = ACTIONS(8745), + [aux_sym_unlock_statement_token1] = ACTIONS(8745), + [aux_sym_seek_statement_token1] = ACTIONS(8745), + [sym_reset_statement] = ACTIONS(8745), + [aux_sym_raise_event_statement_token1] = ACTIONS(8745), + [sym_stop_statement] = ACTIONS(8745), + [sym_beep_statement] = ACTIONS(8745), + [aux_sym_unload_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token2] = ACTIONS(8745), + [aux_sym_def_type_statement_token3] = ACTIONS(8745), + [aux_sym_def_type_statement_token4] = ACTIONS(8745), + [aux_sym_def_type_statement_token5] = ACTIONS(8745), + [aux_sym_def_type_statement_token6] = ACTIONS(8745), + [aux_sym_def_type_statement_token7] = ACTIONS(8745), + [aux_sym_def_type_statement_token8] = ACTIONS(8745), + [aux_sym_def_type_statement_token9] = ACTIONS(8745), + [aux_sym_def_type_statement_token10] = ACTIONS(8745), + [aux_sym_def_type_statement_token11] = ACTIONS(8745), + [aux_sym_def_type_statement_token12] = ACTIONS(8745), + [aux_sym_def_type_statement_token13] = ACTIONS(8745), + [aux_sym_def_type_statement_token14] = ACTIONS(8745), + [aux_sym_call_statement_token1] = ACTIONS(8745), + [sym__ambiguous_call_statement] = ACTIONS(8745), + [aux_sym_addressof_expression_token1] = ACTIONS(8745), + [aux_sym_type_of_expression_token1] = ACTIONS(8745), + [aux_sym_unary_expression_token1] = ACTIONS(8745), + [sym_string_literal] = ACTIONS(8747), + [sym_number_literal] = ACTIONS(8747), + [aux_sym_boolean_literal_token1] = ACTIONS(8745), + [aux_sym_boolean_literal_token2] = ACTIONS(8745), + [sym_nothing_literal] = ACTIONS(8745), + [sym_null_literal] = ACTIONS(8745), + [sym_empty_literal] = ACTIONS(8745), + [sym_date_literal] = ACTIONS(8747), + [anon_sym_POUND] = ACTIONS(8745), + }, + [STATE(3766)] = { + [sym_identifier] = ACTIONS(7968), + [sym_newline] = ACTIONS(7970), + [anon_sym_COLON] = ACTIONS(7970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7968), + [aux_sym_frm_property_statement_token1] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_BANG] = ACTIONS(7970), + [aux_sym__attribute_identifier_token1] = ACTIONS(7968), + [aux_sym_option_statement_token3] = ACTIONS(7968), + [aux_sym_type_declaration_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7968), + [aux_sym_enum_declaration_token1] = ACTIONS(7968), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7968), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7968), + [aux_sym_declare_function_statement_token1] = ACTIONS(7968), + [aux_sym_preprocessor_const_token1] = ACTIONS(7968), + [aux_sym__property_get_header_token1] = ACTIONS(7968), + [aux_sym_event_declaration_token1] = ACTIONS(7968), + [sym_static_modifier] = ACTIONS(7968), + [sym__dim_keyword] = ACTIONS(7968), + [sym__redim_keyword] = ACTIONS(7968), + [aux_sym_get_accessor_token1] = ACTIONS(7968), + [aux_sym_set_accessor_token1] = ACTIONS(7968), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_const_declaration_token1] = ACTIONS(7968), + [anon_sym_LPAREN] = ACTIONS(7970), + [aux_sym_as_type_clause_token1] = ACTIONS(7968), + [aux_sym_as_type_clause_token2] = ACTIONS(7968), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7968), + [aux_sym_visibility_token1] = ACTIONS(7968), + [aux_sym_visibility_token2] = ACTIONS(7968), + [aux_sym_elseif_fragment_token1] = ACTIONS(7968), + [aux_sym_else_fragment_token1] = ACTIONS(7968), + [aux_sym_select_statement_token1] = ACTIONS(7968), + [aux_sym__for_header_token1] = ACTIONS(7968), + [aux_sym_do_statement_token1] = ACTIONS(7968), + [aux_sym_do_condition_token1] = ACTIONS(7968), + [aux_sym_with_statement_token1] = ACTIONS(7968), + [aux_sym_exit_statement_token1] = ACTIONS(7968), + [sym_end_statement] = ACTIONS(7970), + [aux_sym_on_goto_statement_token1] = ACTIONS(7968), + [aux_sym_on_goto_statement_token2] = ACTIONS(7968), + [aux_sym_on_error_statement_token2] = ACTIONS(7968), + [sym__ambiguous_redim_statement] = ACTIONS(7970), + [aux_sym_erase_statement_token1] = ACTIONS(7968), + [aux_sym_open_statement_token1] = ACTIONS(7968), + [aux_sym_file_mode_token2] = ACTIONS(7968), + [aux_sym_file_access_token2] = ACTIONS(7968), + [aux_sym_file_lock_token2] = ACTIONS(7968), + [aux_sym_print_statement_token1] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7970), + [aux_sym_close_statement_token1] = ACTIONS(7968), + [aux_sym_put_statement_token1] = ACTIONS(7968), + [aux_sym_unlock_statement_token1] = ACTIONS(7968), + [aux_sym_seek_statement_token1] = ACTIONS(7968), + [sym_reset_statement] = ACTIONS(7968), + [aux_sym_raise_event_statement_token1] = ACTIONS(7968), + [sym_stop_statement] = ACTIONS(7968), + [sym_beep_statement] = ACTIONS(7968), + [aux_sym_unload_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token2] = ACTIONS(7968), + [aux_sym_def_type_statement_token3] = ACTIONS(7968), + [aux_sym_def_type_statement_token4] = ACTIONS(7968), + [aux_sym_def_type_statement_token5] = ACTIONS(7968), + [aux_sym_def_type_statement_token6] = ACTIONS(7968), + [aux_sym_def_type_statement_token7] = ACTIONS(7968), + [aux_sym_def_type_statement_token8] = ACTIONS(7968), + [aux_sym_def_type_statement_token9] = ACTIONS(7968), + [aux_sym_def_type_statement_token10] = ACTIONS(7968), + [aux_sym_def_type_statement_token11] = ACTIONS(7968), + [aux_sym_def_type_statement_token12] = ACTIONS(7968), + [aux_sym_def_type_statement_token13] = ACTIONS(7968), + [aux_sym_def_type_statement_token14] = ACTIONS(7968), + [aux_sym_call_statement_token1] = ACTIONS(7968), + [sym__ambiguous_call_statement] = ACTIONS(7968), + [aux_sym_addressof_expression_token1] = ACTIONS(7968), + [aux_sym_type_of_expression_token1] = ACTIONS(7968), + [aux_sym_unary_expression_token1] = ACTIONS(7968), + [sym_string_literal] = ACTIONS(7970), + [sym_number_literal] = ACTIONS(7970), + [aux_sym_boolean_literal_token1] = ACTIONS(7968), + [aux_sym_boolean_literal_token2] = ACTIONS(7968), + [sym_nothing_literal] = ACTIONS(7968), + [sym_null_literal] = ACTIONS(7968), + [sym_empty_literal] = ACTIONS(7968), + [sym_date_literal] = ACTIONS(7970), + [anon_sym_POUND] = ACTIONS(7968), + }, + [STATE(3767)] = { + [sym_identifier] = ACTIONS(8749), + [sym_newline] = ACTIONS(8751), + [anon_sym_COLON] = ACTIONS(8753), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8749), + [aux_sym_frm_property_statement_token1] = ACTIONS(8749), + [anon_sym_DOT] = ACTIONS(8749), + [anon_sym_BANG] = ACTIONS(8751), + [aux_sym__attribute_identifier_token1] = ACTIONS(8749), + [aux_sym_option_statement_token3] = ACTIONS(8749), + [aux_sym_type_declaration_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8749), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8749), + [aux_sym_enum_declaration_token1] = ACTIONS(8749), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8749), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8749), + [aux_sym_declare_function_statement_token1] = ACTIONS(8749), + [aux_sym_preprocessor_const_token1] = ACTIONS(8749), + [aux_sym__property_get_header_token1] = ACTIONS(8749), + [aux_sym_event_declaration_token1] = ACTIONS(8749), + [sym_static_modifier] = ACTIONS(8749), + [sym__dim_keyword] = ACTIONS(8749), + [sym__redim_keyword] = ACTIONS(8749), + [aux_sym_get_accessor_token1] = ACTIONS(8749), + [aux_sym_set_accessor_token1] = ACTIONS(8749), + [aux_sym_const_declaration_token1] = ACTIONS(8749), + [anon_sym_LPAREN] = ACTIONS(8751), + [aux_sym_as_type_clause_token2] = ACTIONS(8749), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8749), + [aux_sym_visibility_token1] = ACTIONS(8749), + [aux_sym_visibility_token2] = ACTIONS(8749), + [aux_sym_elseif_fragment_token1] = ACTIONS(8749), + [aux_sym_else_fragment_token1] = ACTIONS(8749), + [aux_sym_select_statement_token1] = ACTIONS(8749), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8749), + [aux_sym__for_header_token1] = ACTIONS(8749), + [aux_sym_do_statement_token1] = ACTIONS(8749), + [aux_sym_do_condition_token1] = ACTIONS(8749), + [aux_sym_with_statement_token1] = ACTIONS(8749), + [aux_sym_exit_statement_token1] = ACTIONS(8749), + [sym_end_statement] = ACTIONS(8751), + [aux_sym_on_goto_statement_token1] = ACTIONS(8749), + [aux_sym_on_goto_statement_token2] = ACTIONS(8749), + [aux_sym_on_error_statement_token2] = ACTIONS(8749), + [sym__ambiguous_redim_statement] = ACTIONS(8751), + [aux_sym_erase_statement_token1] = ACTIONS(8749), + [aux_sym_open_statement_token1] = ACTIONS(8749), + [aux_sym_file_mode_token2] = ACTIONS(8749), + [aux_sym_file_access_token2] = ACTIONS(8749), + [aux_sym_file_lock_token2] = ACTIONS(8749), + [aux_sym_print_statement_token1] = ACTIONS(8749), + [anon_sym_PLUS] = ACTIONS(8751), + [anon_sym_DASH] = ACTIONS(8749), + [anon_sym_QMARK] = ACTIONS(8751), + [aux_sym_close_statement_token1] = ACTIONS(8749), + [aux_sym_put_statement_token1] = ACTIONS(8749), + [aux_sym_unlock_statement_token1] = ACTIONS(8749), + [aux_sym_seek_statement_token1] = ACTIONS(8749), + [sym_reset_statement] = ACTIONS(8749), + [aux_sym_raise_event_statement_token1] = ACTIONS(8749), + [sym_stop_statement] = ACTIONS(8749), + [sym_beep_statement] = ACTIONS(8749), + [aux_sym_unload_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token2] = ACTIONS(8749), + [aux_sym_def_type_statement_token3] = ACTIONS(8749), + [aux_sym_def_type_statement_token4] = ACTIONS(8749), + [aux_sym_def_type_statement_token5] = ACTIONS(8749), + [aux_sym_def_type_statement_token6] = ACTIONS(8749), + [aux_sym_def_type_statement_token7] = ACTIONS(8749), + [aux_sym_def_type_statement_token8] = ACTIONS(8749), + [aux_sym_def_type_statement_token9] = ACTIONS(8749), + [aux_sym_def_type_statement_token10] = ACTIONS(8749), + [aux_sym_def_type_statement_token11] = ACTIONS(8749), + [aux_sym_def_type_statement_token12] = ACTIONS(8749), + [aux_sym_def_type_statement_token13] = ACTIONS(8749), + [aux_sym_def_type_statement_token14] = ACTIONS(8749), + [aux_sym_call_statement_token1] = ACTIONS(8749), + [sym__ambiguous_call_statement] = ACTIONS(8749), + [aux_sym_addressof_expression_token1] = ACTIONS(8749), + [aux_sym_type_of_expression_token1] = ACTIONS(8749), + [aux_sym_unary_expression_token1] = ACTIONS(8749), + [sym_string_literal] = ACTIONS(8751), + [sym_number_literal] = ACTIONS(8753), + [aux_sym_boolean_literal_token1] = ACTIONS(8749), + [aux_sym_boolean_literal_token2] = ACTIONS(8749), + [sym_nothing_literal] = ACTIONS(8749), + [sym_null_literal] = ACTIONS(8749), + [sym_empty_literal] = ACTIONS(8749), + [sym_date_literal] = ACTIONS(8751), + [anon_sym_POUND] = ACTIONS(8749), + }, + [STATE(3768)] = { + [sym_identifier] = ACTIONS(3996), + [sym_newline] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3996), + [aux_sym_frm_property_statement_token1] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3994), + [aux_sym__attribute_identifier_token1] = ACTIONS(3996), + [aux_sym_option_statement_token3] = ACTIONS(3996), + [aux_sym_type_declaration_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3996), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(3996), + [aux_sym_enum_declaration_token1] = ACTIONS(3996), + [aux_sym_declare_sub_statement_token1] = ACTIONS(3996), + [aux_sym_declare_sub_statement_token2] = ACTIONS(3996), + [aux_sym_declare_function_statement_token1] = ACTIONS(3996), + [aux_sym_preprocessor_const_token1] = ACTIONS(3996), + [aux_sym__property_get_header_token1] = ACTIONS(3996), + [aux_sym_event_declaration_token1] = ACTIONS(3996), + [sym_static_modifier] = ACTIONS(3996), + [sym__dim_keyword] = ACTIONS(3996), + [sym__redim_keyword] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3996), + [aux_sym_set_accessor_token1] = ACTIONS(3996), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3994), + [aux_sym_as_type_clause_token2] = ACTIONS(3996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3996), + [aux_sym_visibility_token1] = ACTIONS(3996), + [aux_sym_visibility_token2] = ACTIONS(3996), + [aux_sym_elseif_fragment_token1] = ACTIONS(3996), + [aux_sym_else_fragment_token1] = ACTIONS(3996), + [aux_sym_select_statement_token1] = ACTIONS(3996), + [aux_sym__for_header_token1] = ACTIONS(3996), + [aux_sym_do_statement_token1] = ACTIONS(3996), + [aux_sym_do_condition_token1] = ACTIONS(3996), + [aux_sym_with_statement_token1] = ACTIONS(3996), + [aux_sym_exit_statement_token1] = ACTIONS(3996), + [sym_end_statement] = ACTIONS(3994), + [aux_sym_on_goto_statement_token1] = ACTIONS(3996), + [aux_sym_on_goto_statement_token2] = ACTIONS(3996), + [aux_sym_on_error_statement_token2] = ACTIONS(3996), + [sym__ambiguous_redim_statement] = ACTIONS(3994), + [aux_sym_erase_statement_token1] = ACTIONS(3996), + [aux_sym_open_statement_token1] = ACTIONS(3996), + [aux_sym_file_mode_token2] = ACTIONS(3996), + [aux_sym_file_access_token2] = ACTIONS(3996), + [aux_sym_file_lock_token2] = ACTIONS(3996), + [aux_sym_print_statement_token1] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3994), + [aux_sym_close_statement_token1] = ACTIONS(3996), + [aux_sym_put_statement_token1] = ACTIONS(3996), + [aux_sym_unlock_statement_token1] = ACTIONS(3996), + [aux_sym_seek_statement_token1] = ACTIONS(3996), + [sym_reset_statement] = ACTIONS(3996), + [aux_sym_raise_event_statement_token1] = ACTIONS(3996), + [sym_stop_statement] = ACTIONS(3996), + [sym_beep_statement] = ACTIONS(3996), + [aux_sym_unload_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token2] = ACTIONS(3996), + [aux_sym_def_type_statement_token3] = ACTIONS(3996), + [aux_sym_def_type_statement_token4] = ACTIONS(3996), + [aux_sym_def_type_statement_token5] = ACTIONS(3996), + [aux_sym_def_type_statement_token6] = ACTIONS(3996), + [aux_sym_def_type_statement_token7] = ACTIONS(3996), + [aux_sym_def_type_statement_token8] = ACTIONS(3996), + [aux_sym_def_type_statement_token9] = ACTIONS(3996), + [aux_sym_def_type_statement_token10] = ACTIONS(3996), + [aux_sym_def_type_statement_token11] = ACTIONS(3996), + [aux_sym_def_type_statement_token12] = ACTIONS(3996), + [aux_sym_def_type_statement_token13] = ACTIONS(3996), + [aux_sym_def_type_statement_token14] = ACTIONS(3996), + [aux_sym_call_statement_token1] = ACTIONS(3996), + [sym__ambiguous_call_statement] = ACTIONS(3996), + [aux_sym_addressof_expression_token1] = ACTIONS(3996), + [aux_sym_type_of_expression_token1] = ACTIONS(3996), + [aux_sym_unary_expression_token1] = ACTIONS(3996), + [sym_string_literal] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3994), + [aux_sym_boolean_literal_token1] = ACTIONS(3996), + [aux_sym_boolean_literal_token2] = ACTIONS(3996), + [sym_nothing_literal] = ACTIONS(3996), + [sym_null_literal] = ACTIONS(3996), + [sym_empty_literal] = ACTIONS(3996), + [sym_date_literal] = ACTIONS(3994), + [anon_sym_POUND] = ACTIONS(3996), + }, + [STATE(3769)] = { + [sym_identifier] = ACTIONS(8756), + [sym_newline] = ACTIONS(8759), + [anon_sym_COLON] = ACTIONS(8759), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8756), + [aux_sym_frm_property_statement_token1] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8756), + [anon_sym_BANG] = ACTIONS(8759), + [aux_sym__attribute_identifier_token1] = ACTIONS(8756), + [aux_sym_option_statement_token3] = ACTIONS(8756), + [aux_sym_type_declaration_token1] = ACTIONS(8762), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8762), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8756), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8762), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8762), + [aux_sym_enum_declaration_token1] = ACTIONS(8762), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8762), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8762), + [aux_sym_declare_function_statement_token1] = ACTIONS(8762), + [aux_sym_preprocessor_const_token1] = ACTIONS(8756), + [aux_sym__property_get_header_token1] = ACTIONS(8762), + [aux_sym_event_declaration_token1] = ACTIONS(8762), + [sym_static_modifier] = ACTIONS(8756), + [sym__dim_keyword] = ACTIONS(8756), + [sym__redim_keyword] = ACTIONS(8756), + [aux_sym_get_accessor_token1] = ACTIONS(8756), + [aux_sym_set_accessor_token1] = ACTIONS(8756), + [aux_sym_const_declaration_token1] = ACTIONS(8756), + [anon_sym_LPAREN] = ACTIONS(8759), + [aux_sym_as_type_clause_token2] = ACTIONS(8756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8756), + [aux_sym_visibility_token1] = ACTIONS(8756), + [aux_sym_visibility_token2] = ACTIONS(8756), + [aux_sym_elseif_fragment_token1] = ACTIONS(8756), + [aux_sym_else_fragment_token1] = ACTIONS(8756), + [aux_sym_select_statement_token1] = ACTIONS(8756), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8756), + [aux_sym_do_statement_token1] = ACTIONS(8756), + [aux_sym_do_condition_token1] = ACTIONS(8756), + [aux_sym_with_statement_token1] = ACTIONS(8756), + [aux_sym_exit_statement_token1] = ACTIONS(8756), + [sym_end_statement] = ACTIONS(8759), + [aux_sym_on_goto_statement_token1] = ACTIONS(8756), + [aux_sym_on_goto_statement_token2] = ACTIONS(8756), + [aux_sym_on_error_statement_token2] = ACTIONS(8756), + [sym__ambiguous_redim_statement] = ACTIONS(8759), + [aux_sym_erase_statement_token1] = ACTIONS(8756), + [aux_sym_open_statement_token1] = ACTIONS(8756), + [aux_sym_file_mode_token2] = ACTIONS(8756), + [aux_sym_file_access_token2] = ACTIONS(8756), + [aux_sym_file_lock_token2] = ACTIONS(8756), + [aux_sym_print_statement_token1] = ACTIONS(8756), + [anon_sym_PLUS] = ACTIONS(8759), + [anon_sym_DASH] = ACTIONS(8756), + [anon_sym_QMARK] = ACTIONS(8759), + [aux_sym_close_statement_token1] = ACTIONS(8756), + [aux_sym_put_statement_token1] = ACTIONS(8756), + [aux_sym_unlock_statement_token1] = ACTIONS(8756), + [aux_sym_seek_statement_token1] = ACTIONS(8756), + [sym_reset_statement] = ACTIONS(8756), + [aux_sym_raise_event_statement_token1] = ACTIONS(8756), + [sym_stop_statement] = ACTIONS(8756), + [sym_beep_statement] = ACTIONS(8756), + [aux_sym_unload_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token2] = ACTIONS(8756), + [aux_sym_def_type_statement_token3] = ACTIONS(8756), + [aux_sym_def_type_statement_token4] = ACTIONS(8756), + [aux_sym_def_type_statement_token5] = ACTIONS(8756), + [aux_sym_def_type_statement_token6] = ACTIONS(8756), + [aux_sym_def_type_statement_token7] = ACTIONS(8756), + [aux_sym_def_type_statement_token8] = ACTIONS(8756), + [aux_sym_def_type_statement_token9] = ACTIONS(8756), + [aux_sym_def_type_statement_token10] = ACTIONS(8756), + [aux_sym_def_type_statement_token11] = ACTIONS(8756), + [aux_sym_def_type_statement_token12] = ACTIONS(8756), + [aux_sym_def_type_statement_token13] = ACTIONS(8756), + [aux_sym_def_type_statement_token14] = ACTIONS(8756), + [aux_sym_call_statement_token1] = ACTIONS(8756), + [sym__ambiguous_call_statement] = ACTIONS(8756), + [aux_sym_addressof_expression_token1] = ACTIONS(8756), + [aux_sym_type_of_expression_token1] = ACTIONS(8756), + [aux_sym_unary_expression_token1] = ACTIONS(8756), + [sym_string_literal] = ACTIONS(8759), + [sym_number_literal] = ACTIONS(8759), + [aux_sym_boolean_literal_token1] = ACTIONS(8756), + [aux_sym_boolean_literal_token2] = ACTIONS(8756), + [sym_nothing_literal] = ACTIONS(8756), + [sym_null_literal] = ACTIONS(8756), + [sym_empty_literal] = ACTIONS(8756), + [sym_date_literal] = ACTIONS(8759), + [anon_sym_POUND] = ACTIONS(8756), + }, + [STATE(3770)] = { + [sym_identifier] = ACTIONS(8766), + [sym_newline] = ACTIONS(8768), + [anon_sym_COLON] = ACTIONS(8768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8766), + [aux_sym_frm_property_statement_token1] = ACTIONS(8766), + [anon_sym_DOT] = ACTIONS(8766), + [anon_sym_BANG] = ACTIONS(8768), + [aux_sym__attribute_identifier_token1] = ACTIONS(8766), + [aux_sym_option_statement_token3] = ACTIONS(8766), + [aux_sym_type_declaration_token1] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8766), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8766), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8766), + [aux_sym_enum_declaration_token1] = ACTIONS(8766), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8766), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8766), + [aux_sym_declare_function_statement_token1] = ACTIONS(8766), + [aux_sym_preprocessor_const_token1] = ACTIONS(8766), + [aux_sym__property_get_header_token1] = ACTIONS(8766), + [aux_sym_event_declaration_token1] = ACTIONS(8766), + [sym_static_modifier] = ACTIONS(8766), + [sym__dim_keyword] = ACTIONS(8766), + [sym__redim_keyword] = ACTIONS(8766), + [aux_sym_get_accessor_token1] = ACTIONS(8766), + [aux_sym_set_accessor_token1] = ACTIONS(8766), + [anon_sym_COMMA] = ACTIONS(8770), + [aux_sym_const_declaration_token1] = ACTIONS(8766), + [anon_sym_LPAREN] = ACTIONS(8768), + [aux_sym_as_type_clause_token2] = ACTIONS(8766), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8766), + [aux_sym_visibility_token1] = ACTIONS(8766), + [aux_sym_visibility_token2] = ACTIONS(8766), + [aux_sym_elseif_fragment_token1] = ACTIONS(8766), + [aux_sym_else_fragment_token1] = ACTIONS(8766), + [aux_sym_select_statement_token1] = ACTIONS(8766), + [aux_sym__for_header_token1] = ACTIONS(8766), + [aux_sym_do_statement_token1] = ACTIONS(8766), + [aux_sym_do_condition_token1] = ACTIONS(8766), + [aux_sym_with_statement_token1] = ACTIONS(8766), + [aux_sym_exit_statement_token1] = ACTIONS(8766), + [sym_end_statement] = ACTIONS(8768), + [aux_sym_on_goto_statement_token1] = ACTIONS(8766), + [aux_sym_on_goto_statement_token2] = ACTIONS(8766), + [aux_sym_on_error_statement_token2] = ACTIONS(8766), + [sym__ambiguous_redim_statement] = ACTIONS(8768), + [aux_sym_erase_statement_token1] = ACTIONS(8766), + [aux_sym_open_statement_token1] = ACTIONS(8766), + [aux_sym_file_mode_token2] = ACTIONS(8766), + [aux_sym_file_access_token2] = ACTIONS(8766), + [aux_sym_file_lock_token2] = ACTIONS(8766), + [aux_sym_print_statement_token1] = ACTIONS(8766), + [anon_sym_PLUS] = ACTIONS(8768), + [anon_sym_DASH] = ACTIONS(8766), + [anon_sym_QMARK] = ACTIONS(8768), + [aux_sym_close_statement_token1] = ACTIONS(8766), + [aux_sym_put_statement_token1] = ACTIONS(8766), + [aux_sym_unlock_statement_token1] = ACTIONS(8766), + [aux_sym_seek_statement_token1] = ACTIONS(8766), + [sym_reset_statement] = ACTIONS(8766), + [aux_sym_raise_event_statement_token1] = ACTIONS(8766), + [sym_stop_statement] = ACTIONS(8766), + [sym_beep_statement] = ACTIONS(8766), + [aux_sym_unload_statement_token1] = ACTIONS(8766), + [aux_sym_def_type_statement_token1] = ACTIONS(8766), + [aux_sym_def_type_statement_token2] = ACTIONS(8766), + [aux_sym_def_type_statement_token3] = ACTIONS(8766), + [aux_sym_def_type_statement_token4] = ACTIONS(8766), + [aux_sym_def_type_statement_token5] = ACTIONS(8766), + [aux_sym_def_type_statement_token6] = ACTIONS(8766), + [aux_sym_def_type_statement_token7] = ACTIONS(8766), + [aux_sym_def_type_statement_token8] = ACTIONS(8766), + [aux_sym_def_type_statement_token9] = ACTIONS(8766), + [aux_sym_def_type_statement_token10] = ACTIONS(8766), + [aux_sym_def_type_statement_token11] = ACTIONS(8766), + [aux_sym_def_type_statement_token12] = ACTIONS(8766), + [aux_sym_def_type_statement_token13] = ACTIONS(8766), + [aux_sym_def_type_statement_token14] = ACTIONS(8766), + [aux_sym_call_statement_token1] = ACTIONS(8766), + [sym__ambiguous_call_statement] = ACTIONS(8766), + [aux_sym_addressof_expression_token1] = ACTIONS(8766), + [aux_sym_type_of_expression_token1] = ACTIONS(8766), + [aux_sym_unary_expression_token1] = ACTIONS(8766), + [sym_string_literal] = ACTIONS(8768), + [sym_number_literal] = ACTIONS(8768), + [aux_sym_boolean_literal_token1] = ACTIONS(8766), + [aux_sym_boolean_literal_token2] = ACTIONS(8766), + [sym_nothing_literal] = ACTIONS(8766), + [sym_null_literal] = ACTIONS(8766), + [sym_empty_literal] = ACTIONS(8766), + [sym_date_literal] = ACTIONS(8768), + [anon_sym_POUND] = ACTIONS(8766), + }, + [STATE(3771)] = { + [sym_identifier] = ACTIONS(3370), + [sym_newline] = ACTIONS(3364), + [anon_sym_COLON] = ACTIONS(6646), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3370), + [aux_sym_frm_property_statement_token1] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3364), + [aux_sym__attribute_identifier_token1] = ACTIONS(3370), + [aux_sym_option_statement_token3] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3370), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3370), + [aux_sym_preprocessor_const_token1] = ACTIONS(3370), + [sym_static_modifier] = ACTIONS(3370), + [sym__dim_keyword] = ACTIONS(3370), + [sym__redim_keyword] = ACTIONS(3370), + [aux_sym_get_accessor_token1] = ACTIONS(3370), + [aux_sym_set_accessor_token1] = ACTIONS(3370), + [aux_sym_const_declaration_token1] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3364), + [aux_sym_as_type_clause_token2] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3370), + [aux_sym_visibility_token1] = ACTIONS(3370), + [aux_sym_visibility_token2] = ACTIONS(3370), + [aux_sym_elseif_fragment_token1] = ACTIONS(3370), + [aux_sym_else_fragment_token1] = ACTIONS(3370), + [aux_sym_select_statement_token1] = ACTIONS(3370), + [aux_sym__for_header_token1] = ACTIONS(3360), + [aux_sym_do_statement_token1] = ACTIONS(3360), + [aux_sym_do_condition_token1] = ACTIONS(3360), + [aux_sym_with_statement_token1] = ACTIONS(3360), + [aux_sym_exit_statement_token1] = ACTIONS(3370), + [sym_end_statement] = ACTIONS(3364), + [aux_sym_on_goto_statement_token1] = ACTIONS(3370), + [aux_sym_on_goto_statement_token2] = ACTIONS(3370), + [aux_sym_on_error_statement_token2] = ACTIONS(3370), + [sym__ambiguous_redim_statement] = ACTIONS(3364), + [aux_sym_erase_statement_token1] = ACTIONS(3370), + [aux_sym_open_statement_token1] = ACTIONS(3370), + [aux_sym_file_mode_token2] = ACTIONS(3370), + [aux_sym_file_access_token2] = ACTIONS(3370), + [aux_sym_file_lock_token2] = ACTIONS(3370), + [aux_sym_print_statement_token1] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_BSLASH] = ACTIONS(3364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(3370), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(3364), + [aux_sym_close_statement_token1] = ACTIONS(3370), + [aux_sym_put_statement_token1] = ACTIONS(3370), + [aux_sym_unlock_statement_token1] = ACTIONS(3370), + [aux_sym_seek_statement_token1] = ACTIONS(3370), + [sym_reset_statement] = ACTIONS(3370), + [aux_sym_raise_event_statement_token1] = ACTIONS(3370), + [sym_stop_statement] = ACTIONS(3370), + [sym_beep_statement] = ACTIONS(3370), + [aux_sym_unload_statement_token1] = ACTIONS(3370), + [aux_sym_def_type_statement_token1] = ACTIONS(3370), + [aux_sym_def_type_statement_token2] = ACTIONS(3370), + [aux_sym_def_type_statement_token3] = ACTIONS(3370), + [aux_sym_def_type_statement_token4] = ACTIONS(3370), + [aux_sym_def_type_statement_token5] = ACTIONS(3370), + [aux_sym_def_type_statement_token6] = ACTIONS(3370), + [aux_sym_def_type_statement_token7] = ACTIONS(3370), + [aux_sym_def_type_statement_token8] = ACTIONS(3370), + [aux_sym_def_type_statement_token9] = ACTIONS(3370), + [aux_sym_def_type_statement_token10] = ACTIONS(3370), + [aux_sym_def_type_statement_token11] = ACTIONS(3370), + [aux_sym_def_type_statement_token12] = ACTIONS(3370), + [aux_sym_def_type_statement_token13] = ACTIONS(3370), + [aux_sym_def_type_statement_token14] = ACTIONS(3370), + [aux_sym_call_statement_token1] = ACTIONS(3370), + [sym__ambiguous_call_statement] = ACTIONS(3370), + [aux_sym_addressof_expression_token1] = ACTIONS(3370), + [aux_sym_type_of_expression_token1] = ACTIONS(3370), + [aux_sym_unary_expression_token1] = ACTIONS(3370), + [sym_string_literal] = ACTIONS(3364), + [sym_number_literal] = ACTIONS(3364), + [aux_sym_boolean_literal_token1] = ACTIONS(3370), + [aux_sym_boolean_literal_token2] = ACTIONS(3370), + [sym_nothing_literal] = ACTIONS(3370), + [sym_null_literal] = ACTIONS(3370), + [sym_empty_literal] = ACTIONS(3370), + [sym_date_literal] = ACTIONS(3364), + [anon_sym_POUND] = ACTIONS(3370), + }, + [STATE(3772)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(3751), + [sym_identifier] = ACTIONS(8772), + [sym_newline] = ACTIONS(8774), + [anon_sym_COLON] = ACTIONS(8774), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8772), + [aux_sym_frm_property_statement_token1] = ACTIONS(8772), + [anon_sym_DOT] = ACTIONS(8772), + [anon_sym_BANG] = ACTIONS(8774), + [aux_sym__attribute_identifier_token1] = ACTIONS(8772), + [aux_sym_option_statement_token3] = ACTIONS(8772), + [aux_sym_type_declaration_token1] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8772), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8772), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8772), + [aux_sym_enum_declaration_token1] = ACTIONS(8772), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8772), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8772), + [aux_sym_declare_function_statement_token1] = ACTIONS(8772), + [aux_sym_preprocessor_const_token1] = ACTIONS(8772), + [aux_sym__property_get_header_token1] = ACTIONS(8772), + [aux_sym_event_declaration_token1] = ACTIONS(8772), + [sym_static_modifier] = ACTIONS(8772), + [sym__dim_keyword] = ACTIONS(8772), + [sym__redim_keyword] = ACTIONS(8772), + [aux_sym_get_accessor_token1] = ACTIONS(8772), + [aux_sym_set_accessor_token1] = ACTIONS(8772), + [aux_sym_const_declaration_token1] = ACTIONS(8772), + [anon_sym_LPAREN] = ACTIONS(8774), + [aux_sym_as_type_clause_token2] = ACTIONS(8772), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8772), + [aux_sym_visibility_token1] = ACTIONS(8772), + [aux_sym_visibility_token2] = ACTIONS(8772), + [aux_sym_elseif_fragment_token1] = ACTIONS(8772), + [aux_sym_else_fragment_token1] = ACTIONS(8772), + [aux_sym_select_statement_token1] = ACTIONS(8772), + [aux_sym__for_header_token1] = ACTIONS(8772), + [aux_sym_do_statement_token1] = ACTIONS(8772), + [aux_sym_do_condition_token1] = ACTIONS(8772), + [aux_sym_with_statement_token1] = ACTIONS(8772), + [aux_sym_exit_statement_token1] = ACTIONS(8772), + [sym_end_statement] = ACTIONS(8774), + [aux_sym_on_goto_statement_token1] = ACTIONS(8772), + [aux_sym_on_goto_statement_token2] = ACTIONS(8772), + [aux_sym_on_error_statement_token2] = ACTIONS(8772), + [sym__ambiguous_redim_statement] = ACTIONS(8774), + [aux_sym_erase_statement_token1] = ACTIONS(8772), + [aux_sym_open_statement_token1] = ACTIONS(8772), + [aux_sym_file_mode_token2] = ACTIONS(8772), + [aux_sym_file_access_token2] = ACTIONS(8772), + [aux_sym_file_lock_token2] = ACTIONS(8772), + [aux_sym_print_statement_token1] = ACTIONS(8772), + [anon_sym_PLUS] = ACTIONS(8774), + [anon_sym_DASH] = ACTIONS(8772), + [anon_sym_QMARK] = ACTIONS(8774), + [aux_sym_close_statement_token1] = ACTIONS(8772), + [aux_sym_put_statement_token1] = ACTIONS(8772), + [aux_sym_unlock_statement_token1] = ACTIONS(8772), + [aux_sym_seek_statement_token1] = ACTIONS(8772), + [sym_reset_statement] = ACTIONS(8772), + [aux_sym_raise_event_statement_token1] = ACTIONS(8772), + [sym_stop_statement] = ACTIONS(8772), + [sym_beep_statement] = ACTIONS(8772), + [aux_sym_unload_statement_token1] = ACTIONS(8772), + [aux_sym_def_type_statement_token1] = ACTIONS(8772), + [aux_sym_def_type_statement_token2] = ACTIONS(8772), + [aux_sym_def_type_statement_token3] = ACTIONS(8772), + [aux_sym_def_type_statement_token4] = ACTIONS(8772), + [aux_sym_def_type_statement_token5] = ACTIONS(8772), + [aux_sym_def_type_statement_token6] = ACTIONS(8772), + [aux_sym_def_type_statement_token7] = ACTIONS(8772), + [aux_sym_def_type_statement_token8] = ACTIONS(8772), + [aux_sym_def_type_statement_token9] = ACTIONS(8772), + [aux_sym_def_type_statement_token10] = ACTIONS(8772), + [aux_sym_def_type_statement_token11] = ACTIONS(8772), + [aux_sym_def_type_statement_token12] = ACTIONS(8772), + [aux_sym_def_type_statement_token13] = ACTIONS(8772), + [aux_sym_def_type_statement_token14] = ACTIONS(8772), + [aux_sym_call_statement_token1] = ACTIONS(8772), + [sym__ambiguous_call_statement] = ACTIONS(8772), + [aux_sym_addressof_expression_token1] = ACTIONS(8772), + [aux_sym_type_of_expression_token1] = ACTIONS(8772), + [aux_sym_unary_expression_token1] = ACTIONS(8772), + [sym_string_literal] = ACTIONS(8774), + [sym_number_literal] = ACTIONS(8774), + [aux_sym_boolean_literal_token1] = ACTIONS(8772), + [aux_sym_boolean_literal_token2] = ACTIONS(8772), + [sym_nothing_literal] = ACTIONS(8772), + [sym_null_literal] = ACTIONS(8772), + [sym_empty_literal] = ACTIONS(8772), + [sym_date_literal] = ACTIONS(8774), + [anon_sym_POUND] = ACTIONS(8772), + }, + [STATE(3773)] = { + [sym_identifier] = ACTIONS(8776), + [sym_newline] = ACTIONS(8778), + [anon_sym_COLON] = ACTIONS(8778), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8776), + [aux_sym_frm_property_statement_token1] = ACTIONS(8776), + [anon_sym_DOT] = ACTIONS(8776), + [anon_sym_BANG] = ACTIONS(8778), + [aux_sym__attribute_identifier_token1] = ACTIONS(8776), + [aux_sym_option_statement_token3] = ACTIONS(8776), + [aux_sym_type_declaration_token1] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8776), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8776), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8776), + [aux_sym_enum_declaration_token1] = ACTIONS(8776), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8776), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8776), + [aux_sym_declare_function_statement_token1] = ACTIONS(8776), + [aux_sym_preprocessor_const_token1] = ACTIONS(8776), + [aux_sym__property_get_header_token1] = ACTIONS(8776), + [aux_sym_event_declaration_token1] = ACTIONS(8776), + [sym_static_modifier] = ACTIONS(8776), + [sym__dim_keyword] = ACTIONS(8776), + [sym__redim_keyword] = ACTIONS(8776), + [aux_sym_get_accessor_token1] = ACTIONS(8776), + [aux_sym_set_accessor_token1] = ACTIONS(8776), + [anon_sym_COMMA] = ACTIONS(8778), + [aux_sym_const_declaration_token1] = ACTIONS(8776), + [anon_sym_LPAREN] = ACTIONS(8778), + [aux_sym_as_type_clause_token2] = ACTIONS(8776), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8776), + [aux_sym_visibility_token1] = ACTIONS(8776), + [aux_sym_visibility_token2] = ACTIONS(8776), + [aux_sym_elseif_fragment_token1] = ACTIONS(8776), + [aux_sym_else_fragment_token1] = ACTIONS(8776), + [aux_sym_select_statement_token1] = ACTIONS(8776), + [aux_sym__for_header_token1] = ACTIONS(8776), + [aux_sym_do_statement_token1] = ACTIONS(8776), + [aux_sym_do_condition_token1] = ACTIONS(8776), + [aux_sym_with_statement_token1] = ACTIONS(8776), + [aux_sym_exit_statement_token1] = ACTIONS(8776), + [sym_end_statement] = ACTIONS(8778), + [aux_sym_on_goto_statement_token1] = ACTIONS(8776), + [aux_sym_on_goto_statement_token2] = ACTIONS(8776), + [aux_sym_on_error_statement_token2] = ACTIONS(8776), + [sym__ambiguous_redim_statement] = ACTIONS(8778), + [aux_sym_erase_statement_token1] = ACTIONS(8776), + [aux_sym_open_statement_token1] = ACTIONS(8776), + [aux_sym_file_mode_token2] = ACTIONS(8776), + [aux_sym_file_access_token2] = ACTIONS(8776), + [aux_sym_file_lock_token2] = ACTIONS(8776), + [aux_sym_print_statement_token1] = ACTIONS(8776), + [anon_sym_PLUS] = ACTIONS(8778), + [anon_sym_DASH] = ACTIONS(8776), + [anon_sym_QMARK] = ACTIONS(8778), + [aux_sym_close_statement_token1] = ACTIONS(8776), + [aux_sym_put_statement_token1] = ACTIONS(8776), + [aux_sym_unlock_statement_token1] = ACTIONS(8776), + [aux_sym_seek_statement_token1] = ACTIONS(8776), + [sym_reset_statement] = ACTIONS(8776), + [aux_sym_raise_event_statement_token1] = ACTIONS(8776), + [sym_stop_statement] = ACTIONS(8776), + [sym_beep_statement] = ACTIONS(8776), + [aux_sym_unload_statement_token1] = ACTIONS(8776), + [aux_sym_def_type_statement_token1] = ACTIONS(8776), + [aux_sym_def_type_statement_token2] = ACTIONS(8776), + [aux_sym_def_type_statement_token3] = ACTIONS(8776), + [aux_sym_def_type_statement_token4] = ACTIONS(8776), + [aux_sym_def_type_statement_token5] = ACTIONS(8776), + [aux_sym_def_type_statement_token6] = ACTIONS(8776), + [aux_sym_def_type_statement_token7] = ACTIONS(8776), + [aux_sym_def_type_statement_token8] = ACTIONS(8776), + [aux_sym_def_type_statement_token9] = ACTIONS(8776), + [aux_sym_def_type_statement_token10] = ACTIONS(8776), + [aux_sym_def_type_statement_token11] = ACTIONS(8776), + [aux_sym_def_type_statement_token12] = ACTIONS(8776), + [aux_sym_def_type_statement_token13] = ACTIONS(8776), + [aux_sym_def_type_statement_token14] = ACTIONS(8776), + [aux_sym_call_statement_token1] = ACTIONS(8776), + [sym__ambiguous_call_statement] = ACTIONS(8776), + [aux_sym_addressof_expression_token1] = ACTIONS(8776), + [aux_sym_type_of_expression_token1] = ACTIONS(8776), + [aux_sym_unary_expression_token1] = ACTIONS(8776), + [sym_string_literal] = ACTIONS(8778), + [sym_number_literal] = ACTIONS(8778), + [aux_sym_boolean_literal_token1] = ACTIONS(8776), + [aux_sym_boolean_literal_token2] = ACTIONS(8776), + [sym_nothing_literal] = ACTIONS(8776), + [sym_null_literal] = ACTIONS(8776), + [sym_empty_literal] = ACTIONS(8776), + [sym_date_literal] = ACTIONS(8778), + [anon_sym_POUND] = ACTIONS(8776), + }, + [STATE(3774)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(8066), + [sym_newline] = ACTIONS(8068), + [anon_sym_COLON] = ACTIONS(8068), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8066), + [aux_sym_frm_property_statement_token1] = ACTIONS(8066), + [anon_sym_DOT] = ACTIONS(8066), + [anon_sym_BANG] = ACTIONS(8068), + [aux_sym__attribute_identifier_token1] = ACTIONS(8066), + [aux_sym_option_statement_token3] = ACTIONS(8066), + [aux_sym_type_declaration_token1] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8066), + [aux_sym_enum_declaration_token1] = ACTIONS(8066), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8066), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8066), + [aux_sym_declare_function_statement_token1] = ACTIONS(8066), + [aux_sym_preprocessor_const_token1] = ACTIONS(8066), + [aux_sym__property_get_header_token1] = ACTIONS(8066), + [aux_sym_event_declaration_token1] = ACTIONS(8066), + [sym_static_modifier] = ACTIONS(8066), + [sym__dim_keyword] = ACTIONS(8066), + [sym__redim_keyword] = ACTIONS(8066), + [aux_sym_get_accessor_token1] = ACTIONS(8066), + [aux_sym_set_accessor_token1] = ACTIONS(8066), + [anon_sym_COMMA] = ACTIONS(6198), + [aux_sym_const_declaration_token1] = ACTIONS(8066), + [anon_sym_LPAREN] = ACTIONS(8068), + [aux_sym_as_type_clause_token2] = ACTIONS(8066), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8066), + [aux_sym_visibility_token1] = ACTIONS(8066), + [aux_sym_visibility_token2] = ACTIONS(8066), + [aux_sym_elseif_fragment_token1] = ACTIONS(8066), + [aux_sym_else_fragment_token1] = ACTIONS(8066), + [aux_sym_select_statement_token1] = ACTIONS(8066), + [aux_sym__for_header_token1] = ACTIONS(8066), + [aux_sym_do_statement_token1] = ACTIONS(8066), + [aux_sym_do_condition_token1] = ACTIONS(8066), + [aux_sym_with_statement_token1] = ACTIONS(8066), + [aux_sym_exit_statement_token1] = ACTIONS(8066), + [sym_end_statement] = ACTIONS(8068), + [aux_sym_on_goto_statement_token1] = ACTIONS(8066), + [aux_sym_on_goto_statement_token2] = ACTIONS(8066), + [aux_sym_on_error_statement_token2] = ACTIONS(8066), + [sym__ambiguous_redim_statement] = ACTIONS(8068), + [aux_sym_erase_statement_token1] = ACTIONS(8066), + [aux_sym_open_statement_token1] = ACTIONS(8066), + [aux_sym_file_mode_token2] = ACTIONS(8066), + [aux_sym_file_access_token2] = ACTIONS(8066), + [aux_sym_file_lock_token2] = ACTIONS(8066), + [aux_sym_print_statement_token1] = ACTIONS(8066), + [anon_sym_PLUS] = ACTIONS(8068), + [anon_sym_DASH] = ACTIONS(8066), + [anon_sym_SEMI] = ACTIONS(6198), + [anon_sym_QMARK] = ACTIONS(8068), + [aux_sym_close_statement_token1] = ACTIONS(8066), + [aux_sym_put_statement_token1] = ACTIONS(8066), + [aux_sym_unlock_statement_token1] = ACTIONS(8066), + [aux_sym_seek_statement_token1] = ACTIONS(8066), + [sym_reset_statement] = ACTIONS(8066), + [aux_sym_raise_event_statement_token1] = ACTIONS(8066), + [sym_stop_statement] = ACTIONS(8066), + [sym_beep_statement] = ACTIONS(8066), + [aux_sym_unload_statement_token1] = ACTIONS(8066), + [aux_sym_def_type_statement_token1] = ACTIONS(8066), + [aux_sym_def_type_statement_token2] = ACTIONS(8066), + [aux_sym_def_type_statement_token3] = ACTIONS(8066), + [aux_sym_def_type_statement_token4] = ACTIONS(8066), + [aux_sym_def_type_statement_token5] = ACTIONS(8066), + [aux_sym_def_type_statement_token6] = ACTIONS(8066), + [aux_sym_def_type_statement_token7] = ACTIONS(8066), + [aux_sym_def_type_statement_token8] = ACTIONS(8066), + [aux_sym_def_type_statement_token9] = ACTIONS(8066), + [aux_sym_def_type_statement_token10] = ACTIONS(8066), + [aux_sym_def_type_statement_token11] = ACTIONS(8066), + [aux_sym_def_type_statement_token12] = ACTIONS(8066), + [aux_sym_def_type_statement_token13] = ACTIONS(8066), + [aux_sym_def_type_statement_token14] = ACTIONS(8066), + [aux_sym_call_statement_token1] = ACTIONS(8066), + [sym__ambiguous_call_statement] = ACTIONS(8066), + [aux_sym_addressof_expression_token1] = ACTIONS(8066), + [aux_sym_type_of_expression_token1] = ACTIONS(8066), + [aux_sym_unary_expression_token1] = ACTIONS(8066), + [sym_string_literal] = ACTIONS(8068), + [sym_number_literal] = ACTIONS(8068), + [aux_sym_boolean_literal_token1] = ACTIONS(8066), + [aux_sym_boolean_literal_token2] = ACTIONS(8066), + [sym_nothing_literal] = ACTIONS(8066), + [sym_null_literal] = ACTIONS(8066), + [sym_empty_literal] = ACTIONS(8066), + [sym_date_literal] = ACTIONS(8068), + [anon_sym_POUND] = ACTIONS(8066), + }, + [STATE(3775)] = { + [sym_identifier] = ACTIONS(8109), + [sym_newline] = ACTIONS(8111), + [anon_sym_COLON] = ACTIONS(8111), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8109), + [aux_sym_frm_property_statement_token1] = ACTIONS(8109), + [anon_sym_DOT] = ACTIONS(8109), + [anon_sym_BANG] = ACTIONS(8111), + [aux_sym__attribute_identifier_token1] = ACTIONS(8109), + [aux_sym_option_statement_token3] = ACTIONS(8109), + [aux_sym_type_declaration_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8109), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8109), + [aux_sym_enum_declaration_token1] = ACTIONS(8109), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8109), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8109), + [aux_sym_declare_function_statement_token1] = ACTIONS(8109), + [aux_sym_preprocessor_const_token1] = ACTIONS(8109), + [aux_sym__property_get_header_token1] = ACTIONS(8109), + [aux_sym_event_declaration_token1] = ACTIONS(8109), + [sym_static_modifier] = ACTIONS(8109), + [sym__dim_keyword] = ACTIONS(8109), + [sym__redim_keyword] = ACTIONS(8109), + [aux_sym_get_accessor_token1] = ACTIONS(8109), + [aux_sym_set_accessor_token1] = ACTIONS(8109), + [aux_sym_const_declaration_token1] = ACTIONS(8109), + [anon_sym_LPAREN] = ACTIONS(8111), + [aux_sym_as_type_clause_token2] = ACTIONS(8109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8109), + [aux_sym_visibility_token1] = ACTIONS(8109), + [aux_sym_visibility_token2] = ACTIONS(8109), + [aux_sym_elseif_fragment_token1] = ACTIONS(8109), + [aux_sym_else_fragment_token1] = ACTIONS(8109), + [aux_sym_select_statement_token1] = ACTIONS(8109), + [aux_sym__for_header_token1] = ACTIONS(8109), + [aux_sym_do_statement_token1] = ACTIONS(8109), + [aux_sym_do_condition_token1] = ACTIONS(8109), + [aux_sym_with_statement_token1] = ACTIONS(8109), + [aux_sym_exit_statement_token1] = ACTIONS(8109), + [sym_end_statement] = ACTIONS(8111), + [aux_sym_on_goto_statement_token1] = ACTIONS(8109), + [aux_sym_on_goto_statement_token2] = ACTIONS(8109), + [aux_sym_on_error_statement_token2] = ACTIONS(8109), + [sym__ambiguous_redim_statement] = ACTIONS(8111), + [aux_sym_erase_statement_token1] = ACTIONS(8109), + [aux_sym_open_statement_token1] = ACTIONS(8109), + [aux_sym_file_mode_token2] = ACTIONS(8109), + [aux_sym_file_access_token2] = ACTIONS(8109), + [aux_sym_file_lock_token2] = ACTIONS(8109), + [aux_sym_print_statement_token1] = ACTIONS(8109), + [anon_sym_PLUS] = ACTIONS(8111), + [anon_sym_DASH] = ACTIONS(8109), + [anon_sym_SEMI] = ACTIONS(8111), + [anon_sym_QMARK] = ACTIONS(8111), + [aux_sym_close_statement_token1] = ACTIONS(8109), + [aux_sym_put_statement_token1] = ACTIONS(8109), + [aux_sym_unlock_statement_token1] = ACTIONS(8109), + [aux_sym_seek_statement_token1] = ACTIONS(8109), + [sym_reset_statement] = ACTIONS(8109), + [aux_sym_raise_event_statement_token1] = ACTIONS(8109), + [sym_stop_statement] = ACTIONS(8109), + [sym_beep_statement] = ACTIONS(8109), + [aux_sym_unload_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token2] = ACTIONS(8109), + [aux_sym_def_type_statement_token3] = ACTIONS(8109), + [aux_sym_def_type_statement_token4] = ACTIONS(8109), + [aux_sym_def_type_statement_token5] = ACTIONS(8109), + [aux_sym_def_type_statement_token6] = ACTIONS(8109), + [aux_sym_def_type_statement_token7] = ACTIONS(8109), + [aux_sym_def_type_statement_token8] = ACTIONS(8109), + [aux_sym_def_type_statement_token9] = ACTIONS(8109), + [aux_sym_def_type_statement_token10] = ACTIONS(8109), + [aux_sym_def_type_statement_token11] = ACTIONS(8109), + [aux_sym_def_type_statement_token12] = ACTIONS(8109), + [aux_sym_def_type_statement_token13] = ACTIONS(8109), + [aux_sym_def_type_statement_token14] = ACTIONS(8109), + [aux_sym_call_statement_token1] = ACTIONS(8109), + [sym__ambiguous_call_statement] = ACTIONS(8109), + [aux_sym_addressof_expression_token1] = ACTIONS(8109), + [aux_sym_type_of_expression_token1] = ACTIONS(8109), + [aux_sym_unary_expression_token1] = ACTIONS(8109), + [sym_string_literal] = ACTIONS(8111), + [sym_number_literal] = ACTIONS(8111), + [aux_sym_boolean_literal_token1] = ACTIONS(8109), + [aux_sym_boolean_literal_token2] = ACTIONS(8109), + [sym_nothing_literal] = ACTIONS(8109), + [sym_null_literal] = ACTIONS(8109), + [sym_empty_literal] = ACTIONS(8109), + [sym_date_literal] = ACTIONS(8111), + [anon_sym_POUND] = ACTIONS(8109), + }, + [STATE(3776)] = { + [sym_parameter_list] = STATE(3889), + [sym_as_type_clause] = STATE(4332), + [sym_identifier] = ACTIONS(8062), + [sym_newline] = ACTIONS(8064), + [anon_sym_COLON] = ACTIONS(8064), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8062), + [aux_sym_frm_property_statement_token1] = ACTIONS(8062), + [anon_sym_DOT] = ACTIONS(8062), + [anon_sym_BANG] = ACTIONS(8064), + [aux_sym__attribute_identifier_token1] = ACTIONS(8062), + [aux_sym_option_statement_token3] = ACTIONS(8062), + [aux_sym_type_declaration_token1] = ACTIONS(8062), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8062), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8062), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8062), + [aux_sym_enum_declaration_token1] = ACTIONS(8062), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8062), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8062), + [aux_sym_declare_function_statement_token1] = ACTIONS(8062), + [aux_sym_preprocessor_const_token1] = ACTIONS(8062), + [aux_sym__property_get_header_token1] = ACTIONS(8062), + [aux_sym_event_declaration_token1] = ACTIONS(8062), + [sym_static_modifier] = ACTIONS(8062), + [sym__dim_keyword] = ACTIONS(8062), + [sym__redim_keyword] = ACTIONS(8062), + [aux_sym_get_accessor_token1] = ACTIONS(8062), + [aux_sym_set_accessor_token1] = ACTIONS(8062), + [aux_sym_const_declaration_token1] = ACTIONS(8062), + [anon_sym_LPAREN] = ACTIONS(8209), + [aux_sym_as_type_clause_token1] = ACTIONS(8211), + [aux_sym_as_type_clause_token2] = ACTIONS(8062), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8062), + [aux_sym_visibility_token1] = ACTIONS(8062), + [aux_sym_visibility_token2] = ACTIONS(8062), + [aux_sym_elseif_fragment_token1] = ACTIONS(8062), + [aux_sym_else_fragment_token1] = ACTIONS(8062), + [aux_sym_select_statement_token1] = ACTIONS(8062), + [aux_sym__for_header_token1] = ACTIONS(8062), + [aux_sym_do_statement_token1] = ACTIONS(8062), + [aux_sym_do_condition_token1] = ACTIONS(8062), + [aux_sym_with_statement_token1] = ACTIONS(8062), + [aux_sym_exit_statement_token1] = ACTIONS(8062), + [sym_end_statement] = ACTIONS(8064), + [aux_sym_on_goto_statement_token1] = ACTIONS(8062), + [aux_sym_on_goto_statement_token2] = ACTIONS(8062), + [aux_sym_on_error_statement_token2] = ACTIONS(8062), + [sym__ambiguous_redim_statement] = ACTIONS(8064), + [aux_sym_erase_statement_token1] = ACTIONS(8062), + [aux_sym_open_statement_token1] = ACTIONS(8062), + [aux_sym_file_mode_token2] = ACTIONS(8062), + [aux_sym_file_access_token2] = ACTIONS(8062), + [aux_sym_file_lock_token2] = ACTIONS(8062), + [aux_sym_print_statement_token1] = ACTIONS(8062), + [anon_sym_PLUS] = ACTIONS(8064), + [anon_sym_DASH] = ACTIONS(8062), + [anon_sym_QMARK] = ACTIONS(8064), + [aux_sym_close_statement_token1] = ACTIONS(8062), + [aux_sym_put_statement_token1] = ACTIONS(8062), + [aux_sym_unlock_statement_token1] = ACTIONS(8062), + [aux_sym_seek_statement_token1] = ACTIONS(8062), + [sym_reset_statement] = ACTIONS(8062), + [aux_sym_raise_event_statement_token1] = ACTIONS(8062), + [sym_stop_statement] = ACTIONS(8062), + [sym_beep_statement] = ACTIONS(8062), + [aux_sym_unload_statement_token1] = ACTIONS(8062), + [aux_sym_def_type_statement_token1] = ACTIONS(8062), + [aux_sym_def_type_statement_token2] = ACTIONS(8062), + [aux_sym_def_type_statement_token3] = ACTIONS(8062), + [aux_sym_def_type_statement_token4] = ACTIONS(8062), + [aux_sym_def_type_statement_token5] = ACTIONS(8062), + [aux_sym_def_type_statement_token6] = ACTIONS(8062), + [aux_sym_def_type_statement_token7] = ACTIONS(8062), + [aux_sym_def_type_statement_token8] = ACTIONS(8062), + [aux_sym_def_type_statement_token9] = ACTIONS(8062), + [aux_sym_def_type_statement_token10] = ACTIONS(8062), + [aux_sym_def_type_statement_token11] = ACTIONS(8062), + [aux_sym_def_type_statement_token12] = ACTIONS(8062), + [aux_sym_def_type_statement_token13] = ACTIONS(8062), + [aux_sym_def_type_statement_token14] = ACTIONS(8062), + [aux_sym_call_statement_token1] = ACTIONS(8062), + [sym__ambiguous_call_statement] = ACTIONS(8062), + [aux_sym_addressof_expression_token1] = ACTIONS(8062), + [aux_sym_type_of_expression_token1] = ACTIONS(8062), + [aux_sym_unary_expression_token1] = ACTIONS(8062), + [sym_string_literal] = ACTIONS(8064), + [sym_number_literal] = ACTIONS(8064), + [aux_sym_boolean_literal_token1] = ACTIONS(8062), + [aux_sym_boolean_literal_token2] = ACTIONS(8062), + [sym_nothing_literal] = ACTIONS(8062), + [sym_null_literal] = ACTIONS(8062), + [sym_empty_literal] = ACTIONS(8062), + [sym_date_literal] = ACTIONS(8064), + [anon_sym_POUND] = ACTIONS(8062), + }, + [STATE(3777)] = { + [sym_identifier] = ACTIONS(8780), + [sym_newline] = ACTIONS(8782), + [anon_sym_COLON] = ACTIONS(8782), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8780), + [aux_sym_frm_property_statement_token1] = ACTIONS(8780), + [anon_sym_DOT] = ACTIONS(8780), + [anon_sym_BANG] = ACTIONS(8782), + [aux_sym__attribute_identifier_token1] = ACTIONS(8780), + [aux_sym_option_statement_token3] = ACTIONS(8780), + [aux_sym_type_declaration_token1] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8780), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8780), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8780), + [aux_sym_enum_declaration_token1] = ACTIONS(8780), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8780), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8780), + [aux_sym_declare_function_statement_token1] = ACTIONS(8780), + [aux_sym_preprocessor_const_token1] = ACTIONS(8780), + [aux_sym__property_get_header_token1] = ACTIONS(8780), + [aux_sym_event_declaration_token1] = ACTIONS(8780), + [sym_static_modifier] = ACTIONS(8780), + [sym__dim_keyword] = ACTIONS(8780), + [sym__redim_keyword] = ACTIONS(8780), + [aux_sym_get_accessor_token1] = ACTIONS(8780), + [aux_sym_set_accessor_token1] = ACTIONS(8780), + [anon_sym_COMMA] = ACTIONS(8784), + [aux_sym_const_declaration_token1] = ACTIONS(8780), + [anon_sym_LPAREN] = ACTIONS(8782), + [aux_sym_as_type_clause_token2] = ACTIONS(8780), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8780), + [aux_sym_visibility_token1] = ACTIONS(8780), + [aux_sym_visibility_token2] = ACTIONS(8780), + [aux_sym_elseif_fragment_token1] = ACTIONS(8780), + [aux_sym_else_fragment_token1] = ACTIONS(8780), + [aux_sym_select_statement_token1] = ACTIONS(8780), + [aux_sym__for_header_token1] = ACTIONS(8780), + [aux_sym_do_statement_token1] = ACTIONS(8780), + [aux_sym_do_condition_token1] = ACTIONS(8780), + [aux_sym_with_statement_token1] = ACTIONS(8780), + [aux_sym_exit_statement_token1] = ACTIONS(8780), + [sym_end_statement] = ACTIONS(8782), + [aux_sym_on_goto_statement_token1] = ACTIONS(8780), + [aux_sym_on_goto_statement_token2] = ACTIONS(8780), + [aux_sym_on_error_statement_token2] = ACTIONS(8780), + [sym__ambiguous_redim_statement] = ACTIONS(8782), + [aux_sym_erase_statement_token1] = ACTIONS(8780), + [aux_sym_open_statement_token1] = ACTIONS(8780), + [aux_sym_file_mode_token2] = ACTIONS(8780), + [aux_sym_file_access_token2] = ACTIONS(8780), + [aux_sym_file_lock_token2] = ACTIONS(8780), + [aux_sym_print_statement_token1] = ACTIONS(8780), + [anon_sym_PLUS] = ACTIONS(8782), + [anon_sym_DASH] = ACTIONS(8780), + [anon_sym_QMARK] = ACTIONS(8782), + [aux_sym_close_statement_token1] = ACTIONS(8780), + [aux_sym_put_statement_token1] = ACTIONS(8780), + [aux_sym_unlock_statement_token1] = ACTIONS(8780), + [aux_sym_seek_statement_token1] = ACTIONS(8780), + [sym_reset_statement] = ACTIONS(8780), + [aux_sym_raise_event_statement_token1] = ACTIONS(8780), + [sym_stop_statement] = ACTIONS(8780), + [sym_beep_statement] = ACTIONS(8780), + [aux_sym_unload_statement_token1] = ACTIONS(8780), + [aux_sym_def_type_statement_token1] = ACTIONS(8780), + [aux_sym_def_type_statement_token2] = ACTIONS(8780), + [aux_sym_def_type_statement_token3] = ACTIONS(8780), + [aux_sym_def_type_statement_token4] = ACTIONS(8780), + [aux_sym_def_type_statement_token5] = ACTIONS(8780), + [aux_sym_def_type_statement_token6] = ACTIONS(8780), + [aux_sym_def_type_statement_token7] = ACTIONS(8780), + [aux_sym_def_type_statement_token8] = ACTIONS(8780), + [aux_sym_def_type_statement_token9] = ACTIONS(8780), + [aux_sym_def_type_statement_token10] = ACTIONS(8780), + [aux_sym_def_type_statement_token11] = ACTIONS(8780), + [aux_sym_def_type_statement_token12] = ACTIONS(8780), + [aux_sym_def_type_statement_token13] = ACTIONS(8780), + [aux_sym_def_type_statement_token14] = ACTIONS(8780), + [aux_sym_call_statement_token1] = ACTIONS(8780), + [sym__ambiguous_call_statement] = ACTIONS(8780), + [aux_sym_addressof_expression_token1] = ACTIONS(8780), + [aux_sym_type_of_expression_token1] = ACTIONS(8780), + [aux_sym_unary_expression_token1] = ACTIONS(8780), + [sym_string_literal] = ACTIONS(8782), + [sym_number_literal] = ACTIONS(8782), + [aux_sym_boolean_literal_token1] = ACTIONS(8780), + [aux_sym_boolean_literal_token2] = ACTIONS(8780), + [sym_nothing_literal] = ACTIONS(8780), + [sym_null_literal] = ACTIONS(8780), + [sym_empty_literal] = ACTIONS(8780), + [sym_date_literal] = ACTIONS(8782), + [anon_sym_POUND] = ACTIONS(8780), + }, + [STATE(3778)] = { + [sym_identifier] = ACTIONS(8786), + [sym_newline] = ACTIONS(8788), + [anon_sym_COLON] = ACTIONS(8788), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8786), + [aux_sym_frm_property_statement_token1] = ACTIONS(8786), + [anon_sym_DOT] = ACTIONS(8786), + [anon_sym_BANG] = ACTIONS(8788), + [aux_sym__attribute_identifier_token1] = ACTIONS(8786), + [aux_sym_option_statement_token3] = ACTIONS(8786), + [aux_sym_type_declaration_token1] = ACTIONS(8786), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8786), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8786), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8786), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8786), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8786), + [aux_sym_enum_declaration_token1] = ACTIONS(8786), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8786), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8786), + [aux_sym_declare_function_statement_token1] = ACTIONS(8786), + [aux_sym_preprocessor_const_token1] = ACTIONS(8786), + [aux_sym__property_get_header_token1] = ACTIONS(8786), + [aux_sym_event_declaration_token1] = ACTIONS(8786), + [sym_static_modifier] = ACTIONS(8786), + [sym__dim_keyword] = ACTIONS(8786), + [sym__redim_keyword] = ACTIONS(8786), + [aux_sym_get_accessor_token1] = ACTIONS(8786), + [aux_sym_set_accessor_token1] = ACTIONS(8786), + [aux_sym_const_declaration_token1] = ACTIONS(8786), + [anon_sym_LPAREN] = ACTIONS(8788), + [aux_sym_as_type_clause_token1] = ACTIONS(8786), + [aux_sym_as_type_clause_token2] = ACTIONS(8786), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8786), + [aux_sym_visibility_token1] = ACTIONS(8786), + [aux_sym_visibility_token2] = ACTIONS(8786), + [aux_sym_elseif_fragment_token1] = ACTIONS(8786), + [aux_sym_else_fragment_token1] = ACTIONS(8786), + [aux_sym_select_statement_token1] = ACTIONS(8786), + [aux_sym__for_header_token1] = ACTIONS(8786), + [aux_sym_do_statement_token1] = ACTIONS(8786), + [aux_sym_do_condition_token1] = ACTIONS(8786), + [aux_sym_with_statement_token1] = ACTIONS(8786), + [aux_sym_exit_statement_token1] = ACTIONS(8786), + [sym_end_statement] = ACTIONS(8788), + [aux_sym_on_goto_statement_token1] = ACTIONS(8786), + [aux_sym_on_goto_statement_token2] = ACTIONS(8786), + [aux_sym_on_error_statement_token2] = ACTIONS(8786), + [sym__ambiguous_redim_statement] = ACTIONS(8788), + [aux_sym_erase_statement_token1] = ACTIONS(8786), + [aux_sym_open_statement_token1] = ACTIONS(8786), + [aux_sym_file_mode_token2] = ACTIONS(8786), + [aux_sym_file_access_token2] = ACTIONS(8786), + [aux_sym_file_lock_token2] = ACTIONS(8786), + [aux_sym_print_statement_token1] = ACTIONS(8786), + [anon_sym_PLUS] = ACTIONS(8788), + [anon_sym_DASH] = ACTIONS(8786), + [anon_sym_QMARK] = ACTIONS(8788), + [aux_sym_close_statement_token1] = ACTIONS(8786), + [aux_sym_put_statement_token1] = ACTIONS(8786), + [aux_sym_unlock_statement_token1] = ACTIONS(8786), + [aux_sym_seek_statement_token1] = ACTIONS(8786), + [sym_reset_statement] = ACTIONS(8786), + [aux_sym_raise_event_statement_token1] = ACTIONS(8786), + [sym_stop_statement] = ACTIONS(8786), + [sym_beep_statement] = ACTIONS(8786), + [aux_sym_unload_statement_token1] = ACTIONS(8786), + [aux_sym_def_type_statement_token1] = ACTIONS(8786), + [aux_sym_def_type_statement_token2] = ACTIONS(8786), + [aux_sym_def_type_statement_token3] = ACTIONS(8786), + [aux_sym_def_type_statement_token4] = ACTIONS(8786), + [aux_sym_def_type_statement_token5] = ACTIONS(8786), + [aux_sym_def_type_statement_token6] = ACTIONS(8786), + [aux_sym_def_type_statement_token7] = ACTIONS(8786), + [aux_sym_def_type_statement_token8] = ACTIONS(8786), + [aux_sym_def_type_statement_token9] = ACTIONS(8786), + [aux_sym_def_type_statement_token10] = ACTIONS(8786), + [aux_sym_def_type_statement_token11] = ACTIONS(8786), + [aux_sym_def_type_statement_token12] = ACTIONS(8786), + [aux_sym_def_type_statement_token13] = ACTIONS(8786), + [aux_sym_def_type_statement_token14] = ACTIONS(8786), + [aux_sym_call_statement_token1] = ACTIONS(8786), + [sym__ambiguous_call_statement] = ACTIONS(8786), + [aux_sym_addressof_expression_token1] = ACTIONS(8786), + [aux_sym_type_of_expression_token1] = ACTIONS(8786), + [aux_sym_unary_expression_token1] = ACTIONS(8786), + [sym_string_literal] = ACTIONS(8788), + [sym_number_literal] = ACTIONS(8788), + [aux_sym_boolean_literal_token1] = ACTIONS(8786), + [aux_sym_boolean_literal_token2] = ACTIONS(8786), + [sym_nothing_literal] = ACTIONS(8786), + [sym_null_literal] = ACTIONS(8786), + [sym_empty_literal] = ACTIONS(8786), + [sym_date_literal] = ACTIONS(8788), + [anon_sym_POUND] = ACTIONS(8786), + }, + [STATE(3779)] = { + [sym_parameter_list] = STATE(3890), + [sym_as_type_clause] = STATE(4367), + [sym_identifier] = ACTIONS(8074), + [sym_newline] = ACTIONS(8076), + [anon_sym_COLON] = ACTIONS(8076), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8074), + [aux_sym_frm_property_statement_token1] = ACTIONS(8074), + [anon_sym_DOT] = ACTIONS(8074), + [anon_sym_BANG] = ACTIONS(8076), + [aux_sym__attribute_identifier_token1] = ACTIONS(8074), + [aux_sym_option_statement_token3] = ACTIONS(8074), + [aux_sym_type_declaration_token1] = ACTIONS(8074), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8074), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8074), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8074), + [aux_sym_enum_declaration_token1] = ACTIONS(8074), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8074), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8074), + [aux_sym_declare_function_statement_token1] = ACTIONS(8074), + [aux_sym_preprocessor_const_token1] = ACTIONS(8074), + [aux_sym__property_get_header_token1] = ACTIONS(8074), + [aux_sym_event_declaration_token1] = ACTIONS(8074), + [sym_static_modifier] = ACTIONS(8074), + [sym__dim_keyword] = ACTIONS(8074), + [sym__redim_keyword] = ACTIONS(8074), + [aux_sym_get_accessor_token1] = ACTIONS(8074), + [aux_sym_set_accessor_token1] = ACTIONS(8074), + [aux_sym_const_declaration_token1] = ACTIONS(8074), + [anon_sym_LPAREN] = ACTIONS(8209), + [aux_sym_as_type_clause_token1] = ACTIONS(8211), + [aux_sym_as_type_clause_token2] = ACTIONS(8074), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8074), + [aux_sym_visibility_token1] = ACTIONS(8074), + [aux_sym_visibility_token2] = ACTIONS(8074), + [aux_sym_elseif_fragment_token1] = ACTIONS(8074), + [aux_sym_else_fragment_token1] = ACTIONS(8074), + [aux_sym_select_statement_token1] = ACTIONS(8074), + [aux_sym__for_header_token1] = ACTIONS(8074), + [aux_sym_do_statement_token1] = ACTIONS(8074), + [aux_sym_do_condition_token1] = ACTIONS(8074), + [aux_sym_with_statement_token1] = ACTIONS(8074), + [aux_sym_exit_statement_token1] = ACTIONS(8074), + [sym_end_statement] = ACTIONS(8076), + [aux_sym_on_goto_statement_token1] = ACTIONS(8074), + [aux_sym_on_goto_statement_token2] = ACTIONS(8074), + [aux_sym_on_error_statement_token2] = ACTIONS(8074), + [sym__ambiguous_redim_statement] = ACTIONS(8076), + [aux_sym_erase_statement_token1] = ACTIONS(8074), + [aux_sym_open_statement_token1] = ACTIONS(8074), + [aux_sym_file_mode_token2] = ACTIONS(8074), + [aux_sym_file_access_token2] = ACTIONS(8074), + [aux_sym_file_lock_token2] = ACTIONS(8074), + [aux_sym_print_statement_token1] = ACTIONS(8074), + [anon_sym_PLUS] = ACTIONS(8076), + [anon_sym_DASH] = ACTIONS(8074), + [anon_sym_QMARK] = ACTIONS(8076), + [aux_sym_close_statement_token1] = ACTIONS(8074), + [aux_sym_put_statement_token1] = ACTIONS(8074), + [aux_sym_unlock_statement_token1] = ACTIONS(8074), + [aux_sym_seek_statement_token1] = ACTIONS(8074), + [sym_reset_statement] = ACTIONS(8074), + [aux_sym_raise_event_statement_token1] = ACTIONS(8074), + [sym_stop_statement] = ACTIONS(8074), + [sym_beep_statement] = ACTIONS(8074), + [aux_sym_unload_statement_token1] = ACTIONS(8074), + [aux_sym_def_type_statement_token1] = ACTIONS(8074), + [aux_sym_def_type_statement_token2] = ACTIONS(8074), + [aux_sym_def_type_statement_token3] = ACTIONS(8074), + [aux_sym_def_type_statement_token4] = ACTIONS(8074), + [aux_sym_def_type_statement_token5] = ACTIONS(8074), + [aux_sym_def_type_statement_token6] = ACTIONS(8074), + [aux_sym_def_type_statement_token7] = ACTIONS(8074), + [aux_sym_def_type_statement_token8] = ACTIONS(8074), + [aux_sym_def_type_statement_token9] = ACTIONS(8074), + [aux_sym_def_type_statement_token10] = ACTIONS(8074), + [aux_sym_def_type_statement_token11] = ACTIONS(8074), + [aux_sym_def_type_statement_token12] = ACTIONS(8074), + [aux_sym_def_type_statement_token13] = ACTIONS(8074), + [aux_sym_def_type_statement_token14] = ACTIONS(8074), + [aux_sym_call_statement_token1] = ACTIONS(8074), + [sym__ambiguous_call_statement] = ACTIONS(8074), + [aux_sym_addressof_expression_token1] = ACTIONS(8074), + [aux_sym_type_of_expression_token1] = ACTIONS(8074), + [aux_sym_unary_expression_token1] = ACTIONS(8074), + [sym_string_literal] = ACTIONS(8076), + [sym_number_literal] = ACTIONS(8076), + [aux_sym_boolean_literal_token1] = ACTIONS(8074), + [aux_sym_boolean_literal_token2] = ACTIONS(8074), + [sym_nothing_literal] = ACTIONS(8074), + [sym_null_literal] = ACTIONS(8074), + [sym_empty_literal] = ACTIONS(8074), + [sym_date_literal] = ACTIONS(8076), + [anon_sym_POUND] = ACTIONS(8074), + }, + [STATE(3780)] = { + [sym_identifier] = ACTIONS(8790), + [sym_newline] = ACTIONS(8792), + [anon_sym_COLON] = ACTIONS(8792), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8790), + [aux_sym_frm_property_statement_token1] = ACTIONS(8790), + [anon_sym_DOT] = ACTIONS(8790), + [anon_sym_BANG] = ACTIONS(8792), + [aux_sym__attribute_identifier_token1] = ACTIONS(8790), + [aux_sym_option_statement_token3] = ACTIONS(8790), + [aux_sym_type_declaration_token1] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8790), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8790), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8790), + [aux_sym_enum_declaration_token1] = ACTIONS(8790), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8790), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8790), + [aux_sym_declare_function_statement_token1] = ACTIONS(8790), + [aux_sym_preprocessor_const_token1] = ACTIONS(8790), + [aux_sym__property_get_header_token1] = ACTIONS(8790), + [aux_sym_event_declaration_token1] = ACTIONS(8790), + [sym_static_modifier] = ACTIONS(8790), + [sym__dim_keyword] = ACTIONS(8790), + [sym__redim_keyword] = ACTIONS(8790), + [aux_sym_get_accessor_token1] = ACTIONS(8790), + [aux_sym_set_accessor_token1] = ACTIONS(8790), + [anon_sym_COMMA] = ACTIONS(8792), + [aux_sym_const_declaration_token1] = ACTIONS(8790), + [anon_sym_LPAREN] = ACTIONS(8792), + [aux_sym_as_type_clause_token2] = ACTIONS(8790), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8790), + [aux_sym_visibility_token1] = ACTIONS(8790), + [aux_sym_visibility_token2] = ACTIONS(8790), + [aux_sym_elseif_fragment_token1] = ACTIONS(8790), + [aux_sym_else_fragment_token1] = ACTIONS(8790), + [aux_sym_select_statement_token1] = ACTIONS(8790), + [aux_sym__for_header_token1] = ACTIONS(8790), + [aux_sym_do_statement_token1] = ACTIONS(8790), + [aux_sym_do_condition_token1] = ACTIONS(8790), + [aux_sym_with_statement_token1] = ACTIONS(8790), + [aux_sym_exit_statement_token1] = ACTIONS(8790), + [sym_end_statement] = ACTIONS(8792), + [aux_sym_on_goto_statement_token1] = ACTIONS(8790), + [aux_sym_on_goto_statement_token2] = ACTIONS(8790), + [aux_sym_on_error_statement_token2] = ACTIONS(8790), + [sym__ambiguous_redim_statement] = ACTIONS(8792), + [aux_sym_erase_statement_token1] = ACTIONS(8790), + [aux_sym_open_statement_token1] = ACTIONS(8790), + [aux_sym_file_mode_token2] = ACTIONS(8790), + [aux_sym_file_access_token2] = ACTIONS(8790), + [aux_sym_file_lock_token2] = ACTIONS(8790), + [aux_sym_print_statement_token1] = ACTIONS(8790), + [anon_sym_PLUS] = ACTIONS(8792), + [anon_sym_DASH] = ACTIONS(8790), + [anon_sym_QMARK] = ACTIONS(8792), + [aux_sym_close_statement_token1] = ACTIONS(8790), + [aux_sym_put_statement_token1] = ACTIONS(8790), + [aux_sym_unlock_statement_token1] = ACTIONS(8790), + [aux_sym_seek_statement_token1] = ACTIONS(8790), + [sym_reset_statement] = ACTIONS(8790), + [aux_sym_raise_event_statement_token1] = ACTIONS(8790), + [sym_stop_statement] = ACTIONS(8790), + [sym_beep_statement] = ACTIONS(8790), + [aux_sym_unload_statement_token1] = ACTIONS(8790), + [aux_sym_def_type_statement_token1] = ACTIONS(8790), + [aux_sym_def_type_statement_token2] = ACTIONS(8790), + [aux_sym_def_type_statement_token3] = ACTIONS(8790), + [aux_sym_def_type_statement_token4] = ACTIONS(8790), + [aux_sym_def_type_statement_token5] = ACTIONS(8790), + [aux_sym_def_type_statement_token6] = ACTIONS(8790), + [aux_sym_def_type_statement_token7] = ACTIONS(8790), + [aux_sym_def_type_statement_token8] = ACTIONS(8790), + [aux_sym_def_type_statement_token9] = ACTIONS(8790), + [aux_sym_def_type_statement_token10] = ACTIONS(8790), + [aux_sym_def_type_statement_token11] = ACTIONS(8790), + [aux_sym_def_type_statement_token12] = ACTIONS(8790), + [aux_sym_def_type_statement_token13] = ACTIONS(8790), + [aux_sym_def_type_statement_token14] = ACTIONS(8790), + [aux_sym_call_statement_token1] = ACTIONS(8790), + [sym__ambiguous_call_statement] = ACTIONS(8790), + [aux_sym_addressof_expression_token1] = ACTIONS(8790), + [aux_sym_type_of_expression_token1] = ACTIONS(8790), + [aux_sym_unary_expression_token1] = ACTIONS(8790), + [sym_string_literal] = ACTIONS(8792), + [sym_number_literal] = ACTIONS(8792), + [aux_sym_boolean_literal_token1] = ACTIONS(8790), + [aux_sym_boolean_literal_token2] = ACTIONS(8790), + [sym_nothing_literal] = ACTIONS(8790), + [sym_null_literal] = ACTIONS(8790), + [sym_empty_literal] = ACTIONS(8790), + [sym_date_literal] = ACTIONS(8792), + [anon_sym_POUND] = ACTIONS(8790), + }, + [STATE(3781)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_declaration_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_enum_declaration_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4625), + [aux_sym_declare_function_statement_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [aux_sym__property_get_header_token1] = ACTIONS(4625), + [aux_sym_event_declaration_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(3782)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(3783)] = { + [sym_argument_list] = STATE(10051), + [sym_identifier] = ACTIONS(8794), + [sym_newline] = ACTIONS(8796), + [anon_sym_COLON] = ACTIONS(8796), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8794), + [aux_sym_frm_property_statement_token1] = ACTIONS(8794), + [anon_sym_DOT] = ACTIONS(8794), + [anon_sym_BANG] = ACTIONS(8796), + [aux_sym__attribute_identifier_token1] = ACTIONS(8794), + [aux_sym_option_statement_token3] = ACTIONS(8794), + [aux_sym_type_declaration_token1] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8794), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8794), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8794), + [aux_sym_enum_declaration_token1] = ACTIONS(8794), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8794), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8794), + [aux_sym_declare_function_statement_token1] = ACTIONS(8794), + [aux_sym_preprocessor_const_token1] = ACTIONS(8794), + [aux_sym__property_get_header_token1] = ACTIONS(8794), + [aux_sym_event_declaration_token1] = ACTIONS(8794), + [sym_static_modifier] = ACTIONS(8794), + [sym__dim_keyword] = ACTIONS(8794), + [sym__redim_keyword] = ACTIONS(8794), + [aux_sym_get_accessor_token1] = ACTIONS(8794), + [aux_sym_set_accessor_token1] = ACTIONS(8794), + [aux_sym_const_declaration_token1] = ACTIONS(8794), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(8794), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8794), + [aux_sym_visibility_token1] = ACTIONS(8794), + [aux_sym_visibility_token2] = ACTIONS(8794), + [aux_sym_elseif_fragment_token1] = ACTIONS(8794), + [aux_sym_else_fragment_token1] = ACTIONS(8794), + [aux_sym_select_statement_token1] = ACTIONS(8794), + [aux_sym__for_header_token1] = ACTIONS(8794), + [aux_sym_do_statement_token1] = ACTIONS(8794), + [aux_sym_do_condition_token1] = ACTIONS(8794), + [aux_sym_with_statement_token1] = ACTIONS(8794), + [aux_sym_exit_statement_token1] = ACTIONS(8794), + [sym_end_statement] = ACTIONS(8796), + [aux_sym_on_goto_statement_token1] = ACTIONS(8794), + [aux_sym_on_goto_statement_token2] = ACTIONS(8794), + [aux_sym_on_error_statement_token2] = ACTIONS(8794), + [sym__ambiguous_redim_statement] = ACTIONS(8796), + [aux_sym_erase_statement_token1] = ACTIONS(8794), + [aux_sym_open_statement_token1] = ACTIONS(8794), + [aux_sym_file_mode_token2] = ACTIONS(8794), + [aux_sym_file_access_token2] = ACTIONS(8794), + [aux_sym_file_lock_token2] = ACTIONS(8794), + [aux_sym_print_statement_token1] = ACTIONS(8794), + [anon_sym_PLUS] = ACTIONS(8796), + [anon_sym_DASH] = ACTIONS(8794), + [anon_sym_QMARK] = ACTIONS(8796), + [aux_sym_close_statement_token1] = ACTIONS(8794), + [aux_sym_put_statement_token1] = ACTIONS(8794), + [aux_sym_unlock_statement_token1] = ACTIONS(8794), + [aux_sym_seek_statement_token1] = ACTIONS(8794), + [sym_reset_statement] = ACTIONS(8794), + [aux_sym_raise_event_statement_token1] = ACTIONS(8794), + [sym_stop_statement] = ACTIONS(8794), + [sym_beep_statement] = ACTIONS(8794), + [aux_sym_unload_statement_token1] = ACTIONS(8794), + [aux_sym_def_type_statement_token1] = ACTIONS(8794), + [aux_sym_def_type_statement_token2] = ACTIONS(8794), + [aux_sym_def_type_statement_token3] = ACTIONS(8794), + [aux_sym_def_type_statement_token4] = ACTIONS(8794), + [aux_sym_def_type_statement_token5] = ACTIONS(8794), + [aux_sym_def_type_statement_token6] = ACTIONS(8794), + [aux_sym_def_type_statement_token7] = ACTIONS(8794), + [aux_sym_def_type_statement_token8] = ACTIONS(8794), + [aux_sym_def_type_statement_token9] = ACTIONS(8794), + [aux_sym_def_type_statement_token10] = ACTIONS(8794), + [aux_sym_def_type_statement_token11] = ACTIONS(8794), + [aux_sym_def_type_statement_token12] = ACTIONS(8794), + [aux_sym_def_type_statement_token13] = ACTIONS(8794), + [aux_sym_def_type_statement_token14] = ACTIONS(8794), + [aux_sym_call_statement_token1] = ACTIONS(8794), + [sym__ambiguous_call_statement] = ACTIONS(8794), + [aux_sym_addressof_expression_token1] = ACTIONS(8794), + [aux_sym_type_of_expression_token1] = ACTIONS(8794), + [aux_sym_unary_expression_token1] = ACTIONS(8794), + [sym_string_literal] = ACTIONS(8796), + [sym_number_literal] = ACTIONS(8796), + [aux_sym_boolean_literal_token1] = ACTIONS(8794), + [aux_sym_boolean_literal_token2] = ACTIONS(8794), + [sym_nothing_literal] = ACTIONS(8794), + [sym_null_literal] = ACTIONS(8794), + [sym_empty_literal] = ACTIONS(8794), + [sym_date_literal] = ACTIONS(8796), + [anon_sym_POUND] = ACTIONS(8794), + }, + [STATE(3784)] = { + [sym_identifier] = ACTIONS(6430), + [sym_newline] = ACTIONS(6432), + [anon_sym_COLON] = ACTIONS(6432), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6430), + [aux_sym_frm_property_statement_token1] = ACTIONS(6430), + [anon_sym_DOT] = ACTIONS(6430), + [anon_sym_BANG] = ACTIONS(6432), + [aux_sym__attribute_identifier_token1] = ACTIONS(6430), + [aux_sym_option_statement_token3] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6430), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6430), + [aux_sym_preprocessor_const_token1] = ACTIONS(6430), + [sym_static_modifier] = ACTIONS(6430), + [sym__dim_keyword] = ACTIONS(6430), + [sym__redim_keyword] = ACTIONS(6430), + [aux_sym_get_accessor_token1] = ACTIONS(6430), + [aux_sym_set_accessor_token1] = ACTIONS(6430), + [aux_sym_const_declaration_token1] = ACTIONS(6430), + [anon_sym_LPAREN] = ACTIONS(6432), + [aux_sym_as_type_clause_token2] = ACTIONS(6430), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6430), + [aux_sym_visibility_token1] = ACTIONS(6430), + [aux_sym_visibility_token2] = ACTIONS(6430), + [aux_sym_elseif_fragment_token1] = ACTIONS(6430), + [aux_sym_else_fragment_token1] = ACTIONS(6430), + [aux_sym_select_statement_token1] = ACTIONS(6430), + [aux_sym__for_header_token1] = ACTIONS(6430), + [aux_sym_do_statement_token1] = ACTIONS(6430), + [aux_sym_do_condition_token1] = ACTIONS(6430), + [aux_sym_with_statement_token1] = ACTIONS(6430), + [aux_sym_exit_statement_token1] = ACTIONS(6430), + [sym_end_statement] = ACTIONS(6432), + [aux_sym_on_goto_statement_token1] = ACTIONS(6430), + [aux_sym_on_goto_statement_token2] = ACTIONS(6430), + [aux_sym_on_error_statement_token2] = ACTIONS(6430), + [sym__ambiguous_redim_statement] = ACTIONS(6432), + [aux_sym_erase_statement_token1] = ACTIONS(6430), + [aux_sym_open_statement_token1] = ACTIONS(6430), + [aux_sym_file_mode_token2] = ACTIONS(6430), + [aux_sym_file_access_token2] = ACTIONS(6430), + [aux_sym_file_lock_token2] = ACTIONS(6430), + [aux_sym_print_statement_token1] = ACTIONS(6430), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_QMARK] = ACTIONS(6432), + [aux_sym_close_statement_token1] = ACTIONS(6430), + [aux_sym_put_statement_token1] = ACTIONS(6430), + [aux_sym_unlock_statement_token1] = ACTIONS(6430), + [aux_sym_seek_statement_token1] = ACTIONS(6430), + [sym_reset_statement] = ACTIONS(6430), + [aux_sym_raise_event_statement_token1] = ACTIONS(6430), + [sym_stop_statement] = ACTIONS(6430), + [sym_beep_statement] = ACTIONS(6430), + [aux_sym_unload_statement_token1] = ACTIONS(6430), + [aux_sym_def_type_statement_token1] = ACTIONS(6430), + [aux_sym_def_type_statement_token2] = ACTIONS(6430), + [aux_sym_def_type_statement_token3] = ACTIONS(6430), + [aux_sym_def_type_statement_token4] = ACTIONS(6430), + [aux_sym_def_type_statement_token5] = ACTIONS(6430), + [aux_sym_def_type_statement_token6] = ACTIONS(6430), + [aux_sym_def_type_statement_token7] = ACTIONS(6430), + [aux_sym_def_type_statement_token8] = ACTIONS(6430), + [aux_sym_def_type_statement_token9] = ACTIONS(6430), + [aux_sym_def_type_statement_token10] = ACTIONS(6430), + [aux_sym_def_type_statement_token11] = ACTIONS(6430), + [aux_sym_def_type_statement_token12] = ACTIONS(6430), + [aux_sym_def_type_statement_token13] = ACTIONS(6430), + [aux_sym_def_type_statement_token14] = ACTIONS(6430), + [aux_sym_call_statement_token1] = ACTIONS(6430), + [sym__ambiguous_call_statement] = ACTIONS(6430), + [aux_sym_addressof_expression_token1] = ACTIONS(6430), + [aux_sym_type_of_expression_token1] = ACTIONS(6430), + [aux_sym_unary_expression_token1] = ACTIONS(6430), + [sym_string_literal] = ACTIONS(6432), + [sym_number_literal] = ACTIONS(6432), + [aux_sym_boolean_literal_token1] = ACTIONS(6430), + [aux_sym_boolean_literal_token2] = ACTIONS(6430), + [sym_nothing_literal] = ACTIONS(6430), + [sym_null_literal] = ACTIONS(6430), + [sym_empty_literal] = ACTIONS(6430), + [sym_date_literal] = ACTIONS(6432), + [anon_sym_POUND] = ACTIONS(6430), + }, + [STATE(3785)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(5841), + [sym_newline] = ACTIONS(5843), + [anon_sym_COLON] = ACTIONS(5843), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5841), + [aux_sym_frm_property_statement_token1] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5843), + [aux_sym__attribute_identifier_token1] = ACTIONS(5841), + [aux_sym_option_statement_token3] = ACTIONS(5841), + [aux_sym_type_declaration_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5841), + [aux_sym_enum_declaration_token1] = ACTIONS(5841), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5841), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5841), + [aux_sym_declare_function_statement_token1] = ACTIONS(5841), + [aux_sym_preprocessor_const_token1] = ACTIONS(5841), + [aux_sym__property_get_header_token1] = ACTIONS(5841), + [aux_sym_event_declaration_token1] = ACTIONS(5841), + [sym_static_modifier] = ACTIONS(5841), + [sym__dim_keyword] = ACTIONS(5841), + [sym__redim_keyword] = ACTIONS(5841), + [aux_sym_get_accessor_token1] = ACTIONS(5841), + [aux_sym_set_accessor_token1] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(8798), + [aux_sym_const_declaration_token1] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5843), + [aux_sym_as_type_clause_token2] = ACTIONS(5841), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5841), + [aux_sym_visibility_token1] = ACTIONS(5841), + [aux_sym_visibility_token2] = ACTIONS(5841), + [aux_sym_elseif_fragment_token1] = ACTIONS(5841), + [aux_sym_else_fragment_token1] = ACTIONS(5841), + [aux_sym_select_statement_token1] = ACTIONS(5841), + [aux_sym__for_header_token1] = ACTIONS(5841), + [aux_sym_do_statement_token1] = ACTIONS(5841), + [aux_sym_do_condition_token1] = ACTIONS(5841), + [aux_sym_with_statement_token1] = ACTIONS(5841), + [aux_sym_exit_statement_token1] = ACTIONS(5841), + [sym_end_statement] = ACTIONS(5843), + [aux_sym_on_goto_statement_token1] = ACTIONS(5841), + [aux_sym_on_goto_statement_token2] = ACTIONS(5841), + [aux_sym_on_error_statement_token2] = ACTIONS(5841), + [sym__ambiguous_redim_statement] = ACTIONS(5843), + [aux_sym_erase_statement_token1] = ACTIONS(5841), + [aux_sym_open_statement_token1] = ACTIONS(5841), + [aux_sym_file_mode_token2] = ACTIONS(5841), + [aux_sym_file_access_token2] = ACTIONS(5841), + [aux_sym_file_lock_token2] = ACTIONS(5841), + [aux_sym_print_statement_token1] = ACTIONS(5841), + [anon_sym_PLUS] = ACTIONS(5843), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_SEMI] = ACTIONS(8798), + [anon_sym_QMARK] = ACTIONS(5843), + [aux_sym_close_statement_token1] = ACTIONS(5841), + [aux_sym_put_statement_token1] = ACTIONS(5841), + [aux_sym_unlock_statement_token1] = ACTIONS(5841), + [aux_sym_seek_statement_token1] = ACTIONS(5841), + [sym_reset_statement] = ACTIONS(5841), + [aux_sym_raise_event_statement_token1] = ACTIONS(5841), + [sym_stop_statement] = ACTIONS(5841), + [sym_beep_statement] = ACTIONS(5841), + [aux_sym_unload_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token2] = ACTIONS(5841), + [aux_sym_def_type_statement_token3] = ACTIONS(5841), + [aux_sym_def_type_statement_token4] = ACTIONS(5841), + [aux_sym_def_type_statement_token5] = ACTIONS(5841), + [aux_sym_def_type_statement_token6] = ACTIONS(5841), + [aux_sym_def_type_statement_token7] = ACTIONS(5841), + [aux_sym_def_type_statement_token8] = ACTIONS(5841), + [aux_sym_def_type_statement_token9] = ACTIONS(5841), + [aux_sym_def_type_statement_token10] = ACTIONS(5841), + [aux_sym_def_type_statement_token11] = ACTIONS(5841), + [aux_sym_def_type_statement_token12] = ACTIONS(5841), + [aux_sym_def_type_statement_token13] = ACTIONS(5841), + [aux_sym_def_type_statement_token14] = ACTIONS(5841), + [aux_sym_call_statement_token1] = ACTIONS(5841), + [sym__ambiguous_call_statement] = ACTIONS(5841), + [aux_sym_addressof_expression_token1] = ACTIONS(5841), + [aux_sym_type_of_expression_token1] = ACTIONS(5841), + [aux_sym_unary_expression_token1] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5843), + [sym_number_literal] = ACTIONS(5843), + [aux_sym_boolean_literal_token1] = ACTIONS(5841), + [aux_sym_boolean_literal_token2] = ACTIONS(5841), + [sym_nothing_literal] = ACTIONS(5841), + [sym_null_literal] = ACTIONS(5841), + [sym_empty_literal] = ACTIONS(5841), + [sym_date_literal] = ACTIONS(5843), + [anon_sym_POUND] = ACTIONS(5841), + }, + [STATE(3786)] = { + [sym_identifier] = ACTIONS(8801), + [sym_newline] = ACTIONS(8803), + [anon_sym_COLON] = ACTIONS(8803), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8801), + [aux_sym_frm_property_statement_token1] = ACTIONS(8801), + [anon_sym_DOT] = ACTIONS(8801), + [anon_sym_BANG] = ACTIONS(8803), + [aux_sym__attribute_identifier_token1] = ACTIONS(8801), + [aux_sym_option_statement_token3] = ACTIONS(8801), + [aux_sym_type_declaration_token1] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8801), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8801), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8801), + [aux_sym_enum_declaration_token1] = ACTIONS(8801), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8801), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8801), + [aux_sym_declare_function_statement_token1] = ACTIONS(8801), + [aux_sym_preprocessor_const_token1] = ACTIONS(8801), + [aux_sym__property_get_header_token1] = ACTIONS(8801), + [aux_sym_event_declaration_token1] = ACTIONS(8801), + [sym_static_modifier] = ACTIONS(8801), + [sym__dim_keyword] = ACTIONS(8801), + [sym__redim_keyword] = ACTIONS(8801), + [aux_sym_get_accessor_token1] = ACTIONS(8801), + [aux_sym_set_accessor_token1] = ACTIONS(8801), + [anon_sym_COMMA] = ACTIONS(8803), + [aux_sym_const_declaration_token1] = ACTIONS(8801), + [anon_sym_LPAREN] = ACTIONS(8803), + [aux_sym_as_type_clause_token2] = ACTIONS(8801), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8801), + [aux_sym_visibility_token1] = ACTIONS(8801), + [aux_sym_visibility_token2] = ACTIONS(8801), + [aux_sym_elseif_fragment_token1] = ACTIONS(8801), + [aux_sym_else_fragment_token1] = ACTIONS(8801), + [aux_sym_select_statement_token1] = ACTIONS(8801), + [aux_sym__for_header_token1] = ACTIONS(8801), + [aux_sym_do_statement_token1] = ACTIONS(8801), + [aux_sym_do_condition_token1] = ACTIONS(8801), + [aux_sym_with_statement_token1] = ACTIONS(8801), + [aux_sym_exit_statement_token1] = ACTIONS(8801), + [sym_end_statement] = ACTIONS(8803), + [aux_sym_on_goto_statement_token1] = ACTIONS(8801), + [aux_sym_on_goto_statement_token2] = ACTIONS(8801), + [aux_sym_on_error_statement_token2] = ACTIONS(8801), + [sym__ambiguous_redim_statement] = ACTIONS(8803), + [aux_sym_erase_statement_token1] = ACTIONS(8801), + [aux_sym_open_statement_token1] = ACTIONS(8801), + [aux_sym_file_mode_token2] = ACTIONS(8801), + [aux_sym_file_access_token2] = ACTIONS(8801), + [aux_sym_file_lock_token2] = ACTIONS(8801), + [aux_sym_print_statement_token1] = ACTIONS(8801), + [anon_sym_PLUS] = ACTIONS(8803), + [anon_sym_DASH] = ACTIONS(8801), + [anon_sym_QMARK] = ACTIONS(8803), + [aux_sym_close_statement_token1] = ACTIONS(8801), + [aux_sym_put_statement_token1] = ACTIONS(8801), + [aux_sym_unlock_statement_token1] = ACTIONS(8801), + [aux_sym_seek_statement_token1] = ACTIONS(8801), + [sym_reset_statement] = ACTIONS(8801), + [aux_sym_raise_event_statement_token1] = ACTIONS(8801), + [sym_stop_statement] = ACTIONS(8801), + [sym_beep_statement] = ACTIONS(8801), + [aux_sym_unload_statement_token1] = ACTIONS(8801), + [aux_sym_def_type_statement_token1] = ACTIONS(8801), + [aux_sym_def_type_statement_token2] = ACTIONS(8801), + [aux_sym_def_type_statement_token3] = ACTIONS(8801), + [aux_sym_def_type_statement_token4] = ACTIONS(8801), + [aux_sym_def_type_statement_token5] = ACTIONS(8801), + [aux_sym_def_type_statement_token6] = ACTIONS(8801), + [aux_sym_def_type_statement_token7] = ACTIONS(8801), + [aux_sym_def_type_statement_token8] = ACTIONS(8801), + [aux_sym_def_type_statement_token9] = ACTIONS(8801), + [aux_sym_def_type_statement_token10] = ACTIONS(8801), + [aux_sym_def_type_statement_token11] = ACTIONS(8801), + [aux_sym_def_type_statement_token12] = ACTIONS(8801), + [aux_sym_def_type_statement_token13] = ACTIONS(8801), + [aux_sym_def_type_statement_token14] = ACTIONS(8801), + [aux_sym_call_statement_token1] = ACTIONS(8801), + [sym__ambiguous_call_statement] = ACTIONS(8801), + [aux_sym_addressof_expression_token1] = ACTIONS(8801), + [aux_sym_type_of_expression_token1] = ACTIONS(8801), + [aux_sym_unary_expression_token1] = ACTIONS(8801), + [sym_string_literal] = ACTIONS(8803), + [sym_number_literal] = ACTIONS(8803), + [aux_sym_boolean_literal_token1] = ACTIONS(8801), + [aux_sym_boolean_literal_token2] = ACTIONS(8801), + [sym_nothing_literal] = ACTIONS(8801), + [sym_null_literal] = ACTIONS(8801), + [sym_empty_literal] = ACTIONS(8801), + [sym_date_literal] = ACTIONS(8803), + [anon_sym_POUND] = ACTIONS(8801), + }, + [STATE(3787)] = { + [sym_identifier] = ACTIONS(8805), + [sym_newline] = ACTIONS(8807), + [anon_sym_COLON] = ACTIONS(8807), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8805), + [aux_sym_frm_property_statement_token1] = ACTIONS(8805), + [anon_sym_DOT] = ACTIONS(8805), + [anon_sym_BANG] = ACTIONS(8807), + [aux_sym__attribute_identifier_token1] = ACTIONS(8805), + [aux_sym_option_statement_token3] = ACTIONS(8805), + [aux_sym_type_declaration_token1] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8805), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8805), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8805), + [aux_sym_enum_declaration_token1] = ACTIONS(8805), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8805), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8805), + [aux_sym_declare_function_statement_token1] = ACTIONS(8805), + [aux_sym_preprocessor_const_token1] = ACTIONS(8805), + [aux_sym__property_get_header_token1] = ACTIONS(8805), + [aux_sym_event_declaration_token1] = ACTIONS(8805), + [sym_static_modifier] = ACTIONS(8805), + [sym__dim_keyword] = ACTIONS(8805), + [sym__redim_keyword] = ACTIONS(8805), + [aux_sym_get_accessor_token1] = ACTIONS(8805), + [aux_sym_set_accessor_token1] = ACTIONS(8805), + [anon_sym_COMMA] = ACTIONS(8807), + [aux_sym_const_declaration_token1] = ACTIONS(8805), + [anon_sym_LPAREN] = ACTIONS(8807), + [aux_sym_as_type_clause_token2] = ACTIONS(8805), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8805), + [aux_sym_visibility_token1] = ACTIONS(8805), + [aux_sym_visibility_token2] = ACTIONS(8805), + [aux_sym_elseif_fragment_token1] = ACTIONS(8805), + [aux_sym_else_fragment_token1] = ACTIONS(8805), + [aux_sym_select_statement_token1] = ACTIONS(8805), + [aux_sym__for_header_token1] = ACTIONS(8805), + [aux_sym_do_statement_token1] = ACTIONS(8805), + [aux_sym_do_condition_token1] = ACTIONS(8805), + [aux_sym_with_statement_token1] = ACTIONS(8805), + [aux_sym_exit_statement_token1] = ACTIONS(8805), + [sym_end_statement] = ACTIONS(8807), + [aux_sym_on_goto_statement_token1] = ACTIONS(8805), + [aux_sym_on_goto_statement_token2] = ACTIONS(8805), + [aux_sym_on_error_statement_token2] = ACTIONS(8805), + [sym__ambiguous_redim_statement] = ACTIONS(8807), + [aux_sym_erase_statement_token1] = ACTIONS(8805), + [aux_sym_open_statement_token1] = ACTIONS(8805), + [aux_sym_file_mode_token2] = ACTIONS(8805), + [aux_sym_file_access_token2] = ACTIONS(8805), + [aux_sym_file_lock_token2] = ACTIONS(8805), + [aux_sym_print_statement_token1] = ACTIONS(8805), + [anon_sym_PLUS] = ACTIONS(8807), + [anon_sym_DASH] = ACTIONS(8805), + [anon_sym_QMARK] = ACTIONS(8807), + [aux_sym_close_statement_token1] = ACTIONS(8805), + [aux_sym_put_statement_token1] = ACTIONS(8805), + [aux_sym_unlock_statement_token1] = ACTIONS(8805), + [aux_sym_seek_statement_token1] = ACTIONS(8805), + [sym_reset_statement] = ACTIONS(8805), + [aux_sym_raise_event_statement_token1] = ACTIONS(8805), + [sym_stop_statement] = ACTIONS(8805), + [sym_beep_statement] = ACTIONS(8805), + [aux_sym_unload_statement_token1] = ACTIONS(8805), + [aux_sym_def_type_statement_token1] = ACTIONS(8805), + [aux_sym_def_type_statement_token2] = ACTIONS(8805), + [aux_sym_def_type_statement_token3] = ACTIONS(8805), + [aux_sym_def_type_statement_token4] = ACTIONS(8805), + [aux_sym_def_type_statement_token5] = ACTIONS(8805), + [aux_sym_def_type_statement_token6] = ACTIONS(8805), + [aux_sym_def_type_statement_token7] = ACTIONS(8805), + [aux_sym_def_type_statement_token8] = ACTIONS(8805), + [aux_sym_def_type_statement_token9] = ACTIONS(8805), + [aux_sym_def_type_statement_token10] = ACTIONS(8805), + [aux_sym_def_type_statement_token11] = ACTIONS(8805), + [aux_sym_def_type_statement_token12] = ACTIONS(8805), + [aux_sym_def_type_statement_token13] = ACTIONS(8805), + [aux_sym_def_type_statement_token14] = ACTIONS(8805), + [aux_sym_call_statement_token1] = ACTIONS(8805), + [sym__ambiguous_call_statement] = ACTIONS(8805), + [aux_sym_addressof_expression_token1] = ACTIONS(8805), + [aux_sym_type_of_expression_token1] = ACTIONS(8805), + [aux_sym_unary_expression_token1] = ACTIONS(8805), + [sym_string_literal] = ACTIONS(8807), + [sym_number_literal] = ACTIONS(8807), + [aux_sym_boolean_literal_token1] = ACTIONS(8805), + [aux_sym_boolean_literal_token2] = ACTIONS(8805), + [sym_nothing_literal] = ACTIONS(8805), + [sym_null_literal] = ACTIONS(8805), + [sym_empty_literal] = ACTIONS(8805), + [sym_date_literal] = ACTIONS(8807), + [anon_sym_POUND] = ACTIONS(8805), + }, + [STATE(3788)] = { + [sym_identifier] = ACTIONS(8809), + [sym_newline] = ACTIONS(8811), + [anon_sym_COLON] = ACTIONS(8811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8809), + [aux_sym_frm_property_statement_token1] = ACTIONS(8809), + [anon_sym_DOT] = ACTIONS(8809), + [anon_sym_BANG] = ACTIONS(8811), + [aux_sym__attribute_identifier_token1] = ACTIONS(8809), + [aux_sym_option_statement_token3] = ACTIONS(8809), + [aux_sym_type_declaration_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8809), + [aux_sym_enum_declaration_token1] = ACTIONS(8809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8809), + [aux_sym_declare_function_statement_token1] = ACTIONS(8809), + [aux_sym_preprocessor_const_token1] = ACTIONS(8809), + [aux_sym__property_get_header_token1] = ACTIONS(8809), + [aux_sym_event_declaration_token1] = ACTIONS(8809), + [sym_static_modifier] = ACTIONS(8809), + [sym__dim_keyword] = ACTIONS(8809), + [sym__redim_keyword] = ACTIONS(8809), + [aux_sym_get_accessor_token1] = ACTIONS(8809), + [aux_sym_set_accessor_token1] = ACTIONS(8809), + [aux_sym_const_declaration_token1] = ACTIONS(8809), + [anon_sym_LPAREN] = ACTIONS(8811), + [aux_sym_as_type_clause_token2] = ACTIONS(8809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8809), + [aux_sym_visibility_token1] = ACTIONS(8809), + [aux_sym_visibility_token2] = ACTIONS(8809), + [aux_sym_elseif_fragment_token1] = ACTIONS(8809), + [aux_sym_else_fragment_token1] = ACTIONS(8809), + [aux_sym_select_statement_token1] = ACTIONS(8809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8809), + [aux_sym__for_header_token1] = ACTIONS(8809), + [aux_sym_do_statement_token1] = ACTIONS(8809), + [aux_sym_do_condition_token1] = ACTIONS(8809), + [aux_sym_with_statement_token1] = ACTIONS(8809), + [aux_sym_exit_statement_token1] = ACTIONS(8809), + [sym_end_statement] = ACTIONS(8811), + [aux_sym_on_goto_statement_token1] = ACTIONS(8809), + [aux_sym_on_goto_statement_token2] = ACTIONS(8809), + [aux_sym_on_error_statement_token2] = ACTIONS(8809), + [sym__ambiguous_redim_statement] = ACTIONS(8811), + [aux_sym_erase_statement_token1] = ACTIONS(8809), + [aux_sym_open_statement_token1] = ACTIONS(8809), + [aux_sym_file_mode_token2] = ACTIONS(8809), + [aux_sym_file_access_token2] = ACTIONS(8809), + [aux_sym_file_lock_token2] = ACTIONS(8809), + [aux_sym_print_statement_token1] = ACTIONS(8809), + [anon_sym_PLUS] = ACTIONS(8811), + [anon_sym_DASH] = ACTIONS(8809), + [anon_sym_QMARK] = ACTIONS(8811), + [aux_sym_close_statement_token1] = ACTIONS(8809), + [aux_sym_put_statement_token1] = ACTIONS(8809), + [aux_sym_unlock_statement_token1] = ACTIONS(8809), + [aux_sym_seek_statement_token1] = ACTIONS(8809), + [sym_reset_statement] = ACTIONS(8809), + [aux_sym_raise_event_statement_token1] = ACTIONS(8809), + [sym_stop_statement] = ACTIONS(8809), + [sym_beep_statement] = ACTIONS(8809), + [aux_sym_unload_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token2] = ACTIONS(8809), + [aux_sym_def_type_statement_token3] = ACTIONS(8809), + [aux_sym_def_type_statement_token4] = ACTIONS(8809), + [aux_sym_def_type_statement_token5] = ACTIONS(8809), + [aux_sym_def_type_statement_token6] = ACTIONS(8809), + [aux_sym_def_type_statement_token7] = ACTIONS(8809), + [aux_sym_def_type_statement_token8] = ACTIONS(8809), + [aux_sym_def_type_statement_token9] = ACTIONS(8809), + [aux_sym_def_type_statement_token10] = ACTIONS(8809), + [aux_sym_def_type_statement_token11] = ACTIONS(8809), + [aux_sym_def_type_statement_token12] = ACTIONS(8809), + [aux_sym_def_type_statement_token13] = ACTIONS(8809), + [aux_sym_def_type_statement_token14] = ACTIONS(8809), + [aux_sym_call_statement_token1] = ACTIONS(8809), + [sym__ambiguous_call_statement] = ACTIONS(8809), + [aux_sym_addressof_expression_token1] = ACTIONS(8809), + [aux_sym_type_of_expression_token1] = ACTIONS(8809), + [aux_sym_unary_expression_token1] = ACTIONS(8809), + [sym_string_literal] = ACTIONS(8811), + [sym_number_literal] = ACTIONS(8811), + [aux_sym_boolean_literal_token1] = ACTIONS(8809), + [aux_sym_boolean_literal_token2] = ACTIONS(8809), + [sym_nothing_literal] = ACTIONS(8809), + [sym_null_literal] = ACTIONS(8809), + [sym_empty_literal] = ACTIONS(8809), + [sym_date_literal] = ACTIONS(8811), + [anon_sym_POUND] = ACTIONS(8809), + }, + [STATE(3789)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(3772), + [sym_identifier] = ACTIONS(8813), + [sym_newline] = ACTIONS(8815), + [anon_sym_COLON] = ACTIONS(8696), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8813), + [aux_sym_frm_property_statement_token1] = ACTIONS(8813), + [anon_sym_DOT] = ACTIONS(8813), + [anon_sym_BANG] = ACTIONS(8815), + [aux_sym__attribute_identifier_token1] = ACTIONS(8813), + [aux_sym_option_statement_token3] = ACTIONS(8813), + [aux_sym_type_declaration_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8813), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8813), + [aux_sym_enum_declaration_token1] = ACTIONS(8813), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8813), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8813), + [aux_sym_declare_function_statement_token1] = ACTIONS(8813), + [aux_sym_preprocessor_const_token1] = ACTIONS(8813), + [aux_sym__property_get_header_token1] = ACTIONS(8813), + [aux_sym_event_declaration_token1] = ACTIONS(8813), + [sym_static_modifier] = ACTIONS(8813), + [sym__dim_keyword] = ACTIONS(8813), + [sym__redim_keyword] = ACTIONS(8813), + [aux_sym_get_accessor_token1] = ACTIONS(8813), + [aux_sym_set_accessor_token1] = ACTIONS(8813), + [aux_sym_const_declaration_token1] = ACTIONS(8813), + [anon_sym_LPAREN] = ACTIONS(8815), + [aux_sym_as_type_clause_token2] = ACTIONS(8813), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8813), + [aux_sym_visibility_token1] = ACTIONS(8813), + [aux_sym_visibility_token2] = ACTIONS(8813), + [aux_sym_elseif_fragment_token1] = ACTIONS(8813), + [aux_sym_else_fragment_token1] = ACTIONS(8813), + [aux_sym_select_statement_token1] = ACTIONS(8813), + [aux_sym__for_header_token1] = ACTIONS(8813), + [aux_sym_do_statement_token1] = ACTIONS(8813), + [aux_sym_do_condition_token1] = ACTIONS(8813), + [aux_sym_with_statement_token1] = ACTIONS(8813), + [aux_sym_exit_statement_token1] = ACTIONS(8813), + [sym_end_statement] = ACTIONS(8815), + [aux_sym_on_goto_statement_token1] = ACTIONS(8813), + [aux_sym_on_goto_statement_token2] = ACTIONS(8813), + [aux_sym_on_error_statement_token2] = ACTIONS(8813), + [sym__ambiguous_redim_statement] = ACTIONS(8815), + [aux_sym_erase_statement_token1] = ACTIONS(8813), + [aux_sym_open_statement_token1] = ACTIONS(8813), + [aux_sym_file_mode_token2] = ACTIONS(8813), + [aux_sym_file_access_token2] = ACTIONS(8813), + [aux_sym_file_lock_token2] = ACTIONS(8813), + [aux_sym_print_statement_token1] = ACTIONS(8813), + [anon_sym_PLUS] = ACTIONS(8815), + [anon_sym_DASH] = ACTIONS(8813), + [anon_sym_QMARK] = ACTIONS(8815), + [aux_sym_close_statement_token1] = ACTIONS(8813), + [aux_sym_put_statement_token1] = ACTIONS(8813), + [aux_sym_unlock_statement_token1] = ACTIONS(8813), + [aux_sym_seek_statement_token1] = ACTIONS(8813), + [sym_reset_statement] = ACTIONS(8813), + [aux_sym_raise_event_statement_token1] = ACTIONS(8813), + [sym_stop_statement] = ACTIONS(8813), + [sym_beep_statement] = ACTIONS(8813), + [aux_sym_unload_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token2] = ACTIONS(8813), + [aux_sym_def_type_statement_token3] = ACTIONS(8813), + [aux_sym_def_type_statement_token4] = ACTIONS(8813), + [aux_sym_def_type_statement_token5] = ACTIONS(8813), + [aux_sym_def_type_statement_token6] = ACTIONS(8813), + [aux_sym_def_type_statement_token7] = ACTIONS(8813), + [aux_sym_def_type_statement_token8] = ACTIONS(8813), + [aux_sym_def_type_statement_token9] = ACTIONS(8813), + [aux_sym_def_type_statement_token10] = ACTIONS(8813), + [aux_sym_def_type_statement_token11] = ACTIONS(8813), + [aux_sym_def_type_statement_token12] = ACTIONS(8813), + [aux_sym_def_type_statement_token13] = ACTIONS(8813), + [aux_sym_def_type_statement_token14] = ACTIONS(8813), + [aux_sym_call_statement_token1] = ACTIONS(8813), + [sym__ambiguous_call_statement] = ACTIONS(8813), + [aux_sym_addressof_expression_token1] = ACTIONS(8813), + [aux_sym_type_of_expression_token1] = ACTIONS(8813), + [aux_sym_unary_expression_token1] = ACTIONS(8813), + [sym_string_literal] = ACTIONS(8815), + [sym_number_literal] = ACTIONS(8815), + [aux_sym_boolean_literal_token1] = ACTIONS(8813), + [aux_sym_boolean_literal_token2] = ACTIONS(8813), + [sym_nothing_literal] = ACTIONS(8813), + [sym_null_literal] = ACTIONS(8813), + [sym_empty_literal] = ACTIONS(8813), + [sym_date_literal] = ACTIONS(8815), + [anon_sym_POUND] = ACTIONS(8813), + }, + [STATE(3790)] = { + [sym_identifier] = ACTIONS(6117), + [sym_newline] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6117), + [aux_sym_frm_property_statement_token1] = ACTIONS(6117), + [anon_sym_DOT] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6119), + [aux_sym__attribute_identifier_token1] = ACTIONS(6117), + [aux_sym_option_statement_token3] = ACTIONS(6117), + [aux_sym_type_declaration_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6117), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6117), + [aux_sym_enum_declaration_token1] = ACTIONS(6117), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6117), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6117), + [aux_sym_declare_function_statement_token1] = ACTIONS(6117), + [aux_sym_preprocessor_const_token1] = ACTIONS(6117), + [aux_sym__property_get_header_token1] = ACTIONS(6117), + [aux_sym_event_declaration_token1] = ACTIONS(6117), + [sym_static_modifier] = ACTIONS(6117), + [sym__dim_keyword] = ACTIONS(6117), + [sym__redim_keyword] = ACTIONS(6117), + [aux_sym_get_accessor_token1] = ACTIONS(6117), + [aux_sym_set_accessor_token1] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6119), + [aux_sym_const_declaration_token1] = ACTIONS(6117), + [anon_sym_LPAREN] = ACTIONS(6119), + [aux_sym_as_type_clause_token2] = ACTIONS(6117), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6117), + [aux_sym_visibility_token1] = ACTIONS(6117), + [aux_sym_visibility_token2] = ACTIONS(6117), + [aux_sym_elseif_fragment_token1] = ACTIONS(6117), + [aux_sym_else_fragment_token1] = ACTIONS(6117), + [aux_sym_select_statement_token1] = ACTIONS(6117), + [aux_sym__for_header_token1] = ACTIONS(6117), + [aux_sym_do_statement_token1] = ACTIONS(6117), + [aux_sym_do_condition_token1] = ACTIONS(6117), + [aux_sym_with_statement_token1] = ACTIONS(6117), + [aux_sym_exit_statement_token1] = ACTIONS(6117), + [sym_end_statement] = ACTIONS(6119), + [aux_sym_on_goto_statement_token1] = ACTIONS(6117), + [aux_sym_on_goto_statement_token2] = ACTIONS(6117), + [aux_sym_on_error_statement_token2] = ACTIONS(6117), + [sym__ambiguous_redim_statement] = ACTIONS(6119), + [aux_sym_erase_statement_token1] = ACTIONS(6117), + [aux_sym_open_statement_token1] = ACTIONS(6117), + [aux_sym_file_mode_token2] = ACTIONS(6117), + [aux_sym_file_access_token2] = ACTIONS(6117), + [aux_sym_file_lock_token2] = ACTIONS(6117), + [aux_sym_print_statement_token1] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6117), + [anon_sym_QMARK] = ACTIONS(6119), + [aux_sym_close_statement_token1] = ACTIONS(6117), + [aux_sym_put_statement_token1] = ACTIONS(6117), + [aux_sym_unlock_statement_token1] = ACTIONS(6117), + [aux_sym_seek_statement_token1] = ACTIONS(6117), + [sym_reset_statement] = ACTIONS(6117), + [aux_sym_raise_event_statement_token1] = ACTIONS(6117), + [sym_stop_statement] = ACTIONS(6117), + [sym_beep_statement] = ACTIONS(6117), + [aux_sym_unload_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token2] = ACTIONS(6117), + [aux_sym_def_type_statement_token3] = ACTIONS(6117), + [aux_sym_def_type_statement_token4] = ACTIONS(6117), + [aux_sym_def_type_statement_token5] = ACTIONS(6117), + [aux_sym_def_type_statement_token6] = ACTIONS(6117), + [aux_sym_def_type_statement_token7] = ACTIONS(6117), + [aux_sym_def_type_statement_token8] = ACTIONS(6117), + [aux_sym_def_type_statement_token9] = ACTIONS(6117), + [aux_sym_def_type_statement_token10] = ACTIONS(6117), + [aux_sym_def_type_statement_token11] = ACTIONS(6117), + [aux_sym_def_type_statement_token12] = ACTIONS(6117), + [aux_sym_def_type_statement_token13] = ACTIONS(6117), + [aux_sym_def_type_statement_token14] = ACTIONS(6117), + [aux_sym_call_statement_token1] = ACTIONS(6117), + [sym__ambiguous_call_statement] = ACTIONS(6117), + [aux_sym_addressof_expression_token1] = ACTIONS(6117), + [aux_sym_type_of_expression_token1] = ACTIONS(6117), + [aux_sym_unary_expression_token1] = ACTIONS(6117), + [sym_string_literal] = ACTIONS(6119), + [sym_number_literal] = ACTIONS(6119), + [aux_sym_boolean_literal_token1] = ACTIONS(6117), + [aux_sym_boolean_literal_token2] = ACTIONS(6117), + [sym_nothing_literal] = ACTIONS(6117), + [sym_null_literal] = ACTIONS(6117), + [sym_empty_literal] = ACTIONS(6117), + [sym_date_literal] = ACTIONS(6119), + [anon_sym_POUND] = ACTIONS(6117), + }, + [STATE(3791)] = { + [sym_identifier] = ACTIONS(6336), + [sym_newline] = ACTIONS(6338), + [anon_sym_COLON] = ACTIONS(6338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6336), + [aux_sym_frm_property_statement_token1] = ACTIONS(6336), + [anon_sym_DOT] = ACTIONS(6336), + [anon_sym_BANG] = ACTIONS(6338), + [aux_sym__attribute_identifier_token1] = ACTIONS(6336), + [aux_sym_option_statement_token3] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6336), + [aux_sym_preprocessor_const_token1] = ACTIONS(6336), + [sym_static_modifier] = ACTIONS(6336), + [sym__dim_keyword] = ACTIONS(6336), + [sym__redim_keyword] = ACTIONS(6336), + [aux_sym_get_accessor_token1] = ACTIONS(6336), + [aux_sym_set_accessor_token1] = ACTIONS(6336), + [aux_sym_const_declaration_token1] = ACTIONS(6336), + [anon_sym_LPAREN] = ACTIONS(6338), + [aux_sym_as_type_clause_token2] = ACTIONS(6336), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6336), + [aux_sym_visibility_token1] = ACTIONS(6336), + [aux_sym_visibility_token2] = ACTIONS(6336), + [aux_sym_elseif_fragment_token1] = ACTIONS(6336), + [aux_sym_else_fragment_token1] = ACTIONS(6336), + [aux_sym_select_statement_token1] = ACTIONS(6336), + [aux_sym__for_header_token1] = ACTIONS(6336), + [aux_sym_do_statement_token1] = ACTIONS(6336), + [aux_sym_do_condition_token1] = ACTIONS(6336), + [aux_sym_with_statement_token1] = ACTIONS(6336), + [aux_sym_exit_statement_token1] = ACTIONS(6336), + [sym_end_statement] = ACTIONS(6338), + [aux_sym_on_goto_statement_token1] = ACTIONS(6336), + [aux_sym_on_goto_statement_token2] = ACTIONS(6336), + [aux_sym_on_error_statement_token2] = ACTIONS(6336), + [sym__ambiguous_redim_statement] = ACTIONS(6338), + [aux_sym_erase_statement_token1] = ACTIONS(6336), + [aux_sym_open_statement_token1] = ACTIONS(6336), + [aux_sym_file_mode_token2] = ACTIONS(6336), + [aux_sym_file_access_token2] = ACTIONS(6336), + [aux_sym_file_lock_token2] = ACTIONS(6336), + [aux_sym_print_statement_token1] = ACTIONS(6336), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6484), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6486), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6488), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6490), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6492), + [anon_sym_QMARK] = ACTIONS(6338), + [aux_sym_close_statement_token1] = ACTIONS(6336), + [aux_sym_put_statement_token1] = ACTIONS(6336), + [aux_sym_unlock_statement_token1] = ACTIONS(6336), + [aux_sym_seek_statement_token1] = ACTIONS(6336), + [sym_reset_statement] = ACTIONS(6336), + [aux_sym_raise_event_statement_token1] = ACTIONS(6336), + [sym_stop_statement] = ACTIONS(6336), + [sym_beep_statement] = ACTIONS(6336), + [aux_sym_unload_statement_token1] = ACTIONS(6336), + [aux_sym_def_type_statement_token1] = ACTIONS(6336), + [aux_sym_def_type_statement_token2] = ACTIONS(6336), + [aux_sym_def_type_statement_token3] = ACTIONS(6336), + [aux_sym_def_type_statement_token4] = ACTIONS(6336), + [aux_sym_def_type_statement_token5] = ACTIONS(6336), + [aux_sym_def_type_statement_token6] = ACTIONS(6336), + [aux_sym_def_type_statement_token7] = ACTIONS(6336), + [aux_sym_def_type_statement_token8] = ACTIONS(6336), + [aux_sym_def_type_statement_token9] = ACTIONS(6336), + [aux_sym_def_type_statement_token10] = ACTIONS(6336), + [aux_sym_def_type_statement_token11] = ACTIONS(6336), + [aux_sym_def_type_statement_token12] = ACTIONS(6336), + [aux_sym_def_type_statement_token13] = ACTIONS(6336), + [aux_sym_def_type_statement_token14] = ACTIONS(6336), + [aux_sym_call_statement_token1] = ACTIONS(6336), + [sym__ambiguous_call_statement] = ACTIONS(6336), + [aux_sym_addressof_expression_token1] = ACTIONS(6336), + [aux_sym_type_of_expression_token1] = ACTIONS(6336), + [aux_sym_unary_expression_token1] = ACTIONS(6336), + [sym_string_literal] = ACTIONS(6338), + [sym_number_literal] = ACTIONS(6338), + [aux_sym_boolean_literal_token1] = ACTIONS(6336), + [aux_sym_boolean_literal_token2] = ACTIONS(6336), + [sym_nothing_literal] = ACTIONS(6336), + [sym_null_literal] = ACTIONS(6336), + [sym_empty_literal] = ACTIONS(6336), + [sym_date_literal] = ACTIONS(6338), + [anon_sym_POUND] = ACTIONS(6336), + }, + [STATE(3792)] = { + [sym_identifier] = ACTIONS(8817), + [sym_newline] = ACTIONS(8819), + [anon_sym_COLON] = ACTIONS(8819), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8821), + [aux_sym_frm_property_statement_token1] = ACTIONS(8821), + [anon_sym_DOT] = ACTIONS(8821), + [anon_sym_BANG] = ACTIONS(8819), + [aux_sym__attribute_identifier_token1] = ACTIONS(8821), + [aux_sym_option_statement_token3] = ACTIONS(8821), + [aux_sym_type_declaration_token1] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8821), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8821), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8821), + [aux_sym_enum_declaration_token1] = ACTIONS(8821), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8821), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8821), + [aux_sym_declare_function_statement_token1] = ACTIONS(8821), + [aux_sym_preprocessor_const_token1] = ACTIONS(8821), + [aux_sym__property_get_header_token1] = ACTIONS(8821), + [aux_sym_event_declaration_token1] = ACTIONS(8821), + [sym_static_modifier] = ACTIONS(8821), + [sym__dim_keyword] = ACTIONS(8821), + [sym__redim_keyword] = ACTIONS(8821), + [aux_sym_get_accessor_token1] = ACTIONS(8821), + [aux_sym_set_accessor_token1] = ACTIONS(8821), + [aux_sym_const_declaration_token1] = ACTIONS(8821), + [anon_sym_LPAREN] = ACTIONS(8819), + [aux_sym_as_type_clause_token2] = ACTIONS(8821), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8821), + [aux_sym_visibility_token1] = ACTIONS(8821), + [aux_sym_visibility_token2] = ACTIONS(8821), + [aux_sym_elseif_fragment_token1] = ACTIONS(8821), + [aux_sym_else_fragment_token1] = ACTIONS(8821), + [aux_sym_select_statement_token1] = ACTIONS(8821), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8823), + [aux_sym__for_header_token1] = ACTIONS(8821), + [aux_sym_do_statement_token1] = ACTIONS(8821), + [aux_sym_do_condition_token1] = ACTIONS(8821), + [aux_sym_with_statement_token1] = ACTIONS(8821), + [aux_sym_exit_statement_token1] = ACTIONS(8821), + [sym_end_statement] = ACTIONS(8819), + [aux_sym_on_goto_statement_token1] = ACTIONS(8821), + [aux_sym_on_goto_statement_token2] = ACTIONS(8821), + [aux_sym_on_error_statement_token2] = ACTIONS(8821), + [sym__ambiguous_redim_statement] = ACTIONS(8819), + [aux_sym_erase_statement_token1] = ACTIONS(8821), + [aux_sym_open_statement_token1] = ACTIONS(8821), + [aux_sym_file_mode_token2] = ACTIONS(8821), + [aux_sym_file_access_token2] = ACTIONS(8821), + [aux_sym_file_lock_token2] = ACTIONS(8821), + [aux_sym_print_statement_token1] = ACTIONS(8821), + [anon_sym_PLUS] = ACTIONS(8819), + [anon_sym_DASH] = ACTIONS(8821), + [anon_sym_QMARK] = ACTIONS(8819), + [aux_sym_close_statement_token1] = ACTIONS(8821), + [aux_sym_put_statement_token1] = ACTIONS(8821), + [aux_sym_unlock_statement_token1] = ACTIONS(8821), + [aux_sym_seek_statement_token1] = ACTIONS(8821), + [sym_reset_statement] = ACTIONS(8821), + [aux_sym_raise_event_statement_token1] = ACTIONS(8821), + [sym_stop_statement] = ACTIONS(8821), + [sym_beep_statement] = ACTIONS(8821), + [aux_sym_unload_statement_token1] = ACTIONS(8821), + [aux_sym_def_type_statement_token1] = ACTIONS(8821), + [aux_sym_def_type_statement_token2] = ACTIONS(8821), + [aux_sym_def_type_statement_token3] = ACTIONS(8821), + [aux_sym_def_type_statement_token4] = ACTIONS(8821), + [aux_sym_def_type_statement_token5] = ACTIONS(8821), + [aux_sym_def_type_statement_token6] = ACTIONS(8821), + [aux_sym_def_type_statement_token7] = ACTIONS(8821), + [aux_sym_def_type_statement_token8] = ACTIONS(8821), + [aux_sym_def_type_statement_token9] = ACTIONS(8821), + [aux_sym_def_type_statement_token10] = ACTIONS(8821), + [aux_sym_def_type_statement_token11] = ACTIONS(8821), + [aux_sym_def_type_statement_token12] = ACTIONS(8821), + [aux_sym_def_type_statement_token13] = ACTIONS(8821), + [aux_sym_def_type_statement_token14] = ACTIONS(8821), + [aux_sym_call_statement_token1] = ACTIONS(8821), + [sym__ambiguous_call_statement] = ACTIONS(8821), + [aux_sym_addressof_expression_token1] = ACTIONS(8821), + [aux_sym_type_of_expression_token1] = ACTIONS(8821), + [aux_sym_unary_expression_token1] = ACTIONS(8821), + [sym_string_literal] = ACTIONS(8819), + [sym_number_literal] = ACTIONS(8825), + [aux_sym_boolean_literal_token1] = ACTIONS(8821), + [aux_sym_boolean_literal_token2] = ACTIONS(8821), + [sym_nothing_literal] = ACTIONS(8821), + [sym_null_literal] = ACTIONS(8821), + [sym_empty_literal] = ACTIONS(8821), + [sym_date_literal] = ACTIONS(8819), + [anon_sym_POUND] = ACTIONS(8821), + }, + [STATE(3793)] = { + [sym_parameter_list] = STATE(4148), + [sym_identifier] = ACTIONS(8827), + [sym_newline] = ACTIONS(8829), + [anon_sym_COLON] = ACTIONS(8829), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8827), + [aux_sym_frm_property_statement_token1] = ACTIONS(8827), + [anon_sym_DOT] = ACTIONS(8827), + [anon_sym_BANG] = ACTIONS(8829), + [aux_sym__attribute_identifier_token1] = ACTIONS(8827), + [aux_sym_option_statement_token3] = ACTIONS(8827), + [aux_sym_type_declaration_token1] = ACTIONS(8827), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8827), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8827), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8827), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8827), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8827), + [aux_sym_enum_declaration_token1] = ACTIONS(8827), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8827), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8827), + [aux_sym_declare_function_statement_token1] = ACTIONS(8827), + [aux_sym_preprocessor_const_token1] = ACTIONS(8827), + [aux_sym__property_get_header_token1] = ACTIONS(8827), + [aux_sym_event_declaration_token1] = ACTIONS(8827), + [sym_static_modifier] = ACTIONS(8827), + [sym__dim_keyword] = ACTIONS(8827), + [sym__redim_keyword] = ACTIONS(8827), + [aux_sym_get_accessor_token1] = ACTIONS(8827), + [aux_sym_set_accessor_token1] = ACTIONS(8827), + [aux_sym_const_declaration_token1] = ACTIONS(8827), + [anon_sym_LPAREN] = ACTIONS(8126), + [aux_sym_as_type_clause_token2] = ACTIONS(8827), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8827), + [aux_sym_visibility_token1] = ACTIONS(8827), + [aux_sym_visibility_token2] = ACTIONS(8827), + [aux_sym_elseif_fragment_token1] = ACTIONS(8827), + [aux_sym_else_fragment_token1] = ACTIONS(8827), + [aux_sym_select_statement_token1] = ACTIONS(8827), + [aux_sym__for_header_token1] = ACTIONS(8827), + [aux_sym_do_statement_token1] = ACTIONS(8827), + [aux_sym_do_condition_token1] = ACTIONS(8827), + [aux_sym_with_statement_token1] = ACTIONS(8827), + [aux_sym_exit_statement_token1] = ACTIONS(8827), + [sym_end_statement] = ACTIONS(8829), + [aux_sym_on_goto_statement_token1] = ACTIONS(8827), + [aux_sym_on_goto_statement_token2] = ACTIONS(8827), + [aux_sym_on_error_statement_token2] = ACTIONS(8827), + [sym__ambiguous_redim_statement] = ACTIONS(8829), + [aux_sym_erase_statement_token1] = ACTIONS(8827), + [aux_sym_open_statement_token1] = ACTIONS(8827), + [aux_sym_file_mode_token2] = ACTIONS(8827), + [aux_sym_file_access_token2] = ACTIONS(8827), + [aux_sym_file_lock_token2] = ACTIONS(8827), + [aux_sym_print_statement_token1] = ACTIONS(8827), + [anon_sym_PLUS] = ACTIONS(8829), + [anon_sym_DASH] = ACTIONS(8827), + [anon_sym_QMARK] = ACTIONS(8829), + [aux_sym_close_statement_token1] = ACTIONS(8827), + [aux_sym_put_statement_token1] = ACTIONS(8827), + [aux_sym_unlock_statement_token1] = ACTIONS(8827), + [aux_sym_seek_statement_token1] = ACTIONS(8827), + [sym_reset_statement] = ACTIONS(8827), + [aux_sym_raise_event_statement_token1] = ACTIONS(8827), + [sym_stop_statement] = ACTIONS(8827), + [sym_beep_statement] = ACTIONS(8827), + [aux_sym_unload_statement_token1] = ACTIONS(8827), + [aux_sym_def_type_statement_token1] = ACTIONS(8827), + [aux_sym_def_type_statement_token2] = ACTIONS(8827), + [aux_sym_def_type_statement_token3] = ACTIONS(8827), + [aux_sym_def_type_statement_token4] = ACTIONS(8827), + [aux_sym_def_type_statement_token5] = ACTIONS(8827), + [aux_sym_def_type_statement_token6] = ACTIONS(8827), + [aux_sym_def_type_statement_token7] = ACTIONS(8827), + [aux_sym_def_type_statement_token8] = ACTIONS(8827), + [aux_sym_def_type_statement_token9] = ACTIONS(8827), + [aux_sym_def_type_statement_token10] = ACTIONS(8827), + [aux_sym_def_type_statement_token11] = ACTIONS(8827), + [aux_sym_def_type_statement_token12] = ACTIONS(8827), + [aux_sym_def_type_statement_token13] = ACTIONS(8827), + [aux_sym_def_type_statement_token14] = ACTIONS(8827), + [aux_sym_call_statement_token1] = ACTIONS(8827), + [sym__ambiguous_call_statement] = ACTIONS(8827), + [aux_sym_addressof_expression_token1] = ACTIONS(8827), + [aux_sym_type_of_expression_token1] = ACTIONS(8827), + [aux_sym_unary_expression_token1] = ACTIONS(8827), + [sym_string_literal] = ACTIONS(8829), + [sym_number_literal] = ACTIONS(8829), + [aux_sym_boolean_literal_token1] = ACTIONS(8827), + [aux_sym_boolean_literal_token2] = ACTIONS(8827), + [sym_nothing_literal] = ACTIONS(8827), + [sym_null_literal] = ACTIONS(8827), + [sym_empty_literal] = ACTIONS(8827), + [sym_date_literal] = ACTIONS(8829), + [anon_sym_POUND] = ACTIONS(8827), + }, + [STATE(3794)] = { + [sym_identifier] = ACTIONS(8533), + [sym_newline] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(8535), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8533), + [aux_sym_frm_property_statement_token1] = ACTIONS(8533), + [anon_sym_DOT] = ACTIONS(8533), + [anon_sym_BANG] = ACTIONS(8535), + [aux_sym__attribute_identifier_token1] = ACTIONS(8533), + [aux_sym_option_statement_token3] = ACTIONS(8533), + [aux_sym_type_declaration_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8533), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8533), + [aux_sym_enum_declaration_token1] = ACTIONS(8533), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8533), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8533), + [aux_sym_declare_function_statement_token1] = ACTIONS(8533), + [aux_sym_preprocessor_const_token1] = ACTIONS(8533), + [aux_sym__property_get_header_token1] = ACTIONS(8533), + [aux_sym_event_declaration_token1] = ACTIONS(8533), + [sym_static_modifier] = ACTIONS(8533), + [sym__dim_keyword] = ACTIONS(8533), + [sym__redim_keyword] = ACTIONS(8533), + [aux_sym_get_accessor_token1] = ACTIONS(8533), + [aux_sym_set_accessor_token1] = ACTIONS(8533), + [anon_sym_COMMA] = ACTIONS(8535), + [aux_sym_const_declaration_token1] = ACTIONS(8533), + [anon_sym_LPAREN] = ACTIONS(8535), + [aux_sym_as_type_clause_token2] = ACTIONS(8533), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8533), + [aux_sym_visibility_token1] = ACTIONS(8533), + [aux_sym_visibility_token2] = ACTIONS(8533), + [aux_sym_elseif_fragment_token1] = ACTIONS(8533), + [aux_sym_else_fragment_token1] = ACTIONS(8533), + [aux_sym_select_statement_token1] = ACTIONS(8533), + [aux_sym__for_header_token1] = ACTIONS(8533), + [aux_sym_do_statement_token1] = ACTIONS(8533), + [aux_sym_do_condition_token1] = ACTIONS(8533), + [aux_sym_with_statement_token1] = ACTIONS(8533), + [aux_sym_exit_statement_token1] = ACTIONS(8533), + [sym_end_statement] = ACTIONS(8535), + [aux_sym_on_goto_statement_token1] = ACTIONS(8533), + [aux_sym_on_goto_statement_token2] = ACTIONS(8533), + [aux_sym_on_error_statement_token2] = ACTIONS(8533), + [sym__ambiguous_redim_statement] = ACTIONS(8535), + [aux_sym_erase_statement_token1] = ACTIONS(8533), + [aux_sym_open_statement_token1] = ACTIONS(8533), + [aux_sym_file_mode_token2] = ACTIONS(8533), + [aux_sym_file_access_token2] = ACTIONS(8533), + [aux_sym_file_lock_token2] = ACTIONS(8533), + [aux_sym_print_statement_token1] = ACTIONS(8533), + [anon_sym_PLUS] = ACTIONS(8535), + [anon_sym_DASH] = ACTIONS(8533), + [anon_sym_QMARK] = ACTIONS(8535), + [aux_sym_close_statement_token1] = ACTIONS(8533), + [aux_sym_put_statement_token1] = ACTIONS(8533), + [aux_sym_unlock_statement_token1] = ACTIONS(8533), + [aux_sym_seek_statement_token1] = ACTIONS(8533), + [sym_reset_statement] = ACTIONS(8533), + [aux_sym_raise_event_statement_token1] = ACTIONS(8533), + [sym_stop_statement] = ACTIONS(8533), + [sym_beep_statement] = ACTIONS(8533), + [aux_sym_unload_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token2] = ACTIONS(8533), + [aux_sym_def_type_statement_token3] = ACTIONS(8533), + [aux_sym_def_type_statement_token4] = ACTIONS(8533), + [aux_sym_def_type_statement_token5] = ACTIONS(8533), + [aux_sym_def_type_statement_token6] = ACTIONS(8533), + [aux_sym_def_type_statement_token7] = ACTIONS(8533), + [aux_sym_def_type_statement_token8] = ACTIONS(8533), + [aux_sym_def_type_statement_token9] = ACTIONS(8533), + [aux_sym_def_type_statement_token10] = ACTIONS(8533), + [aux_sym_def_type_statement_token11] = ACTIONS(8533), + [aux_sym_def_type_statement_token12] = ACTIONS(8533), + [aux_sym_def_type_statement_token13] = ACTIONS(8533), + [aux_sym_def_type_statement_token14] = ACTIONS(8533), + [aux_sym_call_statement_token1] = ACTIONS(8533), + [sym__ambiguous_call_statement] = ACTIONS(8533), + [aux_sym_addressof_expression_token1] = ACTIONS(8533), + [aux_sym_type_of_expression_token1] = ACTIONS(8533), + [aux_sym_unary_expression_token1] = ACTIONS(8533), + [sym_string_literal] = ACTIONS(8535), + [sym_number_literal] = ACTIONS(8535), + [aux_sym_boolean_literal_token1] = ACTIONS(8533), + [aux_sym_boolean_literal_token2] = ACTIONS(8533), + [sym_nothing_literal] = ACTIONS(8533), + [sym_null_literal] = ACTIONS(8533), + [sym_empty_literal] = ACTIONS(8533), + [sym_date_literal] = ACTIONS(8535), + [anon_sym_POUND] = ACTIONS(8533), + }, + [STATE(3795)] = { + [sym_identifier] = ACTIONS(8467), + [sym_newline] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8467), + [aux_sym_frm_property_statement_token1] = ACTIONS(8467), + [anon_sym_DOT] = ACTIONS(8467), + [anon_sym_BANG] = ACTIONS(6089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8467), + [aux_sym_option_statement_token3] = ACTIONS(8467), + [aux_sym_type_declaration_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8467), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8467), + [aux_sym_enum_declaration_token1] = ACTIONS(8467), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8467), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8467), + [aux_sym_declare_function_statement_token1] = ACTIONS(8467), + [aux_sym_preprocessor_const_token1] = ACTIONS(8467), + [aux_sym__property_get_header_token1] = ACTIONS(8467), + [aux_sym_event_declaration_token1] = ACTIONS(8467), + [sym_static_modifier] = ACTIONS(8467), + [sym__dim_keyword] = ACTIONS(8467), + [sym__redim_keyword] = ACTIONS(8467), + [aux_sym_get_accessor_token1] = ACTIONS(8467), + [aux_sym_set_accessor_token1] = ACTIONS(8467), + [anon_sym_COMMA] = ACTIONS(6089), + [aux_sym_const_declaration_token1] = ACTIONS(8467), + [anon_sym_LPAREN] = ACTIONS(6089), + [aux_sym_as_type_clause_token2] = ACTIONS(8467), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8467), + [aux_sym_visibility_token1] = ACTIONS(8467), + [aux_sym_visibility_token2] = ACTIONS(8467), + [aux_sym_elseif_fragment_token1] = ACTIONS(8467), + [aux_sym_else_fragment_token1] = ACTIONS(8467), + [aux_sym_select_statement_token1] = ACTIONS(8467), + [aux_sym__for_header_token1] = ACTIONS(8467), + [aux_sym_do_statement_token1] = ACTIONS(8467), + [aux_sym_do_condition_token1] = ACTIONS(8467), + [aux_sym_with_statement_token1] = ACTIONS(8467), + [aux_sym_exit_statement_token1] = ACTIONS(8467), + [sym_end_statement] = ACTIONS(6089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8467), + [aux_sym_on_goto_statement_token2] = ACTIONS(8467), + [aux_sym_on_error_statement_token2] = ACTIONS(8467), + [sym__ambiguous_redim_statement] = ACTIONS(6089), + [aux_sym_erase_statement_token1] = ACTIONS(8467), + [aux_sym_open_statement_token1] = ACTIONS(8467), + [aux_sym_file_mode_token2] = ACTIONS(8467), + [aux_sym_file_access_token2] = ACTIONS(8467), + [aux_sym_file_lock_token2] = ACTIONS(8467), + [aux_sym_print_statement_token1] = ACTIONS(8467), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(8467), + [anon_sym_QMARK] = ACTIONS(6089), + [aux_sym_close_statement_token1] = ACTIONS(8467), + [aux_sym_put_statement_token1] = ACTIONS(8467), + [aux_sym_unlock_statement_token1] = ACTIONS(8467), + [aux_sym_seek_statement_token1] = ACTIONS(8467), + [sym_reset_statement] = ACTIONS(8467), + [aux_sym_raise_event_statement_token1] = ACTIONS(8467), + [sym_stop_statement] = ACTIONS(8467), + [sym_beep_statement] = ACTIONS(8467), + [aux_sym_unload_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token2] = ACTIONS(8467), + [aux_sym_def_type_statement_token3] = ACTIONS(8467), + [aux_sym_def_type_statement_token4] = ACTIONS(8467), + [aux_sym_def_type_statement_token5] = ACTIONS(8467), + [aux_sym_def_type_statement_token6] = ACTIONS(8467), + [aux_sym_def_type_statement_token7] = ACTIONS(8467), + [aux_sym_def_type_statement_token8] = ACTIONS(8467), + [aux_sym_def_type_statement_token9] = ACTIONS(8467), + [aux_sym_def_type_statement_token10] = ACTIONS(8467), + [aux_sym_def_type_statement_token11] = ACTIONS(8467), + [aux_sym_def_type_statement_token12] = ACTIONS(8467), + [aux_sym_def_type_statement_token13] = ACTIONS(8467), + [aux_sym_def_type_statement_token14] = ACTIONS(8467), + [aux_sym_call_statement_token1] = ACTIONS(8467), + [sym__ambiguous_call_statement] = ACTIONS(8467), + [aux_sym_addressof_expression_token1] = ACTIONS(8467), + [aux_sym_type_of_expression_token1] = ACTIONS(8467), + [aux_sym_unary_expression_token1] = ACTIONS(8467), + [sym_string_literal] = ACTIONS(6089), + [sym_number_literal] = ACTIONS(6089), + [aux_sym_boolean_literal_token1] = ACTIONS(8467), + [aux_sym_boolean_literal_token2] = ACTIONS(8467), + [sym_nothing_literal] = ACTIONS(8467), + [sym_null_literal] = ACTIONS(8467), + [sym_empty_literal] = ACTIONS(8467), + [sym_date_literal] = ACTIONS(6089), + [anon_sym_POUND] = ACTIONS(8467), + }, + [STATE(3796)] = { + [sym_identifier] = ACTIONS(5562), + [sym_newline] = ACTIONS(5558), + [anon_sym_COLON] = ACTIONS(5558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5562), + [aux_sym_frm_property_statement_token1] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(8382), + [anon_sym_BANG] = ACTIONS(8384), + [aux_sym__attribute_identifier_token1] = ACTIONS(5562), + [aux_sym_option_statement_token3] = ACTIONS(5562), + [aux_sym_type_declaration_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5562), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5562), + [aux_sym_enum_declaration_token1] = ACTIONS(5562), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5562), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5562), + [aux_sym_declare_function_statement_token1] = ACTIONS(5562), + [aux_sym_preprocessor_const_token1] = ACTIONS(5562), + [aux_sym__property_get_header_token1] = ACTIONS(5562), + [aux_sym_event_declaration_token1] = ACTIONS(5562), + [sym_static_modifier] = ACTIONS(5562), + [sym__dim_keyword] = ACTIONS(5562), + [sym__redim_keyword] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5562), + [aux_sym_set_accessor_token1] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5558), + [aux_sym_as_type_clause_token2] = ACTIONS(5562), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5562), + [aux_sym_visibility_token1] = ACTIONS(5562), + [aux_sym_visibility_token2] = ACTIONS(5562), + [aux_sym_elseif_fragment_token1] = ACTIONS(5562), + [aux_sym_else_fragment_token1] = ACTIONS(5562), + [aux_sym_select_statement_token1] = ACTIONS(5562), + [aux_sym__for_header_token1] = ACTIONS(5562), + [aux_sym_do_statement_token1] = ACTIONS(5562), + [aux_sym_do_condition_token1] = ACTIONS(5562), + [aux_sym_with_statement_token1] = ACTIONS(5562), + [aux_sym_exit_statement_token1] = ACTIONS(5562), + [sym_end_statement] = ACTIONS(5558), + [aux_sym_on_goto_statement_token1] = ACTIONS(5562), + [aux_sym_on_goto_statement_token2] = ACTIONS(5562), + [aux_sym_on_error_statement_token2] = ACTIONS(5562), + [sym__ambiguous_redim_statement] = ACTIONS(5558), + [aux_sym_erase_statement_token1] = ACTIONS(5562), + [aux_sym_open_statement_token1] = ACTIONS(5562), + [aux_sym_file_mode_token2] = ACTIONS(5562), + [aux_sym_file_access_token2] = ACTIONS(5562), + [aux_sym_file_lock_token2] = ACTIONS(5562), + [aux_sym_print_statement_token1] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5558), + [aux_sym_close_statement_token1] = ACTIONS(5562), + [aux_sym_put_statement_token1] = ACTIONS(5562), + [aux_sym_unlock_statement_token1] = ACTIONS(5562), + [aux_sym_seek_statement_token1] = ACTIONS(5562), + [sym_reset_statement] = ACTIONS(5562), + [aux_sym_raise_event_statement_token1] = ACTIONS(5562), + [sym_stop_statement] = ACTIONS(5562), + [sym_beep_statement] = ACTIONS(5562), + [aux_sym_unload_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token2] = ACTIONS(5562), + [aux_sym_def_type_statement_token3] = ACTIONS(5562), + [aux_sym_def_type_statement_token4] = ACTIONS(5562), + [aux_sym_def_type_statement_token5] = ACTIONS(5562), + [aux_sym_def_type_statement_token6] = ACTIONS(5562), + [aux_sym_def_type_statement_token7] = ACTIONS(5562), + [aux_sym_def_type_statement_token8] = ACTIONS(5562), + [aux_sym_def_type_statement_token9] = ACTIONS(5562), + [aux_sym_def_type_statement_token10] = ACTIONS(5562), + [aux_sym_def_type_statement_token11] = ACTIONS(5562), + [aux_sym_def_type_statement_token12] = ACTIONS(5562), + [aux_sym_def_type_statement_token13] = ACTIONS(5562), + [aux_sym_def_type_statement_token14] = ACTIONS(5562), + [aux_sym_call_statement_token1] = ACTIONS(5562), + [sym__ambiguous_call_statement] = ACTIONS(5562), + [aux_sym_addressof_expression_token1] = ACTIONS(5562), + [aux_sym_type_of_expression_token1] = ACTIONS(5562), + [aux_sym_unary_expression_token1] = ACTIONS(5562), + [sym_string_literal] = ACTIONS(5558), + [sym_number_literal] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5562), + [aux_sym_boolean_literal_token2] = ACTIONS(5562), + [sym_nothing_literal] = ACTIONS(5562), + [sym_null_literal] = ACTIONS(5562), + [sym_empty_literal] = ACTIONS(5562), + [sym_date_literal] = ACTIONS(5558), + [anon_sym_POUND] = ACTIONS(5562), + }, + [STATE(3797)] = { + [sym_identifier] = ACTIONS(8831), + [sym_newline] = ACTIONS(8833), + [anon_sym_COLON] = ACTIONS(8833), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8831), + [aux_sym_frm_property_statement_token1] = ACTIONS(8831), + [anon_sym_DOT] = ACTIONS(8831), + [anon_sym_BANG] = ACTIONS(8833), + [aux_sym__attribute_identifier_token1] = ACTIONS(8831), + [aux_sym_option_statement_token3] = ACTIONS(8831), + [aux_sym_type_declaration_token1] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8831), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8831), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8831), + [aux_sym_enum_declaration_token1] = ACTIONS(8831), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8831), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8831), + [aux_sym_declare_function_statement_token1] = ACTIONS(8831), + [aux_sym_preprocessor_const_token1] = ACTIONS(8831), + [aux_sym__property_get_header_token1] = ACTIONS(8831), + [aux_sym_event_declaration_token1] = ACTIONS(8831), + [sym_static_modifier] = ACTIONS(8831), + [sym__dim_keyword] = ACTIONS(8831), + [sym__redim_keyword] = ACTIONS(8831), + [aux_sym_get_accessor_token1] = ACTIONS(8831), + [aux_sym_set_accessor_token1] = ACTIONS(8831), + [anon_sym_COMMA] = ACTIONS(8833), + [aux_sym_const_declaration_token1] = ACTIONS(8831), + [anon_sym_LPAREN] = ACTIONS(8833), + [aux_sym_as_type_clause_token2] = ACTIONS(8831), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8831), + [aux_sym_visibility_token1] = ACTIONS(8831), + [aux_sym_visibility_token2] = ACTIONS(8831), + [aux_sym_elseif_fragment_token1] = ACTIONS(8831), + [aux_sym_else_fragment_token1] = ACTIONS(8831), + [aux_sym_select_statement_token1] = ACTIONS(8831), + [aux_sym__for_header_token1] = ACTIONS(8831), + [aux_sym_do_statement_token1] = ACTIONS(8831), + [aux_sym_do_condition_token1] = ACTIONS(8831), + [aux_sym_with_statement_token1] = ACTIONS(8831), + [aux_sym_exit_statement_token1] = ACTIONS(8831), + [sym_end_statement] = ACTIONS(8833), + [aux_sym_on_goto_statement_token1] = ACTIONS(8831), + [aux_sym_on_goto_statement_token2] = ACTIONS(8831), + [aux_sym_on_error_statement_token2] = ACTIONS(8831), + [sym__ambiguous_redim_statement] = ACTIONS(8833), + [aux_sym_erase_statement_token1] = ACTIONS(8831), + [aux_sym_open_statement_token1] = ACTIONS(8831), + [aux_sym_file_mode_token2] = ACTIONS(8831), + [aux_sym_file_access_token2] = ACTIONS(8831), + [aux_sym_file_lock_token2] = ACTIONS(8831), + [aux_sym_print_statement_token1] = ACTIONS(8831), + [anon_sym_PLUS] = ACTIONS(8833), + [anon_sym_DASH] = ACTIONS(8831), + [anon_sym_QMARK] = ACTIONS(8833), + [aux_sym_close_statement_token1] = ACTIONS(8831), + [aux_sym_put_statement_token1] = ACTIONS(8831), + [aux_sym_unlock_statement_token1] = ACTIONS(8831), + [aux_sym_seek_statement_token1] = ACTIONS(8831), + [sym_reset_statement] = ACTIONS(8831), + [aux_sym_raise_event_statement_token1] = ACTIONS(8831), + [sym_stop_statement] = ACTIONS(8831), + [sym_beep_statement] = ACTIONS(8831), + [aux_sym_unload_statement_token1] = ACTIONS(8831), + [aux_sym_def_type_statement_token1] = ACTIONS(8831), + [aux_sym_def_type_statement_token2] = ACTIONS(8831), + [aux_sym_def_type_statement_token3] = ACTIONS(8831), + [aux_sym_def_type_statement_token4] = ACTIONS(8831), + [aux_sym_def_type_statement_token5] = ACTIONS(8831), + [aux_sym_def_type_statement_token6] = ACTIONS(8831), + [aux_sym_def_type_statement_token7] = ACTIONS(8831), + [aux_sym_def_type_statement_token8] = ACTIONS(8831), + [aux_sym_def_type_statement_token9] = ACTIONS(8831), + [aux_sym_def_type_statement_token10] = ACTIONS(8831), + [aux_sym_def_type_statement_token11] = ACTIONS(8831), + [aux_sym_def_type_statement_token12] = ACTIONS(8831), + [aux_sym_def_type_statement_token13] = ACTIONS(8831), + [aux_sym_def_type_statement_token14] = ACTIONS(8831), + [aux_sym_call_statement_token1] = ACTIONS(8831), + [sym__ambiguous_call_statement] = ACTIONS(8831), + [aux_sym_addressof_expression_token1] = ACTIONS(8831), + [aux_sym_type_of_expression_token1] = ACTIONS(8831), + [aux_sym_unary_expression_token1] = ACTIONS(8831), + [sym_string_literal] = ACTIONS(8833), + [sym_number_literal] = ACTIONS(8833), + [aux_sym_boolean_literal_token1] = ACTIONS(8831), + [aux_sym_boolean_literal_token2] = ACTIONS(8831), + [sym_nothing_literal] = ACTIONS(8831), + [sym_null_literal] = ACTIONS(8831), + [sym_empty_literal] = ACTIONS(8831), + [sym_date_literal] = ACTIONS(8833), + [anon_sym_POUND] = ACTIONS(8831), + }, + [STATE(3798)] = { + [sym_identifier] = ACTIONS(8835), + [sym_newline] = ACTIONS(8837), + [anon_sym_COLON] = ACTIONS(8837), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8835), + [aux_sym_frm_property_statement_token1] = ACTIONS(8835), + [anon_sym_DOT] = ACTIONS(8835), + [anon_sym_BANG] = ACTIONS(8837), + [aux_sym__attribute_identifier_token1] = ACTIONS(8835), + [aux_sym_option_statement_token3] = ACTIONS(8835), + [aux_sym_type_declaration_token1] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8835), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8835), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8835), + [aux_sym_enum_declaration_token1] = ACTIONS(8835), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8835), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8835), + [aux_sym_declare_function_statement_token1] = ACTIONS(8835), + [aux_sym_preprocessor_const_token1] = ACTIONS(8835), + [aux_sym__property_get_header_token1] = ACTIONS(8835), + [aux_sym_event_declaration_token1] = ACTIONS(8835), + [sym_static_modifier] = ACTIONS(8835), + [sym__dim_keyword] = ACTIONS(8835), + [sym__redim_keyword] = ACTIONS(8835), + [aux_sym_get_accessor_token1] = ACTIONS(8835), + [aux_sym_set_accessor_token1] = ACTIONS(8835), + [anon_sym_COMMA] = ACTIONS(8837), + [aux_sym_const_declaration_token1] = ACTIONS(8835), + [anon_sym_LPAREN] = ACTIONS(8837), + [aux_sym_as_type_clause_token2] = ACTIONS(8835), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8835), + [aux_sym_visibility_token1] = ACTIONS(8835), + [aux_sym_visibility_token2] = ACTIONS(8835), + [aux_sym_elseif_fragment_token1] = ACTIONS(8835), + [aux_sym_else_fragment_token1] = ACTIONS(8835), + [aux_sym_select_statement_token1] = ACTIONS(8835), + [aux_sym__for_header_token1] = ACTIONS(8835), + [aux_sym_do_statement_token1] = ACTIONS(8835), + [aux_sym_do_condition_token1] = ACTIONS(8835), + [aux_sym_with_statement_token1] = ACTIONS(8835), + [aux_sym_exit_statement_token1] = ACTIONS(8835), + [sym_end_statement] = ACTIONS(8837), + [aux_sym_on_goto_statement_token1] = ACTIONS(8835), + [aux_sym_on_goto_statement_token2] = ACTIONS(8835), + [aux_sym_on_error_statement_token2] = ACTIONS(8835), + [sym__ambiguous_redim_statement] = ACTIONS(8837), + [aux_sym_erase_statement_token1] = ACTIONS(8835), + [aux_sym_open_statement_token1] = ACTIONS(8835), + [aux_sym_file_mode_token2] = ACTIONS(8835), + [aux_sym_file_access_token2] = ACTIONS(8835), + [aux_sym_file_lock_token2] = ACTIONS(8835), + [aux_sym_print_statement_token1] = ACTIONS(8835), + [anon_sym_PLUS] = ACTIONS(8837), + [anon_sym_DASH] = ACTIONS(8835), + [anon_sym_QMARK] = ACTIONS(8837), + [aux_sym_close_statement_token1] = ACTIONS(8835), + [aux_sym_put_statement_token1] = ACTIONS(8835), + [aux_sym_unlock_statement_token1] = ACTIONS(8835), + [aux_sym_seek_statement_token1] = ACTIONS(8835), + [sym_reset_statement] = ACTIONS(8835), + [aux_sym_raise_event_statement_token1] = ACTIONS(8835), + [sym_stop_statement] = ACTIONS(8835), + [sym_beep_statement] = ACTIONS(8835), + [aux_sym_unload_statement_token1] = ACTIONS(8835), + [aux_sym_def_type_statement_token1] = ACTIONS(8835), + [aux_sym_def_type_statement_token2] = ACTIONS(8835), + [aux_sym_def_type_statement_token3] = ACTIONS(8835), + [aux_sym_def_type_statement_token4] = ACTIONS(8835), + [aux_sym_def_type_statement_token5] = ACTIONS(8835), + [aux_sym_def_type_statement_token6] = ACTIONS(8835), + [aux_sym_def_type_statement_token7] = ACTIONS(8835), + [aux_sym_def_type_statement_token8] = ACTIONS(8835), + [aux_sym_def_type_statement_token9] = ACTIONS(8835), + [aux_sym_def_type_statement_token10] = ACTIONS(8835), + [aux_sym_def_type_statement_token11] = ACTIONS(8835), + [aux_sym_def_type_statement_token12] = ACTIONS(8835), + [aux_sym_def_type_statement_token13] = ACTIONS(8835), + [aux_sym_def_type_statement_token14] = ACTIONS(8835), + [aux_sym_call_statement_token1] = ACTIONS(8835), + [sym__ambiguous_call_statement] = ACTIONS(8835), + [aux_sym_addressof_expression_token1] = ACTIONS(8835), + [aux_sym_type_of_expression_token1] = ACTIONS(8835), + [aux_sym_unary_expression_token1] = ACTIONS(8835), + [sym_string_literal] = ACTIONS(8837), + [sym_number_literal] = ACTIONS(8837), + [aux_sym_boolean_literal_token1] = ACTIONS(8835), + [aux_sym_boolean_literal_token2] = ACTIONS(8835), + [sym_nothing_literal] = ACTIONS(8835), + [sym_null_literal] = ACTIONS(8835), + [sym_empty_literal] = ACTIONS(8835), + [sym_date_literal] = ACTIONS(8837), + [anon_sym_POUND] = ACTIONS(8835), + }, + [STATE(3799)] = { + [sym_identifier] = ACTIONS(8839), + [sym_newline] = ACTIONS(8841), + [anon_sym_COLON] = ACTIONS(8841), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8839), + [aux_sym_frm_property_statement_token1] = ACTIONS(8839), + [anon_sym_DOT] = ACTIONS(8839), + [anon_sym_BANG] = ACTIONS(8841), + [aux_sym__attribute_identifier_token1] = ACTIONS(8839), + [aux_sym_option_statement_token3] = ACTIONS(8839), + [aux_sym_type_declaration_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8839), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8839), + [aux_sym_enum_declaration_token1] = ACTIONS(8839), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8839), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8839), + [aux_sym_declare_function_statement_token1] = ACTIONS(8839), + [aux_sym_preprocessor_const_token1] = ACTIONS(8839), + [aux_sym__property_get_header_token1] = ACTIONS(8839), + [aux_sym_event_declaration_token1] = ACTIONS(8839), + [sym_static_modifier] = ACTIONS(8839), + [sym__dim_keyword] = ACTIONS(8839), + [sym__redim_keyword] = ACTIONS(8839), + [aux_sym_get_accessor_token1] = ACTIONS(8839), + [aux_sym_set_accessor_token1] = ACTIONS(8839), + [aux_sym_const_declaration_token1] = ACTIONS(8839), + [anon_sym_LPAREN] = ACTIONS(8841), + [aux_sym_as_type_clause_token2] = ACTIONS(8839), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8839), + [aux_sym_visibility_token1] = ACTIONS(8839), + [aux_sym_visibility_token2] = ACTIONS(8839), + [aux_sym_elseif_fragment_token1] = ACTIONS(8839), + [aux_sym_else_fragment_token1] = ACTIONS(8839), + [aux_sym_select_statement_token1] = ACTIONS(8839), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8839), + [aux_sym__for_header_token1] = ACTIONS(8839), + [aux_sym_do_statement_token1] = ACTIONS(8839), + [aux_sym_do_condition_token1] = ACTIONS(8839), + [aux_sym_with_statement_token1] = ACTIONS(8839), + [aux_sym_exit_statement_token1] = ACTIONS(8839), + [sym_end_statement] = ACTIONS(8841), + [aux_sym_on_goto_statement_token1] = ACTIONS(8839), + [aux_sym_on_goto_statement_token2] = ACTIONS(8839), + [aux_sym_on_error_statement_token2] = ACTIONS(8839), + [sym__ambiguous_redim_statement] = ACTIONS(8841), + [aux_sym_erase_statement_token1] = ACTIONS(8839), + [aux_sym_open_statement_token1] = ACTIONS(8839), + [aux_sym_file_mode_token2] = ACTIONS(8839), + [aux_sym_file_access_token2] = ACTIONS(8839), + [aux_sym_file_lock_token2] = ACTIONS(8839), + [aux_sym_print_statement_token1] = ACTIONS(8839), + [anon_sym_PLUS] = ACTIONS(8841), + [anon_sym_DASH] = ACTIONS(8839), + [anon_sym_QMARK] = ACTIONS(8841), + [aux_sym_close_statement_token1] = ACTIONS(8839), + [aux_sym_put_statement_token1] = ACTIONS(8839), + [aux_sym_unlock_statement_token1] = ACTIONS(8839), + [aux_sym_seek_statement_token1] = ACTIONS(8839), + [sym_reset_statement] = ACTIONS(8839), + [aux_sym_raise_event_statement_token1] = ACTIONS(8839), + [sym_stop_statement] = ACTIONS(8839), + [sym_beep_statement] = ACTIONS(8839), + [aux_sym_unload_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token2] = ACTIONS(8839), + [aux_sym_def_type_statement_token3] = ACTIONS(8839), + [aux_sym_def_type_statement_token4] = ACTIONS(8839), + [aux_sym_def_type_statement_token5] = ACTIONS(8839), + [aux_sym_def_type_statement_token6] = ACTIONS(8839), + [aux_sym_def_type_statement_token7] = ACTIONS(8839), + [aux_sym_def_type_statement_token8] = ACTIONS(8839), + [aux_sym_def_type_statement_token9] = ACTIONS(8839), + [aux_sym_def_type_statement_token10] = ACTIONS(8839), + [aux_sym_def_type_statement_token11] = ACTIONS(8839), + [aux_sym_def_type_statement_token12] = ACTIONS(8839), + [aux_sym_def_type_statement_token13] = ACTIONS(8839), + [aux_sym_def_type_statement_token14] = ACTIONS(8839), + [aux_sym_call_statement_token1] = ACTIONS(8839), + [sym__ambiguous_call_statement] = ACTIONS(8839), + [aux_sym_addressof_expression_token1] = ACTIONS(8839), + [aux_sym_type_of_expression_token1] = ACTIONS(8839), + [aux_sym_unary_expression_token1] = ACTIONS(8839), + [sym_string_literal] = ACTIONS(8841), + [sym_number_literal] = ACTIONS(8841), + [aux_sym_boolean_literal_token1] = ACTIONS(8839), + [aux_sym_boolean_literal_token2] = ACTIONS(8839), + [sym_nothing_literal] = ACTIONS(8839), + [sym_null_literal] = ACTIONS(8839), + [sym_empty_literal] = ACTIONS(8839), + [sym_date_literal] = ACTIONS(8841), + [anon_sym_POUND] = ACTIONS(8839), + }, + [STATE(3800)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_declaration_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4593), + [aux_sym_enum_declaration_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4593), + [aux_sym_declare_function_statement_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [aux_sym__property_get_header_token1] = ACTIONS(4593), + [aux_sym_event_declaration_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(3801)] = { + [sym_argument_list] = STATE(3950), + [sym_identifier] = ACTIONS(8843), + [sym_newline] = ACTIONS(8845), + [anon_sym_COLON] = ACTIONS(8845), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8843), + [aux_sym_frm_property_statement_token1] = ACTIONS(8843), + [anon_sym_DOT] = ACTIONS(8843), + [anon_sym_BANG] = ACTIONS(8845), + [aux_sym__attribute_identifier_token1] = ACTIONS(8843), + [aux_sym_option_statement_token3] = ACTIONS(8843), + [aux_sym_type_declaration_token1] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8843), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8843), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8843), + [aux_sym_enum_declaration_token1] = ACTIONS(8843), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8843), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8843), + [aux_sym_declare_function_statement_token1] = ACTIONS(8843), + [aux_sym_preprocessor_const_token1] = ACTIONS(8843), + [aux_sym__property_get_header_token1] = ACTIONS(8843), + [aux_sym_event_declaration_token1] = ACTIONS(8843), + [sym_static_modifier] = ACTIONS(8843), + [sym__dim_keyword] = ACTIONS(8843), + [sym__redim_keyword] = ACTIONS(8843), + [aux_sym_get_accessor_token1] = ACTIONS(8843), + [aux_sym_set_accessor_token1] = ACTIONS(8843), + [aux_sym_const_declaration_token1] = ACTIONS(8843), + [anon_sym_LPAREN] = ACTIONS(8372), + [aux_sym_as_type_clause_token2] = ACTIONS(8843), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8843), + [aux_sym_visibility_token1] = ACTIONS(8843), + [aux_sym_visibility_token2] = ACTIONS(8843), + [aux_sym_elseif_fragment_token1] = ACTIONS(8843), + [aux_sym_else_fragment_token1] = ACTIONS(8843), + [aux_sym_select_statement_token1] = ACTIONS(8843), + [aux_sym__for_header_token1] = ACTIONS(8843), + [aux_sym_do_statement_token1] = ACTIONS(8843), + [aux_sym_do_condition_token1] = ACTIONS(8843), + [aux_sym_with_statement_token1] = ACTIONS(8843), + [aux_sym_exit_statement_token1] = ACTIONS(8843), + [sym_end_statement] = ACTIONS(8845), + [aux_sym_on_goto_statement_token1] = ACTIONS(8843), + [aux_sym_on_goto_statement_token2] = ACTIONS(8843), + [aux_sym_on_error_statement_token2] = ACTIONS(8843), + [sym__ambiguous_redim_statement] = ACTIONS(8845), + [aux_sym_erase_statement_token1] = ACTIONS(8843), + [aux_sym_open_statement_token1] = ACTIONS(8843), + [aux_sym_file_mode_token2] = ACTIONS(8843), + [aux_sym_file_access_token2] = ACTIONS(8843), + [aux_sym_file_lock_token2] = ACTIONS(8843), + [aux_sym_print_statement_token1] = ACTIONS(8843), + [anon_sym_PLUS] = ACTIONS(8845), + [anon_sym_DASH] = ACTIONS(8843), + [anon_sym_QMARK] = ACTIONS(8845), + [aux_sym_close_statement_token1] = ACTIONS(8843), + [aux_sym_put_statement_token1] = ACTIONS(8843), + [aux_sym_unlock_statement_token1] = ACTIONS(8843), + [aux_sym_seek_statement_token1] = ACTIONS(8843), + [sym_reset_statement] = ACTIONS(8843), + [aux_sym_raise_event_statement_token1] = ACTIONS(8843), + [sym_stop_statement] = ACTIONS(8843), + [sym_beep_statement] = ACTIONS(8843), + [aux_sym_unload_statement_token1] = ACTIONS(8843), + [aux_sym_def_type_statement_token1] = ACTIONS(8843), + [aux_sym_def_type_statement_token2] = ACTIONS(8843), + [aux_sym_def_type_statement_token3] = ACTIONS(8843), + [aux_sym_def_type_statement_token4] = ACTIONS(8843), + [aux_sym_def_type_statement_token5] = ACTIONS(8843), + [aux_sym_def_type_statement_token6] = ACTIONS(8843), + [aux_sym_def_type_statement_token7] = ACTIONS(8843), + [aux_sym_def_type_statement_token8] = ACTIONS(8843), + [aux_sym_def_type_statement_token9] = ACTIONS(8843), + [aux_sym_def_type_statement_token10] = ACTIONS(8843), + [aux_sym_def_type_statement_token11] = ACTIONS(8843), + [aux_sym_def_type_statement_token12] = ACTIONS(8843), + [aux_sym_def_type_statement_token13] = ACTIONS(8843), + [aux_sym_def_type_statement_token14] = ACTIONS(8843), + [aux_sym_call_statement_token1] = ACTIONS(8843), + [sym__ambiguous_call_statement] = ACTIONS(8843), + [aux_sym_addressof_expression_token1] = ACTIONS(8843), + [aux_sym_type_of_expression_token1] = ACTIONS(8843), + [aux_sym_unary_expression_token1] = ACTIONS(8843), + [sym_string_literal] = ACTIONS(8845), + [sym_number_literal] = ACTIONS(8845), + [aux_sym_boolean_literal_token1] = ACTIONS(8843), + [aux_sym_boolean_literal_token2] = ACTIONS(8843), + [sym_nothing_literal] = ACTIONS(8843), + [sym_null_literal] = ACTIONS(8843), + [sym_empty_literal] = ACTIONS(8843), + [sym_date_literal] = ACTIONS(8845), + [anon_sym_POUND] = ACTIONS(8843), + }, + [STATE(3802)] = { + [sym_identifier] = ACTIONS(8443), + [sym_newline] = ACTIONS(8445), + [anon_sym_COLON] = ACTIONS(8445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8443), + [aux_sym_frm_property_statement_token1] = ACTIONS(8443), + [anon_sym_DOT] = ACTIONS(8443), + [anon_sym_BANG] = ACTIONS(8445), + [aux_sym__attribute_identifier_token1] = ACTIONS(8443), + [aux_sym_option_statement_token3] = ACTIONS(8443), + [aux_sym_type_declaration_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8443), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8443), + [aux_sym_enum_declaration_token1] = ACTIONS(8443), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8443), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8443), + [aux_sym_declare_function_statement_token1] = ACTIONS(8443), + [aux_sym_preprocessor_const_token1] = ACTIONS(8443), + [aux_sym__property_get_header_token1] = ACTIONS(8443), + [aux_sym_event_declaration_token1] = ACTIONS(8443), + [sym_static_modifier] = ACTIONS(8443), + [sym__dim_keyword] = ACTIONS(8443), + [sym__redim_keyword] = ACTIONS(8443), + [aux_sym_get_accessor_token1] = ACTIONS(8443), + [aux_sym_set_accessor_token1] = ACTIONS(8443), + [anon_sym_COMMA] = ACTIONS(8445), + [aux_sym_const_declaration_token1] = ACTIONS(8443), + [anon_sym_LPAREN] = ACTIONS(8445), + [aux_sym_as_type_clause_token2] = ACTIONS(8443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8443), + [aux_sym_visibility_token1] = ACTIONS(8443), + [aux_sym_visibility_token2] = ACTIONS(8443), + [aux_sym_elseif_fragment_token1] = ACTIONS(8443), + [aux_sym_else_fragment_token1] = ACTIONS(8443), + [aux_sym_select_statement_token1] = ACTIONS(8443), + [aux_sym__for_header_token1] = ACTIONS(8443), + [aux_sym_do_statement_token1] = ACTIONS(8443), + [aux_sym_do_condition_token1] = ACTIONS(8443), + [aux_sym_with_statement_token1] = ACTIONS(8443), + [aux_sym_exit_statement_token1] = ACTIONS(8443), + [sym_end_statement] = ACTIONS(8445), + [aux_sym_on_goto_statement_token1] = ACTIONS(8443), + [aux_sym_on_goto_statement_token2] = ACTIONS(8443), + [aux_sym_on_error_statement_token2] = ACTIONS(8443), + [sym__ambiguous_redim_statement] = ACTIONS(8445), + [aux_sym_erase_statement_token1] = ACTIONS(8443), + [aux_sym_open_statement_token1] = ACTIONS(8443), + [aux_sym_file_mode_token2] = ACTIONS(8443), + [aux_sym_file_access_token2] = ACTIONS(8443), + [aux_sym_file_lock_token2] = ACTIONS(8443), + [aux_sym_print_statement_token1] = ACTIONS(8443), + [anon_sym_PLUS] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8443), + [anon_sym_QMARK] = ACTIONS(8445), + [aux_sym_close_statement_token1] = ACTIONS(8443), + [aux_sym_put_statement_token1] = ACTIONS(8443), + [aux_sym_unlock_statement_token1] = ACTIONS(8443), + [aux_sym_seek_statement_token1] = ACTIONS(8443), + [sym_reset_statement] = ACTIONS(8443), + [aux_sym_raise_event_statement_token1] = ACTIONS(8443), + [sym_stop_statement] = ACTIONS(8443), + [sym_beep_statement] = ACTIONS(8443), + [aux_sym_unload_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token2] = ACTIONS(8443), + [aux_sym_def_type_statement_token3] = ACTIONS(8443), + [aux_sym_def_type_statement_token4] = ACTIONS(8443), + [aux_sym_def_type_statement_token5] = ACTIONS(8443), + [aux_sym_def_type_statement_token6] = ACTIONS(8443), + [aux_sym_def_type_statement_token7] = ACTIONS(8443), + [aux_sym_def_type_statement_token8] = ACTIONS(8443), + [aux_sym_def_type_statement_token9] = ACTIONS(8443), + [aux_sym_def_type_statement_token10] = ACTIONS(8443), + [aux_sym_def_type_statement_token11] = ACTIONS(8443), + [aux_sym_def_type_statement_token12] = ACTIONS(8443), + [aux_sym_def_type_statement_token13] = ACTIONS(8443), + [aux_sym_def_type_statement_token14] = ACTIONS(8443), + [aux_sym_call_statement_token1] = ACTIONS(8443), + [sym__ambiguous_call_statement] = ACTIONS(8443), + [aux_sym_addressof_expression_token1] = ACTIONS(8443), + [aux_sym_type_of_expression_token1] = ACTIONS(8443), + [aux_sym_unary_expression_token1] = ACTIONS(8443), + [sym_string_literal] = ACTIONS(8445), + [sym_number_literal] = ACTIONS(8445), + [aux_sym_boolean_literal_token1] = ACTIONS(8443), + [aux_sym_boolean_literal_token2] = ACTIONS(8443), + [sym_nothing_literal] = ACTIONS(8443), + [sym_null_literal] = ACTIONS(8443), + [sym_empty_literal] = ACTIONS(8443), + [sym_date_literal] = ACTIONS(8445), + [anon_sym_POUND] = ACTIONS(8443), + }, + [STATE(3803)] = { + [sym_initializer] = STATE(4310), + [sym_identifier] = ACTIONS(7710), + [sym_newline] = ACTIONS(7712), + [anon_sym_COLON] = ACTIONS(7712), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7710), + [aux_sym_frm_property_statement_token1] = ACTIONS(7710), + [anon_sym_EQ] = ACTIONS(7671), + [anon_sym_DOT] = ACTIONS(7710), + [anon_sym_BANG] = ACTIONS(7712), + [aux_sym__attribute_identifier_token1] = ACTIONS(7710), + [aux_sym_option_statement_token3] = ACTIONS(7710), + [aux_sym_type_declaration_token1] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7710), + [aux_sym_enum_declaration_token1] = ACTIONS(7710), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7710), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7710), + [aux_sym_declare_function_statement_token1] = ACTIONS(7710), + [aux_sym_preprocessor_const_token1] = ACTIONS(7710), + [aux_sym__property_get_header_token1] = ACTIONS(7710), + [aux_sym_event_declaration_token1] = ACTIONS(7710), + [sym_static_modifier] = ACTIONS(7710), + [sym__dim_keyword] = ACTIONS(7710), + [sym__redim_keyword] = ACTIONS(7710), + [aux_sym_get_accessor_token1] = ACTIONS(7710), + [aux_sym_set_accessor_token1] = ACTIONS(7710), + [anon_sym_COMMA] = ACTIONS(7712), + [aux_sym_const_declaration_token1] = ACTIONS(7710), + [anon_sym_LPAREN] = ACTIONS(7712), + [aux_sym_as_type_clause_token2] = ACTIONS(7710), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7710), + [aux_sym_visibility_token1] = ACTIONS(7710), + [aux_sym_visibility_token2] = ACTIONS(7710), + [aux_sym_elseif_fragment_token1] = ACTIONS(7710), + [aux_sym_else_fragment_token1] = ACTIONS(7710), + [aux_sym_select_statement_token1] = ACTIONS(7710), + [aux_sym__for_header_token1] = ACTIONS(7710), + [aux_sym_do_statement_token1] = ACTIONS(7710), + [aux_sym_do_condition_token1] = ACTIONS(7710), + [aux_sym_with_statement_token1] = ACTIONS(7710), + [aux_sym_exit_statement_token1] = ACTIONS(7710), + [sym_end_statement] = ACTIONS(7712), + [aux_sym_on_goto_statement_token1] = ACTIONS(7710), + [aux_sym_on_goto_statement_token2] = ACTIONS(7710), + [aux_sym_on_error_statement_token2] = ACTIONS(7710), + [sym__ambiguous_redim_statement] = ACTIONS(7712), + [aux_sym_erase_statement_token1] = ACTIONS(7710), + [aux_sym_open_statement_token1] = ACTIONS(7710), + [aux_sym_file_mode_token2] = ACTIONS(7710), + [aux_sym_file_access_token2] = ACTIONS(7710), + [aux_sym_file_lock_token2] = ACTIONS(7710), + [aux_sym_print_statement_token1] = ACTIONS(7710), + [anon_sym_PLUS] = ACTIONS(7712), + [anon_sym_DASH] = ACTIONS(7710), + [anon_sym_QMARK] = ACTIONS(7712), + [aux_sym_close_statement_token1] = ACTIONS(7710), + [aux_sym_put_statement_token1] = ACTIONS(7710), + [aux_sym_unlock_statement_token1] = ACTIONS(7710), + [aux_sym_seek_statement_token1] = ACTIONS(7710), + [sym_reset_statement] = ACTIONS(7710), + [aux_sym_raise_event_statement_token1] = ACTIONS(7710), + [sym_stop_statement] = ACTIONS(7710), + [sym_beep_statement] = ACTIONS(7710), + [aux_sym_unload_statement_token1] = ACTIONS(7710), + [aux_sym_def_type_statement_token1] = ACTIONS(7710), + [aux_sym_def_type_statement_token2] = ACTIONS(7710), + [aux_sym_def_type_statement_token3] = ACTIONS(7710), + [aux_sym_def_type_statement_token4] = ACTIONS(7710), + [aux_sym_def_type_statement_token5] = ACTIONS(7710), + [aux_sym_def_type_statement_token6] = ACTIONS(7710), + [aux_sym_def_type_statement_token7] = ACTIONS(7710), + [aux_sym_def_type_statement_token8] = ACTIONS(7710), + [aux_sym_def_type_statement_token9] = ACTIONS(7710), + [aux_sym_def_type_statement_token10] = ACTIONS(7710), + [aux_sym_def_type_statement_token11] = ACTIONS(7710), + [aux_sym_def_type_statement_token12] = ACTIONS(7710), + [aux_sym_def_type_statement_token13] = ACTIONS(7710), + [aux_sym_def_type_statement_token14] = ACTIONS(7710), + [aux_sym_call_statement_token1] = ACTIONS(7710), + [sym__ambiguous_call_statement] = ACTIONS(7710), + [aux_sym_addressof_expression_token1] = ACTIONS(7710), + [aux_sym_type_of_expression_token1] = ACTIONS(7710), + [aux_sym_unary_expression_token1] = ACTIONS(7710), + [sym_string_literal] = ACTIONS(7712), + [sym_number_literal] = ACTIONS(7712), + [aux_sym_boolean_literal_token1] = ACTIONS(7710), + [aux_sym_boolean_literal_token2] = ACTIONS(7710), + [sym_nothing_literal] = ACTIONS(7710), + [sym_null_literal] = ACTIONS(7710), + [sym_empty_literal] = ACTIONS(7710), + [sym_date_literal] = ACTIONS(7712), + [anon_sym_POUND] = ACTIONS(7710), + }, + [STATE(3804)] = { + [sym_identifier] = ACTIONS(8847), + [sym_newline] = ACTIONS(8849), + [anon_sym_COLON] = ACTIONS(8849), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8847), + [aux_sym_frm_property_statement_token1] = ACTIONS(8847), + [anon_sym_DOT] = ACTIONS(8847), + [anon_sym_BANG] = ACTIONS(8849), + [aux_sym__attribute_identifier_token1] = ACTIONS(8847), + [aux_sym_option_statement_token3] = ACTIONS(8847), + [aux_sym_type_declaration_token1] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8847), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8847), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8847), + [aux_sym_enum_declaration_token1] = ACTIONS(8847), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8847), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8847), + [aux_sym_declare_function_statement_token1] = ACTIONS(8847), + [aux_sym_preprocessor_const_token1] = ACTIONS(8847), + [aux_sym__property_get_header_token1] = ACTIONS(8847), + [aux_sym_event_declaration_token1] = ACTIONS(8847), + [sym_static_modifier] = ACTIONS(8847), + [sym__dim_keyword] = ACTIONS(8847), + [sym__redim_keyword] = ACTIONS(8847), + [aux_sym_get_accessor_token1] = ACTIONS(8847), + [aux_sym_set_accessor_token1] = ACTIONS(8847), + [anon_sym_COMMA] = ACTIONS(8849), + [aux_sym_const_declaration_token1] = ACTIONS(8847), + [anon_sym_LPAREN] = ACTIONS(8849), + [aux_sym_as_type_clause_token2] = ACTIONS(8847), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8847), + [aux_sym_visibility_token1] = ACTIONS(8847), + [aux_sym_visibility_token2] = ACTIONS(8847), + [aux_sym_elseif_fragment_token1] = ACTIONS(8847), + [aux_sym_else_fragment_token1] = ACTIONS(8847), + [aux_sym_select_statement_token1] = ACTIONS(8847), + [aux_sym__for_header_token1] = ACTIONS(8847), + [aux_sym_do_statement_token1] = ACTIONS(8847), + [aux_sym_do_condition_token1] = ACTIONS(8847), + [aux_sym_with_statement_token1] = ACTIONS(8847), + [aux_sym_exit_statement_token1] = ACTIONS(8847), + [sym_end_statement] = ACTIONS(8849), + [aux_sym_on_goto_statement_token1] = ACTIONS(8847), + [aux_sym_on_goto_statement_token2] = ACTIONS(8847), + [aux_sym_on_error_statement_token2] = ACTIONS(8847), + [sym__ambiguous_redim_statement] = ACTIONS(8849), + [aux_sym_erase_statement_token1] = ACTIONS(8847), + [aux_sym_open_statement_token1] = ACTIONS(8847), + [aux_sym_file_mode_token2] = ACTIONS(8847), + [aux_sym_file_access_token2] = ACTIONS(8847), + [aux_sym_file_lock_token2] = ACTIONS(8847), + [aux_sym_print_statement_token1] = ACTIONS(8847), + [anon_sym_PLUS] = ACTIONS(8849), + [anon_sym_DASH] = ACTIONS(8851), + [anon_sym_QMARK] = ACTIONS(8849), + [aux_sym_close_statement_token1] = ACTIONS(8847), + [aux_sym_put_statement_token1] = ACTIONS(8847), + [aux_sym_unlock_statement_token1] = ACTIONS(8847), + [aux_sym_seek_statement_token1] = ACTIONS(8847), + [sym_reset_statement] = ACTIONS(8847), + [aux_sym_raise_event_statement_token1] = ACTIONS(8847), + [sym_stop_statement] = ACTIONS(8847), + [sym_beep_statement] = ACTIONS(8847), + [aux_sym_unload_statement_token1] = ACTIONS(8847), + [aux_sym_def_type_statement_token1] = ACTIONS(8847), + [aux_sym_def_type_statement_token2] = ACTIONS(8847), + [aux_sym_def_type_statement_token3] = ACTIONS(8847), + [aux_sym_def_type_statement_token4] = ACTIONS(8847), + [aux_sym_def_type_statement_token5] = ACTIONS(8847), + [aux_sym_def_type_statement_token6] = ACTIONS(8847), + [aux_sym_def_type_statement_token7] = ACTIONS(8847), + [aux_sym_def_type_statement_token8] = ACTIONS(8847), + [aux_sym_def_type_statement_token9] = ACTIONS(8847), + [aux_sym_def_type_statement_token10] = ACTIONS(8847), + [aux_sym_def_type_statement_token11] = ACTIONS(8847), + [aux_sym_def_type_statement_token12] = ACTIONS(8847), + [aux_sym_def_type_statement_token13] = ACTIONS(8847), + [aux_sym_def_type_statement_token14] = ACTIONS(8847), + [aux_sym_call_statement_token1] = ACTIONS(8847), + [sym__ambiguous_call_statement] = ACTIONS(8847), + [aux_sym_addressof_expression_token1] = ACTIONS(8847), + [aux_sym_type_of_expression_token1] = ACTIONS(8847), + [aux_sym_unary_expression_token1] = ACTIONS(8847), + [sym_string_literal] = ACTIONS(8849), + [sym_number_literal] = ACTIONS(8849), + [aux_sym_boolean_literal_token1] = ACTIONS(8847), + [aux_sym_boolean_literal_token2] = ACTIONS(8847), + [sym_nothing_literal] = ACTIONS(8847), + [sym_null_literal] = ACTIONS(8847), + [sym_empty_literal] = ACTIONS(8847), + [sym_date_literal] = ACTIONS(8849), + [anon_sym_POUND] = ACTIONS(8847), + }, + [STATE(3805)] = { + [sym_identifier] = ACTIONS(8853), + [sym_newline] = ACTIONS(8855), + [anon_sym_COLON] = ACTIONS(8855), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8853), + [aux_sym_frm_property_statement_token1] = ACTIONS(8853), + [anon_sym_DOT] = ACTIONS(8853), + [anon_sym_BANG] = ACTIONS(8855), + [aux_sym__attribute_identifier_token1] = ACTIONS(8853), + [aux_sym_option_statement_token3] = ACTIONS(8853), + [aux_sym_type_declaration_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8853), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8853), + [aux_sym_enum_declaration_token1] = ACTIONS(8853), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8853), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8853), + [aux_sym_declare_function_statement_token1] = ACTIONS(8853), + [aux_sym_preprocessor_const_token1] = ACTIONS(8853), + [aux_sym__property_get_header_token1] = ACTIONS(8853), + [aux_sym_event_declaration_token1] = ACTIONS(8853), + [sym_static_modifier] = ACTIONS(8853), + [sym__dim_keyword] = ACTIONS(8853), + [sym__redim_keyword] = ACTIONS(8853), + [aux_sym_get_accessor_token1] = ACTIONS(8853), + [aux_sym_set_accessor_token1] = ACTIONS(8853), + [aux_sym_const_declaration_token1] = ACTIONS(8853), + [anon_sym_LPAREN] = ACTIONS(8855), + [aux_sym_as_type_clause_token2] = ACTIONS(8853), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8853), + [aux_sym_visibility_token1] = ACTIONS(8853), + [aux_sym_visibility_token2] = ACTIONS(8853), + [aux_sym_elseif_fragment_token1] = ACTIONS(8853), + [aux_sym_else_fragment_token1] = ACTIONS(8853), + [aux_sym_select_statement_token1] = ACTIONS(8853), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8853), + [aux_sym__for_header_token1] = ACTIONS(8853), + [aux_sym_do_statement_token1] = ACTIONS(8853), + [aux_sym_do_condition_token1] = ACTIONS(8853), + [aux_sym_with_statement_token1] = ACTIONS(8853), + [aux_sym_exit_statement_token1] = ACTIONS(8853), + [sym_end_statement] = ACTIONS(8855), + [aux_sym_on_goto_statement_token1] = ACTIONS(8853), + [aux_sym_on_goto_statement_token2] = ACTIONS(8853), + [aux_sym_on_error_statement_token2] = ACTIONS(8853), + [sym__ambiguous_redim_statement] = ACTIONS(8855), + [aux_sym_erase_statement_token1] = ACTIONS(8853), + [aux_sym_open_statement_token1] = ACTIONS(8853), + [aux_sym_file_mode_token2] = ACTIONS(8853), + [aux_sym_file_access_token2] = ACTIONS(8853), + [aux_sym_file_lock_token2] = ACTIONS(8853), + [aux_sym_print_statement_token1] = ACTIONS(8853), + [anon_sym_PLUS] = ACTIONS(8855), + [anon_sym_DASH] = ACTIONS(8853), + [anon_sym_QMARK] = ACTIONS(8855), + [aux_sym_close_statement_token1] = ACTIONS(8853), + [aux_sym_put_statement_token1] = ACTIONS(8853), + [aux_sym_unlock_statement_token1] = ACTIONS(8853), + [aux_sym_seek_statement_token1] = ACTIONS(8853), + [sym_reset_statement] = ACTIONS(8853), + [aux_sym_raise_event_statement_token1] = ACTIONS(8853), + [sym_stop_statement] = ACTIONS(8853), + [sym_beep_statement] = ACTIONS(8853), + [aux_sym_unload_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token2] = ACTIONS(8853), + [aux_sym_def_type_statement_token3] = ACTIONS(8853), + [aux_sym_def_type_statement_token4] = ACTIONS(8853), + [aux_sym_def_type_statement_token5] = ACTIONS(8853), + [aux_sym_def_type_statement_token6] = ACTIONS(8853), + [aux_sym_def_type_statement_token7] = ACTIONS(8853), + [aux_sym_def_type_statement_token8] = ACTIONS(8853), + [aux_sym_def_type_statement_token9] = ACTIONS(8853), + [aux_sym_def_type_statement_token10] = ACTIONS(8853), + [aux_sym_def_type_statement_token11] = ACTIONS(8853), + [aux_sym_def_type_statement_token12] = ACTIONS(8853), + [aux_sym_def_type_statement_token13] = ACTIONS(8853), + [aux_sym_def_type_statement_token14] = ACTIONS(8853), + [aux_sym_call_statement_token1] = ACTIONS(8853), + [sym__ambiguous_call_statement] = ACTIONS(8853), + [aux_sym_addressof_expression_token1] = ACTIONS(8853), + [aux_sym_type_of_expression_token1] = ACTIONS(8853), + [aux_sym_unary_expression_token1] = ACTIONS(8853), + [sym_string_literal] = ACTIONS(8855), + [sym_number_literal] = ACTIONS(8855), + [aux_sym_boolean_literal_token1] = ACTIONS(8853), + [aux_sym_boolean_literal_token2] = ACTIONS(8853), + [sym_nothing_literal] = ACTIONS(8853), + [sym_null_literal] = ACTIONS(8853), + [sym_empty_literal] = ACTIONS(8853), + [sym_date_literal] = ACTIONS(8855), + [anon_sym_POUND] = ACTIONS(8853), + }, + [STATE(3806)] = { + [sym_identifier] = ACTIONS(8857), + [sym_newline] = ACTIONS(8859), + [anon_sym_COLON] = ACTIONS(8859), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8857), + [aux_sym_frm_property_statement_token1] = ACTIONS(8857), + [anon_sym_DOT] = ACTIONS(8857), + [anon_sym_BANG] = ACTIONS(8859), + [aux_sym__attribute_identifier_token1] = ACTIONS(8857), + [aux_sym_option_statement_token3] = ACTIONS(8857), + [aux_sym_type_declaration_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8857), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8857), + [aux_sym_enum_declaration_token1] = ACTIONS(8857), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8857), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8857), + [aux_sym_declare_function_statement_token1] = ACTIONS(8857), + [aux_sym_preprocessor_const_token1] = ACTIONS(8857), + [aux_sym__property_get_header_token1] = ACTIONS(8857), + [aux_sym_event_declaration_token1] = ACTIONS(8857), + [sym_static_modifier] = ACTIONS(8857), + [sym__dim_keyword] = ACTIONS(8857), + [sym__redim_keyword] = ACTIONS(8857), + [aux_sym_get_accessor_token1] = ACTIONS(8857), + [aux_sym_set_accessor_token1] = ACTIONS(8857), + [aux_sym_const_declaration_token1] = ACTIONS(8857), + [anon_sym_LPAREN] = ACTIONS(8859), + [aux_sym_as_type_clause_token2] = ACTIONS(8857), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8857), + [aux_sym_visibility_token1] = ACTIONS(8857), + [aux_sym_visibility_token2] = ACTIONS(8857), + [aux_sym_elseif_fragment_token1] = ACTIONS(8857), + [aux_sym_else_fragment_token1] = ACTIONS(8857), + [aux_sym_select_statement_token1] = ACTIONS(8857), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8857), + [aux_sym__for_header_token1] = ACTIONS(8857), + [aux_sym_do_statement_token1] = ACTIONS(8857), + [aux_sym_do_condition_token1] = ACTIONS(8857), + [aux_sym_with_statement_token1] = ACTIONS(8857), + [aux_sym_exit_statement_token1] = ACTIONS(8857), + [sym_end_statement] = ACTIONS(8859), + [aux_sym_on_goto_statement_token1] = ACTIONS(8857), + [aux_sym_on_goto_statement_token2] = ACTIONS(8857), + [aux_sym_on_error_statement_token2] = ACTIONS(8857), + [sym__ambiguous_redim_statement] = ACTIONS(8859), + [aux_sym_erase_statement_token1] = ACTIONS(8857), + [aux_sym_open_statement_token1] = ACTIONS(8857), + [aux_sym_file_mode_token2] = ACTIONS(8857), + [aux_sym_file_access_token2] = ACTIONS(8857), + [aux_sym_file_lock_token2] = ACTIONS(8857), + [aux_sym_print_statement_token1] = ACTIONS(8857), + [anon_sym_PLUS] = ACTIONS(8859), + [anon_sym_DASH] = ACTIONS(8857), + [anon_sym_QMARK] = ACTIONS(8859), + [aux_sym_close_statement_token1] = ACTIONS(8857), + [aux_sym_put_statement_token1] = ACTIONS(8857), + [aux_sym_unlock_statement_token1] = ACTIONS(8857), + [aux_sym_seek_statement_token1] = ACTIONS(8857), + [sym_reset_statement] = ACTIONS(8857), + [aux_sym_raise_event_statement_token1] = ACTIONS(8857), + [sym_stop_statement] = ACTIONS(8857), + [sym_beep_statement] = ACTIONS(8857), + [aux_sym_unload_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token2] = ACTIONS(8857), + [aux_sym_def_type_statement_token3] = ACTIONS(8857), + [aux_sym_def_type_statement_token4] = ACTIONS(8857), + [aux_sym_def_type_statement_token5] = ACTIONS(8857), + [aux_sym_def_type_statement_token6] = ACTIONS(8857), + [aux_sym_def_type_statement_token7] = ACTIONS(8857), + [aux_sym_def_type_statement_token8] = ACTIONS(8857), + [aux_sym_def_type_statement_token9] = ACTIONS(8857), + [aux_sym_def_type_statement_token10] = ACTIONS(8857), + [aux_sym_def_type_statement_token11] = ACTIONS(8857), + [aux_sym_def_type_statement_token12] = ACTIONS(8857), + [aux_sym_def_type_statement_token13] = ACTIONS(8857), + [aux_sym_def_type_statement_token14] = ACTIONS(8857), + [aux_sym_call_statement_token1] = ACTIONS(8857), + [sym__ambiguous_call_statement] = ACTIONS(8857), + [aux_sym_addressof_expression_token1] = ACTIONS(8857), + [aux_sym_type_of_expression_token1] = ACTIONS(8857), + [aux_sym_unary_expression_token1] = ACTIONS(8857), + [sym_string_literal] = ACTIONS(8859), + [sym_number_literal] = ACTIONS(8859), + [aux_sym_boolean_literal_token1] = ACTIONS(8857), + [aux_sym_boolean_literal_token2] = ACTIONS(8857), + [sym_nothing_literal] = ACTIONS(8857), + [sym_null_literal] = ACTIONS(8857), + [sym_empty_literal] = ACTIONS(8857), + [sym_date_literal] = ACTIONS(8859), + [anon_sym_POUND] = ACTIONS(8857), + }, + [STATE(3807)] = { + [sym_identifier] = ACTIONS(8287), + [sym_newline] = ACTIONS(8289), + [anon_sym_COLON] = ACTIONS(8289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8287), + [aux_sym_frm_property_statement_token1] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8287), + [anon_sym_BANG] = ACTIONS(8289), + [aux_sym__attribute_identifier_token1] = ACTIONS(8287), + [aux_sym_option_statement_token3] = ACTIONS(8287), + [aux_sym_type_declaration_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8287), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8287), + [aux_sym_enum_declaration_token1] = ACTIONS(8287), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8287), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8287), + [aux_sym_declare_function_statement_token1] = ACTIONS(8287), + [aux_sym_preprocessor_const_token1] = ACTIONS(8287), + [aux_sym__property_get_header_token1] = ACTIONS(8287), + [aux_sym_event_declaration_token1] = ACTIONS(8287), + [sym_static_modifier] = ACTIONS(8287), + [sym__dim_keyword] = ACTIONS(8287), + [sym__redim_keyword] = ACTIONS(8287), + [aux_sym_get_accessor_token1] = ACTIONS(8287), + [aux_sym_set_accessor_token1] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8289), + [aux_sym_const_declaration_token1] = ACTIONS(8287), + [anon_sym_LPAREN] = ACTIONS(8289), + [aux_sym_as_type_clause_token2] = ACTIONS(8287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8287), + [aux_sym_visibility_token1] = ACTIONS(8287), + [aux_sym_visibility_token2] = ACTIONS(8287), + [aux_sym_elseif_fragment_token1] = ACTIONS(8287), + [aux_sym_else_fragment_token1] = ACTIONS(8287), + [aux_sym_select_statement_token1] = ACTIONS(8287), + [aux_sym__for_header_token1] = ACTIONS(8287), + [aux_sym_do_statement_token1] = ACTIONS(8287), + [aux_sym_do_condition_token1] = ACTIONS(8287), + [aux_sym_with_statement_token1] = ACTIONS(8287), + [aux_sym_exit_statement_token1] = ACTIONS(8287), + [sym_end_statement] = ACTIONS(8289), + [aux_sym_on_goto_statement_token1] = ACTIONS(8287), + [aux_sym_on_goto_statement_token2] = ACTIONS(8287), + [aux_sym_on_error_statement_token2] = ACTIONS(8287), + [sym__ambiguous_redim_statement] = ACTIONS(8289), + [aux_sym_erase_statement_token1] = ACTIONS(8287), + [aux_sym_open_statement_token1] = ACTIONS(8287), + [aux_sym_file_mode_token2] = ACTIONS(8287), + [aux_sym_file_access_token2] = ACTIONS(8287), + [aux_sym_file_lock_token2] = ACTIONS(8287), + [aux_sym_print_statement_token1] = ACTIONS(8287), + [anon_sym_PLUS] = ACTIONS(8289), + [anon_sym_DASH] = ACTIONS(8287), + [anon_sym_QMARK] = ACTIONS(8289), + [aux_sym_close_statement_token1] = ACTIONS(8287), + [aux_sym_put_statement_token1] = ACTIONS(8287), + [aux_sym_unlock_statement_token1] = ACTIONS(8287), + [aux_sym_seek_statement_token1] = ACTIONS(8287), + [sym_reset_statement] = ACTIONS(8287), + [aux_sym_raise_event_statement_token1] = ACTIONS(8287), + [sym_stop_statement] = ACTIONS(8287), + [sym_beep_statement] = ACTIONS(8287), + [aux_sym_unload_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token2] = ACTIONS(8287), + [aux_sym_def_type_statement_token3] = ACTIONS(8287), + [aux_sym_def_type_statement_token4] = ACTIONS(8287), + [aux_sym_def_type_statement_token5] = ACTIONS(8287), + [aux_sym_def_type_statement_token6] = ACTIONS(8287), + [aux_sym_def_type_statement_token7] = ACTIONS(8287), + [aux_sym_def_type_statement_token8] = ACTIONS(8287), + [aux_sym_def_type_statement_token9] = ACTIONS(8287), + [aux_sym_def_type_statement_token10] = ACTIONS(8287), + [aux_sym_def_type_statement_token11] = ACTIONS(8287), + [aux_sym_def_type_statement_token12] = ACTIONS(8287), + [aux_sym_def_type_statement_token13] = ACTIONS(8287), + [aux_sym_def_type_statement_token14] = ACTIONS(8287), + [aux_sym_call_statement_token1] = ACTIONS(8287), + [sym__ambiguous_call_statement] = ACTIONS(8287), + [aux_sym_addressof_expression_token1] = ACTIONS(8287), + [aux_sym_type_of_expression_token1] = ACTIONS(8287), + [aux_sym_unary_expression_token1] = ACTIONS(8287), + [sym_string_literal] = ACTIONS(8289), + [sym_number_literal] = ACTIONS(8289), + [aux_sym_boolean_literal_token1] = ACTIONS(8287), + [aux_sym_boolean_literal_token2] = ACTIONS(8287), + [sym_nothing_literal] = ACTIONS(8287), + [sym_null_literal] = ACTIONS(8287), + [sym_empty_literal] = ACTIONS(8287), + [sym_date_literal] = ACTIONS(8289), + [anon_sym_POUND] = ACTIONS(8287), + }, + [STATE(3808)] = { + [sym_identifier] = ACTIONS(8861), + [sym_newline] = ACTIONS(8863), + [anon_sym_COLON] = ACTIONS(8863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8861), + [aux_sym_frm_property_statement_token1] = ACTIONS(8861), + [anon_sym_DOT] = ACTIONS(8861), + [anon_sym_BANG] = ACTIONS(8863), + [aux_sym__attribute_identifier_token1] = ACTIONS(8861), + [aux_sym_option_statement_token3] = ACTIONS(8861), + [aux_sym_type_declaration_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8861), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8861), + [aux_sym_enum_declaration_token1] = ACTIONS(8861), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8861), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8861), + [aux_sym_declare_function_statement_token1] = ACTIONS(8861), + [aux_sym_preprocessor_const_token1] = ACTIONS(8861), + [aux_sym__property_get_header_token1] = ACTIONS(8861), + [aux_sym_event_declaration_token1] = ACTIONS(8861), + [sym_static_modifier] = ACTIONS(8861), + [sym__dim_keyword] = ACTIONS(8861), + [sym__redim_keyword] = ACTIONS(8861), + [aux_sym_get_accessor_token1] = ACTIONS(8861), + [aux_sym_set_accessor_token1] = ACTIONS(8861), + [aux_sym_const_declaration_token1] = ACTIONS(8861), + [anon_sym_LPAREN] = ACTIONS(8863), + [aux_sym_as_type_clause_token2] = ACTIONS(8861), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8861), + [aux_sym_visibility_token1] = ACTIONS(8861), + [aux_sym_visibility_token2] = ACTIONS(8861), + [aux_sym_elseif_fragment_token1] = ACTIONS(8861), + [aux_sym_else_fragment_token1] = ACTIONS(8861), + [aux_sym_select_statement_token1] = ACTIONS(8861), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8861), + [aux_sym__for_header_token1] = ACTIONS(8861), + [aux_sym_do_statement_token1] = ACTIONS(8861), + [aux_sym_do_condition_token1] = ACTIONS(8861), + [aux_sym_with_statement_token1] = ACTIONS(8861), + [aux_sym_exit_statement_token1] = ACTIONS(8861), + [sym_end_statement] = ACTIONS(8863), + [aux_sym_on_goto_statement_token1] = ACTIONS(8861), + [aux_sym_on_goto_statement_token2] = ACTIONS(8861), + [aux_sym_on_error_statement_token2] = ACTIONS(8861), + [sym__ambiguous_redim_statement] = ACTIONS(8863), + [aux_sym_erase_statement_token1] = ACTIONS(8861), + [aux_sym_open_statement_token1] = ACTIONS(8861), + [aux_sym_file_mode_token2] = ACTIONS(8861), + [aux_sym_file_access_token2] = ACTIONS(8861), + [aux_sym_file_lock_token2] = ACTIONS(8861), + [aux_sym_print_statement_token1] = ACTIONS(8861), + [anon_sym_PLUS] = ACTIONS(8863), + [anon_sym_DASH] = ACTIONS(8861), + [anon_sym_QMARK] = ACTIONS(8863), + [aux_sym_close_statement_token1] = ACTIONS(8861), + [aux_sym_put_statement_token1] = ACTIONS(8861), + [aux_sym_unlock_statement_token1] = ACTIONS(8861), + [aux_sym_seek_statement_token1] = ACTIONS(8861), + [sym_reset_statement] = ACTIONS(8861), + [aux_sym_raise_event_statement_token1] = ACTIONS(8861), + [sym_stop_statement] = ACTIONS(8861), + [sym_beep_statement] = ACTIONS(8861), + [aux_sym_unload_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token2] = ACTIONS(8861), + [aux_sym_def_type_statement_token3] = ACTIONS(8861), + [aux_sym_def_type_statement_token4] = ACTIONS(8861), + [aux_sym_def_type_statement_token5] = ACTIONS(8861), + [aux_sym_def_type_statement_token6] = ACTIONS(8861), + [aux_sym_def_type_statement_token7] = ACTIONS(8861), + [aux_sym_def_type_statement_token8] = ACTIONS(8861), + [aux_sym_def_type_statement_token9] = ACTIONS(8861), + [aux_sym_def_type_statement_token10] = ACTIONS(8861), + [aux_sym_def_type_statement_token11] = ACTIONS(8861), + [aux_sym_def_type_statement_token12] = ACTIONS(8861), + [aux_sym_def_type_statement_token13] = ACTIONS(8861), + [aux_sym_def_type_statement_token14] = ACTIONS(8861), + [aux_sym_call_statement_token1] = ACTIONS(8861), + [sym__ambiguous_call_statement] = ACTIONS(8861), + [aux_sym_addressof_expression_token1] = ACTIONS(8861), + [aux_sym_type_of_expression_token1] = ACTIONS(8861), + [aux_sym_unary_expression_token1] = ACTIONS(8861), + [sym_string_literal] = ACTIONS(8863), + [sym_number_literal] = ACTIONS(8863), + [aux_sym_boolean_literal_token1] = ACTIONS(8861), + [aux_sym_boolean_literal_token2] = ACTIONS(8861), + [sym_nothing_literal] = ACTIONS(8861), + [sym_null_literal] = ACTIONS(8861), + [sym_empty_literal] = ACTIONS(8861), + [sym_date_literal] = ACTIONS(8863), + [anon_sym_POUND] = ACTIONS(8861), + }, + [STATE(3809)] = { + [sym_identifier] = ACTIONS(8865), + [sym_newline] = ACTIONS(8867), + [anon_sym_COLON] = ACTIONS(8867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8865), + [aux_sym_frm_property_statement_token1] = ACTIONS(8865), + [anon_sym_DOT] = ACTIONS(8865), + [anon_sym_BANG] = ACTIONS(8867), + [aux_sym__attribute_identifier_token1] = ACTIONS(8865), + [aux_sym_option_statement_token3] = ACTIONS(8865), + [aux_sym_type_declaration_token1] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8865), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8865), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8865), + [aux_sym_enum_declaration_token1] = ACTIONS(8865), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8865), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8865), + [aux_sym_declare_function_statement_token1] = ACTIONS(8865), + [aux_sym_preprocessor_const_token1] = ACTIONS(8865), + [aux_sym__property_get_header_token1] = ACTIONS(8865), + [aux_sym_event_declaration_token1] = ACTIONS(8865), + [sym_static_modifier] = ACTIONS(8865), + [sym__dim_keyword] = ACTIONS(8865), + [sym__redim_keyword] = ACTIONS(8865), + [aux_sym_get_accessor_token1] = ACTIONS(8865), + [aux_sym_set_accessor_token1] = ACTIONS(8865), + [anon_sym_COMMA] = ACTIONS(8867), + [aux_sym_const_declaration_token1] = ACTIONS(8865), + [anon_sym_LPAREN] = ACTIONS(8867), + [aux_sym_as_type_clause_token2] = ACTIONS(8865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8865), + [aux_sym_visibility_token1] = ACTIONS(8865), + [aux_sym_visibility_token2] = ACTIONS(8865), + [aux_sym_elseif_fragment_token1] = ACTIONS(8865), + [aux_sym_else_fragment_token1] = ACTIONS(8865), + [aux_sym_select_statement_token1] = ACTIONS(8865), + [aux_sym__for_header_token1] = ACTIONS(8865), + [aux_sym_do_statement_token1] = ACTIONS(8865), + [aux_sym_do_condition_token1] = ACTIONS(8865), + [aux_sym_with_statement_token1] = ACTIONS(8865), + [aux_sym_exit_statement_token1] = ACTIONS(8865), + [sym_end_statement] = ACTIONS(8867), + [aux_sym_on_goto_statement_token1] = ACTIONS(8865), + [aux_sym_on_goto_statement_token2] = ACTIONS(8865), + [aux_sym_on_error_statement_token2] = ACTIONS(8865), + [sym__ambiguous_redim_statement] = ACTIONS(8867), + [aux_sym_erase_statement_token1] = ACTIONS(8865), + [aux_sym_open_statement_token1] = ACTIONS(8865), + [aux_sym_file_mode_token2] = ACTIONS(8865), + [aux_sym_file_access_token2] = ACTIONS(8865), + [aux_sym_file_lock_token2] = ACTIONS(8865), + [aux_sym_print_statement_token1] = ACTIONS(8865), + [anon_sym_PLUS] = ACTIONS(8867), + [anon_sym_DASH] = ACTIONS(8865), + [anon_sym_QMARK] = ACTIONS(8867), + [aux_sym_close_statement_token1] = ACTIONS(8865), + [aux_sym_put_statement_token1] = ACTIONS(8865), + [aux_sym_unlock_statement_token1] = ACTIONS(8865), + [aux_sym_seek_statement_token1] = ACTIONS(8865), + [sym_reset_statement] = ACTIONS(8865), + [aux_sym_raise_event_statement_token1] = ACTIONS(8865), + [sym_stop_statement] = ACTIONS(8865), + [sym_beep_statement] = ACTIONS(8865), + [aux_sym_unload_statement_token1] = ACTIONS(8865), + [aux_sym_def_type_statement_token1] = ACTIONS(8865), + [aux_sym_def_type_statement_token2] = ACTIONS(8865), + [aux_sym_def_type_statement_token3] = ACTIONS(8865), + [aux_sym_def_type_statement_token4] = ACTIONS(8865), + [aux_sym_def_type_statement_token5] = ACTIONS(8865), + [aux_sym_def_type_statement_token6] = ACTIONS(8865), + [aux_sym_def_type_statement_token7] = ACTIONS(8865), + [aux_sym_def_type_statement_token8] = ACTIONS(8865), + [aux_sym_def_type_statement_token9] = ACTIONS(8865), + [aux_sym_def_type_statement_token10] = ACTIONS(8865), + [aux_sym_def_type_statement_token11] = ACTIONS(8865), + [aux_sym_def_type_statement_token12] = ACTIONS(8865), + [aux_sym_def_type_statement_token13] = ACTIONS(8865), + [aux_sym_def_type_statement_token14] = ACTIONS(8865), + [aux_sym_call_statement_token1] = ACTIONS(8865), + [sym__ambiguous_call_statement] = ACTIONS(8865), + [aux_sym_addressof_expression_token1] = ACTIONS(8865), + [aux_sym_type_of_expression_token1] = ACTIONS(8865), + [aux_sym_unary_expression_token1] = ACTIONS(8865), + [sym_string_literal] = ACTIONS(8867), + [sym_number_literal] = ACTIONS(8867), + [aux_sym_boolean_literal_token1] = ACTIONS(8865), + [aux_sym_boolean_literal_token2] = ACTIONS(8865), + [sym_nothing_literal] = ACTIONS(8865), + [sym_null_literal] = ACTIONS(8865), + [sym_empty_literal] = ACTIONS(8865), + [sym_date_literal] = ACTIONS(8867), + [anon_sym_POUND] = ACTIONS(8865), + }, + [STATE(3810)] = { + [sym_parameter_list] = STATE(3884), + [sym_as_type_clause] = STATE(4526), + [sym_identifier] = ACTIONS(7972), + [sym_newline] = ACTIONS(7974), + [anon_sym_COLON] = ACTIONS(7974), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7972), + [aux_sym_frm_property_statement_token1] = ACTIONS(7972), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_BANG] = ACTIONS(7974), + [aux_sym__attribute_identifier_token1] = ACTIONS(7972), + [aux_sym_option_statement_token3] = ACTIONS(7972), + [aux_sym_type_declaration_token1] = ACTIONS(7972), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7972), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7972), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7972), + [aux_sym_enum_declaration_token1] = ACTIONS(7972), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7972), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7972), + [aux_sym_declare_function_statement_token1] = ACTIONS(7972), + [aux_sym_preprocessor_const_token1] = ACTIONS(7972), + [aux_sym__property_get_header_token1] = ACTIONS(7972), + [aux_sym_event_declaration_token1] = ACTIONS(7972), + [sym_static_modifier] = ACTIONS(7972), + [sym__dim_keyword] = ACTIONS(7972), + [sym__redim_keyword] = ACTIONS(7972), + [aux_sym_get_accessor_token1] = ACTIONS(7972), + [aux_sym_set_accessor_token1] = ACTIONS(7972), + [aux_sym_const_declaration_token1] = ACTIONS(7972), + [anon_sym_LPAREN] = ACTIONS(8209), + [aux_sym_as_type_clause_token1] = ACTIONS(8211), + [aux_sym_as_type_clause_token2] = ACTIONS(7972), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7972), + [aux_sym_visibility_token1] = ACTIONS(7972), + [aux_sym_visibility_token2] = ACTIONS(7972), + [aux_sym_elseif_fragment_token1] = ACTIONS(7972), + [aux_sym_else_fragment_token1] = ACTIONS(7972), + [aux_sym_select_statement_token1] = ACTIONS(7972), + [aux_sym__for_header_token1] = ACTIONS(7972), + [aux_sym_do_statement_token1] = ACTIONS(7972), + [aux_sym_do_condition_token1] = ACTIONS(7972), + [aux_sym_with_statement_token1] = ACTIONS(7972), + [aux_sym_exit_statement_token1] = ACTIONS(7972), + [sym_end_statement] = ACTIONS(7974), + [aux_sym_on_goto_statement_token1] = ACTIONS(7972), + [aux_sym_on_goto_statement_token2] = ACTIONS(7972), + [aux_sym_on_error_statement_token2] = ACTIONS(7972), + [sym__ambiguous_redim_statement] = ACTIONS(7974), + [aux_sym_erase_statement_token1] = ACTIONS(7972), + [aux_sym_open_statement_token1] = ACTIONS(7972), + [aux_sym_file_mode_token2] = ACTIONS(7972), + [aux_sym_file_access_token2] = ACTIONS(7972), + [aux_sym_file_lock_token2] = ACTIONS(7972), + [aux_sym_print_statement_token1] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7974), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7974), + [aux_sym_close_statement_token1] = ACTIONS(7972), + [aux_sym_put_statement_token1] = ACTIONS(7972), + [aux_sym_unlock_statement_token1] = ACTIONS(7972), + [aux_sym_seek_statement_token1] = ACTIONS(7972), + [sym_reset_statement] = ACTIONS(7972), + [aux_sym_raise_event_statement_token1] = ACTIONS(7972), + [sym_stop_statement] = ACTIONS(7972), + [sym_beep_statement] = ACTIONS(7972), + [aux_sym_unload_statement_token1] = ACTIONS(7972), + [aux_sym_def_type_statement_token1] = ACTIONS(7972), + [aux_sym_def_type_statement_token2] = ACTIONS(7972), + [aux_sym_def_type_statement_token3] = ACTIONS(7972), + [aux_sym_def_type_statement_token4] = ACTIONS(7972), + [aux_sym_def_type_statement_token5] = ACTIONS(7972), + [aux_sym_def_type_statement_token6] = ACTIONS(7972), + [aux_sym_def_type_statement_token7] = ACTIONS(7972), + [aux_sym_def_type_statement_token8] = ACTIONS(7972), + [aux_sym_def_type_statement_token9] = ACTIONS(7972), + [aux_sym_def_type_statement_token10] = ACTIONS(7972), + [aux_sym_def_type_statement_token11] = ACTIONS(7972), + [aux_sym_def_type_statement_token12] = ACTIONS(7972), + [aux_sym_def_type_statement_token13] = ACTIONS(7972), + [aux_sym_def_type_statement_token14] = ACTIONS(7972), + [aux_sym_call_statement_token1] = ACTIONS(7972), + [sym__ambiguous_call_statement] = ACTIONS(7972), + [aux_sym_addressof_expression_token1] = ACTIONS(7972), + [aux_sym_type_of_expression_token1] = ACTIONS(7972), + [aux_sym_unary_expression_token1] = ACTIONS(7972), + [sym_string_literal] = ACTIONS(7974), + [sym_number_literal] = ACTIONS(7974), + [aux_sym_boolean_literal_token1] = ACTIONS(7972), + [aux_sym_boolean_literal_token2] = ACTIONS(7972), + [sym_nothing_literal] = ACTIONS(7972), + [sym_null_literal] = ACTIONS(7972), + [sym_empty_literal] = ACTIONS(7972), + [sym_date_literal] = ACTIONS(7974), + [anon_sym_POUND] = ACTIONS(7972), + }, + [STATE(3811)] = { + [sym_parameter_list] = STATE(4086), + [sym_identifier] = ACTIONS(8869), + [sym_newline] = ACTIONS(8871), + [anon_sym_COLON] = ACTIONS(8871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8869), + [aux_sym_frm_property_statement_token1] = ACTIONS(8869), + [anon_sym_DOT] = ACTIONS(8869), + [anon_sym_BANG] = ACTIONS(8871), + [aux_sym__attribute_identifier_token1] = ACTIONS(8869), + [aux_sym_option_statement_token3] = ACTIONS(8869), + [aux_sym_type_declaration_token1] = ACTIONS(8869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8869), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8869), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8869), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8869), + [aux_sym_enum_declaration_token1] = ACTIONS(8869), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8869), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8869), + [aux_sym_declare_function_statement_token1] = ACTIONS(8869), + [aux_sym_preprocessor_const_token1] = ACTIONS(8869), + [aux_sym__property_get_header_token1] = ACTIONS(8869), + [aux_sym_event_declaration_token1] = ACTIONS(8869), + [sym_static_modifier] = ACTIONS(8869), + [sym__dim_keyword] = ACTIONS(8869), + [sym__redim_keyword] = ACTIONS(8869), + [aux_sym_get_accessor_token1] = ACTIONS(8869), + [aux_sym_set_accessor_token1] = ACTIONS(8869), + [aux_sym_const_declaration_token1] = ACTIONS(8869), + [anon_sym_LPAREN] = ACTIONS(8126), + [aux_sym_as_type_clause_token2] = ACTIONS(8869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8869), + [aux_sym_visibility_token1] = ACTIONS(8869), + [aux_sym_visibility_token2] = ACTIONS(8869), + [aux_sym_elseif_fragment_token1] = ACTIONS(8869), + [aux_sym_else_fragment_token1] = ACTIONS(8869), + [aux_sym_select_statement_token1] = ACTIONS(8869), + [aux_sym__for_header_token1] = ACTIONS(8869), + [aux_sym_do_statement_token1] = ACTIONS(8869), + [aux_sym_do_condition_token1] = ACTIONS(8869), + [aux_sym_with_statement_token1] = ACTIONS(8869), + [aux_sym_exit_statement_token1] = ACTIONS(8869), + [sym_end_statement] = ACTIONS(8871), + [aux_sym_on_goto_statement_token1] = ACTIONS(8869), + [aux_sym_on_goto_statement_token2] = ACTIONS(8869), + [aux_sym_on_error_statement_token2] = ACTIONS(8869), + [sym__ambiguous_redim_statement] = ACTIONS(8871), + [aux_sym_erase_statement_token1] = ACTIONS(8869), + [aux_sym_open_statement_token1] = ACTIONS(8869), + [aux_sym_file_mode_token2] = ACTIONS(8869), + [aux_sym_file_access_token2] = ACTIONS(8869), + [aux_sym_file_lock_token2] = ACTIONS(8869), + [aux_sym_print_statement_token1] = ACTIONS(8869), + [anon_sym_PLUS] = ACTIONS(8871), + [anon_sym_DASH] = ACTIONS(8869), + [anon_sym_QMARK] = ACTIONS(8871), + [aux_sym_close_statement_token1] = ACTIONS(8869), + [aux_sym_put_statement_token1] = ACTIONS(8869), + [aux_sym_unlock_statement_token1] = ACTIONS(8869), + [aux_sym_seek_statement_token1] = ACTIONS(8869), + [sym_reset_statement] = ACTIONS(8869), + [aux_sym_raise_event_statement_token1] = ACTIONS(8869), + [sym_stop_statement] = ACTIONS(8869), + [sym_beep_statement] = ACTIONS(8869), + [aux_sym_unload_statement_token1] = ACTIONS(8869), + [aux_sym_def_type_statement_token1] = ACTIONS(8869), + [aux_sym_def_type_statement_token2] = ACTIONS(8869), + [aux_sym_def_type_statement_token3] = ACTIONS(8869), + [aux_sym_def_type_statement_token4] = ACTIONS(8869), + [aux_sym_def_type_statement_token5] = ACTIONS(8869), + [aux_sym_def_type_statement_token6] = ACTIONS(8869), + [aux_sym_def_type_statement_token7] = ACTIONS(8869), + [aux_sym_def_type_statement_token8] = ACTIONS(8869), + [aux_sym_def_type_statement_token9] = ACTIONS(8869), + [aux_sym_def_type_statement_token10] = ACTIONS(8869), + [aux_sym_def_type_statement_token11] = ACTIONS(8869), + [aux_sym_def_type_statement_token12] = ACTIONS(8869), + [aux_sym_def_type_statement_token13] = ACTIONS(8869), + [aux_sym_def_type_statement_token14] = ACTIONS(8869), + [aux_sym_call_statement_token1] = ACTIONS(8869), + [sym__ambiguous_call_statement] = ACTIONS(8869), + [aux_sym_addressof_expression_token1] = ACTIONS(8869), + [aux_sym_type_of_expression_token1] = ACTIONS(8869), + [aux_sym_unary_expression_token1] = ACTIONS(8869), + [sym_string_literal] = ACTIONS(8871), + [sym_number_literal] = ACTIONS(8871), + [aux_sym_boolean_literal_token1] = ACTIONS(8869), + [aux_sym_boolean_literal_token2] = ACTIONS(8869), + [sym_nothing_literal] = ACTIONS(8869), + [sym_null_literal] = ACTIONS(8869), + [sym_empty_literal] = ACTIONS(8869), + [sym_date_literal] = ACTIONS(8871), + [anon_sym_POUND] = ACTIONS(8869), + }, + [STATE(3812)] = { + [sym_argument_list] = STATE(4137), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(8873), + [anon_sym_BANG] = ACTIONS(8875), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_declaration_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_enum_declaration_token1] = ACTIONS(7836), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7836), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7836), + [aux_sym_declare_function_statement_token1] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [aux_sym__property_get_header_token1] = ACTIONS(7836), + [aux_sym_event_declaration_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(8700), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(3813)] = { + [sym_identifier] = ACTIONS(8877), + [sym_newline] = ACTIONS(8879), + [anon_sym_COLON] = ACTIONS(8879), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8877), + [aux_sym_frm_property_statement_token1] = ACTIONS(8877), + [anon_sym_DOT] = ACTIONS(8877), + [anon_sym_BANG] = ACTIONS(8879), + [aux_sym__attribute_identifier_token1] = ACTIONS(8877), + [aux_sym_option_statement_token3] = ACTIONS(8877), + [aux_sym_type_declaration_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8877), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8877), + [aux_sym_enum_declaration_token1] = ACTIONS(8877), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8877), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8877), + [aux_sym_declare_function_statement_token1] = ACTIONS(8877), + [aux_sym_preprocessor_const_token1] = ACTIONS(8877), + [aux_sym__property_get_header_token1] = ACTIONS(8877), + [aux_sym_event_declaration_token1] = ACTIONS(8877), + [sym_static_modifier] = ACTIONS(8877), + [sym__dim_keyword] = ACTIONS(8877), + [sym__redim_keyword] = ACTIONS(8877), + [aux_sym_get_accessor_token1] = ACTIONS(8877), + [aux_sym_set_accessor_token1] = ACTIONS(8877), + [aux_sym_const_declaration_token1] = ACTIONS(8877), + [anon_sym_LPAREN] = ACTIONS(8879), + [aux_sym_as_type_clause_token2] = ACTIONS(8877), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8877), + [aux_sym_visibility_token1] = ACTIONS(8877), + [aux_sym_visibility_token2] = ACTIONS(8877), + [aux_sym_elseif_fragment_token1] = ACTIONS(8877), + [aux_sym_else_fragment_token1] = ACTIONS(8877), + [aux_sym_select_statement_token1] = ACTIONS(8877), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8877), + [aux_sym__for_header_token1] = ACTIONS(8877), + [aux_sym_do_statement_token1] = ACTIONS(8877), + [aux_sym_do_condition_token1] = ACTIONS(8877), + [aux_sym_with_statement_token1] = ACTIONS(8877), + [aux_sym_exit_statement_token1] = ACTIONS(8877), + [sym_end_statement] = ACTIONS(8879), + [aux_sym_on_goto_statement_token1] = ACTIONS(8877), + [aux_sym_on_goto_statement_token2] = ACTIONS(8877), + [aux_sym_on_error_statement_token2] = ACTIONS(8877), + [sym__ambiguous_redim_statement] = ACTIONS(8879), + [aux_sym_erase_statement_token1] = ACTIONS(8877), + [aux_sym_open_statement_token1] = ACTIONS(8877), + [aux_sym_file_mode_token2] = ACTIONS(8877), + [aux_sym_file_access_token2] = ACTIONS(8877), + [aux_sym_file_lock_token2] = ACTIONS(8877), + [aux_sym_print_statement_token1] = ACTIONS(8877), + [anon_sym_PLUS] = ACTIONS(8879), + [anon_sym_DASH] = ACTIONS(8877), + [anon_sym_QMARK] = ACTIONS(8879), + [aux_sym_close_statement_token1] = ACTIONS(8877), + [aux_sym_put_statement_token1] = ACTIONS(8877), + [aux_sym_unlock_statement_token1] = ACTIONS(8877), + [aux_sym_seek_statement_token1] = ACTIONS(8877), + [sym_reset_statement] = ACTIONS(8877), + [aux_sym_raise_event_statement_token1] = ACTIONS(8877), + [sym_stop_statement] = ACTIONS(8877), + [sym_beep_statement] = ACTIONS(8877), + [aux_sym_unload_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token2] = ACTIONS(8877), + [aux_sym_def_type_statement_token3] = ACTIONS(8877), + [aux_sym_def_type_statement_token4] = ACTIONS(8877), + [aux_sym_def_type_statement_token5] = ACTIONS(8877), + [aux_sym_def_type_statement_token6] = ACTIONS(8877), + [aux_sym_def_type_statement_token7] = ACTIONS(8877), + [aux_sym_def_type_statement_token8] = ACTIONS(8877), + [aux_sym_def_type_statement_token9] = ACTIONS(8877), + [aux_sym_def_type_statement_token10] = ACTIONS(8877), + [aux_sym_def_type_statement_token11] = ACTIONS(8877), + [aux_sym_def_type_statement_token12] = ACTIONS(8877), + [aux_sym_def_type_statement_token13] = ACTIONS(8877), + [aux_sym_def_type_statement_token14] = ACTIONS(8877), + [aux_sym_call_statement_token1] = ACTIONS(8877), + [sym__ambiguous_call_statement] = ACTIONS(8877), + [aux_sym_addressof_expression_token1] = ACTIONS(8877), + [aux_sym_type_of_expression_token1] = ACTIONS(8877), + [aux_sym_unary_expression_token1] = ACTIONS(8877), + [sym_string_literal] = ACTIONS(8879), + [sym_number_literal] = ACTIONS(8879), + [aux_sym_boolean_literal_token1] = ACTIONS(8877), + [aux_sym_boolean_literal_token2] = ACTIONS(8877), + [sym_nothing_literal] = ACTIONS(8877), + [sym_null_literal] = ACTIONS(8877), + [sym_empty_literal] = ACTIONS(8877), + [sym_date_literal] = ACTIONS(8879), + [anon_sym_POUND] = ACTIONS(8877), + }, + [STATE(3814)] = { + [sym_identifier] = ACTIONS(8881), + [sym_newline] = ACTIONS(8884), + [anon_sym_COLON] = ACTIONS(8884), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8881), + [aux_sym_frm_property_statement_token1] = ACTIONS(8881), + [anon_sym_DOT] = ACTIONS(8881), + [anon_sym_BANG] = ACTIONS(8884), + [aux_sym__attribute_identifier_token1] = ACTIONS(8881), + [aux_sym_option_statement_token3] = ACTIONS(8881), + [aux_sym_type_declaration_token1] = ACTIONS(8887), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8887), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8881), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8887), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8887), + [aux_sym_enum_declaration_token1] = ACTIONS(8887), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8887), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8887), + [aux_sym_declare_function_statement_token1] = ACTIONS(8887), + [aux_sym_preprocessor_const_token1] = ACTIONS(8881), + [aux_sym__property_get_header_token1] = ACTIONS(8887), + [aux_sym_event_declaration_token1] = ACTIONS(8887), + [sym_static_modifier] = ACTIONS(8881), + [sym__dim_keyword] = ACTIONS(8881), + [sym__redim_keyword] = ACTIONS(8881), + [aux_sym_get_accessor_token1] = ACTIONS(8881), + [aux_sym_set_accessor_token1] = ACTIONS(8881), + [aux_sym_const_declaration_token1] = ACTIONS(8881), + [anon_sym_LPAREN] = ACTIONS(8884), + [aux_sym_as_type_clause_token2] = ACTIONS(8881), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8881), + [aux_sym_visibility_token1] = ACTIONS(8881), + [aux_sym_visibility_token2] = ACTIONS(8881), + [aux_sym_elseif_fragment_token1] = ACTIONS(8881), + [aux_sym_else_fragment_token1] = ACTIONS(8881), + [aux_sym_select_statement_token1] = ACTIONS(8881), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8881), + [aux_sym__for_header_token1] = ACTIONS(8881), + [aux_sym_do_statement_token1] = ACTIONS(8881), + [aux_sym_do_condition_token1] = ACTIONS(8881), + [aux_sym_with_statement_token1] = ACTIONS(8881), + [aux_sym_exit_statement_token1] = ACTIONS(8881), + [sym_end_statement] = ACTIONS(8884), + [aux_sym_on_goto_statement_token1] = ACTIONS(8881), + [aux_sym_on_goto_statement_token2] = ACTIONS(8881), + [aux_sym_on_error_statement_token2] = ACTIONS(8881), + [sym__ambiguous_redim_statement] = ACTIONS(8884), + [aux_sym_erase_statement_token1] = ACTIONS(8881), + [aux_sym_open_statement_token1] = ACTIONS(8881), + [aux_sym_file_mode_token2] = ACTIONS(8881), + [aux_sym_file_access_token2] = ACTIONS(8881), + [aux_sym_file_lock_token2] = ACTIONS(8881), + [aux_sym_print_statement_token1] = ACTIONS(8881), + [anon_sym_PLUS] = ACTIONS(8884), + [anon_sym_DASH] = ACTIONS(8881), + [anon_sym_QMARK] = ACTIONS(8884), + [aux_sym_close_statement_token1] = ACTIONS(8881), + [aux_sym_put_statement_token1] = ACTIONS(8881), + [aux_sym_unlock_statement_token1] = ACTIONS(8881), + [aux_sym_seek_statement_token1] = ACTIONS(8881), + [sym_reset_statement] = ACTIONS(8881), + [aux_sym_raise_event_statement_token1] = ACTIONS(8881), + [sym_stop_statement] = ACTIONS(8881), + [sym_beep_statement] = ACTIONS(8881), + [aux_sym_unload_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token2] = ACTIONS(8881), + [aux_sym_def_type_statement_token3] = ACTIONS(8881), + [aux_sym_def_type_statement_token4] = ACTIONS(8881), + [aux_sym_def_type_statement_token5] = ACTIONS(8881), + [aux_sym_def_type_statement_token6] = ACTIONS(8881), + [aux_sym_def_type_statement_token7] = ACTIONS(8881), + [aux_sym_def_type_statement_token8] = ACTIONS(8881), + [aux_sym_def_type_statement_token9] = ACTIONS(8881), + [aux_sym_def_type_statement_token10] = ACTIONS(8881), + [aux_sym_def_type_statement_token11] = ACTIONS(8881), + [aux_sym_def_type_statement_token12] = ACTIONS(8881), + [aux_sym_def_type_statement_token13] = ACTIONS(8881), + [aux_sym_def_type_statement_token14] = ACTIONS(8881), + [aux_sym_call_statement_token1] = ACTIONS(8881), + [sym__ambiguous_call_statement] = ACTIONS(8881), + [aux_sym_addressof_expression_token1] = ACTIONS(8881), + [aux_sym_type_of_expression_token1] = ACTIONS(8881), + [aux_sym_unary_expression_token1] = ACTIONS(8881), + [sym_string_literal] = ACTIONS(8884), + [sym_number_literal] = ACTIONS(8884), + [aux_sym_boolean_literal_token1] = ACTIONS(8881), + [aux_sym_boolean_literal_token2] = ACTIONS(8881), + [sym_nothing_literal] = ACTIONS(8881), + [sym_null_literal] = ACTIONS(8881), + [sym_empty_literal] = ACTIONS(8881), + [sym_date_literal] = ACTIONS(8884), + [anon_sym_POUND] = ACTIONS(8881), + }, + [STATE(3815)] = { + [sym_identifier] = ACTIONS(6621), + [sym_newline] = ACTIONS(6623), + [anon_sym_COLON] = ACTIONS(6623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6621), + [aux_sym_frm_property_statement_token1] = ACTIONS(6621), + [anon_sym_DOT] = ACTIONS(6621), + [anon_sym_BANG] = ACTIONS(6623), + [aux_sym__attribute_identifier_token1] = ACTIONS(6621), + [aux_sym_option_statement_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6621), + [aux_sym_preprocessor_const_token1] = ACTIONS(6621), + [sym_static_modifier] = ACTIONS(6621), + [sym__dim_keyword] = ACTIONS(6621), + [sym__redim_keyword] = ACTIONS(6621), + [aux_sym_get_accessor_token1] = ACTIONS(6621), + [aux_sym_set_accessor_token1] = ACTIONS(6621), + [aux_sym_const_declaration_token1] = ACTIONS(6621), + [anon_sym_LPAREN] = ACTIONS(6623), + [aux_sym_as_type_clause_token2] = ACTIONS(6621), + [anon_sym_STAR] = ACTIONS(6472), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6621), + [aux_sym_visibility_token1] = ACTIONS(6621), + [aux_sym_visibility_token2] = ACTIONS(6621), + [aux_sym_elseif_fragment_token1] = ACTIONS(6621), + [aux_sym_else_fragment_token1] = ACTIONS(6621), + [aux_sym_select_statement_token1] = ACTIONS(6621), + [aux_sym__for_header_token1] = ACTIONS(6621), + [aux_sym_do_statement_token1] = ACTIONS(6621), + [aux_sym_do_condition_token1] = ACTIONS(6621), + [aux_sym_with_statement_token1] = ACTIONS(6621), + [aux_sym_exit_statement_token1] = ACTIONS(6621), + [sym_end_statement] = ACTIONS(6623), + [aux_sym_on_goto_statement_token1] = ACTIONS(6621), + [aux_sym_on_goto_statement_token2] = ACTIONS(6621), + [aux_sym_on_error_statement_token2] = ACTIONS(6621), + [sym__ambiguous_redim_statement] = ACTIONS(6623), + [aux_sym_erase_statement_token1] = ACTIONS(6621), + [aux_sym_open_statement_token1] = ACTIONS(6621), + [aux_sym_file_mode_token2] = ACTIONS(6621), + [aux_sym_file_access_token2] = ACTIONS(6621), + [aux_sym_file_lock_token2] = ACTIONS(6621), + [aux_sym_print_statement_token1] = ACTIONS(6621), + [anon_sym_CARET] = ACTIONS(6470), + [anon_sym_SLASH] = ACTIONS(6472), + [anon_sym_BSLASH] = ACTIONS(6474), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(6476), + [anon_sym_PLUS] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6480), + [anon_sym_AMP] = ACTIONS(6482), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(6484), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(6486), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(6488), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(6490), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(6492), + [anon_sym_QMARK] = ACTIONS(6623), + [aux_sym_close_statement_token1] = ACTIONS(6621), + [aux_sym_put_statement_token1] = ACTIONS(6621), + [aux_sym_unlock_statement_token1] = ACTIONS(6621), + [aux_sym_seek_statement_token1] = ACTIONS(6621), + [sym_reset_statement] = ACTIONS(6621), + [aux_sym_raise_event_statement_token1] = ACTIONS(6621), + [sym_stop_statement] = ACTIONS(6621), + [sym_beep_statement] = ACTIONS(6621), + [aux_sym_unload_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token2] = ACTIONS(6621), + [aux_sym_def_type_statement_token3] = ACTIONS(6621), + [aux_sym_def_type_statement_token4] = ACTIONS(6621), + [aux_sym_def_type_statement_token5] = ACTIONS(6621), + [aux_sym_def_type_statement_token6] = ACTIONS(6621), + [aux_sym_def_type_statement_token7] = ACTIONS(6621), + [aux_sym_def_type_statement_token8] = ACTIONS(6621), + [aux_sym_def_type_statement_token9] = ACTIONS(6621), + [aux_sym_def_type_statement_token10] = ACTIONS(6621), + [aux_sym_def_type_statement_token11] = ACTIONS(6621), + [aux_sym_def_type_statement_token12] = ACTIONS(6621), + [aux_sym_def_type_statement_token13] = ACTIONS(6621), + [aux_sym_def_type_statement_token14] = ACTIONS(6621), + [aux_sym_call_statement_token1] = ACTIONS(6621), + [sym__ambiguous_call_statement] = ACTIONS(6621), + [aux_sym_addressof_expression_token1] = ACTIONS(6621), + [aux_sym_type_of_expression_token1] = ACTIONS(6621), + [aux_sym_unary_expression_token1] = ACTIONS(6621), + [sym_string_literal] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [aux_sym_boolean_literal_token1] = ACTIONS(6621), + [aux_sym_boolean_literal_token2] = ACTIONS(6621), + [sym_nothing_literal] = ACTIONS(6621), + [sym_null_literal] = ACTIONS(6621), + [sym_empty_literal] = ACTIONS(6621), + [sym_date_literal] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6621), + }, + [STATE(3816)] = { + [sym_next_variable_list] = STATE(5021), + [sym__assignable_expression] = STATE(4645), + [sym__callable_expression] = STATE(4647), + [sym_call_expression] = STATE(4663), + [sym_member_expression] = STATE(4783), + [sym_qualified_member_expression] = STATE(4804), + [sym_implicit_member_expression] = STATE(4804), + [sym_identifier] = ACTIONS(8889), + [sym_newline] = ACTIONS(6842), + [anon_sym_COLON] = ACTIONS(6842), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6844), + [aux_sym_frm_property_statement_token1] = ACTIONS(8891), + [anon_sym_DOT] = ACTIONS(8893), + [anon_sym_BANG] = ACTIONS(8895), + [aux_sym__attribute_identifier_token1] = ACTIONS(6844), + [aux_sym_option_statement_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6844), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6844), + [aux_sym_preprocessor_const_token1] = ACTIONS(6844), + [sym_static_modifier] = ACTIONS(6844), + [sym__dim_keyword] = ACTIONS(6844), + [sym__redim_keyword] = ACTIONS(6844), + [aux_sym_get_accessor_token1] = ACTIONS(6844), + [aux_sym_set_accessor_token1] = ACTIONS(6844), + [aux_sym_const_declaration_token1] = ACTIONS(6844), + [anon_sym_LPAREN] = ACTIONS(6842), + [aux_sym_as_type_clause_token2] = ACTIONS(6844), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8897), + [aux_sym_visibility_token1] = ACTIONS(6844), + [aux_sym_visibility_token2] = ACTIONS(6844), + [aux_sym_elseif_fragment_token1] = ACTIONS(6844), + [aux_sym_else_fragment_token1] = ACTIONS(6844), + [aux_sym_select_statement_token1] = ACTIONS(6844), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6844), + [aux_sym__for_header_token1] = ACTIONS(6844), + [aux_sym_do_statement_token1] = ACTIONS(6844), + [aux_sym_do_condition_token1] = ACTIONS(6844), + [aux_sym_with_statement_token1] = ACTIONS(6844), + [aux_sym_exit_statement_token1] = ACTIONS(6844), + [sym_end_statement] = ACTIONS(6842), + [aux_sym_on_goto_statement_token1] = ACTIONS(6844), + [aux_sym_on_goto_statement_token2] = ACTIONS(6844), + [aux_sym_on_error_statement_token2] = ACTIONS(6844), + [sym__ambiguous_redim_statement] = ACTIONS(6842), + [aux_sym_erase_statement_token1] = ACTIONS(6844), + [aux_sym_open_statement_token1] = ACTIONS(6844), + [aux_sym_file_mode_token2] = ACTIONS(6844), + [aux_sym_file_access_token2] = ACTIONS(6844), + [aux_sym_file_lock_token2] = ACTIONS(6844), + [aux_sym_print_statement_token1] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6842), + [aux_sym_close_statement_token1] = ACTIONS(6844), + [aux_sym_put_statement_token1] = ACTIONS(6844), + [aux_sym_unlock_statement_token1] = ACTIONS(6844), + [aux_sym_seek_statement_token1] = ACTIONS(6844), + [sym_reset_statement] = ACTIONS(6844), + [aux_sym_raise_event_statement_token1] = ACTIONS(6844), + [sym_stop_statement] = ACTIONS(6844), + [sym_beep_statement] = ACTIONS(6844), + [aux_sym_unload_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token2] = ACTIONS(6844), + [aux_sym_def_type_statement_token3] = ACTIONS(6844), + [aux_sym_def_type_statement_token4] = ACTIONS(6844), + [aux_sym_def_type_statement_token5] = ACTIONS(6844), + [aux_sym_def_type_statement_token6] = ACTIONS(6844), + [aux_sym_def_type_statement_token7] = ACTIONS(6844), + [aux_sym_def_type_statement_token8] = ACTIONS(6844), + [aux_sym_def_type_statement_token9] = ACTIONS(6844), + [aux_sym_def_type_statement_token10] = ACTIONS(6844), + [aux_sym_def_type_statement_token11] = ACTIONS(6844), + [aux_sym_def_type_statement_token12] = ACTIONS(6844), + [aux_sym_def_type_statement_token13] = ACTIONS(6844), + [aux_sym_def_type_statement_token14] = ACTIONS(6844), + [aux_sym_call_statement_token1] = ACTIONS(6844), + [sym__ambiguous_call_statement] = ACTIONS(6844), + [aux_sym_addressof_expression_token1] = ACTIONS(6844), + [aux_sym_type_of_expression_token1] = ACTIONS(6844), + [aux_sym_unary_expression_token1] = ACTIONS(6844), + [sym_string_literal] = ACTIONS(6842), + [sym_number_literal] = ACTIONS(6842), + [aux_sym_boolean_literal_token1] = ACTIONS(6844), + [aux_sym_boolean_literal_token2] = ACTIONS(6844), + [sym_nothing_literal] = ACTIONS(6844), + [sym_null_literal] = ACTIONS(6844), + [sym_empty_literal] = ACTIONS(6844), + [sym_date_literal] = ACTIONS(6842), + [anon_sym_POUND] = ACTIONS(6844), + }, + [STATE(3817)] = { + [sym_argument_list] = STATE(3951), + [sym_identifier] = ACTIONS(8899), + [sym_newline] = ACTIONS(8901), + [anon_sym_COLON] = ACTIONS(8901), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8899), + [aux_sym_frm_property_statement_token1] = ACTIONS(8899), + [anon_sym_DOT] = ACTIONS(8382), + [anon_sym_BANG] = ACTIONS(8384), + [aux_sym__attribute_identifier_token1] = ACTIONS(8899), + [aux_sym_option_statement_token3] = ACTIONS(8899), + [aux_sym_type_declaration_token1] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8899), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8899), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8899), + [aux_sym_enum_declaration_token1] = ACTIONS(8899), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8899), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8899), + [aux_sym_declare_function_statement_token1] = ACTIONS(8899), + [aux_sym_preprocessor_const_token1] = ACTIONS(8899), + [aux_sym__property_get_header_token1] = ACTIONS(8899), + [aux_sym_event_declaration_token1] = ACTIONS(8899), + [sym_static_modifier] = ACTIONS(8899), + [sym__dim_keyword] = ACTIONS(8899), + [sym__redim_keyword] = ACTIONS(8899), + [aux_sym_get_accessor_token1] = ACTIONS(8899), + [aux_sym_set_accessor_token1] = ACTIONS(8899), + [aux_sym_const_declaration_token1] = ACTIONS(8899), + [anon_sym_LPAREN] = ACTIONS(8372), + [aux_sym_as_type_clause_token2] = ACTIONS(8899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8899), + [aux_sym_visibility_token1] = ACTIONS(8899), + [aux_sym_visibility_token2] = ACTIONS(8899), + [aux_sym_elseif_fragment_token1] = ACTIONS(8899), + [aux_sym_else_fragment_token1] = ACTIONS(8899), + [aux_sym_select_statement_token1] = ACTIONS(8899), + [aux_sym__for_header_token1] = ACTIONS(8899), + [aux_sym_do_statement_token1] = ACTIONS(8899), + [aux_sym_do_condition_token1] = ACTIONS(8899), + [aux_sym_with_statement_token1] = ACTIONS(8899), + [aux_sym_exit_statement_token1] = ACTIONS(8899), + [sym_end_statement] = ACTIONS(8901), + [aux_sym_on_goto_statement_token1] = ACTIONS(8899), + [aux_sym_on_goto_statement_token2] = ACTIONS(8899), + [aux_sym_on_error_statement_token2] = ACTIONS(8899), + [sym__ambiguous_redim_statement] = ACTIONS(8901), + [aux_sym_erase_statement_token1] = ACTIONS(8899), + [aux_sym_open_statement_token1] = ACTIONS(8899), + [aux_sym_file_mode_token2] = ACTIONS(8899), + [aux_sym_file_access_token2] = ACTIONS(8899), + [aux_sym_file_lock_token2] = ACTIONS(8899), + [aux_sym_print_statement_token1] = ACTIONS(8899), + [anon_sym_PLUS] = ACTIONS(8901), + [anon_sym_DASH] = ACTIONS(8899), + [anon_sym_QMARK] = ACTIONS(8901), + [aux_sym_close_statement_token1] = ACTIONS(8899), + [aux_sym_put_statement_token1] = ACTIONS(8899), + [aux_sym_unlock_statement_token1] = ACTIONS(8899), + [aux_sym_seek_statement_token1] = ACTIONS(8899), + [sym_reset_statement] = ACTIONS(8899), + [aux_sym_raise_event_statement_token1] = ACTIONS(8899), + [sym_stop_statement] = ACTIONS(8899), + [sym_beep_statement] = ACTIONS(8899), + [aux_sym_unload_statement_token1] = ACTIONS(8899), + [aux_sym_def_type_statement_token1] = ACTIONS(8899), + [aux_sym_def_type_statement_token2] = ACTIONS(8899), + [aux_sym_def_type_statement_token3] = ACTIONS(8899), + [aux_sym_def_type_statement_token4] = ACTIONS(8899), + [aux_sym_def_type_statement_token5] = ACTIONS(8899), + [aux_sym_def_type_statement_token6] = ACTIONS(8899), + [aux_sym_def_type_statement_token7] = ACTIONS(8899), + [aux_sym_def_type_statement_token8] = ACTIONS(8899), + [aux_sym_def_type_statement_token9] = ACTIONS(8899), + [aux_sym_def_type_statement_token10] = ACTIONS(8899), + [aux_sym_def_type_statement_token11] = ACTIONS(8899), + [aux_sym_def_type_statement_token12] = ACTIONS(8899), + [aux_sym_def_type_statement_token13] = ACTIONS(8899), + [aux_sym_def_type_statement_token14] = ACTIONS(8899), + [aux_sym_call_statement_token1] = ACTIONS(8899), + [sym__ambiguous_call_statement] = ACTIONS(8899), + [aux_sym_addressof_expression_token1] = ACTIONS(8899), + [aux_sym_type_of_expression_token1] = ACTIONS(8899), + [aux_sym_unary_expression_token1] = ACTIONS(8899), + [sym_string_literal] = ACTIONS(8901), + [sym_number_literal] = ACTIONS(8901), + [aux_sym_boolean_literal_token1] = ACTIONS(8899), + [aux_sym_boolean_literal_token2] = ACTIONS(8899), + [sym_nothing_literal] = ACTIONS(8899), + [sym_null_literal] = ACTIONS(8899), + [sym_empty_literal] = ACTIONS(8899), + [sym_date_literal] = ACTIONS(8901), + [anon_sym_POUND] = ACTIONS(8899), + }, + [STATE(3818)] = { + [sym_next_variable_list] = STATE(5024), + [sym__assignable_expression] = STATE(4645), + [sym__callable_expression] = STATE(4647), + [sym_call_expression] = STATE(4663), + [sym_member_expression] = STATE(4783), + [sym_qualified_member_expression] = STATE(4804), + [sym_implicit_member_expression] = STATE(4804), + [sym_identifier] = ACTIONS(8889), + [sym_newline] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(6856), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6858), + [aux_sym_frm_property_statement_token1] = ACTIONS(8891), + [anon_sym_DOT] = ACTIONS(8893), + [anon_sym_BANG] = ACTIONS(8895), + [aux_sym__attribute_identifier_token1] = ACTIONS(6858), + [aux_sym_option_statement_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6858), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6858), + [aux_sym_preprocessor_const_token1] = ACTIONS(6858), + [sym_static_modifier] = ACTIONS(6858), + [sym__dim_keyword] = ACTIONS(6858), + [sym__redim_keyword] = ACTIONS(6858), + [aux_sym_get_accessor_token1] = ACTIONS(6858), + [aux_sym_set_accessor_token1] = ACTIONS(6858), + [aux_sym_const_declaration_token1] = ACTIONS(6858), + [anon_sym_LPAREN] = ACTIONS(6856), + [aux_sym_as_type_clause_token2] = ACTIONS(6858), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8897), + [aux_sym_visibility_token1] = ACTIONS(6858), + [aux_sym_visibility_token2] = ACTIONS(6858), + [aux_sym_elseif_fragment_token1] = ACTIONS(6858), + [aux_sym_else_fragment_token1] = ACTIONS(6858), + [aux_sym_select_statement_token1] = ACTIONS(6858), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6858), + [aux_sym__for_header_token1] = ACTIONS(6858), + [aux_sym_do_statement_token1] = ACTIONS(6858), + [aux_sym_do_condition_token1] = ACTIONS(6858), + [aux_sym_with_statement_token1] = ACTIONS(6858), + [aux_sym_exit_statement_token1] = ACTIONS(6858), + [sym_end_statement] = ACTIONS(6856), + [aux_sym_on_goto_statement_token1] = ACTIONS(6858), + [aux_sym_on_goto_statement_token2] = ACTIONS(6858), + [aux_sym_on_error_statement_token2] = ACTIONS(6858), + [sym__ambiguous_redim_statement] = ACTIONS(6856), + [aux_sym_erase_statement_token1] = ACTIONS(6858), + [aux_sym_open_statement_token1] = ACTIONS(6858), + [aux_sym_file_mode_token2] = ACTIONS(6858), + [aux_sym_file_access_token2] = ACTIONS(6858), + [aux_sym_file_lock_token2] = ACTIONS(6858), + [aux_sym_print_statement_token1] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6856), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_QMARK] = ACTIONS(6856), + [aux_sym_close_statement_token1] = ACTIONS(6858), + [aux_sym_put_statement_token1] = ACTIONS(6858), + [aux_sym_unlock_statement_token1] = ACTIONS(6858), + [aux_sym_seek_statement_token1] = ACTIONS(6858), + [sym_reset_statement] = ACTIONS(6858), + [aux_sym_raise_event_statement_token1] = ACTIONS(6858), + [sym_stop_statement] = ACTIONS(6858), + [sym_beep_statement] = ACTIONS(6858), + [aux_sym_unload_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token2] = ACTIONS(6858), + [aux_sym_def_type_statement_token3] = ACTIONS(6858), + [aux_sym_def_type_statement_token4] = ACTIONS(6858), + [aux_sym_def_type_statement_token5] = ACTIONS(6858), + [aux_sym_def_type_statement_token6] = ACTIONS(6858), + [aux_sym_def_type_statement_token7] = ACTIONS(6858), + [aux_sym_def_type_statement_token8] = ACTIONS(6858), + [aux_sym_def_type_statement_token9] = ACTIONS(6858), + [aux_sym_def_type_statement_token10] = ACTIONS(6858), + [aux_sym_def_type_statement_token11] = ACTIONS(6858), + [aux_sym_def_type_statement_token12] = ACTIONS(6858), + [aux_sym_def_type_statement_token13] = ACTIONS(6858), + [aux_sym_def_type_statement_token14] = ACTIONS(6858), + [aux_sym_call_statement_token1] = ACTIONS(6858), + [sym__ambiguous_call_statement] = ACTIONS(6858), + [aux_sym_addressof_expression_token1] = ACTIONS(6858), + [aux_sym_type_of_expression_token1] = ACTIONS(6858), + [aux_sym_unary_expression_token1] = ACTIONS(6858), + [sym_string_literal] = ACTIONS(6856), + [sym_number_literal] = ACTIONS(6856), + [aux_sym_boolean_literal_token1] = ACTIONS(6858), + [aux_sym_boolean_literal_token2] = ACTIONS(6858), + [sym_nothing_literal] = ACTIONS(6858), + [sym_null_literal] = ACTIONS(6858), + [sym_empty_literal] = ACTIONS(6858), + [sym_date_literal] = ACTIONS(6856), + [anon_sym_POUND] = ACTIONS(6858), + }, + [STATE(3819)] = { + [sym_identifier] = ACTIONS(8903), + [sym_newline] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8903), + [aux_sym_frm_property_statement_token1] = ACTIONS(8903), + [anon_sym_DOT] = ACTIONS(8903), + [anon_sym_BANG] = ACTIONS(8905), + [aux_sym__attribute_identifier_token1] = ACTIONS(8903), + [aux_sym_option_statement_token3] = ACTIONS(8903), + [aux_sym_type_declaration_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8903), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8903), + [aux_sym_enum_declaration_token1] = ACTIONS(8903), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8903), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8903), + [aux_sym_declare_function_statement_token1] = ACTIONS(8903), + [aux_sym_preprocessor_const_token1] = ACTIONS(8903), + [aux_sym__property_get_header_token1] = ACTIONS(8903), + [aux_sym_event_declaration_token1] = ACTIONS(8903), + [sym_static_modifier] = ACTIONS(8903), + [sym__dim_keyword] = ACTIONS(8903), + [sym__redim_keyword] = ACTIONS(8903), + [aux_sym_get_accessor_token1] = ACTIONS(8903), + [aux_sym_set_accessor_token1] = ACTIONS(8903), + [aux_sym_const_declaration_token1] = ACTIONS(8903), + [anon_sym_LPAREN] = ACTIONS(8905), + [aux_sym_as_type_clause_token2] = ACTIONS(8903), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8903), + [aux_sym_visibility_token1] = ACTIONS(8903), + [aux_sym_visibility_token2] = ACTIONS(8903), + [aux_sym_elseif_fragment_token1] = ACTIONS(8903), + [aux_sym_else_fragment_token1] = ACTIONS(8903), + [aux_sym_select_statement_token1] = ACTIONS(8903), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8903), + [aux_sym__for_header_token1] = ACTIONS(8903), + [aux_sym_do_statement_token1] = ACTIONS(8903), + [aux_sym_do_condition_token1] = ACTIONS(8903), + [aux_sym_with_statement_token1] = ACTIONS(8903), + [aux_sym_exit_statement_token1] = ACTIONS(8903), + [sym_end_statement] = ACTIONS(8905), + [aux_sym_on_goto_statement_token1] = ACTIONS(8903), + [aux_sym_on_goto_statement_token2] = ACTIONS(8903), + [aux_sym_on_error_statement_token2] = ACTIONS(8903), + [sym__ambiguous_redim_statement] = ACTIONS(8905), + [aux_sym_erase_statement_token1] = ACTIONS(8903), + [aux_sym_open_statement_token1] = ACTIONS(8903), + [aux_sym_file_mode_token2] = ACTIONS(8903), + [aux_sym_file_access_token2] = ACTIONS(8903), + [aux_sym_file_lock_token2] = ACTIONS(8903), + [aux_sym_print_statement_token1] = ACTIONS(8903), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_DASH] = ACTIONS(8903), + [anon_sym_QMARK] = ACTIONS(8905), + [aux_sym_close_statement_token1] = ACTIONS(8903), + [aux_sym_put_statement_token1] = ACTIONS(8903), + [aux_sym_unlock_statement_token1] = ACTIONS(8903), + [aux_sym_seek_statement_token1] = ACTIONS(8903), + [sym_reset_statement] = ACTIONS(8903), + [aux_sym_raise_event_statement_token1] = ACTIONS(8903), + [sym_stop_statement] = ACTIONS(8903), + [sym_beep_statement] = ACTIONS(8903), + [aux_sym_unload_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token2] = ACTIONS(8903), + [aux_sym_def_type_statement_token3] = ACTIONS(8903), + [aux_sym_def_type_statement_token4] = ACTIONS(8903), + [aux_sym_def_type_statement_token5] = ACTIONS(8903), + [aux_sym_def_type_statement_token6] = ACTIONS(8903), + [aux_sym_def_type_statement_token7] = ACTIONS(8903), + [aux_sym_def_type_statement_token8] = ACTIONS(8903), + [aux_sym_def_type_statement_token9] = ACTIONS(8903), + [aux_sym_def_type_statement_token10] = ACTIONS(8903), + [aux_sym_def_type_statement_token11] = ACTIONS(8903), + [aux_sym_def_type_statement_token12] = ACTIONS(8903), + [aux_sym_def_type_statement_token13] = ACTIONS(8903), + [aux_sym_def_type_statement_token14] = ACTIONS(8903), + [aux_sym_call_statement_token1] = ACTIONS(8903), + [sym__ambiguous_call_statement] = ACTIONS(8903), + [aux_sym_addressof_expression_token1] = ACTIONS(8903), + [aux_sym_type_of_expression_token1] = ACTIONS(8903), + [aux_sym_unary_expression_token1] = ACTIONS(8903), + [sym_string_literal] = ACTIONS(8905), + [sym_number_literal] = ACTIONS(8905), + [aux_sym_boolean_literal_token1] = ACTIONS(8903), + [aux_sym_boolean_literal_token2] = ACTIONS(8903), + [sym_nothing_literal] = ACTIONS(8903), + [sym_null_literal] = ACTIONS(8903), + [sym_empty_literal] = ACTIONS(8903), + [sym_date_literal] = ACTIONS(8905), + [anon_sym_POUND] = ACTIONS(8903), + }, + [STATE(3820)] = { + [sym_next_variable_list] = STATE(5029), + [sym__assignable_expression] = STATE(4645), + [sym__callable_expression] = STATE(4647), + [sym_call_expression] = STATE(4663), + [sym_member_expression] = STATE(4783), + [sym_qualified_member_expression] = STATE(4804), + [sym_implicit_member_expression] = STATE(4804), + [sym_identifier] = ACTIONS(8889), + [sym_newline] = ACTIONS(6867), + [anon_sym_COLON] = ACTIONS(6867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6869), + [aux_sym_frm_property_statement_token1] = ACTIONS(8891), + [anon_sym_DOT] = ACTIONS(8893), + [anon_sym_BANG] = ACTIONS(8895), + [aux_sym__attribute_identifier_token1] = ACTIONS(6869), + [aux_sym_option_statement_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6869), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6869), + [aux_sym_preprocessor_const_token1] = ACTIONS(6869), + [sym_static_modifier] = ACTIONS(6869), + [sym__dim_keyword] = ACTIONS(6869), + [sym__redim_keyword] = ACTIONS(6869), + [aux_sym_get_accessor_token1] = ACTIONS(6869), + [aux_sym_set_accessor_token1] = ACTIONS(6869), + [aux_sym_const_declaration_token1] = ACTIONS(6869), + [anon_sym_LPAREN] = ACTIONS(6867), + [aux_sym_as_type_clause_token2] = ACTIONS(6869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8897), + [aux_sym_visibility_token1] = ACTIONS(6869), + [aux_sym_visibility_token2] = ACTIONS(6869), + [aux_sym_elseif_fragment_token1] = ACTIONS(6869), + [aux_sym_else_fragment_token1] = ACTIONS(6869), + [aux_sym_select_statement_token1] = ACTIONS(6869), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6869), + [aux_sym__for_header_token1] = ACTIONS(6869), + [aux_sym_do_statement_token1] = ACTIONS(6869), + [aux_sym_do_condition_token1] = ACTIONS(6869), + [aux_sym_with_statement_token1] = ACTIONS(6869), + [aux_sym_exit_statement_token1] = ACTIONS(6869), + [sym_end_statement] = ACTIONS(6867), + [aux_sym_on_goto_statement_token1] = ACTIONS(6869), + [aux_sym_on_goto_statement_token2] = ACTIONS(6869), + [aux_sym_on_error_statement_token2] = ACTIONS(6869), + [sym__ambiguous_redim_statement] = ACTIONS(6867), + [aux_sym_erase_statement_token1] = ACTIONS(6869), + [aux_sym_open_statement_token1] = ACTIONS(6869), + [aux_sym_file_mode_token2] = ACTIONS(6869), + [aux_sym_file_access_token2] = ACTIONS(6869), + [aux_sym_file_lock_token2] = ACTIONS(6869), + [aux_sym_print_statement_token1] = ACTIONS(6869), + [anon_sym_PLUS] = ACTIONS(6867), + [anon_sym_DASH] = ACTIONS(6869), + [anon_sym_QMARK] = ACTIONS(6867), + [aux_sym_close_statement_token1] = ACTIONS(6869), + [aux_sym_put_statement_token1] = ACTIONS(6869), + [aux_sym_unlock_statement_token1] = ACTIONS(6869), + [aux_sym_seek_statement_token1] = ACTIONS(6869), + [sym_reset_statement] = ACTIONS(6869), + [aux_sym_raise_event_statement_token1] = ACTIONS(6869), + [sym_stop_statement] = ACTIONS(6869), + [sym_beep_statement] = ACTIONS(6869), + [aux_sym_unload_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token2] = ACTIONS(6869), + [aux_sym_def_type_statement_token3] = ACTIONS(6869), + [aux_sym_def_type_statement_token4] = ACTIONS(6869), + [aux_sym_def_type_statement_token5] = ACTIONS(6869), + [aux_sym_def_type_statement_token6] = ACTIONS(6869), + [aux_sym_def_type_statement_token7] = ACTIONS(6869), + [aux_sym_def_type_statement_token8] = ACTIONS(6869), + [aux_sym_def_type_statement_token9] = ACTIONS(6869), + [aux_sym_def_type_statement_token10] = ACTIONS(6869), + [aux_sym_def_type_statement_token11] = ACTIONS(6869), + [aux_sym_def_type_statement_token12] = ACTIONS(6869), + [aux_sym_def_type_statement_token13] = ACTIONS(6869), + [aux_sym_def_type_statement_token14] = ACTIONS(6869), + [aux_sym_call_statement_token1] = ACTIONS(6869), + [sym__ambiguous_call_statement] = ACTIONS(6869), + [aux_sym_addressof_expression_token1] = ACTIONS(6869), + [aux_sym_type_of_expression_token1] = ACTIONS(6869), + [aux_sym_unary_expression_token1] = ACTIONS(6869), + [sym_string_literal] = ACTIONS(6867), + [sym_number_literal] = ACTIONS(6867), + [aux_sym_boolean_literal_token1] = ACTIONS(6869), + [aux_sym_boolean_literal_token2] = ACTIONS(6869), + [sym_nothing_literal] = ACTIONS(6869), + [sym_null_literal] = ACTIONS(6869), + [sym_empty_literal] = ACTIONS(6869), + [sym_date_literal] = ACTIONS(6867), + [anon_sym_POUND] = ACTIONS(6869), + }, + [STATE(3821)] = { + [sym_next_variable_list] = STATE(5030), + [sym__assignable_expression] = STATE(4645), + [sym__callable_expression] = STATE(4647), + [sym_call_expression] = STATE(4663), + [sym_member_expression] = STATE(4783), + [sym_qualified_member_expression] = STATE(4804), + [sym_implicit_member_expression] = STATE(4804), + [sym_identifier] = ACTIONS(8889), + [sym_newline] = ACTIONS(6810), + [anon_sym_COLON] = ACTIONS(6810), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6812), + [aux_sym_frm_property_statement_token1] = ACTIONS(8891), + [anon_sym_DOT] = ACTIONS(8893), + [anon_sym_BANG] = ACTIONS(8895), + [aux_sym__attribute_identifier_token1] = ACTIONS(6812), + [aux_sym_option_statement_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6812), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6812), + [aux_sym_preprocessor_const_token1] = ACTIONS(6812), + [sym_static_modifier] = ACTIONS(6812), + [sym__dim_keyword] = ACTIONS(6812), + [sym__redim_keyword] = ACTIONS(6812), + [aux_sym_get_accessor_token1] = ACTIONS(6812), + [aux_sym_set_accessor_token1] = ACTIONS(6812), + [aux_sym_const_declaration_token1] = ACTIONS(6812), + [anon_sym_LPAREN] = ACTIONS(6810), + [aux_sym_as_type_clause_token2] = ACTIONS(6812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8897), + [aux_sym_visibility_token1] = ACTIONS(6812), + [aux_sym_visibility_token2] = ACTIONS(6812), + [aux_sym_elseif_fragment_token1] = ACTIONS(6812), + [aux_sym_else_fragment_token1] = ACTIONS(6812), + [aux_sym_select_statement_token1] = ACTIONS(6812), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6812), + [aux_sym__for_header_token1] = ACTIONS(6812), + [aux_sym_do_statement_token1] = ACTIONS(6812), + [aux_sym_do_condition_token1] = ACTIONS(6812), + [aux_sym_with_statement_token1] = ACTIONS(6812), + [aux_sym_exit_statement_token1] = ACTIONS(6812), + [sym_end_statement] = ACTIONS(6810), + [aux_sym_on_goto_statement_token1] = ACTIONS(6812), + [aux_sym_on_goto_statement_token2] = ACTIONS(6812), + [aux_sym_on_error_statement_token2] = ACTIONS(6812), + [sym__ambiguous_redim_statement] = ACTIONS(6810), + [aux_sym_erase_statement_token1] = ACTIONS(6812), + [aux_sym_open_statement_token1] = ACTIONS(6812), + [aux_sym_file_mode_token2] = ACTIONS(6812), + [aux_sym_file_access_token2] = ACTIONS(6812), + [aux_sym_file_lock_token2] = ACTIONS(6812), + [aux_sym_print_statement_token1] = ACTIONS(6812), + [anon_sym_PLUS] = ACTIONS(6810), + [anon_sym_DASH] = ACTIONS(6812), + [anon_sym_QMARK] = ACTIONS(6810), + [aux_sym_close_statement_token1] = ACTIONS(6812), + [aux_sym_put_statement_token1] = ACTIONS(6812), + [aux_sym_unlock_statement_token1] = ACTIONS(6812), + [aux_sym_seek_statement_token1] = ACTIONS(6812), + [sym_reset_statement] = ACTIONS(6812), + [aux_sym_raise_event_statement_token1] = ACTIONS(6812), + [sym_stop_statement] = ACTIONS(6812), + [sym_beep_statement] = ACTIONS(6812), + [aux_sym_unload_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token2] = ACTIONS(6812), + [aux_sym_def_type_statement_token3] = ACTIONS(6812), + [aux_sym_def_type_statement_token4] = ACTIONS(6812), + [aux_sym_def_type_statement_token5] = ACTIONS(6812), + [aux_sym_def_type_statement_token6] = ACTIONS(6812), + [aux_sym_def_type_statement_token7] = ACTIONS(6812), + [aux_sym_def_type_statement_token8] = ACTIONS(6812), + [aux_sym_def_type_statement_token9] = ACTIONS(6812), + [aux_sym_def_type_statement_token10] = ACTIONS(6812), + [aux_sym_def_type_statement_token11] = ACTIONS(6812), + [aux_sym_def_type_statement_token12] = ACTIONS(6812), + [aux_sym_def_type_statement_token13] = ACTIONS(6812), + [aux_sym_def_type_statement_token14] = ACTIONS(6812), + [aux_sym_call_statement_token1] = ACTIONS(6812), + [sym__ambiguous_call_statement] = ACTIONS(6812), + [aux_sym_addressof_expression_token1] = ACTIONS(6812), + [aux_sym_type_of_expression_token1] = ACTIONS(6812), + [aux_sym_unary_expression_token1] = ACTIONS(6812), + [sym_string_literal] = ACTIONS(6810), + [sym_number_literal] = ACTIONS(6810), + [aux_sym_boolean_literal_token1] = ACTIONS(6812), + [aux_sym_boolean_literal_token2] = ACTIONS(6812), + [sym_nothing_literal] = ACTIONS(6812), + [sym_null_literal] = ACTIONS(6812), + [sym_empty_literal] = ACTIONS(6812), + [sym_date_literal] = ACTIONS(6810), + [anon_sym_POUND] = ACTIONS(6812), + }, + [STATE(3822)] = { + [sym_identifier] = ACTIONS(8907), + [sym_newline] = ACTIONS(8909), + [anon_sym_COLON] = ACTIONS(8909), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8907), + [aux_sym_frm_property_statement_token1] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8907), + [anon_sym_BANG] = ACTIONS(8909), + [aux_sym__attribute_identifier_token1] = ACTIONS(8907), + [aux_sym_option_statement_token3] = ACTIONS(8907), + [aux_sym_type_declaration_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8907), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8907), + [aux_sym_enum_declaration_token1] = ACTIONS(8907), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8907), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8907), + [aux_sym_declare_function_statement_token1] = ACTIONS(8907), + [aux_sym_preprocessor_const_token1] = ACTIONS(8907), + [aux_sym__property_get_header_token1] = ACTIONS(8907), + [aux_sym_event_declaration_token1] = ACTIONS(8907), + [sym_static_modifier] = ACTIONS(8907), + [sym__dim_keyword] = ACTIONS(8907), + [sym__redim_keyword] = ACTIONS(8907), + [aux_sym_get_accessor_token1] = ACTIONS(8907), + [aux_sym_set_accessor_token1] = ACTIONS(8907), + [aux_sym_const_declaration_token1] = ACTIONS(8907), + [anon_sym_LPAREN] = ACTIONS(8909), + [aux_sym_as_type_clause_token2] = ACTIONS(8907), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8907), + [aux_sym_visibility_token1] = ACTIONS(8907), + [aux_sym_visibility_token2] = ACTIONS(8907), + [aux_sym_elseif_fragment_token1] = ACTIONS(8907), + [aux_sym_else_fragment_token1] = ACTIONS(8907), + [aux_sym_select_statement_token1] = ACTIONS(8907), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8907), + [aux_sym__for_header_token1] = ACTIONS(8907), + [aux_sym_do_statement_token1] = ACTIONS(8907), + [aux_sym_do_condition_token1] = ACTIONS(8907), + [aux_sym_with_statement_token1] = ACTIONS(8907), + [aux_sym_exit_statement_token1] = ACTIONS(8907), + [sym_end_statement] = ACTIONS(8909), + [aux_sym_on_goto_statement_token1] = ACTIONS(8907), + [aux_sym_on_goto_statement_token2] = ACTIONS(8907), + [aux_sym_on_error_statement_token2] = ACTIONS(8907), + [sym__ambiguous_redim_statement] = ACTIONS(8909), + [aux_sym_erase_statement_token1] = ACTIONS(8907), + [aux_sym_open_statement_token1] = ACTIONS(8907), + [aux_sym_file_mode_token2] = ACTIONS(8907), + [aux_sym_file_access_token2] = ACTIONS(8907), + [aux_sym_file_lock_token2] = ACTIONS(8907), + [aux_sym_print_statement_token1] = ACTIONS(8907), + [anon_sym_PLUS] = ACTIONS(8909), + [anon_sym_DASH] = ACTIONS(8907), + [anon_sym_QMARK] = ACTIONS(8909), + [aux_sym_close_statement_token1] = ACTIONS(8907), + [aux_sym_put_statement_token1] = ACTIONS(8907), + [aux_sym_unlock_statement_token1] = ACTIONS(8907), + [aux_sym_seek_statement_token1] = ACTIONS(8907), + [sym_reset_statement] = ACTIONS(8907), + [aux_sym_raise_event_statement_token1] = ACTIONS(8907), + [sym_stop_statement] = ACTIONS(8907), + [sym_beep_statement] = ACTIONS(8907), + [aux_sym_unload_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token2] = ACTIONS(8907), + [aux_sym_def_type_statement_token3] = ACTIONS(8907), + [aux_sym_def_type_statement_token4] = ACTIONS(8907), + [aux_sym_def_type_statement_token5] = ACTIONS(8907), + [aux_sym_def_type_statement_token6] = ACTIONS(8907), + [aux_sym_def_type_statement_token7] = ACTIONS(8907), + [aux_sym_def_type_statement_token8] = ACTIONS(8907), + [aux_sym_def_type_statement_token9] = ACTIONS(8907), + [aux_sym_def_type_statement_token10] = ACTIONS(8907), + [aux_sym_def_type_statement_token11] = ACTIONS(8907), + [aux_sym_def_type_statement_token12] = ACTIONS(8907), + [aux_sym_def_type_statement_token13] = ACTIONS(8907), + [aux_sym_def_type_statement_token14] = ACTIONS(8907), + [aux_sym_call_statement_token1] = ACTIONS(8907), + [sym__ambiguous_call_statement] = ACTIONS(8907), + [aux_sym_addressof_expression_token1] = ACTIONS(8907), + [aux_sym_type_of_expression_token1] = ACTIONS(8907), + [aux_sym_unary_expression_token1] = ACTIONS(8907), + [sym_string_literal] = ACTIONS(8909), + [sym_number_literal] = ACTIONS(8909), + [aux_sym_boolean_literal_token1] = ACTIONS(8907), + [aux_sym_boolean_literal_token2] = ACTIONS(8907), + [sym_nothing_literal] = ACTIONS(8907), + [sym_null_literal] = ACTIONS(8907), + [sym_empty_literal] = ACTIONS(8907), + [sym_date_literal] = ACTIONS(8909), + [anon_sym_POUND] = ACTIONS(8907), + }, + [STATE(3823)] = { + [sym_identifier] = ACTIONS(8911), + [sym_newline] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8911), + [aux_sym_frm_property_statement_token1] = ACTIONS(8911), + [anon_sym_DOT] = ACTIONS(8911), + [anon_sym_BANG] = ACTIONS(8913), + [aux_sym__attribute_identifier_token1] = ACTIONS(8911), + [aux_sym_option_statement_token3] = ACTIONS(8911), + [aux_sym_type_declaration_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8911), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8911), + [aux_sym_enum_declaration_token1] = ACTIONS(8911), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8911), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8911), + [aux_sym_declare_function_statement_token1] = ACTIONS(8911), + [aux_sym_preprocessor_const_token1] = ACTIONS(8911), + [aux_sym__property_get_header_token1] = ACTIONS(8911), + [aux_sym_event_declaration_token1] = ACTIONS(8911), + [sym_static_modifier] = ACTIONS(8911), + [sym__dim_keyword] = ACTIONS(8911), + [sym__redim_keyword] = ACTIONS(8911), + [aux_sym_get_accessor_token1] = ACTIONS(8911), + [aux_sym_set_accessor_token1] = ACTIONS(8911), + [aux_sym_const_declaration_token1] = ACTIONS(8911), + [anon_sym_LPAREN] = ACTIONS(8913), + [aux_sym_as_type_clause_token2] = ACTIONS(8911), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8911), + [aux_sym_visibility_token1] = ACTIONS(8911), + [aux_sym_visibility_token2] = ACTIONS(8911), + [aux_sym_elseif_fragment_token1] = ACTIONS(8911), + [aux_sym_else_fragment_token1] = ACTIONS(8911), + [aux_sym_select_statement_token1] = ACTIONS(8911), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8911), + [aux_sym__for_header_token1] = ACTIONS(8911), + [aux_sym_do_statement_token1] = ACTIONS(8911), + [aux_sym_do_condition_token1] = ACTIONS(8911), + [aux_sym_with_statement_token1] = ACTIONS(8911), + [aux_sym_exit_statement_token1] = ACTIONS(8911), + [sym_end_statement] = ACTIONS(8913), + [aux_sym_on_goto_statement_token1] = ACTIONS(8911), + [aux_sym_on_goto_statement_token2] = ACTIONS(8911), + [aux_sym_on_error_statement_token2] = ACTIONS(8911), + [sym__ambiguous_redim_statement] = ACTIONS(8913), + [aux_sym_erase_statement_token1] = ACTIONS(8911), + [aux_sym_open_statement_token1] = ACTIONS(8911), + [aux_sym_file_mode_token2] = ACTIONS(8911), + [aux_sym_file_access_token2] = ACTIONS(8911), + [aux_sym_file_lock_token2] = ACTIONS(8911), + [aux_sym_print_statement_token1] = ACTIONS(8911), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_DASH] = ACTIONS(8911), + [anon_sym_QMARK] = ACTIONS(8913), + [aux_sym_close_statement_token1] = ACTIONS(8911), + [aux_sym_put_statement_token1] = ACTIONS(8911), + [aux_sym_unlock_statement_token1] = ACTIONS(8911), + [aux_sym_seek_statement_token1] = ACTIONS(8911), + [sym_reset_statement] = ACTIONS(8911), + [aux_sym_raise_event_statement_token1] = ACTIONS(8911), + [sym_stop_statement] = ACTIONS(8911), + [sym_beep_statement] = ACTIONS(8911), + [aux_sym_unload_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token2] = ACTIONS(8911), + [aux_sym_def_type_statement_token3] = ACTIONS(8911), + [aux_sym_def_type_statement_token4] = ACTIONS(8911), + [aux_sym_def_type_statement_token5] = ACTIONS(8911), + [aux_sym_def_type_statement_token6] = ACTIONS(8911), + [aux_sym_def_type_statement_token7] = ACTIONS(8911), + [aux_sym_def_type_statement_token8] = ACTIONS(8911), + [aux_sym_def_type_statement_token9] = ACTIONS(8911), + [aux_sym_def_type_statement_token10] = ACTIONS(8911), + [aux_sym_def_type_statement_token11] = ACTIONS(8911), + [aux_sym_def_type_statement_token12] = ACTIONS(8911), + [aux_sym_def_type_statement_token13] = ACTIONS(8911), + [aux_sym_def_type_statement_token14] = ACTIONS(8911), + [aux_sym_call_statement_token1] = ACTIONS(8911), + [sym__ambiguous_call_statement] = ACTIONS(8911), + [aux_sym_addressof_expression_token1] = ACTIONS(8911), + [aux_sym_type_of_expression_token1] = ACTIONS(8911), + [aux_sym_unary_expression_token1] = ACTIONS(8911), + [sym_string_literal] = ACTIONS(8913), + [sym_number_literal] = ACTIONS(8913), + [aux_sym_boolean_literal_token1] = ACTIONS(8911), + [aux_sym_boolean_literal_token2] = ACTIONS(8911), + [sym_nothing_literal] = ACTIONS(8911), + [sym_null_literal] = ACTIONS(8911), + [sym_empty_literal] = ACTIONS(8911), + [sym_date_literal] = ACTIONS(8913), + [anon_sym_POUND] = ACTIONS(8911), + }, + [STATE(3824)] = { + [sym_identifier] = ACTIONS(8915), + [sym_newline] = ACTIONS(8918), + [anon_sym_COLON] = ACTIONS(8918), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8915), + [aux_sym_frm_property_statement_token1] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8915), + [anon_sym_BANG] = ACTIONS(8918), + [aux_sym__attribute_identifier_token1] = ACTIONS(8915), + [aux_sym_option_statement_token3] = ACTIONS(8915), + [aux_sym_type_declaration_token1] = ACTIONS(8921), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8921), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8915), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8921), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8921), + [aux_sym_enum_declaration_token1] = ACTIONS(8921), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8921), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8921), + [aux_sym_declare_function_statement_token1] = ACTIONS(8921), + [aux_sym_preprocessor_const_token1] = ACTIONS(8915), + [aux_sym__property_get_header_token1] = ACTIONS(8921), + [aux_sym_event_declaration_token1] = ACTIONS(8921), + [sym_static_modifier] = ACTIONS(8915), + [sym__dim_keyword] = ACTIONS(8915), + [sym__redim_keyword] = ACTIONS(8915), + [aux_sym_get_accessor_token1] = ACTIONS(8915), + [aux_sym_set_accessor_token1] = ACTIONS(8915), + [aux_sym_const_declaration_token1] = ACTIONS(8915), + [anon_sym_LPAREN] = ACTIONS(8918), + [aux_sym_as_type_clause_token2] = ACTIONS(8915), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8915), + [aux_sym_visibility_token1] = ACTIONS(8915), + [aux_sym_visibility_token2] = ACTIONS(8915), + [aux_sym_elseif_fragment_token1] = ACTIONS(8915), + [aux_sym_else_fragment_token1] = ACTIONS(8915), + [aux_sym_select_statement_token1] = ACTIONS(8915), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8915), + [aux_sym__for_header_token1] = ACTIONS(8915), + [aux_sym_do_statement_token1] = ACTIONS(8915), + [aux_sym_do_condition_token1] = ACTIONS(8915), + [aux_sym_with_statement_token1] = ACTIONS(8915), + [aux_sym_exit_statement_token1] = ACTIONS(8915), + [sym_end_statement] = ACTIONS(8918), + [aux_sym_on_goto_statement_token1] = ACTIONS(8915), + [aux_sym_on_goto_statement_token2] = ACTIONS(8915), + [aux_sym_on_error_statement_token2] = ACTIONS(8915), + [sym__ambiguous_redim_statement] = ACTIONS(8918), + [aux_sym_erase_statement_token1] = ACTIONS(8915), + [aux_sym_open_statement_token1] = ACTIONS(8915), + [aux_sym_file_mode_token2] = ACTIONS(8915), + [aux_sym_file_access_token2] = ACTIONS(8915), + [aux_sym_file_lock_token2] = ACTIONS(8915), + [aux_sym_print_statement_token1] = ACTIONS(8915), + [anon_sym_PLUS] = ACTIONS(8918), + [anon_sym_DASH] = ACTIONS(8915), + [anon_sym_QMARK] = ACTIONS(8918), + [aux_sym_close_statement_token1] = ACTIONS(8915), + [aux_sym_put_statement_token1] = ACTIONS(8915), + [aux_sym_unlock_statement_token1] = ACTIONS(8915), + [aux_sym_seek_statement_token1] = ACTIONS(8915), + [sym_reset_statement] = ACTIONS(8915), + [aux_sym_raise_event_statement_token1] = ACTIONS(8915), + [sym_stop_statement] = ACTIONS(8915), + [sym_beep_statement] = ACTIONS(8915), + [aux_sym_unload_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token2] = ACTIONS(8915), + [aux_sym_def_type_statement_token3] = ACTIONS(8915), + [aux_sym_def_type_statement_token4] = ACTIONS(8915), + [aux_sym_def_type_statement_token5] = ACTIONS(8915), + [aux_sym_def_type_statement_token6] = ACTIONS(8915), + [aux_sym_def_type_statement_token7] = ACTIONS(8915), + [aux_sym_def_type_statement_token8] = ACTIONS(8915), + [aux_sym_def_type_statement_token9] = ACTIONS(8915), + [aux_sym_def_type_statement_token10] = ACTIONS(8915), + [aux_sym_def_type_statement_token11] = ACTIONS(8915), + [aux_sym_def_type_statement_token12] = ACTIONS(8915), + [aux_sym_def_type_statement_token13] = ACTIONS(8915), + [aux_sym_def_type_statement_token14] = ACTIONS(8915), + [aux_sym_call_statement_token1] = ACTIONS(8915), + [sym__ambiguous_call_statement] = ACTIONS(8915), + [aux_sym_addressof_expression_token1] = ACTIONS(8915), + [aux_sym_type_of_expression_token1] = ACTIONS(8915), + [aux_sym_unary_expression_token1] = ACTIONS(8915), + [sym_string_literal] = ACTIONS(8918), + [sym_number_literal] = ACTIONS(8918), + [aux_sym_boolean_literal_token1] = ACTIONS(8915), + [aux_sym_boolean_literal_token2] = ACTIONS(8915), + [sym_nothing_literal] = ACTIONS(8915), + [sym_null_literal] = ACTIONS(8915), + [sym_empty_literal] = ACTIONS(8915), + [sym_date_literal] = ACTIONS(8918), + [anon_sym_POUND] = ACTIONS(8915), + }, + [STATE(3825)] = { + [sym_identifier] = ACTIONS(8923), + [sym_newline] = ACTIONS(8925), + [anon_sym_COLON] = ACTIONS(8925), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8923), + [aux_sym_frm_property_statement_token1] = ACTIONS(8923), + [anon_sym_DOT] = ACTIONS(8923), + [anon_sym_BANG] = ACTIONS(8925), + [aux_sym__attribute_identifier_token1] = ACTIONS(8923), + [aux_sym_option_statement_token3] = ACTIONS(8923), + [aux_sym_type_declaration_token1] = ACTIONS(8923), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8923), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8923), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8923), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8923), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8923), + [aux_sym_enum_declaration_token1] = ACTIONS(8923), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8923), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8923), + [aux_sym_declare_function_statement_token1] = ACTIONS(8923), + [aux_sym_preprocessor_const_token1] = ACTIONS(8923), + [aux_sym__property_get_header_token1] = ACTIONS(8923), + [aux_sym_event_declaration_token1] = ACTIONS(8923), + [sym_static_modifier] = ACTIONS(8923), + [sym__dim_keyword] = ACTIONS(8923), + [sym__redim_keyword] = ACTIONS(8923), + [aux_sym_get_accessor_token1] = ACTIONS(8923), + [aux_sym_set_accessor_token1] = ACTIONS(8923), + [aux_sym_const_declaration_token1] = ACTIONS(8923), + [anon_sym_LPAREN] = ACTIONS(8925), + [aux_sym_as_type_clause_token1] = ACTIONS(8923), + [aux_sym_as_type_clause_token2] = ACTIONS(8923), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8923), + [aux_sym_visibility_token1] = ACTIONS(8923), + [aux_sym_visibility_token2] = ACTIONS(8923), + [aux_sym_elseif_fragment_token1] = ACTIONS(8923), + [aux_sym_else_fragment_token1] = ACTIONS(8923), + [aux_sym_select_statement_token1] = ACTIONS(8923), + [aux_sym__for_header_token1] = ACTIONS(8923), + [aux_sym_do_statement_token1] = ACTIONS(8923), + [aux_sym_do_condition_token1] = ACTIONS(8923), + [aux_sym_with_statement_token1] = ACTIONS(8923), + [aux_sym_exit_statement_token1] = ACTIONS(8923), + [sym_end_statement] = ACTIONS(8925), + [aux_sym_on_goto_statement_token1] = ACTIONS(8923), + [aux_sym_on_goto_statement_token2] = ACTIONS(8923), + [aux_sym_on_error_statement_token2] = ACTIONS(8923), + [sym__ambiguous_redim_statement] = ACTIONS(8925), + [aux_sym_erase_statement_token1] = ACTIONS(8923), + [aux_sym_open_statement_token1] = ACTIONS(8923), + [aux_sym_file_mode_token2] = ACTIONS(8923), + [aux_sym_file_access_token2] = ACTIONS(8923), + [aux_sym_file_lock_token2] = ACTIONS(8923), + [aux_sym_print_statement_token1] = ACTIONS(8923), + [anon_sym_PLUS] = ACTIONS(8925), + [anon_sym_DASH] = ACTIONS(8923), + [anon_sym_QMARK] = ACTIONS(8925), + [aux_sym_close_statement_token1] = ACTIONS(8923), + [aux_sym_put_statement_token1] = ACTIONS(8923), + [aux_sym_unlock_statement_token1] = ACTIONS(8923), + [aux_sym_seek_statement_token1] = ACTIONS(8923), + [sym_reset_statement] = ACTIONS(8923), + [aux_sym_raise_event_statement_token1] = ACTIONS(8923), + [sym_stop_statement] = ACTIONS(8923), + [sym_beep_statement] = ACTIONS(8923), + [aux_sym_unload_statement_token1] = ACTIONS(8923), + [aux_sym_def_type_statement_token1] = ACTIONS(8923), + [aux_sym_def_type_statement_token2] = ACTIONS(8923), + [aux_sym_def_type_statement_token3] = ACTIONS(8923), + [aux_sym_def_type_statement_token4] = ACTIONS(8923), + [aux_sym_def_type_statement_token5] = ACTIONS(8923), + [aux_sym_def_type_statement_token6] = ACTIONS(8923), + [aux_sym_def_type_statement_token7] = ACTIONS(8923), + [aux_sym_def_type_statement_token8] = ACTIONS(8923), + [aux_sym_def_type_statement_token9] = ACTIONS(8923), + [aux_sym_def_type_statement_token10] = ACTIONS(8923), + [aux_sym_def_type_statement_token11] = ACTIONS(8923), + [aux_sym_def_type_statement_token12] = ACTIONS(8923), + [aux_sym_def_type_statement_token13] = ACTIONS(8923), + [aux_sym_def_type_statement_token14] = ACTIONS(8923), + [aux_sym_call_statement_token1] = ACTIONS(8923), + [sym__ambiguous_call_statement] = ACTIONS(8923), + [aux_sym_addressof_expression_token1] = ACTIONS(8923), + [aux_sym_type_of_expression_token1] = ACTIONS(8923), + [aux_sym_unary_expression_token1] = ACTIONS(8923), + [sym_string_literal] = ACTIONS(8925), + [sym_number_literal] = ACTIONS(8925), + [aux_sym_boolean_literal_token1] = ACTIONS(8923), + [aux_sym_boolean_literal_token2] = ACTIONS(8923), + [sym_nothing_literal] = ACTIONS(8923), + [sym_null_literal] = ACTIONS(8923), + [sym_empty_literal] = ACTIONS(8923), + [sym_date_literal] = ACTIONS(8925), + [anon_sym_POUND] = ACTIONS(8923), + }, + [STATE(3826)] = { + [sym_identifier] = ACTIONS(8927), + [sym_newline] = ACTIONS(8929), + [anon_sym_COLON] = ACTIONS(8929), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8927), + [aux_sym_frm_property_statement_token1] = ACTIONS(8927), + [anon_sym_DOT] = ACTIONS(8927), + [anon_sym_BANG] = ACTIONS(8929), + [aux_sym__attribute_identifier_token1] = ACTIONS(8927), + [aux_sym_option_statement_token3] = ACTIONS(8927), + [aux_sym_type_declaration_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8927), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8927), + [aux_sym_enum_declaration_token1] = ACTIONS(8927), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8927), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8927), + [aux_sym_declare_function_statement_token1] = ACTIONS(8927), + [aux_sym_preprocessor_const_token1] = ACTIONS(8927), + [aux_sym__property_get_header_token1] = ACTIONS(8927), + [aux_sym_event_declaration_token1] = ACTIONS(8927), + [sym_static_modifier] = ACTIONS(8927), + [sym__dim_keyword] = ACTIONS(8927), + [sym__redim_keyword] = ACTIONS(8927), + [aux_sym_get_accessor_token1] = ACTIONS(8927), + [aux_sym_set_accessor_token1] = ACTIONS(8927), + [aux_sym_const_declaration_token1] = ACTIONS(8927), + [anon_sym_LPAREN] = ACTIONS(8929), + [aux_sym_as_type_clause_token2] = ACTIONS(8927), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8927), + [aux_sym_visibility_token1] = ACTIONS(8927), + [aux_sym_visibility_token2] = ACTIONS(8927), + [aux_sym_elseif_fragment_token1] = ACTIONS(8927), + [aux_sym_else_fragment_token1] = ACTIONS(8927), + [aux_sym_select_statement_token1] = ACTIONS(8927), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8927), + [aux_sym__for_header_token1] = ACTIONS(8927), + [aux_sym_do_statement_token1] = ACTIONS(8927), + [aux_sym_do_condition_token1] = ACTIONS(8927), + [aux_sym_with_statement_token1] = ACTIONS(8927), + [aux_sym_exit_statement_token1] = ACTIONS(8927), + [sym_end_statement] = ACTIONS(8929), + [aux_sym_on_goto_statement_token1] = ACTIONS(8927), + [aux_sym_on_goto_statement_token2] = ACTIONS(8927), + [aux_sym_on_error_statement_token2] = ACTIONS(8927), + [sym__ambiguous_redim_statement] = ACTIONS(8929), + [aux_sym_erase_statement_token1] = ACTIONS(8927), + [aux_sym_open_statement_token1] = ACTIONS(8927), + [aux_sym_file_mode_token2] = ACTIONS(8927), + [aux_sym_file_access_token2] = ACTIONS(8927), + [aux_sym_file_lock_token2] = ACTIONS(8927), + [aux_sym_print_statement_token1] = ACTIONS(8927), + [anon_sym_PLUS] = ACTIONS(8929), + [anon_sym_DASH] = ACTIONS(8927), + [anon_sym_QMARK] = ACTIONS(8929), + [aux_sym_close_statement_token1] = ACTIONS(8927), + [aux_sym_put_statement_token1] = ACTIONS(8927), + [aux_sym_unlock_statement_token1] = ACTIONS(8927), + [aux_sym_seek_statement_token1] = ACTIONS(8927), + [sym_reset_statement] = ACTIONS(8927), + [aux_sym_raise_event_statement_token1] = ACTIONS(8927), + [sym_stop_statement] = ACTIONS(8927), + [sym_beep_statement] = ACTIONS(8927), + [aux_sym_unload_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token2] = ACTIONS(8927), + [aux_sym_def_type_statement_token3] = ACTIONS(8927), + [aux_sym_def_type_statement_token4] = ACTIONS(8927), + [aux_sym_def_type_statement_token5] = ACTIONS(8927), + [aux_sym_def_type_statement_token6] = ACTIONS(8927), + [aux_sym_def_type_statement_token7] = ACTIONS(8927), + [aux_sym_def_type_statement_token8] = ACTIONS(8927), + [aux_sym_def_type_statement_token9] = ACTIONS(8927), + [aux_sym_def_type_statement_token10] = ACTIONS(8927), + [aux_sym_def_type_statement_token11] = ACTIONS(8927), + [aux_sym_def_type_statement_token12] = ACTIONS(8927), + [aux_sym_def_type_statement_token13] = ACTIONS(8927), + [aux_sym_def_type_statement_token14] = ACTIONS(8927), + [aux_sym_call_statement_token1] = ACTIONS(8927), + [sym__ambiguous_call_statement] = ACTIONS(8927), + [aux_sym_addressof_expression_token1] = ACTIONS(8927), + [aux_sym_type_of_expression_token1] = ACTIONS(8927), + [aux_sym_unary_expression_token1] = ACTIONS(8927), + [sym_string_literal] = ACTIONS(8929), + [sym_number_literal] = ACTIONS(8929), + [aux_sym_boolean_literal_token1] = ACTIONS(8927), + [aux_sym_boolean_literal_token2] = ACTIONS(8927), + [sym_nothing_literal] = ACTIONS(8927), + [sym_null_literal] = ACTIONS(8927), + [sym_empty_literal] = ACTIONS(8927), + [sym_date_literal] = ACTIONS(8929), + [anon_sym_POUND] = ACTIONS(8927), + }, + [STATE(3827)] = { + [sym_identifier] = ACTIONS(8931), + [sym_newline] = ACTIONS(8933), + [anon_sym_COLON] = ACTIONS(8933), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8931), + [aux_sym_frm_property_statement_token1] = ACTIONS(8931), + [anon_sym_DOT] = ACTIONS(8931), + [anon_sym_BANG] = ACTIONS(8933), + [aux_sym__attribute_identifier_token1] = ACTIONS(8931), + [aux_sym_option_statement_token3] = ACTIONS(8931), + [aux_sym_type_declaration_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8931), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8931), + [aux_sym_enum_declaration_token1] = ACTIONS(8931), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8931), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8931), + [aux_sym_declare_function_statement_token1] = ACTIONS(8931), + [aux_sym_preprocessor_const_token1] = ACTIONS(8931), + [aux_sym__property_get_header_token1] = ACTIONS(8931), + [aux_sym_event_declaration_token1] = ACTIONS(8931), + [sym_static_modifier] = ACTIONS(8931), + [sym__dim_keyword] = ACTIONS(8931), + [sym__redim_keyword] = ACTIONS(8931), + [aux_sym_get_accessor_token1] = ACTIONS(8931), + [aux_sym_set_accessor_token1] = ACTIONS(8931), + [aux_sym_const_declaration_token1] = ACTIONS(8931), + [anon_sym_LPAREN] = ACTIONS(8933), + [aux_sym_as_type_clause_token2] = ACTIONS(8931), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8931), + [aux_sym_visibility_token1] = ACTIONS(8931), + [aux_sym_visibility_token2] = ACTIONS(8931), + [aux_sym_elseif_fragment_token1] = ACTIONS(8931), + [aux_sym_else_fragment_token1] = ACTIONS(8931), + [aux_sym_select_statement_token1] = ACTIONS(8931), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8931), + [aux_sym__for_header_token1] = ACTIONS(8931), + [aux_sym_do_statement_token1] = ACTIONS(8931), + [aux_sym_do_condition_token1] = ACTIONS(8931), + [aux_sym_with_statement_token1] = ACTIONS(8931), + [aux_sym_exit_statement_token1] = ACTIONS(8931), + [sym_end_statement] = ACTIONS(8933), + [aux_sym_on_goto_statement_token1] = ACTIONS(8931), + [aux_sym_on_goto_statement_token2] = ACTIONS(8931), + [aux_sym_on_error_statement_token2] = ACTIONS(8931), + [sym__ambiguous_redim_statement] = ACTIONS(8933), + [aux_sym_erase_statement_token1] = ACTIONS(8931), + [aux_sym_open_statement_token1] = ACTIONS(8931), + [aux_sym_file_mode_token2] = ACTIONS(8931), + [aux_sym_file_access_token2] = ACTIONS(8931), + [aux_sym_file_lock_token2] = ACTIONS(8931), + [aux_sym_print_statement_token1] = ACTIONS(8931), + [anon_sym_PLUS] = ACTIONS(8933), + [anon_sym_DASH] = ACTIONS(8931), + [anon_sym_QMARK] = ACTIONS(8933), + [aux_sym_close_statement_token1] = ACTIONS(8931), + [aux_sym_put_statement_token1] = ACTIONS(8931), + [aux_sym_unlock_statement_token1] = ACTIONS(8931), + [aux_sym_seek_statement_token1] = ACTIONS(8931), + [sym_reset_statement] = ACTIONS(8931), + [aux_sym_raise_event_statement_token1] = ACTIONS(8931), + [sym_stop_statement] = ACTIONS(8931), + [sym_beep_statement] = ACTIONS(8931), + [aux_sym_unload_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token2] = ACTIONS(8931), + [aux_sym_def_type_statement_token3] = ACTIONS(8931), + [aux_sym_def_type_statement_token4] = ACTIONS(8931), + [aux_sym_def_type_statement_token5] = ACTIONS(8931), + [aux_sym_def_type_statement_token6] = ACTIONS(8931), + [aux_sym_def_type_statement_token7] = ACTIONS(8931), + [aux_sym_def_type_statement_token8] = ACTIONS(8931), + [aux_sym_def_type_statement_token9] = ACTIONS(8931), + [aux_sym_def_type_statement_token10] = ACTIONS(8931), + [aux_sym_def_type_statement_token11] = ACTIONS(8931), + [aux_sym_def_type_statement_token12] = ACTIONS(8931), + [aux_sym_def_type_statement_token13] = ACTIONS(8931), + [aux_sym_def_type_statement_token14] = ACTIONS(8931), + [aux_sym_call_statement_token1] = ACTIONS(8931), + [sym__ambiguous_call_statement] = ACTIONS(8931), + [aux_sym_addressof_expression_token1] = ACTIONS(8931), + [aux_sym_type_of_expression_token1] = ACTIONS(8931), + [aux_sym_unary_expression_token1] = ACTIONS(8931), + [sym_string_literal] = ACTIONS(8933), + [sym_number_literal] = ACTIONS(8933), + [aux_sym_boolean_literal_token1] = ACTIONS(8931), + [aux_sym_boolean_literal_token2] = ACTIONS(8931), + [sym_nothing_literal] = ACTIONS(8931), + [sym_null_literal] = ACTIONS(8931), + [sym_empty_literal] = ACTIONS(8931), + [sym_date_literal] = ACTIONS(8933), + [anon_sym_POUND] = ACTIONS(8931), + }, + [STATE(3828)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(3772), + [sym_identifier] = ACTIONS(8935), + [sym_newline] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(8696), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8935), + [aux_sym_frm_property_statement_token1] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_BANG] = ACTIONS(8937), + [aux_sym__attribute_identifier_token1] = ACTIONS(8935), + [aux_sym_option_statement_token3] = ACTIONS(8935), + [aux_sym_type_declaration_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8935), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8935), + [aux_sym_enum_declaration_token1] = ACTIONS(8935), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8935), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8935), + [aux_sym_declare_function_statement_token1] = ACTIONS(8935), + [aux_sym_preprocessor_const_token1] = ACTIONS(8935), + [aux_sym__property_get_header_token1] = ACTIONS(8935), + [aux_sym_event_declaration_token1] = ACTIONS(8935), + [sym_static_modifier] = ACTIONS(8935), + [sym__dim_keyword] = ACTIONS(8935), + [sym__redim_keyword] = ACTIONS(8935), + [aux_sym_get_accessor_token1] = ACTIONS(8935), + [aux_sym_set_accessor_token1] = ACTIONS(8935), + [aux_sym_const_declaration_token1] = ACTIONS(8935), + [anon_sym_LPAREN] = ACTIONS(8937), + [aux_sym_as_type_clause_token2] = ACTIONS(8935), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8935), + [aux_sym_visibility_token1] = ACTIONS(8935), + [aux_sym_visibility_token2] = ACTIONS(8935), + [aux_sym_elseif_fragment_token1] = ACTIONS(8935), + [aux_sym_else_fragment_token1] = ACTIONS(8935), + [aux_sym_select_statement_token1] = ACTIONS(8935), + [aux_sym__for_header_token1] = ACTIONS(8935), + [aux_sym_do_statement_token1] = ACTIONS(8935), + [aux_sym_do_condition_token1] = ACTIONS(8935), + [aux_sym_with_statement_token1] = ACTIONS(8935), + [aux_sym_exit_statement_token1] = ACTIONS(8935), + [sym_end_statement] = ACTIONS(8937), + [aux_sym_on_goto_statement_token1] = ACTIONS(8935), + [aux_sym_on_goto_statement_token2] = ACTIONS(8935), + [aux_sym_on_error_statement_token2] = ACTIONS(8935), + [sym__ambiguous_redim_statement] = ACTIONS(8937), + [aux_sym_erase_statement_token1] = ACTIONS(8935), + [aux_sym_open_statement_token1] = ACTIONS(8935), + [aux_sym_file_mode_token2] = ACTIONS(8935), + [aux_sym_file_access_token2] = ACTIONS(8935), + [aux_sym_file_lock_token2] = ACTIONS(8935), + [aux_sym_print_statement_token1] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [aux_sym_close_statement_token1] = ACTIONS(8935), + [aux_sym_put_statement_token1] = ACTIONS(8935), + [aux_sym_unlock_statement_token1] = ACTIONS(8935), + [aux_sym_seek_statement_token1] = ACTIONS(8935), + [sym_reset_statement] = ACTIONS(8935), + [aux_sym_raise_event_statement_token1] = ACTIONS(8935), + [sym_stop_statement] = ACTIONS(8935), + [sym_beep_statement] = ACTIONS(8935), + [aux_sym_unload_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token2] = ACTIONS(8935), + [aux_sym_def_type_statement_token3] = ACTIONS(8935), + [aux_sym_def_type_statement_token4] = ACTIONS(8935), + [aux_sym_def_type_statement_token5] = ACTIONS(8935), + [aux_sym_def_type_statement_token6] = ACTIONS(8935), + [aux_sym_def_type_statement_token7] = ACTIONS(8935), + [aux_sym_def_type_statement_token8] = ACTIONS(8935), + [aux_sym_def_type_statement_token9] = ACTIONS(8935), + [aux_sym_def_type_statement_token10] = ACTIONS(8935), + [aux_sym_def_type_statement_token11] = ACTIONS(8935), + [aux_sym_def_type_statement_token12] = ACTIONS(8935), + [aux_sym_def_type_statement_token13] = ACTIONS(8935), + [aux_sym_def_type_statement_token14] = ACTIONS(8935), + [aux_sym_call_statement_token1] = ACTIONS(8935), + [sym__ambiguous_call_statement] = ACTIONS(8935), + [aux_sym_addressof_expression_token1] = ACTIONS(8935), + [aux_sym_type_of_expression_token1] = ACTIONS(8935), + [aux_sym_unary_expression_token1] = ACTIONS(8935), + [sym_string_literal] = ACTIONS(8937), + [sym_number_literal] = ACTIONS(8937), + [aux_sym_boolean_literal_token1] = ACTIONS(8935), + [aux_sym_boolean_literal_token2] = ACTIONS(8935), + [sym_nothing_literal] = ACTIONS(8935), + [sym_null_literal] = ACTIONS(8935), + [sym_empty_literal] = ACTIONS(8935), + [sym_date_literal] = ACTIONS(8937), + [anon_sym_POUND] = ACTIONS(8935), + }, + [STATE(3829)] = { + [sym_identifier] = ACTIONS(8756), + [sym_newline] = ACTIONS(8759), + [anon_sym_COLON] = ACTIONS(8759), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8756), + [aux_sym_frm_property_statement_token1] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8756), + [anon_sym_BANG] = ACTIONS(8759), + [aux_sym__attribute_identifier_token1] = ACTIONS(8756), + [aux_sym_option_statement_token3] = ACTIONS(8756), + [aux_sym_type_declaration_token1] = ACTIONS(8762), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8762), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8756), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8762), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8762), + [aux_sym_enum_declaration_token1] = ACTIONS(8762), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8762), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8762), + [aux_sym_declare_function_statement_token1] = ACTIONS(8762), + [aux_sym_preprocessor_const_token1] = ACTIONS(8756), + [aux_sym__property_get_header_token1] = ACTIONS(8762), + [aux_sym_event_declaration_token1] = ACTIONS(8762), + [sym_static_modifier] = ACTIONS(8756), + [sym__dim_keyword] = ACTIONS(8756), + [sym__redim_keyword] = ACTIONS(8756), + [aux_sym_get_accessor_token1] = ACTIONS(8756), + [aux_sym_set_accessor_token1] = ACTIONS(8756), + [aux_sym_const_declaration_token1] = ACTIONS(8756), + [anon_sym_LPAREN] = ACTIONS(8759), + [aux_sym_as_type_clause_token2] = ACTIONS(8756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8756), + [aux_sym_visibility_token1] = ACTIONS(8756), + [aux_sym_visibility_token2] = ACTIONS(8756), + [aux_sym_elseif_fragment_token1] = ACTIONS(8756), + [aux_sym_else_fragment_token1] = ACTIONS(8756), + [aux_sym_select_statement_token1] = ACTIONS(8756), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8756), + [aux_sym__for_header_token1] = ACTIONS(8756), + [aux_sym_do_statement_token1] = ACTIONS(8756), + [aux_sym_do_condition_token1] = ACTIONS(8756), + [aux_sym_with_statement_token1] = ACTIONS(8756), + [aux_sym_exit_statement_token1] = ACTIONS(8756), + [sym_end_statement] = ACTIONS(8759), + [aux_sym_on_goto_statement_token1] = ACTIONS(8756), + [aux_sym_on_goto_statement_token2] = ACTIONS(8756), + [aux_sym_on_error_statement_token2] = ACTIONS(8756), + [sym__ambiguous_redim_statement] = ACTIONS(8759), + [aux_sym_erase_statement_token1] = ACTIONS(8756), + [aux_sym_open_statement_token1] = ACTIONS(8756), + [aux_sym_file_mode_token2] = ACTIONS(8756), + [aux_sym_file_access_token2] = ACTIONS(8756), + [aux_sym_file_lock_token2] = ACTIONS(8756), + [aux_sym_print_statement_token1] = ACTIONS(8756), + [anon_sym_PLUS] = ACTIONS(8759), + [anon_sym_DASH] = ACTIONS(8756), + [anon_sym_QMARK] = ACTIONS(8759), + [aux_sym_close_statement_token1] = ACTIONS(8756), + [aux_sym_put_statement_token1] = ACTIONS(8756), + [aux_sym_unlock_statement_token1] = ACTIONS(8756), + [aux_sym_seek_statement_token1] = ACTIONS(8756), + [sym_reset_statement] = ACTIONS(8756), + [aux_sym_raise_event_statement_token1] = ACTIONS(8756), + [sym_stop_statement] = ACTIONS(8756), + [sym_beep_statement] = ACTIONS(8756), + [aux_sym_unload_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token2] = ACTIONS(8756), + [aux_sym_def_type_statement_token3] = ACTIONS(8756), + [aux_sym_def_type_statement_token4] = ACTIONS(8756), + [aux_sym_def_type_statement_token5] = ACTIONS(8756), + [aux_sym_def_type_statement_token6] = ACTIONS(8756), + [aux_sym_def_type_statement_token7] = ACTIONS(8756), + [aux_sym_def_type_statement_token8] = ACTIONS(8756), + [aux_sym_def_type_statement_token9] = ACTIONS(8756), + [aux_sym_def_type_statement_token10] = ACTIONS(8756), + [aux_sym_def_type_statement_token11] = ACTIONS(8756), + [aux_sym_def_type_statement_token12] = ACTIONS(8756), + [aux_sym_def_type_statement_token13] = ACTIONS(8756), + [aux_sym_def_type_statement_token14] = ACTIONS(8756), + [aux_sym_call_statement_token1] = ACTIONS(8756), + [sym__ambiguous_call_statement] = ACTIONS(8756), + [aux_sym_addressof_expression_token1] = ACTIONS(8756), + [aux_sym_type_of_expression_token1] = ACTIONS(8756), + [aux_sym_unary_expression_token1] = ACTIONS(8756), + [sym_string_literal] = ACTIONS(8759), + [sym_number_literal] = ACTIONS(8759), + [aux_sym_boolean_literal_token1] = ACTIONS(8756), + [aux_sym_boolean_literal_token2] = ACTIONS(8756), + [sym_nothing_literal] = ACTIONS(8756), + [sym_null_literal] = ACTIONS(8756), + [sym_empty_literal] = ACTIONS(8756), + [sym_date_literal] = ACTIONS(8759), + [anon_sym_POUND] = ACTIONS(8756), + }, + [STATE(3830)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(3831)] = { + [sym_identifier] = ACTIONS(8939), + [sym_newline] = ACTIONS(8941), + [anon_sym_COLON] = ACTIONS(8941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8939), + [aux_sym_frm_property_statement_token1] = ACTIONS(8939), + [anon_sym_DOT] = ACTIONS(8939), + [anon_sym_BANG] = ACTIONS(8941), + [aux_sym__attribute_identifier_token1] = ACTIONS(8939), + [aux_sym_option_statement_token3] = ACTIONS(8939), + [aux_sym_type_declaration_token1] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8939), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8939), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8939), + [aux_sym_enum_declaration_token1] = ACTIONS(8939), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8939), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8939), + [aux_sym_declare_function_statement_token1] = ACTIONS(8939), + [aux_sym_preprocessor_const_token1] = ACTIONS(8939), + [aux_sym__property_get_header_token1] = ACTIONS(8939), + [aux_sym_event_declaration_token1] = ACTIONS(8939), + [sym_static_modifier] = ACTIONS(8939), + [sym__dim_keyword] = ACTIONS(8939), + [sym__redim_keyword] = ACTIONS(8939), + [aux_sym_get_accessor_token1] = ACTIONS(8939), + [aux_sym_set_accessor_token1] = ACTIONS(8939), + [anon_sym_COMMA] = ACTIONS(8943), + [aux_sym_const_declaration_token1] = ACTIONS(8939), + [anon_sym_LPAREN] = ACTIONS(8941), + [aux_sym_as_type_clause_token2] = ACTIONS(8939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8939), + [aux_sym_visibility_token1] = ACTIONS(8939), + [aux_sym_visibility_token2] = ACTIONS(8939), + [aux_sym_elseif_fragment_token1] = ACTIONS(8939), + [aux_sym_else_fragment_token1] = ACTIONS(8939), + [aux_sym_select_statement_token1] = ACTIONS(8939), + [aux_sym__for_header_token1] = ACTIONS(8939), + [aux_sym_do_statement_token1] = ACTIONS(8939), + [aux_sym_do_condition_token1] = ACTIONS(8939), + [aux_sym_with_statement_token1] = ACTIONS(8939), + [aux_sym_exit_statement_token1] = ACTIONS(8939), + [sym_end_statement] = ACTIONS(8941), + [aux_sym_on_goto_statement_token1] = ACTIONS(8939), + [aux_sym_on_goto_statement_token2] = ACTIONS(8939), + [aux_sym_on_error_statement_token2] = ACTIONS(8939), + [sym__ambiguous_redim_statement] = ACTIONS(8941), + [aux_sym_erase_statement_token1] = ACTIONS(8939), + [aux_sym_open_statement_token1] = ACTIONS(8939), + [aux_sym_file_mode_token2] = ACTIONS(8939), + [aux_sym_file_access_token2] = ACTIONS(8939), + [aux_sym_file_lock_token2] = ACTIONS(8939), + [aux_sym_print_statement_token1] = ACTIONS(8939), + [anon_sym_PLUS] = ACTIONS(8941), + [anon_sym_DASH] = ACTIONS(8939), + [anon_sym_QMARK] = ACTIONS(8941), + [aux_sym_close_statement_token1] = ACTIONS(8939), + [aux_sym_put_statement_token1] = ACTIONS(8939), + [aux_sym_unlock_statement_token1] = ACTIONS(8939), + [aux_sym_seek_statement_token1] = ACTIONS(8939), + [sym_reset_statement] = ACTIONS(8939), + [aux_sym_raise_event_statement_token1] = ACTIONS(8939), + [sym_stop_statement] = ACTIONS(8939), + [sym_beep_statement] = ACTIONS(8939), + [aux_sym_unload_statement_token1] = ACTIONS(8939), + [aux_sym_def_type_statement_token1] = ACTIONS(8939), + [aux_sym_def_type_statement_token2] = ACTIONS(8939), + [aux_sym_def_type_statement_token3] = ACTIONS(8939), + [aux_sym_def_type_statement_token4] = ACTIONS(8939), + [aux_sym_def_type_statement_token5] = ACTIONS(8939), + [aux_sym_def_type_statement_token6] = ACTIONS(8939), + [aux_sym_def_type_statement_token7] = ACTIONS(8939), + [aux_sym_def_type_statement_token8] = ACTIONS(8939), + [aux_sym_def_type_statement_token9] = ACTIONS(8939), + [aux_sym_def_type_statement_token10] = ACTIONS(8939), + [aux_sym_def_type_statement_token11] = ACTIONS(8939), + [aux_sym_def_type_statement_token12] = ACTIONS(8939), + [aux_sym_def_type_statement_token13] = ACTIONS(8939), + [aux_sym_def_type_statement_token14] = ACTIONS(8939), + [aux_sym_call_statement_token1] = ACTIONS(8939), + [sym__ambiguous_call_statement] = ACTIONS(8939), + [aux_sym_addressof_expression_token1] = ACTIONS(8939), + [aux_sym_type_of_expression_token1] = ACTIONS(8939), + [aux_sym_unary_expression_token1] = ACTIONS(8939), + [sym_string_literal] = ACTIONS(8941), + [sym_number_literal] = ACTIONS(8941), + [aux_sym_boolean_literal_token1] = ACTIONS(8939), + [aux_sym_boolean_literal_token2] = ACTIONS(8939), + [sym_nothing_literal] = ACTIONS(8939), + [sym_null_literal] = ACTIONS(8939), + [sym_empty_literal] = ACTIONS(8939), + [sym_date_literal] = ACTIONS(8941), + [anon_sym_POUND] = ACTIONS(8939), + }, + [STATE(3832)] = { + [sym_identifier] = ACTIONS(8456), + [sym_newline] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8458), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8456), + [aux_sym_frm_property_statement_token1] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_BANG] = ACTIONS(8458), + [aux_sym__attribute_identifier_token1] = ACTIONS(8456), + [aux_sym_option_statement_token3] = ACTIONS(8456), + [aux_sym_type_declaration_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8456), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8456), + [aux_sym_enum_declaration_token1] = ACTIONS(8456), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8456), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8456), + [aux_sym_declare_function_statement_token1] = ACTIONS(8456), + [aux_sym_preprocessor_const_token1] = ACTIONS(8456), + [aux_sym__property_get_header_token1] = ACTIONS(8456), + [aux_sym_event_declaration_token1] = ACTIONS(8456), + [sym_static_modifier] = ACTIONS(8456), + [sym__dim_keyword] = ACTIONS(8456), + [sym__redim_keyword] = ACTIONS(8456), + [aux_sym_get_accessor_token1] = ACTIONS(8456), + [aux_sym_set_accessor_token1] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(8458), + [aux_sym_const_declaration_token1] = ACTIONS(8456), + [anon_sym_LPAREN] = ACTIONS(8458), + [aux_sym_as_type_clause_token2] = ACTIONS(8456), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8456), + [aux_sym_visibility_token1] = ACTIONS(8456), + [aux_sym_visibility_token2] = ACTIONS(8456), + [aux_sym_elseif_fragment_token1] = ACTIONS(8456), + [aux_sym_else_fragment_token1] = ACTIONS(8456), + [aux_sym_select_statement_token1] = ACTIONS(8456), + [aux_sym__for_header_token1] = ACTIONS(8456), + [aux_sym_do_statement_token1] = ACTIONS(8456), + [aux_sym_do_condition_token1] = ACTIONS(8456), + [aux_sym_with_statement_token1] = ACTIONS(8456), + [aux_sym_exit_statement_token1] = ACTIONS(8456), + [sym_end_statement] = ACTIONS(8458), + [aux_sym_on_goto_statement_token1] = ACTIONS(8456), + [aux_sym_on_goto_statement_token2] = ACTIONS(8456), + [aux_sym_on_error_statement_token2] = ACTIONS(8456), + [sym__ambiguous_redim_statement] = ACTIONS(8458), + [aux_sym_erase_statement_token1] = ACTIONS(8456), + [aux_sym_open_statement_token1] = ACTIONS(8456), + [aux_sym_file_mode_token2] = ACTIONS(8456), + [aux_sym_file_access_token2] = ACTIONS(8456), + [aux_sym_file_lock_token2] = ACTIONS(8456), + [aux_sym_print_statement_token1] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8458), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8458), + [aux_sym_close_statement_token1] = ACTIONS(8456), + [aux_sym_put_statement_token1] = ACTIONS(8456), + [aux_sym_unlock_statement_token1] = ACTIONS(8456), + [aux_sym_seek_statement_token1] = ACTIONS(8456), + [sym_reset_statement] = ACTIONS(8456), + [aux_sym_raise_event_statement_token1] = ACTIONS(8456), + [sym_stop_statement] = ACTIONS(8456), + [sym_beep_statement] = ACTIONS(8456), + [aux_sym_unload_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token2] = ACTIONS(8456), + [aux_sym_def_type_statement_token3] = ACTIONS(8456), + [aux_sym_def_type_statement_token4] = ACTIONS(8456), + [aux_sym_def_type_statement_token5] = ACTIONS(8456), + [aux_sym_def_type_statement_token6] = ACTIONS(8456), + [aux_sym_def_type_statement_token7] = ACTIONS(8456), + [aux_sym_def_type_statement_token8] = ACTIONS(8456), + [aux_sym_def_type_statement_token9] = ACTIONS(8456), + [aux_sym_def_type_statement_token10] = ACTIONS(8456), + [aux_sym_def_type_statement_token11] = ACTIONS(8456), + [aux_sym_def_type_statement_token12] = ACTIONS(8456), + [aux_sym_def_type_statement_token13] = ACTIONS(8456), + [aux_sym_def_type_statement_token14] = ACTIONS(8456), + [aux_sym_call_statement_token1] = ACTIONS(8456), + [sym__ambiguous_call_statement] = ACTIONS(8456), + [aux_sym_addressof_expression_token1] = ACTIONS(8456), + [aux_sym_type_of_expression_token1] = ACTIONS(8456), + [aux_sym_unary_expression_token1] = ACTIONS(8456), + [sym_string_literal] = ACTIONS(8458), + [sym_number_literal] = ACTIONS(8458), + [aux_sym_boolean_literal_token1] = ACTIONS(8456), + [aux_sym_boolean_literal_token2] = ACTIONS(8456), + [sym_nothing_literal] = ACTIONS(8456), + [sym_null_literal] = ACTIONS(8456), + [sym_empty_literal] = ACTIONS(8456), + [sym_date_literal] = ACTIONS(8458), + [anon_sym_POUND] = ACTIONS(8456), + }, + [STATE(3833)] = { + [sym_next_variable_list] = STATE(5031), + [sym__assignable_expression] = STATE(4645), + [sym__callable_expression] = STATE(4647), + [sym_call_expression] = STATE(4663), + [sym_member_expression] = STATE(4783), + [sym_qualified_member_expression] = STATE(4804), + [sym_implicit_member_expression] = STATE(4804), + [sym_identifier] = ACTIONS(8889), + [sym_newline] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6828), + [aux_sym_frm_property_statement_token1] = ACTIONS(8891), + [anon_sym_DOT] = ACTIONS(8893), + [anon_sym_BANG] = ACTIONS(8895), + [aux_sym__attribute_identifier_token1] = ACTIONS(6828), + [aux_sym_option_statement_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6828), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6828), + [aux_sym_preprocessor_const_token1] = ACTIONS(6828), + [sym_static_modifier] = ACTIONS(6828), + [sym__dim_keyword] = ACTIONS(6828), + [sym__redim_keyword] = ACTIONS(6828), + [aux_sym_get_accessor_token1] = ACTIONS(6828), + [aux_sym_set_accessor_token1] = ACTIONS(6828), + [aux_sym_const_declaration_token1] = ACTIONS(6828), + [anon_sym_LPAREN] = ACTIONS(6826), + [aux_sym_as_type_clause_token2] = ACTIONS(6828), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8897), + [aux_sym_visibility_token1] = ACTIONS(6828), + [aux_sym_visibility_token2] = ACTIONS(6828), + [aux_sym_elseif_fragment_token1] = ACTIONS(6828), + [aux_sym_else_fragment_token1] = ACTIONS(6828), + [aux_sym_select_statement_token1] = ACTIONS(6828), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6828), + [aux_sym__for_header_token1] = ACTIONS(6828), + [aux_sym_do_statement_token1] = ACTIONS(6828), + [aux_sym_do_condition_token1] = ACTIONS(6828), + [aux_sym_with_statement_token1] = ACTIONS(6828), + [aux_sym_exit_statement_token1] = ACTIONS(6828), + [sym_end_statement] = ACTIONS(6826), + [aux_sym_on_goto_statement_token1] = ACTIONS(6828), + [aux_sym_on_goto_statement_token2] = ACTIONS(6828), + [aux_sym_on_error_statement_token2] = ACTIONS(6828), + [sym__ambiguous_redim_statement] = ACTIONS(6826), + [aux_sym_erase_statement_token1] = ACTIONS(6828), + [aux_sym_open_statement_token1] = ACTIONS(6828), + [aux_sym_file_mode_token2] = ACTIONS(6828), + [aux_sym_file_access_token2] = ACTIONS(6828), + [aux_sym_file_lock_token2] = ACTIONS(6828), + [aux_sym_print_statement_token1] = ACTIONS(6828), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_DASH] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6826), + [aux_sym_close_statement_token1] = ACTIONS(6828), + [aux_sym_put_statement_token1] = ACTIONS(6828), + [aux_sym_unlock_statement_token1] = ACTIONS(6828), + [aux_sym_seek_statement_token1] = ACTIONS(6828), + [sym_reset_statement] = ACTIONS(6828), + [aux_sym_raise_event_statement_token1] = ACTIONS(6828), + [sym_stop_statement] = ACTIONS(6828), + [sym_beep_statement] = ACTIONS(6828), + [aux_sym_unload_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token2] = ACTIONS(6828), + [aux_sym_def_type_statement_token3] = ACTIONS(6828), + [aux_sym_def_type_statement_token4] = ACTIONS(6828), + [aux_sym_def_type_statement_token5] = ACTIONS(6828), + [aux_sym_def_type_statement_token6] = ACTIONS(6828), + [aux_sym_def_type_statement_token7] = ACTIONS(6828), + [aux_sym_def_type_statement_token8] = ACTIONS(6828), + [aux_sym_def_type_statement_token9] = ACTIONS(6828), + [aux_sym_def_type_statement_token10] = ACTIONS(6828), + [aux_sym_def_type_statement_token11] = ACTIONS(6828), + [aux_sym_def_type_statement_token12] = ACTIONS(6828), + [aux_sym_def_type_statement_token13] = ACTIONS(6828), + [aux_sym_def_type_statement_token14] = ACTIONS(6828), + [aux_sym_call_statement_token1] = ACTIONS(6828), + [sym__ambiguous_call_statement] = ACTIONS(6828), + [aux_sym_addressof_expression_token1] = ACTIONS(6828), + [aux_sym_type_of_expression_token1] = ACTIONS(6828), + [aux_sym_unary_expression_token1] = ACTIONS(6828), + [sym_string_literal] = ACTIONS(6826), + [sym_number_literal] = ACTIONS(6826), + [aux_sym_boolean_literal_token1] = ACTIONS(6828), + [aux_sym_boolean_literal_token2] = ACTIONS(6828), + [sym_nothing_literal] = ACTIONS(6828), + [sym_null_literal] = ACTIONS(6828), + [sym_empty_literal] = ACTIONS(6828), + [sym_date_literal] = ACTIONS(6826), + [anon_sym_POUND] = ACTIONS(6828), + }, + [STATE(3834)] = { + [sym_parameter_list] = STATE(4028), + [sym_identifier] = ACTIONS(8945), + [sym_newline] = ACTIONS(8947), + [anon_sym_COLON] = ACTIONS(8947), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8945), + [aux_sym_frm_property_statement_token1] = ACTIONS(8945), + [anon_sym_DOT] = ACTIONS(8945), + [anon_sym_BANG] = ACTIONS(8947), + [aux_sym__attribute_identifier_token1] = ACTIONS(8945), + [aux_sym_option_statement_token3] = ACTIONS(8945), + [aux_sym_type_declaration_token1] = ACTIONS(8945), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8945), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8945), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8945), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8945), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8945), + [aux_sym_enum_declaration_token1] = ACTIONS(8945), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8945), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8945), + [aux_sym_declare_function_statement_token1] = ACTIONS(8945), + [aux_sym_preprocessor_const_token1] = ACTIONS(8945), + [aux_sym__property_get_header_token1] = ACTIONS(8945), + [aux_sym_event_declaration_token1] = ACTIONS(8945), + [sym_static_modifier] = ACTIONS(8945), + [sym__dim_keyword] = ACTIONS(8945), + [sym__redim_keyword] = ACTIONS(8945), + [aux_sym_get_accessor_token1] = ACTIONS(8945), + [aux_sym_set_accessor_token1] = ACTIONS(8945), + [aux_sym_const_declaration_token1] = ACTIONS(8945), + [anon_sym_LPAREN] = ACTIONS(8126), + [aux_sym_as_type_clause_token2] = ACTIONS(8945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8945), + [aux_sym_visibility_token1] = ACTIONS(8945), + [aux_sym_visibility_token2] = ACTIONS(8945), + [aux_sym_elseif_fragment_token1] = ACTIONS(8945), + [aux_sym_else_fragment_token1] = ACTIONS(8945), + [aux_sym_select_statement_token1] = ACTIONS(8945), + [aux_sym__for_header_token1] = ACTIONS(8945), + [aux_sym_do_statement_token1] = ACTIONS(8945), + [aux_sym_do_condition_token1] = ACTIONS(8945), + [aux_sym_with_statement_token1] = ACTIONS(8945), + [aux_sym_exit_statement_token1] = ACTIONS(8945), + [sym_end_statement] = ACTIONS(8947), + [aux_sym_on_goto_statement_token1] = ACTIONS(8945), + [aux_sym_on_goto_statement_token2] = ACTIONS(8945), + [aux_sym_on_error_statement_token2] = ACTIONS(8945), + [sym__ambiguous_redim_statement] = ACTIONS(8947), + [aux_sym_erase_statement_token1] = ACTIONS(8945), + [aux_sym_open_statement_token1] = ACTIONS(8945), + [aux_sym_file_mode_token2] = ACTIONS(8945), + [aux_sym_file_access_token2] = ACTIONS(8945), + [aux_sym_file_lock_token2] = ACTIONS(8945), + [aux_sym_print_statement_token1] = ACTIONS(8945), + [anon_sym_PLUS] = ACTIONS(8947), + [anon_sym_DASH] = ACTIONS(8945), + [anon_sym_QMARK] = ACTIONS(8947), + [aux_sym_close_statement_token1] = ACTIONS(8945), + [aux_sym_put_statement_token1] = ACTIONS(8945), + [aux_sym_unlock_statement_token1] = ACTIONS(8945), + [aux_sym_seek_statement_token1] = ACTIONS(8945), + [sym_reset_statement] = ACTIONS(8945), + [aux_sym_raise_event_statement_token1] = ACTIONS(8945), + [sym_stop_statement] = ACTIONS(8945), + [sym_beep_statement] = ACTIONS(8945), + [aux_sym_unload_statement_token1] = ACTIONS(8945), + [aux_sym_def_type_statement_token1] = ACTIONS(8945), + [aux_sym_def_type_statement_token2] = ACTIONS(8945), + [aux_sym_def_type_statement_token3] = ACTIONS(8945), + [aux_sym_def_type_statement_token4] = ACTIONS(8945), + [aux_sym_def_type_statement_token5] = ACTIONS(8945), + [aux_sym_def_type_statement_token6] = ACTIONS(8945), + [aux_sym_def_type_statement_token7] = ACTIONS(8945), + [aux_sym_def_type_statement_token8] = ACTIONS(8945), + [aux_sym_def_type_statement_token9] = ACTIONS(8945), + [aux_sym_def_type_statement_token10] = ACTIONS(8945), + [aux_sym_def_type_statement_token11] = ACTIONS(8945), + [aux_sym_def_type_statement_token12] = ACTIONS(8945), + [aux_sym_def_type_statement_token13] = ACTIONS(8945), + [aux_sym_def_type_statement_token14] = ACTIONS(8945), + [aux_sym_call_statement_token1] = ACTIONS(8945), + [sym__ambiguous_call_statement] = ACTIONS(8945), + [aux_sym_addressof_expression_token1] = ACTIONS(8945), + [aux_sym_type_of_expression_token1] = ACTIONS(8945), + [aux_sym_unary_expression_token1] = ACTIONS(8945), + [sym_string_literal] = ACTIONS(8947), + [sym_number_literal] = ACTIONS(8947), + [aux_sym_boolean_literal_token1] = ACTIONS(8945), + [aux_sym_boolean_literal_token2] = ACTIONS(8945), + [sym_nothing_literal] = ACTIONS(8945), + [sym_null_literal] = ACTIONS(8945), + [sym_empty_literal] = ACTIONS(8945), + [sym_date_literal] = ACTIONS(8947), + [anon_sym_POUND] = ACTIONS(8945), + }, + [STATE(3835)] = { + [sym_next_variable_list] = STATE(5034), + [sym__assignable_expression] = STATE(4645), + [sym__callable_expression] = STATE(4647), + [sym_call_expression] = STATE(4663), + [sym_member_expression] = STATE(4783), + [sym_qualified_member_expression] = STATE(4804), + [sym_implicit_member_expression] = STATE(4804), + [sym_identifier] = ACTIONS(8889), + [sym_newline] = ACTIONS(6863), + [anon_sym_COLON] = ACTIONS(6863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6865), + [aux_sym_frm_property_statement_token1] = ACTIONS(8891), + [anon_sym_DOT] = ACTIONS(8893), + [anon_sym_BANG] = ACTIONS(8895), + [aux_sym__attribute_identifier_token1] = ACTIONS(6865), + [aux_sym_option_statement_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6865), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6865), + [aux_sym_preprocessor_const_token1] = ACTIONS(6865), + [sym_static_modifier] = ACTIONS(6865), + [sym__dim_keyword] = ACTIONS(6865), + [sym__redim_keyword] = ACTIONS(6865), + [aux_sym_get_accessor_token1] = ACTIONS(6865), + [aux_sym_set_accessor_token1] = ACTIONS(6865), + [aux_sym_const_declaration_token1] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6863), + [aux_sym_as_type_clause_token2] = ACTIONS(6865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8897), + [aux_sym_visibility_token1] = ACTIONS(6865), + [aux_sym_visibility_token2] = ACTIONS(6865), + [aux_sym_elseif_fragment_token1] = ACTIONS(6865), + [aux_sym_else_fragment_token1] = ACTIONS(6865), + [aux_sym_select_statement_token1] = ACTIONS(6865), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6865), + [aux_sym__for_header_token1] = ACTIONS(6865), + [aux_sym_do_statement_token1] = ACTIONS(6865), + [aux_sym_do_condition_token1] = ACTIONS(6865), + [aux_sym_with_statement_token1] = ACTIONS(6865), + [aux_sym_exit_statement_token1] = ACTIONS(6865), + [sym_end_statement] = ACTIONS(6863), + [aux_sym_on_goto_statement_token1] = ACTIONS(6865), + [aux_sym_on_goto_statement_token2] = ACTIONS(6865), + [aux_sym_on_error_statement_token2] = ACTIONS(6865), + [sym__ambiguous_redim_statement] = ACTIONS(6863), + [aux_sym_erase_statement_token1] = ACTIONS(6865), + [aux_sym_open_statement_token1] = ACTIONS(6865), + [aux_sym_file_mode_token2] = ACTIONS(6865), + [aux_sym_file_access_token2] = ACTIONS(6865), + [aux_sym_file_lock_token2] = ACTIONS(6865), + [aux_sym_print_statement_token1] = ACTIONS(6865), + [anon_sym_PLUS] = ACTIONS(6863), + [anon_sym_DASH] = ACTIONS(6865), + [anon_sym_QMARK] = ACTIONS(6863), + [aux_sym_close_statement_token1] = ACTIONS(6865), + [aux_sym_put_statement_token1] = ACTIONS(6865), + [aux_sym_unlock_statement_token1] = ACTIONS(6865), + [aux_sym_seek_statement_token1] = ACTIONS(6865), + [sym_reset_statement] = ACTIONS(6865), + [aux_sym_raise_event_statement_token1] = ACTIONS(6865), + [sym_stop_statement] = ACTIONS(6865), + [sym_beep_statement] = ACTIONS(6865), + [aux_sym_unload_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token2] = ACTIONS(6865), + [aux_sym_def_type_statement_token3] = ACTIONS(6865), + [aux_sym_def_type_statement_token4] = ACTIONS(6865), + [aux_sym_def_type_statement_token5] = ACTIONS(6865), + [aux_sym_def_type_statement_token6] = ACTIONS(6865), + [aux_sym_def_type_statement_token7] = ACTIONS(6865), + [aux_sym_def_type_statement_token8] = ACTIONS(6865), + [aux_sym_def_type_statement_token9] = ACTIONS(6865), + [aux_sym_def_type_statement_token10] = ACTIONS(6865), + [aux_sym_def_type_statement_token11] = ACTIONS(6865), + [aux_sym_def_type_statement_token12] = ACTIONS(6865), + [aux_sym_def_type_statement_token13] = ACTIONS(6865), + [aux_sym_def_type_statement_token14] = ACTIONS(6865), + [aux_sym_call_statement_token1] = ACTIONS(6865), + [sym__ambiguous_call_statement] = ACTIONS(6865), + [aux_sym_addressof_expression_token1] = ACTIONS(6865), + [aux_sym_type_of_expression_token1] = ACTIONS(6865), + [aux_sym_unary_expression_token1] = ACTIONS(6865), + [sym_string_literal] = ACTIONS(6863), + [sym_number_literal] = ACTIONS(6863), + [aux_sym_boolean_literal_token1] = ACTIONS(6865), + [aux_sym_boolean_literal_token2] = ACTIONS(6865), + [sym_nothing_literal] = ACTIONS(6865), + [sym_null_literal] = ACTIONS(6865), + [sym_empty_literal] = ACTIONS(6865), + [sym_date_literal] = ACTIONS(6863), + [anon_sym_POUND] = ACTIONS(6865), + }, + [STATE(3836)] = { + [sym_next_variable_list] = STATE(5036), + [sym__assignable_expression] = STATE(4645), + [sym__callable_expression] = STATE(4647), + [sym_call_expression] = STATE(4663), + [sym_member_expression] = STATE(4783), + [sym_qualified_member_expression] = STATE(4804), + [sym_implicit_member_expression] = STATE(4804), + [sym_identifier] = ACTIONS(8889), + [sym_newline] = ACTIONS(6848), + [anon_sym_COLON] = ACTIONS(6848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6850), + [aux_sym_frm_property_statement_token1] = ACTIONS(8891), + [anon_sym_DOT] = ACTIONS(8893), + [anon_sym_BANG] = ACTIONS(8895), + [aux_sym__attribute_identifier_token1] = ACTIONS(6850), + [aux_sym_option_statement_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6850), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6850), + [aux_sym_preprocessor_const_token1] = ACTIONS(6850), + [sym_static_modifier] = ACTIONS(6850), + [sym__dim_keyword] = ACTIONS(6850), + [sym__redim_keyword] = ACTIONS(6850), + [aux_sym_get_accessor_token1] = ACTIONS(6850), + [aux_sym_set_accessor_token1] = ACTIONS(6850), + [aux_sym_const_declaration_token1] = ACTIONS(6850), + [anon_sym_LPAREN] = ACTIONS(6848), + [aux_sym_as_type_clause_token2] = ACTIONS(6850), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8897), + [aux_sym_visibility_token1] = ACTIONS(6850), + [aux_sym_visibility_token2] = ACTIONS(6850), + [aux_sym_elseif_fragment_token1] = ACTIONS(6850), + [aux_sym_else_fragment_token1] = ACTIONS(6850), + [aux_sym_select_statement_token1] = ACTIONS(6850), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6850), + [aux_sym__for_header_token1] = ACTIONS(6850), + [aux_sym_do_statement_token1] = ACTIONS(6850), + [aux_sym_do_condition_token1] = ACTIONS(6850), + [aux_sym_with_statement_token1] = ACTIONS(6850), + [aux_sym_exit_statement_token1] = ACTIONS(6850), + [sym_end_statement] = ACTIONS(6848), + [aux_sym_on_goto_statement_token1] = ACTIONS(6850), + [aux_sym_on_goto_statement_token2] = ACTIONS(6850), + [aux_sym_on_error_statement_token2] = ACTIONS(6850), + [sym__ambiguous_redim_statement] = ACTIONS(6848), + [aux_sym_erase_statement_token1] = ACTIONS(6850), + [aux_sym_open_statement_token1] = ACTIONS(6850), + [aux_sym_file_mode_token2] = ACTIONS(6850), + [aux_sym_file_access_token2] = ACTIONS(6850), + [aux_sym_file_lock_token2] = ACTIONS(6850), + [aux_sym_print_statement_token1] = ACTIONS(6850), + [anon_sym_PLUS] = ACTIONS(6848), + [anon_sym_DASH] = ACTIONS(6850), + [anon_sym_QMARK] = ACTIONS(6848), + [aux_sym_close_statement_token1] = ACTIONS(6850), + [aux_sym_put_statement_token1] = ACTIONS(6850), + [aux_sym_unlock_statement_token1] = ACTIONS(6850), + [aux_sym_seek_statement_token1] = ACTIONS(6850), + [sym_reset_statement] = ACTIONS(6850), + [aux_sym_raise_event_statement_token1] = ACTIONS(6850), + [sym_stop_statement] = ACTIONS(6850), + [sym_beep_statement] = ACTIONS(6850), + [aux_sym_unload_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token2] = ACTIONS(6850), + [aux_sym_def_type_statement_token3] = ACTIONS(6850), + [aux_sym_def_type_statement_token4] = ACTIONS(6850), + [aux_sym_def_type_statement_token5] = ACTIONS(6850), + [aux_sym_def_type_statement_token6] = ACTIONS(6850), + [aux_sym_def_type_statement_token7] = ACTIONS(6850), + [aux_sym_def_type_statement_token8] = ACTIONS(6850), + [aux_sym_def_type_statement_token9] = ACTIONS(6850), + [aux_sym_def_type_statement_token10] = ACTIONS(6850), + [aux_sym_def_type_statement_token11] = ACTIONS(6850), + [aux_sym_def_type_statement_token12] = ACTIONS(6850), + [aux_sym_def_type_statement_token13] = ACTIONS(6850), + [aux_sym_def_type_statement_token14] = ACTIONS(6850), + [aux_sym_call_statement_token1] = ACTIONS(6850), + [sym__ambiguous_call_statement] = ACTIONS(6850), + [aux_sym_addressof_expression_token1] = ACTIONS(6850), + [aux_sym_type_of_expression_token1] = ACTIONS(6850), + [aux_sym_unary_expression_token1] = ACTIONS(6850), + [sym_string_literal] = ACTIONS(6848), + [sym_number_literal] = ACTIONS(6848), + [aux_sym_boolean_literal_token1] = ACTIONS(6850), + [aux_sym_boolean_literal_token2] = ACTIONS(6850), + [sym_nothing_literal] = ACTIONS(6850), + [sym_null_literal] = ACTIONS(6850), + [sym_empty_literal] = ACTIONS(6850), + [sym_date_literal] = ACTIONS(6848), + [anon_sym_POUND] = ACTIONS(6850), + }, + [STATE(3837)] = { + [sym_next_variable_list] = STATE(5037), + [sym__assignable_expression] = STATE(4645), + [sym__callable_expression] = STATE(4647), + [sym_call_expression] = STATE(4663), + [sym_member_expression] = STATE(4783), + [sym_qualified_member_expression] = STATE(4804), + [sym_implicit_member_expression] = STATE(4804), + [sym_identifier] = ACTIONS(8889), + [sym_newline] = ACTIONS(6822), + [anon_sym_COLON] = ACTIONS(6822), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6824), + [aux_sym_frm_property_statement_token1] = ACTIONS(8891), + [anon_sym_DOT] = ACTIONS(8893), + [anon_sym_BANG] = ACTIONS(8895), + [aux_sym__attribute_identifier_token1] = ACTIONS(6824), + [aux_sym_option_statement_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6824), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6824), + [aux_sym_preprocessor_const_token1] = ACTIONS(6824), + [sym_static_modifier] = ACTIONS(6824), + [sym__dim_keyword] = ACTIONS(6824), + [sym__redim_keyword] = ACTIONS(6824), + [aux_sym_get_accessor_token1] = ACTIONS(6824), + [aux_sym_set_accessor_token1] = ACTIONS(6824), + [aux_sym_const_declaration_token1] = ACTIONS(6824), + [anon_sym_LPAREN] = ACTIONS(6822), + [aux_sym_as_type_clause_token2] = ACTIONS(6824), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8897), + [aux_sym_visibility_token1] = ACTIONS(6824), + [aux_sym_visibility_token2] = ACTIONS(6824), + [aux_sym_elseif_fragment_token1] = ACTIONS(6824), + [aux_sym_else_fragment_token1] = ACTIONS(6824), + [aux_sym_select_statement_token1] = ACTIONS(6824), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6824), + [aux_sym__for_header_token1] = ACTIONS(6824), + [aux_sym_do_statement_token1] = ACTIONS(6824), + [aux_sym_do_condition_token1] = ACTIONS(6824), + [aux_sym_with_statement_token1] = ACTIONS(6824), + [aux_sym_exit_statement_token1] = ACTIONS(6824), + [sym_end_statement] = ACTIONS(6822), + [aux_sym_on_goto_statement_token1] = ACTIONS(6824), + [aux_sym_on_goto_statement_token2] = ACTIONS(6824), + [aux_sym_on_error_statement_token2] = ACTIONS(6824), + [sym__ambiguous_redim_statement] = ACTIONS(6822), + [aux_sym_erase_statement_token1] = ACTIONS(6824), + [aux_sym_open_statement_token1] = ACTIONS(6824), + [aux_sym_file_mode_token2] = ACTIONS(6824), + [aux_sym_file_access_token2] = ACTIONS(6824), + [aux_sym_file_lock_token2] = ACTIONS(6824), + [aux_sym_print_statement_token1] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6822), + [aux_sym_close_statement_token1] = ACTIONS(6824), + [aux_sym_put_statement_token1] = ACTIONS(6824), + [aux_sym_unlock_statement_token1] = ACTIONS(6824), + [aux_sym_seek_statement_token1] = ACTIONS(6824), + [sym_reset_statement] = ACTIONS(6824), + [aux_sym_raise_event_statement_token1] = ACTIONS(6824), + [sym_stop_statement] = ACTIONS(6824), + [sym_beep_statement] = ACTIONS(6824), + [aux_sym_unload_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token2] = ACTIONS(6824), + [aux_sym_def_type_statement_token3] = ACTIONS(6824), + [aux_sym_def_type_statement_token4] = ACTIONS(6824), + [aux_sym_def_type_statement_token5] = ACTIONS(6824), + [aux_sym_def_type_statement_token6] = ACTIONS(6824), + [aux_sym_def_type_statement_token7] = ACTIONS(6824), + [aux_sym_def_type_statement_token8] = ACTIONS(6824), + [aux_sym_def_type_statement_token9] = ACTIONS(6824), + [aux_sym_def_type_statement_token10] = ACTIONS(6824), + [aux_sym_def_type_statement_token11] = ACTIONS(6824), + [aux_sym_def_type_statement_token12] = ACTIONS(6824), + [aux_sym_def_type_statement_token13] = ACTIONS(6824), + [aux_sym_def_type_statement_token14] = ACTIONS(6824), + [aux_sym_call_statement_token1] = ACTIONS(6824), + [sym__ambiguous_call_statement] = ACTIONS(6824), + [aux_sym_addressof_expression_token1] = ACTIONS(6824), + [aux_sym_type_of_expression_token1] = ACTIONS(6824), + [aux_sym_unary_expression_token1] = ACTIONS(6824), + [sym_string_literal] = ACTIONS(6822), + [sym_number_literal] = ACTIONS(6822), + [aux_sym_boolean_literal_token1] = ACTIONS(6824), + [aux_sym_boolean_literal_token2] = ACTIONS(6824), + [sym_nothing_literal] = ACTIONS(6824), + [sym_null_literal] = ACTIONS(6824), + [sym_empty_literal] = ACTIONS(6824), + [sym_date_literal] = ACTIONS(6822), + [anon_sym_POUND] = ACTIONS(6824), + }, + [STATE(3838)] = { + [sym_identifier] = ACTIONS(8881), + [sym_newline] = ACTIONS(8884), + [anon_sym_COLON] = ACTIONS(8884), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8881), + [aux_sym_frm_property_statement_token1] = ACTIONS(8881), + [anon_sym_DOT] = ACTIONS(8881), + [anon_sym_BANG] = ACTIONS(8884), + [aux_sym__attribute_identifier_token1] = ACTIONS(8881), + [aux_sym_option_statement_token3] = ACTIONS(8881), + [aux_sym_type_declaration_token1] = ACTIONS(8887), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8887), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8881), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8887), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8887), + [aux_sym_enum_declaration_token1] = ACTIONS(8887), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8887), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8887), + [aux_sym_declare_function_statement_token1] = ACTIONS(8887), + [aux_sym_preprocessor_const_token1] = ACTIONS(8881), + [aux_sym__property_get_header_token1] = ACTIONS(8887), + [aux_sym_event_declaration_token1] = ACTIONS(8887), + [sym_static_modifier] = ACTIONS(8881), + [sym__dim_keyword] = ACTIONS(8881), + [sym__redim_keyword] = ACTIONS(8881), + [aux_sym_get_accessor_token1] = ACTIONS(8881), + [aux_sym_set_accessor_token1] = ACTIONS(8881), + [aux_sym_const_declaration_token1] = ACTIONS(8881), + [anon_sym_LPAREN] = ACTIONS(8884), + [aux_sym_as_type_clause_token2] = ACTIONS(8881), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8881), + [aux_sym_visibility_token1] = ACTIONS(8881), + [aux_sym_visibility_token2] = ACTIONS(8881), + [aux_sym_elseif_fragment_token1] = ACTIONS(8881), + [aux_sym_else_fragment_token1] = ACTIONS(8881), + [aux_sym_select_statement_token1] = ACTIONS(8881), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8949), + [aux_sym__for_header_token1] = ACTIONS(8881), + [aux_sym_do_statement_token1] = ACTIONS(8881), + [aux_sym_do_condition_token1] = ACTIONS(8881), + [aux_sym_with_statement_token1] = ACTIONS(8881), + [aux_sym_exit_statement_token1] = ACTIONS(8881), + [sym_end_statement] = ACTIONS(8884), + [aux_sym_on_goto_statement_token1] = ACTIONS(8881), + [aux_sym_on_goto_statement_token2] = ACTIONS(8881), + [aux_sym_on_error_statement_token2] = ACTIONS(8881), + [sym__ambiguous_redim_statement] = ACTIONS(8884), + [aux_sym_erase_statement_token1] = ACTIONS(8881), + [aux_sym_open_statement_token1] = ACTIONS(8881), + [aux_sym_file_mode_token2] = ACTIONS(8881), + [aux_sym_file_access_token2] = ACTIONS(8881), + [aux_sym_file_lock_token2] = ACTIONS(8881), + [aux_sym_print_statement_token1] = ACTIONS(8881), + [anon_sym_PLUS] = ACTIONS(8884), + [anon_sym_DASH] = ACTIONS(8881), + [anon_sym_QMARK] = ACTIONS(8884), + [aux_sym_close_statement_token1] = ACTIONS(8881), + [aux_sym_put_statement_token1] = ACTIONS(8881), + [aux_sym_unlock_statement_token1] = ACTIONS(8881), + [aux_sym_seek_statement_token1] = ACTIONS(8881), + [sym_reset_statement] = ACTIONS(8881), + [aux_sym_raise_event_statement_token1] = ACTIONS(8881), + [sym_stop_statement] = ACTIONS(8881), + [sym_beep_statement] = ACTIONS(8881), + [aux_sym_unload_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token2] = ACTIONS(8881), + [aux_sym_def_type_statement_token3] = ACTIONS(8881), + [aux_sym_def_type_statement_token4] = ACTIONS(8881), + [aux_sym_def_type_statement_token5] = ACTIONS(8881), + [aux_sym_def_type_statement_token6] = ACTIONS(8881), + [aux_sym_def_type_statement_token7] = ACTIONS(8881), + [aux_sym_def_type_statement_token8] = ACTIONS(8881), + [aux_sym_def_type_statement_token9] = ACTIONS(8881), + [aux_sym_def_type_statement_token10] = ACTIONS(8881), + [aux_sym_def_type_statement_token11] = ACTIONS(8881), + [aux_sym_def_type_statement_token12] = ACTIONS(8881), + [aux_sym_def_type_statement_token13] = ACTIONS(8881), + [aux_sym_def_type_statement_token14] = ACTIONS(8881), + [aux_sym_call_statement_token1] = ACTIONS(8881), + [sym__ambiguous_call_statement] = ACTIONS(8881), + [aux_sym_addressof_expression_token1] = ACTIONS(8881), + [aux_sym_type_of_expression_token1] = ACTIONS(8881), + [aux_sym_unary_expression_token1] = ACTIONS(8881), + [sym_string_literal] = ACTIONS(8884), + [sym_number_literal] = ACTIONS(8884), + [aux_sym_boolean_literal_token1] = ACTIONS(8881), + [aux_sym_boolean_literal_token2] = ACTIONS(8881), + [sym_nothing_literal] = ACTIONS(8881), + [sym_null_literal] = ACTIONS(8881), + [sym_empty_literal] = ACTIONS(8881), + [sym_date_literal] = ACTIONS(8884), + [anon_sym_POUND] = ACTIONS(8881), + }, + [STATE(3839)] = { + [sym_identifier] = ACTIONS(8951), + [sym_newline] = ACTIONS(8953), + [anon_sym_COLON] = ACTIONS(8955), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8951), + [aux_sym_frm_property_statement_token1] = ACTIONS(8951), + [anon_sym_DOT] = ACTIONS(8951), + [anon_sym_BANG] = ACTIONS(8953), + [aux_sym__attribute_identifier_token1] = ACTIONS(8951), + [aux_sym_option_statement_token3] = ACTIONS(8951), + [aux_sym_type_declaration_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8951), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8951), + [aux_sym_enum_declaration_token1] = ACTIONS(8951), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8951), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8951), + [aux_sym_declare_function_statement_token1] = ACTIONS(8951), + [aux_sym_preprocessor_const_token1] = ACTIONS(8951), + [aux_sym__property_get_header_token1] = ACTIONS(8951), + [aux_sym_event_declaration_token1] = ACTIONS(8951), + [sym_static_modifier] = ACTIONS(8951), + [sym__dim_keyword] = ACTIONS(8951), + [sym__redim_keyword] = ACTIONS(8951), + [aux_sym_get_accessor_token1] = ACTIONS(8951), + [aux_sym_set_accessor_token1] = ACTIONS(8951), + [aux_sym_const_declaration_token1] = ACTIONS(8951), + [anon_sym_LPAREN] = ACTIONS(8953), + [aux_sym_as_type_clause_token2] = ACTIONS(8951), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8951), + [aux_sym_visibility_token1] = ACTIONS(8951), + [aux_sym_visibility_token2] = ACTIONS(8951), + [aux_sym_elseif_fragment_token1] = ACTIONS(8951), + [aux_sym_else_fragment_token1] = ACTIONS(8951), + [aux_sym_select_statement_token1] = ACTIONS(8951), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8951), + [aux_sym__for_header_token1] = ACTIONS(8951), + [aux_sym_do_statement_token1] = ACTIONS(8951), + [aux_sym_do_condition_token1] = ACTIONS(8951), + [aux_sym_with_statement_token1] = ACTIONS(8951), + [aux_sym_exit_statement_token1] = ACTIONS(8951), + [sym_end_statement] = ACTIONS(8953), + [aux_sym_on_goto_statement_token1] = ACTIONS(8951), + [aux_sym_on_goto_statement_token2] = ACTIONS(8951), + [aux_sym_on_error_statement_token2] = ACTIONS(8951), + [sym__ambiguous_redim_statement] = ACTIONS(8953), + [aux_sym_erase_statement_token1] = ACTIONS(8951), + [aux_sym_open_statement_token1] = ACTIONS(8951), + [aux_sym_file_mode_token2] = ACTIONS(8951), + [aux_sym_file_access_token2] = ACTIONS(8951), + [aux_sym_file_lock_token2] = ACTIONS(8951), + [aux_sym_print_statement_token1] = ACTIONS(8951), + [anon_sym_PLUS] = ACTIONS(8953), + [anon_sym_DASH] = ACTIONS(8951), + [anon_sym_QMARK] = ACTIONS(8953), + [aux_sym_close_statement_token1] = ACTIONS(8951), + [aux_sym_put_statement_token1] = ACTIONS(8951), + [aux_sym_unlock_statement_token1] = ACTIONS(8951), + [aux_sym_seek_statement_token1] = ACTIONS(8951), + [sym_reset_statement] = ACTIONS(8951), + [aux_sym_raise_event_statement_token1] = ACTIONS(8951), + [sym_stop_statement] = ACTIONS(8951), + [sym_beep_statement] = ACTIONS(8951), + [aux_sym_unload_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token2] = ACTIONS(8951), + [aux_sym_def_type_statement_token3] = ACTIONS(8951), + [aux_sym_def_type_statement_token4] = ACTIONS(8951), + [aux_sym_def_type_statement_token5] = ACTIONS(8951), + [aux_sym_def_type_statement_token6] = ACTIONS(8951), + [aux_sym_def_type_statement_token7] = ACTIONS(8951), + [aux_sym_def_type_statement_token8] = ACTIONS(8951), + [aux_sym_def_type_statement_token9] = ACTIONS(8951), + [aux_sym_def_type_statement_token10] = ACTIONS(8951), + [aux_sym_def_type_statement_token11] = ACTIONS(8951), + [aux_sym_def_type_statement_token12] = ACTIONS(8951), + [aux_sym_def_type_statement_token13] = ACTIONS(8951), + [aux_sym_def_type_statement_token14] = ACTIONS(8951), + [aux_sym_call_statement_token1] = ACTIONS(8951), + [sym__ambiguous_call_statement] = ACTIONS(8951), + [aux_sym_addressof_expression_token1] = ACTIONS(8951), + [aux_sym_type_of_expression_token1] = ACTIONS(8951), + [aux_sym_unary_expression_token1] = ACTIONS(8951), + [sym_string_literal] = ACTIONS(8953), + [sym_number_literal] = ACTIONS(8955), + [aux_sym_boolean_literal_token1] = ACTIONS(8951), + [aux_sym_boolean_literal_token2] = ACTIONS(8951), + [sym_nothing_literal] = ACTIONS(8951), + [sym_null_literal] = ACTIONS(8951), + [sym_empty_literal] = ACTIONS(8951), + [sym_date_literal] = ACTIONS(8953), + [anon_sym_POUND] = ACTIONS(8951), + }, + [STATE(3840)] = { + [sym_identifier] = ACTIONS(8958), + [sym_newline] = ACTIONS(8960), + [anon_sym_COLON] = ACTIONS(8960), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8958), + [aux_sym_frm_property_statement_token1] = ACTIONS(8958), + [anon_sym_DOT] = ACTIONS(8958), + [anon_sym_BANG] = ACTIONS(8960), + [aux_sym__attribute_identifier_token1] = ACTIONS(8958), + [aux_sym_option_statement_token3] = ACTIONS(8958), + [aux_sym_type_declaration_token1] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8958), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8958), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8958), + [aux_sym_enum_declaration_token1] = ACTIONS(8958), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8958), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8958), + [aux_sym_declare_function_statement_token1] = ACTIONS(8958), + [aux_sym_preprocessor_const_token1] = ACTIONS(8958), + [aux_sym__property_get_header_token1] = ACTIONS(8958), + [aux_sym_event_declaration_token1] = ACTIONS(8958), + [sym_static_modifier] = ACTIONS(8958), + [sym__dim_keyword] = ACTIONS(8958), + [sym__redim_keyword] = ACTIONS(8958), + [aux_sym_get_accessor_token1] = ACTIONS(8958), + [aux_sym_set_accessor_token1] = ACTIONS(8958), + [anon_sym_COMMA] = ACTIONS(8960), + [aux_sym_const_declaration_token1] = ACTIONS(8958), + [anon_sym_LPAREN] = ACTIONS(8960), + [aux_sym_as_type_clause_token2] = ACTIONS(8958), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8958), + [aux_sym_visibility_token1] = ACTIONS(8958), + [aux_sym_visibility_token2] = ACTIONS(8958), + [aux_sym_elseif_fragment_token1] = ACTIONS(8958), + [aux_sym_else_fragment_token1] = ACTIONS(8958), + [aux_sym_select_statement_token1] = ACTIONS(8958), + [aux_sym__for_header_token1] = ACTIONS(8958), + [aux_sym_do_statement_token1] = ACTIONS(8958), + [aux_sym_do_condition_token1] = ACTIONS(8958), + [aux_sym_with_statement_token1] = ACTIONS(8958), + [aux_sym_exit_statement_token1] = ACTIONS(8958), + [sym_end_statement] = ACTIONS(8960), + [aux_sym_on_goto_statement_token1] = ACTIONS(8958), + [aux_sym_on_goto_statement_token2] = ACTIONS(8958), + [aux_sym_on_error_statement_token2] = ACTIONS(8958), + [sym__ambiguous_redim_statement] = ACTIONS(8960), + [aux_sym_erase_statement_token1] = ACTIONS(8958), + [aux_sym_open_statement_token1] = ACTIONS(8958), + [aux_sym_file_mode_token2] = ACTIONS(8958), + [aux_sym_file_access_token2] = ACTIONS(8958), + [aux_sym_file_lock_token2] = ACTIONS(8958), + [aux_sym_print_statement_token1] = ACTIONS(8958), + [anon_sym_PLUS] = ACTIONS(8960), + [anon_sym_DASH] = ACTIONS(8958), + [anon_sym_QMARK] = ACTIONS(8960), + [aux_sym_close_statement_token1] = ACTIONS(8958), + [aux_sym_put_statement_token1] = ACTIONS(8958), + [aux_sym_unlock_statement_token1] = ACTIONS(8958), + [aux_sym_seek_statement_token1] = ACTIONS(8958), + [sym_reset_statement] = ACTIONS(8958), + [aux_sym_raise_event_statement_token1] = ACTIONS(8958), + [sym_stop_statement] = ACTIONS(8958), + [sym_beep_statement] = ACTIONS(8958), + [aux_sym_unload_statement_token1] = ACTIONS(8958), + [aux_sym_def_type_statement_token1] = ACTIONS(8958), + [aux_sym_def_type_statement_token2] = ACTIONS(8958), + [aux_sym_def_type_statement_token3] = ACTIONS(8958), + [aux_sym_def_type_statement_token4] = ACTIONS(8958), + [aux_sym_def_type_statement_token5] = ACTIONS(8958), + [aux_sym_def_type_statement_token6] = ACTIONS(8958), + [aux_sym_def_type_statement_token7] = ACTIONS(8958), + [aux_sym_def_type_statement_token8] = ACTIONS(8958), + [aux_sym_def_type_statement_token9] = ACTIONS(8958), + [aux_sym_def_type_statement_token10] = ACTIONS(8958), + [aux_sym_def_type_statement_token11] = ACTIONS(8958), + [aux_sym_def_type_statement_token12] = ACTIONS(8958), + [aux_sym_def_type_statement_token13] = ACTIONS(8958), + [aux_sym_def_type_statement_token14] = ACTIONS(8958), + [aux_sym_call_statement_token1] = ACTIONS(8958), + [sym__ambiguous_call_statement] = ACTIONS(8958), + [aux_sym_addressof_expression_token1] = ACTIONS(8958), + [aux_sym_type_of_expression_token1] = ACTIONS(8958), + [aux_sym_unary_expression_token1] = ACTIONS(8958), + [sym_string_literal] = ACTIONS(8960), + [sym_number_literal] = ACTIONS(8960), + [aux_sym_boolean_literal_token1] = ACTIONS(8958), + [aux_sym_boolean_literal_token2] = ACTIONS(8958), + [sym_nothing_literal] = ACTIONS(8958), + [sym_null_literal] = ACTIONS(8958), + [sym_empty_literal] = ACTIONS(8958), + [sym_date_literal] = ACTIONS(8960), + [anon_sym_POUND] = ACTIONS(8958), + }, + [STATE(3841)] = { + [sym_identifier] = ACTIONS(8962), + [sym_newline] = ACTIONS(8964), + [anon_sym_COLON] = ACTIONS(8964), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8962), + [aux_sym_frm_property_statement_token1] = ACTIONS(8962), + [anon_sym_DOT] = ACTIONS(8962), + [anon_sym_BANG] = ACTIONS(8964), + [aux_sym__attribute_identifier_token1] = ACTIONS(8962), + [aux_sym_option_statement_token3] = ACTIONS(8962), + [aux_sym_type_declaration_token1] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8962), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8962), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8962), + [aux_sym_enum_declaration_token1] = ACTIONS(8962), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8962), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8962), + [aux_sym_declare_function_statement_token1] = ACTIONS(8962), + [aux_sym_preprocessor_const_token1] = ACTIONS(8962), + [aux_sym__property_get_header_token1] = ACTIONS(8962), + [aux_sym_event_declaration_token1] = ACTIONS(8962), + [sym_static_modifier] = ACTIONS(8962), + [sym__dim_keyword] = ACTIONS(8962), + [sym__redim_keyword] = ACTIONS(8962), + [aux_sym_get_accessor_token1] = ACTIONS(8962), + [aux_sym_set_accessor_token1] = ACTIONS(8962), + [anon_sym_COMMA] = ACTIONS(8964), + [aux_sym_const_declaration_token1] = ACTIONS(8962), + [anon_sym_LPAREN] = ACTIONS(8964), + [aux_sym_as_type_clause_token2] = ACTIONS(8962), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8962), + [aux_sym_visibility_token1] = ACTIONS(8962), + [aux_sym_visibility_token2] = ACTIONS(8962), + [aux_sym_elseif_fragment_token1] = ACTIONS(8962), + [aux_sym_else_fragment_token1] = ACTIONS(8962), + [aux_sym_select_statement_token1] = ACTIONS(8962), + [aux_sym__for_header_token1] = ACTIONS(8962), + [aux_sym_do_statement_token1] = ACTIONS(8962), + [aux_sym_do_condition_token1] = ACTIONS(8962), + [aux_sym_with_statement_token1] = ACTIONS(8962), + [aux_sym_exit_statement_token1] = ACTIONS(8962), + [sym_end_statement] = ACTIONS(8964), + [aux_sym_on_goto_statement_token1] = ACTIONS(8962), + [aux_sym_on_goto_statement_token2] = ACTIONS(8962), + [aux_sym_on_error_statement_token2] = ACTIONS(8962), + [sym__ambiguous_redim_statement] = ACTIONS(8964), + [aux_sym_erase_statement_token1] = ACTIONS(8962), + [aux_sym_open_statement_token1] = ACTIONS(8962), + [aux_sym_file_mode_token2] = ACTIONS(8962), + [aux_sym_file_access_token2] = ACTIONS(8962), + [aux_sym_file_lock_token2] = ACTIONS(8962), + [aux_sym_print_statement_token1] = ACTIONS(8962), + [anon_sym_PLUS] = ACTIONS(8964), + [anon_sym_DASH] = ACTIONS(8962), + [anon_sym_QMARK] = ACTIONS(8964), + [aux_sym_close_statement_token1] = ACTIONS(8962), + [aux_sym_put_statement_token1] = ACTIONS(8962), + [aux_sym_unlock_statement_token1] = ACTIONS(8962), + [aux_sym_seek_statement_token1] = ACTIONS(8962), + [sym_reset_statement] = ACTIONS(8962), + [aux_sym_raise_event_statement_token1] = ACTIONS(8962), + [sym_stop_statement] = ACTIONS(8962), + [sym_beep_statement] = ACTIONS(8962), + [aux_sym_unload_statement_token1] = ACTIONS(8962), + [aux_sym_def_type_statement_token1] = ACTIONS(8962), + [aux_sym_def_type_statement_token2] = ACTIONS(8962), + [aux_sym_def_type_statement_token3] = ACTIONS(8962), + [aux_sym_def_type_statement_token4] = ACTIONS(8962), + [aux_sym_def_type_statement_token5] = ACTIONS(8962), + [aux_sym_def_type_statement_token6] = ACTIONS(8962), + [aux_sym_def_type_statement_token7] = ACTIONS(8962), + [aux_sym_def_type_statement_token8] = ACTIONS(8962), + [aux_sym_def_type_statement_token9] = ACTIONS(8962), + [aux_sym_def_type_statement_token10] = ACTIONS(8962), + [aux_sym_def_type_statement_token11] = ACTIONS(8962), + [aux_sym_def_type_statement_token12] = ACTIONS(8962), + [aux_sym_def_type_statement_token13] = ACTIONS(8962), + [aux_sym_def_type_statement_token14] = ACTIONS(8962), + [aux_sym_call_statement_token1] = ACTIONS(8962), + [sym__ambiguous_call_statement] = ACTIONS(8962), + [aux_sym_addressof_expression_token1] = ACTIONS(8962), + [aux_sym_type_of_expression_token1] = ACTIONS(8962), + [aux_sym_unary_expression_token1] = ACTIONS(8962), + [sym_string_literal] = ACTIONS(8964), + [sym_number_literal] = ACTIONS(8964), + [aux_sym_boolean_literal_token1] = ACTIONS(8962), + [aux_sym_boolean_literal_token2] = ACTIONS(8962), + [sym_nothing_literal] = ACTIONS(8962), + [sym_null_literal] = ACTIONS(8962), + [sym_empty_literal] = ACTIONS(8962), + [sym_date_literal] = ACTIONS(8964), + [anon_sym_POUND] = ACTIONS(8962), + }, + [STATE(3842)] = { + [sym_parameter_list] = STATE(3945), + [sym_identifier] = ACTIONS(8966), + [sym_newline] = ACTIONS(8968), + [anon_sym_COLON] = ACTIONS(8968), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8966), + [aux_sym_frm_property_statement_token1] = ACTIONS(8966), + [anon_sym_DOT] = ACTIONS(8966), + [anon_sym_BANG] = ACTIONS(8968), + [aux_sym__attribute_identifier_token1] = ACTIONS(8966), + [aux_sym_option_statement_token3] = ACTIONS(8966), + [aux_sym_type_declaration_token1] = ACTIONS(8966), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8966), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8966), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8966), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8966), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8966), + [aux_sym_enum_declaration_token1] = ACTIONS(8966), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8966), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8966), + [aux_sym_declare_function_statement_token1] = ACTIONS(8966), + [aux_sym_preprocessor_const_token1] = ACTIONS(8966), + [aux_sym__property_get_header_token1] = ACTIONS(8966), + [aux_sym_event_declaration_token1] = ACTIONS(8966), + [sym_static_modifier] = ACTIONS(8966), + [sym__dim_keyword] = ACTIONS(8966), + [sym__redim_keyword] = ACTIONS(8966), + [aux_sym_get_accessor_token1] = ACTIONS(8966), + [aux_sym_set_accessor_token1] = ACTIONS(8966), + [aux_sym_const_declaration_token1] = ACTIONS(8966), + [anon_sym_LPAREN] = ACTIONS(8126), + [aux_sym_as_type_clause_token2] = ACTIONS(8966), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8966), + [aux_sym_visibility_token1] = ACTIONS(8966), + [aux_sym_visibility_token2] = ACTIONS(8966), + [aux_sym_elseif_fragment_token1] = ACTIONS(8966), + [aux_sym_else_fragment_token1] = ACTIONS(8966), + [aux_sym_select_statement_token1] = ACTIONS(8966), + [aux_sym__for_header_token1] = ACTIONS(8966), + [aux_sym_do_statement_token1] = ACTIONS(8966), + [aux_sym_do_condition_token1] = ACTIONS(8966), + [aux_sym_with_statement_token1] = ACTIONS(8966), + [aux_sym_exit_statement_token1] = ACTIONS(8966), + [sym_end_statement] = ACTIONS(8968), + [aux_sym_on_goto_statement_token1] = ACTIONS(8966), + [aux_sym_on_goto_statement_token2] = ACTIONS(8966), + [aux_sym_on_error_statement_token2] = ACTIONS(8966), + [sym__ambiguous_redim_statement] = ACTIONS(8968), + [aux_sym_erase_statement_token1] = ACTIONS(8966), + [aux_sym_open_statement_token1] = ACTIONS(8966), + [aux_sym_file_mode_token2] = ACTIONS(8966), + [aux_sym_file_access_token2] = ACTIONS(8966), + [aux_sym_file_lock_token2] = ACTIONS(8966), + [aux_sym_print_statement_token1] = ACTIONS(8966), + [anon_sym_PLUS] = ACTIONS(8968), + [anon_sym_DASH] = ACTIONS(8966), + [anon_sym_QMARK] = ACTIONS(8968), + [aux_sym_close_statement_token1] = ACTIONS(8966), + [aux_sym_put_statement_token1] = ACTIONS(8966), + [aux_sym_unlock_statement_token1] = ACTIONS(8966), + [aux_sym_seek_statement_token1] = ACTIONS(8966), + [sym_reset_statement] = ACTIONS(8966), + [aux_sym_raise_event_statement_token1] = ACTIONS(8966), + [sym_stop_statement] = ACTIONS(8966), + [sym_beep_statement] = ACTIONS(8966), + [aux_sym_unload_statement_token1] = ACTIONS(8966), + [aux_sym_def_type_statement_token1] = ACTIONS(8966), + [aux_sym_def_type_statement_token2] = ACTIONS(8966), + [aux_sym_def_type_statement_token3] = ACTIONS(8966), + [aux_sym_def_type_statement_token4] = ACTIONS(8966), + [aux_sym_def_type_statement_token5] = ACTIONS(8966), + [aux_sym_def_type_statement_token6] = ACTIONS(8966), + [aux_sym_def_type_statement_token7] = ACTIONS(8966), + [aux_sym_def_type_statement_token8] = ACTIONS(8966), + [aux_sym_def_type_statement_token9] = ACTIONS(8966), + [aux_sym_def_type_statement_token10] = ACTIONS(8966), + [aux_sym_def_type_statement_token11] = ACTIONS(8966), + [aux_sym_def_type_statement_token12] = ACTIONS(8966), + [aux_sym_def_type_statement_token13] = ACTIONS(8966), + [aux_sym_def_type_statement_token14] = ACTIONS(8966), + [aux_sym_call_statement_token1] = ACTIONS(8966), + [sym__ambiguous_call_statement] = ACTIONS(8966), + [aux_sym_addressof_expression_token1] = ACTIONS(8966), + [aux_sym_type_of_expression_token1] = ACTIONS(8966), + [aux_sym_unary_expression_token1] = ACTIONS(8966), + [sym_string_literal] = ACTIONS(8968), + [sym_number_literal] = ACTIONS(8968), + [aux_sym_boolean_literal_token1] = ACTIONS(8966), + [aux_sym_boolean_literal_token2] = ACTIONS(8966), + [sym_nothing_literal] = ACTIONS(8966), + [sym_null_literal] = ACTIONS(8966), + [sym_empty_literal] = ACTIONS(8966), + [sym_date_literal] = ACTIONS(8968), + [anon_sym_POUND] = ACTIONS(8966), + }, + [STATE(3843)] = { + [sym_identifier] = ACTIONS(8970), + [sym_newline] = ACTIONS(8972), + [anon_sym_COLON] = ACTIONS(8972), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8970), + [aux_sym_frm_property_statement_token1] = ACTIONS(8970), + [anon_sym_DOT] = ACTIONS(8970), + [anon_sym_BANG] = ACTIONS(8972), + [aux_sym__attribute_identifier_token1] = ACTIONS(8970), + [aux_sym_option_statement_token3] = ACTIONS(8970), + [aux_sym_type_declaration_token1] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8970), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8970), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8970), + [aux_sym_enum_declaration_token1] = ACTIONS(8970), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8970), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8970), + [aux_sym_declare_function_statement_token1] = ACTIONS(8970), + [aux_sym_preprocessor_const_token1] = ACTIONS(8970), + [aux_sym__property_get_header_token1] = ACTIONS(8970), + [aux_sym_event_declaration_token1] = ACTIONS(8970), + [sym_static_modifier] = ACTIONS(8970), + [sym__dim_keyword] = ACTIONS(8970), + [sym__redim_keyword] = ACTIONS(8970), + [aux_sym_get_accessor_token1] = ACTIONS(8970), + [aux_sym_set_accessor_token1] = ACTIONS(8970), + [anon_sym_COMMA] = ACTIONS(8972), + [aux_sym_const_declaration_token1] = ACTIONS(8970), + [anon_sym_LPAREN] = ACTIONS(8972), + [aux_sym_as_type_clause_token2] = ACTIONS(8970), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8970), + [aux_sym_visibility_token1] = ACTIONS(8970), + [aux_sym_visibility_token2] = ACTIONS(8970), + [aux_sym_elseif_fragment_token1] = ACTIONS(8970), + [aux_sym_else_fragment_token1] = ACTIONS(8970), + [aux_sym_select_statement_token1] = ACTIONS(8970), + [aux_sym__for_header_token1] = ACTIONS(8970), + [aux_sym_do_statement_token1] = ACTIONS(8970), + [aux_sym_do_condition_token1] = ACTIONS(8970), + [aux_sym_with_statement_token1] = ACTIONS(8970), + [aux_sym_exit_statement_token1] = ACTIONS(8970), + [sym_end_statement] = ACTIONS(8972), + [aux_sym_on_goto_statement_token1] = ACTIONS(8970), + [aux_sym_on_goto_statement_token2] = ACTIONS(8970), + [aux_sym_on_error_statement_token2] = ACTIONS(8970), + [sym__ambiguous_redim_statement] = ACTIONS(8972), + [aux_sym_erase_statement_token1] = ACTIONS(8970), + [aux_sym_open_statement_token1] = ACTIONS(8970), + [aux_sym_file_mode_token2] = ACTIONS(8970), + [aux_sym_file_access_token2] = ACTIONS(8970), + [aux_sym_file_lock_token2] = ACTIONS(8970), + [aux_sym_print_statement_token1] = ACTIONS(8970), + [anon_sym_PLUS] = ACTIONS(8972), + [anon_sym_DASH] = ACTIONS(8970), + [anon_sym_QMARK] = ACTIONS(8972), + [aux_sym_close_statement_token1] = ACTIONS(8970), + [aux_sym_put_statement_token1] = ACTIONS(8970), + [aux_sym_unlock_statement_token1] = ACTIONS(8970), + [aux_sym_seek_statement_token1] = ACTIONS(8970), + [sym_reset_statement] = ACTIONS(8970), + [aux_sym_raise_event_statement_token1] = ACTIONS(8970), + [sym_stop_statement] = ACTIONS(8970), + [sym_beep_statement] = ACTIONS(8970), + [aux_sym_unload_statement_token1] = ACTIONS(8970), + [aux_sym_def_type_statement_token1] = ACTIONS(8970), + [aux_sym_def_type_statement_token2] = ACTIONS(8970), + [aux_sym_def_type_statement_token3] = ACTIONS(8970), + [aux_sym_def_type_statement_token4] = ACTIONS(8970), + [aux_sym_def_type_statement_token5] = ACTIONS(8970), + [aux_sym_def_type_statement_token6] = ACTIONS(8970), + [aux_sym_def_type_statement_token7] = ACTIONS(8970), + [aux_sym_def_type_statement_token8] = ACTIONS(8970), + [aux_sym_def_type_statement_token9] = ACTIONS(8970), + [aux_sym_def_type_statement_token10] = ACTIONS(8970), + [aux_sym_def_type_statement_token11] = ACTIONS(8970), + [aux_sym_def_type_statement_token12] = ACTIONS(8970), + [aux_sym_def_type_statement_token13] = ACTIONS(8970), + [aux_sym_def_type_statement_token14] = ACTIONS(8970), + [aux_sym_call_statement_token1] = ACTIONS(8970), + [sym__ambiguous_call_statement] = ACTIONS(8970), + [aux_sym_addressof_expression_token1] = ACTIONS(8970), + [aux_sym_type_of_expression_token1] = ACTIONS(8970), + [aux_sym_unary_expression_token1] = ACTIONS(8970), + [sym_string_literal] = ACTIONS(8972), + [sym_number_literal] = ACTIONS(8972), + [aux_sym_boolean_literal_token1] = ACTIONS(8970), + [aux_sym_boolean_literal_token2] = ACTIONS(8970), + [sym_nothing_literal] = ACTIONS(8970), + [sym_null_literal] = ACTIONS(8970), + [sym_empty_literal] = ACTIONS(8970), + [sym_date_literal] = ACTIONS(8972), + [anon_sym_POUND] = ACTIONS(8970), + }, + [STATE(3844)] = { + [sym_identifier] = ACTIONS(6438), + [sym_newline] = ACTIONS(6440), + [anon_sym_COLON] = ACTIONS(6440), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6438), + [aux_sym_frm_property_statement_token1] = ACTIONS(6438), + [anon_sym_DOT] = ACTIONS(6438), + [anon_sym_BANG] = ACTIONS(6440), + [aux_sym__attribute_identifier_token1] = ACTIONS(6438), + [aux_sym_option_statement_token3] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6438), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6438), + [aux_sym_preprocessor_const_token1] = ACTIONS(6438), + [sym_static_modifier] = ACTIONS(6438), + [sym__dim_keyword] = ACTIONS(6438), + [sym__redim_keyword] = ACTIONS(6438), + [aux_sym_get_accessor_token1] = ACTIONS(6438), + [aux_sym_set_accessor_token1] = ACTIONS(6438), + [aux_sym_const_declaration_token1] = ACTIONS(6438), + [anon_sym_LPAREN] = ACTIONS(6440), + [aux_sym_as_type_clause_token2] = ACTIONS(6438), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6438), + [aux_sym_visibility_token1] = ACTIONS(6438), + [aux_sym_visibility_token2] = ACTIONS(6438), + [aux_sym_elseif_fragment_token1] = ACTIONS(6438), + [aux_sym_else_fragment_token1] = ACTIONS(6438), + [aux_sym_select_statement_token1] = ACTIONS(6438), + [aux_sym__for_header_token1] = ACTIONS(6438), + [aux_sym_do_statement_token1] = ACTIONS(6438), + [aux_sym_do_condition_token1] = ACTIONS(6438), + [aux_sym_with_statement_token1] = ACTIONS(6438), + [aux_sym_exit_statement_token1] = ACTIONS(6438), + [sym_end_statement] = ACTIONS(6440), + [aux_sym_on_goto_statement_token1] = ACTIONS(6438), + [aux_sym_on_goto_statement_token2] = ACTIONS(6438), + [aux_sym_on_error_statement_token2] = ACTIONS(6438), + [sym__ambiguous_redim_statement] = ACTIONS(6440), + [aux_sym_erase_statement_token1] = ACTIONS(6438), + [aux_sym_open_statement_token1] = ACTIONS(6438), + [aux_sym_file_mode_token2] = ACTIONS(6438), + [aux_sym_file_access_token2] = ACTIONS(6438), + [aux_sym_file_lock_token2] = ACTIONS(6438), + [aux_sym_print_statement_token1] = ACTIONS(6438), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_QMARK] = ACTIONS(6440), + [aux_sym_close_statement_token1] = ACTIONS(6438), + [aux_sym_put_statement_token1] = ACTIONS(6438), + [aux_sym_unlock_statement_token1] = ACTIONS(6438), + [aux_sym_seek_statement_token1] = ACTIONS(6438), + [sym_reset_statement] = ACTIONS(6438), + [aux_sym_raise_event_statement_token1] = ACTIONS(6438), + [sym_stop_statement] = ACTIONS(6438), + [sym_beep_statement] = ACTIONS(6438), + [aux_sym_unload_statement_token1] = ACTIONS(6438), + [aux_sym_def_type_statement_token1] = ACTIONS(6438), + [aux_sym_def_type_statement_token2] = ACTIONS(6438), + [aux_sym_def_type_statement_token3] = ACTIONS(6438), + [aux_sym_def_type_statement_token4] = ACTIONS(6438), + [aux_sym_def_type_statement_token5] = ACTIONS(6438), + [aux_sym_def_type_statement_token6] = ACTIONS(6438), + [aux_sym_def_type_statement_token7] = ACTIONS(6438), + [aux_sym_def_type_statement_token8] = ACTIONS(6438), + [aux_sym_def_type_statement_token9] = ACTIONS(6438), + [aux_sym_def_type_statement_token10] = ACTIONS(6438), + [aux_sym_def_type_statement_token11] = ACTIONS(6438), + [aux_sym_def_type_statement_token12] = ACTIONS(6438), + [aux_sym_def_type_statement_token13] = ACTIONS(6438), + [aux_sym_def_type_statement_token14] = ACTIONS(6438), + [aux_sym_call_statement_token1] = ACTIONS(6438), + [sym__ambiguous_call_statement] = ACTIONS(6438), + [aux_sym_addressof_expression_token1] = ACTIONS(6438), + [aux_sym_type_of_expression_token1] = ACTIONS(6438), + [aux_sym_unary_expression_token1] = ACTIONS(6438), + [sym_string_literal] = ACTIONS(6440), + [sym_number_literal] = ACTIONS(6440), + [aux_sym_boolean_literal_token1] = ACTIONS(6438), + [aux_sym_boolean_literal_token2] = ACTIONS(6438), + [sym_nothing_literal] = ACTIONS(6438), + [sym_null_literal] = ACTIONS(6438), + [sym_empty_literal] = ACTIONS(6438), + [sym_date_literal] = ACTIONS(6440), + [anon_sym_POUND] = ACTIONS(6438), + }, + [STATE(3845)] = { + [sym_identifier] = ACTIONS(8974), + [sym_newline] = ACTIONS(8976), + [anon_sym_COLON] = ACTIONS(8976), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8974), + [aux_sym_frm_property_statement_token1] = ACTIONS(8974), + [anon_sym_DOT] = ACTIONS(8974), + [anon_sym_BANG] = ACTIONS(8976), + [aux_sym__attribute_identifier_token1] = ACTIONS(8974), + [aux_sym_option_statement_token3] = ACTIONS(8974), + [aux_sym_type_declaration_token1] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8974), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8974), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8974), + [aux_sym_enum_declaration_token1] = ACTIONS(8974), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8974), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8974), + [aux_sym_declare_function_statement_token1] = ACTIONS(8974), + [aux_sym_preprocessor_const_token1] = ACTIONS(8974), + [aux_sym__property_get_header_token1] = ACTIONS(8974), + [aux_sym_event_declaration_token1] = ACTIONS(8974), + [sym_static_modifier] = ACTIONS(8974), + [sym__dim_keyword] = ACTIONS(8974), + [sym__redim_keyword] = ACTIONS(8974), + [aux_sym_get_accessor_token1] = ACTIONS(8974), + [aux_sym_set_accessor_token1] = ACTIONS(8974), + [anon_sym_COMMA] = ACTIONS(8978), + [aux_sym_const_declaration_token1] = ACTIONS(8974), + [anon_sym_LPAREN] = ACTIONS(8976), + [aux_sym_as_type_clause_token2] = ACTIONS(8974), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8974), + [aux_sym_visibility_token1] = ACTIONS(8974), + [aux_sym_visibility_token2] = ACTIONS(8974), + [aux_sym_elseif_fragment_token1] = ACTIONS(8974), + [aux_sym_else_fragment_token1] = ACTIONS(8974), + [aux_sym_select_statement_token1] = ACTIONS(8974), + [aux_sym__for_header_token1] = ACTIONS(8974), + [aux_sym_do_statement_token1] = ACTIONS(8974), + [aux_sym_do_condition_token1] = ACTIONS(8974), + [aux_sym_with_statement_token1] = ACTIONS(8974), + [aux_sym_exit_statement_token1] = ACTIONS(8974), + [sym_end_statement] = ACTIONS(8976), + [aux_sym_on_goto_statement_token1] = ACTIONS(8974), + [aux_sym_on_goto_statement_token2] = ACTIONS(8974), + [aux_sym_on_error_statement_token2] = ACTIONS(8974), + [sym__ambiguous_redim_statement] = ACTIONS(8976), + [aux_sym_erase_statement_token1] = ACTIONS(8974), + [aux_sym_open_statement_token1] = ACTIONS(8974), + [aux_sym_file_mode_token2] = ACTIONS(8974), + [aux_sym_file_access_token2] = ACTIONS(8974), + [aux_sym_file_lock_token2] = ACTIONS(8974), + [aux_sym_print_statement_token1] = ACTIONS(8974), + [anon_sym_PLUS] = ACTIONS(8976), + [anon_sym_DASH] = ACTIONS(8974), + [anon_sym_QMARK] = ACTIONS(8976), + [aux_sym_close_statement_token1] = ACTIONS(8974), + [aux_sym_put_statement_token1] = ACTIONS(8974), + [aux_sym_unlock_statement_token1] = ACTIONS(8974), + [aux_sym_seek_statement_token1] = ACTIONS(8974), + [sym_reset_statement] = ACTIONS(8974), + [aux_sym_raise_event_statement_token1] = ACTIONS(8974), + [sym_stop_statement] = ACTIONS(8974), + [sym_beep_statement] = ACTIONS(8974), + [aux_sym_unload_statement_token1] = ACTIONS(8974), + [aux_sym_def_type_statement_token1] = ACTIONS(8974), + [aux_sym_def_type_statement_token2] = ACTIONS(8974), + [aux_sym_def_type_statement_token3] = ACTIONS(8974), + [aux_sym_def_type_statement_token4] = ACTIONS(8974), + [aux_sym_def_type_statement_token5] = ACTIONS(8974), + [aux_sym_def_type_statement_token6] = ACTIONS(8974), + [aux_sym_def_type_statement_token7] = ACTIONS(8974), + [aux_sym_def_type_statement_token8] = ACTIONS(8974), + [aux_sym_def_type_statement_token9] = ACTIONS(8974), + [aux_sym_def_type_statement_token10] = ACTIONS(8974), + [aux_sym_def_type_statement_token11] = ACTIONS(8974), + [aux_sym_def_type_statement_token12] = ACTIONS(8974), + [aux_sym_def_type_statement_token13] = ACTIONS(8974), + [aux_sym_def_type_statement_token14] = ACTIONS(8974), + [aux_sym_call_statement_token1] = ACTIONS(8974), + [sym__ambiguous_call_statement] = ACTIONS(8974), + [aux_sym_addressof_expression_token1] = ACTIONS(8974), + [aux_sym_type_of_expression_token1] = ACTIONS(8974), + [aux_sym_unary_expression_token1] = ACTIONS(8974), + [sym_string_literal] = ACTIONS(8976), + [sym_number_literal] = ACTIONS(8976), + [aux_sym_boolean_literal_token1] = ACTIONS(8974), + [aux_sym_boolean_literal_token2] = ACTIONS(8974), + [sym_nothing_literal] = ACTIONS(8974), + [sym_null_literal] = ACTIONS(8974), + [sym_empty_literal] = ACTIONS(8974), + [sym_date_literal] = ACTIONS(8976), + [anon_sym_POUND] = ACTIONS(8974), + }, + [STATE(3846)] = { + [sym_identifier] = ACTIONS(6304), + [sym_newline] = ACTIONS(6306), + [anon_sym_COLON] = ACTIONS(6306), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6304), + [aux_sym_frm_property_statement_token1] = ACTIONS(6304), + [anon_sym_DOT] = ACTIONS(6304), + [anon_sym_BANG] = ACTIONS(6306), + [aux_sym__attribute_identifier_token1] = ACTIONS(6304), + [aux_sym_option_statement_token3] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6304), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6304), + [aux_sym_preprocessor_const_token1] = ACTIONS(6304), + [sym_static_modifier] = ACTIONS(6304), + [sym__dim_keyword] = ACTIONS(6304), + [sym__redim_keyword] = ACTIONS(6304), + [aux_sym_get_accessor_token1] = ACTIONS(6304), + [aux_sym_set_accessor_token1] = ACTIONS(6304), + [aux_sym_const_declaration_token1] = ACTIONS(6304), + [anon_sym_LPAREN] = ACTIONS(6306), + [aux_sym_as_type_clause_token2] = ACTIONS(6304), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6304), + [aux_sym_visibility_token1] = ACTIONS(6304), + [aux_sym_visibility_token2] = ACTIONS(6304), + [aux_sym_elseif_fragment_token1] = ACTIONS(6304), + [aux_sym_else_fragment_token1] = ACTIONS(6304), + [aux_sym_select_statement_token1] = ACTIONS(6304), + [aux_sym__for_header_token1] = ACTIONS(6304), + [aux_sym_do_statement_token1] = ACTIONS(6304), + [aux_sym_do_condition_token1] = ACTIONS(6304), + [aux_sym_with_statement_token1] = ACTIONS(6304), + [aux_sym_exit_statement_token1] = ACTIONS(6304), + [sym_end_statement] = ACTIONS(6306), + [aux_sym_on_goto_statement_token1] = ACTIONS(6304), + [aux_sym_on_goto_statement_token2] = ACTIONS(6304), + [aux_sym_on_error_statement_token2] = ACTIONS(6304), + [sym__ambiguous_redim_statement] = ACTIONS(6306), + [aux_sym_erase_statement_token1] = ACTIONS(6304), + [aux_sym_open_statement_token1] = ACTIONS(6304), + [aux_sym_file_mode_token2] = ACTIONS(6304), + [aux_sym_file_access_token2] = ACTIONS(6304), + [aux_sym_file_lock_token2] = ACTIONS(6304), + [aux_sym_print_statement_token1] = ACTIONS(6304), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_QMARK] = ACTIONS(6306), + [aux_sym_close_statement_token1] = ACTIONS(6304), + [aux_sym_put_statement_token1] = ACTIONS(6304), + [aux_sym_unlock_statement_token1] = ACTIONS(6304), + [aux_sym_seek_statement_token1] = ACTIONS(6304), + [sym_reset_statement] = ACTIONS(6304), + [aux_sym_raise_event_statement_token1] = ACTIONS(6304), + [sym_stop_statement] = ACTIONS(6304), + [sym_beep_statement] = ACTIONS(6304), + [aux_sym_unload_statement_token1] = ACTIONS(6304), + [aux_sym_def_type_statement_token1] = ACTIONS(6304), + [aux_sym_def_type_statement_token2] = ACTIONS(6304), + [aux_sym_def_type_statement_token3] = ACTIONS(6304), + [aux_sym_def_type_statement_token4] = ACTIONS(6304), + [aux_sym_def_type_statement_token5] = ACTIONS(6304), + [aux_sym_def_type_statement_token6] = ACTIONS(6304), + [aux_sym_def_type_statement_token7] = ACTIONS(6304), + [aux_sym_def_type_statement_token8] = ACTIONS(6304), + [aux_sym_def_type_statement_token9] = ACTIONS(6304), + [aux_sym_def_type_statement_token10] = ACTIONS(6304), + [aux_sym_def_type_statement_token11] = ACTIONS(6304), + [aux_sym_def_type_statement_token12] = ACTIONS(6304), + [aux_sym_def_type_statement_token13] = ACTIONS(6304), + [aux_sym_def_type_statement_token14] = ACTIONS(6304), + [aux_sym_call_statement_token1] = ACTIONS(6304), + [sym__ambiguous_call_statement] = ACTIONS(6304), + [aux_sym_addressof_expression_token1] = ACTIONS(6304), + [aux_sym_type_of_expression_token1] = ACTIONS(6304), + [aux_sym_unary_expression_token1] = ACTIONS(6304), + [sym_string_literal] = ACTIONS(6306), + [sym_number_literal] = ACTIONS(6306), + [aux_sym_boolean_literal_token1] = ACTIONS(6304), + [aux_sym_boolean_literal_token2] = ACTIONS(6304), + [sym_nothing_literal] = ACTIONS(6304), + [sym_null_literal] = ACTIONS(6304), + [sym_empty_literal] = ACTIONS(6304), + [sym_date_literal] = ACTIONS(6306), + [anon_sym_POUND] = ACTIONS(6304), + }, + [STATE(3847)] = { + [sym_identifier] = ACTIONS(8980), + [sym_newline] = ACTIONS(8982), + [anon_sym_COLON] = ACTIONS(8982), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8980), + [aux_sym_frm_property_statement_token1] = ACTIONS(8980), + [anon_sym_DOT] = ACTIONS(8980), + [anon_sym_BANG] = ACTIONS(8982), + [aux_sym__attribute_identifier_token1] = ACTIONS(8980), + [aux_sym_option_statement_token3] = ACTIONS(8980), + [aux_sym_type_declaration_token1] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8980), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8980), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8980), + [aux_sym_enum_declaration_token1] = ACTIONS(8980), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8980), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8980), + [aux_sym_declare_function_statement_token1] = ACTIONS(8980), + [aux_sym_preprocessor_const_token1] = ACTIONS(8980), + [aux_sym__property_get_header_token1] = ACTIONS(8980), + [aux_sym_event_declaration_token1] = ACTIONS(8980), + [sym_static_modifier] = ACTIONS(8980), + [sym__dim_keyword] = ACTIONS(8980), + [sym__redim_keyword] = ACTIONS(8980), + [aux_sym_get_accessor_token1] = ACTIONS(8980), + [aux_sym_set_accessor_token1] = ACTIONS(8980), + [aux_sym_const_declaration_token1] = ACTIONS(8980), + [anon_sym_LPAREN] = ACTIONS(8982), + [aux_sym_as_type_clause_token2] = ACTIONS(8980), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8980), + [aux_sym_visibility_token1] = ACTIONS(8980), + [aux_sym_visibility_token2] = ACTIONS(8980), + [aux_sym_elseif_fragment_token1] = ACTIONS(8980), + [aux_sym_else_fragment_token1] = ACTIONS(8980), + [aux_sym_select_statement_token1] = ACTIONS(8980), + [aux_sym__for_header_token1] = ACTIONS(8980), + [aux_sym_do_statement_token1] = ACTIONS(8980), + [aux_sym_do_condition_token1] = ACTIONS(8980), + [aux_sym_with_statement_token1] = ACTIONS(8980), + [aux_sym_exit_statement_token1] = ACTIONS(8980), + [sym_end_statement] = ACTIONS(8982), + [aux_sym_on_goto_statement_token1] = ACTIONS(8980), + [aux_sym_on_goto_statement_token2] = ACTIONS(8980), + [aux_sym_on_error_statement_token2] = ACTIONS(8980), + [sym__ambiguous_redim_statement] = ACTIONS(8982), + [aux_sym_erase_statement_token1] = ACTIONS(8980), + [aux_sym_open_statement_token1] = ACTIONS(8980), + [aux_sym_open_statement_token3] = ACTIONS(8984), + [aux_sym_file_mode_token2] = ACTIONS(8980), + [aux_sym_file_access_token2] = ACTIONS(8980), + [aux_sym_file_lock_token2] = ACTIONS(8980), + [aux_sym_print_statement_token1] = ACTIONS(8980), + [anon_sym_PLUS] = ACTIONS(8982), + [anon_sym_DASH] = ACTIONS(8980), + [anon_sym_QMARK] = ACTIONS(8982), + [aux_sym_close_statement_token1] = ACTIONS(8980), + [aux_sym_put_statement_token1] = ACTIONS(8980), + [aux_sym_unlock_statement_token1] = ACTIONS(8980), + [aux_sym_seek_statement_token1] = ACTIONS(8980), + [sym_reset_statement] = ACTIONS(8980), + [aux_sym_raise_event_statement_token1] = ACTIONS(8980), + [sym_stop_statement] = ACTIONS(8980), + [sym_beep_statement] = ACTIONS(8980), + [aux_sym_unload_statement_token1] = ACTIONS(8980), + [aux_sym_def_type_statement_token1] = ACTIONS(8980), + [aux_sym_def_type_statement_token2] = ACTIONS(8980), + [aux_sym_def_type_statement_token3] = ACTIONS(8980), + [aux_sym_def_type_statement_token4] = ACTIONS(8980), + [aux_sym_def_type_statement_token5] = ACTIONS(8980), + [aux_sym_def_type_statement_token6] = ACTIONS(8980), + [aux_sym_def_type_statement_token7] = ACTIONS(8980), + [aux_sym_def_type_statement_token8] = ACTIONS(8980), + [aux_sym_def_type_statement_token9] = ACTIONS(8980), + [aux_sym_def_type_statement_token10] = ACTIONS(8980), + [aux_sym_def_type_statement_token11] = ACTIONS(8980), + [aux_sym_def_type_statement_token12] = ACTIONS(8980), + [aux_sym_def_type_statement_token13] = ACTIONS(8980), + [aux_sym_def_type_statement_token14] = ACTIONS(8980), + [aux_sym_call_statement_token1] = ACTIONS(8980), + [sym__ambiguous_call_statement] = ACTIONS(8980), + [aux_sym_addressof_expression_token1] = ACTIONS(8980), + [aux_sym_type_of_expression_token1] = ACTIONS(8980), + [aux_sym_unary_expression_token1] = ACTIONS(8980), + [sym_string_literal] = ACTIONS(8982), + [sym_number_literal] = ACTIONS(8982), + [aux_sym_boolean_literal_token1] = ACTIONS(8980), + [aux_sym_boolean_literal_token2] = ACTIONS(8980), + [sym_nothing_literal] = ACTIONS(8980), + [sym_null_literal] = ACTIONS(8980), + [sym_empty_literal] = ACTIONS(8980), + [sym_date_literal] = ACTIONS(8982), + [anon_sym_POUND] = ACTIONS(8980), + }, + [STATE(3848)] = { + [sym_identifier] = ACTIONS(8915), + [sym_newline] = ACTIONS(8918), + [anon_sym_COLON] = ACTIONS(8918), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8915), + [aux_sym_frm_property_statement_token1] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8915), + [anon_sym_BANG] = ACTIONS(8918), + [aux_sym__attribute_identifier_token1] = ACTIONS(8915), + [aux_sym_option_statement_token3] = ACTIONS(8915), + [aux_sym_type_declaration_token1] = ACTIONS(8921), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8921), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8915), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8921), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8921), + [aux_sym_enum_declaration_token1] = ACTIONS(8921), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8921), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8921), + [aux_sym_declare_function_statement_token1] = ACTIONS(8921), + [aux_sym_preprocessor_const_token1] = ACTIONS(8915), + [aux_sym__property_get_header_token1] = ACTIONS(8921), + [aux_sym_event_declaration_token1] = ACTIONS(8921), + [sym_static_modifier] = ACTIONS(8915), + [sym__dim_keyword] = ACTIONS(8915), + [sym__redim_keyword] = ACTIONS(8915), + [aux_sym_get_accessor_token1] = ACTIONS(8915), + [aux_sym_set_accessor_token1] = ACTIONS(8915), + [aux_sym_const_declaration_token1] = ACTIONS(8915), + [anon_sym_LPAREN] = ACTIONS(8918), + [aux_sym_as_type_clause_token2] = ACTIONS(8915), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8915), + [aux_sym_visibility_token1] = ACTIONS(8915), + [aux_sym_visibility_token2] = ACTIONS(8915), + [aux_sym_elseif_fragment_token1] = ACTIONS(8915), + [aux_sym_else_fragment_token1] = ACTIONS(8915), + [aux_sym_select_statement_token1] = ACTIONS(8915), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8915), + [aux_sym_do_statement_token1] = ACTIONS(8915), + [aux_sym_do_condition_token1] = ACTIONS(8915), + [aux_sym_with_statement_token1] = ACTIONS(8915), + [aux_sym_exit_statement_token1] = ACTIONS(8915), + [sym_end_statement] = ACTIONS(8918), + [aux_sym_on_goto_statement_token1] = ACTIONS(8915), + [aux_sym_on_goto_statement_token2] = ACTIONS(8915), + [aux_sym_on_error_statement_token2] = ACTIONS(8915), + [sym__ambiguous_redim_statement] = ACTIONS(8918), + [aux_sym_erase_statement_token1] = ACTIONS(8915), + [aux_sym_open_statement_token1] = ACTIONS(8915), + [aux_sym_file_mode_token2] = ACTIONS(8915), + [aux_sym_file_access_token2] = ACTIONS(8915), + [aux_sym_file_lock_token2] = ACTIONS(8915), + [aux_sym_print_statement_token1] = ACTIONS(8915), + [anon_sym_PLUS] = ACTIONS(8918), + [anon_sym_DASH] = ACTIONS(8915), + [anon_sym_QMARK] = ACTIONS(8918), + [aux_sym_close_statement_token1] = ACTIONS(8915), + [aux_sym_put_statement_token1] = ACTIONS(8915), + [aux_sym_unlock_statement_token1] = ACTIONS(8915), + [aux_sym_seek_statement_token1] = ACTIONS(8915), + [sym_reset_statement] = ACTIONS(8915), + [aux_sym_raise_event_statement_token1] = ACTIONS(8915), + [sym_stop_statement] = ACTIONS(8915), + [sym_beep_statement] = ACTIONS(8915), + [aux_sym_unload_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token2] = ACTIONS(8915), + [aux_sym_def_type_statement_token3] = ACTIONS(8915), + [aux_sym_def_type_statement_token4] = ACTIONS(8915), + [aux_sym_def_type_statement_token5] = ACTIONS(8915), + [aux_sym_def_type_statement_token6] = ACTIONS(8915), + [aux_sym_def_type_statement_token7] = ACTIONS(8915), + [aux_sym_def_type_statement_token8] = ACTIONS(8915), + [aux_sym_def_type_statement_token9] = ACTIONS(8915), + [aux_sym_def_type_statement_token10] = ACTIONS(8915), + [aux_sym_def_type_statement_token11] = ACTIONS(8915), + [aux_sym_def_type_statement_token12] = ACTIONS(8915), + [aux_sym_def_type_statement_token13] = ACTIONS(8915), + [aux_sym_def_type_statement_token14] = ACTIONS(8915), + [aux_sym_call_statement_token1] = ACTIONS(8915), + [sym__ambiguous_call_statement] = ACTIONS(8915), + [aux_sym_addressof_expression_token1] = ACTIONS(8915), + [aux_sym_type_of_expression_token1] = ACTIONS(8915), + [aux_sym_unary_expression_token1] = ACTIONS(8915), + [sym_string_literal] = ACTIONS(8918), + [sym_number_literal] = ACTIONS(8918), + [aux_sym_boolean_literal_token1] = ACTIONS(8915), + [aux_sym_boolean_literal_token2] = ACTIONS(8915), + [sym_nothing_literal] = ACTIONS(8915), + [sym_null_literal] = ACTIONS(8915), + [sym_empty_literal] = ACTIONS(8915), + [sym_date_literal] = ACTIONS(8918), + [anon_sym_POUND] = ACTIONS(8915), + }, + [STATE(3849)] = { + [sym_fixed_string_length] = STATE(3755), + [sym_array_bounds] = STATE(3860), + [sym_identifier] = ACTIONS(7134), + [sym_newline] = ACTIONS(7136), + [anon_sym_COLON] = ACTIONS(7136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7134), + [aux_sym_frm_property_statement_token1] = ACTIONS(7134), + [anon_sym_DOT] = ACTIONS(7134), + [anon_sym_BANG] = ACTIONS(7136), + [aux_sym__attribute_identifier_token1] = ACTIONS(7134), + [aux_sym_option_statement_token3] = ACTIONS(7134), + [aux_sym_type_declaration_token1] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7134), + [aux_sym_enum_declaration_token1] = ACTIONS(7134), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7134), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7134), + [aux_sym_declare_function_statement_token1] = ACTIONS(7134), + [aux_sym_preprocessor_const_token1] = ACTIONS(7134), + [aux_sym__property_get_header_token1] = ACTIONS(7134), + [aux_sym_event_declaration_token1] = ACTIONS(7134), + [sym_static_modifier] = ACTIONS(7134), + [sym__dim_keyword] = ACTIONS(7134), + [sym__redim_keyword] = ACTIONS(7134), + [aux_sym_get_accessor_token1] = ACTIONS(7134), + [aux_sym_set_accessor_token1] = ACTIONS(7134), + [aux_sym_const_declaration_token1] = ACTIONS(7134), + [anon_sym_LPAREN] = ACTIONS(7958), + [aux_sym_as_type_clause_token2] = ACTIONS(7134), + [anon_sym_STAR] = ACTIONS(8684), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7134), + [aux_sym_visibility_token1] = ACTIONS(7134), + [aux_sym_visibility_token2] = ACTIONS(7134), + [aux_sym_elseif_fragment_token1] = ACTIONS(7134), + [aux_sym_else_fragment_token1] = ACTIONS(7134), + [aux_sym_select_statement_token1] = ACTIONS(7134), + [aux_sym__for_header_token1] = ACTIONS(7134), + [aux_sym_do_statement_token1] = ACTIONS(7134), + [aux_sym_do_condition_token1] = ACTIONS(7134), + [aux_sym_with_statement_token1] = ACTIONS(7134), + [aux_sym_exit_statement_token1] = ACTIONS(7134), + [sym_end_statement] = ACTIONS(7136), + [aux_sym_on_goto_statement_token1] = ACTIONS(7134), + [aux_sym_on_goto_statement_token2] = ACTIONS(7134), + [aux_sym_on_error_statement_token2] = ACTIONS(7134), + [sym__ambiguous_redim_statement] = ACTIONS(7136), + [aux_sym_erase_statement_token1] = ACTIONS(7134), + [aux_sym_open_statement_token1] = ACTIONS(7134), + [aux_sym_file_mode_token2] = ACTIONS(7134), + [aux_sym_file_access_token2] = ACTIONS(7134), + [aux_sym_file_lock_token2] = ACTIONS(7134), + [aux_sym_print_statement_token1] = ACTIONS(7134), + [anon_sym_PLUS] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7134), + [anon_sym_QMARK] = ACTIONS(7136), + [aux_sym_close_statement_token1] = ACTIONS(7134), + [aux_sym_put_statement_token1] = ACTIONS(7134), + [aux_sym_unlock_statement_token1] = ACTIONS(7134), + [aux_sym_seek_statement_token1] = ACTIONS(7134), + [sym_reset_statement] = ACTIONS(7134), + [aux_sym_raise_event_statement_token1] = ACTIONS(7134), + [sym_stop_statement] = ACTIONS(7134), + [sym_beep_statement] = ACTIONS(7134), + [aux_sym_unload_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token2] = ACTIONS(7134), + [aux_sym_def_type_statement_token3] = ACTIONS(7134), + [aux_sym_def_type_statement_token4] = ACTIONS(7134), + [aux_sym_def_type_statement_token5] = ACTIONS(7134), + [aux_sym_def_type_statement_token6] = ACTIONS(7134), + [aux_sym_def_type_statement_token7] = ACTIONS(7134), + [aux_sym_def_type_statement_token8] = ACTIONS(7134), + [aux_sym_def_type_statement_token9] = ACTIONS(7134), + [aux_sym_def_type_statement_token10] = ACTIONS(7134), + [aux_sym_def_type_statement_token11] = ACTIONS(7134), + [aux_sym_def_type_statement_token12] = ACTIONS(7134), + [aux_sym_def_type_statement_token13] = ACTIONS(7134), + [aux_sym_def_type_statement_token14] = ACTIONS(7134), + [aux_sym_call_statement_token1] = ACTIONS(7134), + [sym__ambiguous_call_statement] = ACTIONS(7134), + [aux_sym_addressof_expression_token1] = ACTIONS(7134), + [aux_sym_type_of_expression_token1] = ACTIONS(7134), + [aux_sym_unary_expression_token1] = ACTIONS(7134), + [sym_string_literal] = ACTIONS(7136), + [sym_number_literal] = ACTIONS(7136), + [aux_sym_boolean_literal_token1] = ACTIONS(7134), + [aux_sym_boolean_literal_token2] = ACTIONS(7134), + [sym_nothing_literal] = ACTIONS(7134), + [sym_null_literal] = ACTIONS(7134), + [sym_empty_literal] = ACTIONS(7134), + [sym_date_literal] = ACTIONS(7136), + [anon_sym_POUND] = ACTIONS(7134), + }, + [STATE(3850)] = { + [sym_identifier] = ACTIONS(6392), + [sym_newline] = ACTIONS(6394), + [anon_sym_COLON] = ACTIONS(6394), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6392), + [aux_sym_frm_property_statement_token1] = ACTIONS(6392), + [anon_sym_DOT] = ACTIONS(6392), + [anon_sym_BANG] = ACTIONS(6394), + [aux_sym__attribute_identifier_token1] = ACTIONS(6392), + [aux_sym_option_statement_token3] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6392), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6392), + [aux_sym_preprocessor_const_token1] = ACTIONS(6392), + [sym_static_modifier] = ACTIONS(6392), + [sym__dim_keyword] = ACTIONS(6392), + [sym__redim_keyword] = ACTIONS(6392), + [aux_sym_get_accessor_token1] = ACTIONS(6392), + [aux_sym_set_accessor_token1] = ACTIONS(6392), + [aux_sym_const_declaration_token1] = ACTIONS(6392), + [anon_sym_LPAREN] = ACTIONS(6394), + [aux_sym_as_type_clause_token2] = ACTIONS(6392), + [anon_sym_STAR] = ACTIONS(7567), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6392), + [aux_sym_visibility_token1] = ACTIONS(6392), + [aux_sym_visibility_token2] = ACTIONS(6392), + [aux_sym_elseif_fragment_token1] = ACTIONS(6392), + [aux_sym_else_fragment_token1] = ACTIONS(6392), + [aux_sym_select_statement_token1] = ACTIONS(6392), + [aux_sym__for_header_token1] = ACTIONS(6392), + [aux_sym_do_statement_token1] = ACTIONS(6392), + [aux_sym_do_condition_token1] = ACTIONS(6392), + [aux_sym_with_statement_token1] = ACTIONS(6392), + [aux_sym_exit_statement_token1] = ACTIONS(6392), + [sym_end_statement] = ACTIONS(6394), + [aux_sym_on_goto_statement_token1] = ACTIONS(6392), + [aux_sym_on_goto_statement_token2] = ACTIONS(6392), + [aux_sym_on_error_statement_token2] = ACTIONS(6392), + [sym__ambiguous_redim_statement] = ACTIONS(6394), + [aux_sym_erase_statement_token1] = ACTIONS(6392), + [aux_sym_open_statement_token1] = ACTIONS(6392), + [aux_sym_file_mode_token2] = ACTIONS(6392), + [aux_sym_file_access_token2] = ACTIONS(6392), + [aux_sym_file_lock_token2] = ACTIONS(6392), + [aux_sym_print_statement_token1] = ACTIONS(6392), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7567), + [anon_sym_BSLASH] = ACTIONS(7571), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(7573), + [anon_sym_PLUS] = ACTIONS(7575), + [anon_sym_DASH] = ACTIONS(7577), + [anon_sym_AMP] = ACTIONS(7579), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7581), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7583), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7585), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7587), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7589), + [anon_sym_QMARK] = ACTIONS(6394), + [aux_sym_close_statement_token1] = ACTIONS(6392), + [aux_sym_put_statement_token1] = ACTIONS(6392), + [aux_sym_unlock_statement_token1] = ACTIONS(6392), + [aux_sym_seek_statement_token1] = ACTIONS(6392), + [sym_reset_statement] = ACTIONS(6392), + [aux_sym_raise_event_statement_token1] = ACTIONS(6392), + [sym_stop_statement] = ACTIONS(6392), + [sym_beep_statement] = ACTIONS(6392), + [aux_sym_unload_statement_token1] = ACTIONS(6392), + [aux_sym_def_type_statement_token1] = ACTIONS(6392), + [aux_sym_def_type_statement_token2] = ACTIONS(6392), + [aux_sym_def_type_statement_token3] = ACTIONS(6392), + [aux_sym_def_type_statement_token4] = ACTIONS(6392), + [aux_sym_def_type_statement_token5] = ACTIONS(6392), + [aux_sym_def_type_statement_token6] = ACTIONS(6392), + [aux_sym_def_type_statement_token7] = ACTIONS(6392), + [aux_sym_def_type_statement_token8] = ACTIONS(6392), + [aux_sym_def_type_statement_token9] = ACTIONS(6392), + [aux_sym_def_type_statement_token10] = ACTIONS(6392), + [aux_sym_def_type_statement_token11] = ACTIONS(6392), + [aux_sym_def_type_statement_token12] = ACTIONS(6392), + [aux_sym_def_type_statement_token13] = ACTIONS(6392), + [aux_sym_def_type_statement_token14] = ACTIONS(6392), + [aux_sym_call_statement_token1] = ACTIONS(6392), + [sym__ambiguous_call_statement] = ACTIONS(6392), + [aux_sym_addressof_expression_token1] = ACTIONS(6392), + [aux_sym_type_of_expression_token1] = ACTIONS(6392), + [aux_sym_unary_expression_token1] = ACTIONS(6392), + [sym_string_literal] = ACTIONS(6394), + [sym_number_literal] = ACTIONS(6394), + [aux_sym_boolean_literal_token1] = ACTIONS(6392), + [aux_sym_boolean_literal_token2] = ACTIONS(6392), + [sym_nothing_literal] = ACTIONS(6392), + [sym_null_literal] = ACTIONS(6392), + [sym_empty_literal] = ACTIONS(6392), + [sym_date_literal] = ACTIONS(6394), + [anon_sym_POUND] = ACTIONS(6392), + }, + [STATE(3851)] = { + [sym_identifier] = ACTIONS(8988), + [sym_newline] = ACTIONS(8990), + [anon_sym_COLON] = ACTIONS(8990), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8988), + [aux_sym_frm_property_statement_token1] = ACTIONS(8988), + [anon_sym_DOT] = ACTIONS(8988), + [anon_sym_BANG] = ACTIONS(8990), + [aux_sym__attribute_identifier_token1] = ACTIONS(8988), + [aux_sym_option_statement_token3] = ACTIONS(8988), + [aux_sym_type_declaration_token1] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8988), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8988), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8988), + [aux_sym_enum_declaration_token1] = ACTIONS(8988), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8988), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8988), + [aux_sym_declare_function_statement_token1] = ACTIONS(8988), + [aux_sym_preprocessor_const_token1] = ACTIONS(8988), + [aux_sym__property_get_header_token1] = ACTIONS(8988), + [aux_sym_event_declaration_token1] = ACTIONS(8988), + [sym_static_modifier] = ACTIONS(8988), + [sym__dim_keyword] = ACTIONS(8988), + [sym__redim_keyword] = ACTIONS(8988), + [aux_sym_get_accessor_token1] = ACTIONS(8988), + [aux_sym_set_accessor_token1] = ACTIONS(8988), + [aux_sym_const_declaration_token1] = ACTIONS(8988), + [anon_sym_LPAREN] = ACTIONS(8990), + [aux_sym_as_type_clause_token2] = ACTIONS(8988), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8988), + [aux_sym_visibility_token1] = ACTIONS(8988), + [aux_sym_visibility_token2] = ACTIONS(8988), + [aux_sym_elseif_fragment_token1] = ACTIONS(8988), + [aux_sym_else_fragment_token1] = ACTIONS(8988), + [aux_sym_select_statement_token1] = ACTIONS(8988), + [aux_sym__for_header_token1] = ACTIONS(8988), + [aux_sym_do_statement_token1] = ACTIONS(8988), + [aux_sym_do_condition_token1] = ACTIONS(8988), + [aux_sym_with_statement_token1] = ACTIONS(8988), + [aux_sym_exit_statement_token1] = ACTIONS(8988), + [sym_end_statement] = ACTIONS(8990), + [aux_sym_on_goto_statement_token1] = ACTIONS(8988), + [aux_sym_on_goto_statement_token2] = ACTIONS(8988), + [aux_sym_on_error_statement_token2] = ACTIONS(8988), + [sym__ambiguous_redim_statement] = ACTIONS(8990), + [aux_sym_erase_statement_token1] = ACTIONS(8988), + [aux_sym_open_statement_token1] = ACTIONS(8988), + [aux_sym_file_mode_token2] = ACTIONS(8988), + [aux_sym_file_access_token2] = ACTIONS(8988), + [aux_sym_file_lock_token2] = ACTIONS(8988), + [aux_sym_print_statement_token1] = ACTIONS(8988), + [anon_sym_PLUS] = ACTIONS(8990), + [anon_sym_DASH] = ACTIONS(8988), + [anon_sym_QMARK] = ACTIONS(8990), + [aux_sym_close_statement_token1] = ACTIONS(8988), + [aux_sym_put_statement_token1] = ACTIONS(8988), + [aux_sym_unlock_statement_token1] = ACTIONS(8988), + [aux_sym_seek_statement_token1] = ACTIONS(8988), + [sym_reset_statement] = ACTIONS(8988), + [aux_sym_raise_event_statement_token1] = ACTIONS(8988), + [sym_stop_statement] = ACTIONS(8988), + [sym_beep_statement] = ACTIONS(8988), + [aux_sym_unload_statement_token1] = ACTIONS(8988), + [aux_sym_def_type_statement_token1] = ACTIONS(8988), + [aux_sym_def_type_statement_token2] = ACTIONS(8988), + [aux_sym_def_type_statement_token3] = ACTIONS(8988), + [aux_sym_def_type_statement_token4] = ACTIONS(8988), + [aux_sym_def_type_statement_token5] = ACTIONS(8988), + [aux_sym_def_type_statement_token6] = ACTIONS(8988), + [aux_sym_def_type_statement_token7] = ACTIONS(8988), + [aux_sym_def_type_statement_token8] = ACTIONS(8988), + [aux_sym_def_type_statement_token9] = ACTIONS(8988), + [aux_sym_def_type_statement_token10] = ACTIONS(8988), + [aux_sym_def_type_statement_token11] = ACTIONS(8988), + [aux_sym_def_type_statement_token12] = ACTIONS(8988), + [aux_sym_def_type_statement_token13] = ACTIONS(8988), + [aux_sym_def_type_statement_token14] = ACTIONS(8988), + [aux_sym_call_statement_token1] = ACTIONS(8988), + [sym__ambiguous_call_statement] = ACTIONS(8988), + [aux_sym_addressof_expression_token1] = ACTIONS(8988), + [aux_sym_type_of_expression_token1] = ACTIONS(8988), + [aux_sym_unary_expression_token1] = ACTIONS(8988), + [sym_string_literal] = ACTIONS(8990), + [sym_number_literal] = ACTIONS(8990), + [aux_sym_boolean_literal_token1] = ACTIONS(8988), + [aux_sym_boolean_literal_token2] = ACTIONS(8988), + [sym_nothing_literal] = ACTIONS(8988), + [sym_null_literal] = ACTIONS(8988), + [sym_empty_literal] = ACTIONS(8988), + [sym_date_literal] = ACTIONS(8990), + [anon_sym_POUND] = ACTIONS(8988), + }, + [STATE(3852)] = { + [sym_identifier] = ACTIONS(8702), + [sym_newline] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(8704), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8702), + [aux_sym_frm_property_statement_token1] = ACTIONS(8702), + [anon_sym_DOT] = ACTIONS(8702), + [anon_sym_BANG] = ACTIONS(8704), + [aux_sym__attribute_identifier_token1] = ACTIONS(8702), + [aux_sym_option_statement_token3] = ACTIONS(8702), + [aux_sym_type_declaration_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8702), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8702), + [aux_sym_enum_declaration_token1] = ACTIONS(8702), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8702), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8702), + [aux_sym_declare_function_statement_token1] = ACTIONS(8702), + [aux_sym_preprocessor_const_token1] = ACTIONS(8702), + [aux_sym__property_get_header_token1] = ACTIONS(8702), + [aux_sym_event_declaration_token1] = ACTIONS(8702), + [sym_static_modifier] = ACTIONS(8702), + [sym__dim_keyword] = ACTIONS(8702), + [sym__redim_keyword] = ACTIONS(8702), + [aux_sym_get_accessor_token1] = ACTIONS(8702), + [aux_sym_set_accessor_token1] = ACTIONS(8702), + [aux_sym_const_declaration_token1] = ACTIONS(8702), + [anon_sym_LPAREN] = ACTIONS(8704), + [aux_sym_as_type_clause_token2] = ACTIONS(8702), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8702), + [aux_sym_visibility_token1] = ACTIONS(8702), + [aux_sym_visibility_token2] = ACTIONS(8702), + [aux_sym_elseif_fragment_token1] = ACTIONS(8702), + [aux_sym_else_fragment_token1] = ACTIONS(8702), + [aux_sym_select_statement_token1] = ACTIONS(8702), + [aux_sym__for_header_token1] = ACTIONS(8702), + [aux_sym_do_statement_token1] = ACTIONS(8702), + [aux_sym_do_condition_token1] = ACTIONS(8702), + [aux_sym_with_statement_token1] = ACTIONS(8702), + [aux_sym_exit_statement_token1] = ACTIONS(8702), + [sym_end_statement] = ACTIONS(8704), + [aux_sym_on_goto_statement_token1] = ACTIONS(8702), + [aux_sym_on_goto_statement_token2] = ACTIONS(8702), + [aux_sym_on_error_statement_token2] = ACTIONS(8702), + [sym__ambiguous_redim_statement] = ACTIONS(8704), + [aux_sym_erase_statement_token1] = ACTIONS(8702), + [aux_sym_open_statement_token1] = ACTIONS(8702), + [aux_sym_file_mode_token2] = ACTIONS(8702), + [aux_sym_file_access_token2] = ACTIONS(8702), + [aux_sym_file_lock_token2] = ACTIONS(8702), + [aux_sym_print_statement_token1] = ACTIONS(8702), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_DASH] = ACTIONS(8702), + [anon_sym_QMARK] = ACTIONS(8704), + [aux_sym_close_statement_token1] = ACTIONS(8702), + [aux_sym_put_statement_token1] = ACTIONS(8702), + [aux_sym_unlock_statement_token1] = ACTIONS(8702), + [aux_sym_seek_statement_token1] = ACTIONS(8702), + [sym_reset_statement] = ACTIONS(8702), + [aux_sym_raise_event_statement_token1] = ACTIONS(8702), + [sym_stop_statement] = ACTIONS(8702), + [sym_beep_statement] = ACTIONS(8702), + [aux_sym_unload_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token2] = ACTIONS(8702), + [aux_sym_def_type_statement_token3] = ACTIONS(8702), + [aux_sym_def_type_statement_token4] = ACTIONS(8702), + [aux_sym_def_type_statement_token5] = ACTIONS(8702), + [aux_sym_def_type_statement_token6] = ACTIONS(8702), + [aux_sym_def_type_statement_token7] = ACTIONS(8702), + [aux_sym_def_type_statement_token8] = ACTIONS(8702), + [aux_sym_def_type_statement_token9] = ACTIONS(8702), + [aux_sym_def_type_statement_token10] = ACTIONS(8702), + [aux_sym_def_type_statement_token11] = ACTIONS(8702), + [aux_sym_def_type_statement_token12] = ACTIONS(8702), + [aux_sym_def_type_statement_token13] = ACTIONS(8702), + [aux_sym_def_type_statement_token14] = ACTIONS(8702), + [aux_sym_call_statement_token1] = ACTIONS(8702), + [sym__ambiguous_call_statement] = ACTIONS(8702), + [aux_sym_addressof_expression_token1] = ACTIONS(8702), + [aux_sym_type_of_expression_token1] = ACTIONS(8702), + [aux_sym_unary_expression_token1] = ACTIONS(8702), + [sym_string_literal] = ACTIONS(8704), + [sym_number_literal] = ACTIONS(8704), + [aux_sym_boolean_literal_token1] = ACTIONS(8702), + [aux_sym_boolean_literal_token2] = ACTIONS(8702), + [sym_nothing_literal] = ACTIONS(8702), + [sym_null_literal] = ACTIONS(8702), + [sym_empty_literal] = ACTIONS(8702), + [sym_date_literal] = ACTIONS(8704), + [anon_sym_POUND] = ACTIONS(8702), + }, + [STATE(3853)] = { + [sym_identifier] = ACTIONS(8992), + [sym_newline] = ACTIONS(8994), + [anon_sym_COLON] = ACTIONS(8994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8992), + [aux_sym_frm_property_statement_token1] = ACTIONS(8992), + [anon_sym_DOT] = ACTIONS(8992), + [anon_sym_BANG] = ACTIONS(8994), + [aux_sym__attribute_identifier_token1] = ACTIONS(8992), + [aux_sym_option_statement_token3] = ACTIONS(8992), + [aux_sym_type_declaration_token1] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8992), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8992), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8992), + [aux_sym_enum_declaration_token1] = ACTIONS(8992), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8992), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8992), + [aux_sym_declare_function_statement_token1] = ACTIONS(8992), + [aux_sym_preprocessor_const_token1] = ACTIONS(8992), + [aux_sym__property_get_header_token1] = ACTIONS(8992), + [aux_sym_event_declaration_token1] = ACTIONS(8992), + [sym_static_modifier] = ACTIONS(8992), + [sym__dim_keyword] = ACTIONS(8992), + [sym__redim_keyword] = ACTIONS(8992), + [aux_sym_get_accessor_token1] = ACTIONS(8992), + [aux_sym_set_accessor_token1] = ACTIONS(8992), + [aux_sym_const_declaration_token1] = ACTIONS(8992), + [anon_sym_LPAREN] = ACTIONS(8994), + [aux_sym_as_type_clause_token2] = ACTIONS(8992), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8992), + [aux_sym_visibility_token1] = ACTIONS(8992), + [aux_sym_visibility_token2] = ACTIONS(8992), + [aux_sym_elseif_fragment_token1] = ACTIONS(8992), + [aux_sym_else_fragment_token1] = ACTIONS(8992), + [aux_sym_select_statement_token1] = ACTIONS(8992), + [aux_sym__for_header_token1] = ACTIONS(8992), + [aux_sym_do_statement_token1] = ACTIONS(8992), + [aux_sym_do_condition_token1] = ACTIONS(8992), + [aux_sym_with_statement_token1] = ACTIONS(8992), + [aux_sym_exit_statement_token1] = ACTIONS(8992), + [sym_end_statement] = ACTIONS(8994), + [aux_sym_on_goto_statement_token1] = ACTIONS(8992), + [aux_sym_on_goto_statement_token2] = ACTIONS(8992), + [aux_sym_on_error_statement_token2] = ACTIONS(8992), + [sym__ambiguous_redim_statement] = ACTIONS(8994), + [aux_sym_erase_statement_token1] = ACTIONS(8992), + [aux_sym_open_statement_token1] = ACTIONS(8992), + [aux_sym_file_mode_token2] = ACTIONS(8992), + [aux_sym_file_access_token2] = ACTIONS(8992), + [aux_sym_file_lock_token2] = ACTIONS(8992), + [aux_sym_print_statement_token1] = ACTIONS(8992), + [anon_sym_PLUS] = ACTIONS(8994), + [anon_sym_DASH] = ACTIONS(8992), + [anon_sym_QMARK] = ACTIONS(8994), + [aux_sym_close_statement_token1] = ACTIONS(8992), + [aux_sym_put_statement_token1] = ACTIONS(8992), + [aux_sym_unlock_statement_token1] = ACTIONS(8992), + [aux_sym_seek_statement_token1] = ACTIONS(8992), + [sym_reset_statement] = ACTIONS(8992), + [aux_sym_raise_event_statement_token1] = ACTIONS(8992), + [sym_stop_statement] = ACTIONS(8992), + [sym_beep_statement] = ACTIONS(8992), + [aux_sym_unload_statement_token1] = ACTIONS(8992), + [aux_sym_def_type_statement_token1] = ACTIONS(8992), + [aux_sym_def_type_statement_token2] = ACTIONS(8992), + [aux_sym_def_type_statement_token3] = ACTIONS(8992), + [aux_sym_def_type_statement_token4] = ACTIONS(8992), + [aux_sym_def_type_statement_token5] = ACTIONS(8992), + [aux_sym_def_type_statement_token6] = ACTIONS(8992), + [aux_sym_def_type_statement_token7] = ACTIONS(8992), + [aux_sym_def_type_statement_token8] = ACTIONS(8992), + [aux_sym_def_type_statement_token9] = ACTIONS(8992), + [aux_sym_def_type_statement_token10] = ACTIONS(8992), + [aux_sym_def_type_statement_token11] = ACTIONS(8992), + [aux_sym_def_type_statement_token12] = ACTIONS(8992), + [aux_sym_def_type_statement_token13] = ACTIONS(8992), + [aux_sym_def_type_statement_token14] = ACTIONS(8992), + [aux_sym_call_statement_token1] = ACTIONS(8992), + [sym__ambiguous_call_statement] = ACTIONS(8992), + [aux_sym_addressof_expression_token1] = ACTIONS(8992), + [aux_sym_type_of_expression_token1] = ACTIONS(8992), + [aux_sym_unary_expression_token1] = ACTIONS(8992), + [sym_string_literal] = ACTIONS(8994), + [sym_number_literal] = ACTIONS(8994), + [aux_sym_boolean_literal_token1] = ACTIONS(8992), + [aux_sym_boolean_literal_token2] = ACTIONS(8992), + [sym_nothing_literal] = ACTIONS(8992), + [sym_null_literal] = ACTIONS(8992), + [sym_empty_literal] = ACTIONS(8992), + [sym_date_literal] = ACTIONS(8994), + [anon_sym_POUND] = ACTIONS(8992), + }, + [STATE(3854)] = { + [sym_identifier] = ACTIONS(8996), + [sym_newline] = ACTIONS(8998), + [anon_sym_COLON] = ACTIONS(8998), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8996), + [aux_sym_frm_property_statement_token1] = ACTIONS(8996), + [anon_sym_DOT] = ACTIONS(8996), + [anon_sym_BANG] = ACTIONS(8998), + [aux_sym__attribute_identifier_token1] = ACTIONS(8996), + [aux_sym_option_statement_token3] = ACTIONS(8996), + [aux_sym_type_declaration_token1] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8996), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8996), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8996), + [aux_sym_enum_declaration_token1] = ACTIONS(8996), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8996), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8996), + [aux_sym_declare_function_statement_token1] = ACTIONS(8996), + [aux_sym_preprocessor_const_token1] = ACTIONS(8996), + [aux_sym__property_get_header_token1] = ACTIONS(8996), + [aux_sym_event_declaration_token1] = ACTIONS(8996), + [sym_static_modifier] = ACTIONS(8996), + [sym__dim_keyword] = ACTIONS(8996), + [sym__redim_keyword] = ACTIONS(8996), + [aux_sym_get_accessor_token1] = ACTIONS(8996), + [aux_sym_set_accessor_token1] = ACTIONS(8996), + [aux_sym_const_declaration_token1] = ACTIONS(8996), + [anon_sym_LPAREN] = ACTIONS(8998), + [aux_sym_as_type_clause_token2] = ACTIONS(8996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8996), + [aux_sym_visibility_token1] = ACTIONS(8996), + [aux_sym_visibility_token2] = ACTIONS(8996), + [aux_sym_elseif_fragment_token1] = ACTIONS(8996), + [aux_sym_else_fragment_token1] = ACTIONS(8996), + [aux_sym_select_statement_token1] = ACTIONS(8996), + [aux_sym__for_header_token1] = ACTIONS(8996), + [aux_sym_do_statement_token1] = ACTIONS(8996), + [aux_sym_do_condition_token1] = ACTIONS(8996), + [aux_sym_with_statement_token1] = ACTIONS(8996), + [aux_sym_exit_statement_token1] = ACTIONS(8996), + [sym_end_statement] = ACTIONS(8998), + [aux_sym_on_goto_statement_token1] = ACTIONS(8996), + [aux_sym_on_goto_statement_token2] = ACTIONS(8996), + [aux_sym_on_error_statement_token2] = ACTIONS(8996), + [sym__ambiguous_redim_statement] = ACTIONS(8998), + [aux_sym_erase_statement_token1] = ACTIONS(8996), + [aux_sym_open_statement_token1] = ACTIONS(8996), + [aux_sym_file_mode_token2] = ACTIONS(8996), + [aux_sym_file_access_token2] = ACTIONS(8996), + [aux_sym_file_lock_token2] = ACTIONS(8996), + [aux_sym_print_statement_token1] = ACTIONS(8996), + [anon_sym_PLUS] = ACTIONS(8998), + [anon_sym_DASH] = ACTIONS(8996), + [anon_sym_QMARK] = ACTIONS(8998), + [aux_sym_close_statement_token1] = ACTIONS(8996), + [aux_sym_put_statement_token1] = ACTIONS(8996), + [aux_sym_unlock_statement_token1] = ACTIONS(8996), + [aux_sym_seek_statement_token1] = ACTIONS(8996), + [sym_reset_statement] = ACTIONS(8996), + [aux_sym_raise_event_statement_token1] = ACTIONS(8996), + [sym_stop_statement] = ACTIONS(8996), + [sym_beep_statement] = ACTIONS(8996), + [aux_sym_unload_statement_token1] = ACTIONS(8996), + [aux_sym_def_type_statement_token1] = ACTIONS(8996), + [aux_sym_def_type_statement_token2] = ACTIONS(8996), + [aux_sym_def_type_statement_token3] = ACTIONS(8996), + [aux_sym_def_type_statement_token4] = ACTIONS(8996), + [aux_sym_def_type_statement_token5] = ACTIONS(8996), + [aux_sym_def_type_statement_token6] = ACTIONS(8996), + [aux_sym_def_type_statement_token7] = ACTIONS(8996), + [aux_sym_def_type_statement_token8] = ACTIONS(8996), + [aux_sym_def_type_statement_token9] = ACTIONS(8996), + [aux_sym_def_type_statement_token10] = ACTIONS(8996), + [aux_sym_def_type_statement_token11] = ACTIONS(8996), + [aux_sym_def_type_statement_token12] = ACTIONS(8996), + [aux_sym_def_type_statement_token13] = ACTIONS(8996), + [aux_sym_def_type_statement_token14] = ACTIONS(8996), + [aux_sym_call_statement_token1] = ACTIONS(8996), + [sym__ambiguous_call_statement] = ACTIONS(8996), + [aux_sym_addressof_expression_token1] = ACTIONS(8996), + [aux_sym_type_of_expression_token1] = ACTIONS(8996), + [aux_sym_unary_expression_token1] = ACTIONS(8996), + [sym_string_literal] = ACTIONS(8998), + [sym_number_literal] = ACTIONS(8998), + [aux_sym_boolean_literal_token1] = ACTIONS(8996), + [aux_sym_boolean_literal_token2] = ACTIONS(8996), + [sym_nothing_literal] = ACTIONS(8996), + [sym_null_literal] = ACTIONS(8996), + [sym_empty_literal] = ACTIONS(8996), + [sym_date_literal] = ACTIONS(8998), + [anon_sym_POUND] = ACTIONS(8996), + }, + [STATE(3855)] = { + [sym_identifier] = ACTIONS(9000), + [sym_newline] = ACTIONS(9002), + [anon_sym_COLON] = ACTIONS(9002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9000), + [aux_sym_frm_property_statement_token1] = ACTIONS(9000), + [anon_sym_DOT] = ACTIONS(9000), + [anon_sym_BANG] = ACTIONS(9002), + [aux_sym__attribute_identifier_token1] = ACTIONS(9000), + [aux_sym_option_statement_token3] = ACTIONS(9000), + [aux_sym_type_declaration_token1] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9000), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9000), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9000), + [aux_sym_enum_declaration_token1] = ACTIONS(9000), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9000), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9000), + [aux_sym_declare_function_statement_token1] = ACTIONS(9000), + [aux_sym_preprocessor_const_token1] = ACTIONS(9000), + [aux_sym__property_get_header_token1] = ACTIONS(9000), + [aux_sym_event_declaration_token1] = ACTIONS(9000), + [sym_static_modifier] = ACTIONS(9000), + [sym__dim_keyword] = ACTIONS(9000), + [sym__redim_keyword] = ACTIONS(9000), + [aux_sym_get_accessor_token1] = ACTIONS(9000), + [aux_sym_set_accessor_token1] = ACTIONS(9000), + [aux_sym_const_declaration_token1] = ACTIONS(9000), + [anon_sym_LPAREN] = ACTIONS(9002), + [aux_sym_as_type_clause_token2] = ACTIONS(9000), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9000), + [aux_sym_visibility_token1] = ACTIONS(9000), + [aux_sym_visibility_token2] = ACTIONS(9000), + [aux_sym_elseif_fragment_token1] = ACTIONS(9000), + [aux_sym_else_fragment_token1] = ACTIONS(9000), + [aux_sym_select_statement_token1] = ACTIONS(9000), + [aux_sym__for_header_token1] = ACTIONS(9000), + [aux_sym_do_statement_token1] = ACTIONS(9000), + [aux_sym_do_condition_token1] = ACTIONS(9000), + [aux_sym_with_statement_token1] = ACTIONS(9000), + [aux_sym_exit_statement_token1] = ACTIONS(9000), + [sym_end_statement] = ACTIONS(9002), + [aux_sym_on_goto_statement_token1] = ACTIONS(9000), + [aux_sym_on_goto_statement_token2] = ACTIONS(9000), + [aux_sym_on_error_statement_token2] = ACTIONS(9000), + [sym__ambiguous_redim_statement] = ACTIONS(9002), + [aux_sym_erase_statement_token1] = ACTIONS(9000), + [aux_sym_open_statement_token1] = ACTIONS(9000), + [aux_sym_file_mode_token2] = ACTIONS(9000), + [aux_sym_file_access_token2] = ACTIONS(9000), + [aux_sym_file_lock_token2] = ACTIONS(9000), + [aux_sym_print_statement_token1] = ACTIONS(9000), + [anon_sym_PLUS] = ACTIONS(9002), + [anon_sym_DASH] = ACTIONS(9000), + [anon_sym_QMARK] = ACTIONS(9002), + [aux_sym_close_statement_token1] = ACTIONS(9000), + [aux_sym_put_statement_token1] = ACTIONS(9000), + [aux_sym_unlock_statement_token1] = ACTIONS(9000), + [aux_sym_seek_statement_token1] = ACTIONS(9000), + [sym_reset_statement] = ACTIONS(9000), + [aux_sym_raise_event_statement_token1] = ACTIONS(9000), + [sym_stop_statement] = ACTIONS(9000), + [sym_beep_statement] = ACTIONS(9000), + [aux_sym_unload_statement_token1] = ACTIONS(9000), + [aux_sym_def_type_statement_token1] = ACTIONS(9000), + [aux_sym_def_type_statement_token2] = ACTIONS(9000), + [aux_sym_def_type_statement_token3] = ACTIONS(9000), + [aux_sym_def_type_statement_token4] = ACTIONS(9000), + [aux_sym_def_type_statement_token5] = ACTIONS(9000), + [aux_sym_def_type_statement_token6] = ACTIONS(9000), + [aux_sym_def_type_statement_token7] = ACTIONS(9000), + [aux_sym_def_type_statement_token8] = ACTIONS(9000), + [aux_sym_def_type_statement_token9] = ACTIONS(9000), + [aux_sym_def_type_statement_token10] = ACTIONS(9000), + [aux_sym_def_type_statement_token11] = ACTIONS(9000), + [aux_sym_def_type_statement_token12] = ACTIONS(9000), + [aux_sym_def_type_statement_token13] = ACTIONS(9000), + [aux_sym_def_type_statement_token14] = ACTIONS(9000), + [aux_sym_call_statement_token1] = ACTIONS(9000), + [sym__ambiguous_call_statement] = ACTIONS(9000), + [aux_sym_addressof_expression_token1] = ACTIONS(9000), + [aux_sym_type_of_expression_token1] = ACTIONS(9000), + [aux_sym_unary_expression_token1] = ACTIONS(9000), + [sym_string_literal] = ACTIONS(9002), + [sym_number_literal] = ACTIONS(9002), + [aux_sym_boolean_literal_token1] = ACTIONS(9000), + [aux_sym_boolean_literal_token2] = ACTIONS(9000), + [sym_nothing_literal] = ACTIONS(9000), + [sym_null_literal] = ACTIONS(9000), + [sym_empty_literal] = ACTIONS(9000), + [sym_date_literal] = ACTIONS(9002), + [anon_sym_POUND] = ACTIONS(9000), + }, + [STATE(3856)] = { + [sym_identifier] = ACTIONS(9004), + [sym_newline] = ACTIONS(9006), + [anon_sym_COLON] = ACTIONS(9006), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9004), + [aux_sym_frm_property_statement_token1] = ACTIONS(9004), + [anon_sym_DOT] = ACTIONS(9004), + [anon_sym_BANG] = ACTIONS(9006), + [aux_sym__attribute_identifier_token1] = ACTIONS(9004), + [aux_sym_option_statement_token3] = ACTIONS(9004), + [aux_sym_type_declaration_token1] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9004), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9004), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9004), + [aux_sym_enum_declaration_token1] = ACTIONS(9004), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9004), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9004), + [aux_sym_declare_function_statement_token1] = ACTIONS(9004), + [aux_sym_preprocessor_const_token1] = ACTIONS(9004), + [aux_sym__property_get_header_token1] = ACTIONS(9004), + [aux_sym_event_declaration_token1] = ACTIONS(9004), + [sym_static_modifier] = ACTIONS(9004), + [sym__dim_keyword] = ACTIONS(9004), + [sym__redim_keyword] = ACTIONS(9004), + [aux_sym_get_accessor_token1] = ACTIONS(9004), + [aux_sym_set_accessor_token1] = ACTIONS(9004), + [aux_sym_const_declaration_token1] = ACTIONS(9004), + [anon_sym_LPAREN] = ACTIONS(9006), + [aux_sym_as_type_clause_token2] = ACTIONS(9004), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9004), + [aux_sym_visibility_token1] = ACTIONS(9004), + [aux_sym_visibility_token2] = ACTIONS(9004), + [aux_sym_elseif_fragment_token1] = ACTIONS(9004), + [aux_sym_else_fragment_token1] = ACTIONS(9004), + [aux_sym_select_statement_token1] = ACTIONS(9004), + [aux_sym__for_header_token1] = ACTIONS(9004), + [aux_sym_do_statement_token1] = ACTIONS(9004), + [aux_sym_do_condition_token1] = ACTIONS(9004), + [aux_sym_with_statement_token1] = ACTIONS(9004), + [aux_sym_exit_statement_token1] = ACTIONS(9004), + [sym_end_statement] = ACTIONS(9006), + [aux_sym_on_goto_statement_token1] = ACTIONS(9004), + [aux_sym_on_goto_statement_token2] = ACTIONS(9004), + [aux_sym_on_error_statement_token2] = ACTIONS(9004), + [sym__ambiguous_redim_statement] = ACTIONS(9006), + [aux_sym_erase_statement_token1] = ACTIONS(9004), + [aux_sym_open_statement_token1] = ACTIONS(9004), + [aux_sym_file_mode_token2] = ACTIONS(9004), + [aux_sym_file_access_token2] = ACTIONS(9004), + [aux_sym_file_lock_token2] = ACTIONS(9004), + [aux_sym_print_statement_token1] = ACTIONS(9004), + [anon_sym_PLUS] = ACTIONS(9006), + [anon_sym_DASH] = ACTIONS(9004), + [anon_sym_QMARK] = ACTIONS(9006), + [aux_sym_close_statement_token1] = ACTIONS(9004), + [aux_sym_put_statement_token1] = ACTIONS(9004), + [aux_sym_unlock_statement_token1] = ACTIONS(9004), + [aux_sym_seek_statement_token1] = ACTIONS(9004), + [sym_reset_statement] = ACTIONS(9004), + [aux_sym_raise_event_statement_token1] = ACTIONS(9004), + [sym_stop_statement] = ACTIONS(9004), + [sym_beep_statement] = ACTIONS(9004), + [aux_sym_unload_statement_token1] = ACTIONS(9004), + [aux_sym_def_type_statement_token1] = ACTIONS(9004), + [aux_sym_def_type_statement_token2] = ACTIONS(9004), + [aux_sym_def_type_statement_token3] = ACTIONS(9004), + [aux_sym_def_type_statement_token4] = ACTIONS(9004), + [aux_sym_def_type_statement_token5] = ACTIONS(9004), + [aux_sym_def_type_statement_token6] = ACTIONS(9004), + [aux_sym_def_type_statement_token7] = ACTIONS(9004), + [aux_sym_def_type_statement_token8] = ACTIONS(9004), + [aux_sym_def_type_statement_token9] = ACTIONS(9004), + [aux_sym_def_type_statement_token10] = ACTIONS(9004), + [aux_sym_def_type_statement_token11] = ACTIONS(9004), + [aux_sym_def_type_statement_token12] = ACTIONS(9004), + [aux_sym_def_type_statement_token13] = ACTIONS(9004), + [aux_sym_def_type_statement_token14] = ACTIONS(9004), + [aux_sym_call_statement_token1] = ACTIONS(9004), + [sym__ambiguous_call_statement] = ACTIONS(9004), + [aux_sym_addressof_expression_token1] = ACTIONS(9004), + [aux_sym_type_of_expression_token1] = ACTIONS(9004), + [aux_sym_unary_expression_token1] = ACTIONS(9004), + [sym_string_literal] = ACTIONS(9006), + [sym_number_literal] = ACTIONS(9006), + [aux_sym_boolean_literal_token1] = ACTIONS(9004), + [aux_sym_boolean_literal_token2] = ACTIONS(9004), + [sym_nothing_literal] = ACTIONS(9004), + [sym_null_literal] = ACTIONS(9004), + [sym_empty_literal] = ACTIONS(9004), + [sym_date_literal] = ACTIONS(9006), + [anon_sym_POUND] = ACTIONS(9004), + }, + [STATE(3857)] = { + [sym_identifier] = ACTIONS(9008), + [sym_newline] = ACTIONS(9010), + [anon_sym_COLON] = ACTIONS(9010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9008), + [aux_sym_frm_property_statement_token1] = ACTIONS(9008), + [anon_sym_DOT] = ACTIONS(9008), + [anon_sym_BANG] = ACTIONS(9010), + [aux_sym__attribute_identifier_token1] = ACTIONS(9008), + [aux_sym_option_statement_token3] = ACTIONS(9008), + [aux_sym_type_declaration_token1] = ACTIONS(9008), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9008), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9008), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9008), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9008), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9008), + [aux_sym_enum_declaration_token1] = ACTIONS(9008), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9008), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9008), + [aux_sym_declare_function_statement_token1] = ACTIONS(9008), + [aux_sym_preprocessor_const_token1] = ACTIONS(9008), + [aux_sym__property_get_header_token1] = ACTIONS(9008), + [aux_sym_event_declaration_token1] = ACTIONS(9008), + [sym_static_modifier] = ACTIONS(9008), + [sym__dim_keyword] = ACTIONS(9008), + [sym__redim_keyword] = ACTIONS(9008), + [aux_sym_get_accessor_token1] = ACTIONS(9008), + [aux_sym_set_accessor_token1] = ACTIONS(9008), + [aux_sym_const_declaration_token1] = ACTIONS(9008), + [anon_sym_LPAREN] = ACTIONS(9010), + [aux_sym_as_type_clause_token2] = ACTIONS(9008), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9008), + [aux_sym_visibility_token1] = ACTIONS(9008), + [aux_sym_visibility_token2] = ACTIONS(9008), + [aux_sym_elseif_fragment_token1] = ACTIONS(9008), + [aux_sym_else_fragment_token1] = ACTIONS(9008), + [aux_sym_select_statement_token1] = ACTIONS(9008), + [aux_sym__for_header_token1] = ACTIONS(9008), + [aux_sym_do_statement_token1] = ACTIONS(9008), + [aux_sym_do_condition_token1] = ACTIONS(9008), + [aux_sym_with_statement_token1] = ACTIONS(9008), + [aux_sym_exit_statement_token1] = ACTIONS(9008), + [sym_end_statement] = ACTIONS(9010), + [aux_sym_on_goto_statement_token1] = ACTIONS(9008), + [aux_sym_on_goto_statement_token2] = ACTIONS(9008), + [aux_sym_on_error_statement_token2] = ACTIONS(9008), + [sym__ambiguous_redim_statement] = ACTIONS(9010), + [aux_sym_erase_statement_token1] = ACTIONS(9008), + [aux_sym_open_statement_token1] = ACTIONS(9008), + [aux_sym_file_mode_token2] = ACTIONS(9008), + [aux_sym_file_access_token2] = ACTIONS(9008), + [aux_sym_file_lock_token2] = ACTIONS(9008), + [aux_sym_print_statement_token1] = ACTIONS(9008), + [anon_sym_PLUS] = ACTIONS(9010), + [anon_sym_DASH] = ACTIONS(9008), + [anon_sym_QMARK] = ACTIONS(9010), + [aux_sym_close_statement_token1] = ACTIONS(9008), + [aux_sym_put_statement_token1] = ACTIONS(9008), + [aux_sym_unlock_statement_token1] = ACTIONS(9008), + [aux_sym_seek_statement_token1] = ACTIONS(9008), + [sym_reset_statement] = ACTIONS(9008), + [aux_sym_raise_event_statement_token1] = ACTIONS(9008), + [sym_stop_statement] = ACTIONS(9008), + [sym_beep_statement] = ACTIONS(9008), + [aux_sym_unload_statement_token1] = ACTIONS(9008), + [aux_sym_def_type_statement_token1] = ACTIONS(9008), + [aux_sym_def_type_statement_token2] = ACTIONS(9008), + [aux_sym_def_type_statement_token3] = ACTIONS(9008), + [aux_sym_def_type_statement_token4] = ACTIONS(9008), + [aux_sym_def_type_statement_token5] = ACTIONS(9008), + [aux_sym_def_type_statement_token6] = ACTIONS(9008), + [aux_sym_def_type_statement_token7] = ACTIONS(9008), + [aux_sym_def_type_statement_token8] = ACTIONS(9008), + [aux_sym_def_type_statement_token9] = ACTIONS(9008), + [aux_sym_def_type_statement_token10] = ACTIONS(9008), + [aux_sym_def_type_statement_token11] = ACTIONS(9008), + [aux_sym_def_type_statement_token12] = ACTIONS(9008), + [aux_sym_def_type_statement_token13] = ACTIONS(9008), + [aux_sym_def_type_statement_token14] = ACTIONS(9008), + [aux_sym_call_statement_token1] = ACTIONS(9008), + [sym__ambiguous_call_statement] = ACTIONS(9008), + [aux_sym_addressof_expression_token1] = ACTIONS(9008), + [aux_sym_type_of_expression_token1] = ACTIONS(9008), + [aux_sym_unary_expression_token1] = ACTIONS(9008), + [sym_string_literal] = ACTIONS(9010), + [sym_number_literal] = ACTIONS(9010), + [aux_sym_boolean_literal_token1] = ACTIONS(9008), + [aux_sym_boolean_literal_token2] = ACTIONS(9008), + [sym_nothing_literal] = ACTIONS(9008), + [sym_null_literal] = ACTIONS(9008), + [sym_empty_literal] = ACTIONS(9008), + [sym_date_literal] = ACTIONS(9010), + [anon_sym_POUND] = ACTIONS(9008), + }, + [STATE(3858)] = { + [sym_as_type_clause] = STATE(4548), + [sym_identifier] = ACTIONS(8184), + [sym_newline] = ACTIONS(8186), + [anon_sym_COLON] = ACTIONS(8186), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8184), + [aux_sym_frm_property_statement_token1] = ACTIONS(8184), + [anon_sym_DOT] = ACTIONS(8184), + [anon_sym_BANG] = ACTIONS(8186), + [aux_sym__attribute_identifier_token1] = ACTIONS(8184), + [aux_sym_option_statement_token3] = ACTIONS(8184), + [aux_sym_type_declaration_token1] = ACTIONS(8184), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8184), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8184), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8184), + [aux_sym_enum_declaration_token1] = ACTIONS(8184), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8184), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8184), + [aux_sym_declare_function_statement_token1] = ACTIONS(8184), + [aux_sym_preprocessor_const_token1] = ACTIONS(8184), + [aux_sym__property_get_header_token1] = ACTIONS(8184), + [aux_sym_event_declaration_token1] = ACTIONS(8184), + [sym_static_modifier] = ACTIONS(8184), + [sym__dim_keyword] = ACTIONS(8184), + [sym__redim_keyword] = ACTIONS(8184), + [aux_sym_get_accessor_token1] = ACTIONS(8184), + [aux_sym_set_accessor_token1] = ACTIONS(8184), + [aux_sym_const_declaration_token1] = ACTIONS(8184), + [anon_sym_LPAREN] = ACTIONS(8186), + [aux_sym_as_type_clause_token1] = ACTIONS(8211), + [aux_sym_as_type_clause_token2] = ACTIONS(8184), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8184), + [aux_sym_visibility_token1] = ACTIONS(8184), + [aux_sym_visibility_token2] = ACTIONS(8184), + [aux_sym_elseif_fragment_token1] = ACTIONS(8184), + [aux_sym_else_fragment_token1] = ACTIONS(8184), + [aux_sym_select_statement_token1] = ACTIONS(8184), + [aux_sym__for_header_token1] = ACTIONS(8184), + [aux_sym_do_statement_token1] = ACTIONS(8184), + [aux_sym_do_condition_token1] = ACTIONS(8184), + [aux_sym_with_statement_token1] = ACTIONS(8184), + [aux_sym_exit_statement_token1] = ACTIONS(8184), + [sym_end_statement] = ACTIONS(8186), + [aux_sym_on_goto_statement_token1] = ACTIONS(8184), + [aux_sym_on_goto_statement_token2] = ACTIONS(8184), + [aux_sym_on_error_statement_token2] = ACTIONS(8184), + [sym__ambiguous_redim_statement] = ACTIONS(8186), + [aux_sym_erase_statement_token1] = ACTIONS(8184), + [aux_sym_open_statement_token1] = ACTIONS(8184), + [aux_sym_file_mode_token2] = ACTIONS(8184), + [aux_sym_file_access_token2] = ACTIONS(8184), + [aux_sym_file_lock_token2] = ACTIONS(8184), + [aux_sym_print_statement_token1] = ACTIONS(8184), + [anon_sym_PLUS] = ACTIONS(8186), + [anon_sym_DASH] = ACTIONS(8184), + [anon_sym_QMARK] = ACTIONS(8186), + [aux_sym_close_statement_token1] = ACTIONS(8184), + [aux_sym_put_statement_token1] = ACTIONS(8184), + [aux_sym_unlock_statement_token1] = ACTIONS(8184), + [aux_sym_seek_statement_token1] = ACTIONS(8184), + [sym_reset_statement] = ACTIONS(8184), + [aux_sym_raise_event_statement_token1] = ACTIONS(8184), + [sym_stop_statement] = ACTIONS(8184), + [sym_beep_statement] = ACTIONS(8184), + [aux_sym_unload_statement_token1] = ACTIONS(8184), + [aux_sym_def_type_statement_token1] = ACTIONS(8184), + [aux_sym_def_type_statement_token2] = ACTIONS(8184), + [aux_sym_def_type_statement_token3] = ACTIONS(8184), + [aux_sym_def_type_statement_token4] = ACTIONS(8184), + [aux_sym_def_type_statement_token5] = ACTIONS(8184), + [aux_sym_def_type_statement_token6] = ACTIONS(8184), + [aux_sym_def_type_statement_token7] = ACTIONS(8184), + [aux_sym_def_type_statement_token8] = ACTIONS(8184), + [aux_sym_def_type_statement_token9] = ACTIONS(8184), + [aux_sym_def_type_statement_token10] = ACTIONS(8184), + [aux_sym_def_type_statement_token11] = ACTIONS(8184), + [aux_sym_def_type_statement_token12] = ACTIONS(8184), + [aux_sym_def_type_statement_token13] = ACTIONS(8184), + [aux_sym_def_type_statement_token14] = ACTIONS(8184), + [aux_sym_call_statement_token1] = ACTIONS(8184), + [sym__ambiguous_call_statement] = ACTIONS(8184), + [aux_sym_addressof_expression_token1] = ACTIONS(8184), + [aux_sym_type_of_expression_token1] = ACTIONS(8184), + [aux_sym_unary_expression_token1] = ACTIONS(8184), + [sym_string_literal] = ACTIONS(8186), + [sym_number_literal] = ACTIONS(8186), + [aux_sym_boolean_literal_token1] = ACTIONS(8184), + [aux_sym_boolean_literal_token2] = ACTIONS(8184), + [sym_nothing_literal] = ACTIONS(8184), + [sym_null_literal] = ACTIONS(8184), + [sym_empty_literal] = ACTIONS(8184), + [sym_date_literal] = ACTIONS(8186), + [anon_sym_POUND] = ACTIONS(8184), + }, + [STATE(3859)] = { + [sym_parameter_list] = STATE(4560), + [sym_identifier] = ACTIONS(8302), + [sym_newline] = ACTIONS(8304), + [anon_sym_COLON] = ACTIONS(8304), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8302), + [aux_sym_frm_property_statement_token1] = ACTIONS(8302), + [anon_sym_DOT] = ACTIONS(8302), + [anon_sym_BANG] = ACTIONS(8304), + [aux_sym__attribute_identifier_token1] = ACTIONS(8302), + [aux_sym_option_statement_token3] = ACTIONS(8302), + [aux_sym_type_declaration_token1] = ACTIONS(8302), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8302), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8302), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8302), + [aux_sym_enum_declaration_token1] = ACTIONS(8302), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8302), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8302), + [aux_sym_declare_sub_statement_token4] = ACTIONS(9012), + [aux_sym_declare_function_statement_token1] = ACTIONS(8302), + [aux_sym_preprocessor_const_token1] = ACTIONS(8302), + [aux_sym__property_get_header_token1] = ACTIONS(8302), + [aux_sym_event_declaration_token1] = ACTIONS(8302), + [sym_static_modifier] = ACTIONS(8302), + [sym__dim_keyword] = ACTIONS(8302), + [sym__redim_keyword] = ACTIONS(8302), + [aux_sym_get_accessor_token1] = ACTIONS(8302), + [aux_sym_set_accessor_token1] = ACTIONS(8302), + [aux_sym_const_declaration_token1] = ACTIONS(8302), + [anon_sym_LPAREN] = ACTIONS(9014), + [aux_sym_as_type_clause_token2] = ACTIONS(8302), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8302), + [aux_sym_visibility_token1] = ACTIONS(8302), + [aux_sym_visibility_token2] = ACTIONS(8302), + [aux_sym_elseif_fragment_token1] = ACTIONS(8302), + [aux_sym_else_fragment_token1] = ACTIONS(8302), + [aux_sym_select_statement_token1] = ACTIONS(8302), + [aux_sym__for_header_token1] = ACTIONS(8302), + [aux_sym_do_statement_token1] = ACTIONS(8302), + [aux_sym_do_condition_token1] = ACTIONS(8302), + [aux_sym_with_statement_token1] = ACTIONS(8302), + [aux_sym_exit_statement_token1] = ACTIONS(8302), + [sym_end_statement] = ACTIONS(8304), + [aux_sym_on_goto_statement_token1] = ACTIONS(8302), + [aux_sym_on_goto_statement_token2] = ACTIONS(8302), + [aux_sym_on_error_statement_token2] = ACTIONS(8302), + [sym__ambiguous_redim_statement] = ACTIONS(8304), + [aux_sym_erase_statement_token1] = ACTIONS(8302), + [aux_sym_open_statement_token1] = ACTIONS(8302), + [aux_sym_file_mode_token2] = ACTIONS(8302), + [aux_sym_file_access_token2] = ACTIONS(8302), + [aux_sym_file_lock_token2] = ACTIONS(8302), + [aux_sym_print_statement_token1] = ACTIONS(8302), + [anon_sym_PLUS] = ACTIONS(8304), + [anon_sym_DASH] = ACTIONS(8302), + [anon_sym_QMARK] = ACTIONS(8304), + [aux_sym_close_statement_token1] = ACTIONS(8302), + [aux_sym_put_statement_token1] = ACTIONS(8302), + [aux_sym_unlock_statement_token1] = ACTIONS(8302), + [aux_sym_seek_statement_token1] = ACTIONS(8302), + [sym_reset_statement] = ACTIONS(8302), + [aux_sym_raise_event_statement_token1] = ACTIONS(8302), + [sym_stop_statement] = ACTIONS(8302), + [sym_beep_statement] = ACTIONS(8302), + [aux_sym_unload_statement_token1] = ACTIONS(8302), + [aux_sym_def_type_statement_token1] = ACTIONS(8302), + [aux_sym_def_type_statement_token2] = ACTIONS(8302), + [aux_sym_def_type_statement_token3] = ACTIONS(8302), + [aux_sym_def_type_statement_token4] = ACTIONS(8302), + [aux_sym_def_type_statement_token5] = ACTIONS(8302), + [aux_sym_def_type_statement_token6] = ACTIONS(8302), + [aux_sym_def_type_statement_token7] = ACTIONS(8302), + [aux_sym_def_type_statement_token8] = ACTIONS(8302), + [aux_sym_def_type_statement_token9] = ACTIONS(8302), + [aux_sym_def_type_statement_token10] = ACTIONS(8302), + [aux_sym_def_type_statement_token11] = ACTIONS(8302), + [aux_sym_def_type_statement_token12] = ACTIONS(8302), + [aux_sym_def_type_statement_token13] = ACTIONS(8302), + [aux_sym_def_type_statement_token14] = ACTIONS(8302), + [aux_sym_call_statement_token1] = ACTIONS(8302), + [sym__ambiguous_call_statement] = ACTIONS(8302), + [aux_sym_addressof_expression_token1] = ACTIONS(8302), + [aux_sym_type_of_expression_token1] = ACTIONS(8302), + [aux_sym_unary_expression_token1] = ACTIONS(8302), + [sym_string_literal] = ACTIONS(8304), + [sym_number_literal] = ACTIONS(8304), + [aux_sym_boolean_literal_token1] = ACTIONS(8302), + [aux_sym_boolean_literal_token2] = ACTIONS(8302), + [sym_nothing_literal] = ACTIONS(8302), + [sym_null_literal] = ACTIONS(8302), + [sym_empty_literal] = ACTIONS(8302), + [sym_date_literal] = ACTIONS(8304), + [anon_sym_POUND] = ACTIONS(8302), + }, + [STATE(3860)] = { + [sym_identifier] = ACTIONS(8070), + [sym_newline] = ACTIONS(8072), + [anon_sym_COLON] = ACTIONS(8072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8070), + [aux_sym_frm_property_statement_token1] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(8072), + [anon_sym_DOT] = ACTIONS(8070), + [anon_sym_BANG] = ACTIONS(8072), + [aux_sym__attribute_identifier_token1] = ACTIONS(8070), + [aux_sym_option_statement_token3] = ACTIONS(8070), + [aux_sym_type_declaration_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8070), + [aux_sym_enum_declaration_token1] = ACTIONS(8070), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8070), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8070), + [aux_sym_declare_function_statement_token1] = ACTIONS(8070), + [aux_sym_preprocessor_const_token1] = ACTIONS(8070), + [aux_sym__property_get_header_token1] = ACTIONS(8070), + [aux_sym_event_declaration_token1] = ACTIONS(8070), + [sym_static_modifier] = ACTIONS(8070), + [sym__dim_keyword] = ACTIONS(8070), + [sym__redim_keyword] = ACTIONS(8070), + [aux_sym_get_accessor_token1] = ACTIONS(8070), + [aux_sym_set_accessor_token1] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [aux_sym_const_declaration_token1] = ACTIONS(8070), + [anon_sym_LPAREN] = ACTIONS(8072), + [aux_sym_as_type_clause_token2] = ACTIONS(8070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8070), + [aux_sym_visibility_token1] = ACTIONS(8070), + [aux_sym_visibility_token2] = ACTIONS(8070), + [aux_sym_elseif_fragment_token1] = ACTIONS(8070), + [aux_sym_else_fragment_token1] = ACTIONS(8070), + [aux_sym_select_statement_token1] = ACTIONS(8070), + [aux_sym__for_header_token1] = ACTIONS(8070), + [aux_sym_do_statement_token1] = ACTIONS(8070), + [aux_sym_do_condition_token1] = ACTIONS(8070), + [aux_sym_with_statement_token1] = ACTIONS(8070), + [aux_sym_exit_statement_token1] = ACTIONS(8070), + [sym_end_statement] = ACTIONS(8072), + [aux_sym_on_goto_statement_token1] = ACTIONS(8070), + [aux_sym_on_goto_statement_token2] = ACTIONS(8070), + [aux_sym_on_error_statement_token2] = ACTIONS(8070), + [sym__ambiguous_redim_statement] = ACTIONS(8072), + [aux_sym_erase_statement_token1] = ACTIONS(8070), + [aux_sym_open_statement_token1] = ACTIONS(8070), + [aux_sym_file_mode_token2] = ACTIONS(8070), + [aux_sym_file_access_token2] = ACTIONS(8070), + [aux_sym_file_lock_token2] = ACTIONS(8070), + [aux_sym_print_statement_token1] = ACTIONS(8070), + [anon_sym_PLUS] = ACTIONS(8072), + [anon_sym_DASH] = ACTIONS(8070), + [anon_sym_QMARK] = ACTIONS(8072), + [aux_sym_close_statement_token1] = ACTIONS(8070), + [aux_sym_put_statement_token1] = ACTIONS(8070), + [aux_sym_unlock_statement_token1] = ACTIONS(8070), + [aux_sym_seek_statement_token1] = ACTIONS(8070), + [sym_reset_statement] = ACTIONS(8070), + [aux_sym_raise_event_statement_token1] = ACTIONS(8070), + [sym_stop_statement] = ACTIONS(8070), + [sym_beep_statement] = ACTIONS(8070), + [aux_sym_unload_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token2] = ACTIONS(8070), + [aux_sym_def_type_statement_token3] = ACTIONS(8070), + [aux_sym_def_type_statement_token4] = ACTIONS(8070), + [aux_sym_def_type_statement_token5] = ACTIONS(8070), + [aux_sym_def_type_statement_token6] = ACTIONS(8070), + [aux_sym_def_type_statement_token7] = ACTIONS(8070), + [aux_sym_def_type_statement_token8] = ACTIONS(8070), + [aux_sym_def_type_statement_token9] = ACTIONS(8070), + [aux_sym_def_type_statement_token10] = ACTIONS(8070), + [aux_sym_def_type_statement_token11] = ACTIONS(8070), + [aux_sym_def_type_statement_token12] = ACTIONS(8070), + [aux_sym_def_type_statement_token13] = ACTIONS(8070), + [aux_sym_def_type_statement_token14] = ACTIONS(8070), + [aux_sym_call_statement_token1] = ACTIONS(8070), + [sym__ambiguous_call_statement] = ACTIONS(8070), + [aux_sym_addressof_expression_token1] = ACTIONS(8070), + [aux_sym_type_of_expression_token1] = ACTIONS(8070), + [aux_sym_unary_expression_token1] = ACTIONS(8070), + [sym_string_literal] = ACTIONS(8072), + [sym_number_literal] = ACTIONS(8072), + [aux_sym_boolean_literal_token1] = ACTIONS(8070), + [aux_sym_boolean_literal_token2] = ACTIONS(8070), + [sym_nothing_literal] = ACTIONS(8070), + [sym_null_literal] = ACTIONS(8070), + [sym_empty_literal] = ACTIONS(8070), + [sym_date_literal] = ACTIONS(8072), + [anon_sym_POUND] = ACTIONS(8070), + }, + [STATE(3861)] = { + [sym_identifier] = ACTIONS(8081), + [sym_newline] = ACTIONS(8083), + [anon_sym_COLON] = ACTIONS(8083), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8081), + [aux_sym_frm_property_statement_token1] = ACTIONS(8081), + [anon_sym_EQ] = ACTIONS(8083), + [anon_sym_DOT] = ACTIONS(8081), + [anon_sym_BANG] = ACTIONS(8083), + [aux_sym__attribute_identifier_token1] = ACTIONS(8081), + [aux_sym_option_statement_token3] = ACTIONS(8081), + [aux_sym_type_declaration_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8081), + [aux_sym_enum_declaration_token1] = ACTIONS(8081), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8081), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8081), + [aux_sym_declare_function_statement_token1] = ACTIONS(8081), + [aux_sym_preprocessor_const_token1] = ACTIONS(8081), + [aux_sym__property_get_header_token1] = ACTIONS(8081), + [aux_sym_event_declaration_token1] = ACTIONS(8081), + [sym_static_modifier] = ACTIONS(8081), + [sym__dim_keyword] = ACTIONS(8081), + [sym__redim_keyword] = ACTIONS(8081), + [aux_sym_get_accessor_token1] = ACTIONS(8081), + [aux_sym_set_accessor_token1] = ACTIONS(8081), + [anon_sym_COMMA] = ACTIONS(8083), + [aux_sym_const_declaration_token1] = ACTIONS(8081), + [anon_sym_LPAREN] = ACTIONS(8083), + [aux_sym_as_type_clause_token2] = ACTIONS(8081), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8081), + [aux_sym_visibility_token1] = ACTIONS(8081), + [aux_sym_visibility_token2] = ACTIONS(8081), + [aux_sym_elseif_fragment_token1] = ACTIONS(8081), + [aux_sym_else_fragment_token1] = ACTIONS(8081), + [aux_sym_select_statement_token1] = ACTIONS(8081), + [aux_sym__for_header_token1] = ACTIONS(8081), + [aux_sym_do_statement_token1] = ACTIONS(8081), + [aux_sym_do_condition_token1] = ACTIONS(8081), + [aux_sym_with_statement_token1] = ACTIONS(8081), + [aux_sym_exit_statement_token1] = ACTIONS(8081), + [sym_end_statement] = ACTIONS(8083), + [aux_sym_on_goto_statement_token1] = ACTIONS(8081), + [aux_sym_on_goto_statement_token2] = ACTIONS(8081), + [aux_sym_on_error_statement_token2] = ACTIONS(8081), + [sym__ambiguous_redim_statement] = ACTIONS(8083), + [aux_sym_erase_statement_token1] = ACTIONS(8081), + [aux_sym_open_statement_token1] = ACTIONS(8081), + [aux_sym_file_mode_token2] = ACTIONS(8081), + [aux_sym_file_access_token2] = ACTIONS(8081), + [aux_sym_file_lock_token2] = ACTIONS(8081), + [aux_sym_print_statement_token1] = ACTIONS(8081), + [anon_sym_PLUS] = ACTIONS(8083), + [anon_sym_DASH] = ACTIONS(8081), + [anon_sym_QMARK] = ACTIONS(8083), + [aux_sym_close_statement_token1] = ACTIONS(8081), + [aux_sym_put_statement_token1] = ACTIONS(8081), + [aux_sym_unlock_statement_token1] = ACTIONS(8081), + [aux_sym_seek_statement_token1] = ACTIONS(8081), + [sym_reset_statement] = ACTIONS(8081), + [aux_sym_raise_event_statement_token1] = ACTIONS(8081), + [sym_stop_statement] = ACTIONS(8081), + [sym_beep_statement] = ACTIONS(8081), + [aux_sym_unload_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token2] = ACTIONS(8081), + [aux_sym_def_type_statement_token3] = ACTIONS(8081), + [aux_sym_def_type_statement_token4] = ACTIONS(8081), + [aux_sym_def_type_statement_token5] = ACTIONS(8081), + [aux_sym_def_type_statement_token6] = ACTIONS(8081), + [aux_sym_def_type_statement_token7] = ACTIONS(8081), + [aux_sym_def_type_statement_token8] = ACTIONS(8081), + [aux_sym_def_type_statement_token9] = ACTIONS(8081), + [aux_sym_def_type_statement_token10] = ACTIONS(8081), + [aux_sym_def_type_statement_token11] = ACTIONS(8081), + [aux_sym_def_type_statement_token12] = ACTIONS(8081), + [aux_sym_def_type_statement_token13] = ACTIONS(8081), + [aux_sym_def_type_statement_token14] = ACTIONS(8081), + [aux_sym_call_statement_token1] = ACTIONS(8081), + [sym__ambiguous_call_statement] = ACTIONS(8081), + [aux_sym_addressof_expression_token1] = ACTIONS(8081), + [aux_sym_type_of_expression_token1] = ACTIONS(8081), + [aux_sym_unary_expression_token1] = ACTIONS(8081), + [sym_string_literal] = ACTIONS(8083), + [sym_number_literal] = ACTIONS(8083), + [aux_sym_boolean_literal_token1] = ACTIONS(8081), + [aux_sym_boolean_literal_token2] = ACTIONS(8081), + [sym_nothing_literal] = ACTIONS(8081), + [sym_null_literal] = ACTIONS(8081), + [sym_empty_literal] = ACTIONS(8081), + [sym_date_literal] = ACTIONS(8083), + [anon_sym_POUND] = ACTIONS(8081), + }, + [STATE(3862)] = { + [sym_identifier] = ACTIONS(8525), + [sym_newline] = ACTIONS(8527), + [anon_sym_COLON] = ACTIONS(8527), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8525), + [aux_sym_frm_property_statement_token1] = ACTIONS(8525), + [anon_sym_EQ] = ACTIONS(8527), + [anon_sym_DOT] = ACTIONS(8525), + [anon_sym_BANG] = ACTIONS(8527), + [aux_sym__attribute_identifier_token1] = ACTIONS(8525), + [aux_sym_option_statement_token3] = ACTIONS(8525), + [aux_sym_type_declaration_token1] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8525), + [aux_sym_enum_declaration_token1] = ACTIONS(8525), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8525), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8525), + [aux_sym_declare_function_statement_token1] = ACTIONS(8525), + [aux_sym_preprocessor_const_token1] = ACTIONS(8525), + [aux_sym__property_get_header_token1] = ACTIONS(8525), + [aux_sym_event_declaration_token1] = ACTIONS(8525), + [sym_static_modifier] = ACTIONS(8525), + [sym__dim_keyword] = ACTIONS(8525), + [sym__redim_keyword] = ACTIONS(8525), + [aux_sym_get_accessor_token1] = ACTIONS(8525), + [aux_sym_set_accessor_token1] = ACTIONS(8525), + [anon_sym_COMMA] = ACTIONS(8527), + [aux_sym_const_declaration_token1] = ACTIONS(8525), + [anon_sym_LPAREN] = ACTIONS(8527), + [aux_sym_as_type_clause_token2] = ACTIONS(8525), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8525), + [aux_sym_visibility_token1] = ACTIONS(8525), + [aux_sym_visibility_token2] = ACTIONS(8525), + [aux_sym_elseif_fragment_token1] = ACTIONS(8525), + [aux_sym_else_fragment_token1] = ACTIONS(8525), + [aux_sym_select_statement_token1] = ACTIONS(8525), + [aux_sym__for_header_token1] = ACTIONS(8525), + [aux_sym_do_statement_token1] = ACTIONS(8525), + [aux_sym_do_condition_token1] = ACTIONS(8525), + [aux_sym_with_statement_token1] = ACTIONS(8525), + [aux_sym_exit_statement_token1] = ACTIONS(8525), + [sym_end_statement] = ACTIONS(8527), + [aux_sym_on_goto_statement_token1] = ACTIONS(8525), + [aux_sym_on_goto_statement_token2] = ACTIONS(8525), + [aux_sym_on_error_statement_token2] = ACTIONS(8525), + [sym__ambiguous_redim_statement] = ACTIONS(8527), + [aux_sym_erase_statement_token1] = ACTIONS(8525), + [aux_sym_open_statement_token1] = ACTIONS(8525), + [aux_sym_file_mode_token2] = ACTIONS(8525), + [aux_sym_file_access_token2] = ACTIONS(8525), + [aux_sym_file_lock_token2] = ACTIONS(8525), + [aux_sym_print_statement_token1] = ACTIONS(8525), + [anon_sym_PLUS] = ACTIONS(8527), + [anon_sym_DASH] = ACTIONS(8525), + [anon_sym_QMARK] = ACTIONS(8527), + [aux_sym_close_statement_token1] = ACTIONS(8525), + [aux_sym_put_statement_token1] = ACTIONS(8525), + [aux_sym_unlock_statement_token1] = ACTIONS(8525), + [aux_sym_seek_statement_token1] = ACTIONS(8525), + [sym_reset_statement] = ACTIONS(8525), + [aux_sym_raise_event_statement_token1] = ACTIONS(8525), + [sym_stop_statement] = ACTIONS(8525), + [sym_beep_statement] = ACTIONS(8525), + [aux_sym_unload_statement_token1] = ACTIONS(8525), + [aux_sym_def_type_statement_token1] = ACTIONS(8525), + [aux_sym_def_type_statement_token2] = ACTIONS(8525), + [aux_sym_def_type_statement_token3] = ACTIONS(8525), + [aux_sym_def_type_statement_token4] = ACTIONS(8525), + [aux_sym_def_type_statement_token5] = ACTIONS(8525), + [aux_sym_def_type_statement_token6] = ACTIONS(8525), + [aux_sym_def_type_statement_token7] = ACTIONS(8525), + [aux_sym_def_type_statement_token8] = ACTIONS(8525), + [aux_sym_def_type_statement_token9] = ACTIONS(8525), + [aux_sym_def_type_statement_token10] = ACTIONS(8525), + [aux_sym_def_type_statement_token11] = ACTIONS(8525), + [aux_sym_def_type_statement_token12] = ACTIONS(8525), + [aux_sym_def_type_statement_token13] = ACTIONS(8525), + [aux_sym_def_type_statement_token14] = ACTIONS(8525), + [aux_sym_call_statement_token1] = ACTIONS(8525), + [sym__ambiguous_call_statement] = ACTIONS(8525), + [aux_sym_addressof_expression_token1] = ACTIONS(8525), + [aux_sym_type_of_expression_token1] = ACTIONS(8525), + [aux_sym_unary_expression_token1] = ACTIONS(8525), + [sym_string_literal] = ACTIONS(8527), + [sym_number_literal] = ACTIONS(8527), + [aux_sym_boolean_literal_token1] = ACTIONS(8525), + [aux_sym_boolean_literal_token2] = ACTIONS(8525), + [sym_nothing_literal] = ACTIONS(8525), + [sym_null_literal] = ACTIONS(8525), + [sym_empty_literal] = ACTIONS(8525), + [sym_date_literal] = ACTIONS(8527), + [anon_sym_POUND] = ACTIONS(8525), + }, + [STATE(3863)] = { + [sym_identifier] = ACTIONS(9016), + [sym_newline] = ACTIONS(9018), + [anon_sym_COLON] = ACTIONS(9018), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9016), + [aux_sym_frm_property_statement_token1] = ACTIONS(9016), + [anon_sym_DOT] = ACTIONS(9016), + [anon_sym_BANG] = ACTIONS(9018), + [aux_sym__attribute_identifier_token1] = ACTIONS(9016), + [aux_sym_option_statement_token3] = ACTIONS(9016), + [aux_sym_type_declaration_token1] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9016), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9016), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9016), + [aux_sym_enum_declaration_token1] = ACTIONS(9016), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9016), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9016), + [aux_sym_declare_function_statement_token1] = ACTIONS(9016), + [aux_sym_preprocessor_const_token1] = ACTIONS(9016), + [aux_sym__property_get_header_token1] = ACTIONS(9016), + [aux_sym_event_declaration_token1] = ACTIONS(9016), + [sym_static_modifier] = ACTIONS(9016), + [sym__dim_keyword] = ACTIONS(9016), + [sym__redim_keyword] = ACTIONS(9016), + [aux_sym_get_accessor_token1] = ACTIONS(9016), + [aux_sym_set_accessor_token1] = ACTIONS(9016), + [aux_sym_const_declaration_token1] = ACTIONS(9016), + [anon_sym_LPAREN] = ACTIONS(9018), + [aux_sym_as_type_clause_token2] = ACTIONS(9016), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9016), + [aux_sym_visibility_token1] = ACTIONS(9016), + [aux_sym_visibility_token2] = ACTIONS(9016), + [aux_sym_elseif_fragment_token1] = ACTIONS(9016), + [aux_sym_else_fragment_token1] = ACTIONS(9016), + [aux_sym_select_statement_token1] = ACTIONS(9016), + [aux_sym__for_header_token1] = ACTIONS(9016), + [aux_sym_do_statement_token1] = ACTIONS(9016), + [aux_sym_do_condition_token1] = ACTIONS(9016), + [aux_sym_with_statement_token1] = ACTIONS(9016), + [aux_sym_exit_statement_token1] = ACTIONS(9016), + [sym_end_statement] = ACTIONS(9018), + [aux_sym_on_goto_statement_token1] = ACTIONS(9016), + [aux_sym_on_goto_statement_token2] = ACTIONS(9016), + [aux_sym_on_error_statement_token2] = ACTIONS(9016), + [sym__ambiguous_redim_statement] = ACTIONS(9018), + [aux_sym_erase_statement_token1] = ACTIONS(9016), + [aux_sym_open_statement_token1] = ACTIONS(9016), + [aux_sym_file_mode_token2] = ACTIONS(9016), + [aux_sym_file_access_token2] = ACTIONS(9016), + [aux_sym_file_lock_token2] = ACTIONS(9016), + [aux_sym_print_statement_token1] = ACTIONS(9016), + [anon_sym_PLUS] = ACTIONS(9018), + [anon_sym_DASH] = ACTIONS(9016), + [anon_sym_QMARK] = ACTIONS(9018), + [aux_sym_close_statement_token1] = ACTIONS(9016), + [aux_sym_put_statement_token1] = ACTIONS(9016), + [aux_sym_unlock_statement_token1] = ACTIONS(9016), + [aux_sym_seek_statement_token1] = ACTIONS(9016), + [sym_reset_statement] = ACTIONS(9016), + [aux_sym_raise_event_statement_token1] = ACTIONS(9016), + [sym_stop_statement] = ACTIONS(9016), + [sym_beep_statement] = ACTIONS(9016), + [aux_sym_unload_statement_token1] = ACTIONS(9016), + [aux_sym_def_type_statement_token1] = ACTIONS(9016), + [aux_sym_def_type_statement_token2] = ACTIONS(9016), + [aux_sym_def_type_statement_token3] = ACTIONS(9016), + [aux_sym_def_type_statement_token4] = ACTIONS(9016), + [aux_sym_def_type_statement_token5] = ACTIONS(9016), + [aux_sym_def_type_statement_token6] = ACTIONS(9016), + [aux_sym_def_type_statement_token7] = ACTIONS(9016), + [aux_sym_def_type_statement_token8] = ACTIONS(9016), + [aux_sym_def_type_statement_token9] = ACTIONS(9016), + [aux_sym_def_type_statement_token10] = ACTIONS(9016), + [aux_sym_def_type_statement_token11] = ACTIONS(9016), + [aux_sym_def_type_statement_token12] = ACTIONS(9016), + [aux_sym_def_type_statement_token13] = ACTIONS(9016), + [aux_sym_def_type_statement_token14] = ACTIONS(9016), + [aux_sym_call_statement_token1] = ACTIONS(9016), + [sym__ambiguous_call_statement] = ACTIONS(9016), + [aux_sym_addressof_expression_token1] = ACTIONS(9016), + [aux_sym_type_of_expression_token1] = ACTIONS(9016), + [aux_sym_unary_expression_token1] = ACTIONS(9016), + [sym_string_literal] = ACTIONS(9018), + [sym_number_literal] = ACTIONS(9018), + [aux_sym_boolean_literal_token1] = ACTIONS(9016), + [aux_sym_boolean_literal_token2] = ACTIONS(9016), + [sym_nothing_literal] = ACTIONS(9016), + [sym_null_literal] = ACTIONS(9016), + [sym_empty_literal] = ACTIONS(9016), + [sym_date_literal] = ACTIONS(9018), + [anon_sym_POUND] = ACTIONS(9016), + }, + [STATE(3864)] = { + [sym_identifier] = ACTIONS(9020), + [sym_newline] = ACTIONS(9022), + [anon_sym_COLON] = ACTIONS(9022), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9020), + [aux_sym_frm_property_statement_token1] = ACTIONS(9020), + [anon_sym_DOT] = ACTIONS(9020), + [anon_sym_BANG] = ACTIONS(9022), + [aux_sym__attribute_identifier_token1] = ACTIONS(9020), + [aux_sym_option_statement_token3] = ACTIONS(9020), + [aux_sym_type_declaration_token1] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9020), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9020), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9020), + [aux_sym_enum_declaration_token1] = ACTIONS(9020), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9020), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9020), + [aux_sym_declare_function_statement_token1] = ACTIONS(9020), + [aux_sym_preprocessor_const_token1] = ACTIONS(9020), + [aux_sym__property_get_header_token1] = ACTIONS(9020), + [aux_sym_event_declaration_token1] = ACTIONS(9020), + [sym_static_modifier] = ACTIONS(9020), + [sym__dim_keyword] = ACTIONS(9020), + [sym__redim_keyword] = ACTIONS(9020), + [aux_sym_get_accessor_token1] = ACTIONS(9020), + [aux_sym_set_accessor_token1] = ACTIONS(9020), + [aux_sym_const_declaration_token1] = ACTIONS(9020), + [anon_sym_LPAREN] = ACTIONS(9022), + [aux_sym_as_type_clause_token2] = ACTIONS(9020), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9020), + [aux_sym_visibility_token1] = ACTIONS(9020), + [aux_sym_visibility_token2] = ACTIONS(9020), + [aux_sym_elseif_fragment_token1] = ACTIONS(9020), + [aux_sym_else_fragment_token1] = ACTIONS(9020), + [aux_sym_select_statement_token1] = ACTIONS(9020), + [aux_sym__for_header_token1] = ACTIONS(9020), + [aux_sym_do_statement_token1] = ACTIONS(9020), + [aux_sym_do_condition_token1] = ACTIONS(9020), + [aux_sym_with_statement_token1] = ACTIONS(9020), + [aux_sym_exit_statement_token1] = ACTIONS(9020), + [sym_end_statement] = ACTIONS(9022), + [aux_sym_on_goto_statement_token1] = ACTIONS(9020), + [aux_sym_on_goto_statement_token2] = ACTIONS(9020), + [aux_sym_on_error_statement_token2] = ACTIONS(9020), + [sym__ambiguous_redim_statement] = ACTIONS(9022), + [aux_sym_erase_statement_token1] = ACTIONS(9020), + [aux_sym_open_statement_token1] = ACTIONS(9020), + [aux_sym_file_mode_token2] = ACTIONS(9020), + [aux_sym_file_access_token2] = ACTIONS(9020), + [aux_sym_file_lock_token2] = ACTIONS(9020), + [aux_sym_print_statement_token1] = ACTIONS(9020), + [anon_sym_PLUS] = ACTIONS(9022), + [anon_sym_DASH] = ACTIONS(9020), + [anon_sym_QMARK] = ACTIONS(9022), + [aux_sym_close_statement_token1] = ACTIONS(9020), + [aux_sym_put_statement_token1] = ACTIONS(9020), + [aux_sym_unlock_statement_token1] = ACTIONS(9020), + [aux_sym_seek_statement_token1] = ACTIONS(9020), + [sym_reset_statement] = ACTIONS(9020), + [aux_sym_raise_event_statement_token1] = ACTIONS(9020), + [sym_stop_statement] = ACTIONS(9020), + [sym_beep_statement] = ACTIONS(9020), + [aux_sym_unload_statement_token1] = ACTIONS(9020), + [aux_sym_def_type_statement_token1] = ACTIONS(9020), + [aux_sym_def_type_statement_token2] = ACTIONS(9020), + [aux_sym_def_type_statement_token3] = ACTIONS(9020), + [aux_sym_def_type_statement_token4] = ACTIONS(9020), + [aux_sym_def_type_statement_token5] = ACTIONS(9020), + [aux_sym_def_type_statement_token6] = ACTIONS(9020), + [aux_sym_def_type_statement_token7] = ACTIONS(9020), + [aux_sym_def_type_statement_token8] = ACTIONS(9020), + [aux_sym_def_type_statement_token9] = ACTIONS(9020), + [aux_sym_def_type_statement_token10] = ACTIONS(9020), + [aux_sym_def_type_statement_token11] = ACTIONS(9020), + [aux_sym_def_type_statement_token12] = ACTIONS(9020), + [aux_sym_def_type_statement_token13] = ACTIONS(9020), + [aux_sym_def_type_statement_token14] = ACTIONS(9020), + [aux_sym_call_statement_token1] = ACTIONS(9020), + [sym__ambiguous_call_statement] = ACTIONS(9020), + [aux_sym_addressof_expression_token1] = ACTIONS(9020), + [aux_sym_type_of_expression_token1] = ACTIONS(9020), + [aux_sym_unary_expression_token1] = ACTIONS(9020), + [sym_string_literal] = ACTIONS(9022), + [sym_number_literal] = ACTIONS(9022), + [aux_sym_boolean_literal_token1] = ACTIONS(9020), + [aux_sym_boolean_literal_token2] = ACTIONS(9020), + [sym_nothing_literal] = ACTIONS(9020), + [sym_null_literal] = ACTIONS(9020), + [sym_empty_literal] = ACTIONS(9020), + [sym_date_literal] = ACTIONS(9022), + [anon_sym_POUND] = ACTIONS(9020), + }, + [STATE(3865)] = { + [sym_identifier] = ACTIONS(9024), + [sym_newline] = ACTIONS(9026), + [anon_sym_COLON] = ACTIONS(9026), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9024), + [aux_sym_frm_property_statement_token1] = ACTIONS(9024), + [anon_sym_DOT] = ACTIONS(9024), + [anon_sym_BANG] = ACTIONS(9026), + [aux_sym__attribute_identifier_token1] = ACTIONS(9024), + [aux_sym_option_statement_token3] = ACTIONS(9024), + [aux_sym_type_declaration_token1] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9024), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9024), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9024), + [aux_sym_enum_declaration_token1] = ACTIONS(9024), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9024), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9024), + [aux_sym_declare_function_statement_token1] = ACTIONS(9024), + [aux_sym_preprocessor_const_token1] = ACTIONS(9024), + [aux_sym__property_get_header_token1] = ACTIONS(9024), + [aux_sym_event_declaration_token1] = ACTIONS(9024), + [sym_static_modifier] = ACTIONS(9024), + [sym__dim_keyword] = ACTIONS(9024), + [sym__redim_keyword] = ACTIONS(9024), + [aux_sym_get_accessor_token1] = ACTIONS(9024), + [aux_sym_set_accessor_token1] = ACTIONS(9024), + [aux_sym_const_declaration_token1] = ACTIONS(9024), + [anon_sym_LPAREN] = ACTIONS(9026), + [aux_sym_as_type_clause_token2] = ACTIONS(9024), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9024), + [aux_sym_visibility_token1] = ACTIONS(9024), + [aux_sym_visibility_token2] = ACTIONS(9024), + [aux_sym_elseif_fragment_token1] = ACTIONS(9024), + [aux_sym_else_fragment_token1] = ACTIONS(9024), + [aux_sym_select_statement_token1] = ACTIONS(9024), + [aux_sym__for_header_token1] = ACTIONS(9024), + [aux_sym_do_statement_token1] = ACTIONS(9024), + [aux_sym_do_condition_token1] = ACTIONS(9024), + [aux_sym_with_statement_token1] = ACTIONS(9024), + [aux_sym_exit_statement_token1] = ACTIONS(9024), + [sym_end_statement] = ACTIONS(9026), + [aux_sym_on_goto_statement_token1] = ACTIONS(9024), + [aux_sym_on_goto_statement_token2] = ACTIONS(9024), + [aux_sym_on_error_statement_token2] = ACTIONS(9024), + [sym__ambiguous_redim_statement] = ACTIONS(9026), + [aux_sym_erase_statement_token1] = ACTIONS(9024), + [aux_sym_open_statement_token1] = ACTIONS(9024), + [aux_sym_file_mode_token2] = ACTIONS(9024), + [aux_sym_file_access_token2] = ACTIONS(9024), + [aux_sym_file_lock_token2] = ACTIONS(9024), + [aux_sym_print_statement_token1] = ACTIONS(9024), + [anon_sym_PLUS] = ACTIONS(9026), + [anon_sym_DASH] = ACTIONS(9024), + [anon_sym_QMARK] = ACTIONS(9026), + [aux_sym_close_statement_token1] = ACTIONS(9024), + [aux_sym_put_statement_token1] = ACTIONS(9024), + [aux_sym_unlock_statement_token1] = ACTIONS(9024), + [aux_sym_seek_statement_token1] = ACTIONS(9024), + [sym_reset_statement] = ACTIONS(9024), + [aux_sym_raise_event_statement_token1] = ACTIONS(9024), + [sym_stop_statement] = ACTIONS(9024), + [sym_beep_statement] = ACTIONS(9024), + [aux_sym_unload_statement_token1] = ACTIONS(9024), + [aux_sym_def_type_statement_token1] = ACTIONS(9024), + [aux_sym_def_type_statement_token2] = ACTIONS(9024), + [aux_sym_def_type_statement_token3] = ACTIONS(9024), + [aux_sym_def_type_statement_token4] = ACTIONS(9024), + [aux_sym_def_type_statement_token5] = ACTIONS(9024), + [aux_sym_def_type_statement_token6] = ACTIONS(9024), + [aux_sym_def_type_statement_token7] = ACTIONS(9024), + [aux_sym_def_type_statement_token8] = ACTIONS(9024), + [aux_sym_def_type_statement_token9] = ACTIONS(9024), + [aux_sym_def_type_statement_token10] = ACTIONS(9024), + [aux_sym_def_type_statement_token11] = ACTIONS(9024), + [aux_sym_def_type_statement_token12] = ACTIONS(9024), + [aux_sym_def_type_statement_token13] = ACTIONS(9024), + [aux_sym_def_type_statement_token14] = ACTIONS(9024), + [aux_sym_call_statement_token1] = ACTIONS(9024), + [sym__ambiguous_call_statement] = ACTIONS(9024), + [aux_sym_addressof_expression_token1] = ACTIONS(9024), + [aux_sym_type_of_expression_token1] = ACTIONS(9024), + [aux_sym_unary_expression_token1] = ACTIONS(9024), + [sym_string_literal] = ACTIONS(9026), + [sym_number_literal] = ACTIONS(9026), + [aux_sym_boolean_literal_token1] = ACTIONS(9024), + [aux_sym_boolean_literal_token2] = ACTIONS(9024), + [sym_nothing_literal] = ACTIONS(9024), + [sym_null_literal] = ACTIONS(9024), + [sym_empty_literal] = ACTIONS(9024), + [sym_date_literal] = ACTIONS(9026), + [anon_sym_POUND] = ACTIONS(9024), + }, + [STATE(3866)] = { + [sym_identifier] = ACTIONS(9028), + [sym_newline] = ACTIONS(9030), + [anon_sym_COLON] = ACTIONS(9030), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9028), + [aux_sym_frm_property_statement_token1] = ACTIONS(9028), + [anon_sym_DOT] = ACTIONS(9028), + [anon_sym_BANG] = ACTIONS(9030), + [aux_sym__attribute_identifier_token1] = ACTIONS(9028), + [aux_sym_option_statement_token3] = ACTIONS(9028), + [aux_sym_type_declaration_token1] = ACTIONS(9028), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9028), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9028), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9028), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9028), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9028), + [aux_sym_enum_declaration_token1] = ACTIONS(9028), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9028), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9028), + [aux_sym_declare_function_statement_token1] = ACTIONS(9028), + [aux_sym_preprocessor_const_token1] = ACTIONS(9028), + [aux_sym__property_get_header_token1] = ACTIONS(9028), + [aux_sym_event_declaration_token1] = ACTIONS(9028), + [sym_static_modifier] = ACTIONS(9028), + [sym__dim_keyword] = ACTIONS(9028), + [sym__redim_keyword] = ACTIONS(9028), + [aux_sym_get_accessor_token1] = ACTIONS(9028), + [aux_sym_set_accessor_token1] = ACTIONS(9028), + [aux_sym_const_declaration_token1] = ACTIONS(9028), + [anon_sym_LPAREN] = ACTIONS(9030), + [aux_sym_as_type_clause_token2] = ACTIONS(9028), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9028), + [aux_sym_visibility_token1] = ACTIONS(9028), + [aux_sym_visibility_token2] = ACTIONS(9028), + [aux_sym_elseif_fragment_token1] = ACTIONS(9028), + [aux_sym_else_fragment_token1] = ACTIONS(9028), + [aux_sym_select_statement_token1] = ACTIONS(9028), + [aux_sym__for_header_token1] = ACTIONS(9028), + [aux_sym_do_statement_token1] = ACTIONS(9028), + [aux_sym_do_condition_token1] = ACTIONS(9028), + [aux_sym_with_statement_token1] = ACTIONS(9028), + [aux_sym_exit_statement_token1] = ACTIONS(9028), + [sym_end_statement] = ACTIONS(9030), + [aux_sym_on_goto_statement_token1] = ACTIONS(9028), + [aux_sym_on_goto_statement_token2] = ACTIONS(9028), + [aux_sym_on_error_statement_token2] = ACTIONS(9028), + [sym__ambiguous_redim_statement] = ACTIONS(9030), + [aux_sym_erase_statement_token1] = ACTIONS(9028), + [aux_sym_open_statement_token1] = ACTIONS(9028), + [aux_sym_file_mode_token2] = ACTIONS(9028), + [aux_sym_file_access_token2] = ACTIONS(9028), + [aux_sym_file_lock_token2] = ACTIONS(9028), + [aux_sym_print_statement_token1] = ACTIONS(9028), + [anon_sym_PLUS] = ACTIONS(9030), + [anon_sym_DASH] = ACTIONS(9028), + [anon_sym_QMARK] = ACTIONS(9030), + [aux_sym_close_statement_token1] = ACTIONS(9028), + [aux_sym_put_statement_token1] = ACTIONS(9028), + [aux_sym_unlock_statement_token1] = ACTIONS(9028), + [aux_sym_seek_statement_token1] = ACTIONS(9028), + [sym_reset_statement] = ACTIONS(9028), + [aux_sym_raise_event_statement_token1] = ACTIONS(9028), + [sym_stop_statement] = ACTIONS(9028), + [sym_beep_statement] = ACTIONS(9028), + [aux_sym_unload_statement_token1] = ACTIONS(9028), + [aux_sym_def_type_statement_token1] = ACTIONS(9028), + [aux_sym_def_type_statement_token2] = ACTIONS(9028), + [aux_sym_def_type_statement_token3] = ACTIONS(9028), + [aux_sym_def_type_statement_token4] = ACTIONS(9028), + [aux_sym_def_type_statement_token5] = ACTIONS(9028), + [aux_sym_def_type_statement_token6] = ACTIONS(9028), + [aux_sym_def_type_statement_token7] = ACTIONS(9028), + [aux_sym_def_type_statement_token8] = ACTIONS(9028), + [aux_sym_def_type_statement_token9] = ACTIONS(9028), + [aux_sym_def_type_statement_token10] = ACTIONS(9028), + [aux_sym_def_type_statement_token11] = ACTIONS(9028), + [aux_sym_def_type_statement_token12] = ACTIONS(9028), + [aux_sym_def_type_statement_token13] = ACTIONS(9028), + [aux_sym_def_type_statement_token14] = ACTIONS(9028), + [aux_sym_call_statement_token1] = ACTIONS(9028), + [sym__ambiguous_call_statement] = ACTIONS(9028), + [aux_sym_addressof_expression_token1] = ACTIONS(9028), + [aux_sym_type_of_expression_token1] = ACTIONS(9028), + [aux_sym_unary_expression_token1] = ACTIONS(9028), + [sym_string_literal] = ACTIONS(9030), + [sym_number_literal] = ACTIONS(9030), + [aux_sym_boolean_literal_token1] = ACTIONS(9028), + [aux_sym_boolean_literal_token2] = ACTIONS(9028), + [sym_nothing_literal] = ACTIONS(9028), + [sym_null_literal] = ACTIONS(9028), + [sym_empty_literal] = ACTIONS(9028), + [sym_date_literal] = ACTIONS(9030), + [anon_sym_POUND] = ACTIONS(9028), + }, + [STATE(3867)] = { + [sym_identifier] = ACTIONS(8986), + [sym_newline] = ACTIONS(9032), + [anon_sym_COLON] = ACTIONS(9032), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8986), + [aux_sym_frm_property_statement_token1] = ACTIONS(8986), + [anon_sym_DOT] = ACTIONS(8986), + [anon_sym_BANG] = ACTIONS(9032), + [aux_sym__attribute_identifier_token1] = ACTIONS(8986), + [aux_sym_option_statement_token3] = ACTIONS(8986), + [aux_sym_type_declaration_token1] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8986), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8986), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8986), + [aux_sym_enum_declaration_token1] = ACTIONS(8986), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8986), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8986), + [aux_sym_declare_function_statement_token1] = ACTIONS(8986), + [aux_sym_preprocessor_const_token1] = ACTIONS(8986), + [aux_sym__property_get_header_token1] = ACTIONS(8986), + [aux_sym_event_declaration_token1] = ACTIONS(8986), + [sym_static_modifier] = ACTIONS(8986), + [sym__dim_keyword] = ACTIONS(8986), + [sym__redim_keyword] = ACTIONS(8986), + [aux_sym_get_accessor_token1] = ACTIONS(8986), + [aux_sym_set_accessor_token1] = ACTIONS(8986), + [aux_sym_const_declaration_token1] = ACTIONS(8986), + [anon_sym_LPAREN] = ACTIONS(9032), + [aux_sym_as_type_clause_token2] = ACTIONS(8986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8986), + [aux_sym_visibility_token1] = ACTIONS(8986), + [aux_sym_visibility_token2] = ACTIONS(8986), + [aux_sym_elseif_fragment_token1] = ACTIONS(8986), + [aux_sym_else_fragment_token1] = ACTIONS(8986), + [aux_sym_select_statement_token1] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8986), + [aux_sym_do_statement_token1] = ACTIONS(8986), + [aux_sym_do_condition_token1] = ACTIONS(8986), + [aux_sym_with_statement_token1] = ACTIONS(8986), + [aux_sym_exit_statement_token1] = ACTIONS(8986), + [sym_end_statement] = ACTIONS(9032), + [aux_sym_on_goto_statement_token1] = ACTIONS(8986), + [aux_sym_on_goto_statement_token2] = ACTIONS(8986), + [aux_sym_on_error_statement_token2] = ACTIONS(8986), + [sym__ambiguous_redim_statement] = ACTIONS(9032), + [aux_sym_erase_statement_token1] = ACTIONS(8986), + [aux_sym_open_statement_token1] = ACTIONS(8986), + [aux_sym_file_mode_token2] = ACTIONS(8986), + [aux_sym_file_access_token2] = ACTIONS(8986), + [aux_sym_file_lock_token2] = ACTIONS(8986), + [aux_sym_print_statement_token1] = ACTIONS(8986), + [anon_sym_PLUS] = ACTIONS(9032), + [anon_sym_DASH] = ACTIONS(8986), + [anon_sym_QMARK] = ACTIONS(9032), + [aux_sym_close_statement_token1] = ACTIONS(8986), + [aux_sym_put_statement_token1] = ACTIONS(8986), + [aux_sym_unlock_statement_token1] = ACTIONS(8986), + [aux_sym_seek_statement_token1] = ACTIONS(8986), + [sym_reset_statement] = ACTIONS(8986), + [aux_sym_raise_event_statement_token1] = ACTIONS(8986), + [sym_stop_statement] = ACTIONS(8986), + [sym_beep_statement] = ACTIONS(8986), + [aux_sym_unload_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token2] = ACTIONS(8986), + [aux_sym_def_type_statement_token3] = ACTIONS(8986), + [aux_sym_def_type_statement_token4] = ACTIONS(8986), + [aux_sym_def_type_statement_token5] = ACTIONS(8986), + [aux_sym_def_type_statement_token6] = ACTIONS(8986), + [aux_sym_def_type_statement_token7] = ACTIONS(8986), + [aux_sym_def_type_statement_token8] = ACTIONS(8986), + [aux_sym_def_type_statement_token9] = ACTIONS(8986), + [aux_sym_def_type_statement_token10] = ACTIONS(8986), + [aux_sym_def_type_statement_token11] = ACTIONS(8986), + [aux_sym_def_type_statement_token12] = ACTIONS(8986), + [aux_sym_def_type_statement_token13] = ACTIONS(8986), + [aux_sym_def_type_statement_token14] = ACTIONS(8986), + [aux_sym_call_statement_token1] = ACTIONS(8986), + [sym__ambiguous_call_statement] = ACTIONS(8986), + [aux_sym_addressof_expression_token1] = ACTIONS(8986), + [aux_sym_type_of_expression_token1] = ACTIONS(8986), + [aux_sym_unary_expression_token1] = ACTIONS(8986), + [sym_string_literal] = ACTIONS(9032), + [sym_number_literal] = ACTIONS(9032), + [aux_sym_boolean_literal_token1] = ACTIONS(8986), + [aux_sym_boolean_literal_token2] = ACTIONS(8986), + [sym_nothing_literal] = ACTIONS(8986), + [sym_null_literal] = ACTIONS(8986), + [sym_empty_literal] = ACTIONS(8986), + [sym_date_literal] = ACTIONS(9032), + [anon_sym_POUND] = ACTIONS(8986), + }, + [STATE(3868)] = { + [sym_identifier] = ACTIONS(8764), + [sym_newline] = ACTIONS(9034), + [anon_sym_COLON] = ACTIONS(9034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8764), + [aux_sym_frm_property_statement_token1] = ACTIONS(8764), + [anon_sym_DOT] = ACTIONS(8764), + [anon_sym_BANG] = ACTIONS(9034), + [aux_sym__attribute_identifier_token1] = ACTIONS(8764), + [aux_sym_option_statement_token3] = ACTIONS(8764), + [aux_sym_type_declaration_token1] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8764), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8764), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8764), + [aux_sym_enum_declaration_token1] = ACTIONS(8764), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8764), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8764), + [aux_sym_declare_function_statement_token1] = ACTIONS(8764), + [aux_sym_preprocessor_const_token1] = ACTIONS(8764), + [aux_sym__property_get_header_token1] = ACTIONS(8764), + [aux_sym_event_declaration_token1] = ACTIONS(8764), + [sym_static_modifier] = ACTIONS(8764), + [sym__dim_keyword] = ACTIONS(8764), + [sym__redim_keyword] = ACTIONS(8764), + [aux_sym_get_accessor_token1] = ACTIONS(8764), + [aux_sym_set_accessor_token1] = ACTIONS(8764), + [aux_sym_const_declaration_token1] = ACTIONS(8764), + [anon_sym_LPAREN] = ACTIONS(9034), + [aux_sym_as_type_clause_token2] = ACTIONS(8764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8764), + [aux_sym_visibility_token1] = ACTIONS(8764), + [aux_sym_visibility_token2] = ACTIONS(8764), + [aux_sym_elseif_fragment_token1] = ACTIONS(8764), + [aux_sym_else_fragment_token1] = ACTIONS(8764), + [aux_sym_select_statement_token1] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8764), + [aux_sym_do_statement_token1] = ACTIONS(8764), + [aux_sym_do_condition_token1] = ACTIONS(8764), + [aux_sym_with_statement_token1] = ACTIONS(8764), + [aux_sym_exit_statement_token1] = ACTIONS(8764), + [sym_end_statement] = ACTIONS(9034), + [aux_sym_on_goto_statement_token1] = ACTIONS(8764), + [aux_sym_on_goto_statement_token2] = ACTIONS(8764), + [aux_sym_on_error_statement_token2] = ACTIONS(8764), + [sym__ambiguous_redim_statement] = ACTIONS(9034), + [aux_sym_erase_statement_token1] = ACTIONS(8764), + [aux_sym_open_statement_token1] = ACTIONS(8764), + [aux_sym_file_mode_token2] = ACTIONS(8764), + [aux_sym_file_access_token2] = ACTIONS(8764), + [aux_sym_file_lock_token2] = ACTIONS(8764), + [aux_sym_print_statement_token1] = ACTIONS(8764), + [anon_sym_PLUS] = ACTIONS(9034), + [anon_sym_DASH] = ACTIONS(8764), + [anon_sym_QMARK] = ACTIONS(9034), + [aux_sym_close_statement_token1] = ACTIONS(8764), + [aux_sym_put_statement_token1] = ACTIONS(8764), + [aux_sym_unlock_statement_token1] = ACTIONS(8764), + [aux_sym_seek_statement_token1] = ACTIONS(8764), + [sym_reset_statement] = ACTIONS(8764), + [aux_sym_raise_event_statement_token1] = ACTIONS(8764), + [sym_stop_statement] = ACTIONS(8764), + [sym_beep_statement] = ACTIONS(8764), + [aux_sym_unload_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token2] = ACTIONS(8764), + [aux_sym_def_type_statement_token3] = ACTIONS(8764), + [aux_sym_def_type_statement_token4] = ACTIONS(8764), + [aux_sym_def_type_statement_token5] = ACTIONS(8764), + [aux_sym_def_type_statement_token6] = ACTIONS(8764), + [aux_sym_def_type_statement_token7] = ACTIONS(8764), + [aux_sym_def_type_statement_token8] = ACTIONS(8764), + [aux_sym_def_type_statement_token9] = ACTIONS(8764), + [aux_sym_def_type_statement_token10] = ACTIONS(8764), + [aux_sym_def_type_statement_token11] = ACTIONS(8764), + [aux_sym_def_type_statement_token12] = ACTIONS(8764), + [aux_sym_def_type_statement_token13] = ACTIONS(8764), + [aux_sym_def_type_statement_token14] = ACTIONS(8764), + [aux_sym_call_statement_token1] = ACTIONS(8764), + [sym__ambiguous_call_statement] = ACTIONS(8764), + [aux_sym_addressof_expression_token1] = ACTIONS(8764), + [aux_sym_type_of_expression_token1] = ACTIONS(8764), + [aux_sym_unary_expression_token1] = ACTIONS(8764), + [sym_string_literal] = ACTIONS(9034), + [sym_number_literal] = ACTIONS(9034), + [aux_sym_boolean_literal_token1] = ACTIONS(8764), + [aux_sym_boolean_literal_token2] = ACTIONS(8764), + [sym_nothing_literal] = ACTIONS(8764), + [sym_null_literal] = ACTIONS(8764), + [sym_empty_literal] = ACTIONS(8764), + [sym_date_literal] = ACTIONS(9034), + [anon_sym_POUND] = ACTIONS(8764), + }, + [STATE(3869)] = { + [sym_identifier] = ACTIONS(9036), + [sym_newline] = ACTIONS(9038), + [anon_sym_COLON] = ACTIONS(9038), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9036), + [aux_sym_frm_property_statement_token1] = ACTIONS(9036), + [anon_sym_DOT] = ACTIONS(9036), + [anon_sym_BANG] = ACTIONS(9038), + [aux_sym__attribute_identifier_token1] = ACTIONS(9036), + [aux_sym_option_statement_token3] = ACTIONS(9036), + [aux_sym_type_declaration_token1] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9036), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9036), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9036), + [aux_sym_enum_declaration_token1] = ACTIONS(9036), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9036), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9036), + [aux_sym_declare_function_statement_token1] = ACTIONS(9036), + [aux_sym_preprocessor_const_token1] = ACTIONS(9036), + [aux_sym__property_get_header_token1] = ACTIONS(9036), + [aux_sym_event_declaration_token1] = ACTIONS(9036), + [sym_static_modifier] = ACTIONS(9036), + [sym__dim_keyword] = ACTIONS(9036), + [sym__redim_keyword] = ACTIONS(9036), + [aux_sym_get_accessor_token1] = ACTIONS(9036), + [aux_sym_set_accessor_token1] = ACTIONS(9036), + [aux_sym_const_declaration_token1] = ACTIONS(9036), + [anon_sym_LPAREN] = ACTIONS(9038), + [aux_sym_as_type_clause_token2] = ACTIONS(9036), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9036), + [aux_sym_visibility_token1] = ACTIONS(9036), + [aux_sym_visibility_token2] = ACTIONS(9036), + [aux_sym_elseif_fragment_token1] = ACTIONS(9036), + [aux_sym_else_fragment_token1] = ACTIONS(9036), + [aux_sym_select_statement_token1] = ACTIONS(9036), + [aux_sym__for_header_token1] = ACTIONS(9036), + [aux_sym_do_statement_token1] = ACTIONS(9036), + [aux_sym_do_condition_token1] = ACTIONS(9036), + [aux_sym_with_statement_token1] = ACTIONS(9036), + [aux_sym_exit_statement_token1] = ACTIONS(9036), + [sym_end_statement] = ACTIONS(9038), + [aux_sym_on_goto_statement_token1] = ACTIONS(9036), + [aux_sym_on_goto_statement_token2] = ACTIONS(9036), + [aux_sym_on_error_statement_token2] = ACTIONS(9036), + [sym__ambiguous_redim_statement] = ACTIONS(9038), + [aux_sym_erase_statement_token1] = ACTIONS(9036), + [aux_sym_open_statement_token1] = ACTIONS(9036), + [aux_sym_file_mode_token2] = ACTIONS(9036), + [aux_sym_file_access_token2] = ACTIONS(9036), + [aux_sym_file_lock_token2] = ACTIONS(9036), + [aux_sym_print_statement_token1] = ACTIONS(9036), + [anon_sym_PLUS] = ACTIONS(9038), + [anon_sym_DASH] = ACTIONS(9036), + [anon_sym_QMARK] = ACTIONS(9038), + [aux_sym_close_statement_token1] = ACTIONS(9036), + [aux_sym_put_statement_token1] = ACTIONS(9036), + [aux_sym_unlock_statement_token1] = ACTIONS(9036), + [aux_sym_seek_statement_token1] = ACTIONS(9036), + [sym_reset_statement] = ACTIONS(9036), + [aux_sym_raise_event_statement_token1] = ACTIONS(9036), + [sym_stop_statement] = ACTIONS(9036), + [sym_beep_statement] = ACTIONS(9036), + [aux_sym_unload_statement_token1] = ACTIONS(9036), + [aux_sym_def_type_statement_token1] = ACTIONS(9036), + [aux_sym_def_type_statement_token2] = ACTIONS(9036), + [aux_sym_def_type_statement_token3] = ACTIONS(9036), + [aux_sym_def_type_statement_token4] = ACTIONS(9036), + [aux_sym_def_type_statement_token5] = ACTIONS(9036), + [aux_sym_def_type_statement_token6] = ACTIONS(9036), + [aux_sym_def_type_statement_token7] = ACTIONS(9036), + [aux_sym_def_type_statement_token8] = ACTIONS(9036), + [aux_sym_def_type_statement_token9] = ACTIONS(9036), + [aux_sym_def_type_statement_token10] = ACTIONS(9036), + [aux_sym_def_type_statement_token11] = ACTIONS(9036), + [aux_sym_def_type_statement_token12] = ACTIONS(9036), + [aux_sym_def_type_statement_token13] = ACTIONS(9036), + [aux_sym_def_type_statement_token14] = ACTIONS(9036), + [aux_sym_call_statement_token1] = ACTIONS(9036), + [sym__ambiguous_call_statement] = ACTIONS(9036), + [aux_sym_addressof_expression_token1] = ACTIONS(9036), + [aux_sym_type_of_expression_token1] = ACTIONS(9036), + [aux_sym_unary_expression_token1] = ACTIONS(9036), + [sym_string_literal] = ACTIONS(9038), + [sym_number_literal] = ACTIONS(9038), + [aux_sym_boolean_literal_token1] = ACTIONS(9036), + [aux_sym_boolean_literal_token2] = ACTIONS(9036), + [sym_nothing_literal] = ACTIONS(9036), + [sym_null_literal] = ACTIONS(9036), + [sym_empty_literal] = ACTIONS(9036), + [sym_date_literal] = ACTIONS(9038), + [anon_sym_POUND] = ACTIONS(9036), + }, + [STATE(3870)] = { + [sym_identifier] = ACTIONS(9040), + [sym_newline] = ACTIONS(9042), + [anon_sym_COLON] = ACTIONS(9042), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9040), + [aux_sym_frm_property_statement_token1] = ACTIONS(9040), + [anon_sym_DOT] = ACTIONS(9040), + [anon_sym_BANG] = ACTIONS(9042), + [aux_sym__attribute_identifier_token1] = ACTIONS(9040), + [aux_sym_option_statement_token3] = ACTIONS(9040), + [aux_sym_type_declaration_token1] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9040), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9040), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9040), + [aux_sym_enum_declaration_token1] = ACTIONS(9040), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9040), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9040), + [aux_sym_declare_function_statement_token1] = ACTIONS(9040), + [aux_sym_preprocessor_const_token1] = ACTIONS(9040), + [aux_sym__property_get_header_token1] = ACTIONS(9040), + [aux_sym_event_declaration_token1] = ACTIONS(9040), + [sym_static_modifier] = ACTIONS(9040), + [sym__dim_keyword] = ACTIONS(9040), + [sym__redim_keyword] = ACTIONS(9040), + [aux_sym_get_accessor_token1] = ACTIONS(9040), + [aux_sym_set_accessor_token1] = ACTIONS(9040), + [aux_sym_const_declaration_token1] = ACTIONS(9040), + [anon_sym_LPAREN] = ACTIONS(9042), + [aux_sym_as_type_clause_token2] = ACTIONS(9040), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9040), + [aux_sym_visibility_token1] = ACTIONS(9040), + [aux_sym_visibility_token2] = ACTIONS(9040), + [aux_sym_elseif_fragment_token1] = ACTIONS(9040), + [aux_sym_else_fragment_token1] = ACTIONS(9040), + [aux_sym_select_statement_token1] = ACTIONS(9040), + [aux_sym__for_header_token1] = ACTIONS(9040), + [aux_sym_do_statement_token1] = ACTIONS(9040), + [aux_sym_do_condition_token1] = ACTIONS(9040), + [aux_sym_with_statement_token1] = ACTIONS(9040), + [aux_sym_exit_statement_token1] = ACTIONS(9040), + [sym_end_statement] = ACTIONS(9042), + [aux_sym_on_goto_statement_token1] = ACTIONS(9040), + [aux_sym_on_goto_statement_token2] = ACTIONS(9040), + [aux_sym_on_error_statement_token2] = ACTIONS(9040), + [sym__ambiguous_redim_statement] = ACTIONS(9042), + [aux_sym_erase_statement_token1] = ACTIONS(9040), + [aux_sym_open_statement_token1] = ACTIONS(9040), + [aux_sym_file_mode_token2] = ACTIONS(9040), + [aux_sym_file_access_token2] = ACTIONS(9040), + [aux_sym_file_lock_token2] = ACTIONS(9040), + [aux_sym_print_statement_token1] = ACTIONS(9040), + [anon_sym_PLUS] = ACTIONS(9042), + [anon_sym_DASH] = ACTIONS(9040), + [anon_sym_QMARK] = ACTIONS(9042), + [aux_sym_close_statement_token1] = ACTIONS(9040), + [aux_sym_put_statement_token1] = ACTIONS(9040), + [aux_sym_unlock_statement_token1] = ACTIONS(9040), + [aux_sym_seek_statement_token1] = ACTIONS(9040), + [sym_reset_statement] = ACTIONS(9040), + [aux_sym_raise_event_statement_token1] = ACTIONS(9040), + [sym_stop_statement] = ACTIONS(9040), + [sym_beep_statement] = ACTIONS(9040), + [aux_sym_unload_statement_token1] = ACTIONS(9040), + [aux_sym_def_type_statement_token1] = ACTIONS(9040), + [aux_sym_def_type_statement_token2] = ACTIONS(9040), + [aux_sym_def_type_statement_token3] = ACTIONS(9040), + [aux_sym_def_type_statement_token4] = ACTIONS(9040), + [aux_sym_def_type_statement_token5] = ACTIONS(9040), + [aux_sym_def_type_statement_token6] = ACTIONS(9040), + [aux_sym_def_type_statement_token7] = ACTIONS(9040), + [aux_sym_def_type_statement_token8] = ACTIONS(9040), + [aux_sym_def_type_statement_token9] = ACTIONS(9040), + [aux_sym_def_type_statement_token10] = ACTIONS(9040), + [aux_sym_def_type_statement_token11] = ACTIONS(9040), + [aux_sym_def_type_statement_token12] = ACTIONS(9040), + [aux_sym_def_type_statement_token13] = ACTIONS(9040), + [aux_sym_def_type_statement_token14] = ACTIONS(9040), + [aux_sym_call_statement_token1] = ACTIONS(9040), + [sym__ambiguous_call_statement] = ACTIONS(9040), + [aux_sym_addressof_expression_token1] = ACTIONS(9040), + [aux_sym_type_of_expression_token1] = ACTIONS(9040), + [aux_sym_unary_expression_token1] = ACTIONS(9040), + [sym_string_literal] = ACTIONS(9042), + [sym_number_literal] = ACTIONS(9042), + [aux_sym_boolean_literal_token1] = ACTIONS(9040), + [aux_sym_boolean_literal_token2] = ACTIONS(9040), + [sym_nothing_literal] = ACTIONS(9040), + [sym_null_literal] = ACTIONS(9040), + [sym_empty_literal] = ACTIONS(9040), + [sym_date_literal] = ACTIONS(9042), + [anon_sym_POUND] = ACTIONS(9040), + }, + [STATE(3871)] = { + [sym_identifier] = ACTIONS(9044), + [sym_newline] = ACTIONS(9046), + [anon_sym_COLON] = ACTIONS(9046), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9044), + [aux_sym_frm_property_statement_token1] = ACTIONS(9044), + [anon_sym_DOT] = ACTIONS(9044), + [anon_sym_BANG] = ACTIONS(9046), + [aux_sym__attribute_identifier_token1] = ACTIONS(9044), + [aux_sym_option_statement_token3] = ACTIONS(9044), + [aux_sym_type_declaration_token1] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9044), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9044), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9044), + [aux_sym_enum_declaration_token1] = ACTIONS(9044), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9044), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9044), + [aux_sym_declare_function_statement_token1] = ACTIONS(9044), + [aux_sym_preprocessor_const_token1] = ACTIONS(9044), + [aux_sym__property_get_header_token1] = ACTIONS(9044), + [aux_sym_event_declaration_token1] = ACTIONS(9044), + [sym_static_modifier] = ACTIONS(9044), + [sym__dim_keyword] = ACTIONS(9044), + [sym__redim_keyword] = ACTIONS(9044), + [aux_sym_get_accessor_token1] = ACTIONS(9044), + [aux_sym_set_accessor_token1] = ACTIONS(9044), + [aux_sym_const_declaration_token1] = ACTIONS(9044), + [anon_sym_LPAREN] = ACTIONS(9046), + [aux_sym_as_type_clause_token2] = ACTIONS(9044), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9044), + [aux_sym_visibility_token1] = ACTIONS(9044), + [aux_sym_visibility_token2] = ACTIONS(9044), + [aux_sym_elseif_fragment_token1] = ACTIONS(9044), + [aux_sym_else_fragment_token1] = ACTIONS(9044), + [aux_sym_select_statement_token1] = ACTIONS(9044), + [aux_sym__for_header_token1] = ACTIONS(9044), + [aux_sym_do_statement_token1] = ACTIONS(9044), + [aux_sym_do_condition_token1] = ACTIONS(9044), + [aux_sym_with_statement_token1] = ACTIONS(9044), + [aux_sym_exit_statement_token1] = ACTIONS(9044), + [sym_end_statement] = ACTIONS(9046), + [aux_sym_on_goto_statement_token1] = ACTIONS(9044), + [aux_sym_on_goto_statement_token2] = ACTIONS(9044), + [aux_sym_on_error_statement_token2] = ACTIONS(9044), + [sym__ambiguous_redim_statement] = ACTIONS(9046), + [aux_sym_erase_statement_token1] = ACTIONS(9044), + [aux_sym_open_statement_token1] = ACTIONS(9044), + [aux_sym_file_mode_token2] = ACTIONS(9044), + [aux_sym_file_access_token2] = ACTIONS(9044), + [aux_sym_file_lock_token2] = ACTIONS(9044), + [aux_sym_print_statement_token1] = ACTIONS(9044), + [anon_sym_PLUS] = ACTIONS(9046), + [anon_sym_DASH] = ACTIONS(9044), + [anon_sym_QMARK] = ACTIONS(9046), + [aux_sym_close_statement_token1] = ACTIONS(9044), + [aux_sym_put_statement_token1] = ACTIONS(9044), + [aux_sym_unlock_statement_token1] = ACTIONS(9044), + [aux_sym_seek_statement_token1] = ACTIONS(9044), + [sym_reset_statement] = ACTIONS(9044), + [aux_sym_raise_event_statement_token1] = ACTIONS(9044), + [sym_stop_statement] = ACTIONS(9044), + [sym_beep_statement] = ACTIONS(9044), + [aux_sym_unload_statement_token1] = ACTIONS(9044), + [aux_sym_def_type_statement_token1] = ACTIONS(9044), + [aux_sym_def_type_statement_token2] = ACTIONS(9044), + [aux_sym_def_type_statement_token3] = ACTIONS(9044), + [aux_sym_def_type_statement_token4] = ACTIONS(9044), + [aux_sym_def_type_statement_token5] = ACTIONS(9044), + [aux_sym_def_type_statement_token6] = ACTIONS(9044), + [aux_sym_def_type_statement_token7] = ACTIONS(9044), + [aux_sym_def_type_statement_token8] = ACTIONS(9044), + [aux_sym_def_type_statement_token9] = ACTIONS(9044), + [aux_sym_def_type_statement_token10] = ACTIONS(9044), + [aux_sym_def_type_statement_token11] = ACTIONS(9044), + [aux_sym_def_type_statement_token12] = ACTIONS(9044), + [aux_sym_def_type_statement_token13] = ACTIONS(9044), + [aux_sym_def_type_statement_token14] = ACTIONS(9044), + [aux_sym_call_statement_token1] = ACTIONS(9044), + [sym__ambiguous_call_statement] = ACTIONS(9044), + [aux_sym_addressof_expression_token1] = ACTIONS(9044), + [aux_sym_type_of_expression_token1] = ACTIONS(9044), + [aux_sym_unary_expression_token1] = ACTIONS(9044), + [sym_string_literal] = ACTIONS(9046), + [sym_number_literal] = ACTIONS(9046), + [aux_sym_boolean_literal_token1] = ACTIONS(9044), + [aux_sym_boolean_literal_token2] = ACTIONS(9044), + [sym_nothing_literal] = ACTIONS(9044), + [sym_null_literal] = ACTIONS(9044), + [sym_empty_literal] = ACTIONS(9044), + [sym_date_literal] = ACTIONS(9046), + [anon_sym_POUND] = ACTIONS(9044), + }, + [STATE(3872)] = { + [sym_identifier] = ACTIONS(9048), + [sym_newline] = ACTIONS(9050), + [anon_sym_COLON] = ACTIONS(9050), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9048), + [aux_sym_frm_property_statement_token1] = ACTIONS(9048), + [anon_sym_DOT] = ACTIONS(9048), + [anon_sym_BANG] = ACTIONS(9050), + [aux_sym__attribute_identifier_token1] = ACTIONS(9048), + [aux_sym_option_statement_token3] = ACTIONS(9048), + [aux_sym_type_declaration_token1] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9048), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9048), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9048), + [aux_sym_enum_declaration_token1] = ACTIONS(9048), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9048), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9048), + [aux_sym_declare_function_statement_token1] = ACTIONS(9048), + [aux_sym_preprocessor_const_token1] = ACTIONS(9048), + [aux_sym__property_get_header_token1] = ACTIONS(9048), + [aux_sym_event_declaration_token1] = ACTIONS(9048), + [sym_static_modifier] = ACTIONS(9048), + [sym__dim_keyword] = ACTIONS(9048), + [sym__redim_keyword] = ACTIONS(9048), + [aux_sym_get_accessor_token1] = ACTIONS(9048), + [aux_sym_set_accessor_token1] = ACTIONS(9048), + [aux_sym_const_declaration_token1] = ACTIONS(9048), + [anon_sym_LPAREN] = ACTIONS(9050), + [aux_sym_as_type_clause_token2] = ACTIONS(9048), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9048), + [aux_sym_visibility_token1] = ACTIONS(9048), + [aux_sym_visibility_token2] = ACTIONS(9048), + [aux_sym_elseif_fragment_token1] = ACTIONS(9048), + [aux_sym_else_fragment_token1] = ACTIONS(9048), + [aux_sym_select_statement_token1] = ACTIONS(9048), + [aux_sym__for_header_token1] = ACTIONS(9048), + [aux_sym_do_statement_token1] = ACTIONS(9048), + [aux_sym_do_condition_token1] = ACTIONS(9048), + [aux_sym_with_statement_token1] = ACTIONS(9048), + [aux_sym_exit_statement_token1] = ACTIONS(9048), + [sym_end_statement] = ACTIONS(9050), + [aux_sym_on_goto_statement_token1] = ACTIONS(9048), + [aux_sym_on_goto_statement_token2] = ACTIONS(9048), + [aux_sym_on_error_statement_token2] = ACTIONS(9048), + [sym__ambiguous_redim_statement] = ACTIONS(9050), + [aux_sym_erase_statement_token1] = ACTIONS(9048), + [aux_sym_open_statement_token1] = ACTIONS(9048), + [aux_sym_file_mode_token2] = ACTIONS(9048), + [aux_sym_file_access_token2] = ACTIONS(9048), + [aux_sym_file_lock_token2] = ACTIONS(9048), + [aux_sym_print_statement_token1] = ACTIONS(9048), + [anon_sym_PLUS] = ACTIONS(9050), + [anon_sym_DASH] = ACTIONS(9048), + [anon_sym_QMARK] = ACTIONS(9050), + [aux_sym_close_statement_token1] = ACTIONS(9048), + [aux_sym_put_statement_token1] = ACTIONS(9048), + [aux_sym_unlock_statement_token1] = ACTIONS(9048), + [aux_sym_seek_statement_token1] = ACTIONS(9048), + [sym_reset_statement] = ACTIONS(9048), + [aux_sym_raise_event_statement_token1] = ACTIONS(9048), + [sym_stop_statement] = ACTIONS(9048), + [sym_beep_statement] = ACTIONS(9048), + [aux_sym_unload_statement_token1] = ACTIONS(9048), + [aux_sym_def_type_statement_token1] = ACTIONS(9048), + [aux_sym_def_type_statement_token2] = ACTIONS(9048), + [aux_sym_def_type_statement_token3] = ACTIONS(9048), + [aux_sym_def_type_statement_token4] = ACTIONS(9048), + [aux_sym_def_type_statement_token5] = ACTIONS(9048), + [aux_sym_def_type_statement_token6] = ACTIONS(9048), + [aux_sym_def_type_statement_token7] = ACTIONS(9048), + [aux_sym_def_type_statement_token8] = ACTIONS(9048), + [aux_sym_def_type_statement_token9] = ACTIONS(9048), + [aux_sym_def_type_statement_token10] = ACTIONS(9048), + [aux_sym_def_type_statement_token11] = ACTIONS(9048), + [aux_sym_def_type_statement_token12] = ACTIONS(9048), + [aux_sym_def_type_statement_token13] = ACTIONS(9048), + [aux_sym_def_type_statement_token14] = ACTIONS(9048), + [aux_sym_call_statement_token1] = ACTIONS(9048), + [sym__ambiguous_call_statement] = ACTIONS(9048), + [aux_sym_addressof_expression_token1] = ACTIONS(9048), + [aux_sym_type_of_expression_token1] = ACTIONS(9048), + [aux_sym_unary_expression_token1] = ACTIONS(9048), + [sym_string_literal] = ACTIONS(9050), + [sym_number_literal] = ACTIONS(9050), + [aux_sym_boolean_literal_token1] = ACTIONS(9048), + [aux_sym_boolean_literal_token2] = ACTIONS(9048), + [sym_nothing_literal] = ACTIONS(9048), + [sym_null_literal] = ACTIONS(9048), + [sym_empty_literal] = ACTIONS(9048), + [sym_date_literal] = ACTIONS(9050), + [anon_sym_POUND] = ACTIONS(9048), + }, + [STATE(3873)] = { + [sym_identifier] = ACTIONS(8620), + [sym_newline] = ACTIONS(8622), + [anon_sym_COLON] = ACTIONS(8622), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8620), + [aux_sym_frm_property_statement_token1] = ACTIONS(8620), + [anon_sym_EQ] = ACTIONS(8622), + [anon_sym_DOT] = ACTIONS(8620), + [anon_sym_BANG] = ACTIONS(8622), + [aux_sym__attribute_identifier_token1] = ACTIONS(8620), + [aux_sym_option_statement_token3] = ACTIONS(8620), + [aux_sym_type_declaration_token1] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8620), + [aux_sym_enum_declaration_token1] = ACTIONS(8620), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8620), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8620), + [aux_sym_declare_function_statement_token1] = ACTIONS(8620), + [aux_sym_preprocessor_const_token1] = ACTIONS(8620), + [aux_sym__property_get_header_token1] = ACTIONS(8620), + [aux_sym_event_declaration_token1] = ACTIONS(8620), + [sym_static_modifier] = ACTIONS(8620), + [sym__dim_keyword] = ACTIONS(8620), + [sym__redim_keyword] = ACTIONS(8620), + [aux_sym_get_accessor_token1] = ACTIONS(8620), + [aux_sym_set_accessor_token1] = ACTIONS(8620), + [anon_sym_COMMA] = ACTIONS(8622), + [aux_sym_const_declaration_token1] = ACTIONS(8620), + [anon_sym_LPAREN] = ACTIONS(8622), + [aux_sym_as_type_clause_token2] = ACTIONS(8620), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8620), + [aux_sym_visibility_token1] = ACTIONS(8620), + [aux_sym_visibility_token2] = ACTIONS(8620), + [aux_sym_elseif_fragment_token1] = ACTIONS(8620), + [aux_sym_else_fragment_token1] = ACTIONS(8620), + [aux_sym_select_statement_token1] = ACTIONS(8620), + [aux_sym__for_header_token1] = ACTIONS(8620), + [aux_sym_do_statement_token1] = ACTIONS(8620), + [aux_sym_do_condition_token1] = ACTIONS(8620), + [aux_sym_with_statement_token1] = ACTIONS(8620), + [aux_sym_exit_statement_token1] = ACTIONS(8620), + [sym_end_statement] = ACTIONS(8622), + [aux_sym_on_goto_statement_token1] = ACTIONS(8620), + [aux_sym_on_goto_statement_token2] = ACTIONS(8620), + [aux_sym_on_error_statement_token2] = ACTIONS(8620), + [sym__ambiguous_redim_statement] = ACTIONS(8622), + [aux_sym_erase_statement_token1] = ACTIONS(8620), + [aux_sym_open_statement_token1] = ACTIONS(8620), + [aux_sym_file_mode_token2] = ACTIONS(8620), + [aux_sym_file_access_token2] = ACTIONS(8620), + [aux_sym_file_lock_token2] = ACTIONS(8620), + [aux_sym_print_statement_token1] = ACTIONS(8620), + [anon_sym_PLUS] = ACTIONS(8622), + [anon_sym_DASH] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(8622), + [aux_sym_close_statement_token1] = ACTIONS(8620), + [aux_sym_put_statement_token1] = ACTIONS(8620), + [aux_sym_unlock_statement_token1] = ACTIONS(8620), + [aux_sym_seek_statement_token1] = ACTIONS(8620), + [sym_reset_statement] = ACTIONS(8620), + [aux_sym_raise_event_statement_token1] = ACTIONS(8620), + [sym_stop_statement] = ACTIONS(8620), + [sym_beep_statement] = ACTIONS(8620), + [aux_sym_unload_statement_token1] = ACTIONS(8620), + [aux_sym_def_type_statement_token1] = ACTIONS(8620), + [aux_sym_def_type_statement_token2] = ACTIONS(8620), + [aux_sym_def_type_statement_token3] = ACTIONS(8620), + [aux_sym_def_type_statement_token4] = ACTIONS(8620), + [aux_sym_def_type_statement_token5] = ACTIONS(8620), + [aux_sym_def_type_statement_token6] = ACTIONS(8620), + [aux_sym_def_type_statement_token7] = ACTIONS(8620), + [aux_sym_def_type_statement_token8] = ACTIONS(8620), + [aux_sym_def_type_statement_token9] = ACTIONS(8620), + [aux_sym_def_type_statement_token10] = ACTIONS(8620), + [aux_sym_def_type_statement_token11] = ACTIONS(8620), + [aux_sym_def_type_statement_token12] = ACTIONS(8620), + [aux_sym_def_type_statement_token13] = ACTIONS(8620), + [aux_sym_def_type_statement_token14] = ACTIONS(8620), + [aux_sym_call_statement_token1] = ACTIONS(8620), + [sym__ambiguous_call_statement] = ACTIONS(8620), + [aux_sym_addressof_expression_token1] = ACTIONS(8620), + [aux_sym_type_of_expression_token1] = ACTIONS(8620), + [aux_sym_unary_expression_token1] = ACTIONS(8620), + [sym_string_literal] = ACTIONS(8622), + [sym_number_literal] = ACTIONS(8622), + [aux_sym_boolean_literal_token1] = ACTIONS(8620), + [aux_sym_boolean_literal_token2] = ACTIONS(8620), + [sym_nothing_literal] = ACTIONS(8620), + [sym_null_literal] = ACTIONS(8620), + [sym_empty_literal] = ACTIONS(8620), + [sym_date_literal] = ACTIONS(8622), + [anon_sym_POUND] = ACTIONS(8620), + }, + [STATE(3874)] = { + [sym_identifier] = ACTIONS(9052), + [sym_newline] = ACTIONS(9054), + [anon_sym_COLON] = ACTIONS(9054), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9052), + [aux_sym_frm_property_statement_token1] = ACTIONS(9052), + [anon_sym_DOT] = ACTIONS(9052), + [anon_sym_BANG] = ACTIONS(9054), + [aux_sym__attribute_identifier_token1] = ACTIONS(9052), + [aux_sym_option_statement_token3] = ACTIONS(9052), + [aux_sym_type_declaration_token1] = ACTIONS(9052), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9052), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9052), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9052), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9052), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9052), + [aux_sym_enum_declaration_token1] = ACTIONS(9052), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9052), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9052), + [aux_sym_declare_function_statement_token1] = ACTIONS(9052), + [aux_sym_preprocessor_const_token1] = ACTIONS(9052), + [aux_sym__property_get_header_token1] = ACTIONS(9052), + [aux_sym_event_declaration_token1] = ACTIONS(9052), + [sym_static_modifier] = ACTIONS(9052), + [sym__dim_keyword] = ACTIONS(9052), + [sym__redim_keyword] = ACTIONS(9052), + [aux_sym_get_accessor_token1] = ACTIONS(9052), + [aux_sym_set_accessor_token1] = ACTIONS(9052), + [aux_sym_const_declaration_token1] = ACTIONS(9052), + [anon_sym_LPAREN] = ACTIONS(9054), + [aux_sym_as_type_clause_token2] = ACTIONS(9052), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9052), + [aux_sym_visibility_token1] = ACTIONS(9052), + [aux_sym_visibility_token2] = ACTIONS(9052), + [aux_sym_elseif_fragment_token1] = ACTIONS(9052), + [aux_sym_else_fragment_token1] = ACTIONS(9052), + [aux_sym_select_statement_token1] = ACTIONS(9052), + [aux_sym__for_header_token1] = ACTIONS(9052), + [aux_sym_do_statement_token1] = ACTIONS(9052), + [aux_sym_do_condition_token1] = ACTIONS(9052), + [aux_sym_with_statement_token1] = ACTIONS(9052), + [aux_sym_exit_statement_token1] = ACTIONS(9052), + [sym_end_statement] = ACTIONS(9054), + [aux_sym_on_goto_statement_token1] = ACTIONS(9052), + [aux_sym_on_goto_statement_token2] = ACTIONS(9052), + [aux_sym_on_error_statement_token2] = ACTIONS(9052), + [sym__ambiguous_redim_statement] = ACTIONS(9054), + [aux_sym_erase_statement_token1] = ACTIONS(9052), + [aux_sym_open_statement_token1] = ACTIONS(9052), + [aux_sym_file_mode_token2] = ACTIONS(9052), + [aux_sym_file_access_token2] = ACTIONS(9052), + [aux_sym_file_lock_token2] = ACTIONS(9052), + [aux_sym_print_statement_token1] = ACTIONS(9052), + [anon_sym_PLUS] = ACTIONS(9054), + [anon_sym_DASH] = ACTIONS(9052), + [anon_sym_QMARK] = ACTIONS(9054), + [aux_sym_close_statement_token1] = ACTIONS(9052), + [aux_sym_put_statement_token1] = ACTIONS(9052), + [aux_sym_unlock_statement_token1] = ACTIONS(9052), + [aux_sym_seek_statement_token1] = ACTIONS(9052), + [sym_reset_statement] = ACTIONS(9052), + [aux_sym_raise_event_statement_token1] = ACTIONS(9052), + [sym_stop_statement] = ACTIONS(9052), + [sym_beep_statement] = ACTIONS(9052), + [aux_sym_unload_statement_token1] = ACTIONS(9052), + [aux_sym_def_type_statement_token1] = ACTIONS(9052), + [aux_sym_def_type_statement_token2] = ACTIONS(9052), + [aux_sym_def_type_statement_token3] = ACTIONS(9052), + [aux_sym_def_type_statement_token4] = ACTIONS(9052), + [aux_sym_def_type_statement_token5] = ACTIONS(9052), + [aux_sym_def_type_statement_token6] = ACTIONS(9052), + [aux_sym_def_type_statement_token7] = ACTIONS(9052), + [aux_sym_def_type_statement_token8] = ACTIONS(9052), + [aux_sym_def_type_statement_token9] = ACTIONS(9052), + [aux_sym_def_type_statement_token10] = ACTIONS(9052), + [aux_sym_def_type_statement_token11] = ACTIONS(9052), + [aux_sym_def_type_statement_token12] = ACTIONS(9052), + [aux_sym_def_type_statement_token13] = ACTIONS(9052), + [aux_sym_def_type_statement_token14] = ACTIONS(9052), + [aux_sym_call_statement_token1] = ACTIONS(9052), + [sym__ambiguous_call_statement] = ACTIONS(9052), + [aux_sym_addressof_expression_token1] = ACTIONS(9052), + [aux_sym_type_of_expression_token1] = ACTIONS(9052), + [aux_sym_unary_expression_token1] = ACTIONS(9052), + [sym_string_literal] = ACTIONS(9054), + [sym_number_literal] = ACTIONS(9054), + [aux_sym_boolean_literal_token1] = ACTIONS(9052), + [aux_sym_boolean_literal_token2] = ACTIONS(9052), + [sym_nothing_literal] = ACTIONS(9052), + [sym_null_literal] = ACTIONS(9052), + [sym_empty_literal] = ACTIONS(9052), + [sym_date_literal] = ACTIONS(9054), + [anon_sym_POUND] = ACTIONS(9052), + }, + [STATE(3875)] = { + [sym_parameter_list] = STATE(4464), + [sym_identifier] = ACTIONS(8120), + [sym_newline] = ACTIONS(8122), + [anon_sym_COLON] = ACTIONS(8122), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8120), + [aux_sym_frm_property_statement_token1] = ACTIONS(8120), + [anon_sym_DOT] = ACTIONS(8120), + [anon_sym_BANG] = ACTIONS(8122), + [aux_sym__attribute_identifier_token1] = ACTIONS(8120), + [aux_sym_option_statement_token3] = ACTIONS(8120), + [aux_sym_type_declaration_token1] = ACTIONS(8120), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8120), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8120), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8120), + [aux_sym_enum_declaration_token1] = ACTIONS(8120), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8120), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8120), + [aux_sym_declare_sub_statement_token4] = ACTIONS(9056), + [aux_sym_declare_function_statement_token1] = ACTIONS(8120), + [aux_sym_preprocessor_const_token1] = ACTIONS(8120), + [aux_sym__property_get_header_token1] = ACTIONS(8120), + [aux_sym_event_declaration_token1] = ACTIONS(8120), + [sym_static_modifier] = ACTIONS(8120), + [sym__dim_keyword] = ACTIONS(8120), + [sym__redim_keyword] = ACTIONS(8120), + [aux_sym_get_accessor_token1] = ACTIONS(8120), + [aux_sym_set_accessor_token1] = ACTIONS(8120), + [aux_sym_const_declaration_token1] = ACTIONS(8120), + [anon_sym_LPAREN] = ACTIONS(9014), + [aux_sym_as_type_clause_token2] = ACTIONS(8120), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8120), + [aux_sym_visibility_token1] = ACTIONS(8120), + [aux_sym_visibility_token2] = ACTIONS(8120), + [aux_sym_elseif_fragment_token1] = ACTIONS(8120), + [aux_sym_else_fragment_token1] = ACTIONS(8120), + [aux_sym_select_statement_token1] = ACTIONS(8120), + [aux_sym__for_header_token1] = ACTIONS(8120), + [aux_sym_do_statement_token1] = ACTIONS(8120), + [aux_sym_do_condition_token1] = ACTIONS(8120), + [aux_sym_with_statement_token1] = ACTIONS(8120), + [aux_sym_exit_statement_token1] = ACTIONS(8120), + [sym_end_statement] = ACTIONS(8122), + [aux_sym_on_goto_statement_token1] = ACTIONS(8120), + [aux_sym_on_goto_statement_token2] = ACTIONS(8120), + [aux_sym_on_error_statement_token2] = ACTIONS(8120), + [sym__ambiguous_redim_statement] = ACTIONS(8122), + [aux_sym_erase_statement_token1] = ACTIONS(8120), + [aux_sym_open_statement_token1] = ACTIONS(8120), + [aux_sym_file_mode_token2] = ACTIONS(8120), + [aux_sym_file_access_token2] = ACTIONS(8120), + [aux_sym_file_lock_token2] = ACTIONS(8120), + [aux_sym_print_statement_token1] = ACTIONS(8120), + [anon_sym_PLUS] = ACTIONS(8122), + [anon_sym_DASH] = ACTIONS(8120), + [anon_sym_QMARK] = ACTIONS(8122), + [aux_sym_close_statement_token1] = ACTIONS(8120), + [aux_sym_put_statement_token1] = ACTIONS(8120), + [aux_sym_unlock_statement_token1] = ACTIONS(8120), + [aux_sym_seek_statement_token1] = ACTIONS(8120), + [sym_reset_statement] = ACTIONS(8120), + [aux_sym_raise_event_statement_token1] = ACTIONS(8120), + [sym_stop_statement] = ACTIONS(8120), + [sym_beep_statement] = ACTIONS(8120), + [aux_sym_unload_statement_token1] = ACTIONS(8120), + [aux_sym_def_type_statement_token1] = ACTIONS(8120), + [aux_sym_def_type_statement_token2] = ACTIONS(8120), + [aux_sym_def_type_statement_token3] = ACTIONS(8120), + [aux_sym_def_type_statement_token4] = ACTIONS(8120), + [aux_sym_def_type_statement_token5] = ACTIONS(8120), + [aux_sym_def_type_statement_token6] = ACTIONS(8120), + [aux_sym_def_type_statement_token7] = ACTIONS(8120), + [aux_sym_def_type_statement_token8] = ACTIONS(8120), + [aux_sym_def_type_statement_token9] = ACTIONS(8120), + [aux_sym_def_type_statement_token10] = ACTIONS(8120), + [aux_sym_def_type_statement_token11] = ACTIONS(8120), + [aux_sym_def_type_statement_token12] = ACTIONS(8120), + [aux_sym_def_type_statement_token13] = ACTIONS(8120), + [aux_sym_def_type_statement_token14] = ACTIONS(8120), + [aux_sym_call_statement_token1] = ACTIONS(8120), + [sym__ambiguous_call_statement] = ACTIONS(8120), + [aux_sym_addressof_expression_token1] = ACTIONS(8120), + [aux_sym_type_of_expression_token1] = ACTIONS(8120), + [aux_sym_unary_expression_token1] = ACTIONS(8120), + [sym_string_literal] = ACTIONS(8122), + [sym_number_literal] = ACTIONS(8122), + [aux_sym_boolean_literal_token1] = ACTIONS(8120), + [aux_sym_boolean_literal_token2] = ACTIONS(8120), + [sym_nothing_literal] = ACTIONS(8120), + [sym_null_literal] = ACTIONS(8120), + [sym_empty_literal] = ACTIONS(8120), + [sym_date_literal] = ACTIONS(8122), + [anon_sym_POUND] = ACTIONS(8120), + }, + [STATE(3876)] = { + [sym_identifier] = ACTIONS(9058), + [sym_newline] = ACTIONS(9060), + [anon_sym_COLON] = ACTIONS(9060), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9058), + [aux_sym_frm_property_statement_token1] = ACTIONS(9058), + [anon_sym_DOT] = ACTIONS(9058), + [anon_sym_BANG] = ACTIONS(9060), + [aux_sym__attribute_identifier_token1] = ACTIONS(9058), + [aux_sym_option_statement_token3] = ACTIONS(9058), + [aux_sym_type_declaration_token1] = ACTIONS(9058), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9058), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9058), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9058), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9058), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9058), + [aux_sym_enum_declaration_token1] = ACTIONS(9058), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9058), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9058), + [aux_sym_declare_function_statement_token1] = ACTIONS(9058), + [aux_sym_preprocessor_const_token1] = ACTIONS(9058), + [aux_sym__property_get_header_token1] = ACTIONS(9058), + [aux_sym_event_declaration_token1] = ACTIONS(9058), + [sym_static_modifier] = ACTIONS(9058), + [sym__dim_keyword] = ACTIONS(9058), + [sym__redim_keyword] = ACTIONS(9058), + [aux_sym_get_accessor_token1] = ACTIONS(9058), + [aux_sym_set_accessor_token1] = ACTIONS(9058), + [aux_sym_const_declaration_token1] = ACTIONS(9058), + [anon_sym_LPAREN] = ACTIONS(9060), + [aux_sym_as_type_clause_token2] = ACTIONS(9058), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9058), + [aux_sym_visibility_token1] = ACTIONS(9058), + [aux_sym_visibility_token2] = ACTIONS(9058), + [aux_sym_elseif_fragment_token1] = ACTIONS(9058), + [aux_sym_else_fragment_token1] = ACTIONS(9058), + [aux_sym_select_statement_token1] = ACTIONS(9058), + [aux_sym__for_header_token1] = ACTIONS(9058), + [aux_sym_do_statement_token1] = ACTIONS(9058), + [aux_sym_do_condition_token1] = ACTIONS(9058), + [aux_sym_with_statement_token1] = ACTIONS(9058), + [aux_sym_exit_statement_token1] = ACTIONS(9058), + [sym_end_statement] = ACTIONS(9060), + [aux_sym_on_goto_statement_token1] = ACTIONS(9058), + [aux_sym_on_goto_statement_token2] = ACTIONS(9058), + [aux_sym_on_error_statement_token2] = ACTIONS(9058), + [sym__ambiguous_redim_statement] = ACTIONS(9060), + [aux_sym_erase_statement_token1] = ACTIONS(9058), + [aux_sym_open_statement_token1] = ACTIONS(9058), + [aux_sym_file_mode_token2] = ACTIONS(9058), + [aux_sym_file_access_token2] = ACTIONS(9058), + [aux_sym_file_lock_token2] = ACTIONS(9058), + [aux_sym_print_statement_token1] = ACTIONS(9058), + [anon_sym_PLUS] = ACTIONS(9060), + [anon_sym_DASH] = ACTIONS(9058), + [anon_sym_QMARK] = ACTIONS(9060), + [aux_sym_close_statement_token1] = ACTIONS(9058), + [aux_sym_put_statement_token1] = ACTIONS(9058), + [aux_sym_unlock_statement_token1] = ACTIONS(9058), + [aux_sym_seek_statement_token1] = ACTIONS(9058), + [sym_reset_statement] = ACTIONS(9058), + [aux_sym_raise_event_statement_token1] = ACTIONS(9058), + [sym_stop_statement] = ACTIONS(9058), + [sym_beep_statement] = ACTIONS(9058), + [aux_sym_unload_statement_token1] = ACTIONS(9058), + [aux_sym_def_type_statement_token1] = ACTIONS(9058), + [aux_sym_def_type_statement_token2] = ACTIONS(9058), + [aux_sym_def_type_statement_token3] = ACTIONS(9058), + [aux_sym_def_type_statement_token4] = ACTIONS(9058), + [aux_sym_def_type_statement_token5] = ACTIONS(9058), + [aux_sym_def_type_statement_token6] = ACTIONS(9058), + [aux_sym_def_type_statement_token7] = ACTIONS(9058), + [aux_sym_def_type_statement_token8] = ACTIONS(9058), + [aux_sym_def_type_statement_token9] = ACTIONS(9058), + [aux_sym_def_type_statement_token10] = ACTIONS(9058), + [aux_sym_def_type_statement_token11] = ACTIONS(9058), + [aux_sym_def_type_statement_token12] = ACTIONS(9058), + [aux_sym_def_type_statement_token13] = ACTIONS(9058), + [aux_sym_def_type_statement_token14] = ACTIONS(9058), + [aux_sym_call_statement_token1] = ACTIONS(9058), + [sym__ambiguous_call_statement] = ACTIONS(9058), + [aux_sym_addressof_expression_token1] = ACTIONS(9058), + [aux_sym_type_of_expression_token1] = ACTIONS(9058), + [aux_sym_unary_expression_token1] = ACTIONS(9058), + [sym_string_literal] = ACTIONS(9060), + [sym_number_literal] = ACTIONS(9060), + [aux_sym_boolean_literal_token1] = ACTIONS(9058), + [aux_sym_boolean_literal_token2] = ACTIONS(9058), + [sym_nothing_literal] = ACTIONS(9058), + [sym_null_literal] = ACTIONS(9058), + [sym_empty_literal] = ACTIONS(9058), + [sym_date_literal] = ACTIONS(9060), + [anon_sym_POUND] = ACTIONS(9058), + }, + [STATE(3877)] = { + [sym_identifier] = ACTIONS(9062), + [sym_newline] = ACTIONS(9064), + [anon_sym_COLON] = ACTIONS(9064), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9062), + [aux_sym_frm_property_statement_token1] = ACTIONS(9062), + [anon_sym_DOT] = ACTIONS(9062), + [anon_sym_BANG] = ACTIONS(9064), + [aux_sym__attribute_identifier_token1] = ACTIONS(9062), + [aux_sym_option_statement_token3] = ACTIONS(9062), + [aux_sym_type_declaration_token1] = ACTIONS(9062), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9062), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9062), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9062), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9062), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9062), + [aux_sym_enum_declaration_token1] = ACTIONS(9062), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9062), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9062), + [aux_sym_declare_function_statement_token1] = ACTIONS(9062), + [aux_sym_preprocessor_const_token1] = ACTIONS(9062), + [aux_sym__property_get_header_token1] = ACTIONS(9062), + [aux_sym_event_declaration_token1] = ACTIONS(9062), + [sym_static_modifier] = ACTIONS(9062), + [sym__dim_keyword] = ACTIONS(9062), + [sym__redim_keyword] = ACTIONS(9062), + [aux_sym_get_accessor_token1] = ACTIONS(9062), + [aux_sym_set_accessor_token1] = ACTIONS(9062), + [aux_sym_const_declaration_token1] = ACTIONS(9062), + [anon_sym_LPAREN] = ACTIONS(9064), + [aux_sym_as_type_clause_token2] = ACTIONS(9062), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9062), + [aux_sym_visibility_token1] = ACTIONS(9062), + [aux_sym_visibility_token2] = ACTIONS(9062), + [aux_sym_elseif_fragment_token1] = ACTIONS(9062), + [aux_sym_else_fragment_token1] = ACTIONS(9062), + [aux_sym_select_statement_token1] = ACTIONS(9062), + [aux_sym__for_header_token1] = ACTIONS(9062), + [aux_sym_do_statement_token1] = ACTIONS(9062), + [aux_sym_do_condition_token1] = ACTIONS(9062), + [aux_sym_with_statement_token1] = ACTIONS(9062), + [aux_sym_exit_statement_token1] = ACTIONS(9062), + [sym_end_statement] = ACTIONS(9064), + [aux_sym_on_goto_statement_token1] = ACTIONS(9062), + [aux_sym_on_goto_statement_token2] = ACTIONS(9062), + [aux_sym_on_error_statement_token2] = ACTIONS(9062), + [sym__ambiguous_redim_statement] = ACTIONS(9064), + [aux_sym_erase_statement_token1] = ACTIONS(9062), + [aux_sym_open_statement_token1] = ACTIONS(9062), + [aux_sym_file_mode_token2] = ACTIONS(9062), + [aux_sym_file_access_token2] = ACTIONS(9062), + [aux_sym_file_lock_token2] = ACTIONS(9062), + [aux_sym_print_statement_token1] = ACTIONS(9062), + [anon_sym_PLUS] = ACTIONS(9064), + [anon_sym_DASH] = ACTIONS(9062), + [anon_sym_QMARK] = ACTIONS(9064), + [aux_sym_close_statement_token1] = ACTIONS(9062), + [aux_sym_put_statement_token1] = ACTIONS(9062), + [aux_sym_unlock_statement_token1] = ACTIONS(9062), + [aux_sym_seek_statement_token1] = ACTIONS(9062), + [sym_reset_statement] = ACTIONS(9062), + [aux_sym_raise_event_statement_token1] = ACTIONS(9062), + [sym_stop_statement] = ACTIONS(9062), + [sym_beep_statement] = ACTIONS(9062), + [aux_sym_unload_statement_token1] = ACTIONS(9062), + [aux_sym_def_type_statement_token1] = ACTIONS(9062), + [aux_sym_def_type_statement_token2] = ACTIONS(9062), + [aux_sym_def_type_statement_token3] = ACTIONS(9062), + [aux_sym_def_type_statement_token4] = ACTIONS(9062), + [aux_sym_def_type_statement_token5] = ACTIONS(9062), + [aux_sym_def_type_statement_token6] = ACTIONS(9062), + [aux_sym_def_type_statement_token7] = ACTIONS(9062), + [aux_sym_def_type_statement_token8] = ACTIONS(9062), + [aux_sym_def_type_statement_token9] = ACTIONS(9062), + [aux_sym_def_type_statement_token10] = ACTIONS(9062), + [aux_sym_def_type_statement_token11] = ACTIONS(9062), + [aux_sym_def_type_statement_token12] = ACTIONS(9062), + [aux_sym_def_type_statement_token13] = ACTIONS(9062), + [aux_sym_def_type_statement_token14] = ACTIONS(9062), + [aux_sym_call_statement_token1] = ACTIONS(9062), + [sym__ambiguous_call_statement] = ACTIONS(9062), + [aux_sym_addressof_expression_token1] = ACTIONS(9062), + [aux_sym_type_of_expression_token1] = ACTIONS(9062), + [aux_sym_unary_expression_token1] = ACTIONS(9062), + [sym_string_literal] = ACTIONS(9064), + [sym_number_literal] = ACTIONS(9064), + [aux_sym_boolean_literal_token1] = ACTIONS(9062), + [aux_sym_boolean_literal_token2] = ACTIONS(9062), + [sym_nothing_literal] = ACTIONS(9062), + [sym_null_literal] = ACTIONS(9062), + [sym_empty_literal] = ACTIONS(9062), + [sym_date_literal] = ACTIONS(9064), + [anon_sym_POUND] = ACTIONS(9062), + }, + [STATE(3878)] = { + [sym_as_type_clause] = STATE(4528), + [sym_identifier] = ACTIONS(8148), + [sym_newline] = ACTIONS(8150), + [anon_sym_COLON] = ACTIONS(8150), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8148), + [aux_sym_frm_property_statement_token1] = ACTIONS(8148), + [anon_sym_DOT] = ACTIONS(8148), + [anon_sym_BANG] = ACTIONS(8150), + [aux_sym__attribute_identifier_token1] = ACTIONS(8148), + [aux_sym_option_statement_token3] = ACTIONS(8148), + [aux_sym_type_declaration_token1] = ACTIONS(8148), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8148), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8148), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8148), + [aux_sym_enum_declaration_token1] = ACTIONS(8148), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8148), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8148), + [aux_sym_declare_function_statement_token1] = ACTIONS(8148), + [aux_sym_preprocessor_const_token1] = ACTIONS(8148), + [aux_sym__property_get_header_token1] = ACTIONS(8148), + [aux_sym_event_declaration_token1] = ACTIONS(8148), + [sym_static_modifier] = ACTIONS(8148), + [sym__dim_keyword] = ACTIONS(8148), + [sym__redim_keyword] = ACTIONS(8148), + [aux_sym_get_accessor_token1] = ACTIONS(8148), + [aux_sym_set_accessor_token1] = ACTIONS(8148), + [aux_sym_const_declaration_token1] = ACTIONS(8148), + [anon_sym_LPAREN] = ACTIONS(8150), + [aux_sym_as_type_clause_token1] = ACTIONS(8211), + [aux_sym_as_type_clause_token2] = ACTIONS(8148), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8148), + [aux_sym_visibility_token1] = ACTIONS(8148), + [aux_sym_visibility_token2] = ACTIONS(8148), + [aux_sym_elseif_fragment_token1] = ACTIONS(8148), + [aux_sym_else_fragment_token1] = ACTIONS(8148), + [aux_sym_select_statement_token1] = ACTIONS(8148), + [aux_sym__for_header_token1] = ACTIONS(8148), + [aux_sym_do_statement_token1] = ACTIONS(8148), + [aux_sym_do_condition_token1] = ACTIONS(8148), + [aux_sym_with_statement_token1] = ACTIONS(8148), + [aux_sym_exit_statement_token1] = ACTIONS(8148), + [sym_end_statement] = ACTIONS(8150), + [aux_sym_on_goto_statement_token1] = ACTIONS(8148), + [aux_sym_on_goto_statement_token2] = ACTIONS(8148), + [aux_sym_on_error_statement_token2] = ACTIONS(8148), + [sym__ambiguous_redim_statement] = ACTIONS(8150), + [aux_sym_erase_statement_token1] = ACTIONS(8148), + [aux_sym_open_statement_token1] = ACTIONS(8148), + [aux_sym_file_mode_token2] = ACTIONS(8148), + [aux_sym_file_access_token2] = ACTIONS(8148), + [aux_sym_file_lock_token2] = ACTIONS(8148), + [aux_sym_print_statement_token1] = ACTIONS(8148), + [anon_sym_PLUS] = ACTIONS(8150), + [anon_sym_DASH] = ACTIONS(8148), + [anon_sym_QMARK] = ACTIONS(8150), + [aux_sym_close_statement_token1] = ACTIONS(8148), + [aux_sym_put_statement_token1] = ACTIONS(8148), + [aux_sym_unlock_statement_token1] = ACTIONS(8148), + [aux_sym_seek_statement_token1] = ACTIONS(8148), + [sym_reset_statement] = ACTIONS(8148), + [aux_sym_raise_event_statement_token1] = ACTIONS(8148), + [sym_stop_statement] = ACTIONS(8148), + [sym_beep_statement] = ACTIONS(8148), + [aux_sym_unload_statement_token1] = ACTIONS(8148), + [aux_sym_def_type_statement_token1] = ACTIONS(8148), + [aux_sym_def_type_statement_token2] = ACTIONS(8148), + [aux_sym_def_type_statement_token3] = ACTIONS(8148), + [aux_sym_def_type_statement_token4] = ACTIONS(8148), + [aux_sym_def_type_statement_token5] = ACTIONS(8148), + [aux_sym_def_type_statement_token6] = ACTIONS(8148), + [aux_sym_def_type_statement_token7] = ACTIONS(8148), + [aux_sym_def_type_statement_token8] = ACTIONS(8148), + [aux_sym_def_type_statement_token9] = ACTIONS(8148), + [aux_sym_def_type_statement_token10] = ACTIONS(8148), + [aux_sym_def_type_statement_token11] = ACTIONS(8148), + [aux_sym_def_type_statement_token12] = ACTIONS(8148), + [aux_sym_def_type_statement_token13] = ACTIONS(8148), + [aux_sym_def_type_statement_token14] = ACTIONS(8148), + [aux_sym_call_statement_token1] = ACTIONS(8148), + [sym__ambiguous_call_statement] = ACTIONS(8148), + [aux_sym_addressof_expression_token1] = ACTIONS(8148), + [aux_sym_type_of_expression_token1] = ACTIONS(8148), + [aux_sym_unary_expression_token1] = ACTIONS(8148), + [sym_string_literal] = ACTIONS(8150), + [sym_number_literal] = ACTIONS(8150), + [aux_sym_boolean_literal_token1] = ACTIONS(8148), + [aux_sym_boolean_literal_token2] = ACTIONS(8148), + [sym_nothing_literal] = ACTIONS(8148), + [sym_null_literal] = ACTIONS(8148), + [sym_empty_literal] = ACTIONS(8148), + [sym_date_literal] = ACTIONS(8150), + [anon_sym_POUND] = ACTIONS(8148), + }, + [STATE(3879)] = { + [sym_identifier] = ACTIONS(9066), + [sym_newline] = ACTIONS(9068), + [anon_sym_COLON] = ACTIONS(9068), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9066), + [aux_sym_frm_property_statement_token1] = ACTIONS(9066), + [anon_sym_DOT] = ACTIONS(9066), + [anon_sym_BANG] = ACTIONS(9068), + [aux_sym__attribute_identifier_token1] = ACTIONS(9066), + [aux_sym_option_statement_token3] = ACTIONS(9066), + [aux_sym_type_declaration_token1] = ACTIONS(9066), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9066), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9066), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9066), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9066), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9066), + [aux_sym_enum_declaration_token1] = ACTIONS(9066), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9066), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9066), + [aux_sym_declare_function_statement_token1] = ACTIONS(9066), + [aux_sym_preprocessor_const_token1] = ACTIONS(9066), + [aux_sym__property_get_header_token1] = ACTIONS(9066), + [aux_sym_event_declaration_token1] = ACTIONS(9066), + [sym_static_modifier] = ACTIONS(9066), + [sym__dim_keyword] = ACTIONS(9066), + [sym__redim_keyword] = ACTIONS(9066), + [aux_sym_get_accessor_token1] = ACTIONS(9066), + [aux_sym_set_accessor_token1] = ACTIONS(9066), + [aux_sym_const_declaration_token1] = ACTIONS(9066), + [anon_sym_LPAREN] = ACTIONS(9068), + [aux_sym_as_type_clause_token2] = ACTIONS(9066), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9066), + [aux_sym_visibility_token1] = ACTIONS(9066), + [aux_sym_visibility_token2] = ACTIONS(9066), + [aux_sym_elseif_fragment_token1] = ACTIONS(9066), + [aux_sym_else_fragment_token1] = ACTIONS(9066), + [aux_sym_select_statement_token1] = ACTIONS(9066), + [aux_sym__for_header_token1] = ACTIONS(9066), + [aux_sym_do_statement_token1] = ACTIONS(9066), + [aux_sym_do_condition_token1] = ACTIONS(9066), + [aux_sym_with_statement_token1] = ACTIONS(9066), + [aux_sym_exit_statement_token1] = ACTIONS(9066), + [sym_end_statement] = ACTIONS(9068), + [aux_sym_on_goto_statement_token1] = ACTIONS(9066), + [aux_sym_on_goto_statement_token2] = ACTIONS(9066), + [aux_sym_on_error_statement_token2] = ACTIONS(9066), + [sym__ambiguous_redim_statement] = ACTIONS(9068), + [aux_sym_erase_statement_token1] = ACTIONS(9066), + [aux_sym_open_statement_token1] = ACTIONS(9066), + [aux_sym_file_mode_token2] = ACTIONS(9066), + [aux_sym_file_access_token2] = ACTIONS(9066), + [aux_sym_file_lock_token2] = ACTIONS(9066), + [aux_sym_print_statement_token1] = ACTIONS(9066), + [anon_sym_PLUS] = ACTIONS(9068), + [anon_sym_DASH] = ACTIONS(9066), + [anon_sym_QMARK] = ACTIONS(9068), + [aux_sym_close_statement_token1] = ACTIONS(9066), + [aux_sym_put_statement_token1] = ACTIONS(9066), + [aux_sym_unlock_statement_token1] = ACTIONS(9066), + [aux_sym_seek_statement_token1] = ACTIONS(9066), + [sym_reset_statement] = ACTIONS(9066), + [aux_sym_raise_event_statement_token1] = ACTIONS(9066), + [sym_stop_statement] = ACTIONS(9066), + [sym_beep_statement] = ACTIONS(9066), + [aux_sym_unload_statement_token1] = ACTIONS(9066), + [aux_sym_def_type_statement_token1] = ACTIONS(9066), + [aux_sym_def_type_statement_token2] = ACTIONS(9066), + [aux_sym_def_type_statement_token3] = ACTIONS(9066), + [aux_sym_def_type_statement_token4] = ACTIONS(9066), + [aux_sym_def_type_statement_token5] = ACTIONS(9066), + [aux_sym_def_type_statement_token6] = ACTIONS(9066), + [aux_sym_def_type_statement_token7] = ACTIONS(9066), + [aux_sym_def_type_statement_token8] = ACTIONS(9066), + [aux_sym_def_type_statement_token9] = ACTIONS(9066), + [aux_sym_def_type_statement_token10] = ACTIONS(9066), + [aux_sym_def_type_statement_token11] = ACTIONS(9066), + [aux_sym_def_type_statement_token12] = ACTIONS(9066), + [aux_sym_def_type_statement_token13] = ACTIONS(9066), + [aux_sym_def_type_statement_token14] = ACTIONS(9066), + [aux_sym_call_statement_token1] = ACTIONS(9066), + [sym__ambiguous_call_statement] = ACTIONS(9066), + [aux_sym_addressof_expression_token1] = ACTIONS(9066), + [aux_sym_type_of_expression_token1] = ACTIONS(9066), + [aux_sym_unary_expression_token1] = ACTIONS(9066), + [sym_string_literal] = ACTIONS(9068), + [sym_number_literal] = ACTIONS(9068), + [aux_sym_boolean_literal_token1] = ACTIONS(9066), + [aux_sym_boolean_literal_token2] = ACTIONS(9066), + [sym_nothing_literal] = ACTIONS(9066), + [sym_null_literal] = ACTIONS(9066), + [sym_empty_literal] = ACTIONS(9066), + [sym_date_literal] = ACTIONS(9068), + [anon_sym_POUND] = ACTIONS(9066), + }, + [STATE(3880)] = { + [sym_as_type_clause] = STATE(4544), + [sym_identifier] = ACTIONS(8316), + [sym_newline] = ACTIONS(8318), + [anon_sym_COLON] = ACTIONS(8318), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8316), + [aux_sym_frm_property_statement_token1] = ACTIONS(8316), + [anon_sym_DOT] = ACTIONS(8316), + [anon_sym_BANG] = ACTIONS(8318), + [aux_sym__attribute_identifier_token1] = ACTIONS(8316), + [aux_sym_option_statement_token3] = ACTIONS(8316), + [aux_sym_type_declaration_token1] = ACTIONS(8316), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8316), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8316), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8316), + [aux_sym_enum_declaration_token1] = ACTIONS(8316), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8316), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8316), + [aux_sym_declare_function_statement_token1] = ACTIONS(8316), + [aux_sym_preprocessor_const_token1] = ACTIONS(8316), + [aux_sym__property_get_header_token1] = ACTIONS(8316), + [aux_sym_event_declaration_token1] = ACTIONS(8316), + [sym_static_modifier] = ACTIONS(8316), + [sym__dim_keyword] = ACTIONS(8316), + [sym__redim_keyword] = ACTIONS(8316), + [aux_sym_get_accessor_token1] = ACTIONS(8316), + [aux_sym_set_accessor_token1] = ACTIONS(8316), + [aux_sym_const_declaration_token1] = ACTIONS(8316), + [anon_sym_LPAREN] = ACTIONS(8318), + [aux_sym_as_type_clause_token1] = ACTIONS(8211), + [aux_sym_as_type_clause_token2] = ACTIONS(8316), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8316), + [aux_sym_visibility_token1] = ACTIONS(8316), + [aux_sym_visibility_token2] = ACTIONS(8316), + [aux_sym_elseif_fragment_token1] = ACTIONS(8316), + [aux_sym_else_fragment_token1] = ACTIONS(8316), + [aux_sym_select_statement_token1] = ACTIONS(8316), + [aux_sym__for_header_token1] = ACTIONS(8316), + [aux_sym_do_statement_token1] = ACTIONS(8316), + [aux_sym_do_condition_token1] = ACTIONS(8316), + [aux_sym_with_statement_token1] = ACTIONS(8316), + [aux_sym_exit_statement_token1] = ACTIONS(8316), + [sym_end_statement] = ACTIONS(8318), + [aux_sym_on_goto_statement_token1] = ACTIONS(8316), + [aux_sym_on_goto_statement_token2] = ACTIONS(8316), + [aux_sym_on_error_statement_token2] = ACTIONS(8316), + [sym__ambiguous_redim_statement] = ACTIONS(8318), + [aux_sym_erase_statement_token1] = ACTIONS(8316), + [aux_sym_open_statement_token1] = ACTIONS(8316), + [aux_sym_file_mode_token2] = ACTIONS(8316), + [aux_sym_file_access_token2] = ACTIONS(8316), + [aux_sym_file_lock_token2] = ACTIONS(8316), + [aux_sym_print_statement_token1] = ACTIONS(8316), + [anon_sym_PLUS] = ACTIONS(8318), + [anon_sym_DASH] = ACTIONS(8316), + [anon_sym_QMARK] = ACTIONS(8318), + [aux_sym_close_statement_token1] = ACTIONS(8316), + [aux_sym_put_statement_token1] = ACTIONS(8316), + [aux_sym_unlock_statement_token1] = ACTIONS(8316), + [aux_sym_seek_statement_token1] = ACTIONS(8316), + [sym_reset_statement] = ACTIONS(8316), + [aux_sym_raise_event_statement_token1] = ACTIONS(8316), + [sym_stop_statement] = ACTIONS(8316), + [sym_beep_statement] = ACTIONS(8316), + [aux_sym_unload_statement_token1] = ACTIONS(8316), + [aux_sym_def_type_statement_token1] = ACTIONS(8316), + [aux_sym_def_type_statement_token2] = ACTIONS(8316), + [aux_sym_def_type_statement_token3] = ACTIONS(8316), + [aux_sym_def_type_statement_token4] = ACTIONS(8316), + [aux_sym_def_type_statement_token5] = ACTIONS(8316), + [aux_sym_def_type_statement_token6] = ACTIONS(8316), + [aux_sym_def_type_statement_token7] = ACTIONS(8316), + [aux_sym_def_type_statement_token8] = ACTIONS(8316), + [aux_sym_def_type_statement_token9] = ACTIONS(8316), + [aux_sym_def_type_statement_token10] = ACTIONS(8316), + [aux_sym_def_type_statement_token11] = ACTIONS(8316), + [aux_sym_def_type_statement_token12] = ACTIONS(8316), + [aux_sym_def_type_statement_token13] = ACTIONS(8316), + [aux_sym_def_type_statement_token14] = ACTIONS(8316), + [aux_sym_call_statement_token1] = ACTIONS(8316), + [sym__ambiguous_call_statement] = ACTIONS(8316), + [aux_sym_addressof_expression_token1] = ACTIONS(8316), + [aux_sym_type_of_expression_token1] = ACTIONS(8316), + [aux_sym_unary_expression_token1] = ACTIONS(8316), + [sym_string_literal] = ACTIONS(8318), + [sym_number_literal] = ACTIONS(8318), + [aux_sym_boolean_literal_token1] = ACTIONS(8316), + [aux_sym_boolean_literal_token2] = ACTIONS(8316), + [sym_nothing_literal] = ACTIONS(8316), + [sym_null_literal] = ACTIONS(8316), + [sym_empty_literal] = ACTIONS(8316), + [sym_date_literal] = ACTIONS(8318), + [anon_sym_POUND] = ACTIONS(8316), + }, + [STATE(3881)] = { + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_declaration_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_enum_declaration_token1] = ACTIONS(7949), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7949), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7949), + [aux_sym_declare_function_statement_token1] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [aux_sym__property_get_header_token1] = ACTIONS(7949), + [aux_sym_event_declaration_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(7951), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(3882)] = { + [sym_parameter_list] = STATE(4547), + [sym_identifier] = ACTIONS(8326), + [sym_newline] = ACTIONS(8328), + [anon_sym_COLON] = ACTIONS(8328), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8326), + [aux_sym_frm_property_statement_token1] = ACTIONS(8326), + [anon_sym_DOT] = ACTIONS(8326), + [anon_sym_BANG] = ACTIONS(8328), + [aux_sym__attribute_identifier_token1] = ACTIONS(8326), + [aux_sym_option_statement_token3] = ACTIONS(8326), + [aux_sym_type_declaration_token1] = ACTIONS(8326), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8326), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8326), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8326), + [aux_sym_enum_declaration_token1] = ACTIONS(8326), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8326), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8326), + [aux_sym_declare_sub_statement_token4] = ACTIONS(9070), + [aux_sym_declare_function_statement_token1] = ACTIONS(8326), + [aux_sym_preprocessor_const_token1] = ACTIONS(8326), + [aux_sym__property_get_header_token1] = ACTIONS(8326), + [aux_sym_event_declaration_token1] = ACTIONS(8326), + [sym_static_modifier] = ACTIONS(8326), + [sym__dim_keyword] = ACTIONS(8326), + [sym__redim_keyword] = ACTIONS(8326), + [aux_sym_get_accessor_token1] = ACTIONS(8326), + [aux_sym_set_accessor_token1] = ACTIONS(8326), + [aux_sym_const_declaration_token1] = ACTIONS(8326), + [anon_sym_LPAREN] = ACTIONS(9014), + [aux_sym_as_type_clause_token2] = ACTIONS(8326), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8326), + [aux_sym_visibility_token1] = ACTIONS(8326), + [aux_sym_visibility_token2] = ACTIONS(8326), + [aux_sym_elseif_fragment_token1] = ACTIONS(8326), + [aux_sym_else_fragment_token1] = ACTIONS(8326), + [aux_sym_select_statement_token1] = ACTIONS(8326), + [aux_sym__for_header_token1] = ACTIONS(8326), + [aux_sym_do_statement_token1] = ACTIONS(8326), + [aux_sym_do_condition_token1] = ACTIONS(8326), + [aux_sym_with_statement_token1] = ACTIONS(8326), + [aux_sym_exit_statement_token1] = ACTIONS(8326), + [sym_end_statement] = ACTIONS(8328), + [aux_sym_on_goto_statement_token1] = ACTIONS(8326), + [aux_sym_on_goto_statement_token2] = ACTIONS(8326), + [aux_sym_on_error_statement_token2] = ACTIONS(8326), + [sym__ambiguous_redim_statement] = ACTIONS(8328), + [aux_sym_erase_statement_token1] = ACTIONS(8326), + [aux_sym_open_statement_token1] = ACTIONS(8326), + [aux_sym_file_mode_token2] = ACTIONS(8326), + [aux_sym_file_access_token2] = ACTIONS(8326), + [aux_sym_file_lock_token2] = ACTIONS(8326), + [aux_sym_print_statement_token1] = ACTIONS(8326), + [anon_sym_PLUS] = ACTIONS(8328), + [anon_sym_DASH] = ACTIONS(8326), + [anon_sym_QMARK] = ACTIONS(8328), + [aux_sym_close_statement_token1] = ACTIONS(8326), + [aux_sym_put_statement_token1] = ACTIONS(8326), + [aux_sym_unlock_statement_token1] = ACTIONS(8326), + [aux_sym_seek_statement_token1] = ACTIONS(8326), + [sym_reset_statement] = ACTIONS(8326), + [aux_sym_raise_event_statement_token1] = ACTIONS(8326), + [sym_stop_statement] = ACTIONS(8326), + [sym_beep_statement] = ACTIONS(8326), + [aux_sym_unload_statement_token1] = ACTIONS(8326), + [aux_sym_def_type_statement_token1] = ACTIONS(8326), + [aux_sym_def_type_statement_token2] = ACTIONS(8326), + [aux_sym_def_type_statement_token3] = ACTIONS(8326), + [aux_sym_def_type_statement_token4] = ACTIONS(8326), + [aux_sym_def_type_statement_token5] = ACTIONS(8326), + [aux_sym_def_type_statement_token6] = ACTIONS(8326), + [aux_sym_def_type_statement_token7] = ACTIONS(8326), + [aux_sym_def_type_statement_token8] = ACTIONS(8326), + [aux_sym_def_type_statement_token9] = ACTIONS(8326), + [aux_sym_def_type_statement_token10] = ACTIONS(8326), + [aux_sym_def_type_statement_token11] = ACTIONS(8326), + [aux_sym_def_type_statement_token12] = ACTIONS(8326), + [aux_sym_def_type_statement_token13] = ACTIONS(8326), + [aux_sym_def_type_statement_token14] = ACTIONS(8326), + [aux_sym_call_statement_token1] = ACTIONS(8326), + [sym__ambiguous_call_statement] = ACTIONS(8326), + [aux_sym_addressof_expression_token1] = ACTIONS(8326), + [aux_sym_type_of_expression_token1] = ACTIONS(8326), + [aux_sym_unary_expression_token1] = ACTIONS(8326), + [sym_string_literal] = ACTIONS(8328), + [sym_number_literal] = ACTIONS(8328), + [aux_sym_boolean_literal_token1] = ACTIONS(8326), + [aux_sym_boolean_literal_token2] = ACTIONS(8326), + [sym_nothing_literal] = ACTIONS(8326), + [sym_null_literal] = ACTIONS(8326), + [sym_empty_literal] = ACTIONS(8326), + [sym_date_literal] = ACTIONS(8328), + [anon_sym_POUND] = ACTIONS(8326), + }, + [STATE(3883)] = { + [sym_identifier] = ACTIONS(3996), + [sym_newline] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3996), + [aux_sym_frm_property_statement_token1] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3994), + [aux_sym__attribute_identifier_token1] = ACTIONS(3996), + [aux_sym_option_statement_token3] = ACTIONS(3996), + [aux_sym_type_declaration_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3996), + [aux_sym_enum_declaration_token1] = ACTIONS(3996), + [aux_sym_declare_sub_statement_token1] = ACTIONS(3996), + [aux_sym_declare_sub_statement_token2] = ACTIONS(3996), + [aux_sym_declare_function_statement_token1] = ACTIONS(3996), + [aux_sym_preprocessor_const_token1] = ACTIONS(3996), + [aux_sym__property_get_header_token1] = ACTIONS(3996), + [aux_sym_event_declaration_token1] = ACTIONS(3996), + [sym_static_modifier] = ACTIONS(3996), + [sym__dim_keyword] = ACTIONS(3996), + [sym__redim_keyword] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3996), + [aux_sym_set_accessor_token1] = ACTIONS(3996), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3994), + [aux_sym_as_type_clause_token2] = ACTIONS(3996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3996), + [aux_sym_visibility_token1] = ACTIONS(3996), + [aux_sym_visibility_token2] = ACTIONS(3996), + [aux_sym_elseif_fragment_token1] = ACTIONS(3996), + [aux_sym_else_fragment_token1] = ACTIONS(3996), + [aux_sym_select_statement_token1] = ACTIONS(3996), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3996), + [aux_sym__for_header_token1] = ACTIONS(3996), + [aux_sym_do_statement_token1] = ACTIONS(3996), + [aux_sym_do_condition_token1] = ACTIONS(3996), + [aux_sym_with_statement_token1] = ACTIONS(3996), + [aux_sym_exit_statement_token1] = ACTIONS(3996), + [sym_end_statement] = ACTIONS(3994), + [aux_sym_on_goto_statement_token1] = ACTIONS(3996), + [aux_sym_on_goto_statement_token2] = ACTIONS(3996), + [aux_sym_on_error_statement_token2] = ACTIONS(3996), + [sym__ambiguous_redim_statement] = ACTIONS(3994), + [aux_sym_erase_statement_token1] = ACTIONS(3996), + [aux_sym_open_statement_token1] = ACTIONS(3996), + [aux_sym_file_mode_token2] = ACTIONS(3996), + [aux_sym_file_access_token2] = ACTIONS(3996), + [aux_sym_file_lock_token2] = ACTIONS(3996), + [aux_sym_print_statement_token1] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3994), + [aux_sym_close_statement_token1] = ACTIONS(3996), + [aux_sym_put_statement_token1] = ACTIONS(3996), + [aux_sym_unlock_statement_token1] = ACTIONS(3996), + [aux_sym_seek_statement_token1] = ACTIONS(3996), + [sym_reset_statement] = ACTIONS(3996), + [aux_sym_raise_event_statement_token1] = ACTIONS(3996), + [sym_stop_statement] = ACTIONS(3996), + [sym_beep_statement] = ACTIONS(3996), + [aux_sym_unload_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token2] = ACTIONS(3996), + [aux_sym_def_type_statement_token3] = ACTIONS(3996), + [aux_sym_def_type_statement_token4] = ACTIONS(3996), + [aux_sym_def_type_statement_token5] = ACTIONS(3996), + [aux_sym_def_type_statement_token6] = ACTIONS(3996), + [aux_sym_def_type_statement_token7] = ACTIONS(3996), + [aux_sym_def_type_statement_token8] = ACTIONS(3996), + [aux_sym_def_type_statement_token9] = ACTIONS(3996), + [aux_sym_def_type_statement_token10] = ACTIONS(3996), + [aux_sym_def_type_statement_token11] = ACTIONS(3996), + [aux_sym_def_type_statement_token12] = ACTIONS(3996), + [aux_sym_def_type_statement_token13] = ACTIONS(3996), + [aux_sym_def_type_statement_token14] = ACTIONS(3996), + [aux_sym_call_statement_token1] = ACTIONS(3996), + [sym__ambiguous_call_statement] = ACTIONS(3996), + [aux_sym_addressof_expression_token1] = ACTIONS(3996), + [aux_sym_type_of_expression_token1] = ACTIONS(3996), + [aux_sym_unary_expression_token1] = ACTIONS(3996), + [sym_string_literal] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3994), + [aux_sym_boolean_literal_token1] = ACTIONS(3996), + [aux_sym_boolean_literal_token2] = ACTIONS(3996), + [sym_nothing_literal] = ACTIONS(3996), + [sym_null_literal] = ACTIONS(3996), + [sym_empty_literal] = ACTIONS(3996), + [sym_date_literal] = ACTIONS(3994), + [anon_sym_POUND] = ACTIONS(3996), + }, + [STATE(3884)] = { + [sym_as_type_clause] = STATE(4553), + [sym_identifier] = ACTIONS(8364), + [sym_newline] = ACTIONS(8366), + [anon_sym_COLON] = ACTIONS(8366), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8364), + [aux_sym_frm_property_statement_token1] = ACTIONS(8364), + [anon_sym_DOT] = ACTIONS(8364), + [anon_sym_BANG] = ACTIONS(8366), + [aux_sym__attribute_identifier_token1] = ACTIONS(8364), + [aux_sym_option_statement_token3] = ACTIONS(8364), + [aux_sym_type_declaration_token1] = ACTIONS(8364), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8364), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8364), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8364), + [aux_sym_enum_declaration_token1] = ACTIONS(8364), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8364), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8364), + [aux_sym_declare_function_statement_token1] = ACTIONS(8364), + [aux_sym_preprocessor_const_token1] = ACTIONS(8364), + [aux_sym__property_get_header_token1] = ACTIONS(8364), + [aux_sym_event_declaration_token1] = ACTIONS(8364), + [sym_static_modifier] = ACTIONS(8364), + [sym__dim_keyword] = ACTIONS(8364), + [sym__redim_keyword] = ACTIONS(8364), + [aux_sym_get_accessor_token1] = ACTIONS(8364), + [aux_sym_set_accessor_token1] = ACTIONS(8364), + [aux_sym_const_declaration_token1] = ACTIONS(8364), + [anon_sym_LPAREN] = ACTIONS(8366), + [aux_sym_as_type_clause_token1] = ACTIONS(8211), + [aux_sym_as_type_clause_token2] = ACTIONS(8364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8364), + [aux_sym_visibility_token1] = ACTIONS(8364), + [aux_sym_visibility_token2] = ACTIONS(8364), + [aux_sym_elseif_fragment_token1] = ACTIONS(8364), + [aux_sym_else_fragment_token1] = ACTIONS(8364), + [aux_sym_select_statement_token1] = ACTIONS(8364), + [aux_sym__for_header_token1] = ACTIONS(8364), + [aux_sym_do_statement_token1] = ACTIONS(8364), + [aux_sym_do_condition_token1] = ACTIONS(8364), + [aux_sym_with_statement_token1] = ACTIONS(8364), + [aux_sym_exit_statement_token1] = ACTIONS(8364), + [sym_end_statement] = ACTIONS(8366), + [aux_sym_on_goto_statement_token1] = ACTIONS(8364), + [aux_sym_on_goto_statement_token2] = ACTIONS(8364), + [aux_sym_on_error_statement_token2] = ACTIONS(8364), + [sym__ambiguous_redim_statement] = ACTIONS(8366), + [aux_sym_erase_statement_token1] = ACTIONS(8364), + [aux_sym_open_statement_token1] = ACTIONS(8364), + [aux_sym_file_mode_token2] = ACTIONS(8364), + [aux_sym_file_access_token2] = ACTIONS(8364), + [aux_sym_file_lock_token2] = ACTIONS(8364), + [aux_sym_print_statement_token1] = ACTIONS(8364), + [anon_sym_PLUS] = ACTIONS(8366), + [anon_sym_DASH] = ACTIONS(8364), + [anon_sym_QMARK] = ACTIONS(8366), + [aux_sym_close_statement_token1] = ACTIONS(8364), + [aux_sym_put_statement_token1] = ACTIONS(8364), + [aux_sym_unlock_statement_token1] = ACTIONS(8364), + [aux_sym_seek_statement_token1] = ACTIONS(8364), + [sym_reset_statement] = ACTIONS(8364), + [aux_sym_raise_event_statement_token1] = ACTIONS(8364), + [sym_stop_statement] = ACTIONS(8364), + [sym_beep_statement] = ACTIONS(8364), + [aux_sym_unload_statement_token1] = ACTIONS(8364), + [aux_sym_def_type_statement_token1] = ACTIONS(8364), + [aux_sym_def_type_statement_token2] = ACTIONS(8364), + [aux_sym_def_type_statement_token3] = ACTIONS(8364), + [aux_sym_def_type_statement_token4] = ACTIONS(8364), + [aux_sym_def_type_statement_token5] = ACTIONS(8364), + [aux_sym_def_type_statement_token6] = ACTIONS(8364), + [aux_sym_def_type_statement_token7] = ACTIONS(8364), + [aux_sym_def_type_statement_token8] = ACTIONS(8364), + [aux_sym_def_type_statement_token9] = ACTIONS(8364), + [aux_sym_def_type_statement_token10] = ACTIONS(8364), + [aux_sym_def_type_statement_token11] = ACTIONS(8364), + [aux_sym_def_type_statement_token12] = ACTIONS(8364), + [aux_sym_def_type_statement_token13] = ACTIONS(8364), + [aux_sym_def_type_statement_token14] = ACTIONS(8364), + [aux_sym_call_statement_token1] = ACTIONS(8364), + [sym__ambiguous_call_statement] = ACTIONS(8364), + [aux_sym_addressof_expression_token1] = ACTIONS(8364), + [aux_sym_type_of_expression_token1] = ACTIONS(8364), + [aux_sym_unary_expression_token1] = ACTIONS(8364), + [sym_string_literal] = ACTIONS(8366), + [sym_number_literal] = ACTIONS(8366), + [aux_sym_boolean_literal_token1] = ACTIONS(8364), + [aux_sym_boolean_literal_token2] = ACTIONS(8364), + [sym_nothing_literal] = ACTIONS(8364), + [sym_null_literal] = ACTIONS(8364), + [sym_empty_literal] = ACTIONS(8364), + [sym_date_literal] = ACTIONS(8366), + [anon_sym_POUND] = ACTIONS(8364), + }, + [STATE(3885)] = { + [sym_identifier] = ACTIONS(8467), + [sym_newline] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8467), + [aux_sym_frm_property_statement_token1] = ACTIONS(8467), + [anon_sym_DOT] = ACTIONS(8467), + [anon_sym_BANG] = ACTIONS(6089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8467), + [aux_sym_option_statement_token3] = ACTIONS(8467), + [aux_sym_type_declaration_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8467), + [aux_sym_enum_declaration_token1] = ACTIONS(8467), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8467), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8467), + [aux_sym_declare_function_statement_token1] = ACTIONS(8467), + [aux_sym_preprocessor_const_token1] = ACTIONS(8467), + [aux_sym__property_get_header_token1] = ACTIONS(8467), + [aux_sym_event_declaration_token1] = ACTIONS(8467), + [sym_static_modifier] = ACTIONS(8467), + [sym__dim_keyword] = ACTIONS(8467), + [sym__redim_keyword] = ACTIONS(8467), + [aux_sym_get_accessor_token1] = ACTIONS(8467), + [aux_sym_set_accessor_token1] = ACTIONS(8467), + [anon_sym_COMMA] = ACTIONS(6089), + [aux_sym_const_declaration_token1] = ACTIONS(8467), + [anon_sym_LPAREN] = ACTIONS(6089), + [aux_sym_as_type_clause_token2] = ACTIONS(8467), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8467), + [aux_sym_visibility_token1] = ACTIONS(8467), + [aux_sym_visibility_token2] = ACTIONS(8467), + [aux_sym_elseif_fragment_token1] = ACTIONS(8467), + [aux_sym_else_fragment_token1] = ACTIONS(8467), + [aux_sym_select_statement_token1] = ACTIONS(8467), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8467), + [aux_sym__for_header_token1] = ACTIONS(8467), + [aux_sym_do_statement_token1] = ACTIONS(8467), + [aux_sym_do_condition_token1] = ACTIONS(8467), + [aux_sym_with_statement_token1] = ACTIONS(8467), + [aux_sym_exit_statement_token1] = ACTIONS(8467), + [sym_end_statement] = ACTIONS(6089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8467), + [aux_sym_on_goto_statement_token2] = ACTIONS(8467), + [aux_sym_on_error_statement_token2] = ACTIONS(8467), + [sym__ambiguous_redim_statement] = ACTIONS(6089), + [aux_sym_erase_statement_token1] = ACTIONS(8467), + [aux_sym_open_statement_token1] = ACTIONS(8467), + [aux_sym_file_mode_token2] = ACTIONS(8467), + [aux_sym_file_access_token2] = ACTIONS(8467), + [aux_sym_file_lock_token2] = ACTIONS(8467), + [aux_sym_print_statement_token1] = ACTIONS(8467), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(8467), + [anon_sym_QMARK] = ACTIONS(6089), + [aux_sym_close_statement_token1] = ACTIONS(8467), + [aux_sym_put_statement_token1] = ACTIONS(8467), + [aux_sym_unlock_statement_token1] = ACTIONS(8467), + [aux_sym_seek_statement_token1] = ACTIONS(8467), + [sym_reset_statement] = ACTIONS(8467), + [aux_sym_raise_event_statement_token1] = ACTIONS(8467), + [sym_stop_statement] = ACTIONS(8467), + [sym_beep_statement] = ACTIONS(8467), + [aux_sym_unload_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token2] = ACTIONS(8467), + [aux_sym_def_type_statement_token3] = ACTIONS(8467), + [aux_sym_def_type_statement_token4] = ACTIONS(8467), + [aux_sym_def_type_statement_token5] = ACTIONS(8467), + [aux_sym_def_type_statement_token6] = ACTIONS(8467), + [aux_sym_def_type_statement_token7] = ACTIONS(8467), + [aux_sym_def_type_statement_token8] = ACTIONS(8467), + [aux_sym_def_type_statement_token9] = ACTIONS(8467), + [aux_sym_def_type_statement_token10] = ACTIONS(8467), + [aux_sym_def_type_statement_token11] = ACTIONS(8467), + [aux_sym_def_type_statement_token12] = ACTIONS(8467), + [aux_sym_def_type_statement_token13] = ACTIONS(8467), + [aux_sym_def_type_statement_token14] = ACTIONS(8467), + [aux_sym_call_statement_token1] = ACTIONS(8467), + [sym__ambiguous_call_statement] = ACTIONS(8467), + [aux_sym_addressof_expression_token1] = ACTIONS(8467), + [aux_sym_type_of_expression_token1] = ACTIONS(8467), + [aux_sym_unary_expression_token1] = ACTIONS(8467), + [sym_string_literal] = ACTIONS(6089), + [sym_number_literal] = ACTIONS(6089), + [aux_sym_boolean_literal_token1] = ACTIONS(8467), + [aux_sym_boolean_literal_token2] = ACTIONS(8467), + [sym_nothing_literal] = ACTIONS(8467), + [sym_null_literal] = ACTIONS(8467), + [sym_empty_literal] = ACTIONS(8467), + [sym_date_literal] = ACTIONS(6089), + [anon_sym_POUND] = ACTIONS(8467), + }, + [STATE(3886)] = { + [sym_as_type_clause] = STATE(4335), + [sym_identifier] = ACTIONS(8452), + [sym_newline] = ACTIONS(8454), + [anon_sym_COLON] = ACTIONS(8454), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8452), + [aux_sym_frm_property_statement_token1] = ACTIONS(8452), + [anon_sym_DOT] = ACTIONS(8452), + [anon_sym_BANG] = ACTIONS(8454), + [aux_sym__attribute_identifier_token1] = ACTIONS(8452), + [aux_sym_option_statement_token3] = ACTIONS(8452), + [aux_sym_type_declaration_token1] = ACTIONS(8452), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8452), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8452), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8452), + [aux_sym_enum_declaration_token1] = ACTIONS(8452), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8452), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8452), + [aux_sym_declare_function_statement_token1] = ACTIONS(8452), + [aux_sym_preprocessor_const_token1] = ACTIONS(8452), + [aux_sym__property_get_header_token1] = ACTIONS(8452), + [aux_sym_event_declaration_token1] = ACTIONS(8452), + [sym_static_modifier] = ACTIONS(8452), + [sym__dim_keyword] = ACTIONS(8452), + [sym__redim_keyword] = ACTIONS(8452), + [aux_sym_get_accessor_token1] = ACTIONS(8452), + [aux_sym_set_accessor_token1] = ACTIONS(8452), + [aux_sym_const_declaration_token1] = ACTIONS(8452), + [anon_sym_LPAREN] = ACTIONS(8454), + [aux_sym_as_type_clause_token1] = ACTIONS(8211), + [aux_sym_as_type_clause_token2] = ACTIONS(8452), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8452), + [aux_sym_visibility_token1] = ACTIONS(8452), + [aux_sym_visibility_token2] = ACTIONS(8452), + [aux_sym_elseif_fragment_token1] = ACTIONS(8452), + [aux_sym_else_fragment_token1] = ACTIONS(8452), + [aux_sym_select_statement_token1] = ACTIONS(8452), + [aux_sym__for_header_token1] = ACTIONS(8452), + [aux_sym_do_statement_token1] = ACTIONS(8452), + [aux_sym_do_condition_token1] = ACTIONS(8452), + [aux_sym_with_statement_token1] = ACTIONS(8452), + [aux_sym_exit_statement_token1] = ACTIONS(8452), + [sym_end_statement] = ACTIONS(8454), + [aux_sym_on_goto_statement_token1] = ACTIONS(8452), + [aux_sym_on_goto_statement_token2] = ACTIONS(8452), + [aux_sym_on_error_statement_token2] = ACTIONS(8452), + [sym__ambiguous_redim_statement] = ACTIONS(8454), + [aux_sym_erase_statement_token1] = ACTIONS(8452), + [aux_sym_open_statement_token1] = ACTIONS(8452), + [aux_sym_file_mode_token2] = ACTIONS(8452), + [aux_sym_file_access_token2] = ACTIONS(8452), + [aux_sym_file_lock_token2] = ACTIONS(8452), + [aux_sym_print_statement_token1] = ACTIONS(8452), + [anon_sym_PLUS] = ACTIONS(8454), + [anon_sym_DASH] = ACTIONS(8452), + [anon_sym_QMARK] = ACTIONS(8454), + [aux_sym_close_statement_token1] = ACTIONS(8452), + [aux_sym_put_statement_token1] = ACTIONS(8452), + [aux_sym_unlock_statement_token1] = ACTIONS(8452), + [aux_sym_seek_statement_token1] = ACTIONS(8452), + [sym_reset_statement] = ACTIONS(8452), + [aux_sym_raise_event_statement_token1] = ACTIONS(8452), + [sym_stop_statement] = ACTIONS(8452), + [sym_beep_statement] = ACTIONS(8452), + [aux_sym_unload_statement_token1] = ACTIONS(8452), + [aux_sym_def_type_statement_token1] = ACTIONS(8452), + [aux_sym_def_type_statement_token2] = ACTIONS(8452), + [aux_sym_def_type_statement_token3] = ACTIONS(8452), + [aux_sym_def_type_statement_token4] = ACTIONS(8452), + [aux_sym_def_type_statement_token5] = ACTIONS(8452), + [aux_sym_def_type_statement_token6] = ACTIONS(8452), + [aux_sym_def_type_statement_token7] = ACTIONS(8452), + [aux_sym_def_type_statement_token8] = ACTIONS(8452), + [aux_sym_def_type_statement_token9] = ACTIONS(8452), + [aux_sym_def_type_statement_token10] = ACTIONS(8452), + [aux_sym_def_type_statement_token11] = ACTIONS(8452), + [aux_sym_def_type_statement_token12] = ACTIONS(8452), + [aux_sym_def_type_statement_token13] = ACTIONS(8452), + [aux_sym_def_type_statement_token14] = ACTIONS(8452), + [aux_sym_call_statement_token1] = ACTIONS(8452), + [sym__ambiguous_call_statement] = ACTIONS(8452), + [aux_sym_addressof_expression_token1] = ACTIONS(8452), + [aux_sym_type_of_expression_token1] = ACTIONS(8452), + [aux_sym_unary_expression_token1] = ACTIONS(8452), + [sym_string_literal] = ACTIONS(8454), + [sym_number_literal] = ACTIONS(8454), + [aux_sym_boolean_literal_token1] = ACTIONS(8452), + [aux_sym_boolean_literal_token2] = ACTIONS(8452), + [sym_nothing_literal] = ACTIONS(8452), + [sym_null_literal] = ACTIONS(8452), + [sym_empty_literal] = ACTIONS(8452), + [sym_date_literal] = ACTIONS(8454), + [anon_sym_POUND] = ACTIONS(8452), + }, + [STATE(3887)] = { + [sym_as_type_clause] = STATE(4336), + [sym_identifier] = ACTIONS(8463), + [sym_newline] = ACTIONS(8465), + [anon_sym_COLON] = ACTIONS(8465), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8463), + [aux_sym_frm_property_statement_token1] = ACTIONS(8463), + [anon_sym_DOT] = ACTIONS(8463), + [anon_sym_BANG] = ACTIONS(8465), + [aux_sym__attribute_identifier_token1] = ACTIONS(8463), + [aux_sym_option_statement_token3] = ACTIONS(8463), + [aux_sym_type_declaration_token1] = ACTIONS(8463), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8463), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8463), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8463), + [aux_sym_enum_declaration_token1] = ACTIONS(8463), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8463), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8463), + [aux_sym_declare_function_statement_token1] = ACTIONS(8463), + [aux_sym_preprocessor_const_token1] = ACTIONS(8463), + [aux_sym__property_get_header_token1] = ACTIONS(8463), + [aux_sym_event_declaration_token1] = ACTIONS(8463), + [sym_static_modifier] = ACTIONS(8463), + [sym__dim_keyword] = ACTIONS(8463), + [sym__redim_keyword] = ACTIONS(8463), + [aux_sym_get_accessor_token1] = ACTIONS(8463), + [aux_sym_set_accessor_token1] = ACTIONS(8463), + [aux_sym_const_declaration_token1] = ACTIONS(8463), + [anon_sym_LPAREN] = ACTIONS(8465), + [aux_sym_as_type_clause_token1] = ACTIONS(8211), + [aux_sym_as_type_clause_token2] = ACTIONS(8463), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8463), + [aux_sym_visibility_token1] = ACTIONS(8463), + [aux_sym_visibility_token2] = ACTIONS(8463), + [aux_sym_elseif_fragment_token1] = ACTIONS(8463), + [aux_sym_else_fragment_token1] = ACTIONS(8463), + [aux_sym_select_statement_token1] = ACTIONS(8463), + [aux_sym__for_header_token1] = ACTIONS(8463), + [aux_sym_do_statement_token1] = ACTIONS(8463), + [aux_sym_do_condition_token1] = ACTIONS(8463), + [aux_sym_with_statement_token1] = ACTIONS(8463), + [aux_sym_exit_statement_token1] = ACTIONS(8463), + [sym_end_statement] = ACTIONS(8465), + [aux_sym_on_goto_statement_token1] = ACTIONS(8463), + [aux_sym_on_goto_statement_token2] = ACTIONS(8463), + [aux_sym_on_error_statement_token2] = ACTIONS(8463), + [sym__ambiguous_redim_statement] = ACTIONS(8465), + [aux_sym_erase_statement_token1] = ACTIONS(8463), + [aux_sym_open_statement_token1] = ACTIONS(8463), + [aux_sym_file_mode_token2] = ACTIONS(8463), + [aux_sym_file_access_token2] = ACTIONS(8463), + [aux_sym_file_lock_token2] = ACTIONS(8463), + [aux_sym_print_statement_token1] = ACTIONS(8463), + [anon_sym_PLUS] = ACTIONS(8465), + [anon_sym_DASH] = ACTIONS(8463), + [anon_sym_QMARK] = ACTIONS(8465), + [aux_sym_close_statement_token1] = ACTIONS(8463), + [aux_sym_put_statement_token1] = ACTIONS(8463), + [aux_sym_unlock_statement_token1] = ACTIONS(8463), + [aux_sym_seek_statement_token1] = ACTIONS(8463), + [sym_reset_statement] = ACTIONS(8463), + [aux_sym_raise_event_statement_token1] = ACTIONS(8463), + [sym_stop_statement] = ACTIONS(8463), + [sym_beep_statement] = ACTIONS(8463), + [aux_sym_unload_statement_token1] = ACTIONS(8463), + [aux_sym_def_type_statement_token1] = ACTIONS(8463), + [aux_sym_def_type_statement_token2] = ACTIONS(8463), + [aux_sym_def_type_statement_token3] = ACTIONS(8463), + [aux_sym_def_type_statement_token4] = ACTIONS(8463), + [aux_sym_def_type_statement_token5] = ACTIONS(8463), + [aux_sym_def_type_statement_token6] = ACTIONS(8463), + [aux_sym_def_type_statement_token7] = ACTIONS(8463), + [aux_sym_def_type_statement_token8] = ACTIONS(8463), + [aux_sym_def_type_statement_token9] = ACTIONS(8463), + [aux_sym_def_type_statement_token10] = ACTIONS(8463), + [aux_sym_def_type_statement_token11] = ACTIONS(8463), + [aux_sym_def_type_statement_token12] = ACTIONS(8463), + [aux_sym_def_type_statement_token13] = ACTIONS(8463), + [aux_sym_def_type_statement_token14] = ACTIONS(8463), + [aux_sym_call_statement_token1] = ACTIONS(8463), + [sym__ambiguous_call_statement] = ACTIONS(8463), + [aux_sym_addressof_expression_token1] = ACTIONS(8463), + [aux_sym_type_of_expression_token1] = ACTIONS(8463), + [aux_sym_unary_expression_token1] = ACTIONS(8463), + [sym_string_literal] = ACTIONS(8465), + [sym_number_literal] = ACTIONS(8465), + [aux_sym_boolean_literal_token1] = ACTIONS(8463), + [aux_sym_boolean_literal_token2] = ACTIONS(8463), + [sym_nothing_literal] = ACTIONS(8463), + [sym_null_literal] = ACTIONS(8463), + [sym_empty_literal] = ACTIONS(8463), + [sym_date_literal] = ACTIONS(8465), + [anon_sym_POUND] = ACTIONS(8463), + }, + [STATE(3888)] = { + [sym_identifier] = ACTIONS(5562), + [sym_newline] = ACTIONS(5558), + [anon_sym_COLON] = ACTIONS(5558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5562), + [aux_sym_frm_property_statement_token1] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(8873), + [anon_sym_BANG] = ACTIONS(8875), + [aux_sym__attribute_identifier_token1] = ACTIONS(5562), + [aux_sym_option_statement_token3] = ACTIONS(5562), + [aux_sym_type_declaration_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5562), + [aux_sym_enum_declaration_token1] = ACTIONS(5562), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5562), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5562), + [aux_sym_declare_function_statement_token1] = ACTIONS(5562), + [aux_sym_preprocessor_const_token1] = ACTIONS(5562), + [aux_sym__property_get_header_token1] = ACTIONS(5562), + [aux_sym_event_declaration_token1] = ACTIONS(5562), + [sym_static_modifier] = ACTIONS(5562), + [sym__dim_keyword] = ACTIONS(5562), + [sym__redim_keyword] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5562), + [aux_sym_set_accessor_token1] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5558), + [aux_sym_as_type_clause_token2] = ACTIONS(5562), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5562), + [aux_sym_visibility_token1] = ACTIONS(5562), + [aux_sym_visibility_token2] = ACTIONS(5562), + [aux_sym_elseif_fragment_token1] = ACTIONS(5562), + [aux_sym_else_fragment_token1] = ACTIONS(5562), + [aux_sym_select_statement_token1] = ACTIONS(5562), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5562), + [aux_sym__for_header_token1] = ACTIONS(5562), + [aux_sym_do_statement_token1] = ACTIONS(5562), + [aux_sym_do_condition_token1] = ACTIONS(5562), + [aux_sym_with_statement_token1] = ACTIONS(5562), + [aux_sym_exit_statement_token1] = ACTIONS(5562), + [sym_end_statement] = ACTIONS(5558), + [aux_sym_on_goto_statement_token1] = ACTIONS(5562), + [aux_sym_on_goto_statement_token2] = ACTIONS(5562), + [aux_sym_on_error_statement_token2] = ACTIONS(5562), + [sym__ambiguous_redim_statement] = ACTIONS(5558), + [aux_sym_erase_statement_token1] = ACTIONS(5562), + [aux_sym_open_statement_token1] = ACTIONS(5562), + [aux_sym_file_mode_token2] = ACTIONS(5562), + [aux_sym_file_access_token2] = ACTIONS(5562), + [aux_sym_file_lock_token2] = ACTIONS(5562), + [aux_sym_print_statement_token1] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5558), + [aux_sym_close_statement_token1] = ACTIONS(5562), + [aux_sym_put_statement_token1] = ACTIONS(5562), + [aux_sym_unlock_statement_token1] = ACTIONS(5562), + [aux_sym_seek_statement_token1] = ACTIONS(5562), + [sym_reset_statement] = ACTIONS(5562), + [aux_sym_raise_event_statement_token1] = ACTIONS(5562), + [sym_stop_statement] = ACTIONS(5562), + [sym_beep_statement] = ACTIONS(5562), + [aux_sym_unload_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token2] = ACTIONS(5562), + [aux_sym_def_type_statement_token3] = ACTIONS(5562), + [aux_sym_def_type_statement_token4] = ACTIONS(5562), + [aux_sym_def_type_statement_token5] = ACTIONS(5562), + [aux_sym_def_type_statement_token6] = ACTIONS(5562), + [aux_sym_def_type_statement_token7] = ACTIONS(5562), + [aux_sym_def_type_statement_token8] = ACTIONS(5562), + [aux_sym_def_type_statement_token9] = ACTIONS(5562), + [aux_sym_def_type_statement_token10] = ACTIONS(5562), + [aux_sym_def_type_statement_token11] = ACTIONS(5562), + [aux_sym_def_type_statement_token12] = ACTIONS(5562), + [aux_sym_def_type_statement_token13] = ACTIONS(5562), + [aux_sym_def_type_statement_token14] = ACTIONS(5562), + [aux_sym_call_statement_token1] = ACTIONS(5562), + [sym__ambiguous_call_statement] = ACTIONS(5562), + [aux_sym_addressof_expression_token1] = ACTIONS(5562), + [aux_sym_type_of_expression_token1] = ACTIONS(5562), + [aux_sym_unary_expression_token1] = ACTIONS(5562), + [sym_string_literal] = ACTIONS(5558), + [sym_number_literal] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5562), + [aux_sym_boolean_literal_token2] = ACTIONS(5562), + [sym_nothing_literal] = ACTIONS(5562), + [sym_null_literal] = ACTIONS(5562), + [sym_empty_literal] = ACTIONS(5562), + [sym_date_literal] = ACTIONS(5558), + [anon_sym_POUND] = ACTIONS(5562), + }, + [STATE(3889)] = { + [sym_as_type_clause] = STATE(4338), + [sym_identifier] = ACTIONS(8487), + [sym_newline] = ACTIONS(8489), + [anon_sym_COLON] = ACTIONS(8489), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8487), + [aux_sym_frm_property_statement_token1] = ACTIONS(8487), + [anon_sym_DOT] = ACTIONS(8487), + [anon_sym_BANG] = ACTIONS(8489), + [aux_sym__attribute_identifier_token1] = ACTIONS(8487), + [aux_sym_option_statement_token3] = ACTIONS(8487), + [aux_sym_type_declaration_token1] = ACTIONS(8487), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8487), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8487), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8487), + [aux_sym_enum_declaration_token1] = ACTIONS(8487), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8487), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8487), + [aux_sym_declare_function_statement_token1] = ACTIONS(8487), + [aux_sym_preprocessor_const_token1] = ACTIONS(8487), + [aux_sym__property_get_header_token1] = ACTIONS(8487), + [aux_sym_event_declaration_token1] = ACTIONS(8487), + [sym_static_modifier] = ACTIONS(8487), + [sym__dim_keyword] = ACTIONS(8487), + [sym__redim_keyword] = ACTIONS(8487), + [aux_sym_get_accessor_token1] = ACTIONS(8487), + [aux_sym_set_accessor_token1] = ACTIONS(8487), + [aux_sym_const_declaration_token1] = ACTIONS(8487), + [anon_sym_LPAREN] = ACTIONS(8489), + [aux_sym_as_type_clause_token1] = ACTIONS(8211), + [aux_sym_as_type_clause_token2] = ACTIONS(8487), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8487), + [aux_sym_visibility_token1] = ACTIONS(8487), + [aux_sym_visibility_token2] = ACTIONS(8487), + [aux_sym_elseif_fragment_token1] = ACTIONS(8487), + [aux_sym_else_fragment_token1] = ACTIONS(8487), + [aux_sym_select_statement_token1] = ACTIONS(8487), + [aux_sym__for_header_token1] = ACTIONS(8487), + [aux_sym_do_statement_token1] = ACTIONS(8487), + [aux_sym_do_condition_token1] = ACTIONS(8487), + [aux_sym_with_statement_token1] = ACTIONS(8487), + [aux_sym_exit_statement_token1] = ACTIONS(8487), + [sym_end_statement] = ACTIONS(8489), + [aux_sym_on_goto_statement_token1] = ACTIONS(8487), + [aux_sym_on_goto_statement_token2] = ACTIONS(8487), + [aux_sym_on_error_statement_token2] = ACTIONS(8487), + [sym__ambiguous_redim_statement] = ACTIONS(8489), + [aux_sym_erase_statement_token1] = ACTIONS(8487), + [aux_sym_open_statement_token1] = ACTIONS(8487), + [aux_sym_file_mode_token2] = ACTIONS(8487), + [aux_sym_file_access_token2] = ACTIONS(8487), + [aux_sym_file_lock_token2] = ACTIONS(8487), + [aux_sym_print_statement_token1] = ACTIONS(8487), + [anon_sym_PLUS] = ACTIONS(8489), + [anon_sym_DASH] = ACTIONS(8487), + [anon_sym_QMARK] = ACTIONS(8489), + [aux_sym_close_statement_token1] = ACTIONS(8487), + [aux_sym_put_statement_token1] = ACTIONS(8487), + [aux_sym_unlock_statement_token1] = ACTIONS(8487), + [aux_sym_seek_statement_token1] = ACTIONS(8487), + [sym_reset_statement] = ACTIONS(8487), + [aux_sym_raise_event_statement_token1] = ACTIONS(8487), + [sym_stop_statement] = ACTIONS(8487), + [sym_beep_statement] = ACTIONS(8487), + [aux_sym_unload_statement_token1] = ACTIONS(8487), + [aux_sym_def_type_statement_token1] = ACTIONS(8487), + [aux_sym_def_type_statement_token2] = ACTIONS(8487), + [aux_sym_def_type_statement_token3] = ACTIONS(8487), + [aux_sym_def_type_statement_token4] = ACTIONS(8487), + [aux_sym_def_type_statement_token5] = ACTIONS(8487), + [aux_sym_def_type_statement_token6] = ACTIONS(8487), + [aux_sym_def_type_statement_token7] = ACTIONS(8487), + [aux_sym_def_type_statement_token8] = ACTIONS(8487), + [aux_sym_def_type_statement_token9] = ACTIONS(8487), + [aux_sym_def_type_statement_token10] = ACTIONS(8487), + [aux_sym_def_type_statement_token11] = ACTIONS(8487), + [aux_sym_def_type_statement_token12] = ACTIONS(8487), + [aux_sym_def_type_statement_token13] = ACTIONS(8487), + [aux_sym_def_type_statement_token14] = ACTIONS(8487), + [aux_sym_call_statement_token1] = ACTIONS(8487), + [sym__ambiguous_call_statement] = ACTIONS(8487), + [aux_sym_addressof_expression_token1] = ACTIONS(8487), + [aux_sym_type_of_expression_token1] = ACTIONS(8487), + [aux_sym_unary_expression_token1] = ACTIONS(8487), + [sym_string_literal] = ACTIONS(8489), + [sym_number_literal] = ACTIONS(8489), + [aux_sym_boolean_literal_token1] = ACTIONS(8487), + [aux_sym_boolean_literal_token2] = ACTIONS(8487), + [sym_nothing_literal] = ACTIONS(8487), + [sym_null_literal] = ACTIONS(8487), + [sym_empty_literal] = ACTIONS(8487), + [sym_date_literal] = ACTIONS(8489), + [anon_sym_POUND] = ACTIONS(8487), + }, + [STATE(3890)] = { + [sym_as_type_clause] = STATE(4370), + [sym_identifier] = ACTIONS(8505), + [sym_newline] = ACTIONS(8507), + [anon_sym_COLON] = ACTIONS(8507), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8505), + [aux_sym_frm_property_statement_token1] = ACTIONS(8505), + [anon_sym_DOT] = ACTIONS(8505), + [anon_sym_BANG] = ACTIONS(8507), + [aux_sym__attribute_identifier_token1] = ACTIONS(8505), + [aux_sym_option_statement_token3] = ACTIONS(8505), + [aux_sym_type_declaration_token1] = ACTIONS(8505), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8505), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8505), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8505), + [aux_sym_enum_declaration_token1] = ACTIONS(8505), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8505), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8505), + [aux_sym_declare_function_statement_token1] = ACTIONS(8505), + [aux_sym_preprocessor_const_token1] = ACTIONS(8505), + [aux_sym__property_get_header_token1] = ACTIONS(8505), + [aux_sym_event_declaration_token1] = ACTIONS(8505), + [sym_static_modifier] = ACTIONS(8505), + [sym__dim_keyword] = ACTIONS(8505), + [sym__redim_keyword] = ACTIONS(8505), + [aux_sym_get_accessor_token1] = ACTIONS(8505), + [aux_sym_set_accessor_token1] = ACTIONS(8505), + [aux_sym_const_declaration_token1] = ACTIONS(8505), + [anon_sym_LPAREN] = ACTIONS(8507), + [aux_sym_as_type_clause_token1] = ACTIONS(8211), + [aux_sym_as_type_clause_token2] = ACTIONS(8505), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8505), + [aux_sym_visibility_token1] = ACTIONS(8505), + [aux_sym_visibility_token2] = ACTIONS(8505), + [aux_sym_elseif_fragment_token1] = ACTIONS(8505), + [aux_sym_else_fragment_token1] = ACTIONS(8505), + [aux_sym_select_statement_token1] = ACTIONS(8505), + [aux_sym__for_header_token1] = ACTIONS(8505), + [aux_sym_do_statement_token1] = ACTIONS(8505), + [aux_sym_do_condition_token1] = ACTIONS(8505), + [aux_sym_with_statement_token1] = ACTIONS(8505), + [aux_sym_exit_statement_token1] = ACTIONS(8505), + [sym_end_statement] = ACTIONS(8507), + [aux_sym_on_goto_statement_token1] = ACTIONS(8505), + [aux_sym_on_goto_statement_token2] = ACTIONS(8505), + [aux_sym_on_error_statement_token2] = ACTIONS(8505), + [sym__ambiguous_redim_statement] = ACTIONS(8507), + [aux_sym_erase_statement_token1] = ACTIONS(8505), + [aux_sym_open_statement_token1] = ACTIONS(8505), + [aux_sym_file_mode_token2] = ACTIONS(8505), + [aux_sym_file_access_token2] = ACTIONS(8505), + [aux_sym_file_lock_token2] = ACTIONS(8505), + [aux_sym_print_statement_token1] = ACTIONS(8505), + [anon_sym_PLUS] = ACTIONS(8507), + [anon_sym_DASH] = ACTIONS(8505), + [anon_sym_QMARK] = ACTIONS(8507), + [aux_sym_close_statement_token1] = ACTIONS(8505), + [aux_sym_put_statement_token1] = ACTIONS(8505), + [aux_sym_unlock_statement_token1] = ACTIONS(8505), + [aux_sym_seek_statement_token1] = ACTIONS(8505), + [sym_reset_statement] = ACTIONS(8505), + [aux_sym_raise_event_statement_token1] = ACTIONS(8505), + [sym_stop_statement] = ACTIONS(8505), + [sym_beep_statement] = ACTIONS(8505), + [aux_sym_unload_statement_token1] = ACTIONS(8505), + [aux_sym_def_type_statement_token1] = ACTIONS(8505), + [aux_sym_def_type_statement_token2] = ACTIONS(8505), + [aux_sym_def_type_statement_token3] = ACTIONS(8505), + [aux_sym_def_type_statement_token4] = ACTIONS(8505), + [aux_sym_def_type_statement_token5] = ACTIONS(8505), + [aux_sym_def_type_statement_token6] = ACTIONS(8505), + [aux_sym_def_type_statement_token7] = ACTIONS(8505), + [aux_sym_def_type_statement_token8] = ACTIONS(8505), + [aux_sym_def_type_statement_token9] = ACTIONS(8505), + [aux_sym_def_type_statement_token10] = ACTIONS(8505), + [aux_sym_def_type_statement_token11] = ACTIONS(8505), + [aux_sym_def_type_statement_token12] = ACTIONS(8505), + [aux_sym_def_type_statement_token13] = ACTIONS(8505), + [aux_sym_def_type_statement_token14] = ACTIONS(8505), + [aux_sym_call_statement_token1] = ACTIONS(8505), + [sym__ambiguous_call_statement] = ACTIONS(8505), + [aux_sym_addressof_expression_token1] = ACTIONS(8505), + [aux_sym_type_of_expression_token1] = ACTIONS(8505), + [aux_sym_unary_expression_token1] = ACTIONS(8505), + [sym_string_literal] = ACTIONS(8507), + [sym_number_literal] = ACTIONS(8507), + [aux_sym_boolean_literal_token1] = ACTIONS(8505), + [aux_sym_boolean_literal_token2] = ACTIONS(8505), + [sym_nothing_literal] = ACTIONS(8505), + [sym_null_literal] = ACTIONS(8505), + [sym_empty_literal] = ACTIONS(8505), + [sym_date_literal] = ACTIONS(8507), + [anon_sym_POUND] = ACTIONS(8505), + }, + [STATE(3891)] = { + [sym_identifier] = ACTIONS(7968), + [sym_newline] = ACTIONS(7970), + [anon_sym_COLON] = ACTIONS(7970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7968), + [aux_sym_frm_property_statement_token1] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_BANG] = ACTIONS(7970), + [aux_sym__attribute_identifier_token1] = ACTIONS(7968), + [aux_sym_option_statement_token3] = ACTIONS(7968), + [aux_sym_type_declaration_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7968), + [aux_sym_enum_declaration_token1] = ACTIONS(7968), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7968), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7968), + [aux_sym_declare_function_statement_token1] = ACTIONS(7968), + [aux_sym_preprocessor_const_token1] = ACTIONS(7968), + [aux_sym__property_get_header_token1] = ACTIONS(7968), + [aux_sym_event_declaration_token1] = ACTIONS(7968), + [sym_static_modifier] = ACTIONS(7968), + [sym__dim_keyword] = ACTIONS(7968), + [sym__redim_keyword] = ACTIONS(7968), + [aux_sym_get_accessor_token1] = ACTIONS(7968), + [aux_sym_set_accessor_token1] = ACTIONS(7968), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_const_declaration_token1] = ACTIONS(7968), + [anon_sym_LPAREN] = ACTIONS(7970), + [aux_sym_as_type_clause_token2] = ACTIONS(7968), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7968), + [aux_sym_visibility_token1] = ACTIONS(7968), + [aux_sym_visibility_token2] = ACTIONS(7968), + [aux_sym_elseif_fragment_token1] = ACTIONS(7968), + [aux_sym_else_fragment_token1] = ACTIONS(7968), + [aux_sym_select_statement_token1] = ACTIONS(7968), + [aux_sym__for_header_token1] = ACTIONS(7968), + [aux_sym_do_statement_token1] = ACTIONS(7968), + [aux_sym_do_condition_token1] = ACTIONS(7968), + [aux_sym_with_statement_token1] = ACTIONS(7968), + [aux_sym_exit_statement_token1] = ACTIONS(7968), + [sym_end_statement] = ACTIONS(7970), + [aux_sym_on_goto_statement_token1] = ACTIONS(7968), + [aux_sym_on_goto_statement_token2] = ACTIONS(7968), + [aux_sym_on_error_statement_token2] = ACTIONS(7968), + [sym__ambiguous_redim_statement] = ACTIONS(7970), + [aux_sym_erase_statement_token1] = ACTIONS(7968), + [aux_sym_open_statement_token1] = ACTIONS(7968), + [aux_sym_file_mode_token2] = ACTIONS(7968), + [aux_sym_file_access_token2] = ACTIONS(7968), + [aux_sym_file_lock_token2] = ACTIONS(7968), + [aux_sym_print_statement_token1] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7970), + [aux_sym_close_statement_token1] = ACTIONS(7968), + [aux_sym_put_statement_token1] = ACTIONS(7968), + [aux_sym_unlock_statement_token1] = ACTIONS(7968), + [aux_sym_seek_statement_token1] = ACTIONS(7968), + [sym_reset_statement] = ACTIONS(7968), + [aux_sym_raise_event_statement_token1] = ACTIONS(7968), + [sym_stop_statement] = ACTIONS(7968), + [sym_beep_statement] = ACTIONS(7968), + [aux_sym_unload_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token2] = ACTIONS(7968), + [aux_sym_def_type_statement_token3] = ACTIONS(7968), + [aux_sym_def_type_statement_token4] = ACTIONS(7968), + [aux_sym_def_type_statement_token5] = ACTIONS(7968), + [aux_sym_def_type_statement_token6] = ACTIONS(7968), + [aux_sym_def_type_statement_token7] = ACTIONS(7968), + [aux_sym_def_type_statement_token8] = ACTIONS(7968), + [aux_sym_def_type_statement_token9] = ACTIONS(7968), + [aux_sym_def_type_statement_token10] = ACTIONS(7968), + [aux_sym_def_type_statement_token11] = ACTIONS(7968), + [aux_sym_def_type_statement_token12] = ACTIONS(7968), + [aux_sym_def_type_statement_token13] = ACTIONS(7968), + [aux_sym_def_type_statement_token14] = ACTIONS(7968), + [aux_sym_call_statement_token1] = ACTIONS(7968), + [sym__ambiguous_call_statement] = ACTIONS(7968), + [aux_sym_addressof_expression_token1] = ACTIONS(7968), + [aux_sym_type_of_expression_token1] = ACTIONS(7968), + [aux_sym_unary_expression_token1] = ACTIONS(7968), + [sym_string_literal] = ACTIONS(7970), + [sym_number_literal] = ACTIONS(7970), + [aux_sym_boolean_literal_token1] = ACTIONS(7968), + [aux_sym_boolean_literal_token2] = ACTIONS(7968), + [sym_nothing_literal] = ACTIONS(7968), + [sym_null_literal] = ACTIONS(7968), + [sym_empty_literal] = ACTIONS(7968), + [sym_date_literal] = ACTIONS(7970), + [anon_sym_POUND] = ACTIONS(7968), + }, + [STATE(3892)] = { + [sym_identifier] = ACTIONS(7984), + [sym_newline] = ACTIONS(7986), + [anon_sym_COLON] = ACTIONS(7986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7984), + [aux_sym_frm_property_statement_token1] = ACTIONS(7984), + [anon_sym_EQ] = ACTIONS(7986), + [anon_sym_DOT] = ACTIONS(7984), + [anon_sym_BANG] = ACTIONS(7986), + [aux_sym__attribute_identifier_token1] = ACTIONS(7984), + [aux_sym_option_statement_token3] = ACTIONS(7984), + [aux_sym_type_declaration_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7984), + [aux_sym_enum_declaration_token1] = ACTIONS(7984), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7984), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7984), + [aux_sym_declare_function_statement_token1] = ACTIONS(7984), + [aux_sym_preprocessor_const_token1] = ACTIONS(7984), + [aux_sym__property_get_header_token1] = ACTIONS(7984), + [aux_sym_event_declaration_token1] = ACTIONS(7984), + [sym_static_modifier] = ACTIONS(7984), + [sym__dim_keyword] = ACTIONS(7984), + [sym__redim_keyword] = ACTIONS(7984), + [aux_sym_get_accessor_token1] = ACTIONS(7984), + [aux_sym_set_accessor_token1] = ACTIONS(7984), + [anon_sym_COMMA] = ACTIONS(7986), + [aux_sym_const_declaration_token1] = ACTIONS(7984), + [anon_sym_LPAREN] = ACTIONS(7986), + [aux_sym_as_type_clause_token2] = ACTIONS(7984), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7984), + [aux_sym_visibility_token1] = ACTIONS(7984), + [aux_sym_visibility_token2] = ACTIONS(7984), + [aux_sym_elseif_fragment_token1] = ACTIONS(7984), + [aux_sym_else_fragment_token1] = ACTIONS(7984), + [aux_sym_select_statement_token1] = ACTIONS(7984), + [aux_sym__for_header_token1] = ACTIONS(7984), + [aux_sym_do_statement_token1] = ACTIONS(7984), + [aux_sym_do_condition_token1] = ACTIONS(7984), + [aux_sym_with_statement_token1] = ACTIONS(7984), + [aux_sym_exit_statement_token1] = ACTIONS(7984), + [sym_end_statement] = ACTIONS(7986), + [aux_sym_on_goto_statement_token1] = ACTIONS(7984), + [aux_sym_on_goto_statement_token2] = ACTIONS(7984), + [aux_sym_on_error_statement_token2] = ACTIONS(7984), + [sym__ambiguous_redim_statement] = ACTIONS(7986), + [aux_sym_erase_statement_token1] = ACTIONS(7984), + [aux_sym_open_statement_token1] = ACTIONS(7984), + [aux_sym_file_mode_token2] = ACTIONS(7984), + [aux_sym_file_access_token2] = ACTIONS(7984), + [aux_sym_file_lock_token2] = ACTIONS(7984), + [aux_sym_print_statement_token1] = ACTIONS(7984), + [anon_sym_PLUS] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(7984), + [anon_sym_QMARK] = ACTIONS(7986), + [aux_sym_close_statement_token1] = ACTIONS(7984), + [aux_sym_put_statement_token1] = ACTIONS(7984), + [aux_sym_unlock_statement_token1] = ACTIONS(7984), + [aux_sym_seek_statement_token1] = ACTIONS(7984), + [sym_reset_statement] = ACTIONS(7984), + [aux_sym_raise_event_statement_token1] = ACTIONS(7984), + [sym_stop_statement] = ACTIONS(7984), + [sym_beep_statement] = ACTIONS(7984), + [aux_sym_unload_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token2] = ACTIONS(7984), + [aux_sym_def_type_statement_token3] = ACTIONS(7984), + [aux_sym_def_type_statement_token4] = ACTIONS(7984), + [aux_sym_def_type_statement_token5] = ACTIONS(7984), + [aux_sym_def_type_statement_token6] = ACTIONS(7984), + [aux_sym_def_type_statement_token7] = ACTIONS(7984), + [aux_sym_def_type_statement_token8] = ACTIONS(7984), + [aux_sym_def_type_statement_token9] = ACTIONS(7984), + [aux_sym_def_type_statement_token10] = ACTIONS(7984), + [aux_sym_def_type_statement_token11] = ACTIONS(7984), + [aux_sym_def_type_statement_token12] = ACTIONS(7984), + [aux_sym_def_type_statement_token13] = ACTIONS(7984), + [aux_sym_def_type_statement_token14] = ACTIONS(7984), + [aux_sym_call_statement_token1] = ACTIONS(7984), + [sym__ambiguous_call_statement] = ACTIONS(7984), + [aux_sym_addressof_expression_token1] = ACTIONS(7984), + [aux_sym_type_of_expression_token1] = ACTIONS(7984), + [aux_sym_unary_expression_token1] = ACTIONS(7984), + [sym_string_literal] = ACTIONS(7986), + [sym_number_literal] = ACTIONS(7986), + [aux_sym_boolean_literal_token1] = ACTIONS(7984), + [aux_sym_boolean_literal_token2] = ACTIONS(7984), + [sym_nothing_literal] = ACTIONS(7984), + [sym_null_literal] = ACTIONS(7984), + [sym_empty_literal] = ACTIONS(7984), + [sym_date_literal] = ACTIONS(7986), + [anon_sym_POUND] = ACTIONS(7984), + }, + [STATE(3893)] = { + [sym_identifier] = ACTIONS(8022), + [sym_newline] = ACTIONS(8024), + [anon_sym_COLON] = ACTIONS(8024), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8022), + [aux_sym_frm_property_statement_token1] = ACTIONS(8022), + [anon_sym_EQ] = ACTIONS(8024), + [anon_sym_DOT] = ACTIONS(8022), + [anon_sym_BANG] = ACTIONS(8024), + [aux_sym__attribute_identifier_token1] = ACTIONS(8022), + [aux_sym_option_statement_token3] = ACTIONS(8022), + [aux_sym_type_declaration_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8022), + [aux_sym_enum_declaration_token1] = ACTIONS(8022), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8022), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8022), + [aux_sym_declare_function_statement_token1] = ACTIONS(8022), + [aux_sym_preprocessor_const_token1] = ACTIONS(8022), + [aux_sym__property_get_header_token1] = ACTIONS(8022), + [aux_sym_event_declaration_token1] = ACTIONS(8022), + [sym_static_modifier] = ACTIONS(8022), + [sym__dim_keyword] = ACTIONS(8022), + [sym__redim_keyword] = ACTIONS(8022), + [aux_sym_get_accessor_token1] = ACTIONS(8022), + [aux_sym_set_accessor_token1] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8024), + [aux_sym_const_declaration_token1] = ACTIONS(8022), + [anon_sym_LPAREN] = ACTIONS(8024), + [aux_sym_as_type_clause_token2] = ACTIONS(8022), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8022), + [aux_sym_visibility_token1] = ACTIONS(8022), + [aux_sym_visibility_token2] = ACTIONS(8022), + [aux_sym_elseif_fragment_token1] = ACTIONS(8022), + [aux_sym_else_fragment_token1] = ACTIONS(8022), + [aux_sym_select_statement_token1] = ACTIONS(8022), + [aux_sym__for_header_token1] = ACTIONS(8022), + [aux_sym_do_statement_token1] = ACTIONS(8022), + [aux_sym_do_condition_token1] = ACTIONS(8022), + [aux_sym_with_statement_token1] = ACTIONS(8022), + [aux_sym_exit_statement_token1] = ACTIONS(8022), + [sym_end_statement] = ACTIONS(8024), + [aux_sym_on_goto_statement_token1] = ACTIONS(8022), + [aux_sym_on_goto_statement_token2] = ACTIONS(8022), + [aux_sym_on_error_statement_token2] = ACTIONS(8022), + [sym__ambiguous_redim_statement] = ACTIONS(8024), + [aux_sym_erase_statement_token1] = ACTIONS(8022), + [aux_sym_open_statement_token1] = ACTIONS(8022), + [aux_sym_file_mode_token2] = ACTIONS(8022), + [aux_sym_file_access_token2] = ACTIONS(8022), + [aux_sym_file_lock_token2] = ACTIONS(8022), + [aux_sym_print_statement_token1] = ACTIONS(8022), + [anon_sym_PLUS] = ACTIONS(8024), + [anon_sym_DASH] = ACTIONS(8022), + [anon_sym_QMARK] = ACTIONS(8024), + [aux_sym_close_statement_token1] = ACTIONS(8022), + [aux_sym_put_statement_token1] = ACTIONS(8022), + [aux_sym_unlock_statement_token1] = ACTIONS(8022), + [aux_sym_seek_statement_token1] = ACTIONS(8022), + [sym_reset_statement] = ACTIONS(8022), + [aux_sym_raise_event_statement_token1] = ACTIONS(8022), + [sym_stop_statement] = ACTIONS(8022), + [sym_beep_statement] = ACTIONS(8022), + [aux_sym_unload_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token2] = ACTIONS(8022), + [aux_sym_def_type_statement_token3] = ACTIONS(8022), + [aux_sym_def_type_statement_token4] = ACTIONS(8022), + [aux_sym_def_type_statement_token5] = ACTIONS(8022), + [aux_sym_def_type_statement_token6] = ACTIONS(8022), + [aux_sym_def_type_statement_token7] = ACTIONS(8022), + [aux_sym_def_type_statement_token8] = ACTIONS(8022), + [aux_sym_def_type_statement_token9] = ACTIONS(8022), + [aux_sym_def_type_statement_token10] = ACTIONS(8022), + [aux_sym_def_type_statement_token11] = ACTIONS(8022), + [aux_sym_def_type_statement_token12] = ACTIONS(8022), + [aux_sym_def_type_statement_token13] = ACTIONS(8022), + [aux_sym_def_type_statement_token14] = ACTIONS(8022), + [aux_sym_call_statement_token1] = ACTIONS(8022), + [sym__ambiguous_call_statement] = ACTIONS(8022), + [aux_sym_addressof_expression_token1] = ACTIONS(8022), + [aux_sym_type_of_expression_token1] = ACTIONS(8022), + [aux_sym_unary_expression_token1] = ACTIONS(8022), + [sym_string_literal] = ACTIONS(8024), + [sym_number_literal] = ACTIONS(8024), + [aux_sym_boolean_literal_token1] = ACTIONS(8022), + [aux_sym_boolean_literal_token2] = ACTIONS(8022), + [sym_nothing_literal] = ACTIONS(8022), + [sym_null_literal] = ACTIONS(8022), + [sym_empty_literal] = ACTIONS(8022), + [sym_date_literal] = ACTIONS(8024), + [anon_sym_POUND] = ACTIONS(8022), + }, + [STATE(3894)] = { + [sym_identifier] = ACTIONS(8786), + [sym_newline] = ACTIONS(8788), + [anon_sym_COLON] = ACTIONS(8788), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8786), + [aux_sym_frm_property_statement_token1] = ACTIONS(8786), + [anon_sym_DOT] = ACTIONS(8786), + [anon_sym_BANG] = ACTIONS(8788), + [aux_sym__attribute_identifier_token1] = ACTIONS(8786), + [aux_sym_option_statement_token3] = ACTIONS(8786), + [aux_sym_type_declaration_token1] = ACTIONS(8786), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8786), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8786), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8786), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8786), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8786), + [aux_sym_enum_declaration_token1] = ACTIONS(8786), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8786), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8786), + [aux_sym_declare_function_statement_token1] = ACTIONS(8786), + [aux_sym_preprocessor_const_token1] = ACTIONS(8786), + [aux_sym__property_get_header_token1] = ACTIONS(8786), + [aux_sym_event_declaration_token1] = ACTIONS(8786), + [sym_static_modifier] = ACTIONS(8786), + [sym__dim_keyword] = ACTIONS(8786), + [sym__redim_keyword] = ACTIONS(8786), + [aux_sym_get_accessor_token1] = ACTIONS(8786), + [aux_sym_set_accessor_token1] = ACTIONS(8786), + [aux_sym_const_declaration_token1] = ACTIONS(8786), + [anon_sym_LPAREN] = ACTIONS(8788), + [aux_sym_as_type_clause_token2] = ACTIONS(8786), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8786), + [aux_sym_visibility_token1] = ACTIONS(8786), + [aux_sym_visibility_token2] = ACTIONS(8786), + [aux_sym_elseif_fragment_token1] = ACTIONS(8786), + [aux_sym_else_fragment_token1] = ACTIONS(8786), + [aux_sym_select_statement_token1] = ACTIONS(8786), + [aux_sym__for_header_token1] = ACTIONS(8786), + [aux_sym_do_statement_token1] = ACTIONS(8786), + [aux_sym_do_condition_token1] = ACTIONS(8786), + [aux_sym_with_statement_token1] = ACTIONS(8786), + [aux_sym_exit_statement_token1] = ACTIONS(8786), + [sym_end_statement] = ACTIONS(8788), + [aux_sym_on_goto_statement_token1] = ACTIONS(8786), + [aux_sym_on_goto_statement_token2] = ACTIONS(8786), + [aux_sym_on_error_statement_token2] = ACTIONS(8786), + [sym__ambiguous_redim_statement] = ACTIONS(8788), + [aux_sym_erase_statement_token1] = ACTIONS(8786), + [aux_sym_open_statement_token1] = ACTIONS(8786), + [aux_sym_file_mode_token2] = ACTIONS(8786), + [aux_sym_file_access_token2] = ACTIONS(8786), + [aux_sym_file_lock_token2] = ACTIONS(8786), + [aux_sym_print_statement_token1] = ACTIONS(8786), + [anon_sym_PLUS] = ACTIONS(8788), + [anon_sym_DASH] = ACTIONS(8786), + [anon_sym_QMARK] = ACTIONS(8788), + [aux_sym_close_statement_token1] = ACTIONS(8786), + [aux_sym_put_statement_token1] = ACTIONS(8786), + [aux_sym_unlock_statement_token1] = ACTIONS(8786), + [aux_sym_seek_statement_token1] = ACTIONS(8786), + [sym_reset_statement] = ACTIONS(8786), + [aux_sym_raise_event_statement_token1] = ACTIONS(8786), + [sym_stop_statement] = ACTIONS(8786), + [sym_beep_statement] = ACTIONS(8786), + [aux_sym_unload_statement_token1] = ACTIONS(8786), + [aux_sym_def_type_statement_token1] = ACTIONS(8786), + [aux_sym_def_type_statement_token2] = ACTIONS(8786), + [aux_sym_def_type_statement_token3] = ACTIONS(8786), + [aux_sym_def_type_statement_token4] = ACTIONS(8786), + [aux_sym_def_type_statement_token5] = ACTIONS(8786), + [aux_sym_def_type_statement_token6] = ACTIONS(8786), + [aux_sym_def_type_statement_token7] = ACTIONS(8786), + [aux_sym_def_type_statement_token8] = ACTIONS(8786), + [aux_sym_def_type_statement_token9] = ACTIONS(8786), + [aux_sym_def_type_statement_token10] = ACTIONS(8786), + [aux_sym_def_type_statement_token11] = ACTIONS(8786), + [aux_sym_def_type_statement_token12] = ACTIONS(8786), + [aux_sym_def_type_statement_token13] = ACTIONS(8786), + [aux_sym_def_type_statement_token14] = ACTIONS(8786), + [aux_sym_call_statement_token1] = ACTIONS(8786), + [sym__ambiguous_call_statement] = ACTIONS(8786), + [aux_sym_addressof_expression_token1] = ACTIONS(8786), + [aux_sym_type_of_expression_token1] = ACTIONS(8786), + [aux_sym_unary_expression_token1] = ACTIONS(8786), + [sym_string_literal] = ACTIONS(8788), + [sym_number_literal] = ACTIONS(8788), + [aux_sym_boolean_literal_token1] = ACTIONS(8786), + [aux_sym_boolean_literal_token2] = ACTIONS(8786), + [sym_nothing_literal] = ACTIONS(8786), + [sym_null_literal] = ACTIONS(8786), + [sym_empty_literal] = ACTIONS(8786), + [sym_date_literal] = ACTIONS(8788), + [anon_sym_POUND] = ACTIONS(8786), + }, + [STATE(3895)] = { + [sym_identifier] = ACTIONS(9072), + [sym_newline] = ACTIONS(9074), + [anon_sym_COLON] = ACTIONS(9074), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9072), + [aux_sym_frm_property_statement_token1] = ACTIONS(9072), + [anon_sym_DOT] = ACTIONS(9072), + [anon_sym_BANG] = ACTIONS(9074), + [aux_sym__attribute_identifier_token1] = ACTIONS(9072), + [aux_sym_option_statement_token3] = ACTIONS(9072), + [aux_sym_type_declaration_token1] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9072), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9072), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9072), + [aux_sym_enum_declaration_token1] = ACTIONS(9072), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9072), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9072), + [aux_sym_declare_function_statement_token1] = ACTIONS(9072), + [aux_sym_preprocessor_const_token1] = ACTIONS(9072), + [aux_sym__property_get_header_token1] = ACTIONS(9072), + [aux_sym_event_declaration_token1] = ACTIONS(9072), + [sym_static_modifier] = ACTIONS(9072), + [sym__dim_keyword] = ACTIONS(9072), + [sym__redim_keyword] = ACTIONS(9072), + [aux_sym_get_accessor_token1] = ACTIONS(9072), + [aux_sym_set_accessor_token1] = ACTIONS(9072), + [aux_sym_const_declaration_token1] = ACTIONS(9072), + [anon_sym_LPAREN] = ACTIONS(9074), + [aux_sym_as_type_clause_token2] = ACTIONS(9072), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9072), + [aux_sym_visibility_token1] = ACTIONS(9072), + [aux_sym_visibility_token2] = ACTIONS(9072), + [aux_sym_elseif_fragment_token1] = ACTIONS(9072), + [aux_sym_else_fragment_token1] = ACTIONS(9072), + [aux_sym_select_statement_token1] = ACTIONS(9072), + [aux_sym__for_header_token1] = ACTIONS(9072), + [aux_sym_do_statement_token1] = ACTIONS(9072), + [aux_sym_do_condition_token1] = ACTIONS(9072), + [aux_sym_with_statement_token1] = ACTIONS(9072), + [aux_sym_exit_statement_token1] = ACTIONS(9072), + [sym_end_statement] = ACTIONS(9074), + [aux_sym_on_goto_statement_token1] = ACTIONS(9072), + [aux_sym_on_goto_statement_token2] = ACTIONS(9072), + [aux_sym_on_error_statement_token2] = ACTIONS(9072), + [sym__ambiguous_redim_statement] = ACTIONS(9074), + [aux_sym_erase_statement_token1] = ACTIONS(9072), + [aux_sym_open_statement_token1] = ACTIONS(9072), + [aux_sym_file_mode_token2] = ACTIONS(9072), + [aux_sym_file_access_token2] = ACTIONS(9072), + [aux_sym_file_lock_token2] = ACTIONS(9072), + [aux_sym_print_statement_token1] = ACTIONS(9072), + [anon_sym_PLUS] = ACTIONS(9074), + [anon_sym_DASH] = ACTIONS(9072), + [anon_sym_QMARK] = ACTIONS(9074), + [aux_sym_close_statement_token1] = ACTIONS(9072), + [aux_sym_put_statement_token1] = ACTIONS(9072), + [aux_sym_unlock_statement_token1] = ACTIONS(9072), + [aux_sym_seek_statement_token1] = ACTIONS(9072), + [sym_reset_statement] = ACTIONS(9072), + [aux_sym_raise_event_statement_token1] = ACTIONS(9072), + [sym_stop_statement] = ACTIONS(9072), + [sym_beep_statement] = ACTIONS(9072), + [aux_sym_unload_statement_token1] = ACTIONS(9072), + [aux_sym_def_type_statement_token1] = ACTIONS(9072), + [aux_sym_def_type_statement_token2] = ACTIONS(9072), + [aux_sym_def_type_statement_token3] = ACTIONS(9072), + [aux_sym_def_type_statement_token4] = ACTIONS(9072), + [aux_sym_def_type_statement_token5] = ACTIONS(9072), + [aux_sym_def_type_statement_token6] = ACTIONS(9072), + [aux_sym_def_type_statement_token7] = ACTIONS(9072), + [aux_sym_def_type_statement_token8] = ACTIONS(9072), + [aux_sym_def_type_statement_token9] = ACTIONS(9072), + [aux_sym_def_type_statement_token10] = ACTIONS(9072), + [aux_sym_def_type_statement_token11] = ACTIONS(9072), + [aux_sym_def_type_statement_token12] = ACTIONS(9072), + [aux_sym_def_type_statement_token13] = ACTIONS(9072), + [aux_sym_def_type_statement_token14] = ACTIONS(9072), + [aux_sym_call_statement_token1] = ACTIONS(9072), + [sym__ambiguous_call_statement] = ACTIONS(9072), + [aux_sym_addressof_expression_token1] = ACTIONS(9072), + [aux_sym_type_of_expression_token1] = ACTIONS(9072), + [aux_sym_unary_expression_token1] = ACTIONS(9072), + [sym_string_literal] = ACTIONS(9074), + [sym_number_literal] = ACTIONS(9074), + [aux_sym_boolean_literal_token1] = ACTIONS(9072), + [aux_sym_boolean_literal_token2] = ACTIONS(9072), + [sym_nothing_literal] = ACTIONS(9072), + [sym_null_literal] = ACTIONS(9072), + [sym_empty_literal] = ACTIONS(9072), + [sym_date_literal] = ACTIONS(9074), + [anon_sym_POUND] = ACTIONS(9072), + }, + [STATE(3896)] = { + [sym_identifier] = ACTIONS(9076), + [sym_newline] = ACTIONS(9078), + [anon_sym_COLON] = ACTIONS(9078), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9076), + [aux_sym_frm_property_statement_token1] = ACTIONS(9076), + [anon_sym_DOT] = ACTIONS(9076), + [anon_sym_BANG] = ACTIONS(9078), + [aux_sym__attribute_identifier_token1] = ACTIONS(9076), + [aux_sym_option_statement_token3] = ACTIONS(9076), + [aux_sym_type_declaration_token1] = ACTIONS(9076), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9076), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9076), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9076), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9076), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9076), + [aux_sym_enum_declaration_token1] = ACTIONS(9076), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9076), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9076), + [aux_sym_declare_function_statement_token1] = ACTIONS(9076), + [aux_sym_preprocessor_const_token1] = ACTIONS(9076), + [aux_sym__property_get_header_token1] = ACTIONS(9076), + [aux_sym_event_declaration_token1] = ACTIONS(9076), + [sym_static_modifier] = ACTIONS(9076), + [sym__dim_keyword] = ACTIONS(9076), + [sym__redim_keyword] = ACTIONS(9076), + [aux_sym_get_accessor_token1] = ACTIONS(9076), + [aux_sym_set_accessor_token1] = ACTIONS(9076), + [aux_sym_const_declaration_token1] = ACTIONS(9076), + [anon_sym_LPAREN] = ACTIONS(9078), + [aux_sym_as_type_clause_token2] = ACTIONS(9076), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9076), + [aux_sym_visibility_token1] = ACTIONS(9076), + [aux_sym_visibility_token2] = ACTIONS(9076), + [aux_sym_elseif_fragment_token1] = ACTIONS(9076), + [aux_sym_else_fragment_token1] = ACTIONS(9076), + [aux_sym_select_statement_token1] = ACTIONS(9076), + [aux_sym__for_header_token1] = ACTIONS(9076), + [aux_sym_do_statement_token1] = ACTIONS(9076), + [aux_sym_do_condition_token1] = ACTIONS(9076), + [aux_sym_with_statement_token1] = ACTIONS(9076), + [aux_sym_exit_statement_token1] = ACTIONS(9076), + [sym_end_statement] = ACTIONS(9078), + [aux_sym_on_goto_statement_token1] = ACTIONS(9076), + [aux_sym_on_goto_statement_token2] = ACTIONS(9076), + [aux_sym_on_error_statement_token2] = ACTIONS(9076), + [sym__ambiguous_redim_statement] = ACTIONS(9078), + [aux_sym_erase_statement_token1] = ACTIONS(9076), + [aux_sym_open_statement_token1] = ACTIONS(9076), + [aux_sym_file_mode_token2] = ACTIONS(9076), + [aux_sym_file_access_token2] = ACTIONS(9076), + [aux_sym_file_lock_token2] = ACTIONS(9076), + [aux_sym_print_statement_token1] = ACTIONS(9076), + [anon_sym_PLUS] = ACTIONS(9078), + [anon_sym_DASH] = ACTIONS(9076), + [anon_sym_QMARK] = ACTIONS(9078), + [aux_sym_close_statement_token1] = ACTIONS(9076), + [aux_sym_put_statement_token1] = ACTIONS(9076), + [aux_sym_unlock_statement_token1] = ACTIONS(9076), + [aux_sym_seek_statement_token1] = ACTIONS(9076), + [sym_reset_statement] = ACTIONS(9076), + [aux_sym_raise_event_statement_token1] = ACTIONS(9076), + [sym_stop_statement] = ACTIONS(9076), + [sym_beep_statement] = ACTIONS(9076), + [aux_sym_unload_statement_token1] = ACTIONS(9076), + [aux_sym_def_type_statement_token1] = ACTIONS(9076), + [aux_sym_def_type_statement_token2] = ACTIONS(9076), + [aux_sym_def_type_statement_token3] = ACTIONS(9076), + [aux_sym_def_type_statement_token4] = ACTIONS(9076), + [aux_sym_def_type_statement_token5] = ACTIONS(9076), + [aux_sym_def_type_statement_token6] = ACTIONS(9076), + [aux_sym_def_type_statement_token7] = ACTIONS(9076), + [aux_sym_def_type_statement_token8] = ACTIONS(9076), + [aux_sym_def_type_statement_token9] = ACTIONS(9076), + [aux_sym_def_type_statement_token10] = ACTIONS(9076), + [aux_sym_def_type_statement_token11] = ACTIONS(9076), + [aux_sym_def_type_statement_token12] = ACTIONS(9076), + [aux_sym_def_type_statement_token13] = ACTIONS(9076), + [aux_sym_def_type_statement_token14] = ACTIONS(9076), + [aux_sym_call_statement_token1] = ACTIONS(9076), + [sym__ambiguous_call_statement] = ACTIONS(9076), + [aux_sym_addressof_expression_token1] = ACTIONS(9076), + [aux_sym_type_of_expression_token1] = ACTIONS(9076), + [aux_sym_unary_expression_token1] = ACTIONS(9076), + [sym_string_literal] = ACTIONS(9078), + [sym_number_literal] = ACTIONS(9078), + [aux_sym_boolean_literal_token1] = ACTIONS(9076), + [aux_sym_boolean_literal_token2] = ACTIONS(9076), + [sym_nothing_literal] = ACTIONS(9076), + [sym_null_literal] = ACTIONS(9076), + [sym_empty_literal] = ACTIONS(9076), + [sym_date_literal] = ACTIONS(9078), + [anon_sym_POUND] = ACTIONS(9076), + }, + [STATE(3897)] = { + [sym_identifier] = ACTIONS(8923), + [sym_newline] = ACTIONS(8925), + [anon_sym_COLON] = ACTIONS(8925), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8923), + [aux_sym_frm_property_statement_token1] = ACTIONS(8923), + [anon_sym_DOT] = ACTIONS(8923), + [anon_sym_BANG] = ACTIONS(8925), + [aux_sym__attribute_identifier_token1] = ACTIONS(8923), + [aux_sym_option_statement_token3] = ACTIONS(8923), + [aux_sym_type_declaration_token1] = ACTIONS(8923), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8923), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8923), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8923), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8923), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8923), + [aux_sym_enum_declaration_token1] = ACTIONS(8923), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8923), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8923), + [aux_sym_declare_function_statement_token1] = ACTIONS(8923), + [aux_sym_preprocessor_const_token1] = ACTIONS(8923), + [aux_sym__property_get_header_token1] = ACTIONS(8923), + [aux_sym_event_declaration_token1] = ACTIONS(8923), + [sym_static_modifier] = ACTIONS(8923), + [sym__dim_keyword] = ACTIONS(8923), + [sym__redim_keyword] = ACTIONS(8923), + [aux_sym_get_accessor_token1] = ACTIONS(8923), + [aux_sym_set_accessor_token1] = ACTIONS(8923), + [aux_sym_const_declaration_token1] = ACTIONS(8923), + [anon_sym_LPAREN] = ACTIONS(8925), + [aux_sym_as_type_clause_token2] = ACTIONS(8923), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8923), + [aux_sym_visibility_token1] = ACTIONS(8923), + [aux_sym_visibility_token2] = ACTIONS(8923), + [aux_sym_elseif_fragment_token1] = ACTIONS(8923), + [aux_sym_else_fragment_token1] = ACTIONS(8923), + [aux_sym_select_statement_token1] = ACTIONS(8923), + [aux_sym__for_header_token1] = ACTIONS(8923), + [aux_sym_do_statement_token1] = ACTIONS(8923), + [aux_sym_do_condition_token1] = ACTIONS(8923), + [aux_sym_with_statement_token1] = ACTIONS(8923), + [aux_sym_exit_statement_token1] = ACTIONS(8923), + [sym_end_statement] = ACTIONS(8925), + [aux_sym_on_goto_statement_token1] = ACTIONS(8923), + [aux_sym_on_goto_statement_token2] = ACTIONS(8923), + [aux_sym_on_error_statement_token2] = ACTIONS(8923), + [sym__ambiguous_redim_statement] = ACTIONS(8925), + [aux_sym_erase_statement_token1] = ACTIONS(8923), + [aux_sym_open_statement_token1] = ACTIONS(8923), + [aux_sym_file_mode_token2] = ACTIONS(8923), + [aux_sym_file_access_token2] = ACTIONS(8923), + [aux_sym_file_lock_token2] = ACTIONS(8923), + [aux_sym_print_statement_token1] = ACTIONS(8923), + [anon_sym_PLUS] = ACTIONS(8925), + [anon_sym_DASH] = ACTIONS(8923), + [anon_sym_QMARK] = ACTIONS(8925), + [aux_sym_close_statement_token1] = ACTIONS(8923), + [aux_sym_put_statement_token1] = ACTIONS(8923), + [aux_sym_unlock_statement_token1] = ACTIONS(8923), + [aux_sym_seek_statement_token1] = ACTIONS(8923), + [sym_reset_statement] = ACTIONS(8923), + [aux_sym_raise_event_statement_token1] = ACTIONS(8923), + [sym_stop_statement] = ACTIONS(8923), + [sym_beep_statement] = ACTIONS(8923), + [aux_sym_unload_statement_token1] = ACTIONS(8923), + [aux_sym_def_type_statement_token1] = ACTIONS(8923), + [aux_sym_def_type_statement_token2] = ACTIONS(8923), + [aux_sym_def_type_statement_token3] = ACTIONS(8923), + [aux_sym_def_type_statement_token4] = ACTIONS(8923), + [aux_sym_def_type_statement_token5] = ACTIONS(8923), + [aux_sym_def_type_statement_token6] = ACTIONS(8923), + [aux_sym_def_type_statement_token7] = ACTIONS(8923), + [aux_sym_def_type_statement_token8] = ACTIONS(8923), + [aux_sym_def_type_statement_token9] = ACTIONS(8923), + [aux_sym_def_type_statement_token10] = ACTIONS(8923), + [aux_sym_def_type_statement_token11] = ACTIONS(8923), + [aux_sym_def_type_statement_token12] = ACTIONS(8923), + [aux_sym_def_type_statement_token13] = ACTIONS(8923), + [aux_sym_def_type_statement_token14] = ACTIONS(8923), + [aux_sym_call_statement_token1] = ACTIONS(8923), + [sym__ambiguous_call_statement] = ACTIONS(8923), + [aux_sym_addressof_expression_token1] = ACTIONS(8923), + [aux_sym_type_of_expression_token1] = ACTIONS(8923), + [aux_sym_unary_expression_token1] = ACTIONS(8923), + [sym_string_literal] = ACTIONS(8925), + [sym_number_literal] = ACTIONS(8925), + [aux_sym_boolean_literal_token1] = ACTIONS(8923), + [aux_sym_boolean_literal_token2] = ACTIONS(8923), + [sym_nothing_literal] = ACTIONS(8923), + [sym_null_literal] = ACTIONS(8923), + [sym_empty_literal] = ACTIONS(8923), + [sym_date_literal] = ACTIONS(8925), + [anon_sym_POUND] = ACTIONS(8923), + }, + [STATE(3898)] = { + [sym_identifier] = ACTIONS(9080), + [sym_newline] = ACTIONS(9082), + [anon_sym_COLON] = ACTIONS(9082), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9080), + [aux_sym_frm_property_statement_token1] = ACTIONS(9080), + [anon_sym_DOT] = ACTIONS(9080), + [anon_sym_BANG] = ACTIONS(9082), + [aux_sym__attribute_identifier_token1] = ACTIONS(9080), + [aux_sym_option_statement_token3] = ACTIONS(9080), + [aux_sym_type_declaration_token1] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9080), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9080), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9080), + [aux_sym_enum_declaration_token1] = ACTIONS(9080), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9080), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9080), + [aux_sym_declare_function_statement_token1] = ACTIONS(9080), + [aux_sym_preprocessor_const_token1] = ACTIONS(9080), + [aux_sym__property_get_header_token1] = ACTIONS(9080), + [aux_sym_event_declaration_token1] = ACTIONS(9080), + [sym_static_modifier] = ACTIONS(9080), + [sym__dim_keyword] = ACTIONS(9080), + [sym__redim_keyword] = ACTIONS(9080), + [aux_sym_get_accessor_token1] = ACTIONS(9080), + [aux_sym_set_accessor_token1] = ACTIONS(9080), + [aux_sym_const_declaration_token1] = ACTIONS(9080), + [anon_sym_LPAREN] = ACTIONS(9082), + [aux_sym_as_type_clause_token2] = ACTIONS(9080), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9080), + [aux_sym_visibility_token1] = ACTIONS(9080), + [aux_sym_visibility_token2] = ACTIONS(9080), + [aux_sym_elseif_fragment_token1] = ACTIONS(9080), + [aux_sym_else_fragment_token1] = ACTIONS(9080), + [aux_sym_select_statement_token1] = ACTIONS(9080), + [aux_sym__for_header_token1] = ACTIONS(9080), + [aux_sym_do_statement_token1] = ACTIONS(9080), + [aux_sym_do_condition_token1] = ACTIONS(9080), + [aux_sym_with_statement_token1] = ACTIONS(9080), + [aux_sym_exit_statement_token1] = ACTIONS(9080), + [sym_end_statement] = ACTIONS(9082), + [aux_sym_on_goto_statement_token1] = ACTIONS(9080), + [aux_sym_on_goto_statement_token2] = ACTIONS(9080), + [aux_sym_on_error_statement_token2] = ACTIONS(9080), + [sym__ambiguous_redim_statement] = ACTIONS(9082), + [aux_sym_erase_statement_token1] = ACTIONS(9080), + [aux_sym_open_statement_token1] = ACTIONS(9080), + [aux_sym_file_mode_token2] = ACTIONS(9080), + [aux_sym_file_access_token2] = ACTIONS(9080), + [aux_sym_file_lock_token2] = ACTIONS(9080), + [aux_sym_print_statement_token1] = ACTIONS(9080), + [anon_sym_PLUS] = ACTIONS(9082), + [anon_sym_DASH] = ACTIONS(9080), + [anon_sym_QMARK] = ACTIONS(9082), + [aux_sym_close_statement_token1] = ACTIONS(9080), + [aux_sym_put_statement_token1] = ACTIONS(9080), + [aux_sym_unlock_statement_token1] = ACTIONS(9080), + [aux_sym_seek_statement_token1] = ACTIONS(9080), + [sym_reset_statement] = ACTIONS(9080), + [aux_sym_raise_event_statement_token1] = ACTIONS(9080), + [sym_stop_statement] = ACTIONS(9080), + [sym_beep_statement] = ACTIONS(9080), + [aux_sym_unload_statement_token1] = ACTIONS(9080), + [aux_sym_def_type_statement_token1] = ACTIONS(9080), + [aux_sym_def_type_statement_token2] = ACTIONS(9080), + [aux_sym_def_type_statement_token3] = ACTIONS(9080), + [aux_sym_def_type_statement_token4] = ACTIONS(9080), + [aux_sym_def_type_statement_token5] = ACTIONS(9080), + [aux_sym_def_type_statement_token6] = ACTIONS(9080), + [aux_sym_def_type_statement_token7] = ACTIONS(9080), + [aux_sym_def_type_statement_token8] = ACTIONS(9080), + [aux_sym_def_type_statement_token9] = ACTIONS(9080), + [aux_sym_def_type_statement_token10] = ACTIONS(9080), + [aux_sym_def_type_statement_token11] = ACTIONS(9080), + [aux_sym_def_type_statement_token12] = ACTIONS(9080), + [aux_sym_def_type_statement_token13] = ACTIONS(9080), + [aux_sym_def_type_statement_token14] = ACTIONS(9080), + [aux_sym_call_statement_token1] = ACTIONS(9080), + [sym__ambiguous_call_statement] = ACTIONS(9080), + [aux_sym_addressof_expression_token1] = ACTIONS(9080), + [aux_sym_type_of_expression_token1] = ACTIONS(9080), + [aux_sym_unary_expression_token1] = ACTIONS(9080), + [sym_string_literal] = ACTIONS(9082), + [sym_number_literal] = ACTIONS(9082), + [aux_sym_boolean_literal_token1] = ACTIONS(9080), + [aux_sym_boolean_literal_token2] = ACTIONS(9080), + [sym_nothing_literal] = ACTIONS(9080), + [sym_null_literal] = ACTIONS(9080), + [sym_empty_literal] = ACTIONS(9080), + [sym_date_literal] = ACTIONS(9082), + [anon_sym_POUND] = ACTIONS(9080), + }, + [STATE(3899)] = { + [sym_identifier] = ACTIONS(9084), + [sym_newline] = ACTIONS(9086), + [anon_sym_COLON] = ACTIONS(9086), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9084), + [aux_sym_frm_property_statement_token1] = ACTIONS(9084), + [anon_sym_DOT] = ACTIONS(9084), + [anon_sym_BANG] = ACTIONS(9086), + [aux_sym__attribute_identifier_token1] = ACTIONS(9084), + [aux_sym_option_statement_token3] = ACTIONS(9084), + [aux_sym_type_declaration_token1] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9084), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9084), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9084), + [aux_sym_enum_declaration_token1] = ACTIONS(9084), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9084), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9084), + [aux_sym_declare_function_statement_token1] = ACTIONS(9084), + [aux_sym_preprocessor_const_token1] = ACTIONS(9084), + [aux_sym__property_get_header_token1] = ACTIONS(9084), + [aux_sym_event_declaration_token1] = ACTIONS(9084), + [sym_static_modifier] = ACTIONS(9084), + [sym__dim_keyword] = ACTIONS(9084), + [sym__redim_keyword] = ACTIONS(9084), + [aux_sym_get_accessor_token1] = ACTIONS(9084), + [aux_sym_set_accessor_token1] = ACTIONS(9084), + [aux_sym_const_declaration_token1] = ACTIONS(9084), + [anon_sym_LPAREN] = ACTIONS(9086), + [aux_sym_as_type_clause_token2] = ACTIONS(9084), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9084), + [aux_sym_visibility_token1] = ACTIONS(9084), + [aux_sym_visibility_token2] = ACTIONS(9084), + [aux_sym_elseif_fragment_token1] = ACTIONS(9084), + [aux_sym_else_fragment_token1] = ACTIONS(9084), + [aux_sym_select_statement_token1] = ACTIONS(9084), + [aux_sym__for_header_token1] = ACTIONS(9084), + [aux_sym_do_statement_token1] = ACTIONS(9084), + [aux_sym_do_condition_token1] = ACTIONS(9084), + [aux_sym_with_statement_token1] = ACTIONS(9084), + [aux_sym_exit_statement_token1] = ACTIONS(9084), + [sym_end_statement] = ACTIONS(9086), + [aux_sym_on_goto_statement_token1] = ACTIONS(9084), + [aux_sym_on_goto_statement_token2] = ACTIONS(9084), + [aux_sym_on_error_statement_token2] = ACTIONS(9084), + [sym__ambiguous_redim_statement] = ACTIONS(9086), + [aux_sym_erase_statement_token1] = ACTIONS(9084), + [aux_sym_open_statement_token1] = ACTIONS(9084), + [aux_sym_file_mode_token2] = ACTIONS(9084), + [aux_sym_file_access_token2] = ACTIONS(9084), + [aux_sym_file_lock_token2] = ACTIONS(9084), + [aux_sym_print_statement_token1] = ACTIONS(9084), + [anon_sym_PLUS] = ACTIONS(9086), + [anon_sym_DASH] = ACTIONS(9084), + [anon_sym_QMARK] = ACTIONS(9086), + [aux_sym_close_statement_token1] = ACTIONS(9084), + [aux_sym_put_statement_token1] = ACTIONS(9084), + [aux_sym_unlock_statement_token1] = ACTIONS(9084), + [aux_sym_seek_statement_token1] = ACTIONS(9084), + [sym_reset_statement] = ACTIONS(9084), + [aux_sym_raise_event_statement_token1] = ACTIONS(9084), + [sym_stop_statement] = ACTIONS(9084), + [sym_beep_statement] = ACTIONS(9084), + [aux_sym_unload_statement_token1] = ACTIONS(9084), + [aux_sym_def_type_statement_token1] = ACTIONS(9084), + [aux_sym_def_type_statement_token2] = ACTIONS(9084), + [aux_sym_def_type_statement_token3] = ACTIONS(9084), + [aux_sym_def_type_statement_token4] = ACTIONS(9084), + [aux_sym_def_type_statement_token5] = ACTIONS(9084), + [aux_sym_def_type_statement_token6] = ACTIONS(9084), + [aux_sym_def_type_statement_token7] = ACTIONS(9084), + [aux_sym_def_type_statement_token8] = ACTIONS(9084), + [aux_sym_def_type_statement_token9] = ACTIONS(9084), + [aux_sym_def_type_statement_token10] = ACTIONS(9084), + [aux_sym_def_type_statement_token11] = ACTIONS(9084), + [aux_sym_def_type_statement_token12] = ACTIONS(9084), + [aux_sym_def_type_statement_token13] = ACTIONS(9084), + [aux_sym_def_type_statement_token14] = ACTIONS(9084), + [aux_sym_call_statement_token1] = ACTIONS(9084), + [sym__ambiguous_call_statement] = ACTIONS(9084), + [aux_sym_addressof_expression_token1] = ACTIONS(9084), + [aux_sym_type_of_expression_token1] = ACTIONS(9084), + [aux_sym_unary_expression_token1] = ACTIONS(9084), + [sym_string_literal] = ACTIONS(9086), + [sym_number_literal] = ACTIONS(9086), + [aux_sym_boolean_literal_token1] = ACTIONS(9084), + [aux_sym_boolean_literal_token2] = ACTIONS(9084), + [sym_nothing_literal] = ACTIONS(9084), + [sym_null_literal] = ACTIONS(9084), + [sym_empty_literal] = ACTIONS(9084), + [sym_date_literal] = ACTIONS(9086), + [anon_sym_POUND] = ACTIONS(9084), + }, + [STATE(3900)] = { + [sym_identifier] = ACTIONS(9088), + [sym_newline] = ACTIONS(9090), + [anon_sym_COLON] = ACTIONS(9090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9088), + [aux_sym_frm_property_statement_token1] = ACTIONS(9088), + [anon_sym_DOT] = ACTIONS(9088), + [anon_sym_BANG] = ACTIONS(9090), + [aux_sym__attribute_identifier_token1] = ACTIONS(9088), + [aux_sym_option_statement_token3] = ACTIONS(9088), + [aux_sym_type_declaration_token1] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9088), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9088), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9088), + [aux_sym_enum_declaration_token1] = ACTIONS(9088), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9088), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9088), + [aux_sym_declare_function_statement_token1] = ACTIONS(9088), + [aux_sym_preprocessor_const_token1] = ACTIONS(9088), + [aux_sym__property_get_header_token1] = ACTIONS(9088), + [aux_sym_event_declaration_token1] = ACTIONS(9088), + [sym_static_modifier] = ACTIONS(9088), + [sym__dim_keyword] = ACTIONS(9088), + [sym__redim_keyword] = ACTIONS(9088), + [aux_sym_get_accessor_token1] = ACTIONS(9088), + [aux_sym_set_accessor_token1] = ACTIONS(9088), + [aux_sym_const_declaration_token1] = ACTIONS(9088), + [anon_sym_LPAREN] = ACTIONS(9090), + [aux_sym_as_type_clause_token2] = ACTIONS(9088), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9088), + [aux_sym_visibility_token1] = ACTIONS(9088), + [aux_sym_visibility_token2] = ACTIONS(9088), + [aux_sym_elseif_fragment_token1] = ACTIONS(9088), + [aux_sym_else_fragment_token1] = ACTIONS(9088), + [aux_sym_select_statement_token1] = ACTIONS(9088), + [aux_sym__for_header_token1] = ACTIONS(9088), + [aux_sym_do_statement_token1] = ACTIONS(9088), + [aux_sym_do_condition_token1] = ACTIONS(9088), + [aux_sym_with_statement_token1] = ACTIONS(9088), + [aux_sym_exit_statement_token1] = ACTIONS(9088), + [sym_end_statement] = ACTIONS(9090), + [aux_sym_on_goto_statement_token1] = ACTIONS(9088), + [aux_sym_on_goto_statement_token2] = ACTIONS(9088), + [aux_sym_on_error_statement_token2] = ACTIONS(9088), + [sym__ambiguous_redim_statement] = ACTIONS(9090), + [aux_sym_erase_statement_token1] = ACTIONS(9088), + [aux_sym_open_statement_token1] = ACTIONS(9088), + [aux_sym_file_mode_token2] = ACTIONS(9088), + [aux_sym_file_access_token2] = ACTIONS(9088), + [aux_sym_file_lock_token2] = ACTIONS(9088), + [aux_sym_print_statement_token1] = ACTIONS(9088), + [anon_sym_PLUS] = ACTIONS(9090), + [anon_sym_DASH] = ACTIONS(9088), + [anon_sym_QMARK] = ACTIONS(9090), + [aux_sym_close_statement_token1] = ACTIONS(9088), + [aux_sym_put_statement_token1] = ACTIONS(9088), + [aux_sym_unlock_statement_token1] = ACTIONS(9088), + [aux_sym_seek_statement_token1] = ACTIONS(9088), + [sym_reset_statement] = ACTIONS(9088), + [aux_sym_raise_event_statement_token1] = ACTIONS(9088), + [sym_stop_statement] = ACTIONS(9088), + [sym_beep_statement] = ACTIONS(9088), + [aux_sym_unload_statement_token1] = ACTIONS(9088), + [aux_sym_def_type_statement_token1] = ACTIONS(9088), + [aux_sym_def_type_statement_token2] = ACTIONS(9088), + [aux_sym_def_type_statement_token3] = ACTIONS(9088), + [aux_sym_def_type_statement_token4] = ACTIONS(9088), + [aux_sym_def_type_statement_token5] = ACTIONS(9088), + [aux_sym_def_type_statement_token6] = ACTIONS(9088), + [aux_sym_def_type_statement_token7] = ACTIONS(9088), + [aux_sym_def_type_statement_token8] = ACTIONS(9088), + [aux_sym_def_type_statement_token9] = ACTIONS(9088), + [aux_sym_def_type_statement_token10] = ACTIONS(9088), + [aux_sym_def_type_statement_token11] = ACTIONS(9088), + [aux_sym_def_type_statement_token12] = ACTIONS(9088), + [aux_sym_def_type_statement_token13] = ACTIONS(9088), + [aux_sym_def_type_statement_token14] = ACTIONS(9088), + [aux_sym_call_statement_token1] = ACTIONS(9088), + [sym__ambiguous_call_statement] = ACTIONS(9088), + [aux_sym_addressof_expression_token1] = ACTIONS(9088), + [aux_sym_type_of_expression_token1] = ACTIONS(9088), + [aux_sym_unary_expression_token1] = ACTIONS(9088), + [sym_string_literal] = ACTIONS(9090), + [sym_number_literal] = ACTIONS(9090), + [aux_sym_boolean_literal_token1] = ACTIONS(9088), + [aux_sym_boolean_literal_token2] = ACTIONS(9088), + [sym_nothing_literal] = ACTIONS(9088), + [sym_null_literal] = ACTIONS(9088), + [sym_empty_literal] = ACTIONS(9088), + [sym_date_literal] = ACTIONS(9090), + [anon_sym_POUND] = ACTIONS(9088), + }, + [STATE(3901)] = { + [sym_identifier] = ACTIONS(9092), + [sym_newline] = ACTIONS(9094), + [anon_sym_COLON] = ACTIONS(9096), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9092), + [aux_sym_frm_property_statement_token1] = ACTIONS(9092), + [anon_sym_DOT] = ACTIONS(9092), + [anon_sym_BANG] = ACTIONS(9094), + [aux_sym__attribute_identifier_token1] = ACTIONS(9092), + [aux_sym_option_statement_token3] = ACTIONS(9092), + [aux_sym_type_declaration_token1] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9092), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9092), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9092), + [aux_sym_enum_declaration_token1] = ACTIONS(9092), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9092), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9092), + [aux_sym_declare_function_statement_token1] = ACTIONS(9092), + [aux_sym_preprocessor_const_token1] = ACTIONS(9092), + [aux_sym__property_get_header_token1] = ACTIONS(9092), + [aux_sym_event_declaration_token1] = ACTIONS(9092), + [sym_static_modifier] = ACTIONS(9092), + [sym__dim_keyword] = ACTIONS(9092), + [sym__redim_keyword] = ACTIONS(9092), + [aux_sym_get_accessor_token1] = ACTIONS(9092), + [aux_sym_set_accessor_token1] = ACTIONS(9092), + [aux_sym_const_declaration_token1] = ACTIONS(9092), + [anon_sym_LPAREN] = ACTIONS(9094), + [aux_sym_as_type_clause_token2] = ACTIONS(9092), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9092), + [aux_sym_visibility_token1] = ACTIONS(9092), + [aux_sym_visibility_token2] = ACTIONS(9092), + [aux_sym_elseif_fragment_token1] = ACTIONS(9092), + [aux_sym_else_fragment_token1] = ACTIONS(9092), + [aux_sym_select_statement_token1] = ACTIONS(9092), + [aux_sym__for_header_token1] = ACTIONS(9092), + [aux_sym_do_statement_token1] = ACTIONS(9092), + [aux_sym_do_condition_token1] = ACTIONS(9092), + [aux_sym_with_statement_token1] = ACTIONS(9092), + [aux_sym_exit_statement_token1] = ACTIONS(9092), + [sym_end_statement] = ACTIONS(9094), + [aux_sym_on_goto_statement_token1] = ACTIONS(9092), + [aux_sym_on_goto_statement_token2] = ACTIONS(9092), + [aux_sym_on_error_statement_token2] = ACTIONS(9092), + [sym__ambiguous_redim_statement] = ACTIONS(9094), + [aux_sym_erase_statement_token1] = ACTIONS(9092), + [aux_sym_open_statement_token1] = ACTIONS(9092), + [aux_sym_file_mode_token2] = ACTIONS(9092), + [aux_sym_file_access_token2] = ACTIONS(9092), + [aux_sym_file_lock_token2] = ACTIONS(9092), + [aux_sym_print_statement_token1] = ACTIONS(9092), + [anon_sym_PLUS] = ACTIONS(9094), + [anon_sym_DASH] = ACTIONS(9092), + [anon_sym_QMARK] = ACTIONS(9094), + [aux_sym_close_statement_token1] = ACTIONS(9092), + [aux_sym_put_statement_token1] = ACTIONS(9092), + [aux_sym_unlock_statement_token1] = ACTIONS(9092), + [aux_sym_seek_statement_token1] = ACTIONS(9092), + [sym_reset_statement] = ACTIONS(9092), + [aux_sym_raise_event_statement_token1] = ACTIONS(9092), + [sym_stop_statement] = ACTIONS(9092), + [sym_beep_statement] = ACTIONS(9092), + [aux_sym_unload_statement_token1] = ACTIONS(9092), + [aux_sym_def_type_statement_token1] = ACTIONS(9092), + [aux_sym_def_type_statement_token2] = ACTIONS(9092), + [aux_sym_def_type_statement_token3] = ACTIONS(9092), + [aux_sym_def_type_statement_token4] = ACTIONS(9092), + [aux_sym_def_type_statement_token5] = ACTIONS(9092), + [aux_sym_def_type_statement_token6] = ACTIONS(9092), + [aux_sym_def_type_statement_token7] = ACTIONS(9092), + [aux_sym_def_type_statement_token8] = ACTIONS(9092), + [aux_sym_def_type_statement_token9] = ACTIONS(9092), + [aux_sym_def_type_statement_token10] = ACTIONS(9092), + [aux_sym_def_type_statement_token11] = ACTIONS(9092), + [aux_sym_def_type_statement_token12] = ACTIONS(9092), + [aux_sym_def_type_statement_token13] = ACTIONS(9092), + [aux_sym_def_type_statement_token14] = ACTIONS(9092), + [aux_sym_call_statement_token1] = ACTIONS(9092), + [sym__ambiguous_call_statement] = ACTIONS(9092), + [aux_sym_addressof_expression_token1] = ACTIONS(9092), + [aux_sym_type_of_expression_token1] = ACTIONS(9092), + [aux_sym_unary_expression_token1] = ACTIONS(9092), + [sym_string_literal] = ACTIONS(9094), + [sym_number_literal] = ACTIONS(9094), + [aux_sym_boolean_literal_token1] = ACTIONS(9092), + [aux_sym_boolean_literal_token2] = ACTIONS(9092), + [sym_nothing_literal] = ACTIONS(9092), + [sym_null_literal] = ACTIONS(9092), + [sym_empty_literal] = ACTIONS(9092), + [sym_date_literal] = ACTIONS(9094), + [anon_sym_POUND] = ACTIONS(9092), + }, + [STATE(3902)] = { + [sym_identifier] = ACTIONS(9099), + [sym_newline] = ACTIONS(9101), + [anon_sym_COLON] = ACTIONS(9103), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9099), + [aux_sym_frm_property_statement_token1] = ACTIONS(9099), + [anon_sym_DOT] = ACTIONS(9099), + [anon_sym_BANG] = ACTIONS(9101), + [aux_sym__attribute_identifier_token1] = ACTIONS(9099), + [aux_sym_option_statement_token3] = ACTIONS(9099), + [aux_sym_type_declaration_token1] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9099), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9099), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9099), + [aux_sym_enum_declaration_token1] = ACTIONS(9099), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9099), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9099), + [aux_sym_declare_function_statement_token1] = ACTIONS(9099), + [aux_sym_preprocessor_const_token1] = ACTIONS(9099), + [aux_sym__property_get_header_token1] = ACTIONS(9099), + [aux_sym_event_declaration_token1] = ACTIONS(9099), + [sym_static_modifier] = ACTIONS(9099), + [sym__dim_keyword] = ACTIONS(9099), + [sym__redim_keyword] = ACTIONS(9099), + [aux_sym_get_accessor_token1] = ACTIONS(9099), + [aux_sym_set_accessor_token1] = ACTIONS(9099), + [aux_sym_const_declaration_token1] = ACTIONS(9099), + [anon_sym_LPAREN] = ACTIONS(9101), + [aux_sym_as_type_clause_token2] = ACTIONS(9099), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9099), + [aux_sym_visibility_token1] = ACTIONS(9099), + [aux_sym_visibility_token2] = ACTIONS(9099), + [aux_sym_elseif_fragment_token1] = ACTIONS(9099), + [aux_sym_else_fragment_token1] = ACTIONS(9099), + [aux_sym_select_statement_token1] = ACTIONS(9099), + [aux_sym__for_header_token1] = ACTIONS(9099), + [aux_sym_do_statement_token1] = ACTIONS(9099), + [aux_sym_do_condition_token1] = ACTIONS(9099), + [aux_sym_with_statement_token1] = ACTIONS(9099), + [aux_sym_exit_statement_token1] = ACTIONS(9099), + [sym_end_statement] = ACTIONS(9101), + [aux_sym_on_goto_statement_token1] = ACTIONS(9099), + [aux_sym_on_goto_statement_token2] = ACTIONS(9099), + [aux_sym_on_error_statement_token2] = ACTIONS(9099), + [sym__ambiguous_redim_statement] = ACTIONS(9101), + [aux_sym_erase_statement_token1] = ACTIONS(9099), + [aux_sym_open_statement_token1] = ACTIONS(9099), + [aux_sym_file_mode_token2] = ACTIONS(9099), + [aux_sym_file_access_token2] = ACTIONS(9099), + [aux_sym_file_lock_token2] = ACTIONS(9099), + [aux_sym_print_statement_token1] = ACTIONS(9099), + [anon_sym_PLUS] = ACTIONS(9101), + [anon_sym_DASH] = ACTIONS(9099), + [anon_sym_QMARK] = ACTIONS(9101), + [aux_sym_close_statement_token1] = ACTIONS(9099), + [aux_sym_put_statement_token1] = ACTIONS(9099), + [aux_sym_unlock_statement_token1] = ACTIONS(9099), + [aux_sym_seek_statement_token1] = ACTIONS(9099), + [sym_reset_statement] = ACTIONS(9099), + [aux_sym_raise_event_statement_token1] = ACTIONS(9099), + [sym_stop_statement] = ACTIONS(9099), + [sym_beep_statement] = ACTIONS(9099), + [aux_sym_unload_statement_token1] = ACTIONS(9099), + [aux_sym_def_type_statement_token1] = ACTIONS(9099), + [aux_sym_def_type_statement_token2] = ACTIONS(9099), + [aux_sym_def_type_statement_token3] = ACTIONS(9099), + [aux_sym_def_type_statement_token4] = ACTIONS(9099), + [aux_sym_def_type_statement_token5] = ACTIONS(9099), + [aux_sym_def_type_statement_token6] = ACTIONS(9099), + [aux_sym_def_type_statement_token7] = ACTIONS(9099), + [aux_sym_def_type_statement_token8] = ACTIONS(9099), + [aux_sym_def_type_statement_token9] = ACTIONS(9099), + [aux_sym_def_type_statement_token10] = ACTIONS(9099), + [aux_sym_def_type_statement_token11] = ACTIONS(9099), + [aux_sym_def_type_statement_token12] = ACTIONS(9099), + [aux_sym_def_type_statement_token13] = ACTIONS(9099), + [aux_sym_def_type_statement_token14] = ACTIONS(9099), + [aux_sym_call_statement_token1] = ACTIONS(9099), + [sym__ambiguous_call_statement] = ACTIONS(9099), + [aux_sym_addressof_expression_token1] = ACTIONS(9099), + [aux_sym_type_of_expression_token1] = ACTIONS(9099), + [aux_sym_unary_expression_token1] = ACTIONS(9099), + [sym_string_literal] = ACTIONS(9101), + [sym_number_literal] = ACTIONS(9101), + [aux_sym_boolean_literal_token1] = ACTIONS(9099), + [aux_sym_boolean_literal_token2] = ACTIONS(9099), + [sym_nothing_literal] = ACTIONS(9099), + [sym_null_literal] = ACTIONS(9099), + [sym_empty_literal] = ACTIONS(9099), + [sym_date_literal] = ACTIONS(9101), + [anon_sym_POUND] = ACTIONS(9099), + }, + [STATE(3903)] = { + [sym_identifier] = ACTIONS(9106), + [sym_newline] = ACTIONS(9108), + [anon_sym_COLON] = ACTIONS(9108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9106), + [aux_sym_frm_property_statement_token1] = ACTIONS(9106), + [anon_sym_DOT] = ACTIONS(9106), + [anon_sym_BANG] = ACTIONS(9108), + [aux_sym__attribute_identifier_token1] = ACTIONS(9106), + [aux_sym_option_statement_token3] = ACTIONS(9106), + [aux_sym_type_declaration_token1] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9106), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9106), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9106), + [aux_sym_enum_declaration_token1] = ACTIONS(9106), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9106), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9106), + [aux_sym_declare_function_statement_token1] = ACTIONS(9106), + [aux_sym_preprocessor_const_token1] = ACTIONS(9106), + [aux_sym__property_get_header_token1] = ACTIONS(9106), + [aux_sym_event_declaration_token1] = ACTIONS(9106), + [sym_static_modifier] = ACTIONS(9106), + [sym__dim_keyword] = ACTIONS(9106), + [sym__redim_keyword] = ACTIONS(9106), + [aux_sym_get_accessor_token1] = ACTIONS(9106), + [aux_sym_set_accessor_token1] = ACTIONS(9106), + [aux_sym_const_declaration_token1] = ACTIONS(9106), + [anon_sym_LPAREN] = ACTIONS(9108), + [aux_sym_as_type_clause_token2] = ACTIONS(9106), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9106), + [aux_sym_visibility_token1] = ACTIONS(9106), + [aux_sym_visibility_token2] = ACTIONS(9106), + [aux_sym_elseif_fragment_token1] = ACTIONS(9106), + [aux_sym_else_fragment_token1] = ACTIONS(9106), + [aux_sym_select_statement_token1] = ACTIONS(9106), + [aux_sym__for_header_token1] = ACTIONS(9106), + [aux_sym_do_statement_token1] = ACTIONS(9106), + [aux_sym_do_condition_token1] = ACTIONS(9106), + [aux_sym_with_statement_token1] = ACTIONS(9106), + [aux_sym_exit_statement_token1] = ACTIONS(9106), + [sym_end_statement] = ACTIONS(9108), + [aux_sym_on_goto_statement_token1] = ACTIONS(9106), + [aux_sym_on_goto_statement_token2] = ACTIONS(9106), + [aux_sym_on_error_statement_token2] = ACTIONS(9106), + [sym__ambiguous_redim_statement] = ACTIONS(9108), + [aux_sym_erase_statement_token1] = ACTIONS(9106), + [aux_sym_open_statement_token1] = ACTIONS(9106), + [aux_sym_file_mode_token2] = ACTIONS(9106), + [aux_sym_file_access_token2] = ACTIONS(9106), + [aux_sym_file_lock_token2] = ACTIONS(9106), + [aux_sym_print_statement_token1] = ACTIONS(9106), + [anon_sym_PLUS] = ACTIONS(9108), + [anon_sym_DASH] = ACTIONS(9106), + [anon_sym_QMARK] = ACTIONS(9108), + [aux_sym_close_statement_token1] = ACTIONS(9106), + [aux_sym_put_statement_token1] = ACTIONS(9106), + [aux_sym_unlock_statement_token1] = ACTIONS(9106), + [aux_sym_seek_statement_token1] = ACTIONS(9106), + [sym_reset_statement] = ACTIONS(9106), + [aux_sym_raise_event_statement_token1] = ACTIONS(9106), + [sym_stop_statement] = ACTIONS(9106), + [sym_beep_statement] = ACTIONS(9106), + [aux_sym_unload_statement_token1] = ACTIONS(9106), + [aux_sym_def_type_statement_token1] = ACTIONS(9106), + [aux_sym_def_type_statement_token2] = ACTIONS(9106), + [aux_sym_def_type_statement_token3] = ACTIONS(9106), + [aux_sym_def_type_statement_token4] = ACTIONS(9106), + [aux_sym_def_type_statement_token5] = ACTIONS(9106), + [aux_sym_def_type_statement_token6] = ACTIONS(9106), + [aux_sym_def_type_statement_token7] = ACTIONS(9106), + [aux_sym_def_type_statement_token8] = ACTIONS(9106), + [aux_sym_def_type_statement_token9] = ACTIONS(9106), + [aux_sym_def_type_statement_token10] = ACTIONS(9106), + [aux_sym_def_type_statement_token11] = ACTIONS(9106), + [aux_sym_def_type_statement_token12] = ACTIONS(9106), + [aux_sym_def_type_statement_token13] = ACTIONS(9106), + [aux_sym_def_type_statement_token14] = ACTIONS(9106), + [aux_sym_call_statement_token1] = ACTIONS(9106), + [sym__ambiguous_call_statement] = ACTIONS(9106), + [aux_sym_addressof_expression_token1] = ACTIONS(9106), + [aux_sym_type_of_expression_token1] = ACTIONS(9106), + [aux_sym_unary_expression_token1] = ACTIONS(9106), + [sym_string_literal] = ACTIONS(9108), + [sym_number_literal] = ACTIONS(9108), + [aux_sym_boolean_literal_token1] = ACTIONS(9106), + [aux_sym_boolean_literal_token2] = ACTIONS(9106), + [sym_nothing_literal] = ACTIONS(9106), + [sym_null_literal] = ACTIONS(9106), + [sym_empty_literal] = ACTIONS(9106), + [sym_date_literal] = ACTIONS(9108), + [anon_sym_POUND] = ACTIONS(9106), + }, + [STATE(3904)] = { + [sym_identifier] = ACTIONS(8709), + [sym_newline] = ACTIONS(8711), + [anon_sym_COLON] = ACTIONS(8711), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8709), + [aux_sym_frm_property_statement_token1] = ACTIONS(8709), + [anon_sym_DOT] = ACTIONS(8709), + [anon_sym_BANG] = ACTIONS(8711), + [aux_sym__attribute_identifier_token1] = ACTIONS(8709), + [aux_sym_option_statement_token3] = ACTIONS(8709), + [aux_sym_type_declaration_token1] = ACTIONS(8709), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8709), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8709), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8709), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8709), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8709), + [aux_sym_enum_declaration_token1] = ACTIONS(8709), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8709), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8709), + [aux_sym_declare_function_statement_token1] = ACTIONS(8709), + [aux_sym_preprocessor_const_token1] = ACTIONS(8709), + [aux_sym__property_get_header_token1] = ACTIONS(8709), + [aux_sym_event_declaration_token1] = ACTIONS(8709), + [sym_static_modifier] = ACTIONS(8709), + [sym__dim_keyword] = ACTIONS(8709), + [sym__redim_keyword] = ACTIONS(8709), + [aux_sym_get_accessor_token1] = ACTIONS(8709), + [aux_sym_set_accessor_token1] = ACTIONS(8709), + [aux_sym_const_declaration_token1] = ACTIONS(8709), + [anon_sym_LPAREN] = ACTIONS(8711), + [aux_sym_as_type_clause_token2] = ACTIONS(8709), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8709), + [aux_sym_visibility_token1] = ACTIONS(8709), + [aux_sym_visibility_token2] = ACTIONS(8709), + [aux_sym_elseif_fragment_token1] = ACTIONS(8709), + [aux_sym_else_fragment_token1] = ACTIONS(8709), + [aux_sym_select_statement_token1] = ACTIONS(8709), + [aux_sym__for_header_token1] = ACTIONS(8709), + [aux_sym_do_statement_token1] = ACTIONS(8709), + [aux_sym_do_condition_token1] = ACTIONS(8709), + [aux_sym_with_statement_token1] = ACTIONS(8709), + [aux_sym_exit_statement_token1] = ACTIONS(8709), + [sym_end_statement] = ACTIONS(8711), + [aux_sym_on_goto_statement_token1] = ACTIONS(8709), + [aux_sym_on_goto_statement_token2] = ACTIONS(8709), + [aux_sym_on_error_statement_token2] = ACTIONS(8709), + [sym__ambiguous_redim_statement] = ACTIONS(8711), + [aux_sym_erase_statement_token1] = ACTIONS(8709), + [aux_sym_open_statement_token1] = ACTIONS(8709), + [aux_sym_file_mode_token2] = ACTIONS(8709), + [aux_sym_file_access_token2] = ACTIONS(8709), + [aux_sym_file_lock_token2] = ACTIONS(8709), + [aux_sym_print_statement_token1] = ACTIONS(8709), + [anon_sym_PLUS] = ACTIONS(8711), + [anon_sym_DASH] = ACTIONS(8709), + [anon_sym_QMARK] = ACTIONS(8711), + [aux_sym_close_statement_token1] = ACTIONS(8709), + [aux_sym_put_statement_token1] = ACTIONS(8709), + [aux_sym_unlock_statement_token1] = ACTIONS(8709), + [aux_sym_seek_statement_token1] = ACTIONS(8709), + [sym_reset_statement] = ACTIONS(8709), + [aux_sym_raise_event_statement_token1] = ACTIONS(8709), + [sym_stop_statement] = ACTIONS(8709), + [sym_beep_statement] = ACTIONS(8709), + [aux_sym_unload_statement_token1] = ACTIONS(8709), + [aux_sym_def_type_statement_token1] = ACTIONS(8709), + [aux_sym_def_type_statement_token2] = ACTIONS(8709), + [aux_sym_def_type_statement_token3] = ACTIONS(8709), + [aux_sym_def_type_statement_token4] = ACTIONS(8709), + [aux_sym_def_type_statement_token5] = ACTIONS(8709), + [aux_sym_def_type_statement_token6] = ACTIONS(8709), + [aux_sym_def_type_statement_token7] = ACTIONS(8709), + [aux_sym_def_type_statement_token8] = ACTIONS(8709), + [aux_sym_def_type_statement_token9] = ACTIONS(8709), + [aux_sym_def_type_statement_token10] = ACTIONS(8709), + [aux_sym_def_type_statement_token11] = ACTIONS(8709), + [aux_sym_def_type_statement_token12] = ACTIONS(8709), + [aux_sym_def_type_statement_token13] = ACTIONS(8709), + [aux_sym_def_type_statement_token14] = ACTIONS(8709), + [aux_sym_call_statement_token1] = ACTIONS(8709), + [sym__ambiguous_call_statement] = ACTIONS(8709), + [aux_sym_addressof_expression_token1] = ACTIONS(8709), + [aux_sym_type_of_expression_token1] = ACTIONS(8709), + [aux_sym_unary_expression_token1] = ACTIONS(8709), + [sym_string_literal] = ACTIONS(8711), + [sym_number_literal] = ACTIONS(8711), + [aux_sym_boolean_literal_token1] = ACTIONS(8709), + [aux_sym_boolean_literal_token2] = ACTIONS(8709), + [sym_nothing_literal] = ACTIONS(8709), + [sym_null_literal] = ACTIONS(8709), + [sym_empty_literal] = ACTIONS(8709), + [sym_date_literal] = ACTIONS(8711), + [anon_sym_POUND] = ACTIONS(8709), + }, + [STATE(3905)] = { + [sym_identifier] = ACTIONS(9110), + [sym_newline] = ACTIONS(9112), + [anon_sym_COLON] = ACTIONS(9112), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9110), + [aux_sym_frm_property_statement_token1] = ACTIONS(9110), + [anon_sym_DOT] = ACTIONS(9110), + [anon_sym_BANG] = ACTIONS(9112), + [aux_sym__attribute_identifier_token1] = ACTIONS(9110), + [aux_sym_option_statement_token3] = ACTIONS(9110), + [aux_sym_type_declaration_token1] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9110), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9110), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9110), + [aux_sym_enum_declaration_token1] = ACTIONS(9110), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9110), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9110), + [aux_sym_declare_function_statement_token1] = ACTIONS(9110), + [aux_sym_preprocessor_const_token1] = ACTIONS(9110), + [aux_sym__property_get_header_token1] = ACTIONS(9110), + [aux_sym_event_declaration_token1] = ACTIONS(9110), + [sym_static_modifier] = ACTIONS(9110), + [sym__dim_keyword] = ACTIONS(9110), + [sym__redim_keyword] = ACTIONS(9110), + [aux_sym_get_accessor_token1] = ACTIONS(9110), + [aux_sym_set_accessor_token1] = ACTIONS(9110), + [aux_sym_const_declaration_token1] = ACTIONS(9110), + [anon_sym_LPAREN] = ACTIONS(9112), + [aux_sym_as_type_clause_token2] = ACTIONS(9110), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9110), + [aux_sym_visibility_token1] = ACTIONS(9110), + [aux_sym_visibility_token2] = ACTIONS(9110), + [aux_sym_elseif_fragment_token1] = ACTIONS(9110), + [aux_sym_else_fragment_token1] = ACTIONS(9110), + [aux_sym_select_statement_token1] = ACTIONS(9110), + [aux_sym__for_header_token1] = ACTIONS(9110), + [aux_sym_do_statement_token1] = ACTIONS(9110), + [aux_sym_do_condition_token1] = ACTIONS(9110), + [aux_sym_with_statement_token1] = ACTIONS(9110), + [aux_sym_exit_statement_token1] = ACTIONS(9110), + [sym_end_statement] = ACTIONS(9112), + [aux_sym_on_goto_statement_token1] = ACTIONS(9110), + [aux_sym_on_goto_statement_token2] = ACTIONS(9110), + [aux_sym_on_error_statement_token2] = ACTIONS(9110), + [sym__ambiguous_redim_statement] = ACTIONS(9112), + [aux_sym_erase_statement_token1] = ACTIONS(9110), + [aux_sym_open_statement_token1] = ACTIONS(9110), + [aux_sym_file_mode_token2] = ACTIONS(9110), + [aux_sym_file_access_token2] = ACTIONS(9110), + [aux_sym_file_lock_token2] = ACTIONS(9110), + [aux_sym_print_statement_token1] = ACTIONS(9110), + [anon_sym_PLUS] = ACTIONS(9112), + [anon_sym_DASH] = ACTIONS(9110), + [anon_sym_QMARK] = ACTIONS(9112), + [aux_sym_close_statement_token1] = ACTIONS(9110), + [aux_sym_put_statement_token1] = ACTIONS(9110), + [aux_sym_unlock_statement_token1] = ACTIONS(9110), + [aux_sym_seek_statement_token1] = ACTIONS(9110), + [sym_reset_statement] = ACTIONS(9110), + [aux_sym_raise_event_statement_token1] = ACTIONS(9110), + [sym_stop_statement] = ACTIONS(9110), + [sym_beep_statement] = ACTIONS(9110), + [aux_sym_unload_statement_token1] = ACTIONS(9110), + [aux_sym_def_type_statement_token1] = ACTIONS(9110), + [aux_sym_def_type_statement_token2] = ACTIONS(9110), + [aux_sym_def_type_statement_token3] = ACTIONS(9110), + [aux_sym_def_type_statement_token4] = ACTIONS(9110), + [aux_sym_def_type_statement_token5] = ACTIONS(9110), + [aux_sym_def_type_statement_token6] = ACTIONS(9110), + [aux_sym_def_type_statement_token7] = ACTIONS(9110), + [aux_sym_def_type_statement_token8] = ACTIONS(9110), + [aux_sym_def_type_statement_token9] = ACTIONS(9110), + [aux_sym_def_type_statement_token10] = ACTIONS(9110), + [aux_sym_def_type_statement_token11] = ACTIONS(9110), + [aux_sym_def_type_statement_token12] = ACTIONS(9110), + [aux_sym_def_type_statement_token13] = ACTIONS(9110), + [aux_sym_def_type_statement_token14] = ACTIONS(9110), + [aux_sym_call_statement_token1] = ACTIONS(9110), + [sym__ambiguous_call_statement] = ACTIONS(9110), + [aux_sym_addressof_expression_token1] = ACTIONS(9110), + [aux_sym_type_of_expression_token1] = ACTIONS(9110), + [aux_sym_unary_expression_token1] = ACTIONS(9110), + [sym_string_literal] = ACTIONS(9112), + [sym_number_literal] = ACTIONS(9112), + [aux_sym_boolean_literal_token1] = ACTIONS(9110), + [aux_sym_boolean_literal_token2] = ACTIONS(9110), + [sym_nothing_literal] = ACTIONS(9110), + [sym_null_literal] = ACTIONS(9110), + [sym_empty_literal] = ACTIONS(9110), + [sym_date_literal] = ACTIONS(9112), + [anon_sym_POUND] = ACTIONS(9110), + }, + [STATE(3906)] = { + [sym_identifier] = ACTIONS(9114), + [sym_newline] = ACTIONS(9116), + [anon_sym_COLON] = ACTIONS(9116), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9114), + [aux_sym_frm_property_statement_token1] = ACTIONS(9114), + [anon_sym_DOT] = ACTIONS(9114), + [anon_sym_BANG] = ACTIONS(9116), + [aux_sym__attribute_identifier_token1] = ACTIONS(9114), + [aux_sym_option_statement_token3] = ACTIONS(9114), + [aux_sym_type_declaration_token1] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9114), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9114), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9114), + [aux_sym_enum_declaration_token1] = ACTIONS(9114), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9114), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9114), + [aux_sym_declare_function_statement_token1] = ACTIONS(9114), + [aux_sym_preprocessor_const_token1] = ACTIONS(9114), + [aux_sym__property_get_header_token1] = ACTIONS(9114), + [aux_sym_event_declaration_token1] = ACTIONS(9114), + [sym_static_modifier] = ACTIONS(9114), + [sym__dim_keyword] = ACTIONS(9114), + [sym__redim_keyword] = ACTIONS(9114), + [aux_sym_get_accessor_token1] = ACTIONS(9114), + [aux_sym_set_accessor_token1] = ACTIONS(9114), + [aux_sym_const_declaration_token1] = ACTIONS(9114), + [anon_sym_LPAREN] = ACTIONS(9116), + [aux_sym_as_type_clause_token2] = ACTIONS(9114), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9114), + [aux_sym_visibility_token1] = ACTIONS(9114), + [aux_sym_visibility_token2] = ACTIONS(9114), + [aux_sym_elseif_fragment_token1] = ACTIONS(9114), + [aux_sym_else_fragment_token1] = ACTIONS(9114), + [aux_sym_select_statement_token1] = ACTIONS(9114), + [aux_sym__for_header_token1] = ACTIONS(9114), + [aux_sym_do_statement_token1] = ACTIONS(9114), + [aux_sym_do_condition_token1] = ACTIONS(9114), + [aux_sym_with_statement_token1] = ACTIONS(9114), + [aux_sym_exit_statement_token1] = ACTIONS(9114), + [sym_end_statement] = ACTIONS(9116), + [aux_sym_on_goto_statement_token1] = ACTIONS(9114), + [aux_sym_on_goto_statement_token2] = ACTIONS(9114), + [aux_sym_on_error_statement_token2] = ACTIONS(9114), + [sym__ambiguous_redim_statement] = ACTIONS(9116), + [aux_sym_erase_statement_token1] = ACTIONS(9114), + [aux_sym_open_statement_token1] = ACTIONS(9114), + [aux_sym_file_mode_token2] = ACTIONS(9114), + [aux_sym_file_access_token2] = ACTIONS(9114), + [aux_sym_file_lock_token2] = ACTIONS(9114), + [aux_sym_print_statement_token1] = ACTIONS(9114), + [anon_sym_PLUS] = ACTIONS(9116), + [anon_sym_DASH] = ACTIONS(9114), + [anon_sym_QMARK] = ACTIONS(9116), + [aux_sym_close_statement_token1] = ACTIONS(9114), + [aux_sym_put_statement_token1] = ACTIONS(9114), + [aux_sym_unlock_statement_token1] = ACTIONS(9114), + [aux_sym_seek_statement_token1] = ACTIONS(9114), + [sym_reset_statement] = ACTIONS(9114), + [aux_sym_raise_event_statement_token1] = ACTIONS(9114), + [sym_stop_statement] = ACTIONS(9114), + [sym_beep_statement] = ACTIONS(9114), + [aux_sym_unload_statement_token1] = ACTIONS(9114), + [aux_sym_def_type_statement_token1] = ACTIONS(9114), + [aux_sym_def_type_statement_token2] = ACTIONS(9114), + [aux_sym_def_type_statement_token3] = ACTIONS(9114), + [aux_sym_def_type_statement_token4] = ACTIONS(9114), + [aux_sym_def_type_statement_token5] = ACTIONS(9114), + [aux_sym_def_type_statement_token6] = ACTIONS(9114), + [aux_sym_def_type_statement_token7] = ACTIONS(9114), + [aux_sym_def_type_statement_token8] = ACTIONS(9114), + [aux_sym_def_type_statement_token9] = ACTIONS(9114), + [aux_sym_def_type_statement_token10] = ACTIONS(9114), + [aux_sym_def_type_statement_token11] = ACTIONS(9114), + [aux_sym_def_type_statement_token12] = ACTIONS(9114), + [aux_sym_def_type_statement_token13] = ACTIONS(9114), + [aux_sym_def_type_statement_token14] = ACTIONS(9114), + [aux_sym_call_statement_token1] = ACTIONS(9114), + [sym__ambiguous_call_statement] = ACTIONS(9114), + [aux_sym_addressof_expression_token1] = ACTIONS(9114), + [aux_sym_type_of_expression_token1] = ACTIONS(9114), + [aux_sym_unary_expression_token1] = ACTIONS(9114), + [sym_string_literal] = ACTIONS(9116), + [sym_number_literal] = ACTIONS(9116), + [aux_sym_boolean_literal_token1] = ACTIONS(9114), + [aux_sym_boolean_literal_token2] = ACTIONS(9114), + [sym_nothing_literal] = ACTIONS(9114), + [sym_null_literal] = ACTIONS(9114), + [sym_empty_literal] = ACTIONS(9114), + [sym_date_literal] = ACTIONS(9116), + [anon_sym_POUND] = ACTIONS(9114), + }, + [STATE(3907)] = { + [sym_identifier] = ACTIONS(9118), + [sym_newline] = ACTIONS(9120), + [anon_sym_COLON] = ACTIONS(9120), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9118), + [aux_sym_frm_property_statement_token1] = ACTIONS(9118), + [anon_sym_DOT] = ACTIONS(9118), + [anon_sym_BANG] = ACTIONS(9120), + [aux_sym__attribute_identifier_token1] = ACTIONS(9118), + [aux_sym_option_statement_token3] = ACTIONS(9118), + [aux_sym_type_declaration_token1] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9118), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9118), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9118), + [aux_sym_enum_declaration_token1] = ACTIONS(9118), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9118), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9118), + [aux_sym_declare_function_statement_token1] = ACTIONS(9118), + [aux_sym_preprocessor_const_token1] = ACTIONS(9118), + [aux_sym__property_get_header_token1] = ACTIONS(9118), + [aux_sym_event_declaration_token1] = ACTIONS(9118), + [sym_static_modifier] = ACTIONS(9118), + [sym__dim_keyword] = ACTIONS(9118), + [sym__redim_keyword] = ACTIONS(9118), + [aux_sym_get_accessor_token1] = ACTIONS(9118), + [aux_sym_set_accessor_token1] = ACTIONS(9118), + [aux_sym_const_declaration_token1] = ACTIONS(9118), + [anon_sym_LPAREN] = ACTIONS(9120), + [aux_sym_as_type_clause_token2] = ACTIONS(9118), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9118), + [aux_sym_visibility_token1] = ACTIONS(9118), + [aux_sym_visibility_token2] = ACTIONS(9118), + [aux_sym_elseif_fragment_token1] = ACTIONS(9118), + [aux_sym_else_fragment_token1] = ACTIONS(9118), + [aux_sym_select_statement_token1] = ACTIONS(9118), + [aux_sym__for_header_token1] = ACTIONS(9118), + [aux_sym_do_statement_token1] = ACTIONS(9118), + [aux_sym_do_condition_token1] = ACTIONS(9118), + [aux_sym_with_statement_token1] = ACTIONS(9118), + [aux_sym_exit_statement_token1] = ACTIONS(9118), + [sym_end_statement] = ACTIONS(9120), + [aux_sym_on_goto_statement_token1] = ACTIONS(9118), + [aux_sym_on_goto_statement_token2] = ACTIONS(9118), + [aux_sym_on_error_statement_token2] = ACTIONS(9118), + [sym__ambiguous_redim_statement] = ACTIONS(9120), + [aux_sym_erase_statement_token1] = ACTIONS(9118), + [aux_sym_open_statement_token1] = ACTIONS(9118), + [aux_sym_file_mode_token2] = ACTIONS(9118), + [aux_sym_file_access_token2] = ACTIONS(9118), + [aux_sym_file_lock_token2] = ACTIONS(9118), + [aux_sym_print_statement_token1] = ACTIONS(9118), + [anon_sym_PLUS] = ACTIONS(9120), + [anon_sym_DASH] = ACTIONS(9118), + [anon_sym_QMARK] = ACTIONS(9120), + [aux_sym_close_statement_token1] = ACTIONS(9118), + [aux_sym_put_statement_token1] = ACTIONS(9118), + [aux_sym_unlock_statement_token1] = ACTIONS(9118), + [aux_sym_seek_statement_token1] = ACTIONS(9118), + [sym_reset_statement] = ACTIONS(9118), + [aux_sym_raise_event_statement_token1] = ACTIONS(9118), + [sym_stop_statement] = ACTIONS(9118), + [sym_beep_statement] = ACTIONS(9118), + [aux_sym_unload_statement_token1] = ACTIONS(9118), + [aux_sym_def_type_statement_token1] = ACTIONS(9118), + [aux_sym_def_type_statement_token2] = ACTIONS(9118), + [aux_sym_def_type_statement_token3] = ACTIONS(9118), + [aux_sym_def_type_statement_token4] = ACTIONS(9118), + [aux_sym_def_type_statement_token5] = ACTIONS(9118), + [aux_sym_def_type_statement_token6] = ACTIONS(9118), + [aux_sym_def_type_statement_token7] = ACTIONS(9118), + [aux_sym_def_type_statement_token8] = ACTIONS(9118), + [aux_sym_def_type_statement_token9] = ACTIONS(9118), + [aux_sym_def_type_statement_token10] = ACTIONS(9118), + [aux_sym_def_type_statement_token11] = ACTIONS(9118), + [aux_sym_def_type_statement_token12] = ACTIONS(9118), + [aux_sym_def_type_statement_token13] = ACTIONS(9118), + [aux_sym_def_type_statement_token14] = ACTIONS(9118), + [aux_sym_call_statement_token1] = ACTIONS(9118), + [sym__ambiguous_call_statement] = ACTIONS(9118), + [aux_sym_addressof_expression_token1] = ACTIONS(9118), + [aux_sym_type_of_expression_token1] = ACTIONS(9118), + [aux_sym_unary_expression_token1] = ACTIONS(9118), + [sym_string_literal] = ACTIONS(9120), + [sym_number_literal] = ACTIONS(9120), + [aux_sym_boolean_literal_token1] = ACTIONS(9118), + [aux_sym_boolean_literal_token2] = ACTIONS(9118), + [sym_nothing_literal] = ACTIONS(9118), + [sym_null_literal] = ACTIONS(9118), + [sym_empty_literal] = ACTIONS(9118), + [sym_date_literal] = ACTIONS(9120), + [anon_sym_POUND] = ACTIONS(9118), + }, + [STATE(3908)] = { + [sym_identifier] = ACTIONS(9122), + [sym_newline] = ACTIONS(9124), + [anon_sym_COLON] = ACTIONS(9124), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9122), + [aux_sym_frm_property_statement_token1] = ACTIONS(9122), + [anon_sym_DOT] = ACTIONS(9122), + [anon_sym_BANG] = ACTIONS(9124), + [aux_sym__attribute_identifier_token1] = ACTIONS(9122), + [aux_sym_option_statement_token3] = ACTIONS(9122), + [aux_sym_type_declaration_token1] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9122), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9122), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9122), + [aux_sym_enum_declaration_token1] = ACTIONS(9122), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9122), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9122), + [aux_sym_declare_function_statement_token1] = ACTIONS(9122), + [aux_sym_preprocessor_const_token1] = ACTIONS(9122), + [aux_sym__property_get_header_token1] = ACTIONS(9122), + [aux_sym_event_declaration_token1] = ACTIONS(9122), + [sym_static_modifier] = ACTIONS(9122), + [sym__dim_keyword] = ACTIONS(9122), + [sym__redim_keyword] = ACTIONS(9122), + [aux_sym_get_accessor_token1] = ACTIONS(9122), + [aux_sym_set_accessor_token1] = ACTIONS(9122), + [aux_sym_const_declaration_token1] = ACTIONS(9122), + [anon_sym_LPAREN] = ACTIONS(9124), + [aux_sym_as_type_clause_token2] = ACTIONS(9122), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9122), + [aux_sym_visibility_token1] = ACTIONS(9122), + [aux_sym_visibility_token2] = ACTIONS(9122), + [aux_sym_elseif_fragment_token1] = ACTIONS(9122), + [aux_sym_else_fragment_token1] = ACTIONS(9122), + [aux_sym_select_statement_token1] = ACTIONS(9122), + [aux_sym__for_header_token1] = ACTIONS(9122), + [aux_sym_do_statement_token1] = ACTIONS(9122), + [aux_sym_do_condition_token1] = ACTIONS(9122), + [aux_sym_with_statement_token1] = ACTIONS(9122), + [aux_sym_exit_statement_token1] = ACTIONS(9122), + [sym_end_statement] = ACTIONS(9124), + [aux_sym_on_goto_statement_token1] = ACTIONS(9122), + [aux_sym_on_goto_statement_token2] = ACTIONS(9122), + [aux_sym_on_error_statement_token2] = ACTIONS(9122), + [sym__ambiguous_redim_statement] = ACTIONS(9124), + [aux_sym_erase_statement_token1] = ACTIONS(9122), + [aux_sym_open_statement_token1] = ACTIONS(9122), + [aux_sym_file_mode_token2] = ACTIONS(9122), + [aux_sym_file_access_token2] = ACTIONS(9122), + [aux_sym_file_lock_token2] = ACTIONS(9122), + [aux_sym_print_statement_token1] = ACTIONS(9122), + [anon_sym_PLUS] = ACTIONS(9124), + [anon_sym_DASH] = ACTIONS(9122), + [anon_sym_QMARK] = ACTIONS(9124), + [aux_sym_close_statement_token1] = ACTIONS(9122), + [aux_sym_put_statement_token1] = ACTIONS(9122), + [aux_sym_unlock_statement_token1] = ACTIONS(9122), + [aux_sym_seek_statement_token1] = ACTIONS(9122), + [sym_reset_statement] = ACTIONS(9122), + [aux_sym_raise_event_statement_token1] = ACTIONS(9122), + [sym_stop_statement] = ACTIONS(9122), + [sym_beep_statement] = ACTIONS(9122), + [aux_sym_unload_statement_token1] = ACTIONS(9122), + [aux_sym_def_type_statement_token1] = ACTIONS(9122), + [aux_sym_def_type_statement_token2] = ACTIONS(9122), + [aux_sym_def_type_statement_token3] = ACTIONS(9122), + [aux_sym_def_type_statement_token4] = ACTIONS(9122), + [aux_sym_def_type_statement_token5] = ACTIONS(9122), + [aux_sym_def_type_statement_token6] = ACTIONS(9122), + [aux_sym_def_type_statement_token7] = ACTIONS(9122), + [aux_sym_def_type_statement_token8] = ACTIONS(9122), + [aux_sym_def_type_statement_token9] = ACTIONS(9122), + [aux_sym_def_type_statement_token10] = ACTIONS(9122), + [aux_sym_def_type_statement_token11] = ACTIONS(9122), + [aux_sym_def_type_statement_token12] = ACTIONS(9122), + [aux_sym_def_type_statement_token13] = ACTIONS(9122), + [aux_sym_def_type_statement_token14] = ACTIONS(9122), + [aux_sym_call_statement_token1] = ACTIONS(9122), + [sym__ambiguous_call_statement] = ACTIONS(9122), + [aux_sym_addressof_expression_token1] = ACTIONS(9122), + [aux_sym_type_of_expression_token1] = ACTIONS(9122), + [aux_sym_unary_expression_token1] = ACTIONS(9122), + [sym_string_literal] = ACTIONS(9124), + [sym_number_literal] = ACTIONS(9124), + [aux_sym_boolean_literal_token1] = ACTIONS(9122), + [aux_sym_boolean_literal_token2] = ACTIONS(9122), + [sym_nothing_literal] = ACTIONS(9122), + [sym_null_literal] = ACTIONS(9122), + [sym_empty_literal] = ACTIONS(9122), + [sym_date_literal] = ACTIONS(9124), + [anon_sym_POUND] = ACTIONS(9122), + }, + [STATE(3909)] = { + [sym_identifier] = ACTIONS(9126), + [sym_newline] = ACTIONS(9128), + [anon_sym_COLON] = ACTIONS(9128), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9126), + [aux_sym_frm_property_statement_token1] = ACTIONS(9126), + [anon_sym_DOT] = ACTIONS(9126), + [anon_sym_BANG] = ACTIONS(9128), + [aux_sym__attribute_identifier_token1] = ACTIONS(9126), + [aux_sym_option_statement_token3] = ACTIONS(9126), + [aux_sym_type_declaration_token1] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9126), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9126), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9126), + [aux_sym_enum_declaration_token1] = ACTIONS(9126), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9126), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9126), + [aux_sym_declare_function_statement_token1] = ACTIONS(9126), + [aux_sym_preprocessor_const_token1] = ACTIONS(9126), + [aux_sym__property_get_header_token1] = ACTIONS(9126), + [aux_sym_event_declaration_token1] = ACTIONS(9126), + [sym_static_modifier] = ACTIONS(9126), + [sym__dim_keyword] = ACTIONS(9126), + [sym__redim_keyword] = ACTIONS(9126), + [aux_sym_get_accessor_token1] = ACTIONS(9126), + [aux_sym_set_accessor_token1] = ACTIONS(9126), + [aux_sym_const_declaration_token1] = ACTIONS(9126), + [anon_sym_LPAREN] = ACTIONS(9128), + [aux_sym_as_type_clause_token2] = ACTIONS(9126), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9126), + [aux_sym_visibility_token1] = ACTIONS(9126), + [aux_sym_visibility_token2] = ACTIONS(9126), + [aux_sym_elseif_fragment_token1] = ACTIONS(9126), + [aux_sym_else_fragment_token1] = ACTIONS(9126), + [aux_sym_select_statement_token1] = ACTIONS(9126), + [aux_sym__for_header_token1] = ACTIONS(9126), + [aux_sym_do_statement_token1] = ACTIONS(9126), + [aux_sym_do_condition_token1] = ACTIONS(9126), + [aux_sym_with_statement_token1] = ACTIONS(9126), + [aux_sym_exit_statement_token1] = ACTIONS(9126), + [sym_end_statement] = ACTIONS(9128), + [aux_sym_on_goto_statement_token1] = ACTIONS(9126), + [aux_sym_on_goto_statement_token2] = ACTIONS(9126), + [aux_sym_on_error_statement_token2] = ACTIONS(9126), + [sym__ambiguous_redim_statement] = ACTIONS(9128), + [aux_sym_erase_statement_token1] = ACTIONS(9126), + [aux_sym_open_statement_token1] = ACTIONS(9126), + [aux_sym_file_mode_token2] = ACTIONS(9126), + [aux_sym_file_access_token2] = ACTIONS(9126), + [aux_sym_file_lock_token2] = ACTIONS(9126), + [aux_sym_print_statement_token1] = ACTIONS(9126), + [anon_sym_PLUS] = ACTIONS(9128), + [anon_sym_DASH] = ACTIONS(9126), + [anon_sym_QMARK] = ACTIONS(9128), + [aux_sym_close_statement_token1] = ACTIONS(9126), + [aux_sym_put_statement_token1] = ACTIONS(9126), + [aux_sym_unlock_statement_token1] = ACTIONS(9126), + [aux_sym_seek_statement_token1] = ACTIONS(9126), + [sym_reset_statement] = ACTIONS(9126), + [aux_sym_raise_event_statement_token1] = ACTIONS(9126), + [sym_stop_statement] = ACTIONS(9126), + [sym_beep_statement] = ACTIONS(9126), + [aux_sym_unload_statement_token1] = ACTIONS(9126), + [aux_sym_def_type_statement_token1] = ACTIONS(9126), + [aux_sym_def_type_statement_token2] = ACTIONS(9126), + [aux_sym_def_type_statement_token3] = ACTIONS(9126), + [aux_sym_def_type_statement_token4] = ACTIONS(9126), + [aux_sym_def_type_statement_token5] = ACTIONS(9126), + [aux_sym_def_type_statement_token6] = ACTIONS(9126), + [aux_sym_def_type_statement_token7] = ACTIONS(9126), + [aux_sym_def_type_statement_token8] = ACTIONS(9126), + [aux_sym_def_type_statement_token9] = ACTIONS(9126), + [aux_sym_def_type_statement_token10] = ACTIONS(9126), + [aux_sym_def_type_statement_token11] = ACTIONS(9126), + [aux_sym_def_type_statement_token12] = ACTIONS(9126), + [aux_sym_def_type_statement_token13] = ACTIONS(9126), + [aux_sym_def_type_statement_token14] = ACTIONS(9126), + [aux_sym_call_statement_token1] = ACTIONS(9126), + [sym__ambiguous_call_statement] = ACTIONS(9126), + [aux_sym_addressof_expression_token1] = ACTIONS(9126), + [aux_sym_type_of_expression_token1] = ACTIONS(9126), + [aux_sym_unary_expression_token1] = ACTIONS(9126), + [sym_string_literal] = ACTIONS(9128), + [sym_number_literal] = ACTIONS(9128), + [aux_sym_boolean_literal_token1] = ACTIONS(9126), + [aux_sym_boolean_literal_token2] = ACTIONS(9126), + [sym_nothing_literal] = ACTIONS(9126), + [sym_null_literal] = ACTIONS(9126), + [sym_empty_literal] = ACTIONS(9126), + [sym_date_literal] = ACTIONS(9128), + [anon_sym_POUND] = ACTIONS(9126), + }, + [STATE(3910)] = { + [sym_identifier] = ACTIONS(9130), + [sym_newline] = ACTIONS(9132), + [anon_sym_COLON] = ACTIONS(9132), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9130), + [aux_sym_frm_property_statement_token1] = ACTIONS(9130), + [anon_sym_DOT] = ACTIONS(9130), + [anon_sym_BANG] = ACTIONS(9132), + [aux_sym__attribute_identifier_token1] = ACTIONS(9130), + [aux_sym_option_statement_token3] = ACTIONS(9130), + [aux_sym_type_declaration_token1] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9130), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9130), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9130), + [aux_sym_enum_declaration_token1] = ACTIONS(9130), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9130), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9130), + [aux_sym_declare_function_statement_token1] = ACTIONS(9130), + [aux_sym_preprocessor_const_token1] = ACTIONS(9130), + [aux_sym__property_get_header_token1] = ACTIONS(9130), + [aux_sym_event_declaration_token1] = ACTIONS(9130), + [sym_static_modifier] = ACTIONS(9130), + [sym__dim_keyword] = ACTIONS(9130), + [sym__redim_keyword] = ACTIONS(9130), + [aux_sym_get_accessor_token1] = ACTIONS(9130), + [aux_sym_set_accessor_token1] = ACTIONS(9130), + [aux_sym_const_declaration_token1] = ACTIONS(9130), + [anon_sym_LPAREN] = ACTIONS(9132), + [aux_sym_as_type_clause_token2] = ACTIONS(9130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9130), + [aux_sym_visibility_token1] = ACTIONS(9130), + [aux_sym_visibility_token2] = ACTIONS(9130), + [aux_sym_elseif_fragment_token1] = ACTIONS(9130), + [aux_sym_else_fragment_token1] = ACTIONS(9130), + [aux_sym_select_statement_token1] = ACTIONS(9130), + [aux_sym__for_header_token1] = ACTIONS(9130), + [aux_sym_do_statement_token1] = ACTIONS(9130), + [aux_sym_do_condition_token1] = ACTIONS(9130), + [aux_sym_with_statement_token1] = ACTIONS(9130), + [aux_sym_exit_statement_token1] = ACTIONS(9130), + [sym_end_statement] = ACTIONS(9132), + [aux_sym_on_goto_statement_token1] = ACTIONS(9130), + [aux_sym_on_goto_statement_token2] = ACTIONS(9130), + [aux_sym_on_error_statement_token2] = ACTIONS(9130), + [sym__ambiguous_redim_statement] = ACTIONS(9132), + [aux_sym_erase_statement_token1] = ACTIONS(9130), + [aux_sym_open_statement_token1] = ACTIONS(9130), + [aux_sym_file_mode_token2] = ACTIONS(9130), + [aux_sym_file_access_token2] = ACTIONS(9130), + [aux_sym_file_lock_token2] = ACTIONS(9130), + [aux_sym_print_statement_token1] = ACTIONS(9130), + [anon_sym_PLUS] = ACTIONS(9132), + [anon_sym_DASH] = ACTIONS(9130), + [anon_sym_QMARK] = ACTIONS(9132), + [aux_sym_close_statement_token1] = ACTIONS(9130), + [aux_sym_put_statement_token1] = ACTIONS(9130), + [aux_sym_unlock_statement_token1] = ACTIONS(9130), + [aux_sym_seek_statement_token1] = ACTIONS(9130), + [sym_reset_statement] = ACTIONS(9130), + [aux_sym_raise_event_statement_token1] = ACTIONS(9130), + [sym_stop_statement] = ACTIONS(9130), + [sym_beep_statement] = ACTIONS(9130), + [aux_sym_unload_statement_token1] = ACTIONS(9130), + [aux_sym_def_type_statement_token1] = ACTIONS(9130), + [aux_sym_def_type_statement_token2] = ACTIONS(9130), + [aux_sym_def_type_statement_token3] = ACTIONS(9130), + [aux_sym_def_type_statement_token4] = ACTIONS(9130), + [aux_sym_def_type_statement_token5] = ACTIONS(9130), + [aux_sym_def_type_statement_token6] = ACTIONS(9130), + [aux_sym_def_type_statement_token7] = ACTIONS(9130), + [aux_sym_def_type_statement_token8] = ACTIONS(9130), + [aux_sym_def_type_statement_token9] = ACTIONS(9130), + [aux_sym_def_type_statement_token10] = ACTIONS(9130), + [aux_sym_def_type_statement_token11] = ACTIONS(9130), + [aux_sym_def_type_statement_token12] = ACTIONS(9130), + [aux_sym_def_type_statement_token13] = ACTIONS(9130), + [aux_sym_def_type_statement_token14] = ACTIONS(9130), + [aux_sym_call_statement_token1] = ACTIONS(9130), + [sym__ambiguous_call_statement] = ACTIONS(9130), + [aux_sym_addressof_expression_token1] = ACTIONS(9130), + [aux_sym_type_of_expression_token1] = ACTIONS(9130), + [aux_sym_unary_expression_token1] = ACTIONS(9130), + [sym_string_literal] = ACTIONS(9132), + [sym_number_literal] = ACTIONS(9132), + [aux_sym_boolean_literal_token1] = ACTIONS(9130), + [aux_sym_boolean_literal_token2] = ACTIONS(9130), + [sym_nothing_literal] = ACTIONS(9130), + [sym_null_literal] = ACTIONS(9130), + [sym_empty_literal] = ACTIONS(9130), + [sym_date_literal] = ACTIONS(9132), + [anon_sym_POUND] = ACTIONS(9130), + }, + [STATE(3911)] = { + [sym_identifier] = ACTIONS(9134), + [sym_newline] = ACTIONS(9136), + [anon_sym_COLON] = ACTIONS(9136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9134), + [aux_sym_frm_property_statement_token1] = ACTIONS(9134), + [anon_sym_DOT] = ACTIONS(9134), + [anon_sym_BANG] = ACTIONS(9136), + [aux_sym__attribute_identifier_token1] = ACTIONS(9134), + [aux_sym_option_statement_token3] = ACTIONS(9134), + [aux_sym_type_declaration_token1] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9134), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9134), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9134), + [aux_sym_enum_declaration_token1] = ACTIONS(9134), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9134), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9134), + [aux_sym_declare_function_statement_token1] = ACTIONS(9134), + [aux_sym_preprocessor_const_token1] = ACTIONS(9134), + [aux_sym__property_get_header_token1] = ACTIONS(9134), + [aux_sym_event_declaration_token1] = ACTIONS(9134), + [sym_static_modifier] = ACTIONS(9134), + [sym__dim_keyword] = ACTIONS(9134), + [sym__redim_keyword] = ACTIONS(9134), + [aux_sym_get_accessor_token1] = ACTIONS(9134), + [aux_sym_set_accessor_token1] = ACTIONS(9134), + [aux_sym_const_declaration_token1] = ACTIONS(9134), + [anon_sym_LPAREN] = ACTIONS(9136), + [aux_sym_as_type_clause_token2] = ACTIONS(9134), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9134), + [aux_sym_visibility_token1] = ACTIONS(9134), + [aux_sym_visibility_token2] = ACTIONS(9134), + [aux_sym_elseif_fragment_token1] = ACTIONS(9134), + [aux_sym_else_fragment_token1] = ACTIONS(9134), + [aux_sym_select_statement_token1] = ACTIONS(9134), + [aux_sym__for_header_token1] = ACTIONS(9134), + [aux_sym_do_statement_token1] = ACTIONS(9134), + [aux_sym_do_condition_token1] = ACTIONS(9134), + [aux_sym_with_statement_token1] = ACTIONS(9134), + [aux_sym_exit_statement_token1] = ACTIONS(9134), + [sym_end_statement] = ACTIONS(9136), + [aux_sym_on_goto_statement_token1] = ACTIONS(9134), + [aux_sym_on_goto_statement_token2] = ACTIONS(9134), + [aux_sym_on_error_statement_token2] = ACTIONS(9134), + [sym__ambiguous_redim_statement] = ACTIONS(9136), + [aux_sym_erase_statement_token1] = ACTIONS(9134), + [aux_sym_open_statement_token1] = ACTIONS(9134), + [aux_sym_file_mode_token2] = ACTIONS(9134), + [aux_sym_file_access_token2] = ACTIONS(9134), + [aux_sym_file_lock_token2] = ACTIONS(9134), + [aux_sym_print_statement_token1] = ACTIONS(9134), + [anon_sym_PLUS] = ACTIONS(9136), + [anon_sym_DASH] = ACTIONS(9134), + [anon_sym_QMARK] = ACTIONS(9136), + [aux_sym_close_statement_token1] = ACTIONS(9134), + [aux_sym_put_statement_token1] = ACTIONS(9134), + [aux_sym_unlock_statement_token1] = ACTIONS(9134), + [aux_sym_seek_statement_token1] = ACTIONS(9134), + [sym_reset_statement] = ACTIONS(9134), + [aux_sym_raise_event_statement_token1] = ACTIONS(9134), + [sym_stop_statement] = ACTIONS(9134), + [sym_beep_statement] = ACTIONS(9134), + [aux_sym_unload_statement_token1] = ACTIONS(9134), + [aux_sym_def_type_statement_token1] = ACTIONS(9134), + [aux_sym_def_type_statement_token2] = ACTIONS(9134), + [aux_sym_def_type_statement_token3] = ACTIONS(9134), + [aux_sym_def_type_statement_token4] = ACTIONS(9134), + [aux_sym_def_type_statement_token5] = ACTIONS(9134), + [aux_sym_def_type_statement_token6] = ACTIONS(9134), + [aux_sym_def_type_statement_token7] = ACTIONS(9134), + [aux_sym_def_type_statement_token8] = ACTIONS(9134), + [aux_sym_def_type_statement_token9] = ACTIONS(9134), + [aux_sym_def_type_statement_token10] = ACTIONS(9134), + [aux_sym_def_type_statement_token11] = ACTIONS(9134), + [aux_sym_def_type_statement_token12] = ACTIONS(9134), + [aux_sym_def_type_statement_token13] = ACTIONS(9134), + [aux_sym_def_type_statement_token14] = ACTIONS(9134), + [aux_sym_call_statement_token1] = ACTIONS(9134), + [sym__ambiguous_call_statement] = ACTIONS(9134), + [aux_sym_addressof_expression_token1] = ACTIONS(9134), + [aux_sym_type_of_expression_token1] = ACTIONS(9134), + [aux_sym_unary_expression_token1] = ACTIONS(9134), + [sym_string_literal] = ACTIONS(9136), + [sym_number_literal] = ACTIONS(9136), + [aux_sym_boolean_literal_token1] = ACTIONS(9134), + [aux_sym_boolean_literal_token2] = ACTIONS(9134), + [sym_nothing_literal] = ACTIONS(9134), + [sym_null_literal] = ACTIONS(9134), + [sym_empty_literal] = ACTIONS(9134), + [sym_date_literal] = ACTIONS(9136), + [anon_sym_POUND] = ACTIONS(9134), + }, + [STATE(3912)] = { + [sym_identifier] = ACTIONS(9138), + [sym_newline] = ACTIONS(9140), + [anon_sym_COLON] = ACTIONS(9140), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9138), + [aux_sym_frm_property_statement_token1] = ACTIONS(9138), + [anon_sym_DOT] = ACTIONS(9138), + [anon_sym_BANG] = ACTIONS(9140), + [aux_sym__attribute_identifier_token1] = ACTIONS(9138), + [aux_sym_option_statement_token3] = ACTIONS(9138), + [aux_sym_type_declaration_token1] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9138), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9138), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9138), + [aux_sym_enum_declaration_token1] = ACTIONS(9138), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9138), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9138), + [aux_sym_declare_function_statement_token1] = ACTIONS(9138), + [aux_sym_preprocessor_const_token1] = ACTIONS(9138), + [aux_sym__property_get_header_token1] = ACTIONS(9138), + [aux_sym_event_declaration_token1] = ACTIONS(9138), + [sym_static_modifier] = ACTIONS(9138), + [sym__dim_keyword] = ACTIONS(9138), + [sym__redim_keyword] = ACTIONS(9138), + [aux_sym_get_accessor_token1] = ACTIONS(9138), + [aux_sym_set_accessor_token1] = ACTIONS(9138), + [aux_sym_const_declaration_token1] = ACTIONS(9138), + [anon_sym_LPAREN] = ACTIONS(9140), + [aux_sym_as_type_clause_token2] = ACTIONS(9138), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9138), + [aux_sym_visibility_token1] = ACTIONS(9138), + [aux_sym_visibility_token2] = ACTIONS(9138), + [aux_sym_elseif_fragment_token1] = ACTIONS(9138), + [aux_sym_else_fragment_token1] = ACTIONS(9138), + [aux_sym_select_statement_token1] = ACTIONS(9138), + [aux_sym__for_header_token1] = ACTIONS(9138), + [aux_sym_do_statement_token1] = ACTIONS(9138), + [aux_sym_do_condition_token1] = ACTIONS(9138), + [aux_sym_with_statement_token1] = ACTIONS(9138), + [aux_sym_exit_statement_token1] = ACTIONS(9138), + [sym_end_statement] = ACTIONS(9140), + [aux_sym_on_goto_statement_token1] = ACTIONS(9138), + [aux_sym_on_goto_statement_token2] = ACTIONS(9138), + [aux_sym_on_error_statement_token2] = ACTIONS(9138), + [sym__ambiguous_redim_statement] = ACTIONS(9140), + [aux_sym_erase_statement_token1] = ACTIONS(9138), + [aux_sym_open_statement_token1] = ACTIONS(9138), + [aux_sym_file_mode_token2] = ACTIONS(9138), + [aux_sym_file_access_token2] = ACTIONS(9138), + [aux_sym_file_lock_token2] = ACTIONS(9138), + [aux_sym_print_statement_token1] = ACTIONS(9138), + [anon_sym_PLUS] = ACTIONS(9140), + [anon_sym_DASH] = ACTIONS(9138), + [anon_sym_QMARK] = ACTIONS(9140), + [aux_sym_close_statement_token1] = ACTIONS(9138), + [aux_sym_put_statement_token1] = ACTIONS(9138), + [aux_sym_unlock_statement_token1] = ACTIONS(9138), + [aux_sym_seek_statement_token1] = ACTIONS(9138), + [sym_reset_statement] = ACTIONS(9138), + [aux_sym_raise_event_statement_token1] = ACTIONS(9138), + [sym_stop_statement] = ACTIONS(9138), + [sym_beep_statement] = ACTIONS(9138), + [aux_sym_unload_statement_token1] = ACTIONS(9138), + [aux_sym_def_type_statement_token1] = ACTIONS(9138), + [aux_sym_def_type_statement_token2] = ACTIONS(9138), + [aux_sym_def_type_statement_token3] = ACTIONS(9138), + [aux_sym_def_type_statement_token4] = ACTIONS(9138), + [aux_sym_def_type_statement_token5] = ACTIONS(9138), + [aux_sym_def_type_statement_token6] = ACTIONS(9138), + [aux_sym_def_type_statement_token7] = ACTIONS(9138), + [aux_sym_def_type_statement_token8] = ACTIONS(9138), + [aux_sym_def_type_statement_token9] = ACTIONS(9138), + [aux_sym_def_type_statement_token10] = ACTIONS(9138), + [aux_sym_def_type_statement_token11] = ACTIONS(9138), + [aux_sym_def_type_statement_token12] = ACTIONS(9138), + [aux_sym_def_type_statement_token13] = ACTIONS(9138), + [aux_sym_def_type_statement_token14] = ACTIONS(9138), + [aux_sym_call_statement_token1] = ACTIONS(9138), + [sym__ambiguous_call_statement] = ACTIONS(9138), + [aux_sym_addressof_expression_token1] = ACTIONS(9138), + [aux_sym_type_of_expression_token1] = ACTIONS(9138), + [aux_sym_unary_expression_token1] = ACTIONS(9138), + [sym_string_literal] = ACTIONS(9140), + [sym_number_literal] = ACTIONS(9140), + [aux_sym_boolean_literal_token1] = ACTIONS(9138), + [aux_sym_boolean_literal_token2] = ACTIONS(9138), + [sym_nothing_literal] = ACTIONS(9138), + [sym_null_literal] = ACTIONS(9138), + [sym_empty_literal] = ACTIONS(9138), + [sym_date_literal] = ACTIONS(9140), + [anon_sym_POUND] = ACTIONS(9138), + }, + [STATE(3913)] = { + [sym_identifier] = ACTIONS(9142), + [sym_newline] = ACTIONS(9144), + [anon_sym_COLON] = ACTIONS(9144), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9142), + [aux_sym_frm_property_statement_token1] = ACTIONS(9142), + [anon_sym_DOT] = ACTIONS(9142), + [anon_sym_BANG] = ACTIONS(9144), + [aux_sym__attribute_identifier_token1] = ACTIONS(9142), + [aux_sym_option_statement_token3] = ACTIONS(9142), + [aux_sym_type_declaration_token1] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9142), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9142), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9142), + [aux_sym_enum_declaration_token1] = ACTIONS(9142), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9142), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9142), + [aux_sym_declare_function_statement_token1] = ACTIONS(9142), + [aux_sym_preprocessor_const_token1] = ACTIONS(9142), + [aux_sym__property_get_header_token1] = ACTIONS(9142), + [aux_sym_event_declaration_token1] = ACTIONS(9142), + [sym_static_modifier] = ACTIONS(9142), + [sym__dim_keyword] = ACTIONS(9142), + [sym__redim_keyword] = ACTIONS(9142), + [aux_sym_get_accessor_token1] = ACTIONS(9142), + [aux_sym_set_accessor_token1] = ACTIONS(9142), + [aux_sym_const_declaration_token1] = ACTIONS(9142), + [anon_sym_LPAREN] = ACTIONS(9144), + [aux_sym_as_type_clause_token2] = ACTIONS(9142), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9142), + [aux_sym_visibility_token1] = ACTIONS(9142), + [aux_sym_visibility_token2] = ACTIONS(9142), + [aux_sym_elseif_fragment_token1] = ACTIONS(9142), + [aux_sym_else_fragment_token1] = ACTIONS(9142), + [aux_sym_select_statement_token1] = ACTIONS(9142), + [aux_sym__for_header_token1] = ACTIONS(9142), + [aux_sym_do_statement_token1] = ACTIONS(9142), + [aux_sym_do_condition_token1] = ACTIONS(9142), + [aux_sym_with_statement_token1] = ACTIONS(9142), + [aux_sym_exit_statement_token1] = ACTIONS(9142), + [sym_end_statement] = ACTIONS(9144), + [aux_sym_on_goto_statement_token1] = ACTIONS(9142), + [aux_sym_on_goto_statement_token2] = ACTIONS(9142), + [aux_sym_on_error_statement_token2] = ACTIONS(9142), + [sym__ambiguous_redim_statement] = ACTIONS(9144), + [aux_sym_erase_statement_token1] = ACTIONS(9142), + [aux_sym_open_statement_token1] = ACTIONS(9142), + [aux_sym_file_mode_token2] = ACTIONS(9142), + [aux_sym_file_access_token2] = ACTIONS(9142), + [aux_sym_file_lock_token2] = ACTIONS(9142), + [aux_sym_print_statement_token1] = ACTIONS(9142), + [anon_sym_PLUS] = ACTIONS(9144), + [anon_sym_DASH] = ACTIONS(9142), + [anon_sym_QMARK] = ACTIONS(9144), + [aux_sym_close_statement_token1] = ACTIONS(9142), + [aux_sym_put_statement_token1] = ACTIONS(9142), + [aux_sym_unlock_statement_token1] = ACTIONS(9142), + [aux_sym_seek_statement_token1] = ACTIONS(9142), + [sym_reset_statement] = ACTIONS(9142), + [aux_sym_raise_event_statement_token1] = ACTIONS(9142), + [sym_stop_statement] = ACTIONS(9142), + [sym_beep_statement] = ACTIONS(9142), + [aux_sym_unload_statement_token1] = ACTIONS(9142), + [aux_sym_def_type_statement_token1] = ACTIONS(9142), + [aux_sym_def_type_statement_token2] = ACTIONS(9142), + [aux_sym_def_type_statement_token3] = ACTIONS(9142), + [aux_sym_def_type_statement_token4] = ACTIONS(9142), + [aux_sym_def_type_statement_token5] = ACTIONS(9142), + [aux_sym_def_type_statement_token6] = ACTIONS(9142), + [aux_sym_def_type_statement_token7] = ACTIONS(9142), + [aux_sym_def_type_statement_token8] = ACTIONS(9142), + [aux_sym_def_type_statement_token9] = ACTIONS(9142), + [aux_sym_def_type_statement_token10] = ACTIONS(9142), + [aux_sym_def_type_statement_token11] = ACTIONS(9142), + [aux_sym_def_type_statement_token12] = ACTIONS(9142), + [aux_sym_def_type_statement_token13] = ACTIONS(9142), + [aux_sym_def_type_statement_token14] = ACTIONS(9142), + [aux_sym_call_statement_token1] = ACTIONS(9142), + [sym__ambiguous_call_statement] = ACTIONS(9142), + [aux_sym_addressof_expression_token1] = ACTIONS(9142), + [aux_sym_type_of_expression_token1] = ACTIONS(9142), + [aux_sym_unary_expression_token1] = ACTIONS(9142), + [sym_string_literal] = ACTIONS(9144), + [sym_number_literal] = ACTIONS(9144), + [aux_sym_boolean_literal_token1] = ACTIONS(9142), + [aux_sym_boolean_literal_token2] = ACTIONS(9142), + [sym_nothing_literal] = ACTIONS(9142), + [sym_null_literal] = ACTIONS(9142), + [sym_empty_literal] = ACTIONS(9142), + [sym_date_literal] = ACTIONS(9144), + [anon_sym_POUND] = ACTIONS(9142), + }, + [STATE(3914)] = { + [sym_identifier] = ACTIONS(9146), + [sym_newline] = ACTIONS(9148), + [anon_sym_COLON] = ACTIONS(9148), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9146), + [aux_sym_frm_property_statement_token1] = ACTIONS(9146), + [anon_sym_DOT] = ACTIONS(9146), + [anon_sym_BANG] = ACTIONS(9148), + [aux_sym__attribute_identifier_token1] = ACTIONS(9146), + [aux_sym_option_statement_token3] = ACTIONS(9146), + [aux_sym_type_declaration_token1] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9146), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9146), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9146), + [aux_sym_enum_declaration_token1] = ACTIONS(9146), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9146), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9146), + [aux_sym_declare_function_statement_token1] = ACTIONS(9146), + [aux_sym_preprocessor_const_token1] = ACTIONS(9146), + [aux_sym__property_get_header_token1] = ACTIONS(9146), + [aux_sym_event_declaration_token1] = ACTIONS(9146), + [sym_static_modifier] = ACTIONS(9146), + [sym__dim_keyword] = ACTIONS(9146), + [sym__redim_keyword] = ACTIONS(9146), + [aux_sym_get_accessor_token1] = ACTIONS(9146), + [aux_sym_set_accessor_token1] = ACTIONS(9146), + [aux_sym_const_declaration_token1] = ACTIONS(9146), + [anon_sym_LPAREN] = ACTIONS(9148), + [aux_sym_as_type_clause_token2] = ACTIONS(9146), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9146), + [aux_sym_visibility_token1] = ACTIONS(9146), + [aux_sym_visibility_token2] = ACTIONS(9146), + [aux_sym_elseif_fragment_token1] = ACTIONS(9146), + [aux_sym_else_fragment_token1] = ACTIONS(9146), + [aux_sym_select_statement_token1] = ACTIONS(9146), + [aux_sym__for_header_token1] = ACTIONS(9146), + [aux_sym_do_statement_token1] = ACTIONS(9146), + [aux_sym_do_condition_token1] = ACTIONS(9146), + [aux_sym_with_statement_token1] = ACTIONS(9146), + [aux_sym_exit_statement_token1] = ACTIONS(9146), + [sym_end_statement] = ACTIONS(9148), + [aux_sym_on_goto_statement_token1] = ACTIONS(9146), + [aux_sym_on_goto_statement_token2] = ACTIONS(9146), + [aux_sym_on_error_statement_token2] = ACTIONS(9146), + [sym__ambiguous_redim_statement] = ACTIONS(9148), + [aux_sym_erase_statement_token1] = ACTIONS(9146), + [aux_sym_open_statement_token1] = ACTIONS(9146), + [aux_sym_file_mode_token2] = ACTIONS(9146), + [aux_sym_file_access_token2] = ACTIONS(9146), + [aux_sym_file_lock_token2] = ACTIONS(9146), + [aux_sym_print_statement_token1] = ACTIONS(9146), + [anon_sym_PLUS] = ACTIONS(9148), + [anon_sym_DASH] = ACTIONS(9146), + [anon_sym_QMARK] = ACTIONS(9148), + [aux_sym_close_statement_token1] = ACTIONS(9146), + [aux_sym_put_statement_token1] = ACTIONS(9146), + [aux_sym_unlock_statement_token1] = ACTIONS(9146), + [aux_sym_seek_statement_token1] = ACTIONS(9146), + [sym_reset_statement] = ACTIONS(9146), + [aux_sym_raise_event_statement_token1] = ACTIONS(9146), + [sym_stop_statement] = ACTIONS(9146), + [sym_beep_statement] = ACTIONS(9146), + [aux_sym_unload_statement_token1] = ACTIONS(9146), + [aux_sym_def_type_statement_token1] = ACTIONS(9146), + [aux_sym_def_type_statement_token2] = ACTIONS(9146), + [aux_sym_def_type_statement_token3] = ACTIONS(9146), + [aux_sym_def_type_statement_token4] = ACTIONS(9146), + [aux_sym_def_type_statement_token5] = ACTIONS(9146), + [aux_sym_def_type_statement_token6] = ACTIONS(9146), + [aux_sym_def_type_statement_token7] = ACTIONS(9146), + [aux_sym_def_type_statement_token8] = ACTIONS(9146), + [aux_sym_def_type_statement_token9] = ACTIONS(9146), + [aux_sym_def_type_statement_token10] = ACTIONS(9146), + [aux_sym_def_type_statement_token11] = ACTIONS(9146), + [aux_sym_def_type_statement_token12] = ACTIONS(9146), + [aux_sym_def_type_statement_token13] = ACTIONS(9146), + [aux_sym_def_type_statement_token14] = ACTIONS(9146), + [aux_sym_call_statement_token1] = ACTIONS(9146), + [sym__ambiguous_call_statement] = ACTIONS(9146), + [aux_sym_addressof_expression_token1] = ACTIONS(9146), + [aux_sym_type_of_expression_token1] = ACTIONS(9146), + [aux_sym_unary_expression_token1] = ACTIONS(9146), + [sym_string_literal] = ACTIONS(9148), + [sym_number_literal] = ACTIONS(9148), + [aux_sym_boolean_literal_token1] = ACTIONS(9146), + [aux_sym_boolean_literal_token2] = ACTIONS(9146), + [sym_nothing_literal] = ACTIONS(9146), + [sym_null_literal] = ACTIONS(9146), + [sym_empty_literal] = ACTIONS(9146), + [sym_date_literal] = ACTIONS(9148), + [anon_sym_POUND] = ACTIONS(9146), + }, + [STATE(3915)] = { + [sym_identifier] = ACTIONS(9150), + [sym_newline] = ACTIONS(9152), + [anon_sym_COLON] = ACTIONS(9152), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9154), + [aux_sym_frm_property_statement_token1] = ACTIONS(9150), + [anon_sym_DOT] = ACTIONS(9150), + [anon_sym_BANG] = ACTIONS(9152), + [aux_sym__attribute_identifier_token1] = ACTIONS(9150), + [aux_sym_option_statement_token3] = ACTIONS(9150), + [aux_sym_type_declaration_token1] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9154), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9150), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9150), + [aux_sym_enum_declaration_token1] = ACTIONS(9150), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9150), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9150), + [aux_sym_declare_function_statement_token1] = ACTIONS(9150), + [aux_sym_preprocessor_const_token1] = ACTIONS(9150), + [aux_sym__property_get_header_token1] = ACTIONS(9150), + [aux_sym_event_declaration_token1] = ACTIONS(9150), + [sym_static_modifier] = ACTIONS(9150), + [sym__dim_keyword] = ACTIONS(9150), + [sym__redim_keyword] = ACTIONS(9150), + [aux_sym_get_accessor_token1] = ACTIONS(9150), + [aux_sym_set_accessor_token1] = ACTIONS(9150), + [aux_sym_const_declaration_token1] = ACTIONS(9150), + [anon_sym_LPAREN] = ACTIONS(9152), + [aux_sym_as_type_clause_token2] = ACTIONS(9150), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9150), + [aux_sym_visibility_token1] = ACTIONS(9150), + [aux_sym_visibility_token2] = ACTIONS(9150), + [aux_sym_elseif_fragment_token1] = ACTIONS(9154), + [aux_sym_else_fragment_token1] = ACTIONS(9154), + [aux_sym_select_statement_token1] = ACTIONS(9154), + [aux_sym__for_header_token1] = ACTIONS(9154), + [aux_sym_do_statement_token1] = ACTIONS(9154), + [aux_sym_do_condition_token1] = ACTIONS(9154), + [aux_sym_with_statement_token1] = ACTIONS(9154), + [aux_sym_exit_statement_token1] = ACTIONS(9150), + [sym_end_statement] = ACTIONS(9152), + [aux_sym_on_goto_statement_token1] = ACTIONS(9150), + [aux_sym_on_goto_statement_token2] = ACTIONS(9150), + [aux_sym_on_error_statement_token2] = ACTIONS(9150), + [sym__ambiguous_redim_statement] = ACTIONS(9152), + [aux_sym_erase_statement_token1] = ACTIONS(9150), + [aux_sym_open_statement_token1] = ACTIONS(9150), + [aux_sym_file_mode_token2] = ACTIONS(9150), + [aux_sym_file_access_token2] = ACTIONS(9150), + [aux_sym_file_lock_token2] = ACTIONS(9150), + [aux_sym_print_statement_token1] = ACTIONS(9150), + [anon_sym_PLUS] = ACTIONS(9152), + [anon_sym_DASH] = ACTIONS(9150), + [anon_sym_QMARK] = ACTIONS(9152), + [aux_sym_close_statement_token1] = ACTIONS(9150), + [aux_sym_put_statement_token1] = ACTIONS(9150), + [aux_sym_unlock_statement_token1] = ACTIONS(9150), + [aux_sym_seek_statement_token1] = ACTIONS(9150), + [sym_reset_statement] = ACTIONS(9150), + [aux_sym_raise_event_statement_token1] = ACTIONS(9150), + [sym_stop_statement] = ACTIONS(9150), + [sym_beep_statement] = ACTIONS(9150), + [aux_sym_unload_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token2] = ACTIONS(9150), + [aux_sym_def_type_statement_token3] = ACTIONS(9150), + [aux_sym_def_type_statement_token4] = ACTIONS(9150), + [aux_sym_def_type_statement_token5] = ACTIONS(9150), + [aux_sym_def_type_statement_token6] = ACTIONS(9150), + [aux_sym_def_type_statement_token7] = ACTIONS(9150), + [aux_sym_def_type_statement_token8] = ACTIONS(9150), + [aux_sym_def_type_statement_token9] = ACTIONS(9150), + [aux_sym_def_type_statement_token10] = ACTIONS(9150), + [aux_sym_def_type_statement_token11] = ACTIONS(9150), + [aux_sym_def_type_statement_token12] = ACTIONS(9150), + [aux_sym_def_type_statement_token13] = ACTIONS(9150), + [aux_sym_def_type_statement_token14] = ACTIONS(9150), + [aux_sym_call_statement_token1] = ACTIONS(9150), + [sym__ambiguous_call_statement] = ACTIONS(9150), + [aux_sym_addressof_expression_token1] = ACTIONS(9150), + [aux_sym_type_of_expression_token1] = ACTIONS(9150), + [aux_sym_unary_expression_token1] = ACTIONS(9150), + [sym_string_literal] = ACTIONS(9152), + [sym_number_literal] = ACTIONS(9152), + [aux_sym_boolean_literal_token1] = ACTIONS(9150), + [aux_sym_boolean_literal_token2] = ACTIONS(9150), + [sym_nothing_literal] = ACTIONS(9150), + [sym_null_literal] = ACTIONS(9150), + [sym_empty_literal] = ACTIONS(9150), + [sym_date_literal] = ACTIONS(9152), + [anon_sym_POUND] = ACTIONS(9150), + }, + [STATE(3916)] = { + [sym_identifier] = ACTIONS(8312), + [sym_newline] = ACTIONS(8314), + [anon_sym_COLON] = ACTIONS(8314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8312), + [aux_sym_frm_property_statement_token1] = ACTIONS(8312), + [anon_sym_DOT] = ACTIONS(8312), + [anon_sym_BANG] = ACTIONS(8314), + [aux_sym__attribute_identifier_token1] = ACTIONS(8312), + [aux_sym_option_statement_token3] = ACTIONS(8312), + [aux_sym_type_declaration_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8312), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8312), + [aux_sym_enum_declaration_token1] = ACTIONS(8312), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8312), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8312), + [aux_sym_declare_function_statement_token1] = ACTIONS(8312), + [aux_sym_preprocessor_const_token1] = ACTIONS(8312), + [aux_sym__property_get_header_token1] = ACTIONS(8312), + [aux_sym_event_declaration_token1] = ACTIONS(8312), + [sym_static_modifier] = ACTIONS(8312), + [sym__dim_keyword] = ACTIONS(8312), + [sym__redim_keyword] = ACTIONS(8312), + [aux_sym_get_accessor_token1] = ACTIONS(8312), + [aux_sym_set_accessor_token1] = ACTIONS(8312), + [aux_sym_const_declaration_token1] = ACTIONS(8312), + [anon_sym_LPAREN] = ACTIONS(8314), + [aux_sym_as_type_clause_token2] = ACTIONS(8312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8312), + [aux_sym_visibility_token1] = ACTIONS(8312), + [aux_sym_visibility_token2] = ACTIONS(8312), + [aux_sym_elseif_fragment_token1] = ACTIONS(8312), + [aux_sym_else_fragment_token1] = ACTIONS(8312), + [aux_sym_select_statement_token1] = ACTIONS(8312), + [aux_sym__for_header_token1] = ACTIONS(8312), + [aux_sym_do_statement_token1] = ACTIONS(8312), + [aux_sym_do_condition_token1] = ACTIONS(8312), + [aux_sym_with_statement_token1] = ACTIONS(8312), + [aux_sym_exit_statement_token1] = ACTIONS(8312), + [sym_end_statement] = ACTIONS(8314), + [aux_sym_on_goto_statement_token1] = ACTIONS(8312), + [aux_sym_on_goto_statement_token2] = ACTIONS(8312), + [aux_sym_on_error_statement_token2] = ACTIONS(8312), + [sym__ambiguous_redim_statement] = ACTIONS(8314), + [aux_sym_erase_statement_token1] = ACTIONS(8312), + [aux_sym_open_statement_token1] = ACTIONS(8312), + [aux_sym_file_mode_token2] = ACTIONS(8312), + [aux_sym_file_access_token2] = ACTIONS(8312), + [aux_sym_file_lock_token2] = ACTIONS(8312), + [aux_sym_print_statement_token1] = ACTIONS(8312), + [anon_sym_PLUS] = ACTIONS(8314), + [anon_sym_DASH] = ACTIONS(8312), + [anon_sym_QMARK] = ACTIONS(8314), + [aux_sym_close_statement_token1] = ACTIONS(8312), + [aux_sym_put_statement_token1] = ACTIONS(8312), + [aux_sym_unlock_statement_token1] = ACTIONS(8312), + [aux_sym_seek_statement_token1] = ACTIONS(8312), + [sym_reset_statement] = ACTIONS(8312), + [aux_sym_raise_event_statement_token1] = ACTIONS(8312), + [sym_stop_statement] = ACTIONS(8312), + [sym_beep_statement] = ACTIONS(8312), + [aux_sym_unload_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token2] = ACTIONS(8312), + [aux_sym_def_type_statement_token3] = ACTIONS(8312), + [aux_sym_def_type_statement_token4] = ACTIONS(8312), + [aux_sym_def_type_statement_token5] = ACTIONS(8312), + [aux_sym_def_type_statement_token6] = ACTIONS(8312), + [aux_sym_def_type_statement_token7] = ACTIONS(8312), + [aux_sym_def_type_statement_token8] = ACTIONS(8312), + [aux_sym_def_type_statement_token9] = ACTIONS(8312), + [aux_sym_def_type_statement_token10] = ACTIONS(8312), + [aux_sym_def_type_statement_token11] = ACTIONS(8312), + [aux_sym_def_type_statement_token12] = ACTIONS(8312), + [aux_sym_def_type_statement_token13] = ACTIONS(8312), + [aux_sym_def_type_statement_token14] = ACTIONS(8312), + [aux_sym_call_statement_token1] = ACTIONS(8312), + [sym__ambiguous_call_statement] = ACTIONS(8312), + [aux_sym_addressof_expression_token1] = ACTIONS(8312), + [aux_sym_type_of_expression_token1] = ACTIONS(8312), + [aux_sym_unary_expression_token1] = ACTIONS(8312), + [sym_string_literal] = ACTIONS(8314), + [sym_number_literal] = ACTIONS(8314), + [aux_sym_boolean_literal_token1] = ACTIONS(8312), + [aux_sym_boolean_literal_token2] = ACTIONS(8312), + [sym_nothing_literal] = ACTIONS(8312), + [sym_null_literal] = ACTIONS(8312), + [sym_empty_literal] = ACTIONS(8312), + [sym_date_literal] = ACTIONS(8314), + [anon_sym_POUND] = ACTIONS(8312), + }, + [STATE(3917)] = { + [sym_identifier] = ACTIONS(9156), + [sym_newline] = ACTIONS(9158), + [anon_sym_COLON] = ACTIONS(9158), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9156), + [aux_sym_frm_property_statement_token1] = ACTIONS(9156), + [anon_sym_DOT] = ACTIONS(9156), + [anon_sym_BANG] = ACTIONS(9158), + [aux_sym__attribute_identifier_token1] = ACTIONS(9156), + [aux_sym_option_statement_token3] = ACTIONS(9156), + [aux_sym_type_declaration_token1] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9156), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9156), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9156), + [aux_sym_enum_declaration_token1] = ACTIONS(9156), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9156), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9156), + [aux_sym_declare_function_statement_token1] = ACTIONS(9156), + [aux_sym_preprocessor_const_token1] = ACTIONS(9156), + [aux_sym__property_get_header_token1] = ACTIONS(9156), + [aux_sym_event_declaration_token1] = ACTIONS(9156), + [sym_static_modifier] = ACTIONS(9156), + [sym__dim_keyword] = ACTIONS(9156), + [sym__redim_keyword] = ACTIONS(9156), + [aux_sym_get_accessor_token1] = ACTIONS(9156), + [aux_sym_set_accessor_token1] = ACTIONS(9156), + [aux_sym_const_declaration_token1] = ACTIONS(9156), + [anon_sym_LPAREN] = ACTIONS(9158), + [aux_sym_as_type_clause_token2] = ACTIONS(9156), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9156), + [aux_sym_visibility_token1] = ACTIONS(9156), + [aux_sym_visibility_token2] = ACTIONS(9156), + [aux_sym_elseif_fragment_token1] = ACTIONS(9156), + [aux_sym_else_fragment_token1] = ACTIONS(9156), + [aux_sym_select_statement_token1] = ACTIONS(9156), + [aux_sym__for_header_token1] = ACTIONS(9156), + [aux_sym_do_statement_token1] = ACTIONS(9156), + [aux_sym_do_condition_token1] = ACTIONS(9156), + [aux_sym_with_statement_token1] = ACTIONS(9156), + [aux_sym_exit_statement_token1] = ACTIONS(9156), + [sym_end_statement] = ACTIONS(9158), + [aux_sym_on_goto_statement_token1] = ACTIONS(9156), + [aux_sym_on_goto_statement_token2] = ACTIONS(9156), + [aux_sym_on_error_statement_token2] = ACTIONS(9156), + [sym__ambiguous_redim_statement] = ACTIONS(9158), + [aux_sym_erase_statement_token1] = ACTIONS(9156), + [aux_sym_open_statement_token1] = ACTIONS(9156), + [aux_sym_file_mode_token2] = ACTIONS(9156), + [aux_sym_file_access_token2] = ACTIONS(9156), + [aux_sym_file_lock_token2] = ACTIONS(9156), + [aux_sym_print_statement_token1] = ACTIONS(9156), + [anon_sym_PLUS] = ACTIONS(9158), + [anon_sym_DASH] = ACTIONS(9156), + [anon_sym_QMARK] = ACTIONS(9158), + [aux_sym_close_statement_token1] = ACTIONS(9156), + [aux_sym_put_statement_token1] = ACTIONS(9156), + [aux_sym_unlock_statement_token1] = ACTIONS(9156), + [aux_sym_seek_statement_token1] = ACTIONS(9156), + [sym_reset_statement] = ACTIONS(9156), + [aux_sym_raise_event_statement_token1] = ACTIONS(9156), + [sym_stop_statement] = ACTIONS(9156), + [sym_beep_statement] = ACTIONS(9156), + [aux_sym_unload_statement_token1] = ACTIONS(9156), + [aux_sym_def_type_statement_token1] = ACTIONS(9156), + [aux_sym_def_type_statement_token2] = ACTIONS(9156), + [aux_sym_def_type_statement_token3] = ACTIONS(9156), + [aux_sym_def_type_statement_token4] = ACTIONS(9156), + [aux_sym_def_type_statement_token5] = ACTIONS(9156), + [aux_sym_def_type_statement_token6] = ACTIONS(9156), + [aux_sym_def_type_statement_token7] = ACTIONS(9156), + [aux_sym_def_type_statement_token8] = ACTIONS(9156), + [aux_sym_def_type_statement_token9] = ACTIONS(9156), + [aux_sym_def_type_statement_token10] = ACTIONS(9156), + [aux_sym_def_type_statement_token11] = ACTIONS(9156), + [aux_sym_def_type_statement_token12] = ACTIONS(9156), + [aux_sym_def_type_statement_token13] = ACTIONS(9156), + [aux_sym_def_type_statement_token14] = ACTIONS(9156), + [aux_sym_call_statement_token1] = ACTIONS(9156), + [sym__ambiguous_call_statement] = ACTIONS(9156), + [aux_sym_addressof_expression_token1] = ACTIONS(9156), + [aux_sym_type_of_expression_token1] = ACTIONS(9156), + [aux_sym_unary_expression_token1] = ACTIONS(9156), + [sym_string_literal] = ACTIONS(9158), + [sym_number_literal] = ACTIONS(9158), + [aux_sym_boolean_literal_token1] = ACTIONS(9156), + [aux_sym_boolean_literal_token2] = ACTIONS(9156), + [sym_nothing_literal] = ACTIONS(9156), + [sym_null_literal] = ACTIONS(9156), + [sym_empty_literal] = ACTIONS(9156), + [sym_date_literal] = ACTIONS(9158), + [anon_sym_POUND] = ACTIONS(9156), + }, + [STATE(3918)] = { + [sym_identifier] = ACTIONS(9160), + [sym_newline] = ACTIONS(9162), + [anon_sym_COLON] = ACTIONS(9162), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9160), + [aux_sym_frm_property_statement_token1] = ACTIONS(9160), + [anon_sym_DOT] = ACTIONS(9160), + [anon_sym_BANG] = ACTIONS(9162), + [aux_sym__attribute_identifier_token1] = ACTIONS(9160), + [aux_sym_option_statement_token3] = ACTIONS(9160), + [aux_sym_type_declaration_token1] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9160), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9160), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9160), + [aux_sym_enum_declaration_token1] = ACTIONS(9160), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9160), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9160), + [aux_sym_declare_function_statement_token1] = ACTIONS(9160), + [aux_sym_preprocessor_const_token1] = ACTIONS(9160), + [aux_sym__property_get_header_token1] = ACTIONS(9160), + [aux_sym_event_declaration_token1] = ACTIONS(9160), + [sym_static_modifier] = ACTIONS(9160), + [sym__dim_keyword] = ACTIONS(9160), + [sym__redim_keyword] = ACTIONS(9160), + [aux_sym_get_accessor_token1] = ACTIONS(9160), + [aux_sym_set_accessor_token1] = ACTIONS(9160), + [aux_sym_const_declaration_token1] = ACTIONS(9160), + [anon_sym_LPAREN] = ACTIONS(9162), + [aux_sym_as_type_clause_token2] = ACTIONS(9160), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9160), + [aux_sym_visibility_token1] = ACTIONS(9160), + [aux_sym_visibility_token2] = ACTIONS(9160), + [aux_sym_elseif_fragment_token1] = ACTIONS(9160), + [aux_sym_else_fragment_token1] = ACTIONS(9160), + [aux_sym_select_statement_token1] = ACTIONS(9160), + [aux_sym__for_header_token1] = ACTIONS(9160), + [aux_sym_do_statement_token1] = ACTIONS(9160), + [aux_sym_do_condition_token1] = ACTIONS(9160), + [aux_sym_with_statement_token1] = ACTIONS(9160), + [aux_sym_exit_statement_token1] = ACTIONS(9160), + [sym_end_statement] = ACTIONS(9162), + [aux_sym_on_goto_statement_token1] = ACTIONS(9160), + [aux_sym_on_goto_statement_token2] = ACTIONS(9160), + [aux_sym_on_error_statement_token2] = ACTIONS(9160), + [sym__ambiguous_redim_statement] = ACTIONS(9162), + [aux_sym_erase_statement_token1] = ACTIONS(9160), + [aux_sym_open_statement_token1] = ACTIONS(9160), + [aux_sym_file_mode_token2] = ACTIONS(9160), + [aux_sym_file_access_token2] = ACTIONS(9160), + [aux_sym_file_lock_token2] = ACTIONS(9160), + [aux_sym_print_statement_token1] = ACTIONS(9160), + [anon_sym_PLUS] = ACTIONS(9162), + [anon_sym_DASH] = ACTIONS(9160), + [anon_sym_QMARK] = ACTIONS(9162), + [aux_sym_close_statement_token1] = ACTIONS(9160), + [aux_sym_put_statement_token1] = ACTIONS(9160), + [aux_sym_unlock_statement_token1] = ACTIONS(9160), + [aux_sym_seek_statement_token1] = ACTIONS(9160), + [sym_reset_statement] = ACTIONS(9160), + [aux_sym_raise_event_statement_token1] = ACTIONS(9160), + [sym_stop_statement] = ACTIONS(9160), + [sym_beep_statement] = ACTIONS(9160), + [aux_sym_unload_statement_token1] = ACTIONS(9160), + [aux_sym_def_type_statement_token1] = ACTIONS(9160), + [aux_sym_def_type_statement_token2] = ACTIONS(9160), + [aux_sym_def_type_statement_token3] = ACTIONS(9160), + [aux_sym_def_type_statement_token4] = ACTIONS(9160), + [aux_sym_def_type_statement_token5] = ACTIONS(9160), + [aux_sym_def_type_statement_token6] = ACTIONS(9160), + [aux_sym_def_type_statement_token7] = ACTIONS(9160), + [aux_sym_def_type_statement_token8] = ACTIONS(9160), + [aux_sym_def_type_statement_token9] = ACTIONS(9160), + [aux_sym_def_type_statement_token10] = ACTIONS(9160), + [aux_sym_def_type_statement_token11] = ACTIONS(9160), + [aux_sym_def_type_statement_token12] = ACTIONS(9160), + [aux_sym_def_type_statement_token13] = ACTIONS(9160), + [aux_sym_def_type_statement_token14] = ACTIONS(9160), + [aux_sym_call_statement_token1] = ACTIONS(9160), + [sym__ambiguous_call_statement] = ACTIONS(9160), + [aux_sym_addressof_expression_token1] = ACTIONS(9160), + [aux_sym_type_of_expression_token1] = ACTIONS(9160), + [aux_sym_unary_expression_token1] = ACTIONS(9160), + [sym_string_literal] = ACTIONS(9162), + [sym_number_literal] = ACTIONS(9162), + [aux_sym_boolean_literal_token1] = ACTIONS(9160), + [aux_sym_boolean_literal_token2] = ACTIONS(9160), + [sym_nothing_literal] = ACTIONS(9160), + [sym_null_literal] = ACTIONS(9160), + [sym_empty_literal] = ACTIONS(9160), + [sym_date_literal] = ACTIONS(9162), + [anon_sym_POUND] = ACTIONS(9160), + }, + [STATE(3919)] = { + [sym_identifier] = ACTIONS(9164), + [sym_newline] = ACTIONS(9166), + [anon_sym_COLON] = ACTIONS(9166), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9164), + [aux_sym_frm_property_statement_token1] = ACTIONS(9164), + [anon_sym_DOT] = ACTIONS(9164), + [anon_sym_BANG] = ACTIONS(9166), + [aux_sym__attribute_identifier_token1] = ACTIONS(9164), + [aux_sym_option_statement_token3] = ACTIONS(9164), + [aux_sym_type_declaration_token1] = ACTIONS(9164), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9164), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9164), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9164), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9164), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9164), + [aux_sym_enum_declaration_token1] = ACTIONS(9164), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9164), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9164), + [aux_sym_declare_function_statement_token1] = ACTIONS(9164), + [aux_sym_preprocessor_const_token1] = ACTIONS(9164), + [aux_sym__property_get_header_token1] = ACTIONS(9164), + [aux_sym_event_declaration_token1] = ACTIONS(9164), + [sym_static_modifier] = ACTIONS(9164), + [sym__dim_keyword] = ACTIONS(9164), + [sym__redim_keyword] = ACTIONS(9164), + [aux_sym_get_accessor_token1] = ACTIONS(9164), + [aux_sym_set_accessor_token1] = ACTIONS(9164), + [aux_sym_const_declaration_token1] = ACTIONS(9164), + [anon_sym_LPAREN] = ACTIONS(9166), + [aux_sym_as_type_clause_token2] = ACTIONS(9164), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9164), + [aux_sym_visibility_token1] = ACTIONS(9164), + [aux_sym_visibility_token2] = ACTIONS(9164), + [aux_sym_elseif_fragment_token1] = ACTIONS(9164), + [aux_sym_else_fragment_token1] = ACTIONS(9164), + [aux_sym_select_statement_token1] = ACTIONS(9164), + [aux_sym__for_header_token1] = ACTIONS(9164), + [aux_sym_do_statement_token1] = ACTIONS(9164), + [aux_sym_do_condition_token1] = ACTIONS(9164), + [aux_sym_with_statement_token1] = ACTIONS(9164), + [aux_sym_exit_statement_token1] = ACTIONS(9164), + [sym_end_statement] = ACTIONS(9166), + [aux_sym_on_goto_statement_token1] = ACTIONS(9164), + [aux_sym_on_goto_statement_token2] = ACTIONS(9164), + [aux_sym_on_error_statement_token2] = ACTIONS(9164), + [sym__ambiguous_redim_statement] = ACTIONS(9166), + [aux_sym_erase_statement_token1] = ACTIONS(9164), + [aux_sym_open_statement_token1] = ACTIONS(9164), + [aux_sym_file_mode_token2] = ACTIONS(9164), + [aux_sym_file_access_token2] = ACTIONS(9164), + [aux_sym_file_lock_token2] = ACTIONS(9164), + [aux_sym_print_statement_token1] = ACTIONS(9164), + [anon_sym_PLUS] = ACTIONS(9166), + [anon_sym_DASH] = ACTIONS(9164), + [anon_sym_QMARK] = ACTIONS(9166), + [aux_sym_close_statement_token1] = ACTIONS(9164), + [aux_sym_put_statement_token1] = ACTIONS(9164), + [aux_sym_unlock_statement_token1] = ACTIONS(9164), + [aux_sym_seek_statement_token1] = ACTIONS(9164), + [sym_reset_statement] = ACTIONS(9164), + [aux_sym_raise_event_statement_token1] = ACTIONS(9164), + [sym_stop_statement] = ACTIONS(9164), + [sym_beep_statement] = ACTIONS(9164), + [aux_sym_unload_statement_token1] = ACTIONS(9164), + [aux_sym_def_type_statement_token1] = ACTIONS(9164), + [aux_sym_def_type_statement_token2] = ACTIONS(9164), + [aux_sym_def_type_statement_token3] = ACTIONS(9164), + [aux_sym_def_type_statement_token4] = ACTIONS(9164), + [aux_sym_def_type_statement_token5] = ACTIONS(9164), + [aux_sym_def_type_statement_token6] = ACTIONS(9164), + [aux_sym_def_type_statement_token7] = ACTIONS(9164), + [aux_sym_def_type_statement_token8] = ACTIONS(9164), + [aux_sym_def_type_statement_token9] = ACTIONS(9164), + [aux_sym_def_type_statement_token10] = ACTIONS(9164), + [aux_sym_def_type_statement_token11] = ACTIONS(9164), + [aux_sym_def_type_statement_token12] = ACTIONS(9164), + [aux_sym_def_type_statement_token13] = ACTIONS(9164), + [aux_sym_def_type_statement_token14] = ACTIONS(9164), + [aux_sym_call_statement_token1] = ACTIONS(9164), + [sym__ambiguous_call_statement] = ACTIONS(9164), + [aux_sym_addressof_expression_token1] = ACTIONS(9164), + [aux_sym_type_of_expression_token1] = ACTIONS(9164), + [aux_sym_unary_expression_token1] = ACTIONS(9164), + [sym_string_literal] = ACTIONS(9166), + [sym_number_literal] = ACTIONS(9166), + [aux_sym_boolean_literal_token1] = ACTIONS(9164), + [aux_sym_boolean_literal_token2] = ACTIONS(9164), + [sym_nothing_literal] = ACTIONS(9164), + [sym_null_literal] = ACTIONS(9164), + [sym_empty_literal] = ACTIONS(9164), + [sym_date_literal] = ACTIONS(9166), + [anon_sym_POUND] = ACTIONS(9164), + }, + [STATE(3920)] = { + [sym_identifier] = ACTIONS(9168), + [sym_newline] = ACTIONS(9170), + [anon_sym_COLON] = ACTIONS(9170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9168), + [aux_sym_frm_property_statement_token1] = ACTIONS(9168), + [anon_sym_DOT] = ACTIONS(9168), + [anon_sym_BANG] = ACTIONS(9170), + [aux_sym__attribute_identifier_token1] = ACTIONS(9168), + [aux_sym_option_statement_token3] = ACTIONS(9168), + [aux_sym_type_declaration_token1] = ACTIONS(9168), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9168), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9168), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9168), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9168), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9168), + [aux_sym_enum_declaration_token1] = ACTIONS(9168), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9168), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9168), + [aux_sym_declare_function_statement_token1] = ACTIONS(9168), + [aux_sym_preprocessor_const_token1] = ACTIONS(9168), + [aux_sym__property_get_header_token1] = ACTIONS(9168), + [aux_sym_event_declaration_token1] = ACTIONS(9168), + [sym_static_modifier] = ACTIONS(9168), + [sym__dim_keyword] = ACTIONS(9168), + [sym__redim_keyword] = ACTIONS(9168), + [aux_sym_get_accessor_token1] = ACTIONS(9168), + [aux_sym_set_accessor_token1] = ACTIONS(9168), + [aux_sym_const_declaration_token1] = ACTIONS(9168), + [anon_sym_LPAREN] = ACTIONS(9170), + [aux_sym_as_type_clause_token2] = ACTIONS(9168), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9168), + [aux_sym_visibility_token1] = ACTIONS(9168), + [aux_sym_visibility_token2] = ACTIONS(9168), + [aux_sym_elseif_fragment_token1] = ACTIONS(9168), + [aux_sym_else_fragment_token1] = ACTIONS(9168), + [aux_sym_select_statement_token1] = ACTIONS(9168), + [aux_sym__for_header_token1] = ACTIONS(9168), + [aux_sym_do_statement_token1] = ACTIONS(9168), + [aux_sym_do_condition_token1] = ACTIONS(9168), + [aux_sym_with_statement_token1] = ACTIONS(9168), + [aux_sym_exit_statement_token1] = ACTIONS(9168), + [sym_end_statement] = ACTIONS(9170), + [aux_sym_on_goto_statement_token1] = ACTIONS(9168), + [aux_sym_on_goto_statement_token2] = ACTIONS(9168), + [aux_sym_on_error_statement_token2] = ACTIONS(9168), + [sym__ambiguous_redim_statement] = ACTIONS(9170), + [aux_sym_erase_statement_token1] = ACTIONS(9168), + [aux_sym_open_statement_token1] = ACTIONS(9168), + [aux_sym_file_mode_token2] = ACTIONS(9168), + [aux_sym_file_access_token2] = ACTIONS(9168), + [aux_sym_file_lock_token2] = ACTIONS(9168), + [aux_sym_print_statement_token1] = ACTIONS(9168), + [anon_sym_PLUS] = ACTIONS(9170), + [anon_sym_DASH] = ACTIONS(9168), + [anon_sym_QMARK] = ACTIONS(9170), + [aux_sym_close_statement_token1] = ACTIONS(9168), + [aux_sym_put_statement_token1] = ACTIONS(9168), + [aux_sym_unlock_statement_token1] = ACTIONS(9168), + [aux_sym_seek_statement_token1] = ACTIONS(9168), + [sym_reset_statement] = ACTIONS(9168), + [aux_sym_raise_event_statement_token1] = ACTIONS(9168), + [sym_stop_statement] = ACTIONS(9168), + [sym_beep_statement] = ACTIONS(9168), + [aux_sym_unload_statement_token1] = ACTIONS(9168), + [aux_sym_def_type_statement_token1] = ACTIONS(9168), + [aux_sym_def_type_statement_token2] = ACTIONS(9168), + [aux_sym_def_type_statement_token3] = ACTIONS(9168), + [aux_sym_def_type_statement_token4] = ACTIONS(9168), + [aux_sym_def_type_statement_token5] = ACTIONS(9168), + [aux_sym_def_type_statement_token6] = ACTIONS(9168), + [aux_sym_def_type_statement_token7] = ACTIONS(9168), + [aux_sym_def_type_statement_token8] = ACTIONS(9168), + [aux_sym_def_type_statement_token9] = ACTIONS(9168), + [aux_sym_def_type_statement_token10] = ACTIONS(9168), + [aux_sym_def_type_statement_token11] = ACTIONS(9168), + [aux_sym_def_type_statement_token12] = ACTIONS(9168), + [aux_sym_def_type_statement_token13] = ACTIONS(9168), + [aux_sym_def_type_statement_token14] = ACTIONS(9168), + [aux_sym_call_statement_token1] = ACTIONS(9168), + [sym__ambiguous_call_statement] = ACTIONS(9168), + [aux_sym_addressof_expression_token1] = ACTIONS(9168), + [aux_sym_type_of_expression_token1] = ACTIONS(9168), + [aux_sym_unary_expression_token1] = ACTIONS(9168), + [sym_string_literal] = ACTIONS(9170), + [sym_number_literal] = ACTIONS(9170), + [aux_sym_boolean_literal_token1] = ACTIONS(9168), + [aux_sym_boolean_literal_token2] = ACTIONS(9168), + [sym_nothing_literal] = ACTIONS(9168), + [sym_null_literal] = ACTIONS(9168), + [sym_empty_literal] = ACTIONS(9168), + [sym_date_literal] = ACTIONS(9170), + [anon_sym_POUND] = ACTIONS(9168), + }, + [STATE(3921)] = { + [sym_identifier] = ACTIONS(8809), + [sym_newline] = ACTIONS(8811), + [anon_sym_COLON] = ACTIONS(8811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8809), + [aux_sym_frm_property_statement_token1] = ACTIONS(8809), + [anon_sym_DOT] = ACTIONS(8809), + [anon_sym_BANG] = ACTIONS(8811), + [aux_sym__attribute_identifier_token1] = ACTIONS(8809), + [aux_sym_option_statement_token3] = ACTIONS(8809), + [aux_sym_type_declaration_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8809), + [aux_sym_enum_declaration_token1] = ACTIONS(8809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8809), + [aux_sym_declare_function_statement_token1] = ACTIONS(8809), + [aux_sym_preprocessor_const_token1] = ACTIONS(8809), + [aux_sym__property_get_header_token1] = ACTIONS(8809), + [aux_sym_event_declaration_token1] = ACTIONS(8809), + [sym_static_modifier] = ACTIONS(8809), + [sym__dim_keyword] = ACTIONS(8809), + [sym__redim_keyword] = ACTIONS(8809), + [aux_sym_get_accessor_token1] = ACTIONS(8809), + [aux_sym_set_accessor_token1] = ACTIONS(8809), + [aux_sym_const_declaration_token1] = ACTIONS(8809), + [anon_sym_LPAREN] = ACTIONS(8811), + [aux_sym_as_type_clause_token2] = ACTIONS(8809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8809), + [aux_sym_visibility_token1] = ACTIONS(8809), + [aux_sym_visibility_token2] = ACTIONS(8809), + [aux_sym_elseif_fragment_token1] = ACTIONS(8809), + [aux_sym_else_fragment_token1] = ACTIONS(8809), + [aux_sym_select_statement_token1] = ACTIONS(8809), + [aux_sym__for_header_token1] = ACTIONS(8809), + [aux_sym_do_statement_token1] = ACTIONS(8809), + [aux_sym_do_condition_token1] = ACTIONS(8809), + [aux_sym_with_statement_token1] = ACTIONS(8809), + [aux_sym_exit_statement_token1] = ACTIONS(8809), + [sym_end_statement] = ACTIONS(8811), + [aux_sym_on_goto_statement_token1] = ACTIONS(8809), + [aux_sym_on_goto_statement_token2] = ACTIONS(8809), + [aux_sym_on_error_statement_token2] = ACTIONS(8809), + [sym__ambiguous_redim_statement] = ACTIONS(8811), + [aux_sym_erase_statement_token1] = ACTIONS(8809), + [aux_sym_open_statement_token1] = ACTIONS(8809), + [aux_sym_file_mode_token2] = ACTIONS(8809), + [aux_sym_file_access_token2] = ACTIONS(8809), + [aux_sym_file_lock_token2] = ACTIONS(8809), + [aux_sym_print_statement_token1] = ACTIONS(8809), + [anon_sym_PLUS] = ACTIONS(8811), + [anon_sym_DASH] = ACTIONS(8809), + [anon_sym_QMARK] = ACTIONS(8811), + [aux_sym_close_statement_token1] = ACTIONS(8809), + [aux_sym_put_statement_token1] = ACTIONS(8809), + [aux_sym_unlock_statement_token1] = ACTIONS(8809), + [aux_sym_seek_statement_token1] = ACTIONS(8809), + [sym_reset_statement] = ACTIONS(8809), + [aux_sym_raise_event_statement_token1] = ACTIONS(8809), + [sym_stop_statement] = ACTIONS(8809), + [sym_beep_statement] = ACTIONS(8809), + [aux_sym_unload_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token2] = ACTIONS(8809), + [aux_sym_def_type_statement_token3] = ACTIONS(8809), + [aux_sym_def_type_statement_token4] = ACTIONS(8809), + [aux_sym_def_type_statement_token5] = ACTIONS(8809), + [aux_sym_def_type_statement_token6] = ACTIONS(8809), + [aux_sym_def_type_statement_token7] = ACTIONS(8809), + [aux_sym_def_type_statement_token8] = ACTIONS(8809), + [aux_sym_def_type_statement_token9] = ACTIONS(8809), + [aux_sym_def_type_statement_token10] = ACTIONS(8809), + [aux_sym_def_type_statement_token11] = ACTIONS(8809), + [aux_sym_def_type_statement_token12] = ACTIONS(8809), + [aux_sym_def_type_statement_token13] = ACTIONS(8809), + [aux_sym_def_type_statement_token14] = ACTIONS(8809), + [aux_sym_call_statement_token1] = ACTIONS(8809), + [sym__ambiguous_call_statement] = ACTIONS(8809), + [aux_sym_addressof_expression_token1] = ACTIONS(8809), + [aux_sym_type_of_expression_token1] = ACTIONS(8809), + [aux_sym_unary_expression_token1] = ACTIONS(8809), + [sym_string_literal] = ACTIONS(8811), + [sym_number_literal] = ACTIONS(8811), + [aux_sym_boolean_literal_token1] = ACTIONS(8809), + [aux_sym_boolean_literal_token2] = ACTIONS(8809), + [sym_nothing_literal] = ACTIONS(8809), + [sym_null_literal] = ACTIONS(8809), + [sym_empty_literal] = ACTIONS(8809), + [sym_date_literal] = ACTIONS(8811), + [anon_sym_POUND] = ACTIONS(8809), + }, + [STATE(3922)] = { + [sym_identifier] = ACTIONS(8877), + [sym_newline] = ACTIONS(8879), + [anon_sym_COLON] = ACTIONS(8879), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8877), + [aux_sym_frm_property_statement_token1] = ACTIONS(8877), + [anon_sym_DOT] = ACTIONS(8877), + [anon_sym_BANG] = ACTIONS(8879), + [aux_sym__attribute_identifier_token1] = ACTIONS(8877), + [aux_sym_option_statement_token3] = ACTIONS(8877), + [aux_sym_type_declaration_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8877), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8877), + [aux_sym_enum_declaration_token1] = ACTIONS(8877), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8877), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8877), + [aux_sym_declare_function_statement_token1] = ACTIONS(8877), + [aux_sym_preprocessor_const_token1] = ACTIONS(8877), + [aux_sym__property_get_header_token1] = ACTIONS(8877), + [aux_sym_event_declaration_token1] = ACTIONS(8877), + [sym_static_modifier] = ACTIONS(8877), + [sym__dim_keyword] = ACTIONS(8877), + [sym__redim_keyword] = ACTIONS(8877), + [aux_sym_get_accessor_token1] = ACTIONS(8877), + [aux_sym_set_accessor_token1] = ACTIONS(8877), + [aux_sym_const_declaration_token1] = ACTIONS(8877), + [anon_sym_LPAREN] = ACTIONS(8879), + [aux_sym_as_type_clause_token2] = ACTIONS(8877), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8877), + [aux_sym_visibility_token1] = ACTIONS(8877), + [aux_sym_visibility_token2] = ACTIONS(8877), + [aux_sym_elseif_fragment_token1] = ACTIONS(8877), + [aux_sym_else_fragment_token1] = ACTIONS(8877), + [aux_sym_select_statement_token1] = ACTIONS(8877), + [aux_sym__for_header_token1] = ACTIONS(8877), + [aux_sym_do_statement_token1] = ACTIONS(8877), + [aux_sym_do_condition_token1] = ACTIONS(8877), + [aux_sym_with_statement_token1] = ACTIONS(8877), + [aux_sym_exit_statement_token1] = ACTIONS(8877), + [sym_end_statement] = ACTIONS(8879), + [aux_sym_on_goto_statement_token1] = ACTIONS(8877), + [aux_sym_on_goto_statement_token2] = ACTIONS(8877), + [aux_sym_on_error_statement_token2] = ACTIONS(8877), + [sym__ambiguous_redim_statement] = ACTIONS(8879), + [aux_sym_erase_statement_token1] = ACTIONS(8877), + [aux_sym_open_statement_token1] = ACTIONS(8877), + [aux_sym_file_mode_token2] = ACTIONS(8877), + [aux_sym_file_access_token2] = ACTIONS(8877), + [aux_sym_file_lock_token2] = ACTIONS(8877), + [aux_sym_print_statement_token1] = ACTIONS(8877), + [anon_sym_PLUS] = ACTIONS(8879), + [anon_sym_DASH] = ACTIONS(8877), + [anon_sym_QMARK] = ACTIONS(8879), + [aux_sym_close_statement_token1] = ACTIONS(8877), + [aux_sym_put_statement_token1] = ACTIONS(8877), + [aux_sym_unlock_statement_token1] = ACTIONS(8877), + [aux_sym_seek_statement_token1] = ACTIONS(8877), + [sym_reset_statement] = ACTIONS(8877), + [aux_sym_raise_event_statement_token1] = ACTIONS(8877), + [sym_stop_statement] = ACTIONS(8877), + [sym_beep_statement] = ACTIONS(8877), + [aux_sym_unload_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token2] = ACTIONS(8877), + [aux_sym_def_type_statement_token3] = ACTIONS(8877), + [aux_sym_def_type_statement_token4] = ACTIONS(8877), + [aux_sym_def_type_statement_token5] = ACTIONS(8877), + [aux_sym_def_type_statement_token6] = ACTIONS(8877), + [aux_sym_def_type_statement_token7] = ACTIONS(8877), + [aux_sym_def_type_statement_token8] = ACTIONS(8877), + [aux_sym_def_type_statement_token9] = ACTIONS(8877), + [aux_sym_def_type_statement_token10] = ACTIONS(8877), + [aux_sym_def_type_statement_token11] = ACTIONS(8877), + [aux_sym_def_type_statement_token12] = ACTIONS(8877), + [aux_sym_def_type_statement_token13] = ACTIONS(8877), + [aux_sym_def_type_statement_token14] = ACTIONS(8877), + [aux_sym_call_statement_token1] = ACTIONS(8877), + [sym__ambiguous_call_statement] = ACTIONS(8877), + [aux_sym_addressof_expression_token1] = ACTIONS(8877), + [aux_sym_type_of_expression_token1] = ACTIONS(8877), + [aux_sym_unary_expression_token1] = ACTIONS(8877), + [sym_string_literal] = ACTIONS(8879), + [sym_number_literal] = ACTIONS(8879), + [aux_sym_boolean_literal_token1] = ACTIONS(8877), + [aux_sym_boolean_literal_token2] = ACTIONS(8877), + [sym_nothing_literal] = ACTIONS(8877), + [sym_null_literal] = ACTIONS(8877), + [sym_empty_literal] = ACTIONS(8877), + [sym_date_literal] = ACTIONS(8879), + [anon_sym_POUND] = ACTIONS(8877), + }, + [STATE(3923)] = { + [sym_identifier] = ACTIONS(8907), + [sym_newline] = ACTIONS(8909), + [anon_sym_COLON] = ACTIONS(8909), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8907), + [aux_sym_frm_property_statement_token1] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8907), + [anon_sym_BANG] = ACTIONS(8909), + [aux_sym__attribute_identifier_token1] = ACTIONS(8907), + [aux_sym_option_statement_token3] = ACTIONS(8907), + [aux_sym_type_declaration_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8907), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8907), + [aux_sym_enum_declaration_token1] = ACTIONS(8907), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8907), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8907), + [aux_sym_declare_function_statement_token1] = ACTIONS(8907), + [aux_sym_preprocessor_const_token1] = ACTIONS(8907), + [aux_sym__property_get_header_token1] = ACTIONS(8907), + [aux_sym_event_declaration_token1] = ACTIONS(8907), + [sym_static_modifier] = ACTIONS(8907), + [sym__dim_keyword] = ACTIONS(8907), + [sym__redim_keyword] = ACTIONS(8907), + [aux_sym_get_accessor_token1] = ACTIONS(8907), + [aux_sym_set_accessor_token1] = ACTIONS(8907), + [aux_sym_const_declaration_token1] = ACTIONS(8907), + [anon_sym_LPAREN] = ACTIONS(8909), + [aux_sym_as_type_clause_token2] = ACTIONS(8907), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8907), + [aux_sym_visibility_token1] = ACTIONS(8907), + [aux_sym_visibility_token2] = ACTIONS(8907), + [aux_sym_elseif_fragment_token1] = ACTIONS(8907), + [aux_sym_else_fragment_token1] = ACTIONS(8907), + [aux_sym_select_statement_token1] = ACTIONS(8907), + [aux_sym__for_header_token1] = ACTIONS(8907), + [aux_sym_do_statement_token1] = ACTIONS(8907), + [aux_sym_do_condition_token1] = ACTIONS(8907), + [aux_sym_with_statement_token1] = ACTIONS(8907), + [aux_sym_exit_statement_token1] = ACTIONS(8907), + [sym_end_statement] = ACTIONS(8909), + [aux_sym_on_goto_statement_token1] = ACTIONS(8907), + [aux_sym_on_goto_statement_token2] = ACTIONS(8907), + [aux_sym_on_error_statement_token2] = ACTIONS(8907), + [sym__ambiguous_redim_statement] = ACTIONS(8909), + [aux_sym_erase_statement_token1] = ACTIONS(8907), + [aux_sym_open_statement_token1] = ACTIONS(8907), + [aux_sym_file_mode_token2] = ACTIONS(8907), + [aux_sym_file_access_token2] = ACTIONS(8907), + [aux_sym_file_lock_token2] = ACTIONS(8907), + [aux_sym_print_statement_token1] = ACTIONS(8907), + [anon_sym_PLUS] = ACTIONS(8909), + [anon_sym_DASH] = ACTIONS(8907), + [anon_sym_QMARK] = ACTIONS(8909), + [aux_sym_close_statement_token1] = ACTIONS(8907), + [aux_sym_put_statement_token1] = ACTIONS(8907), + [aux_sym_unlock_statement_token1] = ACTIONS(8907), + [aux_sym_seek_statement_token1] = ACTIONS(8907), + [sym_reset_statement] = ACTIONS(8907), + [aux_sym_raise_event_statement_token1] = ACTIONS(8907), + [sym_stop_statement] = ACTIONS(8907), + [sym_beep_statement] = ACTIONS(8907), + [aux_sym_unload_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token2] = ACTIONS(8907), + [aux_sym_def_type_statement_token3] = ACTIONS(8907), + [aux_sym_def_type_statement_token4] = ACTIONS(8907), + [aux_sym_def_type_statement_token5] = ACTIONS(8907), + [aux_sym_def_type_statement_token6] = ACTIONS(8907), + [aux_sym_def_type_statement_token7] = ACTIONS(8907), + [aux_sym_def_type_statement_token8] = ACTIONS(8907), + [aux_sym_def_type_statement_token9] = ACTIONS(8907), + [aux_sym_def_type_statement_token10] = ACTIONS(8907), + [aux_sym_def_type_statement_token11] = ACTIONS(8907), + [aux_sym_def_type_statement_token12] = ACTIONS(8907), + [aux_sym_def_type_statement_token13] = ACTIONS(8907), + [aux_sym_def_type_statement_token14] = ACTIONS(8907), + [aux_sym_call_statement_token1] = ACTIONS(8907), + [sym__ambiguous_call_statement] = ACTIONS(8907), + [aux_sym_addressof_expression_token1] = ACTIONS(8907), + [aux_sym_type_of_expression_token1] = ACTIONS(8907), + [aux_sym_unary_expression_token1] = ACTIONS(8907), + [sym_string_literal] = ACTIONS(8909), + [sym_number_literal] = ACTIONS(8909), + [aux_sym_boolean_literal_token1] = ACTIONS(8907), + [aux_sym_boolean_literal_token2] = ACTIONS(8907), + [sym_nothing_literal] = ACTIONS(8907), + [sym_null_literal] = ACTIONS(8907), + [sym_empty_literal] = ACTIONS(8907), + [sym_date_literal] = ACTIONS(8909), + [anon_sym_POUND] = ACTIONS(8907), + }, + [STATE(3924)] = { + [sym_identifier] = ACTIONS(8927), + [sym_newline] = ACTIONS(8929), + [anon_sym_COLON] = ACTIONS(8929), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8927), + [aux_sym_frm_property_statement_token1] = ACTIONS(8927), + [anon_sym_DOT] = ACTIONS(8927), + [anon_sym_BANG] = ACTIONS(8929), + [aux_sym__attribute_identifier_token1] = ACTIONS(8927), + [aux_sym_option_statement_token3] = ACTIONS(8927), + [aux_sym_type_declaration_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8927), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8927), + [aux_sym_enum_declaration_token1] = ACTIONS(8927), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8927), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8927), + [aux_sym_declare_function_statement_token1] = ACTIONS(8927), + [aux_sym_preprocessor_const_token1] = ACTIONS(8927), + [aux_sym__property_get_header_token1] = ACTIONS(8927), + [aux_sym_event_declaration_token1] = ACTIONS(8927), + [sym_static_modifier] = ACTIONS(8927), + [sym__dim_keyword] = ACTIONS(8927), + [sym__redim_keyword] = ACTIONS(8927), + [aux_sym_get_accessor_token1] = ACTIONS(8927), + [aux_sym_set_accessor_token1] = ACTIONS(8927), + [aux_sym_const_declaration_token1] = ACTIONS(8927), + [anon_sym_LPAREN] = ACTIONS(8929), + [aux_sym_as_type_clause_token2] = ACTIONS(8927), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8927), + [aux_sym_visibility_token1] = ACTIONS(8927), + [aux_sym_visibility_token2] = ACTIONS(8927), + [aux_sym_elseif_fragment_token1] = ACTIONS(8927), + [aux_sym_else_fragment_token1] = ACTIONS(8927), + [aux_sym_select_statement_token1] = ACTIONS(8927), + [aux_sym__for_header_token1] = ACTIONS(8927), + [aux_sym_do_statement_token1] = ACTIONS(8927), + [aux_sym_do_condition_token1] = ACTIONS(8927), + [aux_sym_with_statement_token1] = ACTIONS(8927), + [aux_sym_exit_statement_token1] = ACTIONS(8927), + [sym_end_statement] = ACTIONS(8929), + [aux_sym_on_goto_statement_token1] = ACTIONS(8927), + [aux_sym_on_goto_statement_token2] = ACTIONS(8927), + [aux_sym_on_error_statement_token2] = ACTIONS(8927), + [sym__ambiguous_redim_statement] = ACTIONS(8929), + [aux_sym_erase_statement_token1] = ACTIONS(8927), + [aux_sym_open_statement_token1] = ACTIONS(8927), + [aux_sym_file_mode_token2] = ACTIONS(8927), + [aux_sym_file_access_token2] = ACTIONS(8927), + [aux_sym_file_lock_token2] = ACTIONS(8927), + [aux_sym_print_statement_token1] = ACTIONS(8927), + [anon_sym_PLUS] = ACTIONS(8929), + [anon_sym_DASH] = ACTIONS(8927), + [anon_sym_QMARK] = ACTIONS(8929), + [aux_sym_close_statement_token1] = ACTIONS(8927), + [aux_sym_put_statement_token1] = ACTIONS(8927), + [aux_sym_unlock_statement_token1] = ACTIONS(8927), + [aux_sym_seek_statement_token1] = ACTIONS(8927), + [sym_reset_statement] = ACTIONS(8927), + [aux_sym_raise_event_statement_token1] = ACTIONS(8927), + [sym_stop_statement] = ACTIONS(8927), + [sym_beep_statement] = ACTIONS(8927), + [aux_sym_unload_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token2] = ACTIONS(8927), + [aux_sym_def_type_statement_token3] = ACTIONS(8927), + [aux_sym_def_type_statement_token4] = ACTIONS(8927), + [aux_sym_def_type_statement_token5] = ACTIONS(8927), + [aux_sym_def_type_statement_token6] = ACTIONS(8927), + [aux_sym_def_type_statement_token7] = ACTIONS(8927), + [aux_sym_def_type_statement_token8] = ACTIONS(8927), + [aux_sym_def_type_statement_token9] = ACTIONS(8927), + [aux_sym_def_type_statement_token10] = ACTIONS(8927), + [aux_sym_def_type_statement_token11] = ACTIONS(8927), + [aux_sym_def_type_statement_token12] = ACTIONS(8927), + [aux_sym_def_type_statement_token13] = ACTIONS(8927), + [aux_sym_def_type_statement_token14] = ACTIONS(8927), + [aux_sym_call_statement_token1] = ACTIONS(8927), + [sym__ambiguous_call_statement] = ACTIONS(8927), + [aux_sym_addressof_expression_token1] = ACTIONS(8927), + [aux_sym_type_of_expression_token1] = ACTIONS(8927), + [aux_sym_unary_expression_token1] = ACTIONS(8927), + [sym_string_literal] = ACTIONS(8929), + [sym_number_literal] = ACTIONS(8929), + [aux_sym_boolean_literal_token1] = ACTIONS(8927), + [aux_sym_boolean_literal_token2] = ACTIONS(8927), + [sym_nothing_literal] = ACTIONS(8927), + [sym_null_literal] = ACTIONS(8927), + [sym_empty_literal] = ACTIONS(8927), + [sym_date_literal] = ACTIONS(8929), + [anon_sym_POUND] = ACTIONS(8927), + }, + [STATE(3925)] = { + [sym_identifier] = ACTIONS(8931), + [sym_newline] = ACTIONS(8933), + [anon_sym_COLON] = ACTIONS(8933), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8931), + [aux_sym_frm_property_statement_token1] = ACTIONS(8931), + [anon_sym_DOT] = ACTIONS(8931), + [anon_sym_BANG] = ACTIONS(8933), + [aux_sym__attribute_identifier_token1] = ACTIONS(8931), + [aux_sym_option_statement_token3] = ACTIONS(8931), + [aux_sym_type_declaration_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8931), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8931), + [aux_sym_enum_declaration_token1] = ACTIONS(8931), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8931), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8931), + [aux_sym_declare_function_statement_token1] = ACTIONS(8931), + [aux_sym_preprocessor_const_token1] = ACTIONS(8931), + [aux_sym__property_get_header_token1] = ACTIONS(8931), + [aux_sym_event_declaration_token1] = ACTIONS(8931), + [sym_static_modifier] = ACTIONS(8931), + [sym__dim_keyword] = ACTIONS(8931), + [sym__redim_keyword] = ACTIONS(8931), + [aux_sym_get_accessor_token1] = ACTIONS(8931), + [aux_sym_set_accessor_token1] = ACTIONS(8931), + [aux_sym_const_declaration_token1] = ACTIONS(8931), + [anon_sym_LPAREN] = ACTIONS(8933), + [aux_sym_as_type_clause_token2] = ACTIONS(8931), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8931), + [aux_sym_visibility_token1] = ACTIONS(8931), + [aux_sym_visibility_token2] = ACTIONS(8931), + [aux_sym_elseif_fragment_token1] = ACTIONS(8931), + [aux_sym_else_fragment_token1] = ACTIONS(8931), + [aux_sym_select_statement_token1] = ACTIONS(8931), + [aux_sym__for_header_token1] = ACTIONS(8931), + [aux_sym_do_statement_token1] = ACTIONS(8931), + [aux_sym_do_condition_token1] = ACTIONS(8931), + [aux_sym_with_statement_token1] = ACTIONS(8931), + [aux_sym_exit_statement_token1] = ACTIONS(8931), + [sym_end_statement] = ACTIONS(8933), + [aux_sym_on_goto_statement_token1] = ACTIONS(8931), + [aux_sym_on_goto_statement_token2] = ACTIONS(8931), + [aux_sym_on_error_statement_token2] = ACTIONS(8931), + [sym__ambiguous_redim_statement] = ACTIONS(8933), + [aux_sym_erase_statement_token1] = ACTIONS(8931), + [aux_sym_open_statement_token1] = ACTIONS(8931), + [aux_sym_file_mode_token2] = ACTIONS(8931), + [aux_sym_file_access_token2] = ACTIONS(8931), + [aux_sym_file_lock_token2] = ACTIONS(8931), + [aux_sym_print_statement_token1] = ACTIONS(8931), + [anon_sym_PLUS] = ACTIONS(8933), + [anon_sym_DASH] = ACTIONS(8931), + [anon_sym_QMARK] = ACTIONS(8933), + [aux_sym_close_statement_token1] = ACTIONS(8931), + [aux_sym_put_statement_token1] = ACTIONS(8931), + [aux_sym_unlock_statement_token1] = ACTIONS(8931), + [aux_sym_seek_statement_token1] = ACTIONS(8931), + [sym_reset_statement] = ACTIONS(8931), + [aux_sym_raise_event_statement_token1] = ACTIONS(8931), + [sym_stop_statement] = ACTIONS(8931), + [sym_beep_statement] = ACTIONS(8931), + [aux_sym_unload_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token2] = ACTIONS(8931), + [aux_sym_def_type_statement_token3] = ACTIONS(8931), + [aux_sym_def_type_statement_token4] = ACTIONS(8931), + [aux_sym_def_type_statement_token5] = ACTIONS(8931), + [aux_sym_def_type_statement_token6] = ACTIONS(8931), + [aux_sym_def_type_statement_token7] = ACTIONS(8931), + [aux_sym_def_type_statement_token8] = ACTIONS(8931), + [aux_sym_def_type_statement_token9] = ACTIONS(8931), + [aux_sym_def_type_statement_token10] = ACTIONS(8931), + [aux_sym_def_type_statement_token11] = ACTIONS(8931), + [aux_sym_def_type_statement_token12] = ACTIONS(8931), + [aux_sym_def_type_statement_token13] = ACTIONS(8931), + [aux_sym_def_type_statement_token14] = ACTIONS(8931), + [aux_sym_call_statement_token1] = ACTIONS(8931), + [sym__ambiguous_call_statement] = ACTIONS(8931), + [aux_sym_addressof_expression_token1] = ACTIONS(8931), + [aux_sym_type_of_expression_token1] = ACTIONS(8931), + [aux_sym_unary_expression_token1] = ACTIONS(8931), + [sym_string_literal] = ACTIONS(8933), + [sym_number_literal] = ACTIONS(8933), + [aux_sym_boolean_literal_token1] = ACTIONS(8931), + [aux_sym_boolean_literal_token2] = ACTIONS(8931), + [sym_nothing_literal] = ACTIONS(8931), + [sym_null_literal] = ACTIONS(8931), + [sym_empty_literal] = ACTIONS(8931), + [sym_date_literal] = ACTIONS(8933), + [anon_sym_POUND] = ACTIONS(8931), + }, + [STATE(3926)] = { + [sym_identifier] = ACTIONS(9172), + [sym_newline] = ACTIONS(9174), + [anon_sym_COLON] = ACTIONS(9174), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9172), + [aux_sym_frm_property_statement_token1] = ACTIONS(9172), + [anon_sym_DOT] = ACTIONS(9172), + [anon_sym_BANG] = ACTIONS(9174), + [aux_sym__attribute_identifier_token1] = ACTIONS(9172), + [aux_sym_option_statement_token3] = ACTIONS(9172), + [aux_sym_type_declaration_token1] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9172), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9172), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9172), + [aux_sym_enum_declaration_token1] = ACTIONS(9172), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9172), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9172), + [aux_sym_declare_function_statement_token1] = ACTIONS(9172), + [aux_sym_preprocessor_const_token1] = ACTIONS(9172), + [aux_sym__property_get_header_token1] = ACTIONS(9172), + [aux_sym_event_declaration_token1] = ACTIONS(9172), + [sym_static_modifier] = ACTIONS(9172), + [sym__dim_keyword] = ACTIONS(9172), + [sym__redim_keyword] = ACTIONS(9172), + [aux_sym_get_accessor_token1] = ACTIONS(9172), + [aux_sym_set_accessor_token1] = ACTIONS(9172), + [aux_sym_const_declaration_token1] = ACTIONS(9172), + [anon_sym_LPAREN] = ACTIONS(9174), + [aux_sym_as_type_clause_token2] = ACTIONS(9172), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9172), + [aux_sym_visibility_token1] = ACTIONS(9172), + [aux_sym_visibility_token2] = ACTIONS(9172), + [aux_sym_elseif_fragment_token1] = ACTIONS(9172), + [aux_sym_else_fragment_token1] = ACTIONS(9172), + [aux_sym_select_statement_token1] = ACTIONS(9172), + [aux_sym__for_header_token1] = ACTIONS(9172), + [aux_sym_do_statement_token1] = ACTIONS(9172), + [aux_sym_do_condition_token1] = ACTIONS(9172), + [aux_sym_with_statement_token1] = ACTIONS(9172), + [aux_sym_exit_statement_token1] = ACTIONS(9172), + [sym_end_statement] = ACTIONS(9174), + [aux_sym_on_goto_statement_token1] = ACTIONS(9172), + [aux_sym_on_goto_statement_token2] = ACTIONS(9172), + [aux_sym_on_error_statement_token2] = ACTIONS(9172), + [sym__ambiguous_redim_statement] = ACTIONS(9174), + [aux_sym_erase_statement_token1] = ACTIONS(9172), + [aux_sym_open_statement_token1] = ACTIONS(9172), + [aux_sym_file_mode_token2] = ACTIONS(9172), + [aux_sym_file_access_token2] = ACTIONS(9172), + [aux_sym_file_lock_token2] = ACTIONS(9172), + [aux_sym_print_statement_token1] = ACTIONS(9172), + [anon_sym_PLUS] = ACTIONS(9174), + [anon_sym_DASH] = ACTIONS(9172), + [anon_sym_QMARK] = ACTIONS(9174), + [aux_sym_close_statement_token1] = ACTIONS(9172), + [aux_sym_put_statement_token1] = ACTIONS(9172), + [aux_sym_unlock_statement_token1] = ACTIONS(9172), + [aux_sym_seek_statement_token1] = ACTIONS(9172), + [sym_reset_statement] = ACTIONS(9172), + [aux_sym_raise_event_statement_token1] = ACTIONS(9172), + [sym_stop_statement] = ACTIONS(9172), + [sym_beep_statement] = ACTIONS(9172), + [aux_sym_unload_statement_token1] = ACTIONS(9172), + [aux_sym_def_type_statement_token1] = ACTIONS(9172), + [aux_sym_def_type_statement_token2] = ACTIONS(9172), + [aux_sym_def_type_statement_token3] = ACTIONS(9172), + [aux_sym_def_type_statement_token4] = ACTIONS(9172), + [aux_sym_def_type_statement_token5] = ACTIONS(9172), + [aux_sym_def_type_statement_token6] = ACTIONS(9172), + [aux_sym_def_type_statement_token7] = ACTIONS(9172), + [aux_sym_def_type_statement_token8] = ACTIONS(9172), + [aux_sym_def_type_statement_token9] = ACTIONS(9172), + [aux_sym_def_type_statement_token10] = ACTIONS(9172), + [aux_sym_def_type_statement_token11] = ACTIONS(9172), + [aux_sym_def_type_statement_token12] = ACTIONS(9172), + [aux_sym_def_type_statement_token13] = ACTIONS(9172), + [aux_sym_def_type_statement_token14] = ACTIONS(9172), + [aux_sym_call_statement_token1] = ACTIONS(9172), + [sym__ambiguous_call_statement] = ACTIONS(9172), + [aux_sym_addressof_expression_token1] = ACTIONS(9172), + [aux_sym_type_of_expression_token1] = ACTIONS(9172), + [aux_sym_unary_expression_token1] = ACTIONS(9172), + [sym_string_literal] = ACTIONS(9174), + [sym_number_literal] = ACTIONS(9174), + [aux_sym_boolean_literal_token1] = ACTIONS(9172), + [aux_sym_boolean_literal_token2] = ACTIONS(9172), + [sym_nothing_literal] = ACTIONS(9172), + [sym_null_literal] = ACTIONS(9172), + [sym_empty_literal] = ACTIONS(9172), + [sym_date_literal] = ACTIONS(9174), + [anon_sym_POUND] = ACTIONS(9172), + }, + [STATE(3927)] = { + [sym_identifier] = ACTIONS(9176), + [sym_newline] = ACTIONS(9178), + [anon_sym_COLON] = ACTIONS(9178), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9176), + [aux_sym_frm_property_statement_token1] = ACTIONS(9176), + [anon_sym_DOT] = ACTIONS(9176), + [anon_sym_BANG] = ACTIONS(9178), + [aux_sym__attribute_identifier_token1] = ACTIONS(9176), + [aux_sym_option_statement_token3] = ACTIONS(9176), + [aux_sym_type_declaration_token1] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9176), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9176), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9176), + [aux_sym_enum_declaration_token1] = ACTIONS(9176), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9176), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9176), + [aux_sym_declare_function_statement_token1] = ACTIONS(9176), + [aux_sym_preprocessor_const_token1] = ACTIONS(9176), + [aux_sym__property_get_header_token1] = ACTIONS(9176), + [aux_sym_event_declaration_token1] = ACTIONS(9176), + [sym_static_modifier] = ACTIONS(9176), + [sym__dim_keyword] = ACTIONS(9176), + [sym__redim_keyword] = ACTIONS(9176), + [aux_sym_get_accessor_token1] = ACTIONS(9176), + [aux_sym_set_accessor_token1] = ACTIONS(9176), + [aux_sym_const_declaration_token1] = ACTIONS(9176), + [anon_sym_LPAREN] = ACTIONS(9178), + [aux_sym_as_type_clause_token2] = ACTIONS(9176), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9176), + [aux_sym_visibility_token1] = ACTIONS(9176), + [aux_sym_visibility_token2] = ACTIONS(9176), + [aux_sym_elseif_fragment_token1] = ACTIONS(9176), + [aux_sym_else_fragment_token1] = ACTIONS(9176), + [aux_sym_select_statement_token1] = ACTIONS(9176), + [aux_sym__for_header_token1] = ACTIONS(9176), + [aux_sym_do_statement_token1] = ACTIONS(9176), + [aux_sym_do_condition_token1] = ACTIONS(9176), + [aux_sym_with_statement_token1] = ACTIONS(9176), + [aux_sym_exit_statement_token1] = ACTIONS(9176), + [sym_end_statement] = ACTIONS(9178), + [aux_sym_on_goto_statement_token1] = ACTIONS(9176), + [aux_sym_on_goto_statement_token2] = ACTIONS(9176), + [aux_sym_on_error_statement_token2] = ACTIONS(9176), + [sym__ambiguous_redim_statement] = ACTIONS(9178), + [aux_sym_erase_statement_token1] = ACTIONS(9176), + [aux_sym_open_statement_token1] = ACTIONS(9176), + [aux_sym_file_mode_token2] = ACTIONS(9176), + [aux_sym_file_access_token2] = ACTIONS(9176), + [aux_sym_file_lock_token2] = ACTIONS(9176), + [aux_sym_print_statement_token1] = ACTIONS(9176), + [anon_sym_PLUS] = ACTIONS(9178), + [anon_sym_DASH] = ACTIONS(9176), + [anon_sym_QMARK] = ACTIONS(9178), + [aux_sym_close_statement_token1] = ACTIONS(9176), + [aux_sym_put_statement_token1] = ACTIONS(9176), + [aux_sym_unlock_statement_token1] = ACTIONS(9176), + [aux_sym_seek_statement_token1] = ACTIONS(9176), + [sym_reset_statement] = ACTIONS(9176), + [aux_sym_raise_event_statement_token1] = ACTIONS(9176), + [sym_stop_statement] = ACTIONS(9176), + [sym_beep_statement] = ACTIONS(9176), + [aux_sym_unload_statement_token1] = ACTIONS(9176), + [aux_sym_def_type_statement_token1] = ACTIONS(9176), + [aux_sym_def_type_statement_token2] = ACTIONS(9176), + [aux_sym_def_type_statement_token3] = ACTIONS(9176), + [aux_sym_def_type_statement_token4] = ACTIONS(9176), + [aux_sym_def_type_statement_token5] = ACTIONS(9176), + [aux_sym_def_type_statement_token6] = ACTIONS(9176), + [aux_sym_def_type_statement_token7] = ACTIONS(9176), + [aux_sym_def_type_statement_token8] = ACTIONS(9176), + [aux_sym_def_type_statement_token9] = ACTIONS(9176), + [aux_sym_def_type_statement_token10] = ACTIONS(9176), + [aux_sym_def_type_statement_token11] = ACTIONS(9176), + [aux_sym_def_type_statement_token12] = ACTIONS(9176), + [aux_sym_def_type_statement_token13] = ACTIONS(9176), + [aux_sym_def_type_statement_token14] = ACTIONS(9176), + [aux_sym_call_statement_token1] = ACTIONS(9176), + [sym__ambiguous_call_statement] = ACTIONS(9176), + [aux_sym_addressof_expression_token1] = ACTIONS(9176), + [aux_sym_type_of_expression_token1] = ACTIONS(9176), + [aux_sym_unary_expression_token1] = ACTIONS(9176), + [sym_string_literal] = ACTIONS(9178), + [sym_number_literal] = ACTIONS(9178), + [aux_sym_boolean_literal_token1] = ACTIONS(9176), + [aux_sym_boolean_literal_token2] = ACTIONS(9176), + [sym_nothing_literal] = ACTIONS(9176), + [sym_null_literal] = ACTIONS(9176), + [sym_empty_literal] = ACTIONS(9176), + [sym_date_literal] = ACTIONS(9178), + [anon_sym_POUND] = ACTIONS(9176), + }, + [STATE(3928)] = { + [sym_identifier] = ACTIONS(9180), + [sym_newline] = ACTIONS(9182), + [anon_sym_COLON] = ACTIONS(9182), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9180), + [aux_sym_frm_property_statement_token1] = ACTIONS(9180), + [anon_sym_DOT] = ACTIONS(9180), + [anon_sym_BANG] = ACTIONS(9182), + [aux_sym__attribute_identifier_token1] = ACTIONS(9180), + [aux_sym_option_statement_token3] = ACTIONS(9180), + [aux_sym_type_declaration_token1] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9180), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9180), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9180), + [aux_sym_enum_declaration_token1] = ACTIONS(9180), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9180), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9180), + [aux_sym_declare_function_statement_token1] = ACTIONS(9180), + [aux_sym_preprocessor_const_token1] = ACTIONS(9180), + [aux_sym__property_get_header_token1] = ACTIONS(9180), + [aux_sym_event_declaration_token1] = ACTIONS(9180), + [sym_static_modifier] = ACTIONS(9180), + [sym__dim_keyword] = ACTIONS(9180), + [sym__redim_keyword] = ACTIONS(9180), + [aux_sym_get_accessor_token1] = ACTIONS(9180), + [aux_sym_set_accessor_token1] = ACTIONS(9180), + [aux_sym_const_declaration_token1] = ACTIONS(9180), + [anon_sym_LPAREN] = ACTIONS(9182), + [aux_sym_as_type_clause_token2] = ACTIONS(9180), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9180), + [aux_sym_visibility_token1] = ACTIONS(9180), + [aux_sym_visibility_token2] = ACTIONS(9180), + [aux_sym_elseif_fragment_token1] = ACTIONS(9180), + [aux_sym_else_fragment_token1] = ACTIONS(9180), + [aux_sym_select_statement_token1] = ACTIONS(9180), + [aux_sym__for_header_token1] = ACTIONS(9180), + [aux_sym_do_statement_token1] = ACTIONS(9180), + [aux_sym_do_condition_token1] = ACTIONS(9180), + [aux_sym_with_statement_token1] = ACTIONS(9180), + [aux_sym_exit_statement_token1] = ACTIONS(9180), + [sym_end_statement] = ACTIONS(9182), + [aux_sym_on_goto_statement_token1] = ACTIONS(9180), + [aux_sym_on_goto_statement_token2] = ACTIONS(9180), + [aux_sym_on_error_statement_token2] = ACTIONS(9180), + [sym__ambiguous_redim_statement] = ACTIONS(9182), + [aux_sym_erase_statement_token1] = ACTIONS(9180), + [aux_sym_open_statement_token1] = ACTIONS(9180), + [aux_sym_file_mode_token2] = ACTIONS(9180), + [aux_sym_file_access_token2] = ACTIONS(9180), + [aux_sym_file_lock_token2] = ACTIONS(9180), + [aux_sym_print_statement_token1] = ACTIONS(9180), + [anon_sym_PLUS] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9180), + [anon_sym_QMARK] = ACTIONS(9182), + [aux_sym_close_statement_token1] = ACTIONS(9180), + [aux_sym_put_statement_token1] = ACTIONS(9180), + [aux_sym_unlock_statement_token1] = ACTIONS(9180), + [aux_sym_seek_statement_token1] = ACTIONS(9180), + [sym_reset_statement] = ACTIONS(9180), + [aux_sym_raise_event_statement_token1] = ACTIONS(9180), + [sym_stop_statement] = ACTIONS(9180), + [sym_beep_statement] = ACTIONS(9180), + [aux_sym_unload_statement_token1] = ACTIONS(9180), + [aux_sym_def_type_statement_token1] = ACTIONS(9180), + [aux_sym_def_type_statement_token2] = ACTIONS(9180), + [aux_sym_def_type_statement_token3] = ACTIONS(9180), + [aux_sym_def_type_statement_token4] = ACTIONS(9180), + [aux_sym_def_type_statement_token5] = ACTIONS(9180), + [aux_sym_def_type_statement_token6] = ACTIONS(9180), + [aux_sym_def_type_statement_token7] = ACTIONS(9180), + [aux_sym_def_type_statement_token8] = ACTIONS(9180), + [aux_sym_def_type_statement_token9] = ACTIONS(9180), + [aux_sym_def_type_statement_token10] = ACTIONS(9180), + [aux_sym_def_type_statement_token11] = ACTIONS(9180), + [aux_sym_def_type_statement_token12] = ACTIONS(9180), + [aux_sym_def_type_statement_token13] = ACTIONS(9180), + [aux_sym_def_type_statement_token14] = ACTIONS(9180), + [aux_sym_call_statement_token1] = ACTIONS(9180), + [sym__ambiguous_call_statement] = ACTIONS(9180), + [aux_sym_addressof_expression_token1] = ACTIONS(9180), + [aux_sym_type_of_expression_token1] = ACTIONS(9180), + [aux_sym_unary_expression_token1] = ACTIONS(9180), + [sym_string_literal] = ACTIONS(9182), + [sym_number_literal] = ACTIONS(9182), + [aux_sym_boolean_literal_token1] = ACTIONS(9180), + [aux_sym_boolean_literal_token2] = ACTIONS(9180), + [sym_nothing_literal] = ACTIONS(9180), + [sym_null_literal] = ACTIONS(9180), + [sym_empty_literal] = ACTIONS(9180), + [sym_date_literal] = ACTIONS(9182), + [anon_sym_POUND] = ACTIONS(9180), + }, + [STATE(3929)] = { + [sym_identifier] = ACTIONS(9184), + [sym_newline] = ACTIONS(9186), + [anon_sym_COLON] = ACTIONS(9186), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9184), + [aux_sym_frm_property_statement_token1] = ACTIONS(9184), + [anon_sym_DOT] = ACTIONS(9184), + [anon_sym_BANG] = ACTIONS(9186), + [aux_sym__attribute_identifier_token1] = ACTIONS(9184), + [aux_sym_option_statement_token3] = ACTIONS(9184), + [aux_sym_type_declaration_token1] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9184), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9184), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9184), + [aux_sym_enum_declaration_token1] = ACTIONS(9184), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9184), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9184), + [aux_sym_declare_function_statement_token1] = ACTIONS(9184), + [aux_sym_preprocessor_const_token1] = ACTIONS(9184), + [aux_sym__property_get_header_token1] = ACTIONS(9184), + [aux_sym_event_declaration_token1] = ACTIONS(9184), + [sym_static_modifier] = ACTIONS(9184), + [sym__dim_keyword] = ACTIONS(9184), + [sym__redim_keyword] = ACTIONS(9184), + [aux_sym_get_accessor_token1] = ACTIONS(9184), + [aux_sym_set_accessor_token1] = ACTIONS(9184), + [aux_sym_const_declaration_token1] = ACTIONS(9184), + [anon_sym_LPAREN] = ACTIONS(9186), + [aux_sym_as_type_clause_token2] = ACTIONS(9184), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9184), + [aux_sym_visibility_token1] = ACTIONS(9184), + [aux_sym_visibility_token2] = ACTIONS(9184), + [aux_sym_elseif_fragment_token1] = ACTIONS(9184), + [aux_sym_else_fragment_token1] = ACTIONS(9184), + [aux_sym_select_statement_token1] = ACTIONS(9184), + [aux_sym__for_header_token1] = ACTIONS(9184), + [aux_sym_do_statement_token1] = ACTIONS(9184), + [aux_sym_do_condition_token1] = ACTIONS(9184), + [aux_sym_with_statement_token1] = ACTIONS(9184), + [aux_sym_exit_statement_token1] = ACTIONS(9184), + [sym_end_statement] = ACTIONS(9186), + [aux_sym_on_goto_statement_token1] = ACTIONS(9184), + [aux_sym_on_goto_statement_token2] = ACTIONS(9184), + [aux_sym_on_error_statement_token2] = ACTIONS(9184), + [sym__ambiguous_redim_statement] = ACTIONS(9186), + [aux_sym_erase_statement_token1] = ACTIONS(9184), + [aux_sym_open_statement_token1] = ACTIONS(9184), + [aux_sym_file_mode_token2] = ACTIONS(9184), + [aux_sym_file_access_token2] = ACTIONS(9184), + [aux_sym_file_lock_token2] = ACTIONS(9184), + [aux_sym_print_statement_token1] = ACTIONS(9184), + [anon_sym_PLUS] = ACTIONS(9186), + [anon_sym_DASH] = ACTIONS(9184), + [anon_sym_QMARK] = ACTIONS(9186), + [aux_sym_close_statement_token1] = ACTIONS(9184), + [aux_sym_put_statement_token1] = ACTIONS(9184), + [aux_sym_unlock_statement_token1] = ACTIONS(9184), + [aux_sym_seek_statement_token1] = ACTIONS(9184), + [sym_reset_statement] = ACTIONS(9184), + [aux_sym_raise_event_statement_token1] = ACTIONS(9184), + [sym_stop_statement] = ACTIONS(9184), + [sym_beep_statement] = ACTIONS(9184), + [aux_sym_unload_statement_token1] = ACTIONS(9184), + [aux_sym_def_type_statement_token1] = ACTIONS(9184), + [aux_sym_def_type_statement_token2] = ACTIONS(9184), + [aux_sym_def_type_statement_token3] = ACTIONS(9184), + [aux_sym_def_type_statement_token4] = ACTIONS(9184), + [aux_sym_def_type_statement_token5] = ACTIONS(9184), + [aux_sym_def_type_statement_token6] = ACTIONS(9184), + [aux_sym_def_type_statement_token7] = ACTIONS(9184), + [aux_sym_def_type_statement_token8] = ACTIONS(9184), + [aux_sym_def_type_statement_token9] = ACTIONS(9184), + [aux_sym_def_type_statement_token10] = ACTIONS(9184), + [aux_sym_def_type_statement_token11] = ACTIONS(9184), + [aux_sym_def_type_statement_token12] = ACTIONS(9184), + [aux_sym_def_type_statement_token13] = ACTIONS(9184), + [aux_sym_def_type_statement_token14] = ACTIONS(9184), + [aux_sym_call_statement_token1] = ACTIONS(9184), + [sym__ambiguous_call_statement] = ACTIONS(9184), + [aux_sym_addressof_expression_token1] = ACTIONS(9184), + [aux_sym_type_of_expression_token1] = ACTIONS(9184), + [aux_sym_unary_expression_token1] = ACTIONS(9184), + [sym_string_literal] = ACTIONS(9186), + [sym_number_literal] = ACTIONS(9186), + [aux_sym_boolean_literal_token1] = ACTIONS(9184), + [aux_sym_boolean_literal_token2] = ACTIONS(9184), + [sym_nothing_literal] = ACTIONS(9184), + [sym_null_literal] = ACTIONS(9184), + [sym_empty_literal] = ACTIONS(9184), + [sym_date_literal] = ACTIONS(9186), + [anon_sym_POUND] = ACTIONS(9184), + }, + [STATE(3930)] = { + [sym_identifier] = ACTIONS(9188), + [sym_newline] = ACTIONS(9190), + [anon_sym_COLON] = ACTIONS(9190), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9188), + [aux_sym_frm_property_statement_token1] = ACTIONS(9188), + [anon_sym_DOT] = ACTIONS(9188), + [anon_sym_BANG] = ACTIONS(9190), + [aux_sym__attribute_identifier_token1] = ACTIONS(9188), + [aux_sym_option_statement_token3] = ACTIONS(9188), + [aux_sym_type_declaration_token1] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9188), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9188), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9188), + [aux_sym_enum_declaration_token1] = ACTIONS(9188), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9188), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9188), + [aux_sym_declare_function_statement_token1] = ACTIONS(9188), + [aux_sym_preprocessor_const_token1] = ACTIONS(9188), + [aux_sym__property_get_header_token1] = ACTIONS(9188), + [aux_sym_event_declaration_token1] = ACTIONS(9188), + [sym_static_modifier] = ACTIONS(9188), + [sym__dim_keyword] = ACTIONS(9188), + [sym__redim_keyword] = ACTIONS(9188), + [aux_sym_get_accessor_token1] = ACTIONS(9188), + [aux_sym_set_accessor_token1] = ACTIONS(9188), + [aux_sym_const_declaration_token1] = ACTIONS(9188), + [anon_sym_LPAREN] = ACTIONS(9190), + [aux_sym_as_type_clause_token2] = ACTIONS(9188), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9188), + [aux_sym_visibility_token1] = ACTIONS(9188), + [aux_sym_visibility_token2] = ACTIONS(9188), + [aux_sym_elseif_fragment_token1] = ACTIONS(9188), + [aux_sym_else_fragment_token1] = ACTIONS(9188), + [aux_sym_select_statement_token1] = ACTIONS(9188), + [aux_sym__for_header_token1] = ACTIONS(9188), + [aux_sym_do_statement_token1] = ACTIONS(9188), + [aux_sym_do_condition_token1] = ACTIONS(9188), + [aux_sym_with_statement_token1] = ACTIONS(9188), + [aux_sym_exit_statement_token1] = ACTIONS(9188), + [sym_end_statement] = ACTIONS(9190), + [aux_sym_on_goto_statement_token1] = ACTIONS(9188), + [aux_sym_on_goto_statement_token2] = ACTIONS(9188), + [aux_sym_on_error_statement_token2] = ACTIONS(9188), + [sym__ambiguous_redim_statement] = ACTIONS(9190), + [aux_sym_erase_statement_token1] = ACTIONS(9188), + [aux_sym_open_statement_token1] = ACTIONS(9188), + [aux_sym_file_mode_token2] = ACTIONS(9188), + [aux_sym_file_access_token2] = ACTIONS(9188), + [aux_sym_file_lock_token2] = ACTIONS(9188), + [aux_sym_print_statement_token1] = ACTIONS(9188), + [anon_sym_PLUS] = ACTIONS(9190), + [anon_sym_DASH] = ACTIONS(9188), + [anon_sym_QMARK] = ACTIONS(9190), + [aux_sym_close_statement_token1] = ACTIONS(9188), + [aux_sym_put_statement_token1] = ACTIONS(9188), + [aux_sym_unlock_statement_token1] = ACTIONS(9188), + [aux_sym_seek_statement_token1] = ACTIONS(9188), + [sym_reset_statement] = ACTIONS(9188), + [aux_sym_raise_event_statement_token1] = ACTIONS(9188), + [sym_stop_statement] = ACTIONS(9188), + [sym_beep_statement] = ACTIONS(9188), + [aux_sym_unload_statement_token1] = ACTIONS(9188), + [aux_sym_def_type_statement_token1] = ACTIONS(9188), + [aux_sym_def_type_statement_token2] = ACTIONS(9188), + [aux_sym_def_type_statement_token3] = ACTIONS(9188), + [aux_sym_def_type_statement_token4] = ACTIONS(9188), + [aux_sym_def_type_statement_token5] = ACTIONS(9188), + [aux_sym_def_type_statement_token6] = ACTIONS(9188), + [aux_sym_def_type_statement_token7] = ACTIONS(9188), + [aux_sym_def_type_statement_token8] = ACTIONS(9188), + [aux_sym_def_type_statement_token9] = ACTIONS(9188), + [aux_sym_def_type_statement_token10] = ACTIONS(9188), + [aux_sym_def_type_statement_token11] = ACTIONS(9188), + [aux_sym_def_type_statement_token12] = ACTIONS(9188), + [aux_sym_def_type_statement_token13] = ACTIONS(9188), + [aux_sym_def_type_statement_token14] = ACTIONS(9188), + [aux_sym_call_statement_token1] = ACTIONS(9188), + [sym__ambiguous_call_statement] = ACTIONS(9188), + [aux_sym_addressof_expression_token1] = ACTIONS(9188), + [aux_sym_type_of_expression_token1] = ACTIONS(9188), + [aux_sym_unary_expression_token1] = ACTIONS(9188), + [sym_string_literal] = ACTIONS(9190), + [sym_number_literal] = ACTIONS(9190), + [aux_sym_boolean_literal_token1] = ACTIONS(9188), + [aux_sym_boolean_literal_token2] = ACTIONS(9188), + [sym_nothing_literal] = ACTIONS(9188), + [sym_null_literal] = ACTIONS(9188), + [sym_empty_literal] = ACTIONS(9188), + [sym_date_literal] = ACTIONS(9190), + [anon_sym_POUND] = ACTIONS(9188), + }, + [STATE(3931)] = { + [sym_identifier] = ACTIONS(9192), + [sym_newline] = ACTIONS(9194), + [anon_sym_COLON] = ACTIONS(9194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9192), + [aux_sym_frm_property_statement_token1] = ACTIONS(9192), + [anon_sym_DOT] = ACTIONS(9192), + [anon_sym_BANG] = ACTIONS(9194), + [aux_sym__attribute_identifier_token1] = ACTIONS(9192), + [aux_sym_option_statement_token3] = ACTIONS(9192), + [aux_sym_type_declaration_token1] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9192), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9192), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9192), + [aux_sym_enum_declaration_token1] = ACTIONS(9192), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9192), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9192), + [aux_sym_declare_function_statement_token1] = ACTIONS(9192), + [aux_sym_preprocessor_const_token1] = ACTIONS(9192), + [aux_sym__property_get_header_token1] = ACTIONS(9192), + [aux_sym_event_declaration_token1] = ACTIONS(9192), + [sym_static_modifier] = ACTIONS(9192), + [sym__dim_keyword] = ACTIONS(9192), + [sym__redim_keyword] = ACTIONS(9192), + [aux_sym_get_accessor_token1] = ACTIONS(9192), + [aux_sym_set_accessor_token1] = ACTIONS(9192), + [aux_sym_const_declaration_token1] = ACTIONS(9192), + [anon_sym_LPAREN] = ACTIONS(9194), + [aux_sym_as_type_clause_token2] = ACTIONS(9192), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9192), + [aux_sym_visibility_token1] = ACTIONS(9192), + [aux_sym_visibility_token2] = ACTIONS(9192), + [aux_sym_elseif_fragment_token1] = ACTIONS(9192), + [aux_sym_else_fragment_token1] = ACTIONS(9192), + [aux_sym_select_statement_token1] = ACTIONS(9192), + [aux_sym__for_header_token1] = ACTIONS(9192), + [aux_sym_do_statement_token1] = ACTIONS(9192), + [aux_sym_do_condition_token1] = ACTIONS(9192), + [aux_sym_with_statement_token1] = ACTIONS(9192), + [aux_sym_exit_statement_token1] = ACTIONS(9192), + [sym_end_statement] = ACTIONS(9194), + [aux_sym_on_goto_statement_token1] = ACTIONS(9192), + [aux_sym_on_goto_statement_token2] = ACTIONS(9192), + [aux_sym_on_error_statement_token2] = ACTIONS(9192), + [sym__ambiguous_redim_statement] = ACTIONS(9194), + [aux_sym_erase_statement_token1] = ACTIONS(9192), + [aux_sym_open_statement_token1] = ACTIONS(9192), + [aux_sym_file_mode_token2] = ACTIONS(9192), + [aux_sym_file_access_token2] = ACTIONS(9192), + [aux_sym_file_lock_token2] = ACTIONS(9192), + [aux_sym_print_statement_token1] = ACTIONS(9192), + [anon_sym_PLUS] = ACTIONS(9194), + [anon_sym_DASH] = ACTIONS(9192), + [anon_sym_QMARK] = ACTIONS(9194), + [aux_sym_close_statement_token1] = ACTIONS(9192), + [aux_sym_put_statement_token1] = ACTIONS(9192), + [aux_sym_unlock_statement_token1] = ACTIONS(9192), + [aux_sym_seek_statement_token1] = ACTIONS(9192), + [sym_reset_statement] = ACTIONS(9192), + [aux_sym_raise_event_statement_token1] = ACTIONS(9192), + [sym_stop_statement] = ACTIONS(9192), + [sym_beep_statement] = ACTIONS(9192), + [aux_sym_unload_statement_token1] = ACTIONS(9192), + [aux_sym_def_type_statement_token1] = ACTIONS(9192), + [aux_sym_def_type_statement_token2] = ACTIONS(9192), + [aux_sym_def_type_statement_token3] = ACTIONS(9192), + [aux_sym_def_type_statement_token4] = ACTIONS(9192), + [aux_sym_def_type_statement_token5] = ACTIONS(9192), + [aux_sym_def_type_statement_token6] = ACTIONS(9192), + [aux_sym_def_type_statement_token7] = ACTIONS(9192), + [aux_sym_def_type_statement_token8] = ACTIONS(9192), + [aux_sym_def_type_statement_token9] = ACTIONS(9192), + [aux_sym_def_type_statement_token10] = ACTIONS(9192), + [aux_sym_def_type_statement_token11] = ACTIONS(9192), + [aux_sym_def_type_statement_token12] = ACTIONS(9192), + [aux_sym_def_type_statement_token13] = ACTIONS(9192), + [aux_sym_def_type_statement_token14] = ACTIONS(9192), + [aux_sym_call_statement_token1] = ACTIONS(9192), + [sym__ambiguous_call_statement] = ACTIONS(9192), + [aux_sym_addressof_expression_token1] = ACTIONS(9192), + [aux_sym_type_of_expression_token1] = ACTIONS(9192), + [aux_sym_unary_expression_token1] = ACTIONS(9192), + [sym_string_literal] = ACTIONS(9194), + [sym_number_literal] = ACTIONS(9194), + [aux_sym_boolean_literal_token1] = ACTIONS(9192), + [aux_sym_boolean_literal_token2] = ACTIONS(9192), + [sym_nothing_literal] = ACTIONS(9192), + [sym_null_literal] = ACTIONS(9192), + [sym_empty_literal] = ACTIONS(9192), + [sym_date_literal] = ACTIONS(9194), + [anon_sym_POUND] = ACTIONS(9192), + }, + [STATE(3932)] = { + [sym_identifier] = ACTIONS(9196), + [sym_newline] = ACTIONS(9198), + [anon_sym_COLON] = ACTIONS(9198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9196), + [aux_sym_frm_property_statement_token1] = ACTIONS(9196), + [anon_sym_DOT] = ACTIONS(9196), + [anon_sym_BANG] = ACTIONS(9198), + [aux_sym__attribute_identifier_token1] = ACTIONS(9196), + [aux_sym_option_statement_token3] = ACTIONS(9196), + [aux_sym_type_declaration_token1] = ACTIONS(9196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9196), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9196), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9196), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9196), + [aux_sym_enum_declaration_token1] = ACTIONS(9196), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9196), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9196), + [aux_sym_declare_function_statement_token1] = ACTIONS(9196), + [aux_sym_preprocessor_const_token1] = ACTIONS(9196), + [aux_sym__property_get_header_token1] = ACTIONS(9196), + [aux_sym_event_declaration_token1] = ACTIONS(9196), + [sym_static_modifier] = ACTIONS(9196), + [sym__dim_keyword] = ACTIONS(9196), + [sym__redim_keyword] = ACTIONS(9196), + [aux_sym_get_accessor_token1] = ACTIONS(9196), + [aux_sym_set_accessor_token1] = ACTIONS(9196), + [aux_sym_const_declaration_token1] = ACTIONS(9196), + [anon_sym_LPAREN] = ACTIONS(9198), + [aux_sym_as_type_clause_token2] = ACTIONS(9196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9196), + [aux_sym_visibility_token1] = ACTIONS(9196), + [aux_sym_visibility_token2] = ACTIONS(9196), + [aux_sym_elseif_fragment_token1] = ACTIONS(9196), + [aux_sym_else_fragment_token1] = ACTIONS(9196), + [aux_sym_select_statement_token1] = ACTIONS(9196), + [aux_sym__for_header_token1] = ACTIONS(9196), + [aux_sym_do_statement_token1] = ACTIONS(9196), + [aux_sym_do_condition_token1] = ACTIONS(9196), + [aux_sym_with_statement_token1] = ACTIONS(9196), + [aux_sym_exit_statement_token1] = ACTIONS(9196), + [sym_end_statement] = ACTIONS(9198), + [aux_sym_on_goto_statement_token1] = ACTIONS(9196), + [aux_sym_on_goto_statement_token2] = ACTIONS(9196), + [aux_sym_on_error_statement_token2] = ACTIONS(9196), + [sym__ambiguous_redim_statement] = ACTIONS(9198), + [aux_sym_erase_statement_token1] = ACTIONS(9196), + [aux_sym_open_statement_token1] = ACTIONS(9196), + [aux_sym_file_mode_token2] = ACTIONS(9196), + [aux_sym_file_access_token2] = ACTIONS(9196), + [aux_sym_file_lock_token2] = ACTIONS(9196), + [aux_sym_print_statement_token1] = ACTIONS(9196), + [anon_sym_PLUS] = ACTIONS(9198), + [anon_sym_DASH] = ACTIONS(9196), + [anon_sym_QMARK] = ACTIONS(9198), + [aux_sym_close_statement_token1] = ACTIONS(9196), + [aux_sym_put_statement_token1] = ACTIONS(9196), + [aux_sym_unlock_statement_token1] = ACTIONS(9196), + [aux_sym_seek_statement_token1] = ACTIONS(9196), + [sym_reset_statement] = ACTIONS(9196), + [aux_sym_raise_event_statement_token1] = ACTIONS(9196), + [sym_stop_statement] = ACTIONS(9196), + [sym_beep_statement] = ACTIONS(9196), + [aux_sym_unload_statement_token1] = ACTIONS(9196), + [aux_sym_def_type_statement_token1] = ACTIONS(9196), + [aux_sym_def_type_statement_token2] = ACTIONS(9196), + [aux_sym_def_type_statement_token3] = ACTIONS(9196), + [aux_sym_def_type_statement_token4] = ACTIONS(9196), + [aux_sym_def_type_statement_token5] = ACTIONS(9196), + [aux_sym_def_type_statement_token6] = ACTIONS(9196), + [aux_sym_def_type_statement_token7] = ACTIONS(9196), + [aux_sym_def_type_statement_token8] = ACTIONS(9196), + [aux_sym_def_type_statement_token9] = ACTIONS(9196), + [aux_sym_def_type_statement_token10] = ACTIONS(9196), + [aux_sym_def_type_statement_token11] = ACTIONS(9196), + [aux_sym_def_type_statement_token12] = ACTIONS(9196), + [aux_sym_def_type_statement_token13] = ACTIONS(9196), + [aux_sym_def_type_statement_token14] = ACTIONS(9196), + [aux_sym_call_statement_token1] = ACTIONS(9196), + [sym__ambiguous_call_statement] = ACTIONS(9196), + [aux_sym_addressof_expression_token1] = ACTIONS(9196), + [aux_sym_type_of_expression_token1] = ACTIONS(9196), + [aux_sym_unary_expression_token1] = ACTIONS(9196), + [sym_string_literal] = ACTIONS(9198), + [sym_number_literal] = ACTIONS(9198), + [aux_sym_boolean_literal_token1] = ACTIONS(9196), + [aux_sym_boolean_literal_token2] = ACTIONS(9196), + [sym_nothing_literal] = ACTIONS(9196), + [sym_null_literal] = ACTIONS(9196), + [sym_empty_literal] = ACTIONS(9196), + [sym_date_literal] = ACTIONS(9198), + [anon_sym_POUND] = ACTIONS(9196), + }, + [STATE(3933)] = { + [sym_identifier] = ACTIONS(9200), + [sym_newline] = ACTIONS(9202), + [anon_sym_COLON] = ACTIONS(9202), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9200), + [aux_sym_frm_property_statement_token1] = ACTIONS(9200), + [anon_sym_DOT] = ACTIONS(9200), + [anon_sym_BANG] = ACTIONS(9202), + [aux_sym__attribute_identifier_token1] = ACTIONS(9200), + [aux_sym_option_statement_token3] = ACTIONS(9200), + [aux_sym_type_declaration_token1] = ACTIONS(9200), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9200), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9200), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9200), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9200), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9200), + [aux_sym_enum_declaration_token1] = ACTIONS(9200), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9200), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9200), + [aux_sym_declare_function_statement_token1] = ACTIONS(9200), + [aux_sym_preprocessor_const_token1] = ACTIONS(9200), + [aux_sym__property_get_header_token1] = ACTIONS(9200), + [aux_sym_event_declaration_token1] = ACTIONS(9200), + [sym_static_modifier] = ACTIONS(9200), + [sym__dim_keyword] = ACTIONS(9200), + [sym__redim_keyword] = ACTIONS(9200), + [aux_sym_get_accessor_token1] = ACTIONS(9200), + [aux_sym_set_accessor_token1] = ACTIONS(9200), + [aux_sym_const_declaration_token1] = ACTIONS(9200), + [anon_sym_LPAREN] = ACTIONS(9202), + [aux_sym_as_type_clause_token2] = ACTIONS(9200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9200), + [aux_sym_visibility_token1] = ACTIONS(9200), + [aux_sym_visibility_token2] = ACTIONS(9200), + [aux_sym_elseif_fragment_token1] = ACTIONS(9200), + [aux_sym_else_fragment_token1] = ACTIONS(9200), + [aux_sym_select_statement_token1] = ACTIONS(9200), + [aux_sym__for_header_token1] = ACTIONS(9200), + [aux_sym_do_statement_token1] = ACTIONS(9200), + [aux_sym_do_condition_token1] = ACTIONS(9200), + [aux_sym_with_statement_token1] = ACTIONS(9200), + [aux_sym_exit_statement_token1] = ACTIONS(9200), + [sym_end_statement] = ACTIONS(9202), + [aux_sym_on_goto_statement_token1] = ACTIONS(9200), + [aux_sym_on_goto_statement_token2] = ACTIONS(9200), + [aux_sym_on_error_statement_token2] = ACTIONS(9200), + [sym__ambiguous_redim_statement] = ACTIONS(9202), + [aux_sym_erase_statement_token1] = ACTIONS(9200), + [aux_sym_open_statement_token1] = ACTIONS(9200), + [aux_sym_file_mode_token2] = ACTIONS(9200), + [aux_sym_file_access_token2] = ACTIONS(9200), + [aux_sym_file_lock_token2] = ACTIONS(9200), + [aux_sym_print_statement_token1] = ACTIONS(9200), + [anon_sym_PLUS] = ACTIONS(9202), + [anon_sym_DASH] = ACTIONS(9200), + [anon_sym_QMARK] = ACTIONS(9202), + [aux_sym_close_statement_token1] = ACTIONS(9200), + [aux_sym_put_statement_token1] = ACTIONS(9200), + [aux_sym_unlock_statement_token1] = ACTIONS(9200), + [aux_sym_seek_statement_token1] = ACTIONS(9200), + [sym_reset_statement] = ACTIONS(9200), + [aux_sym_raise_event_statement_token1] = ACTIONS(9200), + [sym_stop_statement] = ACTIONS(9200), + [sym_beep_statement] = ACTIONS(9200), + [aux_sym_unload_statement_token1] = ACTIONS(9200), + [aux_sym_def_type_statement_token1] = ACTIONS(9200), + [aux_sym_def_type_statement_token2] = ACTIONS(9200), + [aux_sym_def_type_statement_token3] = ACTIONS(9200), + [aux_sym_def_type_statement_token4] = ACTIONS(9200), + [aux_sym_def_type_statement_token5] = ACTIONS(9200), + [aux_sym_def_type_statement_token6] = ACTIONS(9200), + [aux_sym_def_type_statement_token7] = ACTIONS(9200), + [aux_sym_def_type_statement_token8] = ACTIONS(9200), + [aux_sym_def_type_statement_token9] = ACTIONS(9200), + [aux_sym_def_type_statement_token10] = ACTIONS(9200), + [aux_sym_def_type_statement_token11] = ACTIONS(9200), + [aux_sym_def_type_statement_token12] = ACTIONS(9200), + [aux_sym_def_type_statement_token13] = ACTIONS(9200), + [aux_sym_def_type_statement_token14] = ACTIONS(9200), + [aux_sym_call_statement_token1] = ACTIONS(9200), + [sym__ambiguous_call_statement] = ACTIONS(9200), + [aux_sym_addressof_expression_token1] = ACTIONS(9200), + [aux_sym_type_of_expression_token1] = ACTIONS(9200), + [aux_sym_unary_expression_token1] = ACTIONS(9200), + [sym_string_literal] = ACTIONS(9202), + [sym_number_literal] = ACTIONS(9202), + [aux_sym_boolean_literal_token1] = ACTIONS(9200), + [aux_sym_boolean_literal_token2] = ACTIONS(9200), + [sym_nothing_literal] = ACTIONS(9200), + [sym_null_literal] = ACTIONS(9200), + [sym_empty_literal] = ACTIONS(9200), + [sym_date_literal] = ACTIONS(9202), + [anon_sym_POUND] = ACTIONS(9200), + }, + [STATE(3934)] = { + [sym_identifier] = ACTIONS(9204), + [sym_newline] = ACTIONS(9206), + [anon_sym_COLON] = ACTIONS(9206), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9204), + [aux_sym_frm_property_statement_token1] = ACTIONS(9204), + [anon_sym_DOT] = ACTIONS(9204), + [anon_sym_BANG] = ACTIONS(9206), + [aux_sym__attribute_identifier_token1] = ACTIONS(9204), + [aux_sym_option_statement_token3] = ACTIONS(9204), + [aux_sym_type_declaration_token1] = ACTIONS(9204), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9204), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9204), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9204), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9204), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9204), + [aux_sym_enum_declaration_token1] = ACTIONS(9204), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9204), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9204), + [aux_sym_declare_function_statement_token1] = ACTIONS(9204), + [aux_sym_preprocessor_const_token1] = ACTIONS(9204), + [aux_sym__property_get_header_token1] = ACTIONS(9204), + [aux_sym_event_declaration_token1] = ACTIONS(9204), + [sym_static_modifier] = ACTIONS(9204), + [sym__dim_keyword] = ACTIONS(9204), + [sym__redim_keyword] = ACTIONS(9204), + [aux_sym_get_accessor_token1] = ACTIONS(9204), + [aux_sym_set_accessor_token1] = ACTIONS(9204), + [aux_sym_const_declaration_token1] = ACTIONS(9204), + [anon_sym_LPAREN] = ACTIONS(9206), + [aux_sym_as_type_clause_token2] = ACTIONS(9204), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9204), + [aux_sym_visibility_token1] = ACTIONS(9204), + [aux_sym_visibility_token2] = ACTIONS(9204), + [aux_sym_elseif_fragment_token1] = ACTIONS(9204), + [aux_sym_else_fragment_token1] = ACTIONS(9204), + [aux_sym_select_statement_token1] = ACTIONS(9204), + [aux_sym__for_header_token1] = ACTIONS(9204), + [aux_sym_do_statement_token1] = ACTIONS(9204), + [aux_sym_do_condition_token1] = ACTIONS(9204), + [aux_sym_with_statement_token1] = ACTIONS(9204), + [aux_sym_exit_statement_token1] = ACTIONS(9204), + [sym_end_statement] = ACTIONS(9206), + [aux_sym_on_goto_statement_token1] = ACTIONS(9204), + [aux_sym_on_goto_statement_token2] = ACTIONS(9204), + [aux_sym_on_error_statement_token2] = ACTIONS(9204), + [sym__ambiguous_redim_statement] = ACTIONS(9206), + [aux_sym_erase_statement_token1] = ACTIONS(9204), + [aux_sym_open_statement_token1] = ACTIONS(9204), + [aux_sym_file_mode_token2] = ACTIONS(9204), + [aux_sym_file_access_token2] = ACTIONS(9204), + [aux_sym_file_lock_token2] = ACTIONS(9204), + [aux_sym_print_statement_token1] = ACTIONS(9204), + [anon_sym_PLUS] = ACTIONS(9206), + [anon_sym_DASH] = ACTIONS(9204), + [anon_sym_QMARK] = ACTIONS(9206), + [aux_sym_close_statement_token1] = ACTIONS(9204), + [aux_sym_put_statement_token1] = ACTIONS(9204), + [aux_sym_unlock_statement_token1] = ACTIONS(9204), + [aux_sym_seek_statement_token1] = ACTIONS(9204), + [sym_reset_statement] = ACTIONS(9204), + [aux_sym_raise_event_statement_token1] = ACTIONS(9204), + [sym_stop_statement] = ACTIONS(9204), + [sym_beep_statement] = ACTIONS(9204), + [aux_sym_unload_statement_token1] = ACTIONS(9204), + [aux_sym_def_type_statement_token1] = ACTIONS(9204), + [aux_sym_def_type_statement_token2] = ACTIONS(9204), + [aux_sym_def_type_statement_token3] = ACTIONS(9204), + [aux_sym_def_type_statement_token4] = ACTIONS(9204), + [aux_sym_def_type_statement_token5] = ACTIONS(9204), + [aux_sym_def_type_statement_token6] = ACTIONS(9204), + [aux_sym_def_type_statement_token7] = ACTIONS(9204), + [aux_sym_def_type_statement_token8] = ACTIONS(9204), + [aux_sym_def_type_statement_token9] = ACTIONS(9204), + [aux_sym_def_type_statement_token10] = ACTIONS(9204), + [aux_sym_def_type_statement_token11] = ACTIONS(9204), + [aux_sym_def_type_statement_token12] = ACTIONS(9204), + [aux_sym_def_type_statement_token13] = ACTIONS(9204), + [aux_sym_def_type_statement_token14] = ACTIONS(9204), + [aux_sym_call_statement_token1] = ACTIONS(9204), + [sym__ambiguous_call_statement] = ACTIONS(9204), + [aux_sym_addressof_expression_token1] = ACTIONS(9204), + [aux_sym_type_of_expression_token1] = ACTIONS(9204), + [aux_sym_unary_expression_token1] = ACTIONS(9204), + [sym_string_literal] = ACTIONS(9206), + [sym_number_literal] = ACTIONS(9206), + [aux_sym_boolean_literal_token1] = ACTIONS(9204), + [aux_sym_boolean_literal_token2] = ACTIONS(9204), + [sym_nothing_literal] = ACTIONS(9204), + [sym_null_literal] = ACTIONS(9204), + [sym_empty_literal] = ACTIONS(9204), + [sym_date_literal] = ACTIONS(9206), + [anon_sym_POUND] = ACTIONS(9204), + }, + [STATE(3935)] = { + [sym_identifier] = ACTIONS(9208), + [sym_newline] = ACTIONS(9210), + [anon_sym_COLON] = ACTIONS(9210), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9208), + [aux_sym_frm_property_statement_token1] = ACTIONS(9208), + [anon_sym_DOT] = ACTIONS(9208), + [anon_sym_BANG] = ACTIONS(9210), + [aux_sym__attribute_identifier_token1] = ACTIONS(9208), + [aux_sym_option_statement_token3] = ACTIONS(9208), + [aux_sym_type_declaration_token1] = ACTIONS(9208), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9208), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9208), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9208), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9208), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9208), + [aux_sym_enum_declaration_token1] = ACTIONS(9208), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9208), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9208), + [aux_sym_declare_function_statement_token1] = ACTIONS(9208), + [aux_sym_preprocessor_const_token1] = ACTIONS(9208), + [aux_sym__property_get_header_token1] = ACTIONS(9208), + [aux_sym_event_declaration_token1] = ACTIONS(9208), + [sym_static_modifier] = ACTIONS(9208), + [sym__dim_keyword] = ACTIONS(9208), + [sym__redim_keyword] = ACTIONS(9208), + [aux_sym_get_accessor_token1] = ACTIONS(9208), + [aux_sym_set_accessor_token1] = ACTIONS(9208), + [aux_sym_const_declaration_token1] = ACTIONS(9208), + [anon_sym_LPAREN] = ACTIONS(9210), + [aux_sym_as_type_clause_token2] = ACTIONS(9208), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9208), + [aux_sym_visibility_token1] = ACTIONS(9208), + [aux_sym_visibility_token2] = ACTIONS(9208), + [aux_sym_elseif_fragment_token1] = ACTIONS(9208), + [aux_sym_else_fragment_token1] = ACTIONS(9208), + [aux_sym_select_statement_token1] = ACTIONS(9208), + [aux_sym__for_header_token1] = ACTIONS(9208), + [aux_sym_do_statement_token1] = ACTIONS(9208), + [aux_sym_do_condition_token1] = ACTIONS(9208), + [aux_sym_with_statement_token1] = ACTIONS(9208), + [aux_sym_exit_statement_token1] = ACTIONS(9208), + [sym_end_statement] = ACTIONS(9210), + [aux_sym_on_goto_statement_token1] = ACTIONS(9208), + [aux_sym_on_goto_statement_token2] = ACTIONS(9208), + [aux_sym_on_error_statement_token2] = ACTIONS(9208), + [sym__ambiguous_redim_statement] = ACTIONS(9210), + [aux_sym_erase_statement_token1] = ACTIONS(9208), + [aux_sym_open_statement_token1] = ACTIONS(9208), + [aux_sym_file_mode_token2] = ACTIONS(9208), + [aux_sym_file_access_token2] = ACTIONS(9208), + [aux_sym_file_lock_token2] = ACTIONS(9208), + [aux_sym_print_statement_token1] = ACTIONS(9208), + [anon_sym_PLUS] = ACTIONS(9210), + [anon_sym_DASH] = ACTIONS(9208), + [anon_sym_QMARK] = ACTIONS(9210), + [aux_sym_close_statement_token1] = ACTIONS(9208), + [aux_sym_put_statement_token1] = ACTIONS(9208), + [aux_sym_unlock_statement_token1] = ACTIONS(9208), + [aux_sym_seek_statement_token1] = ACTIONS(9208), + [sym_reset_statement] = ACTIONS(9208), + [aux_sym_raise_event_statement_token1] = ACTIONS(9208), + [sym_stop_statement] = ACTIONS(9208), + [sym_beep_statement] = ACTIONS(9208), + [aux_sym_unload_statement_token1] = ACTIONS(9208), + [aux_sym_def_type_statement_token1] = ACTIONS(9208), + [aux_sym_def_type_statement_token2] = ACTIONS(9208), + [aux_sym_def_type_statement_token3] = ACTIONS(9208), + [aux_sym_def_type_statement_token4] = ACTIONS(9208), + [aux_sym_def_type_statement_token5] = ACTIONS(9208), + [aux_sym_def_type_statement_token6] = ACTIONS(9208), + [aux_sym_def_type_statement_token7] = ACTIONS(9208), + [aux_sym_def_type_statement_token8] = ACTIONS(9208), + [aux_sym_def_type_statement_token9] = ACTIONS(9208), + [aux_sym_def_type_statement_token10] = ACTIONS(9208), + [aux_sym_def_type_statement_token11] = ACTIONS(9208), + [aux_sym_def_type_statement_token12] = ACTIONS(9208), + [aux_sym_def_type_statement_token13] = ACTIONS(9208), + [aux_sym_def_type_statement_token14] = ACTIONS(9208), + [aux_sym_call_statement_token1] = ACTIONS(9208), + [sym__ambiguous_call_statement] = ACTIONS(9208), + [aux_sym_addressof_expression_token1] = ACTIONS(9208), + [aux_sym_type_of_expression_token1] = ACTIONS(9208), + [aux_sym_unary_expression_token1] = ACTIONS(9208), + [sym_string_literal] = ACTIONS(9210), + [sym_number_literal] = ACTIONS(9210), + [aux_sym_boolean_literal_token1] = ACTIONS(9208), + [aux_sym_boolean_literal_token2] = ACTIONS(9208), + [sym_nothing_literal] = ACTIONS(9208), + [sym_null_literal] = ACTIONS(9208), + [sym_empty_literal] = ACTIONS(9208), + [sym_date_literal] = ACTIONS(9210), + [anon_sym_POUND] = ACTIONS(9208), + }, + [STATE(3936)] = { + [sym_identifier] = ACTIONS(9212), + [sym_newline] = ACTIONS(9214), + [anon_sym_COLON] = ACTIONS(9214), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9212), + [aux_sym_frm_property_statement_token1] = ACTIONS(9212), + [anon_sym_DOT] = ACTIONS(9212), + [anon_sym_BANG] = ACTIONS(9214), + [aux_sym__attribute_identifier_token1] = ACTIONS(9212), + [aux_sym_option_statement_token3] = ACTIONS(9212), + [aux_sym_type_declaration_token1] = ACTIONS(9212), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9212), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9212), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9212), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9212), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9212), + [aux_sym_enum_declaration_token1] = ACTIONS(9212), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9212), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9212), + [aux_sym_declare_function_statement_token1] = ACTIONS(9212), + [aux_sym_preprocessor_const_token1] = ACTIONS(9212), + [aux_sym__property_get_header_token1] = ACTIONS(9212), + [aux_sym_event_declaration_token1] = ACTIONS(9212), + [sym_static_modifier] = ACTIONS(9212), + [sym__dim_keyword] = ACTIONS(9212), + [sym__redim_keyword] = ACTIONS(9212), + [aux_sym_get_accessor_token1] = ACTIONS(9212), + [aux_sym_set_accessor_token1] = ACTIONS(9212), + [aux_sym_const_declaration_token1] = ACTIONS(9212), + [anon_sym_LPAREN] = ACTIONS(9214), + [aux_sym_as_type_clause_token2] = ACTIONS(9212), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9212), + [aux_sym_visibility_token1] = ACTIONS(9212), + [aux_sym_visibility_token2] = ACTIONS(9212), + [aux_sym_elseif_fragment_token1] = ACTIONS(9212), + [aux_sym_else_fragment_token1] = ACTIONS(9212), + [aux_sym_select_statement_token1] = ACTIONS(9212), + [aux_sym__for_header_token1] = ACTIONS(9212), + [aux_sym_do_statement_token1] = ACTIONS(9212), + [aux_sym_do_condition_token1] = ACTIONS(9212), + [aux_sym_with_statement_token1] = ACTIONS(9212), + [aux_sym_exit_statement_token1] = ACTIONS(9212), + [sym_end_statement] = ACTIONS(9214), + [aux_sym_on_goto_statement_token1] = ACTIONS(9212), + [aux_sym_on_goto_statement_token2] = ACTIONS(9212), + [aux_sym_on_error_statement_token2] = ACTIONS(9212), + [sym__ambiguous_redim_statement] = ACTIONS(9214), + [aux_sym_erase_statement_token1] = ACTIONS(9212), + [aux_sym_open_statement_token1] = ACTIONS(9212), + [aux_sym_file_mode_token2] = ACTIONS(9212), + [aux_sym_file_access_token2] = ACTIONS(9212), + [aux_sym_file_lock_token2] = ACTIONS(9212), + [aux_sym_print_statement_token1] = ACTIONS(9212), + [anon_sym_PLUS] = ACTIONS(9214), + [anon_sym_DASH] = ACTIONS(9212), + [anon_sym_QMARK] = ACTIONS(9214), + [aux_sym_close_statement_token1] = ACTIONS(9212), + [aux_sym_put_statement_token1] = ACTIONS(9212), + [aux_sym_unlock_statement_token1] = ACTIONS(9212), + [aux_sym_seek_statement_token1] = ACTIONS(9212), + [sym_reset_statement] = ACTIONS(9212), + [aux_sym_raise_event_statement_token1] = ACTIONS(9212), + [sym_stop_statement] = ACTIONS(9212), + [sym_beep_statement] = ACTIONS(9212), + [aux_sym_unload_statement_token1] = ACTIONS(9212), + [aux_sym_def_type_statement_token1] = ACTIONS(9212), + [aux_sym_def_type_statement_token2] = ACTIONS(9212), + [aux_sym_def_type_statement_token3] = ACTIONS(9212), + [aux_sym_def_type_statement_token4] = ACTIONS(9212), + [aux_sym_def_type_statement_token5] = ACTIONS(9212), + [aux_sym_def_type_statement_token6] = ACTIONS(9212), + [aux_sym_def_type_statement_token7] = ACTIONS(9212), + [aux_sym_def_type_statement_token8] = ACTIONS(9212), + [aux_sym_def_type_statement_token9] = ACTIONS(9212), + [aux_sym_def_type_statement_token10] = ACTIONS(9212), + [aux_sym_def_type_statement_token11] = ACTIONS(9212), + [aux_sym_def_type_statement_token12] = ACTIONS(9212), + [aux_sym_def_type_statement_token13] = ACTIONS(9212), + [aux_sym_def_type_statement_token14] = ACTIONS(9212), + [aux_sym_call_statement_token1] = ACTIONS(9212), + [sym__ambiguous_call_statement] = ACTIONS(9212), + [aux_sym_addressof_expression_token1] = ACTIONS(9212), + [aux_sym_type_of_expression_token1] = ACTIONS(9212), + [aux_sym_unary_expression_token1] = ACTIONS(9212), + [sym_string_literal] = ACTIONS(9214), + [sym_number_literal] = ACTIONS(9214), + [aux_sym_boolean_literal_token1] = ACTIONS(9212), + [aux_sym_boolean_literal_token2] = ACTIONS(9212), + [sym_nothing_literal] = ACTIONS(9212), + [sym_null_literal] = ACTIONS(9212), + [sym_empty_literal] = ACTIONS(9212), + [sym_date_literal] = ACTIONS(9214), + [anon_sym_POUND] = ACTIONS(9212), + }, + [STATE(3937)] = { + [sym_identifier] = ACTIONS(9216), + [sym_newline] = ACTIONS(9218), + [anon_sym_COLON] = ACTIONS(9218), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9216), + [aux_sym_frm_property_statement_token1] = ACTIONS(9216), + [anon_sym_DOT] = ACTIONS(9216), + [anon_sym_BANG] = ACTIONS(9218), + [aux_sym__attribute_identifier_token1] = ACTIONS(9216), + [aux_sym_option_statement_token3] = ACTIONS(9216), + [aux_sym_type_declaration_token1] = ACTIONS(9216), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9216), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9216), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9216), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9216), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9216), + [aux_sym_enum_declaration_token1] = ACTIONS(9216), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9216), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9216), + [aux_sym_declare_function_statement_token1] = ACTIONS(9216), + [aux_sym_preprocessor_const_token1] = ACTIONS(9216), + [aux_sym__property_get_header_token1] = ACTIONS(9216), + [aux_sym_event_declaration_token1] = ACTIONS(9216), + [sym_static_modifier] = ACTIONS(9216), + [sym__dim_keyword] = ACTIONS(9216), + [sym__redim_keyword] = ACTIONS(9216), + [aux_sym_get_accessor_token1] = ACTIONS(9216), + [aux_sym_set_accessor_token1] = ACTIONS(9216), + [aux_sym_const_declaration_token1] = ACTIONS(9216), + [anon_sym_LPAREN] = ACTIONS(9218), + [aux_sym_as_type_clause_token2] = ACTIONS(9216), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9216), + [aux_sym_visibility_token1] = ACTIONS(9216), + [aux_sym_visibility_token2] = ACTIONS(9216), + [aux_sym_elseif_fragment_token1] = ACTIONS(9216), + [aux_sym_else_fragment_token1] = ACTIONS(9216), + [aux_sym_select_statement_token1] = ACTIONS(9216), + [aux_sym__for_header_token1] = ACTIONS(9216), + [aux_sym_do_statement_token1] = ACTIONS(9216), + [aux_sym_do_condition_token1] = ACTIONS(9216), + [aux_sym_with_statement_token1] = ACTIONS(9216), + [aux_sym_exit_statement_token1] = ACTIONS(9216), + [sym_end_statement] = ACTIONS(9218), + [aux_sym_on_goto_statement_token1] = ACTIONS(9216), + [aux_sym_on_goto_statement_token2] = ACTIONS(9216), + [aux_sym_on_error_statement_token2] = ACTIONS(9216), + [sym__ambiguous_redim_statement] = ACTIONS(9218), + [aux_sym_erase_statement_token1] = ACTIONS(9216), + [aux_sym_open_statement_token1] = ACTIONS(9216), + [aux_sym_file_mode_token2] = ACTIONS(9216), + [aux_sym_file_access_token2] = ACTIONS(9216), + [aux_sym_file_lock_token2] = ACTIONS(9216), + [aux_sym_print_statement_token1] = ACTIONS(9216), + [anon_sym_PLUS] = ACTIONS(9218), + [anon_sym_DASH] = ACTIONS(9216), + [anon_sym_QMARK] = ACTIONS(9218), + [aux_sym_close_statement_token1] = ACTIONS(9216), + [aux_sym_put_statement_token1] = ACTIONS(9216), + [aux_sym_unlock_statement_token1] = ACTIONS(9216), + [aux_sym_seek_statement_token1] = ACTIONS(9216), + [sym_reset_statement] = ACTIONS(9216), + [aux_sym_raise_event_statement_token1] = ACTIONS(9216), + [sym_stop_statement] = ACTIONS(9216), + [sym_beep_statement] = ACTIONS(9216), + [aux_sym_unload_statement_token1] = ACTIONS(9216), + [aux_sym_def_type_statement_token1] = ACTIONS(9216), + [aux_sym_def_type_statement_token2] = ACTIONS(9216), + [aux_sym_def_type_statement_token3] = ACTIONS(9216), + [aux_sym_def_type_statement_token4] = ACTIONS(9216), + [aux_sym_def_type_statement_token5] = ACTIONS(9216), + [aux_sym_def_type_statement_token6] = ACTIONS(9216), + [aux_sym_def_type_statement_token7] = ACTIONS(9216), + [aux_sym_def_type_statement_token8] = ACTIONS(9216), + [aux_sym_def_type_statement_token9] = ACTIONS(9216), + [aux_sym_def_type_statement_token10] = ACTIONS(9216), + [aux_sym_def_type_statement_token11] = ACTIONS(9216), + [aux_sym_def_type_statement_token12] = ACTIONS(9216), + [aux_sym_def_type_statement_token13] = ACTIONS(9216), + [aux_sym_def_type_statement_token14] = ACTIONS(9216), + [aux_sym_call_statement_token1] = ACTIONS(9216), + [sym__ambiguous_call_statement] = ACTIONS(9216), + [aux_sym_addressof_expression_token1] = ACTIONS(9216), + [aux_sym_type_of_expression_token1] = ACTIONS(9216), + [aux_sym_unary_expression_token1] = ACTIONS(9216), + [sym_string_literal] = ACTIONS(9218), + [sym_number_literal] = ACTIONS(9218), + [aux_sym_boolean_literal_token1] = ACTIONS(9216), + [aux_sym_boolean_literal_token2] = ACTIONS(9216), + [sym_nothing_literal] = ACTIONS(9216), + [sym_null_literal] = ACTIONS(9216), + [sym_empty_literal] = ACTIONS(9216), + [sym_date_literal] = ACTIONS(9218), + [anon_sym_POUND] = ACTIONS(9216), + }, + [STATE(3938)] = { + [sym_identifier] = ACTIONS(9220), + [sym_newline] = ACTIONS(9222), + [anon_sym_COLON] = ACTIONS(9222), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9220), + [aux_sym_frm_property_statement_token1] = ACTIONS(9220), + [anon_sym_DOT] = ACTIONS(9220), + [anon_sym_BANG] = ACTIONS(9222), + [aux_sym__attribute_identifier_token1] = ACTIONS(9220), + [aux_sym_option_statement_token3] = ACTIONS(9220), + [aux_sym_type_declaration_token1] = ACTIONS(9220), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9220), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9220), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9220), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9220), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9220), + [aux_sym_enum_declaration_token1] = ACTIONS(9220), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9220), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9220), + [aux_sym_declare_function_statement_token1] = ACTIONS(9220), + [aux_sym_preprocessor_const_token1] = ACTIONS(9220), + [aux_sym__property_get_header_token1] = ACTIONS(9220), + [aux_sym_event_declaration_token1] = ACTIONS(9220), + [sym_static_modifier] = ACTIONS(9220), + [sym__dim_keyword] = ACTIONS(9220), + [sym__redim_keyword] = ACTIONS(9220), + [aux_sym_get_accessor_token1] = ACTIONS(9220), + [aux_sym_set_accessor_token1] = ACTIONS(9220), + [aux_sym_const_declaration_token1] = ACTIONS(9220), + [anon_sym_LPAREN] = ACTIONS(9222), + [aux_sym_as_type_clause_token2] = ACTIONS(9220), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9220), + [aux_sym_visibility_token1] = ACTIONS(9220), + [aux_sym_visibility_token2] = ACTIONS(9220), + [aux_sym_elseif_fragment_token1] = ACTIONS(9220), + [aux_sym_else_fragment_token1] = ACTIONS(9220), + [aux_sym_select_statement_token1] = ACTIONS(9220), + [aux_sym__for_header_token1] = ACTIONS(9220), + [aux_sym_do_statement_token1] = ACTIONS(9220), + [aux_sym_do_condition_token1] = ACTIONS(9220), + [aux_sym_with_statement_token1] = ACTIONS(9220), + [aux_sym_exit_statement_token1] = ACTIONS(9220), + [sym_end_statement] = ACTIONS(9222), + [aux_sym_on_goto_statement_token1] = ACTIONS(9220), + [aux_sym_on_goto_statement_token2] = ACTIONS(9220), + [aux_sym_on_error_statement_token2] = ACTIONS(9220), + [sym__ambiguous_redim_statement] = ACTIONS(9222), + [aux_sym_erase_statement_token1] = ACTIONS(9220), + [aux_sym_open_statement_token1] = ACTIONS(9220), + [aux_sym_file_mode_token2] = ACTIONS(9220), + [aux_sym_file_access_token2] = ACTIONS(9220), + [aux_sym_file_lock_token2] = ACTIONS(9220), + [aux_sym_print_statement_token1] = ACTIONS(9220), + [anon_sym_PLUS] = ACTIONS(9222), + [anon_sym_DASH] = ACTIONS(9220), + [anon_sym_QMARK] = ACTIONS(9222), + [aux_sym_close_statement_token1] = ACTIONS(9220), + [aux_sym_put_statement_token1] = ACTIONS(9220), + [aux_sym_unlock_statement_token1] = ACTIONS(9220), + [aux_sym_seek_statement_token1] = ACTIONS(9220), + [sym_reset_statement] = ACTIONS(9220), + [aux_sym_raise_event_statement_token1] = ACTIONS(9220), + [sym_stop_statement] = ACTIONS(9220), + [sym_beep_statement] = ACTIONS(9220), + [aux_sym_unload_statement_token1] = ACTIONS(9220), + [aux_sym_def_type_statement_token1] = ACTIONS(9220), + [aux_sym_def_type_statement_token2] = ACTIONS(9220), + [aux_sym_def_type_statement_token3] = ACTIONS(9220), + [aux_sym_def_type_statement_token4] = ACTIONS(9220), + [aux_sym_def_type_statement_token5] = ACTIONS(9220), + [aux_sym_def_type_statement_token6] = ACTIONS(9220), + [aux_sym_def_type_statement_token7] = ACTIONS(9220), + [aux_sym_def_type_statement_token8] = ACTIONS(9220), + [aux_sym_def_type_statement_token9] = ACTIONS(9220), + [aux_sym_def_type_statement_token10] = ACTIONS(9220), + [aux_sym_def_type_statement_token11] = ACTIONS(9220), + [aux_sym_def_type_statement_token12] = ACTIONS(9220), + [aux_sym_def_type_statement_token13] = ACTIONS(9220), + [aux_sym_def_type_statement_token14] = ACTIONS(9220), + [aux_sym_call_statement_token1] = ACTIONS(9220), + [sym__ambiguous_call_statement] = ACTIONS(9220), + [aux_sym_addressof_expression_token1] = ACTIONS(9220), + [aux_sym_type_of_expression_token1] = ACTIONS(9220), + [aux_sym_unary_expression_token1] = ACTIONS(9220), + [sym_string_literal] = ACTIONS(9222), + [sym_number_literal] = ACTIONS(9222), + [aux_sym_boolean_literal_token1] = ACTIONS(9220), + [aux_sym_boolean_literal_token2] = ACTIONS(9220), + [sym_nothing_literal] = ACTIONS(9220), + [sym_null_literal] = ACTIONS(9220), + [sym_empty_literal] = ACTIONS(9220), + [sym_date_literal] = ACTIONS(9222), + [anon_sym_POUND] = ACTIONS(9220), + }, + [STATE(3939)] = { + [sym_identifier] = ACTIONS(9224), + [sym_newline] = ACTIONS(9226), + [anon_sym_COLON] = ACTIONS(9226), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9224), + [aux_sym_frm_property_statement_token1] = ACTIONS(9224), + [anon_sym_DOT] = ACTIONS(9224), + [anon_sym_BANG] = ACTIONS(9226), + [aux_sym__attribute_identifier_token1] = ACTIONS(9224), + [aux_sym_option_statement_token3] = ACTIONS(9224), + [aux_sym_type_declaration_token1] = ACTIONS(9224), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9224), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9224), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9224), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9224), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9224), + [aux_sym_enum_declaration_token1] = ACTIONS(9224), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9224), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9224), + [aux_sym_declare_function_statement_token1] = ACTIONS(9224), + [aux_sym_preprocessor_const_token1] = ACTIONS(9224), + [aux_sym__property_get_header_token1] = ACTIONS(9224), + [aux_sym_event_declaration_token1] = ACTIONS(9224), + [sym_static_modifier] = ACTIONS(9224), + [sym__dim_keyword] = ACTIONS(9224), + [sym__redim_keyword] = ACTIONS(9224), + [aux_sym_get_accessor_token1] = ACTIONS(9224), + [aux_sym_set_accessor_token1] = ACTIONS(9224), + [aux_sym_const_declaration_token1] = ACTIONS(9224), + [anon_sym_LPAREN] = ACTIONS(9226), + [aux_sym_as_type_clause_token2] = ACTIONS(9224), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9224), + [aux_sym_visibility_token1] = ACTIONS(9224), + [aux_sym_visibility_token2] = ACTIONS(9224), + [aux_sym_elseif_fragment_token1] = ACTIONS(9224), + [aux_sym_else_fragment_token1] = ACTIONS(9224), + [aux_sym_select_statement_token1] = ACTIONS(9224), + [aux_sym__for_header_token1] = ACTIONS(9224), + [aux_sym_do_statement_token1] = ACTIONS(9224), + [aux_sym_do_condition_token1] = ACTIONS(9224), + [aux_sym_with_statement_token1] = ACTIONS(9224), + [aux_sym_exit_statement_token1] = ACTIONS(9224), + [sym_end_statement] = ACTIONS(9226), + [aux_sym_on_goto_statement_token1] = ACTIONS(9224), + [aux_sym_on_goto_statement_token2] = ACTIONS(9224), + [aux_sym_on_error_statement_token2] = ACTIONS(9224), + [sym__ambiguous_redim_statement] = ACTIONS(9226), + [aux_sym_erase_statement_token1] = ACTIONS(9224), + [aux_sym_open_statement_token1] = ACTIONS(9224), + [aux_sym_file_mode_token2] = ACTIONS(9224), + [aux_sym_file_access_token2] = ACTIONS(9224), + [aux_sym_file_lock_token2] = ACTIONS(9224), + [aux_sym_print_statement_token1] = ACTIONS(9224), + [anon_sym_PLUS] = ACTIONS(9226), + [anon_sym_DASH] = ACTIONS(9224), + [anon_sym_QMARK] = ACTIONS(9226), + [aux_sym_close_statement_token1] = ACTIONS(9224), + [aux_sym_put_statement_token1] = ACTIONS(9224), + [aux_sym_unlock_statement_token1] = ACTIONS(9224), + [aux_sym_seek_statement_token1] = ACTIONS(9224), + [sym_reset_statement] = ACTIONS(9224), + [aux_sym_raise_event_statement_token1] = ACTIONS(9224), + [sym_stop_statement] = ACTIONS(9224), + [sym_beep_statement] = ACTIONS(9224), + [aux_sym_unload_statement_token1] = ACTIONS(9224), + [aux_sym_def_type_statement_token1] = ACTIONS(9224), + [aux_sym_def_type_statement_token2] = ACTIONS(9224), + [aux_sym_def_type_statement_token3] = ACTIONS(9224), + [aux_sym_def_type_statement_token4] = ACTIONS(9224), + [aux_sym_def_type_statement_token5] = ACTIONS(9224), + [aux_sym_def_type_statement_token6] = ACTIONS(9224), + [aux_sym_def_type_statement_token7] = ACTIONS(9224), + [aux_sym_def_type_statement_token8] = ACTIONS(9224), + [aux_sym_def_type_statement_token9] = ACTIONS(9224), + [aux_sym_def_type_statement_token10] = ACTIONS(9224), + [aux_sym_def_type_statement_token11] = ACTIONS(9224), + [aux_sym_def_type_statement_token12] = ACTIONS(9224), + [aux_sym_def_type_statement_token13] = ACTIONS(9224), + [aux_sym_def_type_statement_token14] = ACTIONS(9224), + [aux_sym_call_statement_token1] = ACTIONS(9224), + [sym__ambiguous_call_statement] = ACTIONS(9224), + [aux_sym_addressof_expression_token1] = ACTIONS(9224), + [aux_sym_type_of_expression_token1] = ACTIONS(9224), + [aux_sym_unary_expression_token1] = ACTIONS(9224), + [sym_string_literal] = ACTIONS(9226), + [sym_number_literal] = ACTIONS(9226), + [aux_sym_boolean_literal_token1] = ACTIONS(9224), + [aux_sym_boolean_literal_token2] = ACTIONS(9224), + [sym_nothing_literal] = ACTIONS(9224), + [sym_null_literal] = ACTIONS(9224), + [sym_empty_literal] = ACTIONS(9224), + [sym_date_literal] = ACTIONS(9226), + [anon_sym_POUND] = ACTIONS(9224), + }, + [STATE(3940)] = { + [sym_identifier] = ACTIONS(9228), + [sym_newline] = ACTIONS(9230), + [anon_sym_COLON] = ACTIONS(9230), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9228), + [aux_sym_frm_property_statement_token1] = ACTIONS(9228), + [anon_sym_DOT] = ACTIONS(9228), + [anon_sym_BANG] = ACTIONS(9230), + [aux_sym__attribute_identifier_token1] = ACTIONS(9228), + [aux_sym_option_statement_token3] = ACTIONS(9228), + [aux_sym_type_declaration_token1] = ACTIONS(9228), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9228), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9228), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9228), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9228), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9228), + [aux_sym_enum_declaration_token1] = ACTIONS(9228), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9228), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9228), + [aux_sym_declare_function_statement_token1] = ACTIONS(9228), + [aux_sym_preprocessor_const_token1] = ACTIONS(9228), + [aux_sym__property_get_header_token1] = ACTIONS(9228), + [aux_sym_event_declaration_token1] = ACTIONS(9228), + [sym_static_modifier] = ACTIONS(9228), + [sym__dim_keyword] = ACTIONS(9228), + [sym__redim_keyword] = ACTIONS(9228), + [aux_sym_get_accessor_token1] = ACTIONS(9228), + [aux_sym_set_accessor_token1] = ACTIONS(9228), + [aux_sym_const_declaration_token1] = ACTIONS(9228), + [anon_sym_LPAREN] = ACTIONS(9230), + [aux_sym_as_type_clause_token2] = ACTIONS(9228), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9228), + [aux_sym_visibility_token1] = ACTIONS(9228), + [aux_sym_visibility_token2] = ACTIONS(9228), + [aux_sym_elseif_fragment_token1] = ACTIONS(9228), + [aux_sym_else_fragment_token1] = ACTIONS(9228), + [aux_sym_select_statement_token1] = ACTIONS(9228), + [aux_sym__for_header_token1] = ACTIONS(9228), + [aux_sym_do_statement_token1] = ACTIONS(9228), + [aux_sym_do_condition_token1] = ACTIONS(9228), + [aux_sym_with_statement_token1] = ACTIONS(9228), + [aux_sym_exit_statement_token1] = ACTIONS(9228), + [sym_end_statement] = ACTIONS(9230), + [aux_sym_on_goto_statement_token1] = ACTIONS(9228), + [aux_sym_on_goto_statement_token2] = ACTIONS(9228), + [aux_sym_on_error_statement_token2] = ACTIONS(9228), + [sym__ambiguous_redim_statement] = ACTIONS(9230), + [aux_sym_erase_statement_token1] = ACTIONS(9228), + [aux_sym_open_statement_token1] = ACTIONS(9228), + [aux_sym_file_mode_token2] = ACTIONS(9228), + [aux_sym_file_access_token2] = ACTIONS(9228), + [aux_sym_file_lock_token2] = ACTIONS(9228), + [aux_sym_print_statement_token1] = ACTIONS(9228), + [anon_sym_PLUS] = ACTIONS(9230), + [anon_sym_DASH] = ACTIONS(9228), + [anon_sym_QMARK] = ACTIONS(9230), + [aux_sym_close_statement_token1] = ACTIONS(9228), + [aux_sym_put_statement_token1] = ACTIONS(9228), + [aux_sym_unlock_statement_token1] = ACTIONS(9228), + [aux_sym_seek_statement_token1] = ACTIONS(9228), + [sym_reset_statement] = ACTIONS(9228), + [aux_sym_raise_event_statement_token1] = ACTIONS(9228), + [sym_stop_statement] = ACTIONS(9228), + [sym_beep_statement] = ACTIONS(9228), + [aux_sym_unload_statement_token1] = ACTIONS(9228), + [aux_sym_def_type_statement_token1] = ACTIONS(9228), + [aux_sym_def_type_statement_token2] = ACTIONS(9228), + [aux_sym_def_type_statement_token3] = ACTIONS(9228), + [aux_sym_def_type_statement_token4] = ACTIONS(9228), + [aux_sym_def_type_statement_token5] = ACTIONS(9228), + [aux_sym_def_type_statement_token6] = ACTIONS(9228), + [aux_sym_def_type_statement_token7] = ACTIONS(9228), + [aux_sym_def_type_statement_token8] = ACTIONS(9228), + [aux_sym_def_type_statement_token9] = ACTIONS(9228), + [aux_sym_def_type_statement_token10] = ACTIONS(9228), + [aux_sym_def_type_statement_token11] = ACTIONS(9228), + [aux_sym_def_type_statement_token12] = ACTIONS(9228), + [aux_sym_def_type_statement_token13] = ACTIONS(9228), + [aux_sym_def_type_statement_token14] = ACTIONS(9228), + [aux_sym_call_statement_token1] = ACTIONS(9228), + [sym__ambiguous_call_statement] = ACTIONS(9228), + [aux_sym_addressof_expression_token1] = ACTIONS(9228), + [aux_sym_type_of_expression_token1] = ACTIONS(9228), + [aux_sym_unary_expression_token1] = ACTIONS(9228), + [sym_string_literal] = ACTIONS(9230), + [sym_number_literal] = ACTIONS(9230), + [aux_sym_boolean_literal_token1] = ACTIONS(9228), + [aux_sym_boolean_literal_token2] = ACTIONS(9228), + [sym_nothing_literal] = ACTIONS(9228), + [sym_null_literal] = ACTIONS(9228), + [sym_empty_literal] = ACTIONS(9228), + [sym_date_literal] = ACTIONS(9230), + [anon_sym_POUND] = ACTIONS(9228), + }, + [STATE(3941)] = { + [sym_identifier] = ACTIONS(9232), + [sym_newline] = ACTIONS(9234), + [anon_sym_COLON] = ACTIONS(9234), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9232), + [aux_sym_frm_property_statement_token1] = ACTIONS(9232), + [anon_sym_DOT] = ACTIONS(9232), + [anon_sym_BANG] = ACTIONS(9234), + [aux_sym__attribute_identifier_token1] = ACTIONS(9232), + [aux_sym_option_statement_token3] = ACTIONS(9232), + [aux_sym_type_declaration_token1] = ACTIONS(9232), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9232), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9232), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9232), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9232), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9232), + [aux_sym_enum_declaration_token1] = ACTIONS(9232), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9232), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9232), + [aux_sym_declare_function_statement_token1] = ACTIONS(9232), + [aux_sym_preprocessor_const_token1] = ACTIONS(9232), + [aux_sym__property_get_header_token1] = ACTIONS(9232), + [aux_sym_event_declaration_token1] = ACTIONS(9232), + [sym_static_modifier] = ACTIONS(9232), + [sym__dim_keyword] = ACTIONS(9232), + [sym__redim_keyword] = ACTIONS(9232), + [aux_sym_get_accessor_token1] = ACTIONS(9232), + [aux_sym_set_accessor_token1] = ACTIONS(9232), + [aux_sym_const_declaration_token1] = ACTIONS(9232), + [anon_sym_LPAREN] = ACTIONS(9234), + [aux_sym_as_type_clause_token2] = ACTIONS(9232), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9232), + [aux_sym_visibility_token1] = ACTIONS(9232), + [aux_sym_visibility_token2] = ACTIONS(9232), + [aux_sym_elseif_fragment_token1] = ACTIONS(9232), + [aux_sym_else_fragment_token1] = ACTIONS(9232), + [aux_sym_select_statement_token1] = ACTIONS(9232), + [aux_sym__for_header_token1] = ACTIONS(9232), + [aux_sym_do_statement_token1] = ACTIONS(9232), + [aux_sym_do_condition_token1] = ACTIONS(9232), + [aux_sym_with_statement_token1] = ACTIONS(9232), + [aux_sym_exit_statement_token1] = ACTIONS(9232), + [sym_end_statement] = ACTIONS(9234), + [aux_sym_on_goto_statement_token1] = ACTIONS(9232), + [aux_sym_on_goto_statement_token2] = ACTIONS(9232), + [aux_sym_on_error_statement_token2] = ACTIONS(9232), + [sym__ambiguous_redim_statement] = ACTIONS(9234), + [aux_sym_erase_statement_token1] = ACTIONS(9232), + [aux_sym_open_statement_token1] = ACTIONS(9232), + [aux_sym_file_mode_token2] = ACTIONS(9232), + [aux_sym_file_access_token2] = ACTIONS(9232), + [aux_sym_file_lock_token2] = ACTIONS(9232), + [aux_sym_print_statement_token1] = ACTIONS(9232), + [anon_sym_PLUS] = ACTIONS(9234), + [anon_sym_DASH] = ACTIONS(9232), + [anon_sym_QMARK] = ACTIONS(9234), + [aux_sym_close_statement_token1] = ACTIONS(9232), + [aux_sym_put_statement_token1] = ACTIONS(9232), + [aux_sym_unlock_statement_token1] = ACTIONS(9232), + [aux_sym_seek_statement_token1] = ACTIONS(9232), + [sym_reset_statement] = ACTIONS(9232), + [aux_sym_raise_event_statement_token1] = ACTIONS(9232), + [sym_stop_statement] = ACTIONS(9232), + [sym_beep_statement] = ACTIONS(9232), + [aux_sym_unload_statement_token1] = ACTIONS(9232), + [aux_sym_def_type_statement_token1] = ACTIONS(9232), + [aux_sym_def_type_statement_token2] = ACTIONS(9232), + [aux_sym_def_type_statement_token3] = ACTIONS(9232), + [aux_sym_def_type_statement_token4] = ACTIONS(9232), + [aux_sym_def_type_statement_token5] = ACTIONS(9232), + [aux_sym_def_type_statement_token6] = ACTIONS(9232), + [aux_sym_def_type_statement_token7] = ACTIONS(9232), + [aux_sym_def_type_statement_token8] = ACTIONS(9232), + [aux_sym_def_type_statement_token9] = ACTIONS(9232), + [aux_sym_def_type_statement_token10] = ACTIONS(9232), + [aux_sym_def_type_statement_token11] = ACTIONS(9232), + [aux_sym_def_type_statement_token12] = ACTIONS(9232), + [aux_sym_def_type_statement_token13] = ACTIONS(9232), + [aux_sym_def_type_statement_token14] = ACTIONS(9232), + [aux_sym_call_statement_token1] = ACTIONS(9232), + [sym__ambiguous_call_statement] = ACTIONS(9232), + [aux_sym_addressof_expression_token1] = ACTIONS(9232), + [aux_sym_type_of_expression_token1] = ACTIONS(9232), + [aux_sym_unary_expression_token1] = ACTIONS(9232), + [sym_string_literal] = ACTIONS(9234), + [sym_number_literal] = ACTIONS(9234), + [aux_sym_boolean_literal_token1] = ACTIONS(9232), + [aux_sym_boolean_literal_token2] = ACTIONS(9232), + [sym_nothing_literal] = ACTIONS(9232), + [sym_null_literal] = ACTIONS(9232), + [sym_empty_literal] = ACTIONS(9232), + [sym_date_literal] = ACTIONS(9234), + [anon_sym_POUND] = ACTIONS(9232), + }, + [STATE(3942)] = { + [sym_identifier] = ACTIONS(9236), + [sym_newline] = ACTIONS(9238), + [anon_sym_COLON] = ACTIONS(9238), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9236), + [aux_sym_frm_property_statement_token1] = ACTIONS(9236), + [anon_sym_DOT] = ACTIONS(9236), + [anon_sym_BANG] = ACTIONS(9238), + [aux_sym__attribute_identifier_token1] = ACTIONS(9236), + [aux_sym_option_statement_token3] = ACTIONS(9236), + [aux_sym_type_declaration_token1] = ACTIONS(9236), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9236), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9236), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9236), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9236), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9236), + [aux_sym_enum_declaration_token1] = ACTIONS(9236), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9236), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9236), + [aux_sym_declare_function_statement_token1] = ACTIONS(9236), + [aux_sym_preprocessor_const_token1] = ACTIONS(9236), + [aux_sym__property_get_header_token1] = ACTIONS(9236), + [aux_sym_event_declaration_token1] = ACTIONS(9236), + [sym_static_modifier] = ACTIONS(9236), + [sym__dim_keyword] = ACTIONS(9236), + [sym__redim_keyword] = ACTIONS(9236), + [aux_sym_get_accessor_token1] = ACTIONS(9236), + [aux_sym_set_accessor_token1] = ACTIONS(9236), + [aux_sym_const_declaration_token1] = ACTIONS(9236), + [anon_sym_LPAREN] = ACTIONS(9238), + [aux_sym_as_type_clause_token2] = ACTIONS(9236), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9236), + [aux_sym_visibility_token1] = ACTIONS(9236), + [aux_sym_visibility_token2] = ACTIONS(9236), + [aux_sym_elseif_fragment_token1] = ACTIONS(9236), + [aux_sym_else_fragment_token1] = ACTIONS(9236), + [aux_sym_select_statement_token1] = ACTIONS(9236), + [aux_sym__for_header_token1] = ACTIONS(9236), + [aux_sym_do_statement_token1] = ACTIONS(9236), + [aux_sym_do_condition_token1] = ACTIONS(9236), + [aux_sym_with_statement_token1] = ACTIONS(9236), + [aux_sym_exit_statement_token1] = ACTIONS(9236), + [sym_end_statement] = ACTIONS(9238), + [aux_sym_on_goto_statement_token1] = ACTIONS(9236), + [aux_sym_on_goto_statement_token2] = ACTIONS(9236), + [aux_sym_on_error_statement_token2] = ACTIONS(9236), + [sym__ambiguous_redim_statement] = ACTIONS(9238), + [aux_sym_erase_statement_token1] = ACTIONS(9236), + [aux_sym_open_statement_token1] = ACTIONS(9236), + [aux_sym_file_mode_token2] = ACTIONS(9236), + [aux_sym_file_access_token2] = ACTIONS(9236), + [aux_sym_file_lock_token2] = ACTIONS(9236), + [aux_sym_print_statement_token1] = ACTIONS(9236), + [anon_sym_PLUS] = ACTIONS(9238), + [anon_sym_DASH] = ACTIONS(9236), + [anon_sym_QMARK] = ACTIONS(9238), + [aux_sym_close_statement_token1] = ACTIONS(9236), + [aux_sym_put_statement_token1] = ACTIONS(9236), + [aux_sym_unlock_statement_token1] = ACTIONS(9236), + [aux_sym_seek_statement_token1] = ACTIONS(9236), + [sym_reset_statement] = ACTIONS(9236), + [aux_sym_raise_event_statement_token1] = ACTIONS(9236), + [sym_stop_statement] = ACTIONS(9236), + [sym_beep_statement] = ACTIONS(9236), + [aux_sym_unload_statement_token1] = ACTIONS(9236), + [aux_sym_def_type_statement_token1] = ACTIONS(9236), + [aux_sym_def_type_statement_token2] = ACTIONS(9236), + [aux_sym_def_type_statement_token3] = ACTIONS(9236), + [aux_sym_def_type_statement_token4] = ACTIONS(9236), + [aux_sym_def_type_statement_token5] = ACTIONS(9236), + [aux_sym_def_type_statement_token6] = ACTIONS(9236), + [aux_sym_def_type_statement_token7] = ACTIONS(9236), + [aux_sym_def_type_statement_token8] = ACTIONS(9236), + [aux_sym_def_type_statement_token9] = ACTIONS(9236), + [aux_sym_def_type_statement_token10] = ACTIONS(9236), + [aux_sym_def_type_statement_token11] = ACTIONS(9236), + [aux_sym_def_type_statement_token12] = ACTIONS(9236), + [aux_sym_def_type_statement_token13] = ACTIONS(9236), + [aux_sym_def_type_statement_token14] = ACTIONS(9236), + [aux_sym_call_statement_token1] = ACTIONS(9236), + [sym__ambiguous_call_statement] = ACTIONS(9236), + [aux_sym_addressof_expression_token1] = ACTIONS(9236), + [aux_sym_type_of_expression_token1] = ACTIONS(9236), + [aux_sym_unary_expression_token1] = ACTIONS(9236), + [sym_string_literal] = ACTIONS(9238), + [sym_number_literal] = ACTIONS(9238), + [aux_sym_boolean_literal_token1] = ACTIONS(9236), + [aux_sym_boolean_literal_token2] = ACTIONS(9236), + [sym_nothing_literal] = ACTIONS(9236), + [sym_null_literal] = ACTIONS(9236), + [sym_empty_literal] = ACTIONS(9236), + [sym_date_literal] = ACTIONS(9238), + [anon_sym_POUND] = ACTIONS(9236), + }, + [STATE(3943)] = { + [sym_identifier] = ACTIONS(9240), + [sym_newline] = ACTIONS(9242), + [anon_sym_COLON] = ACTIONS(9242), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9240), + [aux_sym_frm_property_statement_token1] = ACTIONS(9240), + [anon_sym_DOT] = ACTIONS(9240), + [anon_sym_BANG] = ACTIONS(9242), + [aux_sym__attribute_identifier_token1] = ACTIONS(9240), + [aux_sym_option_statement_token3] = ACTIONS(9240), + [aux_sym_type_declaration_token1] = ACTIONS(9240), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9240), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9240), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9240), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9240), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9240), + [aux_sym_enum_declaration_token1] = ACTIONS(9240), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9240), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9240), + [aux_sym_declare_function_statement_token1] = ACTIONS(9240), + [aux_sym_preprocessor_const_token1] = ACTIONS(9240), + [aux_sym__property_get_header_token1] = ACTIONS(9240), + [aux_sym_event_declaration_token1] = ACTIONS(9240), + [sym_static_modifier] = ACTIONS(9240), + [sym__dim_keyword] = ACTIONS(9240), + [sym__redim_keyword] = ACTIONS(9240), + [aux_sym_get_accessor_token1] = ACTIONS(9240), + [aux_sym_set_accessor_token1] = ACTIONS(9240), + [aux_sym_const_declaration_token1] = ACTIONS(9240), + [anon_sym_LPAREN] = ACTIONS(9242), + [aux_sym_as_type_clause_token2] = ACTIONS(9240), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9240), + [aux_sym_visibility_token1] = ACTIONS(9240), + [aux_sym_visibility_token2] = ACTIONS(9240), + [aux_sym_elseif_fragment_token1] = ACTIONS(9240), + [aux_sym_else_fragment_token1] = ACTIONS(9240), + [aux_sym_select_statement_token1] = ACTIONS(9240), + [aux_sym__for_header_token1] = ACTIONS(9240), + [aux_sym_do_statement_token1] = ACTIONS(9240), + [aux_sym_do_condition_token1] = ACTIONS(9240), + [aux_sym_with_statement_token1] = ACTIONS(9240), + [aux_sym_exit_statement_token1] = ACTIONS(9240), + [sym_end_statement] = ACTIONS(9242), + [aux_sym_on_goto_statement_token1] = ACTIONS(9240), + [aux_sym_on_goto_statement_token2] = ACTIONS(9240), + [aux_sym_on_error_statement_token2] = ACTIONS(9240), + [sym__ambiguous_redim_statement] = ACTIONS(9242), + [aux_sym_erase_statement_token1] = ACTIONS(9240), + [aux_sym_open_statement_token1] = ACTIONS(9240), + [aux_sym_file_mode_token2] = ACTIONS(9240), + [aux_sym_file_access_token2] = ACTIONS(9240), + [aux_sym_file_lock_token2] = ACTIONS(9240), + [aux_sym_print_statement_token1] = ACTIONS(9240), + [anon_sym_PLUS] = ACTIONS(9242), + [anon_sym_DASH] = ACTIONS(9240), + [anon_sym_QMARK] = ACTIONS(9242), + [aux_sym_close_statement_token1] = ACTIONS(9240), + [aux_sym_put_statement_token1] = ACTIONS(9240), + [aux_sym_unlock_statement_token1] = ACTIONS(9240), + [aux_sym_seek_statement_token1] = ACTIONS(9240), + [sym_reset_statement] = ACTIONS(9240), + [aux_sym_raise_event_statement_token1] = ACTIONS(9240), + [sym_stop_statement] = ACTIONS(9240), + [sym_beep_statement] = ACTIONS(9240), + [aux_sym_unload_statement_token1] = ACTIONS(9240), + [aux_sym_def_type_statement_token1] = ACTIONS(9240), + [aux_sym_def_type_statement_token2] = ACTIONS(9240), + [aux_sym_def_type_statement_token3] = ACTIONS(9240), + [aux_sym_def_type_statement_token4] = ACTIONS(9240), + [aux_sym_def_type_statement_token5] = ACTIONS(9240), + [aux_sym_def_type_statement_token6] = ACTIONS(9240), + [aux_sym_def_type_statement_token7] = ACTIONS(9240), + [aux_sym_def_type_statement_token8] = ACTIONS(9240), + [aux_sym_def_type_statement_token9] = ACTIONS(9240), + [aux_sym_def_type_statement_token10] = ACTIONS(9240), + [aux_sym_def_type_statement_token11] = ACTIONS(9240), + [aux_sym_def_type_statement_token12] = ACTIONS(9240), + [aux_sym_def_type_statement_token13] = ACTIONS(9240), + [aux_sym_def_type_statement_token14] = ACTIONS(9240), + [aux_sym_call_statement_token1] = ACTIONS(9240), + [sym__ambiguous_call_statement] = ACTIONS(9240), + [aux_sym_addressof_expression_token1] = ACTIONS(9240), + [aux_sym_type_of_expression_token1] = ACTIONS(9240), + [aux_sym_unary_expression_token1] = ACTIONS(9240), + [sym_string_literal] = ACTIONS(9242), + [sym_number_literal] = ACTIONS(9242), + [aux_sym_boolean_literal_token1] = ACTIONS(9240), + [aux_sym_boolean_literal_token2] = ACTIONS(9240), + [sym_nothing_literal] = ACTIONS(9240), + [sym_null_literal] = ACTIONS(9240), + [sym_empty_literal] = ACTIONS(9240), + [sym_date_literal] = ACTIONS(9242), + [anon_sym_POUND] = ACTIONS(9240), + }, + [STATE(3944)] = { + [sym_identifier] = ACTIONS(9244), + [sym_newline] = ACTIONS(9246), + [anon_sym_COLON] = ACTIONS(9246), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9244), + [aux_sym_frm_property_statement_token1] = ACTIONS(9244), + [anon_sym_DOT] = ACTIONS(9244), + [anon_sym_BANG] = ACTIONS(9246), + [aux_sym__attribute_identifier_token1] = ACTIONS(9244), + [aux_sym_option_statement_token3] = ACTIONS(9244), + [aux_sym_type_declaration_token1] = ACTIONS(9244), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9244), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9244), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9244), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9244), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9244), + [aux_sym_enum_declaration_token1] = ACTIONS(9244), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9244), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9244), + [aux_sym_declare_function_statement_token1] = ACTIONS(9244), + [aux_sym_preprocessor_const_token1] = ACTIONS(9244), + [aux_sym__property_get_header_token1] = ACTIONS(9244), + [aux_sym_event_declaration_token1] = ACTIONS(9244), + [sym_static_modifier] = ACTIONS(9244), + [sym__dim_keyword] = ACTIONS(9244), + [sym__redim_keyword] = ACTIONS(9244), + [aux_sym_get_accessor_token1] = ACTIONS(9244), + [aux_sym_set_accessor_token1] = ACTIONS(9244), + [aux_sym_const_declaration_token1] = ACTIONS(9244), + [anon_sym_LPAREN] = ACTIONS(9246), + [aux_sym_as_type_clause_token2] = ACTIONS(9244), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9244), + [aux_sym_visibility_token1] = ACTIONS(9244), + [aux_sym_visibility_token2] = ACTIONS(9244), + [aux_sym_elseif_fragment_token1] = ACTIONS(9244), + [aux_sym_else_fragment_token1] = ACTIONS(9244), + [aux_sym_select_statement_token1] = ACTIONS(9244), + [aux_sym__for_header_token1] = ACTIONS(9244), + [aux_sym_do_statement_token1] = ACTIONS(9244), + [aux_sym_do_condition_token1] = ACTIONS(9244), + [aux_sym_with_statement_token1] = ACTIONS(9244), + [aux_sym_exit_statement_token1] = ACTIONS(9244), + [sym_end_statement] = ACTIONS(9246), + [aux_sym_on_goto_statement_token1] = ACTIONS(9244), + [aux_sym_on_goto_statement_token2] = ACTIONS(9244), + [aux_sym_on_error_statement_token2] = ACTIONS(9244), + [sym__ambiguous_redim_statement] = ACTIONS(9246), + [aux_sym_erase_statement_token1] = ACTIONS(9244), + [aux_sym_open_statement_token1] = ACTIONS(9244), + [aux_sym_file_mode_token2] = ACTIONS(9244), + [aux_sym_file_access_token2] = ACTIONS(9244), + [aux_sym_file_lock_token2] = ACTIONS(9244), + [aux_sym_print_statement_token1] = ACTIONS(9244), + [anon_sym_PLUS] = ACTIONS(9246), + [anon_sym_DASH] = ACTIONS(9244), + [anon_sym_QMARK] = ACTIONS(9246), + [aux_sym_close_statement_token1] = ACTIONS(9244), + [aux_sym_put_statement_token1] = ACTIONS(9244), + [aux_sym_unlock_statement_token1] = ACTIONS(9244), + [aux_sym_seek_statement_token1] = ACTIONS(9244), + [sym_reset_statement] = ACTIONS(9244), + [aux_sym_raise_event_statement_token1] = ACTIONS(9244), + [sym_stop_statement] = ACTIONS(9244), + [sym_beep_statement] = ACTIONS(9244), + [aux_sym_unload_statement_token1] = ACTIONS(9244), + [aux_sym_def_type_statement_token1] = ACTIONS(9244), + [aux_sym_def_type_statement_token2] = ACTIONS(9244), + [aux_sym_def_type_statement_token3] = ACTIONS(9244), + [aux_sym_def_type_statement_token4] = ACTIONS(9244), + [aux_sym_def_type_statement_token5] = ACTIONS(9244), + [aux_sym_def_type_statement_token6] = ACTIONS(9244), + [aux_sym_def_type_statement_token7] = ACTIONS(9244), + [aux_sym_def_type_statement_token8] = ACTIONS(9244), + [aux_sym_def_type_statement_token9] = ACTIONS(9244), + [aux_sym_def_type_statement_token10] = ACTIONS(9244), + [aux_sym_def_type_statement_token11] = ACTIONS(9244), + [aux_sym_def_type_statement_token12] = ACTIONS(9244), + [aux_sym_def_type_statement_token13] = ACTIONS(9244), + [aux_sym_def_type_statement_token14] = ACTIONS(9244), + [aux_sym_call_statement_token1] = ACTIONS(9244), + [sym__ambiguous_call_statement] = ACTIONS(9244), + [aux_sym_addressof_expression_token1] = ACTIONS(9244), + [aux_sym_type_of_expression_token1] = ACTIONS(9244), + [aux_sym_unary_expression_token1] = ACTIONS(9244), + [sym_string_literal] = ACTIONS(9246), + [sym_number_literal] = ACTIONS(9246), + [aux_sym_boolean_literal_token1] = ACTIONS(9244), + [aux_sym_boolean_literal_token2] = ACTIONS(9244), + [sym_nothing_literal] = ACTIONS(9244), + [sym_null_literal] = ACTIONS(9244), + [sym_empty_literal] = ACTIONS(9244), + [sym_date_literal] = ACTIONS(9246), + [anon_sym_POUND] = ACTIONS(9244), + }, + [STATE(3945)] = { + [sym_identifier] = ACTIONS(9248), + [sym_newline] = ACTIONS(9250), + [anon_sym_COLON] = ACTIONS(9250), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9248), + [aux_sym_frm_property_statement_token1] = ACTIONS(9248), + [anon_sym_DOT] = ACTIONS(9248), + [anon_sym_BANG] = ACTIONS(9250), + [aux_sym__attribute_identifier_token1] = ACTIONS(9248), + [aux_sym_option_statement_token3] = ACTIONS(9248), + [aux_sym_type_declaration_token1] = ACTIONS(9248), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9248), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9248), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9248), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9248), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9248), + [aux_sym_enum_declaration_token1] = ACTIONS(9248), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9248), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9248), + [aux_sym_declare_function_statement_token1] = ACTIONS(9248), + [aux_sym_preprocessor_const_token1] = ACTIONS(9248), + [aux_sym__property_get_header_token1] = ACTIONS(9248), + [aux_sym_event_declaration_token1] = ACTIONS(9248), + [sym_static_modifier] = ACTIONS(9248), + [sym__dim_keyword] = ACTIONS(9248), + [sym__redim_keyword] = ACTIONS(9248), + [aux_sym_get_accessor_token1] = ACTIONS(9248), + [aux_sym_set_accessor_token1] = ACTIONS(9248), + [aux_sym_const_declaration_token1] = ACTIONS(9248), + [anon_sym_LPAREN] = ACTIONS(9250), + [aux_sym_as_type_clause_token2] = ACTIONS(9248), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9248), + [aux_sym_visibility_token1] = ACTIONS(9248), + [aux_sym_visibility_token2] = ACTIONS(9248), + [aux_sym_elseif_fragment_token1] = ACTIONS(9248), + [aux_sym_else_fragment_token1] = ACTIONS(9248), + [aux_sym_select_statement_token1] = ACTIONS(9248), + [aux_sym__for_header_token1] = ACTIONS(9248), + [aux_sym_do_statement_token1] = ACTIONS(9248), + [aux_sym_do_condition_token1] = ACTIONS(9248), + [aux_sym_with_statement_token1] = ACTIONS(9248), + [aux_sym_exit_statement_token1] = ACTIONS(9248), + [sym_end_statement] = ACTIONS(9250), + [aux_sym_on_goto_statement_token1] = ACTIONS(9248), + [aux_sym_on_goto_statement_token2] = ACTIONS(9248), + [aux_sym_on_error_statement_token2] = ACTIONS(9248), + [sym__ambiguous_redim_statement] = ACTIONS(9250), + [aux_sym_erase_statement_token1] = ACTIONS(9248), + [aux_sym_open_statement_token1] = ACTIONS(9248), + [aux_sym_file_mode_token2] = ACTIONS(9248), + [aux_sym_file_access_token2] = ACTIONS(9248), + [aux_sym_file_lock_token2] = ACTIONS(9248), + [aux_sym_print_statement_token1] = ACTIONS(9248), + [anon_sym_PLUS] = ACTIONS(9250), + [anon_sym_DASH] = ACTIONS(9248), + [anon_sym_QMARK] = ACTIONS(9250), + [aux_sym_close_statement_token1] = ACTIONS(9248), + [aux_sym_put_statement_token1] = ACTIONS(9248), + [aux_sym_unlock_statement_token1] = ACTIONS(9248), + [aux_sym_seek_statement_token1] = ACTIONS(9248), + [sym_reset_statement] = ACTIONS(9248), + [aux_sym_raise_event_statement_token1] = ACTIONS(9248), + [sym_stop_statement] = ACTIONS(9248), + [sym_beep_statement] = ACTIONS(9248), + [aux_sym_unload_statement_token1] = ACTIONS(9248), + [aux_sym_def_type_statement_token1] = ACTIONS(9248), + [aux_sym_def_type_statement_token2] = ACTIONS(9248), + [aux_sym_def_type_statement_token3] = ACTIONS(9248), + [aux_sym_def_type_statement_token4] = ACTIONS(9248), + [aux_sym_def_type_statement_token5] = ACTIONS(9248), + [aux_sym_def_type_statement_token6] = ACTIONS(9248), + [aux_sym_def_type_statement_token7] = ACTIONS(9248), + [aux_sym_def_type_statement_token8] = ACTIONS(9248), + [aux_sym_def_type_statement_token9] = ACTIONS(9248), + [aux_sym_def_type_statement_token10] = ACTIONS(9248), + [aux_sym_def_type_statement_token11] = ACTIONS(9248), + [aux_sym_def_type_statement_token12] = ACTIONS(9248), + [aux_sym_def_type_statement_token13] = ACTIONS(9248), + [aux_sym_def_type_statement_token14] = ACTIONS(9248), + [aux_sym_call_statement_token1] = ACTIONS(9248), + [sym__ambiguous_call_statement] = ACTIONS(9248), + [aux_sym_addressof_expression_token1] = ACTIONS(9248), + [aux_sym_type_of_expression_token1] = ACTIONS(9248), + [aux_sym_unary_expression_token1] = ACTIONS(9248), + [sym_string_literal] = ACTIONS(9250), + [sym_number_literal] = ACTIONS(9250), + [aux_sym_boolean_literal_token1] = ACTIONS(9248), + [aux_sym_boolean_literal_token2] = ACTIONS(9248), + [sym_nothing_literal] = ACTIONS(9248), + [sym_null_literal] = ACTIONS(9248), + [sym_empty_literal] = ACTIONS(9248), + [sym_date_literal] = ACTIONS(9250), + [anon_sym_POUND] = ACTIONS(9248), + }, + [STATE(3946)] = { + [sym_identifier] = ACTIONS(9252), + [sym_newline] = ACTIONS(9254), + [anon_sym_COLON] = ACTIONS(9254), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9252), + [aux_sym_frm_property_statement_token1] = ACTIONS(9252), + [anon_sym_DOT] = ACTIONS(9252), + [anon_sym_BANG] = ACTIONS(9254), + [aux_sym__attribute_identifier_token1] = ACTIONS(9252), + [aux_sym_option_statement_token3] = ACTIONS(9252), + [aux_sym_type_declaration_token1] = ACTIONS(9252), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9252), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9252), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9252), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9252), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9252), + [aux_sym_enum_declaration_token1] = ACTIONS(9252), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9252), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9252), + [aux_sym_declare_function_statement_token1] = ACTIONS(9252), + [aux_sym_preprocessor_const_token1] = ACTIONS(9252), + [aux_sym__property_get_header_token1] = ACTIONS(9252), + [aux_sym_event_declaration_token1] = ACTIONS(9252), + [sym_static_modifier] = ACTIONS(9252), + [sym__dim_keyword] = ACTIONS(9252), + [sym__redim_keyword] = ACTIONS(9252), + [aux_sym_get_accessor_token1] = ACTIONS(9252), + [aux_sym_set_accessor_token1] = ACTIONS(9252), + [aux_sym_const_declaration_token1] = ACTIONS(9252), + [anon_sym_LPAREN] = ACTIONS(9254), + [aux_sym_as_type_clause_token2] = ACTIONS(9252), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9252), + [aux_sym_visibility_token1] = ACTIONS(9252), + [aux_sym_visibility_token2] = ACTIONS(9252), + [aux_sym_elseif_fragment_token1] = ACTIONS(9252), + [aux_sym_else_fragment_token1] = ACTIONS(9252), + [aux_sym_select_statement_token1] = ACTIONS(9252), + [aux_sym__for_header_token1] = ACTIONS(9252), + [aux_sym_do_statement_token1] = ACTIONS(9252), + [aux_sym_do_condition_token1] = ACTIONS(9252), + [aux_sym_with_statement_token1] = ACTIONS(9252), + [aux_sym_exit_statement_token1] = ACTIONS(9252), + [sym_end_statement] = ACTIONS(9254), + [aux_sym_on_goto_statement_token1] = ACTIONS(9252), + [aux_sym_on_goto_statement_token2] = ACTIONS(9252), + [aux_sym_on_error_statement_token2] = ACTIONS(9252), + [sym__ambiguous_redim_statement] = ACTIONS(9254), + [aux_sym_erase_statement_token1] = ACTIONS(9252), + [aux_sym_open_statement_token1] = ACTIONS(9252), + [aux_sym_file_mode_token2] = ACTIONS(9252), + [aux_sym_file_access_token2] = ACTIONS(9252), + [aux_sym_file_lock_token2] = ACTIONS(9252), + [aux_sym_print_statement_token1] = ACTIONS(9252), + [anon_sym_PLUS] = ACTIONS(9254), + [anon_sym_DASH] = ACTIONS(9252), + [anon_sym_QMARK] = ACTIONS(9254), + [aux_sym_close_statement_token1] = ACTIONS(9252), + [aux_sym_put_statement_token1] = ACTIONS(9252), + [aux_sym_unlock_statement_token1] = ACTIONS(9252), + [aux_sym_seek_statement_token1] = ACTIONS(9252), + [sym_reset_statement] = ACTIONS(9252), + [aux_sym_raise_event_statement_token1] = ACTIONS(9252), + [sym_stop_statement] = ACTIONS(9252), + [sym_beep_statement] = ACTIONS(9252), + [aux_sym_unload_statement_token1] = ACTIONS(9252), + [aux_sym_def_type_statement_token1] = ACTIONS(9252), + [aux_sym_def_type_statement_token2] = ACTIONS(9252), + [aux_sym_def_type_statement_token3] = ACTIONS(9252), + [aux_sym_def_type_statement_token4] = ACTIONS(9252), + [aux_sym_def_type_statement_token5] = ACTIONS(9252), + [aux_sym_def_type_statement_token6] = ACTIONS(9252), + [aux_sym_def_type_statement_token7] = ACTIONS(9252), + [aux_sym_def_type_statement_token8] = ACTIONS(9252), + [aux_sym_def_type_statement_token9] = ACTIONS(9252), + [aux_sym_def_type_statement_token10] = ACTIONS(9252), + [aux_sym_def_type_statement_token11] = ACTIONS(9252), + [aux_sym_def_type_statement_token12] = ACTIONS(9252), + [aux_sym_def_type_statement_token13] = ACTIONS(9252), + [aux_sym_def_type_statement_token14] = ACTIONS(9252), + [aux_sym_call_statement_token1] = ACTIONS(9252), + [sym__ambiguous_call_statement] = ACTIONS(9252), + [aux_sym_addressof_expression_token1] = ACTIONS(9252), + [aux_sym_type_of_expression_token1] = ACTIONS(9252), + [aux_sym_unary_expression_token1] = ACTIONS(9252), + [sym_string_literal] = ACTIONS(9254), + [sym_number_literal] = ACTIONS(9254), + [aux_sym_boolean_literal_token1] = ACTIONS(9252), + [aux_sym_boolean_literal_token2] = ACTIONS(9252), + [sym_nothing_literal] = ACTIONS(9252), + [sym_null_literal] = ACTIONS(9252), + [sym_empty_literal] = ACTIONS(9252), + [sym_date_literal] = ACTIONS(9254), + [anon_sym_POUND] = ACTIONS(9252), + }, + [STATE(3947)] = { + [sym_identifier] = ACTIONS(9256), + [sym_newline] = ACTIONS(9258), + [anon_sym_COLON] = ACTIONS(9258), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9256), + [aux_sym_frm_property_statement_token1] = ACTIONS(9256), + [anon_sym_DOT] = ACTIONS(9256), + [anon_sym_BANG] = ACTIONS(9258), + [aux_sym__attribute_identifier_token1] = ACTIONS(9256), + [aux_sym_option_statement_token3] = ACTIONS(9256), + [aux_sym_type_declaration_token1] = ACTIONS(9256), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9256), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9256), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9256), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9256), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9256), + [aux_sym_enum_declaration_token1] = ACTIONS(9256), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9256), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9256), + [aux_sym_declare_function_statement_token1] = ACTIONS(9256), + [aux_sym_preprocessor_const_token1] = ACTIONS(9256), + [aux_sym__property_get_header_token1] = ACTIONS(9256), + [aux_sym_event_declaration_token1] = ACTIONS(9256), + [sym_static_modifier] = ACTIONS(9256), + [sym__dim_keyword] = ACTIONS(9256), + [sym__redim_keyword] = ACTIONS(9256), + [aux_sym_get_accessor_token1] = ACTIONS(9256), + [aux_sym_set_accessor_token1] = ACTIONS(9256), + [aux_sym_const_declaration_token1] = ACTIONS(9256), + [anon_sym_LPAREN] = ACTIONS(9258), + [aux_sym_as_type_clause_token2] = ACTIONS(9256), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9256), + [aux_sym_visibility_token1] = ACTIONS(9256), + [aux_sym_visibility_token2] = ACTIONS(9256), + [aux_sym_elseif_fragment_token1] = ACTIONS(9256), + [aux_sym_else_fragment_token1] = ACTIONS(9256), + [aux_sym_select_statement_token1] = ACTIONS(9256), + [aux_sym__for_header_token1] = ACTIONS(9256), + [aux_sym_do_statement_token1] = ACTIONS(9256), + [aux_sym_do_condition_token1] = ACTIONS(9256), + [aux_sym_with_statement_token1] = ACTIONS(9256), + [aux_sym_exit_statement_token1] = ACTIONS(9256), + [sym_end_statement] = ACTIONS(9258), + [aux_sym_on_goto_statement_token1] = ACTIONS(9256), + [aux_sym_on_goto_statement_token2] = ACTIONS(9256), + [aux_sym_on_error_statement_token2] = ACTIONS(9256), + [sym__ambiguous_redim_statement] = ACTIONS(9258), + [aux_sym_erase_statement_token1] = ACTIONS(9256), + [aux_sym_open_statement_token1] = ACTIONS(9256), + [aux_sym_file_mode_token2] = ACTIONS(9256), + [aux_sym_file_access_token2] = ACTIONS(9256), + [aux_sym_file_lock_token2] = ACTIONS(9256), + [aux_sym_print_statement_token1] = ACTIONS(9256), + [anon_sym_PLUS] = ACTIONS(9258), + [anon_sym_DASH] = ACTIONS(9256), + [anon_sym_QMARK] = ACTIONS(9258), + [aux_sym_close_statement_token1] = ACTIONS(9256), + [aux_sym_put_statement_token1] = ACTIONS(9256), + [aux_sym_unlock_statement_token1] = ACTIONS(9256), + [aux_sym_seek_statement_token1] = ACTIONS(9256), + [sym_reset_statement] = ACTIONS(9256), + [aux_sym_raise_event_statement_token1] = ACTIONS(9256), + [sym_stop_statement] = ACTIONS(9256), + [sym_beep_statement] = ACTIONS(9256), + [aux_sym_unload_statement_token1] = ACTIONS(9256), + [aux_sym_def_type_statement_token1] = ACTIONS(9256), + [aux_sym_def_type_statement_token2] = ACTIONS(9256), + [aux_sym_def_type_statement_token3] = ACTIONS(9256), + [aux_sym_def_type_statement_token4] = ACTIONS(9256), + [aux_sym_def_type_statement_token5] = ACTIONS(9256), + [aux_sym_def_type_statement_token6] = ACTIONS(9256), + [aux_sym_def_type_statement_token7] = ACTIONS(9256), + [aux_sym_def_type_statement_token8] = ACTIONS(9256), + [aux_sym_def_type_statement_token9] = ACTIONS(9256), + [aux_sym_def_type_statement_token10] = ACTIONS(9256), + [aux_sym_def_type_statement_token11] = ACTIONS(9256), + [aux_sym_def_type_statement_token12] = ACTIONS(9256), + [aux_sym_def_type_statement_token13] = ACTIONS(9256), + [aux_sym_def_type_statement_token14] = ACTIONS(9256), + [aux_sym_call_statement_token1] = ACTIONS(9256), + [sym__ambiguous_call_statement] = ACTIONS(9256), + [aux_sym_addressof_expression_token1] = ACTIONS(9256), + [aux_sym_type_of_expression_token1] = ACTIONS(9256), + [aux_sym_unary_expression_token1] = ACTIONS(9256), + [sym_string_literal] = ACTIONS(9258), + [sym_number_literal] = ACTIONS(9258), + [aux_sym_boolean_literal_token1] = ACTIONS(9256), + [aux_sym_boolean_literal_token2] = ACTIONS(9256), + [sym_nothing_literal] = ACTIONS(9256), + [sym_null_literal] = ACTIONS(9256), + [sym_empty_literal] = ACTIONS(9256), + [sym_date_literal] = ACTIONS(9258), + [anon_sym_POUND] = ACTIONS(9256), + }, + [STATE(3948)] = { + [sym_identifier] = ACTIONS(9260), + [sym_newline] = ACTIONS(9262), + [anon_sym_COLON] = ACTIONS(9262), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9260), + [aux_sym_frm_property_statement_token1] = ACTIONS(9260), + [anon_sym_DOT] = ACTIONS(9260), + [anon_sym_BANG] = ACTIONS(9262), + [aux_sym__attribute_identifier_token1] = ACTIONS(9260), + [aux_sym_option_statement_token3] = ACTIONS(9260), + [aux_sym_type_declaration_token1] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9260), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9260), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9260), + [aux_sym_enum_declaration_token1] = ACTIONS(9260), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9260), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9260), + [aux_sym_declare_function_statement_token1] = ACTIONS(9260), + [aux_sym_preprocessor_const_token1] = ACTIONS(9260), + [aux_sym__property_get_header_token1] = ACTIONS(9260), + [aux_sym_event_declaration_token1] = ACTIONS(9260), + [sym_static_modifier] = ACTIONS(9260), + [sym__dim_keyword] = ACTIONS(9260), + [sym__redim_keyword] = ACTIONS(9260), + [aux_sym_get_accessor_token1] = ACTIONS(9260), + [aux_sym_set_accessor_token1] = ACTIONS(9260), + [aux_sym_const_declaration_token1] = ACTIONS(9260), + [anon_sym_LPAREN] = ACTIONS(9262), + [aux_sym_as_type_clause_token2] = ACTIONS(9260), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9260), + [aux_sym_visibility_token1] = ACTIONS(9260), + [aux_sym_visibility_token2] = ACTIONS(9260), + [aux_sym_elseif_fragment_token1] = ACTIONS(9260), + [aux_sym_else_fragment_token1] = ACTIONS(9260), + [aux_sym_select_statement_token1] = ACTIONS(9260), + [aux_sym__for_header_token1] = ACTIONS(9260), + [aux_sym_do_statement_token1] = ACTIONS(9260), + [aux_sym_do_condition_token1] = ACTIONS(9260), + [aux_sym_with_statement_token1] = ACTIONS(9260), + [aux_sym_exit_statement_token1] = ACTIONS(9260), + [sym_end_statement] = ACTIONS(9262), + [aux_sym_on_goto_statement_token1] = ACTIONS(9260), + [aux_sym_on_goto_statement_token2] = ACTIONS(9260), + [aux_sym_on_error_statement_token2] = ACTIONS(9260), + [sym__ambiguous_redim_statement] = ACTIONS(9262), + [aux_sym_erase_statement_token1] = ACTIONS(9260), + [aux_sym_open_statement_token1] = ACTIONS(9260), + [aux_sym_file_mode_token2] = ACTIONS(9260), + [aux_sym_file_access_token2] = ACTIONS(9260), + [aux_sym_file_lock_token2] = ACTIONS(9260), + [aux_sym_print_statement_token1] = ACTIONS(9260), + [anon_sym_PLUS] = ACTIONS(9262), + [anon_sym_DASH] = ACTIONS(9260), + [anon_sym_QMARK] = ACTIONS(9262), + [aux_sym_close_statement_token1] = ACTIONS(9260), + [aux_sym_put_statement_token1] = ACTIONS(9260), + [aux_sym_unlock_statement_token1] = ACTIONS(9260), + [aux_sym_seek_statement_token1] = ACTIONS(9260), + [sym_reset_statement] = ACTIONS(9260), + [aux_sym_raise_event_statement_token1] = ACTIONS(9260), + [sym_stop_statement] = ACTIONS(9260), + [sym_beep_statement] = ACTIONS(9260), + [aux_sym_unload_statement_token1] = ACTIONS(9260), + [aux_sym_def_type_statement_token1] = ACTIONS(9260), + [aux_sym_def_type_statement_token2] = ACTIONS(9260), + [aux_sym_def_type_statement_token3] = ACTIONS(9260), + [aux_sym_def_type_statement_token4] = ACTIONS(9260), + [aux_sym_def_type_statement_token5] = ACTIONS(9260), + [aux_sym_def_type_statement_token6] = ACTIONS(9260), + [aux_sym_def_type_statement_token7] = ACTIONS(9260), + [aux_sym_def_type_statement_token8] = ACTIONS(9260), + [aux_sym_def_type_statement_token9] = ACTIONS(9260), + [aux_sym_def_type_statement_token10] = ACTIONS(9260), + [aux_sym_def_type_statement_token11] = ACTIONS(9260), + [aux_sym_def_type_statement_token12] = ACTIONS(9260), + [aux_sym_def_type_statement_token13] = ACTIONS(9260), + [aux_sym_def_type_statement_token14] = ACTIONS(9260), + [aux_sym_call_statement_token1] = ACTIONS(9260), + [sym__ambiguous_call_statement] = ACTIONS(9260), + [aux_sym_addressof_expression_token1] = ACTIONS(9260), + [aux_sym_type_of_expression_token1] = ACTIONS(9260), + [aux_sym_unary_expression_token1] = ACTIONS(9260), + [sym_string_literal] = ACTIONS(9262), + [sym_number_literal] = ACTIONS(9262), + [aux_sym_boolean_literal_token1] = ACTIONS(9260), + [aux_sym_boolean_literal_token2] = ACTIONS(9260), + [sym_nothing_literal] = ACTIONS(9260), + [sym_null_literal] = ACTIONS(9260), + [sym_empty_literal] = ACTIONS(9260), + [sym_date_literal] = ACTIONS(9262), + [anon_sym_POUND] = ACTIONS(9260), + }, + [STATE(3949)] = { + [sym_identifier] = ACTIONS(9264), + [sym_newline] = ACTIONS(9266), + [anon_sym_COLON] = ACTIONS(9266), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9264), + [aux_sym_frm_property_statement_token1] = ACTIONS(9264), + [anon_sym_DOT] = ACTIONS(9264), + [anon_sym_BANG] = ACTIONS(9266), + [aux_sym__attribute_identifier_token1] = ACTIONS(9264), + [aux_sym_option_statement_token3] = ACTIONS(9264), + [aux_sym_type_declaration_token1] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9264), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9264), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9264), + [aux_sym_enum_declaration_token1] = ACTIONS(9264), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9264), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9264), + [aux_sym_declare_function_statement_token1] = ACTIONS(9264), + [aux_sym_preprocessor_const_token1] = ACTIONS(9264), + [aux_sym__property_get_header_token1] = ACTIONS(9264), + [aux_sym_event_declaration_token1] = ACTIONS(9264), + [sym_static_modifier] = ACTIONS(9264), + [sym__dim_keyword] = ACTIONS(9264), + [sym__redim_keyword] = ACTIONS(9264), + [aux_sym_get_accessor_token1] = ACTIONS(9264), + [aux_sym_set_accessor_token1] = ACTIONS(9264), + [aux_sym_const_declaration_token1] = ACTIONS(9264), + [anon_sym_LPAREN] = ACTIONS(9266), + [aux_sym_as_type_clause_token2] = ACTIONS(9264), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9264), + [aux_sym_visibility_token1] = ACTIONS(9264), + [aux_sym_visibility_token2] = ACTIONS(9264), + [aux_sym_elseif_fragment_token1] = ACTIONS(9264), + [aux_sym_else_fragment_token1] = ACTIONS(9264), + [aux_sym_select_statement_token1] = ACTIONS(9264), + [aux_sym__for_header_token1] = ACTIONS(9264), + [aux_sym_do_statement_token1] = ACTIONS(9264), + [aux_sym_do_condition_token1] = ACTIONS(9264), + [aux_sym_with_statement_token1] = ACTIONS(9264), + [aux_sym_exit_statement_token1] = ACTIONS(9264), + [sym_end_statement] = ACTIONS(9266), + [aux_sym_on_goto_statement_token1] = ACTIONS(9264), + [aux_sym_on_goto_statement_token2] = ACTIONS(9264), + [aux_sym_on_error_statement_token2] = ACTIONS(9264), + [sym__ambiguous_redim_statement] = ACTIONS(9266), + [aux_sym_erase_statement_token1] = ACTIONS(9264), + [aux_sym_open_statement_token1] = ACTIONS(9264), + [aux_sym_file_mode_token2] = ACTIONS(9264), + [aux_sym_file_access_token2] = ACTIONS(9264), + [aux_sym_file_lock_token2] = ACTIONS(9264), + [aux_sym_print_statement_token1] = ACTIONS(9264), + [anon_sym_PLUS] = ACTIONS(9266), + [anon_sym_DASH] = ACTIONS(9264), + [anon_sym_QMARK] = ACTIONS(9266), + [aux_sym_close_statement_token1] = ACTIONS(9264), + [aux_sym_put_statement_token1] = ACTIONS(9264), + [aux_sym_unlock_statement_token1] = ACTIONS(9264), + [aux_sym_seek_statement_token1] = ACTIONS(9264), + [sym_reset_statement] = ACTIONS(9264), + [aux_sym_raise_event_statement_token1] = ACTIONS(9264), + [sym_stop_statement] = ACTIONS(9264), + [sym_beep_statement] = ACTIONS(9264), + [aux_sym_unload_statement_token1] = ACTIONS(9264), + [aux_sym_def_type_statement_token1] = ACTIONS(9264), + [aux_sym_def_type_statement_token2] = ACTIONS(9264), + [aux_sym_def_type_statement_token3] = ACTIONS(9264), + [aux_sym_def_type_statement_token4] = ACTIONS(9264), + [aux_sym_def_type_statement_token5] = ACTIONS(9264), + [aux_sym_def_type_statement_token6] = ACTIONS(9264), + [aux_sym_def_type_statement_token7] = ACTIONS(9264), + [aux_sym_def_type_statement_token8] = ACTIONS(9264), + [aux_sym_def_type_statement_token9] = ACTIONS(9264), + [aux_sym_def_type_statement_token10] = ACTIONS(9264), + [aux_sym_def_type_statement_token11] = ACTIONS(9264), + [aux_sym_def_type_statement_token12] = ACTIONS(9264), + [aux_sym_def_type_statement_token13] = ACTIONS(9264), + [aux_sym_def_type_statement_token14] = ACTIONS(9264), + [aux_sym_call_statement_token1] = ACTIONS(9264), + [sym__ambiguous_call_statement] = ACTIONS(9264), + [aux_sym_addressof_expression_token1] = ACTIONS(9264), + [aux_sym_type_of_expression_token1] = ACTIONS(9264), + [aux_sym_unary_expression_token1] = ACTIONS(9264), + [sym_string_literal] = ACTIONS(9266), + [sym_number_literal] = ACTIONS(9266), + [aux_sym_boolean_literal_token1] = ACTIONS(9264), + [aux_sym_boolean_literal_token2] = ACTIONS(9264), + [sym_nothing_literal] = ACTIONS(9264), + [sym_null_literal] = ACTIONS(9264), + [sym_empty_literal] = ACTIONS(9264), + [sym_date_literal] = ACTIONS(9266), + [anon_sym_POUND] = ACTIONS(9264), + }, + [STATE(3950)] = { + [sym_identifier] = ACTIONS(9268), + [sym_newline] = ACTIONS(9270), + [anon_sym_COLON] = ACTIONS(9270), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9268), + [aux_sym_frm_property_statement_token1] = ACTIONS(9268), + [anon_sym_DOT] = ACTIONS(9268), + [anon_sym_BANG] = ACTIONS(9270), + [aux_sym__attribute_identifier_token1] = ACTIONS(9268), + [aux_sym_option_statement_token3] = ACTIONS(9268), + [aux_sym_type_declaration_token1] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9268), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9268), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9268), + [aux_sym_enum_declaration_token1] = ACTIONS(9268), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9268), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9268), + [aux_sym_declare_function_statement_token1] = ACTIONS(9268), + [aux_sym_preprocessor_const_token1] = ACTIONS(9268), + [aux_sym__property_get_header_token1] = ACTIONS(9268), + [aux_sym_event_declaration_token1] = ACTIONS(9268), + [sym_static_modifier] = ACTIONS(9268), + [sym__dim_keyword] = ACTIONS(9268), + [sym__redim_keyword] = ACTIONS(9268), + [aux_sym_get_accessor_token1] = ACTIONS(9268), + [aux_sym_set_accessor_token1] = ACTIONS(9268), + [aux_sym_const_declaration_token1] = ACTIONS(9268), + [anon_sym_LPAREN] = ACTIONS(9270), + [aux_sym_as_type_clause_token2] = ACTIONS(9268), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9268), + [aux_sym_visibility_token1] = ACTIONS(9268), + [aux_sym_visibility_token2] = ACTIONS(9268), + [aux_sym_elseif_fragment_token1] = ACTIONS(9268), + [aux_sym_else_fragment_token1] = ACTIONS(9268), + [aux_sym_select_statement_token1] = ACTIONS(9268), + [aux_sym__for_header_token1] = ACTIONS(9268), + [aux_sym_do_statement_token1] = ACTIONS(9268), + [aux_sym_do_condition_token1] = ACTIONS(9268), + [aux_sym_with_statement_token1] = ACTIONS(9268), + [aux_sym_exit_statement_token1] = ACTIONS(9268), + [sym_end_statement] = ACTIONS(9270), + [aux_sym_on_goto_statement_token1] = ACTIONS(9268), + [aux_sym_on_goto_statement_token2] = ACTIONS(9268), + [aux_sym_on_error_statement_token2] = ACTIONS(9268), + [sym__ambiguous_redim_statement] = ACTIONS(9270), + [aux_sym_erase_statement_token1] = ACTIONS(9268), + [aux_sym_open_statement_token1] = ACTIONS(9268), + [aux_sym_file_mode_token2] = ACTIONS(9268), + [aux_sym_file_access_token2] = ACTIONS(9268), + [aux_sym_file_lock_token2] = ACTIONS(9268), + [aux_sym_print_statement_token1] = ACTIONS(9268), + [anon_sym_PLUS] = ACTIONS(9270), + [anon_sym_DASH] = ACTIONS(9268), + [anon_sym_QMARK] = ACTIONS(9270), + [aux_sym_close_statement_token1] = ACTIONS(9268), + [aux_sym_put_statement_token1] = ACTIONS(9268), + [aux_sym_unlock_statement_token1] = ACTIONS(9268), + [aux_sym_seek_statement_token1] = ACTIONS(9268), + [sym_reset_statement] = ACTIONS(9268), + [aux_sym_raise_event_statement_token1] = ACTIONS(9268), + [sym_stop_statement] = ACTIONS(9268), + [sym_beep_statement] = ACTIONS(9268), + [aux_sym_unload_statement_token1] = ACTIONS(9268), + [aux_sym_def_type_statement_token1] = ACTIONS(9268), + [aux_sym_def_type_statement_token2] = ACTIONS(9268), + [aux_sym_def_type_statement_token3] = ACTIONS(9268), + [aux_sym_def_type_statement_token4] = ACTIONS(9268), + [aux_sym_def_type_statement_token5] = ACTIONS(9268), + [aux_sym_def_type_statement_token6] = ACTIONS(9268), + [aux_sym_def_type_statement_token7] = ACTIONS(9268), + [aux_sym_def_type_statement_token8] = ACTIONS(9268), + [aux_sym_def_type_statement_token9] = ACTIONS(9268), + [aux_sym_def_type_statement_token10] = ACTIONS(9268), + [aux_sym_def_type_statement_token11] = ACTIONS(9268), + [aux_sym_def_type_statement_token12] = ACTIONS(9268), + [aux_sym_def_type_statement_token13] = ACTIONS(9268), + [aux_sym_def_type_statement_token14] = ACTIONS(9268), + [aux_sym_call_statement_token1] = ACTIONS(9268), + [sym__ambiguous_call_statement] = ACTIONS(9268), + [aux_sym_addressof_expression_token1] = ACTIONS(9268), + [aux_sym_type_of_expression_token1] = ACTIONS(9268), + [aux_sym_unary_expression_token1] = ACTIONS(9268), + [sym_string_literal] = ACTIONS(9270), + [sym_number_literal] = ACTIONS(9270), + [aux_sym_boolean_literal_token1] = ACTIONS(9268), + [aux_sym_boolean_literal_token2] = ACTIONS(9268), + [sym_nothing_literal] = ACTIONS(9268), + [sym_null_literal] = ACTIONS(9268), + [sym_empty_literal] = ACTIONS(9268), + [sym_date_literal] = ACTIONS(9270), + [anon_sym_POUND] = ACTIONS(9268), + }, + [STATE(3951)] = { + [sym_identifier] = ACTIONS(9272), + [sym_newline] = ACTIONS(9274), + [anon_sym_COLON] = ACTIONS(9274), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9272), + [aux_sym_frm_property_statement_token1] = ACTIONS(9272), + [anon_sym_DOT] = ACTIONS(9272), + [anon_sym_BANG] = ACTIONS(9274), + [aux_sym__attribute_identifier_token1] = ACTIONS(9272), + [aux_sym_option_statement_token3] = ACTIONS(9272), + [aux_sym_type_declaration_token1] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9272), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9272), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9272), + [aux_sym_enum_declaration_token1] = ACTIONS(9272), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9272), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9272), + [aux_sym_declare_function_statement_token1] = ACTIONS(9272), + [aux_sym_preprocessor_const_token1] = ACTIONS(9272), + [aux_sym__property_get_header_token1] = ACTIONS(9272), + [aux_sym_event_declaration_token1] = ACTIONS(9272), + [sym_static_modifier] = ACTIONS(9272), + [sym__dim_keyword] = ACTIONS(9272), + [sym__redim_keyword] = ACTIONS(9272), + [aux_sym_get_accessor_token1] = ACTIONS(9272), + [aux_sym_set_accessor_token1] = ACTIONS(9272), + [aux_sym_const_declaration_token1] = ACTIONS(9272), + [anon_sym_LPAREN] = ACTIONS(9274), + [aux_sym_as_type_clause_token2] = ACTIONS(9272), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9272), + [aux_sym_visibility_token1] = ACTIONS(9272), + [aux_sym_visibility_token2] = ACTIONS(9272), + [aux_sym_elseif_fragment_token1] = ACTIONS(9272), + [aux_sym_else_fragment_token1] = ACTIONS(9272), + [aux_sym_select_statement_token1] = ACTIONS(9272), + [aux_sym__for_header_token1] = ACTIONS(9272), + [aux_sym_do_statement_token1] = ACTIONS(9272), + [aux_sym_do_condition_token1] = ACTIONS(9272), + [aux_sym_with_statement_token1] = ACTIONS(9272), + [aux_sym_exit_statement_token1] = ACTIONS(9272), + [sym_end_statement] = ACTIONS(9274), + [aux_sym_on_goto_statement_token1] = ACTIONS(9272), + [aux_sym_on_goto_statement_token2] = ACTIONS(9272), + [aux_sym_on_error_statement_token2] = ACTIONS(9272), + [sym__ambiguous_redim_statement] = ACTIONS(9274), + [aux_sym_erase_statement_token1] = ACTIONS(9272), + [aux_sym_open_statement_token1] = ACTIONS(9272), + [aux_sym_file_mode_token2] = ACTIONS(9272), + [aux_sym_file_access_token2] = ACTIONS(9272), + [aux_sym_file_lock_token2] = ACTIONS(9272), + [aux_sym_print_statement_token1] = ACTIONS(9272), + [anon_sym_PLUS] = ACTIONS(9274), + [anon_sym_DASH] = ACTIONS(9272), + [anon_sym_QMARK] = ACTIONS(9274), + [aux_sym_close_statement_token1] = ACTIONS(9272), + [aux_sym_put_statement_token1] = ACTIONS(9272), + [aux_sym_unlock_statement_token1] = ACTIONS(9272), + [aux_sym_seek_statement_token1] = ACTIONS(9272), + [sym_reset_statement] = ACTIONS(9272), + [aux_sym_raise_event_statement_token1] = ACTIONS(9272), + [sym_stop_statement] = ACTIONS(9272), + [sym_beep_statement] = ACTIONS(9272), + [aux_sym_unload_statement_token1] = ACTIONS(9272), + [aux_sym_def_type_statement_token1] = ACTIONS(9272), + [aux_sym_def_type_statement_token2] = ACTIONS(9272), + [aux_sym_def_type_statement_token3] = ACTIONS(9272), + [aux_sym_def_type_statement_token4] = ACTIONS(9272), + [aux_sym_def_type_statement_token5] = ACTIONS(9272), + [aux_sym_def_type_statement_token6] = ACTIONS(9272), + [aux_sym_def_type_statement_token7] = ACTIONS(9272), + [aux_sym_def_type_statement_token8] = ACTIONS(9272), + [aux_sym_def_type_statement_token9] = ACTIONS(9272), + [aux_sym_def_type_statement_token10] = ACTIONS(9272), + [aux_sym_def_type_statement_token11] = ACTIONS(9272), + [aux_sym_def_type_statement_token12] = ACTIONS(9272), + [aux_sym_def_type_statement_token13] = ACTIONS(9272), + [aux_sym_def_type_statement_token14] = ACTIONS(9272), + [aux_sym_call_statement_token1] = ACTIONS(9272), + [sym__ambiguous_call_statement] = ACTIONS(9272), + [aux_sym_addressof_expression_token1] = ACTIONS(9272), + [aux_sym_type_of_expression_token1] = ACTIONS(9272), + [aux_sym_unary_expression_token1] = ACTIONS(9272), + [sym_string_literal] = ACTIONS(9274), + [sym_number_literal] = ACTIONS(9274), + [aux_sym_boolean_literal_token1] = ACTIONS(9272), + [aux_sym_boolean_literal_token2] = ACTIONS(9272), + [sym_nothing_literal] = ACTIONS(9272), + [sym_null_literal] = ACTIONS(9272), + [sym_empty_literal] = ACTIONS(9272), + [sym_date_literal] = ACTIONS(9274), + [anon_sym_POUND] = ACTIONS(9272), + }, + [STATE(3952)] = { + [sym_identifier] = ACTIONS(9276), + [sym_newline] = ACTIONS(9278), + [anon_sym_COLON] = ACTIONS(9278), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9276), + [aux_sym_frm_property_statement_token1] = ACTIONS(9276), + [anon_sym_DOT] = ACTIONS(9276), + [anon_sym_BANG] = ACTIONS(9278), + [aux_sym__attribute_identifier_token1] = ACTIONS(9276), + [aux_sym_option_statement_token3] = ACTIONS(9276), + [aux_sym_type_declaration_token1] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9276), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9276), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9276), + [aux_sym_enum_declaration_token1] = ACTIONS(9276), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9276), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9276), + [aux_sym_declare_function_statement_token1] = ACTIONS(9276), + [aux_sym_preprocessor_const_token1] = ACTIONS(9276), + [aux_sym__property_get_header_token1] = ACTIONS(9276), + [aux_sym_event_declaration_token1] = ACTIONS(9276), + [sym_static_modifier] = ACTIONS(9276), + [sym__dim_keyword] = ACTIONS(9276), + [sym__redim_keyword] = ACTIONS(9276), + [aux_sym_get_accessor_token1] = ACTIONS(9276), + [aux_sym_set_accessor_token1] = ACTIONS(9276), + [aux_sym_const_declaration_token1] = ACTIONS(9276), + [anon_sym_LPAREN] = ACTIONS(9278), + [aux_sym_as_type_clause_token2] = ACTIONS(9276), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9276), + [aux_sym_visibility_token1] = ACTIONS(9276), + [aux_sym_visibility_token2] = ACTIONS(9276), + [aux_sym_elseif_fragment_token1] = ACTIONS(9276), + [aux_sym_else_fragment_token1] = ACTIONS(9276), + [aux_sym_select_statement_token1] = ACTIONS(9276), + [aux_sym__for_header_token1] = ACTIONS(9276), + [aux_sym_do_statement_token1] = ACTIONS(9276), + [aux_sym_do_condition_token1] = ACTIONS(9276), + [aux_sym_with_statement_token1] = ACTIONS(9276), + [aux_sym_exit_statement_token1] = ACTIONS(9276), + [sym_end_statement] = ACTIONS(9278), + [aux_sym_on_goto_statement_token1] = ACTIONS(9276), + [aux_sym_on_goto_statement_token2] = ACTIONS(9276), + [aux_sym_on_error_statement_token2] = ACTIONS(9276), + [sym__ambiguous_redim_statement] = ACTIONS(9278), + [aux_sym_erase_statement_token1] = ACTIONS(9276), + [aux_sym_open_statement_token1] = ACTIONS(9276), + [aux_sym_file_mode_token2] = ACTIONS(9276), + [aux_sym_file_access_token2] = ACTIONS(9276), + [aux_sym_file_lock_token2] = ACTIONS(9276), + [aux_sym_print_statement_token1] = ACTIONS(9276), + [anon_sym_PLUS] = ACTIONS(9278), + [anon_sym_DASH] = ACTIONS(9276), + [anon_sym_QMARK] = ACTIONS(9278), + [aux_sym_close_statement_token1] = ACTIONS(9276), + [aux_sym_put_statement_token1] = ACTIONS(9276), + [aux_sym_unlock_statement_token1] = ACTIONS(9276), + [aux_sym_seek_statement_token1] = ACTIONS(9276), + [sym_reset_statement] = ACTIONS(9276), + [aux_sym_raise_event_statement_token1] = ACTIONS(9276), + [sym_stop_statement] = ACTIONS(9276), + [sym_beep_statement] = ACTIONS(9276), + [aux_sym_unload_statement_token1] = ACTIONS(9276), + [aux_sym_def_type_statement_token1] = ACTIONS(9276), + [aux_sym_def_type_statement_token2] = ACTIONS(9276), + [aux_sym_def_type_statement_token3] = ACTIONS(9276), + [aux_sym_def_type_statement_token4] = ACTIONS(9276), + [aux_sym_def_type_statement_token5] = ACTIONS(9276), + [aux_sym_def_type_statement_token6] = ACTIONS(9276), + [aux_sym_def_type_statement_token7] = ACTIONS(9276), + [aux_sym_def_type_statement_token8] = ACTIONS(9276), + [aux_sym_def_type_statement_token9] = ACTIONS(9276), + [aux_sym_def_type_statement_token10] = ACTIONS(9276), + [aux_sym_def_type_statement_token11] = ACTIONS(9276), + [aux_sym_def_type_statement_token12] = ACTIONS(9276), + [aux_sym_def_type_statement_token13] = ACTIONS(9276), + [aux_sym_def_type_statement_token14] = ACTIONS(9276), + [aux_sym_call_statement_token1] = ACTIONS(9276), + [sym__ambiguous_call_statement] = ACTIONS(9276), + [aux_sym_addressof_expression_token1] = ACTIONS(9276), + [aux_sym_type_of_expression_token1] = ACTIONS(9276), + [aux_sym_unary_expression_token1] = ACTIONS(9276), + [sym_string_literal] = ACTIONS(9278), + [sym_number_literal] = ACTIONS(9278), + [aux_sym_boolean_literal_token1] = ACTIONS(9276), + [aux_sym_boolean_literal_token2] = ACTIONS(9276), + [sym_nothing_literal] = ACTIONS(9276), + [sym_null_literal] = ACTIONS(9276), + [sym_empty_literal] = ACTIONS(9276), + [sym_date_literal] = ACTIONS(9278), + [anon_sym_POUND] = ACTIONS(9276), + }, + [STATE(3953)] = { + [sym_identifier] = ACTIONS(9280), + [sym_newline] = ACTIONS(9282), + [anon_sym_COLON] = ACTIONS(9282), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9280), + [aux_sym_frm_property_statement_token1] = ACTIONS(9280), + [anon_sym_DOT] = ACTIONS(9280), + [anon_sym_BANG] = ACTIONS(9282), + [aux_sym__attribute_identifier_token1] = ACTIONS(9280), + [aux_sym_option_statement_token3] = ACTIONS(9280), + [aux_sym_type_declaration_token1] = ACTIONS(9280), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9280), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9280), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9280), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9280), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9280), + [aux_sym_enum_declaration_token1] = ACTIONS(9280), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9280), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9280), + [aux_sym_declare_function_statement_token1] = ACTIONS(9280), + [aux_sym_preprocessor_const_token1] = ACTIONS(9280), + [aux_sym__property_get_header_token1] = ACTIONS(9280), + [aux_sym_event_declaration_token1] = ACTIONS(9280), + [sym_static_modifier] = ACTIONS(9280), + [sym__dim_keyword] = ACTIONS(9280), + [sym__redim_keyword] = ACTIONS(9280), + [aux_sym_get_accessor_token1] = ACTIONS(9280), + [aux_sym_set_accessor_token1] = ACTIONS(9280), + [aux_sym_const_declaration_token1] = ACTIONS(9280), + [anon_sym_LPAREN] = ACTIONS(9282), + [aux_sym_as_type_clause_token2] = ACTIONS(9280), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9280), + [aux_sym_visibility_token1] = ACTIONS(9280), + [aux_sym_visibility_token2] = ACTIONS(9280), + [aux_sym_elseif_fragment_token1] = ACTIONS(9280), + [aux_sym_else_fragment_token1] = ACTIONS(9280), + [aux_sym_select_statement_token1] = ACTIONS(9280), + [aux_sym__for_header_token1] = ACTIONS(9280), + [aux_sym_do_statement_token1] = ACTIONS(9280), + [aux_sym_do_condition_token1] = ACTIONS(9280), + [aux_sym_with_statement_token1] = ACTIONS(9280), + [aux_sym_exit_statement_token1] = ACTIONS(9280), + [sym_end_statement] = ACTIONS(9282), + [aux_sym_on_goto_statement_token1] = ACTIONS(9280), + [aux_sym_on_goto_statement_token2] = ACTIONS(9280), + [aux_sym_on_error_statement_token2] = ACTIONS(9280), + [sym__ambiguous_redim_statement] = ACTIONS(9282), + [aux_sym_erase_statement_token1] = ACTIONS(9280), + [aux_sym_open_statement_token1] = ACTIONS(9280), + [aux_sym_file_mode_token2] = ACTIONS(9280), + [aux_sym_file_access_token2] = ACTIONS(9280), + [aux_sym_file_lock_token2] = ACTIONS(9280), + [aux_sym_print_statement_token1] = ACTIONS(9280), + [anon_sym_PLUS] = ACTIONS(9282), + [anon_sym_DASH] = ACTIONS(9280), + [anon_sym_QMARK] = ACTIONS(9282), + [aux_sym_close_statement_token1] = ACTIONS(9280), + [aux_sym_put_statement_token1] = ACTIONS(9280), + [aux_sym_unlock_statement_token1] = ACTIONS(9280), + [aux_sym_seek_statement_token1] = ACTIONS(9280), + [sym_reset_statement] = ACTIONS(9280), + [aux_sym_raise_event_statement_token1] = ACTIONS(9280), + [sym_stop_statement] = ACTIONS(9280), + [sym_beep_statement] = ACTIONS(9280), + [aux_sym_unload_statement_token1] = ACTIONS(9280), + [aux_sym_def_type_statement_token1] = ACTIONS(9280), + [aux_sym_def_type_statement_token2] = ACTIONS(9280), + [aux_sym_def_type_statement_token3] = ACTIONS(9280), + [aux_sym_def_type_statement_token4] = ACTIONS(9280), + [aux_sym_def_type_statement_token5] = ACTIONS(9280), + [aux_sym_def_type_statement_token6] = ACTIONS(9280), + [aux_sym_def_type_statement_token7] = ACTIONS(9280), + [aux_sym_def_type_statement_token8] = ACTIONS(9280), + [aux_sym_def_type_statement_token9] = ACTIONS(9280), + [aux_sym_def_type_statement_token10] = ACTIONS(9280), + [aux_sym_def_type_statement_token11] = ACTIONS(9280), + [aux_sym_def_type_statement_token12] = ACTIONS(9280), + [aux_sym_def_type_statement_token13] = ACTIONS(9280), + [aux_sym_def_type_statement_token14] = ACTIONS(9280), + [aux_sym_call_statement_token1] = ACTIONS(9280), + [sym__ambiguous_call_statement] = ACTIONS(9280), + [aux_sym_addressof_expression_token1] = ACTIONS(9280), + [aux_sym_type_of_expression_token1] = ACTIONS(9280), + [aux_sym_unary_expression_token1] = ACTIONS(9280), + [sym_string_literal] = ACTIONS(9282), + [sym_number_literal] = ACTIONS(9282), + [aux_sym_boolean_literal_token1] = ACTIONS(9280), + [aux_sym_boolean_literal_token2] = ACTIONS(9280), + [sym_nothing_literal] = ACTIONS(9280), + [sym_null_literal] = ACTIONS(9280), + [sym_empty_literal] = ACTIONS(9280), + [sym_date_literal] = ACTIONS(9282), + [anon_sym_POUND] = ACTIONS(9280), + }, + [STATE(3954)] = { + [sym_identifier] = ACTIONS(8951), + [sym_newline] = ACTIONS(8953), + [anon_sym_COLON] = ACTIONS(8955), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8951), + [aux_sym_frm_property_statement_token1] = ACTIONS(8951), + [anon_sym_DOT] = ACTIONS(8951), + [anon_sym_BANG] = ACTIONS(8953), + [aux_sym__attribute_identifier_token1] = ACTIONS(8951), + [aux_sym_option_statement_token3] = ACTIONS(8951), + [aux_sym_type_declaration_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8951), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8951), + [aux_sym_enum_declaration_token1] = ACTIONS(8951), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8951), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8951), + [aux_sym_declare_function_statement_token1] = ACTIONS(8951), + [aux_sym_preprocessor_const_token1] = ACTIONS(8951), + [aux_sym__property_get_header_token1] = ACTIONS(8951), + [aux_sym_event_declaration_token1] = ACTIONS(8951), + [sym_static_modifier] = ACTIONS(8951), + [sym__dim_keyword] = ACTIONS(8951), + [sym__redim_keyword] = ACTIONS(8951), + [aux_sym_get_accessor_token1] = ACTIONS(8951), + [aux_sym_set_accessor_token1] = ACTIONS(8951), + [aux_sym_const_declaration_token1] = ACTIONS(8951), + [anon_sym_LPAREN] = ACTIONS(8953), + [aux_sym_as_type_clause_token2] = ACTIONS(8951), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8951), + [aux_sym_visibility_token1] = ACTIONS(8951), + [aux_sym_visibility_token2] = ACTIONS(8951), + [aux_sym_elseif_fragment_token1] = ACTIONS(8951), + [aux_sym_else_fragment_token1] = ACTIONS(8951), + [aux_sym_select_statement_token1] = ACTIONS(8951), + [aux_sym__for_header_token1] = ACTIONS(8951), + [aux_sym_do_statement_token1] = ACTIONS(8951), + [aux_sym_do_condition_token1] = ACTIONS(8951), + [aux_sym_with_statement_token1] = ACTIONS(8951), + [aux_sym_exit_statement_token1] = ACTIONS(8951), + [sym_end_statement] = ACTIONS(8953), + [aux_sym_on_goto_statement_token1] = ACTIONS(8951), + [aux_sym_on_goto_statement_token2] = ACTIONS(8951), + [aux_sym_on_error_statement_token2] = ACTIONS(8951), + [sym__ambiguous_redim_statement] = ACTIONS(8953), + [aux_sym_erase_statement_token1] = ACTIONS(8951), + [aux_sym_open_statement_token1] = ACTIONS(8951), + [aux_sym_file_mode_token2] = ACTIONS(8951), + [aux_sym_file_access_token2] = ACTIONS(8951), + [aux_sym_file_lock_token2] = ACTIONS(8951), + [aux_sym_print_statement_token1] = ACTIONS(8951), + [anon_sym_PLUS] = ACTIONS(8953), + [anon_sym_DASH] = ACTIONS(8951), + [anon_sym_QMARK] = ACTIONS(8953), + [aux_sym_close_statement_token1] = ACTIONS(8951), + [aux_sym_put_statement_token1] = ACTIONS(8951), + [aux_sym_unlock_statement_token1] = ACTIONS(8951), + [aux_sym_seek_statement_token1] = ACTIONS(8951), + [sym_reset_statement] = ACTIONS(8951), + [aux_sym_raise_event_statement_token1] = ACTIONS(8951), + [sym_stop_statement] = ACTIONS(8951), + [sym_beep_statement] = ACTIONS(8951), + [aux_sym_unload_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token2] = ACTIONS(8951), + [aux_sym_def_type_statement_token3] = ACTIONS(8951), + [aux_sym_def_type_statement_token4] = ACTIONS(8951), + [aux_sym_def_type_statement_token5] = ACTIONS(8951), + [aux_sym_def_type_statement_token6] = ACTIONS(8951), + [aux_sym_def_type_statement_token7] = ACTIONS(8951), + [aux_sym_def_type_statement_token8] = ACTIONS(8951), + [aux_sym_def_type_statement_token9] = ACTIONS(8951), + [aux_sym_def_type_statement_token10] = ACTIONS(8951), + [aux_sym_def_type_statement_token11] = ACTIONS(8951), + [aux_sym_def_type_statement_token12] = ACTIONS(8951), + [aux_sym_def_type_statement_token13] = ACTIONS(8951), + [aux_sym_def_type_statement_token14] = ACTIONS(8951), + [aux_sym_call_statement_token1] = ACTIONS(8951), + [sym__ambiguous_call_statement] = ACTIONS(8951), + [aux_sym_addressof_expression_token1] = ACTIONS(8951), + [aux_sym_type_of_expression_token1] = ACTIONS(8951), + [aux_sym_unary_expression_token1] = ACTIONS(8951), + [sym_string_literal] = ACTIONS(8953), + [sym_number_literal] = ACTIONS(8955), + [aux_sym_boolean_literal_token1] = ACTIONS(8951), + [aux_sym_boolean_literal_token2] = ACTIONS(8951), + [sym_nothing_literal] = ACTIONS(8951), + [sym_null_literal] = ACTIONS(8951), + [sym_empty_literal] = ACTIONS(8951), + [sym_date_literal] = ACTIONS(8953), + [anon_sym_POUND] = ACTIONS(8951), + }, + [STATE(3955)] = { + [sym_identifier] = ACTIONS(8645), + [sym_newline] = ACTIONS(8647), + [anon_sym_COLON] = ACTIONS(8649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8645), + [aux_sym_frm_property_statement_token1] = ACTIONS(8645), + [anon_sym_DOT] = ACTIONS(8645), + [anon_sym_BANG] = ACTIONS(8647), + [aux_sym__attribute_identifier_token1] = ACTIONS(8645), + [aux_sym_option_statement_token3] = ACTIONS(8645), + [aux_sym_type_declaration_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8645), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8645), + [aux_sym_enum_declaration_token1] = ACTIONS(8645), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8645), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8645), + [aux_sym_declare_function_statement_token1] = ACTIONS(8645), + [aux_sym_preprocessor_const_token1] = ACTIONS(8645), + [aux_sym__property_get_header_token1] = ACTIONS(8645), + [aux_sym_event_declaration_token1] = ACTIONS(8645), + [sym_static_modifier] = ACTIONS(8645), + [sym__dim_keyword] = ACTIONS(8645), + [sym__redim_keyword] = ACTIONS(8645), + [aux_sym_get_accessor_token1] = ACTIONS(8645), + [aux_sym_set_accessor_token1] = ACTIONS(8645), + [aux_sym_const_declaration_token1] = ACTIONS(8645), + [anon_sym_LPAREN] = ACTIONS(8647), + [aux_sym_as_type_clause_token2] = ACTIONS(8645), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8645), + [aux_sym_visibility_token1] = ACTIONS(8645), + [aux_sym_visibility_token2] = ACTIONS(8645), + [aux_sym_elseif_fragment_token1] = ACTIONS(8645), + [aux_sym_else_fragment_token1] = ACTIONS(8645), + [aux_sym_select_statement_token1] = ACTIONS(8645), + [aux_sym__for_header_token1] = ACTIONS(8645), + [aux_sym_do_statement_token1] = ACTIONS(8645), + [aux_sym_do_condition_token1] = ACTIONS(8645), + [aux_sym_with_statement_token1] = ACTIONS(8645), + [aux_sym_exit_statement_token1] = ACTIONS(8645), + [sym_end_statement] = ACTIONS(8647), + [aux_sym_on_goto_statement_token1] = ACTIONS(8645), + [aux_sym_on_goto_statement_token2] = ACTIONS(8645), + [aux_sym_on_error_statement_token2] = ACTIONS(8645), + [sym__ambiguous_redim_statement] = ACTIONS(8647), + [aux_sym_erase_statement_token1] = ACTIONS(8645), + [aux_sym_open_statement_token1] = ACTIONS(8645), + [aux_sym_file_mode_token2] = ACTIONS(8645), + [aux_sym_file_access_token2] = ACTIONS(8645), + [aux_sym_file_lock_token2] = ACTIONS(8645), + [aux_sym_print_statement_token1] = ACTIONS(8645), + [anon_sym_PLUS] = ACTIONS(8647), + [anon_sym_DASH] = ACTIONS(8645), + [anon_sym_QMARK] = ACTIONS(8647), + [aux_sym_close_statement_token1] = ACTIONS(8645), + [aux_sym_put_statement_token1] = ACTIONS(8645), + [aux_sym_unlock_statement_token1] = ACTIONS(8645), + [aux_sym_seek_statement_token1] = ACTIONS(8645), + [sym_reset_statement] = ACTIONS(8645), + [aux_sym_raise_event_statement_token1] = ACTIONS(8645), + [sym_stop_statement] = ACTIONS(8645), + [sym_beep_statement] = ACTIONS(8645), + [aux_sym_unload_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token2] = ACTIONS(8645), + [aux_sym_def_type_statement_token3] = ACTIONS(8645), + [aux_sym_def_type_statement_token4] = ACTIONS(8645), + [aux_sym_def_type_statement_token5] = ACTIONS(8645), + [aux_sym_def_type_statement_token6] = ACTIONS(8645), + [aux_sym_def_type_statement_token7] = ACTIONS(8645), + [aux_sym_def_type_statement_token8] = ACTIONS(8645), + [aux_sym_def_type_statement_token9] = ACTIONS(8645), + [aux_sym_def_type_statement_token10] = ACTIONS(8645), + [aux_sym_def_type_statement_token11] = ACTIONS(8645), + [aux_sym_def_type_statement_token12] = ACTIONS(8645), + [aux_sym_def_type_statement_token13] = ACTIONS(8645), + [aux_sym_def_type_statement_token14] = ACTIONS(8645), + [aux_sym_call_statement_token1] = ACTIONS(8645), + [sym__ambiguous_call_statement] = ACTIONS(8645), + [aux_sym_addressof_expression_token1] = ACTIONS(8645), + [aux_sym_type_of_expression_token1] = ACTIONS(8645), + [aux_sym_unary_expression_token1] = ACTIONS(8645), + [sym_string_literal] = ACTIONS(8647), + [sym_number_literal] = ACTIONS(8649), + [aux_sym_boolean_literal_token1] = ACTIONS(8645), + [aux_sym_boolean_literal_token2] = ACTIONS(8645), + [sym_nothing_literal] = ACTIONS(8645), + [sym_null_literal] = ACTIONS(8645), + [sym_empty_literal] = ACTIONS(8645), + [sym_date_literal] = ACTIONS(8647), + [anon_sym_POUND] = ACTIONS(8645), + }, + [STATE(3956)] = { + [sym_identifier] = ACTIONS(8749), + [sym_newline] = ACTIONS(8751), + [anon_sym_COLON] = ACTIONS(8753), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8749), + [aux_sym_frm_property_statement_token1] = ACTIONS(8749), + [anon_sym_DOT] = ACTIONS(8749), + [anon_sym_BANG] = ACTIONS(8751), + [aux_sym__attribute_identifier_token1] = ACTIONS(8749), + [aux_sym_option_statement_token3] = ACTIONS(8749), + [aux_sym_type_declaration_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8749), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8749), + [aux_sym_enum_declaration_token1] = ACTIONS(8749), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8749), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8749), + [aux_sym_declare_function_statement_token1] = ACTIONS(8749), + [aux_sym_preprocessor_const_token1] = ACTIONS(8749), + [aux_sym__property_get_header_token1] = ACTIONS(8749), + [aux_sym_event_declaration_token1] = ACTIONS(8749), + [sym_static_modifier] = ACTIONS(8749), + [sym__dim_keyword] = ACTIONS(8749), + [sym__redim_keyword] = ACTIONS(8749), + [aux_sym_get_accessor_token1] = ACTIONS(8749), + [aux_sym_set_accessor_token1] = ACTIONS(8749), + [aux_sym_const_declaration_token1] = ACTIONS(8749), + [anon_sym_LPAREN] = ACTIONS(8751), + [aux_sym_as_type_clause_token2] = ACTIONS(8749), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8749), + [aux_sym_visibility_token1] = ACTIONS(8749), + [aux_sym_visibility_token2] = ACTIONS(8749), + [aux_sym_elseif_fragment_token1] = ACTIONS(8749), + [aux_sym_else_fragment_token1] = ACTIONS(8749), + [aux_sym_select_statement_token1] = ACTIONS(8749), + [aux_sym__for_header_token1] = ACTIONS(8749), + [aux_sym_do_statement_token1] = ACTIONS(8749), + [aux_sym_do_condition_token1] = ACTIONS(8749), + [aux_sym_with_statement_token1] = ACTIONS(8749), + [aux_sym_exit_statement_token1] = ACTIONS(8749), + [sym_end_statement] = ACTIONS(8751), + [aux_sym_on_goto_statement_token1] = ACTIONS(8749), + [aux_sym_on_goto_statement_token2] = ACTIONS(8749), + [aux_sym_on_error_statement_token2] = ACTIONS(8749), + [sym__ambiguous_redim_statement] = ACTIONS(8751), + [aux_sym_erase_statement_token1] = ACTIONS(8749), + [aux_sym_open_statement_token1] = ACTIONS(8749), + [aux_sym_file_mode_token2] = ACTIONS(8749), + [aux_sym_file_access_token2] = ACTIONS(8749), + [aux_sym_file_lock_token2] = ACTIONS(8749), + [aux_sym_print_statement_token1] = ACTIONS(8749), + [anon_sym_PLUS] = ACTIONS(8751), + [anon_sym_DASH] = ACTIONS(8749), + [anon_sym_QMARK] = ACTIONS(8751), + [aux_sym_close_statement_token1] = ACTIONS(8749), + [aux_sym_put_statement_token1] = ACTIONS(8749), + [aux_sym_unlock_statement_token1] = ACTIONS(8749), + [aux_sym_seek_statement_token1] = ACTIONS(8749), + [sym_reset_statement] = ACTIONS(8749), + [aux_sym_raise_event_statement_token1] = ACTIONS(8749), + [sym_stop_statement] = ACTIONS(8749), + [sym_beep_statement] = ACTIONS(8749), + [aux_sym_unload_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token2] = ACTIONS(8749), + [aux_sym_def_type_statement_token3] = ACTIONS(8749), + [aux_sym_def_type_statement_token4] = ACTIONS(8749), + [aux_sym_def_type_statement_token5] = ACTIONS(8749), + [aux_sym_def_type_statement_token6] = ACTIONS(8749), + [aux_sym_def_type_statement_token7] = ACTIONS(8749), + [aux_sym_def_type_statement_token8] = ACTIONS(8749), + [aux_sym_def_type_statement_token9] = ACTIONS(8749), + [aux_sym_def_type_statement_token10] = ACTIONS(8749), + [aux_sym_def_type_statement_token11] = ACTIONS(8749), + [aux_sym_def_type_statement_token12] = ACTIONS(8749), + [aux_sym_def_type_statement_token13] = ACTIONS(8749), + [aux_sym_def_type_statement_token14] = ACTIONS(8749), + [aux_sym_call_statement_token1] = ACTIONS(8749), + [sym__ambiguous_call_statement] = ACTIONS(8749), + [aux_sym_addressof_expression_token1] = ACTIONS(8749), + [aux_sym_type_of_expression_token1] = ACTIONS(8749), + [aux_sym_unary_expression_token1] = ACTIONS(8749), + [sym_string_literal] = ACTIONS(8751), + [sym_number_literal] = ACTIONS(8753), + [aux_sym_boolean_literal_token1] = ACTIONS(8749), + [aux_sym_boolean_literal_token2] = ACTIONS(8749), + [sym_nothing_literal] = ACTIONS(8749), + [sym_null_literal] = ACTIONS(8749), + [sym_empty_literal] = ACTIONS(8749), + [sym_date_literal] = ACTIONS(8751), + [anon_sym_POUND] = ACTIONS(8749), + }, + [STATE(3957)] = { + [sym_identifier] = ACTIONS(9284), + [sym_newline] = ACTIONS(9286), + [anon_sym_COLON] = ACTIONS(9286), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9284), + [aux_sym_frm_property_statement_token1] = ACTIONS(9284), + [anon_sym_DOT] = ACTIONS(9284), + [anon_sym_BANG] = ACTIONS(9286), + [aux_sym__attribute_identifier_token1] = ACTIONS(9284), + [aux_sym_option_statement_token3] = ACTIONS(9284), + [aux_sym_type_declaration_token1] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9284), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9284), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9284), + [aux_sym_enum_declaration_token1] = ACTIONS(9284), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9284), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9284), + [aux_sym_declare_function_statement_token1] = ACTIONS(9284), + [aux_sym_preprocessor_const_token1] = ACTIONS(9284), + [aux_sym__property_get_header_token1] = ACTIONS(9284), + [aux_sym_event_declaration_token1] = ACTIONS(9284), + [sym_static_modifier] = ACTIONS(9284), + [sym__dim_keyword] = ACTIONS(9284), + [sym__redim_keyword] = ACTIONS(9284), + [aux_sym_get_accessor_token1] = ACTIONS(9284), + [aux_sym_set_accessor_token1] = ACTIONS(9284), + [aux_sym_const_declaration_token1] = ACTIONS(9284), + [anon_sym_LPAREN] = ACTIONS(9286), + [aux_sym_as_type_clause_token2] = ACTIONS(9284), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9284), + [aux_sym_visibility_token1] = ACTIONS(9284), + [aux_sym_visibility_token2] = ACTIONS(9284), + [aux_sym_elseif_fragment_token1] = ACTIONS(9284), + [aux_sym_else_fragment_token1] = ACTIONS(9284), + [aux_sym_select_statement_token1] = ACTIONS(9284), + [aux_sym__for_header_token1] = ACTIONS(9284), + [aux_sym_do_statement_token1] = ACTIONS(9284), + [aux_sym_do_condition_token1] = ACTIONS(9284), + [aux_sym_with_statement_token1] = ACTIONS(9284), + [aux_sym_exit_statement_token1] = ACTIONS(9284), + [sym_end_statement] = ACTIONS(9286), + [aux_sym_on_goto_statement_token1] = ACTIONS(9284), + [aux_sym_on_goto_statement_token2] = ACTIONS(9284), + [aux_sym_on_error_statement_token2] = ACTIONS(9284), + [sym__ambiguous_redim_statement] = ACTIONS(9286), + [aux_sym_erase_statement_token1] = ACTIONS(9284), + [aux_sym_open_statement_token1] = ACTIONS(9284), + [aux_sym_file_mode_token2] = ACTIONS(9284), + [aux_sym_file_access_token2] = ACTIONS(9284), + [aux_sym_file_lock_token2] = ACTIONS(9284), + [aux_sym_print_statement_token1] = ACTIONS(9284), + [anon_sym_PLUS] = ACTIONS(9286), + [anon_sym_DASH] = ACTIONS(9284), + [anon_sym_QMARK] = ACTIONS(9286), + [aux_sym_close_statement_token1] = ACTIONS(9284), + [aux_sym_put_statement_token1] = ACTIONS(9284), + [aux_sym_unlock_statement_token1] = ACTIONS(9284), + [aux_sym_seek_statement_token1] = ACTIONS(9284), + [sym_reset_statement] = ACTIONS(9284), + [aux_sym_raise_event_statement_token1] = ACTIONS(9284), + [sym_stop_statement] = ACTIONS(9284), + [sym_beep_statement] = ACTIONS(9284), + [aux_sym_unload_statement_token1] = ACTIONS(9284), + [aux_sym_def_type_statement_token1] = ACTIONS(9284), + [aux_sym_def_type_statement_token2] = ACTIONS(9284), + [aux_sym_def_type_statement_token3] = ACTIONS(9284), + [aux_sym_def_type_statement_token4] = ACTIONS(9284), + [aux_sym_def_type_statement_token5] = ACTIONS(9284), + [aux_sym_def_type_statement_token6] = ACTIONS(9284), + [aux_sym_def_type_statement_token7] = ACTIONS(9284), + [aux_sym_def_type_statement_token8] = ACTIONS(9284), + [aux_sym_def_type_statement_token9] = ACTIONS(9284), + [aux_sym_def_type_statement_token10] = ACTIONS(9284), + [aux_sym_def_type_statement_token11] = ACTIONS(9284), + [aux_sym_def_type_statement_token12] = ACTIONS(9284), + [aux_sym_def_type_statement_token13] = ACTIONS(9284), + [aux_sym_def_type_statement_token14] = ACTIONS(9284), + [aux_sym_call_statement_token1] = ACTIONS(9284), + [sym__ambiguous_call_statement] = ACTIONS(9284), + [aux_sym_addressof_expression_token1] = ACTIONS(9284), + [aux_sym_type_of_expression_token1] = ACTIONS(9284), + [aux_sym_unary_expression_token1] = ACTIONS(9284), + [sym_string_literal] = ACTIONS(9286), + [sym_number_literal] = ACTIONS(9286), + [aux_sym_boolean_literal_token1] = ACTIONS(9284), + [aux_sym_boolean_literal_token2] = ACTIONS(9284), + [sym_nothing_literal] = ACTIONS(9284), + [sym_null_literal] = ACTIONS(9284), + [sym_empty_literal] = ACTIONS(9284), + [sym_date_literal] = ACTIONS(9286), + [anon_sym_POUND] = ACTIONS(9284), + }, + [STATE(3958)] = { + [sym_identifier] = ACTIONS(9288), + [sym_newline] = ACTIONS(9290), + [anon_sym_COLON] = ACTIONS(9290), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9288), + [aux_sym_frm_property_statement_token1] = ACTIONS(9288), + [anon_sym_DOT] = ACTIONS(9288), + [anon_sym_BANG] = ACTIONS(9290), + [aux_sym__attribute_identifier_token1] = ACTIONS(9288), + [aux_sym_option_statement_token3] = ACTIONS(9288), + [aux_sym_type_declaration_token1] = ACTIONS(9288), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9288), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9288), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9288), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9288), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9288), + [aux_sym_enum_declaration_token1] = ACTIONS(9288), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9288), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9288), + [aux_sym_declare_function_statement_token1] = ACTIONS(9288), + [aux_sym_preprocessor_const_token1] = ACTIONS(9288), + [aux_sym__property_get_header_token1] = ACTIONS(9288), + [aux_sym_event_declaration_token1] = ACTIONS(9288), + [sym_static_modifier] = ACTIONS(9288), + [sym__dim_keyword] = ACTIONS(9288), + [sym__redim_keyword] = ACTIONS(9288), + [aux_sym_get_accessor_token1] = ACTIONS(9288), + [aux_sym_set_accessor_token1] = ACTIONS(9288), + [aux_sym_const_declaration_token1] = ACTIONS(9288), + [anon_sym_LPAREN] = ACTIONS(9290), + [aux_sym_as_type_clause_token2] = ACTIONS(9288), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9288), + [aux_sym_visibility_token1] = ACTIONS(9288), + [aux_sym_visibility_token2] = ACTIONS(9288), + [aux_sym_elseif_fragment_token1] = ACTIONS(9288), + [aux_sym_else_fragment_token1] = ACTIONS(9288), + [aux_sym_select_statement_token1] = ACTIONS(9288), + [aux_sym__for_header_token1] = ACTIONS(9288), + [aux_sym_do_statement_token1] = ACTIONS(9288), + [aux_sym_do_condition_token1] = ACTIONS(9288), + [aux_sym_with_statement_token1] = ACTIONS(9288), + [aux_sym_exit_statement_token1] = ACTIONS(9288), + [sym_end_statement] = ACTIONS(9290), + [aux_sym_on_goto_statement_token1] = ACTIONS(9288), + [aux_sym_on_goto_statement_token2] = ACTIONS(9288), + [aux_sym_on_error_statement_token2] = ACTIONS(9288), + [sym__ambiguous_redim_statement] = ACTIONS(9290), + [aux_sym_erase_statement_token1] = ACTIONS(9288), + [aux_sym_open_statement_token1] = ACTIONS(9288), + [aux_sym_file_mode_token2] = ACTIONS(9288), + [aux_sym_file_access_token2] = ACTIONS(9288), + [aux_sym_file_lock_token2] = ACTIONS(9288), + [aux_sym_print_statement_token1] = ACTIONS(9288), + [anon_sym_PLUS] = ACTIONS(9290), + [anon_sym_DASH] = ACTIONS(9288), + [anon_sym_QMARK] = ACTIONS(9290), + [aux_sym_close_statement_token1] = ACTIONS(9288), + [aux_sym_put_statement_token1] = ACTIONS(9288), + [aux_sym_unlock_statement_token1] = ACTIONS(9288), + [aux_sym_seek_statement_token1] = ACTIONS(9288), + [sym_reset_statement] = ACTIONS(9288), + [aux_sym_raise_event_statement_token1] = ACTIONS(9288), + [sym_stop_statement] = ACTIONS(9288), + [sym_beep_statement] = ACTIONS(9288), + [aux_sym_unload_statement_token1] = ACTIONS(9288), + [aux_sym_def_type_statement_token1] = ACTIONS(9288), + [aux_sym_def_type_statement_token2] = ACTIONS(9288), + [aux_sym_def_type_statement_token3] = ACTIONS(9288), + [aux_sym_def_type_statement_token4] = ACTIONS(9288), + [aux_sym_def_type_statement_token5] = ACTIONS(9288), + [aux_sym_def_type_statement_token6] = ACTIONS(9288), + [aux_sym_def_type_statement_token7] = ACTIONS(9288), + [aux_sym_def_type_statement_token8] = ACTIONS(9288), + [aux_sym_def_type_statement_token9] = ACTIONS(9288), + [aux_sym_def_type_statement_token10] = ACTIONS(9288), + [aux_sym_def_type_statement_token11] = ACTIONS(9288), + [aux_sym_def_type_statement_token12] = ACTIONS(9288), + [aux_sym_def_type_statement_token13] = ACTIONS(9288), + [aux_sym_def_type_statement_token14] = ACTIONS(9288), + [aux_sym_call_statement_token1] = ACTIONS(9288), + [sym__ambiguous_call_statement] = ACTIONS(9288), + [aux_sym_addressof_expression_token1] = ACTIONS(9288), + [aux_sym_type_of_expression_token1] = ACTIONS(9288), + [aux_sym_unary_expression_token1] = ACTIONS(9288), + [sym_string_literal] = ACTIONS(9290), + [sym_number_literal] = ACTIONS(9290), + [aux_sym_boolean_literal_token1] = ACTIONS(9288), + [aux_sym_boolean_literal_token2] = ACTIONS(9288), + [sym_nothing_literal] = ACTIONS(9288), + [sym_null_literal] = ACTIONS(9288), + [sym_empty_literal] = ACTIONS(9288), + [sym_date_literal] = ACTIONS(9290), + [anon_sym_POUND] = ACTIONS(9288), + }, + [STATE(3959)] = { + [sym_identifier] = ACTIONS(9292), + [sym_newline] = ACTIONS(9294), + [anon_sym_COLON] = ACTIONS(9294), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9292), + [aux_sym_frm_property_statement_token1] = ACTIONS(9292), + [anon_sym_DOT] = ACTIONS(9292), + [anon_sym_BANG] = ACTIONS(9294), + [aux_sym__attribute_identifier_token1] = ACTIONS(9292), + [aux_sym_option_statement_token3] = ACTIONS(9292), + [aux_sym_type_declaration_token1] = ACTIONS(9292), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9292), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9292), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9292), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9292), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9292), + [aux_sym_enum_declaration_token1] = ACTIONS(9292), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9292), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9292), + [aux_sym_declare_function_statement_token1] = ACTIONS(9292), + [aux_sym_preprocessor_const_token1] = ACTIONS(9292), + [aux_sym__property_get_header_token1] = ACTIONS(9292), + [aux_sym_event_declaration_token1] = ACTIONS(9292), + [sym_static_modifier] = ACTIONS(9292), + [sym__dim_keyword] = ACTIONS(9292), + [sym__redim_keyword] = ACTIONS(9292), + [aux_sym_get_accessor_token1] = ACTIONS(9292), + [aux_sym_set_accessor_token1] = ACTIONS(9292), + [aux_sym_const_declaration_token1] = ACTIONS(9292), + [anon_sym_LPAREN] = ACTIONS(9294), + [aux_sym_as_type_clause_token2] = ACTIONS(9292), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9292), + [aux_sym_visibility_token1] = ACTIONS(9292), + [aux_sym_visibility_token2] = ACTIONS(9292), + [aux_sym_elseif_fragment_token1] = ACTIONS(9292), + [aux_sym_else_fragment_token1] = ACTIONS(9292), + [aux_sym_select_statement_token1] = ACTIONS(9292), + [aux_sym__for_header_token1] = ACTIONS(9292), + [aux_sym_do_statement_token1] = ACTIONS(9292), + [aux_sym_do_condition_token1] = ACTIONS(9292), + [aux_sym_with_statement_token1] = ACTIONS(9292), + [aux_sym_exit_statement_token1] = ACTIONS(9292), + [sym_end_statement] = ACTIONS(9294), + [aux_sym_on_goto_statement_token1] = ACTIONS(9292), + [aux_sym_on_goto_statement_token2] = ACTIONS(9292), + [aux_sym_on_error_statement_token2] = ACTIONS(9292), + [sym__ambiguous_redim_statement] = ACTIONS(9294), + [aux_sym_erase_statement_token1] = ACTIONS(9292), + [aux_sym_open_statement_token1] = ACTIONS(9292), + [aux_sym_file_mode_token2] = ACTIONS(9292), + [aux_sym_file_access_token2] = ACTIONS(9292), + [aux_sym_file_lock_token2] = ACTIONS(9292), + [aux_sym_print_statement_token1] = ACTIONS(9292), + [anon_sym_PLUS] = ACTIONS(9294), + [anon_sym_DASH] = ACTIONS(9292), + [anon_sym_QMARK] = ACTIONS(9294), + [aux_sym_close_statement_token1] = ACTIONS(9292), + [aux_sym_put_statement_token1] = ACTIONS(9292), + [aux_sym_unlock_statement_token1] = ACTIONS(9292), + [aux_sym_seek_statement_token1] = ACTIONS(9292), + [sym_reset_statement] = ACTIONS(9292), + [aux_sym_raise_event_statement_token1] = ACTIONS(9292), + [sym_stop_statement] = ACTIONS(9292), + [sym_beep_statement] = ACTIONS(9292), + [aux_sym_unload_statement_token1] = ACTIONS(9292), + [aux_sym_def_type_statement_token1] = ACTIONS(9292), + [aux_sym_def_type_statement_token2] = ACTIONS(9292), + [aux_sym_def_type_statement_token3] = ACTIONS(9292), + [aux_sym_def_type_statement_token4] = ACTIONS(9292), + [aux_sym_def_type_statement_token5] = ACTIONS(9292), + [aux_sym_def_type_statement_token6] = ACTIONS(9292), + [aux_sym_def_type_statement_token7] = ACTIONS(9292), + [aux_sym_def_type_statement_token8] = ACTIONS(9292), + [aux_sym_def_type_statement_token9] = ACTIONS(9292), + [aux_sym_def_type_statement_token10] = ACTIONS(9292), + [aux_sym_def_type_statement_token11] = ACTIONS(9292), + [aux_sym_def_type_statement_token12] = ACTIONS(9292), + [aux_sym_def_type_statement_token13] = ACTIONS(9292), + [aux_sym_def_type_statement_token14] = ACTIONS(9292), + [aux_sym_call_statement_token1] = ACTIONS(9292), + [sym__ambiguous_call_statement] = ACTIONS(9292), + [aux_sym_addressof_expression_token1] = ACTIONS(9292), + [aux_sym_type_of_expression_token1] = ACTIONS(9292), + [aux_sym_unary_expression_token1] = ACTIONS(9292), + [sym_string_literal] = ACTIONS(9294), + [sym_number_literal] = ACTIONS(9294), + [aux_sym_boolean_literal_token1] = ACTIONS(9292), + [aux_sym_boolean_literal_token2] = ACTIONS(9292), + [sym_nothing_literal] = ACTIONS(9292), + [sym_null_literal] = ACTIONS(9292), + [sym_empty_literal] = ACTIONS(9292), + [sym_date_literal] = ACTIONS(9294), + [anon_sym_POUND] = ACTIONS(9292), + }, + [STATE(3960)] = { + [sym_identifier] = ACTIONS(9296), + [sym_newline] = ACTIONS(9298), + [anon_sym_COLON] = ACTIONS(9298), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9296), + [aux_sym_frm_property_statement_token1] = ACTIONS(9296), + [anon_sym_DOT] = ACTIONS(9296), + [anon_sym_BANG] = ACTIONS(9298), + [aux_sym__attribute_identifier_token1] = ACTIONS(9296), + [aux_sym_option_statement_token3] = ACTIONS(9296), + [aux_sym_type_declaration_token1] = ACTIONS(9296), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9296), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9296), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9296), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9296), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9296), + [aux_sym_enum_declaration_token1] = ACTIONS(9296), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9296), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9296), + [aux_sym_declare_function_statement_token1] = ACTIONS(9296), + [aux_sym_preprocessor_const_token1] = ACTIONS(9296), + [aux_sym__property_get_header_token1] = ACTIONS(9296), + [aux_sym_event_declaration_token1] = ACTIONS(9296), + [sym_static_modifier] = ACTIONS(9296), + [sym__dim_keyword] = ACTIONS(9296), + [sym__redim_keyword] = ACTIONS(9296), + [aux_sym_get_accessor_token1] = ACTIONS(9296), + [aux_sym_set_accessor_token1] = ACTIONS(9296), + [aux_sym_const_declaration_token1] = ACTIONS(9296), + [anon_sym_LPAREN] = ACTIONS(9298), + [aux_sym_as_type_clause_token2] = ACTIONS(9296), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9296), + [aux_sym_visibility_token1] = ACTIONS(9296), + [aux_sym_visibility_token2] = ACTIONS(9296), + [aux_sym_elseif_fragment_token1] = ACTIONS(9296), + [aux_sym_else_fragment_token1] = ACTIONS(9296), + [aux_sym_select_statement_token1] = ACTIONS(9296), + [aux_sym__for_header_token1] = ACTIONS(9296), + [aux_sym_do_statement_token1] = ACTIONS(9296), + [aux_sym_do_condition_token1] = ACTIONS(9296), + [aux_sym_with_statement_token1] = ACTIONS(9296), + [aux_sym_exit_statement_token1] = ACTIONS(9296), + [sym_end_statement] = ACTIONS(9298), + [aux_sym_on_goto_statement_token1] = ACTIONS(9296), + [aux_sym_on_goto_statement_token2] = ACTIONS(9296), + [aux_sym_on_error_statement_token2] = ACTIONS(9296), + [sym__ambiguous_redim_statement] = ACTIONS(9298), + [aux_sym_erase_statement_token1] = ACTIONS(9296), + [aux_sym_open_statement_token1] = ACTIONS(9296), + [aux_sym_file_mode_token2] = ACTIONS(9296), + [aux_sym_file_access_token2] = ACTIONS(9296), + [aux_sym_file_lock_token2] = ACTIONS(9296), + [aux_sym_print_statement_token1] = ACTIONS(9296), + [anon_sym_PLUS] = ACTIONS(9298), + [anon_sym_DASH] = ACTIONS(9296), + [anon_sym_QMARK] = ACTIONS(9298), + [aux_sym_close_statement_token1] = ACTIONS(9296), + [aux_sym_put_statement_token1] = ACTIONS(9296), + [aux_sym_unlock_statement_token1] = ACTIONS(9296), + [aux_sym_seek_statement_token1] = ACTIONS(9296), + [sym_reset_statement] = ACTIONS(9296), + [aux_sym_raise_event_statement_token1] = ACTIONS(9296), + [sym_stop_statement] = ACTIONS(9296), + [sym_beep_statement] = ACTIONS(9296), + [aux_sym_unload_statement_token1] = ACTIONS(9296), + [aux_sym_def_type_statement_token1] = ACTIONS(9296), + [aux_sym_def_type_statement_token2] = ACTIONS(9296), + [aux_sym_def_type_statement_token3] = ACTIONS(9296), + [aux_sym_def_type_statement_token4] = ACTIONS(9296), + [aux_sym_def_type_statement_token5] = ACTIONS(9296), + [aux_sym_def_type_statement_token6] = ACTIONS(9296), + [aux_sym_def_type_statement_token7] = ACTIONS(9296), + [aux_sym_def_type_statement_token8] = ACTIONS(9296), + [aux_sym_def_type_statement_token9] = ACTIONS(9296), + [aux_sym_def_type_statement_token10] = ACTIONS(9296), + [aux_sym_def_type_statement_token11] = ACTIONS(9296), + [aux_sym_def_type_statement_token12] = ACTIONS(9296), + [aux_sym_def_type_statement_token13] = ACTIONS(9296), + [aux_sym_def_type_statement_token14] = ACTIONS(9296), + [aux_sym_call_statement_token1] = ACTIONS(9296), + [sym__ambiguous_call_statement] = ACTIONS(9296), + [aux_sym_addressof_expression_token1] = ACTIONS(9296), + [aux_sym_type_of_expression_token1] = ACTIONS(9296), + [aux_sym_unary_expression_token1] = ACTIONS(9296), + [sym_string_literal] = ACTIONS(9298), + [sym_number_literal] = ACTIONS(9298), + [aux_sym_boolean_literal_token1] = ACTIONS(9296), + [aux_sym_boolean_literal_token2] = ACTIONS(9296), + [sym_nothing_literal] = ACTIONS(9296), + [sym_null_literal] = ACTIONS(9296), + [sym_empty_literal] = ACTIONS(9296), + [sym_date_literal] = ACTIONS(9298), + [anon_sym_POUND] = ACTIONS(9296), + }, + [STATE(3961)] = { + [sym_identifier] = ACTIONS(9300), + [sym_newline] = ACTIONS(9302), + [anon_sym_COLON] = ACTIONS(9302), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9300), + [aux_sym_frm_property_statement_token1] = ACTIONS(9300), + [anon_sym_DOT] = ACTIONS(9300), + [anon_sym_BANG] = ACTIONS(9302), + [aux_sym__attribute_identifier_token1] = ACTIONS(9300), + [aux_sym_option_statement_token3] = ACTIONS(9300), + [aux_sym_type_declaration_token1] = ACTIONS(9300), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9300), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9300), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9300), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9300), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9300), + [aux_sym_enum_declaration_token1] = ACTIONS(9300), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9300), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9300), + [aux_sym_declare_function_statement_token1] = ACTIONS(9300), + [aux_sym_preprocessor_const_token1] = ACTIONS(9300), + [aux_sym__property_get_header_token1] = ACTIONS(9300), + [aux_sym_event_declaration_token1] = ACTIONS(9300), + [sym_static_modifier] = ACTIONS(9300), + [sym__dim_keyword] = ACTIONS(9300), + [sym__redim_keyword] = ACTIONS(9300), + [aux_sym_get_accessor_token1] = ACTIONS(9300), + [aux_sym_set_accessor_token1] = ACTIONS(9300), + [aux_sym_const_declaration_token1] = ACTIONS(9300), + [anon_sym_LPAREN] = ACTIONS(9302), + [aux_sym_as_type_clause_token2] = ACTIONS(9300), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9300), + [aux_sym_visibility_token1] = ACTIONS(9300), + [aux_sym_visibility_token2] = ACTIONS(9300), + [aux_sym_elseif_fragment_token1] = ACTIONS(9300), + [aux_sym_else_fragment_token1] = ACTIONS(9300), + [aux_sym_select_statement_token1] = ACTIONS(9300), + [aux_sym__for_header_token1] = ACTIONS(9300), + [aux_sym_do_statement_token1] = ACTIONS(9300), + [aux_sym_do_condition_token1] = ACTIONS(9300), + [aux_sym_with_statement_token1] = ACTIONS(9300), + [aux_sym_exit_statement_token1] = ACTIONS(9300), + [sym_end_statement] = ACTIONS(9302), + [aux_sym_on_goto_statement_token1] = ACTIONS(9300), + [aux_sym_on_goto_statement_token2] = ACTIONS(9300), + [aux_sym_on_error_statement_token2] = ACTIONS(9300), + [sym__ambiguous_redim_statement] = ACTIONS(9302), + [aux_sym_erase_statement_token1] = ACTIONS(9300), + [aux_sym_open_statement_token1] = ACTIONS(9300), + [aux_sym_file_mode_token2] = ACTIONS(9300), + [aux_sym_file_access_token2] = ACTIONS(9300), + [aux_sym_file_lock_token2] = ACTIONS(9300), + [aux_sym_print_statement_token1] = ACTIONS(9300), + [anon_sym_PLUS] = ACTIONS(9302), + [anon_sym_DASH] = ACTIONS(9300), + [anon_sym_QMARK] = ACTIONS(9302), + [aux_sym_close_statement_token1] = ACTIONS(9300), + [aux_sym_put_statement_token1] = ACTIONS(9300), + [aux_sym_unlock_statement_token1] = ACTIONS(9300), + [aux_sym_seek_statement_token1] = ACTIONS(9300), + [sym_reset_statement] = ACTIONS(9300), + [aux_sym_raise_event_statement_token1] = ACTIONS(9300), + [sym_stop_statement] = ACTIONS(9300), + [sym_beep_statement] = ACTIONS(9300), + [aux_sym_unload_statement_token1] = ACTIONS(9300), + [aux_sym_def_type_statement_token1] = ACTIONS(9300), + [aux_sym_def_type_statement_token2] = ACTIONS(9300), + [aux_sym_def_type_statement_token3] = ACTIONS(9300), + [aux_sym_def_type_statement_token4] = ACTIONS(9300), + [aux_sym_def_type_statement_token5] = ACTIONS(9300), + [aux_sym_def_type_statement_token6] = ACTIONS(9300), + [aux_sym_def_type_statement_token7] = ACTIONS(9300), + [aux_sym_def_type_statement_token8] = ACTIONS(9300), + [aux_sym_def_type_statement_token9] = ACTIONS(9300), + [aux_sym_def_type_statement_token10] = ACTIONS(9300), + [aux_sym_def_type_statement_token11] = ACTIONS(9300), + [aux_sym_def_type_statement_token12] = ACTIONS(9300), + [aux_sym_def_type_statement_token13] = ACTIONS(9300), + [aux_sym_def_type_statement_token14] = ACTIONS(9300), + [aux_sym_call_statement_token1] = ACTIONS(9300), + [sym__ambiguous_call_statement] = ACTIONS(9300), + [aux_sym_addressof_expression_token1] = ACTIONS(9300), + [aux_sym_type_of_expression_token1] = ACTIONS(9300), + [aux_sym_unary_expression_token1] = ACTIONS(9300), + [sym_string_literal] = ACTIONS(9302), + [sym_number_literal] = ACTIONS(9302), + [aux_sym_boolean_literal_token1] = ACTIONS(9300), + [aux_sym_boolean_literal_token2] = ACTIONS(9300), + [sym_nothing_literal] = ACTIONS(9300), + [sym_null_literal] = ACTIONS(9300), + [sym_empty_literal] = ACTIONS(9300), + [sym_date_literal] = ACTIONS(9302), + [anon_sym_POUND] = ACTIONS(9300), + }, + [STATE(3962)] = { + [sym_identifier] = ACTIONS(9304), + [sym_newline] = ACTIONS(9306), + [anon_sym_COLON] = ACTIONS(9306), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9304), + [aux_sym_frm_property_statement_token1] = ACTIONS(9304), + [anon_sym_DOT] = ACTIONS(9304), + [anon_sym_BANG] = ACTIONS(9306), + [aux_sym__attribute_identifier_token1] = ACTIONS(9304), + [aux_sym_option_statement_token3] = ACTIONS(9304), + [aux_sym_type_declaration_token1] = ACTIONS(9304), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9304), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9304), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9304), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9304), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9304), + [aux_sym_enum_declaration_token1] = ACTIONS(9304), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9304), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9304), + [aux_sym_declare_function_statement_token1] = ACTIONS(9304), + [aux_sym_preprocessor_const_token1] = ACTIONS(9304), + [aux_sym__property_get_header_token1] = ACTIONS(9304), + [aux_sym_event_declaration_token1] = ACTIONS(9304), + [sym_static_modifier] = ACTIONS(9304), + [sym__dim_keyword] = ACTIONS(9304), + [sym__redim_keyword] = ACTIONS(9304), + [aux_sym_get_accessor_token1] = ACTIONS(9304), + [aux_sym_set_accessor_token1] = ACTIONS(9304), + [aux_sym_const_declaration_token1] = ACTIONS(9304), + [anon_sym_LPAREN] = ACTIONS(9306), + [aux_sym_as_type_clause_token2] = ACTIONS(9304), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9304), + [aux_sym_visibility_token1] = ACTIONS(9304), + [aux_sym_visibility_token2] = ACTIONS(9304), + [aux_sym_elseif_fragment_token1] = ACTIONS(9304), + [aux_sym_else_fragment_token1] = ACTIONS(9304), + [aux_sym_select_statement_token1] = ACTIONS(9304), + [aux_sym__for_header_token1] = ACTIONS(9304), + [aux_sym_do_statement_token1] = ACTIONS(9304), + [aux_sym_do_condition_token1] = ACTIONS(9304), + [aux_sym_with_statement_token1] = ACTIONS(9304), + [aux_sym_exit_statement_token1] = ACTIONS(9304), + [sym_end_statement] = ACTIONS(9306), + [aux_sym_on_goto_statement_token1] = ACTIONS(9304), + [aux_sym_on_goto_statement_token2] = ACTIONS(9304), + [aux_sym_on_error_statement_token2] = ACTIONS(9304), + [sym__ambiguous_redim_statement] = ACTIONS(9306), + [aux_sym_erase_statement_token1] = ACTIONS(9304), + [aux_sym_open_statement_token1] = ACTIONS(9304), + [aux_sym_file_mode_token2] = ACTIONS(9304), + [aux_sym_file_access_token2] = ACTIONS(9304), + [aux_sym_file_lock_token2] = ACTIONS(9304), + [aux_sym_print_statement_token1] = ACTIONS(9304), + [anon_sym_PLUS] = ACTIONS(9306), + [anon_sym_DASH] = ACTIONS(9304), + [anon_sym_QMARK] = ACTIONS(9306), + [aux_sym_close_statement_token1] = ACTIONS(9304), + [aux_sym_put_statement_token1] = ACTIONS(9304), + [aux_sym_unlock_statement_token1] = ACTIONS(9304), + [aux_sym_seek_statement_token1] = ACTIONS(9304), + [sym_reset_statement] = ACTIONS(9304), + [aux_sym_raise_event_statement_token1] = ACTIONS(9304), + [sym_stop_statement] = ACTIONS(9304), + [sym_beep_statement] = ACTIONS(9304), + [aux_sym_unload_statement_token1] = ACTIONS(9304), + [aux_sym_def_type_statement_token1] = ACTIONS(9304), + [aux_sym_def_type_statement_token2] = ACTIONS(9304), + [aux_sym_def_type_statement_token3] = ACTIONS(9304), + [aux_sym_def_type_statement_token4] = ACTIONS(9304), + [aux_sym_def_type_statement_token5] = ACTIONS(9304), + [aux_sym_def_type_statement_token6] = ACTIONS(9304), + [aux_sym_def_type_statement_token7] = ACTIONS(9304), + [aux_sym_def_type_statement_token8] = ACTIONS(9304), + [aux_sym_def_type_statement_token9] = ACTIONS(9304), + [aux_sym_def_type_statement_token10] = ACTIONS(9304), + [aux_sym_def_type_statement_token11] = ACTIONS(9304), + [aux_sym_def_type_statement_token12] = ACTIONS(9304), + [aux_sym_def_type_statement_token13] = ACTIONS(9304), + [aux_sym_def_type_statement_token14] = ACTIONS(9304), + [aux_sym_call_statement_token1] = ACTIONS(9304), + [sym__ambiguous_call_statement] = ACTIONS(9304), + [aux_sym_addressof_expression_token1] = ACTIONS(9304), + [aux_sym_type_of_expression_token1] = ACTIONS(9304), + [aux_sym_unary_expression_token1] = ACTIONS(9304), + [sym_string_literal] = ACTIONS(9306), + [sym_number_literal] = ACTIONS(9306), + [aux_sym_boolean_literal_token1] = ACTIONS(9304), + [aux_sym_boolean_literal_token2] = ACTIONS(9304), + [sym_nothing_literal] = ACTIONS(9304), + [sym_null_literal] = ACTIONS(9304), + [sym_empty_literal] = ACTIONS(9304), + [sym_date_literal] = ACTIONS(9306), + [anon_sym_POUND] = ACTIONS(9304), + }, + [STATE(3963)] = { + [sym_identifier] = ACTIONS(9308), + [sym_newline] = ACTIONS(9310), + [anon_sym_COLON] = ACTIONS(9310), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9308), + [aux_sym_frm_property_statement_token1] = ACTIONS(9308), + [anon_sym_DOT] = ACTIONS(9308), + [anon_sym_BANG] = ACTIONS(9310), + [aux_sym__attribute_identifier_token1] = ACTIONS(9308), + [aux_sym_option_statement_token3] = ACTIONS(9308), + [aux_sym_type_declaration_token1] = ACTIONS(9308), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9308), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9308), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9308), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9308), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9308), + [aux_sym_enum_declaration_token1] = ACTIONS(9308), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9308), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9308), + [aux_sym_declare_function_statement_token1] = ACTIONS(9308), + [aux_sym_preprocessor_const_token1] = ACTIONS(9308), + [aux_sym__property_get_header_token1] = ACTIONS(9308), + [aux_sym_event_declaration_token1] = ACTIONS(9308), + [sym_static_modifier] = ACTIONS(9308), + [sym__dim_keyword] = ACTIONS(9308), + [sym__redim_keyword] = ACTIONS(9308), + [aux_sym_get_accessor_token1] = ACTIONS(9308), + [aux_sym_set_accessor_token1] = ACTIONS(9308), + [aux_sym_const_declaration_token1] = ACTIONS(9308), + [anon_sym_LPAREN] = ACTIONS(9310), + [aux_sym_as_type_clause_token2] = ACTIONS(9308), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9308), + [aux_sym_visibility_token1] = ACTIONS(9308), + [aux_sym_visibility_token2] = ACTIONS(9308), + [aux_sym_elseif_fragment_token1] = ACTIONS(9308), + [aux_sym_else_fragment_token1] = ACTIONS(9308), + [aux_sym_select_statement_token1] = ACTIONS(9308), + [aux_sym__for_header_token1] = ACTIONS(9308), + [aux_sym_do_statement_token1] = ACTIONS(9308), + [aux_sym_do_condition_token1] = ACTIONS(9308), + [aux_sym_with_statement_token1] = ACTIONS(9308), + [aux_sym_exit_statement_token1] = ACTIONS(9308), + [sym_end_statement] = ACTIONS(9310), + [aux_sym_on_goto_statement_token1] = ACTIONS(9308), + [aux_sym_on_goto_statement_token2] = ACTIONS(9308), + [aux_sym_on_error_statement_token2] = ACTIONS(9308), + [sym__ambiguous_redim_statement] = ACTIONS(9310), + [aux_sym_erase_statement_token1] = ACTIONS(9308), + [aux_sym_open_statement_token1] = ACTIONS(9308), + [aux_sym_file_mode_token2] = ACTIONS(9308), + [aux_sym_file_access_token2] = ACTIONS(9308), + [aux_sym_file_lock_token2] = ACTIONS(9308), + [aux_sym_print_statement_token1] = ACTIONS(9308), + [anon_sym_PLUS] = ACTIONS(9310), + [anon_sym_DASH] = ACTIONS(9308), + [anon_sym_QMARK] = ACTIONS(9310), + [aux_sym_close_statement_token1] = ACTIONS(9308), + [aux_sym_put_statement_token1] = ACTIONS(9308), + [aux_sym_unlock_statement_token1] = ACTIONS(9308), + [aux_sym_seek_statement_token1] = ACTIONS(9308), + [sym_reset_statement] = ACTIONS(9308), + [aux_sym_raise_event_statement_token1] = ACTIONS(9308), + [sym_stop_statement] = ACTIONS(9308), + [sym_beep_statement] = ACTIONS(9308), + [aux_sym_unload_statement_token1] = ACTIONS(9308), + [aux_sym_def_type_statement_token1] = ACTIONS(9308), + [aux_sym_def_type_statement_token2] = ACTIONS(9308), + [aux_sym_def_type_statement_token3] = ACTIONS(9308), + [aux_sym_def_type_statement_token4] = ACTIONS(9308), + [aux_sym_def_type_statement_token5] = ACTIONS(9308), + [aux_sym_def_type_statement_token6] = ACTIONS(9308), + [aux_sym_def_type_statement_token7] = ACTIONS(9308), + [aux_sym_def_type_statement_token8] = ACTIONS(9308), + [aux_sym_def_type_statement_token9] = ACTIONS(9308), + [aux_sym_def_type_statement_token10] = ACTIONS(9308), + [aux_sym_def_type_statement_token11] = ACTIONS(9308), + [aux_sym_def_type_statement_token12] = ACTIONS(9308), + [aux_sym_def_type_statement_token13] = ACTIONS(9308), + [aux_sym_def_type_statement_token14] = ACTIONS(9308), + [aux_sym_call_statement_token1] = ACTIONS(9308), + [sym__ambiguous_call_statement] = ACTIONS(9308), + [aux_sym_addressof_expression_token1] = ACTIONS(9308), + [aux_sym_type_of_expression_token1] = ACTIONS(9308), + [aux_sym_unary_expression_token1] = ACTIONS(9308), + [sym_string_literal] = ACTIONS(9310), + [sym_number_literal] = ACTIONS(9310), + [aux_sym_boolean_literal_token1] = ACTIONS(9308), + [aux_sym_boolean_literal_token2] = ACTIONS(9308), + [sym_nothing_literal] = ACTIONS(9308), + [sym_null_literal] = ACTIONS(9308), + [sym_empty_literal] = ACTIONS(9308), + [sym_date_literal] = ACTIONS(9310), + [anon_sym_POUND] = ACTIONS(9308), + }, + [STATE(3964)] = { + [sym_identifier] = ACTIONS(9312), + [sym_newline] = ACTIONS(9314), + [anon_sym_COLON] = ACTIONS(9314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9312), + [aux_sym_frm_property_statement_token1] = ACTIONS(9312), + [anon_sym_DOT] = ACTIONS(9312), + [anon_sym_BANG] = ACTIONS(9314), + [aux_sym__attribute_identifier_token1] = ACTIONS(9312), + [aux_sym_option_statement_token3] = ACTIONS(9312), + [aux_sym_type_declaration_token1] = ACTIONS(9312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9312), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9312), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9312), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9312), + [aux_sym_enum_declaration_token1] = ACTIONS(9312), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9312), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9312), + [aux_sym_declare_function_statement_token1] = ACTIONS(9312), + [aux_sym_preprocessor_const_token1] = ACTIONS(9312), + [aux_sym__property_get_header_token1] = ACTIONS(9312), + [aux_sym_event_declaration_token1] = ACTIONS(9312), + [sym_static_modifier] = ACTIONS(9312), + [sym__dim_keyword] = ACTIONS(9312), + [sym__redim_keyword] = ACTIONS(9312), + [aux_sym_get_accessor_token1] = ACTIONS(9312), + [aux_sym_set_accessor_token1] = ACTIONS(9312), + [aux_sym_const_declaration_token1] = ACTIONS(9312), + [anon_sym_LPAREN] = ACTIONS(9314), + [aux_sym_as_type_clause_token2] = ACTIONS(9312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9312), + [aux_sym_visibility_token1] = ACTIONS(9312), + [aux_sym_visibility_token2] = ACTIONS(9312), + [aux_sym_elseif_fragment_token1] = ACTIONS(9312), + [aux_sym_else_fragment_token1] = ACTIONS(9312), + [aux_sym_select_statement_token1] = ACTIONS(9312), + [aux_sym__for_header_token1] = ACTIONS(9312), + [aux_sym_do_statement_token1] = ACTIONS(9312), + [aux_sym_do_condition_token1] = ACTIONS(9312), + [aux_sym_with_statement_token1] = ACTIONS(9312), + [aux_sym_exit_statement_token1] = ACTIONS(9312), + [sym_end_statement] = ACTIONS(9314), + [aux_sym_on_goto_statement_token1] = ACTIONS(9312), + [aux_sym_on_goto_statement_token2] = ACTIONS(9312), + [aux_sym_on_error_statement_token2] = ACTIONS(9312), + [sym__ambiguous_redim_statement] = ACTIONS(9314), + [aux_sym_erase_statement_token1] = ACTIONS(9312), + [aux_sym_open_statement_token1] = ACTIONS(9312), + [aux_sym_file_mode_token2] = ACTIONS(9312), + [aux_sym_file_access_token2] = ACTIONS(9312), + [aux_sym_file_lock_token2] = ACTIONS(9312), + [aux_sym_print_statement_token1] = ACTIONS(9312), + [anon_sym_PLUS] = ACTIONS(9314), + [anon_sym_DASH] = ACTIONS(9312), + [anon_sym_QMARK] = ACTIONS(9314), + [aux_sym_close_statement_token1] = ACTIONS(9312), + [aux_sym_put_statement_token1] = ACTIONS(9312), + [aux_sym_unlock_statement_token1] = ACTIONS(9312), + [aux_sym_seek_statement_token1] = ACTIONS(9312), + [sym_reset_statement] = ACTIONS(9312), + [aux_sym_raise_event_statement_token1] = ACTIONS(9312), + [sym_stop_statement] = ACTIONS(9312), + [sym_beep_statement] = ACTIONS(9312), + [aux_sym_unload_statement_token1] = ACTIONS(9312), + [aux_sym_def_type_statement_token1] = ACTIONS(9312), + [aux_sym_def_type_statement_token2] = ACTIONS(9312), + [aux_sym_def_type_statement_token3] = ACTIONS(9312), + [aux_sym_def_type_statement_token4] = ACTIONS(9312), + [aux_sym_def_type_statement_token5] = ACTIONS(9312), + [aux_sym_def_type_statement_token6] = ACTIONS(9312), + [aux_sym_def_type_statement_token7] = ACTIONS(9312), + [aux_sym_def_type_statement_token8] = ACTIONS(9312), + [aux_sym_def_type_statement_token9] = ACTIONS(9312), + [aux_sym_def_type_statement_token10] = ACTIONS(9312), + [aux_sym_def_type_statement_token11] = ACTIONS(9312), + [aux_sym_def_type_statement_token12] = ACTIONS(9312), + [aux_sym_def_type_statement_token13] = ACTIONS(9312), + [aux_sym_def_type_statement_token14] = ACTIONS(9312), + [aux_sym_call_statement_token1] = ACTIONS(9312), + [sym__ambiguous_call_statement] = ACTIONS(9312), + [aux_sym_addressof_expression_token1] = ACTIONS(9312), + [aux_sym_type_of_expression_token1] = ACTIONS(9312), + [aux_sym_unary_expression_token1] = ACTIONS(9312), + [sym_string_literal] = ACTIONS(9314), + [sym_number_literal] = ACTIONS(9314), + [aux_sym_boolean_literal_token1] = ACTIONS(9312), + [aux_sym_boolean_literal_token2] = ACTIONS(9312), + [sym_nothing_literal] = ACTIONS(9312), + [sym_null_literal] = ACTIONS(9312), + [sym_empty_literal] = ACTIONS(9312), + [sym_date_literal] = ACTIONS(9314), + [anon_sym_POUND] = ACTIONS(9312), + }, + [STATE(3965)] = { + [sym_identifier] = ACTIONS(9316), + [sym_newline] = ACTIONS(9318), + [anon_sym_COLON] = ACTIONS(9318), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9316), + [aux_sym_frm_property_statement_token1] = ACTIONS(9316), + [anon_sym_DOT] = ACTIONS(9316), + [anon_sym_BANG] = ACTIONS(9318), + [aux_sym__attribute_identifier_token1] = ACTIONS(9316), + [aux_sym_option_statement_token3] = ACTIONS(9316), + [aux_sym_type_declaration_token1] = ACTIONS(9316), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9316), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9316), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9316), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9316), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9316), + [aux_sym_enum_declaration_token1] = ACTIONS(9316), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9316), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9316), + [aux_sym_declare_function_statement_token1] = ACTIONS(9316), + [aux_sym_preprocessor_const_token1] = ACTIONS(9316), + [aux_sym__property_get_header_token1] = ACTIONS(9316), + [aux_sym_event_declaration_token1] = ACTIONS(9316), + [sym_static_modifier] = ACTIONS(9316), + [sym__dim_keyword] = ACTIONS(9316), + [sym__redim_keyword] = ACTIONS(9316), + [aux_sym_get_accessor_token1] = ACTIONS(9316), + [aux_sym_set_accessor_token1] = ACTIONS(9316), + [aux_sym_const_declaration_token1] = ACTIONS(9316), + [anon_sym_LPAREN] = ACTIONS(9318), + [aux_sym_as_type_clause_token2] = ACTIONS(9316), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9316), + [aux_sym_visibility_token1] = ACTIONS(9316), + [aux_sym_visibility_token2] = ACTIONS(9316), + [aux_sym_elseif_fragment_token1] = ACTIONS(9316), + [aux_sym_else_fragment_token1] = ACTIONS(9316), + [aux_sym_select_statement_token1] = ACTIONS(9316), + [aux_sym__for_header_token1] = ACTIONS(9316), + [aux_sym_do_statement_token1] = ACTIONS(9316), + [aux_sym_do_condition_token1] = ACTIONS(9316), + [aux_sym_with_statement_token1] = ACTIONS(9316), + [aux_sym_exit_statement_token1] = ACTIONS(9316), + [sym_end_statement] = ACTIONS(9318), + [aux_sym_on_goto_statement_token1] = ACTIONS(9316), + [aux_sym_on_goto_statement_token2] = ACTIONS(9316), + [aux_sym_on_error_statement_token2] = ACTIONS(9316), + [sym__ambiguous_redim_statement] = ACTIONS(9318), + [aux_sym_erase_statement_token1] = ACTIONS(9316), + [aux_sym_open_statement_token1] = ACTIONS(9316), + [aux_sym_file_mode_token2] = ACTIONS(9316), + [aux_sym_file_access_token2] = ACTIONS(9316), + [aux_sym_file_lock_token2] = ACTIONS(9316), + [aux_sym_print_statement_token1] = ACTIONS(9316), + [anon_sym_PLUS] = ACTIONS(9318), + [anon_sym_DASH] = ACTIONS(9316), + [anon_sym_QMARK] = ACTIONS(9318), + [aux_sym_close_statement_token1] = ACTIONS(9316), + [aux_sym_put_statement_token1] = ACTIONS(9316), + [aux_sym_unlock_statement_token1] = ACTIONS(9316), + [aux_sym_seek_statement_token1] = ACTIONS(9316), + [sym_reset_statement] = ACTIONS(9316), + [aux_sym_raise_event_statement_token1] = ACTIONS(9316), + [sym_stop_statement] = ACTIONS(9316), + [sym_beep_statement] = ACTIONS(9316), + [aux_sym_unload_statement_token1] = ACTIONS(9316), + [aux_sym_def_type_statement_token1] = ACTIONS(9316), + [aux_sym_def_type_statement_token2] = ACTIONS(9316), + [aux_sym_def_type_statement_token3] = ACTIONS(9316), + [aux_sym_def_type_statement_token4] = ACTIONS(9316), + [aux_sym_def_type_statement_token5] = ACTIONS(9316), + [aux_sym_def_type_statement_token6] = ACTIONS(9316), + [aux_sym_def_type_statement_token7] = ACTIONS(9316), + [aux_sym_def_type_statement_token8] = ACTIONS(9316), + [aux_sym_def_type_statement_token9] = ACTIONS(9316), + [aux_sym_def_type_statement_token10] = ACTIONS(9316), + [aux_sym_def_type_statement_token11] = ACTIONS(9316), + [aux_sym_def_type_statement_token12] = ACTIONS(9316), + [aux_sym_def_type_statement_token13] = ACTIONS(9316), + [aux_sym_def_type_statement_token14] = ACTIONS(9316), + [aux_sym_call_statement_token1] = ACTIONS(9316), + [sym__ambiguous_call_statement] = ACTIONS(9316), + [aux_sym_addressof_expression_token1] = ACTIONS(9316), + [aux_sym_type_of_expression_token1] = ACTIONS(9316), + [aux_sym_unary_expression_token1] = ACTIONS(9316), + [sym_string_literal] = ACTIONS(9318), + [sym_number_literal] = ACTIONS(9318), + [aux_sym_boolean_literal_token1] = ACTIONS(9316), + [aux_sym_boolean_literal_token2] = ACTIONS(9316), + [sym_nothing_literal] = ACTIONS(9316), + [sym_null_literal] = ACTIONS(9316), + [sym_empty_literal] = ACTIONS(9316), + [sym_date_literal] = ACTIONS(9318), + [anon_sym_POUND] = ACTIONS(9316), + }, + [STATE(3966)] = { + [sym_identifier] = ACTIONS(9320), + [sym_newline] = ACTIONS(9322), + [anon_sym_COLON] = ACTIONS(9322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9320), + [aux_sym_frm_property_statement_token1] = ACTIONS(9320), + [anon_sym_DOT] = ACTIONS(9320), + [anon_sym_BANG] = ACTIONS(9322), + [aux_sym__attribute_identifier_token1] = ACTIONS(9320), + [aux_sym_option_statement_token3] = ACTIONS(9320), + [aux_sym_type_declaration_token1] = ACTIONS(9320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9320), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9320), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9320), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9320), + [aux_sym_enum_declaration_token1] = ACTIONS(9320), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9320), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9320), + [aux_sym_declare_function_statement_token1] = ACTIONS(9320), + [aux_sym_preprocessor_const_token1] = ACTIONS(9320), + [aux_sym__property_get_header_token1] = ACTIONS(9320), + [aux_sym_event_declaration_token1] = ACTIONS(9320), + [sym_static_modifier] = ACTIONS(9320), + [sym__dim_keyword] = ACTIONS(9320), + [sym__redim_keyword] = ACTIONS(9320), + [aux_sym_get_accessor_token1] = ACTIONS(9320), + [aux_sym_set_accessor_token1] = ACTIONS(9320), + [aux_sym_const_declaration_token1] = ACTIONS(9320), + [anon_sym_LPAREN] = ACTIONS(9322), + [aux_sym_as_type_clause_token2] = ACTIONS(9320), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9320), + [aux_sym_visibility_token1] = ACTIONS(9320), + [aux_sym_visibility_token2] = ACTIONS(9320), + [aux_sym_elseif_fragment_token1] = ACTIONS(9320), + [aux_sym_else_fragment_token1] = ACTIONS(9320), + [aux_sym_select_statement_token1] = ACTIONS(9320), + [aux_sym__for_header_token1] = ACTIONS(9320), + [aux_sym_do_statement_token1] = ACTIONS(9320), + [aux_sym_do_condition_token1] = ACTIONS(9320), + [aux_sym_with_statement_token1] = ACTIONS(9320), + [aux_sym_exit_statement_token1] = ACTIONS(9320), + [sym_end_statement] = ACTIONS(9322), + [aux_sym_on_goto_statement_token1] = ACTIONS(9320), + [aux_sym_on_goto_statement_token2] = ACTIONS(9320), + [aux_sym_on_error_statement_token2] = ACTIONS(9320), + [sym__ambiguous_redim_statement] = ACTIONS(9322), + [aux_sym_erase_statement_token1] = ACTIONS(9320), + [aux_sym_open_statement_token1] = ACTIONS(9320), + [aux_sym_file_mode_token2] = ACTIONS(9320), + [aux_sym_file_access_token2] = ACTIONS(9320), + [aux_sym_file_lock_token2] = ACTIONS(9320), + [aux_sym_print_statement_token1] = ACTIONS(9320), + [anon_sym_PLUS] = ACTIONS(9322), + [anon_sym_DASH] = ACTIONS(9320), + [anon_sym_QMARK] = ACTIONS(9322), + [aux_sym_close_statement_token1] = ACTIONS(9320), + [aux_sym_put_statement_token1] = ACTIONS(9320), + [aux_sym_unlock_statement_token1] = ACTIONS(9320), + [aux_sym_seek_statement_token1] = ACTIONS(9320), + [sym_reset_statement] = ACTIONS(9320), + [aux_sym_raise_event_statement_token1] = ACTIONS(9320), + [sym_stop_statement] = ACTIONS(9320), + [sym_beep_statement] = ACTIONS(9320), + [aux_sym_unload_statement_token1] = ACTIONS(9320), + [aux_sym_def_type_statement_token1] = ACTIONS(9320), + [aux_sym_def_type_statement_token2] = ACTIONS(9320), + [aux_sym_def_type_statement_token3] = ACTIONS(9320), + [aux_sym_def_type_statement_token4] = ACTIONS(9320), + [aux_sym_def_type_statement_token5] = ACTIONS(9320), + [aux_sym_def_type_statement_token6] = ACTIONS(9320), + [aux_sym_def_type_statement_token7] = ACTIONS(9320), + [aux_sym_def_type_statement_token8] = ACTIONS(9320), + [aux_sym_def_type_statement_token9] = ACTIONS(9320), + [aux_sym_def_type_statement_token10] = ACTIONS(9320), + [aux_sym_def_type_statement_token11] = ACTIONS(9320), + [aux_sym_def_type_statement_token12] = ACTIONS(9320), + [aux_sym_def_type_statement_token13] = ACTIONS(9320), + [aux_sym_def_type_statement_token14] = ACTIONS(9320), + [aux_sym_call_statement_token1] = ACTIONS(9320), + [sym__ambiguous_call_statement] = ACTIONS(9320), + [aux_sym_addressof_expression_token1] = ACTIONS(9320), + [aux_sym_type_of_expression_token1] = ACTIONS(9320), + [aux_sym_unary_expression_token1] = ACTIONS(9320), + [sym_string_literal] = ACTIONS(9322), + [sym_number_literal] = ACTIONS(9322), + [aux_sym_boolean_literal_token1] = ACTIONS(9320), + [aux_sym_boolean_literal_token2] = ACTIONS(9320), + [sym_nothing_literal] = ACTIONS(9320), + [sym_null_literal] = ACTIONS(9320), + [sym_empty_literal] = ACTIONS(9320), + [sym_date_literal] = ACTIONS(9322), + [anon_sym_POUND] = ACTIONS(9320), + }, + [STATE(3967)] = { + [sym_identifier] = ACTIONS(9324), + [sym_newline] = ACTIONS(9326), + [anon_sym_COLON] = ACTIONS(9326), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9324), + [aux_sym_frm_property_statement_token1] = ACTIONS(9324), + [anon_sym_DOT] = ACTIONS(9324), + [anon_sym_BANG] = ACTIONS(9326), + [aux_sym__attribute_identifier_token1] = ACTIONS(9324), + [aux_sym_option_statement_token3] = ACTIONS(9324), + [aux_sym_type_declaration_token1] = ACTIONS(9324), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9324), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9324), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9324), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9324), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9324), + [aux_sym_enum_declaration_token1] = ACTIONS(9324), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9324), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9324), + [aux_sym_declare_function_statement_token1] = ACTIONS(9324), + [aux_sym_preprocessor_const_token1] = ACTIONS(9324), + [aux_sym__property_get_header_token1] = ACTIONS(9324), + [aux_sym_event_declaration_token1] = ACTIONS(9324), + [sym_static_modifier] = ACTIONS(9324), + [sym__dim_keyword] = ACTIONS(9324), + [sym__redim_keyword] = ACTIONS(9324), + [aux_sym_get_accessor_token1] = ACTIONS(9324), + [aux_sym_set_accessor_token1] = ACTIONS(9324), + [aux_sym_const_declaration_token1] = ACTIONS(9324), + [anon_sym_LPAREN] = ACTIONS(9326), + [aux_sym_as_type_clause_token2] = ACTIONS(9324), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9324), + [aux_sym_visibility_token1] = ACTIONS(9324), + [aux_sym_visibility_token2] = ACTIONS(9324), + [aux_sym_elseif_fragment_token1] = ACTIONS(9324), + [aux_sym_else_fragment_token1] = ACTIONS(9324), + [aux_sym_select_statement_token1] = ACTIONS(9324), + [aux_sym__for_header_token1] = ACTIONS(9324), + [aux_sym_do_statement_token1] = ACTIONS(9324), + [aux_sym_do_condition_token1] = ACTIONS(9324), + [aux_sym_with_statement_token1] = ACTIONS(9324), + [aux_sym_exit_statement_token1] = ACTIONS(9324), + [sym_end_statement] = ACTIONS(9326), + [aux_sym_on_goto_statement_token1] = ACTIONS(9324), + [aux_sym_on_goto_statement_token2] = ACTIONS(9324), + [aux_sym_on_error_statement_token2] = ACTIONS(9324), + [sym__ambiguous_redim_statement] = ACTIONS(9326), + [aux_sym_erase_statement_token1] = ACTIONS(9324), + [aux_sym_open_statement_token1] = ACTIONS(9324), + [aux_sym_file_mode_token2] = ACTIONS(9324), + [aux_sym_file_access_token2] = ACTIONS(9324), + [aux_sym_file_lock_token2] = ACTIONS(9324), + [aux_sym_print_statement_token1] = ACTIONS(9324), + [anon_sym_PLUS] = ACTIONS(9326), + [anon_sym_DASH] = ACTIONS(9324), + [anon_sym_QMARK] = ACTIONS(9326), + [aux_sym_close_statement_token1] = ACTIONS(9324), + [aux_sym_put_statement_token1] = ACTIONS(9324), + [aux_sym_unlock_statement_token1] = ACTIONS(9324), + [aux_sym_seek_statement_token1] = ACTIONS(9324), + [sym_reset_statement] = ACTIONS(9324), + [aux_sym_raise_event_statement_token1] = ACTIONS(9324), + [sym_stop_statement] = ACTIONS(9324), + [sym_beep_statement] = ACTIONS(9324), + [aux_sym_unload_statement_token1] = ACTIONS(9324), + [aux_sym_def_type_statement_token1] = ACTIONS(9324), + [aux_sym_def_type_statement_token2] = ACTIONS(9324), + [aux_sym_def_type_statement_token3] = ACTIONS(9324), + [aux_sym_def_type_statement_token4] = ACTIONS(9324), + [aux_sym_def_type_statement_token5] = ACTIONS(9324), + [aux_sym_def_type_statement_token6] = ACTIONS(9324), + [aux_sym_def_type_statement_token7] = ACTIONS(9324), + [aux_sym_def_type_statement_token8] = ACTIONS(9324), + [aux_sym_def_type_statement_token9] = ACTIONS(9324), + [aux_sym_def_type_statement_token10] = ACTIONS(9324), + [aux_sym_def_type_statement_token11] = ACTIONS(9324), + [aux_sym_def_type_statement_token12] = ACTIONS(9324), + [aux_sym_def_type_statement_token13] = ACTIONS(9324), + [aux_sym_def_type_statement_token14] = ACTIONS(9324), + [aux_sym_call_statement_token1] = ACTIONS(9324), + [sym__ambiguous_call_statement] = ACTIONS(9324), + [aux_sym_addressof_expression_token1] = ACTIONS(9324), + [aux_sym_type_of_expression_token1] = ACTIONS(9324), + [aux_sym_unary_expression_token1] = ACTIONS(9324), + [sym_string_literal] = ACTIONS(9326), + [sym_number_literal] = ACTIONS(9326), + [aux_sym_boolean_literal_token1] = ACTIONS(9324), + [aux_sym_boolean_literal_token2] = ACTIONS(9324), + [sym_nothing_literal] = ACTIONS(9324), + [sym_null_literal] = ACTIONS(9324), + [sym_empty_literal] = ACTIONS(9324), + [sym_date_literal] = ACTIONS(9326), + [anon_sym_POUND] = ACTIONS(9324), + }, + [STATE(3968)] = { + [sym_identifier] = ACTIONS(9328), + [sym_newline] = ACTIONS(9330), + [anon_sym_COLON] = ACTIONS(9330), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9328), + [aux_sym_frm_property_statement_token1] = ACTIONS(9328), + [anon_sym_DOT] = ACTIONS(9328), + [anon_sym_BANG] = ACTIONS(9330), + [aux_sym__attribute_identifier_token1] = ACTIONS(9328), + [aux_sym_option_statement_token3] = ACTIONS(9328), + [aux_sym_type_declaration_token1] = ACTIONS(9328), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9328), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9328), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9328), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9328), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9328), + [aux_sym_enum_declaration_token1] = ACTIONS(9328), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9328), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9328), + [aux_sym_declare_function_statement_token1] = ACTIONS(9328), + [aux_sym_preprocessor_const_token1] = ACTIONS(9328), + [aux_sym__property_get_header_token1] = ACTIONS(9328), + [aux_sym_event_declaration_token1] = ACTIONS(9328), + [sym_static_modifier] = ACTIONS(9328), + [sym__dim_keyword] = ACTIONS(9328), + [sym__redim_keyword] = ACTIONS(9328), + [aux_sym_get_accessor_token1] = ACTIONS(9328), + [aux_sym_set_accessor_token1] = ACTIONS(9328), + [aux_sym_const_declaration_token1] = ACTIONS(9328), + [anon_sym_LPAREN] = ACTIONS(9330), + [aux_sym_as_type_clause_token2] = ACTIONS(9328), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9328), + [aux_sym_visibility_token1] = ACTIONS(9328), + [aux_sym_visibility_token2] = ACTIONS(9328), + [aux_sym_elseif_fragment_token1] = ACTIONS(9328), + [aux_sym_else_fragment_token1] = ACTIONS(9328), + [aux_sym_select_statement_token1] = ACTIONS(9328), + [aux_sym__for_header_token1] = ACTIONS(9328), + [aux_sym_do_statement_token1] = ACTIONS(9328), + [aux_sym_do_condition_token1] = ACTIONS(9328), + [aux_sym_with_statement_token1] = ACTIONS(9328), + [aux_sym_exit_statement_token1] = ACTIONS(9328), + [sym_end_statement] = ACTIONS(9330), + [aux_sym_on_goto_statement_token1] = ACTIONS(9328), + [aux_sym_on_goto_statement_token2] = ACTIONS(9328), + [aux_sym_on_error_statement_token2] = ACTIONS(9328), + [sym__ambiguous_redim_statement] = ACTIONS(9330), + [aux_sym_erase_statement_token1] = ACTIONS(9328), + [aux_sym_open_statement_token1] = ACTIONS(9328), + [aux_sym_file_mode_token2] = ACTIONS(9328), + [aux_sym_file_access_token2] = ACTIONS(9328), + [aux_sym_file_lock_token2] = ACTIONS(9328), + [aux_sym_print_statement_token1] = ACTIONS(9328), + [anon_sym_PLUS] = ACTIONS(9330), + [anon_sym_DASH] = ACTIONS(9328), + [anon_sym_QMARK] = ACTIONS(9330), + [aux_sym_close_statement_token1] = ACTIONS(9328), + [aux_sym_put_statement_token1] = ACTIONS(9328), + [aux_sym_unlock_statement_token1] = ACTIONS(9328), + [aux_sym_seek_statement_token1] = ACTIONS(9328), + [sym_reset_statement] = ACTIONS(9328), + [aux_sym_raise_event_statement_token1] = ACTIONS(9328), + [sym_stop_statement] = ACTIONS(9328), + [sym_beep_statement] = ACTIONS(9328), + [aux_sym_unload_statement_token1] = ACTIONS(9328), + [aux_sym_def_type_statement_token1] = ACTIONS(9328), + [aux_sym_def_type_statement_token2] = ACTIONS(9328), + [aux_sym_def_type_statement_token3] = ACTIONS(9328), + [aux_sym_def_type_statement_token4] = ACTIONS(9328), + [aux_sym_def_type_statement_token5] = ACTIONS(9328), + [aux_sym_def_type_statement_token6] = ACTIONS(9328), + [aux_sym_def_type_statement_token7] = ACTIONS(9328), + [aux_sym_def_type_statement_token8] = ACTIONS(9328), + [aux_sym_def_type_statement_token9] = ACTIONS(9328), + [aux_sym_def_type_statement_token10] = ACTIONS(9328), + [aux_sym_def_type_statement_token11] = ACTIONS(9328), + [aux_sym_def_type_statement_token12] = ACTIONS(9328), + [aux_sym_def_type_statement_token13] = ACTIONS(9328), + [aux_sym_def_type_statement_token14] = ACTIONS(9328), + [aux_sym_call_statement_token1] = ACTIONS(9328), + [sym__ambiguous_call_statement] = ACTIONS(9328), + [aux_sym_addressof_expression_token1] = ACTIONS(9328), + [aux_sym_type_of_expression_token1] = ACTIONS(9328), + [aux_sym_unary_expression_token1] = ACTIONS(9328), + [sym_string_literal] = ACTIONS(9330), + [sym_number_literal] = ACTIONS(9330), + [aux_sym_boolean_literal_token1] = ACTIONS(9328), + [aux_sym_boolean_literal_token2] = ACTIONS(9328), + [sym_nothing_literal] = ACTIONS(9328), + [sym_null_literal] = ACTIONS(9328), + [sym_empty_literal] = ACTIONS(9328), + [sym_date_literal] = ACTIONS(9330), + [anon_sym_POUND] = ACTIONS(9328), + }, + [STATE(3969)] = { + [sym_identifier] = ACTIONS(8733), + [sym_newline] = ACTIONS(8735), + [anon_sym_COLON] = ACTIONS(8735), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8733), + [aux_sym_frm_property_statement_token1] = ACTIONS(8733), + [anon_sym_DOT] = ACTIONS(8733), + [anon_sym_BANG] = ACTIONS(8735), + [aux_sym__attribute_identifier_token1] = ACTIONS(8733), + [aux_sym_option_statement_token3] = ACTIONS(8733), + [aux_sym_type_declaration_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8733), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8733), + [aux_sym_enum_declaration_token1] = ACTIONS(8733), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8733), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8733), + [aux_sym_declare_function_statement_token1] = ACTIONS(8733), + [aux_sym_preprocessor_const_token1] = ACTIONS(8733), + [aux_sym__property_get_header_token1] = ACTIONS(8733), + [aux_sym_event_declaration_token1] = ACTIONS(8733), + [sym_static_modifier] = ACTIONS(8733), + [sym__dim_keyword] = ACTIONS(8733), + [sym__redim_keyword] = ACTIONS(8733), + [aux_sym_get_accessor_token1] = ACTIONS(8733), + [aux_sym_set_accessor_token1] = ACTIONS(8733), + [aux_sym_const_declaration_token1] = ACTIONS(8733), + [anon_sym_LPAREN] = ACTIONS(8735), + [aux_sym_as_type_clause_token2] = ACTIONS(8733), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8733), + [aux_sym_visibility_token1] = ACTIONS(8733), + [aux_sym_visibility_token2] = ACTIONS(8733), + [aux_sym_elseif_fragment_token1] = ACTIONS(8733), + [aux_sym_else_fragment_token1] = ACTIONS(8737), + [aux_sym_select_statement_token1] = ACTIONS(8733), + [aux_sym__for_header_token1] = ACTIONS(8733), + [aux_sym_do_statement_token1] = ACTIONS(8733), + [aux_sym_do_condition_token1] = ACTIONS(8733), + [aux_sym_with_statement_token1] = ACTIONS(8733), + [aux_sym_exit_statement_token1] = ACTIONS(8733), + [sym_end_statement] = ACTIONS(8735), + [aux_sym_on_goto_statement_token1] = ACTIONS(8733), + [aux_sym_on_goto_statement_token2] = ACTIONS(8733), + [aux_sym_on_error_statement_token2] = ACTIONS(8733), + [sym__ambiguous_redim_statement] = ACTIONS(8735), + [aux_sym_erase_statement_token1] = ACTIONS(8733), + [aux_sym_open_statement_token1] = ACTIONS(8733), + [aux_sym_file_mode_token2] = ACTIONS(8733), + [aux_sym_file_access_token2] = ACTIONS(8733), + [aux_sym_file_lock_token2] = ACTIONS(8733), + [aux_sym_print_statement_token1] = ACTIONS(8733), + [anon_sym_PLUS] = ACTIONS(8735), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_QMARK] = ACTIONS(8735), + [aux_sym_close_statement_token1] = ACTIONS(8733), + [aux_sym_put_statement_token1] = ACTIONS(8733), + [aux_sym_unlock_statement_token1] = ACTIONS(8733), + [aux_sym_seek_statement_token1] = ACTIONS(8733), + [sym_reset_statement] = ACTIONS(8733), + [aux_sym_raise_event_statement_token1] = ACTIONS(8733), + [sym_stop_statement] = ACTIONS(8733), + [sym_beep_statement] = ACTIONS(8733), + [aux_sym_unload_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token2] = ACTIONS(8733), + [aux_sym_def_type_statement_token3] = ACTIONS(8733), + [aux_sym_def_type_statement_token4] = ACTIONS(8733), + [aux_sym_def_type_statement_token5] = ACTIONS(8733), + [aux_sym_def_type_statement_token6] = ACTIONS(8733), + [aux_sym_def_type_statement_token7] = ACTIONS(8733), + [aux_sym_def_type_statement_token8] = ACTIONS(8733), + [aux_sym_def_type_statement_token9] = ACTIONS(8733), + [aux_sym_def_type_statement_token10] = ACTIONS(8733), + [aux_sym_def_type_statement_token11] = ACTIONS(8733), + [aux_sym_def_type_statement_token12] = ACTIONS(8733), + [aux_sym_def_type_statement_token13] = ACTIONS(8733), + [aux_sym_def_type_statement_token14] = ACTIONS(8733), + [aux_sym_call_statement_token1] = ACTIONS(8733), + [sym__ambiguous_call_statement] = ACTIONS(8733), + [aux_sym_addressof_expression_token1] = ACTIONS(8733), + [aux_sym_type_of_expression_token1] = ACTIONS(8733), + [aux_sym_unary_expression_token1] = ACTIONS(8733), + [sym_string_literal] = ACTIONS(8735), + [sym_number_literal] = ACTIONS(8735), + [aux_sym_boolean_literal_token1] = ACTIONS(8733), + [aux_sym_boolean_literal_token2] = ACTIONS(8733), + [sym_nothing_literal] = ACTIONS(8733), + [sym_null_literal] = ACTIONS(8733), + [sym_empty_literal] = ACTIONS(8733), + [sym_date_literal] = ACTIONS(8735), + [anon_sym_POUND] = ACTIONS(8733), + }, + [STATE(3970)] = { + [sym_identifier] = ACTIONS(6629), + [sym_newline] = ACTIONS(6631), + [anon_sym_COLON] = ACTIONS(6631), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6629), + [aux_sym_frm_property_statement_token1] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6631), + [aux_sym__attribute_identifier_token1] = ACTIONS(6629), + [aux_sym_option_statement_token3] = ACTIONS(6629), + [aux_sym_type_declaration_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6629), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6629), + [aux_sym_enum_declaration_token1] = ACTIONS(6629), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6629), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6629), + [aux_sym_declare_function_statement_token1] = ACTIONS(6629), + [aux_sym_preprocessor_const_token1] = ACTIONS(6629), + [aux_sym__property_get_header_token1] = ACTIONS(6629), + [aux_sym_event_declaration_token1] = ACTIONS(6629), + [sym_static_modifier] = ACTIONS(6629), + [sym__dim_keyword] = ACTIONS(6629), + [sym__redim_keyword] = ACTIONS(6629), + [aux_sym_get_accessor_token1] = ACTIONS(6629), + [aux_sym_set_accessor_token1] = ACTIONS(6629), + [aux_sym_const_declaration_token1] = ACTIONS(6629), + [anon_sym_LPAREN] = ACTIONS(6631), + [aux_sym_as_type_clause_token2] = ACTIONS(6629), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6629), + [aux_sym_visibility_token1] = ACTIONS(6629), + [aux_sym_visibility_token2] = ACTIONS(6629), + [aux_sym_elseif_fragment_token1] = ACTIONS(6629), + [aux_sym_else_fragment_token1] = ACTIONS(6629), + [aux_sym_select_statement_token1] = ACTIONS(6629), + [aux_sym__for_header_token1] = ACTIONS(6629), + [aux_sym_do_statement_token1] = ACTIONS(6629), + [aux_sym_do_condition_token1] = ACTIONS(6629), + [aux_sym_with_statement_token1] = ACTIONS(6629), + [aux_sym_exit_statement_token1] = ACTIONS(6629), + [sym_end_statement] = ACTIONS(6631), + [aux_sym_on_goto_statement_token1] = ACTIONS(6629), + [aux_sym_on_goto_statement_token2] = ACTIONS(6629), + [aux_sym_on_error_statement_token2] = ACTIONS(6629), + [sym__ambiguous_redim_statement] = ACTIONS(6631), + [aux_sym_erase_statement_token1] = ACTIONS(6629), + [aux_sym_open_statement_token1] = ACTIONS(6629), + [aux_sym_file_mode_token2] = ACTIONS(6629), + [aux_sym_file_access_token2] = ACTIONS(6629), + [aux_sym_file_lock_token2] = ACTIONS(6629), + [aux_sym_print_statement_token1] = ACTIONS(6629), + [anon_sym_PLUS] = ACTIONS(6631), + [anon_sym_DASH] = ACTIONS(6629), + [anon_sym_QMARK] = ACTIONS(6631), + [aux_sym_close_statement_token1] = ACTIONS(6629), + [aux_sym_put_statement_token1] = ACTIONS(6629), + [aux_sym_unlock_statement_token1] = ACTIONS(6629), + [aux_sym_seek_statement_token1] = ACTIONS(6629), + [sym_reset_statement] = ACTIONS(6629), + [aux_sym_raise_event_statement_token1] = ACTIONS(6629), + [sym_stop_statement] = ACTIONS(6629), + [sym_beep_statement] = ACTIONS(6629), + [aux_sym_unload_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token2] = ACTIONS(6629), + [aux_sym_def_type_statement_token3] = ACTIONS(6629), + [aux_sym_def_type_statement_token4] = ACTIONS(6629), + [aux_sym_def_type_statement_token5] = ACTIONS(6629), + [aux_sym_def_type_statement_token6] = ACTIONS(6629), + [aux_sym_def_type_statement_token7] = ACTIONS(6629), + [aux_sym_def_type_statement_token8] = ACTIONS(6629), + [aux_sym_def_type_statement_token9] = ACTIONS(6629), + [aux_sym_def_type_statement_token10] = ACTIONS(6629), + [aux_sym_def_type_statement_token11] = ACTIONS(6629), + [aux_sym_def_type_statement_token12] = ACTIONS(6629), + [aux_sym_def_type_statement_token13] = ACTIONS(6629), + [aux_sym_def_type_statement_token14] = ACTIONS(6629), + [aux_sym_call_statement_token1] = ACTIONS(6629), + [sym__ambiguous_call_statement] = ACTIONS(6629), + [aux_sym_addressof_expression_token1] = ACTIONS(6629), + [aux_sym_type_of_expression_token1] = ACTIONS(6629), + [aux_sym_unary_expression_token1] = ACTIONS(6629), + [sym_string_literal] = ACTIONS(6631), + [sym_number_literal] = ACTIONS(6631), + [aux_sym_boolean_literal_token1] = ACTIONS(6629), + [aux_sym_boolean_literal_token2] = ACTIONS(6629), + [sym_nothing_literal] = ACTIONS(6629), + [sym_null_literal] = ACTIONS(6629), + [sym_empty_literal] = ACTIONS(6629), + [sym_date_literal] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6629), + }, + [STATE(3971)] = { + [sym_identifier] = ACTIONS(8501), + [sym_newline] = ACTIONS(8503), + [anon_sym_COLON] = ACTIONS(8503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8501), + [aux_sym_frm_property_statement_token1] = ACTIONS(8501), + [anon_sym_DOT] = ACTIONS(8501), + [anon_sym_BANG] = ACTIONS(8503), + [aux_sym__attribute_identifier_token1] = ACTIONS(8501), + [aux_sym_option_statement_token3] = ACTIONS(8501), + [aux_sym_type_declaration_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8501), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8501), + [aux_sym_enum_declaration_token1] = ACTIONS(8501), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8501), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8501), + [aux_sym_declare_function_statement_token1] = ACTIONS(8501), + [aux_sym_preprocessor_const_token1] = ACTIONS(8501), + [aux_sym__property_get_header_token1] = ACTIONS(8501), + [aux_sym_event_declaration_token1] = ACTIONS(8501), + [sym_static_modifier] = ACTIONS(8501), + [sym__dim_keyword] = ACTIONS(8501), + [sym__redim_keyword] = ACTIONS(8501), + [aux_sym_get_accessor_token1] = ACTIONS(8501), + [aux_sym_set_accessor_token1] = ACTIONS(8501), + [aux_sym_const_declaration_token1] = ACTIONS(8501), + [anon_sym_LPAREN] = ACTIONS(8503), + [aux_sym_as_type_clause_token2] = ACTIONS(8501), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8501), + [aux_sym_visibility_token1] = ACTIONS(8501), + [aux_sym_visibility_token2] = ACTIONS(8501), + [aux_sym_elseif_fragment_token1] = ACTIONS(8501), + [aux_sym_else_fragment_token1] = ACTIONS(8501), + [aux_sym_select_statement_token1] = ACTIONS(8501), + [aux_sym__for_header_token1] = ACTIONS(8501), + [aux_sym_do_statement_token1] = ACTIONS(8501), + [aux_sym_do_condition_token1] = ACTIONS(8501), + [aux_sym_with_statement_token1] = ACTIONS(8501), + [aux_sym_exit_statement_token1] = ACTIONS(8501), + [sym_end_statement] = ACTIONS(8503), + [aux_sym_on_goto_statement_token1] = ACTIONS(8501), + [aux_sym_on_goto_statement_token2] = ACTIONS(8501), + [aux_sym_on_error_statement_token2] = ACTIONS(8501), + [sym__ambiguous_redim_statement] = ACTIONS(8503), + [aux_sym_erase_statement_token1] = ACTIONS(8501), + [aux_sym_open_statement_token1] = ACTIONS(8501), + [aux_sym_file_mode_token2] = ACTIONS(8501), + [aux_sym_file_access_token2] = ACTIONS(8501), + [aux_sym_file_lock_token2] = ACTIONS(8501), + [aux_sym_print_statement_token1] = ACTIONS(8501), + [anon_sym_PLUS] = ACTIONS(8503), + [anon_sym_DASH] = ACTIONS(8501), + [anon_sym_QMARK] = ACTIONS(8503), + [aux_sym_close_statement_token1] = ACTIONS(8501), + [aux_sym_put_statement_token1] = ACTIONS(8501), + [aux_sym_unlock_statement_token1] = ACTIONS(8501), + [aux_sym_seek_statement_token1] = ACTIONS(8501), + [sym_reset_statement] = ACTIONS(8501), + [aux_sym_raise_event_statement_token1] = ACTIONS(8501), + [sym_stop_statement] = ACTIONS(8501), + [sym_beep_statement] = ACTIONS(8501), + [aux_sym_unload_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token2] = ACTIONS(8501), + [aux_sym_def_type_statement_token3] = ACTIONS(8501), + [aux_sym_def_type_statement_token4] = ACTIONS(8501), + [aux_sym_def_type_statement_token5] = ACTIONS(8501), + [aux_sym_def_type_statement_token6] = ACTIONS(8501), + [aux_sym_def_type_statement_token7] = ACTIONS(8501), + [aux_sym_def_type_statement_token8] = ACTIONS(8501), + [aux_sym_def_type_statement_token9] = ACTIONS(8501), + [aux_sym_def_type_statement_token10] = ACTIONS(8501), + [aux_sym_def_type_statement_token11] = ACTIONS(8501), + [aux_sym_def_type_statement_token12] = ACTIONS(8501), + [aux_sym_def_type_statement_token13] = ACTIONS(8501), + [aux_sym_def_type_statement_token14] = ACTIONS(8501), + [aux_sym_call_statement_token1] = ACTIONS(8501), + [sym__ambiguous_call_statement] = ACTIONS(8501), + [aux_sym_addressof_expression_token1] = ACTIONS(8501), + [aux_sym_type_of_expression_token1] = ACTIONS(8501), + [aux_sym_unary_expression_token1] = ACTIONS(8501), + [sym_string_literal] = ACTIONS(8503), + [sym_number_literal] = ACTIONS(8503), + [aux_sym_boolean_literal_token1] = ACTIONS(8501), + [aux_sym_boolean_literal_token2] = ACTIONS(8501), + [sym_nothing_literal] = ACTIONS(8501), + [sym_null_literal] = ACTIONS(8501), + [sym_empty_literal] = ACTIONS(8501), + [sym_date_literal] = ACTIONS(8503), + [anon_sym_POUND] = ACTIONS(8501), + }, + [STATE(3972)] = { + [sym_identifier] = ACTIONS(8509), + [sym_newline] = ACTIONS(8511), + [anon_sym_COLON] = ACTIONS(8511), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8509), + [aux_sym_frm_property_statement_token1] = ACTIONS(8509), + [anon_sym_DOT] = ACTIONS(8509), + [anon_sym_BANG] = ACTIONS(8511), + [aux_sym__attribute_identifier_token1] = ACTIONS(8509), + [aux_sym_option_statement_token3] = ACTIONS(8509), + [aux_sym_type_declaration_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8509), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8509), + [aux_sym_enum_declaration_token1] = ACTIONS(8509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8509), + [aux_sym_declare_function_statement_token1] = ACTIONS(8509), + [aux_sym_preprocessor_const_token1] = ACTIONS(8509), + [aux_sym__property_get_header_token1] = ACTIONS(8509), + [aux_sym_event_declaration_token1] = ACTIONS(8509), + [sym_static_modifier] = ACTIONS(8509), + [sym__dim_keyword] = ACTIONS(8509), + [sym__redim_keyword] = ACTIONS(8509), + [aux_sym_get_accessor_token1] = ACTIONS(8509), + [aux_sym_set_accessor_token1] = ACTIONS(8509), + [aux_sym_const_declaration_token1] = ACTIONS(8509), + [anon_sym_LPAREN] = ACTIONS(8511), + [aux_sym_as_type_clause_token2] = ACTIONS(8509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8509), + [aux_sym_visibility_token1] = ACTIONS(8509), + [aux_sym_visibility_token2] = ACTIONS(8509), + [aux_sym_elseif_fragment_token1] = ACTIONS(8509), + [aux_sym_else_fragment_token1] = ACTIONS(8509), + [aux_sym_select_statement_token1] = ACTIONS(8509), + [aux_sym__for_header_token1] = ACTIONS(8509), + [aux_sym_do_statement_token1] = ACTIONS(8509), + [aux_sym_do_condition_token1] = ACTIONS(8509), + [aux_sym_with_statement_token1] = ACTIONS(8509), + [aux_sym_exit_statement_token1] = ACTIONS(8509), + [sym_end_statement] = ACTIONS(8511), + [aux_sym_on_goto_statement_token1] = ACTIONS(8509), + [aux_sym_on_goto_statement_token2] = ACTIONS(8509), + [aux_sym_on_error_statement_token2] = ACTIONS(8509), + [sym__ambiguous_redim_statement] = ACTIONS(8511), + [aux_sym_erase_statement_token1] = ACTIONS(8509), + [aux_sym_open_statement_token1] = ACTIONS(8509), + [aux_sym_file_mode_token2] = ACTIONS(8509), + [aux_sym_file_access_token2] = ACTIONS(8509), + [aux_sym_file_lock_token2] = ACTIONS(8509), + [aux_sym_print_statement_token1] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(8511), + [anon_sym_DASH] = ACTIONS(8509), + [anon_sym_QMARK] = ACTIONS(8511), + [aux_sym_close_statement_token1] = ACTIONS(8509), + [aux_sym_put_statement_token1] = ACTIONS(8509), + [aux_sym_unlock_statement_token1] = ACTIONS(8509), + [aux_sym_seek_statement_token1] = ACTIONS(8509), + [sym_reset_statement] = ACTIONS(8509), + [aux_sym_raise_event_statement_token1] = ACTIONS(8509), + [sym_stop_statement] = ACTIONS(8509), + [sym_beep_statement] = ACTIONS(8509), + [aux_sym_unload_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token2] = ACTIONS(8509), + [aux_sym_def_type_statement_token3] = ACTIONS(8509), + [aux_sym_def_type_statement_token4] = ACTIONS(8509), + [aux_sym_def_type_statement_token5] = ACTIONS(8509), + [aux_sym_def_type_statement_token6] = ACTIONS(8509), + [aux_sym_def_type_statement_token7] = ACTIONS(8509), + [aux_sym_def_type_statement_token8] = ACTIONS(8509), + [aux_sym_def_type_statement_token9] = ACTIONS(8509), + [aux_sym_def_type_statement_token10] = ACTIONS(8509), + [aux_sym_def_type_statement_token11] = ACTIONS(8509), + [aux_sym_def_type_statement_token12] = ACTIONS(8509), + [aux_sym_def_type_statement_token13] = ACTIONS(8509), + [aux_sym_def_type_statement_token14] = ACTIONS(8509), + [aux_sym_call_statement_token1] = ACTIONS(8509), + [sym__ambiguous_call_statement] = ACTIONS(8509), + [aux_sym_addressof_expression_token1] = ACTIONS(8509), + [aux_sym_type_of_expression_token1] = ACTIONS(8509), + [aux_sym_unary_expression_token1] = ACTIONS(8509), + [sym_string_literal] = ACTIONS(8511), + [sym_number_literal] = ACTIONS(8511), + [aux_sym_boolean_literal_token1] = ACTIONS(8509), + [aux_sym_boolean_literal_token2] = ACTIONS(8509), + [sym_nothing_literal] = ACTIONS(8509), + [sym_null_literal] = ACTIONS(8509), + [sym_empty_literal] = ACTIONS(8509), + [sym_date_literal] = ACTIONS(8511), + [anon_sym_POUND] = ACTIONS(8509), + }, + [STATE(3973)] = { + [sym_identifier] = ACTIONS(9332), + [sym_newline] = ACTIONS(9334), + [anon_sym_COLON] = ACTIONS(9334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9332), + [aux_sym_frm_property_statement_token1] = ACTIONS(9332), + [anon_sym_DOT] = ACTIONS(9332), + [anon_sym_BANG] = ACTIONS(9334), + [aux_sym__attribute_identifier_token1] = ACTIONS(9332), + [aux_sym_option_statement_token3] = ACTIONS(9332), + [aux_sym_type_declaration_token1] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9332), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9332), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9332), + [aux_sym_enum_declaration_token1] = ACTIONS(9332), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9332), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9332), + [aux_sym_declare_function_statement_token1] = ACTIONS(9332), + [aux_sym_preprocessor_const_token1] = ACTIONS(9332), + [aux_sym__property_get_header_token1] = ACTIONS(9332), + [aux_sym_event_declaration_token1] = ACTIONS(9332), + [sym_static_modifier] = ACTIONS(9332), + [sym__dim_keyword] = ACTIONS(9332), + [sym__redim_keyword] = ACTIONS(9332), + [aux_sym_get_accessor_token1] = ACTIONS(9332), + [aux_sym_set_accessor_token1] = ACTIONS(9332), + [aux_sym_const_declaration_token1] = ACTIONS(9332), + [anon_sym_LPAREN] = ACTIONS(9334), + [aux_sym_as_type_clause_token2] = ACTIONS(9332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9332), + [aux_sym_visibility_token1] = ACTIONS(9332), + [aux_sym_visibility_token2] = ACTIONS(9332), + [aux_sym_elseif_fragment_token1] = ACTIONS(9332), + [aux_sym_else_fragment_token1] = ACTIONS(9332), + [aux_sym_select_statement_token1] = ACTIONS(9332), + [aux_sym__for_header_token1] = ACTIONS(9332), + [aux_sym_do_statement_token1] = ACTIONS(9332), + [aux_sym_do_condition_token1] = ACTIONS(9332), + [aux_sym_with_statement_token1] = ACTIONS(9332), + [aux_sym_exit_statement_token1] = ACTIONS(9332), + [sym_end_statement] = ACTIONS(9334), + [aux_sym_on_goto_statement_token1] = ACTIONS(9332), + [aux_sym_on_goto_statement_token2] = ACTIONS(9332), + [aux_sym_on_error_statement_token2] = ACTIONS(9332), + [sym__ambiguous_redim_statement] = ACTIONS(9334), + [aux_sym_erase_statement_token1] = ACTIONS(9332), + [aux_sym_open_statement_token1] = ACTIONS(9332), + [aux_sym_file_mode_token2] = ACTIONS(9332), + [aux_sym_file_access_token2] = ACTIONS(9332), + [aux_sym_file_lock_token2] = ACTIONS(9332), + [aux_sym_print_statement_token1] = ACTIONS(9332), + [anon_sym_PLUS] = ACTIONS(9334), + [anon_sym_DASH] = ACTIONS(9332), + [anon_sym_QMARK] = ACTIONS(9334), + [aux_sym_close_statement_token1] = ACTIONS(9332), + [aux_sym_put_statement_token1] = ACTIONS(9332), + [aux_sym_unlock_statement_token1] = ACTIONS(9332), + [aux_sym_seek_statement_token1] = ACTIONS(9332), + [sym_reset_statement] = ACTIONS(9332), + [aux_sym_raise_event_statement_token1] = ACTIONS(9332), + [sym_stop_statement] = ACTIONS(9332), + [sym_beep_statement] = ACTIONS(9332), + [aux_sym_unload_statement_token1] = ACTIONS(9332), + [aux_sym_def_type_statement_token1] = ACTIONS(9332), + [aux_sym_def_type_statement_token2] = ACTIONS(9332), + [aux_sym_def_type_statement_token3] = ACTIONS(9332), + [aux_sym_def_type_statement_token4] = ACTIONS(9332), + [aux_sym_def_type_statement_token5] = ACTIONS(9332), + [aux_sym_def_type_statement_token6] = ACTIONS(9332), + [aux_sym_def_type_statement_token7] = ACTIONS(9332), + [aux_sym_def_type_statement_token8] = ACTIONS(9332), + [aux_sym_def_type_statement_token9] = ACTIONS(9332), + [aux_sym_def_type_statement_token10] = ACTIONS(9332), + [aux_sym_def_type_statement_token11] = ACTIONS(9332), + [aux_sym_def_type_statement_token12] = ACTIONS(9332), + [aux_sym_def_type_statement_token13] = ACTIONS(9332), + [aux_sym_def_type_statement_token14] = ACTIONS(9332), + [aux_sym_call_statement_token1] = ACTIONS(9332), + [sym__ambiguous_call_statement] = ACTIONS(9332), + [aux_sym_addressof_expression_token1] = ACTIONS(9332), + [aux_sym_type_of_expression_token1] = ACTIONS(9332), + [aux_sym_unary_expression_token1] = ACTIONS(9332), + [sym_string_literal] = ACTIONS(9334), + [sym_number_literal] = ACTIONS(9334), + [aux_sym_boolean_literal_token1] = ACTIONS(9332), + [aux_sym_boolean_literal_token2] = ACTIONS(9332), + [sym_nothing_literal] = ACTIONS(9332), + [sym_null_literal] = ACTIONS(9332), + [sym_empty_literal] = ACTIONS(9332), + [sym_date_literal] = ACTIONS(9334), + [anon_sym_POUND] = ACTIONS(9332), + }, + [STATE(3974)] = { + [sym_identifier] = ACTIONS(9336), + [sym_newline] = ACTIONS(9338), + [anon_sym_COLON] = ACTIONS(9338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9336), + [aux_sym_frm_property_statement_token1] = ACTIONS(9336), + [anon_sym_DOT] = ACTIONS(9336), + [anon_sym_BANG] = ACTIONS(9338), + [aux_sym__attribute_identifier_token1] = ACTIONS(9336), + [aux_sym_option_statement_token3] = ACTIONS(9336), + [aux_sym_type_declaration_token1] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9336), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9336), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9336), + [aux_sym_enum_declaration_token1] = ACTIONS(9336), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9336), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9336), + [aux_sym_declare_function_statement_token1] = ACTIONS(9336), + [aux_sym_preprocessor_const_token1] = ACTIONS(9336), + [aux_sym__property_get_header_token1] = ACTIONS(9336), + [aux_sym_event_declaration_token1] = ACTIONS(9336), + [sym_static_modifier] = ACTIONS(9336), + [sym__dim_keyword] = ACTIONS(9336), + [sym__redim_keyword] = ACTIONS(9336), + [aux_sym_get_accessor_token1] = ACTIONS(9336), + [aux_sym_set_accessor_token1] = ACTIONS(9336), + [aux_sym_const_declaration_token1] = ACTIONS(9336), + [anon_sym_LPAREN] = ACTIONS(9338), + [aux_sym_as_type_clause_token2] = ACTIONS(9336), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9336), + [aux_sym_visibility_token1] = ACTIONS(9336), + [aux_sym_visibility_token2] = ACTIONS(9336), + [aux_sym_elseif_fragment_token1] = ACTIONS(9336), + [aux_sym_else_fragment_token1] = ACTIONS(9336), + [aux_sym_select_statement_token1] = ACTIONS(9336), + [aux_sym__for_header_token1] = ACTIONS(9336), + [aux_sym_do_statement_token1] = ACTIONS(9336), + [aux_sym_do_condition_token1] = ACTIONS(9336), + [aux_sym_with_statement_token1] = ACTIONS(9336), + [aux_sym_exit_statement_token1] = ACTIONS(9336), + [sym_end_statement] = ACTIONS(9338), + [aux_sym_on_goto_statement_token1] = ACTIONS(9336), + [aux_sym_on_goto_statement_token2] = ACTIONS(9336), + [aux_sym_on_error_statement_token2] = ACTIONS(9336), + [sym__ambiguous_redim_statement] = ACTIONS(9338), + [aux_sym_erase_statement_token1] = ACTIONS(9336), + [aux_sym_open_statement_token1] = ACTIONS(9336), + [aux_sym_file_mode_token2] = ACTIONS(9336), + [aux_sym_file_access_token2] = ACTIONS(9336), + [aux_sym_file_lock_token2] = ACTIONS(9336), + [aux_sym_print_statement_token1] = ACTIONS(9336), + [anon_sym_PLUS] = ACTIONS(9338), + [anon_sym_DASH] = ACTIONS(9336), + [anon_sym_QMARK] = ACTIONS(9338), + [aux_sym_close_statement_token1] = ACTIONS(9336), + [aux_sym_put_statement_token1] = ACTIONS(9336), + [aux_sym_unlock_statement_token1] = ACTIONS(9336), + [aux_sym_seek_statement_token1] = ACTIONS(9336), + [sym_reset_statement] = ACTIONS(9336), + [aux_sym_raise_event_statement_token1] = ACTIONS(9336), + [sym_stop_statement] = ACTIONS(9336), + [sym_beep_statement] = ACTIONS(9336), + [aux_sym_unload_statement_token1] = ACTIONS(9336), + [aux_sym_def_type_statement_token1] = ACTIONS(9336), + [aux_sym_def_type_statement_token2] = ACTIONS(9336), + [aux_sym_def_type_statement_token3] = ACTIONS(9336), + [aux_sym_def_type_statement_token4] = ACTIONS(9336), + [aux_sym_def_type_statement_token5] = ACTIONS(9336), + [aux_sym_def_type_statement_token6] = ACTIONS(9336), + [aux_sym_def_type_statement_token7] = ACTIONS(9336), + [aux_sym_def_type_statement_token8] = ACTIONS(9336), + [aux_sym_def_type_statement_token9] = ACTIONS(9336), + [aux_sym_def_type_statement_token10] = ACTIONS(9336), + [aux_sym_def_type_statement_token11] = ACTIONS(9336), + [aux_sym_def_type_statement_token12] = ACTIONS(9336), + [aux_sym_def_type_statement_token13] = ACTIONS(9336), + [aux_sym_def_type_statement_token14] = ACTIONS(9336), + [aux_sym_call_statement_token1] = ACTIONS(9336), + [sym__ambiguous_call_statement] = ACTIONS(9336), + [aux_sym_addressof_expression_token1] = ACTIONS(9336), + [aux_sym_type_of_expression_token1] = ACTIONS(9336), + [aux_sym_unary_expression_token1] = ACTIONS(9336), + [sym_string_literal] = ACTIONS(9338), + [sym_number_literal] = ACTIONS(9338), + [aux_sym_boolean_literal_token1] = ACTIONS(9336), + [aux_sym_boolean_literal_token2] = ACTIONS(9336), + [sym_nothing_literal] = ACTIONS(9336), + [sym_null_literal] = ACTIONS(9336), + [sym_empty_literal] = ACTIONS(9336), + [sym_date_literal] = ACTIONS(9338), + [anon_sym_POUND] = ACTIONS(9336), + }, + [STATE(3975)] = { + [sym_identifier] = ACTIONS(9340), + [sym_newline] = ACTIONS(9342), + [anon_sym_COLON] = ACTIONS(9342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9340), + [aux_sym_frm_property_statement_token1] = ACTIONS(9340), + [anon_sym_DOT] = ACTIONS(9340), + [anon_sym_BANG] = ACTIONS(9342), + [aux_sym__attribute_identifier_token1] = ACTIONS(9340), + [aux_sym_option_statement_token3] = ACTIONS(9340), + [aux_sym_type_declaration_token1] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9340), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9340), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9340), + [aux_sym_enum_declaration_token1] = ACTIONS(9340), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9340), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9340), + [aux_sym_declare_function_statement_token1] = ACTIONS(9340), + [aux_sym_preprocessor_const_token1] = ACTIONS(9340), + [aux_sym__property_get_header_token1] = ACTIONS(9340), + [aux_sym_event_declaration_token1] = ACTIONS(9340), + [sym_static_modifier] = ACTIONS(9340), + [sym__dim_keyword] = ACTIONS(9340), + [sym__redim_keyword] = ACTIONS(9340), + [aux_sym_get_accessor_token1] = ACTIONS(9340), + [aux_sym_set_accessor_token1] = ACTIONS(9340), + [aux_sym_const_declaration_token1] = ACTIONS(9340), + [anon_sym_LPAREN] = ACTIONS(9342), + [aux_sym_as_type_clause_token2] = ACTIONS(9340), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9340), + [aux_sym_visibility_token1] = ACTIONS(9340), + [aux_sym_visibility_token2] = ACTIONS(9340), + [aux_sym_elseif_fragment_token1] = ACTIONS(9340), + [aux_sym_else_fragment_token1] = ACTIONS(9340), + [aux_sym_select_statement_token1] = ACTIONS(9340), + [aux_sym__for_header_token1] = ACTIONS(9340), + [aux_sym_do_statement_token1] = ACTIONS(9340), + [aux_sym_do_condition_token1] = ACTIONS(9340), + [aux_sym_with_statement_token1] = ACTIONS(9340), + [aux_sym_exit_statement_token1] = ACTIONS(9340), + [sym_end_statement] = ACTIONS(9342), + [aux_sym_on_goto_statement_token1] = ACTIONS(9340), + [aux_sym_on_goto_statement_token2] = ACTIONS(9340), + [aux_sym_on_error_statement_token2] = ACTIONS(9340), + [sym__ambiguous_redim_statement] = ACTIONS(9342), + [aux_sym_erase_statement_token1] = ACTIONS(9340), + [aux_sym_open_statement_token1] = ACTIONS(9340), + [aux_sym_file_mode_token2] = ACTIONS(9340), + [aux_sym_file_access_token2] = ACTIONS(9340), + [aux_sym_file_lock_token2] = ACTIONS(9340), + [aux_sym_print_statement_token1] = ACTIONS(9340), + [anon_sym_PLUS] = ACTIONS(9342), + [anon_sym_DASH] = ACTIONS(9340), + [anon_sym_QMARK] = ACTIONS(9342), + [aux_sym_close_statement_token1] = ACTIONS(9340), + [aux_sym_put_statement_token1] = ACTIONS(9340), + [aux_sym_unlock_statement_token1] = ACTIONS(9340), + [aux_sym_seek_statement_token1] = ACTIONS(9340), + [sym_reset_statement] = ACTIONS(9340), + [aux_sym_raise_event_statement_token1] = ACTIONS(9340), + [sym_stop_statement] = ACTIONS(9340), + [sym_beep_statement] = ACTIONS(9340), + [aux_sym_unload_statement_token1] = ACTIONS(9340), + [aux_sym_def_type_statement_token1] = ACTIONS(9340), + [aux_sym_def_type_statement_token2] = ACTIONS(9340), + [aux_sym_def_type_statement_token3] = ACTIONS(9340), + [aux_sym_def_type_statement_token4] = ACTIONS(9340), + [aux_sym_def_type_statement_token5] = ACTIONS(9340), + [aux_sym_def_type_statement_token6] = ACTIONS(9340), + [aux_sym_def_type_statement_token7] = ACTIONS(9340), + [aux_sym_def_type_statement_token8] = ACTIONS(9340), + [aux_sym_def_type_statement_token9] = ACTIONS(9340), + [aux_sym_def_type_statement_token10] = ACTIONS(9340), + [aux_sym_def_type_statement_token11] = ACTIONS(9340), + [aux_sym_def_type_statement_token12] = ACTIONS(9340), + [aux_sym_def_type_statement_token13] = ACTIONS(9340), + [aux_sym_def_type_statement_token14] = ACTIONS(9340), + [aux_sym_call_statement_token1] = ACTIONS(9340), + [sym__ambiguous_call_statement] = ACTIONS(9340), + [aux_sym_addressof_expression_token1] = ACTIONS(9340), + [aux_sym_type_of_expression_token1] = ACTIONS(9340), + [aux_sym_unary_expression_token1] = ACTIONS(9340), + [sym_string_literal] = ACTIONS(9342), + [sym_number_literal] = ACTIONS(9342), + [aux_sym_boolean_literal_token1] = ACTIONS(9340), + [aux_sym_boolean_literal_token2] = ACTIONS(9340), + [sym_nothing_literal] = ACTIONS(9340), + [sym_null_literal] = ACTIONS(9340), + [sym_empty_literal] = ACTIONS(9340), + [sym_date_literal] = ACTIONS(9342), + [anon_sym_POUND] = ACTIONS(9340), + }, + [STATE(3976)] = { + [sym_identifier] = ACTIONS(9344), + [sym_newline] = ACTIONS(9346), + [anon_sym_COLON] = ACTIONS(9346), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9344), + [aux_sym_frm_property_statement_token1] = ACTIONS(9344), + [anon_sym_DOT] = ACTIONS(9344), + [anon_sym_BANG] = ACTIONS(9346), + [aux_sym__attribute_identifier_token1] = ACTIONS(9344), + [aux_sym_option_statement_token3] = ACTIONS(9344), + [aux_sym_type_declaration_token1] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9344), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9344), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9344), + [aux_sym_enum_declaration_token1] = ACTIONS(9344), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9344), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9344), + [aux_sym_declare_function_statement_token1] = ACTIONS(9344), + [aux_sym_preprocessor_const_token1] = ACTIONS(9344), + [aux_sym__property_get_header_token1] = ACTIONS(9344), + [aux_sym_event_declaration_token1] = ACTIONS(9344), + [sym_static_modifier] = ACTIONS(9344), + [sym__dim_keyword] = ACTIONS(9344), + [sym__redim_keyword] = ACTIONS(9344), + [aux_sym_get_accessor_token1] = ACTIONS(9344), + [aux_sym_set_accessor_token1] = ACTIONS(9344), + [aux_sym_const_declaration_token1] = ACTIONS(9344), + [anon_sym_LPAREN] = ACTIONS(9346), + [aux_sym_as_type_clause_token2] = ACTIONS(9344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9344), + [aux_sym_visibility_token1] = ACTIONS(9344), + [aux_sym_visibility_token2] = ACTIONS(9344), + [aux_sym_elseif_fragment_token1] = ACTIONS(9344), + [aux_sym_else_fragment_token1] = ACTIONS(9344), + [aux_sym_select_statement_token1] = ACTIONS(9344), + [aux_sym__for_header_token1] = ACTIONS(9344), + [aux_sym_do_statement_token1] = ACTIONS(9344), + [aux_sym_do_condition_token1] = ACTIONS(9344), + [aux_sym_with_statement_token1] = ACTIONS(9344), + [aux_sym_exit_statement_token1] = ACTIONS(9344), + [sym_end_statement] = ACTIONS(9346), + [aux_sym_on_goto_statement_token1] = ACTIONS(9344), + [aux_sym_on_goto_statement_token2] = ACTIONS(9344), + [aux_sym_on_error_statement_token2] = ACTIONS(9344), + [sym__ambiguous_redim_statement] = ACTIONS(9346), + [aux_sym_erase_statement_token1] = ACTIONS(9344), + [aux_sym_open_statement_token1] = ACTIONS(9344), + [aux_sym_file_mode_token2] = ACTIONS(9344), + [aux_sym_file_access_token2] = ACTIONS(9344), + [aux_sym_file_lock_token2] = ACTIONS(9344), + [aux_sym_print_statement_token1] = ACTIONS(9344), + [anon_sym_PLUS] = ACTIONS(9346), + [anon_sym_DASH] = ACTIONS(9344), + [anon_sym_QMARK] = ACTIONS(9346), + [aux_sym_close_statement_token1] = ACTIONS(9344), + [aux_sym_put_statement_token1] = ACTIONS(9344), + [aux_sym_unlock_statement_token1] = ACTIONS(9344), + [aux_sym_seek_statement_token1] = ACTIONS(9344), + [sym_reset_statement] = ACTIONS(9344), + [aux_sym_raise_event_statement_token1] = ACTIONS(9344), + [sym_stop_statement] = ACTIONS(9344), + [sym_beep_statement] = ACTIONS(9344), + [aux_sym_unload_statement_token1] = ACTIONS(9344), + [aux_sym_def_type_statement_token1] = ACTIONS(9344), + [aux_sym_def_type_statement_token2] = ACTIONS(9344), + [aux_sym_def_type_statement_token3] = ACTIONS(9344), + [aux_sym_def_type_statement_token4] = ACTIONS(9344), + [aux_sym_def_type_statement_token5] = ACTIONS(9344), + [aux_sym_def_type_statement_token6] = ACTIONS(9344), + [aux_sym_def_type_statement_token7] = ACTIONS(9344), + [aux_sym_def_type_statement_token8] = ACTIONS(9344), + [aux_sym_def_type_statement_token9] = ACTIONS(9344), + [aux_sym_def_type_statement_token10] = ACTIONS(9344), + [aux_sym_def_type_statement_token11] = ACTIONS(9344), + [aux_sym_def_type_statement_token12] = ACTIONS(9344), + [aux_sym_def_type_statement_token13] = ACTIONS(9344), + [aux_sym_def_type_statement_token14] = ACTIONS(9344), + [aux_sym_call_statement_token1] = ACTIONS(9344), + [sym__ambiguous_call_statement] = ACTIONS(9344), + [aux_sym_addressof_expression_token1] = ACTIONS(9344), + [aux_sym_type_of_expression_token1] = ACTIONS(9344), + [aux_sym_unary_expression_token1] = ACTIONS(9344), + [sym_string_literal] = ACTIONS(9346), + [sym_number_literal] = ACTIONS(9346), + [aux_sym_boolean_literal_token1] = ACTIONS(9344), + [aux_sym_boolean_literal_token2] = ACTIONS(9344), + [sym_nothing_literal] = ACTIONS(9344), + [sym_null_literal] = ACTIONS(9344), + [sym_empty_literal] = ACTIONS(9344), + [sym_date_literal] = ACTIONS(9346), + [anon_sym_POUND] = ACTIONS(9344), + }, + [STATE(3977)] = { + [sym_identifier] = ACTIONS(9348), + [sym_newline] = ACTIONS(9350), + [anon_sym_COLON] = ACTIONS(9350), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9348), + [aux_sym_frm_property_statement_token1] = ACTIONS(9348), + [anon_sym_DOT] = ACTIONS(9348), + [anon_sym_BANG] = ACTIONS(9350), + [aux_sym__attribute_identifier_token1] = ACTIONS(9348), + [aux_sym_option_statement_token3] = ACTIONS(9348), + [aux_sym_type_declaration_token1] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9348), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9348), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9348), + [aux_sym_enum_declaration_token1] = ACTIONS(9348), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9348), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9348), + [aux_sym_declare_function_statement_token1] = ACTIONS(9348), + [aux_sym_preprocessor_const_token1] = ACTIONS(9348), + [aux_sym__property_get_header_token1] = ACTIONS(9348), + [aux_sym_event_declaration_token1] = ACTIONS(9348), + [sym_static_modifier] = ACTIONS(9348), + [sym__dim_keyword] = ACTIONS(9348), + [sym__redim_keyword] = ACTIONS(9348), + [aux_sym_get_accessor_token1] = ACTIONS(9348), + [aux_sym_set_accessor_token1] = ACTIONS(9348), + [aux_sym_const_declaration_token1] = ACTIONS(9348), + [anon_sym_LPAREN] = ACTIONS(9350), + [aux_sym_as_type_clause_token2] = ACTIONS(9348), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9348), + [aux_sym_visibility_token1] = ACTIONS(9348), + [aux_sym_visibility_token2] = ACTIONS(9348), + [aux_sym_elseif_fragment_token1] = ACTIONS(9348), + [aux_sym_else_fragment_token1] = ACTIONS(9348), + [aux_sym_select_statement_token1] = ACTIONS(9348), + [aux_sym__for_header_token1] = ACTIONS(9348), + [aux_sym_do_statement_token1] = ACTIONS(9348), + [aux_sym_do_condition_token1] = ACTIONS(9348), + [aux_sym_with_statement_token1] = ACTIONS(9348), + [aux_sym_exit_statement_token1] = ACTIONS(9348), + [sym_end_statement] = ACTIONS(9350), + [aux_sym_on_goto_statement_token1] = ACTIONS(9348), + [aux_sym_on_goto_statement_token2] = ACTIONS(9348), + [aux_sym_on_error_statement_token2] = ACTIONS(9348), + [sym__ambiguous_redim_statement] = ACTIONS(9350), + [aux_sym_erase_statement_token1] = ACTIONS(9348), + [aux_sym_open_statement_token1] = ACTIONS(9348), + [aux_sym_file_mode_token2] = ACTIONS(9348), + [aux_sym_file_access_token2] = ACTIONS(9348), + [aux_sym_file_lock_token2] = ACTIONS(9348), + [aux_sym_print_statement_token1] = ACTIONS(9348), + [anon_sym_PLUS] = ACTIONS(9350), + [anon_sym_DASH] = ACTIONS(9348), + [anon_sym_QMARK] = ACTIONS(9350), + [aux_sym_close_statement_token1] = ACTIONS(9348), + [aux_sym_put_statement_token1] = ACTIONS(9348), + [aux_sym_unlock_statement_token1] = ACTIONS(9348), + [aux_sym_seek_statement_token1] = ACTIONS(9348), + [sym_reset_statement] = ACTIONS(9348), + [aux_sym_raise_event_statement_token1] = ACTIONS(9348), + [sym_stop_statement] = ACTIONS(9348), + [sym_beep_statement] = ACTIONS(9348), + [aux_sym_unload_statement_token1] = ACTIONS(9348), + [aux_sym_def_type_statement_token1] = ACTIONS(9348), + [aux_sym_def_type_statement_token2] = ACTIONS(9348), + [aux_sym_def_type_statement_token3] = ACTIONS(9348), + [aux_sym_def_type_statement_token4] = ACTIONS(9348), + [aux_sym_def_type_statement_token5] = ACTIONS(9348), + [aux_sym_def_type_statement_token6] = ACTIONS(9348), + [aux_sym_def_type_statement_token7] = ACTIONS(9348), + [aux_sym_def_type_statement_token8] = ACTIONS(9348), + [aux_sym_def_type_statement_token9] = ACTIONS(9348), + [aux_sym_def_type_statement_token10] = ACTIONS(9348), + [aux_sym_def_type_statement_token11] = ACTIONS(9348), + [aux_sym_def_type_statement_token12] = ACTIONS(9348), + [aux_sym_def_type_statement_token13] = ACTIONS(9348), + [aux_sym_def_type_statement_token14] = ACTIONS(9348), + [aux_sym_call_statement_token1] = ACTIONS(9348), + [sym__ambiguous_call_statement] = ACTIONS(9348), + [aux_sym_addressof_expression_token1] = ACTIONS(9348), + [aux_sym_type_of_expression_token1] = ACTIONS(9348), + [aux_sym_unary_expression_token1] = ACTIONS(9348), + [sym_string_literal] = ACTIONS(9350), + [sym_number_literal] = ACTIONS(9350), + [aux_sym_boolean_literal_token1] = ACTIONS(9348), + [aux_sym_boolean_literal_token2] = ACTIONS(9348), + [sym_nothing_literal] = ACTIONS(9348), + [sym_null_literal] = ACTIONS(9348), + [sym_empty_literal] = ACTIONS(9348), + [sym_date_literal] = ACTIONS(9350), + [anon_sym_POUND] = ACTIONS(9348), + }, + [STATE(3978)] = { + [sym_identifier] = ACTIONS(9352), + [sym_newline] = ACTIONS(9354), + [anon_sym_COLON] = ACTIONS(9354), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9352), + [aux_sym_frm_property_statement_token1] = ACTIONS(9352), + [anon_sym_DOT] = ACTIONS(9352), + [anon_sym_BANG] = ACTIONS(9354), + [aux_sym__attribute_identifier_token1] = ACTIONS(9352), + [aux_sym_option_statement_token3] = ACTIONS(9352), + [aux_sym_type_declaration_token1] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9352), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9352), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9352), + [aux_sym_enum_declaration_token1] = ACTIONS(9352), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9352), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9352), + [aux_sym_declare_function_statement_token1] = ACTIONS(9352), + [aux_sym_preprocessor_const_token1] = ACTIONS(9352), + [aux_sym__property_get_header_token1] = ACTIONS(9352), + [aux_sym_event_declaration_token1] = ACTIONS(9352), + [sym_static_modifier] = ACTIONS(9352), + [sym__dim_keyword] = ACTIONS(9352), + [sym__redim_keyword] = ACTIONS(9352), + [aux_sym_get_accessor_token1] = ACTIONS(9352), + [aux_sym_set_accessor_token1] = ACTIONS(9352), + [aux_sym_const_declaration_token1] = ACTIONS(9352), + [anon_sym_LPAREN] = ACTIONS(9354), + [aux_sym_as_type_clause_token2] = ACTIONS(9352), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9352), + [aux_sym_visibility_token1] = ACTIONS(9352), + [aux_sym_visibility_token2] = ACTIONS(9352), + [aux_sym_elseif_fragment_token1] = ACTIONS(9352), + [aux_sym_else_fragment_token1] = ACTIONS(9352), + [aux_sym_select_statement_token1] = ACTIONS(9352), + [aux_sym__for_header_token1] = ACTIONS(9352), + [aux_sym_do_statement_token1] = ACTIONS(9352), + [aux_sym_do_condition_token1] = ACTIONS(9352), + [aux_sym_with_statement_token1] = ACTIONS(9352), + [aux_sym_exit_statement_token1] = ACTIONS(9352), + [sym_end_statement] = ACTIONS(9354), + [aux_sym_on_goto_statement_token1] = ACTIONS(9352), + [aux_sym_on_goto_statement_token2] = ACTIONS(9352), + [aux_sym_on_error_statement_token2] = ACTIONS(9352), + [sym__ambiguous_redim_statement] = ACTIONS(9354), + [aux_sym_erase_statement_token1] = ACTIONS(9352), + [aux_sym_open_statement_token1] = ACTIONS(9352), + [aux_sym_file_mode_token2] = ACTIONS(9352), + [aux_sym_file_access_token2] = ACTIONS(9352), + [aux_sym_file_lock_token2] = ACTIONS(9352), + [aux_sym_print_statement_token1] = ACTIONS(9352), + [anon_sym_PLUS] = ACTIONS(9354), + [anon_sym_DASH] = ACTIONS(9352), + [anon_sym_QMARK] = ACTIONS(9354), + [aux_sym_close_statement_token1] = ACTIONS(9352), + [aux_sym_put_statement_token1] = ACTIONS(9352), + [aux_sym_unlock_statement_token1] = ACTIONS(9352), + [aux_sym_seek_statement_token1] = ACTIONS(9352), + [sym_reset_statement] = ACTIONS(9352), + [aux_sym_raise_event_statement_token1] = ACTIONS(9352), + [sym_stop_statement] = ACTIONS(9352), + [sym_beep_statement] = ACTIONS(9352), + [aux_sym_unload_statement_token1] = ACTIONS(9352), + [aux_sym_def_type_statement_token1] = ACTIONS(9352), + [aux_sym_def_type_statement_token2] = ACTIONS(9352), + [aux_sym_def_type_statement_token3] = ACTIONS(9352), + [aux_sym_def_type_statement_token4] = ACTIONS(9352), + [aux_sym_def_type_statement_token5] = ACTIONS(9352), + [aux_sym_def_type_statement_token6] = ACTIONS(9352), + [aux_sym_def_type_statement_token7] = ACTIONS(9352), + [aux_sym_def_type_statement_token8] = ACTIONS(9352), + [aux_sym_def_type_statement_token9] = ACTIONS(9352), + [aux_sym_def_type_statement_token10] = ACTIONS(9352), + [aux_sym_def_type_statement_token11] = ACTIONS(9352), + [aux_sym_def_type_statement_token12] = ACTIONS(9352), + [aux_sym_def_type_statement_token13] = ACTIONS(9352), + [aux_sym_def_type_statement_token14] = ACTIONS(9352), + [aux_sym_call_statement_token1] = ACTIONS(9352), + [sym__ambiguous_call_statement] = ACTIONS(9352), + [aux_sym_addressof_expression_token1] = ACTIONS(9352), + [aux_sym_type_of_expression_token1] = ACTIONS(9352), + [aux_sym_unary_expression_token1] = ACTIONS(9352), + [sym_string_literal] = ACTIONS(9354), + [sym_number_literal] = ACTIONS(9354), + [aux_sym_boolean_literal_token1] = ACTIONS(9352), + [aux_sym_boolean_literal_token2] = ACTIONS(9352), + [sym_nothing_literal] = ACTIONS(9352), + [sym_null_literal] = ACTIONS(9352), + [sym_empty_literal] = ACTIONS(9352), + [sym_date_literal] = ACTIONS(9354), + [anon_sym_POUND] = ACTIONS(9352), + }, + [STATE(3979)] = { + [sym_identifier] = ACTIONS(9356), + [sym_newline] = ACTIONS(9358), + [anon_sym_COLON] = ACTIONS(9358), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9356), + [aux_sym_frm_property_statement_token1] = ACTIONS(9356), + [anon_sym_DOT] = ACTIONS(9356), + [anon_sym_BANG] = ACTIONS(9358), + [aux_sym__attribute_identifier_token1] = ACTIONS(9356), + [aux_sym_option_statement_token3] = ACTIONS(9356), + [aux_sym_type_declaration_token1] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9356), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9356), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9356), + [aux_sym_enum_declaration_token1] = ACTIONS(9356), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9356), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9356), + [aux_sym_declare_function_statement_token1] = ACTIONS(9356), + [aux_sym_preprocessor_const_token1] = ACTIONS(9356), + [aux_sym__property_get_header_token1] = ACTIONS(9356), + [aux_sym_event_declaration_token1] = ACTIONS(9356), + [sym_static_modifier] = ACTIONS(9356), + [sym__dim_keyword] = ACTIONS(9356), + [sym__redim_keyword] = ACTIONS(9356), + [aux_sym_get_accessor_token1] = ACTIONS(9356), + [aux_sym_set_accessor_token1] = ACTIONS(9356), + [aux_sym_const_declaration_token1] = ACTIONS(9356), + [anon_sym_LPAREN] = ACTIONS(9358), + [aux_sym_as_type_clause_token2] = ACTIONS(9356), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9356), + [aux_sym_visibility_token1] = ACTIONS(9356), + [aux_sym_visibility_token2] = ACTIONS(9356), + [aux_sym_elseif_fragment_token1] = ACTIONS(9356), + [aux_sym_else_fragment_token1] = ACTIONS(9356), + [aux_sym_select_statement_token1] = ACTIONS(9356), + [aux_sym__for_header_token1] = ACTIONS(9356), + [aux_sym_do_statement_token1] = ACTIONS(9356), + [aux_sym_do_condition_token1] = ACTIONS(9356), + [aux_sym_with_statement_token1] = ACTIONS(9356), + [aux_sym_exit_statement_token1] = ACTIONS(9356), + [sym_end_statement] = ACTIONS(9358), + [aux_sym_on_goto_statement_token1] = ACTIONS(9356), + [aux_sym_on_goto_statement_token2] = ACTIONS(9356), + [aux_sym_on_error_statement_token2] = ACTIONS(9356), + [sym__ambiguous_redim_statement] = ACTIONS(9358), + [aux_sym_erase_statement_token1] = ACTIONS(9356), + [aux_sym_open_statement_token1] = ACTIONS(9356), + [aux_sym_file_mode_token2] = ACTIONS(9356), + [aux_sym_file_access_token2] = ACTIONS(9356), + [aux_sym_file_lock_token2] = ACTIONS(9356), + [aux_sym_print_statement_token1] = ACTIONS(9356), + [anon_sym_PLUS] = ACTIONS(9358), + [anon_sym_DASH] = ACTIONS(9356), + [anon_sym_QMARK] = ACTIONS(9358), + [aux_sym_close_statement_token1] = ACTIONS(9356), + [aux_sym_put_statement_token1] = ACTIONS(9356), + [aux_sym_unlock_statement_token1] = ACTIONS(9356), + [aux_sym_seek_statement_token1] = ACTIONS(9356), + [sym_reset_statement] = ACTIONS(9356), + [aux_sym_raise_event_statement_token1] = ACTIONS(9356), + [sym_stop_statement] = ACTIONS(9356), + [sym_beep_statement] = ACTIONS(9356), + [aux_sym_unload_statement_token1] = ACTIONS(9356), + [aux_sym_def_type_statement_token1] = ACTIONS(9356), + [aux_sym_def_type_statement_token2] = ACTIONS(9356), + [aux_sym_def_type_statement_token3] = ACTIONS(9356), + [aux_sym_def_type_statement_token4] = ACTIONS(9356), + [aux_sym_def_type_statement_token5] = ACTIONS(9356), + [aux_sym_def_type_statement_token6] = ACTIONS(9356), + [aux_sym_def_type_statement_token7] = ACTIONS(9356), + [aux_sym_def_type_statement_token8] = ACTIONS(9356), + [aux_sym_def_type_statement_token9] = ACTIONS(9356), + [aux_sym_def_type_statement_token10] = ACTIONS(9356), + [aux_sym_def_type_statement_token11] = ACTIONS(9356), + [aux_sym_def_type_statement_token12] = ACTIONS(9356), + [aux_sym_def_type_statement_token13] = ACTIONS(9356), + [aux_sym_def_type_statement_token14] = ACTIONS(9356), + [aux_sym_call_statement_token1] = ACTIONS(9356), + [sym__ambiguous_call_statement] = ACTIONS(9356), + [aux_sym_addressof_expression_token1] = ACTIONS(9356), + [aux_sym_type_of_expression_token1] = ACTIONS(9356), + [aux_sym_unary_expression_token1] = ACTIONS(9356), + [sym_string_literal] = ACTIONS(9358), + [sym_number_literal] = ACTIONS(9358), + [aux_sym_boolean_literal_token1] = ACTIONS(9356), + [aux_sym_boolean_literal_token2] = ACTIONS(9356), + [sym_nothing_literal] = ACTIONS(9356), + [sym_null_literal] = ACTIONS(9356), + [sym_empty_literal] = ACTIONS(9356), + [sym_date_literal] = ACTIONS(9358), + [anon_sym_POUND] = ACTIONS(9356), + }, + [STATE(3980)] = { + [sym_identifier] = ACTIONS(9360), + [sym_newline] = ACTIONS(9362), + [anon_sym_COLON] = ACTIONS(9362), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9360), + [aux_sym_frm_property_statement_token1] = ACTIONS(9360), + [anon_sym_DOT] = ACTIONS(9360), + [anon_sym_BANG] = ACTIONS(9362), + [aux_sym__attribute_identifier_token1] = ACTIONS(9360), + [aux_sym_option_statement_token3] = ACTIONS(9360), + [aux_sym_type_declaration_token1] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9360), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9360), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9360), + [aux_sym_enum_declaration_token1] = ACTIONS(9360), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9360), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9360), + [aux_sym_declare_function_statement_token1] = ACTIONS(9360), + [aux_sym_preprocessor_const_token1] = ACTIONS(9360), + [aux_sym__property_get_header_token1] = ACTIONS(9360), + [aux_sym_event_declaration_token1] = ACTIONS(9360), + [sym_static_modifier] = ACTIONS(9360), + [sym__dim_keyword] = ACTIONS(9360), + [sym__redim_keyword] = ACTIONS(9360), + [aux_sym_get_accessor_token1] = ACTIONS(9360), + [aux_sym_set_accessor_token1] = ACTIONS(9360), + [aux_sym_const_declaration_token1] = ACTIONS(9360), + [anon_sym_LPAREN] = ACTIONS(9362), + [aux_sym_as_type_clause_token2] = ACTIONS(9360), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9360), + [aux_sym_visibility_token1] = ACTIONS(9360), + [aux_sym_visibility_token2] = ACTIONS(9360), + [aux_sym_elseif_fragment_token1] = ACTIONS(9360), + [aux_sym_else_fragment_token1] = ACTIONS(9360), + [aux_sym_select_statement_token1] = ACTIONS(9360), + [aux_sym__for_header_token1] = ACTIONS(9360), + [aux_sym_do_statement_token1] = ACTIONS(9360), + [aux_sym_do_condition_token1] = ACTIONS(9360), + [aux_sym_with_statement_token1] = ACTIONS(9360), + [aux_sym_exit_statement_token1] = ACTIONS(9360), + [sym_end_statement] = ACTIONS(9362), + [aux_sym_on_goto_statement_token1] = ACTIONS(9360), + [aux_sym_on_goto_statement_token2] = ACTIONS(9360), + [aux_sym_on_error_statement_token2] = ACTIONS(9360), + [sym__ambiguous_redim_statement] = ACTIONS(9362), + [aux_sym_erase_statement_token1] = ACTIONS(9360), + [aux_sym_open_statement_token1] = ACTIONS(9360), + [aux_sym_file_mode_token2] = ACTIONS(9360), + [aux_sym_file_access_token2] = ACTIONS(9360), + [aux_sym_file_lock_token2] = ACTIONS(9360), + [aux_sym_print_statement_token1] = ACTIONS(9360), + [anon_sym_PLUS] = ACTIONS(9362), + [anon_sym_DASH] = ACTIONS(9360), + [anon_sym_QMARK] = ACTIONS(9362), + [aux_sym_close_statement_token1] = ACTIONS(9360), + [aux_sym_put_statement_token1] = ACTIONS(9360), + [aux_sym_unlock_statement_token1] = ACTIONS(9360), + [aux_sym_seek_statement_token1] = ACTIONS(9360), + [sym_reset_statement] = ACTIONS(9360), + [aux_sym_raise_event_statement_token1] = ACTIONS(9360), + [sym_stop_statement] = ACTIONS(9360), + [sym_beep_statement] = ACTIONS(9360), + [aux_sym_unload_statement_token1] = ACTIONS(9360), + [aux_sym_def_type_statement_token1] = ACTIONS(9360), + [aux_sym_def_type_statement_token2] = ACTIONS(9360), + [aux_sym_def_type_statement_token3] = ACTIONS(9360), + [aux_sym_def_type_statement_token4] = ACTIONS(9360), + [aux_sym_def_type_statement_token5] = ACTIONS(9360), + [aux_sym_def_type_statement_token6] = ACTIONS(9360), + [aux_sym_def_type_statement_token7] = ACTIONS(9360), + [aux_sym_def_type_statement_token8] = ACTIONS(9360), + [aux_sym_def_type_statement_token9] = ACTIONS(9360), + [aux_sym_def_type_statement_token10] = ACTIONS(9360), + [aux_sym_def_type_statement_token11] = ACTIONS(9360), + [aux_sym_def_type_statement_token12] = ACTIONS(9360), + [aux_sym_def_type_statement_token13] = ACTIONS(9360), + [aux_sym_def_type_statement_token14] = ACTIONS(9360), + [aux_sym_call_statement_token1] = ACTIONS(9360), + [sym__ambiguous_call_statement] = ACTIONS(9360), + [aux_sym_addressof_expression_token1] = ACTIONS(9360), + [aux_sym_type_of_expression_token1] = ACTIONS(9360), + [aux_sym_unary_expression_token1] = ACTIONS(9360), + [sym_string_literal] = ACTIONS(9362), + [sym_number_literal] = ACTIONS(9362), + [aux_sym_boolean_literal_token1] = ACTIONS(9360), + [aux_sym_boolean_literal_token2] = ACTIONS(9360), + [sym_nothing_literal] = ACTIONS(9360), + [sym_null_literal] = ACTIONS(9360), + [sym_empty_literal] = ACTIONS(9360), + [sym_date_literal] = ACTIONS(9362), + [anon_sym_POUND] = ACTIONS(9360), + }, + [STATE(3981)] = { + [sym_identifier] = ACTIONS(9364), + [sym_newline] = ACTIONS(9366), + [anon_sym_COLON] = ACTIONS(9366), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9364), + [aux_sym_frm_property_statement_token1] = ACTIONS(9364), + [anon_sym_DOT] = ACTIONS(9364), + [anon_sym_BANG] = ACTIONS(9366), + [aux_sym__attribute_identifier_token1] = ACTIONS(9364), + [aux_sym_option_statement_token3] = ACTIONS(9364), + [aux_sym_type_declaration_token1] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9364), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9364), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9364), + [aux_sym_enum_declaration_token1] = ACTIONS(9364), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9364), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9364), + [aux_sym_declare_function_statement_token1] = ACTIONS(9364), + [aux_sym_preprocessor_const_token1] = ACTIONS(9364), + [aux_sym__property_get_header_token1] = ACTIONS(9364), + [aux_sym_event_declaration_token1] = ACTIONS(9364), + [sym_static_modifier] = ACTIONS(9364), + [sym__dim_keyword] = ACTIONS(9364), + [sym__redim_keyword] = ACTIONS(9364), + [aux_sym_get_accessor_token1] = ACTIONS(9364), + [aux_sym_set_accessor_token1] = ACTIONS(9364), + [aux_sym_const_declaration_token1] = ACTIONS(9364), + [anon_sym_LPAREN] = ACTIONS(9366), + [aux_sym_as_type_clause_token2] = ACTIONS(9364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9364), + [aux_sym_visibility_token1] = ACTIONS(9364), + [aux_sym_visibility_token2] = ACTIONS(9364), + [aux_sym_elseif_fragment_token1] = ACTIONS(9364), + [aux_sym_else_fragment_token1] = ACTIONS(9364), + [aux_sym_select_statement_token1] = ACTIONS(9364), + [aux_sym__for_header_token1] = ACTIONS(9364), + [aux_sym_do_statement_token1] = ACTIONS(9364), + [aux_sym_do_condition_token1] = ACTIONS(9364), + [aux_sym_with_statement_token1] = ACTIONS(9364), + [aux_sym_exit_statement_token1] = ACTIONS(9364), + [sym_end_statement] = ACTIONS(9366), + [aux_sym_on_goto_statement_token1] = ACTIONS(9364), + [aux_sym_on_goto_statement_token2] = ACTIONS(9364), + [aux_sym_on_error_statement_token2] = ACTIONS(9364), + [sym__ambiguous_redim_statement] = ACTIONS(9366), + [aux_sym_erase_statement_token1] = ACTIONS(9364), + [aux_sym_open_statement_token1] = ACTIONS(9364), + [aux_sym_file_mode_token2] = ACTIONS(9364), + [aux_sym_file_access_token2] = ACTIONS(9364), + [aux_sym_file_lock_token2] = ACTIONS(9364), + [aux_sym_print_statement_token1] = ACTIONS(9364), + [anon_sym_PLUS] = ACTIONS(9366), + [anon_sym_DASH] = ACTIONS(9364), + [anon_sym_QMARK] = ACTIONS(9366), + [aux_sym_close_statement_token1] = ACTIONS(9364), + [aux_sym_put_statement_token1] = ACTIONS(9364), + [aux_sym_unlock_statement_token1] = ACTIONS(9364), + [aux_sym_seek_statement_token1] = ACTIONS(9364), + [sym_reset_statement] = ACTIONS(9364), + [aux_sym_raise_event_statement_token1] = ACTIONS(9364), + [sym_stop_statement] = ACTIONS(9364), + [sym_beep_statement] = ACTIONS(9364), + [aux_sym_unload_statement_token1] = ACTIONS(9364), + [aux_sym_def_type_statement_token1] = ACTIONS(9364), + [aux_sym_def_type_statement_token2] = ACTIONS(9364), + [aux_sym_def_type_statement_token3] = ACTIONS(9364), + [aux_sym_def_type_statement_token4] = ACTIONS(9364), + [aux_sym_def_type_statement_token5] = ACTIONS(9364), + [aux_sym_def_type_statement_token6] = ACTIONS(9364), + [aux_sym_def_type_statement_token7] = ACTIONS(9364), + [aux_sym_def_type_statement_token8] = ACTIONS(9364), + [aux_sym_def_type_statement_token9] = ACTIONS(9364), + [aux_sym_def_type_statement_token10] = ACTIONS(9364), + [aux_sym_def_type_statement_token11] = ACTIONS(9364), + [aux_sym_def_type_statement_token12] = ACTIONS(9364), + [aux_sym_def_type_statement_token13] = ACTIONS(9364), + [aux_sym_def_type_statement_token14] = ACTIONS(9364), + [aux_sym_call_statement_token1] = ACTIONS(9364), + [sym__ambiguous_call_statement] = ACTIONS(9364), + [aux_sym_addressof_expression_token1] = ACTIONS(9364), + [aux_sym_type_of_expression_token1] = ACTIONS(9364), + [aux_sym_unary_expression_token1] = ACTIONS(9364), + [sym_string_literal] = ACTIONS(9366), + [sym_number_literal] = ACTIONS(9366), + [aux_sym_boolean_literal_token1] = ACTIONS(9364), + [aux_sym_boolean_literal_token2] = ACTIONS(9364), + [sym_nothing_literal] = ACTIONS(9364), + [sym_null_literal] = ACTIONS(9364), + [sym_empty_literal] = ACTIONS(9364), + [sym_date_literal] = ACTIONS(9366), + [anon_sym_POUND] = ACTIONS(9364), + }, + [STATE(3982)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(3989), + [sym_identifier] = ACTIONS(8529), + [sym_newline] = ACTIONS(8531), + [anon_sym_COLON] = ACTIONS(8531), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8529), + [aux_sym_frm_property_statement_token1] = ACTIONS(8529), + [anon_sym_DOT] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(8531), + [aux_sym__attribute_identifier_token1] = ACTIONS(8529), + [aux_sym_option_statement_token3] = ACTIONS(8529), + [aux_sym_type_declaration_token1] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8529), + [aux_sym_enum_declaration_token1] = ACTIONS(8529), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8529), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8529), + [aux_sym_declare_function_statement_token1] = ACTIONS(8529), + [aux_sym_preprocessor_const_token1] = ACTIONS(8529), + [aux_sym__property_get_header_token1] = ACTIONS(8529), + [aux_sym_event_declaration_token1] = ACTIONS(8529), + [sym_static_modifier] = ACTIONS(8529), + [sym__dim_keyword] = ACTIONS(8529), + [sym__redim_keyword] = ACTIONS(8529), + [aux_sym_get_accessor_token1] = ACTIONS(8529), + [aux_sym_set_accessor_token1] = ACTIONS(8529), + [anon_sym_COMMA] = ACTIONS(9368), + [aux_sym_const_declaration_token1] = ACTIONS(8529), + [anon_sym_LPAREN] = ACTIONS(8531), + [aux_sym_as_type_clause_token2] = ACTIONS(8529), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8529), + [aux_sym_visibility_token1] = ACTIONS(8529), + [aux_sym_visibility_token2] = ACTIONS(8529), + [aux_sym_elseif_fragment_token1] = ACTIONS(8529), + [aux_sym_else_fragment_token1] = ACTIONS(8529), + [aux_sym_select_statement_token1] = ACTIONS(8529), + [aux_sym__for_header_token1] = ACTIONS(8529), + [aux_sym_do_statement_token1] = ACTIONS(8529), + [aux_sym_do_condition_token1] = ACTIONS(8529), + [aux_sym_with_statement_token1] = ACTIONS(8529), + [aux_sym_exit_statement_token1] = ACTIONS(8529), + [sym_end_statement] = ACTIONS(8531), + [aux_sym_on_goto_statement_token1] = ACTIONS(8529), + [aux_sym_on_goto_statement_token2] = ACTIONS(8529), + [aux_sym_on_error_statement_token2] = ACTIONS(8529), + [sym__ambiguous_redim_statement] = ACTIONS(8531), + [aux_sym_erase_statement_token1] = ACTIONS(8529), + [aux_sym_open_statement_token1] = ACTIONS(8529), + [aux_sym_file_mode_token2] = ACTIONS(8529), + [aux_sym_file_access_token2] = ACTIONS(8529), + [aux_sym_file_lock_token2] = ACTIONS(8529), + [aux_sym_print_statement_token1] = ACTIONS(8529), + [anon_sym_PLUS] = ACTIONS(8531), + [anon_sym_DASH] = ACTIONS(8529), + [anon_sym_QMARK] = ACTIONS(8531), + [aux_sym_close_statement_token1] = ACTIONS(8529), + [aux_sym_put_statement_token1] = ACTIONS(8529), + [aux_sym_unlock_statement_token1] = ACTIONS(8529), + [aux_sym_seek_statement_token1] = ACTIONS(8529), + [sym_reset_statement] = ACTIONS(8529), + [aux_sym_raise_event_statement_token1] = ACTIONS(8529), + [sym_stop_statement] = ACTIONS(8529), + [sym_beep_statement] = ACTIONS(8529), + [aux_sym_unload_statement_token1] = ACTIONS(8529), + [aux_sym_def_type_statement_token1] = ACTIONS(8529), + [aux_sym_def_type_statement_token2] = ACTIONS(8529), + [aux_sym_def_type_statement_token3] = ACTIONS(8529), + [aux_sym_def_type_statement_token4] = ACTIONS(8529), + [aux_sym_def_type_statement_token5] = ACTIONS(8529), + [aux_sym_def_type_statement_token6] = ACTIONS(8529), + [aux_sym_def_type_statement_token7] = ACTIONS(8529), + [aux_sym_def_type_statement_token8] = ACTIONS(8529), + [aux_sym_def_type_statement_token9] = ACTIONS(8529), + [aux_sym_def_type_statement_token10] = ACTIONS(8529), + [aux_sym_def_type_statement_token11] = ACTIONS(8529), + [aux_sym_def_type_statement_token12] = ACTIONS(8529), + [aux_sym_def_type_statement_token13] = ACTIONS(8529), + [aux_sym_def_type_statement_token14] = ACTIONS(8529), + [aux_sym_call_statement_token1] = ACTIONS(8529), + [sym__ambiguous_call_statement] = ACTIONS(8529), + [aux_sym_addressof_expression_token1] = ACTIONS(8529), + [aux_sym_type_of_expression_token1] = ACTIONS(8529), + [aux_sym_unary_expression_token1] = ACTIONS(8529), + [sym_string_literal] = ACTIONS(8531), + [sym_number_literal] = ACTIONS(8531), + [aux_sym_boolean_literal_token1] = ACTIONS(8529), + [aux_sym_boolean_literal_token2] = ACTIONS(8529), + [sym_nothing_literal] = ACTIONS(8529), + [sym_null_literal] = ACTIONS(8529), + [sym_empty_literal] = ACTIONS(8529), + [sym_date_literal] = ACTIONS(8531), + [anon_sym_POUND] = ACTIONS(8529), + }, + [STATE(3983)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(3990), + [sym_identifier] = ACTIONS(8540), + [sym_newline] = ACTIONS(8542), + [anon_sym_COLON] = ACTIONS(8542), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8540), + [aux_sym_frm_property_statement_token1] = ACTIONS(8540), + [anon_sym_DOT] = ACTIONS(8540), + [anon_sym_BANG] = ACTIONS(8542), + [aux_sym__attribute_identifier_token1] = ACTIONS(8540), + [aux_sym_option_statement_token3] = ACTIONS(8540), + [aux_sym_type_declaration_token1] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8540), + [aux_sym_enum_declaration_token1] = ACTIONS(8540), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8540), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8540), + [aux_sym_declare_function_statement_token1] = ACTIONS(8540), + [aux_sym_preprocessor_const_token1] = ACTIONS(8540), + [aux_sym__property_get_header_token1] = ACTIONS(8540), + [aux_sym_event_declaration_token1] = ACTIONS(8540), + [sym_static_modifier] = ACTIONS(8540), + [sym__dim_keyword] = ACTIONS(8540), + [sym__redim_keyword] = ACTIONS(8540), + [aux_sym_get_accessor_token1] = ACTIONS(8540), + [aux_sym_set_accessor_token1] = ACTIONS(8540), + [anon_sym_COMMA] = ACTIONS(9368), + [aux_sym_const_declaration_token1] = ACTIONS(8540), + [anon_sym_LPAREN] = ACTIONS(8542), + [aux_sym_as_type_clause_token2] = ACTIONS(8540), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8540), + [aux_sym_visibility_token1] = ACTIONS(8540), + [aux_sym_visibility_token2] = ACTIONS(8540), + [aux_sym_elseif_fragment_token1] = ACTIONS(8540), + [aux_sym_else_fragment_token1] = ACTIONS(8540), + [aux_sym_select_statement_token1] = ACTIONS(8540), + [aux_sym__for_header_token1] = ACTIONS(8540), + [aux_sym_do_statement_token1] = ACTIONS(8540), + [aux_sym_do_condition_token1] = ACTIONS(8540), + [aux_sym_with_statement_token1] = ACTIONS(8540), + [aux_sym_exit_statement_token1] = ACTIONS(8540), + [sym_end_statement] = ACTIONS(8542), + [aux_sym_on_goto_statement_token1] = ACTIONS(8540), + [aux_sym_on_goto_statement_token2] = ACTIONS(8540), + [aux_sym_on_error_statement_token2] = ACTIONS(8540), + [sym__ambiguous_redim_statement] = ACTIONS(8542), + [aux_sym_erase_statement_token1] = ACTIONS(8540), + [aux_sym_open_statement_token1] = ACTIONS(8540), + [aux_sym_file_mode_token2] = ACTIONS(8540), + [aux_sym_file_access_token2] = ACTIONS(8540), + [aux_sym_file_lock_token2] = ACTIONS(8540), + [aux_sym_print_statement_token1] = ACTIONS(8540), + [anon_sym_PLUS] = ACTIONS(8542), + [anon_sym_DASH] = ACTIONS(8540), + [anon_sym_QMARK] = ACTIONS(8542), + [aux_sym_close_statement_token1] = ACTIONS(8540), + [aux_sym_put_statement_token1] = ACTIONS(8540), + [aux_sym_unlock_statement_token1] = ACTIONS(8540), + [aux_sym_seek_statement_token1] = ACTIONS(8540), + [sym_reset_statement] = ACTIONS(8540), + [aux_sym_raise_event_statement_token1] = ACTIONS(8540), + [sym_stop_statement] = ACTIONS(8540), + [sym_beep_statement] = ACTIONS(8540), + [aux_sym_unload_statement_token1] = ACTIONS(8540), + [aux_sym_def_type_statement_token1] = ACTIONS(8540), + [aux_sym_def_type_statement_token2] = ACTIONS(8540), + [aux_sym_def_type_statement_token3] = ACTIONS(8540), + [aux_sym_def_type_statement_token4] = ACTIONS(8540), + [aux_sym_def_type_statement_token5] = ACTIONS(8540), + [aux_sym_def_type_statement_token6] = ACTIONS(8540), + [aux_sym_def_type_statement_token7] = ACTIONS(8540), + [aux_sym_def_type_statement_token8] = ACTIONS(8540), + [aux_sym_def_type_statement_token9] = ACTIONS(8540), + [aux_sym_def_type_statement_token10] = ACTIONS(8540), + [aux_sym_def_type_statement_token11] = ACTIONS(8540), + [aux_sym_def_type_statement_token12] = ACTIONS(8540), + [aux_sym_def_type_statement_token13] = ACTIONS(8540), + [aux_sym_def_type_statement_token14] = ACTIONS(8540), + [aux_sym_call_statement_token1] = ACTIONS(8540), + [sym__ambiguous_call_statement] = ACTIONS(8540), + [aux_sym_addressof_expression_token1] = ACTIONS(8540), + [aux_sym_type_of_expression_token1] = ACTIONS(8540), + [aux_sym_unary_expression_token1] = ACTIONS(8540), + [sym_string_literal] = ACTIONS(8542), + [sym_number_literal] = ACTIONS(8542), + [aux_sym_boolean_literal_token1] = ACTIONS(8540), + [aux_sym_boolean_literal_token2] = ACTIONS(8540), + [sym_nothing_literal] = ACTIONS(8540), + [sym_null_literal] = ACTIONS(8540), + [sym_empty_literal] = ACTIONS(8540), + [sym_date_literal] = ACTIONS(8542), + [anon_sym_POUND] = ACTIONS(8540), + }, + [STATE(3984)] = { + [sym_identifier] = ACTIONS(9370), + [sym_newline] = ACTIONS(9372), + [anon_sym_COLON] = ACTIONS(9372), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9370), + [aux_sym_frm_property_statement_token1] = ACTIONS(9370), + [anon_sym_DOT] = ACTIONS(9370), + [anon_sym_BANG] = ACTIONS(9372), + [aux_sym__attribute_identifier_token1] = ACTIONS(9370), + [aux_sym_option_statement_token3] = ACTIONS(9370), + [aux_sym_type_declaration_token1] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9370), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9370), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9370), + [aux_sym_enum_declaration_token1] = ACTIONS(9370), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9370), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9370), + [aux_sym_declare_function_statement_token1] = ACTIONS(9370), + [aux_sym_preprocessor_const_token1] = ACTIONS(9370), + [aux_sym__property_get_header_token1] = ACTIONS(9370), + [aux_sym_event_declaration_token1] = ACTIONS(9370), + [sym_static_modifier] = ACTIONS(9370), + [sym__dim_keyword] = ACTIONS(9370), + [sym__redim_keyword] = ACTIONS(9370), + [aux_sym_get_accessor_token1] = ACTIONS(9370), + [aux_sym_set_accessor_token1] = ACTIONS(9370), + [aux_sym_const_declaration_token1] = ACTIONS(9370), + [anon_sym_LPAREN] = ACTIONS(9372), + [aux_sym_as_type_clause_token2] = ACTIONS(9370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9370), + [aux_sym_visibility_token1] = ACTIONS(9370), + [aux_sym_visibility_token2] = ACTIONS(9370), + [aux_sym_elseif_fragment_token1] = ACTIONS(9370), + [aux_sym_else_fragment_token1] = ACTIONS(9370), + [aux_sym_select_statement_token1] = ACTIONS(9370), + [aux_sym__for_header_token1] = ACTIONS(9370), + [aux_sym_do_statement_token1] = ACTIONS(9370), + [aux_sym_do_condition_token1] = ACTIONS(9370), + [aux_sym_with_statement_token1] = ACTIONS(9370), + [aux_sym_exit_statement_token1] = ACTIONS(9370), + [sym_end_statement] = ACTIONS(9372), + [aux_sym_on_goto_statement_token1] = ACTIONS(9370), + [aux_sym_on_goto_statement_token2] = ACTIONS(9370), + [aux_sym_on_error_statement_token2] = ACTIONS(9370), + [sym__ambiguous_redim_statement] = ACTIONS(9372), + [aux_sym_erase_statement_token1] = ACTIONS(9370), + [aux_sym_open_statement_token1] = ACTIONS(9370), + [aux_sym_file_mode_token2] = ACTIONS(9370), + [aux_sym_file_access_token2] = ACTIONS(9370), + [aux_sym_file_lock_token2] = ACTIONS(9370), + [aux_sym_print_statement_token1] = ACTIONS(9370), + [anon_sym_PLUS] = ACTIONS(9372), + [anon_sym_DASH] = ACTIONS(9370), + [anon_sym_QMARK] = ACTIONS(9372), + [aux_sym_close_statement_token1] = ACTIONS(9370), + [aux_sym_put_statement_token1] = ACTIONS(9370), + [aux_sym_unlock_statement_token1] = ACTIONS(9370), + [aux_sym_seek_statement_token1] = ACTIONS(9370), + [sym_reset_statement] = ACTIONS(9370), + [aux_sym_raise_event_statement_token1] = ACTIONS(9370), + [sym_stop_statement] = ACTIONS(9370), + [sym_beep_statement] = ACTIONS(9370), + [aux_sym_unload_statement_token1] = ACTIONS(9370), + [aux_sym_def_type_statement_token1] = ACTIONS(9370), + [aux_sym_def_type_statement_token2] = ACTIONS(9370), + [aux_sym_def_type_statement_token3] = ACTIONS(9370), + [aux_sym_def_type_statement_token4] = ACTIONS(9370), + [aux_sym_def_type_statement_token5] = ACTIONS(9370), + [aux_sym_def_type_statement_token6] = ACTIONS(9370), + [aux_sym_def_type_statement_token7] = ACTIONS(9370), + [aux_sym_def_type_statement_token8] = ACTIONS(9370), + [aux_sym_def_type_statement_token9] = ACTIONS(9370), + [aux_sym_def_type_statement_token10] = ACTIONS(9370), + [aux_sym_def_type_statement_token11] = ACTIONS(9370), + [aux_sym_def_type_statement_token12] = ACTIONS(9370), + [aux_sym_def_type_statement_token13] = ACTIONS(9370), + [aux_sym_def_type_statement_token14] = ACTIONS(9370), + [aux_sym_call_statement_token1] = ACTIONS(9370), + [sym__ambiguous_call_statement] = ACTIONS(9370), + [aux_sym_addressof_expression_token1] = ACTIONS(9370), + [aux_sym_type_of_expression_token1] = ACTIONS(9370), + [aux_sym_unary_expression_token1] = ACTIONS(9370), + [sym_string_literal] = ACTIONS(9372), + [sym_number_literal] = ACTIONS(9372), + [aux_sym_boolean_literal_token1] = ACTIONS(9370), + [aux_sym_boolean_literal_token2] = ACTIONS(9370), + [sym_nothing_literal] = ACTIONS(9370), + [sym_null_literal] = ACTIONS(9370), + [sym_empty_literal] = ACTIONS(9370), + [sym_date_literal] = ACTIONS(9372), + [anon_sym_POUND] = ACTIONS(9370), + }, + [STATE(3985)] = { + [sym_identifier] = ACTIONS(8729), + [sym_newline] = ACTIONS(8731), + [anon_sym_COLON] = ACTIONS(8731), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8729), + [aux_sym_frm_property_statement_token1] = ACTIONS(8729), + [anon_sym_DOT] = ACTIONS(8729), + [anon_sym_BANG] = ACTIONS(8731), + [aux_sym__attribute_identifier_token1] = ACTIONS(8729), + [aux_sym_option_statement_token3] = ACTIONS(8729), + [aux_sym_type_declaration_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8729), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8729), + [aux_sym_enum_declaration_token1] = ACTIONS(8729), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8729), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8729), + [aux_sym_declare_function_statement_token1] = ACTIONS(8729), + [aux_sym_preprocessor_const_token1] = ACTIONS(8729), + [aux_sym__property_get_header_token1] = ACTIONS(8729), + [aux_sym_event_declaration_token1] = ACTIONS(8729), + [sym_static_modifier] = ACTIONS(8729), + [sym__dim_keyword] = ACTIONS(8729), + [sym__redim_keyword] = ACTIONS(8729), + [aux_sym_get_accessor_token1] = ACTIONS(8729), + [aux_sym_set_accessor_token1] = ACTIONS(8729), + [aux_sym_const_declaration_token1] = ACTIONS(8729), + [anon_sym_LPAREN] = ACTIONS(8731), + [aux_sym_as_type_clause_token2] = ACTIONS(8729), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8729), + [aux_sym_visibility_token1] = ACTIONS(8729), + [aux_sym_visibility_token2] = ACTIONS(8729), + [aux_sym_elseif_fragment_token1] = ACTIONS(8729), + [aux_sym_else_fragment_token1] = ACTIONS(8729), + [aux_sym_select_statement_token1] = ACTIONS(8729), + [aux_sym__for_header_token1] = ACTIONS(8729), + [aux_sym_do_statement_token1] = ACTIONS(8729), + [aux_sym_do_condition_token1] = ACTIONS(8729), + [aux_sym_with_statement_token1] = ACTIONS(8729), + [aux_sym_exit_statement_token1] = ACTIONS(8729), + [sym_end_statement] = ACTIONS(8731), + [aux_sym_on_goto_statement_token1] = ACTIONS(8729), + [aux_sym_on_goto_statement_token2] = ACTIONS(8729), + [aux_sym_on_error_statement_token2] = ACTIONS(8729), + [sym__ambiguous_redim_statement] = ACTIONS(8731), + [aux_sym_erase_statement_token1] = ACTIONS(8729), + [aux_sym_open_statement_token1] = ACTIONS(8729), + [aux_sym_file_mode_token2] = ACTIONS(8729), + [aux_sym_file_access_token2] = ACTIONS(8729), + [aux_sym_file_lock_token2] = ACTIONS(8729), + [aux_sym_print_statement_token1] = ACTIONS(8729), + [anon_sym_PLUS] = ACTIONS(8731), + [anon_sym_DASH] = ACTIONS(8729), + [anon_sym_QMARK] = ACTIONS(8731), + [aux_sym_close_statement_token1] = ACTIONS(8729), + [aux_sym_put_statement_token1] = ACTIONS(8729), + [aux_sym_unlock_statement_token1] = ACTIONS(8729), + [aux_sym_seek_statement_token1] = ACTIONS(8729), + [sym_reset_statement] = ACTIONS(8729), + [aux_sym_raise_event_statement_token1] = ACTIONS(8729), + [sym_stop_statement] = ACTIONS(8729), + [sym_beep_statement] = ACTIONS(8729), + [aux_sym_unload_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token2] = ACTIONS(8729), + [aux_sym_def_type_statement_token3] = ACTIONS(8729), + [aux_sym_def_type_statement_token4] = ACTIONS(8729), + [aux_sym_def_type_statement_token5] = ACTIONS(8729), + [aux_sym_def_type_statement_token6] = ACTIONS(8729), + [aux_sym_def_type_statement_token7] = ACTIONS(8729), + [aux_sym_def_type_statement_token8] = ACTIONS(8729), + [aux_sym_def_type_statement_token9] = ACTIONS(8729), + [aux_sym_def_type_statement_token10] = ACTIONS(8729), + [aux_sym_def_type_statement_token11] = ACTIONS(8729), + [aux_sym_def_type_statement_token12] = ACTIONS(8729), + [aux_sym_def_type_statement_token13] = ACTIONS(8729), + [aux_sym_def_type_statement_token14] = ACTIONS(8729), + [aux_sym_call_statement_token1] = ACTIONS(8729), + [sym__ambiguous_call_statement] = ACTIONS(8729), + [aux_sym_addressof_expression_token1] = ACTIONS(8729), + [aux_sym_type_of_expression_token1] = ACTIONS(8729), + [aux_sym_unary_expression_token1] = ACTIONS(8729), + [sym_string_literal] = ACTIONS(8731), + [sym_number_literal] = ACTIONS(8731), + [aux_sym_boolean_literal_token1] = ACTIONS(8729), + [aux_sym_boolean_literal_token2] = ACTIONS(8729), + [sym_nothing_literal] = ACTIONS(8729), + [sym_null_literal] = ACTIONS(8729), + [sym_empty_literal] = ACTIONS(8729), + [sym_date_literal] = ACTIONS(8731), + [anon_sym_POUND] = ACTIONS(8729), + }, + [STATE(3986)] = { + [sym_identifier] = ACTIONS(8745), + [sym_newline] = ACTIONS(8747), + [anon_sym_COLON] = ACTIONS(8747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8745), + [aux_sym_frm_property_statement_token1] = ACTIONS(8745), + [anon_sym_DOT] = ACTIONS(8745), + [anon_sym_BANG] = ACTIONS(8747), + [aux_sym__attribute_identifier_token1] = ACTIONS(8745), + [aux_sym_option_statement_token3] = ACTIONS(8745), + [aux_sym_type_declaration_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8745), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8745), + [aux_sym_enum_declaration_token1] = ACTIONS(8745), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8745), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8745), + [aux_sym_declare_function_statement_token1] = ACTIONS(8745), + [aux_sym_preprocessor_const_token1] = ACTIONS(8745), + [aux_sym__property_get_header_token1] = ACTIONS(8745), + [aux_sym_event_declaration_token1] = ACTIONS(8745), + [sym_static_modifier] = ACTIONS(8745), + [sym__dim_keyword] = ACTIONS(8745), + [sym__redim_keyword] = ACTIONS(8745), + [aux_sym_get_accessor_token1] = ACTIONS(8745), + [aux_sym_set_accessor_token1] = ACTIONS(8745), + [aux_sym_const_declaration_token1] = ACTIONS(8745), + [anon_sym_LPAREN] = ACTIONS(8747), + [aux_sym_as_type_clause_token2] = ACTIONS(8745), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8745), + [aux_sym_visibility_token1] = ACTIONS(8745), + [aux_sym_visibility_token2] = ACTIONS(8745), + [aux_sym_elseif_fragment_token1] = ACTIONS(8745), + [aux_sym_else_fragment_token1] = ACTIONS(8745), + [aux_sym_select_statement_token1] = ACTIONS(8745), + [aux_sym__for_header_token1] = ACTIONS(8745), + [aux_sym_do_statement_token1] = ACTIONS(8745), + [aux_sym_do_condition_token1] = ACTIONS(8745), + [aux_sym_with_statement_token1] = ACTIONS(8745), + [aux_sym_exit_statement_token1] = ACTIONS(8745), + [sym_end_statement] = ACTIONS(8747), + [aux_sym_on_goto_statement_token1] = ACTIONS(8745), + [aux_sym_on_goto_statement_token2] = ACTIONS(8745), + [aux_sym_on_error_statement_token2] = ACTIONS(8745), + [sym__ambiguous_redim_statement] = ACTIONS(8747), + [aux_sym_erase_statement_token1] = ACTIONS(8745), + [aux_sym_open_statement_token1] = ACTIONS(8745), + [aux_sym_file_mode_token2] = ACTIONS(8745), + [aux_sym_file_access_token2] = ACTIONS(8745), + [aux_sym_file_lock_token2] = ACTIONS(8745), + [aux_sym_print_statement_token1] = ACTIONS(8745), + [anon_sym_PLUS] = ACTIONS(8747), + [anon_sym_DASH] = ACTIONS(8745), + [anon_sym_QMARK] = ACTIONS(8747), + [aux_sym_close_statement_token1] = ACTIONS(8745), + [aux_sym_put_statement_token1] = ACTIONS(8745), + [aux_sym_unlock_statement_token1] = ACTIONS(8745), + [aux_sym_seek_statement_token1] = ACTIONS(8745), + [sym_reset_statement] = ACTIONS(8745), + [aux_sym_raise_event_statement_token1] = ACTIONS(8745), + [sym_stop_statement] = ACTIONS(8745), + [sym_beep_statement] = ACTIONS(8745), + [aux_sym_unload_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token2] = ACTIONS(8745), + [aux_sym_def_type_statement_token3] = ACTIONS(8745), + [aux_sym_def_type_statement_token4] = ACTIONS(8745), + [aux_sym_def_type_statement_token5] = ACTIONS(8745), + [aux_sym_def_type_statement_token6] = ACTIONS(8745), + [aux_sym_def_type_statement_token7] = ACTIONS(8745), + [aux_sym_def_type_statement_token8] = ACTIONS(8745), + [aux_sym_def_type_statement_token9] = ACTIONS(8745), + [aux_sym_def_type_statement_token10] = ACTIONS(8745), + [aux_sym_def_type_statement_token11] = ACTIONS(8745), + [aux_sym_def_type_statement_token12] = ACTIONS(8745), + [aux_sym_def_type_statement_token13] = ACTIONS(8745), + [aux_sym_def_type_statement_token14] = ACTIONS(8745), + [aux_sym_call_statement_token1] = ACTIONS(8745), + [sym__ambiguous_call_statement] = ACTIONS(8745), + [aux_sym_addressof_expression_token1] = ACTIONS(8745), + [aux_sym_type_of_expression_token1] = ACTIONS(8745), + [aux_sym_unary_expression_token1] = ACTIONS(8745), + [sym_string_literal] = ACTIONS(8747), + [sym_number_literal] = ACTIONS(8747), + [aux_sym_boolean_literal_token1] = ACTIONS(8745), + [aux_sym_boolean_literal_token2] = ACTIONS(8745), + [sym_nothing_literal] = ACTIONS(8745), + [sym_null_literal] = ACTIONS(8745), + [sym_empty_literal] = ACTIONS(8745), + [sym_date_literal] = ACTIONS(8747), + [anon_sym_POUND] = ACTIONS(8745), + }, + [STATE(3987)] = { + [sym_identifier] = ACTIONS(9374), + [sym_newline] = ACTIONS(9376), + [anon_sym_COLON] = ACTIONS(9376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9374), + [aux_sym_frm_property_statement_token1] = ACTIONS(9374), + [anon_sym_DOT] = ACTIONS(9374), + [anon_sym_BANG] = ACTIONS(9376), + [aux_sym__attribute_identifier_token1] = ACTIONS(9374), + [aux_sym_option_statement_token3] = ACTIONS(9374), + [aux_sym_type_declaration_token1] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9374), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9374), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9374), + [aux_sym_enum_declaration_token1] = ACTIONS(9374), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9374), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9374), + [aux_sym_declare_function_statement_token1] = ACTIONS(9374), + [aux_sym_preprocessor_const_token1] = ACTIONS(9374), + [aux_sym__property_get_header_token1] = ACTIONS(9374), + [aux_sym_event_declaration_token1] = ACTIONS(9374), + [sym_static_modifier] = ACTIONS(9374), + [sym__dim_keyword] = ACTIONS(9374), + [sym__redim_keyword] = ACTIONS(9374), + [aux_sym_get_accessor_token1] = ACTIONS(9374), + [aux_sym_set_accessor_token1] = ACTIONS(9374), + [aux_sym_const_declaration_token1] = ACTIONS(9374), + [anon_sym_LPAREN] = ACTIONS(9376), + [aux_sym_as_type_clause_token2] = ACTIONS(9374), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9374), + [aux_sym_visibility_token1] = ACTIONS(9374), + [aux_sym_visibility_token2] = ACTIONS(9374), + [aux_sym_elseif_fragment_token1] = ACTIONS(9374), + [aux_sym_else_fragment_token1] = ACTIONS(9374), + [aux_sym_select_statement_token1] = ACTIONS(9374), + [aux_sym__for_header_token1] = ACTIONS(9374), + [aux_sym_do_statement_token1] = ACTIONS(9374), + [aux_sym_do_condition_token1] = ACTIONS(9374), + [aux_sym_with_statement_token1] = ACTIONS(9374), + [aux_sym_exit_statement_token1] = ACTIONS(9374), + [sym_end_statement] = ACTIONS(9376), + [aux_sym_on_goto_statement_token1] = ACTIONS(9374), + [aux_sym_on_goto_statement_token2] = ACTIONS(9374), + [aux_sym_on_error_statement_token2] = ACTIONS(9374), + [sym__ambiguous_redim_statement] = ACTIONS(9376), + [aux_sym_erase_statement_token1] = ACTIONS(9374), + [aux_sym_open_statement_token1] = ACTIONS(9374), + [aux_sym_file_mode_token2] = ACTIONS(9374), + [aux_sym_file_access_token2] = ACTIONS(9374), + [aux_sym_file_lock_token2] = ACTIONS(9374), + [aux_sym_print_statement_token1] = ACTIONS(9374), + [anon_sym_PLUS] = ACTIONS(9376), + [anon_sym_DASH] = ACTIONS(9374), + [anon_sym_QMARK] = ACTIONS(9376), + [aux_sym_close_statement_token1] = ACTIONS(9374), + [aux_sym_put_statement_token1] = ACTIONS(9374), + [aux_sym_unlock_statement_token1] = ACTIONS(9374), + [aux_sym_seek_statement_token1] = ACTIONS(9374), + [sym_reset_statement] = ACTIONS(9374), + [aux_sym_raise_event_statement_token1] = ACTIONS(9374), + [sym_stop_statement] = ACTIONS(9374), + [sym_beep_statement] = ACTIONS(9374), + [aux_sym_unload_statement_token1] = ACTIONS(9374), + [aux_sym_def_type_statement_token1] = ACTIONS(9374), + [aux_sym_def_type_statement_token2] = ACTIONS(9374), + [aux_sym_def_type_statement_token3] = ACTIONS(9374), + [aux_sym_def_type_statement_token4] = ACTIONS(9374), + [aux_sym_def_type_statement_token5] = ACTIONS(9374), + [aux_sym_def_type_statement_token6] = ACTIONS(9374), + [aux_sym_def_type_statement_token7] = ACTIONS(9374), + [aux_sym_def_type_statement_token8] = ACTIONS(9374), + [aux_sym_def_type_statement_token9] = ACTIONS(9374), + [aux_sym_def_type_statement_token10] = ACTIONS(9374), + [aux_sym_def_type_statement_token11] = ACTIONS(9374), + [aux_sym_def_type_statement_token12] = ACTIONS(9374), + [aux_sym_def_type_statement_token13] = ACTIONS(9374), + [aux_sym_def_type_statement_token14] = ACTIONS(9374), + [aux_sym_call_statement_token1] = ACTIONS(9374), + [sym__ambiguous_call_statement] = ACTIONS(9374), + [aux_sym_addressof_expression_token1] = ACTIONS(9374), + [aux_sym_type_of_expression_token1] = ACTIONS(9374), + [aux_sym_unary_expression_token1] = ACTIONS(9374), + [sym_string_literal] = ACTIONS(9376), + [sym_number_literal] = ACTIONS(9376), + [aux_sym_boolean_literal_token1] = ACTIONS(9374), + [aux_sym_boolean_literal_token2] = ACTIONS(9374), + [sym_nothing_literal] = ACTIONS(9374), + [sym_null_literal] = ACTIONS(9374), + [sym_empty_literal] = ACTIONS(9374), + [sym_date_literal] = ACTIONS(9376), + [anon_sym_POUND] = ACTIONS(9374), + }, + [STATE(3988)] = { + [sym_identifier] = ACTIONS(9378), + [sym_newline] = ACTIONS(9380), + [anon_sym_COLON] = ACTIONS(9380), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9378), + [aux_sym_frm_property_statement_token1] = ACTIONS(9378), + [anon_sym_DOT] = ACTIONS(9378), + [anon_sym_BANG] = ACTIONS(9380), + [aux_sym__attribute_identifier_token1] = ACTIONS(9378), + [aux_sym_option_statement_token3] = ACTIONS(9378), + [aux_sym_type_declaration_token1] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9378), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9378), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9378), + [aux_sym_enum_declaration_token1] = ACTIONS(9378), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9378), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9378), + [aux_sym_declare_function_statement_token1] = ACTIONS(9378), + [aux_sym_preprocessor_const_token1] = ACTIONS(9378), + [aux_sym__property_get_header_token1] = ACTIONS(9378), + [aux_sym_event_declaration_token1] = ACTIONS(9378), + [sym_static_modifier] = ACTIONS(9378), + [sym__dim_keyword] = ACTIONS(9378), + [sym__redim_keyword] = ACTIONS(9378), + [aux_sym_get_accessor_token1] = ACTIONS(9378), + [aux_sym_set_accessor_token1] = ACTIONS(9378), + [aux_sym_const_declaration_token1] = ACTIONS(9378), + [anon_sym_LPAREN] = ACTIONS(9380), + [aux_sym_as_type_clause_token2] = ACTIONS(9378), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9378), + [aux_sym_visibility_token1] = ACTIONS(9378), + [aux_sym_visibility_token2] = ACTIONS(9378), + [aux_sym_elseif_fragment_token1] = ACTIONS(9378), + [aux_sym_else_fragment_token1] = ACTIONS(9378), + [aux_sym_select_statement_token1] = ACTIONS(9378), + [aux_sym__for_header_token1] = ACTIONS(9378), + [aux_sym_do_statement_token1] = ACTIONS(9378), + [aux_sym_do_condition_token1] = ACTIONS(9378), + [aux_sym_with_statement_token1] = ACTIONS(9378), + [aux_sym_exit_statement_token1] = ACTIONS(9378), + [sym_end_statement] = ACTIONS(9380), + [aux_sym_on_goto_statement_token1] = ACTIONS(9378), + [aux_sym_on_goto_statement_token2] = ACTIONS(9378), + [aux_sym_on_error_statement_token2] = ACTIONS(9378), + [sym__ambiguous_redim_statement] = ACTIONS(9380), + [aux_sym_erase_statement_token1] = ACTIONS(9378), + [aux_sym_open_statement_token1] = ACTIONS(9378), + [aux_sym_file_mode_token2] = ACTIONS(9378), + [aux_sym_file_access_token2] = ACTIONS(9378), + [aux_sym_file_lock_token2] = ACTIONS(9378), + [aux_sym_print_statement_token1] = ACTIONS(9378), + [anon_sym_PLUS] = ACTIONS(9380), + [anon_sym_DASH] = ACTIONS(9378), + [anon_sym_QMARK] = ACTIONS(9380), + [aux_sym_close_statement_token1] = ACTIONS(9378), + [aux_sym_put_statement_token1] = ACTIONS(9378), + [aux_sym_unlock_statement_token1] = ACTIONS(9378), + [aux_sym_seek_statement_token1] = ACTIONS(9378), + [sym_reset_statement] = ACTIONS(9378), + [aux_sym_raise_event_statement_token1] = ACTIONS(9378), + [sym_stop_statement] = ACTIONS(9378), + [sym_beep_statement] = ACTIONS(9378), + [aux_sym_unload_statement_token1] = ACTIONS(9378), + [aux_sym_def_type_statement_token1] = ACTIONS(9378), + [aux_sym_def_type_statement_token2] = ACTIONS(9378), + [aux_sym_def_type_statement_token3] = ACTIONS(9378), + [aux_sym_def_type_statement_token4] = ACTIONS(9378), + [aux_sym_def_type_statement_token5] = ACTIONS(9378), + [aux_sym_def_type_statement_token6] = ACTIONS(9378), + [aux_sym_def_type_statement_token7] = ACTIONS(9378), + [aux_sym_def_type_statement_token8] = ACTIONS(9378), + [aux_sym_def_type_statement_token9] = ACTIONS(9378), + [aux_sym_def_type_statement_token10] = ACTIONS(9378), + [aux_sym_def_type_statement_token11] = ACTIONS(9378), + [aux_sym_def_type_statement_token12] = ACTIONS(9378), + [aux_sym_def_type_statement_token13] = ACTIONS(9378), + [aux_sym_def_type_statement_token14] = ACTIONS(9378), + [aux_sym_call_statement_token1] = ACTIONS(9378), + [sym__ambiguous_call_statement] = ACTIONS(9378), + [aux_sym_addressof_expression_token1] = ACTIONS(9378), + [aux_sym_type_of_expression_token1] = ACTIONS(9378), + [aux_sym_unary_expression_token1] = ACTIONS(9378), + [sym_string_literal] = ACTIONS(9380), + [sym_number_literal] = ACTIONS(9380), + [aux_sym_boolean_literal_token1] = ACTIONS(9378), + [aux_sym_boolean_literal_token2] = ACTIONS(9378), + [sym_nothing_literal] = ACTIONS(9378), + [sym_null_literal] = ACTIONS(9378), + [sym_empty_literal] = ACTIONS(9378), + [sym_date_literal] = ACTIONS(9380), + [anon_sym_POUND] = ACTIONS(9378), + }, + [STATE(3989)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(3993), + [sym_identifier] = ACTIONS(8225), + [sym_newline] = ACTIONS(8227), + [anon_sym_COLON] = ACTIONS(8227), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8225), + [aux_sym_frm_property_statement_token1] = ACTIONS(8225), + [anon_sym_DOT] = ACTIONS(8225), + [anon_sym_BANG] = ACTIONS(8227), + [aux_sym__attribute_identifier_token1] = ACTIONS(8225), + [aux_sym_option_statement_token3] = ACTIONS(8225), + [aux_sym_type_declaration_token1] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8225), + [aux_sym_enum_declaration_token1] = ACTIONS(8225), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8225), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8225), + [aux_sym_declare_function_statement_token1] = ACTIONS(8225), + [aux_sym_preprocessor_const_token1] = ACTIONS(8225), + [aux_sym__property_get_header_token1] = ACTIONS(8225), + [aux_sym_event_declaration_token1] = ACTIONS(8225), + [sym_static_modifier] = ACTIONS(8225), + [sym__dim_keyword] = ACTIONS(8225), + [sym__redim_keyword] = ACTIONS(8225), + [aux_sym_get_accessor_token1] = ACTIONS(8225), + [aux_sym_set_accessor_token1] = ACTIONS(8225), + [anon_sym_COMMA] = ACTIONS(9368), + [aux_sym_const_declaration_token1] = ACTIONS(8225), + [anon_sym_LPAREN] = ACTIONS(8227), + [aux_sym_as_type_clause_token2] = ACTIONS(8225), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8225), + [aux_sym_visibility_token1] = ACTIONS(8225), + [aux_sym_visibility_token2] = ACTIONS(8225), + [aux_sym_elseif_fragment_token1] = ACTIONS(8225), + [aux_sym_else_fragment_token1] = ACTIONS(8225), + [aux_sym_select_statement_token1] = ACTIONS(8225), + [aux_sym__for_header_token1] = ACTIONS(8225), + [aux_sym_do_statement_token1] = ACTIONS(8225), + [aux_sym_do_condition_token1] = ACTIONS(8225), + [aux_sym_with_statement_token1] = ACTIONS(8225), + [aux_sym_exit_statement_token1] = ACTIONS(8225), + [sym_end_statement] = ACTIONS(8227), + [aux_sym_on_goto_statement_token1] = ACTIONS(8225), + [aux_sym_on_goto_statement_token2] = ACTIONS(8225), + [aux_sym_on_error_statement_token2] = ACTIONS(8225), + [sym__ambiguous_redim_statement] = ACTIONS(8227), + [aux_sym_erase_statement_token1] = ACTIONS(8225), + [aux_sym_open_statement_token1] = ACTIONS(8225), + [aux_sym_file_mode_token2] = ACTIONS(8225), + [aux_sym_file_access_token2] = ACTIONS(8225), + [aux_sym_file_lock_token2] = ACTIONS(8225), + [aux_sym_print_statement_token1] = ACTIONS(8225), + [anon_sym_PLUS] = ACTIONS(8227), + [anon_sym_DASH] = ACTIONS(8225), + [anon_sym_QMARK] = ACTIONS(8227), + [aux_sym_close_statement_token1] = ACTIONS(8225), + [aux_sym_put_statement_token1] = ACTIONS(8225), + [aux_sym_unlock_statement_token1] = ACTIONS(8225), + [aux_sym_seek_statement_token1] = ACTIONS(8225), + [sym_reset_statement] = ACTIONS(8225), + [aux_sym_raise_event_statement_token1] = ACTIONS(8225), + [sym_stop_statement] = ACTIONS(8225), + [sym_beep_statement] = ACTIONS(8225), + [aux_sym_unload_statement_token1] = ACTIONS(8225), + [aux_sym_def_type_statement_token1] = ACTIONS(8225), + [aux_sym_def_type_statement_token2] = ACTIONS(8225), + [aux_sym_def_type_statement_token3] = ACTIONS(8225), + [aux_sym_def_type_statement_token4] = ACTIONS(8225), + [aux_sym_def_type_statement_token5] = ACTIONS(8225), + [aux_sym_def_type_statement_token6] = ACTIONS(8225), + [aux_sym_def_type_statement_token7] = ACTIONS(8225), + [aux_sym_def_type_statement_token8] = ACTIONS(8225), + [aux_sym_def_type_statement_token9] = ACTIONS(8225), + [aux_sym_def_type_statement_token10] = ACTIONS(8225), + [aux_sym_def_type_statement_token11] = ACTIONS(8225), + [aux_sym_def_type_statement_token12] = ACTIONS(8225), + [aux_sym_def_type_statement_token13] = ACTIONS(8225), + [aux_sym_def_type_statement_token14] = ACTIONS(8225), + [aux_sym_call_statement_token1] = ACTIONS(8225), + [sym__ambiguous_call_statement] = ACTIONS(8225), + [aux_sym_addressof_expression_token1] = ACTIONS(8225), + [aux_sym_type_of_expression_token1] = ACTIONS(8225), + [aux_sym_unary_expression_token1] = ACTIONS(8225), + [sym_string_literal] = ACTIONS(8227), + [sym_number_literal] = ACTIONS(8227), + [aux_sym_boolean_literal_token1] = ACTIONS(8225), + [aux_sym_boolean_literal_token2] = ACTIONS(8225), + [sym_nothing_literal] = ACTIONS(8225), + [sym_null_literal] = ACTIONS(8225), + [sym_empty_literal] = ACTIONS(8225), + [sym_date_literal] = ACTIONS(8227), + [anon_sym_POUND] = ACTIONS(8225), + }, + [STATE(3990)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(3993), + [sym_identifier] = ACTIONS(8231), + [sym_newline] = ACTIONS(8233), + [anon_sym_COLON] = ACTIONS(8233), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8231), + [aux_sym_frm_property_statement_token1] = ACTIONS(8231), + [anon_sym_DOT] = ACTIONS(8231), + [anon_sym_BANG] = ACTIONS(8233), + [aux_sym__attribute_identifier_token1] = ACTIONS(8231), + [aux_sym_option_statement_token3] = ACTIONS(8231), + [aux_sym_type_declaration_token1] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8231), + [aux_sym_enum_declaration_token1] = ACTIONS(8231), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8231), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8231), + [aux_sym_declare_function_statement_token1] = ACTIONS(8231), + [aux_sym_preprocessor_const_token1] = ACTIONS(8231), + [aux_sym__property_get_header_token1] = ACTIONS(8231), + [aux_sym_event_declaration_token1] = ACTIONS(8231), + [sym_static_modifier] = ACTIONS(8231), + [sym__dim_keyword] = ACTIONS(8231), + [sym__redim_keyword] = ACTIONS(8231), + [aux_sym_get_accessor_token1] = ACTIONS(8231), + [aux_sym_set_accessor_token1] = ACTIONS(8231), + [anon_sym_COMMA] = ACTIONS(9368), + [aux_sym_const_declaration_token1] = ACTIONS(8231), + [anon_sym_LPAREN] = ACTIONS(8233), + [aux_sym_as_type_clause_token2] = ACTIONS(8231), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8231), + [aux_sym_visibility_token1] = ACTIONS(8231), + [aux_sym_visibility_token2] = ACTIONS(8231), + [aux_sym_elseif_fragment_token1] = ACTIONS(8231), + [aux_sym_else_fragment_token1] = ACTIONS(8231), + [aux_sym_select_statement_token1] = ACTIONS(8231), + [aux_sym__for_header_token1] = ACTIONS(8231), + [aux_sym_do_statement_token1] = ACTIONS(8231), + [aux_sym_do_condition_token1] = ACTIONS(8231), + [aux_sym_with_statement_token1] = ACTIONS(8231), + [aux_sym_exit_statement_token1] = ACTIONS(8231), + [sym_end_statement] = ACTIONS(8233), + [aux_sym_on_goto_statement_token1] = ACTIONS(8231), + [aux_sym_on_goto_statement_token2] = ACTIONS(8231), + [aux_sym_on_error_statement_token2] = ACTIONS(8231), + [sym__ambiguous_redim_statement] = ACTIONS(8233), + [aux_sym_erase_statement_token1] = ACTIONS(8231), + [aux_sym_open_statement_token1] = ACTIONS(8231), + [aux_sym_file_mode_token2] = ACTIONS(8231), + [aux_sym_file_access_token2] = ACTIONS(8231), + [aux_sym_file_lock_token2] = ACTIONS(8231), + [aux_sym_print_statement_token1] = ACTIONS(8231), + [anon_sym_PLUS] = ACTIONS(8233), + [anon_sym_DASH] = ACTIONS(8231), + [anon_sym_QMARK] = ACTIONS(8233), + [aux_sym_close_statement_token1] = ACTIONS(8231), + [aux_sym_put_statement_token1] = ACTIONS(8231), + [aux_sym_unlock_statement_token1] = ACTIONS(8231), + [aux_sym_seek_statement_token1] = ACTIONS(8231), + [sym_reset_statement] = ACTIONS(8231), + [aux_sym_raise_event_statement_token1] = ACTIONS(8231), + [sym_stop_statement] = ACTIONS(8231), + [sym_beep_statement] = ACTIONS(8231), + [aux_sym_unload_statement_token1] = ACTIONS(8231), + [aux_sym_def_type_statement_token1] = ACTIONS(8231), + [aux_sym_def_type_statement_token2] = ACTIONS(8231), + [aux_sym_def_type_statement_token3] = ACTIONS(8231), + [aux_sym_def_type_statement_token4] = ACTIONS(8231), + [aux_sym_def_type_statement_token5] = ACTIONS(8231), + [aux_sym_def_type_statement_token6] = ACTIONS(8231), + [aux_sym_def_type_statement_token7] = ACTIONS(8231), + [aux_sym_def_type_statement_token8] = ACTIONS(8231), + [aux_sym_def_type_statement_token9] = ACTIONS(8231), + [aux_sym_def_type_statement_token10] = ACTIONS(8231), + [aux_sym_def_type_statement_token11] = ACTIONS(8231), + [aux_sym_def_type_statement_token12] = ACTIONS(8231), + [aux_sym_def_type_statement_token13] = ACTIONS(8231), + [aux_sym_def_type_statement_token14] = ACTIONS(8231), + [aux_sym_call_statement_token1] = ACTIONS(8231), + [sym__ambiguous_call_statement] = ACTIONS(8231), + [aux_sym_addressof_expression_token1] = ACTIONS(8231), + [aux_sym_type_of_expression_token1] = ACTIONS(8231), + [aux_sym_unary_expression_token1] = ACTIONS(8231), + [sym_string_literal] = ACTIONS(8233), + [sym_number_literal] = ACTIONS(8233), + [aux_sym_boolean_literal_token1] = ACTIONS(8231), + [aux_sym_boolean_literal_token2] = ACTIONS(8231), + [sym_nothing_literal] = ACTIONS(8231), + [sym_null_literal] = ACTIONS(8231), + [sym_empty_literal] = ACTIONS(8231), + [sym_date_literal] = ACTIONS(8233), + [anon_sym_POUND] = ACTIONS(8231), + }, + [STATE(3991)] = { + [sym_identifier] = ACTIONS(9382), + [sym_newline] = ACTIONS(9384), + [anon_sym_COLON] = ACTIONS(9384), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9382), + [aux_sym_frm_property_statement_token1] = ACTIONS(9382), + [anon_sym_DOT] = ACTIONS(9382), + [anon_sym_BANG] = ACTIONS(9384), + [aux_sym__attribute_identifier_token1] = ACTIONS(9382), + [aux_sym_option_statement_token3] = ACTIONS(9382), + [aux_sym_type_declaration_token1] = ACTIONS(9382), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9382), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9382), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9382), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9382), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9382), + [aux_sym_enum_declaration_token1] = ACTIONS(9382), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9382), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9382), + [aux_sym_declare_function_statement_token1] = ACTIONS(9382), + [aux_sym_preprocessor_const_token1] = ACTIONS(9382), + [aux_sym__property_get_header_token1] = ACTIONS(9382), + [aux_sym_event_declaration_token1] = ACTIONS(9382), + [sym_static_modifier] = ACTIONS(9382), + [sym__dim_keyword] = ACTIONS(9382), + [sym__redim_keyword] = ACTIONS(9382), + [aux_sym_get_accessor_token1] = ACTIONS(9382), + [aux_sym_set_accessor_token1] = ACTIONS(9382), + [aux_sym_const_declaration_token1] = ACTIONS(9382), + [anon_sym_LPAREN] = ACTIONS(9384), + [aux_sym_as_type_clause_token2] = ACTIONS(9382), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9382), + [aux_sym_visibility_token1] = ACTIONS(9382), + [aux_sym_visibility_token2] = ACTIONS(9382), + [aux_sym_elseif_fragment_token1] = ACTIONS(9382), + [aux_sym_else_fragment_token1] = ACTIONS(9382), + [aux_sym_select_statement_token1] = ACTIONS(9382), + [aux_sym__for_header_token1] = ACTIONS(9382), + [aux_sym_do_statement_token1] = ACTIONS(9382), + [aux_sym_do_condition_token1] = ACTIONS(9382), + [aux_sym_with_statement_token1] = ACTIONS(9382), + [aux_sym_exit_statement_token1] = ACTIONS(9382), + [sym_end_statement] = ACTIONS(9384), + [aux_sym_on_goto_statement_token1] = ACTIONS(9382), + [aux_sym_on_goto_statement_token2] = ACTIONS(9382), + [aux_sym_on_error_statement_token2] = ACTIONS(9382), + [sym__ambiguous_redim_statement] = ACTIONS(9384), + [aux_sym_erase_statement_token1] = ACTIONS(9382), + [aux_sym_open_statement_token1] = ACTIONS(9382), + [aux_sym_file_mode_token2] = ACTIONS(9382), + [aux_sym_file_access_token2] = ACTIONS(9382), + [aux_sym_file_lock_token2] = ACTIONS(9382), + [aux_sym_print_statement_token1] = ACTIONS(9382), + [anon_sym_PLUS] = ACTIONS(9384), + [anon_sym_DASH] = ACTIONS(9382), + [anon_sym_QMARK] = ACTIONS(9384), + [aux_sym_close_statement_token1] = ACTIONS(9382), + [aux_sym_put_statement_token1] = ACTIONS(9382), + [aux_sym_unlock_statement_token1] = ACTIONS(9382), + [aux_sym_seek_statement_token1] = ACTIONS(9382), + [sym_reset_statement] = ACTIONS(9382), + [aux_sym_raise_event_statement_token1] = ACTIONS(9382), + [sym_stop_statement] = ACTIONS(9382), + [sym_beep_statement] = ACTIONS(9382), + [aux_sym_unload_statement_token1] = ACTIONS(9382), + [aux_sym_def_type_statement_token1] = ACTIONS(9382), + [aux_sym_def_type_statement_token2] = ACTIONS(9382), + [aux_sym_def_type_statement_token3] = ACTIONS(9382), + [aux_sym_def_type_statement_token4] = ACTIONS(9382), + [aux_sym_def_type_statement_token5] = ACTIONS(9382), + [aux_sym_def_type_statement_token6] = ACTIONS(9382), + [aux_sym_def_type_statement_token7] = ACTIONS(9382), + [aux_sym_def_type_statement_token8] = ACTIONS(9382), + [aux_sym_def_type_statement_token9] = ACTIONS(9382), + [aux_sym_def_type_statement_token10] = ACTIONS(9382), + [aux_sym_def_type_statement_token11] = ACTIONS(9382), + [aux_sym_def_type_statement_token12] = ACTIONS(9382), + [aux_sym_def_type_statement_token13] = ACTIONS(9382), + [aux_sym_def_type_statement_token14] = ACTIONS(9382), + [aux_sym_call_statement_token1] = ACTIONS(9382), + [sym__ambiguous_call_statement] = ACTIONS(9382), + [aux_sym_addressof_expression_token1] = ACTIONS(9382), + [aux_sym_type_of_expression_token1] = ACTIONS(9382), + [aux_sym_unary_expression_token1] = ACTIONS(9382), + [sym_string_literal] = ACTIONS(9384), + [sym_number_literal] = ACTIONS(9384), + [aux_sym_boolean_literal_token1] = ACTIONS(9382), + [aux_sym_boolean_literal_token2] = ACTIONS(9382), + [sym_nothing_literal] = ACTIONS(9382), + [sym_null_literal] = ACTIONS(9382), + [sym_empty_literal] = ACTIONS(9382), + [sym_date_literal] = ACTIONS(9384), + [anon_sym_POUND] = ACTIONS(9382), + }, + [STATE(3992)] = { + [sym_identifier] = ACTIONS(9386), + [sym_newline] = ACTIONS(9388), + [anon_sym_COLON] = ACTIONS(9388), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9386), + [aux_sym_frm_property_statement_token1] = ACTIONS(9386), + [anon_sym_DOT] = ACTIONS(9386), + [anon_sym_BANG] = ACTIONS(9388), + [aux_sym__attribute_identifier_token1] = ACTIONS(9386), + [aux_sym_option_statement_token3] = ACTIONS(9386), + [aux_sym_type_declaration_token1] = ACTIONS(9386), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9386), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9386), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9386), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9386), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9386), + [aux_sym_enum_declaration_token1] = ACTIONS(9386), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9386), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9386), + [aux_sym_declare_function_statement_token1] = ACTIONS(9386), + [aux_sym_preprocessor_const_token1] = ACTIONS(9386), + [aux_sym__property_get_header_token1] = ACTIONS(9386), + [aux_sym_event_declaration_token1] = ACTIONS(9386), + [sym_static_modifier] = ACTIONS(9386), + [sym__dim_keyword] = ACTIONS(9386), + [sym__redim_keyword] = ACTIONS(9386), + [aux_sym_get_accessor_token1] = ACTIONS(9386), + [aux_sym_set_accessor_token1] = ACTIONS(9386), + [aux_sym_const_declaration_token1] = ACTIONS(9386), + [anon_sym_LPAREN] = ACTIONS(9388), + [aux_sym_as_type_clause_token2] = ACTIONS(9386), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9386), + [aux_sym_visibility_token1] = ACTIONS(9386), + [aux_sym_visibility_token2] = ACTIONS(9386), + [aux_sym_elseif_fragment_token1] = ACTIONS(9386), + [aux_sym_else_fragment_token1] = ACTIONS(9386), + [aux_sym_select_statement_token1] = ACTIONS(9386), + [aux_sym__for_header_token1] = ACTIONS(9386), + [aux_sym_do_statement_token1] = ACTIONS(9386), + [aux_sym_do_condition_token1] = ACTIONS(9386), + [aux_sym_with_statement_token1] = ACTIONS(9386), + [aux_sym_exit_statement_token1] = ACTIONS(9386), + [sym_end_statement] = ACTIONS(9388), + [aux_sym_on_goto_statement_token1] = ACTIONS(9386), + [aux_sym_on_goto_statement_token2] = ACTIONS(9386), + [aux_sym_on_error_statement_token2] = ACTIONS(9386), + [sym__ambiguous_redim_statement] = ACTIONS(9388), + [aux_sym_erase_statement_token1] = ACTIONS(9386), + [aux_sym_open_statement_token1] = ACTIONS(9386), + [aux_sym_file_mode_token2] = ACTIONS(9386), + [aux_sym_file_access_token2] = ACTIONS(9386), + [aux_sym_file_lock_token2] = ACTIONS(9386), + [aux_sym_print_statement_token1] = ACTIONS(9386), + [anon_sym_PLUS] = ACTIONS(9388), + [anon_sym_DASH] = ACTIONS(9386), + [anon_sym_QMARK] = ACTIONS(9388), + [aux_sym_close_statement_token1] = ACTIONS(9386), + [aux_sym_put_statement_token1] = ACTIONS(9386), + [aux_sym_unlock_statement_token1] = ACTIONS(9386), + [aux_sym_seek_statement_token1] = ACTIONS(9386), + [sym_reset_statement] = ACTIONS(9386), + [aux_sym_raise_event_statement_token1] = ACTIONS(9386), + [sym_stop_statement] = ACTIONS(9386), + [sym_beep_statement] = ACTIONS(9386), + [aux_sym_unload_statement_token1] = ACTIONS(9386), + [aux_sym_def_type_statement_token1] = ACTIONS(9386), + [aux_sym_def_type_statement_token2] = ACTIONS(9386), + [aux_sym_def_type_statement_token3] = ACTIONS(9386), + [aux_sym_def_type_statement_token4] = ACTIONS(9386), + [aux_sym_def_type_statement_token5] = ACTIONS(9386), + [aux_sym_def_type_statement_token6] = ACTIONS(9386), + [aux_sym_def_type_statement_token7] = ACTIONS(9386), + [aux_sym_def_type_statement_token8] = ACTIONS(9386), + [aux_sym_def_type_statement_token9] = ACTIONS(9386), + [aux_sym_def_type_statement_token10] = ACTIONS(9386), + [aux_sym_def_type_statement_token11] = ACTIONS(9386), + [aux_sym_def_type_statement_token12] = ACTIONS(9386), + [aux_sym_def_type_statement_token13] = ACTIONS(9386), + [aux_sym_def_type_statement_token14] = ACTIONS(9386), + [aux_sym_call_statement_token1] = ACTIONS(9386), + [sym__ambiguous_call_statement] = ACTIONS(9386), + [aux_sym_addressof_expression_token1] = ACTIONS(9386), + [aux_sym_type_of_expression_token1] = ACTIONS(9386), + [aux_sym_unary_expression_token1] = ACTIONS(9386), + [sym_string_literal] = ACTIONS(9388), + [sym_number_literal] = ACTIONS(9388), + [aux_sym_boolean_literal_token1] = ACTIONS(9386), + [aux_sym_boolean_literal_token2] = ACTIONS(9386), + [sym_nothing_literal] = ACTIONS(9386), + [sym_null_literal] = ACTIONS(9386), + [sym_empty_literal] = ACTIONS(9386), + [sym_date_literal] = ACTIONS(9388), + [anon_sym_POUND] = ACTIONS(9386), + }, + [STATE(3993)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(3993), + [sym_identifier] = ACTIONS(8386), + [sym_newline] = ACTIONS(8388), + [anon_sym_COLON] = ACTIONS(8388), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8386), + [aux_sym_frm_property_statement_token1] = ACTIONS(8386), + [anon_sym_DOT] = ACTIONS(8386), + [anon_sym_BANG] = ACTIONS(8388), + [aux_sym__attribute_identifier_token1] = ACTIONS(8386), + [aux_sym_option_statement_token3] = ACTIONS(8386), + [aux_sym_type_declaration_token1] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8386), + [aux_sym_enum_declaration_token1] = ACTIONS(8386), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8386), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8386), + [aux_sym_declare_function_statement_token1] = ACTIONS(8386), + [aux_sym_preprocessor_const_token1] = ACTIONS(8386), + [aux_sym__property_get_header_token1] = ACTIONS(8386), + [aux_sym_event_declaration_token1] = ACTIONS(8386), + [sym_static_modifier] = ACTIONS(8386), + [sym__dim_keyword] = ACTIONS(8386), + [sym__redim_keyword] = ACTIONS(8386), + [aux_sym_get_accessor_token1] = ACTIONS(8386), + [aux_sym_set_accessor_token1] = ACTIONS(8386), + [anon_sym_COMMA] = ACTIONS(9390), + [aux_sym_const_declaration_token1] = ACTIONS(8386), + [anon_sym_LPAREN] = ACTIONS(8388), + [aux_sym_as_type_clause_token2] = ACTIONS(8386), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8386), + [aux_sym_visibility_token1] = ACTIONS(8386), + [aux_sym_visibility_token2] = ACTIONS(8386), + [aux_sym_elseif_fragment_token1] = ACTIONS(8386), + [aux_sym_else_fragment_token1] = ACTIONS(8386), + [aux_sym_select_statement_token1] = ACTIONS(8386), + [aux_sym__for_header_token1] = ACTIONS(8386), + [aux_sym_do_statement_token1] = ACTIONS(8386), + [aux_sym_do_condition_token1] = ACTIONS(8386), + [aux_sym_with_statement_token1] = ACTIONS(8386), + [aux_sym_exit_statement_token1] = ACTIONS(8386), + [sym_end_statement] = ACTIONS(8388), + [aux_sym_on_goto_statement_token1] = ACTIONS(8386), + [aux_sym_on_goto_statement_token2] = ACTIONS(8386), + [aux_sym_on_error_statement_token2] = ACTIONS(8386), + [sym__ambiguous_redim_statement] = ACTIONS(8388), + [aux_sym_erase_statement_token1] = ACTIONS(8386), + [aux_sym_open_statement_token1] = ACTIONS(8386), + [aux_sym_file_mode_token2] = ACTIONS(8386), + [aux_sym_file_access_token2] = ACTIONS(8386), + [aux_sym_file_lock_token2] = ACTIONS(8386), + [aux_sym_print_statement_token1] = ACTIONS(8386), + [anon_sym_PLUS] = ACTIONS(8388), + [anon_sym_DASH] = ACTIONS(8386), + [anon_sym_QMARK] = ACTIONS(8388), + [aux_sym_close_statement_token1] = ACTIONS(8386), + [aux_sym_put_statement_token1] = ACTIONS(8386), + [aux_sym_unlock_statement_token1] = ACTIONS(8386), + [aux_sym_seek_statement_token1] = ACTIONS(8386), + [sym_reset_statement] = ACTIONS(8386), + [aux_sym_raise_event_statement_token1] = ACTIONS(8386), + [sym_stop_statement] = ACTIONS(8386), + [sym_beep_statement] = ACTIONS(8386), + [aux_sym_unload_statement_token1] = ACTIONS(8386), + [aux_sym_def_type_statement_token1] = ACTIONS(8386), + [aux_sym_def_type_statement_token2] = ACTIONS(8386), + [aux_sym_def_type_statement_token3] = ACTIONS(8386), + [aux_sym_def_type_statement_token4] = ACTIONS(8386), + [aux_sym_def_type_statement_token5] = ACTIONS(8386), + [aux_sym_def_type_statement_token6] = ACTIONS(8386), + [aux_sym_def_type_statement_token7] = ACTIONS(8386), + [aux_sym_def_type_statement_token8] = ACTIONS(8386), + [aux_sym_def_type_statement_token9] = ACTIONS(8386), + [aux_sym_def_type_statement_token10] = ACTIONS(8386), + [aux_sym_def_type_statement_token11] = ACTIONS(8386), + [aux_sym_def_type_statement_token12] = ACTIONS(8386), + [aux_sym_def_type_statement_token13] = ACTIONS(8386), + [aux_sym_def_type_statement_token14] = ACTIONS(8386), + [aux_sym_call_statement_token1] = ACTIONS(8386), + [sym__ambiguous_call_statement] = ACTIONS(8386), + [aux_sym_addressof_expression_token1] = ACTIONS(8386), + [aux_sym_type_of_expression_token1] = ACTIONS(8386), + [aux_sym_unary_expression_token1] = ACTIONS(8386), + [sym_string_literal] = ACTIONS(8388), + [sym_number_literal] = ACTIONS(8388), + [aux_sym_boolean_literal_token1] = ACTIONS(8386), + [aux_sym_boolean_literal_token2] = ACTIONS(8386), + [sym_nothing_literal] = ACTIONS(8386), + [sym_null_literal] = ACTIONS(8386), + [sym_empty_literal] = ACTIONS(8386), + [sym_date_literal] = ACTIONS(8388), + [anon_sym_POUND] = ACTIONS(8386), + }, + [STATE(3994)] = { + [sym_identifier] = ACTIONS(9393), + [sym_newline] = ACTIONS(9395), + [anon_sym_COLON] = ACTIONS(9395), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9393), + [aux_sym_frm_property_statement_token1] = ACTIONS(9393), + [anon_sym_DOT] = ACTIONS(9393), + [anon_sym_BANG] = ACTIONS(9395), + [aux_sym__attribute_identifier_token1] = ACTIONS(9393), + [aux_sym_option_statement_token3] = ACTIONS(9393), + [aux_sym_type_declaration_token1] = ACTIONS(9393), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9393), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9393), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9393), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9393), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9393), + [aux_sym_enum_declaration_token1] = ACTIONS(9393), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9393), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9393), + [aux_sym_declare_function_statement_token1] = ACTIONS(9393), + [aux_sym_preprocessor_const_token1] = ACTIONS(9393), + [aux_sym__property_get_header_token1] = ACTIONS(9393), + [aux_sym_event_declaration_token1] = ACTIONS(9393), + [sym_static_modifier] = ACTIONS(9393), + [sym__dim_keyword] = ACTIONS(9393), + [sym__redim_keyword] = ACTIONS(9393), + [aux_sym_get_accessor_token1] = ACTIONS(9393), + [aux_sym_set_accessor_token1] = ACTIONS(9393), + [aux_sym_const_declaration_token1] = ACTIONS(9393), + [anon_sym_LPAREN] = ACTIONS(9395), + [aux_sym_as_type_clause_token2] = ACTIONS(9393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9393), + [aux_sym_visibility_token1] = ACTIONS(9393), + [aux_sym_visibility_token2] = ACTIONS(9393), + [aux_sym_elseif_fragment_token1] = ACTIONS(9393), + [aux_sym_else_fragment_token1] = ACTIONS(9393), + [aux_sym_select_statement_token1] = ACTIONS(9393), + [aux_sym__for_header_token1] = ACTIONS(9393), + [aux_sym_do_statement_token1] = ACTIONS(9393), + [aux_sym_do_condition_token1] = ACTIONS(9393), + [aux_sym_with_statement_token1] = ACTIONS(9393), + [aux_sym_exit_statement_token1] = ACTIONS(9393), + [sym_end_statement] = ACTIONS(9395), + [aux_sym_on_goto_statement_token1] = ACTIONS(9393), + [aux_sym_on_goto_statement_token2] = ACTIONS(9393), + [aux_sym_on_error_statement_token2] = ACTIONS(9393), + [sym__ambiguous_redim_statement] = ACTIONS(9395), + [aux_sym_erase_statement_token1] = ACTIONS(9393), + [aux_sym_open_statement_token1] = ACTIONS(9393), + [aux_sym_file_mode_token2] = ACTIONS(9393), + [aux_sym_file_access_token2] = ACTIONS(9393), + [aux_sym_file_lock_token2] = ACTIONS(9393), + [aux_sym_print_statement_token1] = ACTIONS(9393), + [anon_sym_PLUS] = ACTIONS(9395), + [anon_sym_DASH] = ACTIONS(9393), + [anon_sym_QMARK] = ACTIONS(9395), + [aux_sym_close_statement_token1] = ACTIONS(9393), + [aux_sym_put_statement_token1] = ACTIONS(9393), + [aux_sym_unlock_statement_token1] = ACTIONS(9393), + [aux_sym_seek_statement_token1] = ACTIONS(9393), + [sym_reset_statement] = ACTIONS(9393), + [aux_sym_raise_event_statement_token1] = ACTIONS(9393), + [sym_stop_statement] = ACTIONS(9393), + [sym_beep_statement] = ACTIONS(9393), + [aux_sym_unload_statement_token1] = ACTIONS(9393), + [aux_sym_def_type_statement_token1] = ACTIONS(9393), + [aux_sym_def_type_statement_token2] = ACTIONS(9393), + [aux_sym_def_type_statement_token3] = ACTIONS(9393), + [aux_sym_def_type_statement_token4] = ACTIONS(9393), + [aux_sym_def_type_statement_token5] = ACTIONS(9393), + [aux_sym_def_type_statement_token6] = ACTIONS(9393), + [aux_sym_def_type_statement_token7] = ACTIONS(9393), + [aux_sym_def_type_statement_token8] = ACTIONS(9393), + [aux_sym_def_type_statement_token9] = ACTIONS(9393), + [aux_sym_def_type_statement_token10] = ACTIONS(9393), + [aux_sym_def_type_statement_token11] = ACTIONS(9393), + [aux_sym_def_type_statement_token12] = ACTIONS(9393), + [aux_sym_def_type_statement_token13] = ACTIONS(9393), + [aux_sym_def_type_statement_token14] = ACTIONS(9393), + [aux_sym_call_statement_token1] = ACTIONS(9393), + [sym__ambiguous_call_statement] = ACTIONS(9393), + [aux_sym_addressof_expression_token1] = ACTIONS(9393), + [aux_sym_type_of_expression_token1] = ACTIONS(9393), + [aux_sym_unary_expression_token1] = ACTIONS(9393), + [sym_string_literal] = ACTIONS(9395), + [sym_number_literal] = ACTIONS(9395), + [aux_sym_boolean_literal_token1] = ACTIONS(9393), + [aux_sym_boolean_literal_token2] = ACTIONS(9393), + [sym_nothing_literal] = ACTIONS(9393), + [sym_null_literal] = ACTIONS(9393), + [sym_empty_literal] = ACTIONS(9393), + [sym_date_literal] = ACTIONS(9395), + [anon_sym_POUND] = ACTIONS(9393), + }, + [STATE(3995)] = { + [sym_identifier] = ACTIONS(9397), + [sym_newline] = ACTIONS(9399), + [anon_sym_COLON] = ACTIONS(9399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9397), + [aux_sym_frm_property_statement_token1] = ACTIONS(9397), + [anon_sym_DOT] = ACTIONS(9397), + [anon_sym_BANG] = ACTIONS(9399), + [aux_sym__attribute_identifier_token1] = ACTIONS(9397), + [aux_sym_option_statement_token3] = ACTIONS(9397), + [aux_sym_type_declaration_token1] = ACTIONS(9397), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9397), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9397), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9397), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9397), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9397), + [aux_sym_enum_declaration_token1] = ACTIONS(9397), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9397), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9397), + [aux_sym_declare_function_statement_token1] = ACTIONS(9397), + [aux_sym_preprocessor_const_token1] = ACTIONS(9397), + [aux_sym__property_get_header_token1] = ACTIONS(9397), + [aux_sym_event_declaration_token1] = ACTIONS(9397), + [sym_static_modifier] = ACTIONS(9397), + [sym__dim_keyword] = ACTIONS(9397), + [sym__redim_keyword] = ACTIONS(9397), + [aux_sym_get_accessor_token1] = ACTIONS(9397), + [aux_sym_set_accessor_token1] = ACTIONS(9397), + [aux_sym_const_declaration_token1] = ACTIONS(9397), + [anon_sym_LPAREN] = ACTIONS(9399), + [aux_sym_as_type_clause_token2] = ACTIONS(9397), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9397), + [aux_sym_visibility_token1] = ACTIONS(9397), + [aux_sym_visibility_token2] = ACTIONS(9397), + [aux_sym_elseif_fragment_token1] = ACTIONS(9397), + [aux_sym_else_fragment_token1] = ACTIONS(9397), + [aux_sym_select_statement_token1] = ACTIONS(9397), + [aux_sym__for_header_token1] = ACTIONS(9397), + [aux_sym_do_statement_token1] = ACTIONS(9397), + [aux_sym_do_condition_token1] = ACTIONS(9397), + [aux_sym_with_statement_token1] = ACTIONS(9397), + [aux_sym_exit_statement_token1] = ACTIONS(9397), + [sym_end_statement] = ACTIONS(9399), + [aux_sym_on_goto_statement_token1] = ACTIONS(9397), + [aux_sym_on_goto_statement_token2] = ACTIONS(9397), + [aux_sym_on_error_statement_token2] = ACTIONS(9397), + [sym__ambiguous_redim_statement] = ACTIONS(9399), + [aux_sym_erase_statement_token1] = ACTIONS(9397), + [aux_sym_open_statement_token1] = ACTIONS(9397), + [aux_sym_file_mode_token2] = ACTIONS(9397), + [aux_sym_file_access_token2] = ACTIONS(9397), + [aux_sym_file_lock_token2] = ACTIONS(9397), + [aux_sym_print_statement_token1] = ACTIONS(9397), + [anon_sym_PLUS] = ACTIONS(9399), + [anon_sym_DASH] = ACTIONS(9397), + [anon_sym_QMARK] = ACTIONS(9399), + [aux_sym_close_statement_token1] = ACTIONS(9397), + [aux_sym_put_statement_token1] = ACTIONS(9397), + [aux_sym_unlock_statement_token1] = ACTIONS(9397), + [aux_sym_seek_statement_token1] = ACTIONS(9397), + [sym_reset_statement] = ACTIONS(9397), + [aux_sym_raise_event_statement_token1] = ACTIONS(9397), + [sym_stop_statement] = ACTIONS(9397), + [sym_beep_statement] = ACTIONS(9397), + [aux_sym_unload_statement_token1] = ACTIONS(9397), + [aux_sym_def_type_statement_token1] = ACTIONS(9397), + [aux_sym_def_type_statement_token2] = ACTIONS(9397), + [aux_sym_def_type_statement_token3] = ACTIONS(9397), + [aux_sym_def_type_statement_token4] = ACTIONS(9397), + [aux_sym_def_type_statement_token5] = ACTIONS(9397), + [aux_sym_def_type_statement_token6] = ACTIONS(9397), + [aux_sym_def_type_statement_token7] = ACTIONS(9397), + [aux_sym_def_type_statement_token8] = ACTIONS(9397), + [aux_sym_def_type_statement_token9] = ACTIONS(9397), + [aux_sym_def_type_statement_token10] = ACTIONS(9397), + [aux_sym_def_type_statement_token11] = ACTIONS(9397), + [aux_sym_def_type_statement_token12] = ACTIONS(9397), + [aux_sym_def_type_statement_token13] = ACTIONS(9397), + [aux_sym_def_type_statement_token14] = ACTIONS(9397), + [aux_sym_call_statement_token1] = ACTIONS(9397), + [sym__ambiguous_call_statement] = ACTIONS(9397), + [aux_sym_addressof_expression_token1] = ACTIONS(9397), + [aux_sym_type_of_expression_token1] = ACTIONS(9397), + [aux_sym_unary_expression_token1] = ACTIONS(9397), + [sym_string_literal] = ACTIONS(9399), + [sym_number_literal] = ACTIONS(9399), + [aux_sym_boolean_literal_token1] = ACTIONS(9397), + [aux_sym_boolean_literal_token2] = ACTIONS(9397), + [sym_nothing_literal] = ACTIONS(9397), + [sym_null_literal] = ACTIONS(9397), + [sym_empty_literal] = ACTIONS(9397), + [sym_date_literal] = ACTIONS(9399), + [anon_sym_POUND] = ACTIONS(9397), + }, + [STATE(3996)] = { + [sym_identifier] = ACTIONS(9401), + [sym_newline] = ACTIONS(9403), + [anon_sym_COLON] = ACTIONS(9403), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9401), + [aux_sym_frm_property_statement_token1] = ACTIONS(9401), + [anon_sym_DOT] = ACTIONS(9401), + [anon_sym_BANG] = ACTIONS(9403), + [aux_sym__attribute_identifier_token1] = ACTIONS(9401), + [aux_sym_option_statement_token3] = ACTIONS(9401), + [aux_sym_type_declaration_token1] = ACTIONS(9401), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9401), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9401), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9401), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9401), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9401), + [aux_sym_enum_declaration_token1] = ACTIONS(9401), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9401), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9401), + [aux_sym_declare_function_statement_token1] = ACTIONS(9401), + [aux_sym_preprocessor_const_token1] = ACTIONS(9401), + [aux_sym__property_get_header_token1] = ACTIONS(9401), + [aux_sym_event_declaration_token1] = ACTIONS(9401), + [sym_static_modifier] = ACTIONS(9401), + [sym__dim_keyword] = ACTIONS(9401), + [sym__redim_keyword] = ACTIONS(9401), + [aux_sym_get_accessor_token1] = ACTIONS(9401), + [aux_sym_set_accessor_token1] = ACTIONS(9401), + [aux_sym_const_declaration_token1] = ACTIONS(9401), + [anon_sym_LPAREN] = ACTIONS(9403), + [aux_sym_as_type_clause_token2] = ACTIONS(9401), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9401), + [aux_sym_visibility_token1] = ACTIONS(9401), + [aux_sym_visibility_token2] = ACTIONS(9401), + [aux_sym_elseif_fragment_token1] = ACTIONS(9401), + [aux_sym_else_fragment_token1] = ACTIONS(9401), + [aux_sym_select_statement_token1] = ACTIONS(9401), + [aux_sym__for_header_token1] = ACTIONS(9401), + [aux_sym_do_statement_token1] = ACTIONS(9401), + [aux_sym_do_condition_token1] = ACTIONS(9401), + [aux_sym_with_statement_token1] = ACTIONS(9401), + [aux_sym_exit_statement_token1] = ACTIONS(9401), + [sym_end_statement] = ACTIONS(9403), + [aux_sym_on_goto_statement_token1] = ACTIONS(9401), + [aux_sym_on_goto_statement_token2] = ACTIONS(9401), + [aux_sym_on_error_statement_token2] = ACTIONS(9401), + [sym__ambiguous_redim_statement] = ACTIONS(9403), + [aux_sym_erase_statement_token1] = ACTIONS(9401), + [aux_sym_open_statement_token1] = ACTIONS(9401), + [aux_sym_file_mode_token2] = ACTIONS(9401), + [aux_sym_file_access_token2] = ACTIONS(9401), + [aux_sym_file_lock_token2] = ACTIONS(9401), + [aux_sym_print_statement_token1] = ACTIONS(9401), + [anon_sym_PLUS] = ACTIONS(9403), + [anon_sym_DASH] = ACTIONS(9401), + [anon_sym_QMARK] = ACTIONS(9403), + [aux_sym_close_statement_token1] = ACTIONS(9401), + [aux_sym_put_statement_token1] = ACTIONS(9401), + [aux_sym_unlock_statement_token1] = ACTIONS(9401), + [aux_sym_seek_statement_token1] = ACTIONS(9401), + [sym_reset_statement] = ACTIONS(9401), + [aux_sym_raise_event_statement_token1] = ACTIONS(9401), + [sym_stop_statement] = ACTIONS(9401), + [sym_beep_statement] = ACTIONS(9401), + [aux_sym_unload_statement_token1] = ACTIONS(9401), + [aux_sym_def_type_statement_token1] = ACTIONS(9401), + [aux_sym_def_type_statement_token2] = ACTIONS(9401), + [aux_sym_def_type_statement_token3] = ACTIONS(9401), + [aux_sym_def_type_statement_token4] = ACTIONS(9401), + [aux_sym_def_type_statement_token5] = ACTIONS(9401), + [aux_sym_def_type_statement_token6] = ACTIONS(9401), + [aux_sym_def_type_statement_token7] = ACTIONS(9401), + [aux_sym_def_type_statement_token8] = ACTIONS(9401), + [aux_sym_def_type_statement_token9] = ACTIONS(9401), + [aux_sym_def_type_statement_token10] = ACTIONS(9401), + [aux_sym_def_type_statement_token11] = ACTIONS(9401), + [aux_sym_def_type_statement_token12] = ACTIONS(9401), + [aux_sym_def_type_statement_token13] = ACTIONS(9401), + [aux_sym_def_type_statement_token14] = ACTIONS(9401), + [aux_sym_call_statement_token1] = ACTIONS(9401), + [sym__ambiguous_call_statement] = ACTIONS(9401), + [aux_sym_addressof_expression_token1] = ACTIONS(9401), + [aux_sym_type_of_expression_token1] = ACTIONS(9401), + [aux_sym_unary_expression_token1] = ACTIONS(9401), + [sym_string_literal] = ACTIONS(9403), + [sym_number_literal] = ACTIONS(9403), + [aux_sym_boolean_literal_token1] = ACTIONS(9401), + [aux_sym_boolean_literal_token2] = ACTIONS(9401), + [sym_nothing_literal] = ACTIONS(9401), + [sym_null_literal] = ACTIONS(9401), + [sym_empty_literal] = ACTIONS(9401), + [sym_date_literal] = ACTIONS(9403), + [anon_sym_POUND] = ACTIONS(9401), + }, + [STATE(3997)] = { + [sym_identifier] = ACTIONS(8692), + [sym_newline] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(8694), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8692), + [aux_sym_frm_property_statement_token1] = ACTIONS(8692), + [anon_sym_DOT] = ACTIONS(8692), + [anon_sym_BANG] = ACTIONS(8694), + [aux_sym__attribute_identifier_token1] = ACTIONS(8692), + [aux_sym_option_statement_token3] = ACTIONS(8692), + [aux_sym_type_declaration_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8692), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8692), + [aux_sym_enum_declaration_token1] = ACTIONS(8692), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8692), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8692), + [aux_sym_declare_function_statement_token1] = ACTIONS(8692), + [aux_sym_preprocessor_const_token1] = ACTIONS(8692), + [aux_sym__property_get_header_token1] = ACTIONS(8692), + [aux_sym_event_declaration_token1] = ACTIONS(8692), + [sym_static_modifier] = ACTIONS(8692), + [sym__dim_keyword] = ACTIONS(8692), + [sym__redim_keyword] = ACTIONS(8692), + [aux_sym_get_accessor_token1] = ACTIONS(8692), + [aux_sym_set_accessor_token1] = ACTIONS(8692), + [aux_sym_const_declaration_token1] = ACTIONS(8692), + [anon_sym_LPAREN] = ACTIONS(8694), + [aux_sym_as_type_clause_token2] = ACTIONS(8692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8692), + [aux_sym_visibility_token1] = ACTIONS(8692), + [aux_sym_visibility_token2] = ACTIONS(8692), + [aux_sym_elseif_fragment_token1] = ACTIONS(8692), + [aux_sym_else_fragment_token1] = ACTIONS(8698), + [aux_sym_select_statement_token1] = ACTIONS(8692), + [aux_sym__for_header_token1] = ACTIONS(8692), + [aux_sym_do_statement_token1] = ACTIONS(8692), + [aux_sym_do_condition_token1] = ACTIONS(8692), + [aux_sym_with_statement_token1] = ACTIONS(8692), + [aux_sym_exit_statement_token1] = ACTIONS(8692), + [sym_end_statement] = ACTIONS(8694), + [aux_sym_on_goto_statement_token1] = ACTIONS(8692), + [aux_sym_on_goto_statement_token2] = ACTIONS(8692), + [aux_sym_on_error_statement_token2] = ACTIONS(8692), + [sym__ambiguous_redim_statement] = ACTIONS(8694), + [aux_sym_erase_statement_token1] = ACTIONS(8692), + [aux_sym_open_statement_token1] = ACTIONS(8692), + [aux_sym_file_mode_token2] = ACTIONS(8692), + [aux_sym_file_access_token2] = ACTIONS(8692), + [aux_sym_file_lock_token2] = ACTIONS(8692), + [aux_sym_print_statement_token1] = ACTIONS(8692), + [anon_sym_PLUS] = ACTIONS(8694), + [anon_sym_DASH] = ACTIONS(8692), + [anon_sym_QMARK] = ACTIONS(8694), + [aux_sym_close_statement_token1] = ACTIONS(8692), + [aux_sym_put_statement_token1] = ACTIONS(8692), + [aux_sym_unlock_statement_token1] = ACTIONS(8692), + [aux_sym_seek_statement_token1] = ACTIONS(8692), + [sym_reset_statement] = ACTIONS(8692), + [aux_sym_raise_event_statement_token1] = ACTIONS(8692), + [sym_stop_statement] = ACTIONS(8692), + [sym_beep_statement] = ACTIONS(8692), + [aux_sym_unload_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token2] = ACTIONS(8692), + [aux_sym_def_type_statement_token3] = ACTIONS(8692), + [aux_sym_def_type_statement_token4] = ACTIONS(8692), + [aux_sym_def_type_statement_token5] = ACTIONS(8692), + [aux_sym_def_type_statement_token6] = ACTIONS(8692), + [aux_sym_def_type_statement_token7] = ACTIONS(8692), + [aux_sym_def_type_statement_token8] = ACTIONS(8692), + [aux_sym_def_type_statement_token9] = ACTIONS(8692), + [aux_sym_def_type_statement_token10] = ACTIONS(8692), + [aux_sym_def_type_statement_token11] = ACTIONS(8692), + [aux_sym_def_type_statement_token12] = ACTIONS(8692), + [aux_sym_def_type_statement_token13] = ACTIONS(8692), + [aux_sym_def_type_statement_token14] = ACTIONS(8692), + [aux_sym_call_statement_token1] = ACTIONS(8692), + [sym__ambiguous_call_statement] = ACTIONS(8692), + [aux_sym_addressof_expression_token1] = ACTIONS(8692), + [aux_sym_type_of_expression_token1] = ACTIONS(8692), + [aux_sym_unary_expression_token1] = ACTIONS(8692), + [sym_string_literal] = ACTIONS(8694), + [sym_number_literal] = ACTIONS(8694), + [aux_sym_boolean_literal_token1] = ACTIONS(8692), + [aux_sym_boolean_literal_token2] = ACTIONS(8692), + [sym_nothing_literal] = ACTIONS(8692), + [sym_null_literal] = ACTIONS(8692), + [sym_empty_literal] = ACTIONS(8692), + [sym_date_literal] = ACTIONS(8694), + [anon_sym_POUND] = ACTIONS(8692), + }, + [STATE(3998)] = { + [sym_identifier] = ACTIONS(9405), + [sym_newline] = ACTIONS(9407), + [anon_sym_COLON] = ACTIONS(9407), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9405), + [aux_sym_frm_property_statement_token1] = ACTIONS(9405), + [anon_sym_DOT] = ACTIONS(9405), + [anon_sym_BANG] = ACTIONS(9407), + [aux_sym__attribute_identifier_token1] = ACTIONS(9405), + [aux_sym_option_statement_token3] = ACTIONS(9405), + [aux_sym_type_declaration_token1] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9405), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9405), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9405), + [aux_sym_enum_declaration_token1] = ACTIONS(9405), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9405), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9405), + [aux_sym_declare_function_statement_token1] = ACTIONS(9405), + [aux_sym_preprocessor_const_token1] = ACTIONS(9405), + [aux_sym__property_get_header_token1] = ACTIONS(9405), + [aux_sym_event_declaration_token1] = ACTIONS(9405), + [sym_static_modifier] = ACTIONS(9405), + [sym__dim_keyword] = ACTIONS(9405), + [sym__redim_keyword] = ACTIONS(9405), + [aux_sym_get_accessor_token1] = ACTIONS(9405), + [aux_sym_set_accessor_token1] = ACTIONS(9405), + [aux_sym_const_declaration_token1] = ACTIONS(9405), + [anon_sym_LPAREN] = ACTIONS(9407), + [aux_sym_as_type_clause_token2] = ACTIONS(9405), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9405), + [aux_sym_visibility_token1] = ACTIONS(9405), + [aux_sym_visibility_token2] = ACTIONS(9405), + [aux_sym_elseif_fragment_token1] = ACTIONS(9405), + [aux_sym_else_fragment_token1] = ACTIONS(9405), + [aux_sym_select_statement_token1] = ACTIONS(9405), + [aux_sym__for_header_token1] = ACTIONS(9405), + [aux_sym_do_statement_token1] = ACTIONS(9405), + [aux_sym_do_condition_token1] = ACTIONS(9405), + [aux_sym_with_statement_token1] = ACTIONS(9405), + [aux_sym_exit_statement_token1] = ACTIONS(9405), + [sym_end_statement] = ACTIONS(9407), + [aux_sym_on_goto_statement_token1] = ACTIONS(9405), + [aux_sym_on_goto_statement_token2] = ACTIONS(9405), + [aux_sym_on_error_statement_token2] = ACTIONS(9405), + [sym__ambiguous_redim_statement] = ACTIONS(9407), + [aux_sym_erase_statement_token1] = ACTIONS(9405), + [aux_sym_open_statement_token1] = ACTIONS(9405), + [aux_sym_file_mode_token2] = ACTIONS(9405), + [aux_sym_file_access_token2] = ACTIONS(9405), + [aux_sym_file_lock_token2] = ACTIONS(9405), + [aux_sym_print_statement_token1] = ACTIONS(9405), + [anon_sym_PLUS] = ACTIONS(9407), + [anon_sym_DASH] = ACTIONS(9405), + [anon_sym_QMARK] = ACTIONS(9407), + [aux_sym_close_statement_token1] = ACTIONS(9405), + [aux_sym_put_statement_token1] = ACTIONS(9405), + [aux_sym_unlock_statement_token1] = ACTIONS(9405), + [aux_sym_seek_statement_token1] = ACTIONS(9405), + [sym_reset_statement] = ACTIONS(9405), + [aux_sym_raise_event_statement_token1] = ACTIONS(9405), + [sym_stop_statement] = ACTIONS(9405), + [sym_beep_statement] = ACTIONS(9405), + [aux_sym_unload_statement_token1] = ACTIONS(9405), + [aux_sym_def_type_statement_token1] = ACTIONS(9405), + [aux_sym_def_type_statement_token2] = ACTIONS(9405), + [aux_sym_def_type_statement_token3] = ACTIONS(9405), + [aux_sym_def_type_statement_token4] = ACTIONS(9405), + [aux_sym_def_type_statement_token5] = ACTIONS(9405), + [aux_sym_def_type_statement_token6] = ACTIONS(9405), + [aux_sym_def_type_statement_token7] = ACTIONS(9405), + [aux_sym_def_type_statement_token8] = ACTIONS(9405), + [aux_sym_def_type_statement_token9] = ACTIONS(9405), + [aux_sym_def_type_statement_token10] = ACTIONS(9405), + [aux_sym_def_type_statement_token11] = ACTIONS(9405), + [aux_sym_def_type_statement_token12] = ACTIONS(9405), + [aux_sym_def_type_statement_token13] = ACTIONS(9405), + [aux_sym_def_type_statement_token14] = ACTIONS(9405), + [aux_sym_call_statement_token1] = ACTIONS(9405), + [sym__ambiguous_call_statement] = ACTIONS(9405), + [aux_sym_addressof_expression_token1] = ACTIONS(9405), + [aux_sym_type_of_expression_token1] = ACTIONS(9405), + [aux_sym_unary_expression_token1] = ACTIONS(9405), + [sym_string_literal] = ACTIONS(9407), + [sym_number_literal] = ACTIONS(9407), + [aux_sym_boolean_literal_token1] = ACTIONS(9405), + [aux_sym_boolean_literal_token2] = ACTIONS(9405), + [sym_nothing_literal] = ACTIONS(9405), + [sym_null_literal] = ACTIONS(9405), + [sym_empty_literal] = ACTIONS(9405), + [sym_date_literal] = ACTIONS(9407), + [anon_sym_POUND] = ACTIONS(9405), + }, + [STATE(3999)] = { + [sym_identifier] = ACTIONS(9409), + [sym_newline] = ACTIONS(9411), + [anon_sym_COLON] = ACTIONS(9411), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9409), + [aux_sym_frm_property_statement_token1] = ACTIONS(9409), + [anon_sym_DOT] = ACTIONS(9409), + [anon_sym_BANG] = ACTIONS(9411), + [aux_sym__attribute_identifier_token1] = ACTIONS(9409), + [aux_sym_option_statement_token3] = ACTIONS(9409), + [aux_sym_type_declaration_token1] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9409), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9409), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9409), + [aux_sym_enum_declaration_token1] = ACTIONS(9409), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9409), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9409), + [aux_sym_declare_function_statement_token1] = ACTIONS(9409), + [aux_sym_preprocessor_const_token1] = ACTIONS(9409), + [aux_sym__property_get_header_token1] = ACTIONS(9409), + [aux_sym_event_declaration_token1] = ACTIONS(9409), + [sym_static_modifier] = ACTIONS(9409), + [sym__dim_keyword] = ACTIONS(9409), + [sym__redim_keyword] = ACTIONS(9409), + [aux_sym_get_accessor_token1] = ACTIONS(9409), + [aux_sym_set_accessor_token1] = ACTIONS(9409), + [aux_sym_const_declaration_token1] = ACTIONS(9409), + [anon_sym_LPAREN] = ACTIONS(9411), + [aux_sym_as_type_clause_token2] = ACTIONS(9409), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9409), + [aux_sym_visibility_token1] = ACTIONS(9409), + [aux_sym_visibility_token2] = ACTIONS(9409), + [aux_sym_elseif_fragment_token1] = ACTIONS(9409), + [aux_sym_else_fragment_token1] = ACTIONS(9409), + [aux_sym_select_statement_token1] = ACTIONS(9409), + [aux_sym__for_header_token1] = ACTIONS(9409), + [aux_sym_do_statement_token1] = ACTIONS(9409), + [aux_sym_do_condition_token1] = ACTIONS(9409), + [aux_sym_with_statement_token1] = ACTIONS(9409), + [aux_sym_exit_statement_token1] = ACTIONS(9409), + [sym_end_statement] = ACTIONS(9411), + [aux_sym_on_goto_statement_token1] = ACTIONS(9409), + [aux_sym_on_goto_statement_token2] = ACTIONS(9409), + [aux_sym_on_error_statement_token2] = ACTIONS(9409), + [sym__ambiguous_redim_statement] = ACTIONS(9411), + [aux_sym_erase_statement_token1] = ACTIONS(9409), + [aux_sym_open_statement_token1] = ACTIONS(9409), + [aux_sym_file_mode_token2] = ACTIONS(9409), + [aux_sym_file_access_token2] = ACTIONS(9409), + [aux_sym_file_lock_token2] = ACTIONS(9409), + [aux_sym_print_statement_token1] = ACTIONS(9409), + [anon_sym_PLUS] = ACTIONS(9411), + [anon_sym_DASH] = ACTIONS(9409), + [anon_sym_QMARK] = ACTIONS(9411), + [aux_sym_close_statement_token1] = ACTIONS(9409), + [aux_sym_put_statement_token1] = ACTIONS(9409), + [aux_sym_unlock_statement_token1] = ACTIONS(9409), + [aux_sym_seek_statement_token1] = ACTIONS(9409), + [sym_reset_statement] = ACTIONS(9409), + [aux_sym_raise_event_statement_token1] = ACTIONS(9409), + [sym_stop_statement] = ACTIONS(9409), + [sym_beep_statement] = ACTIONS(9409), + [aux_sym_unload_statement_token1] = ACTIONS(9409), + [aux_sym_def_type_statement_token1] = ACTIONS(9409), + [aux_sym_def_type_statement_token2] = ACTIONS(9409), + [aux_sym_def_type_statement_token3] = ACTIONS(9409), + [aux_sym_def_type_statement_token4] = ACTIONS(9409), + [aux_sym_def_type_statement_token5] = ACTIONS(9409), + [aux_sym_def_type_statement_token6] = ACTIONS(9409), + [aux_sym_def_type_statement_token7] = ACTIONS(9409), + [aux_sym_def_type_statement_token8] = ACTIONS(9409), + [aux_sym_def_type_statement_token9] = ACTIONS(9409), + [aux_sym_def_type_statement_token10] = ACTIONS(9409), + [aux_sym_def_type_statement_token11] = ACTIONS(9409), + [aux_sym_def_type_statement_token12] = ACTIONS(9409), + [aux_sym_def_type_statement_token13] = ACTIONS(9409), + [aux_sym_def_type_statement_token14] = ACTIONS(9409), + [aux_sym_call_statement_token1] = ACTIONS(9409), + [sym__ambiguous_call_statement] = ACTIONS(9409), + [aux_sym_addressof_expression_token1] = ACTIONS(9409), + [aux_sym_type_of_expression_token1] = ACTIONS(9409), + [aux_sym_unary_expression_token1] = ACTIONS(9409), + [sym_string_literal] = ACTIONS(9411), + [sym_number_literal] = ACTIONS(9411), + [aux_sym_boolean_literal_token1] = ACTIONS(9409), + [aux_sym_boolean_literal_token2] = ACTIONS(9409), + [sym_nothing_literal] = ACTIONS(9409), + [sym_null_literal] = ACTIONS(9409), + [sym_empty_literal] = ACTIONS(9409), + [sym_date_literal] = ACTIONS(9411), + [anon_sym_POUND] = ACTIONS(9409), + }, + [STATE(4000)] = { + [sym_identifier] = ACTIONS(9413), + [sym_newline] = ACTIONS(9415), + [anon_sym_COLON] = ACTIONS(9415), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9413), + [aux_sym_frm_property_statement_token1] = ACTIONS(9413), + [anon_sym_DOT] = ACTIONS(9413), + [anon_sym_BANG] = ACTIONS(9415), + [aux_sym__attribute_identifier_token1] = ACTIONS(9413), + [aux_sym_option_statement_token3] = ACTIONS(9413), + [aux_sym_type_declaration_token1] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9413), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9413), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9413), + [aux_sym_enum_declaration_token1] = ACTIONS(9413), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9413), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9413), + [aux_sym_declare_function_statement_token1] = ACTIONS(9413), + [aux_sym_preprocessor_const_token1] = ACTIONS(9413), + [aux_sym__property_get_header_token1] = ACTIONS(9413), + [aux_sym_event_declaration_token1] = ACTIONS(9413), + [sym_static_modifier] = ACTIONS(9413), + [sym__dim_keyword] = ACTIONS(9413), + [sym__redim_keyword] = ACTIONS(9413), + [aux_sym_get_accessor_token1] = ACTIONS(9413), + [aux_sym_set_accessor_token1] = ACTIONS(9413), + [aux_sym_const_declaration_token1] = ACTIONS(9413), + [anon_sym_LPAREN] = ACTIONS(9415), + [aux_sym_as_type_clause_token2] = ACTIONS(9413), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9413), + [aux_sym_visibility_token1] = ACTIONS(9413), + [aux_sym_visibility_token2] = ACTIONS(9413), + [aux_sym_elseif_fragment_token1] = ACTIONS(9413), + [aux_sym_else_fragment_token1] = ACTIONS(9413), + [aux_sym_select_statement_token1] = ACTIONS(9413), + [aux_sym__for_header_token1] = ACTIONS(9413), + [aux_sym_do_statement_token1] = ACTIONS(9413), + [aux_sym_do_condition_token1] = ACTIONS(9413), + [aux_sym_with_statement_token1] = ACTIONS(9413), + [aux_sym_exit_statement_token1] = ACTIONS(9413), + [sym_end_statement] = ACTIONS(9415), + [aux_sym_on_goto_statement_token1] = ACTIONS(9413), + [aux_sym_on_goto_statement_token2] = ACTIONS(9413), + [aux_sym_on_error_statement_token2] = ACTIONS(9413), + [sym__ambiguous_redim_statement] = ACTIONS(9415), + [aux_sym_erase_statement_token1] = ACTIONS(9413), + [aux_sym_open_statement_token1] = ACTIONS(9413), + [aux_sym_file_mode_token2] = ACTIONS(9413), + [aux_sym_file_access_token2] = ACTIONS(9413), + [aux_sym_file_lock_token2] = ACTIONS(9413), + [aux_sym_print_statement_token1] = ACTIONS(9413), + [anon_sym_PLUS] = ACTIONS(9415), + [anon_sym_DASH] = ACTIONS(9413), + [anon_sym_QMARK] = ACTIONS(9415), + [aux_sym_close_statement_token1] = ACTIONS(9413), + [aux_sym_put_statement_token1] = ACTIONS(9413), + [aux_sym_unlock_statement_token1] = ACTIONS(9413), + [aux_sym_seek_statement_token1] = ACTIONS(9413), + [sym_reset_statement] = ACTIONS(9413), + [aux_sym_raise_event_statement_token1] = ACTIONS(9413), + [sym_stop_statement] = ACTIONS(9413), + [sym_beep_statement] = ACTIONS(9413), + [aux_sym_unload_statement_token1] = ACTIONS(9413), + [aux_sym_def_type_statement_token1] = ACTIONS(9413), + [aux_sym_def_type_statement_token2] = ACTIONS(9413), + [aux_sym_def_type_statement_token3] = ACTIONS(9413), + [aux_sym_def_type_statement_token4] = ACTIONS(9413), + [aux_sym_def_type_statement_token5] = ACTIONS(9413), + [aux_sym_def_type_statement_token6] = ACTIONS(9413), + [aux_sym_def_type_statement_token7] = ACTIONS(9413), + [aux_sym_def_type_statement_token8] = ACTIONS(9413), + [aux_sym_def_type_statement_token9] = ACTIONS(9413), + [aux_sym_def_type_statement_token10] = ACTIONS(9413), + [aux_sym_def_type_statement_token11] = ACTIONS(9413), + [aux_sym_def_type_statement_token12] = ACTIONS(9413), + [aux_sym_def_type_statement_token13] = ACTIONS(9413), + [aux_sym_def_type_statement_token14] = ACTIONS(9413), + [aux_sym_call_statement_token1] = ACTIONS(9413), + [sym__ambiguous_call_statement] = ACTIONS(9413), + [aux_sym_addressof_expression_token1] = ACTIONS(9413), + [aux_sym_type_of_expression_token1] = ACTIONS(9413), + [aux_sym_unary_expression_token1] = ACTIONS(9413), + [sym_string_literal] = ACTIONS(9415), + [sym_number_literal] = ACTIONS(9415), + [aux_sym_boolean_literal_token1] = ACTIONS(9413), + [aux_sym_boolean_literal_token2] = ACTIONS(9413), + [sym_nothing_literal] = ACTIONS(9413), + [sym_null_literal] = ACTIONS(9413), + [sym_empty_literal] = ACTIONS(9413), + [sym_date_literal] = ACTIONS(9415), + [anon_sym_POUND] = ACTIONS(9413), + }, + [STATE(4001)] = { + [aux_sym_def_type_statement_repeat1] = STATE(4006), + [sym_identifier] = ACTIONS(8577), + [sym_newline] = ACTIONS(8579), + [anon_sym_COLON] = ACTIONS(8579), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8577), + [aux_sym_frm_property_statement_token1] = ACTIONS(8577), + [anon_sym_DOT] = ACTIONS(8577), + [anon_sym_BANG] = ACTIONS(8579), + [aux_sym__attribute_identifier_token1] = ACTIONS(8577), + [aux_sym_option_statement_token3] = ACTIONS(8577), + [aux_sym_type_declaration_token1] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8577), + [aux_sym_enum_declaration_token1] = ACTIONS(8577), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8577), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8577), + [aux_sym_declare_function_statement_token1] = ACTIONS(8577), + [aux_sym_preprocessor_const_token1] = ACTIONS(8577), + [aux_sym__property_get_header_token1] = ACTIONS(8577), + [aux_sym_event_declaration_token1] = ACTIONS(8577), + [sym_static_modifier] = ACTIONS(8577), + [sym__dim_keyword] = ACTIONS(8577), + [sym__redim_keyword] = ACTIONS(8577), + [aux_sym_get_accessor_token1] = ACTIONS(8577), + [aux_sym_set_accessor_token1] = ACTIONS(8577), + [anon_sym_COMMA] = ACTIONS(9417), + [aux_sym_const_declaration_token1] = ACTIONS(8577), + [anon_sym_LPAREN] = ACTIONS(8579), + [aux_sym_as_type_clause_token2] = ACTIONS(8577), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8577), + [aux_sym_visibility_token1] = ACTIONS(8577), + [aux_sym_visibility_token2] = ACTIONS(8577), + [aux_sym_elseif_fragment_token1] = ACTIONS(8577), + [aux_sym_else_fragment_token1] = ACTIONS(8577), + [aux_sym_select_statement_token1] = ACTIONS(8577), + [aux_sym__for_header_token1] = ACTIONS(8577), + [aux_sym_do_statement_token1] = ACTIONS(8577), + [aux_sym_do_condition_token1] = ACTIONS(8577), + [aux_sym_with_statement_token1] = ACTIONS(8577), + [aux_sym_exit_statement_token1] = ACTIONS(8577), + [sym_end_statement] = ACTIONS(8579), + [aux_sym_on_goto_statement_token1] = ACTIONS(8577), + [aux_sym_on_goto_statement_token2] = ACTIONS(8577), + [aux_sym_on_error_statement_token2] = ACTIONS(8577), + [sym__ambiguous_redim_statement] = ACTIONS(8579), + [aux_sym_erase_statement_token1] = ACTIONS(8577), + [aux_sym_open_statement_token1] = ACTIONS(8577), + [aux_sym_file_mode_token2] = ACTIONS(8577), + [aux_sym_file_access_token2] = ACTIONS(8577), + [aux_sym_file_lock_token2] = ACTIONS(8577), + [aux_sym_print_statement_token1] = ACTIONS(8577), + [anon_sym_PLUS] = ACTIONS(8579), + [anon_sym_DASH] = ACTIONS(8577), + [anon_sym_QMARK] = ACTIONS(8579), + [aux_sym_close_statement_token1] = ACTIONS(8577), + [aux_sym_put_statement_token1] = ACTIONS(8577), + [aux_sym_unlock_statement_token1] = ACTIONS(8577), + [aux_sym_seek_statement_token1] = ACTIONS(8577), + [sym_reset_statement] = ACTIONS(8577), + [aux_sym_raise_event_statement_token1] = ACTIONS(8577), + [sym_stop_statement] = ACTIONS(8577), + [sym_beep_statement] = ACTIONS(8577), + [aux_sym_unload_statement_token1] = ACTIONS(8577), + [aux_sym_def_type_statement_token1] = ACTIONS(8577), + [aux_sym_def_type_statement_token2] = ACTIONS(8577), + [aux_sym_def_type_statement_token3] = ACTIONS(8577), + [aux_sym_def_type_statement_token4] = ACTIONS(8577), + [aux_sym_def_type_statement_token5] = ACTIONS(8577), + [aux_sym_def_type_statement_token6] = ACTIONS(8577), + [aux_sym_def_type_statement_token7] = ACTIONS(8577), + [aux_sym_def_type_statement_token8] = ACTIONS(8577), + [aux_sym_def_type_statement_token9] = ACTIONS(8577), + [aux_sym_def_type_statement_token10] = ACTIONS(8577), + [aux_sym_def_type_statement_token11] = ACTIONS(8577), + [aux_sym_def_type_statement_token12] = ACTIONS(8577), + [aux_sym_def_type_statement_token13] = ACTIONS(8577), + [aux_sym_def_type_statement_token14] = ACTIONS(8577), + [aux_sym_call_statement_token1] = ACTIONS(8577), + [sym__ambiguous_call_statement] = ACTIONS(8577), + [aux_sym_addressof_expression_token1] = ACTIONS(8577), + [aux_sym_type_of_expression_token1] = ACTIONS(8577), + [aux_sym_unary_expression_token1] = ACTIONS(8577), + [sym_string_literal] = ACTIONS(8579), + [sym_number_literal] = ACTIONS(8579), + [aux_sym_boolean_literal_token1] = ACTIONS(8577), + [aux_sym_boolean_literal_token2] = ACTIONS(8577), + [sym_nothing_literal] = ACTIONS(8577), + [sym_null_literal] = ACTIONS(8577), + [sym_empty_literal] = ACTIONS(8577), + [sym_date_literal] = ACTIONS(8579), + [anon_sym_POUND] = ACTIONS(8577), + }, + [STATE(4002)] = { + [sym_identifier] = ACTIONS(9419), + [sym_newline] = ACTIONS(9421), + [anon_sym_COLON] = ACTIONS(9421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9419), + [aux_sym_frm_property_statement_token1] = ACTIONS(9419), + [anon_sym_DOT] = ACTIONS(9419), + [anon_sym_BANG] = ACTIONS(9421), + [aux_sym__attribute_identifier_token1] = ACTIONS(9419), + [aux_sym_option_statement_token3] = ACTIONS(9419), + [aux_sym_type_declaration_token1] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9419), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9419), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9419), + [aux_sym_enum_declaration_token1] = ACTIONS(9419), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9419), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9419), + [aux_sym_declare_function_statement_token1] = ACTIONS(9419), + [aux_sym_preprocessor_const_token1] = ACTIONS(9419), + [aux_sym__property_get_header_token1] = ACTIONS(9419), + [aux_sym_event_declaration_token1] = ACTIONS(9419), + [sym_static_modifier] = ACTIONS(9419), + [sym__dim_keyword] = ACTIONS(9419), + [sym__redim_keyword] = ACTIONS(9419), + [aux_sym_get_accessor_token1] = ACTIONS(9419), + [aux_sym_set_accessor_token1] = ACTIONS(9419), + [aux_sym_const_declaration_token1] = ACTIONS(9419), + [anon_sym_LPAREN] = ACTIONS(9421), + [aux_sym_as_type_clause_token2] = ACTIONS(9419), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9419), + [aux_sym_visibility_token1] = ACTIONS(9419), + [aux_sym_visibility_token2] = ACTIONS(9419), + [aux_sym_elseif_fragment_token1] = ACTIONS(9419), + [aux_sym_else_fragment_token1] = ACTIONS(9419), + [aux_sym_select_statement_token1] = ACTIONS(9419), + [aux_sym__for_header_token1] = ACTIONS(9419), + [aux_sym_do_statement_token1] = ACTIONS(9419), + [aux_sym_do_condition_token1] = ACTIONS(9419), + [aux_sym_with_statement_token1] = ACTIONS(9419), + [aux_sym_exit_statement_token1] = ACTIONS(9419), + [sym_end_statement] = ACTIONS(9421), + [aux_sym_on_goto_statement_token1] = ACTIONS(9419), + [aux_sym_on_goto_statement_token2] = ACTIONS(9419), + [aux_sym_on_error_statement_token2] = ACTIONS(9419), + [sym__ambiguous_redim_statement] = ACTIONS(9421), + [aux_sym_erase_statement_token1] = ACTIONS(9419), + [aux_sym_open_statement_token1] = ACTIONS(9419), + [aux_sym_file_mode_token2] = ACTIONS(9419), + [aux_sym_file_access_token2] = ACTIONS(9419), + [aux_sym_file_lock_token2] = ACTIONS(9419), + [aux_sym_print_statement_token1] = ACTIONS(9419), + [anon_sym_PLUS] = ACTIONS(9421), + [anon_sym_DASH] = ACTIONS(9419), + [anon_sym_QMARK] = ACTIONS(9421), + [aux_sym_close_statement_token1] = ACTIONS(9419), + [aux_sym_put_statement_token1] = ACTIONS(9419), + [aux_sym_unlock_statement_token1] = ACTIONS(9419), + [aux_sym_seek_statement_token1] = ACTIONS(9419), + [sym_reset_statement] = ACTIONS(9419), + [aux_sym_raise_event_statement_token1] = ACTIONS(9419), + [sym_stop_statement] = ACTIONS(9419), + [sym_beep_statement] = ACTIONS(9419), + [aux_sym_unload_statement_token1] = ACTIONS(9419), + [aux_sym_def_type_statement_token1] = ACTIONS(9419), + [aux_sym_def_type_statement_token2] = ACTIONS(9419), + [aux_sym_def_type_statement_token3] = ACTIONS(9419), + [aux_sym_def_type_statement_token4] = ACTIONS(9419), + [aux_sym_def_type_statement_token5] = ACTIONS(9419), + [aux_sym_def_type_statement_token6] = ACTIONS(9419), + [aux_sym_def_type_statement_token7] = ACTIONS(9419), + [aux_sym_def_type_statement_token8] = ACTIONS(9419), + [aux_sym_def_type_statement_token9] = ACTIONS(9419), + [aux_sym_def_type_statement_token10] = ACTIONS(9419), + [aux_sym_def_type_statement_token11] = ACTIONS(9419), + [aux_sym_def_type_statement_token12] = ACTIONS(9419), + [aux_sym_def_type_statement_token13] = ACTIONS(9419), + [aux_sym_def_type_statement_token14] = ACTIONS(9419), + [aux_sym_call_statement_token1] = ACTIONS(9419), + [sym__ambiguous_call_statement] = ACTIONS(9419), + [aux_sym_addressof_expression_token1] = ACTIONS(9419), + [aux_sym_type_of_expression_token1] = ACTIONS(9419), + [aux_sym_unary_expression_token1] = ACTIONS(9419), + [sym_string_literal] = ACTIONS(9421), + [sym_number_literal] = ACTIONS(9421), + [aux_sym_boolean_literal_token1] = ACTIONS(9419), + [aux_sym_boolean_literal_token2] = ACTIONS(9419), + [sym_nothing_literal] = ACTIONS(9419), + [sym_null_literal] = ACTIONS(9419), + [sym_empty_literal] = ACTIONS(9419), + [sym_date_literal] = ACTIONS(9421), + [anon_sym_POUND] = ACTIONS(9419), + }, + [STATE(4003)] = { + [sym_identifier] = ACTIONS(9423), + [sym_newline] = ACTIONS(9425), + [anon_sym_COLON] = ACTIONS(9425), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9423), + [aux_sym_frm_property_statement_token1] = ACTIONS(9423), + [anon_sym_DOT] = ACTIONS(9423), + [anon_sym_BANG] = ACTIONS(9425), + [aux_sym__attribute_identifier_token1] = ACTIONS(9423), + [aux_sym_option_statement_token3] = ACTIONS(9423), + [aux_sym_type_declaration_token1] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9423), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9423), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9423), + [aux_sym_enum_declaration_token1] = ACTIONS(9423), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9423), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9423), + [aux_sym_declare_function_statement_token1] = ACTIONS(9423), + [aux_sym_preprocessor_const_token1] = ACTIONS(9423), + [aux_sym__property_get_header_token1] = ACTIONS(9423), + [aux_sym_event_declaration_token1] = ACTIONS(9423), + [sym_static_modifier] = ACTIONS(9423), + [sym__dim_keyword] = ACTIONS(9423), + [sym__redim_keyword] = ACTIONS(9423), + [aux_sym_get_accessor_token1] = ACTIONS(9423), + [aux_sym_set_accessor_token1] = ACTIONS(9423), + [aux_sym_const_declaration_token1] = ACTIONS(9423), + [anon_sym_LPAREN] = ACTIONS(9425), + [aux_sym_as_type_clause_token2] = ACTIONS(9423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9423), + [aux_sym_visibility_token1] = ACTIONS(9423), + [aux_sym_visibility_token2] = ACTIONS(9423), + [aux_sym_elseif_fragment_token1] = ACTIONS(9423), + [aux_sym_else_fragment_token1] = ACTIONS(9423), + [aux_sym_select_statement_token1] = ACTIONS(9423), + [aux_sym__for_header_token1] = ACTIONS(9423), + [aux_sym_do_statement_token1] = ACTIONS(9423), + [aux_sym_do_condition_token1] = ACTIONS(9423), + [aux_sym_with_statement_token1] = ACTIONS(9423), + [aux_sym_exit_statement_token1] = ACTIONS(9423), + [sym_end_statement] = ACTIONS(9425), + [aux_sym_on_goto_statement_token1] = ACTIONS(9423), + [aux_sym_on_goto_statement_token2] = ACTIONS(9423), + [aux_sym_on_error_statement_token2] = ACTIONS(9423), + [sym__ambiguous_redim_statement] = ACTIONS(9425), + [aux_sym_erase_statement_token1] = ACTIONS(9423), + [aux_sym_open_statement_token1] = ACTIONS(9423), + [aux_sym_file_mode_token2] = ACTIONS(9423), + [aux_sym_file_access_token2] = ACTIONS(9423), + [aux_sym_file_lock_token2] = ACTIONS(9423), + [aux_sym_print_statement_token1] = ACTIONS(9423), + [anon_sym_PLUS] = ACTIONS(9425), + [anon_sym_DASH] = ACTIONS(9423), + [anon_sym_QMARK] = ACTIONS(9425), + [aux_sym_close_statement_token1] = ACTIONS(9423), + [aux_sym_put_statement_token1] = ACTIONS(9423), + [aux_sym_unlock_statement_token1] = ACTIONS(9423), + [aux_sym_seek_statement_token1] = ACTIONS(9423), + [sym_reset_statement] = ACTIONS(9423), + [aux_sym_raise_event_statement_token1] = ACTIONS(9423), + [sym_stop_statement] = ACTIONS(9423), + [sym_beep_statement] = ACTIONS(9423), + [aux_sym_unload_statement_token1] = ACTIONS(9423), + [aux_sym_def_type_statement_token1] = ACTIONS(9423), + [aux_sym_def_type_statement_token2] = ACTIONS(9423), + [aux_sym_def_type_statement_token3] = ACTIONS(9423), + [aux_sym_def_type_statement_token4] = ACTIONS(9423), + [aux_sym_def_type_statement_token5] = ACTIONS(9423), + [aux_sym_def_type_statement_token6] = ACTIONS(9423), + [aux_sym_def_type_statement_token7] = ACTIONS(9423), + [aux_sym_def_type_statement_token8] = ACTIONS(9423), + [aux_sym_def_type_statement_token9] = ACTIONS(9423), + [aux_sym_def_type_statement_token10] = ACTIONS(9423), + [aux_sym_def_type_statement_token11] = ACTIONS(9423), + [aux_sym_def_type_statement_token12] = ACTIONS(9423), + [aux_sym_def_type_statement_token13] = ACTIONS(9423), + [aux_sym_def_type_statement_token14] = ACTIONS(9423), + [aux_sym_call_statement_token1] = ACTIONS(9423), + [sym__ambiguous_call_statement] = ACTIONS(9423), + [aux_sym_addressof_expression_token1] = ACTIONS(9423), + [aux_sym_type_of_expression_token1] = ACTIONS(9423), + [aux_sym_unary_expression_token1] = ACTIONS(9423), + [sym_string_literal] = ACTIONS(9425), + [sym_number_literal] = ACTIONS(9425), + [aux_sym_boolean_literal_token1] = ACTIONS(9423), + [aux_sym_boolean_literal_token2] = ACTIONS(9423), + [sym_nothing_literal] = ACTIONS(9423), + [sym_null_literal] = ACTIONS(9423), + [sym_empty_literal] = ACTIONS(9423), + [sym_date_literal] = ACTIONS(9425), + [anon_sym_POUND] = ACTIONS(9423), + }, + [STATE(4004)] = { + [sym_identifier] = ACTIONS(9427), + [sym_newline] = ACTIONS(9429), + [anon_sym_COLON] = ACTIONS(9429), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9427), + [aux_sym_frm_property_statement_token1] = ACTIONS(9427), + [anon_sym_DOT] = ACTIONS(9427), + [anon_sym_BANG] = ACTIONS(9429), + [aux_sym__attribute_identifier_token1] = ACTIONS(9427), + [aux_sym_option_statement_token3] = ACTIONS(9427), + [aux_sym_type_declaration_token1] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9427), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9427), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9427), + [aux_sym_enum_declaration_token1] = ACTIONS(9427), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9427), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9427), + [aux_sym_declare_function_statement_token1] = ACTIONS(9427), + [aux_sym_preprocessor_const_token1] = ACTIONS(9427), + [aux_sym__property_get_header_token1] = ACTIONS(9427), + [aux_sym_event_declaration_token1] = ACTIONS(9427), + [sym_static_modifier] = ACTIONS(9427), + [sym__dim_keyword] = ACTIONS(9427), + [sym__redim_keyword] = ACTIONS(9427), + [aux_sym_get_accessor_token1] = ACTIONS(9427), + [aux_sym_set_accessor_token1] = ACTIONS(9427), + [aux_sym_const_declaration_token1] = ACTIONS(9427), + [anon_sym_LPAREN] = ACTIONS(9429), + [aux_sym_as_type_clause_token2] = ACTIONS(9427), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9427), + [aux_sym_visibility_token1] = ACTIONS(9427), + [aux_sym_visibility_token2] = ACTIONS(9427), + [aux_sym_elseif_fragment_token1] = ACTIONS(9427), + [aux_sym_else_fragment_token1] = ACTIONS(9427), + [aux_sym_select_statement_token1] = ACTIONS(9427), + [aux_sym__for_header_token1] = ACTIONS(9427), + [aux_sym_do_statement_token1] = ACTIONS(9427), + [aux_sym_do_condition_token1] = ACTIONS(9427), + [aux_sym_with_statement_token1] = ACTIONS(9427), + [aux_sym_exit_statement_token1] = ACTIONS(9427), + [sym_end_statement] = ACTIONS(9429), + [aux_sym_on_goto_statement_token1] = ACTIONS(9427), + [aux_sym_on_goto_statement_token2] = ACTIONS(9427), + [aux_sym_on_error_statement_token2] = ACTIONS(9427), + [sym__ambiguous_redim_statement] = ACTIONS(9429), + [aux_sym_erase_statement_token1] = ACTIONS(9427), + [aux_sym_open_statement_token1] = ACTIONS(9427), + [aux_sym_file_mode_token2] = ACTIONS(9427), + [aux_sym_file_access_token2] = ACTIONS(9427), + [aux_sym_file_lock_token2] = ACTIONS(9427), + [aux_sym_print_statement_token1] = ACTIONS(9427), + [anon_sym_PLUS] = ACTIONS(9429), + [anon_sym_DASH] = ACTIONS(9427), + [anon_sym_QMARK] = ACTIONS(9429), + [aux_sym_close_statement_token1] = ACTIONS(9427), + [aux_sym_put_statement_token1] = ACTIONS(9427), + [aux_sym_unlock_statement_token1] = ACTIONS(9427), + [aux_sym_seek_statement_token1] = ACTIONS(9427), + [sym_reset_statement] = ACTIONS(9427), + [aux_sym_raise_event_statement_token1] = ACTIONS(9427), + [sym_stop_statement] = ACTIONS(9427), + [sym_beep_statement] = ACTIONS(9427), + [aux_sym_unload_statement_token1] = ACTIONS(9427), + [aux_sym_def_type_statement_token1] = ACTIONS(9427), + [aux_sym_def_type_statement_token2] = ACTIONS(9427), + [aux_sym_def_type_statement_token3] = ACTIONS(9427), + [aux_sym_def_type_statement_token4] = ACTIONS(9427), + [aux_sym_def_type_statement_token5] = ACTIONS(9427), + [aux_sym_def_type_statement_token6] = ACTIONS(9427), + [aux_sym_def_type_statement_token7] = ACTIONS(9427), + [aux_sym_def_type_statement_token8] = ACTIONS(9427), + [aux_sym_def_type_statement_token9] = ACTIONS(9427), + [aux_sym_def_type_statement_token10] = ACTIONS(9427), + [aux_sym_def_type_statement_token11] = ACTIONS(9427), + [aux_sym_def_type_statement_token12] = ACTIONS(9427), + [aux_sym_def_type_statement_token13] = ACTIONS(9427), + [aux_sym_def_type_statement_token14] = ACTIONS(9427), + [aux_sym_call_statement_token1] = ACTIONS(9427), + [sym__ambiguous_call_statement] = ACTIONS(9427), + [aux_sym_addressof_expression_token1] = ACTIONS(9427), + [aux_sym_type_of_expression_token1] = ACTIONS(9427), + [aux_sym_unary_expression_token1] = ACTIONS(9427), + [sym_string_literal] = ACTIONS(9429), + [sym_number_literal] = ACTIONS(9429), + [aux_sym_boolean_literal_token1] = ACTIONS(9427), + [aux_sym_boolean_literal_token2] = ACTIONS(9427), + [sym_nothing_literal] = ACTIONS(9427), + [sym_null_literal] = ACTIONS(9427), + [sym_empty_literal] = ACTIONS(9427), + [sym_date_literal] = ACTIONS(9429), + [anon_sym_POUND] = ACTIONS(9427), + }, + [STATE(4005)] = { + [sym_identifier] = ACTIONS(9431), + [sym_newline] = ACTIONS(9433), + [anon_sym_COLON] = ACTIONS(9433), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9431), + [aux_sym_frm_property_statement_token1] = ACTIONS(9431), + [anon_sym_DOT] = ACTIONS(9431), + [anon_sym_BANG] = ACTIONS(9433), + [aux_sym__attribute_identifier_token1] = ACTIONS(9431), + [aux_sym_option_statement_token3] = ACTIONS(9431), + [aux_sym_type_declaration_token1] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9431), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9431), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9431), + [aux_sym_enum_declaration_token1] = ACTIONS(9431), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9431), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9431), + [aux_sym_declare_function_statement_token1] = ACTIONS(9431), + [aux_sym_preprocessor_const_token1] = ACTIONS(9431), + [aux_sym__property_get_header_token1] = ACTIONS(9431), + [aux_sym_event_declaration_token1] = ACTIONS(9431), + [sym_static_modifier] = ACTIONS(9431), + [sym__dim_keyword] = ACTIONS(9431), + [sym__redim_keyword] = ACTIONS(9431), + [aux_sym_get_accessor_token1] = ACTIONS(9431), + [aux_sym_set_accessor_token1] = ACTIONS(9431), + [aux_sym_const_declaration_token1] = ACTIONS(9431), + [anon_sym_LPAREN] = ACTIONS(9433), + [aux_sym_as_type_clause_token2] = ACTIONS(9431), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9431), + [aux_sym_visibility_token1] = ACTIONS(9431), + [aux_sym_visibility_token2] = ACTIONS(9431), + [aux_sym_elseif_fragment_token1] = ACTIONS(9431), + [aux_sym_else_fragment_token1] = ACTIONS(9431), + [aux_sym_select_statement_token1] = ACTIONS(9431), + [aux_sym__for_header_token1] = ACTIONS(9431), + [aux_sym_do_statement_token1] = ACTIONS(9431), + [aux_sym_do_condition_token1] = ACTIONS(9431), + [aux_sym_with_statement_token1] = ACTIONS(9431), + [aux_sym_exit_statement_token1] = ACTIONS(9431), + [sym_end_statement] = ACTIONS(9433), + [aux_sym_on_goto_statement_token1] = ACTIONS(9431), + [aux_sym_on_goto_statement_token2] = ACTIONS(9431), + [aux_sym_on_error_statement_token2] = ACTIONS(9431), + [sym__ambiguous_redim_statement] = ACTIONS(9433), + [aux_sym_erase_statement_token1] = ACTIONS(9431), + [aux_sym_open_statement_token1] = ACTIONS(9431), + [aux_sym_file_mode_token2] = ACTIONS(9431), + [aux_sym_file_access_token2] = ACTIONS(9431), + [aux_sym_file_lock_token2] = ACTIONS(9431), + [aux_sym_print_statement_token1] = ACTIONS(9431), + [anon_sym_PLUS] = ACTIONS(9433), + [anon_sym_DASH] = ACTIONS(9431), + [anon_sym_QMARK] = ACTIONS(9433), + [aux_sym_close_statement_token1] = ACTIONS(9431), + [aux_sym_put_statement_token1] = ACTIONS(9431), + [aux_sym_unlock_statement_token1] = ACTIONS(9431), + [aux_sym_seek_statement_token1] = ACTIONS(9431), + [sym_reset_statement] = ACTIONS(9431), + [aux_sym_raise_event_statement_token1] = ACTIONS(9431), + [sym_stop_statement] = ACTIONS(9431), + [sym_beep_statement] = ACTIONS(9431), + [aux_sym_unload_statement_token1] = ACTIONS(9431), + [aux_sym_def_type_statement_token1] = ACTIONS(9431), + [aux_sym_def_type_statement_token2] = ACTIONS(9431), + [aux_sym_def_type_statement_token3] = ACTIONS(9431), + [aux_sym_def_type_statement_token4] = ACTIONS(9431), + [aux_sym_def_type_statement_token5] = ACTIONS(9431), + [aux_sym_def_type_statement_token6] = ACTIONS(9431), + [aux_sym_def_type_statement_token7] = ACTIONS(9431), + [aux_sym_def_type_statement_token8] = ACTIONS(9431), + [aux_sym_def_type_statement_token9] = ACTIONS(9431), + [aux_sym_def_type_statement_token10] = ACTIONS(9431), + [aux_sym_def_type_statement_token11] = ACTIONS(9431), + [aux_sym_def_type_statement_token12] = ACTIONS(9431), + [aux_sym_def_type_statement_token13] = ACTIONS(9431), + [aux_sym_def_type_statement_token14] = ACTIONS(9431), + [aux_sym_call_statement_token1] = ACTIONS(9431), + [sym__ambiguous_call_statement] = ACTIONS(9431), + [aux_sym_addressof_expression_token1] = ACTIONS(9431), + [aux_sym_type_of_expression_token1] = ACTIONS(9431), + [aux_sym_unary_expression_token1] = ACTIONS(9431), + [sym_string_literal] = ACTIONS(9433), + [sym_number_literal] = ACTIONS(9433), + [aux_sym_boolean_literal_token1] = ACTIONS(9431), + [aux_sym_boolean_literal_token2] = ACTIONS(9431), + [sym_nothing_literal] = ACTIONS(9431), + [sym_null_literal] = ACTIONS(9431), + [sym_empty_literal] = ACTIONS(9431), + [sym_date_literal] = ACTIONS(9433), + [anon_sym_POUND] = ACTIONS(9431), + }, + [STATE(4006)] = { + [aux_sym_def_type_statement_repeat1] = STATE(4024), + [sym_identifier] = ACTIONS(8603), + [sym_newline] = ACTIONS(8605), + [anon_sym_COLON] = ACTIONS(8605), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8603), + [aux_sym_frm_property_statement_token1] = ACTIONS(8603), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_BANG] = ACTIONS(8605), + [aux_sym__attribute_identifier_token1] = ACTIONS(8603), + [aux_sym_option_statement_token3] = ACTIONS(8603), + [aux_sym_type_declaration_token1] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8603), + [aux_sym_enum_declaration_token1] = ACTIONS(8603), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8603), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8603), + [aux_sym_declare_function_statement_token1] = ACTIONS(8603), + [aux_sym_preprocessor_const_token1] = ACTIONS(8603), + [aux_sym__property_get_header_token1] = ACTIONS(8603), + [aux_sym_event_declaration_token1] = ACTIONS(8603), + [sym_static_modifier] = ACTIONS(8603), + [sym__dim_keyword] = ACTIONS(8603), + [sym__redim_keyword] = ACTIONS(8603), + [aux_sym_get_accessor_token1] = ACTIONS(8603), + [aux_sym_set_accessor_token1] = ACTIONS(8603), + [anon_sym_COMMA] = ACTIONS(9417), + [aux_sym_const_declaration_token1] = ACTIONS(8603), + [anon_sym_LPAREN] = ACTIONS(8605), + [aux_sym_as_type_clause_token2] = ACTIONS(8603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8603), + [aux_sym_visibility_token1] = ACTIONS(8603), + [aux_sym_visibility_token2] = ACTIONS(8603), + [aux_sym_elseif_fragment_token1] = ACTIONS(8603), + [aux_sym_else_fragment_token1] = ACTIONS(8603), + [aux_sym_select_statement_token1] = ACTIONS(8603), + [aux_sym__for_header_token1] = ACTIONS(8603), + [aux_sym_do_statement_token1] = ACTIONS(8603), + [aux_sym_do_condition_token1] = ACTIONS(8603), + [aux_sym_with_statement_token1] = ACTIONS(8603), + [aux_sym_exit_statement_token1] = ACTIONS(8603), + [sym_end_statement] = ACTIONS(8605), + [aux_sym_on_goto_statement_token1] = ACTIONS(8603), + [aux_sym_on_goto_statement_token2] = ACTIONS(8603), + [aux_sym_on_error_statement_token2] = ACTIONS(8603), + [sym__ambiguous_redim_statement] = ACTIONS(8605), + [aux_sym_erase_statement_token1] = ACTIONS(8603), + [aux_sym_open_statement_token1] = ACTIONS(8603), + [aux_sym_file_mode_token2] = ACTIONS(8603), + [aux_sym_file_access_token2] = ACTIONS(8603), + [aux_sym_file_lock_token2] = ACTIONS(8603), + [aux_sym_print_statement_token1] = ACTIONS(8603), + [anon_sym_PLUS] = ACTIONS(8605), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_QMARK] = ACTIONS(8605), + [aux_sym_close_statement_token1] = ACTIONS(8603), + [aux_sym_put_statement_token1] = ACTIONS(8603), + [aux_sym_unlock_statement_token1] = ACTIONS(8603), + [aux_sym_seek_statement_token1] = ACTIONS(8603), + [sym_reset_statement] = ACTIONS(8603), + [aux_sym_raise_event_statement_token1] = ACTIONS(8603), + [sym_stop_statement] = ACTIONS(8603), + [sym_beep_statement] = ACTIONS(8603), + [aux_sym_unload_statement_token1] = ACTIONS(8603), + [aux_sym_def_type_statement_token1] = ACTIONS(8603), + [aux_sym_def_type_statement_token2] = ACTIONS(8603), + [aux_sym_def_type_statement_token3] = ACTIONS(8603), + [aux_sym_def_type_statement_token4] = ACTIONS(8603), + [aux_sym_def_type_statement_token5] = ACTIONS(8603), + [aux_sym_def_type_statement_token6] = ACTIONS(8603), + [aux_sym_def_type_statement_token7] = ACTIONS(8603), + [aux_sym_def_type_statement_token8] = ACTIONS(8603), + [aux_sym_def_type_statement_token9] = ACTIONS(8603), + [aux_sym_def_type_statement_token10] = ACTIONS(8603), + [aux_sym_def_type_statement_token11] = ACTIONS(8603), + [aux_sym_def_type_statement_token12] = ACTIONS(8603), + [aux_sym_def_type_statement_token13] = ACTIONS(8603), + [aux_sym_def_type_statement_token14] = ACTIONS(8603), + [aux_sym_call_statement_token1] = ACTIONS(8603), + [sym__ambiguous_call_statement] = ACTIONS(8603), + [aux_sym_addressof_expression_token1] = ACTIONS(8603), + [aux_sym_type_of_expression_token1] = ACTIONS(8603), + [aux_sym_unary_expression_token1] = ACTIONS(8603), + [sym_string_literal] = ACTIONS(8605), + [sym_number_literal] = ACTIONS(8605), + [aux_sym_boolean_literal_token1] = ACTIONS(8603), + [aux_sym_boolean_literal_token2] = ACTIONS(8603), + [sym_nothing_literal] = ACTIONS(8603), + [sym_null_literal] = ACTIONS(8603), + [sym_empty_literal] = ACTIONS(8603), + [sym_date_literal] = ACTIONS(8605), + [anon_sym_POUND] = ACTIONS(8603), + }, + [STATE(4007)] = { + [sym_identifier] = ACTIONS(9435), + [sym_newline] = ACTIONS(9437), + [anon_sym_COLON] = ACTIONS(9437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9435), + [aux_sym_frm_property_statement_token1] = ACTIONS(9435), + [anon_sym_DOT] = ACTIONS(9435), + [anon_sym_BANG] = ACTIONS(9437), + [aux_sym__attribute_identifier_token1] = ACTIONS(9435), + [aux_sym_option_statement_token3] = ACTIONS(9435), + [aux_sym_type_declaration_token1] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9435), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9435), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9435), + [aux_sym_enum_declaration_token1] = ACTIONS(9435), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9435), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9435), + [aux_sym_declare_function_statement_token1] = ACTIONS(9435), + [aux_sym_preprocessor_const_token1] = ACTIONS(9435), + [aux_sym__property_get_header_token1] = ACTIONS(9435), + [aux_sym_event_declaration_token1] = ACTIONS(9435), + [sym_static_modifier] = ACTIONS(9435), + [sym__dim_keyword] = ACTIONS(9435), + [sym__redim_keyword] = ACTIONS(9435), + [aux_sym_get_accessor_token1] = ACTIONS(9435), + [aux_sym_set_accessor_token1] = ACTIONS(9435), + [aux_sym_const_declaration_token1] = ACTIONS(9435), + [anon_sym_LPAREN] = ACTIONS(9437), + [aux_sym_as_type_clause_token2] = ACTIONS(9435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9435), + [aux_sym_visibility_token1] = ACTIONS(9435), + [aux_sym_visibility_token2] = ACTIONS(9435), + [aux_sym_elseif_fragment_token1] = ACTIONS(9435), + [aux_sym_else_fragment_token1] = ACTIONS(9435), + [aux_sym_select_statement_token1] = ACTIONS(9435), + [aux_sym__for_header_token1] = ACTIONS(9435), + [aux_sym_do_statement_token1] = ACTIONS(9435), + [aux_sym_do_condition_token1] = ACTIONS(9435), + [aux_sym_with_statement_token1] = ACTIONS(9435), + [aux_sym_exit_statement_token1] = ACTIONS(9435), + [sym_end_statement] = ACTIONS(9437), + [aux_sym_on_goto_statement_token1] = ACTIONS(9435), + [aux_sym_on_goto_statement_token2] = ACTIONS(9435), + [aux_sym_on_error_statement_token2] = ACTIONS(9435), + [sym__ambiguous_redim_statement] = ACTIONS(9437), + [aux_sym_erase_statement_token1] = ACTIONS(9435), + [aux_sym_open_statement_token1] = ACTIONS(9435), + [aux_sym_file_mode_token2] = ACTIONS(9435), + [aux_sym_file_access_token2] = ACTIONS(9435), + [aux_sym_file_lock_token2] = ACTIONS(9435), + [aux_sym_print_statement_token1] = ACTIONS(9435), + [anon_sym_PLUS] = ACTIONS(9437), + [anon_sym_DASH] = ACTIONS(9435), + [anon_sym_QMARK] = ACTIONS(9437), + [aux_sym_close_statement_token1] = ACTIONS(9435), + [aux_sym_put_statement_token1] = ACTIONS(9435), + [aux_sym_unlock_statement_token1] = ACTIONS(9435), + [aux_sym_seek_statement_token1] = ACTIONS(9435), + [sym_reset_statement] = ACTIONS(9435), + [aux_sym_raise_event_statement_token1] = ACTIONS(9435), + [sym_stop_statement] = ACTIONS(9435), + [sym_beep_statement] = ACTIONS(9435), + [aux_sym_unload_statement_token1] = ACTIONS(9435), + [aux_sym_def_type_statement_token1] = ACTIONS(9435), + [aux_sym_def_type_statement_token2] = ACTIONS(9435), + [aux_sym_def_type_statement_token3] = ACTIONS(9435), + [aux_sym_def_type_statement_token4] = ACTIONS(9435), + [aux_sym_def_type_statement_token5] = ACTIONS(9435), + [aux_sym_def_type_statement_token6] = ACTIONS(9435), + [aux_sym_def_type_statement_token7] = ACTIONS(9435), + [aux_sym_def_type_statement_token8] = ACTIONS(9435), + [aux_sym_def_type_statement_token9] = ACTIONS(9435), + [aux_sym_def_type_statement_token10] = ACTIONS(9435), + [aux_sym_def_type_statement_token11] = ACTIONS(9435), + [aux_sym_def_type_statement_token12] = ACTIONS(9435), + [aux_sym_def_type_statement_token13] = ACTIONS(9435), + [aux_sym_def_type_statement_token14] = ACTIONS(9435), + [aux_sym_call_statement_token1] = ACTIONS(9435), + [sym__ambiguous_call_statement] = ACTIONS(9435), + [aux_sym_addressof_expression_token1] = ACTIONS(9435), + [aux_sym_type_of_expression_token1] = ACTIONS(9435), + [aux_sym_unary_expression_token1] = ACTIONS(9435), + [sym_string_literal] = ACTIONS(9437), + [sym_number_literal] = ACTIONS(9437), + [aux_sym_boolean_literal_token1] = ACTIONS(9435), + [aux_sym_boolean_literal_token2] = ACTIONS(9435), + [sym_nothing_literal] = ACTIONS(9435), + [sym_null_literal] = ACTIONS(9435), + [sym_empty_literal] = ACTIONS(9435), + [sym_date_literal] = ACTIONS(9437), + [anon_sym_POUND] = ACTIONS(9435), + }, + [STATE(4008)] = { + [sym_identifier] = ACTIONS(9439), + [sym_newline] = ACTIONS(9441), + [anon_sym_COLON] = ACTIONS(9441), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9439), + [aux_sym_frm_property_statement_token1] = ACTIONS(9439), + [anon_sym_DOT] = ACTIONS(9439), + [anon_sym_BANG] = ACTIONS(9441), + [aux_sym__attribute_identifier_token1] = ACTIONS(9439), + [aux_sym_option_statement_token3] = ACTIONS(9439), + [aux_sym_type_declaration_token1] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9439), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9439), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9439), + [aux_sym_enum_declaration_token1] = ACTIONS(9439), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9439), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9439), + [aux_sym_declare_function_statement_token1] = ACTIONS(9439), + [aux_sym_preprocessor_const_token1] = ACTIONS(9439), + [aux_sym__property_get_header_token1] = ACTIONS(9439), + [aux_sym_event_declaration_token1] = ACTIONS(9439), + [sym_static_modifier] = ACTIONS(9439), + [sym__dim_keyword] = ACTIONS(9439), + [sym__redim_keyword] = ACTIONS(9439), + [aux_sym_get_accessor_token1] = ACTIONS(9439), + [aux_sym_set_accessor_token1] = ACTIONS(9439), + [aux_sym_const_declaration_token1] = ACTIONS(9439), + [anon_sym_LPAREN] = ACTIONS(9441), + [aux_sym_as_type_clause_token2] = ACTIONS(9439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9439), + [aux_sym_visibility_token1] = ACTIONS(9439), + [aux_sym_visibility_token2] = ACTIONS(9439), + [aux_sym_elseif_fragment_token1] = ACTIONS(9439), + [aux_sym_else_fragment_token1] = ACTIONS(9439), + [aux_sym_select_statement_token1] = ACTIONS(9439), + [aux_sym__for_header_token1] = ACTIONS(9439), + [aux_sym_do_statement_token1] = ACTIONS(9439), + [aux_sym_do_condition_token1] = ACTIONS(9439), + [aux_sym_with_statement_token1] = ACTIONS(9439), + [aux_sym_exit_statement_token1] = ACTIONS(9439), + [sym_end_statement] = ACTIONS(9441), + [aux_sym_on_goto_statement_token1] = ACTIONS(9439), + [aux_sym_on_goto_statement_token2] = ACTIONS(9439), + [aux_sym_on_error_statement_token2] = ACTIONS(9439), + [sym__ambiguous_redim_statement] = ACTIONS(9441), + [aux_sym_erase_statement_token1] = ACTIONS(9439), + [aux_sym_open_statement_token1] = ACTIONS(9439), + [aux_sym_file_mode_token2] = ACTIONS(9439), + [aux_sym_file_access_token2] = ACTIONS(9439), + [aux_sym_file_lock_token2] = ACTIONS(9439), + [aux_sym_print_statement_token1] = ACTIONS(9439), + [anon_sym_PLUS] = ACTIONS(9441), + [anon_sym_DASH] = ACTIONS(9439), + [anon_sym_QMARK] = ACTIONS(9441), + [aux_sym_close_statement_token1] = ACTIONS(9439), + [aux_sym_put_statement_token1] = ACTIONS(9439), + [aux_sym_unlock_statement_token1] = ACTIONS(9439), + [aux_sym_seek_statement_token1] = ACTIONS(9439), + [sym_reset_statement] = ACTIONS(9439), + [aux_sym_raise_event_statement_token1] = ACTIONS(9439), + [sym_stop_statement] = ACTIONS(9439), + [sym_beep_statement] = ACTIONS(9439), + [aux_sym_unload_statement_token1] = ACTIONS(9439), + [aux_sym_def_type_statement_token1] = ACTIONS(9439), + [aux_sym_def_type_statement_token2] = ACTIONS(9439), + [aux_sym_def_type_statement_token3] = ACTIONS(9439), + [aux_sym_def_type_statement_token4] = ACTIONS(9439), + [aux_sym_def_type_statement_token5] = ACTIONS(9439), + [aux_sym_def_type_statement_token6] = ACTIONS(9439), + [aux_sym_def_type_statement_token7] = ACTIONS(9439), + [aux_sym_def_type_statement_token8] = ACTIONS(9439), + [aux_sym_def_type_statement_token9] = ACTIONS(9439), + [aux_sym_def_type_statement_token10] = ACTIONS(9439), + [aux_sym_def_type_statement_token11] = ACTIONS(9439), + [aux_sym_def_type_statement_token12] = ACTIONS(9439), + [aux_sym_def_type_statement_token13] = ACTIONS(9439), + [aux_sym_def_type_statement_token14] = ACTIONS(9439), + [aux_sym_call_statement_token1] = ACTIONS(9439), + [sym__ambiguous_call_statement] = ACTIONS(9439), + [aux_sym_addressof_expression_token1] = ACTIONS(9439), + [aux_sym_type_of_expression_token1] = ACTIONS(9439), + [aux_sym_unary_expression_token1] = ACTIONS(9439), + [sym_string_literal] = ACTIONS(9441), + [sym_number_literal] = ACTIONS(9441), + [aux_sym_boolean_literal_token1] = ACTIONS(9439), + [aux_sym_boolean_literal_token2] = ACTIONS(9439), + [sym_nothing_literal] = ACTIONS(9439), + [sym_null_literal] = ACTIONS(9439), + [sym_empty_literal] = ACTIONS(9439), + [sym_date_literal] = ACTIONS(9441), + [anon_sym_POUND] = ACTIONS(9439), + }, + [STATE(4009)] = { + [sym__required_file_number] = STATE(4266), + [sym_file_number_literal] = STATE(4320), + [sym_identifier] = ACTIONS(8312), + [sym_newline] = ACTIONS(8314), + [anon_sym_COLON] = ACTIONS(8314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8312), + [aux_sym_frm_property_statement_token1] = ACTIONS(8312), + [anon_sym_DOT] = ACTIONS(8312), + [anon_sym_BANG] = ACTIONS(8314), + [aux_sym__attribute_identifier_token1] = ACTIONS(8312), + [aux_sym_option_statement_token3] = ACTIONS(8312), + [aux_sym_type_declaration_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8312), + [aux_sym_enum_declaration_token1] = ACTIONS(8312), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8312), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8312), + [aux_sym_declare_function_statement_token1] = ACTIONS(8312), + [aux_sym_preprocessor_const_token1] = ACTIONS(8312), + [aux_sym__property_get_header_token1] = ACTIONS(8312), + [aux_sym_event_declaration_token1] = ACTIONS(8312), + [sym_static_modifier] = ACTIONS(8312), + [sym__dim_keyword] = ACTIONS(8312), + [sym__redim_keyword] = ACTIONS(8312), + [aux_sym_get_accessor_token1] = ACTIONS(8312), + [aux_sym_set_accessor_token1] = ACTIONS(8312), + [aux_sym_const_declaration_token1] = ACTIONS(8312), + [anon_sym_LPAREN] = ACTIONS(8314), + [aux_sym_as_type_clause_token2] = ACTIONS(8312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8312), + [aux_sym_visibility_token1] = ACTIONS(8312), + [aux_sym_visibility_token2] = ACTIONS(8312), + [aux_sym_elseif_fragment_token1] = ACTIONS(8312), + [aux_sym_else_fragment_token1] = ACTIONS(8312), + [aux_sym_select_statement_token1] = ACTIONS(8312), + [aux_sym__for_header_token1] = ACTIONS(8312), + [aux_sym_do_statement_token1] = ACTIONS(8312), + [aux_sym_do_condition_token1] = ACTIONS(8312), + [aux_sym_with_statement_token1] = ACTIONS(8312), + [aux_sym_exit_statement_token1] = ACTIONS(8312), + [sym_end_statement] = ACTIONS(8314), + [aux_sym_on_goto_statement_token1] = ACTIONS(8312), + [aux_sym_on_goto_statement_token2] = ACTIONS(8312), + [aux_sym_on_error_statement_token2] = ACTIONS(8312), + [sym__ambiguous_redim_statement] = ACTIONS(8314), + [aux_sym_erase_statement_token1] = ACTIONS(8312), + [aux_sym_open_statement_token1] = ACTIONS(8312), + [aux_sym_file_mode_token2] = ACTIONS(8312), + [aux_sym_file_access_token2] = ACTIONS(8312), + [aux_sym_file_lock_token2] = ACTIONS(8312), + [aux_sym_print_statement_token1] = ACTIONS(8312), + [anon_sym_PLUS] = ACTIONS(8314), + [anon_sym_DASH] = ACTIONS(8312), + [anon_sym_QMARK] = ACTIONS(8314), + [aux_sym_close_statement_token1] = ACTIONS(8312), + [aux_sym_put_statement_token1] = ACTIONS(8312), + [aux_sym_unlock_statement_token1] = ACTIONS(8312), + [aux_sym_seek_statement_token1] = ACTIONS(8312), + [sym_reset_statement] = ACTIONS(8312), + [aux_sym_raise_event_statement_token1] = ACTIONS(8312), + [sym_stop_statement] = ACTIONS(8312), + [sym_beep_statement] = ACTIONS(8312), + [aux_sym_unload_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token2] = ACTIONS(8312), + [aux_sym_def_type_statement_token3] = ACTIONS(8312), + [aux_sym_def_type_statement_token4] = ACTIONS(8312), + [aux_sym_def_type_statement_token5] = ACTIONS(8312), + [aux_sym_def_type_statement_token6] = ACTIONS(8312), + [aux_sym_def_type_statement_token7] = ACTIONS(8312), + [aux_sym_def_type_statement_token8] = ACTIONS(8312), + [aux_sym_def_type_statement_token9] = ACTIONS(8312), + [aux_sym_def_type_statement_token10] = ACTIONS(8312), + [aux_sym_def_type_statement_token11] = ACTIONS(8312), + [aux_sym_def_type_statement_token12] = ACTIONS(8312), + [aux_sym_def_type_statement_token13] = ACTIONS(8312), + [aux_sym_def_type_statement_token14] = ACTIONS(8312), + [aux_sym_call_statement_token1] = ACTIONS(8312), + [sym__ambiguous_call_statement] = ACTIONS(8312), + [aux_sym_addressof_expression_token1] = ACTIONS(8312), + [aux_sym_type_of_expression_token1] = ACTIONS(8312), + [aux_sym_unary_expression_token1] = ACTIONS(8312), + [sym_string_literal] = ACTIONS(8314), + [sym_number_literal] = ACTIONS(8314), + [aux_sym_boolean_literal_token1] = ACTIONS(8312), + [aux_sym_boolean_literal_token2] = ACTIONS(8312), + [sym_nothing_literal] = ACTIONS(8312), + [sym_null_literal] = ACTIONS(8312), + [sym_empty_literal] = ACTIONS(8312), + [sym_date_literal] = ACTIONS(8314), + [anon_sym_POUND] = ACTIONS(541), + }, + [STATE(4010)] = { + [sym_identifier] = ACTIONS(9443), + [sym_newline] = ACTIONS(9445), + [anon_sym_COLON] = ACTIONS(9445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9443), + [aux_sym_frm_property_statement_token1] = ACTIONS(9443), + [anon_sym_DOT] = ACTIONS(9443), + [anon_sym_BANG] = ACTIONS(9445), + [aux_sym__attribute_identifier_token1] = ACTIONS(9443), + [aux_sym_option_statement_token3] = ACTIONS(9443), + [aux_sym_type_declaration_token1] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9443), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9443), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9443), + [aux_sym_enum_declaration_token1] = ACTIONS(9443), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9443), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9443), + [aux_sym_declare_function_statement_token1] = ACTIONS(9443), + [aux_sym_preprocessor_const_token1] = ACTIONS(9443), + [aux_sym__property_get_header_token1] = ACTIONS(9443), + [aux_sym_event_declaration_token1] = ACTIONS(9443), + [sym_static_modifier] = ACTIONS(9443), + [sym__dim_keyword] = ACTIONS(9443), + [sym__redim_keyword] = ACTIONS(9443), + [aux_sym_get_accessor_token1] = ACTIONS(9443), + [aux_sym_set_accessor_token1] = ACTIONS(9443), + [aux_sym_const_declaration_token1] = ACTIONS(9443), + [anon_sym_LPAREN] = ACTIONS(9445), + [aux_sym_as_type_clause_token2] = ACTIONS(9443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9443), + [aux_sym_visibility_token1] = ACTIONS(9443), + [aux_sym_visibility_token2] = ACTIONS(9443), + [aux_sym_elseif_fragment_token1] = ACTIONS(9443), + [aux_sym_else_fragment_token1] = ACTIONS(9443), + [aux_sym_select_statement_token1] = ACTIONS(9443), + [aux_sym__for_header_token1] = ACTIONS(9443), + [aux_sym_do_statement_token1] = ACTIONS(9443), + [aux_sym_do_condition_token1] = ACTIONS(9443), + [aux_sym_with_statement_token1] = ACTIONS(9443), + [aux_sym_exit_statement_token1] = ACTIONS(9443), + [sym_end_statement] = ACTIONS(9445), + [aux_sym_on_goto_statement_token1] = ACTIONS(9443), + [aux_sym_on_goto_statement_token2] = ACTIONS(9443), + [aux_sym_on_error_statement_token2] = ACTIONS(9443), + [sym__ambiguous_redim_statement] = ACTIONS(9445), + [aux_sym_erase_statement_token1] = ACTIONS(9443), + [aux_sym_open_statement_token1] = ACTIONS(9443), + [aux_sym_file_mode_token2] = ACTIONS(9443), + [aux_sym_file_access_token2] = ACTIONS(9443), + [aux_sym_file_lock_token2] = ACTIONS(9443), + [aux_sym_print_statement_token1] = ACTIONS(9443), + [anon_sym_PLUS] = ACTIONS(9445), + [anon_sym_DASH] = ACTIONS(9443), + [anon_sym_QMARK] = ACTIONS(9445), + [aux_sym_close_statement_token1] = ACTIONS(9443), + [aux_sym_put_statement_token1] = ACTIONS(9443), + [aux_sym_unlock_statement_token1] = ACTIONS(9443), + [aux_sym_seek_statement_token1] = ACTIONS(9443), + [sym_reset_statement] = ACTIONS(9443), + [aux_sym_raise_event_statement_token1] = ACTIONS(9443), + [sym_stop_statement] = ACTIONS(9443), + [sym_beep_statement] = ACTIONS(9443), + [aux_sym_unload_statement_token1] = ACTIONS(9443), + [aux_sym_def_type_statement_token1] = ACTIONS(9443), + [aux_sym_def_type_statement_token2] = ACTIONS(9443), + [aux_sym_def_type_statement_token3] = ACTIONS(9443), + [aux_sym_def_type_statement_token4] = ACTIONS(9443), + [aux_sym_def_type_statement_token5] = ACTIONS(9443), + [aux_sym_def_type_statement_token6] = ACTIONS(9443), + [aux_sym_def_type_statement_token7] = ACTIONS(9443), + [aux_sym_def_type_statement_token8] = ACTIONS(9443), + [aux_sym_def_type_statement_token9] = ACTIONS(9443), + [aux_sym_def_type_statement_token10] = ACTIONS(9443), + [aux_sym_def_type_statement_token11] = ACTIONS(9443), + [aux_sym_def_type_statement_token12] = ACTIONS(9443), + [aux_sym_def_type_statement_token13] = ACTIONS(9443), + [aux_sym_def_type_statement_token14] = ACTIONS(9443), + [aux_sym_call_statement_token1] = ACTIONS(9443), + [sym__ambiguous_call_statement] = ACTIONS(9443), + [aux_sym_addressof_expression_token1] = ACTIONS(9443), + [aux_sym_type_of_expression_token1] = ACTIONS(9443), + [aux_sym_unary_expression_token1] = ACTIONS(9443), + [sym_string_literal] = ACTIONS(9445), + [sym_number_literal] = ACTIONS(9445), + [aux_sym_boolean_literal_token1] = ACTIONS(9443), + [aux_sym_boolean_literal_token2] = ACTIONS(9443), + [sym_nothing_literal] = ACTIONS(9443), + [sym_null_literal] = ACTIONS(9443), + [sym_empty_literal] = ACTIONS(9443), + [sym_date_literal] = ACTIONS(9445), + [anon_sym_POUND] = ACTIONS(9443), + }, + [STATE(4011)] = { + [sym_identifier] = ACTIONS(9447), + [sym_newline] = ACTIONS(9449), + [anon_sym_COLON] = ACTIONS(9449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9447), + [aux_sym_frm_property_statement_token1] = ACTIONS(9447), + [anon_sym_DOT] = ACTIONS(9447), + [anon_sym_BANG] = ACTIONS(9449), + [aux_sym__attribute_identifier_token1] = ACTIONS(9447), + [aux_sym_option_statement_token3] = ACTIONS(9447), + [aux_sym_type_declaration_token1] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9447), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9447), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9447), + [aux_sym_enum_declaration_token1] = ACTIONS(9447), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9447), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9447), + [aux_sym_declare_function_statement_token1] = ACTIONS(9447), + [aux_sym_preprocessor_const_token1] = ACTIONS(9447), + [aux_sym__property_get_header_token1] = ACTIONS(9447), + [aux_sym_event_declaration_token1] = ACTIONS(9447), + [sym_static_modifier] = ACTIONS(9447), + [sym__dim_keyword] = ACTIONS(9447), + [sym__redim_keyword] = ACTIONS(9447), + [aux_sym_get_accessor_token1] = ACTIONS(9447), + [aux_sym_set_accessor_token1] = ACTIONS(9447), + [aux_sym_const_declaration_token1] = ACTIONS(9447), + [anon_sym_LPAREN] = ACTIONS(9449), + [aux_sym_as_type_clause_token2] = ACTIONS(9447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9447), + [aux_sym_visibility_token1] = ACTIONS(9447), + [aux_sym_visibility_token2] = ACTIONS(9447), + [aux_sym_elseif_fragment_token1] = ACTIONS(9447), + [aux_sym_else_fragment_token1] = ACTIONS(9447), + [aux_sym_select_statement_token1] = ACTIONS(9447), + [aux_sym__for_header_token1] = ACTIONS(9447), + [aux_sym_do_statement_token1] = ACTIONS(9447), + [aux_sym_do_condition_token1] = ACTIONS(9447), + [aux_sym_with_statement_token1] = ACTIONS(9447), + [aux_sym_exit_statement_token1] = ACTIONS(9447), + [sym_end_statement] = ACTIONS(9449), + [aux_sym_on_goto_statement_token1] = ACTIONS(9447), + [aux_sym_on_goto_statement_token2] = ACTIONS(9447), + [aux_sym_on_error_statement_token2] = ACTIONS(9447), + [sym__ambiguous_redim_statement] = ACTIONS(9449), + [aux_sym_erase_statement_token1] = ACTIONS(9447), + [aux_sym_open_statement_token1] = ACTIONS(9447), + [aux_sym_file_mode_token2] = ACTIONS(9447), + [aux_sym_file_access_token2] = ACTIONS(9447), + [aux_sym_file_lock_token2] = ACTIONS(9447), + [aux_sym_print_statement_token1] = ACTIONS(9447), + [anon_sym_PLUS] = ACTIONS(9449), + [anon_sym_DASH] = ACTIONS(9447), + [anon_sym_QMARK] = ACTIONS(9449), + [aux_sym_close_statement_token1] = ACTIONS(9447), + [aux_sym_put_statement_token1] = ACTIONS(9447), + [aux_sym_unlock_statement_token1] = ACTIONS(9447), + [aux_sym_seek_statement_token1] = ACTIONS(9447), + [sym_reset_statement] = ACTIONS(9447), + [aux_sym_raise_event_statement_token1] = ACTIONS(9447), + [sym_stop_statement] = ACTIONS(9447), + [sym_beep_statement] = ACTIONS(9447), + [aux_sym_unload_statement_token1] = ACTIONS(9447), + [aux_sym_def_type_statement_token1] = ACTIONS(9447), + [aux_sym_def_type_statement_token2] = ACTIONS(9447), + [aux_sym_def_type_statement_token3] = ACTIONS(9447), + [aux_sym_def_type_statement_token4] = ACTIONS(9447), + [aux_sym_def_type_statement_token5] = ACTIONS(9447), + [aux_sym_def_type_statement_token6] = ACTIONS(9447), + [aux_sym_def_type_statement_token7] = ACTIONS(9447), + [aux_sym_def_type_statement_token8] = ACTIONS(9447), + [aux_sym_def_type_statement_token9] = ACTIONS(9447), + [aux_sym_def_type_statement_token10] = ACTIONS(9447), + [aux_sym_def_type_statement_token11] = ACTIONS(9447), + [aux_sym_def_type_statement_token12] = ACTIONS(9447), + [aux_sym_def_type_statement_token13] = ACTIONS(9447), + [aux_sym_def_type_statement_token14] = ACTIONS(9447), + [aux_sym_call_statement_token1] = ACTIONS(9447), + [sym__ambiguous_call_statement] = ACTIONS(9447), + [aux_sym_addressof_expression_token1] = ACTIONS(9447), + [aux_sym_type_of_expression_token1] = ACTIONS(9447), + [aux_sym_unary_expression_token1] = ACTIONS(9447), + [sym_string_literal] = ACTIONS(9449), + [sym_number_literal] = ACTIONS(9449), + [aux_sym_boolean_literal_token1] = ACTIONS(9447), + [aux_sym_boolean_literal_token2] = ACTIONS(9447), + [sym_nothing_literal] = ACTIONS(9447), + [sym_null_literal] = ACTIONS(9447), + [sym_empty_literal] = ACTIONS(9447), + [sym_date_literal] = ACTIONS(9449), + [anon_sym_POUND] = ACTIONS(9447), + }, + [STATE(4012)] = { + [sym_identifier] = ACTIONS(9451), + [sym_newline] = ACTIONS(9453), + [anon_sym_COLON] = ACTIONS(9453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9451), + [aux_sym_frm_property_statement_token1] = ACTIONS(9451), + [anon_sym_DOT] = ACTIONS(9451), + [anon_sym_BANG] = ACTIONS(9453), + [aux_sym__attribute_identifier_token1] = ACTIONS(9451), + [aux_sym_option_statement_token3] = ACTIONS(9451), + [aux_sym_type_declaration_token1] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9451), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9451), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9451), + [aux_sym_enum_declaration_token1] = ACTIONS(9451), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9451), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9451), + [aux_sym_declare_function_statement_token1] = ACTIONS(9451), + [aux_sym_preprocessor_const_token1] = ACTIONS(9451), + [aux_sym__property_get_header_token1] = ACTIONS(9451), + [aux_sym_event_declaration_token1] = ACTIONS(9451), + [sym_static_modifier] = ACTIONS(9451), + [sym__dim_keyword] = ACTIONS(9451), + [sym__redim_keyword] = ACTIONS(9451), + [aux_sym_get_accessor_token1] = ACTIONS(9451), + [aux_sym_set_accessor_token1] = ACTIONS(9451), + [aux_sym_const_declaration_token1] = ACTIONS(9451), + [anon_sym_LPAREN] = ACTIONS(9453), + [aux_sym_as_type_clause_token2] = ACTIONS(9451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9451), + [aux_sym_visibility_token1] = ACTIONS(9451), + [aux_sym_visibility_token2] = ACTIONS(9451), + [aux_sym_elseif_fragment_token1] = ACTIONS(9451), + [aux_sym_else_fragment_token1] = ACTIONS(9451), + [aux_sym_select_statement_token1] = ACTIONS(9451), + [aux_sym__for_header_token1] = ACTIONS(9451), + [aux_sym_do_statement_token1] = ACTIONS(9451), + [aux_sym_do_condition_token1] = ACTIONS(9451), + [aux_sym_with_statement_token1] = ACTIONS(9451), + [aux_sym_exit_statement_token1] = ACTIONS(9451), + [sym_end_statement] = ACTIONS(9453), + [aux_sym_on_goto_statement_token1] = ACTIONS(9451), + [aux_sym_on_goto_statement_token2] = ACTIONS(9451), + [aux_sym_on_error_statement_token2] = ACTIONS(9451), + [sym__ambiguous_redim_statement] = ACTIONS(9453), + [aux_sym_erase_statement_token1] = ACTIONS(9451), + [aux_sym_open_statement_token1] = ACTIONS(9451), + [aux_sym_file_mode_token2] = ACTIONS(9451), + [aux_sym_file_access_token2] = ACTIONS(9451), + [aux_sym_file_lock_token2] = ACTIONS(9451), + [aux_sym_print_statement_token1] = ACTIONS(9451), + [anon_sym_PLUS] = ACTIONS(9453), + [anon_sym_DASH] = ACTIONS(9451), + [anon_sym_QMARK] = ACTIONS(9453), + [aux_sym_close_statement_token1] = ACTIONS(9451), + [aux_sym_put_statement_token1] = ACTIONS(9451), + [aux_sym_unlock_statement_token1] = ACTIONS(9451), + [aux_sym_seek_statement_token1] = ACTIONS(9451), + [sym_reset_statement] = ACTIONS(9451), + [aux_sym_raise_event_statement_token1] = ACTIONS(9451), + [sym_stop_statement] = ACTIONS(9451), + [sym_beep_statement] = ACTIONS(9451), + [aux_sym_unload_statement_token1] = ACTIONS(9451), + [aux_sym_def_type_statement_token1] = ACTIONS(9451), + [aux_sym_def_type_statement_token2] = ACTIONS(9451), + [aux_sym_def_type_statement_token3] = ACTIONS(9451), + [aux_sym_def_type_statement_token4] = ACTIONS(9451), + [aux_sym_def_type_statement_token5] = ACTIONS(9451), + [aux_sym_def_type_statement_token6] = ACTIONS(9451), + [aux_sym_def_type_statement_token7] = ACTIONS(9451), + [aux_sym_def_type_statement_token8] = ACTIONS(9451), + [aux_sym_def_type_statement_token9] = ACTIONS(9451), + [aux_sym_def_type_statement_token10] = ACTIONS(9451), + [aux_sym_def_type_statement_token11] = ACTIONS(9451), + [aux_sym_def_type_statement_token12] = ACTIONS(9451), + [aux_sym_def_type_statement_token13] = ACTIONS(9451), + [aux_sym_def_type_statement_token14] = ACTIONS(9451), + [aux_sym_call_statement_token1] = ACTIONS(9451), + [sym__ambiguous_call_statement] = ACTIONS(9451), + [aux_sym_addressof_expression_token1] = ACTIONS(9451), + [aux_sym_type_of_expression_token1] = ACTIONS(9451), + [aux_sym_unary_expression_token1] = ACTIONS(9451), + [sym_string_literal] = ACTIONS(9453), + [sym_number_literal] = ACTIONS(9453), + [aux_sym_boolean_literal_token1] = ACTIONS(9451), + [aux_sym_boolean_literal_token2] = ACTIONS(9451), + [sym_nothing_literal] = ACTIONS(9451), + [sym_null_literal] = ACTIONS(9451), + [sym_empty_literal] = ACTIONS(9451), + [sym_date_literal] = ACTIONS(9453), + [anon_sym_POUND] = ACTIONS(9451), + }, + [STATE(4013)] = { + [sym_identifier] = ACTIONS(8839), + [sym_newline] = ACTIONS(8841), + [anon_sym_COLON] = ACTIONS(8841), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8839), + [aux_sym_frm_property_statement_token1] = ACTIONS(8839), + [anon_sym_DOT] = ACTIONS(8839), + [anon_sym_BANG] = ACTIONS(8841), + [aux_sym__attribute_identifier_token1] = ACTIONS(8839), + [aux_sym_option_statement_token3] = ACTIONS(8839), + [aux_sym_type_declaration_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8839), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8839), + [aux_sym_enum_declaration_token1] = ACTIONS(8839), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8839), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8839), + [aux_sym_declare_function_statement_token1] = ACTIONS(8839), + [aux_sym_preprocessor_const_token1] = ACTIONS(8839), + [aux_sym__property_get_header_token1] = ACTIONS(8839), + [aux_sym_event_declaration_token1] = ACTIONS(8839), + [sym_static_modifier] = ACTIONS(8839), + [sym__dim_keyword] = ACTIONS(8839), + [sym__redim_keyword] = ACTIONS(8839), + [aux_sym_get_accessor_token1] = ACTIONS(8839), + [aux_sym_set_accessor_token1] = ACTIONS(8839), + [aux_sym_const_declaration_token1] = ACTIONS(8839), + [anon_sym_LPAREN] = ACTIONS(8841), + [aux_sym_as_type_clause_token2] = ACTIONS(8839), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8839), + [aux_sym_visibility_token1] = ACTIONS(8839), + [aux_sym_visibility_token2] = ACTIONS(8839), + [aux_sym_elseif_fragment_token1] = ACTIONS(8839), + [aux_sym_else_fragment_token1] = ACTIONS(8839), + [aux_sym_select_statement_token1] = ACTIONS(8839), + [aux_sym__for_header_token1] = ACTIONS(8839), + [aux_sym_do_statement_token1] = ACTIONS(8839), + [aux_sym_do_condition_token1] = ACTIONS(8839), + [aux_sym_with_statement_token1] = ACTIONS(8839), + [aux_sym_exit_statement_token1] = ACTIONS(8839), + [sym_end_statement] = ACTIONS(8841), + [aux_sym_on_goto_statement_token1] = ACTIONS(8839), + [aux_sym_on_goto_statement_token2] = ACTIONS(8839), + [aux_sym_on_error_statement_token2] = ACTIONS(8839), + [sym__ambiguous_redim_statement] = ACTIONS(8841), + [aux_sym_erase_statement_token1] = ACTIONS(8839), + [aux_sym_open_statement_token1] = ACTIONS(8839), + [aux_sym_file_mode_token2] = ACTIONS(8839), + [aux_sym_file_access_token2] = ACTIONS(8839), + [aux_sym_file_lock_token2] = ACTIONS(8839), + [aux_sym_print_statement_token1] = ACTIONS(8839), + [anon_sym_PLUS] = ACTIONS(8841), + [anon_sym_DASH] = ACTIONS(8839), + [anon_sym_QMARK] = ACTIONS(8841), + [aux_sym_close_statement_token1] = ACTIONS(8839), + [aux_sym_put_statement_token1] = ACTIONS(8839), + [aux_sym_unlock_statement_token1] = ACTIONS(8839), + [aux_sym_seek_statement_token1] = ACTIONS(8839), + [sym_reset_statement] = ACTIONS(8839), + [aux_sym_raise_event_statement_token1] = ACTIONS(8839), + [sym_stop_statement] = ACTIONS(8839), + [sym_beep_statement] = ACTIONS(8839), + [aux_sym_unload_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token2] = ACTIONS(8839), + [aux_sym_def_type_statement_token3] = ACTIONS(8839), + [aux_sym_def_type_statement_token4] = ACTIONS(8839), + [aux_sym_def_type_statement_token5] = ACTIONS(8839), + [aux_sym_def_type_statement_token6] = ACTIONS(8839), + [aux_sym_def_type_statement_token7] = ACTIONS(8839), + [aux_sym_def_type_statement_token8] = ACTIONS(8839), + [aux_sym_def_type_statement_token9] = ACTIONS(8839), + [aux_sym_def_type_statement_token10] = ACTIONS(8839), + [aux_sym_def_type_statement_token11] = ACTIONS(8839), + [aux_sym_def_type_statement_token12] = ACTIONS(8839), + [aux_sym_def_type_statement_token13] = ACTIONS(8839), + [aux_sym_def_type_statement_token14] = ACTIONS(8839), + [aux_sym_call_statement_token1] = ACTIONS(8839), + [sym__ambiguous_call_statement] = ACTIONS(8839), + [aux_sym_addressof_expression_token1] = ACTIONS(8839), + [aux_sym_type_of_expression_token1] = ACTIONS(8839), + [aux_sym_unary_expression_token1] = ACTIONS(8839), + [sym_string_literal] = ACTIONS(8841), + [sym_number_literal] = ACTIONS(8841), + [aux_sym_boolean_literal_token1] = ACTIONS(8839), + [aux_sym_boolean_literal_token2] = ACTIONS(8839), + [sym_nothing_literal] = ACTIONS(8839), + [sym_null_literal] = ACTIONS(8839), + [sym_empty_literal] = ACTIONS(8839), + [sym_date_literal] = ACTIONS(8841), + [anon_sym_POUND] = ACTIONS(8839), + }, + [STATE(4014)] = { + [sym_identifier] = ACTIONS(8853), + [sym_newline] = ACTIONS(8855), + [anon_sym_COLON] = ACTIONS(8855), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8853), + [aux_sym_frm_property_statement_token1] = ACTIONS(8853), + [anon_sym_DOT] = ACTIONS(8853), + [anon_sym_BANG] = ACTIONS(8855), + [aux_sym__attribute_identifier_token1] = ACTIONS(8853), + [aux_sym_option_statement_token3] = ACTIONS(8853), + [aux_sym_type_declaration_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8853), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8853), + [aux_sym_enum_declaration_token1] = ACTIONS(8853), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8853), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8853), + [aux_sym_declare_function_statement_token1] = ACTIONS(8853), + [aux_sym_preprocessor_const_token1] = ACTIONS(8853), + [aux_sym__property_get_header_token1] = ACTIONS(8853), + [aux_sym_event_declaration_token1] = ACTIONS(8853), + [sym_static_modifier] = ACTIONS(8853), + [sym__dim_keyword] = ACTIONS(8853), + [sym__redim_keyword] = ACTIONS(8853), + [aux_sym_get_accessor_token1] = ACTIONS(8853), + [aux_sym_set_accessor_token1] = ACTIONS(8853), + [aux_sym_const_declaration_token1] = ACTIONS(8853), + [anon_sym_LPAREN] = ACTIONS(8855), + [aux_sym_as_type_clause_token2] = ACTIONS(8853), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8853), + [aux_sym_visibility_token1] = ACTIONS(8853), + [aux_sym_visibility_token2] = ACTIONS(8853), + [aux_sym_elseif_fragment_token1] = ACTIONS(8853), + [aux_sym_else_fragment_token1] = ACTIONS(8853), + [aux_sym_select_statement_token1] = ACTIONS(8853), + [aux_sym__for_header_token1] = ACTIONS(8853), + [aux_sym_do_statement_token1] = ACTIONS(8853), + [aux_sym_do_condition_token1] = ACTIONS(8853), + [aux_sym_with_statement_token1] = ACTIONS(8853), + [aux_sym_exit_statement_token1] = ACTIONS(8853), + [sym_end_statement] = ACTIONS(8855), + [aux_sym_on_goto_statement_token1] = ACTIONS(8853), + [aux_sym_on_goto_statement_token2] = ACTIONS(8853), + [aux_sym_on_error_statement_token2] = ACTIONS(8853), + [sym__ambiguous_redim_statement] = ACTIONS(8855), + [aux_sym_erase_statement_token1] = ACTIONS(8853), + [aux_sym_open_statement_token1] = ACTIONS(8853), + [aux_sym_file_mode_token2] = ACTIONS(8853), + [aux_sym_file_access_token2] = ACTIONS(8853), + [aux_sym_file_lock_token2] = ACTIONS(8853), + [aux_sym_print_statement_token1] = ACTIONS(8853), + [anon_sym_PLUS] = ACTIONS(8855), + [anon_sym_DASH] = ACTIONS(8853), + [anon_sym_QMARK] = ACTIONS(8855), + [aux_sym_close_statement_token1] = ACTIONS(8853), + [aux_sym_put_statement_token1] = ACTIONS(8853), + [aux_sym_unlock_statement_token1] = ACTIONS(8853), + [aux_sym_seek_statement_token1] = ACTIONS(8853), + [sym_reset_statement] = ACTIONS(8853), + [aux_sym_raise_event_statement_token1] = ACTIONS(8853), + [sym_stop_statement] = ACTIONS(8853), + [sym_beep_statement] = ACTIONS(8853), + [aux_sym_unload_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token2] = ACTIONS(8853), + [aux_sym_def_type_statement_token3] = ACTIONS(8853), + [aux_sym_def_type_statement_token4] = ACTIONS(8853), + [aux_sym_def_type_statement_token5] = ACTIONS(8853), + [aux_sym_def_type_statement_token6] = ACTIONS(8853), + [aux_sym_def_type_statement_token7] = ACTIONS(8853), + [aux_sym_def_type_statement_token8] = ACTIONS(8853), + [aux_sym_def_type_statement_token9] = ACTIONS(8853), + [aux_sym_def_type_statement_token10] = ACTIONS(8853), + [aux_sym_def_type_statement_token11] = ACTIONS(8853), + [aux_sym_def_type_statement_token12] = ACTIONS(8853), + [aux_sym_def_type_statement_token13] = ACTIONS(8853), + [aux_sym_def_type_statement_token14] = ACTIONS(8853), + [aux_sym_call_statement_token1] = ACTIONS(8853), + [sym__ambiguous_call_statement] = ACTIONS(8853), + [aux_sym_addressof_expression_token1] = ACTIONS(8853), + [aux_sym_type_of_expression_token1] = ACTIONS(8853), + [aux_sym_unary_expression_token1] = ACTIONS(8853), + [sym_string_literal] = ACTIONS(8855), + [sym_number_literal] = ACTIONS(8855), + [aux_sym_boolean_literal_token1] = ACTIONS(8853), + [aux_sym_boolean_literal_token2] = ACTIONS(8853), + [sym_nothing_literal] = ACTIONS(8853), + [sym_null_literal] = ACTIONS(8853), + [sym_empty_literal] = ACTIONS(8853), + [sym_date_literal] = ACTIONS(8855), + [anon_sym_POUND] = ACTIONS(8853), + }, + [STATE(4015)] = { + [sym_identifier] = ACTIONS(8857), + [sym_newline] = ACTIONS(8859), + [anon_sym_COLON] = ACTIONS(8859), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8857), + [aux_sym_frm_property_statement_token1] = ACTIONS(8857), + [anon_sym_DOT] = ACTIONS(8857), + [anon_sym_BANG] = ACTIONS(8859), + [aux_sym__attribute_identifier_token1] = ACTIONS(8857), + [aux_sym_option_statement_token3] = ACTIONS(8857), + [aux_sym_type_declaration_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8857), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8857), + [aux_sym_enum_declaration_token1] = ACTIONS(8857), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8857), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8857), + [aux_sym_declare_function_statement_token1] = ACTIONS(8857), + [aux_sym_preprocessor_const_token1] = ACTIONS(8857), + [aux_sym__property_get_header_token1] = ACTIONS(8857), + [aux_sym_event_declaration_token1] = ACTIONS(8857), + [sym_static_modifier] = ACTIONS(8857), + [sym__dim_keyword] = ACTIONS(8857), + [sym__redim_keyword] = ACTIONS(8857), + [aux_sym_get_accessor_token1] = ACTIONS(8857), + [aux_sym_set_accessor_token1] = ACTIONS(8857), + [aux_sym_const_declaration_token1] = ACTIONS(8857), + [anon_sym_LPAREN] = ACTIONS(8859), + [aux_sym_as_type_clause_token2] = ACTIONS(8857), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8857), + [aux_sym_visibility_token1] = ACTIONS(8857), + [aux_sym_visibility_token2] = ACTIONS(8857), + [aux_sym_elseif_fragment_token1] = ACTIONS(8857), + [aux_sym_else_fragment_token1] = ACTIONS(8857), + [aux_sym_select_statement_token1] = ACTIONS(8857), + [aux_sym__for_header_token1] = ACTIONS(8857), + [aux_sym_do_statement_token1] = ACTIONS(8857), + [aux_sym_do_condition_token1] = ACTIONS(8857), + [aux_sym_with_statement_token1] = ACTIONS(8857), + [aux_sym_exit_statement_token1] = ACTIONS(8857), + [sym_end_statement] = ACTIONS(8859), + [aux_sym_on_goto_statement_token1] = ACTIONS(8857), + [aux_sym_on_goto_statement_token2] = ACTIONS(8857), + [aux_sym_on_error_statement_token2] = ACTIONS(8857), + [sym__ambiguous_redim_statement] = ACTIONS(8859), + [aux_sym_erase_statement_token1] = ACTIONS(8857), + [aux_sym_open_statement_token1] = ACTIONS(8857), + [aux_sym_file_mode_token2] = ACTIONS(8857), + [aux_sym_file_access_token2] = ACTIONS(8857), + [aux_sym_file_lock_token2] = ACTIONS(8857), + [aux_sym_print_statement_token1] = ACTIONS(8857), + [anon_sym_PLUS] = ACTIONS(8859), + [anon_sym_DASH] = ACTIONS(8857), + [anon_sym_QMARK] = ACTIONS(8859), + [aux_sym_close_statement_token1] = ACTIONS(8857), + [aux_sym_put_statement_token1] = ACTIONS(8857), + [aux_sym_unlock_statement_token1] = ACTIONS(8857), + [aux_sym_seek_statement_token1] = ACTIONS(8857), + [sym_reset_statement] = ACTIONS(8857), + [aux_sym_raise_event_statement_token1] = ACTIONS(8857), + [sym_stop_statement] = ACTIONS(8857), + [sym_beep_statement] = ACTIONS(8857), + [aux_sym_unload_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token2] = ACTIONS(8857), + [aux_sym_def_type_statement_token3] = ACTIONS(8857), + [aux_sym_def_type_statement_token4] = ACTIONS(8857), + [aux_sym_def_type_statement_token5] = ACTIONS(8857), + [aux_sym_def_type_statement_token6] = ACTIONS(8857), + [aux_sym_def_type_statement_token7] = ACTIONS(8857), + [aux_sym_def_type_statement_token8] = ACTIONS(8857), + [aux_sym_def_type_statement_token9] = ACTIONS(8857), + [aux_sym_def_type_statement_token10] = ACTIONS(8857), + [aux_sym_def_type_statement_token11] = ACTIONS(8857), + [aux_sym_def_type_statement_token12] = ACTIONS(8857), + [aux_sym_def_type_statement_token13] = ACTIONS(8857), + [aux_sym_def_type_statement_token14] = ACTIONS(8857), + [aux_sym_call_statement_token1] = ACTIONS(8857), + [sym__ambiguous_call_statement] = ACTIONS(8857), + [aux_sym_addressof_expression_token1] = ACTIONS(8857), + [aux_sym_type_of_expression_token1] = ACTIONS(8857), + [aux_sym_unary_expression_token1] = ACTIONS(8857), + [sym_string_literal] = ACTIONS(8859), + [sym_number_literal] = ACTIONS(8859), + [aux_sym_boolean_literal_token1] = ACTIONS(8857), + [aux_sym_boolean_literal_token2] = ACTIONS(8857), + [sym_nothing_literal] = ACTIONS(8857), + [sym_null_literal] = ACTIONS(8857), + [sym_empty_literal] = ACTIONS(8857), + [sym_date_literal] = ACTIONS(8859), + [anon_sym_POUND] = ACTIONS(8857), + }, + [STATE(4016)] = { + [sym_identifier] = ACTIONS(8861), + [sym_newline] = ACTIONS(8863), + [anon_sym_COLON] = ACTIONS(8863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8861), + [aux_sym_frm_property_statement_token1] = ACTIONS(8861), + [anon_sym_DOT] = ACTIONS(8861), + [anon_sym_BANG] = ACTIONS(8863), + [aux_sym__attribute_identifier_token1] = ACTIONS(8861), + [aux_sym_option_statement_token3] = ACTIONS(8861), + [aux_sym_type_declaration_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8861), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8861), + [aux_sym_enum_declaration_token1] = ACTIONS(8861), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8861), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8861), + [aux_sym_declare_function_statement_token1] = ACTIONS(8861), + [aux_sym_preprocessor_const_token1] = ACTIONS(8861), + [aux_sym__property_get_header_token1] = ACTIONS(8861), + [aux_sym_event_declaration_token1] = ACTIONS(8861), + [sym_static_modifier] = ACTIONS(8861), + [sym__dim_keyword] = ACTIONS(8861), + [sym__redim_keyword] = ACTIONS(8861), + [aux_sym_get_accessor_token1] = ACTIONS(8861), + [aux_sym_set_accessor_token1] = ACTIONS(8861), + [aux_sym_const_declaration_token1] = ACTIONS(8861), + [anon_sym_LPAREN] = ACTIONS(8863), + [aux_sym_as_type_clause_token2] = ACTIONS(8861), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8861), + [aux_sym_visibility_token1] = ACTIONS(8861), + [aux_sym_visibility_token2] = ACTIONS(8861), + [aux_sym_elseif_fragment_token1] = ACTIONS(8861), + [aux_sym_else_fragment_token1] = ACTIONS(8861), + [aux_sym_select_statement_token1] = ACTIONS(8861), + [aux_sym__for_header_token1] = ACTIONS(8861), + [aux_sym_do_statement_token1] = ACTIONS(8861), + [aux_sym_do_condition_token1] = ACTIONS(8861), + [aux_sym_with_statement_token1] = ACTIONS(8861), + [aux_sym_exit_statement_token1] = ACTIONS(8861), + [sym_end_statement] = ACTIONS(8863), + [aux_sym_on_goto_statement_token1] = ACTIONS(8861), + [aux_sym_on_goto_statement_token2] = ACTIONS(8861), + [aux_sym_on_error_statement_token2] = ACTIONS(8861), + [sym__ambiguous_redim_statement] = ACTIONS(8863), + [aux_sym_erase_statement_token1] = ACTIONS(8861), + [aux_sym_open_statement_token1] = ACTIONS(8861), + [aux_sym_file_mode_token2] = ACTIONS(8861), + [aux_sym_file_access_token2] = ACTIONS(8861), + [aux_sym_file_lock_token2] = ACTIONS(8861), + [aux_sym_print_statement_token1] = ACTIONS(8861), + [anon_sym_PLUS] = ACTIONS(8863), + [anon_sym_DASH] = ACTIONS(8861), + [anon_sym_QMARK] = ACTIONS(8863), + [aux_sym_close_statement_token1] = ACTIONS(8861), + [aux_sym_put_statement_token1] = ACTIONS(8861), + [aux_sym_unlock_statement_token1] = ACTIONS(8861), + [aux_sym_seek_statement_token1] = ACTIONS(8861), + [sym_reset_statement] = ACTIONS(8861), + [aux_sym_raise_event_statement_token1] = ACTIONS(8861), + [sym_stop_statement] = ACTIONS(8861), + [sym_beep_statement] = ACTIONS(8861), + [aux_sym_unload_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token2] = ACTIONS(8861), + [aux_sym_def_type_statement_token3] = ACTIONS(8861), + [aux_sym_def_type_statement_token4] = ACTIONS(8861), + [aux_sym_def_type_statement_token5] = ACTIONS(8861), + [aux_sym_def_type_statement_token6] = ACTIONS(8861), + [aux_sym_def_type_statement_token7] = ACTIONS(8861), + [aux_sym_def_type_statement_token8] = ACTIONS(8861), + [aux_sym_def_type_statement_token9] = ACTIONS(8861), + [aux_sym_def_type_statement_token10] = ACTIONS(8861), + [aux_sym_def_type_statement_token11] = ACTIONS(8861), + [aux_sym_def_type_statement_token12] = ACTIONS(8861), + [aux_sym_def_type_statement_token13] = ACTIONS(8861), + [aux_sym_def_type_statement_token14] = ACTIONS(8861), + [aux_sym_call_statement_token1] = ACTIONS(8861), + [sym__ambiguous_call_statement] = ACTIONS(8861), + [aux_sym_addressof_expression_token1] = ACTIONS(8861), + [aux_sym_type_of_expression_token1] = ACTIONS(8861), + [aux_sym_unary_expression_token1] = ACTIONS(8861), + [sym_string_literal] = ACTIONS(8863), + [sym_number_literal] = ACTIONS(8863), + [aux_sym_boolean_literal_token1] = ACTIONS(8861), + [aux_sym_boolean_literal_token2] = ACTIONS(8861), + [sym_nothing_literal] = ACTIONS(8861), + [sym_null_literal] = ACTIONS(8861), + [sym_empty_literal] = ACTIONS(8861), + [sym_date_literal] = ACTIONS(8863), + [anon_sym_POUND] = ACTIONS(8861), + }, + [STATE(4017)] = { + [sym_identifier] = ACTIONS(8279), + [sym_newline] = ACTIONS(8281), + [anon_sym_COLON] = ACTIONS(8281), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8279), + [aux_sym_frm_property_statement_token1] = ACTIONS(8279), + [anon_sym_DOT] = ACTIONS(8279), + [anon_sym_BANG] = ACTIONS(8281), + [aux_sym__attribute_identifier_token1] = ACTIONS(8279), + [aux_sym_option_statement_token3] = ACTIONS(8279), + [aux_sym_type_declaration_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8279), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8279), + [aux_sym_enum_declaration_token1] = ACTIONS(8279), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8279), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8279), + [aux_sym_declare_function_statement_token1] = ACTIONS(8279), + [aux_sym_preprocessor_const_token1] = ACTIONS(8279), + [aux_sym__property_get_header_token1] = ACTIONS(8279), + [aux_sym_event_declaration_token1] = ACTIONS(8279), + [sym_static_modifier] = ACTIONS(8279), + [sym__dim_keyword] = ACTIONS(8279), + [sym__redim_keyword] = ACTIONS(8279), + [aux_sym_get_accessor_token1] = ACTIONS(8279), + [aux_sym_set_accessor_token1] = ACTIONS(8279), + [aux_sym_const_declaration_token1] = ACTIONS(8279), + [anon_sym_LPAREN] = ACTIONS(8281), + [aux_sym_as_type_clause_token2] = ACTIONS(8279), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8279), + [aux_sym_visibility_token1] = ACTIONS(8279), + [aux_sym_visibility_token2] = ACTIONS(8279), + [aux_sym_elseif_fragment_token1] = ACTIONS(8279), + [aux_sym_else_fragment_token1] = ACTIONS(8279), + [aux_sym_select_statement_token1] = ACTIONS(8279), + [aux_sym__for_header_token1] = ACTIONS(8279), + [aux_sym_do_statement_token1] = ACTIONS(8279), + [aux_sym_do_condition_token1] = ACTIONS(8279), + [aux_sym_with_statement_token1] = ACTIONS(8279), + [aux_sym_exit_statement_token1] = ACTIONS(8279), + [sym_end_statement] = ACTIONS(8281), + [aux_sym_on_goto_statement_token1] = ACTIONS(8279), + [aux_sym_on_goto_statement_token2] = ACTIONS(8279), + [aux_sym_on_error_statement_token2] = ACTIONS(8279), + [sym__ambiguous_redim_statement] = ACTIONS(8281), + [aux_sym_erase_statement_token1] = ACTIONS(8279), + [aux_sym_open_statement_token1] = ACTIONS(8279), + [aux_sym_file_mode_token2] = ACTIONS(8279), + [aux_sym_file_access_token2] = ACTIONS(8279), + [aux_sym_file_lock_token2] = ACTIONS(8279), + [aux_sym_print_statement_token1] = ACTIONS(8279), + [anon_sym_PLUS] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8279), + [anon_sym_QMARK] = ACTIONS(8281), + [aux_sym_close_statement_token1] = ACTIONS(8279), + [aux_sym_put_statement_token1] = ACTIONS(8279), + [aux_sym_unlock_statement_token1] = ACTIONS(8279), + [aux_sym_seek_statement_token1] = ACTIONS(8279), + [sym_reset_statement] = ACTIONS(8279), + [aux_sym_raise_event_statement_token1] = ACTIONS(8279), + [sym_stop_statement] = ACTIONS(8279), + [sym_beep_statement] = ACTIONS(8279), + [aux_sym_unload_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token2] = ACTIONS(8279), + [aux_sym_def_type_statement_token3] = ACTIONS(8279), + [aux_sym_def_type_statement_token4] = ACTIONS(8279), + [aux_sym_def_type_statement_token5] = ACTIONS(8279), + [aux_sym_def_type_statement_token6] = ACTIONS(8279), + [aux_sym_def_type_statement_token7] = ACTIONS(8279), + [aux_sym_def_type_statement_token8] = ACTIONS(8279), + [aux_sym_def_type_statement_token9] = ACTIONS(8279), + [aux_sym_def_type_statement_token10] = ACTIONS(8279), + [aux_sym_def_type_statement_token11] = ACTIONS(8279), + [aux_sym_def_type_statement_token12] = ACTIONS(8279), + [aux_sym_def_type_statement_token13] = ACTIONS(8279), + [aux_sym_def_type_statement_token14] = ACTIONS(8279), + [aux_sym_call_statement_token1] = ACTIONS(8279), + [sym__ambiguous_call_statement] = ACTIONS(8279), + [aux_sym_addressof_expression_token1] = ACTIONS(8279), + [aux_sym_type_of_expression_token1] = ACTIONS(8279), + [aux_sym_unary_expression_token1] = ACTIONS(8279), + [sym_string_literal] = ACTIONS(8281), + [sym_number_literal] = ACTIONS(8281), + [aux_sym_boolean_literal_token1] = ACTIONS(8279), + [aux_sym_boolean_literal_token2] = ACTIONS(8279), + [sym_nothing_literal] = ACTIONS(8279), + [sym_null_literal] = ACTIONS(8279), + [sym_empty_literal] = ACTIONS(8279), + [sym_date_literal] = ACTIONS(8281), + [anon_sym_POUND] = ACTIONS(8279), + }, + [STATE(4018)] = { + [sym_identifier] = ACTIONS(8283), + [sym_newline] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8283), + [aux_sym_frm_property_statement_token1] = ACTIONS(8283), + [anon_sym_DOT] = ACTIONS(8283), + [anon_sym_BANG] = ACTIONS(8285), + [aux_sym__attribute_identifier_token1] = ACTIONS(8283), + [aux_sym_option_statement_token3] = ACTIONS(8283), + [aux_sym_type_declaration_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8283), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8283), + [aux_sym_enum_declaration_token1] = ACTIONS(8283), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8283), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8283), + [aux_sym_declare_function_statement_token1] = ACTIONS(8283), + [aux_sym_preprocessor_const_token1] = ACTIONS(8283), + [aux_sym__property_get_header_token1] = ACTIONS(8283), + [aux_sym_event_declaration_token1] = ACTIONS(8283), + [sym_static_modifier] = ACTIONS(8283), + [sym__dim_keyword] = ACTIONS(8283), + [sym__redim_keyword] = ACTIONS(8283), + [aux_sym_get_accessor_token1] = ACTIONS(8283), + [aux_sym_set_accessor_token1] = ACTIONS(8283), + [aux_sym_const_declaration_token1] = ACTIONS(8283), + [anon_sym_LPAREN] = ACTIONS(8285), + [aux_sym_as_type_clause_token2] = ACTIONS(8283), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8283), + [aux_sym_visibility_token1] = ACTIONS(8283), + [aux_sym_visibility_token2] = ACTIONS(8283), + [aux_sym_elseif_fragment_token1] = ACTIONS(8283), + [aux_sym_else_fragment_token1] = ACTIONS(8283), + [aux_sym_select_statement_token1] = ACTIONS(8283), + [aux_sym__for_header_token1] = ACTIONS(8283), + [aux_sym_do_statement_token1] = ACTIONS(8283), + [aux_sym_do_condition_token1] = ACTIONS(8283), + [aux_sym_with_statement_token1] = ACTIONS(8283), + [aux_sym_exit_statement_token1] = ACTIONS(8283), + [sym_end_statement] = ACTIONS(8285), + [aux_sym_on_goto_statement_token1] = ACTIONS(8283), + [aux_sym_on_goto_statement_token2] = ACTIONS(8283), + [aux_sym_on_error_statement_token2] = ACTIONS(8283), + [sym__ambiguous_redim_statement] = ACTIONS(8285), + [aux_sym_erase_statement_token1] = ACTIONS(8283), + [aux_sym_open_statement_token1] = ACTIONS(8283), + [aux_sym_file_mode_token2] = ACTIONS(8283), + [aux_sym_file_access_token2] = ACTIONS(8283), + [aux_sym_file_lock_token2] = ACTIONS(8283), + [aux_sym_print_statement_token1] = ACTIONS(8283), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_DASH] = ACTIONS(8283), + [anon_sym_QMARK] = ACTIONS(8285), + [aux_sym_close_statement_token1] = ACTIONS(8283), + [aux_sym_put_statement_token1] = ACTIONS(8283), + [aux_sym_unlock_statement_token1] = ACTIONS(8283), + [aux_sym_seek_statement_token1] = ACTIONS(8283), + [sym_reset_statement] = ACTIONS(8283), + [aux_sym_raise_event_statement_token1] = ACTIONS(8283), + [sym_stop_statement] = ACTIONS(8283), + [sym_beep_statement] = ACTIONS(8283), + [aux_sym_unload_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token2] = ACTIONS(8283), + [aux_sym_def_type_statement_token3] = ACTIONS(8283), + [aux_sym_def_type_statement_token4] = ACTIONS(8283), + [aux_sym_def_type_statement_token5] = ACTIONS(8283), + [aux_sym_def_type_statement_token6] = ACTIONS(8283), + [aux_sym_def_type_statement_token7] = ACTIONS(8283), + [aux_sym_def_type_statement_token8] = ACTIONS(8283), + [aux_sym_def_type_statement_token9] = ACTIONS(8283), + [aux_sym_def_type_statement_token10] = ACTIONS(8283), + [aux_sym_def_type_statement_token11] = ACTIONS(8283), + [aux_sym_def_type_statement_token12] = ACTIONS(8283), + [aux_sym_def_type_statement_token13] = ACTIONS(8283), + [aux_sym_def_type_statement_token14] = ACTIONS(8283), + [aux_sym_call_statement_token1] = ACTIONS(8283), + [sym__ambiguous_call_statement] = ACTIONS(8283), + [aux_sym_addressof_expression_token1] = ACTIONS(8283), + [aux_sym_type_of_expression_token1] = ACTIONS(8283), + [aux_sym_unary_expression_token1] = ACTIONS(8283), + [sym_string_literal] = ACTIONS(8285), + [sym_number_literal] = ACTIONS(8285), + [aux_sym_boolean_literal_token1] = ACTIONS(8283), + [aux_sym_boolean_literal_token2] = ACTIONS(8283), + [sym_nothing_literal] = ACTIONS(8283), + [sym_null_literal] = ACTIONS(8283), + [sym_empty_literal] = ACTIONS(8283), + [sym_date_literal] = ACTIONS(8285), + [anon_sym_POUND] = ACTIONS(8283), + }, + [STATE(4019)] = { + [sym_identifier] = ACTIONS(9455), + [sym_newline] = ACTIONS(9457), + [anon_sym_COLON] = ACTIONS(9457), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9455), + [aux_sym_frm_property_statement_token1] = ACTIONS(9455), + [anon_sym_DOT] = ACTIONS(9455), + [anon_sym_BANG] = ACTIONS(9457), + [aux_sym__attribute_identifier_token1] = ACTIONS(9455), + [aux_sym_option_statement_token3] = ACTIONS(9455), + [aux_sym_type_declaration_token1] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9455), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9455), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9455), + [aux_sym_enum_declaration_token1] = ACTIONS(9455), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9455), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9455), + [aux_sym_declare_function_statement_token1] = ACTIONS(9455), + [aux_sym_preprocessor_const_token1] = ACTIONS(9455), + [aux_sym__property_get_header_token1] = ACTIONS(9455), + [aux_sym_event_declaration_token1] = ACTIONS(9455), + [sym_static_modifier] = ACTIONS(9455), + [sym__dim_keyword] = ACTIONS(9455), + [sym__redim_keyword] = ACTIONS(9455), + [aux_sym_get_accessor_token1] = ACTIONS(9455), + [aux_sym_set_accessor_token1] = ACTIONS(9455), + [aux_sym_const_declaration_token1] = ACTIONS(9455), + [anon_sym_LPAREN] = ACTIONS(9457), + [aux_sym_as_type_clause_token2] = ACTIONS(9455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9455), + [aux_sym_visibility_token1] = ACTIONS(9455), + [aux_sym_visibility_token2] = ACTIONS(9455), + [aux_sym_elseif_fragment_token1] = ACTIONS(9455), + [aux_sym_else_fragment_token1] = ACTIONS(9455), + [aux_sym_select_statement_token1] = ACTIONS(9455), + [aux_sym__for_header_token1] = ACTIONS(9455), + [aux_sym_do_statement_token1] = ACTIONS(9455), + [aux_sym_do_condition_token1] = ACTIONS(9455), + [aux_sym_with_statement_token1] = ACTIONS(9455), + [aux_sym_exit_statement_token1] = ACTIONS(9455), + [sym_end_statement] = ACTIONS(9457), + [aux_sym_on_goto_statement_token1] = ACTIONS(9455), + [aux_sym_on_goto_statement_token2] = ACTIONS(9455), + [aux_sym_on_error_statement_token2] = ACTIONS(9455), + [sym__ambiguous_redim_statement] = ACTIONS(9457), + [aux_sym_erase_statement_token1] = ACTIONS(9455), + [aux_sym_open_statement_token1] = ACTIONS(9455), + [aux_sym_file_mode_token2] = ACTIONS(9455), + [aux_sym_file_access_token2] = ACTIONS(9455), + [aux_sym_file_lock_token2] = ACTIONS(9455), + [aux_sym_print_statement_token1] = ACTIONS(9455), + [anon_sym_PLUS] = ACTIONS(9457), + [anon_sym_DASH] = ACTIONS(9455), + [anon_sym_QMARK] = ACTIONS(9457), + [aux_sym_close_statement_token1] = ACTIONS(9455), + [aux_sym_put_statement_token1] = ACTIONS(9455), + [aux_sym_unlock_statement_token1] = ACTIONS(9455), + [aux_sym_seek_statement_token1] = ACTIONS(9455), + [sym_reset_statement] = ACTIONS(9455), + [aux_sym_raise_event_statement_token1] = ACTIONS(9455), + [sym_stop_statement] = ACTIONS(9455), + [sym_beep_statement] = ACTIONS(9455), + [aux_sym_unload_statement_token1] = ACTIONS(9455), + [aux_sym_def_type_statement_token1] = ACTIONS(9455), + [aux_sym_def_type_statement_token2] = ACTIONS(9455), + [aux_sym_def_type_statement_token3] = ACTIONS(9455), + [aux_sym_def_type_statement_token4] = ACTIONS(9455), + [aux_sym_def_type_statement_token5] = ACTIONS(9455), + [aux_sym_def_type_statement_token6] = ACTIONS(9455), + [aux_sym_def_type_statement_token7] = ACTIONS(9455), + [aux_sym_def_type_statement_token8] = ACTIONS(9455), + [aux_sym_def_type_statement_token9] = ACTIONS(9455), + [aux_sym_def_type_statement_token10] = ACTIONS(9455), + [aux_sym_def_type_statement_token11] = ACTIONS(9455), + [aux_sym_def_type_statement_token12] = ACTIONS(9455), + [aux_sym_def_type_statement_token13] = ACTIONS(9455), + [aux_sym_def_type_statement_token14] = ACTIONS(9455), + [aux_sym_call_statement_token1] = ACTIONS(9455), + [sym__ambiguous_call_statement] = ACTIONS(9455), + [aux_sym_addressof_expression_token1] = ACTIONS(9455), + [aux_sym_type_of_expression_token1] = ACTIONS(9455), + [aux_sym_unary_expression_token1] = ACTIONS(9455), + [sym_string_literal] = ACTIONS(9457), + [sym_number_literal] = ACTIONS(9457), + [aux_sym_boolean_literal_token1] = ACTIONS(9455), + [aux_sym_boolean_literal_token2] = ACTIONS(9455), + [sym_nothing_literal] = ACTIONS(9455), + [sym_null_literal] = ACTIONS(9455), + [sym_empty_literal] = ACTIONS(9455), + [sym_date_literal] = ACTIONS(9457), + [anon_sym_POUND] = ACTIONS(9455), + }, + [STATE(4020)] = { + [sym_identifier] = ACTIONS(9459), + [sym_newline] = ACTIONS(9461), + [anon_sym_COLON] = ACTIONS(9461), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9459), + [aux_sym_frm_property_statement_token1] = ACTIONS(9459), + [anon_sym_DOT] = ACTIONS(9459), + [anon_sym_BANG] = ACTIONS(9461), + [aux_sym__attribute_identifier_token1] = ACTIONS(9459), + [aux_sym_option_statement_token3] = ACTIONS(9459), + [aux_sym_type_declaration_token1] = ACTIONS(9459), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9459), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9459), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9459), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9459), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9459), + [aux_sym_enum_declaration_token1] = ACTIONS(9459), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9459), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9459), + [aux_sym_declare_function_statement_token1] = ACTIONS(9459), + [aux_sym_preprocessor_const_token1] = ACTIONS(9459), + [aux_sym__property_get_header_token1] = ACTIONS(9459), + [aux_sym_event_declaration_token1] = ACTIONS(9459), + [sym_static_modifier] = ACTIONS(9459), + [sym__dim_keyword] = ACTIONS(9459), + [sym__redim_keyword] = ACTIONS(9459), + [aux_sym_get_accessor_token1] = ACTIONS(9459), + [aux_sym_set_accessor_token1] = ACTIONS(9459), + [aux_sym_const_declaration_token1] = ACTIONS(9459), + [anon_sym_LPAREN] = ACTIONS(9461), + [aux_sym_as_type_clause_token2] = ACTIONS(9459), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9459), + [aux_sym_visibility_token1] = ACTIONS(9459), + [aux_sym_visibility_token2] = ACTIONS(9459), + [aux_sym_elseif_fragment_token1] = ACTIONS(9459), + [aux_sym_else_fragment_token1] = ACTIONS(9459), + [aux_sym_select_statement_token1] = ACTIONS(9459), + [aux_sym__for_header_token1] = ACTIONS(9459), + [aux_sym_do_statement_token1] = ACTIONS(9459), + [aux_sym_do_condition_token1] = ACTIONS(9459), + [aux_sym_with_statement_token1] = ACTIONS(9459), + [aux_sym_exit_statement_token1] = ACTIONS(9459), + [sym_end_statement] = ACTIONS(9461), + [aux_sym_on_goto_statement_token1] = ACTIONS(9459), + [aux_sym_on_goto_statement_token2] = ACTIONS(9459), + [aux_sym_on_error_statement_token2] = ACTIONS(9459), + [sym__ambiguous_redim_statement] = ACTIONS(9461), + [aux_sym_erase_statement_token1] = ACTIONS(9459), + [aux_sym_open_statement_token1] = ACTIONS(9459), + [aux_sym_file_mode_token2] = ACTIONS(9459), + [aux_sym_file_access_token2] = ACTIONS(9459), + [aux_sym_file_lock_token2] = ACTIONS(9459), + [aux_sym_print_statement_token1] = ACTIONS(9459), + [anon_sym_PLUS] = ACTIONS(9461), + [anon_sym_DASH] = ACTIONS(9459), + [anon_sym_QMARK] = ACTIONS(9461), + [aux_sym_close_statement_token1] = ACTIONS(9459), + [aux_sym_put_statement_token1] = ACTIONS(9459), + [aux_sym_unlock_statement_token1] = ACTIONS(9459), + [aux_sym_seek_statement_token1] = ACTIONS(9459), + [sym_reset_statement] = ACTIONS(9459), + [aux_sym_raise_event_statement_token1] = ACTIONS(9459), + [sym_stop_statement] = ACTIONS(9459), + [sym_beep_statement] = ACTIONS(9459), + [aux_sym_unload_statement_token1] = ACTIONS(9459), + [aux_sym_def_type_statement_token1] = ACTIONS(9459), + [aux_sym_def_type_statement_token2] = ACTIONS(9459), + [aux_sym_def_type_statement_token3] = ACTIONS(9459), + [aux_sym_def_type_statement_token4] = ACTIONS(9459), + [aux_sym_def_type_statement_token5] = ACTIONS(9459), + [aux_sym_def_type_statement_token6] = ACTIONS(9459), + [aux_sym_def_type_statement_token7] = ACTIONS(9459), + [aux_sym_def_type_statement_token8] = ACTIONS(9459), + [aux_sym_def_type_statement_token9] = ACTIONS(9459), + [aux_sym_def_type_statement_token10] = ACTIONS(9459), + [aux_sym_def_type_statement_token11] = ACTIONS(9459), + [aux_sym_def_type_statement_token12] = ACTIONS(9459), + [aux_sym_def_type_statement_token13] = ACTIONS(9459), + [aux_sym_def_type_statement_token14] = ACTIONS(9459), + [aux_sym_call_statement_token1] = ACTIONS(9459), + [sym__ambiguous_call_statement] = ACTIONS(9459), + [aux_sym_addressof_expression_token1] = ACTIONS(9459), + [aux_sym_type_of_expression_token1] = ACTIONS(9459), + [aux_sym_unary_expression_token1] = ACTIONS(9459), + [sym_string_literal] = ACTIONS(9461), + [sym_number_literal] = ACTIONS(9461), + [aux_sym_boolean_literal_token1] = ACTIONS(9459), + [aux_sym_boolean_literal_token2] = ACTIONS(9459), + [sym_nothing_literal] = ACTIONS(9459), + [sym_null_literal] = ACTIONS(9459), + [sym_empty_literal] = ACTIONS(9459), + [sym_date_literal] = ACTIONS(9461), + [anon_sym_POUND] = ACTIONS(9459), + }, + [STATE(4021)] = { + [sym_identifier] = ACTIONS(9463), + [sym_newline] = ACTIONS(9465), + [anon_sym_COLON] = ACTIONS(9465), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9463), + [aux_sym_frm_property_statement_token1] = ACTIONS(9463), + [anon_sym_DOT] = ACTIONS(9463), + [anon_sym_BANG] = ACTIONS(9465), + [aux_sym__attribute_identifier_token1] = ACTIONS(9463), + [aux_sym_option_statement_token3] = ACTIONS(9463), + [aux_sym_type_declaration_token1] = ACTIONS(9463), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9463), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9463), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9463), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9463), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9463), + [aux_sym_enum_declaration_token1] = ACTIONS(9463), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9463), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9463), + [aux_sym_declare_function_statement_token1] = ACTIONS(9463), + [aux_sym_preprocessor_const_token1] = ACTIONS(9463), + [aux_sym__property_get_header_token1] = ACTIONS(9463), + [aux_sym_event_declaration_token1] = ACTIONS(9463), + [sym_static_modifier] = ACTIONS(9463), + [sym__dim_keyword] = ACTIONS(9463), + [sym__redim_keyword] = ACTIONS(9463), + [aux_sym_get_accessor_token1] = ACTIONS(9463), + [aux_sym_set_accessor_token1] = ACTIONS(9463), + [aux_sym_const_declaration_token1] = ACTIONS(9463), + [anon_sym_LPAREN] = ACTIONS(9465), + [aux_sym_as_type_clause_token2] = ACTIONS(9463), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9463), + [aux_sym_visibility_token1] = ACTIONS(9463), + [aux_sym_visibility_token2] = ACTIONS(9463), + [aux_sym_elseif_fragment_token1] = ACTIONS(9463), + [aux_sym_else_fragment_token1] = ACTIONS(9463), + [aux_sym_select_statement_token1] = ACTIONS(9463), + [aux_sym__for_header_token1] = ACTIONS(9463), + [aux_sym_do_statement_token1] = ACTIONS(9463), + [aux_sym_do_condition_token1] = ACTIONS(9463), + [aux_sym_with_statement_token1] = ACTIONS(9463), + [aux_sym_exit_statement_token1] = ACTIONS(9463), + [sym_end_statement] = ACTIONS(9465), + [aux_sym_on_goto_statement_token1] = ACTIONS(9463), + [aux_sym_on_goto_statement_token2] = ACTIONS(9463), + [aux_sym_on_error_statement_token2] = ACTIONS(9463), + [sym__ambiguous_redim_statement] = ACTIONS(9465), + [aux_sym_erase_statement_token1] = ACTIONS(9463), + [aux_sym_open_statement_token1] = ACTIONS(9463), + [aux_sym_file_mode_token2] = ACTIONS(9463), + [aux_sym_file_access_token2] = ACTIONS(9463), + [aux_sym_file_lock_token2] = ACTIONS(9463), + [aux_sym_print_statement_token1] = ACTIONS(9463), + [anon_sym_PLUS] = ACTIONS(9465), + [anon_sym_DASH] = ACTIONS(9463), + [anon_sym_QMARK] = ACTIONS(9465), + [aux_sym_close_statement_token1] = ACTIONS(9463), + [aux_sym_put_statement_token1] = ACTIONS(9463), + [aux_sym_unlock_statement_token1] = ACTIONS(9463), + [aux_sym_seek_statement_token1] = ACTIONS(9463), + [sym_reset_statement] = ACTIONS(9463), + [aux_sym_raise_event_statement_token1] = ACTIONS(9463), + [sym_stop_statement] = ACTIONS(9463), + [sym_beep_statement] = ACTIONS(9463), + [aux_sym_unload_statement_token1] = ACTIONS(9463), + [aux_sym_def_type_statement_token1] = ACTIONS(9463), + [aux_sym_def_type_statement_token2] = ACTIONS(9463), + [aux_sym_def_type_statement_token3] = ACTIONS(9463), + [aux_sym_def_type_statement_token4] = ACTIONS(9463), + [aux_sym_def_type_statement_token5] = ACTIONS(9463), + [aux_sym_def_type_statement_token6] = ACTIONS(9463), + [aux_sym_def_type_statement_token7] = ACTIONS(9463), + [aux_sym_def_type_statement_token8] = ACTIONS(9463), + [aux_sym_def_type_statement_token9] = ACTIONS(9463), + [aux_sym_def_type_statement_token10] = ACTIONS(9463), + [aux_sym_def_type_statement_token11] = ACTIONS(9463), + [aux_sym_def_type_statement_token12] = ACTIONS(9463), + [aux_sym_def_type_statement_token13] = ACTIONS(9463), + [aux_sym_def_type_statement_token14] = ACTIONS(9463), + [aux_sym_call_statement_token1] = ACTIONS(9463), + [sym__ambiguous_call_statement] = ACTIONS(9463), + [aux_sym_addressof_expression_token1] = ACTIONS(9463), + [aux_sym_type_of_expression_token1] = ACTIONS(9463), + [aux_sym_unary_expression_token1] = ACTIONS(9463), + [sym_string_literal] = ACTIONS(9465), + [sym_number_literal] = ACTIONS(9465), + [aux_sym_boolean_literal_token1] = ACTIONS(9463), + [aux_sym_boolean_literal_token2] = ACTIONS(9463), + [sym_nothing_literal] = ACTIONS(9463), + [sym_null_literal] = ACTIONS(9463), + [sym_empty_literal] = ACTIONS(9463), + [sym_date_literal] = ACTIONS(9465), + [anon_sym_POUND] = ACTIONS(9463), + }, + [STATE(4022)] = { + [sym_identifier] = ACTIONS(9467), + [sym_newline] = ACTIONS(9469), + [anon_sym_COLON] = ACTIONS(9469), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9467), + [aux_sym_frm_property_statement_token1] = ACTIONS(9467), + [anon_sym_DOT] = ACTIONS(9467), + [anon_sym_BANG] = ACTIONS(9469), + [aux_sym__attribute_identifier_token1] = ACTIONS(9467), + [aux_sym_option_statement_token3] = ACTIONS(9467), + [aux_sym_type_declaration_token1] = ACTIONS(9467), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9467), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9467), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9467), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9467), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9467), + [aux_sym_enum_declaration_token1] = ACTIONS(9467), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9467), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9467), + [aux_sym_declare_function_statement_token1] = ACTIONS(9467), + [aux_sym_preprocessor_const_token1] = ACTIONS(9467), + [aux_sym__property_get_header_token1] = ACTIONS(9467), + [aux_sym_event_declaration_token1] = ACTIONS(9467), + [sym_static_modifier] = ACTIONS(9467), + [sym__dim_keyword] = ACTIONS(9467), + [sym__redim_keyword] = ACTIONS(9467), + [aux_sym_get_accessor_token1] = ACTIONS(9467), + [aux_sym_set_accessor_token1] = ACTIONS(9467), + [aux_sym_const_declaration_token1] = ACTIONS(9467), + [anon_sym_LPAREN] = ACTIONS(9469), + [aux_sym_as_type_clause_token2] = ACTIONS(9467), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9467), + [aux_sym_visibility_token1] = ACTIONS(9467), + [aux_sym_visibility_token2] = ACTIONS(9467), + [aux_sym_elseif_fragment_token1] = ACTIONS(9467), + [aux_sym_else_fragment_token1] = ACTIONS(9467), + [aux_sym_select_statement_token1] = ACTIONS(9467), + [aux_sym__for_header_token1] = ACTIONS(9467), + [aux_sym_do_statement_token1] = ACTIONS(9467), + [aux_sym_do_condition_token1] = ACTIONS(9467), + [aux_sym_with_statement_token1] = ACTIONS(9467), + [aux_sym_exit_statement_token1] = ACTIONS(9467), + [sym_end_statement] = ACTIONS(9469), + [aux_sym_on_goto_statement_token1] = ACTIONS(9467), + [aux_sym_on_goto_statement_token2] = ACTIONS(9467), + [aux_sym_on_error_statement_token2] = ACTIONS(9467), + [sym__ambiguous_redim_statement] = ACTIONS(9469), + [aux_sym_erase_statement_token1] = ACTIONS(9467), + [aux_sym_open_statement_token1] = ACTIONS(9467), + [aux_sym_file_mode_token2] = ACTIONS(9467), + [aux_sym_file_access_token2] = ACTIONS(9467), + [aux_sym_file_lock_token2] = ACTIONS(9467), + [aux_sym_print_statement_token1] = ACTIONS(9467), + [anon_sym_PLUS] = ACTIONS(9469), + [anon_sym_DASH] = ACTIONS(9467), + [anon_sym_QMARK] = ACTIONS(9469), + [aux_sym_close_statement_token1] = ACTIONS(9467), + [aux_sym_put_statement_token1] = ACTIONS(9467), + [aux_sym_unlock_statement_token1] = ACTIONS(9467), + [aux_sym_seek_statement_token1] = ACTIONS(9467), + [sym_reset_statement] = ACTIONS(9467), + [aux_sym_raise_event_statement_token1] = ACTIONS(9467), + [sym_stop_statement] = ACTIONS(9467), + [sym_beep_statement] = ACTIONS(9467), + [aux_sym_unload_statement_token1] = ACTIONS(9467), + [aux_sym_def_type_statement_token1] = ACTIONS(9467), + [aux_sym_def_type_statement_token2] = ACTIONS(9467), + [aux_sym_def_type_statement_token3] = ACTIONS(9467), + [aux_sym_def_type_statement_token4] = ACTIONS(9467), + [aux_sym_def_type_statement_token5] = ACTIONS(9467), + [aux_sym_def_type_statement_token6] = ACTIONS(9467), + [aux_sym_def_type_statement_token7] = ACTIONS(9467), + [aux_sym_def_type_statement_token8] = ACTIONS(9467), + [aux_sym_def_type_statement_token9] = ACTIONS(9467), + [aux_sym_def_type_statement_token10] = ACTIONS(9467), + [aux_sym_def_type_statement_token11] = ACTIONS(9467), + [aux_sym_def_type_statement_token12] = ACTIONS(9467), + [aux_sym_def_type_statement_token13] = ACTIONS(9467), + [aux_sym_def_type_statement_token14] = ACTIONS(9467), + [aux_sym_call_statement_token1] = ACTIONS(9467), + [sym__ambiguous_call_statement] = ACTIONS(9467), + [aux_sym_addressof_expression_token1] = ACTIONS(9467), + [aux_sym_type_of_expression_token1] = ACTIONS(9467), + [aux_sym_unary_expression_token1] = ACTIONS(9467), + [sym_string_literal] = ACTIONS(9469), + [sym_number_literal] = ACTIONS(9469), + [aux_sym_boolean_literal_token1] = ACTIONS(9467), + [aux_sym_boolean_literal_token2] = ACTIONS(9467), + [sym_nothing_literal] = ACTIONS(9467), + [sym_null_literal] = ACTIONS(9467), + [sym_empty_literal] = ACTIONS(9467), + [sym_date_literal] = ACTIONS(9469), + [anon_sym_POUND] = ACTIONS(9467), + }, + [STATE(4023)] = { + [sym_identifier] = ACTIONS(9471), + [sym_newline] = ACTIONS(9473), + [anon_sym_COLON] = ACTIONS(9473), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9471), + [aux_sym_frm_property_statement_token1] = ACTIONS(9471), + [anon_sym_DOT] = ACTIONS(9471), + [anon_sym_BANG] = ACTIONS(9473), + [aux_sym__attribute_identifier_token1] = ACTIONS(9471), + [aux_sym_option_statement_token3] = ACTIONS(9471), + [aux_sym_type_declaration_token1] = ACTIONS(9471), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9471), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9471), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9471), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9471), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9471), + [aux_sym_enum_declaration_token1] = ACTIONS(9471), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9471), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9471), + [aux_sym_declare_function_statement_token1] = ACTIONS(9471), + [aux_sym_preprocessor_const_token1] = ACTIONS(9471), + [aux_sym__property_get_header_token1] = ACTIONS(9471), + [aux_sym_event_declaration_token1] = ACTIONS(9471), + [sym_static_modifier] = ACTIONS(9471), + [sym__dim_keyword] = ACTIONS(9471), + [sym__redim_keyword] = ACTIONS(9471), + [aux_sym_get_accessor_token1] = ACTIONS(9471), + [aux_sym_set_accessor_token1] = ACTIONS(9471), + [aux_sym_const_declaration_token1] = ACTIONS(9471), + [anon_sym_LPAREN] = ACTIONS(9473), + [aux_sym_as_type_clause_token2] = ACTIONS(9471), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9471), + [aux_sym_visibility_token1] = ACTIONS(9471), + [aux_sym_visibility_token2] = ACTIONS(9471), + [aux_sym_elseif_fragment_token1] = ACTIONS(9471), + [aux_sym_else_fragment_token1] = ACTIONS(9471), + [aux_sym_select_statement_token1] = ACTIONS(9471), + [aux_sym__for_header_token1] = ACTIONS(9471), + [aux_sym_do_statement_token1] = ACTIONS(9471), + [aux_sym_do_condition_token1] = ACTIONS(9471), + [aux_sym_with_statement_token1] = ACTIONS(9471), + [aux_sym_exit_statement_token1] = ACTIONS(9471), + [sym_end_statement] = ACTIONS(9473), + [aux_sym_on_goto_statement_token1] = ACTIONS(9471), + [aux_sym_on_goto_statement_token2] = ACTIONS(9471), + [aux_sym_on_error_statement_token2] = ACTIONS(9471), + [sym__ambiguous_redim_statement] = ACTIONS(9473), + [aux_sym_erase_statement_token1] = ACTIONS(9471), + [aux_sym_open_statement_token1] = ACTIONS(9471), + [aux_sym_file_mode_token2] = ACTIONS(9471), + [aux_sym_file_access_token2] = ACTIONS(9471), + [aux_sym_file_lock_token2] = ACTIONS(9471), + [aux_sym_print_statement_token1] = ACTIONS(9471), + [anon_sym_PLUS] = ACTIONS(9473), + [anon_sym_DASH] = ACTIONS(9471), + [anon_sym_QMARK] = ACTIONS(9473), + [aux_sym_close_statement_token1] = ACTIONS(9471), + [aux_sym_put_statement_token1] = ACTIONS(9471), + [aux_sym_unlock_statement_token1] = ACTIONS(9471), + [aux_sym_seek_statement_token1] = ACTIONS(9471), + [sym_reset_statement] = ACTIONS(9471), + [aux_sym_raise_event_statement_token1] = ACTIONS(9471), + [sym_stop_statement] = ACTIONS(9471), + [sym_beep_statement] = ACTIONS(9471), + [aux_sym_unload_statement_token1] = ACTIONS(9471), + [aux_sym_def_type_statement_token1] = ACTIONS(9471), + [aux_sym_def_type_statement_token2] = ACTIONS(9471), + [aux_sym_def_type_statement_token3] = ACTIONS(9471), + [aux_sym_def_type_statement_token4] = ACTIONS(9471), + [aux_sym_def_type_statement_token5] = ACTIONS(9471), + [aux_sym_def_type_statement_token6] = ACTIONS(9471), + [aux_sym_def_type_statement_token7] = ACTIONS(9471), + [aux_sym_def_type_statement_token8] = ACTIONS(9471), + [aux_sym_def_type_statement_token9] = ACTIONS(9471), + [aux_sym_def_type_statement_token10] = ACTIONS(9471), + [aux_sym_def_type_statement_token11] = ACTIONS(9471), + [aux_sym_def_type_statement_token12] = ACTIONS(9471), + [aux_sym_def_type_statement_token13] = ACTIONS(9471), + [aux_sym_def_type_statement_token14] = ACTIONS(9471), + [aux_sym_call_statement_token1] = ACTIONS(9471), + [sym__ambiguous_call_statement] = ACTIONS(9471), + [aux_sym_addressof_expression_token1] = ACTIONS(9471), + [aux_sym_type_of_expression_token1] = ACTIONS(9471), + [aux_sym_unary_expression_token1] = ACTIONS(9471), + [sym_string_literal] = ACTIONS(9473), + [sym_number_literal] = ACTIONS(9473), + [aux_sym_boolean_literal_token1] = ACTIONS(9471), + [aux_sym_boolean_literal_token2] = ACTIONS(9471), + [sym_nothing_literal] = ACTIONS(9471), + [sym_null_literal] = ACTIONS(9471), + [sym_empty_literal] = ACTIONS(9471), + [sym_date_literal] = ACTIONS(9473), + [anon_sym_POUND] = ACTIONS(9471), + }, + [STATE(4024)] = { + [aux_sym_def_type_statement_repeat1] = STATE(4024), + [sym_identifier] = ACTIONS(8357), + [sym_newline] = ACTIONS(8359), + [anon_sym_COLON] = ACTIONS(8359), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8357), + [aux_sym_frm_property_statement_token1] = ACTIONS(8357), + [anon_sym_DOT] = ACTIONS(8357), + [anon_sym_BANG] = ACTIONS(8359), + [aux_sym__attribute_identifier_token1] = ACTIONS(8357), + [aux_sym_option_statement_token3] = ACTIONS(8357), + [aux_sym_type_declaration_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8357), + [aux_sym_enum_declaration_token1] = ACTIONS(8357), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8357), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8357), + [aux_sym_declare_function_statement_token1] = ACTIONS(8357), + [aux_sym_preprocessor_const_token1] = ACTIONS(8357), + [aux_sym__property_get_header_token1] = ACTIONS(8357), + [aux_sym_event_declaration_token1] = ACTIONS(8357), + [sym_static_modifier] = ACTIONS(8357), + [sym__dim_keyword] = ACTIONS(8357), + [sym__redim_keyword] = ACTIONS(8357), + [aux_sym_get_accessor_token1] = ACTIONS(8357), + [aux_sym_set_accessor_token1] = ACTIONS(8357), + [anon_sym_COMMA] = ACTIONS(9475), + [aux_sym_const_declaration_token1] = ACTIONS(8357), + [anon_sym_LPAREN] = ACTIONS(8359), + [aux_sym_as_type_clause_token2] = ACTIONS(8357), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8357), + [aux_sym_visibility_token1] = ACTIONS(8357), + [aux_sym_visibility_token2] = ACTIONS(8357), + [aux_sym_elseif_fragment_token1] = ACTIONS(8357), + [aux_sym_else_fragment_token1] = ACTIONS(8357), + [aux_sym_select_statement_token1] = ACTIONS(8357), + [aux_sym__for_header_token1] = ACTIONS(8357), + [aux_sym_do_statement_token1] = ACTIONS(8357), + [aux_sym_do_condition_token1] = ACTIONS(8357), + [aux_sym_with_statement_token1] = ACTIONS(8357), + [aux_sym_exit_statement_token1] = ACTIONS(8357), + [sym_end_statement] = ACTIONS(8359), + [aux_sym_on_goto_statement_token1] = ACTIONS(8357), + [aux_sym_on_goto_statement_token2] = ACTIONS(8357), + [aux_sym_on_error_statement_token2] = ACTIONS(8357), + [sym__ambiguous_redim_statement] = ACTIONS(8359), + [aux_sym_erase_statement_token1] = ACTIONS(8357), + [aux_sym_open_statement_token1] = ACTIONS(8357), + [aux_sym_file_mode_token2] = ACTIONS(8357), + [aux_sym_file_access_token2] = ACTIONS(8357), + [aux_sym_file_lock_token2] = ACTIONS(8357), + [aux_sym_print_statement_token1] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_QMARK] = ACTIONS(8359), + [aux_sym_close_statement_token1] = ACTIONS(8357), + [aux_sym_put_statement_token1] = ACTIONS(8357), + [aux_sym_unlock_statement_token1] = ACTIONS(8357), + [aux_sym_seek_statement_token1] = ACTIONS(8357), + [sym_reset_statement] = ACTIONS(8357), + [aux_sym_raise_event_statement_token1] = ACTIONS(8357), + [sym_stop_statement] = ACTIONS(8357), + [sym_beep_statement] = ACTIONS(8357), + [aux_sym_unload_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token2] = ACTIONS(8357), + [aux_sym_def_type_statement_token3] = ACTIONS(8357), + [aux_sym_def_type_statement_token4] = ACTIONS(8357), + [aux_sym_def_type_statement_token5] = ACTIONS(8357), + [aux_sym_def_type_statement_token6] = ACTIONS(8357), + [aux_sym_def_type_statement_token7] = ACTIONS(8357), + [aux_sym_def_type_statement_token8] = ACTIONS(8357), + [aux_sym_def_type_statement_token9] = ACTIONS(8357), + [aux_sym_def_type_statement_token10] = ACTIONS(8357), + [aux_sym_def_type_statement_token11] = ACTIONS(8357), + [aux_sym_def_type_statement_token12] = ACTIONS(8357), + [aux_sym_def_type_statement_token13] = ACTIONS(8357), + [aux_sym_def_type_statement_token14] = ACTIONS(8357), + [aux_sym_call_statement_token1] = ACTIONS(8357), + [sym__ambiguous_call_statement] = ACTIONS(8357), + [aux_sym_addressof_expression_token1] = ACTIONS(8357), + [aux_sym_type_of_expression_token1] = ACTIONS(8357), + [aux_sym_unary_expression_token1] = ACTIONS(8357), + [sym_string_literal] = ACTIONS(8359), + [sym_number_literal] = ACTIONS(8359), + [aux_sym_boolean_literal_token1] = ACTIONS(8357), + [aux_sym_boolean_literal_token2] = ACTIONS(8357), + [sym_nothing_literal] = ACTIONS(8357), + [sym_null_literal] = ACTIONS(8357), + [sym_empty_literal] = ACTIONS(8357), + [sym_date_literal] = ACTIONS(8359), + [anon_sym_POUND] = ACTIONS(8357), + }, + [STATE(4025)] = { + [sym_argument_list] = STATE(4254), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7836), + [anon_sym_BANG] = ACTIONS(4034), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_declaration_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_enum_declaration_token1] = ACTIONS(7836), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7836), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7836), + [aux_sym_declare_function_statement_token1] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [aux_sym__property_get_header_token1] = ACTIONS(7836), + [aux_sym_event_declaration_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(9478), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(4026)] = { + [aux_sym_redim_statement_repeat1] = STATE(4047), + [sym_identifier] = ACTIONS(8368), + [sym_newline] = ACTIONS(8370), + [anon_sym_COLON] = ACTIONS(8370), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8368), + [aux_sym_frm_property_statement_token1] = ACTIONS(8368), + [anon_sym_DOT] = ACTIONS(8368), + [anon_sym_BANG] = ACTIONS(8370), + [aux_sym__attribute_identifier_token1] = ACTIONS(8368), + [aux_sym_option_statement_token3] = ACTIONS(8368), + [aux_sym_type_declaration_token1] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8368), + [aux_sym_enum_declaration_token1] = ACTIONS(8368), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8368), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8368), + [aux_sym_declare_function_statement_token1] = ACTIONS(8368), + [aux_sym_preprocessor_const_token1] = ACTIONS(8368), + [aux_sym__property_get_header_token1] = ACTIONS(8368), + [aux_sym_event_declaration_token1] = ACTIONS(8368), + [sym_static_modifier] = ACTIONS(8368), + [sym__dim_keyword] = ACTIONS(8368), + [sym__redim_keyword] = ACTIONS(8368), + [aux_sym_get_accessor_token1] = ACTIONS(8368), + [aux_sym_set_accessor_token1] = ACTIONS(8368), + [anon_sym_COMMA] = ACTIONS(9480), + [aux_sym_const_declaration_token1] = ACTIONS(8368), + [anon_sym_LPAREN] = ACTIONS(8370), + [aux_sym_as_type_clause_token2] = ACTIONS(8368), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8368), + [aux_sym_visibility_token1] = ACTIONS(8368), + [aux_sym_visibility_token2] = ACTIONS(8368), + [aux_sym_elseif_fragment_token1] = ACTIONS(8368), + [aux_sym_else_fragment_token1] = ACTIONS(8368), + [aux_sym_select_statement_token1] = ACTIONS(8368), + [aux_sym__for_header_token1] = ACTIONS(8368), + [aux_sym_do_statement_token1] = ACTIONS(8368), + [aux_sym_do_condition_token1] = ACTIONS(8368), + [aux_sym_with_statement_token1] = ACTIONS(8368), + [aux_sym_exit_statement_token1] = ACTIONS(8368), + [sym_end_statement] = ACTIONS(8370), + [aux_sym_on_goto_statement_token1] = ACTIONS(8368), + [aux_sym_on_goto_statement_token2] = ACTIONS(8368), + [aux_sym_on_error_statement_token2] = ACTIONS(8368), + [sym__ambiguous_redim_statement] = ACTIONS(8370), + [aux_sym_erase_statement_token1] = ACTIONS(8368), + [aux_sym_open_statement_token1] = ACTIONS(8368), + [aux_sym_file_mode_token2] = ACTIONS(8368), + [aux_sym_file_access_token2] = ACTIONS(8368), + [aux_sym_file_lock_token2] = ACTIONS(8368), + [aux_sym_print_statement_token1] = ACTIONS(8368), + [anon_sym_PLUS] = ACTIONS(8370), + [anon_sym_DASH] = ACTIONS(8368), + [anon_sym_QMARK] = ACTIONS(8370), + [aux_sym_close_statement_token1] = ACTIONS(8368), + [aux_sym_put_statement_token1] = ACTIONS(8368), + [aux_sym_unlock_statement_token1] = ACTIONS(8368), + [aux_sym_seek_statement_token1] = ACTIONS(8368), + [sym_reset_statement] = ACTIONS(8368), + [aux_sym_raise_event_statement_token1] = ACTIONS(8368), + [sym_stop_statement] = ACTIONS(8368), + [sym_beep_statement] = ACTIONS(8368), + [aux_sym_unload_statement_token1] = ACTIONS(8368), + [aux_sym_def_type_statement_token1] = ACTIONS(8368), + [aux_sym_def_type_statement_token2] = ACTIONS(8368), + [aux_sym_def_type_statement_token3] = ACTIONS(8368), + [aux_sym_def_type_statement_token4] = ACTIONS(8368), + [aux_sym_def_type_statement_token5] = ACTIONS(8368), + [aux_sym_def_type_statement_token6] = ACTIONS(8368), + [aux_sym_def_type_statement_token7] = ACTIONS(8368), + [aux_sym_def_type_statement_token8] = ACTIONS(8368), + [aux_sym_def_type_statement_token9] = ACTIONS(8368), + [aux_sym_def_type_statement_token10] = ACTIONS(8368), + [aux_sym_def_type_statement_token11] = ACTIONS(8368), + [aux_sym_def_type_statement_token12] = ACTIONS(8368), + [aux_sym_def_type_statement_token13] = ACTIONS(8368), + [aux_sym_def_type_statement_token14] = ACTIONS(8368), + [aux_sym_call_statement_token1] = ACTIONS(8368), + [sym__ambiguous_call_statement] = ACTIONS(8368), + [aux_sym_addressof_expression_token1] = ACTIONS(8368), + [aux_sym_type_of_expression_token1] = ACTIONS(8368), + [aux_sym_unary_expression_token1] = ACTIONS(8368), + [sym_string_literal] = ACTIONS(8370), + [sym_number_literal] = ACTIONS(8370), + [aux_sym_boolean_literal_token1] = ACTIONS(8368), + [aux_sym_boolean_literal_token2] = ACTIONS(8368), + [sym_nothing_literal] = ACTIONS(8368), + [sym_null_literal] = ACTIONS(8368), + [sym_empty_literal] = ACTIONS(8368), + [sym_date_literal] = ACTIONS(8370), + [anon_sym_POUND] = ACTIONS(8368), + }, + [STATE(4027)] = { + [aux_sym_erase_statement_repeat1] = STATE(4052), + [sym_identifier] = ACTIONS(8397), + [sym_newline] = ACTIONS(8399), + [anon_sym_COLON] = ACTIONS(8399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8397), + [aux_sym_frm_property_statement_token1] = ACTIONS(8397), + [anon_sym_DOT] = ACTIONS(8397), + [anon_sym_BANG] = ACTIONS(8399), + [aux_sym__attribute_identifier_token1] = ACTIONS(8397), + [aux_sym_option_statement_token3] = ACTIONS(8397), + [aux_sym_type_declaration_token1] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8397), + [aux_sym_enum_declaration_token1] = ACTIONS(8397), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8397), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8397), + [aux_sym_declare_function_statement_token1] = ACTIONS(8397), + [aux_sym_preprocessor_const_token1] = ACTIONS(8397), + [aux_sym__property_get_header_token1] = ACTIONS(8397), + [aux_sym_event_declaration_token1] = ACTIONS(8397), + [sym_static_modifier] = ACTIONS(8397), + [sym__dim_keyword] = ACTIONS(8397), + [sym__redim_keyword] = ACTIONS(8397), + [aux_sym_get_accessor_token1] = ACTIONS(8397), + [aux_sym_set_accessor_token1] = ACTIONS(8397), + [anon_sym_COMMA] = ACTIONS(9482), + [aux_sym_const_declaration_token1] = ACTIONS(8397), + [anon_sym_LPAREN] = ACTIONS(8399), + [aux_sym_as_type_clause_token2] = ACTIONS(8397), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8397), + [aux_sym_visibility_token1] = ACTIONS(8397), + [aux_sym_visibility_token2] = ACTIONS(8397), + [aux_sym_elseif_fragment_token1] = ACTIONS(8397), + [aux_sym_else_fragment_token1] = ACTIONS(8397), + [aux_sym_select_statement_token1] = ACTIONS(8397), + [aux_sym__for_header_token1] = ACTIONS(8397), + [aux_sym_do_statement_token1] = ACTIONS(8397), + [aux_sym_do_condition_token1] = ACTIONS(8397), + [aux_sym_with_statement_token1] = ACTIONS(8397), + [aux_sym_exit_statement_token1] = ACTIONS(8397), + [sym_end_statement] = ACTIONS(8399), + [aux_sym_on_goto_statement_token1] = ACTIONS(8397), + [aux_sym_on_goto_statement_token2] = ACTIONS(8397), + [aux_sym_on_error_statement_token2] = ACTIONS(8397), + [sym__ambiguous_redim_statement] = ACTIONS(8399), + [aux_sym_erase_statement_token1] = ACTIONS(8397), + [aux_sym_open_statement_token1] = ACTIONS(8397), + [aux_sym_file_mode_token2] = ACTIONS(8397), + [aux_sym_file_access_token2] = ACTIONS(8397), + [aux_sym_file_lock_token2] = ACTIONS(8397), + [aux_sym_print_statement_token1] = ACTIONS(8397), + [anon_sym_PLUS] = ACTIONS(8399), + [anon_sym_DASH] = ACTIONS(8397), + [anon_sym_QMARK] = ACTIONS(8399), + [aux_sym_close_statement_token1] = ACTIONS(8397), + [aux_sym_put_statement_token1] = ACTIONS(8397), + [aux_sym_unlock_statement_token1] = ACTIONS(8397), + [aux_sym_seek_statement_token1] = ACTIONS(8397), + [sym_reset_statement] = ACTIONS(8397), + [aux_sym_raise_event_statement_token1] = ACTIONS(8397), + [sym_stop_statement] = ACTIONS(8397), + [sym_beep_statement] = ACTIONS(8397), + [aux_sym_unload_statement_token1] = ACTIONS(8397), + [aux_sym_def_type_statement_token1] = ACTIONS(8397), + [aux_sym_def_type_statement_token2] = ACTIONS(8397), + [aux_sym_def_type_statement_token3] = ACTIONS(8397), + [aux_sym_def_type_statement_token4] = ACTIONS(8397), + [aux_sym_def_type_statement_token5] = ACTIONS(8397), + [aux_sym_def_type_statement_token6] = ACTIONS(8397), + [aux_sym_def_type_statement_token7] = ACTIONS(8397), + [aux_sym_def_type_statement_token8] = ACTIONS(8397), + [aux_sym_def_type_statement_token9] = ACTIONS(8397), + [aux_sym_def_type_statement_token10] = ACTIONS(8397), + [aux_sym_def_type_statement_token11] = ACTIONS(8397), + [aux_sym_def_type_statement_token12] = ACTIONS(8397), + [aux_sym_def_type_statement_token13] = ACTIONS(8397), + [aux_sym_def_type_statement_token14] = ACTIONS(8397), + [aux_sym_call_statement_token1] = ACTIONS(8397), + [sym__ambiguous_call_statement] = ACTIONS(8397), + [aux_sym_addressof_expression_token1] = ACTIONS(8397), + [aux_sym_type_of_expression_token1] = ACTIONS(8397), + [aux_sym_unary_expression_token1] = ACTIONS(8397), + [sym_string_literal] = ACTIONS(8399), + [sym_number_literal] = ACTIONS(8399), + [aux_sym_boolean_literal_token1] = ACTIONS(8397), + [aux_sym_boolean_literal_token2] = ACTIONS(8397), + [sym_nothing_literal] = ACTIONS(8397), + [sym_null_literal] = ACTIONS(8397), + [sym_empty_literal] = ACTIONS(8397), + [sym_date_literal] = ACTIONS(8399), + [anon_sym_POUND] = ACTIONS(8397), + }, + [STATE(4028)] = { + [sym_identifier] = ACTIONS(9484), + [sym_newline] = ACTIONS(9486), + [anon_sym_COLON] = ACTIONS(9486), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9484), + [aux_sym_frm_property_statement_token1] = ACTIONS(9484), + [anon_sym_DOT] = ACTIONS(9484), + [anon_sym_BANG] = ACTIONS(9486), + [aux_sym__attribute_identifier_token1] = ACTIONS(9484), + [aux_sym_option_statement_token3] = ACTIONS(9484), + [aux_sym_type_declaration_token1] = ACTIONS(9484), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9484), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9484), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9484), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9484), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9484), + [aux_sym_enum_declaration_token1] = ACTIONS(9484), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9484), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9484), + [aux_sym_declare_function_statement_token1] = ACTIONS(9484), + [aux_sym_preprocessor_const_token1] = ACTIONS(9484), + [aux_sym__property_get_header_token1] = ACTIONS(9484), + [aux_sym_event_declaration_token1] = ACTIONS(9484), + [sym_static_modifier] = ACTIONS(9484), + [sym__dim_keyword] = ACTIONS(9484), + [sym__redim_keyword] = ACTIONS(9484), + [aux_sym_get_accessor_token1] = ACTIONS(9484), + [aux_sym_set_accessor_token1] = ACTIONS(9484), + [aux_sym_const_declaration_token1] = ACTIONS(9484), + [anon_sym_LPAREN] = ACTIONS(9486), + [aux_sym_as_type_clause_token2] = ACTIONS(9484), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9484), + [aux_sym_visibility_token1] = ACTIONS(9484), + [aux_sym_visibility_token2] = ACTIONS(9484), + [aux_sym_elseif_fragment_token1] = ACTIONS(9484), + [aux_sym_else_fragment_token1] = ACTIONS(9484), + [aux_sym_select_statement_token1] = ACTIONS(9484), + [aux_sym__for_header_token1] = ACTIONS(9484), + [aux_sym_do_statement_token1] = ACTIONS(9484), + [aux_sym_do_condition_token1] = ACTIONS(9484), + [aux_sym_with_statement_token1] = ACTIONS(9484), + [aux_sym_exit_statement_token1] = ACTIONS(9484), + [sym_end_statement] = ACTIONS(9486), + [aux_sym_on_goto_statement_token1] = ACTIONS(9484), + [aux_sym_on_goto_statement_token2] = ACTIONS(9484), + [aux_sym_on_error_statement_token2] = ACTIONS(9484), + [sym__ambiguous_redim_statement] = ACTIONS(9486), + [aux_sym_erase_statement_token1] = ACTIONS(9484), + [aux_sym_open_statement_token1] = ACTIONS(9484), + [aux_sym_file_mode_token2] = ACTIONS(9484), + [aux_sym_file_access_token2] = ACTIONS(9484), + [aux_sym_file_lock_token2] = ACTIONS(9484), + [aux_sym_print_statement_token1] = ACTIONS(9484), + [anon_sym_PLUS] = ACTIONS(9486), + [anon_sym_DASH] = ACTIONS(9484), + [anon_sym_QMARK] = ACTIONS(9486), + [aux_sym_close_statement_token1] = ACTIONS(9484), + [aux_sym_put_statement_token1] = ACTIONS(9484), + [aux_sym_unlock_statement_token1] = ACTIONS(9484), + [aux_sym_seek_statement_token1] = ACTIONS(9484), + [sym_reset_statement] = ACTIONS(9484), + [aux_sym_raise_event_statement_token1] = ACTIONS(9484), + [sym_stop_statement] = ACTIONS(9484), + [sym_beep_statement] = ACTIONS(9484), + [aux_sym_unload_statement_token1] = ACTIONS(9484), + [aux_sym_def_type_statement_token1] = ACTIONS(9484), + [aux_sym_def_type_statement_token2] = ACTIONS(9484), + [aux_sym_def_type_statement_token3] = ACTIONS(9484), + [aux_sym_def_type_statement_token4] = ACTIONS(9484), + [aux_sym_def_type_statement_token5] = ACTIONS(9484), + [aux_sym_def_type_statement_token6] = ACTIONS(9484), + [aux_sym_def_type_statement_token7] = ACTIONS(9484), + [aux_sym_def_type_statement_token8] = ACTIONS(9484), + [aux_sym_def_type_statement_token9] = ACTIONS(9484), + [aux_sym_def_type_statement_token10] = ACTIONS(9484), + [aux_sym_def_type_statement_token11] = ACTIONS(9484), + [aux_sym_def_type_statement_token12] = ACTIONS(9484), + [aux_sym_def_type_statement_token13] = ACTIONS(9484), + [aux_sym_def_type_statement_token14] = ACTIONS(9484), + [aux_sym_call_statement_token1] = ACTIONS(9484), + [sym__ambiguous_call_statement] = ACTIONS(9484), + [aux_sym_addressof_expression_token1] = ACTIONS(9484), + [aux_sym_type_of_expression_token1] = ACTIONS(9484), + [aux_sym_unary_expression_token1] = ACTIONS(9484), + [sym_string_literal] = ACTIONS(9486), + [sym_number_literal] = ACTIONS(9486), + [aux_sym_boolean_literal_token1] = ACTIONS(9484), + [aux_sym_boolean_literal_token2] = ACTIONS(9484), + [sym_nothing_literal] = ACTIONS(9484), + [sym_null_literal] = ACTIONS(9484), + [sym_empty_literal] = ACTIONS(9484), + [sym_date_literal] = ACTIONS(9486), + [anon_sym_POUND] = ACTIONS(9484), + }, + [STATE(4029)] = { + [sym_identifier] = ACTIONS(8587), + [sym_newline] = ACTIONS(8589), + [anon_sym_COLON] = ACTIONS(8589), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8587), + [aux_sym_frm_property_statement_token1] = ACTIONS(8587), + [anon_sym_DOT] = ACTIONS(8587), + [anon_sym_BANG] = ACTIONS(8589), + [aux_sym__attribute_identifier_token1] = ACTIONS(8587), + [aux_sym_option_statement_token3] = ACTIONS(8587), + [aux_sym_type_declaration_token1] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8587), + [aux_sym_enum_declaration_token1] = ACTIONS(8587), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8587), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8587), + [aux_sym_declare_function_statement_token1] = ACTIONS(8587), + [aux_sym_preprocessor_const_token1] = ACTIONS(8587), + [aux_sym__property_get_header_token1] = ACTIONS(8587), + [aux_sym_event_declaration_token1] = ACTIONS(8587), + [sym_static_modifier] = ACTIONS(8587), + [sym__dim_keyword] = ACTIONS(8587), + [sym__redim_keyword] = ACTIONS(8587), + [aux_sym_get_accessor_token1] = ACTIONS(8587), + [aux_sym_set_accessor_token1] = ACTIONS(8587), + [anon_sym_COMMA] = ACTIONS(8589), + [aux_sym_const_declaration_token1] = ACTIONS(8587), + [anon_sym_LPAREN] = ACTIONS(8589), + [aux_sym_as_type_clause_token2] = ACTIONS(8587), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8587), + [aux_sym_visibility_token1] = ACTIONS(8587), + [aux_sym_visibility_token2] = ACTIONS(8587), + [aux_sym_elseif_fragment_token1] = ACTIONS(8587), + [aux_sym_else_fragment_token1] = ACTIONS(8587), + [aux_sym_select_statement_token1] = ACTIONS(8587), + [aux_sym__for_header_token1] = ACTIONS(8587), + [aux_sym_do_statement_token1] = ACTIONS(8587), + [aux_sym_do_condition_token1] = ACTIONS(8587), + [aux_sym_with_statement_token1] = ACTIONS(8587), + [aux_sym_exit_statement_token1] = ACTIONS(8587), + [sym_end_statement] = ACTIONS(8589), + [aux_sym_on_goto_statement_token1] = ACTIONS(8587), + [aux_sym_on_goto_statement_token2] = ACTIONS(8587), + [aux_sym_on_error_statement_token2] = ACTIONS(8587), + [sym__ambiguous_redim_statement] = ACTIONS(8589), + [aux_sym_erase_statement_token1] = ACTIONS(8587), + [aux_sym_open_statement_token1] = ACTIONS(8587), + [aux_sym_file_mode_token2] = ACTIONS(8587), + [aux_sym_file_access_token2] = ACTIONS(8587), + [aux_sym_file_lock_token2] = ACTIONS(8587), + [aux_sym_print_statement_token1] = ACTIONS(8587), + [anon_sym_PLUS] = ACTIONS(8589), + [anon_sym_DASH] = ACTIONS(8587), + [anon_sym_SEMI] = ACTIONS(8589), + [anon_sym_QMARK] = ACTIONS(8589), + [aux_sym_close_statement_token1] = ACTIONS(8587), + [aux_sym_put_statement_token1] = ACTIONS(8587), + [aux_sym_unlock_statement_token1] = ACTIONS(8587), + [aux_sym_seek_statement_token1] = ACTIONS(8587), + [sym_reset_statement] = ACTIONS(8587), + [aux_sym_raise_event_statement_token1] = ACTIONS(8587), + [sym_stop_statement] = ACTIONS(8587), + [sym_beep_statement] = ACTIONS(8587), + [aux_sym_unload_statement_token1] = ACTIONS(8587), + [aux_sym_def_type_statement_token1] = ACTIONS(8587), + [aux_sym_def_type_statement_token2] = ACTIONS(8587), + [aux_sym_def_type_statement_token3] = ACTIONS(8587), + [aux_sym_def_type_statement_token4] = ACTIONS(8587), + [aux_sym_def_type_statement_token5] = ACTIONS(8587), + [aux_sym_def_type_statement_token6] = ACTIONS(8587), + [aux_sym_def_type_statement_token7] = ACTIONS(8587), + [aux_sym_def_type_statement_token8] = ACTIONS(8587), + [aux_sym_def_type_statement_token9] = ACTIONS(8587), + [aux_sym_def_type_statement_token10] = ACTIONS(8587), + [aux_sym_def_type_statement_token11] = ACTIONS(8587), + [aux_sym_def_type_statement_token12] = ACTIONS(8587), + [aux_sym_def_type_statement_token13] = ACTIONS(8587), + [aux_sym_def_type_statement_token14] = ACTIONS(8587), + [aux_sym_call_statement_token1] = ACTIONS(8587), + [sym__ambiguous_call_statement] = ACTIONS(8587), + [aux_sym_addressof_expression_token1] = ACTIONS(8587), + [aux_sym_type_of_expression_token1] = ACTIONS(8587), + [aux_sym_unary_expression_token1] = ACTIONS(8587), + [sym_string_literal] = ACTIONS(8589), + [sym_number_literal] = ACTIONS(8589), + [aux_sym_boolean_literal_token1] = ACTIONS(8587), + [aux_sym_boolean_literal_token2] = ACTIONS(8587), + [sym_nothing_literal] = ACTIONS(8587), + [sym_null_literal] = ACTIONS(8587), + [sym_empty_literal] = ACTIONS(8587), + [sym_date_literal] = ACTIONS(8589), + [anon_sym_POUND] = ACTIONS(8587), + }, + [STATE(4030)] = { + [sym_identifier] = ACTIONS(9488), + [sym_newline] = ACTIONS(9490), + [anon_sym_COLON] = ACTIONS(9490), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9488), + [aux_sym_frm_property_statement_token1] = ACTIONS(9488), + [anon_sym_DOT] = ACTIONS(9488), + [anon_sym_BANG] = ACTIONS(9490), + [aux_sym__attribute_identifier_token1] = ACTIONS(9488), + [aux_sym_option_statement_token3] = ACTIONS(9488), + [aux_sym_type_declaration_token1] = ACTIONS(9488), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9488), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9488), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9488), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9488), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9488), + [aux_sym_enum_declaration_token1] = ACTIONS(9488), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9488), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9488), + [aux_sym_declare_function_statement_token1] = ACTIONS(9488), + [aux_sym_preprocessor_const_token1] = ACTIONS(9488), + [aux_sym__property_get_header_token1] = ACTIONS(9488), + [aux_sym_event_declaration_token1] = ACTIONS(9488), + [sym_static_modifier] = ACTIONS(9488), + [sym__dim_keyword] = ACTIONS(9488), + [sym__redim_keyword] = ACTIONS(9488), + [aux_sym_get_accessor_token1] = ACTIONS(9488), + [aux_sym_set_accessor_token1] = ACTIONS(9488), + [aux_sym_const_declaration_token1] = ACTIONS(9488), + [anon_sym_LPAREN] = ACTIONS(9490), + [aux_sym_as_type_clause_token2] = ACTIONS(9488), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9488), + [aux_sym_visibility_token1] = ACTIONS(9488), + [aux_sym_visibility_token2] = ACTIONS(9488), + [aux_sym_elseif_fragment_token1] = ACTIONS(9488), + [aux_sym_else_fragment_token1] = ACTIONS(9488), + [aux_sym_select_statement_token1] = ACTIONS(9488), + [aux_sym__for_header_token1] = ACTIONS(9488), + [aux_sym_do_statement_token1] = ACTIONS(9488), + [aux_sym_do_condition_token1] = ACTIONS(9488), + [aux_sym_with_statement_token1] = ACTIONS(9488), + [aux_sym_exit_statement_token1] = ACTIONS(9488), + [sym_end_statement] = ACTIONS(9490), + [aux_sym_on_goto_statement_token1] = ACTIONS(9488), + [aux_sym_on_goto_statement_token2] = ACTIONS(9488), + [aux_sym_on_error_statement_token2] = ACTIONS(9488), + [sym__ambiguous_redim_statement] = ACTIONS(9490), + [aux_sym_erase_statement_token1] = ACTIONS(9488), + [aux_sym_open_statement_token1] = ACTIONS(9488), + [aux_sym_file_mode_token2] = ACTIONS(9488), + [aux_sym_file_access_token2] = ACTIONS(9488), + [aux_sym_file_lock_token2] = ACTIONS(9488), + [aux_sym_print_statement_token1] = ACTIONS(9488), + [anon_sym_PLUS] = ACTIONS(9490), + [anon_sym_DASH] = ACTIONS(9488), + [anon_sym_QMARK] = ACTIONS(9490), + [aux_sym_close_statement_token1] = ACTIONS(9488), + [aux_sym_put_statement_token1] = ACTIONS(9488), + [aux_sym_unlock_statement_token1] = ACTIONS(9488), + [aux_sym_seek_statement_token1] = ACTIONS(9488), + [sym_reset_statement] = ACTIONS(9488), + [aux_sym_raise_event_statement_token1] = ACTIONS(9488), + [sym_stop_statement] = ACTIONS(9488), + [sym_beep_statement] = ACTIONS(9488), + [aux_sym_unload_statement_token1] = ACTIONS(9488), + [aux_sym_def_type_statement_token1] = ACTIONS(9488), + [aux_sym_def_type_statement_token2] = ACTIONS(9488), + [aux_sym_def_type_statement_token3] = ACTIONS(9488), + [aux_sym_def_type_statement_token4] = ACTIONS(9488), + [aux_sym_def_type_statement_token5] = ACTIONS(9488), + [aux_sym_def_type_statement_token6] = ACTIONS(9488), + [aux_sym_def_type_statement_token7] = ACTIONS(9488), + [aux_sym_def_type_statement_token8] = ACTIONS(9488), + [aux_sym_def_type_statement_token9] = ACTIONS(9488), + [aux_sym_def_type_statement_token10] = ACTIONS(9488), + [aux_sym_def_type_statement_token11] = ACTIONS(9488), + [aux_sym_def_type_statement_token12] = ACTIONS(9488), + [aux_sym_def_type_statement_token13] = ACTIONS(9488), + [aux_sym_def_type_statement_token14] = ACTIONS(9488), + [aux_sym_call_statement_token1] = ACTIONS(9488), + [sym__ambiguous_call_statement] = ACTIONS(9488), + [aux_sym_addressof_expression_token1] = ACTIONS(9488), + [aux_sym_type_of_expression_token1] = ACTIONS(9488), + [aux_sym_unary_expression_token1] = ACTIONS(9488), + [sym_string_literal] = ACTIONS(9490), + [sym_number_literal] = ACTIONS(9490), + [aux_sym_boolean_literal_token1] = ACTIONS(9488), + [aux_sym_boolean_literal_token2] = ACTIONS(9488), + [sym_nothing_literal] = ACTIONS(9488), + [sym_null_literal] = ACTIONS(9488), + [sym_empty_literal] = ACTIONS(9488), + [sym_date_literal] = ACTIONS(9490), + [anon_sym_POUND] = ACTIONS(9488), + }, + [STATE(4031)] = { + [sym_identifier] = ACTIONS(9492), + [sym_newline] = ACTIONS(9494), + [anon_sym_COLON] = ACTIONS(9494), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9492), + [aux_sym_frm_property_statement_token1] = ACTIONS(9492), + [anon_sym_DOT] = ACTIONS(9492), + [anon_sym_BANG] = ACTIONS(9494), + [aux_sym__attribute_identifier_token1] = ACTIONS(9492), + [aux_sym_option_statement_token3] = ACTIONS(9492), + [aux_sym_type_declaration_token1] = ACTIONS(9492), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9492), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9492), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9492), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9492), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9492), + [aux_sym_enum_declaration_token1] = ACTIONS(9492), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9492), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9492), + [aux_sym_declare_function_statement_token1] = ACTIONS(9492), + [aux_sym_preprocessor_const_token1] = ACTIONS(9492), + [aux_sym__property_get_header_token1] = ACTIONS(9492), + [aux_sym_event_declaration_token1] = ACTIONS(9492), + [sym_static_modifier] = ACTIONS(9492), + [sym__dim_keyword] = ACTIONS(9492), + [sym__redim_keyword] = ACTIONS(9492), + [aux_sym_get_accessor_token1] = ACTIONS(9492), + [aux_sym_set_accessor_token1] = ACTIONS(9492), + [aux_sym_const_declaration_token1] = ACTIONS(9492), + [anon_sym_LPAREN] = ACTIONS(9494), + [aux_sym_as_type_clause_token2] = ACTIONS(9492), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9492), + [aux_sym_visibility_token1] = ACTIONS(9492), + [aux_sym_visibility_token2] = ACTIONS(9492), + [aux_sym_elseif_fragment_token1] = ACTIONS(9492), + [aux_sym_else_fragment_token1] = ACTIONS(9492), + [aux_sym_select_statement_token1] = ACTIONS(9492), + [aux_sym__for_header_token1] = ACTIONS(9492), + [aux_sym_do_statement_token1] = ACTIONS(9492), + [aux_sym_do_condition_token1] = ACTIONS(9492), + [aux_sym_with_statement_token1] = ACTIONS(9492), + [aux_sym_exit_statement_token1] = ACTIONS(9492), + [sym_end_statement] = ACTIONS(9494), + [aux_sym_on_goto_statement_token1] = ACTIONS(9492), + [aux_sym_on_goto_statement_token2] = ACTIONS(9492), + [aux_sym_on_error_statement_token2] = ACTIONS(9492), + [sym__ambiguous_redim_statement] = ACTIONS(9494), + [aux_sym_erase_statement_token1] = ACTIONS(9492), + [aux_sym_open_statement_token1] = ACTIONS(9492), + [aux_sym_file_mode_token2] = ACTIONS(9492), + [aux_sym_file_access_token2] = ACTIONS(9492), + [aux_sym_file_lock_token2] = ACTIONS(9492), + [aux_sym_print_statement_token1] = ACTIONS(9492), + [anon_sym_PLUS] = ACTIONS(9494), + [anon_sym_DASH] = ACTIONS(9492), + [anon_sym_QMARK] = ACTIONS(9494), + [aux_sym_close_statement_token1] = ACTIONS(9492), + [aux_sym_put_statement_token1] = ACTIONS(9492), + [aux_sym_unlock_statement_token1] = ACTIONS(9492), + [aux_sym_seek_statement_token1] = ACTIONS(9492), + [sym_reset_statement] = ACTIONS(9492), + [aux_sym_raise_event_statement_token1] = ACTIONS(9492), + [sym_stop_statement] = ACTIONS(9492), + [sym_beep_statement] = ACTIONS(9492), + [aux_sym_unload_statement_token1] = ACTIONS(9492), + [aux_sym_def_type_statement_token1] = ACTIONS(9492), + [aux_sym_def_type_statement_token2] = ACTIONS(9492), + [aux_sym_def_type_statement_token3] = ACTIONS(9492), + [aux_sym_def_type_statement_token4] = ACTIONS(9492), + [aux_sym_def_type_statement_token5] = ACTIONS(9492), + [aux_sym_def_type_statement_token6] = ACTIONS(9492), + [aux_sym_def_type_statement_token7] = ACTIONS(9492), + [aux_sym_def_type_statement_token8] = ACTIONS(9492), + [aux_sym_def_type_statement_token9] = ACTIONS(9492), + [aux_sym_def_type_statement_token10] = ACTIONS(9492), + [aux_sym_def_type_statement_token11] = ACTIONS(9492), + [aux_sym_def_type_statement_token12] = ACTIONS(9492), + [aux_sym_def_type_statement_token13] = ACTIONS(9492), + [aux_sym_def_type_statement_token14] = ACTIONS(9492), + [aux_sym_call_statement_token1] = ACTIONS(9492), + [sym__ambiguous_call_statement] = ACTIONS(9492), + [aux_sym_addressof_expression_token1] = ACTIONS(9492), + [aux_sym_type_of_expression_token1] = ACTIONS(9492), + [aux_sym_unary_expression_token1] = ACTIONS(9492), + [sym_string_literal] = ACTIONS(9494), + [sym_number_literal] = ACTIONS(9494), + [aux_sym_boolean_literal_token1] = ACTIONS(9492), + [aux_sym_boolean_literal_token2] = ACTIONS(9492), + [sym_nothing_literal] = ACTIONS(9492), + [sym_null_literal] = ACTIONS(9492), + [sym_empty_literal] = ACTIONS(9492), + [sym_date_literal] = ACTIONS(9494), + [anon_sym_POUND] = ACTIONS(9492), + }, + [STATE(4032)] = { + [sym_identifier] = ACTIONS(8935), + [sym_newline] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(8937), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8935), + [aux_sym_frm_property_statement_token1] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_BANG] = ACTIONS(8937), + [aux_sym__attribute_identifier_token1] = ACTIONS(8935), + [aux_sym_option_statement_token3] = ACTIONS(8935), + [aux_sym_type_declaration_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8935), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8935), + [aux_sym_enum_declaration_token1] = ACTIONS(8935), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8935), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8935), + [aux_sym_declare_function_statement_token1] = ACTIONS(8935), + [aux_sym_preprocessor_const_token1] = ACTIONS(8935), + [aux_sym__property_get_header_token1] = ACTIONS(8935), + [aux_sym_event_declaration_token1] = ACTIONS(8935), + [sym_static_modifier] = ACTIONS(8935), + [sym__dim_keyword] = ACTIONS(8935), + [sym__redim_keyword] = ACTIONS(8935), + [aux_sym_get_accessor_token1] = ACTIONS(8935), + [aux_sym_set_accessor_token1] = ACTIONS(8935), + [aux_sym_const_declaration_token1] = ACTIONS(8935), + [anon_sym_LPAREN] = ACTIONS(8937), + [aux_sym_as_type_clause_token2] = ACTIONS(8935), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8935), + [aux_sym_visibility_token1] = ACTIONS(8935), + [aux_sym_visibility_token2] = ACTIONS(8935), + [aux_sym_elseif_fragment_token1] = ACTIONS(8935), + [aux_sym_else_fragment_token1] = ACTIONS(8935), + [aux_sym_select_statement_token1] = ACTIONS(8935), + [aux_sym__for_header_token1] = ACTIONS(8935), + [aux_sym_do_statement_token1] = ACTIONS(8935), + [aux_sym_do_condition_token1] = ACTIONS(8935), + [aux_sym_with_statement_token1] = ACTIONS(8935), + [aux_sym_exit_statement_token1] = ACTIONS(8935), + [sym_end_statement] = ACTIONS(8937), + [aux_sym_on_goto_statement_token1] = ACTIONS(8935), + [aux_sym_on_goto_statement_token2] = ACTIONS(8935), + [aux_sym_on_error_statement_token2] = ACTIONS(8935), + [sym__ambiguous_redim_statement] = ACTIONS(8937), + [aux_sym_erase_statement_token1] = ACTIONS(8935), + [aux_sym_open_statement_token1] = ACTIONS(8935), + [aux_sym_file_mode_token2] = ACTIONS(8935), + [aux_sym_file_access_token2] = ACTIONS(8935), + [aux_sym_file_lock_token2] = ACTIONS(8935), + [aux_sym_print_statement_token1] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [aux_sym_close_statement_token1] = ACTIONS(8935), + [aux_sym_put_statement_token1] = ACTIONS(8935), + [aux_sym_unlock_statement_token1] = ACTIONS(8935), + [aux_sym_seek_statement_token1] = ACTIONS(8935), + [sym_reset_statement] = ACTIONS(8935), + [aux_sym_raise_event_statement_token1] = ACTIONS(8935), + [sym_stop_statement] = ACTIONS(8935), + [sym_beep_statement] = ACTIONS(8935), + [aux_sym_unload_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token2] = ACTIONS(8935), + [aux_sym_def_type_statement_token3] = ACTIONS(8935), + [aux_sym_def_type_statement_token4] = ACTIONS(8935), + [aux_sym_def_type_statement_token5] = ACTIONS(8935), + [aux_sym_def_type_statement_token6] = ACTIONS(8935), + [aux_sym_def_type_statement_token7] = ACTIONS(8935), + [aux_sym_def_type_statement_token8] = ACTIONS(8935), + [aux_sym_def_type_statement_token9] = ACTIONS(8935), + [aux_sym_def_type_statement_token10] = ACTIONS(8935), + [aux_sym_def_type_statement_token11] = ACTIONS(8935), + [aux_sym_def_type_statement_token12] = ACTIONS(8935), + [aux_sym_def_type_statement_token13] = ACTIONS(8935), + [aux_sym_def_type_statement_token14] = ACTIONS(8935), + [aux_sym_call_statement_token1] = ACTIONS(8935), + [sym__ambiguous_call_statement] = ACTIONS(8935), + [aux_sym_addressof_expression_token1] = ACTIONS(8935), + [aux_sym_type_of_expression_token1] = ACTIONS(8935), + [aux_sym_unary_expression_token1] = ACTIONS(8935), + [sym_string_literal] = ACTIONS(8937), + [sym_number_literal] = ACTIONS(8937), + [aux_sym_boolean_literal_token1] = ACTIONS(8935), + [aux_sym_boolean_literal_token2] = ACTIONS(8935), + [sym_nothing_literal] = ACTIONS(8935), + [sym_null_literal] = ACTIONS(8935), + [sym_empty_literal] = ACTIONS(8935), + [sym_date_literal] = ACTIONS(8937), + [anon_sym_POUND] = ACTIONS(8935), + }, + [STATE(4033)] = { + [sym_identifier] = ACTIONS(9496), + [sym_newline] = ACTIONS(9498), + [anon_sym_COLON] = ACTIONS(9498), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9496), + [aux_sym_frm_property_statement_token1] = ACTIONS(9496), + [anon_sym_DOT] = ACTIONS(9496), + [anon_sym_BANG] = ACTIONS(9498), + [aux_sym__attribute_identifier_token1] = ACTIONS(9496), + [aux_sym_option_statement_token3] = ACTIONS(9496), + [aux_sym_type_declaration_token1] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9496), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9496), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9496), + [aux_sym_enum_declaration_token1] = ACTIONS(9496), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9496), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9496), + [aux_sym_declare_function_statement_token1] = ACTIONS(9496), + [aux_sym_preprocessor_const_token1] = ACTIONS(9496), + [aux_sym__property_get_header_token1] = ACTIONS(9496), + [aux_sym_event_declaration_token1] = ACTIONS(9496), + [sym_static_modifier] = ACTIONS(9496), + [sym__dim_keyword] = ACTIONS(9496), + [sym__redim_keyword] = ACTIONS(9496), + [aux_sym_get_accessor_token1] = ACTIONS(9496), + [aux_sym_set_accessor_token1] = ACTIONS(9496), + [aux_sym_const_declaration_token1] = ACTIONS(9496), + [anon_sym_LPAREN] = ACTIONS(9498), + [aux_sym_as_type_clause_token2] = ACTIONS(9496), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9496), + [aux_sym_visibility_token1] = ACTIONS(9496), + [aux_sym_visibility_token2] = ACTIONS(9496), + [aux_sym_elseif_fragment_token1] = ACTIONS(9496), + [aux_sym_else_fragment_token1] = ACTIONS(9496), + [aux_sym_select_statement_token1] = ACTIONS(9496), + [aux_sym__for_header_token1] = ACTIONS(9496), + [aux_sym_do_statement_token1] = ACTIONS(9496), + [aux_sym_do_condition_token1] = ACTIONS(9496), + [aux_sym_with_statement_token1] = ACTIONS(9496), + [aux_sym_exit_statement_token1] = ACTIONS(9496), + [sym_end_statement] = ACTIONS(9498), + [aux_sym_on_goto_statement_token1] = ACTIONS(9496), + [aux_sym_on_goto_statement_token2] = ACTIONS(9496), + [aux_sym_on_error_statement_token2] = ACTIONS(9496), + [sym__ambiguous_redim_statement] = ACTIONS(9498), + [aux_sym_erase_statement_token1] = ACTIONS(9496), + [aux_sym_open_statement_token1] = ACTIONS(9496), + [aux_sym_file_mode_token2] = ACTIONS(9496), + [aux_sym_file_access_token2] = ACTIONS(9496), + [aux_sym_file_lock_token2] = ACTIONS(9496), + [aux_sym_print_statement_token1] = ACTIONS(9496), + [anon_sym_PLUS] = ACTIONS(9498), + [anon_sym_DASH] = ACTIONS(9496), + [anon_sym_QMARK] = ACTIONS(9498), + [aux_sym_close_statement_token1] = ACTIONS(9496), + [aux_sym_put_statement_token1] = ACTIONS(9496), + [aux_sym_unlock_statement_token1] = ACTIONS(9496), + [aux_sym_seek_statement_token1] = ACTIONS(9496), + [sym_reset_statement] = ACTIONS(9496), + [aux_sym_raise_event_statement_token1] = ACTIONS(9496), + [sym_stop_statement] = ACTIONS(9496), + [sym_beep_statement] = ACTIONS(9496), + [aux_sym_unload_statement_token1] = ACTIONS(9496), + [aux_sym_def_type_statement_token1] = ACTIONS(9496), + [aux_sym_def_type_statement_token2] = ACTIONS(9496), + [aux_sym_def_type_statement_token3] = ACTIONS(9496), + [aux_sym_def_type_statement_token4] = ACTIONS(9496), + [aux_sym_def_type_statement_token5] = ACTIONS(9496), + [aux_sym_def_type_statement_token6] = ACTIONS(9496), + [aux_sym_def_type_statement_token7] = ACTIONS(9496), + [aux_sym_def_type_statement_token8] = ACTIONS(9496), + [aux_sym_def_type_statement_token9] = ACTIONS(9496), + [aux_sym_def_type_statement_token10] = ACTIONS(9496), + [aux_sym_def_type_statement_token11] = ACTIONS(9496), + [aux_sym_def_type_statement_token12] = ACTIONS(9496), + [aux_sym_def_type_statement_token13] = ACTIONS(9496), + [aux_sym_def_type_statement_token14] = ACTIONS(9496), + [aux_sym_call_statement_token1] = ACTIONS(9496), + [sym__ambiguous_call_statement] = ACTIONS(9496), + [aux_sym_addressof_expression_token1] = ACTIONS(9496), + [aux_sym_type_of_expression_token1] = ACTIONS(9496), + [aux_sym_unary_expression_token1] = ACTIONS(9496), + [sym_string_literal] = ACTIONS(9498), + [sym_number_literal] = ACTIONS(9498), + [aux_sym_boolean_literal_token1] = ACTIONS(9496), + [aux_sym_boolean_literal_token2] = ACTIONS(9496), + [sym_nothing_literal] = ACTIONS(9496), + [sym_null_literal] = ACTIONS(9496), + [sym_empty_literal] = ACTIONS(9496), + [sym_date_literal] = ACTIONS(9498), + [anon_sym_POUND] = ACTIONS(9496), + }, + [STATE(4034)] = { + [sym_identifier] = ACTIONS(9500), + [sym_newline] = ACTIONS(9502), + [anon_sym_COLON] = ACTIONS(9502), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9500), + [aux_sym_frm_property_statement_token1] = ACTIONS(9500), + [anon_sym_DOT] = ACTIONS(9500), + [anon_sym_BANG] = ACTIONS(9502), + [aux_sym__attribute_identifier_token1] = ACTIONS(9500), + [aux_sym_option_statement_token3] = ACTIONS(9500), + [aux_sym_type_declaration_token1] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9500), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9500), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9500), + [aux_sym_enum_declaration_token1] = ACTIONS(9500), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9500), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9500), + [aux_sym_declare_function_statement_token1] = ACTIONS(9500), + [aux_sym_preprocessor_const_token1] = ACTIONS(9500), + [aux_sym__property_get_header_token1] = ACTIONS(9500), + [aux_sym_event_declaration_token1] = ACTIONS(9500), + [sym_static_modifier] = ACTIONS(9500), + [sym__dim_keyword] = ACTIONS(9500), + [sym__redim_keyword] = ACTIONS(9500), + [aux_sym_get_accessor_token1] = ACTIONS(9500), + [aux_sym_set_accessor_token1] = ACTIONS(9500), + [aux_sym_const_declaration_token1] = ACTIONS(9500), + [anon_sym_LPAREN] = ACTIONS(9502), + [aux_sym_as_type_clause_token2] = ACTIONS(9500), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9500), + [aux_sym_visibility_token1] = ACTIONS(9500), + [aux_sym_visibility_token2] = ACTIONS(9500), + [aux_sym_elseif_fragment_token1] = ACTIONS(9500), + [aux_sym_else_fragment_token1] = ACTIONS(9500), + [aux_sym_select_statement_token1] = ACTIONS(9500), + [aux_sym__for_header_token1] = ACTIONS(9500), + [aux_sym_do_statement_token1] = ACTIONS(9500), + [aux_sym_do_condition_token1] = ACTIONS(9500), + [aux_sym_with_statement_token1] = ACTIONS(9500), + [aux_sym_exit_statement_token1] = ACTIONS(9500), + [sym_end_statement] = ACTIONS(9502), + [aux_sym_on_goto_statement_token1] = ACTIONS(9500), + [aux_sym_on_goto_statement_token2] = ACTIONS(9500), + [aux_sym_on_error_statement_token2] = ACTIONS(9500), + [sym__ambiguous_redim_statement] = ACTIONS(9502), + [aux_sym_erase_statement_token1] = ACTIONS(9500), + [aux_sym_open_statement_token1] = ACTIONS(9500), + [aux_sym_file_mode_token2] = ACTIONS(9500), + [aux_sym_file_access_token2] = ACTIONS(9500), + [aux_sym_file_lock_token2] = ACTIONS(9500), + [aux_sym_print_statement_token1] = ACTIONS(9500), + [anon_sym_PLUS] = ACTIONS(9502), + [anon_sym_DASH] = ACTIONS(9500), + [anon_sym_QMARK] = ACTIONS(9502), + [aux_sym_close_statement_token1] = ACTIONS(9500), + [aux_sym_put_statement_token1] = ACTIONS(9500), + [aux_sym_unlock_statement_token1] = ACTIONS(9500), + [aux_sym_seek_statement_token1] = ACTIONS(9500), + [sym_reset_statement] = ACTIONS(9500), + [aux_sym_raise_event_statement_token1] = ACTIONS(9500), + [sym_stop_statement] = ACTIONS(9500), + [sym_beep_statement] = ACTIONS(9500), + [aux_sym_unload_statement_token1] = ACTIONS(9500), + [aux_sym_def_type_statement_token1] = ACTIONS(9500), + [aux_sym_def_type_statement_token2] = ACTIONS(9500), + [aux_sym_def_type_statement_token3] = ACTIONS(9500), + [aux_sym_def_type_statement_token4] = ACTIONS(9500), + [aux_sym_def_type_statement_token5] = ACTIONS(9500), + [aux_sym_def_type_statement_token6] = ACTIONS(9500), + [aux_sym_def_type_statement_token7] = ACTIONS(9500), + [aux_sym_def_type_statement_token8] = ACTIONS(9500), + [aux_sym_def_type_statement_token9] = ACTIONS(9500), + [aux_sym_def_type_statement_token10] = ACTIONS(9500), + [aux_sym_def_type_statement_token11] = ACTIONS(9500), + [aux_sym_def_type_statement_token12] = ACTIONS(9500), + [aux_sym_def_type_statement_token13] = ACTIONS(9500), + [aux_sym_def_type_statement_token14] = ACTIONS(9500), + [aux_sym_call_statement_token1] = ACTIONS(9500), + [sym__ambiguous_call_statement] = ACTIONS(9500), + [aux_sym_addressof_expression_token1] = ACTIONS(9500), + [aux_sym_type_of_expression_token1] = ACTIONS(9500), + [aux_sym_unary_expression_token1] = ACTIONS(9500), + [sym_string_literal] = ACTIONS(9502), + [sym_number_literal] = ACTIONS(9502), + [aux_sym_boolean_literal_token1] = ACTIONS(9500), + [aux_sym_boolean_literal_token2] = ACTIONS(9500), + [sym_nothing_literal] = ACTIONS(9500), + [sym_null_literal] = ACTIONS(9500), + [sym_empty_literal] = ACTIONS(9500), + [sym_date_literal] = ACTIONS(9502), + [anon_sym_POUND] = ACTIONS(9500), + }, + [STATE(4035)] = { + [aux_sym_close_statement_repeat1] = STATE(4053), + [sym_identifier] = ACTIONS(8265), + [sym_newline] = ACTIONS(8267), + [anon_sym_COLON] = ACTIONS(8267), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8265), + [aux_sym_frm_property_statement_token1] = ACTIONS(8265), + [anon_sym_DOT] = ACTIONS(8265), + [anon_sym_BANG] = ACTIONS(8267), + [aux_sym__attribute_identifier_token1] = ACTIONS(8265), + [aux_sym_option_statement_token3] = ACTIONS(8265), + [aux_sym_type_declaration_token1] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8265), + [aux_sym_enum_declaration_token1] = ACTIONS(8265), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8265), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8265), + [aux_sym_declare_function_statement_token1] = ACTIONS(8265), + [aux_sym_preprocessor_const_token1] = ACTIONS(8265), + [aux_sym__property_get_header_token1] = ACTIONS(8265), + [aux_sym_event_declaration_token1] = ACTIONS(8265), + [sym_static_modifier] = ACTIONS(8265), + [sym__dim_keyword] = ACTIONS(8265), + [sym__redim_keyword] = ACTIONS(8265), + [aux_sym_get_accessor_token1] = ACTIONS(8265), + [aux_sym_set_accessor_token1] = ACTIONS(8265), + [anon_sym_COMMA] = ACTIONS(9504), + [aux_sym_const_declaration_token1] = ACTIONS(8265), + [anon_sym_LPAREN] = ACTIONS(8267), + [aux_sym_as_type_clause_token2] = ACTIONS(8265), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8265), + [aux_sym_visibility_token1] = ACTIONS(8265), + [aux_sym_visibility_token2] = ACTIONS(8265), + [aux_sym_elseif_fragment_token1] = ACTIONS(8265), + [aux_sym_else_fragment_token1] = ACTIONS(8265), + [aux_sym_select_statement_token1] = ACTIONS(8265), + [aux_sym__for_header_token1] = ACTIONS(8265), + [aux_sym_do_statement_token1] = ACTIONS(8265), + [aux_sym_do_condition_token1] = ACTIONS(8265), + [aux_sym_with_statement_token1] = ACTIONS(8265), + [aux_sym_exit_statement_token1] = ACTIONS(8265), + [sym_end_statement] = ACTIONS(8267), + [aux_sym_on_goto_statement_token1] = ACTIONS(8265), + [aux_sym_on_goto_statement_token2] = ACTIONS(8265), + [aux_sym_on_error_statement_token2] = ACTIONS(8265), + [sym__ambiguous_redim_statement] = ACTIONS(8267), + [aux_sym_erase_statement_token1] = ACTIONS(8265), + [aux_sym_open_statement_token1] = ACTIONS(8265), + [aux_sym_file_mode_token2] = ACTIONS(8265), + [aux_sym_file_access_token2] = ACTIONS(8265), + [aux_sym_file_lock_token2] = ACTIONS(8265), + [aux_sym_print_statement_token1] = ACTIONS(8265), + [anon_sym_PLUS] = ACTIONS(8267), + [anon_sym_DASH] = ACTIONS(8265), + [anon_sym_QMARK] = ACTIONS(8267), + [aux_sym_close_statement_token1] = ACTIONS(8265), + [aux_sym_put_statement_token1] = ACTIONS(8265), + [aux_sym_unlock_statement_token1] = ACTIONS(8265), + [aux_sym_seek_statement_token1] = ACTIONS(8265), + [sym_reset_statement] = ACTIONS(8265), + [aux_sym_raise_event_statement_token1] = ACTIONS(8265), + [sym_stop_statement] = ACTIONS(8265), + [sym_beep_statement] = ACTIONS(8265), + [aux_sym_unload_statement_token1] = ACTIONS(8265), + [aux_sym_def_type_statement_token1] = ACTIONS(8265), + [aux_sym_def_type_statement_token2] = ACTIONS(8265), + [aux_sym_def_type_statement_token3] = ACTIONS(8265), + [aux_sym_def_type_statement_token4] = ACTIONS(8265), + [aux_sym_def_type_statement_token5] = ACTIONS(8265), + [aux_sym_def_type_statement_token6] = ACTIONS(8265), + [aux_sym_def_type_statement_token7] = ACTIONS(8265), + [aux_sym_def_type_statement_token8] = ACTIONS(8265), + [aux_sym_def_type_statement_token9] = ACTIONS(8265), + [aux_sym_def_type_statement_token10] = ACTIONS(8265), + [aux_sym_def_type_statement_token11] = ACTIONS(8265), + [aux_sym_def_type_statement_token12] = ACTIONS(8265), + [aux_sym_def_type_statement_token13] = ACTIONS(8265), + [aux_sym_def_type_statement_token14] = ACTIONS(8265), + [aux_sym_call_statement_token1] = ACTIONS(8265), + [sym__ambiguous_call_statement] = ACTIONS(8265), + [aux_sym_addressof_expression_token1] = ACTIONS(8265), + [aux_sym_type_of_expression_token1] = ACTIONS(8265), + [aux_sym_unary_expression_token1] = ACTIONS(8265), + [sym_string_literal] = ACTIONS(8267), + [sym_number_literal] = ACTIONS(8267), + [aux_sym_boolean_literal_token1] = ACTIONS(8265), + [aux_sym_boolean_literal_token2] = ACTIONS(8265), + [sym_nothing_literal] = ACTIONS(8265), + [sym_null_literal] = ACTIONS(8265), + [sym_empty_literal] = ACTIONS(8265), + [sym_date_literal] = ACTIONS(8267), + [anon_sym_POUND] = ACTIONS(8265), + }, + [STATE(4036)] = { + [sym_identifier] = ACTIONS(9506), + [sym_newline] = ACTIONS(9508), + [anon_sym_COLON] = ACTIONS(9508), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9506), + [aux_sym_frm_property_statement_token1] = ACTIONS(9506), + [anon_sym_DOT] = ACTIONS(9506), + [anon_sym_BANG] = ACTIONS(9508), + [aux_sym__attribute_identifier_token1] = ACTIONS(9506), + [aux_sym_option_statement_token3] = ACTIONS(9506), + [aux_sym_type_declaration_token1] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9506), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9506), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9506), + [aux_sym_enum_declaration_token1] = ACTIONS(9506), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9506), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9506), + [aux_sym_declare_function_statement_token1] = ACTIONS(9506), + [aux_sym_preprocessor_const_token1] = ACTIONS(9506), + [aux_sym__property_get_header_token1] = ACTIONS(9506), + [aux_sym_event_declaration_token1] = ACTIONS(9506), + [sym_static_modifier] = ACTIONS(9506), + [sym__dim_keyword] = ACTIONS(9506), + [sym__redim_keyword] = ACTIONS(9506), + [aux_sym_get_accessor_token1] = ACTIONS(9506), + [aux_sym_set_accessor_token1] = ACTIONS(9506), + [aux_sym_const_declaration_token1] = ACTIONS(9506), + [anon_sym_LPAREN] = ACTIONS(9508), + [aux_sym_as_type_clause_token2] = ACTIONS(9506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9506), + [aux_sym_visibility_token1] = ACTIONS(9506), + [aux_sym_visibility_token2] = ACTIONS(9506), + [aux_sym_elseif_fragment_token1] = ACTIONS(9506), + [aux_sym_else_fragment_token1] = ACTIONS(9506), + [aux_sym_select_statement_token1] = ACTIONS(9506), + [aux_sym__for_header_token1] = ACTIONS(9506), + [aux_sym_do_statement_token1] = ACTIONS(9506), + [aux_sym_do_condition_token1] = ACTIONS(9506), + [aux_sym_with_statement_token1] = ACTIONS(9506), + [aux_sym_exit_statement_token1] = ACTIONS(9506), + [sym_end_statement] = ACTIONS(9508), + [aux_sym_on_goto_statement_token1] = ACTIONS(9506), + [aux_sym_on_goto_statement_token2] = ACTIONS(9506), + [aux_sym_on_error_statement_token2] = ACTIONS(9506), + [sym__ambiguous_redim_statement] = ACTIONS(9508), + [aux_sym_erase_statement_token1] = ACTIONS(9506), + [aux_sym_open_statement_token1] = ACTIONS(9506), + [aux_sym_file_mode_token2] = ACTIONS(9506), + [aux_sym_file_access_token2] = ACTIONS(9506), + [aux_sym_file_lock_token2] = ACTIONS(9506), + [aux_sym_print_statement_token1] = ACTIONS(9506), + [anon_sym_PLUS] = ACTIONS(9508), + [anon_sym_DASH] = ACTIONS(9506), + [anon_sym_QMARK] = ACTIONS(9508), + [aux_sym_close_statement_token1] = ACTIONS(9506), + [aux_sym_put_statement_token1] = ACTIONS(9506), + [aux_sym_unlock_statement_token1] = ACTIONS(9506), + [aux_sym_seek_statement_token1] = ACTIONS(9506), + [sym_reset_statement] = ACTIONS(9506), + [aux_sym_raise_event_statement_token1] = ACTIONS(9506), + [sym_stop_statement] = ACTIONS(9506), + [sym_beep_statement] = ACTIONS(9506), + [aux_sym_unload_statement_token1] = ACTIONS(9506), + [aux_sym_def_type_statement_token1] = ACTIONS(9506), + [aux_sym_def_type_statement_token2] = ACTIONS(9506), + [aux_sym_def_type_statement_token3] = ACTIONS(9506), + [aux_sym_def_type_statement_token4] = ACTIONS(9506), + [aux_sym_def_type_statement_token5] = ACTIONS(9506), + [aux_sym_def_type_statement_token6] = ACTIONS(9506), + [aux_sym_def_type_statement_token7] = ACTIONS(9506), + [aux_sym_def_type_statement_token8] = ACTIONS(9506), + [aux_sym_def_type_statement_token9] = ACTIONS(9506), + [aux_sym_def_type_statement_token10] = ACTIONS(9506), + [aux_sym_def_type_statement_token11] = ACTIONS(9506), + [aux_sym_def_type_statement_token12] = ACTIONS(9506), + [aux_sym_def_type_statement_token13] = ACTIONS(9506), + [aux_sym_def_type_statement_token14] = ACTIONS(9506), + [aux_sym_call_statement_token1] = ACTIONS(9506), + [sym__ambiguous_call_statement] = ACTIONS(9506), + [aux_sym_addressof_expression_token1] = ACTIONS(9506), + [aux_sym_type_of_expression_token1] = ACTIONS(9506), + [aux_sym_unary_expression_token1] = ACTIONS(9506), + [sym_string_literal] = ACTIONS(9508), + [sym_number_literal] = ACTIONS(9508), + [aux_sym_boolean_literal_token1] = ACTIONS(9506), + [aux_sym_boolean_literal_token2] = ACTIONS(9506), + [sym_nothing_literal] = ACTIONS(9506), + [sym_null_literal] = ACTIONS(9506), + [sym_empty_literal] = ACTIONS(9506), + [sym_date_literal] = ACTIONS(9508), + [anon_sym_POUND] = ACTIONS(9506), + }, + [STATE(4037)] = { + [sym_identifier] = ACTIONS(9510), + [sym_newline] = ACTIONS(9512), + [anon_sym_COLON] = ACTIONS(9512), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9510), + [aux_sym_frm_property_statement_token1] = ACTIONS(9510), + [anon_sym_DOT] = ACTIONS(9510), + [anon_sym_BANG] = ACTIONS(9512), + [aux_sym__attribute_identifier_token1] = ACTIONS(9510), + [aux_sym_option_statement_token3] = ACTIONS(9510), + [aux_sym_type_declaration_token1] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9510), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9510), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9510), + [aux_sym_enum_declaration_token1] = ACTIONS(9510), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9510), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9510), + [aux_sym_declare_function_statement_token1] = ACTIONS(9510), + [aux_sym_preprocessor_const_token1] = ACTIONS(9510), + [aux_sym__property_get_header_token1] = ACTIONS(9510), + [aux_sym_event_declaration_token1] = ACTIONS(9510), + [sym_static_modifier] = ACTIONS(9510), + [sym__dim_keyword] = ACTIONS(9510), + [sym__redim_keyword] = ACTIONS(9510), + [aux_sym_get_accessor_token1] = ACTIONS(9510), + [aux_sym_set_accessor_token1] = ACTIONS(9510), + [aux_sym_const_declaration_token1] = ACTIONS(9510), + [anon_sym_LPAREN] = ACTIONS(9512), + [aux_sym_as_type_clause_token2] = ACTIONS(9510), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9510), + [aux_sym_visibility_token1] = ACTIONS(9510), + [aux_sym_visibility_token2] = ACTIONS(9510), + [aux_sym_elseif_fragment_token1] = ACTIONS(9510), + [aux_sym_else_fragment_token1] = ACTIONS(9510), + [aux_sym_select_statement_token1] = ACTIONS(9510), + [aux_sym__for_header_token1] = ACTIONS(9510), + [aux_sym_do_statement_token1] = ACTIONS(9510), + [aux_sym_do_condition_token1] = ACTIONS(9510), + [aux_sym_with_statement_token1] = ACTIONS(9510), + [aux_sym_exit_statement_token1] = ACTIONS(9510), + [sym_end_statement] = ACTIONS(9512), + [aux_sym_on_goto_statement_token1] = ACTIONS(9510), + [aux_sym_on_goto_statement_token2] = ACTIONS(9510), + [aux_sym_on_error_statement_token2] = ACTIONS(9510), + [sym__ambiguous_redim_statement] = ACTIONS(9512), + [aux_sym_erase_statement_token1] = ACTIONS(9510), + [aux_sym_open_statement_token1] = ACTIONS(9510), + [aux_sym_file_mode_token2] = ACTIONS(9510), + [aux_sym_file_access_token2] = ACTIONS(9510), + [aux_sym_file_lock_token2] = ACTIONS(9510), + [aux_sym_print_statement_token1] = ACTIONS(9510), + [anon_sym_PLUS] = ACTIONS(9512), + [anon_sym_DASH] = ACTIONS(9510), + [anon_sym_QMARK] = ACTIONS(9512), + [aux_sym_close_statement_token1] = ACTIONS(9510), + [aux_sym_put_statement_token1] = ACTIONS(9510), + [aux_sym_unlock_statement_token1] = ACTIONS(9510), + [aux_sym_seek_statement_token1] = ACTIONS(9510), + [sym_reset_statement] = ACTIONS(9510), + [aux_sym_raise_event_statement_token1] = ACTIONS(9510), + [sym_stop_statement] = ACTIONS(9510), + [sym_beep_statement] = ACTIONS(9510), + [aux_sym_unload_statement_token1] = ACTIONS(9510), + [aux_sym_def_type_statement_token1] = ACTIONS(9510), + [aux_sym_def_type_statement_token2] = ACTIONS(9510), + [aux_sym_def_type_statement_token3] = ACTIONS(9510), + [aux_sym_def_type_statement_token4] = ACTIONS(9510), + [aux_sym_def_type_statement_token5] = ACTIONS(9510), + [aux_sym_def_type_statement_token6] = ACTIONS(9510), + [aux_sym_def_type_statement_token7] = ACTIONS(9510), + [aux_sym_def_type_statement_token8] = ACTIONS(9510), + [aux_sym_def_type_statement_token9] = ACTIONS(9510), + [aux_sym_def_type_statement_token10] = ACTIONS(9510), + [aux_sym_def_type_statement_token11] = ACTIONS(9510), + [aux_sym_def_type_statement_token12] = ACTIONS(9510), + [aux_sym_def_type_statement_token13] = ACTIONS(9510), + [aux_sym_def_type_statement_token14] = ACTIONS(9510), + [aux_sym_call_statement_token1] = ACTIONS(9510), + [sym__ambiguous_call_statement] = ACTIONS(9510), + [aux_sym_addressof_expression_token1] = ACTIONS(9510), + [aux_sym_type_of_expression_token1] = ACTIONS(9510), + [aux_sym_unary_expression_token1] = ACTIONS(9510), + [sym_string_literal] = ACTIONS(9512), + [sym_number_literal] = ACTIONS(9512), + [aux_sym_boolean_literal_token1] = ACTIONS(9510), + [aux_sym_boolean_literal_token2] = ACTIONS(9510), + [sym_nothing_literal] = ACTIONS(9510), + [sym_null_literal] = ACTIONS(9510), + [sym_empty_literal] = ACTIONS(9510), + [sym_date_literal] = ACTIONS(9512), + [anon_sym_POUND] = ACTIONS(9510), + }, + [STATE(4038)] = { + [sym_identifier] = ACTIONS(9514), + [sym_newline] = ACTIONS(9516), + [anon_sym_COLON] = ACTIONS(9516), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9514), + [aux_sym_frm_property_statement_token1] = ACTIONS(9514), + [anon_sym_DOT] = ACTIONS(9514), + [anon_sym_BANG] = ACTIONS(9516), + [aux_sym__attribute_identifier_token1] = ACTIONS(9514), + [aux_sym_option_statement_token3] = ACTIONS(9514), + [aux_sym_type_declaration_token1] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9514), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9514), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9514), + [aux_sym_enum_declaration_token1] = ACTIONS(9514), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9514), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9514), + [aux_sym_declare_function_statement_token1] = ACTIONS(9514), + [aux_sym_preprocessor_const_token1] = ACTIONS(9514), + [aux_sym__property_get_header_token1] = ACTIONS(9514), + [aux_sym_event_declaration_token1] = ACTIONS(9514), + [sym_static_modifier] = ACTIONS(9514), + [sym__dim_keyword] = ACTIONS(9514), + [sym__redim_keyword] = ACTIONS(9514), + [aux_sym_get_accessor_token1] = ACTIONS(9514), + [aux_sym_set_accessor_token1] = ACTIONS(9514), + [aux_sym_const_declaration_token1] = ACTIONS(9514), + [anon_sym_LPAREN] = ACTIONS(9516), + [aux_sym_as_type_clause_token2] = ACTIONS(9514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9514), + [aux_sym_visibility_token1] = ACTIONS(9514), + [aux_sym_visibility_token2] = ACTIONS(9514), + [aux_sym_elseif_fragment_token1] = ACTIONS(9514), + [aux_sym_else_fragment_token1] = ACTIONS(9514), + [aux_sym_select_statement_token1] = ACTIONS(9514), + [aux_sym__for_header_token1] = ACTIONS(9514), + [aux_sym_do_statement_token1] = ACTIONS(9514), + [aux_sym_do_condition_token1] = ACTIONS(9514), + [aux_sym_with_statement_token1] = ACTIONS(9514), + [aux_sym_exit_statement_token1] = ACTIONS(9514), + [sym_end_statement] = ACTIONS(9516), + [aux_sym_on_goto_statement_token1] = ACTIONS(9514), + [aux_sym_on_goto_statement_token2] = ACTIONS(9514), + [aux_sym_on_error_statement_token2] = ACTIONS(9514), + [sym__ambiguous_redim_statement] = ACTIONS(9516), + [aux_sym_erase_statement_token1] = ACTIONS(9514), + [aux_sym_open_statement_token1] = ACTIONS(9514), + [aux_sym_file_mode_token2] = ACTIONS(9514), + [aux_sym_file_access_token2] = ACTIONS(9514), + [aux_sym_file_lock_token2] = ACTIONS(9514), + [aux_sym_print_statement_token1] = ACTIONS(9514), + [anon_sym_PLUS] = ACTIONS(9516), + [anon_sym_DASH] = ACTIONS(9514), + [anon_sym_QMARK] = ACTIONS(9516), + [aux_sym_close_statement_token1] = ACTIONS(9514), + [aux_sym_put_statement_token1] = ACTIONS(9514), + [aux_sym_unlock_statement_token1] = ACTIONS(9514), + [aux_sym_seek_statement_token1] = ACTIONS(9514), + [sym_reset_statement] = ACTIONS(9514), + [aux_sym_raise_event_statement_token1] = ACTIONS(9514), + [sym_stop_statement] = ACTIONS(9514), + [sym_beep_statement] = ACTIONS(9514), + [aux_sym_unload_statement_token1] = ACTIONS(9514), + [aux_sym_def_type_statement_token1] = ACTIONS(9514), + [aux_sym_def_type_statement_token2] = ACTIONS(9514), + [aux_sym_def_type_statement_token3] = ACTIONS(9514), + [aux_sym_def_type_statement_token4] = ACTIONS(9514), + [aux_sym_def_type_statement_token5] = ACTIONS(9514), + [aux_sym_def_type_statement_token6] = ACTIONS(9514), + [aux_sym_def_type_statement_token7] = ACTIONS(9514), + [aux_sym_def_type_statement_token8] = ACTIONS(9514), + [aux_sym_def_type_statement_token9] = ACTIONS(9514), + [aux_sym_def_type_statement_token10] = ACTIONS(9514), + [aux_sym_def_type_statement_token11] = ACTIONS(9514), + [aux_sym_def_type_statement_token12] = ACTIONS(9514), + [aux_sym_def_type_statement_token13] = ACTIONS(9514), + [aux_sym_def_type_statement_token14] = ACTIONS(9514), + [aux_sym_call_statement_token1] = ACTIONS(9514), + [sym__ambiguous_call_statement] = ACTIONS(9514), + [aux_sym_addressof_expression_token1] = ACTIONS(9514), + [aux_sym_type_of_expression_token1] = ACTIONS(9514), + [aux_sym_unary_expression_token1] = ACTIONS(9514), + [sym_string_literal] = ACTIONS(9516), + [sym_number_literal] = ACTIONS(9516), + [aux_sym_boolean_literal_token1] = ACTIONS(9514), + [aux_sym_boolean_literal_token2] = ACTIONS(9514), + [sym_nothing_literal] = ACTIONS(9514), + [sym_null_literal] = ACTIONS(9514), + [sym_empty_literal] = ACTIONS(9514), + [sym_date_literal] = ACTIONS(9516), + [anon_sym_POUND] = ACTIONS(9514), + }, + [STATE(4039)] = { + [sym_identifier] = ACTIONS(9518), + [sym_newline] = ACTIONS(9520), + [anon_sym_COLON] = ACTIONS(9520), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9518), + [aux_sym_frm_property_statement_token1] = ACTIONS(9518), + [anon_sym_DOT] = ACTIONS(9518), + [anon_sym_BANG] = ACTIONS(9520), + [aux_sym__attribute_identifier_token1] = ACTIONS(9518), + [aux_sym_option_statement_token3] = ACTIONS(9518), + [aux_sym_type_declaration_token1] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9518), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9518), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9518), + [aux_sym_enum_declaration_token1] = ACTIONS(9518), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9518), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9518), + [aux_sym_declare_function_statement_token1] = ACTIONS(9518), + [aux_sym_preprocessor_const_token1] = ACTIONS(9518), + [aux_sym__property_get_header_token1] = ACTIONS(9518), + [aux_sym_event_declaration_token1] = ACTIONS(9518), + [sym_static_modifier] = ACTIONS(9518), + [sym__dim_keyword] = ACTIONS(9518), + [sym__redim_keyword] = ACTIONS(9518), + [aux_sym_get_accessor_token1] = ACTIONS(9518), + [aux_sym_set_accessor_token1] = ACTIONS(9518), + [aux_sym_const_declaration_token1] = ACTIONS(9518), + [anon_sym_LPAREN] = ACTIONS(9520), + [aux_sym_as_type_clause_token2] = ACTIONS(9518), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9518), + [aux_sym_visibility_token1] = ACTIONS(9518), + [aux_sym_visibility_token2] = ACTIONS(9518), + [aux_sym_elseif_fragment_token1] = ACTIONS(9518), + [aux_sym_else_fragment_token1] = ACTIONS(9518), + [aux_sym_select_statement_token1] = ACTIONS(9518), + [aux_sym__for_header_token1] = ACTIONS(9518), + [aux_sym_do_statement_token1] = ACTIONS(9518), + [aux_sym_do_condition_token1] = ACTIONS(9518), + [aux_sym_with_statement_token1] = ACTIONS(9518), + [aux_sym_exit_statement_token1] = ACTIONS(9518), + [sym_end_statement] = ACTIONS(9520), + [aux_sym_on_goto_statement_token1] = ACTIONS(9518), + [aux_sym_on_goto_statement_token2] = ACTIONS(9518), + [aux_sym_on_error_statement_token2] = ACTIONS(9518), + [sym__ambiguous_redim_statement] = ACTIONS(9520), + [aux_sym_erase_statement_token1] = ACTIONS(9518), + [aux_sym_open_statement_token1] = ACTIONS(9518), + [aux_sym_file_mode_token2] = ACTIONS(9518), + [aux_sym_file_access_token2] = ACTIONS(9518), + [aux_sym_file_lock_token2] = ACTIONS(9518), + [aux_sym_print_statement_token1] = ACTIONS(9518), + [anon_sym_PLUS] = ACTIONS(9520), + [anon_sym_DASH] = ACTIONS(9518), + [anon_sym_QMARK] = ACTIONS(9520), + [aux_sym_close_statement_token1] = ACTIONS(9518), + [aux_sym_put_statement_token1] = ACTIONS(9518), + [aux_sym_unlock_statement_token1] = ACTIONS(9518), + [aux_sym_seek_statement_token1] = ACTIONS(9518), + [sym_reset_statement] = ACTIONS(9518), + [aux_sym_raise_event_statement_token1] = ACTIONS(9518), + [sym_stop_statement] = ACTIONS(9518), + [sym_beep_statement] = ACTIONS(9518), + [aux_sym_unload_statement_token1] = ACTIONS(9518), + [aux_sym_def_type_statement_token1] = ACTIONS(9518), + [aux_sym_def_type_statement_token2] = ACTIONS(9518), + [aux_sym_def_type_statement_token3] = ACTIONS(9518), + [aux_sym_def_type_statement_token4] = ACTIONS(9518), + [aux_sym_def_type_statement_token5] = ACTIONS(9518), + [aux_sym_def_type_statement_token6] = ACTIONS(9518), + [aux_sym_def_type_statement_token7] = ACTIONS(9518), + [aux_sym_def_type_statement_token8] = ACTIONS(9518), + [aux_sym_def_type_statement_token9] = ACTIONS(9518), + [aux_sym_def_type_statement_token10] = ACTIONS(9518), + [aux_sym_def_type_statement_token11] = ACTIONS(9518), + [aux_sym_def_type_statement_token12] = ACTIONS(9518), + [aux_sym_def_type_statement_token13] = ACTIONS(9518), + [aux_sym_def_type_statement_token14] = ACTIONS(9518), + [aux_sym_call_statement_token1] = ACTIONS(9518), + [sym__ambiguous_call_statement] = ACTIONS(9518), + [aux_sym_addressof_expression_token1] = ACTIONS(9518), + [aux_sym_type_of_expression_token1] = ACTIONS(9518), + [aux_sym_unary_expression_token1] = ACTIONS(9518), + [sym_string_literal] = ACTIONS(9520), + [sym_number_literal] = ACTIONS(9520), + [aux_sym_boolean_literal_token1] = ACTIONS(9518), + [aux_sym_boolean_literal_token2] = ACTIONS(9518), + [sym_nothing_literal] = ACTIONS(9518), + [sym_null_literal] = ACTIONS(9518), + [sym_empty_literal] = ACTIONS(9518), + [sym_date_literal] = ACTIONS(9520), + [anon_sym_POUND] = ACTIONS(9518), + }, + [STATE(4040)] = { + [sym_identifier] = ACTIONS(9522), + [sym_newline] = ACTIONS(9524), + [anon_sym_COLON] = ACTIONS(9524), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9522), + [aux_sym_frm_property_statement_token1] = ACTIONS(9522), + [anon_sym_DOT] = ACTIONS(9522), + [anon_sym_BANG] = ACTIONS(9524), + [aux_sym__attribute_identifier_token1] = ACTIONS(9522), + [aux_sym_option_statement_token3] = ACTIONS(9522), + [aux_sym_type_declaration_token1] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9522), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9522), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9522), + [aux_sym_enum_declaration_token1] = ACTIONS(9522), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9522), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9522), + [aux_sym_declare_function_statement_token1] = ACTIONS(9522), + [aux_sym_preprocessor_const_token1] = ACTIONS(9522), + [aux_sym__property_get_header_token1] = ACTIONS(9522), + [aux_sym_event_declaration_token1] = ACTIONS(9522), + [sym_static_modifier] = ACTIONS(9522), + [sym__dim_keyword] = ACTIONS(9522), + [sym__redim_keyword] = ACTIONS(9522), + [aux_sym_get_accessor_token1] = ACTIONS(9522), + [aux_sym_set_accessor_token1] = ACTIONS(9522), + [aux_sym_const_declaration_token1] = ACTIONS(9522), + [anon_sym_LPAREN] = ACTIONS(9524), + [aux_sym_as_type_clause_token2] = ACTIONS(9522), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9522), + [aux_sym_visibility_token1] = ACTIONS(9522), + [aux_sym_visibility_token2] = ACTIONS(9522), + [aux_sym_elseif_fragment_token1] = ACTIONS(9522), + [aux_sym_else_fragment_token1] = ACTIONS(9522), + [aux_sym_select_statement_token1] = ACTIONS(9522), + [aux_sym__for_header_token1] = ACTIONS(9522), + [aux_sym_do_statement_token1] = ACTIONS(9522), + [aux_sym_do_condition_token1] = ACTIONS(9522), + [aux_sym_with_statement_token1] = ACTIONS(9522), + [aux_sym_exit_statement_token1] = ACTIONS(9522), + [sym_end_statement] = ACTIONS(9524), + [aux_sym_on_goto_statement_token1] = ACTIONS(9522), + [aux_sym_on_goto_statement_token2] = ACTIONS(9522), + [aux_sym_on_error_statement_token2] = ACTIONS(9522), + [sym__ambiguous_redim_statement] = ACTIONS(9524), + [aux_sym_erase_statement_token1] = ACTIONS(9522), + [aux_sym_open_statement_token1] = ACTIONS(9522), + [aux_sym_file_mode_token2] = ACTIONS(9522), + [aux_sym_file_access_token2] = ACTIONS(9522), + [aux_sym_file_lock_token2] = ACTIONS(9522), + [aux_sym_print_statement_token1] = ACTIONS(9522), + [anon_sym_PLUS] = ACTIONS(9524), + [anon_sym_DASH] = ACTIONS(9522), + [anon_sym_QMARK] = ACTIONS(9524), + [aux_sym_close_statement_token1] = ACTIONS(9522), + [aux_sym_put_statement_token1] = ACTIONS(9522), + [aux_sym_unlock_statement_token1] = ACTIONS(9522), + [aux_sym_seek_statement_token1] = ACTIONS(9522), + [sym_reset_statement] = ACTIONS(9522), + [aux_sym_raise_event_statement_token1] = ACTIONS(9522), + [sym_stop_statement] = ACTIONS(9522), + [sym_beep_statement] = ACTIONS(9522), + [aux_sym_unload_statement_token1] = ACTIONS(9522), + [aux_sym_def_type_statement_token1] = ACTIONS(9522), + [aux_sym_def_type_statement_token2] = ACTIONS(9522), + [aux_sym_def_type_statement_token3] = ACTIONS(9522), + [aux_sym_def_type_statement_token4] = ACTIONS(9522), + [aux_sym_def_type_statement_token5] = ACTIONS(9522), + [aux_sym_def_type_statement_token6] = ACTIONS(9522), + [aux_sym_def_type_statement_token7] = ACTIONS(9522), + [aux_sym_def_type_statement_token8] = ACTIONS(9522), + [aux_sym_def_type_statement_token9] = ACTIONS(9522), + [aux_sym_def_type_statement_token10] = ACTIONS(9522), + [aux_sym_def_type_statement_token11] = ACTIONS(9522), + [aux_sym_def_type_statement_token12] = ACTIONS(9522), + [aux_sym_def_type_statement_token13] = ACTIONS(9522), + [aux_sym_def_type_statement_token14] = ACTIONS(9522), + [aux_sym_call_statement_token1] = ACTIONS(9522), + [sym__ambiguous_call_statement] = ACTIONS(9522), + [aux_sym_addressof_expression_token1] = ACTIONS(9522), + [aux_sym_type_of_expression_token1] = ACTIONS(9522), + [aux_sym_unary_expression_token1] = ACTIONS(9522), + [sym_string_literal] = ACTIONS(9524), + [sym_number_literal] = ACTIONS(9524), + [aux_sym_boolean_literal_token1] = ACTIONS(9522), + [aux_sym_boolean_literal_token2] = ACTIONS(9522), + [sym_nothing_literal] = ACTIONS(9522), + [sym_null_literal] = ACTIONS(9522), + [sym_empty_literal] = ACTIONS(9522), + [sym_date_literal] = ACTIONS(9524), + [anon_sym_POUND] = ACTIONS(9522), + }, + [STATE(4041)] = { + [sym_identifier] = ACTIONS(5716), + [sym_newline] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5716), + [aux_sym_frm_property_statement_token1] = ACTIONS(5716), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_BANG] = ACTIONS(5718), + [aux_sym__attribute_identifier_token1] = ACTIONS(5716), + [aux_sym_option_statement_token3] = ACTIONS(5716), + [aux_sym_type_declaration_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5716), + [aux_sym_enum_declaration_token1] = ACTIONS(5716), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5716), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5716), + [aux_sym_declare_function_statement_token1] = ACTIONS(5716), + [aux_sym_preprocessor_const_token1] = ACTIONS(5716), + [aux_sym__property_get_header_token1] = ACTIONS(5716), + [aux_sym_event_declaration_token1] = ACTIONS(5716), + [sym_static_modifier] = ACTIONS(5716), + [sym__dim_keyword] = ACTIONS(5716), + [sym__redim_keyword] = ACTIONS(5716), + [aux_sym_get_accessor_token1] = ACTIONS(5716), + [aux_sym_set_accessor_token1] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5718), + [aux_sym_const_declaration_token1] = ACTIONS(5716), + [anon_sym_LPAREN] = ACTIONS(5718), + [aux_sym_as_type_clause_token2] = ACTIONS(5716), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5716), + [aux_sym_visibility_token1] = ACTIONS(5716), + [aux_sym_visibility_token2] = ACTIONS(5716), + [aux_sym_elseif_fragment_token1] = ACTIONS(5716), + [aux_sym_else_fragment_token1] = ACTIONS(5716), + [aux_sym_select_statement_token1] = ACTIONS(5716), + [aux_sym__for_header_token1] = ACTIONS(5716), + [aux_sym_do_statement_token1] = ACTIONS(5716), + [aux_sym_do_condition_token1] = ACTIONS(5716), + [aux_sym_with_statement_token1] = ACTIONS(5716), + [aux_sym_exit_statement_token1] = ACTIONS(5716), + [sym_end_statement] = ACTIONS(5718), + [aux_sym_on_goto_statement_token1] = ACTIONS(5716), + [aux_sym_on_goto_statement_token2] = ACTIONS(5716), + [aux_sym_on_error_statement_token2] = ACTIONS(5716), + [sym__ambiguous_redim_statement] = ACTIONS(5718), + [aux_sym_erase_statement_token1] = ACTIONS(5716), + [aux_sym_open_statement_token1] = ACTIONS(5716), + [aux_sym_file_mode_token2] = ACTIONS(5716), + [aux_sym_file_access_token2] = ACTIONS(5716), + [aux_sym_file_lock_token2] = ACTIONS(5716), + [aux_sym_print_statement_token1] = ACTIONS(5716), + [anon_sym_PLUS] = ACTIONS(5718), + [anon_sym_DASH] = ACTIONS(5716), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [aux_sym_close_statement_token1] = ACTIONS(5716), + [aux_sym_put_statement_token1] = ACTIONS(5716), + [aux_sym_unlock_statement_token1] = ACTIONS(5716), + [aux_sym_seek_statement_token1] = ACTIONS(5716), + [sym_reset_statement] = ACTIONS(5716), + [aux_sym_raise_event_statement_token1] = ACTIONS(5716), + [sym_stop_statement] = ACTIONS(5716), + [sym_beep_statement] = ACTIONS(5716), + [aux_sym_unload_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token2] = ACTIONS(5716), + [aux_sym_def_type_statement_token3] = ACTIONS(5716), + [aux_sym_def_type_statement_token4] = ACTIONS(5716), + [aux_sym_def_type_statement_token5] = ACTIONS(5716), + [aux_sym_def_type_statement_token6] = ACTIONS(5716), + [aux_sym_def_type_statement_token7] = ACTIONS(5716), + [aux_sym_def_type_statement_token8] = ACTIONS(5716), + [aux_sym_def_type_statement_token9] = ACTIONS(5716), + [aux_sym_def_type_statement_token10] = ACTIONS(5716), + [aux_sym_def_type_statement_token11] = ACTIONS(5716), + [aux_sym_def_type_statement_token12] = ACTIONS(5716), + [aux_sym_def_type_statement_token13] = ACTIONS(5716), + [aux_sym_def_type_statement_token14] = ACTIONS(5716), + [aux_sym_call_statement_token1] = ACTIONS(5716), + [sym__ambiguous_call_statement] = ACTIONS(5716), + [aux_sym_addressof_expression_token1] = ACTIONS(5716), + [aux_sym_type_of_expression_token1] = ACTIONS(5716), + [aux_sym_unary_expression_token1] = ACTIONS(5716), + [sym_string_literal] = ACTIONS(5718), + [sym_number_literal] = ACTIONS(5718), + [aux_sym_boolean_literal_token1] = ACTIONS(5716), + [aux_sym_boolean_literal_token2] = ACTIONS(5716), + [sym_nothing_literal] = ACTIONS(5716), + [sym_null_literal] = ACTIONS(5716), + [sym_empty_literal] = ACTIONS(5716), + [sym_date_literal] = ACTIONS(5718), + [anon_sym_POUND] = ACTIONS(5716), + }, + [STATE(4042)] = { + [sym_identifier] = ACTIONS(9526), + [sym_newline] = ACTIONS(9528), + [anon_sym_COLON] = ACTIONS(9528), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9526), + [aux_sym_frm_property_statement_token1] = ACTIONS(9526), + [anon_sym_DOT] = ACTIONS(9526), + [anon_sym_BANG] = ACTIONS(9528), + [aux_sym__attribute_identifier_token1] = ACTIONS(9526), + [aux_sym_option_statement_token3] = ACTIONS(9526), + [aux_sym_type_declaration_token1] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9526), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9526), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9526), + [aux_sym_enum_declaration_token1] = ACTIONS(9526), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9526), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9526), + [aux_sym_declare_function_statement_token1] = ACTIONS(9526), + [aux_sym_preprocessor_const_token1] = ACTIONS(9526), + [aux_sym__property_get_header_token1] = ACTIONS(9526), + [aux_sym_event_declaration_token1] = ACTIONS(9526), + [sym_static_modifier] = ACTIONS(9526), + [sym__dim_keyword] = ACTIONS(9526), + [sym__redim_keyword] = ACTIONS(9526), + [aux_sym_get_accessor_token1] = ACTIONS(9526), + [aux_sym_set_accessor_token1] = ACTIONS(9526), + [aux_sym_const_declaration_token1] = ACTIONS(9526), + [anon_sym_LPAREN] = ACTIONS(9528), + [aux_sym_as_type_clause_token2] = ACTIONS(9526), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9526), + [aux_sym_visibility_token1] = ACTIONS(9526), + [aux_sym_visibility_token2] = ACTIONS(9526), + [aux_sym_elseif_fragment_token1] = ACTIONS(9526), + [aux_sym_else_fragment_token1] = ACTIONS(9526), + [aux_sym_select_statement_token1] = ACTIONS(9526), + [aux_sym__for_header_token1] = ACTIONS(9526), + [aux_sym_do_statement_token1] = ACTIONS(9526), + [aux_sym_do_condition_token1] = ACTIONS(9526), + [aux_sym_with_statement_token1] = ACTIONS(9526), + [aux_sym_exit_statement_token1] = ACTIONS(9526), + [sym_end_statement] = ACTIONS(9528), + [aux_sym_on_goto_statement_token1] = ACTIONS(9526), + [aux_sym_on_goto_statement_token2] = ACTIONS(9526), + [aux_sym_on_error_statement_token2] = ACTIONS(9526), + [sym__ambiguous_redim_statement] = ACTIONS(9528), + [aux_sym_erase_statement_token1] = ACTIONS(9526), + [aux_sym_open_statement_token1] = ACTIONS(9526), + [aux_sym_file_mode_token2] = ACTIONS(9526), + [aux_sym_file_access_token2] = ACTIONS(9526), + [aux_sym_file_lock_token2] = ACTIONS(9526), + [aux_sym_print_statement_token1] = ACTIONS(9526), + [anon_sym_PLUS] = ACTIONS(9528), + [anon_sym_DASH] = ACTIONS(9526), + [anon_sym_QMARK] = ACTIONS(9528), + [aux_sym_close_statement_token1] = ACTIONS(9526), + [aux_sym_put_statement_token1] = ACTIONS(9526), + [aux_sym_unlock_statement_token1] = ACTIONS(9526), + [aux_sym_seek_statement_token1] = ACTIONS(9526), + [sym_reset_statement] = ACTIONS(9526), + [aux_sym_raise_event_statement_token1] = ACTIONS(9526), + [sym_stop_statement] = ACTIONS(9526), + [sym_beep_statement] = ACTIONS(9526), + [aux_sym_unload_statement_token1] = ACTIONS(9526), + [aux_sym_def_type_statement_token1] = ACTIONS(9526), + [aux_sym_def_type_statement_token2] = ACTIONS(9526), + [aux_sym_def_type_statement_token3] = ACTIONS(9526), + [aux_sym_def_type_statement_token4] = ACTIONS(9526), + [aux_sym_def_type_statement_token5] = ACTIONS(9526), + [aux_sym_def_type_statement_token6] = ACTIONS(9526), + [aux_sym_def_type_statement_token7] = ACTIONS(9526), + [aux_sym_def_type_statement_token8] = ACTIONS(9526), + [aux_sym_def_type_statement_token9] = ACTIONS(9526), + [aux_sym_def_type_statement_token10] = ACTIONS(9526), + [aux_sym_def_type_statement_token11] = ACTIONS(9526), + [aux_sym_def_type_statement_token12] = ACTIONS(9526), + [aux_sym_def_type_statement_token13] = ACTIONS(9526), + [aux_sym_def_type_statement_token14] = ACTIONS(9526), + [aux_sym_call_statement_token1] = ACTIONS(9526), + [sym__ambiguous_call_statement] = ACTIONS(9526), + [aux_sym_addressof_expression_token1] = ACTIONS(9526), + [aux_sym_type_of_expression_token1] = ACTIONS(9526), + [aux_sym_unary_expression_token1] = ACTIONS(9526), + [sym_string_literal] = ACTIONS(9528), + [sym_number_literal] = ACTIONS(9528), + [aux_sym_boolean_literal_token1] = ACTIONS(9526), + [aux_sym_boolean_literal_token2] = ACTIONS(9526), + [sym_nothing_literal] = ACTIONS(9526), + [sym_null_literal] = ACTIONS(9526), + [sym_empty_literal] = ACTIONS(9526), + [sym_date_literal] = ACTIONS(9528), + [anon_sym_POUND] = ACTIONS(9526), + }, + [STATE(4043)] = { + [sym_parameter_list] = STATE(4529), + [sym_identifier] = ACTIONS(8555), + [sym_newline] = ACTIONS(8557), + [anon_sym_COLON] = ACTIONS(8557), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8555), + [aux_sym_frm_property_statement_token1] = ACTIONS(8555), + [anon_sym_DOT] = ACTIONS(8555), + [anon_sym_BANG] = ACTIONS(8557), + [aux_sym__attribute_identifier_token1] = ACTIONS(8555), + [aux_sym_option_statement_token3] = ACTIONS(8555), + [aux_sym_type_declaration_token1] = ACTIONS(8555), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8555), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8555), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8555), + [aux_sym_enum_declaration_token1] = ACTIONS(8555), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8555), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8555), + [aux_sym_declare_sub_statement_token4] = ACTIONS(9530), + [aux_sym_declare_function_statement_token1] = ACTIONS(8555), + [aux_sym_preprocessor_const_token1] = ACTIONS(8555), + [aux_sym__property_get_header_token1] = ACTIONS(8555), + [aux_sym_event_declaration_token1] = ACTIONS(8555), + [sym_static_modifier] = ACTIONS(8555), + [sym__dim_keyword] = ACTIONS(8555), + [sym__redim_keyword] = ACTIONS(8555), + [aux_sym_get_accessor_token1] = ACTIONS(8555), + [aux_sym_set_accessor_token1] = ACTIONS(8555), + [aux_sym_const_declaration_token1] = ACTIONS(8555), + [anon_sym_LPAREN] = ACTIONS(9014), + [aux_sym_as_type_clause_token2] = ACTIONS(8555), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8555), + [aux_sym_visibility_token1] = ACTIONS(8555), + [aux_sym_visibility_token2] = ACTIONS(8555), + [aux_sym_elseif_fragment_token1] = ACTIONS(8555), + [aux_sym_else_fragment_token1] = ACTIONS(8555), + [aux_sym_select_statement_token1] = ACTIONS(8555), + [aux_sym__for_header_token1] = ACTIONS(8555), + [aux_sym_do_statement_token1] = ACTIONS(8555), + [aux_sym_do_condition_token1] = ACTIONS(8555), + [aux_sym_with_statement_token1] = ACTIONS(8555), + [aux_sym_exit_statement_token1] = ACTIONS(8555), + [sym_end_statement] = ACTIONS(8557), + [aux_sym_on_goto_statement_token1] = ACTIONS(8555), + [aux_sym_on_goto_statement_token2] = ACTIONS(8555), + [aux_sym_on_error_statement_token2] = ACTIONS(8555), + [sym__ambiguous_redim_statement] = ACTIONS(8557), + [aux_sym_erase_statement_token1] = ACTIONS(8555), + [aux_sym_open_statement_token1] = ACTIONS(8555), + [aux_sym_file_mode_token2] = ACTIONS(8555), + [aux_sym_file_access_token2] = ACTIONS(8555), + [aux_sym_file_lock_token2] = ACTIONS(8555), + [aux_sym_print_statement_token1] = ACTIONS(8555), + [anon_sym_PLUS] = ACTIONS(8557), + [anon_sym_DASH] = ACTIONS(8555), + [anon_sym_QMARK] = ACTIONS(8557), + [aux_sym_close_statement_token1] = ACTIONS(8555), + [aux_sym_put_statement_token1] = ACTIONS(8555), + [aux_sym_unlock_statement_token1] = ACTIONS(8555), + [aux_sym_seek_statement_token1] = ACTIONS(8555), + [sym_reset_statement] = ACTIONS(8555), + [aux_sym_raise_event_statement_token1] = ACTIONS(8555), + [sym_stop_statement] = ACTIONS(8555), + [sym_beep_statement] = ACTIONS(8555), + [aux_sym_unload_statement_token1] = ACTIONS(8555), + [aux_sym_def_type_statement_token1] = ACTIONS(8555), + [aux_sym_def_type_statement_token2] = ACTIONS(8555), + [aux_sym_def_type_statement_token3] = ACTIONS(8555), + [aux_sym_def_type_statement_token4] = ACTIONS(8555), + [aux_sym_def_type_statement_token5] = ACTIONS(8555), + [aux_sym_def_type_statement_token6] = ACTIONS(8555), + [aux_sym_def_type_statement_token7] = ACTIONS(8555), + [aux_sym_def_type_statement_token8] = ACTIONS(8555), + [aux_sym_def_type_statement_token9] = ACTIONS(8555), + [aux_sym_def_type_statement_token10] = ACTIONS(8555), + [aux_sym_def_type_statement_token11] = ACTIONS(8555), + [aux_sym_def_type_statement_token12] = ACTIONS(8555), + [aux_sym_def_type_statement_token13] = ACTIONS(8555), + [aux_sym_def_type_statement_token14] = ACTIONS(8555), + [aux_sym_call_statement_token1] = ACTIONS(8555), + [sym__ambiguous_call_statement] = ACTIONS(8555), + [aux_sym_addressof_expression_token1] = ACTIONS(8555), + [aux_sym_type_of_expression_token1] = ACTIONS(8555), + [aux_sym_unary_expression_token1] = ACTIONS(8555), + [sym_string_literal] = ACTIONS(8557), + [sym_number_literal] = ACTIONS(8557), + [aux_sym_boolean_literal_token1] = ACTIONS(8555), + [aux_sym_boolean_literal_token2] = ACTIONS(8555), + [sym_nothing_literal] = ACTIONS(8555), + [sym_null_literal] = ACTIONS(8555), + [sym_empty_literal] = ACTIONS(8555), + [sym_date_literal] = ACTIONS(8557), + [anon_sym_POUND] = ACTIONS(8555), + }, + [STATE(4044)] = { + [sym_identifier] = ACTIONS(9532), + [sym_newline] = ACTIONS(9534), + [anon_sym_COLON] = ACTIONS(9534), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9532), + [aux_sym_frm_property_statement_token1] = ACTIONS(9532), + [anon_sym_DOT] = ACTIONS(9532), + [anon_sym_BANG] = ACTIONS(9534), + [aux_sym__attribute_identifier_token1] = ACTIONS(9532), + [aux_sym_option_statement_token3] = ACTIONS(9532), + [aux_sym_type_declaration_token1] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9532), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9532), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9532), + [aux_sym_enum_declaration_token1] = ACTIONS(9532), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9532), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9532), + [aux_sym_declare_function_statement_token1] = ACTIONS(9532), + [aux_sym_preprocessor_const_token1] = ACTIONS(9532), + [aux_sym__property_get_header_token1] = ACTIONS(9532), + [aux_sym_event_declaration_token1] = ACTIONS(9532), + [sym_static_modifier] = ACTIONS(9532), + [sym__dim_keyword] = ACTIONS(9532), + [sym__redim_keyword] = ACTIONS(9532), + [aux_sym_get_accessor_token1] = ACTIONS(9532), + [aux_sym_set_accessor_token1] = ACTIONS(9532), + [aux_sym_const_declaration_token1] = ACTIONS(9532), + [anon_sym_LPAREN] = ACTIONS(9534), + [aux_sym_as_type_clause_token2] = ACTIONS(9532), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9532), + [aux_sym_visibility_token1] = ACTIONS(9532), + [aux_sym_visibility_token2] = ACTIONS(9532), + [aux_sym_elseif_fragment_token1] = ACTIONS(9532), + [aux_sym_else_fragment_token1] = ACTIONS(9532), + [aux_sym_select_statement_token1] = ACTIONS(9532), + [aux_sym__for_header_token1] = ACTIONS(9532), + [aux_sym_do_statement_token1] = ACTIONS(9532), + [aux_sym_do_condition_token1] = ACTIONS(9532), + [aux_sym_with_statement_token1] = ACTIONS(9532), + [aux_sym_exit_statement_token1] = ACTIONS(9532), + [sym_end_statement] = ACTIONS(9534), + [aux_sym_on_goto_statement_token1] = ACTIONS(9532), + [aux_sym_on_goto_statement_token2] = ACTIONS(9532), + [aux_sym_on_error_statement_token2] = ACTIONS(9532), + [sym__ambiguous_redim_statement] = ACTIONS(9534), + [aux_sym_erase_statement_token1] = ACTIONS(9532), + [aux_sym_open_statement_token1] = ACTIONS(9532), + [aux_sym_file_mode_token2] = ACTIONS(9532), + [aux_sym_file_access_token2] = ACTIONS(9532), + [aux_sym_file_lock_token2] = ACTIONS(9532), + [aux_sym_print_statement_token1] = ACTIONS(9532), + [anon_sym_PLUS] = ACTIONS(9534), + [anon_sym_DASH] = ACTIONS(9532), + [anon_sym_QMARK] = ACTIONS(9534), + [aux_sym_close_statement_token1] = ACTIONS(9532), + [aux_sym_put_statement_token1] = ACTIONS(9532), + [aux_sym_unlock_statement_token1] = ACTIONS(9532), + [aux_sym_seek_statement_token1] = ACTIONS(9532), + [sym_reset_statement] = ACTIONS(9532), + [aux_sym_raise_event_statement_token1] = ACTIONS(9532), + [sym_stop_statement] = ACTIONS(9532), + [sym_beep_statement] = ACTIONS(9532), + [aux_sym_unload_statement_token1] = ACTIONS(9532), + [aux_sym_def_type_statement_token1] = ACTIONS(9532), + [aux_sym_def_type_statement_token2] = ACTIONS(9532), + [aux_sym_def_type_statement_token3] = ACTIONS(9532), + [aux_sym_def_type_statement_token4] = ACTIONS(9532), + [aux_sym_def_type_statement_token5] = ACTIONS(9532), + [aux_sym_def_type_statement_token6] = ACTIONS(9532), + [aux_sym_def_type_statement_token7] = ACTIONS(9532), + [aux_sym_def_type_statement_token8] = ACTIONS(9532), + [aux_sym_def_type_statement_token9] = ACTIONS(9532), + [aux_sym_def_type_statement_token10] = ACTIONS(9532), + [aux_sym_def_type_statement_token11] = ACTIONS(9532), + [aux_sym_def_type_statement_token12] = ACTIONS(9532), + [aux_sym_def_type_statement_token13] = ACTIONS(9532), + [aux_sym_def_type_statement_token14] = ACTIONS(9532), + [aux_sym_call_statement_token1] = ACTIONS(9532), + [sym__ambiguous_call_statement] = ACTIONS(9532), + [aux_sym_addressof_expression_token1] = ACTIONS(9532), + [aux_sym_type_of_expression_token1] = ACTIONS(9532), + [aux_sym_unary_expression_token1] = ACTIONS(9532), + [sym_string_literal] = ACTIONS(9534), + [sym_number_literal] = ACTIONS(9534), + [aux_sym_boolean_literal_token1] = ACTIONS(9532), + [aux_sym_boolean_literal_token2] = ACTIONS(9532), + [sym_nothing_literal] = ACTIONS(9532), + [sym_null_literal] = ACTIONS(9532), + [sym_empty_literal] = ACTIONS(9532), + [sym_date_literal] = ACTIONS(9534), + [anon_sym_POUND] = ACTIONS(9532), + }, + [STATE(4045)] = { + [sym_identifier] = ACTIONS(9536), + [sym_newline] = ACTIONS(9538), + [anon_sym_COLON] = ACTIONS(9538), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9536), + [aux_sym_frm_property_statement_token1] = ACTIONS(9536), + [anon_sym_DOT] = ACTIONS(9536), + [anon_sym_BANG] = ACTIONS(9538), + [aux_sym__attribute_identifier_token1] = ACTIONS(9536), + [aux_sym_option_statement_token3] = ACTIONS(9536), + [aux_sym_type_declaration_token1] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9536), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9536), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9536), + [aux_sym_enum_declaration_token1] = ACTIONS(9536), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9536), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9536), + [aux_sym_declare_function_statement_token1] = ACTIONS(9536), + [aux_sym_preprocessor_const_token1] = ACTIONS(9536), + [aux_sym__property_get_header_token1] = ACTIONS(9536), + [aux_sym_event_declaration_token1] = ACTIONS(9536), + [sym_static_modifier] = ACTIONS(9536), + [sym__dim_keyword] = ACTIONS(9536), + [sym__redim_keyword] = ACTIONS(9536), + [aux_sym_get_accessor_token1] = ACTIONS(9536), + [aux_sym_set_accessor_token1] = ACTIONS(9536), + [aux_sym_const_declaration_token1] = ACTIONS(9536), + [anon_sym_LPAREN] = ACTIONS(9538), + [aux_sym_as_type_clause_token2] = ACTIONS(9536), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9536), + [aux_sym_visibility_token1] = ACTIONS(9536), + [aux_sym_visibility_token2] = ACTIONS(9536), + [aux_sym_elseif_fragment_token1] = ACTIONS(9536), + [aux_sym_else_fragment_token1] = ACTIONS(9536), + [aux_sym_select_statement_token1] = ACTIONS(9536), + [aux_sym__for_header_token1] = ACTIONS(9536), + [aux_sym_do_statement_token1] = ACTIONS(9536), + [aux_sym_do_condition_token1] = ACTIONS(9536), + [aux_sym_with_statement_token1] = ACTIONS(9536), + [aux_sym_exit_statement_token1] = ACTIONS(9536), + [sym_end_statement] = ACTIONS(9538), + [aux_sym_on_goto_statement_token1] = ACTIONS(9536), + [aux_sym_on_goto_statement_token2] = ACTIONS(9536), + [aux_sym_on_error_statement_token2] = ACTIONS(9536), + [sym__ambiguous_redim_statement] = ACTIONS(9538), + [aux_sym_erase_statement_token1] = ACTIONS(9536), + [aux_sym_open_statement_token1] = ACTIONS(9536), + [aux_sym_file_mode_token2] = ACTIONS(9536), + [aux_sym_file_access_token2] = ACTIONS(9536), + [aux_sym_file_lock_token2] = ACTIONS(9536), + [aux_sym_print_statement_token1] = ACTIONS(9536), + [anon_sym_PLUS] = ACTIONS(9538), + [anon_sym_DASH] = ACTIONS(9536), + [anon_sym_QMARK] = ACTIONS(9538), + [aux_sym_close_statement_token1] = ACTIONS(9536), + [aux_sym_put_statement_token1] = ACTIONS(9536), + [aux_sym_unlock_statement_token1] = ACTIONS(9536), + [aux_sym_seek_statement_token1] = ACTIONS(9536), + [sym_reset_statement] = ACTIONS(9536), + [aux_sym_raise_event_statement_token1] = ACTIONS(9536), + [sym_stop_statement] = ACTIONS(9536), + [sym_beep_statement] = ACTIONS(9536), + [aux_sym_unload_statement_token1] = ACTIONS(9536), + [aux_sym_def_type_statement_token1] = ACTIONS(9536), + [aux_sym_def_type_statement_token2] = ACTIONS(9536), + [aux_sym_def_type_statement_token3] = ACTIONS(9536), + [aux_sym_def_type_statement_token4] = ACTIONS(9536), + [aux_sym_def_type_statement_token5] = ACTIONS(9536), + [aux_sym_def_type_statement_token6] = ACTIONS(9536), + [aux_sym_def_type_statement_token7] = ACTIONS(9536), + [aux_sym_def_type_statement_token8] = ACTIONS(9536), + [aux_sym_def_type_statement_token9] = ACTIONS(9536), + [aux_sym_def_type_statement_token10] = ACTIONS(9536), + [aux_sym_def_type_statement_token11] = ACTIONS(9536), + [aux_sym_def_type_statement_token12] = ACTIONS(9536), + [aux_sym_def_type_statement_token13] = ACTIONS(9536), + [aux_sym_def_type_statement_token14] = ACTIONS(9536), + [aux_sym_call_statement_token1] = ACTIONS(9536), + [sym__ambiguous_call_statement] = ACTIONS(9536), + [aux_sym_addressof_expression_token1] = ACTIONS(9536), + [aux_sym_type_of_expression_token1] = ACTIONS(9536), + [aux_sym_unary_expression_token1] = ACTIONS(9536), + [sym_string_literal] = ACTIONS(9538), + [sym_number_literal] = ACTIONS(9538), + [aux_sym_boolean_literal_token1] = ACTIONS(9536), + [aux_sym_boolean_literal_token2] = ACTIONS(9536), + [sym_nothing_literal] = ACTIONS(9536), + [sym_null_literal] = ACTIONS(9536), + [sym_empty_literal] = ACTIONS(9536), + [sym_date_literal] = ACTIONS(9538), + [anon_sym_POUND] = ACTIONS(9536), + }, + [STATE(4046)] = { + [aux_sym_redim_statement_repeat1] = STATE(4066), + [sym_identifier] = ACTIONS(8561), + [sym_newline] = ACTIONS(8563), + [anon_sym_COLON] = ACTIONS(8563), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8561), + [aux_sym_frm_property_statement_token1] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8561), + [anon_sym_BANG] = ACTIONS(8563), + [aux_sym__attribute_identifier_token1] = ACTIONS(8561), + [aux_sym_option_statement_token3] = ACTIONS(8561), + [aux_sym_type_declaration_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8561), + [aux_sym_enum_declaration_token1] = ACTIONS(8561), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8561), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8561), + [aux_sym_declare_function_statement_token1] = ACTIONS(8561), + [aux_sym_preprocessor_const_token1] = ACTIONS(8561), + [aux_sym__property_get_header_token1] = ACTIONS(8561), + [aux_sym_event_declaration_token1] = ACTIONS(8561), + [sym_static_modifier] = ACTIONS(8561), + [sym__dim_keyword] = ACTIONS(8561), + [sym__redim_keyword] = ACTIONS(8561), + [aux_sym_get_accessor_token1] = ACTIONS(8561), + [aux_sym_set_accessor_token1] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(9480), + [aux_sym_const_declaration_token1] = ACTIONS(8561), + [anon_sym_LPAREN] = ACTIONS(8563), + [aux_sym_as_type_clause_token2] = ACTIONS(8561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8561), + [aux_sym_visibility_token1] = ACTIONS(8561), + [aux_sym_visibility_token2] = ACTIONS(8561), + [aux_sym_elseif_fragment_token1] = ACTIONS(8561), + [aux_sym_else_fragment_token1] = ACTIONS(8561), + [aux_sym_select_statement_token1] = ACTIONS(8561), + [aux_sym__for_header_token1] = ACTIONS(8561), + [aux_sym_do_statement_token1] = ACTIONS(8561), + [aux_sym_do_condition_token1] = ACTIONS(8561), + [aux_sym_with_statement_token1] = ACTIONS(8561), + [aux_sym_exit_statement_token1] = ACTIONS(8561), + [sym_end_statement] = ACTIONS(8563), + [aux_sym_on_goto_statement_token1] = ACTIONS(8561), + [aux_sym_on_goto_statement_token2] = ACTIONS(8561), + [aux_sym_on_error_statement_token2] = ACTIONS(8561), + [sym__ambiguous_redim_statement] = ACTIONS(8563), + [aux_sym_erase_statement_token1] = ACTIONS(8561), + [aux_sym_open_statement_token1] = ACTIONS(8561), + [aux_sym_file_mode_token2] = ACTIONS(8561), + [aux_sym_file_access_token2] = ACTIONS(8561), + [aux_sym_file_lock_token2] = ACTIONS(8561), + [aux_sym_print_statement_token1] = ACTIONS(8561), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(8561), + [anon_sym_QMARK] = ACTIONS(8563), + [aux_sym_close_statement_token1] = ACTIONS(8561), + [aux_sym_put_statement_token1] = ACTIONS(8561), + [aux_sym_unlock_statement_token1] = ACTIONS(8561), + [aux_sym_seek_statement_token1] = ACTIONS(8561), + [sym_reset_statement] = ACTIONS(8561), + [aux_sym_raise_event_statement_token1] = ACTIONS(8561), + [sym_stop_statement] = ACTIONS(8561), + [sym_beep_statement] = ACTIONS(8561), + [aux_sym_unload_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token2] = ACTIONS(8561), + [aux_sym_def_type_statement_token3] = ACTIONS(8561), + [aux_sym_def_type_statement_token4] = ACTIONS(8561), + [aux_sym_def_type_statement_token5] = ACTIONS(8561), + [aux_sym_def_type_statement_token6] = ACTIONS(8561), + [aux_sym_def_type_statement_token7] = ACTIONS(8561), + [aux_sym_def_type_statement_token8] = ACTIONS(8561), + [aux_sym_def_type_statement_token9] = ACTIONS(8561), + [aux_sym_def_type_statement_token10] = ACTIONS(8561), + [aux_sym_def_type_statement_token11] = ACTIONS(8561), + [aux_sym_def_type_statement_token12] = ACTIONS(8561), + [aux_sym_def_type_statement_token13] = ACTIONS(8561), + [aux_sym_def_type_statement_token14] = ACTIONS(8561), + [aux_sym_call_statement_token1] = ACTIONS(8561), + [sym__ambiguous_call_statement] = ACTIONS(8561), + [aux_sym_addressof_expression_token1] = ACTIONS(8561), + [aux_sym_type_of_expression_token1] = ACTIONS(8561), + [aux_sym_unary_expression_token1] = ACTIONS(8561), + [sym_string_literal] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8563), + [aux_sym_boolean_literal_token1] = ACTIONS(8561), + [aux_sym_boolean_literal_token2] = ACTIONS(8561), + [sym_nothing_literal] = ACTIONS(8561), + [sym_null_literal] = ACTIONS(8561), + [sym_empty_literal] = ACTIONS(8561), + [sym_date_literal] = ACTIONS(8563), + [anon_sym_POUND] = ACTIONS(8561), + }, + [STATE(4047)] = { + [aux_sym_redim_statement_repeat1] = STATE(4067), + [sym_identifier] = ACTIONS(8561), + [sym_newline] = ACTIONS(8563), + [anon_sym_COLON] = ACTIONS(8563), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8561), + [aux_sym_frm_property_statement_token1] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8561), + [anon_sym_BANG] = ACTIONS(8563), + [aux_sym__attribute_identifier_token1] = ACTIONS(8561), + [aux_sym_option_statement_token3] = ACTIONS(8561), + [aux_sym_type_declaration_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8561), + [aux_sym_enum_declaration_token1] = ACTIONS(8561), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8561), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8561), + [aux_sym_declare_function_statement_token1] = ACTIONS(8561), + [aux_sym_preprocessor_const_token1] = ACTIONS(8561), + [aux_sym__property_get_header_token1] = ACTIONS(8561), + [aux_sym_event_declaration_token1] = ACTIONS(8561), + [sym_static_modifier] = ACTIONS(8561), + [sym__dim_keyword] = ACTIONS(8561), + [sym__redim_keyword] = ACTIONS(8561), + [aux_sym_get_accessor_token1] = ACTIONS(8561), + [aux_sym_set_accessor_token1] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(9480), + [aux_sym_const_declaration_token1] = ACTIONS(8561), + [anon_sym_LPAREN] = ACTIONS(8563), + [aux_sym_as_type_clause_token2] = ACTIONS(8561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8561), + [aux_sym_visibility_token1] = ACTIONS(8561), + [aux_sym_visibility_token2] = ACTIONS(8561), + [aux_sym_elseif_fragment_token1] = ACTIONS(8561), + [aux_sym_else_fragment_token1] = ACTIONS(8561), + [aux_sym_select_statement_token1] = ACTIONS(8561), + [aux_sym__for_header_token1] = ACTIONS(8561), + [aux_sym_do_statement_token1] = ACTIONS(8561), + [aux_sym_do_condition_token1] = ACTIONS(8561), + [aux_sym_with_statement_token1] = ACTIONS(8561), + [aux_sym_exit_statement_token1] = ACTIONS(8561), + [sym_end_statement] = ACTIONS(8563), + [aux_sym_on_goto_statement_token1] = ACTIONS(8561), + [aux_sym_on_goto_statement_token2] = ACTIONS(8561), + [aux_sym_on_error_statement_token2] = ACTIONS(8561), + [sym__ambiguous_redim_statement] = ACTIONS(8563), + [aux_sym_erase_statement_token1] = ACTIONS(8561), + [aux_sym_open_statement_token1] = ACTIONS(8561), + [aux_sym_file_mode_token2] = ACTIONS(8561), + [aux_sym_file_access_token2] = ACTIONS(8561), + [aux_sym_file_lock_token2] = ACTIONS(8561), + [aux_sym_print_statement_token1] = ACTIONS(8561), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(8561), + [anon_sym_QMARK] = ACTIONS(8563), + [aux_sym_close_statement_token1] = ACTIONS(8561), + [aux_sym_put_statement_token1] = ACTIONS(8561), + [aux_sym_unlock_statement_token1] = ACTIONS(8561), + [aux_sym_seek_statement_token1] = ACTIONS(8561), + [sym_reset_statement] = ACTIONS(8561), + [aux_sym_raise_event_statement_token1] = ACTIONS(8561), + [sym_stop_statement] = ACTIONS(8561), + [sym_beep_statement] = ACTIONS(8561), + [aux_sym_unload_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token2] = ACTIONS(8561), + [aux_sym_def_type_statement_token3] = ACTIONS(8561), + [aux_sym_def_type_statement_token4] = ACTIONS(8561), + [aux_sym_def_type_statement_token5] = ACTIONS(8561), + [aux_sym_def_type_statement_token6] = ACTIONS(8561), + [aux_sym_def_type_statement_token7] = ACTIONS(8561), + [aux_sym_def_type_statement_token8] = ACTIONS(8561), + [aux_sym_def_type_statement_token9] = ACTIONS(8561), + [aux_sym_def_type_statement_token10] = ACTIONS(8561), + [aux_sym_def_type_statement_token11] = ACTIONS(8561), + [aux_sym_def_type_statement_token12] = ACTIONS(8561), + [aux_sym_def_type_statement_token13] = ACTIONS(8561), + [aux_sym_def_type_statement_token14] = ACTIONS(8561), + [aux_sym_call_statement_token1] = ACTIONS(8561), + [sym__ambiguous_call_statement] = ACTIONS(8561), + [aux_sym_addressof_expression_token1] = ACTIONS(8561), + [aux_sym_type_of_expression_token1] = ACTIONS(8561), + [aux_sym_unary_expression_token1] = ACTIONS(8561), + [sym_string_literal] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8563), + [aux_sym_boolean_literal_token1] = ACTIONS(8561), + [aux_sym_boolean_literal_token2] = ACTIONS(8561), + [sym_nothing_literal] = ACTIONS(8561), + [sym_null_literal] = ACTIONS(8561), + [sym_empty_literal] = ACTIONS(8561), + [sym_date_literal] = ACTIONS(8563), + [anon_sym_POUND] = ACTIONS(8561), + }, + [STATE(4048)] = { + [sym_do_condition] = STATE(4375), + [sym_identifier] = ACTIONS(8170), + [sym_newline] = ACTIONS(8172), + [anon_sym_COLON] = ACTIONS(8172), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8170), + [aux_sym_frm_property_statement_token1] = ACTIONS(8170), + [anon_sym_DOT] = ACTIONS(8170), + [anon_sym_BANG] = ACTIONS(8172), + [aux_sym__attribute_identifier_token1] = ACTIONS(8170), + [aux_sym_option_statement_token3] = ACTIONS(8170), + [aux_sym_type_declaration_token1] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8170), + [aux_sym_enum_declaration_token1] = ACTIONS(8170), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8170), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8170), + [aux_sym_declare_function_statement_token1] = ACTIONS(8170), + [aux_sym_preprocessor_const_token1] = ACTIONS(8170), + [aux_sym__property_get_header_token1] = ACTIONS(8170), + [aux_sym_event_declaration_token1] = ACTIONS(8170), + [sym_static_modifier] = ACTIONS(8170), + [sym__dim_keyword] = ACTIONS(8170), + [sym__redim_keyword] = ACTIONS(8170), + [aux_sym_get_accessor_token1] = ACTIONS(8170), + [aux_sym_set_accessor_token1] = ACTIONS(8170), + [aux_sym_const_declaration_token1] = ACTIONS(8170), + [anon_sym_LPAREN] = ACTIONS(8172), + [aux_sym_as_type_clause_token2] = ACTIONS(8170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8170), + [aux_sym_visibility_token1] = ACTIONS(8170), + [aux_sym_visibility_token2] = ACTIONS(8170), + [aux_sym_elseif_fragment_token1] = ACTIONS(8170), + [aux_sym_else_fragment_token1] = ACTIONS(8170), + [aux_sym_select_statement_token1] = ACTIONS(8170), + [aux_sym__for_header_token1] = ACTIONS(8170), + [aux_sym_do_statement_token1] = ACTIONS(8170), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8170), + [aux_sym_exit_statement_token1] = ACTIONS(8170), + [sym_end_statement] = ACTIONS(8172), + [aux_sym_on_goto_statement_token1] = ACTIONS(8170), + [aux_sym_on_goto_statement_token2] = ACTIONS(8170), + [aux_sym_on_error_statement_token2] = ACTIONS(8170), + [sym__ambiguous_redim_statement] = ACTIONS(8172), + [aux_sym_erase_statement_token1] = ACTIONS(8170), + [aux_sym_open_statement_token1] = ACTIONS(8170), + [aux_sym_file_mode_token2] = ACTIONS(8170), + [aux_sym_file_access_token2] = ACTIONS(8170), + [aux_sym_file_lock_token2] = ACTIONS(8170), + [aux_sym_print_statement_token1] = ACTIONS(8170), + [anon_sym_PLUS] = ACTIONS(8172), + [anon_sym_DASH] = ACTIONS(8170), + [anon_sym_QMARK] = ACTIONS(8172), + [aux_sym_close_statement_token1] = ACTIONS(8170), + [aux_sym_put_statement_token1] = ACTIONS(8170), + [aux_sym_unlock_statement_token1] = ACTIONS(8170), + [aux_sym_seek_statement_token1] = ACTIONS(8170), + [sym_reset_statement] = ACTIONS(8170), + [aux_sym_raise_event_statement_token1] = ACTIONS(8170), + [sym_stop_statement] = ACTIONS(8170), + [sym_beep_statement] = ACTIONS(8170), + [aux_sym_unload_statement_token1] = ACTIONS(8170), + [aux_sym_def_type_statement_token1] = ACTIONS(8170), + [aux_sym_def_type_statement_token2] = ACTIONS(8170), + [aux_sym_def_type_statement_token3] = ACTIONS(8170), + [aux_sym_def_type_statement_token4] = ACTIONS(8170), + [aux_sym_def_type_statement_token5] = ACTIONS(8170), + [aux_sym_def_type_statement_token6] = ACTIONS(8170), + [aux_sym_def_type_statement_token7] = ACTIONS(8170), + [aux_sym_def_type_statement_token8] = ACTIONS(8170), + [aux_sym_def_type_statement_token9] = ACTIONS(8170), + [aux_sym_def_type_statement_token10] = ACTIONS(8170), + [aux_sym_def_type_statement_token11] = ACTIONS(8170), + [aux_sym_def_type_statement_token12] = ACTIONS(8170), + [aux_sym_def_type_statement_token13] = ACTIONS(8170), + [aux_sym_def_type_statement_token14] = ACTIONS(8170), + [aux_sym_call_statement_token1] = ACTIONS(8170), + [sym__ambiguous_call_statement] = ACTIONS(8170), + [aux_sym_addressof_expression_token1] = ACTIONS(8170), + [aux_sym_type_of_expression_token1] = ACTIONS(8170), + [aux_sym_unary_expression_token1] = ACTIONS(8170), + [sym_string_literal] = ACTIONS(8172), + [sym_number_literal] = ACTIONS(8172), + [aux_sym_boolean_literal_token1] = ACTIONS(8170), + [aux_sym_boolean_literal_token2] = ACTIONS(8170), + [sym_nothing_literal] = ACTIONS(8170), + [sym_null_literal] = ACTIONS(8170), + [sym_empty_literal] = ACTIONS(8170), + [sym_date_literal] = ACTIONS(8172), + [anon_sym_POUND] = ACTIONS(8170), + }, + [STATE(4049)] = { + [sym_do_condition] = STATE(4377), + [sym_identifier] = ACTIONS(8140), + [sym_newline] = ACTIONS(8142), + [anon_sym_COLON] = ACTIONS(8142), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8140), + [aux_sym_frm_property_statement_token1] = ACTIONS(8140), + [anon_sym_DOT] = ACTIONS(8140), + [anon_sym_BANG] = ACTIONS(8142), + [aux_sym__attribute_identifier_token1] = ACTIONS(8140), + [aux_sym_option_statement_token3] = ACTIONS(8140), + [aux_sym_type_declaration_token1] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8140), + [aux_sym_enum_declaration_token1] = ACTIONS(8140), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8140), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8140), + [aux_sym_declare_function_statement_token1] = ACTIONS(8140), + [aux_sym_preprocessor_const_token1] = ACTIONS(8140), + [aux_sym__property_get_header_token1] = ACTIONS(8140), + [aux_sym_event_declaration_token1] = ACTIONS(8140), + [sym_static_modifier] = ACTIONS(8140), + [sym__dim_keyword] = ACTIONS(8140), + [sym__redim_keyword] = ACTIONS(8140), + [aux_sym_get_accessor_token1] = ACTIONS(8140), + [aux_sym_set_accessor_token1] = ACTIONS(8140), + [aux_sym_const_declaration_token1] = ACTIONS(8140), + [anon_sym_LPAREN] = ACTIONS(8142), + [aux_sym_as_type_clause_token2] = ACTIONS(8140), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8140), + [aux_sym_visibility_token1] = ACTIONS(8140), + [aux_sym_visibility_token2] = ACTIONS(8140), + [aux_sym_elseif_fragment_token1] = ACTIONS(8140), + [aux_sym_else_fragment_token1] = ACTIONS(8140), + [aux_sym_select_statement_token1] = ACTIONS(8140), + [aux_sym__for_header_token1] = ACTIONS(8140), + [aux_sym_do_statement_token1] = ACTIONS(8140), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8140), + [aux_sym_exit_statement_token1] = ACTIONS(8140), + [sym_end_statement] = ACTIONS(8142), + [aux_sym_on_goto_statement_token1] = ACTIONS(8140), + [aux_sym_on_goto_statement_token2] = ACTIONS(8140), + [aux_sym_on_error_statement_token2] = ACTIONS(8140), + [sym__ambiguous_redim_statement] = ACTIONS(8142), + [aux_sym_erase_statement_token1] = ACTIONS(8140), + [aux_sym_open_statement_token1] = ACTIONS(8140), + [aux_sym_file_mode_token2] = ACTIONS(8140), + [aux_sym_file_access_token2] = ACTIONS(8140), + [aux_sym_file_lock_token2] = ACTIONS(8140), + [aux_sym_print_statement_token1] = ACTIONS(8140), + [anon_sym_PLUS] = ACTIONS(8142), + [anon_sym_DASH] = ACTIONS(8140), + [anon_sym_QMARK] = ACTIONS(8142), + [aux_sym_close_statement_token1] = ACTIONS(8140), + [aux_sym_put_statement_token1] = ACTIONS(8140), + [aux_sym_unlock_statement_token1] = ACTIONS(8140), + [aux_sym_seek_statement_token1] = ACTIONS(8140), + [sym_reset_statement] = ACTIONS(8140), + [aux_sym_raise_event_statement_token1] = ACTIONS(8140), + [sym_stop_statement] = ACTIONS(8140), + [sym_beep_statement] = ACTIONS(8140), + [aux_sym_unload_statement_token1] = ACTIONS(8140), + [aux_sym_def_type_statement_token1] = ACTIONS(8140), + [aux_sym_def_type_statement_token2] = ACTIONS(8140), + [aux_sym_def_type_statement_token3] = ACTIONS(8140), + [aux_sym_def_type_statement_token4] = ACTIONS(8140), + [aux_sym_def_type_statement_token5] = ACTIONS(8140), + [aux_sym_def_type_statement_token6] = ACTIONS(8140), + [aux_sym_def_type_statement_token7] = ACTIONS(8140), + [aux_sym_def_type_statement_token8] = ACTIONS(8140), + [aux_sym_def_type_statement_token9] = ACTIONS(8140), + [aux_sym_def_type_statement_token10] = ACTIONS(8140), + [aux_sym_def_type_statement_token11] = ACTIONS(8140), + [aux_sym_def_type_statement_token12] = ACTIONS(8140), + [aux_sym_def_type_statement_token13] = ACTIONS(8140), + [aux_sym_def_type_statement_token14] = ACTIONS(8140), + [aux_sym_call_statement_token1] = ACTIONS(8140), + [sym__ambiguous_call_statement] = ACTIONS(8140), + [aux_sym_addressof_expression_token1] = ACTIONS(8140), + [aux_sym_type_of_expression_token1] = ACTIONS(8140), + [aux_sym_unary_expression_token1] = ACTIONS(8140), + [sym_string_literal] = ACTIONS(8142), + [sym_number_literal] = ACTIONS(8142), + [aux_sym_boolean_literal_token1] = ACTIONS(8140), + [aux_sym_boolean_literal_token2] = ACTIONS(8140), + [sym_nothing_literal] = ACTIONS(8140), + [sym_null_literal] = ACTIONS(8140), + [sym_empty_literal] = ACTIONS(8140), + [sym_date_literal] = ACTIONS(8142), + [anon_sym_POUND] = ACTIONS(8140), + }, + [STATE(4050)] = { + [sym_identifier] = ACTIONS(9542), + [sym_newline] = ACTIONS(9544), + [anon_sym_COLON] = ACTIONS(9544), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9542), + [aux_sym_frm_property_statement_token1] = ACTIONS(9542), + [anon_sym_DOT] = ACTIONS(9542), + [anon_sym_BANG] = ACTIONS(9544), + [aux_sym__attribute_identifier_token1] = ACTIONS(9542), + [aux_sym_option_statement_token3] = ACTIONS(9542), + [aux_sym_type_declaration_token1] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9542), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9542), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9542), + [aux_sym_enum_declaration_token1] = ACTIONS(9542), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9542), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9542), + [aux_sym_declare_function_statement_token1] = ACTIONS(9542), + [aux_sym_preprocessor_const_token1] = ACTIONS(9542), + [aux_sym__property_get_header_token1] = ACTIONS(9542), + [aux_sym_event_declaration_token1] = ACTIONS(9542), + [sym_static_modifier] = ACTIONS(9542), + [sym__dim_keyword] = ACTIONS(9542), + [sym__redim_keyword] = ACTIONS(9542), + [aux_sym_get_accessor_token1] = ACTIONS(9542), + [aux_sym_set_accessor_token1] = ACTIONS(9542), + [aux_sym_const_declaration_token1] = ACTIONS(9542), + [anon_sym_LPAREN] = ACTIONS(9544), + [aux_sym_as_type_clause_token2] = ACTIONS(9542), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9542), + [aux_sym_visibility_token1] = ACTIONS(9542), + [aux_sym_visibility_token2] = ACTIONS(9542), + [aux_sym_elseif_fragment_token1] = ACTIONS(9542), + [aux_sym_else_fragment_token1] = ACTIONS(9542), + [aux_sym_select_statement_token1] = ACTIONS(9542), + [aux_sym__for_header_token1] = ACTIONS(9542), + [aux_sym_do_statement_token1] = ACTIONS(9542), + [aux_sym_do_condition_token1] = ACTIONS(9542), + [aux_sym_with_statement_token1] = ACTIONS(9542), + [aux_sym_exit_statement_token1] = ACTIONS(9542), + [sym_end_statement] = ACTIONS(9544), + [aux_sym_on_goto_statement_token1] = ACTIONS(9542), + [aux_sym_on_goto_statement_token2] = ACTIONS(9542), + [aux_sym_on_error_statement_token2] = ACTIONS(9542), + [sym__ambiguous_redim_statement] = ACTIONS(9544), + [aux_sym_erase_statement_token1] = ACTIONS(9542), + [aux_sym_open_statement_token1] = ACTIONS(9542), + [aux_sym_file_mode_token2] = ACTIONS(9542), + [aux_sym_file_access_token2] = ACTIONS(9542), + [aux_sym_file_lock_token2] = ACTIONS(9542), + [aux_sym_print_statement_token1] = ACTIONS(9542), + [anon_sym_PLUS] = ACTIONS(9544), + [anon_sym_DASH] = ACTIONS(9542), + [anon_sym_QMARK] = ACTIONS(9544), + [aux_sym_close_statement_token1] = ACTIONS(9542), + [aux_sym_put_statement_token1] = ACTIONS(9542), + [aux_sym_unlock_statement_token1] = ACTIONS(9542), + [aux_sym_seek_statement_token1] = ACTIONS(9542), + [sym_reset_statement] = ACTIONS(9542), + [aux_sym_raise_event_statement_token1] = ACTIONS(9542), + [sym_stop_statement] = ACTIONS(9542), + [sym_beep_statement] = ACTIONS(9542), + [aux_sym_unload_statement_token1] = ACTIONS(9542), + [aux_sym_def_type_statement_token1] = ACTIONS(9542), + [aux_sym_def_type_statement_token2] = ACTIONS(9542), + [aux_sym_def_type_statement_token3] = ACTIONS(9542), + [aux_sym_def_type_statement_token4] = ACTIONS(9542), + [aux_sym_def_type_statement_token5] = ACTIONS(9542), + [aux_sym_def_type_statement_token6] = ACTIONS(9542), + [aux_sym_def_type_statement_token7] = ACTIONS(9542), + [aux_sym_def_type_statement_token8] = ACTIONS(9542), + [aux_sym_def_type_statement_token9] = ACTIONS(9542), + [aux_sym_def_type_statement_token10] = ACTIONS(9542), + [aux_sym_def_type_statement_token11] = ACTIONS(9542), + [aux_sym_def_type_statement_token12] = ACTIONS(9542), + [aux_sym_def_type_statement_token13] = ACTIONS(9542), + [aux_sym_def_type_statement_token14] = ACTIONS(9542), + [aux_sym_call_statement_token1] = ACTIONS(9542), + [sym__ambiguous_call_statement] = ACTIONS(9542), + [aux_sym_addressof_expression_token1] = ACTIONS(9542), + [aux_sym_type_of_expression_token1] = ACTIONS(9542), + [aux_sym_unary_expression_token1] = ACTIONS(9542), + [sym_string_literal] = ACTIONS(9544), + [sym_number_literal] = ACTIONS(9544), + [aux_sym_boolean_literal_token1] = ACTIONS(9542), + [aux_sym_boolean_literal_token2] = ACTIONS(9542), + [sym_nothing_literal] = ACTIONS(9542), + [sym_null_literal] = ACTIONS(9542), + [sym_empty_literal] = ACTIONS(9542), + [sym_date_literal] = ACTIONS(9544), + [anon_sym_POUND] = ACTIONS(9542), + }, + [STATE(4051)] = { + [sym_identifier] = ACTIONS(9546), + [sym_newline] = ACTIONS(9548), + [anon_sym_COLON] = ACTIONS(9548), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9546), + [aux_sym_frm_property_statement_token1] = ACTIONS(9546), + [anon_sym_DOT] = ACTIONS(9546), + [anon_sym_BANG] = ACTIONS(9548), + [aux_sym__attribute_identifier_token1] = ACTIONS(9546), + [aux_sym_option_statement_token3] = ACTIONS(9546), + [aux_sym_type_declaration_token1] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9546), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9546), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9546), + [aux_sym_enum_declaration_token1] = ACTIONS(9546), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9546), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9546), + [aux_sym_declare_function_statement_token1] = ACTIONS(9546), + [aux_sym_preprocessor_const_token1] = ACTIONS(9546), + [aux_sym__property_get_header_token1] = ACTIONS(9546), + [aux_sym_event_declaration_token1] = ACTIONS(9546), + [sym_static_modifier] = ACTIONS(9546), + [sym__dim_keyword] = ACTIONS(9546), + [sym__redim_keyword] = ACTIONS(9546), + [aux_sym_get_accessor_token1] = ACTIONS(9546), + [aux_sym_set_accessor_token1] = ACTIONS(9546), + [aux_sym_const_declaration_token1] = ACTIONS(9546), + [anon_sym_LPAREN] = ACTIONS(9548), + [aux_sym_as_type_clause_token2] = ACTIONS(9546), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9546), + [aux_sym_visibility_token1] = ACTIONS(9546), + [aux_sym_visibility_token2] = ACTIONS(9546), + [aux_sym_elseif_fragment_token1] = ACTIONS(9546), + [aux_sym_else_fragment_token1] = ACTIONS(9546), + [aux_sym_select_statement_token1] = ACTIONS(9546), + [aux_sym__for_header_token1] = ACTIONS(9546), + [aux_sym_do_statement_token1] = ACTIONS(9546), + [aux_sym_do_condition_token1] = ACTIONS(9546), + [aux_sym_with_statement_token1] = ACTIONS(9546), + [aux_sym_exit_statement_token1] = ACTIONS(9546), + [sym_end_statement] = ACTIONS(9548), + [aux_sym_on_goto_statement_token1] = ACTIONS(9546), + [aux_sym_on_goto_statement_token2] = ACTIONS(9546), + [aux_sym_on_error_statement_token2] = ACTIONS(9546), + [sym__ambiguous_redim_statement] = ACTIONS(9548), + [aux_sym_erase_statement_token1] = ACTIONS(9546), + [aux_sym_open_statement_token1] = ACTIONS(9546), + [aux_sym_file_mode_token2] = ACTIONS(9546), + [aux_sym_file_access_token2] = ACTIONS(9546), + [aux_sym_file_lock_token2] = ACTIONS(9546), + [aux_sym_print_statement_token1] = ACTIONS(9546), + [anon_sym_PLUS] = ACTIONS(9548), + [anon_sym_DASH] = ACTIONS(9546), + [anon_sym_QMARK] = ACTIONS(9548), + [aux_sym_close_statement_token1] = ACTIONS(9546), + [aux_sym_put_statement_token1] = ACTIONS(9546), + [aux_sym_unlock_statement_token1] = ACTIONS(9546), + [aux_sym_seek_statement_token1] = ACTIONS(9546), + [sym_reset_statement] = ACTIONS(9546), + [aux_sym_raise_event_statement_token1] = ACTIONS(9546), + [sym_stop_statement] = ACTIONS(9546), + [sym_beep_statement] = ACTIONS(9546), + [aux_sym_unload_statement_token1] = ACTIONS(9546), + [aux_sym_def_type_statement_token1] = ACTIONS(9546), + [aux_sym_def_type_statement_token2] = ACTIONS(9546), + [aux_sym_def_type_statement_token3] = ACTIONS(9546), + [aux_sym_def_type_statement_token4] = ACTIONS(9546), + [aux_sym_def_type_statement_token5] = ACTIONS(9546), + [aux_sym_def_type_statement_token6] = ACTIONS(9546), + [aux_sym_def_type_statement_token7] = ACTIONS(9546), + [aux_sym_def_type_statement_token8] = ACTIONS(9546), + [aux_sym_def_type_statement_token9] = ACTIONS(9546), + [aux_sym_def_type_statement_token10] = ACTIONS(9546), + [aux_sym_def_type_statement_token11] = ACTIONS(9546), + [aux_sym_def_type_statement_token12] = ACTIONS(9546), + [aux_sym_def_type_statement_token13] = ACTIONS(9546), + [aux_sym_def_type_statement_token14] = ACTIONS(9546), + [aux_sym_call_statement_token1] = ACTIONS(9546), + [sym__ambiguous_call_statement] = ACTIONS(9546), + [aux_sym_addressof_expression_token1] = ACTIONS(9546), + [aux_sym_type_of_expression_token1] = ACTIONS(9546), + [aux_sym_unary_expression_token1] = ACTIONS(9546), + [sym_string_literal] = ACTIONS(9548), + [sym_number_literal] = ACTIONS(9548), + [aux_sym_boolean_literal_token1] = ACTIONS(9546), + [aux_sym_boolean_literal_token2] = ACTIONS(9546), + [sym_nothing_literal] = ACTIONS(9546), + [sym_null_literal] = ACTIONS(9546), + [sym_empty_literal] = ACTIONS(9546), + [sym_date_literal] = ACTIONS(9548), + [anon_sym_POUND] = ACTIONS(9546), + }, + [STATE(4052)] = { + [aux_sym_erase_statement_repeat1] = STATE(4075), + [sym_identifier] = ACTIONS(8320), + [sym_newline] = ACTIONS(8322), + [anon_sym_COLON] = ACTIONS(8322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8320), + [aux_sym_frm_property_statement_token1] = ACTIONS(8320), + [anon_sym_DOT] = ACTIONS(8320), + [anon_sym_BANG] = ACTIONS(8322), + [aux_sym__attribute_identifier_token1] = ACTIONS(8320), + [aux_sym_option_statement_token3] = ACTIONS(8320), + [aux_sym_type_declaration_token1] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8320), + [aux_sym_enum_declaration_token1] = ACTIONS(8320), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8320), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8320), + [aux_sym_declare_function_statement_token1] = ACTIONS(8320), + [aux_sym_preprocessor_const_token1] = ACTIONS(8320), + [aux_sym__property_get_header_token1] = ACTIONS(8320), + [aux_sym_event_declaration_token1] = ACTIONS(8320), + [sym_static_modifier] = ACTIONS(8320), + [sym__dim_keyword] = ACTIONS(8320), + [sym__redim_keyword] = ACTIONS(8320), + [aux_sym_get_accessor_token1] = ACTIONS(8320), + [aux_sym_set_accessor_token1] = ACTIONS(8320), + [anon_sym_COMMA] = ACTIONS(9482), + [aux_sym_const_declaration_token1] = ACTIONS(8320), + [anon_sym_LPAREN] = ACTIONS(8322), + [aux_sym_as_type_clause_token2] = ACTIONS(8320), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8320), + [aux_sym_visibility_token1] = ACTIONS(8320), + [aux_sym_visibility_token2] = ACTIONS(8320), + [aux_sym_elseif_fragment_token1] = ACTIONS(8320), + [aux_sym_else_fragment_token1] = ACTIONS(8320), + [aux_sym_select_statement_token1] = ACTIONS(8320), + [aux_sym__for_header_token1] = ACTIONS(8320), + [aux_sym_do_statement_token1] = ACTIONS(8320), + [aux_sym_do_condition_token1] = ACTIONS(8320), + [aux_sym_with_statement_token1] = ACTIONS(8320), + [aux_sym_exit_statement_token1] = ACTIONS(8320), + [sym_end_statement] = ACTIONS(8322), + [aux_sym_on_goto_statement_token1] = ACTIONS(8320), + [aux_sym_on_goto_statement_token2] = ACTIONS(8320), + [aux_sym_on_error_statement_token2] = ACTIONS(8320), + [sym__ambiguous_redim_statement] = ACTIONS(8322), + [aux_sym_erase_statement_token1] = ACTIONS(8320), + [aux_sym_open_statement_token1] = ACTIONS(8320), + [aux_sym_file_mode_token2] = ACTIONS(8320), + [aux_sym_file_access_token2] = ACTIONS(8320), + [aux_sym_file_lock_token2] = ACTIONS(8320), + [aux_sym_print_statement_token1] = ACTIONS(8320), + [anon_sym_PLUS] = ACTIONS(8322), + [anon_sym_DASH] = ACTIONS(8320), + [anon_sym_QMARK] = ACTIONS(8322), + [aux_sym_close_statement_token1] = ACTIONS(8320), + [aux_sym_put_statement_token1] = ACTIONS(8320), + [aux_sym_unlock_statement_token1] = ACTIONS(8320), + [aux_sym_seek_statement_token1] = ACTIONS(8320), + [sym_reset_statement] = ACTIONS(8320), + [aux_sym_raise_event_statement_token1] = ACTIONS(8320), + [sym_stop_statement] = ACTIONS(8320), + [sym_beep_statement] = ACTIONS(8320), + [aux_sym_unload_statement_token1] = ACTIONS(8320), + [aux_sym_def_type_statement_token1] = ACTIONS(8320), + [aux_sym_def_type_statement_token2] = ACTIONS(8320), + [aux_sym_def_type_statement_token3] = ACTIONS(8320), + [aux_sym_def_type_statement_token4] = ACTIONS(8320), + [aux_sym_def_type_statement_token5] = ACTIONS(8320), + [aux_sym_def_type_statement_token6] = ACTIONS(8320), + [aux_sym_def_type_statement_token7] = ACTIONS(8320), + [aux_sym_def_type_statement_token8] = ACTIONS(8320), + [aux_sym_def_type_statement_token9] = ACTIONS(8320), + [aux_sym_def_type_statement_token10] = ACTIONS(8320), + [aux_sym_def_type_statement_token11] = ACTIONS(8320), + [aux_sym_def_type_statement_token12] = ACTIONS(8320), + [aux_sym_def_type_statement_token13] = ACTIONS(8320), + [aux_sym_def_type_statement_token14] = ACTIONS(8320), + [aux_sym_call_statement_token1] = ACTIONS(8320), + [sym__ambiguous_call_statement] = ACTIONS(8320), + [aux_sym_addressof_expression_token1] = ACTIONS(8320), + [aux_sym_type_of_expression_token1] = ACTIONS(8320), + [aux_sym_unary_expression_token1] = ACTIONS(8320), + [sym_string_literal] = ACTIONS(8322), + [sym_number_literal] = ACTIONS(8322), + [aux_sym_boolean_literal_token1] = ACTIONS(8320), + [aux_sym_boolean_literal_token2] = ACTIONS(8320), + [sym_nothing_literal] = ACTIONS(8320), + [sym_null_literal] = ACTIONS(8320), + [sym_empty_literal] = ACTIONS(8320), + [sym_date_literal] = ACTIONS(8322), + [anon_sym_POUND] = ACTIONS(8320), + }, + [STATE(4053)] = { + [aux_sym_close_statement_repeat1] = STATE(4088), + [sym_identifier] = ACTIONS(8521), + [sym_newline] = ACTIONS(8523), + [anon_sym_COLON] = ACTIONS(8523), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8521), + [aux_sym_frm_property_statement_token1] = ACTIONS(8521), + [anon_sym_DOT] = ACTIONS(8521), + [anon_sym_BANG] = ACTIONS(8523), + [aux_sym__attribute_identifier_token1] = ACTIONS(8521), + [aux_sym_option_statement_token3] = ACTIONS(8521), + [aux_sym_type_declaration_token1] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8521), + [aux_sym_enum_declaration_token1] = ACTIONS(8521), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8521), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8521), + [aux_sym_declare_function_statement_token1] = ACTIONS(8521), + [aux_sym_preprocessor_const_token1] = ACTIONS(8521), + [aux_sym__property_get_header_token1] = ACTIONS(8521), + [aux_sym_event_declaration_token1] = ACTIONS(8521), + [sym_static_modifier] = ACTIONS(8521), + [sym__dim_keyword] = ACTIONS(8521), + [sym__redim_keyword] = ACTIONS(8521), + [aux_sym_get_accessor_token1] = ACTIONS(8521), + [aux_sym_set_accessor_token1] = ACTIONS(8521), + [anon_sym_COMMA] = ACTIONS(9504), + [aux_sym_const_declaration_token1] = ACTIONS(8521), + [anon_sym_LPAREN] = ACTIONS(8523), + [aux_sym_as_type_clause_token2] = ACTIONS(8521), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8521), + [aux_sym_visibility_token1] = ACTIONS(8521), + [aux_sym_visibility_token2] = ACTIONS(8521), + [aux_sym_elseif_fragment_token1] = ACTIONS(8521), + [aux_sym_else_fragment_token1] = ACTIONS(8521), + [aux_sym_select_statement_token1] = ACTIONS(8521), + [aux_sym__for_header_token1] = ACTIONS(8521), + [aux_sym_do_statement_token1] = ACTIONS(8521), + [aux_sym_do_condition_token1] = ACTIONS(8521), + [aux_sym_with_statement_token1] = ACTIONS(8521), + [aux_sym_exit_statement_token1] = ACTIONS(8521), + [sym_end_statement] = ACTIONS(8523), + [aux_sym_on_goto_statement_token1] = ACTIONS(8521), + [aux_sym_on_goto_statement_token2] = ACTIONS(8521), + [aux_sym_on_error_statement_token2] = ACTIONS(8521), + [sym__ambiguous_redim_statement] = ACTIONS(8523), + [aux_sym_erase_statement_token1] = ACTIONS(8521), + [aux_sym_open_statement_token1] = ACTIONS(8521), + [aux_sym_file_mode_token2] = ACTIONS(8521), + [aux_sym_file_access_token2] = ACTIONS(8521), + [aux_sym_file_lock_token2] = ACTIONS(8521), + [aux_sym_print_statement_token1] = ACTIONS(8521), + [anon_sym_PLUS] = ACTIONS(8523), + [anon_sym_DASH] = ACTIONS(8521), + [anon_sym_QMARK] = ACTIONS(8523), + [aux_sym_close_statement_token1] = ACTIONS(8521), + [aux_sym_put_statement_token1] = ACTIONS(8521), + [aux_sym_unlock_statement_token1] = ACTIONS(8521), + [aux_sym_seek_statement_token1] = ACTIONS(8521), + [sym_reset_statement] = ACTIONS(8521), + [aux_sym_raise_event_statement_token1] = ACTIONS(8521), + [sym_stop_statement] = ACTIONS(8521), + [sym_beep_statement] = ACTIONS(8521), + [aux_sym_unload_statement_token1] = ACTIONS(8521), + [aux_sym_def_type_statement_token1] = ACTIONS(8521), + [aux_sym_def_type_statement_token2] = ACTIONS(8521), + [aux_sym_def_type_statement_token3] = ACTIONS(8521), + [aux_sym_def_type_statement_token4] = ACTIONS(8521), + [aux_sym_def_type_statement_token5] = ACTIONS(8521), + [aux_sym_def_type_statement_token6] = ACTIONS(8521), + [aux_sym_def_type_statement_token7] = ACTIONS(8521), + [aux_sym_def_type_statement_token8] = ACTIONS(8521), + [aux_sym_def_type_statement_token9] = ACTIONS(8521), + [aux_sym_def_type_statement_token10] = ACTIONS(8521), + [aux_sym_def_type_statement_token11] = ACTIONS(8521), + [aux_sym_def_type_statement_token12] = ACTIONS(8521), + [aux_sym_def_type_statement_token13] = ACTIONS(8521), + [aux_sym_def_type_statement_token14] = ACTIONS(8521), + [aux_sym_call_statement_token1] = ACTIONS(8521), + [sym__ambiguous_call_statement] = ACTIONS(8521), + [aux_sym_addressof_expression_token1] = ACTIONS(8521), + [aux_sym_type_of_expression_token1] = ACTIONS(8521), + [aux_sym_unary_expression_token1] = ACTIONS(8521), + [sym_string_literal] = ACTIONS(8523), + [sym_number_literal] = ACTIONS(8523), + [aux_sym_boolean_literal_token1] = ACTIONS(8521), + [aux_sym_boolean_literal_token2] = ACTIONS(8521), + [sym_nothing_literal] = ACTIONS(8521), + [sym_null_literal] = ACTIONS(8521), + [sym_empty_literal] = ACTIONS(8521), + [sym_date_literal] = ACTIONS(8523), + [anon_sym_POUND] = ACTIONS(8521), + }, + [STATE(4054)] = { + [sym_identifier] = ACTIONS(8903), + [sym_newline] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8903), + [aux_sym_frm_property_statement_token1] = ACTIONS(8903), + [anon_sym_DOT] = ACTIONS(8903), + [anon_sym_BANG] = ACTIONS(8905), + [aux_sym__attribute_identifier_token1] = ACTIONS(8903), + [aux_sym_option_statement_token3] = ACTIONS(8903), + [aux_sym_type_declaration_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8903), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8903), + [aux_sym_enum_declaration_token1] = ACTIONS(8903), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8903), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8903), + [aux_sym_declare_function_statement_token1] = ACTIONS(8903), + [aux_sym_preprocessor_const_token1] = ACTIONS(8903), + [aux_sym__property_get_header_token1] = ACTIONS(8903), + [aux_sym_event_declaration_token1] = ACTIONS(8903), + [sym_static_modifier] = ACTIONS(8903), + [sym__dim_keyword] = ACTIONS(8903), + [sym__redim_keyword] = ACTIONS(8903), + [aux_sym_get_accessor_token1] = ACTIONS(8903), + [aux_sym_set_accessor_token1] = ACTIONS(8903), + [aux_sym_const_declaration_token1] = ACTIONS(8903), + [anon_sym_LPAREN] = ACTIONS(8905), + [aux_sym_as_type_clause_token2] = ACTIONS(8903), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8903), + [aux_sym_visibility_token1] = ACTIONS(8903), + [aux_sym_visibility_token2] = ACTIONS(8903), + [aux_sym_elseif_fragment_token1] = ACTIONS(8903), + [aux_sym_else_fragment_token1] = ACTIONS(8903), + [aux_sym_select_statement_token1] = ACTIONS(8903), + [aux_sym__for_header_token1] = ACTIONS(8903), + [aux_sym_do_statement_token1] = ACTIONS(8903), + [aux_sym_do_condition_token1] = ACTIONS(8903), + [aux_sym_with_statement_token1] = ACTIONS(8903), + [aux_sym_exit_statement_token1] = ACTIONS(8903), + [sym_end_statement] = ACTIONS(8905), + [aux_sym_on_goto_statement_token1] = ACTIONS(8903), + [aux_sym_on_goto_statement_token2] = ACTIONS(8903), + [aux_sym_on_error_statement_token2] = ACTIONS(8903), + [sym__ambiguous_redim_statement] = ACTIONS(8905), + [aux_sym_erase_statement_token1] = ACTIONS(8903), + [aux_sym_open_statement_token1] = ACTIONS(8903), + [aux_sym_file_mode_token2] = ACTIONS(8903), + [aux_sym_file_access_token2] = ACTIONS(8903), + [aux_sym_file_lock_token2] = ACTIONS(8903), + [aux_sym_print_statement_token1] = ACTIONS(8903), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_DASH] = ACTIONS(8903), + [anon_sym_QMARK] = ACTIONS(8905), + [aux_sym_close_statement_token1] = ACTIONS(8903), + [aux_sym_put_statement_token1] = ACTIONS(8903), + [aux_sym_unlock_statement_token1] = ACTIONS(8903), + [aux_sym_seek_statement_token1] = ACTIONS(8903), + [sym_reset_statement] = ACTIONS(8903), + [aux_sym_raise_event_statement_token1] = ACTIONS(8903), + [sym_stop_statement] = ACTIONS(8903), + [sym_beep_statement] = ACTIONS(8903), + [aux_sym_unload_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token2] = ACTIONS(8903), + [aux_sym_def_type_statement_token3] = ACTIONS(8903), + [aux_sym_def_type_statement_token4] = ACTIONS(8903), + [aux_sym_def_type_statement_token5] = ACTIONS(8903), + [aux_sym_def_type_statement_token6] = ACTIONS(8903), + [aux_sym_def_type_statement_token7] = ACTIONS(8903), + [aux_sym_def_type_statement_token8] = ACTIONS(8903), + [aux_sym_def_type_statement_token9] = ACTIONS(8903), + [aux_sym_def_type_statement_token10] = ACTIONS(8903), + [aux_sym_def_type_statement_token11] = ACTIONS(8903), + [aux_sym_def_type_statement_token12] = ACTIONS(8903), + [aux_sym_def_type_statement_token13] = ACTIONS(8903), + [aux_sym_def_type_statement_token14] = ACTIONS(8903), + [aux_sym_call_statement_token1] = ACTIONS(8903), + [sym__ambiguous_call_statement] = ACTIONS(8903), + [aux_sym_addressof_expression_token1] = ACTIONS(8903), + [aux_sym_type_of_expression_token1] = ACTIONS(8903), + [aux_sym_unary_expression_token1] = ACTIONS(8903), + [sym_string_literal] = ACTIONS(8905), + [sym_number_literal] = ACTIONS(8905), + [aux_sym_boolean_literal_token1] = ACTIONS(8903), + [aux_sym_boolean_literal_token2] = ACTIONS(8903), + [sym_nothing_literal] = ACTIONS(8903), + [sym_null_literal] = ACTIONS(8903), + [sym_empty_literal] = ACTIONS(8903), + [sym_date_literal] = ACTIONS(8905), + [anon_sym_POUND] = ACTIONS(8903), + }, + [STATE(4055)] = { + [sym_identifier] = ACTIONS(8911), + [sym_newline] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8911), + [aux_sym_frm_property_statement_token1] = ACTIONS(8911), + [anon_sym_DOT] = ACTIONS(8911), + [anon_sym_BANG] = ACTIONS(8913), + [aux_sym__attribute_identifier_token1] = ACTIONS(8911), + [aux_sym_option_statement_token3] = ACTIONS(8911), + [aux_sym_type_declaration_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8911), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8911), + [aux_sym_enum_declaration_token1] = ACTIONS(8911), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8911), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8911), + [aux_sym_declare_function_statement_token1] = ACTIONS(8911), + [aux_sym_preprocessor_const_token1] = ACTIONS(8911), + [aux_sym__property_get_header_token1] = ACTIONS(8911), + [aux_sym_event_declaration_token1] = ACTIONS(8911), + [sym_static_modifier] = ACTIONS(8911), + [sym__dim_keyword] = ACTIONS(8911), + [sym__redim_keyword] = ACTIONS(8911), + [aux_sym_get_accessor_token1] = ACTIONS(8911), + [aux_sym_set_accessor_token1] = ACTIONS(8911), + [aux_sym_const_declaration_token1] = ACTIONS(8911), + [anon_sym_LPAREN] = ACTIONS(8913), + [aux_sym_as_type_clause_token2] = ACTIONS(8911), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8911), + [aux_sym_visibility_token1] = ACTIONS(8911), + [aux_sym_visibility_token2] = ACTIONS(8911), + [aux_sym_elseif_fragment_token1] = ACTIONS(8911), + [aux_sym_else_fragment_token1] = ACTIONS(8911), + [aux_sym_select_statement_token1] = ACTIONS(8911), + [aux_sym__for_header_token1] = ACTIONS(8911), + [aux_sym_do_statement_token1] = ACTIONS(8911), + [aux_sym_do_condition_token1] = ACTIONS(8911), + [aux_sym_with_statement_token1] = ACTIONS(8911), + [aux_sym_exit_statement_token1] = ACTIONS(8911), + [sym_end_statement] = ACTIONS(8913), + [aux_sym_on_goto_statement_token1] = ACTIONS(8911), + [aux_sym_on_goto_statement_token2] = ACTIONS(8911), + [aux_sym_on_error_statement_token2] = ACTIONS(8911), + [sym__ambiguous_redim_statement] = ACTIONS(8913), + [aux_sym_erase_statement_token1] = ACTIONS(8911), + [aux_sym_open_statement_token1] = ACTIONS(8911), + [aux_sym_file_mode_token2] = ACTIONS(8911), + [aux_sym_file_access_token2] = ACTIONS(8911), + [aux_sym_file_lock_token2] = ACTIONS(8911), + [aux_sym_print_statement_token1] = ACTIONS(8911), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_DASH] = ACTIONS(8911), + [anon_sym_QMARK] = ACTIONS(8913), + [aux_sym_close_statement_token1] = ACTIONS(8911), + [aux_sym_put_statement_token1] = ACTIONS(8911), + [aux_sym_unlock_statement_token1] = ACTIONS(8911), + [aux_sym_seek_statement_token1] = ACTIONS(8911), + [sym_reset_statement] = ACTIONS(8911), + [aux_sym_raise_event_statement_token1] = ACTIONS(8911), + [sym_stop_statement] = ACTIONS(8911), + [sym_beep_statement] = ACTIONS(8911), + [aux_sym_unload_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token2] = ACTIONS(8911), + [aux_sym_def_type_statement_token3] = ACTIONS(8911), + [aux_sym_def_type_statement_token4] = ACTIONS(8911), + [aux_sym_def_type_statement_token5] = ACTIONS(8911), + [aux_sym_def_type_statement_token6] = ACTIONS(8911), + [aux_sym_def_type_statement_token7] = ACTIONS(8911), + [aux_sym_def_type_statement_token8] = ACTIONS(8911), + [aux_sym_def_type_statement_token9] = ACTIONS(8911), + [aux_sym_def_type_statement_token10] = ACTIONS(8911), + [aux_sym_def_type_statement_token11] = ACTIONS(8911), + [aux_sym_def_type_statement_token12] = ACTIONS(8911), + [aux_sym_def_type_statement_token13] = ACTIONS(8911), + [aux_sym_def_type_statement_token14] = ACTIONS(8911), + [aux_sym_call_statement_token1] = ACTIONS(8911), + [sym__ambiguous_call_statement] = ACTIONS(8911), + [aux_sym_addressof_expression_token1] = ACTIONS(8911), + [aux_sym_type_of_expression_token1] = ACTIONS(8911), + [aux_sym_unary_expression_token1] = ACTIONS(8911), + [sym_string_literal] = ACTIONS(8913), + [sym_number_literal] = ACTIONS(8913), + [aux_sym_boolean_literal_token1] = ACTIONS(8911), + [aux_sym_boolean_literal_token2] = ACTIONS(8911), + [sym_nothing_literal] = ACTIONS(8911), + [sym_null_literal] = ACTIONS(8911), + [sym_empty_literal] = ACTIONS(8911), + [sym_date_literal] = ACTIONS(8913), + [anon_sym_POUND] = ACTIONS(8911), + }, + [STATE(4056)] = { + [sym_identifier] = ACTIONS(6617), + [sym_newline] = ACTIONS(6619), + [anon_sym_COLON] = ACTIONS(6619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6617), + [aux_sym_frm_property_statement_token1] = ACTIONS(6617), + [anon_sym_DOT] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(6619), + [aux_sym__attribute_identifier_token1] = ACTIONS(6617), + [aux_sym_option_statement_token3] = ACTIONS(6617), + [aux_sym_type_declaration_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6617), + [aux_sym_enum_declaration_token1] = ACTIONS(6617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6617), + [aux_sym_declare_function_statement_token1] = ACTIONS(6617), + [aux_sym_preprocessor_const_token1] = ACTIONS(6617), + [aux_sym__property_get_header_token1] = ACTIONS(6617), + [aux_sym_event_declaration_token1] = ACTIONS(6617), + [sym_static_modifier] = ACTIONS(6617), + [sym__dim_keyword] = ACTIONS(6617), + [sym__redim_keyword] = ACTIONS(6617), + [aux_sym_get_accessor_token1] = ACTIONS(6617), + [aux_sym_set_accessor_token1] = ACTIONS(6617), + [aux_sym_const_declaration_token1] = ACTIONS(6617), + [anon_sym_LPAREN] = ACTIONS(6619), + [aux_sym_as_type_clause_token2] = ACTIONS(6617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6617), + [aux_sym_visibility_token1] = ACTIONS(6617), + [aux_sym_visibility_token2] = ACTIONS(6617), + [aux_sym_elseif_fragment_token1] = ACTIONS(6617), + [aux_sym_else_fragment_token1] = ACTIONS(6617), + [aux_sym_select_statement_token1] = ACTIONS(6617), + [aux_sym__for_header_token1] = ACTIONS(6617), + [aux_sym_do_statement_token1] = ACTIONS(6617), + [aux_sym_do_condition_token1] = ACTIONS(6617), + [aux_sym_with_statement_token1] = ACTIONS(6617), + [aux_sym_exit_statement_token1] = ACTIONS(6617), + [sym_end_statement] = ACTIONS(6619), + [aux_sym_on_goto_statement_token1] = ACTIONS(6617), + [aux_sym_on_goto_statement_token2] = ACTIONS(6617), + [aux_sym_on_error_statement_token2] = ACTIONS(6617), + [sym__ambiguous_redim_statement] = ACTIONS(6619), + [aux_sym_erase_statement_token1] = ACTIONS(6617), + [aux_sym_open_statement_token1] = ACTIONS(6617), + [aux_sym_file_mode_token2] = ACTIONS(6617), + [aux_sym_file_access_token2] = ACTIONS(6617), + [aux_sym_file_lock_token2] = ACTIONS(6617), + [aux_sym_print_statement_token1] = ACTIONS(6617), + [anon_sym_PLUS] = ACTIONS(6619), + [anon_sym_DASH] = ACTIONS(6617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(8101), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(8103), + [anon_sym_QMARK] = ACTIONS(6619), + [aux_sym_close_statement_token1] = ACTIONS(6617), + [aux_sym_put_statement_token1] = ACTIONS(6617), + [aux_sym_unlock_statement_token1] = ACTIONS(6617), + [aux_sym_seek_statement_token1] = ACTIONS(6617), + [sym_reset_statement] = ACTIONS(6617), + [aux_sym_raise_event_statement_token1] = ACTIONS(6617), + [sym_stop_statement] = ACTIONS(6617), + [sym_beep_statement] = ACTIONS(6617), + [aux_sym_unload_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token2] = ACTIONS(6617), + [aux_sym_def_type_statement_token3] = ACTIONS(6617), + [aux_sym_def_type_statement_token4] = ACTIONS(6617), + [aux_sym_def_type_statement_token5] = ACTIONS(6617), + [aux_sym_def_type_statement_token6] = ACTIONS(6617), + [aux_sym_def_type_statement_token7] = ACTIONS(6617), + [aux_sym_def_type_statement_token8] = ACTIONS(6617), + [aux_sym_def_type_statement_token9] = ACTIONS(6617), + [aux_sym_def_type_statement_token10] = ACTIONS(6617), + [aux_sym_def_type_statement_token11] = ACTIONS(6617), + [aux_sym_def_type_statement_token12] = ACTIONS(6617), + [aux_sym_def_type_statement_token13] = ACTIONS(6617), + [aux_sym_def_type_statement_token14] = ACTIONS(6617), + [aux_sym_call_statement_token1] = ACTIONS(6617), + [sym__ambiguous_call_statement] = ACTIONS(6617), + [aux_sym_addressof_expression_token1] = ACTIONS(6617), + [aux_sym_type_of_expression_token1] = ACTIONS(6617), + [aux_sym_unary_expression_token1] = ACTIONS(6617), + [sym_string_literal] = ACTIONS(6619), + [sym_number_literal] = ACTIONS(6619), + [aux_sym_boolean_literal_token1] = ACTIONS(6617), + [aux_sym_boolean_literal_token2] = ACTIONS(6617), + [sym_nothing_literal] = ACTIONS(6617), + [sym_null_literal] = ACTIONS(6617), + [sym_empty_literal] = ACTIONS(6617), + [sym_date_literal] = ACTIONS(6619), + [anon_sym_POUND] = ACTIONS(6617), + }, + [STATE(4057)] = { + [aux_sym__argument_sequence_repeat2] = STATE(4097), + [sym_identifier] = ACTIONS(8495), + [sym_newline] = ACTIONS(8497), + [anon_sym_COLON] = ACTIONS(8497), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8495), + [aux_sym_frm_property_statement_token1] = ACTIONS(8495), + [anon_sym_DOT] = ACTIONS(8495), + [anon_sym_BANG] = ACTIONS(8497), + [aux_sym__attribute_identifier_token1] = ACTIONS(8495), + [aux_sym_option_statement_token3] = ACTIONS(8495), + [aux_sym_type_declaration_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8495), + [aux_sym_enum_declaration_token1] = ACTIONS(8495), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8495), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8495), + [aux_sym_declare_function_statement_token1] = ACTIONS(8495), + [aux_sym_preprocessor_const_token1] = ACTIONS(8495), + [aux_sym__property_get_header_token1] = ACTIONS(8495), + [aux_sym_event_declaration_token1] = ACTIONS(8495), + [sym_static_modifier] = ACTIONS(8495), + [sym__dim_keyword] = ACTIONS(8495), + [sym__redim_keyword] = ACTIONS(8495), + [aux_sym_get_accessor_token1] = ACTIONS(8495), + [aux_sym_set_accessor_token1] = ACTIONS(8495), + [anon_sym_COMMA] = ACTIONS(4230), + [aux_sym_const_declaration_token1] = ACTIONS(8495), + [anon_sym_LPAREN] = ACTIONS(8497), + [aux_sym_as_type_clause_token2] = ACTIONS(8495), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8495), + [aux_sym_visibility_token1] = ACTIONS(8495), + [aux_sym_visibility_token2] = ACTIONS(8495), + [aux_sym_elseif_fragment_token1] = ACTIONS(8495), + [aux_sym_else_fragment_token1] = ACTIONS(8495), + [aux_sym_select_statement_token1] = ACTIONS(8495), + [aux_sym__for_header_token1] = ACTIONS(8495), + [aux_sym_do_statement_token1] = ACTIONS(8495), + [aux_sym_do_condition_token1] = ACTIONS(8495), + [aux_sym_with_statement_token1] = ACTIONS(8495), + [aux_sym_exit_statement_token1] = ACTIONS(8495), + [sym_end_statement] = ACTIONS(8497), + [aux_sym_on_goto_statement_token1] = ACTIONS(8495), + [aux_sym_on_goto_statement_token2] = ACTIONS(8495), + [aux_sym_on_error_statement_token2] = ACTIONS(8495), + [sym__ambiguous_redim_statement] = ACTIONS(8497), + [aux_sym_erase_statement_token1] = ACTIONS(8495), + [aux_sym_open_statement_token1] = ACTIONS(8495), + [aux_sym_file_mode_token2] = ACTIONS(8495), + [aux_sym_file_access_token2] = ACTIONS(8495), + [aux_sym_file_lock_token2] = ACTIONS(8495), + [aux_sym_print_statement_token1] = ACTIONS(8495), + [anon_sym_PLUS] = ACTIONS(8497), + [anon_sym_DASH] = ACTIONS(8495), + [anon_sym_QMARK] = ACTIONS(8497), + [aux_sym_close_statement_token1] = ACTIONS(8495), + [aux_sym_put_statement_token1] = ACTIONS(8495), + [aux_sym_unlock_statement_token1] = ACTIONS(8495), + [aux_sym_seek_statement_token1] = ACTIONS(8495), + [sym_reset_statement] = ACTIONS(8495), + [aux_sym_raise_event_statement_token1] = ACTIONS(8495), + [sym_stop_statement] = ACTIONS(8495), + [sym_beep_statement] = ACTIONS(8495), + [aux_sym_unload_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token2] = ACTIONS(8495), + [aux_sym_def_type_statement_token3] = ACTIONS(8495), + [aux_sym_def_type_statement_token4] = ACTIONS(8495), + [aux_sym_def_type_statement_token5] = ACTIONS(8495), + [aux_sym_def_type_statement_token6] = ACTIONS(8495), + [aux_sym_def_type_statement_token7] = ACTIONS(8495), + [aux_sym_def_type_statement_token8] = ACTIONS(8495), + [aux_sym_def_type_statement_token9] = ACTIONS(8495), + [aux_sym_def_type_statement_token10] = ACTIONS(8495), + [aux_sym_def_type_statement_token11] = ACTIONS(8495), + [aux_sym_def_type_statement_token12] = ACTIONS(8495), + [aux_sym_def_type_statement_token13] = ACTIONS(8495), + [aux_sym_def_type_statement_token14] = ACTIONS(8495), + [aux_sym_call_statement_token1] = ACTIONS(8495), + [sym__ambiguous_call_statement] = ACTIONS(8495), + [aux_sym_addressof_expression_token1] = ACTIONS(8495), + [aux_sym_type_of_expression_token1] = ACTIONS(8495), + [aux_sym_unary_expression_token1] = ACTIONS(8495), + [sym_string_literal] = ACTIONS(8497), + [sym_number_literal] = ACTIONS(8497), + [aux_sym_boolean_literal_token1] = ACTIONS(8495), + [aux_sym_boolean_literal_token2] = ACTIONS(8495), + [sym_nothing_literal] = ACTIONS(8495), + [sym_null_literal] = ACTIONS(8495), + [sym_empty_literal] = ACTIONS(8495), + [sym_date_literal] = ACTIONS(8497), + [anon_sym_POUND] = ACTIONS(8495), + }, + [STATE(4058)] = { + [aux_sym__argument_sequence_repeat2] = STATE(4190), + [sym_identifier] = ACTIONS(8495), + [sym_newline] = ACTIONS(8497), + [anon_sym_COLON] = ACTIONS(8497), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8495), + [aux_sym_frm_property_statement_token1] = ACTIONS(8495), + [anon_sym_DOT] = ACTIONS(8495), + [anon_sym_BANG] = ACTIONS(8497), + [aux_sym__attribute_identifier_token1] = ACTIONS(8495), + [aux_sym_option_statement_token3] = ACTIONS(8495), + [aux_sym_type_declaration_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8495), + [aux_sym_enum_declaration_token1] = ACTIONS(8495), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8495), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8495), + [aux_sym_declare_function_statement_token1] = ACTIONS(8495), + [aux_sym_preprocessor_const_token1] = ACTIONS(8495), + [aux_sym__property_get_header_token1] = ACTIONS(8495), + [aux_sym_event_declaration_token1] = ACTIONS(8495), + [sym_static_modifier] = ACTIONS(8495), + [sym__dim_keyword] = ACTIONS(8495), + [sym__redim_keyword] = ACTIONS(8495), + [aux_sym_get_accessor_token1] = ACTIONS(8495), + [aux_sym_set_accessor_token1] = ACTIONS(8495), + [anon_sym_COMMA] = ACTIONS(4230), + [aux_sym_const_declaration_token1] = ACTIONS(8495), + [anon_sym_LPAREN] = ACTIONS(8497), + [aux_sym_as_type_clause_token2] = ACTIONS(8495), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8495), + [aux_sym_visibility_token1] = ACTIONS(8495), + [aux_sym_visibility_token2] = ACTIONS(8495), + [aux_sym_elseif_fragment_token1] = ACTIONS(8495), + [aux_sym_else_fragment_token1] = ACTIONS(8495), + [aux_sym_select_statement_token1] = ACTIONS(8495), + [aux_sym__for_header_token1] = ACTIONS(8495), + [aux_sym_do_statement_token1] = ACTIONS(8495), + [aux_sym_do_condition_token1] = ACTIONS(8495), + [aux_sym_with_statement_token1] = ACTIONS(8495), + [aux_sym_exit_statement_token1] = ACTIONS(8495), + [sym_end_statement] = ACTIONS(8497), + [aux_sym_on_goto_statement_token1] = ACTIONS(8495), + [aux_sym_on_goto_statement_token2] = ACTIONS(8495), + [aux_sym_on_error_statement_token2] = ACTIONS(8495), + [sym__ambiguous_redim_statement] = ACTIONS(8497), + [aux_sym_erase_statement_token1] = ACTIONS(8495), + [aux_sym_open_statement_token1] = ACTIONS(8495), + [aux_sym_file_mode_token2] = ACTIONS(8495), + [aux_sym_file_access_token2] = ACTIONS(8495), + [aux_sym_file_lock_token2] = ACTIONS(8495), + [aux_sym_print_statement_token1] = ACTIONS(8495), + [anon_sym_PLUS] = ACTIONS(8497), + [anon_sym_DASH] = ACTIONS(8495), + [anon_sym_QMARK] = ACTIONS(8497), + [aux_sym_close_statement_token1] = ACTIONS(8495), + [aux_sym_put_statement_token1] = ACTIONS(8495), + [aux_sym_unlock_statement_token1] = ACTIONS(8495), + [aux_sym_seek_statement_token1] = ACTIONS(8495), + [sym_reset_statement] = ACTIONS(8495), + [aux_sym_raise_event_statement_token1] = ACTIONS(8495), + [sym_stop_statement] = ACTIONS(8495), + [sym_beep_statement] = ACTIONS(8495), + [aux_sym_unload_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token2] = ACTIONS(8495), + [aux_sym_def_type_statement_token3] = ACTIONS(8495), + [aux_sym_def_type_statement_token4] = ACTIONS(8495), + [aux_sym_def_type_statement_token5] = ACTIONS(8495), + [aux_sym_def_type_statement_token6] = ACTIONS(8495), + [aux_sym_def_type_statement_token7] = ACTIONS(8495), + [aux_sym_def_type_statement_token8] = ACTIONS(8495), + [aux_sym_def_type_statement_token9] = ACTIONS(8495), + [aux_sym_def_type_statement_token10] = ACTIONS(8495), + [aux_sym_def_type_statement_token11] = ACTIONS(8495), + [aux_sym_def_type_statement_token12] = ACTIONS(8495), + [aux_sym_def_type_statement_token13] = ACTIONS(8495), + [aux_sym_def_type_statement_token14] = ACTIONS(8495), + [aux_sym_call_statement_token1] = ACTIONS(8495), + [sym__ambiguous_call_statement] = ACTIONS(8495), + [aux_sym_addressof_expression_token1] = ACTIONS(8495), + [aux_sym_type_of_expression_token1] = ACTIONS(8495), + [aux_sym_unary_expression_token1] = ACTIONS(8495), + [sym_string_literal] = ACTIONS(8497), + [sym_number_literal] = ACTIONS(8497), + [aux_sym_boolean_literal_token1] = ACTIONS(8495), + [aux_sym_boolean_literal_token2] = ACTIONS(8495), + [sym_nothing_literal] = ACTIONS(8495), + [sym_null_literal] = ACTIONS(8495), + [sym_empty_literal] = ACTIONS(8495), + [sym_date_literal] = ACTIONS(8497), + [anon_sym_POUND] = ACTIONS(8495), + }, + [STATE(4059)] = { + [aux_sym__argument_sequence_repeat1] = STATE(4193), + [sym_identifier] = ACTIONS(8549), + [sym_newline] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8549), + [aux_sym_frm_property_statement_token1] = ACTIONS(8549), + [anon_sym_DOT] = ACTIONS(8549), + [anon_sym_BANG] = ACTIONS(8551), + [aux_sym__attribute_identifier_token1] = ACTIONS(8549), + [aux_sym_option_statement_token3] = ACTIONS(8549), + [aux_sym_type_declaration_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8549), + [aux_sym_enum_declaration_token1] = ACTIONS(8549), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8549), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8549), + [aux_sym_declare_function_statement_token1] = ACTIONS(8549), + [aux_sym_preprocessor_const_token1] = ACTIONS(8549), + [aux_sym__property_get_header_token1] = ACTIONS(8549), + [aux_sym_event_declaration_token1] = ACTIONS(8549), + [sym_static_modifier] = ACTIONS(8549), + [sym__dim_keyword] = ACTIONS(8549), + [sym__redim_keyword] = ACTIONS(8549), + [aux_sym_get_accessor_token1] = ACTIONS(8549), + [aux_sym_set_accessor_token1] = ACTIONS(8549), + [anon_sym_COMMA] = ACTIONS(9550), + [aux_sym_const_declaration_token1] = ACTIONS(8549), + [anon_sym_LPAREN] = ACTIONS(8551), + [aux_sym_as_type_clause_token2] = ACTIONS(8549), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8549), + [aux_sym_visibility_token1] = ACTIONS(8549), + [aux_sym_visibility_token2] = ACTIONS(8549), + [aux_sym_elseif_fragment_token1] = ACTIONS(8549), + [aux_sym_else_fragment_token1] = ACTIONS(8549), + [aux_sym_select_statement_token1] = ACTIONS(8549), + [aux_sym__for_header_token1] = ACTIONS(8549), + [aux_sym_do_statement_token1] = ACTIONS(8549), + [aux_sym_do_condition_token1] = ACTIONS(8549), + [aux_sym_with_statement_token1] = ACTIONS(8549), + [aux_sym_exit_statement_token1] = ACTIONS(8549), + [sym_end_statement] = ACTIONS(8551), + [aux_sym_on_goto_statement_token1] = ACTIONS(8549), + [aux_sym_on_goto_statement_token2] = ACTIONS(8549), + [aux_sym_on_error_statement_token2] = ACTIONS(8549), + [sym__ambiguous_redim_statement] = ACTIONS(8551), + [aux_sym_erase_statement_token1] = ACTIONS(8549), + [aux_sym_open_statement_token1] = ACTIONS(8549), + [aux_sym_file_mode_token2] = ACTIONS(8549), + [aux_sym_file_access_token2] = ACTIONS(8549), + [aux_sym_file_lock_token2] = ACTIONS(8549), + [aux_sym_print_statement_token1] = ACTIONS(8549), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_DASH] = ACTIONS(8549), + [anon_sym_QMARK] = ACTIONS(8551), + [aux_sym_close_statement_token1] = ACTIONS(8549), + [aux_sym_put_statement_token1] = ACTIONS(8549), + [aux_sym_unlock_statement_token1] = ACTIONS(8549), + [aux_sym_seek_statement_token1] = ACTIONS(8549), + [sym_reset_statement] = ACTIONS(8549), + [aux_sym_raise_event_statement_token1] = ACTIONS(8549), + [sym_stop_statement] = ACTIONS(8549), + [sym_beep_statement] = ACTIONS(8549), + [aux_sym_unload_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token2] = ACTIONS(8549), + [aux_sym_def_type_statement_token3] = ACTIONS(8549), + [aux_sym_def_type_statement_token4] = ACTIONS(8549), + [aux_sym_def_type_statement_token5] = ACTIONS(8549), + [aux_sym_def_type_statement_token6] = ACTIONS(8549), + [aux_sym_def_type_statement_token7] = ACTIONS(8549), + [aux_sym_def_type_statement_token8] = ACTIONS(8549), + [aux_sym_def_type_statement_token9] = ACTIONS(8549), + [aux_sym_def_type_statement_token10] = ACTIONS(8549), + [aux_sym_def_type_statement_token11] = ACTIONS(8549), + [aux_sym_def_type_statement_token12] = ACTIONS(8549), + [aux_sym_def_type_statement_token13] = ACTIONS(8549), + [aux_sym_def_type_statement_token14] = ACTIONS(8549), + [aux_sym_call_statement_token1] = ACTIONS(8549), + [sym__ambiguous_call_statement] = ACTIONS(8549), + [aux_sym_addressof_expression_token1] = ACTIONS(8549), + [aux_sym_type_of_expression_token1] = ACTIONS(8549), + [aux_sym_unary_expression_token1] = ACTIONS(8549), + [sym_string_literal] = ACTIONS(8551), + [sym_number_literal] = ACTIONS(8551), + [aux_sym_boolean_literal_token1] = ACTIONS(8549), + [aux_sym_boolean_literal_token2] = ACTIONS(8549), + [sym_nothing_literal] = ACTIONS(8549), + [sym_null_literal] = ACTIONS(8549), + [sym_empty_literal] = ACTIONS(8549), + [sym_date_literal] = ACTIONS(8551), + [anon_sym_POUND] = ACTIONS(8549), + }, + [STATE(4060)] = { + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(4099), + [sym_identifier] = ACTIONS(8549), + [sym_newline] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8549), + [aux_sym_frm_property_statement_token1] = ACTIONS(8549), + [anon_sym_DOT] = ACTIONS(8549), + [anon_sym_BANG] = ACTIONS(8551), + [aux_sym__attribute_identifier_token1] = ACTIONS(8549), + [aux_sym_option_statement_token3] = ACTIONS(8549), + [aux_sym_type_declaration_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8549), + [aux_sym_enum_declaration_token1] = ACTIONS(8549), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8549), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8549), + [aux_sym_declare_function_statement_token1] = ACTIONS(8549), + [aux_sym_preprocessor_const_token1] = ACTIONS(8549), + [aux_sym__property_get_header_token1] = ACTIONS(8549), + [aux_sym_event_declaration_token1] = ACTIONS(8549), + [sym_static_modifier] = ACTIONS(8549), + [sym__dim_keyword] = ACTIONS(8549), + [sym__redim_keyword] = ACTIONS(8549), + [aux_sym_get_accessor_token1] = ACTIONS(8549), + [aux_sym_set_accessor_token1] = ACTIONS(8549), + [aux_sym_const_declaration_token1] = ACTIONS(8549), + [anon_sym_LPAREN] = ACTIONS(8551), + [aux_sym_as_type_clause_token2] = ACTIONS(8549), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8549), + [aux_sym_visibility_token1] = ACTIONS(8549), + [aux_sym_visibility_token2] = ACTIONS(8549), + [aux_sym_elseif_fragment_token1] = ACTIONS(8549), + [aux_sym_else_fragment_token1] = ACTIONS(8549), + [aux_sym_select_statement_token1] = ACTIONS(8549), + [aux_sym__for_header_token1] = ACTIONS(8549), + [aux_sym_do_statement_token1] = ACTIONS(8549), + [aux_sym_do_condition_token1] = ACTIONS(8549), + [aux_sym_with_statement_token1] = ACTIONS(8549), + [aux_sym_exit_statement_token1] = ACTIONS(8549), + [sym_end_statement] = ACTIONS(8551), + [aux_sym_on_goto_statement_token1] = ACTIONS(8549), + [aux_sym_on_goto_statement_token2] = ACTIONS(8549), + [aux_sym_on_error_statement_token2] = ACTIONS(8549), + [sym__ambiguous_redim_statement] = ACTIONS(8551), + [aux_sym_erase_statement_token1] = ACTIONS(8549), + [aux_sym_open_statement_token1] = ACTIONS(8549), + [aux_sym_file_mode_token2] = ACTIONS(8549), + [aux_sym_file_access_token2] = ACTIONS(8549), + [aux_sym_file_lock_token2] = ACTIONS(8549), + [aux_sym_print_statement_token1] = ACTIONS(8549), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_DASH] = ACTIONS(8549), + [anon_sym_SEMI] = ACTIONS(8182), + [anon_sym_QMARK] = ACTIONS(8551), + [aux_sym_close_statement_token1] = ACTIONS(8549), + [aux_sym_put_statement_token1] = ACTIONS(8549), + [aux_sym_unlock_statement_token1] = ACTIONS(8549), + [aux_sym_seek_statement_token1] = ACTIONS(8549), + [sym_reset_statement] = ACTIONS(8549), + [aux_sym_raise_event_statement_token1] = ACTIONS(8549), + [sym_stop_statement] = ACTIONS(8549), + [sym_beep_statement] = ACTIONS(8549), + [aux_sym_unload_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token2] = ACTIONS(8549), + [aux_sym_def_type_statement_token3] = ACTIONS(8549), + [aux_sym_def_type_statement_token4] = ACTIONS(8549), + [aux_sym_def_type_statement_token5] = ACTIONS(8549), + [aux_sym_def_type_statement_token6] = ACTIONS(8549), + [aux_sym_def_type_statement_token7] = ACTIONS(8549), + [aux_sym_def_type_statement_token8] = ACTIONS(8549), + [aux_sym_def_type_statement_token9] = ACTIONS(8549), + [aux_sym_def_type_statement_token10] = ACTIONS(8549), + [aux_sym_def_type_statement_token11] = ACTIONS(8549), + [aux_sym_def_type_statement_token12] = ACTIONS(8549), + [aux_sym_def_type_statement_token13] = ACTIONS(8549), + [aux_sym_def_type_statement_token14] = ACTIONS(8549), + [aux_sym_call_statement_token1] = ACTIONS(8549), + [sym__ambiguous_call_statement] = ACTIONS(8549), + [aux_sym_addressof_expression_token1] = ACTIONS(8549), + [aux_sym_type_of_expression_token1] = ACTIONS(8549), + [aux_sym_unary_expression_token1] = ACTIONS(8549), + [sym_string_literal] = ACTIONS(8551), + [sym_number_literal] = ACTIONS(8551), + [aux_sym_boolean_literal_token1] = ACTIONS(8549), + [aux_sym_boolean_literal_token2] = ACTIONS(8549), + [sym_nothing_literal] = ACTIONS(8549), + [sym_null_literal] = ACTIONS(8549), + [sym_empty_literal] = ACTIONS(8549), + [sym_date_literal] = ACTIONS(8551), + [anon_sym_POUND] = ACTIONS(8549), + }, + [STATE(4061)] = { + [sym_identifier] = ACTIONS(9552), + [sym_newline] = ACTIONS(9554), + [anon_sym_COLON] = ACTIONS(9554), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9552), + [aux_sym_frm_property_statement_token1] = ACTIONS(9552), + [anon_sym_DOT] = ACTIONS(9552), + [anon_sym_BANG] = ACTIONS(9554), + [aux_sym__attribute_identifier_token1] = ACTIONS(9552), + [aux_sym_option_statement_token3] = ACTIONS(9552), + [aux_sym_type_declaration_token1] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9552), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9552), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9552), + [aux_sym_enum_declaration_token1] = ACTIONS(9552), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9552), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9552), + [aux_sym_declare_function_statement_token1] = ACTIONS(9552), + [aux_sym_preprocessor_const_token1] = ACTIONS(9552), + [aux_sym__property_get_header_token1] = ACTIONS(9552), + [aux_sym_event_declaration_token1] = ACTIONS(9552), + [sym_static_modifier] = ACTIONS(9552), + [sym__dim_keyword] = ACTIONS(9552), + [sym__redim_keyword] = ACTIONS(9552), + [aux_sym_get_accessor_token1] = ACTIONS(9552), + [aux_sym_set_accessor_token1] = ACTIONS(9552), + [aux_sym_const_declaration_token1] = ACTIONS(9552), + [anon_sym_LPAREN] = ACTIONS(9554), + [aux_sym_as_type_clause_token2] = ACTIONS(9552), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9552), + [aux_sym_visibility_token1] = ACTIONS(9552), + [aux_sym_visibility_token2] = ACTIONS(9552), + [aux_sym_elseif_fragment_token1] = ACTIONS(9552), + [aux_sym_else_fragment_token1] = ACTIONS(9552), + [aux_sym_select_statement_token1] = ACTIONS(9552), + [aux_sym__for_header_token1] = ACTIONS(9552), + [aux_sym_do_statement_token1] = ACTIONS(9552), + [aux_sym_do_condition_token1] = ACTIONS(9552), + [aux_sym_with_statement_token1] = ACTIONS(9552), + [aux_sym_exit_statement_token1] = ACTIONS(9552), + [sym_end_statement] = ACTIONS(9554), + [aux_sym_on_goto_statement_token1] = ACTIONS(9552), + [aux_sym_on_goto_statement_token2] = ACTIONS(9552), + [aux_sym_on_error_statement_token2] = ACTIONS(9552), + [sym__ambiguous_redim_statement] = ACTIONS(9554), + [aux_sym_erase_statement_token1] = ACTIONS(9552), + [aux_sym_open_statement_token1] = ACTIONS(9552), + [aux_sym_file_mode_token2] = ACTIONS(9552), + [aux_sym_file_access_token2] = ACTIONS(9552), + [aux_sym_file_lock_token2] = ACTIONS(9552), + [aux_sym_print_statement_token1] = ACTIONS(9552), + [anon_sym_PLUS] = ACTIONS(9554), + [anon_sym_DASH] = ACTIONS(9552), + [anon_sym_QMARK] = ACTIONS(9554), + [aux_sym_close_statement_token1] = ACTIONS(9552), + [aux_sym_put_statement_token1] = ACTIONS(9552), + [aux_sym_unlock_statement_token1] = ACTIONS(9552), + [aux_sym_seek_statement_token1] = ACTIONS(9552), + [sym_reset_statement] = ACTIONS(9552), + [aux_sym_raise_event_statement_token1] = ACTIONS(9552), + [sym_stop_statement] = ACTIONS(9552), + [sym_beep_statement] = ACTIONS(9552), + [aux_sym_unload_statement_token1] = ACTIONS(9552), + [aux_sym_def_type_statement_token1] = ACTIONS(9552), + [aux_sym_def_type_statement_token2] = ACTIONS(9552), + [aux_sym_def_type_statement_token3] = ACTIONS(9552), + [aux_sym_def_type_statement_token4] = ACTIONS(9552), + [aux_sym_def_type_statement_token5] = ACTIONS(9552), + [aux_sym_def_type_statement_token6] = ACTIONS(9552), + [aux_sym_def_type_statement_token7] = ACTIONS(9552), + [aux_sym_def_type_statement_token8] = ACTIONS(9552), + [aux_sym_def_type_statement_token9] = ACTIONS(9552), + [aux_sym_def_type_statement_token10] = ACTIONS(9552), + [aux_sym_def_type_statement_token11] = ACTIONS(9552), + [aux_sym_def_type_statement_token12] = ACTIONS(9552), + [aux_sym_def_type_statement_token13] = ACTIONS(9552), + [aux_sym_def_type_statement_token14] = ACTIONS(9552), + [aux_sym_call_statement_token1] = ACTIONS(9552), + [sym__ambiguous_call_statement] = ACTIONS(9552), + [aux_sym_addressof_expression_token1] = ACTIONS(9552), + [aux_sym_type_of_expression_token1] = ACTIONS(9552), + [aux_sym_unary_expression_token1] = ACTIONS(9552), + [sym_string_literal] = ACTIONS(9554), + [sym_number_literal] = ACTIONS(9554), + [aux_sym_boolean_literal_token1] = ACTIONS(9552), + [aux_sym_boolean_literal_token2] = ACTIONS(9552), + [sym_nothing_literal] = ACTIONS(9552), + [sym_null_literal] = ACTIONS(9552), + [sym_empty_literal] = ACTIONS(9552), + [sym_date_literal] = ACTIONS(9554), + [anon_sym_POUND] = ACTIONS(9552), + }, + [STATE(4062)] = { + [sym_identifier] = ACTIONS(9556), + [sym_newline] = ACTIONS(9558), + [anon_sym_COLON] = ACTIONS(9558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9556), + [aux_sym_frm_property_statement_token1] = ACTIONS(9556), + [anon_sym_DOT] = ACTIONS(9556), + [anon_sym_BANG] = ACTIONS(9558), + [aux_sym__attribute_identifier_token1] = ACTIONS(9556), + [aux_sym_option_statement_token3] = ACTIONS(9556), + [aux_sym_type_declaration_token1] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9556), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9556), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9556), + [aux_sym_enum_declaration_token1] = ACTIONS(9556), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9556), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9556), + [aux_sym_declare_function_statement_token1] = ACTIONS(9556), + [aux_sym_preprocessor_const_token1] = ACTIONS(9556), + [aux_sym__property_get_header_token1] = ACTIONS(9556), + [aux_sym_event_declaration_token1] = ACTIONS(9556), + [sym_static_modifier] = ACTIONS(9556), + [sym__dim_keyword] = ACTIONS(9556), + [sym__redim_keyword] = ACTIONS(9556), + [aux_sym_get_accessor_token1] = ACTIONS(9556), + [aux_sym_set_accessor_token1] = ACTIONS(9556), + [aux_sym_const_declaration_token1] = ACTIONS(9556), + [anon_sym_LPAREN] = ACTIONS(9558), + [aux_sym_as_type_clause_token2] = ACTIONS(9556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9556), + [aux_sym_visibility_token1] = ACTIONS(9556), + [aux_sym_visibility_token2] = ACTIONS(9556), + [aux_sym_elseif_fragment_token1] = ACTIONS(9556), + [aux_sym_else_fragment_token1] = ACTIONS(9556), + [aux_sym_select_statement_token1] = ACTIONS(9556), + [aux_sym__for_header_token1] = ACTIONS(9556), + [aux_sym_do_statement_token1] = ACTIONS(9556), + [aux_sym_do_condition_token1] = ACTIONS(9556), + [aux_sym_with_statement_token1] = ACTIONS(9556), + [aux_sym_exit_statement_token1] = ACTIONS(9556), + [sym_end_statement] = ACTIONS(9558), + [aux_sym_on_goto_statement_token1] = ACTIONS(9556), + [aux_sym_on_goto_statement_token2] = ACTIONS(9556), + [aux_sym_on_error_statement_token2] = ACTIONS(9556), + [sym__ambiguous_redim_statement] = ACTIONS(9558), + [aux_sym_erase_statement_token1] = ACTIONS(9556), + [aux_sym_open_statement_token1] = ACTIONS(9556), + [aux_sym_file_mode_token2] = ACTIONS(9556), + [aux_sym_file_access_token2] = ACTIONS(9556), + [aux_sym_file_lock_token2] = ACTIONS(9556), + [aux_sym_print_statement_token1] = ACTIONS(9556), + [anon_sym_PLUS] = ACTIONS(9558), + [anon_sym_DASH] = ACTIONS(9556), + [anon_sym_QMARK] = ACTIONS(9558), + [aux_sym_close_statement_token1] = ACTIONS(9556), + [aux_sym_put_statement_token1] = ACTIONS(9556), + [aux_sym_unlock_statement_token1] = ACTIONS(9556), + [aux_sym_seek_statement_token1] = ACTIONS(9556), + [sym_reset_statement] = ACTIONS(9556), + [aux_sym_raise_event_statement_token1] = ACTIONS(9556), + [sym_stop_statement] = ACTIONS(9556), + [sym_beep_statement] = ACTIONS(9556), + [aux_sym_unload_statement_token1] = ACTIONS(9556), + [aux_sym_def_type_statement_token1] = ACTIONS(9556), + [aux_sym_def_type_statement_token2] = ACTIONS(9556), + [aux_sym_def_type_statement_token3] = ACTIONS(9556), + [aux_sym_def_type_statement_token4] = ACTIONS(9556), + [aux_sym_def_type_statement_token5] = ACTIONS(9556), + [aux_sym_def_type_statement_token6] = ACTIONS(9556), + [aux_sym_def_type_statement_token7] = ACTIONS(9556), + [aux_sym_def_type_statement_token8] = ACTIONS(9556), + [aux_sym_def_type_statement_token9] = ACTIONS(9556), + [aux_sym_def_type_statement_token10] = ACTIONS(9556), + [aux_sym_def_type_statement_token11] = ACTIONS(9556), + [aux_sym_def_type_statement_token12] = ACTIONS(9556), + [aux_sym_def_type_statement_token13] = ACTIONS(9556), + [aux_sym_def_type_statement_token14] = ACTIONS(9556), + [aux_sym_call_statement_token1] = ACTIONS(9556), + [sym__ambiguous_call_statement] = ACTIONS(9556), + [aux_sym_addressof_expression_token1] = ACTIONS(9556), + [aux_sym_type_of_expression_token1] = ACTIONS(9556), + [aux_sym_unary_expression_token1] = ACTIONS(9556), + [sym_string_literal] = ACTIONS(9558), + [sym_number_literal] = ACTIONS(9558), + [aux_sym_boolean_literal_token1] = ACTIONS(9556), + [aux_sym_boolean_literal_token2] = ACTIONS(9556), + [sym_nothing_literal] = ACTIONS(9556), + [sym_null_literal] = ACTIONS(9556), + [sym_empty_literal] = ACTIONS(9556), + [sym_date_literal] = ACTIONS(9558), + [anon_sym_POUND] = ACTIONS(9556), + }, + [STATE(4063)] = { + [sym_identifier] = ACTIONS(9560), + [sym_newline] = ACTIONS(9562), + [anon_sym_COLON] = ACTIONS(9562), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9560), + [aux_sym_frm_property_statement_token1] = ACTIONS(9560), + [anon_sym_DOT] = ACTIONS(9560), + [anon_sym_BANG] = ACTIONS(9562), + [aux_sym__attribute_identifier_token1] = ACTIONS(9560), + [aux_sym_option_statement_token3] = ACTIONS(9560), + [aux_sym_type_declaration_token1] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9560), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9560), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9560), + [aux_sym_enum_declaration_token1] = ACTIONS(9560), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9560), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9560), + [aux_sym_declare_function_statement_token1] = ACTIONS(9560), + [aux_sym_preprocessor_const_token1] = ACTIONS(9560), + [aux_sym__property_get_header_token1] = ACTIONS(9560), + [aux_sym_event_declaration_token1] = ACTIONS(9560), + [sym_static_modifier] = ACTIONS(9560), + [sym__dim_keyword] = ACTIONS(9560), + [sym__redim_keyword] = ACTIONS(9560), + [aux_sym_get_accessor_token1] = ACTIONS(9560), + [aux_sym_set_accessor_token1] = ACTIONS(9560), + [aux_sym_const_declaration_token1] = ACTIONS(9560), + [anon_sym_LPAREN] = ACTIONS(9562), + [aux_sym_as_type_clause_token2] = ACTIONS(9560), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9560), + [aux_sym_visibility_token1] = ACTIONS(9560), + [aux_sym_visibility_token2] = ACTIONS(9560), + [aux_sym_elseif_fragment_token1] = ACTIONS(9560), + [aux_sym_else_fragment_token1] = ACTIONS(9560), + [aux_sym_select_statement_token1] = ACTIONS(9560), + [aux_sym__for_header_token1] = ACTIONS(9560), + [aux_sym_do_statement_token1] = ACTIONS(9560), + [aux_sym_do_condition_token1] = ACTIONS(9560), + [aux_sym_with_statement_token1] = ACTIONS(9560), + [aux_sym_exit_statement_token1] = ACTIONS(9560), + [sym_end_statement] = ACTIONS(9562), + [aux_sym_on_goto_statement_token1] = ACTIONS(9560), + [aux_sym_on_goto_statement_token2] = ACTIONS(9560), + [aux_sym_on_error_statement_token2] = ACTIONS(9560), + [sym__ambiguous_redim_statement] = ACTIONS(9562), + [aux_sym_erase_statement_token1] = ACTIONS(9560), + [aux_sym_open_statement_token1] = ACTIONS(9560), + [aux_sym_file_mode_token2] = ACTIONS(9560), + [aux_sym_file_access_token2] = ACTIONS(9560), + [aux_sym_file_lock_token2] = ACTIONS(9560), + [aux_sym_print_statement_token1] = ACTIONS(9560), + [anon_sym_PLUS] = ACTIONS(9562), + [anon_sym_DASH] = ACTIONS(9560), + [anon_sym_QMARK] = ACTIONS(9562), + [aux_sym_close_statement_token1] = ACTIONS(9560), + [aux_sym_put_statement_token1] = ACTIONS(9560), + [aux_sym_unlock_statement_token1] = ACTIONS(9560), + [aux_sym_seek_statement_token1] = ACTIONS(9560), + [sym_reset_statement] = ACTIONS(9560), + [aux_sym_raise_event_statement_token1] = ACTIONS(9560), + [sym_stop_statement] = ACTIONS(9560), + [sym_beep_statement] = ACTIONS(9560), + [aux_sym_unload_statement_token1] = ACTIONS(9560), + [aux_sym_def_type_statement_token1] = ACTIONS(9560), + [aux_sym_def_type_statement_token2] = ACTIONS(9560), + [aux_sym_def_type_statement_token3] = ACTIONS(9560), + [aux_sym_def_type_statement_token4] = ACTIONS(9560), + [aux_sym_def_type_statement_token5] = ACTIONS(9560), + [aux_sym_def_type_statement_token6] = ACTIONS(9560), + [aux_sym_def_type_statement_token7] = ACTIONS(9560), + [aux_sym_def_type_statement_token8] = ACTIONS(9560), + [aux_sym_def_type_statement_token9] = ACTIONS(9560), + [aux_sym_def_type_statement_token10] = ACTIONS(9560), + [aux_sym_def_type_statement_token11] = ACTIONS(9560), + [aux_sym_def_type_statement_token12] = ACTIONS(9560), + [aux_sym_def_type_statement_token13] = ACTIONS(9560), + [aux_sym_def_type_statement_token14] = ACTIONS(9560), + [aux_sym_call_statement_token1] = ACTIONS(9560), + [sym__ambiguous_call_statement] = ACTIONS(9560), + [aux_sym_addressof_expression_token1] = ACTIONS(9560), + [aux_sym_type_of_expression_token1] = ACTIONS(9560), + [aux_sym_unary_expression_token1] = ACTIONS(9560), + [sym_string_literal] = ACTIONS(9562), + [sym_number_literal] = ACTIONS(9562), + [aux_sym_boolean_literal_token1] = ACTIONS(9560), + [aux_sym_boolean_literal_token2] = ACTIONS(9560), + [sym_nothing_literal] = ACTIONS(9560), + [sym_null_literal] = ACTIONS(9560), + [sym_empty_literal] = ACTIONS(9560), + [sym_date_literal] = ACTIONS(9562), + [anon_sym_POUND] = ACTIONS(9560), + }, + [STATE(4064)] = { + [sym_identifier] = ACTIONS(9564), + [sym_newline] = ACTIONS(9566), + [anon_sym_COLON] = ACTIONS(9566), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9564), + [aux_sym_frm_property_statement_token1] = ACTIONS(9564), + [anon_sym_DOT] = ACTIONS(9564), + [anon_sym_BANG] = ACTIONS(9566), + [aux_sym__attribute_identifier_token1] = ACTIONS(9564), + [aux_sym_option_statement_token3] = ACTIONS(9564), + [aux_sym_type_declaration_token1] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9564), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9564), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9564), + [aux_sym_enum_declaration_token1] = ACTIONS(9564), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9564), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9564), + [aux_sym_declare_function_statement_token1] = ACTIONS(9564), + [aux_sym_preprocessor_const_token1] = ACTIONS(9564), + [aux_sym__property_get_header_token1] = ACTIONS(9564), + [aux_sym_event_declaration_token1] = ACTIONS(9564), + [sym_static_modifier] = ACTIONS(9564), + [sym__dim_keyword] = ACTIONS(9564), + [sym__redim_keyword] = ACTIONS(9564), + [aux_sym_get_accessor_token1] = ACTIONS(9564), + [aux_sym_set_accessor_token1] = ACTIONS(9564), + [aux_sym_const_declaration_token1] = ACTIONS(9564), + [anon_sym_LPAREN] = ACTIONS(9566), + [aux_sym_as_type_clause_token2] = ACTIONS(9564), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9564), + [aux_sym_visibility_token1] = ACTIONS(9564), + [aux_sym_visibility_token2] = ACTIONS(9564), + [aux_sym_elseif_fragment_token1] = ACTIONS(9564), + [aux_sym_else_fragment_token1] = ACTIONS(9564), + [aux_sym_select_statement_token1] = ACTIONS(9564), + [aux_sym__for_header_token1] = ACTIONS(9564), + [aux_sym_do_statement_token1] = ACTIONS(9564), + [aux_sym_do_condition_token1] = ACTIONS(9564), + [aux_sym_with_statement_token1] = ACTIONS(9564), + [aux_sym_exit_statement_token1] = ACTIONS(9564), + [sym_end_statement] = ACTIONS(9566), + [aux_sym_on_goto_statement_token1] = ACTIONS(9564), + [aux_sym_on_goto_statement_token2] = ACTIONS(9564), + [aux_sym_on_error_statement_token2] = ACTIONS(9564), + [sym__ambiguous_redim_statement] = ACTIONS(9566), + [aux_sym_erase_statement_token1] = ACTIONS(9564), + [aux_sym_open_statement_token1] = ACTIONS(9564), + [aux_sym_file_mode_token2] = ACTIONS(9564), + [aux_sym_file_access_token2] = ACTIONS(9564), + [aux_sym_file_lock_token2] = ACTIONS(9564), + [aux_sym_print_statement_token1] = ACTIONS(9564), + [anon_sym_PLUS] = ACTIONS(9566), + [anon_sym_DASH] = ACTIONS(9564), + [anon_sym_QMARK] = ACTIONS(9566), + [aux_sym_close_statement_token1] = ACTIONS(9564), + [aux_sym_put_statement_token1] = ACTIONS(9564), + [aux_sym_unlock_statement_token1] = ACTIONS(9564), + [aux_sym_seek_statement_token1] = ACTIONS(9564), + [sym_reset_statement] = ACTIONS(9564), + [aux_sym_raise_event_statement_token1] = ACTIONS(9564), + [sym_stop_statement] = ACTIONS(9564), + [sym_beep_statement] = ACTIONS(9564), + [aux_sym_unload_statement_token1] = ACTIONS(9564), + [aux_sym_def_type_statement_token1] = ACTIONS(9564), + [aux_sym_def_type_statement_token2] = ACTIONS(9564), + [aux_sym_def_type_statement_token3] = ACTIONS(9564), + [aux_sym_def_type_statement_token4] = ACTIONS(9564), + [aux_sym_def_type_statement_token5] = ACTIONS(9564), + [aux_sym_def_type_statement_token6] = ACTIONS(9564), + [aux_sym_def_type_statement_token7] = ACTIONS(9564), + [aux_sym_def_type_statement_token8] = ACTIONS(9564), + [aux_sym_def_type_statement_token9] = ACTIONS(9564), + [aux_sym_def_type_statement_token10] = ACTIONS(9564), + [aux_sym_def_type_statement_token11] = ACTIONS(9564), + [aux_sym_def_type_statement_token12] = ACTIONS(9564), + [aux_sym_def_type_statement_token13] = ACTIONS(9564), + [aux_sym_def_type_statement_token14] = ACTIONS(9564), + [aux_sym_call_statement_token1] = ACTIONS(9564), + [sym__ambiguous_call_statement] = ACTIONS(9564), + [aux_sym_addressof_expression_token1] = ACTIONS(9564), + [aux_sym_type_of_expression_token1] = ACTIONS(9564), + [aux_sym_unary_expression_token1] = ACTIONS(9564), + [sym_string_literal] = ACTIONS(9566), + [sym_number_literal] = ACTIONS(9566), + [aux_sym_boolean_literal_token1] = ACTIONS(9564), + [aux_sym_boolean_literal_token2] = ACTIONS(9564), + [sym_nothing_literal] = ACTIONS(9564), + [sym_null_literal] = ACTIONS(9564), + [sym_empty_literal] = ACTIONS(9564), + [sym_date_literal] = ACTIONS(9566), + [anon_sym_POUND] = ACTIONS(9564), + }, + [STATE(4065)] = { + [sym_identifier] = ACTIONS(9568), + [sym_newline] = ACTIONS(9570), + [anon_sym_COLON] = ACTIONS(9570), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9568), + [aux_sym_frm_property_statement_token1] = ACTIONS(9568), + [anon_sym_DOT] = ACTIONS(9568), + [anon_sym_BANG] = ACTIONS(9570), + [aux_sym__attribute_identifier_token1] = ACTIONS(9568), + [aux_sym_option_statement_token3] = ACTIONS(9568), + [aux_sym_type_declaration_token1] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9568), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9568), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9568), + [aux_sym_enum_declaration_token1] = ACTIONS(9568), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9568), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9568), + [aux_sym_declare_function_statement_token1] = ACTIONS(9568), + [aux_sym_preprocessor_const_token1] = ACTIONS(9568), + [aux_sym__property_get_header_token1] = ACTIONS(9568), + [aux_sym_event_declaration_token1] = ACTIONS(9568), + [sym_static_modifier] = ACTIONS(9568), + [sym__dim_keyword] = ACTIONS(9568), + [sym__redim_keyword] = ACTIONS(9568), + [aux_sym_get_accessor_token1] = ACTIONS(9568), + [aux_sym_set_accessor_token1] = ACTIONS(9568), + [aux_sym_const_declaration_token1] = ACTIONS(9568), + [anon_sym_LPAREN] = ACTIONS(9570), + [aux_sym_as_type_clause_token2] = ACTIONS(9568), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9568), + [aux_sym_visibility_token1] = ACTIONS(9568), + [aux_sym_visibility_token2] = ACTIONS(9568), + [aux_sym_elseif_fragment_token1] = ACTIONS(9568), + [aux_sym_else_fragment_token1] = ACTIONS(9568), + [aux_sym_select_statement_token1] = ACTIONS(9568), + [aux_sym__for_header_token1] = ACTIONS(9568), + [aux_sym_do_statement_token1] = ACTIONS(9568), + [aux_sym_do_condition_token1] = ACTIONS(9568), + [aux_sym_with_statement_token1] = ACTIONS(9568), + [aux_sym_exit_statement_token1] = ACTIONS(9568), + [sym_end_statement] = ACTIONS(9570), + [aux_sym_on_goto_statement_token1] = ACTIONS(9568), + [aux_sym_on_goto_statement_token2] = ACTIONS(9568), + [aux_sym_on_error_statement_token2] = ACTIONS(9568), + [sym__ambiguous_redim_statement] = ACTIONS(9570), + [aux_sym_erase_statement_token1] = ACTIONS(9568), + [aux_sym_open_statement_token1] = ACTIONS(9568), + [aux_sym_file_mode_token2] = ACTIONS(9568), + [aux_sym_file_access_token2] = ACTIONS(9568), + [aux_sym_file_lock_token2] = ACTIONS(9568), + [aux_sym_print_statement_token1] = ACTIONS(9568), + [anon_sym_PLUS] = ACTIONS(9570), + [anon_sym_DASH] = ACTIONS(9568), + [anon_sym_QMARK] = ACTIONS(9570), + [aux_sym_close_statement_token1] = ACTIONS(9568), + [aux_sym_put_statement_token1] = ACTIONS(9568), + [aux_sym_unlock_statement_token1] = ACTIONS(9568), + [aux_sym_seek_statement_token1] = ACTIONS(9568), + [sym_reset_statement] = ACTIONS(9568), + [aux_sym_raise_event_statement_token1] = ACTIONS(9568), + [sym_stop_statement] = ACTIONS(9568), + [sym_beep_statement] = ACTIONS(9568), + [aux_sym_unload_statement_token1] = ACTIONS(9568), + [aux_sym_def_type_statement_token1] = ACTIONS(9568), + [aux_sym_def_type_statement_token2] = ACTIONS(9568), + [aux_sym_def_type_statement_token3] = ACTIONS(9568), + [aux_sym_def_type_statement_token4] = ACTIONS(9568), + [aux_sym_def_type_statement_token5] = ACTIONS(9568), + [aux_sym_def_type_statement_token6] = ACTIONS(9568), + [aux_sym_def_type_statement_token7] = ACTIONS(9568), + [aux_sym_def_type_statement_token8] = ACTIONS(9568), + [aux_sym_def_type_statement_token9] = ACTIONS(9568), + [aux_sym_def_type_statement_token10] = ACTIONS(9568), + [aux_sym_def_type_statement_token11] = ACTIONS(9568), + [aux_sym_def_type_statement_token12] = ACTIONS(9568), + [aux_sym_def_type_statement_token13] = ACTIONS(9568), + [aux_sym_def_type_statement_token14] = ACTIONS(9568), + [aux_sym_call_statement_token1] = ACTIONS(9568), + [sym__ambiguous_call_statement] = ACTIONS(9568), + [aux_sym_addressof_expression_token1] = ACTIONS(9568), + [aux_sym_type_of_expression_token1] = ACTIONS(9568), + [aux_sym_unary_expression_token1] = ACTIONS(9568), + [sym_string_literal] = ACTIONS(9570), + [sym_number_literal] = ACTIONS(9570), + [aux_sym_boolean_literal_token1] = ACTIONS(9568), + [aux_sym_boolean_literal_token2] = ACTIONS(9568), + [sym_nothing_literal] = ACTIONS(9568), + [sym_null_literal] = ACTIONS(9568), + [sym_empty_literal] = ACTIONS(9568), + [sym_date_literal] = ACTIONS(9570), + [anon_sym_POUND] = ACTIONS(9568), + }, + [STATE(4066)] = { + [aux_sym_redim_statement_repeat1] = STATE(4067), + [sym_identifier] = ACTIONS(8340), + [sym_newline] = ACTIONS(8342), + [anon_sym_COLON] = ACTIONS(8342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8340), + [aux_sym_frm_property_statement_token1] = ACTIONS(8340), + [anon_sym_DOT] = ACTIONS(8340), + [anon_sym_BANG] = ACTIONS(8342), + [aux_sym__attribute_identifier_token1] = ACTIONS(8340), + [aux_sym_option_statement_token3] = ACTIONS(8340), + [aux_sym_type_declaration_token1] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8340), + [aux_sym_enum_declaration_token1] = ACTIONS(8340), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8340), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8340), + [aux_sym_declare_function_statement_token1] = ACTIONS(8340), + [aux_sym_preprocessor_const_token1] = ACTIONS(8340), + [aux_sym__property_get_header_token1] = ACTIONS(8340), + [aux_sym_event_declaration_token1] = ACTIONS(8340), + [sym_static_modifier] = ACTIONS(8340), + [sym__dim_keyword] = ACTIONS(8340), + [sym__redim_keyword] = ACTIONS(8340), + [aux_sym_get_accessor_token1] = ACTIONS(8340), + [aux_sym_set_accessor_token1] = ACTIONS(8340), + [anon_sym_COMMA] = ACTIONS(9480), + [aux_sym_const_declaration_token1] = ACTIONS(8340), + [anon_sym_LPAREN] = ACTIONS(8342), + [aux_sym_as_type_clause_token2] = ACTIONS(8340), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8340), + [aux_sym_visibility_token1] = ACTIONS(8340), + [aux_sym_visibility_token2] = ACTIONS(8340), + [aux_sym_elseif_fragment_token1] = ACTIONS(8340), + [aux_sym_else_fragment_token1] = ACTIONS(8340), + [aux_sym_select_statement_token1] = ACTIONS(8340), + [aux_sym__for_header_token1] = ACTIONS(8340), + [aux_sym_do_statement_token1] = ACTIONS(8340), + [aux_sym_do_condition_token1] = ACTIONS(8340), + [aux_sym_with_statement_token1] = ACTIONS(8340), + [aux_sym_exit_statement_token1] = ACTIONS(8340), + [sym_end_statement] = ACTIONS(8342), + [aux_sym_on_goto_statement_token1] = ACTIONS(8340), + [aux_sym_on_goto_statement_token2] = ACTIONS(8340), + [aux_sym_on_error_statement_token2] = ACTIONS(8340), + [sym__ambiguous_redim_statement] = ACTIONS(8342), + [aux_sym_erase_statement_token1] = ACTIONS(8340), + [aux_sym_open_statement_token1] = ACTIONS(8340), + [aux_sym_file_mode_token2] = ACTIONS(8340), + [aux_sym_file_access_token2] = ACTIONS(8340), + [aux_sym_file_lock_token2] = ACTIONS(8340), + [aux_sym_print_statement_token1] = ACTIONS(8340), + [anon_sym_PLUS] = ACTIONS(8342), + [anon_sym_DASH] = ACTIONS(8340), + [anon_sym_QMARK] = ACTIONS(8342), + [aux_sym_close_statement_token1] = ACTIONS(8340), + [aux_sym_put_statement_token1] = ACTIONS(8340), + [aux_sym_unlock_statement_token1] = ACTIONS(8340), + [aux_sym_seek_statement_token1] = ACTIONS(8340), + [sym_reset_statement] = ACTIONS(8340), + [aux_sym_raise_event_statement_token1] = ACTIONS(8340), + [sym_stop_statement] = ACTIONS(8340), + [sym_beep_statement] = ACTIONS(8340), + [aux_sym_unload_statement_token1] = ACTIONS(8340), + [aux_sym_def_type_statement_token1] = ACTIONS(8340), + [aux_sym_def_type_statement_token2] = ACTIONS(8340), + [aux_sym_def_type_statement_token3] = ACTIONS(8340), + [aux_sym_def_type_statement_token4] = ACTIONS(8340), + [aux_sym_def_type_statement_token5] = ACTIONS(8340), + [aux_sym_def_type_statement_token6] = ACTIONS(8340), + [aux_sym_def_type_statement_token7] = ACTIONS(8340), + [aux_sym_def_type_statement_token8] = ACTIONS(8340), + [aux_sym_def_type_statement_token9] = ACTIONS(8340), + [aux_sym_def_type_statement_token10] = ACTIONS(8340), + [aux_sym_def_type_statement_token11] = ACTIONS(8340), + [aux_sym_def_type_statement_token12] = ACTIONS(8340), + [aux_sym_def_type_statement_token13] = ACTIONS(8340), + [aux_sym_def_type_statement_token14] = ACTIONS(8340), + [aux_sym_call_statement_token1] = ACTIONS(8340), + [sym__ambiguous_call_statement] = ACTIONS(8340), + [aux_sym_addressof_expression_token1] = ACTIONS(8340), + [aux_sym_type_of_expression_token1] = ACTIONS(8340), + [aux_sym_unary_expression_token1] = ACTIONS(8340), + [sym_string_literal] = ACTIONS(8342), + [sym_number_literal] = ACTIONS(8342), + [aux_sym_boolean_literal_token1] = ACTIONS(8340), + [aux_sym_boolean_literal_token2] = ACTIONS(8340), + [sym_nothing_literal] = ACTIONS(8340), + [sym_null_literal] = ACTIONS(8340), + [sym_empty_literal] = ACTIONS(8340), + [sym_date_literal] = ACTIONS(8342), + [anon_sym_POUND] = ACTIONS(8340), + }, + [STATE(4067)] = { + [aux_sym_redim_statement_repeat1] = STATE(4067), + [sym_identifier] = ACTIONS(8456), + [sym_newline] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8458), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8456), + [aux_sym_frm_property_statement_token1] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_BANG] = ACTIONS(8458), + [aux_sym__attribute_identifier_token1] = ACTIONS(8456), + [aux_sym_option_statement_token3] = ACTIONS(8456), + [aux_sym_type_declaration_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8456), + [aux_sym_enum_declaration_token1] = ACTIONS(8456), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8456), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8456), + [aux_sym_declare_function_statement_token1] = ACTIONS(8456), + [aux_sym_preprocessor_const_token1] = ACTIONS(8456), + [aux_sym__property_get_header_token1] = ACTIONS(8456), + [aux_sym_event_declaration_token1] = ACTIONS(8456), + [sym_static_modifier] = ACTIONS(8456), + [sym__dim_keyword] = ACTIONS(8456), + [sym__redim_keyword] = ACTIONS(8456), + [aux_sym_get_accessor_token1] = ACTIONS(8456), + [aux_sym_set_accessor_token1] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(9572), + [aux_sym_const_declaration_token1] = ACTIONS(8456), + [anon_sym_LPAREN] = ACTIONS(8458), + [aux_sym_as_type_clause_token2] = ACTIONS(8456), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8456), + [aux_sym_visibility_token1] = ACTIONS(8456), + [aux_sym_visibility_token2] = ACTIONS(8456), + [aux_sym_elseif_fragment_token1] = ACTIONS(8456), + [aux_sym_else_fragment_token1] = ACTIONS(8456), + [aux_sym_select_statement_token1] = ACTIONS(8456), + [aux_sym__for_header_token1] = ACTIONS(8456), + [aux_sym_do_statement_token1] = ACTIONS(8456), + [aux_sym_do_condition_token1] = ACTIONS(8456), + [aux_sym_with_statement_token1] = ACTIONS(8456), + [aux_sym_exit_statement_token1] = ACTIONS(8456), + [sym_end_statement] = ACTIONS(8458), + [aux_sym_on_goto_statement_token1] = ACTIONS(8456), + [aux_sym_on_goto_statement_token2] = ACTIONS(8456), + [aux_sym_on_error_statement_token2] = ACTIONS(8456), + [sym__ambiguous_redim_statement] = ACTIONS(8458), + [aux_sym_erase_statement_token1] = ACTIONS(8456), + [aux_sym_open_statement_token1] = ACTIONS(8456), + [aux_sym_file_mode_token2] = ACTIONS(8456), + [aux_sym_file_access_token2] = ACTIONS(8456), + [aux_sym_file_lock_token2] = ACTIONS(8456), + [aux_sym_print_statement_token1] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8458), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8458), + [aux_sym_close_statement_token1] = ACTIONS(8456), + [aux_sym_put_statement_token1] = ACTIONS(8456), + [aux_sym_unlock_statement_token1] = ACTIONS(8456), + [aux_sym_seek_statement_token1] = ACTIONS(8456), + [sym_reset_statement] = ACTIONS(8456), + [aux_sym_raise_event_statement_token1] = ACTIONS(8456), + [sym_stop_statement] = ACTIONS(8456), + [sym_beep_statement] = ACTIONS(8456), + [aux_sym_unload_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token2] = ACTIONS(8456), + [aux_sym_def_type_statement_token3] = ACTIONS(8456), + [aux_sym_def_type_statement_token4] = ACTIONS(8456), + [aux_sym_def_type_statement_token5] = ACTIONS(8456), + [aux_sym_def_type_statement_token6] = ACTIONS(8456), + [aux_sym_def_type_statement_token7] = ACTIONS(8456), + [aux_sym_def_type_statement_token8] = ACTIONS(8456), + [aux_sym_def_type_statement_token9] = ACTIONS(8456), + [aux_sym_def_type_statement_token10] = ACTIONS(8456), + [aux_sym_def_type_statement_token11] = ACTIONS(8456), + [aux_sym_def_type_statement_token12] = ACTIONS(8456), + [aux_sym_def_type_statement_token13] = ACTIONS(8456), + [aux_sym_def_type_statement_token14] = ACTIONS(8456), + [aux_sym_call_statement_token1] = ACTIONS(8456), + [sym__ambiguous_call_statement] = ACTIONS(8456), + [aux_sym_addressof_expression_token1] = ACTIONS(8456), + [aux_sym_type_of_expression_token1] = ACTIONS(8456), + [aux_sym_unary_expression_token1] = ACTIONS(8456), + [sym_string_literal] = ACTIONS(8458), + [sym_number_literal] = ACTIONS(8458), + [aux_sym_boolean_literal_token1] = ACTIONS(8456), + [aux_sym_boolean_literal_token2] = ACTIONS(8456), + [sym_nothing_literal] = ACTIONS(8456), + [sym_null_literal] = ACTIONS(8456), + [sym_empty_literal] = ACTIONS(8456), + [sym_date_literal] = ACTIONS(8458), + [anon_sym_POUND] = ACTIONS(8456), + }, + [STATE(4068)] = { + [sym_identifier] = ACTIONS(9575), + [sym_newline] = ACTIONS(9577), + [anon_sym_COLON] = ACTIONS(9577), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9575), + [aux_sym_frm_property_statement_token1] = ACTIONS(9575), + [anon_sym_DOT] = ACTIONS(9575), + [anon_sym_BANG] = ACTIONS(9577), + [aux_sym__attribute_identifier_token1] = ACTIONS(9575), + [aux_sym_option_statement_token3] = ACTIONS(9575), + [aux_sym_type_declaration_token1] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9575), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9575), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9575), + [aux_sym_enum_declaration_token1] = ACTIONS(9575), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9575), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9575), + [aux_sym_declare_function_statement_token1] = ACTIONS(9575), + [aux_sym_preprocessor_const_token1] = ACTIONS(9575), + [aux_sym__property_get_header_token1] = ACTIONS(9575), + [aux_sym_event_declaration_token1] = ACTIONS(9575), + [sym_static_modifier] = ACTIONS(9575), + [sym__dim_keyword] = ACTIONS(9575), + [sym__redim_keyword] = ACTIONS(9575), + [aux_sym_get_accessor_token1] = ACTIONS(9575), + [aux_sym_set_accessor_token1] = ACTIONS(9575), + [aux_sym_const_declaration_token1] = ACTIONS(9575), + [anon_sym_LPAREN] = ACTIONS(9577), + [aux_sym_as_type_clause_token2] = ACTIONS(9575), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9575), + [aux_sym_visibility_token1] = ACTIONS(9575), + [aux_sym_visibility_token2] = ACTIONS(9575), + [aux_sym_elseif_fragment_token1] = ACTIONS(9575), + [aux_sym_else_fragment_token1] = ACTIONS(9575), + [aux_sym_select_statement_token1] = ACTIONS(9575), + [aux_sym__for_header_token1] = ACTIONS(9575), + [aux_sym_do_statement_token1] = ACTIONS(9575), + [aux_sym_do_condition_token1] = ACTIONS(9575), + [aux_sym_with_statement_token1] = ACTIONS(9575), + [aux_sym_exit_statement_token1] = ACTIONS(9575), + [sym_end_statement] = ACTIONS(9577), + [aux_sym_on_goto_statement_token1] = ACTIONS(9575), + [aux_sym_on_goto_statement_token2] = ACTIONS(9575), + [aux_sym_on_error_statement_token2] = ACTIONS(9575), + [sym__ambiguous_redim_statement] = ACTIONS(9577), + [aux_sym_erase_statement_token1] = ACTIONS(9575), + [aux_sym_open_statement_token1] = ACTIONS(9575), + [aux_sym_file_mode_token2] = ACTIONS(9575), + [aux_sym_file_access_token2] = ACTIONS(9575), + [aux_sym_file_lock_token2] = ACTIONS(9575), + [aux_sym_print_statement_token1] = ACTIONS(9575), + [anon_sym_PLUS] = ACTIONS(9577), + [anon_sym_DASH] = ACTIONS(9575), + [anon_sym_QMARK] = ACTIONS(9577), + [aux_sym_close_statement_token1] = ACTIONS(9575), + [aux_sym_put_statement_token1] = ACTIONS(9575), + [aux_sym_unlock_statement_token1] = ACTIONS(9575), + [aux_sym_seek_statement_token1] = ACTIONS(9575), + [sym_reset_statement] = ACTIONS(9575), + [aux_sym_raise_event_statement_token1] = ACTIONS(9575), + [sym_stop_statement] = ACTIONS(9575), + [sym_beep_statement] = ACTIONS(9575), + [aux_sym_unload_statement_token1] = ACTIONS(9575), + [aux_sym_def_type_statement_token1] = ACTIONS(9575), + [aux_sym_def_type_statement_token2] = ACTIONS(9575), + [aux_sym_def_type_statement_token3] = ACTIONS(9575), + [aux_sym_def_type_statement_token4] = ACTIONS(9575), + [aux_sym_def_type_statement_token5] = ACTIONS(9575), + [aux_sym_def_type_statement_token6] = ACTIONS(9575), + [aux_sym_def_type_statement_token7] = ACTIONS(9575), + [aux_sym_def_type_statement_token8] = ACTIONS(9575), + [aux_sym_def_type_statement_token9] = ACTIONS(9575), + [aux_sym_def_type_statement_token10] = ACTIONS(9575), + [aux_sym_def_type_statement_token11] = ACTIONS(9575), + [aux_sym_def_type_statement_token12] = ACTIONS(9575), + [aux_sym_def_type_statement_token13] = ACTIONS(9575), + [aux_sym_def_type_statement_token14] = ACTIONS(9575), + [aux_sym_call_statement_token1] = ACTIONS(9575), + [sym__ambiguous_call_statement] = ACTIONS(9575), + [aux_sym_addressof_expression_token1] = ACTIONS(9575), + [aux_sym_type_of_expression_token1] = ACTIONS(9575), + [aux_sym_unary_expression_token1] = ACTIONS(9575), + [sym_string_literal] = ACTIONS(9577), + [sym_number_literal] = ACTIONS(9577), + [aux_sym_boolean_literal_token1] = ACTIONS(9575), + [aux_sym_boolean_literal_token2] = ACTIONS(9575), + [sym_nothing_literal] = ACTIONS(9575), + [sym_null_literal] = ACTIONS(9575), + [sym_empty_literal] = ACTIONS(9575), + [sym_date_literal] = ACTIONS(9577), + [anon_sym_POUND] = ACTIONS(9575), + }, + [STATE(4069)] = { + [sym_do_condition] = STATE(4414), + [sym_identifier] = ACTIONS(8475), + [sym_newline] = ACTIONS(8477), + [anon_sym_COLON] = ACTIONS(8477), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8475), + [aux_sym_frm_property_statement_token1] = ACTIONS(8475), + [anon_sym_DOT] = ACTIONS(8475), + [anon_sym_BANG] = ACTIONS(8477), + [aux_sym__attribute_identifier_token1] = ACTIONS(8475), + [aux_sym_option_statement_token3] = ACTIONS(8475), + [aux_sym_type_declaration_token1] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8475), + [aux_sym_enum_declaration_token1] = ACTIONS(8475), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8475), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8475), + [aux_sym_declare_function_statement_token1] = ACTIONS(8475), + [aux_sym_preprocessor_const_token1] = ACTIONS(8475), + [aux_sym__property_get_header_token1] = ACTIONS(8475), + [aux_sym_event_declaration_token1] = ACTIONS(8475), + [sym_static_modifier] = ACTIONS(8475), + [sym__dim_keyword] = ACTIONS(8475), + [sym__redim_keyword] = ACTIONS(8475), + [aux_sym_get_accessor_token1] = ACTIONS(8475), + [aux_sym_set_accessor_token1] = ACTIONS(8475), + [aux_sym_const_declaration_token1] = ACTIONS(8475), + [anon_sym_LPAREN] = ACTIONS(8477), + [aux_sym_as_type_clause_token2] = ACTIONS(8475), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8475), + [aux_sym_visibility_token1] = ACTIONS(8475), + [aux_sym_visibility_token2] = ACTIONS(8475), + [aux_sym_elseif_fragment_token1] = ACTIONS(8475), + [aux_sym_else_fragment_token1] = ACTIONS(8475), + [aux_sym_select_statement_token1] = ACTIONS(8475), + [aux_sym__for_header_token1] = ACTIONS(8475), + [aux_sym_do_statement_token1] = ACTIONS(8475), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8475), + [aux_sym_exit_statement_token1] = ACTIONS(8475), + [sym_end_statement] = ACTIONS(8477), + [aux_sym_on_goto_statement_token1] = ACTIONS(8475), + [aux_sym_on_goto_statement_token2] = ACTIONS(8475), + [aux_sym_on_error_statement_token2] = ACTIONS(8475), + [sym__ambiguous_redim_statement] = ACTIONS(8477), + [aux_sym_erase_statement_token1] = ACTIONS(8475), + [aux_sym_open_statement_token1] = ACTIONS(8475), + [aux_sym_file_mode_token2] = ACTIONS(8475), + [aux_sym_file_access_token2] = ACTIONS(8475), + [aux_sym_file_lock_token2] = ACTIONS(8475), + [aux_sym_print_statement_token1] = ACTIONS(8475), + [anon_sym_PLUS] = ACTIONS(8477), + [anon_sym_DASH] = ACTIONS(8475), + [anon_sym_QMARK] = ACTIONS(8477), + [aux_sym_close_statement_token1] = ACTIONS(8475), + [aux_sym_put_statement_token1] = ACTIONS(8475), + [aux_sym_unlock_statement_token1] = ACTIONS(8475), + [aux_sym_seek_statement_token1] = ACTIONS(8475), + [sym_reset_statement] = ACTIONS(8475), + [aux_sym_raise_event_statement_token1] = ACTIONS(8475), + [sym_stop_statement] = ACTIONS(8475), + [sym_beep_statement] = ACTIONS(8475), + [aux_sym_unload_statement_token1] = ACTIONS(8475), + [aux_sym_def_type_statement_token1] = ACTIONS(8475), + [aux_sym_def_type_statement_token2] = ACTIONS(8475), + [aux_sym_def_type_statement_token3] = ACTIONS(8475), + [aux_sym_def_type_statement_token4] = ACTIONS(8475), + [aux_sym_def_type_statement_token5] = ACTIONS(8475), + [aux_sym_def_type_statement_token6] = ACTIONS(8475), + [aux_sym_def_type_statement_token7] = ACTIONS(8475), + [aux_sym_def_type_statement_token8] = ACTIONS(8475), + [aux_sym_def_type_statement_token9] = ACTIONS(8475), + [aux_sym_def_type_statement_token10] = ACTIONS(8475), + [aux_sym_def_type_statement_token11] = ACTIONS(8475), + [aux_sym_def_type_statement_token12] = ACTIONS(8475), + [aux_sym_def_type_statement_token13] = ACTIONS(8475), + [aux_sym_def_type_statement_token14] = ACTIONS(8475), + [aux_sym_call_statement_token1] = ACTIONS(8475), + [sym__ambiguous_call_statement] = ACTIONS(8475), + [aux_sym_addressof_expression_token1] = ACTIONS(8475), + [aux_sym_type_of_expression_token1] = ACTIONS(8475), + [aux_sym_unary_expression_token1] = ACTIONS(8475), + [sym_string_literal] = ACTIONS(8477), + [sym_number_literal] = ACTIONS(8477), + [aux_sym_boolean_literal_token1] = ACTIONS(8475), + [aux_sym_boolean_literal_token2] = ACTIONS(8475), + [sym_nothing_literal] = ACTIONS(8475), + [sym_null_literal] = ACTIONS(8475), + [sym_empty_literal] = ACTIONS(8475), + [sym_date_literal] = ACTIONS(8477), + [anon_sym_POUND] = ACTIONS(8475), + }, + [STATE(4070)] = { + [sym_do_condition] = STATE(4415), + [sym_identifier] = ACTIONS(8491), + [sym_newline] = ACTIONS(8493), + [anon_sym_COLON] = ACTIONS(8493), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8491), + [aux_sym_frm_property_statement_token1] = ACTIONS(8491), + [anon_sym_DOT] = ACTIONS(8491), + [anon_sym_BANG] = ACTIONS(8493), + [aux_sym__attribute_identifier_token1] = ACTIONS(8491), + [aux_sym_option_statement_token3] = ACTIONS(8491), + [aux_sym_type_declaration_token1] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8491), + [aux_sym_enum_declaration_token1] = ACTIONS(8491), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8491), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8491), + [aux_sym_declare_function_statement_token1] = ACTIONS(8491), + [aux_sym_preprocessor_const_token1] = ACTIONS(8491), + [aux_sym__property_get_header_token1] = ACTIONS(8491), + [aux_sym_event_declaration_token1] = ACTIONS(8491), + [sym_static_modifier] = ACTIONS(8491), + [sym__dim_keyword] = ACTIONS(8491), + [sym__redim_keyword] = ACTIONS(8491), + [aux_sym_get_accessor_token1] = ACTIONS(8491), + [aux_sym_set_accessor_token1] = ACTIONS(8491), + [aux_sym_const_declaration_token1] = ACTIONS(8491), + [anon_sym_LPAREN] = ACTIONS(8493), + [aux_sym_as_type_clause_token2] = ACTIONS(8491), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8491), + [aux_sym_visibility_token1] = ACTIONS(8491), + [aux_sym_visibility_token2] = ACTIONS(8491), + [aux_sym_elseif_fragment_token1] = ACTIONS(8491), + [aux_sym_else_fragment_token1] = ACTIONS(8491), + [aux_sym_select_statement_token1] = ACTIONS(8491), + [aux_sym__for_header_token1] = ACTIONS(8491), + [aux_sym_do_statement_token1] = ACTIONS(8491), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8491), + [aux_sym_exit_statement_token1] = ACTIONS(8491), + [sym_end_statement] = ACTIONS(8493), + [aux_sym_on_goto_statement_token1] = ACTIONS(8491), + [aux_sym_on_goto_statement_token2] = ACTIONS(8491), + [aux_sym_on_error_statement_token2] = ACTIONS(8491), + [sym__ambiguous_redim_statement] = ACTIONS(8493), + [aux_sym_erase_statement_token1] = ACTIONS(8491), + [aux_sym_open_statement_token1] = ACTIONS(8491), + [aux_sym_file_mode_token2] = ACTIONS(8491), + [aux_sym_file_access_token2] = ACTIONS(8491), + [aux_sym_file_lock_token2] = ACTIONS(8491), + [aux_sym_print_statement_token1] = ACTIONS(8491), + [anon_sym_PLUS] = ACTIONS(8493), + [anon_sym_DASH] = ACTIONS(8491), + [anon_sym_QMARK] = ACTIONS(8493), + [aux_sym_close_statement_token1] = ACTIONS(8491), + [aux_sym_put_statement_token1] = ACTIONS(8491), + [aux_sym_unlock_statement_token1] = ACTIONS(8491), + [aux_sym_seek_statement_token1] = ACTIONS(8491), + [sym_reset_statement] = ACTIONS(8491), + [aux_sym_raise_event_statement_token1] = ACTIONS(8491), + [sym_stop_statement] = ACTIONS(8491), + [sym_beep_statement] = ACTIONS(8491), + [aux_sym_unload_statement_token1] = ACTIONS(8491), + [aux_sym_def_type_statement_token1] = ACTIONS(8491), + [aux_sym_def_type_statement_token2] = ACTIONS(8491), + [aux_sym_def_type_statement_token3] = ACTIONS(8491), + [aux_sym_def_type_statement_token4] = ACTIONS(8491), + [aux_sym_def_type_statement_token5] = ACTIONS(8491), + [aux_sym_def_type_statement_token6] = ACTIONS(8491), + [aux_sym_def_type_statement_token7] = ACTIONS(8491), + [aux_sym_def_type_statement_token8] = ACTIONS(8491), + [aux_sym_def_type_statement_token9] = ACTIONS(8491), + [aux_sym_def_type_statement_token10] = ACTIONS(8491), + [aux_sym_def_type_statement_token11] = ACTIONS(8491), + [aux_sym_def_type_statement_token12] = ACTIONS(8491), + [aux_sym_def_type_statement_token13] = ACTIONS(8491), + [aux_sym_def_type_statement_token14] = ACTIONS(8491), + [aux_sym_call_statement_token1] = ACTIONS(8491), + [sym__ambiguous_call_statement] = ACTIONS(8491), + [aux_sym_addressof_expression_token1] = ACTIONS(8491), + [aux_sym_type_of_expression_token1] = ACTIONS(8491), + [aux_sym_unary_expression_token1] = ACTIONS(8491), + [sym_string_literal] = ACTIONS(8493), + [sym_number_literal] = ACTIONS(8493), + [aux_sym_boolean_literal_token1] = ACTIONS(8491), + [aux_sym_boolean_literal_token2] = ACTIONS(8491), + [sym_nothing_literal] = ACTIONS(8491), + [sym_null_literal] = ACTIONS(8491), + [sym_empty_literal] = ACTIONS(8491), + [sym_date_literal] = ACTIONS(8493), + [anon_sym_POUND] = ACTIONS(8491), + }, + [STATE(4071)] = { + [sym_do_condition] = STATE(4416), + [sym_identifier] = ACTIONS(8501), + [sym_newline] = ACTIONS(8503), + [anon_sym_COLON] = ACTIONS(8503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8501), + [aux_sym_frm_property_statement_token1] = ACTIONS(8501), + [anon_sym_DOT] = ACTIONS(8501), + [anon_sym_BANG] = ACTIONS(8503), + [aux_sym__attribute_identifier_token1] = ACTIONS(8501), + [aux_sym_option_statement_token3] = ACTIONS(8501), + [aux_sym_type_declaration_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8501), + [aux_sym_enum_declaration_token1] = ACTIONS(8501), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8501), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8501), + [aux_sym_declare_function_statement_token1] = ACTIONS(8501), + [aux_sym_preprocessor_const_token1] = ACTIONS(8501), + [aux_sym__property_get_header_token1] = ACTIONS(8501), + [aux_sym_event_declaration_token1] = ACTIONS(8501), + [sym_static_modifier] = ACTIONS(8501), + [sym__dim_keyword] = ACTIONS(8501), + [sym__redim_keyword] = ACTIONS(8501), + [aux_sym_get_accessor_token1] = ACTIONS(8501), + [aux_sym_set_accessor_token1] = ACTIONS(8501), + [aux_sym_const_declaration_token1] = ACTIONS(8501), + [anon_sym_LPAREN] = ACTIONS(8503), + [aux_sym_as_type_clause_token2] = ACTIONS(8501), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8501), + [aux_sym_visibility_token1] = ACTIONS(8501), + [aux_sym_visibility_token2] = ACTIONS(8501), + [aux_sym_elseif_fragment_token1] = ACTIONS(8501), + [aux_sym_else_fragment_token1] = ACTIONS(8501), + [aux_sym_select_statement_token1] = ACTIONS(8501), + [aux_sym__for_header_token1] = ACTIONS(8501), + [aux_sym_do_statement_token1] = ACTIONS(8501), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8501), + [aux_sym_exit_statement_token1] = ACTIONS(8501), + [sym_end_statement] = ACTIONS(8503), + [aux_sym_on_goto_statement_token1] = ACTIONS(8501), + [aux_sym_on_goto_statement_token2] = ACTIONS(8501), + [aux_sym_on_error_statement_token2] = ACTIONS(8501), + [sym__ambiguous_redim_statement] = ACTIONS(8503), + [aux_sym_erase_statement_token1] = ACTIONS(8501), + [aux_sym_open_statement_token1] = ACTIONS(8501), + [aux_sym_file_mode_token2] = ACTIONS(8501), + [aux_sym_file_access_token2] = ACTIONS(8501), + [aux_sym_file_lock_token2] = ACTIONS(8501), + [aux_sym_print_statement_token1] = ACTIONS(8501), + [anon_sym_PLUS] = ACTIONS(8503), + [anon_sym_DASH] = ACTIONS(8501), + [anon_sym_QMARK] = ACTIONS(8503), + [aux_sym_close_statement_token1] = ACTIONS(8501), + [aux_sym_put_statement_token1] = ACTIONS(8501), + [aux_sym_unlock_statement_token1] = ACTIONS(8501), + [aux_sym_seek_statement_token1] = ACTIONS(8501), + [sym_reset_statement] = ACTIONS(8501), + [aux_sym_raise_event_statement_token1] = ACTIONS(8501), + [sym_stop_statement] = ACTIONS(8501), + [sym_beep_statement] = ACTIONS(8501), + [aux_sym_unload_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token2] = ACTIONS(8501), + [aux_sym_def_type_statement_token3] = ACTIONS(8501), + [aux_sym_def_type_statement_token4] = ACTIONS(8501), + [aux_sym_def_type_statement_token5] = ACTIONS(8501), + [aux_sym_def_type_statement_token6] = ACTIONS(8501), + [aux_sym_def_type_statement_token7] = ACTIONS(8501), + [aux_sym_def_type_statement_token8] = ACTIONS(8501), + [aux_sym_def_type_statement_token9] = ACTIONS(8501), + [aux_sym_def_type_statement_token10] = ACTIONS(8501), + [aux_sym_def_type_statement_token11] = ACTIONS(8501), + [aux_sym_def_type_statement_token12] = ACTIONS(8501), + [aux_sym_def_type_statement_token13] = ACTIONS(8501), + [aux_sym_def_type_statement_token14] = ACTIONS(8501), + [aux_sym_call_statement_token1] = ACTIONS(8501), + [sym__ambiguous_call_statement] = ACTIONS(8501), + [aux_sym_addressof_expression_token1] = ACTIONS(8501), + [aux_sym_type_of_expression_token1] = ACTIONS(8501), + [aux_sym_unary_expression_token1] = ACTIONS(8501), + [sym_string_literal] = ACTIONS(8503), + [sym_number_literal] = ACTIONS(8503), + [aux_sym_boolean_literal_token1] = ACTIONS(8501), + [aux_sym_boolean_literal_token2] = ACTIONS(8501), + [sym_nothing_literal] = ACTIONS(8501), + [sym_null_literal] = ACTIONS(8501), + [sym_empty_literal] = ACTIONS(8501), + [sym_date_literal] = ACTIONS(8503), + [anon_sym_POUND] = ACTIONS(8501), + }, + [STATE(4072)] = { + [sym_do_condition] = STATE(4417), + [sym_identifier] = ACTIONS(8509), + [sym_newline] = ACTIONS(8511), + [anon_sym_COLON] = ACTIONS(8511), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8509), + [aux_sym_frm_property_statement_token1] = ACTIONS(8509), + [anon_sym_DOT] = ACTIONS(8509), + [anon_sym_BANG] = ACTIONS(8511), + [aux_sym__attribute_identifier_token1] = ACTIONS(8509), + [aux_sym_option_statement_token3] = ACTIONS(8509), + [aux_sym_type_declaration_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8509), + [aux_sym_enum_declaration_token1] = ACTIONS(8509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8509), + [aux_sym_declare_function_statement_token1] = ACTIONS(8509), + [aux_sym_preprocessor_const_token1] = ACTIONS(8509), + [aux_sym__property_get_header_token1] = ACTIONS(8509), + [aux_sym_event_declaration_token1] = ACTIONS(8509), + [sym_static_modifier] = ACTIONS(8509), + [sym__dim_keyword] = ACTIONS(8509), + [sym__redim_keyword] = ACTIONS(8509), + [aux_sym_get_accessor_token1] = ACTIONS(8509), + [aux_sym_set_accessor_token1] = ACTIONS(8509), + [aux_sym_const_declaration_token1] = ACTIONS(8509), + [anon_sym_LPAREN] = ACTIONS(8511), + [aux_sym_as_type_clause_token2] = ACTIONS(8509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8509), + [aux_sym_visibility_token1] = ACTIONS(8509), + [aux_sym_visibility_token2] = ACTIONS(8509), + [aux_sym_elseif_fragment_token1] = ACTIONS(8509), + [aux_sym_else_fragment_token1] = ACTIONS(8509), + [aux_sym_select_statement_token1] = ACTIONS(8509), + [aux_sym__for_header_token1] = ACTIONS(8509), + [aux_sym_do_statement_token1] = ACTIONS(8509), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8509), + [aux_sym_exit_statement_token1] = ACTIONS(8509), + [sym_end_statement] = ACTIONS(8511), + [aux_sym_on_goto_statement_token1] = ACTIONS(8509), + [aux_sym_on_goto_statement_token2] = ACTIONS(8509), + [aux_sym_on_error_statement_token2] = ACTIONS(8509), + [sym__ambiguous_redim_statement] = ACTIONS(8511), + [aux_sym_erase_statement_token1] = ACTIONS(8509), + [aux_sym_open_statement_token1] = ACTIONS(8509), + [aux_sym_file_mode_token2] = ACTIONS(8509), + [aux_sym_file_access_token2] = ACTIONS(8509), + [aux_sym_file_lock_token2] = ACTIONS(8509), + [aux_sym_print_statement_token1] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(8511), + [anon_sym_DASH] = ACTIONS(8509), + [anon_sym_QMARK] = ACTIONS(8511), + [aux_sym_close_statement_token1] = ACTIONS(8509), + [aux_sym_put_statement_token1] = ACTIONS(8509), + [aux_sym_unlock_statement_token1] = ACTIONS(8509), + [aux_sym_seek_statement_token1] = ACTIONS(8509), + [sym_reset_statement] = ACTIONS(8509), + [aux_sym_raise_event_statement_token1] = ACTIONS(8509), + [sym_stop_statement] = ACTIONS(8509), + [sym_beep_statement] = ACTIONS(8509), + [aux_sym_unload_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token2] = ACTIONS(8509), + [aux_sym_def_type_statement_token3] = ACTIONS(8509), + [aux_sym_def_type_statement_token4] = ACTIONS(8509), + [aux_sym_def_type_statement_token5] = ACTIONS(8509), + [aux_sym_def_type_statement_token6] = ACTIONS(8509), + [aux_sym_def_type_statement_token7] = ACTIONS(8509), + [aux_sym_def_type_statement_token8] = ACTIONS(8509), + [aux_sym_def_type_statement_token9] = ACTIONS(8509), + [aux_sym_def_type_statement_token10] = ACTIONS(8509), + [aux_sym_def_type_statement_token11] = ACTIONS(8509), + [aux_sym_def_type_statement_token12] = ACTIONS(8509), + [aux_sym_def_type_statement_token13] = ACTIONS(8509), + [aux_sym_def_type_statement_token14] = ACTIONS(8509), + [aux_sym_call_statement_token1] = ACTIONS(8509), + [sym__ambiguous_call_statement] = ACTIONS(8509), + [aux_sym_addressof_expression_token1] = ACTIONS(8509), + [aux_sym_type_of_expression_token1] = ACTIONS(8509), + [aux_sym_unary_expression_token1] = ACTIONS(8509), + [sym_string_literal] = ACTIONS(8511), + [sym_number_literal] = ACTIONS(8511), + [aux_sym_boolean_literal_token1] = ACTIONS(8509), + [aux_sym_boolean_literal_token2] = ACTIONS(8509), + [sym_nothing_literal] = ACTIONS(8509), + [sym_null_literal] = ACTIONS(8509), + [sym_empty_literal] = ACTIONS(8509), + [sym_date_literal] = ACTIONS(8511), + [anon_sym_POUND] = ACTIONS(8509), + }, + [STATE(4073)] = { + [sym_do_condition] = STATE(4419), + [sym_identifier] = ACTIONS(8513), + [sym_newline] = ACTIONS(8515), + [anon_sym_COLON] = ACTIONS(8515), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8513), + [aux_sym_frm_property_statement_token1] = ACTIONS(8513), + [anon_sym_DOT] = ACTIONS(8513), + [anon_sym_BANG] = ACTIONS(8515), + [aux_sym__attribute_identifier_token1] = ACTIONS(8513), + [aux_sym_option_statement_token3] = ACTIONS(8513), + [aux_sym_type_declaration_token1] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8513), + [aux_sym_enum_declaration_token1] = ACTIONS(8513), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8513), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8513), + [aux_sym_declare_function_statement_token1] = ACTIONS(8513), + [aux_sym_preprocessor_const_token1] = ACTIONS(8513), + [aux_sym__property_get_header_token1] = ACTIONS(8513), + [aux_sym_event_declaration_token1] = ACTIONS(8513), + [sym_static_modifier] = ACTIONS(8513), + [sym__dim_keyword] = ACTIONS(8513), + [sym__redim_keyword] = ACTIONS(8513), + [aux_sym_get_accessor_token1] = ACTIONS(8513), + [aux_sym_set_accessor_token1] = ACTIONS(8513), + [aux_sym_const_declaration_token1] = ACTIONS(8513), + [anon_sym_LPAREN] = ACTIONS(8515), + [aux_sym_as_type_clause_token2] = ACTIONS(8513), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8513), + [aux_sym_visibility_token1] = ACTIONS(8513), + [aux_sym_visibility_token2] = ACTIONS(8513), + [aux_sym_elseif_fragment_token1] = ACTIONS(8513), + [aux_sym_else_fragment_token1] = ACTIONS(8513), + [aux_sym_select_statement_token1] = ACTIONS(8513), + [aux_sym__for_header_token1] = ACTIONS(8513), + [aux_sym_do_statement_token1] = ACTIONS(8513), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8513), + [aux_sym_exit_statement_token1] = ACTIONS(8513), + [sym_end_statement] = ACTIONS(8515), + [aux_sym_on_goto_statement_token1] = ACTIONS(8513), + [aux_sym_on_goto_statement_token2] = ACTIONS(8513), + [aux_sym_on_error_statement_token2] = ACTIONS(8513), + [sym__ambiguous_redim_statement] = ACTIONS(8515), + [aux_sym_erase_statement_token1] = ACTIONS(8513), + [aux_sym_open_statement_token1] = ACTIONS(8513), + [aux_sym_file_mode_token2] = ACTIONS(8513), + [aux_sym_file_access_token2] = ACTIONS(8513), + [aux_sym_file_lock_token2] = ACTIONS(8513), + [aux_sym_print_statement_token1] = ACTIONS(8513), + [anon_sym_PLUS] = ACTIONS(8515), + [anon_sym_DASH] = ACTIONS(8513), + [anon_sym_QMARK] = ACTIONS(8515), + [aux_sym_close_statement_token1] = ACTIONS(8513), + [aux_sym_put_statement_token1] = ACTIONS(8513), + [aux_sym_unlock_statement_token1] = ACTIONS(8513), + [aux_sym_seek_statement_token1] = ACTIONS(8513), + [sym_reset_statement] = ACTIONS(8513), + [aux_sym_raise_event_statement_token1] = ACTIONS(8513), + [sym_stop_statement] = ACTIONS(8513), + [sym_beep_statement] = ACTIONS(8513), + [aux_sym_unload_statement_token1] = ACTIONS(8513), + [aux_sym_def_type_statement_token1] = ACTIONS(8513), + [aux_sym_def_type_statement_token2] = ACTIONS(8513), + [aux_sym_def_type_statement_token3] = ACTIONS(8513), + [aux_sym_def_type_statement_token4] = ACTIONS(8513), + [aux_sym_def_type_statement_token5] = ACTIONS(8513), + [aux_sym_def_type_statement_token6] = ACTIONS(8513), + [aux_sym_def_type_statement_token7] = ACTIONS(8513), + [aux_sym_def_type_statement_token8] = ACTIONS(8513), + [aux_sym_def_type_statement_token9] = ACTIONS(8513), + [aux_sym_def_type_statement_token10] = ACTIONS(8513), + [aux_sym_def_type_statement_token11] = ACTIONS(8513), + [aux_sym_def_type_statement_token12] = ACTIONS(8513), + [aux_sym_def_type_statement_token13] = ACTIONS(8513), + [aux_sym_def_type_statement_token14] = ACTIONS(8513), + [aux_sym_call_statement_token1] = ACTIONS(8513), + [sym__ambiguous_call_statement] = ACTIONS(8513), + [aux_sym_addressof_expression_token1] = ACTIONS(8513), + [aux_sym_type_of_expression_token1] = ACTIONS(8513), + [aux_sym_unary_expression_token1] = ACTIONS(8513), + [sym_string_literal] = ACTIONS(8515), + [sym_number_literal] = ACTIONS(8515), + [aux_sym_boolean_literal_token1] = ACTIONS(8513), + [aux_sym_boolean_literal_token2] = ACTIONS(8513), + [sym_nothing_literal] = ACTIONS(8513), + [sym_null_literal] = ACTIONS(8513), + [sym_empty_literal] = ACTIONS(8513), + [sym_date_literal] = ACTIONS(8515), + [anon_sym_POUND] = ACTIONS(8513), + }, + [STATE(4074)] = { + [sym_do_condition] = STATE(4421), + [sym_identifier] = ACTIONS(8517), + [sym_newline] = ACTIONS(8519), + [anon_sym_COLON] = ACTIONS(8519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8517), + [aux_sym_frm_property_statement_token1] = ACTIONS(8517), + [anon_sym_DOT] = ACTIONS(8517), + [anon_sym_BANG] = ACTIONS(8519), + [aux_sym__attribute_identifier_token1] = ACTIONS(8517), + [aux_sym_option_statement_token3] = ACTIONS(8517), + [aux_sym_type_declaration_token1] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8517), + [aux_sym_enum_declaration_token1] = ACTIONS(8517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8517), + [aux_sym_declare_function_statement_token1] = ACTIONS(8517), + [aux_sym_preprocessor_const_token1] = ACTIONS(8517), + [aux_sym__property_get_header_token1] = ACTIONS(8517), + [aux_sym_event_declaration_token1] = ACTIONS(8517), + [sym_static_modifier] = ACTIONS(8517), + [sym__dim_keyword] = ACTIONS(8517), + [sym__redim_keyword] = ACTIONS(8517), + [aux_sym_get_accessor_token1] = ACTIONS(8517), + [aux_sym_set_accessor_token1] = ACTIONS(8517), + [aux_sym_const_declaration_token1] = ACTIONS(8517), + [anon_sym_LPAREN] = ACTIONS(8519), + [aux_sym_as_type_clause_token2] = ACTIONS(8517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8517), + [aux_sym_visibility_token1] = ACTIONS(8517), + [aux_sym_visibility_token2] = ACTIONS(8517), + [aux_sym_elseif_fragment_token1] = ACTIONS(8517), + [aux_sym_else_fragment_token1] = ACTIONS(8517), + [aux_sym_select_statement_token1] = ACTIONS(8517), + [aux_sym__for_header_token1] = ACTIONS(8517), + [aux_sym_do_statement_token1] = ACTIONS(8517), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8517), + [aux_sym_exit_statement_token1] = ACTIONS(8517), + [sym_end_statement] = ACTIONS(8519), + [aux_sym_on_goto_statement_token1] = ACTIONS(8517), + [aux_sym_on_goto_statement_token2] = ACTIONS(8517), + [aux_sym_on_error_statement_token2] = ACTIONS(8517), + [sym__ambiguous_redim_statement] = ACTIONS(8519), + [aux_sym_erase_statement_token1] = ACTIONS(8517), + [aux_sym_open_statement_token1] = ACTIONS(8517), + [aux_sym_file_mode_token2] = ACTIONS(8517), + [aux_sym_file_access_token2] = ACTIONS(8517), + [aux_sym_file_lock_token2] = ACTIONS(8517), + [aux_sym_print_statement_token1] = ACTIONS(8517), + [anon_sym_PLUS] = ACTIONS(8519), + [anon_sym_DASH] = ACTIONS(8517), + [anon_sym_QMARK] = ACTIONS(8519), + [aux_sym_close_statement_token1] = ACTIONS(8517), + [aux_sym_put_statement_token1] = ACTIONS(8517), + [aux_sym_unlock_statement_token1] = ACTIONS(8517), + [aux_sym_seek_statement_token1] = ACTIONS(8517), + [sym_reset_statement] = ACTIONS(8517), + [aux_sym_raise_event_statement_token1] = ACTIONS(8517), + [sym_stop_statement] = ACTIONS(8517), + [sym_beep_statement] = ACTIONS(8517), + [aux_sym_unload_statement_token1] = ACTIONS(8517), + [aux_sym_def_type_statement_token1] = ACTIONS(8517), + [aux_sym_def_type_statement_token2] = ACTIONS(8517), + [aux_sym_def_type_statement_token3] = ACTIONS(8517), + [aux_sym_def_type_statement_token4] = ACTIONS(8517), + [aux_sym_def_type_statement_token5] = ACTIONS(8517), + [aux_sym_def_type_statement_token6] = ACTIONS(8517), + [aux_sym_def_type_statement_token7] = ACTIONS(8517), + [aux_sym_def_type_statement_token8] = ACTIONS(8517), + [aux_sym_def_type_statement_token9] = ACTIONS(8517), + [aux_sym_def_type_statement_token10] = ACTIONS(8517), + [aux_sym_def_type_statement_token11] = ACTIONS(8517), + [aux_sym_def_type_statement_token12] = ACTIONS(8517), + [aux_sym_def_type_statement_token13] = ACTIONS(8517), + [aux_sym_def_type_statement_token14] = ACTIONS(8517), + [aux_sym_call_statement_token1] = ACTIONS(8517), + [sym__ambiguous_call_statement] = ACTIONS(8517), + [aux_sym_addressof_expression_token1] = ACTIONS(8517), + [aux_sym_type_of_expression_token1] = ACTIONS(8517), + [aux_sym_unary_expression_token1] = ACTIONS(8517), + [sym_string_literal] = ACTIONS(8519), + [sym_number_literal] = ACTIONS(8519), + [aux_sym_boolean_literal_token1] = ACTIONS(8517), + [aux_sym_boolean_literal_token2] = ACTIONS(8517), + [sym_nothing_literal] = ACTIONS(8517), + [sym_null_literal] = ACTIONS(8517), + [sym_empty_literal] = ACTIONS(8517), + [sym_date_literal] = ACTIONS(8519), + [anon_sym_POUND] = ACTIONS(8517), + }, + [STATE(4075)] = { + [aux_sym_erase_statement_repeat1] = STATE(4075), + [sym_identifier] = ACTIONS(8607), + [sym_newline] = ACTIONS(8609), + [anon_sym_COLON] = ACTIONS(8609), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8607), + [aux_sym_frm_property_statement_token1] = ACTIONS(8607), + [anon_sym_DOT] = ACTIONS(8607), + [anon_sym_BANG] = ACTIONS(8609), + [aux_sym__attribute_identifier_token1] = ACTIONS(8607), + [aux_sym_option_statement_token3] = ACTIONS(8607), + [aux_sym_type_declaration_token1] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8607), + [aux_sym_enum_declaration_token1] = ACTIONS(8607), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8607), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8607), + [aux_sym_declare_function_statement_token1] = ACTIONS(8607), + [aux_sym_preprocessor_const_token1] = ACTIONS(8607), + [aux_sym__property_get_header_token1] = ACTIONS(8607), + [aux_sym_event_declaration_token1] = ACTIONS(8607), + [sym_static_modifier] = ACTIONS(8607), + [sym__dim_keyword] = ACTIONS(8607), + [sym__redim_keyword] = ACTIONS(8607), + [aux_sym_get_accessor_token1] = ACTIONS(8607), + [aux_sym_set_accessor_token1] = ACTIONS(8607), + [anon_sym_COMMA] = ACTIONS(9579), + [aux_sym_const_declaration_token1] = ACTIONS(8607), + [anon_sym_LPAREN] = ACTIONS(8609), + [aux_sym_as_type_clause_token2] = ACTIONS(8607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8607), + [aux_sym_visibility_token1] = ACTIONS(8607), + [aux_sym_visibility_token2] = ACTIONS(8607), + [aux_sym_elseif_fragment_token1] = ACTIONS(8607), + [aux_sym_else_fragment_token1] = ACTIONS(8607), + [aux_sym_select_statement_token1] = ACTIONS(8607), + [aux_sym__for_header_token1] = ACTIONS(8607), + [aux_sym_do_statement_token1] = ACTIONS(8607), + [aux_sym_do_condition_token1] = ACTIONS(8607), + [aux_sym_with_statement_token1] = ACTIONS(8607), + [aux_sym_exit_statement_token1] = ACTIONS(8607), + [sym_end_statement] = ACTIONS(8609), + [aux_sym_on_goto_statement_token1] = ACTIONS(8607), + [aux_sym_on_goto_statement_token2] = ACTIONS(8607), + [aux_sym_on_error_statement_token2] = ACTIONS(8607), + [sym__ambiguous_redim_statement] = ACTIONS(8609), + [aux_sym_erase_statement_token1] = ACTIONS(8607), + [aux_sym_open_statement_token1] = ACTIONS(8607), + [aux_sym_file_mode_token2] = ACTIONS(8607), + [aux_sym_file_access_token2] = ACTIONS(8607), + [aux_sym_file_lock_token2] = ACTIONS(8607), + [aux_sym_print_statement_token1] = ACTIONS(8607), + [anon_sym_PLUS] = ACTIONS(8609), + [anon_sym_DASH] = ACTIONS(8607), + [anon_sym_QMARK] = ACTIONS(8609), + [aux_sym_close_statement_token1] = ACTIONS(8607), + [aux_sym_put_statement_token1] = ACTIONS(8607), + [aux_sym_unlock_statement_token1] = ACTIONS(8607), + [aux_sym_seek_statement_token1] = ACTIONS(8607), + [sym_reset_statement] = ACTIONS(8607), + [aux_sym_raise_event_statement_token1] = ACTIONS(8607), + [sym_stop_statement] = ACTIONS(8607), + [sym_beep_statement] = ACTIONS(8607), + [aux_sym_unload_statement_token1] = ACTIONS(8607), + [aux_sym_def_type_statement_token1] = ACTIONS(8607), + [aux_sym_def_type_statement_token2] = ACTIONS(8607), + [aux_sym_def_type_statement_token3] = ACTIONS(8607), + [aux_sym_def_type_statement_token4] = ACTIONS(8607), + [aux_sym_def_type_statement_token5] = ACTIONS(8607), + [aux_sym_def_type_statement_token6] = ACTIONS(8607), + [aux_sym_def_type_statement_token7] = ACTIONS(8607), + [aux_sym_def_type_statement_token8] = ACTIONS(8607), + [aux_sym_def_type_statement_token9] = ACTIONS(8607), + [aux_sym_def_type_statement_token10] = ACTIONS(8607), + [aux_sym_def_type_statement_token11] = ACTIONS(8607), + [aux_sym_def_type_statement_token12] = ACTIONS(8607), + [aux_sym_def_type_statement_token13] = ACTIONS(8607), + [aux_sym_def_type_statement_token14] = ACTIONS(8607), + [aux_sym_call_statement_token1] = ACTIONS(8607), + [sym__ambiguous_call_statement] = ACTIONS(8607), + [aux_sym_addressof_expression_token1] = ACTIONS(8607), + [aux_sym_type_of_expression_token1] = ACTIONS(8607), + [aux_sym_unary_expression_token1] = ACTIONS(8607), + [sym_string_literal] = ACTIONS(8609), + [sym_number_literal] = ACTIONS(8609), + [aux_sym_boolean_literal_token1] = ACTIONS(8607), + [aux_sym_boolean_literal_token2] = ACTIONS(8607), + [sym_nothing_literal] = ACTIONS(8607), + [sym_null_literal] = ACTIONS(8607), + [sym_empty_literal] = ACTIONS(8607), + [sym_date_literal] = ACTIONS(8609), + [anon_sym_POUND] = ACTIONS(8607), + }, + [STATE(4076)] = { + [sym_identifier] = ACTIONS(9582), + [sym_newline] = ACTIONS(9584), + [anon_sym_COLON] = ACTIONS(9584), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9582), + [aux_sym_frm_property_statement_token1] = ACTIONS(9582), + [anon_sym_DOT] = ACTIONS(9582), + [anon_sym_BANG] = ACTIONS(9584), + [aux_sym__attribute_identifier_token1] = ACTIONS(9582), + [aux_sym_option_statement_token3] = ACTIONS(9582), + [aux_sym_type_declaration_token1] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9582), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9582), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9582), + [aux_sym_enum_declaration_token1] = ACTIONS(9582), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9582), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9582), + [aux_sym_declare_function_statement_token1] = ACTIONS(9582), + [aux_sym_preprocessor_const_token1] = ACTIONS(9582), + [aux_sym__property_get_header_token1] = ACTIONS(9582), + [aux_sym_event_declaration_token1] = ACTIONS(9582), + [sym_static_modifier] = ACTIONS(9582), + [sym__dim_keyword] = ACTIONS(9582), + [sym__redim_keyword] = ACTIONS(9582), + [aux_sym_get_accessor_token1] = ACTIONS(9582), + [aux_sym_set_accessor_token1] = ACTIONS(9582), + [aux_sym_const_declaration_token1] = ACTIONS(9582), + [anon_sym_LPAREN] = ACTIONS(9584), + [aux_sym_as_type_clause_token2] = ACTIONS(9582), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9582), + [aux_sym_visibility_token1] = ACTIONS(9582), + [aux_sym_visibility_token2] = ACTIONS(9582), + [aux_sym_elseif_fragment_token1] = ACTIONS(9582), + [aux_sym_else_fragment_token1] = ACTIONS(9582), + [aux_sym_select_statement_token1] = ACTIONS(9582), + [aux_sym__for_header_token1] = ACTIONS(9582), + [aux_sym_do_statement_token1] = ACTIONS(9582), + [aux_sym_do_condition_token1] = ACTIONS(9582), + [aux_sym_with_statement_token1] = ACTIONS(9582), + [aux_sym_exit_statement_token1] = ACTIONS(9582), + [sym_end_statement] = ACTIONS(9584), + [aux_sym_on_goto_statement_token1] = ACTIONS(9582), + [aux_sym_on_goto_statement_token2] = ACTIONS(9582), + [aux_sym_on_error_statement_token2] = ACTIONS(9582), + [sym__ambiguous_redim_statement] = ACTIONS(9584), + [aux_sym_erase_statement_token1] = ACTIONS(9582), + [aux_sym_open_statement_token1] = ACTIONS(9582), + [aux_sym_file_mode_token2] = ACTIONS(9582), + [aux_sym_file_access_token2] = ACTIONS(9582), + [aux_sym_file_lock_token2] = ACTIONS(9582), + [aux_sym_print_statement_token1] = ACTIONS(9582), + [anon_sym_PLUS] = ACTIONS(9584), + [anon_sym_DASH] = ACTIONS(9582), + [anon_sym_QMARK] = ACTIONS(9584), + [aux_sym_close_statement_token1] = ACTIONS(9582), + [aux_sym_put_statement_token1] = ACTIONS(9582), + [aux_sym_unlock_statement_token1] = ACTIONS(9582), + [aux_sym_seek_statement_token1] = ACTIONS(9582), + [sym_reset_statement] = ACTIONS(9582), + [aux_sym_raise_event_statement_token1] = ACTIONS(9582), + [sym_stop_statement] = ACTIONS(9582), + [sym_beep_statement] = ACTIONS(9582), + [aux_sym_unload_statement_token1] = ACTIONS(9582), + [aux_sym_def_type_statement_token1] = ACTIONS(9582), + [aux_sym_def_type_statement_token2] = ACTIONS(9582), + [aux_sym_def_type_statement_token3] = ACTIONS(9582), + [aux_sym_def_type_statement_token4] = ACTIONS(9582), + [aux_sym_def_type_statement_token5] = ACTIONS(9582), + [aux_sym_def_type_statement_token6] = ACTIONS(9582), + [aux_sym_def_type_statement_token7] = ACTIONS(9582), + [aux_sym_def_type_statement_token8] = ACTIONS(9582), + [aux_sym_def_type_statement_token9] = ACTIONS(9582), + [aux_sym_def_type_statement_token10] = ACTIONS(9582), + [aux_sym_def_type_statement_token11] = ACTIONS(9582), + [aux_sym_def_type_statement_token12] = ACTIONS(9582), + [aux_sym_def_type_statement_token13] = ACTIONS(9582), + [aux_sym_def_type_statement_token14] = ACTIONS(9582), + [aux_sym_call_statement_token1] = ACTIONS(9582), + [sym__ambiguous_call_statement] = ACTIONS(9582), + [aux_sym_addressof_expression_token1] = ACTIONS(9582), + [aux_sym_type_of_expression_token1] = ACTIONS(9582), + [aux_sym_unary_expression_token1] = ACTIONS(9582), + [sym_string_literal] = ACTIONS(9584), + [sym_number_literal] = ACTIONS(9584), + [aux_sym_boolean_literal_token1] = ACTIONS(9582), + [aux_sym_boolean_literal_token2] = ACTIONS(9582), + [sym_nothing_literal] = ACTIONS(9582), + [sym_null_literal] = ACTIONS(9582), + [sym_empty_literal] = ACTIONS(9582), + [sym_date_literal] = ACTIONS(9584), + [anon_sym_POUND] = ACTIONS(9582), + }, + [STATE(4077)] = { + [sym_identifier] = ACTIONS(9586), + [sym_newline] = ACTIONS(9588), + [anon_sym_COLON] = ACTIONS(9588), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9586), + [aux_sym_frm_property_statement_token1] = ACTIONS(9586), + [anon_sym_DOT] = ACTIONS(9586), + [anon_sym_BANG] = ACTIONS(9588), + [aux_sym__attribute_identifier_token1] = ACTIONS(9586), + [aux_sym_option_statement_token3] = ACTIONS(9586), + [aux_sym_type_declaration_token1] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9586), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9586), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9586), + [aux_sym_enum_declaration_token1] = ACTIONS(9586), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9586), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9586), + [aux_sym_declare_function_statement_token1] = ACTIONS(9586), + [aux_sym_preprocessor_const_token1] = ACTIONS(9586), + [aux_sym__property_get_header_token1] = ACTIONS(9586), + [aux_sym_event_declaration_token1] = ACTIONS(9586), + [sym_static_modifier] = ACTIONS(9586), + [sym__dim_keyword] = ACTIONS(9586), + [sym__redim_keyword] = ACTIONS(9586), + [aux_sym_get_accessor_token1] = ACTIONS(9586), + [aux_sym_set_accessor_token1] = ACTIONS(9586), + [aux_sym_const_declaration_token1] = ACTIONS(9586), + [anon_sym_LPAREN] = ACTIONS(9588), + [aux_sym_as_type_clause_token2] = ACTIONS(9586), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9586), + [aux_sym_visibility_token1] = ACTIONS(9586), + [aux_sym_visibility_token2] = ACTIONS(9586), + [aux_sym_elseif_fragment_token1] = ACTIONS(9586), + [aux_sym_else_fragment_token1] = ACTIONS(9586), + [aux_sym_select_statement_token1] = ACTIONS(9586), + [aux_sym__for_header_token1] = ACTIONS(9586), + [aux_sym_do_statement_token1] = ACTIONS(9586), + [aux_sym_do_condition_token1] = ACTIONS(9586), + [aux_sym_with_statement_token1] = ACTIONS(9586), + [aux_sym_exit_statement_token1] = ACTIONS(9586), + [sym_end_statement] = ACTIONS(9588), + [aux_sym_on_goto_statement_token1] = ACTIONS(9586), + [aux_sym_on_goto_statement_token2] = ACTIONS(9586), + [aux_sym_on_error_statement_token2] = ACTIONS(9586), + [sym__ambiguous_redim_statement] = ACTIONS(9588), + [aux_sym_erase_statement_token1] = ACTIONS(9586), + [aux_sym_open_statement_token1] = ACTIONS(9586), + [aux_sym_file_mode_token2] = ACTIONS(9586), + [aux_sym_file_access_token2] = ACTIONS(9586), + [aux_sym_file_lock_token2] = ACTIONS(9586), + [aux_sym_print_statement_token1] = ACTIONS(9586), + [anon_sym_PLUS] = ACTIONS(9588), + [anon_sym_DASH] = ACTIONS(9586), + [anon_sym_QMARK] = ACTIONS(9588), + [aux_sym_close_statement_token1] = ACTIONS(9586), + [aux_sym_put_statement_token1] = ACTIONS(9586), + [aux_sym_unlock_statement_token1] = ACTIONS(9586), + [aux_sym_seek_statement_token1] = ACTIONS(9586), + [sym_reset_statement] = ACTIONS(9586), + [aux_sym_raise_event_statement_token1] = ACTIONS(9586), + [sym_stop_statement] = ACTIONS(9586), + [sym_beep_statement] = ACTIONS(9586), + [aux_sym_unload_statement_token1] = ACTIONS(9586), + [aux_sym_def_type_statement_token1] = ACTIONS(9586), + [aux_sym_def_type_statement_token2] = ACTIONS(9586), + [aux_sym_def_type_statement_token3] = ACTIONS(9586), + [aux_sym_def_type_statement_token4] = ACTIONS(9586), + [aux_sym_def_type_statement_token5] = ACTIONS(9586), + [aux_sym_def_type_statement_token6] = ACTIONS(9586), + [aux_sym_def_type_statement_token7] = ACTIONS(9586), + [aux_sym_def_type_statement_token8] = ACTIONS(9586), + [aux_sym_def_type_statement_token9] = ACTIONS(9586), + [aux_sym_def_type_statement_token10] = ACTIONS(9586), + [aux_sym_def_type_statement_token11] = ACTIONS(9586), + [aux_sym_def_type_statement_token12] = ACTIONS(9586), + [aux_sym_def_type_statement_token13] = ACTIONS(9586), + [aux_sym_def_type_statement_token14] = ACTIONS(9586), + [aux_sym_call_statement_token1] = ACTIONS(9586), + [sym__ambiguous_call_statement] = ACTIONS(9586), + [aux_sym_addressof_expression_token1] = ACTIONS(9586), + [aux_sym_type_of_expression_token1] = ACTIONS(9586), + [aux_sym_unary_expression_token1] = ACTIONS(9586), + [sym_string_literal] = ACTIONS(9588), + [sym_number_literal] = ACTIONS(9588), + [aux_sym_boolean_literal_token1] = ACTIONS(9586), + [aux_sym_boolean_literal_token2] = ACTIONS(9586), + [sym_nothing_literal] = ACTIONS(9586), + [sym_null_literal] = ACTIONS(9586), + [sym_empty_literal] = ACTIONS(9586), + [sym_date_literal] = ACTIONS(9588), + [anon_sym_POUND] = ACTIONS(9586), + }, + [STATE(4078)] = { + [sym_identifier] = ACTIONS(9590), + [sym_newline] = ACTIONS(9592), + [anon_sym_COLON] = ACTIONS(9592), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9590), + [aux_sym_frm_property_statement_token1] = ACTIONS(9590), + [anon_sym_DOT] = ACTIONS(9590), + [anon_sym_BANG] = ACTIONS(9592), + [aux_sym__attribute_identifier_token1] = ACTIONS(9590), + [aux_sym_option_statement_token3] = ACTIONS(9590), + [aux_sym_type_declaration_token1] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9590), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9590), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9590), + [aux_sym_enum_declaration_token1] = ACTIONS(9590), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9590), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9590), + [aux_sym_declare_function_statement_token1] = ACTIONS(9590), + [aux_sym_preprocessor_const_token1] = ACTIONS(9590), + [aux_sym__property_get_header_token1] = ACTIONS(9590), + [aux_sym_event_declaration_token1] = ACTIONS(9590), + [sym_static_modifier] = ACTIONS(9590), + [sym__dim_keyword] = ACTIONS(9590), + [sym__redim_keyword] = ACTIONS(9590), + [aux_sym_get_accessor_token1] = ACTIONS(9590), + [aux_sym_set_accessor_token1] = ACTIONS(9590), + [aux_sym_const_declaration_token1] = ACTIONS(9590), + [anon_sym_LPAREN] = ACTIONS(9592), + [aux_sym_as_type_clause_token2] = ACTIONS(9590), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9590), + [aux_sym_visibility_token1] = ACTIONS(9590), + [aux_sym_visibility_token2] = ACTIONS(9590), + [aux_sym_elseif_fragment_token1] = ACTIONS(9590), + [aux_sym_else_fragment_token1] = ACTIONS(9590), + [aux_sym_select_statement_token1] = ACTIONS(9590), + [aux_sym__for_header_token1] = ACTIONS(9590), + [aux_sym_do_statement_token1] = ACTIONS(9590), + [aux_sym_do_condition_token1] = ACTIONS(9590), + [aux_sym_with_statement_token1] = ACTIONS(9590), + [aux_sym_exit_statement_token1] = ACTIONS(9590), + [sym_end_statement] = ACTIONS(9592), + [aux_sym_on_goto_statement_token1] = ACTIONS(9590), + [aux_sym_on_goto_statement_token2] = ACTIONS(9590), + [aux_sym_on_error_statement_token2] = ACTIONS(9590), + [sym__ambiguous_redim_statement] = ACTIONS(9592), + [aux_sym_erase_statement_token1] = ACTIONS(9590), + [aux_sym_open_statement_token1] = ACTIONS(9590), + [aux_sym_file_mode_token2] = ACTIONS(9590), + [aux_sym_file_access_token2] = ACTIONS(9590), + [aux_sym_file_lock_token2] = ACTIONS(9590), + [aux_sym_print_statement_token1] = ACTIONS(9590), + [anon_sym_PLUS] = ACTIONS(9592), + [anon_sym_DASH] = ACTIONS(9590), + [anon_sym_QMARK] = ACTIONS(9592), + [aux_sym_close_statement_token1] = ACTIONS(9590), + [aux_sym_put_statement_token1] = ACTIONS(9590), + [aux_sym_unlock_statement_token1] = ACTIONS(9590), + [aux_sym_seek_statement_token1] = ACTIONS(9590), + [sym_reset_statement] = ACTIONS(9590), + [aux_sym_raise_event_statement_token1] = ACTIONS(9590), + [sym_stop_statement] = ACTIONS(9590), + [sym_beep_statement] = ACTIONS(9590), + [aux_sym_unload_statement_token1] = ACTIONS(9590), + [aux_sym_def_type_statement_token1] = ACTIONS(9590), + [aux_sym_def_type_statement_token2] = ACTIONS(9590), + [aux_sym_def_type_statement_token3] = ACTIONS(9590), + [aux_sym_def_type_statement_token4] = ACTIONS(9590), + [aux_sym_def_type_statement_token5] = ACTIONS(9590), + [aux_sym_def_type_statement_token6] = ACTIONS(9590), + [aux_sym_def_type_statement_token7] = ACTIONS(9590), + [aux_sym_def_type_statement_token8] = ACTIONS(9590), + [aux_sym_def_type_statement_token9] = ACTIONS(9590), + [aux_sym_def_type_statement_token10] = ACTIONS(9590), + [aux_sym_def_type_statement_token11] = ACTIONS(9590), + [aux_sym_def_type_statement_token12] = ACTIONS(9590), + [aux_sym_def_type_statement_token13] = ACTIONS(9590), + [aux_sym_def_type_statement_token14] = ACTIONS(9590), + [aux_sym_call_statement_token1] = ACTIONS(9590), + [sym__ambiguous_call_statement] = ACTIONS(9590), + [aux_sym_addressof_expression_token1] = ACTIONS(9590), + [aux_sym_type_of_expression_token1] = ACTIONS(9590), + [aux_sym_unary_expression_token1] = ACTIONS(9590), + [sym_string_literal] = ACTIONS(9592), + [sym_number_literal] = ACTIONS(9592), + [aux_sym_boolean_literal_token1] = ACTIONS(9590), + [aux_sym_boolean_literal_token2] = ACTIONS(9590), + [sym_nothing_literal] = ACTIONS(9590), + [sym_null_literal] = ACTIONS(9590), + [sym_empty_literal] = ACTIONS(9590), + [sym_date_literal] = ACTIONS(9592), + [anon_sym_POUND] = ACTIONS(9590), + }, + [STATE(4079)] = { + [sym_identifier] = ACTIONS(8162), + [sym_newline] = ACTIONS(8164), + [anon_sym_COLON] = ACTIONS(8164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8162), + [aux_sym_frm_property_statement_token1] = ACTIONS(8162), + [anon_sym_DOT] = ACTIONS(8162), + [anon_sym_BANG] = ACTIONS(8164), + [aux_sym__attribute_identifier_token1] = ACTIONS(8162), + [aux_sym_option_statement_token3] = ACTIONS(8162), + [aux_sym_type_declaration_token1] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8162), + [aux_sym_enum_declaration_token1] = ACTIONS(8162), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8162), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8162), + [aux_sym_declare_function_statement_token1] = ACTIONS(8162), + [aux_sym_preprocessor_const_token1] = ACTIONS(8162), + [aux_sym__property_get_header_token1] = ACTIONS(8162), + [aux_sym_event_declaration_token1] = ACTIONS(8162), + [sym_static_modifier] = ACTIONS(8162), + [sym__dim_keyword] = ACTIONS(8162), + [sym__redim_keyword] = ACTIONS(8162), + [aux_sym_get_accessor_token1] = ACTIONS(8162), + [aux_sym_set_accessor_token1] = ACTIONS(8162), + [anon_sym_COMMA] = ACTIONS(8164), + [aux_sym_const_declaration_token1] = ACTIONS(8162), + [anon_sym_LPAREN] = ACTIONS(8164), + [aux_sym_as_type_clause_token2] = ACTIONS(8162), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8162), + [aux_sym_visibility_token1] = ACTIONS(8162), + [aux_sym_visibility_token2] = ACTIONS(8162), + [aux_sym_elseif_fragment_token1] = ACTIONS(8162), + [aux_sym_else_fragment_token1] = ACTIONS(8162), + [aux_sym_select_statement_token1] = ACTIONS(8162), + [aux_sym__for_header_token1] = ACTIONS(8162), + [aux_sym_do_statement_token1] = ACTIONS(8162), + [aux_sym_do_condition_token1] = ACTIONS(8162), + [aux_sym_with_statement_token1] = ACTIONS(8162), + [aux_sym_exit_statement_token1] = ACTIONS(8162), + [sym_end_statement] = ACTIONS(8164), + [aux_sym_on_goto_statement_token1] = ACTIONS(8162), + [aux_sym_on_goto_statement_token2] = ACTIONS(8162), + [aux_sym_on_error_statement_token2] = ACTIONS(8162), + [sym__ambiguous_redim_statement] = ACTIONS(8164), + [aux_sym_erase_statement_token1] = ACTIONS(8162), + [aux_sym_open_statement_token1] = ACTIONS(8162), + [aux_sym_file_mode_token2] = ACTIONS(8162), + [aux_sym_file_access_token2] = ACTIONS(8162), + [aux_sym_file_lock_token2] = ACTIONS(8162), + [aux_sym_print_statement_token1] = ACTIONS(8162), + [anon_sym_PLUS] = ACTIONS(8164), + [anon_sym_DASH] = ACTIONS(8162), + [anon_sym_SEMI] = ACTIONS(8164), + [anon_sym_QMARK] = ACTIONS(8164), + [aux_sym_close_statement_token1] = ACTIONS(8162), + [aux_sym_put_statement_token1] = ACTIONS(8162), + [aux_sym_unlock_statement_token1] = ACTIONS(8162), + [aux_sym_seek_statement_token1] = ACTIONS(8162), + [sym_reset_statement] = ACTIONS(8162), + [aux_sym_raise_event_statement_token1] = ACTIONS(8162), + [sym_stop_statement] = ACTIONS(8162), + [sym_beep_statement] = ACTIONS(8162), + [aux_sym_unload_statement_token1] = ACTIONS(8162), + [aux_sym_def_type_statement_token1] = ACTIONS(8162), + [aux_sym_def_type_statement_token2] = ACTIONS(8162), + [aux_sym_def_type_statement_token3] = ACTIONS(8162), + [aux_sym_def_type_statement_token4] = ACTIONS(8162), + [aux_sym_def_type_statement_token5] = ACTIONS(8162), + [aux_sym_def_type_statement_token6] = ACTIONS(8162), + [aux_sym_def_type_statement_token7] = ACTIONS(8162), + [aux_sym_def_type_statement_token8] = ACTIONS(8162), + [aux_sym_def_type_statement_token9] = ACTIONS(8162), + [aux_sym_def_type_statement_token10] = ACTIONS(8162), + [aux_sym_def_type_statement_token11] = ACTIONS(8162), + [aux_sym_def_type_statement_token12] = ACTIONS(8162), + [aux_sym_def_type_statement_token13] = ACTIONS(8162), + [aux_sym_def_type_statement_token14] = ACTIONS(8162), + [aux_sym_call_statement_token1] = ACTIONS(8162), + [sym__ambiguous_call_statement] = ACTIONS(8162), + [aux_sym_addressof_expression_token1] = ACTIONS(8162), + [aux_sym_type_of_expression_token1] = ACTIONS(8162), + [aux_sym_unary_expression_token1] = ACTIONS(8162), + [sym_string_literal] = ACTIONS(8164), + [sym_number_literal] = ACTIONS(8164), + [aux_sym_boolean_literal_token1] = ACTIONS(8162), + [aux_sym_boolean_literal_token2] = ACTIONS(8162), + [sym_nothing_literal] = ACTIONS(8162), + [sym_null_literal] = ACTIONS(8162), + [sym_empty_literal] = ACTIONS(8162), + [sym_date_literal] = ACTIONS(8164), + [anon_sym_POUND] = ACTIONS(8162), + }, + [STATE(4080)] = { + [sym_identifier] = ACTIONS(9594), + [sym_newline] = ACTIONS(9596), + [anon_sym_COLON] = ACTIONS(9596), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9594), + [aux_sym_frm_property_statement_token1] = ACTIONS(9594), + [anon_sym_DOT] = ACTIONS(9594), + [anon_sym_BANG] = ACTIONS(9596), + [aux_sym__attribute_identifier_token1] = ACTIONS(9594), + [aux_sym_option_statement_token3] = ACTIONS(9594), + [aux_sym_type_declaration_token1] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9594), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9594), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9594), + [aux_sym_enum_declaration_token1] = ACTIONS(9594), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9594), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9594), + [aux_sym_declare_function_statement_token1] = ACTIONS(9594), + [aux_sym_preprocessor_const_token1] = ACTIONS(9594), + [aux_sym__property_get_header_token1] = ACTIONS(9594), + [aux_sym_event_declaration_token1] = ACTIONS(9594), + [sym_static_modifier] = ACTIONS(9594), + [sym__dim_keyword] = ACTIONS(9594), + [sym__redim_keyword] = ACTIONS(9594), + [aux_sym_get_accessor_token1] = ACTIONS(9594), + [aux_sym_set_accessor_token1] = ACTIONS(9594), + [aux_sym_const_declaration_token1] = ACTIONS(9594), + [anon_sym_LPAREN] = ACTIONS(9596), + [aux_sym_as_type_clause_token2] = ACTIONS(9594), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9594), + [aux_sym_visibility_token1] = ACTIONS(9594), + [aux_sym_visibility_token2] = ACTIONS(9594), + [aux_sym_elseif_fragment_token1] = ACTIONS(9594), + [aux_sym_else_fragment_token1] = ACTIONS(9594), + [aux_sym_select_statement_token1] = ACTIONS(9594), + [aux_sym__for_header_token1] = ACTIONS(9594), + [aux_sym_do_statement_token1] = ACTIONS(9594), + [aux_sym_do_condition_token1] = ACTIONS(9594), + [aux_sym_with_statement_token1] = ACTIONS(9594), + [aux_sym_exit_statement_token1] = ACTIONS(9594), + [sym_end_statement] = ACTIONS(9596), + [aux_sym_on_goto_statement_token1] = ACTIONS(9594), + [aux_sym_on_goto_statement_token2] = ACTIONS(9594), + [aux_sym_on_error_statement_token2] = ACTIONS(9594), + [sym__ambiguous_redim_statement] = ACTIONS(9596), + [aux_sym_erase_statement_token1] = ACTIONS(9594), + [aux_sym_open_statement_token1] = ACTIONS(9594), + [aux_sym_file_mode_token2] = ACTIONS(9594), + [aux_sym_file_access_token2] = ACTIONS(9594), + [aux_sym_file_lock_token2] = ACTIONS(9594), + [aux_sym_print_statement_token1] = ACTIONS(9594), + [anon_sym_PLUS] = ACTIONS(9596), + [anon_sym_DASH] = ACTIONS(9594), + [anon_sym_QMARK] = ACTIONS(9596), + [aux_sym_close_statement_token1] = ACTIONS(9594), + [aux_sym_put_statement_token1] = ACTIONS(9594), + [aux_sym_unlock_statement_token1] = ACTIONS(9594), + [aux_sym_seek_statement_token1] = ACTIONS(9594), + [sym_reset_statement] = ACTIONS(9594), + [aux_sym_raise_event_statement_token1] = ACTIONS(9594), + [sym_stop_statement] = ACTIONS(9594), + [sym_beep_statement] = ACTIONS(9594), + [aux_sym_unload_statement_token1] = ACTIONS(9594), + [aux_sym_def_type_statement_token1] = ACTIONS(9594), + [aux_sym_def_type_statement_token2] = ACTIONS(9594), + [aux_sym_def_type_statement_token3] = ACTIONS(9594), + [aux_sym_def_type_statement_token4] = ACTIONS(9594), + [aux_sym_def_type_statement_token5] = ACTIONS(9594), + [aux_sym_def_type_statement_token6] = ACTIONS(9594), + [aux_sym_def_type_statement_token7] = ACTIONS(9594), + [aux_sym_def_type_statement_token8] = ACTIONS(9594), + [aux_sym_def_type_statement_token9] = ACTIONS(9594), + [aux_sym_def_type_statement_token10] = ACTIONS(9594), + [aux_sym_def_type_statement_token11] = ACTIONS(9594), + [aux_sym_def_type_statement_token12] = ACTIONS(9594), + [aux_sym_def_type_statement_token13] = ACTIONS(9594), + [aux_sym_def_type_statement_token14] = ACTIONS(9594), + [aux_sym_call_statement_token1] = ACTIONS(9594), + [sym__ambiguous_call_statement] = ACTIONS(9594), + [aux_sym_addressof_expression_token1] = ACTIONS(9594), + [aux_sym_type_of_expression_token1] = ACTIONS(9594), + [aux_sym_unary_expression_token1] = ACTIONS(9594), + [sym_string_literal] = ACTIONS(9596), + [sym_number_literal] = ACTIONS(9596), + [aux_sym_boolean_literal_token1] = ACTIONS(9594), + [aux_sym_boolean_literal_token2] = ACTIONS(9594), + [sym_nothing_literal] = ACTIONS(9594), + [sym_null_literal] = ACTIONS(9594), + [sym_empty_literal] = ACTIONS(9594), + [sym_date_literal] = ACTIONS(9596), + [anon_sym_POUND] = ACTIONS(9594), + }, + [STATE(4081)] = { + [sym_identifier] = ACTIONS(9598), + [sym_newline] = ACTIONS(9600), + [anon_sym_COLON] = ACTIONS(9600), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9598), + [aux_sym_frm_property_statement_token1] = ACTIONS(9598), + [anon_sym_DOT] = ACTIONS(9598), + [anon_sym_BANG] = ACTIONS(9600), + [aux_sym__attribute_identifier_token1] = ACTIONS(9598), + [aux_sym_option_statement_token3] = ACTIONS(9598), + [aux_sym_type_declaration_token1] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9598), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9598), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9598), + [aux_sym_enum_declaration_token1] = ACTIONS(9598), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9598), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9598), + [aux_sym_declare_function_statement_token1] = ACTIONS(9598), + [aux_sym_preprocessor_const_token1] = ACTIONS(9598), + [aux_sym__property_get_header_token1] = ACTIONS(9598), + [aux_sym_event_declaration_token1] = ACTIONS(9598), + [sym_static_modifier] = ACTIONS(9598), + [sym__dim_keyword] = ACTIONS(9598), + [sym__redim_keyword] = ACTIONS(9598), + [aux_sym_get_accessor_token1] = ACTIONS(9598), + [aux_sym_set_accessor_token1] = ACTIONS(9598), + [aux_sym_const_declaration_token1] = ACTIONS(9598), + [anon_sym_LPAREN] = ACTIONS(9600), + [aux_sym_as_type_clause_token2] = ACTIONS(9598), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9598), + [aux_sym_visibility_token1] = ACTIONS(9598), + [aux_sym_visibility_token2] = ACTIONS(9598), + [aux_sym_elseif_fragment_token1] = ACTIONS(9598), + [aux_sym_else_fragment_token1] = ACTIONS(9598), + [aux_sym_select_statement_token1] = ACTIONS(9598), + [aux_sym__for_header_token1] = ACTIONS(9598), + [aux_sym_do_statement_token1] = ACTIONS(9598), + [aux_sym_do_condition_token1] = ACTIONS(9598), + [aux_sym_with_statement_token1] = ACTIONS(9598), + [aux_sym_exit_statement_token1] = ACTIONS(9598), + [sym_end_statement] = ACTIONS(9600), + [aux_sym_on_goto_statement_token1] = ACTIONS(9598), + [aux_sym_on_goto_statement_token2] = ACTIONS(9598), + [aux_sym_on_error_statement_token2] = ACTIONS(9598), + [sym__ambiguous_redim_statement] = ACTIONS(9600), + [aux_sym_erase_statement_token1] = ACTIONS(9598), + [aux_sym_open_statement_token1] = ACTIONS(9598), + [aux_sym_file_mode_token2] = ACTIONS(9598), + [aux_sym_file_access_token2] = ACTIONS(9598), + [aux_sym_file_lock_token2] = ACTIONS(9598), + [aux_sym_print_statement_token1] = ACTIONS(9598), + [anon_sym_PLUS] = ACTIONS(9600), + [anon_sym_DASH] = ACTIONS(9598), + [anon_sym_QMARK] = ACTIONS(9600), + [aux_sym_close_statement_token1] = ACTIONS(9598), + [aux_sym_put_statement_token1] = ACTIONS(9598), + [aux_sym_unlock_statement_token1] = ACTIONS(9598), + [aux_sym_seek_statement_token1] = ACTIONS(9598), + [sym_reset_statement] = ACTIONS(9598), + [aux_sym_raise_event_statement_token1] = ACTIONS(9598), + [sym_stop_statement] = ACTIONS(9598), + [sym_beep_statement] = ACTIONS(9598), + [aux_sym_unload_statement_token1] = ACTIONS(9598), + [aux_sym_def_type_statement_token1] = ACTIONS(9598), + [aux_sym_def_type_statement_token2] = ACTIONS(9598), + [aux_sym_def_type_statement_token3] = ACTIONS(9598), + [aux_sym_def_type_statement_token4] = ACTIONS(9598), + [aux_sym_def_type_statement_token5] = ACTIONS(9598), + [aux_sym_def_type_statement_token6] = ACTIONS(9598), + [aux_sym_def_type_statement_token7] = ACTIONS(9598), + [aux_sym_def_type_statement_token8] = ACTIONS(9598), + [aux_sym_def_type_statement_token9] = ACTIONS(9598), + [aux_sym_def_type_statement_token10] = ACTIONS(9598), + [aux_sym_def_type_statement_token11] = ACTIONS(9598), + [aux_sym_def_type_statement_token12] = ACTIONS(9598), + [aux_sym_def_type_statement_token13] = ACTIONS(9598), + [aux_sym_def_type_statement_token14] = ACTIONS(9598), + [aux_sym_call_statement_token1] = ACTIONS(9598), + [sym__ambiguous_call_statement] = ACTIONS(9598), + [aux_sym_addressof_expression_token1] = ACTIONS(9598), + [aux_sym_type_of_expression_token1] = ACTIONS(9598), + [aux_sym_unary_expression_token1] = ACTIONS(9598), + [sym_string_literal] = ACTIONS(9600), + [sym_number_literal] = ACTIONS(9600), + [aux_sym_boolean_literal_token1] = ACTIONS(9598), + [aux_sym_boolean_literal_token2] = ACTIONS(9598), + [sym_nothing_literal] = ACTIONS(9598), + [sym_null_literal] = ACTIONS(9598), + [sym_empty_literal] = ACTIONS(9598), + [sym_date_literal] = ACTIONS(9600), + [anon_sym_POUND] = ACTIONS(9598), + }, + [STATE(4082)] = { + [sym_identifier] = ACTIONS(9602), + [sym_newline] = ACTIONS(9604), + [anon_sym_COLON] = ACTIONS(9604), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9602), + [aux_sym_frm_property_statement_token1] = ACTIONS(9602), + [anon_sym_DOT] = ACTIONS(9602), + [anon_sym_BANG] = ACTIONS(9604), + [aux_sym__attribute_identifier_token1] = ACTIONS(9602), + [aux_sym_option_statement_token3] = ACTIONS(9602), + [aux_sym_type_declaration_token1] = ACTIONS(9602), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9602), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9602), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9602), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9602), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9602), + [aux_sym_enum_declaration_token1] = ACTIONS(9602), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9602), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9602), + [aux_sym_declare_function_statement_token1] = ACTIONS(9602), + [aux_sym_preprocessor_const_token1] = ACTIONS(9602), + [aux_sym__property_get_header_token1] = ACTIONS(9602), + [aux_sym_event_declaration_token1] = ACTIONS(9602), + [sym_static_modifier] = ACTIONS(9602), + [sym__dim_keyword] = ACTIONS(9602), + [sym__redim_keyword] = ACTIONS(9602), + [aux_sym_get_accessor_token1] = ACTIONS(9602), + [aux_sym_set_accessor_token1] = ACTIONS(9602), + [aux_sym_const_declaration_token1] = ACTIONS(9602), + [anon_sym_LPAREN] = ACTIONS(9604), + [aux_sym_as_type_clause_token2] = ACTIONS(9602), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9602), + [aux_sym_visibility_token1] = ACTIONS(9602), + [aux_sym_visibility_token2] = ACTIONS(9602), + [aux_sym_elseif_fragment_token1] = ACTIONS(9602), + [aux_sym_else_fragment_token1] = ACTIONS(9602), + [aux_sym_select_statement_token1] = ACTIONS(9602), + [aux_sym__for_header_token1] = ACTIONS(9602), + [aux_sym_do_statement_token1] = ACTIONS(9602), + [aux_sym_do_condition_token1] = ACTIONS(9602), + [aux_sym_with_statement_token1] = ACTIONS(9602), + [aux_sym_exit_statement_token1] = ACTIONS(9602), + [sym_end_statement] = ACTIONS(9604), + [aux_sym_on_goto_statement_token1] = ACTIONS(9602), + [aux_sym_on_goto_statement_token2] = ACTIONS(9602), + [aux_sym_on_error_statement_token2] = ACTIONS(9602), + [sym__ambiguous_redim_statement] = ACTIONS(9604), + [aux_sym_erase_statement_token1] = ACTIONS(9602), + [aux_sym_open_statement_token1] = ACTIONS(9602), + [aux_sym_file_mode_token2] = ACTIONS(9602), + [aux_sym_file_access_token2] = ACTIONS(9602), + [aux_sym_file_lock_token2] = ACTIONS(9602), + [aux_sym_print_statement_token1] = ACTIONS(9602), + [anon_sym_PLUS] = ACTIONS(9604), + [anon_sym_DASH] = ACTIONS(9602), + [anon_sym_QMARK] = ACTIONS(9604), + [aux_sym_close_statement_token1] = ACTIONS(9602), + [aux_sym_put_statement_token1] = ACTIONS(9602), + [aux_sym_unlock_statement_token1] = ACTIONS(9602), + [aux_sym_seek_statement_token1] = ACTIONS(9602), + [sym_reset_statement] = ACTIONS(9602), + [aux_sym_raise_event_statement_token1] = ACTIONS(9602), + [sym_stop_statement] = ACTIONS(9602), + [sym_beep_statement] = ACTIONS(9602), + [aux_sym_unload_statement_token1] = ACTIONS(9602), + [aux_sym_def_type_statement_token1] = ACTIONS(9602), + [aux_sym_def_type_statement_token2] = ACTIONS(9602), + [aux_sym_def_type_statement_token3] = ACTIONS(9602), + [aux_sym_def_type_statement_token4] = ACTIONS(9602), + [aux_sym_def_type_statement_token5] = ACTIONS(9602), + [aux_sym_def_type_statement_token6] = ACTIONS(9602), + [aux_sym_def_type_statement_token7] = ACTIONS(9602), + [aux_sym_def_type_statement_token8] = ACTIONS(9602), + [aux_sym_def_type_statement_token9] = ACTIONS(9602), + [aux_sym_def_type_statement_token10] = ACTIONS(9602), + [aux_sym_def_type_statement_token11] = ACTIONS(9602), + [aux_sym_def_type_statement_token12] = ACTIONS(9602), + [aux_sym_def_type_statement_token13] = ACTIONS(9602), + [aux_sym_def_type_statement_token14] = ACTIONS(9602), + [aux_sym_call_statement_token1] = ACTIONS(9602), + [sym__ambiguous_call_statement] = ACTIONS(9602), + [aux_sym_addressof_expression_token1] = ACTIONS(9602), + [aux_sym_type_of_expression_token1] = ACTIONS(9602), + [aux_sym_unary_expression_token1] = ACTIONS(9602), + [sym_string_literal] = ACTIONS(9604), + [sym_number_literal] = ACTIONS(9604), + [aux_sym_boolean_literal_token1] = ACTIONS(9602), + [aux_sym_boolean_literal_token2] = ACTIONS(9602), + [sym_nothing_literal] = ACTIONS(9602), + [sym_null_literal] = ACTIONS(9602), + [sym_empty_literal] = ACTIONS(9602), + [sym_date_literal] = ACTIONS(9604), + [anon_sym_POUND] = ACTIONS(9602), + }, + [STATE(4083)] = { + [sym_identifier] = ACTIONS(9606), + [sym_newline] = ACTIONS(9608), + [anon_sym_COLON] = ACTIONS(9608), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9606), + [aux_sym_frm_property_statement_token1] = ACTIONS(9606), + [anon_sym_DOT] = ACTIONS(9606), + [anon_sym_BANG] = ACTIONS(9608), + [aux_sym__attribute_identifier_token1] = ACTIONS(9606), + [aux_sym_option_statement_token3] = ACTIONS(9606), + [aux_sym_type_declaration_token1] = ACTIONS(9606), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9606), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9606), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9606), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9606), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9606), + [aux_sym_enum_declaration_token1] = ACTIONS(9606), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9606), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9606), + [aux_sym_declare_function_statement_token1] = ACTIONS(9606), + [aux_sym_preprocessor_const_token1] = ACTIONS(9606), + [aux_sym__property_get_header_token1] = ACTIONS(9606), + [aux_sym_event_declaration_token1] = ACTIONS(9606), + [sym_static_modifier] = ACTIONS(9606), + [sym__dim_keyword] = ACTIONS(9606), + [sym__redim_keyword] = ACTIONS(9606), + [aux_sym_get_accessor_token1] = ACTIONS(9606), + [aux_sym_set_accessor_token1] = ACTIONS(9606), + [aux_sym_const_declaration_token1] = ACTIONS(9606), + [anon_sym_LPAREN] = ACTIONS(9608), + [aux_sym_as_type_clause_token2] = ACTIONS(9606), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9606), + [aux_sym_visibility_token1] = ACTIONS(9606), + [aux_sym_visibility_token2] = ACTIONS(9606), + [aux_sym_elseif_fragment_token1] = ACTIONS(9606), + [aux_sym_else_fragment_token1] = ACTIONS(9606), + [aux_sym_select_statement_token1] = ACTIONS(9606), + [aux_sym__for_header_token1] = ACTIONS(9606), + [aux_sym_do_statement_token1] = ACTIONS(9606), + [aux_sym_do_condition_token1] = ACTIONS(9606), + [aux_sym_with_statement_token1] = ACTIONS(9606), + [aux_sym_exit_statement_token1] = ACTIONS(9606), + [sym_end_statement] = ACTIONS(9608), + [aux_sym_on_goto_statement_token1] = ACTIONS(9606), + [aux_sym_on_goto_statement_token2] = ACTIONS(9606), + [aux_sym_on_error_statement_token2] = ACTIONS(9606), + [sym__ambiguous_redim_statement] = ACTIONS(9608), + [aux_sym_erase_statement_token1] = ACTIONS(9606), + [aux_sym_open_statement_token1] = ACTIONS(9606), + [aux_sym_file_mode_token2] = ACTIONS(9606), + [aux_sym_file_access_token2] = ACTIONS(9606), + [aux_sym_file_lock_token2] = ACTIONS(9606), + [aux_sym_print_statement_token1] = ACTIONS(9606), + [anon_sym_PLUS] = ACTIONS(9608), + [anon_sym_DASH] = ACTIONS(9606), + [anon_sym_QMARK] = ACTIONS(9608), + [aux_sym_close_statement_token1] = ACTIONS(9606), + [aux_sym_put_statement_token1] = ACTIONS(9606), + [aux_sym_unlock_statement_token1] = ACTIONS(9606), + [aux_sym_seek_statement_token1] = ACTIONS(9606), + [sym_reset_statement] = ACTIONS(9606), + [aux_sym_raise_event_statement_token1] = ACTIONS(9606), + [sym_stop_statement] = ACTIONS(9606), + [sym_beep_statement] = ACTIONS(9606), + [aux_sym_unload_statement_token1] = ACTIONS(9606), + [aux_sym_def_type_statement_token1] = ACTIONS(9606), + [aux_sym_def_type_statement_token2] = ACTIONS(9606), + [aux_sym_def_type_statement_token3] = ACTIONS(9606), + [aux_sym_def_type_statement_token4] = ACTIONS(9606), + [aux_sym_def_type_statement_token5] = ACTIONS(9606), + [aux_sym_def_type_statement_token6] = ACTIONS(9606), + [aux_sym_def_type_statement_token7] = ACTIONS(9606), + [aux_sym_def_type_statement_token8] = ACTIONS(9606), + [aux_sym_def_type_statement_token9] = ACTIONS(9606), + [aux_sym_def_type_statement_token10] = ACTIONS(9606), + [aux_sym_def_type_statement_token11] = ACTIONS(9606), + [aux_sym_def_type_statement_token12] = ACTIONS(9606), + [aux_sym_def_type_statement_token13] = ACTIONS(9606), + [aux_sym_def_type_statement_token14] = ACTIONS(9606), + [aux_sym_call_statement_token1] = ACTIONS(9606), + [sym__ambiguous_call_statement] = ACTIONS(9606), + [aux_sym_addressof_expression_token1] = ACTIONS(9606), + [aux_sym_type_of_expression_token1] = ACTIONS(9606), + [aux_sym_unary_expression_token1] = ACTIONS(9606), + [sym_string_literal] = ACTIONS(9608), + [sym_number_literal] = ACTIONS(9608), + [aux_sym_boolean_literal_token1] = ACTIONS(9606), + [aux_sym_boolean_literal_token2] = ACTIONS(9606), + [sym_nothing_literal] = ACTIONS(9606), + [sym_null_literal] = ACTIONS(9606), + [sym_empty_literal] = ACTIONS(9606), + [sym_date_literal] = ACTIONS(9608), + [anon_sym_POUND] = ACTIONS(9606), + }, + [STATE(4084)] = { + [sym_identifier] = ACTIONS(9610), + [sym_newline] = ACTIONS(9612), + [anon_sym_COLON] = ACTIONS(9612), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9610), + [aux_sym_frm_property_statement_token1] = ACTIONS(9610), + [anon_sym_DOT] = ACTIONS(9610), + [anon_sym_BANG] = ACTIONS(9612), + [aux_sym__attribute_identifier_token1] = ACTIONS(9610), + [aux_sym_option_statement_token3] = ACTIONS(9610), + [aux_sym_type_declaration_token1] = ACTIONS(9610), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9610), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9610), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9610), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9610), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9610), + [aux_sym_enum_declaration_token1] = ACTIONS(9610), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9610), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9610), + [aux_sym_declare_function_statement_token1] = ACTIONS(9610), + [aux_sym_preprocessor_const_token1] = ACTIONS(9610), + [aux_sym__property_get_header_token1] = ACTIONS(9610), + [aux_sym_event_declaration_token1] = ACTIONS(9610), + [sym_static_modifier] = ACTIONS(9610), + [sym__dim_keyword] = ACTIONS(9610), + [sym__redim_keyword] = ACTIONS(9610), + [aux_sym_get_accessor_token1] = ACTIONS(9610), + [aux_sym_set_accessor_token1] = ACTIONS(9610), + [aux_sym_const_declaration_token1] = ACTIONS(9610), + [anon_sym_LPAREN] = ACTIONS(9612), + [aux_sym_as_type_clause_token2] = ACTIONS(9610), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9610), + [aux_sym_visibility_token1] = ACTIONS(9610), + [aux_sym_visibility_token2] = ACTIONS(9610), + [aux_sym_elseif_fragment_token1] = ACTIONS(9610), + [aux_sym_else_fragment_token1] = ACTIONS(9610), + [aux_sym_select_statement_token1] = ACTIONS(9610), + [aux_sym__for_header_token1] = ACTIONS(9610), + [aux_sym_do_statement_token1] = ACTIONS(9610), + [aux_sym_do_condition_token1] = ACTIONS(9610), + [aux_sym_with_statement_token1] = ACTIONS(9610), + [aux_sym_exit_statement_token1] = ACTIONS(9610), + [sym_end_statement] = ACTIONS(9612), + [aux_sym_on_goto_statement_token1] = ACTIONS(9610), + [aux_sym_on_goto_statement_token2] = ACTIONS(9610), + [aux_sym_on_error_statement_token2] = ACTIONS(9610), + [sym__ambiguous_redim_statement] = ACTIONS(9612), + [aux_sym_erase_statement_token1] = ACTIONS(9610), + [aux_sym_open_statement_token1] = ACTIONS(9610), + [aux_sym_file_mode_token2] = ACTIONS(9610), + [aux_sym_file_access_token2] = ACTIONS(9610), + [aux_sym_file_lock_token2] = ACTIONS(9610), + [aux_sym_print_statement_token1] = ACTIONS(9610), + [anon_sym_PLUS] = ACTIONS(9612), + [anon_sym_DASH] = ACTIONS(9610), + [anon_sym_QMARK] = ACTIONS(9612), + [aux_sym_close_statement_token1] = ACTIONS(9610), + [aux_sym_put_statement_token1] = ACTIONS(9610), + [aux_sym_unlock_statement_token1] = ACTIONS(9610), + [aux_sym_seek_statement_token1] = ACTIONS(9610), + [sym_reset_statement] = ACTIONS(9610), + [aux_sym_raise_event_statement_token1] = ACTIONS(9610), + [sym_stop_statement] = ACTIONS(9610), + [sym_beep_statement] = ACTIONS(9610), + [aux_sym_unload_statement_token1] = ACTIONS(9610), + [aux_sym_def_type_statement_token1] = ACTIONS(9610), + [aux_sym_def_type_statement_token2] = ACTIONS(9610), + [aux_sym_def_type_statement_token3] = ACTIONS(9610), + [aux_sym_def_type_statement_token4] = ACTIONS(9610), + [aux_sym_def_type_statement_token5] = ACTIONS(9610), + [aux_sym_def_type_statement_token6] = ACTIONS(9610), + [aux_sym_def_type_statement_token7] = ACTIONS(9610), + [aux_sym_def_type_statement_token8] = ACTIONS(9610), + [aux_sym_def_type_statement_token9] = ACTIONS(9610), + [aux_sym_def_type_statement_token10] = ACTIONS(9610), + [aux_sym_def_type_statement_token11] = ACTIONS(9610), + [aux_sym_def_type_statement_token12] = ACTIONS(9610), + [aux_sym_def_type_statement_token13] = ACTIONS(9610), + [aux_sym_def_type_statement_token14] = ACTIONS(9610), + [aux_sym_call_statement_token1] = ACTIONS(9610), + [sym__ambiguous_call_statement] = ACTIONS(9610), + [aux_sym_addressof_expression_token1] = ACTIONS(9610), + [aux_sym_type_of_expression_token1] = ACTIONS(9610), + [aux_sym_unary_expression_token1] = ACTIONS(9610), + [sym_string_literal] = ACTIONS(9612), + [sym_number_literal] = ACTIONS(9612), + [aux_sym_boolean_literal_token1] = ACTIONS(9610), + [aux_sym_boolean_literal_token2] = ACTIONS(9610), + [sym_nothing_literal] = ACTIONS(9610), + [sym_null_literal] = ACTIONS(9610), + [sym_empty_literal] = ACTIONS(9610), + [sym_date_literal] = ACTIONS(9612), + [anon_sym_POUND] = ACTIONS(9610), + }, + [STATE(4085)] = { + [sym_identifier] = ACTIONS(9614), + [sym_newline] = ACTIONS(9616), + [anon_sym_COLON] = ACTIONS(9616), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9614), + [aux_sym_frm_property_statement_token1] = ACTIONS(9614), + [anon_sym_DOT] = ACTIONS(9614), + [anon_sym_BANG] = ACTIONS(9616), + [aux_sym__attribute_identifier_token1] = ACTIONS(9614), + [aux_sym_option_statement_token3] = ACTIONS(9614), + [aux_sym_type_declaration_token1] = ACTIONS(9614), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9614), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9614), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9614), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9614), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9614), + [aux_sym_enum_declaration_token1] = ACTIONS(9614), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9614), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9614), + [aux_sym_declare_function_statement_token1] = ACTIONS(9614), + [aux_sym_preprocessor_const_token1] = ACTIONS(9614), + [aux_sym__property_get_header_token1] = ACTIONS(9614), + [aux_sym_event_declaration_token1] = ACTIONS(9614), + [sym_static_modifier] = ACTIONS(9614), + [sym__dim_keyword] = ACTIONS(9614), + [sym__redim_keyword] = ACTIONS(9614), + [aux_sym_get_accessor_token1] = ACTIONS(9614), + [aux_sym_set_accessor_token1] = ACTIONS(9614), + [aux_sym_const_declaration_token1] = ACTIONS(9614), + [anon_sym_LPAREN] = ACTIONS(9616), + [aux_sym_as_type_clause_token2] = ACTIONS(9614), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9614), + [aux_sym_visibility_token1] = ACTIONS(9614), + [aux_sym_visibility_token2] = ACTIONS(9614), + [aux_sym_elseif_fragment_token1] = ACTIONS(9614), + [aux_sym_else_fragment_token1] = ACTIONS(9614), + [aux_sym_select_statement_token1] = ACTIONS(9614), + [aux_sym__for_header_token1] = ACTIONS(9614), + [aux_sym_do_statement_token1] = ACTIONS(9614), + [aux_sym_do_condition_token1] = ACTIONS(9614), + [aux_sym_with_statement_token1] = ACTIONS(9614), + [aux_sym_exit_statement_token1] = ACTIONS(9614), + [sym_end_statement] = ACTIONS(9616), + [aux_sym_on_goto_statement_token1] = ACTIONS(9614), + [aux_sym_on_goto_statement_token2] = ACTIONS(9614), + [aux_sym_on_error_statement_token2] = ACTIONS(9614), + [sym__ambiguous_redim_statement] = ACTIONS(9616), + [aux_sym_erase_statement_token1] = ACTIONS(9614), + [aux_sym_open_statement_token1] = ACTIONS(9614), + [aux_sym_file_mode_token2] = ACTIONS(9614), + [aux_sym_file_access_token2] = ACTIONS(9614), + [aux_sym_file_lock_token2] = ACTIONS(9614), + [aux_sym_print_statement_token1] = ACTIONS(9614), + [anon_sym_PLUS] = ACTIONS(9616), + [anon_sym_DASH] = ACTIONS(9614), + [anon_sym_QMARK] = ACTIONS(9616), + [aux_sym_close_statement_token1] = ACTIONS(9614), + [aux_sym_put_statement_token1] = ACTIONS(9614), + [aux_sym_unlock_statement_token1] = ACTIONS(9614), + [aux_sym_seek_statement_token1] = ACTIONS(9614), + [sym_reset_statement] = ACTIONS(9614), + [aux_sym_raise_event_statement_token1] = ACTIONS(9614), + [sym_stop_statement] = ACTIONS(9614), + [sym_beep_statement] = ACTIONS(9614), + [aux_sym_unload_statement_token1] = ACTIONS(9614), + [aux_sym_def_type_statement_token1] = ACTIONS(9614), + [aux_sym_def_type_statement_token2] = ACTIONS(9614), + [aux_sym_def_type_statement_token3] = ACTIONS(9614), + [aux_sym_def_type_statement_token4] = ACTIONS(9614), + [aux_sym_def_type_statement_token5] = ACTIONS(9614), + [aux_sym_def_type_statement_token6] = ACTIONS(9614), + [aux_sym_def_type_statement_token7] = ACTIONS(9614), + [aux_sym_def_type_statement_token8] = ACTIONS(9614), + [aux_sym_def_type_statement_token9] = ACTIONS(9614), + [aux_sym_def_type_statement_token10] = ACTIONS(9614), + [aux_sym_def_type_statement_token11] = ACTIONS(9614), + [aux_sym_def_type_statement_token12] = ACTIONS(9614), + [aux_sym_def_type_statement_token13] = ACTIONS(9614), + [aux_sym_def_type_statement_token14] = ACTIONS(9614), + [aux_sym_call_statement_token1] = ACTIONS(9614), + [sym__ambiguous_call_statement] = ACTIONS(9614), + [aux_sym_addressof_expression_token1] = ACTIONS(9614), + [aux_sym_type_of_expression_token1] = ACTIONS(9614), + [aux_sym_unary_expression_token1] = ACTIONS(9614), + [sym_string_literal] = ACTIONS(9616), + [sym_number_literal] = ACTIONS(9616), + [aux_sym_boolean_literal_token1] = ACTIONS(9614), + [aux_sym_boolean_literal_token2] = ACTIONS(9614), + [sym_nothing_literal] = ACTIONS(9614), + [sym_null_literal] = ACTIONS(9614), + [sym_empty_literal] = ACTIONS(9614), + [sym_date_literal] = ACTIONS(9616), + [anon_sym_POUND] = ACTIONS(9614), + }, + [STATE(4086)] = { + [sym_identifier] = ACTIONS(9618), + [sym_newline] = ACTIONS(9620), + [anon_sym_COLON] = ACTIONS(9620), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9618), + [aux_sym_frm_property_statement_token1] = ACTIONS(9618), + [anon_sym_DOT] = ACTIONS(9618), + [anon_sym_BANG] = ACTIONS(9620), + [aux_sym__attribute_identifier_token1] = ACTIONS(9618), + [aux_sym_option_statement_token3] = ACTIONS(9618), + [aux_sym_type_declaration_token1] = ACTIONS(9618), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9618), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9618), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9618), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9618), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9618), + [aux_sym_enum_declaration_token1] = ACTIONS(9618), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9618), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9618), + [aux_sym_declare_function_statement_token1] = ACTIONS(9618), + [aux_sym_preprocessor_const_token1] = ACTIONS(9618), + [aux_sym__property_get_header_token1] = ACTIONS(9618), + [aux_sym_event_declaration_token1] = ACTIONS(9618), + [sym_static_modifier] = ACTIONS(9618), + [sym__dim_keyword] = ACTIONS(9618), + [sym__redim_keyword] = ACTIONS(9618), + [aux_sym_get_accessor_token1] = ACTIONS(9618), + [aux_sym_set_accessor_token1] = ACTIONS(9618), + [aux_sym_const_declaration_token1] = ACTIONS(9618), + [anon_sym_LPAREN] = ACTIONS(9620), + [aux_sym_as_type_clause_token2] = ACTIONS(9618), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9618), + [aux_sym_visibility_token1] = ACTIONS(9618), + [aux_sym_visibility_token2] = ACTIONS(9618), + [aux_sym_elseif_fragment_token1] = ACTIONS(9618), + [aux_sym_else_fragment_token1] = ACTIONS(9618), + [aux_sym_select_statement_token1] = ACTIONS(9618), + [aux_sym__for_header_token1] = ACTIONS(9618), + [aux_sym_do_statement_token1] = ACTIONS(9618), + [aux_sym_do_condition_token1] = ACTIONS(9618), + [aux_sym_with_statement_token1] = ACTIONS(9618), + [aux_sym_exit_statement_token1] = ACTIONS(9618), + [sym_end_statement] = ACTIONS(9620), + [aux_sym_on_goto_statement_token1] = ACTIONS(9618), + [aux_sym_on_goto_statement_token2] = ACTIONS(9618), + [aux_sym_on_error_statement_token2] = ACTIONS(9618), + [sym__ambiguous_redim_statement] = ACTIONS(9620), + [aux_sym_erase_statement_token1] = ACTIONS(9618), + [aux_sym_open_statement_token1] = ACTIONS(9618), + [aux_sym_file_mode_token2] = ACTIONS(9618), + [aux_sym_file_access_token2] = ACTIONS(9618), + [aux_sym_file_lock_token2] = ACTIONS(9618), + [aux_sym_print_statement_token1] = ACTIONS(9618), + [anon_sym_PLUS] = ACTIONS(9620), + [anon_sym_DASH] = ACTIONS(9618), + [anon_sym_QMARK] = ACTIONS(9620), + [aux_sym_close_statement_token1] = ACTIONS(9618), + [aux_sym_put_statement_token1] = ACTIONS(9618), + [aux_sym_unlock_statement_token1] = ACTIONS(9618), + [aux_sym_seek_statement_token1] = ACTIONS(9618), + [sym_reset_statement] = ACTIONS(9618), + [aux_sym_raise_event_statement_token1] = ACTIONS(9618), + [sym_stop_statement] = ACTIONS(9618), + [sym_beep_statement] = ACTIONS(9618), + [aux_sym_unload_statement_token1] = ACTIONS(9618), + [aux_sym_def_type_statement_token1] = ACTIONS(9618), + [aux_sym_def_type_statement_token2] = ACTIONS(9618), + [aux_sym_def_type_statement_token3] = ACTIONS(9618), + [aux_sym_def_type_statement_token4] = ACTIONS(9618), + [aux_sym_def_type_statement_token5] = ACTIONS(9618), + [aux_sym_def_type_statement_token6] = ACTIONS(9618), + [aux_sym_def_type_statement_token7] = ACTIONS(9618), + [aux_sym_def_type_statement_token8] = ACTIONS(9618), + [aux_sym_def_type_statement_token9] = ACTIONS(9618), + [aux_sym_def_type_statement_token10] = ACTIONS(9618), + [aux_sym_def_type_statement_token11] = ACTIONS(9618), + [aux_sym_def_type_statement_token12] = ACTIONS(9618), + [aux_sym_def_type_statement_token13] = ACTIONS(9618), + [aux_sym_def_type_statement_token14] = ACTIONS(9618), + [aux_sym_call_statement_token1] = ACTIONS(9618), + [sym__ambiguous_call_statement] = ACTIONS(9618), + [aux_sym_addressof_expression_token1] = ACTIONS(9618), + [aux_sym_type_of_expression_token1] = ACTIONS(9618), + [aux_sym_unary_expression_token1] = ACTIONS(9618), + [sym_string_literal] = ACTIONS(9620), + [sym_number_literal] = ACTIONS(9620), + [aux_sym_boolean_literal_token1] = ACTIONS(9618), + [aux_sym_boolean_literal_token2] = ACTIONS(9618), + [sym_nothing_literal] = ACTIONS(9618), + [sym_null_literal] = ACTIONS(9618), + [sym_empty_literal] = ACTIONS(9618), + [sym_date_literal] = ACTIONS(9620), + [anon_sym_POUND] = ACTIONS(9618), + }, + [STATE(4087)] = { + [sym_identifier] = ACTIONS(9622), + [sym_newline] = ACTIONS(9624), + [anon_sym_COLON] = ACTIONS(9624), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9622), + [aux_sym_frm_property_statement_token1] = ACTIONS(9622), + [anon_sym_DOT] = ACTIONS(9622), + [anon_sym_BANG] = ACTIONS(9624), + [aux_sym__attribute_identifier_token1] = ACTIONS(9622), + [aux_sym_option_statement_token3] = ACTIONS(9622), + [aux_sym_type_declaration_token1] = ACTIONS(9622), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9622), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9622), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9622), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9622), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9622), + [aux_sym_enum_declaration_token1] = ACTIONS(9622), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9622), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9622), + [aux_sym_declare_function_statement_token1] = ACTIONS(9622), + [aux_sym_preprocessor_const_token1] = ACTIONS(9622), + [aux_sym__property_get_header_token1] = ACTIONS(9622), + [aux_sym_event_declaration_token1] = ACTIONS(9622), + [sym_static_modifier] = ACTIONS(9622), + [sym__dim_keyword] = ACTIONS(9622), + [sym__redim_keyword] = ACTIONS(9622), + [aux_sym_get_accessor_token1] = ACTIONS(9622), + [aux_sym_set_accessor_token1] = ACTIONS(9622), + [aux_sym_const_declaration_token1] = ACTIONS(9622), + [anon_sym_LPAREN] = ACTIONS(9624), + [aux_sym_as_type_clause_token2] = ACTIONS(9622), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9622), + [aux_sym_visibility_token1] = ACTIONS(9622), + [aux_sym_visibility_token2] = ACTIONS(9622), + [aux_sym_elseif_fragment_token1] = ACTIONS(9622), + [aux_sym_else_fragment_token1] = ACTIONS(9622), + [aux_sym_select_statement_token1] = ACTIONS(9622), + [aux_sym__for_header_token1] = ACTIONS(9622), + [aux_sym_do_statement_token1] = ACTIONS(9622), + [aux_sym_do_condition_token1] = ACTIONS(9622), + [aux_sym_with_statement_token1] = ACTIONS(9622), + [aux_sym_exit_statement_token1] = ACTIONS(9622), + [sym_end_statement] = ACTIONS(9624), + [aux_sym_on_goto_statement_token1] = ACTIONS(9622), + [aux_sym_on_goto_statement_token2] = ACTIONS(9622), + [aux_sym_on_error_statement_token2] = ACTIONS(9622), + [sym__ambiguous_redim_statement] = ACTIONS(9624), + [aux_sym_erase_statement_token1] = ACTIONS(9622), + [aux_sym_open_statement_token1] = ACTIONS(9622), + [aux_sym_file_mode_token2] = ACTIONS(9622), + [aux_sym_file_access_token2] = ACTIONS(9622), + [aux_sym_file_lock_token2] = ACTIONS(9622), + [aux_sym_print_statement_token1] = ACTIONS(9622), + [anon_sym_PLUS] = ACTIONS(9624), + [anon_sym_DASH] = ACTIONS(9622), + [anon_sym_QMARK] = ACTIONS(9624), + [aux_sym_close_statement_token1] = ACTIONS(9622), + [aux_sym_put_statement_token1] = ACTIONS(9622), + [aux_sym_unlock_statement_token1] = ACTIONS(9622), + [aux_sym_seek_statement_token1] = ACTIONS(9622), + [sym_reset_statement] = ACTIONS(9622), + [aux_sym_raise_event_statement_token1] = ACTIONS(9622), + [sym_stop_statement] = ACTIONS(9622), + [sym_beep_statement] = ACTIONS(9622), + [aux_sym_unload_statement_token1] = ACTIONS(9622), + [aux_sym_def_type_statement_token1] = ACTIONS(9622), + [aux_sym_def_type_statement_token2] = ACTIONS(9622), + [aux_sym_def_type_statement_token3] = ACTIONS(9622), + [aux_sym_def_type_statement_token4] = ACTIONS(9622), + [aux_sym_def_type_statement_token5] = ACTIONS(9622), + [aux_sym_def_type_statement_token6] = ACTIONS(9622), + [aux_sym_def_type_statement_token7] = ACTIONS(9622), + [aux_sym_def_type_statement_token8] = ACTIONS(9622), + [aux_sym_def_type_statement_token9] = ACTIONS(9622), + [aux_sym_def_type_statement_token10] = ACTIONS(9622), + [aux_sym_def_type_statement_token11] = ACTIONS(9622), + [aux_sym_def_type_statement_token12] = ACTIONS(9622), + [aux_sym_def_type_statement_token13] = ACTIONS(9622), + [aux_sym_def_type_statement_token14] = ACTIONS(9622), + [aux_sym_call_statement_token1] = ACTIONS(9622), + [sym__ambiguous_call_statement] = ACTIONS(9622), + [aux_sym_addressof_expression_token1] = ACTIONS(9622), + [aux_sym_type_of_expression_token1] = ACTIONS(9622), + [aux_sym_unary_expression_token1] = ACTIONS(9622), + [sym_string_literal] = ACTIONS(9624), + [sym_number_literal] = ACTIONS(9624), + [aux_sym_boolean_literal_token1] = ACTIONS(9622), + [aux_sym_boolean_literal_token2] = ACTIONS(9622), + [sym_nothing_literal] = ACTIONS(9622), + [sym_null_literal] = ACTIONS(9622), + [sym_empty_literal] = ACTIONS(9622), + [sym_date_literal] = ACTIONS(9624), + [anon_sym_POUND] = ACTIONS(9622), + }, + [STATE(4088)] = { + [aux_sym_close_statement_repeat1] = STATE(4088), + [sym_identifier] = ACTIONS(8443), + [sym_newline] = ACTIONS(8445), + [anon_sym_COLON] = ACTIONS(8445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8443), + [aux_sym_frm_property_statement_token1] = ACTIONS(8443), + [anon_sym_DOT] = ACTIONS(8443), + [anon_sym_BANG] = ACTIONS(8445), + [aux_sym__attribute_identifier_token1] = ACTIONS(8443), + [aux_sym_option_statement_token3] = ACTIONS(8443), + [aux_sym_type_declaration_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8443), + [aux_sym_enum_declaration_token1] = ACTIONS(8443), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8443), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8443), + [aux_sym_declare_function_statement_token1] = ACTIONS(8443), + [aux_sym_preprocessor_const_token1] = ACTIONS(8443), + [aux_sym__property_get_header_token1] = ACTIONS(8443), + [aux_sym_event_declaration_token1] = ACTIONS(8443), + [sym_static_modifier] = ACTIONS(8443), + [sym__dim_keyword] = ACTIONS(8443), + [sym__redim_keyword] = ACTIONS(8443), + [aux_sym_get_accessor_token1] = ACTIONS(8443), + [aux_sym_set_accessor_token1] = ACTIONS(8443), + [anon_sym_COMMA] = ACTIONS(9626), + [aux_sym_const_declaration_token1] = ACTIONS(8443), + [anon_sym_LPAREN] = ACTIONS(8445), + [aux_sym_as_type_clause_token2] = ACTIONS(8443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8443), + [aux_sym_visibility_token1] = ACTIONS(8443), + [aux_sym_visibility_token2] = ACTIONS(8443), + [aux_sym_elseif_fragment_token1] = ACTIONS(8443), + [aux_sym_else_fragment_token1] = ACTIONS(8443), + [aux_sym_select_statement_token1] = ACTIONS(8443), + [aux_sym__for_header_token1] = ACTIONS(8443), + [aux_sym_do_statement_token1] = ACTIONS(8443), + [aux_sym_do_condition_token1] = ACTIONS(8443), + [aux_sym_with_statement_token1] = ACTIONS(8443), + [aux_sym_exit_statement_token1] = ACTIONS(8443), + [sym_end_statement] = ACTIONS(8445), + [aux_sym_on_goto_statement_token1] = ACTIONS(8443), + [aux_sym_on_goto_statement_token2] = ACTIONS(8443), + [aux_sym_on_error_statement_token2] = ACTIONS(8443), + [sym__ambiguous_redim_statement] = ACTIONS(8445), + [aux_sym_erase_statement_token1] = ACTIONS(8443), + [aux_sym_open_statement_token1] = ACTIONS(8443), + [aux_sym_file_mode_token2] = ACTIONS(8443), + [aux_sym_file_access_token2] = ACTIONS(8443), + [aux_sym_file_lock_token2] = ACTIONS(8443), + [aux_sym_print_statement_token1] = ACTIONS(8443), + [anon_sym_PLUS] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8443), + [anon_sym_QMARK] = ACTIONS(8445), + [aux_sym_close_statement_token1] = ACTIONS(8443), + [aux_sym_put_statement_token1] = ACTIONS(8443), + [aux_sym_unlock_statement_token1] = ACTIONS(8443), + [aux_sym_seek_statement_token1] = ACTIONS(8443), + [sym_reset_statement] = ACTIONS(8443), + [aux_sym_raise_event_statement_token1] = ACTIONS(8443), + [sym_stop_statement] = ACTIONS(8443), + [sym_beep_statement] = ACTIONS(8443), + [aux_sym_unload_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token2] = ACTIONS(8443), + [aux_sym_def_type_statement_token3] = ACTIONS(8443), + [aux_sym_def_type_statement_token4] = ACTIONS(8443), + [aux_sym_def_type_statement_token5] = ACTIONS(8443), + [aux_sym_def_type_statement_token6] = ACTIONS(8443), + [aux_sym_def_type_statement_token7] = ACTIONS(8443), + [aux_sym_def_type_statement_token8] = ACTIONS(8443), + [aux_sym_def_type_statement_token9] = ACTIONS(8443), + [aux_sym_def_type_statement_token10] = ACTIONS(8443), + [aux_sym_def_type_statement_token11] = ACTIONS(8443), + [aux_sym_def_type_statement_token12] = ACTIONS(8443), + [aux_sym_def_type_statement_token13] = ACTIONS(8443), + [aux_sym_def_type_statement_token14] = ACTIONS(8443), + [aux_sym_call_statement_token1] = ACTIONS(8443), + [sym__ambiguous_call_statement] = ACTIONS(8443), + [aux_sym_addressof_expression_token1] = ACTIONS(8443), + [aux_sym_type_of_expression_token1] = ACTIONS(8443), + [aux_sym_unary_expression_token1] = ACTIONS(8443), + [sym_string_literal] = ACTIONS(8445), + [sym_number_literal] = ACTIONS(8445), + [aux_sym_boolean_literal_token1] = ACTIONS(8443), + [aux_sym_boolean_literal_token2] = ACTIONS(8443), + [sym_nothing_literal] = ACTIONS(8443), + [sym_null_literal] = ACTIONS(8443), + [sym_empty_literal] = ACTIONS(8443), + [sym_date_literal] = ACTIONS(8445), + [anon_sym_POUND] = ACTIONS(8443), + }, + [STATE(4089)] = { + [sym_identifier] = ACTIONS(8813), + [sym_newline] = ACTIONS(8815), + [anon_sym_COLON] = ACTIONS(8815), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8813), + [aux_sym_frm_property_statement_token1] = ACTIONS(8813), + [anon_sym_DOT] = ACTIONS(8813), + [anon_sym_BANG] = ACTIONS(8815), + [aux_sym__attribute_identifier_token1] = ACTIONS(8813), + [aux_sym_option_statement_token3] = ACTIONS(8813), + [aux_sym_type_declaration_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8813), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8813), + [aux_sym_enum_declaration_token1] = ACTIONS(8813), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8813), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8813), + [aux_sym_declare_function_statement_token1] = ACTIONS(8813), + [aux_sym_preprocessor_const_token1] = ACTIONS(8813), + [aux_sym__property_get_header_token1] = ACTIONS(8813), + [aux_sym_event_declaration_token1] = ACTIONS(8813), + [sym_static_modifier] = ACTIONS(8813), + [sym__dim_keyword] = ACTIONS(8813), + [sym__redim_keyword] = ACTIONS(8813), + [aux_sym_get_accessor_token1] = ACTIONS(8813), + [aux_sym_set_accessor_token1] = ACTIONS(8813), + [aux_sym_const_declaration_token1] = ACTIONS(8813), + [anon_sym_LPAREN] = ACTIONS(8815), + [aux_sym_as_type_clause_token2] = ACTIONS(8813), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8813), + [aux_sym_visibility_token1] = ACTIONS(8813), + [aux_sym_visibility_token2] = ACTIONS(8813), + [aux_sym_elseif_fragment_token1] = ACTIONS(8813), + [aux_sym_else_fragment_token1] = ACTIONS(8813), + [aux_sym_select_statement_token1] = ACTIONS(8813), + [aux_sym__for_header_token1] = ACTIONS(8813), + [aux_sym_do_statement_token1] = ACTIONS(8813), + [aux_sym_do_condition_token1] = ACTIONS(8813), + [aux_sym_with_statement_token1] = ACTIONS(8813), + [aux_sym_exit_statement_token1] = ACTIONS(8813), + [sym_end_statement] = ACTIONS(8815), + [aux_sym_on_goto_statement_token1] = ACTIONS(8813), + [aux_sym_on_goto_statement_token2] = ACTIONS(8813), + [aux_sym_on_error_statement_token2] = ACTIONS(8813), + [sym__ambiguous_redim_statement] = ACTIONS(8815), + [aux_sym_erase_statement_token1] = ACTIONS(8813), + [aux_sym_open_statement_token1] = ACTIONS(8813), + [aux_sym_file_mode_token2] = ACTIONS(8813), + [aux_sym_file_access_token2] = ACTIONS(8813), + [aux_sym_file_lock_token2] = ACTIONS(8813), + [aux_sym_print_statement_token1] = ACTIONS(8813), + [anon_sym_PLUS] = ACTIONS(8815), + [anon_sym_DASH] = ACTIONS(8813), + [anon_sym_QMARK] = ACTIONS(8815), + [aux_sym_close_statement_token1] = ACTIONS(8813), + [aux_sym_put_statement_token1] = ACTIONS(8813), + [aux_sym_unlock_statement_token1] = ACTIONS(8813), + [aux_sym_seek_statement_token1] = ACTIONS(8813), + [sym_reset_statement] = ACTIONS(8813), + [aux_sym_raise_event_statement_token1] = ACTIONS(8813), + [sym_stop_statement] = ACTIONS(8813), + [sym_beep_statement] = ACTIONS(8813), + [aux_sym_unload_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token2] = ACTIONS(8813), + [aux_sym_def_type_statement_token3] = ACTIONS(8813), + [aux_sym_def_type_statement_token4] = ACTIONS(8813), + [aux_sym_def_type_statement_token5] = ACTIONS(8813), + [aux_sym_def_type_statement_token6] = ACTIONS(8813), + [aux_sym_def_type_statement_token7] = ACTIONS(8813), + [aux_sym_def_type_statement_token8] = ACTIONS(8813), + [aux_sym_def_type_statement_token9] = ACTIONS(8813), + [aux_sym_def_type_statement_token10] = ACTIONS(8813), + [aux_sym_def_type_statement_token11] = ACTIONS(8813), + [aux_sym_def_type_statement_token12] = ACTIONS(8813), + [aux_sym_def_type_statement_token13] = ACTIONS(8813), + [aux_sym_def_type_statement_token14] = ACTIONS(8813), + [aux_sym_call_statement_token1] = ACTIONS(8813), + [sym__ambiguous_call_statement] = ACTIONS(8813), + [aux_sym_addressof_expression_token1] = ACTIONS(8813), + [aux_sym_type_of_expression_token1] = ACTIONS(8813), + [aux_sym_unary_expression_token1] = ACTIONS(8813), + [sym_string_literal] = ACTIONS(8815), + [sym_number_literal] = ACTIONS(8815), + [aux_sym_boolean_literal_token1] = ACTIONS(8813), + [aux_sym_boolean_literal_token2] = ACTIONS(8813), + [sym_nothing_literal] = ACTIONS(8813), + [sym_null_literal] = ACTIONS(8813), + [sym_empty_literal] = ACTIONS(8813), + [sym_date_literal] = ACTIONS(8815), + [anon_sym_POUND] = ACTIONS(8813), + }, + [STATE(4090)] = { + [aux_sym_next_variable_list_repeat1] = STATE(4109), + [sym_identifier] = ACTIONS(7939), + [sym_newline] = ACTIONS(7941), + [anon_sym_COLON] = ACTIONS(7941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7939), + [aux_sym_frm_property_statement_token1] = ACTIONS(7939), + [anon_sym_DOT] = ACTIONS(7939), + [anon_sym_BANG] = ACTIONS(7941), + [aux_sym__attribute_identifier_token1] = ACTIONS(7939), + [aux_sym_option_statement_token3] = ACTIONS(7939), + [aux_sym_type_declaration_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7939), + [aux_sym_enum_declaration_token1] = ACTIONS(7939), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7939), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7939), + [aux_sym_declare_function_statement_token1] = ACTIONS(7939), + [aux_sym_preprocessor_const_token1] = ACTIONS(7939), + [aux_sym__property_get_header_token1] = ACTIONS(7939), + [aux_sym_event_declaration_token1] = ACTIONS(7939), + [sym_static_modifier] = ACTIONS(7939), + [sym__dim_keyword] = ACTIONS(7939), + [sym__redim_keyword] = ACTIONS(7939), + [aux_sym_get_accessor_token1] = ACTIONS(7939), + [aux_sym_set_accessor_token1] = ACTIONS(7939), + [anon_sym_COMMA] = ACTIONS(9629), + [aux_sym_const_declaration_token1] = ACTIONS(7939), + [anon_sym_LPAREN] = ACTIONS(7941), + [aux_sym_as_type_clause_token2] = ACTIONS(7939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7939), + [aux_sym_visibility_token1] = ACTIONS(7939), + [aux_sym_visibility_token2] = ACTIONS(7939), + [aux_sym_elseif_fragment_token1] = ACTIONS(7939), + [aux_sym_else_fragment_token1] = ACTIONS(7939), + [aux_sym_select_statement_token1] = ACTIONS(7939), + [aux_sym__for_header_token1] = ACTIONS(7939), + [aux_sym_do_statement_token1] = ACTIONS(7939), + [aux_sym_do_condition_token1] = ACTIONS(7939), + [aux_sym_with_statement_token1] = ACTIONS(7939), + [aux_sym_exit_statement_token1] = ACTIONS(7939), + [sym_end_statement] = ACTIONS(7941), + [aux_sym_on_goto_statement_token1] = ACTIONS(7939), + [aux_sym_on_goto_statement_token2] = ACTIONS(7939), + [aux_sym_on_error_statement_token2] = ACTIONS(7939), + [sym__ambiguous_redim_statement] = ACTIONS(7941), + [aux_sym_erase_statement_token1] = ACTIONS(7939), + [aux_sym_open_statement_token1] = ACTIONS(7939), + [aux_sym_file_mode_token2] = ACTIONS(7939), + [aux_sym_file_access_token2] = ACTIONS(7939), + [aux_sym_file_lock_token2] = ACTIONS(7939), + [aux_sym_print_statement_token1] = ACTIONS(7939), + [anon_sym_PLUS] = ACTIONS(7941), + [anon_sym_DASH] = ACTIONS(7939), + [anon_sym_QMARK] = ACTIONS(7941), + [aux_sym_close_statement_token1] = ACTIONS(7939), + [aux_sym_put_statement_token1] = ACTIONS(7939), + [aux_sym_unlock_statement_token1] = ACTIONS(7939), + [aux_sym_seek_statement_token1] = ACTIONS(7939), + [sym_reset_statement] = ACTIONS(7939), + [aux_sym_raise_event_statement_token1] = ACTIONS(7939), + [sym_stop_statement] = ACTIONS(7939), + [sym_beep_statement] = ACTIONS(7939), + [aux_sym_unload_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token2] = ACTIONS(7939), + [aux_sym_def_type_statement_token3] = ACTIONS(7939), + [aux_sym_def_type_statement_token4] = ACTIONS(7939), + [aux_sym_def_type_statement_token5] = ACTIONS(7939), + [aux_sym_def_type_statement_token6] = ACTIONS(7939), + [aux_sym_def_type_statement_token7] = ACTIONS(7939), + [aux_sym_def_type_statement_token8] = ACTIONS(7939), + [aux_sym_def_type_statement_token9] = ACTIONS(7939), + [aux_sym_def_type_statement_token10] = ACTIONS(7939), + [aux_sym_def_type_statement_token11] = ACTIONS(7939), + [aux_sym_def_type_statement_token12] = ACTIONS(7939), + [aux_sym_def_type_statement_token13] = ACTIONS(7939), + [aux_sym_def_type_statement_token14] = ACTIONS(7939), + [aux_sym_call_statement_token1] = ACTIONS(7939), + [sym__ambiguous_call_statement] = ACTIONS(7939), + [aux_sym_addressof_expression_token1] = ACTIONS(7939), + [aux_sym_type_of_expression_token1] = ACTIONS(7939), + [aux_sym_unary_expression_token1] = ACTIONS(7939), + [sym_string_literal] = ACTIONS(7941), + [sym_number_literal] = ACTIONS(7941), + [aux_sym_boolean_literal_token1] = ACTIONS(7939), + [aux_sym_boolean_literal_token2] = ACTIONS(7939), + [sym_nothing_literal] = ACTIONS(7939), + [sym_null_literal] = ACTIONS(7939), + [sym_empty_literal] = ACTIONS(7939), + [sym_date_literal] = ACTIONS(7941), + [anon_sym_POUND] = ACTIONS(7939), + }, + [STATE(4091)] = { + [sym_identifier] = ACTIONS(9631), + [sym_newline] = ACTIONS(9633), + [anon_sym_COLON] = ACTIONS(9633), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9631), + [aux_sym_frm_property_statement_token1] = ACTIONS(9631), + [anon_sym_DOT] = ACTIONS(9631), + [anon_sym_BANG] = ACTIONS(9633), + [aux_sym__attribute_identifier_token1] = ACTIONS(9631), + [aux_sym_option_statement_token3] = ACTIONS(9631), + [aux_sym_type_declaration_token1] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9631), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9631), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9631), + [aux_sym_enum_declaration_token1] = ACTIONS(9631), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9631), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9631), + [aux_sym_declare_function_statement_token1] = ACTIONS(9631), + [aux_sym_preprocessor_const_token1] = ACTIONS(9631), + [aux_sym__property_get_header_token1] = ACTIONS(9631), + [aux_sym_event_declaration_token1] = ACTIONS(9631), + [sym_static_modifier] = ACTIONS(9631), + [sym__dim_keyword] = ACTIONS(9631), + [sym__redim_keyword] = ACTIONS(9631), + [aux_sym_get_accessor_token1] = ACTIONS(9631), + [aux_sym_set_accessor_token1] = ACTIONS(9631), + [aux_sym_const_declaration_token1] = ACTIONS(9631), + [anon_sym_LPAREN] = ACTIONS(9633), + [aux_sym_as_type_clause_token2] = ACTIONS(9631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9631), + [aux_sym_visibility_token1] = ACTIONS(9631), + [aux_sym_visibility_token2] = ACTIONS(9631), + [aux_sym_elseif_fragment_token1] = ACTIONS(9631), + [aux_sym_else_fragment_token1] = ACTIONS(9631), + [aux_sym_select_statement_token1] = ACTIONS(9631), + [aux_sym__for_header_token1] = ACTIONS(9631), + [aux_sym_do_statement_token1] = ACTIONS(9631), + [aux_sym_do_condition_token1] = ACTIONS(9631), + [aux_sym_with_statement_token1] = ACTIONS(9631), + [aux_sym_exit_statement_token1] = ACTIONS(9631), + [sym_end_statement] = ACTIONS(9633), + [aux_sym_on_goto_statement_token1] = ACTIONS(9631), + [aux_sym_on_goto_statement_token2] = ACTIONS(9631), + [aux_sym_on_error_statement_token2] = ACTIONS(9631), + [sym__ambiguous_redim_statement] = ACTIONS(9633), + [aux_sym_erase_statement_token1] = ACTIONS(9631), + [aux_sym_open_statement_token1] = ACTIONS(9631), + [aux_sym_file_mode_token2] = ACTIONS(9631), + [aux_sym_file_access_token2] = ACTIONS(9631), + [aux_sym_file_lock_token2] = ACTIONS(9631), + [aux_sym_print_statement_token1] = ACTIONS(9631), + [anon_sym_PLUS] = ACTIONS(9633), + [anon_sym_DASH] = ACTIONS(9631), + [anon_sym_QMARK] = ACTIONS(9633), + [aux_sym_close_statement_token1] = ACTIONS(9631), + [aux_sym_put_statement_token1] = ACTIONS(9631), + [aux_sym_unlock_statement_token1] = ACTIONS(9631), + [aux_sym_seek_statement_token1] = ACTIONS(9631), + [sym_reset_statement] = ACTIONS(9631), + [aux_sym_raise_event_statement_token1] = ACTIONS(9631), + [sym_stop_statement] = ACTIONS(9631), + [sym_beep_statement] = ACTIONS(9631), + [aux_sym_unload_statement_token1] = ACTIONS(9631), + [aux_sym_def_type_statement_token1] = ACTIONS(9631), + [aux_sym_def_type_statement_token2] = ACTIONS(9631), + [aux_sym_def_type_statement_token3] = ACTIONS(9631), + [aux_sym_def_type_statement_token4] = ACTIONS(9631), + [aux_sym_def_type_statement_token5] = ACTIONS(9631), + [aux_sym_def_type_statement_token6] = ACTIONS(9631), + [aux_sym_def_type_statement_token7] = ACTIONS(9631), + [aux_sym_def_type_statement_token8] = ACTIONS(9631), + [aux_sym_def_type_statement_token9] = ACTIONS(9631), + [aux_sym_def_type_statement_token10] = ACTIONS(9631), + [aux_sym_def_type_statement_token11] = ACTIONS(9631), + [aux_sym_def_type_statement_token12] = ACTIONS(9631), + [aux_sym_def_type_statement_token13] = ACTIONS(9631), + [aux_sym_def_type_statement_token14] = ACTIONS(9631), + [aux_sym_call_statement_token1] = ACTIONS(9631), + [sym__ambiguous_call_statement] = ACTIONS(9631), + [aux_sym_addressof_expression_token1] = ACTIONS(9631), + [aux_sym_type_of_expression_token1] = ACTIONS(9631), + [aux_sym_unary_expression_token1] = ACTIONS(9631), + [sym_string_literal] = ACTIONS(9633), + [sym_number_literal] = ACTIONS(9633), + [aux_sym_boolean_literal_token1] = ACTIONS(9631), + [aux_sym_boolean_literal_token2] = ACTIONS(9631), + [sym_nothing_literal] = ACTIONS(9631), + [sym_null_literal] = ACTIONS(9631), + [sym_empty_literal] = ACTIONS(9631), + [sym_date_literal] = ACTIONS(9633), + [anon_sym_POUND] = ACTIONS(9631), + }, + [STATE(4092)] = { + [sym_identifier] = ACTIONS(9635), + [sym_newline] = ACTIONS(9637), + [anon_sym_COLON] = ACTIONS(9637), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9635), + [aux_sym_frm_property_statement_token1] = ACTIONS(9635), + [anon_sym_DOT] = ACTIONS(9635), + [anon_sym_BANG] = ACTIONS(9637), + [aux_sym__attribute_identifier_token1] = ACTIONS(9635), + [aux_sym_option_statement_token3] = ACTIONS(9635), + [aux_sym_type_declaration_token1] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9635), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9635), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9635), + [aux_sym_enum_declaration_token1] = ACTIONS(9635), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9635), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9635), + [aux_sym_declare_function_statement_token1] = ACTIONS(9635), + [aux_sym_preprocessor_const_token1] = ACTIONS(9635), + [aux_sym__property_get_header_token1] = ACTIONS(9635), + [aux_sym_event_declaration_token1] = ACTIONS(9635), + [sym_static_modifier] = ACTIONS(9635), + [sym__dim_keyword] = ACTIONS(9635), + [sym__redim_keyword] = ACTIONS(9635), + [aux_sym_get_accessor_token1] = ACTIONS(9635), + [aux_sym_set_accessor_token1] = ACTIONS(9635), + [aux_sym_const_declaration_token1] = ACTIONS(9635), + [anon_sym_LPAREN] = ACTIONS(9637), + [aux_sym_as_type_clause_token2] = ACTIONS(9635), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9635), + [aux_sym_visibility_token1] = ACTIONS(9635), + [aux_sym_visibility_token2] = ACTIONS(9635), + [aux_sym_elseif_fragment_token1] = ACTIONS(9635), + [aux_sym_else_fragment_token1] = ACTIONS(9635), + [aux_sym_select_statement_token1] = ACTIONS(9635), + [aux_sym__for_header_token1] = ACTIONS(9635), + [aux_sym_do_statement_token1] = ACTIONS(9635), + [aux_sym_do_condition_token1] = ACTIONS(9635), + [aux_sym_with_statement_token1] = ACTIONS(9635), + [aux_sym_exit_statement_token1] = ACTIONS(9635), + [sym_end_statement] = ACTIONS(9637), + [aux_sym_on_goto_statement_token1] = ACTIONS(9635), + [aux_sym_on_goto_statement_token2] = ACTIONS(9635), + [aux_sym_on_error_statement_token2] = ACTIONS(9635), + [sym__ambiguous_redim_statement] = ACTIONS(9637), + [aux_sym_erase_statement_token1] = ACTIONS(9635), + [aux_sym_open_statement_token1] = ACTIONS(9635), + [aux_sym_file_mode_token2] = ACTIONS(9635), + [aux_sym_file_access_token2] = ACTIONS(9635), + [aux_sym_file_lock_token2] = ACTIONS(9635), + [aux_sym_print_statement_token1] = ACTIONS(9635), + [anon_sym_PLUS] = ACTIONS(9637), + [anon_sym_DASH] = ACTIONS(9635), + [anon_sym_QMARK] = ACTIONS(9637), + [aux_sym_close_statement_token1] = ACTIONS(9635), + [aux_sym_put_statement_token1] = ACTIONS(9635), + [aux_sym_unlock_statement_token1] = ACTIONS(9635), + [aux_sym_seek_statement_token1] = ACTIONS(9635), + [sym_reset_statement] = ACTIONS(9635), + [aux_sym_raise_event_statement_token1] = ACTIONS(9635), + [sym_stop_statement] = ACTIONS(9635), + [sym_beep_statement] = ACTIONS(9635), + [aux_sym_unload_statement_token1] = ACTIONS(9635), + [aux_sym_def_type_statement_token1] = ACTIONS(9635), + [aux_sym_def_type_statement_token2] = ACTIONS(9635), + [aux_sym_def_type_statement_token3] = ACTIONS(9635), + [aux_sym_def_type_statement_token4] = ACTIONS(9635), + [aux_sym_def_type_statement_token5] = ACTIONS(9635), + [aux_sym_def_type_statement_token6] = ACTIONS(9635), + [aux_sym_def_type_statement_token7] = ACTIONS(9635), + [aux_sym_def_type_statement_token8] = ACTIONS(9635), + [aux_sym_def_type_statement_token9] = ACTIONS(9635), + [aux_sym_def_type_statement_token10] = ACTIONS(9635), + [aux_sym_def_type_statement_token11] = ACTIONS(9635), + [aux_sym_def_type_statement_token12] = ACTIONS(9635), + [aux_sym_def_type_statement_token13] = ACTIONS(9635), + [aux_sym_def_type_statement_token14] = ACTIONS(9635), + [aux_sym_call_statement_token1] = ACTIONS(9635), + [sym__ambiguous_call_statement] = ACTIONS(9635), + [aux_sym_addressof_expression_token1] = ACTIONS(9635), + [aux_sym_type_of_expression_token1] = ACTIONS(9635), + [aux_sym_unary_expression_token1] = ACTIONS(9635), + [sym_string_literal] = ACTIONS(9637), + [sym_number_literal] = ACTIONS(9637), + [aux_sym_boolean_literal_token1] = ACTIONS(9635), + [aux_sym_boolean_literal_token2] = ACTIONS(9635), + [sym_nothing_literal] = ACTIONS(9635), + [sym_null_literal] = ACTIONS(9635), + [sym_empty_literal] = ACTIONS(9635), + [sym_date_literal] = ACTIONS(9637), + [anon_sym_POUND] = ACTIONS(9635), + }, + [STATE(4093)] = { + [sym_identifier] = ACTIONS(9639), + [sym_newline] = ACTIONS(9641), + [anon_sym_COLON] = ACTIONS(9641), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9639), + [aux_sym_frm_property_statement_token1] = ACTIONS(9639), + [anon_sym_DOT] = ACTIONS(9639), + [anon_sym_BANG] = ACTIONS(9641), + [aux_sym__attribute_identifier_token1] = ACTIONS(9639), + [aux_sym_option_statement_token3] = ACTIONS(9639), + [aux_sym_type_declaration_token1] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9639), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9639), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9639), + [aux_sym_enum_declaration_token1] = ACTIONS(9639), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9639), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9639), + [aux_sym_declare_function_statement_token1] = ACTIONS(9639), + [aux_sym_preprocessor_const_token1] = ACTIONS(9639), + [aux_sym__property_get_header_token1] = ACTIONS(9639), + [aux_sym_event_declaration_token1] = ACTIONS(9639), + [sym_static_modifier] = ACTIONS(9639), + [sym__dim_keyword] = ACTIONS(9639), + [sym__redim_keyword] = ACTIONS(9639), + [aux_sym_get_accessor_token1] = ACTIONS(9639), + [aux_sym_set_accessor_token1] = ACTIONS(9639), + [aux_sym_const_declaration_token1] = ACTIONS(9639), + [anon_sym_LPAREN] = ACTIONS(9641), + [aux_sym_as_type_clause_token2] = ACTIONS(9639), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9639), + [aux_sym_visibility_token1] = ACTIONS(9639), + [aux_sym_visibility_token2] = ACTIONS(9639), + [aux_sym_elseif_fragment_token1] = ACTIONS(9639), + [aux_sym_else_fragment_token1] = ACTIONS(9639), + [aux_sym_select_statement_token1] = ACTIONS(9639), + [aux_sym__for_header_token1] = ACTIONS(9639), + [aux_sym_do_statement_token1] = ACTIONS(9639), + [aux_sym_do_condition_token1] = ACTIONS(9639), + [aux_sym_with_statement_token1] = ACTIONS(9639), + [aux_sym_exit_statement_token1] = ACTIONS(9639), + [sym_end_statement] = ACTIONS(9641), + [aux_sym_on_goto_statement_token1] = ACTIONS(9639), + [aux_sym_on_goto_statement_token2] = ACTIONS(9639), + [aux_sym_on_error_statement_token2] = ACTIONS(9639), + [sym__ambiguous_redim_statement] = ACTIONS(9641), + [aux_sym_erase_statement_token1] = ACTIONS(9639), + [aux_sym_open_statement_token1] = ACTIONS(9639), + [aux_sym_file_mode_token2] = ACTIONS(9639), + [aux_sym_file_access_token2] = ACTIONS(9639), + [aux_sym_file_lock_token2] = ACTIONS(9639), + [aux_sym_print_statement_token1] = ACTIONS(9639), + [anon_sym_PLUS] = ACTIONS(9641), + [anon_sym_DASH] = ACTIONS(9639), + [anon_sym_QMARK] = ACTIONS(9641), + [aux_sym_close_statement_token1] = ACTIONS(9639), + [aux_sym_put_statement_token1] = ACTIONS(9639), + [aux_sym_unlock_statement_token1] = ACTIONS(9639), + [aux_sym_seek_statement_token1] = ACTIONS(9639), + [sym_reset_statement] = ACTIONS(9639), + [aux_sym_raise_event_statement_token1] = ACTIONS(9639), + [sym_stop_statement] = ACTIONS(9639), + [sym_beep_statement] = ACTIONS(9639), + [aux_sym_unload_statement_token1] = ACTIONS(9639), + [aux_sym_def_type_statement_token1] = ACTIONS(9639), + [aux_sym_def_type_statement_token2] = ACTIONS(9639), + [aux_sym_def_type_statement_token3] = ACTIONS(9639), + [aux_sym_def_type_statement_token4] = ACTIONS(9639), + [aux_sym_def_type_statement_token5] = ACTIONS(9639), + [aux_sym_def_type_statement_token6] = ACTIONS(9639), + [aux_sym_def_type_statement_token7] = ACTIONS(9639), + [aux_sym_def_type_statement_token8] = ACTIONS(9639), + [aux_sym_def_type_statement_token9] = ACTIONS(9639), + [aux_sym_def_type_statement_token10] = ACTIONS(9639), + [aux_sym_def_type_statement_token11] = ACTIONS(9639), + [aux_sym_def_type_statement_token12] = ACTIONS(9639), + [aux_sym_def_type_statement_token13] = ACTIONS(9639), + [aux_sym_def_type_statement_token14] = ACTIONS(9639), + [aux_sym_call_statement_token1] = ACTIONS(9639), + [sym__ambiguous_call_statement] = ACTIONS(9639), + [aux_sym_addressof_expression_token1] = ACTIONS(9639), + [aux_sym_type_of_expression_token1] = ACTIONS(9639), + [aux_sym_unary_expression_token1] = ACTIONS(9639), + [sym_string_literal] = ACTIONS(9641), + [sym_number_literal] = ACTIONS(9641), + [aux_sym_boolean_literal_token1] = ACTIONS(9639), + [aux_sym_boolean_literal_token2] = ACTIONS(9639), + [sym_nothing_literal] = ACTIONS(9639), + [sym_null_literal] = ACTIONS(9639), + [sym_empty_literal] = ACTIONS(9639), + [sym_date_literal] = ACTIONS(9641), + [anon_sym_POUND] = ACTIONS(9639), + }, + [STATE(4094)] = { + [sym_identifier] = ACTIONS(9643), + [sym_newline] = ACTIONS(9645), + [anon_sym_COLON] = ACTIONS(9645), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9643), + [aux_sym_frm_property_statement_token1] = ACTIONS(9643), + [anon_sym_DOT] = ACTIONS(9643), + [anon_sym_BANG] = ACTIONS(9645), + [aux_sym__attribute_identifier_token1] = ACTIONS(9643), + [aux_sym_option_statement_token3] = ACTIONS(9643), + [aux_sym_type_declaration_token1] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9643), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9643), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9643), + [aux_sym_enum_declaration_token1] = ACTIONS(9643), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9643), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9643), + [aux_sym_declare_function_statement_token1] = ACTIONS(9643), + [aux_sym_preprocessor_const_token1] = ACTIONS(9643), + [aux_sym__property_get_header_token1] = ACTIONS(9643), + [aux_sym_event_declaration_token1] = ACTIONS(9643), + [sym_static_modifier] = ACTIONS(9643), + [sym__dim_keyword] = ACTIONS(9643), + [sym__redim_keyword] = ACTIONS(9643), + [aux_sym_get_accessor_token1] = ACTIONS(9643), + [aux_sym_set_accessor_token1] = ACTIONS(9643), + [aux_sym_const_declaration_token1] = ACTIONS(9643), + [anon_sym_LPAREN] = ACTIONS(9645), + [aux_sym_as_type_clause_token2] = ACTIONS(9643), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9643), + [aux_sym_visibility_token1] = ACTIONS(9643), + [aux_sym_visibility_token2] = ACTIONS(9643), + [aux_sym_elseif_fragment_token1] = ACTIONS(9643), + [aux_sym_else_fragment_token1] = ACTIONS(9643), + [aux_sym_select_statement_token1] = ACTIONS(9643), + [aux_sym__for_header_token1] = ACTIONS(9643), + [aux_sym_do_statement_token1] = ACTIONS(9643), + [aux_sym_do_condition_token1] = ACTIONS(9643), + [aux_sym_with_statement_token1] = ACTIONS(9643), + [aux_sym_exit_statement_token1] = ACTIONS(9643), + [sym_end_statement] = ACTIONS(9645), + [aux_sym_on_goto_statement_token1] = ACTIONS(9643), + [aux_sym_on_goto_statement_token2] = ACTIONS(9643), + [aux_sym_on_error_statement_token2] = ACTIONS(9643), + [sym__ambiguous_redim_statement] = ACTIONS(9645), + [aux_sym_erase_statement_token1] = ACTIONS(9643), + [aux_sym_open_statement_token1] = ACTIONS(9643), + [aux_sym_file_mode_token2] = ACTIONS(9643), + [aux_sym_file_access_token2] = ACTIONS(9643), + [aux_sym_file_lock_token2] = ACTIONS(9643), + [aux_sym_print_statement_token1] = ACTIONS(9643), + [anon_sym_PLUS] = ACTIONS(9645), + [anon_sym_DASH] = ACTIONS(9643), + [anon_sym_QMARK] = ACTIONS(9645), + [aux_sym_close_statement_token1] = ACTIONS(9643), + [aux_sym_put_statement_token1] = ACTIONS(9643), + [aux_sym_unlock_statement_token1] = ACTIONS(9643), + [aux_sym_seek_statement_token1] = ACTIONS(9643), + [sym_reset_statement] = ACTIONS(9643), + [aux_sym_raise_event_statement_token1] = ACTIONS(9643), + [sym_stop_statement] = ACTIONS(9643), + [sym_beep_statement] = ACTIONS(9643), + [aux_sym_unload_statement_token1] = ACTIONS(9643), + [aux_sym_def_type_statement_token1] = ACTIONS(9643), + [aux_sym_def_type_statement_token2] = ACTIONS(9643), + [aux_sym_def_type_statement_token3] = ACTIONS(9643), + [aux_sym_def_type_statement_token4] = ACTIONS(9643), + [aux_sym_def_type_statement_token5] = ACTIONS(9643), + [aux_sym_def_type_statement_token6] = ACTIONS(9643), + [aux_sym_def_type_statement_token7] = ACTIONS(9643), + [aux_sym_def_type_statement_token8] = ACTIONS(9643), + [aux_sym_def_type_statement_token9] = ACTIONS(9643), + [aux_sym_def_type_statement_token10] = ACTIONS(9643), + [aux_sym_def_type_statement_token11] = ACTIONS(9643), + [aux_sym_def_type_statement_token12] = ACTIONS(9643), + [aux_sym_def_type_statement_token13] = ACTIONS(9643), + [aux_sym_def_type_statement_token14] = ACTIONS(9643), + [aux_sym_call_statement_token1] = ACTIONS(9643), + [sym__ambiguous_call_statement] = ACTIONS(9643), + [aux_sym_addressof_expression_token1] = ACTIONS(9643), + [aux_sym_type_of_expression_token1] = ACTIONS(9643), + [aux_sym_unary_expression_token1] = ACTIONS(9643), + [sym_string_literal] = ACTIONS(9645), + [sym_number_literal] = ACTIONS(9645), + [aux_sym_boolean_literal_token1] = ACTIONS(9643), + [aux_sym_boolean_literal_token2] = ACTIONS(9643), + [sym_nothing_literal] = ACTIONS(9643), + [sym_null_literal] = ACTIONS(9643), + [sym_empty_literal] = ACTIONS(9643), + [sym_date_literal] = ACTIONS(9645), + [anon_sym_POUND] = ACTIONS(9643), + }, + [STATE(4095)] = { + [sym_do_condition] = STATE(4433), + [sym_identifier] = ACTIONS(8595), + [sym_newline] = ACTIONS(8597), + [anon_sym_COLON] = ACTIONS(8597), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8595), + [aux_sym_frm_property_statement_token1] = ACTIONS(8595), + [anon_sym_DOT] = ACTIONS(8595), + [anon_sym_BANG] = ACTIONS(8597), + [aux_sym__attribute_identifier_token1] = ACTIONS(8595), + [aux_sym_option_statement_token3] = ACTIONS(8595), + [aux_sym_type_declaration_token1] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8595), + [aux_sym_enum_declaration_token1] = ACTIONS(8595), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8595), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8595), + [aux_sym_declare_function_statement_token1] = ACTIONS(8595), + [aux_sym_preprocessor_const_token1] = ACTIONS(8595), + [aux_sym__property_get_header_token1] = ACTIONS(8595), + [aux_sym_event_declaration_token1] = ACTIONS(8595), + [sym_static_modifier] = ACTIONS(8595), + [sym__dim_keyword] = ACTIONS(8595), + [sym__redim_keyword] = ACTIONS(8595), + [aux_sym_get_accessor_token1] = ACTIONS(8595), + [aux_sym_set_accessor_token1] = ACTIONS(8595), + [aux_sym_const_declaration_token1] = ACTIONS(8595), + [anon_sym_LPAREN] = ACTIONS(8597), + [aux_sym_as_type_clause_token2] = ACTIONS(8595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8595), + [aux_sym_visibility_token1] = ACTIONS(8595), + [aux_sym_visibility_token2] = ACTIONS(8595), + [aux_sym_elseif_fragment_token1] = ACTIONS(8595), + [aux_sym_else_fragment_token1] = ACTIONS(8595), + [aux_sym_select_statement_token1] = ACTIONS(8595), + [aux_sym__for_header_token1] = ACTIONS(8595), + [aux_sym_do_statement_token1] = ACTIONS(8595), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8595), + [aux_sym_exit_statement_token1] = ACTIONS(8595), + [sym_end_statement] = ACTIONS(8597), + [aux_sym_on_goto_statement_token1] = ACTIONS(8595), + [aux_sym_on_goto_statement_token2] = ACTIONS(8595), + [aux_sym_on_error_statement_token2] = ACTIONS(8595), + [sym__ambiguous_redim_statement] = ACTIONS(8597), + [aux_sym_erase_statement_token1] = ACTIONS(8595), + [aux_sym_open_statement_token1] = ACTIONS(8595), + [aux_sym_file_mode_token2] = ACTIONS(8595), + [aux_sym_file_access_token2] = ACTIONS(8595), + [aux_sym_file_lock_token2] = ACTIONS(8595), + [aux_sym_print_statement_token1] = ACTIONS(8595), + [anon_sym_PLUS] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(8595), + [anon_sym_QMARK] = ACTIONS(8597), + [aux_sym_close_statement_token1] = ACTIONS(8595), + [aux_sym_put_statement_token1] = ACTIONS(8595), + [aux_sym_unlock_statement_token1] = ACTIONS(8595), + [aux_sym_seek_statement_token1] = ACTIONS(8595), + [sym_reset_statement] = ACTIONS(8595), + [aux_sym_raise_event_statement_token1] = ACTIONS(8595), + [sym_stop_statement] = ACTIONS(8595), + [sym_beep_statement] = ACTIONS(8595), + [aux_sym_unload_statement_token1] = ACTIONS(8595), + [aux_sym_def_type_statement_token1] = ACTIONS(8595), + [aux_sym_def_type_statement_token2] = ACTIONS(8595), + [aux_sym_def_type_statement_token3] = ACTIONS(8595), + [aux_sym_def_type_statement_token4] = ACTIONS(8595), + [aux_sym_def_type_statement_token5] = ACTIONS(8595), + [aux_sym_def_type_statement_token6] = ACTIONS(8595), + [aux_sym_def_type_statement_token7] = ACTIONS(8595), + [aux_sym_def_type_statement_token8] = ACTIONS(8595), + [aux_sym_def_type_statement_token9] = ACTIONS(8595), + [aux_sym_def_type_statement_token10] = ACTIONS(8595), + [aux_sym_def_type_statement_token11] = ACTIONS(8595), + [aux_sym_def_type_statement_token12] = ACTIONS(8595), + [aux_sym_def_type_statement_token13] = ACTIONS(8595), + [aux_sym_def_type_statement_token14] = ACTIONS(8595), + [aux_sym_call_statement_token1] = ACTIONS(8595), + [sym__ambiguous_call_statement] = ACTIONS(8595), + [aux_sym_addressof_expression_token1] = ACTIONS(8595), + [aux_sym_type_of_expression_token1] = ACTIONS(8595), + [aux_sym_unary_expression_token1] = ACTIONS(8595), + [sym_string_literal] = ACTIONS(8597), + [sym_number_literal] = ACTIONS(8597), + [aux_sym_boolean_literal_token1] = ACTIONS(8595), + [aux_sym_boolean_literal_token2] = ACTIONS(8595), + [sym_nothing_literal] = ACTIONS(8595), + [sym_null_literal] = ACTIONS(8595), + [sym_empty_literal] = ACTIONS(8595), + [sym_date_literal] = ACTIONS(8597), + [anon_sym_POUND] = ACTIONS(8595), + }, + [STATE(4096)] = { + [sym_do_condition] = STATE(4436), + [sym_identifier] = ACTIONS(8599), + [sym_newline] = ACTIONS(8601), + [anon_sym_COLON] = ACTIONS(8601), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8599), + [aux_sym_frm_property_statement_token1] = ACTIONS(8599), + [anon_sym_DOT] = ACTIONS(8599), + [anon_sym_BANG] = ACTIONS(8601), + [aux_sym__attribute_identifier_token1] = ACTIONS(8599), + [aux_sym_option_statement_token3] = ACTIONS(8599), + [aux_sym_type_declaration_token1] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8599), + [aux_sym_enum_declaration_token1] = ACTIONS(8599), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8599), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8599), + [aux_sym_declare_function_statement_token1] = ACTIONS(8599), + [aux_sym_preprocessor_const_token1] = ACTIONS(8599), + [aux_sym__property_get_header_token1] = ACTIONS(8599), + [aux_sym_event_declaration_token1] = ACTIONS(8599), + [sym_static_modifier] = ACTIONS(8599), + [sym__dim_keyword] = ACTIONS(8599), + [sym__redim_keyword] = ACTIONS(8599), + [aux_sym_get_accessor_token1] = ACTIONS(8599), + [aux_sym_set_accessor_token1] = ACTIONS(8599), + [aux_sym_const_declaration_token1] = ACTIONS(8599), + [anon_sym_LPAREN] = ACTIONS(8601), + [aux_sym_as_type_clause_token2] = ACTIONS(8599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8599), + [aux_sym_visibility_token1] = ACTIONS(8599), + [aux_sym_visibility_token2] = ACTIONS(8599), + [aux_sym_elseif_fragment_token1] = ACTIONS(8599), + [aux_sym_else_fragment_token1] = ACTIONS(8599), + [aux_sym_select_statement_token1] = ACTIONS(8599), + [aux_sym__for_header_token1] = ACTIONS(8599), + [aux_sym_do_statement_token1] = ACTIONS(8599), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8599), + [aux_sym_exit_statement_token1] = ACTIONS(8599), + [sym_end_statement] = ACTIONS(8601), + [aux_sym_on_goto_statement_token1] = ACTIONS(8599), + [aux_sym_on_goto_statement_token2] = ACTIONS(8599), + [aux_sym_on_error_statement_token2] = ACTIONS(8599), + [sym__ambiguous_redim_statement] = ACTIONS(8601), + [aux_sym_erase_statement_token1] = ACTIONS(8599), + [aux_sym_open_statement_token1] = ACTIONS(8599), + [aux_sym_file_mode_token2] = ACTIONS(8599), + [aux_sym_file_access_token2] = ACTIONS(8599), + [aux_sym_file_lock_token2] = ACTIONS(8599), + [aux_sym_print_statement_token1] = ACTIONS(8599), + [anon_sym_PLUS] = ACTIONS(8601), + [anon_sym_DASH] = ACTIONS(8599), + [anon_sym_QMARK] = ACTIONS(8601), + [aux_sym_close_statement_token1] = ACTIONS(8599), + [aux_sym_put_statement_token1] = ACTIONS(8599), + [aux_sym_unlock_statement_token1] = ACTIONS(8599), + [aux_sym_seek_statement_token1] = ACTIONS(8599), + [sym_reset_statement] = ACTIONS(8599), + [aux_sym_raise_event_statement_token1] = ACTIONS(8599), + [sym_stop_statement] = ACTIONS(8599), + [sym_beep_statement] = ACTIONS(8599), + [aux_sym_unload_statement_token1] = ACTIONS(8599), + [aux_sym_def_type_statement_token1] = ACTIONS(8599), + [aux_sym_def_type_statement_token2] = ACTIONS(8599), + [aux_sym_def_type_statement_token3] = ACTIONS(8599), + [aux_sym_def_type_statement_token4] = ACTIONS(8599), + [aux_sym_def_type_statement_token5] = ACTIONS(8599), + [aux_sym_def_type_statement_token6] = ACTIONS(8599), + [aux_sym_def_type_statement_token7] = ACTIONS(8599), + [aux_sym_def_type_statement_token8] = ACTIONS(8599), + [aux_sym_def_type_statement_token9] = ACTIONS(8599), + [aux_sym_def_type_statement_token10] = ACTIONS(8599), + [aux_sym_def_type_statement_token11] = ACTIONS(8599), + [aux_sym_def_type_statement_token12] = ACTIONS(8599), + [aux_sym_def_type_statement_token13] = ACTIONS(8599), + [aux_sym_def_type_statement_token14] = ACTIONS(8599), + [aux_sym_call_statement_token1] = ACTIONS(8599), + [sym__ambiguous_call_statement] = ACTIONS(8599), + [aux_sym_addressof_expression_token1] = ACTIONS(8599), + [aux_sym_type_of_expression_token1] = ACTIONS(8599), + [aux_sym_unary_expression_token1] = ACTIONS(8599), + [sym_string_literal] = ACTIONS(8601), + [sym_number_literal] = ACTIONS(8601), + [aux_sym_boolean_literal_token1] = ACTIONS(8599), + [aux_sym_boolean_literal_token2] = ACTIONS(8599), + [sym_nothing_literal] = ACTIONS(8599), + [sym_null_literal] = ACTIONS(8599), + [sym_empty_literal] = ACTIONS(8599), + [sym_date_literal] = ACTIONS(8601), + [anon_sym_POUND] = ACTIONS(8599), + }, + [STATE(4097)] = { + [aux_sym__argument_sequence_repeat2] = STATE(4190), + [sym_identifier] = ACTIONS(4172), + [sym_newline] = ACTIONS(4170), + [anon_sym_COLON] = ACTIONS(4170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4172), + [aux_sym_frm_property_statement_token1] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [aux_sym__attribute_identifier_token1] = ACTIONS(4172), + [aux_sym_option_statement_token3] = ACTIONS(4172), + [aux_sym_type_declaration_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4172), + [aux_sym_enum_declaration_token1] = ACTIONS(4172), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4172), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4172), + [aux_sym_declare_function_statement_token1] = ACTIONS(4172), + [aux_sym_preprocessor_const_token1] = ACTIONS(4172), + [aux_sym__property_get_header_token1] = ACTIONS(4172), + [aux_sym_event_declaration_token1] = ACTIONS(4172), + [sym_static_modifier] = ACTIONS(4172), + [sym__dim_keyword] = ACTIONS(4172), + [sym__redim_keyword] = ACTIONS(4172), + [aux_sym_get_accessor_token1] = ACTIONS(4172), + [aux_sym_set_accessor_token1] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(4230), + [aux_sym_const_declaration_token1] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4170), + [aux_sym_as_type_clause_token2] = ACTIONS(4172), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4172), + [aux_sym_visibility_token1] = ACTIONS(4172), + [aux_sym_visibility_token2] = ACTIONS(4172), + [aux_sym_elseif_fragment_token1] = ACTIONS(4172), + [aux_sym_else_fragment_token1] = ACTIONS(4172), + [aux_sym_select_statement_token1] = ACTIONS(4172), + [aux_sym__for_header_token1] = ACTIONS(4172), + [aux_sym_do_statement_token1] = ACTIONS(4172), + [aux_sym_do_condition_token1] = ACTIONS(4172), + [aux_sym_with_statement_token1] = ACTIONS(4172), + [aux_sym_exit_statement_token1] = ACTIONS(4172), + [sym_end_statement] = ACTIONS(4170), + [aux_sym_on_goto_statement_token1] = ACTIONS(4172), + [aux_sym_on_goto_statement_token2] = ACTIONS(4172), + [aux_sym_on_error_statement_token2] = ACTIONS(4172), + [sym__ambiguous_redim_statement] = ACTIONS(4170), + [aux_sym_erase_statement_token1] = ACTIONS(4172), + [aux_sym_open_statement_token1] = ACTIONS(4172), + [aux_sym_file_mode_token2] = ACTIONS(4172), + [aux_sym_file_access_token2] = ACTIONS(4172), + [aux_sym_file_lock_token2] = ACTIONS(4172), + [aux_sym_print_statement_token1] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4172), + [anon_sym_QMARK] = ACTIONS(4170), + [aux_sym_close_statement_token1] = ACTIONS(4172), + [aux_sym_put_statement_token1] = ACTIONS(4172), + [aux_sym_unlock_statement_token1] = ACTIONS(4172), + [aux_sym_seek_statement_token1] = ACTIONS(4172), + [sym_reset_statement] = ACTIONS(4172), + [aux_sym_raise_event_statement_token1] = ACTIONS(4172), + [sym_stop_statement] = ACTIONS(4172), + [sym_beep_statement] = ACTIONS(4172), + [aux_sym_unload_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token2] = ACTIONS(4172), + [aux_sym_def_type_statement_token3] = ACTIONS(4172), + [aux_sym_def_type_statement_token4] = ACTIONS(4172), + [aux_sym_def_type_statement_token5] = ACTIONS(4172), + [aux_sym_def_type_statement_token6] = ACTIONS(4172), + [aux_sym_def_type_statement_token7] = ACTIONS(4172), + [aux_sym_def_type_statement_token8] = ACTIONS(4172), + [aux_sym_def_type_statement_token9] = ACTIONS(4172), + [aux_sym_def_type_statement_token10] = ACTIONS(4172), + [aux_sym_def_type_statement_token11] = ACTIONS(4172), + [aux_sym_def_type_statement_token12] = ACTIONS(4172), + [aux_sym_def_type_statement_token13] = ACTIONS(4172), + [aux_sym_def_type_statement_token14] = ACTIONS(4172), + [aux_sym_call_statement_token1] = ACTIONS(4172), + [sym__ambiguous_call_statement] = ACTIONS(4172), + [aux_sym_addressof_expression_token1] = ACTIONS(4172), + [aux_sym_type_of_expression_token1] = ACTIONS(4172), + [aux_sym_unary_expression_token1] = ACTIONS(4172), + [sym_string_literal] = ACTIONS(4170), + [sym_number_literal] = ACTIONS(4170), + [aux_sym_boolean_literal_token1] = ACTIONS(4172), + [aux_sym_boolean_literal_token2] = ACTIONS(4172), + [sym_nothing_literal] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4172), + [sym_empty_literal] = ACTIONS(4172), + [sym_date_literal] = ACTIONS(4170), + [anon_sym_POUND] = ACTIONS(4172), + }, + [STATE(4098)] = { + [sym_identifier] = ACTIONS(9647), + [sym_newline] = ACTIONS(9649), + [anon_sym_COLON] = ACTIONS(9649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9647), + [aux_sym_frm_property_statement_token1] = ACTIONS(9647), + [anon_sym_DOT] = ACTIONS(9647), + [anon_sym_BANG] = ACTIONS(9649), + [aux_sym__attribute_identifier_token1] = ACTIONS(9647), + [aux_sym_option_statement_token3] = ACTIONS(9647), + [aux_sym_type_declaration_token1] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9647), + [aux_sym_enum_declaration_token1] = ACTIONS(9647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9647), + [aux_sym_declare_function_statement_token1] = ACTIONS(9647), + [aux_sym_preprocessor_const_token1] = ACTIONS(9647), + [aux_sym__property_get_header_token1] = ACTIONS(9647), + [aux_sym_event_declaration_token1] = ACTIONS(9647), + [sym_static_modifier] = ACTIONS(9647), + [sym__dim_keyword] = ACTIONS(9647), + [sym__redim_keyword] = ACTIONS(9647), + [aux_sym_get_accessor_token1] = ACTIONS(9647), + [aux_sym_set_accessor_token1] = ACTIONS(9647), + [aux_sym_const_declaration_token1] = ACTIONS(9647), + [anon_sym_LPAREN] = ACTIONS(9649), + [aux_sym_as_type_clause_token2] = ACTIONS(9647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9647), + [aux_sym_visibility_token1] = ACTIONS(9647), + [aux_sym_visibility_token2] = ACTIONS(9647), + [aux_sym_elseif_fragment_token1] = ACTIONS(9647), + [aux_sym_else_fragment_token1] = ACTIONS(9647), + [aux_sym_select_statement_token1] = ACTIONS(9647), + [aux_sym__for_header_token1] = ACTIONS(9647), + [aux_sym_do_statement_token1] = ACTIONS(9647), + [aux_sym_do_condition_token1] = ACTIONS(9647), + [aux_sym_with_statement_token1] = ACTIONS(9647), + [aux_sym_exit_statement_token1] = ACTIONS(9647), + [sym_end_statement] = ACTIONS(9649), + [aux_sym_on_goto_statement_token1] = ACTIONS(9647), + [aux_sym_on_goto_statement_token2] = ACTIONS(9647), + [aux_sym_on_error_statement_token2] = ACTIONS(9647), + [sym__ambiguous_redim_statement] = ACTIONS(9649), + [aux_sym_erase_statement_token1] = ACTIONS(9647), + [aux_sym_open_statement_token1] = ACTIONS(9647), + [aux_sym_file_mode_token2] = ACTIONS(9647), + [aux_sym_file_access_token2] = ACTIONS(9647), + [aux_sym_file_lock_token2] = ACTIONS(9647), + [aux_sym_print_statement_token1] = ACTIONS(9647), + [anon_sym_PLUS] = ACTIONS(9649), + [anon_sym_DASH] = ACTIONS(9647), + [anon_sym_QMARK] = ACTIONS(9649), + [aux_sym_close_statement_token1] = ACTIONS(9647), + [aux_sym_put_statement_token1] = ACTIONS(9647), + [aux_sym_unlock_statement_token1] = ACTIONS(9647), + [aux_sym_seek_statement_token1] = ACTIONS(9647), + [sym_reset_statement] = ACTIONS(9647), + [aux_sym_raise_event_statement_token1] = ACTIONS(9647), + [sym_stop_statement] = ACTIONS(9647), + [sym_beep_statement] = ACTIONS(9647), + [aux_sym_unload_statement_token1] = ACTIONS(9647), + [aux_sym_def_type_statement_token1] = ACTIONS(9647), + [aux_sym_def_type_statement_token2] = ACTIONS(9647), + [aux_sym_def_type_statement_token3] = ACTIONS(9647), + [aux_sym_def_type_statement_token4] = ACTIONS(9647), + [aux_sym_def_type_statement_token5] = ACTIONS(9647), + [aux_sym_def_type_statement_token6] = ACTIONS(9647), + [aux_sym_def_type_statement_token7] = ACTIONS(9647), + [aux_sym_def_type_statement_token8] = ACTIONS(9647), + [aux_sym_def_type_statement_token9] = ACTIONS(9647), + [aux_sym_def_type_statement_token10] = ACTIONS(9647), + [aux_sym_def_type_statement_token11] = ACTIONS(9647), + [aux_sym_def_type_statement_token12] = ACTIONS(9647), + [aux_sym_def_type_statement_token13] = ACTIONS(9647), + [aux_sym_def_type_statement_token14] = ACTIONS(9647), + [aux_sym_call_statement_token1] = ACTIONS(9647), + [sym__ambiguous_call_statement] = ACTIONS(9647), + [aux_sym_addressof_expression_token1] = ACTIONS(9647), + [aux_sym_type_of_expression_token1] = ACTIONS(9647), + [aux_sym_unary_expression_token1] = ACTIONS(9647), + [sym_string_literal] = ACTIONS(9649), + [sym_number_literal] = ACTIONS(9649), + [aux_sym_boolean_literal_token1] = ACTIONS(9647), + [aux_sym_boolean_literal_token2] = ACTIONS(9647), + [sym_nothing_literal] = ACTIONS(9647), + [sym_null_literal] = ACTIONS(9647), + [sym_empty_literal] = ACTIONS(9647), + [sym_date_literal] = ACTIONS(9649), + [anon_sym_POUND] = ACTIONS(9647), + }, + [STATE(4099)] = { + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(4099), + [sym_identifier] = ACTIONS(8109), + [sym_newline] = ACTIONS(8111), + [anon_sym_COLON] = ACTIONS(8111), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8109), + [aux_sym_frm_property_statement_token1] = ACTIONS(8109), + [anon_sym_DOT] = ACTIONS(8109), + [anon_sym_BANG] = ACTIONS(8111), + [aux_sym__attribute_identifier_token1] = ACTIONS(8109), + [aux_sym_option_statement_token3] = ACTIONS(8109), + [aux_sym_type_declaration_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8109), + [aux_sym_enum_declaration_token1] = ACTIONS(8109), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8109), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8109), + [aux_sym_declare_function_statement_token1] = ACTIONS(8109), + [aux_sym_preprocessor_const_token1] = ACTIONS(8109), + [aux_sym__property_get_header_token1] = ACTIONS(8109), + [aux_sym_event_declaration_token1] = ACTIONS(8109), + [sym_static_modifier] = ACTIONS(8109), + [sym__dim_keyword] = ACTIONS(8109), + [sym__redim_keyword] = ACTIONS(8109), + [aux_sym_get_accessor_token1] = ACTIONS(8109), + [aux_sym_set_accessor_token1] = ACTIONS(8109), + [aux_sym_const_declaration_token1] = ACTIONS(8109), + [anon_sym_LPAREN] = ACTIONS(8111), + [aux_sym_as_type_clause_token2] = ACTIONS(8109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8109), + [aux_sym_visibility_token1] = ACTIONS(8109), + [aux_sym_visibility_token2] = ACTIONS(8109), + [aux_sym_elseif_fragment_token1] = ACTIONS(8109), + [aux_sym_else_fragment_token1] = ACTIONS(8109), + [aux_sym_select_statement_token1] = ACTIONS(8109), + [aux_sym__for_header_token1] = ACTIONS(8109), + [aux_sym_do_statement_token1] = ACTIONS(8109), + [aux_sym_do_condition_token1] = ACTIONS(8109), + [aux_sym_with_statement_token1] = ACTIONS(8109), + [aux_sym_exit_statement_token1] = ACTIONS(8109), + [sym_end_statement] = ACTIONS(8111), + [aux_sym_on_goto_statement_token1] = ACTIONS(8109), + [aux_sym_on_goto_statement_token2] = ACTIONS(8109), + [aux_sym_on_error_statement_token2] = ACTIONS(8109), + [sym__ambiguous_redim_statement] = ACTIONS(8111), + [aux_sym_erase_statement_token1] = ACTIONS(8109), + [aux_sym_open_statement_token1] = ACTIONS(8109), + [aux_sym_file_mode_token2] = ACTIONS(8109), + [aux_sym_file_access_token2] = ACTIONS(8109), + [aux_sym_file_lock_token2] = ACTIONS(8109), + [aux_sym_print_statement_token1] = ACTIONS(8109), + [anon_sym_PLUS] = ACTIONS(8111), + [anon_sym_DASH] = ACTIONS(8109), + [anon_sym_SEMI] = ACTIONS(9651), + [anon_sym_QMARK] = ACTIONS(8111), + [aux_sym_close_statement_token1] = ACTIONS(8109), + [aux_sym_put_statement_token1] = ACTIONS(8109), + [aux_sym_unlock_statement_token1] = ACTIONS(8109), + [aux_sym_seek_statement_token1] = ACTIONS(8109), + [sym_reset_statement] = ACTIONS(8109), + [aux_sym_raise_event_statement_token1] = ACTIONS(8109), + [sym_stop_statement] = ACTIONS(8109), + [sym_beep_statement] = ACTIONS(8109), + [aux_sym_unload_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token2] = ACTIONS(8109), + [aux_sym_def_type_statement_token3] = ACTIONS(8109), + [aux_sym_def_type_statement_token4] = ACTIONS(8109), + [aux_sym_def_type_statement_token5] = ACTIONS(8109), + [aux_sym_def_type_statement_token6] = ACTIONS(8109), + [aux_sym_def_type_statement_token7] = ACTIONS(8109), + [aux_sym_def_type_statement_token8] = ACTIONS(8109), + [aux_sym_def_type_statement_token9] = ACTIONS(8109), + [aux_sym_def_type_statement_token10] = ACTIONS(8109), + [aux_sym_def_type_statement_token11] = ACTIONS(8109), + [aux_sym_def_type_statement_token12] = ACTIONS(8109), + [aux_sym_def_type_statement_token13] = ACTIONS(8109), + [aux_sym_def_type_statement_token14] = ACTIONS(8109), + [aux_sym_call_statement_token1] = ACTIONS(8109), + [sym__ambiguous_call_statement] = ACTIONS(8109), + [aux_sym_addressof_expression_token1] = ACTIONS(8109), + [aux_sym_type_of_expression_token1] = ACTIONS(8109), + [aux_sym_unary_expression_token1] = ACTIONS(8109), + [sym_string_literal] = ACTIONS(8111), + [sym_number_literal] = ACTIONS(8111), + [aux_sym_boolean_literal_token1] = ACTIONS(8109), + [aux_sym_boolean_literal_token2] = ACTIONS(8109), + [sym_nothing_literal] = ACTIONS(8109), + [sym_null_literal] = ACTIONS(8109), + [sym_empty_literal] = ACTIONS(8109), + [sym_date_literal] = ACTIONS(8111), + [anon_sym_POUND] = ACTIONS(8109), + }, + [STATE(4100)] = { + [sym_identifier] = ACTIONS(9654), + [sym_newline] = ACTIONS(9656), + [anon_sym_COLON] = ACTIONS(9656), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9654), + [aux_sym_frm_property_statement_token1] = ACTIONS(9654), + [anon_sym_DOT] = ACTIONS(9654), + [anon_sym_BANG] = ACTIONS(9656), + [aux_sym__attribute_identifier_token1] = ACTIONS(9654), + [aux_sym_option_statement_token3] = ACTIONS(9654), + [aux_sym_type_declaration_token1] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9654), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9654), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9654), + [aux_sym_enum_declaration_token1] = ACTIONS(9654), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9654), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9654), + [aux_sym_declare_function_statement_token1] = ACTIONS(9654), + [aux_sym_preprocessor_const_token1] = ACTIONS(9654), + [aux_sym__property_get_header_token1] = ACTIONS(9654), + [aux_sym_event_declaration_token1] = ACTIONS(9654), + [sym_static_modifier] = ACTIONS(9654), + [sym__dim_keyword] = ACTIONS(9654), + [sym__redim_keyword] = ACTIONS(9654), + [aux_sym_get_accessor_token1] = ACTIONS(9654), + [aux_sym_set_accessor_token1] = ACTIONS(9654), + [aux_sym_const_declaration_token1] = ACTIONS(9654), + [anon_sym_LPAREN] = ACTIONS(9656), + [aux_sym_as_type_clause_token2] = ACTIONS(9654), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9654), + [aux_sym_visibility_token1] = ACTIONS(9654), + [aux_sym_visibility_token2] = ACTIONS(9654), + [aux_sym_elseif_fragment_token1] = ACTIONS(9654), + [aux_sym_else_fragment_token1] = ACTIONS(9654), + [aux_sym_select_statement_token1] = ACTIONS(9654), + [aux_sym__for_header_token1] = ACTIONS(9654), + [aux_sym_do_statement_token1] = ACTIONS(9654), + [aux_sym_do_condition_token1] = ACTIONS(9654), + [aux_sym_with_statement_token1] = ACTIONS(9654), + [aux_sym_exit_statement_token1] = ACTIONS(9654), + [sym_end_statement] = ACTIONS(9656), + [aux_sym_on_goto_statement_token1] = ACTIONS(9654), + [aux_sym_on_goto_statement_token2] = ACTIONS(9654), + [aux_sym_on_error_statement_token2] = ACTIONS(9654), + [sym__ambiguous_redim_statement] = ACTIONS(9656), + [aux_sym_erase_statement_token1] = ACTIONS(9654), + [aux_sym_open_statement_token1] = ACTIONS(9654), + [aux_sym_file_mode_token2] = ACTIONS(9654), + [aux_sym_file_access_token2] = ACTIONS(9654), + [aux_sym_file_lock_token2] = ACTIONS(9654), + [aux_sym_print_statement_token1] = ACTIONS(9654), + [anon_sym_PLUS] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(9654), + [anon_sym_QMARK] = ACTIONS(9656), + [aux_sym_close_statement_token1] = ACTIONS(9654), + [aux_sym_put_statement_token1] = ACTIONS(9654), + [aux_sym_unlock_statement_token1] = ACTIONS(9654), + [aux_sym_seek_statement_token1] = ACTIONS(9654), + [sym_reset_statement] = ACTIONS(9654), + [aux_sym_raise_event_statement_token1] = ACTIONS(9654), + [sym_stop_statement] = ACTIONS(9654), + [sym_beep_statement] = ACTIONS(9654), + [aux_sym_unload_statement_token1] = ACTIONS(9654), + [aux_sym_def_type_statement_token1] = ACTIONS(9654), + [aux_sym_def_type_statement_token2] = ACTIONS(9654), + [aux_sym_def_type_statement_token3] = ACTIONS(9654), + [aux_sym_def_type_statement_token4] = ACTIONS(9654), + [aux_sym_def_type_statement_token5] = ACTIONS(9654), + [aux_sym_def_type_statement_token6] = ACTIONS(9654), + [aux_sym_def_type_statement_token7] = ACTIONS(9654), + [aux_sym_def_type_statement_token8] = ACTIONS(9654), + [aux_sym_def_type_statement_token9] = ACTIONS(9654), + [aux_sym_def_type_statement_token10] = ACTIONS(9654), + [aux_sym_def_type_statement_token11] = ACTIONS(9654), + [aux_sym_def_type_statement_token12] = ACTIONS(9654), + [aux_sym_def_type_statement_token13] = ACTIONS(9654), + [aux_sym_def_type_statement_token14] = ACTIONS(9654), + [aux_sym_call_statement_token1] = ACTIONS(9654), + [sym__ambiguous_call_statement] = ACTIONS(9654), + [aux_sym_addressof_expression_token1] = ACTIONS(9654), + [aux_sym_type_of_expression_token1] = ACTIONS(9654), + [aux_sym_unary_expression_token1] = ACTIONS(9654), + [sym_string_literal] = ACTIONS(9656), + [sym_number_literal] = ACTIONS(9656), + [aux_sym_boolean_literal_token1] = ACTIONS(9654), + [aux_sym_boolean_literal_token2] = ACTIONS(9654), + [sym_nothing_literal] = ACTIONS(9654), + [sym_null_literal] = ACTIONS(9654), + [sym_empty_literal] = ACTIONS(9654), + [sym_date_literal] = ACTIONS(9656), + [anon_sym_POUND] = ACTIONS(9654), + }, + [STATE(4101)] = { + [sym_do_condition] = STATE(4448), + [sym_identifier] = ACTIONS(8188), + [sym_newline] = ACTIONS(8190), + [anon_sym_COLON] = ACTIONS(8190), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8188), + [aux_sym_frm_property_statement_token1] = ACTIONS(8188), + [anon_sym_DOT] = ACTIONS(8188), + [anon_sym_BANG] = ACTIONS(8190), + [aux_sym__attribute_identifier_token1] = ACTIONS(8188), + [aux_sym_option_statement_token3] = ACTIONS(8188), + [aux_sym_type_declaration_token1] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8188), + [aux_sym_enum_declaration_token1] = ACTIONS(8188), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8188), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8188), + [aux_sym_declare_function_statement_token1] = ACTIONS(8188), + [aux_sym_preprocessor_const_token1] = ACTIONS(8188), + [aux_sym__property_get_header_token1] = ACTIONS(8188), + [aux_sym_event_declaration_token1] = ACTIONS(8188), + [sym_static_modifier] = ACTIONS(8188), + [sym__dim_keyword] = ACTIONS(8188), + [sym__redim_keyword] = ACTIONS(8188), + [aux_sym_get_accessor_token1] = ACTIONS(8188), + [aux_sym_set_accessor_token1] = ACTIONS(8188), + [aux_sym_const_declaration_token1] = ACTIONS(8188), + [anon_sym_LPAREN] = ACTIONS(8190), + [aux_sym_as_type_clause_token2] = ACTIONS(8188), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8188), + [aux_sym_visibility_token1] = ACTIONS(8188), + [aux_sym_visibility_token2] = ACTIONS(8188), + [aux_sym_elseif_fragment_token1] = ACTIONS(8188), + [aux_sym_else_fragment_token1] = ACTIONS(8188), + [aux_sym_select_statement_token1] = ACTIONS(8188), + [aux_sym__for_header_token1] = ACTIONS(8188), + [aux_sym_do_statement_token1] = ACTIONS(8188), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8188), + [aux_sym_exit_statement_token1] = ACTIONS(8188), + [sym_end_statement] = ACTIONS(8190), + [aux_sym_on_goto_statement_token1] = ACTIONS(8188), + [aux_sym_on_goto_statement_token2] = ACTIONS(8188), + [aux_sym_on_error_statement_token2] = ACTIONS(8188), + [sym__ambiguous_redim_statement] = ACTIONS(8190), + [aux_sym_erase_statement_token1] = ACTIONS(8188), + [aux_sym_open_statement_token1] = ACTIONS(8188), + [aux_sym_file_mode_token2] = ACTIONS(8188), + [aux_sym_file_access_token2] = ACTIONS(8188), + [aux_sym_file_lock_token2] = ACTIONS(8188), + [aux_sym_print_statement_token1] = ACTIONS(8188), + [anon_sym_PLUS] = ACTIONS(8190), + [anon_sym_DASH] = ACTIONS(8188), + [anon_sym_QMARK] = ACTIONS(8190), + [aux_sym_close_statement_token1] = ACTIONS(8188), + [aux_sym_put_statement_token1] = ACTIONS(8188), + [aux_sym_unlock_statement_token1] = ACTIONS(8188), + [aux_sym_seek_statement_token1] = ACTIONS(8188), + [sym_reset_statement] = ACTIONS(8188), + [aux_sym_raise_event_statement_token1] = ACTIONS(8188), + [sym_stop_statement] = ACTIONS(8188), + [sym_beep_statement] = ACTIONS(8188), + [aux_sym_unload_statement_token1] = ACTIONS(8188), + [aux_sym_def_type_statement_token1] = ACTIONS(8188), + [aux_sym_def_type_statement_token2] = ACTIONS(8188), + [aux_sym_def_type_statement_token3] = ACTIONS(8188), + [aux_sym_def_type_statement_token4] = ACTIONS(8188), + [aux_sym_def_type_statement_token5] = ACTIONS(8188), + [aux_sym_def_type_statement_token6] = ACTIONS(8188), + [aux_sym_def_type_statement_token7] = ACTIONS(8188), + [aux_sym_def_type_statement_token8] = ACTIONS(8188), + [aux_sym_def_type_statement_token9] = ACTIONS(8188), + [aux_sym_def_type_statement_token10] = ACTIONS(8188), + [aux_sym_def_type_statement_token11] = ACTIONS(8188), + [aux_sym_def_type_statement_token12] = ACTIONS(8188), + [aux_sym_def_type_statement_token13] = ACTIONS(8188), + [aux_sym_def_type_statement_token14] = ACTIONS(8188), + [aux_sym_call_statement_token1] = ACTIONS(8188), + [sym__ambiguous_call_statement] = ACTIONS(8188), + [aux_sym_addressof_expression_token1] = ACTIONS(8188), + [aux_sym_type_of_expression_token1] = ACTIONS(8188), + [aux_sym_unary_expression_token1] = ACTIONS(8188), + [sym_string_literal] = ACTIONS(8190), + [sym_number_literal] = ACTIONS(8190), + [aux_sym_boolean_literal_token1] = ACTIONS(8188), + [aux_sym_boolean_literal_token2] = ACTIONS(8188), + [sym_nothing_literal] = ACTIONS(8188), + [sym_null_literal] = ACTIONS(8188), + [sym_empty_literal] = ACTIONS(8188), + [sym_date_literal] = ACTIONS(8190), + [anon_sym_POUND] = ACTIONS(8188), + }, + [STATE(4102)] = { + [sym_do_condition] = STATE(4449), + [sym_identifier] = ACTIONS(8192), + [sym_newline] = ACTIONS(8194), + [anon_sym_COLON] = ACTIONS(8194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8192), + [aux_sym_frm_property_statement_token1] = ACTIONS(8192), + [anon_sym_DOT] = ACTIONS(8192), + [anon_sym_BANG] = ACTIONS(8194), + [aux_sym__attribute_identifier_token1] = ACTIONS(8192), + [aux_sym_option_statement_token3] = ACTIONS(8192), + [aux_sym_type_declaration_token1] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8192), + [aux_sym_enum_declaration_token1] = ACTIONS(8192), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8192), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8192), + [aux_sym_declare_function_statement_token1] = ACTIONS(8192), + [aux_sym_preprocessor_const_token1] = ACTIONS(8192), + [aux_sym__property_get_header_token1] = ACTIONS(8192), + [aux_sym_event_declaration_token1] = ACTIONS(8192), + [sym_static_modifier] = ACTIONS(8192), + [sym__dim_keyword] = ACTIONS(8192), + [sym__redim_keyword] = ACTIONS(8192), + [aux_sym_get_accessor_token1] = ACTIONS(8192), + [aux_sym_set_accessor_token1] = ACTIONS(8192), + [aux_sym_const_declaration_token1] = ACTIONS(8192), + [anon_sym_LPAREN] = ACTIONS(8194), + [aux_sym_as_type_clause_token2] = ACTIONS(8192), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8192), + [aux_sym_visibility_token1] = ACTIONS(8192), + [aux_sym_visibility_token2] = ACTIONS(8192), + [aux_sym_elseif_fragment_token1] = ACTIONS(8192), + [aux_sym_else_fragment_token1] = ACTIONS(8192), + [aux_sym_select_statement_token1] = ACTIONS(8192), + [aux_sym__for_header_token1] = ACTIONS(8192), + [aux_sym_do_statement_token1] = ACTIONS(8192), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8192), + [aux_sym_exit_statement_token1] = ACTIONS(8192), + [sym_end_statement] = ACTIONS(8194), + [aux_sym_on_goto_statement_token1] = ACTIONS(8192), + [aux_sym_on_goto_statement_token2] = ACTIONS(8192), + [aux_sym_on_error_statement_token2] = ACTIONS(8192), + [sym__ambiguous_redim_statement] = ACTIONS(8194), + [aux_sym_erase_statement_token1] = ACTIONS(8192), + [aux_sym_open_statement_token1] = ACTIONS(8192), + [aux_sym_file_mode_token2] = ACTIONS(8192), + [aux_sym_file_access_token2] = ACTIONS(8192), + [aux_sym_file_lock_token2] = ACTIONS(8192), + [aux_sym_print_statement_token1] = ACTIONS(8192), + [anon_sym_PLUS] = ACTIONS(8194), + [anon_sym_DASH] = ACTIONS(8192), + [anon_sym_QMARK] = ACTIONS(8194), + [aux_sym_close_statement_token1] = ACTIONS(8192), + [aux_sym_put_statement_token1] = ACTIONS(8192), + [aux_sym_unlock_statement_token1] = ACTIONS(8192), + [aux_sym_seek_statement_token1] = ACTIONS(8192), + [sym_reset_statement] = ACTIONS(8192), + [aux_sym_raise_event_statement_token1] = ACTIONS(8192), + [sym_stop_statement] = ACTIONS(8192), + [sym_beep_statement] = ACTIONS(8192), + [aux_sym_unload_statement_token1] = ACTIONS(8192), + [aux_sym_def_type_statement_token1] = ACTIONS(8192), + [aux_sym_def_type_statement_token2] = ACTIONS(8192), + [aux_sym_def_type_statement_token3] = ACTIONS(8192), + [aux_sym_def_type_statement_token4] = ACTIONS(8192), + [aux_sym_def_type_statement_token5] = ACTIONS(8192), + [aux_sym_def_type_statement_token6] = ACTIONS(8192), + [aux_sym_def_type_statement_token7] = ACTIONS(8192), + [aux_sym_def_type_statement_token8] = ACTIONS(8192), + [aux_sym_def_type_statement_token9] = ACTIONS(8192), + [aux_sym_def_type_statement_token10] = ACTIONS(8192), + [aux_sym_def_type_statement_token11] = ACTIONS(8192), + [aux_sym_def_type_statement_token12] = ACTIONS(8192), + [aux_sym_def_type_statement_token13] = ACTIONS(8192), + [aux_sym_def_type_statement_token14] = ACTIONS(8192), + [aux_sym_call_statement_token1] = ACTIONS(8192), + [sym__ambiguous_call_statement] = ACTIONS(8192), + [aux_sym_addressof_expression_token1] = ACTIONS(8192), + [aux_sym_type_of_expression_token1] = ACTIONS(8192), + [aux_sym_unary_expression_token1] = ACTIONS(8192), + [sym_string_literal] = ACTIONS(8194), + [sym_number_literal] = ACTIONS(8194), + [aux_sym_boolean_literal_token1] = ACTIONS(8192), + [aux_sym_boolean_literal_token2] = ACTIONS(8192), + [sym_nothing_literal] = ACTIONS(8192), + [sym_null_literal] = ACTIONS(8192), + [sym_empty_literal] = ACTIONS(8192), + [sym_date_literal] = ACTIONS(8194), + [anon_sym_POUND] = ACTIONS(8192), + }, + [STATE(4103)] = { + [sym_do_condition] = STATE(4451), + [sym_identifier] = ACTIONS(8203), + [sym_newline] = ACTIONS(8205), + [anon_sym_COLON] = ACTIONS(8205), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8203), + [aux_sym_frm_property_statement_token1] = ACTIONS(8203), + [anon_sym_DOT] = ACTIONS(8203), + [anon_sym_BANG] = ACTIONS(8205), + [aux_sym__attribute_identifier_token1] = ACTIONS(8203), + [aux_sym_option_statement_token3] = ACTIONS(8203), + [aux_sym_type_declaration_token1] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8203), + [aux_sym_enum_declaration_token1] = ACTIONS(8203), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8203), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8203), + [aux_sym_declare_function_statement_token1] = ACTIONS(8203), + [aux_sym_preprocessor_const_token1] = ACTIONS(8203), + [aux_sym__property_get_header_token1] = ACTIONS(8203), + [aux_sym_event_declaration_token1] = ACTIONS(8203), + [sym_static_modifier] = ACTIONS(8203), + [sym__dim_keyword] = ACTIONS(8203), + [sym__redim_keyword] = ACTIONS(8203), + [aux_sym_get_accessor_token1] = ACTIONS(8203), + [aux_sym_set_accessor_token1] = ACTIONS(8203), + [aux_sym_const_declaration_token1] = ACTIONS(8203), + [anon_sym_LPAREN] = ACTIONS(8205), + [aux_sym_as_type_clause_token2] = ACTIONS(8203), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8203), + [aux_sym_visibility_token1] = ACTIONS(8203), + [aux_sym_visibility_token2] = ACTIONS(8203), + [aux_sym_elseif_fragment_token1] = ACTIONS(8203), + [aux_sym_else_fragment_token1] = ACTIONS(8203), + [aux_sym_select_statement_token1] = ACTIONS(8203), + [aux_sym__for_header_token1] = ACTIONS(8203), + [aux_sym_do_statement_token1] = ACTIONS(8203), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8203), + [aux_sym_exit_statement_token1] = ACTIONS(8203), + [sym_end_statement] = ACTIONS(8205), + [aux_sym_on_goto_statement_token1] = ACTIONS(8203), + [aux_sym_on_goto_statement_token2] = ACTIONS(8203), + [aux_sym_on_error_statement_token2] = ACTIONS(8203), + [sym__ambiguous_redim_statement] = ACTIONS(8205), + [aux_sym_erase_statement_token1] = ACTIONS(8203), + [aux_sym_open_statement_token1] = ACTIONS(8203), + [aux_sym_file_mode_token2] = ACTIONS(8203), + [aux_sym_file_access_token2] = ACTIONS(8203), + [aux_sym_file_lock_token2] = ACTIONS(8203), + [aux_sym_print_statement_token1] = ACTIONS(8203), + [anon_sym_PLUS] = ACTIONS(8205), + [anon_sym_DASH] = ACTIONS(8203), + [anon_sym_QMARK] = ACTIONS(8205), + [aux_sym_close_statement_token1] = ACTIONS(8203), + [aux_sym_put_statement_token1] = ACTIONS(8203), + [aux_sym_unlock_statement_token1] = ACTIONS(8203), + [aux_sym_seek_statement_token1] = ACTIONS(8203), + [sym_reset_statement] = ACTIONS(8203), + [aux_sym_raise_event_statement_token1] = ACTIONS(8203), + [sym_stop_statement] = ACTIONS(8203), + [sym_beep_statement] = ACTIONS(8203), + [aux_sym_unload_statement_token1] = ACTIONS(8203), + [aux_sym_def_type_statement_token1] = ACTIONS(8203), + [aux_sym_def_type_statement_token2] = ACTIONS(8203), + [aux_sym_def_type_statement_token3] = ACTIONS(8203), + [aux_sym_def_type_statement_token4] = ACTIONS(8203), + [aux_sym_def_type_statement_token5] = ACTIONS(8203), + [aux_sym_def_type_statement_token6] = ACTIONS(8203), + [aux_sym_def_type_statement_token7] = ACTIONS(8203), + [aux_sym_def_type_statement_token8] = ACTIONS(8203), + [aux_sym_def_type_statement_token9] = ACTIONS(8203), + [aux_sym_def_type_statement_token10] = ACTIONS(8203), + [aux_sym_def_type_statement_token11] = ACTIONS(8203), + [aux_sym_def_type_statement_token12] = ACTIONS(8203), + [aux_sym_def_type_statement_token13] = ACTIONS(8203), + [aux_sym_def_type_statement_token14] = ACTIONS(8203), + [aux_sym_call_statement_token1] = ACTIONS(8203), + [sym__ambiguous_call_statement] = ACTIONS(8203), + [aux_sym_addressof_expression_token1] = ACTIONS(8203), + [aux_sym_type_of_expression_token1] = ACTIONS(8203), + [aux_sym_unary_expression_token1] = ACTIONS(8203), + [sym_string_literal] = ACTIONS(8205), + [sym_number_literal] = ACTIONS(8205), + [aux_sym_boolean_literal_token1] = ACTIONS(8203), + [aux_sym_boolean_literal_token2] = ACTIONS(8203), + [sym_nothing_literal] = ACTIONS(8203), + [sym_null_literal] = ACTIONS(8203), + [sym_empty_literal] = ACTIONS(8203), + [sym_date_literal] = ACTIONS(8205), + [anon_sym_POUND] = ACTIONS(8203), + }, + [STATE(4104)] = { + [sym_do_condition] = STATE(4452), + [sym_identifier] = ACTIONS(8213), + [sym_newline] = ACTIONS(8215), + [anon_sym_COLON] = ACTIONS(8215), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8213), + [aux_sym_frm_property_statement_token1] = ACTIONS(8213), + [anon_sym_DOT] = ACTIONS(8213), + [anon_sym_BANG] = ACTIONS(8215), + [aux_sym__attribute_identifier_token1] = ACTIONS(8213), + [aux_sym_option_statement_token3] = ACTIONS(8213), + [aux_sym_type_declaration_token1] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8213), + [aux_sym_enum_declaration_token1] = ACTIONS(8213), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8213), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8213), + [aux_sym_declare_function_statement_token1] = ACTIONS(8213), + [aux_sym_preprocessor_const_token1] = ACTIONS(8213), + [aux_sym__property_get_header_token1] = ACTIONS(8213), + [aux_sym_event_declaration_token1] = ACTIONS(8213), + [sym_static_modifier] = ACTIONS(8213), + [sym__dim_keyword] = ACTIONS(8213), + [sym__redim_keyword] = ACTIONS(8213), + [aux_sym_get_accessor_token1] = ACTIONS(8213), + [aux_sym_set_accessor_token1] = ACTIONS(8213), + [aux_sym_const_declaration_token1] = ACTIONS(8213), + [anon_sym_LPAREN] = ACTIONS(8215), + [aux_sym_as_type_clause_token2] = ACTIONS(8213), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8213), + [aux_sym_visibility_token1] = ACTIONS(8213), + [aux_sym_visibility_token2] = ACTIONS(8213), + [aux_sym_elseif_fragment_token1] = ACTIONS(8213), + [aux_sym_else_fragment_token1] = ACTIONS(8213), + [aux_sym_select_statement_token1] = ACTIONS(8213), + [aux_sym__for_header_token1] = ACTIONS(8213), + [aux_sym_do_statement_token1] = ACTIONS(8213), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8213), + [aux_sym_exit_statement_token1] = ACTIONS(8213), + [sym_end_statement] = ACTIONS(8215), + [aux_sym_on_goto_statement_token1] = ACTIONS(8213), + [aux_sym_on_goto_statement_token2] = ACTIONS(8213), + [aux_sym_on_error_statement_token2] = ACTIONS(8213), + [sym__ambiguous_redim_statement] = ACTIONS(8215), + [aux_sym_erase_statement_token1] = ACTIONS(8213), + [aux_sym_open_statement_token1] = ACTIONS(8213), + [aux_sym_file_mode_token2] = ACTIONS(8213), + [aux_sym_file_access_token2] = ACTIONS(8213), + [aux_sym_file_lock_token2] = ACTIONS(8213), + [aux_sym_print_statement_token1] = ACTIONS(8213), + [anon_sym_PLUS] = ACTIONS(8215), + [anon_sym_DASH] = ACTIONS(8213), + [anon_sym_QMARK] = ACTIONS(8215), + [aux_sym_close_statement_token1] = ACTIONS(8213), + [aux_sym_put_statement_token1] = ACTIONS(8213), + [aux_sym_unlock_statement_token1] = ACTIONS(8213), + [aux_sym_seek_statement_token1] = ACTIONS(8213), + [sym_reset_statement] = ACTIONS(8213), + [aux_sym_raise_event_statement_token1] = ACTIONS(8213), + [sym_stop_statement] = ACTIONS(8213), + [sym_beep_statement] = ACTIONS(8213), + [aux_sym_unload_statement_token1] = ACTIONS(8213), + [aux_sym_def_type_statement_token1] = ACTIONS(8213), + [aux_sym_def_type_statement_token2] = ACTIONS(8213), + [aux_sym_def_type_statement_token3] = ACTIONS(8213), + [aux_sym_def_type_statement_token4] = ACTIONS(8213), + [aux_sym_def_type_statement_token5] = ACTIONS(8213), + [aux_sym_def_type_statement_token6] = ACTIONS(8213), + [aux_sym_def_type_statement_token7] = ACTIONS(8213), + [aux_sym_def_type_statement_token8] = ACTIONS(8213), + [aux_sym_def_type_statement_token9] = ACTIONS(8213), + [aux_sym_def_type_statement_token10] = ACTIONS(8213), + [aux_sym_def_type_statement_token11] = ACTIONS(8213), + [aux_sym_def_type_statement_token12] = ACTIONS(8213), + [aux_sym_def_type_statement_token13] = ACTIONS(8213), + [aux_sym_def_type_statement_token14] = ACTIONS(8213), + [aux_sym_call_statement_token1] = ACTIONS(8213), + [sym__ambiguous_call_statement] = ACTIONS(8213), + [aux_sym_addressof_expression_token1] = ACTIONS(8213), + [aux_sym_type_of_expression_token1] = ACTIONS(8213), + [aux_sym_unary_expression_token1] = ACTIONS(8213), + [sym_string_literal] = ACTIONS(8215), + [sym_number_literal] = ACTIONS(8215), + [aux_sym_boolean_literal_token1] = ACTIONS(8213), + [aux_sym_boolean_literal_token2] = ACTIONS(8213), + [sym_nothing_literal] = ACTIONS(8213), + [sym_null_literal] = ACTIONS(8213), + [sym_empty_literal] = ACTIONS(8213), + [sym_date_literal] = ACTIONS(8215), + [anon_sym_POUND] = ACTIONS(8213), + }, + [STATE(4105)] = { + [sym_do_condition] = STATE(4454), + [sym_identifier] = ACTIONS(8217), + [sym_newline] = ACTIONS(8219), + [anon_sym_COLON] = ACTIONS(8219), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8217), + [aux_sym_frm_property_statement_token1] = ACTIONS(8217), + [anon_sym_DOT] = ACTIONS(8217), + [anon_sym_BANG] = ACTIONS(8219), + [aux_sym__attribute_identifier_token1] = ACTIONS(8217), + [aux_sym_option_statement_token3] = ACTIONS(8217), + [aux_sym_type_declaration_token1] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8217), + [aux_sym_enum_declaration_token1] = ACTIONS(8217), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8217), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8217), + [aux_sym_declare_function_statement_token1] = ACTIONS(8217), + [aux_sym_preprocessor_const_token1] = ACTIONS(8217), + [aux_sym__property_get_header_token1] = ACTIONS(8217), + [aux_sym_event_declaration_token1] = ACTIONS(8217), + [sym_static_modifier] = ACTIONS(8217), + [sym__dim_keyword] = ACTIONS(8217), + [sym__redim_keyword] = ACTIONS(8217), + [aux_sym_get_accessor_token1] = ACTIONS(8217), + [aux_sym_set_accessor_token1] = ACTIONS(8217), + [aux_sym_const_declaration_token1] = ACTIONS(8217), + [anon_sym_LPAREN] = ACTIONS(8219), + [aux_sym_as_type_clause_token2] = ACTIONS(8217), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8217), + [aux_sym_visibility_token1] = ACTIONS(8217), + [aux_sym_visibility_token2] = ACTIONS(8217), + [aux_sym_elseif_fragment_token1] = ACTIONS(8217), + [aux_sym_else_fragment_token1] = ACTIONS(8217), + [aux_sym_select_statement_token1] = ACTIONS(8217), + [aux_sym__for_header_token1] = ACTIONS(8217), + [aux_sym_do_statement_token1] = ACTIONS(8217), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8217), + [aux_sym_exit_statement_token1] = ACTIONS(8217), + [sym_end_statement] = ACTIONS(8219), + [aux_sym_on_goto_statement_token1] = ACTIONS(8217), + [aux_sym_on_goto_statement_token2] = ACTIONS(8217), + [aux_sym_on_error_statement_token2] = ACTIONS(8217), + [sym__ambiguous_redim_statement] = ACTIONS(8219), + [aux_sym_erase_statement_token1] = ACTIONS(8217), + [aux_sym_open_statement_token1] = ACTIONS(8217), + [aux_sym_file_mode_token2] = ACTIONS(8217), + [aux_sym_file_access_token2] = ACTIONS(8217), + [aux_sym_file_lock_token2] = ACTIONS(8217), + [aux_sym_print_statement_token1] = ACTIONS(8217), + [anon_sym_PLUS] = ACTIONS(8219), + [anon_sym_DASH] = ACTIONS(8217), + [anon_sym_QMARK] = ACTIONS(8219), + [aux_sym_close_statement_token1] = ACTIONS(8217), + [aux_sym_put_statement_token1] = ACTIONS(8217), + [aux_sym_unlock_statement_token1] = ACTIONS(8217), + [aux_sym_seek_statement_token1] = ACTIONS(8217), + [sym_reset_statement] = ACTIONS(8217), + [aux_sym_raise_event_statement_token1] = ACTIONS(8217), + [sym_stop_statement] = ACTIONS(8217), + [sym_beep_statement] = ACTIONS(8217), + [aux_sym_unload_statement_token1] = ACTIONS(8217), + [aux_sym_def_type_statement_token1] = ACTIONS(8217), + [aux_sym_def_type_statement_token2] = ACTIONS(8217), + [aux_sym_def_type_statement_token3] = ACTIONS(8217), + [aux_sym_def_type_statement_token4] = ACTIONS(8217), + [aux_sym_def_type_statement_token5] = ACTIONS(8217), + [aux_sym_def_type_statement_token6] = ACTIONS(8217), + [aux_sym_def_type_statement_token7] = ACTIONS(8217), + [aux_sym_def_type_statement_token8] = ACTIONS(8217), + [aux_sym_def_type_statement_token9] = ACTIONS(8217), + [aux_sym_def_type_statement_token10] = ACTIONS(8217), + [aux_sym_def_type_statement_token11] = ACTIONS(8217), + [aux_sym_def_type_statement_token12] = ACTIONS(8217), + [aux_sym_def_type_statement_token13] = ACTIONS(8217), + [aux_sym_def_type_statement_token14] = ACTIONS(8217), + [aux_sym_call_statement_token1] = ACTIONS(8217), + [sym__ambiguous_call_statement] = ACTIONS(8217), + [aux_sym_addressof_expression_token1] = ACTIONS(8217), + [aux_sym_type_of_expression_token1] = ACTIONS(8217), + [aux_sym_unary_expression_token1] = ACTIONS(8217), + [sym_string_literal] = ACTIONS(8219), + [sym_number_literal] = ACTIONS(8219), + [aux_sym_boolean_literal_token1] = ACTIONS(8217), + [aux_sym_boolean_literal_token2] = ACTIONS(8217), + [sym_nothing_literal] = ACTIONS(8217), + [sym_null_literal] = ACTIONS(8217), + [sym_empty_literal] = ACTIONS(8217), + [sym_date_literal] = ACTIONS(8219), + [anon_sym_POUND] = ACTIONS(8217), + }, + [STATE(4106)] = { + [sym_do_condition] = STATE(4455), + [sym_identifier] = ACTIONS(8221), + [sym_newline] = ACTIONS(8223), + [anon_sym_COLON] = ACTIONS(8223), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8221), + [aux_sym_frm_property_statement_token1] = ACTIONS(8221), + [anon_sym_DOT] = ACTIONS(8221), + [anon_sym_BANG] = ACTIONS(8223), + [aux_sym__attribute_identifier_token1] = ACTIONS(8221), + [aux_sym_option_statement_token3] = ACTIONS(8221), + [aux_sym_type_declaration_token1] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8221), + [aux_sym_enum_declaration_token1] = ACTIONS(8221), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8221), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8221), + [aux_sym_declare_function_statement_token1] = ACTIONS(8221), + [aux_sym_preprocessor_const_token1] = ACTIONS(8221), + [aux_sym__property_get_header_token1] = ACTIONS(8221), + [aux_sym_event_declaration_token1] = ACTIONS(8221), + [sym_static_modifier] = ACTIONS(8221), + [sym__dim_keyword] = ACTIONS(8221), + [sym__redim_keyword] = ACTIONS(8221), + [aux_sym_get_accessor_token1] = ACTIONS(8221), + [aux_sym_set_accessor_token1] = ACTIONS(8221), + [aux_sym_const_declaration_token1] = ACTIONS(8221), + [anon_sym_LPAREN] = ACTIONS(8223), + [aux_sym_as_type_clause_token2] = ACTIONS(8221), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8221), + [aux_sym_visibility_token1] = ACTIONS(8221), + [aux_sym_visibility_token2] = ACTIONS(8221), + [aux_sym_elseif_fragment_token1] = ACTIONS(8221), + [aux_sym_else_fragment_token1] = ACTIONS(8221), + [aux_sym_select_statement_token1] = ACTIONS(8221), + [aux_sym__for_header_token1] = ACTIONS(8221), + [aux_sym_do_statement_token1] = ACTIONS(8221), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8221), + [aux_sym_exit_statement_token1] = ACTIONS(8221), + [sym_end_statement] = ACTIONS(8223), + [aux_sym_on_goto_statement_token1] = ACTIONS(8221), + [aux_sym_on_goto_statement_token2] = ACTIONS(8221), + [aux_sym_on_error_statement_token2] = ACTIONS(8221), + [sym__ambiguous_redim_statement] = ACTIONS(8223), + [aux_sym_erase_statement_token1] = ACTIONS(8221), + [aux_sym_open_statement_token1] = ACTIONS(8221), + [aux_sym_file_mode_token2] = ACTIONS(8221), + [aux_sym_file_access_token2] = ACTIONS(8221), + [aux_sym_file_lock_token2] = ACTIONS(8221), + [aux_sym_print_statement_token1] = ACTIONS(8221), + [anon_sym_PLUS] = ACTIONS(8223), + [anon_sym_DASH] = ACTIONS(8221), + [anon_sym_QMARK] = ACTIONS(8223), + [aux_sym_close_statement_token1] = ACTIONS(8221), + [aux_sym_put_statement_token1] = ACTIONS(8221), + [aux_sym_unlock_statement_token1] = ACTIONS(8221), + [aux_sym_seek_statement_token1] = ACTIONS(8221), + [sym_reset_statement] = ACTIONS(8221), + [aux_sym_raise_event_statement_token1] = ACTIONS(8221), + [sym_stop_statement] = ACTIONS(8221), + [sym_beep_statement] = ACTIONS(8221), + [aux_sym_unload_statement_token1] = ACTIONS(8221), + [aux_sym_def_type_statement_token1] = ACTIONS(8221), + [aux_sym_def_type_statement_token2] = ACTIONS(8221), + [aux_sym_def_type_statement_token3] = ACTIONS(8221), + [aux_sym_def_type_statement_token4] = ACTIONS(8221), + [aux_sym_def_type_statement_token5] = ACTIONS(8221), + [aux_sym_def_type_statement_token6] = ACTIONS(8221), + [aux_sym_def_type_statement_token7] = ACTIONS(8221), + [aux_sym_def_type_statement_token8] = ACTIONS(8221), + [aux_sym_def_type_statement_token9] = ACTIONS(8221), + [aux_sym_def_type_statement_token10] = ACTIONS(8221), + [aux_sym_def_type_statement_token11] = ACTIONS(8221), + [aux_sym_def_type_statement_token12] = ACTIONS(8221), + [aux_sym_def_type_statement_token13] = ACTIONS(8221), + [aux_sym_def_type_statement_token14] = ACTIONS(8221), + [aux_sym_call_statement_token1] = ACTIONS(8221), + [sym__ambiguous_call_statement] = ACTIONS(8221), + [aux_sym_addressof_expression_token1] = ACTIONS(8221), + [aux_sym_type_of_expression_token1] = ACTIONS(8221), + [aux_sym_unary_expression_token1] = ACTIONS(8221), + [sym_string_literal] = ACTIONS(8223), + [sym_number_literal] = ACTIONS(8223), + [aux_sym_boolean_literal_token1] = ACTIONS(8221), + [aux_sym_boolean_literal_token2] = ACTIONS(8221), + [sym_nothing_literal] = ACTIONS(8221), + [sym_null_literal] = ACTIONS(8221), + [sym_empty_literal] = ACTIONS(8221), + [sym_date_literal] = ACTIONS(8223), + [anon_sym_POUND] = ACTIONS(8221), + }, + [STATE(4107)] = { + [aux_sym_input_statement_repeat1] = STATE(4124), + [sym_identifier] = ACTIONS(8237), + [sym_newline] = ACTIONS(8239), + [anon_sym_COLON] = ACTIONS(8239), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8237), + [aux_sym_frm_property_statement_token1] = ACTIONS(8237), + [anon_sym_DOT] = ACTIONS(8237), + [anon_sym_BANG] = ACTIONS(8239), + [aux_sym__attribute_identifier_token1] = ACTIONS(8237), + [aux_sym_option_statement_token3] = ACTIONS(8237), + [aux_sym_type_declaration_token1] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8237), + [aux_sym_enum_declaration_token1] = ACTIONS(8237), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8237), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8237), + [aux_sym_declare_function_statement_token1] = ACTIONS(8237), + [aux_sym_preprocessor_const_token1] = ACTIONS(8237), + [aux_sym__property_get_header_token1] = ACTIONS(8237), + [aux_sym_event_declaration_token1] = ACTIONS(8237), + [sym_static_modifier] = ACTIONS(8237), + [sym__dim_keyword] = ACTIONS(8237), + [sym__redim_keyword] = ACTIONS(8237), + [aux_sym_get_accessor_token1] = ACTIONS(8237), + [aux_sym_set_accessor_token1] = ACTIONS(8237), + [anon_sym_COMMA] = ACTIONS(8658), + [aux_sym_const_declaration_token1] = ACTIONS(8237), + [anon_sym_LPAREN] = ACTIONS(8239), + [aux_sym_as_type_clause_token2] = ACTIONS(8237), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8237), + [aux_sym_visibility_token1] = ACTIONS(8237), + [aux_sym_visibility_token2] = ACTIONS(8237), + [aux_sym_elseif_fragment_token1] = ACTIONS(8237), + [aux_sym_else_fragment_token1] = ACTIONS(8237), + [aux_sym_select_statement_token1] = ACTIONS(8237), + [aux_sym__for_header_token1] = ACTIONS(8237), + [aux_sym_do_statement_token1] = ACTIONS(8237), + [aux_sym_do_condition_token1] = ACTIONS(8237), + [aux_sym_with_statement_token1] = ACTIONS(8237), + [aux_sym_exit_statement_token1] = ACTIONS(8237), + [sym_end_statement] = ACTIONS(8239), + [aux_sym_on_goto_statement_token1] = ACTIONS(8237), + [aux_sym_on_goto_statement_token2] = ACTIONS(8237), + [aux_sym_on_error_statement_token2] = ACTIONS(8237), + [sym__ambiguous_redim_statement] = ACTIONS(8239), + [aux_sym_erase_statement_token1] = ACTIONS(8237), + [aux_sym_open_statement_token1] = ACTIONS(8237), + [aux_sym_file_mode_token2] = ACTIONS(8237), + [aux_sym_file_access_token2] = ACTIONS(8237), + [aux_sym_file_lock_token2] = ACTIONS(8237), + [aux_sym_print_statement_token1] = ACTIONS(8237), + [anon_sym_PLUS] = ACTIONS(8239), + [anon_sym_DASH] = ACTIONS(8237), + [anon_sym_QMARK] = ACTIONS(8239), + [aux_sym_close_statement_token1] = ACTIONS(8237), + [aux_sym_put_statement_token1] = ACTIONS(8237), + [aux_sym_unlock_statement_token1] = ACTIONS(8237), + [aux_sym_seek_statement_token1] = ACTIONS(8237), + [sym_reset_statement] = ACTIONS(8237), + [aux_sym_raise_event_statement_token1] = ACTIONS(8237), + [sym_stop_statement] = ACTIONS(8237), + [sym_beep_statement] = ACTIONS(8237), + [aux_sym_unload_statement_token1] = ACTIONS(8237), + [aux_sym_def_type_statement_token1] = ACTIONS(8237), + [aux_sym_def_type_statement_token2] = ACTIONS(8237), + [aux_sym_def_type_statement_token3] = ACTIONS(8237), + [aux_sym_def_type_statement_token4] = ACTIONS(8237), + [aux_sym_def_type_statement_token5] = ACTIONS(8237), + [aux_sym_def_type_statement_token6] = ACTIONS(8237), + [aux_sym_def_type_statement_token7] = ACTIONS(8237), + [aux_sym_def_type_statement_token8] = ACTIONS(8237), + [aux_sym_def_type_statement_token9] = ACTIONS(8237), + [aux_sym_def_type_statement_token10] = ACTIONS(8237), + [aux_sym_def_type_statement_token11] = ACTIONS(8237), + [aux_sym_def_type_statement_token12] = ACTIONS(8237), + [aux_sym_def_type_statement_token13] = ACTIONS(8237), + [aux_sym_def_type_statement_token14] = ACTIONS(8237), + [aux_sym_call_statement_token1] = ACTIONS(8237), + [sym__ambiguous_call_statement] = ACTIONS(8237), + [aux_sym_addressof_expression_token1] = ACTIONS(8237), + [aux_sym_type_of_expression_token1] = ACTIONS(8237), + [aux_sym_unary_expression_token1] = ACTIONS(8237), + [sym_string_literal] = ACTIONS(8239), + [sym_number_literal] = ACTIONS(8239), + [aux_sym_boolean_literal_token1] = ACTIONS(8237), + [aux_sym_boolean_literal_token2] = ACTIONS(8237), + [sym_nothing_literal] = ACTIONS(8237), + [sym_null_literal] = ACTIONS(8237), + [sym_empty_literal] = ACTIONS(8237), + [sym_date_literal] = ACTIONS(8239), + [anon_sym_POUND] = ACTIONS(8237), + }, + [STATE(4108)] = { + [sym_identifier] = ACTIONS(9658), + [sym_newline] = ACTIONS(9660), + [anon_sym_COLON] = ACTIONS(9660), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9658), + [aux_sym_frm_property_statement_token1] = ACTIONS(9658), + [anon_sym_DOT] = ACTIONS(9658), + [anon_sym_BANG] = ACTIONS(9660), + [aux_sym__attribute_identifier_token1] = ACTIONS(9658), + [aux_sym_option_statement_token3] = ACTIONS(9658), + [aux_sym_type_declaration_token1] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9658), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9658), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9658), + [aux_sym_enum_declaration_token1] = ACTIONS(9658), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9658), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9658), + [aux_sym_declare_function_statement_token1] = ACTIONS(9658), + [aux_sym_preprocessor_const_token1] = ACTIONS(9658), + [aux_sym__property_get_header_token1] = ACTIONS(9658), + [aux_sym_event_declaration_token1] = ACTIONS(9658), + [sym_static_modifier] = ACTIONS(9658), + [sym__dim_keyword] = ACTIONS(9658), + [sym__redim_keyword] = ACTIONS(9658), + [aux_sym_get_accessor_token1] = ACTIONS(9658), + [aux_sym_set_accessor_token1] = ACTIONS(9658), + [aux_sym_const_declaration_token1] = ACTIONS(9658), + [anon_sym_LPAREN] = ACTIONS(9660), + [aux_sym_as_type_clause_token2] = ACTIONS(9658), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9658), + [aux_sym_visibility_token1] = ACTIONS(9658), + [aux_sym_visibility_token2] = ACTIONS(9658), + [aux_sym_elseif_fragment_token1] = ACTIONS(9658), + [aux_sym_else_fragment_token1] = ACTIONS(9658), + [aux_sym_select_statement_token1] = ACTIONS(9658), + [aux_sym__for_header_token1] = ACTIONS(9658), + [aux_sym_do_statement_token1] = ACTIONS(9658), + [aux_sym_do_condition_token1] = ACTIONS(9658), + [aux_sym_with_statement_token1] = ACTIONS(9658), + [aux_sym_exit_statement_token1] = ACTIONS(9658), + [sym_end_statement] = ACTIONS(9660), + [aux_sym_on_goto_statement_token1] = ACTIONS(9658), + [aux_sym_on_goto_statement_token2] = ACTIONS(9658), + [aux_sym_on_error_statement_token2] = ACTIONS(9658), + [sym__ambiguous_redim_statement] = ACTIONS(9660), + [aux_sym_erase_statement_token1] = ACTIONS(9658), + [aux_sym_open_statement_token1] = ACTIONS(9658), + [aux_sym_file_mode_token2] = ACTIONS(9658), + [aux_sym_file_access_token2] = ACTIONS(9658), + [aux_sym_file_lock_token2] = ACTIONS(9658), + [aux_sym_print_statement_token1] = ACTIONS(9658), + [anon_sym_PLUS] = ACTIONS(9660), + [anon_sym_DASH] = ACTIONS(9658), + [anon_sym_QMARK] = ACTIONS(9660), + [aux_sym_close_statement_token1] = ACTIONS(9658), + [aux_sym_put_statement_token1] = ACTIONS(9658), + [aux_sym_unlock_statement_token1] = ACTIONS(9658), + [aux_sym_seek_statement_token1] = ACTIONS(9658), + [sym_reset_statement] = ACTIONS(9658), + [aux_sym_raise_event_statement_token1] = ACTIONS(9658), + [sym_stop_statement] = ACTIONS(9658), + [sym_beep_statement] = ACTIONS(9658), + [aux_sym_unload_statement_token1] = ACTIONS(9658), + [aux_sym_def_type_statement_token1] = ACTIONS(9658), + [aux_sym_def_type_statement_token2] = ACTIONS(9658), + [aux_sym_def_type_statement_token3] = ACTIONS(9658), + [aux_sym_def_type_statement_token4] = ACTIONS(9658), + [aux_sym_def_type_statement_token5] = ACTIONS(9658), + [aux_sym_def_type_statement_token6] = ACTIONS(9658), + [aux_sym_def_type_statement_token7] = ACTIONS(9658), + [aux_sym_def_type_statement_token8] = ACTIONS(9658), + [aux_sym_def_type_statement_token9] = ACTIONS(9658), + [aux_sym_def_type_statement_token10] = ACTIONS(9658), + [aux_sym_def_type_statement_token11] = ACTIONS(9658), + [aux_sym_def_type_statement_token12] = ACTIONS(9658), + [aux_sym_def_type_statement_token13] = ACTIONS(9658), + [aux_sym_def_type_statement_token14] = ACTIONS(9658), + [aux_sym_call_statement_token1] = ACTIONS(9658), + [sym__ambiguous_call_statement] = ACTIONS(9658), + [aux_sym_addressof_expression_token1] = ACTIONS(9658), + [aux_sym_type_of_expression_token1] = ACTIONS(9658), + [aux_sym_unary_expression_token1] = ACTIONS(9658), + [sym_string_literal] = ACTIONS(9660), + [sym_number_literal] = ACTIONS(9660), + [aux_sym_boolean_literal_token1] = ACTIONS(9658), + [aux_sym_boolean_literal_token2] = ACTIONS(9658), + [sym_nothing_literal] = ACTIONS(9658), + [sym_null_literal] = ACTIONS(9658), + [sym_empty_literal] = ACTIONS(9658), + [sym_date_literal] = ACTIONS(9660), + [anon_sym_POUND] = ACTIONS(9658), + }, + [STATE(4109)] = { + [aux_sym_next_variable_list_repeat1] = STATE(4126), + [sym_identifier] = ACTIONS(7945), + [sym_newline] = ACTIONS(7947), + [anon_sym_COLON] = ACTIONS(7947), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7945), + [aux_sym_frm_property_statement_token1] = ACTIONS(7945), + [anon_sym_DOT] = ACTIONS(7945), + [anon_sym_BANG] = ACTIONS(7947), + [aux_sym__attribute_identifier_token1] = ACTIONS(7945), + [aux_sym_option_statement_token3] = ACTIONS(7945), + [aux_sym_type_declaration_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7945), + [aux_sym_enum_declaration_token1] = ACTIONS(7945), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7945), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7945), + [aux_sym_declare_function_statement_token1] = ACTIONS(7945), + [aux_sym_preprocessor_const_token1] = ACTIONS(7945), + [aux_sym__property_get_header_token1] = ACTIONS(7945), + [aux_sym_event_declaration_token1] = ACTIONS(7945), + [sym_static_modifier] = ACTIONS(7945), + [sym__dim_keyword] = ACTIONS(7945), + [sym__redim_keyword] = ACTIONS(7945), + [aux_sym_get_accessor_token1] = ACTIONS(7945), + [aux_sym_set_accessor_token1] = ACTIONS(7945), + [anon_sym_COMMA] = ACTIONS(9629), + [aux_sym_const_declaration_token1] = ACTIONS(7945), + [anon_sym_LPAREN] = ACTIONS(7947), + [aux_sym_as_type_clause_token2] = ACTIONS(7945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7945), + [aux_sym_visibility_token1] = ACTIONS(7945), + [aux_sym_visibility_token2] = ACTIONS(7945), + [aux_sym_elseif_fragment_token1] = ACTIONS(7945), + [aux_sym_else_fragment_token1] = ACTIONS(7945), + [aux_sym_select_statement_token1] = ACTIONS(7945), + [aux_sym__for_header_token1] = ACTIONS(7945), + [aux_sym_do_statement_token1] = ACTIONS(7945), + [aux_sym_do_condition_token1] = ACTIONS(7945), + [aux_sym_with_statement_token1] = ACTIONS(7945), + [aux_sym_exit_statement_token1] = ACTIONS(7945), + [sym_end_statement] = ACTIONS(7947), + [aux_sym_on_goto_statement_token1] = ACTIONS(7945), + [aux_sym_on_goto_statement_token2] = ACTIONS(7945), + [aux_sym_on_error_statement_token2] = ACTIONS(7945), + [sym__ambiguous_redim_statement] = ACTIONS(7947), + [aux_sym_erase_statement_token1] = ACTIONS(7945), + [aux_sym_open_statement_token1] = ACTIONS(7945), + [aux_sym_file_mode_token2] = ACTIONS(7945), + [aux_sym_file_access_token2] = ACTIONS(7945), + [aux_sym_file_lock_token2] = ACTIONS(7945), + [aux_sym_print_statement_token1] = ACTIONS(7945), + [anon_sym_PLUS] = ACTIONS(7947), + [anon_sym_DASH] = ACTIONS(7945), + [anon_sym_QMARK] = ACTIONS(7947), + [aux_sym_close_statement_token1] = ACTIONS(7945), + [aux_sym_put_statement_token1] = ACTIONS(7945), + [aux_sym_unlock_statement_token1] = ACTIONS(7945), + [aux_sym_seek_statement_token1] = ACTIONS(7945), + [sym_reset_statement] = ACTIONS(7945), + [aux_sym_raise_event_statement_token1] = ACTIONS(7945), + [sym_stop_statement] = ACTIONS(7945), + [sym_beep_statement] = ACTIONS(7945), + [aux_sym_unload_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token2] = ACTIONS(7945), + [aux_sym_def_type_statement_token3] = ACTIONS(7945), + [aux_sym_def_type_statement_token4] = ACTIONS(7945), + [aux_sym_def_type_statement_token5] = ACTIONS(7945), + [aux_sym_def_type_statement_token6] = ACTIONS(7945), + [aux_sym_def_type_statement_token7] = ACTIONS(7945), + [aux_sym_def_type_statement_token8] = ACTIONS(7945), + [aux_sym_def_type_statement_token9] = ACTIONS(7945), + [aux_sym_def_type_statement_token10] = ACTIONS(7945), + [aux_sym_def_type_statement_token11] = ACTIONS(7945), + [aux_sym_def_type_statement_token12] = ACTIONS(7945), + [aux_sym_def_type_statement_token13] = ACTIONS(7945), + [aux_sym_def_type_statement_token14] = ACTIONS(7945), + [aux_sym_call_statement_token1] = ACTIONS(7945), + [sym__ambiguous_call_statement] = ACTIONS(7945), + [aux_sym_addressof_expression_token1] = ACTIONS(7945), + [aux_sym_type_of_expression_token1] = ACTIONS(7945), + [aux_sym_unary_expression_token1] = ACTIONS(7945), + [sym_string_literal] = ACTIONS(7947), + [sym_number_literal] = ACTIONS(7947), + [aux_sym_boolean_literal_token1] = ACTIONS(7945), + [aux_sym_boolean_literal_token2] = ACTIONS(7945), + [sym_nothing_literal] = ACTIONS(7945), + [sym_null_literal] = ACTIONS(7945), + [sym_empty_literal] = ACTIONS(7945), + [sym_date_literal] = ACTIONS(7947), + [anon_sym_POUND] = ACTIONS(7945), + }, + [STATE(4110)] = { + [sym_identifier] = ACTIONS(9662), + [sym_newline] = ACTIONS(9664), + [anon_sym_COLON] = ACTIONS(9664), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9662), + [aux_sym_frm_property_statement_token1] = ACTIONS(9662), + [anon_sym_DOT] = ACTIONS(9662), + [anon_sym_BANG] = ACTIONS(9664), + [aux_sym__attribute_identifier_token1] = ACTIONS(9662), + [aux_sym_option_statement_token3] = ACTIONS(9662), + [aux_sym_type_declaration_token1] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9662), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9662), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9662), + [aux_sym_enum_declaration_token1] = ACTIONS(9662), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9662), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9662), + [aux_sym_declare_function_statement_token1] = ACTIONS(9662), + [aux_sym_preprocessor_const_token1] = ACTIONS(9662), + [aux_sym__property_get_header_token1] = ACTIONS(9662), + [aux_sym_event_declaration_token1] = ACTIONS(9662), + [sym_static_modifier] = ACTIONS(9662), + [sym__dim_keyword] = ACTIONS(9662), + [sym__redim_keyword] = ACTIONS(9662), + [aux_sym_get_accessor_token1] = ACTIONS(9662), + [aux_sym_set_accessor_token1] = ACTIONS(9662), + [aux_sym_const_declaration_token1] = ACTIONS(9662), + [anon_sym_LPAREN] = ACTIONS(9664), + [aux_sym_as_type_clause_token2] = ACTIONS(9662), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9662), + [aux_sym_visibility_token1] = ACTIONS(9662), + [aux_sym_visibility_token2] = ACTIONS(9662), + [aux_sym_elseif_fragment_token1] = ACTIONS(9662), + [aux_sym_else_fragment_token1] = ACTIONS(9662), + [aux_sym_select_statement_token1] = ACTIONS(9662), + [aux_sym__for_header_token1] = ACTIONS(9662), + [aux_sym_do_statement_token1] = ACTIONS(9662), + [aux_sym_do_condition_token1] = ACTIONS(9662), + [aux_sym_with_statement_token1] = ACTIONS(9662), + [aux_sym_exit_statement_token1] = ACTIONS(9662), + [sym_end_statement] = ACTIONS(9664), + [aux_sym_on_goto_statement_token1] = ACTIONS(9662), + [aux_sym_on_goto_statement_token2] = ACTIONS(9662), + [aux_sym_on_error_statement_token2] = ACTIONS(9662), + [sym__ambiguous_redim_statement] = ACTIONS(9664), + [aux_sym_erase_statement_token1] = ACTIONS(9662), + [aux_sym_open_statement_token1] = ACTIONS(9662), + [aux_sym_file_mode_token2] = ACTIONS(9662), + [aux_sym_file_access_token2] = ACTIONS(9662), + [aux_sym_file_lock_token2] = ACTIONS(9662), + [aux_sym_print_statement_token1] = ACTIONS(9662), + [anon_sym_PLUS] = ACTIONS(9664), + [anon_sym_DASH] = ACTIONS(9662), + [anon_sym_QMARK] = ACTIONS(9664), + [aux_sym_close_statement_token1] = ACTIONS(9662), + [aux_sym_put_statement_token1] = ACTIONS(9662), + [aux_sym_unlock_statement_token1] = ACTIONS(9662), + [aux_sym_seek_statement_token1] = ACTIONS(9662), + [sym_reset_statement] = ACTIONS(9662), + [aux_sym_raise_event_statement_token1] = ACTIONS(9662), + [sym_stop_statement] = ACTIONS(9662), + [sym_beep_statement] = ACTIONS(9662), + [aux_sym_unload_statement_token1] = ACTIONS(9662), + [aux_sym_def_type_statement_token1] = ACTIONS(9662), + [aux_sym_def_type_statement_token2] = ACTIONS(9662), + [aux_sym_def_type_statement_token3] = ACTIONS(9662), + [aux_sym_def_type_statement_token4] = ACTIONS(9662), + [aux_sym_def_type_statement_token5] = ACTIONS(9662), + [aux_sym_def_type_statement_token6] = ACTIONS(9662), + [aux_sym_def_type_statement_token7] = ACTIONS(9662), + [aux_sym_def_type_statement_token8] = ACTIONS(9662), + [aux_sym_def_type_statement_token9] = ACTIONS(9662), + [aux_sym_def_type_statement_token10] = ACTIONS(9662), + [aux_sym_def_type_statement_token11] = ACTIONS(9662), + [aux_sym_def_type_statement_token12] = ACTIONS(9662), + [aux_sym_def_type_statement_token13] = ACTIONS(9662), + [aux_sym_def_type_statement_token14] = ACTIONS(9662), + [aux_sym_call_statement_token1] = ACTIONS(9662), + [sym__ambiguous_call_statement] = ACTIONS(9662), + [aux_sym_addressof_expression_token1] = ACTIONS(9662), + [aux_sym_type_of_expression_token1] = ACTIONS(9662), + [aux_sym_unary_expression_token1] = ACTIONS(9662), + [sym_string_literal] = ACTIONS(9664), + [sym_number_literal] = ACTIONS(9664), + [aux_sym_boolean_literal_token1] = ACTIONS(9662), + [aux_sym_boolean_literal_token2] = ACTIONS(9662), + [sym_nothing_literal] = ACTIONS(9662), + [sym_null_literal] = ACTIONS(9662), + [sym_empty_literal] = ACTIONS(9662), + [sym_date_literal] = ACTIONS(9664), + [anon_sym_POUND] = ACTIONS(9662), + }, + [STATE(4111)] = { + [sym_identifier] = ACTIONS(9666), + [sym_newline] = ACTIONS(9668), + [anon_sym_COLON] = ACTIONS(9668), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9666), + [aux_sym_frm_property_statement_token1] = ACTIONS(9666), + [anon_sym_DOT] = ACTIONS(9666), + [anon_sym_BANG] = ACTIONS(9668), + [aux_sym__attribute_identifier_token1] = ACTIONS(9666), + [aux_sym_option_statement_token3] = ACTIONS(9666), + [aux_sym_type_declaration_token1] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9666), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9666), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9666), + [aux_sym_enum_declaration_token1] = ACTIONS(9666), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9666), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9666), + [aux_sym_declare_function_statement_token1] = ACTIONS(9666), + [aux_sym_preprocessor_const_token1] = ACTIONS(9666), + [aux_sym__property_get_header_token1] = ACTIONS(9666), + [aux_sym_event_declaration_token1] = ACTIONS(9666), + [sym_static_modifier] = ACTIONS(9666), + [sym__dim_keyword] = ACTIONS(9666), + [sym__redim_keyword] = ACTIONS(9666), + [aux_sym_get_accessor_token1] = ACTIONS(9666), + [aux_sym_set_accessor_token1] = ACTIONS(9666), + [aux_sym_const_declaration_token1] = ACTIONS(9666), + [anon_sym_LPAREN] = ACTIONS(9668), + [aux_sym_as_type_clause_token2] = ACTIONS(9666), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9666), + [aux_sym_visibility_token1] = ACTIONS(9666), + [aux_sym_visibility_token2] = ACTIONS(9666), + [aux_sym_elseif_fragment_token1] = ACTIONS(9666), + [aux_sym_else_fragment_token1] = ACTIONS(9666), + [aux_sym_select_statement_token1] = ACTIONS(9666), + [aux_sym__for_header_token1] = ACTIONS(9666), + [aux_sym_do_statement_token1] = ACTIONS(9666), + [aux_sym_do_condition_token1] = ACTIONS(9666), + [aux_sym_with_statement_token1] = ACTIONS(9666), + [aux_sym_exit_statement_token1] = ACTIONS(9666), + [sym_end_statement] = ACTIONS(9668), + [aux_sym_on_goto_statement_token1] = ACTIONS(9666), + [aux_sym_on_goto_statement_token2] = ACTIONS(9666), + [aux_sym_on_error_statement_token2] = ACTIONS(9666), + [sym__ambiguous_redim_statement] = ACTIONS(9668), + [aux_sym_erase_statement_token1] = ACTIONS(9666), + [aux_sym_open_statement_token1] = ACTIONS(9666), + [aux_sym_file_mode_token2] = ACTIONS(9666), + [aux_sym_file_access_token2] = ACTIONS(9666), + [aux_sym_file_lock_token2] = ACTIONS(9666), + [aux_sym_print_statement_token1] = ACTIONS(9666), + [anon_sym_PLUS] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(9666), + [anon_sym_QMARK] = ACTIONS(9668), + [aux_sym_close_statement_token1] = ACTIONS(9666), + [aux_sym_put_statement_token1] = ACTIONS(9666), + [aux_sym_unlock_statement_token1] = ACTIONS(9666), + [aux_sym_seek_statement_token1] = ACTIONS(9666), + [sym_reset_statement] = ACTIONS(9666), + [aux_sym_raise_event_statement_token1] = ACTIONS(9666), + [sym_stop_statement] = ACTIONS(9666), + [sym_beep_statement] = ACTIONS(9666), + [aux_sym_unload_statement_token1] = ACTIONS(9666), + [aux_sym_def_type_statement_token1] = ACTIONS(9666), + [aux_sym_def_type_statement_token2] = ACTIONS(9666), + [aux_sym_def_type_statement_token3] = ACTIONS(9666), + [aux_sym_def_type_statement_token4] = ACTIONS(9666), + [aux_sym_def_type_statement_token5] = ACTIONS(9666), + [aux_sym_def_type_statement_token6] = ACTIONS(9666), + [aux_sym_def_type_statement_token7] = ACTIONS(9666), + [aux_sym_def_type_statement_token8] = ACTIONS(9666), + [aux_sym_def_type_statement_token9] = ACTIONS(9666), + [aux_sym_def_type_statement_token10] = ACTIONS(9666), + [aux_sym_def_type_statement_token11] = ACTIONS(9666), + [aux_sym_def_type_statement_token12] = ACTIONS(9666), + [aux_sym_def_type_statement_token13] = ACTIONS(9666), + [aux_sym_def_type_statement_token14] = ACTIONS(9666), + [aux_sym_call_statement_token1] = ACTIONS(9666), + [sym__ambiguous_call_statement] = ACTIONS(9666), + [aux_sym_addressof_expression_token1] = ACTIONS(9666), + [aux_sym_type_of_expression_token1] = ACTIONS(9666), + [aux_sym_unary_expression_token1] = ACTIONS(9666), + [sym_string_literal] = ACTIONS(9668), + [sym_number_literal] = ACTIONS(9668), + [aux_sym_boolean_literal_token1] = ACTIONS(9666), + [aux_sym_boolean_literal_token2] = ACTIONS(9666), + [sym_nothing_literal] = ACTIONS(9666), + [sym_null_literal] = ACTIONS(9666), + [sym_empty_literal] = ACTIONS(9666), + [sym_date_literal] = ACTIONS(9668), + [anon_sym_POUND] = ACTIONS(9666), + }, + [STATE(4112)] = { + [sym_do_condition] = STATE(4469), + [sym_identifier] = ACTIONS(8271), + [sym_newline] = ACTIONS(8273), + [anon_sym_COLON] = ACTIONS(8273), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8271), + [aux_sym_frm_property_statement_token1] = ACTIONS(8271), + [anon_sym_DOT] = ACTIONS(8271), + [anon_sym_BANG] = ACTIONS(8273), + [aux_sym__attribute_identifier_token1] = ACTIONS(8271), + [aux_sym_option_statement_token3] = ACTIONS(8271), + [aux_sym_type_declaration_token1] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8271), + [aux_sym_enum_declaration_token1] = ACTIONS(8271), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8271), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8271), + [aux_sym_declare_function_statement_token1] = ACTIONS(8271), + [aux_sym_preprocessor_const_token1] = ACTIONS(8271), + [aux_sym__property_get_header_token1] = ACTIONS(8271), + [aux_sym_event_declaration_token1] = ACTIONS(8271), + [sym_static_modifier] = ACTIONS(8271), + [sym__dim_keyword] = ACTIONS(8271), + [sym__redim_keyword] = ACTIONS(8271), + [aux_sym_get_accessor_token1] = ACTIONS(8271), + [aux_sym_set_accessor_token1] = ACTIONS(8271), + [aux_sym_const_declaration_token1] = ACTIONS(8271), + [anon_sym_LPAREN] = ACTIONS(8273), + [aux_sym_as_type_clause_token2] = ACTIONS(8271), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8271), + [aux_sym_visibility_token1] = ACTIONS(8271), + [aux_sym_visibility_token2] = ACTIONS(8271), + [aux_sym_elseif_fragment_token1] = ACTIONS(8271), + [aux_sym_else_fragment_token1] = ACTIONS(8271), + [aux_sym_select_statement_token1] = ACTIONS(8271), + [aux_sym__for_header_token1] = ACTIONS(8271), + [aux_sym_do_statement_token1] = ACTIONS(8271), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8271), + [aux_sym_exit_statement_token1] = ACTIONS(8271), + [sym_end_statement] = ACTIONS(8273), + [aux_sym_on_goto_statement_token1] = ACTIONS(8271), + [aux_sym_on_goto_statement_token2] = ACTIONS(8271), + [aux_sym_on_error_statement_token2] = ACTIONS(8271), + [sym__ambiguous_redim_statement] = ACTIONS(8273), + [aux_sym_erase_statement_token1] = ACTIONS(8271), + [aux_sym_open_statement_token1] = ACTIONS(8271), + [aux_sym_file_mode_token2] = ACTIONS(8271), + [aux_sym_file_access_token2] = ACTIONS(8271), + [aux_sym_file_lock_token2] = ACTIONS(8271), + [aux_sym_print_statement_token1] = ACTIONS(8271), + [anon_sym_PLUS] = ACTIONS(8273), + [anon_sym_DASH] = ACTIONS(8271), + [anon_sym_QMARK] = ACTIONS(8273), + [aux_sym_close_statement_token1] = ACTIONS(8271), + [aux_sym_put_statement_token1] = ACTIONS(8271), + [aux_sym_unlock_statement_token1] = ACTIONS(8271), + [aux_sym_seek_statement_token1] = ACTIONS(8271), + [sym_reset_statement] = ACTIONS(8271), + [aux_sym_raise_event_statement_token1] = ACTIONS(8271), + [sym_stop_statement] = ACTIONS(8271), + [sym_beep_statement] = ACTIONS(8271), + [aux_sym_unload_statement_token1] = ACTIONS(8271), + [aux_sym_def_type_statement_token1] = ACTIONS(8271), + [aux_sym_def_type_statement_token2] = ACTIONS(8271), + [aux_sym_def_type_statement_token3] = ACTIONS(8271), + [aux_sym_def_type_statement_token4] = ACTIONS(8271), + [aux_sym_def_type_statement_token5] = ACTIONS(8271), + [aux_sym_def_type_statement_token6] = ACTIONS(8271), + [aux_sym_def_type_statement_token7] = ACTIONS(8271), + [aux_sym_def_type_statement_token8] = ACTIONS(8271), + [aux_sym_def_type_statement_token9] = ACTIONS(8271), + [aux_sym_def_type_statement_token10] = ACTIONS(8271), + [aux_sym_def_type_statement_token11] = ACTIONS(8271), + [aux_sym_def_type_statement_token12] = ACTIONS(8271), + [aux_sym_def_type_statement_token13] = ACTIONS(8271), + [aux_sym_def_type_statement_token14] = ACTIONS(8271), + [aux_sym_call_statement_token1] = ACTIONS(8271), + [sym__ambiguous_call_statement] = ACTIONS(8271), + [aux_sym_addressof_expression_token1] = ACTIONS(8271), + [aux_sym_type_of_expression_token1] = ACTIONS(8271), + [aux_sym_unary_expression_token1] = ACTIONS(8271), + [sym_string_literal] = ACTIONS(8273), + [sym_number_literal] = ACTIONS(8273), + [aux_sym_boolean_literal_token1] = ACTIONS(8271), + [aux_sym_boolean_literal_token2] = ACTIONS(8271), + [sym_nothing_literal] = ACTIONS(8271), + [sym_null_literal] = ACTIONS(8271), + [sym_empty_literal] = ACTIONS(8271), + [sym_date_literal] = ACTIONS(8273), + [anon_sym_POUND] = ACTIONS(8271), + }, + [STATE(4113)] = { + [sym_do_condition] = STATE(4471), + [sym_identifier] = ACTIONS(8275), + [sym_newline] = ACTIONS(8277), + [anon_sym_COLON] = ACTIONS(8277), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8275), + [aux_sym_frm_property_statement_token1] = ACTIONS(8275), + [anon_sym_DOT] = ACTIONS(8275), + [anon_sym_BANG] = ACTIONS(8277), + [aux_sym__attribute_identifier_token1] = ACTIONS(8275), + [aux_sym_option_statement_token3] = ACTIONS(8275), + [aux_sym_type_declaration_token1] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8275), + [aux_sym_enum_declaration_token1] = ACTIONS(8275), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8275), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8275), + [aux_sym_declare_function_statement_token1] = ACTIONS(8275), + [aux_sym_preprocessor_const_token1] = ACTIONS(8275), + [aux_sym__property_get_header_token1] = ACTIONS(8275), + [aux_sym_event_declaration_token1] = ACTIONS(8275), + [sym_static_modifier] = ACTIONS(8275), + [sym__dim_keyword] = ACTIONS(8275), + [sym__redim_keyword] = ACTIONS(8275), + [aux_sym_get_accessor_token1] = ACTIONS(8275), + [aux_sym_set_accessor_token1] = ACTIONS(8275), + [aux_sym_const_declaration_token1] = ACTIONS(8275), + [anon_sym_LPAREN] = ACTIONS(8277), + [aux_sym_as_type_clause_token2] = ACTIONS(8275), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8275), + [aux_sym_visibility_token1] = ACTIONS(8275), + [aux_sym_visibility_token2] = ACTIONS(8275), + [aux_sym_elseif_fragment_token1] = ACTIONS(8275), + [aux_sym_else_fragment_token1] = ACTIONS(8275), + [aux_sym_select_statement_token1] = ACTIONS(8275), + [aux_sym__for_header_token1] = ACTIONS(8275), + [aux_sym_do_statement_token1] = ACTIONS(8275), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8275), + [aux_sym_exit_statement_token1] = ACTIONS(8275), + [sym_end_statement] = ACTIONS(8277), + [aux_sym_on_goto_statement_token1] = ACTIONS(8275), + [aux_sym_on_goto_statement_token2] = ACTIONS(8275), + [aux_sym_on_error_statement_token2] = ACTIONS(8275), + [sym__ambiguous_redim_statement] = ACTIONS(8277), + [aux_sym_erase_statement_token1] = ACTIONS(8275), + [aux_sym_open_statement_token1] = ACTIONS(8275), + [aux_sym_file_mode_token2] = ACTIONS(8275), + [aux_sym_file_access_token2] = ACTIONS(8275), + [aux_sym_file_lock_token2] = ACTIONS(8275), + [aux_sym_print_statement_token1] = ACTIONS(8275), + [anon_sym_PLUS] = ACTIONS(8277), + [anon_sym_DASH] = ACTIONS(8275), + [anon_sym_QMARK] = ACTIONS(8277), + [aux_sym_close_statement_token1] = ACTIONS(8275), + [aux_sym_put_statement_token1] = ACTIONS(8275), + [aux_sym_unlock_statement_token1] = ACTIONS(8275), + [aux_sym_seek_statement_token1] = ACTIONS(8275), + [sym_reset_statement] = ACTIONS(8275), + [aux_sym_raise_event_statement_token1] = ACTIONS(8275), + [sym_stop_statement] = ACTIONS(8275), + [sym_beep_statement] = ACTIONS(8275), + [aux_sym_unload_statement_token1] = ACTIONS(8275), + [aux_sym_def_type_statement_token1] = ACTIONS(8275), + [aux_sym_def_type_statement_token2] = ACTIONS(8275), + [aux_sym_def_type_statement_token3] = ACTIONS(8275), + [aux_sym_def_type_statement_token4] = ACTIONS(8275), + [aux_sym_def_type_statement_token5] = ACTIONS(8275), + [aux_sym_def_type_statement_token6] = ACTIONS(8275), + [aux_sym_def_type_statement_token7] = ACTIONS(8275), + [aux_sym_def_type_statement_token8] = ACTIONS(8275), + [aux_sym_def_type_statement_token9] = ACTIONS(8275), + [aux_sym_def_type_statement_token10] = ACTIONS(8275), + [aux_sym_def_type_statement_token11] = ACTIONS(8275), + [aux_sym_def_type_statement_token12] = ACTIONS(8275), + [aux_sym_def_type_statement_token13] = ACTIONS(8275), + [aux_sym_def_type_statement_token14] = ACTIONS(8275), + [aux_sym_call_statement_token1] = ACTIONS(8275), + [sym__ambiguous_call_statement] = ACTIONS(8275), + [aux_sym_addressof_expression_token1] = ACTIONS(8275), + [aux_sym_type_of_expression_token1] = ACTIONS(8275), + [aux_sym_unary_expression_token1] = ACTIONS(8275), + [sym_string_literal] = ACTIONS(8277), + [sym_number_literal] = ACTIONS(8277), + [aux_sym_boolean_literal_token1] = ACTIONS(8275), + [aux_sym_boolean_literal_token2] = ACTIONS(8275), + [sym_nothing_literal] = ACTIONS(8275), + [sym_null_literal] = ACTIONS(8275), + [sym_empty_literal] = ACTIONS(8275), + [sym_date_literal] = ACTIONS(8277), + [anon_sym_POUND] = ACTIONS(8275), + }, + [STATE(4114)] = { + [sym_do_condition] = STATE(4472), + [sym_identifier] = ACTIONS(8279), + [sym_newline] = ACTIONS(8281), + [anon_sym_COLON] = ACTIONS(8281), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8279), + [aux_sym_frm_property_statement_token1] = ACTIONS(8279), + [anon_sym_DOT] = ACTIONS(8279), + [anon_sym_BANG] = ACTIONS(8281), + [aux_sym__attribute_identifier_token1] = ACTIONS(8279), + [aux_sym_option_statement_token3] = ACTIONS(8279), + [aux_sym_type_declaration_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8279), + [aux_sym_enum_declaration_token1] = ACTIONS(8279), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8279), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8279), + [aux_sym_declare_function_statement_token1] = ACTIONS(8279), + [aux_sym_preprocessor_const_token1] = ACTIONS(8279), + [aux_sym__property_get_header_token1] = ACTIONS(8279), + [aux_sym_event_declaration_token1] = ACTIONS(8279), + [sym_static_modifier] = ACTIONS(8279), + [sym__dim_keyword] = ACTIONS(8279), + [sym__redim_keyword] = ACTIONS(8279), + [aux_sym_get_accessor_token1] = ACTIONS(8279), + [aux_sym_set_accessor_token1] = ACTIONS(8279), + [aux_sym_const_declaration_token1] = ACTIONS(8279), + [anon_sym_LPAREN] = ACTIONS(8281), + [aux_sym_as_type_clause_token2] = ACTIONS(8279), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8279), + [aux_sym_visibility_token1] = ACTIONS(8279), + [aux_sym_visibility_token2] = ACTIONS(8279), + [aux_sym_elseif_fragment_token1] = ACTIONS(8279), + [aux_sym_else_fragment_token1] = ACTIONS(8279), + [aux_sym_select_statement_token1] = ACTIONS(8279), + [aux_sym__for_header_token1] = ACTIONS(8279), + [aux_sym_do_statement_token1] = ACTIONS(8279), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8279), + [aux_sym_exit_statement_token1] = ACTIONS(8279), + [sym_end_statement] = ACTIONS(8281), + [aux_sym_on_goto_statement_token1] = ACTIONS(8279), + [aux_sym_on_goto_statement_token2] = ACTIONS(8279), + [aux_sym_on_error_statement_token2] = ACTIONS(8279), + [sym__ambiguous_redim_statement] = ACTIONS(8281), + [aux_sym_erase_statement_token1] = ACTIONS(8279), + [aux_sym_open_statement_token1] = ACTIONS(8279), + [aux_sym_file_mode_token2] = ACTIONS(8279), + [aux_sym_file_access_token2] = ACTIONS(8279), + [aux_sym_file_lock_token2] = ACTIONS(8279), + [aux_sym_print_statement_token1] = ACTIONS(8279), + [anon_sym_PLUS] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8279), + [anon_sym_QMARK] = ACTIONS(8281), + [aux_sym_close_statement_token1] = ACTIONS(8279), + [aux_sym_put_statement_token1] = ACTIONS(8279), + [aux_sym_unlock_statement_token1] = ACTIONS(8279), + [aux_sym_seek_statement_token1] = ACTIONS(8279), + [sym_reset_statement] = ACTIONS(8279), + [aux_sym_raise_event_statement_token1] = ACTIONS(8279), + [sym_stop_statement] = ACTIONS(8279), + [sym_beep_statement] = ACTIONS(8279), + [aux_sym_unload_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token2] = ACTIONS(8279), + [aux_sym_def_type_statement_token3] = ACTIONS(8279), + [aux_sym_def_type_statement_token4] = ACTIONS(8279), + [aux_sym_def_type_statement_token5] = ACTIONS(8279), + [aux_sym_def_type_statement_token6] = ACTIONS(8279), + [aux_sym_def_type_statement_token7] = ACTIONS(8279), + [aux_sym_def_type_statement_token8] = ACTIONS(8279), + [aux_sym_def_type_statement_token9] = ACTIONS(8279), + [aux_sym_def_type_statement_token10] = ACTIONS(8279), + [aux_sym_def_type_statement_token11] = ACTIONS(8279), + [aux_sym_def_type_statement_token12] = ACTIONS(8279), + [aux_sym_def_type_statement_token13] = ACTIONS(8279), + [aux_sym_def_type_statement_token14] = ACTIONS(8279), + [aux_sym_call_statement_token1] = ACTIONS(8279), + [sym__ambiguous_call_statement] = ACTIONS(8279), + [aux_sym_addressof_expression_token1] = ACTIONS(8279), + [aux_sym_type_of_expression_token1] = ACTIONS(8279), + [aux_sym_unary_expression_token1] = ACTIONS(8279), + [sym_string_literal] = ACTIONS(8281), + [sym_number_literal] = ACTIONS(8281), + [aux_sym_boolean_literal_token1] = ACTIONS(8279), + [aux_sym_boolean_literal_token2] = ACTIONS(8279), + [sym_nothing_literal] = ACTIONS(8279), + [sym_null_literal] = ACTIONS(8279), + [sym_empty_literal] = ACTIONS(8279), + [sym_date_literal] = ACTIONS(8281), + [anon_sym_POUND] = ACTIONS(8279), + }, + [STATE(4115)] = { + [sym_do_condition] = STATE(4475), + [sym_identifier] = ACTIONS(8283), + [sym_newline] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8283), + [aux_sym_frm_property_statement_token1] = ACTIONS(8283), + [anon_sym_DOT] = ACTIONS(8283), + [anon_sym_BANG] = ACTIONS(8285), + [aux_sym__attribute_identifier_token1] = ACTIONS(8283), + [aux_sym_option_statement_token3] = ACTIONS(8283), + [aux_sym_type_declaration_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8283), + [aux_sym_enum_declaration_token1] = ACTIONS(8283), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8283), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8283), + [aux_sym_declare_function_statement_token1] = ACTIONS(8283), + [aux_sym_preprocessor_const_token1] = ACTIONS(8283), + [aux_sym__property_get_header_token1] = ACTIONS(8283), + [aux_sym_event_declaration_token1] = ACTIONS(8283), + [sym_static_modifier] = ACTIONS(8283), + [sym__dim_keyword] = ACTIONS(8283), + [sym__redim_keyword] = ACTIONS(8283), + [aux_sym_get_accessor_token1] = ACTIONS(8283), + [aux_sym_set_accessor_token1] = ACTIONS(8283), + [aux_sym_const_declaration_token1] = ACTIONS(8283), + [anon_sym_LPAREN] = ACTIONS(8285), + [aux_sym_as_type_clause_token2] = ACTIONS(8283), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8283), + [aux_sym_visibility_token1] = ACTIONS(8283), + [aux_sym_visibility_token2] = ACTIONS(8283), + [aux_sym_elseif_fragment_token1] = ACTIONS(8283), + [aux_sym_else_fragment_token1] = ACTIONS(8283), + [aux_sym_select_statement_token1] = ACTIONS(8283), + [aux_sym__for_header_token1] = ACTIONS(8283), + [aux_sym_do_statement_token1] = ACTIONS(8283), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8283), + [aux_sym_exit_statement_token1] = ACTIONS(8283), + [sym_end_statement] = ACTIONS(8285), + [aux_sym_on_goto_statement_token1] = ACTIONS(8283), + [aux_sym_on_goto_statement_token2] = ACTIONS(8283), + [aux_sym_on_error_statement_token2] = ACTIONS(8283), + [sym__ambiguous_redim_statement] = ACTIONS(8285), + [aux_sym_erase_statement_token1] = ACTIONS(8283), + [aux_sym_open_statement_token1] = ACTIONS(8283), + [aux_sym_file_mode_token2] = ACTIONS(8283), + [aux_sym_file_access_token2] = ACTIONS(8283), + [aux_sym_file_lock_token2] = ACTIONS(8283), + [aux_sym_print_statement_token1] = ACTIONS(8283), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_DASH] = ACTIONS(8283), + [anon_sym_QMARK] = ACTIONS(8285), + [aux_sym_close_statement_token1] = ACTIONS(8283), + [aux_sym_put_statement_token1] = ACTIONS(8283), + [aux_sym_unlock_statement_token1] = ACTIONS(8283), + [aux_sym_seek_statement_token1] = ACTIONS(8283), + [sym_reset_statement] = ACTIONS(8283), + [aux_sym_raise_event_statement_token1] = ACTIONS(8283), + [sym_stop_statement] = ACTIONS(8283), + [sym_beep_statement] = ACTIONS(8283), + [aux_sym_unload_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token2] = ACTIONS(8283), + [aux_sym_def_type_statement_token3] = ACTIONS(8283), + [aux_sym_def_type_statement_token4] = ACTIONS(8283), + [aux_sym_def_type_statement_token5] = ACTIONS(8283), + [aux_sym_def_type_statement_token6] = ACTIONS(8283), + [aux_sym_def_type_statement_token7] = ACTIONS(8283), + [aux_sym_def_type_statement_token8] = ACTIONS(8283), + [aux_sym_def_type_statement_token9] = ACTIONS(8283), + [aux_sym_def_type_statement_token10] = ACTIONS(8283), + [aux_sym_def_type_statement_token11] = ACTIONS(8283), + [aux_sym_def_type_statement_token12] = ACTIONS(8283), + [aux_sym_def_type_statement_token13] = ACTIONS(8283), + [aux_sym_def_type_statement_token14] = ACTIONS(8283), + [aux_sym_call_statement_token1] = ACTIONS(8283), + [sym__ambiguous_call_statement] = ACTIONS(8283), + [aux_sym_addressof_expression_token1] = ACTIONS(8283), + [aux_sym_type_of_expression_token1] = ACTIONS(8283), + [aux_sym_unary_expression_token1] = ACTIONS(8283), + [sym_string_literal] = ACTIONS(8285), + [sym_number_literal] = ACTIONS(8285), + [aux_sym_boolean_literal_token1] = ACTIONS(8283), + [aux_sym_boolean_literal_token2] = ACTIONS(8283), + [sym_nothing_literal] = ACTIONS(8283), + [sym_null_literal] = ACTIONS(8283), + [sym_empty_literal] = ACTIONS(8283), + [sym_date_literal] = ACTIONS(8285), + [anon_sym_POUND] = ACTIONS(8283), + }, + [STATE(4116)] = { + [sym_do_condition] = STATE(4478), + [sym_identifier] = ACTIONS(8294), + [sym_newline] = ACTIONS(8296), + [anon_sym_COLON] = ACTIONS(8296), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8294), + [aux_sym_frm_property_statement_token1] = ACTIONS(8294), + [anon_sym_DOT] = ACTIONS(8294), + [anon_sym_BANG] = ACTIONS(8296), + [aux_sym__attribute_identifier_token1] = ACTIONS(8294), + [aux_sym_option_statement_token3] = ACTIONS(8294), + [aux_sym_type_declaration_token1] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8294), + [aux_sym_enum_declaration_token1] = ACTIONS(8294), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8294), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8294), + [aux_sym_declare_function_statement_token1] = ACTIONS(8294), + [aux_sym_preprocessor_const_token1] = ACTIONS(8294), + [aux_sym__property_get_header_token1] = ACTIONS(8294), + [aux_sym_event_declaration_token1] = ACTIONS(8294), + [sym_static_modifier] = ACTIONS(8294), + [sym__dim_keyword] = ACTIONS(8294), + [sym__redim_keyword] = ACTIONS(8294), + [aux_sym_get_accessor_token1] = ACTIONS(8294), + [aux_sym_set_accessor_token1] = ACTIONS(8294), + [aux_sym_const_declaration_token1] = ACTIONS(8294), + [anon_sym_LPAREN] = ACTIONS(8296), + [aux_sym_as_type_clause_token2] = ACTIONS(8294), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8294), + [aux_sym_visibility_token1] = ACTIONS(8294), + [aux_sym_visibility_token2] = ACTIONS(8294), + [aux_sym_elseif_fragment_token1] = ACTIONS(8294), + [aux_sym_else_fragment_token1] = ACTIONS(8294), + [aux_sym_select_statement_token1] = ACTIONS(8294), + [aux_sym__for_header_token1] = ACTIONS(8294), + [aux_sym_do_statement_token1] = ACTIONS(8294), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8294), + [aux_sym_exit_statement_token1] = ACTIONS(8294), + [sym_end_statement] = ACTIONS(8296), + [aux_sym_on_goto_statement_token1] = ACTIONS(8294), + [aux_sym_on_goto_statement_token2] = ACTIONS(8294), + [aux_sym_on_error_statement_token2] = ACTIONS(8294), + [sym__ambiguous_redim_statement] = ACTIONS(8296), + [aux_sym_erase_statement_token1] = ACTIONS(8294), + [aux_sym_open_statement_token1] = ACTIONS(8294), + [aux_sym_file_mode_token2] = ACTIONS(8294), + [aux_sym_file_access_token2] = ACTIONS(8294), + [aux_sym_file_lock_token2] = ACTIONS(8294), + [aux_sym_print_statement_token1] = ACTIONS(8294), + [anon_sym_PLUS] = ACTIONS(8296), + [anon_sym_DASH] = ACTIONS(8294), + [anon_sym_QMARK] = ACTIONS(8296), + [aux_sym_close_statement_token1] = ACTIONS(8294), + [aux_sym_put_statement_token1] = ACTIONS(8294), + [aux_sym_unlock_statement_token1] = ACTIONS(8294), + [aux_sym_seek_statement_token1] = ACTIONS(8294), + [sym_reset_statement] = ACTIONS(8294), + [aux_sym_raise_event_statement_token1] = ACTIONS(8294), + [sym_stop_statement] = ACTIONS(8294), + [sym_beep_statement] = ACTIONS(8294), + [aux_sym_unload_statement_token1] = ACTIONS(8294), + [aux_sym_def_type_statement_token1] = ACTIONS(8294), + [aux_sym_def_type_statement_token2] = ACTIONS(8294), + [aux_sym_def_type_statement_token3] = ACTIONS(8294), + [aux_sym_def_type_statement_token4] = ACTIONS(8294), + [aux_sym_def_type_statement_token5] = ACTIONS(8294), + [aux_sym_def_type_statement_token6] = ACTIONS(8294), + [aux_sym_def_type_statement_token7] = ACTIONS(8294), + [aux_sym_def_type_statement_token8] = ACTIONS(8294), + [aux_sym_def_type_statement_token9] = ACTIONS(8294), + [aux_sym_def_type_statement_token10] = ACTIONS(8294), + [aux_sym_def_type_statement_token11] = ACTIONS(8294), + [aux_sym_def_type_statement_token12] = ACTIONS(8294), + [aux_sym_def_type_statement_token13] = ACTIONS(8294), + [aux_sym_def_type_statement_token14] = ACTIONS(8294), + [aux_sym_call_statement_token1] = ACTIONS(8294), + [sym__ambiguous_call_statement] = ACTIONS(8294), + [aux_sym_addressof_expression_token1] = ACTIONS(8294), + [aux_sym_type_of_expression_token1] = ACTIONS(8294), + [aux_sym_unary_expression_token1] = ACTIONS(8294), + [sym_string_literal] = ACTIONS(8296), + [sym_number_literal] = ACTIONS(8296), + [aux_sym_boolean_literal_token1] = ACTIONS(8294), + [aux_sym_boolean_literal_token2] = ACTIONS(8294), + [sym_nothing_literal] = ACTIONS(8294), + [sym_null_literal] = ACTIONS(8294), + [sym_empty_literal] = ACTIONS(8294), + [sym_date_literal] = ACTIONS(8296), + [anon_sym_POUND] = ACTIONS(8294), + }, + [STATE(4117)] = { + [sym_do_condition] = STATE(4480), + [sym_identifier] = ACTIONS(8298), + [sym_newline] = ACTIONS(8300), + [anon_sym_COLON] = ACTIONS(8300), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8298), + [aux_sym_frm_property_statement_token1] = ACTIONS(8298), + [anon_sym_DOT] = ACTIONS(8298), + [anon_sym_BANG] = ACTIONS(8300), + [aux_sym__attribute_identifier_token1] = ACTIONS(8298), + [aux_sym_option_statement_token3] = ACTIONS(8298), + [aux_sym_type_declaration_token1] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8298), + [aux_sym_enum_declaration_token1] = ACTIONS(8298), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8298), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8298), + [aux_sym_declare_function_statement_token1] = ACTIONS(8298), + [aux_sym_preprocessor_const_token1] = ACTIONS(8298), + [aux_sym__property_get_header_token1] = ACTIONS(8298), + [aux_sym_event_declaration_token1] = ACTIONS(8298), + [sym_static_modifier] = ACTIONS(8298), + [sym__dim_keyword] = ACTIONS(8298), + [sym__redim_keyword] = ACTIONS(8298), + [aux_sym_get_accessor_token1] = ACTIONS(8298), + [aux_sym_set_accessor_token1] = ACTIONS(8298), + [aux_sym_const_declaration_token1] = ACTIONS(8298), + [anon_sym_LPAREN] = ACTIONS(8300), + [aux_sym_as_type_clause_token2] = ACTIONS(8298), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8298), + [aux_sym_visibility_token1] = ACTIONS(8298), + [aux_sym_visibility_token2] = ACTIONS(8298), + [aux_sym_elseif_fragment_token1] = ACTIONS(8298), + [aux_sym_else_fragment_token1] = ACTIONS(8298), + [aux_sym_select_statement_token1] = ACTIONS(8298), + [aux_sym__for_header_token1] = ACTIONS(8298), + [aux_sym_do_statement_token1] = ACTIONS(8298), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8298), + [aux_sym_exit_statement_token1] = ACTIONS(8298), + [sym_end_statement] = ACTIONS(8300), + [aux_sym_on_goto_statement_token1] = ACTIONS(8298), + [aux_sym_on_goto_statement_token2] = ACTIONS(8298), + [aux_sym_on_error_statement_token2] = ACTIONS(8298), + [sym__ambiguous_redim_statement] = ACTIONS(8300), + [aux_sym_erase_statement_token1] = ACTIONS(8298), + [aux_sym_open_statement_token1] = ACTIONS(8298), + [aux_sym_file_mode_token2] = ACTIONS(8298), + [aux_sym_file_access_token2] = ACTIONS(8298), + [aux_sym_file_lock_token2] = ACTIONS(8298), + [aux_sym_print_statement_token1] = ACTIONS(8298), + [anon_sym_PLUS] = ACTIONS(8300), + [anon_sym_DASH] = ACTIONS(8298), + [anon_sym_QMARK] = ACTIONS(8300), + [aux_sym_close_statement_token1] = ACTIONS(8298), + [aux_sym_put_statement_token1] = ACTIONS(8298), + [aux_sym_unlock_statement_token1] = ACTIONS(8298), + [aux_sym_seek_statement_token1] = ACTIONS(8298), + [sym_reset_statement] = ACTIONS(8298), + [aux_sym_raise_event_statement_token1] = ACTIONS(8298), + [sym_stop_statement] = ACTIONS(8298), + [sym_beep_statement] = ACTIONS(8298), + [aux_sym_unload_statement_token1] = ACTIONS(8298), + [aux_sym_def_type_statement_token1] = ACTIONS(8298), + [aux_sym_def_type_statement_token2] = ACTIONS(8298), + [aux_sym_def_type_statement_token3] = ACTIONS(8298), + [aux_sym_def_type_statement_token4] = ACTIONS(8298), + [aux_sym_def_type_statement_token5] = ACTIONS(8298), + [aux_sym_def_type_statement_token6] = ACTIONS(8298), + [aux_sym_def_type_statement_token7] = ACTIONS(8298), + [aux_sym_def_type_statement_token8] = ACTIONS(8298), + [aux_sym_def_type_statement_token9] = ACTIONS(8298), + [aux_sym_def_type_statement_token10] = ACTIONS(8298), + [aux_sym_def_type_statement_token11] = ACTIONS(8298), + [aux_sym_def_type_statement_token12] = ACTIONS(8298), + [aux_sym_def_type_statement_token13] = ACTIONS(8298), + [aux_sym_def_type_statement_token14] = ACTIONS(8298), + [aux_sym_call_statement_token1] = ACTIONS(8298), + [sym__ambiguous_call_statement] = ACTIONS(8298), + [aux_sym_addressof_expression_token1] = ACTIONS(8298), + [aux_sym_type_of_expression_token1] = ACTIONS(8298), + [aux_sym_unary_expression_token1] = ACTIONS(8298), + [sym_string_literal] = ACTIONS(8300), + [sym_number_literal] = ACTIONS(8300), + [aux_sym_boolean_literal_token1] = ACTIONS(8298), + [aux_sym_boolean_literal_token2] = ACTIONS(8298), + [sym_nothing_literal] = ACTIONS(8298), + [sym_null_literal] = ACTIONS(8298), + [sym_empty_literal] = ACTIONS(8298), + [sym_date_literal] = ACTIONS(8300), + [anon_sym_POUND] = ACTIONS(8298), + }, + [STATE(4118)] = { + [aux_sym__argument_sequence_repeat2] = STATE(4133), + [sym_identifier] = ACTIONS(4166), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_declaration_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_enum_declaration_token1] = ACTIONS(4166), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4166), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4166), + [aux_sym_declare_function_statement_token1] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [aux_sym__property_get_header_token1] = ACTIONS(4166), + [aux_sym_event_declaration_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4230), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4164), + [aux_sym_as_type_clause_token2] = ACTIONS(4166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4166), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4166), + [aux_sym_type_of_expression_token1] = ACTIONS(4166), + [aux_sym_unary_expression_token1] = ACTIONS(4166), + [sym_string_literal] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4164), + [aux_sym_boolean_literal_token1] = ACTIONS(4166), + [aux_sym_boolean_literal_token2] = ACTIONS(4166), + [sym_nothing_literal] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4166), + [sym_empty_literal] = ACTIONS(4166), + [sym_date_literal] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4166), + }, + [STATE(4119)] = { + [aux_sym__argument_sequence_repeat2] = STATE(4190), + [sym_identifier] = ACTIONS(4166), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_declaration_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_enum_declaration_token1] = ACTIONS(4166), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4166), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4166), + [aux_sym_declare_function_statement_token1] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [aux_sym__property_get_header_token1] = ACTIONS(4166), + [aux_sym_event_declaration_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4230), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4164), + [aux_sym_as_type_clause_token2] = ACTIONS(4166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4166), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4166), + [aux_sym_type_of_expression_token1] = ACTIONS(4166), + [aux_sym_unary_expression_token1] = ACTIONS(4166), + [sym_string_literal] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4164), + [aux_sym_boolean_literal_token1] = ACTIONS(4166), + [aux_sym_boolean_literal_token2] = ACTIONS(4166), + [sym_nothing_literal] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4166), + [sym_empty_literal] = ACTIONS(4166), + [sym_date_literal] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4166), + }, + [STATE(4120)] = { + [sym_identifier] = ACTIONS(9670), + [sym_newline] = ACTIONS(9672), + [anon_sym_COLON] = ACTIONS(9672), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9670), + [aux_sym_frm_property_statement_token1] = ACTIONS(9670), + [anon_sym_DOT] = ACTIONS(9670), + [anon_sym_BANG] = ACTIONS(9672), + [aux_sym__attribute_identifier_token1] = ACTIONS(9670), + [aux_sym_option_statement_token3] = ACTIONS(9670), + [aux_sym_type_declaration_token1] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9670), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9670), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9670), + [aux_sym_enum_declaration_token1] = ACTIONS(9670), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9670), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9670), + [aux_sym_declare_function_statement_token1] = ACTIONS(9670), + [aux_sym_preprocessor_const_token1] = ACTIONS(9670), + [aux_sym__property_get_header_token1] = ACTIONS(9670), + [aux_sym_event_declaration_token1] = ACTIONS(9670), + [sym_static_modifier] = ACTIONS(9670), + [sym__dim_keyword] = ACTIONS(9670), + [sym__redim_keyword] = ACTIONS(9670), + [aux_sym_get_accessor_token1] = ACTIONS(9670), + [aux_sym_set_accessor_token1] = ACTIONS(9670), + [aux_sym_const_declaration_token1] = ACTIONS(9670), + [anon_sym_LPAREN] = ACTIONS(9672), + [aux_sym_as_type_clause_token2] = ACTIONS(9670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9670), + [aux_sym_visibility_token1] = ACTIONS(9670), + [aux_sym_visibility_token2] = ACTIONS(9670), + [aux_sym_elseif_fragment_token1] = ACTIONS(9670), + [aux_sym_else_fragment_token1] = ACTIONS(9670), + [aux_sym_select_statement_token1] = ACTIONS(9670), + [aux_sym__for_header_token1] = ACTIONS(9670), + [aux_sym_do_statement_token1] = ACTIONS(9670), + [aux_sym_do_condition_token1] = ACTIONS(9670), + [aux_sym_with_statement_token1] = ACTIONS(9670), + [aux_sym_exit_statement_token1] = ACTIONS(9670), + [sym_end_statement] = ACTIONS(9672), + [aux_sym_on_goto_statement_token1] = ACTIONS(9670), + [aux_sym_on_goto_statement_token2] = ACTIONS(9670), + [aux_sym_on_error_statement_token2] = ACTIONS(9670), + [sym__ambiguous_redim_statement] = ACTIONS(9672), + [aux_sym_erase_statement_token1] = ACTIONS(9670), + [aux_sym_open_statement_token1] = ACTIONS(9670), + [aux_sym_file_mode_token2] = ACTIONS(9670), + [aux_sym_file_access_token2] = ACTIONS(9670), + [aux_sym_file_lock_token2] = ACTIONS(9670), + [aux_sym_print_statement_token1] = ACTIONS(9670), + [anon_sym_PLUS] = ACTIONS(9672), + [anon_sym_DASH] = ACTIONS(9670), + [anon_sym_QMARK] = ACTIONS(9672), + [aux_sym_close_statement_token1] = ACTIONS(9670), + [aux_sym_put_statement_token1] = ACTIONS(9670), + [aux_sym_unlock_statement_token1] = ACTIONS(9670), + [aux_sym_seek_statement_token1] = ACTIONS(9670), + [sym_reset_statement] = ACTIONS(9670), + [aux_sym_raise_event_statement_token1] = ACTIONS(9670), + [sym_stop_statement] = ACTIONS(9670), + [sym_beep_statement] = ACTIONS(9670), + [aux_sym_unload_statement_token1] = ACTIONS(9670), + [aux_sym_def_type_statement_token1] = ACTIONS(9670), + [aux_sym_def_type_statement_token2] = ACTIONS(9670), + [aux_sym_def_type_statement_token3] = ACTIONS(9670), + [aux_sym_def_type_statement_token4] = ACTIONS(9670), + [aux_sym_def_type_statement_token5] = ACTIONS(9670), + [aux_sym_def_type_statement_token6] = ACTIONS(9670), + [aux_sym_def_type_statement_token7] = ACTIONS(9670), + [aux_sym_def_type_statement_token8] = ACTIONS(9670), + [aux_sym_def_type_statement_token9] = ACTIONS(9670), + [aux_sym_def_type_statement_token10] = ACTIONS(9670), + [aux_sym_def_type_statement_token11] = ACTIONS(9670), + [aux_sym_def_type_statement_token12] = ACTIONS(9670), + [aux_sym_def_type_statement_token13] = ACTIONS(9670), + [aux_sym_def_type_statement_token14] = ACTIONS(9670), + [aux_sym_call_statement_token1] = ACTIONS(9670), + [sym__ambiguous_call_statement] = ACTIONS(9670), + [aux_sym_addressof_expression_token1] = ACTIONS(9670), + [aux_sym_type_of_expression_token1] = ACTIONS(9670), + [aux_sym_unary_expression_token1] = ACTIONS(9670), + [sym_string_literal] = ACTIONS(9672), + [sym_number_literal] = ACTIONS(9672), + [aux_sym_boolean_literal_token1] = ACTIONS(9670), + [aux_sym_boolean_literal_token2] = ACTIONS(9670), + [sym_nothing_literal] = ACTIONS(9670), + [sym_null_literal] = ACTIONS(9670), + [sym_empty_literal] = ACTIONS(9670), + [sym_date_literal] = ACTIONS(9672), + [anon_sym_POUND] = ACTIONS(9670), + }, + [STATE(4121)] = { + [sym_do_condition] = STATE(4490), + [sym_identifier] = ACTIONS(8374), + [sym_newline] = ACTIONS(8376), + [anon_sym_COLON] = ACTIONS(8376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8374), + [aux_sym_frm_property_statement_token1] = ACTIONS(8374), + [anon_sym_DOT] = ACTIONS(8374), + [anon_sym_BANG] = ACTIONS(8376), + [aux_sym__attribute_identifier_token1] = ACTIONS(8374), + [aux_sym_option_statement_token3] = ACTIONS(8374), + [aux_sym_type_declaration_token1] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8374), + [aux_sym_enum_declaration_token1] = ACTIONS(8374), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8374), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8374), + [aux_sym_declare_function_statement_token1] = ACTIONS(8374), + [aux_sym_preprocessor_const_token1] = ACTIONS(8374), + [aux_sym__property_get_header_token1] = ACTIONS(8374), + [aux_sym_event_declaration_token1] = ACTIONS(8374), + [sym_static_modifier] = ACTIONS(8374), + [sym__dim_keyword] = ACTIONS(8374), + [sym__redim_keyword] = ACTIONS(8374), + [aux_sym_get_accessor_token1] = ACTIONS(8374), + [aux_sym_set_accessor_token1] = ACTIONS(8374), + [aux_sym_const_declaration_token1] = ACTIONS(8374), + [anon_sym_LPAREN] = ACTIONS(8376), + [aux_sym_as_type_clause_token2] = ACTIONS(8374), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8374), + [aux_sym_visibility_token1] = ACTIONS(8374), + [aux_sym_visibility_token2] = ACTIONS(8374), + [aux_sym_elseif_fragment_token1] = ACTIONS(8374), + [aux_sym_else_fragment_token1] = ACTIONS(8374), + [aux_sym_select_statement_token1] = ACTIONS(8374), + [aux_sym__for_header_token1] = ACTIONS(8374), + [aux_sym_do_statement_token1] = ACTIONS(8374), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8374), + [aux_sym_exit_statement_token1] = ACTIONS(8374), + [sym_end_statement] = ACTIONS(8376), + [aux_sym_on_goto_statement_token1] = ACTIONS(8374), + [aux_sym_on_goto_statement_token2] = ACTIONS(8374), + [aux_sym_on_error_statement_token2] = ACTIONS(8374), + [sym__ambiguous_redim_statement] = ACTIONS(8376), + [aux_sym_erase_statement_token1] = ACTIONS(8374), + [aux_sym_open_statement_token1] = ACTIONS(8374), + [aux_sym_file_mode_token2] = ACTIONS(8374), + [aux_sym_file_access_token2] = ACTIONS(8374), + [aux_sym_file_lock_token2] = ACTIONS(8374), + [aux_sym_print_statement_token1] = ACTIONS(8374), + [anon_sym_PLUS] = ACTIONS(8376), + [anon_sym_DASH] = ACTIONS(8374), + [anon_sym_QMARK] = ACTIONS(8376), + [aux_sym_close_statement_token1] = ACTIONS(8374), + [aux_sym_put_statement_token1] = ACTIONS(8374), + [aux_sym_unlock_statement_token1] = ACTIONS(8374), + [aux_sym_seek_statement_token1] = ACTIONS(8374), + [sym_reset_statement] = ACTIONS(8374), + [aux_sym_raise_event_statement_token1] = ACTIONS(8374), + [sym_stop_statement] = ACTIONS(8374), + [sym_beep_statement] = ACTIONS(8374), + [aux_sym_unload_statement_token1] = ACTIONS(8374), + [aux_sym_def_type_statement_token1] = ACTIONS(8374), + [aux_sym_def_type_statement_token2] = ACTIONS(8374), + [aux_sym_def_type_statement_token3] = ACTIONS(8374), + [aux_sym_def_type_statement_token4] = ACTIONS(8374), + [aux_sym_def_type_statement_token5] = ACTIONS(8374), + [aux_sym_def_type_statement_token6] = ACTIONS(8374), + [aux_sym_def_type_statement_token7] = ACTIONS(8374), + [aux_sym_def_type_statement_token8] = ACTIONS(8374), + [aux_sym_def_type_statement_token9] = ACTIONS(8374), + [aux_sym_def_type_statement_token10] = ACTIONS(8374), + [aux_sym_def_type_statement_token11] = ACTIONS(8374), + [aux_sym_def_type_statement_token12] = ACTIONS(8374), + [aux_sym_def_type_statement_token13] = ACTIONS(8374), + [aux_sym_def_type_statement_token14] = ACTIONS(8374), + [aux_sym_call_statement_token1] = ACTIONS(8374), + [sym__ambiguous_call_statement] = ACTIONS(8374), + [aux_sym_addressof_expression_token1] = ACTIONS(8374), + [aux_sym_type_of_expression_token1] = ACTIONS(8374), + [aux_sym_unary_expression_token1] = ACTIONS(8374), + [sym_string_literal] = ACTIONS(8376), + [sym_number_literal] = ACTIONS(8376), + [aux_sym_boolean_literal_token1] = ACTIONS(8374), + [aux_sym_boolean_literal_token2] = ACTIONS(8374), + [sym_nothing_literal] = ACTIONS(8374), + [sym_null_literal] = ACTIONS(8374), + [sym_empty_literal] = ACTIONS(8374), + [sym_date_literal] = ACTIONS(8376), + [anon_sym_POUND] = ACTIONS(8374), + }, + [STATE(4122)] = { + [sym_do_condition] = STATE(4491), + [sym_identifier] = ACTIONS(8378), + [sym_newline] = ACTIONS(8380), + [anon_sym_COLON] = ACTIONS(8380), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8378), + [aux_sym_frm_property_statement_token1] = ACTIONS(8378), + [anon_sym_DOT] = ACTIONS(8378), + [anon_sym_BANG] = ACTIONS(8380), + [aux_sym__attribute_identifier_token1] = ACTIONS(8378), + [aux_sym_option_statement_token3] = ACTIONS(8378), + [aux_sym_type_declaration_token1] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8378), + [aux_sym_enum_declaration_token1] = ACTIONS(8378), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8378), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8378), + [aux_sym_declare_function_statement_token1] = ACTIONS(8378), + [aux_sym_preprocessor_const_token1] = ACTIONS(8378), + [aux_sym__property_get_header_token1] = ACTIONS(8378), + [aux_sym_event_declaration_token1] = ACTIONS(8378), + [sym_static_modifier] = ACTIONS(8378), + [sym__dim_keyword] = ACTIONS(8378), + [sym__redim_keyword] = ACTIONS(8378), + [aux_sym_get_accessor_token1] = ACTIONS(8378), + [aux_sym_set_accessor_token1] = ACTIONS(8378), + [aux_sym_const_declaration_token1] = ACTIONS(8378), + [anon_sym_LPAREN] = ACTIONS(8380), + [aux_sym_as_type_clause_token2] = ACTIONS(8378), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8378), + [aux_sym_visibility_token1] = ACTIONS(8378), + [aux_sym_visibility_token2] = ACTIONS(8378), + [aux_sym_elseif_fragment_token1] = ACTIONS(8378), + [aux_sym_else_fragment_token1] = ACTIONS(8378), + [aux_sym_select_statement_token1] = ACTIONS(8378), + [aux_sym__for_header_token1] = ACTIONS(8378), + [aux_sym_do_statement_token1] = ACTIONS(8378), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8378), + [aux_sym_exit_statement_token1] = ACTIONS(8378), + [sym_end_statement] = ACTIONS(8380), + [aux_sym_on_goto_statement_token1] = ACTIONS(8378), + [aux_sym_on_goto_statement_token2] = ACTIONS(8378), + [aux_sym_on_error_statement_token2] = ACTIONS(8378), + [sym__ambiguous_redim_statement] = ACTIONS(8380), + [aux_sym_erase_statement_token1] = ACTIONS(8378), + [aux_sym_open_statement_token1] = ACTIONS(8378), + [aux_sym_file_mode_token2] = ACTIONS(8378), + [aux_sym_file_access_token2] = ACTIONS(8378), + [aux_sym_file_lock_token2] = ACTIONS(8378), + [aux_sym_print_statement_token1] = ACTIONS(8378), + [anon_sym_PLUS] = ACTIONS(8380), + [anon_sym_DASH] = ACTIONS(8378), + [anon_sym_QMARK] = ACTIONS(8380), + [aux_sym_close_statement_token1] = ACTIONS(8378), + [aux_sym_put_statement_token1] = ACTIONS(8378), + [aux_sym_unlock_statement_token1] = ACTIONS(8378), + [aux_sym_seek_statement_token1] = ACTIONS(8378), + [sym_reset_statement] = ACTIONS(8378), + [aux_sym_raise_event_statement_token1] = ACTIONS(8378), + [sym_stop_statement] = ACTIONS(8378), + [sym_beep_statement] = ACTIONS(8378), + [aux_sym_unload_statement_token1] = ACTIONS(8378), + [aux_sym_def_type_statement_token1] = ACTIONS(8378), + [aux_sym_def_type_statement_token2] = ACTIONS(8378), + [aux_sym_def_type_statement_token3] = ACTIONS(8378), + [aux_sym_def_type_statement_token4] = ACTIONS(8378), + [aux_sym_def_type_statement_token5] = ACTIONS(8378), + [aux_sym_def_type_statement_token6] = ACTIONS(8378), + [aux_sym_def_type_statement_token7] = ACTIONS(8378), + [aux_sym_def_type_statement_token8] = ACTIONS(8378), + [aux_sym_def_type_statement_token9] = ACTIONS(8378), + [aux_sym_def_type_statement_token10] = ACTIONS(8378), + [aux_sym_def_type_statement_token11] = ACTIONS(8378), + [aux_sym_def_type_statement_token12] = ACTIONS(8378), + [aux_sym_def_type_statement_token13] = ACTIONS(8378), + [aux_sym_def_type_statement_token14] = ACTIONS(8378), + [aux_sym_call_statement_token1] = ACTIONS(8378), + [sym__ambiguous_call_statement] = ACTIONS(8378), + [aux_sym_addressof_expression_token1] = ACTIONS(8378), + [aux_sym_type_of_expression_token1] = ACTIONS(8378), + [aux_sym_unary_expression_token1] = ACTIONS(8378), + [sym_string_literal] = ACTIONS(8380), + [sym_number_literal] = ACTIONS(8380), + [aux_sym_boolean_literal_token1] = ACTIONS(8378), + [aux_sym_boolean_literal_token2] = ACTIONS(8378), + [sym_nothing_literal] = ACTIONS(8378), + [sym_null_literal] = ACTIONS(8378), + [sym_empty_literal] = ACTIONS(8378), + [sym_date_literal] = ACTIONS(8380), + [anon_sym_POUND] = ACTIONS(8378), + }, + [STATE(4123)] = { + [sym_argument_list] = STATE(10051), + [sym_identifier] = ACTIONS(8393), + [sym_newline] = ACTIONS(8395), + [anon_sym_COLON] = ACTIONS(8395), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8393), + [aux_sym_frm_property_statement_token1] = ACTIONS(8393), + [anon_sym_DOT] = ACTIONS(8393), + [anon_sym_BANG] = ACTIONS(8395), + [aux_sym__attribute_identifier_token1] = ACTIONS(8393), + [aux_sym_option_statement_token3] = ACTIONS(8393), + [aux_sym_type_declaration_token1] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8393), + [aux_sym_enum_declaration_token1] = ACTIONS(8393), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8393), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8393), + [aux_sym_declare_function_statement_token1] = ACTIONS(8393), + [aux_sym_preprocessor_const_token1] = ACTIONS(8393), + [aux_sym__property_get_header_token1] = ACTIONS(8393), + [aux_sym_event_declaration_token1] = ACTIONS(8393), + [sym_static_modifier] = ACTIONS(8393), + [sym__dim_keyword] = ACTIONS(8393), + [sym__redim_keyword] = ACTIONS(8393), + [aux_sym_get_accessor_token1] = ACTIONS(8393), + [aux_sym_set_accessor_token1] = ACTIONS(8393), + [anon_sym_COMMA] = ACTIONS(8395), + [aux_sym_const_declaration_token1] = ACTIONS(8393), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(8393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8393), + [aux_sym_visibility_token1] = ACTIONS(8393), + [aux_sym_visibility_token2] = ACTIONS(8393), + [aux_sym_elseif_fragment_token1] = ACTIONS(8393), + [aux_sym_else_fragment_token1] = ACTIONS(8393), + [aux_sym_select_statement_token1] = ACTIONS(8393), + [aux_sym__for_header_token1] = ACTIONS(8393), + [aux_sym_do_statement_token1] = ACTIONS(8393), + [aux_sym_do_condition_token1] = ACTIONS(8393), + [aux_sym_with_statement_token1] = ACTIONS(8393), + [aux_sym_exit_statement_token1] = ACTIONS(8393), + [sym_end_statement] = ACTIONS(8395), + [aux_sym_on_goto_statement_token1] = ACTIONS(8393), + [aux_sym_on_goto_statement_token2] = ACTIONS(8393), + [aux_sym_on_error_statement_token2] = ACTIONS(8393), + [sym__ambiguous_redim_statement] = ACTIONS(8395), + [aux_sym_erase_statement_token1] = ACTIONS(8393), + [aux_sym_open_statement_token1] = ACTIONS(8393), + [aux_sym_file_mode_token2] = ACTIONS(8393), + [aux_sym_file_access_token2] = ACTIONS(8393), + [aux_sym_file_lock_token2] = ACTIONS(8393), + [aux_sym_print_statement_token1] = ACTIONS(8393), + [anon_sym_PLUS] = ACTIONS(8395), + [anon_sym_DASH] = ACTIONS(8393), + [anon_sym_QMARK] = ACTIONS(8395), + [aux_sym_close_statement_token1] = ACTIONS(8393), + [aux_sym_put_statement_token1] = ACTIONS(8393), + [aux_sym_unlock_statement_token1] = ACTIONS(8393), + [aux_sym_seek_statement_token1] = ACTIONS(8393), + [sym_reset_statement] = ACTIONS(8393), + [aux_sym_raise_event_statement_token1] = ACTIONS(8393), + [sym_stop_statement] = ACTIONS(8393), + [sym_beep_statement] = ACTIONS(8393), + [aux_sym_unload_statement_token1] = ACTIONS(8393), + [aux_sym_def_type_statement_token1] = ACTIONS(8393), + [aux_sym_def_type_statement_token2] = ACTIONS(8393), + [aux_sym_def_type_statement_token3] = ACTIONS(8393), + [aux_sym_def_type_statement_token4] = ACTIONS(8393), + [aux_sym_def_type_statement_token5] = ACTIONS(8393), + [aux_sym_def_type_statement_token6] = ACTIONS(8393), + [aux_sym_def_type_statement_token7] = ACTIONS(8393), + [aux_sym_def_type_statement_token8] = ACTIONS(8393), + [aux_sym_def_type_statement_token9] = ACTIONS(8393), + [aux_sym_def_type_statement_token10] = ACTIONS(8393), + [aux_sym_def_type_statement_token11] = ACTIONS(8393), + [aux_sym_def_type_statement_token12] = ACTIONS(8393), + [aux_sym_def_type_statement_token13] = ACTIONS(8393), + [aux_sym_def_type_statement_token14] = ACTIONS(8393), + [aux_sym_call_statement_token1] = ACTIONS(8393), + [sym__ambiguous_call_statement] = ACTIONS(8393), + [aux_sym_addressof_expression_token1] = ACTIONS(8393), + [aux_sym_type_of_expression_token1] = ACTIONS(8393), + [aux_sym_unary_expression_token1] = ACTIONS(8393), + [sym_string_literal] = ACTIONS(8395), + [sym_number_literal] = ACTIONS(8395), + [aux_sym_boolean_literal_token1] = ACTIONS(8393), + [aux_sym_boolean_literal_token2] = ACTIONS(8393), + [sym_nothing_literal] = ACTIONS(8393), + [sym_null_literal] = ACTIONS(8393), + [sym_empty_literal] = ACTIONS(8393), + [sym_date_literal] = ACTIONS(8395), + [anon_sym_POUND] = ACTIONS(8393), + }, + [STATE(4124)] = { + [aux_sym_input_statement_repeat1] = STATE(4124), + [sym_identifier] = ACTIONS(8401), + [sym_newline] = ACTIONS(8403), + [anon_sym_COLON] = ACTIONS(8403), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8401), + [aux_sym_frm_property_statement_token1] = ACTIONS(8401), + [anon_sym_DOT] = ACTIONS(8401), + [anon_sym_BANG] = ACTIONS(8403), + [aux_sym__attribute_identifier_token1] = ACTIONS(8401), + [aux_sym_option_statement_token3] = ACTIONS(8401), + [aux_sym_type_declaration_token1] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8401), + [aux_sym_enum_declaration_token1] = ACTIONS(8401), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8401), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8401), + [aux_sym_declare_function_statement_token1] = ACTIONS(8401), + [aux_sym_preprocessor_const_token1] = ACTIONS(8401), + [aux_sym__property_get_header_token1] = ACTIONS(8401), + [aux_sym_event_declaration_token1] = ACTIONS(8401), + [sym_static_modifier] = ACTIONS(8401), + [sym__dim_keyword] = ACTIONS(8401), + [sym__redim_keyword] = ACTIONS(8401), + [aux_sym_get_accessor_token1] = ACTIONS(8401), + [aux_sym_set_accessor_token1] = ACTIONS(8401), + [anon_sym_COMMA] = ACTIONS(9674), + [aux_sym_const_declaration_token1] = ACTIONS(8401), + [anon_sym_LPAREN] = ACTIONS(8403), + [aux_sym_as_type_clause_token2] = ACTIONS(8401), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8401), + [aux_sym_visibility_token1] = ACTIONS(8401), + [aux_sym_visibility_token2] = ACTIONS(8401), + [aux_sym_elseif_fragment_token1] = ACTIONS(8401), + [aux_sym_else_fragment_token1] = ACTIONS(8401), + [aux_sym_select_statement_token1] = ACTIONS(8401), + [aux_sym__for_header_token1] = ACTIONS(8401), + [aux_sym_do_statement_token1] = ACTIONS(8401), + [aux_sym_do_condition_token1] = ACTIONS(8401), + [aux_sym_with_statement_token1] = ACTIONS(8401), + [aux_sym_exit_statement_token1] = ACTIONS(8401), + [sym_end_statement] = ACTIONS(8403), + [aux_sym_on_goto_statement_token1] = ACTIONS(8401), + [aux_sym_on_goto_statement_token2] = ACTIONS(8401), + [aux_sym_on_error_statement_token2] = ACTIONS(8401), + [sym__ambiguous_redim_statement] = ACTIONS(8403), + [aux_sym_erase_statement_token1] = ACTIONS(8401), + [aux_sym_open_statement_token1] = ACTIONS(8401), + [aux_sym_file_mode_token2] = ACTIONS(8401), + [aux_sym_file_access_token2] = ACTIONS(8401), + [aux_sym_file_lock_token2] = ACTIONS(8401), + [aux_sym_print_statement_token1] = ACTIONS(8401), + [anon_sym_PLUS] = ACTIONS(8403), + [anon_sym_DASH] = ACTIONS(8401), + [anon_sym_QMARK] = ACTIONS(8403), + [aux_sym_close_statement_token1] = ACTIONS(8401), + [aux_sym_put_statement_token1] = ACTIONS(8401), + [aux_sym_unlock_statement_token1] = ACTIONS(8401), + [aux_sym_seek_statement_token1] = ACTIONS(8401), + [sym_reset_statement] = ACTIONS(8401), + [aux_sym_raise_event_statement_token1] = ACTIONS(8401), + [sym_stop_statement] = ACTIONS(8401), + [sym_beep_statement] = ACTIONS(8401), + [aux_sym_unload_statement_token1] = ACTIONS(8401), + [aux_sym_def_type_statement_token1] = ACTIONS(8401), + [aux_sym_def_type_statement_token2] = ACTIONS(8401), + [aux_sym_def_type_statement_token3] = ACTIONS(8401), + [aux_sym_def_type_statement_token4] = ACTIONS(8401), + [aux_sym_def_type_statement_token5] = ACTIONS(8401), + [aux_sym_def_type_statement_token6] = ACTIONS(8401), + [aux_sym_def_type_statement_token7] = ACTIONS(8401), + [aux_sym_def_type_statement_token8] = ACTIONS(8401), + [aux_sym_def_type_statement_token9] = ACTIONS(8401), + [aux_sym_def_type_statement_token10] = ACTIONS(8401), + [aux_sym_def_type_statement_token11] = ACTIONS(8401), + [aux_sym_def_type_statement_token12] = ACTIONS(8401), + [aux_sym_def_type_statement_token13] = ACTIONS(8401), + [aux_sym_def_type_statement_token14] = ACTIONS(8401), + [aux_sym_call_statement_token1] = ACTIONS(8401), + [sym__ambiguous_call_statement] = ACTIONS(8401), + [aux_sym_addressof_expression_token1] = ACTIONS(8401), + [aux_sym_type_of_expression_token1] = ACTIONS(8401), + [aux_sym_unary_expression_token1] = ACTIONS(8401), + [sym_string_literal] = ACTIONS(8403), + [sym_number_literal] = ACTIONS(8403), + [aux_sym_boolean_literal_token1] = ACTIONS(8401), + [aux_sym_boolean_literal_token2] = ACTIONS(8401), + [sym_nothing_literal] = ACTIONS(8401), + [sym_null_literal] = ACTIONS(8401), + [sym_empty_literal] = ACTIONS(8401), + [sym_date_literal] = ACTIONS(8403), + [anon_sym_POUND] = ACTIONS(8401), + }, + [STATE(4125)] = { + [sym_identifier] = ACTIONS(9677), + [sym_newline] = ACTIONS(9679), + [anon_sym_COLON] = ACTIONS(9679), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9677), + [aux_sym_frm_property_statement_token1] = ACTIONS(9677), + [anon_sym_DOT] = ACTIONS(9677), + [anon_sym_BANG] = ACTIONS(9679), + [aux_sym__attribute_identifier_token1] = ACTIONS(9677), + [aux_sym_option_statement_token3] = ACTIONS(9677), + [aux_sym_type_declaration_token1] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9677), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9677), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9677), + [aux_sym_enum_declaration_token1] = ACTIONS(9677), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9677), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9677), + [aux_sym_declare_function_statement_token1] = ACTIONS(9677), + [aux_sym_preprocessor_const_token1] = ACTIONS(9677), + [aux_sym__property_get_header_token1] = ACTIONS(9677), + [aux_sym_event_declaration_token1] = ACTIONS(9677), + [sym_static_modifier] = ACTIONS(9677), + [sym__dim_keyword] = ACTIONS(9677), + [sym__redim_keyword] = ACTIONS(9677), + [aux_sym_get_accessor_token1] = ACTIONS(9677), + [aux_sym_set_accessor_token1] = ACTIONS(9677), + [aux_sym_const_declaration_token1] = ACTIONS(9677), + [anon_sym_LPAREN] = ACTIONS(9679), + [aux_sym_as_type_clause_token2] = ACTIONS(9677), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9677), + [aux_sym_visibility_token1] = ACTIONS(9677), + [aux_sym_visibility_token2] = ACTIONS(9677), + [aux_sym_elseif_fragment_token1] = ACTIONS(9677), + [aux_sym_else_fragment_token1] = ACTIONS(9677), + [aux_sym_select_statement_token1] = ACTIONS(9677), + [aux_sym__for_header_token1] = ACTIONS(9677), + [aux_sym_do_statement_token1] = ACTIONS(9677), + [aux_sym_do_condition_token1] = ACTIONS(9677), + [aux_sym_with_statement_token1] = ACTIONS(9677), + [aux_sym_exit_statement_token1] = ACTIONS(9677), + [sym_end_statement] = ACTIONS(9679), + [aux_sym_on_goto_statement_token1] = ACTIONS(9677), + [aux_sym_on_goto_statement_token2] = ACTIONS(9677), + [aux_sym_on_error_statement_token2] = ACTIONS(9677), + [sym__ambiguous_redim_statement] = ACTIONS(9679), + [aux_sym_erase_statement_token1] = ACTIONS(9677), + [aux_sym_open_statement_token1] = ACTIONS(9677), + [aux_sym_file_mode_token2] = ACTIONS(9677), + [aux_sym_file_access_token2] = ACTIONS(9677), + [aux_sym_file_lock_token2] = ACTIONS(9677), + [aux_sym_print_statement_token1] = ACTIONS(9677), + [anon_sym_PLUS] = ACTIONS(9679), + [anon_sym_DASH] = ACTIONS(9677), + [anon_sym_QMARK] = ACTIONS(9679), + [aux_sym_close_statement_token1] = ACTIONS(9677), + [aux_sym_put_statement_token1] = ACTIONS(9677), + [aux_sym_unlock_statement_token1] = ACTIONS(9677), + [aux_sym_seek_statement_token1] = ACTIONS(9677), + [sym_reset_statement] = ACTIONS(9677), + [aux_sym_raise_event_statement_token1] = ACTIONS(9677), + [sym_stop_statement] = ACTIONS(9677), + [sym_beep_statement] = ACTIONS(9677), + [aux_sym_unload_statement_token1] = ACTIONS(9677), + [aux_sym_def_type_statement_token1] = ACTIONS(9677), + [aux_sym_def_type_statement_token2] = ACTIONS(9677), + [aux_sym_def_type_statement_token3] = ACTIONS(9677), + [aux_sym_def_type_statement_token4] = ACTIONS(9677), + [aux_sym_def_type_statement_token5] = ACTIONS(9677), + [aux_sym_def_type_statement_token6] = ACTIONS(9677), + [aux_sym_def_type_statement_token7] = ACTIONS(9677), + [aux_sym_def_type_statement_token8] = ACTIONS(9677), + [aux_sym_def_type_statement_token9] = ACTIONS(9677), + [aux_sym_def_type_statement_token10] = ACTIONS(9677), + [aux_sym_def_type_statement_token11] = ACTIONS(9677), + [aux_sym_def_type_statement_token12] = ACTIONS(9677), + [aux_sym_def_type_statement_token13] = ACTIONS(9677), + [aux_sym_def_type_statement_token14] = ACTIONS(9677), + [aux_sym_call_statement_token1] = ACTIONS(9677), + [sym__ambiguous_call_statement] = ACTIONS(9677), + [aux_sym_addressof_expression_token1] = ACTIONS(9677), + [aux_sym_type_of_expression_token1] = ACTIONS(9677), + [aux_sym_unary_expression_token1] = ACTIONS(9677), + [sym_string_literal] = ACTIONS(9679), + [sym_number_literal] = ACTIONS(9679), + [aux_sym_boolean_literal_token1] = ACTIONS(9677), + [aux_sym_boolean_literal_token2] = ACTIONS(9677), + [sym_nothing_literal] = ACTIONS(9677), + [sym_null_literal] = ACTIONS(9677), + [sym_empty_literal] = ACTIONS(9677), + [sym_date_literal] = ACTIONS(9679), + [anon_sym_POUND] = ACTIONS(9677), + }, + [STATE(4126)] = { + [aux_sym_next_variable_list_repeat1] = STATE(4126), + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_declaration_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_enum_declaration_token1] = ACTIONS(7949), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7949), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7949), + [aux_sym_declare_function_statement_token1] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [aux_sym__property_get_header_token1] = ACTIONS(7949), + [aux_sym_event_declaration_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(9681), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(4127)] = { + [sym_do_condition] = STATE(4494), + [sym_identifier] = ACTIONS(8411), + [sym_newline] = ACTIONS(8413), + [anon_sym_COLON] = ACTIONS(8413), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8411), + [aux_sym_frm_property_statement_token1] = ACTIONS(8411), + [anon_sym_DOT] = ACTIONS(8411), + [anon_sym_BANG] = ACTIONS(8413), + [aux_sym__attribute_identifier_token1] = ACTIONS(8411), + [aux_sym_option_statement_token3] = ACTIONS(8411), + [aux_sym_type_declaration_token1] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8411), + [aux_sym_enum_declaration_token1] = ACTIONS(8411), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8411), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8411), + [aux_sym_declare_function_statement_token1] = ACTIONS(8411), + [aux_sym_preprocessor_const_token1] = ACTIONS(8411), + [aux_sym__property_get_header_token1] = ACTIONS(8411), + [aux_sym_event_declaration_token1] = ACTIONS(8411), + [sym_static_modifier] = ACTIONS(8411), + [sym__dim_keyword] = ACTIONS(8411), + [sym__redim_keyword] = ACTIONS(8411), + [aux_sym_get_accessor_token1] = ACTIONS(8411), + [aux_sym_set_accessor_token1] = ACTIONS(8411), + [aux_sym_const_declaration_token1] = ACTIONS(8411), + [anon_sym_LPAREN] = ACTIONS(8413), + [aux_sym_as_type_clause_token2] = ACTIONS(8411), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8411), + [aux_sym_visibility_token1] = ACTIONS(8411), + [aux_sym_visibility_token2] = ACTIONS(8411), + [aux_sym_elseif_fragment_token1] = ACTIONS(8411), + [aux_sym_else_fragment_token1] = ACTIONS(8411), + [aux_sym_select_statement_token1] = ACTIONS(8411), + [aux_sym__for_header_token1] = ACTIONS(8411), + [aux_sym_do_statement_token1] = ACTIONS(8411), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8411), + [aux_sym_exit_statement_token1] = ACTIONS(8411), + [sym_end_statement] = ACTIONS(8413), + [aux_sym_on_goto_statement_token1] = ACTIONS(8411), + [aux_sym_on_goto_statement_token2] = ACTIONS(8411), + [aux_sym_on_error_statement_token2] = ACTIONS(8411), + [sym__ambiguous_redim_statement] = ACTIONS(8413), + [aux_sym_erase_statement_token1] = ACTIONS(8411), + [aux_sym_open_statement_token1] = ACTIONS(8411), + [aux_sym_file_mode_token2] = ACTIONS(8411), + [aux_sym_file_access_token2] = ACTIONS(8411), + [aux_sym_file_lock_token2] = ACTIONS(8411), + [aux_sym_print_statement_token1] = ACTIONS(8411), + [anon_sym_PLUS] = ACTIONS(8413), + [anon_sym_DASH] = ACTIONS(8411), + [anon_sym_QMARK] = ACTIONS(8413), + [aux_sym_close_statement_token1] = ACTIONS(8411), + [aux_sym_put_statement_token1] = ACTIONS(8411), + [aux_sym_unlock_statement_token1] = ACTIONS(8411), + [aux_sym_seek_statement_token1] = ACTIONS(8411), + [sym_reset_statement] = ACTIONS(8411), + [aux_sym_raise_event_statement_token1] = ACTIONS(8411), + [sym_stop_statement] = ACTIONS(8411), + [sym_beep_statement] = ACTIONS(8411), + [aux_sym_unload_statement_token1] = ACTIONS(8411), + [aux_sym_def_type_statement_token1] = ACTIONS(8411), + [aux_sym_def_type_statement_token2] = ACTIONS(8411), + [aux_sym_def_type_statement_token3] = ACTIONS(8411), + [aux_sym_def_type_statement_token4] = ACTIONS(8411), + [aux_sym_def_type_statement_token5] = ACTIONS(8411), + [aux_sym_def_type_statement_token6] = ACTIONS(8411), + [aux_sym_def_type_statement_token7] = ACTIONS(8411), + [aux_sym_def_type_statement_token8] = ACTIONS(8411), + [aux_sym_def_type_statement_token9] = ACTIONS(8411), + [aux_sym_def_type_statement_token10] = ACTIONS(8411), + [aux_sym_def_type_statement_token11] = ACTIONS(8411), + [aux_sym_def_type_statement_token12] = ACTIONS(8411), + [aux_sym_def_type_statement_token13] = ACTIONS(8411), + [aux_sym_def_type_statement_token14] = ACTIONS(8411), + [aux_sym_call_statement_token1] = ACTIONS(8411), + [sym__ambiguous_call_statement] = ACTIONS(8411), + [aux_sym_addressof_expression_token1] = ACTIONS(8411), + [aux_sym_type_of_expression_token1] = ACTIONS(8411), + [aux_sym_unary_expression_token1] = ACTIONS(8411), + [sym_string_literal] = ACTIONS(8413), + [sym_number_literal] = ACTIONS(8413), + [aux_sym_boolean_literal_token1] = ACTIONS(8411), + [aux_sym_boolean_literal_token2] = ACTIONS(8411), + [sym_nothing_literal] = ACTIONS(8411), + [sym_null_literal] = ACTIONS(8411), + [sym_empty_literal] = ACTIONS(8411), + [sym_date_literal] = ACTIONS(8413), + [anon_sym_POUND] = ACTIONS(8411), + }, + [STATE(4128)] = { + [sym_do_condition] = STATE(4495), + [sym_identifier] = ACTIONS(8415), + [sym_newline] = ACTIONS(8417), + [anon_sym_COLON] = ACTIONS(8417), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8415), + [aux_sym_frm_property_statement_token1] = ACTIONS(8415), + [anon_sym_DOT] = ACTIONS(8415), + [anon_sym_BANG] = ACTIONS(8417), + [aux_sym__attribute_identifier_token1] = ACTIONS(8415), + [aux_sym_option_statement_token3] = ACTIONS(8415), + [aux_sym_type_declaration_token1] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8415), + [aux_sym_enum_declaration_token1] = ACTIONS(8415), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8415), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8415), + [aux_sym_declare_function_statement_token1] = ACTIONS(8415), + [aux_sym_preprocessor_const_token1] = ACTIONS(8415), + [aux_sym__property_get_header_token1] = ACTIONS(8415), + [aux_sym_event_declaration_token1] = ACTIONS(8415), + [sym_static_modifier] = ACTIONS(8415), + [sym__dim_keyword] = ACTIONS(8415), + [sym__redim_keyword] = ACTIONS(8415), + [aux_sym_get_accessor_token1] = ACTIONS(8415), + [aux_sym_set_accessor_token1] = ACTIONS(8415), + [aux_sym_const_declaration_token1] = ACTIONS(8415), + [anon_sym_LPAREN] = ACTIONS(8417), + [aux_sym_as_type_clause_token2] = ACTIONS(8415), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8415), + [aux_sym_visibility_token1] = ACTIONS(8415), + [aux_sym_visibility_token2] = ACTIONS(8415), + [aux_sym_elseif_fragment_token1] = ACTIONS(8415), + [aux_sym_else_fragment_token1] = ACTIONS(8415), + [aux_sym_select_statement_token1] = ACTIONS(8415), + [aux_sym__for_header_token1] = ACTIONS(8415), + [aux_sym_do_statement_token1] = ACTIONS(8415), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8415), + [aux_sym_exit_statement_token1] = ACTIONS(8415), + [sym_end_statement] = ACTIONS(8417), + [aux_sym_on_goto_statement_token1] = ACTIONS(8415), + [aux_sym_on_goto_statement_token2] = ACTIONS(8415), + [aux_sym_on_error_statement_token2] = ACTIONS(8415), + [sym__ambiguous_redim_statement] = ACTIONS(8417), + [aux_sym_erase_statement_token1] = ACTIONS(8415), + [aux_sym_open_statement_token1] = ACTIONS(8415), + [aux_sym_file_mode_token2] = ACTIONS(8415), + [aux_sym_file_access_token2] = ACTIONS(8415), + [aux_sym_file_lock_token2] = ACTIONS(8415), + [aux_sym_print_statement_token1] = ACTIONS(8415), + [anon_sym_PLUS] = ACTIONS(8417), + [anon_sym_DASH] = ACTIONS(8415), + [anon_sym_QMARK] = ACTIONS(8417), + [aux_sym_close_statement_token1] = ACTIONS(8415), + [aux_sym_put_statement_token1] = ACTIONS(8415), + [aux_sym_unlock_statement_token1] = ACTIONS(8415), + [aux_sym_seek_statement_token1] = ACTIONS(8415), + [sym_reset_statement] = ACTIONS(8415), + [aux_sym_raise_event_statement_token1] = ACTIONS(8415), + [sym_stop_statement] = ACTIONS(8415), + [sym_beep_statement] = ACTIONS(8415), + [aux_sym_unload_statement_token1] = ACTIONS(8415), + [aux_sym_def_type_statement_token1] = ACTIONS(8415), + [aux_sym_def_type_statement_token2] = ACTIONS(8415), + [aux_sym_def_type_statement_token3] = ACTIONS(8415), + [aux_sym_def_type_statement_token4] = ACTIONS(8415), + [aux_sym_def_type_statement_token5] = ACTIONS(8415), + [aux_sym_def_type_statement_token6] = ACTIONS(8415), + [aux_sym_def_type_statement_token7] = ACTIONS(8415), + [aux_sym_def_type_statement_token8] = ACTIONS(8415), + [aux_sym_def_type_statement_token9] = ACTIONS(8415), + [aux_sym_def_type_statement_token10] = ACTIONS(8415), + [aux_sym_def_type_statement_token11] = ACTIONS(8415), + [aux_sym_def_type_statement_token12] = ACTIONS(8415), + [aux_sym_def_type_statement_token13] = ACTIONS(8415), + [aux_sym_def_type_statement_token14] = ACTIONS(8415), + [aux_sym_call_statement_token1] = ACTIONS(8415), + [sym__ambiguous_call_statement] = ACTIONS(8415), + [aux_sym_addressof_expression_token1] = ACTIONS(8415), + [aux_sym_type_of_expression_token1] = ACTIONS(8415), + [aux_sym_unary_expression_token1] = ACTIONS(8415), + [sym_string_literal] = ACTIONS(8417), + [sym_number_literal] = ACTIONS(8417), + [aux_sym_boolean_literal_token1] = ACTIONS(8415), + [aux_sym_boolean_literal_token2] = ACTIONS(8415), + [sym_nothing_literal] = ACTIONS(8415), + [sym_null_literal] = ACTIONS(8415), + [sym_empty_literal] = ACTIONS(8415), + [sym_date_literal] = ACTIONS(8417), + [anon_sym_POUND] = ACTIONS(8415), + }, + [STATE(4129)] = { + [sym_do_condition] = STATE(4496), + [sym_identifier] = ACTIONS(8419), + [sym_newline] = ACTIONS(8421), + [anon_sym_COLON] = ACTIONS(8421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8419), + [aux_sym_frm_property_statement_token1] = ACTIONS(8419), + [anon_sym_DOT] = ACTIONS(8419), + [anon_sym_BANG] = ACTIONS(8421), + [aux_sym__attribute_identifier_token1] = ACTIONS(8419), + [aux_sym_option_statement_token3] = ACTIONS(8419), + [aux_sym_type_declaration_token1] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8419), + [aux_sym_enum_declaration_token1] = ACTIONS(8419), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8419), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8419), + [aux_sym_declare_function_statement_token1] = ACTIONS(8419), + [aux_sym_preprocessor_const_token1] = ACTIONS(8419), + [aux_sym__property_get_header_token1] = ACTIONS(8419), + [aux_sym_event_declaration_token1] = ACTIONS(8419), + [sym_static_modifier] = ACTIONS(8419), + [sym__dim_keyword] = ACTIONS(8419), + [sym__redim_keyword] = ACTIONS(8419), + [aux_sym_get_accessor_token1] = ACTIONS(8419), + [aux_sym_set_accessor_token1] = ACTIONS(8419), + [aux_sym_const_declaration_token1] = ACTIONS(8419), + [anon_sym_LPAREN] = ACTIONS(8421), + [aux_sym_as_type_clause_token2] = ACTIONS(8419), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8419), + [aux_sym_visibility_token1] = ACTIONS(8419), + [aux_sym_visibility_token2] = ACTIONS(8419), + [aux_sym_elseif_fragment_token1] = ACTIONS(8419), + [aux_sym_else_fragment_token1] = ACTIONS(8419), + [aux_sym_select_statement_token1] = ACTIONS(8419), + [aux_sym__for_header_token1] = ACTIONS(8419), + [aux_sym_do_statement_token1] = ACTIONS(8419), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8419), + [aux_sym_exit_statement_token1] = ACTIONS(8419), + [sym_end_statement] = ACTIONS(8421), + [aux_sym_on_goto_statement_token1] = ACTIONS(8419), + [aux_sym_on_goto_statement_token2] = ACTIONS(8419), + [aux_sym_on_error_statement_token2] = ACTIONS(8419), + [sym__ambiguous_redim_statement] = ACTIONS(8421), + [aux_sym_erase_statement_token1] = ACTIONS(8419), + [aux_sym_open_statement_token1] = ACTIONS(8419), + [aux_sym_file_mode_token2] = ACTIONS(8419), + [aux_sym_file_access_token2] = ACTIONS(8419), + [aux_sym_file_lock_token2] = ACTIONS(8419), + [aux_sym_print_statement_token1] = ACTIONS(8419), + [anon_sym_PLUS] = ACTIONS(8421), + [anon_sym_DASH] = ACTIONS(8419), + [anon_sym_QMARK] = ACTIONS(8421), + [aux_sym_close_statement_token1] = ACTIONS(8419), + [aux_sym_put_statement_token1] = ACTIONS(8419), + [aux_sym_unlock_statement_token1] = ACTIONS(8419), + [aux_sym_seek_statement_token1] = ACTIONS(8419), + [sym_reset_statement] = ACTIONS(8419), + [aux_sym_raise_event_statement_token1] = ACTIONS(8419), + [sym_stop_statement] = ACTIONS(8419), + [sym_beep_statement] = ACTIONS(8419), + [aux_sym_unload_statement_token1] = ACTIONS(8419), + [aux_sym_def_type_statement_token1] = ACTIONS(8419), + [aux_sym_def_type_statement_token2] = ACTIONS(8419), + [aux_sym_def_type_statement_token3] = ACTIONS(8419), + [aux_sym_def_type_statement_token4] = ACTIONS(8419), + [aux_sym_def_type_statement_token5] = ACTIONS(8419), + [aux_sym_def_type_statement_token6] = ACTIONS(8419), + [aux_sym_def_type_statement_token7] = ACTIONS(8419), + [aux_sym_def_type_statement_token8] = ACTIONS(8419), + [aux_sym_def_type_statement_token9] = ACTIONS(8419), + [aux_sym_def_type_statement_token10] = ACTIONS(8419), + [aux_sym_def_type_statement_token11] = ACTIONS(8419), + [aux_sym_def_type_statement_token12] = ACTIONS(8419), + [aux_sym_def_type_statement_token13] = ACTIONS(8419), + [aux_sym_def_type_statement_token14] = ACTIONS(8419), + [aux_sym_call_statement_token1] = ACTIONS(8419), + [sym__ambiguous_call_statement] = ACTIONS(8419), + [aux_sym_addressof_expression_token1] = ACTIONS(8419), + [aux_sym_type_of_expression_token1] = ACTIONS(8419), + [aux_sym_unary_expression_token1] = ACTIONS(8419), + [sym_string_literal] = ACTIONS(8421), + [sym_number_literal] = ACTIONS(8421), + [aux_sym_boolean_literal_token1] = ACTIONS(8419), + [aux_sym_boolean_literal_token2] = ACTIONS(8419), + [sym_nothing_literal] = ACTIONS(8419), + [sym_null_literal] = ACTIONS(8419), + [sym_empty_literal] = ACTIONS(8419), + [sym_date_literal] = ACTIONS(8421), + [anon_sym_POUND] = ACTIONS(8419), + }, + [STATE(4130)] = { + [sym_do_condition] = STATE(4498), + [sym_identifier] = ACTIONS(8423), + [sym_newline] = ACTIONS(8425), + [anon_sym_COLON] = ACTIONS(8425), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8423), + [aux_sym_frm_property_statement_token1] = ACTIONS(8423), + [anon_sym_DOT] = ACTIONS(8423), + [anon_sym_BANG] = ACTIONS(8425), + [aux_sym__attribute_identifier_token1] = ACTIONS(8423), + [aux_sym_option_statement_token3] = ACTIONS(8423), + [aux_sym_type_declaration_token1] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8423), + [aux_sym_enum_declaration_token1] = ACTIONS(8423), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8423), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8423), + [aux_sym_declare_function_statement_token1] = ACTIONS(8423), + [aux_sym_preprocessor_const_token1] = ACTIONS(8423), + [aux_sym__property_get_header_token1] = ACTIONS(8423), + [aux_sym_event_declaration_token1] = ACTIONS(8423), + [sym_static_modifier] = ACTIONS(8423), + [sym__dim_keyword] = ACTIONS(8423), + [sym__redim_keyword] = ACTIONS(8423), + [aux_sym_get_accessor_token1] = ACTIONS(8423), + [aux_sym_set_accessor_token1] = ACTIONS(8423), + [aux_sym_const_declaration_token1] = ACTIONS(8423), + [anon_sym_LPAREN] = ACTIONS(8425), + [aux_sym_as_type_clause_token2] = ACTIONS(8423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8423), + [aux_sym_visibility_token1] = ACTIONS(8423), + [aux_sym_visibility_token2] = ACTIONS(8423), + [aux_sym_elseif_fragment_token1] = ACTIONS(8423), + [aux_sym_else_fragment_token1] = ACTIONS(8423), + [aux_sym_select_statement_token1] = ACTIONS(8423), + [aux_sym__for_header_token1] = ACTIONS(8423), + [aux_sym_do_statement_token1] = ACTIONS(8423), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8423), + [aux_sym_exit_statement_token1] = ACTIONS(8423), + [sym_end_statement] = ACTIONS(8425), + [aux_sym_on_goto_statement_token1] = ACTIONS(8423), + [aux_sym_on_goto_statement_token2] = ACTIONS(8423), + [aux_sym_on_error_statement_token2] = ACTIONS(8423), + [sym__ambiguous_redim_statement] = ACTIONS(8425), + [aux_sym_erase_statement_token1] = ACTIONS(8423), + [aux_sym_open_statement_token1] = ACTIONS(8423), + [aux_sym_file_mode_token2] = ACTIONS(8423), + [aux_sym_file_access_token2] = ACTIONS(8423), + [aux_sym_file_lock_token2] = ACTIONS(8423), + [aux_sym_print_statement_token1] = ACTIONS(8423), + [anon_sym_PLUS] = ACTIONS(8425), + [anon_sym_DASH] = ACTIONS(8423), + [anon_sym_QMARK] = ACTIONS(8425), + [aux_sym_close_statement_token1] = ACTIONS(8423), + [aux_sym_put_statement_token1] = ACTIONS(8423), + [aux_sym_unlock_statement_token1] = ACTIONS(8423), + [aux_sym_seek_statement_token1] = ACTIONS(8423), + [sym_reset_statement] = ACTIONS(8423), + [aux_sym_raise_event_statement_token1] = ACTIONS(8423), + [sym_stop_statement] = ACTIONS(8423), + [sym_beep_statement] = ACTIONS(8423), + [aux_sym_unload_statement_token1] = ACTIONS(8423), + [aux_sym_def_type_statement_token1] = ACTIONS(8423), + [aux_sym_def_type_statement_token2] = ACTIONS(8423), + [aux_sym_def_type_statement_token3] = ACTIONS(8423), + [aux_sym_def_type_statement_token4] = ACTIONS(8423), + [aux_sym_def_type_statement_token5] = ACTIONS(8423), + [aux_sym_def_type_statement_token6] = ACTIONS(8423), + [aux_sym_def_type_statement_token7] = ACTIONS(8423), + [aux_sym_def_type_statement_token8] = ACTIONS(8423), + [aux_sym_def_type_statement_token9] = ACTIONS(8423), + [aux_sym_def_type_statement_token10] = ACTIONS(8423), + [aux_sym_def_type_statement_token11] = ACTIONS(8423), + [aux_sym_def_type_statement_token12] = ACTIONS(8423), + [aux_sym_def_type_statement_token13] = ACTIONS(8423), + [aux_sym_def_type_statement_token14] = ACTIONS(8423), + [aux_sym_call_statement_token1] = ACTIONS(8423), + [sym__ambiguous_call_statement] = ACTIONS(8423), + [aux_sym_addressof_expression_token1] = ACTIONS(8423), + [aux_sym_type_of_expression_token1] = ACTIONS(8423), + [aux_sym_unary_expression_token1] = ACTIONS(8423), + [sym_string_literal] = ACTIONS(8425), + [sym_number_literal] = ACTIONS(8425), + [aux_sym_boolean_literal_token1] = ACTIONS(8423), + [aux_sym_boolean_literal_token2] = ACTIONS(8423), + [sym_nothing_literal] = ACTIONS(8423), + [sym_null_literal] = ACTIONS(8423), + [sym_empty_literal] = ACTIONS(8423), + [sym_date_literal] = ACTIONS(8425), + [anon_sym_POUND] = ACTIONS(8423), + }, + [STATE(4131)] = { + [sym_do_condition] = STATE(4499), + [sym_identifier] = ACTIONS(8427), + [sym_newline] = ACTIONS(8429), + [anon_sym_COLON] = ACTIONS(8429), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8427), + [aux_sym_frm_property_statement_token1] = ACTIONS(8427), + [anon_sym_DOT] = ACTIONS(8427), + [anon_sym_BANG] = ACTIONS(8429), + [aux_sym__attribute_identifier_token1] = ACTIONS(8427), + [aux_sym_option_statement_token3] = ACTIONS(8427), + [aux_sym_type_declaration_token1] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8427), + [aux_sym_enum_declaration_token1] = ACTIONS(8427), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8427), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8427), + [aux_sym_declare_function_statement_token1] = ACTIONS(8427), + [aux_sym_preprocessor_const_token1] = ACTIONS(8427), + [aux_sym__property_get_header_token1] = ACTIONS(8427), + [aux_sym_event_declaration_token1] = ACTIONS(8427), + [sym_static_modifier] = ACTIONS(8427), + [sym__dim_keyword] = ACTIONS(8427), + [sym__redim_keyword] = ACTIONS(8427), + [aux_sym_get_accessor_token1] = ACTIONS(8427), + [aux_sym_set_accessor_token1] = ACTIONS(8427), + [aux_sym_const_declaration_token1] = ACTIONS(8427), + [anon_sym_LPAREN] = ACTIONS(8429), + [aux_sym_as_type_clause_token2] = ACTIONS(8427), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8427), + [aux_sym_visibility_token1] = ACTIONS(8427), + [aux_sym_visibility_token2] = ACTIONS(8427), + [aux_sym_elseif_fragment_token1] = ACTIONS(8427), + [aux_sym_else_fragment_token1] = ACTIONS(8427), + [aux_sym_select_statement_token1] = ACTIONS(8427), + [aux_sym__for_header_token1] = ACTIONS(8427), + [aux_sym_do_statement_token1] = ACTIONS(8427), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8427), + [aux_sym_exit_statement_token1] = ACTIONS(8427), + [sym_end_statement] = ACTIONS(8429), + [aux_sym_on_goto_statement_token1] = ACTIONS(8427), + [aux_sym_on_goto_statement_token2] = ACTIONS(8427), + [aux_sym_on_error_statement_token2] = ACTIONS(8427), + [sym__ambiguous_redim_statement] = ACTIONS(8429), + [aux_sym_erase_statement_token1] = ACTIONS(8427), + [aux_sym_open_statement_token1] = ACTIONS(8427), + [aux_sym_file_mode_token2] = ACTIONS(8427), + [aux_sym_file_access_token2] = ACTIONS(8427), + [aux_sym_file_lock_token2] = ACTIONS(8427), + [aux_sym_print_statement_token1] = ACTIONS(8427), + [anon_sym_PLUS] = ACTIONS(8429), + [anon_sym_DASH] = ACTIONS(8427), + [anon_sym_QMARK] = ACTIONS(8429), + [aux_sym_close_statement_token1] = ACTIONS(8427), + [aux_sym_put_statement_token1] = ACTIONS(8427), + [aux_sym_unlock_statement_token1] = ACTIONS(8427), + [aux_sym_seek_statement_token1] = ACTIONS(8427), + [sym_reset_statement] = ACTIONS(8427), + [aux_sym_raise_event_statement_token1] = ACTIONS(8427), + [sym_stop_statement] = ACTIONS(8427), + [sym_beep_statement] = ACTIONS(8427), + [aux_sym_unload_statement_token1] = ACTIONS(8427), + [aux_sym_def_type_statement_token1] = ACTIONS(8427), + [aux_sym_def_type_statement_token2] = ACTIONS(8427), + [aux_sym_def_type_statement_token3] = ACTIONS(8427), + [aux_sym_def_type_statement_token4] = ACTIONS(8427), + [aux_sym_def_type_statement_token5] = ACTIONS(8427), + [aux_sym_def_type_statement_token6] = ACTIONS(8427), + [aux_sym_def_type_statement_token7] = ACTIONS(8427), + [aux_sym_def_type_statement_token8] = ACTIONS(8427), + [aux_sym_def_type_statement_token9] = ACTIONS(8427), + [aux_sym_def_type_statement_token10] = ACTIONS(8427), + [aux_sym_def_type_statement_token11] = ACTIONS(8427), + [aux_sym_def_type_statement_token12] = ACTIONS(8427), + [aux_sym_def_type_statement_token13] = ACTIONS(8427), + [aux_sym_def_type_statement_token14] = ACTIONS(8427), + [aux_sym_call_statement_token1] = ACTIONS(8427), + [sym__ambiguous_call_statement] = ACTIONS(8427), + [aux_sym_addressof_expression_token1] = ACTIONS(8427), + [aux_sym_type_of_expression_token1] = ACTIONS(8427), + [aux_sym_unary_expression_token1] = ACTIONS(8427), + [sym_string_literal] = ACTIONS(8429), + [sym_number_literal] = ACTIONS(8429), + [aux_sym_boolean_literal_token1] = ACTIONS(8427), + [aux_sym_boolean_literal_token2] = ACTIONS(8427), + [sym_nothing_literal] = ACTIONS(8427), + [sym_null_literal] = ACTIONS(8427), + [sym_empty_literal] = ACTIONS(8427), + [sym_date_literal] = ACTIONS(8429), + [anon_sym_POUND] = ACTIONS(8427), + }, + [STATE(4132)] = { + [sym_do_condition] = STATE(4500), + [sym_identifier] = ACTIONS(8431), + [sym_newline] = ACTIONS(8433), + [anon_sym_COLON] = ACTIONS(8433), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8431), + [aux_sym_frm_property_statement_token1] = ACTIONS(8431), + [anon_sym_DOT] = ACTIONS(8431), + [anon_sym_BANG] = ACTIONS(8433), + [aux_sym__attribute_identifier_token1] = ACTIONS(8431), + [aux_sym_option_statement_token3] = ACTIONS(8431), + [aux_sym_type_declaration_token1] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8431), + [aux_sym_enum_declaration_token1] = ACTIONS(8431), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8431), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8431), + [aux_sym_declare_function_statement_token1] = ACTIONS(8431), + [aux_sym_preprocessor_const_token1] = ACTIONS(8431), + [aux_sym__property_get_header_token1] = ACTIONS(8431), + [aux_sym_event_declaration_token1] = ACTIONS(8431), + [sym_static_modifier] = ACTIONS(8431), + [sym__dim_keyword] = ACTIONS(8431), + [sym__redim_keyword] = ACTIONS(8431), + [aux_sym_get_accessor_token1] = ACTIONS(8431), + [aux_sym_set_accessor_token1] = ACTIONS(8431), + [aux_sym_const_declaration_token1] = ACTIONS(8431), + [anon_sym_LPAREN] = ACTIONS(8433), + [aux_sym_as_type_clause_token2] = ACTIONS(8431), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8431), + [aux_sym_visibility_token1] = ACTIONS(8431), + [aux_sym_visibility_token2] = ACTIONS(8431), + [aux_sym_elseif_fragment_token1] = ACTIONS(8431), + [aux_sym_else_fragment_token1] = ACTIONS(8431), + [aux_sym_select_statement_token1] = ACTIONS(8431), + [aux_sym__for_header_token1] = ACTIONS(8431), + [aux_sym_do_statement_token1] = ACTIONS(8431), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8431), + [aux_sym_exit_statement_token1] = ACTIONS(8431), + [sym_end_statement] = ACTIONS(8433), + [aux_sym_on_goto_statement_token1] = ACTIONS(8431), + [aux_sym_on_goto_statement_token2] = ACTIONS(8431), + [aux_sym_on_error_statement_token2] = ACTIONS(8431), + [sym__ambiguous_redim_statement] = ACTIONS(8433), + [aux_sym_erase_statement_token1] = ACTIONS(8431), + [aux_sym_open_statement_token1] = ACTIONS(8431), + [aux_sym_file_mode_token2] = ACTIONS(8431), + [aux_sym_file_access_token2] = ACTIONS(8431), + [aux_sym_file_lock_token2] = ACTIONS(8431), + [aux_sym_print_statement_token1] = ACTIONS(8431), + [anon_sym_PLUS] = ACTIONS(8433), + [anon_sym_DASH] = ACTIONS(8431), + [anon_sym_QMARK] = ACTIONS(8433), + [aux_sym_close_statement_token1] = ACTIONS(8431), + [aux_sym_put_statement_token1] = ACTIONS(8431), + [aux_sym_unlock_statement_token1] = ACTIONS(8431), + [aux_sym_seek_statement_token1] = ACTIONS(8431), + [sym_reset_statement] = ACTIONS(8431), + [aux_sym_raise_event_statement_token1] = ACTIONS(8431), + [sym_stop_statement] = ACTIONS(8431), + [sym_beep_statement] = ACTIONS(8431), + [aux_sym_unload_statement_token1] = ACTIONS(8431), + [aux_sym_def_type_statement_token1] = ACTIONS(8431), + [aux_sym_def_type_statement_token2] = ACTIONS(8431), + [aux_sym_def_type_statement_token3] = ACTIONS(8431), + [aux_sym_def_type_statement_token4] = ACTIONS(8431), + [aux_sym_def_type_statement_token5] = ACTIONS(8431), + [aux_sym_def_type_statement_token6] = ACTIONS(8431), + [aux_sym_def_type_statement_token7] = ACTIONS(8431), + [aux_sym_def_type_statement_token8] = ACTIONS(8431), + [aux_sym_def_type_statement_token9] = ACTIONS(8431), + [aux_sym_def_type_statement_token10] = ACTIONS(8431), + [aux_sym_def_type_statement_token11] = ACTIONS(8431), + [aux_sym_def_type_statement_token12] = ACTIONS(8431), + [aux_sym_def_type_statement_token13] = ACTIONS(8431), + [aux_sym_def_type_statement_token14] = ACTIONS(8431), + [aux_sym_call_statement_token1] = ACTIONS(8431), + [sym__ambiguous_call_statement] = ACTIONS(8431), + [aux_sym_addressof_expression_token1] = ACTIONS(8431), + [aux_sym_type_of_expression_token1] = ACTIONS(8431), + [aux_sym_unary_expression_token1] = ACTIONS(8431), + [sym_string_literal] = ACTIONS(8433), + [sym_number_literal] = ACTIONS(8433), + [aux_sym_boolean_literal_token1] = ACTIONS(8431), + [aux_sym_boolean_literal_token2] = ACTIONS(8431), + [sym_nothing_literal] = ACTIONS(8431), + [sym_null_literal] = ACTIONS(8431), + [sym_empty_literal] = ACTIONS(8431), + [sym_date_literal] = ACTIONS(8433), + [anon_sym_POUND] = ACTIONS(8431), + }, + [STATE(4133)] = { + [aux_sym__argument_sequence_repeat2] = STATE(4190), + [sym_identifier] = ACTIONS(8435), + [sym_newline] = ACTIONS(8437), + [anon_sym_COLON] = ACTIONS(8437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8435), + [aux_sym_frm_property_statement_token1] = ACTIONS(8435), + [anon_sym_DOT] = ACTIONS(8435), + [anon_sym_BANG] = ACTIONS(8437), + [aux_sym__attribute_identifier_token1] = ACTIONS(8435), + [aux_sym_option_statement_token3] = ACTIONS(8435), + [aux_sym_type_declaration_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8435), + [aux_sym_enum_declaration_token1] = ACTIONS(8435), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8435), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8435), + [aux_sym_declare_function_statement_token1] = ACTIONS(8435), + [aux_sym_preprocessor_const_token1] = ACTIONS(8435), + [aux_sym__property_get_header_token1] = ACTIONS(8435), + [aux_sym_event_declaration_token1] = ACTIONS(8435), + [sym_static_modifier] = ACTIONS(8435), + [sym__dim_keyword] = ACTIONS(8435), + [sym__redim_keyword] = ACTIONS(8435), + [aux_sym_get_accessor_token1] = ACTIONS(8435), + [aux_sym_set_accessor_token1] = ACTIONS(8435), + [anon_sym_COMMA] = ACTIONS(4230), + [aux_sym_const_declaration_token1] = ACTIONS(8435), + [anon_sym_LPAREN] = ACTIONS(8437), + [aux_sym_as_type_clause_token2] = ACTIONS(8435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8435), + [aux_sym_visibility_token1] = ACTIONS(8435), + [aux_sym_visibility_token2] = ACTIONS(8435), + [aux_sym_elseif_fragment_token1] = ACTIONS(8435), + [aux_sym_else_fragment_token1] = ACTIONS(8435), + [aux_sym_select_statement_token1] = ACTIONS(8435), + [aux_sym__for_header_token1] = ACTIONS(8435), + [aux_sym_do_statement_token1] = ACTIONS(8435), + [aux_sym_do_condition_token1] = ACTIONS(8435), + [aux_sym_with_statement_token1] = ACTIONS(8435), + [aux_sym_exit_statement_token1] = ACTIONS(8435), + [sym_end_statement] = ACTIONS(8437), + [aux_sym_on_goto_statement_token1] = ACTIONS(8435), + [aux_sym_on_goto_statement_token2] = ACTIONS(8435), + [aux_sym_on_error_statement_token2] = ACTIONS(8435), + [sym__ambiguous_redim_statement] = ACTIONS(8437), + [aux_sym_erase_statement_token1] = ACTIONS(8435), + [aux_sym_open_statement_token1] = ACTIONS(8435), + [aux_sym_file_mode_token2] = ACTIONS(8435), + [aux_sym_file_access_token2] = ACTIONS(8435), + [aux_sym_file_lock_token2] = ACTIONS(8435), + [aux_sym_print_statement_token1] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(8437), + [anon_sym_DASH] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8437), + [aux_sym_close_statement_token1] = ACTIONS(8435), + [aux_sym_put_statement_token1] = ACTIONS(8435), + [aux_sym_unlock_statement_token1] = ACTIONS(8435), + [aux_sym_seek_statement_token1] = ACTIONS(8435), + [sym_reset_statement] = ACTIONS(8435), + [aux_sym_raise_event_statement_token1] = ACTIONS(8435), + [sym_stop_statement] = ACTIONS(8435), + [sym_beep_statement] = ACTIONS(8435), + [aux_sym_unload_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token2] = ACTIONS(8435), + [aux_sym_def_type_statement_token3] = ACTIONS(8435), + [aux_sym_def_type_statement_token4] = ACTIONS(8435), + [aux_sym_def_type_statement_token5] = ACTIONS(8435), + [aux_sym_def_type_statement_token6] = ACTIONS(8435), + [aux_sym_def_type_statement_token7] = ACTIONS(8435), + [aux_sym_def_type_statement_token8] = ACTIONS(8435), + [aux_sym_def_type_statement_token9] = ACTIONS(8435), + [aux_sym_def_type_statement_token10] = ACTIONS(8435), + [aux_sym_def_type_statement_token11] = ACTIONS(8435), + [aux_sym_def_type_statement_token12] = ACTIONS(8435), + [aux_sym_def_type_statement_token13] = ACTIONS(8435), + [aux_sym_def_type_statement_token14] = ACTIONS(8435), + [aux_sym_call_statement_token1] = ACTIONS(8435), + [sym__ambiguous_call_statement] = ACTIONS(8435), + [aux_sym_addressof_expression_token1] = ACTIONS(8435), + [aux_sym_type_of_expression_token1] = ACTIONS(8435), + [aux_sym_unary_expression_token1] = ACTIONS(8435), + [sym_string_literal] = ACTIONS(8437), + [sym_number_literal] = ACTIONS(8437), + [aux_sym_boolean_literal_token1] = ACTIONS(8435), + [aux_sym_boolean_literal_token2] = ACTIONS(8435), + [sym_nothing_literal] = ACTIONS(8435), + [sym_null_literal] = ACTIONS(8435), + [sym_empty_literal] = ACTIONS(8435), + [sym_date_literal] = ACTIONS(8437), + [anon_sym_POUND] = ACTIONS(8435), + }, + [STATE(4134)] = { + [aux_sym__argument_sequence_repeat2] = STATE(4139), + [sym_identifier] = ACTIONS(8435), + [sym_newline] = ACTIONS(8437), + [anon_sym_COLON] = ACTIONS(8437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8435), + [aux_sym_frm_property_statement_token1] = ACTIONS(8435), + [anon_sym_DOT] = ACTIONS(8435), + [anon_sym_BANG] = ACTIONS(8437), + [aux_sym__attribute_identifier_token1] = ACTIONS(8435), + [aux_sym_option_statement_token3] = ACTIONS(8435), + [aux_sym_type_declaration_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8435), + [aux_sym_enum_declaration_token1] = ACTIONS(8435), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8435), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8435), + [aux_sym_declare_function_statement_token1] = ACTIONS(8435), + [aux_sym_preprocessor_const_token1] = ACTIONS(8435), + [aux_sym__property_get_header_token1] = ACTIONS(8435), + [aux_sym_event_declaration_token1] = ACTIONS(8435), + [sym_static_modifier] = ACTIONS(8435), + [sym__dim_keyword] = ACTIONS(8435), + [sym__redim_keyword] = ACTIONS(8435), + [aux_sym_get_accessor_token1] = ACTIONS(8435), + [aux_sym_set_accessor_token1] = ACTIONS(8435), + [anon_sym_COMMA] = ACTIONS(4230), + [aux_sym_const_declaration_token1] = ACTIONS(8435), + [anon_sym_LPAREN] = ACTIONS(8437), + [aux_sym_as_type_clause_token2] = ACTIONS(8435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8435), + [aux_sym_visibility_token1] = ACTIONS(8435), + [aux_sym_visibility_token2] = ACTIONS(8435), + [aux_sym_elseif_fragment_token1] = ACTIONS(8435), + [aux_sym_else_fragment_token1] = ACTIONS(8435), + [aux_sym_select_statement_token1] = ACTIONS(8435), + [aux_sym__for_header_token1] = ACTIONS(8435), + [aux_sym_do_statement_token1] = ACTIONS(8435), + [aux_sym_do_condition_token1] = ACTIONS(8435), + [aux_sym_with_statement_token1] = ACTIONS(8435), + [aux_sym_exit_statement_token1] = ACTIONS(8435), + [sym_end_statement] = ACTIONS(8437), + [aux_sym_on_goto_statement_token1] = ACTIONS(8435), + [aux_sym_on_goto_statement_token2] = ACTIONS(8435), + [aux_sym_on_error_statement_token2] = ACTIONS(8435), + [sym__ambiguous_redim_statement] = ACTIONS(8437), + [aux_sym_erase_statement_token1] = ACTIONS(8435), + [aux_sym_open_statement_token1] = ACTIONS(8435), + [aux_sym_file_mode_token2] = ACTIONS(8435), + [aux_sym_file_access_token2] = ACTIONS(8435), + [aux_sym_file_lock_token2] = ACTIONS(8435), + [aux_sym_print_statement_token1] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(8437), + [anon_sym_DASH] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8437), + [aux_sym_close_statement_token1] = ACTIONS(8435), + [aux_sym_put_statement_token1] = ACTIONS(8435), + [aux_sym_unlock_statement_token1] = ACTIONS(8435), + [aux_sym_seek_statement_token1] = ACTIONS(8435), + [sym_reset_statement] = ACTIONS(8435), + [aux_sym_raise_event_statement_token1] = ACTIONS(8435), + [sym_stop_statement] = ACTIONS(8435), + [sym_beep_statement] = ACTIONS(8435), + [aux_sym_unload_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token2] = ACTIONS(8435), + [aux_sym_def_type_statement_token3] = ACTIONS(8435), + [aux_sym_def_type_statement_token4] = ACTIONS(8435), + [aux_sym_def_type_statement_token5] = ACTIONS(8435), + [aux_sym_def_type_statement_token6] = ACTIONS(8435), + [aux_sym_def_type_statement_token7] = ACTIONS(8435), + [aux_sym_def_type_statement_token8] = ACTIONS(8435), + [aux_sym_def_type_statement_token9] = ACTIONS(8435), + [aux_sym_def_type_statement_token10] = ACTIONS(8435), + [aux_sym_def_type_statement_token11] = ACTIONS(8435), + [aux_sym_def_type_statement_token12] = ACTIONS(8435), + [aux_sym_def_type_statement_token13] = ACTIONS(8435), + [aux_sym_def_type_statement_token14] = ACTIONS(8435), + [aux_sym_call_statement_token1] = ACTIONS(8435), + [sym__ambiguous_call_statement] = ACTIONS(8435), + [aux_sym_addressof_expression_token1] = ACTIONS(8435), + [aux_sym_type_of_expression_token1] = ACTIONS(8435), + [aux_sym_unary_expression_token1] = ACTIONS(8435), + [sym_string_literal] = ACTIONS(8437), + [sym_number_literal] = ACTIONS(8437), + [aux_sym_boolean_literal_token1] = ACTIONS(8435), + [aux_sym_boolean_literal_token2] = ACTIONS(8435), + [sym_nothing_literal] = ACTIONS(8435), + [sym_null_literal] = ACTIONS(8435), + [sym_empty_literal] = ACTIONS(8435), + [sym_date_literal] = ACTIONS(8437), + [anon_sym_POUND] = ACTIONS(8435), + }, + [STATE(4135)] = { + [sym_identifier] = ACTIONS(9684), + [sym_newline] = ACTIONS(9686), + [anon_sym_COLON] = ACTIONS(9686), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9684), + [aux_sym_frm_property_statement_token1] = ACTIONS(9684), + [anon_sym_DOT] = ACTIONS(9684), + [anon_sym_BANG] = ACTIONS(9686), + [aux_sym__attribute_identifier_token1] = ACTIONS(9684), + [aux_sym_option_statement_token3] = ACTIONS(9684), + [aux_sym_type_declaration_token1] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9684), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9684), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9684), + [aux_sym_enum_declaration_token1] = ACTIONS(9684), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9684), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9684), + [aux_sym_declare_function_statement_token1] = ACTIONS(9684), + [aux_sym_preprocessor_const_token1] = ACTIONS(9684), + [aux_sym__property_get_header_token1] = ACTIONS(9684), + [aux_sym_event_declaration_token1] = ACTIONS(9684), + [sym_static_modifier] = ACTIONS(9684), + [sym__dim_keyword] = ACTIONS(9684), + [sym__redim_keyword] = ACTIONS(9684), + [aux_sym_get_accessor_token1] = ACTIONS(9684), + [aux_sym_set_accessor_token1] = ACTIONS(9684), + [aux_sym_const_declaration_token1] = ACTIONS(9684), + [anon_sym_LPAREN] = ACTIONS(9686), + [aux_sym_as_type_clause_token2] = ACTIONS(9684), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9684), + [aux_sym_visibility_token1] = ACTIONS(9684), + [aux_sym_visibility_token2] = ACTIONS(9684), + [aux_sym_elseif_fragment_token1] = ACTIONS(9684), + [aux_sym_else_fragment_token1] = ACTIONS(9684), + [aux_sym_select_statement_token1] = ACTIONS(9684), + [aux_sym__for_header_token1] = ACTIONS(9684), + [aux_sym_do_statement_token1] = ACTIONS(9684), + [aux_sym_do_condition_token1] = ACTIONS(9684), + [aux_sym_with_statement_token1] = ACTIONS(9684), + [aux_sym_exit_statement_token1] = ACTIONS(9684), + [sym_end_statement] = ACTIONS(9686), + [aux_sym_on_goto_statement_token1] = ACTIONS(9684), + [aux_sym_on_goto_statement_token2] = ACTIONS(9684), + [aux_sym_on_error_statement_token2] = ACTIONS(9684), + [sym__ambiguous_redim_statement] = ACTIONS(9686), + [aux_sym_erase_statement_token1] = ACTIONS(9684), + [aux_sym_open_statement_token1] = ACTIONS(9684), + [aux_sym_file_mode_token2] = ACTIONS(9684), + [aux_sym_file_access_token2] = ACTIONS(9684), + [aux_sym_file_lock_token2] = ACTIONS(9684), + [aux_sym_print_statement_token1] = ACTIONS(9684), + [anon_sym_PLUS] = ACTIONS(9686), + [anon_sym_DASH] = ACTIONS(9684), + [anon_sym_QMARK] = ACTIONS(9686), + [aux_sym_close_statement_token1] = ACTIONS(9684), + [aux_sym_put_statement_token1] = ACTIONS(9684), + [aux_sym_unlock_statement_token1] = ACTIONS(9684), + [aux_sym_seek_statement_token1] = ACTIONS(9684), + [sym_reset_statement] = ACTIONS(9684), + [aux_sym_raise_event_statement_token1] = ACTIONS(9684), + [sym_stop_statement] = ACTIONS(9684), + [sym_beep_statement] = ACTIONS(9684), + [aux_sym_unload_statement_token1] = ACTIONS(9684), + [aux_sym_def_type_statement_token1] = ACTIONS(9684), + [aux_sym_def_type_statement_token2] = ACTIONS(9684), + [aux_sym_def_type_statement_token3] = ACTIONS(9684), + [aux_sym_def_type_statement_token4] = ACTIONS(9684), + [aux_sym_def_type_statement_token5] = ACTIONS(9684), + [aux_sym_def_type_statement_token6] = ACTIONS(9684), + [aux_sym_def_type_statement_token7] = ACTIONS(9684), + [aux_sym_def_type_statement_token8] = ACTIONS(9684), + [aux_sym_def_type_statement_token9] = ACTIONS(9684), + [aux_sym_def_type_statement_token10] = ACTIONS(9684), + [aux_sym_def_type_statement_token11] = ACTIONS(9684), + [aux_sym_def_type_statement_token12] = ACTIONS(9684), + [aux_sym_def_type_statement_token13] = ACTIONS(9684), + [aux_sym_def_type_statement_token14] = ACTIONS(9684), + [aux_sym_call_statement_token1] = ACTIONS(9684), + [sym__ambiguous_call_statement] = ACTIONS(9684), + [aux_sym_addressof_expression_token1] = ACTIONS(9684), + [aux_sym_type_of_expression_token1] = ACTIONS(9684), + [aux_sym_unary_expression_token1] = ACTIONS(9684), + [sym_string_literal] = ACTIONS(9686), + [sym_number_literal] = ACTIONS(9686), + [aux_sym_boolean_literal_token1] = ACTIONS(9684), + [aux_sym_boolean_literal_token2] = ACTIONS(9684), + [sym_nothing_literal] = ACTIONS(9684), + [sym_null_literal] = ACTIONS(9684), + [sym_empty_literal] = ACTIONS(9684), + [sym_date_literal] = ACTIONS(9686), + [anon_sym_POUND] = ACTIONS(9684), + }, + [STATE(4136)] = { + [sym_do_condition] = STATE(4508), + [sym_identifier] = ACTIONS(8471), + [sym_newline] = ACTIONS(8473), + [anon_sym_COLON] = ACTIONS(8473), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8471), + [aux_sym_frm_property_statement_token1] = ACTIONS(8471), + [anon_sym_DOT] = ACTIONS(8471), + [anon_sym_BANG] = ACTIONS(8473), + [aux_sym__attribute_identifier_token1] = ACTIONS(8471), + [aux_sym_option_statement_token3] = ACTIONS(8471), + [aux_sym_type_declaration_token1] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8471), + [aux_sym_enum_declaration_token1] = ACTIONS(8471), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8471), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8471), + [aux_sym_declare_function_statement_token1] = ACTIONS(8471), + [aux_sym_preprocessor_const_token1] = ACTIONS(8471), + [aux_sym__property_get_header_token1] = ACTIONS(8471), + [aux_sym_event_declaration_token1] = ACTIONS(8471), + [sym_static_modifier] = ACTIONS(8471), + [sym__dim_keyword] = ACTIONS(8471), + [sym__redim_keyword] = ACTIONS(8471), + [aux_sym_get_accessor_token1] = ACTIONS(8471), + [aux_sym_set_accessor_token1] = ACTIONS(8471), + [aux_sym_const_declaration_token1] = ACTIONS(8471), + [anon_sym_LPAREN] = ACTIONS(8473), + [aux_sym_as_type_clause_token2] = ACTIONS(8471), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8471), + [aux_sym_visibility_token1] = ACTIONS(8471), + [aux_sym_visibility_token2] = ACTIONS(8471), + [aux_sym_elseif_fragment_token1] = ACTIONS(8471), + [aux_sym_else_fragment_token1] = ACTIONS(8471), + [aux_sym_select_statement_token1] = ACTIONS(8471), + [aux_sym__for_header_token1] = ACTIONS(8471), + [aux_sym_do_statement_token1] = ACTIONS(8471), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8471), + [aux_sym_exit_statement_token1] = ACTIONS(8471), + [sym_end_statement] = ACTIONS(8473), + [aux_sym_on_goto_statement_token1] = ACTIONS(8471), + [aux_sym_on_goto_statement_token2] = ACTIONS(8471), + [aux_sym_on_error_statement_token2] = ACTIONS(8471), + [sym__ambiguous_redim_statement] = ACTIONS(8473), + [aux_sym_erase_statement_token1] = ACTIONS(8471), + [aux_sym_open_statement_token1] = ACTIONS(8471), + [aux_sym_file_mode_token2] = ACTIONS(8471), + [aux_sym_file_access_token2] = ACTIONS(8471), + [aux_sym_file_lock_token2] = ACTIONS(8471), + [aux_sym_print_statement_token1] = ACTIONS(8471), + [anon_sym_PLUS] = ACTIONS(8473), + [anon_sym_DASH] = ACTIONS(8471), + [anon_sym_QMARK] = ACTIONS(8473), + [aux_sym_close_statement_token1] = ACTIONS(8471), + [aux_sym_put_statement_token1] = ACTIONS(8471), + [aux_sym_unlock_statement_token1] = ACTIONS(8471), + [aux_sym_seek_statement_token1] = ACTIONS(8471), + [sym_reset_statement] = ACTIONS(8471), + [aux_sym_raise_event_statement_token1] = ACTIONS(8471), + [sym_stop_statement] = ACTIONS(8471), + [sym_beep_statement] = ACTIONS(8471), + [aux_sym_unload_statement_token1] = ACTIONS(8471), + [aux_sym_def_type_statement_token1] = ACTIONS(8471), + [aux_sym_def_type_statement_token2] = ACTIONS(8471), + [aux_sym_def_type_statement_token3] = ACTIONS(8471), + [aux_sym_def_type_statement_token4] = ACTIONS(8471), + [aux_sym_def_type_statement_token5] = ACTIONS(8471), + [aux_sym_def_type_statement_token6] = ACTIONS(8471), + [aux_sym_def_type_statement_token7] = ACTIONS(8471), + [aux_sym_def_type_statement_token8] = ACTIONS(8471), + [aux_sym_def_type_statement_token9] = ACTIONS(8471), + [aux_sym_def_type_statement_token10] = ACTIONS(8471), + [aux_sym_def_type_statement_token11] = ACTIONS(8471), + [aux_sym_def_type_statement_token12] = ACTIONS(8471), + [aux_sym_def_type_statement_token13] = ACTIONS(8471), + [aux_sym_def_type_statement_token14] = ACTIONS(8471), + [aux_sym_call_statement_token1] = ACTIONS(8471), + [sym__ambiguous_call_statement] = ACTIONS(8471), + [aux_sym_addressof_expression_token1] = ACTIONS(8471), + [aux_sym_type_of_expression_token1] = ACTIONS(8471), + [aux_sym_unary_expression_token1] = ACTIONS(8471), + [sym_string_literal] = ACTIONS(8473), + [sym_number_literal] = ACTIONS(8473), + [aux_sym_boolean_literal_token1] = ACTIONS(8471), + [aux_sym_boolean_literal_token2] = ACTIONS(8471), + [sym_nothing_literal] = ACTIONS(8471), + [sym_null_literal] = ACTIONS(8471), + [sym_empty_literal] = ACTIONS(8471), + [sym_date_literal] = ACTIONS(8473), + [anon_sym_POUND] = ACTIONS(8471), + }, + [STATE(4137)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(4138)] = { + [sym_do_condition] = STATE(4509), + [sym_identifier] = ACTIONS(8479), + [sym_newline] = ACTIONS(8481), + [anon_sym_COLON] = ACTIONS(8481), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8479), + [aux_sym_frm_property_statement_token1] = ACTIONS(8479), + [anon_sym_DOT] = ACTIONS(8479), + [anon_sym_BANG] = ACTIONS(8481), + [aux_sym__attribute_identifier_token1] = ACTIONS(8479), + [aux_sym_option_statement_token3] = ACTIONS(8479), + [aux_sym_type_declaration_token1] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8479), + [aux_sym_enum_declaration_token1] = ACTIONS(8479), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8479), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8479), + [aux_sym_declare_function_statement_token1] = ACTIONS(8479), + [aux_sym_preprocessor_const_token1] = ACTIONS(8479), + [aux_sym__property_get_header_token1] = ACTIONS(8479), + [aux_sym_event_declaration_token1] = ACTIONS(8479), + [sym_static_modifier] = ACTIONS(8479), + [sym__dim_keyword] = ACTIONS(8479), + [sym__redim_keyword] = ACTIONS(8479), + [aux_sym_get_accessor_token1] = ACTIONS(8479), + [aux_sym_set_accessor_token1] = ACTIONS(8479), + [aux_sym_const_declaration_token1] = ACTIONS(8479), + [anon_sym_LPAREN] = ACTIONS(8481), + [aux_sym_as_type_clause_token2] = ACTIONS(8479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8479), + [aux_sym_visibility_token1] = ACTIONS(8479), + [aux_sym_visibility_token2] = ACTIONS(8479), + [aux_sym_elseif_fragment_token1] = ACTIONS(8479), + [aux_sym_else_fragment_token1] = ACTIONS(8479), + [aux_sym_select_statement_token1] = ACTIONS(8479), + [aux_sym__for_header_token1] = ACTIONS(8479), + [aux_sym_do_statement_token1] = ACTIONS(8479), + [aux_sym_do_condition_token1] = ACTIONS(9540), + [aux_sym_do_condition_token2] = ACTIONS(9540), + [aux_sym_with_statement_token1] = ACTIONS(8479), + [aux_sym_exit_statement_token1] = ACTIONS(8479), + [sym_end_statement] = ACTIONS(8481), + [aux_sym_on_goto_statement_token1] = ACTIONS(8479), + [aux_sym_on_goto_statement_token2] = ACTIONS(8479), + [aux_sym_on_error_statement_token2] = ACTIONS(8479), + [sym__ambiguous_redim_statement] = ACTIONS(8481), + [aux_sym_erase_statement_token1] = ACTIONS(8479), + [aux_sym_open_statement_token1] = ACTIONS(8479), + [aux_sym_file_mode_token2] = ACTIONS(8479), + [aux_sym_file_access_token2] = ACTIONS(8479), + [aux_sym_file_lock_token2] = ACTIONS(8479), + [aux_sym_print_statement_token1] = ACTIONS(8479), + [anon_sym_PLUS] = ACTIONS(8481), + [anon_sym_DASH] = ACTIONS(8479), + [anon_sym_QMARK] = ACTIONS(8481), + [aux_sym_close_statement_token1] = ACTIONS(8479), + [aux_sym_put_statement_token1] = ACTIONS(8479), + [aux_sym_unlock_statement_token1] = ACTIONS(8479), + [aux_sym_seek_statement_token1] = ACTIONS(8479), + [sym_reset_statement] = ACTIONS(8479), + [aux_sym_raise_event_statement_token1] = ACTIONS(8479), + [sym_stop_statement] = ACTIONS(8479), + [sym_beep_statement] = ACTIONS(8479), + [aux_sym_unload_statement_token1] = ACTIONS(8479), + [aux_sym_def_type_statement_token1] = ACTIONS(8479), + [aux_sym_def_type_statement_token2] = ACTIONS(8479), + [aux_sym_def_type_statement_token3] = ACTIONS(8479), + [aux_sym_def_type_statement_token4] = ACTIONS(8479), + [aux_sym_def_type_statement_token5] = ACTIONS(8479), + [aux_sym_def_type_statement_token6] = ACTIONS(8479), + [aux_sym_def_type_statement_token7] = ACTIONS(8479), + [aux_sym_def_type_statement_token8] = ACTIONS(8479), + [aux_sym_def_type_statement_token9] = ACTIONS(8479), + [aux_sym_def_type_statement_token10] = ACTIONS(8479), + [aux_sym_def_type_statement_token11] = ACTIONS(8479), + [aux_sym_def_type_statement_token12] = ACTIONS(8479), + [aux_sym_def_type_statement_token13] = ACTIONS(8479), + [aux_sym_def_type_statement_token14] = ACTIONS(8479), + [aux_sym_call_statement_token1] = ACTIONS(8479), + [sym__ambiguous_call_statement] = ACTIONS(8479), + [aux_sym_addressof_expression_token1] = ACTIONS(8479), + [aux_sym_type_of_expression_token1] = ACTIONS(8479), + [aux_sym_unary_expression_token1] = ACTIONS(8479), + [sym_string_literal] = ACTIONS(8481), + [sym_number_literal] = ACTIONS(8481), + [aux_sym_boolean_literal_token1] = ACTIONS(8479), + [aux_sym_boolean_literal_token2] = ACTIONS(8479), + [sym_nothing_literal] = ACTIONS(8479), + [sym_null_literal] = ACTIONS(8479), + [sym_empty_literal] = ACTIONS(8479), + [sym_date_literal] = ACTIONS(8481), + [anon_sym_POUND] = ACTIONS(8479), + }, + [STATE(4139)] = { + [aux_sym__argument_sequence_repeat2] = STATE(4190), + [sym_identifier] = ACTIONS(8483), + [sym_newline] = ACTIONS(8485), + [anon_sym_COLON] = ACTIONS(8485), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8483), + [aux_sym_frm_property_statement_token1] = ACTIONS(8483), + [anon_sym_DOT] = ACTIONS(8483), + [anon_sym_BANG] = ACTIONS(8485), + [aux_sym__attribute_identifier_token1] = ACTIONS(8483), + [aux_sym_option_statement_token3] = ACTIONS(8483), + [aux_sym_type_declaration_token1] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8483), + [aux_sym_enum_declaration_token1] = ACTIONS(8483), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8483), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8483), + [aux_sym_declare_function_statement_token1] = ACTIONS(8483), + [aux_sym_preprocessor_const_token1] = ACTIONS(8483), + [aux_sym__property_get_header_token1] = ACTIONS(8483), + [aux_sym_event_declaration_token1] = ACTIONS(8483), + [sym_static_modifier] = ACTIONS(8483), + [sym__dim_keyword] = ACTIONS(8483), + [sym__redim_keyword] = ACTIONS(8483), + [aux_sym_get_accessor_token1] = ACTIONS(8483), + [aux_sym_set_accessor_token1] = ACTIONS(8483), + [anon_sym_COMMA] = ACTIONS(4230), + [aux_sym_const_declaration_token1] = ACTIONS(8483), + [anon_sym_LPAREN] = ACTIONS(8485), + [aux_sym_as_type_clause_token2] = ACTIONS(8483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8483), + [aux_sym_visibility_token1] = ACTIONS(8483), + [aux_sym_visibility_token2] = ACTIONS(8483), + [aux_sym_elseif_fragment_token1] = ACTIONS(8483), + [aux_sym_else_fragment_token1] = ACTIONS(8483), + [aux_sym_select_statement_token1] = ACTIONS(8483), + [aux_sym__for_header_token1] = ACTIONS(8483), + [aux_sym_do_statement_token1] = ACTIONS(8483), + [aux_sym_do_condition_token1] = ACTIONS(8483), + [aux_sym_with_statement_token1] = ACTIONS(8483), + [aux_sym_exit_statement_token1] = ACTIONS(8483), + [sym_end_statement] = ACTIONS(8485), + [aux_sym_on_goto_statement_token1] = ACTIONS(8483), + [aux_sym_on_goto_statement_token2] = ACTIONS(8483), + [aux_sym_on_error_statement_token2] = ACTIONS(8483), + [sym__ambiguous_redim_statement] = ACTIONS(8485), + [aux_sym_erase_statement_token1] = ACTIONS(8483), + [aux_sym_open_statement_token1] = ACTIONS(8483), + [aux_sym_file_mode_token2] = ACTIONS(8483), + [aux_sym_file_access_token2] = ACTIONS(8483), + [aux_sym_file_lock_token2] = ACTIONS(8483), + [aux_sym_print_statement_token1] = ACTIONS(8483), + [anon_sym_PLUS] = ACTIONS(8485), + [anon_sym_DASH] = ACTIONS(8483), + [anon_sym_QMARK] = ACTIONS(8485), + [aux_sym_close_statement_token1] = ACTIONS(8483), + [aux_sym_put_statement_token1] = ACTIONS(8483), + [aux_sym_unlock_statement_token1] = ACTIONS(8483), + [aux_sym_seek_statement_token1] = ACTIONS(8483), + [sym_reset_statement] = ACTIONS(8483), + [aux_sym_raise_event_statement_token1] = ACTIONS(8483), + [sym_stop_statement] = ACTIONS(8483), + [sym_beep_statement] = ACTIONS(8483), + [aux_sym_unload_statement_token1] = ACTIONS(8483), + [aux_sym_def_type_statement_token1] = ACTIONS(8483), + [aux_sym_def_type_statement_token2] = ACTIONS(8483), + [aux_sym_def_type_statement_token3] = ACTIONS(8483), + [aux_sym_def_type_statement_token4] = ACTIONS(8483), + [aux_sym_def_type_statement_token5] = ACTIONS(8483), + [aux_sym_def_type_statement_token6] = ACTIONS(8483), + [aux_sym_def_type_statement_token7] = ACTIONS(8483), + [aux_sym_def_type_statement_token8] = ACTIONS(8483), + [aux_sym_def_type_statement_token9] = ACTIONS(8483), + [aux_sym_def_type_statement_token10] = ACTIONS(8483), + [aux_sym_def_type_statement_token11] = ACTIONS(8483), + [aux_sym_def_type_statement_token12] = ACTIONS(8483), + [aux_sym_def_type_statement_token13] = ACTIONS(8483), + [aux_sym_def_type_statement_token14] = ACTIONS(8483), + [aux_sym_call_statement_token1] = ACTIONS(8483), + [sym__ambiguous_call_statement] = ACTIONS(8483), + [aux_sym_addressof_expression_token1] = ACTIONS(8483), + [aux_sym_type_of_expression_token1] = ACTIONS(8483), + [aux_sym_unary_expression_token1] = ACTIONS(8483), + [sym_string_literal] = ACTIONS(8485), + [sym_number_literal] = ACTIONS(8485), + [aux_sym_boolean_literal_token1] = ACTIONS(8483), + [aux_sym_boolean_literal_token2] = ACTIONS(8483), + [sym_nothing_literal] = ACTIONS(8483), + [sym_null_literal] = ACTIONS(8483), + [sym_empty_literal] = ACTIONS(8483), + [sym_date_literal] = ACTIONS(8485), + [anon_sym_POUND] = ACTIONS(8483), + }, + [STATE(4140)] = { + [sym_identifier] = ACTIONS(9688), + [sym_newline] = ACTIONS(9690), + [anon_sym_COLON] = ACTIONS(9690), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9688), + [aux_sym_frm_property_statement_token1] = ACTIONS(9688), + [anon_sym_DOT] = ACTIONS(9688), + [anon_sym_BANG] = ACTIONS(9690), + [aux_sym__attribute_identifier_token1] = ACTIONS(9688), + [aux_sym_option_statement_token3] = ACTIONS(9688), + [aux_sym_type_declaration_token1] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9688), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9688), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9688), + [aux_sym_enum_declaration_token1] = ACTIONS(9688), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9688), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9688), + [aux_sym_declare_function_statement_token1] = ACTIONS(9688), + [aux_sym_preprocessor_const_token1] = ACTIONS(9688), + [aux_sym__property_get_header_token1] = ACTIONS(9688), + [aux_sym_event_declaration_token1] = ACTIONS(9688), + [sym_static_modifier] = ACTIONS(9688), + [sym__dim_keyword] = ACTIONS(9688), + [sym__redim_keyword] = ACTIONS(9688), + [aux_sym_get_accessor_token1] = ACTIONS(9688), + [aux_sym_set_accessor_token1] = ACTIONS(9688), + [aux_sym_const_declaration_token1] = ACTIONS(9688), + [anon_sym_LPAREN] = ACTIONS(9690), + [aux_sym_as_type_clause_token2] = ACTIONS(9688), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9688), + [aux_sym_visibility_token1] = ACTIONS(9688), + [aux_sym_visibility_token2] = ACTIONS(9688), + [aux_sym_elseif_fragment_token1] = ACTIONS(9688), + [aux_sym_else_fragment_token1] = ACTIONS(9688), + [aux_sym_select_statement_token1] = ACTIONS(9688), + [aux_sym__for_header_token1] = ACTIONS(9688), + [aux_sym_do_statement_token1] = ACTIONS(9688), + [aux_sym_do_condition_token1] = ACTIONS(9688), + [aux_sym_with_statement_token1] = ACTIONS(9688), + [aux_sym_exit_statement_token1] = ACTIONS(9688), + [sym_end_statement] = ACTIONS(9690), + [aux_sym_on_goto_statement_token1] = ACTIONS(9688), + [aux_sym_on_goto_statement_token2] = ACTIONS(9688), + [aux_sym_on_error_statement_token2] = ACTIONS(9688), + [sym__ambiguous_redim_statement] = ACTIONS(9690), + [aux_sym_erase_statement_token1] = ACTIONS(9688), + [aux_sym_open_statement_token1] = ACTIONS(9688), + [aux_sym_file_mode_token2] = ACTIONS(9688), + [aux_sym_file_access_token2] = ACTIONS(9688), + [aux_sym_file_lock_token2] = ACTIONS(9688), + [aux_sym_print_statement_token1] = ACTIONS(9688), + [anon_sym_PLUS] = ACTIONS(9690), + [anon_sym_DASH] = ACTIONS(9688), + [anon_sym_QMARK] = ACTIONS(9690), + [aux_sym_close_statement_token1] = ACTIONS(9688), + [aux_sym_put_statement_token1] = ACTIONS(9688), + [aux_sym_unlock_statement_token1] = ACTIONS(9688), + [aux_sym_seek_statement_token1] = ACTIONS(9688), + [sym_reset_statement] = ACTIONS(9688), + [aux_sym_raise_event_statement_token1] = ACTIONS(9688), + [sym_stop_statement] = ACTIONS(9688), + [sym_beep_statement] = ACTIONS(9688), + [aux_sym_unload_statement_token1] = ACTIONS(9688), + [aux_sym_def_type_statement_token1] = ACTIONS(9688), + [aux_sym_def_type_statement_token2] = ACTIONS(9688), + [aux_sym_def_type_statement_token3] = ACTIONS(9688), + [aux_sym_def_type_statement_token4] = ACTIONS(9688), + [aux_sym_def_type_statement_token5] = ACTIONS(9688), + [aux_sym_def_type_statement_token6] = ACTIONS(9688), + [aux_sym_def_type_statement_token7] = ACTIONS(9688), + [aux_sym_def_type_statement_token8] = ACTIONS(9688), + [aux_sym_def_type_statement_token9] = ACTIONS(9688), + [aux_sym_def_type_statement_token10] = ACTIONS(9688), + [aux_sym_def_type_statement_token11] = ACTIONS(9688), + [aux_sym_def_type_statement_token12] = ACTIONS(9688), + [aux_sym_def_type_statement_token13] = ACTIONS(9688), + [aux_sym_def_type_statement_token14] = ACTIONS(9688), + [aux_sym_call_statement_token1] = ACTIONS(9688), + [sym__ambiguous_call_statement] = ACTIONS(9688), + [aux_sym_addressof_expression_token1] = ACTIONS(9688), + [aux_sym_type_of_expression_token1] = ACTIONS(9688), + [aux_sym_unary_expression_token1] = ACTIONS(9688), + [sym_string_literal] = ACTIONS(9690), + [sym_number_literal] = ACTIONS(9690), + [aux_sym_boolean_literal_token1] = ACTIONS(9688), + [aux_sym_boolean_literal_token2] = ACTIONS(9688), + [sym_nothing_literal] = ACTIONS(9688), + [sym_null_literal] = ACTIONS(9688), + [sym_empty_literal] = ACTIONS(9688), + [sym_date_literal] = ACTIONS(9690), + [anon_sym_POUND] = ACTIONS(9688), + }, + [STATE(4141)] = { + [sym_identifier] = ACTIONS(9692), + [sym_newline] = ACTIONS(9694), + [anon_sym_COLON] = ACTIONS(9694), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9692), + [aux_sym_frm_property_statement_token1] = ACTIONS(9692), + [anon_sym_DOT] = ACTIONS(9692), + [anon_sym_BANG] = ACTIONS(9694), + [aux_sym__attribute_identifier_token1] = ACTIONS(9692), + [aux_sym_option_statement_token3] = ACTIONS(9692), + [aux_sym_type_declaration_token1] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9692), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9692), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9692), + [aux_sym_enum_declaration_token1] = ACTIONS(9692), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9692), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9692), + [aux_sym_declare_function_statement_token1] = ACTIONS(9692), + [aux_sym_preprocessor_const_token1] = ACTIONS(9692), + [aux_sym__property_get_header_token1] = ACTIONS(9692), + [aux_sym_event_declaration_token1] = ACTIONS(9692), + [sym_static_modifier] = ACTIONS(9692), + [sym__dim_keyword] = ACTIONS(9692), + [sym__redim_keyword] = ACTIONS(9692), + [aux_sym_get_accessor_token1] = ACTIONS(9692), + [aux_sym_set_accessor_token1] = ACTIONS(9692), + [aux_sym_const_declaration_token1] = ACTIONS(9692), + [anon_sym_LPAREN] = ACTIONS(9694), + [aux_sym_as_type_clause_token2] = ACTIONS(9692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9692), + [aux_sym_visibility_token1] = ACTIONS(9692), + [aux_sym_visibility_token2] = ACTIONS(9692), + [aux_sym_elseif_fragment_token1] = ACTIONS(9692), + [aux_sym_else_fragment_token1] = ACTIONS(9692), + [aux_sym_select_statement_token1] = ACTIONS(9692), + [aux_sym__for_header_token1] = ACTIONS(9692), + [aux_sym_do_statement_token1] = ACTIONS(9692), + [aux_sym_do_condition_token1] = ACTIONS(9692), + [aux_sym_with_statement_token1] = ACTIONS(9692), + [aux_sym_exit_statement_token1] = ACTIONS(9692), + [sym_end_statement] = ACTIONS(9694), + [aux_sym_on_goto_statement_token1] = ACTIONS(9692), + [aux_sym_on_goto_statement_token2] = ACTIONS(9692), + [aux_sym_on_error_statement_token2] = ACTIONS(9692), + [sym__ambiguous_redim_statement] = ACTIONS(9694), + [aux_sym_erase_statement_token1] = ACTIONS(9692), + [aux_sym_open_statement_token1] = ACTIONS(9692), + [aux_sym_file_mode_token2] = ACTIONS(9692), + [aux_sym_file_access_token2] = ACTIONS(9692), + [aux_sym_file_lock_token2] = ACTIONS(9692), + [aux_sym_print_statement_token1] = ACTIONS(9692), + [anon_sym_PLUS] = ACTIONS(9694), + [anon_sym_DASH] = ACTIONS(9692), + [anon_sym_QMARK] = ACTIONS(9694), + [aux_sym_close_statement_token1] = ACTIONS(9692), + [aux_sym_put_statement_token1] = ACTIONS(9692), + [aux_sym_unlock_statement_token1] = ACTIONS(9692), + [aux_sym_seek_statement_token1] = ACTIONS(9692), + [sym_reset_statement] = ACTIONS(9692), + [aux_sym_raise_event_statement_token1] = ACTIONS(9692), + [sym_stop_statement] = ACTIONS(9692), + [sym_beep_statement] = ACTIONS(9692), + [aux_sym_unload_statement_token1] = ACTIONS(9692), + [aux_sym_def_type_statement_token1] = ACTIONS(9692), + [aux_sym_def_type_statement_token2] = ACTIONS(9692), + [aux_sym_def_type_statement_token3] = ACTIONS(9692), + [aux_sym_def_type_statement_token4] = ACTIONS(9692), + [aux_sym_def_type_statement_token5] = ACTIONS(9692), + [aux_sym_def_type_statement_token6] = ACTIONS(9692), + [aux_sym_def_type_statement_token7] = ACTIONS(9692), + [aux_sym_def_type_statement_token8] = ACTIONS(9692), + [aux_sym_def_type_statement_token9] = ACTIONS(9692), + [aux_sym_def_type_statement_token10] = ACTIONS(9692), + [aux_sym_def_type_statement_token11] = ACTIONS(9692), + [aux_sym_def_type_statement_token12] = ACTIONS(9692), + [aux_sym_def_type_statement_token13] = ACTIONS(9692), + [aux_sym_def_type_statement_token14] = ACTIONS(9692), + [aux_sym_call_statement_token1] = ACTIONS(9692), + [sym__ambiguous_call_statement] = ACTIONS(9692), + [aux_sym_addressof_expression_token1] = ACTIONS(9692), + [aux_sym_type_of_expression_token1] = ACTIONS(9692), + [aux_sym_unary_expression_token1] = ACTIONS(9692), + [sym_string_literal] = ACTIONS(9694), + [sym_number_literal] = ACTIONS(9694), + [aux_sym_boolean_literal_token1] = ACTIONS(9692), + [aux_sym_boolean_literal_token2] = ACTIONS(9692), + [sym_nothing_literal] = ACTIONS(9692), + [sym_null_literal] = ACTIONS(9692), + [sym_empty_literal] = ACTIONS(9692), + [sym_date_literal] = ACTIONS(9694), + [anon_sym_POUND] = ACTIONS(9692), + }, + [STATE(4142)] = { + [sym_identifier] = ACTIONS(9696), + [sym_newline] = ACTIONS(9698), + [anon_sym_COLON] = ACTIONS(9698), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9696), + [aux_sym_frm_property_statement_token1] = ACTIONS(9696), + [anon_sym_DOT] = ACTIONS(9696), + [anon_sym_BANG] = ACTIONS(9698), + [aux_sym__attribute_identifier_token1] = ACTIONS(9696), + [aux_sym_option_statement_token3] = ACTIONS(9696), + [aux_sym_type_declaration_token1] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9696), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9696), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9696), + [aux_sym_enum_declaration_token1] = ACTIONS(9696), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9696), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9696), + [aux_sym_declare_function_statement_token1] = ACTIONS(9696), + [aux_sym_preprocessor_const_token1] = ACTIONS(9696), + [aux_sym__property_get_header_token1] = ACTIONS(9696), + [aux_sym_event_declaration_token1] = ACTIONS(9696), + [sym_static_modifier] = ACTIONS(9696), + [sym__dim_keyword] = ACTIONS(9696), + [sym__redim_keyword] = ACTIONS(9696), + [aux_sym_get_accessor_token1] = ACTIONS(9696), + [aux_sym_set_accessor_token1] = ACTIONS(9696), + [aux_sym_const_declaration_token1] = ACTIONS(9696), + [anon_sym_LPAREN] = ACTIONS(9698), + [aux_sym_as_type_clause_token2] = ACTIONS(9696), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9696), + [aux_sym_visibility_token1] = ACTIONS(9696), + [aux_sym_visibility_token2] = ACTIONS(9696), + [aux_sym_elseif_fragment_token1] = ACTIONS(9696), + [aux_sym_else_fragment_token1] = ACTIONS(9696), + [aux_sym_select_statement_token1] = ACTIONS(9696), + [aux_sym__for_header_token1] = ACTIONS(9696), + [aux_sym_do_statement_token1] = ACTIONS(9696), + [aux_sym_do_condition_token1] = ACTIONS(9696), + [aux_sym_with_statement_token1] = ACTIONS(9696), + [aux_sym_exit_statement_token1] = ACTIONS(9696), + [sym_end_statement] = ACTIONS(9698), + [aux_sym_on_goto_statement_token1] = ACTIONS(9696), + [aux_sym_on_goto_statement_token2] = ACTIONS(9696), + [aux_sym_on_error_statement_token2] = ACTIONS(9696), + [sym__ambiguous_redim_statement] = ACTIONS(9698), + [aux_sym_erase_statement_token1] = ACTIONS(9696), + [aux_sym_open_statement_token1] = ACTIONS(9696), + [aux_sym_file_mode_token2] = ACTIONS(9696), + [aux_sym_file_access_token2] = ACTIONS(9696), + [aux_sym_file_lock_token2] = ACTIONS(9696), + [aux_sym_print_statement_token1] = ACTIONS(9696), + [anon_sym_PLUS] = ACTIONS(9698), + [anon_sym_DASH] = ACTIONS(9696), + [anon_sym_QMARK] = ACTIONS(9698), + [aux_sym_close_statement_token1] = ACTIONS(9696), + [aux_sym_put_statement_token1] = ACTIONS(9696), + [aux_sym_unlock_statement_token1] = ACTIONS(9696), + [aux_sym_seek_statement_token1] = ACTIONS(9696), + [sym_reset_statement] = ACTIONS(9696), + [aux_sym_raise_event_statement_token1] = ACTIONS(9696), + [sym_stop_statement] = ACTIONS(9696), + [sym_beep_statement] = ACTIONS(9696), + [aux_sym_unload_statement_token1] = ACTIONS(9696), + [aux_sym_def_type_statement_token1] = ACTIONS(9696), + [aux_sym_def_type_statement_token2] = ACTIONS(9696), + [aux_sym_def_type_statement_token3] = ACTIONS(9696), + [aux_sym_def_type_statement_token4] = ACTIONS(9696), + [aux_sym_def_type_statement_token5] = ACTIONS(9696), + [aux_sym_def_type_statement_token6] = ACTIONS(9696), + [aux_sym_def_type_statement_token7] = ACTIONS(9696), + [aux_sym_def_type_statement_token8] = ACTIONS(9696), + [aux_sym_def_type_statement_token9] = ACTIONS(9696), + [aux_sym_def_type_statement_token10] = ACTIONS(9696), + [aux_sym_def_type_statement_token11] = ACTIONS(9696), + [aux_sym_def_type_statement_token12] = ACTIONS(9696), + [aux_sym_def_type_statement_token13] = ACTIONS(9696), + [aux_sym_def_type_statement_token14] = ACTIONS(9696), + [aux_sym_call_statement_token1] = ACTIONS(9696), + [sym__ambiguous_call_statement] = ACTIONS(9696), + [aux_sym_addressof_expression_token1] = ACTIONS(9696), + [aux_sym_type_of_expression_token1] = ACTIONS(9696), + [aux_sym_unary_expression_token1] = ACTIONS(9696), + [sym_string_literal] = ACTIONS(9698), + [sym_number_literal] = ACTIONS(9698), + [aux_sym_boolean_literal_token1] = ACTIONS(9696), + [aux_sym_boolean_literal_token2] = ACTIONS(9696), + [sym_nothing_literal] = ACTIONS(9696), + [sym_null_literal] = ACTIONS(9696), + [sym_empty_literal] = ACTIONS(9696), + [sym_date_literal] = ACTIONS(9698), + [anon_sym_POUND] = ACTIONS(9696), + }, + [STATE(4143)] = { + [sym_identifier] = ACTIONS(9700), + [sym_newline] = ACTIONS(9702), + [anon_sym_COLON] = ACTIONS(9702), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9700), + [aux_sym_frm_property_statement_token1] = ACTIONS(9700), + [anon_sym_DOT] = ACTIONS(9700), + [anon_sym_BANG] = ACTIONS(9702), + [aux_sym__attribute_identifier_token1] = ACTIONS(9700), + [aux_sym_option_statement_token3] = ACTIONS(9700), + [aux_sym_type_declaration_token1] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9700), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9700), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9700), + [aux_sym_enum_declaration_token1] = ACTIONS(9700), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9700), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9700), + [aux_sym_declare_function_statement_token1] = ACTIONS(9700), + [aux_sym_preprocessor_const_token1] = ACTIONS(9700), + [aux_sym__property_get_header_token1] = ACTIONS(9700), + [aux_sym_event_declaration_token1] = ACTIONS(9700), + [sym_static_modifier] = ACTIONS(9700), + [sym__dim_keyword] = ACTIONS(9700), + [sym__redim_keyword] = ACTIONS(9700), + [aux_sym_get_accessor_token1] = ACTIONS(9700), + [aux_sym_set_accessor_token1] = ACTIONS(9700), + [aux_sym_const_declaration_token1] = ACTIONS(9700), + [anon_sym_LPAREN] = ACTIONS(9702), + [aux_sym_as_type_clause_token2] = ACTIONS(9700), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9700), + [aux_sym_visibility_token1] = ACTIONS(9700), + [aux_sym_visibility_token2] = ACTIONS(9700), + [aux_sym_elseif_fragment_token1] = ACTIONS(9700), + [aux_sym_else_fragment_token1] = ACTIONS(9700), + [aux_sym_select_statement_token1] = ACTIONS(9700), + [aux_sym__for_header_token1] = ACTIONS(9700), + [aux_sym_do_statement_token1] = ACTIONS(9700), + [aux_sym_do_condition_token1] = ACTIONS(9700), + [aux_sym_with_statement_token1] = ACTIONS(9700), + [aux_sym_exit_statement_token1] = ACTIONS(9700), + [sym_end_statement] = ACTIONS(9702), + [aux_sym_on_goto_statement_token1] = ACTIONS(9700), + [aux_sym_on_goto_statement_token2] = ACTIONS(9700), + [aux_sym_on_error_statement_token2] = ACTIONS(9700), + [sym__ambiguous_redim_statement] = ACTIONS(9702), + [aux_sym_erase_statement_token1] = ACTIONS(9700), + [aux_sym_open_statement_token1] = ACTIONS(9700), + [aux_sym_file_mode_token2] = ACTIONS(9700), + [aux_sym_file_access_token2] = ACTIONS(9700), + [aux_sym_file_lock_token2] = ACTIONS(9700), + [aux_sym_print_statement_token1] = ACTIONS(9700), + [anon_sym_PLUS] = ACTIONS(9702), + [anon_sym_DASH] = ACTIONS(9700), + [anon_sym_QMARK] = ACTIONS(9702), + [aux_sym_close_statement_token1] = ACTIONS(9700), + [aux_sym_put_statement_token1] = ACTIONS(9700), + [aux_sym_unlock_statement_token1] = ACTIONS(9700), + [aux_sym_seek_statement_token1] = ACTIONS(9700), + [sym_reset_statement] = ACTIONS(9700), + [aux_sym_raise_event_statement_token1] = ACTIONS(9700), + [sym_stop_statement] = ACTIONS(9700), + [sym_beep_statement] = ACTIONS(9700), + [aux_sym_unload_statement_token1] = ACTIONS(9700), + [aux_sym_def_type_statement_token1] = ACTIONS(9700), + [aux_sym_def_type_statement_token2] = ACTIONS(9700), + [aux_sym_def_type_statement_token3] = ACTIONS(9700), + [aux_sym_def_type_statement_token4] = ACTIONS(9700), + [aux_sym_def_type_statement_token5] = ACTIONS(9700), + [aux_sym_def_type_statement_token6] = ACTIONS(9700), + [aux_sym_def_type_statement_token7] = ACTIONS(9700), + [aux_sym_def_type_statement_token8] = ACTIONS(9700), + [aux_sym_def_type_statement_token9] = ACTIONS(9700), + [aux_sym_def_type_statement_token10] = ACTIONS(9700), + [aux_sym_def_type_statement_token11] = ACTIONS(9700), + [aux_sym_def_type_statement_token12] = ACTIONS(9700), + [aux_sym_def_type_statement_token13] = ACTIONS(9700), + [aux_sym_def_type_statement_token14] = ACTIONS(9700), + [aux_sym_call_statement_token1] = ACTIONS(9700), + [sym__ambiguous_call_statement] = ACTIONS(9700), + [aux_sym_addressof_expression_token1] = ACTIONS(9700), + [aux_sym_type_of_expression_token1] = ACTIONS(9700), + [aux_sym_unary_expression_token1] = ACTIONS(9700), + [sym_string_literal] = ACTIONS(9702), + [sym_number_literal] = ACTIONS(9702), + [aux_sym_boolean_literal_token1] = ACTIONS(9700), + [aux_sym_boolean_literal_token2] = ACTIONS(9700), + [sym_nothing_literal] = ACTIONS(9700), + [sym_null_literal] = ACTIONS(9700), + [sym_empty_literal] = ACTIONS(9700), + [sym_date_literal] = ACTIONS(9702), + [anon_sym_POUND] = ACTIONS(9700), + }, + [STATE(4144)] = { + [sym_identifier] = ACTIONS(9704), + [sym_newline] = ACTIONS(9706), + [anon_sym_COLON] = ACTIONS(9706), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9704), + [aux_sym_frm_property_statement_token1] = ACTIONS(9704), + [anon_sym_DOT] = ACTIONS(9704), + [anon_sym_BANG] = ACTIONS(9706), + [aux_sym__attribute_identifier_token1] = ACTIONS(9704), + [aux_sym_option_statement_token3] = ACTIONS(9704), + [aux_sym_type_declaration_token1] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9704), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9704), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9704), + [aux_sym_enum_declaration_token1] = ACTIONS(9704), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9704), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9704), + [aux_sym_declare_function_statement_token1] = ACTIONS(9704), + [aux_sym_preprocessor_const_token1] = ACTIONS(9704), + [aux_sym__property_get_header_token1] = ACTIONS(9704), + [aux_sym_event_declaration_token1] = ACTIONS(9704), + [sym_static_modifier] = ACTIONS(9704), + [sym__dim_keyword] = ACTIONS(9704), + [sym__redim_keyword] = ACTIONS(9704), + [aux_sym_get_accessor_token1] = ACTIONS(9704), + [aux_sym_set_accessor_token1] = ACTIONS(9704), + [aux_sym_const_declaration_token1] = ACTIONS(9704), + [anon_sym_LPAREN] = ACTIONS(9706), + [aux_sym_as_type_clause_token2] = ACTIONS(9704), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9704), + [aux_sym_visibility_token1] = ACTIONS(9704), + [aux_sym_visibility_token2] = ACTIONS(9704), + [aux_sym_elseif_fragment_token1] = ACTIONS(9704), + [aux_sym_else_fragment_token1] = ACTIONS(9704), + [aux_sym_select_statement_token1] = ACTIONS(9704), + [aux_sym__for_header_token1] = ACTIONS(9704), + [aux_sym_do_statement_token1] = ACTIONS(9704), + [aux_sym_do_condition_token1] = ACTIONS(9704), + [aux_sym_with_statement_token1] = ACTIONS(9704), + [aux_sym_exit_statement_token1] = ACTIONS(9704), + [sym_end_statement] = ACTIONS(9706), + [aux_sym_on_goto_statement_token1] = ACTIONS(9704), + [aux_sym_on_goto_statement_token2] = ACTIONS(9704), + [aux_sym_on_error_statement_token2] = ACTIONS(9704), + [sym__ambiguous_redim_statement] = ACTIONS(9706), + [aux_sym_erase_statement_token1] = ACTIONS(9704), + [aux_sym_open_statement_token1] = ACTIONS(9704), + [aux_sym_file_mode_token2] = ACTIONS(9704), + [aux_sym_file_access_token2] = ACTIONS(9704), + [aux_sym_file_lock_token2] = ACTIONS(9704), + [aux_sym_print_statement_token1] = ACTIONS(9704), + [anon_sym_PLUS] = ACTIONS(9706), + [anon_sym_DASH] = ACTIONS(9704), + [anon_sym_QMARK] = ACTIONS(9706), + [aux_sym_close_statement_token1] = ACTIONS(9704), + [aux_sym_put_statement_token1] = ACTIONS(9704), + [aux_sym_unlock_statement_token1] = ACTIONS(9704), + [aux_sym_seek_statement_token1] = ACTIONS(9704), + [sym_reset_statement] = ACTIONS(9704), + [aux_sym_raise_event_statement_token1] = ACTIONS(9704), + [sym_stop_statement] = ACTIONS(9704), + [sym_beep_statement] = ACTIONS(9704), + [aux_sym_unload_statement_token1] = ACTIONS(9704), + [aux_sym_def_type_statement_token1] = ACTIONS(9704), + [aux_sym_def_type_statement_token2] = ACTIONS(9704), + [aux_sym_def_type_statement_token3] = ACTIONS(9704), + [aux_sym_def_type_statement_token4] = ACTIONS(9704), + [aux_sym_def_type_statement_token5] = ACTIONS(9704), + [aux_sym_def_type_statement_token6] = ACTIONS(9704), + [aux_sym_def_type_statement_token7] = ACTIONS(9704), + [aux_sym_def_type_statement_token8] = ACTIONS(9704), + [aux_sym_def_type_statement_token9] = ACTIONS(9704), + [aux_sym_def_type_statement_token10] = ACTIONS(9704), + [aux_sym_def_type_statement_token11] = ACTIONS(9704), + [aux_sym_def_type_statement_token12] = ACTIONS(9704), + [aux_sym_def_type_statement_token13] = ACTIONS(9704), + [aux_sym_def_type_statement_token14] = ACTIONS(9704), + [aux_sym_call_statement_token1] = ACTIONS(9704), + [sym__ambiguous_call_statement] = ACTIONS(9704), + [aux_sym_addressof_expression_token1] = ACTIONS(9704), + [aux_sym_type_of_expression_token1] = ACTIONS(9704), + [aux_sym_unary_expression_token1] = ACTIONS(9704), + [sym_string_literal] = ACTIONS(9706), + [sym_number_literal] = ACTIONS(9706), + [aux_sym_boolean_literal_token1] = ACTIONS(9704), + [aux_sym_boolean_literal_token2] = ACTIONS(9704), + [sym_nothing_literal] = ACTIONS(9704), + [sym_null_literal] = ACTIONS(9704), + [sym_empty_literal] = ACTIONS(9704), + [sym_date_literal] = ACTIONS(9706), + [anon_sym_POUND] = ACTIONS(9704), + }, + [STATE(4145)] = { + [sym_identifier] = ACTIONS(9708), + [sym_newline] = ACTIONS(9710), + [anon_sym_COLON] = ACTIONS(9710), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9708), + [aux_sym_frm_property_statement_token1] = ACTIONS(9708), + [anon_sym_DOT] = ACTIONS(9708), + [anon_sym_BANG] = ACTIONS(9710), + [aux_sym__attribute_identifier_token1] = ACTIONS(9708), + [aux_sym_option_statement_token3] = ACTIONS(9708), + [aux_sym_type_declaration_token1] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9708), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9708), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9708), + [aux_sym_enum_declaration_token1] = ACTIONS(9708), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9708), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9708), + [aux_sym_declare_function_statement_token1] = ACTIONS(9708), + [aux_sym_preprocessor_const_token1] = ACTIONS(9708), + [aux_sym__property_get_header_token1] = ACTIONS(9708), + [aux_sym_event_declaration_token1] = ACTIONS(9708), + [sym_static_modifier] = ACTIONS(9708), + [sym__dim_keyword] = ACTIONS(9708), + [sym__redim_keyword] = ACTIONS(9708), + [aux_sym_get_accessor_token1] = ACTIONS(9708), + [aux_sym_set_accessor_token1] = ACTIONS(9708), + [aux_sym_const_declaration_token1] = ACTIONS(9708), + [anon_sym_LPAREN] = ACTIONS(9710), + [aux_sym_as_type_clause_token2] = ACTIONS(9708), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9708), + [aux_sym_visibility_token1] = ACTIONS(9708), + [aux_sym_visibility_token2] = ACTIONS(9708), + [aux_sym_elseif_fragment_token1] = ACTIONS(9708), + [aux_sym_else_fragment_token1] = ACTIONS(9708), + [aux_sym_select_statement_token1] = ACTIONS(9708), + [aux_sym__for_header_token1] = ACTIONS(9708), + [aux_sym_do_statement_token1] = ACTIONS(9708), + [aux_sym_do_condition_token1] = ACTIONS(9708), + [aux_sym_with_statement_token1] = ACTIONS(9708), + [aux_sym_exit_statement_token1] = ACTIONS(9708), + [sym_end_statement] = ACTIONS(9710), + [aux_sym_on_goto_statement_token1] = ACTIONS(9708), + [aux_sym_on_goto_statement_token2] = ACTIONS(9708), + [aux_sym_on_error_statement_token2] = ACTIONS(9708), + [sym__ambiguous_redim_statement] = ACTIONS(9710), + [aux_sym_erase_statement_token1] = ACTIONS(9708), + [aux_sym_open_statement_token1] = ACTIONS(9708), + [aux_sym_file_mode_token2] = ACTIONS(9708), + [aux_sym_file_access_token2] = ACTIONS(9708), + [aux_sym_file_lock_token2] = ACTIONS(9708), + [aux_sym_print_statement_token1] = ACTIONS(9708), + [anon_sym_PLUS] = ACTIONS(9710), + [anon_sym_DASH] = ACTIONS(9708), + [anon_sym_QMARK] = ACTIONS(9710), + [aux_sym_close_statement_token1] = ACTIONS(9708), + [aux_sym_put_statement_token1] = ACTIONS(9708), + [aux_sym_unlock_statement_token1] = ACTIONS(9708), + [aux_sym_seek_statement_token1] = ACTIONS(9708), + [sym_reset_statement] = ACTIONS(9708), + [aux_sym_raise_event_statement_token1] = ACTIONS(9708), + [sym_stop_statement] = ACTIONS(9708), + [sym_beep_statement] = ACTIONS(9708), + [aux_sym_unload_statement_token1] = ACTIONS(9708), + [aux_sym_def_type_statement_token1] = ACTIONS(9708), + [aux_sym_def_type_statement_token2] = ACTIONS(9708), + [aux_sym_def_type_statement_token3] = ACTIONS(9708), + [aux_sym_def_type_statement_token4] = ACTIONS(9708), + [aux_sym_def_type_statement_token5] = ACTIONS(9708), + [aux_sym_def_type_statement_token6] = ACTIONS(9708), + [aux_sym_def_type_statement_token7] = ACTIONS(9708), + [aux_sym_def_type_statement_token8] = ACTIONS(9708), + [aux_sym_def_type_statement_token9] = ACTIONS(9708), + [aux_sym_def_type_statement_token10] = ACTIONS(9708), + [aux_sym_def_type_statement_token11] = ACTIONS(9708), + [aux_sym_def_type_statement_token12] = ACTIONS(9708), + [aux_sym_def_type_statement_token13] = ACTIONS(9708), + [aux_sym_def_type_statement_token14] = ACTIONS(9708), + [aux_sym_call_statement_token1] = ACTIONS(9708), + [sym__ambiguous_call_statement] = ACTIONS(9708), + [aux_sym_addressof_expression_token1] = ACTIONS(9708), + [aux_sym_type_of_expression_token1] = ACTIONS(9708), + [aux_sym_unary_expression_token1] = ACTIONS(9708), + [sym_string_literal] = ACTIONS(9710), + [sym_number_literal] = ACTIONS(9710), + [aux_sym_boolean_literal_token1] = ACTIONS(9708), + [aux_sym_boolean_literal_token2] = ACTIONS(9708), + [sym_nothing_literal] = ACTIONS(9708), + [sym_null_literal] = ACTIONS(9708), + [sym_empty_literal] = ACTIONS(9708), + [sym_date_literal] = ACTIONS(9710), + [anon_sym_POUND] = ACTIONS(9708), + }, + [STATE(4146)] = { + [sym_identifier] = ACTIONS(9712), + [sym_newline] = ACTIONS(9714), + [anon_sym_COLON] = ACTIONS(9714), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9712), + [aux_sym_frm_property_statement_token1] = ACTIONS(9712), + [anon_sym_DOT] = ACTIONS(9712), + [anon_sym_BANG] = ACTIONS(9714), + [aux_sym__attribute_identifier_token1] = ACTIONS(9712), + [aux_sym_option_statement_token3] = ACTIONS(9712), + [aux_sym_type_declaration_token1] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9712), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9712), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9712), + [aux_sym_enum_declaration_token1] = ACTIONS(9712), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9712), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9712), + [aux_sym_declare_function_statement_token1] = ACTIONS(9712), + [aux_sym_preprocessor_const_token1] = ACTIONS(9712), + [aux_sym__property_get_header_token1] = ACTIONS(9712), + [aux_sym_event_declaration_token1] = ACTIONS(9712), + [sym_static_modifier] = ACTIONS(9712), + [sym__dim_keyword] = ACTIONS(9712), + [sym__redim_keyword] = ACTIONS(9712), + [aux_sym_get_accessor_token1] = ACTIONS(9712), + [aux_sym_set_accessor_token1] = ACTIONS(9712), + [aux_sym_const_declaration_token1] = ACTIONS(9712), + [anon_sym_LPAREN] = ACTIONS(9714), + [aux_sym_as_type_clause_token2] = ACTIONS(9712), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9712), + [aux_sym_visibility_token1] = ACTIONS(9712), + [aux_sym_visibility_token2] = ACTIONS(9712), + [aux_sym_elseif_fragment_token1] = ACTIONS(9712), + [aux_sym_else_fragment_token1] = ACTIONS(9712), + [aux_sym_select_statement_token1] = ACTIONS(9712), + [aux_sym__for_header_token1] = ACTIONS(9712), + [aux_sym_do_statement_token1] = ACTIONS(9712), + [aux_sym_do_condition_token1] = ACTIONS(9712), + [aux_sym_with_statement_token1] = ACTIONS(9712), + [aux_sym_exit_statement_token1] = ACTIONS(9712), + [sym_end_statement] = ACTIONS(9714), + [aux_sym_on_goto_statement_token1] = ACTIONS(9712), + [aux_sym_on_goto_statement_token2] = ACTIONS(9712), + [aux_sym_on_error_statement_token2] = ACTIONS(9712), + [sym__ambiguous_redim_statement] = ACTIONS(9714), + [aux_sym_erase_statement_token1] = ACTIONS(9712), + [aux_sym_open_statement_token1] = ACTIONS(9712), + [aux_sym_file_mode_token2] = ACTIONS(9712), + [aux_sym_file_access_token2] = ACTIONS(9712), + [aux_sym_file_lock_token2] = ACTIONS(9712), + [aux_sym_print_statement_token1] = ACTIONS(9712), + [anon_sym_PLUS] = ACTIONS(9714), + [anon_sym_DASH] = ACTIONS(9712), + [anon_sym_QMARK] = ACTIONS(9714), + [aux_sym_close_statement_token1] = ACTIONS(9712), + [aux_sym_put_statement_token1] = ACTIONS(9712), + [aux_sym_unlock_statement_token1] = ACTIONS(9712), + [aux_sym_seek_statement_token1] = ACTIONS(9712), + [sym_reset_statement] = ACTIONS(9712), + [aux_sym_raise_event_statement_token1] = ACTIONS(9712), + [sym_stop_statement] = ACTIONS(9712), + [sym_beep_statement] = ACTIONS(9712), + [aux_sym_unload_statement_token1] = ACTIONS(9712), + [aux_sym_def_type_statement_token1] = ACTIONS(9712), + [aux_sym_def_type_statement_token2] = ACTIONS(9712), + [aux_sym_def_type_statement_token3] = ACTIONS(9712), + [aux_sym_def_type_statement_token4] = ACTIONS(9712), + [aux_sym_def_type_statement_token5] = ACTIONS(9712), + [aux_sym_def_type_statement_token6] = ACTIONS(9712), + [aux_sym_def_type_statement_token7] = ACTIONS(9712), + [aux_sym_def_type_statement_token8] = ACTIONS(9712), + [aux_sym_def_type_statement_token9] = ACTIONS(9712), + [aux_sym_def_type_statement_token10] = ACTIONS(9712), + [aux_sym_def_type_statement_token11] = ACTIONS(9712), + [aux_sym_def_type_statement_token12] = ACTIONS(9712), + [aux_sym_def_type_statement_token13] = ACTIONS(9712), + [aux_sym_def_type_statement_token14] = ACTIONS(9712), + [aux_sym_call_statement_token1] = ACTIONS(9712), + [sym__ambiguous_call_statement] = ACTIONS(9712), + [aux_sym_addressof_expression_token1] = ACTIONS(9712), + [aux_sym_type_of_expression_token1] = ACTIONS(9712), + [aux_sym_unary_expression_token1] = ACTIONS(9712), + [sym_string_literal] = ACTIONS(9714), + [sym_number_literal] = ACTIONS(9714), + [aux_sym_boolean_literal_token1] = ACTIONS(9712), + [aux_sym_boolean_literal_token2] = ACTIONS(9712), + [sym_nothing_literal] = ACTIONS(9712), + [sym_null_literal] = ACTIONS(9712), + [sym_empty_literal] = ACTIONS(9712), + [sym_date_literal] = ACTIONS(9714), + [anon_sym_POUND] = ACTIONS(9712), + }, + [STATE(4147)] = { + [sym_identifier] = ACTIONS(9716), + [sym_newline] = ACTIONS(9718), + [anon_sym_COLON] = ACTIONS(9718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9716), + [aux_sym_frm_property_statement_token1] = ACTIONS(9716), + [anon_sym_DOT] = ACTIONS(9716), + [anon_sym_BANG] = ACTIONS(9718), + [aux_sym__attribute_identifier_token1] = ACTIONS(9716), + [aux_sym_option_statement_token3] = ACTIONS(9716), + [aux_sym_type_declaration_token1] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9716), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9716), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9716), + [aux_sym_enum_declaration_token1] = ACTIONS(9716), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9716), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9716), + [aux_sym_declare_function_statement_token1] = ACTIONS(9716), + [aux_sym_preprocessor_const_token1] = ACTIONS(9716), + [aux_sym__property_get_header_token1] = ACTIONS(9716), + [aux_sym_event_declaration_token1] = ACTIONS(9716), + [sym_static_modifier] = ACTIONS(9716), + [sym__dim_keyword] = ACTIONS(9716), + [sym__redim_keyword] = ACTIONS(9716), + [aux_sym_get_accessor_token1] = ACTIONS(9716), + [aux_sym_set_accessor_token1] = ACTIONS(9716), + [aux_sym_const_declaration_token1] = ACTIONS(9716), + [anon_sym_LPAREN] = ACTIONS(9718), + [aux_sym_as_type_clause_token2] = ACTIONS(9716), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9716), + [aux_sym_visibility_token1] = ACTIONS(9716), + [aux_sym_visibility_token2] = ACTIONS(9716), + [aux_sym_elseif_fragment_token1] = ACTIONS(9716), + [aux_sym_else_fragment_token1] = ACTIONS(9716), + [aux_sym_select_statement_token1] = ACTIONS(9716), + [aux_sym__for_header_token1] = ACTIONS(9716), + [aux_sym_do_statement_token1] = ACTIONS(9716), + [aux_sym_do_condition_token1] = ACTIONS(9716), + [aux_sym_with_statement_token1] = ACTIONS(9716), + [aux_sym_exit_statement_token1] = ACTIONS(9716), + [sym_end_statement] = ACTIONS(9718), + [aux_sym_on_goto_statement_token1] = ACTIONS(9716), + [aux_sym_on_goto_statement_token2] = ACTIONS(9716), + [aux_sym_on_error_statement_token2] = ACTIONS(9716), + [sym__ambiguous_redim_statement] = ACTIONS(9718), + [aux_sym_erase_statement_token1] = ACTIONS(9716), + [aux_sym_open_statement_token1] = ACTIONS(9716), + [aux_sym_file_mode_token2] = ACTIONS(9716), + [aux_sym_file_access_token2] = ACTIONS(9716), + [aux_sym_file_lock_token2] = ACTIONS(9716), + [aux_sym_print_statement_token1] = ACTIONS(9716), + [anon_sym_PLUS] = ACTIONS(9718), + [anon_sym_DASH] = ACTIONS(9716), + [anon_sym_QMARK] = ACTIONS(9718), + [aux_sym_close_statement_token1] = ACTIONS(9716), + [aux_sym_put_statement_token1] = ACTIONS(9716), + [aux_sym_unlock_statement_token1] = ACTIONS(9716), + [aux_sym_seek_statement_token1] = ACTIONS(9716), + [sym_reset_statement] = ACTIONS(9716), + [aux_sym_raise_event_statement_token1] = ACTIONS(9716), + [sym_stop_statement] = ACTIONS(9716), + [sym_beep_statement] = ACTIONS(9716), + [aux_sym_unload_statement_token1] = ACTIONS(9716), + [aux_sym_def_type_statement_token1] = ACTIONS(9716), + [aux_sym_def_type_statement_token2] = ACTIONS(9716), + [aux_sym_def_type_statement_token3] = ACTIONS(9716), + [aux_sym_def_type_statement_token4] = ACTIONS(9716), + [aux_sym_def_type_statement_token5] = ACTIONS(9716), + [aux_sym_def_type_statement_token6] = ACTIONS(9716), + [aux_sym_def_type_statement_token7] = ACTIONS(9716), + [aux_sym_def_type_statement_token8] = ACTIONS(9716), + [aux_sym_def_type_statement_token9] = ACTIONS(9716), + [aux_sym_def_type_statement_token10] = ACTIONS(9716), + [aux_sym_def_type_statement_token11] = ACTIONS(9716), + [aux_sym_def_type_statement_token12] = ACTIONS(9716), + [aux_sym_def_type_statement_token13] = ACTIONS(9716), + [aux_sym_def_type_statement_token14] = ACTIONS(9716), + [aux_sym_call_statement_token1] = ACTIONS(9716), + [sym__ambiguous_call_statement] = ACTIONS(9716), + [aux_sym_addressof_expression_token1] = ACTIONS(9716), + [aux_sym_type_of_expression_token1] = ACTIONS(9716), + [aux_sym_unary_expression_token1] = ACTIONS(9716), + [sym_string_literal] = ACTIONS(9718), + [sym_number_literal] = ACTIONS(9718), + [aux_sym_boolean_literal_token1] = ACTIONS(9716), + [aux_sym_boolean_literal_token2] = ACTIONS(9716), + [sym_nothing_literal] = ACTIONS(9716), + [sym_null_literal] = ACTIONS(9716), + [sym_empty_literal] = ACTIONS(9716), + [sym_date_literal] = ACTIONS(9718), + [anon_sym_POUND] = ACTIONS(9716), + }, + [STATE(4148)] = { + [sym_identifier] = ACTIONS(9720), + [sym_newline] = ACTIONS(9722), + [anon_sym_COLON] = ACTIONS(9722), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9720), + [aux_sym_frm_property_statement_token1] = ACTIONS(9720), + [anon_sym_DOT] = ACTIONS(9720), + [anon_sym_BANG] = ACTIONS(9722), + [aux_sym__attribute_identifier_token1] = ACTIONS(9720), + [aux_sym_option_statement_token3] = ACTIONS(9720), + [aux_sym_type_declaration_token1] = ACTIONS(9720), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9720), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9720), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9720), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9720), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9720), + [aux_sym_enum_declaration_token1] = ACTIONS(9720), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9720), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9720), + [aux_sym_declare_function_statement_token1] = ACTIONS(9720), + [aux_sym_preprocessor_const_token1] = ACTIONS(9720), + [aux_sym__property_get_header_token1] = ACTIONS(9720), + [aux_sym_event_declaration_token1] = ACTIONS(9720), + [sym_static_modifier] = ACTIONS(9720), + [sym__dim_keyword] = ACTIONS(9720), + [sym__redim_keyword] = ACTIONS(9720), + [aux_sym_get_accessor_token1] = ACTIONS(9720), + [aux_sym_set_accessor_token1] = ACTIONS(9720), + [aux_sym_const_declaration_token1] = ACTIONS(9720), + [anon_sym_LPAREN] = ACTIONS(9722), + [aux_sym_as_type_clause_token2] = ACTIONS(9720), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9720), + [aux_sym_visibility_token1] = ACTIONS(9720), + [aux_sym_visibility_token2] = ACTIONS(9720), + [aux_sym_elseif_fragment_token1] = ACTIONS(9720), + [aux_sym_else_fragment_token1] = ACTIONS(9720), + [aux_sym_select_statement_token1] = ACTIONS(9720), + [aux_sym__for_header_token1] = ACTIONS(9720), + [aux_sym_do_statement_token1] = ACTIONS(9720), + [aux_sym_do_condition_token1] = ACTIONS(9720), + [aux_sym_with_statement_token1] = ACTIONS(9720), + [aux_sym_exit_statement_token1] = ACTIONS(9720), + [sym_end_statement] = ACTIONS(9722), + [aux_sym_on_goto_statement_token1] = ACTIONS(9720), + [aux_sym_on_goto_statement_token2] = ACTIONS(9720), + [aux_sym_on_error_statement_token2] = ACTIONS(9720), + [sym__ambiguous_redim_statement] = ACTIONS(9722), + [aux_sym_erase_statement_token1] = ACTIONS(9720), + [aux_sym_open_statement_token1] = ACTIONS(9720), + [aux_sym_file_mode_token2] = ACTIONS(9720), + [aux_sym_file_access_token2] = ACTIONS(9720), + [aux_sym_file_lock_token2] = ACTIONS(9720), + [aux_sym_print_statement_token1] = ACTIONS(9720), + [anon_sym_PLUS] = ACTIONS(9722), + [anon_sym_DASH] = ACTIONS(9720), + [anon_sym_QMARK] = ACTIONS(9722), + [aux_sym_close_statement_token1] = ACTIONS(9720), + [aux_sym_put_statement_token1] = ACTIONS(9720), + [aux_sym_unlock_statement_token1] = ACTIONS(9720), + [aux_sym_seek_statement_token1] = ACTIONS(9720), + [sym_reset_statement] = ACTIONS(9720), + [aux_sym_raise_event_statement_token1] = ACTIONS(9720), + [sym_stop_statement] = ACTIONS(9720), + [sym_beep_statement] = ACTIONS(9720), + [aux_sym_unload_statement_token1] = ACTIONS(9720), + [aux_sym_def_type_statement_token1] = ACTIONS(9720), + [aux_sym_def_type_statement_token2] = ACTIONS(9720), + [aux_sym_def_type_statement_token3] = ACTIONS(9720), + [aux_sym_def_type_statement_token4] = ACTIONS(9720), + [aux_sym_def_type_statement_token5] = ACTIONS(9720), + [aux_sym_def_type_statement_token6] = ACTIONS(9720), + [aux_sym_def_type_statement_token7] = ACTIONS(9720), + [aux_sym_def_type_statement_token8] = ACTIONS(9720), + [aux_sym_def_type_statement_token9] = ACTIONS(9720), + [aux_sym_def_type_statement_token10] = ACTIONS(9720), + [aux_sym_def_type_statement_token11] = ACTIONS(9720), + [aux_sym_def_type_statement_token12] = ACTIONS(9720), + [aux_sym_def_type_statement_token13] = ACTIONS(9720), + [aux_sym_def_type_statement_token14] = ACTIONS(9720), + [aux_sym_call_statement_token1] = ACTIONS(9720), + [sym__ambiguous_call_statement] = ACTIONS(9720), + [aux_sym_addressof_expression_token1] = ACTIONS(9720), + [aux_sym_type_of_expression_token1] = ACTIONS(9720), + [aux_sym_unary_expression_token1] = ACTIONS(9720), + [sym_string_literal] = ACTIONS(9722), + [sym_number_literal] = ACTIONS(9722), + [aux_sym_boolean_literal_token1] = ACTIONS(9720), + [aux_sym_boolean_literal_token2] = ACTIONS(9720), + [sym_nothing_literal] = ACTIONS(9720), + [sym_null_literal] = ACTIONS(9720), + [sym_empty_literal] = ACTIONS(9720), + [sym_date_literal] = ACTIONS(9722), + [anon_sym_POUND] = ACTIONS(9720), + }, + [STATE(4149)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4163), + [sym_identifier] = ACTIONS(8565), + [sym_newline] = ACTIONS(8567), + [anon_sym_COLON] = ACTIONS(8567), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8565), + [aux_sym_frm_property_statement_token1] = ACTIONS(8565), + [anon_sym_DOT] = ACTIONS(8565), + [anon_sym_BANG] = ACTIONS(8567), + [aux_sym__attribute_identifier_token1] = ACTIONS(8565), + [aux_sym_option_statement_token3] = ACTIONS(8565), + [aux_sym_type_declaration_token1] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8565), + [aux_sym_enum_declaration_token1] = ACTIONS(8565), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8565), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8565), + [aux_sym_declare_function_statement_token1] = ACTIONS(8565), + [aux_sym_preprocessor_const_token1] = ACTIONS(8565), + [aux_sym__property_get_header_token1] = ACTIONS(8565), + [aux_sym_event_declaration_token1] = ACTIONS(8565), + [sym_static_modifier] = ACTIONS(8565), + [sym__dim_keyword] = ACTIONS(8565), + [sym__redim_keyword] = ACTIONS(8565), + [aux_sym_get_accessor_token1] = ACTIONS(8565), + [aux_sym_set_accessor_token1] = ACTIONS(8565), + [anon_sym_COMMA] = ACTIONS(9724), + [aux_sym_const_declaration_token1] = ACTIONS(8565), + [anon_sym_LPAREN] = ACTIONS(8567), + [aux_sym_as_type_clause_token2] = ACTIONS(8565), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8565), + [aux_sym_visibility_token1] = ACTIONS(8565), + [aux_sym_visibility_token2] = ACTIONS(8565), + [aux_sym_elseif_fragment_token1] = ACTIONS(8565), + [aux_sym_else_fragment_token1] = ACTIONS(8565), + [aux_sym_select_statement_token1] = ACTIONS(8565), + [aux_sym__for_header_token1] = ACTIONS(8565), + [aux_sym_do_statement_token1] = ACTIONS(8565), + [aux_sym_do_condition_token1] = ACTIONS(8565), + [aux_sym_with_statement_token1] = ACTIONS(8565), + [aux_sym_exit_statement_token1] = ACTIONS(8565), + [sym_end_statement] = ACTIONS(8567), + [aux_sym_on_goto_statement_token1] = ACTIONS(8565), + [aux_sym_on_goto_statement_token2] = ACTIONS(8565), + [aux_sym_on_error_statement_token2] = ACTIONS(8565), + [sym__ambiguous_redim_statement] = ACTIONS(8567), + [aux_sym_erase_statement_token1] = ACTIONS(8565), + [aux_sym_open_statement_token1] = ACTIONS(8565), + [aux_sym_file_mode_token2] = ACTIONS(8565), + [aux_sym_file_access_token2] = ACTIONS(8565), + [aux_sym_file_lock_token2] = ACTIONS(8565), + [aux_sym_print_statement_token1] = ACTIONS(8565), + [anon_sym_PLUS] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(8565), + [anon_sym_QMARK] = ACTIONS(8567), + [aux_sym_close_statement_token1] = ACTIONS(8565), + [aux_sym_put_statement_token1] = ACTIONS(8565), + [aux_sym_unlock_statement_token1] = ACTIONS(8565), + [aux_sym_seek_statement_token1] = ACTIONS(8565), + [sym_reset_statement] = ACTIONS(8565), + [aux_sym_raise_event_statement_token1] = ACTIONS(8565), + [sym_stop_statement] = ACTIONS(8565), + [sym_beep_statement] = ACTIONS(8565), + [aux_sym_unload_statement_token1] = ACTIONS(8565), + [aux_sym_def_type_statement_token1] = ACTIONS(8565), + [aux_sym_def_type_statement_token2] = ACTIONS(8565), + [aux_sym_def_type_statement_token3] = ACTIONS(8565), + [aux_sym_def_type_statement_token4] = ACTIONS(8565), + [aux_sym_def_type_statement_token5] = ACTIONS(8565), + [aux_sym_def_type_statement_token6] = ACTIONS(8565), + [aux_sym_def_type_statement_token7] = ACTIONS(8565), + [aux_sym_def_type_statement_token8] = ACTIONS(8565), + [aux_sym_def_type_statement_token9] = ACTIONS(8565), + [aux_sym_def_type_statement_token10] = ACTIONS(8565), + [aux_sym_def_type_statement_token11] = ACTIONS(8565), + [aux_sym_def_type_statement_token12] = ACTIONS(8565), + [aux_sym_def_type_statement_token13] = ACTIONS(8565), + [aux_sym_def_type_statement_token14] = ACTIONS(8565), + [aux_sym_call_statement_token1] = ACTIONS(8565), + [sym__ambiguous_call_statement] = ACTIONS(8565), + [aux_sym_addressof_expression_token1] = ACTIONS(8565), + [aux_sym_type_of_expression_token1] = ACTIONS(8565), + [aux_sym_unary_expression_token1] = ACTIONS(8565), + [sym_string_literal] = ACTIONS(8567), + [sym_number_literal] = ACTIONS(8567), + [aux_sym_boolean_literal_token1] = ACTIONS(8565), + [aux_sym_boolean_literal_token2] = ACTIONS(8565), + [sym_nothing_literal] = ACTIONS(8565), + [sym_null_literal] = ACTIONS(8565), + [sym_empty_literal] = ACTIONS(8565), + [sym_date_literal] = ACTIONS(8567), + [anon_sym_POUND] = ACTIONS(8565), + }, + [STATE(4150)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4164), + [sym_identifier] = ACTIONS(8569), + [sym_newline] = ACTIONS(8571), + [anon_sym_COLON] = ACTIONS(8571), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8569), + [aux_sym_frm_property_statement_token1] = ACTIONS(8569), + [anon_sym_DOT] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(8571), + [aux_sym__attribute_identifier_token1] = ACTIONS(8569), + [aux_sym_option_statement_token3] = ACTIONS(8569), + [aux_sym_type_declaration_token1] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8569), + [aux_sym_enum_declaration_token1] = ACTIONS(8569), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8569), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8569), + [aux_sym_declare_function_statement_token1] = ACTIONS(8569), + [aux_sym_preprocessor_const_token1] = ACTIONS(8569), + [aux_sym__property_get_header_token1] = ACTIONS(8569), + [aux_sym_event_declaration_token1] = ACTIONS(8569), + [sym_static_modifier] = ACTIONS(8569), + [sym__dim_keyword] = ACTIONS(8569), + [sym__redim_keyword] = ACTIONS(8569), + [aux_sym_get_accessor_token1] = ACTIONS(8569), + [aux_sym_set_accessor_token1] = ACTIONS(8569), + [anon_sym_COMMA] = ACTIONS(9724), + [aux_sym_const_declaration_token1] = ACTIONS(8569), + [anon_sym_LPAREN] = ACTIONS(8571), + [aux_sym_as_type_clause_token2] = ACTIONS(8569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8569), + [aux_sym_visibility_token1] = ACTIONS(8569), + [aux_sym_visibility_token2] = ACTIONS(8569), + [aux_sym_elseif_fragment_token1] = ACTIONS(8569), + [aux_sym_else_fragment_token1] = ACTIONS(8569), + [aux_sym_select_statement_token1] = ACTIONS(8569), + [aux_sym__for_header_token1] = ACTIONS(8569), + [aux_sym_do_statement_token1] = ACTIONS(8569), + [aux_sym_do_condition_token1] = ACTIONS(8569), + [aux_sym_with_statement_token1] = ACTIONS(8569), + [aux_sym_exit_statement_token1] = ACTIONS(8569), + [sym_end_statement] = ACTIONS(8571), + [aux_sym_on_goto_statement_token1] = ACTIONS(8569), + [aux_sym_on_goto_statement_token2] = ACTIONS(8569), + [aux_sym_on_error_statement_token2] = ACTIONS(8569), + [sym__ambiguous_redim_statement] = ACTIONS(8571), + [aux_sym_erase_statement_token1] = ACTIONS(8569), + [aux_sym_open_statement_token1] = ACTIONS(8569), + [aux_sym_file_mode_token2] = ACTIONS(8569), + [aux_sym_file_access_token2] = ACTIONS(8569), + [aux_sym_file_lock_token2] = ACTIONS(8569), + [aux_sym_print_statement_token1] = ACTIONS(8569), + [anon_sym_PLUS] = ACTIONS(8571), + [anon_sym_DASH] = ACTIONS(8569), + [anon_sym_QMARK] = ACTIONS(8571), + [aux_sym_close_statement_token1] = ACTIONS(8569), + [aux_sym_put_statement_token1] = ACTIONS(8569), + [aux_sym_unlock_statement_token1] = ACTIONS(8569), + [aux_sym_seek_statement_token1] = ACTIONS(8569), + [sym_reset_statement] = ACTIONS(8569), + [aux_sym_raise_event_statement_token1] = ACTIONS(8569), + [sym_stop_statement] = ACTIONS(8569), + [sym_beep_statement] = ACTIONS(8569), + [aux_sym_unload_statement_token1] = ACTIONS(8569), + [aux_sym_def_type_statement_token1] = ACTIONS(8569), + [aux_sym_def_type_statement_token2] = ACTIONS(8569), + [aux_sym_def_type_statement_token3] = ACTIONS(8569), + [aux_sym_def_type_statement_token4] = ACTIONS(8569), + [aux_sym_def_type_statement_token5] = ACTIONS(8569), + [aux_sym_def_type_statement_token6] = ACTIONS(8569), + [aux_sym_def_type_statement_token7] = ACTIONS(8569), + [aux_sym_def_type_statement_token8] = ACTIONS(8569), + [aux_sym_def_type_statement_token9] = ACTIONS(8569), + [aux_sym_def_type_statement_token10] = ACTIONS(8569), + [aux_sym_def_type_statement_token11] = ACTIONS(8569), + [aux_sym_def_type_statement_token12] = ACTIONS(8569), + [aux_sym_def_type_statement_token13] = ACTIONS(8569), + [aux_sym_def_type_statement_token14] = ACTIONS(8569), + [aux_sym_call_statement_token1] = ACTIONS(8569), + [sym__ambiguous_call_statement] = ACTIONS(8569), + [aux_sym_addressof_expression_token1] = ACTIONS(8569), + [aux_sym_type_of_expression_token1] = ACTIONS(8569), + [aux_sym_unary_expression_token1] = ACTIONS(8569), + [sym_string_literal] = ACTIONS(8571), + [sym_number_literal] = ACTIONS(8571), + [aux_sym_boolean_literal_token1] = ACTIONS(8569), + [aux_sym_boolean_literal_token2] = ACTIONS(8569), + [sym_nothing_literal] = ACTIONS(8569), + [sym_null_literal] = ACTIONS(8569), + [sym_empty_literal] = ACTIONS(8569), + [sym_date_literal] = ACTIONS(8571), + [anon_sym_POUND] = ACTIONS(8569), + }, + [STATE(4151)] = { + [sym_identifier] = ACTIONS(9726), + [sym_newline] = ACTIONS(9728), + [anon_sym_COLON] = ACTIONS(9728), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9726), + [aux_sym_frm_property_statement_token1] = ACTIONS(9726), + [anon_sym_DOT] = ACTIONS(9726), + [anon_sym_BANG] = ACTIONS(9728), + [aux_sym__attribute_identifier_token1] = ACTIONS(9726), + [aux_sym_option_statement_token3] = ACTIONS(9726), + [aux_sym_type_declaration_token1] = ACTIONS(9726), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9726), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9726), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9726), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9726), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9726), + [aux_sym_enum_declaration_token1] = ACTIONS(9726), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9726), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9726), + [aux_sym_declare_function_statement_token1] = ACTIONS(9726), + [aux_sym_preprocessor_const_token1] = ACTIONS(9726), + [aux_sym__property_get_header_token1] = ACTIONS(9726), + [aux_sym_event_declaration_token1] = ACTIONS(9726), + [sym_static_modifier] = ACTIONS(9726), + [sym__dim_keyword] = ACTIONS(9726), + [sym__redim_keyword] = ACTIONS(9726), + [aux_sym_get_accessor_token1] = ACTIONS(9726), + [aux_sym_set_accessor_token1] = ACTIONS(9726), + [aux_sym_const_declaration_token1] = ACTIONS(9726), + [anon_sym_LPAREN] = ACTIONS(9728), + [aux_sym_as_type_clause_token2] = ACTIONS(9726), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9726), + [aux_sym_visibility_token1] = ACTIONS(9726), + [aux_sym_visibility_token2] = ACTIONS(9726), + [aux_sym_elseif_fragment_token1] = ACTIONS(9726), + [aux_sym_else_fragment_token1] = ACTIONS(9726), + [aux_sym_select_statement_token1] = ACTIONS(9726), + [aux_sym__for_header_token1] = ACTIONS(9726), + [aux_sym_do_statement_token1] = ACTIONS(9726), + [aux_sym_do_condition_token1] = ACTIONS(9726), + [aux_sym_with_statement_token1] = ACTIONS(9726), + [aux_sym_exit_statement_token1] = ACTIONS(9726), + [sym_end_statement] = ACTIONS(9728), + [aux_sym_on_goto_statement_token1] = ACTIONS(9726), + [aux_sym_on_goto_statement_token2] = ACTIONS(9726), + [aux_sym_on_error_statement_token2] = ACTIONS(9726), + [sym__ambiguous_redim_statement] = ACTIONS(9728), + [aux_sym_erase_statement_token1] = ACTIONS(9726), + [aux_sym_open_statement_token1] = ACTIONS(9726), + [aux_sym_file_mode_token2] = ACTIONS(9726), + [aux_sym_file_access_token2] = ACTIONS(9726), + [aux_sym_file_lock_token2] = ACTIONS(9726), + [aux_sym_print_statement_token1] = ACTIONS(9726), + [anon_sym_PLUS] = ACTIONS(9728), + [anon_sym_DASH] = ACTIONS(9726), + [anon_sym_QMARK] = ACTIONS(9728), + [aux_sym_close_statement_token1] = ACTIONS(9726), + [aux_sym_put_statement_token1] = ACTIONS(9726), + [aux_sym_unlock_statement_token1] = ACTIONS(9726), + [aux_sym_seek_statement_token1] = ACTIONS(9726), + [sym_reset_statement] = ACTIONS(9726), + [aux_sym_raise_event_statement_token1] = ACTIONS(9726), + [sym_stop_statement] = ACTIONS(9726), + [sym_beep_statement] = ACTIONS(9726), + [aux_sym_unload_statement_token1] = ACTIONS(9726), + [aux_sym_def_type_statement_token1] = ACTIONS(9726), + [aux_sym_def_type_statement_token2] = ACTIONS(9726), + [aux_sym_def_type_statement_token3] = ACTIONS(9726), + [aux_sym_def_type_statement_token4] = ACTIONS(9726), + [aux_sym_def_type_statement_token5] = ACTIONS(9726), + [aux_sym_def_type_statement_token6] = ACTIONS(9726), + [aux_sym_def_type_statement_token7] = ACTIONS(9726), + [aux_sym_def_type_statement_token8] = ACTIONS(9726), + [aux_sym_def_type_statement_token9] = ACTIONS(9726), + [aux_sym_def_type_statement_token10] = ACTIONS(9726), + [aux_sym_def_type_statement_token11] = ACTIONS(9726), + [aux_sym_def_type_statement_token12] = ACTIONS(9726), + [aux_sym_def_type_statement_token13] = ACTIONS(9726), + [aux_sym_def_type_statement_token14] = ACTIONS(9726), + [aux_sym_call_statement_token1] = ACTIONS(9726), + [sym__ambiguous_call_statement] = ACTIONS(9726), + [aux_sym_addressof_expression_token1] = ACTIONS(9726), + [aux_sym_type_of_expression_token1] = ACTIONS(9726), + [aux_sym_unary_expression_token1] = ACTIONS(9726), + [sym_string_literal] = ACTIONS(9728), + [sym_number_literal] = ACTIONS(9728), + [aux_sym_boolean_literal_token1] = ACTIONS(9726), + [aux_sym_boolean_literal_token2] = ACTIONS(9726), + [sym_nothing_literal] = ACTIONS(9726), + [sym_null_literal] = ACTIONS(9726), + [sym_empty_literal] = ACTIONS(9726), + [sym_date_literal] = ACTIONS(9728), + [anon_sym_POUND] = ACTIONS(9726), + }, + [STATE(4152)] = { + [aux_sym_const_declaration_repeat1] = STATE(4167), + [sym_identifier] = ACTIONS(8573), + [sym_newline] = ACTIONS(8575), + [anon_sym_COLON] = ACTIONS(8575), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8573), + [aux_sym_frm_property_statement_token1] = ACTIONS(8573), + [anon_sym_DOT] = ACTIONS(8573), + [anon_sym_BANG] = ACTIONS(8575), + [aux_sym__attribute_identifier_token1] = ACTIONS(8573), + [aux_sym_option_statement_token3] = ACTIONS(8573), + [aux_sym_type_declaration_token1] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8573), + [aux_sym_enum_declaration_token1] = ACTIONS(8573), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8573), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8573), + [aux_sym_declare_function_statement_token1] = ACTIONS(8573), + [aux_sym_preprocessor_const_token1] = ACTIONS(8573), + [aux_sym__property_get_header_token1] = ACTIONS(8573), + [aux_sym_event_declaration_token1] = ACTIONS(8573), + [sym_static_modifier] = ACTIONS(8573), + [sym__dim_keyword] = ACTIONS(8573), + [sym__redim_keyword] = ACTIONS(8573), + [aux_sym_get_accessor_token1] = ACTIONS(8573), + [aux_sym_set_accessor_token1] = ACTIONS(8573), + [anon_sym_COMMA] = ACTIONS(9730), + [aux_sym_const_declaration_token1] = ACTIONS(8573), + [anon_sym_LPAREN] = ACTIONS(8575), + [aux_sym_as_type_clause_token2] = ACTIONS(8573), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8573), + [aux_sym_visibility_token1] = ACTIONS(8573), + [aux_sym_visibility_token2] = ACTIONS(8573), + [aux_sym_elseif_fragment_token1] = ACTIONS(8573), + [aux_sym_else_fragment_token1] = ACTIONS(8573), + [aux_sym_select_statement_token1] = ACTIONS(8573), + [aux_sym__for_header_token1] = ACTIONS(8573), + [aux_sym_do_statement_token1] = ACTIONS(8573), + [aux_sym_do_condition_token1] = ACTIONS(8573), + [aux_sym_with_statement_token1] = ACTIONS(8573), + [aux_sym_exit_statement_token1] = ACTIONS(8573), + [sym_end_statement] = ACTIONS(8575), + [aux_sym_on_goto_statement_token1] = ACTIONS(8573), + [aux_sym_on_goto_statement_token2] = ACTIONS(8573), + [aux_sym_on_error_statement_token2] = ACTIONS(8573), + [sym__ambiguous_redim_statement] = ACTIONS(8575), + [aux_sym_erase_statement_token1] = ACTIONS(8573), + [aux_sym_open_statement_token1] = ACTIONS(8573), + [aux_sym_file_mode_token2] = ACTIONS(8573), + [aux_sym_file_access_token2] = ACTIONS(8573), + [aux_sym_file_lock_token2] = ACTIONS(8573), + [aux_sym_print_statement_token1] = ACTIONS(8573), + [anon_sym_PLUS] = ACTIONS(8575), + [anon_sym_DASH] = ACTIONS(8573), + [anon_sym_QMARK] = ACTIONS(8575), + [aux_sym_close_statement_token1] = ACTIONS(8573), + [aux_sym_put_statement_token1] = ACTIONS(8573), + [aux_sym_unlock_statement_token1] = ACTIONS(8573), + [aux_sym_seek_statement_token1] = ACTIONS(8573), + [sym_reset_statement] = ACTIONS(8573), + [aux_sym_raise_event_statement_token1] = ACTIONS(8573), + [sym_stop_statement] = ACTIONS(8573), + [sym_beep_statement] = ACTIONS(8573), + [aux_sym_unload_statement_token1] = ACTIONS(8573), + [aux_sym_def_type_statement_token1] = ACTIONS(8573), + [aux_sym_def_type_statement_token2] = ACTIONS(8573), + [aux_sym_def_type_statement_token3] = ACTIONS(8573), + [aux_sym_def_type_statement_token4] = ACTIONS(8573), + [aux_sym_def_type_statement_token5] = ACTIONS(8573), + [aux_sym_def_type_statement_token6] = ACTIONS(8573), + [aux_sym_def_type_statement_token7] = ACTIONS(8573), + [aux_sym_def_type_statement_token8] = ACTIONS(8573), + [aux_sym_def_type_statement_token9] = ACTIONS(8573), + [aux_sym_def_type_statement_token10] = ACTIONS(8573), + [aux_sym_def_type_statement_token11] = ACTIONS(8573), + [aux_sym_def_type_statement_token12] = ACTIONS(8573), + [aux_sym_def_type_statement_token13] = ACTIONS(8573), + [aux_sym_def_type_statement_token14] = ACTIONS(8573), + [aux_sym_call_statement_token1] = ACTIONS(8573), + [sym__ambiguous_call_statement] = ACTIONS(8573), + [aux_sym_addressof_expression_token1] = ACTIONS(8573), + [aux_sym_type_of_expression_token1] = ACTIONS(8573), + [aux_sym_unary_expression_token1] = ACTIONS(8573), + [sym_string_literal] = ACTIONS(8575), + [sym_number_literal] = ACTIONS(8575), + [aux_sym_boolean_literal_token1] = ACTIONS(8573), + [aux_sym_boolean_literal_token2] = ACTIONS(8573), + [sym_nothing_literal] = ACTIONS(8573), + [sym_null_literal] = ACTIONS(8573), + [sym_empty_literal] = ACTIONS(8573), + [sym_date_literal] = ACTIONS(8575), + [anon_sym_POUND] = ACTIONS(8573), + }, + [STATE(4153)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4178), + [sym_identifier] = ACTIONS(8583), + [sym_newline] = ACTIONS(8585), + [anon_sym_COLON] = ACTIONS(8585), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8583), + [aux_sym_frm_property_statement_token1] = ACTIONS(8583), + [anon_sym_DOT] = ACTIONS(8583), + [anon_sym_BANG] = ACTIONS(8585), + [aux_sym__attribute_identifier_token1] = ACTIONS(8583), + [aux_sym_option_statement_token3] = ACTIONS(8583), + [aux_sym_type_declaration_token1] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8583), + [aux_sym_enum_declaration_token1] = ACTIONS(8583), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8583), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8583), + [aux_sym_declare_function_statement_token1] = ACTIONS(8583), + [aux_sym_preprocessor_const_token1] = ACTIONS(8583), + [aux_sym__property_get_header_token1] = ACTIONS(8583), + [aux_sym_event_declaration_token1] = ACTIONS(8583), + [sym_static_modifier] = ACTIONS(8583), + [sym__dim_keyword] = ACTIONS(8583), + [sym__redim_keyword] = ACTIONS(8583), + [aux_sym_get_accessor_token1] = ACTIONS(8583), + [aux_sym_set_accessor_token1] = ACTIONS(8583), + [anon_sym_COMMA] = ACTIONS(9724), + [aux_sym_const_declaration_token1] = ACTIONS(8583), + [anon_sym_LPAREN] = ACTIONS(8585), + [aux_sym_as_type_clause_token2] = ACTIONS(8583), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8583), + [aux_sym_visibility_token1] = ACTIONS(8583), + [aux_sym_visibility_token2] = ACTIONS(8583), + [aux_sym_elseif_fragment_token1] = ACTIONS(8583), + [aux_sym_else_fragment_token1] = ACTIONS(8583), + [aux_sym_select_statement_token1] = ACTIONS(8583), + [aux_sym__for_header_token1] = ACTIONS(8583), + [aux_sym_do_statement_token1] = ACTIONS(8583), + [aux_sym_do_condition_token1] = ACTIONS(8583), + [aux_sym_with_statement_token1] = ACTIONS(8583), + [aux_sym_exit_statement_token1] = ACTIONS(8583), + [sym_end_statement] = ACTIONS(8585), + [aux_sym_on_goto_statement_token1] = ACTIONS(8583), + [aux_sym_on_goto_statement_token2] = ACTIONS(8583), + [aux_sym_on_error_statement_token2] = ACTIONS(8583), + [sym__ambiguous_redim_statement] = ACTIONS(8585), + [aux_sym_erase_statement_token1] = ACTIONS(8583), + [aux_sym_open_statement_token1] = ACTIONS(8583), + [aux_sym_file_mode_token2] = ACTIONS(8583), + [aux_sym_file_access_token2] = ACTIONS(8583), + [aux_sym_file_lock_token2] = ACTIONS(8583), + [aux_sym_print_statement_token1] = ACTIONS(8583), + [anon_sym_PLUS] = ACTIONS(8585), + [anon_sym_DASH] = ACTIONS(8583), + [anon_sym_QMARK] = ACTIONS(8585), + [aux_sym_close_statement_token1] = ACTIONS(8583), + [aux_sym_put_statement_token1] = ACTIONS(8583), + [aux_sym_unlock_statement_token1] = ACTIONS(8583), + [aux_sym_seek_statement_token1] = ACTIONS(8583), + [sym_reset_statement] = ACTIONS(8583), + [aux_sym_raise_event_statement_token1] = ACTIONS(8583), + [sym_stop_statement] = ACTIONS(8583), + [sym_beep_statement] = ACTIONS(8583), + [aux_sym_unload_statement_token1] = ACTIONS(8583), + [aux_sym_def_type_statement_token1] = ACTIONS(8583), + [aux_sym_def_type_statement_token2] = ACTIONS(8583), + [aux_sym_def_type_statement_token3] = ACTIONS(8583), + [aux_sym_def_type_statement_token4] = ACTIONS(8583), + [aux_sym_def_type_statement_token5] = ACTIONS(8583), + [aux_sym_def_type_statement_token6] = ACTIONS(8583), + [aux_sym_def_type_statement_token7] = ACTIONS(8583), + [aux_sym_def_type_statement_token8] = ACTIONS(8583), + [aux_sym_def_type_statement_token9] = ACTIONS(8583), + [aux_sym_def_type_statement_token10] = ACTIONS(8583), + [aux_sym_def_type_statement_token11] = ACTIONS(8583), + [aux_sym_def_type_statement_token12] = ACTIONS(8583), + [aux_sym_def_type_statement_token13] = ACTIONS(8583), + [aux_sym_def_type_statement_token14] = ACTIONS(8583), + [aux_sym_call_statement_token1] = ACTIONS(8583), + [sym__ambiguous_call_statement] = ACTIONS(8583), + [aux_sym_addressof_expression_token1] = ACTIONS(8583), + [aux_sym_type_of_expression_token1] = ACTIONS(8583), + [aux_sym_unary_expression_token1] = ACTIONS(8583), + [sym_string_literal] = ACTIONS(8585), + [sym_number_literal] = ACTIONS(8585), + [aux_sym_boolean_literal_token1] = ACTIONS(8583), + [aux_sym_boolean_literal_token2] = ACTIONS(8583), + [sym_nothing_literal] = ACTIONS(8583), + [sym_null_literal] = ACTIONS(8583), + [sym_empty_literal] = ACTIONS(8583), + [sym_date_literal] = ACTIONS(8585), + [anon_sym_POUND] = ACTIONS(8583), + }, + [STATE(4154)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_declaration_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_enum_declaration_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4593), + [aux_sym_declare_function_statement_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [aux_sym__property_get_header_token1] = ACTIONS(4593), + [aux_sym_event_declaration_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(4155)] = { + [sym_identifier] = ACTIONS(9732), + [sym_newline] = ACTIONS(9734), + [anon_sym_COLON] = ACTIONS(9734), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9732), + [aux_sym_frm_property_statement_token1] = ACTIONS(9732), + [anon_sym_DOT] = ACTIONS(9732), + [anon_sym_BANG] = ACTIONS(9734), + [aux_sym__attribute_identifier_token1] = ACTIONS(9732), + [aux_sym_option_statement_token3] = ACTIONS(9732), + [aux_sym_type_declaration_token1] = ACTIONS(9732), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9732), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9732), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9732), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9732), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9732), + [aux_sym_enum_declaration_token1] = ACTIONS(9732), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9732), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9732), + [aux_sym_declare_function_statement_token1] = ACTIONS(9732), + [aux_sym_preprocessor_const_token1] = ACTIONS(9732), + [aux_sym__property_get_header_token1] = ACTIONS(9732), + [aux_sym_event_declaration_token1] = ACTIONS(9732), + [sym_static_modifier] = ACTIONS(9732), + [sym__dim_keyword] = ACTIONS(9732), + [sym__redim_keyword] = ACTIONS(9732), + [aux_sym_get_accessor_token1] = ACTIONS(9732), + [aux_sym_set_accessor_token1] = ACTIONS(9732), + [aux_sym_const_declaration_token1] = ACTIONS(9732), + [anon_sym_LPAREN] = ACTIONS(9734), + [aux_sym_as_type_clause_token2] = ACTIONS(9732), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9732), + [aux_sym_visibility_token1] = ACTIONS(9732), + [aux_sym_visibility_token2] = ACTIONS(9732), + [aux_sym_elseif_fragment_token1] = ACTIONS(9732), + [aux_sym_else_fragment_token1] = ACTIONS(9732), + [aux_sym_select_statement_token1] = ACTIONS(9732), + [aux_sym__for_header_token1] = ACTIONS(9732), + [aux_sym_do_statement_token1] = ACTIONS(9732), + [aux_sym_do_condition_token1] = ACTIONS(9732), + [aux_sym_with_statement_token1] = ACTIONS(9732), + [aux_sym_exit_statement_token1] = ACTIONS(9732), + [sym_end_statement] = ACTIONS(9734), + [aux_sym_on_goto_statement_token1] = ACTIONS(9732), + [aux_sym_on_goto_statement_token2] = ACTIONS(9732), + [aux_sym_on_error_statement_token2] = ACTIONS(9732), + [sym__ambiguous_redim_statement] = ACTIONS(9734), + [aux_sym_erase_statement_token1] = ACTIONS(9732), + [aux_sym_open_statement_token1] = ACTIONS(9732), + [aux_sym_file_mode_token2] = ACTIONS(9732), + [aux_sym_file_access_token2] = ACTIONS(9732), + [aux_sym_file_lock_token2] = ACTIONS(9732), + [aux_sym_print_statement_token1] = ACTIONS(9732), + [anon_sym_PLUS] = ACTIONS(9734), + [anon_sym_DASH] = ACTIONS(9732), + [anon_sym_QMARK] = ACTIONS(9734), + [aux_sym_close_statement_token1] = ACTIONS(9732), + [aux_sym_put_statement_token1] = ACTIONS(9732), + [aux_sym_unlock_statement_token1] = ACTIONS(9732), + [aux_sym_seek_statement_token1] = ACTIONS(9732), + [sym_reset_statement] = ACTIONS(9732), + [aux_sym_raise_event_statement_token1] = ACTIONS(9732), + [sym_stop_statement] = ACTIONS(9732), + [sym_beep_statement] = ACTIONS(9732), + [aux_sym_unload_statement_token1] = ACTIONS(9732), + [aux_sym_def_type_statement_token1] = ACTIONS(9732), + [aux_sym_def_type_statement_token2] = ACTIONS(9732), + [aux_sym_def_type_statement_token3] = ACTIONS(9732), + [aux_sym_def_type_statement_token4] = ACTIONS(9732), + [aux_sym_def_type_statement_token5] = ACTIONS(9732), + [aux_sym_def_type_statement_token6] = ACTIONS(9732), + [aux_sym_def_type_statement_token7] = ACTIONS(9732), + [aux_sym_def_type_statement_token8] = ACTIONS(9732), + [aux_sym_def_type_statement_token9] = ACTIONS(9732), + [aux_sym_def_type_statement_token10] = ACTIONS(9732), + [aux_sym_def_type_statement_token11] = ACTIONS(9732), + [aux_sym_def_type_statement_token12] = ACTIONS(9732), + [aux_sym_def_type_statement_token13] = ACTIONS(9732), + [aux_sym_def_type_statement_token14] = ACTIONS(9732), + [aux_sym_call_statement_token1] = ACTIONS(9732), + [sym__ambiguous_call_statement] = ACTIONS(9732), + [aux_sym_addressof_expression_token1] = ACTIONS(9732), + [aux_sym_type_of_expression_token1] = ACTIONS(9732), + [aux_sym_unary_expression_token1] = ACTIONS(9732), + [sym_string_literal] = ACTIONS(9734), + [sym_number_literal] = ACTIONS(9734), + [aux_sym_boolean_literal_token1] = ACTIONS(9732), + [aux_sym_boolean_literal_token2] = ACTIONS(9732), + [sym_nothing_literal] = ACTIONS(9732), + [sym_null_literal] = ACTIONS(9732), + [sym_empty_literal] = ACTIONS(9732), + [sym_date_literal] = ACTIONS(9734), + [anon_sym_POUND] = ACTIONS(9732), + }, + [STATE(4156)] = { + [sym_identifier] = ACTIONS(9736), + [sym_newline] = ACTIONS(9738), + [anon_sym_COLON] = ACTIONS(9738), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9736), + [aux_sym_frm_property_statement_token1] = ACTIONS(9736), + [anon_sym_DOT] = ACTIONS(9736), + [anon_sym_BANG] = ACTIONS(9738), + [aux_sym__attribute_identifier_token1] = ACTIONS(9736), + [aux_sym_option_statement_token3] = ACTIONS(9736), + [aux_sym_type_declaration_token1] = ACTIONS(9736), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9736), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9736), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9736), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9736), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9736), + [aux_sym_enum_declaration_token1] = ACTIONS(9736), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9736), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9736), + [aux_sym_declare_function_statement_token1] = ACTIONS(9736), + [aux_sym_preprocessor_const_token1] = ACTIONS(9736), + [aux_sym__property_get_header_token1] = ACTIONS(9736), + [aux_sym_event_declaration_token1] = ACTIONS(9736), + [sym_static_modifier] = ACTIONS(9736), + [sym__dim_keyword] = ACTIONS(9736), + [sym__redim_keyword] = ACTIONS(9736), + [aux_sym_get_accessor_token1] = ACTIONS(9736), + [aux_sym_set_accessor_token1] = ACTIONS(9736), + [aux_sym_const_declaration_token1] = ACTIONS(9736), + [anon_sym_LPAREN] = ACTIONS(9738), + [aux_sym_as_type_clause_token2] = ACTIONS(9736), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9736), + [aux_sym_visibility_token1] = ACTIONS(9736), + [aux_sym_visibility_token2] = ACTIONS(9736), + [aux_sym_elseif_fragment_token1] = ACTIONS(9736), + [aux_sym_else_fragment_token1] = ACTIONS(9736), + [aux_sym_select_statement_token1] = ACTIONS(9736), + [aux_sym__for_header_token1] = ACTIONS(9736), + [aux_sym_do_statement_token1] = ACTIONS(9736), + [aux_sym_do_condition_token1] = ACTIONS(9736), + [aux_sym_with_statement_token1] = ACTIONS(9736), + [aux_sym_exit_statement_token1] = ACTIONS(9736), + [sym_end_statement] = ACTIONS(9738), + [aux_sym_on_goto_statement_token1] = ACTIONS(9736), + [aux_sym_on_goto_statement_token2] = ACTIONS(9736), + [aux_sym_on_error_statement_token2] = ACTIONS(9736), + [sym__ambiguous_redim_statement] = ACTIONS(9738), + [aux_sym_erase_statement_token1] = ACTIONS(9736), + [aux_sym_open_statement_token1] = ACTIONS(9736), + [aux_sym_file_mode_token2] = ACTIONS(9736), + [aux_sym_file_access_token2] = ACTIONS(9736), + [aux_sym_file_lock_token2] = ACTIONS(9736), + [aux_sym_print_statement_token1] = ACTIONS(9736), + [anon_sym_PLUS] = ACTIONS(9738), + [anon_sym_DASH] = ACTIONS(9736), + [anon_sym_QMARK] = ACTIONS(9738), + [aux_sym_close_statement_token1] = ACTIONS(9736), + [aux_sym_put_statement_token1] = ACTIONS(9736), + [aux_sym_unlock_statement_token1] = ACTIONS(9736), + [aux_sym_seek_statement_token1] = ACTIONS(9736), + [sym_reset_statement] = ACTIONS(9736), + [aux_sym_raise_event_statement_token1] = ACTIONS(9736), + [sym_stop_statement] = ACTIONS(9736), + [sym_beep_statement] = ACTIONS(9736), + [aux_sym_unload_statement_token1] = ACTIONS(9736), + [aux_sym_def_type_statement_token1] = ACTIONS(9736), + [aux_sym_def_type_statement_token2] = ACTIONS(9736), + [aux_sym_def_type_statement_token3] = ACTIONS(9736), + [aux_sym_def_type_statement_token4] = ACTIONS(9736), + [aux_sym_def_type_statement_token5] = ACTIONS(9736), + [aux_sym_def_type_statement_token6] = ACTIONS(9736), + [aux_sym_def_type_statement_token7] = ACTIONS(9736), + [aux_sym_def_type_statement_token8] = ACTIONS(9736), + [aux_sym_def_type_statement_token9] = ACTIONS(9736), + [aux_sym_def_type_statement_token10] = ACTIONS(9736), + [aux_sym_def_type_statement_token11] = ACTIONS(9736), + [aux_sym_def_type_statement_token12] = ACTIONS(9736), + [aux_sym_def_type_statement_token13] = ACTIONS(9736), + [aux_sym_def_type_statement_token14] = ACTIONS(9736), + [aux_sym_call_statement_token1] = ACTIONS(9736), + [sym__ambiguous_call_statement] = ACTIONS(9736), + [aux_sym_addressof_expression_token1] = ACTIONS(9736), + [aux_sym_type_of_expression_token1] = ACTIONS(9736), + [aux_sym_unary_expression_token1] = ACTIONS(9736), + [sym_string_literal] = ACTIONS(9738), + [sym_number_literal] = ACTIONS(9738), + [aux_sym_boolean_literal_token1] = ACTIONS(9736), + [aux_sym_boolean_literal_token2] = ACTIONS(9736), + [sym_nothing_literal] = ACTIONS(9736), + [sym_null_literal] = ACTIONS(9736), + [sym_empty_literal] = ACTIONS(9736), + [sym_date_literal] = ACTIONS(9738), + [anon_sym_POUND] = ACTIONS(9736), + }, + [STATE(4157)] = { + [sym_identifier] = ACTIONS(9740), + [sym_newline] = ACTIONS(9742), + [anon_sym_COLON] = ACTIONS(9742), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9740), + [aux_sym_frm_property_statement_token1] = ACTIONS(9740), + [anon_sym_DOT] = ACTIONS(9740), + [anon_sym_BANG] = ACTIONS(9742), + [aux_sym__attribute_identifier_token1] = ACTIONS(9740), + [aux_sym_option_statement_token3] = ACTIONS(9740), + [aux_sym_type_declaration_token1] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9740), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9740), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9740), + [aux_sym_enum_declaration_token1] = ACTIONS(9740), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9740), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9740), + [aux_sym_declare_function_statement_token1] = ACTIONS(9740), + [aux_sym_preprocessor_const_token1] = ACTIONS(9740), + [aux_sym__property_get_header_token1] = ACTIONS(9740), + [aux_sym_event_declaration_token1] = ACTIONS(9740), + [sym_static_modifier] = ACTIONS(9740), + [sym__dim_keyword] = ACTIONS(9740), + [sym__redim_keyword] = ACTIONS(9740), + [aux_sym_get_accessor_token1] = ACTIONS(9740), + [aux_sym_set_accessor_token1] = ACTIONS(9740), + [aux_sym_const_declaration_token1] = ACTIONS(9740), + [anon_sym_LPAREN] = ACTIONS(9742), + [aux_sym_as_type_clause_token2] = ACTIONS(9740), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9740), + [aux_sym_visibility_token1] = ACTIONS(9740), + [aux_sym_visibility_token2] = ACTIONS(9740), + [aux_sym_elseif_fragment_token1] = ACTIONS(9740), + [aux_sym_else_fragment_token1] = ACTIONS(9740), + [aux_sym_select_statement_token1] = ACTIONS(9740), + [aux_sym__for_header_token1] = ACTIONS(9740), + [aux_sym_do_statement_token1] = ACTIONS(9740), + [aux_sym_do_condition_token1] = ACTIONS(9740), + [aux_sym_with_statement_token1] = ACTIONS(9740), + [aux_sym_exit_statement_token1] = ACTIONS(9740), + [sym_end_statement] = ACTIONS(9742), + [aux_sym_on_goto_statement_token1] = ACTIONS(9740), + [aux_sym_on_goto_statement_token2] = ACTIONS(9740), + [aux_sym_on_error_statement_token2] = ACTIONS(9740), + [sym__ambiguous_redim_statement] = ACTIONS(9742), + [aux_sym_erase_statement_token1] = ACTIONS(9740), + [aux_sym_open_statement_token1] = ACTIONS(9740), + [aux_sym_file_mode_token2] = ACTIONS(9740), + [aux_sym_file_access_token2] = ACTIONS(9740), + [aux_sym_file_lock_token2] = ACTIONS(9740), + [aux_sym_print_statement_token1] = ACTIONS(9740), + [anon_sym_PLUS] = ACTIONS(9742), + [anon_sym_DASH] = ACTIONS(9740), + [anon_sym_QMARK] = ACTIONS(9742), + [aux_sym_close_statement_token1] = ACTIONS(9740), + [aux_sym_put_statement_token1] = ACTIONS(9740), + [aux_sym_unlock_statement_token1] = ACTIONS(9740), + [aux_sym_seek_statement_token1] = ACTIONS(9740), + [sym_reset_statement] = ACTIONS(9740), + [aux_sym_raise_event_statement_token1] = ACTIONS(9740), + [sym_stop_statement] = ACTIONS(9740), + [sym_beep_statement] = ACTIONS(9740), + [aux_sym_unload_statement_token1] = ACTIONS(9740), + [aux_sym_def_type_statement_token1] = ACTIONS(9740), + [aux_sym_def_type_statement_token2] = ACTIONS(9740), + [aux_sym_def_type_statement_token3] = ACTIONS(9740), + [aux_sym_def_type_statement_token4] = ACTIONS(9740), + [aux_sym_def_type_statement_token5] = ACTIONS(9740), + [aux_sym_def_type_statement_token6] = ACTIONS(9740), + [aux_sym_def_type_statement_token7] = ACTIONS(9740), + [aux_sym_def_type_statement_token8] = ACTIONS(9740), + [aux_sym_def_type_statement_token9] = ACTIONS(9740), + [aux_sym_def_type_statement_token10] = ACTIONS(9740), + [aux_sym_def_type_statement_token11] = ACTIONS(9740), + [aux_sym_def_type_statement_token12] = ACTIONS(9740), + [aux_sym_def_type_statement_token13] = ACTIONS(9740), + [aux_sym_def_type_statement_token14] = ACTIONS(9740), + [aux_sym_call_statement_token1] = ACTIONS(9740), + [sym__ambiguous_call_statement] = ACTIONS(9740), + [aux_sym_addressof_expression_token1] = ACTIONS(9740), + [aux_sym_type_of_expression_token1] = ACTIONS(9740), + [aux_sym_unary_expression_token1] = ACTIONS(9740), + [sym_string_literal] = ACTIONS(9742), + [sym_number_literal] = ACTIONS(9742), + [aux_sym_boolean_literal_token1] = ACTIONS(9740), + [aux_sym_boolean_literal_token2] = ACTIONS(9740), + [sym_nothing_literal] = ACTIONS(9740), + [sym_null_literal] = ACTIONS(9740), + [sym_empty_literal] = ACTIONS(9740), + [sym_date_literal] = ACTIONS(9742), + [anon_sym_POUND] = ACTIONS(9740), + }, + [STATE(4158)] = { + [sym_identifier] = ACTIONS(9744), + [sym_newline] = ACTIONS(9746), + [anon_sym_COLON] = ACTIONS(9746), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9744), + [aux_sym_frm_property_statement_token1] = ACTIONS(9744), + [anon_sym_DOT] = ACTIONS(9744), + [anon_sym_BANG] = ACTIONS(9746), + [aux_sym__attribute_identifier_token1] = ACTIONS(9744), + [aux_sym_option_statement_token3] = ACTIONS(9744), + [aux_sym_type_declaration_token1] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9744), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9744), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9744), + [aux_sym_enum_declaration_token1] = ACTIONS(9744), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9744), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9744), + [aux_sym_declare_function_statement_token1] = ACTIONS(9744), + [aux_sym_preprocessor_const_token1] = ACTIONS(9744), + [aux_sym__property_get_header_token1] = ACTIONS(9744), + [aux_sym_event_declaration_token1] = ACTIONS(9744), + [sym_static_modifier] = ACTIONS(9744), + [sym__dim_keyword] = ACTIONS(9744), + [sym__redim_keyword] = ACTIONS(9744), + [aux_sym_get_accessor_token1] = ACTIONS(9744), + [aux_sym_set_accessor_token1] = ACTIONS(9744), + [aux_sym_const_declaration_token1] = ACTIONS(9744), + [anon_sym_LPAREN] = ACTIONS(9746), + [aux_sym_as_type_clause_token2] = ACTIONS(9744), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9744), + [aux_sym_visibility_token1] = ACTIONS(9744), + [aux_sym_visibility_token2] = ACTIONS(9744), + [aux_sym_elseif_fragment_token1] = ACTIONS(9744), + [aux_sym_else_fragment_token1] = ACTIONS(9744), + [aux_sym_select_statement_token1] = ACTIONS(9744), + [aux_sym__for_header_token1] = ACTIONS(9744), + [aux_sym_do_statement_token1] = ACTIONS(9744), + [aux_sym_do_condition_token1] = ACTIONS(9744), + [aux_sym_with_statement_token1] = ACTIONS(9744), + [aux_sym_exit_statement_token1] = ACTIONS(9744), + [sym_end_statement] = ACTIONS(9746), + [aux_sym_on_goto_statement_token1] = ACTIONS(9744), + [aux_sym_on_goto_statement_token2] = ACTIONS(9744), + [aux_sym_on_error_statement_token2] = ACTIONS(9744), + [sym__ambiguous_redim_statement] = ACTIONS(9746), + [aux_sym_erase_statement_token1] = ACTIONS(9744), + [aux_sym_open_statement_token1] = ACTIONS(9744), + [aux_sym_file_mode_token2] = ACTIONS(9744), + [aux_sym_file_access_token2] = ACTIONS(9744), + [aux_sym_file_lock_token2] = ACTIONS(9744), + [aux_sym_print_statement_token1] = ACTIONS(9744), + [anon_sym_PLUS] = ACTIONS(9746), + [anon_sym_DASH] = ACTIONS(9744), + [anon_sym_QMARK] = ACTIONS(9746), + [aux_sym_close_statement_token1] = ACTIONS(9744), + [aux_sym_put_statement_token1] = ACTIONS(9744), + [aux_sym_unlock_statement_token1] = ACTIONS(9744), + [aux_sym_seek_statement_token1] = ACTIONS(9744), + [sym_reset_statement] = ACTIONS(9744), + [aux_sym_raise_event_statement_token1] = ACTIONS(9744), + [sym_stop_statement] = ACTIONS(9744), + [sym_beep_statement] = ACTIONS(9744), + [aux_sym_unload_statement_token1] = ACTIONS(9744), + [aux_sym_def_type_statement_token1] = ACTIONS(9744), + [aux_sym_def_type_statement_token2] = ACTIONS(9744), + [aux_sym_def_type_statement_token3] = ACTIONS(9744), + [aux_sym_def_type_statement_token4] = ACTIONS(9744), + [aux_sym_def_type_statement_token5] = ACTIONS(9744), + [aux_sym_def_type_statement_token6] = ACTIONS(9744), + [aux_sym_def_type_statement_token7] = ACTIONS(9744), + [aux_sym_def_type_statement_token8] = ACTIONS(9744), + [aux_sym_def_type_statement_token9] = ACTIONS(9744), + [aux_sym_def_type_statement_token10] = ACTIONS(9744), + [aux_sym_def_type_statement_token11] = ACTIONS(9744), + [aux_sym_def_type_statement_token12] = ACTIONS(9744), + [aux_sym_def_type_statement_token13] = ACTIONS(9744), + [aux_sym_def_type_statement_token14] = ACTIONS(9744), + [aux_sym_call_statement_token1] = ACTIONS(9744), + [sym__ambiguous_call_statement] = ACTIONS(9744), + [aux_sym_addressof_expression_token1] = ACTIONS(9744), + [aux_sym_type_of_expression_token1] = ACTIONS(9744), + [aux_sym_unary_expression_token1] = ACTIONS(9744), + [sym_string_literal] = ACTIONS(9746), + [sym_number_literal] = ACTIONS(9746), + [aux_sym_boolean_literal_token1] = ACTIONS(9744), + [aux_sym_boolean_literal_token2] = ACTIONS(9744), + [sym_nothing_literal] = ACTIONS(9744), + [sym_null_literal] = ACTIONS(9744), + [sym_empty_literal] = ACTIONS(9744), + [sym_date_literal] = ACTIONS(9746), + [anon_sym_POUND] = ACTIONS(9744), + }, + [STATE(4159)] = { + [sym_identifier] = ACTIONS(9748), + [sym_newline] = ACTIONS(9750), + [anon_sym_COLON] = ACTIONS(9750), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9748), + [aux_sym_frm_property_statement_token1] = ACTIONS(9748), + [anon_sym_DOT] = ACTIONS(9748), + [anon_sym_BANG] = ACTIONS(9750), + [aux_sym__attribute_identifier_token1] = ACTIONS(9748), + [aux_sym_option_statement_token3] = ACTIONS(9748), + [aux_sym_type_declaration_token1] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9748), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9748), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9748), + [aux_sym_enum_declaration_token1] = ACTIONS(9748), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9748), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9748), + [aux_sym_declare_function_statement_token1] = ACTIONS(9748), + [aux_sym_preprocessor_const_token1] = ACTIONS(9748), + [aux_sym__property_get_header_token1] = ACTIONS(9748), + [aux_sym_event_declaration_token1] = ACTIONS(9748), + [sym_static_modifier] = ACTIONS(9748), + [sym__dim_keyword] = ACTIONS(9748), + [sym__redim_keyword] = ACTIONS(9748), + [aux_sym_get_accessor_token1] = ACTIONS(9748), + [aux_sym_set_accessor_token1] = ACTIONS(9748), + [aux_sym_const_declaration_token1] = ACTIONS(9748), + [anon_sym_LPAREN] = ACTIONS(9750), + [aux_sym_as_type_clause_token2] = ACTIONS(9748), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9748), + [aux_sym_visibility_token1] = ACTIONS(9748), + [aux_sym_visibility_token2] = ACTIONS(9748), + [aux_sym_elseif_fragment_token1] = ACTIONS(9748), + [aux_sym_else_fragment_token1] = ACTIONS(9748), + [aux_sym_select_statement_token1] = ACTIONS(9748), + [aux_sym__for_header_token1] = ACTIONS(9748), + [aux_sym_do_statement_token1] = ACTIONS(9748), + [aux_sym_do_condition_token1] = ACTIONS(9748), + [aux_sym_with_statement_token1] = ACTIONS(9748), + [aux_sym_exit_statement_token1] = ACTIONS(9748), + [sym_end_statement] = ACTIONS(9750), + [aux_sym_on_goto_statement_token1] = ACTIONS(9748), + [aux_sym_on_goto_statement_token2] = ACTIONS(9748), + [aux_sym_on_error_statement_token2] = ACTIONS(9748), + [sym__ambiguous_redim_statement] = ACTIONS(9750), + [aux_sym_erase_statement_token1] = ACTIONS(9748), + [aux_sym_open_statement_token1] = ACTIONS(9748), + [aux_sym_file_mode_token2] = ACTIONS(9748), + [aux_sym_file_access_token2] = ACTIONS(9748), + [aux_sym_file_lock_token2] = ACTIONS(9748), + [aux_sym_print_statement_token1] = ACTIONS(9748), + [anon_sym_PLUS] = ACTIONS(9750), + [anon_sym_DASH] = ACTIONS(9748), + [anon_sym_QMARK] = ACTIONS(9750), + [aux_sym_close_statement_token1] = ACTIONS(9748), + [aux_sym_put_statement_token1] = ACTIONS(9748), + [aux_sym_unlock_statement_token1] = ACTIONS(9748), + [aux_sym_seek_statement_token1] = ACTIONS(9748), + [sym_reset_statement] = ACTIONS(9748), + [aux_sym_raise_event_statement_token1] = ACTIONS(9748), + [sym_stop_statement] = ACTIONS(9748), + [sym_beep_statement] = ACTIONS(9748), + [aux_sym_unload_statement_token1] = ACTIONS(9748), + [aux_sym_def_type_statement_token1] = ACTIONS(9748), + [aux_sym_def_type_statement_token2] = ACTIONS(9748), + [aux_sym_def_type_statement_token3] = ACTIONS(9748), + [aux_sym_def_type_statement_token4] = ACTIONS(9748), + [aux_sym_def_type_statement_token5] = ACTIONS(9748), + [aux_sym_def_type_statement_token6] = ACTIONS(9748), + [aux_sym_def_type_statement_token7] = ACTIONS(9748), + [aux_sym_def_type_statement_token8] = ACTIONS(9748), + [aux_sym_def_type_statement_token9] = ACTIONS(9748), + [aux_sym_def_type_statement_token10] = ACTIONS(9748), + [aux_sym_def_type_statement_token11] = ACTIONS(9748), + [aux_sym_def_type_statement_token12] = ACTIONS(9748), + [aux_sym_def_type_statement_token13] = ACTIONS(9748), + [aux_sym_def_type_statement_token14] = ACTIONS(9748), + [aux_sym_call_statement_token1] = ACTIONS(9748), + [sym__ambiguous_call_statement] = ACTIONS(9748), + [aux_sym_addressof_expression_token1] = ACTIONS(9748), + [aux_sym_type_of_expression_token1] = ACTIONS(9748), + [aux_sym_unary_expression_token1] = ACTIONS(9748), + [sym_string_literal] = ACTIONS(9750), + [sym_number_literal] = ACTIONS(9750), + [aux_sym_boolean_literal_token1] = ACTIONS(9748), + [aux_sym_boolean_literal_token2] = ACTIONS(9748), + [sym_nothing_literal] = ACTIONS(9748), + [sym_null_literal] = ACTIONS(9748), + [sym_empty_literal] = ACTIONS(9748), + [sym_date_literal] = ACTIONS(9750), + [anon_sym_POUND] = ACTIONS(9748), + }, + [STATE(4160)] = { + [sym_identifier] = ACTIONS(9752), + [sym_newline] = ACTIONS(9754), + [anon_sym_COLON] = ACTIONS(9754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9752), + [aux_sym_frm_property_statement_token1] = ACTIONS(9752), + [anon_sym_DOT] = ACTIONS(9752), + [anon_sym_BANG] = ACTIONS(9754), + [aux_sym__attribute_identifier_token1] = ACTIONS(9752), + [aux_sym_option_statement_token3] = ACTIONS(9752), + [aux_sym_type_declaration_token1] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9752), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9752), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9752), + [aux_sym_enum_declaration_token1] = ACTIONS(9752), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9752), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9752), + [aux_sym_declare_function_statement_token1] = ACTIONS(9752), + [aux_sym_preprocessor_const_token1] = ACTIONS(9752), + [aux_sym__property_get_header_token1] = ACTIONS(9752), + [aux_sym_event_declaration_token1] = ACTIONS(9752), + [sym_static_modifier] = ACTIONS(9752), + [sym__dim_keyword] = ACTIONS(9752), + [sym__redim_keyword] = ACTIONS(9752), + [aux_sym_get_accessor_token1] = ACTIONS(9752), + [aux_sym_set_accessor_token1] = ACTIONS(9752), + [aux_sym_const_declaration_token1] = ACTIONS(9752), + [anon_sym_LPAREN] = ACTIONS(9754), + [aux_sym_as_type_clause_token2] = ACTIONS(9752), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9752), + [aux_sym_visibility_token1] = ACTIONS(9752), + [aux_sym_visibility_token2] = ACTIONS(9752), + [aux_sym_elseif_fragment_token1] = ACTIONS(9752), + [aux_sym_else_fragment_token1] = ACTIONS(9752), + [aux_sym_select_statement_token1] = ACTIONS(9752), + [aux_sym__for_header_token1] = ACTIONS(9752), + [aux_sym_do_statement_token1] = ACTIONS(9752), + [aux_sym_do_condition_token1] = ACTIONS(9752), + [aux_sym_with_statement_token1] = ACTIONS(9752), + [aux_sym_exit_statement_token1] = ACTIONS(9752), + [sym_end_statement] = ACTIONS(9754), + [aux_sym_on_goto_statement_token1] = ACTIONS(9752), + [aux_sym_on_goto_statement_token2] = ACTIONS(9752), + [aux_sym_on_error_statement_token2] = ACTIONS(9752), + [sym__ambiguous_redim_statement] = ACTIONS(9754), + [aux_sym_erase_statement_token1] = ACTIONS(9752), + [aux_sym_open_statement_token1] = ACTIONS(9752), + [aux_sym_file_mode_token2] = ACTIONS(9752), + [aux_sym_file_access_token2] = ACTIONS(9752), + [aux_sym_file_lock_token2] = ACTIONS(9752), + [aux_sym_print_statement_token1] = ACTIONS(9752), + [anon_sym_PLUS] = ACTIONS(9754), + [anon_sym_DASH] = ACTIONS(9752), + [anon_sym_QMARK] = ACTIONS(9754), + [aux_sym_close_statement_token1] = ACTIONS(9752), + [aux_sym_put_statement_token1] = ACTIONS(9752), + [aux_sym_unlock_statement_token1] = ACTIONS(9752), + [aux_sym_seek_statement_token1] = ACTIONS(9752), + [sym_reset_statement] = ACTIONS(9752), + [aux_sym_raise_event_statement_token1] = ACTIONS(9752), + [sym_stop_statement] = ACTIONS(9752), + [sym_beep_statement] = ACTIONS(9752), + [aux_sym_unload_statement_token1] = ACTIONS(9752), + [aux_sym_def_type_statement_token1] = ACTIONS(9752), + [aux_sym_def_type_statement_token2] = ACTIONS(9752), + [aux_sym_def_type_statement_token3] = ACTIONS(9752), + [aux_sym_def_type_statement_token4] = ACTIONS(9752), + [aux_sym_def_type_statement_token5] = ACTIONS(9752), + [aux_sym_def_type_statement_token6] = ACTIONS(9752), + [aux_sym_def_type_statement_token7] = ACTIONS(9752), + [aux_sym_def_type_statement_token8] = ACTIONS(9752), + [aux_sym_def_type_statement_token9] = ACTIONS(9752), + [aux_sym_def_type_statement_token10] = ACTIONS(9752), + [aux_sym_def_type_statement_token11] = ACTIONS(9752), + [aux_sym_def_type_statement_token12] = ACTIONS(9752), + [aux_sym_def_type_statement_token13] = ACTIONS(9752), + [aux_sym_def_type_statement_token14] = ACTIONS(9752), + [aux_sym_call_statement_token1] = ACTIONS(9752), + [sym__ambiguous_call_statement] = ACTIONS(9752), + [aux_sym_addressof_expression_token1] = ACTIONS(9752), + [aux_sym_type_of_expression_token1] = ACTIONS(9752), + [aux_sym_unary_expression_token1] = ACTIONS(9752), + [sym_string_literal] = ACTIONS(9754), + [sym_number_literal] = ACTIONS(9754), + [aux_sym_boolean_literal_token1] = ACTIONS(9752), + [aux_sym_boolean_literal_token2] = ACTIONS(9752), + [sym_nothing_literal] = ACTIONS(9752), + [sym_null_literal] = ACTIONS(9752), + [sym_empty_literal] = ACTIONS(9752), + [sym_date_literal] = ACTIONS(9754), + [anon_sym_POUND] = ACTIONS(9752), + }, + [STATE(4161)] = { + [sym_identifier] = ACTIONS(9756), + [sym_newline] = ACTIONS(9758), + [anon_sym_COLON] = ACTIONS(9758), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9756), + [aux_sym_frm_property_statement_token1] = ACTIONS(9756), + [anon_sym_DOT] = ACTIONS(9756), + [anon_sym_BANG] = ACTIONS(9758), + [aux_sym__attribute_identifier_token1] = ACTIONS(9756), + [aux_sym_option_statement_token3] = ACTIONS(9756), + [aux_sym_type_declaration_token1] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9756), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9756), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9756), + [aux_sym_enum_declaration_token1] = ACTIONS(9756), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9756), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9756), + [aux_sym_declare_function_statement_token1] = ACTIONS(9756), + [aux_sym_preprocessor_const_token1] = ACTIONS(9756), + [aux_sym__property_get_header_token1] = ACTIONS(9756), + [aux_sym_event_declaration_token1] = ACTIONS(9756), + [sym_static_modifier] = ACTIONS(9756), + [sym__dim_keyword] = ACTIONS(9756), + [sym__redim_keyword] = ACTIONS(9756), + [aux_sym_get_accessor_token1] = ACTIONS(9756), + [aux_sym_set_accessor_token1] = ACTIONS(9756), + [aux_sym_const_declaration_token1] = ACTIONS(9756), + [anon_sym_LPAREN] = ACTIONS(9758), + [aux_sym_as_type_clause_token2] = ACTIONS(9756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9756), + [aux_sym_visibility_token1] = ACTIONS(9756), + [aux_sym_visibility_token2] = ACTIONS(9756), + [aux_sym_elseif_fragment_token1] = ACTIONS(9756), + [aux_sym_else_fragment_token1] = ACTIONS(9756), + [aux_sym_select_statement_token1] = ACTIONS(9756), + [aux_sym__for_header_token1] = ACTIONS(9756), + [aux_sym_do_statement_token1] = ACTIONS(9756), + [aux_sym_do_condition_token1] = ACTIONS(9756), + [aux_sym_with_statement_token1] = ACTIONS(9756), + [aux_sym_exit_statement_token1] = ACTIONS(9756), + [sym_end_statement] = ACTIONS(9758), + [aux_sym_on_goto_statement_token1] = ACTIONS(9756), + [aux_sym_on_goto_statement_token2] = ACTIONS(9756), + [aux_sym_on_error_statement_token2] = ACTIONS(9756), + [sym__ambiguous_redim_statement] = ACTIONS(9758), + [aux_sym_erase_statement_token1] = ACTIONS(9756), + [aux_sym_open_statement_token1] = ACTIONS(9756), + [aux_sym_file_mode_token2] = ACTIONS(9756), + [aux_sym_file_access_token2] = ACTIONS(9756), + [aux_sym_file_lock_token2] = ACTIONS(9756), + [aux_sym_print_statement_token1] = ACTIONS(9756), + [anon_sym_PLUS] = ACTIONS(9758), + [anon_sym_DASH] = ACTIONS(9756), + [anon_sym_QMARK] = ACTIONS(9758), + [aux_sym_close_statement_token1] = ACTIONS(9756), + [aux_sym_put_statement_token1] = ACTIONS(9756), + [aux_sym_unlock_statement_token1] = ACTIONS(9756), + [aux_sym_seek_statement_token1] = ACTIONS(9756), + [sym_reset_statement] = ACTIONS(9756), + [aux_sym_raise_event_statement_token1] = ACTIONS(9756), + [sym_stop_statement] = ACTIONS(9756), + [sym_beep_statement] = ACTIONS(9756), + [aux_sym_unload_statement_token1] = ACTIONS(9756), + [aux_sym_def_type_statement_token1] = ACTIONS(9756), + [aux_sym_def_type_statement_token2] = ACTIONS(9756), + [aux_sym_def_type_statement_token3] = ACTIONS(9756), + [aux_sym_def_type_statement_token4] = ACTIONS(9756), + [aux_sym_def_type_statement_token5] = ACTIONS(9756), + [aux_sym_def_type_statement_token6] = ACTIONS(9756), + [aux_sym_def_type_statement_token7] = ACTIONS(9756), + [aux_sym_def_type_statement_token8] = ACTIONS(9756), + [aux_sym_def_type_statement_token9] = ACTIONS(9756), + [aux_sym_def_type_statement_token10] = ACTIONS(9756), + [aux_sym_def_type_statement_token11] = ACTIONS(9756), + [aux_sym_def_type_statement_token12] = ACTIONS(9756), + [aux_sym_def_type_statement_token13] = ACTIONS(9756), + [aux_sym_def_type_statement_token14] = ACTIONS(9756), + [aux_sym_call_statement_token1] = ACTIONS(9756), + [sym__ambiguous_call_statement] = ACTIONS(9756), + [aux_sym_addressof_expression_token1] = ACTIONS(9756), + [aux_sym_type_of_expression_token1] = ACTIONS(9756), + [aux_sym_unary_expression_token1] = ACTIONS(9756), + [sym_string_literal] = ACTIONS(9758), + [sym_number_literal] = ACTIONS(9758), + [aux_sym_boolean_literal_token1] = ACTIONS(9756), + [aux_sym_boolean_literal_token2] = ACTIONS(9756), + [sym_nothing_literal] = ACTIONS(9756), + [sym_null_literal] = ACTIONS(9756), + [sym_empty_literal] = ACTIONS(9756), + [sym_date_literal] = ACTIONS(9758), + [anon_sym_POUND] = ACTIONS(9756), + }, + [STATE(4162)] = { + [sym_identifier] = ACTIONS(9760), + [sym_newline] = ACTIONS(9762), + [anon_sym_COLON] = ACTIONS(9762), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9760), + [aux_sym_frm_property_statement_token1] = ACTIONS(9760), + [anon_sym_DOT] = ACTIONS(9760), + [anon_sym_BANG] = ACTIONS(9762), + [aux_sym__attribute_identifier_token1] = ACTIONS(9760), + [aux_sym_option_statement_token3] = ACTIONS(9760), + [aux_sym_type_declaration_token1] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9760), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9760), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9760), + [aux_sym_enum_declaration_token1] = ACTIONS(9760), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9760), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9760), + [aux_sym_declare_function_statement_token1] = ACTIONS(9760), + [aux_sym_preprocessor_const_token1] = ACTIONS(9760), + [aux_sym__property_get_header_token1] = ACTIONS(9760), + [aux_sym_event_declaration_token1] = ACTIONS(9760), + [sym_static_modifier] = ACTIONS(9760), + [sym__dim_keyword] = ACTIONS(9760), + [sym__redim_keyword] = ACTIONS(9760), + [aux_sym_get_accessor_token1] = ACTIONS(9760), + [aux_sym_set_accessor_token1] = ACTIONS(9760), + [aux_sym_const_declaration_token1] = ACTIONS(9760), + [anon_sym_LPAREN] = ACTIONS(9762), + [aux_sym_as_type_clause_token2] = ACTIONS(9760), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9760), + [aux_sym_visibility_token1] = ACTIONS(9760), + [aux_sym_visibility_token2] = ACTIONS(9760), + [aux_sym_elseif_fragment_token1] = ACTIONS(9760), + [aux_sym_else_fragment_token1] = ACTIONS(9760), + [aux_sym_select_statement_token1] = ACTIONS(9760), + [aux_sym__for_header_token1] = ACTIONS(9760), + [aux_sym_do_statement_token1] = ACTIONS(9760), + [aux_sym_do_condition_token1] = ACTIONS(9760), + [aux_sym_with_statement_token1] = ACTIONS(9760), + [aux_sym_exit_statement_token1] = ACTIONS(9760), + [sym_end_statement] = ACTIONS(9762), + [aux_sym_on_goto_statement_token1] = ACTIONS(9760), + [aux_sym_on_goto_statement_token2] = ACTIONS(9760), + [aux_sym_on_error_statement_token2] = ACTIONS(9760), + [sym__ambiguous_redim_statement] = ACTIONS(9762), + [aux_sym_erase_statement_token1] = ACTIONS(9760), + [aux_sym_open_statement_token1] = ACTIONS(9760), + [aux_sym_file_mode_token2] = ACTIONS(9760), + [aux_sym_file_access_token2] = ACTIONS(9760), + [aux_sym_file_lock_token2] = ACTIONS(9760), + [aux_sym_print_statement_token1] = ACTIONS(9760), + [anon_sym_PLUS] = ACTIONS(9762), + [anon_sym_DASH] = ACTIONS(9760), + [anon_sym_QMARK] = ACTIONS(9762), + [aux_sym_close_statement_token1] = ACTIONS(9760), + [aux_sym_put_statement_token1] = ACTIONS(9760), + [aux_sym_unlock_statement_token1] = ACTIONS(9760), + [aux_sym_seek_statement_token1] = ACTIONS(9760), + [sym_reset_statement] = ACTIONS(9760), + [aux_sym_raise_event_statement_token1] = ACTIONS(9760), + [sym_stop_statement] = ACTIONS(9760), + [sym_beep_statement] = ACTIONS(9760), + [aux_sym_unload_statement_token1] = ACTIONS(9760), + [aux_sym_def_type_statement_token1] = ACTIONS(9760), + [aux_sym_def_type_statement_token2] = ACTIONS(9760), + [aux_sym_def_type_statement_token3] = ACTIONS(9760), + [aux_sym_def_type_statement_token4] = ACTIONS(9760), + [aux_sym_def_type_statement_token5] = ACTIONS(9760), + [aux_sym_def_type_statement_token6] = ACTIONS(9760), + [aux_sym_def_type_statement_token7] = ACTIONS(9760), + [aux_sym_def_type_statement_token8] = ACTIONS(9760), + [aux_sym_def_type_statement_token9] = ACTIONS(9760), + [aux_sym_def_type_statement_token10] = ACTIONS(9760), + [aux_sym_def_type_statement_token11] = ACTIONS(9760), + [aux_sym_def_type_statement_token12] = ACTIONS(9760), + [aux_sym_def_type_statement_token13] = ACTIONS(9760), + [aux_sym_def_type_statement_token14] = ACTIONS(9760), + [aux_sym_call_statement_token1] = ACTIONS(9760), + [sym__ambiguous_call_statement] = ACTIONS(9760), + [aux_sym_addressof_expression_token1] = ACTIONS(9760), + [aux_sym_type_of_expression_token1] = ACTIONS(9760), + [aux_sym_unary_expression_token1] = ACTIONS(9760), + [sym_string_literal] = ACTIONS(9762), + [sym_number_literal] = ACTIONS(9762), + [aux_sym_boolean_literal_token1] = ACTIONS(9760), + [aux_sym_boolean_literal_token2] = ACTIONS(9760), + [sym_nothing_literal] = ACTIONS(9760), + [sym_null_literal] = ACTIONS(9760), + [sym_empty_literal] = ACTIONS(9760), + [sym_date_literal] = ACTIONS(9762), + [anon_sym_POUND] = ACTIONS(9760), + }, + [STATE(4163)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4179), + [sym_identifier] = ACTIONS(8591), + [sym_newline] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(8593), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8591), + [aux_sym_frm_property_statement_token1] = ACTIONS(8591), + [anon_sym_DOT] = ACTIONS(8591), + [anon_sym_BANG] = ACTIONS(8593), + [aux_sym__attribute_identifier_token1] = ACTIONS(8591), + [aux_sym_option_statement_token3] = ACTIONS(8591), + [aux_sym_type_declaration_token1] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8591), + [aux_sym_enum_declaration_token1] = ACTIONS(8591), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8591), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8591), + [aux_sym_declare_function_statement_token1] = ACTIONS(8591), + [aux_sym_preprocessor_const_token1] = ACTIONS(8591), + [aux_sym__property_get_header_token1] = ACTIONS(8591), + [aux_sym_event_declaration_token1] = ACTIONS(8591), + [sym_static_modifier] = ACTIONS(8591), + [sym__dim_keyword] = ACTIONS(8591), + [sym__redim_keyword] = ACTIONS(8591), + [aux_sym_get_accessor_token1] = ACTIONS(8591), + [aux_sym_set_accessor_token1] = ACTIONS(8591), + [anon_sym_COMMA] = ACTIONS(9724), + [aux_sym_const_declaration_token1] = ACTIONS(8591), + [anon_sym_LPAREN] = ACTIONS(8593), + [aux_sym_as_type_clause_token2] = ACTIONS(8591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8591), + [aux_sym_visibility_token1] = ACTIONS(8591), + [aux_sym_visibility_token2] = ACTIONS(8591), + [aux_sym_elseif_fragment_token1] = ACTIONS(8591), + [aux_sym_else_fragment_token1] = ACTIONS(8591), + [aux_sym_select_statement_token1] = ACTIONS(8591), + [aux_sym__for_header_token1] = ACTIONS(8591), + [aux_sym_do_statement_token1] = ACTIONS(8591), + [aux_sym_do_condition_token1] = ACTIONS(8591), + [aux_sym_with_statement_token1] = ACTIONS(8591), + [aux_sym_exit_statement_token1] = ACTIONS(8591), + [sym_end_statement] = ACTIONS(8593), + [aux_sym_on_goto_statement_token1] = ACTIONS(8591), + [aux_sym_on_goto_statement_token2] = ACTIONS(8591), + [aux_sym_on_error_statement_token2] = ACTIONS(8591), + [sym__ambiguous_redim_statement] = ACTIONS(8593), + [aux_sym_erase_statement_token1] = ACTIONS(8591), + [aux_sym_open_statement_token1] = ACTIONS(8591), + [aux_sym_file_mode_token2] = ACTIONS(8591), + [aux_sym_file_access_token2] = ACTIONS(8591), + [aux_sym_file_lock_token2] = ACTIONS(8591), + [aux_sym_print_statement_token1] = ACTIONS(8591), + [anon_sym_PLUS] = ACTIONS(8593), + [anon_sym_DASH] = ACTIONS(8591), + [anon_sym_QMARK] = ACTIONS(8593), + [aux_sym_close_statement_token1] = ACTIONS(8591), + [aux_sym_put_statement_token1] = ACTIONS(8591), + [aux_sym_unlock_statement_token1] = ACTIONS(8591), + [aux_sym_seek_statement_token1] = ACTIONS(8591), + [sym_reset_statement] = ACTIONS(8591), + [aux_sym_raise_event_statement_token1] = ACTIONS(8591), + [sym_stop_statement] = ACTIONS(8591), + [sym_beep_statement] = ACTIONS(8591), + [aux_sym_unload_statement_token1] = ACTIONS(8591), + [aux_sym_def_type_statement_token1] = ACTIONS(8591), + [aux_sym_def_type_statement_token2] = ACTIONS(8591), + [aux_sym_def_type_statement_token3] = ACTIONS(8591), + [aux_sym_def_type_statement_token4] = ACTIONS(8591), + [aux_sym_def_type_statement_token5] = ACTIONS(8591), + [aux_sym_def_type_statement_token6] = ACTIONS(8591), + [aux_sym_def_type_statement_token7] = ACTIONS(8591), + [aux_sym_def_type_statement_token8] = ACTIONS(8591), + [aux_sym_def_type_statement_token9] = ACTIONS(8591), + [aux_sym_def_type_statement_token10] = ACTIONS(8591), + [aux_sym_def_type_statement_token11] = ACTIONS(8591), + [aux_sym_def_type_statement_token12] = ACTIONS(8591), + [aux_sym_def_type_statement_token13] = ACTIONS(8591), + [aux_sym_def_type_statement_token14] = ACTIONS(8591), + [aux_sym_call_statement_token1] = ACTIONS(8591), + [sym__ambiguous_call_statement] = ACTIONS(8591), + [aux_sym_addressof_expression_token1] = ACTIONS(8591), + [aux_sym_type_of_expression_token1] = ACTIONS(8591), + [aux_sym_unary_expression_token1] = ACTIONS(8591), + [sym_string_literal] = ACTIONS(8593), + [sym_number_literal] = ACTIONS(8593), + [aux_sym_boolean_literal_token1] = ACTIONS(8591), + [aux_sym_boolean_literal_token2] = ACTIONS(8591), + [sym_nothing_literal] = ACTIONS(8591), + [sym_null_literal] = ACTIONS(8591), + [sym_empty_literal] = ACTIONS(8591), + [sym_date_literal] = ACTIONS(8593), + [anon_sym_POUND] = ACTIONS(8591), + }, + [STATE(4164)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4179), + [sym_identifier] = ACTIONS(8095), + [sym_newline] = ACTIONS(8097), + [anon_sym_COLON] = ACTIONS(8097), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8095), + [aux_sym_frm_property_statement_token1] = ACTIONS(8095), + [anon_sym_DOT] = ACTIONS(8095), + [anon_sym_BANG] = ACTIONS(8097), + [aux_sym__attribute_identifier_token1] = ACTIONS(8095), + [aux_sym_option_statement_token3] = ACTIONS(8095), + [aux_sym_type_declaration_token1] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8095), + [aux_sym_enum_declaration_token1] = ACTIONS(8095), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8095), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8095), + [aux_sym_declare_function_statement_token1] = ACTIONS(8095), + [aux_sym_preprocessor_const_token1] = ACTIONS(8095), + [aux_sym__property_get_header_token1] = ACTIONS(8095), + [aux_sym_event_declaration_token1] = ACTIONS(8095), + [sym_static_modifier] = ACTIONS(8095), + [sym__dim_keyword] = ACTIONS(8095), + [sym__redim_keyword] = ACTIONS(8095), + [aux_sym_get_accessor_token1] = ACTIONS(8095), + [aux_sym_set_accessor_token1] = ACTIONS(8095), + [anon_sym_COMMA] = ACTIONS(9724), + [aux_sym_const_declaration_token1] = ACTIONS(8095), + [anon_sym_LPAREN] = ACTIONS(8097), + [aux_sym_as_type_clause_token2] = ACTIONS(8095), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8095), + [aux_sym_visibility_token1] = ACTIONS(8095), + [aux_sym_visibility_token2] = ACTIONS(8095), + [aux_sym_elseif_fragment_token1] = ACTIONS(8095), + [aux_sym_else_fragment_token1] = ACTIONS(8095), + [aux_sym_select_statement_token1] = ACTIONS(8095), + [aux_sym__for_header_token1] = ACTIONS(8095), + [aux_sym_do_statement_token1] = ACTIONS(8095), + [aux_sym_do_condition_token1] = ACTIONS(8095), + [aux_sym_with_statement_token1] = ACTIONS(8095), + [aux_sym_exit_statement_token1] = ACTIONS(8095), + [sym_end_statement] = ACTIONS(8097), + [aux_sym_on_goto_statement_token1] = ACTIONS(8095), + [aux_sym_on_goto_statement_token2] = ACTIONS(8095), + [aux_sym_on_error_statement_token2] = ACTIONS(8095), + [sym__ambiguous_redim_statement] = ACTIONS(8097), + [aux_sym_erase_statement_token1] = ACTIONS(8095), + [aux_sym_open_statement_token1] = ACTIONS(8095), + [aux_sym_file_mode_token2] = ACTIONS(8095), + [aux_sym_file_access_token2] = ACTIONS(8095), + [aux_sym_file_lock_token2] = ACTIONS(8095), + [aux_sym_print_statement_token1] = ACTIONS(8095), + [anon_sym_PLUS] = ACTIONS(8097), + [anon_sym_DASH] = ACTIONS(8095), + [anon_sym_QMARK] = ACTIONS(8097), + [aux_sym_close_statement_token1] = ACTIONS(8095), + [aux_sym_put_statement_token1] = ACTIONS(8095), + [aux_sym_unlock_statement_token1] = ACTIONS(8095), + [aux_sym_seek_statement_token1] = ACTIONS(8095), + [sym_reset_statement] = ACTIONS(8095), + [aux_sym_raise_event_statement_token1] = ACTIONS(8095), + [sym_stop_statement] = ACTIONS(8095), + [sym_beep_statement] = ACTIONS(8095), + [aux_sym_unload_statement_token1] = ACTIONS(8095), + [aux_sym_def_type_statement_token1] = ACTIONS(8095), + [aux_sym_def_type_statement_token2] = ACTIONS(8095), + [aux_sym_def_type_statement_token3] = ACTIONS(8095), + [aux_sym_def_type_statement_token4] = ACTIONS(8095), + [aux_sym_def_type_statement_token5] = ACTIONS(8095), + [aux_sym_def_type_statement_token6] = ACTIONS(8095), + [aux_sym_def_type_statement_token7] = ACTIONS(8095), + [aux_sym_def_type_statement_token8] = ACTIONS(8095), + [aux_sym_def_type_statement_token9] = ACTIONS(8095), + [aux_sym_def_type_statement_token10] = ACTIONS(8095), + [aux_sym_def_type_statement_token11] = ACTIONS(8095), + [aux_sym_def_type_statement_token12] = ACTIONS(8095), + [aux_sym_def_type_statement_token13] = ACTIONS(8095), + [aux_sym_def_type_statement_token14] = ACTIONS(8095), + [aux_sym_call_statement_token1] = ACTIONS(8095), + [sym__ambiguous_call_statement] = ACTIONS(8095), + [aux_sym_addressof_expression_token1] = ACTIONS(8095), + [aux_sym_type_of_expression_token1] = ACTIONS(8095), + [aux_sym_unary_expression_token1] = ACTIONS(8095), + [sym_string_literal] = ACTIONS(8097), + [sym_number_literal] = ACTIONS(8097), + [aux_sym_boolean_literal_token1] = ACTIONS(8095), + [aux_sym_boolean_literal_token2] = ACTIONS(8095), + [sym_nothing_literal] = ACTIONS(8095), + [sym_null_literal] = ACTIONS(8095), + [sym_empty_literal] = ACTIONS(8095), + [sym_date_literal] = ACTIONS(8097), + [anon_sym_POUND] = ACTIONS(8095), + }, + [STATE(4165)] = { + [sym_identifier] = ACTIONS(9764), + [sym_newline] = ACTIONS(9766), + [anon_sym_COLON] = ACTIONS(9766), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9764), + [aux_sym_frm_property_statement_token1] = ACTIONS(9764), + [anon_sym_DOT] = ACTIONS(9764), + [anon_sym_BANG] = ACTIONS(9766), + [aux_sym__attribute_identifier_token1] = ACTIONS(9764), + [aux_sym_option_statement_token3] = ACTIONS(9764), + [aux_sym_type_declaration_token1] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9764), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9764), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9764), + [aux_sym_enum_declaration_token1] = ACTIONS(9764), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9764), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9764), + [aux_sym_declare_function_statement_token1] = ACTIONS(9764), + [aux_sym_preprocessor_const_token1] = ACTIONS(9764), + [aux_sym__property_get_header_token1] = ACTIONS(9764), + [aux_sym_event_declaration_token1] = ACTIONS(9764), + [sym_static_modifier] = ACTIONS(9764), + [sym__dim_keyword] = ACTIONS(9764), + [sym__redim_keyword] = ACTIONS(9764), + [aux_sym_get_accessor_token1] = ACTIONS(9764), + [aux_sym_set_accessor_token1] = ACTIONS(9764), + [aux_sym_const_declaration_token1] = ACTIONS(9764), + [anon_sym_LPAREN] = ACTIONS(9766), + [aux_sym_as_type_clause_token2] = ACTIONS(9764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9764), + [aux_sym_visibility_token1] = ACTIONS(9764), + [aux_sym_visibility_token2] = ACTIONS(9764), + [aux_sym_elseif_fragment_token1] = ACTIONS(9764), + [aux_sym_else_fragment_token1] = ACTIONS(9764), + [aux_sym_select_statement_token1] = ACTIONS(9764), + [aux_sym__for_header_token1] = ACTIONS(9764), + [aux_sym_do_statement_token1] = ACTIONS(9764), + [aux_sym_do_condition_token1] = ACTIONS(9764), + [aux_sym_with_statement_token1] = ACTIONS(9764), + [aux_sym_exit_statement_token1] = ACTIONS(9764), + [sym_end_statement] = ACTIONS(9766), + [aux_sym_on_goto_statement_token1] = ACTIONS(9764), + [aux_sym_on_goto_statement_token2] = ACTIONS(9764), + [aux_sym_on_error_statement_token2] = ACTIONS(9764), + [sym__ambiguous_redim_statement] = ACTIONS(9766), + [aux_sym_erase_statement_token1] = ACTIONS(9764), + [aux_sym_open_statement_token1] = ACTIONS(9764), + [aux_sym_file_mode_token2] = ACTIONS(9764), + [aux_sym_file_access_token2] = ACTIONS(9764), + [aux_sym_file_lock_token2] = ACTIONS(9764), + [aux_sym_print_statement_token1] = ACTIONS(9764), + [anon_sym_PLUS] = ACTIONS(9766), + [anon_sym_DASH] = ACTIONS(9764), + [anon_sym_QMARK] = ACTIONS(9766), + [aux_sym_close_statement_token1] = ACTIONS(9764), + [aux_sym_put_statement_token1] = ACTIONS(9764), + [aux_sym_unlock_statement_token1] = ACTIONS(9764), + [aux_sym_seek_statement_token1] = ACTIONS(9764), + [sym_reset_statement] = ACTIONS(9764), + [aux_sym_raise_event_statement_token1] = ACTIONS(9764), + [sym_stop_statement] = ACTIONS(9764), + [sym_beep_statement] = ACTIONS(9764), + [aux_sym_unload_statement_token1] = ACTIONS(9764), + [aux_sym_def_type_statement_token1] = ACTIONS(9764), + [aux_sym_def_type_statement_token2] = ACTIONS(9764), + [aux_sym_def_type_statement_token3] = ACTIONS(9764), + [aux_sym_def_type_statement_token4] = ACTIONS(9764), + [aux_sym_def_type_statement_token5] = ACTIONS(9764), + [aux_sym_def_type_statement_token6] = ACTIONS(9764), + [aux_sym_def_type_statement_token7] = ACTIONS(9764), + [aux_sym_def_type_statement_token8] = ACTIONS(9764), + [aux_sym_def_type_statement_token9] = ACTIONS(9764), + [aux_sym_def_type_statement_token10] = ACTIONS(9764), + [aux_sym_def_type_statement_token11] = ACTIONS(9764), + [aux_sym_def_type_statement_token12] = ACTIONS(9764), + [aux_sym_def_type_statement_token13] = ACTIONS(9764), + [aux_sym_def_type_statement_token14] = ACTIONS(9764), + [aux_sym_call_statement_token1] = ACTIONS(9764), + [sym__ambiguous_call_statement] = ACTIONS(9764), + [aux_sym_addressof_expression_token1] = ACTIONS(9764), + [aux_sym_type_of_expression_token1] = ACTIONS(9764), + [aux_sym_unary_expression_token1] = ACTIONS(9764), + [sym_string_literal] = ACTIONS(9766), + [sym_number_literal] = ACTIONS(9766), + [aux_sym_boolean_literal_token1] = ACTIONS(9764), + [aux_sym_boolean_literal_token2] = ACTIONS(9764), + [sym_nothing_literal] = ACTIONS(9764), + [sym_null_literal] = ACTIONS(9764), + [sym_empty_literal] = ACTIONS(9764), + [sym_date_literal] = ACTIONS(9766), + [anon_sym_POUND] = ACTIONS(9764), + }, + [STATE(4166)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_declaration_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_enum_declaration_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4597), + [aux_sym_declare_function_statement_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [aux_sym__property_get_header_token1] = ACTIONS(4597), + [aux_sym_event_declaration_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(4167)] = { + [aux_sym_const_declaration_repeat1] = STATE(4180), + [sym_identifier] = ACTIONS(8614), + [sym_newline] = ACTIONS(8616), + [anon_sym_COLON] = ACTIONS(8616), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8614), + [aux_sym_frm_property_statement_token1] = ACTIONS(8614), + [anon_sym_DOT] = ACTIONS(8614), + [anon_sym_BANG] = ACTIONS(8616), + [aux_sym__attribute_identifier_token1] = ACTIONS(8614), + [aux_sym_option_statement_token3] = ACTIONS(8614), + [aux_sym_type_declaration_token1] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8614), + [aux_sym_enum_declaration_token1] = ACTIONS(8614), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8614), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8614), + [aux_sym_declare_function_statement_token1] = ACTIONS(8614), + [aux_sym_preprocessor_const_token1] = ACTIONS(8614), + [aux_sym__property_get_header_token1] = ACTIONS(8614), + [aux_sym_event_declaration_token1] = ACTIONS(8614), + [sym_static_modifier] = ACTIONS(8614), + [sym__dim_keyword] = ACTIONS(8614), + [sym__redim_keyword] = ACTIONS(8614), + [aux_sym_get_accessor_token1] = ACTIONS(8614), + [aux_sym_set_accessor_token1] = ACTIONS(8614), + [anon_sym_COMMA] = ACTIONS(9730), + [aux_sym_const_declaration_token1] = ACTIONS(8614), + [anon_sym_LPAREN] = ACTIONS(8616), + [aux_sym_as_type_clause_token2] = ACTIONS(8614), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8614), + [aux_sym_visibility_token1] = ACTIONS(8614), + [aux_sym_visibility_token2] = ACTIONS(8614), + [aux_sym_elseif_fragment_token1] = ACTIONS(8614), + [aux_sym_else_fragment_token1] = ACTIONS(8614), + [aux_sym_select_statement_token1] = ACTIONS(8614), + [aux_sym__for_header_token1] = ACTIONS(8614), + [aux_sym_do_statement_token1] = ACTIONS(8614), + [aux_sym_do_condition_token1] = ACTIONS(8614), + [aux_sym_with_statement_token1] = ACTIONS(8614), + [aux_sym_exit_statement_token1] = ACTIONS(8614), + [sym_end_statement] = ACTIONS(8616), + [aux_sym_on_goto_statement_token1] = ACTIONS(8614), + [aux_sym_on_goto_statement_token2] = ACTIONS(8614), + [aux_sym_on_error_statement_token2] = ACTIONS(8614), + [sym__ambiguous_redim_statement] = ACTIONS(8616), + [aux_sym_erase_statement_token1] = ACTIONS(8614), + [aux_sym_open_statement_token1] = ACTIONS(8614), + [aux_sym_file_mode_token2] = ACTIONS(8614), + [aux_sym_file_access_token2] = ACTIONS(8614), + [aux_sym_file_lock_token2] = ACTIONS(8614), + [aux_sym_print_statement_token1] = ACTIONS(8614), + [anon_sym_PLUS] = ACTIONS(8616), + [anon_sym_DASH] = ACTIONS(8614), + [anon_sym_QMARK] = ACTIONS(8616), + [aux_sym_close_statement_token1] = ACTIONS(8614), + [aux_sym_put_statement_token1] = ACTIONS(8614), + [aux_sym_unlock_statement_token1] = ACTIONS(8614), + [aux_sym_seek_statement_token1] = ACTIONS(8614), + [sym_reset_statement] = ACTIONS(8614), + [aux_sym_raise_event_statement_token1] = ACTIONS(8614), + [sym_stop_statement] = ACTIONS(8614), + [sym_beep_statement] = ACTIONS(8614), + [aux_sym_unload_statement_token1] = ACTIONS(8614), + [aux_sym_def_type_statement_token1] = ACTIONS(8614), + [aux_sym_def_type_statement_token2] = ACTIONS(8614), + [aux_sym_def_type_statement_token3] = ACTIONS(8614), + [aux_sym_def_type_statement_token4] = ACTIONS(8614), + [aux_sym_def_type_statement_token5] = ACTIONS(8614), + [aux_sym_def_type_statement_token6] = ACTIONS(8614), + [aux_sym_def_type_statement_token7] = ACTIONS(8614), + [aux_sym_def_type_statement_token8] = ACTIONS(8614), + [aux_sym_def_type_statement_token9] = ACTIONS(8614), + [aux_sym_def_type_statement_token10] = ACTIONS(8614), + [aux_sym_def_type_statement_token11] = ACTIONS(8614), + [aux_sym_def_type_statement_token12] = ACTIONS(8614), + [aux_sym_def_type_statement_token13] = ACTIONS(8614), + [aux_sym_def_type_statement_token14] = ACTIONS(8614), + [aux_sym_call_statement_token1] = ACTIONS(8614), + [sym__ambiguous_call_statement] = ACTIONS(8614), + [aux_sym_addressof_expression_token1] = ACTIONS(8614), + [aux_sym_type_of_expression_token1] = ACTIONS(8614), + [aux_sym_unary_expression_token1] = ACTIONS(8614), + [sym_string_literal] = ACTIONS(8616), + [sym_number_literal] = ACTIONS(8616), + [aux_sym_boolean_literal_token1] = ACTIONS(8614), + [aux_sym_boolean_literal_token2] = ACTIONS(8614), + [sym_nothing_literal] = ACTIONS(8614), + [sym_null_literal] = ACTIONS(8614), + [sym_empty_literal] = ACTIONS(8614), + [sym_date_literal] = ACTIONS(8616), + [anon_sym_POUND] = ACTIONS(8614), + }, + [STATE(4168)] = { + [sym_identifier] = ACTIONS(9768), + [sym_newline] = ACTIONS(9770), + [anon_sym_COLON] = ACTIONS(9770), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9768), + [aux_sym_frm_property_statement_token1] = ACTIONS(9768), + [anon_sym_DOT] = ACTIONS(9768), + [anon_sym_BANG] = ACTIONS(9770), + [aux_sym__attribute_identifier_token1] = ACTIONS(9768), + [aux_sym_option_statement_token3] = ACTIONS(9768), + [aux_sym_type_declaration_token1] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9768), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9768), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9768), + [aux_sym_enum_declaration_token1] = ACTIONS(9768), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9768), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9768), + [aux_sym_declare_function_statement_token1] = ACTIONS(9768), + [aux_sym_preprocessor_const_token1] = ACTIONS(9768), + [aux_sym__property_get_header_token1] = ACTIONS(9768), + [aux_sym_event_declaration_token1] = ACTIONS(9768), + [sym_static_modifier] = ACTIONS(9768), + [sym__dim_keyword] = ACTIONS(9768), + [sym__redim_keyword] = ACTIONS(9768), + [aux_sym_get_accessor_token1] = ACTIONS(9768), + [aux_sym_set_accessor_token1] = ACTIONS(9768), + [aux_sym_const_declaration_token1] = ACTIONS(9768), + [anon_sym_LPAREN] = ACTIONS(9770), + [aux_sym_as_type_clause_token2] = ACTIONS(9768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9768), + [aux_sym_visibility_token1] = ACTIONS(9768), + [aux_sym_visibility_token2] = ACTIONS(9768), + [aux_sym_elseif_fragment_token1] = ACTIONS(9768), + [aux_sym_else_fragment_token1] = ACTIONS(9768), + [aux_sym_select_statement_token1] = ACTIONS(9768), + [aux_sym__for_header_token1] = ACTIONS(9768), + [aux_sym_do_statement_token1] = ACTIONS(9768), + [aux_sym_do_condition_token1] = ACTIONS(9768), + [aux_sym_with_statement_token1] = ACTIONS(9768), + [aux_sym_exit_statement_token1] = ACTIONS(9768), + [sym_end_statement] = ACTIONS(9770), + [aux_sym_on_goto_statement_token1] = ACTIONS(9768), + [aux_sym_on_goto_statement_token2] = ACTIONS(9768), + [aux_sym_on_error_statement_token2] = ACTIONS(9768), + [sym__ambiguous_redim_statement] = ACTIONS(9770), + [aux_sym_erase_statement_token1] = ACTIONS(9768), + [aux_sym_open_statement_token1] = ACTIONS(9768), + [aux_sym_file_mode_token2] = ACTIONS(9768), + [aux_sym_file_access_token2] = ACTIONS(9768), + [aux_sym_file_lock_token2] = ACTIONS(9768), + [aux_sym_print_statement_token1] = ACTIONS(9768), + [anon_sym_PLUS] = ACTIONS(9770), + [anon_sym_DASH] = ACTIONS(9768), + [anon_sym_QMARK] = ACTIONS(9770), + [aux_sym_close_statement_token1] = ACTIONS(9768), + [aux_sym_put_statement_token1] = ACTIONS(9768), + [aux_sym_unlock_statement_token1] = ACTIONS(9768), + [aux_sym_seek_statement_token1] = ACTIONS(9768), + [sym_reset_statement] = ACTIONS(9768), + [aux_sym_raise_event_statement_token1] = ACTIONS(9768), + [sym_stop_statement] = ACTIONS(9768), + [sym_beep_statement] = ACTIONS(9768), + [aux_sym_unload_statement_token1] = ACTIONS(9768), + [aux_sym_def_type_statement_token1] = ACTIONS(9768), + [aux_sym_def_type_statement_token2] = ACTIONS(9768), + [aux_sym_def_type_statement_token3] = ACTIONS(9768), + [aux_sym_def_type_statement_token4] = ACTIONS(9768), + [aux_sym_def_type_statement_token5] = ACTIONS(9768), + [aux_sym_def_type_statement_token6] = ACTIONS(9768), + [aux_sym_def_type_statement_token7] = ACTIONS(9768), + [aux_sym_def_type_statement_token8] = ACTIONS(9768), + [aux_sym_def_type_statement_token9] = ACTIONS(9768), + [aux_sym_def_type_statement_token10] = ACTIONS(9768), + [aux_sym_def_type_statement_token11] = ACTIONS(9768), + [aux_sym_def_type_statement_token12] = ACTIONS(9768), + [aux_sym_def_type_statement_token13] = ACTIONS(9768), + [aux_sym_def_type_statement_token14] = ACTIONS(9768), + [aux_sym_call_statement_token1] = ACTIONS(9768), + [sym__ambiguous_call_statement] = ACTIONS(9768), + [aux_sym_addressof_expression_token1] = ACTIONS(9768), + [aux_sym_type_of_expression_token1] = ACTIONS(9768), + [aux_sym_unary_expression_token1] = ACTIONS(9768), + [sym_string_literal] = ACTIONS(9770), + [sym_number_literal] = ACTIONS(9770), + [aux_sym_boolean_literal_token1] = ACTIONS(9768), + [aux_sym_boolean_literal_token2] = ACTIONS(9768), + [sym_nothing_literal] = ACTIONS(9768), + [sym_null_literal] = ACTIONS(9768), + [sym_empty_literal] = ACTIONS(9768), + [sym_date_literal] = ACTIONS(9770), + [anon_sym_POUND] = ACTIONS(9768), + }, + [STATE(4169)] = { + [sym_identifier] = ACTIONS(9772), + [sym_newline] = ACTIONS(9774), + [anon_sym_COLON] = ACTIONS(9774), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9772), + [aux_sym_frm_property_statement_token1] = ACTIONS(9772), + [anon_sym_DOT] = ACTIONS(9772), + [anon_sym_BANG] = ACTIONS(9774), + [aux_sym__attribute_identifier_token1] = ACTIONS(9772), + [aux_sym_option_statement_token3] = ACTIONS(9772), + [aux_sym_type_declaration_token1] = ACTIONS(9772), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9772), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9772), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9772), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9772), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9772), + [aux_sym_enum_declaration_token1] = ACTIONS(9772), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9772), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9772), + [aux_sym_declare_function_statement_token1] = ACTIONS(9772), + [aux_sym_preprocessor_const_token1] = ACTIONS(9772), + [aux_sym__property_get_header_token1] = ACTIONS(9772), + [aux_sym_event_declaration_token1] = ACTIONS(9772), + [sym_static_modifier] = ACTIONS(9772), + [sym__dim_keyword] = ACTIONS(9772), + [sym__redim_keyword] = ACTIONS(9772), + [aux_sym_get_accessor_token1] = ACTIONS(9772), + [aux_sym_set_accessor_token1] = ACTIONS(9772), + [aux_sym_const_declaration_token1] = ACTIONS(9772), + [anon_sym_LPAREN] = ACTIONS(9774), + [aux_sym_as_type_clause_token2] = ACTIONS(9772), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9772), + [aux_sym_visibility_token1] = ACTIONS(9772), + [aux_sym_visibility_token2] = ACTIONS(9772), + [aux_sym_elseif_fragment_token1] = ACTIONS(9772), + [aux_sym_else_fragment_token1] = ACTIONS(9772), + [aux_sym_select_statement_token1] = ACTIONS(9772), + [aux_sym__for_header_token1] = ACTIONS(9772), + [aux_sym_do_statement_token1] = ACTIONS(9772), + [aux_sym_do_condition_token1] = ACTIONS(9772), + [aux_sym_with_statement_token1] = ACTIONS(9772), + [aux_sym_exit_statement_token1] = ACTIONS(9772), + [sym_end_statement] = ACTIONS(9774), + [aux_sym_on_goto_statement_token1] = ACTIONS(9772), + [aux_sym_on_goto_statement_token2] = ACTIONS(9772), + [aux_sym_on_error_statement_token2] = ACTIONS(9772), + [sym__ambiguous_redim_statement] = ACTIONS(9774), + [aux_sym_erase_statement_token1] = ACTIONS(9772), + [aux_sym_open_statement_token1] = ACTIONS(9772), + [aux_sym_file_mode_token2] = ACTIONS(9772), + [aux_sym_file_access_token2] = ACTIONS(9772), + [aux_sym_file_lock_token2] = ACTIONS(9772), + [aux_sym_print_statement_token1] = ACTIONS(9772), + [anon_sym_PLUS] = ACTIONS(9774), + [anon_sym_DASH] = ACTIONS(9772), + [anon_sym_QMARK] = ACTIONS(9774), + [aux_sym_close_statement_token1] = ACTIONS(9772), + [aux_sym_put_statement_token1] = ACTIONS(9772), + [aux_sym_unlock_statement_token1] = ACTIONS(9772), + [aux_sym_seek_statement_token1] = ACTIONS(9772), + [sym_reset_statement] = ACTIONS(9772), + [aux_sym_raise_event_statement_token1] = ACTIONS(9772), + [sym_stop_statement] = ACTIONS(9772), + [sym_beep_statement] = ACTIONS(9772), + [aux_sym_unload_statement_token1] = ACTIONS(9772), + [aux_sym_def_type_statement_token1] = ACTIONS(9772), + [aux_sym_def_type_statement_token2] = ACTIONS(9772), + [aux_sym_def_type_statement_token3] = ACTIONS(9772), + [aux_sym_def_type_statement_token4] = ACTIONS(9772), + [aux_sym_def_type_statement_token5] = ACTIONS(9772), + [aux_sym_def_type_statement_token6] = ACTIONS(9772), + [aux_sym_def_type_statement_token7] = ACTIONS(9772), + [aux_sym_def_type_statement_token8] = ACTIONS(9772), + [aux_sym_def_type_statement_token9] = ACTIONS(9772), + [aux_sym_def_type_statement_token10] = ACTIONS(9772), + [aux_sym_def_type_statement_token11] = ACTIONS(9772), + [aux_sym_def_type_statement_token12] = ACTIONS(9772), + [aux_sym_def_type_statement_token13] = ACTIONS(9772), + [aux_sym_def_type_statement_token14] = ACTIONS(9772), + [aux_sym_call_statement_token1] = ACTIONS(9772), + [sym__ambiguous_call_statement] = ACTIONS(9772), + [aux_sym_addressof_expression_token1] = ACTIONS(9772), + [aux_sym_type_of_expression_token1] = ACTIONS(9772), + [aux_sym_unary_expression_token1] = ACTIONS(9772), + [sym_string_literal] = ACTIONS(9774), + [sym_number_literal] = ACTIONS(9774), + [aux_sym_boolean_literal_token1] = ACTIONS(9772), + [aux_sym_boolean_literal_token2] = ACTIONS(9772), + [sym_nothing_literal] = ACTIONS(9772), + [sym_null_literal] = ACTIONS(9772), + [sym_empty_literal] = ACTIONS(9772), + [sym_date_literal] = ACTIONS(9774), + [anon_sym_POUND] = ACTIONS(9772), + }, + [STATE(4170)] = { + [sym_identifier] = ACTIONS(9776), + [sym_newline] = ACTIONS(9778), + [anon_sym_COLON] = ACTIONS(9778), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9776), + [aux_sym_frm_property_statement_token1] = ACTIONS(9776), + [anon_sym_DOT] = ACTIONS(9776), + [anon_sym_BANG] = ACTIONS(9778), + [aux_sym__attribute_identifier_token1] = ACTIONS(9776), + [aux_sym_option_statement_token3] = ACTIONS(9776), + [aux_sym_type_declaration_token1] = ACTIONS(9776), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9776), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9776), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9776), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9776), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9776), + [aux_sym_enum_declaration_token1] = ACTIONS(9776), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9776), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9776), + [aux_sym_declare_function_statement_token1] = ACTIONS(9776), + [aux_sym_preprocessor_const_token1] = ACTIONS(9776), + [aux_sym__property_get_header_token1] = ACTIONS(9776), + [aux_sym_event_declaration_token1] = ACTIONS(9776), + [sym_static_modifier] = ACTIONS(9776), + [sym__dim_keyword] = ACTIONS(9776), + [sym__redim_keyword] = ACTIONS(9776), + [aux_sym_get_accessor_token1] = ACTIONS(9776), + [aux_sym_set_accessor_token1] = ACTIONS(9776), + [aux_sym_const_declaration_token1] = ACTIONS(9776), + [anon_sym_LPAREN] = ACTIONS(9778), + [aux_sym_as_type_clause_token2] = ACTIONS(9776), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9776), + [aux_sym_visibility_token1] = ACTIONS(9776), + [aux_sym_visibility_token2] = ACTIONS(9776), + [aux_sym_elseif_fragment_token1] = ACTIONS(9776), + [aux_sym_else_fragment_token1] = ACTIONS(9776), + [aux_sym_select_statement_token1] = ACTIONS(9776), + [aux_sym__for_header_token1] = ACTIONS(9776), + [aux_sym_do_statement_token1] = ACTIONS(9776), + [aux_sym_do_condition_token1] = ACTIONS(9776), + [aux_sym_with_statement_token1] = ACTIONS(9776), + [aux_sym_exit_statement_token1] = ACTIONS(9776), + [sym_end_statement] = ACTIONS(9778), + [aux_sym_on_goto_statement_token1] = ACTIONS(9776), + [aux_sym_on_goto_statement_token2] = ACTIONS(9776), + [aux_sym_on_error_statement_token2] = ACTIONS(9776), + [sym__ambiguous_redim_statement] = ACTIONS(9778), + [aux_sym_erase_statement_token1] = ACTIONS(9776), + [aux_sym_open_statement_token1] = ACTIONS(9776), + [aux_sym_file_mode_token2] = ACTIONS(9776), + [aux_sym_file_access_token2] = ACTIONS(9776), + [aux_sym_file_lock_token2] = ACTIONS(9776), + [aux_sym_print_statement_token1] = ACTIONS(9776), + [anon_sym_PLUS] = ACTIONS(9778), + [anon_sym_DASH] = ACTIONS(9776), + [anon_sym_QMARK] = ACTIONS(9778), + [aux_sym_close_statement_token1] = ACTIONS(9776), + [aux_sym_put_statement_token1] = ACTIONS(9776), + [aux_sym_unlock_statement_token1] = ACTIONS(9776), + [aux_sym_seek_statement_token1] = ACTIONS(9776), + [sym_reset_statement] = ACTIONS(9776), + [aux_sym_raise_event_statement_token1] = ACTIONS(9776), + [sym_stop_statement] = ACTIONS(9776), + [sym_beep_statement] = ACTIONS(9776), + [aux_sym_unload_statement_token1] = ACTIONS(9776), + [aux_sym_def_type_statement_token1] = ACTIONS(9776), + [aux_sym_def_type_statement_token2] = ACTIONS(9776), + [aux_sym_def_type_statement_token3] = ACTIONS(9776), + [aux_sym_def_type_statement_token4] = ACTIONS(9776), + [aux_sym_def_type_statement_token5] = ACTIONS(9776), + [aux_sym_def_type_statement_token6] = ACTIONS(9776), + [aux_sym_def_type_statement_token7] = ACTIONS(9776), + [aux_sym_def_type_statement_token8] = ACTIONS(9776), + [aux_sym_def_type_statement_token9] = ACTIONS(9776), + [aux_sym_def_type_statement_token10] = ACTIONS(9776), + [aux_sym_def_type_statement_token11] = ACTIONS(9776), + [aux_sym_def_type_statement_token12] = ACTIONS(9776), + [aux_sym_def_type_statement_token13] = ACTIONS(9776), + [aux_sym_def_type_statement_token14] = ACTIONS(9776), + [aux_sym_call_statement_token1] = ACTIONS(9776), + [sym__ambiguous_call_statement] = ACTIONS(9776), + [aux_sym_addressof_expression_token1] = ACTIONS(9776), + [aux_sym_type_of_expression_token1] = ACTIONS(9776), + [aux_sym_unary_expression_token1] = ACTIONS(9776), + [sym_string_literal] = ACTIONS(9778), + [sym_number_literal] = ACTIONS(9778), + [aux_sym_boolean_literal_token1] = ACTIONS(9776), + [aux_sym_boolean_literal_token2] = ACTIONS(9776), + [sym_nothing_literal] = ACTIONS(9776), + [sym_null_literal] = ACTIONS(9776), + [sym_empty_literal] = ACTIONS(9776), + [sym_date_literal] = ACTIONS(9778), + [anon_sym_POUND] = ACTIONS(9776), + }, + [STATE(4171)] = { + [sym_identifier] = ACTIONS(9780), + [sym_newline] = ACTIONS(9782), + [anon_sym_COLON] = ACTIONS(9782), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9780), + [aux_sym_frm_property_statement_token1] = ACTIONS(9780), + [anon_sym_DOT] = ACTIONS(9780), + [anon_sym_BANG] = ACTIONS(9782), + [aux_sym__attribute_identifier_token1] = ACTIONS(9780), + [aux_sym_option_statement_token3] = ACTIONS(9780), + [aux_sym_type_declaration_token1] = ACTIONS(9780), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9780), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9780), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9780), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9780), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9780), + [aux_sym_enum_declaration_token1] = ACTIONS(9780), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9780), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9780), + [aux_sym_declare_function_statement_token1] = ACTIONS(9780), + [aux_sym_preprocessor_const_token1] = ACTIONS(9780), + [aux_sym__property_get_header_token1] = ACTIONS(9780), + [aux_sym_event_declaration_token1] = ACTIONS(9780), + [sym_static_modifier] = ACTIONS(9780), + [sym__dim_keyword] = ACTIONS(9780), + [sym__redim_keyword] = ACTIONS(9780), + [aux_sym_get_accessor_token1] = ACTIONS(9780), + [aux_sym_set_accessor_token1] = ACTIONS(9780), + [aux_sym_const_declaration_token1] = ACTIONS(9780), + [anon_sym_LPAREN] = ACTIONS(9782), + [aux_sym_as_type_clause_token2] = ACTIONS(9780), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9780), + [aux_sym_visibility_token1] = ACTIONS(9780), + [aux_sym_visibility_token2] = ACTIONS(9780), + [aux_sym_elseif_fragment_token1] = ACTIONS(9780), + [aux_sym_else_fragment_token1] = ACTIONS(9780), + [aux_sym_select_statement_token1] = ACTIONS(9780), + [aux_sym__for_header_token1] = ACTIONS(9780), + [aux_sym_do_statement_token1] = ACTIONS(9780), + [aux_sym_do_condition_token1] = ACTIONS(9780), + [aux_sym_with_statement_token1] = ACTIONS(9780), + [aux_sym_exit_statement_token1] = ACTIONS(9780), + [sym_end_statement] = ACTIONS(9782), + [aux_sym_on_goto_statement_token1] = ACTIONS(9780), + [aux_sym_on_goto_statement_token2] = ACTIONS(9780), + [aux_sym_on_error_statement_token2] = ACTIONS(9780), + [sym__ambiguous_redim_statement] = ACTIONS(9782), + [aux_sym_erase_statement_token1] = ACTIONS(9780), + [aux_sym_open_statement_token1] = ACTIONS(9780), + [aux_sym_file_mode_token2] = ACTIONS(9780), + [aux_sym_file_access_token2] = ACTIONS(9780), + [aux_sym_file_lock_token2] = ACTIONS(9780), + [aux_sym_print_statement_token1] = ACTIONS(9780), + [anon_sym_PLUS] = ACTIONS(9782), + [anon_sym_DASH] = ACTIONS(9780), + [anon_sym_QMARK] = ACTIONS(9782), + [aux_sym_close_statement_token1] = ACTIONS(9780), + [aux_sym_put_statement_token1] = ACTIONS(9780), + [aux_sym_unlock_statement_token1] = ACTIONS(9780), + [aux_sym_seek_statement_token1] = ACTIONS(9780), + [sym_reset_statement] = ACTIONS(9780), + [aux_sym_raise_event_statement_token1] = ACTIONS(9780), + [sym_stop_statement] = ACTIONS(9780), + [sym_beep_statement] = ACTIONS(9780), + [aux_sym_unload_statement_token1] = ACTIONS(9780), + [aux_sym_def_type_statement_token1] = ACTIONS(9780), + [aux_sym_def_type_statement_token2] = ACTIONS(9780), + [aux_sym_def_type_statement_token3] = ACTIONS(9780), + [aux_sym_def_type_statement_token4] = ACTIONS(9780), + [aux_sym_def_type_statement_token5] = ACTIONS(9780), + [aux_sym_def_type_statement_token6] = ACTIONS(9780), + [aux_sym_def_type_statement_token7] = ACTIONS(9780), + [aux_sym_def_type_statement_token8] = ACTIONS(9780), + [aux_sym_def_type_statement_token9] = ACTIONS(9780), + [aux_sym_def_type_statement_token10] = ACTIONS(9780), + [aux_sym_def_type_statement_token11] = ACTIONS(9780), + [aux_sym_def_type_statement_token12] = ACTIONS(9780), + [aux_sym_def_type_statement_token13] = ACTIONS(9780), + [aux_sym_def_type_statement_token14] = ACTIONS(9780), + [aux_sym_call_statement_token1] = ACTIONS(9780), + [sym__ambiguous_call_statement] = ACTIONS(9780), + [aux_sym_addressof_expression_token1] = ACTIONS(9780), + [aux_sym_type_of_expression_token1] = ACTIONS(9780), + [aux_sym_unary_expression_token1] = ACTIONS(9780), + [sym_string_literal] = ACTIONS(9782), + [sym_number_literal] = ACTIONS(9782), + [aux_sym_boolean_literal_token1] = ACTIONS(9780), + [aux_sym_boolean_literal_token2] = ACTIONS(9780), + [sym_nothing_literal] = ACTIONS(9780), + [sym_null_literal] = ACTIONS(9780), + [sym_empty_literal] = ACTIONS(9780), + [sym_date_literal] = ACTIONS(9782), + [anon_sym_POUND] = ACTIONS(9780), + }, + [STATE(4172)] = { + [sym_identifier] = ACTIONS(9784), + [sym_newline] = ACTIONS(9786), + [anon_sym_COLON] = ACTIONS(9786), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9784), + [aux_sym_frm_property_statement_token1] = ACTIONS(9784), + [anon_sym_DOT] = ACTIONS(9784), + [anon_sym_BANG] = ACTIONS(9786), + [aux_sym__attribute_identifier_token1] = ACTIONS(9784), + [aux_sym_option_statement_token3] = ACTIONS(9784), + [aux_sym_type_declaration_token1] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9784), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9784), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9784), + [aux_sym_enum_declaration_token1] = ACTIONS(9784), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9784), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9784), + [aux_sym_declare_function_statement_token1] = ACTIONS(9784), + [aux_sym_preprocessor_const_token1] = ACTIONS(9784), + [aux_sym__property_get_header_token1] = ACTIONS(9784), + [aux_sym_event_declaration_token1] = ACTIONS(9784), + [sym_static_modifier] = ACTIONS(9784), + [sym__dim_keyword] = ACTIONS(9784), + [sym__redim_keyword] = ACTIONS(9784), + [aux_sym_get_accessor_token1] = ACTIONS(9784), + [aux_sym_set_accessor_token1] = ACTIONS(9784), + [aux_sym_const_declaration_token1] = ACTIONS(9784), + [anon_sym_LPAREN] = ACTIONS(9786), + [aux_sym_as_type_clause_token2] = ACTIONS(9784), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9784), + [aux_sym_visibility_token1] = ACTIONS(9784), + [aux_sym_visibility_token2] = ACTIONS(9784), + [aux_sym_elseif_fragment_token1] = ACTIONS(9784), + [aux_sym_else_fragment_token1] = ACTIONS(9784), + [aux_sym_select_statement_token1] = ACTIONS(9784), + [aux_sym__for_header_token1] = ACTIONS(9784), + [aux_sym_do_statement_token1] = ACTIONS(9784), + [aux_sym_do_condition_token1] = ACTIONS(9784), + [aux_sym_with_statement_token1] = ACTIONS(9784), + [aux_sym_exit_statement_token1] = ACTIONS(9784), + [sym_end_statement] = ACTIONS(9786), + [aux_sym_on_goto_statement_token1] = ACTIONS(9784), + [aux_sym_on_goto_statement_token2] = ACTIONS(9784), + [aux_sym_on_error_statement_token2] = ACTIONS(9784), + [sym__ambiguous_redim_statement] = ACTIONS(9786), + [aux_sym_erase_statement_token1] = ACTIONS(9784), + [aux_sym_open_statement_token1] = ACTIONS(9784), + [aux_sym_file_mode_token2] = ACTIONS(9784), + [aux_sym_file_access_token2] = ACTIONS(9784), + [aux_sym_file_lock_token2] = ACTIONS(9784), + [aux_sym_print_statement_token1] = ACTIONS(9784), + [anon_sym_PLUS] = ACTIONS(9786), + [anon_sym_DASH] = ACTIONS(9784), + [anon_sym_QMARK] = ACTIONS(9786), + [aux_sym_close_statement_token1] = ACTIONS(9784), + [aux_sym_put_statement_token1] = ACTIONS(9784), + [aux_sym_unlock_statement_token1] = ACTIONS(9784), + [aux_sym_seek_statement_token1] = ACTIONS(9784), + [sym_reset_statement] = ACTIONS(9784), + [aux_sym_raise_event_statement_token1] = ACTIONS(9784), + [sym_stop_statement] = ACTIONS(9784), + [sym_beep_statement] = ACTIONS(9784), + [aux_sym_unload_statement_token1] = ACTIONS(9784), + [aux_sym_def_type_statement_token1] = ACTIONS(9784), + [aux_sym_def_type_statement_token2] = ACTIONS(9784), + [aux_sym_def_type_statement_token3] = ACTIONS(9784), + [aux_sym_def_type_statement_token4] = ACTIONS(9784), + [aux_sym_def_type_statement_token5] = ACTIONS(9784), + [aux_sym_def_type_statement_token6] = ACTIONS(9784), + [aux_sym_def_type_statement_token7] = ACTIONS(9784), + [aux_sym_def_type_statement_token8] = ACTIONS(9784), + [aux_sym_def_type_statement_token9] = ACTIONS(9784), + [aux_sym_def_type_statement_token10] = ACTIONS(9784), + [aux_sym_def_type_statement_token11] = ACTIONS(9784), + [aux_sym_def_type_statement_token12] = ACTIONS(9784), + [aux_sym_def_type_statement_token13] = ACTIONS(9784), + [aux_sym_def_type_statement_token14] = ACTIONS(9784), + [aux_sym_call_statement_token1] = ACTIONS(9784), + [sym__ambiguous_call_statement] = ACTIONS(9784), + [aux_sym_addressof_expression_token1] = ACTIONS(9784), + [aux_sym_type_of_expression_token1] = ACTIONS(9784), + [aux_sym_unary_expression_token1] = ACTIONS(9784), + [sym_string_literal] = ACTIONS(9786), + [sym_number_literal] = ACTIONS(9786), + [aux_sym_boolean_literal_token1] = ACTIONS(9784), + [aux_sym_boolean_literal_token2] = ACTIONS(9784), + [sym_nothing_literal] = ACTIONS(9784), + [sym_null_literal] = ACTIONS(9784), + [sym_empty_literal] = ACTIONS(9784), + [sym_date_literal] = ACTIONS(9786), + [anon_sym_POUND] = ACTIONS(9784), + }, + [STATE(4173)] = { + [sym_identifier] = ACTIONS(9788), + [sym_newline] = ACTIONS(9790), + [anon_sym_COLON] = ACTIONS(9790), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9788), + [aux_sym_frm_property_statement_token1] = ACTIONS(9788), + [anon_sym_DOT] = ACTIONS(9788), + [anon_sym_BANG] = ACTIONS(9790), + [aux_sym__attribute_identifier_token1] = ACTIONS(9788), + [aux_sym_option_statement_token3] = ACTIONS(9788), + [aux_sym_type_declaration_token1] = ACTIONS(9788), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9788), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9788), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9788), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9788), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9788), + [aux_sym_enum_declaration_token1] = ACTIONS(9788), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9788), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9788), + [aux_sym_declare_function_statement_token1] = ACTIONS(9788), + [aux_sym_preprocessor_const_token1] = ACTIONS(9788), + [aux_sym__property_get_header_token1] = ACTIONS(9788), + [aux_sym_event_declaration_token1] = ACTIONS(9788), + [sym_static_modifier] = ACTIONS(9788), + [sym__dim_keyword] = ACTIONS(9788), + [sym__redim_keyword] = ACTIONS(9788), + [aux_sym_get_accessor_token1] = ACTIONS(9788), + [aux_sym_set_accessor_token1] = ACTIONS(9788), + [aux_sym_const_declaration_token1] = ACTIONS(9788), + [anon_sym_LPAREN] = ACTIONS(9790), + [aux_sym_as_type_clause_token2] = ACTIONS(9788), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9788), + [aux_sym_visibility_token1] = ACTIONS(9788), + [aux_sym_visibility_token2] = ACTIONS(9788), + [aux_sym_elseif_fragment_token1] = ACTIONS(9788), + [aux_sym_else_fragment_token1] = ACTIONS(9788), + [aux_sym_select_statement_token1] = ACTIONS(9788), + [aux_sym__for_header_token1] = ACTIONS(9788), + [aux_sym_do_statement_token1] = ACTIONS(9788), + [aux_sym_do_condition_token1] = ACTIONS(9788), + [aux_sym_with_statement_token1] = ACTIONS(9788), + [aux_sym_exit_statement_token1] = ACTIONS(9788), + [sym_end_statement] = ACTIONS(9790), + [aux_sym_on_goto_statement_token1] = ACTIONS(9788), + [aux_sym_on_goto_statement_token2] = ACTIONS(9788), + [aux_sym_on_error_statement_token2] = ACTIONS(9788), + [sym__ambiguous_redim_statement] = ACTIONS(9790), + [aux_sym_erase_statement_token1] = ACTIONS(9788), + [aux_sym_open_statement_token1] = ACTIONS(9788), + [aux_sym_file_mode_token2] = ACTIONS(9788), + [aux_sym_file_access_token2] = ACTIONS(9788), + [aux_sym_file_lock_token2] = ACTIONS(9788), + [aux_sym_print_statement_token1] = ACTIONS(9788), + [anon_sym_PLUS] = ACTIONS(9790), + [anon_sym_DASH] = ACTIONS(9788), + [anon_sym_QMARK] = ACTIONS(9790), + [aux_sym_close_statement_token1] = ACTIONS(9788), + [aux_sym_put_statement_token1] = ACTIONS(9788), + [aux_sym_unlock_statement_token1] = ACTIONS(9788), + [aux_sym_seek_statement_token1] = ACTIONS(9788), + [sym_reset_statement] = ACTIONS(9788), + [aux_sym_raise_event_statement_token1] = ACTIONS(9788), + [sym_stop_statement] = ACTIONS(9788), + [sym_beep_statement] = ACTIONS(9788), + [aux_sym_unload_statement_token1] = ACTIONS(9788), + [aux_sym_def_type_statement_token1] = ACTIONS(9788), + [aux_sym_def_type_statement_token2] = ACTIONS(9788), + [aux_sym_def_type_statement_token3] = ACTIONS(9788), + [aux_sym_def_type_statement_token4] = ACTIONS(9788), + [aux_sym_def_type_statement_token5] = ACTIONS(9788), + [aux_sym_def_type_statement_token6] = ACTIONS(9788), + [aux_sym_def_type_statement_token7] = ACTIONS(9788), + [aux_sym_def_type_statement_token8] = ACTIONS(9788), + [aux_sym_def_type_statement_token9] = ACTIONS(9788), + [aux_sym_def_type_statement_token10] = ACTIONS(9788), + [aux_sym_def_type_statement_token11] = ACTIONS(9788), + [aux_sym_def_type_statement_token12] = ACTIONS(9788), + [aux_sym_def_type_statement_token13] = ACTIONS(9788), + [aux_sym_def_type_statement_token14] = ACTIONS(9788), + [aux_sym_call_statement_token1] = ACTIONS(9788), + [sym__ambiguous_call_statement] = ACTIONS(9788), + [aux_sym_addressof_expression_token1] = ACTIONS(9788), + [aux_sym_type_of_expression_token1] = ACTIONS(9788), + [aux_sym_unary_expression_token1] = ACTIONS(9788), + [sym_string_literal] = ACTIONS(9790), + [sym_number_literal] = ACTIONS(9790), + [aux_sym_boolean_literal_token1] = ACTIONS(9788), + [aux_sym_boolean_literal_token2] = ACTIONS(9788), + [sym_nothing_literal] = ACTIONS(9788), + [sym_null_literal] = ACTIONS(9788), + [sym_empty_literal] = ACTIONS(9788), + [sym_date_literal] = ACTIONS(9790), + [anon_sym_POUND] = ACTIONS(9788), + }, + [STATE(4174)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4186), + [sym_identifier] = ACTIONS(8308), + [sym_newline] = ACTIONS(8310), + [anon_sym_COLON] = ACTIONS(8310), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8308), + [aux_sym_frm_property_statement_token1] = ACTIONS(8308), + [anon_sym_DOT] = ACTIONS(8308), + [anon_sym_BANG] = ACTIONS(8310), + [aux_sym__attribute_identifier_token1] = ACTIONS(8308), + [aux_sym_option_statement_token3] = ACTIONS(8308), + [aux_sym_type_declaration_token1] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8308), + [aux_sym_enum_declaration_token1] = ACTIONS(8308), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8308), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8308), + [aux_sym_declare_function_statement_token1] = ACTIONS(8308), + [aux_sym_preprocessor_const_token1] = ACTIONS(8308), + [aux_sym__property_get_header_token1] = ACTIONS(8308), + [aux_sym_event_declaration_token1] = ACTIONS(8308), + [sym_static_modifier] = ACTIONS(8308), + [sym__dim_keyword] = ACTIONS(8308), + [sym__redim_keyword] = ACTIONS(8308), + [aux_sym_get_accessor_token1] = ACTIONS(8308), + [aux_sym_set_accessor_token1] = ACTIONS(8308), + [anon_sym_COMMA] = ACTIONS(9724), + [aux_sym_const_declaration_token1] = ACTIONS(8308), + [anon_sym_LPAREN] = ACTIONS(8310), + [aux_sym_as_type_clause_token2] = ACTIONS(8308), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8308), + [aux_sym_visibility_token1] = ACTIONS(8308), + [aux_sym_visibility_token2] = ACTIONS(8308), + [aux_sym_elseif_fragment_token1] = ACTIONS(8308), + [aux_sym_else_fragment_token1] = ACTIONS(8308), + [aux_sym_select_statement_token1] = ACTIONS(8308), + [aux_sym__for_header_token1] = ACTIONS(8308), + [aux_sym_do_statement_token1] = ACTIONS(8308), + [aux_sym_do_condition_token1] = ACTIONS(8308), + [aux_sym_with_statement_token1] = ACTIONS(8308), + [aux_sym_exit_statement_token1] = ACTIONS(8308), + [sym_end_statement] = ACTIONS(8310), + [aux_sym_on_goto_statement_token1] = ACTIONS(8308), + [aux_sym_on_goto_statement_token2] = ACTIONS(8308), + [aux_sym_on_error_statement_token2] = ACTIONS(8308), + [sym__ambiguous_redim_statement] = ACTIONS(8310), + [aux_sym_erase_statement_token1] = ACTIONS(8308), + [aux_sym_open_statement_token1] = ACTIONS(8308), + [aux_sym_file_mode_token2] = ACTIONS(8308), + [aux_sym_file_access_token2] = ACTIONS(8308), + [aux_sym_file_lock_token2] = ACTIONS(8308), + [aux_sym_print_statement_token1] = ACTIONS(8308), + [anon_sym_PLUS] = ACTIONS(8310), + [anon_sym_DASH] = ACTIONS(8308), + [anon_sym_QMARK] = ACTIONS(8310), + [aux_sym_close_statement_token1] = ACTIONS(8308), + [aux_sym_put_statement_token1] = ACTIONS(8308), + [aux_sym_unlock_statement_token1] = ACTIONS(8308), + [aux_sym_seek_statement_token1] = ACTIONS(8308), + [sym_reset_statement] = ACTIONS(8308), + [aux_sym_raise_event_statement_token1] = ACTIONS(8308), + [sym_stop_statement] = ACTIONS(8308), + [sym_beep_statement] = ACTIONS(8308), + [aux_sym_unload_statement_token1] = ACTIONS(8308), + [aux_sym_def_type_statement_token1] = ACTIONS(8308), + [aux_sym_def_type_statement_token2] = ACTIONS(8308), + [aux_sym_def_type_statement_token3] = ACTIONS(8308), + [aux_sym_def_type_statement_token4] = ACTIONS(8308), + [aux_sym_def_type_statement_token5] = ACTIONS(8308), + [aux_sym_def_type_statement_token6] = ACTIONS(8308), + [aux_sym_def_type_statement_token7] = ACTIONS(8308), + [aux_sym_def_type_statement_token8] = ACTIONS(8308), + [aux_sym_def_type_statement_token9] = ACTIONS(8308), + [aux_sym_def_type_statement_token10] = ACTIONS(8308), + [aux_sym_def_type_statement_token11] = ACTIONS(8308), + [aux_sym_def_type_statement_token12] = ACTIONS(8308), + [aux_sym_def_type_statement_token13] = ACTIONS(8308), + [aux_sym_def_type_statement_token14] = ACTIONS(8308), + [aux_sym_call_statement_token1] = ACTIONS(8308), + [sym__ambiguous_call_statement] = ACTIONS(8308), + [aux_sym_addressof_expression_token1] = ACTIONS(8308), + [aux_sym_type_of_expression_token1] = ACTIONS(8308), + [aux_sym_unary_expression_token1] = ACTIONS(8308), + [sym_string_literal] = ACTIONS(8310), + [sym_number_literal] = ACTIONS(8310), + [aux_sym_boolean_literal_token1] = ACTIONS(8308), + [aux_sym_boolean_literal_token2] = ACTIONS(8308), + [sym_nothing_literal] = ACTIONS(8308), + [sym_null_literal] = ACTIONS(8308), + [sym_empty_literal] = ACTIONS(8308), + [sym_date_literal] = ACTIONS(8310), + [anon_sym_POUND] = ACTIONS(8308), + }, + [STATE(4175)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4187), + [sym_identifier] = ACTIONS(8332), + [sym_newline] = ACTIONS(8334), + [anon_sym_COLON] = ACTIONS(8334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8332), + [aux_sym_frm_property_statement_token1] = ACTIONS(8332), + [anon_sym_DOT] = ACTIONS(8332), + [anon_sym_BANG] = ACTIONS(8334), + [aux_sym__attribute_identifier_token1] = ACTIONS(8332), + [aux_sym_option_statement_token3] = ACTIONS(8332), + [aux_sym_type_declaration_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8332), + [aux_sym_enum_declaration_token1] = ACTIONS(8332), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8332), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8332), + [aux_sym_declare_function_statement_token1] = ACTIONS(8332), + [aux_sym_preprocessor_const_token1] = ACTIONS(8332), + [aux_sym__property_get_header_token1] = ACTIONS(8332), + [aux_sym_event_declaration_token1] = ACTIONS(8332), + [sym_static_modifier] = ACTIONS(8332), + [sym__dim_keyword] = ACTIONS(8332), + [sym__redim_keyword] = ACTIONS(8332), + [aux_sym_get_accessor_token1] = ACTIONS(8332), + [aux_sym_set_accessor_token1] = ACTIONS(8332), + [anon_sym_COMMA] = ACTIONS(9724), + [aux_sym_const_declaration_token1] = ACTIONS(8332), + [anon_sym_LPAREN] = ACTIONS(8334), + [aux_sym_as_type_clause_token2] = ACTIONS(8332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8332), + [aux_sym_visibility_token1] = ACTIONS(8332), + [aux_sym_visibility_token2] = ACTIONS(8332), + [aux_sym_elseif_fragment_token1] = ACTIONS(8332), + [aux_sym_else_fragment_token1] = ACTIONS(8332), + [aux_sym_select_statement_token1] = ACTIONS(8332), + [aux_sym__for_header_token1] = ACTIONS(8332), + [aux_sym_do_statement_token1] = ACTIONS(8332), + [aux_sym_do_condition_token1] = ACTIONS(8332), + [aux_sym_with_statement_token1] = ACTIONS(8332), + [aux_sym_exit_statement_token1] = ACTIONS(8332), + [sym_end_statement] = ACTIONS(8334), + [aux_sym_on_goto_statement_token1] = ACTIONS(8332), + [aux_sym_on_goto_statement_token2] = ACTIONS(8332), + [aux_sym_on_error_statement_token2] = ACTIONS(8332), + [sym__ambiguous_redim_statement] = ACTIONS(8334), + [aux_sym_erase_statement_token1] = ACTIONS(8332), + [aux_sym_open_statement_token1] = ACTIONS(8332), + [aux_sym_file_mode_token2] = ACTIONS(8332), + [aux_sym_file_access_token2] = ACTIONS(8332), + [aux_sym_file_lock_token2] = ACTIONS(8332), + [aux_sym_print_statement_token1] = ACTIONS(8332), + [anon_sym_PLUS] = ACTIONS(8334), + [anon_sym_DASH] = ACTIONS(8332), + [anon_sym_QMARK] = ACTIONS(8334), + [aux_sym_close_statement_token1] = ACTIONS(8332), + [aux_sym_put_statement_token1] = ACTIONS(8332), + [aux_sym_unlock_statement_token1] = ACTIONS(8332), + [aux_sym_seek_statement_token1] = ACTIONS(8332), + [sym_reset_statement] = ACTIONS(8332), + [aux_sym_raise_event_statement_token1] = ACTIONS(8332), + [sym_stop_statement] = ACTIONS(8332), + [sym_beep_statement] = ACTIONS(8332), + [aux_sym_unload_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token2] = ACTIONS(8332), + [aux_sym_def_type_statement_token3] = ACTIONS(8332), + [aux_sym_def_type_statement_token4] = ACTIONS(8332), + [aux_sym_def_type_statement_token5] = ACTIONS(8332), + [aux_sym_def_type_statement_token6] = ACTIONS(8332), + [aux_sym_def_type_statement_token7] = ACTIONS(8332), + [aux_sym_def_type_statement_token8] = ACTIONS(8332), + [aux_sym_def_type_statement_token9] = ACTIONS(8332), + [aux_sym_def_type_statement_token10] = ACTIONS(8332), + [aux_sym_def_type_statement_token11] = ACTIONS(8332), + [aux_sym_def_type_statement_token12] = ACTIONS(8332), + [aux_sym_def_type_statement_token13] = ACTIONS(8332), + [aux_sym_def_type_statement_token14] = ACTIONS(8332), + [aux_sym_call_statement_token1] = ACTIONS(8332), + [sym__ambiguous_call_statement] = ACTIONS(8332), + [aux_sym_addressof_expression_token1] = ACTIONS(8332), + [aux_sym_type_of_expression_token1] = ACTIONS(8332), + [aux_sym_unary_expression_token1] = ACTIONS(8332), + [sym_string_literal] = ACTIONS(8334), + [sym_number_literal] = ACTIONS(8334), + [aux_sym_boolean_literal_token1] = ACTIONS(8332), + [aux_sym_boolean_literal_token2] = ACTIONS(8332), + [sym_nothing_literal] = ACTIONS(8332), + [sym_null_literal] = ACTIONS(8332), + [sym_empty_literal] = ACTIONS(8332), + [sym_date_literal] = ACTIONS(8334), + [anon_sym_POUND] = ACTIONS(8332), + }, + [STATE(4176)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4188), + [sym_identifier] = ACTIONS(8336), + [sym_newline] = ACTIONS(8338), + [anon_sym_COLON] = ACTIONS(8338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8336), + [aux_sym_frm_property_statement_token1] = ACTIONS(8336), + [anon_sym_DOT] = ACTIONS(8336), + [anon_sym_BANG] = ACTIONS(8338), + [aux_sym__attribute_identifier_token1] = ACTIONS(8336), + [aux_sym_option_statement_token3] = ACTIONS(8336), + [aux_sym_type_declaration_token1] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8336), + [aux_sym_enum_declaration_token1] = ACTIONS(8336), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8336), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8336), + [aux_sym_declare_function_statement_token1] = ACTIONS(8336), + [aux_sym_preprocessor_const_token1] = ACTIONS(8336), + [aux_sym__property_get_header_token1] = ACTIONS(8336), + [aux_sym_event_declaration_token1] = ACTIONS(8336), + [sym_static_modifier] = ACTIONS(8336), + [sym__dim_keyword] = ACTIONS(8336), + [sym__redim_keyword] = ACTIONS(8336), + [aux_sym_get_accessor_token1] = ACTIONS(8336), + [aux_sym_set_accessor_token1] = ACTIONS(8336), + [anon_sym_COMMA] = ACTIONS(9724), + [aux_sym_const_declaration_token1] = ACTIONS(8336), + [anon_sym_LPAREN] = ACTIONS(8338), + [aux_sym_as_type_clause_token2] = ACTIONS(8336), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8336), + [aux_sym_visibility_token1] = ACTIONS(8336), + [aux_sym_visibility_token2] = ACTIONS(8336), + [aux_sym_elseif_fragment_token1] = ACTIONS(8336), + [aux_sym_else_fragment_token1] = ACTIONS(8336), + [aux_sym_select_statement_token1] = ACTIONS(8336), + [aux_sym__for_header_token1] = ACTIONS(8336), + [aux_sym_do_statement_token1] = ACTIONS(8336), + [aux_sym_do_condition_token1] = ACTIONS(8336), + [aux_sym_with_statement_token1] = ACTIONS(8336), + [aux_sym_exit_statement_token1] = ACTIONS(8336), + [sym_end_statement] = ACTIONS(8338), + [aux_sym_on_goto_statement_token1] = ACTIONS(8336), + [aux_sym_on_goto_statement_token2] = ACTIONS(8336), + [aux_sym_on_error_statement_token2] = ACTIONS(8336), + [sym__ambiguous_redim_statement] = ACTIONS(8338), + [aux_sym_erase_statement_token1] = ACTIONS(8336), + [aux_sym_open_statement_token1] = ACTIONS(8336), + [aux_sym_file_mode_token2] = ACTIONS(8336), + [aux_sym_file_access_token2] = ACTIONS(8336), + [aux_sym_file_lock_token2] = ACTIONS(8336), + [aux_sym_print_statement_token1] = ACTIONS(8336), + [anon_sym_PLUS] = ACTIONS(8338), + [anon_sym_DASH] = ACTIONS(8336), + [anon_sym_QMARK] = ACTIONS(8338), + [aux_sym_close_statement_token1] = ACTIONS(8336), + [aux_sym_put_statement_token1] = ACTIONS(8336), + [aux_sym_unlock_statement_token1] = ACTIONS(8336), + [aux_sym_seek_statement_token1] = ACTIONS(8336), + [sym_reset_statement] = ACTIONS(8336), + [aux_sym_raise_event_statement_token1] = ACTIONS(8336), + [sym_stop_statement] = ACTIONS(8336), + [sym_beep_statement] = ACTIONS(8336), + [aux_sym_unload_statement_token1] = ACTIONS(8336), + [aux_sym_def_type_statement_token1] = ACTIONS(8336), + [aux_sym_def_type_statement_token2] = ACTIONS(8336), + [aux_sym_def_type_statement_token3] = ACTIONS(8336), + [aux_sym_def_type_statement_token4] = ACTIONS(8336), + [aux_sym_def_type_statement_token5] = ACTIONS(8336), + [aux_sym_def_type_statement_token6] = ACTIONS(8336), + [aux_sym_def_type_statement_token7] = ACTIONS(8336), + [aux_sym_def_type_statement_token8] = ACTIONS(8336), + [aux_sym_def_type_statement_token9] = ACTIONS(8336), + [aux_sym_def_type_statement_token10] = ACTIONS(8336), + [aux_sym_def_type_statement_token11] = ACTIONS(8336), + [aux_sym_def_type_statement_token12] = ACTIONS(8336), + [aux_sym_def_type_statement_token13] = ACTIONS(8336), + [aux_sym_def_type_statement_token14] = ACTIONS(8336), + [aux_sym_call_statement_token1] = ACTIONS(8336), + [sym__ambiguous_call_statement] = ACTIONS(8336), + [aux_sym_addressof_expression_token1] = ACTIONS(8336), + [aux_sym_type_of_expression_token1] = ACTIONS(8336), + [aux_sym_unary_expression_token1] = ACTIONS(8336), + [sym_string_literal] = ACTIONS(8338), + [sym_number_literal] = ACTIONS(8338), + [aux_sym_boolean_literal_token1] = ACTIONS(8336), + [aux_sym_boolean_literal_token2] = ACTIONS(8336), + [sym_nothing_literal] = ACTIONS(8336), + [sym_null_literal] = ACTIONS(8336), + [sym_empty_literal] = ACTIONS(8336), + [sym_date_literal] = ACTIONS(8338), + [anon_sym_POUND] = ACTIONS(8336), + }, + [STATE(4177)] = { + [aux_sym_const_declaration_repeat1] = STATE(4189), + [sym_identifier] = ACTIONS(8346), + [sym_newline] = ACTIONS(8348), + [anon_sym_COLON] = ACTIONS(8348), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8346), + [aux_sym_frm_property_statement_token1] = ACTIONS(8346), + [anon_sym_DOT] = ACTIONS(8346), + [anon_sym_BANG] = ACTIONS(8348), + [aux_sym__attribute_identifier_token1] = ACTIONS(8346), + [aux_sym_option_statement_token3] = ACTIONS(8346), + [aux_sym_type_declaration_token1] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8346), + [aux_sym_enum_declaration_token1] = ACTIONS(8346), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8346), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8346), + [aux_sym_declare_function_statement_token1] = ACTIONS(8346), + [aux_sym_preprocessor_const_token1] = ACTIONS(8346), + [aux_sym__property_get_header_token1] = ACTIONS(8346), + [aux_sym_event_declaration_token1] = ACTIONS(8346), + [sym_static_modifier] = ACTIONS(8346), + [sym__dim_keyword] = ACTIONS(8346), + [sym__redim_keyword] = ACTIONS(8346), + [aux_sym_get_accessor_token1] = ACTIONS(8346), + [aux_sym_set_accessor_token1] = ACTIONS(8346), + [anon_sym_COMMA] = ACTIONS(9730), + [aux_sym_const_declaration_token1] = ACTIONS(8346), + [anon_sym_LPAREN] = ACTIONS(8348), + [aux_sym_as_type_clause_token2] = ACTIONS(8346), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8346), + [aux_sym_visibility_token1] = ACTIONS(8346), + [aux_sym_visibility_token2] = ACTIONS(8346), + [aux_sym_elseif_fragment_token1] = ACTIONS(8346), + [aux_sym_else_fragment_token1] = ACTIONS(8346), + [aux_sym_select_statement_token1] = ACTIONS(8346), + [aux_sym__for_header_token1] = ACTIONS(8346), + [aux_sym_do_statement_token1] = ACTIONS(8346), + [aux_sym_do_condition_token1] = ACTIONS(8346), + [aux_sym_with_statement_token1] = ACTIONS(8346), + [aux_sym_exit_statement_token1] = ACTIONS(8346), + [sym_end_statement] = ACTIONS(8348), + [aux_sym_on_goto_statement_token1] = ACTIONS(8346), + [aux_sym_on_goto_statement_token2] = ACTIONS(8346), + [aux_sym_on_error_statement_token2] = ACTIONS(8346), + [sym__ambiguous_redim_statement] = ACTIONS(8348), + [aux_sym_erase_statement_token1] = ACTIONS(8346), + [aux_sym_open_statement_token1] = ACTIONS(8346), + [aux_sym_file_mode_token2] = ACTIONS(8346), + [aux_sym_file_access_token2] = ACTIONS(8346), + [aux_sym_file_lock_token2] = ACTIONS(8346), + [aux_sym_print_statement_token1] = ACTIONS(8346), + [anon_sym_PLUS] = ACTIONS(8348), + [anon_sym_DASH] = ACTIONS(8346), + [anon_sym_QMARK] = ACTIONS(8348), + [aux_sym_close_statement_token1] = ACTIONS(8346), + [aux_sym_put_statement_token1] = ACTIONS(8346), + [aux_sym_unlock_statement_token1] = ACTIONS(8346), + [aux_sym_seek_statement_token1] = ACTIONS(8346), + [sym_reset_statement] = ACTIONS(8346), + [aux_sym_raise_event_statement_token1] = ACTIONS(8346), + [sym_stop_statement] = ACTIONS(8346), + [sym_beep_statement] = ACTIONS(8346), + [aux_sym_unload_statement_token1] = ACTIONS(8346), + [aux_sym_def_type_statement_token1] = ACTIONS(8346), + [aux_sym_def_type_statement_token2] = ACTIONS(8346), + [aux_sym_def_type_statement_token3] = ACTIONS(8346), + [aux_sym_def_type_statement_token4] = ACTIONS(8346), + [aux_sym_def_type_statement_token5] = ACTIONS(8346), + [aux_sym_def_type_statement_token6] = ACTIONS(8346), + [aux_sym_def_type_statement_token7] = ACTIONS(8346), + [aux_sym_def_type_statement_token8] = ACTIONS(8346), + [aux_sym_def_type_statement_token9] = ACTIONS(8346), + [aux_sym_def_type_statement_token10] = ACTIONS(8346), + [aux_sym_def_type_statement_token11] = ACTIONS(8346), + [aux_sym_def_type_statement_token12] = ACTIONS(8346), + [aux_sym_def_type_statement_token13] = ACTIONS(8346), + [aux_sym_def_type_statement_token14] = ACTIONS(8346), + [aux_sym_call_statement_token1] = ACTIONS(8346), + [sym__ambiguous_call_statement] = ACTIONS(8346), + [aux_sym_addressof_expression_token1] = ACTIONS(8346), + [aux_sym_type_of_expression_token1] = ACTIONS(8346), + [aux_sym_unary_expression_token1] = ACTIONS(8346), + [sym_string_literal] = ACTIONS(8348), + [sym_number_literal] = ACTIONS(8348), + [aux_sym_boolean_literal_token1] = ACTIONS(8346), + [aux_sym_boolean_literal_token2] = ACTIONS(8346), + [sym_nothing_literal] = ACTIONS(8346), + [sym_null_literal] = ACTIONS(8346), + [sym_empty_literal] = ACTIONS(8346), + [sym_date_literal] = ACTIONS(8348), + [anon_sym_POUND] = ACTIONS(8346), + }, + [STATE(4178)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4179), + [sym_identifier] = ACTIONS(8332), + [sym_newline] = ACTIONS(8334), + [anon_sym_COLON] = ACTIONS(8334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8332), + [aux_sym_frm_property_statement_token1] = ACTIONS(8332), + [anon_sym_DOT] = ACTIONS(8332), + [anon_sym_BANG] = ACTIONS(8334), + [aux_sym__attribute_identifier_token1] = ACTIONS(8332), + [aux_sym_option_statement_token3] = ACTIONS(8332), + [aux_sym_type_declaration_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8332), + [aux_sym_enum_declaration_token1] = ACTIONS(8332), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8332), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8332), + [aux_sym_declare_function_statement_token1] = ACTIONS(8332), + [aux_sym_preprocessor_const_token1] = ACTIONS(8332), + [aux_sym__property_get_header_token1] = ACTIONS(8332), + [aux_sym_event_declaration_token1] = ACTIONS(8332), + [sym_static_modifier] = ACTIONS(8332), + [sym__dim_keyword] = ACTIONS(8332), + [sym__redim_keyword] = ACTIONS(8332), + [aux_sym_get_accessor_token1] = ACTIONS(8332), + [aux_sym_set_accessor_token1] = ACTIONS(8332), + [anon_sym_COMMA] = ACTIONS(9724), + [aux_sym_const_declaration_token1] = ACTIONS(8332), + [anon_sym_LPAREN] = ACTIONS(8334), + [aux_sym_as_type_clause_token2] = ACTIONS(8332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8332), + [aux_sym_visibility_token1] = ACTIONS(8332), + [aux_sym_visibility_token2] = ACTIONS(8332), + [aux_sym_elseif_fragment_token1] = ACTIONS(8332), + [aux_sym_else_fragment_token1] = ACTIONS(8332), + [aux_sym_select_statement_token1] = ACTIONS(8332), + [aux_sym__for_header_token1] = ACTIONS(8332), + [aux_sym_do_statement_token1] = ACTIONS(8332), + [aux_sym_do_condition_token1] = ACTIONS(8332), + [aux_sym_with_statement_token1] = ACTIONS(8332), + [aux_sym_exit_statement_token1] = ACTIONS(8332), + [sym_end_statement] = ACTIONS(8334), + [aux_sym_on_goto_statement_token1] = ACTIONS(8332), + [aux_sym_on_goto_statement_token2] = ACTIONS(8332), + [aux_sym_on_error_statement_token2] = ACTIONS(8332), + [sym__ambiguous_redim_statement] = ACTIONS(8334), + [aux_sym_erase_statement_token1] = ACTIONS(8332), + [aux_sym_open_statement_token1] = ACTIONS(8332), + [aux_sym_file_mode_token2] = ACTIONS(8332), + [aux_sym_file_access_token2] = ACTIONS(8332), + [aux_sym_file_lock_token2] = ACTIONS(8332), + [aux_sym_print_statement_token1] = ACTIONS(8332), + [anon_sym_PLUS] = ACTIONS(8334), + [anon_sym_DASH] = ACTIONS(8332), + [anon_sym_QMARK] = ACTIONS(8334), + [aux_sym_close_statement_token1] = ACTIONS(8332), + [aux_sym_put_statement_token1] = ACTIONS(8332), + [aux_sym_unlock_statement_token1] = ACTIONS(8332), + [aux_sym_seek_statement_token1] = ACTIONS(8332), + [sym_reset_statement] = ACTIONS(8332), + [aux_sym_raise_event_statement_token1] = ACTIONS(8332), + [sym_stop_statement] = ACTIONS(8332), + [sym_beep_statement] = ACTIONS(8332), + [aux_sym_unload_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token2] = ACTIONS(8332), + [aux_sym_def_type_statement_token3] = ACTIONS(8332), + [aux_sym_def_type_statement_token4] = ACTIONS(8332), + [aux_sym_def_type_statement_token5] = ACTIONS(8332), + [aux_sym_def_type_statement_token6] = ACTIONS(8332), + [aux_sym_def_type_statement_token7] = ACTIONS(8332), + [aux_sym_def_type_statement_token8] = ACTIONS(8332), + [aux_sym_def_type_statement_token9] = ACTIONS(8332), + [aux_sym_def_type_statement_token10] = ACTIONS(8332), + [aux_sym_def_type_statement_token11] = ACTIONS(8332), + [aux_sym_def_type_statement_token12] = ACTIONS(8332), + [aux_sym_def_type_statement_token13] = ACTIONS(8332), + [aux_sym_def_type_statement_token14] = ACTIONS(8332), + [aux_sym_call_statement_token1] = ACTIONS(8332), + [sym__ambiguous_call_statement] = ACTIONS(8332), + [aux_sym_addressof_expression_token1] = ACTIONS(8332), + [aux_sym_type_of_expression_token1] = ACTIONS(8332), + [aux_sym_unary_expression_token1] = ACTIONS(8332), + [sym_string_literal] = ACTIONS(8334), + [sym_number_literal] = ACTIONS(8334), + [aux_sym_boolean_literal_token1] = ACTIONS(8332), + [aux_sym_boolean_literal_token2] = ACTIONS(8332), + [sym_nothing_literal] = ACTIONS(8332), + [sym_null_literal] = ACTIONS(8332), + [sym_empty_literal] = ACTIONS(8332), + [sym_date_literal] = ACTIONS(8334), + [anon_sym_POUND] = ACTIONS(8332), + }, + [STATE(4179)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4179), + [sym_identifier] = ACTIONS(8287), + [sym_newline] = ACTIONS(8289), + [anon_sym_COLON] = ACTIONS(8289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8287), + [aux_sym_frm_property_statement_token1] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8287), + [anon_sym_BANG] = ACTIONS(8289), + [aux_sym__attribute_identifier_token1] = ACTIONS(8287), + [aux_sym_option_statement_token3] = ACTIONS(8287), + [aux_sym_type_declaration_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8287), + [aux_sym_enum_declaration_token1] = ACTIONS(8287), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8287), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8287), + [aux_sym_declare_function_statement_token1] = ACTIONS(8287), + [aux_sym_preprocessor_const_token1] = ACTIONS(8287), + [aux_sym__property_get_header_token1] = ACTIONS(8287), + [aux_sym_event_declaration_token1] = ACTIONS(8287), + [sym_static_modifier] = ACTIONS(8287), + [sym__dim_keyword] = ACTIONS(8287), + [sym__redim_keyword] = ACTIONS(8287), + [aux_sym_get_accessor_token1] = ACTIONS(8287), + [aux_sym_set_accessor_token1] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(9792), + [aux_sym_const_declaration_token1] = ACTIONS(8287), + [anon_sym_LPAREN] = ACTIONS(8289), + [aux_sym_as_type_clause_token2] = ACTIONS(8287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8287), + [aux_sym_visibility_token1] = ACTIONS(8287), + [aux_sym_visibility_token2] = ACTIONS(8287), + [aux_sym_elseif_fragment_token1] = ACTIONS(8287), + [aux_sym_else_fragment_token1] = ACTIONS(8287), + [aux_sym_select_statement_token1] = ACTIONS(8287), + [aux_sym__for_header_token1] = ACTIONS(8287), + [aux_sym_do_statement_token1] = ACTIONS(8287), + [aux_sym_do_condition_token1] = ACTIONS(8287), + [aux_sym_with_statement_token1] = ACTIONS(8287), + [aux_sym_exit_statement_token1] = ACTIONS(8287), + [sym_end_statement] = ACTIONS(8289), + [aux_sym_on_goto_statement_token1] = ACTIONS(8287), + [aux_sym_on_goto_statement_token2] = ACTIONS(8287), + [aux_sym_on_error_statement_token2] = ACTIONS(8287), + [sym__ambiguous_redim_statement] = ACTIONS(8289), + [aux_sym_erase_statement_token1] = ACTIONS(8287), + [aux_sym_open_statement_token1] = ACTIONS(8287), + [aux_sym_file_mode_token2] = ACTIONS(8287), + [aux_sym_file_access_token2] = ACTIONS(8287), + [aux_sym_file_lock_token2] = ACTIONS(8287), + [aux_sym_print_statement_token1] = ACTIONS(8287), + [anon_sym_PLUS] = ACTIONS(8289), + [anon_sym_DASH] = ACTIONS(8287), + [anon_sym_QMARK] = ACTIONS(8289), + [aux_sym_close_statement_token1] = ACTIONS(8287), + [aux_sym_put_statement_token1] = ACTIONS(8287), + [aux_sym_unlock_statement_token1] = ACTIONS(8287), + [aux_sym_seek_statement_token1] = ACTIONS(8287), + [sym_reset_statement] = ACTIONS(8287), + [aux_sym_raise_event_statement_token1] = ACTIONS(8287), + [sym_stop_statement] = ACTIONS(8287), + [sym_beep_statement] = ACTIONS(8287), + [aux_sym_unload_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token2] = ACTIONS(8287), + [aux_sym_def_type_statement_token3] = ACTIONS(8287), + [aux_sym_def_type_statement_token4] = ACTIONS(8287), + [aux_sym_def_type_statement_token5] = ACTIONS(8287), + [aux_sym_def_type_statement_token6] = ACTIONS(8287), + [aux_sym_def_type_statement_token7] = ACTIONS(8287), + [aux_sym_def_type_statement_token8] = ACTIONS(8287), + [aux_sym_def_type_statement_token9] = ACTIONS(8287), + [aux_sym_def_type_statement_token10] = ACTIONS(8287), + [aux_sym_def_type_statement_token11] = ACTIONS(8287), + [aux_sym_def_type_statement_token12] = ACTIONS(8287), + [aux_sym_def_type_statement_token13] = ACTIONS(8287), + [aux_sym_def_type_statement_token14] = ACTIONS(8287), + [aux_sym_call_statement_token1] = ACTIONS(8287), + [sym__ambiguous_call_statement] = ACTIONS(8287), + [aux_sym_addressof_expression_token1] = ACTIONS(8287), + [aux_sym_type_of_expression_token1] = ACTIONS(8287), + [aux_sym_unary_expression_token1] = ACTIONS(8287), + [sym_string_literal] = ACTIONS(8289), + [sym_number_literal] = ACTIONS(8289), + [aux_sym_boolean_literal_token1] = ACTIONS(8287), + [aux_sym_boolean_literal_token2] = ACTIONS(8287), + [sym_nothing_literal] = ACTIONS(8287), + [sym_null_literal] = ACTIONS(8287), + [sym_empty_literal] = ACTIONS(8287), + [sym_date_literal] = ACTIONS(8289), + [anon_sym_POUND] = ACTIONS(8287), + }, + [STATE(4180)] = { + [aux_sym_const_declaration_repeat1] = STATE(4180), + [sym_identifier] = ACTIONS(8350), + [sym_newline] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8350), + [aux_sym_frm_property_statement_token1] = ACTIONS(8350), + [anon_sym_DOT] = ACTIONS(8350), + [anon_sym_BANG] = ACTIONS(8352), + [aux_sym__attribute_identifier_token1] = ACTIONS(8350), + [aux_sym_option_statement_token3] = ACTIONS(8350), + [aux_sym_type_declaration_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8350), + [aux_sym_enum_declaration_token1] = ACTIONS(8350), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8350), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8350), + [aux_sym_declare_function_statement_token1] = ACTIONS(8350), + [aux_sym_preprocessor_const_token1] = ACTIONS(8350), + [aux_sym__property_get_header_token1] = ACTIONS(8350), + [aux_sym_event_declaration_token1] = ACTIONS(8350), + [sym_static_modifier] = ACTIONS(8350), + [sym__dim_keyword] = ACTIONS(8350), + [sym__redim_keyword] = ACTIONS(8350), + [aux_sym_get_accessor_token1] = ACTIONS(8350), + [aux_sym_set_accessor_token1] = ACTIONS(8350), + [anon_sym_COMMA] = ACTIONS(9795), + [aux_sym_const_declaration_token1] = ACTIONS(8350), + [anon_sym_LPAREN] = ACTIONS(8352), + [aux_sym_as_type_clause_token2] = ACTIONS(8350), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8350), + [aux_sym_visibility_token1] = ACTIONS(8350), + [aux_sym_visibility_token2] = ACTIONS(8350), + [aux_sym_elseif_fragment_token1] = ACTIONS(8350), + [aux_sym_else_fragment_token1] = ACTIONS(8350), + [aux_sym_select_statement_token1] = ACTIONS(8350), + [aux_sym__for_header_token1] = ACTIONS(8350), + [aux_sym_do_statement_token1] = ACTIONS(8350), + [aux_sym_do_condition_token1] = ACTIONS(8350), + [aux_sym_with_statement_token1] = ACTIONS(8350), + [aux_sym_exit_statement_token1] = ACTIONS(8350), + [sym_end_statement] = ACTIONS(8352), + [aux_sym_on_goto_statement_token1] = ACTIONS(8350), + [aux_sym_on_goto_statement_token2] = ACTIONS(8350), + [aux_sym_on_error_statement_token2] = ACTIONS(8350), + [sym__ambiguous_redim_statement] = ACTIONS(8352), + [aux_sym_erase_statement_token1] = ACTIONS(8350), + [aux_sym_open_statement_token1] = ACTIONS(8350), + [aux_sym_file_mode_token2] = ACTIONS(8350), + [aux_sym_file_access_token2] = ACTIONS(8350), + [aux_sym_file_lock_token2] = ACTIONS(8350), + [aux_sym_print_statement_token1] = ACTIONS(8350), + [anon_sym_PLUS] = ACTIONS(8352), + [anon_sym_DASH] = ACTIONS(8350), + [anon_sym_QMARK] = ACTIONS(8352), + [aux_sym_close_statement_token1] = ACTIONS(8350), + [aux_sym_put_statement_token1] = ACTIONS(8350), + [aux_sym_unlock_statement_token1] = ACTIONS(8350), + [aux_sym_seek_statement_token1] = ACTIONS(8350), + [sym_reset_statement] = ACTIONS(8350), + [aux_sym_raise_event_statement_token1] = ACTIONS(8350), + [sym_stop_statement] = ACTIONS(8350), + [sym_beep_statement] = ACTIONS(8350), + [aux_sym_unload_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token2] = ACTIONS(8350), + [aux_sym_def_type_statement_token3] = ACTIONS(8350), + [aux_sym_def_type_statement_token4] = ACTIONS(8350), + [aux_sym_def_type_statement_token5] = ACTIONS(8350), + [aux_sym_def_type_statement_token6] = ACTIONS(8350), + [aux_sym_def_type_statement_token7] = ACTIONS(8350), + [aux_sym_def_type_statement_token8] = ACTIONS(8350), + [aux_sym_def_type_statement_token9] = ACTIONS(8350), + [aux_sym_def_type_statement_token10] = ACTIONS(8350), + [aux_sym_def_type_statement_token11] = ACTIONS(8350), + [aux_sym_def_type_statement_token12] = ACTIONS(8350), + [aux_sym_def_type_statement_token13] = ACTIONS(8350), + [aux_sym_def_type_statement_token14] = ACTIONS(8350), + [aux_sym_call_statement_token1] = ACTIONS(8350), + [sym__ambiguous_call_statement] = ACTIONS(8350), + [aux_sym_addressof_expression_token1] = ACTIONS(8350), + [aux_sym_type_of_expression_token1] = ACTIONS(8350), + [aux_sym_unary_expression_token1] = ACTIONS(8350), + [sym_string_literal] = ACTIONS(8352), + [sym_number_literal] = ACTIONS(8352), + [aux_sym_boolean_literal_token1] = ACTIONS(8350), + [aux_sym_boolean_literal_token2] = ACTIONS(8350), + [sym_nothing_literal] = ACTIONS(8350), + [sym_null_literal] = ACTIONS(8350), + [sym_empty_literal] = ACTIONS(8350), + [sym_date_literal] = ACTIONS(8352), + [anon_sym_POUND] = ACTIONS(8350), + }, + [STATE(4181)] = { + [sym_argument_list] = STATE(4254), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(9798), + [anon_sym_BANG] = ACTIONS(9800), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_declaration_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_enum_declaration_token1] = ACTIONS(7836), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7836), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7836), + [aux_sym_declare_function_statement_token1] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [aux_sym__property_get_header_token1] = ACTIONS(7836), + [aux_sym_event_declaration_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(9478), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(4182)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_declaration_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_enum_declaration_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4601), + [aux_sym_declare_function_statement_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [aux_sym__property_get_header_token1] = ACTIONS(4601), + [aux_sym_event_declaration_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(4183)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(4184)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_declaration_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_enum_declaration_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4609), + [aux_sym_declare_function_statement_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [aux_sym__property_get_header_token1] = ACTIONS(4609), + [aux_sym_event_declaration_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(4185)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(4186)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4179), + [sym_identifier] = ACTIONS(8154), + [sym_newline] = ACTIONS(8156), + [anon_sym_COLON] = ACTIONS(8156), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8154), + [aux_sym_frm_property_statement_token1] = ACTIONS(8154), + [anon_sym_DOT] = ACTIONS(8154), + [anon_sym_BANG] = ACTIONS(8156), + [aux_sym__attribute_identifier_token1] = ACTIONS(8154), + [aux_sym_option_statement_token3] = ACTIONS(8154), + [aux_sym_type_declaration_token1] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8154), + [aux_sym_enum_declaration_token1] = ACTIONS(8154), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8154), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8154), + [aux_sym_declare_function_statement_token1] = ACTIONS(8154), + [aux_sym_preprocessor_const_token1] = ACTIONS(8154), + [aux_sym__property_get_header_token1] = ACTIONS(8154), + [aux_sym_event_declaration_token1] = ACTIONS(8154), + [sym_static_modifier] = ACTIONS(8154), + [sym__dim_keyword] = ACTIONS(8154), + [sym__redim_keyword] = ACTIONS(8154), + [aux_sym_get_accessor_token1] = ACTIONS(8154), + [aux_sym_set_accessor_token1] = ACTIONS(8154), + [anon_sym_COMMA] = ACTIONS(9724), + [aux_sym_const_declaration_token1] = ACTIONS(8154), + [anon_sym_LPAREN] = ACTIONS(8156), + [aux_sym_as_type_clause_token2] = ACTIONS(8154), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8154), + [aux_sym_visibility_token1] = ACTIONS(8154), + [aux_sym_visibility_token2] = ACTIONS(8154), + [aux_sym_elseif_fragment_token1] = ACTIONS(8154), + [aux_sym_else_fragment_token1] = ACTIONS(8154), + [aux_sym_select_statement_token1] = ACTIONS(8154), + [aux_sym__for_header_token1] = ACTIONS(8154), + [aux_sym_do_statement_token1] = ACTIONS(8154), + [aux_sym_do_condition_token1] = ACTIONS(8154), + [aux_sym_with_statement_token1] = ACTIONS(8154), + [aux_sym_exit_statement_token1] = ACTIONS(8154), + [sym_end_statement] = ACTIONS(8156), + [aux_sym_on_goto_statement_token1] = ACTIONS(8154), + [aux_sym_on_goto_statement_token2] = ACTIONS(8154), + [aux_sym_on_error_statement_token2] = ACTIONS(8154), + [sym__ambiguous_redim_statement] = ACTIONS(8156), + [aux_sym_erase_statement_token1] = ACTIONS(8154), + [aux_sym_open_statement_token1] = ACTIONS(8154), + [aux_sym_file_mode_token2] = ACTIONS(8154), + [aux_sym_file_access_token2] = ACTIONS(8154), + [aux_sym_file_lock_token2] = ACTIONS(8154), + [aux_sym_print_statement_token1] = ACTIONS(8154), + [anon_sym_PLUS] = ACTIONS(8156), + [anon_sym_DASH] = ACTIONS(8154), + [anon_sym_QMARK] = ACTIONS(8156), + [aux_sym_close_statement_token1] = ACTIONS(8154), + [aux_sym_put_statement_token1] = ACTIONS(8154), + [aux_sym_unlock_statement_token1] = ACTIONS(8154), + [aux_sym_seek_statement_token1] = ACTIONS(8154), + [sym_reset_statement] = ACTIONS(8154), + [aux_sym_raise_event_statement_token1] = ACTIONS(8154), + [sym_stop_statement] = ACTIONS(8154), + [sym_beep_statement] = ACTIONS(8154), + [aux_sym_unload_statement_token1] = ACTIONS(8154), + [aux_sym_def_type_statement_token1] = ACTIONS(8154), + [aux_sym_def_type_statement_token2] = ACTIONS(8154), + [aux_sym_def_type_statement_token3] = ACTIONS(8154), + [aux_sym_def_type_statement_token4] = ACTIONS(8154), + [aux_sym_def_type_statement_token5] = ACTIONS(8154), + [aux_sym_def_type_statement_token6] = ACTIONS(8154), + [aux_sym_def_type_statement_token7] = ACTIONS(8154), + [aux_sym_def_type_statement_token8] = ACTIONS(8154), + [aux_sym_def_type_statement_token9] = ACTIONS(8154), + [aux_sym_def_type_statement_token10] = ACTIONS(8154), + [aux_sym_def_type_statement_token11] = ACTIONS(8154), + [aux_sym_def_type_statement_token12] = ACTIONS(8154), + [aux_sym_def_type_statement_token13] = ACTIONS(8154), + [aux_sym_def_type_statement_token14] = ACTIONS(8154), + [aux_sym_call_statement_token1] = ACTIONS(8154), + [sym__ambiguous_call_statement] = ACTIONS(8154), + [aux_sym_addressof_expression_token1] = ACTIONS(8154), + [aux_sym_type_of_expression_token1] = ACTIONS(8154), + [aux_sym_unary_expression_token1] = ACTIONS(8154), + [sym_string_literal] = ACTIONS(8156), + [sym_number_literal] = ACTIONS(8156), + [aux_sym_boolean_literal_token1] = ACTIONS(8154), + [aux_sym_boolean_literal_token2] = ACTIONS(8154), + [sym_nothing_literal] = ACTIONS(8154), + [sym_null_literal] = ACTIONS(8154), + [sym_empty_literal] = ACTIONS(8154), + [sym_date_literal] = ACTIONS(8156), + [anon_sym_POUND] = ACTIONS(8154), + }, + [STATE(4187)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4179), + [sym_identifier] = ACTIONS(8158), + [sym_newline] = ACTIONS(8160), + [anon_sym_COLON] = ACTIONS(8160), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8158), + [aux_sym_frm_property_statement_token1] = ACTIONS(8158), + [anon_sym_DOT] = ACTIONS(8158), + [anon_sym_BANG] = ACTIONS(8160), + [aux_sym__attribute_identifier_token1] = ACTIONS(8158), + [aux_sym_option_statement_token3] = ACTIONS(8158), + [aux_sym_type_declaration_token1] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8158), + [aux_sym_enum_declaration_token1] = ACTIONS(8158), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8158), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8158), + [aux_sym_declare_function_statement_token1] = ACTIONS(8158), + [aux_sym_preprocessor_const_token1] = ACTIONS(8158), + [aux_sym__property_get_header_token1] = ACTIONS(8158), + [aux_sym_event_declaration_token1] = ACTIONS(8158), + [sym_static_modifier] = ACTIONS(8158), + [sym__dim_keyword] = ACTIONS(8158), + [sym__redim_keyword] = ACTIONS(8158), + [aux_sym_get_accessor_token1] = ACTIONS(8158), + [aux_sym_set_accessor_token1] = ACTIONS(8158), + [anon_sym_COMMA] = ACTIONS(9724), + [aux_sym_const_declaration_token1] = ACTIONS(8158), + [anon_sym_LPAREN] = ACTIONS(8160), + [aux_sym_as_type_clause_token2] = ACTIONS(8158), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8158), + [aux_sym_visibility_token1] = ACTIONS(8158), + [aux_sym_visibility_token2] = ACTIONS(8158), + [aux_sym_elseif_fragment_token1] = ACTIONS(8158), + [aux_sym_else_fragment_token1] = ACTIONS(8158), + [aux_sym_select_statement_token1] = ACTIONS(8158), + [aux_sym__for_header_token1] = ACTIONS(8158), + [aux_sym_do_statement_token1] = ACTIONS(8158), + [aux_sym_do_condition_token1] = ACTIONS(8158), + [aux_sym_with_statement_token1] = ACTIONS(8158), + [aux_sym_exit_statement_token1] = ACTIONS(8158), + [sym_end_statement] = ACTIONS(8160), + [aux_sym_on_goto_statement_token1] = ACTIONS(8158), + [aux_sym_on_goto_statement_token2] = ACTIONS(8158), + [aux_sym_on_error_statement_token2] = ACTIONS(8158), + [sym__ambiguous_redim_statement] = ACTIONS(8160), + [aux_sym_erase_statement_token1] = ACTIONS(8158), + [aux_sym_open_statement_token1] = ACTIONS(8158), + [aux_sym_file_mode_token2] = ACTIONS(8158), + [aux_sym_file_access_token2] = ACTIONS(8158), + [aux_sym_file_lock_token2] = ACTIONS(8158), + [aux_sym_print_statement_token1] = ACTIONS(8158), + [anon_sym_PLUS] = ACTIONS(8160), + [anon_sym_DASH] = ACTIONS(8158), + [anon_sym_QMARK] = ACTIONS(8160), + [aux_sym_close_statement_token1] = ACTIONS(8158), + [aux_sym_put_statement_token1] = ACTIONS(8158), + [aux_sym_unlock_statement_token1] = ACTIONS(8158), + [aux_sym_seek_statement_token1] = ACTIONS(8158), + [sym_reset_statement] = ACTIONS(8158), + [aux_sym_raise_event_statement_token1] = ACTIONS(8158), + [sym_stop_statement] = ACTIONS(8158), + [sym_beep_statement] = ACTIONS(8158), + [aux_sym_unload_statement_token1] = ACTIONS(8158), + [aux_sym_def_type_statement_token1] = ACTIONS(8158), + [aux_sym_def_type_statement_token2] = ACTIONS(8158), + [aux_sym_def_type_statement_token3] = ACTIONS(8158), + [aux_sym_def_type_statement_token4] = ACTIONS(8158), + [aux_sym_def_type_statement_token5] = ACTIONS(8158), + [aux_sym_def_type_statement_token6] = ACTIONS(8158), + [aux_sym_def_type_statement_token7] = ACTIONS(8158), + [aux_sym_def_type_statement_token8] = ACTIONS(8158), + [aux_sym_def_type_statement_token9] = ACTIONS(8158), + [aux_sym_def_type_statement_token10] = ACTIONS(8158), + [aux_sym_def_type_statement_token11] = ACTIONS(8158), + [aux_sym_def_type_statement_token12] = ACTIONS(8158), + [aux_sym_def_type_statement_token13] = ACTIONS(8158), + [aux_sym_def_type_statement_token14] = ACTIONS(8158), + [aux_sym_call_statement_token1] = ACTIONS(8158), + [sym__ambiguous_call_statement] = ACTIONS(8158), + [aux_sym_addressof_expression_token1] = ACTIONS(8158), + [aux_sym_type_of_expression_token1] = ACTIONS(8158), + [aux_sym_unary_expression_token1] = ACTIONS(8158), + [sym_string_literal] = ACTIONS(8160), + [sym_number_literal] = ACTIONS(8160), + [aux_sym_boolean_literal_token1] = ACTIONS(8158), + [aux_sym_boolean_literal_token2] = ACTIONS(8158), + [sym_nothing_literal] = ACTIONS(8158), + [sym_null_literal] = ACTIONS(8158), + [sym_empty_literal] = ACTIONS(8158), + [sym_date_literal] = ACTIONS(8160), + [anon_sym_POUND] = ACTIONS(8158), + }, + [STATE(4188)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4179), + [sym_identifier] = ACTIONS(8166), + [sym_newline] = ACTIONS(8168), + [anon_sym_COLON] = ACTIONS(8168), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8166), + [aux_sym_frm_property_statement_token1] = ACTIONS(8166), + [anon_sym_DOT] = ACTIONS(8166), + [anon_sym_BANG] = ACTIONS(8168), + [aux_sym__attribute_identifier_token1] = ACTIONS(8166), + [aux_sym_option_statement_token3] = ACTIONS(8166), + [aux_sym_type_declaration_token1] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8166), + [aux_sym_enum_declaration_token1] = ACTIONS(8166), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8166), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8166), + [aux_sym_declare_function_statement_token1] = ACTIONS(8166), + [aux_sym_preprocessor_const_token1] = ACTIONS(8166), + [aux_sym__property_get_header_token1] = ACTIONS(8166), + [aux_sym_event_declaration_token1] = ACTIONS(8166), + [sym_static_modifier] = ACTIONS(8166), + [sym__dim_keyword] = ACTIONS(8166), + [sym__redim_keyword] = ACTIONS(8166), + [aux_sym_get_accessor_token1] = ACTIONS(8166), + [aux_sym_set_accessor_token1] = ACTIONS(8166), + [anon_sym_COMMA] = ACTIONS(9724), + [aux_sym_const_declaration_token1] = ACTIONS(8166), + [anon_sym_LPAREN] = ACTIONS(8168), + [aux_sym_as_type_clause_token2] = ACTIONS(8166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8166), + [aux_sym_visibility_token1] = ACTIONS(8166), + [aux_sym_visibility_token2] = ACTIONS(8166), + [aux_sym_elseif_fragment_token1] = ACTIONS(8166), + [aux_sym_else_fragment_token1] = ACTIONS(8166), + [aux_sym_select_statement_token1] = ACTIONS(8166), + [aux_sym__for_header_token1] = ACTIONS(8166), + [aux_sym_do_statement_token1] = ACTIONS(8166), + [aux_sym_do_condition_token1] = ACTIONS(8166), + [aux_sym_with_statement_token1] = ACTIONS(8166), + [aux_sym_exit_statement_token1] = ACTIONS(8166), + [sym_end_statement] = ACTIONS(8168), + [aux_sym_on_goto_statement_token1] = ACTIONS(8166), + [aux_sym_on_goto_statement_token2] = ACTIONS(8166), + [aux_sym_on_error_statement_token2] = ACTIONS(8166), + [sym__ambiguous_redim_statement] = ACTIONS(8168), + [aux_sym_erase_statement_token1] = ACTIONS(8166), + [aux_sym_open_statement_token1] = ACTIONS(8166), + [aux_sym_file_mode_token2] = ACTIONS(8166), + [aux_sym_file_access_token2] = ACTIONS(8166), + [aux_sym_file_lock_token2] = ACTIONS(8166), + [aux_sym_print_statement_token1] = ACTIONS(8166), + [anon_sym_PLUS] = ACTIONS(8168), + [anon_sym_DASH] = ACTIONS(8166), + [anon_sym_QMARK] = ACTIONS(8168), + [aux_sym_close_statement_token1] = ACTIONS(8166), + [aux_sym_put_statement_token1] = ACTIONS(8166), + [aux_sym_unlock_statement_token1] = ACTIONS(8166), + [aux_sym_seek_statement_token1] = ACTIONS(8166), + [sym_reset_statement] = ACTIONS(8166), + [aux_sym_raise_event_statement_token1] = ACTIONS(8166), + [sym_stop_statement] = ACTIONS(8166), + [sym_beep_statement] = ACTIONS(8166), + [aux_sym_unload_statement_token1] = ACTIONS(8166), + [aux_sym_def_type_statement_token1] = ACTIONS(8166), + [aux_sym_def_type_statement_token2] = ACTIONS(8166), + [aux_sym_def_type_statement_token3] = ACTIONS(8166), + [aux_sym_def_type_statement_token4] = ACTIONS(8166), + [aux_sym_def_type_statement_token5] = ACTIONS(8166), + [aux_sym_def_type_statement_token6] = ACTIONS(8166), + [aux_sym_def_type_statement_token7] = ACTIONS(8166), + [aux_sym_def_type_statement_token8] = ACTIONS(8166), + [aux_sym_def_type_statement_token9] = ACTIONS(8166), + [aux_sym_def_type_statement_token10] = ACTIONS(8166), + [aux_sym_def_type_statement_token11] = ACTIONS(8166), + [aux_sym_def_type_statement_token12] = ACTIONS(8166), + [aux_sym_def_type_statement_token13] = ACTIONS(8166), + [aux_sym_def_type_statement_token14] = ACTIONS(8166), + [aux_sym_call_statement_token1] = ACTIONS(8166), + [sym__ambiguous_call_statement] = ACTIONS(8166), + [aux_sym_addressof_expression_token1] = ACTIONS(8166), + [aux_sym_type_of_expression_token1] = ACTIONS(8166), + [aux_sym_unary_expression_token1] = ACTIONS(8166), + [sym_string_literal] = ACTIONS(8168), + [sym_number_literal] = ACTIONS(8168), + [aux_sym_boolean_literal_token1] = ACTIONS(8166), + [aux_sym_boolean_literal_token2] = ACTIONS(8166), + [sym_nothing_literal] = ACTIONS(8166), + [sym_null_literal] = ACTIONS(8166), + [sym_empty_literal] = ACTIONS(8166), + [sym_date_literal] = ACTIONS(8168), + [anon_sym_POUND] = ACTIONS(8166), + }, + [STATE(4189)] = { + [aux_sym_const_declaration_repeat1] = STATE(4180), + [sym_identifier] = ACTIONS(8174), + [sym_newline] = ACTIONS(8176), + [anon_sym_COLON] = ACTIONS(8176), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8174), + [aux_sym_frm_property_statement_token1] = ACTIONS(8174), + [anon_sym_DOT] = ACTIONS(8174), + [anon_sym_BANG] = ACTIONS(8176), + [aux_sym__attribute_identifier_token1] = ACTIONS(8174), + [aux_sym_option_statement_token3] = ACTIONS(8174), + [aux_sym_type_declaration_token1] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8174), + [aux_sym_enum_declaration_token1] = ACTIONS(8174), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8174), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8174), + [aux_sym_declare_function_statement_token1] = ACTIONS(8174), + [aux_sym_preprocessor_const_token1] = ACTIONS(8174), + [aux_sym__property_get_header_token1] = ACTIONS(8174), + [aux_sym_event_declaration_token1] = ACTIONS(8174), + [sym_static_modifier] = ACTIONS(8174), + [sym__dim_keyword] = ACTIONS(8174), + [sym__redim_keyword] = ACTIONS(8174), + [aux_sym_get_accessor_token1] = ACTIONS(8174), + [aux_sym_set_accessor_token1] = ACTIONS(8174), + [anon_sym_COMMA] = ACTIONS(9730), + [aux_sym_const_declaration_token1] = ACTIONS(8174), + [anon_sym_LPAREN] = ACTIONS(8176), + [aux_sym_as_type_clause_token2] = ACTIONS(8174), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8174), + [aux_sym_visibility_token1] = ACTIONS(8174), + [aux_sym_visibility_token2] = ACTIONS(8174), + [aux_sym_elseif_fragment_token1] = ACTIONS(8174), + [aux_sym_else_fragment_token1] = ACTIONS(8174), + [aux_sym_select_statement_token1] = ACTIONS(8174), + [aux_sym__for_header_token1] = ACTIONS(8174), + [aux_sym_do_statement_token1] = ACTIONS(8174), + [aux_sym_do_condition_token1] = ACTIONS(8174), + [aux_sym_with_statement_token1] = ACTIONS(8174), + [aux_sym_exit_statement_token1] = ACTIONS(8174), + [sym_end_statement] = ACTIONS(8176), + [aux_sym_on_goto_statement_token1] = ACTIONS(8174), + [aux_sym_on_goto_statement_token2] = ACTIONS(8174), + [aux_sym_on_error_statement_token2] = ACTIONS(8174), + [sym__ambiguous_redim_statement] = ACTIONS(8176), + [aux_sym_erase_statement_token1] = ACTIONS(8174), + [aux_sym_open_statement_token1] = ACTIONS(8174), + [aux_sym_file_mode_token2] = ACTIONS(8174), + [aux_sym_file_access_token2] = ACTIONS(8174), + [aux_sym_file_lock_token2] = ACTIONS(8174), + [aux_sym_print_statement_token1] = ACTIONS(8174), + [anon_sym_PLUS] = ACTIONS(8176), + [anon_sym_DASH] = ACTIONS(8174), + [anon_sym_QMARK] = ACTIONS(8176), + [aux_sym_close_statement_token1] = ACTIONS(8174), + [aux_sym_put_statement_token1] = ACTIONS(8174), + [aux_sym_unlock_statement_token1] = ACTIONS(8174), + [aux_sym_seek_statement_token1] = ACTIONS(8174), + [sym_reset_statement] = ACTIONS(8174), + [aux_sym_raise_event_statement_token1] = ACTIONS(8174), + [sym_stop_statement] = ACTIONS(8174), + [sym_beep_statement] = ACTIONS(8174), + [aux_sym_unload_statement_token1] = ACTIONS(8174), + [aux_sym_def_type_statement_token1] = ACTIONS(8174), + [aux_sym_def_type_statement_token2] = ACTIONS(8174), + [aux_sym_def_type_statement_token3] = ACTIONS(8174), + [aux_sym_def_type_statement_token4] = ACTIONS(8174), + [aux_sym_def_type_statement_token5] = ACTIONS(8174), + [aux_sym_def_type_statement_token6] = ACTIONS(8174), + [aux_sym_def_type_statement_token7] = ACTIONS(8174), + [aux_sym_def_type_statement_token8] = ACTIONS(8174), + [aux_sym_def_type_statement_token9] = ACTIONS(8174), + [aux_sym_def_type_statement_token10] = ACTIONS(8174), + [aux_sym_def_type_statement_token11] = ACTIONS(8174), + [aux_sym_def_type_statement_token12] = ACTIONS(8174), + [aux_sym_def_type_statement_token13] = ACTIONS(8174), + [aux_sym_def_type_statement_token14] = ACTIONS(8174), + [aux_sym_call_statement_token1] = ACTIONS(8174), + [sym__ambiguous_call_statement] = ACTIONS(8174), + [aux_sym_addressof_expression_token1] = ACTIONS(8174), + [aux_sym_type_of_expression_token1] = ACTIONS(8174), + [aux_sym_unary_expression_token1] = ACTIONS(8174), + [sym_string_literal] = ACTIONS(8176), + [sym_number_literal] = ACTIONS(8176), + [aux_sym_boolean_literal_token1] = ACTIONS(8174), + [aux_sym_boolean_literal_token2] = ACTIONS(8174), + [sym_nothing_literal] = ACTIONS(8174), + [sym_null_literal] = ACTIONS(8174), + [sym_empty_literal] = ACTIONS(8174), + [sym_date_literal] = ACTIONS(8176), + [anon_sym_POUND] = ACTIONS(8174), + }, + [STATE(4190)] = { + [aux_sym__argument_sequence_repeat2] = STATE(4190), + [sym_identifier] = ACTIONS(8196), + [sym_newline] = ACTIONS(8198), + [anon_sym_COLON] = ACTIONS(8198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8196), + [aux_sym_frm_property_statement_token1] = ACTIONS(8196), + [anon_sym_DOT] = ACTIONS(8196), + [anon_sym_BANG] = ACTIONS(8198), + [aux_sym__attribute_identifier_token1] = ACTIONS(8196), + [aux_sym_option_statement_token3] = ACTIONS(8196), + [aux_sym_type_declaration_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8196), + [aux_sym_enum_declaration_token1] = ACTIONS(8196), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8196), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8196), + [aux_sym_declare_function_statement_token1] = ACTIONS(8196), + [aux_sym_preprocessor_const_token1] = ACTIONS(8196), + [aux_sym__property_get_header_token1] = ACTIONS(8196), + [aux_sym_event_declaration_token1] = ACTIONS(8196), + [sym_static_modifier] = ACTIONS(8196), + [sym__dim_keyword] = ACTIONS(8196), + [sym__redim_keyword] = ACTIONS(8196), + [aux_sym_get_accessor_token1] = ACTIONS(8196), + [aux_sym_set_accessor_token1] = ACTIONS(8196), + [anon_sym_COMMA] = ACTIONS(9802), + [aux_sym_const_declaration_token1] = ACTIONS(8196), + [anon_sym_LPAREN] = ACTIONS(8198), + [aux_sym_as_type_clause_token2] = ACTIONS(8196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8196), + [aux_sym_visibility_token1] = ACTIONS(8196), + [aux_sym_visibility_token2] = ACTIONS(8196), + [aux_sym_elseif_fragment_token1] = ACTIONS(8196), + [aux_sym_else_fragment_token1] = ACTIONS(8196), + [aux_sym_select_statement_token1] = ACTIONS(8196), + [aux_sym__for_header_token1] = ACTIONS(8196), + [aux_sym_do_statement_token1] = ACTIONS(8196), + [aux_sym_do_condition_token1] = ACTIONS(8196), + [aux_sym_with_statement_token1] = ACTIONS(8196), + [aux_sym_exit_statement_token1] = ACTIONS(8196), + [sym_end_statement] = ACTIONS(8198), + [aux_sym_on_goto_statement_token1] = ACTIONS(8196), + [aux_sym_on_goto_statement_token2] = ACTIONS(8196), + [aux_sym_on_error_statement_token2] = ACTIONS(8196), + [sym__ambiguous_redim_statement] = ACTIONS(8198), + [aux_sym_erase_statement_token1] = ACTIONS(8196), + [aux_sym_open_statement_token1] = ACTIONS(8196), + [aux_sym_file_mode_token2] = ACTIONS(8196), + [aux_sym_file_access_token2] = ACTIONS(8196), + [aux_sym_file_lock_token2] = ACTIONS(8196), + [aux_sym_print_statement_token1] = ACTIONS(8196), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(8196), + [anon_sym_QMARK] = ACTIONS(8198), + [aux_sym_close_statement_token1] = ACTIONS(8196), + [aux_sym_put_statement_token1] = ACTIONS(8196), + [aux_sym_unlock_statement_token1] = ACTIONS(8196), + [aux_sym_seek_statement_token1] = ACTIONS(8196), + [sym_reset_statement] = ACTIONS(8196), + [aux_sym_raise_event_statement_token1] = ACTIONS(8196), + [sym_stop_statement] = ACTIONS(8196), + [sym_beep_statement] = ACTIONS(8196), + [aux_sym_unload_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token2] = ACTIONS(8196), + [aux_sym_def_type_statement_token3] = ACTIONS(8196), + [aux_sym_def_type_statement_token4] = ACTIONS(8196), + [aux_sym_def_type_statement_token5] = ACTIONS(8196), + [aux_sym_def_type_statement_token6] = ACTIONS(8196), + [aux_sym_def_type_statement_token7] = ACTIONS(8196), + [aux_sym_def_type_statement_token8] = ACTIONS(8196), + [aux_sym_def_type_statement_token9] = ACTIONS(8196), + [aux_sym_def_type_statement_token10] = ACTIONS(8196), + [aux_sym_def_type_statement_token11] = ACTIONS(8196), + [aux_sym_def_type_statement_token12] = ACTIONS(8196), + [aux_sym_def_type_statement_token13] = ACTIONS(8196), + [aux_sym_def_type_statement_token14] = ACTIONS(8196), + [aux_sym_call_statement_token1] = ACTIONS(8196), + [sym__ambiguous_call_statement] = ACTIONS(8196), + [aux_sym_addressof_expression_token1] = ACTIONS(8196), + [aux_sym_type_of_expression_token1] = ACTIONS(8196), + [aux_sym_unary_expression_token1] = ACTIONS(8196), + [sym_string_literal] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8198), + [aux_sym_boolean_literal_token1] = ACTIONS(8196), + [aux_sym_boolean_literal_token2] = ACTIONS(8196), + [sym_nothing_literal] = ACTIONS(8196), + [sym_null_literal] = ACTIONS(8196), + [sym_empty_literal] = ACTIONS(8196), + [sym_date_literal] = ACTIONS(8198), + [anon_sym_POUND] = ACTIONS(8196), + }, + [STATE(4191)] = { + [sym_next_variable_list] = STATE(5619), + [sym__assignable_expression] = STATE(4828), + [sym__callable_expression] = STATE(4788), + [sym_call_expression] = STATE(4884), + [sym_member_expression] = STATE(5064), + [sym_qualified_member_expression] = STATE(4902), + [sym_implicit_member_expression] = STATE(4902), + [sym_identifier] = ACTIONS(9805), + [sym_newline] = ACTIONS(6842), + [anon_sym_COLON] = ACTIONS(6842), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6844), + [aux_sym_frm_property_statement_token1] = ACTIONS(9807), + [anon_sym_DOT] = ACTIONS(9809), + [anon_sym_BANG] = ACTIONS(9811), + [aux_sym__attribute_identifier_token1] = ACTIONS(6844), + [aux_sym_option_statement_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6844), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6844), + [aux_sym_preprocessor_const_token1] = ACTIONS(6844), + [sym_static_modifier] = ACTIONS(6844), + [sym__dim_keyword] = ACTIONS(6844), + [sym__redim_keyword] = ACTIONS(6844), + [aux_sym_get_accessor_token1] = ACTIONS(6844), + [aux_sym_set_accessor_token1] = ACTIONS(6844), + [aux_sym_const_declaration_token1] = ACTIONS(6844), + [anon_sym_LPAREN] = ACTIONS(6842), + [aux_sym_as_type_clause_token2] = ACTIONS(6844), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9813), + [aux_sym_visibility_token1] = ACTIONS(6844), + [aux_sym_visibility_token2] = ACTIONS(6844), + [aux_sym_elseif_fragment_token1] = ACTIONS(6844), + [aux_sym_else_fragment_token1] = ACTIONS(6844), + [aux_sym_select_statement_token1] = ACTIONS(6844), + [aux_sym__for_header_token1] = ACTIONS(6844), + [aux_sym_do_statement_token1] = ACTIONS(6844), + [aux_sym_do_condition_token1] = ACTIONS(6844), + [aux_sym_with_statement_token1] = ACTIONS(6844), + [aux_sym_exit_statement_token1] = ACTIONS(6844), + [sym_end_statement] = ACTIONS(6842), + [aux_sym_on_goto_statement_token1] = ACTIONS(6844), + [aux_sym_on_goto_statement_token2] = ACTIONS(6844), + [aux_sym_on_error_statement_token2] = ACTIONS(6844), + [sym__ambiguous_redim_statement] = ACTIONS(6842), + [aux_sym_erase_statement_token1] = ACTIONS(6844), + [aux_sym_open_statement_token1] = ACTIONS(6844), + [aux_sym_file_mode_token2] = ACTIONS(6844), + [aux_sym_file_access_token2] = ACTIONS(6844), + [aux_sym_file_lock_token2] = ACTIONS(6844), + [aux_sym_print_statement_token1] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6842), + [aux_sym_close_statement_token1] = ACTIONS(6844), + [aux_sym_put_statement_token1] = ACTIONS(6844), + [aux_sym_unlock_statement_token1] = ACTIONS(6844), + [aux_sym_seek_statement_token1] = ACTIONS(6844), + [sym_reset_statement] = ACTIONS(6844), + [aux_sym_raise_event_statement_token1] = ACTIONS(6844), + [sym_stop_statement] = ACTIONS(6844), + [sym_beep_statement] = ACTIONS(6844), + [aux_sym_unload_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token2] = ACTIONS(6844), + [aux_sym_def_type_statement_token3] = ACTIONS(6844), + [aux_sym_def_type_statement_token4] = ACTIONS(6844), + [aux_sym_def_type_statement_token5] = ACTIONS(6844), + [aux_sym_def_type_statement_token6] = ACTIONS(6844), + [aux_sym_def_type_statement_token7] = ACTIONS(6844), + [aux_sym_def_type_statement_token8] = ACTIONS(6844), + [aux_sym_def_type_statement_token9] = ACTIONS(6844), + [aux_sym_def_type_statement_token10] = ACTIONS(6844), + [aux_sym_def_type_statement_token11] = ACTIONS(6844), + [aux_sym_def_type_statement_token12] = ACTIONS(6844), + [aux_sym_def_type_statement_token13] = ACTIONS(6844), + [aux_sym_def_type_statement_token14] = ACTIONS(6844), + [aux_sym_call_statement_token1] = ACTIONS(6844), + [sym__ambiguous_call_statement] = ACTIONS(6844), + [aux_sym_addressof_expression_token1] = ACTIONS(6844), + [aux_sym_type_of_expression_token1] = ACTIONS(6844), + [aux_sym_unary_expression_token1] = ACTIONS(6844), + [sym_string_literal] = ACTIONS(6842), + [sym_number_literal] = ACTIONS(6842), + [aux_sym_boolean_literal_token1] = ACTIONS(6844), + [aux_sym_boolean_literal_token2] = ACTIONS(6844), + [sym_nothing_literal] = ACTIONS(6844), + [sym_null_literal] = ACTIONS(6844), + [sym_empty_literal] = ACTIONS(6844), + [sym_date_literal] = ACTIONS(6842), + [anon_sym_POUND] = ACTIONS(6844), + }, + [STATE(4192)] = { + [sym_next_variable_list] = STATE(5624), + [sym__assignable_expression] = STATE(4828), + [sym__callable_expression] = STATE(4788), + [sym_call_expression] = STATE(4884), + [sym_member_expression] = STATE(5064), + [sym_qualified_member_expression] = STATE(4902), + [sym_implicit_member_expression] = STATE(4902), + [sym_identifier] = ACTIONS(9805), + [sym_newline] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(6856), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6858), + [aux_sym_frm_property_statement_token1] = ACTIONS(9807), + [anon_sym_DOT] = ACTIONS(9809), + [anon_sym_BANG] = ACTIONS(9811), + [aux_sym__attribute_identifier_token1] = ACTIONS(6858), + [aux_sym_option_statement_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6858), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6858), + [aux_sym_preprocessor_const_token1] = ACTIONS(6858), + [sym_static_modifier] = ACTIONS(6858), + [sym__dim_keyword] = ACTIONS(6858), + [sym__redim_keyword] = ACTIONS(6858), + [aux_sym_get_accessor_token1] = ACTIONS(6858), + [aux_sym_set_accessor_token1] = ACTIONS(6858), + [aux_sym_const_declaration_token1] = ACTIONS(6858), + [anon_sym_LPAREN] = ACTIONS(6856), + [aux_sym_as_type_clause_token2] = ACTIONS(6858), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9813), + [aux_sym_visibility_token1] = ACTIONS(6858), + [aux_sym_visibility_token2] = ACTIONS(6858), + [aux_sym_elseif_fragment_token1] = ACTIONS(6858), + [aux_sym_else_fragment_token1] = ACTIONS(6858), + [aux_sym_select_statement_token1] = ACTIONS(6858), + [aux_sym__for_header_token1] = ACTIONS(6858), + [aux_sym_do_statement_token1] = ACTIONS(6858), + [aux_sym_do_condition_token1] = ACTIONS(6858), + [aux_sym_with_statement_token1] = ACTIONS(6858), + [aux_sym_exit_statement_token1] = ACTIONS(6858), + [sym_end_statement] = ACTIONS(6856), + [aux_sym_on_goto_statement_token1] = ACTIONS(6858), + [aux_sym_on_goto_statement_token2] = ACTIONS(6858), + [aux_sym_on_error_statement_token2] = ACTIONS(6858), + [sym__ambiguous_redim_statement] = ACTIONS(6856), + [aux_sym_erase_statement_token1] = ACTIONS(6858), + [aux_sym_open_statement_token1] = ACTIONS(6858), + [aux_sym_file_mode_token2] = ACTIONS(6858), + [aux_sym_file_access_token2] = ACTIONS(6858), + [aux_sym_file_lock_token2] = ACTIONS(6858), + [aux_sym_print_statement_token1] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6856), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_QMARK] = ACTIONS(6856), + [aux_sym_close_statement_token1] = ACTIONS(6858), + [aux_sym_put_statement_token1] = ACTIONS(6858), + [aux_sym_unlock_statement_token1] = ACTIONS(6858), + [aux_sym_seek_statement_token1] = ACTIONS(6858), + [sym_reset_statement] = ACTIONS(6858), + [aux_sym_raise_event_statement_token1] = ACTIONS(6858), + [sym_stop_statement] = ACTIONS(6858), + [sym_beep_statement] = ACTIONS(6858), + [aux_sym_unload_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token2] = ACTIONS(6858), + [aux_sym_def_type_statement_token3] = ACTIONS(6858), + [aux_sym_def_type_statement_token4] = ACTIONS(6858), + [aux_sym_def_type_statement_token5] = ACTIONS(6858), + [aux_sym_def_type_statement_token6] = ACTIONS(6858), + [aux_sym_def_type_statement_token7] = ACTIONS(6858), + [aux_sym_def_type_statement_token8] = ACTIONS(6858), + [aux_sym_def_type_statement_token9] = ACTIONS(6858), + [aux_sym_def_type_statement_token10] = ACTIONS(6858), + [aux_sym_def_type_statement_token11] = ACTIONS(6858), + [aux_sym_def_type_statement_token12] = ACTIONS(6858), + [aux_sym_def_type_statement_token13] = ACTIONS(6858), + [aux_sym_def_type_statement_token14] = ACTIONS(6858), + [aux_sym_call_statement_token1] = ACTIONS(6858), + [sym__ambiguous_call_statement] = ACTIONS(6858), + [aux_sym_addressof_expression_token1] = ACTIONS(6858), + [aux_sym_type_of_expression_token1] = ACTIONS(6858), + [aux_sym_unary_expression_token1] = ACTIONS(6858), + [sym_string_literal] = ACTIONS(6856), + [sym_number_literal] = ACTIONS(6856), + [aux_sym_boolean_literal_token1] = ACTIONS(6858), + [aux_sym_boolean_literal_token2] = ACTIONS(6858), + [sym_nothing_literal] = ACTIONS(6858), + [sym_null_literal] = ACTIONS(6858), + [sym_empty_literal] = ACTIONS(6858), + [sym_date_literal] = ACTIONS(6856), + [anon_sym_POUND] = ACTIONS(6858), + }, + [STATE(4193)] = { + [aux_sym__argument_sequence_repeat1] = STATE(4193), + [sym_identifier] = ACTIONS(8533), + [sym_newline] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(8535), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8533), + [aux_sym_frm_property_statement_token1] = ACTIONS(8533), + [anon_sym_DOT] = ACTIONS(8533), + [anon_sym_BANG] = ACTIONS(8535), + [aux_sym__attribute_identifier_token1] = ACTIONS(8533), + [aux_sym_option_statement_token3] = ACTIONS(8533), + [aux_sym_type_declaration_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8533), + [aux_sym_enum_declaration_token1] = ACTIONS(8533), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8533), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8533), + [aux_sym_declare_function_statement_token1] = ACTIONS(8533), + [aux_sym_preprocessor_const_token1] = ACTIONS(8533), + [aux_sym__property_get_header_token1] = ACTIONS(8533), + [aux_sym_event_declaration_token1] = ACTIONS(8533), + [sym_static_modifier] = ACTIONS(8533), + [sym__dim_keyword] = ACTIONS(8533), + [sym__redim_keyword] = ACTIONS(8533), + [aux_sym_get_accessor_token1] = ACTIONS(8533), + [aux_sym_set_accessor_token1] = ACTIONS(8533), + [anon_sym_COMMA] = ACTIONS(9815), + [aux_sym_const_declaration_token1] = ACTIONS(8533), + [anon_sym_LPAREN] = ACTIONS(8535), + [aux_sym_as_type_clause_token2] = ACTIONS(8533), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8533), + [aux_sym_visibility_token1] = ACTIONS(8533), + [aux_sym_visibility_token2] = ACTIONS(8533), + [aux_sym_elseif_fragment_token1] = ACTIONS(8533), + [aux_sym_else_fragment_token1] = ACTIONS(8533), + [aux_sym_select_statement_token1] = ACTIONS(8533), + [aux_sym__for_header_token1] = ACTIONS(8533), + [aux_sym_do_statement_token1] = ACTIONS(8533), + [aux_sym_do_condition_token1] = ACTIONS(8533), + [aux_sym_with_statement_token1] = ACTIONS(8533), + [aux_sym_exit_statement_token1] = ACTIONS(8533), + [sym_end_statement] = ACTIONS(8535), + [aux_sym_on_goto_statement_token1] = ACTIONS(8533), + [aux_sym_on_goto_statement_token2] = ACTIONS(8533), + [aux_sym_on_error_statement_token2] = ACTIONS(8533), + [sym__ambiguous_redim_statement] = ACTIONS(8535), + [aux_sym_erase_statement_token1] = ACTIONS(8533), + [aux_sym_open_statement_token1] = ACTIONS(8533), + [aux_sym_file_mode_token2] = ACTIONS(8533), + [aux_sym_file_access_token2] = ACTIONS(8533), + [aux_sym_file_lock_token2] = ACTIONS(8533), + [aux_sym_print_statement_token1] = ACTIONS(8533), + [anon_sym_PLUS] = ACTIONS(8535), + [anon_sym_DASH] = ACTIONS(8533), + [anon_sym_QMARK] = ACTIONS(8535), + [aux_sym_close_statement_token1] = ACTIONS(8533), + [aux_sym_put_statement_token1] = ACTIONS(8533), + [aux_sym_unlock_statement_token1] = ACTIONS(8533), + [aux_sym_seek_statement_token1] = ACTIONS(8533), + [sym_reset_statement] = ACTIONS(8533), + [aux_sym_raise_event_statement_token1] = ACTIONS(8533), + [sym_stop_statement] = ACTIONS(8533), + [sym_beep_statement] = ACTIONS(8533), + [aux_sym_unload_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token2] = ACTIONS(8533), + [aux_sym_def_type_statement_token3] = ACTIONS(8533), + [aux_sym_def_type_statement_token4] = ACTIONS(8533), + [aux_sym_def_type_statement_token5] = ACTIONS(8533), + [aux_sym_def_type_statement_token6] = ACTIONS(8533), + [aux_sym_def_type_statement_token7] = ACTIONS(8533), + [aux_sym_def_type_statement_token8] = ACTIONS(8533), + [aux_sym_def_type_statement_token9] = ACTIONS(8533), + [aux_sym_def_type_statement_token10] = ACTIONS(8533), + [aux_sym_def_type_statement_token11] = ACTIONS(8533), + [aux_sym_def_type_statement_token12] = ACTIONS(8533), + [aux_sym_def_type_statement_token13] = ACTIONS(8533), + [aux_sym_def_type_statement_token14] = ACTIONS(8533), + [aux_sym_call_statement_token1] = ACTIONS(8533), + [sym__ambiguous_call_statement] = ACTIONS(8533), + [aux_sym_addressof_expression_token1] = ACTIONS(8533), + [aux_sym_type_of_expression_token1] = ACTIONS(8533), + [aux_sym_unary_expression_token1] = ACTIONS(8533), + [sym_string_literal] = ACTIONS(8535), + [sym_number_literal] = ACTIONS(8535), + [aux_sym_boolean_literal_token1] = ACTIONS(8533), + [aux_sym_boolean_literal_token2] = ACTIONS(8533), + [sym_nothing_literal] = ACTIONS(8533), + [sym_null_literal] = ACTIONS(8533), + [sym_empty_literal] = ACTIONS(8533), + [sym_date_literal] = ACTIONS(8535), + [anon_sym_POUND] = ACTIONS(8533), + }, + [STATE(4194)] = { + [sym_next_variable_list] = STATE(5667), + [sym__assignable_expression] = STATE(4828), + [sym__callable_expression] = STATE(4788), + [sym_call_expression] = STATE(4884), + [sym_member_expression] = STATE(5064), + [sym_qualified_member_expression] = STATE(4902), + [sym_implicit_member_expression] = STATE(4902), + [sym_identifier] = ACTIONS(9805), + [sym_newline] = ACTIONS(6867), + [anon_sym_COLON] = ACTIONS(6867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6869), + [aux_sym_frm_property_statement_token1] = ACTIONS(9807), + [anon_sym_DOT] = ACTIONS(9809), + [anon_sym_BANG] = ACTIONS(9811), + [aux_sym__attribute_identifier_token1] = ACTIONS(6869), + [aux_sym_option_statement_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6869), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6869), + [aux_sym_preprocessor_const_token1] = ACTIONS(6869), + [sym_static_modifier] = ACTIONS(6869), + [sym__dim_keyword] = ACTIONS(6869), + [sym__redim_keyword] = ACTIONS(6869), + [aux_sym_get_accessor_token1] = ACTIONS(6869), + [aux_sym_set_accessor_token1] = ACTIONS(6869), + [aux_sym_const_declaration_token1] = ACTIONS(6869), + [anon_sym_LPAREN] = ACTIONS(6867), + [aux_sym_as_type_clause_token2] = ACTIONS(6869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9813), + [aux_sym_visibility_token1] = ACTIONS(6869), + [aux_sym_visibility_token2] = ACTIONS(6869), + [aux_sym_elseif_fragment_token1] = ACTIONS(6869), + [aux_sym_else_fragment_token1] = ACTIONS(6869), + [aux_sym_select_statement_token1] = ACTIONS(6869), + [aux_sym__for_header_token1] = ACTIONS(6869), + [aux_sym_do_statement_token1] = ACTIONS(6869), + [aux_sym_do_condition_token1] = ACTIONS(6869), + [aux_sym_with_statement_token1] = ACTIONS(6869), + [aux_sym_exit_statement_token1] = ACTIONS(6869), + [sym_end_statement] = ACTIONS(6867), + [aux_sym_on_goto_statement_token1] = ACTIONS(6869), + [aux_sym_on_goto_statement_token2] = ACTIONS(6869), + [aux_sym_on_error_statement_token2] = ACTIONS(6869), + [sym__ambiguous_redim_statement] = ACTIONS(6867), + [aux_sym_erase_statement_token1] = ACTIONS(6869), + [aux_sym_open_statement_token1] = ACTIONS(6869), + [aux_sym_file_mode_token2] = ACTIONS(6869), + [aux_sym_file_access_token2] = ACTIONS(6869), + [aux_sym_file_lock_token2] = ACTIONS(6869), + [aux_sym_print_statement_token1] = ACTIONS(6869), + [anon_sym_PLUS] = ACTIONS(6867), + [anon_sym_DASH] = ACTIONS(6869), + [anon_sym_QMARK] = ACTIONS(6867), + [aux_sym_close_statement_token1] = ACTIONS(6869), + [aux_sym_put_statement_token1] = ACTIONS(6869), + [aux_sym_unlock_statement_token1] = ACTIONS(6869), + [aux_sym_seek_statement_token1] = ACTIONS(6869), + [sym_reset_statement] = ACTIONS(6869), + [aux_sym_raise_event_statement_token1] = ACTIONS(6869), + [sym_stop_statement] = ACTIONS(6869), + [sym_beep_statement] = ACTIONS(6869), + [aux_sym_unload_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token2] = ACTIONS(6869), + [aux_sym_def_type_statement_token3] = ACTIONS(6869), + [aux_sym_def_type_statement_token4] = ACTIONS(6869), + [aux_sym_def_type_statement_token5] = ACTIONS(6869), + [aux_sym_def_type_statement_token6] = ACTIONS(6869), + [aux_sym_def_type_statement_token7] = ACTIONS(6869), + [aux_sym_def_type_statement_token8] = ACTIONS(6869), + [aux_sym_def_type_statement_token9] = ACTIONS(6869), + [aux_sym_def_type_statement_token10] = ACTIONS(6869), + [aux_sym_def_type_statement_token11] = ACTIONS(6869), + [aux_sym_def_type_statement_token12] = ACTIONS(6869), + [aux_sym_def_type_statement_token13] = ACTIONS(6869), + [aux_sym_def_type_statement_token14] = ACTIONS(6869), + [aux_sym_call_statement_token1] = ACTIONS(6869), + [sym__ambiguous_call_statement] = ACTIONS(6869), + [aux_sym_addressof_expression_token1] = ACTIONS(6869), + [aux_sym_type_of_expression_token1] = ACTIONS(6869), + [aux_sym_unary_expression_token1] = ACTIONS(6869), + [sym_string_literal] = ACTIONS(6867), + [sym_number_literal] = ACTIONS(6867), + [aux_sym_boolean_literal_token1] = ACTIONS(6869), + [aux_sym_boolean_literal_token2] = ACTIONS(6869), + [sym_nothing_literal] = ACTIONS(6869), + [sym_null_literal] = ACTIONS(6869), + [sym_empty_literal] = ACTIONS(6869), + [sym_date_literal] = ACTIONS(6867), + [anon_sym_POUND] = ACTIONS(6869), + }, + [STATE(4195)] = { + [sym_next_variable_list] = STATE(5669), + [sym__assignable_expression] = STATE(4828), + [sym__callable_expression] = STATE(4788), + [sym_call_expression] = STATE(4884), + [sym_member_expression] = STATE(5064), + [sym_qualified_member_expression] = STATE(4902), + [sym_implicit_member_expression] = STATE(4902), + [sym_identifier] = ACTIONS(9805), + [sym_newline] = ACTIONS(6810), + [anon_sym_COLON] = ACTIONS(6810), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6812), + [aux_sym_frm_property_statement_token1] = ACTIONS(9807), + [anon_sym_DOT] = ACTIONS(9809), + [anon_sym_BANG] = ACTIONS(9811), + [aux_sym__attribute_identifier_token1] = ACTIONS(6812), + [aux_sym_option_statement_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6812), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6812), + [aux_sym_preprocessor_const_token1] = ACTIONS(6812), + [sym_static_modifier] = ACTIONS(6812), + [sym__dim_keyword] = ACTIONS(6812), + [sym__redim_keyword] = ACTIONS(6812), + [aux_sym_get_accessor_token1] = ACTIONS(6812), + [aux_sym_set_accessor_token1] = ACTIONS(6812), + [aux_sym_const_declaration_token1] = ACTIONS(6812), + [anon_sym_LPAREN] = ACTIONS(6810), + [aux_sym_as_type_clause_token2] = ACTIONS(6812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9813), + [aux_sym_visibility_token1] = ACTIONS(6812), + [aux_sym_visibility_token2] = ACTIONS(6812), + [aux_sym_elseif_fragment_token1] = ACTIONS(6812), + [aux_sym_else_fragment_token1] = ACTIONS(6812), + [aux_sym_select_statement_token1] = ACTIONS(6812), + [aux_sym__for_header_token1] = ACTIONS(6812), + [aux_sym_do_statement_token1] = ACTIONS(6812), + [aux_sym_do_condition_token1] = ACTIONS(6812), + [aux_sym_with_statement_token1] = ACTIONS(6812), + [aux_sym_exit_statement_token1] = ACTIONS(6812), + [sym_end_statement] = ACTIONS(6810), + [aux_sym_on_goto_statement_token1] = ACTIONS(6812), + [aux_sym_on_goto_statement_token2] = ACTIONS(6812), + [aux_sym_on_error_statement_token2] = ACTIONS(6812), + [sym__ambiguous_redim_statement] = ACTIONS(6810), + [aux_sym_erase_statement_token1] = ACTIONS(6812), + [aux_sym_open_statement_token1] = ACTIONS(6812), + [aux_sym_file_mode_token2] = ACTIONS(6812), + [aux_sym_file_access_token2] = ACTIONS(6812), + [aux_sym_file_lock_token2] = ACTIONS(6812), + [aux_sym_print_statement_token1] = ACTIONS(6812), + [anon_sym_PLUS] = ACTIONS(6810), + [anon_sym_DASH] = ACTIONS(6812), + [anon_sym_QMARK] = ACTIONS(6810), + [aux_sym_close_statement_token1] = ACTIONS(6812), + [aux_sym_put_statement_token1] = ACTIONS(6812), + [aux_sym_unlock_statement_token1] = ACTIONS(6812), + [aux_sym_seek_statement_token1] = ACTIONS(6812), + [sym_reset_statement] = ACTIONS(6812), + [aux_sym_raise_event_statement_token1] = ACTIONS(6812), + [sym_stop_statement] = ACTIONS(6812), + [sym_beep_statement] = ACTIONS(6812), + [aux_sym_unload_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token2] = ACTIONS(6812), + [aux_sym_def_type_statement_token3] = ACTIONS(6812), + [aux_sym_def_type_statement_token4] = ACTIONS(6812), + [aux_sym_def_type_statement_token5] = ACTIONS(6812), + [aux_sym_def_type_statement_token6] = ACTIONS(6812), + [aux_sym_def_type_statement_token7] = ACTIONS(6812), + [aux_sym_def_type_statement_token8] = ACTIONS(6812), + [aux_sym_def_type_statement_token9] = ACTIONS(6812), + [aux_sym_def_type_statement_token10] = ACTIONS(6812), + [aux_sym_def_type_statement_token11] = ACTIONS(6812), + [aux_sym_def_type_statement_token12] = ACTIONS(6812), + [aux_sym_def_type_statement_token13] = ACTIONS(6812), + [aux_sym_def_type_statement_token14] = ACTIONS(6812), + [aux_sym_call_statement_token1] = ACTIONS(6812), + [sym__ambiguous_call_statement] = ACTIONS(6812), + [aux_sym_addressof_expression_token1] = ACTIONS(6812), + [aux_sym_type_of_expression_token1] = ACTIONS(6812), + [aux_sym_unary_expression_token1] = ACTIONS(6812), + [sym_string_literal] = ACTIONS(6810), + [sym_number_literal] = ACTIONS(6810), + [aux_sym_boolean_literal_token1] = ACTIONS(6812), + [aux_sym_boolean_literal_token2] = ACTIONS(6812), + [sym_nothing_literal] = ACTIONS(6812), + [sym_null_literal] = ACTIONS(6812), + [sym_empty_literal] = ACTIONS(6812), + [sym_date_literal] = ACTIONS(6810), + [anon_sym_POUND] = ACTIONS(6812), + }, + [STATE(4196)] = { + [sym_next_variable_list] = STATE(5670), + [sym__assignable_expression] = STATE(4828), + [sym__callable_expression] = STATE(4788), + [sym_call_expression] = STATE(4884), + [sym_member_expression] = STATE(5064), + [sym_qualified_member_expression] = STATE(4902), + [sym_implicit_member_expression] = STATE(4902), + [sym_identifier] = ACTIONS(9805), + [sym_newline] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6828), + [aux_sym_frm_property_statement_token1] = ACTIONS(9807), + [anon_sym_DOT] = ACTIONS(9809), + [anon_sym_BANG] = ACTIONS(9811), + [aux_sym__attribute_identifier_token1] = ACTIONS(6828), + [aux_sym_option_statement_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6828), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6828), + [aux_sym_preprocessor_const_token1] = ACTIONS(6828), + [sym_static_modifier] = ACTIONS(6828), + [sym__dim_keyword] = ACTIONS(6828), + [sym__redim_keyword] = ACTIONS(6828), + [aux_sym_get_accessor_token1] = ACTIONS(6828), + [aux_sym_set_accessor_token1] = ACTIONS(6828), + [aux_sym_const_declaration_token1] = ACTIONS(6828), + [anon_sym_LPAREN] = ACTIONS(6826), + [aux_sym_as_type_clause_token2] = ACTIONS(6828), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9813), + [aux_sym_visibility_token1] = ACTIONS(6828), + [aux_sym_visibility_token2] = ACTIONS(6828), + [aux_sym_elseif_fragment_token1] = ACTIONS(6828), + [aux_sym_else_fragment_token1] = ACTIONS(6828), + [aux_sym_select_statement_token1] = ACTIONS(6828), + [aux_sym__for_header_token1] = ACTIONS(6828), + [aux_sym_do_statement_token1] = ACTIONS(6828), + [aux_sym_do_condition_token1] = ACTIONS(6828), + [aux_sym_with_statement_token1] = ACTIONS(6828), + [aux_sym_exit_statement_token1] = ACTIONS(6828), + [sym_end_statement] = ACTIONS(6826), + [aux_sym_on_goto_statement_token1] = ACTIONS(6828), + [aux_sym_on_goto_statement_token2] = ACTIONS(6828), + [aux_sym_on_error_statement_token2] = ACTIONS(6828), + [sym__ambiguous_redim_statement] = ACTIONS(6826), + [aux_sym_erase_statement_token1] = ACTIONS(6828), + [aux_sym_open_statement_token1] = ACTIONS(6828), + [aux_sym_file_mode_token2] = ACTIONS(6828), + [aux_sym_file_access_token2] = ACTIONS(6828), + [aux_sym_file_lock_token2] = ACTIONS(6828), + [aux_sym_print_statement_token1] = ACTIONS(6828), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_DASH] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6826), + [aux_sym_close_statement_token1] = ACTIONS(6828), + [aux_sym_put_statement_token1] = ACTIONS(6828), + [aux_sym_unlock_statement_token1] = ACTIONS(6828), + [aux_sym_seek_statement_token1] = ACTIONS(6828), + [sym_reset_statement] = ACTIONS(6828), + [aux_sym_raise_event_statement_token1] = ACTIONS(6828), + [sym_stop_statement] = ACTIONS(6828), + [sym_beep_statement] = ACTIONS(6828), + [aux_sym_unload_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token2] = ACTIONS(6828), + [aux_sym_def_type_statement_token3] = ACTIONS(6828), + [aux_sym_def_type_statement_token4] = ACTIONS(6828), + [aux_sym_def_type_statement_token5] = ACTIONS(6828), + [aux_sym_def_type_statement_token6] = ACTIONS(6828), + [aux_sym_def_type_statement_token7] = ACTIONS(6828), + [aux_sym_def_type_statement_token8] = ACTIONS(6828), + [aux_sym_def_type_statement_token9] = ACTIONS(6828), + [aux_sym_def_type_statement_token10] = ACTIONS(6828), + [aux_sym_def_type_statement_token11] = ACTIONS(6828), + [aux_sym_def_type_statement_token12] = ACTIONS(6828), + [aux_sym_def_type_statement_token13] = ACTIONS(6828), + [aux_sym_def_type_statement_token14] = ACTIONS(6828), + [aux_sym_call_statement_token1] = ACTIONS(6828), + [sym__ambiguous_call_statement] = ACTIONS(6828), + [aux_sym_addressof_expression_token1] = ACTIONS(6828), + [aux_sym_type_of_expression_token1] = ACTIONS(6828), + [aux_sym_unary_expression_token1] = ACTIONS(6828), + [sym_string_literal] = ACTIONS(6826), + [sym_number_literal] = ACTIONS(6826), + [aux_sym_boolean_literal_token1] = ACTIONS(6828), + [aux_sym_boolean_literal_token2] = ACTIONS(6828), + [sym_nothing_literal] = ACTIONS(6828), + [sym_null_literal] = ACTIONS(6828), + [sym_empty_literal] = ACTIONS(6828), + [sym_date_literal] = ACTIONS(6826), + [anon_sym_POUND] = ACTIONS(6828), + }, + [STATE(4197)] = { + [sym_next_variable_list] = STATE(5671), + [sym__assignable_expression] = STATE(4828), + [sym__callable_expression] = STATE(4788), + [sym_call_expression] = STATE(4884), + [sym_member_expression] = STATE(5064), + [sym_qualified_member_expression] = STATE(4902), + [sym_implicit_member_expression] = STATE(4902), + [sym_identifier] = ACTIONS(9805), + [sym_newline] = ACTIONS(6863), + [anon_sym_COLON] = ACTIONS(6863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6865), + [aux_sym_frm_property_statement_token1] = ACTIONS(9807), + [anon_sym_DOT] = ACTIONS(9809), + [anon_sym_BANG] = ACTIONS(9811), + [aux_sym__attribute_identifier_token1] = ACTIONS(6865), + [aux_sym_option_statement_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6865), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6865), + [aux_sym_preprocessor_const_token1] = ACTIONS(6865), + [sym_static_modifier] = ACTIONS(6865), + [sym__dim_keyword] = ACTIONS(6865), + [sym__redim_keyword] = ACTIONS(6865), + [aux_sym_get_accessor_token1] = ACTIONS(6865), + [aux_sym_set_accessor_token1] = ACTIONS(6865), + [aux_sym_const_declaration_token1] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6863), + [aux_sym_as_type_clause_token2] = ACTIONS(6865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9813), + [aux_sym_visibility_token1] = ACTIONS(6865), + [aux_sym_visibility_token2] = ACTIONS(6865), + [aux_sym_elseif_fragment_token1] = ACTIONS(6865), + [aux_sym_else_fragment_token1] = ACTIONS(6865), + [aux_sym_select_statement_token1] = ACTIONS(6865), + [aux_sym__for_header_token1] = ACTIONS(6865), + [aux_sym_do_statement_token1] = ACTIONS(6865), + [aux_sym_do_condition_token1] = ACTIONS(6865), + [aux_sym_with_statement_token1] = ACTIONS(6865), + [aux_sym_exit_statement_token1] = ACTIONS(6865), + [sym_end_statement] = ACTIONS(6863), + [aux_sym_on_goto_statement_token1] = ACTIONS(6865), + [aux_sym_on_goto_statement_token2] = ACTIONS(6865), + [aux_sym_on_error_statement_token2] = ACTIONS(6865), + [sym__ambiguous_redim_statement] = ACTIONS(6863), + [aux_sym_erase_statement_token1] = ACTIONS(6865), + [aux_sym_open_statement_token1] = ACTIONS(6865), + [aux_sym_file_mode_token2] = ACTIONS(6865), + [aux_sym_file_access_token2] = ACTIONS(6865), + [aux_sym_file_lock_token2] = ACTIONS(6865), + [aux_sym_print_statement_token1] = ACTIONS(6865), + [anon_sym_PLUS] = ACTIONS(6863), + [anon_sym_DASH] = ACTIONS(6865), + [anon_sym_QMARK] = ACTIONS(6863), + [aux_sym_close_statement_token1] = ACTIONS(6865), + [aux_sym_put_statement_token1] = ACTIONS(6865), + [aux_sym_unlock_statement_token1] = ACTIONS(6865), + [aux_sym_seek_statement_token1] = ACTIONS(6865), + [sym_reset_statement] = ACTIONS(6865), + [aux_sym_raise_event_statement_token1] = ACTIONS(6865), + [sym_stop_statement] = ACTIONS(6865), + [sym_beep_statement] = ACTIONS(6865), + [aux_sym_unload_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token2] = ACTIONS(6865), + [aux_sym_def_type_statement_token3] = ACTIONS(6865), + [aux_sym_def_type_statement_token4] = ACTIONS(6865), + [aux_sym_def_type_statement_token5] = ACTIONS(6865), + [aux_sym_def_type_statement_token6] = ACTIONS(6865), + [aux_sym_def_type_statement_token7] = ACTIONS(6865), + [aux_sym_def_type_statement_token8] = ACTIONS(6865), + [aux_sym_def_type_statement_token9] = ACTIONS(6865), + [aux_sym_def_type_statement_token10] = ACTIONS(6865), + [aux_sym_def_type_statement_token11] = ACTIONS(6865), + [aux_sym_def_type_statement_token12] = ACTIONS(6865), + [aux_sym_def_type_statement_token13] = ACTIONS(6865), + [aux_sym_def_type_statement_token14] = ACTIONS(6865), + [aux_sym_call_statement_token1] = ACTIONS(6865), + [sym__ambiguous_call_statement] = ACTIONS(6865), + [aux_sym_addressof_expression_token1] = ACTIONS(6865), + [aux_sym_type_of_expression_token1] = ACTIONS(6865), + [aux_sym_unary_expression_token1] = ACTIONS(6865), + [sym_string_literal] = ACTIONS(6863), + [sym_number_literal] = ACTIONS(6863), + [aux_sym_boolean_literal_token1] = ACTIONS(6865), + [aux_sym_boolean_literal_token2] = ACTIONS(6865), + [sym_nothing_literal] = ACTIONS(6865), + [sym_null_literal] = ACTIONS(6865), + [sym_empty_literal] = ACTIONS(6865), + [sym_date_literal] = ACTIONS(6863), + [anon_sym_POUND] = ACTIONS(6865), + }, + [STATE(4198)] = { + [sym_next_variable_list] = STATE(5701), + [sym__assignable_expression] = STATE(4828), + [sym__callable_expression] = STATE(4788), + [sym_call_expression] = STATE(4884), + [sym_member_expression] = STATE(5064), + [sym_qualified_member_expression] = STATE(4902), + [sym_implicit_member_expression] = STATE(4902), + [sym_identifier] = ACTIONS(9805), + [sym_newline] = ACTIONS(6848), + [anon_sym_COLON] = ACTIONS(6848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6850), + [aux_sym_frm_property_statement_token1] = ACTIONS(9807), + [anon_sym_DOT] = ACTIONS(9809), + [anon_sym_BANG] = ACTIONS(9811), + [aux_sym__attribute_identifier_token1] = ACTIONS(6850), + [aux_sym_option_statement_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6850), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6850), + [aux_sym_preprocessor_const_token1] = ACTIONS(6850), + [sym_static_modifier] = ACTIONS(6850), + [sym__dim_keyword] = ACTIONS(6850), + [sym__redim_keyword] = ACTIONS(6850), + [aux_sym_get_accessor_token1] = ACTIONS(6850), + [aux_sym_set_accessor_token1] = ACTIONS(6850), + [aux_sym_const_declaration_token1] = ACTIONS(6850), + [anon_sym_LPAREN] = ACTIONS(6848), + [aux_sym_as_type_clause_token2] = ACTIONS(6850), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9813), + [aux_sym_visibility_token1] = ACTIONS(6850), + [aux_sym_visibility_token2] = ACTIONS(6850), + [aux_sym_elseif_fragment_token1] = ACTIONS(6850), + [aux_sym_else_fragment_token1] = ACTIONS(6850), + [aux_sym_select_statement_token1] = ACTIONS(6850), + [aux_sym__for_header_token1] = ACTIONS(6850), + [aux_sym_do_statement_token1] = ACTIONS(6850), + [aux_sym_do_condition_token1] = ACTIONS(6850), + [aux_sym_with_statement_token1] = ACTIONS(6850), + [aux_sym_exit_statement_token1] = ACTIONS(6850), + [sym_end_statement] = ACTIONS(6848), + [aux_sym_on_goto_statement_token1] = ACTIONS(6850), + [aux_sym_on_goto_statement_token2] = ACTIONS(6850), + [aux_sym_on_error_statement_token2] = ACTIONS(6850), + [sym__ambiguous_redim_statement] = ACTIONS(6848), + [aux_sym_erase_statement_token1] = ACTIONS(6850), + [aux_sym_open_statement_token1] = ACTIONS(6850), + [aux_sym_file_mode_token2] = ACTIONS(6850), + [aux_sym_file_access_token2] = ACTIONS(6850), + [aux_sym_file_lock_token2] = ACTIONS(6850), + [aux_sym_print_statement_token1] = ACTIONS(6850), + [anon_sym_PLUS] = ACTIONS(6848), + [anon_sym_DASH] = ACTIONS(6850), + [anon_sym_QMARK] = ACTIONS(6848), + [aux_sym_close_statement_token1] = ACTIONS(6850), + [aux_sym_put_statement_token1] = ACTIONS(6850), + [aux_sym_unlock_statement_token1] = ACTIONS(6850), + [aux_sym_seek_statement_token1] = ACTIONS(6850), + [sym_reset_statement] = ACTIONS(6850), + [aux_sym_raise_event_statement_token1] = ACTIONS(6850), + [sym_stop_statement] = ACTIONS(6850), + [sym_beep_statement] = ACTIONS(6850), + [aux_sym_unload_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token2] = ACTIONS(6850), + [aux_sym_def_type_statement_token3] = ACTIONS(6850), + [aux_sym_def_type_statement_token4] = ACTIONS(6850), + [aux_sym_def_type_statement_token5] = ACTIONS(6850), + [aux_sym_def_type_statement_token6] = ACTIONS(6850), + [aux_sym_def_type_statement_token7] = ACTIONS(6850), + [aux_sym_def_type_statement_token8] = ACTIONS(6850), + [aux_sym_def_type_statement_token9] = ACTIONS(6850), + [aux_sym_def_type_statement_token10] = ACTIONS(6850), + [aux_sym_def_type_statement_token11] = ACTIONS(6850), + [aux_sym_def_type_statement_token12] = ACTIONS(6850), + [aux_sym_def_type_statement_token13] = ACTIONS(6850), + [aux_sym_def_type_statement_token14] = ACTIONS(6850), + [aux_sym_call_statement_token1] = ACTIONS(6850), + [sym__ambiguous_call_statement] = ACTIONS(6850), + [aux_sym_addressof_expression_token1] = ACTIONS(6850), + [aux_sym_type_of_expression_token1] = ACTIONS(6850), + [aux_sym_unary_expression_token1] = ACTIONS(6850), + [sym_string_literal] = ACTIONS(6848), + [sym_number_literal] = ACTIONS(6848), + [aux_sym_boolean_literal_token1] = ACTIONS(6850), + [aux_sym_boolean_literal_token2] = ACTIONS(6850), + [sym_nothing_literal] = ACTIONS(6850), + [sym_null_literal] = ACTIONS(6850), + [sym_empty_literal] = ACTIONS(6850), + [sym_date_literal] = ACTIONS(6848), + [anon_sym_POUND] = ACTIONS(6850), + }, + [STATE(4199)] = { + [sym_next_variable_list] = STATE(5702), + [sym__assignable_expression] = STATE(4828), + [sym__callable_expression] = STATE(4788), + [sym_call_expression] = STATE(4884), + [sym_member_expression] = STATE(5064), + [sym_qualified_member_expression] = STATE(4902), + [sym_implicit_member_expression] = STATE(4902), + [sym_identifier] = ACTIONS(9805), + [sym_newline] = ACTIONS(6822), + [anon_sym_COLON] = ACTIONS(6822), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6824), + [aux_sym_frm_property_statement_token1] = ACTIONS(9807), + [anon_sym_DOT] = ACTIONS(9809), + [anon_sym_BANG] = ACTIONS(9811), + [aux_sym__attribute_identifier_token1] = ACTIONS(6824), + [aux_sym_option_statement_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6824), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6824), + [aux_sym_preprocessor_const_token1] = ACTIONS(6824), + [sym_static_modifier] = ACTIONS(6824), + [sym__dim_keyword] = ACTIONS(6824), + [sym__redim_keyword] = ACTIONS(6824), + [aux_sym_get_accessor_token1] = ACTIONS(6824), + [aux_sym_set_accessor_token1] = ACTIONS(6824), + [aux_sym_const_declaration_token1] = ACTIONS(6824), + [anon_sym_LPAREN] = ACTIONS(6822), + [aux_sym_as_type_clause_token2] = ACTIONS(6824), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9813), + [aux_sym_visibility_token1] = ACTIONS(6824), + [aux_sym_visibility_token2] = ACTIONS(6824), + [aux_sym_elseif_fragment_token1] = ACTIONS(6824), + [aux_sym_else_fragment_token1] = ACTIONS(6824), + [aux_sym_select_statement_token1] = ACTIONS(6824), + [aux_sym__for_header_token1] = ACTIONS(6824), + [aux_sym_do_statement_token1] = ACTIONS(6824), + [aux_sym_do_condition_token1] = ACTIONS(6824), + [aux_sym_with_statement_token1] = ACTIONS(6824), + [aux_sym_exit_statement_token1] = ACTIONS(6824), + [sym_end_statement] = ACTIONS(6822), + [aux_sym_on_goto_statement_token1] = ACTIONS(6824), + [aux_sym_on_goto_statement_token2] = ACTIONS(6824), + [aux_sym_on_error_statement_token2] = ACTIONS(6824), + [sym__ambiguous_redim_statement] = ACTIONS(6822), + [aux_sym_erase_statement_token1] = ACTIONS(6824), + [aux_sym_open_statement_token1] = ACTIONS(6824), + [aux_sym_file_mode_token2] = ACTIONS(6824), + [aux_sym_file_access_token2] = ACTIONS(6824), + [aux_sym_file_lock_token2] = ACTIONS(6824), + [aux_sym_print_statement_token1] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6822), + [aux_sym_close_statement_token1] = ACTIONS(6824), + [aux_sym_put_statement_token1] = ACTIONS(6824), + [aux_sym_unlock_statement_token1] = ACTIONS(6824), + [aux_sym_seek_statement_token1] = ACTIONS(6824), + [sym_reset_statement] = ACTIONS(6824), + [aux_sym_raise_event_statement_token1] = ACTIONS(6824), + [sym_stop_statement] = ACTIONS(6824), + [sym_beep_statement] = ACTIONS(6824), + [aux_sym_unload_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token2] = ACTIONS(6824), + [aux_sym_def_type_statement_token3] = ACTIONS(6824), + [aux_sym_def_type_statement_token4] = ACTIONS(6824), + [aux_sym_def_type_statement_token5] = ACTIONS(6824), + [aux_sym_def_type_statement_token6] = ACTIONS(6824), + [aux_sym_def_type_statement_token7] = ACTIONS(6824), + [aux_sym_def_type_statement_token8] = ACTIONS(6824), + [aux_sym_def_type_statement_token9] = ACTIONS(6824), + [aux_sym_def_type_statement_token10] = ACTIONS(6824), + [aux_sym_def_type_statement_token11] = ACTIONS(6824), + [aux_sym_def_type_statement_token12] = ACTIONS(6824), + [aux_sym_def_type_statement_token13] = ACTIONS(6824), + [aux_sym_def_type_statement_token14] = ACTIONS(6824), + [aux_sym_call_statement_token1] = ACTIONS(6824), + [sym__ambiguous_call_statement] = ACTIONS(6824), + [aux_sym_addressof_expression_token1] = ACTIONS(6824), + [aux_sym_type_of_expression_token1] = ACTIONS(6824), + [aux_sym_unary_expression_token1] = ACTIONS(6824), + [sym_string_literal] = ACTIONS(6822), + [sym_number_literal] = ACTIONS(6822), + [aux_sym_boolean_literal_token1] = ACTIONS(6824), + [aux_sym_boolean_literal_token2] = ACTIONS(6824), + [sym_nothing_literal] = ACTIONS(6824), + [sym_null_literal] = ACTIONS(6824), + [sym_empty_literal] = ACTIONS(6824), + [sym_date_literal] = ACTIONS(6822), + [anon_sym_POUND] = ACTIONS(6824), + }, + [STATE(4200)] = { + [sym_identifier] = ACTIONS(6621), + [sym_newline] = ACTIONS(6623), + [anon_sym_COLON] = ACTIONS(6623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6621), + [aux_sym_frm_property_statement_token1] = ACTIONS(6621), + [anon_sym_DOT] = ACTIONS(6621), + [anon_sym_BANG] = ACTIONS(6623), + [aux_sym__attribute_identifier_token1] = ACTIONS(6621), + [aux_sym_option_statement_token3] = ACTIONS(6621), + [aux_sym_type_declaration_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6621), + [aux_sym_enum_declaration_token1] = ACTIONS(6621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6621), + [aux_sym_declare_function_statement_token1] = ACTIONS(6621), + [aux_sym_preprocessor_const_token1] = ACTIONS(6621), + [aux_sym__property_get_header_token1] = ACTIONS(6621), + [aux_sym_event_declaration_token1] = ACTIONS(6621), + [sym_static_modifier] = ACTIONS(6621), + [sym__dim_keyword] = ACTIONS(6621), + [sym__redim_keyword] = ACTIONS(6621), + [aux_sym_get_accessor_token1] = ACTIONS(6621), + [aux_sym_set_accessor_token1] = ACTIONS(6621), + [aux_sym_const_declaration_token1] = ACTIONS(6621), + [anon_sym_LPAREN] = ACTIONS(6623), + [aux_sym_as_type_clause_token2] = ACTIONS(6621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6621), + [aux_sym_visibility_token1] = ACTIONS(6621), + [aux_sym_visibility_token2] = ACTIONS(6621), + [aux_sym_elseif_fragment_token1] = ACTIONS(6621), + [aux_sym_else_fragment_token1] = ACTIONS(6621), + [aux_sym_select_statement_token1] = ACTIONS(6621), + [aux_sym__for_header_token1] = ACTIONS(6621), + [aux_sym_do_statement_token1] = ACTIONS(6621), + [aux_sym_do_condition_token1] = ACTIONS(6621), + [aux_sym_with_statement_token1] = ACTIONS(6621), + [aux_sym_exit_statement_token1] = ACTIONS(6621), + [sym_end_statement] = ACTIONS(6623), + [aux_sym_on_goto_statement_token1] = ACTIONS(6621), + [aux_sym_on_goto_statement_token2] = ACTIONS(6621), + [aux_sym_on_error_statement_token2] = ACTIONS(6621), + [sym__ambiguous_redim_statement] = ACTIONS(6623), + [aux_sym_erase_statement_token1] = ACTIONS(6621), + [aux_sym_open_statement_token1] = ACTIONS(6621), + [aux_sym_file_mode_token2] = ACTIONS(6621), + [aux_sym_file_access_token2] = ACTIONS(6621), + [aux_sym_file_lock_token2] = ACTIONS(6621), + [aux_sym_print_statement_token1] = ACTIONS(6621), + [anon_sym_PLUS] = ACTIONS(6623), + [anon_sym_DASH] = ACTIONS(6621), + [anon_sym_QMARK] = ACTIONS(6623), + [aux_sym_close_statement_token1] = ACTIONS(6621), + [aux_sym_put_statement_token1] = ACTIONS(6621), + [aux_sym_unlock_statement_token1] = ACTIONS(6621), + [aux_sym_seek_statement_token1] = ACTIONS(6621), + [sym_reset_statement] = ACTIONS(6621), + [aux_sym_raise_event_statement_token1] = ACTIONS(6621), + [sym_stop_statement] = ACTIONS(6621), + [sym_beep_statement] = ACTIONS(6621), + [aux_sym_unload_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token2] = ACTIONS(6621), + [aux_sym_def_type_statement_token3] = ACTIONS(6621), + [aux_sym_def_type_statement_token4] = ACTIONS(6621), + [aux_sym_def_type_statement_token5] = ACTIONS(6621), + [aux_sym_def_type_statement_token6] = ACTIONS(6621), + [aux_sym_def_type_statement_token7] = ACTIONS(6621), + [aux_sym_def_type_statement_token8] = ACTIONS(6621), + [aux_sym_def_type_statement_token9] = ACTIONS(6621), + [aux_sym_def_type_statement_token10] = ACTIONS(6621), + [aux_sym_def_type_statement_token11] = ACTIONS(6621), + [aux_sym_def_type_statement_token12] = ACTIONS(6621), + [aux_sym_def_type_statement_token13] = ACTIONS(6621), + [aux_sym_def_type_statement_token14] = ACTIONS(6621), + [aux_sym_call_statement_token1] = ACTIONS(6621), + [sym__ambiguous_call_statement] = ACTIONS(6621), + [aux_sym_addressof_expression_token1] = ACTIONS(6621), + [aux_sym_type_of_expression_token1] = ACTIONS(6621), + [aux_sym_unary_expression_token1] = ACTIONS(6621), + [sym_string_literal] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [aux_sym_boolean_literal_token1] = ACTIONS(6621), + [aux_sym_boolean_literal_token2] = ACTIONS(6621), + [sym_nothing_literal] = ACTIONS(6621), + [sym_null_literal] = ACTIONS(6621), + [sym_empty_literal] = ACTIONS(6621), + [sym_date_literal] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6621), + }, + [STATE(4201)] = { + [sym_identifier] = ACTIONS(9818), + [sym_newline] = ACTIONS(9820), + [anon_sym_COLON] = ACTIONS(9820), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9818), + [aux_sym_frm_property_statement_token1] = ACTIONS(9818), + [anon_sym_DOT] = ACTIONS(9818), + [anon_sym_BANG] = ACTIONS(9820), + [aux_sym__attribute_identifier_token1] = ACTIONS(9818), + [aux_sym_option_statement_token3] = ACTIONS(9818), + [aux_sym_type_declaration_token1] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9818), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9818), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9818), + [aux_sym_enum_declaration_token1] = ACTIONS(9818), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9818), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9818), + [aux_sym_declare_function_statement_token1] = ACTIONS(9818), + [aux_sym_preprocessor_const_token1] = ACTIONS(9818), + [aux_sym__property_get_header_token1] = ACTIONS(9818), + [aux_sym_event_declaration_token1] = ACTIONS(9818), + [sym_static_modifier] = ACTIONS(9818), + [sym__dim_keyword] = ACTIONS(9818), + [sym__redim_keyword] = ACTIONS(9818), + [aux_sym_get_accessor_token1] = ACTIONS(9818), + [aux_sym_set_accessor_token1] = ACTIONS(9818), + [aux_sym_const_declaration_token1] = ACTIONS(9818), + [anon_sym_LPAREN] = ACTIONS(9820), + [aux_sym_as_type_clause_token2] = ACTIONS(9818), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9818), + [aux_sym_visibility_token1] = ACTIONS(9818), + [aux_sym_visibility_token2] = ACTIONS(9818), + [aux_sym_elseif_fragment_token1] = ACTIONS(9818), + [aux_sym_else_fragment_token1] = ACTIONS(9818), + [aux_sym_select_statement_token1] = ACTIONS(9818), + [aux_sym__for_header_token1] = ACTIONS(9818), + [aux_sym_do_statement_token1] = ACTIONS(9818), + [aux_sym_do_condition_token1] = ACTIONS(9818), + [aux_sym_with_statement_token1] = ACTIONS(9818), + [aux_sym_exit_statement_token1] = ACTIONS(9818), + [sym_end_statement] = ACTIONS(9820), + [aux_sym_on_goto_statement_token1] = ACTIONS(9818), + [aux_sym_on_goto_statement_token2] = ACTIONS(9818), + [aux_sym_on_error_statement_token2] = ACTIONS(9818), + [sym__ambiguous_redim_statement] = ACTIONS(9820), + [aux_sym_erase_statement_token1] = ACTIONS(9818), + [aux_sym_open_statement_token1] = ACTIONS(9818), + [aux_sym_file_mode_token2] = ACTIONS(9818), + [aux_sym_file_access_token2] = ACTIONS(9818), + [aux_sym_file_lock_token2] = ACTIONS(9818), + [aux_sym_print_statement_token1] = ACTIONS(9818), + [anon_sym_PLUS] = ACTIONS(9820), + [anon_sym_DASH] = ACTIONS(9818), + [anon_sym_QMARK] = ACTIONS(9820), + [aux_sym_close_statement_token1] = ACTIONS(9818), + [aux_sym_put_statement_token1] = ACTIONS(9818), + [aux_sym_unlock_statement_token1] = ACTIONS(9818), + [aux_sym_seek_statement_token1] = ACTIONS(9818), + [sym_reset_statement] = ACTIONS(9818), + [aux_sym_raise_event_statement_token1] = ACTIONS(9818), + [sym_stop_statement] = ACTIONS(9818), + [sym_beep_statement] = ACTIONS(9818), + [aux_sym_unload_statement_token1] = ACTIONS(9818), + [aux_sym_def_type_statement_token1] = ACTIONS(9818), + [aux_sym_def_type_statement_token2] = ACTIONS(9818), + [aux_sym_def_type_statement_token3] = ACTIONS(9818), + [aux_sym_def_type_statement_token4] = ACTIONS(9818), + [aux_sym_def_type_statement_token5] = ACTIONS(9818), + [aux_sym_def_type_statement_token6] = ACTIONS(9818), + [aux_sym_def_type_statement_token7] = ACTIONS(9818), + [aux_sym_def_type_statement_token8] = ACTIONS(9818), + [aux_sym_def_type_statement_token9] = ACTIONS(9818), + [aux_sym_def_type_statement_token10] = ACTIONS(9818), + [aux_sym_def_type_statement_token11] = ACTIONS(9818), + [aux_sym_def_type_statement_token12] = ACTIONS(9818), + [aux_sym_def_type_statement_token13] = ACTIONS(9818), + [aux_sym_def_type_statement_token14] = ACTIONS(9818), + [aux_sym_call_statement_token1] = ACTIONS(9818), + [sym__ambiguous_call_statement] = ACTIONS(9818), + [aux_sym_addressof_expression_token1] = ACTIONS(9818), + [aux_sym_type_of_expression_token1] = ACTIONS(9818), + [aux_sym_unary_expression_token1] = ACTIONS(9818), + [sym_string_literal] = ACTIONS(9820), + [sym_number_literal] = ACTIONS(9820), + [aux_sym_boolean_literal_token1] = ACTIONS(9818), + [aux_sym_boolean_literal_token2] = ACTIONS(9818), + [sym_nothing_literal] = ACTIONS(9818), + [sym_null_literal] = ACTIONS(9818), + [sym_empty_literal] = ACTIONS(9818), + [sym_date_literal] = ACTIONS(9820), + [anon_sym_POUND] = ACTIONS(9818), + }, + [STATE(4202)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(4202), + [sym_identifier] = ACTIONS(8702), + [sym_newline] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(9822), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8702), + [aux_sym_frm_property_statement_token1] = ACTIONS(8702), + [anon_sym_DOT] = ACTIONS(8702), + [anon_sym_BANG] = ACTIONS(8704), + [aux_sym__attribute_identifier_token1] = ACTIONS(8702), + [aux_sym_option_statement_token3] = ACTIONS(8702), + [aux_sym_type_declaration_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8702), + [aux_sym_enum_declaration_token1] = ACTIONS(8702), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8702), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8702), + [aux_sym_declare_function_statement_token1] = ACTIONS(8702), + [aux_sym_preprocessor_const_token1] = ACTIONS(8702), + [aux_sym__property_get_header_token1] = ACTIONS(8702), + [aux_sym_event_declaration_token1] = ACTIONS(8702), + [sym_static_modifier] = ACTIONS(8702), + [sym__dim_keyword] = ACTIONS(8702), + [sym__redim_keyword] = ACTIONS(8702), + [aux_sym_get_accessor_token1] = ACTIONS(8702), + [aux_sym_set_accessor_token1] = ACTIONS(8702), + [aux_sym_const_declaration_token1] = ACTIONS(8702), + [anon_sym_LPAREN] = ACTIONS(8704), + [aux_sym_as_type_clause_token2] = ACTIONS(8702), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8702), + [aux_sym_visibility_token1] = ACTIONS(8702), + [aux_sym_visibility_token2] = ACTIONS(8702), + [aux_sym_elseif_fragment_token1] = ACTIONS(8702), + [aux_sym_else_fragment_token1] = ACTIONS(8702), + [aux_sym_select_statement_token1] = ACTIONS(8702), + [aux_sym__for_header_token1] = ACTIONS(8702), + [aux_sym_do_statement_token1] = ACTIONS(8702), + [aux_sym_do_condition_token1] = ACTIONS(8702), + [aux_sym_with_statement_token1] = ACTIONS(8702), + [aux_sym_exit_statement_token1] = ACTIONS(8702), + [sym_end_statement] = ACTIONS(8704), + [aux_sym_on_goto_statement_token1] = ACTIONS(8702), + [aux_sym_on_goto_statement_token2] = ACTIONS(8702), + [aux_sym_on_error_statement_token2] = ACTIONS(8702), + [sym__ambiguous_redim_statement] = ACTIONS(8704), + [aux_sym_erase_statement_token1] = ACTIONS(8702), + [aux_sym_open_statement_token1] = ACTIONS(8702), + [aux_sym_file_mode_token2] = ACTIONS(8702), + [aux_sym_file_access_token2] = ACTIONS(8702), + [aux_sym_file_lock_token2] = ACTIONS(8702), + [aux_sym_print_statement_token1] = ACTIONS(8702), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_DASH] = ACTIONS(8702), + [anon_sym_QMARK] = ACTIONS(8704), + [aux_sym_close_statement_token1] = ACTIONS(8702), + [aux_sym_put_statement_token1] = ACTIONS(8702), + [aux_sym_unlock_statement_token1] = ACTIONS(8702), + [aux_sym_seek_statement_token1] = ACTIONS(8702), + [sym_reset_statement] = ACTIONS(8702), + [aux_sym_raise_event_statement_token1] = ACTIONS(8702), + [sym_stop_statement] = ACTIONS(8702), + [sym_beep_statement] = ACTIONS(8702), + [aux_sym_unload_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token2] = ACTIONS(8702), + [aux_sym_def_type_statement_token3] = ACTIONS(8702), + [aux_sym_def_type_statement_token4] = ACTIONS(8702), + [aux_sym_def_type_statement_token5] = ACTIONS(8702), + [aux_sym_def_type_statement_token6] = ACTIONS(8702), + [aux_sym_def_type_statement_token7] = ACTIONS(8702), + [aux_sym_def_type_statement_token8] = ACTIONS(8702), + [aux_sym_def_type_statement_token9] = ACTIONS(8702), + [aux_sym_def_type_statement_token10] = ACTIONS(8702), + [aux_sym_def_type_statement_token11] = ACTIONS(8702), + [aux_sym_def_type_statement_token12] = ACTIONS(8702), + [aux_sym_def_type_statement_token13] = ACTIONS(8702), + [aux_sym_def_type_statement_token14] = ACTIONS(8702), + [aux_sym_call_statement_token1] = ACTIONS(8702), + [sym__ambiguous_call_statement] = ACTIONS(8702), + [aux_sym_addressof_expression_token1] = ACTIONS(8702), + [aux_sym_type_of_expression_token1] = ACTIONS(8702), + [aux_sym_unary_expression_token1] = ACTIONS(8702), + [sym_string_literal] = ACTIONS(8704), + [sym_number_literal] = ACTIONS(8704), + [aux_sym_boolean_literal_token1] = ACTIONS(8702), + [aux_sym_boolean_literal_token2] = ACTIONS(8702), + [sym_nothing_literal] = ACTIONS(8702), + [sym_null_literal] = ACTIONS(8702), + [sym_empty_literal] = ACTIONS(8702), + [sym_date_literal] = ACTIONS(8704), + [anon_sym_POUND] = ACTIONS(8702), + }, + [STATE(4203)] = { + [sym_next_variable_list] = STATE(5813), + [sym__assignable_expression] = STATE(4956), + [sym__callable_expression] = STATE(4977), + [sym_call_expression] = STATE(4901), + [sym_member_expression] = STATE(5393), + [sym_qualified_member_expression] = STATE(5480), + [sym_implicit_member_expression] = STATE(5480), + [sym_identifier] = ACTIONS(9825), + [sym_newline] = ACTIONS(6822), + [anon_sym_COLON] = ACTIONS(6822), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6824), + [aux_sym_frm_property_statement_token1] = ACTIONS(9827), + [anon_sym_DOT] = ACTIONS(9829), + [anon_sym_BANG] = ACTIONS(9831), + [aux_sym__attribute_identifier_token1] = ACTIONS(6824), + [aux_sym_option_statement_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6824), + [aux_sym_preprocessor_const_token1] = ACTIONS(6824), + [sym_static_modifier] = ACTIONS(6824), + [sym__dim_keyword] = ACTIONS(6824), + [sym__redim_keyword] = ACTIONS(6824), + [aux_sym_get_accessor_token1] = ACTIONS(6824), + [aux_sym_set_accessor_token1] = ACTIONS(6824), + [aux_sym_const_declaration_token1] = ACTIONS(6824), + [anon_sym_LPAREN] = ACTIONS(6822), + [aux_sym_as_type_clause_token2] = ACTIONS(6824), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9833), + [aux_sym_visibility_token1] = ACTIONS(6824), + [aux_sym_visibility_token2] = ACTIONS(6824), + [aux_sym_elseif_fragment_token1] = ACTIONS(6824), + [aux_sym_else_fragment_token1] = ACTIONS(6824), + [aux_sym_select_statement_token1] = ACTIONS(6824), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6824), + [aux_sym__for_header_token1] = ACTIONS(6824), + [aux_sym_do_statement_token1] = ACTIONS(6824), + [aux_sym_do_condition_token1] = ACTIONS(6824), + [aux_sym_while_statement_token1] = ACTIONS(6824), + [aux_sym_with_statement_token1] = ACTIONS(6824), + [aux_sym_exit_statement_token1] = ACTIONS(6824), + [sym_end_statement] = ACTIONS(6822), + [aux_sym_on_goto_statement_token1] = ACTIONS(6824), + [aux_sym_on_goto_statement_token2] = ACTIONS(6824), + [aux_sym_on_error_statement_token2] = ACTIONS(6824), + [sym__ambiguous_redim_statement] = ACTIONS(6822), + [aux_sym_erase_statement_token1] = ACTIONS(6824), + [aux_sym_open_statement_token1] = ACTIONS(6824), + [aux_sym_file_mode_token2] = ACTIONS(6824), + [aux_sym_file_access_token2] = ACTIONS(6824), + [aux_sym_file_lock_token2] = ACTIONS(6824), + [aux_sym_print_statement_token1] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6822), + [aux_sym_close_statement_token1] = ACTIONS(6824), + [aux_sym_put_statement_token1] = ACTIONS(6824), + [aux_sym_unlock_statement_token1] = ACTIONS(6824), + [aux_sym_seek_statement_token1] = ACTIONS(6824), + [sym_reset_statement] = ACTIONS(6824), + [aux_sym_raise_event_statement_token1] = ACTIONS(6824), + [sym_stop_statement] = ACTIONS(6824), + [sym_beep_statement] = ACTIONS(6824), + [aux_sym_unload_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token2] = ACTIONS(6824), + [aux_sym_def_type_statement_token3] = ACTIONS(6824), + [aux_sym_def_type_statement_token4] = ACTIONS(6824), + [aux_sym_def_type_statement_token5] = ACTIONS(6824), + [aux_sym_def_type_statement_token6] = ACTIONS(6824), + [aux_sym_def_type_statement_token7] = ACTIONS(6824), + [aux_sym_def_type_statement_token8] = ACTIONS(6824), + [aux_sym_def_type_statement_token9] = ACTIONS(6824), + [aux_sym_def_type_statement_token10] = ACTIONS(6824), + [aux_sym_def_type_statement_token11] = ACTIONS(6824), + [aux_sym_def_type_statement_token12] = ACTIONS(6824), + [aux_sym_def_type_statement_token13] = ACTIONS(6824), + [aux_sym_def_type_statement_token14] = ACTIONS(6824), + [aux_sym_call_statement_token1] = ACTIONS(6824), + [sym__ambiguous_call_statement] = ACTIONS(6824), + [aux_sym_addressof_expression_token1] = ACTIONS(6824), + [aux_sym_type_of_expression_token1] = ACTIONS(6824), + [aux_sym_unary_expression_token1] = ACTIONS(6824), + [sym_string_literal] = ACTIONS(6822), + [sym_number_literal] = ACTIONS(6822), + [aux_sym_boolean_literal_token1] = ACTIONS(6824), + [aux_sym_boolean_literal_token2] = ACTIONS(6824), + [sym_nothing_literal] = ACTIONS(6824), + [sym_null_literal] = ACTIONS(6824), + [sym_empty_literal] = ACTIONS(6824), + [sym_date_literal] = ACTIONS(6822), + [anon_sym_POUND] = ACTIONS(6824), + }, + [STATE(4204)] = { + [sym_identifier] = ACTIONS(8861), + [sym_newline] = ACTIONS(8863), + [anon_sym_COLON] = ACTIONS(8863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8861), + [aux_sym_frm_property_statement_token1] = ACTIONS(8861), + [anon_sym_DOT] = ACTIONS(8861), + [anon_sym_BANG] = ACTIONS(8863), + [aux_sym__attribute_identifier_token1] = ACTIONS(8861), + [aux_sym_option_statement_token3] = ACTIONS(8861), + [aux_sym_type_declaration_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8861), + [aux_sym_enum_declaration_token1] = ACTIONS(8861), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8861), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8861), + [aux_sym_declare_function_statement_token1] = ACTIONS(8861), + [aux_sym_preprocessor_const_token1] = ACTIONS(8861), + [aux_sym__property_get_header_token1] = ACTIONS(8861), + [aux_sym_event_declaration_token1] = ACTIONS(8861), + [sym_static_modifier] = ACTIONS(8861), + [sym__dim_keyword] = ACTIONS(8861), + [sym__redim_keyword] = ACTIONS(8861), + [aux_sym_get_accessor_token1] = ACTIONS(8861), + [aux_sym_set_accessor_token1] = ACTIONS(8861), + [aux_sym_const_declaration_token1] = ACTIONS(8861), + [anon_sym_LPAREN] = ACTIONS(8863), + [aux_sym_as_type_clause_token2] = ACTIONS(8861), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8861), + [aux_sym_visibility_token1] = ACTIONS(8861), + [aux_sym_visibility_token2] = ACTIONS(8861), + [aux_sym_elseif_fragment_token1] = ACTIONS(8861), + [aux_sym_else_fragment_token1] = ACTIONS(8861), + [aux_sym_select_statement_token1] = ACTIONS(8861), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8861), + [aux_sym__for_header_token1] = ACTIONS(8861), + [aux_sym_do_statement_token1] = ACTIONS(8861), + [aux_sym_do_condition_token1] = ACTIONS(8861), + [aux_sym_with_statement_token1] = ACTIONS(8861), + [aux_sym_exit_statement_token1] = ACTIONS(8861), + [sym_end_statement] = ACTIONS(8863), + [aux_sym_on_goto_statement_token1] = ACTIONS(8861), + [aux_sym_on_goto_statement_token2] = ACTIONS(8861), + [aux_sym_on_error_statement_token2] = ACTIONS(8861), + [sym__ambiguous_redim_statement] = ACTIONS(8863), + [aux_sym_erase_statement_token1] = ACTIONS(8861), + [aux_sym_open_statement_token1] = ACTIONS(8861), + [aux_sym_file_mode_token2] = ACTIONS(8861), + [aux_sym_file_access_token2] = ACTIONS(8861), + [aux_sym_file_lock_token2] = ACTIONS(8861), + [aux_sym_print_statement_token1] = ACTIONS(8861), + [anon_sym_PLUS] = ACTIONS(8863), + [anon_sym_DASH] = ACTIONS(8861), + [anon_sym_QMARK] = ACTIONS(8863), + [aux_sym_close_statement_token1] = ACTIONS(8861), + [aux_sym_put_statement_token1] = ACTIONS(8861), + [aux_sym_unlock_statement_token1] = ACTIONS(8861), + [aux_sym_seek_statement_token1] = ACTIONS(8861), + [sym_reset_statement] = ACTIONS(8861), + [aux_sym_raise_event_statement_token1] = ACTIONS(8861), + [sym_stop_statement] = ACTIONS(8861), + [sym_beep_statement] = ACTIONS(8861), + [aux_sym_unload_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token2] = ACTIONS(8861), + [aux_sym_def_type_statement_token3] = ACTIONS(8861), + [aux_sym_def_type_statement_token4] = ACTIONS(8861), + [aux_sym_def_type_statement_token5] = ACTIONS(8861), + [aux_sym_def_type_statement_token6] = ACTIONS(8861), + [aux_sym_def_type_statement_token7] = ACTIONS(8861), + [aux_sym_def_type_statement_token8] = ACTIONS(8861), + [aux_sym_def_type_statement_token9] = ACTIONS(8861), + [aux_sym_def_type_statement_token10] = ACTIONS(8861), + [aux_sym_def_type_statement_token11] = ACTIONS(8861), + [aux_sym_def_type_statement_token12] = ACTIONS(8861), + [aux_sym_def_type_statement_token13] = ACTIONS(8861), + [aux_sym_def_type_statement_token14] = ACTIONS(8861), + [aux_sym_call_statement_token1] = ACTIONS(8861), + [sym__ambiguous_call_statement] = ACTIONS(8861), + [aux_sym_addressof_expression_token1] = ACTIONS(8861), + [aux_sym_type_of_expression_token1] = ACTIONS(8861), + [aux_sym_unary_expression_token1] = ACTIONS(8861), + [sym_string_literal] = ACTIONS(8863), + [sym_number_literal] = ACTIONS(8863), + [aux_sym_boolean_literal_token1] = ACTIONS(8861), + [aux_sym_boolean_literal_token2] = ACTIONS(8861), + [sym_nothing_literal] = ACTIONS(8861), + [sym_null_literal] = ACTIONS(8861), + [sym_empty_literal] = ACTIONS(8861), + [sym_date_literal] = ACTIONS(8863), + [anon_sym_POUND] = ACTIONS(8861), + }, + [STATE(4205)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_declaration_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_enum_declaration_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4593), + [aux_sym_declare_function_statement_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [aux_sym__property_get_header_token1] = ACTIONS(4593), + [aux_sym_event_declaration_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(4206)] = { + [sym_next_variable_list] = STATE(6197), + [sym__assignable_expression] = STATE(4950), + [sym__callable_expression] = STATE(4998), + [sym_call_expression] = STATE(4937), + [sym_member_expression] = STATE(5280), + [sym_qualified_member_expression] = STATE(5270), + [sym_implicit_member_expression] = STATE(5270), + [sym_identifier] = ACTIONS(9835), + [sym_newline] = ACTIONS(6822), + [anon_sym_COLON] = ACTIONS(6822), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6824), + [aux_sym_frm_property_statement_token1] = ACTIONS(9837), + [anon_sym_DOT] = ACTIONS(9839), + [anon_sym_BANG] = ACTIONS(9841), + [aux_sym__attribute_identifier_token1] = ACTIONS(6824), + [aux_sym_option_statement_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6824), + [aux_sym_preprocessor_const_token1] = ACTIONS(6824), + [sym_static_modifier] = ACTIONS(6824), + [sym__dim_keyword] = ACTIONS(6824), + [sym__redim_keyword] = ACTIONS(6824), + [aux_sym_get_accessor_token1] = ACTIONS(6824), + [aux_sym_set_accessor_token1] = ACTIONS(6824), + [aux_sym_const_declaration_token1] = ACTIONS(6824), + [anon_sym_LPAREN] = ACTIONS(6822), + [aux_sym_as_type_clause_token2] = ACTIONS(6824), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9843), + [aux_sym_visibility_token1] = ACTIONS(6824), + [aux_sym_visibility_token2] = ACTIONS(6824), + [aux_sym_elseif_fragment_token1] = ACTIONS(6824), + [aux_sym_else_fragment_token1] = ACTIONS(6824), + [aux_sym_select_statement_token1] = ACTIONS(6824), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6824), + [aux_sym__for_header_token1] = ACTIONS(6824), + [aux_sym_do_statement_token1] = ACTIONS(6824), + [aux_sym_do_statement_token2] = ACTIONS(6824), + [aux_sym_do_condition_token1] = ACTIONS(6824), + [aux_sym_with_statement_token1] = ACTIONS(6824), + [aux_sym_exit_statement_token1] = ACTIONS(6824), + [sym_end_statement] = ACTIONS(6822), + [aux_sym_on_goto_statement_token1] = ACTIONS(6824), + [aux_sym_on_goto_statement_token2] = ACTIONS(6824), + [aux_sym_on_error_statement_token2] = ACTIONS(6824), + [sym__ambiguous_redim_statement] = ACTIONS(6822), + [aux_sym_erase_statement_token1] = ACTIONS(6824), + [aux_sym_open_statement_token1] = ACTIONS(6824), + [aux_sym_file_mode_token2] = ACTIONS(6824), + [aux_sym_file_access_token2] = ACTIONS(6824), + [aux_sym_file_lock_token2] = ACTIONS(6824), + [aux_sym_print_statement_token1] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6822), + [aux_sym_close_statement_token1] = ACTIONS(6824), + [aux_sym_put_statement_token1] = ACTIONS(6824), + [aux_sym_unlock_statement_token1] = ACTIONS(6824), + [aux_sym_seek_statement_token1] = ACTIONS(6824), + [sym_reset_statement] = ACTIONS(6824), + [aux_sym_raise_event_statement_token1] = ACTIONS(6824), + [sym_stop_statement] = ACTIONS(6824), + [sym_beep_statement] = ACTIONS(6824), + [aux_sym_unload_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token2] = ACTIONS(6824), + [aux_sym_def_type_statement_token3] = ACTIONS(6824), + [aux_sym_def_type_statement_token4] = ACTIONS(6824), + [aux_sym_def_type_statement_token5] = ACTIONS(6824), + [aux_sym_def_type_statement_token6] = ACTIONS(6824), + [aux_sym_def_type_statement_token7] = ACTIONS(6824), + [aux_sym_def_type_statement_token8] = ACTIONS(6824), + [aux_sym_def_type_statement_token9] = ACTIONS(6824), + [aux_sym_def_type_statement_token10] = ACTIONS(6824), + [aux_sym_def_type_statement_token11] = ACTIONS(6824), + [aux_sym_def_type_statement_token12] = ACTIONS(6824), + [aux_sym_def_type_statement_token13] = ACTIONS(6824), + [aux_sym_def_type_statement_token14] = ACTIONS(6824), + [aux_sym_call_statement_token1] = ACTIONS(6824), + [sym__ambiguous_call_statement] = ACTIONS(6824), + [aux_sym_addressof_expression_token1] = ACTIONS(6824), + [aux_sym_type_of_expression_token1] = ACTIONS(6824), + [aux_sym_unary_expression_token1] = ACTIONS(6824), + [sym_string_literal] = ACTIONS(6822), + [sym_number_literal] = ACTIONS(6822), + [aux_sym_boolean_literal_token1] = ACTIONS(6824), + [aux_sym_boolean_literal_token2] = ACTIONS(6824), + [sym_nothing_literal] = ACTIONS(6824), + [sym_null_literal] = ACTIONS(6824), + [sym_empty_literal] = ACTIONS(6824), + [sym_date_literal] = ACTIONS(6822), + [anon_sym_POUND] = ACTIONS(6824), + }, + [STATE(4207)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_declaration_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_enum_declaration_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4597), + [aux_sym_declare_function_statement_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [aux_sym__property_get_header_token1] = ACTIONS(4597), + [aux_sym_event_declaration_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(4208)] = { + [sym_next_variable_list] = STATE(6198), + [sym__assignable_expression] = STATE(4950), + [sym__callable_expression] = STATE(4998), + [sym_call_expression] = STATE(4937), + [sym_member_expression] = STATE(5280), + [sym_qualified_member_expression] = STATE(5270), + [sym_implicit_member_expression] = STATE(5270), + [sym_identifier] = ACTIONS(9835), + [sym_newline] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(6856), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6858), + [aux_sym_frm_property_statement_token1] = ACTIONS(9837), + [anon_sym_DOT] = ACTIONS(9839), + [anon_sym_BANG] = ACTIONS(9841), + [aux_sym__attribute_identifier_token1] = ACTIONS(6858), + [aux_sym_option_statement_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6858), + [aux_sym_preprocessor_const_token1] = ACTIONS(6858), + [sym_static_modifier] = ACTIONS(6858), + [sym__dim_keyword] = ACTIONS(6858), + [sym__redim_keyword] = ACTIONS(6858), + [aux_sym_get_accessor_token1] = ACTIONS(6858), + [aux_sym_set_accessor_token1] = ACTIONS(6858), + [aux_sym_const_declaration_token1] = ACTIONS(6858), + [anon_sym_LPAREN] = ACTIONS(6856), + [aux_sym_as_type_clause_token2] = ACTIONS(6858), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9843), + [aux_sym_visibility_token1] = ACTIONS(6858), + [aux_sym_visibility_token2] = ACTIONS(6858), + [aux_sym_elseif_fragment_token1] = ACTIONS(6858), + [aux_sym_else_fragment_token1] = ACTIONS(6858), + [aux_sym_select_statement_token1] = ACTIONS(6858), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6858), + [aux_sym__for_header_token1] = ACTIONS(6858), + [aux_sym_do_statement_token1] = ACTIONS(6858), + [aux_sym_do_statement_token2] = ACTIONS(6858), + [aux_sym_do_condition_token1] = ACTIONS(6858), + [aux_sym_with_statement_token1] = ACTIONS(6858), + [aux_sym_exit_statement_token1] = ACTIONS(6858), + [sym_end_statement] = ACTIONS(6856), + [aux_sym_on_goto_statement_token1] = ACTIONS(6858), + [aux_sym_on_goto_statement_token2] = ACTIONS(6858), + [aux_sym_on_error_statement_token2] = ACTIONS(6858), + [sym__ambiguous_redim_statement] = ACTIONS(6856), + [aux_sym_erase_statement_token1] = ACTIONS(6858), + [aux_sym_open_statement_token1] = ACTIONS(6858), + [aux_sym_file_mode_token2] = ACTIONS(6858), + [aux_sym_file_access_token2] = ACTIONS(6858), + [aux_sym_file_lock_token2] = ACTIONS(6858), + [aux_sym_print_statement_token1] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6856), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_QMARK] = ACTIONS(6856), + [aux_sym_close_statement_token1] = ACTIONS(6858), + [aux_sym_put_statement_token1] = ACTIONS(6858), + [aux_sym_unlock_statement_token1] = ACTIONS(6858), + [aux_sym_seek_statement_token1] = ACTIONS(6858), + [sym_reset_statement] = ACTIONS(6858), + [aux_sym_raise_event_statement_token1] = ACTIONS(6858), + [sym_stop_statement] = ACTIONS(6858), + [sym_beep_statement] = ACTIONS(6858), + [aux_sym_unload_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token2] = ACTIONS(6858), + [aux_sym_def_type_statement_token3] = ACTIONS(6858), + [aux_sym_def_type_statement_token4] = ACTIONS(6858), + [aux_sym_def_type_statement_token5] = ACTIONS(6858), + [aux_sym_def_type_statement_token6] = ACTIONS(6858), + [aux_sym_def_type_statement_token7] = ACTIONS(6858), + [aux_sym_def_type_statement_token8] = ACTIONS(6858), + [aux_sym_def_type_statement_token9] = ACTIONS(6858), + [aux_sym_def_type_statement_token10] = ACTIONS(6858), + [aux_sym_def_type_statement_token11] = ACTIONS(6858), + [aux_sym_def_type_statement_token12] = ACTIONS(6858), + [aux_sym_def_type_statement_token13] = ACTIONS(6858), + [aux_sym_def_type_statement_token14] = ACTIONS(6858), + [aux_sym_call_statement_token1] = ACTIONS(6858), + [sym__ambiguous_call_statement] = ACTIONS(6858), + [aux_sym_addressof_expression_token1] = ACTIONS(6858), + [aux_sym_type_of_expression_token1] = ACTIONS(6858), + [aux_sym_unary_expression_token1] = ACTIONS(6858), + [sym_string_literal] = ACTIONS(6856), + [sym_number_literal] = ACTIONS(6856), + [aux_sym_boolean_literal_token1] = ACTIONS(6858), + [aux_sym_boolean_literal_token2] = ACTIONS(6858), + [sym_nothing_literal] = ACTIONS(6858), + [sym_null_literal] = ACTIONS(6858), + [sym_empty_literal] = ACTIONS(6858), + [sym_date_literal] = ACTIONS(6856), + [anon_sym_POUND] = ACTIONS(6858), + }, + [STATE(4209)] = { + [sym_identifier] = ACTIONS(8903), + [sym_newline] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8903), + [aux_sym_frm_property_statement_token1] = ACTIONS(8903), + [anon_sym_DOT] = ACTIONS(8903), + [anon_sym_BANG] = ACTIONS(8905), + [aux_sym__attribute_identifier_token1] = ACTIONS(8903), + [aux_sym_option_statement_token3] = ACTIONS(8903), + [aux_sym_type_declaration_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8903), + [aux_sym_enum_declaration_token1] = ACTIONS(8903), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8903), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8903), + [aux_sym_declare_function_statement_token1] = ACTIONS(8903), + [aux_sym_preprocessor_const_token1] = ACTIONS(8903), + [aux_sym__property_get_header_token1] = ACTIONS(8903), + [aux_sym_event_declaration_token1] = ACTIONS(8903), + [sym_static_modifier] = ACTIONS(8903), + [sym__dim_keyword] = ACTIONS(8903), + [sym__redim_keyword] = ACTIONS(8903), + [aux_sym_get_accessor_token1] = ACTIONS(8903), + [aux_sym_set_accessor_token1] = ACTIONS(8903), + [aux_sym_const_declaration_token1] = ACTIONS(8903), + [anon_sym_LPAREN] = ACTIONS(8905), + [aux_sym_as_type_clause_token2] = ACTIONS(8903), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8903), + [aux_sym_visibility_token1] = ACTIONS(8903), + [aux_sym_visibility_token2] = ACTIONS(8903), + [aux_sym_elseif_fragment_token1] = ACTIONS(8903), + [aux_sym_else_fragment_token1] = ACTIONS(8903), + [aux_sym_select_statement_token1] = ACTIONS(8903), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8903), + [aux_sym__for_header_token1] = ACTIONS(8903), + [aux_sym_do_statement_token1] = ACTIONS(8903), + [aux_sym_do_condition_token1] = ACTIONS(8903), + [aux_sym_with_statement_token1] = ACTIONS(8903), + [aux_sym_exit_statement_token1] = ACTIONS(8903), + [sym_end_statement] = ACTIONS(8905), + [aux_sym_on_goto_statement_token1] = ACTIONS(8903), + [aux_sym_on_goto_statement_token2] = ACTIONS(8903), + [aux_sym_on_error_statement_token2] = ACTIONS(8903), + [sym__ambiguous_redim_statement] = ACTIONS(8905), + [aux_sym_erase_statement_token1] = ACTIONS(8903), + [aux_sym_open_statement_token1] = ACTIONS(8903), + [aux_sym_file_mode_token2] = ACTIONS(8903), + [aux_sym_file_access_token2] = ACTIONS(8903), + [aux_sym_file_lock_token2] = ACTIONS(8903), + [aux_sym_print_statement_token1] = ACTIONS(8903), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_DASH] = ACTIONS(8903), + [anon_sym_QMARK] = ACTIONS(8905), + [aux_sym_close_statement_token1] = ACTIONS(8903), + [aux_sym_put_statement_token1] = ACTIONS(8903), + [aux_sym_unlock_statement_token1] = ACTIONS(8903), + [aux_sym_seek_statement_token1] = ACTIONS(8903), + [sym_reset_statement] = ACTIONS(8903), + [aux_sym_raise_event_statement_token1] = ACTIONS(8903), + [sym_stop_statement] = ACTIONS(8903), + [sym_beep_statement] = ACTIONS(8903), + [aux_sym_unload_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token2] = ACTIONS(8903), + [aux_sym_def_type_statement_token3] = ACTIONS(8903), + [aux_sym_def_type_statement_token4] = ACTIONS(8903), + [aux_sym_def_type_statement_token5] = ACTIONS(8903), + [aux_sym_def_type_statement_token6] = ACTIONS(8903), + [aux_sym_def_type_statement_token7] = ACTIONS(8903), + [aux_sym_def_type_statement_token8] = ACTIONS(8903), + [aux_sym_def_type_statement_token9] = ACTIONS(8903), + [aux_sym_def_type_statement_token10] = ACTIONS(8903), + [aux_sym_def_type_statement_token11] = ACTIONS(8903), + [aux_sym_def_type_statement_token12] = ACTIONS(8903), + [aux_sym_def_type_statement_token13] = ACTIONS(8903), + [aux_sym_def_type_statement_token14] = ACTIONS(8903), + [aux_sym_call_statement_token1] = ACTIONS(8903), + [sym__ambiguous_call_statement] = ACTIONS(8903), + [aux_sym_addressof_expression_token1] = ACTIONS(8903), + [aux_sym_type_of_expression_token1] = ACTIONS(8903), + [aux_sym_unary_expression_token1] = ACTIONS(8903), + [sym_string_literal] = ACTIONS(8905), + [sym_number_literal] = ACTIONS(8905), + [aux_sym_boolean_literal_token1] = ACTIONS(8903), + [aux_sym_boolean_literal_token2] = ACTIONS(8903), + [sym_nothing_literal] = ACTIONS(8903), + [sym_null_literal] = ACTIONS(8903), + [sym_empty_literal] = ACTIONS(8903), + [sym_date_literal] = ACTIONS(8905), + [anon_sym_POUND] = ACTIONS(8903), + }, + [STATE(4210)] = { + [sym_identifier] = ACTIONS(8911), + [sym_newline] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8911), + [aux_sym_frm_property_statement_token1] = ACTIONS(8911), + [anon_sym_DOT] = ACTIONS(8911), + [anon_sym_BANG] = ACTIONS(8913), + [aux_sym__attribute_identifier_token1] = ACTIONS(8911), + [aux_sym_option_statement_token3] = ACTIONS(8911), + [aux_sym_type_declaration_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8911), + [aux_sym_enum_declaration_token1] = ACTIONS(8911), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8911), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8911), + [aux_sym_declare_function_statement_token1] = ACTIONS(8911), + [aux_sym_preprocessor_const_token1] = ACTIONS(8911), + [aux_sym__property_get_header_token1] = ACTIONS(8911), + [aux_sym_event_declaration_token1] = ACTIONS(8911), + [sym_static_modifier] = ACTIONS(8911), + [sym__dim_keyword] = ACTIONS(8911), + [sym__redim_keyword] = ACTIONS(8911), + [aux_sym_get_accessor_token1] = ACTIONS(8911), + [aux_sym_set_accessor_token1] = ACTIONS(8911), + [aux_sym_const_declaration_token1] = ACTIONS(8911), + [anon_sym_LPAREN] = ACTIONS(8913), + [aux_sym_as_type_clause_token2] = ACTIONS(8911), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8911), + [aux_sym_visibility_token1] = ACTIONS(8911), + [aux_sym_visibility_token2] = ACTIONS(8911), + [aux_sym_elseif_fragment_token1] = ACTIONS(8911), + [aux_sym_else_fragment_token1] = ACTIONS(8911), + [aux_sym_select_statement_token1] = ACTIONS(8911), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8911), + [aux_sym__for_header_token1] = ACTIONS(8911), + [aux_sym_do_statement_token1] = ACTIONS(8911), + [aux_sym_do_condition_token1] = ACTIONS(8911), + [aux_sym_with_statement_token1] = ACTIONS(8911), + [aux_sym_exit_statement_token1] = ACTIONS(8911), + [sym_end_statement] = ACTIONS(8913), + [aux_sym_on_goto_statement_token1] = ACTIONS(8911), + [aux_sym_on_goto_statement_token2] = ACTIONS(8911), + [aux_sym_on_error_statement_token2] = ACTIONS(8911), + [sym__ambiguous_redim_statement] = ACTIONS(8913), + [aux_sym_erase_statement_token1] = ACTIONS(8911), + [aux_sym_open_statement_token1] = ACTIONS(8911), + [aux_sym_file_mode_token2] = ACTIONS(8911), + [aux_sym_file_access_token2] = ACTIONS(8911), + [aux_sym_file_lock_token2] = ACTIONS(8911), + [aux_sym_print_statement_token1] = ACTIONS(8911), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_DASH] = ACTIONS(8911), + [anon_sym_QMARK] = ACTIONS(8913), + [aux_sym_close_statement_token1] = ACTIONS(8911), + [aux_sym_put_statement_token1] = ACTIONS(8911), + [aux_sym_unlock_statement_token1] = ACTIONS(8911), + [aux_sym_seek_statement_token1] = ACTIONS(8911), + [sym_reset_statement] = ACTIONS(8911), + [aux_sym_raise_event_statement_token1] = ACTIONS(8911), + [sym_stop_statement] = ACTIONS(8911), + [sym_beep_statement] = ACTIONS(8911), + [aux_sym_unload_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token2] = ACTIONS(8911), + [aux_sym_def_type_statement_token3] = ACTIONS(8911), + [aux_sym_def_type_statement_token4] = ACTIONS(8911), + [aux_sym_def_type_statement_token5] = ACTIONS(8911), + [aux_sym_def_type_statement_token6] = ACTIONS(8911), + [aux_sym_def_type_statement_token7] = ACTIONS(8911), + [aux_sym_def_type_statement_token8] = ACTIONS(8911), + [aux_sym_def_type_statement_token9] = ACTIONS(8911), + [aux_sym_def_type_statement_token10] = ACTIONS(8911), + [aux_sym_def_type_statement_token11] = ACTIONS(8911), + [aux_sym_def_type_statement_token12] = ACTIONS(8911), + [aux_sym_def_type_statement_token13] = ACTIONS(8911), + [aux_sym_def_type_statement_token14] = ACTIONS(8911), + [aux_sym_call_statement_token1] = ACTIONS(8911), + [sym__ambiguous_call_statement] = ACTIONS(8911), + [aux_sym_addressof_expression_token1] = ACTIONS(8911), + [aux_sym_type_of_expression_token1] = ACTIONS(8911), + [aux_sym_unary_expression_token1] = ACTIONS(8911), + [sym_string_literal] = ACTIONS(8913), + [sym_number_literal] = ACTIONS(8913), + [aux_sym_boolean_literal_token1] = ACTIONS(8911), + [aux_sym_boolean_literal_token2] = ACTIONS(8911), + [sym_nothing_literal] = ACTIONS(8911), + [sym_null_literal] = ACTIONS(8911), + [sym_empty_literal] = ACTIONS(8911), + [sym_date_literal] = ACTIONS(8913), + [anon_sym_POUND] = ACTIONS(8911), + }, + [STATE(4211)] = { + [sym_identifier] = ACTIONS(8652), + [sym_newline] = ACTIONS(8654), + [anon_sym_COLON] = ACTIONS(8654), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8652), + [aux_sym_frm_property_statement_token1] = ACTIONS(8652), + [anon_sym_DOT] = ACTIONS(8652), + [anon_sym_BANG] = ACTIONS(8654), + [aux_sym__attribute_identifier_token1] = ACTIONS(8652), + [aux_sym_option_statement_token3] = ACTIONS(8652), + [aux_sym_type_declaration_token1] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8652), + [aux_sym_enum_declaration_token1] = ACTIONS(8652), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8652), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8652), + [aux_sym_declare_function_statement_token1] = ACTIONS(8652), + [aux_sym_preprocessor_const_token1] = ACTIONS(8652), + [aux_sym__property_get_header_token1] = ACTIONS(8652), + [aux_sym_event_declaration_token1] = ACTIONS(8652), + [sym_static_modifier] = ACTIONS(8652), + [sym__dim_keyword] = ACTIONS(8652), + [sym__redim_keyword] = ACTIONS(8652), + [aux_sym_get_accessor_token1] = ACTIONS(8652), + [aux_sym_set_accessor_token1] = ACTIONS(8652), + [anon_sym_COMMA] = ACTIONS(9845), + [aux_sym_const_declaration_token1] = ACTIONS(8652), + [anon_sym_LPAREN] = ACTIONS(8654), + [aux_sym_as_type_clause_token2] = ACTIONS(8652), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8652), + [aux_sym_visibility_token1] = ACTIONS(8652), + [aux_sym_visibility_token2] = ACTIONS(8652), + [aux_sym_elseif_fragment_token1] = ACTIONS(8652), + [aux_sym_else_fragment_token1] = ACTIONS(8652), + [aux_sym_select_statement_token1] = ACTIONS(8652), + [aux_sym__for_header_token1] = ACTIONS(8652), + [aux_sym_do_statement_token1] = ACTIONS(8652), + [aux_sym_do_condition_token1] = ACTIONS(8652), + [aux_sym_with_statement_token1] = ACTIONS(8652), + [aux_sym_exit_statement_token1] = ACTIONS(8652), + [sym_end_statement] = ACTIONS(8654), + [aux_sym_on_goto_statement_token1] = ACTIONS(8652), + [aux_sym_on_goto_statement_token2] = ACTIONS(8652), + [aux_sym_on_error_statement_token2] = ACTIONS(8652), + [sym__ambiguous_redim_statement] = ACTIONS(8654), + [aux_sym_erase_statement_token1] = ACTIONS(8652), + [aux_sym_open_statement_token1] = ACTIONS(8652), + [aux_sym_file_mode_token2] = ACTIONS(8652), + [aux_sym_file_access_token2] = ACTIONS(8652), + [aux_sym_file_lock_token2] = ACTIONS(8652), + [aux_sym_print_statement_token1] = ACTIONS(8652), + [anon_sym_PLUS] = ACTIONS(8654), + [anon_sym_DASH] = ACTIONS(8652), + [anon_sym_QMARK] = ACTIONS(8654), + [aux_sym_close_statement_token1] = ACTIONS(8652), + [aux_sym_put_statement_token1] = ACTIONS(8652), + [aux_sym_unlock_statement_token1] = ACTIONS(8652), + [aux_sym_seek_statement_token1] = ACTIONS(8652), + [sym_reset_statement] = ACTIONS(8652), + [aux_sym_raise_event_statement_token1] = ACTIONS(8652), + [sym_stop_statement] = ACTIONS(8652), + [sym_beep_statement] = ACTIONS(8652), + [aux_sym_unload_statement_token1] = ACTIONS(8652), + [aux_sym_def_type_statement_token1] = ACTIONS(8652), + [aux_sym_def_type_statement_token2] = ACTIONS(8652), + [aux_sym_def_type_statement_token3] = ACTIONS(8652), + [aux_sym_def_type_statement_token4] = ACTIONS(8652), + [aux_sym_def_type_statement_token5] = ACTIONS(8652), + [aux_sym_def_type_statement_token6] = ACTIONS(8652), + [aux_sym_def_type_statement_token7] = ACTIONS(8652), + [aux_sym_def_type_statement_token8] = ACTIONS(8652), + [aux_sym_def_type_statement_token9] = ACTIONS(8652), + [aux_sym_def_type_statement_token10] = ACTIONS(8652), + [aux_sym_def_type_statement_token11] = ACTIONS(8652), + [aux_sym_def_type_statement_token12] = ACTIONS(8652), + [aux_sym_def_type_statement_token13] = ACTIONS(8652), + [aux_sym_def_type_statement_token14] = ACTIONS(8652), + [aux_sym_call_statement_token1] = ACTIONS(8652), + [sym__ambiguous_call_statement] = ACTIONS(8652), + [aux_sym_addressof_expression_token1] = ACTIONS(8652), + [aux_sym_type_of_expression_token1] = ACTIONS(8652), + [aux_sym_unary_expression_token1] = ACTIONS(8652), + [sym_string_literal] = ACTIONS(8654), + [sym_number_literal] = ACTIONS(8654), + [aux_sym_boolean_literal_token1] = ACTIONS(8652), + [aux_sym_boolean_literal_token2] = ACTIONS(8652), + [sym_nothing_literal] = ACTIONS(8652), + [sym_null_literal] = ACTIONS(8652), + [sym_empty_literal] = ACTIONS(8652), + [sym_date_literal] = ACTIONS(8654), + [anon_sym_POUND] = ACTIONS(8652), + }, + [STATE(4212)] = { + [sym_identifier] = ACTIONS(8717), + [sym_newline] = ACTIONS(8719), + [anon_sym_COLON] = ACTIONS(8719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8717), + [aux_sym_frm_property_statement_token1] = ACTIONS(8717), + [anon_sym_DOT] = ACTIONS(8717), + [anon_sym_BANG] = ACTIONS(8719), + [aux_sym__attribute_identifier_token1] = ACTIONS(8717), + [aux_sym_option_statement_token3] = ACTIONS(8717), + [aux_sym_type_declaration_token1] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8717), + [aux_sym_enum_declaration_token1] = ACTIONS(8717), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8717), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8717), + [aux_sym_declare_function_statement_token1] = ACTIONS(8717), + [aux_sym_preprocessor_const_token1] = ACTIONS(8717), + [aux_sym__property_get_header_token1] = ACTIONS(8717), + [aux_sym_event_declaration_token1] = ACTIONS(8717), + [sym_static_modifier] = ACTIONS(8717), + [sym__dim_keyword] = ACTIONS(8717), + [sym__redim_keyword] = ACTIONS(8717), + [aux_sym_get_accessor_token1] = ACTIONS(8717), + [aux_sym_set_accessor_token1] = ACTIONS(8717), + [anon_sym_COMMA] = ACTIONS(9847), + [aux_sym_const_declaration_token1] = ACTIONS(8717), + [anon_sym_LPAREN] = ACTIONS(8719), + [aux_sym_as_type_clause_token2] = ACTIONS(8717), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8717), + [aux_sym_visibility_token1] = ACTIONS(8717), + [aux_sym_visibility_token2] = ACTIONS(8717), + [aux_sym_elseif_fragment_token1] = ACTIONS(8717), + [aux_sym_else_fragment_token1] = ACTIONS(8717), + [aux_sym_select_statement_token1] = ACTIONS(8717), + [aux_sym__for_header_token1] = ACTIONS(8717), + [aux_sym_do_statement_token1] = ACTIONS(8717), + [aux_sym_do_condition_token1] = ACTIONS(8717), + [aux_sym_with_statement_token1] = ACTIONS(8717), + [aux_sym_exit_statement_token1] = ACTIONS(8717), + [sym_end_statement] = ACTIONS(8719), + [aux_sym_on_goto_statement_token1] = ACTIONS(8717), + [aux_sym_on_goto_statement_token2] = ACTIONS(8717), + [aux_sym_on_error_statement_token2] = ACTIONS(8717), + [sym__ambiguous_redim_statement] = ACTIONS(8719), + [aux_sym_erase_statement_token1] = ACTIONS(8717), + [aux_sym_open_statement_token1] = ACTIONS(8717), + [aux_sym_file_mode_token2] = ACTIONS(8717), + [aux_sym_file_access_token2] = ACTIONS(8717), + [aux_sym_file_lock_token2] = ACTIONS(8717), + [aux_sym_print_statement_token1] = ACTIONS(8717), + [anon_sym_PLUS] = ACTIONS(8719), + [anon_sym_DASH] = ACTIONS(8717), + [anon_sym_QMARK] = ACTIONS(8719), + [aux_sym_close_statement_token1] = ACTIONS(8717), + [aux_sym_put_statement_token1] = ACTIONS(8717), + [aux_sym_unlock_statement_token1] = ACTIONS(8717), + [aux_sym_seek_statement_token1] = ACTIONS(8717), + [sym_reset_statement] = ACTIONS(8717), + [aux_sym_raise_event_statement_token1] = ACTIONS(8717), + [sym_stop_statement] = ACTIONS(8717), + [sym_beep_statement] = ACTIONS(8717), + [aux_sym_unload_statement_token1] = ACTIONS(8717), + [aux_sym_def_type_statement_token1] = ACTIONS(8717), + [aux_sym_def_type_statement_token2] = ACTIONS(8717), + [aux_sym_def_type_statement_token3] = ACTIONS(8717), + [aux_sym_def_type_statement_token4] = ACTIONS(8717), + [aux_sym_def_type_statement_token5] = ACTIONS(8717), + [aux_sym_def_type_statement_token6] = ACTIONS(8717), + [aux_sym_def_type_statement_token7] = ACTIONS(8717), + [aux_sym_def_type_statement_token8] = ACTIONS(8717), + [aux_sym_def_type_statement_token9] = ACTIONS(8717), + [aux_sym_def_type_statement_token10] = ACTIONS(8717), + [aux_sym_def_type_statement_token11] = ACTIONS(8717), + [aux_sym_def_type_statement_token12] = ACTIONS(8717), + [aux_sym_def_type_statement_token13] = ACTIONS(8717), + [aux_sym_def_type_statement_token14] = ACTIONS(8717), + [aux_sym_call_statement_token1] = ACTIONS(8717), + [sym__ambiguous_call_statement] = ACTIONS(8717), + [aux_sym_addressof_expression_token1] = ACTIONS(8717), + [aux_sym_type_of_expression_token1] = ACTIONS(8717), + [aux_sym_unary_expression_token1] = ACTIONS(8717), + [sym_string_literal] = ACTIONS(8719), + [sym_number_literal] = ACTIONS(8719), + [aux_sym_boolean_literal_token1] = ACTIONS(8717), + [aux_sym_boolean_literal_token2] = ACTIONS(8717), + [sym_nothing_literal] = ACTIONS(8717), + [sym_null_literal] = ACTIONS(8717), + [sym_empty_literal] = ACTIONS(8717), + [sym_date_literal] = ACTIONS(8719), + [anon_sym_POUND] = ACTIONS(8717), + }, + [STATE(4213)] = { + [sym_argument_list] = STATE(4356), + [sym_identifier] = ACTIONS(8843), + [sym_newline] = ACTIONS(8845), + [anon_sym_COLON] = ACTIONS(8845), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8843), + [aux_sym_frm_property_statement_token1] = ACTIONS(8843), + [anon_sym_DOT] = ACTIONS(8843), + [anon_sym_BANG] = ACTIONS(8845), + [aux_sym__attribute_identifier_token1] = ACTIONS(8843), + [aux_sym_option_statement_token3] = ACTIONS(8843), + [aux_sym_type_declaration_token1] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8843), + [aux_sym_enum_declaration_token1] = ACTIONS(8843), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8843), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8843), + [aux_sym_declare_function_statement_token1] = ACTIONS(8843), + [aux_sym_preprocessor_const_token1] = ACTIONS(8843), + [aux_sym__property_get_header_token1] = ACTIONS(8843), + [aux_sym_event_declaration_token1] = ACTIONS(8843), + [sym_static_modifier] = ACTIONS(8843), + [sym__dim_keyword] = ACTIONS(8843), + [sym__redim_keyword] = ACTIONS(8843), + [aux_sym_get_accessor_token1] = ACTIONS(8843), + [aux_sym_set_accessor_token1] = ACTIONS(8843), + [aux_sym_const_declaration_token1] = ACTIONS(8843), + [anon_sym_LPAREN] = ACTIONS(9478), + [aux_sym_as_type_clause_token2] = ACTIONS(8843), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8843), + [aux_sym_visibility_token1] = ACTIONS(8843), + [aux_sym_visibility_token2] = ACTIONS(8843), + [aux_sym_elseif_fragment_token1] = ACTIONS(8843), + [aux_sym_else_fragment_token1] = ACTIONS(8843), + [aux_sym_select_statement_token1] = ACTIONS(8843), + [aux_sym__for_header_token1] = ACTIONS(8843), + [aux_sym_do_statement_token1] = ACTIONS(8843), + [aux_sym_do_condition_token1] = ACTIONS(8843), + [aux_sym_with_statement_token1] = ACTIONS(8843), + [aux_sym_exit_statement_token1] = ACTIONS(8843), + [sym_end_statement] = ACTIONS(8845), + [aux_sym_on_goto_statement_token1] = ACTIONS(8843), + [aux_sym_on_goto_statement_token2] = ACTIONS(8843), + [aux_sym_on_error_statement_token2] = ACTIONS(8843), + [sym__ambiguous_redim_statement] = ACTIONS(8845), + [aux_sym_erase_statement_token1] = ACTIONS(8843), + [aux_sym_open_statement_token1] = ACTIONS(8843), + [aux_sym_file_mode_token2] = ACTIONS(8843), + [aux_sym_file_access_token2] = ACTIONS(8843), + [aux_sym_file_lock_token2] = ACTIONS(8843), + [aux_sym_print_statement_token1] = ACTIONS(8843), + [anon_sym_PLUS] = ACTIONS(8845), + [anon_sym_DASH] = ACTIONS(8843), + [anon_sym_QMARK] = ACTIONS(8845), + [aux_sym_close_statement_token1] = ACTIONS(8843), + [aux_sym_put_statement_token1] = ACTIONS(8843), + [aux_sym_unlock_statement_token1] = ACTIONS(8843), + [aux_sym_seek_statement_token1] = ACTIONS(8843), + [sym_reset_statement] = ACTIONS(8843), + [aux_sym_raise_event_statement_token1] = ACTIONS(8843), + [sym_stop_statement] = ACTIONS(8843), + [sym_beep_statement] = ACTIONS(8843), + [aux_sym_unload_statement_token1] = ACTIONS(8843), + [aux_sym_def_type_statement_token1] = ACTIONS(8843), + [aux_sym_def_type_statement_token2] = ACTIONS(8843), + [aux_sym_def_type_statement_token3] = ACTIONS(8843), + [aux_sym_def_type_statement_token4] = ACTIONS(8843), + [aux_sym_def_type_statement_token5] = ACTIONS(8843), + [aux_sym_def_type_statement_token6] = ACTIONS(8843), + [aux_sym_def_type_statement_token7] = ACTIONS(8843), + [aux_sym_def_type_statement_token8] = ACTIONS(8843), + [aux_sym_def_type_statement_token9] = ACTIONS(8843), + [aux_sym_def_type_statement_token10] = ACTIONS(8843), + [aux_sym_def_type_statement_token11] = ACTIONS(8843), + [aux_sym_def_type_statement_token12] = ACTIONS(8843), + [aux_sym_def_type_statement_token13] = ACTIONS(8843), + [aux_sym_def_type_statement_token14] = ACTIONS(8843), + [aux_sym_call_statement_token1] = ACTIONS(8843), + [sym__ambiguous_call_statement] = ACTIONS(8843), + [aux_sym_addressof_expression_token1] = ACTIONS(8843), + [aux_sym_type_of_expression_token1] = ACTIONS(8843), + [aux_sym_unary_expression_token1] = ACTIONS(8843), + [sym_string_literal] = ACTIONS(8845), + [sym_number_literal] = ACTIONS(8845), + [aux_sym_boolean_literal_token1] = ACTIONS(8843), + [aux_sym_boolean_literal_token2] = ACTIONS(8843), + [sym_nothing_literal] = ACTIONS(8843), + [sym_null_literal] = ACTIONS(8843), + [sym_empty_literal] = ACTIONS(8843), + [sym_date_literal] = ACTIONS(8845), + [anon_sym_POUND] = ACTIONS(8843), + }, + [STATE(4214)] = { + [sym_argument_list] = STATE(4357), + [sym_identifier] = ACTIONS(8899), + [sym_newline] = ACTIONS(8901), + [anon_sym_COLON] = ACTIONS(8901), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8899), + [aux_sym_frm_property_statement_token1] = ACTIONS(8899), + [anon_sym_DOT] = ACTIONS(9798), + [anon_sym_BANG] = ACTIONS(9800), + [aux_sym__attribute_identifier_token1] = ACTIONS(8899), + [aux_sym_option_statement_token3] = ACTIONS(8899), + [aux_sym_type_declaration_token1] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8899), + [aux_sym_enum_declaration_token1] = ACTIONS(8899), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8899), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8899), + [aux_sym_declare_function_statement_token1] = ACTIONS(8899), + [aux_sym_preprocessor_const_token1] = ACTIONS(8899), + [aux_sym__property_get_header_token1] = ACTIONS(8899), + [aux_sym_event_declaration_token1] = ACTIONS(8899), + [sym_static_modifier] = ACTIONS(8899), + [sym__dim_keyword] = ACTIONS(8899), + [sym__redim_keyword] = ACTIONS(8899), + [aux_sym_get_accessor_token1] = ACTIONS(8899), + [aux_sym_set_accessor_token1] = ACTIONS(8899), + [aux_sym_const_declaration_token1] = ACTIONS(8899), + [anon_sym_LPAREN] = ACTIONS(9478), + [aux_sym_as_type_clause_token2] = ACTIONS(8899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8899), + [aux_sym_visibility_token1] = ACTIONS(8899), + [aux_sym_visibility_token2] = ACTIONS(8899), + [aux_sym_elseif_fragment_token1] = ACTIONS(8899), + [aux_sym_else_fragment_token1] = ACTIONS(8899), + [aux_sym_select_statement_token1] = ACTIONS(8899), + [aux_sym__for_header_token1] = ACTIONS(8899), + [aux_sym_do_statement_token1] = ACTIONS(8899), + [aux_sym_do_condition_token1] = ACTIONS(8899), + [aux_sym_with_statement_token1] = ACTIONS(8899), + [aux_sym_exit_statement_token1] = ACTIONS(8899), + [sym_end_statement] = ACTIONS(8901), + [aux_sym_on_goto_statement_token1] = ACTIONS(8899), + [aux_sym_on_goto_statement_token2] = ACTIONS(8899), + [aux_sym_on_error_statement_token2] = ACTIONS(8899), + [sym__ambiguous_redim_statement] = ACTIONS(8901), + [aux_sym_erase_statement_token1] = ACTIONS(8899), + [aux_sym_open_statement_token1] = ACTIONS(8899), + [aux_sym_file_mode_token2] = ACTIONS(8899), + [aux_sym_file_access_token2] = ACTIONS(8899), + [aux_sym_file_lock_token2] = ACTIONS(8899), + [aux_sym_print_statement_token1] = ACTIONS(8899), + [anon_sym_PLUS] = ACTIONS(8901), + [anon_sym_DASH] = ACTIONS(8899), + [anon_sym_QMARK] = ACTIONS(8901), + [aux_sym_close_statement_token1] = ACTIONS(8899), + [aux_sym_put_statement_token1] = ACTIONS(8899), + [aux_sym_unlock_statement_token1] = ACTIONS(8899), + [aux_sym_seek_statement_token1] = ACTIONS(8899), + [sym_reset_statement] = ACTIONS(8899), + [aux_sym_raise_event_statement_token1] = ACTIONS(8899), + [sym_stop_statement] = ACTIONS(8899), + [sym_beep_statement] = ACTIONS(8899), + [aux_sym_unload_statement_token1] = ACTIONS(8899), + [aux_sym_def_type_statement_token1] = ACTIONS(8899), + [aux_sym_def_type_statement_token2] = ACTIONS(8899), + [aux_sym_def_type_statement_token3] = ACTIONS(8899), + [aux_sym_def_type_statement_token4] = ACTIONS(8899), + [aux_sym_def_type_statement_token5] = ACTIONS(8899), + [aux_sym_def_type_statement_token6] = ACTIONS(8899), + [aux_sym_def_type_statement_token7] = ACTIONS(8899), + [aux_sym_def_type_statement_token8] = ACTIONS(8899), + [aux_sym_def_type_statement_token9] = ACTIONS(8899), + [aux_sym_def_type_statement_token10] = ACTIONS(8899), + [aux_sym_def_type_statement_token11] = ACTIONS(8899), + [aux_sym_def_type_statement_token12] = ACTIONS(8899), + [aux_sym_def_type_statement_token13] = ACTIONS(8899), + [aux_sym_def_type_statement_token14] = ACTIONS(8899), + [aux_sym_call_statement_token1] = ACTIONS(8899), + [sym__ambiguous_call_statement] = ACTIONS(8899), + [aux_sym_addressof_expression_token1] = ACTIONS(8899), + [aux_sym_type_of_expression_token1] = ACTIONS(8899), + [aux_sym_unary_expression_token1] = ACTIONS(8899), + [sym_string_literal] = ACTIONS(8901), + [sym_number_literal] = ACTIONS(8901), + [aux_sym_boolean_literal_token1] = ACTIONS(8899), + [aux_sym_boolean_literal_token2] = ACTIONS(8899), + [sym_nothing_literal] = ACTIONS(8899), + [sym_null_literal] = ACTIONS(8899), + [sym_empty_literal] = ACTIONS(8899), + [sym_date_literal] = ACTIONS(8901), + [anon_sym_POUND] = ACTIONS(8899), + }, + [STATE(4215)] = { + [sym_next_variable_list] = STATE(6285), + [sym__assignable_expression] = STATE(4950), + [sym__callable_expression] = STATE(4998), + [sym_call_expression] = STATE(4937), + [sym_member_expression] = STATE(5280), + [sym_qualified_member_expression] = STATE(5270), + [sym_implicit_member_expression] = STATE(5270), + [sym_identifier] = ACTIONS(9835), + [sym_newline] = ACTIONS(6867), + [anon_sym_COLON] = ACTIONS(6867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6869), + [aux_sym_frm_property_statement_token1] = ACTIONS(9837), + [anon_sym_DOT] = ACTIONS(9839), + [anon_sym_BANG] = ACTIONS(9841), + [aux_sym__attribute_identifier_token1] = ACTIONS(6869), + [aux_sym_option_statement_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6869), + [aux_sym_preprocessor_const_token1] = ACTIONS(6869), + [sym_static_modifier] = ACTIONS(6869), + [sym__dim_keyword] = ACTIONS(6869), + [sym__redim_keyword] = ACTIONS(6869), + [aux_sym_get_accessor_token1] = ACTIONS(6869), + [aux_sym_set_accessor_token1] = ACTIONS(6869), + [aux_sym_const_declaration_token1] = ACTIONS(6869), + [anon_sym_LPAREN] = ACTIONS(6867), + [aux_sym_as_type_clause_token2] = ACTIONS(6869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9843), + [aux_sym_visibility_token1] = ACTIONS(6869), + [aux_sym_visibility_token2] = ACTIONS(6869), + [aux_sym_elseif_fragment_token1] = ACTIONS(6869), + [aux_sym_else_fragment_token1] = ACTIONS(6869), + [aux_sym_select_statement_token1] = ACTIONS(6869), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6869), + [aux_sym__for_header_token1] = ACTIONS(6869), + [aux_sym_do_statement_token1] = ACTIONS(6869), + [aux_sym_do_statement_token2] = ACTIONS(6869), + [aux_sym_do_condition_token1] = ACTIONS(6869), + [aux_sym_with_statement_token1] = ACTIONS(6869), + [aux_sym_exit_statement_token1] = ACTIONS(6869), + [sym_end_statement] = ACTIONS(6867), + [aux_sym_on_goto_statement_token1] = ACTIONS(6869), + [aux_sym_on_goto_statement_token2] = ACTIONS(6869), + [aux_sym_on_error_statement_token2] = ACTIONS(6869), + [sym__ambiguous_redim_statement] = ACTIONS(6867), + [aux_sym_erase_statement_token1] = ACTIONS(6869), + [aux_sym_open_statement_token1] = ACTIONS(6869), + [aux_sym_file_mode_token2] = ACTIONS(6869), + [aux_sym_file_access_token2] = ACTIONS(6869), + [aux_sym_file_lock_token2] = ACTIONS(6869), + [aux_sym_print_statement_token1] = ACTIONS(6869), + [anon_sym_PLUS] = ACTIONS(6867), + [anon_sym_DASH] = ACTIONS(6869), + [anon_sym_QMARK] = ACTIONS(6867), + [aux_sym_close_statement_token1] = ACTIONS(6869), + [aux_sym_put_statement_token1] = ACTIONS(6869), + [aux_sym_unlock_statement_token1] = ACTIONS(6869), + [aux_sym_seek_statement_token1] = ACTIONS(6869), + [sym_reset_statement] = ACTIONS(6869), + [aux_sym_raise_event_statement_token1] = ACTIONS(6869), + [sym_stop_statement] = ACTIONS(6869), + [sym_beep_statement] = ACTIONS(6869), + [aux_sym_unload_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token2] = ACTIONS(6869), + [aux_sym_def_type_statement_token3] = ACTIONS(6869), + [aux_sym_def_type_statement_token4] = ACTIONS(6869), + [aux_sym_def_type_statement_token5] = ACTIONS(6869), + [aux_sym_def_type_statement_token6] = ACTIONS(6869), + [aux_sym_def_type_statement_token7] = ACTIONS(6869), + [aux_sym_def_type_statement_token8] = ACTIONS(6869), + [aux_sym_def_type_statement_token9] = ACTIONS(6869), + [aux_sym_def_type_statement_token10] = ACTIONS(6869), + [aux_sym_def_type_statement_token11] = ACTIONS(6869), + [aux_sym_def_type_statement_token12] = ACTIONS(6869), + [aux_sym_def_type_statement_token13] = ACTIONS(6869), + [aux_sym_def_type_statement_token14] = ACTIONS(6869), + [aux_sym_call_statement_token1] = ACTIONS(6869), + [sym__ambiguous_call_statement] = ACTIONS(6869), + [aux_sym_addressof_expression_token1] = ACTIONS(6869), + [aux_sym_type_of_expression_token1] = ACTIONS(6869), + [aux_sym_unary_expression_token1] = ACTIONS(6869), + [sym_string_literal] = ACTIONS(6867), + [sym_number_literal] = ACTIONS(6867), + [aux_sym_boolean_literal_token1] = ACTIONS(6869), + [aux_sym_boolean_literal_token2] = ACTIONS(6869), + [sym_nothing_literal] = ACTIONS(6869), + [sym_null_literal] = ACTIONS(6869), + [sym_empty_literal] = ACTIONS(6869), + [sym_date_literal] = ACTIONS(6867), + [anon_sym_POUND] = ACTIONS(6869), + }, + [STATE(4216)] = { + [sym_next_variable_list] = STATE(5866), + [sym__assignable_expression] = STATE(4950), + [sym__callable_expression] = STATE(4998), + [sym_call_expression] = STATE(4937), + [sym_member_expression] = STATE(5280), + [sym_qualified_member_expression] = STATE(5270), + [sym_implicit_member_expression] = STATE(5270), + [sym_identifier] = ACTIONS(9835), + [sym_newline] = ACTIONS(6810), + [anon_sym_COLON] = ACTIONS(6810), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6812), + [aux_sym_frm_property_statement_token1] = ACTIONS(9837), + [anon_sym_DOT] = ACTIONS(9839), + [anon_sym_BANG] = ACTIONS(9841), + [aux_sym__attribute_identifier_token1] = ACTIONS(6812), + [aux_sym_option_statement_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6812), + [aux_sym_preprocessor_const_token1] = ACTIONS(6812), + [sym_static_modifier] = ACTIONS(6812), + [sym__dim_keyword] = ACTIONS(6812), + [sym__redim_keyword] = ACTIONS(6812), + [aux_sym_get_accessor_token1] = ACTIONS(6812), + [aux_sym_set_accessor_token1] = ACTIONS(6812), + [aux_sym_const_declaration_token1] = ACTIONS(6812), + [anon_sym_LPAREN] = ACTIONS(6810), + [aux_sym_as_type_clause_token2] = ACTIONS(6812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9843), + [aux_sym_visibility_token1] = ACTIONS(6812), + [aux_sym_visibility_token2] = ACTIONS(6812), + [aux_sym_elseif_fragment_token1] = ACTIONS(6812), + [aux_sym_else_fragment_token1] = ACTIONS(6812), + [aux_sym_select_statement_token1] = ACTIONS(6812), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6812), + [aux_sym__for_header_token1] = ACTIONS(6812), + [aux_sym_do_statement_token1] = ACTIONS(6812), + [aux_sym_do_statement_token2] = ACTIONS(6812), + [aux_sym_do_condition_token1] = ACTIONS(6812), + [aux_sym_with_statement_token1] = ACTIONS(6812), + [aux_sym_exit_statement_token1] = ACTIONS(6812), + [sym_end_statement] = ACTIONS(6810), + [aux_sym_on_goto_statement_token1] = ACTIONS(6812), + [aux_sym_on_goto_statement_token2] = ACTIONS(6812), + [aux_sym_on_error_statement_token2] = ACTIONS(6812), + [sym__ambiguous_redim_statement] = ACTIONS(6810), + [aux_sym_erase_statement_token1] = ACTIONS(6812), + [aux_sym_open_statement_token1] = ACTIONS(6812), + [aux_sym_file_mode_token2] = ACTIONS(6812), + [aux_sym_file_access_token2] = ACTIONS(6812), + [aux_sym_file_lock_token2] = ACTIONS(6812), + [aux_sym_print_statement_token1] = ACTIONS(6812), + [anon_sym_PLUS] = ACTIONS(6810), + [anon_sym_DASH] = ACTIONS(6812), + [anon_sym_QMARK] = ACTIONS(6810), + [aux_sym_close_statement_token1] = ACTIONS(6812), + [aux_sym_put_statement_token1] = ACTIONS(6812), + [aux_sym_unlock_statement_token1] = ACTIONS(6812), + [aux_sym_seek_statement_token1] = ACTIONS(6812), + [sym_reset_statement] = ACTIONS(6812), + [aux_sym_raise_event_statement_token1] = ACTIONS(6812), + [sym_stop_statement] = ACTIONS(6812), + [sym_beep_statement] = ACTIONS(6812), + [aux_sym_unload_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token2] = ACTIONS(6812), + [aux_sym_def_type_statement_token3] = ACTIONS(6812), + [aux_sym_def_type_statement_token4] = ACTIONS(6812), + [aux_sym_def_type_statement_token5] = ACTIONS(6812), + [aux_sym_def_type_statement_token6] = ACTIONS(6812), + [aux_sym_def_type_statement_token7] = ACTIONS(6812), + [aux_sym_def_type_statement_token8] = ACTIONS(6812), + [aux_sym_def_type_statement_token9] = ACTIONS(6812), + [aux_sym_def_type_statement_token10] = ACTIONS(6812), + [aux_sym_def_type_statement_token11] = ACTIONS(6812), + [aux_sym_def_type_statement_token12] = ACTIONS(6812), + [aux_sym_def_type_statement_token13] = ACTIONS(6812), + [aux_sym_def_type_statement_token14] = ACTIONS(6812), + [aux_sym_call_statement_token1] = ACTIONS(6812), + [sym__ambiguous_call_statement] = ACTIONS(6812), + [aux_sym_addressof_expression_token1] = ACTIONS(6812), + [aux_sym_type_of_expression_token1] = ACTIONS(6812), + [aux_sym_unary_expression_token1] = ACTIONS(6812), + [sym_string_literal] = ACTIONS(6810), + [sym_number_literal] = ACTIONS(6810), + [aux_sym_boolean_literal_token1] = ACTIONS(6812), + [aux_sym_boolean_literal_token2] = ACTIONS(6812), + [sym_nothing_literal] = ACTIONS(6812), + [sym_null_literal] = ACTIONS(6812), + [sym_empty_literal] = ACTIONS(6812), + [sym_date_literal] = ACTIONS(6810), + [anon_sym_POUND] = ACTIONS(6812), + }, + [STATE(4217)] = { + [sym_parameter_list] = STATE(4554), + [sym_identifier] = ACTIONS(8869), + [sym_newline] = ACTIONS(8871), + [anon_sym_COLON] = ACTIONS(8871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8869), + [aux_sym_frm_property_statement_token1] = ACTIONS(8869), + [anon_sym_DOT] = ACTIONS(8869), + [anon_sym_BANG] = ACTIONS(8871), + [aux_sym__attribute_identifier_token1] = ACTIONS(8869), + [aux_sym_option_statement_token3] = ACTIONS(8869), + [aux_sym_type_declaration_token1] = ACTIONS(8869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8869), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8869), + [aux_sym_enum_declaration_token1] = ACTIONS(8869), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8869), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8869), + [aux_sym_declare_function_statement_token1] = ACTIONS(8869), + [aux_sym_preprocessor_const_token1] = ACTIONS(8869), + [aux_sym__property_get_header_token1] = ACTIONS(8869), + [aux_sym_event_declaration_token1] = ACTIONS(8869), + [sym_static_modifier] = ACTIONS(8869), + [sym__dim_keyword] = ACTIONS(8869), + [sym__redim_keyword] = ACTIONS(8869), + [aux_sym_get_accessor_token1] = ACTIONS(8869), + [aux_sym_set_accessor_token1] = ACTIONS(8869), + [aux_sym_const_declaration_token1] = ACTIONS(8869), + [anon_sym_LPAREN] = ACTIONS(9014), + [aux_sym_as_type_clause_token2] = ACTIONS(8869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8869), + [aux_sym_visibility_token1] = ACTIONS(8869), + [aux_sym_visibility_token2] = ACTIONS(8869), + [aux_sym_elseif_fragment_token1] = ACTIONS(8869), + [aux_sym_else_fragment_token1] = ACTIONS(8869), + [aux_sym_select_statement_token1] = ACTIONS(8869), + [aux_sym__for_header_token1] = ACTIONS(8869), + [aux_sym_do_statement_token1] = ACTIONS(8869), + [aux_sym_do_condition_token1] = ACTIONS(8869), + [aux_sym_with_statement_token1] = ACTIONS(8869), + [aux_sym_exit_statement_token1] = ACTIONS(8869), + [sym_end_statement] = ACTIONS(8871), + [aux_sym_on_goto_statement_token1] = ACTIONS(8869), + [aux_sym_on_goto_statement_token2] = ACTIONS(8869), + [aux_sym_on_error_statement_token2] = ACTIONS(8869), + [sym__ambiguous_redim_statement] = ACTIONS(8871), + [aux_sym_erase_statement_token1] = ACTIONS(8869), + [aux_sym_open_statement_token1] = ACTIONS(8869), + [aux_sym_file_mode_token2] = ACTIONS(8869), + [aux_sym_file_access_token2] = ACTIONS(8869), + [aux_sym_file_lock_token2] = ACTIONS(8869), + [aux_sym_print_statement_token1] = ACTIONS(8869), + [anon_sym_PLUS] = ACTIONS(8871), + [anon_sym_DASH] = ACTIONS(8869), + [anon_sym_QMARK] = ACTIONS(8871), + [aux_sym_close_statement_token1] = ACTIONS(8869), + [aux_sym_put_statement_token1] = ACTIONS(8869), + [aux_sym_unlock_statement_token1] = ACTIONS(8869), + [aux_sym_seek_statement_token1] = ACTIONS(8869), + [sym_reset_statement] = ACTIONS(8869), + [aux_sym_raise_event_statement_token1] = ACTIONS(8869), + [sym_stop_statement] = ACTIONS(8869), + [sym_beep_statement] = ACTIONS(8869), + [aux_sym_unload_statement_token1] = ACTIONS(8869), + [aux_sym_def_type_statement_token1] = ACTIONS(8869), + [aux_sym_def_type_statement_token2] = ACTIONS(8869), + [aux_sym_def_type_statement_token3] = ACTIONS(8869), + [aux_sym_def_type_statement_token4] = ACTIONS(8869), + [aux_sym_def_type_statement_token5] = ACTIONS(8869), + [aux_sym_def_type_statement_token6] = ACTIONS(8869), + [aux_sym_def_type_statement_token7] = ACTIONS(8869), + [aux_sym_def_type_statement_token8] = ACTIONS(8869), + [aux_sym_def_type_statement_token9] = ACTIONS(8869), + [aux_sym_def_type_statement_token10] = ACTIONS(8869), + [aux_sym_def_type_statement_token11] = ACTIONS(8869), + [aux_sym_def_type_statement_token12] = ACTIONS(8869), + [aux_sym_def_type_statement_token13] = ACTIONS(8869), + [aux_sym_def_type_statement_token14] = ACTIONS(8869), + [aux_sym_call_statement_token1] = ACTIONS(8869), + [sym__ambiguous_call_statement] = ACTIONS(8869), + [aux_sym_addressof_expression_token1] = ACTIONS(8869), + [aux_sym_type_of_expression_token1] = ACTIONS(8869), + [aux_sym_unary_expression_token1] = ACTIONS(8869), + [sym_string_literal] = ACTIONS(8871), + [sym_number_literal] = ACTIONS(8871), + [aux_sym_boolean_literal_token1] = ACTIONS(8869), + [aux_sym_boolean_literal_token2] = ACTIONS(8869), + [sym_nothing_literal] = ACTIONS(8869), + [sym_null_literal] = ACTIONS(8869), + [sym_empty_literal] = ACTIONS(8869), + [sym_date_literal] = ACTIONS(8871), + [anon_sym_POUND] = ACTIONS(8869), + }, + [STATE(4218)] = { + [sym_parameter_list] = STATE(4524), + [sym_identifier] = ACTIONS(8945), + [sym_newline] = ACTIONS(8947), + [anon_sym_COLON] = ACTIONS(8947), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8945), + [aux_sym_frm_property_statement_token1] = ACTIONS(8945), + [anon_sym_DOT] = ACTIONS(8945), + [anon_sym_BANG] = ACTIONS(8947), + [aux_sym__attribute_identifier_token1] = ACTIONS(8945), + [aux_sym_option_statement_token3] = ACTIONS(8945), + [aux_sym_type_declaration_token1] = ACTIONS(8945), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8945), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8945), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8945), + [aux_sym_enum_declaration_token1] = ACTIONS(8945), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8945), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8945), + [aux_sym_declare_function_statement_token1] = ACTIONS(8945), + [aux_sym_preprocessor_const_token1] = ACTIONS(8945), + [aux_sym__property_get_header_token1] = ACTIONS(8945), + [aux_sym_event_declaration_token1] = ACTIONS(8945), + [sym_static_modifier] = ACTIONS(8945), + [sym__dim_keyword] = ACTIONS(8945), + [sym__redim_keyword] = ACTIONS(8945), + [aux_sym_get_accessor_token1] = ACTIONS(8945), + [aux_sym_set_accessor_token1] = ACTIONS(8945), + [aux_sym_const_declaration_token1] = ACTIONS(8945), + [anon_sym_LPAREN] = ACTIONS(9014), + [aux_sym_as_type_clause_token2] = ACTIONS(8945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8945), + [aux_sym_visibility_token1] = ACTIONS(8945), + [aux_sym_visibility_token2] = ACTIONS(8945), + [aux_sym_elseif_fragment_token1] = ACTIONS(8945), + [aux_sym_else_fragment_token1] = ACTIONS(8945), + [aux_sym_select_statement_token1] = ACTIONS(8945), + [aux_sym__for_header_token1] = ACTIONS(8945), + [aux_sym_do_statement_token1] = ACTIONS(8945), + [aux_sym_do_condition_token1] = ACTIONS(8945), + [aux_sym_with_statement_token1] = ACTIONS(8945), + [aux_sym_exit_statement_token1] = ACTIONS(8945), + [sym_end_statement] = ACTIONS(8947), + [aux_sym_on_goto_statement_token1] = ACTIONS(8945), + [aux_sym_on_goto_statement_token2] = ACTIONS(8945), + [aux_sym_on_error_statement_token2] = ACTIONS(8945), + [sym__ambiguous_redim_statement] = ACTIONS(8947), + [aux_sym_erase_statement_token1] = ACTIONS(8945), + [aux_sym_open_statement_token1] = ACTIONS(8945), + [aux_sym_file_mode_token2] = ACTIONS(8945), + [aux_sym_file_access_token2] = ACTIONS(8945), + [aux_sym_file_lock_token2] = ACTIONS(8945), + [aux_sym_print_statement_token1] = ACTIONS(8945), + [anon_sym_PLUS] = ACTIONS(8947), + [anon_sym_DASH] = ACTIONS(8945), + [anon_sym_QMARK] = ACTIONS(8947), + [aux_sym_close_statement_token1] = ACTIONS(8945), + [aux_sym_put_statement_token1] = ACTIONS(8945), + [aux_sym_unlock_statement_token1] = ACTIONS(8945), + [aux_sym_seek_statement_token1] = ACTIONS(8945), + [sym_reset_statement] = ACTIONS(8945), + [aux_sym_raise_event_statement_token1] = ACTIONS(8945), + [sym_stop_statement] = ACTIONS(8945), + [sym_beep_statement] = ACTIONS(8945), + [aux_sym_unload_statement_token1] = ACTIONS(8945), + [aux_sym_def_type_statement_token1] = ACTIONS(8945), + [aux_sym_def_type_statement_token2] = ACTIONS(8945), + [aux_sym_def_type_statement_token3] = ACTIONS(8945), + [aux_sym_def_type_statement_token4] = ACTIONS(8945), + [aux_sym_def_type_statement_token5] = ACTIONS(8945), + [aux_sym_def_type_statement_token6] = ACTIONS(8945), + [aux_sym_def_type_statement_token7] = ACTIONS(8945), + [aux_sym_def_type_statement_token8] = ACTIONS(8945), + [aux_sym_def_type_statement_token9] = ACTIONS(8945), + [aux_sym_def_type_statement_token10] = ACTIONS(8945), + [aux_sym_def_type_statement_token11] = ACTIONS(8945), + [aux_sym_def_type_statement_token12] = ACTIONS(8945), + [aux_sym_def_type_statement_token13] = ACTIONS(8945), + [aux_sym_def_type_statement_token14] = ACTIONS(8945), + [aux_sym_call_statement_token1] = ACTIONS(8945), + [sym__ambiguous_call_statement] = ACTIONS(8945), + [aux_sym_addressof_expression_token1] = ACTIONS(8945), + [aux_sym_type_of_expression_token1] = ACTIONS(8945), + [aux_sym_unary_expression_token1] = ACTIONS(8945), + [sym_string_literal] = ACTIONS(8947), + [sym_number_literal] = ACTIONS(8947), + [aux_sym_boolean_literal_token1] = ACTIONS(8945), + [aux_sym_boolean_literal_token2] = ACTIONS(8945), + [sym_nothing_literal] = ACTIONS(8945), + [sym_null_literal] = ACTIONS(8945), + [sym_empty_literal] = ACTIONS(8945), + [sym_date_literal] = ACTIONS(8947), + [anon_sym_POUND] = ACTIONS(8945), + }, + [STATE(4219)] = { + [sym_identifier] = ACTIONS(8660), + [sym_newline] = ACTIONS(8662), + [anon_sym_COLON] = ACTIONS(8662), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8660), + [aux_sym_frm_property_statement_token1] = ACTIONS(8660), + [anon_sym_DOT] = ACTIONS(8660), + [anon_sym_BANG] = ACTIONS(8662), + [aux_sym__attribute_identifier_token1] = ACTIONS(8660), + [aux_sym_option_statement_token3] = ACTIONS(8660), + [aux_sym_type_declaration_token1] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8660), + [aux_sym_enum_declaration_token1] = ACTIONS(8660), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8660), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8660), + [aux_sym_declare_function_statement_token1] = ACTIONS(8660), + [aux_sym_preprocessor_const_token1] = ACTIONS(8660), + [aux_sym__property_get_header_token1] = ACTIONS(8660), + [aux_sym_event_declaration_token1] = ACTIONS(8660), + [sym_static_modifier] = ACTIONS(8660), + [sym__dim_keyword] = ACTIONS(8660), + [sym__redim_keyword] = ACTIONS(8660), + [aux_sym_get_accessor_token1] = ACTIONS(8660), + [aux_sym_set_accessor_token1] = ACTIONS(8660), + [anon_sym_COMMA] = ACTIONS(9849), + [aux_sym_const_declaration_token1] = ACTIONS(8660), + [anon_sym_LPAREN] = ACTIONS(8662), + [aux_sym_as_type_clause_token2] = ACTIONS(8660), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8660), + [aux_sym_visibility_token1] = ACTIONS(8660), + [aux_sym_visibility_token2] = ACTIONS(8660), + [aux_sym_elseif_fragment_token1] = ACTIONS(8660), + [aux_sym_else_fragment_token1] = ACTIONS(8660), + [aux_sym_select_statement_token1] = ACTIONS(8660), + [aux_sym__for_header_token1] = ACTIONS(8660), + [aux_sym_do_statement_token1] = ACTIONS(8660), + [aux_sym_do_condition_token1] = ACTIONS(8660), + [aux_sym_with_statement_token1] = ACTIONS(8660), + [aux_sym_exit_statement_token1] = ACTIONS(8660), + [sym_end_statement] = ACTIONS(8662), + [aux_sym_on_goto_statement_token1] = ACTIONS(8660), + [aux_sym_on_goto_statement_token2] = ACTIONS(8660), + [aux_sym_on_error_statement_token2] = ACTIONS(8660), + [sym__ambiguous_redim_statement] = ACTIONS(8662), + [aux_sym_erase_statement_token1] = ACTIONS(8660), + [aux_sym_open_statement_token1] = ACTIONS(8660), + [aux_sym_file_mode_token2] = ACTIONS(8660), + [aux_sym_file_access_token2] = ACTIONS(8660), + [aux_sym_file_lock_token2] = ACTIONS(8660), + [aux_sym_print_statement_token1] = ACTIONS(8660), + [anon_sym_PLUS] = ACTIONS(8662), + [anon_sym_DASH] = ACTIONS(8660), + [anon_sym_QMARK] = ACTIONS(8662), + [aux_sym_close_statement_token1] = ACTIONS(8660), + [aux_sym_put_statement_token1] = ACTIONS(8660), + [aux_sym_unlock_statement_token1] = ACTIONS(8660), + [aux_sym_seek_statement_token1] = ACTIONS(8660), + [sym_reset_statement] = ACTIONS(8660), + [aux_sym_raise_event_statement_token1] = ACTIONS(8660), + [sym_stop_statement] = ACTIONS(8660), + [sym_beep_statement] = ACTIONS(8660), + [aux_sym_unload_statement_token1] = ACTIONS(8660), + [aux_sym_def_type_statement_token1] = ACTIONS(8660), + [aux_sym_def_type_statement_token2] = ACTIONS(8660), + [aux_sym_def_type_statement_token3] = ACTIONS(8660), + [aux_sym_def_type_statement_token4] = ACTIONS(8660), + [aux_sym_def_type_statement_token5] = ACTIONS(8660), + [aux_sym_def_type_statement_token6] = ACTIONS(8660), + [aux_sym_def_type_statement_token7] = ACTIONS(8660), + [aux_sym_def_type_statement_token8] = ACTIONS(8660), + [aux_sym_def_type_statement_token9] = ACTIONS(8660), + [aux_sym_def_type_statement_token10] = ACTIONS(8660), + [aux_sym_def_type_statement_token11] = ACTIONS(8660), + [aux_sym_def_type_statement_token12] = ACTIONS(8660), + [aux_sym_def_type_statement_token13] = ACTIONS(8660), + [aux_sym_def_type_statement_token14] = ACTIONS(8660), + [aux_sym_call_statement_token1] = ACTIONS(8660), + [sym__ambiguous_call_statement] = ACTIONS(8660), + [aux_sym_addressof_expression_token1] = ACTIONS(8660), + [aux_sym_type_of_expression_token1] = ACTIONS(8660), + [aux_sym_unary_expression_token1] = ACTIONS(8660), + [sym_string_literal] = ACTIONS(8662), + [sym_number_literal] = ACTIONS(8662), + [aux_sym_boolean_literal_token1] = ACTIONS(8660), + [aux_sym_boolean_literal_token2] = ACTIONS(8660), + [sym_nothing_literal] = ACTIONS(8660), + [sym_null_literal] = ACTIONS(8660), + [sym_empty_literal] = ACTIONS(8660), + [sym_date_literal] = ACTIONS(8662), + [anon_sym_POUND] = ACTIONS(8660), + }, + [STATE(4220)] = { + [sym_identifier] = ACTIONS(8666), + [sym_newline] = ACTIONS(8668), + [anon_sym_COLON] = ACTIONS(8668), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8666), + [aux_sym_frm_property_statement_token1] = ACTIONS(8666), + [anon_sym_DOT] = ACTIONS(8666), + [anon_sym_BANG] = ACTIONS(8668), + [aux_sym__attribute_identifier_token1] = ACTIONS(8666), + [aux_sym_option_statement_token3] = ACTIONS(8666), + [aux_sym_type_declaration_token1] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8666), + [aux_sym_enum_declaration_token1] = ACTIONS(8666), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8666), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8666), + [aux_sym_declare_function_statement_token1] = ACTIONS(8666), + [aux_sym_preprocessor_const_token1] = ACTIONS(8666), + [aux_sym__property_get_header_token1] = ACTIONS(8666), + [aux_sym_event_declaration_token1] = ACTIONS(8666), + [sym_static_modifier] = ACTIONS(8666), + [sym__dim_keyword] = ACTIONS(8666), + [sym__redim_keyword] = ACTIONS(8666), + [aux_sym_get_accessor_token1] = ACTIONS(8666), + [aux_sym_set_accessor_token1] = ACTIONS(8666), + [anon_sym_COMMA] = ACTIONS(9851), + [aux_sym_const_declaration_token1] = ACTIONS(8666), + [anon_sym_LPAREN] = ACTIONS(8668), + [aux_sym_as_type_clause_token2] = ACTIONS(8666), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8666), + [aux_sym_visibility_token1] = ACTIONS(8666), + [aux_sym_visibility_token2] = ACTIONS(8666), + [aux_sym_elseif_fragment_token1] = ACTIONS(8666), + [aux_sym_else_fragment_token1] = ACTIONS(8666), + [aux_sym_select_statement_token1] = ACTIONS(8666), + [aux_sym__for_header_token1] = ACTIONS(8666), + [aux_sym_do_statement_token1] = ACTIONS(8666), + [aux_sym_do_condition_token1] = ACTIONS(8666), + [aux_sym_with_statement_token1] = ACTIONS(8666), + [aux_sym_exit_statement_token1] = ACTIONS(8666), + [sym_end_statement] = ACTIONS(8668), + [aux_sym_on_goto_statement_token1] = ACTIONS(8666), + [aux_sym_on_goto_statement_token2] = ACTIONS(8666), + [aux_sym_on_error_statement_token2] = ACTIONS(8666), + [sym__ambiguous_redim_statement] = ACTIONS(8668), + [aux_sym_erase_statement_token1] = ACTIONS(8666), + [aux_sym_open_statement_token1] = ACTIONS(8666), + [aux_sym_file_mode_token2] = ACTIONS(8666), + [aux_sym_file_access_token2] = ACTIONS(8666), + [aux_sym_file_lock_token2] = ACTIONS(8666), + [aux_sym_print_statement_token1] = ACTIONS(8666), + [anon_sym_PLUS] = ACTIONS(8668), + [anon_sym_DASH] = ACTIONS(8666), + [anon_sym_QMARK] = ACTIONS(8668), + [aux_sym_close_statement_token1] = ACTIONS(8666), + [aux_sym_put_statement_token1] = ACTIONS(8666), + [aux_sym_unlock_statement_token1] = ACTIONS(8666), + [aux_sym_seek_statement_token1] = ACTIONS(8666), + [sym_reset_statement] = ACTIONS(8666), + [aux_sym_raise_event_statement_token1] = ACTIONS(8666), + [sym_stop_statement] = ACTIONS(8666), + [sym_beep_statement] = ACTIONS(8666), + [aux_sym_unload_statement_token1] = ACTIONS(8666), + [aux_sym_def_type_statement_token1] = ACTIONS(8666), + [aux_sym_def_type_statement_token2] = ACTIONS(8666), + [aux_sym_def_type_statement_token3] = ACTIONS(8666), + [aux_sym_def_type_statement_token4] = ACTIONS(8666), + [aux_sym_def_type_statement_token5] = ACTIONS(8666), + [aux_sym_def_type_statement_token6] = ACTIONS(8666), + [aux_sym_def_type_statement_token7] = ACTIONS(8666), + [aux_sym_def_type_statement_token8] = ACTIONS(8666), + [aux_sym_def_type_statement_token9] = ACTIONS(8666), + [aux_sym_def_type_statement_token10] = ACTIONS(8666), + [aux_sym_def_type_statement_token11] = ACTIONS(8666), + [aux_sym_def_type_statement_token12] = ACTIONS(8666), + [aux_sym_def_type_statement_token13] = ACTIONS(8666), + [aux_sym_def_type_statement_token14] = ACTIONS(8666), + [aux_sym_call_statement_token1] = ACTIONS(8666), + [sym__ambiguous_call_statement] = ACTIONS(8666), + [aux_sym_addressof_expression_token1] = ACTIONS(8666), + [aux_sym_type_of_expression_token1] = ACTIONS(8666), + [aux_sym_unary_expression_token1] = ACTIONS(8666), + [sym_string_literal] = ACTIONS(8668), + [sym_number_literal] = ACTIONS(8668), + [aux_sym_boolean_literal_token1] = ACTIONS(8666), + [aux_sym_boolean_literal_token2] = ACTIONS(8666), + [sym_nothing_literal] = ACTIONS(8666), + [sym_null_literal] = ACTIONS(8666), + [sym_empty_literal] = ACTIONS(8666), + [sym_date_literal] = ACTIONS(8668), + [anon_sym_POUND] = ACTIONS(8666), + }, + [STATE(4221)] = { + [sym_identifier] = ACTIONS(8881), + [sym_newline] = ACTIONS(8884), + [anon_sym_COLON] = ACTIONS(8884), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8881), + [aux_sym_frm_property_statement_token1] = ACTIONS(8881), + [anon_sym_DOT] = ACTIONS(8881), + [anon_sym_BANG] = ACTIONS(8884), + [aux_sym__attribute_identifier_token1] = ACTIONS(8881), + [aux_sym_option_statement_token3] = ACTIONS(8881), + [aux_sym_type_declaration_token1] = ACTIONS(8887), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8887), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8881), + [aux_sym_enum_declaration_token1] = ACTIONS(8887), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8887), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8887), + [aux_sym_declare_function_statement_token1] = ACTIONS(8887), + [aux_sym_preprocessor_const_token1] = ACTIONS(8881), + [aux_sym__property_get_header_token1] = ACTIONS(8887), + [aux_sym_event_declaration_token1] = ACTIONS(8887), + [sym_static_modifier] = ACTIONS(8881), + [sym__dim_keyword] = ACTIONS(8881), + [sym__redim_keyword] = ACTIONS(8881), + [aux_sym_get_accessor_token1] = ACTIONS(8881), + [aux_sym_set_accessor_token1] = ACTIONS(8881), + [aux_sym_const_declaration_token1] = ACTIONS(8881), + [anon_sym_LPAREN] = ACTIONS(8884), + [aux_sym_as_type_clause_token2] = ACTIONS(8881), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8881), + [aux_sym_visibility_token1] = ACTIONS(8881), + [aux_sym_visibility_token2] = ACTIONS(8881), + [aux_sym_elseif_fragment_token1] = ACTIONS(8881), + [aux_sym_else_fragment_token1] = ACTIONS(8881), + [aux_sym_select_statement_token1] = ACTIONS(8881), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8881), + [aux_sym__for_header_token1] = ACTIONS(8881), + [aux_sym_do_statement_token1] = ACTIONS(8881), + [aux_sym_do_condition_token1] = ACTIONS(8881), + [aux_sym_with_statement_token1] = ACTIONS(8881), + [aux_sym_exit_statement_token1] = ACTIONS(8881), + [sym_end_statement] = ACTIONS(8884), + [aux_sym_on_goto_statement_token1] = ACTIONS(8881), + [aux_sym_on_goto_statement_token2] = ACTIONS(8881), + [aux_sym_on_error_statement_token2] = ACTIONS(8881), + [sym__ambiguous_redim_statement] = ACTIONS(8884), + [aux_sym_erase_statement_token1] = ACTIONS(8881), + [aux_sym_open_statement_token1] = ACTIONS(8881), + [aux_sym_file_mode_token2] = ACTIONS(8881), + [aux_sym_file_access_token2] = ACTIONS(8881), + [aux_sym_file_lock_token2] = ACTIONS(8881), + [aux_sym_print_statement_token1] = ACTIONS(8881), + [anon_sym_PLUS] = ACTIONS(8884), + [anon_sym_DASH] = ACTIONS(8881), + [anon_sym_QMARK] = ACTIONS(8884), + [aux_sym_close_statement_token1] = ACTIONS(8881), + [aux_sym_put_statement_token1] = ACTIONS(8881), + [aux_sym_unlock_statement_token1] = ACTIONS(8881), + [aux_sym_seek_statement_token1] = ACTIONS(8881), + [sym_reset_statement] = ACTIONS(8881), + [aux_sym_raise_event_statement_token1] = ACTIONS(8881), + [sym_stop_statement] = ACTIONS(8881), + [sym_beep_statement] = ACTIONS(8881), + [aux_sym_unload_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token2] = ACTIONS(8881), + [aux_sym_def_type_statement_token3] = ACTIONS(8881), + [aux_sym_def_type_statement_token4] = ACTIONS(8881), + [aux_sym_def_type_statement_token5] = ACTIONS(8881), + [aux_sym_def_type_statement_token6] = ACTIONS(8881), + [aux_sym_def_type_statement_token7] = ACTIONS(8881), + [aux_sym_def_type_statement_token8] = ACTIONS(8881), + [aux_sym_def_type_statement_token9] = ACTIONS(8881), + [aux_sym_def_type_statement_token10] = ACTIONS(8881), + [aux_sym_def_type_statement_token11] = ACTIONS(8881), + [aux_sym_def_type_statement_token12] = ACTIONS(8881), + [aux_sym_def_type_statement_token13] = ACTIONS(8881), + [aux_sym_def_type_statement_token14] = ACTIONS(8881), + [aux_sym_call_statement_token1] = ACTIONS(8881), + [sym__ambiguous_call_statement] = ACTIONS(8881), + [aux_sym_addressof_expression_token1] = ACTIONS(8881), + [aux_sym_type_of_expression_token1] = ACTIONS(8881), + [aux_sym_unary_expression_token1] = ACTIONS(8881), + [sym_string_literal] = ACTIONS(8884), + [sym_number_literal] = ACTIONS(8884), + [aux_sym_boolean_literal_token1] = ACTIONS(8881), + [aux_sym_boolean_literal_token2] = ACTIONS(8881), + [sym_nothing_literal] = ACTIONS(8881), + [sym_null_literal] = ACTIONS(8881), + [sym_empty_literal] = ACTIONS(8881), + [sym_date_literal] = ACTIONS(8884), + [anon_sym_POUND] = ACTIONS(8881), + }, + [STATE(4222)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(4318), + [sym_identifier] = ACTIONS(8935), + [sym_newline] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(9853), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8935), + [aux_sym_frm_property_statement_token1] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_BANG] = ACTIONS(8937), + [aux_sym__attribute_identifier_token1] = ACTIONS(8935), + [aux_sym_option_statement_token3] = ACTIONS(8935), + [aux_sym_type_declaration_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8935), + [aux_sym_enum_declaration_token1] = ACTIONS(8935), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8935), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8935), + [aux_sym_declare_function_statement_token1] = ACTIONS(8935), + [aux_sym_preprocessor_const_token1] = ACTIONS(8935), + [aux_sym__property_get_header_token1] = ACTIONS(8935), + [aux_sym_event_declaration_token1] = ACTIONS(8935), + [sym_static_modifier] = ACTIONS(8935), + [sym__dim_keyword] = ACTIONS(8935), + [sym__redim_keyword] = ACTIONS(8935), + [aux_sym_get_accessor_token1] = ACTIONS(8935), + [aux_sym_set_accessor_token1] = ACTIONS(8935), + [aux_sym_const_declaration_token1] = ACTIONS(8935), + [anon_sym_LPAREN] = ACTIONS(8937), + [aux_sym_as_type_clause_token2] = ACTIONS(8935), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8935), + [aux_sym_visibility_token1] = ACTIONS(8935), + [aux_sym_visibility_token2] = ACTIONS(8935), + [aux_sym_elseif_fragment_token1] = ACTIONS(8935), + [aux_sym_else_fragment_token1] = ACTIONS(8935), + [aux_sym_select_statement_token1] = ACTIONS(8935), + [aux_sym__for_header_token1] = ACTIONS(8935), + [aux_sym_do_statement_token1] = ACTIONS(8935), + [aux_sym_do_condition_token1] = ACTIONS(8935), + [aux_sym_with_statement_token1] = ACTIONS(8935), + [aux_sym_exit_statement_token1] = ACTIONS(8935), + [sym_end_statement] = ACTIONS(8937), + [aux_sym_on_goto_statement_token1] = ACTIONS(8935), + [aux_sym_on_goto_statement_token2] = ACTIONS(8935), + [aux_sym_on_error_statement_token2] = ACTIONS(8935), + [sym__ambiguous_redim_statement] = ACTIONS(8937), + [aux_sym_erase_statement_token1] = ACTIONS(8935), + [aux_sym_open_statement_token1] = ACTIONS(8935), + [aux_sym_file_mode_token2] = ACTIONS(8935), + [aux_sym_file_access_token2] = ACTIONS(8935), + [aux_sym_file_lock_token2] = ACTIONS(8935), + [aux_sym_print_statement_token1] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [aux_sym_close_statement_token1] = ACTIONS(8935), + [aux_sym_put_statement_token1] = ACTIONS(8935), + [aux_sym_unlock_statement_token1] = ACTIONS(8935), + [aux_sym_seek_statement_token1] = ACTIONS(8935), + [sym_reset_statement] = ACTIONS(8935), + [aux_sym_raise_event_statement_token1] = ACTIONS(8935), + [sym_stop_statement] = ACTIONS(8935), + [sym_beep_statement] = ACTIONS(8935), + [aux_sym_unload_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token2] = ACTIONS(8935), + [aux_sym_def_type_statement_token3] = ACTIONS(8935), + [aux_sym_def_type_statement_token4] = ACTIONS(8935), + [aux_sym_def_type_statement_token5] = ACTIONS(8935), + [aux_sym_def_type_statement_token6] = ACTIONS(8935), + [aux_sym_def_type_statement_token7] = ACTIONS(8935), + [aux_sym_def_type_statement_token8] = ACTIONS(8935), + [aux_sym_def_type_statement_token9] = ACTIONS(8935), + [aux_sym_def_type_statement_token10] = ACTIONS(8935), + [aux_sym_def_type_statement_token11] = ACTIONS(8935), + [aux_sym_def_type_statement_token12] = ACTIONS(8935), + [aux_sym_def_type_statement_token13] = ACTIONS(8935), + [aux_sym_def_type_statement_token14] = ACTIONS(8935), + [aux_sym_call_statement_token1] = ACTIONS(8935), + [sym__ambiguous_call_statement] = ACTIONS(8935), + [aux_sym_addressof_expression_token1] = ACTIONS(8935), + [aux_sym_type_of_expression_token1] = ACTIONS(8935), + [aux_sym_unary_expression_token1] = ACTIONS(8935), + [sym_string_literal] = ACTIONS(8937), + [sym_number_literal] = ACTIONS(8937), + [aux_sym_boolean_literal_token1] = ACTIONS(8935), + [aux_sym_boolean_literal_token2] = ACTIONS(8935), + [sym_nothing_literal] = ACTIONS(8935), + [sym_null_literal] = ACTIONS(8935), + [sym_empty_literal] = ACTIONS(8935), + [sym_date_literal] = ACTIONS(8937), + [anon_sym_POUND] = ACTIONS(8935), + }, + [STATE(4223)] = { + [sym_identifier] = ACTIONS(8915), + [sym_newline] = ACTIONS(8918), + [anon_sym_COLON] = ACTIONS(8918), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8915), + [aux_sym_frm_property_statement_token1] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8915), + [anon_sym_BANG] = ACTIONS(8918), + [aux_sym__attribute_identifier_token1] = ACTIONS(8915), + [aux_sym_option_statement_token3] = ACTIONS(8915), + [aux_sym_type_declaration_token1] = ACTIONS(8921), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8921), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8915), + [aux_sym_enum_declaration_token1] = ACTIONS(8921), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8921), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8921), + [aux_sym_declare_function_statement_token1] = ACTIONS(8921), + [aux_sym_preprocessor_const_token1] = ACTIONS(8915), + [aux_sym__property_get_header_token1] = ACTIONS(8921), + [aux_sym_event_declaration_token1] = ACTIONS(8921), + [sym_static_modifier] = ACTIONS(8915), + [sym__dim_keyword] = ACTIONS(8915), + [sym__redim_keyword] = ACTIONS(8915), + [aux_sym_get_accessor_token1] = ACTIONS(8915), + [aux_sym_set_accessor_token1] = ACTIONS(8915), + [aux_sym_const_declaration_token1] = ACTIONS(8915), + [anon_sym_LPAREN] = ACTIONS(8918), + [aux_sym_as_type_clause_token2] = ACTIONS(8915), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8915), + [aux_sym_visibility_token1] = ACTIONS(8915), + [aux_sym_visibility_token2] = ACTIONS(8915), + [aux_sym_elseif_fragment_token1] = ACTIONS(8915), + [aux_sym_else_fragment_token1] = ACTIONS(8915), + [aux_sym_select_statement_token1] = ACTIONS(8915), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8915), + [aux_sym__for_header_token1] = ACTIONS(8915), + [aux_sym_do_statement_token1] = ACTIONS(8915), + [aux_sym_do_condition_token1] = ACTIONS(8915), + [aux_sym_with_statement_token1] = ACTIONS(8915), + [aux_sym_exit_statement_token1] = ACTIONS(8915), + [sym_end_statement] = ACTIONS(8918), + [aux_sym_on_goto_statement_token1] = ACTIONS(8915), + [aux_sym_on_goto_statement_token2] = ACTIONS(8915), + [aux_sym_on_error_statement_token2] = ACTIONS(8915), + [sym__ambiguous_redim_statement] = ACTIONS(8918), + [aux_sym_erase_statement_token1] = ACTIONS(8915), + [aux_sym_open_statement_token1] = ACTIONS(8915), + [aux_sym_file_mode_token2] = ACTIONS(8915), + [aux_sym_file_access_token2] = ACTIONS(8915), + [aux_sym_file_lock_token2] = ACTIONS(8915), + [aux_sym_print_statement_token1] = ACTIONS(8915), + [anon_sym_PLUS] = ACTIONS(8918), + [anon_sym_DASH] = ACTIONS(8915), + [anon_sym_QMARK] = ACTIONS(8918), + [aux_sym_close_statement_token1] = ACTIONS(8915), + [aux_sym_put_statement_token1] = ACTIONS(8915), + [aux_sym_unlock_statement_token1] = ACTIONS(8915), + [aux_sym_seek_statement_token1] = ACTIONS(8915), + [sym_reset_statement] = ACTIONS(8915), + [aux_sym_raise_event_statement_token1] = ACTIONS(8915), + [sym_stop_statement] = ACTIONS(8915), + [sym_beep_statement] = ACTIONS(8915), + [aux_sym_unload_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token2] = ACTIONS(8915), + [aux_sym_def_type_statement_token3] = ACTIONS(8915), + [aux_sym_def_type_statement_token4] = ACTIONS(8915), + [aux_sym_def_type_statement_token5] = ACTIONS(8915), + [aux_sym_def_type_statement_token6] = ACTIONS(8915), + [aux_sym_def_type_statement_token7] = ACTIONS(8915), + [aux_sym_def_type_statement_token8] = ACTIONS(8915), + [aux_sym_def_type_statement_token9] = ACTIONS(8915), + [aux_sym_def_type_statement_token10] = ACTIONS(8915), + [aux_sym_def_type_statement_token11] = ACTIONS(8915), + [aux_sym_def_type_statement_token12] = ACTIONS(8915), + [aux_sym_def_type_statement_token13] = ACTIONS(8915), + [aux_sym_def_type_statement_token14] = ACTIONS(8915), + [aux_sym_call_statement_token1] = ACTIONS(8915), + [sym__ambiguous_call_statement] = ACTIONS(8915), + [aux_sym_addressof_expression_token1] = ACTIONS(8915), + [aux_sym_type_of_expression_token1] = ACTIONS(8915), + [aux_sym_unary_expression_token1] = ACTIONS(8915), + [sym_string_literal] = ACTIONS(8918), + [sym_number_literal] = ACTIONS(8918), + [aux_sym_boolean_literal_token1] = ACTIONS(8915), + [aux_sym_boolean_literal_token2] = ACTIONS(8915), + [sym_nothing_literal] = ACTIONS(8915), + [sym_null_literal] = ACTIONS(8915), + [sym_empty_literal] = ACTIONS(8915), + [sym_date_literal] = ACTIONS(8918), + [anon_sym_POUND] = ACTIONS(8915), + }, + [STATE(4224)] = { + [sym_identifier] = ACTIONS(8196), + [sym_newline] = ACTIONS(8198), + [anon_sym_COLON] = ACTIONS(8198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8196), + [aux_sym_frm_property_statement_token1] = ACTIONS(8196), + [anon_sym_DOT] = ACTIONS(8196), + [anon_sym_BANG] = ACTIONS(8198), + [aux_sym__attribute_identifier_token1] = ACTIONS(8196), + [aux_sym_option_statement_token3] = ACTIONS(8196), + [aux_sym_type_declaration_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8196), + [aux_sym_enum_declaration_token1] = ACTIONS(8196), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8196), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8196), + [aux_sym_declare_function_statement_token1] = ACTIONS(8196), + [aux_sym_preprocessor_const_token1] = ACTIONS(8196), + [aux_sym__property_get_header_token1] = ACTIONS(8196), + [aux_sym_event_declaration_token1] = ACTIONS(8196), + [sym_static_modifier] = ACTIONS(8196), + [sym__dim_keyword] = ACTIONS(8196), + [sym__redim_keyword] = ACTIONS(8196), + [aux_sym_get_accessor_token1] = ACTIONS(8196), + [aux_sym_set_accessor_token1] = ACTIONS(8196), + [anon_sym_COMMA] = ACTIONS(8198), + [aux_sym_const_declaration_token1] = ACTIONS(8196), + [anon_sym_LPAREN] = ACTIONS(8198), + [aux_sym_as_type_clause_token2] = ACTIONS(8196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8196), + [aux_sym_visibility_token1] = ACTIONS(8196), + [aux_sym_visibility_token2] = ACTIONS(8196), + [aux_sym_elseif_fragment_token1] = ACTIONS(8196), + [aux_sym_else_fragment_token1] = ACTIONS(8196), + [aux_sym_select_statement_token1] = ACTIONS(8196), + [aux_sym__for_header_token1] = ACTIONS(8196), + [aux_sym_do_statement_token1] = ACTIONS(8196), + [aux_sym_do_condition_token1] = ACTIONS(8196), + [aux_sym_with_statement_token1] = ACTIONS(8196), + [aux_sym_exit_statement_token1] = ACTIONS(8196), + [sym_end_statement] = ACTIONS(8198), + [aux_sym_on_goto_statement_token1] = ACTIONS(8196), + [aux_sym_on_goto_statement_token2] = ACTIONS(8196), + [aux_sym_on_error_statement_token2] = ACTIONS(8196), + [sym__ambiguous_redim_statement] = ACTIONS(8198), + [aux_sym_erase_statement_token1] = ACTIONS(8196), + [aux_sym_open_statement_token1] = ACTIONS(8196), + [aux_sym_file_mode_token2] = ACTIONS(8196), + [aux_sym_file_access_token2] = ACTIONS(8196), + [aux_sym_file_lock_token2] = ACTIONS(8196), + [aux_sym_print_statement_token1] = ACTIONS(8196), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(8196), + [anon_sym_QMARK] = ACTIONS(8198), + [aux_sym_close_statement_token1] = ACTIONS(8196), + [aux_sym_put_statement_token1] = ACTIONS(8196), + [aux_sym_unlock_statement_token1] = ACTIONS(8196), + [aux_sym_seek_statement_token1] = ACTIONS(8196), + [sym_reset_statement] = ACTIONS(8196), + [aux_sym_raise_event_statement_token1] = ACTIONS(8196), + [sym_stop_statement] = ACTIONS(8196), + [sym_beep_statement] = ACTIONS(8196), + [aux_sym_unload_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token2] = ACTIONS(8196), + [aux_sym_def_type_statement_token3] = ACTIONS(8196), + [aux_sym_def_type_statement_token4] = ACTIONS(8196), + [aux_sym_def_type_statement_token5] = ACTIONS(8196), + [aux_sym_def_type_statement_token6] = ACTIONS(8196), + [aux_sym_def_type_statement_token7] = ACTIONS(8196), + [aux_sym_def_type_statement_token8] = ACTIONS(8196), + [aux_sym_def_type_statement_token9] = ACTIONS(8196), + [aux_sym_def_type_statement_token10] = ACTIONS(8196), + [aux_sym_def_type_statement_token11] = ACTIONS(8196), + [aux_sym_def_type_statement_token12] = ACTIONS(8196), + [aux_sym_def_type_statement_token13] = ACTIONS(8196), + [aux_sym_def_type_statement_token14] = ACTIONS(8196), + [aux_sym_call_statement_token1] = ACTIONS(8196), + [sym__ambiguous_call_statement] = ACTIONS(8196), + [aux_sym_addressof_expression_token1] = ACTIONS(8196), + [aux_sym_type_of_expression_token1] = ACTIONS(8196), + [aux_sym_unary_expression_token1] = ACTIONS(8196), + [sym_string_literal] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8198), + [aux_sym_boolean_literal_token1] = ACTIONS(8196), + [aux_sym_boolean_literal_token2] = ACTIONS(8196), + [sym_nothing_literal] = ACTIONS(8196), + [sym_null_literal] = ACTIONS(8196), + [sym_empty_literal] = ACTIONS(8196), + [sym_date_literal] = ACTIONS(8198), + [anon_sym_POUND] = ACTIONS(8196), + }, + [STATE(4225)] = { + [sym_identifier] = ACTIONS(8980), + [sym_newline] = ACTIONS(8982), + [anon_sym_COLON] = ACTIONS(8982), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8980), + [aux_sym_frm_property_statement_token1] = ACTIONS(8980), + [anon_sym_DOT] = ACTIONS(8980), + [anon_sym_BANG] = ACTIONS(8982), + [aux_sym__attribute_identifier_token1] = ACTIONS(8980), + [aux_sym_option_statement_token3] = ACTIONS(8980), + [aux_sym_type_declaration_token1] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8980), + [aux_sym_enum_declaration_token1] = ACTIONS(8980), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8980), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8980), + [aux_sym_declare_function_statement_token1] = ACTIONS(8980), + [aux_sym_preprocessor_const_token1] = ACTIONS(8980), + [aux_sym__property_get_header_token1] = ACTIONS(8980), + [aux_sym_event_declaration_token1] = ACTIONS(8980), + [sym_static_modifier] = ACTIONS(8980), + [sym__dim_keyword] = ACTIONS(8980), + [sym__redim_keyword] = ACTIONS(8980), + [aux_sym_get_accessor_token1] = ACTIONS(8980), + [aux_sym_set_accessor_token1] = ACTIONS(8980), + [aux_sym_const_declaration_token1] = ACTIONS(8980), + [anon_sym_LPAREN] = ACTIONS(8982), + [aux_sym_as_type_clause_token2] = ACTIONS(8980), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8980), + [aux_sym_visibility_token1] = ACTIONS(8980), + [aux_sym_visibility_token2] = ACTIONS(8980), + [aux_sym_elseif_fragment_token1] = ACTIONS(8980), + [aux_sym_else_fragment_token1] = ACTIONS(8980), + [aux_sym_select_statement_token1] = ACTIONS(8980), + [aux_sym__for_header_token1] = ACTIONS(8980), + [aux_sym_do_statement_token1] = ACTIONS(8980), + [aux_sym_do_condition_token1] = ACTIONS(8980), + [aux_sym_with_statement_token1] = ACTIONS(8980), + [aux_sym_exit_statement_token1] = ACTIONS(8980), + [sym_end_statement] = ACTIONS(8982), + [aux_sym_on_goto_statement_token1] = ACTIONS(8980), + [aux_sym_on_goto_statement_token2] = ACTIONS(8980), + [aux_sym_on_error_statement_token2] = ACTIONS(8980), + [sym__ambiguous_redim_statement] = ACTIONS(8982), + [aux_sym_erase_statement_token1] = ACTIONS(8980), + [aux_sym_open_statement_token1] = ACTIONS(8980), + [aux_sym_open_statement_token3] = ACTIONS(9855), + [aux_sym_file_mode_token2] = ACTIONS(8980), + [aux_sym_file_access_token2] = ACTIONS(8980), + [aux_sym_file_lock_token2] = ACTIONS(8980), + [aux_sym_print_statement_token1] = ACTIONS(8980), + [anon_sym_PLUS] = ACTIONS(8982), + [anon_sym_DASH] = ACTIONS(8980), + [anon_sym_QMARK] = ACTIONS(8982), + [aux_sym_close_statement_token1] = ACTIONS(8980), + [aux_sym_put_statement_token1] = ACTIONS(8980), + [aux_sym_unlock_statement_token1] = ACTIONS(8980), + [aux_sym_seek_statement_token1] = ACTIONS(8980), + [sym_reset_statement] = ACTIONS(8980), + [aux_sym_raise_event_statement_token1] = ACTIONS(8980), + [sym_stop_statement] = ACTIONS(8980), + [sym_beep_statement] = ACTIONS(8980), + [aux_sym_unload_statement_token1] = ACTIONS(8980), + [aux_sym_def_type_statement_token1] = ACTIONS(8980), + [aux_sym_def_type_statement_token2] = ACTIONS(8980), + [aux_sym_def_type_statement_token3] = ACTIONS(8980), + [aux_sym_def_type_statement_token4] = ACTIONS(8980), + [aux_sym_def_type_statement_token5] = ACTIONS(8980), + [aux_sym_def_type_statement_token6] = ACTIONS(8980), + [aux_sym_def_type_statement_token7] = ACTIONS(8980), + [aux_sym_def_type_statement_token8] = ACTIONS(8980), + [aux_sym_def_type_statement_token9] = ACTIONS(8980), + [aux_sym_def_type_statement_token10] = ACTIONS(8980), + [aux_sym_def_type_statement_token11] = ACTIONS(8980), + [aux_sym_def_type_statement_token12] = ACTIONS(8980), + [aux_sym_def_type_statement_token13] = ACTIONS(8980), + [aux_sym_def_type_statement_token14] = ACTIONS(8980), + [aux_sym_call_statement_token1] = ACTIONS(8980), + [sym__ambiguous_call_statement] = ACTIONS(8980), + [aux_sym_addressof_expression_token1] = ACTIONS(8980), + [aux_sym_type_of_expression_token1] = ACTIONS(8980), + [aux_sym_unary_expression_token1] = ACTIONS(8980), + [sym_string_literal] = ACTIONS(8982), + [sym_number_literal] = ACTIONS(8982), + [aux_sym_boolean_literal_token1] = ACTIONS(8980), + [aux_sym_boolean_literal_token2] = ACTIONS(8980), + [sym_nothing_literal] = ACTIONS(8980), + [sym_null_literal] = ACTIONS(8980), + [sym_empty_literal] = ACTIONS(8980), + [sym_date_literal] = ACTIONS(8982), + [anon_sym_POUND] = ACTIONS(8980), + }, + [STATE(4226)] = { + [sym_identifier] = ACTIONS(8756), + [sym_newline] = ACTIONS(8759), + [anon_sym_COLON] = ACTIONS(8759), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8756), + [aux_sym_frm_property_statement_token1] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8756), + [anon_sym_BANG] = ACTIONS(8759), + [aux_sym__attribute_identifier_token1] = ACTIONS(8756), + [aux_sym_option_statement_token3] = ACTIONS(8756), + [aux_sym_type_declaration_token1] = ACTIONS(8762), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8762), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8756), + [aux_sym_enum_declaration_token1] = ACTIONS(8762), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8762), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8762), + [aux_sym_declare_function_statement_token1] = ACTIONS(8762), + [aux_sym_preprocessor_const_token1] = ACTIONS(8756), + [aux_sym__property_get_header_token1] = ACTIONS(8762), + [aux_sym_event_declaration_token1] = ACTIONS(8762), + [sym_static_modifier] = ACTIONS(8756), + [sym__dim_keyword] = ACTIONS(8756), + [sym__redim_keyword] = ACTIONS(8756), + [aux_sym_get_accessor_token1] = ACTIONS(8756), + [aux_sym_set_accessor_token1] = ACTIONS(8756), + [aux_sym_const_declaration_token1] = ACTIONS(8756), + [anon_sym_LPAREN] = ACTIONS(8759), + [aux_sym_as_type_clause_token2] = ACTIONS(8756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8756), + [aux_sym_visibility_token1] = ACTIONS(8756), + [aux_sym_visibility_token2] = ACTIONS(8756), + [aux_sym_elseif_fragment_token1] = ACTIONS(8756), + [aux_sym_else_fragment_token1] = ACTIONS(8756), + [aux_sym_select_statement_token1] = ACTIONS(8756), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8756), + [aux_sym__for_header_token1] = ACTIONS(8756), + [aux_sym_do_statement_token1] = ACTIONS(8756), + [aux_sym_do_condition_token1] = ACTIONS(8756), + [aux_sym_with_statement_token1] = ACTIONS(8756), + [aux_sym_exit_statement_token1] = ACTIONS(8756), + [sym_end_statement] = ACTIONS(8759), + [aux_sym_on_goto_statement_token1] = ACTIONS(8756), + [aux_sym_on_goto_statement_token2] = ACTIONS(8756), + [aux_sym_on_error_statement_token2] = ACTIONS(8756), + [sym__ambiguous_redim_statement] = ACTIONS(8759), + [aux_sym_erase_statement_token1] = ACTIONS(8756), + [aux_sym_open_statement_token1] = ACTIONS(8756), + [aux_sym_file_mode_token2] = ACTIONS(8756), + [aux_sym_file_access_token2] = ACTIONS(8756), + [aux_sym_file_lock_token2] = ACTIONS(8756), + [aux_sym_print_statement_token1] = ACTIONS(8756), + [anon_sym_PLUS] = ACTIONS(8759), + [anon_sym_DASH] = ACTIONS(8756), + [anon_sym_QMARK] = ACTIONS(8759), + [aux_sym_close_statement_token1] = ACTIONS(8756), + [aux_sym_put_statement_token1] = ACTIONS(8756), + [aux_sym_unlock_statement_token1] = ACTIONS(8756), + [aux_sym_seek_statement_token1] = ACTIONS(8756), + [sym_reset_statement] = ACTIONS(8756), + [aux_sym_raise_event_statement_token1] = ACTIONS(8756), + [sym_stop_statement] = ACTIONS(8756), + [sym_beep_statement] = ACTIONS(8756), + [aux_sym_unload_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token2] = ACTIONS(8756), + [aux_sym_def_type_statement_token3] = ACTIONS(8756), + [aux_sym_def_type_statement_token4] = ACTIONS(8756), + [aux_sym_def_type_statement_token5] = ACTIONS(8756), + [aux_sym_def_type_statement_token6] = ACTIONS(8756), + [aux_sym_def_type_statement_token7] = ACTIONS(8756), + [aux_sym_def_type_statement_token8] = ACTIONS(8756), + [aux_sym_def_type_statement_token9] = ACTIONS(8756), + [aux_sym_def_type_statement_token10] = ACTIONS(8756), + [aux_sym_def_type_statement_token11] = ACTIONS(8756), + [aux_sym_def_type_statement_token12] = ACTIONS(8756), + [aux_sym_def_type_statement_token13] = ACTIONS(8756), + [aux_sym_def_type_statement_token14] = ACTIONS(8756), + [aux_sym_call_statement_token1] = ACTIONS(8756), + [sym__ambiguous_call_statement] = ACTIONS(8756), + [aux_sym_addressof_expression_token1] = ACTIONS(8756), + [aux_sym_type_of_expression_token1] = ACTIONS(8756), + [aux_sym_unary_expression_token1] = ACTIONS(8756), + [sym_string_literal] = ACTIONS(8759), + [sym_number_literal] = ACTIONS(8759), + [aux_sym_boolean_literal_token1] = ACTIONS(8756), + [aux_sym_boolean_literal_token2] = ACTIONS(8756), + [sym_nothing_literal] = ACTIONS(8756), + [sym_null_literal] = ACTIONS(8756), + [sym_empty_literal] = ACTIONS(8756), + [sym_date_literal] = ACTIONS(8759), + [anon_sym_POUND] = ACTIONS(8756), + }, + [STATE(4227)] = { + [sym_parameter_list] = STATE(4327), + [sym_identifier] = ACTIONS(8827), + [sym_newline] = ACTIONS(8829), + [anon_sym_COLON] = ACTIONS(8829), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8827), + [aux_sym_frm_property_statement_token1] = ACTIONS(8827), + [anon_sym_DOT] = ACTIONS(8827), + [anon_sym_BANG] = ACTIONS(8829), + [aux_sym__attribute_identifier_token1] = ACTIONS(8827), + [aux_sym_option_statement_token3] = ACTIONS(8827), + [aux_sym_type_declaration_token1] = ACTIONS(8827), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8827), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8827), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8827), + [aux_sym_enum_declaration_token1] = ACTIONS(8827), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8827), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8827), + [aux_sym_declare_function_statement_token1] = ACTIONS(8827), + [aux_sym_preprocessor_const_token1] = ACTIONS(8827), + [aux_sym__property_get_header_token1] = ACTIONS(8827), + [aux_sym_event_declaration_token1] = ACTIONS(8827), + [sym_static_modifier] = ACTIONS(8827), + [sym__dim_keyword] = ACTIONS(8827), + [sym__redim_keyword] = ACTIONS(8827), + [aux_sym_get_accessor_token1] = ACTIONS(8827), + [aux_sym_set_accessor_token1] = ACTIONS(8827), + [aux_sym_const_declaration_token1] = ACTIONS(8827), + [anon_sym_LPAREN] = ACTIONS(9014), + [aux_sym_as_type_clause_token2] = ACTIONS(8827), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8827), + [aux_sym_visibility_token1] = ACTIONS(8827), + [aux_sym_visibility_token2] = ACTIONS(8827), + [aux_sym_elseif_fragment_token1] = ACTIONS(8827), + [aux_sym_else_fragment_token1] = ACTIONS(8827), + [aux_sym_select_statement_token1] = ACTIONS(8827), + [aux_sym__for_header_token1] = ACTIONS(8827), + [aux_sym_do_statement_token1] = ACTIONS(8827), + [aux_sym_do_condition_token1] = ACTIONS(8827), + [aux_sym_with_statement_token1] = ACTIONS(8827), + [aux_sym_exit_statement_token1] = ACTIONS(8827), + [sym_end_statement] = ACTIONS(8829), + [aux_sym_on_goto_statement_token1] = ACTIONS(8827), + [aux_sym_on_goto_statement_token2] = ACTIONS(8827), + [aux_sym_on_error_statement_token2] = ACTIONS(8827), + [sym__ambiguous_redim_statement] = ACTIONS(8829), + [aux_sym_erase_statement_token1] = ACTIONS(8827), + [aux_sym_open_statement_token1] = ACTIONS(8827), + [aux_sym_file_mode_token2] = ACTIONS(8827), + [aux_sym_file_access_token2] = ACTIONS(8827), + [aux_sym_file_lock_token2] = ACTIONS(8827), + [aux_sym_print_statement_token1] = ACTIONS(8827), + [anon_sym_PLUS] = ACTIONS(8829), + [anon_sym_DASH] = ACTIONS(8827), + [anon_sym_QMARK] = ACTIONS(8829), + [aux_sym_close_statement_token1] = ACTIONS(8827), + [aux_sym_put_statement_token1] = ACTIONS(8827), + [aux_sym_unlock_statement_token1] = ACTIONS(8827), + [aux_sym_seek_statement_token1] = ACTIONS(8827), + [sym_reset_statement] = ACTIONS(8827), + [aux_sym_raise_event_statement_token1] = ACTIONS(8827), + [sym_stop_statement] = ACTIONS(8827), + [sym_beep_statement] = ACTIONS(8827), + [aux_sym_unload_statement_token1] = ACTIONS(8827), + [aux_sym_def_type_statement_token1] = ACTIONS(8827), + [aux_sym_def_type_statement_token2] = ACTIONS(8827), + [aux_sym_def_type_statement_token3] = ACTIONS(8827), + [aux_sym_def_type_statement_token4] = ACTIONS(8827), + [aux_sym_def_type_statement_token5] = ACTIONS(8827), + [aux_sym_def_type_statement_token6] = ACTIONS(8827), + [aux_sym_def_type_statement_token7] = ACTIONS(8827), + [aux_sym_def_type_statement_token8] = ACTIONS(8827), + [aux_sym_def_type_statement_token9] = ACTIONS(8827), + [aux_sym_def_type_statement_token10] = ACTIONS(8827), + [aux_sym_def_type_statement_token11] = ACTIONS(8827), + [aux_sym_def_type_statement_token12] = ACTIONS(8827), + [aux_sym_def_type_statement_token13] = ACTIONS(8827), + [aux_sym_def_type_statement_token14] = ACTIONS(8827), + [aux_sym_call_statement_token1] = ACTIONS(8827), + [sym__ambiguous_call_statement] = ACTIONS(8827), + [aux_sym_addressof_expression_token1] = ACTIONS(8827), + [aux_sym_type_of_expression_token1] = ACTIONS(8827), + [aux_sym_unary_expression_token1] = ACTIONS(8827), + [sym_string_literal] = ACTIONS(8829), + [sym_number_literal] = ACTIONS(8829), + [aux_sym_boolean_literal_token1] = ACTIONS(8827), + [aux_sym_boolean_literal_token2] = ACTIONS(8827), + [sym_nothing_literal] = ACTIONS(8827), + [sym_null_literal] = ACTIONS(8827), + [sym_empty_literal] = ACTIONS(8827), + [sym_date_literal] = ACTIONS(8829), + [anon_sym_POUND] = ACTIONS(8827), + }, + [STATE(4228)] = { + [sym_identifier] = ACTIONS(8923), + [sym_newline] = ACTIONS(8925), + [anon_sym_COLON] = ACTIONS(8925), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8923), + [aux_sym_frm_property_statement_token1] = ACTIONS(8923), + [anon_sym_DOT] = ACTIONS(8923), + [anon_sym_BANG] = ACTIONS(8925), + [aux_sym__attribute_identifier_token1] = ACTIONS(8923), + [aux_sym_option_statement_token3] = ACTIONS(8923), + [aux_sym_type_declaration_token1] = ACTIONS(8923), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8923), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8923), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8923), + [aux_sym_enum_declaration_token1] = ACTIONS(8923), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8923), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8923), + [aux_sym_declare_function_statement_token1] = ACTIONS(8923), + [aux_sym_preprocessor_const_token1] = ACTIONS(8923), + [aux_sym__property_get_header_token1] = ACTIONS(8923), + [aux_sym_event_declaration_token1] = ACTIONS(8923), + [sym_static_modifier] = ACTIONS(8923), + [sym__dim_keyword] = ACTIONS(8923), + [sym__redim_keyword] = ACTIONS(8923), + [aux_sym_get_accessor_token1] = ACTIONS(8923), + [aux_sym_set_accessor_token1] = ACTIONS(8923), + [aux_sym_const_declaration_token1] = ACTIONS(8923), + [anon_sym_LPAREN] = ACTIONS(8925), + [aux_sym_as_type_clause_token1] = ACTIONS(8923), + [aux_sym_as_type_clause_token2] = ACTIONS(8923), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8923), + [aux_sym_visibility_token1] = ACTIONS(8923), + [aux_sym_visibility_token2] = ACTIONS(8923), + [aux_sym_elseif_fragment_token1] = ACTIONS(8923), + [aux_sym_else_fragment_token1] = ACTIONS(8923), + [aux_sym_select_statement_token1] = ACTIONS(8923), + [aux_sym__for_header_token1] = ACTIONS(8923), + [aux_sym_do_statement_token1] = ACTIONS(8923), + [aux_sym_do_condition_token1] = ACTIONS(8923), + [aux_sym_with_statement_token1] = ACTIONS(8923), + [aux_sym_exit_statement_token1] = ACTIONS(8923), + [sym_end_statement] = ACTIONS(8925), + [aux_sym_on_goto_statement_token1] = ACTIONS(8923), + [aux_sym_on_goto_statement_token2] = ACTIONS(8923), + [aux_sym_on_error_statement_token2] = ACTIONS(8923), + [sym__ambiguous_redim_statement] = ACTIONS(8925), + [aux_sym_erase_statement_token1] = ACTIONS(8923), + [aux_sym_open_statement_token1] = ACTIONS(8923), + [aux_sym_file_mode_token2] = ACTIONS(8923), + [aux_sym_file_access_token2] = ACTIONS(8923), + [aux_sym_file_lock_token2] = ACTIONS(8923), + [aux_sym_print_statement_token1] = ACTIONS(8923), + [anon_sym_PLUS] = ACTIONS(8925), + [anon_sym_DASH] = ACTIONS(8923), + [anon_sym_QMARK] = ACTIONS(8925), + [aux_sym_close_statement_token1] = ACTIONS(8923), + [aux_sym_put_statement_token1] = ACTIONS(8923), + [aux_sym_unlock_statement_token1] = ACTIONS(8923), + [aux_sym_seek_statement_token1] = ACTIONS(8923), + [sym_reset_statement] = ACTIONS(8923), + [aux_sym_raise_event_statement_token1] = ACTIONS(8923), + [sym_stop_statement] = ACTIONS(8923), + [sym_beep_statement] = ACTIONS(8923), + [aux_sym_unload_statement_token1] = ACTIONS(8923), + [aux_sym_def_type_statement_token1] = ACTIONS(8923), + [aux_sym_def_type_statement_token2] = ACTIONS(8923), + [aux_sym_def_type_statement_token3] = ACTIONS(8923), + [aux_sym_def_type_statement_token4] = ACTIONS(8923), + [aux_sym_def_type_statement_token5] = ACTIONS(8923), + [aux_sym_def_type_statement_token6] = ACTIONS(8923), + [aux_sym_def_type_statement_token7] = ACTIONS(8923), + [aux_sym_def_type_statement_token8] = ACTIONS(8923), + [aux_sym_def_type_statement_token9] = ACTIONS(8923), + [aux_sym_def_type_statement_token10] = ACTIONS(8923), + [aux_sym_def_type_statement_token11] = ACTIONS(8923), + [aux_sym_def_type_statement_token12] = ACTIONS(8923), + [aux_sym_def_type_statement_token13] = ACTIONS(8923), + [aux_sym_def_type_statement_token14] = ACTIONS(8923), + [aux_sym_call_statement_token1] = ACTIONS(8923), + [sym__ambiguous_call_statement] = ACTIONS(8923), + [aux_sym_addressof_expression_token1] = ACTIONS(8923), + [aux_sym_type_of_expression_token1] = ACTIONS(8923), + [aux_sym_unary_expression_token1] = ACTIONS(8923), + [sym_string_literal] = ACTIONS(8925), + [sym_number_literal] = ACTIONS(8925), + [aux_sym_boolean_literal_token1] = ACTIONS(8923), + [aux_sym_boolean_literal_token2] = ACTIONS(8923), + [sym_nothing_literal] = ACTIONS(8923), + [sym_null_literal] = ACTIONS(8923), + [sym_empty_literal] = ACTIONS(8923), + [sym_date_literal] = ACTIONS(8925), + [anon_sym_POUND] = ACTIONS(8923), + }, + [STATE(4229)] = { + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_declaration_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_enum_declaration_token1] = ACTIONS(7949), + [aux_sym_declare_sub_statement_token1] = ACTIONS(7949), + [aux_sym_declare_sub_statement_token2] = ACTIONS(7949), + [aux_sym_declare_function_statement_token1] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [aux_sym__property_get_header_token1] = ACTIONS(7949), + [aux_sym_event_declaration_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(7951), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(4230)] = { + [sym_next_variable_list] = STATE(5878), + [sym__assignable_expression] = STATE(4950), + [sym__callable_expression] = STATE(4998), + [sym_call_expression] = STATE(4937), + [sym_member_expression] = STATE(5280), + [sym_qualified_member_expression] = STATE(5270), + [sym_implicit_member_expression] = STATE(5270), + [sym_identifier] = ACTIONS(9835), + [sym_newline] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6828), + [aux_sym_frm_property_statement_token1] = ACTIONS(9837), + [anon_sym_DOT] = ACTIONS(9839), + [anon_sym_BANG] = ACTIONS(9841), + [aux_sym__attribute_identifier_token1] = ACTIONS(6828), + [aux_sym_option_statement_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6828), + [aux_sym_preprocessor_const_token1] = ACTIONS(6828), + [sym_static_modifier] = ACTIONS(6828), + [sym__dim_keyword] = ACTIONS(6828), + [sym__redim_keyword] = ACTIONS(6828), + [aux_sym_get_accessor_token1] = ACTIONS(6828), + [aux_sym_set_accessor_token1] = ACTIONS(6828), + [aux_sym_const_declaration_token1] = ACTIONS(6828), + [anon_sym_LPAREN] = ACTIONS(6826), + [aux_sym_as_type_clause_token2] = ACTIONS(6828), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9843), + [aux_sym_visibility_token1] = ACTIONS(6828), + [aux_sym_visibility_token2] = ACTIONS(6828), + [aux_sym_elseif_fragment_token1] = ACTIONS(6828), + [aux_sym_else_fragment_token1] = ACTIONS(6828), + [aux_sym_select_statement_token1] = ACTIONS(6828), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6828), + [aux_sym__for_header_token1] = ACTIONS(6828), + [aux_sym_do_statement_token1] = ACTIONS(6828), + [aux_sym_do_statement_token2] = ACTIONS(6828), + [aux_sym_do_condition_token1] = ACTIONS(6828), + [aux_sym_with_statement_token1] = ACTIONS(6828), + [aux_sym_exit_statement_token1] = ACTIONS(6828), + [sym_end_statement] = ACTIONS(6826), + [aux_sym_on_goto_statement_token1] = ACTIONS(6828), + [aux_sym_on_goto_statement_token2] = ACTIONS(6828), + [aux_sym_on_error_statement_token2] = ACTIONS(6828), + [sym__ambiguous_redim_statement] = ACTIONS(6826), + [aux_sym_erase_statement_token1] = ACTIONS(6828), + [aux_sym_open_statement_token1] = ACTIONS(6828), + [aux_sym_file_mode_token2] = ACTIONS(6828), + [aux_sym_file_access_token2] = ACTIONS(6828), + [aux_sym_file_lock_token2] = ACTIONS(6828), + [aux_sym_print_statement_token1] = ACTIONS(6828), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_DASH] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6826), + [aux_sym_close_statement_token1] = ACTIONS(6828), + [aux_sym_put_statement_token1] = ACTIONS(6828), + [aux_sym_unlock_statement_token1] = ACTIONS(6828), + [aux_sym_seek_statement_token1] = ACTIONS(6828), + [sym_reset_statement] = ACTIONS(6828), + [aux_sym_raise_event_statement_token1] = ACTIONS(6828), + [sym_stop_statement] = ACTIONS(6828), + [sym_beep_statement] = ACTIONS(6828), + [aux_sym_unload_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token2] = ACTIONS(6828), + [aux_sym_def_type_statement_token3] = ACTIONS(6828), + [aux_sym_def_type_statement_token4] = ACTIONS(6828), + [aux_sym_def_type_statement_token5] = ACTIONS(6828), + [aux_sym_def_type_statement_token6] = ACTIONS(6828), + [aux_sym_def_type_statement_token7] = ACTIONS(6828), + [aux_sym_def_type_statement_token8] = ACTIONS(6828), + [aux_sym_def_type_statement_token9] = ACTIONS(6828), + [aux_sym_def_type_statement_token10] = ACTIONS(6828), + [aux_sym_def_type_statement_token11] = ACTIONS(6828), + [aux_sym_def_type_statement_token12] = ACTIONS(6828), + [aux_sym_def_type_statement_token13] = ACTIONS(6828), + [aux_sym_def_type_statement_token14] = ACTIONS(6828), + [aux_sym_call_statement_token1] = ACTIONS(6828), + [sym__ambiguous_call_statement] = ACTIONS(6828), + [aux_sym_addressof_expression_token1] = ACTIONS(6828), + [aux_sym_type_of_expression_token1] = ACTIONS(6828), + [aux_sym_unary_expression_token1] = ACTIONS(6828), + [sym_string_literal] = ACTIONS(6826), + [sym_number_literal] = ACTIONS(6826), + [aux_sym_boolean_literal_token1] = ACTIONS(6828), + [aux_sym_boolean_literal_token2] = ACTIONS(6828), + [sym_nothing_literal] = ACTIONS(6828), + [sym_null_literal] = ACTIONS(6828), + [sym_empty_literal] = ACTIONS(6828), + [sym_date_literal] = ACTIONS(6826), + [anon_sym_POUND] = ACTIONS(6828), + }, + [STATE(4231)] = { + [sym_next_variable_list] = STATE(5925), + [sym__assignable_expression] = STATE(4950), + [sym__callable_expression] = STATE(4998), + [sym_call_expression] = STATE(4937), + [sym_member_expression] = STATE(5280), + [sym_qualified_member_expression] = STATE(5270), + [sym_implicit_member_expression] = STATE(5270), + [sym_identifier] = ACTIONS(9835), + [sym_newline] = ACTIONS(6863), + [anon_sym_COLON] = ACTIONS(6863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6865), + [aux_sym_frm_property_statement_token1] = ACTIONS(9837), + [anon_sym_DOT] = ACTIONS(9839), + [anon_sym_BANG] = ACTIONS(9841), + [aux_sym__attribute_identifier_token1] = ACTIONS(6865), + [aux_sym_option_statement_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6865), + [aux_sym_preprocessor_const_token1] = ACTIONS(6865), + [sym_static_modifier] = ACTIONS(6865), + [sym__dim_keyword] = ACTIONS(6865), + [sym__redim_keyword] = ACTIONS(6865), + [aux_sym_get_accessor_token1] = ACTIONS(6865), + [aux_sym_set_accessor_token1] = ACTIONS(6865), + [aux_sym_const_declaration_token1] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6863), + [aux_sym_as_type_clause_token2] = ACTIONS(6865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9843), + [aux_sym_visibility_token1] = ACTIONS(6865), + [aux_sym_visibility_token2] = ACTIONS(6865), + [aux_sym_elseif_fragment_token1] = ACTIONS(6865), + [aux_sym_else_fragment_token1] = ACTIONS(6865), + [aux_sym_select_statement_token1] = ACTIONS(6865), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6865), + [aux_sym__for_header_token1] = ACTIONS(6865), + [aux_sym_do_statement_token1] = ACTIONS(6865), + [aux_sym_do_statement_token2] = ACTIONS(6865), + [aux_sym_do_condition_token1] = ACTIONS(6865), + [aux_sym_with_statement_token1] = ACTIONS(6865), + [aux_sym_exit_statement_token1] = ACTIONS(6865), + [sym_end_statement] = ACTIONS(6863), + [aux_sym_on_goto_statement_token1] = ACTIONS(6865), + [aux_sym_on_goto_statement_token2] = ACTIONS(6865), + [aux_sym_on_error_statement_token2] = ACTIONS(6865), + [sym__ambiguous_redim_statement] = ACTIONS(6863), + [aux_sym_erase_statement_token1] = ACTIONS(6865), + [aux_sym_open_statement_token1] = ACTIONS(6865), + [aux_sym_file_mode_token2] = ACTIONS(6865), + [aux_sym_file_access_token2] = ACTIONS(6865), + [aux_sym_file_lock_token2] = ACTIONS(6865), + [aux_sym_print_statement_token1] = ACTIONS(6865), + [anon_sym_PLUS] = ACTIONS(6863), + [anon_sym_DASH] = ACTIONS(6865), + [anon_sym_QMARK] = ACTIONS(6863), + [aux_sym_close_statement_token1] = ACTIONS(6865), + [aux_sym_put_statement_token1] = ACTIONS(6865), + [aux_sym_unlock_statement_token1] = ACTIONS(6865), + [aux_sym_seek_statement_token1] = ACTIONS(6865), + [sym_reset_statement] = ACTIONS(6865), + [aux_sym_raise_event_statement_token1] = ACTIONS(6865), + [sym_stop_statement] = ACTIONS(6865), + [sym_beep_statement] = ACTIONS(6865), + [aux_sym_unload_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token2] = ACTIONS(6865), + [aux_sym_def_type_statement_token3] = ACTIONS(6865), + [aux_sym_def_type_statement_token4] = ACTIONS(6865), + [aux_sym_def_type_statement_token5] = ACTIONS(6865), + [aux_sym_def_type_statement_token6] = ACTIONS(6865), + [aux_sym_def_type_statement_token7] = ACTIONS(6865), + [aux_sym_def_type_statement_token8] = ACTIONS(6865), + [aux_sym_def_type_statement_token9] = ACTIONS(6865), + [aux_sym_def_type_statement_token10] = ACTIONS(6865), + [aux_sym_def_type_statement_token11] = ACTIONS(6865), + [aux_sym_def_type_statement_token12] = ACTIONS(6865), + [aux_sym_def_type_statement_token13] = ACTIONS(6865), + [aux_sym_def_type_statement_token14] = ACTIONS(6865), + [aux_sym_call_statement_token1] = ACTIONS(6865), + [sym__ambiguous_call_statement] = ACTIONS(6865), + [aux_sym_addressof_expression_token1] = ACTIONS(6865), + [aux_sym_type_of_expression_token1] = ACTIONS(6865), + [aux_sym_unary_expression_token1] = ACTIONS(6865), + [sym_string_literal] = ACTIONS(6863), + [sym_number_literal] = ACTIONS(6863), + [aux_sym_boolean_literal_token1] = ACTIONS(6865), + [aux_sym_boolean_literal_token2] = ACTIONS(6865), + [sym_nothing_literal] = ACTIONS(6865), + [sym_null_literal] = ACTIONS(6865), + [sym_empty_literal] = ACTIONS(6865), + [sym_date_literal] = ACTIONS(6863), + [anon_sym_POUND] = ACTIONS(6865), + }, + [STATE(4232)] = { + [sym_next_variable_list] = STATE(6185), + [sym__assignable_expression] = STATE(4950), + [sym__callable_expression] = STATE(4998), + [sym_call_expression] = STATE(4937), + [sym_member_expression] = STATE(5280), + [sym_qualified_member_expression] = STATE(5270), + [sym_implicit_member_expression] = STATE(5270), + [sym_identifier] = ACTIONS(9835), + [sym_newline] = ACTIONS(6842), + [anon_sym_COLON] = ACTIONS(6842), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6844), + [aux_sym_frm_property_statement_token1] = ACTIONS(9837), + [anon_sym_DOT] = ACTIONS(9839), + [anon_sym_BANG] = ACTIONS(9841), + [aux_sym__attribute_identifier_token1] = ACTIONS(6844), + [aux_sym_option_statement_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6844), + [aux_sym_preprocessor_const_token1] = ACTIONS(6844), + [sym_static_modifier] = ACTIONS(6844), + [sym__dim_keyword] = ACTIONS(6844), + [sym__redim_keyword] = ACTIONS(6844), + [aux_sym_get_accessor_token1] = ACTIONS(6844), + [aux_sym_set_accessor_token1] = ACTIONS(6844), + [aux_sym_const_declaration_token1] = ACTIONS(6844), + [anon_sym_LPAREN] = ACTIONS(6842), + [aux_sym_as_type_clause_token2] = ACTIONS(6844), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9843), + [aux_sym_visibility_token1] = ACTIONS(6844), + [aux_sym_visibility_token2] = ACTIONS(6844), + [aux_sym_elseif_fragment_token1] = ACTIONS(6844), + [aux_sym_else_fragment_token1] = ACTIONS(6844), + [aux_sym_select_statement_token1] = ACTIONS(6844), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6844), + [aux_sym__for_header_token1] = ACTIONS(6844), + [aux_sym_do_statement_token1] = ACTIONS(6844), + [aux_sym_do_statement_token2] = ACTIONS(6844), + [aux_sym_do_condition_token1] = ACTIONS(6844), + [aux_sym_with_statement_token1] = ACTIONS(6844), + [aux_sym_exit_statement_token1] = ACTIONS(6844), + [sym_end_statement] = ACTIONS(6842), + [aux_sym_on_goto_statement_token1] = ACTIONS(6844), + [aux_sym_on_goto_statement_token2] = ACTIONS(6844), + [aux_sym_on_error_statement_token2] = ACTIONS(6844), + [sym__ambiguous_redim_statement] = ACTIONS(6842), + [aux_sym_erase_statement_token1] = ACTIONS(6844), + [aux_sym_open_statement_token1] = ACTIONS(6844), + [aux_sym_file_mode_token2] = ACTIONS(6844), + [aux_sym_file_access_token2] = ACTIONS(6844), + [aux_sym_file_lock_token2] = ACTIONS(6844), + [aux_sym_print_statement_token1] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6842), + [aux_sym_close_statement_token1] = ACTIONS(6844), + [aux_sym_put_statement_token1] = ACTIONS(6844), + [aux_sym_unlock_statement_token1] = ACTIONS(6844), + [aux_sym_seek_statement_token1] = ACTIONS(6844), + [sym_reset_statement] = ACTIONS(6844), + [aux_sym_raise_event_statement_token1] = ACTIONS(6844), + [sym_stop_statement] = ACTIONS(6844), + [sym_beep_statement] = ACTIONS(6844), + [aux_sym_unload_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token2] = ACTIONS(6844), + [aux_sym_def_type_statement_token3] = ACTIONS(6844), + [aux_sym_def_type_statement_token4] = ACTIONS(6844), + [aux_sym_def_type_statement_token5] = ACTIONS(6844), + [aux_sym_def_type_statement_token6] = ACTIONS(6844), + [aux_sym_def_type_statement_token7] = ACTIONS(6844), + [aux_sym_def_type_statement_token8] = ACTIONS(6844), + [aux_sym_def_type_statement_token9] = ACTIONS(6844), + [aux_sym_def_type_statement_token10] = ACTIONS(6844), + [aux_sym_def_type_statement_token11] = ACTIONS(6844), + [aux_sym_def_type_statement_token12] = ACTIONS(6844), + [aux_sym_def_type_statement_token13] = ACTIONS(6844), + [aux_sym_def_type_statement_token14] = ACTIONS(6844), + [aux_sym_call_statement_token1] = ACTIONS(6844), + [sym__ambiguous_call_statement] = ACTIONS(6844), + [aux_sym_addressof_expression_token1] = ACTIONS(6844), + [aux_sym_type_of_expression_token1] = ACTIONS(6844), + [aux_sym_unary_expression_token1] = ACTIONS(6844), + [sym_string_literal] = ACTIONS(6842), + [sym_number_literal] = ACTIONS(6842), + [aux_sym_boolean_literal_token1] = ACTIONS(6844), + [aux_sym_boolean_literal_token2] = ACTIONS(6844), + [sym_nothing_literal] = ACTIONS(6844), + [sym_null_literal] = ACTIONS(6844), + [sym_empty_literal] = ACTIONS(6844), + [sym_date_literal] = ACTIONS(6842), + [anon_sym_POUND] = ACTIONS(6844), + }, + [STATE(4233)] = { + [sym_identifier] = ACTIONS(8835), + [sym_newline] = ACTIONS(8837), + [anon_sym_COLON] = ACTIONS(8837), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8835), + [aux_sym_frm_property_statement_token1] = ACTIONS(8835), + [anon_sym_DOT] = ACTIONS(8835), + [anon_sym_BANG] = ACTIONS(8837), + [aux_sym__attribute_identifier_token1] = ACTIONS(8835), + [aux_sym_option_statement_token3] = ACTIONS(8835), + [aux_sym_type_declaration_token1] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8835), + [aux_sym_enum_declaration_token1] = ACTIONS(8835), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8835), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8835), + [aux_sym_declare_function_statement_token1] = ACTIONS(8835), + [aux_sym_preprocessor_const_token1] = ACTIONS(8835), + [aux_sym__property_get_header_token1] = ACTIONS(8835), + [aux_sym_event_declaration_token1] = ACTIONS(8835), + [sym_static_modifier] = ACTIONS(8835), + [sym__dim_keyword] = ACTIONS(8835), + [sym__redim_keyword] = ACTIONS(8835), + [aux_sym_get_accessor_token1] = ACTIONS(8835), + [aux_sym_set_accessor_token1] = ACTIONS(8835), + [anon_sym_COMMA] = ACTIONS(8837), + [aux_sym_const_declaration_token1] = ACTIONS(8835), + [anon_sym_LPAREN] = ACTIONS(8837), + [aux_sym_as_type_clause_token2] = ACTIONS(8835), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8835), + [aux_sym_visibility_token1] = ACTIONS(8835), + [aux_sym_visibility_token2] = ACTIONS(8835), + [aux_sym_elseif_fragment_token1] = ACTIONS(8835), + [aux_sym_else_fragment_token1] = ACTIONS(8835), + [aux_sym_select_statement_token1] = ACTIONS(8835), + [aux_sym__for_header_token1] = ACTIONS(8835), + [aux_sym_do_statement_token1] = ACTIONS(8835), + [aux_sym_do_condition_token1] = ACTIONS(8835), + [aux_sym_with_statement_token1] = ACTIONS(8835), + [aux_sym_exit_statement_token1] = ACTIONS(8835), + [sym_end_statement] = ACTIONS(8837), + [aux_sym_on_goto_statement_token1] = ACTIONS(8835), + [aux_sym_on_goto_statement_token2] = ACTIONS(8835), + [aux_sym_on_error_statement_token2] = ACTIONS(8835), + [sym__ambiguous_redim_statement] = ACTIONS(8837), + [aux_sym_erase_statement_token1] = ACTIONS(8835), + [aux_sym_open_statement_token1] = ACTIONS(8835), + [aux_sym_file_mode_token2] = ACTIONS(8835), + [aux_sym_file_access_token2] = ACTIONS(8835), + [aux_sym_file_lock_token2] = ACTIONS(8835), + [aux_sym_print_statement_token1] = ACTIONS(8835), + [anon_sym_PLUS] = ACTIONS(8837), + [anon_sym_DASH] = ACTIONS(8835), + [anon_sym_QMARK] = ACTIONS(8837), + [aux_sym_close_statement_token1] = ACTIONS(8835), + [aux_sym_put_statement_token1] = ACTIONS(8835), + [aux_sym_unlock_statement_token1] = ACTIONS(8835), + [aux_sym_seek_statement_token1] = ACTIONS(8835), + [sym_reset_statement] = ACTIONS(8835), + [aux_sym_raise_event_statement_token1] = ACTIONS(8835), + [sym_stop_statement] = ACTIONS(8835), + [sym_beep_statement] = ACTIONS(8835), + [aux_sym_unload_statement_token1] = ACTIONS(8835), + [aux_sym_def_type_statement_token1] = ACTIONS(8835), + [aux_sym_def_type_statement_token2] = ACTIONS(8835), + [aux_sym_def_type_statement_token3] = ACTIONS(8835), + [aux_sym_def_type_statement_token4] = ACTIONS(8835), + [aux_sym_def_type_statement_token5] = ACTIONS(8835), + [aux_sym_def_type_statement_token6] = ACTIONS(8835), + [aux_sym_def_type_statement_token7] = ACTIONS(8835), + [aux_sym_def_type_statement_token8] = ACTIONS(8835), + [aux_sym_def_type_statement_token9] = ACTIONS(8835), + [aux_sym_def_type_statement_token10] = ACTIONS(8835), + [aux_sym_def_type_statement_token11] = ACTIONS(8835), + [aux_sym_def_type_statement_token12] = ACTIONS(8835), + [aux_sym_def_type_statement_token13] = ACTIONS(8835), + [aux_sym_def_type_statement_token14] = ACTIONS(8835), + [aux_sym_call_statement_token1] = ACTIONS(8835), + [sym__ambiguous_call_statement] = ACTIONS(8835), + [aux_sym_addressof_expression_token1] = ACTIONS(8835), + [aux_sym_type_of_expression_token1] = ACTIONS(8835), + [aux_sym_unary_expression_token1] = ACTIONS(8835), + [sym_string_literal] = ACTIONS(8837), + [sym_number_literal] = ACTIONS(8837), + [aux_sym_boolean_literal_token1] = ACTIONS(8835), + [aux_sym_boolean_literal_token2] = ACTIONS(8835), + [sym_nothing_literal] = ACTIONS(8835), + [sym_null_literal] = ACTIONS(8835), + [sym_empty_literal] = ACTIONS(8835), + [sym_date_literal] = ACTIONS(8837), + [anon_sym_POUND] = ACTIONS(8835), + }, + [STATE(4234)] = { + [sym_identifier] = ACTIONS(8809), + [sym_newline] = ACTIONS(8811), + [anon_sym_COLON] = ACTIONS(8811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8809), + [aux_sym_frm_property_statement_token1] = ACTIONS(8809), + [anon_sym_DOT] = ACTIONS(8809), + [anon_sym_BANG] = ACTIONS(8811), + [aux_sym__attribute_identifier_token1] = ACTIONS(8809), + [aux_sym_option_statement_token3] = ACTIONS(8809), + [aux_sym_type_declaration_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8809), + [aux_sym_enum_declaration_token1] = ACTIONS(8809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8809), + [aux_sym_declare_function_statement_token1] = ACTIONS(8809), + [aux_sym_preprocessor_const_token1] = ACTIONS(8809), + [aux_sym__property_get_header_token1] = ACTIONS(8809), + [aux_sym_event_declaration_token1] = ACTIONS(8809), + [sym_static_modifier] = ACTIONS(8809), + [sym__dim_keyword] = ACTIONS(8809), + [sym__redim_keyword] = ACTIONS(8809), + [aux_sym_get_accessor_token1] = ACTIONS(8809), + [aux_sym_set_accessor_token1] = ACTIONS(8809), + [aux_sym_const_declaration_token1] = ACTIONS(8809), + [anon_sym_LPAREN] = ACTIONS(8811), + [aux_sym_as_type_clause_token2] = ACTIONS(8809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8809), + [aux_sym_visibility_token1] = ACTIONS(8809), + [aux_sym_visibility_token2] = ACTIONS(8809), + [aux_sym_elseif_fragment_token1] = ACTIONS(8809), + [aux_sym_else_fragment_token1] = ACTIONS(8809), + [aux_sym_select_statement_token1] = ACTIONS(8809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8809), + [aux_sym__for_header_token1] = ACTIONS(8809), + [aux_sym_do_statement_token1] = ACTIONS(8809), + [aux_sym_do_condition_token1] = ACTIONS(8809), + [aux_sym_with_statement_token1] = ACTIONS(8809), + [aux_sym_exit_statement_token1] = ACTIONS(8809), + [sym_end_statement] = ACTIONS(8811), + [aux_sym_on_goto_statement_token1] = ACTIONS(8809), + [aux_sym_on_goto_statement_token2] = ACTIONS(8809), + [aux_sym_on_error_statement_token2] = ACTIONS(8809), + [sym__ambiguous_redim_statement] = ACTIONS(8811), + [aux_sym_erase_statement_token1] = ACTIONS(8809), + [aux_sym_open_statement_token1] = ACTIONS(8809), + [aux_sym_file_mode_token2] = ACTIONS(8809), + [aux_sym_file_access_token2] = ACTIONS(8809), + [aux_sym_file_lock_token2] = ACTIONS(8809), + [aux_sym_print_statement_token1] = ACTIONS(8809), + [anon_sym_PLUS] = ACTIONS(8811), + [anon_sym_DASH] = ACTIONS(8809), + [anon_sym_QMARK] = ACTIONS(8811), + [aux_sym_close_statement_token1] = ACTIONS(8809), + [aux_sym_put_statement_token1] = ACTIONS(8809), + [aux_sym_unlock_statement_token1] = ACTIONS(8809), + [aux_sym_seek_statement_token1] = ACTIONS(8809), + [sym_reset_statement] = ACTIONS(8809), + [aux_sym_raise_event_statement_token1] = ACTIONS(8809), + [sym_stop_statement] = ACTIONS(8809), + [sym_beep_statement] = ACTIONS(8809), + [aux_sym_unload_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token2] = ACTIONS(8809), + [aux_sym_def_type_statement_token3] = ACTIONS(8809), + [aux_sym_def_type_statement_token4] = ACTIONS(8809), + [aux_sym_def_type_statement_token5] = ACTIONS(8809), + [aux_sym_def_type_statement_token6] = ACTIONS(8809), + [aux_sym_def_type_statement_token7] = ACTIONS(8809), + [aux_sym_def_type_statement_token8] = ACTIONS(8809), + [aux_sym_def_type_statement_token9] = ACTIONS(8809), + [aux_sym_def_type_statement_token10] = ACTIONS(8809), + [aux_sym_def_type_statement_token11] = ACTIONS(8809), + [aux_sym_def_type_statement_token12] = ACTIONS(8809), + [aux_sym_def_type_statement_token13] = ACTIONS(8809), + [aux_sym_def_type_statement_token14] = ACTIONS(8809), + [aux_sym_call_statement_token1] = ACTIONS(8809), + [sym__ambiguous_call_statement] = ACTIONS(8809), + [aux_sym_addressof_expression_token1] = ACTIONS(8809), + [aux_sym_type_of_expression_token1] = ACTIONS(8809), + [aux_sym_unary_expression_token1] = ACTIONS(8809), + [sym_string_literal] = ACTIONS(8811), + [sym_number_literal] = ACTIONS(8811), + [aux_sym_boolean_literal_token1] = ACTIONS(8809), + [aux_sym_boolean_literal_token2] = ACTIONS(8809), + [sym_nothing_literal] = ACTIONS(8809), + [sym_null_literal] = ACTIONS(8809), + [sym_empty_literal] = ACTIONS(8809), + [sym_date_literal] = ACTIONS(8811), + [anon_sym_POUND] = ACTIONS(8809), + }, + [STATE(4235)] = { + [sym_parameter_list] = STATE(4344), + [sym_identifier] = ACTIONS(8676), + [sym_newline] = ACTIONS(8678), + [anon_sym_COLON] = ACTIONS(8678), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8676), + [aux_sym_frm_property_statement_token1] = ACTIONS(8676), + [anon_sym_DOT] = ACTIONS(8676), + [anon_sym_BANG] = ACTIONS(8678), + [aux_sym__attribute_identifier_token1] = ACTIONS(8676), + [aux_sym_option_statement_token3] = ACTIONS(8676), + [aux_sym_type_declaration_token1] = ACTIONS(8676), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8676), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8676), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8676), + [aux_sym_enum_declaration_token1] = ACTIONS(8676), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8676), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8676), + [aux_sym_declare_function_statement_token1] = ACTIONS(8676), + [aux_sym_preprocessor_const_token1] = ACTIONS(8676), + [aux_sym__property_get_header_token1] = ACTIONS(8676), + [aux_sym_event_declaration_token1] = ACTIONS(8676), + [sym_static_modifier] = ACTIONS(8676), + [sym__dim_keyword] = ACTIONS(8676), + [sym__redim_keyword] = ACTIONS(8676), + [aux_sym_get_accessor_token1] = ACTIONS(8676), + [aux_sym_set_accessor_token1] = ACTIONS(8676), + [aux_sym_const_declaration_token1] = ACTIONS(8676), + [anon_sym_LPAREN] = ACTIONS(9014), + [aux_sym_as_type_clause_token2] = ACTIONS(8676), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8676), + [aux_sym_visibility_token1] = ACTIONS(8676), + [aux_sym_visibility_token2] = ACTIONS(8676), + [aux_sym_elseif_fragment_token1] = ACTIONS(8676), + [aux_sym_else_fragment_token1] = ACTIONS(8676), + [aux_sym_select_statement_token1] = ACTIONS(8676), + [aux_sym__for_header_token1] = ACTIONS(8676), + [aux_sym_do_statement_token1] = ACTIONS(8676), + [aux_sym_do_condition_token1] = ACTIONS(8676), + [aux_sym_with_statement_token1] = ACTIONS(8676), + [aux_sym_exit_statement_token1] = ACTIONS(8676), + [sym_end_statement] = ACTIONS(8678), + [aux_sym_on_goto_statement_token1] = ACTIONS(8676), + [aux_sym_on_goto_statement_token2] = ACTIONS(8676), + [aux_sym_on_error_statement_token2] = ACTIONS(8676), + [sym__ambiguous_redim_statement] = ACTIONS(8678), + [aux_sym_erase_statement_token1] = ACTIONS(8676), + [aux_sym_open_statement_token1] = ACTIONS(8676), + [aux_sym_file_mode_token2] = ACTIONS(8676), + [aux_sym_file_access_token2] = ACTIONS(8676), + [aux_sym_file_lock_token2] = ACTIONS(8676), + [aux_sym_print_statement_token1] = ACTIONS(8676), + [anon_sym_PLUS] = ACTIONS(8678), + [anon_sym_DASH] = ACTIONS(8676), + [anon_sym_QMARK] = ACTIONS(8678), + [aux_sym_close_statement_token1] = ACTIONS(8676), + [aux_sym_put_statement_token1] = ACTIONS(8676), + [aux_sym_unlock_statement_token1] = ACTIONS(8676), + [aux_sym_seek_statement_token1] = ACTIONS(8676), + [sym_reset_statement] = ACTIONS(8676), + [aux_sym_raise_event_statement_token1] = ACTIONS(8676), + [sym_stop_statement] = ACTIONS(8676), + [sym_beep_statement] = ACTIONS(8676), + [aux_sym_unload_statement_token1] = ACTIONS(8676), + [aux_sym_def_type_statement_token1] = ACTIONS(8676), + [aux_sym_def_type_statement_token2] = ACTIONS(8676), + [aux_sym_def_type_statement_token3] = ACTIONS(8676), + [aux_sym_def_type_statement_token4] = ACTIONS(8676), + [aux_sym_def_type_statement_token5] = ACTIONS(8676), + [aux_sym_def_type_statement_token6] = ACTIONS(8676), + [aux_sym_def_type_statement_token7] = ACTIONS(8676), + [aux_sym_def_type_statement_token8] = ACTIONS(8676), + [aux_sym_def_type_statement_token9] = ACTIONS(8676), + [aux_sym_def_type_statement_token10] = ACTIONS(8676), + [aux_sym_def_type_statement_token11] = ACTIONS(8676), + [aux_sym_def_type_statement_token12] = ACTIONS(8676), + [aux_sym_def_type_statement_token13] = ACTIONS(8676), + [aux_sym_def_type_statement_token14] = ACTIONS(8676), + [aux_sym_call_statement_token1] = ACTIONS(8676), + [sym__ambiguous_call_statement] = ACTIONS(8676), + [aux_sym_addressof_expression_token1] = ACTIONS(8676), + [aux_sym_type_of_expression_token1] = ACTIONS(8676), + [aux_sym_unary_expression_token1] = ACTIONS(8676), + [sym_string_literal] = ACTIONS(8678), + [sym_number_literal] = ACTIONS(8678), + [aux_sym_boolean_literal_token1] = ACTIONS(8676), + [aux_sym_boolean_literal_token2] = ACTIONS(8676), + [sym_nothing_literal] = ACTIONS(8676), + [sym_null_literal] = ACTIONS(8676), + [sym_empty_literal] = ACTIONS(8676), + [sym_date_literal] = ACTIONS(8678), + [anon_sym_POUND] = ACTIONS(8676), + }, + [STATE(4236)] = { + [sym_identifier] = ACTIONS(8877), + [sym_newline] = ACTIONS(8879), + [anon_sym_COLON] = ACTIONS(8879), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8877), + [aux_sym_frm_property_statement_token1] = ACTIONS(8877), + [anon_sym_DOT] = ACTIONS(8877), + [anon_sym_BANG] = ACTIONS(8879), + [aux_sym__attribute_identifier_token1] = ACTIONS(8877), + [aux_sym_option_statement_token3] = ACTIONS(8877), + [aux_sym_type_declaration_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8877), + [aux_sym_enum_declaration_token1] = ACTIONS(8877), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8877), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8877), + [aux_sym_declare_function_statement_token1] = ACTIONS(8877), + [aux_sym_preprocessor_const_token1] = ACTIONS(8877), + [aux_sym__property_get_header_token1] = ACTIONS(8877), + [aux_sym_event_declaration_token1] = ACTIONS(8877), + [sym_static_modifier] = ACTIONS(8877), + [sym__dim_keyword] = ACTIONS(8877), + [sym__redim_keyword] = ACTIONS(8877), + [aux_sym_get_accessor_token1] = ACTIONS(8877), + [aux_sym_set_accessor_token1] = ACTIONS(8877), + [aux_sym_const_declaration_token1] = ACTIONS(8877), + [anon_sym_LPAREN] = ACTIONS(8879), + [aux_sym_as_type_clause_token2] = ACTIONS(8877), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8877), + [aux_sym_visibility_token1] = ACTIONS(8877), + [aux_sym_visibility_token2] = ACTIONS(8877), + [aux_sym_elseif_fragment_token1] = ACTIONS(8877), + [aux_sym_else_fragment_token1] = ACTIONS(8877), + [aux_sym_select_statement_token1] = ACTIONS(8877), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8877), + [aux_sym__for_header_token1] = ACTIONS(8877), + [aux_sym_do_statement_token1] = ACTIONS(8877), + [aux_sym_do_condition_token1] = ACTIONS(8877), + [aux_sym_with_statement_token1] = ACTIONS(8877), + [aux_sym_exit_statement_token1] = ACTIONS(8877), + [sym_end_statement] = ACTIONS(8879), + [aux_sym_on_goto_statement_token1] = ACTIONS(8877), + [aux_sym_on_goto_statement_token2] = ACTIONS(8877), + [aux_sym_on_error_statement_token2] = ACTIONS(8877), + [sym__ambiguous_redim_statement] = ACTIONS(8879), + [aux_sym_erase_statement_token1] = ACTIONS(8877), + [aux_sym_open_statement_token1] = ACTIONS(8877), + [aux_sym_file_mode_token2] = ACTIONS(8877), + [aux_sym_file_access_token2] = ACTIONS(8877), + [aux_sym_file_lock_token2] = ACTIONS(8877), + [aux_sym_print_statement_token1] = ACTIONS(8877), + [anon_sym_PLUS] = ACTIONS(8879), + [anon_sym_DASH] = ACTIONS(8877), + [anon_sym_QMARK] = ACTIONS(8879), + [aux_sym_close_statement_token1] = ACTIONS(8877), + [aux_sym_put_statement_token1] = ACTIONS(8877), + [aux_sym_unlock_statement_token1] = ACTIONS(8877), + [aux_sym_seek_statement_token1] = ACTIONS(8877), + [sym_reset_statement] = ACTIONS(8877), + [aux_sym_raise_event_statement_token1] = ACTIONS(8877), + [sym_stop_statement] = ACTIONS(8877), + [sym_beep_statement] = ACTIONS(8877), + [aux_sym_unload_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token2] = ACTIONS(8877), + [aux_sym_def_type_statement_token3] = ACTIONS(8877), + [aux_sym_def_type_statement_token4] = ACTIONS(8877), + [aux_sym_def_type_statement_token5] = ACTIONS(8877), + [aux_sym_def_type_statement_token6] = ACTIONS(8877), + [aux_sym_def_type_statement_token7] = ACTIONS(8877), + [aux_sym_def_type_statement_token8] = ACTIONS(8877), + [aux_sym_def_type_statement_token9] = ACTIONS(8877), + [aux_sym_def_type_statement_token10] = ACTIONS(8877), + [aux_sym_def_type_statement_token11] = ACTIONS(8877), + [aux_sym_def_type_statement_token12] = ACTIONS(8877), + [aux_sym_def_type_statement_token13] = ACTIONS(8877), + [aux_sym_def_type_statement_token14] = ACTIONS(8877), + [aux_sym_call_statement_token1] = ACTIONS(8877), + [sym__ambiguous_call_statement] = ACTIONS(8877), + [aux_sym_addressof_expression_token1] = ACTIONS(8877), + [aux_sym_type_of_expression_token1] = ACTIONS(8877), + [aux_sym_unary_expression_token1] = ACTIONS(8877), + [sym_string_literal] = ACTIONS(8879), + [sym_number_literal] = ACTIONS(8879), + [aux_sym_boolean_literal_token1] = ACTIONS(8877), + [aux_sym_boolean_literal_token2] = ACTIONS(8877), + [sym_nothing_literal] = ACTIONS(8877), + [sym_null_literal] = ACTIONS(8877), + [sym_empty_literal] = ACTIONS(8877), + [sym_date_literal] = ACTIONS(8879), + [anon_sym_POUND] = ACTIONS(8877), + }, + [STATE(4237)] = { + [sym_identifier] = ACTIONS(8907), + [sym_newline] = ACTIONS(8909), + [anon_sym_COLON] = ACTIONS(8909), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8907), + [aux_sym_frm_property_statement_token1] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8907), + [anon_sym_BANG] = ACTIONS(8909), + [aux_sym__attribute_identifier_token1] = ACTIONS(8907), + [aux_sym_option_statement_token3] = ACTIONS(8907), + [aux_sym_type_declaration_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8907), + [aux_sym_enum_declaration_token1] = ACTIONS(8907), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8907), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8907), + [aux_sym_declare_function_statement_token1] = ACTIONS(8907), + [aux_sym_preprocessor_const_token1] = ACTIONS(8907), + [aux_sym__property_get_header_token1] = ACTIONS(8907), + [aux_sym_event_declaration_token1] = ACTIONS(8907), + [sym_static_modifier] = ACTIONS(8907), + [sym__dim_keyword] = ACTIONS(8907), + [sym__redim_keyword] = ACTIONS(8907), + [aux_sym_get_accessor_token1] = ACTIONS(8907), + [aux_sym_set_accessor_token1] = ACTIONS(8907), + [aux_sym_const_declaration_token1] = ACTIONS(8907), + [anon_sym_LPAREN] = ACTIONS(8909), + [aux_sym_as_type_clause_token2] = ACTIONS(8907), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8907), + [aux_sym_visibility_token1] = ACTIONS(8907), + [aux_sym_visibility_token2] = ACTIONS(8907), + [aux_sym_elseif_fragment_token1] = ACTIONS(8907), + [aux_sym_else_fragment_token1] = ACTIONS(8907), + [aux_sym_select_statement_token1] = ACTIONS(8907), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8907), + [aux_sym__for_header_token1] = ACTIONS(8907), + [aux_sym_do_statement_token1] = ACTIONS(8907), + [aux_sym_do_condition_token1] = ACTIONS(8907), + [aux_sym_with_statement_token1] = ACTIONS(8907), + [aux_sym_exit_statement_token1] = ACTIONS(8907), + [sym_end_statement] = ACTIONS(8909), + [aux_sym_on_goto_statement_token1] = ACTIONS(8907), + [aux_sym_on_goto_statement_token2] = ACTIONS(8907), + [aux_sym_on_error_statement_token2] = ACTIONS(8907), + [sym__ambiguous_redim_statement] = ACTIONS(8909), + [aux_sym_erase_statement_token1] = ACTIONS(8907), + [aux_sym_open_statement_token1] = ACTIONS(8907), + [aux_sym_file_mode_token2] = ACTIONS(8907), + [aux_sym_file_access_token2] = ACTIONS(8907), + [aux_sym_file_lock_token2] = ACTIONS(8907), + [aux_sym_print_statement_token1] = ACTIONS(8907), + [anon_sym_PLUS] = ACTIONS(8909), + [anon_sym_DASH] = ACTIONS(8907), + [anon_sym_QMARK] = ACTIONS(8909), + [aux_sym_close_statement_token1] = ACTIONS(8907), + [aux_sym_put_statement_token1] = ACTIONS(8907), + [aux_sym_unlock_statement_token1] = ACTIONS(8907), + [aux_sym_seek_statement_token1] = ACTIONS(8907), + [sym_reset_statement] = ACTIONS(8907), + [aux_sym_raise_event_statement_token1] = ACTIONS(8907), + [sym_stop_statement] = ACTIONS(8907), + [sym_beep_statement] = ACTIONS(8907), + [aux_sym_unload_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token2] = ACTIONS(8907), + [aux_sym_def_type_statement_token3] = ACTIONS(8907), + [aux_sym_def_type_statement_token4] = ACTIONS(8907), + [aux_sym_def_type_statement_token5] = ACTIONS(8907), + [aux_sym_def_type_statement_token6] = ACTIONS(8907), + [aux_sym_def_type_statement_token7] = ACTIONS(8907), + [aux_sym_def_type_statement_token8] = ACTIONS(8907), + [aux_sym_def_type_statement_token9] = ACTIONS(8907), + [aux_sym_def_type_statement_token10] = ACTIONS(8907), + [aux_sym_def_type_statement_token11] = ACTIONS(8907), + [aux_sym_def_type_statement_token12] = ACTIONS(8907), + [aux_sym_def_type_statement_token13] = ACTIONS(8907), + [aux_sym_def_type_statement_token14] = ACTIONS(8907), + [aux_sym_call_statement_token1] = ACTIONS(8907), + [sym__ambiguous_call_statement] = ACTIONS(8907), + [aux_sym_addressof_expression_token1] = ACTIONS(8907), + [aux_sym_type_of_expression_token1] = ACTIONS(8907), + [aux_sym_unary_expression_token1] = ACTIONS(8907), + [sym_string_literal] = ACTIONS(8909), + [sym_number_literal] = ACTIONS(8909), + [aux_sym_boolean_literal_token1] = ACTIONS(8907), + [aux_sym_boolean_literal_token2] = ACTIONS(8907), + [sym_nothing_literal] = ACTIONS(8907), + [sym_null_literal] = ACTIONS(8907), + [sym_empty_literal] = ACTIONS(8907), + [sym_date_literal] = ACTIONS(8909), + [anon_sym_POUND] = ACTIONS(8907), + }, + [STATE(4238)] = { + [sym_identifier] = ACTIONS(8927), + [sym_newline] = ACTIONS(8929), + [anon_sym_COLON] = ACTIONS(8929), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8927), + [aux_sym_frm_property_statement_token1] = ACTIONS(8927), + [anon_sym_DOT] = ACTIONS(8927), + [anon_sym_BANG] = ACTIONS(8929), + [aux_sym__attribute_identifier_token1] = ACTIONS(8927), + [aux_sym_option_statement_token3] = ACTIONS(8927), + [aux_sym_type_declaration_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8927), + [aux_sym_enum_declaration_token1] = ACTIONS(8927), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8927), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8927), + [aux_sym_declare_function_statement_token1] = ACTIONS(8927), + [aux_sym_preprocessor_const_token1] = ACTIONS(8927), + [aux_sym__property_get_header_token1] = ACTIONS(8927), + [aux_sym_event_declaration_token1] = ACTIONS(8927), + [sym_static_modifier] = ACTIONS(8927), + [sym__dim_keyword] = ACTIONS(8927), + [sym__redim_keyword] = ACTIONS(8927), + [aux_sym_get_accessor_token1] = ACTIONS(8927), + [aux_sym_set_accessor_token1] = ACTIONS(8927), + [aux_sym_const_declaration_token1] = ACTIONS(8927), + [anon_sym_LPAREN] = ACTIONS(8929), + [aux_sym_as_type_clause_token2] = ACTIONS(8927), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8927), + [aux_sym_visibility_token1] = ACTIONS(8927), + [aux_sym_visibility_token2] = ACTIONS(8927), + [aux_sym_elseif_fragment_token1] = ACTIONS(8927), + [aux_sym_else_fragment_token1] = ACTIONS(8927), + [aux_sym_select_statement_token1] = ACTIONS(8927), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8927), + [aux_sym__for_header_token1] = ACTIONS(8927), + [aux_sym_do_statement_token1] = ACTIONS(8927), + [aux_sym_do_condition_token1] = ACTIONS(8927), + [aux_sym_with_statement_token1] = ACTIONS(8927), + [aux_sym_exit_statement_token1] = ACTIONS(8927), + [sym_end_statement] = ACTIONS(8929), + [aux_sym_on_goto_statement_token1] = ACTIONS(8927), + [aux_sym_on_goto_statement_token2] = ACTIONS(8927), + [aux_sym_on_error_statement_token2] = ACTIONS(8927), + [sym__ambiguous_redim_statement] = ACTIONS(8929), + [aux_sym_erase_statement_token1] = ACTIONS(8927), + [aux_sym_open_statement_token1] = ACTIONS(8927), + [aux_sym_file_mode_token2] = ACTIONS(8927), + [aux_sym_file_access_token2] = ACTIONS(8927), + [aux_sym_file_lock_token2] = ACTIONS(8927), + [aux_sym_print_statement_token1] = ACTIONS(8927), + [anon_sym_PLUS] = ACTIONS(8929), + [anon_sym_DASH] = ACTIONS(8927), + [anon_sym_QMARK] = ACTIONS(8929), + [aux_sym_close_statement_token1] = ACTIONS(8927), + [aux_sym_put_statement_token1] = ACTIONS(8927), + [aux_sym_unlock_statement_token1] = ACTIONS(8927), + [aux_sym_seek_statement_token1] = ACTIONS(8927), + [sym_reset_statement] = ACTIONS(8927), + [aux_sym_raise_event_statement_token1] = ACTIONS(8927), + [sym_stop_statement] = ACTIONS(8927), + [sym_beep_statement] = ACTIONS(8927), + [aux_sym_unload_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token2] = ACTIONS(8927), + [aux_sym_def_type_statement_token3] = ACTIONS(8927), + [aux_sym_def_type_statement_token4] = ACTIONS(8927), + [aux_sym_def_type_statement_token5] = ACTIONS(8927), + [aux_sym_def_type_statement_token6] = ACTIONS(8927), + [aux_sym_def_type_statement_token7] = ACTIONS(8927), + [aux_sym_def_type_statement_token8] = ACTIONS(8927), + [aux_sym_def_type_statement_token9] = ACTIONS(8927), + [aux_sym_def_type_statement_token10] = ACTIONS(8927), + [aux_sym_def_type_statement_token11] = ACTIONS(8927), + [aux_sym_def_type_statement_token12] = ACTIONS(8927), + [aux_sym_def_type_statement_token13] = ACTIONS(8927), + [aux_sym_def_type_statement_token14] = ACTIONS(8927), + [aux_sym_call_statement_token1] = ACTIONS(8927), + [sym__ambiguous_call_statement] = ACTIONS(8927), + [aux_sym_addressof_expression_token1] = ACTIONS(8927), + [aux_sym_type_of_expression_token1] = ACTIONS(8927), + [aux_sym_unary_expression_token1] = ACTIONS(8927), + [sym_string_literal] = ACTIONS(8929), + [sym_number_literal] = ACTIONS(8929), + [aux_sym_boolean_literal_token1] = ACTIONS(8927), + [aux_sym_boolean_literal_token2] = ACTIONS(8927), + [sym_nothing_literal] = ACTIONS(8927), + [sym_null_literal] = ACTIONS(8927), + [sym_empty_literal] = ACTIONS(8927), + [sym_date_literal] = ACTIONS(8929), + [anon_sym_POUND] = ACTIONS(8927), + }, + [STATE(4239)] = { + [sym_identifier] = ACTIONS(8780), + [sym_newline] = ACTIONS(8782), + [anon_sym_COLON] = ACTIONS(8782), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8780), + [aux_sym_frm_property_statement_token1] = ACTIONS(8780), + [anon_sym_DOT] = ACTIONS(8780), + [anon_sym_BANG] = ACTIONS(8782), + [aux_sym__attribute_identifier_token1] = ACTIONS(8780), + [aux_sym_option_statement_token3] = ACTIONS(8780), + [aux_sym_type_declaration_token1] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8780), + [aux_sym_enum_declaration_token1] = ACTIONS(8780), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8780), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8780), + [aux_sym_declare_function_statement_token1] = ACTIONS(8780), + [aux_sym_preprocessor_const_token1] = ACTIONS(8780), + [aux_sym__property_get_header_token1] = ACTIONS(8780), + [aux_sym_event_declaration_token1] = ACTIONS(8780), + [sym_static_modifier] = ACTIONS(8780), + [sym__dim_keyword] = ACTIONS(8780), + [sym__redim_keyword] = ACTIONS(8780), + [aux_sym_get_accessor_token1] = ACTIONS(8780), + [aux_sym_set_accessor_token1] = ACTIONS(8780), + [anon_sym_COMMA] = ACTIONS(9857), + [aux_sym_const_declaration_token1] = ACTIONS(8780), + [anon_sym_LPAREN] = ACTIONS(8782), + [aux_sym_as_type_clause_token2] = ACTIONS(8780), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8780), + [aux_sym_visibility_token1] = ACTIONS(8780), + [aux_sym_visibility_token2] = ACTIONS(8780), + [aux_sym_elseif_fragment_token1] = ACTIONS(8780), + [aux_sym_else_fragment_token1] = ACTIONS(8780), + [aux_sym_select_statement_token1] = ACTIONS(8780), + [aux_sym__for_header_token1] = ACTIONS(8780), + [aux_sym_do_statement_token1] = ACTIONS(8780), + [aux_sym_do_condition_token1] = ACTIONS(8780), + [aux_sym_with_statement_token1] = ACTIONS(8780), + [aux_sym_exit_statement_token1] = ACTIONS(8780), + [sym_end_statement] = ACTIONS(8782), + [aux_sym_on_goto_statement_token1] = ACTIONS(8780), + [aux_sym_on_goto_statement_token2] = ACTIONS(8780), + [aux_sym_on_error_statement_token2] = ACTIONS(8780), + [sym__ambiguous_redim_statement] = ACTIONS(8782), + [aux_sym_erase_statement_token1] = ACTIONS(8780), + [aux_sym_open_statement_token1] = ACTIONS(8780), + [aux_sym_file_mode_token2] = ACTIONS(8780), + [aux_sym_file_access_token2] = ACTIONS(8780), + [aux_sym_file_lock_token2] = ACTIONS(8780), + [aux_sym_print_statement_token1] = ACTIONS(8780), + [anon_sym_PLUS] = ACTIONS(8782), + [anon_sym_DASH] = ACTIONS(8780), + [anon_sym_QMARK] = ACTIONS(8782), + [aux_sym_close_statement_token1] = ACTIONS(8780), + [aux_sym_put_statement_token1] = ACTIONS(8780), + [aux_sym_unlock_statement_token1] = ACTIONS(8780), + [aux_sym_seek_statement_token1] = ACTIONS(8780), + [sym_reset_statement] = ACTIONS(8780), + [aux_sym_raise_event_statement_token1] = ACTIONS(8780), + [sym_stop_statement] = ACTIONS(8780), + [sym_beep_statement] = ACTIONS(8780), + [aux_sym_unload_statement_token1] = ACTIONS(8780), + [aux_sym_def_type_statement_token1] = ACTIONS(8780), + [aux_sym_def_type_statement_token2] = ACTIONS(8780), + [aux_sym_def_type_statement_token3] = ACTIONS(8780), + [aux_sym_def_type_statement_token4] = ACTIONS(8780), + [aux_sym_def_type_statement_token5] = ACTIONS(8780), + [aux_sym_def_type_statement_token6] = ACTIONS(8780), + [aux_sym_def_type_statement_token7] = ACTIONS(8780), + [aux_sym_def_type_statement_token8] = ACTIONS(8780), + [aux_sym_def_type_statement_token9] = ACTIONS(8780), + [aux_sym_def_type_statement_token10] = ACTIONS(8780), + [aux_sym_def_type_statement_token11] = ACTIONS(8780), + [aux_sym_def_type_statement_token12] = ACTIONS(8780), + [aux_sym_def_type_statement_token13] = ACTIONS(8780), + [aux_sym_def_type_statement_token14] = ACTIONS(8780), + [aux_sym_call_statement_token1] = ACTIONS(8780), + [sym__ambiguous_call_statement] = ACTIONS(8780), + [aux_sym_addressof_expression_token1] = ACTIONS(8780), + [aux_sym_type_of_expression_token1] = ACTIONS(8780), + [aux_sym_unary_expression_token1] = ACTIONS(8780), + [sym_string_literal] = ACTIONS(8782), + [sym_number_literal] = ACTIONS(8782), + [aux_sym_boolean_literal_token1] = ACTIONS(8780), + [aux_sym_boolean_literal_token2] = ACTIONS(8780), + [sym_nothing_literal] = ACTIONS(8780), + [sym_null_literal] = ACTIONS(8780), + [sym_empty_literal] = ACTIONS(8780), + [sym_date_literal] = ACTIONS(8782), + [anon_sym_POUND] = ACTIONS(8780), + }, + [STATE(4240)] = { + [sym_initializer] = STATE(5038), + [sym_as_type_clause] = STATE(4670), + [sym_array_bounds] = STATE(4574), + [sym_identifier] = ACTIONS(6989), + [sym_newline] = ACTIONS(6991), + [anon_sym_COLON] = ACTIONS(6991), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6989), + [aux_sym_frm_property_statement_token1] = ACTIONS(6989), + [anon_sym_EQ] = ACTIONS(9859), + [anon_sym_DOT] = ACTIONS(6989), + [anon_sym_BANG] = ACTIONS(6991), + [aux_sym__attribute_identifier_token1] = ACTIONS(6989), + [aux_sym_option_statement_token3] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6989), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6989), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6989), + [aux_sym_preprocessor_const_token1] = ACTIONS(6989), + [sym_static_modifier] = ACTIONS(6989), + [sym__dim_keyword] = ACTIONS(6989), + [sym__redim_keyword] = ACTIONS(6989), + [aux_sym_get_accessor_token1] = ACTIONS(6989), + [aux_sym_set_accessor_token1] = ACTIONS(6989), + [anon_sym_COMMA] = ACTIONS(6991), + [aux_sym_const_declaration_token1] = ACTIONS(6989), + [anon_sym_LPAREN] = ACTIONS(9861), + [aux_sym_as_type_clause_token1] = ACTIONS(9863), + [aux_sym_as_type_clause_token2] = ACTIONS(6989), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6989), + [aux_sym_visibility_token1] = ACTIONS(6989), + [aux_sym_visibility_token2] = ACTIONS(6989), + [aux_sym_elseif_fragment_token1] = ACTIONS(6989), + [aux_sym_else_fragment_token1] = ACTIONS(6989), + [aux_sym_select_statement_token1] = ACTIONS(6989), + [aux_sym__for_header_token1] = ACTIONS(6989), + [aux_sym_do_statement_token1] = ACTIONS(6989), + [aux_sym_do_condition_token1] = ACTIONS(6989), + [aux_sym_with_statement_token1] = ACTIONS(6989), + [aux_sym_exit_statement_token1] = ACTIONS(6989), + [sym_end_statement] = ACTIONS(6991), + [aux_sym_on_goto_statement_token1] = ACTIONS(6989), + [aux_sym_on_goto_statement_token2] = ACTIONS(6989), + [aux_sym_on_error_statement_token2] = ACTIONS(6989), + [sym__ambiguous_redim_statement] = ACTIONS(6991), + [aux_sym_erase_statement_token1] = ACTIONS(6989), + [aux_sym_open_statement_token1] = ACTIONS(6989), + [aux_sym_file_mode_token2] = ACTIONS(6989), + [aux_sym_file_access_token2] = ACTIONS(6989), + [aux_sym_file_lock_token2] = ACTIONS(6989), + [aux_sym_print_statement_token1] = ACTIONS(6989), + [anon_sym_PLUS] = ACTIONS(6991), + [anon_sym_DASH] = ACTIONS(6989), + [anon_sym_QMARK] = ACTIONS(6991), + [aux_sym_close_statement_token1] = ACTIONS(6989), + [aux_sym_put_statement_token1] = ACTIONS(6989), + [aux_sym_unlock_statement_token1] = ACTIONS(6989), + [aux_sym_seek_statement_token1] = ACTIONS(6989), + [sym_reset_statement] = ACTIONS(6989), + [aux_sym_raise_event_statement_token1] = ACTIONS(6989), + [sym_stop_statement] = ACTIONS(6989), + [sym_beep_statement] = ACTIONS(6989), + [aux_sym_unload_statement_token1] = ACTIONS(6989), + [aux_sym_def_type_statement_token1] = ACTIONS(6989), + [aux_sym_def_type_statement_token2] = ACTIONS(6989), + [aux_sym_def_type_statement_token3] = ACTIONS(6989), + [aux_sym_def_type_statement_token4] = ACTIONS(6989), + [aux_sym_def_type_statement_token5] = ACTIONS(6989), + [aux_sym_def_type_statement_token6] = ACTIONS(6989), + [aux_sym_def_type_statement_token7] = ACTIONS(6989), + [aux_sym_def_type_statement_token8] = ACTIONS(6989), + [aux_sym_def_type_statement_token9] = ACTIONS(6989), + [aux_sym_def_type_statement_token10] = ACTIONS(6989), + [aux_sym_def_type_statement_token11] = ACTIONS(6989), + [aux_sym_def_type_statement_token12] = ACTIONS(6989), + [aux_sym_def_type_statement_token13] = ACTIONS(6989), + [aux_sym_def_type_statement_token14] = ACTIONS(6989), + [aux_sym_call_statement_token1] = ACTIONS(6989), + [sym__ambiguous_call_statement] = ACTIONS(6989), + [aux_sym_addressof_expression_token1] = ACTIONS(6989), + [aux_sym_type_of_expression_token1] = ACTIONS(6989), + [aux_sym_unary_expression_token1] = ACTIONS(6989), + [sym_string_literal] = ACTIONS(6991), + [sym_number_literal] = ACTIONS(6991), + [aux_sym_boolean_literal_token1] = ACTIONS(6989), + [aux_sym_boolean_literal_token2] = ACTIONS(6989), + [sym_nothing_literal] = ACTIONS(6989), + [sym_null_literal] = ACTIONS(6989), + [sym_empty_literal] = ACTIONS(6989), + [sym_date_literal] = ACTIONS(6991), + [anon_sym_POUND] = ACTIONS(6989), + }, + [STATE(4241)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(4318), + [sym_identifier] = ACTIONS(8813), + [sym_newline] = ACTIONS(8815), + [anon_sym_COLON] = ACTIONS(9853), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8813), + [aux_sym_frm_property_statement_token1] = ACTIONS(8813), + [anon_sym_DOT] = ACTIONS(8813), + [anon_sym_BANG] = ACTIONS(8815), + [aux_sym__attribute_identifier_token1] = ACTIONS(8813), + [aux_sym_option_statement_token3] = ACTIONS(8813), + [aux_sym_type_declaration_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8813), + [aux_sym_enum_declaration_token1] = ACTIONS(8813), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8813), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8813), + [aux_sym_declare_function_statement_token1] = ACTIONS(8813), + [aux_sym_preprocessor_const_token1] = ACTIONS(8813), + [aux_sym__property_get_header_token1] = ACTIONS(8813), + [aux_sym_event_declaration_token1] = ACTIONS(8813), + [sym_static_modifier] = ACTIONS(8813), + [sym__dim_keyword] = ACTIONS(8813), + [sym__redim_keyword] = ACTIONS(8813), + [aux_sym_get_accessor_token1] = ACTIONS(8813), + [aux_sym_set_accessor_token1] = ACTIONS(8813), + [aux_sym_const_declaration_token1] = ACTIONS(8813), + [anon_sym_LPAREN] = ACTIONS(8815), + [aux_sym_as_type_clause_token2] = ACTIONS(8813), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8813), + [aux_sym_visibility_token1] = ACTIONS(8813), + [aux_sym_visibility_token2] = ACTIONS(8813), + [aux_sym_elseif_fragment_token1] = ACTIONS(8813), + [aux_sym_else_fragment_token1] = ACTIONS(8813), + [aux_sym_select_statement_token1] = ACTIONS(8813), + [aux_sym__for_header_token1] = ACTIONS(8813), + [aux_sym_do_statement_token1] = ACTIONS(8813), + [aux_sym_do_condition_token1] = ACTIONS(8813), + [aux_sym_with_statement_token1] = ACTIONS(8813), + [aux_sym_exit_statement_token1] = ACTIONS(8813), + [sym_end_statement] = ACTIONS(8815), + [aux_sym_on_goto_statement_token1] = ACTIONS(8813), + [aux_sym_on_goto_statement_token2] = ACTIONS(8813), + [aux_sym_on_error_statement_token2] = ACTIONS(8813), + [sym__ambiguous_redim_statement] = ACTIONS(8815), + [aux_sym_erase_statement_token1] = ACTIONS(8813), + [aux_sym_open_statement_token1] = ACTIONS(8813), + [aux_sym_file_mode_token2] = ACTIONS(8813), + [aux_sym_file_access_token2] = ACTIONS(8813), + [aux_sym_file_lock_token2] = ACTIONS(8813), + [aux_sym_print_statement_token1] = ACTIONS(8813), + [anon_sym_PLUS] = ACTIONS(8815), + [anon_sym_DASH] = ACTIONS(8813), + [anon_sym_QMARK] = ACTIONS(8815), + [aux_sym_close_statement_token1] = ACTIONS(8813), + [aux_sym_put_statement_token1] = ACTIONS(8813), + [aux_sym_unlock_statement_token1] = ACTIONS(8813), + [aux_sym_seek_statement_token1] = ACTIONS(8813), + [sym_reset_statement] = ACTIONS(8813), + [aux_sym_raise_event_statement_token1] = ACTIONS(8813), + [sym_stop_statement] = ACTIONS(8813), + [sym_beep_statement] = ACTIONS(8813), + [aux_sym_unload_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token2] = ACTIONS(8813), + [aux_sym_def_type_statement_token3] = ACTIONS(8813), + [aux_sym_def_type_statement_token4] = ACTIONS(8813), + [aux_sym_def_type_statement_token5] = ACTIONS(8813), + [aux_sym_def_type_statement_token6] = ACTIONS(8813), + [aux_sym_def_type_statement_token7] = ACTIONS(8813), + [aux_sym_def_type_statement_token8] = ACTIONS(8813), + [aux_sym_def_type_statement_token9] = ACTIONS(8813), + [aux_sym_def_type_statement_token10] = ACTIONS(8813), + [aux_sym_def_type_statement_token11] = ACTIONS(8813), + [aux_sym_def_type_statement_token12] = ACTIONS(8813), + [aux_sym_def_type_statement_token13] = ACTIONS(8813), + [aux_sym_def_type_statement_token14] = ACTIONS(8813), + [aux_sym_call_statement_token1] = ACTIONS(8813), + [sym__ambiguous_call_statement] = ACTIONS(8813), + [aux_sym_addressof_expression_token1] = ACTIONS(8813), + [aux_sym_type_of_expression_token1] = ACTIONS(8813), + [aux_sym_unary_expression_token1] = ACTIONS(8813), + [sym_string_literal] = ACTIONS(8815), + [sym_number_literal] = ACTIONS(8815), + [aux_sym_boolean_literal_token1] = ACTIONS(8813), + [aux_sym_boolean_literal_token2] = ACTIONS(8813), + [sym_nothing_literal] = ACTIONS(8813), + [sym_null_literal] = ACTIONS(8813), + [sym_empty_literal] = ACTIONS(8813), + [sym_date_literal] = ACTIONS(8815), + [anon_sym_POUND] = ACTIONS(8813), + }, + [STATE(4242)] = { + [sym_identifier] = ACTIONS(8624), + [sym_newline] = ACTIONS(8626), + [anon_sym_COLON] = ACTIONS(8626), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8624), + [aux_sym_frm_property_statement_token1] = ACTIONS(8624), + [anon_sym_DOT] = ACTIONS(8624), + [anon_sym_BANG] = ACTIONS(8626), + [aux_sym__attribute_identifier_token1] = ACTIONS(8624), + [aux_sym_option_statement_token3] = ACTIONS(8624), + [aux_sym_type_declaration_token1] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8624), + [aux_sym_enum_declaration_token1] = ACTIONS(8624), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8624), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8624), + [aux_sym_declare_function_statement_token1] = ACTIONS(8624), + [aux_sym_preprocessor_const_token1] = ACTIONS(8624), + [aux_sym__property_get_header_token1] = ACTIONS(8624), + [aux_sym_event_declaration_token1] = ACTIONS(8624), + [sym_static_modifier] = ACTIONS(8624), + [sym__dim_keyword] = ACTIONS(8624), + [sym__redim_keyword] = ACTIONS(8624), + [aux_sym_get_accessor_token1] = ACTIONS(8624), + [aux_sym_set_accessor_token1] = ACTIONS(8624), + [aux_sym_const_declaration_token1] = ACTIONS(8624), + [anon_sym_LPAREN] = ACTIONS(8626), + [aux_sym_as_type_clause_token2] = ACTIONS(8624), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8624), + [aux_sym_visibility_token1] = ACTIONS(8624), + [aux_sym_visibility_token2] = ACTIONS(8624), + [aux_sym_elseif_fragment_token1] = ACTIONS(8624), + [aux_sym_else_fragment_token1] = ACTIONS(8624), + [aux_sym_select_statement_token1] = ACTIONS(8624), + [aux_sym__for_header_token1] = ACTIONS(8624), + [aux_sym_do_statement_token1] = ACTIONS(8624), + [aux_sym_do_condition_token1] = ACTIONS(8624), + [aux_sym_with_statement_token1] = ACTIONS(8624), + [aux_sym_exit_statement_token1] = ACTIONS(8624), + [sym_end_statement] = ACTIONS(8626), + [aux_sym_on_goto_statement_token1] = ACTIONS(8624), + [aux_sym_on_goto_statement_token2] = ACTIONS(8624), + [aux_sym_on_error_statement_token2] = ACTIONS(8624), + [sym__ambiguous_redim_statement] = ACTIONS(8626), + [aux_sym_erase_statement_token1] = ACTIONS(8624), + [aux_sym_open_statement_token1] = ACTIONS(8624), + [aux_sym_open_statement_token3] = ACTIONS(9865), + [aux_sym_file_mode_token2] = ACTIONS(8624), + [aux_sym_file_access_token2] = ACTIONS(8624), + [aux_sym_file_lock_token2] = ACTIONS(8624), + [aux_sym_print_statement_token1] = ACTIONS(8624), + [anon_sym_PLUS] = ACTIONS(8626), + [anon_sym_DASH] = ACTIONS(8624), + [anon_sym_QMARK] = ACTIONS(8626), + [aux_sym_close_statement_token1] = ACTIONS(8624), + [aux_sym_put_statement_token1] = ACTIONS(8624), + [aux_sym_unlock_statement_token1] = ACTIONS(8624), + [aux_sym_seek_statement_token1] = ACTIONS(8624), + [sym_reset_statement] = ACTIONS(8624), + [aux_sym_raise_event_statement_token1] = ACTIONS(8624), + [sym_stop_statement] = ACTIONS(8624), + [sym_beep_statement] = ACTIONS(8624), + [aux_sym_unload_statement_token1] = ACTIONS(8624), + [aux_sym_def_type_statement_token1] = ACTIONS(8624), + [aux_sym_def_type_statement_token2] = ACTIONS(8624), + [aux_sym_def_type_statement_token3] = ACTIONS(8624), + [aux_sym_def_type_statement_token4] = ACTIONS(8624), + [aux_sym_def_type_statement_token5] = ACTIONS(8624), + [aux_sym_def_type_statement_token6] = ACTIONS(8624), + [aux_sym_def_type_statement_token7] = ACTIONS(8624), + [aux_sym_def_type_statement_token8] = ACTIONS(8624), + [aux_sym_def_type_statement_token9] = ACTIONS(8624), + [aux_sym_def_type_statement_token10] = ACTIONS(8624), + [aux_sym_def_type_statement_token11] = ACTIONS(8624), + [aux_sym_def_type_statement_token12] = ACTIONS(8624), + [aux_sym_def_type_statement_token13] = ACTIONS(8624), + [aux_sym_def_type_statement_token14] = ACTIONS(8624), + [aux_sym_call_statement_token1] = ACTIONS(8624), + [sym__ambiguous_call_statement] = ACTIONS(8624), + [aux_sym_addressof_expression_token1] = ACTIONS(8624), + [aux_sym_type_of_expression_token1] = ACTIONS(8624), + [aux_sym_unary_expression_token1] = ACTIONS(8624), + [sym_string_literal] = ACTIONS(8626), + [sym_number_literal] = ACTIONS(8626), + [aux_sym_boolean_literal_token1] = ACTIONS(8624), + [aux_sym_boolean_literal_token2] = ACTIONS(8624), + [sym_nothing_literal] = ACTIONS(8624), + [sym_null_literal] = ACTIONS(8624), + [sym_empty_literal] = ACTIONS(8624), + [sym_date_literal] = ACTIONS(8626), + [anon_sym_POUND] = ACTIONS(8624), + }, + [STATE(4243)] = { + [sym_identifier] = ACTIONS(8931), + [sym_newline] = ACTIONS(8933), + [anon_sym_COLON] = ACTIONS(8933), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8931), + [aux_sym_frm_property_statement_token1] = ACTIONS(8931), + [anon_sym_DOT] = ACTIONS(8931), + [anon_sym_BANG] = ACTIONS(8933), + [aux_sym__attribute_identifier_token1] = ACTIONS(8931), + [aux_sym_option_statement_token3] = ACTIONS(8931), + [aux_sym_type_declaration_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8931), + [aux_sym_enum_declaration_token1] = ACTIONS(8931), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8931), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8931), + [aux_sym_declare_function_statement_token1] = ACTIONS(8931), + [aux_sym_preprocessor_const_token1] = ACTIONS(8931), + [aux_sym__property_get_header_token1] = ACTIONS(8931), + [aux_sym_event_declaration_token1] = ACTIONS(8931), + [sym_static_modifier] = ACTIONS(8931), + [sym__dim_keyword] = ACTIONS(8931), + [sym__redim_keyword] = ACTIONS(8931), + [aux_sym_get_accessor_token1] = ACTIONS(8931), + [aux_sym_set_accessor_token1] = ACTIONS(8931), + [aux_sym_const_declaration_token1] = ACTIONS(8931), + [anon_sym_LPAREN] = ACTIONS(8933), + [aux_sym_as_type_clause_token2] = ACTIONS(8931), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8931), + [aux_sym_visibility_token1] = ACTIONS(8931), + [aux_sym_visibility_token2] = ACTIONS(8931), + [aux_sym_elseif_fragment_token1] = ACTIONS(8931), + [aux_sym_else_fragment_token1] = ACTIONS(8931), + [aux_sym_select_statement_token1] = ACTIONS(8931), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8931), + [aux_sym__for_header_token1] = ACTIONS(8931), + [aux_sym_do_statement_token1] = ACTIONS(8931), + [aux_sym_do_condition_token1] = ACTIONS(8931), + [aux_sym_with_statement_token1] = ACTIONS(8931), + [aux_sym_exit_statement_token1] = ACTIONS(8931), + [sym_end_statement] = ACTIONS(8933), + [aux_sym_on_goto_statement_token1] = ACTIONS(8931), + [aux_sym_on_goto_statement_token2] = ACTIONS(8931), + [aux_sym_on_error_statement_token2] = ACTIONS(8931), + [sym__ambiguous_redim_statement] = ACTIONS(8933), + [aux_sym_erase_statement_token1] = ACTIONS(8931), + [aux_sym_open_statement_token1] = ACTIONS(8931), + [aux_sym_file_mode_token2] = ACTIONS(8931), + [aux_sym_file_access_token2] = ACTIONS(8931), + [aux_sym_file_lock_token2] = ACTIONS(8931), + [aux_sym_print_statement_token1] = ACTIONS(8931), + [anon_sym_PLUS] = ACTIONS(8933), + [anon_sym_DASH] = ACTIONS(8931), + [anon_sym_QMARK] = ACTIONS(8933), + [aux_sym_close_statement_token1] = ACTIONS(8931), + [aux_sym_put_statement_token1] = ACTIONS(8931), + [aux_sym_unlock_statement_token1] = ACTIONS(8931), + [aux_sym_seek_statement_token1] = ACTIONS(8931), + [sym_reset_statement] = ACTIONS(8931), + [aux_sym_raise_event_statement_token1] = ACTIONS(8931), + [sym_stop_statement] = ACTIONS(8931), + [sym_beep_statement] = ACTIONS(8931), + [aux_sym_unload_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token2] = ACTIONS(8931), + [aux_sym_def_type_statement_token3] = ACTIONS(8931), + [aux_sym_def_type_statement_token4] = ACTIONS(8931), + [aux_sym_def_type_statement_token5] = ACTIONS(8931), + [aux_sym_def_type_statement_token6] = ACTIONS(8931), + [aux_sym_def_type_statement_token7] = ACTIONS(8931), + [aux_sym_def_type_statement_token8] = ACTIONS(8931), + [aux_sym_def_type_statement_token9] = ACTIONS(8931), + [aux_sym_def_type_statement_token10] = ACTIONS(8931), + [aux_sym_def_type_statement_token11] = ACTIONS(8931), + [aux_sym_def_type_statement_token12] = ACTIONS(8931), + [aux_sym_def_type_statement_token13] = ACTIONS(8931), + [aux_sym_def_type_statement_token14] = ACTIONS(8931), + [aux_sym_call_statement_token1] = ACTIONS(8931), + [sym__ambiguous_call_statement] = ACTIONS(8931), + [aux_sym_addressof_expression_token1] = ACTIONS(8931), + [aux_sym_type_of_expression_token1] = ACTIONS(8931), + [aux_sym_unary_expression_token1] = ACTIONS(8931), + [sym_string_literal] = ACTIONS(8933), + [sym_number_literal] = ACTIONS(8933), + [aux_sym_boolean_literal_token1] = ACTIONS(8931), + [aux_sym_boolean_literal_token2] = ACTIONS(8931), + [sym_nothing_literal] = ACTIONS(8931), + [sym_null_literal] = ACTIONS(8931), + [sym_empty_literal] = ACTIONS(8931), + [sym_date_literal] = ACTIONS(8933), + [anon_sym_POUND] = ACTIONS(8931), + }, + [STATE(4244)] = { + [sym_next_variable_list] = STATE(6278), + [sym__assignable_expression] = STATE(4903), + [sym__callable_expression] = STATE(5080), + [sym_call_expression] = STATE(4943), + [sym_member_expression] = STATE(5562), + [sym_qualified_member_expression] = STATE(5656), + [sym_implicit_member_expression] = STATE(5656), + [sym_identifier] = ACTIONS(9867), + [sym_newline] = ACTIONS(6842), + [anon_sym_COLON] = ACTIONS(6842), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6844), + [aux_sym_frm_property_statement_token1] = ACTIONS(9869), + [anon_sym_DOT] = ACTIONS(9871), + [anon_sym_BANG] = ACTIONS(9873), + [aux_sym__attribute_identifier_token1] = ACTIONS(6844), + [aux_sym_option_statement_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6844), + [aux_sym_preprocessor_const_token1] = ACTIONS(6844), + [sym_static_modifier] = ACTIONS(6844), + [sym__dim_keyword] = ACTIONS(6844), + [sym__redim_keyword] = ACTIONS(6844), + [aux_sym_get_accessor_token1] = ACTIONS(6844), + [aux_sym_set_accessor_token1] = ACTIONS(6844), + [aux_sym_const_declaration_token1] = ACTIONS(6844), + [anon_sym_LPAREN] = ACTIONS(6842), + [aux_sym_as_type_clause_token2] = ACTIONS(6844), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9875), + [aux_sym_visibility_token1] = ACTIONS(6844), + [aux_sym_visibility_token2] = ACTIONS(6844), + [aux_sym_elseif_fragment_token1] = ACTIONS(6844), + [aux_sym_else_fragment_token1] = ACTIONS(6844), + [aux_sym_select_statement_token1] = ACTIONS(6844), + [aux_sym_select_statement_token2] = ACTIONS(6844), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6844), + [aux_sym__for_header_token1] = ACTIONS(6844), + [aux_sym_do_statement_token1] = ACTIONS(6844), + [aux_sym_do_condition_token1] = ACTIONS(6844), + [aux_sym_with_statement_token1] = ACTIONS(6844), + [aux_sym_exit_statement_token1] = ACTIONS(6844), + [sym_end_statement] = ACTIONS(6842), + [aux_sym_on_goto_statement_token1] = ACTIONS(6844), + [aux_sym_on_goto_statement_token2] = ACTIONS(6844), + [aux_sym_on_error_statement_token2] = ACTIONS(6844), + [sym__ambiguous_redim_statement] = ACTIONS(6842), + [aux_sym_erase_statement_token1] = ACTIONS(6844), + [aux_sym_open_statement_token1] = ACTIONS(6844), + [aux_sym_file_mode_token2] = ACTIONS(6844), + [aux_sym_file_access_token2] = ACTIONS(6844), + [aux_sym_file_lock_token2] = ACTIONS(6844), + [aux_sym_print_statement_token1] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6842), + [aux_sym_close_statement_token1] = ACTIONS(6844), + [aux_sym_put_statement_token1] = ACTIONS(6844), + [aux_sym_unlock_statement_token1] = ACTIONS(6844), + [aux_sym_seek_statement_token1] = ACTIONS(6844), + [sym_reset_statement] = ACTIONS(6844), + [aux_sym_raise_event_statement_token1] = ACTIONS(6844), + [sym_stop_statement] = ACTIONS(6844), + [sym_beep_statement] = ACTIONS(6844), + [aux_sym_unload_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token2] = ACTIONS(6844), + [aux_sym_def_type_statement_token3] = ACTIONS(6844), + [aux_sym_def_type_statement_token4] = ACTIONS(6844), + [aux_sym_def_type_statement_token5] = ACTIONS(6844), + [aux_sym_def_type_statement_token6] = ACTIONS(6844), + [aux_sym_def_type_statement_token7] = ACTIONS(6844), + [aux_sym_def_type_statement_token8] = ACTIONS(6844), + [aux_sym_def_type_statement_token9] = ACTIONS(6844), + [aux_sym_def_type_statement_token10] = ACTIONS(6844), + [aux_sym_def_type_statement_token11] = ACTIONS(6844), + [aux_sym_def_type_statement_token12] = ACTIONS(6844), + [aux_sym_def_type_statement_token13] = ACTIONS(6844), + [aux_sym_def_type_statement_token14] = ACTIONS(6844), + [aux_sym_call_statement_token1] = ACTIONS(6844), + [sym__ambiguous_call_statement] = ACTIONS(6844), + [aux_sym_addressof_expression_token1] = ACTIONS(6844), + [aux_sym_type_of_expression_token1] = ACTIONS(6844), + [aux_sym_unary_expression_token1] = ACTIONS(6844), + [sym_string_literal] = ACTIONS(6842), + [sym_number_literal] = ACTIONS(6842), + [aux_sym_boolean_literal_token1] = ACTIONS(6844), + [aux_sym_boolean_literal_token2] = ACTIONS(6844), + [sym_nothing_literal] = ACTIONS(6844), + [sym_null_literal] = ACTIONS(6844), + [sym_empty_literal] = ACTIONS(6844), + [sym_date_literal] = ACTIONS(6842), + [anon_sym_POUND] = ACTIONS(6844), + }, + [STATE(4245)] = { + [sym_identifier] = ACTIONS(8881), + [sym_newline] = ACTIONS(8884), + [anon_sym_COLON] = ACTIONS(8884), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8881), + [aux_sym_frm_property_statement_token1] = ACTIONS(8881), + [anon_sym_DOT] = ACTIONS(8881), + [anon_sym_BANG] = ACTIONS(8884), + [aux_sym__attribute_identifier_token1] = ACTIONS(8881), + [aux_sym_option_statement_token3] = ACTIONS(8881), + [aux_sym_type_declaration_token1] = ACTIONS(8887), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8887), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8881), + [aux_sym_enum_declaration_token1] = ACTIONS(8887), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8887), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8887), + [aux_sym_declare_function_statement_token1] = ACTIONS(8887), + [aux_sym_preprocessor_const_token1] = ACTIONS(8881), + [aux_sym__property_get_header_token1] = ACTIONS(8887), + [aux_sym_event_declaration_token1] = ACTIONS(8887), + [sym_static_modifier] = ACTIONS(8881), + [sym__dim_keyword] = ACTIONS(8881), + [sym__redim_keyword] = ACTIONS(8881), + [aux_sym_get_accessor_token1] = ACTIONS(8881), + [aux_sym_set_accessor_token1] = ACTIONS(8881), + [aux_sym_const_declaration_token1] = ACTIONS(8881), + [anon_sym_LPAREN] = ACTIONS(8884), + [aux_sym_as_type_clause_token2] = ACTIONS(8881), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8881), + [aux_sym_visibility_token1] = ACTIONS(8881), + [aux_sym_visibility_token2] = ACTIONS(8881), + [aux_sym_elseif_fragment_token1] = ACTIONS(8881), + [aux_sym_else_fragment_token1] = ACTIONS(8881), + [aux_sym_select_statement_token1] = ACTIONS(8881), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8949), + [aux_sym__for_header_token1] = ACTIONS(8881), + [aux_sym_do_statement_token1] = ACTIONS(8881), + [aux_sym_do_condition_token1] = ACTIONS(8881), + [aux_sym_with_statement_token1] = ACTIONS(8881), + [aux_sym_exit_statement_token1] = ACTIONS(8881), + [sym_end_statement] = ACTIONS(8884), + [aux_sym_on_goto_statement_token1] = ACTIONS(8881), + [aux_sym_on_goto_statement_token2] = ACTIONS(8881), + [aux_sym_on_error_statement_token2] = ACTIONS(8881), + [sym__ambiguous_redim_statement] = ACTIONS(8884), + [aux_sym_erase_statement_token1] = ACTIONS(8881), + [aux_sym_open_statement_token1] = ACTIONS(8881), + [aux_sym_file_mode_token2] = ACTIONS(8881), + [aux_sym_file_access_token2] = ACTIONS(8881), + [aux_sym_file_lock_token2] = ACTIONS(8881), + [aux_sym_print_statement_token1] = ACTIONS(8881), + [anon_sym_PLUS] = ACTIONS(8884), + [anon_sym_DASH] = ACTIONS(8881), + [anon_sym_QMARK] = ACTIONS(8884), + [aux_sym_close_statement_token1] = ACTIONS(8881), + [aux_sym_put_statement_token1] = ACTIONS(8881), + [aux_sym_unlock_statement_token1] = ACTIONS(8881), + [aux_sym_seek_statement_token1] = ACTIONS(8881), + [sym_reset_statement] = ACTIONS(8881), + [aux_sym_raise_event_statement_token1] = ACTIONS(8881), + [sym_stop_statement] = ACTIONS(8881), + [sym_beep_statement] = ACTIONS(8881), + [aux_sym_unload_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token2] = ACTIONS(8881), + [aux_sym_def_type_statement_token3] = ACTIONS(8881), + [aux_sym_def_type_statement_token4] = ACTIONS(8881), + [aux_sym_def_type_statement_token5] = ACTIONS(8881), + [aux_sym_def_type_statement_token6] = ACTIONS(8881), + [aux_sym_def_type_statement_token7] = ACTIONS(8881), + [aux_sym_def_type_statement_token8] = ACTIONS(8881), + [aux_sym_def_type_statement_token9] = ACTIONS(8881), + [aux_sym_def_type_statement_token10] = ACTIONS(8881), + [aux_sym_def_type_statement_token11] = ACTIONS(8881), + [aux_sym_def_type_statement_token12] = ACTIONS(8881), + [aux_sym_def_type_statement_token13] = ACTIONS(8881), + [aux_sym_def_type_statement_token14] = ACTIONS(8881), + [aux_sym_call_statement_token1] = ACTIONS(8881), + [sym__ambiguous_call_statement] = ACTIONS(8881), + [aux_sym_addressof_expression_token1] = ACTIONS(8881), + [aux_sym_type_of_expression_token1] = ACTIONS(8881), + [aux_sym_unary_expression_token1] = ACTIONS(8881), + [sym_string_literal] = ACTIONS(8884), + [sym_number_literal] = ACTIONS(8884), + [aux_sym_boolean_literal_token1] = ACTIONS(8881), + [aux_sym_boolean_literal_token2] = ACTIONS(8881), + [sym_nothing_literal] = ACTIONS(8881), + [sym_null_literal] = ACTIONS(8881), + [sym_empty_literal] = ACTIONS(8881), + [sym_date_literal] = ACTIONS(8884), + [anon_sym_POUND] = ACTIONS(8881), + }, + [STATE(4246)] = { + [sym_identifier] = ACTIONS(8915), + [sym_newline] = ACTIONS(8918), + [anon_sym_COLON] = ACTIONS(8918), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8915), + [aux_sym_frm_property_statement_token1] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8915), + [anon_sym_BANG] = ACTIONS(8918), + [aux_sym__attribute_identifier_token1] = ACTIONS(8915), + [aux_sym_option_statement_token3] = ACTIONS(8915), + [aux_sym_type_declaration_token1] = ACTIONS(8921), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8921), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8915), + [aux_sym_enum_declaration_token1] = ACTIONS(8921), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8921), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8921), + [aux_sym_declare_function_statement_token1] = ACTIONS(8921), + [aux_sym_preprocessor_const_token1] = ACTIONS(8915), + [aux_sym__property_get_header_token1] = ACTIONS(8921), + [aux_sym_event_declaration_token1] = ACTIONS(8921), + [sym_static_modifier] = ACTIONS(8915), + [sym__dim_keyword] = ACTIONS(8915), + [sym__redim_keyword] = ACTIONS(8915), + [aux_sym_get_accessor_token1] = ACTIONS(8915), + [aux_sym_set_accessor_token1] = ACTIONS(8915), + [aux_sym_const_declaration_token1] = ACTIONS(8915), + [anon_sym_LPAREN] = ACTIONS(8918), + [aux_sym_as_type_clause_token2] = ACTIONS(8915), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8915), + [aux_sym_visibility_token1] = ACTIONS(8915), + [aux_sym_visibility_token2] = ACTIONS(8915), + [aux_sym_elseif_fragment_token1] = ACTIONS(8915), + [aux_sym_else_fragment_token1] = ACTIONS(8915), + [aux_sym_select_statement_token1] = ACTIONS(8915), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8915), + [aux_sym_do_statement_token1] = ACTIONS(8915), + [aux_sym_do_condition_token1] = ACTIONS(8915), + [aux_sym_with_statement_token1] = ACTIONS(8915), + [aux_sym_exit_statement_token1] = ACTIONS(8915), + [sym_end_statement] = ACTIONS(8918), + [aux_sym_on_goto_statement_token1] = ACTIONS(8915), + [aux_sym_on_goto_statement_token2] = ACTIONS(8915), + [aux_sym_on_error_statement_token2] = ACTIONS(8915), + [sym__ambiguous_redim_statement] = ACTIONS(8918), + [aux_sym_erase_statement_token1] = ACTIONS(8915), + [aux_sym_open_statement_token1] = ACTIONS(8915), + [aux_sym_file_mode_token2] = ACTIONS(8915), + [aux_sym_file_access_token2] = ACTIONS(8915), + [aux_sym_file_lock_token2] = ACTIONS(8915), + [aux_sym_print_statement_token1] = ACTIONS(8915), + [anon_sym_PLUS] = ACTIONS(8918), + [anon_sym_DASH] = ACTIONS(8915), + [anon_sym_QMARK] = ACTIONS(8918), + [aux_sym_close_statement_token1] = ACTIONS(8915), + [aux_sym_put_statement_token1] = ACTIONS(8915), + [aux_sym_unlock_statement_token1] = ACTIONS(8915), + [aux_sym_seek_statement_token1] = ACTIONS(8915), + [sym_reset_statement] = ACTIONS(8915), + [aux_sym_raise_event_statement_token1] = ACTIONS(8915), + [sym_stop_statement] = ACTIONS(8915), + [sym_beep_statement] = ACTIONS(8915), + [aux_sym_unload_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token2] = ACTIONS(8915), + [aux_sym_def_type_statement_token3] = ACTIONS(8915), + [aux_sym_def_type_statement_token4] = ACTIONS(8915), + [aux_sym_def_type_statement_token5] = ACTIONS(8915), + [aux_sym_def_type_statement_token6] = ACTIONS(8915), + [aux_sym_def_type_statement_token7] = ACTIONS(8915), + [aux_sym_def_type_statement_token8] = ACTIONS(8915), + [aux_sym_def_type_statement_token9] = ACTIONS(8915), + [aux_sym_def_type_statement_token10] = ACTIONS(8915), + [aux_sym_def_type_statement_token11] = ACTIONS(8915), + [aux_sym_def_type_statement_token12] = ACTIONS(8915), + [aux_sym_def_type_statement_token13] = ACTIONS(8915), + [aux_sym_def_type_statement_token14] = ACTIONS(8915), + [aux_sym_call_statement_token1] = ACTIONS(8915), + [sym__ambiguous_call_statement] = ACTIONS(8915), + [aux_sym_addressof_expression_token1] = ACTIONS(8915), + [aux_sym_type_of_expression_token1] = ACTIONS(8915), + [aux_sym_unary_expression_token1] = ACTIONS(8915), + [sym_string_literal] = ACTIONS(8918), + [sym_number_literal] = ACTIONS(8918), + [aux_sym_boolean_literal_token1] = ACTIONS(8915), + [aux_sym_boolean_literal_token2] = ACTIONS(8915), + [sym_nothing_literal] = ACTIONS(8915), + [sym_null_literal] = ACTIONS(8915), + [sym_empty_literal] = ACTIONS(8915), + [sym_date_literal] = ACTIONS(8918), + [anon_sym_POUND] = ACTIONS(8915), + }, + [STATE(4247)] = { + [sym_identifier] = ACTIONS(8756), + [sym_newline] = ACTIONS(8759), + [anon_sym_COLON] = ACTIONS(8759), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8756), + [aux_sym_frm_property_statement_token1] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8756), + [anon_sym_BANG] = ACTIONS(8759), + [aux_sym__attribute_identifier_token1] = ACTIONS(8756), + [aux_sym_option_statement_token3] = ACTIONS(8756), + [aux_sym_type_declaration_token1] = ACTIONS(8762), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8762), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8756), + [aux_sym_enum_declaration_token1] = ACTIONS(8762), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8762), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8762), + [aux_sym_declare_function_statement_token1] = ACTIONS(8762), + [aux_sym_preprocessor_const_token1] = ACTIONS(8756), + [aux_sym__property_get_header_token1] = ACTIONS(8762), + [aux_sym_event_declaration_token1] = ACTIONS(8762), + [sym_static_modifier] = ACTIONS(8756), + [sym__dim_keyword] = ACTIONS(8756), + [sym__redim_keyword] = ACTIONS(8756), + [aux_sym_get_accessor_token1] = ACTIONS(8756), + [aux_sym_set_accessor_token1] = ACTIONS(8756), + [aux_sym_const_declaration_token1] = ACTIONS(8756), + [anon_sym_LPAREN] = ACTIONS(8759), + [aux_sym_as_type_clause_token2] = ACTIONS(8756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8756), + [aux_sym_visibility_token1] = ACTIONS(8756), + [aux_sym_visibility_token2] = ACTIONS(8756), + [aux_sym_elseif_fragment_token1] = ACTIONS(8756), + [aux_sym_else_fragment_token1] = ACTIONS(8756), + [aux_sym_select_statement_token1] = ACTIONS(8756), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8756), + [aux_sym_do_statement_token1] = ACTIONS(8756), + [aux_sym_do_condition_token1] = ACTIONS(8756), + [aux_sym_with_statement_token1] = ACTIONS(8756), + [aux_sym_exit_statement_token1] = ACTIONS(8756), + [sym_end_statement] = ACTIONS(8759), + [aux_sym_on_goto_statement_token1] = ACTIONS(8756), + [aux_sym_on_goto_statement_token2] = ACTIONS(8756), + [aux_sym_on_error_statement_token2] = ACTIONS(8756), + [sym__ambiguous_redim_statement] = ACTIONS(8759), + [aux_sym_erase_statement_token1] = ACTIONS(8756), + [aux_sym_open_statement_token1] = ACTIONS(8756), + [aux_sym_file_mode_token2] = ACTIONS(8756), + [aux_sym_file_access_token2] = ACTIONS(8756), + [aux_sym_file_lock_token2] = ACTIONS(8756), + [aux_sym_print_statement_token1] = ACTIONS(8756), + [anon_sym_PLUS] = ACTIONS(8759), + [anon_sym_DASH] = ACTIONS(8756), + [anon_sym_QMARK] = ACTIONS(8759), + [aux_sym_close_statement_token1] = ACTIONS(8756), + [aux_sym_put_statement_token1] = ACTIONS(8756), + [aux_sym_unlock_statement_token1] = ACTIONS(8756), + [aux_sym_seek_statement_token1] = ACTIONS(8756), + [sym_reset_statement] = ACTIONS(8756), + [aux_sym_raise_event_statement_token1] = ACTIONS(8756), + [sym_stop_statement] = ACTIONS(8756), + [sym_beep_statement] = ACTIONS(8756), + [aux_sym_unload_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token2] = ACTIONS(8756), + [aux_sym_def_type_statement_token3] = ACTIONS(8756), + [aux_sym_def_type_statement_token4] = ACTIONS(8756), + [aux_sym_def_type_statement_token5] = ACTIONS(8756), + [aux_sym_def_type_statement_token6] = ACTIONS(8756), + [aux_sym_def_type_statement_token7] = ACTIONS(8756), + [aux_sym_def_type_statement_token8] = ACTIONS(8756), + [aux_sym_def_type_statement_token9] = ACTIONS(8756), + [aux_sym_def_type_statement_token10] = ACTIONS(8756), + [aux_sym_def_type_statement_token11] = ACTIONS(8756), + [aux_sym_def_type_statement_token12] = ACTIONS(8756), + [aux_sym_def_type_statement_token13] = ACTIONS(8756), + [aux_sym_def_type_statement_token14] = ACTIONS(8756), + [aux_sym_call_statement_token1] = ACTIONS(8756), + [sym__ambiguous_call_statement] = ACTIONS(8756), + [aux_sym_addressof_expression_token1] = ACTIONS(8756), + [aux_sym_type_of_expression_token1] = ACTIONS(8756), + [aux_sym_unary_expression_token1] = ACTIONS(8756), + [sym_string_literal] = ACTIONS(8759), + [sym_number_literal] = ACTIONS(8759), + [aux_sym_boolean_literal_token1] = ACTIONS(8756), + [aux_sym_boolean_literal_token2] = ACTIONS(8756), + [sym_nothing_literal] = ACTIONS(8756), + [sym_null_literal] = ACTIONS(8756), + [sym_empty_literal] = ACTIONS(8756), + [sym_date_literal] = ACTIONS(8759), + [anon_sym_POUND] = ACTIONS(8756), + }, + [STATE(4248)] = { + [sym_identifier] = ACTIONS(8686), + [sym_newline] = ACTIONS(8688), + [anon_sym_COLON] = ACTIONS(8688), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8686), + [aux_sym_frm_property_statement_token1] = ACTIONS(8686), + [anon_sym_DOT] = ACTIONS(8686), + [anon_sym_BANG] = ACTIONS(8688), + [aux_sym__attribute_identifier_token1] = ACTIONS(8686), + [aux_sym_option_statement_token3] = ACTIONS(8686), + [aux_sym_type_declaration_token1] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8686), + [aux_sym_enum_declaration_token1] = ACTIONS(8686), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8686), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8686), + [aux_sym_declare_function_statement_token1] = ACTIONS(8686), + [aux_sym_preprocessor_const_token1] = ACTIONS(8686), + [aux_sym__property_get_header_token1] = ACTIONS(8686), + [aux_sym_event_declaration_token1] = ACTIONS(8686), + [sym_static_modifier] = ACTIONS(8686), + [sym__dim_keyword] = ACTIONS(8686), + [sym__redim_keyword] = ACTIONS(8686), + [aux_sym_get_accessor_token1] = ACTIONS(8686), + [aux_sym_set_accessor_token1] = ACTIONS(8686), + [aux_sym_const_declaration_token1] = ACTIONS(8686), + [anon_sym_LPAREN] = ACTIONS(8688), + [aux_sym_as_type_clause_token2] = ACTIONS(8686), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8686), + [aux_sym_visibility_token1] = ACTIONS(8686), + [aux_sym_visibility_token2] = ACTIONS(8686), + [aux_sym_elseif_fragment_token1] = ACTIONS(8686), + [aux_sym_else_fragment_token1] = ACTIONS(8686), + [aux_sym_select_statement_token1] = ACTIONS(8686), + [aux_sym__for_header_token1] = ACTIONS(8686), + [aux_sym_do_statement_token1] = ACTIONS(8686), + [aux_sym_do_condition_token1] = ACTIONS(8686), + [aux_sym_with_statement_token1] = ACTIONS(8686), + [aux_sym_exit_statement_token1] = ACTIONS(8686), + [sym_end_statement] = ACTIONS(8688), + [aux_sym_on_goto_statement_token1] = ACTIONS(8686), + [aux_sym_on_goto_statement_token2] = ACTIONS(8686), + [aux_sym_on_error_statement_token2] = ACTIONS(8686), + [sym__ambiguous_redim_statement] = ACTIONS(8688), + [aux_sym_erase_statement_token1] = ACTIONS(8686), + [aux_sym_open_statement_token1] = ACTIONS(8686), + [aux_sym_open_statement_token3] = ACTIONS(9877), + [aux_sym_file_mode_token2] = ACTIONS(8686), + [aux_sym_file_access_token2] = ACTIONS(8686), + [aux_sym_file_lock_token2] = ACTIONS(8686), + [aux_sym_print_statement_token1] = ACTIONS(8686), + [anon_sym_PLUS] = ACTIONS(8688), + [anon_sym_DASH] = ACTIONS(8686), + [anon_sym_QMARK] = ACTIONS(8688), + [aux_sym_close_statement_token1] = ACTIONS(8686), + [aux_sym_put_statement_token1] = ACTIONS(8686), + [aux_sym_unlock_statement_token1] = ACTIONS(8686), + [aux_sym_seek_statement_token1] = ACTIONS(8686), + [sym_reset_statement] = ACTIONS(8686), + [aux_sym_raise_event_statement_token1] = ACTIONS(8686), + [sym_stop_statement] = ACTIONS(8686), + [sym_beep_statement] = ACTIONS(8686), + [aux_sym_unload_statement_token1] = ACTIONS(8686), + [aux_sym_def_type_statement_token1] = ACTIONS(8686), + [aux_sym_def_type_statement_token2] = ACTIONS(8686), + [aux_sym_def_type_statement_token3] = ACTIONS(8686), + [aux_sym_def_type_statement_token4] = ACTIONS(8686), + [aux_sym_def_type_statement_token5] = ACTIONS(8686), + [aux_sym_def_type_statement_token6] = ACTIONS(8686), + [aux_sym_def_type_statement_token7] = ACTIONS(8686), + [aux_sym_def_type_statement_token8] = ACTIONS(8686), + [aux_sym_def_type_statement_token9] = ACTIONS(8686), + [aux_sym_def_type_statement_token10] = ACTIONS(8686), + [aux_sym_def_type_statement_token11] = ACTIONS(8686), + [aux_sym_def_type_statement_token12] = ACTIONS(8686), + [aux_sym_def_type_statement_token13] = ACTIONS(8686), + [aux_sym_def_type_statement_token14] = ACTIONS(8686), + [aux_sym_call_statement_token1] = ACTIONS(8686), + [sym__ambiguous_call_statement] = ACTIONS(8686), + [aux_sym_addressof_expression_token1] = ACTIONS(8686), + [aux_sym_type_of_expression_token1] = ACTIONS(8686), + [aux_sym_unary_expression_token1] = ACTIONS(8686), + [sym_string_literal] = ACTIONS(8688), + [sym_number_literal] = ACTIONS(8688), + [aux_sym_boolean_literal_token1] = ACTIONS(8686), + [aux_sym_boolean_literal_token2] = ACTIONS(8686), + [sym_nothing_literal] = ACTIONS(8686), + [sym_null_literal] = ACTIONS(8686), + [sym_empty_literal] = ACTIONS(8686), + [sym_date_literal] = ACTIONS(8688), + [anon_sym_POUND] = ACTIONS(8686), + }, + [STATE(4249)] = { + [sym_next_variable_list] = STATE(5811), + [sym__assignable_expression] = STATE(4903), + [sym__callable_expression] = STATE(5080), + [sym_call_expression] = STATE(4943), + [sym_member_expression] = STATE(5562), + [sym_qualified_member_expression] = STATE(5656), + [sym_implicit_member_expression] = STATE(5656), + [sym_identifier] = ACTIONS(9867), + [sym_newline] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(6856), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6858), + [aux_sym_frm_property_statement_token1] = ACTIONS(9869), + [anon_sym_DOT] = ACTIONS(9871), + [anon_sym_BANG] = ACTIONS(9873), + [aux_sym__attribute_identifier_token1] = ACTIONS(6858), + [aux_sym_option_statement_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6858), + [aux_sym_preprocessor_const_token1] = ACTIONS(6858), + [sym_static_modifier] = ACTIONS(6858), + [sym__dim_keyword] = ACTIONS(6858), + [sym__redim_keyword] = ACTIONS(6858), + [aux_sym_get_accessor_token1] = ACTIONS(6858), + [aux_sym_set_accessor_token1] = ACTIONS(6858), + [aux_sym_const_declaration_token1] = ACTIONS(6858), + [anon_sym_LPAREN] = ACTIONS(6856), + [aux_sym_as_type_clause_token2] = ACTIONS(6858), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9875), + [aux_sym_visibility_token1] = ACTIONS(6858), + [aux_sym_visibility_token2] = ACTIONS(6858), + [aux_sym_elseif_fragment_token1] = ACTIONS(6858), + [aux_sym_else_fragment_token1] = ACTIONS(6858), + [aux_sym_select_statement_token1] = ACTIONS(6858), + [aux_sym_select_statement_token2] = ACTIONS(6858), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6858), + [aux_sym__for_header_token1] = ACTIONS(6858), + [aux_sym_do_statement_token1] = ACTIONS(6858), + [aux_sym_do_condition_token1] = ACTIONS(6858), + [aux_sym_with_statement_token1] = ACTIONS(6858), + [aux_sym_exit_statement_token1] = ACTIONS(6858), + [sym_end_statement] = ACTIONS(6856), + [aux_sym_on_goto_statement_token1] = ACTIONS(6858), + [aux_sym_on_goto_statement_token2] = ACTIONS(6858), + [aux_sym_on_error_statement_token2] = ACTIONS(6858), + [sym__ambiguous_redim_statement] = ACTIONS(6856), + [aux_sym_erase_statement_token1] = ACTIONS(6858), + [aux_sym_open_statement_token1] = ACTIONS(6858), + [aux_sym_file_mode_token2] = ACTIONS(6858), + [aux_sym_file_access_token2] = ACTIONS(6858), + [aux_sym_file_lock_token2] = ACTIONS(6858), + [aux_sym_print_statement_token1] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6856), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_QMARK] = ACTIONS(6856), + [aux_sym_close_statement_token1] = ACTIONS(6858), + [aux_sym_put_statement_token1] = ACTIONS(6858), + [aux_sym_unlock_statement_token1] = ACTIONS(6858), + [aux_sym_seek_statement_token1] = ACTIONS(6858), + [sym_reset_statement] = ACTIONS(6858), + [aux_sym_raise_event_statement_token1] = ACTIONS(6858), + [sym_stop_statement] = ACTIONS(6858), + [sym_beep_statement] = ACTIONS(6858), + [aux_sym_unload_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token2] = ACTIONS(6858), + [aux_sym_def_type_statement_token3] = ACTIONS(6858), + [aux_sym_def_type_statement_token4] = ACTIONS(6858), + [aux_sym_def_type_statement_token5] = ACTIONS(6858), + [aux_sym_def_type_statement_token6] = ACTIONS(6858), + [aux_sym_def_type_statement_token7] = ACTIONS(6858), + [aux_sym_def_type_statement_token8] = ACTIONS(6858), + [aux_sym_def_type_statement_token9] = ACTIONS(6858), + [aux_sym_def_type_statement_token10] = ACTIONS(6858), + [aux_sym_def_type_statement_token11] = ACTIONS(6858), + [aux_sym_def_type_statement_token12] = ACTIONS(6858), + [aux_sym_def_type_statement_token13] = ACTIONS(6858), + [aux_sym_def_type_statement_token14] = ACTIONS(6858), + [aux_sym_call_statement_token1] = ACTIONS(6858), + [sym__ambiguous_call_statement] = ACTIONS(6858), + [aux_sym_addressof_expression_token1] = ACTIONS(6858), + [aux_sym_type_of_expression_token1] = ACTIONS(6858), + [aux_sym_unary_expression_token1] = ACTIONS(6858), + [sym_string_literal] = ACTIONS(6856), + [sym_number_literal] = ACTIONS(6856), + [aux_sym_boolean_literal_token1] = ACTIONS(6858), + [aux_sym_boolean_literal_token2] = ACTIONS(6858), + [sym_nothing_literal] = ACTIONS(6858), + [sym_null_literal] = ACTIONS(6858), + [sym_empty_literal] = ACTIONS(6858), + [sym_date_literal] = ACTIONS(6856), + [anon_sym_POUND] = ACTIONS(6858), + }, + [STATE(4250)] = { + [sym_next_variable_list] = STATE(5815), + [sym__assignable_expression] = STATE(4903), + [sym__callable_expression] = STATE(5080), + [sym_call_expression] = STATE(4943), + [sym_member_expression] = STATE(5562), + [sym_qualified_member_expression] = STATE(5656), + [sym_implicit_member_expression] = STATE(5656), + [sym_identifier] = ACTIONS(9867), + [sym_newline] = ACTIONS(6867), + [anon_sym_COLON] = ACTIONS(6867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6869), + [aux_sym_frm_property_statement_token1] = ACTIONS(9869), + [anon_sym_DOT] = ACTIONS(9871), + [anon_sym_BANG] = ACTIONS(9873), + [aux_sym__attribute_identifier_token1] = ACTIONS(6869), + [aux_sym_option_statement_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6869), + [aux_sym_preprocessor_const_token1] = ACTIONS(6869), + [sym_static_modifier] = ACTIONS(6869), + [sym__dim_keyword] = ACTIONS(6869), + [sym__redim_keyword] = ACTIONS(6869), + [aux_sym_get_accessor_token1] = ACTIONS(6869), + [aux_sym_set_accessor_token1] = ACTIONS(6869), + [aux_sym_const_declaration_token1] = ACTIONS(6869), + [anon_sym_LPAREN] = ACTIONS(6867), + [aux_sym_as_type_clause_token2] = ACTIONS(6869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9875), + [aux_sym_visibility_token1] = ACTIONS(6869), + [aux_sym_visibility_token2] = ACTIONS(6869), + [aux_sym_elseif_fragment_token1] = ACTIONS(6869), + [aux_sym_else_fragment_token1] = ACTIONS(6869), + [aux_sym_select_statement_token1] = ACTIONS(6869), + [aux_sym_select_statement_token2] = ACTIONS(6869), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6869), + [aux_sym__for_header_token1] = ACTIONS(6869), + [aux_sym_do_statement_token1] = ACTIONS(6869), + [aux_sym_do_condition_token1] = ACTIONS(6869), + [aux_sym_with_statement_token1] = ACTIONS(6869), + [aux_sym_exit_statement_token1] = ACTIONS(6869), + [sym_end_statement] = ACTIONS(6867), + [aux_sym_on_goto_statement_token1] = ACTIONS(6869), + [aux_sym_on_goto_statement_token2] = ACTIONS(6869), + [aux_sym_on_error_statement_token2] = ACTIONS(6869), + [sym__ambiguous_redim_statement] = ACTIONS(6867), + [aux_sym_erase_statement_token1] = ACTIONS(6869), + [aux_sym_open_statement_token1] = ACTIONS(6869), + [aux_sym_file_mode_token2] = ACTIONS(6869), + [aux_sym_file_access_token2] = ACTIONS(6869), + [aux_sym_file_lock_token2] = ACTIONS(6869), + [aux_sym_print_statement_token1] = ACTIONS(6869), + [anon_sym_PLUS] = ACTIONS(6867), + [anon_sym_DASH] = ACTIONS(6869), + [anon_sym_QMARK] = ACTIONS(6867), + [aux_sym_close_statement_token1] = ACTIONS(6869), + [aux_sym_put_statement_token1] = ACTIONS(6869), + [aux_sym_unlock_statement_token1] = ACTIONS(6869), + [aux_sym_seek_statement_token1] = ACTIONS(6869), + [sym_reset_statement] = ACTIONS(6869), + [aux_sym_raise_event_statement_token1] = ACTIONS(6869), + [sym_stop_statement] = ACTIONS(6869), + [sym_beep_statement] = ACTIONS(6869), + [aux_sym_unload_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token2] = ACTIONS(6869), + [aux_sym_def_type_statement_token3] = ACTIONS(6869), + [aux_sym_def_type_statement_token4] = ACTIONS(6869), + [aux_sym_def_type_statement_token5] = ACTIONS(6869), + [aux_sym_def_type_statement_token6] = ACTIONS(6869), + [aux_sym_def_type_statement_token7] = ACTIONS(6869), + [aux_sym_def_type_statement_token8] = ACTIONS(6869), + [aux_sym_def_type_statement_token9] = ACTIONS(6869), + [aux_sym_def_type_statement_token10] = ACTIONS(6869), + [aux_sym_def_type_statement_token11] = ACTIONS(6869), + [aux_sym_def_type_statement_token12] = ACTIONS(6869), + [aux_sym_def_type_statement_token13] = ACTIONS(6869), + [aux_sym_def_type_statement_token14] = ACTIONS(6869), + [aux_sym_call_statement_token1] = ACTIONS(6869), + [sym__ambiguous_call_statement] = ACTIONS(6869), + [aux_sym_addressof_expression_token1] = ACTIONS(6869), + [aux_sym_type_of_expression_token1] = ACTIONS(6869), + [aux_sym_unary_expression_token1] = ACTIONS(6869), + [sym_string_literal] = ACTIONS(6867), + [sym_number_literal] = ACTIONS(6867), + [aux_sym_boolean_literal_token1] = ACTIONS(6869), + [aux_sym_boolean_literal_token2] = ACTIONS(6869), + [sym_nothing_literal] = ACTIONS(6869), + [sym_null_literal] = ACTIONS(6869), + [sym_empty_literal] = ACTIONS(6869), + [sym_date_literal] = ACTIONS(6867), + [anon_sym_POUND] = ACTIONS(6869), + }, + [STATE(4251)] = { + [sym_identifier] = ACTIONS(8958), + [sym_newline] = ACTIONS(8960), + [anon_sym_COLON] = ACTIONS(8960), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8958), + [aux_sym_frm_property_statement_token1] = ACTIONS(8958), + [anon_sym_DOT] = ACTIONS(8958), + [anon_sym_BANG] = ACTIONS(8960), + [aux_sym__attribute_identifier_token1] = ACTIONS(8958), + [aux_sym_option_statement_token3] = ACTIONS(8958), + [aux_sym_type_declaration_token1] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8958), + [aux_sym_enum_declaration_token1] = ACTIONS(8958), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8958), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8958), + [aux_sym_declare_function_statement_token1] = ACTIONS(8958), + [aux_sym_preprocessor_const_token1] = ACTIONS(8958), + [aux_sym__property_get_header_token1] = ACTIONS(8958), + [aux_sym_event_declaration_token1] = ACTIONS(8958), + [sym_static_modifier] = ACTIONS(8958), + [sym__dim_keyword] = ACTIONS(8958), + [sym__redim_keyword] = ACTIONS(8958), + [aux_sym_get_accessor_token1] = ACTIONS(8958), + [aux_sym_set_accessor_token1] = ACTIONS(8958), + [anon_sym_COMMA] = ACTIONS(8960), + [aux_sym_const_declaration_token1] = ACTIONS(8958), + [anon_sym_LPAREN] = ACTIONS(8960), + [aux_sym_as_type_clause_token2] = ACTIONS(8958), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8958), + [aux_sym_visibility_token1] = ACTIONS(8958), + [aux_sym_visibility_token2] = ACTIONS(8958), + [aux_sym_elseif_fragment_token1] = ACTIONS(8958), + [aux_sym_else_fragment_token1] = ACTIONS(8958), + [aux_sym_select_statement_token1] = ACTIONS(8958), + [aux_sym__for_header_token1] = ACTIONS(8958), + [aux_sym_do_statement_token1] = ACTIONS(8958), + [aux_sym_do_condition_token1] = ACTIONS(8958), + [aux_sym_with_statement_token1] = ACTIONS(8958), + [aux_sym_exit_statement_token1] = ACTIONS(8958), + [sym_end_statement] = ACTIONS(8960), + [aux_sym_on_goto_statement_token1] = ACTIONS(8958), + [aux_sym_on_goto_statement_token2] = ACTIONS(8958), + [aux_sym_on_error_statement_token2] = ACTIONS(8958), + [sym__ambiguous_redim_statement] = ACTIONS(8960), + [aux_sym_erase_statement_token1] = ACTIONS(8958), + [aux_sym_open_statement_token1] = ACTIONS(8958), + [aux_sym_file_mode_token2] = ACTIONS(8958), + [aux_sym_file_access_token2] = ACTIONS(8958), + [aux_sym_file_lock_token2] = ACTIONS(8958), + [aux_sym_print_statement_token1] = ACTIONS(8958), + [anon_sym_PLUS] = ACTIONS(8960), + [anon_sym_DASH] = ACTIONS(8958), + [anon_sym_QMARK] = ACTIONS(8960), + [aux_sym_close_statement_token1] = ACTIONS(8958), + [aux_sym_put_statement_token1] = ACTIONS(8958), + [aux_sym_unlock_statement_token1] = ACTIONS(8958), + [aux_sym_seek_statement_token1] = ACTIONS(8958), + [sym_reset_statement] = ACTIONS(8958), + [aux_sym_raise_event_statement_token1] = ACTIONS(8958), + [sym_stop_statement] = ACTIONS(8958), + [sym_beep_statement] = ACTIONS(8958), + [aux_sym_unload_statement_token1] = ACTIONS(8958), + [aux_sym_def_type_statement_token1] = ACTIONS(8958), + [aux_sym_def_type_statement_token2] = ACTIONS(8958), + [aux_sym_def_type_statement_token3] = ACTIONS(8958), + [aux_sym_def_type_statement_token4] = ACTIONS(8958), + [aux_sym_def_type_statement_token5] = ACTIONS(8958), + [aux_sym_def_type_statement_token6] = ACTIONS(8958), + [aux_sym_def_type_statement_token7] = ACTIONS(8958), + [aux_sym_def_type_statement_token8] = ACTIONS(8958), + [aux_sym_def_type_statement_token9] = ACTIONS(8958), + [aux_sym_def_type_statement_token10] = ACTIONS(8958), + [aux_sym_def_type_statement_token11] = ACTIONS(8958), + [aux_sym_def_type_statement_token12] = ACTIONS(8958), + [aux_sym_def_type_statement_token13] = ACTIONS(8958), + [aux_sym_def_type_statement_token14] = ACTIONS(8958), + [aux_sym_call_statement_token1] = ACTIONS(8958), + [sym__ambiguous_call_statement] = ACTIONS(8958), + [aux_sym_addressof_expression_token1] = ACTIONS(8958), + [aux_sym_type_of_expression_token1] = ACTIONS(8958), + [aux_sym_unary_expression_token1] = ACTIONS(8958), + [sym_string_literal] = ACTIONS(8960), + [sym_number_literal] = ACTIONS(8960), + [aux_sym_boolean_literal_token1] = ACTIONS(8958), + [aux_sym_boolean_literal_token2] = ACTIONS(8958), + [sym_nothing_literal] = ACTIONS(8958), + [sym_null_literal] = ACTIONS(8958), + [sym_empty_literal] = ACTIONS(8958), + [sym_date_literal] = ACTIONS(8960), + [anon_sym_POUND] = ACTIONS(8958), + }, + [STATE(4252)] = { + [sym_identifier] = ACTIONS(8723), + [sym_newline] = ACTIONS(8725), + [anon_sym_COLON] = ACTIONS(8725), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8723), + [aux_sym_frm_property_statement_token1] = ACTIONS(8723), + [anon_sym_DOT] = ACTIONS(8723), + [anon_sym_BANG] = ACTIONS(8725), + [aux_sym__attribute_identifier_token1] = ACTIONS(8723), + [aux_sym_option_statement_token3] = ACTIONS(8723), + [aux_sym_type_declaration_token1] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8723), + [aux_sym_enum_declaration_token1] = ACTIONS(8723), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8723), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8723), + [aux_sym_declare_function_statement_token1] = ACTIONS(8723), + [aux_sym_preprocessor_const_token1] = ACTIONS(8723), + [aux_sym__property_get_header_token1] = ACTIONS(8723), + [aux_sym_event_declaration_token1] = ACTIONS(8723), + [sym_static_modifier] = ACTIONS(8723), + [sym__dim_keyword] = ACTIONS(8723), + [sym__redim_keyword] = ACTIONS(8723), + [aux_sym_get_accessor_token1] = ACTIONS(8723), + [aux_sym_set_accessor_token1] = ACTIONS(8723), + [aux_sym_const_declaration_token1] = ACTIONS(8723), + [anon_sym_LPAREN] = ACTIONS(8725), + [aux_sym_as_type_clause_token2] = ACTIONS(8723), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8723), + [aux_sym_visibility_token1] = ACTIONS(8723), + [aux_sym_visibility_token2] = ACTIONS(8723), + [aux_sym_elseif_fragment_token1] = ACTIONS(8723), + [aux_sym_else_fragment_token1] = ACTIONS(8723), + [aux_sym_select_statement_token1] = ACTIONS(8723), + [aux_sym__for_header_token1] = ACTIONS(8723), + [aux_sym_do_statement_token1] = ACTIONS(8723), + [aux_sym_do_condition_token1] = ACTIONS(8723), + [aux_sym_with_statement_token1] = ACTIONS(8723), + [aux_sym_exit_statement_token1] = ACTIONS(8723), + [sym_end_statement] = ACTIONS(8725), + [aux_sym_on_goto_statement_token1] = ACTIONS(8723), + [aux_sym_on_goto_statement_token2] = ACTIONS(8723), + [aux_sym_on_error_statement_token2] = ACTIONS(8723), + [sym__ambiguous_redim_statement] = ACTIONS(8725), + [aux_sym_erase_statement_token1] = ACTIONS(8723), + [aux_sym_open_statement_token1] = ACTIONS(8723), + [aux_sym_open_statement_token3] = ACTIONS(9879), + [aux_sym_file_mode_token2] = ACTIONS(8723), + [aux_sym_file_access_token2] = ACTIONS(8723), + [aux_sym_file_lock_token2] = ACTIONS(8723), + [aux_sym_print_statement_token1] = ACTIONS(8723), + [anon_sym_PLUS] = ACTIONS(8725), + [anon_sym_DASH] = ACTIONS(8723), + [anon_sym_QMARK] = ACTIONS(8725), + [aux_sym_close_statement_token1] = ACTIONS(8723), + [aux_sym_put_statement_token1] = ACTIONS(8723), + [aux_sym_unlock_statement_token1] = ACTIONS(8723), + [aux_sym_seek_statement_token1] = ACTIONS(8723), + [sym_reset_statement] = ACTIONS(8723), + [aux_sym_raise_event_statement_token1] = ACTIONS(8723), + [sym_stop_statement] = ACTIONS(8723), + [sym_beep_statement] = ACTIONS(8723), + [aux_sym_unload_statement_token1] = ACTIONS(8723), + [aux_sym_def_type_statement_token1] = ACTIONS(8723), + [aux_sym_def_type_statement_token2] = ACTIONS(8723), + [aux_sym_def_type_statement_token3] = ACTIONS(8723), + [aux_sym_def_type_statement_token4] = ACTIONS(8723), + [aux_sym_def_type_statement_token5] = ACTIONS(8723), + [aux_sym_def_type_statement_token6] = ACTIONS(8723), + [aux_sym_def_type_statement_token7] = ACTIONS(8723), + [aux_sym_def_type_statement_token8] = ACTIONS(8723), + [aux_sym_def_type_statement_token9] = ACTIONS(8723), + [aux_sym_def_type_statement_token10] = ACTIONS(8723), + [aux_sym_def_type_statement_token11] = ACTIONS(8723), + [aux_sym_def_type_statement_token12] = ACTIONS(8723), + [aux_sym_def_type_statement_token13] = ACTIONS(8723), + [aux_sym_def_type_statement_token14] = ACTIONS(8723), + [aux_sym_call_statement_token1] = ACTIONS(8723), + [sym__ambiguous_call_statement] = ACTIONS(8723), + [aux_sym_addressof_expression_token1] = ACTIONS(8723), + [aux_sym_type_of_expression_token1] = ACTIONS(8723), + [aux_sym_unary_expression_token1] = ACTIONS(8723), + [sym_string_literal] = ACTIONS(8725), + [sym_number_literal] = ACTIONS(8725), + [aux_sym_boolean_literal_token1] = ACTIONS(8723), + [aux_sym_boolean_literal_token2] = ACTIONS(8723), + [sym_nothing_literal] = ACTIONS(8723), + [sym_null_literal] = ACTIONS(8723), + [sym_empty_literal] = ACTIONS(8723), + [sym_date_literal] = ACTIONS(8725), + [anon_sym_POUND] = ACTIONS(8723), + }, + [STATE(4253)] = { + [sym_identifier] = ACTIONS(8970), + [sym_newline] = ACTIONS(8972), + [anon_sym_COLON] = ACTIONS(8972), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8970), + [aux_sym_frm_property_statement_token1] = ACTIONS(8970), + [anon_sym_DOT] = ACTIONS(8970), + [anon_sym_BANG] = ACTIONS(8972), + [aux_sym__attribute_identifier_token1] = ACTIONS(8970), + [aux_sym_option_statement_token3] = ACTIONS(8970), + [aux_sym_type_declaration_token1] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8970), + [aux_sym_enum_declaration_token1] = ACTIONS(8970), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8970), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8970), + [aux_sym_declare_function_statement_token1] = ACTIONS(8970), + [aux_sym_preprocessor_const_token1] = ACTIONS(8970), + [aux_sym__property_get_header_token1] = ACTIONS(8970), + [aux_sym_event_declaration_token1] = ACTIONS(8970), + [sym_static_modifier] = ACTIONS(8970), + [sym__dim_keyword] = ACTIONS(8970), + [sym__redim_keyword] = ACTIONS(8970), + [aux_sym_get_accessor_token1] = ACTIONS(8970), + [aux_sym_set_accessor_token1] = ACTIONS(8970), + [anon_sym_COMMA] = ACTIONS(8972), + [aux_sym_const_declaration_token1] = ACTIONS(8970), + [anon_sym_LPAREN] = ACTIONS(8972), + [aux_sym_as_type_clause_token2] = ACTIONS(8970), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8970), + [aux_sym_visibility_token1] = ACTIONS(8970), + [aux_sym_visibility_token2] = ACTIONS(8970), + [aux_sym_elseif_fragment_token1] = ACTIONS(8970), + [aux_sym_else_fragment_token1] = ACTIONS(8970), + [aux_sym_select_statement_token1] = ACTIONS(8970), + [aux_sym__for_header_token1] = ACTIONS(8970), + [aux_sym_do_statement_token1] = ACTIONS(8970), + [aux_sym_do_condition_token1] = ACTIONS(8970), + [aux_sym_with_statement_token1] = ACTIONS(8970), + [aux_sym_exit_statement_token1] = ACTIONS(8970), + [sym_end_statement] = ACTIONS(8972), + [aux_sym_on_goto_statement_token1] = ACTIONS(8970), + [aux_sym_on_goto_statement_token2] = ACTIONS(8970), + [aux_sym_on_error_statement_token2] = ACTIONS(8970), + [sym__ambiguous_redim_statement] = ACTIONS(8972), + [aux_sym_erase_statement_token1] = ACTIONS(8970), + [aux_sym_open_statement_token1] = ACTIONS(8970), + [aux_sym_file_mode_token2] = ACTIONS(8970), + [aux_sym_file_access_token2] = ACTIONS(8970), + [aux_sym_file_lock_token2] = ACTIONS(8970), + [aux_sym_print_statement_token1] = ACTIONS(8970), + [anon_sym_PLUS] = ACTIONS(8972), + [anon_sym_DASH] = ACTIONS(8970), + [anon_sym_QMARK] = ACTIONS(8972), + [aux_sym_close_statement_token1] = ACTIONS(8970), + [aux_sym_put_statement_token1] = ACTIONS(8970), + [aux_sym_unlock_statement_token1] = ACTIONS(8970), + [aux_sym_seek_statement_token1] = ACTIONS(8970), + [sym_reset_statement] = ACTIONS(8970), + [aux_sym_raise_event_statement_token1] = ACTIONS(8970), + [sym_stop_statement] = ACTIONS(8970), + [sym_beep_statement] = ACTIONS(8970), + [aux_sym_unload_statement_token1] = ACTIONS(8970), + [aux_sym_def_type_statement_token1] = ACTIONS(8970), + [aux_sym_def_type_statement_token2] = ACTIONS(8970), + [aux_sym_def_type_statement_token3] = ACTIONS(8970), + [aux_sym_def_type_statement_token4] = ACTIONS(8970), + [aux_sym_def_type_statement_token5] = ACTIONS(8970), + [aux_sym_def_type_statement_token6] = ACTIONS(8970), + [aux_sym_def_type_statement_token7] = ACTIONS(8970), + [aux_sym_def_type_statement_token8] = ACTIONS(8970), + [aux_sym_def_type_statement_token9] = ACTIONS(8970), + [aux_sym_def_type_statement_token10] = ACTIONS(8970), + [aux_sym_def_type_statement_token11] = ACTIONS(8970), + [aux_sym_def_type_statement_token12] = ACTIONS(8970), + [aux_sym_def_type_statement_token13] = ACTIONS(8970), + [aux_sym_def_type_statement_token14] = ACTIONS(8970), + [aux_sym_call_statement_token1] = ACTIONS(8970), + [sym__ambiguous_call_statement] = ACTIONS(8970), + [aux_sym_addressof_expression_token1] = ACTIONS(8970), + [aux_sym_type_of_expression_token1] = ACTIONS(8970), + [aux_sym_unary_expression_token1] = ACTIONS(8970), + [sym_string_literal] = ACTIONS(8972), + [sym_number_literal] = ACTIONS(8972), + [aux_sym_boolean_literal_token1] = ACTIONS(8970), + [aux_sym_boolean_literal_token2] = ACTIONS(8970), + [sym_nothing_literal] = ACTIONS(8970), + [sym_null_literal] = ACTIONS(8970), + [sym_empty_literal] = ACTIONS(8970), + [sym_date_literal] = ACTIONS(8972), + [anon_sym_POUND] = ACTIONS(8970), + }, + [STATE(4254)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(4255)] = { + [sym_next_variable_list] = STATE(5821), + [sym__assignable_expression] = STATE(4903), + [sym__callable_expression] = STATE(5080), + [sym_call_expression] = STATE(4943), + [sym_member_expression] = STATE(5562), + [sym_qualified_member_expression] = STATE(5656), + [sym_implicit_member_expression] = STATE(5656), + [sym_identifier] = ACTIONS(9867), + [sym_newline] = ACTIONS(6810), + [anon_sym_COLON] = ACTIONS(6810), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6812), + [aux_sym_frm_property_statement_token1] = ACTIONS(9869), + [anon_sym_DOT] = ACTIONS(9871), + [anon_sym_BANG] = ACTIONS(9873), + [aux_sym__attribute_identifier_token1] = ACTIONS(6812), + [aux_sym_option_statement_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6812), + [aux_sym_preprocessor_const_token1] = ACTIONS(6812), + [sym_static_modifier] = ACTIONS(6812), + [sym__dim_keyword] = ACTIONS(6812), + [sym__redim_keyword] = ACTIONS(6812), + [aux_sym_get_accessor_token1] = ACTIONS(6812), + [aux_sym_set_accessor_token1] = ACTIONS(6812), + [aux_sym_const_declaration_token1] = ACTIONS(6812), + [anon_sym_LPAREN] = ACTIONS(6810), + [aux_sym_as_type_clause_token2] = ACTIONS(6812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9875), + [aux_sym_visibility_token1] = ACTIONS(6812), + [aux_sym_visibility_token2] = ACTIONS(6812), + [aux_sym_elseif_fragment_token1] = ACTIONS(6812), + [aux_sym_else_fragment_token1] = ACTIONS(6812), + [aux_sym_select_statement_token1] = ACTIONS(6812), + [aux_sym_select_statement_token2] = ACTIONS(6812), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6812), + [aux_sym__for_header_token1] = ACTIONS(6812), + [aux_sym_do_statement_token1] = ACTIONS(6812), + [aux_sym_do_condition_token1] = ACTIONS(6812), + [aux_sym_with_statement_token1] = ACTIONS(6812), + [aux_sym_exit_statement_token1] = ACTIONS(6812), + [sym_end_statement] = ACTIONS(6810), + [aux_sym_on_goto_statement_token1] = ACTIONS(6812), + [aux_sym_on_goto_statement_token2] = ACTIONS(6812), + [aux_sym_on_error_statement_token2] = ACTIONS(6812), + [sym__ambiguous_redim_statement] = ACTIONS(6810), + [aux_sym_erase_statement_token1] = ACTIONS(6812), + [aux_sym_open_statement_token1] = ACTIONS(6812), + [aux_sym_file_mode_token2] = ACTIONS(6812), + [aux_sym_file_access_token2] = ACTIONS(6812), + [aux_sym_file_lock_token2] = ACTIONS(6812), + [aux_sym_print_statement_token1] = ACTIONS(6812), + [anon_sym_PLUS] = ACTIONS(6810), + [anon_sym_DASH] = ACTIONS(6812), + [anon_sym_QMARK] = ACTIONS(6810), + [aux_sym_close_statement_token1] = ACTIONS(6812), + [aux_sym_put_statement_token1] = ACTIONS(6812), + [aux_sym_unlock_statement_token1] = ACTIONS(6812), + [aux_sym_seek_statement_token1] = ACTIONS(6812), + [sym_reset_statement] = ACTIONS(6812), + [aux_sym_raise_event_statement_token1] = ACTIONS(6812), + [sym_stop_statement] = ACTIONS(6812), + [sym_beep_statement] = ACTIONS(6812), + [aux_sym_unload_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token2] = ACTIONS(6812), + [aux_sym_def_type_statement_token3] = ACTIONS(6812), + [aux_sym_def_type_statement_token4] = ACTIONS(6812), + [aux_sym_def_type_statement_token5] = ACTIONS(6812), + [aux_sym_def_type_statement_token6] = ACTIONS(6812), + [aux_sym_def_type_statement_token7] = ACTIONS(6812), + [aux_sym_def_type_statement_token8] = ACTIONS(6812), + [aux_sym_def_type_statement_token9] = ACTIONS(6812), + [aux_sym_def_type_statement_token10] = ACTIONS(6812), + [aux_sym_def_type_statement_token11] = ACTIONS(6812), + [aux_sym_def_type_statement_token12] = ACTIONS(6812), + [aux_sym_def_type_statement_token13] = ACTIONS(6812), + [aux_sym_def_type_statement_token14] = ACTIONS(6812), + [aux_sym_call_statement_token1] = ACTIONS(6812), + [sym__ambiguous_call_statement] = ACTIONS(6812), + [aux_sym_addressof_expression_token1] = ACTIONS(6812), + [aux_sym_type_of_expression_token1] = ACTIONS(6812), + [aux_sym_unary_expression_token1] = ACTIONS(6812), + [sym_string_literal] = ACTIONS(6810), + [sym_number_literal] = ACTIONS(6810), + [aux_sym_boolean_literal_token1] = ACTIONS(6812), + [aux_sym_boolean_literal_token2] = ACTIONS(6812), + [sym_nothing_literal] = ACTIONS(6812), + [sym_null_literal] = ACTIONS(6812), + [sym_empty_literal] = ACTIONS(6812), + [sym_date_literal] = ACTIONS(6810), + [anon_sym_POUND] = ACTIONS(6812), + }, + [STATE(4256)] = { + [sym_next_variable_list] = STATE(5822), + [sym__assignable_expression] = STATE(4903), + [sym__callable_expression] = STATE(5080), + [sym_call_expression] = STATE(4943), + [sym_member_expression] = STATE(5562), + [sym_qualified_member_expression] = STATE(5656), + [sym_implicit_member_expression] = STATE(5656), + [sym_identifier] = ACTIONS(9867), + [sym_newline] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6828), + [aux_sym_frm_property_statement_token1] = ACTIONS(9869), + [anon_sym_DOT] = ACTIONS(9871), + [anon_sym_BANG] = ACTIONS(9873), + [aux_sym__attribute_identifier_token1] = ACTIONS(6828), + [aux_sym_option_statement_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6828), + [aux_sym_preprocessor_const_token1] = ACTIONS(6828), + [sym_static_modifier] = ACTIONS(6828), + [sym__dim_keyword] = ACTIONS(6828), + [sym__redim_keyword] = ACTIONS(6828), + [aux_sym_get_accessor_token1] = ACTIONS(6828), + [aux_sym_set_accessor_token1] = ACTIONS(6828), + [aux_sym_const_declaration_token1] = ACTIONS(6828), + [anon_sym_LPAREN] = ACTIONS(6826), + [aux_sym_as_type_clause_token2] = ACTIONS(6828), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9875), + [aux_sym_visibility_token1] = ACTIONS(6828), + [aux_sym_visibility_token2] = ACTIONS(6828), + [aux_sym_elseif_fragment_token1] = ACTIONS(6828), + [aux_sym_else_fragment_token1] = ACTIONS(6828), + [aux_sym_select_statement_token1] = ACTIONS(6828), + [aux_sym_select_statement_token2] = ACTIONS(6828), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6828), + [aux_sym__for_header_token1] = ACTIONS(6828), + [aux_sym_do_statement_token1] = ACTIONS(6828), + [aux_sym_do_condition_token1] = ACTIONS(6828), + [aux_sym_with_statement_token1] = ACTIONS(6828), + [aux_sym_exit_statement_token1] = ACTIONS(6828), + [sym_end_statement] = ACTIONS(6826), + [aux_sym_on_goto_statement_token1] = ACTIONS(6828), + [aux_sym_on_goto_statement_token2] = ACTIONS(6828), + [aux_sym_on_error_statement_token2] = ACTIONS(6828), + [sym__ambiguous_redim_statement] = ACTIONS(6826), + [aux_sym_erase_statement_token1] = ACTIONS(6828), + [aux_sym_open_statement_token1] = ACTIONS(6828), + [aux_sym_file_mode_token2] = ACTIONS(6828), + [aux_sym_file_access_token2] = ACTIONS(6828), + [aux_sym_file_lock_token2] = ACTIONS(6828), + [aux_sym_print_statement_token1] = ACTIONS(6828), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_DASH] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6826), + [aux_sym_close_statement_token1] = ACTIONS(6828), + [aux_sym_put_statement_token1] = ACTIONS(6828), + [aux_sym_unlock_statement_token1] = ACTIONS(6828), + [aux_sym_seek_statement_token1] = ACTIONS(6828), + [sym_reset_statement] = ACTIONS(6828), + [aux_sym_raise_event_statement_token1] = ACTIONS(6828), + [sym_stop_statement] = ACTIONS(6828), + [sym_beep_statement] = ACTIONS(6828), + [aux_sym_unload_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token2] = ACTIONS(6828), + [aux_sym_def_type_statement_token3] = ACTIONS(6828), + [aux_sym_def_type_statement_token4] = ACTIONS(6828), + [aux_sym_def_type_statement_token5] = ACTIONS(6828), + [aux_sym_def_type_statement_token6] = ACTIONS(6828), + [aux_sym_def_type_statement_token7] = ACTIONS(6828), + [aux_sym_def_type_statement_token8] = ACTIONS(6828), + [aux_sym_def_type_statement_token9] = ACTIONS(6828), + [aux_sym_def_type_statement_token10] = ACTIONS(6828), + [aux_sym_def_type_statement_token11] = ACTIONS(6828), + [aux_sym_def_type_statement_token12] = ACTIONS(6828), + [aux_sym_def_type_statement_token13] = ACTIONS(6828), + [aux_sym_def_type_statement_token14] = ACTIONS(6828), + [aux_sym_call_statement_token1] = ACTIONS(6828), + [sym__ambiguous_call_statement] = ACTIONS(6828), + [aux_sym_addressof_expression_token1] = ACTIONS(6828), + [aux_sym_type_of_expression_token1] = ACTIONS(6828), + [aux_sym_unary_expression_token1] = ACTIONS(6828), + [sym_string_literal] = ACTIONS(6826), + [sym_number_literal] = ACTIONS(6826), + [aux_sym_boolean_literal_token1] = ACTIONS(6828), + [aux_sym_boolean_literal_token2] = ACTIONS(6828), + [sym_nothing_literal] = ACTIONS(6828), + [sym_null_literal] = ACTIONS(6828), + [sym_empty_literal] = ACTIONS(6828), + [sym_date_literal] = ACTIONS(6826), + [anon_sym_POUND] = ACTIONS(6828), + }, + [STATE(4257)] = { + [sym_identifier] = ACTIONS(3996), + [sym_newline] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3996), + [aux_sym_frm_property_statement_token1] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3994), + [aux_sym__attribute_identifier_token1] = ACTIONS(3996), + [aux_sym_option_statement_token3] = ACTIONS(3996), + [aux_sym_type_declaration_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3996), + [aux_sym_enum_declaration_token1] = ACTIONS(3996), + [aux_sym_declare_sub_statement_token1] = ACTIONS(3996), + [aux_sym_declare_sub_statement_token2] = ACTIONS(3996), + [aux_sym_declare_function_statement_token1] = ACTIONS(3996), + [aux_sym_preprocessor_const_token1] = ACTIONS(3996), + [aux_sym__property_get_header_token1] = ACTIONS(3996), + [aux_sym_event_declaration_token1] = ACTIONS(3996), + [sym_static_modifier] = ACTIONS(3996), + [sym__dim_keyword] = ACTIONS(3996), + [sym__redim_keyword] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3996), + [aux_sym_set_accessor_token1] = ACTIONS(3996), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3994), + [aux_sym_as_type_clause_token2] = ACTIONS(3996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3996), + [aux_sym_visibility_token1] = ACTIONS(3996), + [aux_sym_visibility_token2] = ACTIONS(3996), + [aux_sym_elseif_fragment_token1] = ACTIONS(3996), + [aux_sym_else_fragment_token1] = ACTIONS(3996), + [aux_sym_select_statement_token1] = ACTIONS(3996), + [aux_sym__for_header_token1] = ACTIONS(3996), + [aux_sym_do_statement_token1] = ACTIONS(3996), + [aux_sym_do_condition_token1] = ACTIONS(3996), + [aux_sym_with_statement_token1] = ACTIONS(3996), + [aux_sym_exit_statement_token1] = ACTIONS(3996), + [sym_end_statement] = ACTIONS(3994), + [aux_sym_on_goto_statement_token1] = ACTIONS(3996), + [aux_sym_on_goto_statement_token2] = ACTIONS(3996), + [aux_sym_on_error_statement_token2] = ACTIONS(3996), + [sym__ambiguous_redim_statement] = ACTIONS(3994), + [aux_sym_erase_statement_token1] = ACTIONS(3996), + [aux_sym_open_statement_token1] = ACTIONS(3996), + [aux_sym_file_mode_token2] = ACTIONS(3996), + [aux_sym_file_access_token2] = ACTIONS(3996), + [aux_sym_file_lock_token2] = ACTIONS(3996), + [aux_sym_print_statement_token1] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3994), + [aux_sym_close_statement_token1] = ACTIONS(3996), + [aux_sym_put_statement_token1] = ACTIONS(3996), + [aux_sym_unlock_statement_token1] = ACTIONS(3996), + [aux_sym_seek_statement_token1] = ACTIONS(3996), + [sym_reset_statement] = ACTIONS(3996), + [aux_sym_raise_event_statement_token1] = ACTIONS(3996), + [sym_stop_statement] = ACTIONS(3996), + [sym_beep_statement] = ACTIONS(3996), + [aux_sym_unload_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token2] = ACTIONS(3996), + [aux_sym_def_type_statement_token3] = ACTIONS(3996), + [aux_sym_def_type_statement_token4] = ACTIONS(3996), + [aux_sym_def_type_statement_token5] = ACTIONS(3996), + [aux_sym_def_type_statement_token6] = ACTIONS(3996), + [aux_sym_def_type_statement_token7] = ACTIONS(3996), + [aux_sym_def_type_statement_token8] = ACTIONS(3996), + [aux_sym_def_type_statement_token9] = ACTIONS(3996), + [aux_sym_def_type_statement_token10] = ACTIONS(3996), + [aux_sym_def_type_statement_token11] = ACTIONS(3996), + [aux_sym_def_type_statement_token12] = ACTIONS(3996), + [aux_sym_def_type_statement_token13] = ACTIONS(3996), + [aux_sym_def_type_statement_token14] = ACTIONS(3996), + [aux_sym_call_statement_token1] = ACTIONS(3996), + [sym__ambiguous_call_statement] = ACTIONS(3996), + [aux_sym_addressof_expression_token1] = ACTIONS(3996), + [aux_sym_type_of_expression_token1] = ACTIONS(3996), + [aux_sym_unary_expression_token1] = ACTIONS(3996), + [sym_string_literal] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3994), + [aux_sym_boolean_literal_token1] = ACTIONS(3996), + [aux_sym_boolean_literal_token2] = ACTIONS(3996), + [sym_nothing_literal] = ACTIONS(3996), + [sym_null_literal] = ACTIONS(3996), + [sym_empty_literal] = ACTIONS(3996), + [sym_date_literal] = ACTIONS(3994), + [anon_sym_POUND] = ACTIONS(3996), + }, + [STATE(4258)] = { + [sym_next_variable_list] = STATE(5827), + [sym__assignable_expression] = STATE(4903), + [sym__callable_expression] = STATE(5080), + [sym_call_expression] = STATE(4943), + [sym_member_expression] = STATE(5562), + [sym_qualified_member_expression] = STATE(5656), + [sym_implicit_member_expression] = STATE(5656), + [sym_identifier] = ACTIONS(9867), + [sym_newline] = ACTIONS(6863), + [anon_sym_COLON] = ACTIONS(6863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6865), + [aux_sym_frm_property_statement_token1] = ACTIONS(9869), + [anon_sym_DOT] = ACTIONS(9871), + [anon_sym_BANG] = ACTIONS(9873), + [aux_sym__attribute_identifier_token1] = ACTIONS(6865), + [aux_sym_option_statement_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6865), + [aux_sym_preprocessor_const_token1] = ACTIONS(6865), + [sym_static_modifier] = ACTIONS(6865), + [sym__dim_keyword] = ACTIONS(6865), + [sym__redim_keyword] = ACTIONS(6865), + [aux_sym_get_accessor_token1] = ACTIONS(6865), + [aux_sym_set_accessor_token1] = ACTIONS(6865), + [aux_sym_const_declaration_token1] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6863), + [aux_sym_as_type_clause_token2] = ACTIONS(6865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9875), + [aux_sym_visibility_token1] = ACTIONS(6865), + [aux_sym_visibility_token2] = ACTIONS(6865), + [aux_sym_elseif_fragment_token1] = ACTIONS(6865), + [aux_sym_else_fragment_token1] = ACTIONS(6865), + [aux_sym_select_statement_token1] = ACTIONS(6865), + [aux_sym_select_statement_token2] = ACTIONS(6865), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6865), + [aux_sym__for_header_token1] = ACTIONS(6865), + [aux_sym_do_statement_token1] = ACTIONS(6865), + [aux_sym_do_condition_token1] = ACTIONS(6865), + [aux_sym_with_statement_token1] = ACTIONS(6865), + [aux_sym_exit_statement_token1] = ACTIONS(6865), + [sym_end_statement] = ACTIONS(6863), + [aux_sym_on_goto_statement_token1] = ACTIONS(6865), + [aux_sym_on_goto_statement_token2] = ACTIONS(6865), + [aux_sym_on_error_statement_token2] = ACTIONS(6865), + [sym__ambiguous_redim_statement] = ACTIONS(6863), + [aux_sym_erase_statement_token1] = ACTIONS(6865), + [aux_sym_open_statement_token1] = ACTIONS(6865), + [aux_sym_file_mode_token2] = ACTIONS(6865), + [aux_sym_file_access_token2] = ACTIONS(6865), + [aux_sym_file_lock_token2] = ACTIONS(6865), + [aux_sym_print_statement_token1] = ACTIONS(6865), + [anon_sym_PLUS] = ACTIONS(6863), + [anon_sym_DASH] = ACTIONS(6865), + [anon_sym_QMARK] = ACTIONS(6863), + [aux_sym_close_statement_token1] = ACTIONS(6865), + [aux_sym_put_statement_token1] = ACTIONS(6865), + [aux_sym_unlock_statement_token1] = ACTIONS(6865), + [aux_sym_seek_statement_token1] = ACTIONS(6865), + [sym_reset_statement] = ACTIONS(6865), + [aux_sym_raise_event_statement_token1] = ACTIONS(6865), + [sym_stop_statement] = ACTIONS(6865), + [sym_beep_statement] = ACTIONS(6865), + [aux_sym_unload_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token2] = ACTIONS(6865), + [aux_sym_def_type_statement_token3] = ACTIONS(6865), + [aux_sym_def_type_statement_token4] = ACTIONS(6865), + [aux_sym_def_type_statement_token5] = ACTIONS(6865), + [aux_sym_def_type_statement_token6] = ACTIONS(6865), + [aux_sym_def_type_statement_token7] = ACTIONS(6865), + [aux_sym_def_type_statement_token8] = ACTIONS(6865), + [aux_sym_def_type_statement_token9] = ACTIONS(6865), + [aux_sym_def_type_statement_token10] = ACTIONS(6865), + [aux_sym_def_type_statement_token11] = ACTIONS(6865), + [aux_sym_def_type_statement_token12] = ACTIONS(6865), + [aux_sym_def_type_statement_token13] = ACTIONS(6865), + [aux_sym_def_type_statement_token14] = ACTIONS(6865), + [aux_sym_call_statement_token1] = ACTIONS(6865), + [sym__ambiguous_call_statement] = ACTIONS(6865), + [aux_sym_addressof_expression_token1] = ACTIONS(6865), + [aux_sym_type_of_expression_token1] = ACTIONS(6865), + [aux_sym_unary_expression_token1] = ACTIONS(6865), + [sym_string_literal] = ACTIONS(6863), + [sym_number_literal] = ACTIONS(6863), + [aux_sym_boolean_literal_token1] = ACTIONS(6865), + [aux_sym_boolean_literal_token2] = ACTIONS(6865), + [sym_nothing_literal] = ACTIONS(6865), + [sym_null_literal] = ACTIONS(6865), + [sym_empty_literal] = ACTIONS(6865), + [sym_date_literal] = ACTIONS(6863), + [anon_sym_POUND] = ACTIONS(6865), + }, + [STATE(4259)] = { + [sym_next_variable_list] = STATE(5831), + [sym__assignable_expression] = STATE(4903), + [sym__callable_expression] = STATE(5080), + [sym_call_expression] = STATE(4943), + [sym_member_expression] = STATE(5562), + [sym_qualified_member_expression] = STATE(5656), + [sym_implicit_member_expression] = STATE(5656), + [sym_identifier] = ACTIONS(9867), + [sym_newline] = ACTIONS(6848), + [anon_sym_COLON] = ACTIONS(6848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6850), + [aux_sym_frm_property_statement_token1] = ACTIONS(9869), + [anon_sym_DOT] = ACTIONS(9871), + [anon_sym_BANG] = ACTIONS(9873), + [aux_sym__attribute_identifier_token1] = ACTIONS(6850), + [aux_sym_option_statement_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6850), + [aux_sym_preprocessor_const_token1] = ACTIONS(6850), + [sym_static_modifier] = ACTIONS(6850), + [sym__dim_keyword] = ACTIONS(6850), + [sym__redim_keyword] = ACTIONS(6850), + [aux_sym_get_accessor_token1] = ACTIONS(6850), + [aux_sym_set_accessor_token1] = ACTIONS(6850), + [aux_sym_const_declaration_token1] = ACTIONS(6850), + [anon_sym_LPAREN] = ACTIONS(6848), + [aux_sym_as_type_clause_token2] = ACTIONS(6850), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9875), + [aux_sym_visibility_token1] = ACTIONS(6850), + [aux_sym_visibility_token2] = ACTIONS(6850), + [aux_sym_elseif_fragment_token1] = ACTIONS(6850), + [aux_sym_else_fragment_token1] = ACTIONS(6850), + [aux_sym_select_statement_token1] = ACTIONS(6850), + [aux_sym_select_statement_token2] = ACTIONS(6850), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6850), + [aux_sym__for_header_token1] = ACTIONS(6850), + [aux_sym_do_statement_token1] = ACTIONS(6850), + [aux_sym_do_condition_token1] = ACTIONS(6850), + [aux_sym_with_statement_token1] = ACTIONS(6850), + [aux_sym_exit_statement_token1] = ACTIONS(6850), + [sym_end_statement] = ACTIONS(6848), + [aux_sym_on_goto_statement_token1] = ACTIONS(6850), + [aux_sym_on_goto_statement_token2] = ACTIONS(6850), + [aux_sym_on_error_statement_token2] = ACTIONS(6850), + [sym__ambiguous_redim_statement] = ACTIONS(6848), + [aux_sym_erase_statement_token1] = ACTIONS(6850), + [aux_sym_open_statement_token1] = ACTIONS(6850), + [aux_sym_file_mode_token2] = ACTIONS(6850), + [aux_sym_file_access_token2] = ACTIONS(6850), + [aux_sym_file_lock_token2] = ACTIONS(6850), + [aux_sym_print_statement_token1] = ACTIONS(6850), + [anon_sym_PLUS] = ACTIONS(6848), + [anon_sym_DASH] = ACTIONS(6850), + [anon_sym_QMARK] = ACTIONS(6848), + [aux_sym_close_statement_token1] = ACTIONS(6850), + [aux_sym_put_statement_token1] = ACTIONS(6850), + [aux_sym_unlock_statement_token1] = ACTIONS(6850), + [aux_sym_seek_statement_token1] = ACTIONS(6850), + [sym_reset_statement] = ACTIONS(6850), + [aux_sym_raise_event_statement_token1] = ACTIONS(6850), + [sym_stop_statement] = ACTIONS(6850), + [sym_beep_statement] = ACTIONS(6850), + [aux_sym_unload_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token2] = ACTIONS(6850), + [aux_sym_def_type_statement_token3] = ACTIONS(6850), + [aux_sym_def_type_statement_token4] = ACTIONS(6850), + [aux_sym_def_type_statement_token5] = ACTIONS(6850), + [aux_sym_def_type_statement_token6] = ACTIONS(6850), + [aux_sym_def_type_statement_token7] = ACTIONS(6850), + [aux_sym_def_type_statement_token8] = ACTIONS(6850), + [aux_sym_def_type_statement_token9] = ACTIONS(6850), + [aux_sym_def_type_statement_token10] = ACTIONS(6850), + [aux_sym_def_type_statement_token11] = ACTIONS(6850), + [aux_sym_def_type_statement_token12] = ACTIONS(6850), + [aux_sym_def_type_statement_token13] = ACTIONS(6850), + [aux_sym_def_type_statement_token14] = ACTIONS(6850), + [aux_sym_call_statement_token1] = ACTIONS(6850), + [sym__ambiguous_call_statement] = ACTIONS(6850), + [aux_sym_addressof_expression_token1] = ACTIONS(6850), + [aux_sym_type_of_expression_token1] = ACTIONS(6850), + [aux_sym_unary_expression_token1] = ACTIONS(6850), + [sym_string_literal] = ACTIONS(6848), + [sym_number_literal] = ACTIONS(6848), + [aux_sym_boolean_literal_token1] = ACTIONS(6850), + [aux_sym_boolean_literal_token2] = ACTIONS(6850), + [sym_nothing_literal] = ACTIONS(6850), + [sym_null_literal] = ACTIONS(6850), + [sym_empty_literal] = ACTIONS(6850), + [sym_date_literal] = ACTIONS(6848), + [anon_sym_POUND] = ACTIONS(6850), + }, + [STATE(4260)] = { + [sym_next_variable_list] = STATE(5832), + [sym__assignable_expression] = STATE(4903), + [sym__callable_expression] = STATE(5080), + [sym_call_expression] = STATE(4943), + [sym_member_expression] = STATE(5562), + [sym_qualified_member_expression] = STATE(5656), + [sym_implicit_member_expression] = STATE(5656), + [sym_identifier] = ACTIONS(9867), + [sym_newline] = ACTIONS(6822), + [anon_sym_COLON] = ACTIONS(6822), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6824), + [aux_sym_frm_property_statement_token1] = ACTIONS(9869), + [anon_sym_DOT] = ACTIONS(9871), + [anon_sym_BANG] = ACTIONS(9873), + [aux_sym__attribute_identifier_token1] = ACTIONS(6824), + [aux_sym_option_statement_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6824), + [aux_sym_preprocessor_const_token1] = ACTIONS(6824), + [sym_static_modifier] = ACTIONS(6824), + [sym__dim_keyword] = ACTIONS(6824), + [sym__redim_keyword] = ACTIONS(6824), + [aux_sym_get_accessor_token1] = ACTIONS(6824), + [aux_sym_set_accessor_token1] = ACTIONS(6824), + [aux_sym_const_declaration_token1] = ACTIONS(6824), + [anon_sym_LPAREN] = ACTIONS(6822), + [aux_sym_as_type_clause_token2] = ACTIONS(6824), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9875), + [aux_sym_visibility_token1] = ACTIONS(6824), + [aux_sym_visibility_token2] = ACTIONS(6824), + [aux_sym_elseif_fragment_token1] = ACTIONS(6824), + [aux_sym_else_fragment_token1] = ACTIONS(6824), + [aux_sym_select_statement_token1] = ACTIONS(6824), + [aux_sym_select_statement_token2] = ACTIONS(6824), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6824), + [aux_sym__for_header_token1] = ACTIONS(6824), + [aux_sym_do_statement_token1] = ACTIONS(6824), + [aux_sym_do_condition_token1] = ACTIONS(6824), + [aux_sym_with_statement_token1] = ACTIONS(6824), + [aux_sym_exit_statement_token1] = ACTIONS(6824), + [sym_end_statement] = ACTIONS(6822), + [aux_sym_on_goto_statement_token1] = ACTIONS(6824), + [aux_sym_on_goto_statement_token2] = ACTIONS(6824), + [aux_sym_on_error_statement_token2] = ACTIONS(6824), + [sym__ambiguous_redim_statement] = ACTIONS(6822), + [aux_sym_erase_statement_token1] = ACTIONS(6824), + [aux_sym_open_statement_token1] = ACTIONS(6824), + [aux_sym_file_mode_token2] = ACTIONS(6824), + [aux_sym_file_access_token2] = ACTIONS(6824), + [aux_sym_file_lock_token2] = ACTIONS(6824), + [aux_sym_print_statement_token1] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6822), + [aux_sym_close_statement_token1] = ACTIONS(6824), + [aux_sym_put_statement_token1] = ACTIONS(6824), + [aux_sym_unlock_statement_token1] = ACTIONS(6824), + [aux_sym_seek_statement_token1] = ACTIONS(6824), + [sym_reset_statement] = ACTIONS(6824), + [aux_sym_raise_event_statement_token1] = ACTIONS(6824), + [sym_stop_statement] = ACTIONS(6824), + [sym_beep_statement] = ACTIONS(6824), + [aux_sym_unload_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token2] = ACTIONS(6824), + [aux_sym_def_type_statement_token3] = ACTIONS(6824), + [aux_sym_def_type_statement_token4] = ACTIONS(6824), + [aux_sym_def_type_statement_token5] = ACTIONS(6824), + [aux_sym_def_type_statement_token6] = ACTIONS(6824), + [aux_sym_def_type_statement_token7] = ACTIONS(6824), + [aux_sym_def_type_statement_token8] = ACTIONS(6824), + [aux_sym_def_type_statement_token9] = ACTIONS(6824), + [aux_sym_def_type_statement_token10] = ACTIONS(6824), + [aux_sym_def_type_statement_token11] = ACTIONS(6824), + [aux_sym_def_type_statement_token12] = ACTIONS(6824), + [aux_sym_def_type_statement_token13] = ACTIONS(6824), + [aux_sym_def_type_statement_token14] = ACTIONS(6824), + [aux_sym_call_statement_token1] = ACTIONS(6824), + [sym__ambiguous_call_statement] = ACTIONS(6824), + [aux_sym_addressof_expression_token1] = ACTIONS(6824), + [aux_sym_type_of_expression_token1] = ACTIONS(6824), + [aux_sym_unary_expression_token1] = ACTIONS(6824), + [sym_string_literal] = ACTIONS(6822), + [sym_number_literal] = ACTIONS(6822), + [aux_sym_boolean_literal_token1] = ACTIONS(6824), + [aux_sym_boolean_literal_token2] = ACTIONS(6824), + [sym_nothing_literal] = ACTIONS(6824), + [sym_null_literal] = ACTIONS(6824), + [sym_empty_literal] = ACTIONS(6824), + [sym_date_literal] = ACTIONS(6822), + [anon_sym_POUND] = ACTIONS(6824), + }, + [STATE(4261)] = { + [sym_identifier] = ACTIONS(8709), + [sym_newline] = ACTIONS(8711), + [anon_sym_COLON] = ACTIONS(8711), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8709), + [aux_sym_frm_property_statement_token1] = ACTIONS(8709), + [anon_sym_DOT] = ACTIONS(8709), + [anon_sym_BANG] = ACTIONS(8711), + [aux_sym__attribute_identifier_token1] = ACTIONS(8709), + [aux_sym_option_statement_token3] = ACTIONS(8709), + [aux_sym_type_declaration_token1] = ACTIONS(8709), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8709), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8709), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8709), + [aux_sym_enum_declaration_token1] = ACTIONS(8709), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8709), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8709), + [aux_sym_declare_function_statement_token1] = ACTIONS(8709), + [aux_sym_preprocessor_const_token1] = ACTIONS(8709), + [aux_sym__property_get_header_token1] = ACTIONS(8709), + [aux_sym_event_declaration_token1] = ACTIONS(8709), + [sym_static_modifier] = ACTIONS(8709), + [sym__dim_keyword] = ACTIONS(8709), + [sym__redim_keyword] = ACTIONS(8709), + [aux_sym_get_accessor_token1] = ACTIONS(8709), + [aux_sym_set_accessor_token1] = ACTIONS(8709), + [aux_sym_const_declaration_token1] = ACTIONS(8709), + [anon_sym_LPAREN] = ACTIONS(8711), + [aux_sym_as_type_clause_token1] = ACTIONS(8709), + [aux_sym_as_type_clause_token2] = ACTIONS(8709), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8709), + [aux_sym_visibility_token1] = ACTIONS(8709), + [aux_sym_visibility_token2] = ACTIONS(8709), + [aux_sym_elseif_fragment_token1] = ACTIONS(8709), + [aux_sym_else_fragment_token1] = ACTIONS(8709), + [aux_sym_select_statement_token1] = ACTIONS(8709), + [aux_sym__for_header_token1] = ACTIONS(8709), + [aux_sym_do_statement_token1] = ACTIONS(8709), + [aux_sym_do_condition_token1] = ACTIONS(8709), + [aux_sym_with_statement_token1] = ACTIONS(8709), + [aux_sym_exit_statement_token1] = ACTIONS(8709), + [sym_end_statement] = ACTIONS(8711), + [aux_sym_on_goto_statement_token1] = ACTIONS(8709), + [aux_sym_on_goto_statement_token2] = ACTIONS(8709), + [aux_sym_on_error_statement_token2] = ACTIONS(8709), + [sym__ambiguous_redim_statement] = ACTIONS(8711), + [aux_sym_erase_statement_token1] = ACTIONS(8709), + [aux_sym_open_statement_token1] = ACTIONS(8709), + [aux_sym_file_mode_token2] = ACTIONS(8709), + [aux_sym_file_access_token2] = ACTIONS(8709), + [aux_sym_file_lock_token2] = ACTIONS(8709), + [aux_sym_print_statement_token1] = ACTIONS(8709), + [anon_sym_PLUS] = ACTIONS(8711), + [anon_sym_DASH] = ACTIONS(8709), + [anon_sym_QMARK] = ACTIONS(8711), + [aux_sym_close_statement_token1] = ACTIONS(8709), + [aux_sym_put_statement_token1] = ACTIONS(8709), + [aux_sym_unlock_statement_token1] = ACTIONS(8709), + [aux_sym_seek_statement_token1] = ACTIONS(8709), + [sym_reset_statement] = ACTIONS(8709), + [aux_sym_raise_event_statement_token1] = ACTIONS(8709), + [sym_stop_statement] = ACTIONS(8709), + [sym_beep_statement] = ACTIONS(8709), + [aux_sym_unload_statement_token1] = ACTIONS(8709), + [aux_sym_def_type_statement_token1] = ACTIONS(8709), + [aux_sym_def_type_statement_token2] = ACTIONS(8709), + [aux_sym_def_type_statement_token3] = ACTIONS(8709), + [aux_sym_def_type_statement_token4] = ACTIONS(8709), + [aux_sym_def_type_statement_token5] = ACTIONS(8709), + [aux_sym_def_type_statement_token6] = ACTIONS(8709), + [aux_sym_def_type_statement_token7] = ACTIONS(8709), + [aux_sym_def_type_statement_token8] = ACTIONS(8709), + [aux_sym_def_type_statement_token9] = ACTIONS(8709), + [aux_sym_def_type_statement_token10] = ACTIONS(8709), + [aux_sym_def_type_statement_token11] = ACTIONS(8709), + [aux_sym_def_type_statement_token12] = ACTIONS(8709), + [aux_sym_def_type_statement_token13] = ACTIONS(8709), + [aux_sym_def_type_statement_token14] = ACTIONS(8709), + [aux_sym_call_statement_token1] = ACTIONS(8709), + [sym__ambiguous_call_statement] = ACTIONS(8709), + [aux_sym_addressof_expression_token1] = ACTIONS(8709), + [aux_sym_type_of_expression_token1] = ACTIONS(8709), + [aux_sym_unary_expression_token1] = ACTIONS(8709), + [sym_string_literal] = ACTIONS(8711), + [sym_number_literal] = ACTIONS(8711), + [aux_sym_boolean_literal_token1] = ACTIONS(8709), + [aux_sym_boolean_literal_token2] = ACTIONS(8709), + [sym_nothing_literal] = ACTIONS(8709), + [sym_null_literal] = ACTIONS(8709), + [sym_empty_literal] = ACTIONS(8709), + [sym_date_literal] = ACTIONS(8711), + [anon_sym_POUND] = ACTIONS(8709), + }, + [STATE(4262)] = { + [sym_next_variable_list] = STATE(6169), + [sym__assignable_expression] = STATE(4956), + [sym__callable_expression] = STATE(4977), + [sym_call_expression] = STATE(4901), + [sym_member_expression] = STATE(5393), + [sym_qualified_member_expression] = STATE(5480), + [sym_implicit_member_expression] = STATE(5480), + [sym_identifier] = ACTIONS(9825), + [sym_newline] = ACTIONS(6842), + [anon_sym_COLON] = ACTIONS(6842), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6844), + [aux_sym_frm_property_statement_token1] = ACTIONS(9827), + [anon_sym_DOT] = ACTIONS(9829), + [anon_sym_BANG] = ACTIONS(9831), + [aux_sym__attribute_identifier_token1] = ACTIONS(6844), + [aux_sym_option_statement_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6844), + [aux_sym_preprocessor_const_token1] = ACTIONS(6844), + [sym_static_modifier] = ACTIONS(6844), + [sym__dim_keyword] = ACTIONS(6844), + [sym__redim_keyword] = ACTIONS(6844), + [aux_sym_get_accessor_token1] = ACTIONS(6844), + [aux_sym_set_accessor_token1] = ACTIONS(6844), + [aux_sym_const_declaration_token1] = ACTIONS(6844), + [anon_sym_LPAREN] = ACTIONS(6842), + [aux_sym_as_type_clause_token2] = ACTIONS(6844), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9833), + [aux_sym_visibility_token1] = ACTIONS(6844), + [aux_sym_visibility_token2] = ACTIONS(6844), + [aux_sym_elseif_fragment_token1] = ACTIONS(6844), + [aux_sym_else_fragment_token1] = ACTIONS(6844), + [aux_sym_select_statement_token1] = ACTIONS(6844), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6844), + [aux_sym__for_header_token1] = ACTIONS(6844), + [aux_sym_do_statement_token1] = ACTIONS(6844), + [aux_sym_do_condition_token1] = ACTIONS(6844), + [aux_sym_while_statement_token1] = ACTIONS(6844), + [aux_sym_with_statement_token1] = ACTIONS(6844), + [aux_sym_exit_statement_token1] = ACTIONS(6844), + [sym_end_statement] = ACTIONS(6842), + [aux_sym_on_goto_statement_token1] = ACTIONS(6844), + [aux_sym_on_goto_statement_token2] = ACTIONS(6844), + [aux_sym_on_error_statement_token2] = ACTIONS(6844), + [sym__ambiguous_redim_statement] = ACTIONS(6842), + [aux_sym_erase_statement_token1] = ACTIONS(6844), + [aux_sym_open_statement_token1] = ACTIONS(6844), + [aux_sym_file_mode_token2] = ACTIONS(6844), + [aux_sym_file_access_token2] = ACTIONS(6844), + [aux_sym_file_lock_token2] = ACTIONS(6844), + [aux_sym_print_statement_token1] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6842), + [aux_sym_close_statement_token1] = ACTIONS(6844), + [aux_sym_put_statement_token1] = ACTIONS(6844), + [aux_sym_unlock_statement_token1] = ACTIONS(6844), + [aux_sym_seek_statement_token1] = ACTIONS(6844), + [sym_reset_statement] = ACTIONS(6844), + [aux_sym_raise_event_statement_token1] = ACTIONS(6844), + [sym_stop_statement] = ACTIONS(6844), + [sym_beep_statement] = ACTIONS(6844), + [aux_sym_unload_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token2] = ACTIONS(6844), + [aux_sym_def_type_statement_token3] = ACTIONS(6844), + [aux_sym_def_type_statement_token4] = ACTIONS(6844), + [aux_sym_def_type_statement_token5] = ACTIONS(6844), + [aux_sym_def_type_statement_token6] = ACTIONS(6844), + [aux_sym_def_type_statement_token7] = ACTIONS(6844), + [aux_sym_def_type_statement_token8] = ACTIONS(6844), + [aux_sym_def_type_statement_token9] = ACTIONS(6844), + [aux_sym_def_type_statement_token10] = ACTIONS(6844), + [aux_sym_def_type_statement_token11] = ACTIONS(6844), + [aux_sym_def_type_statement_token12] = ACTIONS(6844), + [aux_sym_def_type_statement_token13] = ACTIONS(6844), + [aux_sym_def_type_statement_token14] = ACTIONS(6844), + [aux_sym_call_statement_token1] = ACTIONS(6844), + [sym__ambiguous_call_statement] = ACTIONS(6844), + [aux_sym_addressof_expression_token1] = ACTIONS(6844), + [aux_sym_type_of_expression_token1] = ACTIONS(6844), + [aux_sym_unary_expression_token1] = ACTIONS(6844), + [sym_string_literal] = ACTIONS(6842), + [sym_number_literal] = ACTIONS(6842), + [aux_sym_boolean_literal_token1] = ACTIONS(6844), + [aux_sym_boolean_literal_token2] = ACTIONS(6844), + [sym_nothing_literal] = ACTIONS(6844), + [sym_null_literal] = ACTIONS(6844), + [sym_empty_literal] = ACTIONS(6844), + [sym_date_literal] = ACTIONS(6842), + [anon_sym_POUND] = ACTIONS(6844), + }, + [STATE(4263)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(4318), + [sym_identifier] = ACTIONS(8733), + [sym_newline] = ACTIONS(8735), + [anon_sym_COLON] = ACTIONS(9853), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8733), + [aux_sym_frm_property_statement_token1] = ACTIONS(8733), + [anon_sym_DOT] = ACTIONS(8733), + [anon_sym_BANG] = ACTIONS(8735), + [aux_sym__attribute_identifier_token1] = ACTIONS(8733), + [aux_sym_option_statement_token3] = ACTIONS(8733), + [aux_sym_type_declaration_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8733), + [aux_sym_enum_declaration_token1] = ACTIONS(8733), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8733), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8733), + [aux_sym_declare_function_statement_token1] = ACTIONS(8733), + [aux_sym_preprocessor_const_token1] = ACTIONS(8733), + [aux_sym__property_get_header_token1] = ACTIONS(8733), + [aux_sym_event_declaration_token1] = ACTIONS(8733), + [sym_static_modifier] = ACTIONS(8733), + [sym__dim_keyword] = ACTIONS(8733), + [sym__redim_keyword] = ACTIONS(8733), + [aux_sym_get_accessor_token1] = ACTIONS(8733), + [aux_sym_set_accessor_token1] = ACTIONS(8733), + [aux_sym_const_declaration_token1] = ACTIONS(8733), + [anon_sym_LPAREN] = ACTIONS(8735), + [aux_sym_as_type_clause_token2] = ACTIONS(8733), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8733), + [aux_sym_visibility_token1] = ACTIONS(8733), + [aux_sym_visibility_token2] = ACTIONS(8733), + [aux_sym_elseif_fragment_token1] = ACTIONS(8733), + [aux_sym_else_fragment_token1] = ACTIONS(9881), + [aux_sym_select_statement_token1] = ACTIONS(8733), + [aux_sym__for_header_token1] = ACTIONS(8733), + [aux_sym_do_statement_token1] = ACTIONS(8733), + [aux_sym_do_condition_token1] = ACTIONS(8733), + [aux_sym_with_statement_token1] = ACTIONS(8733), + [aux_sym_exit_statement_token1] = ACTIONS(8733), + [sym_end_statement] = ACTIONS(8735), + [aux_sym_on_goto_statement_token1] = ACTIONS(8733), + [aux_sym_on_goto_statement_token2] = ACTIONS(8733), + [aux_sym_on_error_statement_token2] = ACTIONS(8733), + [sym__ambiguous_redim_statement] = ACTIONS(8735), + [aux_sym_erase_statement_token1] = ACTIONS(8733), + [aux_sym_open_statement_token1] = ACTIONS(8733), + [aux_sym_file_mode_token2] = ACTIONS(8733), + [aux_sym_file_access_token2] = ACTIONS(8733), + [aux_sym_file_lock_token2] = ACTIONS(8733), + [aux_sym_print_statement_token1] = ACTIONS(8733), + [anon_sym_PLUS] = ACTIONS(8735), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_QMARK] = ACTIONS(8735), + [aux_sym_close_statement_token1] = ACTIONS(8733), + [aux_sym_put_statement_token1] = ACTIONS(8733), + [aux_sym_unlock_statement_token1] = ACTIONS(8733), + [aux_sym_seek_statement_token1] = ACTIONS(8733), + [sym_reset_statement] = ACTIONS(8733), + [aux_sym_raise_event_statement_token1] = ACTIONS(8733), + [sym_stop_statement] = ACTIONS(8733), + [sym_beep_statement] = ACTIONS(8733), + [aux_sym_unload_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token2] = ACTIONS(8733), + [aux_sym_def_type_statement_token3] = ACTIONS(8733), + [aux_sym_def_type_statement_token4] = ACTIONS(8733), + [aux_sym_def_type_statement_token5] = ACTIONS(8733), + [aux_sym_def_type_statement_token6] = ACTIONS(8733), + [aux_sym_def_type_statement_token7] = ACTIONS(8733), + [aux_sym_def_type_statement_token8] = ACTIONS(8733), + [aux_sym_def_type_statement_token9] = ACTIONS(8733), + [aux_sym_def_type_statement_token10] = ACTIONS(8733), + [aux_sym_def_type_statement_token11] = ACTIONS(8733), + [aux_sym_def_type_statement_token12] = ACTIONS(8733), + [aux_sym_def_type_statement_token13] = ACTIONS(8733), + [aux_sym_def_type_statement_token14] = ACTIONS(8733), + [aux_sym_call_statement_token1] = ACTIONS(8733), + [sym__ambiguous_call_statement] = ACTIONS(8733), + [aux_sym_addressof_expression_token1] = ACTIONS(8733), + [aux_sym_type_of_expression_token1] = ACTIONS(8733), + [aux_sym_unary_expression_token1] = ACTIONS(8733), + [sym_string_literal] = ACTIONS(8735), + [sym_number_literal] = ACTIONS(8735), + [aux_sym_boolean_literal_token1] = ACTIONS(8733), + [aux_sym_boolean_literal_token2] = ACTIONS(8733), + [sym_nothing_literal] = ACTIONS(8733), + [sym_null_literal] = ACTIONS(8733), + [sym_empty_literal] = ACTIONS(8733), + [sym_date_literal] = ACTIONS(8735), + [anon_sym_POUND] = ACTIONS(8733), + }, + [STATE(4264)] = { + [sym_next_variable_list] = STATE(6017), + [sym__assignable_expression] = STATE(4997), + [sym__callable_expression] = STATE(4940), + [sym_call_expression] = STATE(5022), + [sym_member_expression] = STATE(5408), + [sym_qualified_member_expression] = STATE(5662), + [sym_implicit_member_expression] = STATE(5662), + [sym_identifier] = ACTIONS(9883), + [sym_newline] = ACTIONS(6842), + [anon_sym_COLON] = ACTIONS(6842), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6844), + [aux_sym_frm_property_statement_token1] = ACTIONS(9885), + [anon_sym_DOT] = ACTIONS(9887), + [anon_sym_BANG] = ACTIONS(9889), + [aux_sym__attribute_identifier_token1] = ACTIONS(6844), + [aux_sym_option_statement_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6844), + [aux_sym_preprocessor_const_token1] = ACTIONS(6844), + [sym_static_modifier] = ACTIONS(6844), + [sym__dim_keyword] = ACTIONS(6844), + [sym__redim_keyword] = ACTIONS(6844), + [aux_sym_get_accessor_token1] = ACTIONS(6844), + [aux_sym_set_accessor_token1] = ACTIONS(6844), + [aux_sym_const_declaration_token1] = ACTIONS(6844), + [anon_sym_LPAREN] = ACTIONS(6842), + [aux_sym_as_type_clause_token2] = ACTIONS(6844), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9891), + [aux_sym_visibility_token1] = ACTIONS(6844), + [aux_sym_visibility_token2] = ACTIONS(6844), + [aux_sym_elseif_fragment_token1] = ACTIONS(6844), + [aux_sym_else_fragment_token1] = ACTIONS(6844), + [aux_sym_select_statement_token1] = ACTIONS(6844), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6844), + [aux_sym__for_header_token1] = ACTIONS(6844), + [aux_sym_do_statement_token1] = ACTIONS(6844), + [aux_sym_do_condition_token1] = ACTIONS(6844), + [aux_sym_with_statement_token1] = ACTIONS(6844), + [aux_sym_exit_statement_token1] = ACTIONS(6844), + [sym_end_statement] = ACTIONS(6842), + [aux_sym_on_goto_statement_token1] = ACTIONS(6844), + [aux_sym_on_goto_statement_token2] = ACTIONS(6844), + [aux_sym_on_error_statement_token2] = ACTIONS(6844), + [sym__ambiguous_redim_statement] = ACTIONS(6842), + [aux_sym_erase_statement_token1] = ACTIONS(6844), + [aux_sym_open_statement_token1] = ACTIONS(6844), + [aux_sym_file_mode_token2] = ACTIONS(6844), + [aux_sym_file_access_token2] = ACTIONS(6844), + [aux_sym_file_lock_token2] = ACTIONS(6844), + [aux_sym_print_statement_token1] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6842), + [aux_sym_close_statement_token1] = ACTIONS(6844), + [aux_sym_put_statement_token1] = ACTIONS(6844), + [aux_sym_unlock_statement_token1] = ACTIONS(6844), + [aux_sym_seek_statement_token1] = ACTIONS(6844), + [sym_reset_statement] = ACTIONS(6844), + [aux_sym_raise_event_statement_token1] = ACTIONS(6844), + [sym_stop_statement] = ACTIONS(6844), + [sym_beep_statement] = ACTIONS(6844), + [aux_sym_unload_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token2] = ACTIONS(6844), + [aux_sym_def_type_statement_token3] = ACTIONS(6844), + [aux_sym_def_type_statement_token4] = ACTIONS(6844), + [aux_sym_def_type_statement_token5] = ACTIONS(6844), + [aux_sym_def_type_statement_token6] = ACTIONS(6844), + [aux_sym_def_type_statement_token7] = ACTIONS(6844), + [aux_sym_def_type_statement_token8] = ACTIONS(6844), + [aux_sym_def_type_statement_token9] = ACTIONS(6844), + [aux_sym_def_type_statement_token10] = ACTIONS(6844), + [aux_sym_def_type_statement_token11] = ACTIONS(6844), + [aux_sym_def_type_statement_token12] = ACTIONS(6844), + [aux_sym_def_type_statement_token13] = ACTIONS(6844), + [aux_sym_def_type_statement_token14] = ACTIONS(6844), + [aux_sym_call_statement_token1] = ACTIONS(6844), + [sym__ambiguous_call_statement] = ACTIONS(6844), + [aux_sym_addressof_expression_token1] = ACTIONS(6844), + [aux_sym_type_of_expression_token1] = ACTIONS(6844), + [aux_sym_unary_expression_token1] = ACTIONS(6844), + [sym_string_literal] = ACTIONS(6842), + [sym_number_literal] = ACTIONS(6842), + [aux_sym_boolean_literal_token1] = ACTIONS(6844), + [aux_sym_boolean_literal_token2] = ACTIONS(6844), + [sym_nothing_literal] = ACTIONS(6844), + [sym_null_literal] = ACTIONS(6844), + [sym_empty_literal] = ACTIONS(6844), + [sym_date_literal] = ACTIONS(6842), + [anon_sym_POUND] = ACTIONS(6844), + }, + [STATE(4265)] = { + [sym_identifier] = ACTIONS(8456), + [sym_newline] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8458), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8456), + [aux_sym_frm_property_statement_token1] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_BANG] = ACTIONS(8458), + [aux_sym__attribute_identifier_token1] = ACTIONS(8456), + [aux_sym_option_statement_token3] = ACTIONS(8456), + [aux_sym_type_declaration_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8456), + [aux_sym_enum_declaration_token1] = ACTIONS(8456), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8456), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8456), + [aux_sym_declare_function_statement_token1] = ACTIONS(8456), + [aux_sym_preprocessor_const_token1] = ACTIONS(8456), + [aux_sym__property_get_header_token1] = ACTIONS(8456), + [aux_sym_event_declaration_token1] = ACTIONS(8456), + [sym_static_modifier] = ACTIONS(8456), + [sym__dim_keyword] = ACTIONS(8456), + [sym__redim_keyword] = ACTIONS(8456), + [aux_sym_get_accessor_token1] = ACTIONS(8456), + [aux_sym_set_accessor_token1] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(8458), + [aux_sym_const_declaration_token1] = ACTIONS(8456), + [anon_sym_LPAREN] = ACTIONS(8458), + [aux_sym_as_type_clause_token2] = ACTIONS(8456), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8456), + [aux_sym_visibility_token1] = ACTIONS(8456), + [aux_sym_visibility_token2] = ACTIONS(8456), + [aux_sym_elseif_fragment_token1] = ACTIONS(8456), + [aux_sym_else_fragment_token1] = ACTIONS(8456), + [aux_sym_select_statement_token1] = ACTIONS(8456), + [aux_sym__for_header_token1] = ACTIONS(8456), + [aux_sym_do_statement_token1] = ACTIONS(8456), + [aux_sym_do_condition_token1] = ACTIONS(8456), + [aux_sym_with_statement_token1] = ACTIONS(8456), + [aux_sym_exit_statement_token1] = ACTIONS(8456), + [sym_end_statement] = ACTIONS(8458), + [aux_sym_on_goto_statement_token1] = ACTIONS(8456), + [aux_sym_on_goto_statement_token2] = ACTIONS(8456), + [aux_sym_on_error_statement_token2] = ACTIONS(8456), + [sym__ambiguous_redim_statement] = ACTIONS(8458), + [aux_sym_erase_statement_token1] = ACTIONS(8456), + [aux_sym_open_statement_token1] = ACTIONS(8456), + [aux_sym_file_mode_token2] = ACTIONS(8456), + [aux_sym_file_access_token2] = ACTIONS(8456), + [aux_sym_file_lock_token2] = ACTIONS(8456), + [aux_sym_print_statement_token1] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8458), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8458), + [aux_sym_close_statement_token1] = ACTIONS(8456), + [aux_sym_put_statement_token1] = ACTIONS(8456), + [aux_sym_unlock_statement_token1] = ACTIONS(8456), + [aux_sym_seek_statement_token1] = ACTIONS(8456), + [sym_reset_statement] = ACTIONS(8456), + [aux_sym_raise_event_statement_token1] = ACTIONS(8456), + [sym_stop_statement] = ACTIONS(8456), + [sym_beep_statement] = ACTIONS(8456), + [aux_sym_unload_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token2] = ACTIONS(8456), + [aux_sym_def_type_statement_token3] = ACTIONS(8456), + [aux_sym_def_type_statement_token4] = ACTIONS(8456), + [aux_sym_def_type_statement_token5] = ACTIONS(8456), + [aux_sym_def_type_statement_token6] = ACTIONS(8456), + [aux_sym_def_type_statement_token7] = ACTIONS(8456), + [aux_sym_def_type_statement_token8] = ACTIONS(8456), + [aux_sym_def_type_statement_token9] = ACTIONS(8456), + [aux_sym_def_type_statement_token10] = ACTIONS(8456), + [aux_sym_def_type_statement_token11] = ACTIONS(8456), + [aux_sym_def_type_statement_token12] = ACTIONS(8456), + [aux_sym_def_type_statement_token13] = ACTIONS(8456), + [aux_sym_def_type_statement_token14] = ACTIONS(8456), + [aux_sym_call_statement_token1] = ACTIONS(8456), + [sym__ambiguous_call_statement] = ACTIONS(8456), + [aux_sym_addressof_expression_token1] = ACTIONS(8456), + [aux_sym_type_of_expression_token1] = ACTIONS(8456), + [aux_sym_unary_expression_token1] = ACTIONS(8456), + [sym_string_literal] = ACTIONS(8458), + [sym_number_literal] = ACTIONS(8458), + [aux_sym_boolean_literal_token1] = ACTIONS(8456), + [aux_sym_boolean_literal_token2] = ACTIONS(8456), + [sym_nothing_literal] = ACTIONS(8456), + [sym_null_literal] = ACTIONS(8456), + [sym_empty_literal] = ACTIONS(8456), + [sym_date_literal] = ACTIONS(8458), + [anon_sym_POUND] = ACTIONS(8456), + }, + [STATE(4266)] = { + [sym_identifier] = ACTIONS(8766), + [sym_newline] = ACTIONS(8768), + [anon_sym_COLON] = ACTIONS(8768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8766), + [aux_sym_frm_property_statement_token1] = ACTIONS(8766), + [anon_sym_DOT] = ACTIONS(8766), + [anon_sym_BANG] = ACTIONS(8768), + [aux_sym__attribute_identifier_token1] = ACTIONS(8766), + [aux_sym_option_statement_token3] = ACTIONS(8766), + [aux_sym_type_declaration_token1] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8766), + [aux_sym_enum_declaration_token1] = ACTIONS(8766), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8766), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8766), + [aux_sym_declare_function_statement_token1] = ACTIONS(8766), + [aux_sym_preprocessor_const_token1] = ACTIONS(8766), + [aux_sym__property_get_header_token1] = ACTIONS(8766), + [aux_sym_event_declaration_token1] = ACTIONS(8766), + [sym_static_modifier] = ACTIONS(8766), + [sym__dim_keyword] = ACTIONS(8766), + [sym__redim_keyword] = ACTIONS(8766), + [aux_sym_get_accessor_token1] = ACTIONS(8766), + [aux_sym_set_accessor_token1] = ACTIONS(8766), + [anon_sym_COMMA] = ACTIONS(9893), + [aux_sym_const_declaration_token1] = ACTIONS(8766), + [anon_sym_LPAREN] = ACTIONS(8768), + [aux_sym_as_type_clause_token2] = ACTIONS(8766), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8766), + [aux_sym_visibility_token1] = ACTIONS(8766), + [aux_sym_visibility_token2] = ACTIONS(8766), + [aux_sym_elseif_fragment_token1] = ACTIONS(8766), + [aux_sym_else_fragment_token1] = ACTIONS(8766), + [aux_sym_select_statement_token1] = ACTIONS(8766), + [aux_sym__for_header_token1] = ACTIONS(8766), + [aux_sym_do_statement_token1] = ACTIONS(8766), + [aux_sym_do_condition_token1] = ACTIONS(8766), + [aux_sym_with_statement_token1] = ACTIONS(8766), + [aux_sym_exit_statement_token1] = ACTIONS(8766), + [sym_end_statement] = ACTIONS(8768), + [aux_sym_on_goto_statement_token1] = ACTIONS(8766), + [aux_sym_on_goto_statement_token2] = ACTIONS(8766), + [aux_sym_on_error_statement_token2] = ACTIONS(8766), + [sym__ambiguous_redim_statement] = ACTIONS(8768), + [aux_sym_erase_statement_token1] = ACTIONS(8766), + [aux_sym_open_statement_token1] = ACTIONS(8766), + [aux_sym_file_mode_token2] = ACTIONS(8766), + [aux_sym_file_access_token2] = ACTIONS(8766), + [aux_sym_file_lock_token2] = ACTIONS(8766), + [aux_sym_print_statement_token1] = ACTIONS(8766), + [anon_sym_PLUS] = ACTIONS(8768), + [anon_sym_DASH] = ACTIONS(8766), + [anon_sym_QMARK] = ACTIONS(8768), + [aux_sym_close_statement_token1] = ACTIONS(8766), + [aux_sym_put_statement_token1] = ACTIONS(8766), + [aux_sym_unlock_statement_token1] = ACTIONS(8766), + [aux_sym_seek_statement_token1] = ACTIONS(8766), + [sym_reset_statement] = ACTIONS(8766), + [aux_sym_raise_event_statement_token1] = ACTIONS(8766), + [sym_stop_statement] = ACTIONS(8766), + [sym_beep_statement] = ACTIONS(8766), + [aux_sym_unload_statement_token1] = ACTIONS(8766), + [aux_sym_def_type_statement_token1] = ACTIONS(8766), + [aux_sym_def_type_statement_token2] = ACTIONS(8766), + [aux_sym_def_type_statement_token3] = ACTIONS(8766), + [aux_sym_def_type_statement_token4] = ACTIONS(8766), + [aux_sym_def_type_statement_token5] = ACTIONS(8766), + [aux_sym_def_type_statement_token6] = ACTIONS(8766), + [aux_sym_def_type_statement_token7] = ACTIONS(8766), + [aux_sym_def_type_statement_token8] = ACTIONS(8766), + [aux_sym_def_type_statement_token9] = ACTIONS(8766), + [aux_sym_def_type_statement_token10] = ACTIONS(8766), + [aux_sym_def_type_statement_token11] = ACTIONS(8766), + [aux_sym_def_type_statement_token12] = ACTIONS(8766), + [aux_sym_def_type_statement_token13] = ACTIONS(8766), + [aux_sym_def_type_statement_token14] = ACTIONS(8766), + [aux_sym_call_statement_token1] = ACTIONS(8766), + [sym__ambiguous_call_statement] = ACTIONS(8766), + [aux_sym_addressof_expression_token1] = ACTIONS(8766), + [aux_sym_type_of_expression_token1] = ACTIONS(8766), + [aux_sym_unary_expression_token1] = ACTIONS(8766), + [sym_string_literal] = ACTIONS(8768), + [sym_number_literal] = ACTIONS(8768), + [aux_sym_boolean_literal_token1] = ACTIONS(8766), + [aux_sym_boolean_literal_token2] = ACTIONS(8766), + [sym_nothing_literal] = ACTIONS(8766), + [sym_null_literal] = ACTIONS(8766), + [sym_empty_literal] = ACTIONS(8766), + [sym_date_literal] = ACTIONS(8768), + [anon_sym_POUND] = ACTIONS(8766), + }, + [STATE(4267)] = { + [sym_next_variable_list] = STATE(6076), + [sym__assignable_expression] = STATE(4997), + [sym__callable_expression] = STATE(4940), + [sym_call_expression] = STATE(5022), + [sym_member_expression] = STATE(5408), + [sym_qualified_member_expression] = STATE(5662), + [sym_implicit_member_expression] = STATE(5662), + [sym_identifier] = ACTIONS(9883), + [sym_newline] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(6856), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6858), + [aux_sym_frm_property_statement_token1] = ACTIONS(9885), + [anon_sym_DOT] = ACTIONS(9887), + [anon_sym_BANG] = ACTIONS(9889), + [aux_sym__attribute_identifier_token1] = ACTIONS(6858), + [aux_sym_option_statement_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6858), + [aux_sym_preprocessor_const_token1] = ACTIONS(6858), + [sym_static_modifier] = ACTIONS(6858), + [sym__dim_keyword] = ACTIONS(6858), + [sym__redim_keyword] = ACTIONS(6858), + [aux_sym_get_accessor_token1] = ACTIONS(6858), + [aux_sym_set_accessor_token1] = ACTIONS(6858), + [aux_sym_const_declaration_token1] = ACTIONS(6858), + [anon_sym_LPAREN] = ACTIONS(6856), + [aux_sym_as_type_clause_token2] = ACTIONS(6858), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9891), + [aux_sym_visibility_token1] = ACTIONS(6858), + [aux_sym_visibility_token2] = ACTIONS(6858), + [aux_sym_elseif_fragment_token1] = ACTIONS(6858), + [aux_sym_else_fragment_token1] = ACTIONS(6858), + [aux_sym_select_statement_token1] = ACTIONS(6858), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6858), + [aux_sym__for_header_token1] = ACTIONS(6858), + [aux_sym_do_statement_token1] = ACTIONS(6858), + [aux_sym_do_condition_token1] = ACTIONS(6858), + [aux_sym_with_statement_token1] = ACTIONS(6858), + [aux_sym_exit_statement_token1] = ACTIONS(6858), + [sym_end_statement] = ACTIONS(6856), + [aux_sym_on_goto_statement_token1] = ACTIONS(6858), + [aux_sym_on_goto_statement_token2] = ACTIONS(6858), + [aux_sym_on_error_statement_token2] = ACTIONS(6858), + [sym__ambiguous_redim_statement] = ACTIONS(6856), + [aux_sym_erase_statement_token1] = ACTIONS(6858), + [aux_sym_open_statement_token1] = ACTIONS(6858), + [aux_sym_file_mode_token2] = ACTIONS(6858), + [aux_sym_file_access_token2] = ACTIONS(6858), + [aux_sym_file_lock_token2] = ACTIONS(6858), + [aux_sym_print_statement_token1] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6856), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_QMARK] = ACTIONS(6856), + [aux_sym_close_statement_token1] = ACTIONS(6858), + [aux_sym_put_statement_token1] = ACTIONS(6858), + [aux_sym_unlock_statement_token1] = ACTIONS(6858), + [aux_sym_seek_statement_token1] = ACTIONS(6858), + [sym_reset_statement] = ACTIONS(6858), + [aux_sym_raise_event_statement_token1] = ACTIONS(6858), + [sym_stop_statement] = ACTIONS(6858), + [sym_beep_statement] = ACTIONS(6858), + [aux_sym_unload_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token2] = ACTIONS(6858), + [aux_sym_def_type_statement_token3] = ACTIONS(6858), + [aux_sym_def_type_statement_token4] = ACTIONS(6858), + [aux_sym_def_type_statement_token5] = ACTIONS(6858), + [aux_sym_def_type_statement_token6] = ACTIONS(6858), + [aux_sym_def_type_statement_token7] = ACTIONS(6858), + [aux_sym_def_type_statement_token8] = ACTIONS(6858), + [aux_sym_def_type_statement_token9] = ACTIONS(6858), + [aux_sym_def_type_statement_token10] = ACTIONS(6858), + [aux_sym_def_type_statement_token11] = ACTIONS(6858), + [aux_sym_def_type_statement_token12] = ACTIONS(6858), + [aux_sym_def_type_statement_token13] = ACTIONS(6858), + [aux_sym_def_type_statement_token14] = ACTIONS(6858), + [aux_sym_call_statement_token1] = ACTIONS(6858), + [sym__ambiguous_call_statement] = ACTIONS(6858), + [aux_sym_addressof_expression_token1] = ACTIONS(6858), + [aux_sym_type_of_expression_token1] = ACTIONS(6858), + [aux_sym_unary_expression_token1] = ACTIONS(6858), + [sym_string_literal] = ACTIONS(6856), + [sym_number_literal] = ACTIONS(6856), + [aux_sym_boolean_literal_token1] = ACTIONS(6858), + [aux_sym_boolean_literal_token2] = ACTIONS(6858), + [sym_nothing_literal] = ACTIONS(6858), + [sym_null_literal] = ACTIONS(6858), + [sym_empty_literal] = ACTIONS(6858), + [sym_date_literal] = ACTIONS(6856), + [anon_sym_POUND] = ACTIONS(6858), + }, + [STATE(4268)] = { + [sym_next_variable_list] = STATE(6150), + [sym__assignable_expression] = STATE(4997), + [sym__callable_expression] = STATE(4940), + [sym_call_expression] = STATE(5022), + [sym_member_expression] = STATE(5408), + [sym_qualified_member_expression] = STATE(5662), + [sym_implicit_member_expression] = STATE(5662), + [sym_identifier] = ACTIONS(9883), + [sym_newline] = ACTIONS(6867), + [anon_sym_COLON] = ACTIONS(6867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6869), + [aux_sym_frm_property_statement_token1] = ACTIONS(9885), + [anon_sym_DOT] = ACTIONS(9887), + [anon_sym_BANG] = ACTIONS(9889), + [aux_sym__attribute_identifier_token1] = ACTIONS(6869), + [aux_sym_option_statement_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6869), + [aux_sym_preprocessor_const_token1] = ACTIONS(6869), + [sym_static_modifier] = ACTIONS(6869), + [sym__dim_keyword] = ACTIONS(6869), + [sym__redim_keyword] = ACTIONS(6869), + [aux_sym_get_accessor_token1] = ACTIONS(6869), + [aux_sym_set_accessor_token1] = ACTIONS(6869), + [aux_sym_const_declaration_token1] = ACTIONS(6869), + [anon_sym_LPAREN] = ACTIONS(6867), + [aux_sym_as_type_clause_token2] = ACTIONS(6869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9891), + [aux_sym_visibility_token1] = ACTIONS(6869), + [aux_sym_visibility_token2] = ACTIONS(6869), + [aux_sym_elseif_fragment_token1] = ACTIONS(6869), + [aux_sym_else_fragment_token1] = ACTIONS(6869), + [aux_sym_select_statement_token1] = ACTIONS(6869), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6869), + [aux_sym__for_header_token1] = ACTIONS(6869), + [aux_sym_do_statement_token1] = ACTIONS(6869), + [aux_sym_do_condition_token1] = ACTIONS(6869), + [aux_sym_with_statement_token1] = ACTIONS(6869), + [aux_sym_exit_statement_token1] = ACTIONS(6869), + [sym_end_statement] = ACTIONS(6867), + [aux_sym_on_goto_statement_token1] = ACTIONS(6869), + [aux_sym_on_goto_statement_token2] = ACTIONS(6869), + [aux_sym_on_error_statement_token2] = ACTIONS(6869), + [sym__ambiguous_redim_statement] = ACTIONS(6867), + [aux_sym_erase_statement_token1] = ACTIONS(6869), + [aux_sym_open_statement_token1] = ACTIONS(6869), + [aux_sym_file_mode_token2] = ACTIONS(6869), + [aux_sym_file_access_token2] = ACTIONS(6869), + [aux_sym_file_lock_token2] = ACTIONS(6869), + [aux_sym_print_statement_token1] = ACTIONS(6869), + [anon_sym_PLUS] = ACTIONS(6867), + [anon_sym_DASH] = ACTIONS(6869), + [anon_sym_QMARK] = ACTIONS(6867), + [aux_sym_close_statement_token1] = ACTIONS(6869), + [aux_sym_put_statement_token1] = ACTIONS(6869), + [aux_sym_unlock_statement_token1] = ACTIONS(6869), + [aux_sym_seek_statement_token1] = ACTIONS(6869), + [sym_reset_statement] = ACTIONS(6869), + [aux_sym_raise_event_statement_token1] = ACTIONS(6869), + [sym_stop_statement] = ACTIONS(6869), + [sym_beep_statement] = ACTIONS(6869), + [aux_sym_unload_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token2] = ACTIONS(6869), + [aux_sym_def_type_statement_token3] = ACTIONS(6869), + [aux_sym_def_type_statement_token4] = ACTIONS(6869), + [aux_sym_def_type_statement_token5] = ACTIONS(6869), + [aux_sym_def_type_statement_token6] = ACTIONS(6869), + [aux_sym_def_type_statement_token7] = ACTIONS(6869), + [aux_sym_def_type_statement_token8] = ACTIONS(6869), + [aux_sym_def_type_statement_token9] = ACTIONS(6869), + [aux_sym_def_type_statement_token10] = ACTIONS(6869), + [aux_sym_def_type_statement_token11] = ACTIONS(6869), + [aux_sym_def_type_statement_token12] = ACTIONS(6869), + [aux_sym_def_type_statement_token13] = ACTIONS(6869), + [aux_sym_def_type_statement_token14] = ACTIONS(6869), + [aux_sym_call_statement_token1] = ACTIONS(6869), + [sym__ambiguous_call_statement] = ACTIONS(6869), + [aux_sym_addressof_expression_token1] = ACTIONS(6869), + [aux_sym_type_of_expression_token1] = ACTIONS(6869), + [aux_sym_unary_expression_token1] = ACTIONS(6869), + [sym_string_literal] = ACTIONS(6867), + [sym_number_literal] = ACTIONS(6867), + [aux_sym_boolean_literal_token1] = ACTIONS(6869), + [aux_sym_boolean_literal_token2] = ACTIONS(6869), + [sym_nothing_literal] = ACTIONS(6869), + [sym_null_literal] = ACTIONS(6869), + [sym_empty_literal] = ACTIONS(6869), + [sym_date_literal] = ACTIONS(6867), + [anon_sym_POUND] = ACTIONS(6869), + }, + [STATE(4269)] = { + [sym_next_variable_list] = STATE(6161), + [sym__assignable_expression] = STATE(4997), + [sym__callable_expression] = STATE(4940), + [sym_call_expression] = STATE(5022), + [sym_member_expression] = STATE(5408), + [sym_qualified_member_expression] = STATE(5662), + [sym_implicit_member_expression] = STATE(5662), + [sym_identifier] = ACTIONS(9883), + [sym_newline] = ACTIONS(6810), + [anon_sym_COLON] = ACTIONS(6810), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6812), + [aux_sym_frm_property_statement_token1] = ACTIONS(9885), + [anon_sym_DOT] = ACTIONS(9887), + [anon_sym_BANG] = ACTIONS(9889), + [aux_sym__attribute_identifier_token1] = ACTIONS(6812), + [aux_sym_option_statement_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6812), + [aux_sym_preprocessor_const_token1] = ACTIONS(6812), + [sym_static_modifier] = ACTIONS(6812), + [sym__dim_keyword] = ACTIONS(6812), + [sym__redim_keyword] = ACTIONS(6812), + [aux_sym_get_accessor_token1] = ACTIONS(6812), + [aux_sym_set_accessor_token1] = ACTIONS(6812), + [aux_sym_const_declaration_token1] = ACTIONS(6812), + [anon_sym_LPAREN] = ACTIONS(6810), + [aux_sym_as_type_clause_token2] = ACTIONS(6812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9891), + [aux_sym_visibility_token1] = ACTIONS(6812), + [aux_sym_visibility_token2] = ACTIONS(6812), + [aux_sym_elseif_fragment_token1] = ACTIONS(6812), + [aux_sym_else_fragment_token1] = ACTIONS(6812), + [aux_sym_select_statement_token1] = ACTIONS(6812), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6812), + [aux_sym__for_header_token1] = ACTIONS(6812), + [aux_sym_do_statement_token1] = ACTIONS(6812), + [aux_sym_do_condition_token1] = ACTIONS(6812), + [aux_sym_with_statement_token1] = ACTIONS(6812), + [aux_sym_exit_statement_token1] = ACTIONS(6812), + [sym_end_statement] = ACTIONS(6810), + [aux_sym_on_goto_statement_token1] = ACTIONS(6812), + [aux_sym_on_goto_statement_token2] = ACTIONS(6812), + [aux_sym_on_error_statement_token2] = ACTIONS(6812), + [sym__ambiguous_redim_statement] = ACTIONS(6810), + [aux_sym_erase_statement_token1] = ACTIONS(6812), + [aux_sym_open_statement_token1] = ACTIONS(6812), + [aux_sym_file_mode_token2] = ACTIONS(6812), + [aux_sym_file_access_token2] = ACTIONS(6812), + [aux_sym_file_lock_token2] = ACTIONS(6812), + [aux_sym_print_statement_token1] = ACTIONS(6812), + [anon_sym_PLUS] = ACTIONS(6810), + [anon_sym_DASH] = ACTIONS(6812), + [anon_sym_QMARK] = ACTIONS(6810), + [aux_sym_close_statement_token1] = ACTIONS(6812), + [aux_sym_put_statement_token1] = ACTIONS(6812), + [aux_sym_unlock_statement_token1] = ACTIONS(6812), + [aux_sym_seek_statement_token1] = ACTIONS(6812), + [sym_reset_statement] = ACTIONS(6812), + [aux_sym_raise_event_statement_token1] = ACTIONS(6812), + [sym_stop_statement] = ACTIONS(6812), + [sym_beep_statement] = ACTIONS(6812), + [aux_sym_unload_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token2] = ACTIONS(6812), + [aux_sym_def_type_statement_token3] = ACTIONS(6812), + [aux_sym_def_type_statement_token4] = ACTIONS(6812), + [aux_sym_def_type_statement_token5] = ACTIONS(6812), + [aux_sym_def_type_statement_token6] = ACTIONS(6812), + [aux_sym_def_type_statement_token7] = ACTIONS(6812), + [aux_sym_def_type_statement_token8] = ACTIONS(6812), + [aux_sym_def_type_statement_token9] = ACTIONS(6812), + [aux_sym_def_type_statement_token10] = ACTIONS(6812), + [aux_sym_def_type_statement_token11] = ACTIONS(6812), + [aux_sym_def_type_statement_token12] = ACTIONS(6812), + [aux_sym_def_type_statement_token13] = ACTIONS(6812), + [aux_sym_def_type_statement_token14] = ACTIONS(6812), + [aux_sym_call_statement_token1] = ACTIONS(6812), + [sym__ambiguous_call_statement] = ACTIONS(6812), + [aux_sym_addressof_expression_token1] = ACTIONS(6812), + [aux_sym_type_of_expression_token1] = ACTIONS(6812), + [aux_sym_unary_expression_token1] = ACTIONS(6812), + [sym_string_literal] = ACTIONS(6810), + [sym_number_literal] = ACTIONS(6810), + [aux_sym_boolean_literal_token1] = ACTIONS(6812), + [aux_sym_boolean_literal_token2] = ACTIONS(6812), + [sym_nothing_literal] = ACTIONS(6812), + [sym_null_literal] = ACTIONS(6812), + [sym_empty_literal] = ACTIONS(6812), + [sym_date_literal] = ACTIONS(6810), + [anon_sym_POUND] = ACTIONS(6812), + }, + [STATE(4270)] = { + [sym_identifier] = ACTIONS(8865), + [sym_newline] = ACTIONS(8867), + [anon_sym_COLON] = ACTIONS(8867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8865), + [aux_sym_frm_property_statement_token1] = ACTIONS(8865), + [anon_sym_DOT] = ACTIONS(8865), + [anon_sym_BANG] = ACTIONS(8867), + [aux_sym__attribute_identifier_token1] = ACTIONS(8865), + [aux_sym_option_statement_token3] = ACTIONS(8865), + [aux_sym_type_declaration_token1] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8865), + [aux_sym_enum_declaration_token1] = ACTIONS(8865), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8865), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8865), + [aux_sym_declare_function_statement_token1] = ACTIONS(8865), + [aux_sym_preprocessor_const_token1] = ACTIONS(8865), + [aux_sym__property_get_header_token1] = ACTIONS(8865), + [aux_sym_event_declaration_token1] = ACTIONS(8865), + [sym_static_modifier] = ACTIONS(8865), + [sym__dim_keyword] = ACTIONS(8865), + [sym__redim_keyword] = ACTIONS(8865), + [aux_sym_get_accessor_token1] = ACTIONS(8865), + [aux_sym_set_accessor_token1] = ACTIONS(8865), + [anon_sym_COMMA] = ACTIONS(8867), + [aux_sym_const_declaration_token1] = ACTIONS(8865), + [anon_sym_LPAREN] = ACTIONS(8867), + [aux_sym_as_type_clause_token2] = ACTIONS(8865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8865), + [aux_sym_visibility_token1] = ACTIONS(8865), + [aux_sym_visibility_token2] = ACTIONS(8865), + [aux_sym_elseif_fragment_token1] = ACTIONS(8865), + [aux_sym_else_fragment_token1] = ACTIONS(8865), + [aux_sym_select_statement_token1] = ACTIONS(8865), + [aux_sym__for_header_token1] = ACTIONS(8865), + [aux_sym_do_statement_token1] = ACTIONS(8865), + [aux_sym_do_condition_token1] = ACTIONS(8865), + [aux_sym_with_statement_token1] = ACTIONS(8865), + [aux_sym_exit_statement_token1] = ACTIONS(8865), + [sym_end_statement] = ACTIONS(8867), + [aux_sym_on_goto_statement_token1] = ACTIONS(8865), + [aux_sym_on_goto_statement_token2] = ACTIONS(8865), + [aux_sym_on_error_statement_token2] = ACTIONS(8865), + [sym__ambiguous_redim_statement] = ACTIONS(8867), + [aux_sym_erase_statement_token1] = ACTIONS(8865), + [aux_sym_open_statement_token1] = ACTIONS(8865), + [aux_sym_file_mode_token2] = ACTIONS(8865), + [aux_sym_file_access_token2] = ACTIONS(8865), + [aux_sym_file_lock_token2] = ACTIONS(8865), + [aux_sym_print_statement_token1] = ACTIONS(8865), + [anon_sym_PLUS] = ACTIONS(8867), + [anon_sym_DASH] = ACTIONS(8865), + [anon_sym_QMARK] = ACTIONS(8867), + [aux_sym_close_statement_token1] = ACTIONS(8865), + [aux_sym_put_statement_token1] = ACTIONS(8865), + [aux_sym_unlock_statement_token1] = ACTIONS(8865), + [aux_sym_seek_statement_token1] = ACTIONS(8865), + [sym_reset_statement] = ACTIONS(8865), + [aux_sym_raise_event_statement_token1] = ACTIONS(8865), + [sym_stop_statement] = ACTIONS(8865), + [sym_beep_statement] = ACTIONS(8865), + [aux_sym_unload_statement_token1] = ACTIONS(8865), + [aux_sym_def_type_statement_token1] = ACTIONS(8865), + [aux_sym_def_type_statement_token2] = ACTIONS(8865), + [aux_sym_def_type_statement_token3] = ACTIONS(8865), + [aux_sym_def_type_statement_token4] = ACTIONS(8865), + [aux_sym_def_type_statement_token5] = ACTIONS(8865), + [aux_sym_def_type_statement_token6] = ACTIONS(8865), + [aux_sym_def_type_statement_token7] = ACTIONS(8865), + [aux_sym_def_type_statement_token8] = ACTIONS(8865), + [aux_sym_def_type_statement_token9] = ACTIONS(8865), + [aux_sym_def_type_statement_token10] = ACTIONS(8865), + [aux_sym_def_type_statement_token11] = ACTIONS(8865), + [aux_sym_def_type_statement_token12] = ACTIONS(8865), + [aux_sym_def_type_statement_token13] = ACTIONS(8865), + [aux_sym_def_type_statement_token14] = ACTIONS(8865), + [aux_sym_call_statement_token1] = ACTIONS(8865), + [sym__ambiguous_call_statement] = ACTIONS(8865), + [aux_sym_addressof_expression_token1] = ACTIONS(8865), + [aux_sym_type_of_expression_token1] = ACTIONS(8865), + [aux_sym_unary_expression_token1] = ACTIONS(8865), + [sym_string_literal] = ACTIONS(8867), + [sym_number_literal] = ACTIONS(8867), + [aux_sym_boolean_literal_token1] = ACTIONS(8865), + [aux_sym_boolean_literal_token2] = ACTIONS(8865), + [sym_nothing_literal] = ACTIONS(8865), + [sym_null_literal] = ACTIONS(8865), + [sym_empty_literal] = ACTIONS(8865), + [sym_date_literal] = ACTIONS(8867), + [anon_sym_POUND] = ACTIONS(8865), + }, + [STATE(4271)] = { + [sym_next_variable_list] = STATE(6162), + [sym__assignable_expression] = STATE(4997), + [sym__callable_expression] = STATE(4940), + [sym_call_expression] = STATE(5022), + [sym_member_expression] = STATE(5408), + [sym_qualified_member_expression] = STATE(5662), + [sym_implicit_member_expression] = STATE(5662), + [sym_identifier] = ACTIONS(9883), + [sym_newline] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6828), + [aux_sym_frm_property_statement_token1] = ACTIONS(9885), + [anon_sym_DOT] = ACTIONS(9887), + [anon_sym_BANG] = ACTIONS(9889), + [aux_sym__attribute_identifier_token1] = ACTIONS(6828), + [aux_sym_option_statement_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6828), + [aux_sym_preprocessor_const_token1] = ACTIONS(6828), + [sym_static_modifier] = ACTIONS(6828), + [sym__dim_keyword] = ACTIONS(6828), + [sym__redim_keyword] = ACTIONS(6828), + [aux_sym_get_accessor_token1] = ACTIONS(6828), + [aux_sym_set_accessor_token1] = ACTIONS(6828), + [aux_sym_const_declaration_token1] = ACTIONS(6828), + [anon_sym_LPAREN] = ACTIONS(6826), + [aux_sym_as_type_clause_token2] = ACTIONS(6828), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9891), + [aux_sym_visibility_token1] = ACTIONS(6828), + [aux_sym_visibility_token2] = ACTIONS(6828), + [aux_sym_elseif_fragment_token1] = ACTIONS(6828), + [aux_sym_else_fragment_token1] = ACTIONS(6828), + [aux_sym_select_statement_token1] = ACTIONS(6828), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6828), + [aux_sym__for_header_token1] = ACTIONS(6828), + [aux_sym_do_statement_token1] = ACTIONS(6828), + [aux_sym_do_condition_token1] = ACTIONS(6828), + [aux_sym_with_statement_token1] = ACTIONS(6828), + [aux_sym_exit_statement_token1] = ACTIONS(6828), + [sym_end_statement] = ACTIONS(6826), + [aux_sym_on_goto_statement_token1] = ACTIONS(6828), + [aux_sym_on_goto_statement_token2] = ACTIONS(6828), + [aux_sym_on_error_statement_token2] = ACTIONS(6828), + [sym__ambiguous_redim_statement] = ACTIONS(6826), + [aux_sym_erase_statement_token1] = ACTIONS(6828), + [aux_sym_open_statement_token1] = ACTIONS(6828), + [aux_sym_file_mode_token2] = ACTIONS(6828), + [aux_sym_file_access_token2] = ACTIONS(6828), + [aux_sym_file_lock_token2] = ACTIONS(6828), + [aux_sym_print_statement_token1] = ACTIONS(6828), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_DASH] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6826), + [aux_sym_close_statement_token1] = ACTIONS(6828), + [aux_sym_put_statement_token1] = ACTIONS(6828), + [aux_sym_unlock_statement_token1] = ACTIONS(6828), + [aux_sym_seek_statement_token1] = ACTIONS(6828), + [sym_reset_statement] = ACTIONS(6828), + [aux_sym_raise_event_statement_token1] = ACTIONS(6828), + [sym_stop_statement] = ACTIONS(6828), + [sym_beep_statement] = ACTIONS(6828), + [aux_sym_unload_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token2] = ACTIONS(6828), + [aux_sym_def_type_statement_token3] = ACTIONS(6828), + [aux_sym_def_type_statement_token4] = ACTIONS(6828), + [aux_sym_def_type_statement_token5] = ACTIONS(6828), + [aux_sym_def_type_statement_token6] = ACTIONS(6828), + [aux_sym_def_type_statement_token7] = ACTIONS(6828), + [aux_sym_def_type_statement_token8] = ACTIONS(6828), + [aux_sym_def_type_statement_token9] = ACTIONS(6828), + [aux_sym_def_type_statement_token10] = ACTIONS(6828), + [aux_sym_def_type_statement_token11] = ACTIONS(6828), + [aux_sym_def_type_statement_token12] = ACTIONS(6828), + [aux_sym_def_type_statement_token13] = ACTIONS(6828), + [aux_sym_def_type_statement_token14] = ACTIONS(6828), + [aux_sym_call_statement_token1] = ACTIONS(6828), + [sym__ambiguous_call_statement] = ACTIONS(6828), + [aux_sym_addressof_expression_token1] = ACTIONS(6828), + [aux_sym_type_of_expression_token1] = ACTIONS(6828), + [aux_sym_unary_expression_token1] = ACTIONS(6828), + [sym_string_literal] = ACTIONS(6826), + [sym_number_literal] = ACTIONS(6826), + [aux_sym_boolean_literal_token1] = ACTIONS(6828), + [aux_sym_boolean_literal_token2] = ACTIONS(6828), + [sym_nothing_literal] = ACTIONS(6828), + [sym_null_literal] = ACTIONS(6828), + [sym_empty_literal] = ACTIONS(6828), + [sym_date_literal] = ACTIONS(6826), + [anon_sym_POUND] = ACTIONS(6828), + }, + [STATE(4272)] = { + [sym_next_variable_list] = STATE(6174), + [sym__assignable_expression] = STATE(4997), + [sym__callable_expression] = STATE(4940), + [sym_call_expression] = STATE(5022), + [sym_member_expression] = STATE(5408), + [sym_qualified_member_expression] = STATE(5662), + [sym_implicit_member_expression] = STATE(5662), + [sym_identifier] = ACTIONS(9883), + [sym_newline] = ACTIONS(6863), + [anon_sym_COLON] = ACTIONS(6863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6865), + [aux_sym_frm_property_statement_token1] = ACTIONS(9885), + [anon_sym_DOT] = ACTIONS(9887), + [anon_sym_BANG] = ACTIONS(9889), + [aux_sym__attribute_identifier_token1] = ACTIONS(6865), + [aux_sym_option_statement_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6865), + [aux_sym_preprocessor_const_token1] = ACTIONS(6865), + [sym_static_modifier] = ACTIONS(6865), + [sym__dim_keyword] = ACTIONS(6865), + [sym__redim_keyword] = ACTIONS(6865), + [aux_sym_get_accessor_token1] = ACTIONS(6865), + [aux_sym_set_accessor_token1] = ACTIONS(6865), + [aux_sym_const_declaration_token1] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6863), + [aux_sym_as_type_clause_token2] = ACTIONS(6865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9891), + [aux_sym_visibility_token1] = ACTIONS(6865), + [aux_sym_visibility_token2] = ACTIONS(6865), + [aux_sym_elseif_fragment_token1] = ACTIONS(6865), + [aux_sym_else_fragment_token1] = ACTIONS(6865), + [aux_sym_select_statement_token1] = ACTIONS(6865), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6865), + [aux_sym__for_header_token1] = ACTIONS(6865), + [aux_sym_do_statement_token1] = ACTIONS(6865), + [aux_sym_do_condition_token1] = ACTIONS(6865), + [aux_sym_with_statement_token1] = ACTIONS(6865), + [aux_sym_exit_statement_token1] = ACTIONS(6865), + [sym_end_statement] = ACTIONS(6863), + [aux_sym_on_goto_statement_token1] = ACTIONS(6865), + [aux_sym_on_goto_statement_token2] = ACTIONS(6865), + [aux_sym_on_error_statement_token2] = ACTIONS(6865), + [sym__ambiguous_redim_statement] = ACTIONS(6863), + [aux_sym_erase_statement_token1] = ACTIONS(6865), + [aux_sym_open_statement_token1] = ACTIONS(6865), + [aux_sym_file_mode_token2] = ACTIONS(6865), + [aux_sym_file_access_token2] = ACTIONS(6865), + [aux_sym_file_lock_token2] = ACTIONS(6865), + [aux_sym_print_statement_token1] = ACTIONS(6865), + [anon_sym_PLUS] = ACTIONS(6863), + [anon_sym_DASH] = ACTIONS(6865), + [anon_sym_QMARK] = ACTIONS(6863), + [aux_sym_close_statement_token1] = ACTIONS(6865), + [aux_sym_put_statement_token1] = ACTIONS(6865), + [aux_sym_unlock_statement_token1] = ACTIONS(6865), + [aux_sym_seek_statement_token1] = ACTIONS(6865), + [sym_reset_statement] = ACTIONS(6865), + [aux_sym_raise_event_statement_token1] = ACTIONS(6865), + [sym_stop_statement] = ACTIONS(6865), + [sym_beep_statement] = ACTIONS(6865), + [aux_sym_unload_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token2] = ACTIONS(6865), + [aux_sym_def_type_statement_token3] = ACTIONS(6865), + [aux_sym_def_type_statement_token4] = ACTIONS(6865), + [aux_sym_def_type_statement_token5] = ACTIONS(6865), + [aux_sym_def_type_statement_token6] = ACTIONS(6865), + [aux_sym_def_type_statement_token7] = ACTIONS(6865), + [aux_sym_def_type_statement_token8] = ACTIONS(6865), + [aux_sym_def_type_statement_token9] = ACTIONS(6865), + [aux_sym_def_type_statement_token10] = ACTIONS(6865), + [aux_sym_def_type_statement_token11] = ACTIONS(6865), + [aux_sym_def_type_statement_token12] = ACTIONS(6865), + [aux_sym_def_type_statement_token13] = ACTIONS(6865), + [aux_sym_def_type_statement_token14] = ACTIONS(6865), + [aux_sym_call_statement_token1] = ACTIONS(6865), + [sym__ambiguous_call_statement] = ACTIONS(6865), + [aux_sym_addressof_expression_token1] = ACTIONS(6865), + [aux_sym_type_of_expression_token1] = ACTIONS(6865), + [aux_sym_unary_expression_token1] = ACTIONS(6865), + [sym_string_literal] = ACTIONS(6863), + [sym_number_literal] = ACTIONS(6863), + [aux_sym_boolean_literal_token1] = ACTIONS(6865), + [aux_sym_boolean_literal_token2] = ACTIONS(6865), + [sym_nothing_literal] = ACTIONS(6865), + [sym_null_literal] = ACTIONS(6865), + [sym_empty_literal] = ACTIONS(6865), + [sym_date_literal] = ACTIONS(6863), + [anon_sym_POUND] = ACTIONS(6865), + }, + [STATE(4273)] = { + [sym_next_variable_list] = STATE(6195), + [sym__assignable_expression] = STATE(4997), + [sym__callable_expression] = STATE(4940), + [sym_call_expression] = STATE(5022), + [sym_member_expression] = STATE(5408), + [sym_qualified_member_expression] = STATE(5662), + [sym_implicit_member_expression] = STATE(5662), + [sym_identifier] = ACTIONS(9883), + [sym_newline] = ACTIONS(6848), + [anon_sym_COLON] = ACTIONS(6848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6850), + [aux_sym_frm_property_statement_token1] = ACTIONS(9885), + [anon_sym_DOT] = ACTIONS(9887), + [anon_sym_BANG] = ACTIONS(9889), + [aux_sym__attribute_identifier_token1] = ACTIONS(6850), + [aux_sym_option_statement_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6850), + [aux_sym_preprocessor_const_token1] = ACTIONS(6850), + [sym_static_modifier] = ACTIONS(6850), + [sym__dim_keyword] = ACTIONS(6850), + [sym__redim_keyword] = ACTIONS(6850), + [aux_sym_get_accessor_token1] = ACTIONS(6850), + [aux_sym_set_accessor_token1] = ACTIONS(6850), + [aux_sym_const_declaration_token1] = ACTIONS(6850), + [anon_sym_LPAREN] = ACTIONS(6848), + [aux_sym_as_type_clause_token2] = ACTIONS(6850), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9891), + [aux_sym_visibility_token1] = ACTIONS(6850), + [aux_sym_visibility_token2] = ACTIONS(6850), + [aux_sym_elseif_fragment_token1] = ACTIONS(6850), + [aux_sym_else_fragment_token1] = ACTIONS(6850), + [aux_sym_select_statement_token1] = ACTIONS(6850), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6850), + [aux_sym__for_header_token1] = ACTIONS(6850), + [aux_sym_do_statement_token1] = ACTIONS(6850), + [aux_sym_do_condition_token1] = ACTIONS(6850), + [aux_sym_with_statement_token1] = ACTIONS(6850), + [aux_sym_exit_statement_token1] = ACTIONS(6850), + [sym_end_statement] = ACTIONS(6848), + [aux_sym_on_goto_statement_token1] = ACTIONS(6850), + [aux_sym_on_goto_statement_token2] = ACTIONS(6850), + [aux_sym_on_error_statement_token2] = ACTIONS(6850), + [sym__ambiguous_redim_statement] = ACTIONS(6848), + [aux_sym_erase_statement_token1] = ACTIONS(6850), + [aux_sym_open_statement_token1] = ACTIONS(6850), + [aux_sym_file_mode_token2] = ACTIONS(6850), + [aux_sym_file_access_token2] = ACTIONS(6850), + [aux_sym_file_lock_token2] = ACTIONS(6850), + [aux_sym_print_statement_token1] = ACTIONS(6850), + [anon_sym_PLUS] = ACTIONS(6848), + [anon_sym_DASH] = ACTIONS(6850), + [anon_sym_QMARK] = ACTIONS(6848), + [aux_sym_close_statement_token1] = ACTIONS(6850), + [aux_sym_put_statement_token1] = ACTIONS(6850), + [aux_sym_unlock_statement_token1] = ACTIONS(6850), + [aux_sym_seek_statement_token1] = ACTIONS(6850), + [sym_reset_statement] = ACTIONS(6850), + [aux_sym_raise_event_statement_token1] = ACTIONS(6850), + [sym_stop_statement] = ACTIONS(6850), + [sym_beep_statement] = ACTIONS(6850), + [aux_sym_unload_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token2] = ACTIONS(6850), + [aux_sym_def_type_statement_token3] = ACTIONS(6850), + [aux_sym_def_type_statement_token4] = ACTIONS(6850), + [aux_sym_def_type_statement_token5] = ACTIONS(6850), + [aux_sym_def_type_statement_token6] = ACTIONS(6850), + [aux_sym_def_type_statement_token7] = ACTIONS(6850), + [aux_sym_def_type_statement_token8] = ACTIONS(6850), + [aux_sym_def_type_statement_token9] = ACTIONS(6850), + [aux_sym_def_type_statement_token10] = ACTIONS(6850), + [aux_sym_def_type_statement_token11] = ACTIONS(6850), + [aux_sym_def_type_statement_token12] = ACTIONS(6850), + [aux_sym_def_type_statement_token13] = ACTIONS(6850), + [aux_sym_def_type_statement_token14] = ACTIONS(6850), + [aux_sym_call_statement_token1] = ACTIONS(6850), + [sym__ambiguous_call_statement] = ACTIONS(6850), + [aux_sym_addressof_expression_token1] = ACTIONS(6850), + [aux_sym_type_of_expression_token1] = ACTIONS(6850), + [aux_sym_unary_expression_token1] = ACTIONS(6850), + [sym_string_literal] = ACTIONS(6848), + [sym_number_literal] = ACTIONS(6848), + [aux_sym_boolean_literal_token1] = ACTIONS(6850), + [aux_sym_boolean_literal_token2] = ACTIONS(6850), + [sym_nothing_literal] = ACTIONS(6850), + [sym_null_literal] = ACTIONS(6850), + [sym_empty_literal] = ACTIONS(6850), + [sym_date_literal] = ACTIONS(6848), + [anon_sym_POUND] = ACTIONS(6850), + }, + [STATE(4274)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_declaration_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_enum_declaration_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4601), + [aux_sym_declare_function_statement_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [aux_sym__property_get_header_token1] = ACTIONS(4601), + [aux_sym_event_declaration_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(4275)] = { + [sym_identifier] = ACTIONS(8962), + [sym_newline] = ACTIONS(8964), + [anon_sym_COLON] = ACTIONS(8964), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8962), + [aux_sym_frm_property_statement_token1] = ACTIONS(8962), + [anon_sym_DOT] = ACTIONS(8962), + [anon_sym_BANG] = ACTIONS(8964), + [aux_sym__attribute_identifier_token1] = ACTIONS(8962), + [aux_sym_option_statement_token3] = ACTIONS(8962), + [aux_sym_type_declaration_token1] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8962), + [aux_sym_enum_declaration_token1] = ACTIONS(8962), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8962), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8962), + [aux_sym_declare_function_statement_token1] = ACTIONS(8962), + [aux_sym_preprocessor_const_token1] = ACTIONS(8962), + [aux_sym__property_get_header_token1] = ACTIONS(8962), + [aux_sym_event_declaration_token1] = ACTIONS(8962), + [sym_static_modifier] = ACTIONS(8962), + [sym__dim_keyword] = ACTIONS(8962), + [sym__redim_keyword] = ACTIONS(8962), + [aux_sym_get_accessor_token1] = ACTIONS(8962), + [aux_sym_set_accessor_token1] = ACTIONS(8962), + [anon_sym_COMMA] = ACTIONS(8964), + [aux_sym_const_declaration_token1] = ACTIONS(8962), + [anon_sym_LPAREN] = ACTIONS(8964), + [aux_sym_as_type_clause_token2] = ACTIONS(8962), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8962), + [aux_sym_visibility_token1] = ACTIONS(8962), + [aux_sym_visibility_token2] = ACTIONS(8962), + [aux_sym_elseif_fragment_token1] = ACTIONS(8962), + [aux_sym_else_fragment_token1] = ACTIONS(8962), + [aux_sym_select_statement_token1] = ACTIONS(8962), + [aux_sym__for_header_token1] = ACTIONS(8962), + [aux_sym_do_statement_token1] = ACTIONS(8962), + [aux_sym_do_condition_token1] = ACTIONS(8962), + [aux_sym_with_statement_token1] = ACTIONS(8962), + [aux_sym_exit_statement_token1] = ACTIONS(8962), + [sym_end_statement] = ACTIONS(8964), + [aux_sym_on_goto_statement_token1] = ACTIONS(8962), + [aux_sym_on_goto_statement_token2] = ACTIONS(8962), + [aux_sym_on_error_statement_token2] = ACTIONS(8962), + [sym__ambiguous_redim_statement] = ACTIONS(8964), + [aux_sym_erase_statement_token1] = ACTIONS(8962), + [aux_sym_open_statement_token1] = ACTIONS(8962), + [aux_sym_file_mode_token2] = ACTIONS(8962), + [aux_sym_file_access_token2] = ACTIONS(8962), + [aux_sym_file_lock_token2] = ACTIONS(8962), + [aux_sym_print_statement_token1] = ACTIONS(8962), + [anon_sym_PLUS] = ACTIONS(8964), + [anon_sym_DASH] = ACTIONS(8962), + [anon_sym_QMARK] = ACTIONS(8964), + [aux_sym_close_statement_token1] = ACTIONS(8962), + [aux_sym_put_statement_token1] = ACTIONS(8962), + [aux_sym_unlock_statement_token1] = ACTIONS(8962), + [aux_sym_seek_statement_token1] = ACTIONS(8962), + [sym_reset_statement] = ACTIONS(8962), + [aux_sym_raise_event_statement_token1] = ACTIONS(8962), + [sym_stop_statement] = ACTIONS(8962), + [sym_beep_statement] = ACTIONS(8962), + [aux_sym_unload_statement_token1] = ACTIONS(8962), + [aux_sym_def_type_statement_token1] = ACTIONS(8962), + [aux_sym_def_type_statement_token2] = ACTIONS(8962), + [aux_sym_def_type_statement_token3] = ACTIONS(8962), + [aux_sym_def_type_statement_token4] = ACTIONS(8962), + [aux_sym_def_type_statement_token5] = ACTIONS(8962), + [aux_sym_def_type_statement_token6] = ACTIONS(8962), + [aux_sym_def_type_statement_token7] = ACTIONS(8962), + [aux_sym_def_type_statement_token8] = ACTIONS(8962), + [aux_sym_def_type_statement_token9] = ACTIONS(8962), + [aux_sym_def_type_statement_token10] = ACTIONS(8962), + [aux_sym_def_type_statement_token11] = ACTIONS(8962), + [aux_sym_def_type_statement_token12] = ACTIONS(8962), + [aux_sym_def_type_statement_token13] = ACTIONS(8962), + [aux_sym_def_type_statement_token14] = ACTIONS(8962), + [aux_sym_call_statement_token1] = ACTIONS(8962), + [sym__ambiguous_call_statement] = ACTIONS(8962), + [aux_sym_addressof_expression_token1] = ACTIONS(8962), + [aux_sym_type_of_expression_token1] = ACTIONS(8962), + [aux_sym_unary_expression_token1] = ACTIONS(8962), + [sym_string_literal] = ACTIONS(8964), + [sym_number_literal] = ACTIONS(8964), + [aux_sym_boolean_literal_token1] = ACTIONS(8962), + [aux_sym_boolean_literal_token2] = ACTIONS(8962), + [sym_nothing_literal] = ACTIONS(8962), + [sym_null_literal] = ACTIONS(8962), + [sym_empty_literal] = ACTIONS(8962), + [sym_date_literal] = ACTIONS(8964), + [anon_sym_POUND] = ACTIONS(8962), + }, + [STATE(4276)] = { + [sym_identifier] = ACTIONS(8790), + [sym_newline] = ACTIONS(8792), + [anon_sym_COLON] = ACTIONS(8792), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8790), + [aux_sym_frm_property_statement_token1] = ACTIONS(8790), + [anon_sym_DOT] = ACTIONS(8790), + [anon_sym_BANG] = ACTIONS(8792), + [aux_sym__attribute_identifier_token1] = ACTIONS(8790), + [aux_sym_option_statement_token3] = ACTIONS(8790), + [aux_sym_type_declaration_token1] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8790), + [aux_sym_enum_declaration_token1] = ACTIONS(8790), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8790), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8790), + [aux_sym_declare_function_statement_token1] = ACTIONS(8790), + [aux_sym_preprocessor_const_token1] = ACTIONS(8790), + [aux_sym__property_get_header_token1] = ACTIONS(8790), + [aux_sym_event_declaration_token1] = ACTIONS(8790), + [sym_static_modifier] = ACTIONS(8790), + [sym__dim_keyword] = ACTIONS(8790), + [sym__redim_keyword] = ACTIONS(8790), + [aux_sym_get_accessor_token1] = ACTIONS(8790), + [aux_sym_set_accessor_token1] = ACTIONS(8790), + [anon_sym_COMMA] = ACTIONS(8792), + [aux_sym_const_declaration_token1] = ACTIONS(8790), + [anon_sym_LPAREN] = ACTIONS(8792), + [aux_sym_as_type_clause_token2] = ACTIONS(8790), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8790), + [aux_sym_visibility_token1] = ACTIONS(8790), + [aux_sym_visibility_token2] = ACTIONS(8790), + [aux_sym_elseif_fragment_token1] = ACTIONS(8790), + [aux_sym_else_fragment_token1] = ACTIONS(8790), + [aux_sym_select_statement_token1] = ACTIONS(8790), + [aux_sym__for_header_token1] = ACTIONS(8790), + [aux_sym_do_statement_token1] = ACTIONS(8790), + [aux_sym_do_condition_token1] = ACTIONS(8790), + [aux_sym_with_statement_token1] = ACTIONS(8790), + [aux_sym_exit_statement_token1] = ACTIONS(8790), + [sym_end_statement] = ACTIONS(8792), + [aux_sym_on_goto_statement_token1] = ACTIONS(8790), + [aux_sym_on_goto_statement_token2] = ACTIONS(8790), + [aux_sym_on_error_statement_token2] = ACTIONS(8790), + [sym__ambiguous_redim_statement] = ACTIONS(8792), + [aux_sym_erase_statement_token1] = ACTIONS(8790), + [aux_sym_open_statement_token1] = ACTIONS(8790), + [aux_sym_file_mode_token2] = ACTIONS(8790), + [aux_sym_file_access_token2] = ACTIONS(8790), + [aux_sym_file_lock_token2] = ACTIONS(8790), + [aux_sym_print_statement_token1] = ACTIONS(8790), + [anon_sym_PLUS] = ACTIONS(8792), + [anon_sym_DASH] = ACTIONS(8790), + [anon_sym_QMARK] = ACTIONS(8792), + [aux_sym_close_statement_token1] = ACTIONS(8790), + [aux_sym_put_statement_token1] = ACTIONS(8790), + [aux_sym_unlock_statement_token1] = ACTIONS(8790), + [aux_sym_seek_statement_token1] = ACTIONS(8790), + [sym_reset_statement] = ACTIONS(8790), + [aux_sym_raise_event_statement_token1] = ACTIONS(8790), + [sym_stop_statement] = ACTIONS(8790), + [sym_beep_statement] = ACTIONS(8790), + [aux_sym_unload_statement_token1] = ACTIONS(8790), + [aux_sym_def_type_statement_token1] = ACTIONS(8790), + [aux_sym_def_type_statement_token2] = ACTIONS(8790), + [aux_sym_def_type_statement_token3] = ACTIONS(8790), + [aux_sym_def_type_statement_token4] = ACTIONS(8790), + [aux_sym_def_type_statement_token5] = ACTIONS(8790), + [aux_sym_def_type_statement_token6] = ACTIONS(8790), + [aux_sym_def_type_statement_token7] = ACTIONS(8790), + [aux_sym_def_type_statement_token8] = ACTIONS(8790), + [aux_sym_def_type_statement_token9] = ACTIONS(8790), + [aux_sym_def_type_statement_token10] = ACTIONS(8790), + [aux_sym_def_type_statement_token11] = ACTIONS(8790), + [aux_sym_def_type_statement_token12] = ACTIONS(8790), + [aux_sym_def_type_statement_token13] = ACTIONS(8790), + [aux_sym_def_type_statement_token14] = ACTIONS(8790), + [aux_sym_call_statement_token1] = ACTIONS(8790), + [sym__ambiguous_call_statement] = ACTIONS(8790), + [aux_sym_addressof_expression_token1] = ACTIONS(8790), + [aux_sym_type_of_expression_token1] = ACTIONS(8790), + [aux_sym_unary_expression_token1] = ACTIONS(8790), + [sym_string_literal] = ACTIONS(8792), + [sym_number_literal] = ACTIONS(8792), + [aux_sym_boolean_literal_token1] = ACTIONS(8790), + [aux_sym_boolean_literal_token2] = ACTIONS(8790), + [sym_nothing_literal] = ACTIONS(8790), + [sym_null_literal] = ACTIONS(8790), + [sym_empty_literal] = ACTIONS(8790), + [sym_date_literal] = ACTIONS(8792), + [anon_sym_POUND] = ACTIONS(8790), + }, + [STATE(4277)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(4278)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_declaration_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_enum_declaration_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4609), + [aux_sym_declare_function_statement_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [aux_sym__property_get_header_token1] = ACTIONS(4609), + [aux_sym_event_declaration_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(4279)] = { + [sym_next_variable_list] = STATE(6196), + [sym__assignable_expression] = STATE(4997), + [sym__callable_expression] = STATE(4940), + [sym_call_expression] = STATE(5022), + [sym_member_expression] = STATE(5408), + [sym_qualified_member_expression] = STATE(5662), + [sym_implicit_member_expression] = STATE(5662), + [sym_identifier] = ACTIONS(9883), + [sym_newline] = ACTIONS(6822), + [anon_sym_COLON] = ACTIONS(6822), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6824), + [aux_sym_frm_property_statement_token1] = ACTIONS(9885), + [anon_sym_DOT] = ACTIONS(9887), + [anon_sym_BANG] = ACTIONS(9889), + [aux_sym__attribute_identifier_token1] = ACTIONS(6824), + [aux_sym_option_statement_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6824), + [aux_sym_preprocessor_const_token1] = ACTIONS(6824), + [sym_static_modifier] = ACTIONS(6824), + [sym__dim_keyword] = ACTIONS(6824), + [sym__redim_keyword] = ACTIONS(6824), + [aux_sym_get_accessor_token1] = ACTIONS(6824), + [aux_sym_set_accessor_token1] = ACTIONS(6824), + [aux_sym_const_declaration_token1] = ACTIONS(6824), + [anon_sym_LPAREN] = ACTIONS(6822), + [aux_sym_as_type_clause_token2] = ACTIONS(6824), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9891), + [aux_sym_visibility_token1] = ACTIONS(6824), + [aux_sym_visibility_token2] = ACTIONS(6824), + [aux_sym_elseif_fragment_token1] = ACTIONS(6824), + [aux_sym_else_fragment_token1] = ACTIONS(6824), + [aux_sym_select_statement_token1] = ACTIONS(6824), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6824), + [aux_sym__for_header_token1] = ACTIONS(6824), + [aux_sym_do_statement_token1] = ACTIONS(6824), + [aux_sym_do_condition_token1] = ACTIONS(6824), + [aux_sym_with_statement_token1] = ACTIONS(6824), + [aux_sym_exit_statement_token1] = ACTIONS(6824), + [sym_end_statement] = ACTIONS(6822), + [aux_sym_on_goto_statement_token1] = ACTIONS(6824), + [aux_sym_on_goto_statement_token2] = ACTIONS(6824), + [aux_sym_on_error_statement_token2] = ACTIONS(6824), + [sym__ambiguous_redim_statement] = ACTIONS(6822), + [aux_sym_erase_statement_token1] = ACTIONS(6824), + [aux_sym_open_statement_token1] = ACTIONS(6824), + [aux_sym_file_mode_token2] = ACTIONS(6824), + [aux_sym_file_access_token2] = ACTIONS(6824), + [aux_sym_file_lock_token2] = ACTIONS(6824), + [aux_sym_print_statement_token1] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6822), + [aux_sym_close_statement_token1] = ACTIONS(6824), + [aux_sym_put_statement_token1] = ACTIONS(6824), + [aux_sym_unlock_statement_token1] = ACTIONS(6824), + [aux_sym_seek_statement_token1] = ACTIONS(6824), + [sym_reset_statement] = ACTIONS(6824), + [aux_sym_raise_event_statement_token1] = ACTIONS(6824), + [sym_stop_statement] = ACTIONS(6824), + [sym_beep_statement] = ACTIONS(6824), + [aux_sym_unload_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token2] = ACTIONS(6824), + [aux_sym_def_type_statement_token3] = ACTIONS(6824), + [aux_sym_def_type_statement_token4] = ACTIONS(6824), + [aux_sym_def_type_statement_token5] = ACTIONS(6824), + [aux_sym_def_type_statement_token6] = ACTIONS(6824), + [aux_sym_def_type_statement_token7] = ACTIONS(6824), + [aux_sym_def_type_statement_token8] = ACTIONS(6824), + [aux_sym_def_type_statement_token9] = ACTIONS(6824), + [aux_sym_def_type_statement_token10] = ACTIONS(6824), + [aux_sym_def_type_statement_token11] = ACTIONS(6824), + [aux_sym_def_type_statement_token12] = ACTIONS(6824), + [aux_sym_def_type_statement_token13] = ACTIONS(6824), + [aux_sym_def_type_statement_token14] = ACTIONS(6824), + [aux_sym_call_statement_token1] = ACTIONS(6824), + [sym__ambiguous_call_statement] = ACTIONS(6824), + [aux_sym_addressof_expression_token1] = ACTIONS(6824), + [aux_sym_type_of_expression_token1] = ACTIONS(6824), + [aux_sym_unary_expression_token1] = ACTIONS(6824), + [sym_string_literal] = ACTIONS(6822), + [sym_number_literal] = ACTIONS(6822), + [aux_sym_boolean_literal_token1] = ACTIONS(6824), + [aux_sym_boolean_literal_token2] = ACTIONS(6824), + [sym_nothing_literal] = ACTIONS(6824), + [sym_null_literal] = ACTIONS(6824), + [sym_empty_literal] = ACTIONS(6824), + [sym_date_literal] = ACTIONS(6822), + [anon_sym_POUND] = ACTIONS(6824), + }, + [STATE(4280)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(4281)] = { + [sym_next_variable_list] = STATE(6175), + [sym__assignable_expression] = STATE(4956), + [sym__callable_expression] = STATE(4977), + [sym_call_expression] = STATE(4901), + [sym_member_expression] = STATE(5393), + [sym_qualified_member_expression] = STATE(5480), + [sym_implicit_member_expression] = STATE(5480), + [sym_identifier] = ACTIONS(9825), + [sym_newline] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(6856), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6858), + [aux_sym_frm_property_statement_token1] = ACTIONS(9827), + [anon_sym_DOT] = ACTIONS(9829), + [anon_sym_BANG] = ACTIONS(9831), + [aux_sym__attribute_identifier_token1] = ACTIONS(6858), + [aux_sym_option_statement_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6858), + [aux_sym_preprocessor_const_token1] = ACTIONS(6858), + [sym_static_modifier] = ACTIONS(6858), + [sym__dim_keyword] = ACTIONS(6858), + [sym__redim_keyword] = ACTIONS(6858), + [aux_sym_get_accessor_token1] = ACTIONS(6858), + [aux_sym_set_accessor_token1] = ACTIONS(6858), + [aux_sym_const_declaration_token1] = ACTIONS(6858), + [anon_sym_LPAREN] = ACTIONS(6856), + [aux_sym_as_type_clause_token2] = ACTIONS(6858), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9833), + [aux_sym_visibility_token1] = ACTIONS(6858), + [aux_sym_visibility_token2] = ACTIONS(6858), + [aux_sym_elseif_fragment_token1] = ACTIONS(6858), + [aux_sym_else_fragment_token1] = ACTIONS(6858), + [aux_sym_select_statement_token1] = ACTIONS(6858), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6858), + [aux_sym__for_header_token1] = ACTIONS(6858), + [aux_sym_do_statement_token1] = ACTIONS(6858), + [aux_sym_do_condition_token1] = ACTIONS(6858), + [aux_sym_while_statement_token1] = ACTIONS(6858), + [aux_sym_with_statement_token1] = ACTIONS(6858), + [aux_sym_exit_statement_token1] = ACTIONS(6858), + [sym_end_statement] = ACTIONS(6856), + [aux_sym_on_goto_statement_token1] = ACTIONS(6858), + [aux_sym_on_goto_statement_token2] = ACTIONS(6858), + [aux_sym_on_error_statement_token2] = ACTIONS(6858), + [sym__ambiguous_redim_statement] = ACTIONS(6856), + [aux_sym_erase_statement_token1] = ACTIONS(6858), + [aux_sym_open_statement_token1] = ACTIONS(6858), + [aux_sym_file_mode_token2] = ACTIONS(6858), + [aux_sym_file_access_token2] = ACTIONS(6858), + [aux_sym_file_lock_token2] = ACTIONS(6858), + [aux_sym_print_statement_token1] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6856), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_QMARK] = ACTIONS(6856), + [aux_sym_close_statement_token1] = ACTIONS(6858), + [aux_sym_put_statement_token1] = ACTIONS(6858), + [aux_sym_unlock_statement_token1] = ACTIONS(6858), + [aux_sym_seek_statement_token1] = ACTIONS(6858), + [sym_reset_statement] = ACTIONS(6858), + [aux_sym_raise_event_statement_token1] = ACTIONS(6858), + [sym_stop_statement] = ACTIONS(6858), + [sym_beep_statement] = ACTIONS(6858), + [aux_sym_unload_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token2] = ACTIONS(6858), + [aux_sym_def_type_statement_token3] = ACTIONS(6858), + [aux_sym_def_type_statement_token4] = ACTIONS(6858), + [aux_sym_def_type_statement_token5] = ACTIONS(6858), + [aux_sym_def_type_statement_token6] = ACTIONS(6858), + [aux_sym_def_type_statement_token7] = ACTIONS(6858), + [aux_sym_def_type_statement_token8] = ACTIONS(6858), + [aux_sym_def_type_statement_token9] = ACTIONS(6858), + [aux_sym_def_type_statement_token10] = ACTIONS(6858), + [aux_sym_def_type_statement_token11] = ACTIONS(6858), + [aux_sym_def_type_statement_token12] = ACTIONS(6858), + [aux_sym_def_type_statement_token13] = ACTIONS(6858), + [aux_sym_def_type_statement_token14] = ACTIONS(6858), + [aux_sym_call_statement_token1] = ACTIONS(6858), + [sym__ambiguous_call_statement] = ACTIONS(6858), + [aux_sym_addressof_expression_token1] = ACTIONS(6858), + [aux_sym_type_of_expression_token1] = ACTIONS(6858), + [aux_sym_unary_expression_token1] = ACTIONS(6858), + [sym_string_literal] = ACTIONS(6856), + [sym_number_literal] = ACTIONS(6856), + [aux_sym_boolean_literal_token1] = ACTIONS(6858), + [aux_sym_boolean_literal_token2] = ACTIONS(6858), + [sym_nothing_literal] = ACTIONS(6858), + [sym_null_literal] = ACTIONS(6858), + [sym_empty_literal] = ACTIONS(6858), + [sym_date_literal] = ACTIONS(6856), + [anon_sym_POUND] = ACTIONS(6858), + }, + [STATE(4282)] = { + [sym_identifier] = ACTIONS(8951), + [sym_newline] = ACTIONS(8953), + [anon_sym_COLON] = ACTIONS(8955), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8951), + [aux_sym_frm_property_statement_token1] = ACTIONS(8951), + [anon_sym_DOT] = ACTIONS(8951), + [anon_sym_BANG] = ACTIONS(8953), + [aux_sym__attribute_identifier_token1] = ACTIONS(8951), + [aux_sym_option_statement_token3] = ACTIONS(8951), + [aux_sym_type_declaration_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8951), + [aux_sym_enum_declaration_token1] = ACTIONS(8951), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8951), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8951), + [aux_sym_declare_function_statement_token1] = ACTIONS(8951), + [aux_sym_preprocessor_const_token1] = ACTIONS(8951), + [aux_sym__property_get_header_token1] = ACTIONS(8951), + [aux_sym_event_declaration_token1] = ACTIONS(8951), + [sym_static_modifier] = ACTIONS(8951), + [sym__dim_keyword] = ACTIONS(8951), + [sym__redim_keyword] = ACTIONS(8951), + [aux_sym_get_accessor_token1] = ACTIONS(8951), + [aux_sym_set_accessor_token1] = ACTIONS(8951), + [aux_sym_const_declaration_token1] = ACTIONS(8951), + [anon_sym_LPAREN] = ACTIONS(8953), + [aux_sym_as_type_clause_token2] = ACTIONS(8951), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8951), + [aux_sym_visibility_token1] = ACTIONS(8951), + [aux_sym_visibility_token2] = ACTIONS(8951), + [aux_sym_elseif_fragment_token1] = ACTIONS(8951), + [aux_sym_else_fragment_token1] = ACTIONS(8951), + [aux_sym_select_statement_token1] = ACTIONS(8951), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8951), + [aux_sym__for_header_token1] = ACTIONS(8951), + [aux_sym_do_statement_token1] = ACTIONS(8951), + [aux_sym_do_condition_token1] = ACTIONS(8951), + [aux_sym_with_statement_token1] = ACTIONS(8951), + [aux_sym_exit_statement_token1] = ACTIONS(8951), + [sym_end_statement] = ACTIONS(8953), + [aux_sym_on_goto_statement_token1] = ACTIONS(8951), + [aux_sym_on_goto_statement_token2] = ACTIONS(8951), + [aux_sym_on_error_statement_token2] = ACTIONS(8951), + [sym__ambiguous_redim_statement] = ACTIONS(8953), + [aux_sym_erase_statement_token1] = ACTIONS(8951), + [aux_sym_open_statement_token1] = ACTIONS(8951), + [aux_sym_file_mode_token2] = ACTIONS(8951), + [aux_sym_file_access_token2] = ACTIONS(8951), + [aux_sym_file_lock_token2] = ACTIONS(8951), + [aux_sym_print_statement_token1] = ACTIONS(8951), + [anon_sym_PLUS] = ACTIONS(8953), + [anon_sym_DASH] = ACTIONS(8951), + [anon_sym_QMARK] = ACTIONS(8953), + [aux_sym_close_statement_token1] = ACTIONS(8951), + [aux_sym_put_statement_token1] = ACTIONS(8951), + [aux_sym_unlock_statement_token1] = ACTIONS(8951), + [aux_sym_seek_statement_token1] = ACTIONS(8951), + [sym_reset_statement] = ACTIONS(8951), + [aux_sym_raise_event_statement_token1] = ACTIONS(8951), + [sym_stop_statement] = ACTIONS(8951), + [sym_beep_statement] = ACTIONS(8951), + [aux_sym_unload_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token2] = ACTIONS(8951), + [aux_sym_def_type_statement_token3] = ACTIONS(8951), + [aux_sym_def_type_statement_token4] = ACTIONS(8951), + [aux_sym_def_type_statement_token5] = ACTIONS(8951), + [aux_sym_def_type_statement_token6] = ACTIONS(8951), + [aux_sym_def_type_statement_token7] = ACTIONS(8951), + [aux_sym_def_type_statement_token8] = ACTIONS(8951), + [aux_sym_def_type_statement_token9] = ACTIONS(8951), + [aux_sym_def_type_statement_token10] = ACTIONS(8951), + [aux_sym_def_type_statement_token11] = ACTIONS(8951), + [aux_sym_def_type_statement_token12] = ACTIONS(8951), + [aux_sym_def_type_statement_token13] = ACTIONS(8951), + [aux_sym_def_type_statement_token14] = ACTIONS(8951), + [aux_sym_call_statement_token1] = ACTIONS(8951), + [sym__ambiguous_call_statement] = ACTIONS(8951), + [aux_sym_addressof_expression_token1] = ACTIONS(8951), + [aux_sym_type_of_expression_token1] = ACTIONS(8951), + [aux_sym_unary_expression_token1] = ACTIONS(8951), + [sym_string_literal] = ACTIONS(8953), + [sym_number_literal] = ACTIONS(8955), + [aux_sym_boolean_literal_token1] = ACTIONS(8951), + [aux_sym_boolean_literal_token2] = ACTIONS(8951), + [sym_nothing_literal] = ACTIONS(8951), + [sym_null_literal] = ACTIONS(8951), + [sym_empty_literal] = ACTIONS(8951), + [sym_date_literal] = ACTIONS(8953), + [anon_sym_POUND] = ACTIONS(8951), + }, + [STATE(4283)] = { + [sym_identifier] = ACTIONS(8645), + [sym_newline] = ACTIONS(8647), + [anon_sym_COLON] = ACTIONS(8649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8645), + [aux_sym_frm_property_statement_token1] = ACTIONS(8645), + [anon_sym_DOT] = ACTIONS(8645), + [anon_sym_BANG] = ACTIONS(8647), + [aux_sym__attribute_identifier_token1] = ACTIONS(8645), + [aux_sym_option_statement_token3] = ACTIONS(8645), + [aux_sym_type_declaration_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8645), + [aux_sym_enum_declaration_token1] = ACTIONS(8645), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8645), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8645), + [aux_sym_declare_function_statement_token1] = ACTIONS(8645), + [aux_sym_preprocessor_const_token1] = ACTIONS(8645), + [aux_sym__property_get_header_token1] = ACTIONS(8645), + [aux_sym_event_declaration_token1] = ACTIONS(8645), + [sym_static_modifier] = ACTIONS(8645), + [sym__dim_keyword] = ACTIONS(8645), + [sym__redim_keyword] = ACTIONS(8645), + [aux_sym_get_accessor_token1] = ACTIONS(8645), + [aux_sym_set_accessor_token1] = ACTIONS(8645), + [aux_sym_const_declaration_token1] = ACTIONS(8645), + [anon_sym_LPAREN] = ACTIONS(8647), + [aux_sym_as_type_clause_token2] = ACTIONS(8645), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8645), + [aux_sym_visibility_token1] = ACTIONS(8645), + [aux_sym_visibility_token2] = ACTIONS(8645), + [aux_sym_elseif_fragment_token1] = ACTIONS(8645), + [aux_sym_else_fragment_token1] = ACTIONS(8645), + [aux_sym_select_statement_token1] = ACTIONS(8645), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8645), + [aux_sym__for_header_token1] = ACTIONS(8645), + [aux_sym_do_statement_token1] = ACTIONS(8645), + [aux_sym_do_condition_token1] = ACTIONS(8645), + [aux_sym_with_statement_token1] = ACTIONS(8645), + [aux_sym_exit_statement_token1] = ACTIONS(8645), + [sym_end_statement] = ACTIONS(8647), + [aux_sym_on_goto_statement_token1] = ACTIONS(8645), + [aux_sym_on_goto_statement_token2] = ACTIONS(8645), + [aux_sym_on_error_statement_token2] = ACTIONS(8645), + [sym__ambiguous_redim_statement] = ACTIONS(8647), + [aux_sym_erase_statement_token1] = ACTIONS(8645), + [aux_sym_open_statement_token1] = ACTIONS(8645), + [aux_sym_file_mode_token2] = ACTIONS(8645), + [aux_sym_file_access_token2] = ACTIONS(8645), + [aux_sym_file_lock_token2] = ACTIONS(8645), + [aux_sym_print_statement_token1] = ACTIONS(8645), + [anon_sym_PLUS] = ACTIONS(8647), + [anon_sym_DASH] = ACTIONS(8645), + [anon_sym_QMARK] = ACTIONS(8647), + [aux_sym_close_statement_token1] = ACTIONS(8645), + [aux_sym_put_statement_token1] = ACTIONS(8645), + [aux_sym_unlock_statement_token1] = ACTIONS(8645), + [aux_sym_seek_statement_token1] = ACTIONS(8645), + [sym_reset_statement] = ACTIONS(8645), + [aux_sym_raise_event_statement_token1] = ACTIONS(8645), + [sym_stop_statement] = ACTIONS(8645), + [sym_beep_statement] = ACTIONS(8645), + [aux_sym_unload_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token2] = ACTIONS(8645), + [aux_sym_def_type_statement_token3] = ACTIONS(8645), + [aux_sym_def_type_statement_token4] = ACTIONS(8645), + [aux_sym_def_type_statement_token5] = ACTIONS(8645), + [aux_sym_def_type_statement_token6] = ACTIONS(8645), + [aux_sym_def_type_statement_token7] = ACTIONS(8645), + [aux_sym_def_type_statement_token8] = ACTIONS(8645), + [aux_sym_def_type_statement_token9] = ACTIONS(8645), + [aux_sym_def_type_statement_token10] = ACTIONS(8645), + [aux_sym_def_type_statement_token11] = ACTIONS(8645), + [aux_sym_def_type_statement_token12] = ACTIONS(8645), + [aux_sym_def_type_statement_token13] = ACTIONS(8645), + [aux_sym_def_type_statement_token14] = ACTIONS(8645), + [aux_sym_call_statement_token1] = ACTIONS(8645), + [sym__ambiguous_call_statement] = ACTIONS(8645), + [aux_sym_addressof_expression_token1] = ACTIONS(8645), + [aux_sym_type_of_expression_token1] = ACTIONS(8645), + [aux_sym_unary_expression_token1] = ACTIONS(8645), + [sym_string_literal] = ACTIONS(8647), + [sym_number_literal] = ACTIONS(8649), + [aux_sym_boolean_literal_token1] = ACTIONS(8645), + [aux_sym_boolean_literal_token2] = ACTIONS(8645), + [sym_nothing_literal] = ACTIONS(8645), + [sym_null_literal] = ACTIONS(8645), + [sym_empty_literal] = ACTIONS(8645), + [sym_date_literal] = ACTIONS(8647), + [anon_sym_POUND] = ACTIONS(8645), + }, + [STATE(4284)] = { + [sym_identifier] = ACTIONS(8749), + [sym_newline] = ACTIONS(8751), + [anon_sym_COLON] = ACTIONS(8753), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8749), + [aux_sym_frm_property_statement_token1] = ACTIONS(8749), + [anon_sym_DOT] = ACTIONS(8749), + [anon_sym_BANG] = ACTIONS(8751), + [aux_sym__attribute_identifier_token1] = ACTIONS(8749), + [aux_sym_option_statement_token3] = ACTIONS(8749), + [aux_sym_type_declaration_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8749), + [aux_sym_enum_declaration_token1] = ACTIONS(8749), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8749), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8749), + [aux_sym_declare_function_statement_token1] = ACTIONS(8749), + [aux_sym_preprocessor_const_token1] = ACTIONS(8749), + [aux_sym__property_get_header_token1] = ACTIONS(8749), + [aux_sym_event_declaration_token1] = ACTIONS(8749), + [sym_static_modifier] = ACTIONS(8749), + [sym__dim_keyword] = ACTIONS(8749), + [sym__redim_keyword] = ACTIONS(8749), + [aux_sym_get_accessor_token1] = ACTIONS(8749), + [aux_sym_set_accessor_token1] = ACTIONS(8749), + [aux_sym_const_declaration_token1] = ACTIONS(8749), + [anon_sym_LPAREN] = ACTIONS(8751), + [aux_sym_as_type_clause_token2] = ACTIONS(8749), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8749), + [aux_sym_visibility_token1] = ACTIONS(8749), + [aux_sym_visibility_token2] = ACTIONS(8749), + [aux_sym_elseif_fragment_token1] = ACTIONS(8749), + [aux_sym_else_fragment_token1] = ACTIONS(8749), + [aux_sym_select_statement_token1] = ACTIONS(8749), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8749), + [aux_sym__for_header_token1] = ACTIONS(8749), + [aux_sym_do_statement_token1] = ACTIONS(8749), + [aux_sym_do_condition_token1] = ACTIONS(8749), + [aux_sym_with_statement_token1] = ACTIONS(8749), + [aux_sym_exit_statement_token1] = ACTIONS(8749), + [sym_end_statement] = ACTIONS(8751), + [aux_sym_on_goto_statement_token1] = ACTIONS(8749), + [aux_sym_on_goto_statement_token2] = ACTIONS(8749), + [aux_sym_on_error_statement_token2] = ACTIONS(8749), + [sym__ambiguous_redim_statement] = ACTIONS(8751), + [aux_sym_erase_statement_token1] = ACTIONS(8749), + [aux_sym_open_statement_token1] = ACTIONS(8749), + [aux_sym_file_mode_token2] = ACTIONS(8749), + [aux_sym_file_access_token2] = ACTIONS(8749), + [aux_sym_file_lock_token2] = ACTIONS(8749), + [aux_sym_print_statement_token1] = ACTIONS(8749), + [anon_sym_PLUS] = ACTIONS(8751), + [anon_sym_DASH] = ACTIONS(8749), + [anon_sym_QMARK] = ACTIONS(8751), + [aux_sym_close_statement_token1] = ACTIONS(8749), + [aux_sym_put_statement_token1] = ACTIONS(8749), + [aux_sym_unlock_statement_token1] = ACTIONS(8749), + [aux_sym_seek_statement_token1] = ACTIONS(8749), + [sym_reset_statement] = ACTIONS(8749), + [aux_sym_raise_event_statement_token1] = ACTIONS(8749), + [sym_stop_statement] = ACTIONS(8749), + [sym_beep_statement] = ACTIONS(8749), + [aux_sym_unload_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token2] = ACTIONS(8749), + [aux_sym_def_type_statement_token3] = ACTIONS(8749), + [aux_sym_def_type_statement_token4] = ACTIONS(8749), + [aux_sym_def_type_statement_token5] = ACTIONS(8749), + [aux_sym_def_type_statement_token6] = ACTIONS(8749), + [aux_sym_def_type_statement_token7] = ACTIONS(8749), + [aux_sym_def_type_statement_token8] = ACTIONS(8749), + [aux_sym_def_type_statement_token9] = ACTIONS(8749), + [aux_sym_def_type_statement_token10] = ACTIONS(8749), + [aux_sym_def_type_statement_token11] = ACTIONS(8749), + [aux_sym_def_type_statement_token12] = ACTIONS(8749), + [aux_sym_def_type_statement_token13] = ACTIONS(8749), + [aux_sym_def_type_statement_token14] = ACTIONS(8749), + [aux_sym_call_statement_token1] = ACTIONS(8749), + [sym__ambiguous_call_statement] = ACTIONS(8749), + [aux_sym_addressof_expression_token1] = ACTIONS(8749), + [aux_sym_type_of_expression_token1] = ACTIONS(8749), + [aux_sym_unary_expression_token1] = ACTIONS(8749), + [sym_string_literal] = ACTIONS(8751), + [sym_number_literal] = ACTIONS(8753), + [aux_sym_boolean_literal_token1] = ACTIONS(8749), + [aux_sym_boolean_literal_token2] = ACTIONS(8749), + [sym_nothing_literal] = ACTIONS(8749), + [sym_null_literal] = ACTIONS(8749), + [sym_empty_literal] = ACTIONS(8749), + [sym_date_literal] = ACTIONS(8751), + [anon_sym_POUND] = ACTIONS(8749), + }, + [STATE(4285)] = { + [sym_identifier] = ACTIONS(8729), + [sym_newline] = ACTIONS(8731), + [anon_sym_COLON] = ACTIONS(8731), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8729), + [aux_sym_frm_property_statement_token1] = ACTIONS(8729), + [anon_sym_DOT] = ACTIONS(8729), + [anon_sym_BANG] = ACTIONS(8731), + [aux_sym__attribute_identifier_token1] = ACTIONS(8729), + [aux_sym_option_statement_token3] = ACTIONS(8729), + [aux_sym_type_declaration_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8729), + [aux_sym_enum_declaration_token1] = ACTIONS(8729), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8729), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8729), + [aux_sym_declare_function_statement_token1] = ACTIONS(8729), + [aux_sym_preprocessor_const_token1] = ACTIONS(8729), + [aux_sym__property_get_header_token1] = ACTIONS(8729), + [aux_sym_event_declaration_token1] = ACTIONS(8729), + [sym_static_modifier] = ACTIONS(8729), + [sym__dim_keyword] = ACTIONS(8729), + [sym__redim_keyword] = ACTIONS(8729), + [aux_sym_get_accessor_token1] = ACTIONS(8729), + [aux_sym_set_accessor_token1] = ACTIONS(8729), + [aux_sym_const_declaration_token1] = ACTIONS(8729), + [anon_sym_LPAREN] = ACTIONS(8731), + [aux_sym_as_type_clause_token2] = ACTIONS(8729), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8729), + [aux_sym_visibility_token1] = ACTIONS(8729), + [aux_sym_visibility_token2] = ACTIONS(8729), + [aux_sym_elseif_fragment_token1] = ACTIONS(8729), + [aux_sym_else_fragment_token1] = ACTIONS(8729), + [aux_sym_select_statement_token1] = ACTIONS(8729), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8729), + [aux_sym__for_header_token1] = ACTIONS(8729), + [aux_sym_do_statement_token1] = ACTIONS(8729), + [aux_sym_do_condition_token1] = ACTIONS(8729), + [aux_sym_with_statement_token1] = ACTIONS(8729), + [aux_sym_exit_statement_token1] = ACTIONS(8729), + [sym_end_statement] = ACTIONS(8731), + [aux_sym_on_goto_statement_token1] = ACTIONS(8729), + [aux_sym_on_goto_statement_token2] = ACTIONS(8729), + [aux_sym_on_error_statement_token2] = ACTIONS(8729), + [sym__ambiguous_redim_statement] = ACTIONS(8731), + [aux_sym_erase_statement_token1] = ACTIONS(8729), + [aux_sym_open_statement_token1] = ACTIONS(8729), + [aux_sym_file_mode_token2] = ACTIONS(8729), + [aux_sym_file_access_token2] = ACTIONS(8729), + [aux_sym_file_lock_token2] = ACTIONS(8729), + [aux_sym_print_statement_token1] = ACTIONS(8729), + [anon_sym_PLUS] = ACTIONS(8731), + [anon_sym_DASH] = ACTIONS(8729), + [anon_sym_QMARK] = ACTIONS(8731), + [aux_sym_close_statement_token1] = ACTIONS(8729), + [aux_sym_put_statement_token1] = ACTIONS(8729), + [aux_sym_unlock_statement_token1] = ACTIONS(8729), + [aux_sym_seek_statement_token1] = ACTIONS(8729), + [sym_reset_statement] = ACTIONS(8729), + [aux_sym_raise_event_statement_token1] = ACTIONS(8729), + [sym_stop_statement] = ACTIONS(8729), + [sym_beep_statement] = ACTIONS(8729), + [aux_sym_unload_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token2] = ACTIONS(8729), + [aux_sym_def_type_statement_token3] = ACTIONS(8729), + [aux_sym_def_type_statement_token4] = ACTIONS(8729), + [aux_sym_def_type_statement_token5] = ACTIONS(8729), + [aux_sym_def_type_statement_token6] = ACTIONS(8729), + [aux_sym_def_type_statement_token7] = ACTIONS(8729), + [aux_sym_def_type_statement_token8] = ACTIONS(8729), + [aux_sym_def_type_statement_token9] = ACTIONS(8729), + [aux_sym_def_type_statement_token10] = ACTIONS(8729), + [aux_sym_def_type_statement_token11] = ACTIONS(8729), + [aux_sym_def_type_statement_token12] = ACTIONS(8729), + [aux_sym_def_type_statement_token13] = ACTIONS(8729), + [aux_sym_def_type_statement_token14] = ACTIONS(8729), + [aux_sym_call_statement_token1] = ACTIONS(8729), + [sym__ambiguous_call_statement] = ACTIONS(8729), + [aux_sym_addressof_expression_token1] = ACTIONS(8729), + [aux_sym_type_of_expression_token1] = ACTIONS(8729), + [aux_sym_unary_expression_token1] = ACTIONS(8729), + [sym_string_literal] = ACTIONS(8731), + [sym_number_literal] = ACTIONS(8731), + [aux_sym_boolean_literal_token1] = ACTIONS(8729), + [aux_sym_boolean_literal_token2] = ACTIONS(8729), + [sym_nothing_literal] = ACTIONS(8729), + [sym_null_literal] = ACTIONS(8729), + [sym_empty_literal] = ACTIONS(8729), + [sym_date_literal] = ACTIONS(8731), + [anon_sym_POUND] = ACTIONS(8729), + }, + [STATE(4286)] = { + [sym_next_variable_list] = STATE(6188), + [sym__assignable_expression] = STATE(4950), + [sym__callable_expression] = STATE(4998), + [sym_call_expression] = STATE(4937), + [sym_member_expression] = STATE(5280), + [sym_qualified_member_expression] = STATE(5270), + [sym_implicit_member_expression] = STATE(5270), + [sym_identifier] = ACTIONS(9835), + [sym_newline] = ACTIONS(6848), + [anon_sym_COLON] = ACTIONS(6848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6850), + [aux_sym_frm_property_statement_token1] = ACTIONS(9837), + [anon_sym_DOT] = ACTIONS(9839), + [anon_sym_BANG] = ACTIONS(9841), + [aux_sym__attribute_identifier_token1] = ACTIONS(6850), + [aux_sym_option_statement_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6850), + [aux_sym_preprocessor_const_token1] = ACTIONS(6850), + [sym_static_modifier] = ACTIONS(6850), + [sym__dim_keyword] = ACTIONS(6850), + [sym__redim_keyword] = ACTIONS(6850), + [aux_sym_get_accessor_token1] = ACTIONS(6850), + [aux_sym_set_accessor_token1] = ACTIONS(6850), + [aux_sym_const_declaration_token1] = ACTIONS(6850), + [anon_sym_LPAREN] = ACTIONS(6848), + [aux_sym_as_type_clause_token2] = ACTIONS(6850), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9843), + [aux_sym_visibility_token1] = ACTIONS(6850), + [aux_sym_visibility_token2] = ACTIONS(6850), + [aux_sym_elseif_fragment_token1] = ACTIONS(6850), + [aux_sym_else_fragment_token1] = ACTIONS(6850), + [aux_sym_select_statement_token1] = ACTIONS(6850), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6850), + [aux_sym__for_header_token1] = ACTIONS(6850), + [aux_sym_do_statement_token1] = ACTIONS(6850), + [aux_sym_do_statement_token2] = ACTIONS(6850), + [aux_sym_do_condition_token1] = ACTIONS(6850), + [aux_sym_with_statement_token1] = ACTIONS(6850), + [aux_sym_exit_statement_token1] = ACTIONS(6850), + [sym_end_statement] = ACTIONS(6848), + [aux_sym_on_goto_statement_token1] = ACTIONS(6850), + [aux_sym_on_goto_statement_token2] = ACTIONS(6850), + [aux_sym_on_error_statement_token2] = ACTIONS(6850), + [sym__ambiguous_redim_statement] = ACTIONS(6848), + [aux_sym_erase_statement_token1] = ACTIONS(6850), + [aux_sym_open_statement_token1] = ACTIONS(6850), + [aux_sym_file_mode_token2] = ACTIONS(6850), + [aux_sym_file_access_token2] = ACTIONS(6850), + [aux_sym_file_lock_token2] = ACTIONS(6850), + [aux_sym_print_statement_token1] = ACTIONS(6850), + [anon_sym_PLUS] = ACTIONS(6848), + [anon_sym_DASH] = ACTIONS(6850), + [anon_sym_QMARK] = ACTIONS(6848), + [aux_sym_close_statement_token1] = ACTIONS(6850), + [aux_sym_put_statement_token1] = ACTIONS(6850), + [aux_sym_unlock_statement_token1] = ACTIONS(6850), + [aux_sym_seek_statement_token1] = ACTIONS(6850), + [sym_reset_statement] = ACTIONS(6850), + [aux_sym_raise_event_statement_token1] = ACTIONS(6850), + [sym_stop_statement] = ACTIONS(6850), + [sym_beep_statement] = ACTIONS(6850), + [aux_sym_unload_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token2] = ACTIONS(6850), + [aux_sym_def_type_statement_token3] = ACTIONS(6850), + [aux_sym_def_type_statement_token4] = ACTIONS(6850), + [aux_sym_def_type_statement_token5] = ACTIONS(6850), + [aux_sym_def_type_statement_token6] = ACTIONS(6850), + [aux_sym_def_type_statement_token7] = ACTIONS(6850), + [aux_sym_def_type_statement_token8] = ACTIONS(6850), + [aux_sym_def_type_statement_token9] = ACTIONS(6850), + [aux_sym_def_type_statement_token10] = ACTIONS(6850), + [aux_sym_def_type_statement_token11] = ACTIONS(6850), + [aux_sym_def_type_statement_token12] = ACTIONS(6850), + [aux_sym_def_type_statement_token13] = ACTIONS(6850), + [aux_sym_def_type_statement_token14] = ACTIONS(6850), + [aux_sym_call_statement_token1] = ACTIONS(6850), + [sym__ambiguous_call_statement] = ACTIONS(6850), + [aux_sym_addressof_expression_token1] = ACTIONS(6850), + [aux_sym_type_of_expression_token1] = ACTIONS(6850), + [aux_sym_unary_expression_token1] = ACTIONS(6850), + [sym_string_literal] = ACTIONS(6848), + [sym_number_literal] = ACTIONS(6848), + [aux_sym_boolean_literal_token1] = ACTIONS(6850), + [aux_sym_boolean_literal_token2] = ACTIONS(6850), + [sym_nothing_literal] = ACTIONS(6850), + [sym_null_literal] = ACTIONS(6850), + [sym_empty_literal] = ACTIONS(6850), + [sym_date_literal] = ACTIONS(6848), + [anon_sym_POUND] = ACTIONS(6850), + }, + [STATE(4287)] = { + [sym_next_variable_list] = STATE(6220), + [sym__assignable_expression] = STATE(4956), + [sym__callable_expression] = STATE(4977), + [sym_call_expression] = STATE(4901), + [sym_member_expression] = STATE(5393), + [sym_qualified_member_expression] = STATE(5480), + [sym_implicit_member_expression] = STATE(5480), + [sym_identifier] = ACTIONS(9825), + [sym_newline] = ACTIONS(6867), + [anon_sym_COLON] = ACTIONS(6867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6869), + [aux_sym_frm_property_statement_token1] = ACTIONS(9827), + [anon_sym_DOT] = ACTIONS(9829), + [anon_sym_BANG] = ACTIONS(9831), + [aux_sym__attribute_identifier_token1] = ACTIONS(6869), + [aux_sym_option_statement_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6869), + [aux_sym_preprocessor_const_token1] = ACTIONS(6869), + [sym_static_modifier] = ACTIONS(6869), + [sym__dim_keyword] = ACTIONS(6869), + [sym__redim_keyword] = ACTIONS(6869), + [aux_sym_get_accessor_token1] = ACTIONS(6869), + [aux_sym_set_accessor_token1] = ACTIONS(6869), + [aux_sym_const_declaration_token1] = ACTIONS(6869), + [anon_sym_LPAREN] = ACTIONS(6867), + [aux_sym_as_type_clause_token2] = ACTIONS(6869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9833), + [aux_sym_visibility_token1] = ACTIONS(6869), + [aux_sym_visibility_token2] = ACTIONS(6869), + [aux_sym_elseif_fragment_token1] = ACTIONS(6869), + [aux_sym_else_fragment_token1] = ACTIONS(6869), + [aux_sym_select_statement_token1] = ACTIONS(6869), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6869), + [aux_sym__for_header_token1] = ACTIONS(6869), + [aux_sym_do_statement_token1] = ACTIONS(6869), + [aux_sym_do_condition_token1] = ACTIONS(6869), + [aux_sym_while_statement_token1] = ACTIONS(6869), + [aux_sym_with_statement_token1] = ACTIONS(6869), + [aux_sym_exit_statement_token1] = ACTIONS(6869), + [sym_end_statement] = ACTIONS(6867), + [aux_sym_on_goto_statement_token1] = ACTIONS(6869), + [aux_sym_on_goto_statement_token2] = ACTIONS(6869), + [aux_sym_on_error_statement_token2] = ACTIONS(6869), + [sym__ambiguous_redim_statement] = ACTIONS(6867), + [aux_sym_erase_statement_token1] = ACTIONS(6869), + [aux_sym_open_statement_token1] = ACTIONS(6869), + [aux_sym_file_mode_token2] = ACTIONS(6869), + [aux_sym_file_access_token2] = ACTIONS(6869), + [aux_sym_file_lock_token2] = ACTIONS(6869), + [aux_sym_print_statement_token1] = ACTIONS(6869), + [anon_sym_PLUS] = ACTIONS(6867), + [anon_sym_DASH] = ACTIONS(6869), + [anon_sym_QMARK] = ACTIONS(6867), + [aux_sym_close_statement_token1] = ACTIONS(6869), + [aux_sym_put_statement_token1] = ACTIONS(6869), + [aux_sym_unlock_statement_token1] = ACTIONS(6869), + [aux_sym_seek_statement_token1] = ACTIONS(6869), + [sym_reset_statement] = ACTIONS(6869), + [aux_sym_raise_event_statement_token1] = ACTIONS(6869), + [sym_stop_statement] = ACTIONS(6869), + [sym_beep_statement] = ACTIONS(6869), + [aux_sym_unload_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token2] = ACTIONS(6869), + [aux_sym_def_type_statement_token3] = ACTIONS(6869), + [aux_sym_def_type_statement_token4] = ACTIONS(6869), + [aux_sym_def_type_statement_token5] = ACTIONS(6869), + [aux_sym_def_type_statement_token6] = ACTIONS(6869), + [aux_sym_def_type_statement_token7] = ACTIONS(6869), + [aux_sym_def_type_statement_token8] = ACTIONS(6869), + [aux_sym_def_type_statement_token9] = ACTIONS(6869), + [aux_sym_def_type_statement_token10] = ACTIONS(6869), + [aux_sym_def_type_statement_token11] = ACTIONS(6869), + [aux_sym_def_type_statement_token12] = ACTIONS(6869), + [aux_sym_def_type_statement_token13] = ACTIONS(6869), + [aux_sym_def_type_statement_token14] = ACTIONS(6869), + [aux_sym_call_statement_token1] = ACTIONS(6869), + [sym__ambiguous_call_statement] = ACTIONS(6869), + [aux_sym_addressof_expression_token1] = ACTIONS(6869), + [aux_sym_type_of_expression_token1] = ACTIONS(6869), + [aux_sym_unary_expression_token1] = ACTIONS(6869), + [sym_string_literal] = ACTIONS(6867), + [sym_number_literal] = ACTIONS(6867), + [aux_sym_boolean_literal_token1] = ACTIONS(6869), + [aux_sym_boolean_literal_token2] = ACTIONS(6869), + [sym_nothing_literal] = ACTIONS(6869), + [sym_null_literal] = ACTIONS(6869), + [sym_empty_literal] = ACTIONS(6869), + [sym_date_literal] = ACTIONS(6867), + [anon_sym_POUND] = ACTIONS(6869), + }, + [STATE(4288)] = { + [sym_next_variable_list] = STATE(6226), + [sym__assignable_expression] = STATE(4956), + [sym__callable_expression] = STATE(4977), + [sym_call_expression] = STATE(4901), + [sym_member_expression] = STATE(5393), + [sym_qualified_member_expression] = STATE(5480), + [sym_implicit_member_expression] = STATE(5480), + [sym_identifier] = ACTIONS(9825), + [sym_newline] = ACTIONS(6810), + [anon_sym_COLON] = ACTIONS(6810), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6812), + [aux_sym_frm_property_statement_token1] = ACTIONS(9827), + [anon_sym_DOT] = ACTIONS(9829), + [anon_sym_BANG] = ACTIONS(9831), + [aux_sym__attribute_identifier_token1] = ACTIONS(6812), + [aux_sym_option_statement_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6812), + [aux_sym_preprocessor_const_token1] = ACTIONS(6812), + [sym_static_modifier] = ACTIONS(6812), + [sym__dim_keyword] = ACTIONS(6812), + [sym__redim_keyword] = ACTIONS(6812), + [aux_sym_get_accessor_token1] = ACTIONS(6812), + [aux_sym_set_accessor_token1] = ACTIONS(6812), + [aux_sym_const_declaration_token1] = ACTIONS(6812), + [anon_sym_LPAREN] = ACTIONS(6810), + [aux_sym_as_type_clause_token2] = ACTIONS(6812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9833), + [aux_sym_visibility_token1] = ACTIONS(6812), + [aux_sym_visibility_token2] = ACTIONS(6812), + [aux_sym_elseif_fragment_token1] = ACTIONS(6812), + [aux_sym_else_fragment_token1] = ACTIONS(6812), + [aux_sym_select_statement_token1] = ACTIONS(6812), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6812), + [aux_sym__for_header_token1] = ACTIONS(6812), + [aux_sym_do_statement_token1] = ACTIONS(6812), + [aux_sym_do_condition_token1] = ACTIONS(6812), + [aux_sym_while_statement_token1] = ACTIONS(6812), + [aux_sym_with_statement_token1] = ACTIONS(6812), + [aux_sym_exit_statement_token1] = ACTIONS(6812), + [sym_end_statement] = ACTIONS(6810), + [aux_sym_on_goto_statement_token1] = ACTIONS(6812), + [aux_sym_on_goto_statement_token2] = ACTIONS(6812), + [aux_sym_on_error_statement_token2] = ACTIONS(6812), + [sym__ambiguous_redim_statement] = ACTIONS(6810), + [aux_sym_erase_statement_token1] = ACTIONS(6812), + [aux_sym_open_statement_token1] = ACTIONS(6812), + [aux_sym_file_mode_token2] = ACTIONS(6812), + [aux_sym_file_access_token2] = ACTIONS(6812), + [aux_sym_file_lock_token2] = ACTIONS(6812), + [aux_sym_print_statement_token1] = ACTIONS(6812), + [anon_sym_PLUS] = ACTIONS(6810), + [anon_sym_DASH] = ACTIONS(6812), + [anon_sym_QMARK] = ACTIONS(6810), + [aux_sym_close_statement_token1] = ACTIONS(6812), + [aux_sym_put_statement_token1] = ACTIONS(6812), + [aux_sym_unlock_statement_token1] = ACTIONS(6812), + [aux_sym_seek_statement_token1] = ACTIONS(6812), + [sym_reset_statement] = ACTIONS(6812), + [aux_sym_raise_event_statement_token1] = ACTIONS(6812), + [sym_stop_statement] = ACTIONS(6812), + [sym_beep_statement] = ACTIONS(6812), + [aux_sym_unload_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token2] = ACTIONS(6812), + [aux_sym_def_type_statement_token3] = ACTIONS(6812), + [aux_sym_def_type_statement_token4] = ACTIONS(6812), + [aux_sym_def_type_statement_token5] = ACTIONS(6812), + [aux_sym_def_type_statement_token6] = ACTIONS(6812), + [aux_sym_def_type_statement_token7] = ACTIONS(6812), + [aux_sym_def_type_statement_token8] = ACTIONS(6812), + [aux_sym_def_type_statement_token9] = ACTIONS(6812), + [aux_sym_def_type_statement_token10] = ACTIONS(6812), + [aux_sym_def_type_statement_token11] = ACTIONS(6812), + [aux_sym_def_type_statement_token12] = ACTIONS(6812), + [aux_sym_def_type_statement_token13] = ACTIONS(6812), + [aux_sym_def_type_statement_token14] = ACTIONS(6812), + [aux_sym_call_statement_token1] = ACTIONS(6812), + [sym__ambiguous_call_statement] = ACTIONS(6812), + [aux_sym_addressof_expression_token1] = ACTIONS(6812), + [aux_sym_type_of_expression_token1] = ACTIONS(6812), + [aux_sym_unary_expression_token1] = ACTIONS(6812), + [sym_string_literal] = ACTIONS(6810), + [sym_number_literal] = ACTIONS(6810), + [aux_sym_boolean_literal_token1] = ACTIONS(6812), + [aux_sym_boolean_literal_token2] = ACTIONS(6812), + [sym_nothing_literal] = ACTIONS(6812), + [sym_null_literal] = ACTIONS(6812), + [sym_empty_literal] = ACTIONS(6812), + [sym_date_literal] = ACTIONS(6810), + [anon_sym_POUND] = ACTIONS(6812), + }, + [STATE(4289)] = { + [sym_identifier] = ACTIONS(8745), + [sym_newline] = ACTIONS(8747), + [anon_sym_COLON] = ACTIONS(8747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8745), + [aux_sym_frm_property_statement_token1] = ACTIONS(8745), + [anon_sym_DOT] = ACTIONS(8745), + [anon_sym_BANG] = ACTIONS(8747), + [aux_sym__attribute_identifier_token1] = ACTIONS(8745), + [aux_sym_option_statement_token3] = ACTIONS(8745), + [aux_sym_type_declaration_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8745), + [aux_sym_enum_declaration_token1] = ACTIONS(8745), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8745), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8745), + [aux_sym_declare_function_statement_token1] = ACTIONS(8745), + [aux_sym_preprocessor_const_token1] = ACTIONS(8745), + [aux_sym__property_get_header_token1] = ACTIONS(8745), + [aux_sym_event_declaration_token1] = ACTIONS(8745), + [sym_static_modifier] = ACTIONS(8745), + [sym__dim_keyword] = ACTIONS(8745), + [sym__redim_keyword] = ACTIONS(8745), + [aux_sym_get_accessor_token1] = ACTIONS(8745), + [aux_sym_set_accessor_token1] = ACTIONS(8745), + [aux_sym_const_declaration_token1] = ACTIONS(8745), + [anon_sym_LPAREN] = ACTIONS(8747), + [aux_sym_as_type_clause_token2] = ACTIONS(8745), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8745), + [aux_sym_visibility_token1] = ACTIONS(8745), + [aux_sym_visibility_token2] = ACTIONS(8745), + [aux_sym_elseif_fragment_token1] = ACTIONS(8745), + [aux_sym_else_fragment_token1] = ACTIONS(8745), + [aux_sym_select_statement_token1] = ACTIONS(8745), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8745), + [aux_sym__for_header_token1] = ACTIONS(8745), + [aux_sym_do_statement_token1] = ACTIONS(8745), + [aux_sym_do_condition_token1] = ACTIONS(8745), + [aux_sym_with_statement_token1] = ACTIONS(8745), + [aux_sym_exit_statement_token1] = ACTIONS(8745), + [sym_end_statement] = ACTIONS(8747), + [aux_sym_on_goto_statement_token1] = ACTIONS(8745), + [aux_sym_on_goto_statement_token2] = ACTIONS(8745), + [aux_sym_on_error_statement_token2] = ACTIONS(8745), + [sym__ambiguous_redim_statement] = ACTIONS(8747), + [aux_sym_erase_statement_token1] = ACTIONS(8745), + [aux_sym_open_statement_token1] = ACTIONS(8745), + [aux_sym_file_mode_token2] = ACTIONS(8745), + [aux_sym_file_access_token2] = ACTIONS(8745), + [aux_sym_file_lock_token2] = ACTIONS(8745), + [aux_sym_print_statement_token1] = ACTIONS(8745), + [anon_sym_PLUS] = ACTIONS(8747), + [anon_sym_DASH] = ACTIONS(8745), + [anon_sym_QMARK] = ACTIONS(8747), + [aux_sym_close_statement_token1] = ACTIONS(8745), + [aux_sym_put_statement_token1] = ACTIONS(8745), + [aux_sym_unlock_statement_token1] = ACTIONS(8745), + [aux_sym_seek_statement_token1] = ACTIONS(8745), + [sym_reset_statement] = ACTIONS(8745), + [aux_sym_raise_event_statement_token1] = ACTIONS(8745), + [sym_stop_statement] = ACTIONS(8745), + [sym_beep_statement] = ACTIONS(8745), + [aux_sym_unload_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token2] = ACTIONS(8745), + [aux_sym_def_type_statement_token3] = ACTIONS(8745), + [aux_sym_def_type_statement_token4] = ACTIONS(8745), + [aux_sym_def_type_statement_token5] = ACTIONS(8745), + [aux_sym_def_type_statement_token6] = ACTIONS(8745), + [aux_sym_def_type_statement_token7] = ACTIONS(8745), + [aux_sym_def_type_statement_token8] = ACTIONS(8745), + [aux_sym_def_type_statement_token9] = ACTIONS(8745), + [aux_sym_def_type_statement_token10] = ACTIONS(8745), + [aux_sym_def_type_statement_token11] = ACTIONS(8745), + [aux_sym_def_type_statement_token12] = ACTIONS(8745), + [aux_sym_def_type_statement_token13] = ACTIONS(8745), + [aux_sym_def_type_statement_token14] = ACTIONS(8745), + [aux_sym_call_statement_token1] = ACTIONS(8745), + [sym__ambiguous_call_statement] = ACTIONS(8745), + [aux_sym_addressof_expression_token1] = ACTIONS(8745), + [aux_sym_type_of_expression_token1] = ACTIONS(8745), + [aux_sym_unary_expression_token1] = ACTIONS(8745), + [sym_string_literal] = ACTIONS(8747), + [sym_number_literal] = ACTIONS(8747), + [aux_sym_boolean_literal_token1] = ACTIONS(8745), + [aux_sym_boolean_literal_token2] = ACTIONS(8745), + [sym_nothing_literal] = ACTIONS(8745), + [sym_null_literal] = ACTIONS(8745), + [sym_empty_literal] = ACTIONS(8745), + [sym_date_literal] = ACTIONS(8747), + [anon_sym_POUND] = ACTIONS(8745), + }, + [STATE(4290)] = { + [sym_parameter_list] = STATE(4536), + [sym_identifier] = ACTIONS(8641), + [sym_newline] = ACTIONS(8643), + [anon_sym_COLON] = ACTIONS(8643), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8641), + [aux_sym_frm_property_statement_token1] = ACTIONS(8641), + [anon_sym_DOT] = ACTIONS(8641), + [anon_sym_BANG] = ACTIONS(8643), + [aux_sym__attribute_identifier_token1] = ACTIONS(8641), + [aux_sym_option_statement_token3] = ACTIONS(8641), + [aux_sym_type_declaration_token1] = ACTIONS(8641), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8641), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8641), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8641), + [aux_sym_enum_declaration_token1] = ACTIONS(8641), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8641), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8641), + [aux_sym_declare_function_statement_token1] = ACTIONS(8641), + [aux_sym_preprocessor_const_token1] = ACTIONS(8641), + [aux_sym__property_get_header_token1] = ACTIONS(8641), + [aux_sym_event_declaration_token1] = ACTIONS(8641), + [sym_static_modifier] = ACTIONS(8641), + [sym__dim_keyword] = ACTIONS(8641), + [sym__redim_keyword] = ACTIONS(8641), + [aux_sym_get_accessor_token1] = ACTIONS(8641), + [aux_sym_set_accessor_token1] = ACTIONS(8641), + [aux_sym_const_declaration_token1] = ACTIONS(8641), + [anon_sym_LPAREN] = ACTIONS(9014), + [aux_sym_as_type_clause_token2] = ACTIONS(8641), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8641), + [aux_sym_visibility_token1] = ACTIONS(8641), + [aux_sym_visibility_token2] = ACTIONS(8641), + [aux_sym_elseif_fragment_token1] = ACTIONS(8641), + [aux_sym_else_fragment_token1] = ACTIONS(8641), + [aux_sym_select_statement_token1] = ACTIONS(8641), + [aux_sym__for_header_token1] = ACTIONS(8641), + [aux_sym_do_statement_token1] = ACTIONS(8641), + [aux_sym_do_condition_token1] = ACTIONS(8641), + [aux_sym_with_statement_token1] = ACTIONS(8641), + [aux_sym_exit_statement_token1] = ACTIONS(8641), + [sym_end_statement] = ACTIONS(8643), + [aux_sym_on_goto_statement_token1] = ACTIONS(8641), + [aux_sym_on_goto_statement_token2] = ACTIONS(8641), + [aux_sym_on_error_statement_token2] = ACTIONS(8641), + [sym__ambiguous_redim_statement] = ACTIONS(8643), + [aux_sym_erase_statement_token1] = ACTIONS(8641), + [aux_sym_open_statement_token1] = ACTIONS(8641), + [aux_sym_file_mode_token2] = ACTIONS(8641), + [aux_sym_file_access_token2] = ACTIONS(8641), + [aux_sym_file_lock_token2] = ACTIONS(8641), + [aux_sym_print_statement_token1] = ACTIONS(8641), + [anon_sym_PLUS] = ACTIONS(8643), + [anon_sym_DASH] = ACTIONS(8641), + [anon_sym_QMARK] = ACTIONS(8643), + [aux_sym_close_statement_token1] = ACTIONS(8641), + [aux_sym_put_statement_token1] = ACTIONS(8641), + [aux_sym_unlock_statement_token1] = ACTIONS(8641), + [aux_sym_seek_statement_token1] = ACTIONS(8641), + [sym_reset_statement] = ACTIONS(8641), + [aux_sym_raise_event_statement_token1] = ACTIONS(8641), + [sym_stop_statement] = ACTIONS(8641), + [sym_beep_statement] = ACTIONS(8641), + [aux_sym_unload_statement_token1] = ACTIONS(8641), + [aux_sym_def_type_statement_token1] = ACTIONS(8641), + [aux_sym_def_type_statement_token2] = ACTIONS(8641), + [aux_sym_def_type_statement_token3] = ACTIONS(8641), + [aux_sym_def_type_statement_token4] = ACTIONS(8641), + [aux_sym_def_type_statement_token5] = ACTIONS(8641), + [aux_sym_def_type_statement_token6] = ACTIONS(8641), + [aux_sym_def_type_statement_token7] = ACTIONS(8641), + [aux_sym_def_type_statement_token8] = ACTIONS(8641), + [aux_sym_def_type_statement_token9] = ACTIONS(8641), + [aux_sym_def_type_statement_token10] = ACTIONS(8641), + [aux_sym_def_type_statement_token11] = ACTIONS(8641), + [aux_sym_def_type_statement_token12] = ACTIONS(8641), + [aux_sym_def_type_statement_token13] = ACTIONS(8641), + [aux_sym_def_type_statement_token14] = ACTIONS(8641), + [aux_sym_call_statement_token1] = ACTIONS(8641), + [sym__ambiguous_call_statement] = ACTIONS(8641), + [aux_sym_addressof_expression_token1] = ACTIONS(8641), + [aux_sym_type_of_expression_token1] = ACTIONS(8641), + [aux_sym_unary_expression_token1] = ACTIONS(8641), + [sym_string_literal] = ACTIONS(8643), + [sym_number_literal] = ACTIONS(8643), + [aux_sym_boolean_literal_token1] = ACTIONS(8641), + [aux_sym_boolean_literal_token2] = ACTIONS(8641), + [sym_nothing_literal] = ACTIONS(8641), + [sym_null_literal] = ACTIONS(8641), + [sym_empty_literal] = ACTIONS(8641), + [sym_date_literal] = ACTIONS(8643), + [anon_sym_POUND] = ACTIONS(8641), + }, + [STATE(4291)] = { + [sym_identifier] = ACTIONS(6117), + [sym_newline] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6117), + [aux_sym_frm_property_statement_token1] = ACTIONS(6117), + [anon_sym_DOT] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6119), + [aux_sym__attribute_identifier_token1] = ACTIONS(6117), + [aux_sym_option_statement_token3] = ACTIONS(6117), + [aux_sym_type_declaration_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6117), + [aux_sym_enum_declaration_token1] = ACTIONS(6117), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6117), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6117), + [aux_sym_declare_function_statement_token1] = ACTIONS(6117), + [aux_sym_preprocessor_const_token1] = ACTIONS(6117), + [aux_sym__property_get_header_token1] = ACTIONS(6117), + [aux_sym_event_declaration_token1] = ACTIONS(6117), + [sym_static_modifier] = ACTIONS(6117), + [sym__dim_keyword] = ACTIONS(6117), + [sym__redim_keyword] = ACTIONS(6117), + [aux_sym_get_accessor_token1] = ACTIONS(6117), + [aux_sym_set_accessor_token1] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6119), + [aux_sym_const_declaration_token1] = ACTIONS(6117), + [anon_sym_LPAREN] = ACTIONS(6119), + [aux_sym_as_type_clause_token2] = ACTIONS(6117), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6117), + [aux_sym_visibility_token1] = ACTIONS(6117), + [aux_sym_visibility_token2] = ACTIONS(6117), + [aux_sym_elseif_fragment_token1] = ACTIONS(6117), + [aux_sym_else_fragment_token1] = ACTIONS(6117), + [aux_sym_select_statement_token1] = ACTIONS(6117), + [aux_sym__for_header_token1] = ACTIONS(6117), + [aux_sym_do_statement_token1] = ACTIONS(6117), + [aux_sym_do_condition_token1] = ACTIONS(6117), + [aux_sym_with_statement_token1] = ACTIONS(6117), + [aux_sym_exit_statement_token1] = ACTIONS(6117), + [sym_end_statement] = ACTIONS(6119), + [aux_sym_on_goto_statement_token1] = ACTIONS(6117), + [aux_sym_on_goto_statement_token2] = ACTIONS(6117), + [aux_sym_on_error_statement_token2] = ACTIONS(6117), + [sym__ambiguous_redim_statement] = ACTIONS(6119), + [aux_sym_erase_statement_token1] = ACTIONS(6117), + [aux_sym_open_statement_token1] = ACTIONS(6117), + [aux_sym_file_mode_token2] = ACTIONS(6117), + [aux_sym_file_access_token2] = ACTIONS(6117), + [aux_sym_file_lock_token2] = ACTIONS(6117), + [aux_sym_print_statement_token1] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6117), + [anon_sym_QMARK] = ACTIONS(6119), + [aux_sym_close_statement_token1] = ACTIONS(6117), + [aux_sym_put_statement_token1] = ACTIONS(6117), + [aux_sym_unlock_statement_token1] = ACTIONS(6117), + [aux_sym_seek_statement_token1] = ACTIONS(6117), + [sym_reset_statement] = ACTIONS(6117), + [aux_sym_raise_event_statement_token1] = ACTIONS(6117), + [sym_stop_statement] = ACTIONS(6117), + [sym_beep_statement] = ACTIONS(6117), + [aux_sym_unload_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token2] = ACTIONS(6117), + [aux_sym_def_type_statement_token3] = ACTIONS(6117), + [aux_sym_def_type_statement_token4] = ACTIONS(6117), + [aux_sym_def_type_statement_token5] = ACTIONS(6117), + [aux_sym_def_type_statement_token6] = ACTIONS(6117), + [aux_sym_def_type_statement_token7] = ACTIONS(6117), + [aux_sym_def_type_statement_token8] = ACTIONS(6117), + [aux_sym_def_type_statement_token9] = ACTIONS(6117), + [aux_sym_def_type_statement_token10] = ACTIONS(6117), + [aux_sym_def_type_statement_token11] = ACTIONS(6117), + [aux_sym_def_type_statement_token12] = ACTIONS(6117), + [aux_sym_def_type_statement_token13] = ACTIONS(6117), + [aux_sym_def_type_statement_token14] = ACTIONS(6117), + [aux_sym_call_statement_token1] = ACTIONS(6117), + [sym__ambiguous_call_statement] = ACTIONS(6117), + [aux_sym_addressof_expression_token1] = ACTIONS(6117), + [aux_sym_type_of_expression_token1] = ACTIONS(6117), + [aux_sym_unary_expression_token1] = ACTIONS(6117), + [sym_string_literal] = ACTIONS(6119), + [sym_number_literal] = ACTIONS(6119), + [aux_sym_boolean_literal_token1] = ACTIONS(6117), + [aux_sym_boolean_literal_token2] = ACTIONS(6117), + [sym_nothing_literal] = ACTIONS(6117), + [sym_null_literal] = ACTIONS(6117), + [sym_empty_literal] = ACTIONS(6117), + [sym_date_literal] = ACTIONS(6119), + [anon_sym_POUND] = ACTIONS(6117), + }, + [STATE(4292)] = { + [sym_identifier] = ACTIONS(8776), + [sym_newline] = ACTIONS(8778), + [anon_sym_COLON] = ACTIONS(8778), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8776), + [aux_sym_frm_property_statement_token1] = ACTIONS(8776), + [anon_sym_DOT] = ACTIONS(8776), + [anon_sym_BANG] = ACTIONS(8778), + [aux_sym__attribute_identifier_token1] = ACTIONS(8776), + [aux_sym_option_statement_token3] = ACTIONS(8776), + [aux_sym_type_declaration_token1] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8776), + [aux_sym_enum_declaration_token1] = ACTIONS(8776), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8776), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8776), + [aux_sym_declare_function_statement_token1] = ACTIONS(8776), + [aux_sym_preprocessor_const_token1] = ACTIONS(8776), + [aux_sym__property_get_header_token1] = ACTIONS(8776), + [aux_sym_event_declaration_token1] = ACTIONS(8776), + [sym_static_modifier] = ACTIONS(8776), + [sym__dim_keyword] = ACTIONS(8776), + [sym__redim_keyword] = ACTIONS(8776), + [aux_sym_get_accessor_token1] = ACTIONS(8776), + [aux_sym_set_accessor_token1] = ACTIONS(8776), + [anon_sym_COMMA] = ACTIONS(8778), + [aux_sym_const_declaration_token1] = ACTIONS(8776), + [anon_sym_LPAREN] = ACTIONS(8778), + [aux_sym_as_type_clause_token2] = ACTIONS(8776), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8776), + [aux_sym_visibility_token1] = ACTIONS(8776), + [aux_sym_visibility_token2] = ACTIONS(8776), + [aux_sym_elseif_fragment_token1] = ACTIONS(8776), + [aux_sym_else_fragment_token1] = ACTIONS(8776), + [aux_sym_select_statement_token1] = ACTIONS(8776), + [aux_sym__for_header_token1] = ACTIONS(8776), + [aux_sym_do_statement_token1] = ACTIONS(8776), + [aux_sym_do_condition_token1] = ACTIONS(8776), + [aux_sym_with_statement_token1] = ACTIONS(8776), + [aux_sym_exit_statement_token1] = ACTIONS(8776), + [sym_end_statement] = ACTIONS(8778), + [aux_sym_on_goto_statement_token1] = ACTIONS(8776), + [aux_sym_on_goto_statement_token2] = ACTIONS(8776), + [aux_sym_on_error_statement_token2] = ACTIONS(8776), + [sym__ambiguous_redim_statement] = ACTIONS(8778), + [aux_sym_erase_statement_token1] = ACTIONS(8776), + [aux_sym_open_statement_token1] = ACTIONS(8776), + [aux_sym_file_mode_token2] = ACTIONS(8776), + [aux_sym_file_access_token2] = ACTIONS(8776), + [aux_sym_file_lock_token2] = ACTIONS(8776), + [aux_sym_print_statement_token1] = ACTIONS(8776), + [anon_sym_PLUS] = ACTIONS(8778), + [anon_sym_DASH] = ACTIONS(8776), + [anon_sym_QMARK] = ACTIONS(8778), + [aux_sym_close_statement_token1] = ACTIONS(8776), + [aux_sym_put_statement_token1] = ACTIONS(8776), + [aux_sym_unlock_statement_token1] = ACTIONS(8776), + [aux_sym_seek_statement_token1] = ACTIONS(8776), + [sym_reset_statement] = ACTIONS(8776), + [aux_sym_raise_event_statement_token1] = ACTIONS(8776), + [sym_stop_statement] = ACTIONS(8776), + [sym_beep_statement] = ACTIONS(8776), + [aux_sym_unload_statement_token1] = ACTIONS(8776), + [aux_sym_def_type_statement_token1] = ACTIONS(8776), + [aux_sym_def_type_statement_token2] = ACTIONS(8776), + [aux_sym_def_type_statement_token3] = ACTIONS(8776), + [aux_sym_def_type_statement_token4] = ACTIONS(8776), + [aux_sym_def_type_statement_token5] = ACTIONS(8776), + [aux_sym_def_type_statement_token6] = ACTIONS(8776), + [aux_sym_def_type_statement_token7] = ACTIONS(8776), + [aux_sym_def_type_statement_token8] = ACTIONS(8776), + [aux_sym_def_type_statement_token9] = ACTIONS(8776), + [aux_sym_def_type_statement_token10] = ACTIONS(8776), + [aux_sym_def_type_statement_token11] = ACTIONS(8776), + [aux_sym_def_type_statement_token12] = ACTIONS(8776), + [aux_sym_def_type_statement_token13] = ACTIONS(8776), + [aux_sym_def_type_statement_token14] = ACTIONS(8776), + [aux_sym_call_statement_token1] = ACTIONS(8776), + [sym__ambiguous_call_statement] = ACTIONS(8776), + [aux_sym_addressof_expression_token1] = ACTIONS(8776), + [aux_sym_type_of_expression_token1] = ACTIONS(8776), + [aux_sym_unary_expression_token1] = ACTIONS(8776), + [sym_string_literal] = ACTIONS(8778), + [sym_number_literal] = ACTIONS(8778), + [aux_sym_boolean_literal_token1] = ACTIONS(8776), + [aux_sym_boolean_literal_token2] = ACTIONS(8776), + [sym_nothing_literal] = ACTIONS(8776), + [sym_null_literal] = ACTIONS(8776), + [sym_empty_literal] = ACTIONS(8776), + [sym_date_literal] = ACTIONS(8778), + [anon_sym_POUND] = ACTIONS(8776), + }, + [STATE(4293)] = { + [sym_identifier] = ACTIONS(8801), + [sym_newline] = ACTIONS(8803), + [anon_sym_COLON] = ACTIONS(8803), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8801), + [aux_sym_frm_property_statement_token1] = ACTIONS(8801), + [anon_sym_DOT] = ACTIONS(8801), + [anon_sym_BANG] = ACTIONS(8803), + [aux_sym__attribute_identifier_token1] = ACTIONS(8801), + [aux_sym_option_statement_token3] = ACTIONS(8801), + [aux_sym_type_declaration_token1] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8801), + [aux_sym_enum_declaration_token1] = ACTIONS(8801), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8801), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8801), + [aux_sym_declare_function_statement_token1] = ACTIONS(8801), + [aux_sym_preprocessor_const_token1] = ACTIONS(8801), + [aux_sym__property_get_header_token1] = ACTIONS(8801), + [aux_sym_event_declaration_token1] = ACTIONS(8801), + [sym_static_modifier] = ACTIONS(8801), + [sym__dim_keyword] = ACTIONS(8801), + [sym__redim_keyword] = ACTIONS(8801), + [aux_sym_get_accessor_token1] = ACTIONS(8801), + [aux_sym_set_accessor_token1] = ACTIONS(8801), + [anon_sym_COMMA] = ACTIONS(8803), + [aux_sym_const_declaration_token1] = ACTIONS(8801), + [anon_sym_LPAREN] = ACTIONS(8803), + [aux_sym_as_type_clause_token2] = ACTIONS(8801), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8801), + [aux_sym_visibility_token1] = ACTIONS(8801), + [aux_sym_visibility_token2] = ACTIONS(8801), + [aux_sym_elseif_fragment_token1] = ACTIONS(8801), + [aux_sym_else_fragment_token1] = ACTIONS(8801), + [aux_sym_select_statement_token1] = ACTIONS(8801), + [aux_sym__for_header_token1] = ACTIONS(8801), + [aux_sym_do_statement_token1] = ACTIONS(8801), + [aux_sym_do_condition_token1] = ACTIONS(8801), + [aux_sym_with_statement_token1] = ACTIONS(8801), + [aux_sym_exit_statement_token1] = ACTIONS(8801), + [sym_end_statement] = ACTIONS(8803), + [aux_sym_on_goto_statement_token1] = ACTIONS(8801), + [aux_sym_on_goto_statement_token2] = ACTIONS(8801), + [aux_sym_on_error_statement_token2] = ACTIONS(8801), + [sym__ambiguous_redim_statement] = ACTIONS(8803), + [aux_sym_erase_statement_token1] = ACTIONS(8801), + [aux_sym_open_statement_token1] = ACTIONS(8801), + [aux_sym_file_mode_token2] = ACTIONS(8801), + [aux_sym_file_access_token2] = ACTIONS(8801), + [aux_sym_file_lock_token2] = ACTIONS(8801), + [aux_sym_print_statement_token1] = ACTIONS(8801), + [anon_sym_PLUS] = ACTIONS(8803), + [anon_sym_DASH] = ACTIONS(8801), + [anon_sym_QMARK] = ACTIONS(8803), + [aux_sym_close_statement_token1] = ACTIONS(8801), + [aux_sym_put_statement_token1] = ACTIONS(8801), + [aux_sym_unlock_statement_token1] = ACTIONS(8801), + [aux_sym_seek_statement_token1] = ACTIONS(8801), + [sym_reset_statement] = ACTIONS(8801), + [aux_sym_raise_event_statement_token1] = ACTIONS(8801), + [sym_stop_statement] = ACTIONS(8801), + [sym_beep_statement] = ACTIONS(8801), + [aux_sym_unload_statement_token1] = ACTIONS(8801), + [aux_sym_def_type_statement_token1] = ACTIONS(8801), + [aux_sym_def_type_statement_token2] = ACTIONS(8801), + [aux_sym_def_type_statement_token3] = ACTIONS(8801), + [aux_sym_def_type_statement_token4] = ACTIONS(8801), + [aux_sym_def_type_statement_token5] = ACTIONS(8801), + [aux_sym_def_type_statement_token6] = ACTIONS(8801), + [aux_sym_def_type_statement_token7] = ACTIONS(8801), + [aux_sym_def_type_statement_token8] = ACTIONS(8801), + [aux_sym_def_type_statement_token9] = ACTIONS(8801), + [aux_sym_def_type_statement_token10] = ACTIONS(8801), + [aux_sym_def_type_statement_token11] = ACTIONS(8801), + [aux_sym_def_type_statement_token12] = ACTIONS(8801), + [aux_sym_def_type_statement_token13] = ACTIONS(8801), + [aux_sym_def_type_statement_token14] = ACTIONS(8801), + [aux_sym_call_statement_token1] = ACTIONS(8801), + [sym__ambiguous_call_statement] = ACTIONS(8801), + [aux_sym_addressof_expression_token1] = ACTIONS(8801), + [aux_sym_type_of_expression_token1] = ACTIONS(8801), + [aux_sym_unary_expression_token1] = ACTIONS(8801), + [sym_string_literal] = ACTIONS(8803), + [sym_number_literal] = ACTIONS(8803), + [aux_sym_boolean_literal_token1] = ACTIONS(8801), + [aux_sym_boolean_literal_token2] = ACTIONS(8801), + [sym_nothing_literal] = ACTIONS(8801), + [sym_null_literal] = ACTIONS(8801), + [sym_empty_literal] = ACTIONS(8801), + [sym_date_literal] = ACTIONS(8803), + [anon_sym_POUND] = ACTIONS(8801), + }, + [STATE(4294)] = { + [sym_identifier] = ACTIONS(8287), + [sym_newline] = ACTIONS(8289), + [anon_sym_COLON] = ACTIONS(8289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8287), + [aux_sym_frm_property_statement_token1] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8287), + [anon_sym_BANG] = ACTIONS(8289), + [aux_sym__attribute_identifier_token1] = ACTIONS(8287), + [aux_sym_option_statement_token3] = ACTIONS(8287), + [aux_sym_type_declaration_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8287), + [aux_sym_enum_declaration_token1] = ACTIONS(8287), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8287), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8287), + [aux_sym_declare_function_statement_token1] = ACTIONS(8287), + [aux_sym_preprocessor_const_token1] = ACTIONS(8287), + [aux_sym__property_get_header_token1] = ACTIONS(8287), + [aux_sym_event_declaration_token1] = ACTIONS(8287), + [sym_static_modifier] = ACTIONS(8287), + [sym__dim_keyword] = ACTIONS(8287), + [sym__redim_keyword] = ACTIONS(8287), + [aux_sym_get_accessor_token1] = ACTIONS(8287), + [aux_sym_set_accessor_token1] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8289), + [aux_sym_const_declaration_token1] = ACTIONS(8287), + [anon_sym_LPAREN] = ACTIONS(8289), + [aux_sym_as_type_clause_token2] = ACTIONS(8287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8287), + [aux_sym_visibility_token1] = ACTIONS(8287), + [aux_sym_visibility_token2] = ACTIONS(8287), + [aux_sym_elseif_fragment_token1] = ACTIONS(8287), + [aux_sym_else_fragment_token1] = ACTIONS(8287), + [aux_sym_select_statement_token1] = ACTIONS(8287), + [aux_sym__for_header_token1] = ACTIONS(8287), + [aux_sym_do_statement_token1] = ACTIONS(8287), + [aux_sym_do_condition_token1] = ACTIONS(8287), + [aux_sym_with_statement_token1] = ACTIONS(8287), + [aux_sym_exit_statement_token1] = ACTIONS(8287), + [sym_end_statement] = ACTIONS(8289), + [aux_sym_on_goto_statement_token1] = ACTIONS(8287), + [aux_sym_on_goto_statement_token2] = ACTIONS(8287), + [aux_sym_on_error_statement_token2] = ACTIONS(8287), + [sym__ambiguous_redim_statement] = ACTIONS(8289), + [aux_sym_erase_statement_token1] = ACTIONS(8287), + [aux_sym_open_statement_token1] = ACTIONS(8287), + [aux_sym_file_mode_token2] = ACTIONS(8287), + [aux_sym_file_access_token2] = ACTIONS(8287), + [aux_sym_file_lock_token2] = ACTIONS(8287), + [aux_sym_print_statement_token1] = ACTIONS(8287), + [anon_sym_PLUS] = ACTIONS(8289), + [anon_sym_DASH] = ACTIONS(8287), + [anon_sym_QMARK] = ACTIONS(8289), + [aux_sym_close_statement_token1] = ACTIONS(8287), + [aux_sym_put_statement_token1] = ACTIONS(8287), + [aux_sym_unlock_statement_token1] = ACTIONS(8287), + [aux_sym_seek_statement_token1] = ACTIONS(8287), + [sym_reset_statement] = ACTIONS(8287), + [aux_sym_raise_event_statement_token1] = ACTIONS(8287), + [sym_stop_statement] = ACTIONS(8287), + [sym_beep_statement] = ACTIONS(8287), + [aux_sym_unload_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token2] = ACTIONS(8287), + [aux_sym_def_type_statement_token3] = ACTIONS(8287), + [aux_sym_def_type_statement_token4] = ACTIONS(8287), + [aux_sym_def_type_statement_token5] = ACTIONS(8287), + [aux_sym_def_type_statement_token6] = ACTIONS(8287), + [aux_sym_def_type_statement_token7] = ACTIONS(8287), + [aux_sym_def_type_statement_token8] = ACTIONS(8287), + [aux_sym_def_type_statement_token9] = ACTIONS(8287), + [aux_sym_def_type_statement_token10] = ACTIONS(8287), + [aux_sym_def_type_statement_token11] = ACTIONS(8287), + [aux_sym_def_type_statement_token12] = ACTIONS(8287), + [aux_sym_def_type_statement_token13] = ACTIONS(8287), + [aux_sym_def_type_statement_token14] = ACTIONS(8287), + [aux_sym_call_statement_token1] = ACTIONS(8287), + [sym__ambiguous_call_statement] = ACTIONS(8287), + [aux_sym_addressof_expression_token1] = ACTIONS(8287), + [aux_sym_type_of_expression_token1] = ACTIONS(8287), + [aux_sym_unary_expression_token1] = ACTIONS(8287), + [sym_string_literal] = ACTIONS(8289), + [sym_number_literal] = ACTIONS(8289), + [aux_sym_boolean_literal_token1] = ACTIONS(8287), + [aux_sym_boolean_literal_token2] = ACTIONS(8287), + [sym_nothing_literal] = ACTIONS(8287), + [sym_null_literal] = ACTIONS(8287), + [sym_empty_literal] = ACTIONS(8287), + [sym_date_literal] = ACTIONS(8289), + [anon_sym_POUND] = ACTIONS(8287), + }, + [STATE(4295)] = { + [sym_identifier] = ACTIONS(8443), + [sym_newline] = ACTIONS(8445), + [anon_sym_COLON] = ACTIONS(8445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8443), + [aux_sym_frm_property_statement_token1] = ACTIONS(8443), + [anon_sym_DOT] = ACTIONS(8443), + [anon_sym_BANG] = ACTIONS(8445), + [aux_sym__attribute_identifier_token1] = ACTIONS(8443), + [aux_sym_option_statement_token3] = ACTIONS(8443), + [aux_sym_type_declaration_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8443), + [aux_sym_enum_declaration_token1] = ACTIONS(8443), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8443), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8443), + [aux_sym_declare_function_statement_token1] = ACTIONS(8443), + [aux_sym_preprocessor_const_token1] = ACTIONS(8443), + [aux_sym__property_get_header_token1] = ACTIONS(8443), + [aux_sym_event_declaration_token1] = ACTIONS(8443), + [sym_static_modifier] = ACTIONS(8443), + [sym__dim_keyword] = ACTIONS(8443), + [sym__redim_keyword] = ACTIONS(8443), + [aux_sym_get_accessor_token1] = ACTIONS(8443), + [aux_sym_set_accessor_token1] = ACTIONS(8443), + [anon_sym_COMMA] = ACTIONS(8445), + [aux_sym_const_declaration_token1] = ACTIONS(8443), + [anon_sym_LPAREN] = ACTIONS(8445), + [aux_sym_as_type_clause_token2] = ACTIONS(8443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8443), + [aux_sym_visibility_token1] = ACTIONS(8443), + [aux_sym_visibility_token2] = ACTIONS(8443), + [aux_sym_elseif_fragment_token1] = ACTIONS(8443), + [aux_sym_else_fragment_token1] = ACTIONS(8443), + [aux_sym_select_statement_token1] = ACTIONS(8443), + [aux_sym__for_header_token1] = ACTIONS(8443), + [aux_sym_do_statement_token1] = ACTIONS(8443), + [aux_sym_do_condition_token1] = ACTIONS(8443), + [aux_sym_with_statement_token1] = ACTIONS(8443), + [aux_sym_exit_statement_token1] = ACTIONS(8443), + [sym_end_statement] = ACTIONS(8445), + [aux_sym_on_goto_statement_token1] = ACTIONS(8443), + [aux_sym_on_goto_statement_token2] = ACTIONS(8443), + [aux_sym_on_error_statement_token2] = ACTIONS(8443), + [sym__ambiguous_redim_statement] = ACTIONS(8445), + [aux_sym_erase_statement_token1] = ACTIONS(8443), + [aux_sym_open_statement_token1] = ACTIONS(8443), + [aux_sym_file_mode_token2] = ACTIONS(8443), + [aux_sym_file_access_token2] = ACTIONS(8443), + [aux_sym_file_lock_token2] = ACTIONS(8443), + [aux_sym_print_statement_token1] = ACTIONS(8443), + [anon_sym_PLUS] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8443), + [anon_sym_QMARK] = ACTIONS(8445), + [aux_sym_close_statement_token1] = ACTIONS(8443), + [aux_sym_put_statement_token1] = ACTIONS(8443), + [aux_sym_unlock_statement_token1] = ACTIONS(8443), + [aux_sym_seek_statement_token1] = ACTIONS(8443), + [sym_reset_statement] = ACTIONS(8443), + [aux_sym_raise_event_statement_token1] = ACTIONS(8443), + [sym_stop_statement] = ACTIONS(8443), + [sym_beep_statement] = ACTIONS(8443), + [aux_sym_unload_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token2] = ACTIONS(8443), + [aux_sym_def_type_statement_token3] = ACTIONS(8443), + [aux_sym_def_type_statement_token4] = ACTIONS(8443), + [aux_sym_def_type_statement_token5] = ACTIONS(8443), + [aux_sym_def_type_statement_token6] = ACTIONS(8443), + [aux_sym_def_type_statement_token7] = ACTIONS(8443), + [aux_sym_def_type_statement_token8] = ACTIONS(8443), + [aux_sym_def_type_statement_token9] = ACTIONS(8443), + [aux_sym_def_type_statement_token10] = ACTIONS(8443), + [aux_sym_def_type_statement_token11] = ACTIONS(8443), + [aux_sym_def_type_statement_token12] = ACTIONS(8443), + [aux_sym_def_type_statement_token13] = ACTIONS(8443), + [aux_sym_def_type_statement_token14] = ACTIONS(8443), + [aux_sym_call_statement_token1] = ACTIONS(8443), + [sym__ambiguous_call_statement] = ACTIONS(8443), + [aux_sym_addressof_expression_token1] = ACTIONS(8443), + [aux_sym_type_of_expression_token1] = ACTIONS(8443), + [aux_sym_unary_expression_token1] = ACTIONS(8443), + [sym_string_literal] = ACTIONS(8445), + [sym_number_literal] = ACTIONS(8445), + [aux_sym_boolean_literal_token1] = ACTIONS(8443), + [aux_sym_boolean_literal_token2] = ACTIONS(8443), + [sym_nothing_literal] = ACTIONS(8443), + [sym_null_literal] = ACTIONS(8443), + [sym_empty_literal] = ACTIONS(8443), + [sym_date_literal] = ACTIONS(8445), + [anon_sym_POUND] = ACTIONS(8443), + }, + [STATE(4296)] = { + [sym_identifier] = ACTIONS(8672), + [sym_newline] = ACTIONS(8674), + [anon_sym_COLON] = ACTIONS(8674), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8672), + [aux_sym_frm_property_statement_token1] = ACTIONS(8672), + [anon_sym_DOT] = ACTIONS(8672), + [anon_sym_BANG] = ACTIONS(8674), + [aux_sym__attribute_identifier_token1] = ACTIONS(8672), + [aux_sym_option_statement_token3] = ACTIONS(8672), + [aux_sym_type_declaration_token1] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8672), + [aux_sym_enum_declaration_token1] = ACTIONS(8672), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8672), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8672), + [aux_sym_declare_function_statement_token1] = ACTIONS(8672), + [aux_sym_preprocessor_const_token1] = ACTIONS(8672), + [aux_sym__property_get_header_token1] = ACTIONS(8672), + [aux_sym_event_declaration_token1] = ACTIONS(8672), + [sym_static_modifier] = ACTIONS(8672), + [sym__dim_keyword] = ACTIONS(8672), + [sym__redim_keyword] = ACTIONS(8672), + [aux_sym_get_accessor_token1] = ACTIONS(8672), + [aux_sym_set_accessor_token1] = ACTIONS(8672), + [anon_sym_COMMA] = ACTIONS(8674), + [aux_sym_const_declaration_token1] = ACTIONS(8672), + [anon_sym_LPAREN] = ACTIONS(8674), + [aux_sym_as_type_clause_token2] = ACTIONS(8672), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8672), + [aux_sym_visibility_token1] = ACTIONS(8672), + [aux_sym_visibility_token2] = ACTIONS(8672), + [aux_sym_elseif_fragment_token1] = ACTIONS(8672), + [aux_sym_else_fragment_token1] = ACTIONS(8672), + [aux_sym_select_statement_token1] = ACTIONS(8672), + [aux_sym__for_header_token1] = ACTIONS(8672), + [aux_sym_do_statement_token1] = ACTIONS(8672), + [aux_sym_do_condition_token1] = ACTIONS(8672), + [aux_sym_with_statement_token1] = ACTIONS(8672), + [aux_sym_exit_statement_token1] = ACTIONS(8672), + [sym_end_statement] = ACTIONS(8674), + [aux_sym_on_goto_statement_token1] = ACTIONS(8672), + [aux_sym_on_goto_statement_token2] = ACTIONS(8672), + [aux_sym_on_error_statement_token2] = ACTIONS(8672), + [sym__ambiguous_redim_statement] = ACTIONS(8674), + [aux_sym_erase_statement_token1] = ACTIONS(8672), + [aux_sym_open_statement_token1] = ACTIONS(8672), + [aux_sym_file_mode_token2] = ACTIONS(8672), + [aux_sym_file_access_token2] = ACTIONS(8672), + [aux_sym_file_lock_token2] = ACTIONS(8672), + [aux_sym_print_statement_token1] = ACTIONS(8672), + [anon_sym_PLUS] = ACTIONS(8674), + [anon_sym_DASH] = ACTIONS(8672), + [anon_sym_QMARK] = ACTIONS(8674), + [aux_sym_close_statement_token1] = ACTIONS(8672), + [aux_sym_put_statement_token1] = ACTIONS(8672), + [aux_sym_unlock_statement_token1] = ACTIONS(8672), + [aux_sym_seek_statement_token1] = ACTIONS(8672), + [sym_reset_statement] = ACTIONS(8672), + [aux_sym_raise_event_statement_token1] = ACTIONS(8672), + [sym_stop_statement] = ACTIONS(8672), + [sym_beep_statement] = ACTIONS(8672), + [aux_sym_unload_statement_token1] = ACTIONS(8672), + [aux_sym_def_type_statement_token1] = ACTIONS(8672), + [aux_sym_def_type_statement_token2] = ACTIONS(8672), + [aux_sym_def_type_statement_token3] = ACTIONS(8672), + [aux_sym_def_type_statement_token4] = ACTIONS(8672), + [aux_sym_def_type_statement_token5] = ACTIONS(8672), + [aux_sym_def_type_statement_token6] = ACTIONS(8672), + [aux_sym_def_type_statement_token7] = ACTIONS(8672), + [aux_sym_def_type_statement_token8] = ACTIONS(8672), + [aux_sym_def_type_statement_token9] = ACTIONS(8672), + [aux_sym_def_type_statement_token10] = ACTIONS(8672), + [aux_sym_def_type_statement_token11] = ACTIONS(8672), + [aux_sym_def_type_statement_token12] = ACTIONS(8672), + [aux_sym_def_type_statement_token13] = ACTIONS(8672), + [aux_sym_def_type_statement_token14] = ACTIONS(8672), + [aux_sym_call_statement_token1] = ACTIONS(8672), + [sym__ambiguous_call_statement] = ACTIONS(8672), + [aux_sym_addressof_expression_token1] = ACTIONS(8672), + [aux_sym_type_of_expression_token1] = ACTIONS(8672), + [aux_sym_unary_expression_token1] = ACTIONS(8672), + [sym_string_literal] = ACTIONS(8674), + [sym_number_literal] = ACTIONS(8674), + [aux_sym_boolean_literal_token1] = ACTIONS(8672), + [aux_sym_boolean_literal_token2] = ACTIONS(8672), + [sym_nothing_literal] = ACTIONS(8672), + [sym_null_literal] = ACTIONS(8672), + [sym_empty_literal] = ACTIONS(8672), + [sym_date_literal] = ACTIONS(8674), + [anon_sym_POUND] = ACTIONS(8672), + }, + [STATE(4297)] = { + [sym_identifier] = ACTIONS(8350), + [sym_newline] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8350), + [aux_sym_frm_property_statement_token1] = ACTIONS(8350), + [anon_sym_DOT] = ACTIONS(8350), + [anon_sym_BANG] = ACTIONS(8352), + [aux_sym__attribute_identifier_token1] = ACTIONS(8350), + [aux_sym_option_statement_token3] = ACTIONS(8350), + [aux_sym_type_declaration_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8350), + [aux_sym_enum_declaration_token1] = ACTIONS(8350), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8350), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8350), + [aux_sym_declare_function_statement_token1] = ACTIONS(8350), + [aux_sym_preprocessor_const_token1] = ACTIONS(8350), + [aux_sym__property_get_header_token1] = ACTIONS(8350), + [aux_sym_event_declaration_token1] = ACTIONS(8350), + [sym_static_modifier] = ACTIONS(8350), + [sym__dim_keyword] = ACTIONS(8350), + [sym__redim_keyword] = ACTIONS(8350), + [aux_sym_get_accessor_token1] = ACTIONS(8350), + [aux_sym_set_accessor_token1] = ACTIONS(8350), + [anon_sym_COMMA] = ACTIONS(8352), + [aux_sym_const_declaration_token1] = ACTIONS(8350), + [anon_sym_LPAREN] = ACTIONS(8352), + [aux_sym_as_type_clause_token2] = ACTIONS(8350), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8350), + [aux_sym_visibility_token1] = ACTIONS(8350), + [aux_sym_visibility_token2] = ACTIONS(8350), + [aux_sym_elseif_fragment_token1] = ACTIONS(8350), + [aux_sym_else_fragment_token1] = ACTIONS(8350), + [aux_sym_select_statement_token1] = ACTIONS(8350), + [aux_sym__for_header_token1] = ACTIONS(8350), + [aux_sym_do_statement_token1] = ACTIONS(8350), + [aux_sym_do_condition_token1] = ACTIONS(8350), + [aux_sym_with_statement_token1] = ACTIONS(8350), + [aux_sym_exit_statement_token1] = ACTIONS(8350), + [sym_end_statement] = ACTIONS(8352), + [aux_sym_on_goto_statement_token1] = ACTIONS(8350), + [aux_sym_on_goto_statement_token2] = ACTIONS(8350), + [aux_sym_on_error_statement_token2] = ACTIONS(8350), + [sym__ambiguous_redim_statement] = ACTIONS(8352), + [aux_sym_erase_statement_token1] = ACTIONS(8350), + [aux_sym_open_statement_token1] = ACTIONS(8350), + [aux_sym_file_mode_token2] = ACTIONS(8350), + [aux_sym_file_access_token2] = ACTIONS(8350), + [aux_sym_file_lock_token2] = ACTIONS(8350), + [aux_sym_print_statement_token1] = ACTIONS(8350), + [anon_sym_PLUS] = ACTIONS(8352), + [anon_sym_DASH] = ACTIONS(8350), + [anon_sym_QMARK] = ACTIONS(8352), + [aux_sym_close_statement_token1] = ACTIONS(8350), + [aux_sym_put_statement_token1] = ACTIONS(8350), + [aux_sym_unlock_statement_token1] = ACTIONS(8350), + [aux_sym_seek_statement_token1] = ACTIONS(8350), + [sym_reset_statement] = ACTIONS(8350), + [aux_sym_raise_event_statement_token1] = ACTIONS(8350), + [sym_stop_statement] = ACTIONS(8350), + [sym_beep_statement] = ACTIONS(8350), + [aux_sym_unload_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token2] = ACTIONS(8350), + [aux_sym_def_type_statement_token3] = ACTIONS(8350), + [aux_sym_def_type_statement_token4] = ACTIONS(8350), + [aux_sym_def_type_statement_token5] = ACTIONS(8350), + [aux_sym_def_type_statement_token6] = ACTIONS(8350), + [aux_sym_def_type_statement_token7] = ACTIONS(8350), + [aux_sym_def_type_statement_token8] = ACTIONS(8350), + [aux_sym_def_type_statement_token9] = ACTIONS(8350), + [aux_sym_def_type_statement_token10] = ACTIONS(8350), + [aux_sym_def_type_statement_token11] = ACTIONS(8350), + [aux_sym_def_type_statement_token12] = ACTIONS(8350), + [aux_sym_def_type_statement_token13] = ACTIONS(8350), + [aux_sym_def_type_statement_token14] = ACTIONS(8350), + [aux_sym_call_statement_token1] = ACTIONS(8350), + [sym__ambiguous_call_statement] = ACTIONS(8350), + [aux_sym_addressof_expression_token1] = ACTIONS(8350), + [aux_sym_type_of_expression_token1] = ACTIONS(8350), + [aux_sym_unary_expression_token1] = ACTIONS(8350), + [sym_string_literal] = ACTIONS(8352), + [sym_number_literal] = ACTIONS(8352), + [aux_sym_boolean_literal_token1] = ACTIONS(8350), + [aux_sym_boolean_literal_token2] = ACTIONS(8350), + [sym_nothing_literal] = ACTIONS(8350), + [sym_null_literal] = ACTIONS(8350), + [sym_empty_literal] = ACTIONS(8350), + [sym_date_literal] = ACTIONS(8352), + [anon_sym_POUND] = ACTIONS(8350), + }, + [STATE(4298)] = { + [sym_next_variable_list] = STATE(6250), + [sym__assignable_expression] = STATE(4956), + [sym__callable_expression] = STATE(4977), + [sym_call_expression] = STATE(4901), + [sym_member_expression] = STATE(5393), + [sym_qualified_member_expression] = STATE(5480), + [sym_implicit_member_expression] = STATE(5480), + [sym_identifier] = ACTIONS(9825), + [sym_newline] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6828), + [aux_sym_frm_property_statement_token1] = ACTIONS(9827), + [anon_sym_DOT] = ACTIONS(9829), + [anon_sym_BANG] = ACTIONS(9831), + [aux_sym__attribute_identifier_token1] = ACTIONS(6828), + [aux_sym_option_statement_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6828), + [aux_sym_preprocessor_const_token1] = ACTIONS(6828), + [sym_static_modifier] = ACTIONS(6828), + [sym__dim_keyword] = ACTIONS(6828), + [sym__redim_keyword] = ACTIONS(6828), + [aux_sym_get_accessor_token1] = ACTIONS(6828), + [aux_sym_set_accessor_token1] = ACTIONS(6828), + [aux_sym_const_declaration_token1] = ACTIONS(6828), + [anon_sym_LPAREN] = ACTIONS(6826), + [aux_sym_as_type_clause_token2] = ACTIONS(6828), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9833), + [aux_sym_visibility_token1] = ACTIONS(6828), + [aux_sym_visibility_token2] = ACTIONS(6828), + [aux_sym_elseif_fragment_token1] = ACTIONS(6828), + [aux_sym_else_fragment_token1] = ACTIONS(6828), + [aux_sym_select_statement_token1] = ACTIONS(6828), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6828), + [aux_sym__for_header_token1] = ACTIONS(6828), + [aux_sym_do_statement_token1] = ACTIONS(6828), + [aux_sym_do_condition_token1] = ACTIONS(6828), + [aux_sym_while_statement_token1] = ACTIONS(6828), + [aux_sym_with_statement_token1] = ACTIONS(6828), + [aux_sym_exit_statement_token1] = ACTIONS(6828), + [sym_end_statement] = ACTIONS(6826), + [aux_sym_on_goto_statement_token1] = ACTIONS(6828), + [aux_sym_on_goto_statement_token2] = ACTIONS(6828), + [aux_sym_on_error_statement_token2] = ACTIONS(6828), + [sym__ambiguous_redim_statement] = ACTIONS(6826), + [aux_sym_erase_statement_token1] = ACTIONS(6828), + [aux_sym_open_statement_token1] = ACTIONS(6828), + [aux_sym_file_mode_token2] = ACTIONS(6828), + [aux_sym_file_access_token2] = ACTIONS(6828), + [aux_sym_file_lock_token2] = ACTIONS(6828), + [aux_sym_print_statement_token1] = ACTIONS(6828), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_DASH] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6826), + [aux_sym_close_statement_token1] = ACTIONS(6828), + [aux_sym_put_statement_token1] = ACTIONS(6828), + [aux_sym_unlock_statement_token1] = ACTIONS(6828), + [aux_sym_seek_statement_token1] = ACTIONS(6828), + [sym_reset_statement] = ACTIONS(6828), + [aux_sym_raise_event_statement_token1] = ACTIONS(6828), + [sym_stop_statement] = ACTIONS(6828), + [sym_beep_statement] = ACTIONS(6828), + [aux_sym_unload_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token2] = ACTIONS(6828), + [aux_sym_def_type_statement_token3] = ACTIONS(6828), + [aux_sym_def_type_statement_token4] = ACTIONS(6828), + [aux_sym_def_type_statement_token5] = ACTIONS(6828), + [aux_sym_def_type_statement_token6] = ACTIONS(6828), + [aux_sym_def_type_statement_token7] = ACTIONS(6828), + [aux_sym_def_type_statement_token8] = ACTIONS(6828), + [aux_sym_def_type_statement_token9] = ACTIONS(6828), + [aux_sym_def_type_statement_token10] = ACTIONS(6828), + [aux_sym_def_type_statement_token11] = ACTIONS(6828), + [aux_sym_def_type_statement_token12] = ACTIONS(6828), + [aux_sym_def_type_statement_token13] = ACTIONS(6828), + [aux_sym_def_type_statement_token14] = ACTIONS(6828), + [aux_sym_call_statement_token1] = ACTIONS(6828), + [sym__ambiguous_call_statement] = ACTIONS(6828), + [aux_sym_addressof_expression_token1] = ACTIONS(6828), + [aux_sym_type_of_expression_token1] = ACTIONS(6828), + [aux_sym_unary_expression_token1] = ACTIONS(6828), + [sym_string_literal] = ACTIONS(6826), + [sym_number_literal] = ACTIONS(6826), + [aux_sym_boolean_literal_token1] = ACTIONS(6828), + [aux_sym_boolean_literal_token2] = ACTIONS(6828), + [sym_nothing_literal] = ACTIONS(6828), + [sym_null_literal] = ACTIONS(6828), + [sym_empty_literal] = ACTIONS(6828), + [sym_date_literal] = ACTIONS(6826), + [anon_sym_POUND] = ACTIONS(6828), + }, + [STATE(4299)] = { + [sym_identifier] = ACTIONS(5562), + [sym_newline] = ACTIONS(5558), + [anon_sym_COLON] = ACTIONS(5558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5562), + [aux_sym_frm_property_statement_token1] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(9798), + [anon_sym_BANG] = ACTIONS(9800), + [aux_sym__attribute_identifier_token1] = ACTIONS(5562), + [aux_sym_option_statement_token3] = ACTIONS(5562), + [aux_sym_type_declaration_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5562), + [aux_sym_enum_declaration_token1] = ACTIONS(5562), + [aux_sym_declare_sub_statement_token1] = ACTIONS(5562), + [aux_sym_declare_sub_statement_token2] = ACTIONS(5562), + [aux_sym_declare_function_statement_token1] = ACTIONS(5562), + [aux_sym_preprocessor_const_token1] = ACTIONS(5562), + [aux_sym__property_get_header_token1] = ACTIONS(5562), + [aux_sym_event_declaration_token1] = ACTIONS(5562), + [sym_static_modifier] = ACTIONS(5562), + [sym__dim_keyword] = ACTIONS(5562), + [sym__redim_keyword] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5562), + [aux_sym_set_accessor_token1] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5558), + [aux_sym_as_type_clause_token2] = ACTIONS(5562), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5562), + [aux_sym_visibility_token1] = ACTIONS(5562), + [aux_sym_visibility_token2] = ACTIONS(5562), + [aux_sym_elseif_fragment_token1] = ACTIONS(5562), + [aux_sym_else_fragment_token1] = ACTIONS(5562), + [aux_sym_select_statement_token1] = ACTIONS(5562), + [aux_sym__for_header_token1] = ACTIONS(5562), + [aux_sym_do_statement_token1] = ACTIONS(5562), + [aux_sym_do_condition_token1] = ACTIONS(5562), + [aux_sym_with_statement_token1] = ACTIONS(5562), + [aux_sym_exit_statement_token1] = ACTIONS(5562), + [sym_end_statement] = ACTIONS(5558), + [aux_sym_on_goto_statement_token1] = ACTIONS(5562), + [aux_sym_on_goto_statement_token2] = ACTIONS(5562), + [aux_sym_on_error_statement_token2] = ACTIONS(5562), + [sym__ambiguous_redim_statement] = ACTIONS(5558), + [aux_sym_erase_statement_token1] = ACTIONS(5562), + [aux_sym_open_statement_token1] = ACTIONS(5562), + [aux_sym_file_mode_token2] = ACTIONS(5562), + [aux_sym_file_access_token2] = ACTIONS(5562), + [aux_sym_file_lock_token2] = ACTIONS(5562), + [aux_sym_print_statement_token1] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5558), + [aux_sym_close_statement_token1] = ACTIONS(5562), + [aux_sym_put_statement_token1] = ACTIONS(5562), + [aux_sym_unlock_statement_token1] = ACTIONS(5562), + [aux_sym_seek_statement_token1] = ACTIONS(5562), + [sym_reset_statement] = ACTIONS(5562), + [aux_sym_raise_event_statement_token1] = ACTIONS(5562), + [sym_stop_statement] = ACTIONS(5562), + [sym_beep_statement] = ACTIONS(5562), + [aux_sym_unload_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token2] = ACTIONS(5562), + [aux_sym_def_type_statement_token3] = ACTIONS(5562), + [aux_sym_def_type_statement_token4] = ACTIONS(5562), + [aux_sym_def_type_statement_token5] = ACTIONS(5562), + [aux_sym_def_type_statement_token6] = ACTIONS(5562), + [aux_sym_def_type_statement_token7] = ACTIONS(5562), + [aux_sym_def_type_statement_token8] = ACTIONS(5562), + [aux_sym_def_type_statement_token9] = ACTIONS(5562), + [aux_sym_def_type_statement_token10] = ACTIONS(5562), + [aux_sym_def_type_statement_token11] = ACTIONS(5562), + [aux_sym_def_type_statement_token12] = ACTIONS(5562), + [aux_sym_def_type_statement_token13] = ACTIONS(5562), + [aux_sym_def_type_statement_token14] = ACTIONS(5562), + [aux_sym_call_statement_token1] = ACTIONS(5562), + [sym__ambiguous_call_statement] = ACTIONS(5562), + [aux_sym_addressof_expression_token1] = ACTIONS(5562), + [aux_sym_type_of_expression_token1] = ACTIONS(5562), + [aux_sym_unary_expression_token1] = ACTIONS(5562), + [sym_string_literal] = ACTIONS(5558), + [sym_number_literal] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5562), + [aux_sym_boolean_literal_token2] = ACTIONS(5562), + [sym_nothing_literal] = ACTIONS(5562), + [sym_null_literal] = ACTIONS(5562), + [sym_empty_literal] = ACTIONS(5562), + [sym_date_literal] = ACTIONS(5558), + [anon_sym_POUND] = ACTIONS(5562), + }, + [STATE(4300)] = { + [sym_next_variable_list] = STATE(6268), + [sym__assignable_expression] = STATE(4956), + [sym__callable_expression] = STATE(4977), + [sym_call_expression] = STATE(4901), + [sym_member_expression] = STATE(5393), + [sym_qualified_member_expression] = STATE(5480), + [sym_implicit_member_expression] = STATE(5480), + [sym_identifier] = ACTIONS(9825), + [sym_newline] = ACTIONS(6863), + [anon_sym_COLON] = ACTIONS(6863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6865), + [aux_sym_frm_property_statement_token1] = ACTIONS(9827), + [anon_sym_DOT] = ACTIONS(9829), + [anon_sym_BANG] = ACTIONS(9831), + [aux_sym__attribute_identifier_token1] = ACTIONS(6865), + [aux_sym_option_statement_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6865), + [aux_sym_preprocessor_const_token1] = ACTIONS(6865), + [sym_static_modifier] = ACTIONS(6865), + [sym__dim_keyword] = ACTIONS(6865), + [sym__redim_keyword] = ACTIONS(6865), + [aux_sym_get_accessor_token1] = ACTIONS(6865), + [aux_sym_set_accessor_token1] = ACTIONS(6865), + [aux_sym_const_declaration_token1] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6863), + [aux_sym_as_type_clause_token2] = ACTIONS(6865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9833), + [aux_sym_visibility_token1] = ACTIONS(6865), + [aux_sym_visibility_token2] = ACTIONS(6865), + [aux_sym_elseif_fragment_token1] = ACTIONS(6865), + [aux_sym_else_fragment_token1] = ACTIONS(6865), + [aux_sym_select_statement_token1] = ACTIONS(6865), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6865), + [aux_sym__for_header_token1] = ACTIONS(6865), + [aux_sym_do_statement_token1] = ACTIONS(6865), + [aux_sym_do_condition_token1] = ACTIONS(6865), + [aux_sym_while_statement_token1] = ACTIONS(6865), + [aux_sym_with_statement_token1] = ACTIONS(6865), + [aux_sym_exit_statement_token1] = ACTIONS(6865), + [sym_end_statement] = ACTIONS(6863), + [aux_sym_on_goto_statement_token1] = ACTIONS(6865), + [aux_sym_on_goto_statement_token2] = ACTIONS(6865), + [aux_sym_on_error_statement_token2] = ACTIONS(6865), + [sym__ambiguous_redim_statement] = ACTIONS(6863), + [aux_sym_erase_statement_token1] = ACTIONS(6865), + [aux_sym_open_statement_token1] = ACTIONS(6865), + [aux_sym_file_mode_token2] = ACTIONS(6865), + [aux_sym_file_access_token2] = ACTIONS(6865), + [aux_sym_file_lock_token2] = ACTIONS(6865), + [aux_sym_print_statement_token1] = ACTIONS(6865), + [anon_sym_PLUS] = ACTIONS(6863), + [anon_sym_DASH] = ACTIONS(6865), + [anon_sym_QMARK] = ACTIONS(6863), + [aux_sym_close_statement_token1] = ACTIONS(6865), + [aux_sym_put_statement_token1] = ACTIONS(6865), + [aux_sym_unlock_statement_token1] = ACTIONS(6865), + [aux_sym_seek_statement_token1] = ACTIONS(6865), + [sym_reset_statement] = ACTIONS(6865), + [aux_sym_raise_event_statement_token1] = ACTIONS(6865), + [sym_stop_statement] = ACTIONS(6865), + [sym_beep_statement] = ACTIONS(6865), + [aux_sym_unload_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token2] = ACTIONS(6865), + [aux_sym_def_type_statement_token3] = ACTIONS(6865), + [aux_sym_def_type_statement_token4] = ACTIONS(6865), + [aux_sym_def_type_statement_token5] = ACTIONS(6865), + [aux_sym_def_type_statement_token6] = ACTIONS(6865), + [aux_sym_def_type_statement_token7] = ACTIONS(6865), + [aux_sym_def_type_statement_token8] = ACTIONS(6865), + [aux_sym_def_type_statement_token9] = ACTIONS(6865), + [aux_sym_def_type_statement_token10] = ACTIONS(6865), + [aux_sym_def_type_statement_token11] = ACTIONS(6865), + [aux_sym_def_type_statement_token12] = ACTIONS(6865), + [aux_sym_def_type_statement_token13] = ACTIONS(6865), + [aux_sym_def_type_statement_token14] = ACTIONS(6865), + [aux_sym_call_statement_token1] = ACTIONS(6865), + [sym__ambiguous_call_statement] = ACTIONS(6865), + [aux_sym_addressof_expression_token1] = ACTIONS(6865), + [aux_sym_type_of_expression_token1] = ACTIONS(6865), + [aux_sym_unary_expression_token1] = ACTIONS(6865), + [sym_string_literal] = ACTIONS(6863), + [sym_number_literal] = ACTIONS(6863), + [aux_sym_boolean_literal_token1] = ACTIONS(6865), + [aux_sym_boolean_literal_token2] = ACTIONS(6865), + [sym_nothing_literal] = ACTIONS(6865), + [sym_null_literal] = ACTIONS(6865), + [sym_empty_literal] = ACTIONS(6865), + [sym_date_literal] = ACTIONS(6863), + [anon_sym_POUND] = ACTIONS(6865), + }, + [STATE(4301)] = { + [sym_identifier] = ACTIONS(8786), + [sym_newline] = ACTIONS(8788), + [anon_sym_COLON] = ACTIONS(8788), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8786), + [aux_sym_frm_property_statement_token1] = ACTIONS(8786), + [anon_sym_DOT] = ACTIONS(8786), + [anon_sym_BANG] = ACTIONS(8788), + [aux_sym__attribute_identifier_token1] = ACTIONS(8786), + [aux_sym_option_statement_token3] = ACTIONS(8786), + [aux_sym_type_declaration_token1] = ACTIONS(8786), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8786), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8786), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8786), + [aux_sym_enum_declaration_token1] = ACTIONS(8786), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8786), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8786), + [aux_sym_declare_function_statement_token1] = ACTIONS(8786), + [aux_sym_preprocessor_const_token1] = ACTIONS(8786), + [aux_sym__property_get_header_token1] = ACTIONS(8786), + [aux_sym_event_declaration_token1] = ACTIONS(8786), + [sym_static_modifier] = ACTIONS(8786), + [sym__dim_keyword] = ACTIONS(8786), + [sym__redim_keyword] = ACTIONS(8786), + [aux_sym_get_accessor_token1] = ACTIONS(8786), + [aux_sym_set_accessor_token1] = ACTIONS(8786), + [aux_sym_const_declaration_token1] = ACTIONS(8786), + [anon_sym_LPAREN] = ACTIONS(8788), + [aux_sym_as_type_clause_token1] = ACTIONS(8786), + [aux_sym_as_type_clause_token2] = ACTIONS(8786), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8786), + [aux_sym_visibility_token1] = ACTIONS(8786), + [aux_sym_visibility_token2] = ACTIONS(8786), + [aux_sym_elseif_fragment_token1] = ACTIONS(8786), + [aux_sym_else_fragment_token1] = ACTIONS(8786), + [aux_sym_select_statement_token1] = ACTIONS(8786), + [aux_sym__for_header_token1] = ACTIONS(8786), + [aux_sym_do_statement_token1] = ACTIONS(8786), + [aux_sym_do_condition_token1] = ACTIONS(8786), + [aux_sym_with_statement_token1] = ACTIONS(8786), + [aux_sym_exit_statement_token1] = ACTIONS(8786), + [sym_end_statement] = ACTIONS(8788), + [aux_sym_on_goto_statement_token1] = ACTIONS(8786), + [aux_sym_on_goto_statement_token2] = ACTIONS(8786), + [aux_sym_on_error_statement_token2] = ACTIONS(8786), + [sym__ambiguous_redim_statement] = ACTIONS(8788), + [aux_sym_erase_statement_token1] = ACTIONS(8786), + [aux_sym_open_statement_token1] = ACTIONS(8786), + [aux_sym_file_mode_token2] = ACTIONS(8786), + [aux_sym_file_access_token2] = ACTIONS(8786), + [aux_sym_file_lock_token2] = ACTIONS(8786), + [aux_sym_print_statement_token1] = ACTIONS(8786), + [anon_sym_PLUS] = ACTIONS(8788), + [anon_sym_DASH] = ACTIONS(8786), + [anon_sym_QMARK] = ACTIONS(8788), + [aux_sym_close_statement_token1] = ACTIONS(8786), + [aux_sym_put_statement_token1] = ACTIONS(8786), + [aux_sym_unlock_statement_token1] = ACTIONS(8786), + [aux_sym_seek_statement_token1] = ACTIONS(8786), + [sym_reset_statement] = ACTIONS(8786), + [aux_sym_raise_event_statement_token1] = ACTIONS(8786), + [sym_stop_statement] = ACTIONS(8786), + [sym_beep_statement] = ACTIONS(8786), + [aux_sym_unload_statement_token1] = ACTIONS(8786), + [aux_sym_def_type_statement_token1] = ACTIONS(8786), + [aux_sym_def_type_statement_token2] = ACTIONS(8786), + [aux_sym_def_type_statement_token3] = ACTIONS(8786), + [aux_sym_def_type_statement_token4] = ACTIONS(8786), + [aux_sym_def_type_statement_token5] = ACTIONS(8786), + [aux_sym_def_type_statement_token6] = ACTIONS(8786), + [aux_sym_def_type_statement_token7] = ACTIONS(8786), + [aux_sym_def_type_statement_token8] = ACTIONS(8786), + [aux_sym_def_type_statement_token9] = ACTIONS(8786), + [aux_sym_def_type_statement_token10] = ACTIONS(8786), + [aux_sym_def_type_statement_token11] = ACTIONS(8786), + [aux_sym_def_type_statement_token12] = ACTIONS(8786), + [aux_sym_def_type_statement_token13] = ACTIONS(8786), + [aux_sym_def_type_statement_token14] = ACTIONS(8786), + [aux_sym_call_statement_token1] = ACTIONS(8786), + [sym__ambiguous_call_statement] = ACTIONS(8786), + [aux_sym_addressof_expression_token1] = ACTIONS(8786), + [aux_sym_type_of_expression_token1] = ACTIONS(8786), + [aux_sym_unary_expression_token1] = ACTIONS(8786), + [sym_string_literal] = ACTIONS(8788), + [sym_number_literal] = ACTIONS(8788), + [aux_sym_boolean_literal_token1] = ACTIONS(8786), + [aux_sym_boolean_literal_token2] = ACTIONS(8786), + [sym_nothing_literal] = ACTIONS(8786), + [sym_null_literal] = ACTIONS(8786), + [sym_empty_literal] = ACTIONS(8786), + [sym_date_literal] = ACTIONS(8788), + [anon_sym_POUND] = ACTIONS(8786), + }, + [STATE(4302)] = { + [sym_identifier] = ACTIONS(8839), + [sym_newline] = ACTIONS(8841), + [anon_sym_COLON] = ACTIONS(8841), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8839), + [aux_sym_frm_property_statement_token1] = ACTIONS(8839), + [anon_sym_DOT] = ACTIONS(8839), + [anon_sym_BANG] = ACTIONS(8841), + [aux_sym__attribute_identifier_token1] = ACTIONS(8839), + [aux_sym_option_statement_token3] = ACTIONS(8839), + [aux_sym_type_declaration_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8839), + [aux_sym_enum_declaration_token1] = ACTIONS(8839), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8839), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8839), + [aux_sym_declare_function_statement_token1] = ACTIONS(8839), + [aux_sym_preprocessor_const_token1] = ACTIONS(8839), + [aux_sym__property_get_header_token1] = ACTIONS(8839), + [aux_sym_event_declaration_token1] = ACTIONS(8839), + [sym_static_modifier] = ACTIONS(8839), + [sym__dim_keyword] = ACTIONS(8839), + [sym__redim_keyword] = ACTIONS(8839), + [aux_sym_get_accessor_token1] = ACTIONS(8839), + [aux_sym_set_accessor_token1] = ACTIONS(8839), + [aux_sym_const_declaration_token1] = ACTIONS(8839), + [anon_sym_LPAREN] = ACTIONS(8841), + [aux_sym_as_type_clause_token2] = ACTIONS(8839), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8839), + [aux_sym_visibility_token1] = ACTIONS(8839), + [aux_sym_visibility_token2] = ACTIONS(8839), + [aux_sym_elseif_fragment_token1] = ACTIONS(8839), + [aux_sym_else_fragment_token1] = ACTIONS(8839), + [aux_sym_select_statement_token1] = ACTIONS(8839), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8839), + [aux_sym__for_header_token1] = ACTIONS(8839), + [aux_sym_do_statement_token1] = ACTIONS(8839), + [aux_sym_do_condition_token1] = ACTIONS(8839), + [aux_sym_with_statement_token1] = ACTIONS(8839), + [aux_sym_exit_statement_token1] = ACTIONS(8839), + [sym_end_statement] = ACTIONS(8841), + [aux_sym_on_goto_statement_token1] = ACTIONS(8839), + [aux_sym_on_goto_statement_token2] = ACTIONS(8839), + [aux_sym_on_error_statement_token2] = ACTIONS(8839), + [sym__ambiguous_redim_statement] = ACTIONS(8841), + [aux_sym_erase_statement_token1] = ACTIONS(8839), + [aux_sym_open_statement_token1] = ACTIONS(8839), + [aux_sym_file_mode_token2] = ACTIONS(8839), + [aux_sym_file_access_token2] = ACTIONS(8839), + [aux_sym_file_lock_token2] = ACTIONS(8839), + [aux_sym_print_statement_token1] = ACTIONS(8839), + [anon_sym_PLUS] = ACTIONS(8841), + [anon_sym_DASH] = ACTIONS(8839), + [anon_sym_QMARK] = ACTIONS(8841), + [aux_sym_close_statement_token1] = ACTIONS(8839), + [aux_sym_put_statement_token1] = ACTIONS(8839), + [aux_sym_unlock_statement_token1] = ACTIONS(8839), + [aux_sym_seek_statement_token1] = ACTIONS(8839), + [sym_reset_statement] = ACTIONS(8839), + [aux_sym_raise_event_statement_token1] = ACTIONS(8839), + [sym_stop_statement] = ACTIONS(8839), + [sym_beep_statement] = ACTIONS(8839), + [aux_sym_unload_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token2] = ACTIONS(8839), + [aux_sym_def_type_statement_token3] = ACTIONS(8839), + [aux_sym_def_type_statement_token4] = ACTIONS(8839), + [aux_sym_def_type_statement_token5] = ACTIONS(8839), + [aux_sym_def_type_statement_token6] = ACTIONS(8839), + [aux_sym_def_type_statement_token7] = ACTIONS(8839), + [aux_sym_def_type_statement_token8] = ACTIONS(8839), + [aux_sym_def_type_statement_token9] = ACTIONS(8839), + [aux_sym_def_type_statement_token10] = ACTIONS(8839), + [aux_sym_def_type_statement_token11] = ACTIONS(8839), + [aux_sym_def_type_statement_token12] = ACTIONS(8839), + [aux_sym_def_type_statement_token13] = ACTIONS(8839), + [aux_sym_def_type_statement_token14] = ACTIONS(8839), + [aux_sym_call_statement_token1] = ACTIONS(8839), + [sym__ambiguous_call_statement] = ACTIONS(8839), + [aux_sym_addressof_expression_token1] = ACTIONS(8839), + [aux_sym_type_of_expression_token1] = ACTIONS(8839), + [aux_sym_unary_expression_token1] = ACTIONS(8839), + [sym_string_literal] = ACTIONS(8841), + [sym_number_literal] = ACTIONS(8841), + [aux_sym_boolean_literal_token1] = ACTIONS(8839), + [aux_sym_boolean_literal_token2] = ACTIONS(8839), + [sym_nothing_literal] = ACTIONS(8839), + [sym_null_literal] = ACTIONS(8839), + [sym_empty_literal] = ACTIONS(8839), + [sym_date_literal] = ACTIONS(8841), + [anon_sym_POUND] = ACTIONS(8839), + }, + [STATE(4303)] = { + [sym_identifier] = ACTIONS(8805), + [sym_newline] = ACTIONS(8807), + [anon_sym_COLON] = ACTIONS(8807), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8805), + [aux_sym_frm_property_statement_token1] = ACTIONS(8805), + [anon_sym_DOT] = ACTIONS(8805), + [anon_sym_BANG] = ACTIONS(8807), + [aux_sym__attribute_identifier_token1] = ACTIONS(8805), + [aux_sym_option_statement_token3] = ACTIONS(8805), + [aux_sym_type_declaration_token1] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8805), + [aux_sym_enum_declaration_token1] = ACTIONS(8805), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8805), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8805), + [aux_sym_declare_function_statement_token1] = ACTIONS(8805), + [aux_sym_preprocessor_const_token1] = ACTIONS(8805), + [aux_sym__property_get_header_token1] = ACTIONS(8805), + [aux_sym_event_declaration_token1] = ACTIONS(8805), + [sym_static_modifier] = ACTIONS(8805), + [sym__dim_keyword] = ACTIONS(8805), + [sym__redim_keyword] = ACTIONS(8805), + [aux_sym_get_accessor_token1] = ACTIONS(8805), + [aux_sym_set_accessor_token1] = ACTIONS(8805), + [anon_sym_COMMA] = ACTIONS(8807), + [aux_sym_const_declaration_token1] = ACTIONS(8805), + [anon_sym_LPAREN] = ACTIONS(8807), + [aux_sym_as_type_clause_token2] = ACTIONS(8805), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8805), + [aux_sym_visibility_token1] = ACTIONS(8805), + [aux_sym_visibility_token2] = ACTIONS(8805), + [aux_sym_elseif_fragment_token1] = ACTIONS(8805), + [aux_sym_else_fragment_token1] = ACTIONS(8805), + [aux_sym_select_statement_token1] = ACTIONS(8805), + [aux_sym__for_header_token1] = ACTIONS(8805), + [aux_sym_do_statement_token1] = ACTIONS(8805), + [aux_sym_do_condition_token1] = ACTIONS(8805), + [aux_sym_with_statement_token1] = ACTIONS(8805), + [aux_sym_exit_statement_token1] = ACTIONS(8805), + [sym_end_statement] = ACTIONS(8807), + [aux_sym_on_goto_statement_token1] = ACTIONS(8805), + [aux_sym_on_goto_statement_token2] = ACTIONS(8805), + [aux_sym_on_error_statement_token2] = ACTIONS(8805), + [sym__ambiguous_redim_statement] = ACTIONS(8807), + [aux_sym_erase_statement_token1] = ACTIONS(8805), + [aux_sym_open_statement_token1] = ACTIONS(8805), + [aux_sym_file_mode_token2] = ACTIONS(8805), + [aux_sym_file_access_token2] = ACTIONS(8805), + [aux_sym_file_lock_token2] = ACTIONS(8805), + [aux_sym_print_statement_token1] = ACTIONS(8805), + [anon_sym_PLUS] = ACTIONS(8807), + [anon_sym_DASH] = ACTIONS(8805), + [anon_sym_QMARK] = ACTIONS(8807), + [aux_sym_close_statement_token1] = ACTIONS(8805), + [aux_sym_put_statement_token1] = ACTIONS(8805), + [aux_sym_unlock_statement_token1] = ACTIONS(8805), + [aux_sym_seek_statement_token1] = ACTIONS(8805), + [sym_reset_statement] = ACTIONS(8805), + [aux_sym_raise_event_statement_token1] = ACTIONS(8805), + [sym_stop_statement] = ACTIONS(8805), + [sym_beep_statement] = ACTIONS(8805), + [aux_sym_unload_statement_token1] = ACTIONS(8805), + [aux_sym_def_type_statement_token1] = ACTIONS(8805), + [aux_sym_def_type_statement_token2] = ACTIONS(8805), + [aux_sym_def_type_statement_token3] = ACTIONS(8805), + [aux_sym_def_type_statement_token4] = ACTIONS(8805), + [aux_sym_def_type_statement_token5] = ACTIONS(8805), + [aux_sym_def_type_statement_token6] = ACTIONS(8805), + [aux_sym_def_type_statement_token7] = ACTIONS(8805), + [aux_sym_def_type_statement_token8] = ACTIONS(8805), + [aux_sym_def_type_statement_token9] = ACTIONS(8805), + [aux_sym_def_type_statement_token10] = ACTIONS(8805), + [aux_sym_def_type_statement_token11] = ACTIONS(8805), + [aux_sym_def_type_statement_token12] = ACTIONS(8805), + [aux_sym_def_type_statement_token13] = ACTIONS(8805), + [aux_sym_def_type_statement_token14] = ACTIONS(8805), + [aux_sym_call_statement_token1] = ACTIONS(8805), + [sym__ambiguous_call_statement] = ACTIONS(8805), + [aux_sym_addressof_expression_token1] = ACTIONS(8805), + [aux_sym_type_of_expression_token1] = ACTIONS(8805), + [aux_sym_unary_expression_token1] = ACTIONS(8805), + [sym_string_literal] = ACTIONS(8807), + [sym_number_literal] = ACTIONS(8807), + [aux_sym_boolean_literal_token1] = ACTIONS(8805), + [aux_sym_boolean_literal_token2] = ACTIONS(8805), + [sym_nothing_literal] = ACTIONS(8805), + [sym_null_literal] = ACTIONS(8805), + [sym_empty_literal] = ACTIONS(8805), + [sym_date_literal] = ACTIONS(8807), + [anon_sym_POUND] = ACTIONS(8805), + }, + [STATE(4304)] = { + [sym_identifier] = ACTIONS(8357), + [sym_newline] = ACTIONS(8359), + [anon_sym_COLON] = ACTIONS(8359), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8357), + [aux_sym_frm_property_statement_token1] = ACTIONS(8357), + [anon_sym_DOT] = ACTIONS(8357), + [anon_sym_BANG] = ACTIONS(8359), + [aux_sym__attribute_identifier_token1] = ACTIONS(8357), + [aux_sym_option_statement_token3] = ACTIONS(8357), + [aux_sym_type_declaration_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8357), + [aux_sym_enum_declaration_token1] = ACTIONS(8357), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8357), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8357), + [aux_sym_declare_function_statement_token1] = ACTIONS(8357), + [aux_sym_preprocessor_const_token1] = ACTIONS(8357), + [aux_sym__property_get_header_token1] = ACTIONS(8357), + [aux_sym_event_declaration_token1] = ACTIONS(8357), + [sym_static_modifier] = ACTIONS(8357), + [sym__dim_keyword] = ACTIONS(8357), + [sym__redim_keyword] = ACTIONS(8357), + [aux_sym_get_accessor_token1] = ACTIONS(8357), + [aux_sym_set_accessor_token1] = ACTIONS(8357), + [anon_sym_COMMA] = ACTIONS(8359), + [aux_sym_const_declaration_token1] = ACTIONS(8357), + [anon_sym_LPAREN] = ACTIONS(8359), + [aux_sym_as_type_clause_token2] = ACTIONS(8357), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8357), + [aux_sym_visibility_token1] = ACTIONS(8357), + [aux_sym_visibility_token2] = ACTIONS(8357), + [aux_sym_elseif_fragment_token1] = ACTIONS(8357), + [aux_sym_else_fragment_token1] = ACTIONS(8357), + [aux_sym_select_statement_token1] = ACTIONS(8357), + [aux_sym__for_header_token1] = ACTIONS(8357), + [aux_sym_do_statement_token1] = ACTIONS(8357), + [aux_sym_do_condition_token1] = ACTIONS(8357), + [aux_sym_with_statement_token1] = ACTIONS(8357), + [aux_sym_exit_statement_token1] = ACTIONS(8357), + [sym_end_statement] = ACTIONS(8359), + [aux_sym_on_goto_statement_token1] = ACTIONS(8357), + [aux_sym_on_goto_statement_token2] = ACTIONS(8357), + [aux_sym_on_error_statement_token2] = ACTIONS(8357), + [sym__ambiguous_redim_statement] = ACTIONS(8359), + [aux_sym_erase_statement_token1] = ACTIONS(8357), + [aux_sym_open_statement_token1] = ACTIONS(8357), + [aux_sym_file_mode_token2] = ACTIONS(8357), + [aux_sym_file_access_token2] = ACTIONS(8357), + [aux_sym_file_lock_token2] = ACTIONS(8357), + [aux_sym_print_statement_token1] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_QMARK] = ACTIONS(8359), + [aux_sym_close_statement_token1] = ACTIONS(8357), + [aux_sym_put_statement_token1] = ACTIONS(8357), + [aux_sym_unlock_statement_token1] = ACTIONS(8357), + [aux_sym_seek_statement_token1] = ACTIONS(8357), + [sym_reset_statement] = ACTIONS(8357), + [aux_sym_raise_event_statement_token1] = ACTIONS(8357), + [sym_stop_statement] = ACTIONS(8357), + [sym_beep_statement] = ACTIONS(8357), + [aux_sym_unload_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token2] = ACTIONS(8357), + [aux_sym_def_type_statement_token3] = ACTIONS(8357), + [aux_sym_def_type_statement_token4] = ACTIONS(8357), + [aux_sym_def_type_statement_token5] = ACTIONS(8357), + [aux_sym_def_type_statement_token6] = ACTIONS(8357), + [aux_sym_def_type_statement_token7] = ACTIONS(8357), + [aux_sym_def_type_statement_token8] = ACTIONS(8357), + [aux_sym_def_type_statement_token9] = ACTIONS(8357), + [aux_sym_def_type_statement_token10] = ACTIONS(8357), + [aux_sym_def_type_statement_token11] = ACTIONS(8357), + [aux_sym_def_type_statement_token12] = ACTIONS(8357), + [aux_sym_def_type_statement_token13] = ACTIONS(8357), + [aux_sym_def_type_statement_token14] = ACTIONS(8357), + [aux_sym_call_statement_token1] = ACTIONS(8357), + [sym__ambiguous_call_statement] = ACTIONS(8357), + [aux_sym_addressof_expression_token1] = ACTIONS(8357), + [aux_sym_type_of_expression_token1] = ACTIONS(8357), + [aux_sym_unary_expression_token1] = ACTIONS(8357), + [sym_string_literal] = ACTIONS(8359), + [sym_number_literal] = ACTIONS(8359), + [aux_sym_boolean_literal_token1] = ACTIONS(8357), + [aux_sym_boolean_literal_token2] = ACTIONS(8357), + [sym_nothing_literal] = ACTIONS(8357), + [sym_null_literal] = ACTIONS(8357), + [sym_empty_literal] = ACTIONS(8357), + [sym_date_literal] = ACTIONS(8359), + [anon_sym_POUND] = ACTIONS(8357), + }, + [STATE(4305)] = { + [sym_next_variable_list] = STATE(6282), + [sym__assignable_expression] = STATE(4956), + [sym__callable_expression] = STATE(4977), + [sym_call_expression] = STATE(4901), + [sym_member_expression] = STATE(5393), + [sym_qualified_member_expression] = STATE(5480), + [sym_implicit_member_expression] = STATE(5480), + [sym_identifier] = ACTIONS(9825), + [sym_newline] = ACTIONS(6848), + [anon_sym_COLON] = ACTIONS(6848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6850), + [aux_sym_frm_property_statement_token1] = ACTIONS(9827), + [anon_sym_DOT] = ACTIONS(9829), + [anon_sym_BANG] = ACTIONS(9831), + [aux_sym__attribute_identifier_token1] = ACTIONS(6850), + [aux_sym_option_statement_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6850), + [aux_sym_preprocessor_const_token1] = ACTIONS(6850), + [sym_static_modifier] = ACTIONS(6850), + [sym__dim_keyword] = ACTIONS(6850), + [sym__redim_keyword] = ACTIONS(6850), + [aux_sym_get_accessor_token1] = ACTIONS(6850), + [aux_sym_set_accessor_token1] = ACTIONS(6850), + [aux_sym_const_declaration_token1] = ACTIONS(6850), + [anon_sym_LPAREN] = ACTIONS(6848), + [aux_sym_as_type_clause_token2] = ACTIONS(6850), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9833), + [aux_sym_visibility_token1] = ACTIONS(6850), + [aux_sym_visibility_token2] = ACTIONS(6850), + [aux_sym_elseif_fragment_token1] = ACTIONS(6850), + [aux_sym_else_fragment_token1] = ACTIONS(6850), + [aux_sym_select_statement_token1] = ACTIONS(6850), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6850), + [aux_sym__for_header_token1] = ACTIONS(6850), + [aux_sym_do_statement_token1] = ACTIONS(6850), + [aux_sym_do_condition_token1] = ACTIONS(6850), + [aux_sym_while_statement_token1] = ACTIONS(6850), + [aux_sym_with_statement_token1] = ACTIONS(6850), + [aux_sym_exit_statement_token1] = ACTIONS(6850), + [sym_end_statement] = ACTIONS(6848), + [aux_sym_on_goto_statement_token1] = ACTIONS(6850), + [aux_sym_on_goto_statement_token2] = ACTIONS(6850), + [aux_sym_on_error_statement_token2] = ACTIONS(6850), + [sym__ambiguous_redim_statement] = ACTIONS(6848), + [aux_sym_erase_statement_token1] = ACTIONS(6850), + [aux_sym_open_statement_token1] = ACTIONS(6850), + [aux_sym_file_mode_token2] = ACTIONS(6850), + [aux_sym_file_access_token2] = ACTIONS(6850), + [aux_sym_file_lock_token2] = ACTIONS(6850), + [aux_sym_print_statement_token1] = ACTIONS(6850), + [anon_sym_PLUS] = ACTIONS(6848), + [anon_sym_DASH] = ACTIONS(6850), + [anon_sym_QMARK] = ACTIONS(6848), + [aux_sym_close_statement_token1] = ACTIONS(6850), + [aux_sym_put_statement_token1] = ACTIONS(6850), + [aux_sym_unlock_statement_token1] = ACTIONS(6850), + [aux_sym_seek_statement_token1] = ACTIONS(6850), + [sym_reset_statement] = ACTIONS(6850), + [aux_sym_raise_event_statement_token1] = ACTIONS(6850), + [sym_stop_statement] = ACTIONS(6850), + [sym_beep_statement] = ACTIONS(6850), + [aux_sym_unload_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token2] = ACTIONS(6850), + [aux_sym_def_type_statement_token3] = ACTIONS(6850), + [aux_sym_def_type_statement_token4] = ACTIONS(6850), + [aux_sym_def_type_statement_token5] = ACTIONS(6850), + [aux_sym_def_type_statement_token6] = ACTIONS(6850), + [aux_sym_def_type_statement_token7] = ACTIONS(6850), + [aux_sym_def_type_statement_token8] = ACTIONS(6850), + [aux_sym_def_type_statement_token9] = ACTIONS(6850), + [aux_sym_def_type_statement_token10] = ACTIONS(6850), + [aux_sym_def_type_statement_token11] = ACTIONS(6850), + [aux_sym_def_type_statement_token12] = ACTIONS(6850), + [aux_sym_def_type_statement_token13] = ACTIONS(6850), + [aux_sym_def_type_statement_token14] = ACTIONS(6850), + [aux_sym_call_statement_token1] = ACTIONS(6850), + [sym__ambiguous_call_statement] = ACTIONS(6850), + [aux_sym_addressof_expression_token1] = ACTIONS(6850), + [aux_sym_type_of_expression_token1] = ACTIONS(6850), + [aux_sym_unary_expression_token1] = ACTIONS(6850), + [sym_string_literal] = ACTIONS(6848), + [sym_number_literal] = ACTIONS(6848), + [aux_sym_boolean_literal_token1] = ACTIONS(6850), + [aux_sym_boolean_literal_token2] = ACTIONS(6850), + [sym_nothing_literal] = ACTIONS(6850), + [sym_null_literal] = ACTIONS(6850), + [sym_empty_literal] = ACTIONS(6850), + [sym_date_literal] = ACTIONS(6848), + [anon_sym_POUND] = ACTIONS(6850), + }, + [STATE(4306)] = { + [sym_identifier] = ACTIONS(8467), + [sym_newline] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8467), + [aux_sym_frm_property_statement_token1] = ACTIONS(8467), + [anon_sym_DOT] = ACTIONS(8467), + [anon_sym_BANG] = ACTIONS(6089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8467), + [aux_sym_option_statement_token3] = ACTIONS(8467), + [aux_sym_type_declaration_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8467), + [aux_sym_enum_declaration_token1] = ACTIONS(8467), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8467), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8467), + [aux_sym_declare_function_statement_token1] = ACTIONS(8467), + [aux_sym_preprocessor_const_token1] = ACTIONS(8467), + [aux_sym__property_get_header_token1] = ACTIONS(8467), + [aux_sym_event_declaration_token1] = ACTIONS(8467), + [sym_static_modifier] = ACTIONS(8467), + [sym__dim_keyword] = ACTIONS(8467), + [sym__redim_keyword] = ACTIONS(8467), + [aux_sym_get_accessor_token1] = ACTIONS(8467), + [aux_sym_set_accessor_token1] = ACTIONS(8467), + [anon_sym_COMMA] = ACTIONS(6089), + [aux_sym_const_declaration_token1] = ACTIONS(8467), + [anon_sym_LPAREN] = ACTIONS(6089), + [aux_sym_as_type_clause_token2] = ACTIONS(8467), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8467), + [aux_sym_visibility_token1] = ACTIONS(8467), + [aux_sym_visibility_token2] = ACTIONS(8467), + [aux_sym_elseif_fragment_token1] = ACTIONS(8467), + [aux_sym_else_fragment_token1] = ACTIONS(8467), + [aux_sym_select_statement_token1] = ACTIONS(8467), + [aux_sym__for_header_token1] = ACTIONS(8467), + [aux_sym_do_statement_token1] = ACTIONS(8467), + [aux_sym_do_condition_token1] = ACTIONS(8467), + [aux_sym_with_statement_token1] = ACTIONS(8467), + [aux_sym_exit_statement_token1] = ACTIONS(8467), + [sym_end_statement] = ACTIONS(6089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8467), + [aux_sym_on_goto_statement_token2] = ACTIONS(8467), + [aux_sym_on_error_statement_token2] = ACTIONS(8467), + [sym__ambiguous_redim_statement] = ACTIONS(6089), + [aux_sym_erase_statement_token1] = ACTIONS(8467), + [aux_sym_open_statement_token1] = ACTIONS(8467), + [aux_sym_file_mode_token2] = ACTIONS(8467), + [aux_sym_file_access_token2] = ACTIONS(8467), + [aux_sym_file_lock_token2] = ACTIONS(8467), + [aux_sym_print_statement_token1] = ACTIONS(8467), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(8467), + [anon_sym_QMARK] = ACTIONS(6089), + [aux_sym_close_statement_token1] = ACTIONS(8467), + [aux_sym_put_statement_token1] = ACTIONS(8467), + [aux_sym_unlock_statement_token1] = ACTIONS(8467), + [aux_sym_seek_statement_token1] = ACTIONS(8467), + [sym_reset_statement] = ACTIONS(8467), + [aux_sym_raise_event_statement_token1] = ACTIONS(8467), + [sym_stop_statement] = ACTIONS(8467), + [sym_beep_statement] = ACTIONS(8467), + [aux_sym_unload_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token2] = ACTIONS(8467), + [aux_sym_def_type_statement_token3] = ACTIONS(8467), + [aux_sym_def_type_statement_token4] = ACTIONS(8467), + [aux_sym_def_type_statement_token5] = ACTIONS(8467), + [aux_sym_def_type_statement_token6] = ACTIONS(8467), + [aux_sym_def_type_statement_token7] = ACTIONS(8467), + [aux_sym_def_type_statement_token8] = ACTIONS(8467), + [aux_sym_def_type_statement_token9] = ACTIONS(8467), + [aux_sym_def_type_statement_token10] = ACTIONS(8467), + [aux_sym_def_type_statement_token11] = ACTIONS(8467), + [aux_sym_def_type_statement_token12] = ACTIONS(8467), + [aux_sym_def_type_statement_token13] = ACTIONS(8467), + [aux_sym_def_type_statement_token14] = ACTIONS(8467), + [aux_sym_call_statement_token1] = ACTIONS(8467), + [sym__ambiguous_call_statement] = ACTIONS(8467), + [aux_sym_addressof_expression_token1] = ACTIONS(8467), + [aux_sym_type_of_expression_token1] = ACTIONS(8467), + [aux_sym_unary_expression_token1] = ACTIONS(8467), + [sym_string_literal] = ACTIONS(6089), + [sym_number_literal] = ACTIONS(6089), + [aux_sym_boolean_literal_token1] = ACTIONS(8467), + [aux_sym_boolean_literal_token2] = ACTIONS(8467), + [sym_nothing_literal] = ACTIONS(8467), + [sym_null_literal] = ACTIONS(8467), + [sym_empty_literal] = ACTIONS(8467), + [sym_date_literal] = ACTIONS(6089), + [anon_sym_POUND] = ACTIONS(8467), + }, + [STATE(4307)] = { + [sym_identifier] = ACTIONS(8853), + [sym_newline] = ACTIONS(8855), + [anon_sym_COLON] = ACTIONS(8855), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8853), + [aux_sym_frm_property_statement_token1] = ACTIONS(8853), + [anon_sym_DOT] = ACTIONS(8853), + [anon_sym_BANG] = ACTIONS(8855), + [aux_sym__attribute_identifier_token1] = ACTIONS(8853), + [aux_sym_option_statement_token3] = ACTIONS(8853), + [aux_sym_type_declaration_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8853), + [aux_sym_enum_declaration_token1] = ACTIONS(8853), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8853), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8853), + [aux_sym_declare_function_statement_token1] = ACTIONS(8853), + [aux_sym_preprocessor_const_token1] = ACTIONS(8853), + [aux_sym__property_get_header_token1] = ACTIONS(8853), + [aux_sym_event_declaration_token1] = ACTIONS(8853), + [sym_static_modifier] = ACTIONS(8853), + [sym__dim_keyword] = ACTIONS(8853), + [sym__redim_keyword] = ACTIONS(8853), + [aux_sym_get_accessor_token1] = ACTIONS(8853), + [aux_sym_set_accessor_token1] = ACTIONS(8853), + [aux_sym_const_declaration_token1] = ACTIONS(8853), + [anon_sym_LPAREN] = ACTIONS(8855), + [aux_sym_as_type_clause_token2] = ACTIONS(8853), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8853), + [aux_sym_visibility_token1] = ACTIONS(8853), + [aux_sym_visibility_token2] = ACTIONS(8853), + [aux_sym_elseif_fragment_token1] = ACTIONS(8853), + [aux_sym_else_fragment_token1] = ACTIONS(8853), + [aux_sym_select_statement_token1] = ACTIONS(8853), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8853), + [aux_sym__for_header_token1] = ACTIONS(8853), + [aux_sym_do_statement_token1] = ACTIONS(8853), + [aux_sym_do_condition_token1] = ACTIONS(8853), + [aux_sym_with_statement_token1] = ACTIONS(8853), + [aux_sym_exit_statement_token1] = ACTIONS(8853), + [sym_end_statement] = ACTIONS(8855), + [aux_sym_on_goto_statement_token1] = ACTIONS(8853), + [aux_sym_on_goto_statement_token2] = ACTIONS(8853), + [aux_sym_on_error_statement_token2] = ACTIONS(8853), + [sym__ambiguous_redim_statement] = ACTIONS(8855), + [aux_sym_erase_statement_token1] = ACTIONS(8853), + [aux_sym_open_statement_token1] = ACTIONS(8853), + [aux_sym_file_mode_token2] = ACTIONS(8853), + [aux_sym_file_access_token2] = ACTIONS(8853), + [aux_sym_file_lock_token2] = ACTIONS(8853), + [aux_sym_print_statement_token1] = ACTIONS(8853), + [anon_sym_PLUS] = ACTIONS(8855), + [anon_sym_DASH] = ACTIONS(8853), + [anon_sym_QMARK] = ACTIONS(8855), + [aux_sym_close_statement_token1] = ACTIONS(8853), + [aux_sym_put_statement_token1] = ACTIONS(8853), + [aux_sym_unlock_statement_token1] = ACTIONS(8853), + [aux_sym_seek_statement_token1] = ACTIONS(8853), + [sym_reset_statement] = ACTIONS(8853), + [aux_sym_raise_event_statement_token1] = ACTIONS(8853), + [sym_stop_statement] = ACTIONS(8853), + [sym_beep_statement] = ACTIONS(8853), + [aux_sym_unload_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token2] = ACTIONS(8853), + [aux_sym_def_type_statement_token3] = ACTIONS(8853), + [aux_sym_def_type_statement_token4] = ACTIONS(8853), + [aux_sym_def_type_statement_token5] = ACTIONS(8853), + [aux_sym_def_type_statement_token6] = ACTIONS(8853), + [aux_sym_def_type_statement_token7] = ACTIONS(8853), + [aux_sym_def_type_statement_token8] = ACTIONS(8853), + [aux_sym_def_type_statement_token9] = ACTIONS(8853), + [aux_sym_def_type_statement_token10] = ACTIONS(8853), + [aux_sym_def_type_statement_token11] = ACTIONS(8853), + [aux_sym_def_type_statement_token12] = ACTIONS(8853), + [aux_sym_def_type_statement_token13] = ACTIONS(8853), + [aux_sym_def_type_statement_token14] = ACTIONS(8853), + [aux_sym_call_statement_token1] = ACTIONS(8853), + [sym__ambiguous_call_statement] = ACTIONS(8853), + [aux_sym_addressof_expression_token1] = ACTIONS(8853), + [aux_sym_type_of_expression_token1] = ACTIONS(8853), + [aux_sym_unary_expression_token1] = ACTIONS(8853), + [sym_string_literal] = ACTIONS(8855), + [sym_number_literal] = ACTIONS(8855), + [aux_sym_boolean_literal_token1] = ACTIONS(8853), + [aux_sym_boolean_literal_token2] = ACTIONS(8853), + [sym_nothing_literal] = ACTIONS(8853), + [sym_null_literal] = ACTIONS(8853), + [sym_empty_literal] = ACTIONS(8853), + [sym_date_literal] = ACTIONS(8855), + [anon_sym_POUND] = ACTIONS(8853), + }, + [STATE(4308)] = { + [sym_identifier] = ACTIONS(8857), + [sym_newline] = ACTIONS(8859), + [anon_sym_COLON] = ACTIONS(8859), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8857), + [aux_sym_frm_property_statement_token1] = ACTIONS(8857), + [anon_sym_DOT] = ACTIONS(8857), + [anon_sym_BANG] = ACTIONS(8859), + [aux_sym__attribute_identifier_token1] = ACTIONS(8857), + [aux_sym_option_statement_token3] = ACTIONS(8857), + [aux_sym_type_declaration_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8857), + [aux_sym_enum_declaration_token1] = ACTIONS(8857), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8857), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8857), + [aux_sym_declare_function_statement_token1] = ACTIONS(8857), + [aux_sym_preprocessor_const_token1] = ACTIONS(8857), + [aux_sym__property_get_header_token1] = ACTIONS(8857), + [aux_sym_event_declaration_token1] = ACTIONS(8857), + [sym_static_modifier] = ACTIONS(8857), + [sym__dim_keyword] = ACTIONS(8857), + [sym__redim_keyword] = ACTIONS(8857), + [aux_sym_get_accessor_token1] = ACTIONS(8857), + [aux_sym_set_accessor_token1] = ACTIONS(8857), + [aux_sym_const_declaration_token1] = ACTIONS(8857), + [anon_sym_LPAREN] = ACTIONS(8859), + [aux_sym_as_type_clause_token2] = ACTIONS(8857), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8857), + [aux_sym_visibility_token1] = ACTIONS(8857), + [aux_sym_visibility_token2] = ACTIONS(8857), + [aux_sym_elseif_fragment_token1] = ACTIONS(8857), + [aux_sym_else_fragment_token1] = ACTIONS(8857), + [aux_sym_select_statement_token1] = ACTIONS(8857), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8857), + [aux_sym__for_header_token1] = ACTIONS(8857), + [aux_sym_do_statement_token1] = ACTIONS(8857), + [aux_sym_do_condition_token1] = ACTIONS(8857), + [aux_sym_with_statement_token1] = ACTIONS(8857), + [aux_sym_exit_statement_token1] = ACTIONS(8857), + [sym_end_statement] = ACTIONS(8859), + [aux_sym_on_goto_statement_token1] = ACTIONS(8857), + [aux_sym_on_goto_statement_token2] = ACTIONS(8857), + [aux_sym_on_error_statement_token2] = ACTIONS(8857), + [sym__ambiguous_redim_statement] = ACTIONS(8859), + [aux_sym_erase_statement_token1] = ACTIONS(8857), + [aux_sym_open_statement_token1] = ACTIONS(8857), + [aux_sym_file_mode_token2] = ACTIONS(8857), + [aux_sym_file_access_token2] = ACTIONS(8857), + [aux_sym_file_lock_token2] = ACTIONS(8857), + [aux_sym_print_statement_token1] = ACTIONS(8857), + [anon_sym_PLUS] = ACTIONS(8859), + [anon_sym_DASH] = ACTIONS(8857), + [anon_sym_QMARK] = ACTIONS(8859), + [aux_sym_close_statement_token1] = ACTIONS(8857), + [aux_sym_put_statement_token1] = ACTIONS(8857), + [aux_sym_unlock_statement_token1] = ACTIONS(8857), + [aux_sym_seek_statement_token1] = ACTIONS(8857), + [sym_reset_statement] = ACTIONS(8857), + [aux_sym_raise_event_statement_token1] = ACTIONS(8857), + [sym_stop_statement] = ACTIONS(8857), + [sym_beep_statement] = ACTIONS(8857), + [aux_sym_unload_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token2] = ACTIONS(8857), + [aux_sym_def_type_statement_token3] = ACTIONS(8857), + [aux_sym_def_type_statement_token4] = ACTIONS(8857), + [aux_sym_def_type_statement_token5] = ACTIONS(8857), + [aux_sym_def_type_statement_token6] = ACTIONS(8857), + [aux_sym_def_type_statement_token7] = ACTIONS(8857), + [aux_sym_def_type_statement_token8] = ACTIONS(8857), + [aux_sym_def_type_statement_token9] = ACTIONS(8857), + [aux_sym_def_type_statement_token10] = ACTIONS(8857), + [aux_sym_def_type_statement_token11] = ACTIONS(8857), + [aux_sym_def_type_statement_token12] = ACTIONS(8857), + [aux_sym_def_type_statement_token13] = ACTIONS(8857), + [aux_sym_def_type_statement_token14] = ACTIONS(8857), + [aux_sym_call_statement_token1] = ACTIONS(8857), + [sym__ambiguous_call_statement] = ACTIONS(8857), + [aux_sym_addressof_expression_token1] = ACTIONS(8857), + [aux_sym_type_of_expression_token1] = ACTIONS(8857), + [aux_sym_unary_expression_token1] = ACTIONS(8857), + [sym_string_literal] = ACTIONS(8859), + [sym_number_literal] = ACTIONS(8859), + [aux_sym_boolean_literal_token1] = ACTIONS(8857), + [aux_sym_boolean_literal_token2] = ACTIONS(8857), + [sym_nothing_literal] = ACTIONS(8857), + [sym_null_literal] = ACTIONS(8857), + [sym_empty_literal] = ACTIONS(8857), + [sym_date_literal] = ACTIONS(8859), + [anon_sym_POUND] = ACTIONS(8857), + }, + [STATE(4309)] = { + [sym_identifier] = ACTIONS(8939), + [sym_newline] = ACTIONS(8941), + [anon_sym_COLON] = ACTIONS(8941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8939), + [aux_sym_frm_property_statement_token1] = ACTIONS(8939), + [anon_sym_DOT] = ACTIONS(8939), + [anon_sym_BANG] = ACTIONS(8941), + [aux_sym__attribute_identifier_token1] = ACTIONS(8939), + [aux_sym_option_statement_token3] = ACTIONS(8939), + [aux_sym_type_declaration_token1] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8939), + [aux_sym_enum_declaration_token1] = ACTIONS(8939), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8939), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8939), + [aux_sym_declare_function_statement_token1] = ACTIONS(8939), + [aux_sym_preprocessor_const_token1] = ACTIONS(8939), + [aux_sym__property_get_header_token1] = ACTIONS(8939), + [aux_sym_event_declaration_token1] = ACTIONS(8939), + [sym_static_modifier] = ACTIONS(8939), + [sym__dim_keyword] = ACTIONS(8939), + [sym__redim_keyword] = ACTIONS(8939), + [aux_sym_get_accessor_token1] = ACTIONS(8939), + [aux_sym_set_accessor_token1] = ACTIONS(8939), + [anon_sym_COMMA] = ACTIONS(9895), + [aux_sym_const_declaration_token1] = ACTIONS(8939), + [anon_sym_LPAREN] = ACTIONS(8941), + [aux_sym_as_type_clause_token2] = ACTIONS(8939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8939), + [aux_sym_visibility_token1] = ACTIONS(8939), + [aux_sym_visibility_token2] = ACTIONS(8939), + [aux_sym_elseif_fragment_token1] = ACTIONS(8939), + [aux_sym_else_fragment_token1] = ACTIONS(8939), + [aux_sym_select_statement_token1] = ACTIONS(8939), + [aux_sym__for_header_token1] = ACTIONS(8939), + [aux_sym_do_statement_token1] = ACTIONS(8939), + [aux_sym_do_condition_token1] = ACTIONS(8939), + [aux_sym_with_statement_token1] = ACTIONS(8939), + [aux_sym_exit_statement_token1] = ACTIONS(8939), + [sym_end_statement] = ACTIONS(8941), + [aux_sym_on_goto_statement_token1] = ACTIONS(8939), + [aux_sym_on_goto_statement_token2] = ACTIONS(8939), + [aux_sym_on_error_statement_token2] = ACTIONS(8939), + [sym__ambiguous_redim_statement] = ACTIONS(8941), + [aux_sym_erase_statement_token1] = ACTIONS(8939), + [aux_sym_open_statement_token1] = ACTIONS(8939), + [aux_sym_file_mode_token2] = ACTIONS(8939), + [aux_sym_file_access_token2] = ACTIONS(8939), + [aux_sym_file_lock_token2] = ACTIONS(8939), + [aux_sym_print_statement_token1] = ACTIONS(8939), + [anon_sym_PLUS] = ACTIONS(8941), + [anon_sym_DASH] = ACTIONS(8939), + [anon_sym_QMARK] = ACTIONS(8941), + [aux_sym_close_statement_token1] = ACTIONS(8939), + [aux_sym_put_statement_token1] = ACTIONS(8939), + [aux_sym_unlock_statement_token1] = ACTIONS(8939), + [aux_sym_seek_statement_token1] = ACTIONS(8939), + [sym_reset_statement] = ACTIONS(8939), + [aux_sym_raise_event_statement_token1] = ACTIONS(8939), + [sym_stop_statement] = ACTIONS(8939), + [sym_beep_statement] = ACTIONS(8939), + [aux_sym_unload_statement_token1] = ACTIONS(8939), + [aux_sym_def_type_statement_token1] = ACTIONS(8939), + [aux_sym_def_type_statement_token2] = ACTIONS(8939), + [aux_sym_def_type_statement_token3] = ACTIONS(8939), + [aux_sym_def_type_statement_token4] = ACTIONS(8939), + [aux_sym_def_type_statement_token5] = ACTIONS(8939), + [aux_sym_def_type_statement_token6] = ACTIONS(8939), + [aux_sym_def_type_statement_token7] = ACTIONS(8939), + [aux_sym_def_type_statement_token8] = ACTIONS(8939), + [aux_sym_def_type_statement_token9] = ACTIONS(8939), + [aux_sym_def_type_statement_token10] = ACTIONS(8939), + [aux_sym_def_type_statement_token11] = ACTIONS(8939), + [aux_sym_def_type_statement_token12] = ACTIONS(8939), + [aux_sym_def_type_statement_token13] = ACTIONS(8939), + [aux_sym_def_type_statement_token14] = ACTIONS(8939), + [aux_sym_call_statement_token1] = ACTIONS(8939), + [sym__ambiguous_call_statement] = ACTIONS(8939), + [aux_sym_addressof_expression_token1] = ACTIONS(8939), + [aux_sym_type_of_expression_token1] = ACTIONS(8939), + [aux_sym_unary_expression_token1] = ACTIONS(8939), + [sym_string_literal] = ACTIONS(8941), + [sym_number_literal] = ACTIONS(8941), + [aux_sym_boolean_literal_token1] = ACTIONS(8939), + [aux_sym_boolean_literal_token2] = ACTIONS(8939), + [sym_nothing_literal] = ACTIONS(8939), + [sym_null_literal] = ACTIONS(8939), + [sym_empty_literal] = ACTIONS(8939), + [sym_date_literal] = ACTIONS(8941), + [anon_sym_POUND] = ACTIONS(8939), + }, + [STATE(4310)] = { + [sym_identifier] = ACTIONS(8831), + [sym_newline] = ACTIONS(8833), + [anon_sym_COLON] = ACTIONS(8833), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8831), + [aux_sym_frm_property_statement_token1] = ACTIONS(8831), + [anon_sym_DOT] = ACTIONS(8831), + [anon_sym_BANG] = ACTIONS(8833), + [aux_sym__attribute_identifier_token1] = ACTIONS(8831), + [aux_sym_option_statement_token3] = ACTIONS(8831), + [aux_sym_type_declaration_token1] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8831), + [aux_sym_enum_declaration_token1] = ACTIONS(8831), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8831), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8831), + [aux_sym_declare_function_statement_token1] = ACTIONS(8831), + [aux_sym_preprocessor_const_token1] = ACTIONS(8831), + [aux_sym__property_get_header_token1] = ACTIONS(8831), + [aux_sym_event_declaration_token1] = ACTIONS(8831), + [sym_static_modifier] = ACTIONS(8831), + [sym__dim_keyword] = ACTIONS(8831), + [sym__redim_keyword] = ACTIONS(8831), + [aux_sym_get_accessor_token1] = ACTIONS(8831), + [aux_sym_set_accessor_token1] = ACTIONS(8831), + [anon_sym_COMMA] = ACTIONS(8833), + [aux_sym_const_declaration_token1] = ACTIONS(8831), + [anon_sym_LPAREN] = ACTIONS(8833), + [aux_sym_as_type_clause_token2] = ACTIONS(8831), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8831), + [aux_sym_visibility_token1] = ACTIONS(8831), + [aux_sym_visibility_token2] = ACTIONS(8831), + [aux_sym_elseif_fragment_token1] = ACTIONS(8831), + [aux_sym_else_fragment_token1] = ACTIONS(8831), + [aux_sym_select_statement_token1] = ACTIONS(8831), + [aux_sym__for_header_token1] = ACTIONS(8831), + [aux_sym_do_statement_token1] = ACTIONS(8831), + [aux_sym_do_condition_token1] = ACTIONS(8831), + [aux_sym_with_statement_token1] = ACTIONS(8831), + [aux_sym_exit_statement_token1] = ACTIONS(8831), + [sym_end_statement] = ACTIONS(8833), + [aux_sym_on_goto_statement_token1] = ACTIONS(8831), + [aux_sym_on_goto_statement_token2] = ACTIONS(8831), + [aux_sym_on_error_statement_token2] = ACTIONS(8831), + [sym__ambiguous_redim_statement] = ACTIONS(8833), + [aux_sym_erase_statement_token1] = ACTIONS(8831), + [aux_sym_open_statement_token1] = ACTIONS(8831), + [aux_sym_file_mode_token2] = ACTIONS(8831), + [aux_sym_file_access_token2] = ACTIONS(8831), + [aux_sym_file_lock_token2] = ACTIONS(8831), + [aux_sym_print_statement_token1] = ACTIONS(8831), + [anon_sym_PLUS] = ACTIONS(8833), + [anon_sym_DASH] = ACTIONS(8831), + [anon_sym_QMARK] = ACTIONS(8833), + [aux_sym_close_statement_token1] = ACTIONS(8831), + [aux_sym_put_statement_token1] = ACTIONS(8831), + [aux_sym_unlock_statement_token1] = ACTIONS(8831), + [aux_sym_seek_statement_token1] = ACTIONS(8831), + [sym_reset_statement] = ACTIONS(8831), + [aux_sym_raise_event_statement_token1] = ACTIONS(8831), + [sym_stop_statement] = ACTIONS(8831), + [sym_beep_statement] = ACTIONS(8831), + [aux_sym_unload_statement_token1] = ACTIONS(8831), + [aux_sym_def_type_statement_token1] = ACTIONS(8831), + [aux_sym_def_type_statement_token2] = ACTIONS(8831), + [aux_sym_def_type_statement_token3] = ACTIONS(8831), + [aux_sym_def_type_statement_token4] = ACTIONS(8831), + [aux_sym_def_type_statement_token5] = ACTIONS(8831), + [aux_sym_def_type_statement_token6] = ACTIONS(8831), + [aux_sym_def_type_statement_token7] = ACTIONS(8831), + [aux_sym_def_type_statement_token8] = ACTIONS(8831), + [aux_sym_def_type_statement_token9] = ACTIONS(8831), + [aux_sym_def_type_statement_token10] = ACTIONS(8831), + [aux_sym_def_type_statement_token11] = ACTIONS(8831), + [aux_sym_def_type_statement_token12] = ACTIONS(8831), + [aux_sym_def_type_statement_token13] = ACTIONS(8831), + [aux_sym_def_type_statement_token14] = ACTIONS(8831), + [aux_sym_call_statement_token1] = ACTIONS(8831), + [sym__ambiguous_call_statement] = ACTIONS(8831), + [aux_sym_addressof_expression_token1] = ACTIONS(8831), + [aux_sym_type_of_expression_token1] = ACTIONS(8831), + [aux_sym_unary_expression_token1] = ACTIONS(8831), + [sym_string_literal] = ACTIONS(8833), + [sym_number_literal] = ACTIONS(8833), + [aux_sym_boolean_literal_token1] = ACTIONS(8831), + [aux_sym_boolean_literal_token2] = ACTIONS(8831), + [sym_nothing_literal] = ACTIONS(8831), + [sym_null_literal] = ACTIONS(8831), + [sym_empty_literal] = ACTIONS(8831), + [sym_date_literal] = ACTIONS(8833), + [anon_sym_POUND] = ACTIONS(8831), + }, + [STATE(4311)] = { + [sym_identifier] = ACTIONS(8533), + [sym_newline] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(8535), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8533), + [aux_sym_frm_property_statement_token1] = ACTIONS(8533), + [anon_sym_DOT] = ACTIONS(8533), + [anon_sym_BANG] = ACTIONS(8535), + [aux_sym__attribute_identifier_token1] = ACTIONS(8533), + [aux_sym_option_statement_token3] = ACTIONS(8533), + [aux_sym_type_declaration_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8533), + [aux_sym_enum_declaration_token1] = ACTIONS(8533), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8533), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8533), + [aux_sym_declare_function_statement_token1] = ACTIONS(8533), + [aux_sym_preprocessor_const_token1] = ACTIONS(8533), + [aux_sym__property_get_header_token1] = ACTIONS(8533), + [aux_sym_event_declaration_token1] = ACTIONS(8533), + [sym_static_modifier] = ACTIONS(8533), + [sym__dim_keyword] = ACTIONS(8533), + [sym__redim_keyword] = ACTIONS(8533), + [aux_sym_get_accessor_token1] = ACTIONS(8533), + [aux_sym_set_accessor_token1] = ACTIONS(8533), + [anon_sym_COMMA] = ACTIONS(8535), + [aux_sym_const_declaration_token1] = ACTIONS(8533), + [anon_sym_LPAREN] = ACTIONS(8535), + [aux_sym_as_type_clause_token2] = ACTIONS(8533), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8533), + [aux_sym_visibility_token1] = ACTIONS(8533), + [aux_sym_visibility_token2] = ACTIONS(8533), + [aux_sym_elseif_fragment_token1] = ACTIONS(8533), + [aux_sym_else_fragment_token1] = ACTIONS(8533), + [aux_sym_select_statement_token1] = ACTIONS(8533), + [aux_sym__for_header_token1] = ACTIONS(8533), + [aux_sym_do_statement_token1] = ACTIONS(8533), + [aux_sym_do_condition_token1] = ACTIONS(8533), + [aux_sym_with_statement_token1] = ACTIONS(8533), + [aux_sym_exit_statement_token1] = ACTIONS(8533), + [sym_end_statement] = ACTIONS(8535), + [aux_sym_on_goto_statement_token1] = ACTIONS(8533), + [aux_sym_on_goto_statement_token2] = ACTIONS(8533), + [aux_sym_on_error_statement_token2] = ACTIONS(8533), + [sym__ambiguous_redim_statement] = ACTIONS(8535), + [aux_sym_erase_statement_token1] = ACTIONS(8533), + [aux_sym_open_statement_token1] = ACTIONS(8533), + [aux_sym_file_mode_token2] = ACTIONS(8533), + [aux_sym_file_access_token2] = ACTIONS(8533), + [aux_sym_file_lock_token2] = ACTIONS(8533), + [aux_sym_print_statement_token1] = ACTIONS(8533), + [anon_sym_PLUS] = ACTIONS(8535), + [anon_sym_DASH] = ACTIONS(8533), + [anon_sym_QMARK] = ACTIONS(8535), + [aux_sym_close_statement_token1] = ACTIONS(8533), + [aux_sym_put_statement_token1] = ACTIONS(8533), + [aux_sym_unlock_statement_token1] = ACTIONS(8533), + [aux_sym_seek_statement_token1] = ACTIONS(8533), + [sym_reset_statement] = ACTIONS(8533), + [aux_sym_raise_event_statement_token1] = ACTIONS(8533), + [sym_stop_statement] = ACTIONS(8533), + [sym_beep_statement] = ACTIONS(8533), + [aux_sym_unload_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token2] = ACTIONS(8533), + [aux_sym_def_type_statement_token3] = ACTIONS(8533), + [aux_sym_def_type_statement_token4] = ACTIONS(8533), + [aux_sym_def_type_statement_token5] = ACTIONS(8533), + [aux_sym_def_type_statement_token6] = ACTIONS(8533), + [aux_sym_def_type_statement_token7] = ACTIONS(8533), + [aux_sym_def_type_statement_token8] = ACTIONS(8533), + [aux_sym_def_type_statement_token9] = ACTIONS(8533), + [aux_sym_def_type_statement_token10] = ACTIONS(8533), + [aux_sym_def_type_statement_token11] = ACTIONS(8533), + [aux_sym_def_type_statement_token12] = ACTIONS(8533), + [aux_sym_def_type_statement_token13] = ACTIONS(8533), + [aux_sym_def_type_statement_token14] = ACTIONS(8533), + [aux_sym_call_statement_token1] = ACTIONS(8533), + [sym__ambiguous_call_statement] = ACTIONS(8533), + [aux_sym_addressof_expression_token1] = ACTIONS(8533), + [aux_sym_type_of_expression_token1] = ACTIONS(8533), + [aux_sym_unary_expression_token1] = ACTIONS(8533), + [sym_string_literal] = ACTIONS(8535), + [sym_number_literal] = ACTIONS(8535), + [aux_sym_boolean_literal_token1] = ACTIONS(8533), + [aux_sym_boolean_literal_token2] = ACTIONS(8533), + [sym_nothing_literal] = ACTIONS(8533), + [sym_null_literal] = ACTIONS(8533), + [sym_empty_literal] = ACTIONS(8533), + [sym_date_literal] = ACTIONS(8535), + [anon_sym_POUND] = ACTIONS(8533), + }, + [STATE(4312)] = { + [sym_identifier] = ACTIONS(8109), + [sym_newline] = ACTIONS(8111), + [anon_sym_COLON] = ACTIONS(8111), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8109), + [aux_sym_frm_property_statement_token1] = ACTIONS(8109), + [anon_sym_DOT] = ACTIONS(8109), + [anon_sym_BANG] = ACTIONS(8111), + [aux_sym__attribute_identifier_token1] = ACTIONS(8109), + [aux_sym_option_statement_token3] = ACTIONS(8109), + [aux_sym_type_declaration_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8109), + [aux_sym_enum_declaration_token1] = ACTIONS(8109), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8109), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8109), + [aux_sym_declare_function_statement_token1] = ACTIONS(8109), + [aux_sym_preprocessor_const_token1] = ACTIONS(8109), + [aux_sym__property_get_header_token1] = ACTIONS(8109), + [aux_sym_event_declaration_token1] = ACTIONS(8109), + [sym_static_modifier] = ACTIONS(8109), + [sym__dim_keyword] = ACTIONS(8109), + [sym__redim_keyword] = ACTIONS(8109), + [aux_sym_get_accessor_token1] = ACTIONS(8109), + [aux_sym_set_accessor_token1] = ACTIONS(8109), + [aux_sym_const_declaration_token1] = ACTIONS(8109), + [anon_sym_LPAREN] = ACTIONS(8111), + [aux_sym_as_type_clause_token2] = ACTIONS(8109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8109), + [aux_sym_visibility_token1] = ACTIONS(8109), + [aux_sym_visibility_token2] = ACTIONS(8109), + [aux_sym_elseif_fragment_token1] = ACTIONS(8109), + [aux_sym_else_fragment_token1] = ACTIONS(8109), + [aux_sym_select_statement_token1] = ACTIONS(8109), + [aux_sym__for_header_token1] = ACTIONS(8109), + [aux_sym_do_statement_token1] = ACTIONS(8109), + [aux_sym_do_condition_token1] = ACTIONS(8109), + [aux_sym_with_statement_token1] = ACTIONS(8109), + [aux_sym_exit_statement_token1] = ACTIONS(8109), + [sym_end_statement] = ACTIONS(8111), + [aux_sym_on_goto_statement_token1] = ACTIONS(8109), + [aux_sym_on_goto_statement_token2] = ACTIONS(8109), + [aux_sym_on_error_statement_token2] = ACTIONS(8109), + [sym__ambiguous_redim_statement] = ACTIONS(8111), + [aux_sym_erase_statement_token1] = ACTIONS(8109), + [aux_sym_open_statement_token1] = ACTIONS(8109), + [aux_sym_file_mode_token2] = ACTIONS(8109), + [aux_sym_file_access_token2] = ACTIONS(8109), + [aux_sym_file_lock_token2] = ACTIONS(8109), + [aux_sym_print_statement_token1] = ACTIONS(8109), + [anon_sym_PLUS] = ACTIONS(8111), + [anon_sym_DASH] = ACTIONS(8109), + [anon_sym_SEMI] = ACTIONS(8111), + [anon_sym_QMARK] = ACTIONS(8111), + [aux_sym_close_statement_token1] = ACTIONS(8109), + [aux_sym_put_statement_token1] = ACTIONS(8109), + [aux_sym_unlock_statement_token1] = ACTIONS(8109), + [aux_sym_seek_statement_token1] = ACTIONS(8109), + [sym_reset_statement] = ACTIONS(8109), + [aux_sym_raise_event_statement_token1] = ACTIONS(8109), + [sym_stop_statement] = ACTIONS(8109), + [sym_beep_statement] = ACTIONS(8109), + [aux_sym_unload_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token2] = ACTIONS(8109), + [aux_sym_def_type_statement_token3] = ACTIONS(8109), + [aux_sym_def_type_statement_token4] = ACTIONS(8109), + [aux_sym_def_type_statement_token5] = ACTIONS(8109), + [aux_sym_def_type_statement_token6] = ACTIONS(8109), + [aux_sym_def_type_statement_token7] = ACTIONS(8109), + [aux_sym_def_type_statement_token8] = ACTIONS(8109), + [aux_sym_def_type_statement_token9] = ACTIONS(8109), + [aux_sym_def_type_statement_token10] = ACTIONS(8109), + [aux_sym_def_type_statement_token11] = ACTIONS(8109), + [aux_sym_def_type_statement_token12] = ACTIONS(8109), + [aux_sym_def_type_statement_token13] = ACTIONS(8109), + [aux_sym_def_type_statement_token14] = ACTIONS(8109), + [aux_sym_call_statement_token1] = ACTIONS(8109), + [sym__ambiguous_call_statement] = ACTIONS(8109), + [aux_sym_addressof_expression_token1] = ACTIONS(8109), + [aux_sym_type_of_expression_token1] = ACTIONS(8109), + [aux_sym_unary_expression_token1] = ACTIONS(8109), + [sym_string_literal] = ACTIONS(8111), + [sym_number_literal] = ACTIONS(8111), + [aux_sym_boolean_literal_token1] = ACTIONS(8109), + [aux_sym_boolean_literal_token2] = ACTIONS(8109), + [sym_nothing_literal] = ACTIONS(8109), + [sym_null_literal] = ACTIONS(8109), + [sym_empty_literal] = ACTIONS(8109), + [sym_date_literal] = ACTIONS(8111), + [anon_sym_POUND] = ACTIONS(8109), + }, + [STATE(4313)] = { + [sym_identifier] = ACTIONS(9897), + [sym_newline] = ACTIONS(8819), + [anon_sym_COLON] = ACTIONS(8819), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8821), + [aux_sym_frm_property_statement_token1] = ACTIONS(8821), + [anon_sym_DOT] = ACTIONS(8821), + [anon_sym_BANG] = ACTIONS(8819), + [aux_sym__attribute_identifier_token1] = ACTIONS(8821), + [aux_sym_option_statement_token3] = ACTIONS(8821), + [aux_sym_type_declaration_token1] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8821), + [aux_sym_enum_declaration_token1] = ACTIONS(8821), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8821), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8821), + [aux_sym_declare_function_statement_token1] = ACTIONS(8821), + [aux_sym_preprocessor_const_token1] = ACTIONS(8821), + [aux_sym__property_get_header_token1] = ACTIONS(8821), + [aux_sym_event_declaration_token1] = ACTIONS(8821), + [sym_static_modifier] = ACTIONS(8821), + [sym__dim_keyword] = ACTIONS(8821), + [sym__redim_keyword] = ACTIONS(8821), + [aux_sym_get_accessor_token1] = ACTIONS(8821), + [aux_sym_set_accessor_token1] = ACTIONS(8821), + [aux_sym_const_declaration_token1] = ACTIONS(8821), + [anon_sym_LPAREN] = ACTIONS(8819), + [aux_sym_as_type_clause_token2] = ACTIONS(8821), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8821), + [aux_sym_visibility_token1] = ACTIONS(8821), + [aux_sym_visibility_token2] = ACTIONS(8821), + [aux_sym_elseif_fragment_token1] = ACTIONS(8821), + [aux_sym_else_fragment_token1] = ACTIONS(8821), + [aux_sym_select_statement_token1] = ACTIONS(8821), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9899), + [aux_sym__for_header_token1] = ACTIONS(8821), + [aux_sym_do_statement_token1] = ACTIONS(8821), + [aux_sym_do_condition_token1] = ACTIONS(8821), + [aux_sym_with_statement_token1] = ACTIONS(8821), + [aux_sym_exit_statement_token1] = ACTIONS(8821), + [sym_end_statement] = ACTIONS(8819), + [aux_sym_on_goto_statement_token1] = ACTIONS(8821), + [aux_sym_on_goto_statement_token2] = ACTIONS(8821), + [aux_sym_on_error_statement_token2] = ACTIONS(8821), + [sym__ambiguous_redim_statement] = ACTIONS(8819), + [aux_sym_erase_statement_token1] = ACTIONS(8821), + [aux_sym_open_statement_token1] = ACTIONS(8821), + [aux_sym_file_mode_token2] = ACTIONS(8821), + [aux_sym_file_access_token2] = ACTIONS(8821), + [aux_sym_file_lock_token2] = ACTIONS(8821), + [aux_sym_print_statement_token1] = ACTIONS(8821), + [anon_sym_PLUS] = ACTIONS(8819), + [anon_sym_DASH] = ACTIONS(8821), + [anon_sym_QMARK] = ACTIONS(8819), + [aux_sym_close_statement_token1] = ACTIONS(8821), + [aux_sym_put_statement_token1] = ACTIONS(8821), + [aux_sym_unlock_statement_token1] = ACTIONS(8821), + [aux_sym_seek_statement_token1] = ACTIONS(8821), + [sym_reset_statement] = ACTIONS(8821), + [aux_sym_raise_event_statement_token1] = ACTIONS(8821), + [sym_stop_statement] = ACTIONS(8821), + [sym_beep_statement] = ACTIONS(8821), + [aux_sym_unload_statement_token1] = ACTIONS(8821), + [aux_sym_def_type_statement_token1] = ACTIONS(8821), + [aux_sym_def_type_statement_token2] = ACTIONS(8821), + [aux_sym_def_type_statement_token3] = ACTIONS(8821), + [aux_sym_def_type_statement_token4] = ACTIONS(8821), + [aux_sym_def_type_statement_token5] = ACTIONS(8821), + [aux_sym_def_type_statement_token6] = ACTIONS(8821), + [aux_sym_def_type_statement_token7] = ACTIONS(8821), + [aux_sym_def_type_statement_token8] = ACTIONS(8821), + [aux_sym_def_type_statement_token9] = ACTIONS(8821), + [aux_sym_def_type_statement_token10] = ACTIONS(8821), + [aux_sym_def_type_statement_token11] = ACTIONS(8821), + [aux_sym_def_type_statement_token12] = ACTIONS(8821), + [aux_sym_def_type_statement_token13] = ACTIONS(8821), + [aux_sym_def_type_statement_token14] = ACTIONS(8821), + [aux_sym_call_statement_token1] = ACTIONS(8821), + [sym__ambiguous_call_statement] = ACTIONS(8821), + [aux_sym_addressof_expression_token1] = ACTIONS(8821), + [aux_sym_type_of_expression_token1] = ACTIONS(8821), + [aux_sym_unary_expression_token1] = ACTIONS(8821), + [sym_string_literal] = ACTIONS(8819), + [sym_number_literal] = ACTIONS(9901), + [aux_sym_boolean_literal_token1] = ACTIONS(8821), + [aux_sym_boolean_literal_token2] = ACTIONS(8821), + [sym_nothing_literal] = ACTIONS(8821), + [sym_null_literal] = ACTIONS(8821), + [sym_empty_literal] = ACTIONS(8821), + [sym_date_literal] = ACTIONS(8819), + [anon_sym_POUND] = ACTIONS(8821), + }, + [STATE(4314)] = { + [sym_parameter_list] = STATE(4534), + [sym_identifier] = ACTIONS(8966), + [sym_newline] = ACTIONS(8968), + [anon_sym_COLON] = ACTIONS(8968), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8966), + [aux_sym_frm_property_statement_token1] = ACTIONS(8966), + [anon_sym_DOT] = ACTIONS(8966), + [anon_sym_BANG] = ACTIONS(8968), + [aux_sym__attribute_identifier_token1] = ACTIONS(8966), + [aux_sym_option_statement_token3] = ACTIONS(8966), + [aux_sym_type_declaration_token1] = ACTIONS(8966), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8966), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8966), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8966), + [aux_sym_enum_declaration_token1] = ACTIONS(8966), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8966), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8966), + [aux_sym_declare_function_statement_token1] = ACTIONS(8966), + [aux_sym_preprocessor_const_token1] = ACTIONS(8966), + [aux_sym__property_get_header_token1] = ACTIONS(8966), + [aux_sym_event_declaration_token1] = ACTIONS(8966), + [sym_static_modifier] = ACTIONS(8966), + [sym__dim_keyword] = ACTIONS(8966), + [sym__redim_keyword] = ACTIONS(8966), + [aux_sym_get_accessor_token1] = ACTIONS(8966), + [aux_sym_set_accessor_token1] = ACTIONS(8966), + [aux_sym_const_declaration_token1] = ACTIONS(8966), + [anon_sym_LPAREN] = ACTIONS(9014), + [aux_sym_as_type_clause_token2] = ACTIONS(8966), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8966), + [aux_sym_visibility_token1] = ACTIONS(8966), + [aux_sym_visibility_token2] = ACTIONS(8966), + [aux_sym_elseif_fragment_token1] = ACTIONS(8966), + [aux_sym_else_fragment_token1] = ACTIONS(8966), + [aux_sym_select_statement_token1] = ACTIONS(8966), + [aux_sym__for_header_token1] = ACTIONS(8966), + [aux_sym_do_statement_token1] = ACTIONS(8966), + [aux_sym_do_condition_token1] = ACTIONS(8966), + [aux_sym_with_statement_token1] = ACTIONS(8966), + [aux_sym_exit_statement_token1] = ACTIONS(8966), + [sym_end_statement] = ACTIONS(8968), + [aux_sym_on_goto_statement_token1] = ACTIONS(8966), + [aux_sym_on_goto_statement_token2] = ACTIONS(8966), + [aux_sym_on_error_statement_token2] = ACTIONS(8966), + [sym__ambiguous_redim_statement] = ACTIONS(8968), + [aux_sym_erase_statement_token1] = ACTIONS(8966), + [aux_sym_open_statement_token1] = ACTIONS(8966), + [aux_sym_file_mode_token2] = ACTIONS(8966), + [aux_sym_file_access_token2] = ACTIONS(8966), + [aux_sym_file_lock_token2] = ACTIONS(8966), + [aux_sym_print_statement_token1] = ACTIONS(8966), + [anon_sym_PLUS] = ACTIONS(8968), + [anon_sym_DASH] = ACTIONS(8966), + [anon_sym_QMARK] = ACTIONS(8968), + [aux_sym_close_statement_token1] = ACTIONS(8966), + [aux_sym_put_statement_token1] = ACTIONS(8966), + [aux_sym_unlock_statement_token1] = ACTIONS(8966), + [aux_sym_seek_statement_token1] = ACTIONS(8966), + [sym_reset_statement] = ACTIONS(8966), + [aux_sym_raise_event_statement_token1] = ACTIONS(8966), + [sym_stop_statement] = ACTIONS(8966), + [sym_beep_statement] = ACTIONS(8966), + [aux_sym_unload_statement_token1] = ACTIONS(8966), + [aux_sym_def_type_statement_token1] = ACTIONS(8966), + [aux_sym_def_type_statement_token2] = ACTIONS(8966), + [aux_sym_def_type_statement_token3] = ACTIONS(8966), + [aux_sym_def_type_statement_token4] = ACTIONS(8966), + [aux_sym_def_type_statement_token5] = ACTIONS(8966), + [aux_sym_def_type_statement_token6] = ACTIONS(8966), + [aux_sym_def_type_statement_token7] = ACTIONS(8966), + [aux_sym_def_type_statement_token8] = ACTIONS(8966), + [aux_sym_def_type_statement_token9] = ACTIONS(8966), + [aux_sym_def_type_statement_token10] = ACTIONS(8966), + [aux_sym_def_type_statement_token11] = ACTIONS(8966), + [aux_sym_def_type_statement_token12] = ACTIONS(8966), + [aux_sym_def_type_statement_token13] = ACTIONS(8966), + [aux_sym_def_type_statement_token14] = ACTIONS(8966), + [aux_sym_call_statement_token1] = ACTIONS(8966), + [sym__ambiguous_call_statement] = ACTIONS(8966), + [aux_sym_addressof_expression_token1] = ACTIONS(8966), + [aux_sym_type_of_expression_token1] = ACTIONS(8966), + [aux_sym_unary_expression_token1] = ACTIONS(8966), + [sym_string_literal] = ACTIONS(8968), + [sym_number_literal] = ACTIONS(8968), + [aux_sym_boolean_literal_token1] = ACTIONS(8966), + [aux_sym_boolean_literal_token2] = ACTIONS(8966), + [sym_nothing_literal] = ACTIONS(8966), + [sym_null_literal] = ACTIONS(8966), + [sym_empty_literal] = ACTIONS(8966), + [sym_date_literal] = ACTIONS(8968), + [anon_sym_POUND] = ACTIONS(8966), + }, + [STATE(4315)] = { + [sym_identifier] = ACTIONS(8635), + [sym_newline] = ACTIONS(8637), + [anon_sym_COLON] = ACTIONS(8637), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8635), + [aux_sym_frm_property_statement_token1] = ACTIONS(8635), + [anon_sym_DOT] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(8637), + [aux_sym__attribute_identifier_token1] = ACTIONS(8635), + [aux_sym_option_statement_token3] = ACTIONS(8635), + [aux_sym_type_declaration_token1] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8635), + [aux_sym_enum_declaration_token1] = ACTIONS(8635), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8635), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8635), + [aux_sym_declare_function_statement_token1] = ACTIONS(8635), + [aux_sym_preprocessor_const_token1] = ACTIONS(8635), + [aux_sym__property_get_header_token1] = ACTIONS(8635), + [aux_sym_event_declaration_token1] = ACTIONS(8635), + [sym_static_modifier] = ACTIONS(8635), + [sym__dim_keyword] = ACTIONS(8635), + [sym__redim_keyword] = ACTIONS(8635), + [aux_sym_get_accessor_token1] = ACTIONS(8635), + [aux_sym_set_accessor_token1] = ACTIONS(8635), + [anon_sym_COMMA] = ACTIONS(9903), + [aux_sym_const_declaration_token1] = ACTIONS(8635), + [anon_sym_LPAREN] = ACTIONS(8637), + [aux_sym_as_type_clause_token2] = ACTIONS(8635), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8635), + [aux_sym_visibility_token1] = ACTIONS(8635), + [aux_sym_visibility_token2] = ACTIONS(8635), + [aux_sym_elseif_fragment_token1] = ACTIONS(8635), + [aux_sym_else_fragment_token1] = ACTIONS(8635), + [aux_sym_select_statement_token1] = ACTIONS(8635), + [aux_sym__for_header_token1] = ACTIONS(8635), + [aux_sym_do_statement_token1] = ACTIONS(8635), + [aux_sym_do_condition_token1] = ACTIONS(8635), + [aux_sym_with_statement_token1] = ACTIONS(8635), + [aux_sym_exit_statement_token1] = ACTIONS(8635), + [sym_end_statement] = ACTIONS(8637), + [aux_sym_on_goto_statement_token1] = ACTIONS(8635), + [aux_sym_on_goto_statement_token2] = ACTIONS(8635), + [aux_sym_on_error_statement_token2] = ACTIONS(8635), + [sym__ambiguous_redim_statement] = ACTIONS(8637), + [aux_sym_erase_statement_token1] = ACTIONS(8635), + [aux_sym_open_statement_token1] = ACTIONS(8635), + [aux_sym_file_mode_token2] = ACTIONS(8635), + [aux_sym_file_access_token2] = ACTIONS(8635), + [aux_sym_file_lock_token2] = ACTIONS(8635), + [aux_sym_print_statement_token1] = ACTIONS(8635), + [anon_sym_PLUS] = ACTIONS(8637), + [anon_sym_DASH] = ACTIONS(8635), + [anon_sym_QMARK] = ACTIONS(8637), + [aux_sym_close_statement_token1] = ACTIONS(8635), + [aux_sym_put_statement_token1] = ACTIONS(8635), + [aux_sym_unlock_statement_token1] = ACTIONS(8635), + [aux_sym_seek_statement_token1] = ACTIONS(8635), + [sym_reset_statement] = ACTIONS(8635), + [aux_sym_raise_event_statement_token1] = ACTIONS(8635), + [sym_stop_statement] = ACTIONS(8635), + [sym_beep_statement] = ACTIONS(8635), + [aux_sym_unload_statement_token1] = ACTIONS(8635), + [aux_sym_def_type_statement_token1] = ACTIONS(8635), + [aux_sym_def_type_statement_token2] = ACTIONS(8635), + [aux_sym_def_type_statement_token3] = ACTIONS(8635), + [aux_sym_def_type_statement_token4] = ACTIONS(8635), + [aux_sym_def_type_statement_token5] = ACTIONS(8635), + [aux_sym_def_type_statement_token6] = ACTIONS(8635), + [aux_sym_def_type_statement_token7] = ACTIONS(8635), + [aux_sym_def_type_statement_token8] = ACTIONS(8635), + [aux_sym_def_type_statement_token9] = ACTIONS(8635), + [aux_sym_def_type_statement_token10] = ACTIONS(8635), + [aux_sym_def_type_statement_token11] = ACTIONS(8635), + [aux_sym_def_type_statement_token12] = ACTIONS(8635), + [aux_sym_def_type_statement_token13] = ACTIONS(8635), + [aux_sym_def_type_statement_token14] = ACTIONS(8635), + [aux_sym_call_statement_token1] = ACTIONS(8635), + [sym__ambiguous_call_statement] = ACTIONS(8635), + [aux_sym_addressof_expression_token1] = ACTIONS(8635), + [aux_sym_type_of_expression_token1] = ACTIONS(8635), + [aux_sym_unary_expression_token1] = ACTIONS(8635), + [sym_string_literal] = ACTIONS(8637), + [sym_number_literal] = ACTIONS(8637), + [aux_sym_boolean_literal_token1] = ACTIONS(8635), + [aux_sym_boolean_literal_token2] = ACTIONS(8635), + [sym_nothing_literal] = ACTIONS(8635), + [sym_null_literal] = ACTIONS(8635), + [sym_empty_literal] = ACTIONS(8635), + [sym_date_literal] = ACTIONS(8637), + [anon_sym_POUND] = ACTIONS(8635), + }, + [STATE(4316)] = { + [sym_identifier] = ACTIONS(8974), + [sym_newline] = ACTIONS(8976), + [anon_sym_COLON] = ACTIONS(8976), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8974), + [aux_sym_frm_property_statement_token1] = ACTIONS(8974), + [anon_sym_DOT] = ACTIONS(8974), + [anon_sym_BANG] = ACTIONS(8976), + [aux_sym__attribute_identifier_token1] = ACTIONS(8974), + [aux_sym_option_statement_token3] = ACTIONS(8974), + [aux_sym_type_declaration_token1] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8974), + [aux_sym_enum_declaration_token1] = ACTIONS(8974), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8974), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8974), + [aux_sym_declare_function_statement_token1] = ACTIONS(8974), + [aux_sym_preprocessor_const_token1] = ACTIONS(8974), + [aux_sym__property_get_header_token1] = ACTIONS(8974), + [aux_sym_event_declaration_token1] = ACTIONS(8974), + [sym_static_modifier] = ACTIONS(8974), + [sym__dim_keyword] = ACTIONS(8974), + [sym__redim_keyword] = ACTIONS(8974), + [aux_sym_get_accessor_token1] = ACTIONS(8974), + [aux_sym_set_accessor_token1] = ACTIONS(8974), + [anon_sym_COMMA] = ACTIONS(9905), + [aux_sym_const_declaration_token1] = ACTIONS(8974), + [anon_sym_LPAREN] = ACTIONS(8976), + [aux_sym_as_type_clause_token2] = ACTIONS(8974), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8974), + [aux_sym_visibility_token1] = ACTIONS(8974), + [aux_sym_visibility_token2] = ACTIONS(8974), + [aux_sym_elseif_fragment_token1] = ACTIONS(8974), + [aux_sym_else_fragment_token1] = ACTIONS(8974), + [aux_sym_select_statement_token1] = ACTIONS(8974), + [aux_sym__for_header_token1] = ACTIONS(8974), + [aux_sym_do_statement_token1] = ACTIONS(8974), + [aux_sym_do_condition_token1] = ACTIONS(8974), + [aux_sym_with_statement_token1] = ACTIONS(8974), + [aux_sym_exit_statement_token1] = ACTIONS(8974), + [sym_end_statement] = ACTIONS(8976), + [aux_sym_on_goto_statement_token1] = ACTIONS(8974), + [aux_sym_on_goto_statement_token2] = ACTIONS(8974), + [aux_sym_on_error_statement_token2] = ACTIONS(8974), + [sym__ambiguous_redim_statement] = ACTIONS(8976), + [aux_sym_erase_statement_token1] = ACTIONS(8974), + [aux_sym_open_statement_token1] = ACTIONS(8974), + [aux_sym_file_mode_token2] = ACTIONS(8974), + [aux_sym_file_access_token2] = ACTIONS(8974), + [aux_sym_file_lock_token2] = ACTIONS(8974), + [aux_sym_print_statement_token1] = ACTIONS(8974), + [anon_sym_PLUS] = ACTIONS(8976), + [anon_sym_DASH] = ACTIONS(8974), + [anon_sym_QMARK] = ACTIONS(8976), + [aux_sym_close_statement_token1] = ACTIONS(8974), + [aux_sym_put_statement_token1] = ACTIONS(8974), + [aux_sym_unlock_statement_token1] = ACTIONS(8974), + [aux_sym_seek_statement_token1] = ACTIONS(8974), + [sym_reset_statement] = ACTIONS(8974), + [aux_sym_raise_event_statement_token1] = ACTIONS(8974), + [sym_stop_statement] = ACTIONS(8974), + [sym_beep_statement] = ACTIONS(8974), + [aux_sym_unload_statement_token1] = ACTIONS(8974), + [aux_sym_def_type_statement_token1] = ACTIONS(8974), + [aux_sym_def_type_statement_token2] = ACTIONS(8974), + [aux_sym_def_type_statement_token3] = ACTIONS(8974), + [aux_sym_def_type_statement_token4] = ACTIONS(8974), + [aux_sym_def_type_statement_token5] = ACTIONS(8974), + [aux_sym_def_type_statement_token6] = ACTIONS(8974), + [aux_sym_def_type_statement_token7] = ACTIONS(8974), + [aux_sym_def_type_statement_token8] = ACTIONS(8974), + [aux_sym_def_type_statement_token9] = ACTIONS(8974), + [aux_sym_def_type_statement_token10] = ACTIONS(8974), + [aux_sym_def_type_statement_token11] = ACTIONS(8974), + [aux_sym_def_type_statement_token12] = ACTIONS(8974), + [aux_sym_def_type_statement_token13] = ACTIONS(8974), + [aux_sym_def_type_statement_token14] = ACTIONS(8974), + [aux_sym_call_statement_token1] = ACTIONS(8974), + [sym__ambiguous_call_statement] = ACTIONS(8974), + [aux_sym_addressof_expression_token1] = ACTIONS(8974), + [aux_sym_type_of_expression_token1] = ACTIONS(8974), + [aux_sym_unary_expression_token1] = ACTIONS(8974), + [sym_string_literal] = ACTIONS(8976), + [sym_number_literal] = ACTIONS(8976), + [aux_sym_boolean_literal_token1] = ACTIONS(8974), + [aux_sym_boolean_literal_token2] = ACTIONS(8974), + [sym_nothing_literal] = ACTIONS(8974), + [sym_null_literal] = ACTIONS(8974), + [sym_empty_literal] = ACTIONS(8974), + [sym_date_literal] = ACTIONS(8976), + [anon_sym_POUND] = ACTIONS(8974), + }, + [STATE(4317)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(4318), + [sym_identifier] = ACTIONS(8692), + [sym_newline] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(9853), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8692), + [aux_sym_frm_property_statement_token1] = ACTIONS(8692), + [anon_sym_DOT] = ACTIONS(8692), + [anon_sym_BANG] = ACTIONS(8694), + [aux_sym__attribute_identifier_token1] = ACTIONS(8692), + [aux_sym_option_statement_token3] = ACTIONS(8692), + [aux_sym_type_declaration_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8692), + [aux_sym_enum_declaration_token1] = ACTIONS(8692), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8692), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8692), + [aux_sym_declare_function_statement_token1] = ACTIONS(8692), + [aux_sym_preprocessor_const_token1] = ACTIONS(8692), + [aux_sym__property_get_header_token1] = ACTIONS(8692), + [aux_sym_event_declaration_token1] = ACTIONS(8692), + [sym_static_modifier] = ACTIONS(8692), + [sym__dim_keyword] = ACTIONS(8692), + [sym__redim_keyword] = ACTIONS(8692), + [aux_sym_get_accessor_token1] = ACTIONS(8692), + [aux_sym_set_accessor_token1] = ACTIONS(8692), + [aux_sym_const_declaration_token1] = ACTIONS(8692), + [anon_sym_LPAREN] = ACTIONS(8694), + [aux_sym_as_type_clause_token2] = ACTIONS(8692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8692), + [aux_sym_visibility_token1] = ACTIONS(8692), + [aux_sym_visibility_token2] = ACTIONS(8692), + [aux_sym_elseif_fragment_token1] = ACTIONS(8692), + [aux_sym_else_fragment_token1] = ACTIONS(9907), + [aux_sym_select_statement_token1] = ACTIONS(8692), + [aux_sym__for_header_token1] = ACTIONS(8692), + [aux_sym_do_statement_token1] = ACTIONS(8692), + [aux_sym_do_condition_token1] = ACTIONS(8692), + [aux_sym_with_statement_token1] = ACTIONS(8692), + [aux_sym_exit_statement_token1] = ACTIONS(8692), + [sym_end_statement] = ACTIONS(8694), + [aux_sym_on_goto_statement_token1] = ACTIONS(8692), + [aux_sym_on_goto_statement_token2] = ACTIONS(8692), + [aux_sym_on_error_statement_token2] = ACTIONS(8692), + [sym__ambiguous_redim_statement] = ACTIONS(8694), + [aux_sym_erase_statement_token1] = ACTIONS(8692), + [aux_sym_open_statement_token1] = ACTIONS(8692), + [aux_sym_file_mode_token2] = ACTIONS(8692), + [aux_sym_file_access_token2] = ACTIONS(8692), + [aux_sym_file_lock_token2] = ACTIONS(8692), + [aux_sym_print_statement_token1] = ACTIONS(8692), + [anon_sym_PLUS] = ACTIONS(8694), + [anon_sym_DASH] = ACTIONS(8692), + [anon_sym_QMARK] = ACTIONS(8694), + [aux_sym_close_statement_token1] = ACTIONS(8692), + [aux_sym_put_statement_token1] = ACTIONS(8692), + [aux_sym_unlock_statement_token1] = ACTIONS(8692), + [aux_sym_seek_statement_token1] = ACTIONS(8692), + [sym_reset_statement] = ACTIONS(8692), + [aux_sym_raise_event_statement_token1] = ACTIONS(8692), + [sym_stop_statement] = ACTIONS(8692), + [sym_beep_statement] = ACTIONS(8692), + [aux_sym_unload_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token2] = ACTIONS(8692), + [aux_sym_def_type_statement_token3] = ACTIONS(8692), + [aux_sym_def_type_statement_token4] = ACTIONS(8692), + [aux_sym_def_type_statement_token5] = ACTIONS(8692), + [aux_sym_def_type_statement_token6] = ACTIONS(8692), + [aux_sym_def_type_statement_token7] = ACTIONS(8692), + [aux_sym_def_type_statement_token8] = ACTIONS(8692), + [aux_sym_def_type_statement_token9] = ACTIONS(8692), + [aux_sym_def_type_statement_token10] = ACTIONS(8692), + [aux_sym_def_type_statement_token11] = ACTIONS(8692), + [aux_sym_def_type_statement_token12] = ACTIONS(8692), + [aux_sym_def_type_statement_token13] = ACTIONS(8692), + [aux_sym_def_type_statement_token14] = ACTIONS(8692), + [aux_sym_call_statement_token1] = ACTIONS(8692), + [sym__ambiguous_call_statement] = ACTIONS(8692), + [aux_sym_addressof_expression_token1] = ACTIONS(8692), + [aux_sym_type_of_expression_token1] = ACTIONS(8692), + [aux_sym_unary_expression_token1] = ACTIONS(8692), + [sym_string_literal] = ACTIONS(8694), + [sym_number_literal] = ACTIONS(8694), + [aux_sym_boolean_literal_token1] = ACTIONS(8692), + [aux_sym_boolean_literal_token2] = ACTIONS(8692), + [sym_nothing_literal] = ACTIONS(8692), + [sym_null_literal] = ACTIONS(8692), + [sym_empty_literal] = ACTIONS(8692), + [sym_date_literal] = ACTIONS(8694), + [anon_sym_POUND] = ACTIONS(8692), + }, + [STATE(4318)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(4202), + [sym_identifier] = ACTIONS(8772), + [sym_newline] = ACTIONS(8774), + [anon_sym_COLON] = ACTIONS(8774), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8772), + [aux_sym_frm_property_statement_token1] = ACTIONS(8772), + [anon_sym_DOT] = ACTIONS(8772), + [anon_sym_BANG] = ACTIONS(8774), + [aux_sym__attribute_identifier_token1] = ACTIONS(8772), + [aux_sym_option_statement_token3] = ACTIONS(8772), + [aux_sym_type_declaration_token1] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8772), + [aux_sym_enum_declaration_token1] = ACTIONS(8772), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8772), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8772), + [aux_sym_declare_function_statement_token1] = ACTIONS(8772), + [aux_sym_preprocessor_const_token1] = ACTIONS(8772), + [aux_sym__property_get_header_token1] = ACTIONS(8772), + [aux_sym_event_declaration_token1] = ACTIONS(8772), + [sym_static_modifier] = ACTIONS(8772), + [sym__dim_keyword] = ACTIONS(8772), + [sym__redim_keyword] = ACTIONS(8772), + [aux_sym_get_accessor_token1] = ACTIONS(8772), + [aux_sym_set_accessor_token1] = ACTIONS(8772), + [aux_sym_const_declaration_token1] = ACTIONS(8772), + [anon_sym_LPAREN] = ACTIONS(8774), + [aux_sym_as_type_clause_token2] = ACTIONS(8772), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8772), + [aux_sym_visibility_token1] = ACTIONS(8772), + [aux_sym_visibility_token2] = ACTIONS(8772), + [aux_sym_elseif_fragment_token1] = ACTIONS(8772), + [aux_sym_else_fragment_token1] = ACTIONS(8772), + [aux_sym_select_statement_token1] = ACTIONS(8772), + [aux_sym__for_header_token1] = ACTIONS(8772), + [aux_sym_do_statement_token1] = ACTIONS(8772), + [aux_sym_do_condition_token1] = ACTIONS(8772), + [aux_sym_with_statement_token1] = ACTIONS(8772), + [aux_sym_exit_statement_token1] = ACTIONS(8772), + [sym_end_statement] = ACTIONS(8774), + [aux_sym_on_goto_statement_token1] = ACTIONS(8772), + [aux_sym_on_goto_statement_token2] = ACTIONS(8772), + [aux_sym_on_error_statement_token2] = ACTIONS(8772), + [sym__ambiguous_redim_statement] = ACTIONS(8774), + [aux_sym_erase_statement_token1] = ACTIONS(8772), + [aux_sym_open_statement_token1] = ACTIONS(8772), + [aux_sym_file_mode_token2] = ACTIONS(8772), + [aux_sym_file_access_token2] = ACTIONS(8772), + [aux_sym_file_lock_token2] = ACTIONS(8772), + [aux_sym_print_statement_token1] = ACTIONS(8772), + [anon_sym_PLUS] = ACTIONS(8774), + [anon_sym_DASH] = ACTIONS(8772), + [anon_sym_QMARK] = ACTIONS(8774), + [aux_sym_close_statement_token1] = ACTIONS(8772), + [aux_sym_put_statement_token1] = ACTIONS(8772), + [aux_sym_unlock_statement_token1] = ACTIONS(8772), + [aux_sym_seek_statement_token1] = ACTIONS(8772), + [sym_reset_statement] = ACTIONS(8772), + [aux_sym_raise_event_statement_token1] = ACTIONS(8772), + [sym_stop_statement] = ACTIONS(8772), + [sym_beep_statement] = ACTIONS(8772), + [aux_sym_unload_statement_token1] = ACTIONS(8772), + [aux_sym_def_type_statement_token1] = ACTIONS(8772), + [aux_sym_def_type_statement_token2] = ACTIONS(8772), + [aux_sym_def_type_statement_token3] = ACTIONS(8772), + [aux_sym_def_type_statement_token4] = ACTIONS(8772), + [aux_sym_def_type_statement_token5] = ACTIONS(8772), + [aux_sym_def_type_statement_token6] = ACTIONS(8772), + [aux_sym_def_type_statement_token7] = ACTIONS(8772), + [aux_sym_def_type_statement_token8] = ACTIONS(8772), + [aux_sym_def_type_statement_token9] = ACTIONS(8772), + [aux_sym_def_type_statement_token10] = ACTIONS(8772), + [aux_sym_def_type_statement_token11] = ACTIONS(8772), + [aux_sym_def_type_statement_token12] = ACTIONS(8772), + [aux_sym_def_type_statement_token13] = ACTIONS(8772), + [aux_sym_def_type_statement_token14] = ACTIONS(8772), + [aux_sym_call_statement_token1] = ACTIONS(8772), + [sym__ambiguous_call_statement] = ACTIONS(8772), + [aux_sym_addressof_expression_token1] = ACTIONS(8772), + [aux_sym_type_of_expression_token1] = ACTIONS(8772), + [aux_sym_unary_expression_token1] = ACTIONS(8772), + [sym_string_literal] = ACTIONS(8774), + [sym_number_literal] = ACTIONS(8774), + [aux_sym_boolean_literal_token1] = ACTIONS(8772), + [aux_sym_boolean_literal_token2] = ACTIONS(8772), + [sym_nothing_literal] = ACTIONS(8772), + [sym_null_literal] = ACTIONS(8772), + [sym_empty_literal] = ACTIONS(8772), + [sym_date_literal] = ACTIONS(8774), + [anon_sym_POUND] = ACTIONS(8772), + }, + [STATE(4319)] = { + [sym_argument_list] = STATE(10051), + [sym_identifier] = ACTIONS(8794), + [sym_newline] = ACTIONS(8796), + [anon_sym_COLON] = ACTIONS(8796), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8794), + [aux_sym_frm_property_statement_token1] = ACTIONS(8794), + [anon_sym_DOT] = ACTIONS(8794), + [anon_sym_BANG] = ACTIONS(8796), + [aux_sym__attribute_identifier_token1] = ACTIONS(8794), + [aux_sym_option_statement_token3] = ACTIONS(8794), + [aux_sym_type_declaration_token1] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8794), + [aux_sym_enum_declaration_token1] = ACTIONS(8794), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8794), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8794), + [aux_sym_declare_function_statement_token1] = ACTIONS(8794), + [aux_sym_preprocessor_const_token1] = ACTIONS(8794), + [aux_sym__property_get_header_token1] = ACTIONS(8794), + [aux_sym_event_declaration_token1] = ACTIONS(8794), + [sym_static_modifier] = ACTIONS(8794), + [sym__dim_keyword] = ACTIONS(8794), + [sym__redim_keyword] = ACTIONS(8794), + [aux_sym_get_accessor_token1] = ACTIONS(8794), + [aux_sym_set_accessor_token1] = ACTIONS(8794), + [aux_sym_const_declaration_token1] = ACTIONS(8794), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(8794), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8794), + [aux_sym_visibility_token1] = ACTIONS(8794), + [aux_sym_visibility_token2] = ACTIONS(8794), + [aux_sym_elseif_fragment_token1] = ACTIONS(8794), + [aux_sym_else_fragment_token1] = ACTIONS(8794), + [aux_sym_select_statement_token1] = ACTIONS(8794), + [aux_sym__for_header_token1] = ACTIONS(8794), + [aux_sym_do_statement_token1] = ACTIONS(8794), + [aux_sym_do_condition_token1] = ACTIONS(8794), + [aux_sym_with_statement_token1] = ACTIONS(8794), + [aux_sym_exit_statement_token1] = ACTIONS(8794), + [sym_end_statement] = ACTIONS(8796), + [aux_sym_on_goto_statement_token1] = ACTIONS(8794), + [aux_sym_on_goto_statement_token2] = ACTIONS(8794), + [aux_sym_on_error_statement_token2] = ACTIONS(8794), + [sym__ambiguous_redim_statement] = ACTIONS(8796), + [aux_sym_erase_statement_token1] = ACTIONS(8794), + [aux_sym_open_statement_token1] = ACTIONS(8794), + [aux_sym_file_mode_token2] = ACTIONS(8794), + [aux_sym_file_access_token2] = ACTIONS(8794), + [aux_sym_file_lock_token2] = ACTIONS(8794), + [aux_sym_print_statement_token1] = ACTIONS(8794), + [anon_sym_PLUS] = ACTIONS(8796), + [anon_sym_DASH] = ACTIONS(8794), + [anon_sym_QMARK] = ACTIONS(8796), + [aux_sym_close_statement_token1] = ACTIONS(8794), + [aux_sym_put_statement_token1] = ACTIONS(8794), + [aux_sym_unlock_statement_token1] = ACTIONS(8794), + [aux_sym_seek_statement_token1] = ACTIONS(8794), + [sym_reset_statement] = ACTIONS(8794), + [aux_sym_raise_event_statement_token1] = ACTIONS(8794), + [sym_stop_statement] = ACTIONS(8794), + [sym_beep_statement] = ACTIONS(8794), + [aux_sym_unload_statement_token1] = ACTIONS(8794), + [aux_sym_def_type_statement_token1] = ACTIONS(8794), + [aux_sym_def_type_statement_token2] = ACTIONS(8794), + [aux_sym_def_type_statement_token3] = ACTIONS(8794), + [aux_sym_def_type_statement_token4] = ACTIONS(8794), + [aux_sym_def_type_statement_token5] = ACTIONS(8794), + [aux_sym_def_type_statement_token6] = ACTIONS(8794), + [aux_sym_def_type_statement_token7] = ACTIONS(8794), + [aux_sym_def_type_statement_token8] = ACTIONS(8794), + [aux_sym_def_type_statement_token9] = ACTIONS(8794), + [aux_sym_def_type_statement_token10] = ACTIONS(8794), + [aux_sym_def_type_statement_token11] = ACTIONS(8794), + [aux_sym_def_type_statement_token12] = ACTIONS(8794), + [aux_sym_def_type_statement_token13] = ACTIONS(8794), + [aux_sym_def_type_statement_token14] = ACTIONS(8794), + [aux_sym_call_statement_token1] = ACTIONS(8794), + [sym__ambiguous_call_statement] = ACTIONS(8794), + [aux_sym_addressof_expression_token1] = ACTIONS(8794), + [aux_sym_type_of_expression_token1] = ACTIONS(8794), + [aux_sym_unary_expression_token1] = ACTIONS(8794), + [sym_string_literal] = ACTIONS(8796), + [sym_number_literal] = ACTIONS(8796), + [aux_sym_boolean_literal_token1] = ACTIONS(8794), + [aux_sym_boolean_literal_token2] = ACTIONS(8794), + [sym_nothing_literal] = ACTIONS(8794), + [sym_null_literal] = ACTIONS(8794), + [sym_empty_literal] = ACTIONS(8794), + [sym_date_literal] = ACTIONS(8796), + [anon_sym_POUND] = ACTIONS(8794), + }, + [STATE(4320)] = { + [sym_identifier] = ACTIONS(8713), + [sym_newline] = ACTIONS(8715), + [anon_sym_COLON] = ACTIONS(8715), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8713), + [aux_sym_frm_property_statement_token1] = ACTIONS(8713), + [anon_sym_DOT] = ACTIONS(8713), + [anon_sym_BANG] = ACTIONS(8715), + [aux_sym__attribute_identifier_token1] = ACTIONS(8713), + [aux_sym_option_statement_token3] = ACTIONS(8713), + [aux_sym_type_declaration_token1] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8713), + [aux_sym_enum_declaration_token1] = ACTIONS(8713), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8713), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8713), + [aux_sym_declare_function_statement_token1] = ACTIONS(8713), + [aux_sym_preprocessor_const_token1] = ACTIONS(8713), + [aux_sym__property_get_header_token1] = ACTIONS(8713), + [aux_sym_event_declaration_token1] = ACTIONS(8713), + [sym_static_modifier] = ACTIONS(8713), + [sym__dim_keyword] = ACTIONS(8713), + [sym__redim_keyword] = ACTIONS(8713), + [aux_sym_get_accessor_token1] = ACTIONS(8713), + [aux_sym_set_accessor_token1] = ACTIONS(8713), + [anon_sym_COMMA] = ACTIONS(8715), + [aux_sym_const_declaration_token1] = ACTIONS(8713), + [anon_sym_LPAREN] = ACTIONS(8715), + [aux_sym_as_type_clause_token2] = ACTIONS(8713), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8713), + [aux_sym_visibility_token1] = ACTIONS(8713), + [aux_sym_visibility_token2] = ACTIONS(8713), + [aux_sym_elseif_fragment_token1] = ACTIONS(8713), + [aux_sym_else_fragment_token1] = ACTIONS(8713), + [aux_sym_select_statement_token1] = ACTIONS(8713), + [aux_sym__for_header_token1] = ACTIONS(8713), + [aux_sym_do_statement_token1] = ACTIONS(8713), + [aux_sym_do_condition_token1] = ACTIONS(8713), + [aux_sym_with_statement_token1] = ACTIONS(8713), + [aux_sym_exit_statement_token1] = ACTIONS(8713), + [sym_end_statement] = ACTIONS(8715), + [aux_sym_on_goto_statement_token1] = ACTIONS(8713), + [aux_sym_on_goto_statement_token2] = ACTIONS(8713), + [aux_sym_on_error_statement_token2] = ACTIONS(8713), + [sym__ambiguous_redim_statement] = ACTIONS(8715), + [aux_sym_erase_statement_token1] = ACTIONS(8713), + [aux_sym_open_statement_token1] = ACTIONS(8713), + [aux_sym_file_mode_token2] = ACTIONS(8713), + [aux_sym_file_access_token2] = ACTIONS(8713), + [aux_sym_file_lock_token2] = ACTIONS(8713), + [aux_sym_print_statement_token1] = ACTIONS(8713), + [anon_sym_PLUS] = ACTIONS(8715), + [anon_sym_DASH] = ACTIONS(8713), + [anon_sym_QMARK] = ACTIONS(8715), + [aux_sym_close_statement_token1] = ACTIONS(8713), + [aux_sym_put_statement_token1] = ACTIONS(8713), + [aux_sym_unlock_statement_token1] = ACTIONS(8713), + [aux_sym_seek_statement_token1] = ACTIONS(8713), + [sym_reset_statement] = ACTIONS(8713), + [aux_sym_raise_event_statement_token1] = ACTIONS(8713), + [sym_stop_statement] = ACTIONS(8713), + [sym_beep_statement] = ACTIONS(8713), + [aux_sym_unload_statement_token1] = ACTIONS(8713), + [aux_sym_def_type_statement_token1] = ACTIONS(8713), + [aux_sym_def_type_statement_token2] = ACTIONS(8713), + [aux_sym_def_type_statement_token3] = ACTIONS(8713), + [aux_sym_def_type_statement_token4] = ACTIONS(8713), + [aux_sym_def_type_statement_token5] = ACTIONS(8713), + [aux_sym_def_type_statement_token6] = ACTIONS(8713), + [aux_sym_def_type_statement_token7] = ACTIONS(8713), + [aux_sym_def_type_statement_token8] = ACTIONS(8713), + [aux_sym_def_type_statement_token9] = ACTIONS(8713), + [aux_sym_def_type_statement_token10] = ACTIONS(8713), + [aux_sym_def_type_statement_token11] = ACTIONS(8713), + [aux_sym_def_type_statement_token12] = ACTIONS(8713), + [aux_sym_def_type_statement_token13] = ACTIONS(8713), + [aux_sym_def_type_statement_token14] = ACTIONS(8713), + [aux_sym_call_statement_token1] = ACTIONS(8713), + [sym__ambiguous_call_statement] = ACTIONS(8713), + [aux_sym_addressof_expression_token1] = ACTIONS(8713), + [aux_sym_type_of_expression_token1] = ACTIONS(8713), + [aux_sym_unary_expression_token1] = ACTIONS(8713), + [sym_string_literal] = ACTIONS(8715), + [sym_number_literal] = ACTIONS(8715), + [aux_sym_boolean_literal_token1] = ACTIONS(8713), + [aux_sym_boolean_literal_token2] = ACTIONS(8713), + [sym_nothing_literal] = ACTIONS(8713), + [sym_null_literal] = ACTIONS(8713), + [sym_empty_literal] = ACTIONS(8713), + [sym_date_literal] = ACTIONS(8715), + [anon_sym_POUND] = ACTIONS(8713), + }, + [STATE(4321)] = { + [sym_identifier] = ACTIONS(8739), + [sym_newline] = ACTIONS(8741), + [anon_sym_COLON] = ACTIONS(8741), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8739), + [aux_sym_frm_property_statement_token1] = ACTIONS(8739), + [anon_sym_DOT] = ACTIONS(8739), + [anon_sym_BANG] = ACTIONS(8741), + [aux_sym__attribute_identifier_token1] = ACTIONS(8739), + [aux_sym_option_statement_token3] = ACTIONS(8739), + [aux_sym_type_declaration_token1] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8739), + [aux_sym_enum_declaration_token1] = ACTIONS(8739), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8739), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8739), + [aux_sym_declare_function_statement_token1] = ACTIONS(8739), + [aux_sym_preprocessor_const_token1] = ACTIONS(8739), + [aux_sym__property_get_header_token1] = ACTIONS(8739), + [aux_sym_event_declaration_token1] = ACTIONS(8739), + [sym_static_modifier] = ACTIONS(8739), + [sym__dim_keyword] = ACTIONS(8739), + [sym__redim_keyword] = ACTIONS(8739), + [aux_sym_get_accessor_token1] = ACTIONS(8739), + [aux_sym_set_accessor_token1] = ACTIONS(8739), + [anon_sym_COMMA] = ACTIONS(9909), + [aux_sym_const_declaration_token1] = ACTIONS(8739), + [anon_sym_LPAREN] = ACTIONS(8741), + [aux_sym_as_type_clause_token2] = ACTIONS(8739), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8739), + [aux_sym_visibility_token1] = ACTIONS(8739), + [aux_sym_visibility_token2] = ACTIONS(8739), + [aux_sym_elseif_fragment_token1] = ACTIONS(8739), + [aux_sym_else_fragment_token1] = ACTIONS(8739), + [aux_sym_select_statement_token1] = ACTIONS(8739), + [aux_sym__for_header_token1] = ACTIONS(8739), + [aux_sym_do_statement_token1] = ACTIONS(8739), + [aux_sym_do_condition_token1] = ACTIONS(8739), + [aux_sym_with_statement_token1] = ACTIONS(8739), + [aux_sym_exit_statement_token1] = ACTIONS(8739), + [sym_end_statement] = ACTIONS(8741), + [aux_sym_on_goto_statement_token1] = ACTIONS(8739), + [aux_sym_on_goto_statement_token2] = ACTIONS(8739), + [aux_sym_on_error_statement_token2] = ACTIONS(8739), + [sym__ambiguous_redim_statement] = ACTIONS(8741), + [aux_sym_erase_statement_token1] = ACTIONS(8739), + [aux_sym_open_statement_token1] = ACTIONS(8739), + [aux_sym_file_mode_token2] = ACTIONS(8739), + [aux_sym_file_access_token2] = ACTIONS(8739), + [aux_sym_file_lock_token2] = ACTIONS(8739), + [aux_sym_print_statement_token1] = ACTIONS(8739), + [anon_sym_PLUS] = ACTIONS(8741), + [anon_sym_DASH] = ACTIONS(8739), + [anon_sym_QMARK] = ACTIONS(8741), + [aux_sym_close_statement_token1] = ACTIONS(8739), + [aux_sym_put_statement_token1] = ACTIONS(8739), + [aux_sym_unlock_statement_token1] = ACTIONS(8739), + [aux_sym_seek_statement_token1] = ACTIONS(8739), + [sym_reset_statement] = ACTIONS(8739), + [aux_sym_raise_event_statement_token1] = ACTIONS(8739), + [sym_stop_statement] = ACTIONS(8739), + [sym_beep_statement] = ACTIONS(8739), + [aux_sym_unload_statement_token1] = ACTIONS(8739), + [aux_sym_def_type_statement_token1] = ACTIONS(8739), + [aux_sym_def_type_statement_token2] = ACTIONS(8739), + [aux_sym_def_type_statement_token3] = ACTIONS(8739), + [aux_sym_def_type_statement_token4] = ACTIONS(8739), + [aux_sym_def_type_statement_token5] = ACTIONS(8739), + [aux_sym_def_type_statement_token6] = ACTIONS(8739), + [aux_sym_def_type_statement_token7] = ACTIONS(8739), + [aux_sym_def_type_statement_token8] = ACTIONS(8739), + [aux_sym_def_type_statement_token9] = ACTIONS(8739), + [aux_sym_def_type_statement_token10] = ACTIONS(8739), + [aux_sym_def_type_statement_token11] = ACTIONS(8739), + [aux_sym_def_type_statement_token12] = ACTIONS(8739), + [aux_sym_def_type_statement_token13] = ACTIONS(8739), + [aux_sym_def_type_statement_token14] = ACTIONS(8739), + [aux_sym_call_statement_token1] = ACTIONS(8739), + [sym__ambiguous_call_statement] = ACTIONS(8739), + [aux_sym_addressof_expression_token1] = ACTIONS(8739), + [aux_sym_type_of_expression_token1] = ACTIONS(8739), + [aux_sym_unary_expression_token1] = ACTIONS(8739), + [sym_string_literal] = ACTIONS(8741), + [sym_number_literal] = ACTIONS(8741), + [aux_sym_boolean_literal_token1] = ACTIONS(8739), + [aux_sym_boolean_literal_token2] = ACTIONS(8739), + [sym_nothing_literal] = ACTIONS(8739), + [sym_null_literal] = ACTIONS(8739), + [sym_empty_literal] = ACTIONS(8739), + [sym_date_literal] = ACTIONS(8741), + [anon_sym_POUND] = ACTIONS(8739), + }, + [STATE(4322)] = { + [sym_identifier] = ACTIONS(8680), + [sym_newline] = ACTIONS(8682), + [anon_sym_COLON] = ACTIONS(8682), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8680), + [aux_sym_frm_property_statement_token1] = ACTIONS(8680), + [anon_sym_DOT] = ACTIONS(8680), + [anon_sym_BANG] = ACTIONS(8682), + [aux_sym__attribute_identifier_token1] = ACTIONS(8680), + [aux_sym_option_statement_token3] = ACTIONS(8680), + [aux_sym_type_declaration_token1] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8680), + [aux_sym_enum_declaration_token1] = ACTIONS(8680), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8680), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8680), + [aux_sym_declare_function_statement_token1] = ACTIONS(8680), + [aux_sym_preprocessor_const_token1] = ACTIONS(8680), + [aux_sym__property_get_header_token1] = ACTIONS(8680), + [aux_sym_event_declaration_token1] = ACTIONS(8680), + [sym_static_modifier] = ACTIONS(8680), + [sym__dim_keyword] = ACTIONS(8680), + [sym__redim_keyword] = ACTIONS(8680), + [aux_sym_get_accessor_token1] = ACTIONS(8680), + [aux_sym_set_accessor_token1] = ACTIONS(8680), + [anon_sym_COMMA] = ACTIONS(8682), + [aux_sym_const_declaration_token1] = ACTIONS(8680), + [anon_sym_LPAREN] = ACTIONS(8682), + [aux_sym_as_type_clause_token2] = ACTIONS(8680), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8680), + [aux_sym_visibility_token1] = ACTIONS(8680), + [aux_sym_visibility_token2] = ACTIONS(8680), + [aux_sym_elseif_fragment_token1] = ACTIONS(8680), + [aux_sym_else_fragment_token1] = ACTIONS(8680), + [aux_sym_select_statement_token1] = ACTIONS(8680), + [aux_sym__for_header_token1] = ACTIONS(8680), + [aux_sym_do_statement_token1] = ACTIONS(8680), + [aux_sym_do_condition_token1] = ACTIONS(8680), + [aux_sym_with_statement_token1] = ACTIONS(8680), + [aux_sym_exit_statement_token1] = ACTIONS(8680), + [sym_end_statement] = ACTIONS(8682), + [aux_sym_on_goto_statement_token1] = ACTIONS(8680), + [aux_sym_on_goto_statement_token2] = ACTIONS(8680), + [aux_sym_on_error_statement_token2] = ACTIONS(8680), + [sym__ambiguous_redim_statement] = ACTIONS(8682), + [aux_sym_erase_statement_token1] = ACTIONS(8680), + [aux_sym_open_statement_token1] = ACTIONS(8680), + [aux_sym_file_mode_token2] = ACTIONS(8680), + [aux_sym_file_access_token2] = ACTIONS(8680), + [aux_sym_file_lock_token2] = ACTIONS(8680), + [aux_sym_print_statement_token1] = ACTIONS(8680), + [anon_sym_PLUS] = ACTIONS(8682), + [anon_sym_DASH] = ACTIONS(8680), + [anon_sym_QMARK] = ACTIONS(8682), + [aux_sym_close_statement_token1] = ACTIONS(8680), + [aux_sym_put_statement_token1] = ACTIONS(8680), + [aux_sym_unlock_statement_token1] = ACTIONS(8680), + [aux_sym_seek_statement_token1] = ACTIONS(8680), + [sym_reset_statement] = ACTIONS(8680), + [aux_sym_raise_event_statement_token1] = ACTIONS(8680), + [sym_stop_statement] = ACTIONS(8680), + [sym_beep_statement] = ACTIONS(8680), + [aux_sym_unload_statement_token1] = ACTIONS(8680), + [aux_sym_def_type_statement_token1] = ACTIONS(8680), + [aux_sym_def_type_statement_token2] = ACTIONS(8680), + [aux_sym_def_type_statement_token3] = ACTIONS(8680), + [aux_sym_def_type_statement_token4] = ACTIONS(8680), + [aux_sym_def_type_statement_token5] = ACTIONS(8680), + [aux_sym_def_type_statement_token6] = ACTIONS(8680), + [aux_sym_def_type_statement_token7] = ACTIONS(8680), + [aux_sym_def_type_statement_token8] = ACTIONS(8680), + [aux_sym_def_type_statement_token9] = ACTIONS(8680), + [aux_sym_def_type_statement_token10] = ACTIONS(8680), + [aux_sym_def_type_statement_token11] = ACTIONS(8680), + [aux_sym_def_type_statement_token12] = ACTIONS(8680), + [aux_sym_def_type_statement_token13] = ACTIONS(8680), + [aux_sym_def_type_statement_token14] = ACTIONS(8680), + [aux_sym_call_statement_token1] = ACTIONS(8680), + [sym__ambiguous_call_statement] = ACTIONS(8680), + [aux_sym_addressof_expression_token1] = ACTIONS(8680), + [aux_sym_type_of_expression_token1] = ACTIONS(8680), + [aux_sym_unary_expression_token1] = ACTIONS(8680), + [sym_string_literal] = ACTIONS(8682), + [sym_number_literal] = ACTIONS(8682), + [aux_sym_boolean_literal_token1] = ACTIONS(8680), + [aux_sym_boolean_literal_token2] = ACTIONS(8680), + [sym_nothing_literal] = ACTIONS(8680), + [sym_null_literal] = ACTIONS(8680), + [sym_empty_literal] = ACTIONS(8680), + [sym_date_literal] = ACTIONS(8682), + [anon_sym_POUND] = ACTIONS(8680), + }, + [STATE(4323)] = { + [sym_identifier] = ACTIONS(8847), + [sym_newline] = ACTIONS(8849), + [anon_sym_COLON] = ACTIONS(8849), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8847), + [aux_sym_frm_property_statement_token1] = ACTIONS(8847), + [anon_sym_DOT] = ACTIONS(8847), + [anon_sym_BANG] = ACTIONS(8849), + [aux_sym__attribute_identifier_token1] = ACTIONS(8847), + [aux_sym_option_statement_token3] = ACTIONS(8847), + [aux_sym_type_declaration_token1] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8847), + [aux_sym_enum_declaration_token1] = ACTIONS(8847), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8847), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8847), + [aux_sym_declare_function_statement_token1] = ACTIONS(8847), + [aux_sym_preprocessor_const_token1] = ACTIONS(8847), + [aux_sym__property_get_header_token1] = ACTIONS(8847), + [aux_sym_event_declaration_token1] = ACTIONS(8847), + [sym_static_modifier] = ACTIONS(8847), + [sym__dim_keyword] = ACTIONS(8847), + [sym__redim_keyword] = ACTIONS(8847), + [aux_sym_get_accessor_token1] = ACTIONS(8847), + [aux_sym_set_accessor_token1] = ACTIONS(8847), + [anon_sym_COMMA] = ACTIONS(8849), + [aux_sym_const_declaration_token1] = ACTIONS(8847), + [anon_sym_LPAREN] = ACTIONS(8849), + [aux_sym_as_type_clause_token2] = ACTIONS(8847), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8847), + [aux_sym_visibility_token1] = ACTIONS(8847), + [aux_sym_visibility_token2] = ACTIONS(8847), + [aux_sym_elseif_fragment_token1] = ACTIONS(8847), + [aux_sym_else_fragment_token1] = ACTIONS(8847), + [aux_sym_select_statement_token1] = ACTIONS(8847), + [aux_sym__for_header_token1] = ACTIONS(8847), + [aux_sym_do_statement_token1] = ACTIONS(8847), + [aux_sym_do_condition_token1] = ACTIONS(8847), + [aux_sym_with_statement_token1] = ACTIONS(8847), + [aux_sym_exit_statement_token1] = ACTIONS(8847), + [sym_end_statement] = ACTIONS(8849), + [aux_sym_on_goto_statement_token1] = ACTIONS(8847), + [aux_sym_on_goto_statement_token2] = ACTIONS(8847), + [aux_sym_on_error_statement_token2] = ACTIONS(8847), + [sym__ambiguous_redim_statement] = ACTIONS(8849), + [aux_sym_erase_statement_token1] = ACTIONS(8847), + [aux_sym_open_statement_token1] = ACTIONS(8847), + [aux_sym_file_mode_token2] = ACTIONS(8847), + [aux_sym_file_access_token2] = ACTIONS(8847), + [aux_sym_file_lock_token2] = ACTIONS(8847), + [aux_sym_print_statement_token1] = ACTIONS(8847), + [anon_sym_PLUS] = ACTIONS(8849), + [anon_sym_DASH] = ACTIONS(9911), + [anon_sym_QMARK] = ACTIONS(8849), + [aux_sym_close_statement_token1] = ACTIONS(8847), + [aux_sym_put_statement_token1] = ACTIONS(8847), + [aux_sym_unlock_statement_token1] = ACTIONS(8847), + [aux_sym_seek_statement_token1] = ACTIONS(8847), + [sym_reset_statement] = ACTIONS(8847), + [aux_sym_raise_event_statement_token1] = ACTIONS(8847), + [sym_stop_statement] = ACTIONS(8847), + [sym_beep_statement] = ACTIONS(8847), + [aux_sym_unload_statement_token1] = ACTIONS(8847), + [aux_sym_def_type_statement_token1] = ACTIONS(8847), + [aux_sym_def_type_statement_token2] = ACTIONS(8847), + [aux_sym_def_type_statement_token3] = ACTIONS(8847), + [aux_sym_def_type_statement_token4] = ACTIONS(8847), + [aux_sym_def_type_statement_token5] = ACTIONS(8847), + [aux_sym_def_type_statement_token6] = ACTIONS(8847), + [aux_sym_def_type_statement_token7] = ACTIONS(8847), + [aux_sym_def_type_statement_token8] = ACTIONS(8847), + [aux_sym_def_type_statement_token9] = ACTIONS(8847), + [aux_sym_def_type_statement_token10] = ACTIONS(8847), + [aux_sym_def_type_statement_token11] = ACTIONS(8847), + [aux_sym_def_type_statement_token12] = ACTIONS(8847), + [aux_sym_def_type_statement_token13] = ACTIONS(8847), + [aux_sym_def_type_statement_token14] = ACTIONS(8847), + [aux_sym_call_statement_token1] = ACTIONS(8847), + [sym__ambiguous_call_statement] = ACTIONS(8847), + [aux_sym_addressof_expression_token1] = ACTIONS(8847), + [aux_sym_type_of_expression_token1] = ACTIONS(8847), + [aux_sym_unary_expression_token1] = ACTIONS(8847), + [sym_string_literal] = ACTIONS(8849), + [sym_number_literal] = ACTIONS(8849), + [aux_sym_boolean_literal_token1] = ACTIONS(8847), + [aux_sym_boolean_literal_token2] = ACTIONS(8847), + [sym_nothing_literal] = ACTIONS(8847), + [sym_null_literal] = ACTIONS(8847), + [sym_empty_literal] = ACTIONS(8847), + [sym_date_literal] = ACTIONS(8849), + [anon_sym_POUND] = ACTIONS(8847), + }, + [STATE(4324)] = { + [sym_identifier] = ACTIONS(9168), + [sym_newline] = ACTIONS(9170), + [anon_sym_COLON] = ACTIONS(9170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9168), + [aux_sym_frm_property_statement_token1] = ACTIONS(9168), + [anon_sym_DOT] = ACTIONS(9168), + [anon_sym_BANG] = ACTIONS(9170), + [aux_sym__attribute_identifier_token1] = ACTIONS(9168), + [aux_sym_option_statement_token3] = ACTIONS(9168), + [aux_sym_type_declaration_token1] = ACTIONS(9168), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9168), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9168), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9168), + [aux_sym_enum_declaration_token1] = ACTIONS(9168), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9168), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9168), + [aux_sym_declare_function_statement_token1] = ACTIONS(9168), + [aux_sym_preprocessor_const_token1] = ACTIONS(9168), + [aux_sym__property_get_header_token1] = ACTIONS(9168), + [aux_sym_event_declaration_token1] = ACTIONS(9168), + [sym_static_modifier] = ACTIONS(9168), + [sym__dim_keyword] = ACTIONS(9168), + [sym__redim_keyword] = ACTIONS(9168), + [aux_sym_get_accessor_token1] = ACTIONS(9168), + [aux_sym_set_accessor_token1] = ACTIONS(9168), + [aux_sym_const_declaration_token1] = ACTIONS(9168), + [anon_sym_LPAREN] = ACTIONS(9170), + [aux_sym_as_type_clause_token2] = ACTIONS(9168), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9168), + [aux_sym_visibility_token1] = ACTIONS(9168), + [aux_sym_visibility_token2] = ACTIONS(9168), + [aux_sym_elseif_fragment_token1] = ACTIONS(9168), + [aux_sym_else_fragment_token1] = ACTIONS(9168), + [aux_sym_select_statement_token1] = ACTIONS(9168), + [aux_sym__for_header_token1] = ACTIONS(9168), + [aux_sym_do_statement_token1] = ACTIONS(9168), + [aux_sym_do_condition_token1] = ACTIONS(9168), + [aux_sym_with_statement_token1] = ACTIONS(9168), + [aux_sym_exit_statement_token1] = ACTIONS(9168), + [sym_end_statement] = ACTIONS(9170), + [aux_sym_on_goto_statement_token1] = ACTIONS(9168), + [aux_sym_on_goto_statement_token2] = ACTIONS(9168), + [aux_sym_on_error_statement_token2] = ACTIONS(9168), + [sym__ambiguous_redim_statement] = ACTIONS(9170), + [aux_sym_erase_statement_token1] = ACTIONS(9168), + [aux_sym_open_statement_token1] = ACTIONS(9168), + [aux_sym_file_mode_token2] = ACTIONS(9168), + [aux_sym_file_access_token2] = ACTIONS(9168), + [aux_sym_file_lock_token2] = ACTIONS(9168), + [aux_sym_print_statement_token1] = ACTIONS(9168), + [anon_sym_PLUS] = ACTIONS(9170), + [anon_sym_DASH] = ACTIONS(9168), + [anon_sym_QMARK] = ACTIONS(9170), + [aux_sym_close_statement_token1] = ACTIONS(9168), + [aux_sym_put_statement_token1] = ACTIONS(9168), + [aux_sym_unlock_statement_token1] = ACTIONS(9168), + [aux_sym_seek_statement_token1] = ACTIONS(9168), + [sym_reset_statement] = ACTIONS(9168), + [aux_sym_raise_event_statement_token1] = ACTIONS(9168), + [sym_stop_statement] = ACTIONS(9168), + [sym_beep_statement] = ACTIONS(9168), + [aux_sym_unload_statement_token1] = ACTIONS(9168), + [aux_sym_def_type_statement_token1] = ACTIONS(9168), + [aux_sym_def_type_statement_token2] = ACTIONS(9168), + [aux_sym_def_type_statement_token3] = ACTIONS(9168), + [aux_sym_def_type_statement_token4] = ACTIONS(9168), + [aux_sym_def_type_statement_token5] = ACTIONS(9168), + [aux_sym_def_type_statement_token6] = ACTIONS(9168), + [aux_sym_def_type_statement_token7] = ACTIONS(9168), + [aux_sym_def_type_statement_token8] = ACTIONS(9168), + [aux_sym_def_type_statement_token9] = ACTIONS(9168), + [aux_sym_def_type_statement_token10] = ACTIONS(9168), + [aux_sym_def_type_statement_token11] = ACTIONS(9168), + [aux_sym_def_type_statement_token12] = ACTIONS(9168), + [aux_sym_def_type_statement_token13] = ACTIONS(9168), + [aux_sym_def_type_statement_token14] = ACTIONS(9168), + [aux_sym_call_statement_token1] = ACTIONS(9168), + [sym__ambiguous_call_statement] = ACTIONS(9168), + [aux_sym_addressof_expression_token1] = ACTIONS(9168), + [aux_sym_type_of_expression_token1] = ACTIONS(9168), + [aux_sym_unary_expression_token1] = ACTIONS(9168), + [sym_string_literal] = ACTIONS(9170), + [sym_number_literal] = ACTIONS(9170), + [aux_sym_boolean_literal_token1] = ACTIONS(9168), + [aux_sym_boolean_literal_token2] = ACTIONS(9168), + [sym_nothing_literal] = ACTIONS(9168), + [sym_null_literal] = ACTIONS(9168), + [sym_empty_literal] = ACTIONS(9168), + [sym_date_literal] = ACTIONS(9170), + [anon_sym_POUND] = ACTIONS(9168), + }, + [STATE(4325)] = { + [sym_identifier] = ACTIONS(8927), + [sym_newline] = ACTIONS(8929), + [anon_sym_COLON] = ACTIONS(8929), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8927), + [aux_sym_frm_property_statement_token1] = ACTIONS(8927), + [anon_sym_DOT] = ACTIONS(8927), + [anon_sym_BANG] = ACTIONS(8929), + [aux_sym__attribute_identifier_token1] = ACTIONS(8927), + [aux_sym_option_statement_token3] = ACTIONS(8927), + [aux_sym_type_declaration_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8927), + [aux_sym_enum_declaration_token1] = ACTIONS(8927), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8927), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8927), + [aux_sym_declare_function_statement_token1] = ACTIONS(8927), + [aux_sym_preprocessor_const_token1] = ACTIONS(8927), + [aux_sym__property_get_header_token1] = ACTIONS(8927), + [aux_sym_event_declaration_token1] = ACTIONS(8927), + [sym_static_modifier] = ACTIONS(8927), + [sym__dim_keyword] = ACTIONS(8927), + [sym__redim_keyword] = ACTIONS(8927), + [aux_sym_get_accessor_token1] = ACTIONS(8927), + [aux_sym_set_accessor_token1] = ACTIONS(8927), + [aux_sym_const_declaration_token1] = ACTIONS(8927), + [anon_sym_LPAREN] = ACTIONS(8929), + [aux_sym_as_type_clause_token2] = ACTIONS(8927), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8927), + [aux_sym_visibility_token1] = ACTIONS(8927), + [aux_sym_visibility_token2] = ACTIONS(8927), + [aux_sym_elseif_fragment_token1] = ACTIONS(8927), + [aux_sym_else_fragment_token1] = ACTIONS(8927), + [aux_sym_select_statement_token1] = ACTIONS(8927), + [aux_sym__for_header_token1] = ACTIONS(8927), + [aux_sym_do_statement_token1] = ACTIONS(8927), + [aux_sym_do_condition_token1] = ACTIONS(8927), + [aux_sym_with_statement_token1] = ACTIONS(8927), + [aux_sym_exit_statement_token1] = ACTIONS(8927), + [sym_end_statement] = ACTIONS(8929), + [aux_sym_on_goto_statement_token1] = ACTIONS(8927), + [aux_sym_on_goto_statement_token2] = ACTIONS(8927), + [aux_sym_on_error_statement_token2] = ACTIONS(8927), + [sym__ambiguous_redim_statement] = ACTIONS(8929), + [aux_sym_erase_statement_token1] = ACTIONS(8927), + [aux_sym_open_statement_token1] = ACTIONS(8927), + [aux_sym_file_mode_token2] = ACTIONS(8927), + [aux_sym_file_access_token2] = ACTIONS(8927), + [aux_sym_file_lock_token2] = ACTIONS(8927), + [aux_sym_print_statement_token1] = ACTIONS(8927), + [anon_sym_PLUS] = ACTIONS(8929), + [anon_sym_DASH] = ACTIONS(8927), + [anon_sym_QMARK] = ACTIONS(8929), + [aux_sym_close_statement_token1] = ACTIONS(8927), + [aux_sym_put_statement_token1] = ACTIONS(8927), + [aux_sym_unlock_statement_token1] = ACTIONS(8927), + [aux_sym_seek_statement_token1] = ACTIONS(8927), + [sym_reset_statement] = ACTIONS(8927), + [aux_sym_raise_event_statement_token1] = ACTIONS(8927), + [sym_stop_statement] = ACTIONS(8927), + [sym_beep_statement] = ACTIONS(8927), + [aux_sym_unload_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token2] = ACTIONS(8927), + [aux_sym_def_type_statement_token3] = ACTIONS(8927), + [aux_sym_def_type_statement_token4] = ACTIONS(8927), + [aux_sym_def_type_statement_token5] = ACTIONS(8927), + [aux_sym_def_type_statement_token6] = ACTIONS(8927), + [aux_sym_def_type_statement_token7] = ACTIONS(8927), + [aux_sym_def_type_statement_token8] = ACTIONS(8927), + [aux_sym_def_type_statement_token9] = ACTIONS(8927), + [aux_sym_def_type_statement_token10] = ACTIONS(8927), + [aux_sym_def_type_statement_token11] = ACTIONS(8927), + [aux_sym_def_type_statement_token12] = ACTIONS(8927), + [aux_sym_def_type_statement_token13] = ACTIONS(8927), + [aux_sym_def_type_statement_token14] = ACTIONS(8927), + [aux_sym_call_statement_token1] = ACTIONS(8927), + [sym__ambiguous_call_statement] = ACTIONS(8927), + [aux_sym_addressof_expression_token1] = ACTIONS(8927), + [aux_sym_type_of_expression_token1] = ACTIONS(8927), + [aux_sym_unary_expression_token1] = ACTIONS(8927), + [sym_string_literal] = ACTIONS(8929), + [sym_number_literal] = ACTIONS(8929), + [aux_sym_boolean_literal_token1] = ACTIONS(8927), + [aux_sym_boolean_literal_token2] = ACTIONS(8927), + [sym_nothing_literal] = ACTIONS(8927), + [sym_null_literal] = ACTIONS(8927), + [sym_empty_literal] = ACTIONS(8927), + [sym_date_literal] = ACTIONS(8929), + [anon_sym_POUND] = ACTIONS(8927), + }, + [STATE(4326)] = { + [sym_identifier] = ACTIONS(8931), + [sym_newline] = ACTIONS(8933), + [anon_sym_COLON] = ACTIONS(8933), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8931), + [aux_sym_frm_property_statement_token1] = ACTIONS(8931), + [anon_sym_DOT] = ACTIONS(8931), + [anon_sym_BANG] = ACTIONS(8933), + [aux_sym__attribute_identifier_token1] = ACTIONS(8931), + [aux_sym_option_statement_token3] = ACTIONS(8931), + [aux_sym_type_declaration_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8931), + [aux_sym_enum_declaration_token1] = ACTIONS(8931), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8931), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8931), + [aux_sym_declare_function_statement_token1] = ACTIONS(8931), + [aux_sym_preprocessor_const_token1] = ACTIONS(8931), + [aux_sym__property_get_header_token1] = ACTIONS(8931), + [aux_sym_event_declaration_token1] = ACTIONS(8931), + [sym_static_modifier] = ACTIONS(8931), + [sym__dim_keyword] = ACTIONS(8931), + [sym__redim_keyword] = ACTIONS(8931), + [aux_sym_get_accessor_token1] = ACTIONS(8931), + [aux_sym_set_accessor_token1] = ACTIONS(8931), + [aux_sym_const_declaration_token1] = ACTIONS(8931), + [anon_sym_LPAREN] = ACTIONS(8933), + [aux_sym_as_type_clause_token2] = ACTIONS(8931), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8931), + [aux_sym_visibility_token1] = ACTIONS(8931), + [aux_sym_visibility_token2] = ACTIONS(8931), + [aux_sym_elseif_fragment_token1] = ACTIONS(8931), + [aux_sym_else_fragment_token1] = ACTIONS(8931), + [aux_sym_select_statement_token1] = ACTIONS(8931), + [aux_sym__for_header_token1] = ACTIONS(8931), + [aux_sym_do_statement_token1] = ACTIONS(8931), + [aux_sym_do_condition_token1] = ACTIONS(8931), + [aux_sym_with_statement_token1] = ACTIONS(8931), + [aux_sym_exit_statement_token1] = ACTIONS(8931), + [sym_end_statement] = ACTIONS(8933), + [aux_sym_on_goto_statement_token1] = ACTIONS(8931), + [aux_sym_on_goto_statement_token2] = ACTIONS(8931), + [aux_sym_on_error_statement_token2] = ACTIONS(8931), + [sym__ambiguous_redim_statement] = ACTIONS(8933), + [aux_sym_erase_statement_token1] = ACTIONS(8931), + [aux_sym_open_statement_token1] = ACTIONS(8931), + [aux_sym_file_mode_token2] = ACTIONS(8931), + [aux_sym_file_access_token2] = ACTIONS(8931), + [aux_sym_file_lock_token2] = ACTIONS(8931), + [aux_sym_print_statement_token1] = ACTIONS(8931), + [anon_sym_PLUS] = ACTIONS(8933), + [anon_sym_DASH] = ACTIONS(8931), + [anon_sym_QMARK] = ACTIONS(8933), + [aux_sym_close_statement_token1] = ACTIONS(8931), + [aux_sym_put_statement_token1] = ACTIONS(8931), + [aux_sym_unlock_statement_token1] = ACTIONS(8931), + [aux_sym_seek_statement_token1] = ACTIONS(8931), + [sym_reset_statement] = ACTIONS(8931), + [aux_sym_raise_event_statement_token1] = ACTIONS(8931), + [sym_stop_statement] = ACTIONS(8931), + [sym_beep_statement] = ACTIONS(8931), + [aux_sym_unload_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token2] = ACTIONS(8931), + [aux_sym_def_type_statement_token3] = ACTIONS(8931), + [aux_sym_def_type_statement_token4] = ACTIONS(8931), + [aux_sym_def_type_statement_token5] = ACTIONS(8931), + [aux_sym_def_type_statement_token6] = ACTIONS(8931), + [aux_sym_def_type_statement_token7] = ACTIONS(8931), + [aux_sym_def_type_statement_token8] = ACTIONS(8931), + [aux_sym_def_type_statement_token9] = ACTIONS(8931), + [aux_sym_def_type_statement_token10] = ACTIONS(8931), + [aux_sym_def_type_statement_token11] = ACTIONS(8931), + [aux_sym_def_type_statement_token12] = ACTIONS(8931), + [aux_sym_def_type_statement_token13] = ACTIONS(8931), + [aux_sym_def_type_statement_token14] = ACTIONS(8931), + [aux_sym_call_statement_token1] = ACTIONS(8931), + [sym__ambiguous_call_statement] = ACTIONS(8931), + [aux_sym_addressof_expression_token1] = ACTIONS(8931), + [aux_sym_type_of_expression_token1] = ACTIONS(8931), + [aux_sym_unary_expression_token1] = ACTIONS(8931), + [sym_string_literal] = ACTIONS(8933), + [sym_number_literal] = ACTIONS(8933), + [aux_sym_boolean_literal_token1] = ACTIONS(8931), + [aux_sym_boolean_literal_token2] = ACTIONS(8931), + [sym_nothing_literal] = ACTIONS(8931), + [sym_null_literal] = ACTIONS(8931), + [sym_empty_literal] = ACTIONS(8931), + [sym_date_literal] = ACTIONS(8933), + [anon_sym_POUND] = ACTIONS(8931), + }, + [STATE(4327)] = { + [sym_identifier] = ACTIONS(9720), + [sym_newline] = ACTIONS(9722), + [anon_sym_COLON] = ACTIONS(9722), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9720), + [aux_sym_frm_property_statement_token1] = ACTIONS(9720), + [anon_sym_DOT] = ACTIONS(9720), + [anon_sym_BANG] = ACTIONS(9722), + [aux_sym__attribute_identifier_token1] = ACTIONS(9720), + [aux_sym_option_statement_token3] = ACTIONS(9720), + [aux_sym_type_declaration_token1] = ACTIONS(9720), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9720), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9720), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9720), + [aux_sym_enum_declaration_token1] = ACTIONS(9720), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9720), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9720), + [aux_sym_declare_function_statement_token1] = ACTIONS(9720), + [aux_sym_preprocessor_const_token1] = ACTIONS(9720), + [aux_sym__property_get_header_token1] = ACTIONS(9720), + [aux_sym_event_declaration_token1] = ACTIONS(9720), + [sym_static_modifier] = ACTIONS(9720), + [sym__dim_keyword] = ACTIONS(9720), + [sym__redim_keyword] = ACTIONS(9720), + [aux_sym_get_accessor_token1] = ACTIONS(9720), + [aux_sym_set_accessor_token1] = ACTIONS(9720), + [aux_sym_const_declaration_token1] = ACTIONS(9720), + [anon_sym_LPAREN] = ACTIONS(9722), + [aux_sym_as_type_clause_token2] = ACTIONS(9720), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9720), + [aux_sym_visibility_token1] = ACTIONS(9720), + [aux_sym_visibility_token2] = ACTIONS(9720), + [aux_sym_elseif_fragment_token1] = ACTIONS(9720), + [aux_sym_else_fragment_token1] = ACTIONS(9720), + [aux_sym_select_statement_token1] = ACTIONS(9720), + [aux_sym__for_header_token1] = ACTIONS(9720), + [aux_sym_do_statement_token1] = ACTIONS(9720), + [aux_sym_do_condition_token1] = ACTIONS(9720), + [aux_sym_with_statement_token1] = ACTIONS(9720), + [aux_sym_exit_statement_token1] = ACTIONS(9720), + [sym_end_statement] = ACTIONS(9722), + [aux_sym_on_goto_statement_token1] = ACTIONS(9720), + [aux_sym_on_goto_statement_token2] = ACTIONS(9720), + [aux_sym_on_error_statement_token2] = ACTIONS(9720), + [sym__ambiguous_redim_statement] = ACTIONS(9722), + [aux_sym_erase_statement_token1] = ACTIONS(9720), + [aux_sym_open_statement_token1] = ACTIONS(9720), + [aux_sym_file_mode_token2] = ACTIONS(9720), + [aux_sym_file_access_token2] = ACTIONS(9720), + [aux_sym_file_lock_token2] = ACTIONS(9720), + [aux_sym_print_statement_token1] = ACTIONS(9720), + [anon_sym_PLUS] = ACTIONS(9722), + [anon_sym_DASH] = ACTIONS(9720), + [anon_sym_QMARK] = ACTIONS(9722), + [aux_sym_close_statement_token1] = ACTIONS(9720), + [aux_sym_put_statement_token1] = ACTIONS(9720), + [aux_sym_unlock_statement_token1] = ACTIONS(9720), + [aux_sym_seek_statement_token1] = ACTIONS(9720), + [sym_reset_statement] = ACTIONS(9720), + [aux_sym_raise_event_statement_token1] = ACTIONS(9720), + [sym_stop_statement] = ACTIONS(9720), + [sym_beep_statement] = ACTIONS(9720), + [aux_sym_unload_statement_token1] = ACTIONS(9720), + [aux_sym_def_type_statement_token1] = ACTIONS(9720), + [aux_sym_def_type_statement_token2] = ACTIONS(9720), + [aux_sym_def_type_statement_token3] = ACTIONS(9720), + [aux_sym_def_type_statement_token4] = ACTIONS(9720), + [aux_sym_def_type_statement_token5] = ACTIONS(9720), + [aux_sym_def_type_statement_token6] = ACTIONS(9720), + [aux_sym_def_type_statement_token7] = ACTIONS(9720), + [aux_sym_def_type_statement_token8] = ACTIONS(9720), + [aux_sym_def_type_statement_token9] = ACTIONS(9720), + [aux_sym_def_type_statement_token10] = ACTIONS(9720), + [aux_sym_def_type_statement_token11] = ACTIONS(9720), + [aux_sym_def_type_statement_token12] = ACTIONS(9720), + [aux_sym_def_type_statement_token13] = ACTIONS(9720), + [aux_sym_def_type_statement_token14] = ACTIONS(9720), + [aux_sym_call_statement_token1] = ACTIONS(9720), + [sym__ambiguous_call_statement] = ACTIONS(9720), + [aux_sym_addressof_expression_token1] = ACTIONS(9720), + [aux_sym_type_of_expression_token1] = ACTIONS(9720), + [aux_sym_unary_expression_token1] = ACTIONS(9720), + [sym_string_literal] = ACTIONS(9722), + [sym_number_literal] = ACTIONS(9722), + [aux_sym_boolean_literal_token1] = ACTIONS(9720), + [aux_sym_boolean_literal_token2] = ACTIONS(9720), + [sym_nothing_literal] = ACTIONS(9720), + [sym_null_literal] = ACTIONS(9720), + [sym_empty_literal] = ACTIONS(9720), + [sym_date_literal] = ACTIONS(9722), + [anon_sym_POUND] = ACTIONS(9720), + }, + [STATE(4328)] = { + [sym_identifier] = ACTIONS(9176), + [sym_newline] = ACTIONS(9178), + [anon_sym_COLON] = ACTIONS(9178), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9176), + [aux_sym_frm_property_statement_token1] = ACTIONS(9176), + [anon_sym_DOT] = ACTIONS(9176), + [anon_sym_BANG] = ACTIONS(9178), + [aux_sym__attribute_identifier_token1] = ACTIONS(9176), + [aux_sym_option_statement_token3] = ACTIONS(9176), + [aux_sym_type_declaration_token1] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9176), + [aux_sym_enum_declaration_token1] = ACTIONS(9176), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9176), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9176), + [aux_sym_declare_function_statement_token1] = ACTIONS(9176), + [aux_sym_preprocessor_const_token1] = ACTIONS(9176), + [aux_sym__property_get_header_token1] = ACTIONS(9176), + [aux_sym_event_declaration_token1] = ACTIONS(9176), + [sym_static_modifier] = ACTIONS(9176), + [sym__dim_keyword] = ACTIONS(9176), + [sym__redim_keyword] = ACTIONS(9176), + [aux_sym_get_accessor_token1] = ACTIONS(9176), + [aux_sym_set_accessor_token1] = ACTIONS(9176), + [aux_sym_const_declaration_token1] = ACTIONS(9176), + [anon_sym_LPAREN] = ACTIONS(9178), + [aux_sym_as_type_clause_token2] = ACTIONS(9176), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9176), + [aux_sym_visibility_token1] = ACTIONS(9176), + [aux_sym_visibility_token2] = ACTIONS(9176), + [aux_sym_elseif_fragment_token1] = ACTIONS(9176), + [aux_sym_else_fragment_token1] = ACTIONS(9176), + [aux_sym_select_statement_token1] = ACTIONS(9176), + [aux_sym__for_header_token1] = ACTIONS(9176), + [aux_sym_do_statement_token1] = ACTIONS(9176), + [aux_sym_do_condition_token1] = ACTIONS(9176), + [aux_sym_with_statement_token1] = ACTIONS(9176), + [aux_sym_exit_statement_token1] = ACTIONS(9176), + [sym_end_statement] = ACTIONS(9178), + [aux_sym_on_goto_statement_token1] = ACTIONS(9176), + [aux_sym_on_goto_statement_token2] = ACTIONS(9176), + [aux_sym_on_error_statement_token2] = ACTIONS(9176), + [sym__ambiguous_redim_statement] = ACTIONS(9178), + [aux_sym_erase_statement_token1] = ACTIONS(9176), + [aux_sym_open_statement_token1] = ACTIONS(9176), + [aux_sym_file_mode_token2] = ACTIONS(9176), + [aux_sym_file_access_token2] = ACTIONS(9176), + [aux_sym_file_lock_token2] = ACTIONS(9176), + [aux_sym_print_statement_token1] = ACTIONS(9176), + [anon_sym_PLUS] = ACTIONS(9178), + [anon_sym_DASH] = ACTIONS(9176), + [anon_sym_QMARK] = ACTIONS(9178), + [aux_sym_close_statement_token1] = ACTIONS(9176), + [aux_sym_put_statement_token1] = ACTIONS(9176), + [aux_sym_unlock_statement_token1] = ACTIONS(9176), + [aux_sym_seek_statement_token1] = ACTIONS(9176), + [sym_reset_statement] = ACTIONS(9176), + [aux_sym_raise_event_statement_token1] = ACTIONS(9176), + [sym_stop_statement] = ACTIONS(9176), + [sym_beep_statement] = ACTIONS(9176), + [aux_sym_unload_statement_token1] = ACTIONS(9176), + [aux_sym_def_type_statement_token1] = ACTIONS(9176), + [aux_sym_def_type_statement_token2] = ACTIONS(9176), + [aux_sym_def_type_statement_token3] = ACTIONS(9176), + [aux_sym_def_type_statement_token4] = ACTIONS(9176), + [aux_sym_def_type_statement_token5] = ACTIONS(9176), + [aux_sym_def_type_statement_token6] = ACTIONS(9176), + [aux_sym_def_type_statement_token7] = ACTIONS(9176), + [aux_sym_def_type_statement_token8] = ACTIONS(9176), + [aux_sym_def_type_statement_token9] = ACTIONS(9176), + [aux_sym_def_type_statement_token10] = ACTIONS(9176), + [aux_sym_def_type_statement_token11] = ACTIONS(9176), + [aux_sym_def_type_statement_token12] = ACTIONS(9176), + [aux_sym_def_type_statement_token13] = ACTIONS(9176), + [aux_sym_def_type_statement_token14] = ACTIONS(9176), + [aux_sym_call_statement_token1] = ACTIONS(9176), + [sym__ambiguous_call_statement] = ACTIONS(9176), + [aux_sym_addressof_expression_token1] = ACTIONS(9176), + [aux_sym_type_of_expression_token1] = ACTIONS(9176), + [aux_sym_unary_expression_token1] = ACTIONS(9176), + [sym_string_literal] = ACTIONS(9178), + [sym_number_literal] = ACTIONS(9178), + [aux_sym_boolean_literal_token1] = ACTIONS(9176), + [aux_sym_boolean_literal_token2] = ACTIONS(9176), + [sym_nothing_literal] = ACTIONS(9176), + [sym_null_literal] = ACTIONS(9176), + [sym_empty_literal] = ACTIONS(9176), + [sym_date_literal] = ACTIONS(9178), + [anon_sym_POUND] = ACTIONS(9176), + }, + [STATE(4329)] = { + [sym_identifier] = ACTIONS(9180), + [sym_newline] = ACTIONS(9182), + [anon_sym_COLON] = ACTIONS(9182), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9180), + [aux_sym_frm_property_statement_token1] = ACTIONS(9180), + [anon_sym_DOT] = ACTIONS(9180), + [anon_sym_BANG] = ACTIONS(9182), + [aux_sym__attribute_identifier_token1] = ACTIONS(9180), + [aux_sym_option_statement_token3] = ACTIONS(9180), + [aux_sym_type_declaration_token1] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9180), + [aux_sym_enum_declaration_token1] = ACTIONS(9180), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9180), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9180), + [aux_sym_declare_function_statement_token1] = ACTIONS(9180), + [aux_sym_preprocessor_const_token1] = ACTIONS(9180), + [aux_sym__property_get_header_token1] = ACTIONS(9180), + [aux_sym_event_declaration_token1] = ACTIONS(9180), + [sym_static_modifier] = ACTIONS(9180), + [sym__dim_keyword] = ACTIONS(9180), + [sym__redim_keyword] = ACTIONS(9180), + [aux_sym_get_accessor_token1] = ACTIONS(9180), + [aux_sym_set_accessor_token1] = ACTIONS(9180), + [aux_sym_const_declaration_token1] = ACTIONS(9180), + [anon_sym_LPAREN] = ACTIONS(9182), + [aux_sym_as_type_clause_token2] = ACTIONS(9180), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9180), + [aux_sym_visibility_token1] = ACTIONS(9180), + [aux_sym_visibility_token2] = ACTIONS(9180), + [aux_sym_elseif_fragment_token1] = ACTIONS(9180), + [aux_sym_else_fragment_token1] = ACTIONS(9180), + [aux_sym_select_statement_token1] = ACTIONS(9180), + [aux_sym__for_header_token1] = ACTIONS(9180), + [aux_sym_do_statement_token1] = ACTIONS(9180), + [aux_sym_do_condition_token1] = ACTIONS(9180), + [aux_sym_with_statement_token1] = ACTIONS(9180), + [aux_sym_exit_statement_token1] = ACTIONS(9180), + [sym_end_statement] = ACTIONS(9182), + [aux_sym_on_goto_statement_token1] = ACTIONS(9180), + [aux_sym_on_goto_statement_token2] = ACTIONS(9180), + [aux_sym_on_error_statement_token2] = ACTIONS(9180), + [sym__ambiguous_redim_statement] = ACTIONS(9182), + [aux_sym_erase_statement_token1] = ACTIONS(9180), + [aux_sym_open_statement_token1] = ACTIONS(9180), + [aux_sym_file_mode_token2] = ACTIONS(9180), + [aux_sym_file_access_token2] = ACTIONS(9180), + [aux_sym_file_lock_token2] = ACTIONS(9180), + [aux_sym_print_statement_token1] = ACTIONS(9180), + [anon_sym_PLUS] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9180), + [anon_sym_QMARK] = ACTIONS(9182), + [aux_sym_close_statement_token1] = ACTIONS(9180), + [aux_sym_put_statement_token1] = ACTIONS(9180), + [aux_sym_unlock_statement_token1] = ACTIONS(9180), + [aux_sym_seek_statement_token1] = ACTIONS(9180), + [sym_reset_statement] = ACTIONS(9180), + [aux_sym_raise_event_statement_token1] = ACTIONS(9180), + [sym_stop_statement] = ACTIONS(9180), + [sym_beep_statement] = ACTIONS(9180), + [aux_sym_unload_statement_token1] = ACTIONS(9180), + [aux_sym_def_type_statement_token1] = ACTIONS(9180), + [aux_sym_def_type_statement_token2] = ACTIONS(9180), + [aux_sym_def_type_statement_token3] = ACTIONS(9180), + [aux_sym_def_type_statement_token4] = ACTIONS(9180), + [aux_sym_def_type_statement_token5] = ACTIONS(9180), + [aux_sym_def_type_statement_token6] = ACTIONS(9180), + [aux_sym_def_type_statement_token7] = ACTIONS(9180), + [aux_sym_def_type_statement_token8] = ACTIONS(9180), + [aux_sym_def_type_statement_token9] = ACTIONS(9180), + [aux_sym_def_type_statement_token10] = ACTIONS(9180), + [aux_sym_def_type_statement_token11] = ACTIONS(9180), + [aux_sym_def_type_statement_token12] = ACTIONS(9180), + [aux_sym_def_type_statement_token13] = ACTIONS(9180), + [aux_sym_def_type_statement_token14] = ACTIONS(9180), + [aux_sym_call_statement_token1] = ACTIONS(9180), + [sym__ambiguous_call_statement] = ACTIONS(9180), + [aux_sym_addressof_expression_token1] = ACTIONS(9180), + [aux_sym_type_of_expression_token1] = ACTIONS(9180), + [aux_sym_unary_expression_token1] = ACTIONS(9180), + [sym_string_literal] = ACTIONS(9182), + [sym_number_literal] = ACTIONS(9182), + [aux_sym_boolean_literal_token1] = ACTIONS(9180), + [aux_sym_boolean_literal_token2] = ACTIONS(9180), + [sym_nothing_literal] = ACTIONS(9180), + [sym_null_literal] = ACTIONS(9180), + [sym_empty_literal] = ACTIONS(9180), + [sym_date_literal] = ACTIONS(9182), + [anon_sym_POUND] = ACTIONS(9180), + }, + [STATE(4330)] = { + [sym_identifier] = ACTIONS(9401), + [sym_newline] = ACTIONS(9403), + [anon_sym_COLON] = ACTIONS(9403), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9401), + [aux_sym_frm_property_statement_token1] = ACTIONS(9401), + [anon_sym_DOT] = ACTIONS(9401), + [anon_sym_BANG] = ACTIONS(9403), + [aux_sym__attribute_identifier_token1] = ACTIONS(9401), + [aux_sym_option_statement_token3] = ACTIONS(9401), + [aux_sym_type_declaration_token1] = ACTIONS(9401), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9401), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9401), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9401), + [aux_sym_enum_declaration_token1] = ACTIONS(9401), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9401), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9401), + [aux_sym_declare_function_statement_token1] = ACTIONS(9401), + [aux_sym_preprocessor_const_token1] = ACTIONS(9401), + [aux_sym__property_get_header_token1] = ACTIONS(9401), + [aux_sym_event_declaration_token1] = ACTIONS(9401), + [sym_static_modifier] = ACTIONS(9401), + [sym__dim_keyword] = ACTIONS(9401), + [sym__redim_keyword] = ACTIONS(9401), + [aux_sym_get_accessor_token1] = ACTIONS(9401), + [aux_sym_set_accessor_token1] = ACTIONS(9401), + [aux_sym_const_declaration_token1] = ACTIONS(9401), + [anon_sym_LPAREN] = ACTIONS(9403), + [aux_sym_as_type_clause_token2] = ACTIONS(9401), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9401), + [aux_sym_visibility_token1] = ACTIONS(9401), + [aux_sym_visibility_token2] = ACTIONS(9401), + [aux_sym_elseif_fragment_token1] = ACTIONS(9401), + [aux_sym_else_fragment_token1] = ACTIONS(9401), + [aux_sym_select_statement_token1] = ACTIONS(9401), + [aux_sym__for_header_token1] = ACTIONS(9401), + [aux_sym_do_statement_token1] = ACTIONS(9401), + [aux_sym_do_condition_token1] = ACTIONS(9401), + [aux_sym_with_statement_token1] = ACTIONS(9401), + [aux_sym_exit_statement_token1] = ACTIONS(9401), + [sym_end_statement] = ACTIONS(9403), + [aux_sym_on_goto_statement_token1] = ACTIONS(9401), + [aux_sym_on_goto_statement_token2] = ACTIONS(9401), + [aux_sym_on_error_statement_token2] = ACTIONS(9401), + [sym__ambiguous_redim_statement] = ACTIONS(9403), + [aux_sym_erase_statement_token1] = ACTIONS(9401), + [aux_sym_open_statement_token1] = ACTIONS(9401), + [aux_sym_file_mode_token2] = ACTIONS(9401), + [aux_sym_file_access_token2] = ACTIONS(9401), + [aux_sym_file_lock_token2] = ACTIONS(9401), + [aux_sym_print_statement_token1] = ACTIONS(9401), + [anon_sym_PLUS] = ACTIONS(9403), + [anon_sym_DASH] = ACTIONS(9401), + [anon_sym_QMARK] = ACTIONS(9403), + [aux_sym_close_statement_token1] = ACTIONS(9401), + [aux_sym_put_statement_token1] = ACTIONS(9401), + [aux_sym_unlock_statement_token1] = ACTIONS(9401), + [aux_sym_seek_statement_token1] = ACTIONS(9401), + [sym_reset_statement] = ACTIONS(9401), + [aux_sym_raise_event_statement_token1] = ACTIONS(9401), + [sym_stop_statement] = ACTIONS(9401), + [sym_beep_statement] = ACTIONS(9401), + [aux_sym_unload_statement_token1] = ACTIONS(9401), + [aux_sym_def_type_statement_token1] = ACTIONS(9401), + [aux_sym_def_type_statement_token2] = ACTIONS(9401), + [aux_sym_def_type_statement_token3] = ACTIONS(9401), + [aux_sym_def_type_statement_token4] = ACTIONS(9401), + [aux_sym_def_type_statement_token5] = ACTIONS(9401), + [aux_sym_def_type_statement_token6] = ACTIONS(9401), + [aux_sym_def_type_statement_token7] = ACTIONS(9401), + [aux_sym_def_type_statement_token8] = ACTIONS(9401), + [aux_sym_def_type_statement_token9] = ACTIONS(9401), + [aux_sym_def_type_statement_token10] = ACTIONS(9401), + [aux_sym_def_type_statement_token11] = ACTIONS(9401), + [aux_sym_def_type_statement_token12] = ACTIONS(9401), + [aux_sym_def_type_statement_token13] = ACTIONS(9401), + [aux_sym_def_type_statement_token14] = ACTIONS(9401), + [aux_sym_call_statement_token1] = ACTIONS(9401), + [sym__ambiguous_call_statement] = ACTIONS(9401), + [aux_sym_addressof_expression_token1] = ACTIONS(9401), + [aux_sym_type_of_expression_token1] = ACTIONS(9401), + [aux_sym_unary_expression_token1] = ACTIONS(9401), + [sym_string_literal] = ACTIONS(9403), + [sym_number_literal] = ACTIONS(9403), + [aux_sym_boolean_literal_token1] = ACTIONS(9401), + [aux_sym_boolean_literal_token2] = ACTIONS(9401), + [sym_nothing_literal] = ACTIONS(9401), + [sym_null_literal] = ACTIONS(9401), + [sym_empty_literal] = ACTIONS(9401), + [sym_date_literal] = ACTIONS(9403), + [anon_sym_POUND] = ACTIONS(9401), + }, + [STATE(4331)] = { + [sym_identifier] = ACTIONS(9184), + [sym_newline] = ACTIONS(9186), + [anon_sym_COLON] = ACTIONS(9186), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9184), + [aux_sym_frm_property_statement_token1] = ACTIONS(9184), + [anon_sym_DOT] = ACTIONS(9184), + [anon_sym_BANG] = ACTIONS(9186), + [aux_sym__attribute_identifier_token1] = ACTIONS(9184), + [aux_sym_option_statement_token3] = ACTIONS(9184), + [aux_sym_type_declaration_token1] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9184), + [aux_sym_enum_declaration_token1] = ACTIONS(9184), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9184), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9184), + [aux_sym_declare_function_statement_token1] = ACTIONS(9184), + [aux_sym_preprocessor_const_token1] = ACTIONS(9184), + [aux_sym__property_get_header_token1] = ACTIONS(9184), + [aux_sym_event_declaration_token1] = ACTIONS(9184), + [sym_static_modifier] = ACTIONS(9184), + [sym__dim_keyword] = ACTIONS(9184), + [sym__redim_keyword] = ACTIONS(9184), + [aux_sym_get_accessor_token1] = ACTIONS(9184), + [aux_sym_set_accessor_token1] = ACTIONS(9184), + [aux_sym_const_declaration_token1] = ACTIONS(9184), + [anon_sym_LPAREN] = ACTIONS(9186), + [aux_sym_as_type_clause_token2] = ACTIONS(9184), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9184), + [aux_sym_visibility_token1] = ACTIONS(9184), + [aux_sym_visibility_token2] = ACTIONS(9184), + [aux_sym_elseif_fragment_token1] = ACTIONS(9184), + [aux_sym_else_fragment_token1] = ACTIONS(9184), + [aux_sym_select_statement_token1] = ACTIONS(9184), + [aux_sym__for_header_token1] = ACTIONS(9184), + [aux_sym_do_statement_token1] = ACTIONS(9184), + [aux_sym_do_condition_token1] = ACTIONS(9184), + [aux_sym_with_statement_token1] = ACTIONS(9184), + [aux_sym_exit_statement_token1] = ACTIONS(9184), + [sym_end_statement] = ACTIONS(9186), + [aux_sym_on_goto_statement_token1] = ACTIONS(9184), + [aux_sym_on_goto_statement_token2] = ACTIONS(9184), + [aux_sym_on_error_statement_token2] = ACTIONS(9184), + [sym__ambiguous_redim_statement] = ACTIONS(9186), + [aux_sym_erase_statement_token1] = ACTIONS(9184), + [aux_sym_open_statement_token1] = ACTIONS(9184), + [aux_sym_file_mode_token2] = ACTIONS(9184), + [aux_sym_file_access_token2] = ACTIONS(9184), + [aux_sym_file_lock_token2] = ACTIONS(9184), + [aux_sym_print_statement_token1] = ACTIONS(9184), + [anon_sym_PLUS] = ACTIONS(9186), + [anon_sym_DASH] = ACTIONS(9184), + [anon_sym_QMARK] = ACTIONS(9186), + [aux_sym_close_statement_token1] = ACTIONS(9184), + [aux_sym_put_statement_token1] = ACTIONS(9184), + [aux_sym_unlock_statement_token1] = ACTIONS(9184), + [aux_sym_seek_statement_token1] = ACTIONS(9184), + [sym_reset_statement] = ACTIONS(9184), + [aux_sym_raise_event_statement_token1] = ACTIONS(9184), + [sym_stop_statement] = ACTIONS(9184), + [sym_beep_statement] = ACTIONS(9184), + [aux_sym_unload_statement_token1] = ACTIONS(9184), + [aux_sym_def_type_statement_token1] = ACTIONS(9184), + [aux_sym_def_type_statement_token2] = ACTIONS(9184), + [aux_sym_def_type_statement_token3] = ACTIONS(9184), + [aux_sym_def_type_statement_token4] = ACTIONS(9184), + [aux_sym_def_type_statement_token5] = ACTIONS(9184), + [aux_sym_def_type_statement_token6] = ACTIONS(9184), + [aux_sym_def_type_statement_token7] = ACTIONS(9184), + [aux_sym_def_type_statement_token8] = ACTIONS(9184), + [aux_sym_def_type_statement_token9] = ACTIONS(9184), + [aux_sym_def_type_statement_token10] = ACTIONS(9184), + [aux_sym_def_type_statement_token11] = ACTIONS(9184), + [aux_sym_def_type_statement_token12] = ACTIONS(9184), + [aux_sym_def_type_statement_token13] = ACTIONS(9184), + [aux_sym_def_type_statement_token14] = ACTIONS(9184), + [aux_sym_call_statement_token1] = ACTIONS(9184), + [sym__ambiguous_call_statement] = ACTIONS(9184), + [aux_sym_addressof_expression_token1] = ACTIONS(9184), + [aux_sym_type_of_expression_token1] = ACTIONS(9184), + [aux_sym_unary_expression_token1] = ACTIONS(9184), + [sym_string_literal] = ACTIONS(9186), + [sym_number_literal] = ACTIONS(9186), + [aux_sym_boolean_literal_token1] = ACTIONS(9184), + [aux_sym_boolean_literal_token2] = ACTIONS(9184), + [sym_nothing_literal] = ACTIONS(9184), + [sym_null_literal] = ACTIONS(9184), + [sym_empty_literal] = ACTIONS(9184), + [sym_date_literal] = ACTIONS(9186), + [anon_sym_POUND] = ACTIONS(9184), + }, + [STATE(4332)] = { + [sym_identifier] = ACTIONS(9726), + [sym_newline] = ACTIONS(9728), + [anon_sym_COLON] = ACTIONS(9728), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9726), + [aux_sym_frm_property_statement_token1] = ACTIONS(9726), + [anon_sym_DOT] = ACTIONS(9726), + [anon_sym_BANG] = ACTIONS(9728), + [aux_sym__attribute_identifier_token1] = ACTIONS(9726), + [aux_sym_option_statement_token3] = ACTIONS(9726), + [aux_sym_type_declaration_token1] = ACTIONS(9726), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9726), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9726), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9726), + [aux_sym_enum_declaration_token1] = ACTIONS(9726), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9726), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9726), + [aux_sym_declare_function_statement_token1] = ACTIONS(9726), + [aux_sym_preprocessor_const_token1] = ACTIONS(9726), + [aux_sym__property_get_header_token1] = ACTIONS(9726), + [aux_sym_event_declaration_token1] = ACTIONS(9726), + [sym_static_modifier] = ACTIONS(9726), + [sym__dim_keyword] = ACTIONS(9726), + [sym__redim_keyword] = ACTIONS(9726), + [aux_sym_get_accessor_token1] = ACTIONS(9726), + [aux_sym_set_accessor_token1] = ACTIONS(9726), + [aux_sym_const_declaration_token1] = ACTIONS(9726), + [anon_sym_LPAREN] = ACTIONS(9728), + [aux_sym_as_type_clause_token2] = ACTIONS(9726), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9726), + [aux_sym_visibility_token1] = ACTIONS(9726), + [aux_sym_visibility_token2] = ACTIONS(9726), + [aux_sym_elseif_fragment_token1] = ACTIONS(9726), + [aux_sym_else_fragment_token1] = ACTIONS(9726), + [aux_sym_select_statement_token1] = ACTIONS(9726), + [aux_sym__for_header_token1] = ACTIONS(9726), + [aux_sym_do_statement_token1] = ACTIONS(9726), + [aux_sym_do_condition_token1] = ACTIONS(9726), + [aux_sym_with_statement_token1] = ACTIONS(9726), + [aux_sym_exit_statement_token1] = ACTIONS(9726), + [sym_end_statement] = ACTIONS(9728), + [aux_sym_on_goto_statement_token1] = ACTIONS(9726), + [aux_sym_on_goto_statement_token2] = ACTIONS(9726), + [aux_sym_on_error_statement_token2] = ACTIONS(9726), + [sym__ambiguous_redim_statement] = ACTIONS(9728), + [aux_sym_erase_statement_token1] = ACTIONS(9726), + [aux_sym_open_statement_token1] = ACTIONS(9726), + [aux_sym_file_mode_token2] = ACTIONS(9726), + [aux_sym_file_access_token2] = ACTIONS(9726), + [aux_sym_file_lock_token2] = ACTIONS(9726), + [aux_sym_print_statement_token1] = ACTIONS(9726), + [anon_sym_PLUS] = ACTIONS(9728), + [anon_sym_DASH] = ACTIONS(9726), + [anon_sym_QMARK] = ACTIONS(9728), + [aux_sym_close_statement_token1] = ACTIONS(9726), + [aux_sym_put_statement_token1] = ACTIONS(9726), + [aux_sym_unlock_statement_token1] = ACTIONS(9726), + [aux_sym_seek_statement_token1] = ACTIONS(9726), + [sym_reset_statement] = ACTIONS(9726), + [aux_sym_raise_event_statement_token1] = ACTIONS(9726), + [sym_stop_statement] = ACTIONS(9726), + [sym_beep_statement] = ACTIONS(9726), + [aux_sym_unload_statement_token1] = ACTIONS(9726), + [aux_sym_def_type_statement_token1] = ACTIONS(9726), + [aux_sym_def_type_statement_token2] = ACTIONS(9726), + [aux_sym_def_type_statement_token3] = ACTIONS(9726), + [aux_sym_def_type_statement_token4] = ACTIONS(9726), + [aux_sym_def_type_statement_token5] = ACTIONS(9726), + [aux_sym_def_type_statement_token6] = ACTIONS(9726), + [aux_sym_def_type_statement_token7] = ACTIONS(9726), + [aux_sym_def_type_statement_token8] = ACTIONS(9726), + [aux_sym_def_type_statement_token9] = ACTIONS(9726), + [aux_sym_def_type_statement_token10] = ACTIONS(9726), + [aux_sym_def_type_statement_token11] = ACTIONS(9726), + [aux_sym_def_type_statement_token12] = ACTIONS(9726), + [aux_sym_def_type_statement_token13] = ACTIONS(9726), + [aux_sym_def_type_statement_token14] = ACTIONS(9726), + [aux_sym_call_statement_token1] = ACTIONS(9726), + [sym__ambiguous_call_statement] = ACTIONS(9726), + [aux_sym_addressof_expression_token1] = ACTIONS(9726), + [aux_sym_type_of_expression_token1] = ACTIONS(9726), + [aux_sym_unary_expression_token1] = ACTIONS(9726), + [sym_string_literal] = ACTIONS(9728), + [sym_number_literal] = ACTIONS(9728), + [aux_sym_boolean_literal_token1] = ACTIONS(9726), + [aux_sym_boolean_literal_token2] = ACTIONS(9726), + [sym_nothing_literal] = ACTIONS(9726), + [sym_null_literal] = ACTIONS(9726), + [sym_empty_literal] = ACTIONS(9726), + [sym_date_literal] = ACTIONS(9728), + [anon_sym_POUND] = ACTIONS(9726), + }, + [STATE(4333)] = { + [sym_identifier] = ACTIONS(9188), + [sym_newline] = ACTIONS(9190), + [anon_sym_COLON] = ACTIONS(9190), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9188), + [aux_sym_frm_property_statement_token1] = ACTIONS(9188), + [anon_sym_DOT] = ACTIONS(9188), + [anon_sym_BANG] = ACTIONS(9190), + [aux_sym__attribute_identifier_token1] = ACTIONS(9188), + [aux_sym_option_statement_token3] = ACTIONS(9188), + [aux_sym_type_declaration_token1] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9188), + [aux_sym_enum_declaration_token1] = ACTIONS(9188), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9188), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9188), + [aux_sym_declare_function_statement_token1] = ACTIONS(9188), + [aux_sym_preprocessor_const_token1] = ACTIONS(9188), + [aux_sym__property_get_header_token1] = ACTIONS(9188), + [aux_sym_event_declaration_token1] = ACTIONS(9188), + [sym_static_modifier] = ACTIONS(9188), + [sym__dim_keyword] = ACTIONS(9188), + [sym__redim_keyword] = ACTIONS(9188), + [aux_sym_get_accessor_token1] = ACTIONS(9188), + [aux_sym_set_accessor_token1] = ACTIONS(9188), + [aux_sym_const_declaration_token1] = ACTIONS(9188), + [anon_sym_LPAREN] = ACTIONS(9190), + [aux_sym_as_type_clause_token2] = ACTIONS(9188), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9188), + [aux_sym_visibility_token1] = ACTIONS(9188), + [aux_sym_visibility_token2] = ACTIONS(9188), + [aux_sym_elseif_fragment_token1] = ACTIONS(9188), + [aux_sym_else_fragment_token1] = ACTIONS(9188), + [aux_sym_select_statement_token1] = ACTIONS(9188), + [aux_sym__for_header_token1] = ACTIONS(9188), + [aux_sym_do_statement_token1] = ACTIONS(9188), + [aux_sym_do_condition_token1] = ACTIONS(9188), + [aux_sym_with_statement_token1] = ACTIONS(9188), + [aux_sym_exit_statement_token1] = ACTIONS(9188), + [sym_end_statement] = ACTIONS(9190), + [aux_sym_on_goto_statement_token1] = ACTIONS(9188), + [aux_sym_on_goto_statement_token2] = ACTIONS(9188), + [aux_sym_on_error_statement_token2] = ACTIONS(9188), + [sym__ambiguous_redim_statement] = ACTIONS(9190), + [aux_sym_erase_statement_token1] = ACTIONS(9188), + [aux_sym_open_statement_token1] = ACTIONS(9188), + [aux_sym_file_mode_token2] = ACTIONS(9188), + [aux_sym_file_access_token2] = ACTIONS(9188), + [aux_sym_file_lock_token2] = ACTIONS(9188), + [aux_sym_print_statement_token1] = ACTIONS(9188), + [anon_sym_PLUS] = ACTIONS(9190), + [anon_sym_DASH] = ACTIONS(9188), + [anon_sym_QMARK] = ACTIONS(9190), + [aux_sym_close_statement_token1] = ACTIONS(9188), + [aux_sym_put_statement_token1] = ACTIONS(9188), + [aux_sym_unlock_statement_token1] = ACTIONS(9188), + [aux_sym_seek_statement_token1] = ACTIONS(9188), + [sym_reset_statement] = ACTIONS(9188), + [aux_sym_raise_event_statement_token1] = ACTIONS(9188), + [sym_stop_statement] = ACTIONS(9188), + [sym_beep_statement] = ACTIONS(9188), + [aux_sym_unload_statement_token1] = ACTIONS(9188), + [aux_sym_def_type_statement_token1] = ACTIONS(9188), + [aux_sym_def_type_statement_token2] = ACTIONS(9188), + [aux_sym_def_type_statement_token3] = ACTIONS(9188), + [aux_sym_def_type_statement_token4] = ACTIONS(9188), + [aux_sym_def_type_statement_token5] = ACTIONS(9188), + [aux_sym_def_type_statement_token6] = ACTIONS(9188), + [aux_sym_def_type_statement_token7] = ACTIONS(9188), + [aux_sym_def_type_statement_token8] = ACTIONS(9188), + [aux_sym_def_type_statement_token9] = ACTIONS(9188), + [aux_sym_def_type_statement_token10] = ACTIONS(9188), + [aux_sym_def_type_statement_token11] = ACTIONS(9188), + [aux_sym_def_type_statement_token12] = ACTIONS(9188), + [aux_sym_def_type_statement_token13] = ACTIONS(9188), + [aux_sym_def_type_statement_token14] = ACTIONS(9188), + [aux_sym_call_statement_token1] = ACTIONS(9188), + [sym__ambiguous_call_statement] = ACTIONS(9188), + [aux_sym_addressof_expression_token1] = ACTIONS(9188), + [aux_sym_type_of_expression_token1] = ACTIONS(9188), + [aux_sym_unary_expression_token1] = ACTIONS(9188), + [sym_string_literal] = ACTIONS(9190), + [sym_number_literal] = ACTIONS(9190), + [aux_sym_boolean_literal_token1] = ACTIONS(9188), + [aux_sym_boolean_literal_token2] = ACTIONS(9188), + [sym_nothing_literal] = ACTIONS(9188), + [sym_null_literal] = ACTIONS(9188), + [sym_empty_literal] = ACTIONS(9188), + [sym_date_literal] = ACTIONS(9190), + [anon_sym_POUND] = ACTIONS(9188), + }, + [STATE(4334)] = { + [sym_identifier] = ACTIONS(9192), + [sym_newline] = ACTIONS(9194), + [anon_sym_COLON] = ACTIONS(9194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9192), + [aux_sym_frm_property_statement_token1] = ACTIONS(9192), + [anon_sym_DOT] = ACTIONS(9192), + [anon_sym_BANG] = ACTIONS(9194), + [aux_sym__attribute_identifier_token1] = ACTIONS(9192), + [aux_sym_option_statement_token3] = ACTIONS(9192), + [aux_sym_type_declaration_token1] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9192), + [aux_sym_enum_declaration_token1] = ACTIONS(9192), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9192), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9192), + [aux_sym_declare_function_statement_token1] = ACTIONS(9192), + [aux_sym_preprocessor_const_token1] = ACTIONS(9192), + [aux_sym__property_get_header_token1] = ACTIONS(9192), + [aux_sym_event_declaration_token1] = ACTIONS(9192), + [sym_static_modifier] = ACTIONS(9192), + [sym__dim_keyword] = ACTIONS(9192), + [sym__redim_keyword] = ACTIONS(9192), + [aux_sym_get_accessor_token1] = ACTIONS(9192), + [aux_sym_set_accessor_token1] = ACTIONS(9192), + [aux_sym_const_declaration_token1] = ACTIONS(9192), + [anon_sym_LPAREN] = ACTIONS(9194), + [aux_sym_as_type_clause_token2] = ACTIONS(9192), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9192), + [aux_sym_visibility_token1] = ACTIONS(9192), + [aux_sym_visibility_token2] = ACTIONS(9192), + [aux_sym_elseif_fragment_token1] = ACTIONS(9192), + [aux_sym_else_fragment_token1] = ACTIONS(9192), + [aux_sym_select_statement_token1] = ACTIONS(9192), + [aux_sym__for_header_token1] = ACTIONS(9192), + [aux_sym_do_statement_token1] = ACTIONS(9192), + [aux_sym_do_condition_token1] = ACTIONS(9192), + [aux_sym_with_statement_token1] = ACTIONS(9192), + [aux_sym_exit_statement_token1] = ACTIONS(9192), + [sym_end_statement] = ACTIONS(9194), + [aux_sym_on_goto_statement_token1] = ACTIONS(9192), + [aux_sym_on_goto_statement_token2] = ACTIONS(9192), + [aux_sym_on_error_statement_token2] = ACTIONS(9192), + [sym__ambiguous_redim_statement] = ACTIONS(9194), + [aux_sym_erase_statement_token1] = ACTIONS(9192), + [aux_sym_open_statement_token1] = ACTIONS(9192), + [aux_sym_file_mode_token2] = ACTIONS(9192), + [aux_sym_file_access_token2] = ACTIONS(9192), + [aux_sym_file_lock_token2] = ACTIONS(9192), + [aux_sym_print_statement_token1] = ACTIONS(9192), + [anon_sym_PLUS] = ACTIONS(9194), + [anon_sym_DASH] = ACTIONS(9192), + [anon_sym_QMARK] = ACTIONS(9194), + [aux_sym_close_statement_token1] = ACTIONS(9192), + [aux_sym_put_statement_token1] = ACTIONS(9192), + [aux_sym_unlock_statement_token1] = ACTIONS(9192), + [aux_sym_seek_statement_token1] = ACTIONS(9192), + [sym_reset_statement] = ACTIONS(9192), + [aux_sym_raise_event_statement_token1] = ACTIONS(9192), + [sym_stop_statement] = ACTIONS(9192), + [sym_beep_statement] = ACTIONS(9192), + [aux_sym_unload_statement_token1] = ACTIONS(9192), + [aux_sym_def_type_statement_token1] = ACTIONS(9192), + [aux_sym_def_type_statement_token2] = ACTIONS(9192), + [aux_sym_def_type_statement_token3] = ACTIONS(9192), + [aux_sym_def_type_statement_token4] = ACTIONS(9192), + [aux_sym_def_type_statement_token5] = ACTIONS(9192), + [aux_sym_def_type_statement_token6] = ACTIONS(9192), + [aux_sym_def_type_statement_token7] = ACTIONS(9192), + [aux_sym_def_type_statement_token8] = ACTIONS(9192), + [aux_sym_def_type_statement_token9] = ACTIONS(9192), + [aux_sym_def_type_statement_token10] = ACTIONS(9192), + [aux_sym_def_type_statement_token11] = ACTIONS(9192), + [aux_sym_def_type_statement_token12] = ACTIONS(9192), + [aux_sym_def_type_statement_token13] = ACTIONS(9192), + [aux_sym_def_type_statement_token14] = ACTIONS(9192), + [aux_sym_call_statement_token1] = ACTIONS(9192), + [sym__ambiguous_call_statement] = ACTIONS(9192), + [aux_sym_addressof_expression_token1] = ACTIONS(9192), + [aux_sym_type_of_expression_token1] = ACTIONS(9192), + [aux_sym_unary_expression_token1] = ACTIONS(9192), + [sym_string_literal] = ACTIONS(9194), + [sym_number_literal] = ACTIONS(9194), + [aux_sym_boolean_literal_token1] = ACTIONS(9192), + [aux_sym_boolean_literal_token2] = ACTIONS(9192), + [sym_nothing_literal] = ACTIONS(9192), + [sym_null_literal] = ACTIONS(9192), + [sym_empty_literal] = ACTIONS(9192), + [sym_date_literal] = ACTIONS(9194), + [anon_sym_POUND] = ACTIONS(9192), + }, + [STATE(4335)] = { + [sym_identifier] = ACTIONS(9732), + [sym_newline] = ACTIONS(9734), + [anon_sym_COLON] = ACTIONS(9734), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9732), + [aux_sym_frm_property_statement_token1] = ACTIONS(9732), + [anon_sym_DOT] = ACTIONS(9732), + [anon_sym_BANG] = ACTIONS(9734), + [aux_sym__attribute_identifier_token1] = ACTIONS(9732), + [aux_sym_option_statement_token3] = ACTIONS(9732), + [aux_sym_type_declaration_token1] = ACTIONS(9732), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9732), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9732), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9732), + [aux_sym_enum_declaration_token1] = ACTIONS(9732), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9732), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9732), + [aux_sym_declare_function_statement_token1] = ACTIONS(9732), + [aux_sym_preprocessor_const_token1] = ACTIONS(9732), + [aux_sym__property_get_header_token1] = ACTIONS(9732), + [aux_sym_event_declaration_token1] = ACTIONS(9732), + [sym_static_modifier] = ACTIONS(9732), + [sym__dim_keyword] = ACTIONS(9732), + [sym__redim_keyword] = ACTIONS(9732), + [aux_sym_get_accessor_token1] = ACTIONS(9732), + [aux_sym_set_accessor_token1] = ACTIONS(9732), + [aux_sym_const_declaration_token1] = ACTIONS(9732), + [anon_sym_LPAREN] = ACTIONS(9734), + [aux_sym_as_type_clause_token2] = ACTIONS(9732), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9732), + [aux_sym_visibility_token1] = ACTIONS(9732), + [aux_sym_visibility_token2] = ACTIONS(9732), + [aux_sym_elseif_fragment_token1] = ACTIONS(9732), + [aux_sym_else_fragment_token1] = ACTIONS(9732), + [aux_sym_select_statement_token1] = ACTIONS(9732), + [aux_sym__for_header_token1] = ACTIONS(9732), + [aux_sym_do_statement_token1] = ACTIONS(9732), + [aux_sym_do_condition_token1] = ACTIONS(9732), + [aux_sym_with_statement_token1] = ACTIONS(9732), + [aux_sym_exit_statement_token1] = ACTIONS(9732), + [sym_end_statement] = ACTIONS(9734), + [aux_sym_on_goto_statement_token1] = ACTIONS(9732), + [aux_sym_on_goto_statement_token2] = ACTIONS(9732), + [aux_sym_on_error_statement_token2] = ACTIONS(9732), + [sym__ambiguous_redim_statement] = ACTIONS(9734), + [aux_sym_erase_statement_token1] = ACTIONS(9732), + [aux_sym_open_statement_token1] = ACTIONS(9732), + [aux_sym_file_mode_token2] = ACTIONS(9732), + [aux_sym_file_access_token2] = ACTIONS(9732), + [aux_sym_file_lock_token2] = ACTIONS(9732), + [aux_sym_print_statement_token1] = ACTIONS(9732), + [anon_sym_PLUS] = ACTIONS(9734), + [anon_sym_DASH] = ACTIONS(9732), + [anon_sym_QMARK] = ACTIONS(9734), + [aux_sym_close_statement_token1] = ACTIONS(9732), + [aux_sym_put_statement_token1] = ACTIONS(9732), + [aux_sym_unlock_statement_token1] = ACTIONS(9732), + [aux_sym_seek_statement_token1] = ACTIONS(9732), + [sym_reset_statement] = ACTIONS(9732), + [aux_sym_raise_event_statement_token1] = ACTIONS(9732), + [sym_stop_statement] = ACTIONS(9732), + [sym_beep_statement] = ACTIONS(9732), + [aux_sym_unload_statement_token1] = ACTIONS(9732), + [aux_sym_def_type_statement_token1] = ACTIONS(9732), + [aux_sym_def_type_statement_token2] = ACTIONS(9732), + [aux_sym_def_type_statement_token3] = ACTIONS(9732), + [aux_sym_def_type_statement_token4] = ACTIONS(9732), + [aux_sym_def_type_statement_token5] = ACTIONS(9732), + [aux_sym_def_type_statement_token6] = ACTIONS(9732), + [aux_sym_def_type_statement_token7] = ACTIONS(9732), + [aux_sym_def_type_statement_token8] = ACTIONS(9732), + [aux_sym_def_type_statement_token9] = ACTIONS(9732), + [aux_sym_def_type_statement_token10] = ACTIONS(9732), + [aux_sym_def_type_statement_token11] = ACTIONS(9732), + [aux_sym_def_type_statement_token12] = ACTIONS(9732), + [aux_sym_def_type_statement_token13] = ACTIONS(9732), + [aux_sym_def_type_statement_token14] = ACTIONS(9732), + [aux_sym_call_statement_token1] = ACTIONS(9732), + [sym__ambiguous_call_statement] = ACTIONS(9732), + [aux_sym_addressof_expression_token1] = ACTIONS(9732), + [aux_sym_type_of_expression_token1] = ACTIONS(9732), + [aux_sym_unary_expression_token1] = ACTIONS(9732), + [sym_string_literal] = ACTIONS(9734), + [sym_number_literal] = ACTIONS(9734), + [aux_sym_boolean_literal_token1] = ACTIONS(9732), + [aux_sym_boolean_literal_token2] = ACTIONS(9732), + [sym_nothing_literal] = ACTIONS(9732), + [sym_null_literal] = ACTIONS(9732), + [sym_empty_literal] = ACTIONS(9732), + [sym_date_literal] = ACTIONS(9734), + [anon_sym_POUND] = ACTIONS(9732), + }, + [STATE(4336)] = { + [sym_identifier] = ACTIONS(9736), + [sym_newline] = ACTIONS(9738), + [anon_sym_COLON] = ACTIONS(9738), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9736), + [aux_sym_frm_property_statement_token1] = ACTIONS(9736), + [anon_sym_DOT] = ACTIONS(9736), + [anon_sym_BANG] = ACTIONS(9738), + [aux_sym__attribute_identifier_token1] = ACTIONS(9736), + [aux_sym_option_statement_token3] = ACTIONS(9736), + [aux_sym_type_declaration_token1] = ACTIONS(9736), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9736), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9736), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9736), + [aux_sym_enum_declaration_token1] = ACTIONS(9736), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9736), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9736), + [aux_sym_declare_function_statement_token1] = ACTIONS(9736), + [aux_sym_preprocessor_const_token1] = ACTIONS(9736), + [aux_sym__property_get_header_token1] = ACTIONS(9736), + [aux_sym_event_declaration_token1] = ACTIONS(9736), + [sym_static_modifier] = ACTIONS(9736), + [sym__dim_keyword] = ACTIONS(9736), + [sym__redim_keyword] = ACTIONS(9736), + [aux_sym_get_accessor_token1] = ACTIONS(9736), + [aux_sym_set_accessor_token1] = ACTIONS(9736), + [aux_sym_const_declaration_token1] = ACTIONS(9736), + [anon_sym_LPAREN] = ACTIONS(9738), + [aux_sym_as_type_clause_token2] = ACTIONS(9736), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9736), + [aux_sym_visibility_token1] = ACTIONS(9736), + [aux_sym_visibility_token2] = ACTIONS(9736), + [aux_sym_elseif_fragment_token1] = ACTIONS(9736), + [aux_sym_else_fragment_token1] = ACTIONS(9736), + [aux_sym_select_statement_token1] = ACTIONS(9736), + [aux_sym__for_header_token1] = ACTIONS(9736), + [aux_sym_do_statement_token1] = ACTIONS(9736), + [aux_sym_do_condition_token1] = ACTIONS(9736), + [aux_sym_with_statement_token1] = ACTIONS(9736), + [aux_sym_exit_statement_token1] = ACTIONS(9736), + [sym_end_statement] = ACTIONS(9738), + [aux_sym_on_goto_statement_token1] = ACTIONS(9736), + [aux_sym_on_goto_statement_token2] = ACTIONS(9736), + [aux_sym_on_error_statement_token2] = ACTIONS(9736), + [sym__ambiguous_redim_statement] = ACTIONS(9738), + [aux_sym_erase_statement_token1] = ACTIONS(9736), + [aux_sym_open_statement_token1] = ACTIONS(9736), + [aux_sym_file_mode_token2] = ACTIONS(9736), + [aux_sym_file_access_token2] = ACTIONS(9736), + [aux_sym_file_lock_token2] = ACTIONS(9736), + [aux_sym_print_statement_token1] = ACTIONS(9736), + [anon_sym_PLUS] = ACTIONS(9738), + [anon_sym_DASH] = ACTIONS(9736), + [anon_sym_QMARK] = ACTIONS(9738), + [aux_sym_close_statement_token1] = ACTIONS(9736), + [aux_sym_put_statement_token1] = ACTIONS(9736), + [aux_sym_unlock_statement_token1] = ACTIONS(9736), + [aux_sym_seek_statement_token1] = ACTIONS(9736), + [sym_reset_statement] = ACTIONS(9736), + [aux_sym_raise_event_statement_token1] = ACTIONS(9736), + [sym_stop_statement] = ACTIONS(9736), + [sym_beep_statement] = ACTIONS(9736), + [aux_sym_unload_statement_token1] = ACTIONS(9736), + [aux_sym_def_type_statement_token1] = ACTIONS(9736), + [aux_sym_def_type_statement_token2] = ACTIONS(9736), + [aux_sym_def_type_statement_token3] = ACTIONS(9736), + [aux_sym_def_type_statement_token4] = ACTIONS(9736), + [aux_sym_def_type_statement_token5] = ACTIONS(9736), + [aux_sym_def_type_statement_token6] = ACTIONS(9736), + [aux_sym_def_type_statement_token7] = ACTIONS(9736), + [aux_sym_def_type_statement_token8] = ACTIONS(9736), + [aux_sym_def_type_statement_token9] = ACTIONS(9736), + [aux_sym_def_type_statement_token10] = ACTIONS(9736), + [aux_sym_def_type_statement_token11] = ACTIONS(9736), + [aux_sym_def_type_statement_token12] = ACTIONS(9736), + [aux_sym_def_type_statement_token13] = ACTIONS(9736), + [aux_sym_def_type_statement_token14] = ACTIONS(9736), + [aux_sym_call_statement_token1] = ACTIONS(9736), + [sym__ambiguous_call_statement] = ACTIONS(9736), + [aux_sym_addressof_expression_token1] = ACTIONS(9736), + [aux_sym_type_of_expression_token1] = ACTIONS(9736), + [aux_sym_unary_expression_token1] = ACTIONS(9736), + [sym_string_literal] = ACTIONS(9738), + [sym_number_literal] = ACTIONS(9738), + [aux_sym_boolean_literal_token1] = ACTIONS(9736), + [aux_sym_boolean_literal_token2] = ACTIONS(9736), + [sym_nothing_literal] = ACTIONS(9736), + [sym_null_literal] = ACTIONS(9736), + [sym_empty_literal] = ACTIONS(9736), + [sym_date_literal] = ACTIONS(9738), + [anon_sym_POUND] = ACTIONS(9736), + }, + [STATE(4337)] = { + [sym_identifier] = ACTIONS(8923), + [sym_newline] = ACTIONS(8925), + [anon_sym_COLON] = ACTIONS(8925), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8923), + [aux_sym_frm_property_statement_token1] = ACTIONS(8923), + [anon_sym_DOT] = ACTIONS(8923), + [anon_sym_BANG] = ACTIONS(8925), + [aux_sym__attribute_identifier_token1] = ACTIONS(8923), + [aux_sym_option_statement_token3] = ACTIONS(8923), + [aux_sym_type_declaration_token1] = ACTIONS(8923), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8923), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8923), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8923), + [aux_sym_enum_declaration_token1] = ACTIONS(8923), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8923), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8923), + [aux_sym_declare_function_statement_token1] = ACTIONS(8923), + [aux_sym_preprocessor_const_token1] = ACTIONS(8923), + [aux_sym__property_get_header_token1] = ACTIONS(8923), + [aux_sym_event_declaration_token1] = ACTIONS(8923), + [sym_static_modifier] = ACTIONS(8923), + [sym__dim_keyword] = ACTIONS(8923), + [sym__redim_keyword] = ACTIONS(8923), + [aux_sym_get_accessor_token1] = ACTIONS(8923), + [aux_sym_set_accessor_token1] = ACTIONS(8923), + [aux_sym_const_declaration_token1] = ACTIONS(8923), + [anon_sym_LPAREN] = ACTIONS(8925), + [aux_sym_as_type_clause_token2] = ACTIONS(8923), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8923), + [aux_sym_visibility_token1] = ACTIONS(8923), + [aux_sym_visibility_token2] = ACTIONS(8923), + [aux_sym_elseif_fragment_token1] = ACTIONS(8923), + [aux_sym_else_fragment_token1] = ACTIONS(8923), + [aux_sym_select_statement_token1] = ACTIONS(8923), + [aux_sym__for_header_token1] = ACTIONS(8923), + [aux_sym_do_statement_token1] = ACTIONS(8923), + [aux_sym_do_condition_token1] = ACTIONS(8923), + [aux_sym_with_statement_token1] = ACTIONS(8923), + [aux_sym_exit_statement_token1] = ACTIONS(8923), + [sym_end_statement] = ACTIONS(8925), + [aux_sym_on_goto_statement_token1] = ACTIONS(8923), + [aux_sym_on_goto_statement_token2] = ACTIONS(8923), + [aux_sym_on_error_statement_token2] = ACTIONS(8923), + [sym__ambiguous_redim_statement] = ACTIONS(8925), + [aux_sym_erase_statement_token1] = ACTIONS(8923), + [aux_sym_open_statement_token1] = ACTIONS(8923), + [aux_sym_file_mode_token2] = ACTIONS(8923), + [aux_sym_file_access_token2] = ACTIONS(8923), + [aux_sym_file_lock_token2] = ACTIONS(8923), + [aux_sym_print_statement_token1] = ACTIONS(8923), + [anon_sym_PLUS] = ACTIONS(8925), + [anon_sym_DASH] = ACTIONS(8923), + [anon_sym_QMARK] = ACTIONS(8925), + [aux_sym_close_statement_token1] = ACTIONS(8923), + [aux_sym_put_statement_token1] = ACTIONS(8923), + [aux_sym_unlock_statement_token1] = ACTIONS(8923), + [aux_sym_seek_statement_token1] = ACTIONS(8923), + [sym_reset_statement] = ACTIONS(8923), + [aux_sym_raise_event_statement_token1] = ACTIONS(8923), + [sym_stop_statement] = ACTIONS(8923), + [sym_beep_statement] = ACTIONS(8923), + [aux_sym_unload_statement_token1] = ACTIONS(8923), + [aux_sym_def_type_statement_token1] = ACTIONS(8923), + [aux_sym_def_type_statement_token2] = ACTIONS(8923), + [aux_sym_def_type_statement_token3] = ACTIONS(8923), + [aux_sym_def_type_statement_token4] = ACTIONS(8923), + [aux_sym_def_type_statement_token5] = ACTIONS(8923), + [aux_sym_def_type_statement_token6] = ACTIONS(8923), + [aux_sym_def_type_statement_token7] = ACTIONS(8923), + [aux_sym_def_type_statement_token8] = ACTIONS(8923), + [aux_sym_def_type_statement_token9] = ACTIONS(8923), + [aux_sym_def_type_statement_token10] = ACTIONS(8923), + [aux_sym_def_type_statement_token11] = ACTIONS(8923), + [aux_sym_def_type_statement_token12] = ACTIONS(8923), + [aux_sym_def_type_statement_token13] = ACTIONS(8923), + [aux_sym_def_type_statement_token14] = ACTIONS(8923), + [aux_sym_call_statement_token1] = ACTIONS(8923), + [sym__ambiguous_call_statement] = ACTIONS(8923), + [aux_sym_addressof_expression_token1] = ACTIONS(8923), + [aux_sym_type_of_expression_token1] = ACTIONS(8923), + [aux_sym_unary_expression_token1] = ACTIONS(8923), + [sym_string_literal] = ACTIONS(8925), + [sym_number_literal] = ACTIONS(8925), + [aux_sym_boolean_literal_token1] = ACTIONS(8923), + [aux_sym_boolean_literal_token2] = ACTIONS(8923), + [sym_nothing_literal] = ACTIONS(8923), + [sym_null_literal] = ACTIONS(8923), + [sym_empty_literal] = ACTIONS(8923), + [sym_date_literal] = ACTIONS(8925), + [anon_sym_POUND] = ACTIONS(8923), + }, + [STATE(4338)] = { + [sym_identifier] = ACTIONS(9772), + [sym_newline] = ACTIONS(9774), + [anon_sym_COLON] = ACTIONS(9774), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9772), + [aux_sym_frm_property_statement_token1] = ACTIONS(9772), + [anon_sym_DOT] = ACTIONS(9772), + [anon_sym_BANG] = ACTIONS(9774), + [aux_sym__attribute_identifier_token1] = ACTIONS(9772), + [aux_sym_option_statement_token3] = ACTIONS(9772), + [aux_sym_type_declaration_token1] = ACTIONS(9772), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9772), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9772), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9772), + [aux_sym_enum_declaration_token1] = ACTIONS(9772), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9772), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9772), + [aux_sym_declare_function_statement_token1] = ACTIONS(9772), + [aux_sym_preprocessor_const_token1] = ACTIONS(9772), + [aux_sym__property_get_header_token1] = ACTIONS(9772), + [aux_sym_event_declaration_token1] = ACTIONS(9772), + [sym_static_modifier] = ACTIONS(9772), + [sym__dim_keyword] = ACTIONS(9772), + [sym__redim_keyword] = ACTIONS(9772), + [aux_sym_get_accessor_token1] = ACTIONS(9772), + [aux_sym_set_accessor_token1] = ACTIONS(9772), + [aux_sym_const_declaration_token1] = ACTIONS(9772), + [anon_sym_LPAREN] = ACTIONS(9774), + [aux_sym_as_type_clause_token2] = ACTIONS(9772), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9772), + [aux_sym_visibility_token1] = ACTIONS(9772), + [aux_sym_visibility_token2] = ACTIONS(9772), + [aux_sym_elseif_fragment_token1] = ACTIONS(9772), + [aux_sym_else_fragment_token1] = ACTIONS(9772), + [aux_sym_select_statement_token1] = ACTIONS(9772), + [aux_sym__for_header_token1] = ACTIONS(9772), + [aux_sym_do_statement_token1] = ACTIONS(9772), + [aux_sym_do_condition_token1] = ACTIONS(9772), + [aux_sym_with_statement_token1] = ACTIONS(9772), + [aux_sym_exit_statement_token1] = ACTIONS(9772), + [sym_end_statement] = ACTIONS(9774), + [aux_sym_on_goto_statement_token1] = ACTIONS(9772), + [aux_sym_on_goto_statement_token2] = ACTIONS(9772), + [aux_sym_on_error_statement_token2] = ACTIONS(9772), + [sym__ambiguous_redim_statement] = ACTIONS(9774), + [aux_sym_erase_statement_token1] = ACTIONS(9772), + [aux_sym_open_statement_token1] = ACTIONS(9772), + [aux_sym_file_mode_token2] = ACTIONS(9772), + [aux_sym_file_access_token2] = ACTIONS(9772), + [aux_sym_file_lock_token2] = ACTIONS(9772), + [aux_sym_print_statement_token1] = ACTIONS(9772), + [anon_sym_PLUS] = ACTIONS(9774), + [anon_sym_DASH] = ACTIONS(9772), + [anon_sym_QMARK] = ACTIONS(9774), + [aux_sym_close_statement_token1] = ACTIONS(9772), + [aux_sym_put_statement_token1] = ACTIONS(9772), + [aux_sym_unlock_statement_token1] = ACTIONS(9772), + [aux_sym_seek_statement_token1] = ACTIONS(9772), + [sym_reset_statement] = ACTIONS(9772), + [aux_sym_raise_event_statement_token1] = ACTIONS(9772), + [sym_stop_statement] = ACTIONS(9772), + [sym_beep_statement] = ACTIONS(9772), + [aux_sym_unload_statement_token1] = ACTIONS(9772), + [aux_sym_def_type_statement_token1] = ACTIONS(9772), + [aux_sym_def_type_statement_token2] = ACTIONS(9772), + [aux_sym_def_type_statement_token3] = ACTIONS(9772), + [aux_sym_def_type_statement_token4] = ACTIONS(9772), + [aux_sym_def_type_statement_token5] = ACTIONS(9772), + [aux_sym_def_type_statement_token6] = ACTIONS(9772), + [aux_sym_def_type_statement_token7] = ACTIONS(9772), + [aux_sym_def_type_statement_token8] = ACTIONS(9772), + [aux_sym_def_type_statement_token9] = ACTIONS(9772), + [aux_sym_def_type_statement_token10] = ACTIONS(9772), + [aux_sym_def_type_statement_token11] = ACTIONS(9772), + [aux_sym_def_type_statement_token12] = ACTIONS(9772), + [aux_sym_def_type_statement_token13] = ACTIONS(9772), + [aux_sym_def_type_statement_token14] = ACTIONS(9772), + [aux_sym_call_statement_token1] = ACTIONS(9772), + [sym__ambiguous_call_statement] = ACTIONS(9772), + [aux_sym_addressof_expression_token1] = ACTIONS(9772), + [aux_sym_type_of_expression_token1] = ACTIONS(9772), + [aux_sym_unary_expression_token1] = ACTIONS(9772), + [sym_string_literal] = ACTIONS(9774), + [sym_number_literal] = ACTIONS(9774), + [aux_sym_boolean_literal_token1] = ACTIONS(9772), + [aux_sym_boolean_literal_token2] = ACTIONS(9772), + [sym_nothing_literal] = ACTIONS(9772), + [sym_null_literal] = ACTIONS(9772), + [sym_empty_literal] = ACTIONS(9772), + [sym_date_literal] = ACTIONS(9774), + [anon_sym_POUND] = ACTIONS(9772), + }, + [STATE(4339)] = { + [sym_next_variable_list] = STATE(6469), + [sym__assignable_expression] = STATE(5444), + [sym__callable_expression] = STATE(5281), + [sym_call_expression] = STATE(5348), + [sym_member_expression] = STATE(5865), + [sym_qualified_member_expression] = STATE(5994), + [sym_implicit_member_expression] = STATE(5994), + [sym_identifier] = ACTIONS(9913), + [sym_newline] = ACTIONS(6842), + [anon_sym_COLON] = ACTIONS(6842), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6844), + [aux_sym_frm_property_statement_token1] = ACTIONS(9915), + [anon_sym_DOT] = ACTIONS(9917), + [anon_sym_BANG] = ACTIONS(9919), + [aux_sym__attribute_identifier_token1] = ACTIONS(6844), + [aux_sym_option_statement_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6844), + [aux_sym_preprocessor_const_token1] = ACTIONS(6844), + [sym_static_modifier] = ACTIONS(6844), + [sym__dim_keyword] = ACTIONS(6844), + [sym__redim_keyword] = ACTIONS(6844), + [aux_sym_get_accessor_token1] = ACTIONS(6844), + [aux_sym_set_accessor_token1] = ACTIONS(6844), + [aux_sym_const_declaration_token1] = ACTIONS(6844), + [anon_sym_LPAREN] = ACTIONS(6842), + [aux_sym_as_type_clause_token2] = ACTIONS(6844), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9921), + [aux_sym_visibility_token1] = ACTIONS(6844), + [aux_sym_visibility_token2] = ACTIONS(6844), + [aux_sym_elseif_fragment_token1] = ACTIONS(6844), + [aux_sym_else_fragment_token1] = ACTIONS(6844), + [aux_sym_select_statement_token1] = ACTIONS(6844), + [aux_sym_select_statement_token2] = ACTIONS(6844), + [aux_sym__for_header_token1] = ACTIONS(6844), + [aux_sym_do_statement_token1] = ACTIONS(6844), + [aux_sym_do_condition_token1] = ACTIONS(6844), + [aux_sym_with_statement_token1] = ACTIONS(6844), + [aux_sym_exit_statement_token1] = ACTIONS(6844), + [sym_end_statement] = ACTIONS(6842), + [aux_sym_on_goto_statement_token1] = ACTIONS(6844), + [aux_sym_on_goto_statement_token2] = ACTIONS(6844), + [aux_sym_on_error_statement_token2] = ACTIONS(6844), + [sym__ambiguous_redim_statement] = ACTIONS(6842), + [aux_sym_erase_statement_token1] = ACTIONS(6844), + [aux_sym_open_statement_token1] = ACTIONS(6844), + [aux_sym_file_mode_token2] = ACTIONS(6844), + [aux_sym_file_access_token2] = ACTIONS(6844), + [aux_sym_file_lock_token2] = ACTIONS(6844), + [aux_sym_print_statement_token1] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6842), + [aux_sym_close_statement_token1] = ACTIONS(6844), + [aux_sym_put_statement_token1] = ACTIONS(6844), + [aux_sym_unlock_statement_token1] = ACTIONS(6844), + [aux_sym_seek_statement_token1] = ACTIONS(6844), + [sym_reset_statement] = ACTIONS(6844), + [aux_sym_raise_event_statement_token1] = ACTIONS(6844), + [sym_stop_statement] = ACTIONS(6844), + [sym_beep_statement] = ACTIONS(6844), + [aux_sym_unload_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token2] = ACTIONS(6844), + [aux_sym_def_type_statement_token3] = ACTIONS(6844), + [aux_sym_def_type_statement_token4] = ACTIONS(6844), + [aux_sym_def_type_statement_token5] = ACTIONS(6844), + [aux_sym_def_type_statement_token6] = ACTIONS(6844), + [aux_sym_def_type_statement_token7] = ACTIONS(6844), + [aux_sym_def_type_statement_token8] = ACTIONS(6844), + [aux_sym_def_type_statement_token9] = ACTIONS(6844), + [aux_sym_def_type_statement_token10] = ACTIONS(6844), + [aux_sym_def_type_statement_token11] = ACTIONS(6844), + [aux_sym_def_type_statement_token12] = ACTIONS(6844), + [aux_sym_def_type_statement_token13] = ACTIONS(6844), + [aux_sym_def_type_statement_token14] = ACTIONS(6844), + [aux_sym_call_statement_token1] = ACTIONS(6844), + [sym__ambiguous_call_statement] = ACTIONS(6844), + [aux_sym_addressof_expression_token1] = ACTIONS(6844), + [aux_sym_type_of_expression_token1] = ACTIONS(6844), + [aux_sym_unary_expression_token1] = ACTIONS(6844), + [sym_string_literal] = ACTIONS(6842), + [sym_number_literal] = ACTIONS(6842), + [aux_sym_boolean_literal_token1] = ACTIONS(6844), + [aux_sym_boolean_literal_token2] = ACTIONS(6844), + [sym_nothing_literal] = ACTIONS(6844), + [sym_null_literal] = ACTIONS(6844), + [sym_empty_literal] = ACTIONS(6844), + [sym_date_literal] = ACTIONS(6842), + [anon_sym_POUND] = ACTIONS(6844), + }, + [STATE(4340)] = { + [sym_identifier] = ACTIONS(9244), + [sym_newline] = ACTIONS(9246), + [anon_sym_COLON] = ACTIONS(9246), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9244), + [aux_sym_frm_property_statement_token1] = ACTIONS(9244), + [anon_sym_DOT] = ACTIONS(9244), + [anon_sym_BANG] = ACTIONS(9246), + [aux_sym__attribute_identifier_token1] = ACTIONS(9244), + [aux_sym_option_statement_token3] = ACTIONS(9244), + [aux_sym_type_declaration_token1] = ACTIONS(9244), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9244), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9244), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9244), + [aux_sym_enum_declaration_token1] = ACTIONS(9244), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9244), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9244), + [aux_sym_declare_function_statement_token1] = ACTIONS(9244), + [aux_sym_preprocessor_const_token1] = ACTIONS(9244), + [aux_sym__property_get_header_token1] = ACTIONS(9244), + [aux_sym_event_declaration_token1] = ACTIONS(9244), + [sym_static_modifier] = ACTIONS(9244), + [sym__dim_keyword] = ACTIONS(9244), + [sym__redim_keyword] = ACTIONS(9244), + [aux_sym_get_accessor_token1] = ACTIONS(9244), + [aux_sym_set_accessor_token1] = ACTIONS(9244), + [aux_sym_const_declaration_token1] = ACTIONS(9244), + [anon_sym_LPAREN] = ACTIONS(9246), + [aux_sym_as_type_clause_token2] = ACTIONS(9244), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9244), + [aux_sym_visibility_token1] = ACTIONS(9244), + [aux_sym_visibility_token2] = ACTIONS(9244), + [aux_sym_elseif_fragment_token1] = ACTIONS(9244), + [aux_sym_else_fragment_token1] = ACTIONS(9244), + [aux_sym_select_statement_token1] = ACTIONS(9244), + [aux_sym__for_header_token1] = ACTIONS(9244), + [aux_sym_do_statement_token1] = ACTIONS(9244), + [aux_sym_do_condition_token1] = ACTIONS(9244), + [aux_sym_with_statement_token1] = ACTIONS(9244), + [aux_sym_exit_statement_token1] = ACTIONS(9244), + [sym_end_statement] = ACTIONS(9246), + [aux_sym_on_goto_statement_token1] = ACTIONS(9244), + [aux_sym_on_goto_statement_token2] = ACTIONS(9244), + [aux_sym_on_error_statement_token2] = ACTIONS(9244), + [sym__ambiguous_redim_statement] = ACTIONS(9246), + [aux_sym_erase_statement_token1] = ACTIONS(9244), + [aux_sym_open_statement_token1] = ACTIONS(9244), + [aux_sym_file_mode_token2] = ACTIONS(9244), + [aux_sym_file_access_token2] = ACTIONS(9244), + [aux_sym_file_lock_token2] = ACTIONS(9244), + [aux_sym_print_statement_token1] = ACTIONS(9244), + [anon_sym_PLUS] = ACTIONS(9246), + [anon_sym_DASH] = ACTIONS(9244), + [anon_sym_QMARK] = ACTIONS(9246), + [aux_sym_close_statement_token1] = ACTIONS(9244), + [aux_sym_put_statement_token1] = ACTIONS(9244), + [aux_sym_unlock_statement_token1] = ACTIONS(9244), + [aux_sym_seek_statement_token1] = ACTIONS(9244), + [sym_reset_statement] = ACTIONS(9244), + [aux_sym_raise_event_statement_token1] = ACTIONS(9244), + [sym_stop_statement] = ACTIONS(9244), + [sym_beep_statement] = ACTIONS(9244), + [aux_sym_unload_statement_token1] = ACTIONS(9244), + [aux_sym_def_type_statement_token1] = ACTIONS(9244), + [aux_sym_def_type_statement_token2] = ACTIONS(9244), + [aux_sym_def_type_statement_token3] = ACTIONS(9244), + [aux_sym_def_type_statement_token4] = ACTIONS(9244), + [aux_sym_def_type_statement_token5] = ACTIONS(9244), + [aux_sym_def_type_statement_token6] = ACTIONS(9244), + [aux_sym_def_type_statement_token7] = ACTIONS(9244), + [aux_sym_def_type_statement_token8] = ACTIONS(9244), + [aux_sym_def_type_statement_token9] = ACTIONS(9244), + [aux_sym_def_type_statement_token10] = ACTIONS(9244), + [aux_sym_def_type_statement_token11] = ACTIONS(9244), + [aux_sym_def_type_statement_token12] = ACTIONS(9244), + [aux_sym_def_type_statement_token13] = ACTIONS(9244), + [aux_sym_def_type_statement_token14] = ACTIONS(9244), + [aux_sym_call_statement_token1] = ACTIONS(9244), + [sym__ambiguous_call_statement] = ACTIONS(9244), + [aux_sym_addressof_expression_token1] = ACTIONS(9244), + [aux_sym_type_of_expression_token1] = ACTIONS(9244), + [aux_sym_unary_expression_token1] = ACTIONS(9244), + [sym_string_literal] = ACTIONS(9246), + [sym_number_literal] = ACTIONS(9246), + [aux_sym_boolean_literal_token1] = ACTIONS(9244), + [aux_sym_boolean_literal_token2] = ACTIONS(9244), + [sym_nothing_literal] = ACTIONS(9244), + [sym_null_literal] = ACTIONS(9244), + [sym_empty_literal] = ACTIONS(9244), + [sym_date_literal] = ACTIONS(9246), + [anon_sym_POUND] = ACTIONS(9244), + }, + [STATE(4341)] = { + [sym_next_variable_list] = STATE(6532), + [sym__assignable_expression] = STATE(5585), + [sym__callable_expression] = STATE(5394), + [sym_call_expression] = STATE(5098), + [sym_member_expression] = STATE(6089), + [sym_qualified_member_expression] = STATE(6126), + [sym_implicit_member_expression] = STATE(6126), + [sym_identifier] = ACTIONS(9923), + [sym_newline] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(6856), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6858), + [aux_sym_frm_property_statement_token1] = ACTIONS(9925), + [anon_sym_DOT] = ACTIONS(9927), + [anon_sym_BANG] = ACTIONS(9929), + [aux_sym__attribute_identifier_token1] = ACTIONS(6858), + [aux_sym_option_statement_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6858), + [aux_sym_preprocessor_const_token1] = ACTIONS(6858), + [sym_static_modifier] = ACTIONS(6858), + [sym__dim_keyword] = ACTIONS(6858), + [sym__redim_keyword] = ACTIONS(6858), + [aux_sym_get_accessor_token1] = ACTIONS(6858), + [aux_sym_set_accessor_token1] = ACTIONS(6858), + [aux_sym_const_declaration_token1] = ACTIONS(6858), + [anon_sym_LPAREN] = ACTIONS(6856), + [aux_sym_as_type_clause_token2] = ACTIONS(6858), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9931), + [aux_sym_visibility_token1] = ACTIONS(6858), + [aux_sym_visibility_token2] = ACTIONS(6858), + [aux_sym_elseif_fragment_token1] = ACTIONS(6858), + [aux_sym_else_fragment_token1] = ACTIONS(6858), + [aux_sym_select_statement_token1] = ACTIONS(6858), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6858), + [aux_sym__for_header_token1] = ACTIONS(6858), + [aux_sym_do_statement_token1] = ACTIONS(6858), + [aux_sym_do_condition_token1] = ACTIONS(6858), + [aux_sym_with_statement_token1] = ACTIONS(6858), + [aux_sym_exit_statement_token1] = ACTIONS(6858), + [sym_end_statement] = ACTIONS(6856), + [aux_sym_on_goto_statement_token1] = ACTIONS(6858), + [aux_sym_on_goto_statement_token2] = ACTIONS(6858), + [aux_sym_on_error_statement_token2] = ACTIONS(6858), + [sym__ambiguous_redim_statement] = ACTIONS(6856), + [aux_sym_erase_statement_token1] = ACTIONS(6858), + [aux_sym_open_statement_token1] = ACTIONS(6858), + [aux_sym_file_mode_token2] = ACTIONS(6858), + [aux_sym_file_access_token2] = ACTIONS(6858), + [aux_sym_file_lock_token2] = ACTIONS(6858), + [aux_sym_print_statement_token1] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6856), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_QMARK] = ACTIONS(6856), + [aux_sym_close_statement_token1] = ACTIONS(6858), + [aux_sym_put_statement_token1] = ACTIONS(6858), + [aux_sym_unlock_statement_token1] = ACTIONS(6858), + [aux_sym_seek_statement_token1] = ACTIONS(6858), + [sym_reset_statement] = ACTIONS(6858), + [aux_sym_raise_event_statement_token1] = ACTIONS(6858), + [sym_stop_statement] = ACTIONS(6858), + [sym_beep_statement] = ACTIONS(6858), + [aux_sym_unload_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token2] = ACTIONS(6858), + [aux_sym_def_type_statement_token3] = ACTIONS(6858), + [aux_sym_def_type_statement_token4] = ACTIONS(6858), + [aux_sym_def_type_statement_token5] = ACTIONS(6858), + [aux_sym_def_type_statement_token6] = ACTIONS(6858), + [aux_sym_def_type_statement_token7] = ACTIONS(6858), + [aux_sym_def_type_statement_token8] = ACTIONS(6858), + [aux_sym_def_type_statement_token9] = ACTIONS(6858), + [aux_sym_def_type_statement_token10] = ACTIONS(6858), + [aux_sym_def_type_statement_token11] = ACTIONS(6858), + [aux_sym_def_type_statement_token12] = ACTIONS(6858), + [aux_sym_def_type_statement_token13] = ACTIONS(6858), + [aux_sym_def_type_statement_token14] = ACTIONS(6858), + [aux_sym_call_statement_token1] = ACTIONS(6858), + [sym__ambiguous_call_statement] = ACTIONS(6858), + [aux_sym_addressof_expression_token1] = ACTIONS(6858), + [aux_sym_type_of_expression_token1] = ACTIONS(6858), + [aux_sym_unary_expression_token1] = ACTIONS(6858), + [sym_string_literal] = ACTIONS(6856), + [sym_number_literal] = ACTIONS(6856), + [aux_sym_boolean_literal_token1] = ACTIONS(6858), + [aux_sym_boolean_literal_token2] = ACTIONS(6858), + [sym_nothing_literal] = ACTIONS(6858), + [sym_null_literal] = ACTIONS(6858), + [sym_empty_literal] = ACTIONS(6858), + [sym_date_literal] = ACTIONS(6856), + [anon_sym_POUND] = ACTIONS(6858), + }, + [STATE(4342)] = { + [sym_identifier] = ACTIONS(8709), + [sym_newline] = ACTIONS(8711), + [anon_sym_COLON] = ACTIONS(8711), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8709), + [aux_sym_frm_property_statement_token1] = ACTIONS(8709), + [anon_sym_DOT] = ACTIONS(8709), + [anon_sym_BANG] = ACTIONS(8711), + [aux_sym__attribute_identifier_token1] = ACTIONS(8709), + [aux_sym_option_statement_token3] = ACTIONS(8709), + [aux_sym_type_declaration_token1] = ACTIONS(8709), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8709), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8709), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8709), + [aux_sym_enum_declaration_token1] = ACTIONS(8709), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8709), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8709), + [aux_sym_declare_function_statement_token1] = ACTIONS(8709), + [aux_sym_preprocessor_const_token1] = ACTIONS(8709), + [aux_sym__property_get_header_token1] = ACTIONS(8709), + [aux_sym_event_declaration_token1] = ACTIONS(8709), + [sym_static_modifier] = ACTIONS(8709), + [sym__dim_keyword] = ACTIONS(8709), + [sym__redim_keyword] = ACTIONS(8709), + [aux_sym_get_accessor_token1] = ACTIONS(8709), + [aux_sym_set_accessor_token1] = ACTIONS(8709), + [aux_sym_const_declaration_token1] = ACTIONS(8709), + [anon_sym_LPAREN] = ACTIONS(8711), + [aux_sym_as_type_clause_token2] = ACTIONS(8709), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8709), + [aux_sym_visibility_token1] = ACTIONS(8709), + [aux_sym_visibility_token2] = ACTIONS(8709), + [aux_sym_elseif_fragment_token1] = ACTIONS(8709), + [aux_sym_else_fragment_token1] = ACTIONS(8709), + [aux_sym_select_statement_token1] = ACTIONS(8709), + [aux_sym__for_header_token1] = ACTIONS(8709), + [aux_sym_do_statement_token1] = ACTIONS(8709), + [aux_sym_do_condition_token1] = ACTIONS(8709), + [aux_sym_with_statement_token1] = ACTIONS(8709), + [aux_sym_exit_statement_token1] = ACTIONS(8709), + [sym_end_statement] = ACTIONS(8711), + [aux_sym_on_goto_statement_token1] = ACTIONS(8709), + [aux_sym_on_goto_statement_token2] = ACTIONS(8709), + [aux_sym_on_error_statement_token2] = ACTIONS(8709), + [sym__ambiguous_redim_statement] = ACTIONS(8711), + [aux_sym_erase_statement_token1] = ACTIONS(8709), + [aux_sym_open_statement_token1] = ACTIONS(8709), + [aux_sym_file_mode_token2] = ACTIONS(8709), + [aux_sym_file_access_token2] = ACTIONS(8709), + [aux_sym_file_lock_token2] = ACTIONS(8709), + [aux_sym_print_statement_token1] = ACTIONS(8709), + [anon_sym_PLUS] = ACTIONS(8711), + [anon_sym_DASH] = ACTIONS(8709), + [anon_sym_QMARK] = ACTIONS(8711), + [aux_sym_close_statement_token1] = ACTIONS(8709), + [aux_sym_put_statement_token1] = ACTIONS(8709), + [aux_sym_unlock_statement_token1] = ACTIONS(8709), + [aux_sym_seek_statement_token1] = ACTIONS(8709), + [sym_reset_statement] = ACTIONS(8709), + [aux_sym_raise_event_statement_token1] = ACTIONS(8709), + [sym_stop_statement] = ACTIONS(8709), + [sym_beep_statement] = ACTIONS(8709), + [aux_sym_unload_statement_token1] = ACTIONS(8709), + [aux_sym_def_type_statement_token1] = ACTIONS(8709), + [aux_sym_def_type_statement_token2] = ACTIONS(8709), + [aux_sym_def_type_statement_token3] = ACTIONS(8709), + [aux_sym_def_type_statement_token4] = ACTIONS(8709), + [aux_sym_def_type_statement_token5] = ACTIONS(8709), + [aux_sym_def_type_statement_token6] = ACTIONS(8709), + [aux_sym_def_type_statement_token7] = ACTIONS(8709), + [aux_sym_def_type_statement_token8] = ACTIONS(8709), + [aux_sym_def_type_statement_token9] = ACTIONS(8709), + [aux_sym_def_type_statement_token10] = ACTIONS(8709), + [aux_sym_def_type_statement_token11] = ACTIONS(8709), + [aux_sym_def_type_statement_token12] = ACTIONS(8709), + [aux_sym_def_type_statement_token13] = ACTIONS(8709), + [aux_sym_def_type_statement_token14] = ACTIONS(8709), + [aux_sym_call_statement_token1] = ACTIONS(8709), + [sym__ambiguous_call_statement] = ACTIONS(8709), + [aux_sym_addressof_expression_token1] = ACTIONS(8709), + [aux_sym_type_of_expression_token1] = ACTIONS(8709), + [aux_sym_unary_expression_token1] = ACTIONS(8709), + [sym_string_literal] = ACTIONS(8711), + [sym_number_literal] = ACTIONS(8711), + [aux_sym_boolean_literal_token1] = ACTIONS(8709), + [aux_sym_boolean_literal_token2] = ACTIONS(8709), + [sym_nothing_literal] = ACTIONS(8709), + [sym_null_literal] = ACTIONS(8709), + [sym_empty_literal] = ACTIONS(8709), + [sym_date_literal] = ACTIONS(8711), + [anon_sym_POUND] = ACTIONS(8709), + }, + [STATE(4343)] = { + [sym_next_variable_list] = STATE(6472), + [sym__assignable_expression] = STATE(5444), + [sym__callable_expression] = STATE(5281), + [sym_call_expression] = STATE(5348), + [sym_member_expression] = STATE(5865), + [sym_qualified_member_expression] = STATE(5994), + [sym_implicit_member_expression] = STATE(5994), + [sym_identifier] = ACTIONS(9913), + [sym_newline] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(6856), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6858), + [aux_sym_frm_property_statement_token1] = ACTIONS(9915), + [anon_sym_DOT] = ACTIONS(9917), + [anon_sym_BANG] = ACTIONS(9919), + [aux_sym__attribute_identifier_token1] = ACTIONS(6858), + [aux_sym_option_statement_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6858), + [aux_sym_preprocessor_const_token1] = ACTIONS(6858), + [sym_static_modifier] = ACTIONS(6858), + [sym__dim_keyword] = ACTIONS(6858), + [sym__redim_keyword] = ACTIONS(6858), + [aux_sym_get_accessor_token1] = ACTIONS(6858), + [aux_sym_set_accessor_token1] = ACTIONS(6858), + [aux_sym_const_declaration_token1] = ACTIONS(6858), + [anon_sym_LPAREN] = ACTIONS(6856), + [aux_sym_as_type_clause_token2] = ACTIONS(6858), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9921), + [aux_sym_visibility_token1] = ACTIONS(6858), + [aux_sym_visibility_token2] = ACTIONS(6858), + [aux_sym_elseif_fragment_token1] = ACTIONS(6858), + [aux_sym_else_fragment_token1] = ACTIONS(6858), + [aux_sym_select_statement_token1] = ACTIONS(6858), + [aux_sym_select_statement_token2] = ACTIONS(6858), + [aux_sym__for_header_token1] = ACTIONS(6858), + [aux_sym_do_statement_token1] = ACTIONS(6858), + [aux_sym_do_condition_token1] = ACTIONS(6858), + [aux_sym_with_statement_token1] = ACTIONS(6858), + [aux_sym_exit_statement_token1] = ACTIONS(6858), + [sym_end_statement] = ACTIONS(6856), + [aux_sym_on_goto_statement_token1] = ACTIONS(6858), + [aux_sym_on_goto_statement_token2] = ACTIONS(6858), + [aux_sym_on_error_statement_token2] = ACTIONS(6858), + [sym__ambiguous_redim_statement] = ACTIONS(6856), + [aux_sym_erase_statement_token1] = ACTIONS(6858), + [aux_sym_open_statement_token1] = ACTIONS(6858), + [aux_sym_file_mode_token2] = ACTIONS(6858), + [aux_sym_file_access_token2] = ACTIONS(6858), + [aux_sym_file_lock_token2] = ACTIONS(6858), + [aux_sym_print_statement_token1] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6856), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_QMARK] = ACTIONS(6856), + [aux_sym_close_statement_token1] = ACTIONS(6858), + [aux_sym_put_statement_token1] = ACTIONS(6858), + [aux_sym_unlock_statement_token1] = ACTIONS(6858), + [aux_sym_seek_statement_token1] = ACTIONS(6858), + [sym_reset_statement] = ACTIONS(6858), + [aux_sym_raise_event_statement_token1] = ACTIONS(6858), + [sym_stop_statement] = ACTIONS(6858), + [sym_beep_statement] = ACTIONS(6858), + [aux_sym_unload_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token2] = ACTIONS(6858), + [aux_sym_def_type_statement_token3] = ACTIONS(6858), + [aux_sym_def_type_statement_token4] = ACTIONS(6858), + [aux_sym_def_type_statement_token5] = ACTIONS(6858), + [aux_sym_def_type_statement_token6] = ACTIONS(6858), + [aux_sym_def_type_statement_token7] = ACTIONS(6858), + [aux_sym_def_type_statement_token8] = ACTIONS(6858), + [aux_sym_def_type_statement_token9] = ACTIONS(6858), + [aux_sym_def_type_statement_token10] = ACTIONS(6858), + [aux_sym_def_type_statement_token11] = ACTIONS(6858), + [aux_sym_def_type_statement_token12] = ACTIONS(6858), + [aux_sym_def_type_statement_token13] = ACTIONS(6858), + [aux_sym_def_type_statement_token14] = ACTIONS(6858), + [aux_sym_call_statement_token1] = ACTIONS(6858), + [sym__ambiguous_call_statement] = ACTIONS(6858), + [aux_sym_addressof_expression_token1] = ACTIONS(6858), + [aux_sym_type_of_expression_token1] = ACTIONS(6858), + [aux_sym_unary_expression_token1] = ACTIONS(6858), + [sym_string_literal] = ACTIONS(6856), + [sym_number_literal] = ACTIONS(6856), + [aux_sym_boolean_literal_token1] = ACTIONS(6858), + [aux_sym_boolean_literal_token2] = ACTIONS(6858), + [sym_nothing_literal] = ACTIONS(6858), + [sym_null_literal] = ACTIONS(6858), + [sym_empty_literal] = ACTIONS(6858), + [sym_date_literal] = ACTIONS(6856), + [anon_sym_POUND] = ACTIONS(6858), + }, + [STATE(4344)] = { + [sym_identifier] = ACTIONS(9776), + [sym_newline] = ACTIONS(9778), + [anon_sym_COLON] = ACTIONS(9778), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9776), + [aux_sym_frm_property_statement_token1] = ACTIONS(9776), + [anon_sym_DOT] = ACTIONS(9776), + [anon_sym_BANG] = ACTIONS(9778), + [aux_sym__attribute_identifier_token1] = ACTIONS(9776), + [aux_sym_option_statement_token3] = ACTIONS(9776), + [aux_sym_type_declaration_token1] = ACTIONS(9776), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9776), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9776), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9776), + [aux_sym_enum_declaration_token1] = ACTIONS(9776), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9776), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9776), + [aux_sym_declare_function_statement_token1] = ACTIONS(9776), + [aux_sym_preprocessor_const_token1] = ACTIONS(9776), + [aux_sym__property_get_header_token1] = ACTIONS(9776), + [aux_sym_event_declaration_token1] = ACTIONS(9776), + [sym_static_modifier] = ACTIONS(9776), + [sym__dim_keyword] = ACTIONS(9776), + [sym__redim_keyword] = ACTIONS(9776), + [aux_sym_get_accessor_token1] = ACTIONS(9776), + [aux_sym_set_accessor_token1] = ACTIONS(9776), + [aux_sym_const_declaration_token1] = ACTIONS(9776), + [anon_sym_LPAREN] = ACTIONS(9778), + [aux_sym_as_type_clause_token2] = ACTIONS(9776), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9776), + [aux_sym_visibility_token1] = ACTIONS(9776), + [aux_sym_visibility_token2] = ACTIONS(9776), + [aux_sym_elseif_fragment_token1] = ACTIONS(9776), + [aux_sym_else_fragment_token1] = ACTIONS(9776), + [aux_sym_select_statement_token1] = ACTIONS(9776), + [aux_sym__for_header_token1] = ACTIONS(9776), + [aux_sym_do_statement_token1] = ACTIONS(9776), + [aux_sym_do_condition_token1] = ACTIONS(9776), + [aux_sym_with_statement_token1] = ACTIONS(9776), + [aux_sym_exit_statement_token1] = ACTIONS(9776), + [sym_end_statement] = ACTIONS(9778), + [aux_sym_on_goto_statement_token1] = ACTIONS(9776), + [aux_sym_on_goto_statement_token2] = ACTIONS(9776), + [aux_sym_on_error_statement_token2] = ACTIONS(9776), + [sym__ambiguous_redim_statement] = ACTIONS(9778), + [aux_sym_erase_statement_token1] = ACTIONS(9776), + [aux_sym_open_statement_token1] = ACTIONS(9776), + [aux_sym_file_mode_token2] = ACTIONS(9776), + [aux_sym_file_access_token2] = ACTIONS(9776), + [aux_sym_file_lock_token2] = ACTIONS(9776), + [aux_sym_print_statement_token1] = ACTIONS(9776), + [anon_sym_PLUS] = ACTIONS(9778), + [anon_sym_DASH] = ACTIONS(9776), + [anon_sym_QMARK] = ACTIONS(9778), + [aux_sym_close_statement_token1] = ACTIONS(9776), + [aux_sym_put_statement_token1] = ACTIONS(9776), + [aux_sym_unlock_statement_token1] = ACTIONS(9776), + [aux_sym_seek_statement_token1] = ACTIONS(9776), + [sym_reset_statement] = ACTIONS(9776), + [aux_sym_raise_event_statement_token1] = ACTIONS(9776), + [sym_stop_statement] = ACTIONS(9776), + [sym_beep_statement] = ACTIONS(9776), + [aux_sym_unload_statement_token1] = ACTIONS(9776), + [aux_sym_def_type_statement_token1] = ACTIONS(9776), + [aux_sym_def_type_statement_token2] = ACTIONS(9776), + [aux_sym_def_type_statement_token3] = ACTIONS(9776), + [aux_sym_def_type_statement_token4] = ACTIONS(9776), + [aux_sym_def_type_statement_token5] = ACTIONS(9776), + [aux_sym_def_type_statement_token6] = ACTIONS(9776), + [aux_sym_def_type_statement_token7] = ACTIONS(9776), + [aux_sym_def_type_statement_token8] = ACTIONS(9776), + [aux_sym_def_type_statement_token9] = ACTIONS(9776), + [aux_sym_def_type_statement_token10] = ACTIONS(9776), + [aux_sym_def_type_statement_token11] = ACTIONS(9776), + [aux_sym_def_type_statement_token12] = ACTIONS(9776), + [aux_sym_def_type_statement_token13] = ACTIONS(9776), + [aux_sym_def_type_statement_token14] = ACTIONS(9776), + [aux_sym_call_statement_token1] = ACTIONS(9776), + [sym__ambiguous_call_statement] = ACTIONS(9776), + [aux_sym_addressof_expression_token1] = ACTIONS(9776), + [aux_sym_type_of_expression_token1] = ACTIONS(9776), + [aux_sym_unary_expression_token1] = ACTIONS(9776), + [sym_string_literal] = ACTIONS(9778), + [sym_number_literal] = ACTIONS(9778), + [aux_sym_boolean_literal_token1] = ACTIONS(9776), + [aux_sym_boolean_literal_token2] = ACTIONS(9776), + [sym_nothing_literal] = ACTIONS(9776), + [sym_null_literal] = ACTIONS(9776), + [sym_empty_literal] = ACTIONS(9776), + [sym_date_literal] = ACTIONS(9778), + [anon_sym_POUND] = ACTIONS(9776), + }, + [STATE(4345)] = { + [sym_next_variable_list] = STATE(6478), + [sym__assignable_expression] = STATE(5444), + [sym__callable_expression] = STATE(5281), + [sym_call_expression] = STATE(5348), + [sym_member_expression] = STATE(5865), + [sym_qualified_member_expression] = STATE(5994), + [sym_implicit_member_expression] = STATE(5994), + [sym_identifier] = ACTIONS(9913), + [sym_newline] = ACTIONS(6867), + [anon_sym_COLON] = ACTIONS(6867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6869), + [aux_sym_frm_property_statement_token1] = ACTIONS(9915), + [anon_sym_DOT] = ACTIONS(9917), + [anon_sym_BANG] = ACTIONS(9919), + [aux_sym__attribute_identifier_token1] = ACTIONS(6869), + [aux_sym_option_statement_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6869), + [aux_sym_preprocessor_const_token1] = ACTIONS(6869), + [sym_static_modifier] = ACTIONS(6869), + [sym__dim_keyword] = ACTIONS(6869), + [sym__redim_keyword] = ACTIONS(6869), + [aux_sym_get_accessor_token1] = ACTIONS(6869), + [aux_sym_set_accessor_token1] = ACTIONS(6869), + [aux_sym_const_declaration_token1] = ACTIONS(6869), + [anon_sym_LPAREN] = ACTIONS(6867), + [aux_sym_as_type_clause_token2] = ACTIONS(6869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9921), + [aux_sym_visibility_token1] = ACTIONS(6869), + [aux_sym_visibility_token2] = ACTIONS(6869), + [aux_sym_elseif_fragment_token1] = ACTIONS(6869), + [aux_sym_else_fragment_token1] = ACTIONS(6869), + [aux_sym_select_statement_token1] = ACTIONS(6869), + [aux_sym_select_statement_token2] = ACTIONS(6869), + [aux_sym__for_header_token1] = ACTIONS(6869), + [aux_sym_do_statement_token1] = ACTIONS(6869), + [aux_sym_do_condition_token1] = ACTIONS(6869), + [aux_sym_with_statement_token1] = ACTIONS(6869), + [aux_sym_exit_statement_token1] = ACTIONS(6869), + [sym_end_statement] = ACTIONS(6867), + [aux_sym_on_goto_statement_token1] = ACTIONS(6869), + [aux_sym_on_goto_statement_token2] = ACTIONS(6869), + [aux_sym_on_error_statement_token2] = ACTIONS(6869), + [sym__ambiguous_redim_statement] = ACTIONS(6867), + [aux_sym_erase_statement_token1] = ACTIONS(6869), + [aux_sym_open_statement_token1] = ACTIONS(6869), + [aux_sym_file_mode_token2] = ACTIONS(6869), + [aux_sym_file_access_token2] = ACTIONS(6869), + [aux_sym_file_lock_token2] = ACTIONS(6869), + [aux_sym_print_statement_token1] = ACTIONS(6869), + [anon_sym_PLUS] = ACTIONS(6867), + [anon_sym_DASH] = ACTIONS(6869), + [anon_sym_QMARK] = ACTIONS(6867), + [aux_sym_close_statement_token1] = ACTIONS(6869), + [aux_sym_put_statement_token1] = ACTIONS(6869), + [aux_sym_unlock_statement_token1] = ACTIONS(6869), + [aux_sym_seek_statement_token1] = ACTIONS(6869), + [sym_reset_statement] = ACTIONS(6869), + [aux_sym_raise_event_statement_token1] = ACTIONS(6869), + [sym_stop_statement] = ACTIONS(6869), + [sym_beep_statement] = ACTIONS(6869), + [aux_sym_unload_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token2] = ACTIONS(6869), + [aux_sym_def_type_statement_token3] = ACTIONS(6869), + [aux_sym_def_type_statement_token4] = ACTIONS(6869), + [aux_sym_def_type_statement_token5] = ACTIONS(6869), + [aux_sym_def_type_statement_token6] = ACTIONS(6869), + [aux_sym_def_type_statement_token7] = ACTIONS(6869), + [aux_sym_def_type_statement_token8] = ACTIONS(6869), + [aux_sym_def_type_statement_token9] = ACTIONS(6869), + [aux_sym_def_type_statement_token10] = ACTIONS(6869), + [aux_sym_def_type_statement_token11] = ACTIONS(6869), + [aux_sym_def_type_statement_token12] = ACTIONS(6869), + [aux_sym_def_type_statement_token13] = ACTIONS(6869), + [aux_sym_def_type_statement_token14] = ACTIONS(6869), + [aux_sym_call_statement_token1] = ACTIONS(6869), + [sym__ambiguous_call_statement] = ACTIONS(6869), + [aux_sym_addressof_expression_token1] = ACTIONS(6869), + [aux_sym_type_of_expression_token1] = ACTIONS(6869), + [aux_sym_unary_expression_token1] = ACTIONS(6869), + [sym_string_literal] = ACTIONS(6867), + [sym_number_literal] = ACTIONS(6867), + [aux_sym_boolean_literal_token1] = ACTIONS(6869), + [aux_sym_boolean_literal_token2] = ACTIONS(6869), + [sym_nothing_literal] = ACTIONS(6869), + [sym_null_literal] = ACTIONS(6869), + [sym_empty_literal] = ACTIONS(6869), + [sym_date_literal] = ACTIONS(6867), + [anon_sym_POUND] = ACTIONS(6869), + }, + [STATE(4346)] = { + [sym_identifier] = ACTIONS(8702), + [sym_newline] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(8704), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8702), + [aux_sym_frm_property_statement_token1] = ACTIONS(8702), + [anon_sym_DOT] = ACTIONS(8702), + [anon_sym_BANG] = ACTIONS(8704), + [aux_sym__attribute_identifier_token1] = ACTIONS(8702), + [aux_sym_option_statement_token3] = ACTIONS(8702), + [aux_sym_type_declaration_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8702), + [aux_sym_enum_declaration_token1] = ACTIONS(8702), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8702), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8702), + [aux_sym_declare_function_statement_token1] = ACTIONS(8702), + [aux_sym_preprocessor_const_token1] = ACTIONS(8702), + [aux_sym__property_get_header_token1] = ACTIONS(8702), + [aux_sym_event_declaration_token1] = ACTIONS(8702), + [sym_static_modifier] = ACTIONS(8702), + [sym__dim_keyword] = ACTIONS(8702), + [sym__redim_keyword] = ACTIONS(8702), + [aux_sym_get_accessor_token1] = ACTIONS(8702), + [aux_sym_set_accessor_token1] = ACTIONS(8702), + [aux_sym_const_declaration_token1] = ACTIONS(8702), + [anon_sym_LPAREN] = ACTIONS(8704), + [aux_sym_as_type_clause_token2] = ACTIONS(8702), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8702), + [aux_sym_visibility_token1] = ACTIONS(8702), + [aux_sym_visibility_token2] = ACTIONS(8702), + [aux_sym_elseif_fragment_token1] = ACTIONS(8702), + [aux_sym_else_fragment_token1] = ACTIONS(8702), + [aux_sym_select_statement_token1] = ACTIONS(8702), + [aux_sym__for_header_token1] = ACTIONS(8702), + [aux_sym_do_statement_token1] = ACTIONS(8702), + [aux_sym_do_condition_token1] = ACTIONS(8702), + [aux_sym_with_statement_token1] = ACTIONS(8702), + [aux_sym_exit_statement_token1] = ACTIONS(8702), + [sym_end_statement] = ACTIONS(8704), + [aux_sym_on_goto_statement_token1] = ACTIONS(8702), + [aux_sym_on_goto_statement_token2] = ACTIONS(8702), + [aux_sym_on_error_statement_token2] = ACTIONS(8702), + [sym__ambiguous_redim_statement] = ACTIONS(8704), + [aux_sym_erase_statement_token1] = ACTIONS(8702), + [aux_sym_open_statement_token1] = ACTIONS(8702), + [aux_sym_file_mode_token2] = ACTIONS(8702), + [aux_sym_file_access_token2] = ACTIONS(8702), + [aux_sym_file_lock_token2] = ACTIONS(8702), + [aux_sym_print_statement_token1] = ACTIONS(8702), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_DASH] = ACTIONS(8702), + [anon_sym_QMARK] = ACTIONS(8704), + [aux_sym_close_statement_token1] = ACTIONS(8702), + [aux_sym_put_statement_token1] = ACTIONS(8702), + [aux_sym_unlock_statement_token1] = ACTIONS(8702), + [aux_sym_seek_statement_token1] = ACTIONS(8702), + [sym_reset_statement] = ACTIONS(8702), + [aux_sym_raise_event_statement_token1] = ACTIONS(8702), + [sym_stop_statement] = ACTIONS(8702), + [sym_beep_statement] = ACTIONS(8702), + [aux_sym_unload_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token2] = ACTIONS(8702), + [aux_sym_def_type_statement_token3] = ACTIONS(8702), + [aux_sym_def_type_statement_token4] = ACTIONS(8702), + [aux_sym_def_type_statement_token5] = ACTIONS(8702), + [aux_sym_def_type_statement_token6] = ACTIONS(8702), + [aux_sym_def_type_statement_token7] = ACTIONS(8702), + [aux_sym_def_type_statement_token8] = ACTIONS(8702), + [aux_sym_def_type_statement_token9] = ACTIONS(8702), + [aux_sym_def_type_statement_token10] = ACTIONS(8702), + [aux_sym_def_type_statement_token11] = ACTIONS(8702), + [aux_sym_def_type_statement_token12] = ACTIONS(8702), + [aux_sym_def_type_statement_token13] = ACTIONS(8702), + [aux_sym_def_type_statement_token14] = ACTIONS(8702), + [aux_sym_call_statement_token1] = ACTIONS(8702), + [sym__ambiguous_call_statement] = ACTIONS(8702), + [aux_sym_addressof_expression_token1] = ACTIONS(8702), + [aux_sym_type_of_expression_token1] = ACTIONS(8702), + [aux_sym_unary_expression_token1] = ACTIONS(8702), + [sym_string_literal] = ACTIONS(8704), + [sym_number_literal] = ACTIONS(8704), + [aux_sym_boolean_literal_token1] = ACTIONS(8702), + [aux_sym_boolean_literal_token2] = ACTIONS(8702), + [sym_nothing_literal] = ACTIONS(8702), + [sym_null_literal] = ACTIONS(8702), + [sym_empty_literal] = ACTIONS(8702), + [sym_date_literal] = ACTIONS(8704), + [anon_sym_POUND] = ACTIONS(8702), + }, + [STATE(4347)] = { + [sym_identifier] = ACTIONS(8992), + [sym_newline] = ACTIONS(8994), + [anon_sym_COLON] = ACTIONS(8994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8992), + [aux_sym_frm_property_statement_token1] = ACTIONS(8992), + [anon_sym_DOT] = ACTIONS(8992), + [anon_sym_BANG] = ACTIONS(8994), + [aux_sym__attribute_identifier_token1] = ACTIONS(8992), + [aux_sym_option_statement_token3] = ACTIONS(8992), + [aux_sym_type_declaration_token1] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8992), + [aux_sym_enum_declaration_token1] = ACTIONS(8992), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8992), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8992), + [aux_sym_declare_function_statement_token1] = ACTIONS(8992), + [aux_sym_preprocessor_const_token1] = ACTIONS(8992), + [aux_sym__property_get_header_token1] = ACTIONS(8992), + [aux_sym_event_declaration_token1] = ACTIONS(8992), + [sym_static_modifier] = ACTIONS(8992), + [sym__dim_keyword] = ACTIONS(8992), + [sym__redim_keyword] = ACTIONS(8992), + [aux_sym_get_accessor_token1] = ACTIONS(8992), + [aux_sym_set_accessor_token1] = ACTIONS(8992), + [aux_sym_const_declaration_token1] = ACTIONS(8992), + [anon_sym_LPAREN] = ACTIONS(8994), + [aux_sym_as_type_clause_token2] = ACTIONS(8992), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8992), + [aux_sym_visibility_token1] = ACTIONS(8992), + [aux_sym_visibility_token2] = ACTIONS(8992), + [aux_sym_elseif_fragment_token1] = ACTIONS(8992), + [aux_sym_else_fragment_token1] = ACTIONS(8992), + [aux_sym_select_statement_token1] = ACTIONS(8992), + [aux_sym__for_header_token1] = ACTIONS(8992), + [aux_sym_do_statement_token1] = ACTIONS(8992), + [aux_sym_do_condition_token1] = ACTIONS(8992), + [aux_sym_with_statement_token1] = ACTIONS(8992), + [aux_sym_exit_statement_token1] = ACTIONS(8992), + [sym_end_statement] = ACTIONS(8994), + [aux_sym_on_goto_statement_token1] = ACTIONS(8992), + [aux_sym_on_goto_statement_token2] = ACTIONS(8992), + [aux_sym_on_error_statement_token2] = ACTIONS(8992), + [sym__ambiguous_redim_statement] = ACTIONS(8994), + [aux_sym_erase_statement_token1] = ACTIONS(8992), + [aux_sym_open_statement_token1] = ACTIONS(8992), + [aux_sym_file_mode_token2] = ACTIONS(8992), + [aux_sym_file_access_token2] = ACTIONS(8992), + [aux_sym_file_lock_token2] = ACTIONS(8992), + [aux_sym_print_statement_token1] = ACTIONS(8992), + [anon_sym_PLUS] = ACTIONS(8994), + [anon_sym_DASH] = ACTIONS(8992), + [anon_sym_QMARK] = ACTIONS(8994), + [aux_sym_close_statement_token1] = ACTIONS(8992), + [aux_sym_put_statement_token1] = ACTIONS(8992), + [aux_sym_unlock_statement_token1] = ACTIONS(8992), + [aux_sym_seek_statement_token1] = ACTIONS(8992), + [sym_reset_statement] = ACTIONS(8992), + [aux_sym_raise_event_statement_token1] = ACTIONS(8992), + [sym_stop_statement] = ACTIONS(8992), + [sym_beep_statement] = ACTIONS(8992), + [aux_sym_unload_statement_token1] = ACTIONS(8992), + [aux_sym_def_type_statement_token1] = ACTIONS(8992), + [aux_sym_def_type_statement_token2] = ACTIONS(8992), + [aux_sym_def_type_statement_token3] = ACTIONS(8992), + [aux_sym_def_type_statement_token4] = ACTIONS(8992), + [aux_sym_def_type_statement_token5] = ACTIONS(8992), + [aux_sym_def_type_statement_token6] = ACTIONS(8992), + [aux_sym_def_type_statement_token7] = ACTIONS(8992), + [aux_sym_def_type_statement_token8] = ACTIONS(8992), + [aux_sym_def_type_statement_token9] = ACTIONS(8992), + [aux_sym_def_type_statement_token10] = ACTIONS(8992), + [aux_sym_def_type_statement_token11] = ACTIONS(8992), + [aux_sym_def_type_statement_token12] = ACTIONS(8992), + [aux_sym_def_type_statement_token13] = ACTIONS(8992), + [aux_sym_def_type_statement_token14] = ACTIONS(8992), + [aux_sym_call_statement_token1] = ACTIONS(8992), + [sym__ambiguous_call_statement] = ACTIONS(8992), + [aux_sym_addressof_expression_token1] = ACTIONS(8992), + [aux_sym_type_of_expression_token1] = ACTIONS(8992), + [aux_sym_unary_expression_token1] = ACTIONS(8992), + [sym_string_literal] = ACTIONS(8994), + [sym_number_literal] = ACTIONS(8994), + [aux_sym_boolean_literal_token1] = ACTIONS(8992), + [aux_sym_boolean_literal_token2] = ACTIONS(8992), + [sym_nothing_literal] = ACTIONS(8992), + [sym_null_literal] = ACTIONS(8992), + [sym_empty_literal] = ACTIONS(8992), + [sym_date_literal] = ACTIONS(8994), + [anon_sym_POUND] = ACTIONS(8992), + }, + [STATE(4348)] = { + [sym_identifier] = ACTIONS(8996), + [sym_newline] = ACTIONS(8998), + [anon_sym_COLON] = ACTIONS(8998), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8996), + [aux_sym_frm_property_statement_token1] = ACTIONS(8996), + [anon_sym_DOT] = ACTIONS(8996), + [anon_sym_BANG] = ACTIONS(8998), + [aux_sym__attribute_identifier_token1] = ACTIONS(8996), + [aux_sym_option_statement_token3] = ACTIONS(8996), + [aux_sym_type_declaration_token1] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8996), + [aux_sym_enum_declaration_token1] = ACTIONS(8996), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8996), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8996), + [aux_sym_declare_function_statement_token1] = ACTIONS(8996), + [aux_sym_preprocessor_const_token1] = ACTIONS(8996), + [aux_sym__property_get_header_token1] = ACTIONS(8996), + [aux_sym_event_declaration_token1] = ACTIONS(8996), + [sym_static_modifier] = ACTIONS(8996), + [sym__dim_keyword] = ACTIONS(8996), + [sym__redim_keyword] = ACTIONS(8996), + [aux_sym_get_accessor_token1] = ACTIONS(8996), + [aux_sym_set_accessor_token1] = ACTIONS(8996), + [aux_sym_const_declaration_token1] = ACTIONS(8996), + [anon_sym_LPAREN] = ACTIONS(8998), + [aux_sym_as_type_clause_token2] = ACTIONS(8996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8996), + [aux_sym_visibility_token1] = ACTIONS(8996), + [aux_sym_visibility_token2] = ACTIONS(8996), + [aux_sym_elseif_fragment_token1] = ACTIONS(8996), + [aux_sym_else_fragment_token1] = ACTIONS(8996), + [aux_sym_select_statement_token1] = ACTIONS(8996), + [aux_sym__for_header_token1] = ACTIONS(8996), + [aux_sym_do_statement_token1] = ACTIONS(8996), + [aux_sym_do_condition_token1] = ACTIONS(8996), + [aux_sym_with_statement_token1] = ACTIONS(8996), + [aux_sym_exit_statement_token1] = ACTIONS(8996), + [sym_end_statement] = ACTIONS(8998), + [aux_sym_on_goto_statement_token1] = ACTIONS(8996), + [aux_sym_on_goto_statement_token2] = ACTIONS(8996), + [aux_sym_on_error_statement_token2] = ACTIONS(8996), + [sym__ambiguous_redim_statement] = ACTIONS(8998), + [aux_sym_erase_statement_token1] = ACTIONS(8996), + [aux_sym_open_statement_token1] = ACTIONS(8996), + [aux_sym_file_mode_token2] = ACTIONS(8996), + [aux_sym_file_access_token2] = ACTIONS(8996), + [aux_sym_file_lock_token2] = ACTIONS(8996), + [aux_sym_print_statement_token1] = ACTIONS(8996), + [anon_sym_PLUS] = ACTIONS(8998), + [anon_sym_DASH] = ACTIONS(8996), + [anon_sym_QMARK] = ACTIONS(8998), + [aux_sym_close_statement_token1] = ACTIONS(8996), + [aux_sym_put_statement_token1] = ACTIONS(8996), + [aux_sym_unlock_statement_token1] = ACTIONS(8996), + [aux_sym_seek_statement_token1] = ACTIONS(8996), + [sym_reset_statement] = ACTIONS(8996), + [aux_sym_raise_event_statement_token1] = ACTIONS(8996), + [sym_stop_statement] = ACTIONS(8996), + [sym_beep_statement] = ACTIONS(8996), + [aux_sym_unload_statement_token1] = ACTIONS(8996), + [aux_sym_def_type_statement_token1] = ACTIONS(8996), + [aux_sym_def_type_statement_token2] = ACTIONS(8996), + [aux_sym_def_type_statement_token3] = ACTIONS(8996), + [aux_sym_def_type_statement_token4] = ACTIONS(8996), + [aux_sym_def_type_statement_token5] = ACTIONS(8996), + [aux_sym_def_type_statement_token6] = ACTIONS(8996), + [aux_sym_def_type_statement_token7] = ACTIONS(8996), + [aux_sym_def_type_statement_token8] = ACTIONS(8996), + [aux_sym_def_type_statement_token9] = ACTIONS(8996), + [aux_sym_def_type_statement_token10] = ACTIONS(8996), + [aux_sym_def_type_statement_token11] = ACTIONS(8996), + [aux_sym_def_type_statement_token12] = ACTIONS(8996), + [aux_sym_def_type_statement_token13] = ACTIONS(8996), + [aux_sym_def_type_statement_token14] = ACTIONS(8996), + [aux_sym_call_statement_token1] = ACTIONS(8996), + [sym__ambiguous_call_statement] = ACTIONS(8996), + [aux_sym_addressof_expression_token1] = ACTIONS(8996), + [aux_sym_type_of_expression_token1] = ACTIONS(8996), + [aux_sym_unary_expression_token1] = ACTIONS(8996), + [sym_string_literal] = ACTIONS(8998), + [sym_number_literal] = ACTIONS(8998), + [aux_sym_boolean_literal_token1] = ACTIONS(8996), + [aux_sym_boolean_literal_token2] = ACTIONS(8996), + [sym_nothing_literal] = ACTIONS(8996), + [sym_null_literal] = ACTIONS(8996), + [sym_empty_literal] = ACTIONS(8996), + [sym_date_literal] = ACTIONS(8998), + [anon_sym_POUND] = ACTIONS(8996), + }, + [STATE(4349)] = { + [sym_identifier] = ACTIONS(9000), + [sym_newline] = ACTIONS(9002), + [anon_sym_COLON] = ACTIONS(9002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9000), + [aux_sym_frm_property_statement_token1] = ACTIONS(9000), + [anon_sym_DOT] = ACTIONS(9000), + [anon_sym_BANG] = ACTIONS(9002), + [aux_sym__attribute_identifier_token1] = ACTIONS(9000), + [aux_sym_option_statement_token3] = ACTIONS(9000), + [aux_sym_type_declaration_token1] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9000), + [aux_sym_enum_declaration_token1] = ACTIONS(9000), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9000), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9000), + [aux_sym_declare_function_statement_token1] = ACTIONS(9000), + [aux_sym_preprocessor_const_token1] = ACTIONS(9000), + [aux_sym__property_get_header_token1] = ACTIONS(9000), + [aux_sym_event_declaration_token1] = ACTIONS(9000), + [sym_static_modifier] = ACTIONS(9000), + [sym__dim_keyword] = ACTIONS(9000), + [sym__redim_keyword] = ACTIONS(9000), + [aux_sym_get_accessor_token1] = ACTIONS(9000), + [aux_sym_set_accessor_token1] = ACTIONS(9000), + [aux_sym_const_declaration_token1] = ACTIONS(9000), + [anon_sym_LPAREN] = ACTIONS(9002), + [aux_sym_as_type_clause_token2] = ACTIONS(9000), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9000), + [aux_sym_visibility_token1] = ACTIONS(9000), + [aux_sym_visibility_token2] = ACTIONS(9000), + [aux_sym_elseif_fragment_token1] = ACTIONS(9000), + [aux_sym_else_fragment_token1] = ACTIONS(9000), + [aux_sym_select_statement_token1] = ACTIONS(9000), + [aux_sym__for_header_token1] = ACTIONS(9000), + [aux_sym_do_statement_token1] = ACTIONS(9000), + [aux_sym_do_condition_token1] = ACTIONS(9000), + [aux_sym_with_statement_token1] = ACTIONS(9000), + [aux_sym_exit_statement_token1] = ACTIONS(9000), + [sym_end_statement] = ACTIONS(9002), + [aux_sym_on_goto_statement_token1] = ACTIONS(9000), + [aux_sym_on_goto_statement_token2] = ACTIONS(9000), + [aux_sym_on_error_statement_token2] = ACTIONS(9000), + [sym__ambiguous_redim_statement] = ACTIONS(9002), + [aux_sym_erase_statement_token1] = ACTIONS(9000), + [aux_sym_open_statement_token1] = ACTIONS(9000), + [aux_sym_file_mode_token2] = ACTIONS(9000), + [aux_sym_file_access_token2] = ACTIONS(9000), + [aux_sym_file_lock_token2] = ACTIONS(9000), + [aux_sym_print_statement_token1] = ACTIONS(9000), + [anon_sym_PLUS] = ACTIONS(9002), + [anon_sym_DASH] = ACTIONS(9000), + [anon_sym_QMARK] = ACTIONS(9002), + [aux_sym_close_statement_token1] = ACTIONS(9000), + [aux_sym_put_statement_token1] = ACTIONS(9000), + [aux_sym_unlock_statement_token1] = ACTIONS(9000), + [aux_sym_seek_statement_token1] = ACTIONS(9000), + [sym_reset_statement] = ACTIONS(9000), + [aux_sym_raise_event_statement_token1] = ACTIONS(9000), + [sym_stop_statement] = ACTIONS(9000), + [sym_beep_statement] = ACTIONS(9000), + [aux_sym_unload_statement_token1] = ACTIONS(9000), + [aux_sym_def_type_statement_token1] = ACTIONS(9000), + [aux_sym_def_type_statement_token2] = ACTIONS(9000), + [aux_sym_def_type_statement_token3] = ACTIONS(9000), + [aux_sym_def_type_statement_token4] = ACTIONS(9000), + [aux_sym_def_type_statement_token5] = ACTIONS(9000), + [aux_sym_def_type_statement_token6] = ACTIONS(9000), + [aux_sym_def_type_statement_token7] = ACTIONS(9000), + [aux_sym_def_type_statement_token8] = ACTIONS(9000), + [aux_sym_def_type_statement_token9] = ACTIONS(9000), + [aux_sym_def_type_statement_token10] = ACTIONS(9000), + [aux_sym_def_type_statement_token11] = ACTIONS(9000), + [aux_sym_def_type_statement_token12] = ACTIONS(9000), + [aux_sym_def_type_statement_token13] = ACTIONS(9000), + [aux_sym_def_type_statement_token14] = ACTIONS(9000), + [aux_sym_call_statement_token1] = ACTIONS(9000), + [sym__ambiguous_call_statement] = ACTIONS(9000), + [aux_sym_addressof_expression_token1] = ACTIONS(9000), + [aux_sym_type_of_expression_token1] = ACTIONS(9000), + [aux_sym_unary_expression_token1] = ACTIONS(9000), + [sym_string_literal] = ACTIONS(9002), + [sym_number_literal] = ACTIONS(9002), + [aux_sym_boolean_literal_token1] = ACTIONS(9000), + [aux_sym_boolean_literal_token2] = ACTIONS(9000), + [sym_nothing_literal] = ACTIONS(9000), + [sym_null_literal] = ACTIONS(9000), + [sym_empty_literal] = ACTIONS(9000), + [sym_date_literal] = ACTIONS(9002), + [anon_sym_POUND] = ACTIONS(9000), + }, + [STATE(4350)] = { + [sym_identifier] = ACTIONS(9004), + [sym_newline] = ACTIONS(9006), + [anon_sym_COLON] = ACTIONS(9006), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9004), + [aux_sym_frm_property_statement_token1] = ACTIONS(9004), + [anon_sym_DOT] = ACTIONS(9004), + [anon_sym_BANG] = ACTIONS(9006), + [aux_sym__attribute_identifier_token1] = ACTIONS(9004), + [aux_sym_option_statement_token3] = ACTIONS(9004), + [aux_sym_type_declaration_token1] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9004), + [aux_sym_enum_declaration_token1] = ACTIONS(9004), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9004), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9004), + [aux_sym_declare_function_statement_token1] = ACTIONS(9004), + [aux_sym_preprocessor_const_token1] = ACTIONS(9004), + [aux_sym__property_get_header_token1] = ACTIONS(9004), + [aux_sym_event_declaration_token1] = ACTIONS(9004), + [sym_static_modifier] = ACTIONS(9004), + [sym__dim_keyword] = ACTIONS(9004), + [sym__redim_keyword] = ACTIONS(9004), + [aux_sym_get_accessor_token1] = ACTIONS(9004), + [aux_sym_set_accessor_token1] = ACTIONS(9004), + [aux_sym_const_declaration_token1] = ACTIONS(9004), + [anon_sym_LPAREN] = ACTIONS(9006), + [aux_sym_as_type_clause_token2] = ACTIONS(9004), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9004), + [aux_sym_visibility_token1] = ACTIONS(9004), + [aux_sym_visibility_token2] = ACTIONS(9004), + [aux_sym_elseif_fragment_token1] = ACTIONS(9004), + [aux_sym_else_fragment_token1] = ACTIONS(9004), + [aux_sym_select_statement_token1] = ACTIONS(9004), + [aux_sym__for_header_token1] = ACTIONS(9004), + [aux_sym_do_statement_token1] = ACTIONS(9004), + [aux_sym_do_condition_token1] = ACTIONS(9004), + [aux_sym_with_statement_token1] = ACTIONS(9004), + [aux_sym_exit_statement_token1] = ACTIONS(9004), + [sym_end_statement] = ACTIONS(9006), + [aux_sym_on_goto_statement_token1] = ACTIONS(9004), + [aux_sym_on_goto_statement_token2] = ACTIONS(9004), + [aux_sym_on_error_statement_token2] = ACTIONS(9004), + [sym__ambiguous_redim_statement] = ACTIONS(9006), + [aux_sym_erase_statement_token1] = ACTIONS(9004), + [aux_sym_open_statement_token1] = ACTIONS(9004), + [aux_sym_file_mode_token2] = ACTIONS(9004), + [aux_sym_file_access_token2] = ACTIONS(9004), + [aux_sym_file_lock_token2] = ACTIONS(9004), + [aux_sym_print_statement_token1] = ACTIONS(9004), + [anon_sym_PLUS] = ACTIONS(9006), + [anon_sym_DASH] = ACTIONS(9004), + [anon_sym_QMARK] = ACTIONS(9006), + [aux_sym_close_statement_token1] = ACTIONS(9004), + [aux_sym_put_statement_token1] = ACTIONS(9004), + [aux_sym_unlock_statement_token1] = ACTIONS(9004), + [aux_sym_seek_statement_token1] = ACTIONS(9004), + [sym_reset_statement] = ACTIONS(9004), + [aux_sym_raise_event_statement_token1] = ACTIONS(9004), + [sym_stop_statement] = ACTIONS(9004), + [sym_beep_statement] = ACTIONS(9004), + [aux_sym_unload_statement_token1] = ACTIONS(9004), + [aux_sym_def_type_statement_token1] = ACTIONS(9004), + [aux_sym_def_type_statement_token2] = ACTIONS(9004), + [aux_sym_def_type_statement_token3] = ACTIONS(9004), + [aux_sym_def_type_statement_token4] = ACTIONS(9004), + [aux_sym_def_type_statement_token5] = ACTIONS(9004), + [aux_sym_def_type_statement_token6] = ACTIONS(9004), + [aux_sym_def_type_statement_token7] = ACTIONS(9004), + [aux_sym_def_type_statement_token8] = ACTIONS(9004), + [aux_sym_def_type_statement_token9] = ACTIONS(9004), + [aux_sym_def_type_statement_token10] = ACTIONS(9004), + [aux_sym_def_type_statement_token11] = ACTIONS(9004), + [aux_sym_def_type_statement_token12] = ACTIONS(9004), + [aux_sym_def_type_statement_token13] = ACTIONS(9004), + [aux_sym_def_type_statement_token14] = ACTIONS(9004), + [aux_sym_call_statement_token1] = ACTIONS(9004), + [sym__ambiguous_call_statement] = ACTIONS(9004), + [aux_sym_addressof_expression_token1] = ACTIONS(9004), + [aux_sym_type_of_expression_token1] = ACTIONS(9004), + [aux_sym_unary_expression_token1] = ACTIONS(9004), + [sym_string_literal] = ACTIONS(9006), + [sym_number_literal] = ACTIONS(9006), + [aux_sym_boolean_literal_token1] = ACTIONS(9004), + [aux_sym_boolean_literal_token2] = ACTIONS(9004), + [sym_nothing_literal] = ACTIONS(9004), + [sym_null_literal] = ACTIONS(9004), + [sym_empty_literal] = ACTIONS(9004), + [sym_date_literal] = ACTIONS(9006), + [anon_sym_POUND] = ACTIONS(9004), + }, + [STATE(4351)] = { + [sym_next_variable_list] = STATE(6480), + [sym__assignable_expression] = STATE(5444), + [sym__callable_expression] = STATE(5281), + [sym_call_expression] = STATE(5348), + [sym_member_expression] = STATE(5865), + [sym_qualified_member_expression] = STATE(5994), + [sym_implicit_member_expression] = STATE(5994), + [sym_identifier] = ACTIONS(9913), + [sym_newline] = ACTIONS(6810), + [anon_sym_COLON] = ACTIONS(6810), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6812), + [aux_sym_frm_property_statement_token1] = ACTIONS(9915), + [anon_sym_DOT] = ACTIONS(9917), + [anon_sym_BANG] = ACTIONS(9919), + [aux_sym__attribute_identifier_token1] = ACTIONS(6812), + [aux_sym_option_statement_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6812), + [aux_sym_preprocessor_const_token1] = ACTIONS(6812), + [sym_static_modifier] = ACTIONS(6812), + [sym__dim_keyword] = ACTIONS(6812), + [sym__redim_keyword] = ACTIONS(6812), + [aux_sym_get_accessor_token1] = ACTIONS(6812), + [aux_sym_set_accessor_token1] = ACTIONS(6812), + [aux_sym_const_declaration_token1] = ACTIONS(6812), + [anon_sym_LPAREN] = ACTIONS(6810), + [aux_sym_as_type_clause_token2] = ACTIONS(6812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9921), + [aux_sym_visibility_token1] = ACTIONS(6812), + [aux_sym_visibility_token2] = ACTIONS(6812), + [aux_sym_elseif_fragment_token1] = ACTIONS(6812), + [aux_sym_else_fragment_token1] = ACTIONS(6812), + [aux_sym_select_statement_token1] = ACTIONS(6812), + [aux_sym_select_statement_token2] = ACTIONS(6812), + [aux_sym__for_header_token1] = ACTIONS(6812), + [aux_sym_do_statement_token1] = ACTIONS(6812), + [aux_sym_do_condition_token1] = ACTIONS(6812), + [aux_sym_with_statement_token1] = ACTIONS(6812), + [aux_sym_exit_statement_token1] = ACTIONS(6812), + [sym_end_statement] = ACTIONS(6810), + [aux_sym_on_goto_statement_token1] = ACTIONS(6812), + [aux_sym_on_goto_statement_token2] = ACTIONS(6812), + [aux_sym_on_error_statement_token2] = ACTIONS(6812), + [sym__ambiguous_redim_statement] = ACTIONS(6810), + [aux_sym_erase_statement_token1] = ACTIONS(6812), + [aux_sym_open_statement_token1] = ACTIONS(6812), + [aux_sym_file_mode_token2] = ACTIONS(6812), + [aux_sym_file_access_token2] = ACTIONS(6812), + [aux_sym_file_lock_token2] = ACTIONS(6812), + [aux_sym_print_statement_token1] = ACTIONS(6812), + [anon_sym_PLUS] = ACTIONS(6810), + [anon_sym_DASH] = ACTIONS(6812), + [anon_sym_QMARK] = ACTIONS(6810), + [aux_sym_close_statement_token1] = ACTIONS(6812), + [aux_sym_put_statement_token1] = ACTIONS(6812), + [aux_sym_unlock_statement_token1] = ACTIONS(6812), + [aux_sym_seek_statement_token1] = ACTIONS(6812), + [sym_reset_statement] = ACTIONS(6812), + [aux_sym_raise_event_statement_token1] = ACTIONS(6812), + [sym_stop_statement] = ACTIONS(6812), + [sym_beep_statement] = ACTIONS(6812), + [aux_sym_unload_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token2] = ACTIONS(6812), + [aux_sym_def_type_statement_token3] = ACTIONS(6812), + [aux_sym_def_type_statement_token4] = ACTIONS(6812), + [aux_sym_def_type_statement_token5] = ACTIONS(6812), + [aux_sym_def_type_statement_token6] = ACTIONS(6812), + [aux_sym_def_type_statement_token7] = ACTIONS(6812), + [aux_sym_def_type_statement_token8] = ACTIONS(6812), + [aux_sym_def_type_statement_token9] = ACTIONS(6812), + [aux_sym_def_type_statement_token10] = ACTIONS(6812), + [aux_sym_def_type_statement_token11] = ACTIONS(6812), + [aux_sym_def_type_statement_token12] = ACTIONS(6812), + [aux_sym_def_type_statement_token13] = ACTIONS(6812), + [aux_sym_def_type_statement_token14] = ACTIONS(6812), + [aux_sym_call_statement_token1] = ACTIONS(6812), + [sym__ambiguous_call_statement] = ACTIONS(6812), + [aux_sym_addressof_expression_token1] = ACTIONS(6812), + [aux_sym_type_of_expression_token1] = ACTIONS(6812), + [aux_sym_unary_expression_token1] = ACTIONS(6812), + [sym_string_literal] = ACTIONS(6810), + [sym_number_literal] = ACTIONS(6810), + [aux_sym_boolean_literal_token1] = ACTIONS(6812), + [aux_sym_boolean_literal_token2] = ACTIONS(6812), + [sym_nothing_literal] = ACTIONS(6812), + [sym_null_literal] = ACTIONS(6812), + [sym_empty_literal] = ACTIONS(6812), + [sym_date_literal] = ACTIONS(6810), + [anon_sym_POUND] = ACTIONS(6812), + }, + [STATE(4352)] = { + [sym_next_variable_list] = STATE(6481), + [sym__assignable_expression] = STATE(5444), + [sym__callable_expression] = STATE(5281), + [sym_call_expression] = STATE(5348), + [sym_member_expression] = STATE(5865), + [sym_qualified_member_expression] = STATE(5994), + [sym_implicit_member_expression] = STATE(5994), + [sym_identifier] = ACTIONS(9913), + [sym_newline] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6828), + [aux_sym_frm_property_statement_token1] = ACTIONS(9915), + [anon_sym_DOT] = ACTIONS(9917), + [anon_sym_BANG] = ACTIONS(9919), + [aux_sym__attribute_identifier_token1] = ACTIONS(6828), + [aux_sym_option_statement_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6828), + [aux_sym_preprocessor_const_token1] = ACTIONS(6828), + [sym_static_modifier] = ACTIONS(6828), + [sym__dim_keyword] = ACTIONS(6828), + [sym__redim_keyword] = ACTIONS(6828), + [aux_sym_get_accessor_token1] = ACTIONS(6828), + [aux_sym_set_accessor_token1] = ACTIONS(6828), + [aux_sym_const_declaration_token1] = ACTIONS(6828), + [anon_sym_LPAREN] = ACTIONS(6826), + [aux_sym_as_type_clause_token2] = ACTIONS(6828), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9921), + [aux_sym_visibility_token1] = ACTIONS(6828), + [aux_sym_visibility_token2] = ACTIONS(6828), + [aux_sym_elseif_fragment_token1] = ACTIONS(6828), + [aux_sym_else_fragment_token1] = ACTIONS(6828), + [aux_sym_select_statement_token1] = ACTIONS(6828), + [aux_sym_select_statement_token2] = ACTIONS(6828), + [aux_sym__for_header_token1] = ACTIONS(6828), + [aux_sym_do_statement_token1] = ACTIONS(6828), + [aux_sym_do_condition_token1] = ACTIONS(6828), + [aux_sym_with_statement_token1] = ACTIONS(6828), + [aux_sym_exit_statement_token1] = ACTIONS(6828), + [sym_end_statement] = ACTIONS(6826), + [aux_sym_on_goto_statement_token1] = ACTIONS(6828), + [aux_sym_on_goto_statement_token2] = ACTIONS(6828), + [aux_sym_on_error_statement_token2] = ACTIONS(6828), + [sym__ambiguous_redim_statement] = ACTIONS(6826), + [aux_sym_erase_statement_token1] = ACTIONS(6828), + [aux_sym_open_statement_token1] = ACTIONS(6828), + [aux_sym_file_mode_token2] = ACTIONS(6828), + [aux_sym_file_access_token2] = ACTIONS(6828), + [aux_sym_file_lock_token2] = ACTIONS(6828), + [aux_sym_print_statement_token1] = ACTIONS(6828), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_DASH] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6826), + [aux_sym_close_statement_token1] = ACTIONS(6828), + [aux_sym_put_statement_token1] = ACTIONS(6828), + [aux_sym_unlock_statement_token1] = ACTIONS(6828), + [aux_sym_seek_statement_token1] = ACTIONS(6828), + [sym_reset_statement] = ACTIONS(6828), + [aux_sym_raise_event_statement_token1] = ACTIONS(6828), + [sym_stop_statement] = ACTIONS(6828), + [sym_beep_statement] = ACTIONS(6828), + [aux_sym_unload_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token2] = ACTIONS(6828), + [aux_sym_def_type_statement_token3] = ACTIONS(6828), + [aux_sym_def_type_statement_token4] = ACTIONS(6828), + [aux_sym_def_type_statement_token5] = ACTIONS(6828), + [aux_sym_def_type_statement_token6] = ACTIONS(6828), + [aux_sym_def_type_statement_token7] = ACTIONS(6828), + [aux_sym_def_type_statement_token8] = ACTIONS(6828), + [aux_sym_def_type_statement_token9] = ACTIONS(6828), + [aux_sym_def_type_statement_token10] = ACTIONS(6828), + [aux_sym_def_type_statement_token11] = ACTIONS(6828), + [aux_sym_def_type_statement_token12] = ACTIONS(6828), + [aux_sym_def_type_statement_token13] = ACTIONS(6828), + [aux_sym_def_type_statement_token14] = ACTIONS(6828), + [aux_sym_call_statement_token1] = ACTIONS(6828), + [sym__ambiguous_call_statement] = ACTIONS(6828), + [aux_sym_addressof_expression_token1] = ACTIONS(6828), + [aux_sym_type_of_expression_token1] = ACTIONS(6828), + [aux_sym_unary_expression_token1] = ACTIONS(6828), + [sym_string_literal] = ACTIONS(6826), + [sym_number_literal] = ACTIONS(6826), + [aux_sym_boolean_literal_token1] = ACTIONS(6828), + [aux_sym_boolean_literal_token2] = ACTIONS(6828), + [sym_nothing_literal] = ACTIONS(6828), + [sym_null_literal] = ACTIONS(6828), + [sym_empty_literal] = ACTIONS(6828), + [sym_date_literal] = ACTIONS(6826), + [anon_sym_POUND] = ACTIONS(6828), + }, + [STATE(4353)] = { + [sym_next_variable_list] = STATE(6484), + [sym__assignable_expression] = STATE(5444), + [sym__callable_expression] = STATE(5281), + [sym_call_expression] = STATE(5348), + [sym_member_expression] = STATE(5865), + [sym_qualified_member_expression] = STATE(5994), + [sym_implicit_member_expression] = STATE(5994), + [sym_identifier] = ACTIONS(9913), + [sym_newline] = ACTIONS(6863), + [anon_sym_COLON] = ACTIONS(6863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6865), + [aux_sym_frm_property_statement_token1] = ACTIONS(9915), + [anon_sym_DOT] = ACTIONS(9917), + [anon_sym_BANG] = ACTIONS(9919), + [aux_sym__attribute_identifier_token1] = ACTIONS(6865), + [aux_sym_option_statement_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6865), + [aux_sym_preprocessor_const_token1] = ACTIONS(6865), + [sym_static_modifier] = ACTIONS(6865), + [sym__dim_keyword] = ACTIONS(6865), + [sym__redim_keyword] = ACTIONS(6865), + [aux_sym_get_accessor_token1] = ACTIONS(6865), + [aux_sym_set_accessor_token1] = ACTIONS(6865), + [aux_sym_const_declaration_token1] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6863), + [aux_sym_as_type_clause_token2] = ACTIONS(6865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9921), + [aux_sym_visibility_token1] = ACTIONS(6865), + [aux_sym_visibility_token2] = ACTIONS(6865), + [aux_sym_elseif_fragment_token1] = ACTIONS(6865), + [aux_sym_else_fragment_token1] = ACTIONS(6865), + [aux_sym_select_statement_token1] = ACTIONS(6865), + [aux_sym_select_statement_token2] = ACTIONS(6865), + [aux_sym__for_header_token1] = ACTIONS(6865), + [aux_sym_do_statement_token1] = ACTIONS(6865), + [aux_sym_do_condition_token1] = ACTIONS(6865), + [aux_sym_with_statement_token1] = ACTIONS(6865), + [aux_sym_exit_statement_token1] = ACTIONS(6865), + [sym_end_statement] = ACTIONS(6863), + [aux_sym_on_goto_statement_token1] = ACTIONS(6865), + [aux_sym_on_goto_statement_token2] = ACTIONS(6865), + [aux_sym_on_error_statement_token2] = ACTIONS(6865), + [sym__ambiguous_redim_statement] = ACTIONS(6863), + [aux_sym_erase_statement_token1] = ACTIONS(6865), + [aux_sym_open_statement_token1] = ACTIONS(6865), + [aux_sym_file_mode_token2] = ACTIONS(6865), + [aux_sym_file_access_token2] = ACTIONS(6865), + [aux_sym_file_lock_token2] = ACTIONS(6865), + [aux_sym_print_statement_token1] = ACTIONS(6865), + [anon_sym_PLUS] = ACTIONS(6863), + [anon_sym_DASH] = ACTIONS(6865), + [anon_sym_QMARK] = ACTIONS(6863), + [aux_sym_close_statement_token1] = ACTIONS(6865), + [aux_sym_put_statement_token1] = ACTIONS(6865), + [aux_sym_unlock_statement_token1] = ACTIONS(6865), + [aux_sym_seek_statement_token1] = ACTIONS(6865), + [sym_reset_statement] = ACTIONS(6865), + [aux_sym_raise_event_statement_token1] = ACTIONS(6865), + [sym_stop_statement] = ACTIONS(6865), + [sym_beep_statement] = ACTIONS(6865), + [aux_sym_unload_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token2] = ACTIONS(6865), + [aux_sym_def_type_statement_token3] = ACTIONS(6865), + [aux_sym_def_type_statement_token4] = ACTIONS(6865), + [aux_sym_def_type_statement_token5] = ACTIONS(6865), + [aux_sym_def_type_statement_token6] = ACTIONS(6865), + [aux_sym_def_type_statement_token7] = ACTIONS(6865), + [aux_sym_def_type_statement_token8] = ACTIONS(6865), + [aux_sym_def_type_statement_token9] = ACTIONS(6865), + [aux_sym_def_type_statement_token10] = ACTIONS(6865), + [aux_sym_def_type_statement_token11] = ACTIONS(6865), + [aux_sym_def_type_statement_token12] = ACTIONS(6865), + [aux_sym_def_type_statement_token13] = ACTIONS(6865), + [aux_sym_def_type_statement_token14] = ACTIONS(6865), + [aux_sym_call_statement_token1] = ACTIONS(6865), + [sym__ambiguous_call_statement] = ACTIONS(6865), + [aux_sym_addressof_expression_token1] = ACTIONS(6865), + [aux_sym_type_of_expression_token1] = ACTIONS(6865), + [aux_sym_unary_expression_token1] = ACTIONS(6865), + [sym_string_literal] = ACTIONS(6863), + [sym_number_literal] = ACTIONS(6863), + [aux_sym_boolean_literal_token1] = ACTIONS(6865), + [aux_sym_boolean_literal_token2] = ACTIONS(6865), + [sym_nothing_literal] = ACTIONS(6865), + [sym_null_literal] = ACTIONS(6865), + [sym_empty_literal] = ACTIONS(6865), + [sym_date_literal] = ACTIONS(6863), + [anon_sym_POUND] = ACTIONS(6865), + }, + [STATE(4354)] = { + [sym_identifier] = ACTIONS(9264), + [sym_newline] = ACTIONS(9266), + [anon_sym_COLON] = ACTIONS(9266), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9264), + [aux_sym_frm_property_statement_token1] = ACTIONS(9264), + [anon_sym_DOT] = ACTIONS(9264), + [anon_sym_BANG] = ACTIONS(9266), + [aux_sym__attribute_identifier_token1] = ACTIONS(9264), + [aux_sym_option_statement_token3] = ACTIONS(9264), + [aux_sym_type_declaration_token1] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9264), + [aux_sym_enum_declaration_token1] = ACTIONS(9264), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9264), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9264), + [aux_sym_declare_function_statement_token1] = ACTIONS(9264), + [aux_sym_preprocessor_const_token1] = ACTIONS(9264), + [aux_sym__property_get_header_token1] = ACTIONS(9264), + [aux_sym_event_declaration_token1] = ACTIONS(9264), + [sym_static_modifier] = ACTIONS(9264), + [sym__dim_keyword] = ACTIONS(9264), + [sym__redim_keyword] = ACTIONS(9264), + [aux_sym_get_accessor_token1] = ACTIONS(9264), + [aux_sym_set_accessor_token1] = ACTIONS(9264), + [aux_sym_const_declaration_token1] = ACTIONS(9264), + [anon_sym_LPAREN] = ACTIONS(9266), + [aux_sym_as_type_clause_token2] = ACTIONS(9264), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9264), + [aux_sym_visibility_token1] = ACTIONS(9264), + [aux_sym_visibility_token2] = ACTIONS(9264), + [aux_sym_elseif_fragment_token1] = ACTIONS(9264), + [aux_sym_else_fragment_token1] = ACTIONS(9264), + [aux_sym_select_statement_token1] = ACTIONS(9264), + [aux_sym__for_header_token1] = ACTIONS(9264), + [aux_sym_do_statement_token1] = ACTIONS(9264), + [aux_sym_do_condition_token1] = ACTIONS(9264), + [aux_sym_with_statement_token1] = ACTIONS(9264), + [aux_sym_exit_statement_token1] = ACTIONS(9264), + [sym_end_statement] = ACTIONS(9266), + [aux_sym_on_goto_statement_token1] = ACTIONS(9264), + [aux_sym_on_goto_statement_token2] = ACTIONS(9264), + [aux_sym_on_error_statement_token2] = ACTIONS(9264), + [sym__ambiguous_redim_statement] = ACTIONS(9266), + [aux_sym_erase_statement_token1] = ACTIONS(9264), + [aux_sym_open_statement_token1] = ACTIONS(9264), + [aux_sym_file_mode_token2] = ACTIONS(9264), + [aux_sym_file_access_token2] = ACTIONS(9264), + [aux_sym_file_lock_token2] = ACTIONS(9264), + [aux_sym_print_statement_token1] = ACTIONS(9264), + [anon_sym_PLUS] = ACTIONS(9266), + [anon_sym_DASH] = ACTIONS(9264), + [anon_sym_QMARK] = ACTIONS(9266), + [aux_sym_close_statement_token1] = ACTIONS(9264), + [aux_sym_put_statement_token1] = ACTIONS(9264), + [aux_sym_unlock_statement_token1] = ACTIONS(9264), + [aux_sym_seek_statement_token1] = ACTIONS(9264), + [sym_reset_statement] = ACTIONS(9264), + [aux_sym_raise_event_statement_token1] = ACTIONS(9264), + [sym_stop_statement] = ACTIONS(9264), + [sym_beep_statement] = ACTIONS(9264), + [aux_sym_unload_statement_token1] = ACTIONS(9264), + [aux_sym_def_type_statement_token1] = ACTIONS(9264), + [aux_sym_def_type_statement_token2] = ACTIONS(9264), + [aux_sym_def_type_statement_token3] = ACTIONS(9264), + [aux_sym_def_type_statement_token4] = ACTIONS(9264), + [aux_sym_def_type_statement_token5] = ACTIONS(9264), + [aux_sym_def_type_statement_token6] = ACTIONS(9264), + [aux_sym_def_type_statement_token7] = ACTIONS(9264), + [aux_sym_def_type_statement_token8] = ACTIONS(9264), + [aux_sym_def_type_statement_token9] = ACTIONS(9264), + [aux_sym_def_type_statement_token10] = ACTIONS(9264), + [aux_sym_def_type_statement_token11] = ACTIONS(9264), + [aux_sym_def_type_statement_token12] = ACTIONS(9264), + [aux_sym_def_type_statement_token13] = ACTIONS(9264), + [aux_sym_def_type_statement_token14] = ACTIONS(9264), + [aux_sym_call_statement_token1] = ACTIONS(9264), + [sym__ambiguous_call_statement] = ACTIONS(9264), + [aux_sym_addressof_expression_token1] = ACTIONS(9264), + [aux_sym_type_of_expression_token1] = ACTIONS(9264), + [aux_sym_unary_expression_token1] = ACTIONS(9264), + [sym_string_literal] = ACTIONS(9266), + [sym_number_literal] = ACTIONS(9266), + [aux_sym_boolean_literal_token1] = ACTIONS(9264), + [aux_sym_boolean_literal_token2] = ACTIONS(9264), + [sym_nothing_literal] = ACTIONS(9264), + [sym_null_literal] = ACTIONS(9264), + [sym_empty_literal] = ACTIONS(9264), + [sym_date_literal] = ACTIONS(9266), + [anon_sym_POUND] = ACTIONS(9264), + }, + [STATE(4355)] = { + [sym_next_variable_list] = STATE(6485), + [sym__assignable_expression] = STATE(5444), + [sym__callable_expression] = STATE(5281), + [sym_call_expression] = STATE(5348), + [sym_member_expression] = STATE(5865), + [sym_qualified_member_expression] = STATE(5994), + [sym_implicit_member_expression] = STATE(5994), + [sym_identifier] = ACTIONS(9913), + [sym_newline] = ACTIONS(6848), + [anon_sym_COLON] = ACTIONS(6848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6850), + [aux_sym_frm_property_statement_token1] = ACTIONS(9915), + [anon_sym_DOT] = ACTIONS(9917), + [anon_sym_BANG] = ACTIONS(9919), + [aux_sym__attribute_identifier_token1] = ACTIONS(6850), + [aux_sym_option_statement_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6850), + [aux_sym_preprocessor_const_token1] = ACTIONS(6850), + [sym_static_modifier] = ACTIONS(6850), + [sym__dim_keyword] = ACTIONS(6850), + [sym__redim_keyword] = ACTIONS(6850), + [aux_sym_get_accessor_token1] = ACTIONS(6850), + [aux_sym_set_accessor_token1] = ACTIONS(6850), + [aux_sym_const_declaration_token1] = ACTIONS(6850), + [anon_sym_LPAREN] = ACTIONS(6848), + [aux_sym_as_type_clause_token2] = ACTIONS(6850), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9921), + [aux_sym_visibility_token1] = ACTIONS(6850), + [aux_sym_visibility_token2] = ACTIONS(6850), + [aux_sym_elseif_fragment_token1] = ACTIONS(6850), + [aux_sym_else_fragment_token1] = ACTIONS(6850), + [aux_sym_select_statement_token1] = ACTIONS(6850), + [aux_sym_select_statement_token2] = ACTIONS(6850), + [aux_sym__for_header_token1] = ACTIONS(6850), + [aux_sym_do_statement_token1] = ACTIONS(6850), + [aux_sym_do_condition_token1] = ACTIONS(6850), + [aux_sym_with_statement_token1] = ACTIONS(6850), + [aux_sym_exit_statement_token1] = ACTIONS(6850), + [sym_end_statement] = ACTIONS(6848), + [aux_sym_on_goto_statement_token1] = ACTIONS(6850), + [aux_sym_on_goto_statement_token2] = ACTIONS(6850), + [aux_sym_on_error_statement_token2] = ACTIONS(6850), + [sym__ambiguous_redim_statement] = ACTIONS(6848), + [aux_sym_erase_statement_token1] = ACTIONS(6850), + [aux_sym_open_statement_token1] = ACTIONS(6850), + [aux_sym_file_mode_token2] = ACTIONS(6850), + [aux_sym_file_access_token2] = ACTIONS(6850), + [aux_sym_file_lock_token2] = ACTIONS(6850), + [aux_sym_print_statement_token1] = ACTIONS(6850), + [anon_sym_PLUS] = ACTIONS(6848), + [anon_sym_DASH] = ACTIONS(6850), + [anon_sym_QMARK] = ACTIONS(6848), + [aux_sym_close_statement_token1] = ACTIONS(6850), + [aux_sym_put_statement_token1] = ACTIONS(6850), + [aux_sym_unlock_statement_token1] = ACTIONS(6850), + [aux_sym_seek_statement_token1] = ACTIONS(6850), + [sym_reset_statement] = ACTIONS(6850), + [aux_sym_raise_event_statement_token1] = ACTIONS(6850), + [sym_stop_statement] = ACTIONS(6850), + [sym_beep_statement] = ACTIONS(6850), + [aux_sym_unload_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token2] = ACTIONS(6850), + [aux_sym_def_type_statement_token3] = ACTIONS(6850), + [aux_sym_def_type_statement_token4] = ACTIONS(6850), + [aux_sym_def_type_statement_token5] = ACTIONS(6850), + [aux_sym_def_type_statement_token6] = ACTIONS(6850), + [aux_sym_def_type_statement_token7] = ACTIONS(6850), + [aux_sym_def_type_statement_token8] = ACTIONS(6850), + [aux_sym_def_type_statement_token9] = ACTIONS(6850), + [aux_sym_def_type_statement_token10] = ACTIONS(6850), + [aux_sym_def_type_statement_token11] = ACTIONS(6850), + [aux_sym_def_type_statement_token12] = ACTIONS(6850), + [aux_sym_def_type_statement_token13] = ACTIONS(6850), + [aux_sym_def_type_statement_token14] = ACTIONS(6850), + [aux_sym_call_statement_token1] = ACTIONS(6850), + [sym__ambiguous_call_statement] = ACTIONS(6850), + [aux_sym_addressof_expression_token1] = ACTIONS(6850), + [aux_sym_type_of_expression_token1] = ACTIONS(6850), + [aux_sym_unary_expression_token1] = ACTIONS(6850), + [sym_string_literal] = ACTIONS(6848), + [sym_number_literal] = ACTIONS(6848), + [aux_sym_boolean_literal_token1] = ACTIONS(6850), + [aux_sym_boolean_literal_token2] = ACTIONS(6850), + [sym_nothing_literal] = ACTIONS(6850), + [sym_null_literal] = ACTIONS(6850), + [sym_empty_literal] = ACTIONS(6850), + [sym_date_literal] = ACTIONS(6848), + [anon_sym_POUND] = ACTIONS(6850), + }, + [STATE(4356)] = { + [sym_identifier] = ACTIONS(9268), + [sym_newline] = ACTIONS(9270), + [anon_sym_COLON] = ACTIONS(9270), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9268), + [aux_sym_frm_property_statement_token1] = ACTIONS(9268), + [anon_sym_DOT] = ACTIONS(9268), + [anon_sym_BANG] = ACTIONS(9270), + [aux_sym__attribute_identifier_token1] = ACTIONS(9268), + [aux_sym_option_statement_token3] = ACTIONS(9268), + [aux_sym_type_declaration_token1] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9268), + [aux_sym_enum_declaration_token1] = ACTIONS(9268), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9268), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9268), + [aux_sym_declare_function_statement_token1] = ACTIONS(9268), + [aux_sym_preprocessor_const_token1] = ACTIONS(9268), + [aux_sym__property_get_header_token1] = ACTIONS(9268), + [aux_sym_event_declaration_token1] = ACTIONS(9268), + [sym_static_modifier] = ACTIONS(9268), + [sym__dim_keyword] = ACTIONS(9268), + [sym__redim_keyword] = ACTIONS(9268), + [aux_sym_get_accessor_token1] = ACTIONS(9268), + [aux_sym_set_accessor_token1] = ACTIONS(9268), + [aux_sym_const_declaration_token1] = ACTIONS(9268), + [anon_sym_LPAREN] = ACTIONS(9270), + [aux_sym_as_type_clause_token2] = ACTIONS(9268), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9268), + [aux_sym_visibility_token1] = ACTIONS(9268), + [aux_sym_visibility_token2] = ACTIONS(9268), + [aux_sym_elseif_fragment_token1] = ACTIONS(9268), + [aux_sym_else_fragment_token1] = ACTIONS(9268), + [aux_sym_select_statement_token1] = ACTIONS(9268), + [aux_sym__for_header_token1] = ACTIONS(9268), + [aux_sym_do_statement_token1] = ACTIONS(9268), + [aux_sym_do_condition_token1] = ACTIONS(9268), + [aux_sym_with_statement_token1] = ACTIONS(9268), + [aux_sym_exit_statement_token1] = ACTIONS(9268), + [sym_end_statement] = ACTIONS(9270), + [aux_sym_on_goto_statement_token1] = ACTIONS(9268), + [aux_sym_on_goto_statement_token2] = ACTIONS(9268), + [aux_sym_on_error_statement_token2] = ACTIONS(9268), + [sym__ambiguous_redim_statement] = ACTIONS(9270), + [aux_sym_erase_statement_token1] = ACTIONS(9268), + [aux_sym_open_statement_token1] = ACTIONS(9268), + [aux_sym_file_mode_token2] = ACTIONS(9268), + [aux_sym_file_access_token2] = ACTIONS(9268), + [aux_sym_file_lock_token2] = ACTIONS(9268), + [aux_sym_print_statement_token1] = ACTIONS(9268), + [anon_sym_PLUS] = ACTIONS(9270), + [anon_sym_DASH] = ACTIONS(9268), + [anon_sym_QMARK] = ACTIONS(9270), + [aux_sym_close_statement_token1] = ACTIONS(9268), + [aux_sym_put_statement_token1] = ACTIONS(9268), + [aux_sym_unlock_statement_token1] = ACTIONS(9268), + [aux_sym_seek_statement_token1] = ACTIONS(9268), + [sym_reset_statement] = ACTIONS(9268), + [aux_sym_raise_event_statement_token1] = ACTIONS(9268), + [sym_stop_statement] = ACTIONS(9268), + [sym_beep_statement] = ACTIONS(9268), + [aux_sym_unload_statement_token1] = ACTIONS(9268), + [aux_sym_def_type_statement_token1] = ACTIONS(9268), + [aux_sym_def_type_statement_token2] = ACTIONS(9268), + [aux_sym_def_type_statement_token3] = ACTIONS(9268), + [aux_sym_def_type_statement_token4] = ACTIONS(9268), + [aux_sym_def_type_statement_token5] = ACTIONS(9268), + [aux_sym_def_type_statement_token6] = ACTIONS(9268), + [aux_sym_def_type_statement_token7] = ACTIONS(9268), + [aux_sym_def_type_statement_token8] = ACTIONS(9268), + [aux_sym_def_type_statement_token9] = ACTIONS(9268), + [aux_sym_def_type_statement_token10] = ACTIONS(9268), + [aux_sym_def_type_statement_token11] = ACTIONS(9268), + [aux_sym_def_type_statement_token12] = ACTIONS(9268), + [aux_sym_def_type_statement_token13] = ACTIONS(9268), + [aux_sym_def_type_statement_token14] = ACTIONS(9268), + [aux_sym_call_statement_token1] = ACTIONS(9268), + [sym__ambiguous_call_statement] = ACTIONS(9268), + [aux_sym_addressof_expression_token1] = ACTIONS(9268), + [aux_sym_type_of_expression_token1] = ACTIONS(9268), + [aux_sym_unary_expression_token1] = ACTIONS(9268), + [sym_string_literal] = ACTIONS(9270), + [sym_number_literal] = ACTIONS(9270), + [aux_sym_boolean_literal_token1] = ACTIONS(9268), + [aux_sym_boolean_literal_token2] = ACTIONS(9268), + [sym_nothing_literal] = ACTIONS(9268), + [sym_null_literal] = ACTIONS(9268), + [sym_empty_literal] = ACTIONS(9268), + [sym_date_literal] = ACTIONS(9270), + [anon_sym_POUND] = ACTIONS(9268), + }, + [STATE(4357)] = { + [sym_identifier] = ACTIONS(9272), + [sym_newline] = ACTIONS(9274), + [anon_sym_COLON] = ACTIONS(9274), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9272), + [aux_sym_frm_property_statement_token1] = ACTIONS(9272), + [anon_sym_DOT] = ACTIONS(9272), + [anon_sym_BANG] = ACTIONS(9274), + [aux_sym__attribute_identifier_token1] = ACTIONS(9272), + [aux_sym_option_statement_token3] = ACTIONS(9272), + [aux_sym_type_declaration_token1] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9272), + [aux_sym_enum_declaration_token1] = ACTIONS(9272), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9272), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9272), + [aux_sym_declare_function_statement_token1] = ACTIONS(9272), + [aux_sym_preprocessor_const_token1] = ACTIONS(9272), + [aux_sym__property_get_header_token1] = ACTIONS(9272), + [aux_sym_event_declaration_token1] = ACTIONS(9272), + [sym_static_modifier] = ACTIONS(9272), + [sym__dim_keyword] = ACTIONS(9272), + [sym__redim_keyword] = ACTIONS(9272), + [aux_sym_get_accessor_token1] = ACTIONS(9272), + [aux_sym_set_accessor_token1] = ACTIONS(9272), + [aux_sym_const_declaration_token1] = ACTIONS(9272), + [anon_sym_LPAREN] = ACTIONS(9274), + [aux_sym_as_type_clause_token2] = ACTIONS(9272), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9272), + [aux_sym_visibility_token1] = ACTIONS(9272), + [aux_sym_visibility_token2] = ACTIONS(9272), + [aux_sym_elseif_fragment_token1] = ACTIONS(9272), + [aux_sym_else_fragment_token1] = ACTIONS(9272), + [aux_sym_select_statement_token1] = ACTIONS(9272), + [aux_sym__for_header_token1] = ACTIONS(9272), + [aux_sym_do_statement_token1] = ACTIONS(9272), + [aux_sym_do_condition_token1] = ACTIONS(9272), + [aux_sym_with_statement_token1] = ACTIONS(9272), + [aux_sym_exit_statement_token1] = ACTIONS(9272), + [sym_end_statement] = ACTIONS(9274), + [aux_sym_on_goto_statement_token1] = ACTIONS(9272), + [aux_sym_on_goto_statement_token2] = ACTIONS(9272), + [aux_sym_on_error_statement_token2] = ACTIONS(9272), + [sym__ambiguous_redim_statement] = ACTIONS(9274), + [aux_sym_erase_statement_token1] = ACTIONS(9272), + [aux_sym_open_statement_token1] = ACTIONS(9272), + [aux_sym_file_mode_token2] = ACTIONS(9272), + [aux_sym_file_access_token2] = ACTIONS(9272), + [aux_sym_file_lock_token2] = ACTIONS(9272), + [aux_sym_print_statement_token1] = ACTIONS(9272), + [anon_sym_PLUS] = ACTIONS(9274), + [anon_sym_DASH] = ACTIONS(9272), + [anon_sym_QMARK] = ACTIONS(9274), + [aux_sym_close_statement_token1] = ACTIONS(9272), + [aux_sym_put_statement_token1] = ACTIONS(9272), + [aux_sym_unlock_statement_token1] = ACTIONS(9272), + [aux_sym_seek_statement_token1] = ACTIONS(9272), + [sym_reset_statement] = ACTIONS(9272), + [aux_sym_raise_event_statement_token1] = ACTIONS(9272), + [sym_stop_statement] = ACTIONS(9272), + [sym_beep_statement] = ACTIONS(9272), + [aux_sym_unload_statement_token1] = ACTIONS(9272), + [aux_sym_def_type_statement_token1] = ACTIONS(9272), + [aux_sym_def_type_statement_token2] = ACTIONS(9272), + [aux_sym_def_type_statement_token3] = ACTIONS(9272), + [aux_sym_def_type_statement_token4] = ACTIONS(9272), + [aux_sym_def_type_statement_token5] = ACTIONS(9272), + [aux_sym_def_type_statement_token6] = ACTIONS(9272), + [aux_sym_def_type_statement_token7] = ACTIONS(9272), + [aux_sym_def_type_statement_token8] = ACTIONS(9272), + [aux_sym_def_type_statement_token9] = ACTIONS(9272), + [aux_sym_def_type_statement_token10] = ACTIONS(9272), + [aux_sym_def_type_statement_token11] = ACTIONS(9272), + [aux_sym_def_type_statement_token12] = ACTIONS(9272), + [aux_sym_def_type_statement_token13] = ACTIONS(9272), + [aux_sym_def_type_statement_token14] = ACTIONS(9272), + [aux_sym_call_statement_token1] = ACTIONS(9272), + [sym__ambiguous_call_statement] = ACTIONS(9272), + [aux_sym_addressof_expression_token1] = ACTIONS(9272), + [aux_sym_type_of_expression_token1] = ACTIONS(9272), + [aux_sym_unary_expression_token1] = ACTIONS(9272), + [sym_string_literal] = ACTIONS(9274), + [sym_number_literal] = ACTIONS(9274), + [aux_sym_boolean_literal_token1] = ACTIONS(9272), + [aux_sym_boolean_literal_token2] = ACTIONS(9272), + [sym_nothing_literal] = ACTIONS(9272), + [sym_null_literal] = ACTIONS(9272), + [sym_empty_literal] = ACTIONS(9272), + [sym_date_literal] = ACTIONS(9274), + [anon_sym_POUND] = ACTIONS(9272), + }, + [STATE(4358)] = { + [sym_identifier] = ACTIONS(9276), + [sym_newline] = ACTIONS(9278), + [anon_sym_COLON] = ACTIONS(9278), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9276), + [aux_sym_frm_property_statement_token1] = ACTIONS(9276), + [anon_sym_DOT] = ACTIONS(9276), + [anon_sym_BANG] = ACTIONS(9278), + [aux_sym__attribute_identifier_token1] = ACTIONS(9276), + [aux_sym_option_statement_token3] = ACTIONS(9276), + [aux_sym_type_declaration_token1] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9276), + [aux_sym_enum_declaration_token1] = ACTIONS(9276), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9276), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9276), + [aux_sym_declare_function_statement_token1] = ACTIONS(9276), + [aux_sym_preprocessor_const_token1] = ACTIONS(9276), + [aux_sym__property_get_header_token1] = ACTIONS(9276), + [aux_sym_event_declaration_token1] = ACTIONS(9276), + [sym_static_modifier] = ACTIONS(9276), + [sym__dim_keyword] = ACTIONS(9276), + [sym__redim_keyword] = ACTIONS(9276), + [aux_sym_get_accessor_token1] = ACTIONS(9276), + [aux_sym_set_accessor_token1] = ACTIONS(9276), + [aux_sym_const_declaration_token1] = ACTIONS(9276), + [anon_sym_LPAREN] = ACTIONS(9278), + [aux_sym_as_type_clause_token2] = ACTIONS(9276), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9276), + [aux_sym_visibility_token1] = ACTIONS(9276), + [aux_sym_visibility_token2] = ACTIONS(9276), + [aux_sym_elseif_fragment_token1] = ACTIONS(9276), + [aux_sym_else_fragment_token1] = ACTIONS(9276), + [aux_sym_select_statement_token1] = ACTIONS(9276), + [aux_sym__for_header_token1] = ACTIONS(9276), + [aux_sym_do_statement_token1] = ACTIONS(9276), + [aux_sym_do_condition_token1] = ACTIONS(9276), + [aux_sym_with_statement_token1] = ACTIONS(9276), + [aux_sym_exit_statement_token1] = ACTIONS(9276), + [sym_end_statement] = ACTIONS(9278), + [aux_sym_on_goto_statement_token1] = ACTIONS(9276), + [aux_sym_on_goto_statement_token2] = ACTIONS(9276), + [aux_sym_on_error_statement_token2] = ACTIONS(9276), + [sym__ambiguous_redim_statement] = ACTIONS(9278), + [aux_sym_erase_statement_token1] = ACTIONS(9276), + [aux_sym_open_statement_token1] = ACTIONS(9276), + [aux_sym_file_mode_token2] = ACTIONS(9276), + [aux_sym_file_access_token2] = ACTIONS(9276), + [aux_sym_file_lock_token2] = ACTIONS(9276), + [aux_sym_print_statement_token1] = ACTIONS(9276), + [anon_sym_PLUS] = ACTIONS(9278), + [anon_sym_DASH] = ACTIONS(9276), + [anon_sym_QMARK] = ACTIONS(9278), + [aux_sym_close_statement_token1] = ACTIONS(9276), + [aux_sym_put_statement_token1] = ACTIONS(9276), + [aux_sym_unlock_statement_token1] = ACTIONS(9276), + [aux_sym_seek_statement_token1] = ACTIONS(9276), + [sym_reset_statement] = ACTIONS(9276), + [aux_sym_raise_event_statement_token1] = ACTIONS(9276), + [sym_stop_statement] = ACTIONS(9276), + [sym_beep_statement] = ACTIONS(9276), + [aux_sym_unload_statement_token1] = ACTIONS(9276), + [aux_sym_def_type_statement_token1] = ACTIONS(9276), + [aux_sym_def_type_statement_token2] = ACTIONS(9276), + [aux_sym_def_type_statement_token3] = ACTIONS(9276), + [aux_sym_def_type_statement_token4] = ACTIONS(9276), + [aux_sym_def_type_statement_token5] = ACTIONS(9276), + [aux_sym_def_type_statement_token6] = ACTIONS(9276), + [aux_sym_def_type_statement_token7] = ACTIONS(9276), + [aux_sym_def_type_statement_token8] = ACTIONS(9276), + [aux_sym_def_type_statement_token9] = ACTIONS(9276), + [aux_sym_def_type_statement_token10] = ACTIONS(9276), + [aux_sym_def_type_statement_token11] = ACTIONS(9276), + [aux_sym_def_type_statement_token12] = ACTIONS(9276), + [aux_sym_def_type_statement_token13] = ACTIONS(9276), + [aux_sym_def_type_statement_token14] = ACTIONS(9276), + [aux_sym_call_statement_token1] = ACTIONS(9276), + [sym__ambiguous_call_statement] = ACTIONS(9276), + [aux_sym_addressof_expression_token1] = ACTIONS(9276), + [aux_sym_type_of_expression_token1] = ACTIONS(9276), + [aux_sym_unary_expression_token1] = ACTIONS(9276), + [sym_string_literal] = ACTIONS(9278), + [sym_number_literal] = ACTIONS(9278), + [aux_sym_boolean_literal_token1] = ACTIONS(9276), + [aux_sym_boolean_literal_token2] = ACTIONS(9276), + [sym_nothing_literal] = ACTIONS(9276), + [sym_null_literal] = ACTIONS(9276), + [sym_empty_literal] = ACTIONS(9276), + [sym_date_literal] = ACTIONS(9278), + [anon_sym_POUND] = ACTIONS(9276), + }, + [STATE(4359)] = { + [sym_next_variable_list] = STATE(6489), + [sym__assignable_expression] = STATE(5444), + [sym__callable_expression] = STATE(5281), + [sym_call_expression] = STATE(5348), + [sym_member_expression] = STATE(5865), + [sym_qualified_member_expression] = STATE(5994), + [sym_implicit_member_expression] = STATE(5994), + [sym_identifier] = ACTIONS(9913), + [sym_newline] = ACTIONS(6822), + [anon_sym_COLON] = ACTIONS(6822), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6824), + [aux_sym_frm_property_statement_token1] = ACTIONS(9915), + [anon_sym_DOT] = ACTIONS(9917), + [anon_sym_BANG] = ACTIONS(9919), + [aux_sym__attribute_identifier_token1] = ACTIONS(6824), + [aux_sym_option_statement_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6824), + [aux_sym_preprocessor_const_token1] = ACTIONS(6824), + [sym_static_modifier] = ACTIONS(6824), + [sym__dim_keyword] = ACTIONS(6824), + [sym__redim_keyword] = ACTIONS(6824), + [aux_sym_get_accessor_token1] = ACTIONS(6824), + [aux_sym_set_accessor_token1] = ACTIONS(6824), + [aux_sym_const_declaration_token1] = ACTIONS(6824), + [anon_sym_LPAREN] = ACTIONS(6822), + [aux_sym_as_type_clause_token2] = ACTIONS(6824), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9921), + [aux_sym_visibility_token1] = ACTIONS(6824), + [aux_sym_visibility_token2] = ACTIONS(6824), + [aux_sym_elseif_fragment_token1] = ACTIONS(6824), + [aux_sym_else_fragment_token1] = ACTIONS(6824), + [aux_sym_select_statement_token1] = ACTIONS(6824), + [aux_sym_select_statement_token2] = ACTIONS(6824), + [aux_sym__for_header_token1] = ACTIONS(6824), + [aux_sym_do_statement_token1] = ACTIONS(6824), + [aux_sym_do_condition_token1] = ACTIONS(6824), + [aux_sym_with_statement_token1] = ACTIONS(6824), + [aux_sym_exit_statement_token1] = ACTIONS(6824), + [sym_end_statement] = ACTIONS(6822), + [aux_sym_on_goto_statement_token1] = ACTIONS(6824), + [aux_sym_on_goto_statement_token2] = ACTIONS(6824), + [aux_sym_on_error_statement_token2] = ACTIONS(6824), + [sym__ambiguous_redim_statement] = ACTIONS(6822), + [aux_sym_erase_statement_token1] = ACTIONS(6824), + [aux_sym_open_statement_token1] = ACTIONS(6824), + [aux_sym_file_mode_token2] = ACTIONS(6824), + [aux_sym_file_access_token2] = ACTIONS(6824), + [aux_sym_file_lock_token2] = ACTIONS(6824), + [aux_sym_print_statement_token1] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6822), + [aux_sym_close_statement_token1] = ACTIONS(6824), + [aux_sym_put_statement_token1] = ACTIONS(6824), + [aux_sym_unlock_statement_token1] = ACTIONS(6824), + [aux_sym_seek_statement_token1] = ACTIONS(6824), + [sym_reset_statement] = ACTIONS(6824), + [aux_sym_raise_event_statement_token1] = ACTIONS(6824), + [sym_stop_statement] = ACTIONS(6824), + [sym_beep_statement] = ACTIONS(6824), + [aux_sym_unload_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token2] = ACTIONS(6824), + [aux_sym_def_type_statement_token3] = ACTIONS(6824), + [aux_sym_def_type_statement_token4] = ACTIONS(6824), + [aux_sym_def_type_statement_token5] = ACTIONS(6824), + [aux_sym_def_type_statement_token6] = ACTIONS(6824), + [aux_sym_def_type_statement_token7] = ACTIONS(6824), + [aux_sym_def_type_statement_token8] = ACTIONS(6824), + [aux_sym_def_type_statement_token9] = ACTIONS(6824), + [aux_sym_def_type_statement_token10] = ACTIONS(6824), + [aux_sym_def_type_statement_token11] = ACTIONS(6824), + [aux_sym_def_type_statement_token12] = ACTIONS(6824), + [aux_sym_def_type_statement_token13] = ACTIONS(6824), + [aux_sym_def_type_statement_token14] = ACTIONS(6824), + [aux_sym_call_statement_token1] = ACTIONS(6824), + [sym__ambiguous_call_statement] = ACTIONS(6824), + [aux_sym_addressof_expression_token1] = ACTIONS(6824), + [aux_sym_type_of_expression_token1] = ACTIONS(6824), + [aux_sym_unary_expression_token1] = ACTIONS(6824), + [sym_string_literal] = ACTIONS(6822), + [sym_number_literal] = ACTIONS(6822), + [aux_sym_boolean_literal_token1] = ACTIONS(6824), + [aux_sym_boolean_literal_token2] = ACTIONS(6824), + [sym_nothing_literal] = ACTIONS(6824), + [sym_null_literal] = ACTIONS(6824), + [sym_empty_literal] = ACTIONS(6824), + [sym_date_literal] = ACTIONS(6822), + [anon_sym_POUND] = ACTIONS(6824), + }, + [STATE(4360)] = { + [sym_next_variable_list] = STATE(6573), + [sym__assignable_expression] = STATE(5585), + [sym__callable_expression] = STATE(5394), + [sym_call_expression] = STATE(5098), + [sym_member_expression] = STATE(6089), + [sym_qualified_member_expression] = STATE(6126), + [sym_implicit_member_expression] = STATE(6126), + [sym_identifier] = ACTIONS(9923), + [sym_newline] = ACTIONS(6867), + [anon_sym_COLON] = ACTIONS(6867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6869), + [aux_sym_frm_property_statement_token1] = ACTIONS(9925), + [anon_sym_DOT] = ACTIONS(9927), + [anon_sym_BANG] = ACTIONS(9929), + [aux_sym__attribute_identifier_token1] = ACTIONS(6869), + [aux_sym_option_statement_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6869), + [aux_sym_preprocessor_const_token1] = ACTIONS(6869), + [sym_static_modifier] = ACTIONS(6869), + [sym__dim_keyword] = ACTIONS(6869), + [sym__redim_keyword] = ACTIONS(6869), + [aux_sym_get_accessor_token1] = ACTIONS(6869), + [aux_sym_set_accessor_token1] = ACTIONS(6869), + [aux_sym_const_declaration_token1] = ACTIONS(6869), + [anon_sym_LPAREN] = ACTIONS(6867), + [aux_sym_as_type_clause_token2] = ACTIONS(6869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9931), + [aux_sym_visibility_token1] = ACTIONS(6869), + [aux_sym_visibility_token2] = ACTIONS(6869), + [aux_sym_elseif_fragment_token1] = ACTIONS(6869), + [aux_sym_else_fragment_token1] = ACTIONS(6869), + [aux_sym_select_statement_token1] = ACTIONS(6869), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6869), + [aux_sym__for_header_token1] = ACTIONS(6869), + [aux_sym_do_statement_token1] = ACTIONS(6869), + [aux_sym_do_condition_token1] = ACTIONS(6869), + [aux_sym_with_statement_token1] = ACTIONS(6869), + [aux_sym_exit_statement_token1] = ACTIONS(6869), + [sym_end_statement] = ACTIONS(6867), + [aux_sym_on_goto_statement_token1] = ACTIONS(6869), + [aux_sym_on_goto_statement_token2] = ACTIONS(6869), + [aux_sym_on_error_statement_token2] = ACTIONS(6869), + [sym__ambiguous_redim_statement] = ACTIONS(6867), + [aux_sym_erase_statement_token1] = ACTIONS(6869), + [aux_sym_open_statement_token1] = ACTIONS(6869), + [aux_sym_file_mode_token2] = ACTIONS(6869), + [aux_sym_file_access_token2] = ACTIONS(6869), + [aux_sym_file_lock_token2] = ACTIONS(6869), + [aux_sym_print_statement_token1] = ACTIONS(6869), + [anon_sym_PLUS] = ACTIONS(6867), + [anon_sym_DASH] = ACTIONS(6869), + [anon_sym_QMARK] = ACTIONS(6867), + [aux_sym_close_statement_token1] = ACTIONS(6869), + [aux_sym_put_statement_token1] = ACTIONS(6869), + [aux_sym_unlock_statement_token1] = ACTIONS(6869), + [aux_sym_seek_statement_token1] = ACTIONS(6869), + [sym_reset_statement] = ACTIONS(6869), + [aux_sym_raise_event_statement_token1] = ACTIONS(6869), + [sym_stop_statement] = ACTIONS(6869), + [sym_beep_statement] = ACTIONS(6869), + [aux_sym_unload_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token2] = ACTIONS(6869), + [aux_sym_def_type_statement_token3] = ACTIONS(6869), + [aux_sym_def_type_statement_token4] = ACTIONS(6869), + [aux_sym_def_type_statement_token5] = ACTIONS(6869), + [aux_sym_def_type_statement_token6] = ACTIONS(6869), + [aux_sym_def_type_statement_token7] = ACTIONS(6869), + [aux_sym_def_type_statement_token8] = ACTIONS(6869), + [aux_sym_def_type_statement_token9] = ACTIONS(6869), + [aux_sym_def_type_statement_token10] = ACTIONS(6869), + [aux_sym_def_type_statement_token11] = ACTIONS(6869), + [aux_sym_def_type_statement_token12] = ACTIONS(6869), + [aux_sym_def_type_statement_token13] = ACTIONS(6869), + [aux_sym_def_type_statement_token14] = ACTIONS(6869), + [aux_sym_call_statement_token1] = ACTIONS(6869), + [sym__ambiguous_call_statement] = ACTIONS(6869), + [aux_sym_addressof_expression_token1] = ACTIONS(6869), + [aux_sym_type_of_expression_token1] = ACTIONS(6869), + [aux_sym_unary_expression_token1] = ACTIONS(6869), + [sym_string_literal] = ACTIONS(6867), + [sym_number_literal] = ACTIONS(6867), + [aux_sym_boolean_literal_token1] = ACTIONS(6869), + [aux_sym_boolean_literal_token2] = ACTIONS(6869), + [sym_nothing_literal] = ACTIONS(6869), + [sym_null_literal] = ACTIONS(6869), + [sym_empty_literal] = ACTIONS(6869), + [sym_date_literal] = ACTIONS(6867), + [anon_sym_POUND] = ACTIONS(6869), + }, + [STATE(4361)] = { + [sym_next_variable_list] = STATE(6575), + [sym__assignable_expression] = STATE(5585), + [sym__callable_expression] = STATE(5394), + [sym_call_expression] = STATE(5098), + [sym_member_expression] = STATE(6089), + [sym_qualified_member_expression] = STATE(6126), + [sym_implicit_member_expression] = STATE(6126), + [sym_identifier] = ACTIONS(9923), + [sym_newline] = ACTIONS(6810), + [anon_sym_COLON] = ACTIONS(6810), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6812), + [aux_sym_frm_property_statement_token1] = ACTIONS(9925), + [anon_sym_DOT] = ACTIONS(9927), + [anon_sym_BANG] = ACTIONS(9929), + [aux_sym__attribute_identifier_token1] = ACTIONS(6812), + [aux_sym_option_statement_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6812), + [aux_sym_preprocessor_const_token1] = ACTIONS(6812), + [sym_static_modifier] = ACTIONS(6812), + [sym__dim_keyword] = ACTIONS(6812), + [sym__redim_keyword] = ACTIONS(6812), + [aux_sym_get_accessor_token1] = ACTIONS(6812), + [aux_sym_set_accessor_token1] = ACTIONS(6812), + [aux_sym_const_declaration_token1] = ACTIONS(6812), + [anon_sym_LPAREN] = ACTIONS(6810), + [aux_sym_as_type_clause_token2] = ACTIONS(6812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9931), + [aux_sym_visibility_token1] = ACTIONS(6812), + [aux_sym_visibility_token2] = ACTIONS(6812), + [aux_sym_elseif_fragment_token1] = ACTIONS(6812), + [aux_sym_else_fragment_token1] = ACTIONS(6812), + [aux_sym_select_statement_token1] = ACTIONS(6812), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6812), + [aux_sym__for_header_token1] = ACTIONS(6812), + [aux_sym_do_statement_token1] = ACTIONS(6812), + [aux_sym_do_condition_token1] = ACTIONS(6812), + [aux_sym_with_statement_token1] = ACTIONS(6812), + [aux_sym_exit_statement_token1] = ACTIONS(6812), + [sym_end_statement] = ACTIONS(6810), + [aux_sym_on_goto_statement_token1] = ACTIONS(6812), + [aux_sym_on_goto_statement_token2] = ACTIONS(6812), + [aux_sym_on_error_statement_token2] = ACTIONS(6812), + [sym__ambiguous_redim_statement] = ACTIONS(6810), + [aux_sym_erase_statement_token1] = ACTIONS(6812), + [aux_sym_open_statement_token1] = ACTIONS(6812), + [aux_sym_file_mode_token2] = ACTIONS(6812), + [aux_sym_file_access_token2] = ACTIONS(6812), + [aux_sym_file_lock_token2] = ACTIONS(6812), + [aux_sym_print_statement_token1] = ACTIONS(6812), + [anon_sym_PLUS] = ACTIONS(6810), + [anon_sym_DASH] = ACTIONS(6812), + [anon_sym_QMARK] = ACTIONS(6810), + [aux_sym_close_statement_token1] = ACTIONS(6812), + [aux_sym_put_statement_token1] = ACTIONS(6812), + [aux_sym_unlock_statement_token1] = ACTIONS(6812), + [aux_sym_seek_statement_token1] = ACTIONS(6812), + [sym_reset_statement] = ACTIONS(6812), + [aux_sym_raise_event_statement_token1] = ACTIONS(6812), + [sym_stop_statement] = ACTIONS(6812), + [sym_beep_statement] = ACTIONS(6812), + [aux_sym_unload_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token2] = ACTIONS(6812), + [aux_sym_def_type_statement_token3] = ACTIONS(6812), + [aux_sym_def_type_statement_token4] = ACTIONS(6812), + [aux_sym_def_type_statement_token5] = ACTIONS(6812), + [aux_sym_def_type_statement_token6] = ACTIONS(6812), + [aux_sym_def_type_statement_token7] = ACTIONS(6812), + [aux_sym_def_type_statement_token8] = ACTIONS(6812), + [aux_sym_def_type_statement_token9] = ACTIONS(6812), + [aux_sym_def_type_statement_token10] = ACTIONS(6812), + [aux_sym_def_type_statement_token11] = ACTIONS(6812), + [aux_sym_def_type_statement_token12] = ACTIONS(6812), + [aux_sym_def_type_statement_token13] = ACTIONS(6812), + [aux_sym_def_type_statement_token14] = ACTIONS(6812), + [aux_sym_call_statement_token1] = ACTIONS(6812), + [sym__ambiguous_call_statement] = ACTIONS(6812), + [aux_sym_addressof_expression_token1] = ACTIONS(6812), + [aux_sym_type_of_expression_token1] = ACTIONS(6812), + [aux_sym_unary_expression_token1] = ACTIONS(6812), + [sym_string_literal] = ACTIONS(6810), + [sym_number_literal] = ACTIONS(6810), + [aux_sym_boolean_literal_token1] = ACTIONS(6812), + [aux_sym_boolean_literal_token2] = ACTIONS(6812), + [sym_nothing_literal] = ACTIONS(6812), + [sym_null_literal] = ACTIONS(6812), + [sym_empty_literal] = ACTIONS(6812), + [sym_date_literal] = ACTIONS(6810), + [anon_sym_POUND] = ACTIONS(6812), + }, + [STATE(4362)] = { + [sym_next_variable_list] = STATE(6576), + [sym__assignable_expression] = STATE(5585), + [sym__callable_expression] = STATE(5394), + [sym_call_expression] = STATE(5098), + [sym_member_expression] = STATE(6089), + [sym_qualified_member_expression] = STATE(6126), + [sym_implicit_member_expression] = STATE(6126), + [sym_identifier] = ACTIONS(9923), + [sym_newline] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6828), + [aux_sym_frm_property_statement_token1] = ACTIONS(9925), + [anon_sym_DOT] = ACTIONS(9927), + [anon_sym_BANG] = ACTIONS(9929), + [aux_sym__attribute_identifier_token1] = ACTIONS(6828), + [aux_sym_option_statement_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6828), + [aux_sym_preprocessor_const_token1] = ACTIONS(6828), + [sym_static_modifier] = ACTIONS(6828), + [sym__dim_keyword] = ACTIONS(6828), + [sym__redim_keyword] = ACTIONS(6828), + [aux_sym_get_accessor_token1] = ACTIONS(6828), + [aux_sym_set_accessor_token1] = ACTIONS(6828), + [aux_sym_const_declaration_token1] = ACTIONS(6828), + [anon_sym_LPAREN] = ACTIONS(6826), + [aux_sym_as_type_clause_token2] = ACTIONS(6828), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9931), + [aux_sym_visibility_token1] = ACTIONS(6828), + [aux_sym_visibility_token2] = ACTIONS(6828), + [aux_sym_elseif_fragment_token1] = ACTIONS(6828), + [aux_sym_else_fragment_token1] = ACTIONS(6828), + [aux_sym_select_statement_token1] = ACTIONS(6828), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6828), + [aux_sym__for_header_token1] = ACTIONS(6828), + [aux_sym_do_statement_token1] = ACTIONS(6828), + [aux_sym_do_condition_token1] = ACTIONS(6828), + [aux_sym_with_statement_token1] = ACTIONS(6828), + [aux_sym_exit_statement_token1] = ACTIONS(6828), + [sym_end_statement] = ACTIONS(6826), + [aux_sym_on_goto_statement_token1] = ACTIONS(6828), + [aux_sym_on_goto_statement_token2] = ACTIONS(6828), + [aux_sym_on_error_statement_token2] = ACTIONS(6828), + [sym__ambiguous_redim_statement] = ACTIONS(6826), + [aux_sym_erase_statement_token1] = ACTIONS(6828), + [aux_sym_open_statement_token1] = ACTIONS(6828), + [aux_sym_file_mode_token2] = ACTIONS(6828), + [aux_sym_file_access_token2] = ACTIONS(6828), + [aux_sym_file_lock_token2] = ACTIONS(6828), + [aux_sym_print_statement_token1] = ACTIONS(6828), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_DASH] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6826), + [aux_sym_close_statement_token1] = ACTIONS(6828), + [aux_sym_put_statement_token1] = ACTIONS(6828), + [aux_sym_unlock_statement_token1] = ACTIONS(6828), + [aux_sym_seek_statement_token1] = ACTIONS(6828), + [sym_reset_statement] = ACTIONS(6828), + [aux_sym_raise_event_statement_token1] = ACTIONS(6828), + [sym_stop_statement] = ACTIONS(6828), + [sym_beep_statement] = ACTIONS(6828), + [aux_sym_unload_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token2] = ACTIONS(6828), + [aux_sym_def_type_statement_token3] = ACTIONS(6828), + [aux_sym_def_type_statement_token4] = ACTIONS(6828), + [aux_sym_def_type_statement_token5] = ACTIONS(6828), + [aux_sym_def_type_statement_token6] = ACTIONS(6828), + [aux_sym_def_type_statement_token7] = ACTIONS(6828), + [aux_sym_def_type_statement_token8] = ACTIONS(6828), + [aux_sym_def_type_statement_token9] = ACTIONS(6828), + [aux_sym_def_type_statement_token10] = ACTIONS(6828), + [aux_sym_def_type_statement_token11] = ACTIONS(6828), + [aux_sym_def_type_statement_token12] = ACTIONS(6828), + [aux_sym_def_type_statement_token13] = ACTIONS(6828), + [aux_sym_def_type_statement_token14] = ACTIONS(6828), + [aux_sym_call_statement_token1] = ACTIONS(6828), + [sym__ambiguous_call_statement] = ACTIONS(6828), + [aux_sym_addressof_expression_token1] = ACTIONS(6828), + [aux_sym_type_of_expression_token1] = ACTIONS(6828), + [aux_sym_unary_expression_token1] = ACTIONS(6828), + [sym_string_literal] = ACTIONS(6826), + [sym_number_literal] = ACTIONS(6826), + [aux_sym_boolean_literal_token1] = ACTIONS(6828), + [aux_sym_boolean_literal_token2] = ACTIONS(6828), + [sym_nothing_literal] = ACTIONS(6828), + [sym_null_literal] = ACTIONS(6828), + [sym_empty_literal] = ACTIONS(6828), + [sym_date_literal] = ACTIONS(6826), + [anon_sym_POUND] = ACTIONS(6828), + }, + [STATE(4363)] = { + [sym_identifier] = ACTIONS(8951), + [sym_newline] = ACTIONS(8953), + [anon_sym_COLON] = ACTIONS(8955), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8951), + [aux_sym_frm_property_statement_token1] = ACTIONS(8951), + [anon_sym_DOT] = ACTIONS(8951), + [anon_sym_BANG] = ACTIONS(8953), + [aux_sym__attribute_identifier_token1] = ACTIONS(8951), + [aux_sym_option_statement_token3] = ACTIONS(8951), + [aux_sym_type_declaration_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8951), + [aux_sym_enum_declaration_token1] = ACTIONS(8951), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8951), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8951), + [aux_sym_declare_function_statement_token1] = ACTIONS(8951), + [aux_sym_preprocessor_const_token1] = ACTIONS(8951), + [aux_sym__property_get_header_token1] = ACTIONS(8951), + [aux_sym_event_declaration_token1] = ACTIONS(8951), + [sym_static_modifier] = ACTIONS(8951), + [sym__dim_keyword] = ACTIONS(8951), + [sym__redim_keyword] = ACTIONS(8951), + [aux_sym_get_accessor_token1] = ACTIONS(8951), + [aux_sym_set_accessor_token1] = ACTIONS(8951), + [aux_sym_const_declaration_token1] = ACTIONS(8951), + [anon_sym_LPAREN] = ACTIONS(8953), + [aux_sym_as_type_clause_token2] = ACTIONS(8951), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8951), + [aux_sym_visibility_token1] = ACTIONS(8951), + [aux_sym_visibility_token2] = ACTIONS(8951), + [aux_sym_elseif_fragment_token1] = ACTIONS(8951), + [aux_sym_else_fragment_token1] = ACTIONS(8951), + [aux_sym_select_statement_token1] = ACTIONS(8951), + [aux_sym__for_header_token1] = ACTIONS(8951), + [aux_sym_do_statement_token1] = ACTIONS(8951), + [aux_sym_do_condition_token1] = ACTIONS(8951), + [aux_sym_with_statement_token1] = ACTIONS(8951), + [aux_sym_exit_statement_token1] = ACTIONS(8951), + [sym_end_statement] = ACTIONS(8953), + [aux_sym_on_goto_statement_token1] = ACTIONS(8951), + [aux_sym_on_goto_statement_token2] = ACTIONS(8951), + [aux_sym_on_error_statement_token2] = ACTIONS(8951), + [sym__ambiguous_redim_statement] = ACTIONS(8953), + [aux_sym_erase_statement_token1] = ACTIONS(8951), + [aux_sym_open_statement_token1] = ACTIONS(8951), + [aux_sym_file_mode_token2] = ACTIONS(8951), + [aux_sym_file_access_token2] = ACTIONS(8951), + [aux_sym_file_lock_token2] = ACTIONS(8951), + [aux_sym_print_statement_token1] = ACTIONS(8951), + [anon_sym_PLUS] = ACTIONS(8953), + [anon_sym_DASH] = ACTIONS(8951), + [anon_sym_QMARK] = ACTIONS(8953), + [aux_sym_close_statement_token1] = ACTIONS(8951), + [aux_sym_put_statement_token1] = ACTIONS(8951), + [aux_sym_unlock_statement_token1] = ACTIONS(8951), + [aux_sym_seek_statement_token1] = ACTIONS(8951), + [sym_reset_statement] = ACTIONS(8951), + [aux_sym_raise_event_statement_token1] = ACTIONS(8951), + [sym_stop_statement] = ACTIONS(8951), + [sym_beep_statement] = ACTIONS(8951), + [aux_sym_unload_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token2] = ACTIONS(8951), + [aux_sym_def_type_statement_token3] = ACTIONS(8951), + [aux_sym_def_type_statement_token4] = ACTIONS(8951), + [aux_sym_def_type_statement_token5] = ACTIONS(8951), + [aux_sym_def_type_statement_token6] = ACTIONS(8951), + [aux_sym_def_type_statement_token7] = ACTIONS(8951), + [aux_sym_def_type_statement_token8] = ACTIONS(8951), + [aux_sym_def_type_statement_token9] = ACTIONS(8951), + [aux_sym_def_type_statement_token10] = ACTIONS(8951), + [aux_sym_def_type_statement_token11] = ACTIONS(8951), + [aux_sym_def_type_statement_token12] = ACTIONS(8951), + [aux_sym_def_type_statement_token13] = ACTIONS(8951), + [aux_sym_def_type_statement_token14] = ACTIONS(8951), + [aux_sym_call_statement_token1] = ACTIONS(8951), + [sym__ambiguous_call_statement] = ACTIONS(8951), + [aux_sym_addressof_expression_token1] = ACTIONS(8951), + [aux_sym_type_of_expression_token1] = ACTIONS(8951), + [aux_sym_unary_expression_token1] = ACTIONS(8951), + [sym_string_literal] = ACTIONS(8953), + [sym_number_literal] = ACTIONS(8955), + [aux_sym_boolean_literal_token1] = ACTIONS(8951), + [aux_sym_boolean_literal_token2] = ACTIONS(8951), + [sym_nothing_literal] = ACTIONS(8951), + [sym_null_literal] = ACTIONS(8951), + [sym_empty_literal] = ACTIONS(8951), + [sym_date_literal] = ACTIONS(8953), + [anon_sym_POUND] = ACTIONS(8951), + }, + [STATE(4364)] = { + [sym_identifier] = ACTIONS(8645), + [sym_newline] = ACTIONS(8647), + [anon_sym_COLON] = ACTIONS(8649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8645), + [aux_sym_frm_property_statement_token1] = ACTIONS(8645), + [anon_sym_DOT] = ACTIONS(8645), + [anon_sym_BANG] = ACTIONS(8647), + [aux_sym__attribute_identifier_token1] = ACTIONS(8645), + [aux_sym_option_statement_token3] = ACTIONS(8645), + [aux_sym_type_declaration_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8645), + [aux_sym_enum_declaration_token1] = ACTIONS(8645), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8645), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8645), + [aux_sym_declare_function_statement_token1] = ACTIONS(8645), + [aux_sym_preprocessor_const_token1] = ACTIONS(8645), + [aux_sym__property_get_header_token1] = ACTIONS(8645), + [aux_sym_event_declaration_token1] = ACTIONS(8645), + [sym_static_modifier] = ACTIONS(8645), + [sym__dim_keyword] = ACTIONS(8645), + [sym__redim_keyword] = ACTIONS(8645), + [aux_sym_get_accessor_token1] = ACTIONS(8645), + [aux_sym_set_accessor_token1] = ACTIONS(8645), + [aux_sym_const_declaration_token1] = ACTIONS(8645), + [anon_sym_LPAREN] = ACTIONS(8647), + [aux_sym_as_type_clause_token2] = ACTIONS(8645), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8645), + [aux_sym_visibility_token1] = ACTIONS(8645), + [aux_sym_visibility_token2] = ACTIONS(8645), + [aux_sym_elseif_fragment_token1] = ACTIONS(8645), + [aux_sym_else_fragment_token1] = ACTIONS(8645), + [aux_sym_select_statement_token1] = ACTIONS(8645), + [aux_sym__for_header_token1] = ACTIONS(8645), + [aux_sym_do_statement_token1] = ACTIONS(8645), + [aux_sym_do_condition_token1] = ACTIONS(8645), + [aux_sym_with_statement_token1] = ACTIONS(8645), + [aux_sym_exit_statement_token1] = ACTIONS(8645), + [sym_end_statement] = ACTIONS(8647), + [aux_sym_on_goto_statement_token1] = ACTIONS(8645), + [aux_sym_on_goto_statement_token2] = ACTIONS(8645), + [aux_sym_on_error_statement_token2] = ACTIONS(8645), + [sym__ambiguous_redim_statement] = ACTIONS(8647), + [aux_sym_erase_statement_token1] = ACTIONS(8645), + [aux_sym_open_statement_token1] = ACTIONS(8645), + [aux_sym_file_mode_token2] = ACTIONS(8645), + [aux_sym_file_access_token2] = ACTIONS(8645), + [aux_sym_file_lock_token2] = ACTIONS(8645), + [aux_sym_print_statement_token1] = ACTIONS(8645), + [anon_sym_PLUS] = ACTIONS(8647), + [anon_sym_DASH] = ACTIONS(8645), + [anon_sym_QMARK] = ACTIONS(8647), + [aux_sym_close_statement_token1] = ACTIONS(8645), + [aux_sym_put_statement_token1] = ACTIONS(8645), + [aux_sym_unlock_statement_token1] = ACTIONS(8645), + [aux_sym_seek_statement_token1] = ACTIONS(8645), + [sym_reset_statement] = ACTIONS(8645), + [aux_sym_raise_event_statement_token1] = ACTIONS(8645), + [sym_stop_statement] = ACTIONS(8645), + [sym_beep_statement] = ACTIONS(8645), + [aux_sym_unload_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token2] = ACTIONS(8645), + [aux_sym_def_type_statement_token3] = ACTIONS(8645), + [aux_sym_def_type_statement_token4] = ACTIONS(8645), + [aux_sym_def_type_statement_token5] = ACTIONS(8645), + [aux_sym_def_type_statement_token6] = ACTIONS(8645), + [aux_sym_def_type_statement_token7] = ACTIONS(8645), + [aux_sym_def_type_statement_token8] = ACTIONS(8645), + [aux_sym_def_type_statement_token9] = ACTIONS(8645), + [aux_sym_def_type_statement_token10] = ACTIONS(8645), + [aux_sym_def_type_statement_token11] = ACTIONS(8645), + [aux_sym_def_type_statement_token12] = ACTIONS(8645), + [aux_sym_def_type_statement_token13] = ACTIONS(8645), + [aux_sym_def_type_statement_token14] = ACTIONS(8645), + [aux_sym_call_statement_token1] = ACTIONS(8645), + [sym__ambiguous_call_statement] = ACTIONS(8645), + [aux_sym_addressof_expression_token1] = ACTIONS(8645), + [aux_sym_type_of_expression_token1] = ACTIONS(8645), + [aux_sym_unary_expression_token1] = ACTIONS(8645), + [sym_string_literal] = ACTIONS(8647), + [sym_number_literal] = ACTIONS(8649), + [aux_sym_boolean_literal_token1] = ACTIONS(8645), + [aux_sym_boolean_literal_token2] = ACTIONS(8645), + [sym_nothing_literal] = ACTIONS(8645), + [sym_null_literal] = ACTIONS(8645), + [sym_empty_literal] = ACTIONS(8645), + [sym_date_literal] = ACTIONS(8647), + [anon_sym_POUND] = ACTIONS(8645), + }, + [STATE(4365)] = { + [sym_identifier] = ACTIONS(8749), + [sym_newline] = ACTIONS(8751), + [anon_sym_COLON] = ACTIONS(8753), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8749), + [aux_sym_frm_property_statement_token1] = ACTIONS(8749), + [anon_sym_DOT] = ACTIONS(8749), + [anon_sym_BANG] = ACTIONS(8751), + [aux_sym__attribute_identifier_token1] = ACTIONS(8749), + [aux_sym_option_statement_token3] = ACTIONS(8749), + [aux_sym_type_declaration_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8749), + [aux_sym_enum_declaration_token1] = ACTIONS(8749), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8749), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8749), + [aux_sym_declare_function_statement_token1] = ACTIONS(8749), + [aux_sym_preprocessor_const_token1] = ACTIONS(8749), + [aux_sym__property_get_header_token1] = ACTIONS(8749), + [aux_sym_event_declaration_token1] = ACTIONS(8749), + [sym_static_modifier] = ACTIONS(8749), + [sym__dim_keyword] = ACTIONS(8749), + [sym__redim_keyword] = ACTIONS(8749), + [aux_sym_get_accessor_token1] = ACTIONS(8749), + [aux_sym_set_accessor_token1] = ACTIONS(8749), + [aux_sym_const_declaration_token1] = ACTIONS(8749), + [anon_sym_LPAREN] = ACTIONS(8751), + [aux_sym_as_type_clause_token2] = ACTIONS(8749), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8749), + [aux_sym_visibility_token1] = ACTIONS(8749), + [aux_sym_visibility_token2] = ACTIONS(8749), + [aux_sym_elseif_fragment_token1] = ACTIONS(8749), + [aux_sym_else_fragment_token1] = ACTIONS(8749), + [aux_sym_select_statement_token1] = ACTIONS(8749), + [aux_sym__for_header_token1] = ACTIONS(8749), + [aux_sym_do_statement_token1] = ACTIONS(8749), + [aux_sym_do_condition_token1] = ACTIONS(8749), + [aux_sym_with_statement_token1] = ACTIONS(8749), + [aux_sym_exit_statement_token1] = ACTIONS(8749), + [sym_end_statement] = ACTIONS(8751), + [aux_sym_on_goto_statement_token1] = ACTIONS(8749), + [aux_sym_on_goto_statement_token2] = ACTIONS(8749), + [aux_sym_on_error_statement_token2] = ACTIONS(8749), + [sym__ambiguous_redim_statement] = ACTIONS(8751), + [aux_sym_erase_statement_token1] = ACTIONS(8749), + [aux_sym_open_statement_token1] = ACTIONS(8749), + [aux_sym_file_mode_token2] = ACTIONS(8749), + [aux_sym_file_access_token2] = ACTIONS(8749), + [aux_sym_file_lock_token2] = ACTIONS(8749), + [aux_sym_print_statement_token1] = ACTIONS(8749), + [anon_sym_PLUS] = ACTIONS(8751), + [anon_sym_DASH] = ACTIONS(8749), + [anon_sym_QMARK] = ACTIONS(8751), + [aux_sym_close_statement_token1] = ACTIONS(8749), + [aux_sym_put_statement_token1] = ACTIONS(8749), + [aux_sym_unlock_statement_token1] = ACTIONS(8749), + [aux_sym_seek_statement_token1] = ACTIONS(8749), + [sym_reset_statement] = ACTIONS(8749), + [aux_sym_raise_event_statement_token1] = ACTIONS(8749), + [sym_stop_statement] = ACTIONS(8749), + [sym_beep_statement] = ACTIONS(8749), + [aux_sym_unload_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token2] = ACTIONS(8749), + [aux_sym_def_type_statement_token3] = ACTIONS(8749), + [aux_sym_def_type_statement_token4] = ACTIONS(8749), + [aux_sym_def_type_statement_token5] = ACTIONS(8749), + [aux_sym_def_type_statement_token6] = ACTIONS(8749), + [aux_sym_def_type_statement_token7] = ACTIONS(8749), + [aux_sym_def_type_statement_token8] = ACTIONS(8749), + [aux_sym_def_type_statement_token9] = ACTIONS(8749), + [aux_sym_def_type_statement_token10] = ACTIONS(8749), + [aux_sym_def_type_statement_token11] = ACTIONS(8749), + [aux_sym_def_type_statement_token12] = ACTIONS(8749), + [aux_sym_def_type_statement_token13] = ACTIONS(8749), + [aux_sym_def_type_statement_token14] = ACTIONS(8749), + [aux_sym_call_statement_token1] = ACTIONS(8749), + [sym__ambiguous_call_statement] = ACTIONS(8749), + [aux_sym_addressof_expression_token1] = ACTIONS(8749), + [aux_sym_type_of_expression_token1] = ACTIONS(8749), + [aux_sym_unary_expression_token1] = ACTIONS(8749), + [sym_string_literal] = ACTIONS(8751), + [sym_number_literal] = ACTIONS(8753), + [aux_sym_boolean_literal_token1] = ACTIONS(8749), + [aux_sym_boolean_literal_token2] = ACTIONS(8749), + [sym_nothing_literal] = ACTIONS(8749), + [sym_null_literal] = ACTIONS(8749), + [sym_empty_literal] = ACTIONS(8749), + [sym_date_literal] = ACTIONS(8751), + [anon_sym_POUND] = ACTIONS(8749), + }, + [STATE(4366)] = { + [sym_next_variable_list] = STATE(6578), + [sym__assignable_expression] = STATE(5585), + [sym__callable_expression] = STATE(5394), + [sym_call_expression] = STATE(5098), + [sym_member_expression] = STATE(6089), + [sym_qualified_member_expression] = STATE(6126), + [sym_implicit_member_expression] = STATE(6126), + [sym_identifier] = ACTIONS(9923), + [sym_newline] = ACTIONS(6863), + [anon_sym_COLON] = ACTIONS(6863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6865), + [aux_sym_frm_property_statement_token1] = ACTIONS(9925), + [anon_sym_DOT] = ACTIONS(9927), + [anon_sym_BANG] = ACTIONS(9929), + [aux_sym__attribute_identifier_token1] = ACTIONS(6865), + [aux_sym_option_statement_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6865), + [aux_sym_preprocessor_const_token1] = ACTIONS(6865), + [sym_static_modifier] = ACTIONS(6865), + [sym__dim_keyword] = ACTIONS(6865), + [sym__redim_keyword] = ACTIONS(6865), + [aux_sym_get_accessor_token1] = ACTIONS(6865), + [aux_sym_set_accessor_token1] = ACTIONS(6865), + [aux_sym_const_declaration_token1] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6863), + [aux_sym_as_type_clause_token2] = ACTIONS(6865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9931), + [aux_sym_visibility_token1] = ACTIONS(6865), + [aux_sym_visibility_token2] = ACTIONS(6865), + [aux_sym_elseif_fragment_token1] = ACTIONS(6865), + [aux_sym_else_fragment_token1] = ACTIONS(6865), + [aux_sym_select_statement_token1] = ACTIONS(6865), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6865), + [aux_sym__for_header_token1] = ACTIONS(6865), + [aux_sym_do_statement_token1] = ACTIONS(6865), + [aux_sym_do_condition_token1] = ACTIONS(6865), + [aux_sym_with_statement_token1] = ACTIONS(6865), + [aux_sym_exit_statement_token1] = ACTIONS(6865), + [sym_end_statement] = ACTIONS(6863), + [aux_sym_on_goto_statement_token1] = ACTIONS(6865), + [aux_sym_on_goto_statement_token2] = ACTIONS(6865), + [aux_sym_on_error_statement_token2] = ACTIONS(6865), + [sym__ambiguous_redim_statement] = ACTIONS(6863), + [aux_sym_erase_statement_token1] = ACTIONS(6865), + [aux_sym_open_statement_token1] = ACTIONS(6865), + [aux_sym_file_mode_token2] = ACTIONS(6865), + [aux_sym_file_access_token2] = ACTIONS(6865), + [aux_sym_file_lock_token2] = ACTIONS(6865), + [aux_sym_print_statement_token1] = ACTIONS(6865), + [anon_sym_PLUS] = ACTIONS(6863), + [anon_sym_DASH] = ACTIONS(6865), + [anon_sym_QMARK] = ACTIONS(6863), + [aux_sym_close_statement_token1] = ACTIONS(6865), + [aux_sym_put_statement_token1] = ACTIONS(6865), + [aux_sym_unlock_statement_token1] = ACTIONS(6865), + [aux_sym_seek_statement_token1] = ACTIONS(6865), + [sym_reset_statement] = ACTIONS(6865), + [aux_sym_raise_event_statement_token1] = ACTIONS(6865), + [sym_stop_statement] = ACTIONS(6865), + [sym_beep_statement] = ACTIONS(6865), + [aux_sym_unload_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token2] = ACTIONS(6865), + [aux_sym_def_type_statement_token3] = ACTIONS(6865), + [aux_sym_def_type_statement_token4] = ACTIONS(6865), + [aux_sym_def_type_statement_token5] = ACTIONS(6865), + [aux_sym_def_type_statement_token6] = ACTIONS(6865), + [aux_sym_def_type_statement_token7] = ACTIONS(6865), + [aux_sym_def_type_statement_token8] = ACTIONS(6865), + [aux_sym_def_type_statement_token9] = ACTIONS(6865), + [aux_sym_def_type_statement_token10] = ACTIONS(6865), + [aux_sym_def_type_statement_token11] = ACTIONS(6865), + [aux_sym_def_type_statement_token12] = ACTIONS(6865), + [aux_sym_def_type_statement_token13] = ACTIONS(6865), + [aux_sym_def_type_statement_token14] = ACTIONS(6865), + [aux_sym_call_statement_token1] = ACTIONS(6865), + [sym__ambiguous_call_statement] = ACTIONS(6865), + [aux_sym_addressof_expression_token1] = ACTIONS(6865), + [aux_sym_type_of_expression_token1] = ACTIONS(6865), + [aux_sym_unary_expression_token1] = ACTIONS(6865), + [sym_string_literal] = ACTIONS(6863), + [sym_number_literal] = ACTIONS(6863), + [aux_sym_boolean_literal_token1] = ACTIONS(6865), + [aux_sym_boolean_literal_token2] = ACTIONS(6865), + [sym_nothing_literal] = ACTIONS(6865), + [sym_null_literal] = ACTIONS(6865), + [sym_empty_literal] = ACTIONS(6865), + [sym_date_literal] = ACTIONS(6863), + [anon_sym_POUND] = ACTIONS(6865), + }, + [STATE(4367)] = { + [sym_identifier] = ACTIONS(9780), + [sym_newline] = ACTIONS(9782), + [anon_sym_COLON] = ACTIONS(9782), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9780), + [aux_sym_frm_property_statement_token1] = ACTIONS(9780), + [anon_sym_DOT] = ACTIONS(9780), + [anon_sym_BANG] = ACTIONS(9782), + [aux_sym__attribute_identifier_token1] = ACTIONS(9780), + [aux_sym_option_statement_token3] = ACTIONS(9780), + [aux_sym_type_declaration_token1] = ACTIONS(9780), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9780), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9780), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9780), + [aux_sym_enum_declaration_token1] = ACTIONS(9780), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9780), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9780), + [aux_sym_declare_function_statement_token1] = ACTIONS(9780), + [aux_sym_preprocessor_const_token1] = ACTIONS(9780), + [aux_sym__property_get_header_token1] = ACTIONS(9780), + [aux_sym_event_declaration_token1] = ACTIONS(9780), + [sym_static_modifier] = ACTIONS(9780), + [sym__dim_keyword] = ACTIONS(9780), + [sym__redim_keyword] = ACTIONS(9780), + [aux_sym_get_accessor_token1] = ACTIONS(9780), + [aux_sym_set_accessor_token1] = ACTIONS(9780), + [aux_sym_const_declaration_token1] = ACTIONS(9780), + [anon_sym_LPAREN] = ACTIONS(9782), + [aux_sym_as_type_clause_token2] = ACTIONS(9780), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9780), + [aux_sym_visibility_token1] = ACTIONS(9780), + [aux_sym_visibility_token2] = ACTIONS(9780), + [aux_sym_elseif_fragment_token1] = ACTIONS(9780), + [aux_sym_else_fragment_token1] = ACTIONS(9780), + [aux_sym_select_statement_token1] = ACTIONS(9780), + [aux_sym__for_header_token1] = ACTIONS(9780), + [aux_sym_do_statement_token1] = ACTIONS(9780), + [aux_sym_do_condition_token1] = ACTIONS(9780), + [aux_sym_with_statement_token1] = ACTIONS(9780), + [aux_sym_exit_statement_token1] = ACTIONS(9780), + [sym_end_statement] = ACTIONS(9782), + [aux_sym_on_goto_statement_token1] = ACTIONS(9780), + [aux_sym_on_goto_statement_token2] = ACTIONS(9780), + [aux_sym_on_error_statement_token2] = ACTIONS(9780), + [sym__ambiguous_redim_statement] = ACTIONS(9782), + [aux_sym_erase_statement_token1] = ACTIONS(9780), + [aux_sym_open_statement_token1] = ACTIONS(9780), + [aux_sym_file_mode_token2] = ACTIONS(9780), + [aux_sym_file_access_token2] = ACTIONS(9780), + [aux_sym_file_lock_token2] = ACTIONS(9780), + [aux_sym_print_statement_token1] = ACTIONS(9780), + [anon_sym_PLUS] = ACTIONS(9782), + [anon_sym_DASH] = ACTIONS(9780), + [anon_sym_QMARK] = ACTIONS(9782), + [aux_sym_close_statement_token1] = ACTIONS(9780), + [aux_sym_put_statement_token1] = ACTIONS(9780), + [aux_sym_unlock_statement_token1] = ACTIONS(9780), + [aux_sym_seek_statement_token1] = ACTIONS(9780), + [sym_reset_statement] = ACTIONS(9780), + [aux_sym_raise_event_statement_token1] = ACTIONS(9780), + [sym_stop_statement] = ACTIONS(9780), + [sym_beep_statement] = ACTIONS(9780), + [aux_sym_unload_statement_token1] = ACTIONS(9780), + [aux_sym_def_type_statement_token1] = ACTIONS(9780), + [aux_sym_def_type_statement_token2] = ACTIONS(9780), + [aux_sym_def_type_statement_token3] = ACTIONS(9780), + [aux_sym_def_type_statement_token4] = ACTIONS(9780), + [aux_sym_def_type_statement_token5] = ACTIONS(9780), + [aux_sym_def_type_statement_token6] = ACTIONS(9780), + [aux_sym_def_type_statement_token7] = ACTIONS(9780), + [aux_sym_def_type_statement_token8] = ACTIONS(9780), + [aux_sym_def_type_statement_token9] = ACTIONS(9780), + [aux_sym_def_type_statement_token10] = ACTIONS(9780), + [aux_sym_def_type_statement_token11] = ACTIONS(9780), + [aux_sym_def_type_statement_token12] = ACTIONS(9780), + [aux_sym_def_type_statement_token13] = ACTIONS(9780), + [aux_sym_def_type_statement_token14] = ACTIONS(9780), + [aux_sym_call_statement_token1] = ACTIONS(9780), + [sym__ambiguous_call_statement] = ACTIONS(9780), + [aux_sym_addressof_expression_token1] = ACTIONS(9780), + [aux_sym_type_of_expression_token1] = ACTIONS(9780), + [aux_sym_unary_expression_token1] = ACTIONS(9780), + [sym_string_literal] = ACTIONS(9782), + [sym_number_literal] = ACTIONS(9782), + [aux_sym_boolean_literal_token1] = ACTIONS(9780), + [aux_sym_boolean_literal_token2] = ACTIONS(9780), + [sym_nothing_literal] = ACTIONS(9780), + [sym_null_literal] = ACTIONS(9780), + [sym_empty_literal] = ACTIONS(9780), + [sym_date_literal] = ACTIONS(9782), + [anon_sym_POUND] = ACTIONS(9780), + }, + [STATE(4368)] = { + [sym_next_variable_list] = STATE(6615), + [sym__assignable_expression] = STATE(5585), + [sym__callable_expression] = STATE(5394), + [sym_call_expression] = STATE(5098), + [sym_member_expression] = STATE(6089), + [sym_qualified_member_expression] = STATE(6126), + [sym_implicit_member_expression] = STATE(6126), + [sym_identifier] = ACTIONS(9923), + [sym_newline] = ACTIONS(6848), + [anon_sym_COLON] = ACTIONS(6848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6850), + [aux_sym_frm_property_statement_token1] = ACTIONS(9925), + [anon_sym_DOT] = ACTIONS(9927), + [anon_sym_BANG] = ACTIONS(9929), + [aux_sym__attribute_identifier_token1] = ACTIONS(6850), + [aux_sym_option_statement_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6850), + [aux_sym_preprocessor_const_token1] = ACTIONS(6850), + [sym_static_modifier] = ACTIONS(6850), + [sym__dim_keyword] = ACTIONS(6850), + [sym__redim_keyword] = ACTIONS(6850), + [aux_sym_get_accessor_token1] = ACTIONS(6850), + [aux_sym_set_accessor_token1] = ACTIONS(6850), + [aux_sym_const_declaration_token1] = ACTIONS(6850), + [anon_sym_LPAREN] = ACTIONS(6848), + [aux_sym_as_type_clause_token2] = ACTIONS(6850), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9931), + [aux_sym_visibility_token1] = ACTIONS(6850), + [aux_sym_visibility_token2] = ACTIONS(6850), + [aux_sym_elseif_fragment_token1] = ACTIONS(6850), + [aux_sym_else_fragment_token1] = ACTIONS(6850), + [aux_sym_select_statement_token1] = ACTIONS(6850), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6850), + [aux_sym__for_header_token1] = ACTIONS(6850), + [aux_sym_do_statement_token1] = ACTIONS(6850), + [aux_sym_do_condition_token1] = ACTIONS(6850), + [aux_sym_with_statement_token1] = ACTIONS(6850), + [aux_sym_exit_statement_token1] = ACTIONS(6850), + [sym_end_statement] = ACTIONS(6848), + [aux_sym_on_goto_statement_token1] = ACTIONS(6850), + [aux_sym_on_goto_statement_token2] = ACTIONS(6850), + [aux_sym_on_error_statement_token2] = ACTIONS(6850), + [sym__ambiguous_redim_statement] = ACTIONS(6848), + [aux_sym_erase_statement_token1] = ACTIONS(6850), + [aux_sym_open_statement_token1] = ACTIONS(6850), + [aux_sym_file_mode_token2] = ACTIONS(6850), + [aux_sym_file_access_token2] = ACTIONS(6850), + [aux_sym_file_lock_token2] = ACTIONS(6850), + [aux_sym_print_statement_token1] = ACTIONS(6850), + [anon_sym_PLUS] = ACTIONS(6848), + [anon_sym_DASH] = ACTIONS(6850), + [anon_sym_QMARK] = ACTIONS(6848), + [aux_sym_close_statement_token1] = ACTIONS(6850), + [aux_sym_put_statement_token1] = ACTIONS(6850), + [aux_sym_unlock_statement_token1] = ACTIONS(6850), + [aux_sym_seek_statement_token1] = ACTIONS(6850), + [sym_reset_statement] = ACTIONS(6850), + [aux_sym_raise_event_statement_token1] = ACTIONS(6850), + [sym_stop_statement] = ACTIONS(6850), + [sym_beep_statement] = ACTIONS(6850), + [aux_sym_unload_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token2] = ACTIONS(6850), + [aux_sym_def_type_statement_token3] = ACTIONS(6850), + [aux_sym_def_type_statement_token4] = ACTIONS(6850), + [aux_sym_def_type_statement_token5] = ACTIONS(6850), + [aux_sym_def_type_statement_token6] = ACTIONS(6850), + [aux_sym_def_type_statement_token7] = ACTIONS(6850), + [aux_sym_def_type_statement_token8] = ACTIONS(6850), + [aux_sym_def_type_statement_token9] = ACTIONS(6850), + [aux_sym_def_type_statement_token10] = ACTIONS(6850), + [aux_sym_def_type_statement_token11] = ACTIONS(6850), + [aux_sym_def_type_statement_token12] = ACTIONS(6850), + [aux_sym_def_type_statement_token13] = ACTIONS(6850), + [aux_sym_def_type_statement_token14] = ACTIONS(6850), + [aux_sym_call_statement_token1] = ACTIONS(6850), + [sym__ambiguous_call_statement] = ACTIONS(6850), + [aux_sym_addressof_expression_token1] = ACTIONS(6850), + [aux_sym_type_of_expression_token1] = ACTIONS(6850), + [aux_sym_unary_expression_token1] = ACTIONS(6850), + [sym_string_literal] = ACTIONS(6848), + [sym_number_literal] = ACTIONS(6848), + [aux_sym_boolean_literal_token1] = ACTIONS(6850), + [aux_sym_boolean_literal_token2] = ACTIONS(6850), + [sym_nothing_literal] = ACTIONS(6850), + [sym_null_literal] = ACTIONS(6850), + [sym_empty_literal] = ACTIONS(6850), + [sym_date_literal] = ACTIONS(6848), + [anon_sym_POUND] = ACTIONS(6850), + }, + [STATE(4369)] = { + [sym_next_variable_list] = STATE(6616), + [sym__assignable_expression] = STATE(5585), + [sym__callable_expression] = STATE(5394), + [sym_call_expression] = STATE(5098), + [sym_member_expression] = STATE(6089), + [sym_qualified_member_expression] = STATE(6126), + [sym_implicit_member_expression] = STATE(6126), + [sym_identifier] = ACTIONS(9923), + [sym_newline] = ACTIONS(6822), + [anon_sym_COLON] = ACTIONS(6822), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6824), + [aux_sym_frm_property_statement_token1] = ACTIONS(9925), + [anon_sym_DOT] = ACTIONS(9927), + [anon_sym_BANG] = ACTIONS(9929), + [aux_sym__attribute_identifier_token1] = ACTIONS(6824), + [aux_sym_option_statement_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6824), + [aux_sym_preprocessor_const_token1] = ACTIONS(6824), + [sym_static_modifier] = ACTIONS(6824), + [sym__dim_keyword] = ACTIONS(6824), + [sym__redim_keyword] = ACTIONS(6824), + [aux_sym_get_accessor_token1] = ACTIONS(6824), + [aux_sym_set_accessor_token1] = ACTIONS(6824), + [aux_sym_const_declaration_token1] = ACTIONS(6824), + [anon_sym_LPAREN] = ACTIONS(6822), + [aux_sym_as_type_clause_token2] = ACTIONS(6824), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9931), + [aux_sym_visibility_token1] = ACTIONS(6824), + [aux_sym_visibility_token2] = ACTIONS(6824), + [aux_sym_elseif_fragment_token1] = ACTIONS(6824), + [aux_sym_else_fragment_token1] = ACTIONS(6824), + [aux_sym_select_statement_token1] = ACTIONS(6824), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6824), + [aux_sym__for_header_token1] = ACTIONS(6824), + [aux_sym_do_statement_token1] = ACTIONS(6824), + [aux_sym_do_condition_token1] = ACTIONS(6824), + [aux_sym_with_statement_token1] = ACTIONS(6824), + [aux_sym_exit_statement_token1] = ACTIONS(6824), + [sym_end_statement] = ACTIONS(6822), + [aux_sym_on_goto_statement_token1] = ACTIONS(6824), + [aux_sym_on_goto_statement_token2] = ACTIONS(6824), + [aux_sym_on_error_statement_token2] = ACTIONS(6824), + [sym__ambiguous_redim_statement] = ACTIONS(6822), + [aux_sym_erase_statement_token1] = ACTIONS(6824), + [aux_sym_open_statement_token1] = ACTIONS(6824), + [aux_sym_file_mode_token2] = ACTIONS(6824), + [aux_sym_file_access_token2] = ACTIONS(6824), + [aux_sym_file_lock_token2] = ACTIONS(6824), + [aux_sym_print_statement_token1] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6822), + [aux_sym_close_statement_token1] = ACTIONS(6824), + [aux_sym_put_statement_token1] = ACTIONS(6824), + [aux_sym_unlock_statement_token1] = ACTIONS(6824), + [aux_sym_seek_statement_token1] = ACTIONS(6824), + [sym_reset_statement] = ACTIONS(6824), + [aux_sym_raise_event_statement_token1] = ACTIONS(6824), + [sym_stop_statement] = ACTIONS(6824), + [sym_beep_statement] = ACTIONS(6824), + [aux_sym_unload_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token2] = ACTIONS(6824), + [aux_sym_def_type_statement_token3] = ACTIONS(6824), + [aux_sym_def_type_statement_token4] = ACTIONS(6824), + [aux_sym_def_type_statement_token5] = ACTIONS(6824), + [aux_sym_def_type_statement_token6] = ACTIONS(6824), + [aux_sym_def_type_statement_token7] = ACTIONS(6824), + [aux_sym_def_type_statement_token8] = ACTIONS(6824), + [aux_sym_def_type_statement_token9] = ACTIONS(6824), + [aux_sym_def_type_statement_token10] = ACTIONS(6824), + [aux_sym_def_type_statement_token11] = ACTIONS(6824), + [aux_sym_def_type_statement_token12] = ACTIONS(6824), + [aux_sym_def_type_statement_token13] = ACTIONS(6824), + [aux_sym_def_type_statement_token14] = ACTIONS(6824), + [aux_sym_call_statement_token1] = ACTIONS(6824), + [sym__ambiguous_call_statement] = ACTIONS(6824), + [aux_sym_addressof_expression_token1] = ACTIONS(6824), + [aux_sym_type_of_expression_token1] = ACTIONS(6824), + [aux_sym_unary_expression_token1] = ACTIONS(6824), + [sym_string_literal] = ACTIONS(6822), + [sym_number_literal] = ACTIONS(6822), + [aux_sym_boolean_literal_token1] = ACTIONS(6824), + [aux_sym_boolean_literal_token2] = ACTIONS(6824), + [sym_nothing_literal] = ACTIONS(6824), + [sym_null_literal] = ACTIONS(6824), + [sym_empty_literal] = ACTIONS(6824), + [sym_date_literal] = ACTIONS(6822), + [anon_sym_POUND] = ACTIONS(6824), + }, + [STATE(4370)] = { + [sym_identifier] = ACTIONS(9788), + [sym_newline] = ACTIONS(9790), + [anon_sym_COLON] = ACTIONS(9790), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9788), + [aux_sym_frm_property_statement_token1] = ACTIONS(9788), + [anon_sym_DOT] = ACTIONS(9788), + [anon_sym_BANG] = ACTIONS(9790), + [aux_sym__attribute_identifier_token1] = ACTIONS(9788), + [aux_sym_option_statement_token3] = ACTIONS(9788), + [aux_sym_type_declaration_token1] = ACTIONS(9788), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9788), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9788), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9788), + [aux_sym_enum_declaration_token1] = ACTIONS(9788), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9788), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9788), + [aux_sym_declare_function_statement_token1] = ACTIONS(9788), + [aux_sym_preprocessor_const_token1] = ACTIONS(9788), + [aux_sym__property_get_header_token1] = ACTIONS(9788), + [aux_sym_event_declaration_token1] = ACTIONS(9788), + [sym_static_modifier] = ACTIONS(9788), + [sym__dim_keyword] = ACTIONS(9788), + [sym__redim_keyword] = ACTIONS(9788), + [aux_sym_get_accessor_token1] = ACTIONS(9788), + [aux_sym_set_accessor_token1] = ACTIONS(9788), + [aux_sym_const_declaration_token1] = ACTIONS(9788), + [anon_sym_LPAREN] = ACTIONS(9790), + [aux_sym_as_type_clause_token2] = ACTIONS(9788), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9788), + [aux_sym_visibility_token1] = ACTIONS(9788), + [aux_sym_visibility_token2] = ACTIONS(9788), + [aux_sym_elseif_fragment_token1] = ACTIONS(9788), + [aux_sym_else_fragment_token1] = ACTIONS(9788), + [aux_sym_select_statement_token1] = ACTIONS(9788), + [aux_sym__for_header_token1] = ACTIONS(9788), + [aux_sym_do_statement_token1] = ACTIONS(9788), + [aux_sym_do_condition_token1] = ACTIONS(9788), + [aux_sym_with_statement_token1] = ACTIONS(9788), + [aux_sym_exit_statement_token1] = ACTIONS(9788), + [sym_end_statement] = ACTIONS(9790), + [aux_sym_on_goto_statement_token1] = ACTIONS(9788), + [aux_sym_on_goto_statement_token2] = ACTIONS(9788), + [aux_sym_on_error_statement_token2] = ACTIONS(9788), + [sym__ambiguous_redim_statement] = ACTIONS(9790), + [aux_sym_erase_statement_token1] = ACTIONS(9788), + [aux_sym_open_statement_token1] = ACTIONS(9788), + [aux_sym_file_mode_token2] = ACTIONS(9788), + [aux_sym_file_access_token2] = ACTIONS(9788), + [aux_sym_file_lock_token2] = ACTIONS(9788), + [aux_sym_print_statement_token1] = ACTIONS(9788), + [anon_sym_PLUS] = ACTIONS(9790), + [anon_sym_DASH] = ACTIONS(9788), + [anon_sym_QMARK] = ACTIONS(9790), + [aux_sym_close_statement_token1] = ACTIONS(9788), + [aux_sym_put_statement_token1] = ACTIONS(9788), + [aux_sym_unlock_statement_token1] = ACTIONS(9788), + [aux_sym_seek_statement_token1] = ACTIONS(9788), + [sym_reset_statement] = ACTIONS(9788), + [aux_sym_raise_event_statement_token1] = ACTIONS(9788), + [sym_stop_statement] = ACTIONS(9788), + [sym_beep_statement] = ACTIONS(9788), + [aux_sym_unload_statement_token1] = ACTIONS(9788), + [aux_sym_def_type_statement_token1] = ACTIONS(9788), + [aux_sym_def_type_statement_token2] = ACTIONS(9788), + [aux_sym_def_type_statement_token3] = ACTIONS(9788), + [aux_sym_def_type_statement_token4] = ACTIONS(9788), + [aux_sym_def_type_statement_token5] = ACTIONS(9788), + [aux_sym_def_type_statement_token6] = ACTIONS(9788), + [aux_sym_def_type_statement_token7] = ACTIONS(9788), + [aux_sym_def_type_statement_token8] = ACTIONS(9788), + [aux_sym_def_type_statement_token9] = ACTIONS(9788), + [aux_sym_def_type_statement_token10] = ACTIONS(9788), + [aux_sym_def_type_statement_token11] = ACTIONS(9788), + [aux_sym_def_type_statement_token12] = ACTIONS(9788), + [aux_sym_def_type_statement_token13] = ACTIONS(9788), + [aux_sym_def_type_statement_token14] = ACTIONS(9788), + [aux_sym_call_statement_token1] = ACTIONS(9788), + [sym__ambiguous_call_statement] = ACTIONS(9788), + [aux_sym_addressof_expression_token1] = ACTIONS(9788), + [aux_sym_type_of_expression_token1] = ACTIONS(9788), + [aux_sym_unary_expression_token1] = ACTIONS(9788), + [sym_string_literal] = ACTIONS(9790), + [sym_number_literal] = ACTIONS(9790), + [aux_sym_boolean_literal_token1] = ACTIONS(9788), + [aux_sym_boolean_literal_token2] = ACTIONS(9788), + [sym_nothing_literal] = ACTIONS(9788), + [sym_null_literal] = ACTIONS(9788), + [sym_empty_literal] = ACTIONS(9788), + [sym_date_literal] = ACTIONS(9790), + [anon_sym_POUND] = ACTIONS(9788), + }, + [STATE(4371)] = { + [sym_identifier] = ACTIONS(8733), + [sym_newline] = ACTIONS(8735), + [anon_sym_COLON] = ACTIONS(8735), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8733), + [aux_sym_frm_property_statement_token1] = ACTIONS(8733), + [anon_sym_DOT] = ACTIONS(8733), + [anon_sym_BANG] = ACTIONS(8735), + [aux_sym__attribute_identifier_token1] = ACTIONS(8733), + [aux_sym_option_statement_token3] = ACTIONS(8733), + [aux_sym_type_declaration_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8733), + [aux_sym_enum_declaration_token1] = ACTIONS(8733), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8733), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8733), + [aux_sym_declare_function_statement_token1] = ACTIONS(8733), + [aux_sym_preprocessor_const_token1] = ACTIONS(8733), + [aux_sym__property_get_header_token1] = ACTIONS(8733), + [aux_sym_event_declaration_token1] = ACTIONS(8733), + [sym_static_modifier] = ACTIONS(8733), + [sym__dim_keyword] = ACTIONS(8733), + [sym__redim_keyword] = ACTIONS(8733), + [aux_sym_get_accessor_token1] = ACTIONS(8733), + [aux_sym_set_accessor_token1] = ACTIONS(8733), + [aux_sym_const_declaration_token1] = ACTIONS(8733), + [anon_sym_LPAREN] = ACTIONS(8735), + [aux_sym_as_type_clause_token2] = ACTIONS(8733), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8733), + [aux_sym_visibility_token1] = ACTIONS(8733), + [aux_sym_visibility_token2] = ACTIONS(8733), + [aux_sym_elseif_fragment_token1] = ACTIONS(8733), + [aux_sym_else_fragment_token1] = ACTIONS(9881), + [aux_sym_select_statement_token1] = ACTIONS(8733), + [aux_sym__for_header_token1] = ACTIONS(8733), + [aux_sym_do_statement_token1] = ACTIONS(8733), + [aux_sym_do_condition_token1] = ACTIONS(8733), + [aux_sym_with_statement_token1] = ACTIONS(8733), + [aux_sym_exit_statement_token1] = ACTIONS(8733), + [sym_end_statement] = ACTIONS(8735), + [aux_sym_on_goto_statement_token1] = ACTIONS(8733), + [aux_sym_on_goto_statement_token2] = ACTIONS(8733), + [aux_sym_on_error_statement_token2] = ACTIONS(8733), + [sym__ambiguous_redim_statement] = ACTIONS(8735), + [aux_sym_erase_statement_token1] = ACTIONS(8733), + [aux_sym_open_statement_token1] = ACTIONS(8733), + [aux_sym_file_mode_token2] = ACTIONS(8733), + [aux_sym_file_access_token2] = ACTIONS(8733), + [aux_sym_file_lock_token2] = ACTIONS(8733), + [aux_sym_print_statement_token1] = ACTIONS(8733), + [anon_sym_PLUS] = ACTIONS(8735), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_QMARK] = ACTIONS(8735), + [aux_sym_close_statement_token1] = ACTIONS(8733), + [aux_sym_put_statement_token1] = ACTIONS(8733), + [aux_sym_unlock_statement_token1] = ACTIONS(8733), + [aux_sym_seek_statement_token1] = ACTIONS(8733), + [sym_reset_statement] = ACTIONS(8733), + [aux_sym_raise_event_statement_token1] = ACTIONS(8733), + [sym_stop_statement] = ACTIONS(8733), + [sym_beep_statement] = ACTIONS(8733), + [aux_sym_unload_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token2] = ACTIONS(8733), + [aux_sym_def_type_statement_token3] = ACTIONS(8733), + [aux_sym_def_type_statement_token4] = ACTIONS(8733), + [aux_sym_def_type_statement_token5] = ACTIONS(8733), + [aux_sym_def_type_statement_token6] = ACTIONS(8733), + [aux_sym_def_type_statement_token7] = ACTIONS(8733), + [aux_sym_def_type_statement_token8] = ACTIONS(8733), + [aux_sym_def_type_statement_token9] = ACTIONS(8733), + [aux_sym_def_type_statement_token10] = ACTIONS(8733), + [aux_sym_def_type_statement_token11] = ACTIONS(8733), + [aux_sym_def_type_statement_token12] = ACTIONS(8733), + [aux_sym_def_type_statement_token13] = ACTIONS(8733), + [aux_sym_def_type_statement_token14] = ACTIONS(8733), + [aux_sym_call_statement_token1] = ACTIONS(8733), + [sym__ambiguous_call_statement] = ACTIONS(8733), + [aux_sym_addressof_expression_token1] = ACTIONS(8733), + [aux_sym_type_of_expression_token1] = ACTIONS(8733), + [aux_sym_unary_expression_token1] = ACTIONS(8733), + [sym_string_literal] = ACTIONS(8735), + [sym_number_literal] = ACTIONS(8735), + [aux_sym_boolean_literal_token1] = ACTIONS(8733), + [aux_sym_boolean_literal_token2] = ACTIONS(8733), + [sym_nothing_literal] = ACTIONS(8733), + [sym_null_literal] = ACTIONS(8733), + [sym_empty_literal] = ACTIONS(8733), + [sym_date_literal] = ACTIONS(8735), + [anon_sym_POUND] = ACTIONS(8733), + }, + [STATE(4372)] = { + [sym_next_variable_list] = STATE(6562), + [sym__assignable_expression] = STATE(5463), + [sym__callable_expression] = STATE(5440), + [sym_call_expression] = STATE(5455), + [sym_member_expression] = STATE(6120), + [sym_qualified_member_expression] = STATE(5888), + [sym_implicit_member_expression] = STATE(5888), + [sym_identifier] = ACTIONS(9933), + [sym_newline] = ACTIONS(6842), + [anon_sym_COLON] = ACTIONS(6842), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6844), + [aux_sym_frm_property_statement_token1] = ACTIONS(9935), + [anon_sym_DOT] = ACTIONS(9937), + [anon_sym_BANG] = ACTIONS(9939), + [aux_sym__attribute_identifier_token1] = ACTIONS(6844), + [aux_sym_option_statement_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6844), + [aux_sym_preprocessor_const_token1] = ACTIONS(6844), + [sym_static_modifier] = ACTIONS(6844), + [sym__dim_keyword] = ACTIONS(6844), + [sym__redim_keyword] = ACTIONS(6844), + [aux_sym_get_accessor_token1] = ACTIONS(6844), + [aux_sym_set_accessor_token1] = ACTIONS(6844), + [aux_sym_const_declaration_token1] = ACTIONS(6844), + [anon_sym_LPAREN] = ACTIONS(6842), + [aux_sym_as_type_clause_token2] = ACTIONS(6844), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9941), + [aux_sym_visibility_token1] = ACTIONS(6844), + [aux_sym_visibility_token2] = ACTIONS(6844), + [aux_sym_elseif_fragment_token1] = ACTIONS(6844), + [aux_sym_else_fragment_token1] = ACTIONS(6844), + [aux_sym_select_statement_token1] = ACTIONS(6844), + [aux_sym__for_header_token1] = ACTIONS(6844), + [aux_sym_do_statement_token1] = ACTIONS(6844), + [aux_sym_do_condition_token1] = ACTIONS(6844), + [aux_sym_with_statement_token1] = ACTIONS(6844), + [aux_sym_exit_statement_token1] = ACTIONS(6844), + [sym_end_statement] = ACTIONS(6842), + [aux_sym_on_goto_statement_token1] = ACTIONS(6844), + [aux_sym_on_goto_statement_token2] = ACTIONS(6844), + [aux_sym_on_error_statement_token2] = ACTIONS(6844), + [sym__ambiguous_redim_statement] = ACTIONS(6842), + [aux_sym_erase_statement_token1] = ACTIONS(6844), + [aux_sym_open_statement_token1] = ACTIONS(6844), + [aux_sym_file_mode_token2] = ACTIONS(6844), + [aux_sym_file_access_token2] = ACTIONS(6844), + [aux_sym_file_lock_token2] = ACTIONS(6844), + [aux_sym_print_statement_token1] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6842), + [aux_sym_close_statement_token1] = ACTIONS(6844), + [aux_sym_put_statement_token1] = ACTIONS(6844), + [aux_sym_unlock_statement_token1] = ACTIONS(6844), + [aux_sym_seek_statement_token1] = ACTIONS(6844), + [sym_reset_statement] = ACTIONS(6844), + [aux_sym_raise_event_statement_token1] = ACTIONS(6844), + [sym_stop_statement] = ACTIONS(6844), + [sym_beep_statement] = ACTIONS(6844), + [aux_sym_unload_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token2] = ACTIONS(6844), + [aux_sym_def_type_statement_token3] = ACTIONS(6844), + [aux_sym_def_type_statement_token4] = ACTIONS(6844), + [aux_sym_def_type_statement_token5] = ACTIONS(6844), + [aux_sym_def_type_statement_token6] = ACTIONS(6844), + [aux_sym_def_type_statement_token7] = ACTIONS(6844), + [aux_sym_def_type_statement_token8] = ACTIONS(6844), + [aux_sym_def_type_statement_token9] = ACTIONS(6844), + [aux_sym_def_type_statement_token10] = ACTIONS(6844), + [aux_sym_def_type_statement_token11] = ACTIONS(6844), + [aux_sym_def_type_statement_token12] = ACTIONS(6844), + [aux_sym_def_type_statement_token13] = ACTIONS(6844), + [aux_sym_def_type_statement_token14] = ACTIONS(6844), + [aux_sym_call_statement_token1] = ACTIONS(6844), + [sym__ambiguous_call_statement] = ACTIONS(6844), + [aux_sym_addressof_expression_token1] = ACTIONS(6844), + [aux_sym_type_of_expression_token1] = ACTIONS(6844), + [aux_sym_unary_expression_token1] = ACTIONS(6844), + [sym_string_literal] = ACTIONS(6842), + [sym_number_literal] = ACTIONS(6842), + [aux_sym_boolean_literal_token1] = ACTIONS(6844), + [aux_sym_boolean_literal_token2] = ACTIONS(6844), + [sym_nothing_literal] = ACTIONS(6844), + [sym_null_literal] = ACTIONS(6844), + [sym_empty_literal] = ACTIONS(6844), + [sym_date_literal] = ACTIONS(6842), + [anon_sym_POUND] = ACTIONS(6844), + }, + [STATE(4373)] = { + [sym_next_variable_list] = STATE(6572), + [sym__assignable_expression] = STATE(5463), + [sym__callable_expression] = STATE(5440), + [sym_call_expression] = STATE(5455), + [sym_member_expression] = STATE(6120), + [sym_qualified_member_expression] = STATE(5888), + [sym_implicit_member_expression] = STATE(5888), + [sym_identifier] = ACTIONS(9933), + [sym_newline] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(6856), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6858), + [aux_sym_frm_property_statement_token1] = ACTIONS(9935), + [anon_sym_DOT] = ACTIONS(9937), + [anon_sym_BANG] = ACTIONS(9939), + [aux_sym__attribute_identifier_token1] = ACTIONS(6858), + [aux_sym_option_statement_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6858), + [aux_sym_preprocessor_const_token1] = ACTIONS(6858), + [sym_static_modifier] = ACTIONS(6858), + [sym__dim_keyword] = ACTIONS(6858), + [sym__redim_keyword] = ACTIONS(6858), + [aux_sym_get_accessor_token1] = ACTIONS(6858), + [aux_sym_set_accessor_token1] = ACTIONS(6858), + [aux_sym_const_declaration_token1] = ACTIONS(6858), + [anon_sym_LPAREN] = ACTIONS(6856), + [aux_sym_as_type_clause_token2] = ACTIONS(6858), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9941), + [aux_sym_visibility_token1] = ACTIONS(6858), + [aux_sym_visibility_token2] = ACTIONS(6858), + [aux_sym_elseif_fragment_token1] = ACTIONS(6858), + [aux_sym_else_fragment_token1] = ACTIONS(6858), + [aux_sym_select_statement_token1] = ACTIONS(6858), + [aux_sym__for_header_token1] = ACTIONS(6858), + [aux_sym_do_statement_token1] = ACTIONS(6858), + [aux_sym_do_condition_token1] = ACTIONS(6858), + [aux_sym_with_statement_token1] = ACTIONS(6858), + [aux_sym_exit_statement_token1] = ACTIONS(6858), + [sym_end_statement] = ACTIONS(6856), + [aux_sym_on_goto_statement_token1] = ACTIONS(6858), + [aux_sym_on_goto_statement_token2] = ACTIONS(6858), + [aux_sym_on_error_statement_token2] = ACTIONS(6858), + [sym__ambiguous_redim_statement] = ACTIONS(6856), + [aux_sym_erase_statement_token1] = ACTIONS(6858), + [aux_sym_open_statement_token1] = ACTIONS(6858), + [aux_sym_file_mode_token2] = ACTIONS(6858), + [aux_sym_file_access_token2] = ACTIONS(6858), + [aux_sym_file_lock_token2] = ACTIONS(6858), + [aux_sym_print_statement_token1] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6856), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_QMARK] = ACTIONS(6856), + [aux_sym_close_statement_token1] = ACTIONS(6858), + [aux_sym_put_statement_token1] = ACTIONS(6858), + [aux_sym_unlock_statement_token1] = ACTIONS(6858), + [aux_sym_seek_statement_token1] = ACTIONS(6858), + [sym_reset_statement] = ACTIONS(6858), + [aux_sym_raise_event_statement_token1] = ACTIONS(6858), + [sym_stop_statement] = ACTIONS(6858), + [sym_beep_statement] = ACTIONS(6858), + [aux_sym_unload_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token2] = ACTIONS(6858), + [aux_sym_def_type_statement_token3] = ACTIONS(6858), + [aux_sym_def_type_statement_token4] = ACTIONS(6858), + [aux_sym_def_type_statement_token5] = ACTIONS(6858), + [aux_sym_def_type_statement_token6] = ACTIONS(6858), + [aux_sym_def_type_statement_token7] = ACTIONS(6858), + [aux_sym_def_type_statement_token8] = ACTIONS(6858), + [aux_sym_def_type_statement_token9] = ACTIONS(6858), + [aux_sym_def_type_statement_token10] = ACTIONS(6858), + [aux_sym_def_type_statement_token11] = ACTIONS(6858), + [aux_sym_def_type_statement_token12] = ACTIONS(6858), + [aux_sym_def_type_statement_token13] = ACTIONS(6858), + [aux_sym_def_type_statement_token14] = ACTIONS(6858), + [aux_sym_call_statement_token1] = ACTIONS(6858), + [sym__ambiguous_call_statement] = ACTIONS(6858), + [aux_sym_addressof_expression_token1] = ACTIONS(6858), + [aux_sym_type_of_expression_token1] = ACTIONS(6858), + [aux_sym_unary_expression_token1] = ACTIONS(6858), + [sym_string_literal] = ACTIONS(6856), + [sym_number_literal] = ACTIONS(6856), + [aux_sym_boolean_literal_token1] = ACTIONS(6858), + [aux_sym_boolean_literal_token2] = ACTIONS(6858), + [sym_nothing_literal] = ACTIONS(6858), + [sym_null_literal] = ACTIONS(6858), + [sym_empty_literal] = ACTIONS(6858), + [sym_date_literal] = ACTIONS(6856), + [anon_sym_POUND] = ACTIONS(6858), + }, + [STATE(4374)] = { + [sym_identifier] = ACTIONS(6629), + [sym_newline] = ACTIONS(6631), + [anon_sym_COLON] = ACTIONS(6631), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6629), + [aux_sym_frm_property_statement_token1] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6631), + [aux_sym__attribute_identifier_token1] = ACTIONS(6629), + [aux_sym_option_statement_token3] = ACTIONS(6629), + [aux_sym_type_declaration_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6629), + [aux_sym_enum_declaration_token1] = ACTIONS(6629), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6629), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6629), + [aux_sym_declare_function_statement_token1] = ACTIONS(6629), + [aux_sym_preprocessor_const_token1] = ACTIONS(6629), + [aux_sym__property_get_header_token1] = ACTIONS(6629), + [aux_sym_event_declaration_token1] = ACTIONS(6629), + [sym_static_modifier] = ACTIONS(6629), + [sym__dim_keyword] = ACTIONS(6629), + [sym__redim_keyword] = ACTIONS(6629), + [aux_sym_get_accessor_token1] = ACTIONS(6629), + [aux_sym_set_accessor_token1] = ACTIONS(6629), + [aux_sym_const_declaration_token1] = ACTIONS(6629), + [anon_sym_LPAREN] = ACTIONS(6631), + [aux_sym_as_type_clause_token2] = ACTIONS(6629), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6629), + [aux_sym_visibility_token1] = ACTIONS(6629), + [aux_sym_visibility_token2] = ACTIONS(6629), + [aux_sym_elseif_fragment_token1] = ACTIONS(6629), + [aux_sym_else_fragment_token1] = ACTIONS(6629), + [aux_sym_select_statement_token1] = ACTIONS(6629), + [aux_sym__for_header_token1] = ACTIONS(6629), + [aux_sym_do_statement_token1] = ACTIONS(6629), + [aux_sym_do_condition_token1] = ACTIONS(6629), + [aux_sym_with_statement_token1] = ACTIONS(6629), + [aux_sym_exit_statement_token1] = ACTIONS(6629), + [sym_end_statement] = ACTIONS(6631), + [aux_sym_on_goto_statement_token1] = ACTIONS(6629), + [aux_sym_on_goto_statement_token2] = ACTIONS(6629), + [aux_sym_on_error_statement_token2] = ACTIONS(6629), + [sym__ambiguous_redim_statement] = ACTIONS(6631), + [aux_sym_erase_statement_token1] = ACTIONS(6629), + [aux_sym_open_statement_token1] = ACTIONS(6629), + [aux_sym_file_mode_token2] = ACTIONS(6629), + [aux_sym_file_access_token2] = ACTIONS(6629), + [aux_sym_file_lock_token2] = ACTIONS(6629), + [aux_sym_print_statement_token1] = ACTIONS(6629), + [anon_sym_PLUS] = ACTIONS(6631), + [anon_sym_DASH] = ACTIONS(6629), + [anon_sym_QMARK] = ACTIONS(6631), + [aux_sym_close_statement_token1] = ACTIONS(6629), + [aux_sym_put_statement_token1] = ACTIONS(6629), + [aux_sym_unlock_statement_token1] = ACTIONS(6629), + [aux_sym_seek_statement_token1] = ACTIONS(6629), + [sym_reset_statement] = ACTIONS(6629), + [aux_sym_raise_event_statement_token1] = ACTIONS(6629), + [sym_stop_statement] = ACTIONS(6629), + [sym_beep_statement] = ACTIONS(6629), + [aux_sym_unload_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token2] = ACTIONS(6629), + [aux_sym_def_type_statement_token3] = ACTIONS(6629), + [aux_sym_def_type_statement_token4] = ACTIONS(6629), + [aux_sym_def_type_statement_token5] = ACTIONS(6629), + [aux_sym_def_type_statement_token6] = ACTIONS(6629), + [aux_sym_def_type_statement_token7] = ACTIONS(6629), + [aux_sym_def_type_statement_token8] = ACTIONS(6629), + [aux_sym_def_type_statement_token9] = ACTIONS(6629), + [aux_sym_def_type_statement_token10] = ACTIONS(6629), + [aux_sym_def_type_statement_token11] = ACTIONS(6629), + [aux_sym_def_type_statement_token12] = ACTIONS(6629), + [aux_sym_def_type_statement_token13] = ACTIONS(6629), + [aux_sym_def_type_statement_token14] = ACTIONS(6629), + [aux_sym_call_statement_token1] = ACTIONS(6629), + [sym__ambiguous_call_statement] = ACTIONS(6629), + [aux_sym_addressof_expression_token1] = ACTIONS(6629), + [aux_sym_type_of_expression_token1] = ACTIONS(6629), + [aux_sym_unary_expression_token1] = ACTIONS(6629), + [sym_string_literal] = ACTIONS(6631), + [sym_number_literal] = ACTIONS(6631), + [aux_sym_boolean_literal_token1] = ACTIONS(6629), + [aux_sym_boolean_literal_token2] = ACTIONS(6629), + [sym_nothing_literal] = ACTIONS(6629), + [sym_null_literal] = ACTIONS(6629), + [sym_empty_literal] = ACTIONS(6629), + [sym_date_literal] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6629), + }, + [STATE(4375)] = { + [sym_identifier] = ACTIONS(8501), + [sym_newline] = ACTIONS(8503), + [anon_sym_COLON] = ACTIONS(8503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8501), + [aux_sym_frm_property_statement_token1] = ACTIONS(8501), + [anon_sym_DOT] = ACTIONS(8501), + [anon_sym_BANG] = ACTIONS(8503), + [aux_sym__attribute_identifier_token1] = ACTIONS(8501), + [aux_sym_option_statement_token3] = ACTIONS(8501), + [aux_sym_type_declaration_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8501), + [aux_sym_enum_declaration_token1] = ACTIONS(8501), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8501), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8501), + [aux_sym_declare_function_statement_token1] = ACTIONS(8501), + [aux_sym_preprocessor_const_token1] = ACTIONS(8501), + [aux_sym__property_get_header_token1] = ACTIONS(8501), + [aux_sym_event_declaration_token1] = ACTIONS(8501), + [sym_static_modifier] = ACTIONS(8501), + [sym__dim_keyword] = ACTIONS(8501), + [sym__redim_keyword] = ACTIONS(8501), + [aux_sym_get_accessor_token1] = ACTIONS(8501), + [aux_sym_set_accessor_token1] = ACTIONS(8501), + [aux_sym_const_declaration_token1] = ACTIONS(8501), + [anon_sym_LPAREN] = ACTIONS(8503), + [aux_sym_as_type_clause_token2] = ACTIONS(8501), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8501), + [aux_sym_visibility_token1] = ACTIONS(8501), + [aux_sym_visibility_token2] = ACTIONS(8501), + [aux_sym_elseif_fragment_token1] = ACTIONS(8501), + [aux_sym_else_fragment_token1] = ACTIONS(8501), + [aux_sym_select_statement_token1] = ACTIONS(8501), + [aux_sym__for_header_token1] = ACTIONS(8501), + [aux_sym_do_statement_token1] = ACTIONS(8501), + [aux_sym_do_condition_token1] = ACTIONS(8501), + [aux_sym_with_statement_token1] = ACTIONS(8501), + [aux_sym_exit_statement_token1] = ACTIONS(8501), + [sym_end_statement] = ACTIONS(8503), + [aux_sym_on_goto_statement_token1] = ACTIONS(8501), + [aux_sym_on_goto_statement_token2] = ACTIONS(8501), + [aux_sym_on_error_statement_token2] = ACTIONS(8501), + [sym__ambiguous_redim_statement] = ACTIONS(8503), + [aux_sym_erase_statement_token1] = ACTIONS(8501), + [aux_sym_open_statement_token1] = ACTIONS(8501), + [aux_sym_file_mode_token2] = ACTIONS(8501), + [aux_sym_file_access_token2] = ACTIONS(8501), + [aux_sym_file_lock_token2] = ACTIONS(8501), + [aux_sym_print_statement_token1] = ACTIONS(8501), + [anon_sym_PLUS] = ACTIONS(8503), + [anon_sym_DASH] = ACTIONS(8501), + [anon_sym_QMARK] = ACTIONS(8503), + [aux_sym_close_statement_token1] = ACTIONS(8501), + [aux_sym_put_statement_token1] = ACTIONS(8501), + [aux_sym_unlock_statement_token1] = ACTIONS(8501), + [aux_sym_seek_statement_token1] = ACTIONS(8501), + [sym_reset_statement] = ACTIONS(8501), + [aux_sym_raise_event_statement_token1] = ACTIONS(8501), + [sym_stop_statement] = ACTIONS(8501), + [sym_beep_statement] = ACTIONS(8501), + [aux_sym_unload_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token2] = ACTIONS(8501), + [aux_sym_def_type_statement_token3] = ACTIONS(8501), + [aux_sym_def_type_statement_token4] = ACTIONS(8501), + [aux_sym_def_type_statement_token5] = ACTIONS(8501), + [aux_sym_def_type_statement_token6] = ACTIONS(8501), + [aux_sym_def_type_statement_token7] = ACTIONS(8501), + [aux_sym_def_type_statement_token8] = ACTIONS(8501), + [aux_sym_def_type_statement_token9] = ACTIONS(8501), + [aux_sym_def_type_statement_token10] = ACTIONS(8501), + [aux_sym_def_type_statement_token11] = ACTIONS(8501), + [aux_sym_def_type_statement_token12] = ACTIONS(8501), + [aux_sym_def_type_statement_token13] = ACTIONS(8501), + [aux_sym_def_type_statement_token14] = ACTIONS(8501), + [aux_sym_call_statement_token1] = ACTIONS(8501), + [sym__ambiguous_call_statement] = ACTIONS(8501), + [aux_sym_addressof_expression_token1] = ACTIONS(8501), + [aux_sym_type_of_expression_token1] = ACTIONS(8501), + [aux_sym_unary_expression_token1] = ACTIONS(8501), + [sym_string_literal] = ACTIONS(8503), + [sym_number_literal] = ACTIONS(8503), + [aux_sym_boolean_literal_token1] = ACTIONS(8501), + [aux_sym_boolean_literal_token2] = ACTIONS(8501), + [sym_nothing_literal] = ACTIONS(8501), + [sym_null_literal] = ACTIONS(8501), + [sym_empty_literal] = ACTIONS(8501), + [sym_date_literal] = ACTIONS(8503), + [anon_sym_POUND] = ACTIONS(8501), + }, + [STATE(4376)] = { + [sym_next_variable_list] = STATE(6581), + [sym__assignable_expression] = STATE(5463), + [sym__callable_expression] = STATE(5440), + [sym_call_expression] = STATE(5455), + [sym_member_expression] = STATE(6120), + [sym_qualified_member_expression] = STATE(5888), + [sym_implicit_member_expression] = STATE(5888), + [sym_identifier] = ACTIONS(9933), + [sym_newline] = ACTIONS(6867), + [anon_sym_COLON] = ACTIONS(6867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6869), + [aux_sym_frm_property_statement_token1] = ACTIONS(9935), + [anon_sym_DOT] = ACTIONS(9937), + [anon_sym_BANG] = ACTIONS(9939), + [aux_sym__attribute_identifier_token1] = ACTIONS(6869), + [aux_sym_option_statement_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6869), + [aux_sym_preprocessor_const_token1] = ACTIONS(6869), + [sym_static_modifier] = ACTIONS(6869), + [sym__dim_keyword] = ACTIONS(6869), + [sym__redim_keyword] = ACTIONS(6869), + [aux_sym_get_accessor_token1] = ACTIONS(6869), + [aux_sym_set_accessor_token1] = ACTIONS(6869), + [aux_sym_const_declaration_token1] = ACTIONS(6869), + [anon_sym_LPAREN] = ACTIONS(6867), + [aux_sym_as_type_clause_token2] = ACTIONS(6869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9941), + [aux_sym_visibility_token1] = ACTIONS(6869), + [aux_sym_visibility_token2] = ACTIONS(6869), + [aux_sym_elseif_fragment_token1] = ACTIONS(6869), + [aux_sym_else_fragment_token1] = ACTIONS(6869), + [aux_sym_select_statement_token1] = ACTIONS(6869), + [aux_sym__for_header_token1] = ACTIONS(6869), + [aux_sym_do_statement_token1] = ACTIONS(6869), + [aux_sym_do_condition_token1] = ACTIONS(6869), + [aux_sym_with_statement_token1] = ACTIONS(6869), + [aux_sym_exit_statement_token1] = ACTIONS(6869), + [sym_end_statement] = ACTIONS(6867), + [aux_sym_on_goto_statement_token1] = ACTIONS(6869), + [aux_sym_on_goto_statement_token2] = ACTIONS(6869), + [aux_sym_on_error_statement_token2] = ACTIONS(6869), + [sym__ambiguous_redim_statement] = ACTIONS(6867), + [aux_sym_erase_statement_token1] = ACTIONS(6869), + [aux_sym_open_statement_token1] = ACTIONS(6869), + [aux_sym_file_mode_token2] = ACTIONS(6869), + [aux_sym_file_access_token2] = ACTIONS(6869), + [aux_sym_file_lock_token2] = ACTIONS(6869), + [aux_sym_print_statement_token1] = ACTIONS(6869), + [anon_sym_PLUS] = ACTIONS(6867), + [anon_sym_DASH] = ACTIONS(6869), + [anon_sym_QMARK] = ACTIONS(6867), + [aux_sym_close_statement_token1] = ACTIONS(6869), + [aux_sym_put_statement_token1] = ACTIONS(6869), + [aux_sym_unlock_statement_token1] = ACTIONS(6869), + [aux_sym_seek_statement_token1] = ACTIONS(6869), + [sym_reset_statement] = ACTIONS(6869), + [aux_sym_raise_event_statement_token1] = ACTIONS(6869), + [sym_stop_statement] = ACTIONS(6869), + [sym_beep_statement] = ACTIONS(6869), + [aux_sym_unload_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token2] = ACTIONS(6869), + [aux_sym_def_type_statement_token3] = ACTIONS(6869), + [aux_sym_def_type_statement_token4] = ACTIONS(6869), + [aux_sym_def_type_statement_token5] = ACTIONS(6869), + [aux_sym_def_type_statement_token6] = ACTIONS(6869), + [aux_sym_def_type_statement_token7] = ACTIONS(6869), + [aux_sym_def_type_statement_token8] = ACTIONS(6869), + [aux_sym_def_type_statement_token9] = ACTIONS(6869), + [aux_sym_def_type_statement_token10] = ACTIONS(6869), + [aux_sym_def_type_statement_token11] = ACTIONS(6869), + [aux_sym_def_type_statement_token12] = ACTIONS(6869), + [aux_sym_def_type_statement_token13] = ACTIONS(6869), + [aux_sym_def_type_statement_token14] = ACTIONS(6869), + [aux_sym_call_statement_token1] = ACTIONS(6869), + [sym__ambiguous_call_statement] = ACTIONS(6869), + [aux_sym_addressof_expression_token1] = ACTIONS(6869), + [aux_sym_type_of_expression_token1] = ACTIONS(6869), + [aux_sym_unary_expression_token1] = ACTIONS(6869), + [sym_string_literal] = ACTIONS(6867), + [sym_number_literal] = ACTIONS(6867), + [aux_sym_boolean_literal_token1] = ACTIONS(6869), + [aux_sym_boolean_literal_token2] = ACTIONS(6869), + [sym_nothing_literal] = ACTIONS(6869), + [sym_null_literal] = ACTIONS(6869), + [sym_empty_literal] = ACTIONS(6869), + [sym_date_literal] = ACTIONS(6867), + [anon_sym_POUND] = ACTIONS(6869), + }, + [STATE(4377)] = { + [sym_identifier] = ACTIONS(8509), + [sym_newline] = ACTIONS(8511), + [anon_sym_COLON] = ACTIONS(8511), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8509), + [aux_sym_frm_property_statement_token1] = ACTIONS(8509), + [anon_sym_DOT] = ACTIONS(8509), + [anon_sym_BANG] = ACTIONS(8511), + [aux_sym__attribute_identifier_token1] = ACTIONS(8509), + [aux_sym_option_statement_token3] = ACTIONS(8509), + [aux_sym_type_declaration_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8509), + [aux_sym_enum_declaration_token1] = ACTIONS(8509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8509), + [aux_sym_declare_function_statement_token1] = ACTIONS(8509), + [aux_sym_preprocessor_const_token1] = ACTIONS(8509), + [aux_sym__property_get_header_token1] = ACTIONS(8509), + [aux_sym_event_declaration_token1] = ACTIONS(8509), + [sym_static_modifier] = ACTIONS(8509), + [sym__dim_keyword] = ACTIONS(8509), + [sym__redim_keyword] = ACTIONS(8509), + [aux_sym_get_accessor_token1] = ACTIONS(8509), + [aux_sym_set_accessor_token1] = ACTIONS(8509), + [aux_sym_const_declaration_token1] = ACTIONS(8509), + [anon_sym_LPAREN] = ACTIONS(8511), + [aux_sym_as_type_clause_token2] = ACTIONS(8509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8509), + [aux_sym_visibility_token1] = ACTIONS(8509), + [aux_sym_visibility_token2] = ACTIONS(8509), + [aux_sym_elseif_fragment_token1] = ACTIONS(8509), + [aux_sym_else_fragment_token1] = ACTIONS(8509), + [aux_sym_select_statement_token1] = ACTIONS(8509), + [aux_sym__for_header_token1] = ACTIONS(8509), + [aux_sym_do_statement_token1] = ACTIONS(8509), + [aux_sym_do_condition_token1] = ACTIONS(8509), + [aux_sym_with_statement_token1] = ACTIONS(8509), + [aux_sym_exit_statement_token1] = ACTIONS(8509), + [sym_end_statement] = ACTIONS(8511), + [aux_sym_on_goto_statement_token1] = ACTIONS(8509), + [aux_sym_on_goto_statement_token2] = ACTIONS(8509), + [aux_sym_on_error_statement_token2] = ACTIONS(8509), + [sym__ambiguous_redim_statement] = ACTIONS(8511), + [aux_sym_erase_statement_token1] = ACTIONS(8509), + [aux_sym_open_statement_token1] = ACTIONS(8509), + [aux_sym_file_mode_token2] = ACTIONS(8509), + [aux_sym_file_access_token2] = ACTIONS(8509), + [aux_sym_file_lock_token2] = ACTIONS(8509), + [aux_sym_print_statement_token1] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(8511), + [anon_sym_DASH] = ACTIONS(8509), + [anon_sym_QMARK] = ACTIONS(8511), + [aux_sym_close_statement_token1] = ACTIONS(8509), + [aux_sym_put_statement_token1] = ACTIONS(8509), + [aux_sym_unlock_statement_token1] = ACTIONS(8509), + [aux_sym_seek_statement_token1] = ACTIONS(8509), + [sym_reset_statement] = ACTIONS(8509), + [aux_sym_raise_event_statement_token1] = ACTIONS(8509), + [sym_stop_statement] = ACTIONS(8509), + [sym_beep_statement] = ACTIONS(8509), + [aux_sym_unload_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token2] = ACTIONS(8509), + [aux_sym_def_type_statement_token3] = ACTIONS(8509), + [aux_sym_def_type_statement_token4] = ACTIONS(8509), + [aux_sym_def_type_statement_token5] = ACTIONS(8509), + [aux_sym_def_type_statement_token6] = ACTIONS(8509), + [aux_sym_def_type_statement_token7] = ACTIONS(8509), + [aux_sym_def_type_statement_token8] = ACTIONS(8509), + [aux_sym_def_type_statement_token9] = ACTIONS(8509), + [aux_sym_def_type_statement_token10] = ACTIONS(8509), + [aux_sym_def_type_statement_token11] = ACTIONS(8509), + [aux_sym_def_type_statement_token12] = ACTIONS(8509), + [aux_sym_def_type_statement_token13] = ACTIONS(8509), + [aux_sym_def_type_statement_token14] = ACTIONS(8509), + [aux_sym_call_statement_token1] = ACTIONS(8509), + [sym__ambiguous_call_statement] = ACTIONS(8509), + [aux_sym_addressof_expression_token1] = ACTIONS(8509), + [aux_sym_type_of_expression_token1] = ACTIONS(8509), + [aux_sym_unary_expression_token1] = ACTIONS(8509), + [sym_string_literal] = ACTIONS(8511), + [sym_number_literal] = ACTIONS(8511), + [aux_sym_boolean_literal_token1] = ACTIONS(8509), + [aux_sym_boolean_literal_token2] = ACTIONS(8509), + [sym_nothing_literal] = ACTIONS(8509), + [sym_null_literal] = ACTIONS(8509), + [sym_empty_literal] = ACTIONS(8509), + [sym_date_literal] = ACTIONS(8511), + [anon_sym_POUND] = ACTIONS(8509), + }, + [STATE(4378)] = { + [sym_identifier] = ACTIONS(9016), + [sym_newline] = ACTIONS(9018), + [anon_sym_COLON] = ACTIONS(9018), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9016), + [aux_sym_frm_property_statement_token1] = ACTIONS(9016), + [anon_sym_DOT] = ACTIONS(9016), + [anon_sym_BANG] = ACTIONS(9018), + [aux_sym__attribute_identifier_token1] = ACTIONS(9016), + [aux_sym_option_statement_token3] = ACTIONS(9016), + [aux_sym_type_declaration_token1] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9016), + [aux_sym_enum_declaration_token1] = ACTIONS(9016), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9016), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9016), + [aux_sym_declare_function_statement_token1] = ACTIONS(9016), + [aux_sym_preprocessor_const_token1] = ACTIONS(9016), + [aux_sym__property_get_header_token1] = ACTIONS(9016), + [aux_sym_event_declaration_token1] = ACTIONS(9016), + [sym_static_modifier] = ACTIONS(9016), + [sym__dim_keyword] = ACTIONS(9016), + [sym__redim_keyword] = ACTIONS(9016), + [aux_sym_get_accessor_token1] = ACTIONS(9016), + [aux_sym_set_accessor_token1] = ACTIONS(9016), + [aux_sym_const_declaration_token1] = ACTIONS(9016), + [anon_sym_LPAREN] = ACTIONS(9018), + [aux_sym_as_type_clause_token2] = ACTIONS(9016), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9016), + [aux_sym_visibility_token1] = ACTIONS(9016), + [aux_sym_visibility_token2] = ACTIONS(9016), + [aux_sym_elseif_fragment_token1] = ACTIONS(9016), + [aux_sym_else_fragment_token1] = ACTIONS(9016), + [aux_sym_select_statement_token1] = ACTIONS(9016), + [aux_sym__for_header_token1] = ACTIONS(9016), + [aux_sym_do_statement_token1] = ACTIONS(9016), + [aux_sym_do_condition_token1] = ACTIONS(9016), + [aux_sym_with_statement_token1] = ACTIONS(9016), + [aux_sym_exit_statement_token1] = ACTIONS(9016), + [sym_end_statement] = ACTIONS(9018), + [aux_sym_on_goto_statement_token1] = ACTIONS(9016), + [aux_sym_on_goto_statement_token2] = ACTIONS(9016), + [aux_sym_on_error_statement_token2] = ACTIONS(9016), + [sym__ambiguous_redim_statement] = ACTIONS(9018), + [aux_sym_erase_statement_token1] = ACTIONS(9016), + [aux_sym_open_statement_token1] = ACTIONS(9016), + [aux_sym_file_mode_token2] = ACTIONS(9016), + [aux_sym_file_access_token2] = ACTIONS(9016), + [aux_sym_file_lock_token2] = ACTIONS(9016), + [aux_sym_print_statement_token1] = ACTIONS(9016), + [anon_sym_PLUS] = ACTIONS(9018), + [anon_sym_DASH] = ACTIONS(9016), + [anon_sym_QMARK] = ACTIONS(9018), + [aux_sym_close_statement_token1] = ACTIONS(9016), + [aux_sym_put_statement_token1] = ACTIONS(9016), + [aux_sym_unlock_statement_token1] = ACTIONS(9016), + [aux_sym_seek_statement_token1] = ACTIONS(9016), + [sym_reset_statement] = ACTIONS(9016), + [aux_sym_raise_event_statement_token1] = ACTIONS(9016), + [sym_stop_statement] = ACTIONS(9016), + [sym_beep_statement] = ACTIONS(9016), + [aux_sym_unload_statement_token1] = ACTIONS(9016), + [aux_sym_def_type_statement_token1] = ACTIONS(9016), + [aux_sym_def_type_statement_token2] = ACTIONS(9016), + [aux_sym_def_type_statement_token3] = ACTIONS(9016), + [aux_sym_def_type_statement_token4] = ACTIONS(9016), + [aux_sym_def_type_statement_token5] = ACTIONS(9016), + [aux_sym_def_type_statement_token6] = ACTIONS(9016), + [aux_sym_def_type_statement_token7] = ACTIONS(9016), + [aux_sym_def_type_statement_token8] = ACTIONS(9016), + [aux_sym_def_type_statement_token9] = ACTIONS(9016), + [aux_sym_def_type_statement_token10] = ACTIONS(9016), + [aux_sym_def_type_statement_token11] = ACTIONS(9016), + [aux_sym_def_type_statement_token12] = ACTIONS(9016), + [aux_sym_def_type_statement_token13] = ACTIONS(9016), + [aux_sym_def_type_statement_token14] = ACTIONS(9016), + [aux_sym_call_statement_token1] = ACTIONS(9016), + [sym__ambiguous_call_statement] = ACTIONS(9016), + [aux_sym_addressof_expression_token1] = ACTIONS(9016), + [aux_sym_type_of_expression_token1] = ACTIONS(9016), + [aux_sym_unary_expression_token1] = ACTIONS(9016), + [sym_string_literal] = ACTIONS(9018), + [sym_number_literal] = ACTIONS(9018), + [aux_sym_boolean_literal_token1] = ACTIONS(9016), + [aux_sym_boolean_literal_token2] = ACTIONS(9016), + [sym_nothing_literal] = ACTIONS(9016), + [sym_null_literal] = ACTIONS(9016), + [sym_empty_literal] = ACTIONS(9016), + [sym_date_literal] = ACTIONS(9018), + [anon_sym_POUND] = ACTIONS(9016), + }, + [STATE(4379)] = { + [sym_next_variable_list] = STATE(6584), + [sym__assignable_expression] = STATE(5463), + [sym__callable_expression] = STATE(5440), + [sym_call_expression] = STATE(5455), + [sym_member_expression] = STATE(6120), + [sym_qualified_member_expression] = STATE(5888), + [sym_implicit_member_expression] = STATE(5888), + [sym_identifier] = ACTIONS(9933), + [sym_newline] = ACTIONS(6810), + [anon_sym_COLON] = ACTIONS(6810), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6812), + [aux_sym_frm_property_statement_token1] = ACTIONS(9935), + [anon_sym_DOT] = ACTIONS(9937), + [anon_sym_BANG] = ACTIONS(9939), + [aux_sym__attribute_identifier_token1] = ACTIONS(6812), + [aux_sym_option_statement_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6812), + [aux_sym_preprocessor_const_token1] = ACTIONS(6812), + [sym_static_modifier] = ACTIONS(6812), + [sym__dim_keyword] = ACTIONS(6812), + [sym__redim_keyword] = ACTIONS(6812), + [aux_sym_get_accessor_token1] = ACTIONS(6812), + [aux_sym_set_accessor_token1] = ACTIONS(6812), + [aux_sym_const_declaration_token1] = ACTIONS(6812), + [anon_sym_LPAREN] = ACTIONS(6810), + [aux_sym_as_type_clause_token2] = ACTIONS(6812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9941), + [aux_sym_visibility_token1] = ACTIONS(6812), + [aux_sym_visibility_token2] = ACTIONS(6812), + [aux_sym_elseif_fragment_token1] = ACTIONS(6812), + [aux_sym_else_fragment_token1] = ACTIONS(6812), + [aux_sym_select_statement_token1] = ACTIONS(6812), + [aux_sym__for_header_token1] = ACTIONS(6812), + [aux_sym_do_statement_token1] = ACTIONS(6812), + [aux_sym_do_condition_token1] = ACTIONS(6812), + [aux_sym_with_statement_token1] = ACTIONS(6812), + [aux_sym_exit_statement_token1] = ACTIONS(6812), + [sym_end_statement] = ACTIONS(6810), + [aux_sym_on_goto_statement_token1] = ACTIONS(6812), + [aux_sym_on_goto_statement_token2] = ACTIONS(6812), + [aux_sym_on_error_statement_token2] = ACTIONS(6812), + [sym__ambiguous_redim_statement] = ACTIONS(6810), + [aux_sym_erase_statement_token1] = ACTIONS(6812), + [aux_sym_open_statement_token1] = ACTIONS(6812), + [aux_sym_file_mode_token2] = ACTIONS(6812), + [aux_sym_file_access_token2] = ACTIONS(6812), + [aux_sym_file_lock_token2] = ACTIONS(6812), + [aux_sym_print_statement_token1] = ACTIONS(6812), + [anon_sym_PLUS] = ACTIONS(6810), + [anon_sym_DASH] = ACTIONS(6812), + [anon_sym_QMARK] = ACTIONS(6810), + [aux_sym_close_statement_token1] = ACTIONS(6812), + [aux_sym_put_statement_token1] = ACTIONS(6812), + [aux_sym_unlock_statement_token1] = ACTIONS(6812), + [aux_sym_seek_statement_token1] = ACTIONS(6812), + [sym_reset_statement] = ACTIONS(6812), + [aux_sym_raise_event_statement_token1] = ACTIONS(6812), + [sym_stop_statement] = ACTIONS(6812), + [sym_beep_statement] = ACTIONS(6812), + [aux_sym_unload_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token2] = ACTIONS(6812), + [aux_sym_def_type_statement_token3] = ACTIONS(6812), + [aux_sym_def_type_statement_token4] = ACTIONS(6812), + [aux_sym_def_type_statement_token5] = ACTIONS(6812), + [aux_sym_def_type_statement_token6] = ACTIONS(6812), + [aux_sym_def_type_statement_token7] = ACTIONS(6812), + [aux_sym_def_type_statement_token8] = ACTIONS(6812), + [aux_sym_def_type_statement_token9] = ACTIONS(6812), + [aux_sym_def_type_statement_token10] = ACTIONS(6812), + [aux_sym_def_type_statement_token11] = ACTIONS(6812), + [aux_sym_def_type_statement_token12] = ACTIONS(6812), + [aux_sym_def_type_statement_token13] = ACTIONS(6812), + [aux_sym_def_type_statement_token14] = ACTIONS(6812), + [aux_sym_call_statement_token1] = ACTIONS(6812), + [sym__ambiguous_call_statement] = ACTIONS(6812), + [aux_sym_addressof_expression_token1] = ACTIONS(6812), + [aux_sym_type_of_expression_token1] = ACTIONS(6812), + [aux_sym_unary_expression_token1] = ACTIONS(6812), + [sym_string_literal] = ACTIONS(6810), + [sym_number_literal] = ACTIONS(6810), + [aux_sym_boolean_literal_token1] = ACTIONS(6812), + [aux_sym_boolean_literal_token2] = ACTIONS(6812), + [sym_nothing_literal] = ACTIONS(6812), + [sym_null_literal] = ACTIONS(6812), + [sym_empty_literal] = ACTIONS(6812), + [sym_date_literal] = ACTIONS(6810), + [anon_sym_POUND] = ACTIONS(6812), + }, + [STATE(4380)] = { + [sym_identifier] = ACTIONS(8986), + [sym_newline] = ACTIONS(9032), + [anon_sym_COLON] = ACTIONS(9032), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8986), + [aux_sym_frm_property_statement_token1] = ACTIONS(8986), + [anon_sym_DOT] = ACTIONS(8986), + [anon_sym_BANG] = ACTIONS(9032), + [aux_sym__attribute_identifier_token1] = ACTIONS(8986), + [aux_sym_option_statement_token3] = ACTIONS(8986), + [aux_sym_type_declaration_token1] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8986), + [aux_sym_enum_declaration_token1] = ACTIONS(8986), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8986), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8986), + [aux_sym_declare_function_statement_token1] = ACTIONS(8986), + [aux_sym_preprocessor_const_token1] = ACTIONS(8986), + [aux_sym__property_get_header_token1] = ACTIONS(8986), + [aux_sym_event_declaration_token1] = ACTIONS(8986), + [sym_static_modifier] = ACTIONS(8986), + [sym__dim_keyword] = ACTIONS(8986), + [sym__redim_keyword] = ACTIONS(8986), + [aux_sym_get_accessor_token1] = ACTIONS(8986), + [aux_sym_set_accessor_token1] = ACTIONS(8986), + [aux_sym_const_declaration_token1] = ACTIONS(8986), + [anon_sym_LPAREN] = ACTIONS(9032), + [aux_sym_as_type_clause_token2] = ACTIONS(8986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8986), + [aux_sym_visibility_token1] = ACTIONS(8986), + [aux_sym_visibility_token2] = ACTIONS(8986), + [aux_sym_elseif_fragment_token1] = ACTIONS(8986), + [aux_sym_else_fragment_token1] = ACTIONS(8986), + [aux_sym_select_statement_token1] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8986), + [aux_sym_do_statement_token1] = ACTIONS(8986), + [aux_sym_do_condition_token1] = ACTIONS(8986), + [aux_sym_with_statement_token1] = ACTIONS(8986), + [aux_sym_exit_statement_token1] = ACTIONS(8986), + [sym_end_statement] = ACTIONS(9032), + [aux_sym_on_goto_statement_token1] = ACTIONS(8986), + [aux_sym_on_goto_statement_token2] = ACTIONS(8986), + [aux_sym_on_error_statement_token2] = ACTIONS(8986), + [sym__ambiguous_redim_statement] = ACTIONS(9032), + [aux_sym_erase_statement_token1] = ACTIONS(8986), + [aux_sym_open_statement_token1] = ACTIONS(8986), + [aux_sym_file_mode_token2] = ACTIONS(8986), + [aux_sym_file_access_token2] = ACTIONS(8986), + [aux_sym_file_lock_token2] = ACTIONS(8986), + [aux_sym_print_statement_token1] = ACTIONS(8986), + [anon_sym_PLUS] = ACTIONS(9032), + [anon_sym_DASH] = ACTIONS(8986), + [anon_sym_QMARK] = ACTIONS(9032), + [aux_sym_close_statement_token1] = ACTIONS(8986), + [aux_sym_put_statement_token1] = ACTIONS(8986), + [aux_sym_unlock_statement_token1] = ACTIONS(8986), + [aux_sym_seek_statement_token1] = ACTIONS(8986), + [sym_reset_statement] = ACTIONS(8986), + [aux_sym_raise_event_statement_token1] = ACTIONS(8986), + [sym_stop_statement] = ACTIONS(8986), + [sym_beep_statement] = ACTIONS(8986), + [aux_sym_unload_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token2] = ACTIONS(8986), + [aux_sym_def_type_statement_token3] = ACTIONS(8986), + [aux_sym_def_type_statement_token4] = ACTIONS(8986), + [aux_sym_def_type_statement_token5] = ACTIONS(8986), + [aux_sym_def_type_statement_token6] = ACTIONS(8986), + [aux_sym_def_type_statement_token7] = ACTIONS(8986), + [aux_sym_def_type_statement_token8] = ACTIONS(8986), + [aux_sym_def_type_statement_token9] = ACTIONS(8986), + [aux_sym_def_type_statement_token10] = ACTIONS(8986), + [aux_sym_def_type_statement_token11] = ACTIONS(8986), + [aux_sym_def_type_statement_token12] = ACTIONS(8986), + [aux_sym_def_type_statement_token13] = ACTIONS(8986), + [aux_sym_def_type_statement_token14] = ACTIONS(8986), + [aux_sym_call_statement_token1] = ACTIONS(8986), + [sym__ambiguous_call_statement] = ACTIONS(8986), + [aux_sym_addressof_expression_token1] = ACTIONS(8986), + [aux_sym_type_of_expression_token1] = ACTIONS(8986), + [aux_sym_unary_expression_token1] = ACTIONS(8986), + [sym_string_literal] = ACTIONS(9032), + [sym_number_literal] = ACTIONS(9032), + [aux_sym_boolean_literal_token1] = ACTIONS(8986), + [aux_sym_boolean_literal_token2] = ACTIONS(8986), + [sym_nothing_literal] = ACTIONS(8986), + [sym_null_literal] = ACTIONS(8986), + [sym_empty_literal] = ACTIONS(8986), + [sym_date_literal] = ACTIONS(9032), + [anon_sym_POUND] = ACTIONS(8986), + }, + [STATE(4381)] = { + [sym_identifier] = ACTIONS(8764), + [sym_newline] = ACTIONS(9034), + [anon_sym_COLON] = ACTIONS(9034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8764), + [aux_sym_frm_property_statement_token1] = ACTIONS(8764), + [anon_sym_DOT] = ACTIONS(8764), + [anon_sym_BANG] = ACTIONS(9034), + [aux_sym__attribute_identifier_token1] = ACTIONS(8764), + [aux_sym_option_statement_token3] = ACTIONS(8764), + [aux_sym_type_declaration_token1] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8764), + [aux_sym_enum_declaration_token1] = ACTIONS(8764), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8764), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8764), + [aux_sym_declare_function_statement_token1] = ACTIONS(8764), + [aux_sym_preprocessor_const_token1] = ACTIONS(8764), + [aux_sym__property_get_header_token1] = ACTIONS(8764), + [aux_sym_event_declaration_token1] = ACTIONS(8764), + [sym_static_modifier] = ACTIONS(8764), + [sym__dim_keyword] = ACTIONS(8764), + [sym__redim_keyword] = ACTIONS(8764), + [aux_sym_get_accessor_token1] = ACTIONS(8764), + [aux_sym_set_accessor_token1] = ACTIONS(8764), + [aux_sym_const_declaration_token1] = ACTIONS(8764), + [anon_sym_LPAREN] = ACTIONS(9034), + [aux_sym_as_type_clause_token2] = ACTIONS(8764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8764), + [aux_sym_visibility_token1] = ACTIONS(8764), + [aux_sym_visibility_token2] = ACTIONS(8764), + [aux_sym_elseif_fragment_token1] = ACTIONS(8764), + [aux_sym_else_fragment_token1] = ACTIONS(8764), + [aux_sym_select_statement_token1] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8764), + [aux_sym_do_statement_token1] = ACTIONS(8764), + [aux_sym_do_condition_token1] = ACTIONS(8764), + [aux_sym_with_statement_token1] = ACTIONS(8764), + [aux_sym_exit_statement_token1] = ACTIONS(8764), + [sym_end_statement] = ACTIONS(9034), + [aux_sym_on_goto_statement_token1] = ACTIONS(8764), + [aux_sym_on_goto_statement_token2] = ACTIONS(8764), + [aux_sym_on_error_statement_token2] = ACTIONS(8764), + [sym__ambiguous_redim_statement] = ACTIONS(9034), + [aux_sym_erase_statement_token1] = ACTIONS(8764), + [aux_sym_open_statement_token1] = ACTIONS(8764), + [aux_sym_file_mode_token2] = ACTIONS(8764), + [aux_sym_file_access_token2] = ACTIONS(8764), + [aux_sym_file_lock_token2] = ACTIONS(8764), + [aux_sym_print_statement_token1] = ACTIONS(8764), + [anon_sym_PLUS] = ACTIONS(9034), + [anon_sym_DASH] = ACTIONS(8764), + [anon_sym_QMARK] = ACTIONS(9034), + [aux_sym_close_statement_token1] = ACTIONS(8764), + [aux_sym_put_statement_token1] = ACTIONS(8764), + [aux_sym_unlock_statement_token1] = ACTIONS(8764), + [aux_sym_seek_statement_token1] = ACTIONS(8764), + [sym_reset_statement] = ACTIONS(8764), + [aux_sym_raise_event_statement_token1] = ACTIONS(8764), + [sym_stop_statement] = ACTIONS(8764), + [sym_beep_statement] = ACTIONS(8764), + [aux_sym_unload_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token2] = ACTIONS(8764), + [aux_sym_def_type_statement_token3] = ACTIONS(8764), + [aux_sym_def_type_statement_token4] = ACTIONS(8764), + [aux_sym_def_type_statement_token5] = ACTIONS(8764), + [aux_sym_def_type_statement_token6] = ACTIONS(8764), + [aux_sym_def_type_statement_token7] = ACTIONS(8764), + [aux_sym_def_type_statement_token8] = ACTIONS(8764), + [aux_sym_def_type_statement_token9] = ACTIONS(8764), + [aux_sym_def_type_statement_token10] = ACTIONS(8764), + [aux_sym_def_type_statement_token11] = ACTIONS(8764), + [aux_sym_def_type_statement_token12] = ACTIONS(8764), + [aux_sym_def_type_statement_token13] = ACTIONS(8764), + [aux_sym_def_type_statement_token14] = ACTIONS(8764), + [aux_sym_call_statement_token1] = ACTIONS(8764), + [sym__ambiguous_call_statement] = ACTIONS(8764), + [aux_sym_addressof_expression_token1] = ACTIONS(8764), + [aux_sym_type_of_expression_token1] = ACTIONS(8764), + [aux_sym_unary_expression_token1] = ACTIONS(8764), + [sym_string_literal] = ACTIONS(9034), + [sym_number_literal] = ACTIONS(9034), + [aux_sym_boolean_literal_token1] = ACTIONS(8764), + [aux_sym_boolean_literal_token2] = ACTIONS(8764), + [sym_nothing_literal] = ACTIONS(8764), + [sym_null_literal] = ACTIONS(8764), + [sym_empty_literal] = ACTIONS(8764), + [sym_date_literal] = ACTIONS(9034), + [anon_sym_POUND] = ACTIONS(8764), + }, + [STATE(4382)] = { + [sym_identifier] = ACTIONS(9332), + [sym_newline] = ACTIONS(9334), + [anon_sym_COLON] = ACTIONS(9334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9332), + [aux_sym_frm_property_statement_token1] = ACTIONS(9332), + [anon_sym_DOT] = ACTIONS(9332), + [anon_sym_BANG] = ACTIONS(9334), + [aux_sym__attribute_identifier_token1] = ACTIONS(9332), + [aux_sym_option_statement_token3] = ACTIONS(9332), + [aux_sym_type_declaration_token1] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9332), + [aux_sym_enum_declaration_token1] = ACTIONS(9332), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9332), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9332), + [aux_sym_declare_function_statement_token1] = ACTIONS(9332), + [aux_sym_preprocessor_const_token1] = ACTIONS(9332), + [aux_sym__property_get_header_token1] = ACTIONS(9332), + [aux_sym_event_declaration_token1] = ACTIONS(9332), + [sym_static_modifier] = ACTIONS(9332), + [sym__dim_keyword] = ACTIONS(9332), + [sym__redim_keyword] = ACTIONS(9332), + [aux_sym_get_accessor_token1] = ACTIONS(9332), + [aux_sym_set_accessor_token1] = ACTIONS(9332), + [aux_sym_const_declaration_token1] = ACTIONS(9332), + [anon_sym_LPAREN] = ACTIONS(9334), + [aux_sym_as_type_clause_token2] = ACTIONS(9332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9332), + [aux_sym_visibility_token1] = ACTIONS(9332), + [aux_sym_visibility_token2] = ACTIONS(9332), + [aux_sym_elseif_fragment_token1] = ACTIONS(9332), + [aux_sym_else_fragment_token1] = ACTIONS(9332), + [aux_sym_select_statement_token1] = ACTIONS(9332), + [aux_sym__for_header_token1] = ACTIONS(9332), + [aux_sym_do_statement_token1] = ACTIONS(9332), + [aux_sym_do_condition_token1] = ACTIONS(9332), + [aux_sym_with_statement_token1] = ACTIONS(9332), + [aux_sym_exit_statement_token1] = ACTIONS(9332), + [sym_end_statement] = ACTIONS(9334), + [aux_sym_on_goto_statement_token1] = ACTIONS(9332), + [aux_sym_on_goto_statement_token2] = ACTIONS(9332), + [aux_sym_on_error_statement_token2] = ACTIONS(9332), + [sym__ambiguous_redim_statement] = ACTIONS(9334), + [aux_sym_erase_statement_token1] = ACTIONS(9332), + [aux_sym_open_statement_token1] = ACTIONS(9332), + [aux_sym_file_mode_token2] = ACTIONS(9332), + [aux_sym_file_access_token2] = ACTIONS(9332), + [aux_sym_file_lock_token2] = ACTIONS(9332), + [aux_sym_print_statement_token1] = ACTIONS(9332), + [anon_sym_PLUS] = ACTIONS(9334), + [anon_sym_DASH] = ACTIONS(9332), + [anon_sym_QMARK] = ACTIONS(9334), + [aux_sym_close_statement_token1] = ACTIONS(9332), + [aux_sym_put_statement_token1] = ACTIONS(9332), + [aux_sym_unlock_statement_token1] = ACTIONS(9332), + [aux_sym_seek_statement_token1] = ACTIONS(9332), + [sym_reset_statement] = ACTIONS(9332), + [aux_sym_raise_event_statement_token1] = ACTIONS(9332), + [sym_stop_statement] = ACTIONS(9332), + [sym_beep_statement] = ACTIONS(9332), + [aux_sym_unload_statement_token1] = ACTIONS(9332), + [aux_sym_def_type_statement_token1] = ACTIONS(9332), + [aux_sym_def_type_statement_token2] = ACTIONS(9332), + [aux_sym_def_type_statement_token3] = ACTIONS(9332), + [aux_sym_def_type_statement_token4] = ACTIONS(9332), + [aux_sym_def_type_statement_token5] = ACTIONS(9332), + [aux_sym_def_type_statement_token6] = ACTIONS(9332), + [aux_sym_def_type_statement_token7] = ACTIONS(9332), + [aux_sym_def_type_statement_token8] = ACTIONS(9332), + [aux_sym_def_type_statement_token9] = ACTIONS(9332), + [aux_sym_def_type_statement_token10] = ACTIONS(9332), + [aux_sym_def_type_statement_token11] = ACTIONS(9332), + [aux_sym_def_type_statement_token12] = ACTIONS(9332), + [aux_sym_def_type_statement_token13] = ACTIONS(9332), + [aux_sym_def_type_statement_token14] = ACTIONS(9332), + [aux_sym_call_statement_token1] = ACTIONS(9332), + [sym__ambiguous_call_statement] = ACTIONS(9332), + [aux_sym_addressof_expression_token1] = ACTIONS(9332), + [aux_sym_type_of_expression_token1] = ACTIONS(9332), + [aux_sym_unary_expression_token1] = ACTIONS(9332), + [sym_string_literal] = ACTIONS(9334), + [sym_number_literal] = ACTIONS(9334), + [aux_sym_boolean_literal_token1] = ACTIONS(9332), + [aux_sym_boolean_literal_token2] = ACTIONS(9332), + [sym_nothing_literal] = ACTIONS(9332), + [sym_null_literal] = ACTIONS(9332), + [sym_empty_literal] = ACTIONS(9332), + [sym_date_literal] = ACTIONS(9334), + [anon_sym_POUND] = ACTIONS(9332), + }, + [STATE(4383)] = { + [sym_identifier] = ACTIONS(9336), + [sym_newline] = ACTIONS(9338), + [anon_sym_COLON] = ACTIONS(9338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9336), + [aux_sym_frm_property_statement_token1] = ACTIONS(9336), + [anon_sym_DOT] = ACTIONS(9336), + [anon_sym_BANG] = ACTIONS(9338), + [aux_sym__attribute_identifier_token1] = ACTIONS(9336), + [aux_sym_option_statement_token3] = ACTIONS(9336), + [aux_sym_type_declaration_token1] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9336), + [aux_sym_enum_declaration_token1] = ACTIONS(9336), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9336), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9336), + [aux_sym_declare_function_statement_token1] = ACTIONS(9336), + [aux_sym_preprocessor_const_token1] = ACTIONS(9336), + [aux_sym__property_get_header_token1] = ACTIONS(9336), + [aux_sym_event_declaration_token1] = ACTIONS(9336), + [sym_static_modifier] = ACTIONS(9336), + [sym__dim_keyword] = ACTIONS(9336), + [sym__redim_keyword] = ACTIONS(9336), + [aux_sym_get_accessor_token1] = ACTIONS(9336), + [aux_sym_set_accessor_token1] = ACTIONS(9336), + [aux_sym_const_declaration_token1] = ACTIONS(9336), + [anon_sym_LPAREN] = ACTIONS(9338), + [aux_sym_as_type_clause_token2] = ACTIONS(9336), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9336), + [aux_sym_visibility_token1] = ACTIONS(9336), + [aux_sym_visibility_token2] = ACTIONS(9336), + [aux_sym_elseif_fragment_token1] = ACTIONS(9336), + [aux_sym_else_fragment_token1] = ACTIONS(9336), + [aux_sym_select_statement_token1] = ACTIONS(9336), + [aux_sym__for_header_token1] = ACTIONS(9336), + [aux_sym_do_statement_token1] = ACTIONS(9336), + [aux_sym_do_condition_token1] = ACTIONS(9336), + [aux_sym_with_statement_token1] = ACTIONS(9336), + [aux_sym_exit_statement_token1] = ACTIONS(9336), + [sym_end_statement] = ACTIONS(9338), + [aux_sym_on_goto_statement_token1] = ACTIONS(9336), + [aux_sym_on_goto_statement_token2] = ACTIONS(9336), + [aux_sym_on_error_statement_token2] = ACTIONS(9336), + [sym__ambiguous_redim_statement] = ACTIONS(9338), + [aux_sym_erase_statement_token1] = ACTIONS(9336), + [aux_sym_open_statement_token1] = ACTIONS(9336), + [aux_sym_file_mode_token2] = ACTIONS(9336), + [aux_sym_file_access_token2] = ACTIONS(9336), + [aux_sym_file_lock_token2] = ACTIONS(9336), + [aux_sym_print_statement_token1] = ACTIONS(9336), + [anon_sym_PLUS] = ACTIONS(9338), + [anon_sym_DASH] = ACTIONS(9336), + [anon_sym_QMARK] = ACTIONS(9338), + [aux_sym_close_statement_token1] = ACTIONS(9336), + [aux_sym_put_statement_token1] = ACTIONS(9336), + [aux_sym_unlock_statement_token1] = ACTIONS(9336), + [aux_sym_seek_statement_token1] = ACTIONS(9336), + [sym_reset_statement] = ACTIONS(9336), + [aux_sym_raise_event_statement_token1] = ACTIONS(9336), + [sym_stop_statement] = ACTIONS(9336), + [sym_beep_statement] = ACTIONS(9336), + [aux_sym_unload_statement_token1] = ACTIONS(9336), + [aux_sym_def_type_statement_token1] = ACTIONS(9336), + [aux_sym_def_type_statement_token2] = ACTIONS(9336), + [aux_sym_def_type_statement_token3] = ACTIONS(9336), + [aux_sym_def_type_statement_token4] = ACTIONS(9336), + [aux_sym_def_type_statement_token5] = ACTIONS(9336), + [aux_sym_def_type_statement_token6] = ACTIONS(9336), + [aux_sym_def_type_statement_token7] = ACTIONS(9336), + [aux_sym_def_type_statement_token8] = ACTIONS(9336), + [aux_sym_def_type_statement_token9] = ACTIONS(9336), + [aux_sym_def_type_statement_token10] = ACTIONS(9336), + [aux_sym_def_type_statement_token11] = ACTIONS(9336), + [aux_sym_def_type_statement_token12] = ACTIONS(9336), + [aux_sym_def_type_statement_token13] = ACTIONS(9336), + [aux_sym_def_type_statement_token14] = ACTIONS(9336), + [aux_sym_call_statement_token1] = ACTIONS(9336), + [sym__ambiguous_call_statement] = ACTIONS(9336), + [aux_sym_addressof_expression_token1] = ACTIONS(9336), + [aux_sym_type_of_expression_token1] = ACTIONS(9336), + [aux_sym_unary_expression_token1] = ACTIONS(9336), + [sym_string_literal] = ACTIONS(9338), + [sym_number_literal] = ACTIONS(9338), + [aux_sym_boolean_literal_token1] = ACTIONS(9336), + [aux_sym_boolean_literal_token2] = ACTIONS(9336), + [sym_nothing_literal] = ACTIONS(9336), + [sym_null_literal] = ACTIONS(9336), + [sym_empty_literal] = ACTIONS(9336), + [sym_date_literal] = ACTIONS(9338), + [anon_sym_POUND] = ACTIONS(9336), + }, + [STATE(4384)] = { + [sym_identifier] = ACTIONS(9340), + [sym_newline] = ACTIONS(9342), + [anon_sym_COLON] = ACTIONS(9342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9340), + [aux_sym_frm_property_statement_token1] = ACTIONS(9340), + [anon_sym_DOT] = ACTIONS(9340), + [anon_sym_BANG] = ACTIONS(9342), + [aux_sym__attribute_identifier_token1] = ACTIONS(9340), + [aux_sym_option_statement_token3] = ACTIONS(9340), + [aux_sym_type_declaration_token1] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9340), + [aux_sym_enum_declaration_token1] = ACTIONS(9340), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9340), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9340), + [aux_sym_declare_function_statement_token1] = ACTIONS(9340), + [aux_sym_preprocessor_const_token1] = ACTIONS(9340), + [aux_sym__property_get_header_token1] = ACTIONS(9340), + [aux_sym_event_declaration_token1] = ACTIONS(9340), + [sym_static_modifier] = ACTIONS(9340), + [sym__dim_keyword] = ACTIONS(9340), + [sym__redim_keyword] = ACTIONS(9340), + [aux_sym_get_accessor_token1] = ACTIONS(9340), + [aux_sym_set_accessor_token1] = ACTIONS(9340), + [aux_sym_const_declaration_token1] = ACTIONS(9340), + [anon_sym_LPAREN] = ACTIONS(9342), + [aux_sym_as_type_clause_token2] = ACTIONS(9340), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9340), + [aux_sym_visibility_token1] = ACTIONS(9340), + [aux_sym_visibility_token2] = ACTIONS(9340), + [aux_sym_elseif_fragment_token1] = ACTIONS(9340), + [aux_sym_else_fragment_token1] = ACTIONS(9340), + [aux_sym_select_statement_token1] = ACTIONS(9340), + [aux_sym__for_header_token1] = ACTIONS(9340), + [aux_sym_do_statement_token1] = ACTIONS(9340), + [aux_sym_do_condition_token1] = ACTIONS(9340), + [aux_sym_with_statement_token1] = ACTIONS(9340), + [aux_sym_exit_statement_token1] = ACTIONS(9340), + [sym_end_statement] = ACTIONS(9342), + [aux_sym_on_goto_statement_token1] = ACTIONS(9340), + [aux_sym_on_goto_statement_token2] = ACTIONS(9340), + [aux_sym_on_error_statement_token2] = ACTIONS(9340), + [sym__ambiguous_redim_statement] = ACTIONS(9342), + [aux_sym_erase_statement_token1] = ACTIONS(9340), + [aux_sym_open_statement_token1] = ACTIONS(9340), + [aux_sym_file_mode_token2] = ACTIONS(9340), + [aux_sym_file_access_token2] = ACTIONS(9340), + [aux_sym_file_lock_token2] = ACTIONS(9340), + [aux_sym_print_statement_token1] = ACTIONS(9340), + [anon_sym_PLUS] = ACTIONS(9342), + [anon_sym_DASH] = ACTIONS(9340), + [anon_sym_QMARK] = ACTIONS(9342), + [aux_sym_close_statement_token1] = ACTIONS(9340), + [aux_sym_put_statement_token1] = ACTIONS(9340), + [aux_sym_unlock_statement_token1] = ACTIONS(9340), + [aux_sym_seek_statement_token1] = ACTIONS(9340), + [sym_reset_statement] = ACTIONS(9340), + [aux_sym_raise_event_statement_token1] = ACTIONS(9340), + [sym_stop_statement] = ACTIONS(9340), + [sym_beep_statement] = ACTIONS(9340), + [aux_sym_unload_statement_token1] = ACTIONS(9340), + [aux_sym_def_type_statement_token1] = ACTIONS(9340), + [aux_sym_def_type_statement_token2] = ACTIONS(9340), + [aux_sym_def_type_statement_token3] = ACTIONS(9340), + [aux_sym_def_type_statement_token4] = ACTIONS(9340), + [aux_sym_def_type_statement_token5] = ACTIONS(9340), + [aux_sym_def_type_statement_token6] = ACTIONS(9340), + [aux_sym_def_type_statement_token7] = ACTIONS(9340), + [aux_sym_def_type_statement_token8] = ACTIONS(9340), + [aux_sym_def_type_statement_token9] = ACTIONS(9340), + [aux_sym_def_type_statement_token10] = ACTIONS(9340), + [aux_sym_def_type_statement_token11] = ACTIONS(9340), + [aux_sym_def_type_statement_token12] = ACTIONS(9340), + [aux_sym_def_type_statement_token13] = ACTIONS(9340), + [aux_sym_def_type_statement_token14] = ACTIONS(9340), + [aux_sym_call_statement_token1] = ACTIONS(9340), + [sym__ambiguous_call_statement] = ACTIONS(9340), + [aux_sym_addressof_expression_token1] = ACTIONS(9340), + [aux_sym_type_of_expression_token1] = ACTIONS(9340), + [aux_sym_unary_expression_token1] = ACTIONS(9340), + [sym_string_literal] = ACTIONS(9342), + [sym_number_literal] = ACTIONS(9342), + [aux_sym_boolean_literal_token1] = ACTIONS(9340), + [aux_sym_boolean_literal_token2] = ACTIONS(9340), + [sym_nothing_literal] = ACTIONS(9340), + [sym_null_literal] = ACTIONS(9340), + [sym_empty_literal] = ACTIONS(9340), + [sym_date_literal] = ACTIONS(9342), + [anon_sym_POUND] = ACTIONS(9340), + }, + [STATE(4385)] = { + [sym_identifier] = ACTIONS(9344), + [sym_newline] = ACTIONS(9346), + [anon_sym_COLON] = ACTIONS(9346), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9344), + [aux_sym_frm_property_statement_token1] = ACTIONS(9344), + [anon_sym_DOT] = ACTIONS(9344), + [anon_sym_BANG] = ACTIONS(9346), + [aux_sym__attribute_identifier_token1] = ACTIONS(9344), + [aux_sym_option_statement_token3] = ACTIONS(9344), + [aux_sym_type_declaration_token1] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9344), + [aux_sym_enum_declaration_token1] = ACTIONS(9344), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9344), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9344), + [aux_sym_declare_function_statement_token1] = ACTIONS(9344), + [aux_sym_preprocessor_const_token1] = ACTIONS(9344), + [aux_sym__property_get_header_token1] = ACTIONS(9344), + [aux_sym_event_declaration_token1] = ACTIONS(9344), + [sym_static_modifier] = ACTIONS(9344), + [sym__dim_keyword] = ACTIONS(9344), + [sym__redim_keyword] = ACTIONS(9344), + [aux_sym_get_accessor_token1] = ACTIONS(9344), + [aux_sym_set_accessor_token1] = ACTIONS(9344), + [aux_sym_const_declaration_token1] = ACTIONS(9344), + [anon_sym_LPAREN] = ACTIONS(9346), + [aux_sym_as_type_clause_token2] = ACTIONS(9344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9344), + [aux_sym_visibility_token1] = ACTIONS(9344), + [aux_sym_visibility_token2] = ACTIONS(9344), + [aux_sym_elseif_fragment_token1] = ACTIONS(9344), + [aux_sym_else_fragment_token1] = ACTIONS(9344), + [aux_sym_select_statement_token1] = ACTIONS(9344), + [aux_sym__for_header_token1] = ACTIONS(9344), + [aux_sym_do_statement_token1] = ACTIONS(9344), + [aux_sym_do_condition_token1] = ACTIONS(9344), + [aux_sym_with_statement_token1] = ACTIONS(9344), + [aux_sym_exit_statement_token1] = ACTIONS(9344), + [sym_end_statement] = ACTIONS(9346), + [aux_sym_on_goto_statement_token1] = ACTIONS(9344), + [aux_sym_on_goto_statement_token2] = ACTIONS(9344), + [aux_sym_on_error_statement_token2] = ACTIONS(9344), + [sym__ambiguous_redim_statement] = ACTIONS(9346), + [aux_sym_erase_statement_token1] = ACTIONS(9344), + [aux_sym_open_statement_token1] = ACTIONS(9344), + [aux_sym_file_mode_token2] = ACTIONS(9344), + [aux_sym_file_access_token2] = ACTIONS(9344), + [aux_sym_file_lock_token2] = ACTIONS(9344), + [aux_sym_print_statement_token1] = ACTIONS(9344), + [anon_sym_PLUS] = ACTIONS(9346), + [anon_sym_DASH] = ACTIONS(9344), + [anon_sym_QMARK] = ACTIONS(9346), + [aux_sym_close_statement_token1] = ACTIONS(9344), + [aux_sym_put_statement_token1] = ACTIONS(9344), + [aux_sym_unlock_statement_token1] = ACTIONS(9344), + [aux_sym_seek_statement_token1] = ACTIONS(9344), + [sym_reset_statement] = ACTIONS(9344), + [aux_sym_raise_event_statement_token1] = ACTIONS(9344), + [sym_stop_statement] = ACTIONS(9344), + [sym_beep_statement] = ACTIONS(9344), + [aux_sym_unload_statement_token1] = ACTIONS(9344), + [aux_sym_def_type_statement_token1] = ACTIONS(9344), + [aux_sym_def_type_statement_token2] = ACTIONS(9344), + [aux_sym_def_type_statement_token3] = ACTIONS(9344), + [aux_sym_def_type_statement_token4] = ACTIONS(9344), + [aux_sym_def_type_statement_token5] = ACTIONS(9344), + [aux_sym_def_type_statement_token6] = ACTIONS(9344), + [aux_sym_def_type_statement_token7] = ACTIONS(9344), + [aux_sym_def_type_statement_token8] = ACTIONS(9344), + [aux_sym_def_type_statement_token9] = ACTIONS(9344), + [aux_sym_def_type_statement_token10] = ACTIONS(9344), + [aux_sym_def_type_statement_token11] = ACTIONS(9344), + [aux_sym_def_type_statement_token12] = ACTIONS(9344), + [aux_sym_def_type_statement_token13] = ACTIONS(9344), + [aux_sym_def_type_statement_token14] = ACTIONS(9344), + [aux_sym_call_statement_token1] = ACTIONS(9344), + [sym__ambiguous_call_statement] = ACTIONS(9344), + [aux_sym_addressof_expression_token1] = ACTIONS(9344), + [aux_sym_type_of_expression_token1] = ACTIONS(9344), + [aux_sym_unary_expression_token1] = ACTIONS(9344), + [sym_string_literal] = ACTIONS(9346), + [sym_number_literal] = ACTIONS(9346), + [aux_sym_boolean_literal_token1] = ACTIONS(9344), + [aux_sym_boolean_literal_token2] = ACTIONS(9344), + [sym_nothing_literal] = ACTIONS(9344), + [sym_null_literal] = ACTIONS(9344), + [sym_empty_literal] = ACTIONS(9344), + [sym_date_literal] = ACTIONS(9346), + [anon_sym_POUND] = ACTIONS(9344), + }, + [STATE(4386)] = { + [sym_identifier] = ACTIONS(9348), + [sym_newline] = ACTIONS(9350), + [anon_sym_COLON] = ACTIONS(9350), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9348), + [aux_sym_frm_property_statement_token1] = ACTIONS(9348), + [anon_sym_DOT] = ACTIONS(9348), + [anon_sym_BANG] = ACTIONS(9350), + [aux_sym__attribute_identifier_token1] = ACTIONS(9348), + [aux_sym_option_statement_token3] = ACTIONS(9348), + [aux_sym_type_declaration_token1] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9348), + [aux_sym_enum_declaration_token1] = ACTIONS(9348), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9348), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9348), + [aux_sym_declare_function_statement_token1] = ACTIONS(9348), + [aux_sym_preprocessor_const_token1] = ACTIONS(9348), + [aux_sym__property_get_header_token1] = ACTIONS(9348), + [aux_sym_event_declaration_token1] = ACTIONS(9348), + [sym_static_modifier] = ACTIONS(9348), + [sym__dim_keyword] = ACTIONS(9348), + [sym__redim_keyword] = ACTIONS(9348), + [aux_sym_get_accessor_token1] = ACTIONS(9348), + [aux_sym_set_accessor_token1] = ACTIONS(9348), + [aux_sym_const_declaration_token1] = ACTIONS(9348), + [anon_sym_LPAREN] = ACTIONS(9350), + [aux_sym_as_type_clause_token2] = ACTIONS(9348), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9348), + [aux_sym_visibility_token1] = ACTIONS(9348), + [aux_sym_visibility_token2] = ACTIONS(9348), + [aux_sym_elseif_fragment_token1] = ACTIONS(9348), + [aux_sym_else_fragment_token1] = ACTIONS(9348), + [aux_sym_select_statement_token1] = ACTIONS(9348), + [aux_sym__for_header_token1] = ACTIONS(9348), + [aux_sym_do_statement_token1] = ACTIONS(9348), + [aux_sym_do_condition_token1] = ACTIONS(9348), + [aux_sym_with_statement_token1] = ACTIONS(9348), + [aux_sym_exit_statement_token1] = ACTIONS(9348), + [sym_end_statement] = ACTIONS(9350), + [aux_sym_on_goto_statement_token1] = ACTIONS(9348), + [aux_sym_on_goto_statement_token2] = ACTIONS(9348), + [aux_sym_on_error_statement_token2] = ACTIONS(9348), + [sym__ambiguous_redim_statement] = ACTIONS(9350), + [aux_sym_erase_statement_token1] = ACTIONS(9348), + [aux_sym_open_statement_token1] = ACTIONS(9348), + [aux_sym_file_mode_token2] = ACTIONS(9348), + [aux_sym_file_access_token2] = ACTIONS(9348), + [aux_sym_file_lock_token2] = ACTIONS(9348), + [aux_sym_print_statement_token1] = ACTIONS(9348), + [anon_sym_PLUS] = ACTIONS(9350), + [anon_sym_DASH] = ACTIONS(9348), + [anon_sym_QMARK] = ACTIONS(9350), + [aux_sym_close_statement_token1] = ACTIONS(9348), + [aux_sym_put_statement_token1] = ACTIONS(9348), + [aux_sym_unlock_statement_token1] = ACTIONS(9348), + [aux_sym_seek_statement_token1] = ACTIONS(9348), + [sym_reset_statement] = ACTIONS(9348), + [aux_sym_raise_event_statement_token1] = ACTIONS(9348), + [sym_stop_statement] = ACTIONS(9348), + [sym_beep_statement] = ACTIONS(9348), + [aux_sym_unload_statement_token1] = ACTIONS(9348), + [aux_sym_def_type_statement_token1] = ACTIONS(9348), + [aux_sym_def_type_statement_token2] = ACTIONS(9348), + [aux_sym_def_type_statement_token3] = ACTIONS(9348), + [aux_sym_def_type_statement_token4] = ACTIONS(9348), + [aux_sym_def_type_statement_token5] = ACTIONS(9348), + [aux_sym_def_type_statement_token6] = ACTIONS(9348), + [aux_sym_def_type_statement_token7] = ACTIONS(9348), + [aux_sym_def_type_statement_token8] = ACTIONS(9348), + [aux_sym_def_type_statement_token9] = ACTIONS(9348), + [aux_sym_def_type_statement_token10] = ACTIONS(9348), + [aux_sym_def_type_statement_token11] = ACTIONS(9348), + [aux_sym_def_type_statement_token12] = ACTIONS(9348), + [aux_sym_def_type_statement_token13] = ACTIONS(9348), + [aux_sym_def_type_statement_token14] = ACTIONS(9348), + [aux_sym_call_statement_token1] = ACTIONS(9348), + [sym__ambiguous_call_statement] = ACTIONS(9348), + [aux_sym_addressof_expression_token1] = ACTIONS(9348), + [aux_sym_type_of_expression_token1] = ACTIONS(9348), + [aux_sym_unary_expression_token1] = ACTIONS(9348), + [sym_string_literal] = ACTIONS(9350), + [sym_number_literal] = ACTIONS(9350), + [aux_sym_boolean_literal_token1] = ACTIONS(9348), + [aux_sym_boolean_literal_token2] = ACTIONS(9348), + [sym_nothing_literal] = ACTIONS(9348), + [sym_null_literal] = ACTIONS(9348), + [sym_empty_literal] = ACTIONS(9348), + [sym_date_literal] = ACTIONS(9350), + [anon_sym_POUND] = ACTIONS(9348), + }, + [STATE(4387)] = { + [sym_identifier] = ACTIONS(9352), + [sym_newline] = ACTIONS(9354), + [anon_sym_COLON] = ACTIONS(9354), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9352), + [aux_sym_frm_property_statement_token1] = ACTIONS(9352), + [anon_sym_DOT] = ACTIONS(9352), + [anon_sym_BANG] = ACTIONS(9354), + [aux_sym__attribute_identifier_token1] = ACTIONS(9352), + [aux_sym_option_statement_token3] = ACTIONS(9352), + [aux_sym_type_declaration_token1] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9352), + [aux_sym_enum_declaration_token1] = ACTIONS(9352), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9352), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9352), + [aux_sym_declare_function_statement_token1] = ACTIONS(9352), + [aux_sym_preprocessor_const_token1] = ACTIONS(9352), + [aux_sym__property_get_header_token1] = ACTIONS(9352), + [aux_sym_event_declaration_token1] = ACTIONS(9352), + [sym_static_modifier] = ACTIONS(9352), + [sym__dim_keyword] = ACTIONS(9352), + [sym__redim_keyword] = ACTIONS(9352), + [aux_sym_get_accessor_token1] = ACTIONS(9352), + [aux_sym_set_accessor_token1] = ACTIONS(9352), + [aux_sym_const_declaration_token1] = ACTIONS(9352), + [anon_sym_LPAREN] = ACTIONS(9354), + [aux_sym_as_type_clause_token2] = ACTIONS(9352), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9352), + [aux_sym_visibility_token1] = ACTIONS(9352), + [aux_sym_visibility_token2] = ACTIONS(9352), + [aux_sym_elseif_fragment_token1] = ACTIONS(9352), + [aux_sym_else_fragment_token1] = ACTIONS(9352), + [aux_sym_select_statement_token1] = ACTIONS(9352), + [aux_sym__for_header_token1] = ACTIONS(9352), + [aux_sym_do_statement_token1] = ACTIONS(9352), + [aux_sym_do_condition_token1] = ACTIONS(9352), + [aux_sym_with_statement_token1] = ACTIONS(9352), + [aux_sym_exit_statement_token1] = ACTIONS(9352), + [sym_end_statement] = ACTIONS(9354), + [aux_sym_on_goto_statement_token1] = ACTIONS(9352), + [aux_sym_on_goto_statement_token2] = ACTIONS(9352), + [aux_sym_on_error_statement_token2] = ACTIONS(9352), + [sym__ambiguous_redim_statement] = ACTIONS(9354), + [aux_sym_erase_statement_token1] = ACTIONS(9352), + [aux_sym_open_statement_token1] = ACTIONS(9352), + [aux_sym_file_mode_token2] = ACTIONS(9352), + [aux_sym_file_access_token2] = ACTIONS(9352), + [aux_sym_file_lock_token2] = ACTIONS(9352), + [aux_sym_print_statement_token1] = ACTIONS(9352), + [anon_sym_PLUS] = ACTIONS(9354), + [anon_sym_DASH] = ACTIONS(9352), + [anon_sym_QMARK] = ACTIONS(9354), + [aux_sym_close_statement_token1] = ACTIONS(9352), + [aux_sym_put_statement_token1] = ACTIONS(9352), + [aux_sym_unlock_statement_token1] = ACTIONS(9352), + [aux_sym_seek_statement_token1] = ACTIONS(9352), + [sym_reset_statement] = ACTIONS(9352), + [aux_sym_raise_event_statement_token1] = ACTIONS(9352), + [sym_stop_statement] = ACTIONS(9352), + [sym_beep_statement] = ACTIONS(9352), + [aux_sym_unload_statement_token1] = ACTIONS(9352), + [aux_sym_def_type_statement_token1] = ACTIONS(9352), + [aux_sym_def_type_statement_token2] = ACTIONS(9352), + [aux_sym_def_type_statement_token3] = ACTIONS(9352), + [aux_sym_def_type_statement_token4] = ACTIONS(9352), + [aux_sym_def_type_statement_token5] = ACTIONS(9352), + [aux_sym_def_type_statement_token6] = ACTIONS(9352), + [aux_sym_def_type_statement_token7] = ACTIONS(9352), + [aux_sym_def_type_statement_token8] = ACTIONS(9352), + [aux_sym_def_type_statement_token9] = ACTIONS(9352), + [aux_sym_def_type_statement_token10] = ACTIONS(9352), + [aux_sym_def_type_statement_token11] = ACTIONS(9352), + [aux_sym_def_type_statement_token12] = ACTIONS(9352), + [aux_sym_def_type_statement_token13] = ACTIONS(9352), + [aux_sym_def_type_statement_token14] = ACTIONS(9352), + [aux_sym_call_statement_token1] = ACTIONS(9352), + [sym__ambiguous_call_statement] = ACTIONS(9352), + [aux_sym_addressof_expression_token1] = ACTIONS(9352), + [aux_sym_type_of_expression_token1] = ACTIONS(9352), + [aux_sym_unary_expression_token1] = ACTIONS(9352), + [sym_string_literal] = ACTIONS(9354), + [sym_number_literal] = ACTIONS(9354), + [aux_sym_boolean_literal_token1] = ACTIONS(9352), + [aux_sym_boolean_literal_token2] = ACTIONS(9352), + [sym_nothing_literal] = ACTIONS(9352), + [sym_null_literal] = ACTIONS(9352), + [sym_empty_literal] = ACTIONS(9352), + [sym_date_literal] = ACTIONS(9354), + [anon_sym_POUND] = ACTIONS(9352), + }, + [STATE(4388)] = { + [sym_identifier] = ACTIONS(9036), + [sym_newline] = ACTIONS(9038), + [anon_sym_COLON] = ACTIONS(9038), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9036), + [aux_sym_frm_property_statement_token1] = ACTIONS(9036), + [anon_sym_DOT] = ACTIONS(9036), + [anon_sym_BANG] = ACTIONS(9038), + [aux_sym__attribute_identifier_token1] = ACTIONS(9036), + [aux_sym_option_statement_token3] = ACTIONS(9036), + [aux_sym_type_declaration_token1] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9036), + [aux_sym_enum_declaration_token1] = ACTIONS(9036), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9036), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9036), + [aux_sym_declare_function_statement_token1] = ACTIONS(9036), + [aux_sym_preprocessor_const_token1] = ACTIONS(9036), + [aux_sym__property_get_header_token1] = ACTIONS(9036), + [aux_sym_event_declaration_token1] = ACTIONS(9036), + [sym_static_modifier] = ACTIONS(9036), + [sym__dim_keyword] = ACTIONS(9036), + [sym__redim_keyword] = ACTIONS(9036), + [aux_sym_get_accessor_token1] = ACTIONS(9036), + [aux_sym_set_accessor_token1] = ACTIONS(9036), + [aux_sym_const_declaration_token1] = ACTIONS(9036), + [anon_sym_LPAREN] = ACTIONS(9038), + [aux_sym_as_type_clause_token2] = ACTIONS(9036), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9036), + [aux_sym_visibility_token1] = ACTIONS(9036), + [aux_sym_visibility_token2] = ACTIONS(9036), + [aux_sym_elseif_fragment_token1] = ACTIONS(9036), + [aux_sym_else_fragment_token1] = ACTIONS(9036), + [aux_sym_select_statement_token1] = ACTIONS(9036), + [aux_sym__for_header_token1] = ACTIONS(9036), + [aux_sym_do_statement_token1] = ACTIONS(9036), + [aux_sym_do_condition_token1] = ACTIONS(9036), + [aux_sym_with_statement_token1] = ACTIONS(9036), + [aux_sym_exit_statement_token1] = ACTIONS(9036), + [sym_end_statement] = ACTIONS(9038), + [aux_sym_on_goto_statement_token1] = ACTIONS(9036), + [aux_sym_on_goto_statement_token2] = ACTIONS(9036), + [aux_sym_on_error_statement_token2] = ACTIONS(9036), + [sym__ambiguous_redim_statement] = ACTIONS(9038), + [aux_sym_erase_statement_token1] = ACTIONS(9036), + [aux_sym_open_statement_token1] = ACTIONS(9036), + [aux_sym_file_mode_token2] = ACTIONS(9036), + [aux_sym_file_access_token2] = ACTIONS(9036), + [aux_sym_file_lock_token2] = ACTIONS(9036), + [aux_sym_print_statement_token1] = ACTIONS(9036), + [anon_sym_PLUS] = ACTIONS(9038), + [anon_sym_DASH] = ACTIONS(9036), + [anon_sym_QMARK] = ACTIONS(9038), + [aux_sym_close_statement_token1] = ACTIONS(9036), + [aux_sym_put_statement_token1] = ACTIONS(9036), + [aux_sym_unlock_statement_token1] = ACTIONS(9036), + [aux_sym_seek_statement_token1] = ACTIONS(9036), + [sym_reset_statement] = ACTIONS(9036), + [aux_sym_raise_event_statement_token1] = ACTIONS(9036), + [sym_stop_statement] = ACTIONS(9036), + [sym_beep_statement] = ACTIONS(9036), + [aux_sym_unload_statement_token1] = ACTIONS(9036), + [aux_sym_def_type_statement_token1] = ACTIONS(9036), + [aux_sym_def_type_statement_token2] = ACTIONS(9036), + [aux_sym_def_type_statement_token3] = ACTIONS(9036), + [aux_sym_def_type_statement_token4] = ACTIONS(9036), + [aux_sym_def_type_statement_token5] = ACTIONS(9036), + [aux_sym_def_type_statement_token6] = ACTIONS(9036), + [aux_sym_def_type_statement_token7] = ACTIONS(9036), + [aux_sym_def_type_statement_token8] = ACTIONS(9036), + [aux_sym_def_type_statement_token9] = ACTIONS(9036), + [aux_sym_def_type_statement_token10] = ACTIONS(9036), + [aux_sym_def_type_statement_token11] = ACTIONS(9036), + [aux_sym_def_type_statement_token12] = ACTIONS(9036), + [aux_sym_def_type_statement_token13] = ACTIONS(9036), + [aux_sym_def_type_statement_token14] = ACTIONS(9036), + [aux_sym_call_statement_token1] = ACTIONS(9036), + [sym__ambiguous_call_statement] = ACTIONS(9036), + [aux_sym_addressof_expression_token1] = ACTIONS(9036), + [aux_sym_type_of_expression_token1] = ACTIONS(9036), + [aux_sym_unary_expression_token1] = ACTIONS(9036), + [sym_string_literal] = ACTIONS(9038), + [sym_number_literal] = ACTIONS(9038), + [aux_sym_boolean_literal_token1] = ACTIONS(9036), + [aux_sym_boolean_literal_token2] = ACTIONS(9036), + [sym_nothing_literal] = ACTIONS(9036), + [sym_null_literal] = ACTIONS(9036), + [sym_empty_literal] = ACTIONS(9036), + [sym_date_literal] = ACTIONS(9038), + [anon_sym_POUND] = ACTIONS(9036), + }, + [STATE(4389)] = { + [sym_identifier] = ACTIONS(9040), + [sym_newline] = ACTIONS(9042), + [anon_sym_COLON] = ACTIONS(9042), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9040), + [aux_sym_frm_property_statement_token1] = ACTIONS(9040), + [anon_sym_DOT] = ACTIONS(9040), + [anon_sym_BANG] = ACTIONS(9042), + [aux_sym__attribute_identifier_token1] = ACTIONS(9040), + [aux_sym_option_statement_token3] = ACTIONS(9040), + [aux_sym_type_declaration_token1] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9040), + [aux_sym_enum_declaration_token1] = ACTIONS(9040), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9040), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9040), + [aux_sym_declare_function_statement_token1] = ACTIONS(9040), + [aux_sym_preprocessor_const_token1] = ACTIONS(9040), + [aux_sym__property_get_header_token1] = ACTIONS(9040), + [aux_sym_event_declaration_token1] = ACTIONS(9040), + [sym_static_modifier] = ACTIONS(9040), + [sym__dim_keyword] = ACTIONS(9040), + [sym__redim_keyword] = ACTIONS(9040), + [aux_sym_get_accessor_token1] = ACTIONS(9040), + [aux_sym_set_accessor_token1] = ACTIONS(9040), + [aux_sym_const_declaration_token1] = ACTIONS(9040), + [anon_sym_LPAREN] = ACTIONS(9042), + [aux_sym_as_type_clause_token2] = ACTIONS(9040), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9040), + [aux_sym_visibility_token1] = ACTIONS(9040), + [aux_sym_visibility_token2] = ACTIONS(9040), + [aux_sym_elseif_fragment_token1] = ACTIONS(9040), + [aux_sym_else_fragment_token1] = ACTIONS(9040), + [aux_sym_select_statement_token1] = ACTIONS(9040), + [aux_sym__for_header_token1] = ACTIONS(9040), + [aux_sym_do_statement_token1] = ACTIONS(9040), + [aux_sym_do_condition_token1] = ACTIONS(9040), + [aux_sym_with_statement_token1] = ACTIONS(9040), + [aux_sym_exit_statement_token1] = ACTIONS(9040), + [sym_end_statement] = ACTIONS(9042), + [aux_sym_on_goto_statement_token1] = ACTIONS(9040), + [aux_sym_on_goto_statement_token2] = ACTIONS(9040), + [aux_sym_on_error_statement_token2] = ACTIONS(9040), + [sym__ambiguous_redim_statement] = ACTIONS(9042), + [aux_sym_erase_statement_token1] = ACTIONS(9040), + [aux_sym_open_statement_token1] = ACTIONS(9040), + [aux_sym_file_mode_token2] = ACTIONS(9040), + [aux_sym_file_access_token2] = ACTIONS(9040), + [aux_sym_file_lock_token2] = ACTIONS(9040), + [aux_sym_print_statement_token1] = ACTIONS(9040), + [anon_sym_PLUS] = ACTIONS(9042), + [anon_sym_DASH] = ACTIONS(9040), + [anon_sym_QMARK] = ACTIONS(9042), + [aux_sym_close_statement_token1] = ACTIONS(9040), + [aux_sym_put_statement_token1] = ACTIONS(9040), + [aux_sym_unlock_statement_token1] = ACTIONS(9040), + [aux_sym_seek_statement_token1] = ACTIONS(9040), + [sym_reset_statement] = ACTIONS(9040), + [aux_sym_raise_event_statement_token1] = ACTIONS(9040), + [sym_stop_statement] = ACTIONS(9040), + [sym_beep_statement] = ACTIONS(9040), + [aux_sym_unload_statement_token1] = ACTIONS(9040), + [aux_sym_def_type_statement_token1] = ACTIONS(9040), + [aux_sym_def_type_statement_token2] = ACTIONS(9040), + [aux_sym_def_type_statement_token3] = ACTIONS(9040), + [aux_sym_def_type_statement_token4] = ACTIONS(9040), + [aux_sym_def_type_statement_token5] = ACTIONS(9040), + [aux_sym_def_type_statement_token6] = ACTIONS(9040), + [aux_sym_def_type_statement_token7] = ACTIONS(9040), + [aux_sym_def_type_statement_token8] = ACTIONS(9040), + [aux_sym_def_type_statement_token9] = ACTIONS(9040), + [aux_sym_def_type_statement_token10] = ACTIONS(9040), + [aux_sym_def_type_statement_token11] = ACTIONS(9040), + [aux_sym_def_type_statement_token12] = ACTIONS(9040), + [aux_sym_def_type_statement_token13] = ACTIONS(9040), + [aux_sym_def_type_statement_token14] = ACTIONS(9040), + [aux_sym_call_statement_token1] = ACTIONS(9040), + [sym__ambiguous_call_statement] = ACTIONS(9040), + [aux_sym_addressof_expression_token1] = ACTIONS(9040), + [aux_sym_type_of_expression_token1] = ACTIONS(9040), + [aux_sym_unary_expression_token1] = ACTIONS(9040), + [sym_string_literal] = ACTIONS(9042), + [sym_number_literal] = ACTIONS(9042), + [aux_sym_boolean_literal_token1] = ACTIONS(9040), + [aux_sym_boolean_literal_token2] = ACTIONS(9040), + [sym_nothing_literal] = ACTIONS(9040), + [sym_null_literal] = ACTIONS(9040), + [sym_empty_literal] = ACTIONS(9040), + [sym_date_literal] = ACTIONS(9042), + [anon_sym_POUND] = ACTIONS(9040), + }, + [STATE(4390)] = { + [sym_next_variable_list] = STATE(6585), + [sym__assignable_expression] = STATE(5463), + [sym__callable_expression] = STATE(5440), + [sym_call_expression] = STATE(5455), + [sym_member_expression] = STATE(6120), + [sym_qualified_member_expression] = STATE(5888), + [sym_implicit_member_expression] = STATE(5888), + [sym_identifier] = ACTIONS(9933), + [sym_newline] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6828), + [aux_sym_frm_property_statement_token1] = ACTIONS(9935), + [anon_sym_DOT] = ACTIONS(9937), + [anon_sym_BANG] = ACTIONS(9939), + [aux_sym__attribute_identifier_token1] = ACTIONS(6828), + [aux_sym_option_statement_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6828), + [aux_sym_preprocessor_const_token1] = ACTIONS(6828), + [sym_static_modifier] = ACTIONS(6828), + [sym__dim_keyword] = ACTIONS(6828), + [sym__redim_keyword] = ACTIONS(6828), + [aux_sym_get_accessor_token1] = ACTIONS(6828), + [aux_sym_set_accessor_token1] = ACTIONS(6828), + [aux_sym_const_declaration_token1] = ACTIONS(6828), + [anon_sym_LPAREN] = ACTIONS(6826), + [aux_sym_as_type_clause_token2] = ACTIONS(6828), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9941), + [aux_sym_visibility_token1] = ACTIONS(6828), + [aux_sym_visibility_token2] = ACTIONS(6828), + [aux_sym_elseif_fragment_token1] = ACTIONS(6828), + [aux_sym_else_fragment_token1] = ACTIONS(6828), + [aux_sym_select_statement_token1] = ACTIONS(6828), + [aux_sym__for_header_token1] = ACTIONS(6828), + [aux_sym_do_statement_token1] = ACTIONS(6828), + [aux_sym_do_condition_token1] = ACTIONS(6828), + [aux_sym_with_statement_token1] = ACTIONS(6828), + [aux_sym_exit_statement_token1] = ACTIONS(6828), + [sym_end_statement] = ACTIONS(6826), + [aux_sym_on_goto_statement_token1] = ACTIONS(6828), + [aux_sym_on_goto_statement_token2] = ACTIONS(6828), + [aux_sym_on_error_statement_token2] = ACTIONS(6828), + [sym__ambiguous_redim_statement] = ACTIONS(6826), + [aux_sym_erase_statement_token1] = ACTIONS(6828), + [aux_sym_open_statement_token1] = ACTIONS(6828), + [aux_sym_file_mode_token2] = ACTIONS(6828), + [aux_sym_file_access_token2] = ACTIONS(6828), + [aux_sym_file_lock_token2] = ACTIONS(6828), + [aux_sym_print_statement_token1] = ACTIONS(6828), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_DASH] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6826), + [aux_sym_close_statement_token1] = ACTIONS(6828), + [aux_sym_put_statement_token1] = ACTIONS(6828), + [aux_sym_unlock_statement_token1] = ACTIONS(6828), + [aux_sym_seek_statement_token1] = ACTIONS(6828), + [sym_reset_statement] = ACTIONS(6828), + [aux_sym_raise_event_statement_token1] = ACTIONS(6828), + [sym_stop_statement] = ACTIONS(6828), + [sym_beep_statement] = ACTIONS(6828), + [aux_sym_unload_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token2] = ACTIONS(6828), + [aux_sym_def_type_statement_token3] = ACTIONS(6828), + [aux_sym_def_type_statement_token4] = ACTIONS(6828), + [aux_sym_def_type_statement_token5] = ACTIONS(6828), + [aux_sym_def_type_statement_token6] = ACTIONS(6828), + [aux_sym_def_type_statement_token7] = ACTIONS(6828), + [aux_sym_def_type_statement_token8] = ACTIONS(6828), + [aux_sym_def_type_statement_token9] = ACTIONS(6828), + [aux_sym_def_type_statement_token10] = ACTIONS(6828), + [aux_sym_def_type_statement_token11] = ACTIONS(6828), + [aux_sym_def_type_statement_token12] = ACTIONS(6828), + [aux_sym_def_type_statement_token13] = ACTIONS(6828), + [aux_sym_def_type_statement_token14] = ACTIONS(6828), + [aux_sym_call_statement_token1] = ACTIONS(6828), + [sym__ambiguous_call_statement] = ACTIONS(6828), + [aux_sym_addressof_expression_token1] = ACTIONS(6828), + [aux_sym_type_of_expression_token1] = ACTIONS(6828), + [aux_sym_unary_expression_token1] = ACTIONS(6828), + [sym_string_literal] = ACTIONS(6826), + [sym_number_literal] = ACTIONS(6826), + [aux_sym_boolean_literal_token1] = ACTIONS(6828), + [aux_sym_boolean_literal_token2] = ACTIONS(6828), + [sym_nothing_literal] = ACTIONS(6828), + [sym_null_literal] = ACTIONS(6828), + [sym_empty_literal] = ACTIONS(6828), + [sym_date_literal] = ACTIONS(6826), + [anon_sym_POUND] = ACTIONS(6828), + }, + [STATE(4391)] = { + [sym_identifier] = ACTIONS(9356), + [sym_newline] = ACTIONS(9358), + [anon_sym_COLON] = ACTIONS(9358), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9356), + [aux_sym_frm_property_statement_token1] = ACTIONS(9356), + [anon_sym_DOT] = ACTIONS(9356), + [anon_sym_BANG] = ACTIONS(9358), + [aux_sym__attribute_identifier_token1] = ACTIONS(9356), + [aux_sym_option_statement_token3] = ACTIONS(9356), + [aux_sym_type_declaration_token1] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9356), + [aux_sym_enum_declaration_token1] = ACTIONS(9356), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9356), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9356), + [aux_sym_declare_function_statement_token1] = ACTIONS(9356), + [aux_sym_preprocessor_const_token1] = ACTIONS(9356), + [aux_sym__property_get_header_token1] = ACTIONS(9356), + [aux_sym_event_declaration_token1] = ACTIONS(9356), + [sym_static_modifier] = ACTIONS(9356), + [sym__dim_keyword] = ACTIONS(9356), + [sym__redim_keyword] = ACTIONS(9356), + [aux_sym_get_accessor_token1] = ACTIONS(9356), + [aux_sym_set_accessor_token1] = ACTIONS(9356), + [aux_sym_const_declaration_token1] = ACTIONS(9356), + [anon_sym_LPAREN] = ACTIONS(9358), + [aux_sym_as_type_clause_token2] = ACTIONS(9356), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9356), + [aux_sym_visibility_token1] = ACTIONS(9356), + [aux_sym_visibility_token2] = ACTIONS(9356), + [aux_sym_elseif_fragment_token1] = ACTIONS(9356), + [aux_sym_else_fragment_token1] = ACTIONS(9356), + [aux_sym_select_statement_token1] = ACTIONS(9356), + [aux_sym__for_header_token1] = ACTIONS(9356), + [aux_sym_do_statement_token1] = ACTIONS(9356), + [aux_sym_do_condition_token1] = ACTIONS(9356), + [aux_sym_with_statement_token1] = ACTIONS(9356), + [aux_sym_exit_statement_token1] = ACTIONS(9356), + [sym_end_statement] = ACTIONS(9358), + [aux_sym_on_goto_statement_token1] = ACTIONS(9356), + [aux_sym_on_goto_statement_token2] = ACTIONS(9356), + [aux_sym_on_error_statement_token2] = ACTIONS(9356), + [sym__ambiguous_redim_statement] = ACTIONS(9358), + [aux_sym_erase_statement_token1] = ACTIONS(9356), + [aux_sym_open_statement_token1] = ACTIONS(9356), + [aux_sym_file_mode_token2] = ACTIONS(9356), + [aux_sym_file_access_token2] = ACTIONS(9356), + [aux_sym_file_lock_token2] = ACTIONS(9356), + [aux_sym_print_statement_token1] = ACTIONS(9356), + [anon_sym_PLUS] = ACTIONS(9358), + [anon_sym_DASH] = ACTIONS(9356), + [anon_sym_QMARK] = ACTIONS(9358), + [aux_sym_close_statement_token1] = ACTIONS(9356), + [aux_sym_put_statement_token1] = ACTIONS(9356), + [aux_sym_unlock_statement_token1] = ACTIONS(9356), + [aux_sym_seek_statement_token1] = ACTIONS(9356), + [sym_reset_statement] = ACTIONS(9356), + [aux_sym_raise_event_statement_token1] = ACTIONS(9356), + [sym_stop_statement] = ACTIONS(9356), + [sym_beep_statement] = ACTIONS(9356), + [aux_sym_unload_statement_token1] = ACTIONS(9356), + [aux_sym_def_type_statement_token1] = ACTIONS(9356), + [aux_sym_def_type_statement_token2] = ACTIONS(9356), + [aux_sym_def_type_statement_token3] = ACTIONS(9356), + [aux_sym_def_type_statement_token4] = ACTIONS(9356), + [aux_sym_def_type_statement_token5] = ACTIONS(9356), + [aux_sym_def_type_statement_token6] = ACTIONS(9356), + [aux_sym_def_type_statement_token7] = ACTIONS(9356), + [aux_sym_def_type_statement_token8] = ACTIONS(9356), + [aux_sym_def_type_statement_token9] = ACTIONS(9356), + [aux_sym_def_type_statement_token10] = ACTIONS(9356), + [aux_sym_def_type_statement_token11] = ACTIONS(9356), + [aux_sym_def_type_statement_token12] = ACTIONS(9356), + [aux_sym_def_type_statement_token13] = ACTIONS(9356), + [aux_sym_def_type_statement_token14] = ACTIONS(9356), + [aux_sym_call_statement_token1] = ACTIONS(9356), + [sym__ambiguous_call_statement] = ACTIONS(9356), + [aux_sym_addressof_expression_token1] = ACTIONS(9356), + [aux_sym_type_of_expression_token1] = ACTIONS(9356), + [aux_sym_unary_expression_token1] = ACTIONS(9356), + [sym_string_literal] = ACTIONS(9358), + [sym_number_literal] = ACTIONS(9358), + [aux_sym_boolean_literal_token1] = ACTIONS(9356), + [aux_sym_boolean_literal_token2] = ACTIONS(9356), + [sym_nothing_literal] = ACTIONS(9356), + [sym_null_literal] = ACTIONS(9356), + [sym_empty_literal] = ACTIONS(9356), + [sym_date_literal] = ACTIONS(9358), + [anon_sym_POUND] = ACTIONS(9356), + }, + [STATE(4392)] = { + [sym_identifier] = ACTIONS(9360), + [sym_newline] = ACTIONS(9362), + [anon_sym_COLON] = ACTIONS(9362), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9360), + [aux_sym_frm_property_statement_token1] = ACTIONS(9360), + [anon_sym_DOT] = ACTIONS(9360), + [anon_sym_BANG] = ACTIONS(9362), + [aux_sym__attribute_identifier_token1] = ACTIONS(9360), + [aux_sym_option_statement_token3] = ACTIONS(9360), + [aux_sym_type_declaration_token1] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9360), + [aux_sym_enum_declaration_token1] = ACTIONS(9360), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9360), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9360), + [aux_sym_declare_function_statement_token1] = ACTIONS(9360), + [aux_sym_preprocessor_const_token1] = ACTIONS(9360), + [aux_sym__property_get_header_token1] = ACTIONS(9360), + [aux_sym_event_declaration_token1] = ACTIONS(9360), + [sym_static_modifier] = ACTIONS(9360), + [sym__dim_keyword] = ACTIONS(9360), + [sym__redim_keyword] = ACTIONS(9360), + [aux_sym_get_accessor_token1] = ACTIONS(9360), + [aux_sym_set_accessor_token1] = ACTIONS(9360), + [aux_sym_const_declaration_token1] = ACTIONS(9360), + [anon_sym_LPAREN] = ACTIONS(9362), + [aux_sym_as_type_clause_token2] = ACTIONS(9360), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9360), + [aux_sym_visibility_token1] = ACTIONS(9360), + [aux_sym_visibility_token2] = ACTIONS(9360), + [aux_sym_elseif_fragment_token1] = ACTIONS(9360), + [aux_sym_else_fragment_token1] = ACTIONS(9360), + [aux_sym_select_statement_token1] = ACTIONS(9360), + [aux_sym__for_header_token1] = ACTIONS(9360), + [aux_sym_do_statement_token1] = ACTIONS(9360), + [aux_sym_do_condition_token1] = ACTIONS(9360), + [aux_sym_with_statement_token1] = ACTIONS(9360), + [aux_sym_exit_statement_token1] = ACTIONS(9360), + [sym_end_statement] = ACTIONS(9362), + [aux_sym_on_goto_statement_token1] = ACTIONS(9360), + [aux_sym_on_goto_statement_token2] = ACTIONS(9360), + [aux_sym_on_error_statement_token2] = ACTIONS(9360), + [sym__ambiguous_redim_statement] = ACTIONS(9362), + [aux_sym_erase_statement_token1] = ACTIONS(9360), + [aux_sym_open_statement_token1] = ACTIONS(9360), + [aux_sym_file_mode_token2] = ACTIONS(9360), + [aux_sym_file_access_token2] = ACTIONS(9360), + [aux_sym_file_lock_token2] = ACTIONS(9360), + [aux_sym_print_statement_token1] = ACTIONS(9360), + [anon_sym_PLUS] = ACTIONS(9362), + [anon_sym_DASH] = ACTIONS(9360), + [anon_sym_QMARK] = ACTIONS(9362), + [aux_sym_close_statement_token1] = ACTIONS(9360), + [aux_sym_put_statement_token1] = ACTIONS(9360), + [aux_sym_unlock_statement_token1] = ACTIONS(9360), + [aux_sym_seek_statement_token1] = ACTIONS(9360), + [sym_reset_statement] = ACTIONS(9360), + [aux_sym_raise_event_statement_token1] = ACTIONS(9360), + [sym_stop_statement] = ACTIONS(9360), + [sym_beep_statement] = ACTIONS(9360), + [aux_sym_unload_statement_token1] = ACTIONS(9360), + [aux_sym_def_type_statement_token1] = ACTIONS(9360), + [aux_sym_def_type_statement_token2] = ACTIONS(9360), + [aux_sym_def_type_statement_token3] = ACTIONS(9360), + [aux_sym_def_type_statement_token4] = ACTIONS(9360), + [aux_sym_def_type_statement_token5] = ACTIONS(9360), + [aux_sym_def_type_statement_token6] = ACTIONS(9360), + [aux_sym_def_type_statement_token7] = ACTIONS(9360), + [aux_sym_def_type_statement_token8] = ACTIONS(9360), + [aux_sym_def_type_statement_token9] = ACTIONS(9360), + [aux_sym_def_type_statement_token10] = ACTIONS(9360), + [aux_sym_def_type_statement_token11] = ACTIONS(9360), + [aux_sym_def_type_statement_token12] = ACTIONS(9360), + [aux_sym_def_type_statement_token13] = ACTIONS(9360), + [aux_sym_def_type_statement_token14] = ACTIONS(9360), + [aux_sym_call_statement_token1] = ACTIONS(9360), + [sym__ambiguous_call_statement] = ACTIONS(9360), + [aux_sym_addressof_expression_token1] = ACTIONS(9360), + [aux_sym_type_of_expression_token1] = ACTIONS(9360), + [aux_sym_unary_expression_token1] = ACTIONS(9360), + [sym_string_literal] = ACTIONS(9362), + [sym_number_literal] = ACTIONS(9362), + [aux_sym_boolean_literal_token1] = ACTIONS(9360), + [aux_sym_boolean_literal_token2] = ACTIONS(9360), + [sym_nothing_literal] = ACTIONS(9360), + [sym_null_literal] = ACTIONS(9360), + [sym_empty_literal] = ACTIONS(9360), + [sym_date_literal] = ACTIONS(9362), + [anon_sym_POUND] = ACTIONS(9360), + }, + [STATE(4393)] = { + [sym_next_variable_list] = STATE(6588), + [sym__assignable_expression] = STATE(5463), + [sym__callable_expression] = STATE(5440), + [sym_call_expression] = STATE(5455), + [sym_member_expression] = STATE(6120), + [sym_qualified_member_expression] = STATE(5888), + [sym_implicit_member_expression] = STATE(5888), + [sym_identifier] = ACTIONS(9933), + [sym_newline] = ACTIONS(6863), + [anon_sym_COLON] = ACTIONS(6863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6865), + [aux_sym_frm_property_statement_token1] = ACTIONS(9935), + [anon_sym_DOT] = ACTIONS(9937), + [anon_sym_BANG] = ACTIONS(9939), + [aux_sym__attribute_identifier_token1] = ACTIONS(6865), + [aux_sym_option_statement_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6865), + [aux_sym_preprocessor_const_token1] = ACTIONS(6865), + [sym_static_modifier] = ACTIONS(6865), + [sym__dim_keyword] = ACTIONS(6865), + [sym__redim_keyword] = ACTIONS(6865), + [aux_sym_get_accessor_token1] = ACTIONS(6865), + [aux_sym_set_accessor_token1] = ACTIONS(6865), + [aux_sym_const_declaration_token1] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6863), + [aux_sym_as_type_clause_token2] = ACTIONS(6865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9941), + [aux_sym_visibility_token1] = ACTIONS(6865), + [aux_sym_visibility_token2] = ACTIONS(6865), + [aux_sym_elseif_fragment_token1] = ACTIONS(6865), + [aux_sym_else_fragment_token1] = ACTIONS(6865), + [aux_sym_select_statement_token1] = ACTIONS(6865), + [aux_sym__for_header_token1] = ACTIONS(6865), + [aux_sym_do_statement_token1] = ACTIONS(6865), + [aux_sym_do_condition_token1] = ACTIONS(6865), + [aux_sym_with_statement_token1] = ACTIONS(6865), + [aux_sym_exit_statement_token1] = ACTIONS(6865), + [sym_end_statement] = ACTIONS(6863), + [aux_sym_on_goto_statement_token1] = ACTIONS(6865), + [aux_sym_on_goto_statement_token2] = ACTIONS(6865), + [aux_sym_on_error_statement_token2] = ACTIONS(6865), + [sym__ambiguous_redim_statement] = ACTIONS(6863), + [aux_sym_erase_statement_token1] = ACTIONS(6865), + [aux_sym_open_statement_token1] = ACTIONS(6865), + [aux_sym_file_mode_token2] = ACTIONS(6865), + [aux_sym_file_access_token2] = ACTIONS(6865), + [aux_sym_file_lock_token2] = ACTIONS(6865), + [aux_sym_print_statement_token1] = ACTIONS(6865), + [anon_sym_PLUS] = ACTIONS(6863), + [anon_sym_DASH] = ACTIONS(6865), + [anon_sym_QMARK] = ACTIONS(6863), + [aux_sym_close_statement_token1] = ACTIONS(6865), + [aux_sym_put_statement_token1] = ACTIONS(6865), + [aux_sym_unlock_statement_token1] = ACTIONS(6865), + [aux_sym_seek_statement_token1] = ACTIONS(6865), + [sym_reset_statement] = ACTIONS(6865), + [aux_sym_raise_event_statement_token1] = ACTIONS(6865), + [sym_stop_statement] = ACTIONS(6865), + [sym_beep_statement] = ACTIONS(6865), + [aux_sym_unload_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token2] = ACTIONS(6865), + [aux_sym_def_type_statement_token3] = ACTIONS(6865), + [aux_sym_def_type_statement_token4] = ACTIONS(6865), + [aux_sym_def_type_statement_token5] = ACTIONS(6865), + [aux_sym_def_type_statement_token6] = ACTIONS(6865), + [aux_sym_def_type_statement_token7] = ACTIONS(6865), + [aux_sym_def_type_statement_token8] = ACTIONS(6865), + [aux_sym_def_type_statement_token9] = ACTIONS(6865), + [aux_sym_def_type_statement_token10] = ACTIONS(6865), + [aux_sym_def_type_statement_token11] = ACTIONS(6865), + [aux_sym_def_type_statement_token12] = ACTIONS(6865), + [aux_sym_def_type_statement_token13] = ACTIONS(6865), + [aux_sym_def_type_statement_token14] = ACTIONS(6865), + [aux_sym_call_statement_token1] = ACTIONS(6865), + [sym__ambiguous_call_statement] = ACTIONS(6865), + [aux_sym_addressof_expression_token1] = ACTIONS(6865), + [aux_sym_type_of_expression_token1] = ACTIONS(6865), + [aux_sym_unary_expression_token1] = ACTIONS(6865), + [sym_string_literal] = ACTIONS(6863), + [sym_number_literal] = ACTIONS(6863), + [aux_sym_boolean_literal_token1] = ACTIONS(6865), + [aux_sym_boolean_literal_token2] = ACTIONS(6865), + [sym_nothing_literal] = ACTIONS(6865), + [sym_null_literal] = ACTIONS(6865), + [sym_empty_literal] = ACTIONS(6865), + [sym_date_literal] = ACTIONS(6863), + [anon_sym_POUND] = ACTIONS(6865), + }, + [STATE(4394)] = { + [sym_identifier] = ACTIONS(9364), + [sym_newline] = ACTIONS(9366), + [anon_sym_COLON] = ACTIONS(9366), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9364), + [aux_sym_frm_property_statement_token1] = ACTIONS(9364), + [anon_sym_DOT] = ACTIONS(9364), + [anon_sym_BANG] = ACTIONS(9366), + [aux_sym__attribute_identifier_token1] = ACTIONS(9364), + [aux_sym_option_statement_token3] = ACTIONS(9364), + [aux_sym_type_declaration_token1] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9364), + [aux_sym_enum_declaration_token1] = ACTIONS(9364), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9364), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9364), + [aux_sym_declare_function_statement_token1] = ACTIONS(9364), + [aux_sym_preprocessor_const_token1] = ACTIONS(9364), + [aux_sym__property_get_header_token1] = ACTIONS(9364), + [aux_sym_event_declaration_token1] = ACTIONS(9364), + [sym_static_modifier] = ACTIONS(9364), + [sym__dim_keyword] = ACTIONS(9364), + [sym__redim_keyword] = ACTIONS(9364), + [aux_sym_get_accessor_token1] = ACTIONS(9364), + [aux_sym_set_accessor_token1] = ACTIONS(9364), + [aux_sym_const_declaration_token1] = ACTIONS(9364), + [anon_sym_LPAREN] = ACTIONS(9366), + [aux_sym_as_type_clause_token2] = ACTIONS(9364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9364), + [aux_sym_visibility_token1] = ACTIONS(9364), + [aux_sym_visibility_token2] = ACTIONS(9364), + [aux_sym_elseif_fragment_token1] = ACTIONS(9364), + [aux_sym_else_fragment_token1] = ACTIONS(9364), + [aux_sym_select_statement_token1] = ACTIONS(9364), + [aux_sym__for_header_token1] = ACTIONS(9364), + [aux_sym_do_statement_token1] = ACTIONS(9364), + [aux_sym_do_condition_token1] = ACTIONS(9364), + [aux_sym_with_statement_token1] = ACTIONS(9364), + [aux_sym_exit_statement_token1] = ACTIONS(9364), + [sym_end_statement] = ACTIONS(9366), + [aux_sym_on_goto_statement_token1] = ACTIONS(9364), + [aux_sym_on_goto_statement_token2] = ACTIONS(9364), + [aux_sym_on_error_statement_token2] = ACTIONS(9364), + [sym__ambiguous_redim_statement] = ACTIONS(9366), + [aux_sym_erase_statement_token1] = ACTIONS(9364), + [aux_sym_open_statement_token1] = ACTIONS(9364), + [aux_sym_file_mode_token2] = ACTIONS(9364), + [aux_sym_file_access_token2] = ACTIONS(9364), + [aux_sym_file_lock_token2] = ACTIONS(9364), + [aux_sym_print_statement_token1] = ACTIONS(9364), + [anon_sym_PLUS] = ACTIONS(9366), + [anon_sym_DASH] = ACTIONS(9364), + [anon_sym_QMARK] = ACTIONS(9366), + [aux_sym_close_statement_token1] = ACTIONS(9364), + [aux_sym_put_statement_token1] = ACTIONS(9364), + [aux_sym_unlock_statement_token1] = ACTIONS(9364), + [aux_sym_seek_statement_token1] = ACTIONS(9364), + [sym_reset_statement] = ACTIONS(9364), + [aux_sym_raise_event_statement_token1] = ACTIONS(9364), + [sym_stop_statement] = ACTIONS(9364), + [sym_beep_statement] = ACTIONS(9364), + [aux_sym_unload_statement_token1] = ACTIONS(9364), + [aux_sym_def_type_statement_token1] = ACTIONS(9364), + [aux_sym_def_type_statement_token2] = ACTIONS(9364), + [aux_sym_def_type_statement_token3] = ACTIONS(9364), + [aux_sym_def_type_statement_token4] = ACTIONS(9364), + [aux_sym_def_type_statement_token5] = ACTIONS(9364), + [aux_sym_def_type_statement_token6] = ACTIONS(9364), + [aux_sym_def_type_statement_token7] = ACTIONS(9364), + [aux_sym_def_type_statement_token8] = ACTIONS(9364), + [aux_sym_def_type_statement_token9] = ACTIONS(9364), + [aux_sym_def_type_statement_token10] = ACTIONS(9364), + [aux_sym_def_type_statement_token11] = ACTIONS(9364), + [aux_sym_def_type_statement_token12] = ACTIONS(9364), + [aux_sym_def_type_statement_token13] = ACTIONS(9364), + [aux_sym_def_type_statement_token14] = ACTIONS(9364), + [aux_sym_call_statement_token1] = ACTIONS(9364), + [sym__ambiguous_call_statement] = ACTIONS(9364), + [aux_sym_addressof_expression_token1] = ACTIONS(9364), + [aux_sym_type_of_expression_token1] = ACTIONS(9364), + [aux_sym_unary_expression_token1] = ACTIONS(9364), + [sym_string_literal] = ACTIONS(9366), + [sym_number_literal] = ACTIONS(9366), + [aux_sym_boolean_literal_token1] = ACTIONS(9364), + [aux_sym_boolean_literal_token2] = ACTIONS(9364), + [sym_nothing_literal] = ACTIONS(9364), + [sym_null_literal] = ACTIONS(9364), + [sym_empty_literal] = ACTIONS(9364), + [sym_date_literal] = ACTIONS(9366), + [anon_sym_POUND] = ACTIONS(9364), + }, + [STATE(4395)] = { + [sym_next_variable_list] = STATE(6591), + [sym__assignable_expression] = STATE(5463), + [sym__callable_expression] = STATE(5440), + [sym_call_expression] = STATE(5455), + [sym_member_expression] = STATE(6120), + [sym_qualified_member_expression] = STATE(5888), + [sym_implicit_member_expression] = STATE(5888), + [sym_identifier] = ACTIONS(9933), + [sym_newline] = ACTIONS(6848), + [anon_sym_COLON] = ACTIONS(6848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6850), + [aux_sym_frm_property_statement_token1] = ACTIONS(9935), + [anon_sym_DOT] = ACTIONS(9937), + [anon_sym_BANG] = ACTIONS(9939), + [aux_sym__attribute_identifier_token1] = ACTIONS(6850), + [aux_sym_option_statement_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6850), + [aux_sym_preprocessor_const_token1] = ACTIONS(6850), + [sym_static_modifier] = ACTIONS(6850), + [sym__dim_keyword] = ACTIONS(6850), + [sym__redim_keyword] = ACTIONS(6850), + [aux_sym_get_accessor_token1] = ACTIONS(6850), + [aux_sym_set_accessor_token1] = ACTIONS(6850), + [aux_sym_const_declaration_token1] = ACTIONS(6850), + [anon_sym_LPAREN] = ACTIONS(6848), + [aux_sym_as_type_clause_token2] = ACTIONS(6850), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9941), + [aux_sym_visibility_token1] = ACTIONS(6850), + [aux_sym_visibility_token2] = ACTIONS(6850), + [aux_sym_elseif_fragment_token1] = ACTIONS(6850), + [aux_sym_else_fragment_token1] = ACTIONS(6850), + [aux_sym_select_statement_token1] = ACTIONS(6850), + [aux_sym__for_header_token1] = ACTIONS(6850), + [aux_sym_do_statement_token1] = ACTIONS(6850), + [aux_sym_do_condition_token1] = ACTIONS(6850), + [aux_sym_with_statement_token1] = ACTIONS(6850), + [aux_sym_exit_statement_token1] = ACTIONS(6850), + [sym_end_statement] = ACTIONS(6848), + [aux_sym_on_goto_statement_token1] = ACTIONS(6850), + [aux_sym_on_goto_statement_token2] = ACTIONS(6850), + [aux_sym_on_error_statement_token2] = ACTIONS(6850), + [sym__ambiguous_redim_statement] = ACTIONS(6848), + [aux_sym_erase_statement_token1] = ACTIONS(6850), + [aux_sym_open_statement_token1] = ACTIONS(6850), + [aux_sym_file_mode_token2] = ACTIONS(6850), + [aux_sym_file_access_token2] = ACTIONS(6850), + [aux_sym_file_lock_token2] = ACTIONS(6850), + [aux_sym_print_statement_token1] = ACTIONS(6850), + [anon_sym_PLUS] = ACTIONS(6848), + [anon_sym_DASH] = ACTIONS(6850), + [anon_sym_QMARK] = ACTIONS(6848), + [aux_sym_close_statement_token1] = ACTIONS(6850), + [aux_sym_put_statement_token1] = ACTIONS(6850), + [aux_sym_unlock_statement_token1] = ACTIONS(6850), + [aux_sym_seek_statement_token1] = ACTIONS(6850), + [sym_reset_statement] = ACTIONS(6850), + [aux_sym_raise_event_statement_token1] = ACTIONS(6850), + [sym_stop_statement] = ACTIONS(6850), + [sym_beep_statement] = ACTIONS(6850), + [aux_sym_unload_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token2] = ACTIONS(6850), + [aux_sym_def_type_statement_token3] = ACTIONS(6850), + [aux_sym_def_type_statement_token4] = ACTIONS(6850), + [aux_sym_def_type_statement_token5] = ACTIONS(6850), + [aux_sym_def_type_statement_token6] = ACTIONS(6850), + [aux_sym_def_type_statement_token7] = ACTIONS(6850), + [aux_sym_def_type_statement_token8] = ACTIONS(6850), + [aux_sym_def_type_statement_token9] = ACTIONS(6850), + [aux_sym_def_type_statement_token10] = ACTIONS(6850), + [aux_sym_def_type_statement_token11] = ACTIONS(6850), + [aux_sym_def_type_statement_token12] = ACTIONS(6850), + [aux_sym_def_type_statement_token13] = ACTIONS(6850), + [aux_sym_def_type_statement_token14] = ACTIONS(6850), + [aux_sym_call_statement_token1] = ACTIONS(6850), + [sym__ambiguous_call_statement] = ACTIONS(6850), + [aux_sym_addressof_expression_token1] = ACTIONS(6850), + [aux_sym_type_of_expression_token1] = ACTIONS(6850), + [aux_sym_unary_expression_token1] = ACTIONS(6850), + [sym_string_literal] = ACTIONS(6848), + [sym_number_literal] = ACTIONS(6848), + [aux_sym_boolean_literal_token1] = ACTIONS(6850), + [aux_sym_boolean_literal_token2] = ACTIONS(6850), + [sym_nothing_literal] = ACTIONS(6850), + [sym_null_literal] = ACTIONS(6850), + [sym_empty_literal] = ACTIONS(6850), + [sym_date_literal] = ACTIONS(6848), + [anon_sym_POUND] = ACTIONS(6850), + }, + [STATE(4396)] = { + [sym_next_variable_list] = STATE(6594), + [sym__assignable_expression] = STATE(5463), + [sym__callable_expression] = STATE(5440), + [sym_call_expression] = STATE(5455), + [sym_member_expression] = STATE(6120), + [sym_qualified_member_expression] = STATE(5888), + [sym_implicit_member_expression] = STATE(5888), + [sym_identifier] = ACTIONS(9933), + [sym_newline] = ACTIONS(6822), + [anon_sym_COLON] = ACTIONS(6822), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6824), + [aux_sym_frm_property_statement_token1] = ACTIONS(9935), + [anon_sym_DOT] = ACTIONS(9937), + [anon_sym_BANG] = ACTIONS(9939), + [aux_sym__attribute_identifier_token1] = ACTIONS(6824), + [aux_sym_option_statement_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6824), + [aux_sym_preprocessor_const_token1] = ACTIONS(6824), + [sym_static_modifier] = ACTIONS(6824), + [sym__dim_keyword] = ACTIONS(6824), + [sym__redim_keyword] = ACTIONS(6824), + [aux_sym_get_accessor_token1] = ACTIONS(6824), + [aux_sym_set_accessor_token1] = ACTIONS(6824), + [aux_sym_const_declaration_token1] = ACTIONS(6824), + [anon_sym_LPAREN] = ACTIONS(6822), + [aux_sym_as_type_clause_token2] = ACTIONS(6824), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9941), + [aux_sym_visibility_token1] = ACTIONS(6824), + [aux_sym_visibility_token2] = ACTIONS(6824), + [aux_sym_elseif_fragment_token1] = ACTIONS(6824), + [aux_sym_else_fragment_token1] = ACTIONS(6824), + [aux_sym_select_statement_token1] = ACTIONS(6824), + [aux_sym__for_header_token1] = ACTIONS(6824), + [aux_sym_do_statement_token1] = ACTIONS(6824), + [aux_sym_do_condition_token1] = ACTIONS(6824), + [aux_sym_with_statement_token1] = ACTIONS(6824), + [aux_sym_exit_statement_token1] = ACTIONS(6824), + [sym_end_statement] = ACTIONS(6822), + [aux_sym_on_goto_statement_token1] = ACTIONS(6824), + [aux_sym_on_goto_statement_token2] = ACTIONS(6824), + [aux_sym_on_error_statement_token2] = ACTIONS(6824), + [sym__ambiguous_redim_statement] = ACTIONS(6822), + [aux_sym_erase_statement_token1] = ACTIONS(6824), + [aux_sym_open_statement_token1] = ACTIONS(6824), + [aux_sym_file_mode_token2] = ACTIONS(6824), + [aux_sym_file_access_token2] = ACTIONS(6824), + [aux_sym_file_lock_token2] = ACTIONS(6824), + [aux_sym_print_statement_token1] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6822), + [aux_sym_close_statement_token1] = ACTIONS(6824), + [aux_sym_put_statement_token1] = ACTIONS(6824), + [aux_sym_unlock_statement_token1] = ACTIONS(6824), + [aux_sym_seek_statement_token1] = ACTIONS(6824), + [sym_reset_statement] = ACTIONS(6824), + [aux_sym_raise_event_statement_token1] = ACTIONS(6824), + [sym_stop_statement] = ACTIONS(6824), + [sym_beep_statement] = ACTIONS(6824), + [aux_sym_unload_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token2] = ACTIONS(6824), + [aux_sym_def_type_statement_token3] = ACTIONS(6824), + [aux_sym_def_type_statement_token4] = ACTIONS(6824), + [aux_sym_def_type_statement_token5] = ACTIONS(6824), + [aux_sym_def_type_statement_token6] = ACTIONS(6824), + [aux_sym_def_type_statement_token7] = ACTIONS(6824), + [aux_sym_def_type_statement_token8] = ACTIONS(6824), + [aux_sym_def_type_statement_token9] = ACTIONS(6824), + [aux_sym_def_type_statement_token10] = ACTIONS(6824), + [aux_sym_def_type_statement_token11] = ACTIONS(6824), + [aux_sym_def_type_statement_token12] = ACTIONS(6824), + [aux_sym_def_type_statement_token13] = ACTIONS(6824), + [aux_sym_def_type_statement_token14] = ACTIONS(6824), + [aux_sym_call_statement_token1] = ACTIONS(6824), + [sym__ambiguous_call_statement] = ACTIONS(6824), + [aux_sym_addressof_expression_token1] = ACTIONS(6824), + [aux_sym_type_of_expression_token1] = ACTIONS(6824), + [aux_sym_unary_expression_token1] = ACTIONS(6824), + [sym_string_literal] = ACTIONS(6822), + [sym_number_literal] = ACTIONS(6822), + [aux_sym_boolean_literal_token1] = ACTIONS(6824), + [aux_sym_boolean_literal_token2] = ACTIONS(6824), + [sym_nothing_literal] = ACTIONS(6824), + [sym_null_literal] = ACTIONS(6824), + [sym_empty_literal] = ACTIONS(6824), + [sym_date_literal] = ACTIONS(6822), + [anon_sym_POUND] = ACTIONS(6824), + }, + [STATE(4397)] = { + [sym_identifier] = ACTIONS(9072), + [sym_newline] = ACTIONS(9074), + [anon_sym_COLON] = ACTIONS(9074), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9072), + [aux_sym_frm_property_statement_token1] = ACTIONS(9072), + [anon_sym_DOT] = ACTIONS(9072), + [anon_sym_BANG] = ACTIONS(9074), + [aux_sym__attribute_identifier_token1] = ACTIONS(9072), + [aux_sym_option_statement_token3] = ACTIONS(9072), + [aux_sym_type_declaration_token1] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9072), + [aux_sym_enum_declaration_token1] = ACTIONS(9072), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9072), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9072), + [aux_sym_declare_function_statement_token1] = ACTIONS(9072), + [aux_sym_preprocessor_const_token1] = ACTIONS(9072), + [aux_sym__property_get_header_token1] = ACTIONS(9072), + [aux_sym_event_declaration_token1] = ACTIONS(9072), + [sym_static_modifier] = ACTIONS(9072), + [sym__dim_keyword] = ACTIONS(9072), + [sym__redim_keyword] = ACTIONS(9072), + [aux_sym_get_accessor_token1] = ACTIONS(9072), + [aux_sym_set_accessor_token1] = ACTIONS(9072), + [aux_sym_const_declaration_token1] = ACTIONS(9072), + [anon_sym_LPAREN] = ACTIONS(9074), + [aux_sym_as_type_clause_token2] = ACTIONS(9072), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9072), + [aux_sym_visibility_token1] = ACTIONS(9072), + [aux_sym_visibility_token2] = ACTIONS(9072), + [aux_sym_elseif_fragment_token1] = ACTIONS(9072), + [aux_sym_else_fragment_token1] = ACTIONS(9072), + [aux_sym_select_statement_token1] = ACTIONS(9072), + [aux_sym__for_header_token1] = ACTIONS(9072), + [aux_sym_do_statement_token1] = ACTIONS(9072), + [aux_sym_do_condition_token1] = ACTIONS(9072), + [aux_sym_with_statement_token1] = ACTIONS(9072), + [aux_sym_exit_statement_token1] = ACTIONS(9072), + [sym_end_statement] = ACTIONS(9074), + [aux_sym_on_goto_statement_token1] = ACTIONS(9072), + [aux_sym_on_goto_statement_token2] = ACTIONS(9072), + [aux_sym_on_error_statement_token2] = ACTIONS(9072), + [sym__ambiguous_redim_statement] = ACTIONS(9074), + [aux_sym_erase_statement_token1] = ACTIONS(9072), + [aux_sym_open_statement_token1] = ACTIONS(9072), + [aux_sym_file_mode_token2] = ACTIONS(9072), + [aux_sym_file_access_token2] = ACTIONS(9072), + [aux_sym_file_lock_token2] = ACTIONS(9072), + [aux_sym_print_statement_token1] = ACTIONS(9072), + [anon_sym_PLUS] = ACTIONS(9074), + [anon_sym_DASH] = ACTIONS(9072), + [anon_sym_QMARK] = ACTIONS(9074), + [aux_sym_close_statement_token1] = ACTIONS(9072), + [aux_sym_put_statement_token1] = ACTIONS(9072), + [aux_sym_unlock_statement_token1] = ACTIONS(9072), + [aux_sym_seek_statement_token1] = ACTIONS(9072), + [sym_reset_statement] = ACTIONS(9072), + [aux_sym_raise_event_statement_token1] = ACTIONS(9072), + [sym_stop_statement] = ACTIONS(9072), + [sym_beep_statement] = ACTIONS(9072), + [aux_sym_unload_statement_token1] = ACTIONS(9072), + [aux_sym_def_type_statement_token1] = ACTIONS(9072), + [aux_sym_def_type_statement_token2] = ACTIONS(9072), + [aux_sym_def_type_statement_token3] = ACTIONS(9072), + [aux_sym_def_type_statement_token4] = ACTIONS(9072), + [aux_sym_def_type_statement_token5] = ACTIONS(9072), + [aux_sym_def_type_statement_token6] = ACTIONS(9072), + [aux_sym_def_type_statement_token7] = ACTIONS(9072), + [aux_sym_def_type_statement_token8] = ACTIONS(9072), + [aux_sym_def_type_statement_token9] = ACTIONS(9072), + [aux_sym_def_type_statement_token10] = ACTIONS(9072), + [aux_sym_def_type_statement_token11] = ACTIONS(9072), + [aux_sym_def_type_statement_token12] = ACTIONS(9072), + [aux_sym_def_type_statement_token13] = ACTIONS(9072), + [aux_sym_def_type_statement_token14] = ACTIONS(9072), + [aux_sym_call_statement_token1] = ACTIONS(9072), + [sym__ambiguous_call_statement] = ACTIONS(9072), + [aux_sym_addressof_expression_token1] = ACTIONS(9072), + [aux_sym_type_of_expression_token1] = ACTIONS(9072), + [aux_sym_unary_expression_token1] = ACTIONS(9072), + [sym_string_literal] = ACTIONS(9074), + [sym_number_literal] = ACTIONS(9074), + [aux_sym_boolean_literal_token1] = ACTIONS(9072), + [aux_sym_boolean_literal_token2] = ACTIONS(9072), + [sym_nothing_literal] = ACTIONS(9072), + [sym_null_literal] = ACTIONS(9072), + [sym_empty_literal] = ACTIONS(9072), + [sym_date_literal] = ACTIONS(9074), + [anon_sym_POUND] = ACTIONS(9072), + }, + [STATE(4398)] = { + [sym_identifier] = ACTIONS(9370), + [sym_newline] = ACTIONS(9372), + [anon_sym_COLON] = ACTIONS(9372), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9370), + [aux_sym_frm_property_statement_token1] = ACTIONS(9370), + [anon_sym_DOT] = ACTIONS(9370), + [anon_sym_BANG] = ACTIONS(9372), + [aux_sym__attribute_identifier_token1] = ACTIONS(9370), + [aux_sym_option_statement_token3] = ACTIONS(9370), + [aux_sym_type_declaration_token1] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9370), + [aux_sym_enum_declaration_token1] = ACTIONS(9370), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9370), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9370), + [aux_sym_declare_function_statement_token1] = ACTIONS(9370), + [aux_sym_preprocessor_const_token1] = ACTIONS(9370), + [aux_sym__property_get_header_token1] = ACTIONS(9370), + [aux_sym_event_declaration_token1] = ACTIONS(9370), + [sym_static_modifier] = ACTIONS(9370), + [sym__dim_keyword] = ACTIONS(9370), + [sym__redim_keyword] = ACTIONS(9370), + [aux_sym_get_accessor_token1] = ACTIONS(9370), + [aux_sym_set_accessor_token1] = ACTIONS(9370), + [aux_sym_const_declaration_token1] = ACTIONS(9370), + [anon_sym_LPAREN] = ACTIONS(9372), + [aux_sym_as_type_clause_token2] = ACTIONS(9370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9370), + [aux_sym_visibility_token1] = ACTIONS(9370), + [aux_sym_visibility_token2] = ACTIONS(9370), + [aux_sym_elseif_fragment_token1] = ACTIONS(9370), + [aux_sym_else_fragment_token1] = ACTIONS(9370), + [aux_sym_select_statement_token1] = ACTIONS(9370), + [aux_sym__for_header_token1] = ACTIONS(9370), + [aux_sym_do_statement_token1] = ACTIONS(9370), + [aux_sym_do_condition_token1] = ACTIONS(9370), + [aux_sym_with_statement_token1] = ACTIONS(9370), + [aux_sym_exit_statement_token1] = ACTIONS(9370), + [sym_end_statement] = ACTIONS(9372), + [aux_sym_on_goto_statement_token1] = ACTIONS(9370), + [aux_sym_on_goto_statement_token2] = ACTIONS(9370), + [aux_sym_on_error_statement_token2] = ACTIONS(9370), + [sym__ambiguous_redim_statement] = ACTIONS(9372), + [aux_sym_erase_statement_token1] = ACTIONS(9370), + [aux_sym_open_statement_token1] = ACTIONS(9370), + [aux_sym_file_mode_token2] = ACTIONS(9370), + [aux_sym_file_access_token2] = ACTIONS(9370), + [aux_sym_file_lock_token2] = ACTIONS(9370), + [aux_sym_print_statement_token1] = ACTIONS(9370), + [anon_sym_PLUS] = ACTIONS(9372), + [anon_sym_DASH] = ACTIONS(9370), + [anon_sym_QMARK] = ACTIONS(9372), + [aux_sym_close_statement_token1] = ACTIONS(9370), + [aux_sym_put_statement_token1] = ACTIONS(9370), + [aux_sym_unlock_statement_token1] = ACTIONS(9370), + [aux_sym_seek_statement_token1] = ACTIONS(9370), + [sym_reset_statement] = ACTIONS(9370), + [aux_sym_raise_event_statement_token1] = ACTIONS(9370), + [sym_stop_statement] = ACTIONS(9370), + [sym_beep_statement] = ACTIONS(9370), + [aux_sym_unload_statement_token1] = ACTIONS(9370), + [aux_sym_def_type_statement_token1] = ACTIONS(9370), + [aux_sym_def_type_statement_token2] = ACTIONS(9370), + [aux_sym_def_type_statement_token3] = ACTIONS(9370), + [aux_sym_def_type_statement_token4] = ACTIONS(9370), + [aux_sym_def_type_statement_token5] = ACTIONS(9370), + [aux_sym_def_type_statement_token6] = ACTIONS(9370), + [aux_sym_def_type_statement_token7] = ACTIONS(9370), + [aux_sym_def_type_statement_token8] = ACTIONS(9370), + [aux_sym_def_type_statement_token9] = ACTIONS(9370), + [aux_sym_def_type_statement_token10] = ACTIONS(9370), + [aux_sym_def_type_statement_token11] = ACTIONS(9370), + [aux_sym_def_type_statement_token12] = ACTIONS(9370), + [aux_sym_def_type_statement_token13] = ACTIONS(9370), + [aux_sym_def_type_statement_token14] = ACTIONS(9370), + [aux_sym_call_statement_token1] = ACTIONS(9370), + [sym__ambiguous_call_statement] = ACTIONS(9370), + [aux_sym_addressof_expression_token1] = ACTIONS(9370), + [aux_sym_type_of_expression_token1] = ACTIONS(9370), + [aux_sym_unary_expression_token1] = ACTIONS(9370), + [sym_string_literal] = ACTIONS(9372), + [sym_number_literal] = ACTIONS(9372), + [aux_sym_boolean_literal_token1] = ACTIONS(9370), + [aux_sym_boolean_literal_token2] = ACTIONS(9370), + [sym_nothing_literal] = ACTIONS(9370), + [sym_null_literal] = ACTIONS(9370), + [sym_empty_literal] = ACTIONS(9370), + [sym_date_literal] = ACTIONS(9372), + [anon_sym_POUND] = ACTIONS(9370), + }, + [STATE(4399)] = { + [sym_identifier] = ACTIONS(8729), + [sym_newline] = ACTIONS(8731), + [anon_sym_COLON] = ACTIONS(8731), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8729), + [aux_sym_frm_property_statement_token1] = ACTIONS(8729), + [anon_sym_DOT] = ACTIONS(8729), + [anon_sym_BANG] = ACTIONS(8731), + [aux_sym__attribute_identifier_token1] = ACTIONS(8729), + [aux_sym_option_statement_token3] = ACTIONS(8729), + [aux_sym_type_declaration_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8729), + [aux_sym_enum_declaration_token1] = ACTIONS(8729), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8729), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8729), + [aux_sym_declare_function_statement_token1] = ACTIONS(8729), + [aux_sym_preprocessor_const_token1] = ACTIONS(8729), + [aux_sym__property_get_header_token1] = ACTIONS(8729), + [aux_sym_event_declaration_token1] = ACTIONS(8729), + [sym_static_modifier] = ACTIONS(8729), + [sym__dim_keyword] = ACTIONS(8729), + [sym__redim_keyword] = ACTIONS(8729), + [aux_sym_get_accessor_token1] = ACTIONS(8729), + [aux_sym_set_accessor_token1] = ACTIONS(8729), + [aux_sym_const_declaration_token1] = ACTIONS(8729), + [anon_sym_LPAREN] = ACTIONS(8731), + [aux_sym_as_type_clause_token2] = ACTIONS(8729), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8729), + [aux_sym_visibility_token1] = ACTIONS(8729), + [aux_sym_visibility_token2] = ACTIONS(8729), + [aux_sym_elseif_fragment_token1] = ACTIONS(8729), + [aux_sym_else_fragment_token1] = ACTIONS(8729), + [aux_sym_select_statement_token1] = ACTIONS(8729), + [aux_sym__for_header_token1] = ACTIONS(8729), + [aux_sym_do_statement_token1] = ACTIONS(8729), + [aux_sym_do_condition_token1] = ACTIONS(8729), + [aux_sym_with_statement_token1] = ACTIONS(8729), + [aux_sym_exit_statement_token1] = ACTIONS(8729), + [sym_end_statement] = ACTIONS(8731), + [aux_sym_on_goto_statement_token1] = ACTIONS(8729), + [aux_sym_on_goto_statement_token2] = ACTIONS(8729), + [aux_sym_on_error_statement_token2] = ACTIONS(8729), + [sym__ambiguous_redim_statement] = ACTIONS(8731), + [aux_sym_erase_statement_token1] = ACTIONS(8729), + [aux_sym_open_statement_token1] = ACTIONS(8729), + [aux_sym_file_mode_token2] = ACTIONS(8729), + [aux_sym_file_access_token2] = ACTIONS(8729), + [aux_sym_file_lock_token2] = ACTIONS(8729), + [aux_sym_print_statement_token1] = ACTIONS(8729), + [anon_sym_PLUS] = ACTIONS(8731), + [anon_sym_DASH] = ACTIONS(8729), + [anon_sym_QMARK] = ACTIONS(8731), + [aux_sym_close_statement_token1] = ACTIONS(8729), + [aux_sym_put_statement_token1] = ACTIONS(8729), + [aux_sym_unlock_statement_token1] = ACTIONS(8729), + [aux_sym_seek_statement_token1] = ACTIONS(8729), + [sym_reset_statement] = ACTIONS(8729), + [aux_sym_raise_event_statement_token1] = ACTIONS(8729), + [sym_stop_statement] = ACTIONS(8729), + [sym_beep_statement] = ACTIONS(8729), + [aux_sym_unload_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token2] = ACTIONS(8729), + [aux_sym_def_type_statement_token3] = ACTIONS(8729), + [aux_sym_def_type_statement_token4] = ACTIONS(8729), + [aux_sym_def_type_statement_token5] = ACTIONS(8729), + [aux_sym_def_type_statement_token6] = ACTIONS(8729), + [aux_sym_def_type_statement_token7] = ACTIONS(8729), + [aux_sym_def_type_statement_token8] = ACTIONS(8729), + [aux_sym_def_type_statement_token9] = ACTIONS(8729), + [aux_sym_def_type_statement_token10] = ACTIONS(8729), + [aux_sym_def_type_statement_token11] = ACTIONS(8729), + [aux_sym_def_type_statement_token12] = ACTIONS(8729), + [aux_sym_def_type_statement_token13] = ACTIONS(8729), + [aux_sym_def_type_statement_token14] = ACTIONS(8729), + [aux_sym_call_statement_token1] = ACTIONS(8729), + [sym__ambiguous_call_statement] = ACTIONS(8729), + [aux_sym_addressof_expression_token1] = ACTIONS(8729), + [aux_sym_type_of_expression_token1] = ACTIONS(8729), + [aux_sym_unary_expression_token1] = ACTIONS(8729), + [sym_string_literal] = ACTIONS(8731), + [sym_number_literal] = ACTIONS(8731), + [aux_sym_boolean_literal_token1] = ACTIONS(8729), + [aux_sym_boolean_literal_token2] = ACTIONS(8729), + [sym_nothing_literal] = ACTIONS(8729), + [sym_null_literal] = ACTIONS(8729), + [sym_empty_literal] = ACTIONS(8729), + [sym_date_literal] = ACTIONS(8731), + [anon_sym_POUND] = ACTIONS(8729), + }, + [STATE(4400)] = { + [sym_fixed_string_length] = STATE(4634), + [sym_array_bounds] = STATE(4749), + [sym_identifier] = ACTIONS(7134), + [sym_newline] = ACTIONS(7136), + [anon_sym_COLON] = ACTIONS(7136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7134), + [aux_sym_frm_property_statement_token1] = ACTIONS(7134), + [anon_sym_EQ] = ACTIONS(7136), + [anon_sym_DOT] = ACTIONS(7134), + [anon_sym_BANG] = ACTIONS(7136), + [aux_sym__attribute_identifier_token1] = ACTIONS(7134), + [aux_sym_option_statement_token3] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7134), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7134), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7134), + [aux_sym_preprocessor_const_token1] = ACTIONS(7134), + [sym_static_modifier] = ACTIONS(7134), + [sym__dim_keyword] = ACTIONS(7134), + [sym__redim_keyword] = ACTIONS(7134), + [aux_sym_get_accessor_token1] = ACTIONS(7134), + [aux_sym_set_accessor_token1] = ACTIONS(7134), + [anon_sym_COMMA] = ACTIONS(7136), + [aux_sym_const_declaration_token1] = ACTIONS(7134), + [anon_sym_LPAREN] = ACTIONS(9943), + [aux_sym_as_type_clause_token2] = ACTIONS(7134), + [anon_sym_STAR] = ACTIONS(9945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7134), + [aux_sym_visibility_token1] = ACTIONS(7134), + [aux_sym_visibility_token2] = ACTIONS(7134), + [aux_sym_elseif_fragment_token1] = ACTIONS(7134), + [aux_sym_else_fragment_token1] = ACTIONS(7134), + [aux_sym_select_statement_token1] = ACTIONS(7134), + [aux_sym__for_header_token1] = ACTIONS(7134), + [aux_sym_do_statement_token1] = ACTIONS(7134), + [aux_sym_do_condition_token1] = ACTIONS(7134), + [aux_sym_with_statement_token1] = ACTIONS(7134), + [aux_sym_exit_statement_token1] = ACTIONS(7134), + [sym_end_statement] = ACTIONS(7136), + [aux_sym_on_goto_statement_token1] = ACTIONS(7134), + [aux_sym_on_goto_statement_token2] = ACTIONS(7134), + [aux_sym_on_error_statement_token2] = ACTIONS(7134), + [sym__ambiguous_redim_statement] = ACTIONS(7136), + [aux_sym_erase_statement_token1] = ACTIONS(7134), + [aux_sym_open_statement_token1] = ACTIONS(7134), + [aux_sym_file_mode_token2] = ACTIONS(7134), + [aux_sym_file_access_token2] = ACTIONS(7134), + [aux_sym_file_lock_token2] = ACTIONS(7134), + [aux_sym_print_statement_token1] = ACTIONS(7134), + [anon_sym_PLUS] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7134), + [anon_sym_QMARK] = ACTIONS(7136), + [aux_sym_close_statement_token1] = ACTIONS(7134), + [aux_sym_put_statement_token1] = ACTIONS(7134), + [aux_sym_unlock_statement_token1] = ACTIONS(7134), + [aux_sym_seek_statement_token1] = ACTIONS(7134), + [sym_reset_statement] = ACTIONS(7134), + [aux_sym_raise_event_statement_token1] = ACTIONS(7134), + [sym_stop_statement] = ACTIONS(7134), + [sym_beep_statement] = ACTIONS(7134), + [aux_sym_unload_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token2] = ACTIONS(7134), + [aux_sym_def_type_statement_token3] = ACTIONS(7134), + [aux_sym_def_type_statement_token4] = ACTIONS(7134), + [aux_sym_def_type_statement_token5] = ACTIONS(7134), + [aux_sym_def_type_statement_token6] = ACTIONS(7134), + [aux_sym_def_type_statement_token7] = ACTIONS(7134), + [aux_sym_def_type_statement_token8] = ACTIONS(7134), + [aux_sym_def_type_statement_token9] = ACTIONS(7134), + [aux_sym_def_type_statement_token10] = ACTIONS(7134), + [aux_sym_def_type_statement_token11] = ACTIONS(7134), + [aux_sym_def_type_statement_token12] = ACTIONS(7134), + [aux_sym_def_type_statement_token13] = ACTIONS(7134), + [aux_sym_def_type_statement_token14] = ACTIONS(7134), + [aux_sym_call_statement_token1] = ACTIONS(7134), + [sym__ambiguous_call_statement] = ACTIONS(7134), + [aux_sym_addressof_expression_token1] = ACTIONS(7134), + [aux_sym_type_of_expression_token1] = ACTIONS(7134), + [aux_sym_unary_expression_token1] = ACTIONS(7134), + [sym_string_literal] = ACTIONS(7136), + [sym_number_literal] = ACTIONS(7136), + [aux_sym_boolean_literal_token1] = ACTIONS(7134), + [aux_sym_boolean_literal_token2] = ACTIONS(7134), + [sym_nothing_literal] = ACTIONS(7134), + [sym_null_literal] = ACTIONS(7134), + [sym_empty_literal] = ACTIONS(7134), + [sym_date_literal] = ACTIONS(7136), + [anon_sym_POUND] = ACTIONS(7134), + }, + [STATE(4401)] = { + [sym_fixed_string_length] = STATE(4638), + [sym_array_bounds] = STATE(4754), + [sym_identifier] = ACTIONS(7230), + [sym_newline] = ACTIONS(7232), + [anon_sym_COLON] = ACTIONS(7232), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7230), + [aux_sym_frm_property_statement_token1] = ACTIONS(7230), + [anon_sym_EQ] = ACTIONS(7232), + [anon_sym_DOT] = ACTIONS(7230), + [anon_sym_BANG] = ACTIONS(7232), + [aux_sym__attribute_identifier_token1] = ACTIONS(7230), + [aux_sym_option_statement_token3] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7230), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7230), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7230), + [aux_sym_preprocessor_const_token1] = ACTIONS(7230), + [sym_static_modifier] = ACTIONS(7230), + [sym__dim_keyword] = ACTIONS(7230), + [sym__redim_keyword] = ACTIONS(7230), + [aux_sym_get_accessor_token1] = ACTIONS(7230), + [aux_sym_set_accessor_token1] = ACTIONS(7230), + [anon_sym_COMMA] = ACTIONS(7232), + [aux_sym_const_declaration_token1] = ACTIONS(7230), + [anon_sym_LPAREN] = ACTIONS(9943), + [aux_sym_as_type_clause_token2] = ACTIONS(7230), + [anon_sym_STAR] = ACTIONS(9945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7230), + [aux_sym_visibility_token1] = ACTIONS(7230), + [aux_sym_visibility_token2] = ACTIONS(7230), + [aux_sym_elseif_fragment_token1] = ACTIONS(7230), + [aux_sym_else_fragment_token1] = ACTIONS(7230), + [aux_sym_select_statement_token1] = ACTIONS(7230), + [aux_sym__for_header_token1] = ACTIONS(7230), + [aux_sym_do_statement_token1] = ACTIONS(7230), + [aux_sym_do_condition_token1] = ACTIONS(7230), + [aux_sym_with_statement_token1] = ACTIONS(7230), + [aux_sym_exit_statement_token1] = ACTIONS(7230), + [sym_end_statement] = ACTIONS(7232), + [aux_sym_on_goto_statement_token1] = ACTIONS(7230), + [aux_sym_on_goto_statement_token2] = ACTIONS(7230), + [aux_sym_on_error_statement_token2] = ACTIONS(7230), + [sym__ambiguous_redim_statement] = ACTIONS(7232), + [aux_sym_erase_statement_token1] = ACTIONS(7230), + [aux_sym_open_statement_token1] = ACTIONS(7230), + [aux_sym_file_mode_token2] = ACTIONS(7230), + [aux_sym_file_access_token2] = ACTIONS(7230), + [aux_sym_file_lock_token2] = ACTIONS(7230), + [aux_sym_print_statement_token1] = ACTIONS(7230), + [anon_sym_PLUS] = ACTIONS(7232), + [anon_sym_DASH] = ACTIONS(7230), + [anon_sym_QMARK] = ACTIONS(7232), + [aux_sym_close_statement_token1] = ACTIONS(7230), + [aux_sym_put_statement_token1] = ACTIONS(7230), + [aux_sym_unlock_statement_token1] = ACTIONS(7230), + [aux_sym_seek_statement_token1] = ACTIONS(7230), + [sym_reset_statement] = ACTIONS(7230), + [aux_sym_raise_event_statement_token1] = ACTIONS(7230), + [sym_stop_statement] = ACTIONS(7230), + [sym_beep_statement] = ACTIONS(7230), + [aux_sym_unload_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token2] = ACTIONS(7230), + [aux_sym_def_type_statement_token3] = ACTIONS(7230), + [aux_sym_def_type_statement_token4] = ACTIONS(7230), + [aux_sym_def_type_statement_token5] = ACTIONS(7230), + [aux_sym_def_type_statement_token6] = ACTIONS(7230), + [aux_sym_def_type_statement_token7] = ACTIONS(7230), + [aux_sym_def_type_statement_token8] = ACTIONS(7230), + [aux_sym_def_type_statement_token9] = ACTIONS(7230), + [aux_sym_def_type_statement_token10] = ACTIONS(7230), + [aux_sym_def_type_statement_token11] = ACTIONS(7230), + [aux_sym_def_type_statement_token12] = ACTIONS(7230), + [aux_sym_def_type_statement_token13] = ACTIONS(7230), + [aux_sym_def_type_statement_token14] = ACTIONS(7230), + [aux_sym_call_statement_token1] = ACTIONS(7230), + [sym__ambiguous_call_statement] = ACTIONS(7230), + [aux_sym_addressof_expression_token1] = ACTIONS(7230), + [aux_sym_type_of_expression_token1] = ACTIONS(7230), + [aux_sym_unary_expression_token1] = ACTIONS(7230), + [sym_string_literal] = ACTIONS(7232), + [sym_number_literal] = ACTIONS(7232), + [aux_sym_boolean_literal_token1] = ACTIONS(7230), + [aux_sym_boolean_literal_token2] = ACTIONS(7230), + [sym_nothing_literal] = ACTIONS(7230), + [sym_null_literal] = ACTIONS(7230), + [sym_empty_literal] = ACTIONS(7230), + [sym_date_literal] = ACTIONS(7232), + [anon_sym_POUND] = ACTIONS(7230), + }, + [STATE(4402)] = { + [sym_identifier] = ACTIONS(8745), + [sym_newline] = ACTIONS(8747), + [anon_sym_COLON] = ACTIONS(8747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8745), + [aux_sym_frm_property_statement_token1] = ACTIONS(8745), + [anon_sym_DOT] = ACTIONS(8745), + [anon_sym_BANG] = ACTIONS(8747), + [aux_sym__attribute_identifier_token1] = ACTIONS(8745), + [aux_sym_option_statement_token3] = ACTIONS(8745), + [aux_sym_type_declaration_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8745), + [aux_sym_enum_declaration_token1] = ACTIONS(8745), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8745), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8745), + [aux_sym_declare_function_statement_token1] = ACTIONS(8745), + [aux_sym_preprocessor_const_token1] = ACTIONS(8745), + [aux_sym__property_get_header_token1] = ACTIONS(8745), + [aux_sym_event_declaration_token1] = ACTIONS(8745), + [sym_static_modifier] = ACTIONS(8745), + [sym__dim_keyword] = ACTIONS(8745), + [sym__redim_keyword] = ACTIONS(8745), + [aux_sym_get_accessor_token1] = ACTIONS(8745), + [aux_sym_set_accessor_token1] = ACTIONS(8745), + [aux_sym_const_declaration_token1] = ACTIONS(8745), + [anon_sym_LPAREN] = ACTIONS(8747), + [aux_sym_as_type_clause_token2] = ACTIONS(8745), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8745), + [aux_sym_visibility_token1] = ACTIONS(8745), + [aux_sym_visibility_token2] = ACTIONS(8745), + [aux_sym_elseif_fragment_token1] = ACTIONS(8745), + [aux_sym_else_fragment_token1] = ACTIONS(8745), + [aux_sym_select_statement_token1] = ACTIONS(8745), + [aux_sym__for_header_token1] = ACTIONS(8745), + [aux_sym_do_statement_token1] = ACTIONS(8745), + [aux_sym_do_condition_token1] = ACTIONS(8745), + [aux_sym_with_statement_token1] = ACTIONS(8745), + [aux_sym_exit_statement_token1] = ACTIONS(8745), + [sym_end_statement] = ACTIONS(8747), + [aux_sym_on_goto_statement_token1] = ACTIONS(8745), + [aux_sym_on_goto_statement_token2] = ACTIONS(8745), + [aux_sym_on_error_statement_token2] = ACTIONS(8745), + [sym__ambiguous_redim_statement] = ACTIONS(8747), + [aux_sym_erase_statement_token1] = ACTIONS(8745), + [aux_sym_open_statement_token1] = ACTIONS(8745), + [aux_sym_file_mode_token2] = ACTIONS(8745), + [aux_sym_file_access_token2] = ACTIONS(8745), + [aux_sym_file_lock_token2] = ACTIONS(8745), + [aux_sym_print_statement_token1] = ACTIONS(8745), + [anon_sym_PLUS] = ACTIONS(8747), + [anon_sym_DASH] = ACTIONS(8745), + [anon_sym_QMARK] = ACTIONS(8747), + [aux_sym_close_statement_token1] = ACTIONS(8745), + [aux_sym_put_statement_token1] = ACTIONS(8745), + [aux_sym_unlock_statement_token1] = ACTIONS(8745), + [aux_sym_seek_statement_token1] = ACTIONS(8745), + [sym_reset_statement] = ACTIONS(8745), + [aux_sym_raise_event_statement_token1] = ACTIONS(8745), + [sym_stop_statement] = ACTIONS(8745), + [sym_beep_statement] = ACTIONS(8745), + [aux_sym_unload_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token2] = ACTIONS(8745), + [aux_sym_def_type_statement_token3] = ACTIONS(8745), + [aux_sym_def_type_statement_token4] = ACTIONS(8745), + [aux_sym_def_type_statement_token5] = ACTIONS(8745), + [aux_sym_def_type_statement_token6] = ACTIONS(8745), + [aux_sym_def_type_statement_token7] = ACTIONS(8745), + [aux_sym_def_type_statement_token8] = ACTIONS(8745), + [aux_sym_def_type_statement_token9] = ACTIONS(8745), + [aux_sym_def_type_statement_token10] = ACTIONS(8745), + [aux_sym_def_type_statement_token11] = ACTIONS(8745), + [aux_sym_def_type_statement_token12] = ACTIONS(8745), + [aux_sym_def_type_statement_token13] = ACTIONS(8745), + [aux_sym_def_type_statement_token14] = ACTIONS(8745), + [aux_sym_call_statement_token1] = ACTIONS(8745), + [sym__ambiguous_call_statement] = ACTIONS(8745), + [aux_sym_addressof_expression_token1] = ACTIONS(8745), + [aux_sym_type_of_expression_token1] = ACTIONS(8745), + [aux_sym_unary_expression_token1] = ACTIONS(8745), + [sym_string_literal] = ACTIONS(8747), + [sym_number_literal] = ACTIONS(8747), + [aux_sym_boolean_literal_token1] = ACTIONS(8745), + [aux_sym_boolean_literal_token2] = ACTIONS(8745), + [sym_nothing_literal] = ACTIONS(8745), + [sym_null_literal] = ACTIONS(8745), + [sym_empty_literal] = ACTIONS(8745), + [sym_date_literal] = ACTIONS(8747), + [anon_sym_POUND] = ACTIONS(8745), + }, + [STATE(4403)] = { + [sym_identifier] = ACTIONS(8312), + [sym_newline] = ACTIONS(8314), + [anon_sym_COLON] = ACTIONS(8314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8312), + [aux_sym_frm_property_statement_token1] = ACTIONS(8312), + [anon_sym_DOT] = ACTIONS(8312), + [anon_sym_BANG] = ACTIONS(8314), + [aux_sym__attribute_identifier_token1] = ACTIONS(8312), + [aux_sym_option_statement_token3] = ACTIONS(8312), + [aux_sym_type_declaration_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8312), + [aux_sym_enum_declaration_token1] = ACTIONS(8312), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8312), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8312), + [aux_sym_declare_function_statement_token1] = ACTIONS(8312), + [aux_sym_preprocessor_const_token1] = ACTIONS(8312), + [aux_sym__property_get_header_token1] = ACTIONS(8312), + [aux_sym_event_declaration_token1] = ACTIONS(8312), + [sym_static_modifier] = ACTIONS(8312), + [sym__dim_keyword] = ACTIONS(8312), + [sym__redim_keyword] = ACTIONS(8312), + [aux_sym_get_accessor_token1] = ACTIONS(8312), + [aux_sym_set_accessor_token1] = ACTIONS(8312), + [aux_sym_const_declaration_token1] = ACTIONS(8312), + [anon_sym_LPAREN] = ACTIONS(8314), + [aux_sym_as_type_clause_token2] = ACTIONS(8312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8312), + [aux_sym_visibility_token1] = ACTIONS(8312), + [aux_sym_visibility_token2] = ACTIONS(8312), + [aux_sym_elseif_fragment_token1] = ACTIONS(8312), + [aux_sym_else_fragment_token1] = ACTIONS(8312), + [aux_sym_select_statement_token1] = ACTIONS(8312), + [aux_sym__for_header_token1] = ACTIONS(8312), + [aux_sym_do_statement_token1] = ACTIONS(8312), + [aux_sym_do_condition_token1] = ACTIONS(8312), + [aux_sym_with_statement_token1] = ACTIONS(8312), + [aux_sym_exit_statement_token1] = ACTIONS(8312), + [sym_end_statement] = ACTIONS(8314), + [aux_sym_on_goto_statement_token1] = ACTIONS(8312), + [aux_sym_on_goto_statement_token2] = ACTIONS(8312), + [aux_sym_on_error_statement_token2] = ACTIONS(8312), + [sym__ambiguous_redim_statement] = ACTIONS(8314), + [aux_sym_erase_statement_token1] = ACTIONS(8312), + [aux_sym_open_statement_token1] = ACTIONS(8312), + [aux_sym_file_mode_token2] = ACTIONS(8312), + [aux_sym_file_access_token2] = ACTIONS(8312), + [aux_sym_file_lock_token2] = ACTIONS(8312), + [aux_sym_print_statement_token1] = ACTIONS(8312), + [anon_sym_PLUS] = ACTIONS(8314), + [anon_sym_DASH] = ACTIONS(8312), + [anon_sym_QMARK] = ACTIONS(8314), + [aux_sym_close_statement_token1] = ACTIONS(8312), + [aux_sym_put_statement_token1] = ACTIONS(8312), + [aux_sym_unlock_statement_token1] = ACTIONS(8312), + [aux_sym_seek_statement_token1] = ACTIONS(8312), + [sym_reset_statement] = ACTIONS(8312), + [aux_sym_raise_event_statement_token1] = ACTIONS(8312), + [sym_stop_statement] = ACTIONS(8312), + [sym_beep_statement] = ACTIONS(8312), + [aux_sym_unload_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token2] = ACTIONS(8312), + [aux_sym_def_type_statement_token3] = ACTIONS(8312), + [aux_sym_def_type_statement_token4] = ACTIONS(8312), + [aux_sym_def_type_statement_token5] = ACTIONS(8312), + [aux_sym_def_type_statement_token6] = ACTIONS(8312), + [aux_sym_def_type_statement_token7] = ACTIONS(8312), + [aux_sym_def_type_statement_token8] = ACTIONS(8312), + [aux_sym_def_type_statement_token9] = ACTIONS(8312), + [aux_sym_def_type_statement_token10] = ACTIONS(8312), + [aux_sym_def_type_statement_token11] = ACTIONS(8312), + [aux_sym_def_type_statement_token12] = ACTIONS(8312), + [aux_sym_def_type_statement_token13] = ACTIONS(8312), + [aux_sym_def_type_statement_token14] = ACTIONS(8312), + [aux_sym_call_statement_token1] = ACTIONS(8312), + [sym__ambiguous_call_statement] = ACTIONS(8312), + [aux_sym_addressof_expression_token1] = ACTIONS(8312), + [aux_sym_type_of_expression_token1] = ACTIONS(8312), + [aux_sym_unary_expression_token1] = ACTIONS(8312), + [sym_string_literal] = ACTIONS(8314), + [sym_number_literal] = ACTIONS(8314), + [aux_sym_boolean_literal_token1] = ACTIONS(8312), + [aux_sym_boolean_literal_token2] = ACTIONS(8312), + [sym_nothing_literal] = ACTIONS(8312), + [sym_null_literal] = ACTIONS(8312), + [sym_empty_literal] = ACTIONS(8312), + [sym_date_literal] = ACTIONS(8314), + [anon_sym_POUND] = ACTIONS(8312), + }, + [STATE(4404)] = { + [sym_identifier] = ACTIONS(9156), + [sym_newline] = ACTIONS(9158), + [anon_sym_COLON] = ACTIONS(9158), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9156), + [aux_sym_frm_property_statement_token1] = ACTIONS(9156), + [anon_sym_DOT] = ACTIONS(9156), + [anon_sym_BANG] = ACTIONS(9158), + [aux_sym__attribute_identifier_token1] = ACTIONS(9156), + [aux_sym_option_statement_token3] = ACTIONS(9156), + [aux_sym_type_declaration_token1] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9156), + [aux_sym_enum_declaration_token1] = ACTIONS(9156), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9156), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9156), + [aux_sym_declare_function_statement_token1] = ACTIONS(9156), + [aux_sym_preprocessor_const_token1] = ACTIONS(9156), + [aux_sym__property_get_header_token1] = ACTIONS(9156), + [aux_sym_event_declaration_token1] = ACTIONS(9156), + [sym_static_modifier] = ACTIONS(9156), + [sym__dim_keyword] = ACTIONS(9156), + [sym__redim_keyword] = ACTIONS(9156), + [aux_sym_get_accessor_token1] = ACTIONS(9156), + [aux_sym_set_accessor_token1] = ACTIONS(9156), + [aux_sym_const_declaration_token1] = ACTIONS(9156), + [anon_sym_LPAREN] = ACTIONS(9158), + [aux_sym_as_type_clause_token2] = ACTIONS(9156), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9156), + [aux_sym_visibility_token1] = ACTIONS(9156), + [aux_sym_visibility_token2] = ACTIONS(9156), + [aux_sym_elseif_fragment_token1] = ACTIONS(9156), + [aux_sym_else_fragment_token1] = ACTIONS(9156), + [aux_sym_select_statement_token1] = ACTIONS(9156), + [aux_sym__for_header_token1] = ACTIONS(9156), + [aux_sym_do_statement_token1] = ACTIONS(9156), + [aux_sym_do_condition_token1] = ACTIONS(9156), + [aux_sym_with_statement_token1] = ACTIONS(9156), + [aux_sym_exit_statement_token1] = ACTIONS(9156), + [sym_end_statement] = ACTIONS(9158), + [aux_sym_on_goto_statement_token1] = ACTIONS(9156), + [aux_sym_on_goto_statement_token2] = ACTIONS(9156), + [aux_sym_on_error_statement_token2] = ACTIONS(9156), + [sym__ambiguous_redim_statement] = ACTIONS(9158), + [aux_sym_erase_statement_token1] = ACTIONS(9156), + [aux_sym_open_statement_token1] = ACTIONS(9156), + [aux_sym_file_mode_token2] = ACTIONS(9156), + [aux_sym_file_access_token2] = ACTIONS(9156), + [aux_sym_file_lock_token2] = ACTIONS(9156), + [aux_sym_print_statement_token1] = ACTIONS(9156), + [anon_sym_PLUS] = ACTIONS(9158), + [anon_sym_DASH] = ACTIONS(9156), + [anon_sym_QMARK] = ACTIONS(9158), + [aux_sym_close_statement_token1] = ACTIONS(9156), + [aux_sym_put_statement_token1] = ACTIONS(9156), + [aux_sym_unlock_statement_token1] = ACTIONS(9156), + [aux_sym_seek_statement_token1] = ACTIONS(9156), + [sym_reset_statement] = ACTIONS(9156), + [aux_sym_raise_event_statement_token1] = ACTIONS(9156), + [sym_stop_statement] = ACTIONS(9156), + [sym_beep_statement] = ACTIONS(9156), + [aux_sym_unload_statement_token1] = ACTIONS(9156), + [aux_sym_def_type_statement_token1] = ACTIONS(9156), + [aux_sym_def_type_statement_token2] = ACTIONS(9156), + [aux_sym_def_type_statement_token3] = ACTIONS(9156), + [aux_sym_def_type_statement_token4] = ACTIONS(9156), + [aux_sym_def_type_statement_token5] = ACTIONS(9156), + [aux_sym_def_type_statement_token6] = ACTIONS(9156), + [aux_sym_def_type_statement_token7] = ACTIONS(9156), + [aux_sym_def_type_statement_token8] = ACTIONS(9156), + [aux_sym_def_type_statement_token9] = ACTIONS(9156), + [aux_sym_def_type_statement_token10] = ACTIONS(9156), + [aux_sym_def_type_statement_token11] = ACTIONS(9156), + [aux_sym_def_type_statement_token12] = ACTIONS(9156), + [aux_sym_def_type_statement_token13] = ACTIONS(9156), + [aux_sym_def_type_statement_token14] = ACTIONS(9156), + [aux_sym_call_statement_token1] = ACTIONS(9156), + [sym__ambiguous_call_statement] = ACTIONS(9156), + [aux_sym_addressof_expression_token1] = ACTIONS(9156), + [aux_sym_type_of_expression_token1] = ACTIONS(9156), + [aux_sym_unary_expression_token1] = ACTIONS(9156), + [sym_string_literal] = ACTIONS(9158), + [sym_number_literal] = ACTIONS(9158), + [aux_sym_boolean_literal_token1] = ACTIONS(9156), + [aux_sym_boolean_literal_token2] = ACTIONS(9156), + [sym_nothing_literal] = ACTIONS(9156), + [sym_null_literal] = ACTIONS(9156), + [sym_empty_literal] = ACTIONS(9156), + [sym_date_literal] = ACTIONS(9158), + [anon_sym_POUND] = ACTIONS(9156), + }, + [STATE(4405)] = { + [sym_identifier] = ACTIONS(9160), + [sym_newline] = ACTIONS(9162), + [anon_sym_COLON] = ACTIONS(9162), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9160), + [aux_sym_frm_property_statement_token1] = ACTIONS(9160), + [anon_sym_DOT] = ACTIONS(9160), + [anon_sym_BANG] = ACTIONS(9162), + [aux_sym__attribute_identifier_token1] = ACTIONS(9160), + [aux_sym_option_statement_token3] = ACTIONS(9160), + [aux_sym_type_declaration_token1] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9160), + [aux_sym_enum_declaration_token1] = ACTIONS(9160), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9160), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9160), + [aux_sym_declare_function_statement_token1] = ACTIONS(9160), + [aux_sym_preprocessor_const_token1] = ACTIONS(9160), + [aux_sym__property_get_header_token1] = ACTIONS(9160), + [aux_sym_event_declaration_token1] = ACTIONS(9160), + [sym_static_modifier] = ACTIONS(9160), + [sym__dim_keyword] = ACTIONS(9160), + [sym__redim_keyword] = ACTIONS(9160), + [aux_sym_get_accessor_token1] = ACTIONS(9160), + [aux_sym_set_accessor_token1] = ACTIONS(9160), + [aux_sym_const_declaration_token1] = ACTIONS(9160), + [anon_sym_LPAREN] = ACTIONS(9162), + [aux_sym_as_type_clause_token2] = ACTIONS(9160), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9160), + [aux_sym_visibility_token1] = ACTIONS(9160), + [aux_sym_visibility_token2] = ACTIONS(9160), + [aux_sym_elseif_fragment_token1] = ACTIONS(9160), + [aux_sym_else_fragment_token1] = ACTIONS(9160), + [aux_sym_select_statement_token1] = ACTIONS(9160), + [aux_sym__for_header_token1] = ACTIONS(9160), + [aux_sym_do_statement_token1] = ACTIONS(9160), + [aux_sym_do_condition_token1] = ACTIONS(9160), + [aux_sym_with_statement_token1] = ACTIONS(9160), + [aux_sym_exit_statement_token1] = ACTIONS(9160), + [sym_end_statement] = ACTIONS(9162), + [aux_sym_on_goto_statement_token1] = ACTIONS(9160), + [aux_sym_on_goto_statement_token2] = ACTIONS(9160), + [aux_sym_on_error_statement_token2] = ACTIONS(9160), + [sym__ambiguous_redim_statement] = ACTIONS(9162), + [aux_sym_erase_statement_token1] = ACTIONS(9160), + [aux_sym_open_statement_token1] = ACTIONS(9160), + [aux_sym_file_mode_token2] = ACTIONS(9160), + [aux_sym_file_access_token2] = ACTIONS(9160), + [aux_sym_file_lock_token2] = ACTIONS(9160), + [aux_sym_print_statement_token1] = ACTIONS(9160), + [anon_sym_PLUS] = ACTIONS(9162), + [anon_sym_DASH] = ACTIONS(9160), + [anon_sym_QMARK] = ACTIONS(9162), + [aux_sym_close_statement_token1] = ACTIONS(9160), + [aux_sym_put_statement_token1] = ACTIONS(9160), + [aux_sym_unlock_statement_token1] = ACTIONS(9160), + [aux_sym_seek_statement_token1] = ACTIONS(9160), + [sym_reset_statement] = ACTIONS(9160), + [aux_sym_raise_event_statement_token1] = ACTIONS(9160), + [sym_stop_statement] = ACTIONS(9160), + [sym_beep_statement] = ACTIONS(9160), + [aux_sym_unload_statement_token1] = ACTIONS(9160), + [aux_sym_def_type_statement_token1] = ACTIONS(9160), + [aux_sym_def_type_statement_token2] = ACTIONS(9160), + [aux_sym_def_type_statement_token3] = ACTIONS(9160), + [aux_sym_def_type_statement_token4] = ACTIONS(9160), + [aux_sym_def_type_statement_token5] = ACTIONS(9160), + [aux_sym_def_type_statement_token6] = ACTIONS(9160), + [aux_sym_def_type_statement_token7] = ACTIONS(9160), + [aux_sym_def_type_statement_token8] = ACTIONS(9160), + [aux_sym_def_type_statement_token9] = ACTIONS(9160), + [aux_sym_def_type_statement_token10] = ACTIONS(9160), + [aux_sym_def_type_statement_token11] = ACTIONS(9160), + [aux_sym_def_type_statement_token12] = ACTIONS(9160), + [aux_sym_def_type_statement_token13] = ACTIONS(9160), + [aux_sym_def_type_statement_token14] = ACTIONS(9160), + [aux_sym_call_statement_token1] = ACTIONS(9160), + [sym__ambiguous_call_statement] = ACTIONS(9160), + [aux_sym_addressof_expression_token1] = ACTIONS(9160), + [aux_sym_type_of_expression_token1] = ACTIONS(9160), + [aux_sym_unary_expression_token1] = ACTIONS(9160), + [sym_string_literal] = ACTIONS(9162), + [sym_number_literal] = ACTIONS(9162), + [aux_sym_boolean_literal_token1] = ACTIONS(9160), + [aux_sym_boolean_literal_token2] = ACTIONS(9160), + [sym_nothing_literal] = ACTIONS(9160), + [sym_null_literal] = ACTIONS(9160), + [sym_empty_literal] = ACTIONS(9160), + [sym_date_literal] = ACTIONS(9162), + [anon_sym_POUND] = ACTIONS(9160), + }, + [STATE(4406)] = { + [sym_identifier] = ACTIONS(9172), + [sym_newline] = ACTIONS(9174), + [anon_sym_COLON] = ACTIONS(9174), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9172), + [aux_sym_frm_property_statement_token1] = ACTIONS(9172), + [anon_sym_DOT] = ACTIONS(9172), + [anon_sym_BANG] = ACTIONS(9174), + [aux_sym__attribute_identifier_token1] = ACTIONS(9172), + [aux_sym_option_statement_token3] = ACTIONS(9172), + [aux_sym_type_declaration_token1] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9172), + [aux_sym_enum_declaration_token1] = ACTIONS(9172), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9172), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9172), + [aux_sym_declare_function_statement_token1] = ACTIONS(9172), + [aux_sym_preprocessor_const_token1] = ACTIONS(9172), + [aux_sym__property_get_header_token1] = ACTIONS(9172), + [aux_sym_event_declaration_token1] = ACTIONS(9172), + [sym_static_modifier] = ACTIONS(9172), + [sym__dim_keyword] = ACTIONS(9172), + [sym__redim_keyword] = ACTIONS(9172), + [aux_sym_get_accessor_token1] = ACTIONS(9172), + [aux_sym_set_accessor_token1] = ACTIONS(9172), + [aux_sym_const_declaration_token1] = ACTIONS(9172), + [anon_sym_LPAREN] = ACTIONS(9174), + [aux_sym_as_type_clause_token2] = ACTIONS(9172), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9172), + [aux_sym_visibility_token1] = ACTIONS(9172), + [aux_sym_visibility_token2] = ACTIONS(9172), + [aux_sym_elseif_fragment_token1] = ACTIONS(9172), + [aux_sym_else_fragment_token1] = ACTIONS(9172), + [aux_sym_select_statement_token1] = ACTIONS(9172), + [aux_sym__for_header_token1] = ACTIONS(9172), + [aux_sym_do_statement_token1] = ACTIONS(9172), + [aux_sym_do_condition_token1] = ACTIONS(9172), + [aux_sym_with_statement_token1] = ACTIONS(9172), + [aux_sym_exit_statement_token1] = ACTIONS(9172), + [sym_end_statement] = ACTIONS(9174), + [aux_sym_on_goto_statement_token1] = ACTIONS(9172), + [aux_sym_on_goto_statement_token2] = ACTIONS(9172), + [aux_sym_on_error_statement_token2] = ACTIONS(9172), + [sym__ambiguous_redim_statement] = ACTIONS(9174), + [aux_sym_erase_statement_token1] = ACTIONS(9172), + [aux_sym_open_statement_token1] = ACTIONS(9172), + [aux_sym_file_mode_token2] = ACTIONS(9172), + [aux_sym_file_access_token2] = ACTIONS(9172), + [aux_sym_file_lock_token2] = ACTIONS(9172), + [aux_sym_print_statement_token1] = ACTIONS(9172), + [anon_sym_PLUS] = ACTIONS(9174), + [anon_sym_DASH] = ACTIONS(9172), + [anon_sym_QMARK] = ACTIONS(9174), + [aux_sym_close_statement_token1] = ACTIONS(9172), + [aux_sym_put_statement_token1] = ACTIONS(9172), + [aux_sym_unlock_statement_token1] = ACTIONS(9172), + [aux_sym_seek_statement_token1] = ACTIONS(9172), + [sym_reset_statement] = ACTIONS(9172), + [aux_sym_raise_event_statement_token1] = ACTIONS(9172), + [sym_stop_statement] = ACTIONS(9172), + [sym_beep_statement] = ACTIONS(9172), + [aux_sym_unload_statement_token1] = ACTIONS(9172), + [aux_sym_def_type_statement_token1] = ACTIONS(9172), + [aux_sym_def_type_statement_token2] = ACTIONS(9172), + [aux_sym_def_type_statement_token3] = ACTIONS(9172), + [aux_sym_def_type_statement_token4] = ACTIONS(9172), + [aux_sym_def_type_statement_token5] = ACTIONS(9172), + [aux_sym_def_type_statement_token6] = ACTIONS(9172), + [aux_sym_def_type_statement_token7] = ACTIONS(9172), + [aux_sym_def_type_statement_token8] = ACTIONS(9172), + [aux_sym_def_type_statement_token9] = ACTIONS(9172), + [aux_sym_def_type_statement_token10] = ACTIONS(9172), + [aux_sym_def_type_statement_token11] = ACTIONS(9172), + [aux_sym_def_type_statement_token12] = ACTIONS(9172), + [aux_sym_def_type_statement_token13] = ACTIONS(9172), + [aux_sym_def_type_statement_token14] = ACTIONS(9172), + [aux_sym_call_statement_token1] = ACTIONS(9172), + [sym__ambiguous_call_statement] = ACTIONS(9172), + [aux_sym_addressof_expression_token1] = ACTIONS(9172), + [aux_sym_type_of_expression_token1] = ACTIONS(9172), + [aux_sym_unary_expression_token1] = ACTIONS(9172), + [sym_string_literal] = ACTIONS(9174), + [sym_number_literal] = ACTIONS(9174), + [aux_sym_boolean_literal_token1] = ACTIONS(9172), + [aux_sym_boolean_literal_token2] = ACTIONS(9172), + [sym_nothing_literal] = ACTIONS(9172), + [sym_null_literal] = ACTIONS(9172), + [sym_empty_literal] = ACTIONS(9172), + [sym_date_literal] = ACTIONS(9174), + [anon_sym_POUND] = ACTIONS(9172), + }, + [STATE(4407)] = { + [sym_next_variable_list] = STATE(6372), + [sym__assignable_expression] = STATE(5809), + [sym__callable_expression] = STATE(5801), + [sym_call_expression] = STATE(5238), + [sym_member_expression] = STATE(6043), + [sym_qualified_member_expression] = STATE(5833), + [sym_implicit_member_expression] = STATE(5833), + [sym_identifier] = ACTIONS(9947), + [sym_newline] = ACTIONS(6848), + [anon_sym_COLON] = ACTIONS(6848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6850), + [aux_sym_frm_property_statement_token1] = ACTIONS(9949), + [anon_sym_DOT] = ACTIONS(9951), + [anon_sym_BANG] = ACTIONS(9953), + [aux_sym__attribute_identifier_token1] = ACTIONS(6850), + [aux_sym_option_statement_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6850), + [aux_sym_preprocessor_const_token1] = ACTIONS(6850), + [sym_static_modifier] = ACTIONS(6850), + [sym__dim_keyword] = ACTIONS(6850), + [sym__redim_keyword] = ACTIONS(6850), + [aux_sym_get_accessor_token1] = ACTIONS(6850), + [aux_sym_set_accessor_token1] = ACTIONS(6850), + [aux_sym_const_declaration_token1] = ACTIONS(6850), + [anon_sym_LPAREN] = ACTIONS(6848), + [aux_sym_as_type_clause_token2] = ACTIONS(6850), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9955), + [aux_sym_visibility_token1] = ACTIONS(6850), + [aux_sym_visibility_token2] = ACTIONS(6850), + [aux_sym_elseif_fragment_token1] = ACTIONS(6850), + [aux_sym_else_fragment_token1] = ACTIONS(6850), + [aux_sym_select_statement_token1] = ACTIONS(6850), + [aux_sym__for_header_token1] = ACTIONS(6850), + [aux_sym_do_statement_token1] = ACTIONS(6850), + [aux_sym_do_statement_token2] = ACTIONS(6850), + [aux_sym_do_condition_token1] = ACTIONS(6850), + [aux_sym_with_statement_token1] = ACTIONS(6850), + [aux_sym_exit_statement_token1] = ACTIONS(6850), + [sym_end_statement] = ACTIONS(6848), + [aux_sym_on_goto_statement_token1] = ACTIONS(6850), + [aux_sym_on_goto_statement_token2] = ACTIONS(6850), + [aux_sym_on_error_statement_token2] = ACTIONS(6850), + [sym__ambiguous_redim_statement] = ACTIONS(6848), + [aux_sym_erase_statement_token1] = ACTIONS(6850), + [aux_sym_open_statement_token1] = ACTIONS(6850), + [aux_sym_file_mode_token2] = ACTIONS(6850), + [aux_sym_file_access_token2] = ACTIONS(6850), + [aux_sym_file_lock_token2] = ACTIONS(6850), + [aux_sym_print_statement_token1] = ACTIONS(6850), + [anon_sym_PLUS] = ACTIONS(6848), + [anon_sym_DASH] = ACTIONS(6850), + [anon_sym_QMARK] = ACTIONS(6848), + [aux_sym_close_statement_token1] = ACTIONS(6850), + [aux_sym_put_statement_token1] = ACTIONS(6850), + [aux_sym_unlock_statement_token1] = ACTIONS(6850), + [aux_sym_seek_statement_token1] = ACTIONS(6850), + [sym_reset_statement] = ACTIONS(6850), + [aux_sym_raise_event_statement_token1] = ACTIONS(6850), + [sym_stop_statement] = ACTIONS(6850), + [sym_beep_statement] = ACTIONS(6850), + [aux_sym_unload_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token2] = ACTIONS(6850), + [aux_sym_def_type_statement_token3] = ACTIONS(6850), + [aux_sym_def_type_statement_token4] = ACTIONS(6850), + [aux_sym_def_type_statement_token5] = ACTIONS(6850), + [aux_sym_def_type_statement_token6] = ACTIONS(6850), + [aux_sym_def_type_statement_token7] = ACTIONS(6850), + [aux_sym_def_type_statement_token8] = ACTIONS(6850), + [aux_sym_def_type_statement_token9] = ACTIONS(6850), + [aux_sym_def_type_statement_token10] = ACTIONS(6850), + [aux_sym_def_type_statement_token11] = ACTIONS(6850), + [aux_sym_def_type_statement_token12] = ACTIONS(6850), + [aux_sym_def_type_statement_token13] = ACTIONS(6850), + [aux_sym_def_type_statement_token14] = ACTIONS(6850), + [aux_sym_call_statement_token1] = ACTIONS(6850), + [sym__ambiguous_call_statement] = ACTIONS(6850), + [aux_sym_addressof_expression_token1] = ACTIONS(6850), + [aux_sym_type_of_expression_token1] = ACTIONS(6850), + [aux_sym_unary_expression_token1] = ACTIONS(6850), + [sym_string_literal] = ACTIONS(6848), + [sym_number_literal] = ACTIONS(6848), + [aux_sym_boolean_literal_token1] = ACTIONS(6850), + [aux_sym_boolean_literal_token2] = ACTIONS(6850), + [sym_nothing_literal] = ACTIONS(6850), + [sym_null_literal] = ACTIONS(6850), + [sym_empty_literal] = ACTIONS(6850), + [sym_date_literal] = ACTIONS(6848), + [anon_sym_POUND] = ACTIONS(6850), + }, + [STATE(4408)] = { + [sym_next_variable_list] = STATE(6374), + [sym__assignable_expression] = STATE(5809), + [sym__callable_expression] = STATE(5801), + [sym_call_expression] = STATE(5238), + [sym_member_expression] = STATE(6043), + [sym_qualified_member_expression] = STATE(5833), + [sym_implicit_member_expression] = STATE(5833), + [sym_identifier] = ACTIONS(9947), + [sym_newline] = ACTIONS(6822), + [anon_sym_COLON] = ACTIONS(6822), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6824), + [aux_sym_frm_property_statement_token1] = ACTIONS(9949), + [anon_sym_DOT] = ACTIONS(9951), + [anon_sym_BANG] = ACTIONS(9953), + [aux_sym__attribute_identifier_token1] = ACTIONS(6824), + [aux_sym_option_statement_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6824), + [aux_sym_preprocessor_const_token1] = ACTIONS(6824), + [sym_static_modifier] = ACTIONS(6824), + [sym__dim_keyword] = ACTIONS(6824), + [sym__redim_keyword] = ACTIONS(6824), + [aux_sym_get_accessor_token1] = ACTIONS(6824), + [aux_sym_set_accessor_token1] = ACTIONS(6824), + [aux_sym_const_declaration_token1] = ACTIONS(6824), + [anon_sym_LPAREN] = ACTIONS(6822), + [aux_sym_as_type_clause_token2] = ACTIONS(6824), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9955), + [aux_sym_visibility_token1] = ACTIONS(6824), + [aux_sym_visibility_token2] = ACTIONS(6824), + [aux_sym_elseif_fragment_token1] = ACTIONS(6824), + [aux_sym_else_fragment_token1] = ACTIONS(6824), + [aux_sym_select_statement_token1] = ACTIONS(6824), + [aux_sym__for_header_token1] = ACTIONS(6824), + [aux_sym_do_statement_token1] = ACTIONS(6824), + [aux_sym_do_statement_token2] = ACTIONS(6824), + [aux_sym_do_condition_token1] = ACTIONS(6824), + [aux_sym_with_statement_token1] = ACTIONS(6824), + [aux_sym_exit_statement_token1] = ACTIONS(6824), + [sym_end_statement] = ACTIONS(6822), + [aux_sym_on_goto_statement_token1] = ACTIONS(6824), + [aux_sym_on_goto_statement_token2] = ACTIONS(6824), + [aux_sym_on_error_statement_token2] = ACTIONS(6824), + [sym__ambiguous_redim_statement] = ACTIONS(6822), + [aux_sym_erase_statement_token1] = ACTIONS(6824), + [aux_sym_open_statement_token1] = ACTIONS(6824), + [aux_sym_file_mode_token2] = ACTIONS(6824), + [aux_sym_file_access_token2] = ACTIONS(6824), + [aux_sym_file_lock_token2] = ACTIONS(6824), + [aux_sym_print_statement_token1] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6822), + [aux_sym_close_statement_token1] = ACTIONS(6824), + [aux_sym_put_statement_token1] = ACTIONS(6824), + [aux_sym_unlock_statement_token1] = ACTIONS(6824), + [aux_sym_seek_statement_token1] = ACTIONS(6824), + [sym_reset_statement] = ACTIONS(6824), + [aux_sym_raise_event_statement_token1] = ACTIONS(6824), + [sym_stop_statement] = ACTIONS(6824), + [sym_beep_statement] = ACTIONS(6824), + [aux_sym_unload_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token2] = ACTIONS(6824), + [aux_sym_def_type_statement_token3] = ACTIONS(6824), + [aux_sym_def_type_statement_token4] = ACTIONS(6824), + [aux_sym_def_type_statement_token5] = ACTIONS(6824), + [aux_sym_def_type_statement_token6] = ACTIONS(6824), + [aux_sym_def_type_statement_token7] = ACTIONS(6824), + [aux_sym_def_type_statement_token8] = ACTIONS(6824), + [aux_sym_def_type_statement_token9] = ACTIONS(6824), + [aux_sym_def_type_statement_token10] = ACTIONS(6824), + [aux_sym_def_type_statement_token11] = ACTIONS(6824), + [aux_sym_def_type_statement_token12] = ACTIONS(6824), + [aux_sym_def_type_statement_token13] = ACTIONS(6824), + [aux_sym_def_type_statement_token14] = ACTIONS(6824), + [aux_sym_call_statement_token1] = ACTIONS(6824), + [sym__ambiguous_call_statement] = ACTIONS(6824), + [aux_sym_addressof_expression_token1] = ACTIONS(6824), + [aux_sym_type_of_expression_token1] = ACTIONS(6824), + [aux_sym_unary_expression_token1] = ACTIONS(6824), + [sym_string_literal] = ACTIONS(6822), + [sym_number_literal] = ACTIONS(6822), + [aux_sym_boolean_literal_token1] = ACTIONS(6824), + [aux_sym_boolean_literal_token2] = ACTIONS(6824), + [sym_nothing_literal] = ACTIONS(6824), + [sym_null_literal] = ACTIONS(6824), + [sym_empty_literal] = ACTIONS(6824), + [sym_date_literal] = ACTIONS(6822), + [anon_sym_POUND] = ACTIONS(6824), + }, + [STATE(4409)] = { + [sym_identifier] = ACTIONS(9260), + [sym_newline] = ACTIONS(9262), + [anon_sym_COLON] = ACTIONS(9262), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9260), + [aux_sym_frm_property_statement_token1] = ACTIONS(9260), + [anon_sym_DOT] = ACTIONS(9260), + [anon_sym_BANG] = ACTIONS(9262), + [aux_sym__attribute_identifier_token1] = ACTIONS(9260), + [aux_sym_option_statement_token3] = ACTIONS(9260), + [aux_sym_type_declaration_token1] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9260), + [aux_sym_enum_declaration_token1] = ACTIONS(9260), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9260), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9260), + [aux_sym_declare_function_statement_token1] = ACTIONS(9260), + [aux_sym_preprocessor_const_token1] = ACTIONS(9260), + [aux_sym__property_get_header_token1] = ACTIONS(9260), + [aux_sym_event_declaration_token1] = ACTIONS(9260), + [sym_static_modifier] = ACTIONS(9260), + [sym__dim_keyword] = ACTIONS(9260), + [sym__redim_keyword] = ACTIONS(9260), + [aux_sym_get_accessor_token1] = ACTIONS(9260), + [aux_sym_set_accessor_token1] = ACTIONS(9260), + [aux_sym_const_declaration_token1] = ACTIONS(9260), + [anon_sym_LPAREN] = ACTIONS(9262), + [aux_sym_as_type_clause_token2] = ACTIONS(9260), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9260), + [aux_sym_visibility_token1] = ACTIONS(9260), + [aux_sym_visibility_token2] = ACTIONS(9260), + [aux_sym_elseif_fragment_token1] = ACTIONS(9260), + [aux_sym_else_fragment_token1] = ACTIONS(9260), + [aux_sym_select_statement_token1] = ACTIONS(9260), + [aux_sym__for_header_token1] = ACTIONS(9260), + [aux_sym_do_statement_token1] = ACTIONS(9260), + [aux_sym_do_condition_token1] = ACTIONS(9260), + [aux_sym_with_statement_token1] = ACTIONS(9260), + [aux_sym_exit_statement_token1] = ACTIONS(9260), + [sym_end_statement] = ACTIONS(9262), + [aux_sym_on_goto_statement_token1] = ACTIONS(9260), + [aux_sym_on_goto_statement_token2] = ACTIONS(9260), + [aux_sym_on_error_statement_token2] = ACTIONS(9260), + [sym__ambiguous_redim_statement] = ACTIONS(9262), + [aux_sym_erase_statement_token1] = ACTIONS(9260), + [aux_sym_open_statement_token1] = ACTIONS(9260), + [aux_sym_file_mode_token2] = ACTIONS(9260), + [aux_sym_file_access_token2] = ACTIONS(9260), + [aux_sym_file_lock_token2] = ACTIONS(9260), + [aux_sym_print_statement_token1] = ACTIONS(9260), + [anon_sym_PLUS] = ACTIONS(9262), + [anon_sym_DASH] = ACTIONS(9260), + [anon_sym_QMARK] = ACTIONS(9262), + [aux_sym_close_statement_token1] = ACTIONS(9260), + [aux_sym_put_statement_token1] = ACTIONS(9260), + [aux_sym_unlock_statement_token1] = ACTIONS(9260), + [aux_sym_seek_statement_token1] = ACTIONS(9260), + [sym_reset_statement] = ACTIONS(9260), + [aux_sym_raise_event_statement_token1] = ACTIONS(9260), + [sym_stop_statement] = ACTIONS(9260), + [sym_beep_statement] = ACTIONS(9260), + [aux_sym_unload_statement_token1] = ACTIONS(9260), + [aux_sym_def_type_statement_token1] = ACTIONS(9260), + [aux_sym_def_type_statement_token2] = ACTIONS(9260), + [aux_sym_def_type_statement_token3] = ACTIONS(9260), + [aux_sym_def_type_statement_token4] = ACTIONS(9260), + [aux_sym_def_type_statement_token5] = ACTIONS(9260), + [aux_sym_def_type_statement_token6] = ACTIONS(9260), + [aux_sym_def_type_statement_token7] = ACTIONS(9260), + [aux_sym_def_type_statement_token8] = ACTIONS(9260), + [aux_sym_def_type_statement_token9] = ACTIONS(9260), + [aux_sym_def_type_statement_token10] = ACTIONS(9260), + [aux_sym_def_type_statement_token11] = ACTIONS(9260), + [aux_sym_def_type_statement_token12] = ACTIONS(9260), + [aux_sym_def_type_statement_token13] = ACTIONS(9260), + [aux_sym_def_type_statement_token14] = ACTIONS(9260), + [aux_sym_call_statement_token1] = ACTIONS(9260), + [sym__ambiguous_call_statement] = ACTIONS(9260), + [aux_sym_addressof_expression_token1] = ACTIONS(9260), + [aux_sym_type_of_expression_token1] = ACTIONS(9260), + [aux_sym_unary_expression_token1] = ACTIONS(9260), + [sym_string_literal] = ACTIONS(9262), + [sym_number_literal] = ACTIONS(9262), + [aux_sym_boolean_literal_token1] = ACTIONS(9260), + [aux_sym_boolean_literal_token2] = ACTIONS(9260), + [sym_nothing_literal] = ACTIONS(9260), + [sym_null_literal] = ACTIONS(9260), + [sym_empty_literal] = ACTIONS(9260), + [sym_date_literal] = ACTIONS(9262), + [anon_sym_POUND] = ACTIONS(9260), + }, + [STATE(4410)] = { + [sym_identifier] = ACTIONS(8692), + [sym_newline] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(8694), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8692), + [aux_sym_frm_property_statement_token1] = ACTIONS(8692), + [anon_sym_DOT] = ACTIONS(8692), + [anon_sym_BANG] = ACTIONS(8694), + [aux_sym__attribute_identifier_token1] = ACTIONS(8692), + [aux_sym_option_statement_token3] = ACTIONS(8692), + [aux_sym_type_declaration_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8692), + [aux_sym_enum_declaration_token1] = ACTIONS(8692), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8692), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8692), + [aux_sym_declare_function_statement_token1] = ACTIONS(8692), + [aux_sym_preprocessor_const_token1] = ACTIONS(8692), + [aux_sym__property_get_header_token1] = ACTIONS(8692), + [aux_sym_event_declaration_token1] = ACTIONS(8692), + [sym_static_modifier] = ACTIONS(8692), + [sym__dim_keyword] = ACTIONS(8692), + [sym__redim_keyword] = ACTIONS(8692), + [aux_sym_get_accessor_token1] = ACTIONS(8692), + [aux_sym_set_accessor_token1] = ACTIONS(8692), + [aux_sym_const_declaration_token1] = ACTIONS(8692), + [anon_sym_LPAREN] = ACTIONS(8694), + [aux_sym_as_type_clause_token2] = ACTIONS(8692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8692), + [aux_sym_visibility_token1] = ACTIONS(8692), + [aux_sym_visibility_token2] = ACTIONS(8692), + [aux_sym_elseif_fragment_token1] = ACTIONS(8692), + [aux_sym_else_fragment_token1] = ACTIONS(9907), + [aux_sym_select_statement_token1] = ACTIONS(8692), + [aux_sym__for_header_token1] = ACTIONS(8692), + [aux_sym_do_statement_token1] = ACTIONS(8692), + [aux_sym_do_condition_token1] = ACTIONS(8692), + [aux_sym_with_statement_token1] = ACTIONS(8692), + [aux_sym_exit_statement_token1] = ACTIONS(8692), + [sym_end_statement] = ACTIONS(8694), + [aux_sym_on_goto_statement_token1] = ACTIONS(8692), + [aux_sym_on_goto_statement_token2] = ACTIONS(8692), + [aux_sym_on_error_statement_token2] = ACTIONS(8692), + [sym__ambiguous_redim_statement] = ACTIONS(8694), + [aux_sym_erase_statement_token1] = ACTIONS(8692), + [aux_sym_open_statement_token1] = ACTIONS(8692), + [aux_sym_file_mode_token2] = ACTIONS(8692), + [aux_sym_file_access_token2] = ACTIONS(8692), + [aux_sym_file_lock_token2] = ACTIONS(8692), + [aux_sym_print_statement_token1] = ACTIONS(8692), + [anon_sym_PLUS] = ACTIONS(8694), + [anon_sym_DASH] = ACTIONS(8692), + [anon_sym_QMARK] = ACTIONS(8694), + [aux_sym_close_statement_token1] = ACTIONS(8692), + [aux_sym_put_statement_token1] = ACTIONS(8692), + [aux_sym_unlock_statement_token1] = ACTIONS(8692), + [aux_sym_seek_statement_token1] = ACTIONS(8692), + [sym_reset_statement] = ACTIONS(8692), + [aux_sym_raise_event_statement_token1] = ACTIONS(8692), + [sym_stop_statement] = ACTIONS(8692), + [sym_beep_statement] = ACTIONS(8692), + [aux_sym_unload_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token2] = ACTIONS(8692), + [aux_sym_def_type_statement_token3] = ACTIONS(8692), + [aux_sym_def_type_statement_token4] = ACTIONS(8692), + [aux_sym_def_type_statement_token5] = ACTIONS(8692), + [aux_sym_def_type_statement_token6] = ACTIONS(8692), + [aux_sym_def_type_statement_token7] = ACTIONS(8692), + [aux_sym_def_type_statement_token8] = ACTIONS(8692), + [aux_sym_def_type_statement_token9] = ACTIONS(8692), + [aux_sym_def_type_statement_token10] = ACTIONS(8692), + [aux_sym_def_type_statement_token11] = ACTIONS(8692), + [aux_sym_def_type_statement_token12] = ACTIONS(8692), + [aux_sym_def_type_statement_token13] = ACTIONS(8692), + [aux_sym_def_type_statement_token14] = ACTIONS(8692), + [aux_sym_call_statement_token1] = ACTIONS(8692), + [sym__ambiguous_call_statement] = ACTIONS(8692), + [aux_sym_addressof_expression_token1] = ACTIONS(8692), + [aux_sym_type_of_expression_token1] = ACTIONS(8692), + [aux_sym_unary_expression_token1] = ACTIONS(8692), + [sym_string_literal] = ACTIONS(8694), + [sym_number_literal] = ACTIONS(8694), + [aux_sym_boolean_literal_token1] = ACTIONS(8692), + [aux_sym_boolean_literal_token2] = ACTIONS(8692), + [sym_nothing_literal] = ACTIONS(8692), + [sym_null_literal] = ACTIONS(8692), + [sym_empty_literal] = ACTIONS(8692), + [sym_date_literal] = ACTIONS(8694), + [anon_sym_POUND] = ACTIONS(8692), + }, + [STATE(4411)] = { + [sym_identifier] = ACTIONS(9280), + [sym_newline] = ACTIONS(9282), + [anon_sym_COLON] = ACTIONS(9282), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9280), + [aux_sym_frm_property_statement_token1] = ACTIONS(9280), + [anon_sym_DOT] = ACTIONS(9280), + [anon_sym_BANG] = ACTIONS(9282), + [aux_sym__attribute_identifier_token1] = ACTIONS(9280), + [aux_sym_option_statement_token3] = ACTIONS(9280), + [aux_sym_type_declaration_token1] = ACTIONS(9280), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9280), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9280), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9280), + [aux_sym_enum_declaration_token1] = ACTIONS(9280), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9280), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9280), + [aux_sym_declare_function_statement_token1] = ACTIONS(9280), + [aux_sym_preprocessor_const_token1] = ACTIONS(9280), + [aux_sym__property_get_header_token1] = ACTIONS(9280), + [aux_sym_event_declaration_token1] = ACTIONS(9280), + [sym_static_modifier] = ACTIONS(9280), + [sym__dim_keyword] = ACTIONS(9280), + [sym__redim_keyword] = ACTIONS(9280), + [aux_sym_get_accessor_token1] = ACTIONS(9280), + [aux_sym_set_accessor_token1] = ACTIONS(9280), + [aux_sym_const_declaration_token1] = ACTIONS(9280), + [anon_sym_LPAREN] = ACTIONS(9282), + [aux_sym_as_type_clause_token2] = ACTIONS(9280), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9280), + [aux_sym_visibility_token1] = ACTIONS(9280), + [aux_sym_visibility_token2] = ACTIONS(9280), + [aux_sym_elseif_fragment_token1] = ACTIONS(9280), + [aux_sym_else_fragment_token1] = ACTIONS(9280), + [aux_sym_select_statement_token1] = ACTIONS(9280), + [aux_sym__for_header_token1] = ACTIONS(9280), + [aux_sym_do_statement_token1] = ACTIONS(9280), + [aux_sym_do_condition_token1] = ACTIONS(9280), + [aux_sym_with_statement_token1] = ACTIONS(9280), + [aux_sym_exit_statement_token1] = ACTIONS(9280), + [sym_end_statement] = ACTIONS(9282), + [aux_sym_on_goto_statement_token1] = ACTIONS(9280), + [aux_sym_on_goto_statement_token2] = ACTIONS(9280), + [aux_sym_on_error_statement_token2] = ACTIONS(9280), + [sym__ambiguous_redim_statement] = ACTIONS(9282), + [aux_sym_erase_statement_token1] = ACTIONS(9280), + [aux_sym_open_statement_token1] = ACTIONS(9280), + [aux_sym_file_mode_token2] = ACTIONS(9280), + [aux_sym_file_access_token2] = ACTIONS(9280), + [aux_sym_file_lock_token2] = ACTIONS(9280), + [aux_sym_print_statement_token1] = ACTIONS(9280), + [anon_sym_PLUS] = ACTIONS(9282), + [anon_sym_DASH] = ACTIONS(9280), + [anon_sym_QMARK] = ACTIONS(9282), + [aux_sym_close_statement_token1] = ACTIONS(9280), + [aux_sym_put_statement_token1] = ACTIONS(9280), + [aux_sym_unlock_statement_token1] = ACTIONS(9280), + [aux_sym_seek_statement_token1] = ACTIONS(9280), + [sym_reset_statement] = ACTIONS(9280), + [aux_sym_raise_event_statement_token1] = ACTIONS(9280), + [sym_stop_statement] = ACTIONS(9280), + [sym_beep_statement] = ACTIONS(9280), + [aux_sym_unload_statement_token1] = ACTIONS(9280), + [aux_sym_def_type_statement_token1] = ACTIONS(9280), + [aux_sym_def_type_statement_token2] = ACTIONS(9280), + [aux_sym_def_type_statement_token3] = ACTIONS(9280), + [aux_sym_def_type_statement_token4] = ACTIONS(9280), + [aux_sym_def_type_statement_token5] = ACTIONS(9280), + [aux_sym_def_type_statement_token6] = ACTIONS(9280), + [aux_sym_def_type_statement_token7] = ACTIONS(9280), + [aux_sym_def_type_statement_token8] = ACTIONS(9280), + [aux_sym_def_type_statement_token9] = ACTIONS(9280), + [aux_sym_def_type_statement_token10] = ACTIONS(9280), + [aux_sym_def_type_statement_token11] = ACTIONS(9280), + [aux_sym_def_type_statement_token12] = ACTIONS(9280), + [aux_sym_def_type_statement_token13] = ACTIONS(9280), + [aux_sym_def_type_statement_token14] = ACTIONS(9280), + [aux_sym_call_statement_token1] = ACTIONS(9280), + [sym__ambiguous_call_statement] = ACTIONS(9280), + [aux_sym_addressof_expression_token1] = ACTIONS(9280), + [aux_sym_type_of_expression_token1] = ACTIONS(9280), + [aux_sym_unary_expression_token1] = ACTIONS(9280), + [sym_string_literal] = ACTIONS(9282), + [sym_number_literal] = ACTIONS(9282), + [aux_sym_boolean_literal_token1] = ACTIONS(9280), + [aux_sym_boolean_literal_token2] = ACTIONS(9280), + [sym_nothing_literal] = ACTIONS(9280), + [sym_null_literal] = ACTIONS(9280), + [sym_empty_literal] = ACTIONS(9280), + [sym_date_literal] = ACTIONS(9282), + [anon_sym_POUND] = ACTIONS(9280), + }, + [STATE(4412)] = { + [sym_identifier] = ACTIONS(9405), + [sym_newline] = ACTIONS(9407), + [anon_sym_COLON] = ACTIONS(9407), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9405), + [aux_sym_frm_property_statement_token1] = ACTIONS(9405), + [anon_sym_DOT] = ACTIONS(9405), + [anon_sym_BANG] = ACTIONS(9407), + [aux_sym__attribute_identifier_token1] = ACTIONS(9405), + [aux_sym_option_statement_token3] = ACTIONS(9405), + [aux_sym_type_declaration_token1] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9405), + [aux_sym_enum_declaration_token1] = ACTIONS(9405), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9405), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9405), + [aux_sym_declare_function_statement_token1] = ACTIONS(9405), + [aux_sym_preprocessor_const_token1] = ACTIONS(9405), + [aux_sym__property_get_header_token1] = ACTIONS(9405), + [aux_sym_event_declaration_token1] = ACTIONS(9405), + [sym_static_modifier] = ACTIONS(9405), + [sym__dim_keyword] = ACTIONS(9405), + [sym__redim_keyword] = ACTIONS(9405), + [aux_sym_get_accessor_token1] = ACTIONS(9405), + [aux_sym_set_accessor_token1] = ACTIONS(9405), + [aux_sym_const_declaration_token1] = ACTIONS(9405), + [anon_sym_LPAREN] = ACTIONS(9407), + [aux_sym_as_type_clause_token2] = ACTIONS(9405), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9405), + [aux_sym_visibility_token1] = ACTIONS(9405), + [aux_sym_visibility_token2] = ACTIONS(9405), + [aux_sym_elseif_fragment_token1] = ACTIONS(9405), + [aux_sym_else_fragment_token1] = ACTIONS(9405), + [aux_sym_select_statement_token1] = ACTIONS(9405), + [aux_sym__for_header_token1] = ACTIONS(9405), + [aux_sym_do_statement_token1] = ACTIONS(9405), + [aux_sym_do_condition_token1] = ACTIONS(9405), + [aux_sym_with_statement_token1] = ACTIONS(9405), + [aux_sym_exit_statement_token1] = ACTIONS(9405), + [sym_end_statement] = ACTIONS(9407), + [aux_sym_on_goto_statement_token1] = ACTIONS(9405), + [aux_sym_on_goto_statement_token2] = ACTIONS(9405), + [aux_sym_on_error_statement_token2] = ACTIONS(9405), + [sym__ambiguous_redim_statement] = ACTIONS(9407), + [aux_sym_erase_statement_token1] = ACTIONS(9405), + [aux_sym_open_statement_token1] = ACTIONS(9405), + [aux_sym_file_mode_token2] = ACTIONS(9405), + [aux_sym_file_access_token2] = ACTIONS(9405), + [aux_sym_file_lock_token2] = ACTIONS(9405), + [aux_sym_print_statement_token1] = ACTIONS(9405), + [anon_sym_PLUS] = ACTIONS(9407), + [anon_sym_DASH] = ACTIONS(9405), + [anon_sym_QMARK] = ACTIONS(9407), + [aux_sym_close_statement_token1] = ACTIONS(9405), + [aux_sym_put_statement_token1] = ACTIONS(9405), + [aux_sym_unlock_statement_token1] = ACTIONS(9405), + [aux_sym_seek_statement_token1] = ACTIONS(9405), + [sym_reset_statement] = ACTIONS(9405), + [aux_sym_raise_event_statement_token1] = ACTIONS(9405), + [sym_stop_statement] = ACTIONS(9405), + [sym_beep_statement] = ACTIONS(9405), + [aux_sym_unload_statement_token1] = ACTIONS(9405), + [aux_sym_def_type_statement_token1] = ACTIONS(9405), + [aux_sym_def_type_statement_token2] = ACTIONS(9405), + [aux_sym_def_type_statement_token3] = ACTIONS(9405), + [aux_sym_def_type_statement_token4] = ACTIONS(9405), + [aux_sym_def_type_statement_token5] = ACTIONS(9405), + [aux_sym_def_type_statement_token6] = ACTIONS(9405), + [aux_sym_def_type_statement_token7] = ACTIONS(9405), + [aux_sym_def_type_statement_token8] = ACTIONS(9405), + [aux_sym_def_type_statement_token9] = ACTIONS(9405), + [aux_sym_def_type_statement_token10] = ACTIONS(9405), + [aux_sym_def_type_statement_token11] = ACTIONS(9405), + [aux_sym_def_type_statement_token12] = ACTIONS(9405), + [aux_sym_def_type_statement_token13] = ACTIONS(9405), + [aux_sym_def_type_statement_token14] = ACTIONS(9405), + [aux_sym_call_statement_token1] = ACTIONS(9405), + [sym__ambiguous_call_statement] = ACTIONS(9405), + [aux_sym_addressof_expression_token1] = ACTIONS(9405), + [aux_sym_type_of_expression_token1] = ACTIONS(9405), + [aux_sym_unary_expression_token1] = ACTIONS(9405), + [sym_string_literal] = ACTIONS(9407), + [sym_number_literal] = ACTIONS(9407), + [aux_sym_boolean_literal_token1] = ACTIONS(9405), + [aux_sym_boolean_literal_token2] = ACTIONS(9405), + [sym_nothing_literal] = ACTIONS(9405), + [sym_null_literal] = ACTIONS(9405), + [sym_empty_literal] = ACTIONS(9405), + [sym_date_literal] = ACTIONS(9407), + [anon_sym_POUND] = ACTIONS(9405), + }, + [STATE(4413)] = { + [sym_identifier] = ACTIONS(9409), + [sym_newline] = ACTIONS(9411), + [anon_sym_COLON] = ACTIONS(9411), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9409), + [aux_sym_frm_property_statement_token1] = ACTIONS(9409), + [anon_sym_DOT] = ACTIONS(9409), + [anon_sym_BANG] = ACTIONS(9411), + [aux_sym__attribute_identifier_token1] = ACTIONS(9409), + [aux_sym_option_statement_token3] = ACTIONS(9409), + [aux_sym_type_declaration_token1] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9409), + [aux_sym_enum_declaration_token1] = ACTIONS(9409), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9409), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9409), + [aux_sym_declare_function_statement_token1] = ACTIONS(9409), + [aux_sym_preprocessor_const_token1] = ACTIONS(9409), + [aux_sym__property_get_header_token1] = ACTIONS(9409), + [aux_sym_event_declaration_token1] = ACTIONS(9409), + [sym_static_modifier] = ACTIONS(9409), + [sym__dim_keyword] = ACTIONS(9409), + [sym__redim_keyword] = ACTIONS(9409), + [aux_sym_get_accessor_token1] = ACTIONS(9409), + [aux_sym_set_accessor_token1] = ACTIONS(9409), + [aux_sym_const_declaration_token1] = ACTIONS(9409), + [anon_sym_LPAREN] = ACTIONS(9411), + [aux_sym_as_type_clause_token2] = ACTIONS(9409), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9409), + [aux_sym_visibility_token1] = ACTIONS(9409), + [aux_sym_visibility_token2] = ACTIONS(9409), + [aux_sym_elseif_fragment_token1] = ACTIONS(9409), + [aux_sym_else_fragment_token1] = ACTIONS(9409), + [aux_sym_select_statement_token1] = ACTIONS(9409), + [aux_sym__for_header_token1] = ACTIONS(9409), + [aux_sym_do_statement_token1] = ACTIONS(9409), + [aux_sym_do_condition_token1] = ACTIONS(9409), + [aux_sym_with_statement_token1] = ACTIONS(9409), + [aux_sym_exit_statement_token1] = ACTIONS(9409), + [sym_end_statement] = ACTIONS(9411), + [aux_sym_on_goto_statement_token1] = ACTIONS(9409), + [aux_sym_on_goto_statement_token2] = ACTIONS(9409), + [aux_sym_on_error_statement_token2] = ACTIONS(9409), + [sym__ambiguous_redim_statement] = ACTIONS(9411), + [aux_sym_erase_statement_token1] = ACTIONS(9409), + [aux_sym_open_statement_token1] = ACTIONS(9409), + [aux_sym_file_mode_token2] = ACTIONS(9409), + [aux_sym_file_access_token2] = ACTIONS(9409), + [aux_sym_file_lock_token2] = ACTIONS(9409), + [aux_sym_print_statement_token1] = ACTIONS(9409), + [anon_sym_PLUS] = ACTIONS(9411), + [anon_sym_DASH] = ACTIONS(9409), + [anon_sym_QMARK] = ACTIONS(9411), + [aux_sym_close_statement_token1] = ACTIONS(9409), + [aux_sym_put_statement_token1] = ACTIONS(9409), + [aux_sym_unlock_statement_token1] = ACTIONS(9409), + [aux_sym_seek_statement_token1] = ACTIONS(9409), + [sym_reset_statement] = ACTIONS(9409), + [aux_sym_raise_event_statement_token1] = ACTIONS(9409), + [sym_stop_statement] = ACTIONS(9409), + [sym_beep_statement] = ACTIONS(9409), + [aux_sym_unload_statement_token1] = ACTIONS(9409), + [aux_sym_def_type_statement_token1] = ACTIONS(9409), + [aux_sym_def_type_statement_token2] = ACTIONS(9409), + [aux_sym_def_type_statement_token3] = ACTIONS(9409), + [aux_sym_def_type_statement_token4] = ACTIONS(9409), + [aux_sym_def_type_statement_token5] = ACTIONS(9409), + [aux_sym_def_type_statement_token6] = ACTIONS(9409), + [aux_sym_def_type_statement_token7] = ACTIONS(9409), + [aux_sym_def_type_statement_token8] = ACTIONS(9409), + [aux_sym_def_type_statement_token9] = ACTIONS(9409), + [aux_sym_def_type_statement_token10] = ACTIONS(9409), + [aux_sym_def_type_statement_token11] = ACTIONS(9409), + [aux_sym_def_type_statement_token12] = ACTIONS(9409), + [aux_sym_def_type_statement_token13] = ACTIONS(9409), + [aux_sym_def_type_statement_token14] = ACTIONS(9409), + [aux_sym_call_statement_token1] = ACTIONS(9409), + [sym__ambiguous_call_statement] = ACTIONS(9409), + [aux_sym_addressof_expression_token1] = ACTIONS(9409), + [aux_sym_type_of_expression_token1] = ACTIONS(9409), + [aux_sym_unary_expression_token1] = ACTIONS(9409), + [sym_string_literal] = ACTIONS(9411), + [sym_number_literal] = ACTIONS(9411), + [aux_sym_boolean_literal_token1] = ACTIONS(9409), + [aux_sym_boolean_literal_token2] = ACTIONS(9409), + [sym_nothing_literal] = ACTIONS(9409), + [sym_null_literal] = ACTIONS(9409), + [sym_empty_literal] = ACTIONS(9409), + [sym_date_literal] = ACTIONS(9411), + [anon_sym_POUND] = ACTIONS(9409), + }, + [STATE(4414)] = { + [sym_identifier] = ACTIONS(9413), + [sym_newline] = ACTIONS(9415), + [anon_sym_COLON] = ACTIONS(9415), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9413), + [aux_sym_frm_property_statement_token1] = ACTIONS(9413), + [anon_sym_DOT] = ACTIONS(9413), + [anon_sym_BANG] = ACTIONS(9415), + [aux_sym__attribute_identifier_token1] = ACTIONS(9413), + [aux_sym_option_statement_token3] = ACTIONS(9413), + [aux_sym_type_declaration_token1] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9413), + [aux_sym_enum_declaration_token1] = ACTIONS(9413), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9413), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9413), + [aux_sym_declare_function_statement_token1] = ACTIONS(9413), + [aux_sym_preprocessor_const_token1] = ACTIONS(9413), + [aux_sym__property_get_header_token1] = ACTIONS(9413), + [aux_sym_event_declaration_token1] = ACTIONS(9413), + [sym_static_modifier] = ACTIONS(9413), + [sym__dim_keyword] = ACTIONS(9413), + [sym__redim_keyword] = ACTIONS(9413), + [aux_sym_get_accessor_token1] = ACTIONS(9413), + [aux_sym_set_accessor_token1] = ACTIONS(9413), + [aux_sym_const_declaration_token1] = ACTIONS(9413), + [anon_sym_LPAREN] = ACTIONS(9415), + [aux_sym_as_type_clause_token2] = ACTIONS(9413), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9413), + [aux_sym_visibility_token1] = ACTIONS(9413), + [aux_sym_visibility_token2] = ACTIONS(9413), + [aux_sym_elseif_fragment_token1] = ACTIONS(9413), + [aux_sym_else_fragment_token1] = ACTIONS(9413), + [aux_sym_select_statement_token1] = ACTIONS(9413), + [aux_sym__for_header_token1] = ACTIONS(9413), + [aux_sym_do_statement_token1] = ACTIONS(9413), + [aux_sym_do_condition_token1] = ACTIONS(9413), + [aux_sym_with_statement_token1] = ACTIONS(9413), + [aux_sym_exit_statement_token1] = ACTIONS(9413), + [sym_end_statement] = ACTIONS(9415), + [aux_sym_on_goto_statement_token1] = ACTIONS(9413), + [aux_sym_on_goto_statement_token2] = ACTIONS(9413), + [aux_sym_on_error_statement_token2] = ACTIONS(9413), + [sym__ambiguous_redim_statement] = ACTIONS(9415), + [aux_sym_erase_statement_token1] = ACTIONS(9413), + [aux_sym_open_statement_token1] = ACTIONS(9413), + [aux_sym_file_mode_token2] = ACTIONS(9413), + [aux_sym_file_access_token2] = ACTIONS(9413), + [aux_sym_file_lock_token2] = ACTIONS(9413), + [aux_sym_print_statement_token1] = ACTIONS(9413), + [anon_sym_PLUS] = ACTIONS(9415), + [anon_sym_DASH] = ACTIONS(9413), + [anon_sym_QMARK] = ACTIONS(9415), + [aux_sym_close_statement_token1] = ACTIONS(9413), + [aux_sym_put_statement_token1] = ACTIONS(9413), + [aux_sym_unlock_statement_token1] = ACTIONS(9413), + [aux_sym_seek_statement_token1] = ACTIONS(9413), + [sym_reset_statement] = ACTIONS(9413), + [aux_sym_raise_event_statement_token1] = ACTIONS(9413), + [sym_stop_statement] = ACTIONS(9413), + [sym_beep_statement] = ACTIONS(9413), + [aux_sym_unload_statement_token1] = ACTIONS(9413), + [aux_sym_def_type_statement_token1] = ACTIONS(9413), + [aux_sym_def_type_statement_token2] = ACTIONS(9413), + [aux_sym_def_type_statement_token3] = ACTIONS(9413), + [aux_sym_def_type_statement_token4] = ACTIONS(9413), + [aux_sym_def_type_statement_token5] = ACTIONS(9413), + [aux_sym_def_type_statement_token6] = ACTIONS(9413), + [aux_sym_def_type_statement_token7] = ACTIONS(9413), + [aux_sym_def_type_statement_token8] = ACTIONS(9413), + [aux_sym_def_type_statement_token9] = ACTIONS(9413), + [aux_sym_def_type_statement_token10] = ACTIONS(9413), + [aux_sym_def_type_statement_token11] = ACTIONS(9413), + [aux_sym_def_type_statement_token12] = ACTIONS(9413), + [aux_sym_def_type_statement_token13] = ACTIONS(9413), + [aux_sym_def_type_statement_token14] = ACTIONS(9413), + [aux_sym_call_statement_token1] = ACTIONS(9413), + [sym__ambiguous_call_statement] = ACTIONS(9413), + [aux_sym_addressof_expression_token1] = ACTIONS(9413), + [aux_sym_type_of_expression_token1] = ACTIONS(9413), + [aux_sym_unary_expression_token1] = ACTIONS(9413), + [sym_string_literal] = ACTIONS(9415), + [sym_number_literal] = ACTIONS(9415), + [aux_sym_boolean_literal_token1] = ACTIONS(9413), + [aux_sym_boolean_literal_token2] = ACTIONS(9413), + [sym_nothing_literal] = ACTIONS(9413), + [sym_null_literal] = ACTIONS(9413), + [sym_empty_literal] = ACTIONS(9413), + [sym_date_literal] = ACTIONS(9415), + [anon_sym_POUND] = ACTIONS(9413), + }, + [STATE(4415)] = { + [sym_identifier] = ACTIONS(9419), + [sym_newline] = ACTIONS(9421), + [anon_sym_COLON] = ACTIONS(9421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9419), + [aux_sym_frm_property_statement_token1] = ACTIONS(9419), + [anon_sym_DOT] = ACTIONS(9419), + [anon_sym_BANG] = ACTIONS(9421), + [aux_sym__attribute_identifier_token1] = ACTIONS(9419), + [aux_sym_option_statement_token3] = ACTIONS(9419), + [aux_sym_type_declaration_token1] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9419), + [aux_sym_enum_declaration_token1] = ACTIONS(9419), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9419), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9419), + [aux_sym_declare_function_statement_token1] = ACTIONS(9419), + [aux_sym_preprocessor_const_token1] = ACTIONS(9419), + [aux_sym__property_get_header_token1] = ACTIONS(9419), + [aux_sym_event_declaration_token1] = ACTIONS(9419), + [sym_static_modifier] = ACTIONS(9419), + [sym__dim_keyword] = ACTIONS(9419), + [sym__redim_keyword] = ACTIONS(9419), + [aux_sym_get_accessor_token1] = ACTIONS(9419), + [aux_sym_set_accessor_token1] = ACTIONS(9419), + [aux_sym_const_declaration_token1] = ACTIONS(9419), + [anon_sym_LPAREN] = ACTIONS(9421), + [aux_sym_as_type_clause_token2] = ACTIONS(9419), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9419), + [aux_sym_visibility_token1] = ACTIONS(9419), + [aux_sym_visibility_token2] = ACTIONS(9419), + [aux_sym_elseif_fragment_token1] = ACTIONS(9419), + [aux_sym_else_fragment_token1] = ACTIONS(9419), + [aux_sym_select_statement_token1] = ACTIONS(9419), + [aux_sym__for_header_token1] = ACTIONS(9419), + [aux_sym_do_statement_token1] = ACTIONS(9419), + [aux_sym_do_condition_token1] = ACTIONS(9419), + [aux_sym_with_statement_token1] = ACTIONS(9419), + [aux_sym_exit_statement_token1] = ACTIONS(9419), + [sym_end_statement] = ACTIONS(9421), + [aux_sym_on_goto_statement_token1] = ACTIONS(9419), + [aux_sym_on_goto_statement_token2] = ACTIONS(9419), + [aux_sym_on_error_statement_token2] = ACTIONS(9419), + [sym__ambiguous_redim_statement] = ACTIONS(9421), + [aux_sym_erase_statement_token1] = ACTIONS(9419), + [aux_sym_open_statement_token1] = ACTIONS(9419), + [aux_sym_file_mode_token2] = ACTIONS(9419), + [aux_sym_file_access_token2] = ACTIONS(9419), + [aux_sym_file_lock_token2] = ACTIONS(9419), + [aux_sym_print_statement_token1] = ACTIONS(9419), + [anon_sym_PLUS] = ACTIONS(9421), + [anon_sym_DASH] = ACTIONS(9419), + [anon_sym_QMARK] = ACTIONS(9421), + [aux_sym_close_statement_token1] = ACTIONS(9419), + [aux_sym_put_statement_token1] = ACTIONS(9419), + [aux_sym_unlock_statement_token1] = ACTIONS(9419), + [aux_sym_seek_statement_token1] = ACTIONS(9419), + [sym_reset_statement] = ACTIONS(9419), + [aux_sym_raise_event_statement_token1] = ACTIONS(9419), + [sym_stop_statement] = ACTIONS(9419), + [sym_beep_statement] = ACTIONS(9419), + [aux_sym_unload_statement_token1] = ACTIONS(9419), + [aux_sym_def_type_statement_token1] = ACTIONS(9419), + [aux_sym_def_type_statement_token2] = ACTIONS(9419), + [aux_sym_def_type_statement_token3] = ACTIONS(9419), + [aux_sym_def_type_statement_token4] = ACTIONS(9419), + [aux_sym_def_type_statement_token5] = ACTIONS(9419), + [aux_sym_def_type_statement_token6] = ACTIONS(9419), + [aux_sym_def_type_statement_token7] = ACTIONS(9419), + [aux_sym_def_type_statement_token8] = ACTIONS(9419), + [aux_sym_def_type_statement_token9] = ACTIONS(9419), + [aux_sym_def_type_statement_token10] = ACTIONS(9419), + [aux_sym_def_type_statement_token11] = ACTIONS(9419), + [aux_sym_def_type_statement_token12] = ACTIONS(9419), + [aux_sym_def_type_statement_token13] = ACTIONS(9419), + [aux_sym_def_type_statement_token14] = ACTIONS(9419), + [aux_sym_call_statement_token1] = ACTIONS(9419), + [sym__ambiguous_call_statement] = ACTIONS(9419), + [aux_sym_addressof_expression_token1] = ACTIONS(9419), + [aux_sym_type_of_expression_token1] = ACTIONS(9419), + [aux_sym_unary_expression_token1] = ACTIONS(9419), + [sym_string_literal] = ACTIONS(9421), + [sym_number_literal] = ACTIONS(9421), + [aux_sym_boolean_literal_token1] = ACTIONS(9419), + [aux_sym_boolean_literal_token2] = ACTIONS(9419), + [sym_nothing_literal] = ACTIONS(9419), + [sym_null_literal] = ACTIONS(9419), + [sym_empty_literal] = ACTIONS(9419), + [sym_date_literal] = ACTIONS(9421), + [anon_sym_POUND] = ACTIONS(9419), + }, + [STATE(4416)] = { + [sym_identifier] = ACTIONS(9423), + [sym_newline] = ACTIONS(9425), + [anon_sym_COLON] = ACTIONS(9425), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9423), + [aux_sym_frm_property_statement_token1] = ACTIONS(9423), + [anon_sym_DOT] = ACTIONS(9423), + [anon_sym_BANG] = ACTIONS(9425), + [aux_sym__attribute_identifier_token1] = ACTIONS(9423), + [aux_sym_option_statement_token3] = ACTIONS(9423), + [aux_sym_type_declaration_token1] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9423), + [aux_sym_enum_declaration_token1] = ACTIONS(9423), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9423), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9423), + [aux_sym_declare_function_statement_token1] = ACTIONS(9423), + [aux_sym_preprocessor_const_token1] = ACTIONS(9423), + [aux_sym__property_get_header_token1] = ACTIONS(9423), + [aux_sym_event_declaration_token1] = ACTIONS(9423), + [sym_static_modifier] = ACTIONS(9423), + [sym__dim_keyword] = ACTIONS(9423), + [sym__redim_keyword] = ACTIONS(9423), + [aux_sym_get_accessor_token1] = ACTIONS(9423), + [aux_sym_set_accessor_token1] = ACTIONS(9423), + [aux_sym_const_declaration_token1] = ACTIONS(9423), + [anon_sym_LPAREN] = ACTIONS(9425), + [aux_sym_as_type_clause_token2] = ACTIONS(9423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9423), + [aux_sym_visibility_token1] = ACTIONS(9423), + [aux_sym_visibility_token2] = ACTIONS(9423), + [aux_sym_elseif_fragment_token1] = ACTIONS(9423), + [aux_sym_else_fragment_token1] = ACTIONS(9423), + [aux_sym_select_statement_token1] = ACTIONS(9423), + [aux_sym__for_header_token1] = ACTIONS(9423), + [aux_sym_do_statement_token1] = ACTIONS(9423), + [aux_sym_do_condition_token1] = ACTIONS(9423), + [aux_sym_with_statement_token1] = ACTIONS(9423), + [aux_sym_exit_statement_token1] = ACTIONS(9423), + [sym_end_statement] = ACTIONS(9425), + [aux_sym_on_goto_statement_token1] = ACTIONS(9423), + [aux_sym_on_goto_statement_token2] = ACTIONS(9423), + [aux_sym_on_error_statement_token2] = ACTIONS(9423), + [sym__ambiguous_redim_statement] = ACTIONS(9425), + [aux_sym_erase_statement_token1] = ACTIONS(9423), + [aux_sym_open_statement_token1] = ACTIONS(9423), + [aux_sym_file_mode_token2] = ACTIONS(9423), + [aux_sym_file_access_token2] = ACTIONS(9423), + [aux_sym_file_lock_token2] = ACTIONS(9423), + [aux_sym_print_statement_token1] = ACTIONS(9423), + [anon_sym_PLUS] = ACTIONS(9425), + [anon_sym_DASH] = ACTIONS(9423), + [anon_sym_QMARK] = ACTIONS(9425), + [aux_sym_close_statement_token1] = ACTIONS(9423), + [aux_sym_put_statement_token1] = ACTIONS(9423), + [aux_sym_unlock_statement_token1] = ACTIONS(9423), + [aux_sym_seek_statement_token1] = ACTIONS(9423), + [sym_reset_statement] = ACTIONS(9423), + [aux_sym_raise_event_statement_token1] = ACTIONS(9423), + [sym_stop_statement] = ACTIONS(9423), + [sym_beep_statement] = ACTIONS(9423), + [aux_sym_unload_statement_token1] = ACTIONS(9423), + [aux_sym_def_type_statement_token1] = ACTIONS(9423), + [aux_sym_def_type_statement_token2] = ACTIONS(9423), + [aux_sym_def_type_statement_token3] = ACTIONS(9423), + [aux_sym_def_type_statement_token4] = ACTIONS(9423), + [aux_sym_def_type_statement_token5] = ACTIONS(9423), + [aux_sym_def_type_statement_token6] = ACTIONS(9423), + [aux_sym_def_type_statement_token7] = ACTIONS(9423), + [aux_sym_def_type_statement_token8] = ACTIONS(9423), + [aux_sym_def_type_statement_token9] = ACTIONS(9423), + [aux_sym_def_type_statement_token10] = ACTIONS(9423), + [aux_sym_def_type_statement_token11] = ACTIONS(9423), + [aux_sym_def_type_statement_token12] = ACTIONS(9423), + [aux_sym_def_type_statement_token13] = ACTIONS(9423), + [aux_sym_def_type_statement_token14] = ACTIONS(9423), + [aux_sym_call_statement_token1] = ACTIONS(9423), + [sym__ambiguous_call_statement] = ACTIONS(9423), + [aux_sym_addressof_expression_token1] = ACTIONS(9423), + [aux_sym_type_of_expression_token1] = ACTIONS(9423), + [aux_sym_unary_expression_token1] = ACTIONS(9423), + [sym_string_literal] = ACTIONS(9425), + [sym_number_literal] = ACTIONS(9425), + [aux_sym_boolean_literal_token1] = ACTIONS(9423), + [aux_sym_boolean_literal_token2] = ACTIONS(9423), + [sym_nothing_literal] = ACTIONS(9423), + [sym_null_literal] = ACTIONS(9423), + [sym_empty_literal] = ACTIONS(9423), + [sym_date_literal] = ACTIONS(9425), + [anon_sym_POUND] = ACTIONS(9423), + }, + [STATE(4417)] = { + [sym_identifier] = ACTIONS(9427), + [sym_newline] = ACTIONS(9429), + [anon_sym_COLON] = ACTIONS(9429), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9427), + [aux_sym_frm_property_statement_token1] = ACTIONS(9427), + [anon_sym_DOT] = ACTIONS(9427), + [anon_sym_BANG] = ACTIONS(9429), + [aux_sym__attribute_identifier_token1] = ACTIONS(9427), + [aux_sym_option_statement_token3] = ACTIONS(9427), + [aux_sym_type_declaration_token1] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9427), + [aux_sym_enum_declaration_token1] = ACTIONS(9427), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9427), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9427), + [aux_sym_declare_function_statement_token1] = ACTIONS(9427), + [aux_sym_preprocessor_const_token1] = ACTIONS(9427), + [aux_sym__property_get_header_token1] = ACTIONS(9427), + [aux_sym_event_declaration_token1] = ACTIONS(9427), + [sym_static_modifier] = ACTIONS(9427), + [sym__dim_keyword] = ACTIONS(9427), + [sym__redim_keyword] = ACTIONS(9427), + [aux_sym_get_accessor_token1] = ACTIONS(9427), + [aux_sym_set_accessor_token1] = ACTIONS(9427), + [aux_sym_const_declaration_token1] = ACTIONS(9427), + [anon_sym_LPAREN] = ACTIONS(9429), + [aux_sym_as_type_clause_token2] = ACTIONS(9427), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9427), + [aux_sym_visibility_token1] = ACTIONS(9427), + [aux_sym_visibility_token2] = ACTIONS(9427), + [aux_sym_elseif_fragment_token1] = ACTIONS(9427), + [aux_sym_else_fragment_token1] = ACTIONS(9427), + [aux_sym_select_statement_token1] = ACTIONS(9427), + [aux_sym__for_header_token1] = ACTIONS(9427), + [aux_sym_do_statement_token1] = ACTIONS(9427), + [aux_sym_do_condition_token1] = ACTIONS(9427), + [aux_sym_with_statement_token1] = ACTIONS(9427), + [aux_sym_exit_statement_token1] = ACTIONS(9427), + [sym_end_statement] = ACTIONS(9429), + [aux_sym_on_goto_statement_token1] = ACTIONS(9427), + [aux_sym_on_goto_statement_token2] = ACTIONS(9427), + [aux_sym_on_error_statement_token2] = ACTIONS(9427), + [sym__ambiguous_redim_statement] = ACTIONS(9429), + [aux_sym_erase_statement_token1] = ACTIONS(9427), + [aux_sym_open_statement_token1] = ACTIONS(9427), + [aux_sym_file_mode_token2] = ACTIONS(9427), + [aux_sym_file_access_token2] = ACTIONS(9427), + [aux_sym_file_lock_token2] = ACTIONS(9427), + [aux_sym_print_statement_token1] = ACTIONS(9427), + [anon_sym_PLUS] = ACTIONS(9429), + [anon_sym_DASH] = ACTIONS(9427), + [anon_sym_QMARK] = ACTIONS(9429), + [aux_sym_close_statement_token1] = ACTIONS(9427), + [aux_sym_put_statement_token1] = ACTIONS(9427), + [aux_sym_unlock_statement_token1] = ACTIONS(9427), + [aux_sym_seek_statement_token1] = ACTIONS(9427), + [sym_reset_statement] = ACTIONS(9427), + [aux_sym_raise_event_statement_token1] = ACTIONS(9427), + [sym_stop_statement] = ACTIONS(9427), + [sym_beep_statement] = ACTIONS(9427), + [aux_sym_unload_statement_token1] = ACTIONS(9427), + [aux_sym_def_type_statement_token1] = ACTIONS(9427), + [aux_sym_def_type_statement_token2] = ACTIONS(9427), + [aux_sym_def_type_statement_token3] = ACTIONS(9427), + [aux_sym_def_type_statement_token4] = ACTIONS(9427), + [aux_sym_def_type_statement_token5] = ACTIONS(9427), + [aux_sym_def_type_statement_token6] = ACTIONS(9427), + [aux_sym_def_type_statement_token7] = ACTIONS(9427), + [aux_sym_def_type_statement_token8] = ACTIONS(9427), + [aux_sym_def_type_statement_token9] = ACTIONS(9427), + [aux_sym_def_type_statement_token10] = ACTIONS(9427), + [aux_sym_def_type_statement_token11] = ACTIONS(9427), + [aux_sym_def_type_statement_token12] = ACTIONS(9427), + [aux_sym_def_type_statement_token13] = ACTIONS(9427), + [aux_sym_def_type_statement_token14] = ACTIONS(9427), + [aux_sym_call_statement_token1] = ACTIONS(9427), + [sym__ambiguous_call_statement] = ACTIONS(9427), + [aux_sym_addressof_expression_token1] = ACTIONS(9427), + [aux_sym_type_of_expression_token1] = ACTIONS(9427), + [aux_sym_unary_expression_token1] = ACTIONS(9427), + [sym_string_literal] = ACTIONS(9429), + [sym_number_literal] = ACTIONS(9429), + [aux_sym_boolean_literal_token1] = ACTIONS(9427), + [aux_sym_boolean_literal_token2] = ACTIONS(9427), + [sym_nothing_literal] = ACTIONS(9427), + [sym_null_literal] = ACTIONS(9427), + [sym_empty_literal] = ACTIONS(9427), + [sym_date_literal] = ACTIONS(9429), + [anon_sym_POUND] = ACTIONS(9427), + }, + [STATE(4418)] = { + [sym_next_variable_list] = STATE(6905), + [sym__assignable_expression] = STATE(5160), + [sym__callable_expression] = STATE(5097), + [sym_call_expression] = STATE(5279), + [sym_member_expression] = STATE(6045), + [sym_qualified_member_expression] = STATE(6097), + [sym_implicit_member_expression] = STATE(6097), + [sym_identifier] = ACTIONS(9957), + [sym_newline] = ACTIONS(6842), + [anon_sym_COLON] = ACTIONS(6842), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6844), + [aux_sym_frm_property_statement_token1] = ACTIONS(9959), + [anon_sym_DOT] = ACTIONS(9961), + [anon_sym_BANG] = ACTIONS(9963), + [aux_sym__attribute_identifier_token1] = ACTIONS(6844), + [aux_sym_option_statement_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6844), + [aux_sym_preprocessor_const_token1] = ACTIONS(6844), + [sym_static_modifier] = ACTIONS(6844), + [sym__dim_keyword] = ACTIONS(6844), + [sym__redim_keyword] = ACTIONS(6844), + [aux_sym_get_accessor_token1] = ACTIONS(6844), + [aux_sym_set_accessor_token1] = ACTIONS(6844), + [aux_sym_const_declaration_token1] = ACTIONS(6844), + [anon_sym_LPAREN] = ACTIONS(6842), + [aux_sym_as_type_clause_token2] = ACTIONS(6844), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9965), + [aux_sym_visibility_token1] = ACTIONS(6844), + [aux_sym_visibility_token2] = ACTIONS(6844), + [aux_sym_elseif_fragment_token1] = ACTIONS(6844), + [aux_sym_else_fragment_token1] = ACTIONS(6844), + [aux_sym_select_statement_token1] = ACTIONS(6844), + [aux_sym__for_header_token1] = ACTIONS(6844), + [aux_sym_do_statement_token1] = ACTIONS(6844), + [aux_sym_do_condition_token1] = ACTIONS(6844), + [aux_sym_while_statement_token1] = ACTIONS(6844), + [aux_sym_with_statement_token1] = ACTIONS(6844), + [aux_sym_exit_statement_token1] = ACTIONS(6844), + [sym_end_statement] = ACTIONS(6842), + [aux_sym_on_goto_statement_token1] = ACTIONS(6844), + [aux_sym_on_goto_statement_token2] = ACTIONS(6844), + [aux_sym_on_error_statement_token2] = ACTIONS(6844), + [sym__ambiguous_redim_statement] = ACTIONS(6842), + [aux_sym_erase_statement_token1] = ACTIONS(6844), + [aux_sym_open_statement_token1] = ACTIONS(6844), + [aux_sym_file_mode_token2] = ACTIONS(6844), + [aux_sym_file_access_token2] = ACTIONS(6844), + [aux_sym_file_lock_token2] = ACTIONS(6844), + [aux_sym_print_statement_token1] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6842), + [aux_sym_close_statement_token1] = ACTIONS(6844), + [aux_sym_put_statement_token1] = ACTIONS(6844), + [aux_sym_unlock_statement_token1] = ACTIONS(6844), + [aux_sym_seek_statement_token1] = ACTIONS(6844), + [sym_reset_statement] = ACTIONS(6844), + [aux_sym_raise_event_statement_token1] = ACTIONS(6844), + [sym_stop_statement] = ACTIONS(6844), + [sym_beep_statement] = ACTIONS(6844), + [aux_sym_unload_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token2] = ACTIONS(6844), + [aux_sym_def_type_statement_token3] = ACTIONS(6844), + [aux_sym_def_type_statement_token4] = ACTIONS(6844), + [aux_sym_def_type_statement_token5] = ACTIONS(6844), + [aux_sym_def_type_statement_token6] = ACTIONS(6844), + [aux_sym_def_type_statement_token7] = ACTIONS(6844), + [aux_sym_def_type_statement_token8] = ACTIONS(6844), + [aux_sym_def_type_statement_token9] = ACTIONS(6844), + [aux_sym_def_type_statement_token10] = ACTIONS(6844), + [aux_sym_def_type_statement_token11] = ACTIONS(6844), + [aux_sym_def_type_statement_token12] = ACTIONS(6844), + [aux_sym_def_type_statement_token13] = ACTIONS(6844), + [aux_sym_def_type_statement_token14] = ACTIONS(6844), + [aux_sym_call_statement_token1] = ACTIONS(6844), + [sym__ambiguous_call_statement] = ACTIONS(6844), + [aux_sym_addressof_expression_token1] = ACTIONS(6844), + [aux_sym_type_of_expression_token1] = ACTIONS(6844), + [aux_sym_unary_expression_token1] = ACTIONS(6844), + [sym_string_literal] = ACTIONS(6842), + [sym_number_literal] = ACTIONS(6842), + [aux_sym_boolean_literal_token1] = ACTIONS(6844), + [aux_sym_boolean_literal_token2] = ACTIONS(6844), + [sym_nothing_literal] = ACTIONS(6844), + [sym_null_literal] = ACTIONS(6844), + [sym_empty_literal] = ACTIONS(6844), + [sym_date_literal] = ACTIONS(6842), + [anon_sym_POUND] = ACTIONS(6844), + }, + [STATE(4419)] = { + [sym_identifier] = ACTIONS(9431), + [sym_newline] = ACTIONS(9433), + [anon_sym_COLON] = ACTIONS(9433), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9431), + [aux_sym_frm_property_statement_token1] = ACTIONS(9431), + [anon_sym_DOT] = ACTIONS(9431), + [anon_sym_BANG] = ACTIONS(9433), + [aux_sym__attribute_identifier_token1] = ACTIONS(9431), + [aux_sym_option_statement_token3] = ACTIONS(9431), + [aux_sym_type_declaration_token1] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9431), + [aux_sym_enum_declaration_token1] = ACTIONS(9431), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9431), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9431), + [aux_sym_declare_function_statement_token1] = ACTIONS(9431), + [aux_sym_preprocessor_const_token1] = ACTIONS(9431), + [aux_sym__property_get_header_token1] = ACTIONS(9431), + [aux_sym_event_declaration_token1] = ACTIONS(9431), + [sym_static_modifier] = ACTIONS(9431), + [sym__dim_keyword] = ACTIONS(9431), + [sym__redim_keyword] = ACTIONS(9431), + [aux_sym_get_accessor_token1] = ACTIONS(9431), + [aux_sym_set_accessor_token1] = ACTIONS(9431), + [aux_sym_const_declaration_token1] = ACTIONS(9431), + [anon_sym_LPAREN] = ACTIONS(9433), + [aux_sym_as_type_clause_token2] = ACTIONS(9431), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9431), + [aux_sym_visibility_token1] = ACTIONS(9431), + [aux_sym_visibility_token2] = ACTIONS(9431), + [aux_sym_elseif_fragment_token1] = ACTIONS(9431), + [aux_sym_else_fragment_token1] = ACTIONS(9431), + [aux_sym_select_statement_token1] = ACTIONS(9431), + [aux_sym__for_header_token1] = ACTIONS(9431), + [aux_sym_do_statement_token1] = ACTIONS(9431), + [aux_sym_do_condition_token1] = ACTIONS(9431), + [aux_sym_with_statement_token1] = ACTIONS(9431), + [aux_sym_exit_statement_token1] = ACTIONS(9431), + [sym_end_statement] = ACTIONS(9433), + [aux_sym_on_goto_statement_token1] = ACTIONS(9431), + [aux_sym_on_goto_statement_token2] = ACTIONS(9431), + [aux_sym_on_error_statement_token2] = ACTIONS(9431), + [sym__ambiguous_redim_statement] = ACTIONS(9433), + [aux_sym_erase_statement_token1] = ACTIONS(9431), + [aux_sym_open_statement_token1] = ACTIONS(9431), + [aux_sym_file_mode_token2] = ACTIONS(9431), + [aux_sym_file_access_token2] = ACTIONS(9431), + [aux_sym_file_lock_token2] = ACTIONS(9431), + [aux_sym_print_statement_token1] = ACTIONS(9431), + [anon_sym_PLUS] = ACTIONS(9433), + [anon_sym_DASH] = ACTIONS(9431), + [anon_sym_QMARK] = ACTIONS(9433), + [aux_sym_close_statement_token1] = ACTIONS(9431), + [aux_sym_put_statement_token1] = ACTIONS(9431), + [aux_sym_unlock_statement_token1] = ACTIONS(9431), + [aux_sym_seek_statement_token1] = ACTIONS(9431), + [sym_reset_statement] = ACTIONS(9431), + [aux_sym_raise_event_statement_token1] = ACTIONS(9431), + [sym_stop_statement] = ACTIONS(9431), + [sym_beep_statement] = ACTIONS(9431), + [aux_sym_unload_statement_token1] = ACTIONS(9431), + [aux_sym_def_type_statement_token1] = ACTIONS(9431), + [aux_sym_def_type_statement_token2] = ACTIONS(9431), + [aux_sym_def_type_statement_token3] = ACTIONS(9431), + [aux_sym_def_type_statement_token4] = ACTIONS(9431), + [aux_sym_def_type_statement_token5] = ACTIONS(9431), + [aux_sym_def_type_statement_token6] = ACTIONS(9431), + [aux_sym_def_type_statement_token7] = ACTIONS(9431), + [aux_sym_def_type_statement_token8] = ACTIONS(9431), + [aux_sym_def_type_statement_token9] = ACTIONS(9431), + [aux_sym_def_type_statement_token10] = ACTIONS(9431), + [aux_sym_def_type_statement_token11] = ACTIONS(9431), + [aux_sym_def_type_statement_token12] = ACTIONS(9431), + [aux_sym_def_type_statement_token13] = ACTIONS(9431), + [aux_sym_def_type_statement_token14] = ACTIONS(9431), + [aux_sym_call_statement_token1] = ACTIONS(9431), + [sym__ambiguous_call_statement] = ACTIONS(9431), + [aux_sym_addressof_expression_token1] = ACTIONS(9431), + [aux_sym_type_of_expression_token1] = ACTIONS(9431), + [aux_sym_unary_expression_token1] = ACTIONS(9431), + [sym_string_literal] = ACTIONS(9433), + [sym_number_literal] = ACTIONS(9433), + [aux_sym_boolean_literal_token1] = ACTIONS(9431), + [aux_sym_boolean_literal_token2] = ACTIONS(9431), + [sym_nothing_literal] = ACTIONS(9431), + [sym_null_literal] = ACTIONS(9431), + [sym_empty_literal] = ACTIONS(9431), + [sym_date_literal] = ACTIONS(9433), + [anon_sym_POUND] = ACTIONS(9431), + }, + [STATE(4420)] = { + [sym_next_variable_list] = STATE(6909), + [sym__assignable_expression] = STATE(5160), + [sym__callable_expression] = STATE(5097), + [sym_call_expression] = STATE(5279), + [sym_member_expression] = STATE(6045), + [sym_qualified_member_expression] = STATE(6097), + [sym_implicit_member_expression] = STATE(6097), + [sym_identifier] = ACTIONS(9957), + [sym_newline] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(6856), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6858), + [aux_sym_frm_property_statement_token1] = ACTIONS(9959), + [anon_sym_DOT] = ACTIONS(9961), + [anon_sym_BANG] = ACTIONS(9963), + [aux_sym__attribute_identifier_token1] = ACTIONS(6858), + [aux_sym_option_statement_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6858), + [aux_sym_preprocessor_const_token1] = ACTIONS(6858), + [sym_static_modifier] = ACTIONS(6858), + [sym__dim_keyword] = ACTIONS(6858), + [sym__redim_keyword] = ACTIONS(6858), + [aux_sym_get_accessor_token1] = ACTIONS(6858), + [aux_sym_set_accessor_token1] = ACTIONS(6858), + [aux_sym_const_declaration_token1] = ACTIONS(6858), + [anon_sym_LPAREN] = ACTIONS(6856), + [aux_sym_as_type_clause_token2] = ACTIONS(6858), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9965), + [aux_sym_visibility_token1] = ACTIONS(6858), + [aux_sym_visibility_token2] = ACTIONS(6858), + [aux_sym_elseif_fragment_token1] = ACTIONS(6858), + [aux_sym_else_fragment_token1] = ACTIONS(6858), + [aux_sym_select_statement_token1] = ACTIONS(6858), + [aux_sym__for_header_token1] = ACTIONS(6858), + [aux_sym_do_statement_token1] = ACTIONS(6858), + [aux_sym_do_condition_token1] = ACTIONS(6858), + [aux_sym_while_statement_token1] = ACTIONS(6858), + [aux_sym_with_statement_token1] = ACTIONS(6858), + [aux_sym_exit_statement_token1] = ACTIONS(6858), + [sym_end_statement] = ACTIONS(6856), + [aux_sym_on_goto_statement_token1] = ACTIONS(6858), + [aux_sym_on_goto_statement_token2] = ACTIONS(6858), + [aux_sym_on_error_statement_token2] = ACTIONS(6858), + [sym__ambiguous_redim_statement] = ACTIONS(6856), + [aux_sym_erase_statement_token1] = ACTIONS(6858), + [aux_sym_open_statement_token1] = ACTIONS(6858), + [aux_sym_file_mode_token2] = ACTIONS(6858), + [aux_sym_file_access_token2] = ACTIONS(6858), + [aux_sym_file_lock_token2] = ACTIONS(6858), + [aux_sym_print_statement_token1] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6856), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_QMARK] = ACTIONS(6856), + [aux_sym_close_statement_token1] = ACTIONS(6858), + [aux_sym_put_statement_token1] = ACTIONS(6858), + [aux_sym_unlock_statement_token1] = ACTIONS(6858), + [aux_sym_seek_statement_token1] = ACTIONS(6858), + [sym_reset_statement] = ACTIONS(6858), + [aux_sym_raise_event_statement_token1] = ACTIONS(6858), + [sym_stop_statement] = ACTIONS(6858), + [sym_beep_statement] = ACTIONS(6858), + [aux_sym_unload_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token2] = ACTIONS(6858), + [aux_sym_def_type_statement_token3] = ACTIONS(6858), + [aux_sym_def_type_statement_token4] = ACTIONS(6858), + [aux_sym_def_type_statement_token5] = ACTIONS(6858), + [aux_sym_def_type_statement_token6] = ACTIONS(6858), + [aux_sym_def_type_statement_token7] = ACTIONS(6858), + [aux_sym_def_type_statement_token8] = ACTIONS(6858), + [aux_sym_def_type_statement_token9] = ACTIONS(6858), + [aux_sym_def_type_statement_token10] = ACTIONS(6858), + [aux_sym_def_type_statement_token11] = ACTIONS(6858), + [aux_sym_def_type_statement_token12] = ACTIONS(6858), + [aux_sym_def_type_statement_token13] = ACTIONS(6858), + [aux_sym_def_type_statement_token14] = ACTIONS(6858), + [aux_sym_call_statement_token1] = ACTIONS(6858), + [sym__ambiguous_call_statement] = ACTIONS(6858), + [aux_sym_addressof_expression_token1] = ACTIONS(6858), + [aux_sym_type_of_expression_token1] = ACTIONS(6858), + [aux_sym_unary_expression_token1] = ACTIONS(6858), + [sym_string_literal] = ACTIONS(6856), + [sym_number_literal] = ACTIONS(6856), + [aux_sym_boolean_literal_token1] = ACTIONS(6858), + [aux_sym_boolean_literal_token2] = ACTIONS(6858), + [sym_nothing_literal] = ACTIONS(6858), + [sym_null_literal] = ACTIONS(6858), + [sym_empty_literal] = ACTIONS(6858), + [sym_date_literal] = ACTIONS(6856), + [anon_sym_POUND] = ACTIONS(6858), + }, + [STATE(4421)] = { + [sym_identifier] = ACTIONS(9435), + [sym_newline] = ACTIONS(9437), + [anon_sym_COLON] = ACTIONS(9437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9435), + [aux_sym_frm_property_statement_token1] = ACTIONS(9435), + [anon_sym_DOT] = ACTIONS(9435), + [anon_sym_BANG] = ACTIONS(9437), + [aux_sym__attribute_identifier_token1] = ACTIONS(9435), + [aux_sym_option_statement_token3] = ACTIONS(9435), + [aux_sym_type_declaration_token1] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9435), + [aux_sym_enum_declaration_token1] = ACTIONS(9435), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9435), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9435), + [aux_sym_declare_function_statement_token1] = ACTIONS(9435), + [aux_sym_preprocessor_const_token1] = ACTIONS(9435), + [aux_sym__property_get_header_token1] = ACTIONS(9435), + [aux_sym_event_declaration_token1] = ACTIONS(9435), + [sym_static_modifier] = ACTIONS(9435), + [sym__dim_keyword] = ACTIONS(9435), + [sym__redim_keyword] = ACTIONS(9435), + [aux_sym_get_accessor_token1] = ACTIONS(9435), + [aux_sym_set_accessor_token1] = ACTIONS(9435), + [aux_sym_const_declaration_token1] = ACTIONS(9435), + [anon_sym_LPAREN] = ACTIONS(9437), + [aux_sym_as_type_clause_token2] = ACTIONS(9435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9435), + [aux_sym_visibility_token1] = ACTIONS(9435), + [aux_sym_visibility_token2] = ACTIONS(9435), + [aux_sym_elseif_fragment_token1] = ACTIONS(9435), + [aux_sym_else_fragment_token1] = ACTIONS(9435), + [aux_sym_select_statement_token1] = ACTIONS(9435), + [aux_sym__for_header_token1] = ACTIONS(9435), + [aux_sym_do_statement_token1] = ACTIONS(9435), + [aux_sym_do_condition_token1] = ACTIONS(9435), + [aux_sym_with_statement_token1] = ACTIONS(9435), + [aux_sym_exit_statement_token1] = ACTIONS(9435), + [sym_end_statement] = ACTIONS(9437), + [aux_sym_on_goto_statement_token1] = ACTIONS(9435), + [aux_sym_on_goto_statement_token2] = ACTIONS(9435), + [aux_sym_on_error_statement_token2] = ACTIONS(9435), + [sym__ambiguous_redim_statement] = ACTIONS(9437), + [aux_sym_erase_statement_token1] = ACTIONS(9435), + [aux_sym_open_statement_token1] = ACTIONS(9435), + [aux_sym_file_mode_token2] = ACTIONS(9435), + [aux_sym_file_access_token2] = ACTIONS(9435), + [aux_sym_file_lock_token2] = ACTIONS(9435), + [aux_sym_print_statement_token1] = ACTIONS(9435), + [anon_sym_PLUS] = ACTIONS(9437), + [anon_sym_DASH] = ACTIONS(9435), + [anon_sym_QMARK] = ACTIONS(9437), + [aux_sym_close_statement_token1] = ACTIONS(9435), + [aux_sym_put_statement_token1] = ACTIONS(9435), + [aux_sym_unlock_statement_token1] = ACTIONS(9435), + [aux_sym_seek_statement_token1] = ACTIONS(9435), + [sym_reset_statement] = ACTIONS(9435), + [aux_sym_raise_event_statement_token1] = ACTIONS(9435), + [sym_stop_statement] = ACTIONS(9435), + [sym_beep_statement] = ACTIONS(9435), + [aux_sym_unload_statement_token1] = ACTIONS(9435), + [aux_sym_def_type_statement_token1] = ACTIONS(9435), + [aux_sym_def_type_statement_token2] = ACTIONS(9435), + [aux_sym_def_type_statement_token3] = ACTIONS(9435), + [aux_sym_def_type_statement_token4] = ACTIONS(9435), + [aux_sym_def_type_statement_token5] = ACTIONS(9435), + [aux_sym_def_type_statement_token6] = ACTIONS(9435), + [aux_sym_def_type_statement_token7] = ACTIONS(9435), + [aux_sym_def_type_statement_token8] = ACTIONS(9435), + [aux_sym_def_type_statement_token9] = ACTIONS(9435), + [aux_sym_def_type_statement_token10] = ACTIONS(9435), + [aux_sym_def_type_statement_token11] = ACTIONS(9435), + [aux_sym_def_type_statement_token12] = ACTIONS(9435), + [aux_sym_def_type_statement_token13] = ACTIONS(9435), + [aux_sym_def_type_statement_token14] = ACTIONS(9435), + [aux_sym_call_statement_token1] = ACTIONS(9435), + [sym__ambiguous_call_statement] = ACTIONS(9435), + [aux_sym_addressof_expression_token1] = ACTIONS(9435), + [aux_sym_type_of_expression_token1] = ACTIONS(9435), + [aux_sym_unary_expression_token1] = ACTIONS(9435), + [sym_string_literal] = ACTIONS(9437), + [sym_number_literal] = ACTIONS(9437), + [aux_sym_boolean_literal_token1] = ACTIONS(9435), + [aux_sym_boolean_literal_token2] = ACTIONS(9435), + [sym_nothing_literal] = ACTIONS(9435), + [sym_null_literal] = ACTIONS(9435), + [sym_empty_literal] = ACTIONS(9435), + [sym_date_literal] = ACTIONS(9437), + [anon_sym_POUND] = ACTIONS(9435), + }, + [STATE(4422)] = { + [sym_identifier] = ACTIONS(9439), + [sym_newline] = ACTIONS(9441), + [anon_sym_COLON] = ACTIONS(9441), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9439), + [aux_sym_frm_property_statement_token1] = ACTIONS(9439), + [anon_sym_DOT] = ACTIONS(9439), + [anon_sym_BANG] = ACTIONS(9441), + [aux_sym__attribute_identifier_token1] = ACTIONS(9439), + [aux_sym_option_statement_token3] = ACTIONS(9439), + [aux_sym_type_declaration_token1] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9439), + [aux_sym_enum_declaration_token1] = ACTIONS(9439), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9439), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9439), + [aux_sym_declare_function_statement_token1] = ACTIONS(9439), + [aux_sym_preprocessor_const_token1] = ACTIONS(9439), + [aux_sym__property_get_header_token1] = ACTIONS(9439), + [aux_sym_event_declaration_token1] = ACTIONS(9439), + [sym_static_modifier] = ACTIONS(9439), + [sym__dim_keyword] = ACTIONS(9439), + [sym__redim_keyword] = ACTIONS(9439), + [aux_sym_get_accessor_token1] = ACTIONS(9439), + [aux_sym_set_accessor_token1] = ACTIONS(9439), + [aux_sym_const_declaration_token1] = ACTIONS(9439), + [anon_sym_LPAREN] = ACTIONS(9441), + [aux_sym_as_type_clause_token2] = ACTIONS(9439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9439), + [aux_sym_visibility_token1] = ACTIONS(9439), + [aux_sym_visibility_token2] = ACTIONS(9439), + [aux_sym_elseif_fragment_token1] = ACTIONS(9439), + [aux_sym_else_fragment_token1] = ACTIONS(9439), + [aux_sym_select_statement_token1] = ACTIONS(9439), + [aux_sym__for_header_token1] = ACTIONS(9439), + [aux_sym_do_statement_token1] = ACTIONS(9439), + [aux_sym_do_condition_token1] = ACTIONS(9439), + [aux_sym_with_statement_token1] = ACTIONS(9439), + [aux_sym_exit_statement_token1] = ACTIONS(9439), + [sym_end_statement] = ACTIONS(9441), + [aux_sym_on_goto_statement_token1] = ACTIONS(9439), + [aux_sym_on_goto_statement_token2] = ACTIONS(9439), + [aux_sym_on_error_statement_token2] = ACTIONS(9439), + [sym__ambiguous_redim_statement] = ACTIONS(9441), + [aux_sym_erase_statement_token1] = ACTIONS(9439), + [aux_sym_open_statement_token1] = ACTIONS(9439), + [aux_sym_file_mode_token2] = ACTIONS(9439), + [aux_sym_file_access_token2] = ACTIONS(9439), + [aux_sym_file_lock_token2] = ACTIONS(9439), + [aux_sym_print_statement_token1] = ACTIONS(9439), + [anon_sym_PLUS] = ACTIONS(9441), + [anon_sym_DASH] = ACTIONS(9439), + [anon_sym_QMARK] = ACTIONS(9441), + [aux_sym_close_statement_token1] = ACTIONS(9439), + [aux_sym_put_statement_token1] = ACTIONS(9439), + [aux_sym_unlock_statement_token1] = ACTIONS(9439), + [aux_sym_seek_statement_token1] = ACTIONS(9439), + [sym_reset_statement] = ACTIONS(9439), + [aux_sym_raise_event_statement_token1] = ACTIONS(9439), + [sym_stop_statement] = ACTIONS(9439), + [sym_beep_statement] = ACTIONS(9439), + [aux_sym_unload_statement_token1] = ACTIONS(9439), + [aux_sym_def_type_statement_token1] = ACTIONS(9439), + [aux_sym_def_type_statement_token2] = ACTIONS(9439), + [aux_sym_def_type_statement_token3] = ACTIONS(9439), + [aux_sym_def_type_statement_token4] = ACTIONS(9439), + [aux_sym_def_type_statement_token5] = ACTIONS(9439), + [aux_sym_def_type_statement_token6] = ACTIONS(9439), + [aux_sym_def_type_statement_token7] = ACTIONS(9439), + [aux_sym_def_type_statement_token8] = ACTIONS(9439), + [aux_sym_def_type_statement_token9] = ACTIONS(9439), + [aux_sym_def_type_statement_token10] = ACTIONS(9439), + [aux_sym_def_type_statement_token11] = ACTIONS(9439), + [aux_sym_def_type_statement_token12] = ACTIONS(9439), + [aux_sym_def_type_statement_token13] = ACTIONS(9439), + [aux_sym_def_type_statement_token14] = ACTIONS(9439), + [aux_sym_call_statement_token1] = ACTIONS(9439), + [sym__ambiguous_call_statement] = ACTIONS(9439), + [aux_sym_addressof_expression_token1] = ACTIONS(9439), + [aux_sym_type_of_expression_token1] = ACTIONS(9439), + [aux_sym_unary_expression_token1] = ACTIONS(9439), + [sym_string_literal] = ACTIONS(9441), + [sym_number_literal] = ACTIONS(9441), + [aux_sym_boolean_literal_token1] = ACTIONS(9439), + [aux_sym_boolean_literal_token2] = ACTIONS(9439), + [sym_nothing_literal] = ACTIONS(9439), + [sym_null_literal] = ACTIONS(9439), + [sym_empty_literal] = ACTIONS(9439), + [sym_date_literal] = ACTIONS(9441), + [anon_sym_POUND] = ACTIONS(9439), + }, + [STATE(4423)] = { + [sym_identifier] = ACTIONS(9443), + [sym_newline] = ACTIONS(9445), + [anon_sym_COLON] = ACTIONS(9445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9443), + [aux_sym_frm_property_statement_token1] = ACTIONS(9443), + [anon_sym_DOT] = ACTIONS(9443), + [anon_sym_BANG] = ACTIONS(9445), + [aux_sym__attribute_identifier_token1] = ACTIONS(9443), + [aux_sym_option_statement_token3] = ACTIONS(9443), + [aux_sym_type_declaration_token1] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9443), + [aux_sym_enum_declaration_token1] = ACTIONS(9443), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9443), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9443), + [aux_sym_declare_function_statement_token1] = ACTIONS(9443), + [aux_sym_preprocessor_const_token1] = ACTIONS(9443), + [aux_sym__property_get_header_token1] = ACTIONS(9443), + [aux_sym_event_declaration_token1] = ACTIONS(9443), + [sym_static_modifier] = ACTIONS(9443), + [sym__dim_keyword] = ACTIONS(9443), + [sym__redim_keyword] = ACTIONS(9443), + [aux_sym_get_accessor_token1] = ACTIONS(9443), + [aux_sym_set_accessor_token1] = ACTIONS(9443), + [aux_sym_const_declaration_token1] = ACTIONS(9443), + [anon_sym_LPAREN] = ACTIONS(9445), + [aux_sym_as_type_clause_token2] = ACTIONS(9443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9443), + [aux_sym_visibility_token1] = ACTIONS(9443), + [aux_sym_visibility_token2] = ACTIONS(9443), + [aux_sym_elseif_fragment_token1] = ACTIONS(9443), + [aux_sym_else_fragment_token1] = ACTIONS(9443), + [aux_sym_select_statement_token1] = ACTIONS(9443), + [aux_sym__for_header_token1] = ACTIONS(9443), + [aux_sym_do_statement_token1] = ACTIONS(9443), + [aux_sym_do_condition_token1] = ACTIONS(9443), + [aux_sym_with_statement_token1] = ACTIONS(9443), + [aux_sym_exit_statement_token1] = ACTIONS(9443), + [sym_end_statement] = ACTIONS(9445), + [aux_sym_on_goto_statement_token1] = ACTIONS(9443), + [aux_sym_on_goto_statement_token2] = ACTIONS(9443), + [aux_sym_on_error_statement_token2] = ACTIONS(9443), + [sym__ambiguous_redim_statement] = ACTIONS(9445), + [aux_sym_erase_statement_token1] = ACTIONS(9443), + [aux_sym_open_statement_token1] = ACTIONS(9443), + [aux_sym_file_mode_token2] = ACTIONS(9443), + [aux_sym_file_access_token2] = ACTIONS(9443), + [aux_sym_file_lock_token2] = ACTIONS(9443), + [aux_sym_print_statement_token1] = ACTIONS(9443), + [anon_sym_PLUS] = ACTIONS(9445), + [anon_sym_DASH] = ACTIONS(9443), + [anon_sym_QMARK] = ACTIONS(9445), + [aux_sym_close_statement_token1] = ACTIONS(9443), + [aux_sym_put_statement_token1] = ACTIONS(9443), + [aux_sym_unlock_statement_token1] = ACTIONS(9443), + [aux_sym_seek_statement_token1] = ACTIONS(9443), + [sym_reset_statement] = ACTIONS(9443), + [aux_sym_raise_event_statement_token1] = ACTIONS(9443), + [sym_stop_statement] = ACTIONS(9443), + [sym_beep_statement] = ACTIONS(9443), + [aux_sym_unload_statement_token1] = ACTIONS(9443), + [aux_sym_def_type_statement_token1] = ACTIONS(9443), + [aux_sym_def_type_statement_token2] = ACTIONS(9443), + [aux_sym_def_type_statement_token3] = ACTIONS(9443), + [aux_sym_def_type_statement_token4] = ACTIONS(9443), + [aux_sym_def_type_statement_token5] = ACTIONS(9443), + [aux_sym_def_type_statement_token6] = ACTIONS(9443), + [aux_sym_def_type_statement_token7] = ACTIONS(9443), + [aux_sym_def_type_statement_token8] = ACTIONS(9443), + [aux_sym_def_type_statement_token9] = ACTIONS(9443), + [aux_sym_def_type_statement_token10] = ACTIONS(9443), + [aux_sym_def_type_statement_token11] = ACTIONS(9443), + [aux_sym_def_type_statement_token12] = ACTIONS(9443), + [aux_sym_def_type_statement_token13] = ACTIONS(9443), + [aux_sym_def_type_statement_token14] = ACTIONS(9443), + [aux_sym_call_statement_token1] = ACTIONS(9443), + [sym__ambiguous_call_statement] = ACTIONS(9443), + [aux_sym_addressof_expression_token1] = ACTIONS(9443), + [aux_sym_type_of_expression_token1] = ACTIONS(9443), + [aux_sym_unary_expression_token1] = ACTIONS(9443), + [sym_string_literal] = ACTIONS(9445), + [sym_number_literal] = ACTIONS(9445), + [aux_sym_boolean_literal_token1] = ACTIONS(9443), + [aux_sym_boolean_literal_token2] = ACTIONS(9443), + [sym_nothing_literal] = ACTIONS(9443), + [sym_null_literal] = ACTIONS(9443), + [sym_empty_literal] = ACTIONS(9443), + [sym_date_literal] = ACTIONS(9445), + [anon_sym_POUND] = ACTIONS(9443), + }, + [STATE(4424)] = { + [sym_identifier] = ACTIONS(9447), + [sym_newline] = ACTIONS(9449), + [anon_sym_COLON] = ACTIONS(9449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9447), + [aux_sym_frm_property_statement_token1] = ACTIONS(9447), + [anon_sym_DOT] = ACTIONS(9447), + [anon_sym_BANG] = ACTIONS(9449), + [aux_sym__attribute_identifier_token1] = ACTIONS(9447), + [aux_sym_option_statement_token3] = ACTIONS(9447), + [aux_sym_type_declaration_token1] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9447), + [aux_sym_enum_declaration_token1] = ACTIONS(9447), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9447), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9447), + [aux_sym_declare_function_statement_token1] = ACTIONS(9447), + [aux_sym_preprocessor_const_token1] = ACTIONS(9447), + [aux_sym__property_get_header_token1] = ACTIONS(9447), + [aux_sym_event_declaration_token1] = ACTIONS(9447), + [sym_static_modifier] = ACTIONS(9447), + [sym__dim_keyword] = ACTIONS(9447), + [sym__redim_keyword] = ACTIONS(9447), + [aux_sym_get_accessor_token1] = ACTIONS(9447), + [aux_sym_set_accessor_token1] = ACTIONS(9447), + [aux_sym_const_declaration_token1] = ACTIONS(9447), + [anon_sym_LPAREN] = ACTIONS(9449), + [aux_sym_as_type_clause_token2] = ACTIONS(9447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9447), + [aux_sym_visibility_token1] = ACTIONS(9447), + [aux_sym_visibility_token2] = ACTIONS(9447), + [aux_sym_elseif_fragment_token1] = ACTIONS(9447), + [aux_sym_else_fragment_token1] = ACTIONS(9447), + [aux_sym_select_statement_token1] = ACTIONS(9447), + [aux_sym__for_header_token1] = ACTIONS(9447), + [aux_sym_do_statement_token1] = ACTIONS(9447), + [aux_sym_do_condition_token1] = ACTIONS(9447), + [aux_sym_with_statement_token1] = ACTIONS(9447), + [aux_sym_exit_statement_token1] = ACTIONS(9447), + [sym_end_statement] = ACTIONS(9449), + [aux_sym_on_goto_statement_token1] = ACTIONS(9447), + [aux_sym_on_goto_statement_token2] = ACTIONS(9447), + [aux_sym_on_error_statement_token2] = ACTIONS(9447), + [sym__ambiguous_redim_statement] = ACTIONS(9449), + [aux_sym_erase_statement_token1] = ACTIONS(9447), + [aux_sym_open_statement_token1] = ACTIONS(9447), + [aux_sym_file_mode_token2] = ACTIONS(9447), + [aux_sym_file_access_token2] = ACTIONS(9447), + [aux_sym_file_lock_token2] = ACTIONS(9447), + [aux_sym_print_statement_token1] = ACTIONS(9447), + [anon_sym_PLUS] = ACTIONS(9449), + [anon_sym_DASH] = ACTIONS(9447), + [anon_sym_QMARK] = ACTIONS(9449), + [aux_sym_close_statement_token1] = ACTIONS(9447), + [aux_sym_put_statement_token1] = ACTIONS(9447), + [aux_sym_unlock_statement_token1] = ACTIONS(9447), + [aux_sym_seek_statement_token1] = ACTIONS(9447), + [sym_reset_statement] = ACTIONS(9447), + [aux_sym_raise_event_statement_token1] = ACTIONS(9447), + [sym_stop_statement] = ACTIONS(9447), + [sym_beep_statement] = ACTIONS(9447), + [aux_sym_unload_statement_token1] = ACTIONS(9447), + [aux_sym_def_type_statement_token1] = ACTIONS(9447), + [aux_sym_def_type_statement_token2] = ACTIONS(9447), + [aux_sym_def_type_statement_token3] = ACTIONS(9447), + [aux_sym_def_type_statement_token4] = ACTIONS(9447), + [aux_sym_def_type_statement_token5] = ACTIONS(9447), + [aux_sym_def_type_statement_token6] = ACTIONS(9447), + [aux_sym_def_type_statement_token7] = ACTIONS(9447), + [aux_sym_def_type_statement_token8] = ACTIONS(9447), + [aux_sym_def_type_statement_token9] = ACTIONS(9447), + [aux_sym_def_type_statement_token10] = ACTIONS(9447), + [aux_sym_def_type_statement_token11] = ACTIONS(9447), + [aux_sym_def_type_statement_token12] = ACTIONS(9447), + [aux_sym_def_type_statement_token13] = ACTIONS(9447), + [aux_sym_def_type_statement_token14] = ACTIONS(9447), + [aux_sym_call_statement_token1] = ACTIONS(9447), + [sym__ambiguous_call_statement] = ACTIONS(9447), + [aux_sym_addressof_expression_token1] = ACTIONS(9447), + [aux_sym_type_of_expression_token1] = ACTIONS(9447), + [aux_sym_unary_expression_token1] = ACTIONS(9447), + [sym_string_literal] = ACTIONS(9449), + [sym_number_literal] = ACTIONS(9449), + [aux_sym_boolean_literal_token1] = ACTIONS(9447), + [aux_sym_boolean_literal_token2] = ACTIONS(9447), + [sym_nothing_literal] = ACTIONS(9447), + [sym_null_literal] = ACTIONS(9447), + [sym_empty_literal] = ACTIONS(9447), + [sym_date_literal] = ACTIONS(9449), + [anon_sym_POUND] = ACTIONS(9447), + }, + [STATE(4425)] = { + [sym_identifier] = ACTIONS(9451), + [sym_newline] = ACTIONS(9453), + [anon_sym_COLON] = ACTIONS(9453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9451), + [aux_sym_frm_property_statement_token1] = ACTIONS(9451), + [anon_sym_DOT] = ACTIONS(9451), + [anon_sym_BANG] = ACTIONS(9453), + [aux_sym__attribute_identifier_token1] = ACTIONS(9451), + [aux_sym_option_statement_token3] = ACTIONS(9451), + [aux_sym_type_declaration_token1] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9451), + [aux_sym_enum_declaration_token1] = ACTIONS(9451), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9451), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9451), + [aux_sym_declare_function_statement_token1] = ACTIONS(9451), + [aux_sym_preprocessor_const_token1] = ACTIONS(9451), + [aux_sym__property_get_header_token1] = ACTIONS(9451), + [aux_sym_event_declaration_token1] = ACTIONS(9451), + [sym_static_modifier] = ACTIONS(9451), + [sym__dim_keyword] = ACTIONS(9451), + [sym__redim_keyword] = ACTIONS(9451), + [aux_sym_get_accessor_token1] = ACTIONS(9451), + [aux_sym_set_accessor_token1] = ACTIONS(9451), + [aux_sym_const_declaration_token1] = ACTIONS(9451), + [anon_sym_LPAREN] = ACTIONS(9453), + [aux_sym_as_type_clause_token2] = ACTIONS(9451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9451), + [aux_sym_visibility_token1] = ACTIONS(9451), + [aux_sym_visibility_token2] = ACTIONS(9451), + [aux_sym_elseif_fragment_token1] = ACTIONS(9451), + [aux_sym_else_fragment_token1] = ACTIONS(9451), + [aux_sym_select_statement_token1] = ACTIONS(9451), + [aux_sym__for_header_token1] = ACTIONS(9451), + [aux_sym_do_statement_token1] = ACTIONS(9451), + [aux_sym_do_condition_token1] = ACTIONS(9451), + [aux_sym_with_statement_token1] = ACTIONS(9451), + [aux_sym_exit_statement_token1] = ACTIONS(9451), + [sym_end_statement] = ACTIONS(9453), + [aux_sym_on_goto_statement_token1] = ACTIONS(9451), + [aux_sym_on_goto_statement_token2] = ACTIONS(9451), + [aux_sym_on_error_statement_token2] = ACTIONS(9451), + [sym__ambiguous_redim_statement] = ACTIONS(9453), + [aux_sym_erase_statement_token1] = ACTIONS(9451), + [aux_sym_open_statement_token1] = ACTIONS(9451), + [aux_sym_file_mode_token2] = ACTIONS(9451), + [aux_sym_file_access_token2] = ACTIONS(9451), + [aux_sym_file_lock_token2] = ACTIONS(9451), + [aux_sym_print_statement_token1] = ACTIONS(9451), + [anon_sym_PLUS] = ACTIONS(9453), + [anon_sym_DASH] = ACTIONS(9451), + [anon_sym_QMARK] = ACTIONS(9453), + [aux_sym_close_statement_token1] = ACTIONS(9451), + [aux_sym_put_statement_token1] = ACTIONS(9451), + [aux_sym_unlock_statement_token1] = ACTIONS(9451), + [aux_sym_seek_statement_token1] = ACTIONS(9451), + [sym_reset_statement] = ACTIONS(9451), + [aux_sym_raise_event_statement_token1] = ACTIONS(9451), + [sym_stop_statement] = ACTIONS(9451), + [sym_beep_statement] = ACTIONS(9451), + [aux_sym_unload_statement_token1] = ACTIONS(9451), + [aux_sym_def_type_statement_token1] = ACTIONS(9451), + [aux_sym_def_type_statement_token2] = ACTIONS(9451), + [aux_sym_def_type_statement_token3] = ACTIONS(9451), + [aux_sym_def_type_statement_token4] = ACTIONS(9451), + [aux_sym_def_type_statement_token5] = ACTIONS(9451), + [aux_sym_def_type_statement_token6] = ACTIONS(9451), + [aux_sym_def_type_statement_token7] = ACTIONS(9451), + [aux_sym_def_type_statement_token8] = ACTIONS(9451), + [aux_sym_def_type_statement_token9] = ACTIONS(9451), + [aux_sym_def_type_statement_token10] = ACTIONS(9451), + [aux_sym_def_type_statement_token11] = ACTIONS(9451), + [aux_sym_def_type_statement_token12] = ACTIONS(9451), + [aux_sym_def_type_statement_token13] = ACTIONS(9451), + [aux_sym_def_type_statement_token14] = ACTIONS(9451), + [aux_sym_call_statement_token1] = ACTIONS(9451), + [sym__ambiguous_call_statement] = ACTIONS(9451), + [aux_sym_addressof_expression_token1] = ACTIONS(9451), + [aux_sym_type_of_expression_token1] = ACTIONS(9451), + [aux_sym_unary_expression_token1] = ACTIONS(9451), + [sym_string_literal] = ACTIONS(9453), + [sym_number_literal] = ACTIONS(9453), + [aux_sym_boolean_literal_token1] = ACTIONS(9451), + [aux_sym_boolean_literal_token2] = ACTIONS(9451), + [sym_nothing_literal] = ACTIONS(9451), + [sym_null_literal] = ACTIONS(9451), + [sym_empty_literal] = ACTIONS(9451), + [sym_date_literal] = ACTIONS(9453), + [anon_sym_POUND] = ACTIONS(9451), + }, + [STATE(4426)] = { + [sym_identifier] = ACTIONS(9284), + [sym_newline] = ACTIONS(9286), + [anon_sym_COLON] = ACTIONS(9286), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9284), + [aux_sym_frm_property_statement_token1] = ACTIONS(9284), + [anon_sym_DOT] = ACTIONS(9284), + [anon_sym_BANG] = ACTIONS(9286), + [aux_sym__attribute_identifier_token1] = ACTIONS(9284), + [aux_sym_option_statement_token3] = ACTIONS(9284), + [aux_sym_type_declaration_token1] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9284), + [aux_sym_enum_declaration_token1] = ACTIONS(9284), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9284), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9284), + [aux_sym_declare_function_statement_token1] = ACTIONS(9284), + [aux_sym_preprocessor_const_token1] = ACTIONS(9284), + [aux_sym__property_get_header_token1] = ACTIONS(9284), + [aux_sym_event_declaration_token1] = ACTIONS(9284), + [sym_static_modifier] = ACTIONS(9284), + [sym__dim_keyword] = ACTIONS(9284), + [sym__redim_keyword] = ACTIONS(9284), + [aux_sym_get_accessor_token1] = ACTIONS(9284), + [aux_sym_set_accessor_token1] = ACTIONS(9284), + [aux_sym_const_declaration_token1] = ACTIONS(9284), + [anon_sym_LPAREN] = ACTIONS(9286), + [aux_sym_as_type_clause_token2] = ACTIONS(9284), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9284), + [aux_sym_visibility_token1] = ACTIONS(9284), + [aux_sym_visibility_token2] = ACTIONS(9284), + [aux_sym_elseif_fragment_token1] = ACTIONS(9284), + [aux_sym_else_fragment_token1] = ACTIONS(9284), + [aux_sym_select_statement_token1] = ACTIONS(9284), + [aux_sym__for_header_token1] = ACTIONS(9284), + [aux_sym_do_statement_token1] = ACTIONS(9284), + [aux_sym_do_condition_token1] = ACTIONS(9284), + [aux_sym_with_statement_token1] = ACTIONS(9284), + [aux_sym_exit_statement_token1] = ACTIONS(9284), + [sym_end_statement] = ACTIONS(9286), + [aux_sym_on_goto_statement_token1] = ACTIONS(9284), + [aux_sym_on_goto_statement_token2] = ACTIONS(9284), + [aux_sym_on_error_statement_token2] = ACTIONS(9284), + [sym__ambiguous_redim_statement] = ACTIONS(9286), + [aux_sym_erase_statement_token1] = ACTIONS(9284), + [aux_sym_open_statement_token1] = ACTIONS(9284), + [aux_sym_file_mode_token2] = ACTIONS(9284), + [aux_sym_file_access_token2] = ACTIONS(9284), + [aux_sym_file_lock_token2] = ACTIONS(9284), + [aux_sym_print_statement_token1] = ACTIONS(9284), + [anon_sym_PLUS] = ACTIONS(9286), + [anon_sym_DASH] = ACTIONS(9284), + [anon_sym_QMARK] = ACTIONS(9286), + [aux_sym_close_statement_token1] = ACTIONS(9284), + [aux_sym_put_statement_token1] = ACTIONS(9284), + [aux_sym_unlock_statement_token1] = ACTIONS(9284), + [aux_sym_seek_statement_token1] = ACTIONS(9284), + [sym_reset_statement] = ACTIONS(9284), + [aux_sym_raise_event_statement_token1] = ACTIONS(9284), + [sym_stop_statement] = ACTIONS(9284), + [sym_beep_statement] = ACTIONS(9284), + [aux_sym_unload_statement_token1] = ACTIONS(9284), + [aux_sym_def_type_statement_token1] = ACTIONS(9284), + [aux_sym_def_type_statement_token2] = ACTIONS(9284), + [aux_sym_def_type_statement_token3] = ACTIONS(9284), + [aux_sym_def_type_statement_token4] = ACTIONS(9284), + [aux_sym_def_type_statement_token5] = ACTIONS(9284), + [aux_sym_def_type_statement_token6] = ACTIONS(9284), + [aux_sym_def_type_statement_token7] = ACTIONS(9284), + [aux_sym_def_type_statement_token8] = ACTIONS(9284), + [aux_sym_def_type_statement_token9] = ACTIONS(9284), + [aux_sym_def_type_statement_token10] = ACTIONS(9284), + [aux_sym_def_type_statement_token11] = ACTIONS(9284), + [aux_sym_def_type_statement_token12] = ACTIONS(9284), + [aux_sym_def_type_statement_token13] = ACTIONS(9284), + [aux_sym_def_type_statement_token14] = ACTIONS(9284), + [aux_sym_call_statement_token1] = ACTIONS(9284), + [sym__ambiguous_call_statement] = ACTIONS(9284), + [aux_sym_addressof_expression_token1] = ACTIONS(9284), + [aux_sym_type_of_expression_token1] = ACTIONS(9284), + [aux_sym_unary_expression_token1] = ACTIONS(9284), + [sym_string_literal] = ACTIONS(9286), + [sym_number_literal] = ACTIONS(9286), + [aux_sym_boolean_literal_token1] = ACTIONS(9284), + [aux_sym_boolean_literal_token2] = ACTIONS(9284), + [sym_nothing_literal] = ACTIONS(9284), + [sym_null_literal] = ACTIONS(9284), + [sym_empty_literal] = ACTIONS(9284), + [sym_date_literal] = ACTIONS(9286), + [anon_sym_POUND] = ACTIONS(9284), + }, + [STATE(4427)] = { + [sym_next_variable_list] = STATE(7016), + [sym__assignable_expression] = STATE(5809), + [sym__callable_expression] = STATE(5801), + [sym_call_expression] = STATE(5238), + [sym_member_expression] = STATE(6043), + [sym_qualified_member_expression] = STATE(5833), + [sym_implicit_member_expression] = STATE(5833), + [sym_identifier] = ACTIONS(9947), + [sym_newline] = ACTIONS(6842), + [anon_sym_COLON] = ACTIONS(6842), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6844), + [aux_sym_frm_property_statement_token1] = ACTIONS(9949), + [anon_sym_DOT] = ACTIONS(9951), + [anon_sym_BANG] = ACTIONS(9953), + [aux_sym__attribute_identifier_token1] = ACTIONS(6844), + [aux_sym_option_statement_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6844), + [aux_sym_preprocessor_const_token1] = ACTIONS(6844), + [sym_static_modifier] = ACTIONS(6844), + [sym__dim_keyword] = ACTIONS(6844), + [sym__redim_keyword] = ACTIONS(6844), + [aux_sym_get_accessor_token1] = ACTIONS(6844), + [aux_sym_set_accessor_token1] = ACTIONS(6844), + [aux_sym_const_declaration_token1] = ACTIONS(6844), + [anon_sym_LPAREN] = ACTIONS(6842), + [aux_sym_as_type_clause_token2] = ACTIONS(6844), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9955), + [aux_sym_visibility_token1] = ACTIONS(6844), + [aux_sym_visibility_token2] = ACTIONS(6844), + [aux_sym_elseif_fragment_token1] = ACTIONS(6844), + [aux_sym_else_fragment_token1] = ACTIONS(6844), + [aux_sym_select_statement_token1] = ACTIONS(6844), + [aux_sym__for_header_token1] = ACTIONS(6844), + [aux_sym_do_statement_token1] = ACTIONS(6844), + [aux_sym_do_statement_token2] = ACTIONS(6844), + [aux_sym_do_condition_token1] = ACTIONS(6844), + [aux_sym_with_statement_token1] = ACTIONS(6844), + [aux_sym_exit_statement_token1] = ACTIONS(6844), + [sym_end_statement] = ACTIONS(6842), + [aux_sym_on_goto_statement_token1] = ACTIONS(6844), + [aux_sym_on_goto_statement_token2] = ACTIONS(6844), + [aux_sym_on_error_statement_token2] = ACTIONS(6844), + [sym__ambiguous_redim_statement] = ACTIONS(6842), + [aux_sym_erase_statement_token1] = ACTIONS(6844), + [aux_sym_open_statement_token1] = ACTIONS(6844), + [aux_sym_file_mode_token2] = ACTIONS(6844), + [aux_sym_file_access_token2] = ACTIONS(6844), + [aux_sym_file_lock_token2] = ACTIONS(6844), + [aux_sym_print_statement_token1] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6842), + [aux_sym_close_statement_token1] = ACTIONS(6844), + [aux_sym_put_statement_token1] = ACTIONS(6844), + [aux_sym_unlock_statement_token1] = ACTIONS(6844), + [aux_sym_seek_statement_token1] = ACTIONS(6844), + [sym_reset_statement] = ACTIONS(6844), + [aux_sym_raise_event_statement_token1] = ACTIONS(6844), + [sym_stop_statement] = ACTIONS(6844), + [sym_beep_statement] = ACTIONS(6844), + [aux_sym_unload_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token2] = ACTIONS(6844), + [aux_sym_def_type_statement_token3] = ACTIONS(6844), + [aux_sym_def_type_statement_token4] = ACTIONS(6844), + [aux_sym_def_type_statement_token5] = ACTIONS(6844), + [aux_sym_def_type_statement_token6] = ACTIONS(6844), + [aux_sym_def_type_statement_token7] = ACTIONS(6844), + [aux_sym_def_type_statement_token8] = ACTIONS(6844), + [aux_sym_def_type_statement_token9] = ACTIONS(6844), + [aux_sym_def_type_statement_token10] = ACTIONS(6844), + [aux_sym_def_type_statement_token11] = ACTIONS(6844), + [aux_sym_def_type_statement_token12] = ACTIONS(6844), + [aux_sym_def_type_statement_token13] = ACTIONS(6844), + [aux_sym_def_type_statement_token14] = ACTIONS(6844), + [aux_sym_call_statement_token1] = ACTIONS(6844), + [sym__ambiguous_call_statement] = ACTIONS(6844), + [aux_sym_addressof_expression_token1] = ACTIONS(6844), + [aux_sym_type_of_expression_token1] = ACTIONS(6844), + [aux_sym_unary_expression_token1] = ACTIONS(6844), + [sym_string_literal] = ACTIONS(6842), + [sym_number_literal] = ACTIONS(6842), + [aux_sym_boolean_literal_token1] = ACTIONS(6844), + [aux_sym_boolean_literal_token2] = ACTIONS(6844), + [sym_nothing_literal] = ACTIONS(6844), + [sym_null_literal] = ACTIONS(6844), + [sym_empty_literal] = ACTIONS(6844), + [sym_date_literal] = ACTIONS(6842), + [anon_sym_POUND] = ACTIONS(6844), + }, + [STATE(4428)] = { + [sym_next_variable_list] = STATE(6355), + [sym__assignable_expression] = STATE(5809), + [sym__callable_expression] = STATE(5801), + [sym_call_expression] = STATE(5238), + [sym_member_expression] = STATE(6043), + [sym_qualified_member_expression] = STATE(5833), + [sym_implicit_member_expression] = STATE(5833), + [sym_identifier] = ACTIONS(9947), + [sym_newline] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(6856), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6858), + [aux_sym_frm_property_statement_token1] = ACTIONS(9949), + [anon_sym_DOT] = ACTIONS(9951), + [anon_sym_BANG] = ACTIONS(9953), + [aux_sym__attribute_identifier_token1] = ACTIONS(6858), + [aux_sym_option_statement_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6858), + [aux_sym_preprocessor_const_token1] = ACTIONS(6858), + [sym_static_modifier] = ACTIONS(6858), + [sym__dim_keyword] = ACTIONS(6858), + [sym__redim_keyword] = ACTIONS(6858), + [aux_sym_get_accessor_token1] = ACTIONS(6858), + [aux_sym_set_accessor_token1] = ACTIONS(6858), + [aux_sym_const_declaration_token1] = ACTIONS(6858), + [anon_sym_LPAREN] = ACTIONS(6856), + [aux_sym_as_type_clause_token2] = ACTIONS(6858), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9955), + [aux_sym_visibility_token1] = ACTIONS(6858), + [aux_sym_visibility_token2] = ACTIONS(6858), + [aux_sym_elseif_fragment_token1] = ACTIONS(6858), + [aux_sym_else_fragment_token1] = ACTIONS(6858), + [aux_sym_select_statement_token1] = ACTIONS(6858), + [aux_sym__for_header_token1] = ACTIONS(6858), + [aux_sym_do_statement_token1] = ACTIONS(6858), + [aux_sym_do_statement_token2] = ACTIONS(6858), + [aux_sym_do_condition_token1] = ACTIONS(6858), + [aux_sym_with_statement_token1] = ACTIONS(6858), + [aux_sym_exit_statement_token1] = ACTIONS(6858), + [sym_end_statement] = ACTIONS(6856), + [aux_sym_on_goto_statement_token1] = ACTIONS(6858), + [aux_sym_on_goto_statement_token2] = ACTIONS(6858), + [aux_sym_on_error_statement_token2] = ACTIONS(6858), + [sym__ambiguous_redim_statement] = ACTIONS(6856), + [aux_sym_erase_statement_token1] = ACTIONS(6858), + [aux_sym_open_statement_token1] = ACTIONS(6858), + [aux_sym_file_mode_token2] = ACTIONS(6858), + [aux_sym_file_access_token2] = ACTIONS(6858), + [aux_sym_file_lock_token2] = ACTIONS(6858), + [aux_sym_print_statement_token1] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6856), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_QMARK] = ACTIONS(6856), + [aux_sym_close_statement_token1] = ACTIONS(6858), + [aux_sym_put_statement_token1] = ACTIONS(6858), + [aux_sym_unlock_statement_token1] = ACTIONS(6858), + [aux_sym_seek_statement_token1] = ACTIONS(6858), + [sym_reset_statement] = ACTIONS(6858), + [aux_sym_raise_event_statement_token1] = ACTIONS(6858), + [sym_stop_statement] = ACTIONS(6858), + [sym_beep_statement] = ACTIONS(6858), + [aux_sym_unload_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token2] = ACTIONS(6858), + [aux_sym_def_type_statement_token3] = ACTIONS(6858), + [aux_sym_def_type_statement_token4] = ACTIONS(6858), + [aux_sym_def_type_statement_token5] = ACTIONS(6858), + [aux_sym_def_type_statement_token6] = ACTIONS(6858), + [aux_sym_def_type_statement_token7] = ACTIONS(6858), + [aux_sym_def_type_statement_token8] = ACTIONS(6858), + [aux_sym_def_type_statement_token9] = ACTIONS(6858), + [aux_sym_def_type_statement_token10] = ACTIONS(6858), + [aux_sym_def_type_statement_token11] = ACTIONS(6858), + [aux_sym_def_type_statement_token12] = ACTIONS(6858), + [aux_sym_def_type_statement_token13] = ACTIONS(6858), + [aux_sym_def_type_statement_token14] = ACTIONS(6858), + [aux_sym_call_statement_token1] = ACTIONS(6858), + [sym__ambiguous_call_statement] = ACTIONS(6858), + [aux_sym_addressof_expression_token1] = ACTIONS(6858), + [aux_sym_type_of_expression_token1] = ACTIONS(6858), + [aux_sym_unary_expression_token1] = ACTIONS(6858), + [sym_string_literal] = ACTIONS(6856), + [sym_number_literal] = ACTIONS(6856), + [aux_sym_boolean_literal_token1] = ACTIONS(6858), + [aux_sym_boolean_literal_token2] = ACTIONS(6858), + [sym_nothing_literal] = ACTIONS(6858), + [sym_null_literal] = ACTIONS(6858), + [sym_empty_literal] = ACTIONS(6858), + [sym_date_literal] = ACTIONS(6856), + [anon_sym_POUND] = ACTIONS(6858), + }, + [STATE(4429)] = { + [sym_identifier] = ACTIONS(8839), + [sym_newline] = ACTIONS(8841), + [anon_sym_COLON] = ACTIONS(8841), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8839), + [aux_sym_frm_property_statement_token1] = ACTIONS(8839), + [anon_sym_DOT] = ACTIONS(8839), + [anon_sym_BANG] = ACTIONS(8841), + [aux_sym__attribute_identifier_token1] = ACTIONS(8839), + [aux_sym_option_statement_token3] = ACTIONS(8839), + [aux_sym_type_declaration_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8839), + [aux_sym_enum_declaration_token1] = ACTIONS(8839), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8839), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8839), + [aux_sym_declare_function_statement_token1] = ACTIONS(8839), + [aux_sym_preprocessor_const_token1] = ACTIONS(8839), + [aux_sym__property_get_header_token1] = ACTIONS(8839), + [aux_sym_event_declaration_token1] = ACTIONS(8839), + [sym_static_modifier] = ACTIONS(8839), + [sym__dim_keyword] = ACTIONS(8839), + [sym__redim_keyword] = ACTIONS(8839), + [aux_sym_get_accessor_token1] = ACTIONS(8839), + [aux_sym_set_accessor_token1] = ACTIONS(8839), + [aux_sym_const_declaration_token1] = ACTIONS(8839), + [anon_sym_LPAREN] = ACTIONS(8841), + [aux_sym_as_type_clause_token2] = ACTIONS(8839), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8839), + [aux_sym_visibility_token1] = ACTIONS(8839), + [aux_sym_visibility_token2] = ACTIONS(8839), + [aux_sym_elseif_fragment_token1] = ACTIONS(8839), + [aux_sym_else_fragment_token1] = ACTIONS(8839), + [aux_sym_select_statement_token1] = ACTIONS(8839), + [aux_sym__for_header_token1] = ACTIONS(8839), + [aux_sym_do_statement_token1] = ACTIONS(8839), + [aux_sym_do_condition_token1] = ACTIONS(8839), + [aux_sym_with_statement_token1] = ACTIONS(8839), + [aux_sym_exit_statement_token1] = ACTIONS(8839), + [sym_end_statement] = ACTIONS(8841), + [aux_sym_on_goto_statement_token1] = ACTIONS(8839), + [aux_sym_on_goto_statement_token2] = ACTIONS(8839), + [aux_sym_on_error_statement_token2] = ACTIONS(8839), + [sym__ambiguous_redim_statement] = ACTIONS(8841), + [aux_sym_erase_statement_token1] = ACTIONS(8839), + [aux_sym_open_statement_token1] = ACTIONS(8839), + [aux_sym_file_mode_token2] = ACTIONS(8839), + [aux_sym_file_access_token2] = ACTIONS(8839), + [aux_sym_file_lock_token2] = ACTIONS(8839), + [aux_sym_print_statement_token1] = ACTIONS(8839), + [anon_sym_PLUS] = ACTIONS(8841), + [anon_sym_DASH] = ACTIONS(8839), + [anon_sym_QMARK] = ACTIONS(8841), + [aux_sym_close_statement_token1] = ACTIONS(8839), + [aux_sym_put_statement_token1] = ACTIONS(8839), + [aux_sym_unlock_statement_token1] = ACTIONS(8839), + [aux_sym_seek_statement_token1] = ACTIONS(8839), + [sym_reset_statement] = ACTIONS(8839), + [aux_sym_raise_event_statement_token1] = ACTIONS(8839), + [sym_stop_statement] = ACTIONS(8839), + [sym_beep_statement] = ACTIONS(8839), + [aux_sym_unload_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token2] = ACTIONS(8839), + [aux_sym_def_type_statement_token3] = ACTIONS(8839), + [aux_sym_def_type_statement_token4] = ACTIONS(8839), + [aux_sym_def_type_statement_token5] = ACTIONS(8839), + [aux_sym_def_type_statement_token6] = ACTIONS(8839), + [aux_sym_def_type_statement_token7] = ACTIONS(8839), + [aux_sym_def_type_statement_token8] = ACTIONS(8839), + [aux_sym_def_type_statement_token9] = ACTIONS(8839), + [aux_sym_def_type_statement_token10] = ACTIONS(8839), + [aux_sym_def_type_statement_token11] = ACTIONS(8839), + [aux_sym_def_type_statement_token12] = ACTIONS(8839), + [aux_sym_def_type_statement_token13] = ACTIONS(8839), + [aux_sym_def_type_statement_token14] = ACTIONS(8839), + [aux_sym_call_statement_token1] = ACTIONS(8839), + [sym__ambiguous_call_statement] = ACTIONS(8839), + [aux_sym_addressof_expression_token1] = ACTIONS(8839), + [aux_sym_type_of_expression_token1] = ACTIONS(8839), + [aux_sym_unary_expression_token1] = ACTIONS(8839), + [sym_string_literal] = ACTIONS(8841), + [sym_number_literal] = ACTIONS(8841), + [aux_sym_boolean_literal_token1] = ACTIONS(8839), + [aux_sym_boolean_literal_token2] = ACTIONS(8839), + [sym_nothing_literal] = ACTIONS(8839), + [sym_null_literal] = ACTIONS(8839), + [sym_empty_literal] = ACTIONS(8839), + [sym_date_literal] = ACTIONS(8841), + [anon_sym_POUND] = ACTIONS(8839), + }, + [STATE(4430)] = { + [sym_identifier] = ACTIONS(8853), + [sym_newline] = ACTIONS(8855), + [anon_sym_COLON] = ACTIONS(8855), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8853), + [aux_sym_frm_property_statement_token1] = ACTIONS(8853), + [anon_sym_DOT] = ACTIONS(8853), + [anon_sym_BANG] = ACTIONS(8855), + [aux_sym__attribute_identifier_token1] = ACTIONS(8853), + [aux_sym_option_statement_token3] = ACTIONS(8853), + [aux_sym_type_declaration_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8853), + [aux_sym_enum_declaration_token1] = ACTIONS(8853), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8853), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8853), + [aux_sym_declare_function_statement_token1] = ACTIONS(8853), + [aux_sym_preprocessor_const_token1] = ACTIONS(8853), + [aux_sym__property_get_header_token1] = ACTIONS(8853), + [aux_sym_event_declaration_token1] = ACTIONS(8853), + [sym_static_modifier] = ACTIONS(8853), + [sym__dim_keyword] = ACTIONS(8853), + [sym__redim_keyword] = ACTIONS(8853), + [aux_sym_get_accessor_token1] = ACTIONS(8853), + [aux_sym_set_accessor_token1] = ACTIONS(8853), + [aux_sym_const_declaration_token1] = ACTIONS(8853), + [anon_sym_LPAREN] = ACTIONS(8855), + [aux_sym_as_type_clause_token2] = ACTIONS(8853), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8853), + [aux_sym_visibility_token1] = ACTIONS(8853), + [aux_sym_visibility_token2] = ACTIONS(8853), + [aux_sym_elseif_fragment_token1] = ACTIONS(8853), + [aux_sym_else_fragment_token1] = ACTIONS(8853), + [aux_sym_select_statement_token1] = ACTIONS(8853), + [aux_sym__for_header_token1] = ACTIONS(8853), + [aux_sym_do_statement_token1] = ACTIONS(8853), + [aux_sym_do_condition_token1] = ACTIONS(8853), + [aux_sym_with_statement_token1] = ACTIONS(8853), + [aux_sym_exit_statement_token1] = ACTIONS(8853), + [sym_end_statement] = ACTIONS(8855), + [aux_sym_on_goto_statement_token1] = ACTIONS(8853), + [aux_sym_on_goto_statement_token2] = ACTIONS(8853), + [aux_sym_on_error_statement_token2] = ACTIONS(8853), + [sym__ambiguous_redim_statement] = ACTIONS(8855), + [aux_sym_erase_statement_token1] = ACTIONS(8853), + [aux_sym_open_statement_token1] = ACTIONS(8853), + [aux_sym_file_mode_token2] = ACTIONS(8853), + [aux_sym_file_access_token2] = ACTIONS(8853), + [aux_sym_file_lock_token2] = ACTIONS(8853), + [aux_sym_print_statement_token1] = ACTIONS(8853), + [anon_sym_PLUS] = ACTIONS(8855), + [anon_sym_DASH] = ACTIONS(8853), + [anon_sym_QMARK] = ACTIONS(8855), + [aux_sym_close_statement_token1] = ACTIONS(8853), + [aux_sym_put_statement_token1] = ACTIONS(8853), + [aux_sym_unlock_statement_token1] = ACTIONS(8853), + [aux_sym_seek_statement_token1] = ACTIONS(8853), + [sym_reset_statement] = ACTIONS(8853), + [aux_sym_raise_event_statement_token1] = ACTIONS(8853), + [sym_stop_statement] = ACTIONS(8853), + [sym_beep_statement] = ACTIONS(8853), + [aux_sym_unload_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token2] = ACTIONS(8853), + [aux_sym_def_type_statement_token3] = ACTIONS(8853), + [aux_sym_def_type_statement_token4] = ACTIONS(8853), + [aux_sym_def_type_statement_token5] = ACTIONS(8853), + [aux_sym_def_type_statement_token6] = ACTIONS(8853), + [aux_sym_def_type_statement_token7] = ACTIONS(8853), + [aux_sym_def_type_statement_token8] = ACTIONS(8853), + [aux_sym_def_type_statement_token9] = ACTIONS(8853), + [aux_sym_def_type_statement_token10] = ACTIONS(8853), + [aux_sym_def_type_statement_token11] = ACTIONS(8853), + [aux_sym_def_type_statement_token12] = ACTIONS(8853), + [aux_sym_def_type_statement_token13] = ACTIONS(8853), + [aux_sym_def_type_statement_token14] = ACTIONS(8853), + [aux_sym_call_statement_token1] = ACTIONS(8853), + [sym__ambiguous_call_statement] = ACTIONS(8853), + [aux_sym_addressof_expression_token1] = ACTIONS(8853), + [aux_sym_type_of_expression_token1] = ACTIONS(8853), + [aux_sym_unary_expression_token1] = ACTIONS(8853), + [sym_string_literal] = ACTIONS(8855), + [sym_number_literal] = ACTIONS(8855), + [aux_sym_boolean_literal_token1] = ACTIONS(8853), + [aux_sym_boolean_literal_token2] = ACTIONS(8853), + [sym_nothing_literal] = ACTIONS(8853), + [sym_null_literal] = ACTIONS(8853), + [sym_empty_literal] = ACTIONS(8853), + [sym_date_literal] = ACTIONS(8855), + [anon_sym_POUND] = ACTIONS(8853), + }, + [STATE(4431)] = { + [sym_identifier] = ACTIONS(8857), + [sym_newline] = ACTIONS(8859), + [anon_sym_COLON] = ACTIONS(8859), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8857), + [aux_sym_frm_property_statement_token1] = ACTIONS(8857), + [anon_sym_DOT] = ACTIONS(8857), + [anon_sym_BANG] = ACTIONS(8859), + [aux_sym__attribute_identifier_token1] = ACTIONS(8857), + [aux_sym_option_statement_token3] = ACTIONS(8857), + [aux_sym_type_declaration_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8857), + [aux_sym_enum_declaration_token1] = ACTIONS(8857), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8857), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8857), + [aux_sym_declare_function_statement_token1] = ACTIONS(8857), + [aux_sym_preprocessor_const_token1] = ACTIONS(8857), + [aux_sym__property_get_header_token1] = ACTIONS(8857), + [aux_sym_event_declaration_token1] = ACTIONS(8857), + [sym_static_modifier] = ACTIONS(8857), + [sym__dim_keyword] = ACTIONS(8857), + [sym__redim_keyword] = ACTIONS(8857), + [aux_sym_get_accessor_token1] = ACTIONS(8857), + [aux_sym_set_accessor_token1] = ACTIONS(8857), + [aux_sym_const_declaration_token1] = ACTIONS(8857), + [anon_sym_LPAREN] = ACTIONS(8859), + [aux_sym_as_type_clause_token2] = ACTIONS(8857), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8857), + [aux_sym_visibility_token1] = ACTIONS(8857), + [aux_sym_visibility_token2] = ACTIONS(8857), + [aux_sym_elseif_fragment_token1] = ACTIONS(8857), + [aux_sym_else_fragment_token1] = ACTIONS(8857), + [aux_sym_select_statement_token1] = ACTIONS(8857), + [aux_sym__for_header_token1] = ACTIONS(8857), + [aux_sym_do_statement_token1] = ACTIONS(8857), + [aux_sym_do_condition_token1] = ACTIONS(8857), + [aux_sym_with_statement_token1] = ACTIONS(8857), + [aux_sym_exit_statement_token1] = ACTIONS(8857), + [sym_end_statement] = ACTIONS(8859), + [aux_sym_on_goto_statement_token1] = ACTIONS(8857), + [aux_sym_on_goto_statement_token2] = ACTIONS(8857), + [aux_sym_on_error_statement_token2] = ACTIONS(8857), + [sym__ambiguous_redim_statement] = ACTIONS(8859), + [aux_sym_erase_statement_token1] = ACTIONS(8857), + [aux_sym_open_statement_token1] = ACTIONS(8857), + [aux_sym_file_mode_token2] = ACTIONS(8857), + [aux_sym_file_access_token2] = ACTIONS(8857), + [aux_sym_file_lock_token2] = ACTIONS(8857), + [aux_sym_print_statement_token1] = ACTIONS(8857), + [anon_sym_PLUS] = ACTIONS(8859), + [anon_sym_DASH] = ACTIONS(8857), + [anon_sym_QMARK] = ACTIONS(8859), + [aux_sym_close_statement_token1] = ACTIONS(8857), + [aux_sym_put_statement_token1] = ACTIONS(8857), + [aux_sym_unlock_statement_token1] = ACTIONS(8857), + [aux_sym_seek_statement_token1] = ACTIONS(8857), + [sym_reset_statement] = ACTIONS(8857), + [aux_sym_raise_event_statement_token1] = ACTIONS(8857), + [sym_stop_statement] = ACTIONS(8857), + [sym_beep_statement] = ACTIONS(8857), + [aux_sym_unload_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token2] = ACTIONS(8857), + [aux_sym_def_type_statement_token3] = ACTIONS(8857), + [aux_sym_def_type_statement_token4] = ACTIONS(8857), + [aux_sym_def_type_statement_token5] = ACTIONS(8857), + [aux_sym_def_type_statement_token6] = ACTIONS(8857), + [aux_sym_def_type_statement_token7] = ACTIONS(8857), + [aux_sym_def_type_statement_token8] = ACTIONS(8857), + [aux_sym_def_type_statement_token9] = ACTIONS(8857), + [aux_sym_def_type_statement_token10] = ACTIONS(8857), + [aux_sym_def_type_statement_token11] = ACTIONS(8857), + [aux_sym_def_type_statement_token12] = ACTIONS(8857), + [aux_sym_def_type_statement_token13] = ACTIONS(8857), + [aux_sym_def_type_statement_token14] = ACTIONS(8857), + [aux_sym_call_statement_token1] = ACTIONS(8857), + [sym__ambiguous_call_statement] = ACTIONS(8857), + [aux_sym_addressof_expression_token1] = ACTIONS(8857), + [aux_sym_type_of_expression_token1] = ACTIONS(8857), + [aux_sym_unary_expression_token1] = ACTIONS(8857), + [sym_string_literal] = ACTIONS(8859), + [sym_number_literal] = ACTIONS(8859), + [aux_sym_boolean_literal_token1] = ACTIONS(8857), + [aux_sym_boolean_literal_token2] = ACTIONS(8857), + [sym_nothing_literal] = ACTIONS(8857), + [sym_null_literal] = ACTIONS(8857), + [sym_empty_literal] = ACTIONS(8857), + [sym_date_literal] = ACTIONS(8859), + [anon_sym_POUND] = ACTIONS(8857), + }, + [STATE(4432)] = { + [sym_identifier] = ACTIONS(8861), + [sym_newline] = ACTIONS(8863), + [anon_sym_COLON] = ACTIONS(8863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8861), + [aux_sym_frm_property_statement_token1] = ACTIONS(8861), + [anon_sym_DOT] = ACTIONS(8861), + [anon_sym_BANG] = ACTIONS(8863), + [aux_sym__attribute_identifier_token1] = ACTIONS(8861), + [aux_sym_option_statement_token3] = ACTIONS(8861), + [aux_sym_type_declaration_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8861), + [aux_sym_enum_declaration_token1] = ACTIONS(8861), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8861), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8861), + [aux_sym_declare_function_statement_token1] = ACTIONS(8861), + [aux_sym_preprocessor_const_token1] = ACTIONS(8861), + [aux_sym__property_get_header_token1] = ACTIONS(8861), + [aux_sym_event_declaration_token1] = ACTIONS(8861), + [sym_static_modifier] = ACTIONS(8861), + [sym__dim_keyword] = ACTIONS(8861), + [sym__redim_keyword] = ACTIONS(8861), + [aux_sym_get_accessor_token1] = ACTIONS(8861), + [aux_sym_set_accessor_token1] = ACTIONS(8861), + [aux_sym_const_declaration_token1] = ACTIONS(8861), + [anon_sym_LPAREN] = ACTIONS(8863), + [aux_sym_as_type_clause_token2] = ACTIONS(8861), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8861), + [aux_sym_visibility_token1] = ACTIONS(8861), + [aux_sym_visibility_token2] = ACTIONS(8861), + [aux_sym_elseif_fragment_token1] = ACTIONS(8861), + [aux_sym_else_fragment_token1] = ACTIONS(8861), + [aux_sym_select_statement_token1] = ACTIONS(8861), + [aux_sym__for_header_token1] = ACTIONS(8861), + [aux_sym_do_statement_token1] = ACTIONS(8861), + [aux_sym_do_condition_token1] = ACTIONS(8861), + [aux_sym_with_statement_token1] = ACTIONS(8861), + [aux_sym_exit_statement_token1] = ACTIONS(8861), + [sym_end_statement] = ACTIONS(8863), + [aux_sym_on_goto_statement_token1] = ACTIONS(8861), + [aux_sym_on_goto_statement_token2] = ACTIONS(8861), + [aux_sym_on_error_statement_token2] = ACTIONS(8861), + [sym__ambiguous_redim_statement] = ACTIONS(8863), + [aux_sym_erase_statement_token1] = ACTIONS(8861), + [aux_sym_open_statement_token1] = ACTIONS(8861), + [aux_sym_file_mode_token2] = ACTIONS(8861), + [aux_sym_file_access_token2] = ACTIONS(8861), + [aux_sym_file_lock_token2] = ACTIONS(8861), + [aux_sym_print_statement_token1] = ACTIONS(8861), + [anon_sym_PLUS] = ACTIONS(8863), + [anon_sym_DASH] = ACTIONS(8861), + [anon_sym_QMARK] = ACTIONS(8863), + [aux_sym_close_statement_token1] = ACTIONS(8861), + [aux_sym_put_statement_token1] = ACTIONS(8861), + [aux_sym_unlock_statement_token1] = ACTIONS(8861), + [aux_sym_seek_statement_token1] = ACTIONS(8861), + [sym_reset_statement] = ACTIONS(8861), + [aux_sym_raise_event_statement_token1] = ACTIONS(8861), + [sym_stop_statement] = ACTIONS(8861), + [sym_beep_statement] = ACTIONS(8861), + [aux_sym_unload_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token2] = ACTIONS(8861), + [aux_sym_def_type_statement_token3] = ACTIONS(8861), + [aux_sym_def_type_statement_token4] = ACTIONS(8861), + [aux_sym_def_type_statement_token5] = ACTIONS(8861), + [aux_sym_def_type_statement_token6] = ACTIONS(8861), + [aux_sym_def_type_statement_token7] = ACTIONS(8861), + [aux_sym_def_type_statement_token8] = ACTIONS(8861), + [aux_sym_def_type_statement_token9] = ACTIONS(8861), + [aux_sym_def_type_statement_token10] = ACTIONS(8861), + [aux_sym_def_type_statement_token11] = ACTIONS(8861), + [aux_sym_def_type_statement_token12] = ACTIONS(8861), + [aux_sym_def_type_statement_token13] = ACTIONS(8861), + [aux_sym_def_type_statement_token14] = ACTIONS(8861), + [aux_sym_call_statement_token1] = ACTIONS(8861), + [sym__ambiguous_call_statement] = ACTIONS(8861), + [aux_sym_addressof_expression_token1] = ACTIONS(8861), + [aux_sym_type_of_expression_token1] = ACTIONS(8861), + [aux_sym_unary_expression_token1] = ACTIONS(8861), + [sym_string_literal] = ACTIONS(8863), + [sym_number_literal] = ACTIONS(8863), + [aux_sym_boolean_literal_token1] = ACTIONS(8861), + [aux_sym_boolean_literal_token2] = ACTIONS(8861), + [sym_nothing_literal] = ACTIONS(8861), + [sym_null_literal] = ACTIONS(8861), + [sym_empty_literal] = ACTIONS(8861), + [sym_date_literal] = ACTIONS(8863), + [anon_sym_POUND] = ACTIONS(8861), + }, + [STATE(4433)] = { + [sym_identifier] = ACTIONS(8279), + [sym_newline] = ACTIONS(8281), + [anon_sym_COLON] = ACTIONS(8281), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8279), + [aux_sym_frm_property_statement_token1] = ACTIONS(8279), + [anon_sym_DOT] = ACTIONS(8279), + [anon_sym_BANG] = ACTIONS(8281), + [aux_sym__attribute_identifier_token1] = ACTIONS(8279), + [aux_sym_option_statement_token3] = ACTIONS(8279), + [aux_sym_type_declaration_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8279), + [aux_sym_enum_declaration_token1] = ACTIONS(8279), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8279), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8279), + [aux_sym_declare_function_statement_token1] = ACTIONS(8279), + [aux_sym_preprocessor_const_token1] = ACTIONS(8279), + [aux_sym__property_get_header_token1] = ACTIONS(8279), + [aux_sym_event_declaration_token1] = ACTIONS(8279), + [sym_static_modifier] = ACTIONS(8279), + [sym__dim_keyword] = ACTIONS(8279), + [sym__redim_keyword] = ACTIONS(8279), + [aux_sym_get_accessor_token1] = ACTIONS(8279), + [aux_sym_set_accessor_token1] = ACTIONS(8279), + [aux_sym_const_declaration_token1] = ACTIONS(8279), + [anon_sym_LPAREN] = ACTIONS(8281), + [aux_sym_as_type_clause_token2] = ACTIONS(8279), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8279), + [aux_sym_visibility_token1] = ACTIONS(8279), + [aux_sym_visibility_token2] = ACTIONS(8279), + [aux_sym_elseif_fragment_token1] = ACTIONS(8279), + [aux_sym_else_fragment_token1] = ACTIONS(8279), + [aux_sym_select_statement_token1] = ACTIONS(8279), + [aux_sym__for_header_token1] = ACTIONS(8279), + [aux_sym_do_statement_token1] = ACTIONS(8279), + [aux_sym_do_condition_token1] = ACTIONS(8279), + [aux_sym_with_statement_token1] = ACTIONS(8279), + [aux_sym_exit_statement_token1] = ACTIONS(8279), + [sym_end_statement] = ACTIONS(8281), + [aux_sym_on_goto_statement_token1] = ACTIONS(8279), + [aux_sym_on_goto_statement_token2] = ACTIONS(8279), + [aux_sym_on_error_statement_token2] = ACTIONS(8279), + [sym__ambiguous_redim_statement] = ACTIONS(8281), + [aux_sym_erase_statement_token1] = ACTIONS(8279), + [aux_sym_open_statement_token1] = ACTIONS(8279), + [aux_sym_file_mode_token2] = ACTIONS(8279), + [aux_sym_file_access_token2] = ACTIONS(8279), + [aux_sym_file_lock_token2] = ACTIONS(8279), + [aux_sym_print_statement_token1] = ACTIONS(8279), + [anon_sym_PLUS] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8279), + [anon_sym_QMARK] = ACTIONS(8281), + [aux_sym_close_statement_token1] = ACTIONS(8279), + [aux_sym_put_statement_token1] = ACTIONS(8279), + [aux_sym_unlock_statement_token1] = ACTIONS(8279), + [aux_sym_seek_statement_token1] = ACTIONS(8279), + [sym_reset_statement] = ACTIONS(8279), + [aux_sym_raise_event_statement_token1] = ACTIONS(8279), + [sym_stop_statement] = ACTIONS(8279), + [sym_beep_statement] = ACTIONS(8279), + [aux_sym_unload_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token2] = ACTIONS(8279), + [aux_sym_def_type_statement_token3] = ACTIONS(8279), + [aux_sym_def_type_statement_token4] = ACTIONS(8279), + [aux_sym_def_type_statement_token5] = ACTIONS(8279), + [aux_sym_def_type_statement_token6] = ACTIONS(8279), + [aux_sym_def_type_statement_token7] = ACTIONS(8279), + [aux_sym_def_type_statement_token8] = ACTIONS(8279), + [aux_sym_def_type_statement_token9] = ACTIONS(8279), + [aux_sym_def_type_statement_token10] = ACTIONS(8279), + [aux_sym_def_type_statement_token11] = ACTIONS(8279), + [aux_sym_def_type_statement_token12] = ACTIONS(8279), + [aux_sym_def_type_statement_token13] = ACTIONS(8279), + [aux_sym_def_type_statement_token14] = ACTIONS(8279), + [aux_sym_call_statement_token1] = ACTIONS(8279), + [sym__ambiguous_call_statement] = ACTIONS(8279), + [aux_sym_addressof_expression_token1] = ACTIONS(8279), + [aux_sym_type_of_expression_token1] = ACTIONS(8279), + [aux_sym_unary_expression_token1] = ACTIONS(8279), + [sym_string_literal] = ACTIONS(8281), + [sym_number_literal] = ACTIONS(8281), + [aux_sym_boolean_literal_token1] = ACTIONS(8279), + [aux_sym_boolean_literal_token2] = ACTIONS(8279), + [sym_nothing_literal] = ACTIONS(8279), + [sym_null_literal] = ACTIONS(8279), + [sym_empty_literal] = ACTIONS(8279), + [sym_date_literal] = ACTIONS(8281), + [anon_sym_POUND] = ACTIONS(8279), + }, + [STATE(4434)] = { + [sym_identifier] = ACTIONS(9459), + [sym_newline] = ACTIONS(9461), + [anon_sym_COLON] = ACTIONS(9461), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9459), + [aux_sym_frm_property_statement_token1] = ACTIONS(9459), + [anon_sym_DOT] = ACTIONS(9459), + [anon_sym_BANG] = ACTIONS(9461), + [aux_sym__attribute_identifier_token1] = ACTIONS(9459), + [aux_sym_option_statement_token3] = ACTIONS(9459), + [aux_sym_type_declaration_token1] = ACTIONS(9459), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9459), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9459), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9459), + [aux_sym_enum_declaration_token1] = ACTIONS(9459), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9459), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9459), + [aux_sym_declare_function_statement_token1] = ACTIONS(9459), + [aux_sym_preprocessor_const_token1] = ACTIONS(9459), + [aux_sym__property_get_header_token1] = ACTIONS(9459), + [aux_sym_event_declaration_token1] = ACTIONS(9459), + [sym_static_modifier] = ACTIONS(9459), + [sym__dim_keyword] = ACTIONS(9459), + [sym__redim_keyword] = ACTIONS(9459), + [aux_sym_get_accessor_token1] = ACTIONS(9459), + [aux_sym_set_accessor_token1] = ACTIONS(9459), + [aux_sym_const_declaration_token1] = ACTIONS(9459), + [anon_sym_LPAREN] = ACTIONS(9461), + [aux_sym_as_type_clause_token2] = ACTIONS(9459), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9459), + [aux_sym_visibility_token1] = ACTIONS(9459), + [aux_sym_visibility_token2] = ACTIONS(9459), + [aux_sym_elseif_fragment_token1] = ACTIONS(9459), + [aux_sym_else_fragment_token1] = ACTIONS(9459), + [aux_sym_select_statement_token1] = ACTIONS(9459), + [aux_sym__for_header_token1] = ACTIONS(9459), + [aux_sym_do_statement_token1] = ACTIONS(9459), + [aux_sym_do_condition_token1] = ACTIONS(9459), + [aux_sym_with_statement_token1] = ACTIONS(9459), + [aux_sym_exit_statement_token1] = ACTIONS(9459), + [sym_end_statement] = ACTIONS(9461), + [aux_sym_on_goto_statement_token1] = ACTIONS(9459), + [aux_sym_on_goto_statement_token2] = ACTIONS(9459), + [aux_sym_on_error_statement_token2] = ACTIONS(9459), + [sym__ambiguous_redim_statement] = ACTIONS(9461), + [aux_sym_erase_statement_token1] = ACTIONS(9459), + [aux_sym_open_statement_token1] = ACTIONS(9459), + [aux_sym_file_mode_token2] = ACTIONS(9459), + [aux_sym_file_access_token2] = ACTIONS(9459), + [aux_sym_file_lock_token2] = ACTIONS(9459), + [aux_sym_print_statement_token1] = ACTIONS(9459), + [anon_sym_PLUS] = ACTIONS(9461), + [anon_sym_DASH] = ACTIONS(9459), + [anon_sym_QMARK] = ACTIONS(9461), + [aux_sym_close_statement_token1] = ACTIONS(9459), + [aux_sym_put_statement_token1] = ACTIONS(9459), + [aux_sym_unlock_statement_token1] = ACTIONS(9459), + [aux_sym_seek_statement_token1] = ACTIONS(9459), + [sym_reset_statement] = ACTIONS(9459), + [aux_sym_raise_event_statement_token1] = ACTIONS(9459), + [sym_stop_statement] = ACTIONS(9459), + [sym_beep_statement] = ACTIONS(9459), + [aux_sym_unload_statement_token1] = ACTIONS(9459), + [aux_sym_def_type_statement_token1] = ACTIONS(9459), + [aux_sym_def_type_statement_token2] = ACTIONS(9459), + [aux_sym_def_type_statement_token3] = ACTIONS(9459), + [aux_sym_def_type_statement_token4] = ACTIONS(9459), + [aux_sym_def_type_statement_token5] = ACTIONS(9459), + [aux_sym_def_type_statement_token6] = ACTIONS(9459), + [aux_sym_def_type_statement_token7] = ACTIONS(9459), + [aux_sym_def_type_statement_token8] = ACTIONS(9459), + [aux_sym_def_type_statement_token9] = ACTIONS(9459), + [aux_sym_def_type_statement_token10] = ACTIONS(9459), + [aux_sym_def_type_statement_token11] = ACTIONS(9459), + [aux_sym_def_type_statement_token12] = ACTIONS(9459), + [aux_sym_def_type_statement_token13] = ACTIONS(9459), + [aux_sym_def_type_statement_token14] = ACTIONS(9459), + [aux_sym_call_statement_token1] = ACTIONS(9459), + [sym__ambiguous_call_statement] = ACTIONS(9459), + [aux_sym_addressof_expression_token1] = ACTIONS(9459), + [aux_sym_type_of_expression_token1] = ACTIONS(9459), + [aux_sym_unary_expression_token1] = ACTIONS(9459), + [sym_string_literal] = ACTIONS(9461), + [sym_number_literal] = ACTIONS(9461), + [aux_sym_boolean_literal_token1] = ACTIONS(9459), + [aux_sym_boolean_literal_token2] = ACTIONS(9459), + [sym_nothing_literal] = ACTIONS(9459), + [sym_null_literal] = ACTIONS(9459), + [sym_empty_literal] = ACTIONS(9459), + [sym_date_literal] = ACTIONS(9461), + [anon_sym_POUND] = ACTIONS(9459), + }, + [STATE(4435)] = { + [sym_identifier] = ACTIONS(9463), + [sym_newline] = ACTIONS(9465), + [anon_sym_COLON] = ACTIONS(9465), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9463), + [aux_sym_frm_property_statement_token1] = ACTIONS(9463), + [anon_sym_DOT] = ACTIONS(9463), + [anon_sym_BANG] = ACTIONS(9465), + [aux_sym__attribute_identifier_token1] = ACTIONS(9463), + [aux_sym_option_statement_token3] = ACTIONS(9463), + [aux_sym_type_declaration_token1] = ACTIONS(9463), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9463), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9463), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9463), + [aux_sym_enum_declaration_token1] = ACTIONS(9463), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9463), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9463), + [aux_sym_declare_function_statement_token1] = ACTIONS(9463), + [aux_sym_preprocessor_const_token1] = ACTIONS(9463), + [aux_sym__property_get_header_token1] = ACTIONS(9463), + [aux_sym_event_declaration_token1] = ACTIONS(9463), + [sym_static_modifier] = ACTIONS(9463), + [sym__dim_keyword] = ACTIONS(9463), + [sym__redim_keyword] = ACTIONS(9463), + [aux_sym_get_accessor_token1] = ACTIONS(9463), + [aux_sym_set_accessor_token1] = ACTIONS(9463), + [aux_sym_const_declaration_token1] = ACTIONS(9463), + [anon_sym_LPAREN] = ACTIONS(9465), + [aux_sym_as_type_clause_token2] = ACTIONS(9463), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9463), + [aux_sym_visibility_token1] = ACTIONS(9463), + [aux_sym_visibility_token2] = ACTIONS(9463), + [aux_sym_elseif_fragment_token1] = ACTIONS(9463), + [aux_sym_else_fragment_token1] = ACTIONS(9463), + [aux_sym_select_statement_token1] = ACTIONS(9463), + [aux_sym__for_header_token1] = ACTIONS(9463), + [aux_sym_do_statement_token1] = ACTIONS(9463), + [aux_sym_do_condition_token1] = ACTIONS(9463), + [aux_sym_with_statement_token1] = ACTIONS(9463), + [aux_sym_exit_statement_token1] = ACTIONS(9463), + [sym_end_statement] = ACTIONS(9465), + [aux_sym_on_goto_statement_token1] = ACTIONS(9463), + [aux_sym_on_goto_statement_token2] = ACTIONS(9463), + [aux_sym_on_error_statement_token2] = ACTIONS(9463), + [sym__ambiguous_redim_statement] = ACTIONS(9465), + [aux_sym_erase_statement_token1] = ACTIONS(9463), + [aux_sym_open_statement_token1] = ACTIONS(9463), + [aux_sym_file_mode_token2] = ACTIONS(9463), + [aux_sym_file_access_token2] = ACTIONS(9463), + [aux_sym_file_lock_token2] = ACTIONS(9463), + [aux_sym_print_statement_token1] = ACTIONS(9463), + [anon_sym_PLUS] = ACTIONS(9465), + [anon_sym_DASH] = ACTIONS(9463), + [anon_sym_QMARK] = ACTIONS(9465), + [aux_sym_close_statement_token1] = ACTIONS(9463), + [aux_sym_put_statement_token1] = ACTIONS(9463), + [aux_sym_unlock_statement_token1] = ACTIONS(9463), + [aux_sym_seek_statement_token1] = ACTIONS(9463), + [sym_reset_statement] = ACTIONS(9463), + [aux_sym_raise_event_statement_token1] = ACTIONS(9463), + [sym_stop_statement] = ACTIONS(9463), + [sym_beep_statement] = ACTIONS(9463), + [aux_sym_unload_statement_token1] = ACTIONS(9463), + [aux_sym_def_type_statement_token1] = ACTIONS(9463), + [aux_sym_def_type_statement_token2] = ACTIONS(9463), + [aux_sym_def_type_statement_token3] = ACTIONS(9463), + [aux_sym_def_type_statement_token4] = ACTIONS(9463), + [aux_sym_def_type_statement_token5] = ACTIONS(9463), + [aux_sym_def_type_statement_token6] = ACTIONS(9463), + [aux_sym_def_type_statement_token7] = ACTIONS(9463), + [aux_sym_def_type_statement_token8] = ACTIONS(9463), + [aux_sym_def_type_statement_token9] = ACTIONS(9463), + [aux_sym_def_type_statement_token10] = ACTIONS(9463), + [aux_sym_def_type_statement_token11] = ACTIONS(9463), + [aux_sym_def_type_statement_token12] = ACTIONS(9463), + [aux_sym_def_type_statement_token13] = ACTIONS(9463), + [aux_sym_def_type_statement_token14] = ACTIONS(9463), + [aux_sym_call_statement_token1] = ACTIONS(9463), + [sym__ambiguous_call_statement] = ACTIONS(9463), + [aux_sym_addressof_expression_token1] = ACTIONS(9463), + [aux_sym_type_of_expression_token1] = ACTIONS(9463), + [aux_sym_unary_expression_token1] = ACTIONS(9463), + [sym_string_literal] = ACTIONS(9465), + [sym_number_literal] = ACTIONS(9465), + [aux_sym_boolean_literal_token1] = ACTIONS(9463), + [aux_sym_boolean_literal_token2] = ACTIONS(9463), + [sym_nothing_literal] = ACTIONS(9463), + [sym_null_literal] = ACTIONS(9463), + [sym_empty_literal] = ACTIONS(9463), + [sym_date_literal] = ACTIONS(9465), + [anon_sym_POUND] = ACTIONS(9463), + }, + [STATE(4436)] = { + [sym_identifier] = ACTIONS(8283), + [sym_newline] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8283), + [aux_sym_frm_property_statement_token1] = ACTIONS(8283), + [anon_sym_DOT] = ACTIONS(8283), + [anon_sym_BANG] = ACTIONS(8285), + [aux_sym__attribute_identifier_token1] = ACTIONS(8283), + [aux_sym_option_statement_token3] = ACTIONS(8283), + [aux_sym_type_declaration_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8283), + [aux_sym_enum_declaration_token1] = ACTIONS(8283), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8283), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8283), + [aux_sym_declare_function_statement_token1] = ACTIONS(8283), + [aux_sym_preprocessor_const_token1] = ACTIONS(8283), + [aux_sym__property_get_header_token1] = ACTIONS(8283), + [aux_sym_event_declaration_token1] = ACTIONS(8283), + [sym_static_modifier] = ACTIONS(8283), + [sym__dim_keyword] = ACTIONS(8283), + [sym__redim_keyword] = ACTIONS(8283), + [aux_sym_get_accessor_token1] = ACTIONS(8283), + [aux_sym_set_accessor_token1] = ACTIONS(8283), + [aux_sym_const_declaration_token1] = ACTIONS(8283), + [anon_sym_LPAREN] = ACTIONS(8285), + [aux_sym_as_type_clause_token2] = ACTIONS(8283), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8283), + [aux_sym_visibility_token1] = ACTIONS(8283), + [aux_sym_visibility_token2] = ACTIONS(8283), + [aux_sym_elseif_fragment_token1] = ACTIONS(8283), + [aux_sym_else_fragment_token1] = ACTIONS(8283), + [aux_sym_select_statement_token1] = ACTIONS(8283), + [aux_sym__for_header_token1] = ACTIONS(8283), + [aux_sym_do_statement_token1] = ACTIONS(8283), + [aux_sym_do_condition_token1] = ACTIONS(8283), + [aux_sym_with_statement_token1] = ACTIONS(8283), + [aux_sym_exit_statement_token1] = ACTIONS(8283), + [sym_end_statement] = ACTIONS(8285), + [aux_sym_on_goto_statement_token1] = ACTIONS(8283), + [aux_sym_on_goto_statement_token2] = ACTIONS(8283), + [aux_sym_on_error_statement_token2] = ACTIONS(8283), + [sym__ambiguous_redim_statement] = ACTIONS(8285), + [aux_sym_erase_statement_token1] = ACTIONS(8283), + [aux_sym_open_statement_token1] = ACTIONS(8283), + [aux_sym_file_mode_token2] = ACTIONS(8283), + [aux_sym_file_access_token2] = ACTIONS(8283), + [aux_sym_file_lock_token2] = ACTIONS(8283), + [aux_sym_print_statement_token1] = ACTIONS(8283), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_DASH] = ACTIONS(8283), + [anon_sym_QMARK] = ACTIONS(8285), + [aux_sym_close_statement_token1] = ACTIONS(8283), + [aux_sym_put_statement_token1] = ACTIONS(8283), + [aux_sym_unlock_statement_token1] = ACTIONS(8283), + [aux_sym_seek_statement_token1] = ACTIONS(8283), + [sym_reset_statement] = ACTIONS(8283), + [aux_sym_raise_event_statement_token1] = ACTIONS(8283), + [sym_stop_statement] = ACTIONS(8283), + [sym_beep_statement] = ACTIONS(8283), + [aux_sym_unload_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token2] = ACTIONS(8283), + [aux_sym_def_type_statement_token3] = ACTIONS(8283), + [aux_sym_def_type_statement_token4] = ACTIONS(8283), + [aux_sym_def_type_statement_token5] = ACTIONS(8283), + [aux_sym_def_type_statement_token6] = ACTIONS(8283), + [aux_sym_def_type_statement_token7] = ACTIONS(8283), + [aux_sym_def_type_statement_token8] = ACTIONS(8283), + [aux_sym_def_type_statement_token9] = ACTIONS(8283), + [aux_sym_def_type_statement_token10] = ACTIONS(8283), + [aux_sym_def_type_statement_token11] = ACTIONS(8283), + [aux_sym_def_type_statement_token12] = ACTIONS(8283), + [aux_sym_def_type_statement_token13] = ACTIONS(8283), + [aux_sym_def_type_statement_token14] = ACTIONS(8283), + [aux_sym_call_statement_token1] = ACTIONS(8283), + [sym__ambiguous_call_statement] = ACTIONS(8283), + [aux_sym_addressof_expression_token1] = ACTIONS(8283), + [aux_sym_type_of_expression_token1] = ACTIONS(8283), + [aux_sym_unary_expression_token1] = ACTIONS(8283), + [sym_string_literal] = ACTIONS(8285), + [sym_number_literal] = ACTIONS(8285), + [aux_sym_boolean_literal_token1] = ACTIONS(8283), + [aux_sym_boolean_literal_token2] = ACTIONS(8283), + [sym_nothing_literal] = ACTIONS(8283), + [sym_null_literal] = ACTIONS(8283), + [sym_empty_literal] = ACTIONS(8283), + [sym_date_literal] = ACTIONS(8285), + [anon_sym_POUND] = ACTIONS(8283), + }, + [STATE(4437)] = { + [sym_next_variable_list] = STATE(6951), + [sym__assignable_expression] = STATE(5160), + [sym__callable_expression] = STATE(5097), + [sym_call_expression] = STATE(5279), + [sym_member_expression] = STATE(6045), + [sym_qualified_member_expression] = STATE(6097), + [sym_implicit_member_expression] = STATE(6097), + [sym_identifier] = ACTIONS(9957), + [sym_newline] = ACTIONS(6867), + [anon_sym_COLON] = ACTIONS(6867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6869), + [aux_sym_frm_property_statement_token1] = ACTIONS(9959), + [anon_sym_DOT] = ACTIONS(9961), + [anon_sym_BANG] = ACTIONS(9963), + [aux_sym__attribute_identifier_token1] = ACTIONS(6869), + [aux_sym_option_statement_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6869), + [aux_sym_preprocessor_const_token1] = ACTIONS(6869), + [sym_static_modifier] = ACTIONS(6869), + [sym__dim_keyword] = ACTIONS(6869), + [sym__redim_keyword] = ACTIONS(6869), + [aux_sym_get_accessor_token1] = ACTIONS(6869), + [aux_sym_set_accessor_token1] = ACTIONS(6869), + [aux_sym_const_declaration_token1] = ACTIONS(6869), + [anon_sym_LPAREN] = ACTIONS(6867), + [aux_sym_as_type_clause_token2] = ACTIONS(6869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9965), + [aux_sym_visibility_token1] = ACTIONS(6869), + [aux_sym_visibility_token2] = ACTIONS(6869), + [aux_sym_elseif_fragment_token1] = ACTIONS(6869), + [aux_sym_else_fragment_token1] = ACTIONS(6869), + [aux_sym_select_statement_token1] = ACTIONS(6869), + [aux_sym__for_header_token1] = ACTIONS(6869), + [aux_sym_do_statement_token1] = ACTIONS(6869), + [aux_sym_do_condition_token1] = ACTIONS(6869), + [aux_sym_while_statement_token1] = ACTIONS(6869), + [aux_sym_with_statement_token1] = ACTIONS(6869), + [aux_sym_exit_statement_token1] = ACTIONS(6869), + [sym_end_statement] = ACTIONS(6867), + [aux_sym_on_goto_statement_token1] = ACTIONS(6869), + [aux_sym_on_goto_statement_token2] = ACTIONS(6869), + [aux_sym_on_error_statement_token2] = ACTIONS(6869), + [sym__ambiguous_redim_statement] = ACTIONS(6867), + [aux_sym_erase_statement_token1] = ACTIONS(6869), + [aux_sym_open_statement_token1] = ACTIONS(6869), + [aux_sym_file_mode_token2] = ACTIONS(6869), + [aux_sym_file_access_token2] = ACTIONS(6869), + [aux_sym_file_lock_token2] = ACTIONS(6869), + [aux_sym_print_statement_token1] = ACTIONS(6869), + [anon_sym_PLUS] = ACTIONS(6867), + [anon_sym_DASH] = ACTIONS(6869), + [anon_sym_QMARK] = ACTIONS(6867), + [aux_sym_close_statement_token1] = ACTIONS(6869), + [aux_sym_put_statement_token1] = ACTIONS(6869), + [aux_sym_unlock_statement_token1] = ACTIONS(6869), + [aux_sym_seek_statement_token1] = ACTIONS(6869), + [sym_reset_statement] = ACTIONS(6869), + [aux_sym_raise_event_statement_token1] = ACTIONS(6869), + [sym_stop_statement] = ACTIONS(6869), + [sym_beep_statement] = ACTIONS(6869), + [aux_sym_unload_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token2] = ACTIONS(6869), + [aux_sym_def_type_statement_token3] = ACTIONS(6869), + [aux_sym_def_type_statement_token4] = ACTIONS(6869), + [aux_sym_def_type_statement_token5] = ACTIONS(6869), + [aux_sym_def_type_statement_token6] = ACTIONS(6869), + [aux_sym_def_type_statement_token7] = ACTIONS(6869), + [aux_sym_def_type_statement_token8] = ACTIONS(6869), + [aux_sym_def_type_statement_token9] = ACTIONS(6869), + [aux_sym_def_type_statement_token10] = ACTIONS(6869), + [aux_sym_def_type_statement_token11] = ACTIONS(6869), + [aux_sym_def_type_statement_token12] = ACTIONS(6869), + [aux_sym_def_type_statement_token13] = ACTIONS(6869), + [aux_sym_def_type_statement_token14] = ACTIONS(6869), + [aux_sym_call_statement_token1] = ACTIONS(6869), + [sym__ambiguous_call_statement] = ACTIONS(6869), + [aux_sym_addressof_expression_token1] = ACTIONS(6869), + [aux_sym_type_of_expression_token1] = ACTIONS(6869), + [aux_sym_unary_expression_token1] = ACTIONS(6869), + [sym_string_literal] = ACTIONS(6867), + [sym_number_literal] = ACTIONS(6867), + [aux_sym_boolean_literal_token1] = ACTIONS(6869), + [aux_sym_boolean_literal_token2] = ACTIONS(6869), + [sym_nothing_literal] = ACTIONS(6869), + [sym_null_literal] = ACTIONS(6869), + [sym_empty_literal] = ACTIONS(6869), + [sym_date_literal] = ACTIONS(6867), + [anon_sym_POUND] = ACTIONS(6869), + }, + [STATE(4438)] = { + [sym_next_variable_list] = STATE(6954), + [sym__assignable_expression] = STATE(5160), + [sym__callable_expression] = STATE(5097), + [sym_call_expression] = STATE(5279), + [sym_member_expression] = STATE(6045), + [sym_qualified_member_expression] = STATE(6097), + [sym_implicit_member_expression] = STATE(6097), + [sym_identifier] = ACTIONS(9957), + [sym_newline] = ACTIONS(6810), + [anon_sym_COLON] = ACTIONS(6810), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6812), + [aux_sym_frm_property_statement_token1] = ACTIONS(9959), + [anon_sym_DOT] = ACTIONS(9961), + [anon_sym_BANG] = ACTIONS(9963), + [aux_sym__attribute_identifier_token1] = ACTIONS(6812), + [aux_sym_option_statement_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6812), + [aux_sym_preprocessor_const_token1] = ACTIONS(6812), + [sym_static_modifier] = ACTIONS(6812), + [sym__dim_keyword] = ACTIONS(6812), + [sym__redim_keyword] = ACTIONS(6812), + [aux_sym_get_accessor_token1] = ACTIONS(6812), + [aux_sym_set_accessor_token1] = ACTIONS(6812), + [aux_sym_const_declaration_token1] = ACTIONS(6812), + [anon_sym_LPAREN] = ACTIONS(6810), + [aux_sym_as_type_clause_token2] = ACTIONS(6812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9965), + [aux_sym_visibility_token1] = ACTIONS(6812), + [aux_sym_visibility_token2] = ACTIONS(6812), + [aux_sym_elseif_fragment_token1] = ACTIONS(6812), + [aux_sym_else_fragment_token1] = ACTIONS(6812), + [aux_sym_select_statement_token1] = ACTIONS(6812), + [aux_sym__for_header_token1] = ACTIONS(6812), + [aux_sym_do_statement_token1] = ACTIONS(6812), + [aux_sym_do_condition_token1] = ACTIONS(6812), + [aux_sym_while_statement_token1] = ACTIONS(6812), + [aux_sym_with_statement_token1] = ACTIONS(6812), + [aux_sym_exit_statement_token1] = ACTIONS(6812), + [sym_end_statement] = ACTIONS(6810), + [aux_sym_on_goto_statement_token1] = ACTIONS(6812), + [aux_sym_on_goto_statement_token2] = ACTIONS(6812), + [aux_sym_on_error_statement_token2] = ACTIONS(6812), + [sym__ambiguous_redim_statement] = ACTIONS(6810), + [aux_sym_erase_statement_token1] = ACTIONS(6812), + [aux_sym_open_statement_token1] = ACTIONS(6812), + [aux_sym_file_mode_token2] = ACTIONS(6812), + [aux_sym_file_access_token2] = ACTIONS(6812), + [aux_sym_file_lock_token2] = ACTIONS(6812), + [aux_sym_print_statement_token1] = ACTIONS(6812), + [anon_sym_PLUS] = ACTIONS(6810), + [anon_sym_DASH] = ACTIONS(6812), + [anon_sym_QMARK] = ACTIONS(6810), + [aux_sym_close_statement_token1] = ACTIONS(6812), + [aux_sym_put_statement_token1] = ACTIONS(6812), + [aux_sym_unlock_statement_token1] = ACTIONS(6812), + [aux_sym_seek_statement_token1] = ACTIONS(6812), + [sym_reset_statement] = ACTIONS(6812), + [aux_sym_raise_event_statement_token1] = ACTIONS(6812), + [sym_stop_statement] = ACTIONS(6812), + [sym_beep_statement] = ACTIONS(6812), + [aux_sym_unload_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token2] = ACTIONS(6812), + [aux_sym_def_type_statement_token3] = ACTIONS(6812), + [aux_sym_def_type_statement_token4] = ACTIONS(6812), + [aux_sym_def_type_statement_token5] = ACTIONS(6812), + [aux_sym_def_type_statement_token6] = ACTIONS(6812), + [aux_sym_def_type_statement_token7] = ACTIONS(6812), + [aux_sym_def_type_statement_token8] = ACTIONS(6812), + [aux_sym_def_type_statement_token9] = ACTIONS(6812), + [aux_sym_def_type_statement_token10] = ACTIONS(6812), + [aux_sym_def_type_statement_token11] = ACTIONS(6812), + [aux_sym_def_type_statement_token12] = ACTIONS(6812), + [aux_sym_def_type_statement_token13] = ACTIONS(6812), + [aux_sym_def_type_statement_token14] = ACTIONS(6812), + [aux_sym_call_statement_token1] = ACTIONS(6812), + [sym__ambiguous_call_statement] = ACTIONS(6812), + [aux_sym_addressof_expression_token1] = ACTIONS(6812), + [aux_sym_type_of_expression_token1] = ACTIONS(6812), + [aux_sym_unary_expression_token1] = ACTIONS(6812), + [sym_string_literal] = ACTIONS(6810), + [sym_number_literal] = ACTIONS(6810), + [aux_sym_boolean_literal_token1] = ACTIONS(6812), + [aux_sym_boolean_literal_token2] = ACTIONS(6812), + [sym_nothing_literal] = ACTIONS(6812), + [sym_null_literal] = ACTIONS(6812), + [sym_empty_literal] = ACTIONS(6812), + [sym_date_literal] = ACTIONS(6810), + [anon_sym_POUND] = ACTIONS(6812), + }, + [STATE(4439)] = { + [sym_next_variable_list] = STATE(6957), + [sym__assignable_expression] = STATE(5160), + [sym__callable_expression] = STATE(5097), + [sym_call_expression] = STATE(5279), + [sym_member_expression] = STATE(6045), + [sym_qualified_member_expression] = STATE(6097), + [sym_implicit_member_expression] = STATE(6097), + [sym_identifier] = ACTIONS(9957), + [sym_newline] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6828), + [aux_sym_frm_property_statement_token1] = ACTIONS(9959), + [anon_sym_DOT] = ACTIONS(9961), + [anon_sym_BANG] = ACTIONS(9963), + [aux_sym__attribute_identifier_token1] = ACTIONS(6828), + [aux_sym_option_statement_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6828), + [aux_sym_preprocessor_const_token1] = ACTIONS(6828), + [sym_static_modifier] = ACTIONS(6828), + [sym__dim_keyword] = ACTIONS(6828), + [sym__redim_keyword] = ACTIONS(6828), + [aux_sym_get_accessor_token1] = ACTIONS(6828), + [aux_sym_set_accessor_token1] = ACTIONS(6828), + [aux_sym_const_declaration_token1] = ACTIONS(6828), + [anon_sym_LPAREN] = ACTIONS(6826), + [aux_sym_as_type_clause_token2] = ACTIONS(6828), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9965), + [aux_sym_visibility_token1] = ACTIONS(6828), + [aux_sym_visibility_token2] = ACTIONS(6828), + [aux_sym_elseif_fragment_token1] = ACTIONS(6828), + [aux_sym_else_fragment_token1] = ACTIONS(6828), + [aux_sym_select_statement_token1] = ACTIONS(6828), + [aux_sym__for_header_token1] = ACTIONS(6828), + [aux_sym_do_statement_token1] = ACTIONS(6828), + [aux_sym_do_condition_token1] = ACTIONS(6828), + [aux_sym_while_statement_token1] = ACTIONS(6828), + [aux_sym_with_statement_token1] = ACTIONS(6828), + [aux_sym_exit_statement_token1] = ACTIONS(6828), + [sym_end_statement] = ACTIONS(6826), + [aux_sym_on_goto_statement_token1] = ACTIONS(6828), + [aux_sym_on_goto_statement_token2] = ACTIONS(6828), + [aux_sym_on_error_statement_token2] = ACTIONS(6828), + [sym__ambiguous_redim_statement] = ACTIONS(6826), + [aux_sym_erase_statement_token1] = ACTIONS(6828), + [aux_sym_open_statement_token1] = ACTIONS(6828), + [aux_sym_file_mode_token2] = ACTIONS(6828), + [aux_sym_file_access_token2] = ACTIONS(6828), + [aux_sym_file_lock_token2] = ACTIONS(6828), + [aux_sym_print_statement_token1] = ACTIONS(6828), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_DASH] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6826), + [aux_sym_close_statement_token1] = ACTIONS(6828), + [aux_sym_put_statement_token1] = ACTIONS(6828), + [aux_sym_unlock_statement_token1] = ACTIONS(6828), + [aux_sym_seek_statement_token1] = ACTIONS(6828), + [sym_reset_statement] = ACTIONS(6828), + [aux_sym_raise_event_statement_token1] = ACTIONS(6828), + [sym_stop_statement] = ACTIONS(6828), + [sym_beep_statement] = ACTIONS(6828), + [aux_sym_unload_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token2] = ACTIONS(6828), + [aux_sym_def_type_statement_token3] = ACTIONS(6828), + [aux_sym_def_type_statement_token4] = ACTIONS(6828), + [aux_sym_def_type_statement_token5] = ACTIONS(6828), + [aux_sym_def_type_statement_token6] = ACTIONS(6828), + [aux_sym_def_type_statement_token7] = ACTIONS(6828), + [aux_sym_def_type_statement_token8] = ACTIONS(6828), + [aux_sym_def_type_statement_token9] = ACTIONS(6828), + [aux_sym_def_type_statement_token10] = ACTIONS(6828), + [aux_sym_def_type_statement_token11] = ACTIONS(6828), + [aux_sym_def_type_statement_token12] = ACTIONS(6828), + [aux_sym_def_type_statement_token13] = ACTIONS(6828), + [aux_sym_def_type_statement_token14] = ACTIONS(6828), + [aux_sym_call_statement_token1] = ACTIONS(6828), + [sym__ambiguous_call_statement] = ACTIONS(6828), + [aux_sym_addressof_expression_token1] = ACTIONS(6828), + [aux_sym_type_of_expression_token1] = ACTIONS(6828), + [aux_sym_unary_expression_token1] = ACTIONS(6828), + [sym_string_literal] = ACTIONS(6826), + [sym_number_literal] = ACTIONS(6826), + [aux_sym_boolean_literal_token1] = ACTIONS(6828), + [aux_sym_boolean_literal_token2] = ACTIONS(6828), + [sym_nothing_literal] = ACTIONS(6828), + [sym_null_literal] = ACTIONS(6828), + [sym_empty_literal] = ACTIONS(6828), + [sym_date_literal] = ACTIONS(6826), + [anon_sym_POUND] = ACTIONS(6828), + }, + [STATE(4440)] = { + [sym_identifier] = ACTIONS(9455), + [sym_newline] = ACTIONS(9457), + [anon_sym_COLON] = ACTIONS(9457), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9455), + [aux_sym_frm_property_statement_token1] = ACTIONS(9455), + [anon_sym_DOT] = ACTIONS(9455), + [anon_sym_BANG] = ACTIONS(9457), + [aux_sym__attribute_identifier_token1] = ACTIONS(9455), + [aux_sym_option_statement_token3] = ACTIONS(9455), + [aux_sym_type_declaration_token1] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9455), + [aux_sym_enum_declaration_token1] = ACTIONS(9455), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9455), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9455), + [aux_sym_declare_function_statement_token1] = ACTIONS(9455), + [aux_sym_preprocessor_const_token1] = ACTIONS(9455), + [aux_sym__property_get_header_token1] = ACTIONS(9455), + [aux_sym_event_declaration_token1] = ACTIONS(9455), + [sym_static_modifier] = ACTIONS(9455), + [sym__dim_keyword] = ACTIONS(9455), + [sym__redim_keyword] = ACTIONS(9455), + [aux_sym_get_accessor_token1] = ACTIONS(9455), + [aux_sym_set_accessor_token1] = ACTIONS(9455), + [aux_sym_const_declaration_token1] = ACTIONS(9455), + [anon_sym_LPAREN] = ACTIONS(9457), + [aux_sym_as_type_clause_token2] = ACTIONS(9455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9455), + [aux_sym_visibility_token1] = ACTIONS(9455), + [aux_sym_visibility_token2] = ACTIONS(9455), + [aux_sym_elseif_fragment_token1] = ACTIONS(9455), + [aux_sym_else_fragment_token1] = ACTIONS(9455), + [aux_sym_select_statement_token1] = ACTIONS(9455), + [aux_sym__for_header_token1] = ACTIONS(9455), + [aux_sym_do_statement_token1] = ACTIONS(9455), + [aux_sym_do_condition_token1] = ACTIONS(9455), + [aux_sym_with_statement_token1] = ACTIONS(9455), + [aux_sym_exit_statement_token1] = ACTIONS(9455), + [sym_end_statement] = ACTIONS(9457), + [aux_sym_on_goto_statement_token1] = ACTIONS(9455), + [aux_sym_on_goto_statement_token2] = ACTIONS(9455), + [aux_sym_on_error_statement_token2] = ACTIONS(9455), + [sym__ambiguous_redim_statement] = ACTIONS(9457), + [aux_sym_erase_statement_token1] = ACTIONS(9455), + [aux_sym_open_statement_token1] = ACTIONS(9455), + [aux_sym_file_mode_token2] = ACTIONS(9455), + [aux_sym_file_access_token2] = ACTIONS(9455), + [aux_sym_file_lock_token2] = ACTIONS(9455), + [aux_sym_print_statement_token1] = ACTIONS(9455), + [anon_sym_PLUS] = ACTIONS(9457), + [anon_sym_DASH] = ACTIONS(9455), + [anon_sym_QMARK] = ACTIONS(9457), + [aux_sym_close_statement_token1] = ACTIONS(9455), + [aux_sym_put_statement_token1] = ACTIONS(9455), + [aux_sym_unlock_statement_token1] = ACTIONS(9455), + [aux_sym_seek_statement_token1] = ACTIONS(9455), + [sym_reset_statement] = ACTIONS(9455), + [aux_sym_raise_event_statement_token1] = ACTIONS(9455), + [sym_stop_statement] = ACTIONS(9455), + [sym_beep_statement] = ACTIONS(9455), + [aux_sym_unload_statement_token1] = ACTIONS(9455), + [aux_sym_def_type_statement_token1] = ACTIONS(9455), + [aux_sym_def_type_statement_token2] = ACTIONS(9455), + [aux_sym_def_type_statement_token3] = ACTIONS(9455), + [aux_sym_def_type_statement_token4] = ACTIONS(9455), + [aux_sym_def_type_statement_token5] = ACTIONS(9455), + [aux_sym_def_type_statement_token6] = ACTIONS(9455), + [aux_sym_def_type_statement_token7] = ACTIONS(9455), + [aux_sym_def_type_statement_token8] = ACTIONS(9455), + [aux_sym_def_type_statement_token9] = ACTIONS(9455), + [aux_sym_def_type_statement_token10] = ACTIONS(9455), + [aux_sym_def_type_statement_token11] = ACTIONS(9455), + [aux_sym_def_type_statement_token12] = ACTIONS(9455), + [aux_sym_def_type_statement_token13] = ACTIONS(9455), + [aux_sym_def_type_statement_token14] = ACTIONS(9455), + [aux_sym_call_statement_token1] = ACTIONS(9455), + [sym__ambiguous_call_statement] = ACTIONS(9455), + [aux_sym_addressof_expression_token1] = ACTIONS(9455), + [aux_sym_type_of_expression_token1] = ACTIONS(9455), + [aux_sym_unary_expression_token1] = ACTIONS(9455), + [sym_string_literal] = ACTIONS(9457), + [sym_number_literal] = ACTIONS(9457), + [aux_sym_boolean_literal_token1] = ACTIONS(9455), + [aux_sym_boolean_literal_token2] = ACTIONS(9455), + [sym_nothing_literal] = ACTIONS(9455), + [sym_null_literal] = ACTIONS(9455), + [sym_empty_literal] = ACTIONS(9455), + [sym_date_literal] = ACTIONS(9457), + [anon_sym_POUND] = ACTIONS(9455), + }, + [STATE(4441)] = { + [sym_next_variable_list] = STATE(6960), + [sym__assignable_expression] = STATE(5160), + [sym__callable_expression] = STATE(5097), + [sym_call_expression] = STATE(5279), + [sym_member_expression] = STATE(6045), + [sym_qualified_member_expression] = STATE(6097), + [sym_implicit_member_expression] = STATE(6097), + [sym_identifier] = ACTIONS(9957), + [sym_newline] = ACTIONS(6863), + [anon_sym_COLON] = ACTIONS(6863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6865), + [aux_sym_frm_property_statement_token1] = ACTIONS(9959), + [anon_sym_DOT] = ACTIONS(9961), + [anon_sym_BANG] = ACTIONS(9963), + [aux_sym__attribute_identifier_token1] = ACTIONS(6865), + [aux_sym_option_statement_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6865), + [aux_sym_preprocessor_const_token1] = ACTIONS(6865), + [sym_static_modifier] = ACTIONS(6865), + [sym__dim_keyword] = ACTIONS(6865), + [sym__redim_keyword] = ACTIONS(6865), + [aux_sym_get_accessor_token1] = ACTIONS(6865), + [aux_sym_set_accessor_token1] = ACTIONS(6865), + [aux_sym_const_declaration_token1] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6863), + [aux_sym_as_type_clause_token2] = ACTIONS(6865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9965), + [aux_sym_visibility_token1] = ACTIONS(6865), + [aux_sym_visibility_token2] = ACTIONS(6865), + [aux_sym_elseif_fragment_token1] = ACTIONS(6865), + [aux_sym_else_fragment_token1] = ACTIONS(6865), + [aux_sym_select_statement_token1] = ACTIONS(6865), + [aux_sym__for_header_token1] = ACTIONS(6865), + [aux_sym_do_statement_token1] = ACTIONS(6865), + [aux_sym_do_condition_token1] = ACTIONS(6865), + [aux_sym_while_statement_token1] = ACTIONS(6865), + [aux_sym_with_statement_token1] = ACTIONS(6865), + [aux_sym_exit_statement_token1] = ACTIONS(6865), + [sym_end_statement] = ACTIONS(6863), + [aux_sym_on_goto_statement_token1] = ACTIONS(6865), + [aux_sym_on_goto_statement_token2] = ACTIONS(6865), + [aux_sym_on_error_statement_token2] = ACTIONS(6865), + [sym__ambiguous_redim_statement] = ACTIONS(6863), + [aux_sym_erase_statement_token1] = ACTIONS(6865), + [aux_sym_open_statement_token1] = ACTIONS(6865), + [aux_sym_file_mode_token2] = ACTIONS(6865), + [aux_sym_file_access_token2] = ACTIONS(6865), + [aux_sym_file_lock_token2] = ACTIONS(6865), + [aux_sym_print_statement_token1] = ACTIONS(6865), + [anon_sym_PLUS] = ACTIONS(6863), + [anon_sym_DASH] = ACTIONS(6865), + [anon_sym_QMARK] = ACTIONS(6863), + [aux_sym_close_statement_token1] = ACTIONS(6865), + [aux_sym_put_statement_token1] = ACTIONS(6865), + [aux_sym_unlock_statement_token1] = ACTIONS(6865), + [aux_sym_seek_statement_token1] = ACTIONS(6865), + [sym_reset_statement] = ACTIONS(6865), + [aux_sym_raise_event_statement_token1] = ACTIONS(6865), + [sym_stop_statement] = ACTIONS(6865), + [sym_beep_statement] = ACTIONS(6865), + [aux_sym_unload_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token2] = ACTIONS(6865), + [aux_sym_def_type_statement_token3] = ACTIONS(6865), + [aux_sym_def_type_statement_token4] = ACTIONS(6865), + [aux_sym_def_type_statement_token5] = ACTIONS(6865), + [aux_sym_def_type_statement_token6] = ACTIONS(6865), + [aux_sym_def_type_statement_token7] = ACTIONS(6865), + [aux_sym_def_type_statement_token8] = ACTIONS(6865), + [aux_sym_def_type_statement_token9] = ACTIONS(6865), + [aux_sym_def_type_statement_token10] = ACTIONS(6865), + [aux_sym_def_type_statement_token11] = ACTIONS(6865), + [aux_sym_def_type_statement_token12] = ACTIONS(6865), + [aux_sym_def_type_statement_token13] = ACTIONS(6865), + [aux_sym_def_type_statement_token14] = ACTIONS(6865), + [aux_sym_call_statement_token1] = ACTIONS(6865), + [sym__ambiguous_call_statement] = ACTIONS(6865), + [aux_sym_addressof_expression_token1] = ACTIONS(6865), + [aux_sym_type_of_expression_token1] = ACTIONS(6865), + [aux_sym_unary_expression_token1] = ACTIONS(6865), + [sym_string_literal] = ACTIONS(6863), + [sym_number_literal] = ACTIONS(6863), + [aux_sym_boolean_literal_token1] = ACTIONS(6865), + [aux_sym_boolean_literal_token2] = ACTIONS(6865), + [sym_nothing_literal] = ACTIONS(6865), + [sym_null_literal] = ACTIONS(6865), + [sym_empty_literal] = ACTIONS(6865), + [sym_date_literal] = ACTIONS(6863), + [anon_sym_POUND] = ACTIONS(6865), + }, + [STATE(4442)] = { + [sym_identifier] = ACTIONS(9374), + [sym_newline] = ACTIONS(9376), + [anon_sym_COLON] = ACTIONS(9376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9374), + [aux_sym_frm_property_statement_token1] = ACTIONS(9374), + [anon_sym_DOT] = ACTIONS(9374), + [anon_sym_BANG] = ACTIONS(9376), + [aux_sym__attribute_identifier_token1] = ACTIONS(9374), + [aux_sym_option_statement_token3] = ACTIONS(9374), + [aux_sym_type_declaration_token1] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9374), + [aux_sym_enum_declaration_token1] = ACTIONS(9374), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9374), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9374), + [aux_sym_declare_function_statement_token1] = ACTIONS(9374), + [aux_sym_preprocessor_const_token1] = ACTIONS(9374), + [aux_sym__property_get_header_token1] = ACTIONS(9374), + [aux_sym_event_declaration_token1] = ACTIONS(9374), + [sym_static_modifier] = ACTIONS(9374), + [sym__dim_keyword] = ACTIONS(9374), + [sym__redim_keyword] = ACTIONS(9374), + [aux_sym_get_accessor_token1] = ACTIONS(9374), + [aux_sym_set_accessor_token1] = ACTIONS(9374), + [aux_sym_const_declaration_token1] = ACTIONS(9374), + [anon_sym_LPAREN] = ACTIONS(9376), + [aux_sym_as_type_clause_token2] = ACTIONS(9374), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9374), + [aux_sym_visibility_token1] = ACTIONS(9374), + [aux_sym_visibility_token2] = ACTIONS(9374), + [aux_sym_elseif_fragment_token1] = ACTIONS(9374), + [aux_sym_else_fragment_token1] = ACTIONS(9374), + [aux_sym_select_statement_token1] = ACTIONS(9374), + [aux_sym__for_header_token1] = ACTIONS(9374), + [aux_sym_do_statement_token1] = ACTIONS(9374), + [aux_sym_do_condition_token1] = ACTIONS(9374), + [aux_sym_with_statement_token1] = ACTIONS(9374), + [aux_sym_exit_statement_token1] = ACTIONS(9374), + [sym_end_statement] = ACTIONS(9376), + [aux_sym_on_goto_statement_token1] = ACTIONS(9374), + [aux_sym_on_goto_statement_token2] = ACTIONS(9374), + [aux_sym_on_error_statement_token2] = ACTIONS(9374), + [sym__ambiguous_redim_statement] = ACTIONS(9376), + [aux_sym_erase_statement_token1] = ACTIONS(9374), + [aux_sym_open_statement_token1] = ACTIONS(9374), + [aux_sym_file_mode_token2] = ACTIONS(9374), + [aux_sym_file_access_token2] = ACTIONS(9374), + [aux_sym_file_lock_token2] = ACTIONS(9374), + [aux_sym_print_statement_token1] = ACTIONS(9374), + [anon_sym_PLUS] = ACTIONS(9376), + [anon_sym_DASH] = ACTIONS(9374), + [anon_sym_QMARK] = ACTIONS(9376), + [aux_sym_close_statement_token1] = ACTIONS(9374), + [aux_sym_put_statement_token1] = ACTIONS(9374), + [aux_sym_unlock_statement_token1] = ACTIONS(9374), + [aux_sym_seek_statement_token1] = ACTIONS(9374), + [sym_reset_statement] = ACTIONS(9374), + [aux_sym_raise_event_statement_token1] = ACTIONS(9374), + [sym_stop_statement] = ACTIONS(9374), + [sym_beep_statement] = ACTIONS(9374), + [aux_sym_unload_statement_token1] = ACTIONS(9374), + [aux_sym_def_type_statement_token1] = ACTIONS(9374), + [aux_sym_def_type_statement_token2] = ACTIONS(9374), + [aux_sym_def_type_statement_token3] = ACTIONS(9374), + [aux_sym_def_type_statement_token4] = ACTIONS(9374), + [aux_sym_def_type_statement_token5] = ACTIONS(9374), + [aux_sym_def_type_statement_token6] = ACTIONS(9374), + [aux_sym_def_type_statement_token7] = ACTIONS(9374), + [aux_sym_def_type_statement_token8] = ACTIONS(9374), + [aux_sym_def_type_statement_token9] = ACTIONS(9374), + [aux_sym_def_type_statement_token10] = ACTIONS(9374), + [aux_sym_def_type_statement_token11] = ACTIONS(9374), + [aux_sym_def_type_statement_token12] = ACTIONS(9374), + [aux_sym_def_type_statement_token13] = ACTIONS(9374), + [aux_sym_def_type_statement_token14] = ACTIONS(9374), + [aux_sym_call_statement_token1] = ACTIONS(9374), + [sym__ambiguous_call_statement] = ACTIONS(9374), + [aux_sym_addressof_expression_token1] = ACTIONS(9374), + [aux_sym_type_of_expression_token1] = ACTIONS(9374), + [aux_sym_unary_expression_token1] = ACTIONS(9374), + [sym_string_literal] = ACTIONS(9376), + [sym_number_literal] = ACTIONS(9376), + [aux_sym_boolean_literal_token1] = ACTIONS(9374), + [aux_sym_boolean_literal_token2] = ACTIONS(9374), + [sym_nothing_literal] = ACTIONS(9374), + [sym_null_literal] = ACTIONS(9374), + [sym_empty_literal] = ACTIONS(9374), + [sym_date_literal] = ACTIONS(9376), + [anon_sym_POUND] = ACTIONS(9374), + }, + [STATE(4443)] = { + [sym_identifier] = ACTIONS(9378), + [sym_newline] = ACTIONS(9380), + [anon_sym_COLON] = ACTIONS(9380), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9378), + [aux_sym_frm_property_statement_token1] = ACTIONS(9378), + [anon_sym_DOT] = ACTIONS(9378), + [anon_sym_BANG] = ACTIONS(9380), + [aux_sym__attribute_identifier_token1] = ACTIONS(9378), + [aux_sym_option_statement_token3] = ACTIONS(9378), + [aux_sym_type_declaration_token1] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9378), + [aux_sym_enum_declaration_token1] = ACTIONS(9378), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9378), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9378), + [aux_sym_declare_function_statement_token1] = ACTIONS(9378), + [aux_sym_preprocessor_const_token1] = ACTIONS(9378), + [aux_sym__property_get_header_token1] = ACTIONS(9378), + [aux_sym_event_declaration_token1] = ACTIONS(9378), + [sym_static_modifier] = ACTIONS(9378), + [sym__dim_keyword] = ACTIONS(9378), + [sym__redim_keyword] = ACTIONS(9378), + [aux_sym_get_accessor_token1] = ACTIONS(9378), + [aux_sym_set_accessor_token1] = ACTIONS(9378), + [aux_sym_const_declaration_token1] = ACTIONS(9378), + [anon_sym_LPAREN] = ACTIONS(9380), + [aux_sym_as_type_clause_token2] = ACTIONS(9378), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9378), + [aux_sym_visibility_token1] = ACTIONS(9378), + [aux_sym_visibility_token2] = ACTIONS(9378), + [aux_sym_elseif_fragment_token1] = ACTIONS(9378), + [aux_sym_else_fragment_token1] = ACTIONS(9378), + [aux_sym_select_statement_token1] = ACTIONS(9378), + [aux_sym__for_header_token1] = ACTIONS(9378), + [aux_sym_do_statement_token1] = ACTIONS(9378), + [aux_sym_do_condition_token1] = ACTIONS(9378), + [aux_sym_with_statement_token1] = ACTIONS(9378), + [aux_sym_exit_statement_token1] = ACTIONS(9378), + [sym_end_statement] = ACTIONS(9380), + [aux_sym_on_goto_statement_token1] = ACTIONS(9378), + [aux_sym_on_goto_statement_token2] = ACTIONS(9378), + [aux_sym_on_error_statement_token2] = ACTIONS(9378), + [sym__ambiguous_redim_statement] = ACTIONS(9380), + [aux_sym_erase_statement_token1] = ACTIONS(9378), + [aux_sym_open_statement_token1] = ACTIONS(9378), + [aux_sym_file_mode_token2] = ACTIONS(9378), + [aux_sym_file_access_token2] = ACTIONS(9378), + [aux_sym_file_lock_token2] = ACTIONS(9378), + [aux_sym_print_statement_token1] = ACTIONS(9378), + [anon_sym_PLUS] = ACTIONS(9380), + [anon_sym_DASH] = ACTIONS(9378), + [anon_sym_QMARK] = ACTIONS(9380), + [aux_sym_close_statement_token1] = ACTIONS(9378), + [aux_sym_put_statement_token1] = ACTIONS(9378), + [aux_sym_unlock_statement_token1] = ACTIONS(9378), + [aux_sym_seek_statement_token1] = ACTIONS(9378), + [sym_reset_statement] = ACTIONS(9378), + [aux_sym_raise_event_statement_token1] = ACTIONS(9378), + [sym_stop_statement] = ACTIONS(9378), + [sym_beep_statement] = ACTIONS(9378), + [aux_sym_unload_statement_token1] = ACTIONS(9378), + [aux_sym_def_type_statement_token1] = ACTIONS(9378), + [aux_sym_def_type_statement_token2] = ACTIONS(9378), + [aux_sym_def_type_statement_token3] = ACTIONS(9378), + [aux_sym_def_type_statement_token4] = ACTIONS(9378), + [aux_sym_def_type_statement_token5] = ACTIONS(9378), + [aux_sym_def_type_statement_token6] = ACTIONS(9378), + [aux_sym_def_type_statement_token7] = ACTIONS(9378), + [aux_sym_def_type_statement_token8] = ACTIONS(9378), + [aux_sym_def_type_statement_token9] = ACTIONS(9378), + [aux_sym_def_type_statement_token10] = ACTIONS(9378), + [aux_sym_def_type_statement_token11] = ACTIONS(9378), + [aux_sym_def_type_statement_token12] = ACTIONS(9378), + [aux_sym_def_type_statement_token13] = ACTIONS(9378), + [aux_sym_def_type_statement_token14] = ACTIONS(9378), + [aux_sym_call_statement_token1] = ACTIONS(9378), + [sym__ambiguous_call_statement] = ACTIONS(9378), + [aux_sym_addressof_expression_token1] = ACTIONS(9378), + [aux_sym_type_of_expression_token1] = ACTIONS(9378), + [aux_sym_unary_expression_token1] = ACTIONS(9378), + [sym_string_literal] = ACTIONS(9380), + [sym_number_literal] = ACTIONS(9380), + [aux_sym_boolean_literal_token1] = ACTIONS(9378), + [aux_sym_boolean_literal_token2] = ACTIONS(9378), + [sym_nothing_literal] = ACTIONS(9378), + [sym_null_literal] = ACTIONS(9378), + [sym_empty_literal] = ACTIONS(9378), + [sym_date_literal] = ACTIONS(9380), + [anon_sym_POUND] = ACTIONS(9378), + }, + [STATE(4444)] = { + [sym_identifier] = ACTIONS(9288), + [sym_newline] = ACTIONS(9290), + [anon_sym_COLON] = ACTIONS(9290), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9288), + [aux_sym_frm_property_statement_token1] = ACTIONS(9288), + [anon_sym_DOT] = ACTIONS(9288), + [anon_sym_BANG] = ACTIONS(9290), + [aux_sym__attribute_identifier_token1] = ACTIONS(9288), + [aux_sym_option_statement_token3] = ACTIONS(9288), + [aux_sym_type_declaration_token1] = ACTIONS(9288), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9288), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9288), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9288), + [aux_sym_enum_declaration_token1] = ACTIONS(9288), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9288), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9288), + [aux_sym_declare_function_statement_token1] = ACTIONS(9288), + [aux_sym_preprocessor_const_token1] = ACTIONS(9288), + [aux_sym__property_get_header_token1] = ACTIONS(9288), + [aux_sym_event_declaration_token1] = ACTIONS(9288), + [sym_static_modifier] = ACTIONS(9288), + [sym__dim_keyword] = ACTIONS(9288), + [sym__redim_keyword] = ACTIONS(9288), + [aux_sym_get_accessor_token1] = ACTIONS(9288), + [aux_sym_set_accessor_token1] = ACTIONS(9288), + [aux_sym_const_declaration_token1] = ACTIONS(9288), + [anon_sym_LPAREN] = ACTIONS(9290), + [aux_sym_as_type_clause_token2] = ACTIONS(9288), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9288), + [aux_sym_visibility_token1] = ACTIONS(9288), + [aux_sym_visibility_token2] = ACTIONS(9288), + [aux_sym_elseif_fragment_token1] = ACTIONS(9288), + [aux_sym_else_fragment_token1] = ACTIONS(9288), + [aux_sym_select_statement_token1] = ACTIONS(9288), + [aux_sym__for_header_token1] = ACTIONS(9288), + [aux_sym_do_statement_token1] = ACTIONS(9288), + [aux_sym_do_condition_token1] = ACTIONS(9288), + [aux_sym_with_statement_token1] = ACTIONS(9288), + [aux_sym_exit_statement_token1] = ACTIONS(9288), + [sym_end_statement] = ACTIONS(9290), + [aux_sym_on_goto_statement_token1] = ACTIONS(9288), + [aux_sym_on_goto_statement_token2] = ACTIONS(9288), + [aux_sym_on_error_statement_token2] = ACTIONS(9288), + [sym__ambiguous_redim_statement] = ACTIONS(9290), + [aux_sym_erase_statement_token1] = ACTIONS(9288), + [aux_sym_open_statement_token1] = ACTIONS(9288), + [aux_sym_file_mode_token2] = ACTIONS(9288), + [aux_sym_file_access_token2] = ACTIONS(9288), + [aux_sym_file_lock_token2] = ACTIONS(9288), + [aux_sym_print_statement_token1] = ACTIONS(9288), + [anon_sym_PLUS] = ACTIONS(9290), + [anon_sym_DASH] = ACTIONS(9288), + [anon_sym_QMARK] = ACTIONS(9290), + [aux_sym_close_statement_token1] = ACTIONS(9288), + [aux_sym_put_statement_token1] = ACTIONS(9288), + [aux_sym_unlock_statement_token1] = ACTIONS(9288), + [aux_sym_seek_statement_token1] = ACTIONS(9288), + [sym_reset_statement] = ACTIONS(9288), + [aux_sym_raise_event_statement_token1] = ACTIONS(9288), + [sym_stop_statement] = ACTIONS(9288), + [sym_beep_statement] = ACTIONS(9288), + [aux_sym_unload_statement_token1] = ACTIONS(9288), + [aux_sym_def_type_statement_token1] = ACTIONS(9288), + [aux_sym_def_type_statement_token2] = ACTIONS(9288), + [aux_sym_def_type_statement_token3] = ACTIONS(9288), + [aux_sym_def_type_statement_token4] = ACTIONS(9288), + [aux_sym_def_type_statement_token5] = ACTIONS(9288), + [aux_sym_def_type_statement_token6] = ACTIONS(9288), + [aux_sym_def_type_statement_token7] = ACTIONS(9288), + [aux_sym_def_type_statement_token8] = ACTIONS(9288), + [aux_sym_def_type_statement_token9] = ACTIONS(9288), + [aux_sym_def_type_statement_token10] = ACTIONS(9288), + [aux_sym_def_type_statement_token11] = ACTIONS(9288), + [aux_sym_def_type_statement_token12] = ACTIONS(9288), + [aux_sym_def_type_statement_token13] = ACTIONS(9288), + [aux_sym_def_type_statement_token14] = ACTIONS(9288), + [aux_sym_call_statement_token1] = ACTIONS(9288), + [sym__ambiguous_call_statement] = ACTIONS(9288), + [aux_sym_addressof_expression_token1] = ACTIONS(9288), + [aux_sym_type_of_expression_token1] = ACTIONS(9288), + [aux_sym_unary_expression_token1] = ACTIONS(9288), + [sym_string_literal] = ACTIONS(9290), + [sym_number_literal] = ACTIONS(9290), + [aux_sym_boolean_literal_token1] = ACTIONS(9288), + [aux_sym_boolean_literal_token2] = ACTIONS(9288), + [sym_nothing_literal] = ACTIONS(9288), + [sym_null_literal] = ACTIONS(9288), + [sym_empty_literal] = ACTIONS(9288), + [sym_date_literal] = ACTIONS(9290), + [anon_sym_POUND] = ACTIONS(9288), + }, + [STATE(4445)] = { + [sym_identifier] = ACTIONS(8935), + [sym_newline] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(8937), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8935), + [aux_sym_frm_property_statement_token1] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_BANG] = ACTIONS(8937), + [aux_sym__attribute_identifier_token1] = ACTIONS(8935), + [aux_sym_option_statement_token3] = ACTIONS(8935), + [aux_sym_type_declaration_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8935), + [aux_sym_enum_declaration_token1] = ACTIONS(8935), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8935), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8935), + [aux_sym_declare_function_statement_token1] = ACTIONS(8935), + [aux_sym_preprocessor_const_token1] = ACTIONS(8935), + [aux_sym__property_get_header_token1] = ACTIONS(8935), + [aux_sym_event_declaration_token1] = ACTIONS(8935), + [sym_static_modifier] = ACTIONS(8935), + [sym__dim_keyword] = ACTIONS(8935), + [sym__redim_keyword] = ACTIONS(8935), + [aux_sym_get_accessor_token1] = ACTIONS(8935), + [aux_sym_set_accessor_token1] = ACTIONS(8935), + [aux_sym_const_declaration_token1] = ACTIONS(8935), + [anon_sym_LPAREN] = ACTIONS(8937), + [aux_sym_as_type_clause_token2] = ACTIONS(8935), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8935), + [aux_sym_visibility_token1] = ACTIONS(8935), + [aux_sym_visibility_token2] = ACTIONS(8935), + [aux_sym_elseif_fragment_token1] = ACTIONS(8935), + [aux_sym_else_fragment_token1] = ACTIONS(8935), + [aux_sym_select_statement_token1] = ACTIONS(8935), + [aux_sym__for_header_token1] = ACTIONS(8935), + [aux_sym_do_statement_token1] = ACTIONS(8935), + [aux_sym_do_condition_token1] = ACTIONS(8935), + [aux_sym_with_statement_token1] = ACTIONS(8935), + [aux_sym_exit_statement_token1] = ACTIONS(8935), + [sym_end_statement] = ACTIONS(8937), + [aux_sym_on_goto_statement_token1] = ACTIONS(8935), + [aux_sym_on_goto_statement_token2] = ACTIONS(8935), + [aux_sym_on_error_statement_token2] = ACTIONS(8935), + [sym__ambiguous_redim_statement] = ACTIONS(8937), + [aux_sym_erase_statement_token1] = ACTIONS(8935), + [aux_sym_open_statement_token1] = ACTIONS(8935), + [aux_sym_file_mode_token2] = ACTIONS(8935), + [aux_sym_file_access_token2] = ACTIONS(8935), + [aux_sym_file_lock_token2] = ACTIONS(8935), + [aux_sym_print_statement_token1] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [aux_sym_close_statement_token1] = ACTIONS(8935), + [aux_sym_put_statement_token1] = ACTIONS(8935), + [aux_sym_unlock_statement_token1] = ACTIONS(8935), + [aux_sym_seek_statement_token1] = ACTIONS(8935), + [sym_reset_statement] = ACTIONS(8935), + [aux_sym_raise_event_statement_token1] = ACTIONS(8935), + [sym_stop_statement] = ACTIONS(8935), + [sym_beep_statement] = ACTIONS(8935), + [aux_sym_unload_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token2] = ACTIONS(8935), + [aux_sym_def_type_statement_token3] = ACTIONS(8935), + [aux_sym_def_type_statement_token4] = ACTIONS(8935), + [aux_sym_def_type_statement_token5] = ACTIONS(8935), + [aux_sym_def_type_statement_token6] = ACTIONS(8935), + [aux_sym_def_type_statement_token7] = ACTIONS(8935), + [aux_sym_def_type_statement_token8] = ACTIONS(8935), + [aux_sym_def_type_statement_token9] = ACTIONS(8935), + [aux_sym_def_type_statement_token10] = ACTIONS(8935), + [aux_sym_def_type_statement_token11] = ACTIONS(8935), + [aux_sym_def_type_statement_token12] = ACTIONS(8935), + [aux_sym_def_type_statement_token13] = ACTIONS(8935), + [aux_sym_def_type_statement_token14] = ACTIONS(8935), + [aux_sym_call_statement_token1] = ACTIONS(8935), + [sym__ambiguous_call_statement] = ACTIONS(8935), + [aux_sym_addressof_expression_token1] = ACTIONS(8935), + [aux_sym_type_of_expression_token1] = ACTIONS(8935), + [aux_sym_unary_expression_token1] = ACTIONS(8935), + [sym_string_literal] = ACTIONS(8937), + [sym_number_literal] = ACTIONS(8937), + [aux_sym_boolean_literal_token1] = ACTIONS(8935), + [aux_sym_boolean_literal_token2] = ACTIONS(8935), + [sym_nothing_literal] = ACTIONS(8935), + [sym_null_literal] = ACTIONS(8935), + [sym_empty_literal] = ACTIONS(8935), + [sym_date_literal] = ACTIONS(8937), + [anon_sym_POUND] = ACTIONS(8935), + }, + [STATE(4446)] = { + [sym_next_variable_list] = STATE(7027), + [sym__assignable_expression] = STATE(5160), + [sym__callable_expression] = STATE(5097), + [sym_call_expression] = STATE(5279), + [sym_member_expression] = STATE(6045), + [sym_qualified_member_expression] = STATE(6097), + [sym_implicit_member_expression] = STATE(6097), + [sym_identifier] = ACTIONS(9957), + [sym_newline] = ACTIONS(6848), + [anon_sym_COLON] = ACTIONS(6848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6850), + [aux_sym_frm_property_statement_token1] = ACTIONS(9959), + [anon_sym_DOT] = ACTIONS(9961), + [anon_sym_BANG] = ACTIONS(9963), + [aux_sym__attribute_identifier_token1] = ACTIONS(6850), + [aux_sym_option_statement_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6850), + [aux_sym_preprocessor_const_token1] = ACTIONS(6850), + [sym_static_modifier] = ACTIONS(6850), + [sym__dim_keyword] = ACTIONS(6850), + [sym__redim_keyword] = ACTIONS(6850), + [aux_sym_get_accessor_token1] = ACTIONS(6850), + [aux_sym_set_accessor_token1] = ACTIONS(6850), + [aux_sym_const_declaration_token1] = ACTIONS(6850), + [anon_sym_LPAREN] = ACTIONS(6848), + [aux_sym_as_type_clause_token2] = ACTIONS(6850), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9965), + [aux_sym_visibility_token1] = ACTIONS(6850), + [aux_sym_visibility_token2] = ACTIONS(6850), + [aux_sym_elseif_fragment_token1] = ACTIONS(6850), + [aux_sym_else_fragment_token1] = ACTIONS(6850), + [aux_sym_select_statement_token1] = ACTIONS(6850), + [aux_sym__for_header_token1] = ACTIONS(6850), + [aux_sym_do_statement_token1] = ACTIONS(6850), + [aux_sym_do_condition_token1] = ACTIONS(6850), + [aux_sym_while_statement_token1] = ACTIONS(6850), + [aux_sym_with_statement_token1] = ACTIONS(6850), + [aux_sym_exit_statement_token1] = ACTIONS(6850), + [sym_end_statement] = ACTIONS(6848), + [aux_sym_on_goto_statement_token1] = ACTIONS(6850), + [aux_sym_on_goto_statement_token2] = ACTIONS(6850), + [aux_sym_on_error_statement_token2] = ACTIONS(6850), + [sym__ambiguous_redim_statement] = ACTIONS(6848), + [aux_sym_erase_statement_token1] = ACTIONS(6850), + [aux_sym_open_statement_token1] = ACTIONS(6850), + [aux_sym_file_mode_token2] = ACTIONS(6850), + [aux_sym_file_access_token2] = ACTIONS(6850), + [aux_sym_file_lock_token2] = ACTIONS(6850), + [aux_sym_print_statement_token1] = ACTIONS(6850), + [anon_sym_PLUS] = ACTIONS(6848), + [anon_sym_DASH] = ACTIONS(6850), + [anon_sym_QMARK] = ACTIONS(6848), + [aux_sym_close_statement_token1] = ACTIONS(6850), + [aux_sym_put_statement_token1] = ACTIONS(6850), + [aux_sym_unlock_statement_token1] = ACTIONS(6850), + [aux_sym_seek_statement_token1] = ACTIONS(6850), + [sym_reset_statement] = ACTIONS(6850), + [aux_sym_raise_event_statement_token1] = ACTIONS(6850), + [sym_stop_statement] = ACTIONS(6850), + [sym_beep_statement] = ACTIONS(6850), + [aux_sym_unload_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token2] = ACTIONS(6850), + [aux_sym_def_type_statement_token3] = ACTIONS(6850), + [aux_sym_def_type_statement_token4] = ACTIONS(6850), + [aux_sym_def_type_statement_token5] = ACTIONS(6850), + [aux_sym_def_type_statement_token6] = ACTIONS(6850), + [aux_sym_def_type_statement_token7] = ACTIONS(6850), + [aux_sym_def_type_statement_token8] = ACTIONS(6850), + [aux_sym_def_type_statement_token9] = ACTIONS(6850), + [aux_sym_def_type_statement_token10] = ACTIONS(6850), + [aux_sym_def_type_statement_token11] = ACTIONS(6850), + [aux_sym_def_type_statement_token12] = ACTIONS(6850), + [aux_sym_def_type_statement_token13] = ACTIONS(6850), + [aux_sym_def_type_statement_token14] = ACTIONS(6850), + [aux_sym_call_statement_token1] = ACTIONS(6850), + [sym__ambiguous_call_statement] = ACTIONS(6850), + [aux_sym_addressof_expression_token1] = ACTIONS(6850), + [aux_sym_type_of_expression_token1] = ACTIONS(6850), + [aux_sym_unary_expression_token1] = ACTIONS(6850), + [sym_string_literal] = ACTIONS(6848), + [sym_number_literal] = ACTIONS(6848), + [aux_sym_boolean_literal_token1] = ACTIONS(6850), + [aux_sym_boolean_literal_token2] = ACTIONS(6850), + [sym_nothing_literal] = ACTIONS(6850), + [sym_null_literal] = ACTIONS(6850), + [sym_empty_literal] = ACTIONS(6850), + [sym_date_literal] = ACTIONS(6848), + [anon_sym_POUND] = ACTIONS(6850), + }, + [STATE(4447)] = { + [sym_identifier] = ACTIONS(9496), + [sym_newline] = ACTIONS(9498), + [anon_sym_COLON] = ACTIONS(9498), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9496), + [aux_sym_frm_property_statement_token1] = ACTIONS(9496), + [anon_sym_DOT] = ACTIONS(9496), + [anon_sym_BANG] = ACTIONS(9498), + [aux_sym__attribute_identifier_token1] = ACTIONS(9496), + [aux_sym_option_statement_token3] = ACTIONS(9496), + [aux_sym_type_declaration_token1] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9496), + [aux_sym_enum_declaration_token1] = ACTIONS(9496), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9496), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9496), + [aux_sym_declare_function_statement_token1] = ACTIONS(9496), + [aux_sym_preprocessor_const_token1] = ACTIONS(9496), + [aux_sym__property_get_header_token1] = ACTIONS(9496), + [aux_sym_event_declaration_token1] = ACTIONS(9496), + [sym_static_modifier] = ACTIONS(9496), + [sym__dim_keyword] = ACTIONS(9496), + [sym__redim_keyword] = ACTIONS(9496), + [aux_sym_get_accessor_token1] = ACTIONS(9496), + [aux_sym_set_accessor_token1] = ACTIONS(9496), + [aux_sym_const_declaration_token1] = ACTIONS(9496), + [anon_sym_LPAREN] = ACTIONS(9498), + [aux_sym_as_type_clause_token2] = ACTIONS(9496), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9496), + [aux_sym_visibility_token1] = ACTIONS(9496), + [aux_sym_visibility_token2] = ACTIONS(9496), + [aux_sym_elseif_fragment_token1] = ACTIONS(9496), + [aux_sym_else_fragment_token1] = ACTIONS(9496), + [aux_sym_select_statement_token1] = ACTIONS(9496), + [aux_sym__for_header_token1] = ACTIONS(9496), + [aux_sym_do_statement_token1] = ACTIONS(9496), + [aux_sym_do_condition_token1] = ACTIONS(9496), + [aux_sym_with_statement_token1] = ACTIONS(9496), + [aux_sym_exit_statement_token1] = ACTIONS(9496), + [sym_end_statement] = ACTIONS(9498), + [aux_sym_on_goto_statement_token1] = ACTIONS(9496), + [aux_sym_on_goto_statement_token2] = ACTIONS(9496), + [aux_sym_on_error_statement_token2] = ACTIONS(9496), + [sym__ambiguous_redim_statement] = ACTIONS(9498), + [aux_sym_erase_statement_token1] = ACTIONS(9496), + [aux_sym_open_statement_token1] = ACTIONS(9496), + [aux_sym_file_mode_token2] = ACTIONS(9496), + [aux_sym_file_access_token2] = ACTIONS(9496), + [aux_sym_file_lock_token2] = ACTIONS(9496), + [aux_sym_print_statement_token1] = ACTIONS(9496), + [anon_sym_PLUS] = ACTIONS(9498), + [anon_sym_DASH] = ACTIONS(9496), + [anon_sym_QMARK] = ACTIONS(9498), + [aux_sym_close_statement_token1] = ACTIONS(9496), + [aux_sym_put_statement_token1] = ACTIONS(9496), + [aux_sym_unlock_statement_token1] = ACTIONS(9496), + [aux_sym_seek_statement_token1] = ACTIONS(9496), + [sym_reset_statement] = ACTIONS(9496), + [aux_sym_raise_event_statement_token1] = ACTIONS(9496), + [sym_stop_statement] = ACTIONS(9496), + [sym_beep_statement] = ACTIONS(9496), + [aux_sym_unload_statement_token1] = ACTIONS(9496), + [aux_sym_def_type_statement_token1] = ACTIONS(9496), + [aux_sym_def_type_statement_token2] = ACTIONS(9496), + [aux_sym_def_type_statement_token3] = ACTIONS(9496), + [aux_sym_def_type_statement_token4] = ACTIONS(9496), + [aux_sym_def_type_statement_token5] = ACTIONS(9496), + [aux_sym_def_type_statement_token6] = ACTIONS(9496), + [aux_sym_def_type_statement_token7] = ACTIONS(9496), + [aux_sym_def_type_statement_token8] = ACTIONS(9496), + [aux_sym_def_type_statement_token9] = ACTIONS(9496), + [aux_sym_def_type_statement_token10] = ACTIONS(9496), + [aux_sym_def_type_statement_token11] = ACTIONS(9496), + [aux_sym_def_type_statement_token12] = ACTIONS(9496), + [aux_sym_def_type_statement_token13] = ACTIONS(9496), + [aux_sym_def_type_statement_token14] = ACTIONS(9496), + [aux_sym_call_statement_token1] = ACTIONS(9496), + [sym__ambiguous_call_statement] = ACTIONS(9496), + [aux_sym_addressof_expression_token1] = ACTIONS(9496), + [aux_sym_type_of_expression_token1] = ACTIONS(9496), + [aux_sym_unary_expression_token1] = ACTIONS(9496), + [sym_string_literal] = ACTIONS(9498), + [sym_number_literal] = ACTIONS(9498), + [aux_sym_boolean_literal_token1] = ACTIONS(9496), + [aux_sym_boolean_literal_token2] = ACTIONS(9496), + [sym_nothing_literal] = ACTIONS(9496), + [sym_null_literal] = ACTIONS(9496), + [sym_empty_literal] = ACTIONS(9496), + [sym_date_literal] = ACTIONS(9498), + [anon_sym_POUND] = ACTIONS(9496), + }, + [STATE(4448)] = { + [sym_identifier] = ACTIONS(9506), + [sym_newline] = ACTIONS(9508), + [anon_sym_COLON] = ACTIONS(9508), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9506), + [aux_sym_frm_property_statement_token1] = ACTIONS(9506), + [anon_sym_DOT] = ACTIONS(9506), + [anon_sym_BANG] = ACTIONS(9508), + [aux_sym__attribute_identifier_token1] = ACTIONS(9506), + [aux_sym_option_statement_token3] = ACTIONS(9506), + [aux_sym_type_declaration_token1] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9506), + [aux_sym_enum_declaration_token1] = ACTIONS(9506), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9506), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9506), + [aux_sym_declare_function_statement_token1] = ACTIONS(9506), + [aux_sym_preprocessor_const_token1] = ACTIONS(9506), + [aux_sym__property_get_header_token1] = ACTIONS(9506), + [aux_sym_event_declaration_token1] = ACTIONS(9506), + [sym_static_modifier] = ACTIONS(9506), + [sym__dim_keyword] = ACTIONS(9506), + [sym__redim_keyword] = ACTIONS(9506), + [aux_sym_get_accessor_token1] = ACTIONS(9506), + [aux_sym_set_accessor_token1] = ACTIONS(9506), + [aux_sym_const_declaration_token1] = ACTIONS(9506), + [anon_sym_LPAREN] = ACTIONS(9508), + [aux_sym_as_type_clause_token2] = ACTIONS(9506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9506), + [aux_sym_visibility_token1] = ACTIONS(9506), + [aux_sym_visibility_token2] = ACTIONS(9506), + [aux_sym_elseif_fragment_token1] = ACTIONS(9506), + [aux_sym_else_fragment_token1] = ACTIONS(9506), + [aux_sym_select_statement_token1] = ACTIONS(9506), + [aux_sym__for_header_token1] = ACTIONS(9506), + [aux_sym_do_statement_token1] = ACTIONS(9506), + [aux_sym_do_condition_token1] = ACTIONS(9506), + [aux_sym_with_statement_token1] = ACTIONS(9506), + [aux_sym_exit_statement_token1] = ACTIONS(9506), + [sym_end_statement] = ACTIONS(9508), + [aux_sym_on_goto_statement_token1] = ACTIONS(9506), + [aux_sym_on_goto_statement_token2] = ACTIONS(9506), + [aux_sym_on_error_statement_token2] = ACTIONS(9506), + [sym__ambiguous_redim_statement] = ACTIONS(9508), + [aux_sym_erase_statement_token1] = ACTIONS(9506), + [aux_sym_open_statement_token1] = ACTIONS(9506), + [aux_sym_file_mode_token2] = ACTIONS(9506), + [aux_sym_file_access_token2] = ACTIONS(9506), + [aux_sym_file_lock_token2] = ACTIONS(9506), + [aux_sym_print_statement_token1] = ACTIONS(9506), + [anon_sym_PLUS] = ACTIONS(9508), + [anon_sym_DASH] = ACTIONS(9506), + [anon_sym_QMARK] = ACTIONS(9508), + [aux_sym_close_statement_token1] = ACTIONS(9506), + [aux_sym_put_statement_token1] = ACTIONS(9506), + [aux_sym_unlock_statement_token1] = ACTIONS(9506), + [aux_sym_seek_statement_token1] = ACTIONS(9506), + [sym_reset_statement] = ACTIONS(9506), + [aux_sym_raise_event_statement_token1] = ACTIONS(9506), + [sym_stop_statement] = ACTIONS(9506), + [sym_beep_statement] = ACTIONS(9506), + [aux_sym_unload_statement_token1] = ACTIONS(9506), + [aux_sym_def_type_statement_token1] = ACTIONS(9506), + [aux_sym_def_type_statement_token2] = ACTIONS(9506), + [aux_sym_def_type_statement_token3] = ACTIONS(9506), + [aux_sym_def_type_statement_token4] = ACTIONS(9506), + [aux_sym_def_type_statement_token5] = ACTIONS(9506), + [aux_sym_def_type_statement_token6] = ACTIONS(9506), + [aux_sym_def_type_statement_token7] = ACTIONS(9506), + [aux_sym_def_type_statement_token8] = ACTIONS(9506), + [aux_sym_def_type_statement_token9] = ACTIONS(9506), + [aux_sym_def_type_statement_token10] = ACTIONS(9506), + [aux_sym_def_type_statement_token11] = ACTIONS(9506), + [aux_sym_def_type_statement_token12] = ACTIONS(9506), + [aux_sym_def_type_statement_token13] = ACTIONS(9506), + [aux_sym_def_type_statement_token14] = ACTIONS(9506), + [aux_sym_call_statement_token1] = ACTIONS(9506), + [sym__ambiguous_call_statement] = ACTIONS(9506), + [aux_sym_addressof_expression_token1] = ACTIONS(9506), + [aux_sym_type_of_expression_token1] = ACTIONS(9506), + [aux_sym_unary_expression_token1] = ACTIONS(9506), + [sym_string_literal] = ACTIONS(9508), + [sym_number_literal] = ACTIONS(9508), + [aux_sym_boolean_literal_token1] = ACTIONS(9506), + [aux_sym_boolean_literal_token2] = ACTIONS(9506), + [sym_nothing_literal] = ACTIONS(9506), + [sym_null_literal] = ACTIONS(9506), + [sym_empty_literal] = ACTIONS(9506), + [sym_date_literal] = ACTIONS(9508), + [anon_sym_POUND] = ACTIONS(9506), + }, + [STATE(4449)] = { + [sym_identifier] = ACTIONS(9510), + [sym_newline] = ACTIONS(9512), + [anon_sym_COLON] = ACTIONS(9512), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9510), + [aux_sym_frm_property_statement_token1] = ACTIONS(9510), + [anon_sym_DOT] = ACTIONS(9510), + [anon_sym_BANG] = ACTIONS(9512), + [aux_sym__attribute_identifier_token1] = ACTIONS(9510), + [aux_sym_option_statement_token3] = ACTIONS(9510), + [aux_sym_type_declaration_token1] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9510), + [aux_sym_enum_declaration_token1] = ACTIONS(9510), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9510), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9510), + [aux_sym_declare_function_statement_token1] = ACTIONS(9510), + [aux_sym_preprocessor_const_token1] = ACTIONS(9510), + [aux_sym__property_get_header_token1] = ACTIONS(9510), + [aux_sym_event_declaration_token1] = ACTIONS(9510), + [sym_static_modifier] = ACTIONS(9510), + [sym__dim_keyword] = ACTIONS(9510), + [sym__redim_keyword] = ACTIONS(9510), + [aux_sym_get_accessor_token1] = ACTIONS(9510), + [aux_sym_set_accessor_token1] = ACTIONS(9510), + [aux_sym_const_declaration_token1] = ACTIONS(9510), + [anon_sym_LPAREN] = ACTIONS(9512), + [aux_sym_as_type_clause_token2] = ACTIONS(9510), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9510), + [aux_sym_visibility_token1] = ACTIONS(9510), + [aux_sym_visibility_token2] = ACTIONS(9510), + [aux_sym_elseif_fragment_token1] = ACTIONS(9510), + [aux_sym_else_fragment_token1] = ACTIONS(9510), + [aux_sym_select_statement_token1] = ACTIONS(9510), + [aux_sym__for_header_token1] = ACTIONS(9510), + [aux_sym_do_statement_token1] = ACTIONS(9510), + [aux_sym_do_condition_token1] = ACTIONS(9510), + [aux_sym_with_statement_token1] = ACTIONS(9510), + [aux_sym_exit_statement_token1] = ACTIONS(9510), + [sym_end_statement] = ACTIONS(9512), + [aux_sym_on_goto_statement_token1] = ACTIONS(9510), + [aux_sym_on_goto_statement_token2] = ACTIONS(9510), + [aux_sym_on_error_statement_token2] = ACTIONS(9510), + [sym__ambiguous_redim_statement] = ACTIONS(9512), + [aux_sym_erase_statement_token1] = ACTIONS(9510), + [aux_sym_open_statement_token1] = ACTIONS(9510), + [aux_sym_file_mode_token2] = ACTIONS(9510), + [aux_sym_file_access_token2] = ACTIONS(9510), + [aux_sym_file_lock_token2] = ACTIONS(9510), + [aux_sym_print_statement_token1] = ACTIONS(9510), + [anon_sym_PLUS] = ACTIONS(9512), + [anon_sym_DASH] = ACTIONS(9510), + [anon_sym_QMARK] = ACTIONS(9512), + [aux_sym_close_statement_token1] = ACTIONS(9510), + [aux_sym_put_statement_token1] = ACTIONS(9510), + [aux_sym_unlock_statement_token1] = ACTIONS(9510), + [aux_sym_seek_statement_token1] = ACTIONS(9510), + [sym_reset_statement] = ACTIONS(9510), + [aux_sym_raise_event_statement_token1] = ACTIONS(9510), + [sym_stop_statement] = ACTIONS(9510), + [sym_beep_statement] = ACTIONS(9510), + [aux_sym_unload_statement_token1] = ACTIONS(9510), + [aux_sym_def_type_statement_token1] = ACTIONS(9510), + [aux_sym_def_type_statement_token2] = ACTIONS(9510), + [aux_sym_def_type_statement_token3] = ACTIONS(9510), + [aux_sym_def_type_statement_token4] = ACTIONS(9510), + [aux_sym_def_type_statement_token5] = ACTIONS(9510), + [aux_sym_def_type_statement_token6] = ACTIONS(9510), + [aux_sym_def_type_statement_token7] = ACTIONS(9510), + [aux_sym_def_type_statement_token8] = ACTIONS(9510), + [aux_sym_def_type_statement_token9] = ACTIONS(9510), + [aux_sym_def_type_statement_token10] = ACTIONS(9510), + [aux_sym_def_type_statement_token11] = ACTIONS(9510), + [aux_sym_def_type_statement_token12] = ACTIONS(9510), + [aux_sym_def_type_statement_token13] = ACTIONS(9510), + [aux_sym_def_type_statement_token14] = ACTIONS(9510), + [aux_sym_call_statement_token1] = ACTIONS(9510), + [sym__ambiguous_call_statement] = ACTIONS(9510), + [aux_sym_addressof_expression_token1] = ACTIONS(9510), + [aux_sym_type_of_expression_token1] = ACTIONS(9510), + [aux_sym_unary_expression_token1] = ACTIONS(9510), + [sym_string_literal] = ACTIONS(9512), + [sym_number_literal] = ACTIONS(9512), + [aux_sym_boolean_literal_token1] = ACTIONS(9510), + [aux_sym_boolean_literal_token2] = ACTIONS(9510), + [sym_nothing_literal] = ACTIONS(9510), + [sym_null_literal] = ACTIONS(9510), + [sym_empty_literal] = ACTIONS(9510), + [sym_date_literal] = ACTIONS(9512), + [anon_sym_POUND] = ACTIONS(9510), + }, + [STATE(4450)] = { + [sym_next_variable_list] = STATE(7031), + [sym__assignable_expression] = STATE(5160), + [sym__callable_expression] = STATE(5097), + [sym_call_expression] = STATE(5279), + [sym_member_expression] = STATE(6045), + [sym_qualified_member_expression] = STATE(6097), + [sym_implicit_member_expression] = STATE(6097), + [sym_identifier] = ACTIONS(9957), + [sym_newline] = ACTIONS(6822), + [anon_sym_COLON] = ACTIONS(6822), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6824), + [aux_sym_frm_property_statement_token1] = ACTIONS(9959), + [anon_sym_DOT] = ACTIONS(9961), + [anon_sym_BANG] = ACTIONS(9963), + [aux_sym__attribute_identifier_token1] = ACTIONS(6824), + [aux_sym_option_statement_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6824), + [aux_sym_preprocessor_const_token1] = ACTIONS(6824), + [sym_static_modifier] = ACTIONS(6824), + [sym__dim_keyword] = ACTIONS(6824), + [sym__redim_keyword] = ACTIONS(6824), + [aux_sym_get_accessor_token1] = ACTIONS(6824), + [aux_sym_set_accessor_token1] = ACTIONS(6824), + [aux_sym_const_declaration_token1] = ACTIONS(6824), + [anon_sym_LPAREN] = ACTIONS(6822), + [aux_sym_as_type_clause_token2] = ACTIONS(6824), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9965), + [aux_sym_visibility_token1] = ACTIONS(6824), + [aux_sym_visibility_token2] = ACTIONS(6824), + [aux_sym_elseif_fragment_token1] = ACTIONS(6824), + [aux_sym_else_fragment_token1] = ACTIONS(6824), + [aux_sym_select_statement_token1] = ACTIONS(6824), + [aux_sym__for_header_token1] = ACTIONS(6824), + [aux_sym_do_statement_token1] = ACTIONS(6824), + [aux_sym_do_condition_token1] = ACTIONS(6824), + [aux_sym_while_statement_token1] = ACTIONS(6824), + [aux_sym_with_statement_token1] = ACTIONS(6824), + [aux_sym_exit_statement_token1] = ACTIONS(6824), + [sym_end_statement] = ACTIONS(6822), + [aux_sym_on_goto_statement_token1] = ACTIONS(6824), + [aux_sym_on_goto_statement_token2] = ACTIONS(6824), + [aux_sym_on_error_statement_token2] = ACTIONS(6824), + [sym__ambiguous_redim_statement] = ACTIONS(6822), + [aux_sym_erase_statement_token1] = ACTIONS(6824), + [aux_sym_open_statement_token1] = ACTIONS(6824), + [aux_sym_file_mode_token2] = ACTIONS(6824), + [aux_sym_file_access_token2] = ACTIONS(6824), + [aux_sym_file_lock_token2] = ACTIONS(6824), + [aux_sym_print_statement_token1] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6822), + [aux_sym_close_statement_token1] = ACTIONS(6824), + [aux_sym_put_statement_token1] = ACTIONS(6824), + [aux_sym_unlock_statement_token1] = ACTIONS(6824), + [aux_sym_seek_statement_token1] = ACTIONS(6824), + [sym_reset_statement] = ACTIONS(6824), + [aux_sym_raise_event_statement_token1] = ACTIONS(6824), + [sym_stop_statement] = ACTIONS(6824), + [sym_beep_statement] = ACTIONS(6824), + [aux_sym_unload_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token2] = ACTIONS(6824), + [aux_sym_def_type_statement_token3] = ACTIONS(6824), + [aux_sym_def_type_statement_token4] = ACTIONS(6824), + [aux_sym_def_type_statement_token5] = ACTIONS(6824), + [aux_sym_def_type_statement_token6] = ACTIONS(6824), + [aux_sym_def_type_statement_token7] = ACTIONS(6824), + [aux_sym_def_type_statement_token8] = ACTIONS(6824), + [aux_sym_def_type_statement_token9] = ACTIONS(6824), + [aux_sym_def_type_statement_token10] = ACTIONS(6824), + [aux_sym_def_type_statement_token11] = ACTIONS(6824), + [aux_sym_def_type_statement_token12] = ACTIONS(6824), + [aux_sym_def_type_statement_token13] = ACTIONS(6824), + [aux_sym_def_type_statement_token14] = ACTIONS(6824), + [aux_sym_call_statement_token1] = ACTIONS(6824), + [sym__ambiguous_call_statement] = ACTIONS(6824), + [aux_sym_addressof_expression_token1] = ACTIONS(6824), + [aux_sym_type_of_expression_token1] = ACTIONS(6824), + [aux_sym_unary_expression_token1] = ACTIONS(6824), + [sym_string_literal] = ACTIONS(6822), + [sym_number_literal] = ACTIONS(6822), + [aux_sym_boolean_literal_token1] = ACTIONS(6824), + [aux_sym_boolean_literal_token2] = ACTIONS(6824), + [sym_nothing_literal] = ACTIONS(6824), + [sym_null_literal] = ACTIONS(6824), + [sym_empty_literal] = ACTIONS(6824), + [sym_date_literal] = ACTIONS(6822), + [anon_sym_POUND] = ACTIONS(6824), + }, + [STATE(4451)] = { + [sym_identifier] = ACTIONS(9514), + [sym_newline] = ACTIONS(9516), + [anon_sym_COLON] = ACTIONS(9516), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9514), + [aux_sym_frm_property_statement_token1] = ACTIONS(9514), + [anon_sym_DOT] = ACTIONS(9514), + [anon_sym_BANG] = ACTIONS(9516), + [aux_sym__attribute_identifier_token1] = ACTIONS(9514), + [aux_sym_option_statement_token3] = ACTIONS(9514), + [aux_sym_type_declaration_token1] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9514), + [aux_sym_enum_declaration_token1] = ACTIONS(9514), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9514), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9514), + [aux_sym_declare_function_statement_token1] = ACTIONS(9514), + [aux_sym_preprocessor_const_token1] = ACTIONS(9514), + [aux_sym__property_get_header_token1] = ACTIONS(9514), + [aux_sym_event_declaration_token1] = ACTIONS(9514), + [sym_static_modifier] = ACTIONS(9514), + [sym__dim_keyword] = ACTIONS(9514), + [sym__redim_keyword] = ACTIONS(9514), + [aux_sym_get_accessor_token1] = ACTIONS(9514), + [aux_sym_set_accessor_token1] = ACTIONS(9514), + [aux_sym_const_declaration_token1] = ACTIONS(9514), + [anon_sym_LPAREN] = ACTIONS(9516), + [aux_sym_as_type_clause_token2] = ACTIONS(9514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9514), + [aux_sym_visibility_token1] = ACTIONS(9514), + [aux_sym_visibility_token2] = ACTIONS(9514), + [aux_sym_elseif_fragment_token1] = ACTIONS(9514), + [aux_sym_else_fragment_token1] = ACTIONS(9514), + [aux_sym_select_statement_token1] = ACTIONS(9514), + [aux_sym__for_header_token1] = ACTIONS(9514), + [aux_sym_do_statement_token1] = ACTIONS(9514), + [aux_sym_do_condition_token1] = ACTIONS(9514), + [aux_sym_with_statement_token1] = ACTIONS(9514), + [aux_sym_exit_statement_token1] = ACTIONS(9514), + [sym_end_statement] = ACTIONS(9516), + [aux_sym_on_goto_statement_token1] = ACTIONS(9514), + [aux_sym_on_goto_statement_token2] = ACTIONS(9514), + [aux_sym_on_error_statement_token2] = ACTIONS(9514), + [sym__ambiguous_redim_statement] = ACTIONS(9516), + [aux_sym_erase_statement_token1] = ACTIONS(9514), + [aux_sym_open_statement_token1] = ACTIONS(9514), + [aux_sym_file_mode_token2] = ACTIONS(9514), + [aux_sym_file_access_token2] = ACTIONS(9514), + [aux_sym_file_lock_token2] = ACTIONS(9514), + [aux_sym_print_statement_token1] = ACTIONS(9514), + [anon_sym_PLUS] = ACTIONS(9516), + [anon_sym_DASH] = ACTIONS(9514), + [anon_sym_QMARK] = ACTIONS(9516), + [aux_sym_close_statement_token1] = ACTIONS(9514), + [aux_sym_put_statement_token1] = ACTIONS(9514), + [aux_sym_unlock_statement_token1] = ACTIONS(9514), + [aux_sym_seek_statement_token1] = ACTIONS(9514), + [sym_reset_statement] = ACTIONS(9514), + [aux_sym_raise_event_statement_token1] = ACTIONS(9514), + [sym_stop_statement] = ACTIONS(9514), + [sym_beep_statement] = ACTIONS(9514), + [aux_sym_unload_statement_token1] = ACTIONS(9514), + [aux_sym_def_type_statement_token1] = ACTIONS(9514), + [aux_sym_def_type_statement_token2] = ACTIONS(9514), + [aux_sym_def_type_statement_token3] = ACTIONS(9514), + [aux_sym_def_type_statement_token4] = ACTIONS(9514), + [aux_sym_def_type_statement_token5] = ACTIONS(9514), + [aux_sym_def_type_statement_token6] = ACTIONS(9514), + [aux_sym_def_type_statement_token7] = ACTIONS(9514), + [aux_sym_def_type_statement_token8] = ACTIONS(9514), + [aux_sym_def_type_statement_token9] = ACTIONS(9514), + [aux_sym_def_type_statement_token10] = ACTIONS(9514), + [aux_sym_def_type_statement_token11] = ACTIONS(9514), + [aux_sym_def_type_statement_token12] = ACTIONS(9514), + [aux_sym_def_type_statement_token13] = ACTIONS(9514), + [aux_sym_def_type_statement_token14] = ACTIONS(9514), + [aux_sym_call_statement_token1] = ACTIONS(9514), + [sym__ambiguous_call_statement] = ACTIONS(9514), + [aux_sym_addressof_expression_token1] = ACTIONS(9514), + [aux_sym_type_of_expression_token1] = ACTIONS(9514), + [aux_sym_unary_expression_token1] = ACTIONS(9514), + [sym_string_literal] = ACTIONS(9516), + [sym_number_literal] = ACTIONS(9516), + [aux_sym_boolean_literal_token1] = ACTIONS(9514), + [aux_sym_boolean_literal_token2] = ACTIONS(9514), + [sym_nothing_literal] = ACTIONS(9514), + [sym_null_literal] = ACTIONS(9514), + [sym_empty_literal] = ACTIONS(9514), + [sym_date_literal] = ACTIONS(9516), + [anon_sym_POUND] = ACTIONS(9514), + }, + [STATE(4452)] = { + [sym_identifier] = ACTIONS(9518), + [sym_newline] = ACTIONS(9520), + [anon_sym_COLON] = ACTIONS(9520), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9518), + [aux_sym_frm_property_statement_token1] = ACTIONS(9518), + [anon_sym_DOT] = ACTIONS(9518), + [anon_sym_BANG] = ACTIONS(9520), + [aux_sym__attribute_identifier_token1] = ACTIONS(9518), + [aux_sym_option_statement_token3] = ACTIONS(9518), + [aux_sym_type_declaration_token1] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9518), + [aux_sym_enum_declaration_token1] = ACTIONS(9518), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9518), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9518), + [aux_sym_declare_function_statement_token1] = ACTIONS(9518), + [aux_sym_preprocessor_const_token1] = ACTIONS(9518), + [aux_sym__property_get_header_token1] = ACTIONS(9518), + [aux_sym_event_declaration_token1] = ACTIONS(9518), + [sym_static_modifier] = ACTIONS(9518), + [sym__dim_keyword] = ACTIONS(9518), + [sym__redim_keyword] = ACTIONS(9518), + [aux_sym_get_accessor_token1] = ACTIONS(9518), + [aux_sym_set_accessor_token1] = ACTIONS(9518), + [aux_sym_const_declaration_token1] = ACTIONS(9518), + [anon_sym_LPAREN] = ACTIONS(9520), + [aux_sym_as_type_clause_token2] = ACTIONS(9518), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9518), + [aux_sym_visibility_token1] = ACTIONS(9518), + [aux_sym_visibility_token2] = ACTIONS(9518), + [aux_sym_elseif_fragment_token1] = ACTIONS(9518), + [aux_sym_else_fragment_token1] = ACTIONS(9518), + [aux_sym_select_statement_token1] = ACTIONS(9518), + [aux_sym__for_header_token1] = ACTIONS(9518), + [aux_sym_do_statement_token1] = ACTIONS(9518), + [aux_sym_do_condition_token1] = ACTIONS(9518), + [aux_sym_with_statement_token1] = ACTIONS(9518), + [aux_sym_exit_statement_token1] = ACTIONS(9518), + [sym_end_statement] = ACTIONS(9520), + [aux_sym_on_goto_statement_token1] = ACTIONS(9518), + [aux_sym_on_goto_statement_token2] = ACTIONS(9518), + [aux_sym_on_error_statement_token2] = ACTIONS(9518), + [sym__ambiguous_redim_statement] = ACTIONS(9520), + [aux_sym_erase_statement_token1] = ACTIONS(9518), + [aux_sym_open_statement_token1] = ACTIONS(9518), + [aux_sym_file_mode_token2] = ACTIONS(9518), + [aux_sym_file_access_token2] = ACTIONS(9518), + [aux_sym_file_lock_token2] = ACTIONS(9518), + [aux_sym_print_statement_token1] = ACTIONS(9518), + [anon_sym_PLUS] = ACTIONS(9520), + [anon_sym_DASH] = ACTIONS(9518), + [anon_sym_QMARK] = ACTIONS(9520), + [aux_sym_close_statement_token1] = ACTIONS(9518), + [aux_sym_put_statement_token1] = ACTIONS(9518), + [aux_sym_unlock_statement_token1] = ACTIONS(9518), + [aux_sym_seek_statement_token1] = ACTIONS(9518), + [sym_reset_statement] = ACTIONS(9518), + [aux_sym_raise_event_statement_token1] = ACTIONS(9518), + [sym_stop_statement] = ACTIONS(9518), + [sym_beep_statement] = ACTIONS(9518), + [aux_sym_unload_statement_token1] = ACTIONS(9518), + [aux_sym_def_type_statement_token1] = ACTIONS(9518), + [aux_sym_def_type_statement_token2] = ACTIONS(9518), + [aux_sym_def_type_statement_token3] = ACTIONS(9518), + [aux_sym_def_type_statement_token4] = ACTIONS(9518), + [aux_sym_def_type_statement_token5] = ACTIONS(9518), + [aux_sym_def_type_statement_token6] = ACTIONS(9518), + [aux_sym_def_type_statement_token7] = ACTIONS(9518), + [aux_sym_def_type_statement_token8] = ACTIONS(9518), + [aux_sym_def_type_statement_token9] = ACTIONS(9518), + [aux_sym_def_type_statement_token10] = ACTIONS(9518), + [aux_sym_def_type_statement_token11] = ACTIONS(9518), + [aux_sym_def_type_statement_token12] = ACTIONS(9518), + [aux_sym_def_type_statement_token13] = ACTIONS(9518), + [aux_sym_def_type_statement_token14] = ACTIONS(9518), + [aux_sym_call_statement_token1] = ACTIONS(9518), + [sym__ambiguous_call_statement] = ACTIONS(9518), + [aux_sym_addressof_expression_token1] = ACTIONS(9518), + [aux_sym_type_of_expression_token1] = ACTIONS(9518), + [aux_sym_unary_expression_token1] = ACTIONS(9518), + [sym_string_literal] = ACTIONS(9520), + [sym_number_literal] = ACTIONS(9520), + [aux_sym_boolean_literal_token1] = ACTIONS(9518), + [aux_sym_boolean_literal_token2] = ACTIONS(9518), + [sym_nothing_literal] = ACTIONS(9518), + [sym_null_literal] = ACTIONS(9518), + [sym_empty_literal] = ACTIONS(9518), + [sym_date_literal] = ACTIONS(9520), + [anon_sym_POUND] = ACTIONS(9518), + }, + [STATE(4453)] = { + [sym_identifier] = ACTIONS(9292), + [sym_newline] = ACTIONS(9294), + [anon_sym_COLON] = ACTIONS(9294), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9292), + [aux_sym_frm_property_statement_token1] = ACTIONS(9292), + [anon_sym_DOT] = ACTIONS(9292), + [anon_sym_BANG] = ACTIONS(9294), + [aux_sym__attribute_identifier_token1] = ACTIONS(9292), + [aux_sym_option_statement_token3] = ACTIONS(9292), + [aux_sym_type_declaration_token1] = ACTIONS(9292), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9292), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9292), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9292), + [aux_sym_enum_declaration_token1] = ACTIONS(9292), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9292), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9292), + [aux_sym_declare_function_statement_token1] = ACTIONS(9292), + [aux_sym_preprocessor_const_token1] = ACTIONS(9292), + [aux_sym__property_get_header_token1] = ACTIONS(9292), + [aux_sym_event_declaration_token1] = ACTIONS(9292), + [sym_static_modifier] = ACTIONS(9292), + [sym__dim_keyword] = ACTIONS(9292), + [sym__redim_keyword] = ACTIONS(9292), + [aux_sym_get_accessor_token1] = ACTIONS(9292), + [aux_sym_set_accessor_token1] = ACTIONS(9292), + [aux_sym_const_declaration_token1] = ACTIONS(9292), + [anon_sym_LPAREN] = ACTIONS(9294), + [aux_sym_as_type_clause_token2] = ACTIONS(9292), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9292), + [aux_sym_visibility_token1] = ACTIONS(9292), + [aux_sym_visibility_token2] = ACTIONS(9292), + [aux_sym_elseif_fragment_token1] = ACTIONS(9292), + [aux_sym_else_fragment_token1] = ACTIONS(9292), + [aux_sym_select_statement_token1] = ACTIONS(9292), + [aux_sym__for_header_token1] = ACTIONS(9292), + [aux_sym_do_statement_token1] = ACTIONS(9292), + [aux_sym_do_condition_token1] = ACTIONS(9292), + [aux_sym_with_statement_token1] = ACTIONS(9292), + [aux_sym_exit_statement_token1] = ACTIONS(9292), + [sym_end_statement] = ACTIONS(9294), + [aux_sym_on_goto_statement_token1] = ACTIONS(9292), + [aux_sym_on_goto_statement_token2] = ACTIONS(9292), + [aux_sym_on_error_statement_token2] = ACTIONS(9292), + [sym__ambiguous_redim_statement] = ACTIONS(9294), + [aux_sym_erase_statement_token1] = ACTIONS(9292), + [aux_sym_open_statement_token1] = ACTIONS(9292), + [aux_sym_file_mode_token2] = ACTIONS(9292), + [aux_sym_file_access_token2] = ACTIONS(9292), + [aux_sym_file_lock_token2] = ACTIONS(9292), + [aux_sym_print_statement_token1] = ACTIONS(9292), + [anon_sym_PLUS] = ACTIONS(9294), + [anon_sym_DASH] = ACTIONS(9292), + [anon_sym_QMARK] = ACTIONS(9294), + [aux_sym_close_statement_token1] = ACTIONS(9292), + [aux_sym_put_statement_token1] = ACTIONS(9292), + [aux_sym_unlock_statement_token1] = ACTIONS(9292), + [aux_sym_seek_statement_token1] = ACTIONS(9292), + [sym_reset_statement] = ACTIONS(9292), + [aux_sym_raise_event_statement_token1] = ACTIONS(9292), + [sym_stop_statement] = ACTIONS(9292), + [sym_beep_statement] = ACTIONS(9292), + [aux_sym_unload_statement_token1] = ACTIONS(9292), + [aux_sym_def_type_statement_token1] = ACTIONS(9292), + [aux_sym_def_type_statement_token2] = ACTIONS(9292), + [aux_sym_def_type_statement_token3] = ACTIONS(9292), + [aux_sym_def_type_statement_token4] = ACTIONS(9292), + [aux_sym_def_type_statement_token5] = ACTIONS(9292), + [aux_sym_def_type_statement_token6] = ACTIONS(9292), + [aux_sym_def_type_statement_token7] = ACTIONS(9292), + [aux_sym_def_type_statement_token8] = ACTIONS(9292), + [aux_sym_def_type_statement_token9] = ACTIONS(9292), + [aux_sym_def_type_statement_token10] = ACTIONS(9292), + [aux_sym_def_type_statement_token11] = ACTIONS(9292), + [aux_sym_def_type_statement_token12] = ACTIONS(9292), + [aux_sym_def_type_statement_token13] = ACTIONS(9292), + [aux_sym_def_type_statement_token14] = ACTIONS(9292), + [aux_sym_call_statement_token1] = ACTIONS(9292), + [sym__ambiguous_call_statement] = ACTIONS(9292), + [aux_sym_addressof_expression_token1] = ACTIONS(9292), + [aux_sym_type_of_expression_token1] = ACTIONS(9292), + [aux_sym_unary_expression_token1] = ACTIONS(9292), + [sym_string_literal] = ACTIONS(9294), + [sym_number_literal] = ACTIONS(9294), + [aux_sym_boolean_literal_token1] = ACTIONS(9292), + [aux_sym_boolean_literal_token2] = ACTIONS(9292), + [sym_nothing_literal] = ACTIONS(9292), + [sym_null_literal] = ACTIONS(9292), + [sym_empty_literal] = ACTIONS(9292), + [sym_date_literal] = ACTIONS(9294), + [anon_sym_POUND] = ACTIONS(9292), + }, + [STATE(4454)] = { + [sym_identifier] = ACTIONS(9522), + [sym_newline] = ACTIONS(9524), + [anon_sym_COLON] = ACTIONS(9524), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9522), + [aux_sym_frm_property_statement_token1] = ACTIONS(9522), + [anon_sym_DOT] = ACTIONS(9522), + [anon_sym_BANG] = ACTIONS(9524), + [aux_sym__attribute_identifier_token1] = ACTIONS(9522), + [aux_sym_option_statement_token3] = ACTIONS(9522), + [aux_sym_type_declaration_token1] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9522), + [aux_sym_enum_declaration_token1] = ACTIONS(9522), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9522), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9522), + [aux_sym_declare_function_statement_token1] = ACTIONS(9522), + [aux_sym_preprocessor_const_token1] = ACTIONS(9522), + [aux_sym__property_get_header_token1] = ACTIONS(9522), + [aux_sym_event_declaration_token1] = ACTIONS(9522), + [sym_static_modifier] = ACTIONS(9522), + [sym__dim_keyword] = ACTIONS(9522), + [sym__redim_keyword] = ACTIONS(9522), + [aux_sym_get_accessor_token1] = ACTIONS(9522), + [aux_sym_set_accessor_token1] = ACTIONS(9522), + [aux_sym_const_declaration_token1] = ACTIONS(9522), + [anon_sym_LPAREN] = ACTIONS(9524), + [aux_sym_as_type_clause_token2] = ACTIONS(9522), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9522), + [aux_sym_visibility_token1] = ACTIONS(9522), + [aux_sym_visibility_token2] = ACTIONS(9522), + [aux_sym_elseif_fragment_token1] = ACTIONS(9522), + [aux_sym_else_fragment_token1] = ACTIONS(9522), + [aux_sym_select_statement_token1] = ACTIONS(9522), + [aux_sym__for_header_token1] = ACTIONS(9522), + [aux_sym_do_statement_token1] = ACTIONS(9522), + [aux_sym_do_condition_token1] = ACTIONS(9522), + [aux_sym_with_statement_token1] = ACTIONS(9522), + [aux_sym_exit_statement_token1] = ACTIONS(9522), + [sym_end_statement] = ACTIONS(9524), + [aux_sym_on_goto_statement_token1] = ACTIONS(9522), + [aux_sym_on_goto_statement_token2] = ACTIONS(9522), + [aux_sym_on_error_statement_token2] = ACTIONS(9522), + [sym__ambiguous_redim_statement] = ACTIONS(9524), + [aux_sym_erase_statement_token1] = ACTIONS(9522), + [aux_sym_open_statement_token1] = ACTIONS(9522), + [aux_sym_file_mode_token2] = ACTIONS(9522), + [aux_sym_file_access_token2] = ACTIONS(9522), + [aux_sym_file_lock_token2] = ACTIONS(9522), + [aux_sym_print_statement_token1] = ACTIONS(9522), + [anon_sym_PLUS] = ACTIONS(9524), + [anon_sym_DASH] = ACTIONS(9522), + [anon_sym_QMARK] = ACTIONS(9524), + [aux_sym_close_statement_token1] = ACTIONS(9522), + [aux_sym_put_statement_token1] = ACTIONS(9522), + [aux_sym_unlock_statement_token1] = ACTIONS(9522), + [aux_sym_seek_statement_token1] = ACTIONS(9522), + [sym_reset_statement] = ACTIONS(9522), + [aux_sym_raise_event_statement_token1] = ACTIONS(9522), + [sym_stop_statement] = ACTIONS(9522), + [sym_beep_statement] = ACTIONS(9522), + [aux_sym_unload_statement_token1] = ACTIONS(9522), + [aux_sym_def_type_statement_token1] = ACTIONS(9522), + [aux_sym_def_type_statement_token2] = ACTIONS(9522), + [aux_sym_def_type_statement_token3] = ACTIONS(9522), + [aux_sym_def_type_statement_token4] = ACTIONS(9522), + [aux_sym_def_type_statement_token5] = ACTIONS(9522), + [aux_sym_def_type_statement_token6] = ACTIONS(9522), + [aux_sym_def_type_statement_token7] = ACTIONS(9522), + [aux_sym_def_type_statement_token8] = ACTIONS(9522), + [aux_sym_def_type_statement_token9] = ACTIONS(9522), + [aux_sym_def_type_statement_token10] = ACTIONS(9522), + [aux_sym_def_type_statement_token11] = ACTIONS(9522), + [aux_sym_def_type_statement_token12] = ACTIONS(9522), + [aux_sym_def_type_statement_token13] = ACTIONS(9522), + [aux_sym_def_type_statement_token14] = ACTIONS(9522), + [aux_sym_call_statement_token1] = ACTIONS(9522), + [sym__ambiguous_call_statement] = ACTIONS(9522), + [aux_sym_addressof_expression_token1] = ACTIONS(9522), + [aux_sym_type_of_expression_token1] = ACTIONS(9522), + [aux_sym_unary_expression_token1] = ACTIONS(9522), + [sym_string_literal] = ACTIONS(9524), + [sym_number_literal] = ACTIONS(9524), + [aux_sym_boolean_literal_token1] = ACTIONS(9522), + [aux_sym_boolean_literal_token2] = ACTIONS(9522), + [sym_nothing_literal] = ACTIONS(9522), + [sym_null_literal] = ACTIONS(9522), + [sym_empty_literal] = ACTIONS(9522), + [sym_date_literal] = ACTIONS(9524), + [anon_sym_POUND] = ACTIONS(9522), + }, + [STATE(4455)] = { + [sym_identifier] = ACTIONS(9526), + [sym_newline] = ACTIONS(9528), + [anon_sym_COLON] = ACTIONS(9528), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9526), + [aux_sym_frm_property_statement_token1] = ACTIONS(9526), + [anon_sym_DOT] = ACTIONS(9526), + [anon_sym_BANG] = ACTIONS(9528), + [aux_sym__attribute_identifier_token1] = ACTIONS(9526), + [aux_sym_option_statement_token3] = ACTIONS(9526), + [aux_sym_type_declaration_token1] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9526), + [aux_sym_enum_declaration_token1] = ACTIONS(9526), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9526), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9526), + [aux_sym_declare_function_statement_token1] = ACTIONS(9526), + [aux_sym_preprocessor_const_token1] = ACTIONS(9526), + [aux_sym__property_get_header_token1] = ACTIONS(9526), + [aux_sym_event_declaration_token1] = ACTIONS(9526), + [sym_static_modifier] = ACTIONS(9526), + [sym__dim_keyword] = ACTIONS(9526), + [sym__redim_keyword] = ACTIONS(9526), + [aux_sym_get_accessor_token1] = ACTIONS(9526), + [aux_sym_set_accessor_token1] = ACTIONS(9526), + [aux_sym_const_declaration_token1] = ACTIONS(9526), + [anon_sym_LPAREN] = ACTIONS(9528), + [aux_sym_as_type_clause_token2] = ACTIONS(9526), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9526), + [aux_sym_visibility_token1] = ACTIONS(9526), + [aux_sym_visibility_token2] = ACTIONS(9526), + [aux_sym_elseif_fragment_token1] = ACTIONS(9526), + [aux_sym_else_fragment_token1] = ACTIONS(9526), + [aux_sym_select_statement_token1] = ACTIONS(9526), + [aux_sym__for_header_token1] = ACTIONS(9526), + [aux_sym_do_statement_token1] = ACTIONS(9526), + [aux_sym_do_condition_token1] = ACTIONS(9526), + [aux_sym_with_statement_token1] = ACTIONS(9526), + [aux_sym_exit_statement_token1] = ACTIONS(9526), + [sym_end_statement] = ACTIONS(9528), + [aux_sym_on_goto_statement_token1] = ACTIONS(9526), + [aux_sym_on_goto_statement_token2] = ACTIONS(9526), + [aux_sym_on_error_statement_token2] = ACTIONS(9526), + [sym__ambiguous_redim_statement] = ACTIONS(9528), + [aux_sym_erase_statement_token1] = ACTIONS(9526), + [aux_sym_open_statement_token1] = ACTIONS(9526), + [aux_sym_file_mode_token2] = ACTIONS(9526), + [aux_sym_file_access_token2] = ACTIONS(9526), + [aux_sym_file_lock_token2] = ACTIONS(9526), + [aux_sym_print_statement_token1] = ACTIONS(9526), + [anon_sym_PLUS] = ACTIONS(9528), + [anon_sym_DASH] = ACTIONS(9526), + [anon_sym_QMARK] = ACTIONS(9528), + [aux_sym_close_statement_token1] = ACTIONS(9526), + [aux_sym_put_statement_token1] = ACTIONS(9526), + [aux_sym_unlock_statement_token1] = ACTIONS(9526), + [aux_sym_seek_statement_token1] = ACTIONS(9526), + [sym_reset_statement] = ACTIONS(9526), + [aux_sym_raise_event_statement_token1] = ACTIONS(9526), + [sym_stop_statement] = ACTIONS(9526), + [sym_beep_statement] = ACTIONS(9526), + [aux_sym_unload_statement_token1] = ACTIONS(9526), + [aux_sym_def_type_statement_token1] = ACTIONS(9526), + [aux_sym_def_type_statement_token2] = ACTIONS(9526), + [aux_sym_def_type_statement_token3] = ACTIONS(9526), + [aux_sym_def_type_statement_token4] = ACTIONS(9526), + [aux_sym_def_type_statement_token5] = ACTIONS(9526), + [aux_sym_def_type_statement_token6] = ACTIONS(9526), + [aux_sym_def_type_statement_token7] = ACTIONS(9526), + [aux_sym_def_type_statement_token8] = ACTIONS(9526), + [aux_sym_def_type_statement_token9] = ACTIONS(9526), + [aux_sym_def_type_statement_token10] = ACTIONS(9526), + [aux_sym_def_type_statement_token11] = ACTIONS(9526), + [aux_sym_def_type_statement_token12] = ACTIONS(9526), + [aux_sym_def_type_statement_token13] = ACTIONS(9526), + [aux_sym_def_type_statement_token14] = ACTIONS(9526), + [aux_sym_call_statement_token1] = ACTIONS(9526), + [sym__ambiguous_call_statement] = ACTIONS(9526), + [aux_sym_addressof_expression_token1] = ACTIONS(9526), + [aux_sym_type_of_expression_token1] = ACTIONS(9526), + [aux_sym_unary_expression_token1] = ACTIONS(9526), + [sym_string_literal] = ACTIONS(9528), + [sym_number_literal] = ACTIONS(9528), + [aux_sym_boolean_literal_token1] = ACTIONS(9526), + [aux_sym_boolean_literal_token2] = ACTIONS(9526), + [sym_nothing_literal] = ACTIONS(9526), + [sym_null_literal] = ACTIONS(9526), + [sym_empty_literal] = ACTIONS(9526), + [sym_date_literal] = ACTIONS(9528), + [anon_sym_POUND] = ACTIONS(9526), + }, + [STATE(4456)] = { + [sym_identifier] = ACTIONS(9818), + [sym_newline] = ACTIONS(9820), + [anon_sym_COLON] = ACTIONS(9820), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9818), + [aux_sym_frm_property_statement_token1] = ACTIONS(9818), + [anon_sym_DOT] = ACTIONS(9818), + [anon_sym_BANG] = ACTIONS(9820), + [aux_sym__attribute_identifier_token1] = ACTIONS(9818), + [aux_sym_option_statement_token3] = ACTIONS(9818), + [aux_sym_type_declaration_token1] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9818), + [aux_sym_enum_declaration_token1] = ACTIONS(9818), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9818), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9818), + [aux_sym_declare_function_statement_token1] = ACTIONS(9818), + [aux_sym_preprocessor_const_token1] = ACTIONS(9818), + [aux_sym__property_get_header_token1] = ACTIONS(9818), + [aux_sym_event_declaration_token1] = ACTIONS(9818), + [sym_static_modifier] = ACTIONS(9818), + [sym__dim_keyword] = ACTIONS(9818), + [sym__redim_keyword] = ACTIONS(9818), + [aux_sym_get_accessor_token1] = ACTIONS(9818), + [aux_sym_set_accessor_token1] = ACTIONS(9818), + [aux_sym_const_declaration_token1] = ACTIONS(9818), + [anon_sym_LPAREN] = ACTIONS(9820), + [aux_sym_as_type_clause_token2] = ACTIONS(9818), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9818), + [aux_sym_visibility_token1] = ACTIONS(9818), + [aux_sym_visibility_token2] = ACTIONS(9818), + [aux_sym_elseif_fragment_token1] = ACTIONS(9818), + [aux_sym_else_fragment_token1] = ACTIONS(9818), + [aux_sym_select_statement_token1] = ACTIONS(9818), + [aux_sym__for_header_token1] = ACTIONS(9818), + [aux_sym_do_statement_token1] = ACTIONS(9818), + [aux_sym_do_condition_token1] = ACTIONS(9818), + [aux_sym_with_statement_token1] = ACTIONS(9818), + [aux_sym_exit_statement_token1] = ACTIONS(9818), + [sym_end_statement] = ACTIONS(9820), + [aux_sym_on_goto_statement_token1] = ACTIONS(9818), + [aux_sym_on_goto_statement_token2] = ACTIONS(9818), + [aux_sym_on_error_statement_token2] = ACTIONS(9818), + [sym__ambiguous_redim_statement] = ACTIONS(9820), + [aux_sym_erase_statement_token1] = ACTIONS(9818), + [aux_sym_open_statement_token1] = ACTIONS(9818), + [aux_sym_file_mode_token2] = ACTIONS(9818), + [aux_sym_file_access_token2] = ACTIONS(9818), + [aux_sym_file_lock_token2] = ACTIONS(9818), + [aux_sym_print_statement_token1] = ACTIONS(9818), + [anon_sym_PLUS] = ACTIONS(9820), + [anon_sym_DASH] = ACTIONS(9818), + [anon_sym_QMARK] = ACTIONS(9820), + [aux_sym_close_statement_token1] = ACTIONS(9818), + [aux_sym_put_statement_token1] = ACTIONS(9818), + [aux_sym_unlock_statement_token1] = ACTIONS(9818), + [aux_sym_seek_statement_token1] = ACTIONS(9818), + [sym_reset_statement] = ACTIONS(9818), + [aux_sym_raise_event_statement_token1] = ACTIONS(9818), + [sym_stop_statement] = ACTIONS(9818), + [sym_beep_statement] = ACTIONS(9818), + [aux_sym_unload_statement_token1] = ACTIONS(9818), + [aux_sym_def_type_statement_token1] = ACTIONS(9818), + [aux_sym_def_type_statement_token2] = ACTIONS(9818), + [aux_sym_def_type_statement_token3] = ACTIONS(9818), + [aux_sym_def_type_statement_token4] = ACTIONS(9818), + [aux_sym_def_type_statement_token5] = ACTIONS(9818), + [aux_sym_def_type_statement_token6] = ACTIONS(9818), + [aux_sym_def_type_statement_token7] = ACTIONS(9818), + [aux_sym_def_type_statement_token8] = ACTIONS(9818), + [aux_sym_def_type_statement_token9] = ACTIONS(9818), + [aux_sym_def_type_statement_token10] = ACTIONS(9818), + [aux_sym_def_type_statement_token11] = ACTIONS(9818), + [aux_sym_def_type_statement_token12] = ACTIONS(9818), + [aux_sym_def_type_statement_token13] = ACTIONS(9818), + [aux_sym_def_type_statement_token14] = ACTIONS(9818), + [aux_sym_call_statement_token1] = ACTIONS(9818), + [sym__ambiguous_call_statement] = ACTIONS(9818), + [aux_sym_addressof_expression_token1] = ACTIONS(9818), + [aux_sym_type_of_expression_token1] = ACTIONS(9818), + [aux_sym_unary_expression_token1] = ACTIONS(9818), + [sym_string_literal] = ACTIONS(9820), + [sym_number_literal] = ACTIONS(9820), + [aux_sym_boolean_literal_token1] = ACTIONS(9818), + [aux_sym_boolean_literal_token2] = ACTIONS(9818), + [sym_nothing_literal] = ACTIONS(9818), + [sym_null_literal] = ACTIONS(9818), + [sym_empty_literal] = ACTIONS(9818), + [sym_date_literal] = ACTIONS(9820), + [anon_sym_POUND] = ACTIONS(9818), + }, + [STATE(4457)] = { + [sym_identifier] = ACTIONS(9532), + [sym_newline] = ACTIONS(9534), + [anon_sym_COLON] = ACTIONS(9534), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9532), + [aux_sym_frm_property_statement_token1] = ACTIONS(9532), + [anon_sym_DOT] = ACTIONS(9532), + [anon_sym_BANG] = ACTIONS(9534), + [aux_sym__attribute_identifier_token1] = ACTIONS(9532), + [aux_sym_option_statement_token3] = ACTIONS(9532), + [aux_sym_type_declaration_token1] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9532), + [aux_sym_enum_declaration_token1] = ACTIONS(9532), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9532), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9532), + [aux_sym_declare_function_statement_token1] = ACTIONS(9532), + [aux_sym_preprocessor_const_token1] = ACTIONS(9532), + [aux_sym__property_get_header_token1] = ACTIONS(9532), + [aux_sym_event_declaration_token1] = ACTIONS(9532), + [sym_static_modifier] = ACTIONS(9532), + [sym__dim_keyword] = ACTIONS(9532), + [sym__redim_keyword] = ACTIONS(9532), + [aux_sym_get_accessor_token1] = ACTIONS(9532), + [aux_sym_set_accessor_token1] = ACTIONS(9532), + [aux_sym_const_declaration_token1] = ACTIONS(9532), + [anon_sym_LPAREN] = ACTIONS(9534), + [aux_sym_as_type_clause_token2] = ACTIONS(9532), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9532), + [aux_sym_visibility_token1] = ACTIONS(9532), + [aux_sym_visibility_token2] = ACTIONS(9532), + [aux_sym_elseif_fragment_token1] = ACTIONS(9532), + [aux_sym_else_fragment_token1] = ACTIONS(9532), + [aux_sym_select_statement_token1] = ACTIONS(9532), + [aux_sym__for_header_token1] = ACTIONS(9532), + [aux_sym_do_statement_token1] = ACTIONS(9532), + [aux_sym_do_condition_token1] = ACTIONS(9532), + [aux_sym_with_statement_token1] = ACTIONS(9532), + [aux_sym_exit_statement_token1] = ACTIONS(9532), + [sym_end_statement] = ACTIONS(9534), + [aux_sym_on_goto_statement_token1] = ACTIONS(9532), + [aux_sym_on_goto_statement_token2] = ACTIONS(9532), + [aux_sym_on_error_statement_token2] = ACTIONS(9532), + [sym__ambiguous_redim_statement] = ACTIONS(9534), + [aux_sym_erase_statement_token1] = ACTIONS(9532), + [aux_sym_open_statement_token1] = ACTIONS(9532), + [aux_sym_file_mode_token2] = ACTIONS(9532), + [aux_sym_file_access_token2] = ACTIONS(9532), + [aux_sym_file_lock_token2] = ACTIONS(9532), + [aux_sym_print_statement_token1] = ACTIONS(9532), + [anon_sym_PLUS] = ACTIONS(9534), + [anon_sym_DASH] = ACTIONS(9532), + [anon_sym_QMARK] = ACTIONS(9534), + [aux_sym_close_statement_token1] = ACTIONS(9532), + [aux_sym_put_statement_token1] = ACTIONS(9532), + [aux_sym_unlock_statement_token1] = ACTIONS(9532), + [aux_sym_seek_statement_token1] = ACTIONS(9532), + [sym_reset_statement] = ACTIONS(9532), + [aux_sym_raise_event_statement_token1] = ACTIONS(9532), + [sym_stop_statement] = ACTIONS(9532), + [sym_beep_statement] = ACTIONS(9532), + [aux_sym_unload_statement_token1] = ACTIONS(9532), + [aux_sym_def_type_statement_token1] = ACTIONS(9532), + [aux_sym_def_type_statement_token2] = ACTIONS(9532), + [aux_sym_def_type_statement_token3] = ACTIONS(9532), + [aux_sym_def_type_statement_token4] = ACTIONS(9532), + [aux_sym_def_type_statement_token5] = ACTIONS(9532), + [aux_sym_def_type_statement_token6] = ACTIONS(9532), + [aux_sym_def_type_statement_token7] = ACTIONS(9532), + [aux_sym_def_type_statement_token8] = ACTIONS(9532), + [aux_sym_def_type_statement_token9] = ACTIONS(9532), + [aux_sym_def_type_statement_token10] = ACTIONS(9532), + [aux_sym_def_type_statement_token11] = ACTIONS(9532), + [aux_sym_def_type_statement_token12] = ACTIONS(9532), + [aux_sym_def_type_statement_token13] = ACTIONS(9532), + [aux_sym_def_type_statement_token14] = ACTIONS(9532), + [aux_sym_call_statement_token1] = ACTIONS(9532), + [sym__ambiguous_call_statement] = ACTIONS(9532), + [aux_sym_addressof_expression_token1] = ACTIONS(9532), + [aux_sym_type_of_expression_token1] = ACTIONS(9532), + [aux_sym_unary_expression_token1] = ACTIONS(9532), + [sym_string_literal] = ACTIONS(9534), + [sym_number_literal] = ACTIONS(9534), + [aux_sym_boolean_literal_token1] = ACTIONS(9532), + [aux_sym_boolean_literal_token2] = ACTIONS(9532), + [sym_nothing_literal] = ACTIONS(9532), + [sym_null_literal] = ACTIONS(9532), + [sym_empty_literal] = ACTIONS(9532), + [sym_date_literal] = ACTIONS(9534), + [anon_sym_POUND] = ACTIONS(9532), + }, + [STATE(4458)] = { + [sym_identifier] = ACTIONS(9536), + [sym_newline] = ACTIONS(9538), + [anon_sym_COLON] = ACTIONS(9538), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9536), + [aux_sym_frm_property_statement_token1] = ACTIONS(9536), + [anon_sym_DOT] = ACTIONS(9536), + [anon_sym_BANG] = ACTIONS(9538), + [aux_sym__attribute_identifier_token1] = ACTIONS(9536), + [aux_sym_option_statement_token3] = ACTIONS(9536), + [aux_sym_type_declaration_token1] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9536), + [aux_sym_enum_declaration_token1] = ACTIONS(9536), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9536), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9536), + [aux_sym_declare_function_statement_token1] = ACTIONS(9536), + [aux_sym_preprocessor_const_token1] = ACTIONS(9536), + [aux_sym__property_get_header_token1] = ACTIONS(9536), + [aux_sym_event_declaration_token1] = ACTIONS(9536), + [sym_static_modifier] = ACTIONS(9536), + [sym__dim_keyword] = ACTIONS(9536), + [sym__redim_keyword] = ACTIONS(9536), + [aux_sym_get_accessor_token1] = ACTIONS(9536), + [aux_sym_set_accessor_token1] = ACTIONS(9536), + [aux_sym_const_declaration_token1] = ACTIONS(9536), + [anon_sym_LPAREN] = ACTIONS(9538), + [aux_sym_as_type_clause_token2] = ACTIONS(9536), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9536), + [aux_sym_visibility_token1] = ACTIONS(9536), + [aux_sym_visibility_token2] = ACTIONS(9536), + [aux_sym_elseif_fragment_token1] = ACTIONS(9536), + [aux_sym_else_fragment_token1] = ACTIONS(9536), + [aux_sym_select_statement_token1] = ACTIONS(9536), + [aux_sym__for_header_token1] = ACTIONS(9536), + [aux_sym_do_statement_token1] = ACTIONS(9536), + [aux_sym_do_condition_token1] = ACTIONS(9536), + [aux_sym_with_statement_token1] = ACTIONS(9536), + [aux_sym_exit_statement_token1] = ACTIONS(9536), + [sym_end_statement] = ACTIONS(9538), + [aux_sym_on_goto_statement_token1] = ACTIONS(9536), + [aux_sym_on_goto_statement_token2] = ACTIONS(9536), + [aux_sym_on_error_statement_token2] = ACTIONS(9536), + [sym__ambiguous_redim_statement] = ACTIONS(9538), + [aux_sym_erase_statement_token1] = ACTIONS(9536), + [aux_sym_open_statement_token1] = ACTIONS(9536), + [aux_sym_file_mode_token2] = ACTIONS(9536), + [aux_sym_file_access_token2] = ACTIONS(9536), + [aux_sym_file_lock_token2] = ACTIONS(9536), + [aux_sym_print_statement_token1] = ACTIONS(9536), + [anon_sym_PLUS] = ACTIONS(9538), + [anon_sym_DASH] = ACTIONS(9536), + [anon_sym_QMARK] = ACTIONS(9538), + [aux_sym_close_statement_token1] = ACTIONS(9536), + [aux_sym_put_statement_token1] = ACTIONS(9536), + [aux_sym_unlock_statement_token1] = ACTIONS(9536), + [aux_sym_seek_statement_token1] = ACTIONS(9536), + [sym_reset_statement] = ACTIONS(9536), + [aux_sym_raise_event_statement_token1] = ACTIONS(9536), + [sym_stop_statement] = ACTIONS(9536), + [sym_beep_statement] = ACTIONS(9536), + [aux_sym_unload_statement_token1] = ACTIONS(9536), + [aux_sym_def_type_statement_token1] = ACTIONS(9536), + [aux_sym_def_type_statement_token2] = ACTIONS(9536), + [aux_sym_def_type_statement_token3] = ACTIONS(9536), + [aux_sym_def_type_statement_token4] = ACTIONS(9536), + [aux_sym_def_type_statement_token5] = ACTIONS(9536), + [aux_sym_def_type_statement_token6] = ACTIONS(9536), + [aux_sym_def_type_statement_token7] = ACTIONS(9536), + [aux_sym_def_type_statement_token8] = ACTIONS(9536), + [aux_sym_def_type_statement_token9] = ACTIONS(9536), + [aux_sym_def_type_statement_token10] = ACTIONS(9536), + [aux_sym_def_type_statement_token11] = ACTIONS(9536), + [aux_sym_def_type_statement_token12] = ACTIONS(9536), + [aux_sym_def_type_statement_token13] = ACTIONS(9536), + [aux_sym_def_type_statement_token14] = ACTIONS(9536), + [aux_sym_call_statement_token1] = ACTIONS(9536), + [sym__ambiguous_call_statement] = ACTIONS(9536), + [aux_sym_addressof_expression_token1] = ACTIONS(9536), + [aux_sym_type_of_expression_token1] = ACTIONS(9536), + [aux_sym_unary_expression_token1] = ACTIONS(9536), + [sym_string_literal] = ACTIONS(9538), + [sym_number_literal] = ACTIONS(9538), + [aux_sym_boolean_literal_token1] = ACTIONS(9536), + [aux_sym_boolean_literal_token2] = ACTIONS(9536), + [sym_nothing_literal] = ACTIONS(9536), + [sym_null_literal] = ACTIONS(9536), + [sym_empty_literal] = ACTIONS(9536), + [sym_date_literal] = ACTIONS(9538), + [anon_sym_POUND] = ACTIONS(9536), + }, + [STATE(4459)] = { + [sym_identifier] = ACTIONS(9542), + [sym_newline] = ACTIONS(9544), + [anon_sym_COLON] = ACTIONS(9544), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9542), + [aux_sym_frm_property_statement_token1] = ACTIONS(9542), + [anon_sym_DOT] = ACTIONS(9542), + [anon_sym_BANG] = ACTIONS(9544), + [aux_sym__attribute_identifier_token1] = ACTIONS(9542), + [aux_sym_option_statement_token3] = ACTIONS(9542), + [aux_sym_type_declaration_token1] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9542), + [aux_sym_enum_declaration_token1] = ACTIONS(9542), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9542), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9542), + [aux_sym_declare_function_statement_token1] = ACTIONS(9542), + [aux_sym_preprocessor_const_token1] = ACTIONS(9542), + [aux_sym__property_get_header_token1] = ACTIONS(9542), + [aux_sym_event_declaration_token1] = ACTIONS(9542), + [sym_static_modifier] = ACTIONS(9542), + [sym__dim_keyword] = ACTIONS(9542), + [sym__redim_keyword] = ACTIONS(9542), + [aux_sym_get_accessor_token1] = ACTIONS(9542), + [aux_sym_set_accessor_token1] = ACTIONS(9542), + [aux_sym_const_declaration_token1] = ACTIONS(9542), + [anon_sym_LPAREN] = ACTIONS(9544), + [aux_sym_as_type_clause_token2] = ACTIONS(9542), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9542), + [aux_sym_visibility_token1] = ACTIONS(9542), + [aux_sym_visibility_token2] = ACTIONS(9542), + [aux_sym_elseif_fragment_token1] = ACTIONS(9542), + [aux_sym_else_fragment_token1] = ACTIONS(9542), + [aux_sym_select_statement_token1] = ACTIONS(9542), + [aux_sym__for_header_token1] = ACTIONS(9542), + [aux_sym_do_statement_token1] = ACTIONS(9542), + [aux_sym_do_condition_token1] = ACTIONS(9542), + [aux_sym_with_statement_token1] = ACTIONS(9542), + [aux_sym_exit_statement_token1] = ACTIONS(9542), + [sym_end_statement] = ACTIONS(9544), + [aux_sym_on_goto_statement_token1] = ACTIONS(9542), + [aux_sym_on_goto_statement_token2] = ACTIONS(9542), + [aux_sym_on_error_statement_token2] = ACTIONS(9542), + [sym__ambiguous_redim_statement] = ACTIONS(9544), + [aux_sym_erase_statement_token1] = ACTIONS(9542), + [aux_sym_open_statement_token1] = ACTIONS(9542), + [aux_sym_file_mode_token2] = ACTIONS(9542), + [aux_sym_file_access_token2] = ACTIONS(9542), + [aux_sym_file_lock_token2] = ACTIONS(9542), + [aux_sym_print_statement_token1] = ACTIONS(9542), + [anon_sym_PLUS] = ACTIONS(9544), + [anon_sym_DASH] = ACTIONS(9542), + [anon_sym_QMARK] = ACTIONS(9544), + [aux_sym_close_statement_token1] = ACTIONS(9542), + [aux_sym_put_statement_token1] = ACTIONS(9542), + [aux_sym_unlock_statement_token1] = ACTIONS(9542), + [aux_sym_seek_statement_token1] = ACTIONS(9542), + [sym_reset_statement] = ACTIONS(9542), + [aux_sym_raise_event_statement_token1] = ACTIONS(9542), + [sym_stop_statement] = ACTIONS(9542), + [sym_beep_statement] = ACTIONS(9542), + [aux_sym_unload_statement_token1] = ACTIONS(9542), + [aux_sym_def_type_statement_token1] = ACTIONS(9542), + [aux_sym_def_type_statement_token2] = ACTIONS(9542), + [aux_sym_def_type_statement_token3] = ACTIONS(9542), + [aux_sym_def_type_statement_token4] = ACTIONS(9542), + [aux_sym_def_type_statement_token5] = ACTIONS(9542), + [aux_sym_def_type_statement_token6] = ACTIONS(9542), + [aux_sym_def_type_statement_token7] = ACTIONS(9542), + [aux_sym_def_type_statement_token8] = ACTIONS(9542), + [aux_sym_def_type_statement_token9] = ACTIONS(9542), + [aux_sym_def_type_statement_token10] = ACTIONS(9542), + [aux_sym_def_type_statement_token11] = ACTIONS(9542), + [aux_sym_def_type_statement_token12] = ACTIONS(9542), + [aux_sym_def_type_statement_token13] = ACTIONS(9542), + [aux_sym_def_type_statement_token14] = ACTIONS(9542), + [aux_sym_call_statement_token1] = ACTIONS(9542), + [sym__ambiguous_call_statement] = ACTIONS(9542), + [aux_sym_addressof_expression_token1] = ACTIONS(9542), + [aux_sym_type_of_expression_token1] = ACTIONS(9542), + [aux_sym_unary_expression_token1] = ACTIONS(9542), + [sym_string_literal] = ACTIONS(9544), + [sym_number_literal] = ACTIONS(9544), + [aux_sym_boolean_literal_token1] = ACTIONS(9542), + [aux_sym_boolean_literal_token2] = ACTIONS(9542), + [sym_nothing_literal] = ACTIONS(9542), + [sym_null_literal] = ACTIONS(9542), + [sym_empty_literal] = ACTIONS(9542), + [sym_date_literal] = ACTIONS(9544), + [anon_sym_POUND] = ACTIONS(9542), + }, + [STATE(4460)] = { + [sym_identifier] = ACTIONS(9546), + [sym_newline] = ACTIONS(9548), + [anon_sym_COLON] = ACTIONS(9548), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9546), + [aux_sym_frm_property_statement_token1] = ACTIONS(9546), + [anon_sym_DOT] = ACTIONS(9546), + [anon_sym_BANG] = ACTIONS(9548), + [aux_sym__attribute_identifier_token1] = ACTIONS(9546), + [aux_sym_option_statement_token3] = ACTIONS(9546), + [aux_sym_type_declaration_token1] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9546), + [aux_sym_enum_declaration_token1] = ACTIONS(9546), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9546), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9546), + [aux_sym_declare_function_statement_token1] = ACTIONS(9546), + [aux_sym_preprocessor_const_token1] = ACTIONS(9546), + [aux_sym__property_get_header_token1] = ACTIONS(9546), + [aux_sym_event_declaration_token1] = ACTIONS(9546), + [sym_static_modifier] = ACTIONS(9546), + [sym__dim_keyword] = ACTIONS(9546), + [sym__redim_keyword] = ACTIONS(9546), + [aux_sym_get_accessor_token1] = ACTIONS(9546), + [aux_sym_set_accessor_token1] = ACTIONS(9546), + [aux_sym_const_declaration_token1] = ACTIONS(9546), + [anon_sym_LPAREN] = ACTIONS(9548), + [aux_sym_as_type_clause_token2] = ACTIONS(9546), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9546), + [aux_sym_visibility_token1] = ACTIONS(9546), + [aux_sym_visibility_token2] = ACTIONS(9546), + [aux_sym_elseif_fragment_token1] = ACTIONS(9546), + [aux_sym_else_fragment_token1] = ACTIONS(9546), + [aux_sym_select_statement_token1] = ACTIONS(9546), + [aux_sym__for_header_token1] = ACTIONS(9546), + [aux_sym_do_statement_token1] = ACTIONS(9546), + [aux_sym_do_condition_token1] = ACTIONS(9546), + [aux_sym_with_statement_token1] = ACTIONS(9546), + [aux_sym_exit_statement_token1] = ACTIONS(9546), + [sym_end_statement] = ACTIONS(9548), + [aux_sym_on_goto_statement_token1] = ACTIONS(9546), + [aux_sym_on_goto_statement_token2] = ACTIONS(9546), + [aux_sym_on_error_statement_token2] = ACTIONS(9546), + [sym__ambiguous_redim_statement] = ACTIONS(9548), + [aux_sym_erase_statement_token1] = ACTIONS(9546), + [aux_sym_open_statement_token1] = ACTIONS(9546), + [aux_sym_file_mode_token2] = ACTIONS(9546), + [aux_sym_file_access_token2] = ACTIONS(9546), + [aux_sym_file_lock_token2] = ACTIONS(9546), + [aux_sym_print_statement_token1] = ACTIONS(9546), + [anon_sym_PLUS] = ACTIONS(9548), + [anon_sym_DASH] = ACTIONS(9546), + [anon_sym_QMARK] = ACTIONS(9548), + [aux_sym_close_statement_token1] = ACTIONS(9546), + [aux_sym_put_statement_token1] = ACTIONS(9546), + [aux_sym_unlock_statement_token1] = ACTIONS(9546), + [aux_sym_seek_statement_token1] = ACTIONS(9546), + [sym_reset_statement] = ACTIONS(9546), + [aux_sym_raise_event_statement_token1] = ACTIONS(9546), + [sym_stop_statement] = ACTIONS(9546), + [sym_beep_statement] = ACTIONS(9546), + [aux_sym_unload_statement_token1] = ACTIONS(9546), + [aux_sym_def_type_statement_token1] = ACTIONS(9546), + [aux_sym_def_type_statement_token2] = ACTIONS(9546), + [aux_sym_def_type_statement_token3] = ACTIONS(9546), + [aux_sym_def_type_statement_token4] = ACTIONS(9546), + [aux_sym_def_type_statement_token5] = ACTIONS(9546), + [aux_sym_def_type_statement_token6] = ACTIONS(9546), + [aux_sym_def_type_statement_token7] = ACTIONS(9546), + [aux_sym_def_type_statement_token8] = ACTIONS(9546), + [aux_sym_def_type_statement_token9] = ACTIONS(9546), + [aux_sym_def_type_statement_token10] = ACTIONS(9546), + [aux_sym_def_type_statement_token11] = ACTIONS(9546), + [aux_sym_def_type_statement_token12] = ACTIONS(9546), + [aux_sym_def_type_statement_token13] = ACTIONS(9546), + [aux_sym_def_type_statement_token14] = ACTIONS(9546), + [aux_sym_call_statement_token1] = ACTIONS(9546), + [sym__ambiguous_call_statement] = ACTIONS(9546), + [aux_sym_addressof_expression_token1] = ACTIONS(9546), + [aux_sym_type_of_expression_token1] = ACTIONS(9546), + [aux_sym_unary_expression_token1] = ACTIONS(9546), + [sym_string_literal] = ACTIONS(9548), + [sym_number_literal] = ACTIONS(9548), + [aux_sym_boolean_literal_token1] = ACTIONS(9546), + [aux_sym_boolean_literal_token2] = ACTIONS(9546), + [sym_nothing_literal] = ACTIONS(9546), + [sym_null_literal] = ACTIONS(9546), + [sym_empty_literal] = ACTIONS(9546), + [sym_date_literal] = ACTIONS(9548), + [anon_sym_POUND] = ACTIONS(9546), + }, + [STATE(4461)] = { + [sym_identifier] = ACTIONS(9296), + [sym_newline] = ACTIONS(9298), + [anon_sym_COLON] = ACTIONS(9298), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9296), + [aux_sym_frm_property_statement_token1] = ACTIONS(9296), + [anon_sym_DOT] = ACTIONS(9296), + [anon_sym_BANG] = ACTIONS(9298), + [aux_sym__attribute_identifier_token1] = ACTIONS(9296), + [aux_sym_option_statement_token3] = ACTIONS(9296), + [aux_sym_type_declaration_token1] = ACTIONS(9296), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9296), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9296), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9296), + [aux_sym_enum_declaration_token1] = ACTIONS(9296), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9296), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9296), + [aux_sym_declare_function_statement_token1] = ACTIONS(9296), + [aux_sym_preprocessor_const_token1] = ACTIONS(9296), + [aux_sym__property_get_header_token1] = ACTIONS(9296), + [aux_sym_event_declaration_token1] = ACTIONS(9296), + [sym_static_modifier] = ACTIONS(9296), + [sym__dim_keyword] = ACTIONS(9296), + [sym__redim_keyword] = ACTIONS(9296), + [aux_sym_get_accessor_token1] = ACTIONS(9296), + [aux_sym_set_accessor_token1] = ACTIONS(9296), + [aux_sym_const_declaration_token1] = ACTIONS(9296), + [anon_sym_LPAREN] = ACTIONS(9298), + [aux_sym_as_type_clause_token2] = ACTIONS(9296), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9296), + [aux_sym_visibility_token1] = ACTIONS(9296), + [aux_sym_visibility_token2] = ACTIONS(9296), + [aux_sym_elseif_fragment_token1] = ACTIONS(9296), + [aux_sym_else_fragment_token1] = ACTIONS(9296), + [aux_sym_select_statement_token1] = ACTIONS(9296), + [aux_sym__for_header_token1] = ACTIONS(9296), + [aux_sym_do_statement_token1] = ACTIONS(9296), + [aux_sym_do_condition_token1] = ACTIONS(9296), + [aux_sym_with_statement_token1] = ACTIONS(9296), + [aux_sym_exit_statement_token1] = ACTIONS(9296), + [sym_end_statement] = ACTIONS(9298), + [aux_sym_on_goto_statement_token1] = ACTIONS(9296), + [aux_sym_on_goto_statement_token2] = ACTIONS(9296), + [aux_sym_on_error_statement_token2] = ACTIONS(9296), + [sym__ambiguous_redim_statement] = ACTIONS(9298), + [aux_sym_erase_statement_token1] = ACTIONS(9296), + [aux_sym_open_statement_token1] = ACTIONS(9296), + [aux_sym_file_mode_token2] = ACTIONS(9296), + [aux_sym_file_access_token2] = ACTIONS(9296), + [aux_sym_file_lock_token2] = ACTIONS(9296), + [aux_sym_print_statement_token1] = ACTIONS(9296), + [anon_sym_PLUS] = ACTIONS(9298), + [anon_sym_DASH] = ACTIONS(9296), + [anon_sym_QMARK] = ACTIONS(9298), + [aux_sym_close_statement_token1] = ACTIONS(9296), + [aux_sym_put_statement_token1] = ACTIONS(9296), + [aux_sym_unlock_statement_token1] = ACTIONS(9296), + [aux_sym_seek_statement_token1] = ACTIONS(9296), + [sym_reset_statement] = ACTIONS(9296), + [aux_sym_raise_event_statement_token1] = ACTIONS(9296), + [sym_stop_statement] = ACTIONS(9296), + [sym_beep_statement] = ACTIONS(9296), + [aux_sym_unload_statement_token1] = ACTIONS(9296), + [aux_sym_def_type_statement_token1] = ACTIONS(9296), + [aux_sym_def_type_statement_token2] = ACTIONS(9296), + [aux_sym_def_type_statement_token3] = ACTIONS(9296), + [aux_sym_def_type_statement_token4] = ACTIONS(9296), + [aux_sym_def_type_statement_token5] = ACTIONS(9296), + [aux_sym_def_type_statement_token6] = ACTIONS(9296), + [aux_sym_def_type_statement_token7] = ACTIONS(9296), + [aux_sym_def_type_statement_token8] = ACTIONS(9296), + [aux_sym_def_type_statement_token9] = ACTIONS(9296), + [aux_sym_def_type_statement_token10] = ACTIONS(9296), + [aux_sym_def_type_statement_token11] = ACTIONS(9296), + [aux_sym_def_type_statement_token12] = ACTIONS(9296), + [aux_sym_def_type_statement_token13] = ACTIONS(9296), + [aux_sym_def_type_statement_token14] = ACTIONS(9296), + [aux_sym_call_statement_token1] = ACTIONS(9296), + [sym__ambiguous_call_statement] = ACTIONS(9296), + [aux_sym_addressof_expression_token1] = ACTIONS(9296), + [aux_sym_type_of_expression_token1] = ACTIONS(9296), + [aux_sym_unary_expression_token1] = ACTIONS(9296), + [sym_string_literal] = ACTIONS(9298), + [sym_number_literal] = ACTIONS(9298), + [aux_sym_boolean_literal_token1] = ACTIONS(9296), + [aux_sym_boolean_literal_token2] = ACTIONS(9296), + [sym_nothing_literal] = ACTIONS(9296), + [sym_null_literal] = ACTIONS(9296), + [sym_empty_literal] = ACTIONS(9296), + [sym_date_literal] = ACTIONS(9298), + [anon_sym_POUND] = ACTIONS(9296), + }, + [STATE(4462)] = { + [sym_identifier] = ACTIONS(9500), + [sym_newline] = ACTIONS(9502), + [anon_sym_COLON] = ACTIONS(9502), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9500), + [aux_sym_frm_property_statement_token1] = ACTIONS(9500), + [anon_sym_DOT] = ACTIONS(9500), + [anon_sym_BANG] = ACTIONS(9502), + [aux_sym__attribute_identifier_token1] = ACTIONS(9500), + [aux_sym_option_statement_token3] = ACTIONS(9500), + [aux_sym_type_declaration_token1] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9500), + [aux_sym_enum_declaration_token1] = ACTIONS(9500), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9500), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9500), + [aux_sym_declare_function_statement_token1] = ACTIONS(9500), + [aux_sym_preprocessor_const_token1] = ACTIONS(9500), + [aux_sym__property_get_header_token1] = ACTIONS(9500), + [aux_sym_event_declaration_token1] = ACTIONS(9500), + [sym_static_modifier] = ACTIONS(9500), + [sym__dim_keyword] = ACTIONS(9500), + [sym__redim_keyword] = ACTIONS(9500), + [aux_sym_get_accessor_token1] = ACTIONS(9500), + [aux_sym_set_accessor_token1] = ACTIONS(9500), + [aux_sym_const_declaration_token1] = ACTIONS(9500), + [anon_sym_LPAREN] = ACTIONS(9502), + [aux_sym_as_type_clause_token2] = ACTIONS(9500), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9500), + [aux_sym_visibility_token1] = ACTIONS(9500), + [aux_sym_visibility_token2] = ACTIONS(9500), + [aux_sym_elseif_fragment_token1] = ACTIONS(9500), + [aux_sym_else_fragment_token1] = ACTIONS(9500), + [aux_sym_select_statement_token1] = ACTIONS(9500), + [aux_sym__for_header_token1] = ACTIONS(9500), + [aux_sym_do_statement_token1] = ACTIONS(9500), + [aux_sym_do_condition_token1] = ACTIONS(9500), + [aux_sym_with_statement_token1] = ACTIONS(9500), + [aux_sym_exit_statement_token1] = ACTIONS(9500), + [sym_end_statement] = ACTIONS(9502), + [aux_sym_on_goto_statement_token1] = ACTIONS(9500), + [aux_sym_on_goto_statement_token2] = ACTIONS(9500), + [aux_sym_on_error_statement_token2] = ACTIONS(9500), + [sym__ambiguous_redim_statement] = ACTIONS(9502), + [aux_sym_erase_statement_token1] = ACTIONS(9500), + [aux_sym_open_statement_token1] = ACTIONS(9500), + [aux_sym_file_mode_token2] = ACTIONS(9500), + [aux_sym_file_access_token2] = ACTIONS(9500), + [aux_sym_file_lock_token2] = ACTIONS(9500), + [aux_sym_print_statement_token1] = ACTIONS(9500), + [anon_sym_PLUS] = ACTIONS(9502), + [anon_sym_DASH] = ACTIONS(9500), + [anon_sym_QMARK] = ACTIONS(9502), + [aux_sym_close_statement_token1] = ACTIONS(9500), + [aux_sym_put_statement_token1] = ACTIONS(9500), + [aux_sym_unlock_statement_token1] = ACTIONS(9500), + [aux_sym_seek_statement_token1] = ACTIONS(9500), + [sym_reset_statement] = ACTIONS(9500), + [aux_sym_raise_event_statement_token1] = ACTIONS(9500), + [sym_stop_statement] = ACTIONS(9500), + [sym_beep_statement] = ACTIONS(9500), + [aux_sym_unload_statement_token1] = ACTIONS(9500), + [aux_sym_def_type_statement_token1] = ACTIONS(9500), + [aux_sym_def_type_statement_token2] = ACTIONS(9500), + [aux_sym_def_type_statement_token3] = ACTIONS(9500), + [aux_sym_def_type_statement_token4] = ACTIONS(9500), + [aux_sym_def_type_statement_token5] = ACTIONS(9500), + [aux_sym_def_type_statement_token6] = ACTIONS(9500), + [aux_sym_def_type_statement_token7] = ACTIONS(9500), + [aux_sym_def_type_statement_token8] = ACTIONS(9500), + [aux_sym_def_type_statement_token9] = ACTIONS(9500), + [aux_sym_def_type_statement_token10] = ACTIONS(9500), + [aux_sym_def_type_statement_token11] = ACTIONS(9500), + [aux_sym_def_type_statement_token12] = ACTIONS(9500), + [aux_sym_def_type_statement_token13] = ACTIONS(9500), + [aux_sym_def_type_statement_token14] = ACTIONS(9500), + [aux_sym_call_statement_token1] = ACTIONS(9500), + [sym__ambiguous_call_statement] = ACTIONS(9500), + [aux_sym_addressof_expression_token1] = ACTIONS(9500), + [aux_sym_type_of_expression_token1] = ACTIONS(9500), + [aux_sym_unary_expression_token1] = ACTIONS(9500), + [sym_string_literal] = ACTIONS(9502), + [sym_number_literal] = ACTIONS(9502), + [aux_sym_boolean_literal_token1] = ACTIONS(9500), + [aux_sym_boolean_literal_token2] = ACTIONS(9500), + [sym_nothing_literal] = ACTIONS(9500), + [sym_null_literal] = ACTIONS(9500), + [sym_empty_literal] = ACTIONS(9500), + [sym_date_literal] = ACTIONS(9502), + [anon_sym_POUND] = ACTIONS(9500), + }, + [STATE(4463)] = { + [sym_identifier] = ACTIONS(9300), + [sym_newline] = ACTIONS(9302), + [anon_sym_COLON] = ACTIONS(9302), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9300), + [aux_sym_frm_property_statement_token1] = ACTIONS(9300), + [anon_sym_DOT] = ACTIONS(9300), + [anon_sym_BANG] = ACTIONS(9302), + [aux_sym__attribute_identifier_token1] = ACTIONS(9300), + [aux_sym_option_statement_token3] = ACTIONS(9300), + [aux_sym_type_declaration_token1] = ACTIONS(9300), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9300), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9300), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9300), + [aux_sym_enum_declaration_token1] = ACTIONS(9300), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9300), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9300), + [aux_sym_declare_function_statement_token1] = ACTIONS(9300), + [aux_sym_preprocessor_const_token1] = ACTIONS(9300), + [aux_sym__property_get_header_token1] = ACTIONS(9300), + [aux_sym_event_declaration_token1] = ACTIONS(9300), + [sym_static_modifier] = ACTIONS(9300), + [sym__dim_keyword] = ACTIONS(9300), + [sym__redim_keyword] = ACTIONS(9300), + [aux_sym_get_accessor_token1] = ACTIONS(9300), + [aux_sym_set_accessor_token1] = ACTIONS(9300), + [aux_sym_const_declaration_token1] = ACTIONS(9300), + [anon_sym_LPAREN] = ACTIONS(9302), + [aux_sym_as_type_clause_token2] = ACTIONS(9300), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9300), + [aux_sym_visibility_token1] = ACTIONS(9300), + [aux_sym_visibility_token2] = ACTIONS(9300), + [aux_sym_elseif_fragment_token1] = ACTIONS(9300), + [aux_sym_else_fragment_token1] = ACTIONS(9300), + [aux_sym_select_statement_token1] = ACTIONS(9300), + [aux_sym__for_header_token1] = ACTIONS(9300), + [aux_sym_do_statement_token1] = ACTIONS(9300), + [aux_sym_do_condition_token1] = ACTIONS(9300), + [aux_sym_with_statement_token1] = ACTIONS(9300), + [aux_sym_exit_statement_token1] = ACTIONS(9300), + [sym_end_statement] = ACTIONS(9302), + [aux_sym_on_goto_statement_token1] = ACTIONS(9300), + [aux_sym_on_goto_statement_token2] = ACTIONS(9300), + [aux_sym_on_error_statement_token2] = ACTIONS(9300), + [sym__ambiguous_redim_statement] = ACTIONS(9302), + [aux_sym_erase_statement_token1] = ACTIONS(9300), + [aux_sym_open_statement_token1] = ACTIONS(9300), + [aux_sym_file_mode_token2] = ACTIONS(9300), + [aux_sym_file_access_token2] = ACTIONS(9300), + [aux_sym_file_lock_token2] = ACTIONS(9300), + [aux_sym_print_statement_token1] = ACTIONS(9300), + [anon_sym_PLUS] = ACTIONS(9302), + [anon_sym_DASH] = ACTIONS(9300), + [anon_sym_QMARK] = ACTIONS(9302), + [aux_sym_close_statement_token1] = ACTIONS(9300), + [aux_sym_put_statement_token1] = ACTIONS(9300), + [aux_sym_unlock_statement_token1] = ACTIONS(9300), + [aux_sym_seek_statement_token1] = ACTIONS(9300), + [sym_reset_statement] = ACTIONS(9300), + [aux_sym_raise_event_statement_token1] = ACTIONS(9300), + [sym_stop_statement] = ACTIONS(9300), + [sym_beep_statement] = ACTIONS(9300), + [aux_sym_unload_statement_token1] = ACTIONS(9300), + [aux_sym_def_type_statement_token1] = ACTIONS(9300), + [aux_sym_def_type_statement_token2] = ACTIONS(9300), + [aux_sym_def_type_statement_token3] = ACTIONS(9300), + [aux_sym_def_type_statement_token4] = ACTIONS(9300), + [aux_sym_def_type_statement_token5] = ACTIONS(9300), + [aux_sym_def_type_statement_token6] = ACTIONS(9300), + [aux_sym_def_type_statement_token7] = ACTIONS(9300), + [aux_sym_def_type_statement_token8] = ACTIONS(9300), + [aux_sym_def_type_statement_token9] = ACTIONS(9300), + [aux_sym_def_type_statement_token10] = ACTIONS(9300), + [aux_sym_def_type_statement_token11] = ACTIONS(9300), + [aux_sym_def_type_statement_token12] = ACTIONS(9300), + [aux_sym_def_type_statement_token13] = ACTIONS(9300), + [aux_sym_def_type_statement_token14] = ACTIONS(9300), + [aux_sym_call_statement_token1] = ACTIONS(9300), + [sym__ambiguous_call_statement] = ACTIONS(9300), + [aux_sym_addressof_expression_token1] = ACTIONS(9300), + [aux_sym_type_of_expression_token1] = ACTIONS(9300), + [aux_sym_unary_expression_token1] = ACTIONS(9300), + [sym_string_literal] = ACTIONS(9302), + [sym_number_literal] = ACTIONS(9302), + [aux_sym_boolean_literal_token1] = ACTIONS(9300), + [aux_sym_boolean_literal_token2] = ACTIONS(9300), + [sym_nothing_literal] = ACTIONS(9300), + [sym_null_literal] = ACTIONS(9300), + [sym_empty_literal] = ACTIONS(9300), + [sym_date_literal] = ACTIONS(9302), + [anon_sym_POUND] = ACTIONS(9300), + }, + [STATE(4464)] = { + [sym_identifier] = ACTIONS(9467), + [sym_newline] = ACTIONS(9469), + [anon_sym_COLON] = ACTIONS(9469), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9467), + [aux_sym_frm_property_statement_token1] = ACTIONS(9467), + [anon_sym_DOT] = ACTIONS(9467), + [anon_sym_BANG] = ACTIONS(9469), + [aux_sym__attribute_identifier_token1] = ACTIONS(9467), + [aux_sym_option_statement_token3] = ACTIONS(9467), + [aux_sym_type_declaration_token1] = ACTIONS(9467), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9467), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9467), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9467), + [aux_sym_enum_declaration_token1] = ACTIONS(9467), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9467), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9467), + [aux_sym_declare_function_statement_token1] = ACTIONS(9467), + [aux_sym_preprocessor_const_token1] = ACTIONS(9467), + [aux_sym__property_get_header_token1] = ACTIONS(9467), + [aux_sym_event_declaration_token1] = ACTIONS(9467), + [sym_static_modifier] = ACTIONS(9467), + [sym__dim_keyword] = ACTIONS(9467), + [sym__redim_keyword] = ACTIONS(9467), + [aux_sym_get_accessor_token1] = ACTIONS(9467), + [aux_sym_set_accessor_token1] = ACTIONS(9467), + [aux_sym_const_declaration_token1] = ACTIONS(9467), + [anon_sym_LPAREN] = ACTIONS(9469), + [aux_sym_as_type_clause_token2] = ACTIONS(9467), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9467), + [aux_sym_visibility_token1] = ACTIONS(9467), + [aux_sym_visibility_token2] = ACTIONS(9467), + [aux_sym_elseif_fragment_token1] = ACTIONS(9467), + [aux_sym_else_fragment_token1] = ACTIONS(9467), + [aux_sym_select_statement_token1] = ACTIONS(9467), + [aux_sym__for_header_token1] = ACTIONS(9467), + [aux_sym_do_statement_token1] = ACTIONS(9467), + [aux_sym_do_condition_token1] = ACTIONS(9467), + [aux_sym_with_statement_token1] = ACTIONS(9467), + [aux_sym_exit_statement_token1] = ACTIONS(9467), + [sym_end_statement] = ACTIONS(9469), + [aux_sym_on_goto_statement_token1] = ACTIONS(9467), + [aux_sym_on_goto_statement_token2] = ACTIONS(9467), + [aux_sym_on_error_statement_token2] = ACTIONS(9467), + [sym__ambiguous_redim_statement] = ACTIONS(9469), + [aux_sym_erase_statement_token1] = ACTIONS(9467), + [aux_sym_open_statement_token1] = ACTIONS(9467), + [aux_sym_file_mode_token2] = ACTIONS(9467), + [aux_sym_file_access_token2] = ACTIONS(9467), + [aux_sym_file_lock_token2] = ACTIONS(9467), + [aux_sym_print_statement_token1] = ACTIONS(9467), + [anon_sym_PLUS] = ACTIONS(9469), + [anon_sym_DASH] = ACTIONS(9467), + [anon_sym_QMARK] = ACTIONS(9469), + [aux_sym_close_statement_token1] = ACTIONS(9467), + [aux_sym_put_statement_token1] = ACTIONS(9467), + [aux_sym_unlock_statement_token1] = ACTIONS(9467), + [aux_sym_seek_statement_token1] = ACTIONS(9467), + [sym_reset_statement] = ACTIONS(9467), + [aux_sym_raise_event_statement_token1] = ACTIONS(9467), + [sym_stop_statement] = ACTIONS(9467), + [sym_beep_statement] = ACTIONS(9467), + [aux_sym_unload_statement_token1] = ACTIONS(9467), + [aux_sym_def_type_statement_token1] = ACTIONS(9467), + [aux_sym_def_type_statement_token2] = ACTIONS(9467), + [aux_sym_def_type_statement_token3] = ACTIONS(9467), + [aux_sym_def_type_statement_token4] = ACTIONS(9467), + [aux_sym_def_type_statement_token5] = ACTIONS(9467), + [aux_sym_def_type_statement_token6] = ACTIONS(9467), + [aux_sym_def_type_statement_token7] = ACTIONS(9467), + [aux_sym_def_type_statement_token8] = ACTIONS(9467), + [aux_sym_def_type_statement_token9] = ACTIONS(9467), + [aux_sym_def_type_statement_token10] = ACTIONS(9467), + [aux_sym_def_type_statement_token11] = ACTIONS(9467), + [aux_sym_def_type_statement_token12] = ACTIONS(9467), + [aux_sym_def_type_statement_token13] = ACTIONS(9467), + [aux_sym_def_type_statement_token14] = ACTIONS(9467), + [aux_sym_call_statement_token1] = ACTIONS(9467), + [sym__ambiguous_call_statement] = ACTIONS(9467), + [aux_sym_addressof_expression_token1] = ACTIONS(9467), + [aux_sym_type_of_expression_token1] = ACTIONS(9467), + [aux_sym_unary_expression_token1] = ACTIONS(9467), + [sym_string_literal] = ACTIONS(9469), + [sym_number_literal] = ACTIONS(9469), + [aux_sym_boolean_literal_token1] = ACTIONS(9467), + [aux_sym_boolean_literal_token2] = ACTIONS(9467), + [sym_nothing_literal] = ACTIONS(9467), + [sym_null_literal] = ACTIONS(9467), + [sym_empty_literal] = ACTIONS(9467), + [sym_date_literal] = ACTIONS(9469), + [anon_sym_POUND] = ACTIONS(9467), + }, + [STATE(4465)] = { + [sym_identifier] = ACTIONS(9304), + [sym_newline] = ACTIONS(9306), + [anon_sym_COLON] = ACTIONS(9306), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9304), + [aux_sym_frm_property_statement_token1] = ACTIONS(9304), + [anon_sym_DOT] = ACTIONS(9304), + [anon_sym_BANG] = ACTIONS(9306), + [aux_sym__attribute_identifier_token1] = ACTIONS(9304), + [aux_sym_option_statement_token3] = ACTIONS(9304), + [aux_sym_type_declaration_token1] = ACTIONS(9304), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9304), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9304), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9304), + [aux_sym_enum_declaration_token1] = ACTIONS(9304), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9304), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9304), + [aux_sym_declare_function_statement_token1] = ACTIONS(9304), + [aux_sym_preprocessor_const_token1] = ACTIONS(9304), + [aux_sym__property_get_header_token1] = ACTIONS(9304), + [aux_sym_event_declaration_token1] = ACTIONS(9304), + [sym_static_modifier] = ACTIONS(9304), + [sym__dim_keyword] = ACTIONS(9304), + [sym__redim_keyword] = ACTIONS(9304), + [aux_sym_get_accessor_token1] = ACTIONS(9304), + [aux_sym_set_accessor_token1] = ACTIONS(9304), + [aux_sym_const_declaration_token1] = ACTIONS(9304), + [anon_sym_LPAREN] = ACTIONS(9306), + [aux_sym_as_type_clause_token2] = ACTIONS(9304), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9304), + [aux_sym_visibility_token1] = ACTIONS(9304), + [aux_sym_visibility_token2] = ACTIONS(9304), + [aux_sym_elseif_fragment_token1] = ACTIONS(9304), + [aux_sym_else_fragment_token1] = ACTIONS(9304), + [aux_sym_select_statement_token1] = ACTIONS(9304), + [aux_sym__for_header_token1] = ACTIONS(9304), + [aux_sym_do_statement_token1] = ACTIONS(9304), + [aux_sym_do_condition_token1] = ACTIONS(9304), + [aux_sym_with_statement_token1] = ACTIONS(9304), + [aux_sym_exit_statement_token1] = ACTIONS(9304), + [sym_end_statement] = ACTIONS(9306), + [aux_sym_on_goto_statement_token1] = ACTIONS(9304), + [aux_sym_on_goto_statement_token2] = ACTIONS(9304), + [aux_sym_on_error_statement_token2] = ACTIONS(9304), + [sym__ambiguous_redim_statement] = ACTIONS(9306), + [aux_sym_erase_statement_token1] = ACTIONS(9304), + [aux_sym_open_statement_token1] = ACTIONS(9304), + [aux_sym_file_mode_token2] = ACTIONS(9304), + [aux_sym_file_access_token2] = ACTIONS(9304), + [aux_sym_file_lock_token2] = ACTIONS(9304), + [aux_sym_print_statement_token1] = ACTIONS(9304), + [anon_sym_PLUS] = ACTIONS(9306), + [anon_sym_DASH] = ACTIONS(9304), + [anon_sym_QMARK] = ACTIONS(9306), + [aux_sym_close_statement_token1] = ACTIONS(9304), + [aux_sym_put_statement_token1] = ACTIONS(9304), + [aux_sym_unlock_statement_token1] = ACTIONS(9304), + [aux_sym_seek_statement_token1] = ACTIONS(9304), + [sym_reset_statement] = ACTIONS(9304), + [aux_sym_raise_event_statement_token1] = ACTIONS(9304), + [sym_stop_statement] = ACTIONS(9304), + [sym_beep_statement] = ACTIONS(9304), + [aux_sym_unload_statement_token1] = ACTIONS(9304), + [aux_sym_def_type_statement_token1] = ACTIONS(9304), + [aux_sym_def_type_statement_token2] = ACTIONS(9304), + [aux_sym_def_type_statement_token3] = ACTIONS(9304), + [aux_sym_def_type_statement_token4] = ACTIONS(9304), + [aux_sym_def_type_statement_token5] = ACTIONS(9304), + [aux_sym_def_type_statement_token6] = ACTIONS(9304), + [aux_sym_def_type_statement_token7] = ACTIONS(9304), + [aux_sym_def_type_statement_token8] = ACTIONS(9304), + [aux_sym_def_type_statement_token9] = ACTIONS(9304), + [aux_sym_def_type_statement_token10] = ACTIONS(9304), + [aux_sym_def_type_statement_token11] = ACTIONS(9304), + [aux_sym_def_type_statement_token12] = ACTIONS(9304), + [aux_sym_def_type_statement_token13] = ACTIONS(9304), + [aux_sym_def_type_statement_token14] = ACTIONS(9304), + [aux_sym_call_statement_token1] = ACTIONS(9304), + [sym__ambiguous_call_statement] = ACTIONS(9304), + [aux_sym_addressof_expression_token1] = ACTIONS(9304), + [aux_sym_type_of_expression_token1] = ACTIONS(9304), + [aux_sym_unary_expression_token1] = ACTIONS(9304), + [sym_string_literal] = ACTIONS(9306), + [sym_number_literal] = ACTIONS(9306), + [aux_sym_boolean_literal_token1] = ACTIONS(9304), + [aux_sym_boolean_literal_token2] = ACTIONS(9304), + [sym_nothing_literal] = ACTIONS(9304), + [sym_null_literal] = ACTIONS(9304), + [sym_empty_literal] = ACTIONS(9304), + [sym_date_literal] = ACTIONS(9306), + [anon_sym_POUND] = ACTIONS(9304), + }, + [STATE(4466)] = { + [sym_identifier] = ACTIONS(9631), + [sym_newline] = ACTIONS(9633), + [anon_sym_COLON] = ACTIONS(9633), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9631), + [aux_sym_frm_property_statement_token1] = ACTIONS(9631), + [anon_sym_DOT] = ACTIONS(9631), + [anon_sym_BANG] = ACTIONS(9633), + [aux_sym__attribute_identifier_token1] = ACTIONS(9631), + [aux_sym_option_statement_token3] = ACTIONS(9631), + [aux_sym_type_declaration_token1] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9631), + [aux_sym_enum_declaration_token1] = ACTIONS(9631), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9631), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9631), + [aux_sym_declare_function_statement_token1] = ACTIONS(9631), + [aux_sym_preprocessor_const_token1] = ACTIONS(9631), + [aux_sym__property_get_header_token1] = ACTIONS(9631), + [aux_sym_event_declaration_token1] = ACTIONS(9631), + [sym_static_modifier] = ACTIONS(9631), + [sym__dim_keyword] = ACTIONS(9631), + [sym__redim_keyword] = ACTIONS(9631), + [aux_sym_get_accessor_token1] = ACTIONS(9631), + [aux_sym_set_accessor_token1] = ACTIONS(9631), + [aux_sym_const_declaration_token1] = ACTIONS(9631), + [anon_sym_LPAREN] = ACTIONS(9633), + [aux_sym_as_type_clause_token2] = ACTIONS(9631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9631), + [aux_sym_visibility_token1] = ACTIONS(9631), + [aux_sym_visibility_token2] = ACTIONS(9631), + [aux_sym_elseif_fragment_token1] = ACTIONS(9631), + [aux_sym_else_fragment_token1] = ACTIONS(9631), + [aux_sym_select_statement_token1] = ACTIONS(9631), + [aux_sym__for_header_token1] = ACTIONS(9631), + [aux_sym_do_statement_token1] = ACTIONS(9631), + [aux_sym_do_condition_token1] = ACTIONS(9631), + [aux_sym_with_statement_token1] = ACTIONS(9631), + [aux_sym_exit_statement_token1] = ACTIONS(9631), + [sym_end_statement] = ACTIONS(9633), + [aux_sym_on_goto_statement_token1] = ACTIONS(9631), + [aux_sym_on_goto_statement_token2] = ACTIONS(9631), + [aux_sym_on_error_statement_token2] = ACTIONS(9631), + [sym__ambiguous_redim_statement] = ACTIONS(9633), + [aux_sym_erase_statement_token1] = ACTIONS(9631), + [aux_sym_open_statement_token1] = ACTIONS(9631), + [aux_sym_file_mode_token2] = ACTIONS(9631), + [aux_sym_file_access_token2] = ACTIONS(9631), + [aux_sym_file_lock_token2] = ACTIONS(9631), + [aux_sym_print_statement_token1] = ACTIONS(9631), + [anon_sym_PLUS] = ACTIONS(9633), + [anon_sym_DASH] = ACTIONS(9631), + [anon_sym_QMARK] = ACTIONS(9633), + [aux_sym_close_statement_token1] = ACTIONS(9631), + [aux_sym_put_statement_token1] = ACTIONS(9631), + [aux_sym_unlock_statement_token1] = ACTIONS(9631), + [aux_sym_seek_statement_token1] = ACTIONS(9631), + [sym_reset_statement] = ACTIONS(9631), + [aux_sym_raise_event_statement_token1] = ACTIONS(9631), + [sym_stop_statement] = ACTIONS(9631), + [sym_beep_statement] = ACTIONS(9631), + [aux_sym_unload_statement_token1] = ACTIONS(9631), + [aux_sym_def_type_statement_token1] = ACTIONS(9631), + [aux_sym_def_type_statement_token2] = ACTIONS(9631), + [aux_sym_def_type_statement_token3] = ACTIONS(9631), + [aux_sym_def_type_statement_token4] = ACTIONS(9631), + [aux_sym_def_type_statement_token5] = ACTIONS(9631), + [aux_sym_def_type_statement_token6] = ACTIONS(9631), + [aux_sym_def_type_statement_token7] = ACTIONS(9631), + [aux_sym_def_type_statement_token8] = ACTIONS(9631), + [aux_sym_def_type_statement_token9] = ACTIONS(9631), + [aux_sym_def_type_statement_token10] = ACTIONS(9631), + [aux_sym_def_type_statement_token11] = ACTIONS(9631), + [aux_sym_def_type_statement_token12] = ACTIONS(9631), + [aux_sym_def_type_statement_token13] = ACTIONS(9631), + [aux_sym_def_type_statement_token14] = ACTIONS(9631), + [aux_sym_call_statement_token1] = ACTIONS(9631), + [sym__ambiguous_call_statement] = ACTIONS(9631), + [aux_sym_addressof_expression_token1] = ACTIONS(9631), + [aux_sym_type_of_expression_token1] = ACTIONS(9631), + [aux_sym_unary_expression_token1] = ACTIONS(9631), + [sym_string_literal] = ACTIONS(9633), + [sym_number_literal] = ACTIONS(9633), + [aux_sym_boolean_literal_token1] = ACTIONS(9631), + [aux_sym_boolean_literal_token2] = ACTIONS(9631), + [sym_nothing_literal] = ACTIONS(9631), + [sym_null_literal] = ACTIONS(9631), + [sym_empty_literal] = ACTIONS(9631), + [sym_date_literal] = ACTIONS(9633), + [anon_sym_POUND] = ACTIONS(9631), + }, + [STATE(4467)] = { + [sym_identifier] = ACTIONS(8903), + [sym_newline] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8903), + [aux_sym_frm_property_statement_token1] = ACTIONS(8903), + [anon_sym_DOT] = ACTIONS(8903), + [anon_sym_BANG] = ACTIONS(8905), + [aux_sym__attribute_identifier_token1] = ACTIONS(8903), + [aux_sym_option_statement_token3] = ACTIONS(8903), + [aux_sym_type_declaration_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8903), + [aux_sym_enum_declaration_token1] = ACTIONS(8903), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8903), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8903), + [aux_sym_declare_function_statement_token1] = ACTIONS(8903), + [aux_sym_preprocessor_const_token1] = ACTIONS(8903), + [aux_sym__property_get_header_token1] = ACTIONS(8903), + [aux_sym_event_declaration_token1] = ACTIONS(8903), + [sym_static_modifier] = ACTIONS(8903), + [sym__dim_keyword] = ACTIONS(8903), + [sym__redim_keyword] = ACTIONS(8903), + [aux_sym_get_accessor_token1] = ACTIONS(8903), + [aux_sym_set_accessor_token1] = ACTIONS(8903), + [aux_sym_const_declaration_token1] = ACTIONS(8903), + [anon_sym_LPAREN] = ACTIONS(8905), + [aux_sym_as_type_clause_token2] = ACTIONS(8903), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8903), + [aux_sym_visibility_token1] = ACTIONS(8903), + [aux_sym_visibility_token2] = ACTIONS(8903), + [aux_sym_elseif_fragment_token1] = ACTIONS(8903), + [aux_sym_else_fragment_token1] = ACTIONS(8903), + [aux_sym_select_statement_token1] = ACTIONS(8903), + [aux_sym__for_header_token1] = ACTIONS(8903), + [aux_sym_do_statement_token1] = ACTIONS(8903), + [aux_sym_do_condition_token1] = ACTIONS(8903), + [aux_sym_with_statement_token1] = ACTIONS(8903), + [aux_sym_exit_statement_token1] = ACTIONS(8903), + [sym_end_statement] = ACTIONS(8905), + [aux_sym_on_goto_statement_token1] = ACTIONS(8903), + [aux_sym_on_goto_statement_token2] = ACTIONS(8903), + [aux_sym_on_error_statement_token2] = ACTIONS(8903), + [sym__ambiguous_redim_statement] = ACTIONS(8905), + [aux_sym_erase_statement_token1] = ACTIONS(8903), + [aux_sym_open_statement_token1] = ACTIONS(8903), + [aux_sym_file_mode_token2] = ACTIONS(8903), + [aux_sym_file_access_token2] = ACTIONS(8903), + [aux_sym_file_lock_token2] = ACTIONS(8903), + [aux_sym_print_statement_token1] = ACTIONS(8903), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_DASH] = ACTIONS(8903), + [anon_sym_QMARK] = ACTIONS(8905), + [aux_sym_close_statement_token1] = ACTIONS(8903), + [aux_sym_put_statement_token1] = ACTIONS(8903), + [aux_sym_unlock_statement_token1] = ACTIONS(8903), + [aux_sym_seek_statement_token1] = ACTIONS(8903), + [sym_reset_statement] = ACTIONS(8903), + [aux_sym_raise_event_statement_token1] = ACTIONS(8903), + [sym_stop_statement] = ACTIONS(8903), + [sym_beep_statement] = ACTIONS(8903), + [aux_sym_unload_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token2] = ACTIONS(8903), + [aux_sym_def_type_statement_token3] = ACTIONS(8903), + [aux_sym_def_type_statement_token4] = ACTIONS(8903), + [aux_sym_def_type_statement_token5] = ACTIONS(8903), + [aux_sym_def_type_statement_token6] = ACTIONS(8903), + [aux_sym_def_type_statement_token7] = ACTIONS(8903), + [aux_sym_def_type_statement_token8] = ACTIONS(8903), + [aux_sym_def_type_statement_token9] = ACTIONS(8903), + [aux_sym_def_type_statement_token10] = ACTIONS(8903), + [aux_sym_def_type_statement_token11] = ACTIONS(8903), + [aux_sym_def_type_statement_token12] = ACTIONS(8903), + [aux_sym_def_type_statement_token13] = ACTIONS(8903), + [aux_sym_def_type_statement_token14] = ACTIONS(8903), + [aux_sym_call_statement_token1] = ACTIONS(8903), + [sym__ambiguous_call_statement] = ACTIONS(8903), + [aux_sym_addressof_expression_token1] = ACTIONS(8903), + [aux_sym_type_of_expression_token1] = ACTIONS(8903), + [aux_sym_unary_expression_token1] = ACTIONS(8903), + [sym_string_literal] = ACTIONS(8905), + [sym_number_literal] = ACTIONS(8905), + [aux_sym_boolean_literal_token1] = ACTIONS(8903), + [aux_sym_boolean_literal_token2] = ACTIONS(8903), + [sym_nothing_literal] = ACTIONS(8903), + [sym_null_literal] = ACTIONS(8903), + [sym_empty_literal] = ACTIONS(8903), + [sym_date_literal] = ACTIONS(8905), + [anon_sym_POUND] = ACTIONS(8903), + }, + [STATE(4468)] = { + [sym_identifier] = ACTIONS(8911), + [sym_newline] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8911), + [aux_sym_frm_property_statement_token1] = ACTIONS(8911), + [anon_sym_DOT] = ACTIONS(8911), + [anon_sym_BANG] = ACTIONS(8913), + [aux_sym__attribute_identifier_token1] = ACTIONS(8911), + [aux_sym_option_statement_token3] = ACTIONS(8911), + [aux_sym_type_declaration_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8911), + [aux_sym_enum_declaration_token1] = ACTIONS(8911), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8911), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8911), + [aux_sym_declare_function_statement_token1] = ACTIONS(8911), + [aux_sym_preprocessor_const_token1] = ACTIONS(8911), + [aux_sym__property_get_header_token1] = ACTIONS(8911), + [aux_sym_event_declaration_token1] = ACTIONS(8911), + [sym_static_modifier] = ACTIONS(8911), + [sym__dim_keyword] = ACTIONS(8911), + [sym__redim_keyword] = ACTIONS(8911), + [aux_sym_get_accessor_token1] = ACTIONS(8911), + [aux_sym_set_accessor_token1] = ACTIONS(8911), + [aux_sym_const_declaration_token1] = ACTIONS(8911), + [anon_sym_LPAREN] = ACTIONS(8913), + [aux_sym_as_type_clause_token2] = ACTIONS(8911), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8911), + [aux_sym_visibility_token1] = ACTIONS(8911), + [aux_sym_visibility_token2] = ACTIONS(8911), + [aux_sym_elseif_fragment_token1] = ACTIONS(8911), + [aux_sym_else_fragment_token1] = ACTIONS(8911), + [aux_sym_select_statement_token1] = ACTIONS(8911), + [aux_sym__for_header_token1] = ACTIONS(8911), + [aux_sym_do_statement_token1] = ACTIONS(8911), + [aux_sym_do_condition_token1] = ACTIONS(8911), + [aux_sym_with_statement_token1] = ACTIONS(8911), + [aux_sym_exit_statement_token1] = ACTIONS(8911), + [sym_end_statement] = ACTIONS(8913), + [aux_sym_on_goto_statement_token1] = ACTIONS(8911), + [aux_sym_on_goto_statement_token2] = ACTIONS(8911), + [aux_sym_on_error_statement_token2] = ACTIONS(8911), + [sym__ambiguous_redim_statement] = ACTIONS(8913), + [aux_sym_erase_statement_token1] = ACTIONS(8911), + [aux_sym_open_statement_token1] = ACTIONS(8911), + [aux_sym_file_mode_token2] = ACTIONS(8911), + [aux_sym_file_access_token2] = ACTIONS(8911), + [aux_sym_file_lock_token2] = ACTIONS(8911), + [aux_sym_print_statement_token1] = ACTIONS(8911), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_DASH] = ACTIONS(8911), + [anon_sym_QMARK] = ACTIONS(8913), + [aux_sym_close_statement_token1] = ACTIONS(8911), + [aux_sym_put_statement_token1] = ACTIONS(8911), + [aux_sym_unlock_statement_token1] = ACTIONS(8911), + [aux_sym_seek_statement_token1] = ACTIONS(8911), + [sym_reset_statement] = ACTIONS(8911), + [aux_sym_raise_event_statement_token1] = ACTIONS(8911), + [sym_stop_statement] = ACTIONS(8911), + [sym_beep_statement] = ACTIONS(8911), + [aux_sym_unload_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token2] = ACTIONS(8911), + [aux_sym_def_type_statement_token3] = ACTIONS(8911), + [aux_sym_def_type_statement_token4] = ACTIONS(8911), + [aux_sym_def_type_statement_token5] = ACTIONS(8911), + [aux_sym_def_type_statement_token6] = ACTIONS(8911), + [aux_sym_def_type_statement_token7] = ACTIONS(8911), + [aux_sym_def_type_statement_token8] = ACTIONS(8911), + [aux_sym_def_type_statement_token9] = ACTIONS(8911), + [aux_sym_def_type_statement_token10] = ACTIONS(8911), + [aux_sym_def_type_statement_token11] = ACTIONS(8911), + [aux_sym_def_type_statement_token12] = ACTIONS(8911), + [aux_sym_def_type_statement_token13] = ACTIONS(8911), + [aux_sym_def_type_statement_token14] = ACTIONS(8911), + [aux_sym_call_statement_token1] = ACTIONS(8911), + [sym__ambiguous_call_statement] = ACTIONS(8911), + [aux_sym_addressof_expression_token1] = ACTIONS(8911), + [aux_sym_type_of_expression_token1] = ACTIONS(8911), + [aux_sym_unary_expression_token1] = ACTIONS(8911), + [sym_string_literal] = ACTIONS(8913), + [sym_number_literal] = ACTIONS(8913), + [aux_sym_boolean_literal_token1] = ACTIONS(8911), + [aux_sym_boolean_literal_token2] = ACTIONS(8911), + [sym_nothing_literal] = ACTIONS(8911), + [sym_null_literal] = ACTIONS(8911), + [sym_empty_literal] = ACTIONS(8911), + [sym_date_literal] = ACTIONS(8913), + [anon_sym_POUND] = ACTIONS(8911), + }, + [STATE(4469)] = { + [sym_identifier] = ACTIONS(9552), + [sym_newline] = ACTIONS(9554), + [anon_sym_COLON] = ACTIONS(9554), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9552), + [aux_sym_frm_property_statement_token1] = ACTIONS(9552), + [anon_sym_DOT] = ACTIONS(9552), + [anon_sym_BANG] = ACTIONS(9554), + [aux_sym__attribute_identifier_token1] = ACTIONS(9552), + [aux_sym_option_statement_token3] = ACTIONS(9552), + [aux_sym_type_declaration_token1] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9552), + [aux_sym_enum_declaration_token1] = ACTIONS(9552), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9552), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9552), + [aux_sym_declare_function_statement_token1] = ACTIONS(9552), + [aux_sym_preprocessor_const_token1] = ACTIONS(9552), + [aux_sym__property_get_header_token1] = ACTIONS(9552), + [aux_sym_event_declaration_token1] = ACTIONS(9552), + [sym_static_modifier] = ACTIONS(9552), + [sym__dim_keyword] = ACTIONS(9552), + [sym__redim_keyword] = ACTIONS(9552), + [aux_sym_get_accessor_token1] = ACTIONS(9552), + [aux_sym_set_accessor_token1] = ACTIONS(9552), + [aux_sym_const_declaration_token1] = ACTIONS(9552), + [anon_sym_LPAREN] = ACTIONS(9554), + [aux_sym_as_type_clause_token2] = ACTIONS(9552), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9552), + [aux_sym_visibility_token1] = ACTIONS(9552), + [aux_sym_visibility_token2] = ACTIONS(9552), + [aux_sym_elseif_fragment_token1] = ACTIONS(9552), + [aux_sym_else_fragment_token1] = ACTIONS(9552), + [aux_sym_select_statement_token1] = ACTIONS(9552), + [aux_sym__for_header_token1] = ACTIONS(9552), + [aux_sym_do_statement_token1] = ACTIONS(9552), + [aux_sym_do_condition_token1] = ACTIONS(9552), + [aux_sym_with_statement_token1] = ACTIONS(9552), + [aux_sym_exit_statement_token1] = ACTIONS(9552), + [sym_end_statement] = ACTIONS(9554), + [aux_sym_on_goto_statement_token1] = ACTIONS(9552), + [aux_sym_on_goto_statement_token2] = ACTIONS(9552), + [aux_sym_on_error_statement_token2] = ACTIONS(9552), + [sym__ambiguous_redim_statement] = ACTIONS(9554), + [aux_sym_erase_statement_token1] = ACTIONS(9552), + [aux_sym_open_statement_token1] = ACTIONS(9552), + [aux_sym_file_mode_token2] = ACTIONS(9552), + [aux_sym_file_access_token2] = ACTIONS(9552), + [aux_sym_file_lock_token2] = ACTIONS(9552), + [aux_sym_print_statement_token1] = ACTIONS(9552), + [anon_sym_PLUS] = ACTIONS(9554), + [anon_sym_DASH] = ACTIONS(9552), + [anon_sym_QMARK] = ACTIONS(9554), + [aux_sym_close_statement_token1] = ACTIONS(9552), + [aux_sym_put_statement_token1] = ACTIONS(9552), + [aux_sym_unlock_statement_token1] = ACTIONS(9552), + [aux_sym_seek_statement_token1] = ACTIONS(9552), + [sym_reset_statement] = ACTIONS(9552), + [aux_sym_raise_event_statement_token1] = ACTIONS(9552), + [sym_stop_statement] = ACTIONS(9552), + [sym_beep_statement] = ACTIONS(9552), + [aux_sym_unload_statement_token1] = ACTIONS(9552), + [aux_sym_def_type_statement_token1] = ACTIONS(9552), + [aux_sym_def_type_statement_token2] = ACTIONS(9552), + [aux_sym_def_type_statement_token3] = ACTIONS(9552), + [aux_sym_def_type_statement_token4] = ACTIONS(9552), + [aux_sym_def_type_statement_token5] = ACTIONS(9552), + [aux_sym_def_type_statement_token6] = ACTIONS(9552), + [aux_sym_def_type_statement_token7] = ACTIONS(9552), + [aux_sym_def_type_statement_token8] = ACTIONS(9552), + [aux_sym_def_type_statement_token9] = ACTIONS(9552), + [aux_sym_def_type_statement_token10] = ACTIONS(9552), + [aux_sym_def_type_statement_token11] = ACTIONS(9552), + [aux_sym_def_type_statement_token12] = ACTIONS(9552), + [aux_sym_def_type_statement_token13] = ACTIONS(9552), + [aux_sym_def_type_statement_token14] = ACTIONS(9552), + [aux_sym_call_statement_token1] = ACTIONS(9552), + [sym__ambiguous_call_statement] = ACTIONS(9552), + [aux_sym_addressof_expression_token1] = ACTIONS(9552), + [aux_sym_type_of_expression_token1] = ACTIONS(9552), + [aux_sym_unary_expression_token1] = ACTIONS(9552), + [sym_string_literal] = ACTIONS(9554), + [sym_number_literal] = ACTIONS(9554), + [aux_sym_boolean_literal_token1] = ACTIONS(9552), + [aux_sym_boolean_literal_token2] = ACTIONS(9552), + [sym_nothing_literal] = ACTIONS(9552), + [sym_null_literal] = ACTIONS(9552), + [sym_empty_literal] = ACTIONS(9552), + [sym_date_literal] = ACTIONS(9554), + [anon_sym_POUND] = ACTIONS(9552), + }, + [STATE(4470)] = { + [sym_identifier] = ACTIONS(9635), + [sym_newline] = ACTIONS(9637), + [anon_sym_COLON] = ACTIONS(9637), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9635), + [aux_sym_frm_property_statement_token1] = ACTIONS(9635), + [anon_sym_DOT] = ACTIONS(9635), + [anon_sym_BANG] = ACTIONS(9637), + [aux_sym__attribute_identifier_token1] = ACTIONS(9635), + [aux_sym_option_statement_token3] = ACTIONS(9635), + [aux_sym_type_declaration_token1] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9635), + [aux_sym_enum_declaration_token1] = ACTIONS(9635), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9635), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9635), + [aux_sym_declare_function_statement_token1] = ACTIONS(9635), + [aux_sym_preprocessor_const_token1] = ACTIONS(9635), + [aux_sym__property_get_header_token1] = ACTIONS(9635), + [aux_sym_event_declaration_token1] = ACTIONS(9635), + [sym_static_modifier] = ACTIONS(9635), + [sym__dim_keyword] = ACTIONS(9635), + [sym__redim_keyword] = ACTIONS(9635), + [aux_sym_get_accessor_token1] = ACTIONS(9635), + [aux_sym_set_accessor_token1] = ACTIONS(9635), + [aux_sym_const_declaration_token1] = ACTIONS(9635), + [anon_sym_LPAREN] = ACTIONS(9637), + [aux_sym_as_type_clause_token2] = ACTIONS(9635), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9635), + [aux_sym_visibility_token1] = ACTIONS(9635), + [aux_sym_visibility_token2] = ACTIONS(9635), + [aux_sym_elseif_fragment_token1] = ACTIONS(9635), + [aux_sym_else_fragment_token1] = ACTIONS(9635), + [aux_sym_select_statement_token1] = ACTIONS(9635), + [aux_sym__for_header_token1] = ACTIONS(9635), + [aux_sym_do_statement_token1] = ACTIONS(9635), + [aux_sym_do_condition_token1] = ACTIONS(9635), + [aux_sym_with_statement_token1] = ACTIONS(9635), + [aux_sym_exit_statement_token1] = ACTIONS(9635), + [sym_end_statement] = ACTIONS(9637), + [aux_sym_on_goto_statement_token1] = ACTIONS(9635), + [aux_sym_on_goto_statement_token2] = ACTIONS(9635), + [aux_sym_on_error_statement_token2] = ACTIONS(9635), + [sym__ambiguous_redim_statement] = ACTIONS(9637), + [aux_sym_erase_statement_token1] = ACTIONS(9635), + [aux_sym_open_statement_token1] = ACTIONS(9635), + [aux_sym_file_mode_token2] = ACTIONS(9635), + [aux_sym_file_access_token2] = ACTIONS(9635), + [aux_sym_file_lock_token2] = ACTIONS(9635), + [aux_sym_print_statement_token1] = ACTIONS(9635), + [anon_sym_PLUS] = ACTIONS(9637), + [anon_sym_DASH] = ACTIONS(9635), + [anon_sym_QMARK] = ACTIONS(9637), + [aux_sym_close_statement_token1] = ACTIONS(9635), + [aux_sym_put_statement_token1] = ACTIONS(9635), + [aux_sym_unlock_statement_token1] = ACTIONS(9635), + [aux_sym_seek_statement_token1] = ACTIONS(9635), + [sym_reset_statement] = ACTIONS(9635), + [aux_sym_raise_event_statement_token1] = ACTIONS(9635), + [sym_stop_statement] = ACTIONS(9635), + [sym_beep_statement] = ACTIONS(9635), + [aux_sym_unload_statement_token1] = ACTIONS(9635), + [aux_sym_def_type_statement_token1] = ACTIONS(9635), + [aux_sym_def_type_statement_token2] = ACTIONS(9635), + [aux_sym_def_type_statement_token3] = ACTIONS(9635), + [aux_sym_def_type_statement_token4] = ACTIONS(9635), + [aux_sym_def_type_statement_token5] = ACTIONS(9635), + [aux_sym_def_type_statement_token6] = ACTIONS(9635), + [aux_sym_def_type_statement_token7] = ACTIONS(9635), + [aux_sym_def_type_statement_token8] = ACTIONS(9635), + [aux_sym_def_type_statement_token9] = ACTIONS(9635), + [aux_sym_def_type_statement_token10] = ACTIONS(9635), + [aux_sym_def_type_statement_token11] = ACTIONS(9635), + [aux_sym_def_type_statement_token12] = ACTIONS(9635), + [aux_sym_def_type_statement_token13] = ACTIONS(9635), + [aux_sym_def_type_statement_token14] = ACTIONS(9635), + [aux_sym_call_statement_token1] = ACTIONS(9635), + [sym__ambiguous_call_statement] = ACTIONS(9635), + [aux_sym_addressof_expression_token1] = ACTIONS(9635), + [aux_sym_type_of_expression_token1] = ACTIONS(9635), + [aux_sym_unary_expression_token1] = ACTIONS(9635), + [sym_string_literal] = ACTIONS(9637), + [sym_number_literal] = ACTIONS(9637), + [aux_sym_boolean_literal_token1] = ACTIONS(9635), + [aux_sym_boolean_literal_token2] = ACTIONS(9635), + [sym_nothing_literal] = ACTIONS(9635), + [sym_null_literal] = ACTIONS(9635), + [sym_empty_literal] = ACTIONS(9635), + [sym_date_literal] = ACTIONS(9637), + [anon_sym_POUND] = ACTIONS(9635), + }, + [STATE(4471)] = { + [sym_identifier] = ACTIONS(9556), + [sym_newline] = ACTIONS(9558), + [anon_sym_COLON] = ACTIONS(9558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9556), + [aux_sym_frm_property_statement_token1] = ACTIONS(9556), + [anon_sym_DOT] = ACTIONS(9556), + [anon_sym_BANG] = ACTIONS(9558), + [aux_sym__attribute_identifier_token1] = ACTIONS(9556), + [aux_sym_option_statement_token3] = ACTIONS(9556), + [aux_sym_type_declaration_token1] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9556), + [aux_sym_enum_declaration_token1] = ACTIONS(9556), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9556), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9556), + [aux_sym_declare_function_statement_token1] = ACTIONS(9556), + [aux_sym_preprocessor_const_token1] = ACTIONS(9556), + [aux_sym__property_get_header_token1] = ACTIONS(9556), + [aux_sym_event_declaration_token1] = ACTIONS(9556), + [sym_static_modifier] = ACTIONS(9556), + [sym__dim_keyword] = ACTIONS(9556), + [sym__redim_keyword] = ACTIONS(9556), + [aux_sym_get_accessor_token1] = ACTIONS(9556), + [aux_sym_set_accessor_token1] = ACTIONS(9556), + [aux_sym_const_declaration_token1] = ACTIONS(9556), + [anon_sym_LPAREN] = ACTIONS(9558), + [aux_sym_as_type_clause_token2] = ACTIONS(9556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9556), + [aux_sym_visibility_token1] = ACTIONS(9556), + [aux_sym_visibility_token2] = ACTIONS(9556), + [aux_sym_elseif_fragment_token1] = ACTIONS(9556), + [aux_sym_else_fragment_token1] = ACTIONS(9556), + [aux_sym_select_statement_token1] = ACTIONS(9556), + [aux_sym__for_header_token1] = ACTIONS(9556), + [aux_sym_do_statement_token1] = ACTIONS(9556), + [aux_sym_do_condition_token1] = ACTIONS(9556), + [aux_sym_with_statement_token1] = ACTIONS(9556), + [aux_sym_exit_statement_token1] = ACTIONS(9556), + [sym_end_statement] = ACTIONS(9558), + [aux_sym_on_goto_statement_token1] = ACTIONS(9556), + [aux_sym_on_goto_statement_token2] = ACTIONS(9556), + [aux_sym_on_error_statement_token2] = ACTIONS(9556), + [sym__ambiguous_redim_statement] = ACTIONS(9558), + [aux_sym_erase_statement_token1] = ACTIONS(9556), + [aux_sym_open_statement_token1] = ACTIONS(9556), + [aux_sym_file_mode_token2] = ACTIONS(9556), + [aux_sym_file_access_token2] = ACTIONS(9556), + [aux_sym_file_lock_token2] = ACTIONS(9556), + [aux_sym_print_statement_token1] = ACTIONS(9556), + [anon_sym_PLUS] = ACTIONS(9558), + [anon_sym_DASH] = ACTIONS(9556), + [anon_sym_QMARK] = ACTIONS(9558), + [aux_sym_close_statement_token1] = ACTIONS(9556), + [aux_sym_put_statement_token1] = ACTIONS(9556), + [aux_sym_unlock_statement_token1] = ACTIONS(9556), + [aux_sym_seek_statement_token1] = ACTIONS(9556), + [sym_reset_statement] = ACTIONS(9556), + [aux_sym_raise_event_statement_token1] = ACTIONS(9556), + [sym_stop_statement] = ACTIONS(9556), + [sym_beep_statement] = ACTIONS(9556), + [aux_sym_unload_statement_token1] = ACTIONS(9556), + [aux_sym_def_type_statement_token1] = ACTIONS(9556), + [aux_sym_def_type_statement_token2] = ACTIONS(9556), + [aux_sym_def_type_statement_token3] = ACTIONS(9556), + [aux_sym_def_type_statement_token4] = ACTIONS(9556), + [aux_sym_def_type_statement_token5] = ACTIONS(9556), + [aux_sym_def_type_statement_token6] = ACTIONS(9556), + [aux_sym_def_type_statement_token7] = ACTIONS(9556), + [aux_sym_def_type_statement_token8] = ACTIONS(9556), + [aux_sym_def_type_statement_token9] = ACTIONS(9556), + [aux_sym_def_type_statement_token10] = ACTIONS(9556), + [aux_sym_def_type_statement_token11] = ACTIONS(9556), + [aux_sym_def_type_statement_token12] = ACTIONS(9556), + [aux_sym_def_type_statement_token13] = ACTIONS(9556), + [aux_sym_def_type_statement_token14] = ACTIONS(9556), + [aux_sym_call_statement_token1] = ACTIONS(9556), + [sym__ambiguous_call_statement] = ACTIONS(9556), + [aux_sym_addressof_expression_token1] = ACTIONS(9556), + [aux_sym_type_of_expression_token1] = ACTIONS(9556), + [aux_sym_unary_expression_token1] = ACTIONS(9556), + [sym_string_literal] = ACTIONS(9558), + [sym_number_literal] = ACTIONS(9558), + [aux_sym_boolean_literal_token1] = ACTIONS(9556), + [aux_sym_boolean_literal_token2] = ACTIONS(9556), + [sym_nothing_literal] = ACTIONS(9556), + [sym_null_literal] = ACTIONS(9556), + [sym_empty_literal] = ACTIONS(9556), + [sym_date_literal] = ACTIONS(9558), + [anon_sym_POUND] = ACTIONS(9556), + }, + [STATE(4472)] = { + [sym_identifier] = ACTIONS(9560), + [sym_newline] = ACTIONS(9562), + [anon_sym_COLON] = ACTIONS(9562), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9560), + [aux_sym_frm_property_statement_token1] = ACTIONS(9560), + [anon_sym_DOT] = ACTIONS(9560), + [anon_sym_BANG] = ACTIONS(9562), + [aux_sym__attribute_identifier_token1] = ACTIONS(9560), + [aux_sym_option_statement_token3] = ACTIONS(9560), + [aux_sym_type_declaration_token1] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9560), + [aux_sym_enum_declaration_token1] = ACTIONS(9560), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9560), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9560), + [aux_sym_declare_function_statement_token1] = ACTIONS(9560), + [aux_sym_preprocessor_const_token1] = ACTIONS(9560), + [aux_sym__property_get_header_token1] = ACTIONS(9560), + [aux_sym_event_declaration_token1] = ACTIONS(9560), + [sym_static_modifier] = ACTIONS(9560), + [sym__dim_keyword] = ACTIONS(9560), + [sym__redim_keyword] = ACTIONS(9560), + [aux_sym_get_accessor_token1] = ACTIONS(9560), + [aux_sym_set_accessor_token1] = ACTIONS(9560), + [aux_sym_const_declaration_token1] = ACTIONS(9560), + [anon_sym_LPAREN] = ACTIONS(9562), + [aux_sym_as_type_clause_token2] = ACTIONS(9560), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9560), + [aux_sym_visibility_token1] = ACTIONS(9560), + [aux_sym_visibility_token2] = ACTIONS(9560), + [aux_sym_elseif_fragment_token1] = ACTIONS(9560), + [aux_sym_else_fragment_token1] = ACTIONS(9560), + [aux_sym_select_statement_token1] = ACTIONS(9560), + [aux_sym__for_header_token1] = ACTIONS(9560), + [aux_sym_do_statement_token1] = ACTIONS(9560), + [aux_sym_do_condition_token1] = ACTIONS(9560), + [aux_sym_with_statement_token1] = ACTIONS(9560), + [aux_sym_exit_statement_token1] = ACTIONS(9560), + [sym_end_statement] = ACTIONS(9562), + [aux_sym_on_goto_statement_token1] = ACTIONS(9560), + [aux_sym_on_goto_statement_token2] = ACTIONS(9560), + [aux_sym_on_error_statement_token2] = ACTIONS(9560), + [sym__ambiguous_redim_statement] = ACTIONS(9562), + [aux_sym_erase_statement_token1] = ACTIONS(9560), + [aux_sym_open_statement_token1] = ACTIONS(9560), + [aux_sym_file_mode_token2] = ACTIONS(9560), + [aux_sym_file_access_token2] = ACTIONS(9560), + [aux_sym_file_lock_token2] = ACTIONS(9560), + [aux_sym_print_statement_token1] = ACTIONS(9560), + [anon_sym_PLUS] = ACTIONS(9562), + [anon_sym_DASH] = ACTIONS(9560), + [anon_sym_QMARK] = ACTIONS(9562), + [aux_sym_close_statement_token1] = ACTIONS(9560), + [aux_sym_put_statement_token1] = ACTIONS(9560), + [aux_sym_unlock_statement_token1] = ACTIONS(9560), + [aux_sym_seek_statement_token1] = ACTIONS(9560), + [sym_reset_statement] = ACTIONS(9560), + [aux_sym_raise_event_statement_token1] = ACTIONS(9560), + [sym_stop_statement] = ACTIONS(9560), + [sym_beep_statement] = ACTIONS(9560), + [aux_sym_unload_statement_token1] = ACTIONS(9560), + [aux_sym_def_type_statement_token1] = ACTIONS(9560), + [aux_sym_def_type_statement_token2] = ACTIONS(9560), + [aux_sym_def_type_statement_token3] = ACTIONS(9560), + [aux_sym_def_type_statement_token4] = ACTIONS(9560), + [aux_sym_def_type_statement_token5] = ACTIONS(9560), + [aux_sym_def_type_statement_token6] = ACTIONS(9560), + [aux_sym_def_type_statement_token7] = ACTIONS(9560), + [aux_sym_def_type_statement_token8] = ACTIONS(9560), + [aux_sym_def_type_statement_token9] = ACTIONS(9560), + [aux_sym_def_type_statement_token10] = ACTIONS(9560), + [aux_sym_def_type_statement_token11] = ACTIONS(9560), + [aux_sym_def_type_statement_token12] = ACTIONS(9560), + [aux_sym_def_type_statement_token13] = ACTIONS(9560), + [aux_sym_def_type_statement_token14] = ACTIONS(9560), + [aux_sym_call_statement_token1] = ACTIONS(9560), + [sym__ambiguous_call_statement] = ACTIONS(9560), + [aux_sym_addressof_expression_token1] = ACTIONS(9560), + [aux_sym_type_of_expression_token1] = ACTIONS(9560), + [aux_sym_unary_expression_token1] = ACTIONS(9560), + [sym_string_literal] = ACTIONS(9562), + [sym_number_literal] = ACTIONS(9562), + [aux_sym_boolean_literal_token1] = ACTIONS(9560), + [aux_sym_boolean_literal_token2] = ACTIONS(9560), + [sym_nothing_literal] = ACTIONS(9560), + [sym_null_literal] = ACTIONS(9560), + [sym_empty_literal] = ACTIONS(9560), + [sym_date_literal] = ACTIONS(9562), + [anon_sym_POUND] = ACTIONS(9560), + }, + [STATE(4473)] = { + [sym_identifier] = ACTIONS(9658), + [sym_newline] = ACTIONS(9660), + [anon_sym_COLON] = ACTIONS(9660), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9658), + [aux_sym_frm_property_statement_token1] = ACTIONS(9658), + [anon_sym_DOT] = ACTIONS(9658), + [anon_sym_BANG] = ACTIONS(9660), + [aux_sym__attribute_identifier_token1] = ACTIONS(9658), + [aux_sym_option_statement_token3] = ACTIONS(9658), + [aux_sym_type_declaration_token1] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9658), + [aux_sym_enum_declaration_token1] = ACTIONS(9658), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9658), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9658), + [aux_sym_declare_function_statement_token1] = ACTIONS(9658), + [aux_sym_preprocessor_const_token1] = ACTIONS(9658), + [aux_sym__property_get_header_token1] = ACTIONS(9658), + [aux_sym_event_declaration_token1] = ACTIONS(9658), + [sym_static_modifier] = ACTIONS(9658), + [sym__dim_keyword] = ACTIONS(9658), + [sym__redim_keyword] = ACTIONS(9658), + [aux_sym_get_accessor_token1] = ACTIONS(9658), + [aux_sym_set_accessor_token1] = ACTIONS(9658), + [aux_sym_const_declaration_token1] = ACTIONS(9658), + [anon_sym_LPAREN] = ACTIONS(9660), + [aux_sym_as_type_clause_token2] = ACTIONS(9658), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9658), + [aux_sym_visibility_token1] = ACTIONS(9658), + [aux_sym_visibility_token2] = ACTIONS(9658), + [aux_sym_elseif_fragment_token1] = ACTIONS(9658), + [aux_sym_else_fragment_token1] = ACTIONS(9658), + [aux_sym_select_statement_token1] = ACTIONS(9658), + [aux_sym__for_header_token1] = ACTIONS(9658), + [aux_sym_do_statement_token1] = ACTIONS(9658), + [aux_sym_do_condition_token1] = ACTIONS(9658), + [aux_sym_with_statement_token1] = ACTIONS(9658), + [aux_sym_exit_statement_token1] = ACTIONS(9658), + [sym_end_statement] = ACTIONS(9660), + [aux_sym_on_goto_statement_token1] = ACTIONS(9658), + [aux_sym_on_goto_statement_token2] = ACTIONS(9658), + [aux_sym_on_error_statement_token2] = ACTIONS(9658), + [sym__ambiguous_redim_statement] = ACTIONS(9660), + [aux_sym_erase_statement_token1] = ACTIONS(9658), + [aux_sym_open_statement_token1] = ACTIONS(9658), + [aux_sym_file_mode_token2] = ACTIONS(9658), + [aux_sym_file_access_token2] = ACTIONS(9658), + [aux_sym_file_lock_token2] = ACTIONS(9658), + [aux_sym_print_statement_token1] = ACTIONS(9658), + [anon_sym_PLUS] = ACTIONS(9660), + [anon_sym_DASH] = ACTIONS(9658), + [anon_sym_QMARK] = ACTIONS(9660), + [aux_sym_close_statement_token1] = ACTIONS(9658), + [aux_sym_put_statement_token1] = ACTIONS(9658), + [aux_sym_unlock_statement_token1] = ACTIONS(9658), + [aux_sym_seek_statement_token1] = ACTIONS(9658), + [sym_reset_statement] = ACTIONS(9658), + [aux_sym_raise_event_statement_token1] = ACTIONS(9658), + [sym_stop_statement] = ACTIONS(9658), + [sym_beep_statement] = ACTIONS(9658), + [aux_sym_unload_statement_token1] = ACTIONS(9658), + [aux_sym_def_type_statement_token1] = ACTIONS(9658), + [aux_sym_def_type_statement_token2] = ACTIONS(9658), + [aux_sym_def_type_statement_token3] = ACTIONS(9658), + [aux_sym_def_type_statement_token4] = ACTIONS(9658), + [aux_sym_def_type_statement_token5] = ACTIONS(9658), + [aux_sym_def_type_statement_token6] = ACTIONS(9658), + [aux_sym_def_type_statement_token7] = ACTIONS(9658), + [aux_sym_def_type_statement_token8] = ACTIONS(9658), + [aux_sym_def_type_statement_token9] = ACTIONS(9658), + [aux_sym_def_type_statement_token10] = ACTIONS(9658), + [aux_sym_def_type_statement_token11] = ACTIONS(9658), + [aux_sym_def_type_statement_token12] = ACTIONS(9658), + [aux_sym_def_type_statement_token13] = ACTIONS(9658), + [aux_sym_def_type_statement_token14] = ACTIONS(9658), + [aux_sym_call_statement_token1] = ACTIONS(9658), + [sym__ambiguous_call_statement] = ACTIONS(9658), + [aux_sym_addressof_expression_token1] = ACTIONS(9658), + [aux_sym_type_of_expression_token1] = ACTIONS(9658), + [aux_sym_unary_expression_token1] = ACTIONS(9658), + [sym_string_literal] = ACTIONS(9660), + [sym_number_literal] = ACTIONS(9660), + [aux_sym_boolean_literal_token1] = ACTIONS(9658), + [aux_sym_boolean_literal_token2] = ACTIONS(9658), + [sym_nothing_literal] = ACTIONS(9658), + [sym_null_literal] = ACTIONS(9658), + [sym_empty_literal] = ACTIONS(9658), + [sym_date_literal] = ACTIONS(9660), + [anon_sym_POUND] = ACTIONS(9658), + }, + [STATE(4474)] = { + [sym_identifier] = ACTIONS(9740), + [sym_newline] = ACTIONS(9742), + [anon_sym_COLON] = ACTIONS(9742), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9740), + [aux_sym_frm_property_statement_token1] = ACTIONS(9740), + [anon_sym_DOT] = ACTIONS(9740), + [anon_sym_BANG] = ACTIONS(9742), + [aux_sym__attribute_identifier_token1] = ACTIONS(9740), + [aux_sym_option_statement_token3] = ACTIONS(9740), + [aux_sym_type_declaration_token1] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9740), + [aux_sym_enum_declaration_token1] = ACTIONS(9740), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9740), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9740), + [aux_sym_declare_function_statement_token1] = ACTIONS(9740), + [aux_sym_preprocessor_const_token1] = ACTIONS(9740), + [aux_sym__property_get_header_token1] = ACTIONS(9740), + [aux_sym_event_declaration_token1] = ACTIONS(9740), + [sym_static_modifier] = ACTIONS(9740), + [sym__dim_keyword] = ACTIONS(9740), + [sym__redim_keyword] = ACTIONS(9740), + [aux_sym_get_accessor_token1] = ACTIONS(9740), + [aux_sym_set_accessor_token1] = ACTIONS(9740), + [aux_sym_const_declaration_token1] = ACTIONS(9740), + [anon_sym_LPAREN] = ACTIONS(9742), + [aux_sym_as_type_clause_token2] = ACTIONS(9740), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9740), + [aux_sym_visibility_token1] = ACTIONS(9740), + [aux_sym_visibility_token2] = ACTIONS(9740), + [aux_sym_elseif_fragment_token1] = ACTIONS(9740), + [aux_sym_else_fragment_token1] = ACTIONS(9740), + [aux_sym_select_statement_token1] = ACTIONS(9740), + [aux_sym__for_header_token1] = ACTIONS(9740), + [aux_sym_do_statement_token1] = ACTIONS(9740), + [aux_sym_do_condition_token1] = ACTIONS(9740), + [aux_sym_with_statement_token1] = ACTIONS(9740), + [aux_sym_exit_statement_token1] = ACTIONS(9740), + [sym_end_statement] = ACTIONS(9742), + [aux_sym_on_goto_statement_token1] = ACTIONS(9740), + [aux_sym_on_goto_statement_token2] = ACTIONS(9740), + [aux_sym_on_error_statement_token2] = ACTIONS(9740), + [sym__ambiguous_redim_statement] = ACTIONS(9742), + [aux_sym_erase_statement_token1] = ACTIONS(9740), + [aux_sym_open_statement_token1] = ACTIONS(9740), + [aux_sym_file_mode_token2] = ACTIONS(9740), + [aux_sym_file_access_token2] = ACTIONS(9740), + [aux_sym_file_lock_token2] = ACTIONS(9740), + [aux_sym_print_statement_token1] = ACTIONS(9740), + [anon_sym_PLUS] = ACTIONS(9742), + [anon_sym_DASH] = ACTIONS(9740), + [anon_sym_QMARK] = ACTIONS(9742), + [aux_sym_close_statement_token1] = ACTIONS(9740), + [aux_sym_put_statement_token1] = ACTIONS(9740), + [aux_sym_unlock_statement_token1] = ACTIONS(9740), + [aux_sym_seek_statement_token1] = ACTIONS(9740), + [sym_reset_statement] = ACTIONS(9740), + [aux_sym_raise_event_statement_token1] = ACTIONS(9740), + [sym_stop_statement] = ACTIONS(9740), + [sym_beep_statement] = ACTIONS(9740), + [aux_sym_unload_statement_token1] = ACTIONS(9740), + [aux_sym_def_type_statement_token1] = ACTIONS(9740), + [aux_sym_def_type_statement_token2] = ACTIONS(9740), + [aux_sym_def_type_statement_token3] = ACTIONS(9740), + [aux_sym_def_type_statement_token4] = ACTIONS(9740), + [aux_sym_def_type_statement_token5] = ACTIONS(9740), + [aux_sym_def_type_statement_token6] = ACTIONS(9740), + [aux_sym_def_type_statement_token7] = ACTIONS(9740), + [aux_sym_def_type_statement_token8] = ACTIONS(9740), + [aux_sym_def_type_statement_token9] = ACTIONS(9740), + [aux_sym_def_type_statement_token10] = ACTIONS(9740), + [aux_sym_def_type_statement_token11] = ACTIONS(9740), + [aux_sym_def_type_statement_token12] = ACTIONS(9740), + [aux_sym_def_type_statement_token13] = ACTIONS(9740), + [aux_sym_def_type_statement_token14] = ACTIONS(9740), + [aux_sym_call_statement_token1] = ACTIONS(9740), + [sym__ambiguous_call_statement] = ACTIONS(9740), + [aux_sym_addressof_expression_token1] = ACTIONS(9740), + [aux_sym_type_of_expression_token1] = ACTIONS(9740), + [aux_sym_unary_expression_token1] = ACTIONS(9740), + [sym_string_literal] = ACTIONS(9742), + [sym_number_literal] = ACTIONS(9742), + [aux_sym_boolean_literal_token1] = ACTIONS(9740), + [aux_sym_boolean_literal_token2] = ACTIONS(9740), + [sym_nothing_literal] = ACTIONS(9740), + [sym_null_literal] = ACTIONS(9740), + [sym_empty_literal] = ACTIONS(9740), + [sym_date_literal] = ACTIONS(9742), + [anon_sym_POUND] = ACTIONS(9740), + }, + [STATE(4475)] = { + [sym_identifier] = ACTIONS(9564), + [sym_newline] = ACTIONS(9566), + [anon_sym_COLON] = ACTIONS(9566), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9564), + [aux_sym_frm_property_statement_token1] = ACTIONS(9564), + [anon_sym_DOT] = ACTIONS(9564), + [anon_sym_BANG] = ACTIONS(9566), + [aux_sym__attribute_identifier_token1] = ACTIONS(9564), + [aux_sym_option_statement_token3] = ACTIONS(9564), + [aux_sym_type_declaration_token1] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9564), + [aux_sym_enum_declaration_token1] = ACTIONS(9564), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9564), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9564), + [aux_sym_declare_function_statement_token1] = ACTIONS(9564), + [aux_sym_preprocessor_const_token1] = ACTIONS(9564), + [aux_sym__property_get_header_token1] = ACTIONS(9564), + [aux_sym_event_declaration_token1] = ACTIONS(9564), + [sym_static_modifier] = ACTIONS(9564), + [sym__dim_keyword] = ACTIONS(9564), + [sym__redim_keyword] = ACTIONS(9564), + [aux_sym_get_accessor_token1] = ACTIONS(9564), + [aux_sym_set_accessor_token1] = ACTIONS(9564), + [aux_sym_const_declaration_token1] = ACTIONS(9564), + [anon_sym_LPAREN] = ACTIONS(9566), + [aux_sym_as_type_clause_token2] = ACTIONS(9564), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9564), + [aux_sym_visibility_token1] = ACTIONS(9564), + [aux_sym_visibility_token2] = ACTIONS(9564), + [aux_sym_elseif_fragment_token1] = ACTIONS(9564), + [aux_sym_else_fragment_token1] = ACTIONS(9564), + [aux_sym_select_statement_token1] = ACTIONS(9564), + [aux_sym__for_header_token1] = ACTIONS(9564), + [aux_sym_do_statement_token1] = ACTIONS(9564), + [aux_sym_do_condition_token1] = ACTIONS(9564), + [aux_sym_with_statement_token1] = ACTIONS(9564), + [aux_sym_exit_statement_token1] = ACTIONS(9564), + [sym_end_statement] = ACTIONS(9566), + [aux_sym_on_goto_statement_token1] = ACTIONS(9564), + [aux_sym_on_goto_statement_token2] = ACTIONS(9564), + [aux_sym_on_error_statement_token2] = ACTIONS(9564), + [sym__ambiguous_redim_statement] = ACTIONS(9566), + [aux_sym_erase_statement_token1] = ACTIONS(9564), + [aux_sym_open_statement_token1] = ACTIONS(9564), + [aux_sym_file_mode_token2] = ACTIONS(9564), + [aux_sym_file_access_token2] = ACTIONS(9564), + [aux_sym_file_lock_token2] = ACTIONS(9564), + [aux_sym_print_statement_token1] = ACTIONS(9564), + [anon_sym_PLUS] = ACTIONS(9566), + [anon_sym_DASH] = ACTIONS(9564), + [anon_sym_QMARK] = ACTIONS(9566), + [aux_sym_close_statement_token1] = ACTIONS(9564), + [aux_sym_put_statement_token1] = ACTIONS(9564), + [aux_sym_unlock_statement_token1] = ACTIONS(9564), + [aux_sym_seek_statement_token1] = ACTIONS(9564), + [sym_reset_statement] = ACTIONS(9564), + [aux_sym_raise_event_statement_token1] = ACTIONS(9564), + [sym_stop_statement] = ACTIONS(9564), + [sym_beep_statement] = ACTIONS(9564), + [aux_sym_unload_statement_token1] = ACTIONS(9564), + [aux_sym_def_type_statement_token1] = ACTIONS(9564), + [aux_sym_def_type_statement_token2] = ACTIONS(9564), + [aux_sym_def_type_statement_token3] = ACTIONS(9564), + [aux_sym_def_type_statement_token4] = ACTIONS(9564), + [aux_sym_def_type_statement_token5] = ACTIONS(9564), + [aux_sym_def_type_statement_token6] = ACTIONS(9564), + [aux_sym_def_type_statement_token7] = ACTIONS(9564), + [aux_sym_def_type_statement_token8] = ACTIONS(9564), + [aux_sym_def_type_statement_token9] = ACTIONS(9564), + [aux_sym_def_type_statement_token10] = ACTIONS(9564), + [aux_sym_def_type_statement_token11] = ACTIONS(9564), + [aux_sym_def_type_statement_token12] = ACTIONS(9564), + [aux_sym_def_type_statement_token13] = ACTIONS(9564), + [aux_sym_def_type_statement_token14] = ACTIONS(9564), + [aux_sym_call_statement_token1] = ACTIONS(9564), + [sym__ambiguous_call_statement] = ACTIONS(9564), + [aux_sym_addressof_expression_token1] = ACTIONS(9564), + [aux_sym_type_of_expression_token1] = ACTIONS(9564), + [aux_sym_unary_expression_token1] = ACTIONS(9564), + [sym_string_literal] = ACTIONS(9566), + [sym_number_literal] = ACTIONS(9566), + [aux_sym_boolean_literal_token1] = ACTIONS(9564), + [aux_sym_boolean_literal_token2] = ACTIONS(9564), + [sym_nothing_literal] = ACTIONS(9564), + [sym_null_literal] = ACTIONS(9564), + [sym_empty_literal] = ACTIONS(9564), + [sym_date_literal] = ACTIONS(9566), + [anon_sym_POUND] = ACTIONS(9564), + }, + [STATE(4476)] = { + [sym_identifier] = ACTIONS(9744), + [sym_newline] = ACTIONS(9746), + [anon_sym_COLON] = ACTIONS(9746), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9744), + [aux_sym_frm_property_statement_token1] = ACTIONS(9744), + [anon_sym_DOT] = ACTIONS(9744), + [anon_sym_BANG] = ACTIONS(9746), + [aux_sym__attribute_identifier_token1] = ACTIONS(9744), + [aux_sym_option_statement_token3] = ACTIONS(9744), + [aux_sym_type_declaration_token1] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9744), + [aux_sym_enum_declaration_token1] = ACTIONS(9744), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9744), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9744), + [aux_sym_declare_function_statement_token1] = ACTIONS(9744), + [aux_sym_preprocessor_const_token1] = ACTIONS(9744), + [aux_sym__property_get_header_token1] = ACTIONS(9744), + [aux_sym_event_declaration_token1] = ACTIONS(9744), + [sym_static_modifier] = ACTIONS(9744), + [sym__dim_keyword] = ACTIONS(9744), + [sym__redim_keyword] = ACTIONS(9744), + [aux_sym_get_accessor_token1] = ACTIONS(9744), + [aux_sym_set_accessor_token1] = ACTIONS(9744), + [aux_sym_const_declaration_token1] = ACTIONS(9744), + [anon_sym_LPAREN] = ACTIONS(9746), + [aux_sym_as_type_clause_token2] = ACTIONS(9744), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9744), + [aux_sym_visibility_token1] = ACTIONS(9744), + [aux_sym_visibility_token2] = ACTIONS(9744), + [aux_sym_elseif_fragment_token1] = ACTIONS(9744), + [aux_sym_else_fragment_token1] = ACTIONS(9744), + [aux_sym_select_statement_token1] = ACTIONS(9744), + [aux_sym__for_header_token1] = ACTIONS(9744), + [aux_sym_do_statement_token1] = ACTIONS(9744), + [aux_sym_do_condition_token1] = ACTIONS(9744), + [aux_sym_with_statement_token1] = ACTIONS(9744), + [aux_sym_exit_statement_token1] = ACTIONS(9744), + [sym_end_statement] = ACTIONS(9746), + [aux_sym_on_goto_statement_token1] = ACTIONS(9744), + [aux_sym_on_goto_statement_token2] = ACTIONS(9744), + [aux_sym_on_error_statement_token2] = ACTIONS(9744), + [sym__ambiguous_redim_statement] = ACTIONS(9746), + [aux_sym_erase_statement_token1] = ACTIONS(9744), + [aux_sym_open_statement_token1] = ACTIONS(9744), + [aux_sym_file_mode_token2] = ACTIONS(9744), + [aux_sym_file_access_token2] = ACTIONS(9744), + [aux_sym_file_lock_token2] = ACTIONS(9744), + [aux_sym_print_statement_token1] = ACTIONS(9744), + [anon_sym_PLUS] = ACTIONS(9746), + [anon_sym_DASH] = ACTIONS(9744), + [anon_sym_QMARK] = ACTIONS(9746), + [aux_sym_close_statement_token1] = ACTIONS(9744), + [aux_sym_put_statement_token1] = ACTIONS(9744), + [aux_sym_unlock_statement_token1] = ACTIONS(9744), + [aux_sym_seek_statement_token1] = ACTIONS(9744), + [sym_reset_statement] = ACTIONS(9744), + [aux_sym_raise_event_statement_token1] = ACTIONS(9744), + [sym_stop_statement] = ACTIONS(9744), + [sym_beep_statement] = ACTIONS(9744), + [aux_sym_unload_statement_token1] = ACTIONS(9744), + [aux_sym_def_type_statement_token1] = ACTIONS(9744), + [aux_sym_def_type_statement_token2] = ACTIONS(9744), + [aux_sym_def_type_statement_token3] = ACTIONS(9744), + [aux_sym_def_type_statement_token4] = ACTIONS(9744), + [aux_sym_def_type_statement_token5] = ACTIONS(9744), + [aux_sym_def_type_statement_token6] = ACTIONS(9744), + [aux_sym_def_type_statement_token7] = ACTIONS(9744), + [aux_sym_def_type_statement_token8] = ACTIONS(9744), + [aux_sym_def_type_statement_token9] = ACTIONS(9744), + [aux_sym_def_type_statement_token10] = ACTIONS(9744), + [aux_sym_def_type_statement_token11] = ACTIONS(9744), + [aux_sym_def_type_statement_token12] = ACTIONS(9744), + [aux_sym_def_type_statement_token13] = ACTIONS(9744), + [aux_sym_def_type_statement_token14] = ACTIONS(9744), + [aux_sym_call_statement_token1] = ACTIONS(9744), + [sym__ambiguous_call_statement] = ACTIONS(9744), + [aux_sym_addressof_expression_token1] = ACTIONS(9744), + [aux_sym_type_of_expression_token1] = ACTIONS(9744), + [aux_sym_unary_expression_token1] = ACTIONS(9744), + [sym_string_literal] = ACTIONS(9746), + [sym_number_literal] = ACTIONS(9746), + [aux_sym_boolean_literal_token1] = ACTIONS(9744), + [aux_sym_boolean_literal_token2] = ACTIONS(9744), + [sym_nothing_literal] = ACTIONS(9744), + [sym_null_literal] = ACTIONS(9744), + [sym_empty_literal] = ACTIONS(9744), + [sym_date_literal] = ACTIONS(9746), + [anon_sym_POUND] = ACTIONS(9744), + }, + [STATE(4477)] = { + [sym_identifier] = ACTIONS(9748), + [sym_newline] = ACTIONS(9750), + [anon_sym_COLON] = ACTIONS(9750), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9748), + [aux_sym_frm_property_statement_token1] = ACTIONS(9748), + [anon_sym_DOT] = ACTIONS(9748), + [anon_sym_BANG] = ACTIONS(9750), + [aux_sym__attribute_identifier_token1] = ACTIONS(9748), + [aux_sym_option_statement_token3] = ACTIONS(9748), + [aux_sym_type_declaration_token1] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9748), + [aux_sym_enum_declaration_token1] = ACTIONS(9748), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9748), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9748), + [aux_sym_declare_function_statement_token1] = ACTIONS(9748), + [aux_sym_preprocessor_const_token1] = ACTIONS(9748), + [aux_sym__property_get_header_token1] = ACTIONS(9748), + [aux_sym_event_declaration_token1] = ACTIONS(9748), + [sym_static_modifier] = ACTIONS(9748), + [sym__dim_keyword] = ACTIONS(9748), + [sym__redim_keyword] = ACTIONS(9748), + [aux_sym_get_accessor_token1] = ACTIONS(9748), + [aux_sym_set_accessor_token1] = ACTIONS(9748), + [aux_sym_const_declaration_token1] = ACTIONS(9748), + [anon_sym_LPAREN] = ACTIONS(9750), + [aux_sym_as_type_clause_token2] = ACTIONS(9748), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9748), + [aux_sym_visibility_token1] = ACTIONS(9748), + [aux_sym_visibility_token2] = ACTIONS(9748), + [aux_sym_elseif_fragment_token1] = ACTIONS(9748), + [aux_sym_else_fragment_token1] = ACTIONS(9748), + [aux_sym_select_statement_token1] = ACTIONS(9748), + [aux_sym__for_header_token1] = ACTIONS(9748), + [aux_sym_do_statement_token1] = ACTIONS(9748), + [aux_sym_do_condition_token1] = ACTIONS(9748), + [aux_sym_with_statement_token1] = ACTIONS(9748), + [aux_sym_exit_statement_token1] = ACTIONS(9748), + [sym_end_statement] = ACTIONS(9750), + [aux_sym_on_goto_statement_token1] = ACTIONS(9748), + [aux_sym_on_goto_statement_token2] = ACTIONS(9748), + [aux_sym_on_error_statement_token2] = ACTIONS(9748), + [sym__ambiguous_redim_statement] = ACTIONS(9750), + [aux_sym_erase_statement_token1] = ACTIONS(9748), + [aux_sym_open_statement_token1] = ACTIONS(9748), + [aux_sym_file_mode_token2] = ACTIONS(9748), + [aux_sym_file_access_token2] = ACTIONS(9748), + [aux_sym_file_lock_token2] = ACTIONS(9748), + [aux_sym_print_statement_token1] = ACTIONS(9748), + [anon_sym_PLUS] = ACTIONS(9750), + [anon_sym_DASH] = ACTIONS(9748), + [anon_sym_QMARK] = ACTIONS(9750), + [aux_sym_close_statement_token1] = ACTIONS(9748), + [aux_sym_put_statement_token1] = ACTIONS(9748), + [aux_sym_unlock_statement_token1] = ACTIONS(9748), + [aux_sym_seek_statement_token1] = ACTIONS(9748), + [sym_reset_statement] = ACTIONS(9748), + [aux_sym_raise_event_statement_token1] = ACTIONS(9748), + [sym_stop_statement] = ACTIONS(9748), + [sym_beep_statement] = ACTIONS(9748), + [aux_sym_unload_statement_token1] = ACTIONS(9748), + [aux_sym_def_type_statement_token1] = ACTIONS(9748), + [aux_sym_def_type_statement_token2] = ACTIONS(9748), + [aux_sym_def_type_statement_token3] = ACTIONS(9748), + [aux_sym_def_type_statement_token4] = ACTIONS(9748), + [aux_sym_def_type_statement_token5] = ACTIONS(9748), + [aux_sym_def_type_statement_token6] = ACTIONS(9748), + [aux_sym_def_type_statement_token7] = ACTIONS(9748), + [aux_sym_def_type_statement_token8] = ACTIONS(9748), + [aux_sym_def_type_statement_token9] = ACTIONS(9748), + [aux_sym_def_type_statement_token10] = ACTIONS(9748), + [aux_sym_def_type_statement_token11] = ACTIONS(9748), + [aux_sym_def_type_statement_token12] = ACTIONS(9748), + [aux_sym_def_type_statement_token13] = ACTIONS(9748), + [aux_sym_def_type_statement_token14] = ACTIONS(9748), + [aux_sym_call_statement_token1] = ACTIONS(9748), + [sym__ambiguous_call_statement] = ACTIONS(9748), + [aux_sym_addressof_expression_token1] = ACTIONS(9748), + [aux_sym_type_of_expression_token1] = ACTIONS(9748), + [aux_sym_unary_expression_token1] = ACTIONS(9748), + [sym_string_literal] = ACTIONS(9750), + [sym_number_literal] = ACTIONS(9750), + [aux_sym_boolean_literal_token1] = ACTIONS(9748), + [aux_sym_boolean_literal_token2] = ACTIONS(9748), + [sym_nothing_literal] = ACTIONS(9748), + [sym_null_literal] = ACTIONS(9748), + [sym_empty_literal] = ACTIONS(9748), + [sym_date_literal] = ACTIONS(9750), + [anon_sym_POUND] = ACTIONS(9748), + }, + [STATE(4478)] = { + [sym_identifier] = ACTIONS(9568), + [sym_newline] = ACTIONS(9570), + [anon_sym_COLON] = ACTIONS(9570), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9568), + [aux_sym_frm_property_statement_token1] = ACTIONS(9568), + [anon_sym_DOT] = ACTIONS(9568), + [anon_sym_BANG] = ACTIONS(9570), + [aux_sym__attribute_identifier_token1] = ACTIONS(9568), + [aux_sym_option_statement_token3] = ACTIONS(9568), + [aux_sym_type_declaration_token1] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9568), + [aux_sym_enum_declaration_token1] = ACTIONS(9568), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9568), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9568), + [aux_sym_declare_function_statement_token1] = ACTIONS(9568), + [aux_sym_preprocessor_const_token1] = ACTIONS(9568), + [aux_sym__property_get_header_token1] = ACTIONS(9568), + [aux_sym_event_declaration_token1] = ACTIONS(9568), + [sym_static_modifier] = ACTIONS(9568), + [sym__dim_keyword] = ACTIONS(9568), + [sym__redim_keyword] = ACTIONS(9568), + [aux_sym_get_accessor_token1] = ACTIONS(9568), + [aux_sym_set_accessor_token1] = ACTIONS(9568), + [aux_sym_const_declaration_token1] = ACTIONS(9568), + [anon_sym_LPAREN] = ACTIONS(9570), + [aux_sym_as_type_clause_token2] = ACTIONS(9568), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9568), + [aux_sym_visibility_token1] = ACTIONS(9568), + [aux_sym_visibility_token2] = ACTIONS(9568), + [aux_sym_elseif_fragment_token1] = ACTIONS(9568), + [aux_sym_else_fragment_token1] = ACTIONS(9568), + [aux_sym_select_statement_token1] = ACTIONS(9568), + [aux_sym__for_header_token1] = ACTIONS(9568), + [aux_sym_do_statement_token1] = ACTIONS(9568), + [aux_sym_do_condition_token1] = ACTIONS(9568), + [aux_sym_with_statement_token1] = ACTIONS(9568), + [aux_sym_exit_statement_token1] = ACTIONS(9568), + [sym_end_statement] = ACTIONS(9570), + [aux_sym_on_goto_statement_token1] = ACTIONS(9568), + [aux_sym_on_goto_statement_token2] = ACTIONS(9568), + [aux_sym_on_error_statement_token2] = ACTIONS(9568), + [sym__ambiguous_redim_statement] = ACTIONS(9570), + [aux_sym_erase_statement_token1] = ACTIONS(9568), + [aux_sym_open_statement_token1] = ACTIONS(9568), + [aux_sym_file_mode_token2] = ACTIONS(9568), + [aux_sym_file_access_token2] = ACTIONS(9568), + [aux_sym_file_lock_token2] = ACTIONS(9568), + [aux_sym_print_statement_token1] = ACTIONS(9568), + [anon_sym_PLUS] = ACTIONS(9570), + [anon_sym_DASH] = ACTIONS(9568), + [anon_sym_QMARK] = ACTIONS(9570), + [aux_sym_close_statement_token1] = ACTIONS(9568), + [aux_sym_put_statement_token1] = ACTIONS(9568), + [aux_sym_unlock_statement_token1] = ACTIONS(9568), + [aux_sym_seek_statement_token1] = ACTIONS(9568), + [sym_reset_statement] = ACTIONS(9568), + [aux_sym_raise_event_statement_token1] = ACTIONS(9568), + [sym_stop_statement] = ACTIONS(9568), + [sym_beep_statement] = ACTIONS(9568), + [aux_sym_unload_statement_token1] = ACTIONS(9568), + [aux_sym_def_type_statement_token1] = ACTIONS(9568), + [aux_sym_def_type_statement_token2] = ACTIONS(9568), + [aux_sym_def_type_statement_token3] = ACTIONS(9568), + [aux_sym_def_type_statement_token4] = ACTIONS(9568), + [aux_sym_def_type_statement_token5] = ACTIONS(9568), + [aux_sym_def_type_statement_token6] = ACTIONS(9568), + [aux_sym_def_type_statement_token7] = ACTIONS(9568), + [aux_sym_def_type_statement_token8] = ACTIONS(9568), + [aux_sym_def_type_statement_token9] = ACTIONS(9568), + [aux_sym_def_type_statement_token10] = ACTIONS(9568), + [aux_sym_def_type_statement_token11] = ACTIONS(9568), + [aux_sym_def_type_statement_token12] = ACTIONS(9568), + [aux_sym_def_type_statement_token13] = ACTIONS(9568), + [aux_sym_def_type_statement_token14] = ACTIONS(9568), + [aux_sym_call_statement_token1] = ACTIONS(9568), + [sym__ambiguous_call_statement] = ACTIONS(9568), + [aux_sym_addressof_expression_token1] = ACTIONS(9568), + [aux_sym_type_of_expression_token1] = ACTIONS(9568), + [aux_sym_unary_expression_token1] = ACTIONS(9568), + [sym_string_literal] = ACTIONS(9570), + [sym_number_literal] = ACTIONS(9570), + [aux_sym_boolean_literal_token1] = ACTIONS(9568), + [aux_sym_boolean_literal_token2] = ACTIONS(9568), + [sym_nothing_literal] = ACTIONS(9568), + [sym_null_literal] = ACTIONS(9568), + [sym_empty_literal] = ACTIONS(9568), + [sym_date_literal] = ACTIONS(9570), + [anon_sym_POUND] = ACTIONS(9568), + }, + [STATE(4479)] = { + [sym_identifier] = ACTIONS(9784), + [sym_newline] = ACTIONS(9786), + [anon_sym_COLON] = ACTIONS(9786), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9784), + [aux_sym_frm_property_statement_token1] = ACTIONS(9784), + [anon_sym_DOT] = ACTIONS(9784), + [anon_sym_BANG] = ACTIONS(9786), + [aux_sym__attribute_identifier_token1] = ACTIONS(9784), + [aux_sym_option_statement_token3] = ACTIONS(9784), + [aux_sym_type_declaration_token1] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9784), + [aux_sym_enum_declaration_token1] = ACTIONS(9784), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9784), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9784), + [aux_sym_declare_function_statement_token1] = ACTIONS(9784), + [aux_sym_preprocessor_const_token1] = ACTIONS(9784), + [aux_sym__property_get_header_token1] = ACTIONS(9784), + [aux_sym_event_declaration_token1] = ACTIONS(9784), + [sym_static_modifier] = ACTIONS(9784), + [sym__dim_keyword] = ACTIONS(9784), + [sym__redim_keyword] = ACTIONS(9784), + [aux_sym_get_accessor_token1] = ACTIONS(9784), + [aux_sym_set_accessor_token1] = ACTIONS(9784), + [aux_sym_const_declaration_token1] = ACTIONS(9784), + [anon_sym_LPAREN] = ACTIONS(9786), + [aux_sym_as_type_clause_token2] = ACTIONS(9784), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9784), + [aux_sym_visibility_token1] = ACTIONS(9784), + [aux_sym_visibility_token2] = ACTIONS(9784), + [aux_sym_elseif_fragment_token1] = ACTIONS(9784), + [aux_sym_else_fragment_token1] = ACTIONS(9784), + [aux_sym_select_statement_token1] = ACTIONS(9784), + [aux_sym__for_header_token1] = ACTIONS(9784), + [aux_sym_do_statement_token1] = ACTIONS(9784), + [aux_sym_do_condition_token1] = ACTIONS(9784), + [aux_sym_with_statement_token1] = ACTIONS(9784), + [aux_sym_exit_statement_token1] = ACTIONS(9784), + [sym_end_statement] = ACTIONS(9786), + [aux_sym_on_goto_statement_token1] = ACTIONS(9784), + [aux_sym_on_goto_statement_token2] = ACTIONS(9784), + [aux_sym_on_error_statement_token2] = ACTIONS(9784), + [sym__ambiguous_redim_statement] = ACTIONS(9786), + [aux_sym_erase_statement_token1] = ACTIONS(9784), + [aux_sym_open_statement_token1] = ACTIONS(9784), + [aux_sym_file_mode_token2] = ACTIONS(9784), + [aux_sym_file_access_token2] = ACTIONS(9784), + [aux_sym_file_lock_token2] = ACTIONS(9784), + [aux_sym_print_statement_token1] = ACTIONS(9784), + [anon_sym_PLUS] = ACTIONS(9786), + [anon_sym_DASH] = ACTIONS(9784), + [anon_sym_QMARK] = ACTIONS(9786), + [aux_sym_close_statement_token1] = ACTIONS(9784), + [aux_sym_put_statement_token1] = ACTIONS(9784), + [aux_sym_unlock_statement_token1] = ACTIONS(9784), + [aux_sym_seek_statement_token1] = ACTIONS(9784), + [sym_reset_statement] = ACTIONS(9784), + [aux_sym_raise_event_statement_token1] = ACTIONS(9784), + [sym_stop_statement] = ACTIONS(9784), + [sym_beep_statement] = ACTIONS(9784), + [aux_sym_unload_statement_token1] = ACTIONS(9784), + [aux_sym_def_type_statement_token1] = ACTIONS(9784), + [aux_sym_def_type_statement_token2] = ACTIONS(9784), + [aux_sym_def_type_statement_token3] = ACTIONS(9784), + [aux_sym_def_type_statement_token4] = ACTIONS(9784), + [aux_sym_def_type_statement_token5] = ACTIONS(9784), + [aux_sym_def_type_statement_token6] = ACTIONS(9784), + [aux_sym_def_type_statement_token7] = ACTIONS(9784), + [aux_sym_def_type_statement_token8] = ACTIONS(9784), + [aux_sym_def_type_statement_token9] = ACTIONS(9784), + [aux_sym_def_type_statement_token10] = ACTIONS(9784), + [aux_sym_def_type_statement_token11] = ACTIONS(9784), + [aux_sym_def_type_statement_token12] = ACTIONS(9784), + [aux_sym_def_type_statement_token13] = ACTIONS(9784), + [aux_sym_def_type_statement_token14] = ACTIONS(9784), + [aux_sym_call_statement_token1] = ACTIONS(9784), + [sym__ambiguous_call_statement] = ACTIONS(9784), + [aux_sym_addressof_expression_token1] = ACTIONS(9784), + [aux_sym_type_of_expression_token1] = ACTIONS(9784), + [aux_sym_unary_expression_token1] = ACTIONS(9784), + [sym_string_literal] = ACTIONS(9786), + [sym_number_literal] = ACTIONS(9786), + [aux_sym_boolean_literal_token1] = ACTIONS(9784), + [aux_sym_boolean_literal_token2] = ACTIONS(9784), + [sym_nothing_literal] = ACTIONS(9784), + [sym_null_literal] = ACTIONS(9784), + [sym_empty_literal] = ACTIONS(9784), + [sym_date_literal] = ACTIONS(9786), + [anon_sym_POUND] = ACTIONS(9784), + }, + [STATE(4480)] = { + [sym_identifier] = ACTIONS(9575), + [sym_newline] = ACTIONS(9577), + [anon_sym_COLON] = ACTIONS(9577), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9575), + [aux_sym_frm_property_statement_token1] = ACTIONS(9575), + [anon_sym_DOT] = ACTIONS(9575), + [anon_sym_BANG] = ACTIONS(9577), + [aux_sym__attribute_identifier_token1] = ACTIONS(9575), + [aux_sym_option_statement_token3] = ACTIONS(9575), + [aux_sym_type_declaration_token1] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9575), + [aux_sym_enum_declaration_token1] = ACTIONS(9575), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9575), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9575), + [aux_sym_declare_function_statement_token1] = ACTIONS(9575), + [aux_sym_preprocessor_const_token1] = ACTIONS(9575), + [aux_sym__property_get_header_token1] = ACTIONS(9575), + [aux_sym_event_declaration_token1] = ACTIONS(9575), + [sym_static_modifier] = ACTIONS(9575), + [sym__dim_keyword] = ACTIONS(9575), + [sym__redim_keyword] = ACTIONS(9575), + [aux_sym_get_accessor_token1] = ACTIONS(9575), + [aux_sym_set_accessor_token1] = ACTIONS(9575), + [aux_sym_const_declaration_token1] = ACTIONS(9575), + [anon_sym_LPAREN] = ACTIONS(9577), + [aux_sym_as_type_clause_token2] = ACTIONS(9575), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9575), + [aux_sym_visibility_token1] = ACTIONS(9575), + [aux_sym_visibility_token2] = ACTIONS(9575), + [aux_sym_elseif_fragment_token1] = ACTIONS(9575), + [aux_sym_else_fragment_token1] = ACTIONS(9575), + [aux_sym_select_statement_token1] = ACTIONS(9575), + [aux_sym__for_header_token1] = ACTIONS(9575), + [aux_sym_do_statement_token1] = ACTIONS(9575), + [aux_sym_do_condition_token1] = ACTIONS(9575), + [aux_sym_with_statement_token1] = ACTIONS(9575), + [aux_sym_exit_statement_token1] = ACTIONS(9575), + [sym_end_statement] = ACTIONS(9577), + [aux_sym_on_goto_statement_token1] = ACTIONS(9575), + [aux_sym_on_goto_statement_token2] = ACTIONS(9575), + [aux_sym_on_error_statement_token2] = ACTIONS(9575), + [sym__ambiguous_redim_statement] = ACTIONS(9577), + [aux_sym_erase_statement_token1] = ACTIONS(9575), + [aux_sym_open_statement_token1] = ACTIONS(9575), + [aux_sym_file_mode_token2] = ACTIONS(9575), + [aux_sym_file_access_token2] = ACTIONS(9575), + [aux_sym_file_lock_token2] = ACTIONS(9575), + [aux_sym_print_statement_token1] = ACTIONS(9575), + [anon_sym_PLUS] = ACTIONS(9577), + [anon_sym_DASH] = ACTIONS(9575), + [anon_sym_QMARK] = ACTIONS(9577), + [aux_sym_close_statement_token1] = ACTIONS(9575), + [aux_sym_put_statement_token1] = ACTIONS(9575), + [aux_sym_unlock_statement_token1] = ACTIONS(9575), + [aux_sym_seek_statement_token1] = ACTIONS(9575), + [sym_reset_statement] = ACTIONS(9575), + [aux_sym_raise_event_statement_token1] = ACTIONS(9575), + [sym_stop_statement] = ACTIONS(9575), + [sym_beep_statement] = ACTIONS(9575), + [aux_sym_unload_statement_token1] = ACTIONS(9575), + [aux_sym_def_type_statement_token1] = ACTIONS(9575), + [aux_sym_def_type_statement_token2] = ACTIONS(9575), + [aux_sym_def_type_statement_token3] = ACTIONS(9575), + [aux_sym_def_type_statement_token4] = ACTIONS(9575), + [aux_sym_def_type_statement_token5] = ACTIONS(9575), + [aux_sym_def_type_statement_token6] = ACTIONS(9575), + [aux_sym_def_type_statement_token7] = ACTIONS(9575), + [aux_sym_def_type_statement_token8] = ACTIONS(9575), + [aux_sym_def_type_statement_token9] = ACTIONS(9575), + [aux_sym_def_type_statement_token10] = ACTIONS(9575), + [aux_sym_def_type_statement_token11] = ACTIONS(9575), + [aux_sym_def_type_statement_token12] = ACTIONS(9575), + [aux_sym_def_type_statement_token13] = ACTIONS(9575), + [aux_sym_def_type_statement_token14] = ACTIONS(9575), + [aux_sym_call_statement_token1] = ACTIONS(9575), + [sym__ambiguous_call_statement] = ACTIONS(9575), + [aux_sym_addressof_expression_token1] = ACTIONS(9575), + [aux_sym_type_of_expression_token1] = ACTIONS(9575), + [aux_sym_unary_expression_token1] = ACTIONS(9575), + [sym_string_literal] = ACTIONS(9577), + [sym_number_literal] = ACTIONS(9577), + [aux_sym_boolean_literal_token1] = ACTIONS(9575), + [aux_sym_boolean_literal_token2] = ACTIONS(9575), + [sym_nothing_literal] = ACTIONS(9575), + [sym_null_literal] = ACTIONS(9575), + [sym_empty_literal] = ACTIONS(9575), + [sym_date_literal] = ACTIONS(9577), + [anon_sym_POUND] = ACTIONS(9575), + }, + [STATE(4481)] = { + [sym_identifier] = ACTIONS(9582), + [sym_newline] = ACTIONS(9584), + [anon_sym_COLON] = ACTIONS(9584), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9582), + [aux_sym_frm_property_statement_token1] = ACTIONS(9582), + [anon_sym_DOT] = ACTIONS(9582), + [anon_sym_BANG] = ACTIONS(9584), + [aux_sym__attribute_identifier_token1] = ACTIONS(9582), + [aux_sym_option_statement_token3] = ACTIONS(9582), + [aux_sym_type_declaration_token1] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9582), + [aux_sym_enum_declaration_token1] = ACTIONS(9582), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9582), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9582), + [aux_sym_declare_function_statement_token1] = ACTIONS(9582), + [aux_sym_preprocessor_const_token1] = ACTIONS(9582), + [aux_sym__property_get_header_token1] = ACTIONS(9582), + [aux_sym_event_declaration_token1] = ACTIONS(9582), + [sym_static_modifier] = ACTIONS(9582), + [sym__dim_keyword] = ACTIONS(9582), + [sym__redim_keyword] = ACTIONS(9582), + [aux_sym_get_accessor_token1] = ACTIONS(9582), + [aux_sym_set_accessor_token1] = ACTIONS(9582), + [aux_sym_const_declaration_token1] = ACTIONS(9582), + [anon_sym_LPAREN] = ACTIONS(9584), + [aux_sym_as_type_clause_token2] = ACTIONS(9582), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9582), + [aux_sym_visibility_token1] = ACTIONS(9582), + [aux_sym_visibility_token2] = ACTIONS(9582), + [aux_sym_elseif_fragment_token1] = ACTIONS(9582), + [aux_sym_else_fragment_token1] = ACTIONS(9582), + [aux_sym_select_statement_token1] = ACTIONS(9582), + [aux_sym__for_header_token1] = ACTIONS(9582), + [aux_sym_do_statement_token1] = ACTIONS(9582), + [aux_sym_do_condition_token1] = ACTIONS(9582), + [aux_sym_with_statement_token1] = ACTIONS(9582), + [aux_sym_exit_statement_token1] = ACTIONS(9582), + [sym_end_statement] = ACTIONS(9584), + [aux_sym_on_goto_statement_token1] = ACTIONS(9582), + [aux_sym_on_goto_statement_token2] = ACTIONS(9582), + [aux_sym_on_error_statement_token2] = ACTIONS(9582), + [sym__ambiguous_redim_statement] = ACTIONS(9584), + [aux_sym_erase_statement_token1] = ACTIONS(9582), + [aux_sym_open_statement_token1] = ACTIONS(9582), + [aux_sym_file_mode_token2] = ACTIONS(9582), + [aux_sym_file_access_token2] = ACTIONS(9582), + [aux_sym_file_lock_token2] = ACTIONS(9582), + [aux_sym_print_statement_token1] = ACTIONS(9582), + [anon_sym_PLUS] = ACTIONS(9584), + [anon_sym_DASH] = ACTIONS(9582), + [anon_sym_QMARK] = ACTIONS(9584), + [aux_sym_close_statement_token1] = ACTIONS(9582), + [aux_sym_put_statement_token1] = ACTIONS(9582), + [aux_sym_unlock_statement_token1] = ACTIONS(9582), + [aux_sym_seek_statement_token1] = ACTIONS(9582), + [sym_reset_statement] = ACTIONS(9582), + [aux_sym_raise_event_statement_token1] = ACTIONS(9582), + [sym_stop_statement] = ACTIONS(9582), + [sym_beep_statement] = ACTIONS(9582), + [aux_sym_unload_statement_token1] = ACTIONS(9582), + [aux_sym_def_type_statement_token1] = ACTIONS(9582), + [aux_sym_def_type_statement_token2] = ACTIONS(9582), + [aux_sym_def_type_statement_token3] = ACTIONS(9582), + [aux_sym_def_type_statement_token4] = ACTIONS(9582), + [aux_sym_def_type_statement_token5] = ACTIONS(9582), + [aux_sym_def_type_statement_token6] = ACTIONS(9582), + [aux_sym_def_type_statement_token7] = ACTIONS(9582), + [aux_sym_def_type_statement_token8] = ACTIONS(9582), + [aux_sym_def_type_statement_token9] = ACTIONS(9582), + [aux_sym_def_type_statement_token10] = ACTIONS(9582), + [aux_sym_def_type_statement_token11] = ACTIONS(9582), + [aux_sym_def_type_statement_token12] = ACTIONS(9582), + [aux_sym_def_type_statement_token13] = ACTIONS(9582), + [aux_sym_def_type_statement_token14] = ACTIONS(9582), + [aux_sym_call_statement_token1] = ACTIONS(9582), + [sym__ambiguous_call_statement] = ACTIONS(9582), + [aux_sym_addressof_expression_token1] = ACTIONS(9582), + [aux_sym_type_of_expression_token1] = ACTIONS(9582), + [aux_sym_unary_expression_token1] = ACTIONS(9582), + [sym_string_literal] = ACTIONS(9584), + [sym_number_literal] = ACTIONS(9584), + [aux_sym_boolean_literal_token1] = ACTIONS(9582), + [aux_sym_boolean_literal_token2] = ACTIONS(9582), + [sym_nothing_literal] = ACTIONS(9582), + [sym_null_literal] = ACTIONS(9582), + [sym_empty_literal] = ACTIONS(9582), + [sym_date_literal] = ACTIONS(9584), + [anon_sym_POUND] = ACTIONS(9582), + }, + [STATE(4482)] = { + [sym_identifier] = ACTIONS(9586), + [sym_newline] = ACTIONS(9588), + [anon_sym_COLON] = ACTIONS(9588), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9586), + [aux_sym_frm_property_statement_token1] = ACTIONS(9586), + [anon_sym_DOT] = ACTIONS(9586), + [anon_sym_BANG] = ACTIONS(9588), + [aux_sym__attribute_identifier_token1] = ACTIONS(9586), + [aux_sym_option_statement_token3] = ACTIONS(9586), + [aux_sym_type_declaration_token1] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9586), + [aux_sym_enum_declaration_token1] = ACTIONS(9586), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9586), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9586), + [aux_sym_declare_function_statement_token1] = ACTIONS(9586), + [aux_sym_preprocessor_const_token1] = ACTIONS(9586), + [aux_sym__property_get_header_token1] = ACTIONS(9586), + [aux_sym_event_declaration_token1] = ACTIONS(9586), + [sym_static_modifier] = ACTIONS(9586), + [sym__dim_keyword] = ACTIONS(9586), + [sym__redim_keyword] = ACTIONS(9586), + [aux_sym_get_accessor_token1] = ACTIONS(9586), + [aux_sym_set_accessor_token1] = ACTIONS(9586), + [aux_sym_const_declaration_token1] = ACTIONS(9586), + [anon_sym_LPAREN] = ACTIONS(9588), + [aux_sym_as_type_clause_token2] = ACTIONS(9586), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9586), + [aux_sym_visibility_token1] = ACTIONS(9586), + [aux_sym_visibility_token2] = ACTIONS(9586), + [aux_sym_elseif_fragment_token1] = ACTIONS(9586), + [aux_sym_else_fragment_token1] = ACTIONS(9586), + [aux_sym_select_statement_token1] = ACTIONS(9586), + [aux_sym__for_header_token1] = ACTIONS(9586), + [aux_sym_do_statement_token1] = ACTIONS(9586), + [aux_sym_do_condition_token1] = ACTIONS(9586), + [aux_sym_with_statement_token1] = ACTIONS(9586), + [aux_sym_exit_statement_token1] = ACTIONS(9586), + [sym_end_statement] = ACTIONS(9588), + [aux_sym_on_goto_statement_token1] = ACTIONS(9586), + [aux_sym_on_goto_statement_token2] = ACTIONS(9586), + [aux_sym_on_error_statement_token2] = ACTIONS(9586), + [sym__ambiguous_redim_statement] = ACTIONS(9588), + [aux_sym_erase_statement_token1] = ACTIONS(9586), + [aux_sym_open_statement_token1] = ACTIONS(9586), + [aux_sym_file_mode_token2] = ACTIONS(9586), + [aux_sym_file_access_token2] = ACTIONS(9586), + [aux_sym_file_lock_token2] = ACTIONS(9586), + [aux_sym_print_statement_token1] = ACTIONS(9586), + [anon_sym_PLUS] = ACTIONS(9588), + [anon_sym_DASH] = ACTIONS(9586), + [anon_sym_QMARK] = ACTIONS(9588), + [aux_sym_close_statement_token1] = ACTIONS(9586), + [aux_sym_put_statement_token1] = ACTIONS(9586), + [aux_sym_unlock_statement_token1] = ACTIONS(9586), + [aux_sym_seek_statement_token1] = ACTIONS(9586), + [sym_reset_statement] = ACTIONS(9586), + [aux_sym_raise_event_statement_token1] = ACTIONS(9586), + [sym_stop_statement] = ACTIONS(9586), + [sym_beep_statement] = ACTIONS(9586), + [aux_sym_unload_statement_token1] = ACTIONS(9586), + [aux_sym_def_type_statement_token1] = ACTIONS(9586), + [aux_sym_def_type_statement_token2] = ACTIONS(9586), + [aux_sym_def_type_statement_token3] = ACTIONS(9586), + [aux_sym_def_type_statement_token4] = ACTIONS(9586), + [aux_sym_def_type_statement_token5] = ACTIONS(9586), + [aux_sym_def_type_statement_token6] = ACTIONS(9586), + [aux_sym_def_type_statement_token7] = ACTIONS(9586), + [aux_sym_def_type_statement_token8] = ACTIONS(9586), + [aux_sym_def_type_statement_token9] = ACTIONS(9586), + [aux_sym_def_type_statement_token10] = ACTIONS(9586), + [aux_sym_def_type_statement_token11] = ACTIONS(9586), + [aux_sym_def_type_statement_token12] = ACTIONS(9586), + [aux_sym_def_type_statement_token13] = ACTIONS(9586), + [aux_sym_def_type_statement_token14] = ACTIONS(9586), + [aux_sym_call_statement_token1] = ACTIONS(9586), + [sym__ambiguous_call_statement] = ACTIONS(9586), + [aux_sym_addressof_expression_token1] = ACTIONS(9586), + [aux_sym_type_of_expression_token1] = ACTIONS(9586), + [aux_sym_unary_expression_token1] = ACTIONS(9586), + [sym_string_literal] = ACTIONS(9588), + [sym_number_literal] = ACTIONS(9588), + [aux_sym_boolean_literal_token1] = ACTIONS(9586), + [aux_sym_boolean_literal_token2] = ACTIONS(9586), + [sym_nothing_literal] = ACTIONS(9586), + [sym_null_literal] = ACTIONS(9586), + [sym_empty_literal] = ACTIONS(9586), + [sym_date_literal] = ACTIONS(9588), + [anon_sym_POUND] = ACTIONS(9586), + }, + [STATE(4483)] = { + [sym_identifier] = ACTIONS(9590), + [sym_newline] = ACTIONS(9592), + [anon_sym_COLON] = ACTIONS(9592), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9590), + [aux_sym_frm_property_statement_token1] = ACTIONS(9590), + [anon_sym_DOT] = ACTIONS(9590), + [anon_sym_BANG] = ACTIONS(9592), + [aux_sym__attribute_identifier_token1] = ACTIONS(9590), + [aux_sym_option_statement_token3] = ACTIONS(9590), + [aux_sym_type_declaration_token1] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9590), + [aux_sym_enum_declaration_token1] = ACTIONS(9590), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9590), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9590), + [aux_sym_declare_function_statement_token1] = ACTIONS(9590), + [aux_sym_preprocessor_const_token1] = ACTIONS(9590), + [aux_sym__property_get_header_token1] = ACTIONS(9590), + [aux_sym_event_declaration_token1] = ACTIONS(9590), + [sym_static_modifier] = ACTIONS(9590), + [sym__dim_keyword] = ACTIONS(9590), + [sym__redim_keyword] = ACTIONS(9590), + [aux_sym_get_accessor_token1] = ACTIONS(9590), + [aux_sym_set_accessor_token1] = ACTIONS(9590), + [aux_sym_const_declaration_token1] = ACTIONS(9590), + [anon_sym_LPAREN] = ACTIONS(9592), + [aux_sym_as_type_clause_token2] = ACTIONS(9590), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9590), + [aux_sym_visibility_token1] = ACTIONS(9590), + [aux_sym_visibility_token2] = ACTIONS(9590), + [aux_sym_elseif_fragment_token1] = ACTIONS(9590), + [aux_sym_else_fragment_token1] = ACTIONS(9590), + [aux_sym_select_statement_token1] = ACTIONS(9590), + [aux_sym__for_header_token1] = ACTIONS(9590), + [aux_sym_do_statement_token1] = ACTIONS(9590), + [aux_sym_do_condition_token1] = ACTIONS(9590), + [aux_sym_with_statement_token1] = ACTIONS(9590), + [aux_sym_exit_statement_token1] = ACTIONS(9590), + [sym_end_statement] = ACTIONS(9592), + [aux_sym_on_goto_statement_token1] = ACTIONS(9590), + [aux_sym_on_goto_statement_token2] = ACTIONS(9590), + [aux_sym_on_error_statement_token2] = ACTIONS(9590), + [sym__ambiguous_redim_statement] = ACTIONS(9592), + [aux_sym_erase_statement_token1] = ACTIONS(9590), + [aux_sym_open_statement_token1] = ACTIONS(9590), + [aux_sym_file_mode_token2] = ACTIONS(9590), + [aux_sym_file_access_token2] = ACTIONS(9590), + [aux_sym_file_lock_token2] = ACTIONS(9590), + [aux_sym_print_statement_token1] = ACTIONS(9590), + [anon_sym_PLUS] = ACTIONS(9592), + [anon_sym_DASH] = ACTIONS(9590), + [anon_sym_QMARK] = ACTIONS(9592), + [aux_sym_close_statement_token1] = ACTIONS(9590), + [aux_sym_put_statement_token1] = ACTIONS(9590), + [aux_sym_unlock_statement_token1] = ACTIONS(9590), + [aux_sym_seek_statement_token1] = ACTIONS(9590), + [sym_reset_statement] = ACTIONS(9590), + [aux_sym_raise_event_statement_token1] = ACTIONS(9590), + [sym_stop_statement] = ACTIONS(9590), + [sym_beep_statement] = ACTIONS(9590), + [aux_sym_unload_statement_token1] = ACTIONS(9590), + [aux_sym_def_type_statement_token1] = ACTIONS(9590), + [aux_sym_def_type_statement_token2] = ACTIONS(9590), + [aux_sym_def_type_statement_token3] = ACTIONS(9590), + [aux_sym_def_type_statement_token4] = ACTIONS(9590), + [aux_sym_def_type_statement_token5] = ACTIONS(9590), + [aux_sym_def_type_statement_token6] = ACTIONS(9590), + [aux_sym_def_type_statement_token7] = ACTIONS(9590), + [aux_sym_def_type_statement_token8] = ACTIONS(9590), + [aux_sym_def_type_statement_token9] = ACTIONS(9590), + [aux_sym_def_type_statement_token10] = ACTIONS(9590), + [aux_sym_def_type_statement_token11] = ACTIONS(9590), + [aux_sym_def_type_statement_token12] = ACTIONS(9590), + [aux_sym_def_type_statement_token13] = ACTIONS(9590), + [aux_sym_def_type_statement_token14] = ACTIONS(9590), + [aux_sym_call_statement_token1] = ACTIONS(9590), + [sym__ambiguous_call_statement] = ACTIONS(9590), + [aux_sym_addressof_expression_token1] = ACTIONS(9590), + [aux_sym_type_of_expression_token1] = ACTIONS(9590), + [aux_sym_unary_expression_token1] = ACTIONS(9590), + [sym_string_literal] = ACTIONS(9592), + [sym_number_literal] = ACTIONS(9592), + [aux_sym_boolean_literal_token1] = ACTIONS(9590), + [aux_sym_boolean_literal_token2] = ACTIONS(9590), + [sym_nothing_literal] = ACTIONS(9590), + [sym_null_literal] = ACTIONS(9590), + [sym_empty_literal] = ACTIONS(9590), + [sym_date_literal] = ACTIONS(9592), + [anon_sym_POUND] = ACTIONS(9590), + }, + [STATE(4484)] = { + [sym_identifier] = ACTIONS(9594), + [sym_newline] = ACTIONS(9596), + [anon_sym_COLON] = ACTIONS(9596), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9594), + [aux_sym_frm_property_statement_token1] = ACTIONS(9594), + [anon_sym_DOT] = ACTIONS(9594), + [anon_sym_BANG] = ACTIONS(9596), + [aux_sym__attribute_identifier_token1] = ACTIONS(9594), + [aux_sym_option_statement_token3] = ACTIONS(9594), + [aux_sym_type_declaration_token1] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9594), + [aux_sym_enum_declaration_token1] = ACTIONS(9594), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9594), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9594), + [aux_sym_declare_function_statement_token1] = ACTIONS(9594), + [aux_sym_preprocessor_const_token1] = ACTIONS(9594), + [aux_sym__property_get_header_token1] = ACTIONS(9594), + [aux_sym_event_declaration_token1] = ACTIONS(9594), + [sym_static_modifier] = ACTIONS(9594), + [sym__dim_keyword] = ACTIONS(9594), + [sym__redim_keyword] = ACTIONS(9594), + [aux_sym_get_accessor_token1] = ACTIONS(9594), + [aux_sym_set_accessor_token1] = ACTIONS(9594), + [aux_sym_const_declaration_token1] = ACTIONS(9594), + [anon_sym_LPAREN] = ACTIONS(9596), + [aux_sym_as_type_clause_token2] = ACTIONS(9594), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9594), + [aux_sym_visibility_token1] = ACTIONS(9594), + [aux_sym_visibility_token2] = ACTIONS(9594), + [aux_sym_elseif_fragment_token1] = ACTIONS(9594), + [aux_sym_else_fragment_token1] = ACTIONS(9594), + [aux_sym_select_statement_token1] = ACTIONS(9594), + [aux_sym__for_header_token1] = ACTIONS(9594), + [aux_sym_do_statement_token1] = ACTIONS(9594), + [aux_sym_do_condition_token1] = ACTIONS(9594), + [aux_sym_with_statement_token1] = ACTIONS(9594), + [aux_sym_exit_statement_token1] = ACTIONS(9594), + [sym_end_statement] = ACTIONS(9596), + [aux_sym_on_goto_statement_token1] = ACTIONS(9594), + [aux_sym_on_goto_statement_token2] = ACTIONS(9594), + [aux_sym_on_error_statement_token2] = ACTIONS(9594), + [sym__ambiguous_redim_statement] = ACTIONS(9596), + [aux_sym_erase_statement_token1] = ACTIONS(9594), + [aux_sym_open_statement_token1] = ACTIONS(9594), + [aux_sym_file_mode_token2] = ACTIONS(9594), + [aux_sym_file_access_token2] = ACTIONS(9594), + [aux_sym_file_lock_token2] = ACTIONS(9594), + [aux_sym_print_statement_token1] = ACTIONS(9594), + [anon_sym_PLUS] = ACTIONS(9596), + [anon_sym_DASH] = ACTIONS(9594), + [anon_sym_QMARK] = ACTIONS(9596), + [aux_sym_close_statement_token1] = ACTIONS(9594), + [aux_sym_put_statement_token1] = ACTIONS(9594), + [aux_sym_unlock_statement_token1] = ACTIONS(9594), + [aux_sym_seek_statement_token1] = ACTIONS(9594), + [sym_reset_statement] = ACTIONS(9594), + [aux_sym_raise_event_statement_token1] = ACTIONS(9594), + [sym_stop_statement] = ACTIONS(9594), + [sym_beep_statement] = ACTIONS(9594), + [aux_sym_unload_statement_token1] = ACTIONS(9594), + [aux_sym_def_type_statement_token1] = ACTIONS(9594), + [aux_sym_def_type_statement_token2] = ACTIONS(9594), + [aux_sym_def_type_statement_token3] = ACTIONS(9594), + [aux_sym_def_type_statement_token4] = ACTIONS(9594), + [aux_sym_def_type_statement_token5] = ACTIONS(9594), + [aux_sym_def_type_statement_token6] = ACTIONS(9594), + [aux_sym_def_type_statement_token7] = ACTIONS(9594), + [aux_sym_def_type_statement_token8] = ACTIONS(9594), + [aux_sym_def_type_statement_token9] = ACTIONS(9594), + [aux_sym_def_type_statement_token10] = ACTIONS(9594), + [aux_sym_def_type_statement_token11] = ACTIONS(9594), + [aux_sym_def_type_statement_token12] = ACTIONS(9594), + [aux_sym_def_type_statement_token13] = ACTIONS(9594), + [aux_sym_def_type_statement_token14] = ACTIONS(9594), + [aux_sym_call_statement_token1] = ACTIONS(9594), + [sym__ambiguous_call_statement] = ACTIONS(9594), + [aux_sym_addressof_expression_token1] = ACTIONS(9594), + [aux_sym_type_of_expression_token1] = ACTIONS(9594), + [aux_sym_unary_expression_token1] = ACTIONS(9594), + [sym_string_literal] = ACTIONS(9596), + [sym_number_literal] = ACTIONS(9596), + [aux_sym_boolean_literal_token1] = ACTIONS(9594), + [aux_sym_boolean_literal_token2] = ACTIONS(9594), + [sym_nothing_literal] = ACTIONS(9594), + [sym_null_literal] = ACTIONS(9594), + [sym_empty_literal] = ACTIONS(9594), + [sym_date_literal] = ACTIONS(9596), + [anon_sym_POUND] = ACTIONS(9594), + }, + [STATE(4485)] = { + [sym_identifier] = ACTIONS(9308), + [sym_newline] = ACTIONS(9310), + [anon_sym_COLON] = ACTIONS(9310), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9308), + [aux_sym_frm_property_statement_token1] = ACTIONS(9308), + [anon_sym_DOT] = ACTIONS(9308), + [anon_sym_BANG] = ACTIONS(9310), + [aux_sym__attribute_identifier_token1] = ACTIONS(9308), + [aux_sym_option_statement_token3] = ACTIONS(9308), + [aux_sym_type_declaration_token1] = ACTIONS(9308), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9308), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9308), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9308), + [aux_sym_enum_declaration_token1] = ACTIONS(9308), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9308), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9308), + [aux_sym_declare_function_statement_token1] = ACTIONS(9308), + [aux_sym_preprocessor_const_token1] = ACTIONS(9308), + [aux_sym__property_get_header_token1] = ACTIONS(9308), + [aux_sym_event_declaration_token1] = ACTIONS(9308), + [sym_static_modifier] = ACTIONS(9308), + [sym__dim_keyword] = ACTIONS(9308), + [sym__redim_keyword] = ACTIONS(9308), + [aux_sym_get_accessor_token1] = ACTIONS(9308), + [aux_sym_set_accessor_token1] = ACTIONS(9308), + [aux_sym_const_declaration_token1] = ACTIONS(9308), + [anon_sym_LPAREN] = ACTIONS(9310), + [aux_sym_as_type_clause_token2] = ACTIONS(9308), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9308), + [aux_sym_visibility_token1] = ACTIONS(9308), + [aux_sym_visibility_token2] = ACTIONS(9308), + [aux_sym_elseif_fragment_token1] = ACTIONS(9308), + [aux_sym_else_fragment_token1] = ACTIONS(9308), + [aux_sym_select_statement_token1] = ACTIONS(9308), + [aux_sym__for_header_token1] = ACTIONS(9308), + [aux_sym_do_statement_token1] = ACTIONS(9308), + [aux_sym_do_condition_token1] = ACTIONS(9308), + [aux_sym_with_statement_token1] = ACTIONS(9308), + [aux_sym_exit_statement_token1] = ACTIONS(9308), + [sym_end_statement] = ACTIONS(9310), + [aux_sym_on_goto_statement_token1] = ACTIONS(9308), + [aux_sym_on_goto_statement_token2] = ACTIONS(9308), + [aux_sym_on_error_statement_token2] = ACTIONS(9308), + [sym__ambiguous_redim_statement] = ACTIONS(9310), + [aux_sym_erase_statement_token1] = ACTIONS(9308), + [aux_sym_open_statement_token1] = ACTIONS(9308), + [aux_sym_file_mode_token2] = ACTIONS(9308), + [aux_sym_file_access_token2] = ACTIONS(9308), + [aux_sym_file_lock_token2] = ACTIONS(9308), + [aux_sym_print_statement_token1] = ACTIONS(9308), + [anon_sym_PLUS] = ACTIONS(9310), + [anon_sym_DASH] = ACTIONS(9308), + [anon_sym_QMARK] = ACTIONS(9310), + [aux_sym_close_statement_token1] = ACTIONS(9308), + [aux_sym_put_statement_token1] = ACTIONS(9308), + [aux_sym_unlock_statement_token1] = ACTIONS(9308), + [aux_sym_seek_statement_token1] = ACTIONS(9308), + [sym_reset_statement] = ACTIONS(9308), + [aux_sym_raise_event_statement_token1] = ACTIONS(9308), + [sym_stop_statement] = ACTIONS(9308), + [sym_beep_statement] = ACTIONS(9308), + [aux_sym_unload_statement_token1] = ACTIONS(9308), + [aux_sym_def_type_statement_token1] = ACTIONS(9308), + [aux_sym_def_type_statement_token2] = ACTIONS(9308), + [aux_sym_def_type_statement_token3] = ACTIONS(9308), + [aux_sym_def_type_statement_token4] = ACTIONS(9308), + [aux_sym_def_type_statement_token5] = ACTIONS(9308), + [aux_sym_def_type_statement_token6] = ACTIONS(9308), + [aux_sym_def_type_statement_token7] = ACTIONS(9308), + [aux_sym_def_type_statement_token8] = ACTIONS(9308), + [aux_sym_def_type_statement_token9] = ACTIONS(9308), + [aux_sym_def_type_statement_token10] = ACTIONS(9308), + [aux_sym_def_type_statement_token11] = ACTIONS(9308), + [aux_sym_def_type_statement_token12] = ACTIONS(9308), + [aux_sym_def_type_statement_token13] = ACTIONS(9308), + [aux_sym_def_type_statement_token14] = ACTIONS(9308), + [aux_sym_call_statement_token1] = ACTIONS(9308), + [sym__ambiguous_call_statement] = ACTIONS(9308), + [aux_sym_addressof_expression_token1] = ACTIONS(9308), + [aux_sym_type_of_expression_token1] = ACTIONS(9308), + [aux_sym_unary_expression_token1] = ACTIONS(9308), + [sym_string_literal] = ACTIONS(9310), + [sym_number_literal] = ACTIONS(9310), + [aux_sym_boolean_literal_token1] = ACTIONS(9308), + [aux_sym_boolean_literal_token2] = ACTIONS(9308), + [sym_nothing_literal] = ACTIONS(9308), + [sym_null_literal] = ACTIONS(9308), + [sym_empty_literal] = ACTIONS(9308), + [sym_date_literal] = ACTIONS(9310), + [anon_sym_POUND] = ACTIONS(9308), + }, + [STATE(4486)] = { + [sym_identifier] = ACTIONS(9312), + [sym_newline] = ACTIONS(9314), + [anon_sym_COLON] = ACTIONS(9314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9312), + [aux_sym_frm_property_statement_token1] = ACTIONS(9312), + [anon_sym_DOT] = ACTIONS(9312), + [anon_sym_BANG] = ACTIONS(9314), + [aux_sym__attribute_identifier_token1] = ACTIONS(9312), + [aux_sym_option_statement_token3] = ACTIONS(9312), + [aux_sym_type_declaration_token1] = ACTIONS(9312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9312), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9312), + [aux_sym_enum_declaration_token1] = ACTIONS(9312), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9312), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9312), + [aux_sym_declare_function_statement_token1] = ACTIONS(9312), + [aux_sym_preprocessor_const_token1] = ACTIONS(9312), + [aux_sym__property_get_header_token1] = ACTIONS(9312), + [aux_sym_event_declaration_token1] = ACTIONS(9312), + [sym_static_modifier] = ACTIONS(9312), + [sym__dim_keyword] = ACTIONS(9312), + [sym__redim_keyword] = ACTIONS(9312), + [aux_sym_get_accessor_token1] = ACTIONS(9312), + [aux_sym_set_accessor_token1] = ACTIONS(9312), + [aux_sym_const_declaration_token1] = ACTIONS(9312), + [anon_sym_LPAREN] = ACTIONS(9314), + [aux_sym_as_type_clause_token2] = ACTIONS(9312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9312), + [aux_sym_visibility_token1] = ACTIONS(9312), + [aux_sym_visibility_token2] = ACTIONS(9312), + [aux_sym_elseif_fragment_token1] = ACTIONS(9312), + [aux_sym_else_fragment_token1] = ACTIONS(9312), + [aux_sym_select_statement_token1] = ACTIONS(9312), + [aux_sym__for_header_token1] = ACTIONS(9312), + [aux_sym_do_statement_token1] = ACTIONS(9312), + [aux_sym_do_condition_token1] = ACTIONS(9312), + [aux_sym_with_statement_token1] = ACTIONS(9312), + [aux_sym_exit_statement_token1] = ACTIONS(9312), + [sym_end_statement] = ACTIONS(9314), + [aux_sym_on_goto_statement_token1] = ACTIONS(9312), + [aux_sym_on_goto_statement_token2] = ACTIONS(9312), + [aux_sym_on_error_statement_token2] = ACTIONS(9312), + [sym__ambiguous_redim_statement] = ACTIONS(9314), + [aux_sym_erase_statement_token1] = ACTIONS(9312), + [aux_sym_open_statement_token1] = ACTIONS(9312), + [aux_sym_file_mode_token2] = ACTIONS(9312), + [aux_sym_file_access_token2] = ACTIONS(9312), + [aux_sym_file_lock_token2] = ACTIONS(9312), + [aux_sym_print_statement_token1] = ACTIONS(9312), + [anon_sym_PLUS] = ACTIONS(9314), + [anon_sym_DASH] = ACTIONS(9312), + [anon_sym_QMARK] = ACTIONS(9314), + [aux_sym_close_statement_token1] = ACTIONS(9312), + [aux_sym_put_statement_token1] = ACTIONS(9312), + [aux_sym_unlock_statement_token1] = ACTIONS(9312), + [aux_sym_seek_statement_token1] = ACTIONS(9312), + [sym_reset_statement] = ACTIONS(9312), + [aux_sym_raise_event_statement_token1] = ACTIONS(9312), + [sym_stop_statement] = ACTIONS(9312), + [sym_beep_statement] = ACTIONS(9312), + [aux_sym_unload_statement_token1] = ACTIONS(9312), + [aux_sym_def_type_statement_token1] = ACTIONS(9312), + [aux_sym_def_type_statement_token2] = ACTIONS(9312), + [aux_sym_def_type_statement_token3] = ACTIONS(9312), + [aux_sym_def_type_statement_token4] = ACTIONS(9312), + [aux_sym_def_type_statement_token5] = ACTIONS(9312), + [aux_sym_def_type_statement_token6] = ACTIONS(9312), + [aux_sym_def_type_statement_token7] = ACTIONS(9312), + [aux_sym_def_type_statement_token8] = ACTIONS(9312), + [aux_sym_def_type_statement_token9] = ACTIONS(9312), + [aux_sym_def_type_statement_token10] = ACTIONS(9312), + [aux_sym_def_type_statement_token11] = ACTIONS(9312), + [aux_sym_def_type_statement_token12] = ACTIONS(9312), + [aux_sym_def_type_statement_token13] = ACTIONS(9312), + [aux_sym_def_type_statement_token14] = ACTIONS(9312), + [aux_sym_call_statement_token1] = ACTIONS(9312), + [sym__ambiguous_call_statement] = ACTIONS(9312), + [aux_sym_addressof_expression_token1] = ACTIONS(9312), + [aux_sym_type_of_expression_token1] = ACTIONS(9312), + [aux_sym_unary_expression_token1] = ACTIONS(9312), + [sym_string_literal] = ACTIONS(9314), + [sym_number_literal] = ACTIONS(9314), + [aux_sym_boolean_literal_token1] = ACTIONS(9312), + [aux_sym_boolean_literal_token2] = ACTIONS(9312), + [sym_nothing_literal] = ACTIONS(9312), + [sym_null_literal] = ACTIONS(9312), + [sym_empty_literal] = ACTIONS(9312), + [sym_date_literal] = ACTIONS(9314), + [anon_sym_POUND] = ACTIONS(9312), + }, + [STATE(4487)] = { + [sym_identifier] = ACTIONS(9598), + [sym_newline] = ACTIONS(9600), + [anon_sym_COLON] = ACTIONS(9600), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9598), + [aux_sym_frm_property_statement_token1] = ACTIONS(9598), + [anon_sym_DOT] = ACTIONS(9598), + [anon_sym_BANG] = ACTIONS(9600), + [aux_sym__attribute_identifier_token1] = ACTIONS(9598), + [aux_sym_option_statement_token3] = ACTIONS(9598), + [aux_sym_type_declaration_token1] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9598), + [aux_sym_enum_declaration_token1] = ACTIONS(9598), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9598), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9598), + [aux_sym_declare_function_statement_token1] = ACTIONS(9598), + [aux_sym_preprocessor_const_token1] = ACTIONS(9598), + [aux_sym__property_get_header_token1] = ACTIONS(9598), + [aux_sym_event_declaration_token1] = ACTIONS(9598), + [sym_static_modifier] = ACTIONS(9598), + [sym__dim_keyword] = ACTIONS(9598), + [sym__redim_keyword] = ACTIONS(9598), + [aux_sym_get_accessor_token1] = ACTIONS(9598), + [aux_sym_set_accessor_token1] = ACTIONS(9598), + [aux_sym_const_declaration_token1] = ACTIONS(9598), + [anon_sym_LPAREN] = ACTIONS(9600), + [aux_sym_as_type_clause_token2] = ACTIONS(9598), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9598), + [aux_sym_visibility_token1] = ACTIONS(9598), + [aux_sym_visibility_token2] = ACTIONS(9598), + [aux_sym_elseif_fragment_token1] = ACTIONS(9598), + [aux_sym_else_fragment_token1] = ACTIONS(9598), + [aux_sym_select_statement_token1] = ACTIONS(9598), + [aux_sym__for_header_token1] = ACTIONS(9598), + [aux_sym_do_statement_token1] = ACTIONS(9598), + [aux_sym_do_condition_token1] = ACTIONS(9598), + [aux_sym_with_statement_token1] = ACTIONS(9598), + [aux_sym_exit_statement_token1] = ACTIONS(9598), + [sym_end_statement] = ACTIONS(9600), + [aux_sym_on_goto_statement_token1] = ACTIONS(9598), + [aux_sym_on_goto_statement_token2] = ACTIONS(9598), + [aux_sym_on_error_statement_token2] = ACTIONS(9598), + [sym__ambiguous_redim_statement] = ACTIONS(9600), + [aux_sym_erase_statement_token1] = ACTIONS(9598), + [aux_sym_open_statement_token1] = ACTIONS(9598), + [aux_sym_file_mode_token2] = ACTIONS(9598), + [aux_sym_file_access_token2] = ACTIONS(9598), + [aux_sym_file_lock_token2] = ACTIONS(9598), + [aux_sym_print_statement_token1] = ACTIONS(9598), + [anon_sym_PLUS] = ACTIONS(9600), + [anon_sym_DASH] = ACTIONS(9598), + [anon_sym_QMARK] = ACTIONS(9600), + [aux_sym_close_statement_token1] = ACTIONS(9598), + [aux_sym_put_statement_token1] = ACTIONS(9598), + [aux_sym_unlock_statement_token1] = ACTIONS(9598), + [aux_sym_seek_statement_token1] = ACTIONS(9598), + [sym_reset_statement] = ACTIONS(9598), + [aux_sym_raise_event_statement_token1] = ACTIONS(9598), + [sym_stop_statement] = ACTIONS(9598), + [sym_beep_statement] = ACTIONS(9598), + [aux_sym_unload_statement_token1] = ACTIONS(9598), + [aux_sym_def_type_statement_token1] = ACTIONS(9598), + [aux_sym_def_type_statement_token2] = ACTIONS(9598), + [aux_sym_def_type_statement_token3] = ACTIONS(9598), + [aux_sym_def_type_statement_token4] = ACTIONS(9598), + [aux_sym_def_type_statement_token5] = ACTIONS(9598), + [aux_sym_def_type_statement_token6] = ACTIONS(9598), + [aux_sym_def_type_statement_token7] = ACTIONS(9598), + [aux_sym_def_type_statement_token8] = ACTIONS(9598), + [aux_sym_def_type_statement_token9] = ACTIONS(9598), + [aux_sym_def_type_statement_token10] = ACTIONS(9598), + [aux_sym_def_type_statement_token11] = ACTIONS(9598), + [aux_sym_def_type_statement_token12] = ACTIONS(9598), + [aux_sym_def_type_statement_token13] = ACTIONS(9598), + [aux_sym_def_type_statement_token14] = ACTIONS(9598), + [aux_sym_call_statement_token1] = ACTIONS(9598), + [sym__ambiguous_call_statement] = ACTIONS(9598), + [aux_sym_addressof_expression_token1] = ACTIONS(9598), + [aux_sym_type_of_expression_token1] = ACTIONS(9598), + [aux_sym_unary_expression_token1] = ACTIONS(9598), + [sym_string_literal] = ACTIONS(9600), + [sym_number_literal] = ACTIONS(9600), + [aux_sym_boolean_literal_token1] = ACTIONS(9598), + [aux_sym_boolean_literal_token2] = ACTIONS(9598), + [sym_nothing_literal] = ACTIONS(9598), + [sym_null_literal] = ACTIONS(9598), + [sym_empty_literal] = ACTIONS(9598), + [sym_date_literal] = ACTIONS(9600), + [anon_sym_POUND] = ACTIONS(9598), + }, + [STATE(4488)] = { + [sym_identifier] = ACTIONS(9256), + [sym_newline] = ACTIONS(9258), + [anon_sym_COLON] = ACTIONS(9258), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9256), + [aux_sym_frm_property_statement_token1] = ACTIONS(9256), + [anon_sym_DOT] = ACTIONS(9256), + [anon_sym_BANG] = ACTIONS(9258), + [aux_sym__attribute_identifier_token1] = ACTIONS(9256), + [aux_sym_option_statement_token3] = ACTIONS(9256), + [aux_sym_type_declaration_token1] = ACTIONS(9256), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9256), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9256), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9256), + [aux_sym_enum_declaration_token1] = ACTIONS(9256), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9256), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9256), + [aux_sym_declare_function_statement_token1] = ACTIONS(9256), + [aux_sym_preprocessor_const_token1] = ACTIONS(9256), + [aux_sym__property_get_header_token1] = ACTIONS(9256), + [aux_sym_event_declaration_token1] = ACTIONS(9256), + [sym_static_modifier] = ACTIONS(9256), + [sym__dim_keyword] = ACTIONS(9256), + [sym__redim_keyword] = ACTIONS(9256), + [aux_sym_get_accessor_token1] = ACTIONS(9256), + [aux_sym_set_accessor_token1] = ACTIONS(9256), + [aux_sym_const_declaration_token1] = ACTIONS(9256), + [anon_sym_LPAREN] = ACTIONS(9258), + [aux_sym_as_type_clause_token2] = ACTIONS(9256), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9256), + [aux_sym_visibility_token1] = ACTIONS(9256), + [aux_sym_visibility_token2] = ACTIONS(9256), + [aux_sym_elseif_fragment_token1] = ACTIONS(9256), + [aux_sym_else_fragment_token1] = ACTIONS(9256), + [aux_sym_select_statement_token1] = ACTIONS(9256), + [aux_sym__for_header_token1] = ACTIONS(9256), + [aux_sym_do_statement_token1] = ACTIONS(9256), + [aux_sym_do_condition_token1] = ACTIONS(9256), + [aux_sym_with_statement_token1] = ACTIONS(9256), + [aux_sym_exit_statement_token1] = ACTIONS(9256), + [sym_end_statement] = ACTIONS(9258), + [aux_sym_on_goto_statement_token1] = ACTIONS(9256), + [aux_sym_on_goto_statement_token2] = ACTIONS(9256), + [aux_sym_on_error_statement_token2] = ACTIONS(9256), + [sym__ambiguous_redim_statement] = ACTIONS(9258), + [aux_sym_erase_statement_token1] = ACTIONS(9256), + [aux_sym_open_statement_token1] = ACTIONS(9256), + [aux_sym_file_mode_token2] = ACTIONS(9256), + [aux_sym_file_access_token2] = ACTIONS(9256), + [aux_sym_file_lock_token2] = ACTIONS(9256), + [aux_sym_print_statement_token1] = ACTIONS(9256), + [anon_sym_PLUS] = ACTIONS(9258), + [anon_sym_DASH] = ACTIONS(9256), + [anon_sym_QMARK] = ACTIONS(9258), + [aux_sym_close_statement_token1] = ACTIONS(9256), + [aux_sym_put_statement_token1] = ACTIONS(9256), + [aux_sym_unlock_statement_token1] = ACTIONS(9256), + [aux_sym_seek_statement_token1] = ACTIONS(9256), + [sym_reset_statement] = ACTIONS(9256), + [aux_sym_raise_event_statement_token1] = ACTIONS(9256), + [sym_stop_statement] = ACTIONS(9256), + [sym_beep_statement] = ACTIONS(9256), + [aux_sym_unload_statement_token1] = ACTIONS(9256), + [aux_sym_def_type_statement_token1] = ACTIONS(9256), + [aux_sym_def_type_statement_token2] = ACTIONS(9256), + [aux_sym_def_type_statement_token3] = ACTIONS(9256), + [aux_sym_def_type_statement_token4] = ACTIONS(9256), + [aux_sym_def_type_statement_token5] = ACTIONS(9256), + [aux_sym_def_type_statement_token6] = ACTIONS(9256), + [aux_sym_def_type_statement_token7] = ACTIONS(9256), + [aux_sym_def_type_statement_token8] = ACTIONS(9256), + [aux_sym_def_type_statement_token9] = ACTIONS(9256), + [aux_sym_def_type_statement_token10] = ACTIONS(9256), + [aux_sym_def_type_statement_token11] = ACTIONS(9256), + [aux_sym_def_type_statement_token12] = ACTIONS(9256), + [aux_sym_def_type_statement_token13] = ACTIONS(9256), + [aux_sym_def_type_statement_token14] = ACTIONS(9256), + [aux_sym_call_statement_token1] = ACTIONS(9256), + [sym__ambiguous_call_statement] = ACTIONS(9256), + [aux_sym_addressof_expression_token1] = ACTIONS(9256), + [aux_sym_type_of_expression_token1] = ACTIONS(9256), + [aux_sym_unary_expression_token1] = ACTIONS(9256), + [sym_string_literal] = ACTIONS(9258), + [sym_number_literal] = ACTIONS(9258), + [aux_sym_boolean_literal_token1] = ACTIONS(9256), + [aux_sym_boolean_literal_token2] = ACTIONS(9256), + [sym_nothing_literal] = ACTIONS(9256), + [sym_null_literal] = ACTIONS(9256), + [sym_empty_literal] = ACTIONS(9256), + [sym_date_literal] = ACTIONS(9258), + [anon_sym_POUND] = ACTIONS(9256), + }, + [STATE(4489)] = { + [sym_identifier] = ACTIONS(8813), + [sym_newline] = ACTIONS(8815), + [anon_sym_COLON] = ACTIONS(8815), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8813), + [aux_sym_frm_property_statement_token1] = ACTIONS(8813), + [anon_sym_DOT] = ACTIONS(8813), + [anon_sym_BANG] = ACTIONS(8815), + [aux_sym__attribute_identifier_token1] = ACTIONS(8813), + [aux_sym_option_statement_token3] = ACTIONS(8813), + [aux_sym_type_declaration_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8813), + [aux_sym_enum_declaration_token1] = ACTIONS(8813), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8813), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8813), + [aux_sym_declare_function_statement_token1] = ACTIONS(8813), + [aux_sym_preprocessor_const_token1] = ACTIONS(8813), + [aux_sym__property_get_header_token1] = ACTIONS(8813), + [aux_sym_event_declaration_token1] = ACTIONS(8813), + [sym_static_modifier] = ACTIONS(8813), + [sym__dim_keyword] = ACTIONS(8813), + [sym__redim_keyword] = ACTIONS(8813), + [aux_sym_get_accessor_token1] = ACTIONS(8813), + [aux_sym_set_accessor_token1] = ACTIONS(8813), + [aux_sym_const_declaration_token1] = ACTIONS(8813), + [anon_sym_LPAREN] = ACTIONS(8815), + [aux_sym_as_type_clause_token2] = ACTIONS(8813), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8813), + [aux_sym_visibility_token1] = ACTIONS(8813), + [aux_sym_visibility_token2] = ACTIONS(8813), + [aux_sym_elseif_fragment_token1] = ACTIONS(8813), + [aux_sym_else_fragment_token1] = ACTIONS(8813), + [aux_sym_select_statement_token1] = ACTIONS(8813), + [aux_sym__for_header_token1] = ACTIONS(8813), + [aux_sym_do_statement_token1] = ACTIONS(8813), + [aux_sym_do_condition_token1] = ACTIONS(8813), + [aux_sym_with_statement_token1] = ACTIONS(8813), + [aux_sym_exit_statement_token1] = ACTIONS(8813), + [sym_end_statement] = ACTIONS(8815), + [aux_sym_on_goto_statement_token1] = ACTIONS(8813), + [aux_sym_on_goto_statement_token2] = ACTIONS(8813), + [aux_sym_on_error_statement_token2] = ACTIONS(8813), + [sym__ambiguous_redim_statement] = ACTIONS(8815), + [aux_sym_erase_statement_token1] = ACTIONS(8813), + [aux_sym_open_statement_token1] = ACTIONS(8813), + [aux_sym_file_mode_token2] = ACTIONS(8813), + [aux_sym_file_access_token2] = ACTIONS(8813), + [aux_sym_file_lock_token2] = ACTIONS(8813), + [aux_sym_print_statement_token1] = ACTIONS(8813), + [anon_sym_PLUS] = ACTIONS(8815), + [anon_sym_DASH] = ACTIONS(8813), + [anon_sym_QMARK] = ACTIONS(8815), + [aux_sym_close_statement_token1] = ACTIONS(8813), + [aux_sym_put_statement_token1] = ACTIONS(8813), + [aux_sym_unlock_statement_token1] = ACTIONS(8813), + [aux_sym_seek_statement_token1] = ACTIONS(8813), + [sym_reset_statement] = ACTIONS(8813), + [aux_sym_raise_event_statement_token1] = ACTIONS(8813), + [sym_stop_statement] = ACTIONS(8813), + [sym_beep_statement] = ACTIONS(8813), + [aux_sym_unload_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token2] = ACTIONS(8813), + [aux_sym_def_type_statement_token3] = ACTIONS(8813), + [aux_sym_def_type_statement_token4] = ACTIONS(8813), + [aux_sym_def_type_statement_token5] = ACTIONS(8813), + [aux_sym_def_type_statement_token6] = ACTIONS(8813), + [aux_sym_def_type_statement_token7] = ACTIONS(8813), + [aux_sym_def_type_statement_token8] = ACTIONS(8813), + [aux_sym_def_type_statement_token9] = ACTIONS(8813), + [aux_sym_def_type_statement_token10] = ACTIONS(8813), + [aux_sym_def_type_statement_token11] = ACTIONS(8813), + [aux_sym_def_type_statement_token12] = ACTIONS(8813), + [aux_sym_def_type_statement_token13] = ACTIONS(8813), + [aux_sym_def_type_statement_token14] = ACTIONS(8813), + [aux_sym_call_statement_token1] = ACTIONS(8813), + [sym__ambiguous_call_statement] = ACTIONS(8813), + [aux_sym_addressof_expression_token1] = ACTIONS(8813), + [aux_sym_type_of_expression_token1] = ACTIONS(8813), + [aux_sym_unary_expression_token1] = ACTIONS(8813), + [sym_string_literal] = ACTIONS(8815), + [sym_number_literal] = ACTIONS(8815), + [aux_sym_boolean_literal_token1] = ACTIONS(8813), + [aux_sym_boolean_literal_token2] = ACTIONS(8813), + [sym_nothing_literal] = ACTIONS(8813), + [sym_null_literal] = ACTIONS(8813), + [sym_empty_literal] = ACTIONS(8813), + [sym_date_literal] = ACTIONS(8815), + [anon_sym_POUND] = ACTIONS(8813), + }, + [STATE(4490)] = { + [sym_identifier] = ACTIONS(9639), + [sym_newline] = ACTIONS(9641), + [anon_sym_COLON] = ACTIONS(9641), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9639), + [aux_sym_frm_property_statement_token1] = ACTIONS(9639), + [anon_sym_DOT] = ACTIONS(9639), + [anon_sym_BANG] = ACTIONS(9641), + [aux_sym__attribute_identifier_token1] = ACTIONS(9639), + [aux_sym_option_statement_token3] = ACTIONS(9639), + [aux_sym_type_declaration_token1] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9639), + [aux_sym_enum_declaration_token1] = ACTIONS(9639), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9639), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9639), + [aux_sym_declare_function_statement_token1] = ACTIONS(9639), + [aux_sym_preprocessor_const_token1] = ACTIONS(9639), + [aux_sym__property_get_header_token1] = ACTIONS(9639), + [aux_sym_event_declaration_token1] = ACTIONS(9639), + [sym_static_modifier] = ACTIONS(9639), + [sym__dim_keyword] = ACTIONS(9639), + [sym__redim_keyword] = ACTIONS(9639), + [aux_sym_get_accessor_token1] = ACTIONS(9639), + [aux_sym_set_accessor_token1] = ACTIONS(9639), + [aux_sym_const_declaration_token1] = ACTIONS(9639), + [anon_sym_LPAREN] = ACTIONS(9641), + [aux_sym_as_type_clause_token2] = ACTIONS(9639), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9639), + [aux_sym_visibility_token1] = ACTIONS(9639), + [aux_sym_visibility_token2] = ACTIONS(9639), + [aux_sym_elseif_fragment_token1] = ACTIONS(9639), + [aux_sym_else_fragment_token1] = ACTIONS(9639), + [aux_sym_select_statement_token1] = ACTIONS(9639), + [aux_sym__for_header_token1] = ACTIONS(9639), + [aux_sym_do_statement_token1] = ACTIONS(9639), + [aux_sym_do_condition_token1] = ACTIONS(9639), + [aux_sym_with_statement_token1] = ACTIONS(9639), + [aux_sym_exit_statement_token1] = ACTIONS(9639), + [sym_end_statement] = ACTIONS(9641), + [aux_sym_on_goto_statement_token1] = ACTIONS(9639), + [aux_sym_on_goto_statement_token2] = ACTIONS(9639), + [aux_sym_on_error_statement_token2] = ACTIONS(9639), + [sym__ambiguous_redim_statement] = ACTIONS(9641), + [aux_sym_erase_statement_token1] = ACTIONS(9639), + [aux_sym_open_statement_token1] = ACTIONS(9639), + [aux_sym_file_mode_token2] = ACTIONS(9639), + [aux_sym_file_access_token2] = ACTIONS(9639), + [aux_sym_file_lock_token2] = ACTIONS(9639), + [aux_sym_print_statement_token1] = ACTIONS(9639), + [anon_sym_PLUS] = ACTIONS(9641), + [anon_sym_DASH] = ACTIONS(9639), + [anon_sym_QMARK] = ACTIONS(9641), + [aux_sym_close_statement_token1] = ACTIONS(9639), + [aux_sym_put_statement_token1] = ACTIONS(9639), + [aux_sym_unlock_statement_token1] = ACTIONS(9639), + [aux_sym_seek_statement_token1] = ACTIONS(9639), + [sym_reset_statement] = ACTIONS(9639), + [aux_sym_raise_event_statement_token1] = ACTIONS(9639), + [sym_stop_statement] = ACTIONS(9639), + [sym_beep_statement] = ACTIONS(9639), + [aux_sym_unload_statement_token1] = ACTIONS(9639), + [aux_sym_def_type_statement_token1] = ACTIONS(9639), + [aux_sym_def_type_statement_token2] = ACTIONS(9639), + [aux_sym_def_type_statement_token3] = ACTIONS(9639), + [aux_sym_def_type_statement_token4] = ACTIONS(9639), + [aux_sym_def_type_statement_token5] = ACTIONS(9639), + [aux_sym_def_type_statement_token6] = ACTIONS(9639), + [aux_sym_def_type_statement_token7] = ACTIONS(9639), + [aux_sym_def_type_statement_token8] = ACTIONS(9639), + [aux_sym_def_type_statement_token9] = ACTIONS(9639), + [aux_sym_def_type_statement_token10] = ACTIONS(9639), + [aux_sym_def_type_statement_token11] = ACTIONS(9639), + [aux_sym_def_type_statement_token12] = ACTIONS(9639), + [aux_sym_def_type_statement_token13] = ACTIONS(9639), + [aux_sym_def_type_statement_token14] = ACTIONS(9639), + [aux_sym_call_statement_token1] = ACTIONS(9639), + [sym__ambiguous_call_statement] = ACTIONS(9639), + [aux_sym_addressof_expression_token1] = ACTIONS(9639), + [aux_sym_type_of_expression_token1] = ACTIONS(9639), + [aux_sym_unary_expression_token1] = ACTIONS(9639), + [sym_string_literal] = ACTIONS(9641), + [sym_number_literal] = ACTIONS(9641), + [aux_sym_boolean_literal_token1] = ACTIONS(9639), + [aux_sym_boolean_literal_token2] = ACTIONS(9639), + [sym_nothing_literal] = ACTIONS(9639), + [sym_null_literal] = ACTIONS(9639), + [sym_empty_literal] = ACTIONS(9639), + [sym_date_literal] = ACTIONS(9641), + [anon_sym_POUND] = ACTIONS(9639), + }, + [STATE(4491)] = { + [sym_identifier] = ACTIONS(9643), + [sym_newline] = ACTIONS(9645), + [anon_sym_COLON] = ACTIONS(9645), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9643), + [aux_sym_frm_property_statement_token1] = ACTIONS(9643), + [anon_sym_DOT] = ACTIONS(9643), + [anon_sym_BANG] = ACTIONS(9645), + [aux_sym__attribute_identifier_token1] = ACTIONS(9643), + [aux_sym_option_statement_token3] = ACTIONS(9643), + [aux_sym_type_declaration_token1] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9643), + [aux_sym_enum_declaration_token1] = ACTIONS(9643), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9643), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9643), + [aux_sym_declare_function_statement_token1] = ACTIONS(9643), + [aux_sym_preprocessor_const_token1] = ACTIONS(9643), + [aux_sym__property_get_header_token1] = ACTIONS(9643), + [aux_sym_event_declaration_token1] = ACTIONS(9643), + [sym_static_modifier] = ACTIONS(9643), + [sym__dim_keyword] = ACTIONS(9643), + [sym__redim_keyword] = ACTIONS(9643), + [aux_sym_get_accessor_token1] = ACTIONS(9643), + [aux_sym_set_accessor_token1] = ACTIONS(9643), + [aux_sym_const_declaration_token1] = ACTIONS(9643), + [anon_sym_LPAREN] = ACTIONS(9645), + [aux_sym_as_type_clause_token2] = ACTIONS(9643), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9643), + [aux_sym_visibility_token1] = ACTIONS(9643), + [aux_sym_visibility_token2] = ACTIONS(9643), + [aux_sym_elseif_fragment_token1] = ACTIONS(9643), + [aux_sym_else_fragment_token1] = ACTIONS(9643), + [aux_sym_select_statement_token1] = ACTIONS(9643), + [aux_sym__for_header_token1] = ACTIONS(9643), + [aux_sym_do_statement_token1] = ACTIONS(9643), + [aux_sym_do_condition_token1] = ACTIONS(9643), + [aux_sym_with_statement_token1] = ACTIONS(9643), + [aux_sym_exit_statement_token1] = ACTIONS(9643), + [sym_end_statement] = ACTIONS(9645), + [aux_sym_on_goto_statement_token1] = ACTIONS(9643), + [aux_sym_on_goto_statement_token2] = ACTIONS(9643), + [aux_sym_on_error_statement_token2] = ACTIONS(9643), + [sym__ambiguous_redim_statement] = ACTIONS(9645), + [aux_sym_erase_statement_token1] = ACTIONS(9643), + [aux_sym_open_statement_token1] = ACTIONS(9643), + [aux_sym_file_mode_token2] = ACTIONS(9643), + [aux_sym_file_access_token2] = ACTIONS(9643), + [aux_sym_file_lock_token2] = ACTIONS(9643), + [aux_sym_print_statement_token1] = ACTIONS(9643), + [anon_sym_PLUS] = ACTIONS(9645), + [anon_sym_DASH] = ACTIONS(9643), + [anon_sym_QMARK] = ACTIONS(9645), + [aux_sym_close_statement_token1] = ACTIONS(9643), + [aux_sym_put_statement_token1] = ACTIONS(9643), + [aux_sym_unlock_statement_token1] = ACTIONS(9643), + [aux_sym_seek_statement_token1] = ACTIONS(9643), + [sym_reset_statement] = ACTIONS(9643), + [aux_sym_raise_event_statement_token1] = ACTIONS(9643), + [sym_stop_statement] = ACTIONS(9643), + [sym_beep_statement] = ACTIONS(9643), + [aux_sym_unload_statement_token1] = ACTIONS(9643), + [aux_sym_def_type_statement_token1] = ACTIONS(9643), + [aux_sym_def_type_statement_token2] = ACTIONS(9643), + [aux_sym_def_type_statement_token3] = ACTIONS(9643), + [aux_sym_def_type_statement_token4] = ACTIONS(9643), + [aux_sym_def_type_statement_token5] = ACTIONS(9643), + [aux_sym_def_type_statement_token6] = ACTIONS(9643), + [aux_sym_def_type_statement_token7] = ACTIONS(9643), + [aux_sym_def_type_statement_token8] = ACTIONS(9643), + [aux_sym_def_type_statement_token9] = ACTIONS(9643), + [aux_sym_def_type_statement_token10] = ACTIONS(9643), + [aux_sym_def_type_statement_token11] = ACTIONS(9643), + [aux_sym_def_type_statement_token12] = ACTIONS(9643), + [aux_sym_def_type_statement_token13] = ACTIONS(9643), + [aux_sym_def_type_statement_token14] = ACTIONS(9643), + [aux_sym_call_statement_token1] = ACTIONS(9643), + [sym__ambiguous_call_statement] = ACTIONS(9643), + [aux_sym_addressof_expression_token1] = ACTIONS(9643), + [aux_sym_type_of_expression_token1] = ACTIONS(9643), + [aux_sym_unary_expression_token1] = ACTIONS(9643), + [sym_string_literal] = ACTIONS(9645), + [sym_number_literal] = ACTIONS(9645), + [aux_sym_boolean_literal_token1] = ACTIONS(9643), + [aux_sym_boolean_literal_token2] = ACTIONS(9643), + [sym_nothing_literal] = ACTIONS(9643), + [sym_null_literal] = ACTIONS(9643), + [sym_empty_literal] = ACTIONS(9643), + [sym_date_literal] = ACTIONS(9645), + [anon_sym_POUND] = ACTIONS(9643), + }, + [STATE(4492)] = { + [sym_identifier] = ACTIONS(9647), + [sym_newline] = ACTIONS(9649), + [anon_sym_COLON] = ACTIONS(9649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9647), + [aux_sym_frm_property_statement_token1] = ACTIONS(9647), + [anon_sym_DOT] = ACTIONS(9647), + [anon_sym_BANG] = ACTIONS(9649), + [aux_sym__attribute_identifier_token1] = ACTIONS(9647), + [aux_sym_option_statement_token3] = ACTIONS(9647), + [aux_sym_type_declaration_token1] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9647), + [aux_sym_enum_declaration_token1] = ACTIONS(9647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9647), + [aux_sym_declare_function_statement_token1] = ACTIONS(9647), + [aux_sym_preprocessor_const_token1] = ACTIONS(9647), + [aux_sym__property_get_header_token1] = ACTIONS(9647), + [aux_sym_event_declaration_token1] = ACTIONS(9647), + [sym_static_modifier] = ACTIONS(9647), + [sym__dim_keyword] = ACTIONS(9647), + [sym__redim_keyword] = ACTIONS(9647), + [aux_sym_get_accessor_token1] = ACTIONS(9647), + [aux_sym_set_accessor_token1] = ACTIONS(9647), + [aux_sym_const_declaration_token1] = ACTIONS(9647), + [anon_sym_LPAREN] = ACTIONS(9649), + [aux_sym_as_type_clause_token2] = ACTIONS(9647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9647), + [aux_sym_visibility_token1] = ACTIONS(9647), + [aux_sym_visibility_token2] = ACTIONS(9647), + [aux_sym_elseif_fragment_token1] = ACTIONS(9647), + [aux_sym_else_fragment_token1] = ACTIONS(9647), + [aux_sym_select_statement_token1] = ACTIONS(9647), + [aux_sym__for_header_token1] = ACTIONS(9647), + [aux_sym_do_statement_token1] = ACTIONS(9647), + [aux_sym_do_condition_token1] = ACTIONS(9647), + [aux_sym_with_statement_token1] = ACTIONS(9647), + [aux_sym_exit_statement_token1] = ACTIONS(9647), + [sym_end_statement] = ACTIONS(9649), + [aux_sym_on_goto_statement_token1] = ACTIONS(9647), + [aux_sym_on_goto_statement_token2] = ACTIONS(9647), + [aux_sym_on_error_statement_token2] = ACTIONS(9647), + [sym__ambiguous_redim_statement] = ACTIONS(9649), + [aux_sym_erase_statement_token1] = ACTIONS(9647), + [aux_sym_open_statement_token1] = ACTIONS(9647), + [aux_sym_file_mode_token2] = ACTIONS(9647), + [aux_sym_file_access_token2] = ACTIONS(9647), + [aux_sym_file_lock_token2] = ACTIONS(9647), + [aux_sym_print_statement_token1] = ACTIONS(9647), + [anon_sym_PLUS] = ACTIONS(9649), + [anon_sym_DASH] = ACTIONS(9647), + [anon_sym_QMARK] = ACTIONS(9649), + [aux_sym_close_statement_token1] = ACTIONS(9647), + [aux_sym_put_statement_token1] = ACTIONS(9647), + [aux_sym_unlock_statement_token1] = ACTIONS(9647), + [aux_sym_seek_statement_token1] = ACTIONS(9647), + [sym_reset_statement] = ACTIONS(9647), + [aux_sym_raise_event_statement_token1] = ACTIONS(9647), + [sym_stop_statement] = ACTIONS(9647), + [sym_beep_statement] = ACTIONS(9647), + [aux_sym_unload_statement_token1] = ACTIONS(9647), + [aux_sym_def_type_statement_token1] = ACTIONS(9647), + [aux_sym_def_type_statement_token2] = ACTIONS(9647), + [aux_sym_def_type_statement_token3] = ACTIONS(9647), + [aux_sym_def_type_statement_token4] = ACTIONS(9647), + [aux_sym_def_type_statement_token5] = ACTIONS(9647), + [aux_sym_def_type_statement_token6] = ACTIONS(9647), + [aux_sym_def_type_statement_token7] = ACTIONS(9647), + [aux_sym_def_type_statement_token8] = ACTIONS(9647), + [aux_sym_def_type_statement_token9] = ACTIONS(9647), + [aux_sym_def_type_statement_token10] = ACTIONS(9647), + [aux_sym_def_type_statement_token11] = ACTIONS(9647), + [aux_sym_def_type_statement_token12] = ACTIONS(9647), + [aux_sym_def_type_statement_token13] = ACTIONS(9647), + [aux_sym_def_type_statement_token14] = ACTIONS(9647), + [aux_sym_call_statement_token1] = ACTIONS(9647), + [sym__ambiguous_call_statement] = ACTIONS(9647), + [aux_sym_addressof_expression_token1] = ACTIONS(9647), + [aux_sym_type_of_expression_token1] = ACTIONS(9647), + [aux_sym_unary_expression_token1] = ACTIONS(9647), + [sym_string_literal] = ACTIONS(9649), + [sym_number_literal] = ACTIONS(9649), + [aux_sym_boolean_literal_token1] = ACTIONS(9647), + [aux_sym_boolean_literal_token2] = ACTIONS(9647), + [sym_nothing_literal] = ACTIONS(9647), + [sym_null_literal] = ACTIONS(9647), + [sym_empty_literal] = ACTIONS(9647), + [sym_date_literal] = ACTIONS(9649), + [anon_sym_POUND] = ACTIONS(9647), + }, + [STATE(4493)] = { + [sym_identifier] = ACTIONS(9654), + [sym_newline] = ACTIONS(9656), + [anon_sym_COLON] = ACTIONS(9656), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9654), + [aux_sym_frm_property_statement_token1] = ACTIONS(9654), + [anon_sym_DOT] = ACTIONS(9654), + [anon_sym_BANG] = ACTIONS(9656), + [aux_sym__attribute_identifier_token1] = ACTIONS(9654), + [aux_sym_option_statement_token3] = ACTIONS(9654), + [aux_sym_type_declaration_token1] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9654), + [aux_sym_enum_declaration_token1] = ACTIONS(9654), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9654), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9654), + [aux_sym_declare_function_statement_token1] = ACTIONS(9654), + [aux_sym_preprocessor_const_token1] = ACTIONS(9654), + [aux_sym__property_get_header_token1] = ACTIONS(9654), + [aux_sym_event_declaration_token1] = ACTIONS(9654), + [sym_static_modifier] = ACTIONS(9654), + [sym__dim_keyword] = ACTIONS(9654), + [sym__redim_keyword] = ACTIONS(9654), + [aux_sym_get_accessor_token1] = ACTIONS(9654), + [aux_sym_set_accessor_token1] = ACTIONS(9654), + [aux_sym_const_declaration_token1] = ACTIONS(9654), + [anon_sym_LPAREN] = ACTIONS(9656), + [aux_sym_as_type_clause_token2] = ACTIONS(9654), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9654), + [aux_sym_visibility_token1] = ACTIONS(9654), + [aux_sym_visibility_token2] = ACTIONS(9654), + [aux_sym_elseif_fragment_token1] = ACTIONS(9654), + [aux_sym_else_fragment_token1] = ACTIONS(9654), + [aux_sym_select_statement_token1] = ACTIONS(9654), + [aux_sym__for_header_token1] = ACTIONS(9654), + [aux_sym_do_statement_token1] = ACTIONS(9654), + [aux_sym_do_condition_token1] = ACTIONS(9654), + [aux_sym_with_statement_token1] = ACTIONS(9654), + [aux_sym_exit_statement_token1] = ACTIONS(9654), + [sym_end_statement] = ACTIONS(9656), + [aux_sym_on_goto_statement_token1] = ACTIONS(9654), + [aux_sym_on_goto_statement_token2] = ACTIONS(9654), + [aux_sym_on_error_statement_token2] = ACTIONS(9654), + [sym__ambiguous_redim_statement] = ACTIONS(9656), + [aux_sym_erase_statement_token1] = ACTIONS(9654), + [aux_sym_open_statement_token1] = ACTIONS(9654), + [aux_sym_file_mode_token2] = ACTIONS(9654), + [aux_sym_file_access_token2] = ACTIONS(9654), + [aux_sym_file_lock_token2] = ACTIONS(9654), + [aux_sym_print_statement_token1] = ACTIONS(9654), + [anon_sym_PLUS] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(9654), + [anon_sym_QMARK] = ACTIONS(9656), + [aux_sym_close_statement_token1] = ACTIONS(9654), + [aux_sym_put_statement_token1] = ACTIONS(9654), + [aux_sym_unlock_statement_token1] = ACTIONS(9654), + [aux_sym_seek_statement_token1] = ACTIONS(9654), + [sym_reset_statement] = ACTIONS(9654), + [aux_sym_raise_event_statement_token1] = ACTIONS(9654), + [sym_stop_statement] = ACTIONS(9654), + [sym_beep_statement] = ACTIONS(9654), + [aux_sym_unload_statement_token1] = ACTIONS(9654), + [aux_sym_def_type_statement_token1] = ACTIONS(9654), + [aux_sym_def_type_statement_token2] = ACTIONS(9654), + [aux_sym_def_type_statement_token3] = ACTIONS(9654), + [aux_sym_def_type_statement_token4] = ACTIONS(9654), + [aux_sym_def_type_statement_token5] = ACTIONS(9654), + [aux_sym_def_type_statement_token6] = ACTIONS(9654), + [aux_sym_def_type_statement_token7] = ACTIONS(9654), + [aux_sym_def_type_statement_token8] = ACTIONS(9654), + [aux_sym_def_type_statement_token9] = ACTIONS(9654), + [aux_sym_def_type_statement_token10] = ACTIONS(9654), + [aux_sym_def_type_statement_token11] = ACTIONS(9654), + [aux_sym_def_type_statement_token12] = ACTIONS(9654), + [aux_sym_def_type_statement_token13] = ACTIONS(9654), + [aux_sym_def_type_statement_token14] = ACTIONS(9654), + [aux_sym_call_statement_token1] = ACTIONS(9654), + [sym__ambiguous_call_statement] = ACTIONS(9654), + [aux_sym_addressof_expression_token1] = ACTIONS(9654), + [aux_sym_type_of_expression_token1] = ACTIONS(9654), + [aux_sym_unary_expression_token1] = ACTIONS(9654), + [sym_string_literal] = ACTIONS(9656), + [sym_number_literal] = ACTIONS(9656), + [aux_sym_boolean_literal_token1] = ACTIONS(9654), + [aux_sym_boolean_literal_token2] = ACTIONS(9654), + [sym_nothing_literal] = ACTIONS(9654), + [sym_null_literal] = ACTIONS(9654), + [sym_empty_literal] = ACTIONS(9654), + [sym_date_literal] = ACTIONS(9656), + [anon_sym_POUND] = ACTIONS(9654), + }, + [STATE(4494)] = { + [sym_identifier] = ACTIONS(9662), + [sym_newline] = ACTIONS(9664), + [anon_sym_COLON] = ACTIONS(9664), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9662), + [aux_sym_frm_property_statement_token1] = ACTIONS(9662), + [anon_sym_DOT] = ACTIONS(9662), + [anon_sym_BANG] = ACTIONS(9664), + [aux_sym__attribute_identifier_token1] = ACTIONS(9662), + [aux_sym_option_statement_token3] = ACTIONS(9662), + [aux_sym_type_declaration_token1] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9662), + [aux_sym_enum_declaration_token1] = ACTIONS(9662), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9662), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9662), + [aux_sym_declare_function_statement_token1] = ACTIONS(9662), + [aux_sym_preprocessor_const_token1] = ACTIONS(9662), + [aux_sym__property_get_header_token1] = ACTIONS(9662), + [aux_sym_event_declaration_token1] = ACTIONS(9662), + [sym_static_modifier] = ACTIONS(9662), + [sym__dim_keyword] = ACTIONS(9662), + [sym__redim_keyword] = ACTIONS(9662), + [aux_sym_get_accessor_token1] = ACTIONS(9662), + [aux_sym_set_accessor_token1] = ACTIONS(9662), + [aux_sym_const_declaration_token1] = ACTIONS(9662), + [anon_sym_LPAREN] = ACTIONS(9664), + [aux_sym_as_type_clause_token2] = ACTIONS(9662), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9662), + [aux_sym_visibility_token1] = ACTIONS(9662), + [aux_sym_visibility_token2] = ACTIONS(9662), + [aux_sym_elseif_fragment_token1] = ACTIONS(9662), + [aux_sym_else_fragment_token1] = ACTIONS(9662), + [aux_sym_select_statement_token1] = ACTIONS(9662), + [aux_sym__for_header_token1] = ACTIONS(9662), + [aux_sym_do_statement_token1] = ACTIONS(9662), + [aux_sym_do_condition_token1] = ACTIONS(9662), + [aux_sym_with_statement_token1] = ACTIONS(9662), + [aux_sym_exit_statement_token1] = ACTIONS(9662), + [sym_end_statement] = ACTIONS(9664), + [aux_sym_on_goto_statement_token1] = ACTIONS(9662), + [aux_sym_on_goto_statement_token2] = ACTIONS(9662), + [aux_sym_on_error_statement_token2] = ACTIONS(9662), + [sym__ambiguous_redim_statement] = ACTIONS(9664), + [aux_sym_erase_statement_token1] = ACTIONS(9662), + [aux_sym_open_statement_token1] = ACTIONS(9662), + [aux_sym_file_mode_token2] = ACTIONS(9662), + [aux_sym_file_access_token2] = ACTIONS(9662), + [aux_sym_file_lock_token2] = ACTIONS(9662), + [aux_sym_print_statement_token1] = ACTIONS(9662), + [anon_sym_PLUS] = ACTIONS(9664), + [anon_sym_DASH] = ACTIONS(9662), + [anon_sym_QMARK] = ACTIONS(9664), + [aux_sym_close_statement_token1] = ACTIONS(9662), + [aux_sym_put_statement_token1] = ACTIONS(9662), + [aux_sym_unlock_statement_token1] = ACTIONS(9662), + [aux_sym_seek_statement_token1] = ACTIONS(9662), + [sym_reset_statement] = ACTIONS(9662), + [aux_sym_raise_event_statement_token1] = ACTIONS(9662), + [sym_stop_statement] = ACTIONS(9662), + [sym_beep_statement] = ACTIONS(9662), + [aux_sym_unload_statement_token1] = ACTIONS(9662), + [aux_sym_def_type_statement_token1] = ACTIONS(9662), + [aux_sym_def_type_statement_token2] = ACTIONS(9662), + [aux_sym_def_type_statement_token3] = ACTIONS(9662), + [aux_sym_def_type_statement_token4] = ACTIONS(9662), + [aux_sym_def_type_statement_token5] = ACTIONS(9662), + [aux_sym_def_type_statement_token6] = ACTIONS(9662), + [aux_sym_def_type_statement_token7] = ACTIONS(9662), + [aux_sym_def_type_statement_token8] = ACTIONS(9662), + [aux_sym_def_type_statement_token9] = ACTIONS(9662), + [aux_sym_def_type_statement_token10] = ACTIONS(9662), + [aux_sym_def_type_statement_token11] = ACTIONS(9662), + [aux_sym_def_type_statement_token12] = ACTIONS(9662), + [aux_sym_def_type_statement_token13] = ACTIONS(9662), + [aux_sym_def_type_statement_token14] = ACTIONS(9662), + [aux_sym_call_statement_token1] = ACTIONS(9662), + [sym__ambiguous_call_statement] = ACTIONS(9662), + [aux_sym_addressof_expression_token1] = ACTIONS(9662), + [aux_sym_type_of_expression_token1] = ACTIONS(9662), + [aux_sym_unary_expression_token1] = ACTIONS(9662), + [sym_string_literal] = ACTIONS(9664), + [sym_number_literal] = ACTIONS(9664), + [aux_sym_boolean_literal_token1] = ACTIONS(9662), + [aux_sym_boolean_literal_token2] = ACTIONS(9662), + [sym_nothing_literal] = ACTIONS(9662), + [sym_null_literal] = ACTIONS(9662), + [sym_empty_literal] = ACTIONS(9662), + [sym_date_literal] = ACTIONS(9664), + [anon_sym_POUND] = ACTIONS(9662), + }, + [STATE(4495)] = { + [sym_identifier] = ACTIONS(9666), + [sym_newline] = ACTIONS(9668), + [anon_sym_COLON] = ACTIONS(9668), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9666), + [aux_sym_frm_property_statement_token1] = ACTIONS(9666), + [anon_sym_DOT] = ACTIONS(9666), + [anon_sym_BANG] = ACTIONS(9668), + [aux_sym__attribute_identifier_token1] = ACTIONS(9666), + [aux_sym_option_statement_token3] = ACTIONS(9666), + [aux_sym_type_declaration_token1] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9666), + [aux_sym_enum_declaration_token1] = ACTIONS(9666), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9666), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9666), + [aux_sym_declare_function_statement_token1] = ACTIONS(9666), + [aux_sym_preprocessor_const_token1] = ACTIONS(9666), + [aux_sym__property_get_header_token1] = ACTIONS(9666), + [aux_sym_event_declaration_token1] = ACTIONS(9666), + [sym_static_modifier] = ACTIONS(9666), + [sym__dim_keyword] = ACTIONS(9666), + [sym__redim_keyword] = ACTIONS(9666), + [aux_sym_get_accessor_token1] = ACTIONS(9666), + [aux_sym_set_accessor_token1] = ACTIONS(9666), + [aux_sym_const_declaration_token1] = ACTIONS(9666), + [anon_sym_LPAREN] = ACTIONS(9668), + [aux_sym_as_type_clause_token2] = ACTIONS(9666), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9666), + [aux_sym_visibility_token1] = ACTIONS(9666), + [aux_sym_visibility_token2] = ACTIONS(9666), + [aux_sym_elseif_fragment_token1] = ACTIONS(9666), + [aux_sym_else_fragment_token1] = ACTIONS(9666), + [aux_sym_select_statement_token1] = ACTIONS(9666), + [aux_sym__for_header_token1] = ACTIONS(9666), + [aux_sym_do_statement_token1] = ACTIONS(9666), + [aux_sym_do_condition_token1] = ACTIONS(9666), + [aux_sym_with_statement_token1] = ACTIONS(9666), + [aux_sym_exit_statement_token1] = ACTIONS(9666), + [sym_end_statement] = ACTIONS(9668), + [aux_sym_on_goto_statement_token1] = ACTIONS(9666), + [aux_sym_on_goto_statement_token2] = ACTIONS(9666), + [aux_sym_on_error_statement_token2] = ACTIONS(9666), + [sym__ambiguous_redim_statement] = ACTIONS(9668), + [aux_sym_erase_statement_token1] = ACTIONS(9666), + [aux_sym_open_statement_token1] = ACTIONS(9666), + [aux_sym_file_mode_token2] = ACTIONS(9666), + [aux_sym_file_access_token2] = ACTIONS(9666), + [aux_sym_file_lock_token2] = ACTIONS(9666), + [aux_sym_print_statement_token1] = ACTIONS(9666), + [anon_sym_PLUS] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(9666), + [anon_sym_QMARK] = ACTIONS(9668), + [aux_sym_close_statement_token1] = ACTIONS(9666), + [aux_sym_put_statement_token1] = ACTIONS(9666), + [aux_sym_unlock_statement_token1] = ACTIONS(9666), + [aux_sym_seek_statement_token1] = ACTIONS(9666), + [sym_reset_statement] = ACTIONS(9666), + [aux_sym_raise_event_statement_token1] = ACTIONS(9666), + [sym_stop_statement] = ACTIONS(9666), + [sym_beep_statement] = ACTIONS(9666), + [aux_sym_unload_statement_token1] = ACTIONS(9666), + [aux_sym_def_type_statement_token1] = ACTIONS(9666), + [aux_sym_def_type_statement_token2] = ACTIONS(9666), + [aux_sym_def_type_statement_token3] = ACTIONS(9666), + [aux_sym_def_type_statement_token4] = ACTIONS(9666), + [aux_sym_def_type_statement_token5] = ACTIONS(9666), + [aux_sym_def_type_statement_token6] = ACTIONS(9666), + [aux_sym_def_type_statement_token7] = ACTIONS(9666), + [aux_sym_def_type_statement_token8] = ACTIONS(9666), + [aux_sym_def_type_statement_token9] = ACTIONS(9666), + [aux_sym_def_type_statement_token10] = ACTIONS(9666), + [aux_sym_def_type_statement_token11] = ACTIONS(9666), + [aux_sym_def_type_statement_token12] = ACTIONS(9666), + [aux_sym_def_type_statement_token13] = ACTIONS(9666), + [aux_sym_def_type_statement_token14] = ACTIONS(9666), + [aux_sym_call_statement_token1] = ACTIONS(9666), + [sym__ambiguous_call_statement] = ACTIONS(9666), + [aux_sym_addressof_expression_token1] = ACTIONS(9666), + [aux_sym_type_of_expression_token1] = ACTIONS(9666), + [aux_sym_unary_expression_token1] = ACTIONS(9666), + [sym_string_literal] = ACTIONS(9668), + [sym_number_literal] = ACTIONS(9668), + [aux_sym_boolean_literal_token1] = ACTIONS(9666), + [aux_sym_boolean_literal_token2] = ACTIONS(9666), + [sym_nothing_literal] = ACTIONS(9666), + [sym_null_literal] = ACTIONS(9666), + [sym_empty_literal] = ACTIONS(9666), + [sym_date_literal] = ACTIONS(9668), + [anon_sym_POUND] = ACTIONS(9666), + }, + [STATE(4496)] = { + [sym_identifier] = ACTIONS(9670), + [sym_newline] = ACTIONS(9672), + [anon_sym_COLON] = ACTIONS(9672), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9670), + [aux_sym_frm_property_statement_token1] = ACTIONS(9670), + [anon_sym_DOT] = ACTIONS(9670), + [anon_sym_BANG] = ACTIONS(9672), + [aux_sym__attribute_identifier_token1] = ACTIONS(9670), + [aux_sym_option_statement_token3] = ACTIONS(9670), + [aux_sym_type_declaration_token1] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9670), + [aux_sym_enum_declaration_token1] = ACTIONS(9670), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9670), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9670), + [aux_sym_declare_function_statement_token1] = ACTIONS(9670), + [aux_sym_preprocessor_const_token1] = ACTIONS(9670), + [aux_sym__property_get_header_token1] = ACTIONS(9670), + [aux_sym_event_declaration_token1] = ACTIONS(9670), + [sym_static_modifier] = ACTIONS(9670), + [sym__dim_keyword] = ACTIONS(9670), + [sym__redim_keyword] = ACTIONS(9670), + [aux_sym_get_accessor_token1] = ACTIONS(9670), + [aux_sym_set_accessor_token1] = ACTIONS(9670), + [aux_sym_const_declaration_token1] = ACTIONS(9670), + [anon_sym_LPAREN] = ACTIONS(9672), + [aux_sym_as_type_clause_token2] = ACTIONS(9670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9670), + [aux_sym_visibility_token1] = ACTIONS(9670), + [aux_sym_visibility_token2] = ACTIONS(9670), + [aux_sym_elseif_fragment_token1] = ACTIONS(9670), + [aux_sym_else_fragment_token1] = ACTIONS(9670), + [aux_sym_select_statement_token1] = ACTIONS(9670), + [aux_sym__for_header_token1] = ACTIONS(9670), + [aux_sym_do_statement_token1] = ACTIONS(9670), + [aux_sym_do_condition_token1] = ACTIONS(9670), + [aux_sym_with_statement_token1] = ACTIONS(9670), + [aux_sym_exit_statement_token1] = ACTIONS(9670), + [sym_end_statement] = ACTIONS(9672), + [aux_sym_on_goto_statement_token1] = ACTIONS(9670), + [aux_sym_on_goto_statement_token2] = ACTIONS(9670), + [aux_sym_on_error_statement_token2] = ACTIONS(9670), + [sym__ambiguous_redim_statement] = ACTIONS(9672), + [aux_sym_erase_statement_token1] = ACTIONS(9670), + [aux_sym_open_statement_token1] = ACTIONS(9670), + [aux_sym_file_mode_token2] = ACTIONS(9670), + [aux_sym_file_access_token2] = ACTIONS(9670), + [aux_sym_file_lock_token2] = ACTIONS(9670), + [aux_sym_print_statement_token1] = ACTIONS(9670), + [anon_sym_PLUS] = ACTIONS(9672), + [anon_sym_DASH] = ACTIONS(9670), + [anon_sym_QMARK] = ACTIONS(9672), + [aux_sym_close_statement_token1] = ACTIONS(9670), + [aux_sym_put_statement_token1] = ACTIONS(9670), + [aux_sym_unlock_statement_token1] = ACTIONS(9670), + [aux_sym_seek_statement_token1] = ACTIONS(9670), + [sym_reset_statement] = ACTIONS(9670), + [aux_sym_raise_event_statement_token1] = ACTIONS(9670), + [sym_stop_statement] = ACTIONS(9670), + [sym_beep_statement] = ACTIONS(9670), + [aux_sym_unload_statement_token1] = ACTIONS(9670), + [aux_sym_def_type_statement_token1] = ACTIONS(9670), + [aux_sym_def_type_statement_token2] = ACTIONS(9670), + [aux_sym_def_type_statement_token3] = ACTIONS(9670), + [aux_sym_def_type_statement_token4] = ACTIONS(9670), + [aux_sym_def_type_statement_token5] = ACTIONS(9670), + [aux_sym_def_type_statement_token6] = ACTIONS(9670), + [aux_sym_def_type_statement_token7] = ACTIONS(9670), + [aux_sym_def_type_statement_token8] = ACTIONS(9670), + [aux_sym_def_type_statement_token9] = ACTIONS(9670), + [aux_sym_def_type_statement_token10] = ACTIONS(9670), + [aux_sym_def_type_statement_token11] = ACTIONS(9670), + [aux_sym_def_type_statement_token12] = ACTIONS(9670), + [aux_sym_def_type_statement_token13] = ACTIONS(9670), + [aux_sym_def_type_statement_token14] = ACTIONS(9670), + [aux_sym_call_statement_token1] = ACTIONS(9670), + [sym__ambiguous_call_statement] = ACTIONS(9670), + [aux_sym_addressof_expression_token1] = ACTIONS(9670), + [aux_sym_type_of_expression_token1] = ACTIONS(9670), + [aux_sym_unary_expression_token1] = ACTIONS(9670), + [sym_string_literal] = ACTIONS(9672), + [sym_number_literal] = ACTIONS(9672), + [aux_sym_boolean_literal_token1] = ACTIONS(9670), + [aux_sym_boolean_literal_token2] = ACTIONS(9670), + [sym_nothing_literal] = ACTIONS(9670), + [sym_null_literal] = ACTIONS(9670), + [sym_empty_literal] = ACTIONS(9670), + [sym_date_literal] = ACTIONS(9672), + [anon_sym_POUND] = ACTIONS(9670), + }, + [STATE(4497)] = { + [sym_identifier] = ACTIONS(9471), + [sym_newline] = ACTIONS(9473), + [anon_sym_COLON] = ACTIONS(9473), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9471), + [aux_sym_frm_property_statement_token1] = ACTIONS(9471), + [anon_sym_DOT] = ACTIONS(9471), + [anon_sym_BANG] = ACTIONS(9473), + [aux_sym__attribute_identifier_token1] = ACTIONS(9471), + [aux_sym_option_statement_token3] = ACTIONS(9471), + [aux_sym_type_declaration_token1] = ACTIONS(9471), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9471), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9471), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9471), + [aux_sym_enum_declaration_token1] = ACTIONS(9471), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9471), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9471), + [aux_sym_declare_function_statement_token1] = ACTIONS(9471), + [aux_sym_preprocessor_const_token1] = ACTIONS(9471), + [aux_sym__property_get_header_token1] = ACTIONS(9471), + [aux_sym_event_declaration_token1] = ACTIONS(9471), + [sym_static_modifier] = ACTIONS(9471), + [sym__dim_keyword] = ACTIONS(9471), + [sym__redim_keyword] = ACTIONS(9471), + [aux_sym_get_accessor_token1] = ACTIONS(9471), + [aux_sym_set_accessor_token1] = ACTIONS(9471), + [aux_sym_const_declaration_token1] = ACTIONS(9471), + [anon_sym_LPAREN] = ACTIONS(9473), + [aux_sym_as_type_clause_token2] = ACTIONS(9471), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9471), + [aux_sym_visibility_token1] = ACTIONS(9471), + [aux_sym_visibility_token2] = ACTIONS(9471), + [aux_sym_elseif_fragment_token1] = ACTIONS(9471), + [aux_sym_else_fragment_token1] = ACTIONS(9471), + [aux_sym_select_statement_token1] = ACTIONS(9471), + [aux_sym__for_header_token1] = ACTIONS(9471), + [aux_sym_do_statement_token1] = ACTIONS(9471), + [aux_sym_do_condition_token1] = ACTIONS(9471), + [aux_sym_with_statement_token1] = ACTIONS(9471), + [aux_sym_exit_statement_token1] = ACTIONS(9471), + [sym_end_statement] = ACTIONS(9473), + [aux_sym_on_goto_statement_token1] = ACTIONS(9471), + [aux_sym_on_goto_statement_token2] = ACTIONS(9471), + [aux_sym_on_error_statement_token2] = ACTIONS(9471), + [sym__ambiguous_redim_statement] = ACTIONS(9473), + [aux_sym_erase_statement_token1] = ACTIONS(9471), + [aux_sym_open_statement_token1] = ACTIONS(9471), + [aux_sym_file_mode_token2] = ACTIONS(9471), + [aux_sym_file_access_token2] = ACTIONS(9471), + [aux_sym_file_lock_token2] = ACTIONS(9471), + [aux_sym_print_statement_token1] = ACTIONS(9471), + [anon_sym_PLUS] = ACTIONS(9473), + [anon_sym_DASH] = ACTIONS(9471), + [anon_sym_QMARK] = ACTIONS(9473), + [aux_sym_close_statement_token1] = ACTIONS(9471), + [aux_sym_put_statement_token1] = ACTIONS(9471), + [aux_sym_unlock_statement_token1] = ACTIONS(9471), + [aux_sym_seek_statement_token1] = ACTIONS(9471), + [sym_reset_statement] = ACTIONS(9471), + [aux_sym_raise_event_statement_token1] = ACTIONS(9471), + [sym_stop_statement] = ACTIONS(9471), + [sym_beep_statement] = ACTIONS(9471), + [aux_sym_unload_statement_token1] = ACTIONS(9471), + [aux_sym_def_type_statement_token1] = ACTIONS(9471), + [aux_sym_def_type_statement_token2] = ACTIONS(9471), + [aux_sym_def_type_statement_token3] = ACTIONS(9471), + [aux_sym_def_type_statement_token4] = ACTIONS(9471), + [aux_sym_def_type_statement_token5] = ACTIONS(9471), + [aux_sym_def_type_statement_token6] = ACTIONS(9471), + [aux_sym_def_type_statement_token7] = ACTIONS(9471), + [aux_sym_def_type_statement_token8] = ACTIONS(9471), + [aux_sym_def_type_statement_token9] = ACTIONS(9471), + [aux_sym_def_type_statement_token10] = ACTIONS(9471), + [aux_sym_def_type_statement_token11] = ACTIONS(9471), + [aux_sym_def_type_statement_token12] = ACTIONS(9471), + [aux_sym_def_type_statement_token13] = ACTIONS(9471), + [aux_sym_def_type_statement_token14] = ACTIONS(9471), + [aux_sym_call_statement_token1] = ACTIONS(9471), + [sym__ambiguous_call_statement] = ACTIONS(9471), + [aux_sym_addressof_expression_token1] = ACTIONS(9471), + [aux_sym_type_of_expression_token1] = ACTIONS(9471), + [aux_sym_unary_expression_token1] = ACTIONS(9471), + [sym_string_literal] = ACTIONS(9473), + [sym_number_literal] = ACTIONS(9473), + [aux_sym_boolean_literal_token1] = ACTIONS(9471), + [aux_sym_boolean_literal_token2] = ACTIONS(9471), + [sym_nothing_literal] = ACTIONS(9471), + [sym_null_literal] = ACTIONS(9471), + [sym_empty_literal] = ACTIONS(9471), + [sym_date_literal] = ACTIONS(9473), + [anon_sym_POUND] = ACTIONS(9471), + }, + [STATE(4498)] = { + [sym_identifier] = ACTIONS(9677), + [sym_newline] = ACTIONS(9679), + [anon_sym_COLON] = ACTIONS(9679), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9677), + [aux_sym_frm_property_statement_token1] = ACTIONS(9677), + [anon_sym_DOT] = ACTIONS(9677), + [anon_sym_BANG] = ACTIONS(9679), + [aux_sym__attribute_identifier_token1] = ACTIONS(9677), + [aux_sym_option_statement_token3] = ACTIONS(9677), + [aux_sym_type_declaration_token1] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9677), + [aux_sym_enum_declaration_token1] = ACTIONS(9677), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9677), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9677), + [aux_sym_declare_function_statement_token1] = ACTIONS(9677), + [aux_sym_preprocessor_const_token1] = ACTIONS(9677), + [aux_sym__property_get_header_token1] = ACTIONS(9677), + [aux_sym_event_declaration_token1] = ACTIONS(9677), + [sym_static_modifier] = ACTIONS(9677), + [sym__dim_keyword] = ACTIONS(9677), + [sym__redim_keyword] = ACTIONS(9677), + [aux_sym_get_accessor_token1] = ACTIONS(9677), + [aux_sym_set_accessor_token1] = ACTIONS(9677), + [aux_sym_const_declaration_token1] = ACTIONS(9677), + [anon_sym_LPAREN] = ACTIONS(9679), + [aux_sym_as_type_clause_token2] = ACTIONS(9677), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9677), + [aux_sym_visibility_token1] = ACTIONS(9677), + [aux_sym_visibility_token2] = ACTIONS(9677), + [aux_sym_elseif_fragment_token1] = ACTIONS(9677), + [aux_sym_else_fragment_token1] = ACTIONS(9677), + [aux_sym_select_statement_token1] = ACTIONS(9677), + [aux_sym__for_header_token1] = ACTIONS(9677), + [aux_sym_do_statement_token1] = ACTIONS(9677), + [aux_sym_do_condition_token1] = ACTIONS(9677), + [aux_sym_with_statement_token1] = ACTIONS(9677), + [aux_sym_exit_statement_token1] = ACTIONS(9677), + [sym_end_statement] = ACTIONS(9679), + [aux_sym_on_goto_statement_token1] = ACTIONS(9677), + [aux_sym_on_goto_statement_token2] = ACTIONS(9677), + [aux_sym_on_error_statement_token2] = ACTIONS(9677), + [sym__ambiguous_redim_statement] = ACTIONS(9679), + [aux_sym_erase_statement_token1] = ACTIONS(9677), + [aux_sym_open_statement_token1] = ACTIONS(9677), + [aux_sym_file_mode_token2] = ACTIONS(9677), + [aux_sym_file_access_token2] = ACTIONS(9677), + [aux_sym_file_lock_token2] = ACTIONS(9677), + [aux_sym_print_statement_token1] = ACTIONS(9677), + [anon_sym_PLUS] = ACTIONS(9679), + [anon_sym_DASH] = ACTIONS(9677), + [anon_sym_QMARK] = ACTIONS(9679), + [aux_sym_close_statement_token1] = ACTIONS(9677), + [aux_sym_put_statement_token1] = ACTIONS(9677), + [aux_sym_unlock_statement_token1] = ACTIONS(9677), + [aux_sym_seek_statement_token1] = ACTIONS(9677), + [sym_reset_statement] = ACTIONS(9677), + [aux_sym_raise_event_statement_token1] = ACTIONS(9677), + [sym_stop_statement] = ACTIONS(9677), + [sym_beep_statement] = ACTIONS(9677), + [aux_sym_unload_statement_token1] = ACTIONS(9677), + [aux_sym_def_type_statement_token1] = ACTIONS(9677), + [aux_sym_def_type_statement_token2] = ACTIONS(9677), + [aux_sym_def_type_statement_token3] = ACTIONS(9677), + [aux_sym_def_type_statement_token4] = ACTIONS(9677), + [aux_sym_def_type_statement_token5] = ACTIONS(9677), + [aux_sym_def_type_statement_token6] = ACTIONS(9677), + [aux_sym_def_type_statement_token7] = ACTIONS(9677), + [aux_sym_def_type_statement_token8] = ACTIONS(9677), + [aux_sym_def_type_statement_token9] = ACTIONS(9677), + [aux_sym_def_type_statement_token10] = ACTIONS(9677), + [aux_sym_def_type_statement_token11] = ACTIONS(9677), + [aux_sym_def_type_statement_token12] = ACTIONS(9677), + [aux_sym_def_type_statement_token13] = ACTIONS(9677), + [aux_sym_def_type_statement_token14] = ACTIONS(9677), + [aux_sym_call_statement_token1] = ACTIONS(9677), + [sym__ambiguous_call_statement] = ACTIONS(9677), + [aux_sym_addressof_expression_token1] = ACTIONS(9677), + [aux_sym_type_of_expression_token1] = ACTIONS(9677), + [aux_sym_unary_expression_token1] = ACTIONS(9677), + [sym_string_literal] = ACTIONS(9679), + [sym_number_literal] = ACTIONS(9679), + [aux_sym_boolean_literal_token1] = ACTIONS(9677), + [aux_sym_boolean_literal_token2] = ACTIONS(9677), + [sym_nothing_literal] = ACTIONS(9677), + [sym_null_literal] = ACTIONS(9677), + [sym_empty_literal] = ACTIONS(9677), + [sym_date_literal] = ACTIONS(9679), + [anon_sym_POUND] = ACTIONS(9677), + }, + [STATE(4499)] = { + [sym_identifier] = ACTIONS(9684), + [sym_newline] = ACTIONS(9686), + [anon_sym_COLON] = ACTIONS(9686), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9684), + [aux_sym_frm_property_statement_token1] = ACTIONS(9684), + [anon_sym_DOT] = ACTIONS(9684), + [anon_sym_BANG] = ACTIONS(9686), + [aux_sym__attribute_identifier_token1] = ACTIONS(9684), + [aux_sym_option_statement_token3] = ACTIONS(9684), + [aux_sym_type_declaration_token1] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9684), + [aux_sym_enum_declaration_token1] = ACTIONS(9684), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9684), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9684), + [aux_sym_declare_function_statement_token1] = ACTIONS(9684), + [aux_sym_preprocessor_const_token1] = ACTIONS(9684), + [aux_sym__property_get_header_token1] = ACTIONS(9684), + [aux_sym_event_declaration_token1] = ACTIONS(9684), + [sym_static_modifier] = ACTIONS(9684), + [sym__dim_keyword] = ACTIONS(9684), + [sym__redim_keyword] = ACTIONS(9684), + [aux_sym_get_accessor_token1] = ACTIONS(9684), + [aux_sym_set_accessor_token1] = ACTIONS(9684), + [aux_sym_const_declaration_token1] = ACTIONS(9684), + [anon_sym_LPAREN] = ACTIONS(9686), + [aux_sym_as_type_clause_token2] = ACTIONS(9684), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9684), + [aux_sym_visibility_token1] = ACTIONS(9684), + [aux_sym_visibility_token2] = ACTIONS(9684), + [aux_sym_elseif_fragment_token1] = ACTIONS(9684), + [aux_sym_else_fragment_token1] = ACTIONS(9684), + [aux_sym_select_statement_token1] = ACTIONS(9684), + [aux_sym__for_header_token1] = ACTIONS(9684), + [aux_sym_do_statement_token1] = ACTIONS(9684), + [aux_sym_do_condition_token1] = ACTIONS(9684), + [aux_sym_with_statement_token1] = ACTIONS(9684), + [aux_sym_exit_statement_token1] = ACTIONS(9684), + [sym_end_statement] = ACTIONS(9686), + [aux_sym_on_goto_statement_token1] = ACTIONS(9684), + [aux_sym_on_goto_statement_token2] = ACTIONS(9684), + [aux_sym_on_error_statement_token2] = ACTIONS(9684), + [sym__ambiguous_redim_statement] = ACTIONS(9686), + [aux_sym_erase_statement_token1] = ACTIONS(9684), + [aux_sym_open_statement_token1] = ACTIONS(9684), + [aux_sym_file_mode_token2] = ACTIONS(9684), + [aux_sym_file_access_token2] = ACTIONS(9684), + [aux_sym_file_lock_token2] = ACTIONS(9684), + [aux_sym_print_statement_token1] = ACTIONS(9684), + [anon_sym_PLUS] = ACTIONS(9686), + [anon_sym_DASH] = ACTIONS(9684), + [anon_sym_QMARK] = ACTIONS(9686), + [aux_sym_close_statement_token1] = ACTIONS(9684), + [aux_sym_put_statement_token1] = ACTIONS(9684), + [aux_sym_unlock_statement_token1] = ACTIONS(9684), + [aux_sym_seek_statement_token1] = ACTIONS(9684), + [sym_reset_statement] = ACTIONS(9684), + [aux_sym_raise_event_statement_token1] = ACTIONS(9684), + [sym_stop_statement] = ACTIONS(9684), + [sym_beep_statement] = ACTIONS(9684), + [aux_sym_unload_statement_token1] = ACTIONS(9684), + [aux_sym_def_type_statement_token1] = ACTIONS(9684), + [aux_sym_def_type_statement_token2] = ACTIONS(9684), + [aux_sym_def_type_statement_token3] = ACTIONS(9684), + [aux_sym_def_type_statement_token4] = ACTIONS(9684), + [aux_sym_def_type_statement_token5] = ACTIONS(9684), + [aux_sym_def_type_statement_token6] = ACTIONS(9684), + [aux_sym_def_type_statement_token7] = ACTIONS(9684), + [aux_sym_def_type_statement_token8] = ACTIONS(9684), + [aux_sym_def_type_statement_token9] = ACTIONS(9684), + [aux_sym_def_type_statement_token10] = ACTIONS(9684), + [aux_sym_def_type_statement_token11] = ACTIONS(9684), + [aux_sym_def_type_statement_token12] = ACTIONS(9684), + [aux_sym_def_type_statement_token13] = ACTIONS(9684), + [aux_sym_def_type_statement_token14] = ACTIONS(9684), + [aux_sym_call_statement_token1] = ACTIONS(9684), + [sym__ambiguous_call_statement] = ACTIONS(9684), + [aux_sym_addressof_expression_token1] = ACTIONS(9684), + [aux_sym_type_of_expression_token1] = ACTIONS(9684), + [aux_sym_unary_expression_token1] = ACTIONS(9684), + [sym_string_literal] = ACTIONS(9686), + [sym_number_literal] = ACTIONS(9686), + [aux_sym_boolean_literal_token1] = ACTIONS(9684), + [aux_sym_boolean_literal_token2] = ACTIONS(9684), + [sym_nothing_literal] = ACTIONS(9684), + [sym_null_literal] = ACTIONS(9684), + [sym_empty_literal] = ACTIONS(9684), + [sym_date_literal] = ACTIONS(9686), + [anon_sym_POUND] = ACTIONS(9684), + }, + [STATE(4500)] = { + [sym_identifier] = ACTIONS(9688), + [sym_newline] = ACTIONS(9690), + [anon_sym_COLON] = ACTIONS(9690), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9688), + [aux_sym_frm_property_statement_token1] = ACTIONS(9688), + [anon_sym_DOT] = ACTIONS(9688), + [anon_sym_BANG] = ACTIONS(9690), + [aux_sym__attribute_identifier_token1] = ACTIONS(9688), + [aux_sym_option_statement_token3] = ACTIONS(9688), + [aux_sym_type_declaration_token1] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9688), + [aux_sym_enum_declaration_token1] = ACTIONS(9688), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9688), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9688), + [aux_sym_declare_function_statement_token1] = ACTIONS(9688), + [aux_sym_preprocessor_const_token1] = ACTIONS(9688), + [aux_sym__property_get_header_token1] = ACTIONS(9688), + [aux_sym_event_declaration_token1] = ACTIONS(9688), + [sym_static_modifier] = ACTIONS(9688), + [sym__dim_keyword] = ACTIONS(9688), + [sym__redim_keyword] = ACTIONS(9688), + [aux_sym_get_accessor_token1] = ACTIONS(9688), + [aux_sym_set_accessor_token1] = ACTIONS(9688), + [aux_sym_const_declaration_token1] = ACTIONS(9688), + [anon_sym_LPAREN] = ACTIONS(9690), + [aux_sym_as_type_clause_token2] = ACTIONS(9688), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9688), + [aux_sym_visibility_token1] = ACTIONS(9688), + [aux_sym_visibility_token2] = ACTIONS(9688), + [aux_sym_elseif_fragment_token1] = ACTIONS(9688), + [aux_sym_else_fragment_token1] = ACTIONS(9688), + [aux_sym_select_statement_token1] = ACTIONS(9688), + [aux_sym__for_header_token1] = ACTIONS(9688), + [aux_sym_do_statement_token1] = ACTIONS(9688), + [aux_sym_do_condition_token1] = ACTIONS(9688), + [aux_sym_with_statement_token1] = ACTIONS(9688), + [aux_sym_exit_statement_token1] = ACTIONS(9688), + [sym_end_statement] = ACTIONS(9690), + [aux_sym_on_goto_statement_token1] = ACTIONS(9688), + [aux_sym_on_goto_statement_token2] = ACTIONS(9688), + [aux_sym_on_error_statement_token2] = ACTIONS(9688), + [sym__ambiguous_redim_statement] = ACTIONS(9690), + [aux_sym_erase_statement_token1] = ACTIONS(9688), + [aux_sym_open_statement_token1] = ACTIONS(9688), + [aux_sym_file_mode_token2] = ACTIONS(9688), + [aux_sym_file_access_token2] = ACTIONS(9688), + [aux_sym_file_lock_token2] = ACTIONS(9688), + [aux_sym_print_statement_token1] = ACTIONS(9688), + [anon_sym_PLUS] = ACTIONS(9690), + [anon_sym_DASH] = ACTIONS(9688), + [anon_sym_QMARK] = ACTIONS(9690), + [aux_sym_close_statement_token1] = ACTIONS(9688), + [aux_sym_put_statement_token1] = ACTIONS(9688), + [aux_sym_unlock_statement_token1] = ACTIONS(9688), + [aux_sym_seek_statement_token1] = ACTIONS(9688), + [sym_reset_statement] = ACTIONS(9688), + [aux_sym_raise_event_statement_token1] = ACTIONS(9688), + [sym_stop_statement] = ACTIONS(9688), + [sym_beep_statement] = ACTIONS(9688), + [aux_sym_unload_statement_token1] = ACTIONS(9688), + [aux_sym_def_type_statement_token1] = ACTIONS(9688), + [aux_sym_def_type_statement_token2] = ACTIONS(9688), + [aux_sym_def_type_statement_token3] = ACTIONS(9688), + [aux_sym_def_type_statement_token4] = ACTIONS(9688), + [aux_sym_def_type_statement_token5] = ACTIONS(9688), + [aux_sym_def_type_statement_token6] = ACTIONS(9688), + [aux_sym_def_type_statement_token7] = ACTIONS(9688), + [aux_sym_def_type_statement_token8] = ACTIONS(9688), + [aux_sym_def_type_statement_token9] = ACTIONS(9688), + [aux_sym_def_type_statement_token10] = ACTIONS(9688), + [aux_sym_def_type_statement_token11] = ACTIONS(9688), + [aux_sym_def_type_statement_token12] = ACTIONS(9688), + [aux_sym_def_type_statement_token13] = ACTIONS(9688), + [aux_sym_def_type_statement_token14] = ACTIONS(9688), + [aux_sym_call_statement_token1] = ACTIONS(9688), + [sym__ambiguous_call_statement] = ACTIONS(9688), + [aux_sym_addressof_expression_token1] = ACTIONS(9688), + [aux_sym_type_of_expression_token1] = ACTIONS(9688), + [aux_sym_unary_expression_token1] = ACTIONS(9688), + [sym_string_literal] = ACTIONS(9690), + [sym_number_literal] = ACTIONS(9690), + [aux_sym_boolean_literal_token1] = ACTIONS(9688), + [aux_sym_boolean_literal_token2] = ACTIONS(9688), + [sym_nothing_literal] = ACTIONS(9688), + [sym_null_literal] = ACTIONS(9688), + [sym_empty_literal] = ACTIONS(9688), + [sym_date_literal] = ACTIONS(9690), + [anon_sym_POUND] = ACTIONS(9688), + }, + [STATE(4501)] = { + [sym_identifier] = ACTIONS(9692), + [sym_newline] = ACTIONS(9694), + [anon_sym_COLON] = ACTIONS(9694), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9692), + [aux_sym_frm_property_statement_token1] = ACTIONS(9692), + [anon_sym_DOT] = ACTIONS(9692), + [anon_sym_BANG] = ACTIONS(9694), + [aux_sym__attribute_identifier_token1] = ACTIONS(9692), + [aux_sym_option_statement_token3] = ACTIONS(9692), + [aux_sym_type_declaration_token1] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9692), + [aux_sym_enum_declaration_token1] = ACTIONS(9692), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9692), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9692), + [aux_sym_declare_function_statement_token1] = ACTIONS(9692), + [aux_sym_preprocessor_const_token1] = ACTIONS(9692), + [aux_sym__property_get_header_token1] = ACTIONS(9692), + [aux_sym_event_declaration_token1] = ACTIONS(9692), + [sym_static_modifier] = ACTIONS(9692), + [sym__dim_keyword] = ACTIONS(9692), + [sym__redim_keyword] = ACTIONS(9692), + [aux_sym_get_accessor_token1] = ACTIONS(9692), + [aux_sym_set_accessor_token1] = ACTIONS(9692), + [aux_sym_const_declaration_token1] = ACTIONS(9692), + [anon_sym_LPAREN] = ACTIONS(9694), + [aux_sym_as_type_clause_token2] = ACTIONS(9692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9692), + [aux_sym_visibility_token1] = ACTIONS(9692), + [aux_sym_visibility_token2] = ACTIONS(9692), + [aux_sym_elseif_fragment_token1] = ACTIONS(9692), + [aux_sym_else_fragment_token1] = ACTIONS(9692), + [aux_sym_select_statement_token1] = ACTIONS(9692), + [aux_sym__for_header_token1] = ACTIONS(9692), + [aux_sym_do_statement_token1] = ACTIONS(9692), + [aux_sym_do_condition_token1] = ACTIONS(9692), + [aux_sym_with_statement_token1] = ACTIONS(9692), + [aux_sym_exit_statement_token1] = ACTIONS(9692), + [sym_end_statement] = ACTIONS(9694), + [aux_sym_on_goto_statement_token1] = ACTIONS(9692), + [aux_sym_on_goto_statement_token2] = ACTIONS(9692), + [aux_sym_on_error_statement_token2] = ACTIONS(9692), + [sym__ambiguous_redim_statement] = ACTIONS(9694), + [aux_sym_erase_statement_token1] = ACTIONS(9692), + [aux_sym_open_statement_token1] = ACTIONS(9692), + [aux_sym_file_mode_token2] = ACTIONS(9692), + [aux_sym_file_access_token2] = ACTIONS(9692), + [aux_sym_file_lock_token2] = ACTIONS(9692), + [aux_sym_print_statement_token1] = ACTIONS(9692), + [anon_sym_PLUS] = ACTIONS(9694), + [anon_sym_DASH] = ACTIONS(9692), + [anon_sym_QMARK] = ACTIONS(9694), + [aux_sym_close_statement_token1] = ACTIONS(9692), + [aux_sym_put_statement_token1] = ACTIONS(9692), + [aux_sym_unlock_statement_token1] = ACTIONS(9692), + [aux_sym_seek_statement_token1] = ACTIONS(9692), + [sym_reset_statement] = ACTIONS(9692), + [aux_sym_raise_event_statement_token1] = ACTIONS(9692), + [sym_stop_statement] = ACTIONS(9692), + [sym_beep_statement] = ACTIONS(9692), + [aux_sym_unload_statement_token1] = ACTIONS(9692), + [aux_sym_def_type_statement_token1] = ACTIONS(9692), + [aux_sym_def_type_statement_token2] = ACTIONS(9692), + [aux_sym_def_type_statement_token3] = ACTIONS(9692), + [aux_sym_def_type_statement_token4] = ACTIONS(9692), + [aux_sym_def_type_statement_token5] = ACTIONS(9692), + [aux_sym_def_type_statement_token6] = ACTIONS(9692), + [aux_sym_def_type_statement_token7] = ACTIONS(9692), + [aux_sym_def_type_statement_token8] = ACTIONS(9692), + [aux_sym_def_type_statement_token9] = ACTIONS(9692), + [aux_sym_def_type_statement_token10] = ACTIONS(9692), + [aux_sym_def_type_statement_token11] = ACTIONS(9692), + [aux_sym_def_type_statement_token12] = ACTIONS(9692), + [aux_sym_def_type_statement_token13] = ACTIONS(9692), + [aux_sym_def_type_statement_token14] = ACTIONS(9692), + [aux_sym_call_statement_token1] = ACTIONS(9692), + [sym__ambiguous_call_statement] = ACTIONS(9692), + [aux_sym_addressof_expression_token1] = ACTIONS(9692), + [aux_sym_type_of_expression_token1] = ACTIONS(9692), + [aux_sym_unary_expression_token1] = ACTIONS(9692), + [sym_string_literal] = ACTIONS(9694), + [sym_number_literal] = ACTIONS(9694), + [aux_sym_boolean_literal_token1] = ACTIONS(9692), + [aux_sym_boolean_literal_token2] = ACTIONS(9692), + [sym_nothing_literal] = ACTIONS(9692), + [sym_null_literal] = ACTIONS(9692), + [sym_empty_literal] = ACTIONS(9692), + [sym_date_literal] = ACTIONS(9694), + [anon_sym_POUND] = ACTIONS(9692), + }, + [STATE(4502)] = { + [sym_identifier] = ACTIONS(9696), + [sym_newline] = ACTIONS(9698), + [anon_sym_COLON] = ACTIONS(9698), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9696), + [aux_sym_frm_property_statement_token1] = ACTIONS(9696), + [anon_sym_DOT] = ACTIONS(9696), + [anon_sym_BANG] = ACTIONS(9698), + [aux_sym__attribute_identifier_token1] = ACTIONS(9696), + [aux_sym_option_statement_token3] = ACTIONS(9696), + [aux_sym_type_declaration_token1] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9696), + [aux_sym_enum_declaration_token1] = ACTIONS(9696), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9696), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9696), + [aux_sym_declare_function_statement_token1] = ACTIONS(9696), + [aux_sym_preprocessor_const_token1] = ACTIONS(9696), + [aux_sym__property_get_header_token1] = ACTIONS(9696), + [aux_sym_event_declaration_token1] = ACTIONS(9696), + [sym_static_modifier] = ACTIONS(9696), + [sym__dim_keyword] = ACTIONS(9696), + [sym__redim_keyword] = ACTIONS(9696), + [aux_sym_get_accessor_token1] = ACTIONS(9696), + [aux_sym_set_accessor_token1] = ACTIONS(9696), + [aux_sym_const_declaration_token1] = ACTIONS(9696), + [anon_sym_LPAREN] = ACTIONS(9698), + [aux_sym_as_type_clause_token2] = ACTIONS(9696), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9696), + [aux_sym_visibility_token1] = ACTIONS(9696), + [aux_sym_visibility_token2] = ACTIONS(9696), + [aux_sym_elseif_fragment_token1] = ACTIONS(9696), + [aux_sym_else_fragment_token1] = ACTIONS(9696), + [aux_sym_select_statement_token1] = ACTIONS(9696), + [aux_sym__for_header_token1] = ACTIONS(9696), + [aux_sym_do_statement_token1] = ACTIONS(9696), + [aux_sym_do_condition_token1] = ACTIONS(9696), + [aux_sym_with_statement_token1] = ACTIONS(9696), + [aux_sym_exit_statement_token1] = ACTIONS(9696), + [sym_end_statement] = ACTIONS(9698), + [aux_sym_on_goto_statement_token1] = ACTIONS(9696), + [aux_sym_on_goto_statement_token2] = ACTIONS(9696), + [aux_sym_on_error_statement_token2] = ACTIONS(9696), + [sym__ambiguous_redim_statement] = ACTIONS(9698), + [aux_sym_erase_statement_token1] = ACTIONS(9696), + [aux_sym_open_statement_token1] = ACTIONS(9696), + [aux_sym_file_mode_token2] = ACTIONS(9696), + [aux_sym_file_access_token2] = ACTIONS(9696), + [aux_sym_file_lock_token2] = ACTIONS(9696), + [aux_sym_print_statement_token1] = ACTIONS(9696), + [anon_sym_PLUS] = ACTIONS(9698), + [anon_sym_DASH] = ACTIONS(9696), + [anon_sym_QMARK] = ACTIONS(9698), + [aux_sym_close_statement_token1] = ACTIONS(9696), + [aux_sym_put_statement_token1] = ACTIONS(9696), + [aux_sym_unlock_statement_token1] = ACTIONS(9696), + [aux_sym_seek_statement_token1] = ACTIONS(9696), + [sym_reset_statement] = ACTIONS(9696), + [aux_sym_raise_event_statement_token1] = ACTIONS(9696), + [sym_stop_statement] = ACTIONS(9696), + [sym_beep_statement] = ACTIONS(9696), + [aux_sym_unload_statement_token1] = ACTIONS(9696), + [aux_sym_def_type_statement_token1] = ACTIONS(9696), + [aux_sym_def_type_statement_token2] = ACTIONS(9696), + [aux_sym_def_type_statement_token3] = ACTIONS(9696), + [aux_sym_def_type_statement_token4] = ACTIONS(9696), + [aux_sym_def_type_statement_token5] = ACTIONS(9696), + [aux_sym_def_type_statement_token6] = ACTIONS(9696), + [aux_sym_def_type_statement_token7] = ACTIONS(9696), + [aux_sym_def_type_statement_token8] = ACTIONS(9696), + [aux_sym_def_type_statement_token9] = ACTIONS(9696), + [aux_sym_def_type_statement_token10] = ACTIONS(9696), + [aux_sym_def_type_statement_token11] = ACTIONS(9696), + [aux_sym_def_type_statement_token12] = ACTIONS(9696), + [aux_sym_def_type_statement_token13] = ACTIONS(9696), + [aux_sym_def_type_statement_token14] = ACTIONS(9696), + [aux_sym_call_statement_token1] = ACTIONS(9696), + [sym__ambiguous_call_statement] = ACTIONS(9696), + [aux_sym_addressof_expression_token1] = ACTIONS(9696), + [aux_sym_type_of_expression_token1] = ACTIONS(9696), + [aux_sym_unary_expression_token1] = ACTIONS(9696), + [sym_string_literal] = ACTIONS(9698), + [sym_number_literal] = ACTIONS(9698), + [aux_sym_boolean_literal_token1] = ACTIONS(9696), + [aux_sym_boolean_literal_token2] = ACTIONS(9696), + [sym_nothing_literal] = ACTIONS(9696), + [sym_null_literal] = ACTIONS(9696), + [sym_empty_literal] = ACTIONS(9696), + [sym_date_literal] = ACTIONS(9698), + [anon_sym_POUND] = ACTIONS(9696), + }, + [STATE(4503)] = { + [sym_identifier] = ACTIONS(9700), + [sym_newline] = ACTIONS(9702), + [anon_sym_COLON] = ACTIONS(9702), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9700), + [aux_sym_frm_property_statement_token1] = ACTIONS(9700), + [anon_sym_DOT] = ACTIONS(9700), + [anon_sym_BANG] = ACTIONS(9702), + [aux_sym__attribute_identifier_token1] = ACTIONS(9700), + [aux_sym_option_statement_token3] = ACTIONS(9700), + [aux_sym_type_declaration_token1] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9700), + [aux_sym_enum_declaration_token1] = ACTIONS(9700), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9700), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9700), + [aux_sym_declare_function_statement_token1] = ACTIONS(9700), + [aux_sym_preprocessor_const_token1] = ACTIONS(9700), + [aux_sym__property_get_header_token1] = ACTIONS(9700), + [aux_sym_event_declaration_token1] = ACTIONS(9700), + [sym_static_modifier] = ACTIONS(9700), + [sym__dim_keyword] = ACTIONS(9700), + [sym__redim_keyword] = ACTIONS(9700), + [aux_sym_get_accessor_token1] = ACTIONS(9700), + [aux_sym_set_accessor_token1] = ACTIONS(9700), + [aux_sym_const_declaration_token1] = ACTIONS(9700), + [anon_sym_LPAREN] = ACTIONS(9702), + [aux_sym_as_type_clause_token2] = ACTIONS(9700), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9700), + [aux_sym_visibility_token1] = ACTIONS(9700), + [aux_sym_visibility_token2] = ACTIONS(9700), + [aux_sym_elseif_fragment_token1] = ACTIONS(9700), + [aux_sym_else_fragment_token1] = ACTIONS(9700), + [aux_sym_select_statement_token1] = ACTIONS(9700), + [aux_sym__for_header_token1] = ACTIONS(9700), + [aux_sym_do_statement_token1] = ACTIONS(9700), + [aux_sym_do_condition_token1] = ACTIONS(9700), + [aux_sym_with_statement_token1] = ACTIONS(9700), + [aux_sym_exit_statement_token1] = ACTIONS(9700), + [sym_end_statement] = ACTIONS(9702), + [aux_sym_on_goto_statement_token1] = ACTIONS(9700), + [aux_sym_on_goto_statement_token2] = ACTIONS(9700), + [aux_sym_on_error_statement_token2] = ACTIONS(9700), + [sym__ambiguous_redim_statement] = ACTIONS(9702), + [aux_sym_erase_statement_token1] = ACTIONS(9700), + [aux_sym_open_statement_token1] = ACTIONS(9700), + [aux_sym_file_mode_token2] = ACTIONS(9700), + [aux_sym_file_access_token2] = ACTIONS(9700), + [aux_sym_file_lock_token2] = ACTIONS(9700), + [aux_sym_print_statement_token1] = ACTIONS(9700), + [anon_sym_PLUS] = ACTIONS(9702), + [anon_sym_DASH] = ACTIONS(9700), + [anon_sym_QMARK] = ACTIONS(9702), + [aux_sym_close_statement_token1] = ACTIONS(9700), + [aux_sym_put_statement_token1] = ACTIONS(9700), + [aux_sym_unlock_statement_token1] = ACTIONS(9700), + [aux_sym_seek_statement_token1] = ACTIONS(9700), + [sym_reset_statement] = ACTIONS(9700), + [aux_sym_raise_event_statement_token1] = ACTIONS(9700), + [sym_stop_statement] = ACTIONS(9700), + [sym_beep_statement] = ACTIONS(9700), + [aux_sym_unload_statement_token1] = ACTIONS(9700), + [aux_sym_def_type_statement_token1] = ACTIONS(9700), + [aux_sym_def_type_statement_token2] = ACTIONS(9700), + [aux_sym_def_type_statement_token3] = ACTIONS(9700), + [aux_sym_def_type_statement_token4] = ACTIONS(9700), + [aux_sym_def_type_statement_token5] = ACTIONS(9700), + [aux_sym_def_type_statement_token6] = ACTIONS(9700), + [aux_sym_def_type_statement_token7] = ACTIONS(9700), + [aux_sym_def_type_statement_token8] = ACTIONS(9700), + [aux_sym_def_type_statement_token9] = ACTIONS(9700), + [aux_sym_def_type_statement_token10] = ACTIONS(9700), + [aux_sym_def_type_statement_token11] = ACTIONS(9700), + [aux_sym_def_type_statement_token12] = ACTIONS(9700), + [aux_sym_def_type_statement_token13] = ACTIONS(9700), + [aux_sym_def_type_statement_token14] = ACTIONS(9700), + [aux_sym_call_statement_token1] = ACTIONS(9700), + [sym__ambiguous_call_statement] = ACTIONS(9700), + [aux_sym_addressof_expression_token1] = ACTIONS(9700), + [aux_sym_type_of_expression_token1] = ACTIONS(9700), + [aux_sym_unary_expression_token1] = ACTIONS(9700), + [sym_string_literal] = ACTIONS(9702), + [sym_number_literal] = ACTIONS(9702), + [aux_sym_boolean_literal_token1] = ACTIONS(9700), + [aux_sym_boolean_literal_token2] = ACTIONS(9700), + [sym_nothing_literal] = ACTIONS(9700), + [sym_null_literal] = ACTIONS(9700), + [sym_empty_literal] = ACTIONS(9700), + [sym_date_literal] = ACTIONS(9702), + [anon_sym_POUND] = ACTIONS(9700), + }, + [STATE(4504)] = { + [sym_identifier] = ACTIONS(9704), + [sym_newline] = ACTIONS(9706), + [anon_sym_COLON] = ACTIONS(9706), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9704), + [aux_sym_frm_property_statement_token1] = ACTIONS(9704), + [anon_sym_DOT] = ACTIONS(9704), + [anon_sym_BANG] = ACTIONS(9706), + [aux_sym__attribute_identifier_token1] = ACTIONS(9704), + [aux_sym_option_statement_token3] = ACTIONS(9704), + [aux_sym_type_declaration_token1] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9704), + [aux_sym_enum_declaration_token1] = ACTIONS(9704), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9704), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9704), + [aux_sym_declare_function_statement_token1] = ACTIONS(9704), + [aux_sym_preprocessor_const_token1] = ACTIONS(9704), + [aux_sym__property_get_header_token1] = ACTIONS(9704), + [aux_sym_event_declaration_token1] = ACTIONS(9704), + [sym_static_modifier] = ACTIONS(9704), + [sym__dim_keyword] = ACTIONS(9704), + [sym__redim_keyword] = ACTIONS(9704), + [aux_sym_get_accessor_token1] = ACTIONS(9704), + [aux_sym_set_accessor_token1] = ACTIONS(9704), + [aux_sym_const_declaration_token1] = ACTIONS(9704), + [anon_sym_LPAREN] = ACTIONS(9706), + [aux_sym_as_type_clause_token2] = ACTIONS(9704), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9704), + [aux_sym_visibility_token1] = ACTIONS(9704), + [aux_sym_visibility_token2] = ACTIONS(9704), + [aux_sym_elseif_fragment_token1] = ACTIONS(9704), + [aux_sym_else_fragment_token1] = ACTIONS(9704), + [aux_sym_select_statement_token1] = ACTIONS(9704), + [aux_sym__for_header_token1] = ACTIONS(9704), + [aux_sym_do_statement_token1] = ACTIONS(9704), + [aux_sym_do_condition_token1] = ACTIONS(9704), + [aux_sym_with_statement_token1] = ACTIONS(9704), + [aux_sym_exit_statement_token1] = ACTIONS(9704), + [sym_end_statement] = ACTIONS(9706), + [aux_sym_on_goto_statement_token1] = ACTIONS(9704), + [aux_sym_on_goto_statement_token2] = ACTIONS(9704), + [aux_sym_on_error_statement_token2] = ACTIONS(9704), + [sym__ambiguous_redim_statement] = ACTIONS(9706), + [aux_sym_erase_statement_token1] = ACTIONS(9704), + [aux_sym_open_statement_token1] = ACTIONS(9704), + [aux_sym_file_mode_token2] = ACTIONS(9704), + [aux_sym_file_access_token2] = ACTIONS(9704), + [aux_sym_file_lock_token2] = ACTIONS(9704), + [aux_sym_print_statement_token1] = ACTIONS(9704), + [anon_sym_PLUS] = ACTIONS(9706), + [anon_sym_DASH] = ACTIONS(9704), + [anon_sym_QMARK] = ACTIONS(9706), + [aux_sym_close_statement_token1] = ACTIONS(9704), + [aux_sym_put_statement_token1] = ACTIONS(9704), + [aux_sym_unlock_statement_token1] = ACTIONS(9704), + [aux_sym_seek_statement_token1] = ACTIONS(9704), + [sym_reset_statement] = ACTIONS(9704), + [aux_sym_raise_event_statement_token1] = ACTIONS(9704), + [sym_stop_statement] = ACTIONS(9704), + [sym_beep_statement] = ACTIONS(9704), + [aux_sym_unload_statement_token1] = ACTIONS(9704), + [aux_sym_def_type_statement_token1] = ACTIONS(9704), + [aux_sym_def_type_statement_token2] = ACTIONS(9704), + [aux_sym_def_type_statement_token3] = ACTIONS(9704), + [aux_sym_def_type_statement_token4] = ACTIONS(9704), + [aux_sym_def_type_statement_token5] = ACTIONS(9704), + [aux_sym_def_type_statement_token6] = ACTIONS(9704), + [aux_sym_def_type_statement_token7] = ACTIONS(9704), + [aux_sym_def_type_statement_token8] = ACTIONS(9704), + [aux_sym_def_type_statement_token9] = ACTIONS(9704), + [aux_sym_def_type_statement_token10] = ACTIONS(9704), + [aux_sym_def_type_statement_token11] = ACTIONS(9704), + [aux_sym_def_type_statement_token12] = ACTIONS(9704), + [aux_sym_def_type_statement_token13] = ACTIONS(9704), + [aux_sym_def_type_statement_token14] = ACTIONS(9704), + [aux_sym_call_statement_token1] = ACTIONS(9704), + [sym__ambiguous_call_statement] = ACTIONS(9704), + [aux_sym_addressof_expression_token1] = ACTIONS(9704), + [aux_sym_type_of_expression_token1] = ACTIONS(9704), + [aux_sym_unary_expression_token1] = ACTIONS(9704), + [sym_string_literal] = ACTIONS(9706), + [sym_number_literal] = ACTIONS(9706), + [aux_sym_boolean_literal_token1] = ACTIONS(9704), + [aux_sym_boolean_literal_token2] = ACTIONS(9704), + [sym_nothing_literal] = ACTIONS(9704), + [sym_null_literal] = ACTIONS(9704), + [sym_empty_literal] = ACTIONS(9704), + [sym_date_literal] = ACTIONS(9706), + [anon_sym_POUND] = ACTIONS(9704), + }, + [STATE(4505)] = { + [sym_identifier] = ACTIONS(9708), + [sym_newline] = ACTIONS(9710), + [anon_sym_COLON] = ACTIONS(9710), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9708), + [aux_sym_frm_property_statement_token1] = ACTIONS(9708), + [anon_sym_DOT] = ACTIONS(9708), + [anon_sym_BANG] = ACTIONS(9710), + [aux_sym__attribute_identifier_token1] = ACTIONS(9708), + [aux_sym_option_statement_token3] = ACTIONS(9708), + [aux_sym_type_declaration_token1] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9708), + [aux_sym_enum_declaration_token1] = ACTIONS(9708), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9708), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9708), + [aux_sym_declare_function_statement_token1] = ACTIONS(9708), + [aux_sym_preprocessor_const_token1] = ACTIONS(9708), + [aux_sym__property_get_header_token1] = ACTIONS(9708), + [aux_sym_event_declaration_token1] = ACTIONS(9708), + [sym_static_modifier] = ACTIONS(9708), + [sym__dim_keyword] = ACTIONS(9708), + [sym__redim_keyword] = ACTIONS(9708), + [aux_sym_get_accessor_token1] = ACTIONS(9708), + [aux_sym_set_accessor_token1] = ACTIONS(9708), + [aux_sym_const_declaration_token1] = ACTIONS(9708), + [anon_sym_LPAREN] = ACTIONS(9710), + [aux_sym_as_type_clause_token2] = ACTIONS(9708), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9708), + [aux_sym_visibility_token1] = ACTIONS(9708), + [aux_sym_visibility_token2] = ACTIONS(9708), + [aux_sym_elseif_fragment_token1] = ACTIONS(9708), + [aux_sym_else_fragment_token1] = ACTIONS(9708), + [aux_sym_select_statement_token1] = ACTIONS(9708), + [aux_sym__for_header_token1] = ACTIONS(9708), + [aux_sym_do_statement_token1] = ACTIONS(9708), + [aux_sym_do_condition_token1] = ACTIONS(9708), + [aux_sym_with_statement_token1] = ACTIONS(9708), + [aux_sym_exit_statement_token1] = ACTIONS(9708), + [sym_end_statement] = ACTIONS(9710), + [aux_sym_on_goto_statement_token1] = ACTIONS(9708), + [aux_sym_on_goto_statement_token2] = ACTIONS(9708), + [aux_sym_on_error_statement_token2] = ACTIONS(9708), + [sym__ambiguous_redim_statement] = ACTIONS(9710), + [aux_sym_erase_statement_token1] = ACTIONS(9708), + [aux_sym_open_statement_token1] = ACTIONS(9708), + [aux_sym_file_mode_token2] = ACTIONS(9708), + [aux_sym_file_access_token2] = ACTIONS(9708), + [aux_sym_file_lock_token2] = ACTIONS(9708), + [aux_sym_print_statement_token1] = ACTIONS(9708), + [anon_sym_PLUS] = ACTIONS(9710), + [anon_sym_DASH] = ACTIONS(9708), + [anon_sym_QMARK] = ACTIONS(9710), + [aux_sym_close_statement_token1] = ACTIONS(9708), + [aux_sym_put_statement_token1] = ACTIONS(9708), + [aux_sym_unlock_statement_token1] = ACTIONS(9708), + [aux_sym_seek_statement_token1] = ACTIONS(9708), + [sym_reset_statement] = ACTIONS(9708), + [aux_sym_raise_event_statement_token1] = ACTIONS(9708), + [sym_stop_statement] = ACTIONS(9708), + [sym_beep_statement] = ACTIONS(9708), + [aux_sym_unload_statement_token1] = ACTIONS(9708), + [aux_sym_def_type_statement_token1] = ACTIONS(9708), + [aux_sym_def_type_statement_token2] = ACTIONS(9708), + [aux_sym_def_type_statement_token3] = ACTIONS(9708), + [aux_sym_def_type_statement_token4] = ACTIONS(9708), + [aux_sym_def_type_statement_token5] = ACTIONS(9708), + [aux_sym_def_type_statement_token6] = ACTIONS(9708), + [aux_sym_def_type_statement_token7] = ACTIONS(9708), + [aux_sym_def_type_statement_token8] = ACTIONS(9708), + [aux_sym_def_type_statement_token9] = ACTIONS(9708), + [aux_sym_def_type_statement_token10] = ACTIONS(9708), + [aux_sym_def_type_statement_token11] = ACTIONS(9708), + [aux_sym_def_type_statement_token12] = ACTIONS(9708), + [aux_sym_def_type_statement_token13] = ACTIONS(9708), + [aux_sym_def_type_statement_token14] = ACTIONS(9708), + [aux_sym_call_statement_token1] = ACTIONS(9708), + [sym__ambiguous_call_statement] = ACTIONS(9708), + [aux_sym_addressof_expression_token1] = ACTIONS(9708), + [aux_sym_type_of_expression_token1] = ACTIONS(9708), + [aux_sym_unary_expression_token1] = ACTIONS(9708), + [sym_string_literal] = ACTIONS(9710), + [sym_number_literal] = ACTIONS(9710), + [aux_sym_boolean_literal_token1] = ACTIONS(9708), + [aux_sym_boolean_literal_token2] = ACTIONS(9708), + [sym_nothing_literal] = ACTIONS(9708), + [sym_null_literal] = ACTIONS(9708), + [sym_empty_literal] = ACTIONS(9708), + [sym_date_literal] = ACTIONS(9710), + [anon_sym_POUND] = ACTIONS(9708), + }, + [STATE(4506)] = { + [sym_identifier] = ACTIONS(9712), + [sym_newline] = ACTIONS(9714), + [anon_sym_COLON] = ACTIONS(9714), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9712), + [aux_sym_frm_property_statement_token1] = ACTIONS(9712), + [anon_sym_DOT] = ACTIONS(9712), + [anon_sym_BANG] = ACTIONS(9714), + [aux_sym__attribute_identifier_token1] = ACTIONS(9712), + [aux_sym_option_statement_token3] = ACTIONS(9712), + [aux_sym_type_declaration_token1] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9712), + [aux_sym_enum_declaration_token1] = ACTIONS(9712), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9712), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9712), + [aux_sym_declare_function_statement_token1] = ACTIONS(9712), + [aux_sym_preprocessor_const_token1] = ACTIONS(9712), + [aux_sym__property_get_header_token1] = ACTIONS(9712), + [aux_sym_event_declaration_token1] = ACTIONS(9712), + [sym_static_modifier] = ACTIONS(9712), + [sym__dim_keyword] = ACTIONS(9712), + [sym__redim_keyword] = ACTIONS(9712), + [aux_sym_get_accessor_token1] = ACTIONS(9712), + [aux_sym_set_accessor_token1] = ACTIONS(9712), + [aux_sym_const_declaration_token1] = ACTIONS(9712), + [anon_sym_LPAREN] = ACTIONS(9714), + [aux_sym_as_type_clause_token2] = ACTIONS(9712), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9712), + [aux_sym_visibility_token1] = ACTIONS(9712), + [aux_sym_visibility_token2] = ACTIONS(9712), + [aux_sym_elseif_fragment_token1] = ACTIONS(9712), + [aux_sym_else_fragment_token1] = ACTIONS(9712), + [aux_sym_select_statement_token1] = ACTIONS(9712), + [aux_sym__for_header_token1] = ACTIONS(9712), + [aux_sym_do_statement_token1] = ACTIONS(9712), + [aux_sym_do_condition_token1] = ACTIONS(9712), + [aux_sym_with_statement_token1] = ACTIONS(9712), + [aux_sym_exit_statement_token1] = ACTIONS(9712), + [sym_end_statement] = ACTIONS(9714), + [aux_sym_on_goto_statement_token1] = ACTIONS(9712), + [aux_sym_on_goto_statement_token2] = ACTIONS(9712), + [aux_sym_on_error_statement_token2] = ACTIONS(9712), + [sym__ambiguous_redim_statement] = ACTIONS(9714), + [aux_sym_erase_statement_token1] = ACTIONS(9712), + [aux_sym_open_statement_token1] = ACTIONS(9712), + [aux_sym_file_mode_token2] = ACTIONS(9712), + [aux_sym_file_access_token2] = ACTIONS(9712), + [aux_sym_file_lock_token2] = ACTIONS(9712), + [aux_sym_print_statement_token1] = ACTIONS(9712), + [anon_sym_PLUS] = ACTIONS(9714), + [anon_sym_DASH] = ACTIONS(9712), + [anon_sym_QMARK] = ACTIONS(9714), + [aux_sym_close_statement_token1] = ACTIONS(9712), + [aux_sym_put_statement_token1] = ACTIONS(9712), + [aux_sym_unlock_statement_token1] = ACTIONS(9712), + [aux_sym_seek_statement_token1] = ACTIONS(9712), + [sym_reset_statement] = ACTIONS(9712), + [aux_sym_raise_event_statement_token1] = ACTIONS(9712), + [sym_stop_statement] = ACTIONS(9712), + [sym_beep_statement] = ACTIONS(9712), + [aux_sym_unload_statement_token1] = ACTIONS(9712), + [aux_sym_def_type_statement_token1] = ACTIONS(9712), + [aux_sym_def_type_statement_token2] = ACTIONS(9712), + [aux_sym_def_type_statement_token3] = ACTIONS(9712), + [aux_sym_def_type_statement_token4] = ACTIONS(9712), + [aux_sym_def_type_statement_token5] = ACTIONS(9712), + [aux_sym_def_type_statement_token6] = ACTIONS(9712), + [aux_sym_def_type_statement_token7] = ACTIONS(9712), + [aux_sym_def_type_statement_token8] = ACTIONS(9712), + [aux_sym_def_type_statement_token9] = ACTIONS(9712), + [aux_sym_def_type_statement_token10] = ACTIONS(9712), + [aux_sym_def_type_statement_token11] = ACTIONS(9712), + [aux_sym_def_type_statement_token12] = ACTIONS(9712), + [aux_sym_def_type_statement_token13] = ACTIONS(9712), + [aux_sym_def_type_statement_token14] = ACTIONS(9712), + [aux_sym_call_statement_token1] = ACTIONS(9712), + [sym__ambiguous_call_statement] = ACTIONS(9712), + [aux_sym_addressof_expression_token1] = ACTIONS(9712), + [aux_sym_type_of_expression_token1] = ACTIONS(9712), + [aux_sym_unary_expression_token1] = ACTIONS(9712), + [sym_string_literal] = ACTIONS(9714), + [sym_number_literal] = ACTIONS(9714), + [aux_sym_boolean_literal_token1] = ACTIONS(9712), + [aux_sym_boolean_literal_token2] = ACTIONS(9712), + [sym_nothing_literal] = ACTIONS(9712), + [sym_null_literal] = ACTIONS(9712), + [sym_empty_literal] = ACTIONS(9712), + [sym_date_literal] = ACTIONS(9714), + [anon_sym_POUND] = ACTIONS(9712), + }, + [STATE(4507)] = { + [sym_identifier] = ACTIONS(9716), + [sym_newline] = ACTIONS(9718), + [anon_sym_COLON] = ACTIONS(9718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9716), + [aux_sym_frm_property_statement_token1] = ACTIONS(9716), + [anon_sym_DOT] = ACTIONS(9716), + [anon_sym_BANG] = ACTIONS(9718), + [aux_sym__attribute_identifier_token1] = ACTIONS(9716), + [aux_sym_option_statement_token3] = ACTIONS(9716), + [aux_sym_type_declaration_token1] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9716), + [aux_sym_enum_declaration_token1] = ACTIONS(9716), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9716), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9716), + [aux_sym_declare_function_statement_token1] = ACTIONS(9716), + [aux_sym_preprocessor_const_token1] = ACTIONS(9716), + [aux_sym__property_get_header_token1] = ACTIONS(9716), + [aux_sym_event_declaration_token1] = ACTIONS(9716), + [sym_static_modifier] = ACTIONS(9716), + [sym__dim_keyword] = ACTIONS(9716), + [sym__redim_keyword] = ACTIONS(9716), + [aux_sym_get_accessor_token1] = ACTIONS(9716), + [aux_sym_set_accessor_token1] = ACTIONS(9716), + [aux_sym_const_declaration_token1] = ACTIONS(9716), + [anon_sym_LPAREN] = ACTIONS(9718), + [aux_sym_as_type_clause_token2] = ACTIONS(9716), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9716), + [aux_sym_visibility_token1] = ACTIONS(9716), + [aux_sym_visibility_token2] = ACTIONS(9716), + [aux_sym_elseif_fragment_token1] = ACTIONS(9716), + [aux_sym_else_fragment_token1] = ACTIONS(9716), + [aux_sym_select_statement_token1] = ACTIONS(9716), + [aux_sym__for_header_token1] = ACTIONS(9716), + [aux_sym_do_statement_token1] = ACTIONS(9716), + [aux_sym_do_condition_token1] = ACTIONS(9716), + [aux_sym_with_statement_token1] = ACTIONS(9716), + [aux_sym_exit_statement_token1] = ACTIONS(9716), + [sym_end_statement] = ACTIONS(9718), + [aux_sym_on_goto_statement_token1] = ACTIONS(9716), + [aux_sym_on_goto_statement_token2] = ACTIONS(9716), + [aux_sym_on_error_statement_token2] = ACTIONS(9716), + [sym__ambiguous_redim_statement] = ACTIONS(9718), + [aux_sym_erase_statement_token1] = ACTIONS(9716), + [aux_sym_open_statement_token1] = ACTIONS(9716), + [aux_sym_file_mode_token2] = ACTIONS(9716), + [aux_sym_file_access_token2] = ACTIONS(9716), + [aux_sym_file_lock_token2] = ACTIONS(9716), + [aux_sym_print_statement_token1] = ACTIONS(9716), + [anon_sym_PLUS] = ACTIONS(9718), + [anon_sym_DASH] = ACTIONS(9716), + [anon_sym_QMARK] = ACTIONS(9718), + [aux_sym_close_statement_token1] = ACTIONS(9716), + [aux_sym_put_statement_token1] = ACTIONS(9716), + [aux_sym_unlock_statement_token1] = ACTIONS(9716), + [aux_sym_seek_statement_token1] = ACTIONS(9716), + [sym_reset_statement] = ACTIONS(9716), + [aux_sym_raise_event_statement_token1] = ACTIONS(9716), + [sym_stop_statement] = ACTIONS(9716), + [sym_beep_statement] = ACTIONS(9716), + [aux_sym_unload_statement_token1] = ACTIONS(9716), + [aux_sym_def_type_statement_token1] = ACTIONS(9716), + [aux_sym_def_type_statement_token2] = ACTIONS(9716), + [aux_sym_def_type_statement_token3] = ACTIONS(9716), + [aux_sym_def_type_statement_token4] = ACTIONS(9716), + [aux_sym_def_type_statement_token5] = ACTIONS(9716), + [aux_sym_def_type_statement_token6] = ACTIONS(9716), + [aux_sym_def_type_statement_token7] = ACTIONS(9716), + [aux_sym_def_type_statement_token8] = ACTIONS(9716), + [aux_sym_def_type_statement_token9] = ACTIONS(9716), + [aux_sym_def_type_statement_token10] = ACTIONS(9716), + [aux_sym_def_type_statement_token11] = ACTIONS(9716), + [aux_sym_def_type_statement_token12] = ACTIONS(9716), + [aux_sym_def_type_statement_token13] = ACTIONS(9716), + [aux_sym_def_type_statement_token14] = ACTIONS(9716), + [aux_sym_call_statement_token1] = ACTIONS(9716), + [sym__ambiguous_call_statement] = ACTIONS(9716), + [aux_sym_addressof_expression_token1] = ACTIONS(9716), + [aux_sym_type_of_expression_token1] = ACTIONS(9716), + [aux_sym_unary_expression_token1] = ACTIONS(9716), + [sym_string_literal] = ACTIONS(9718), + [sym_number_literal] = ACTIONS(9718), + [aux_sym_boolean_literal_token1] = ACTIONS(9716), + [aux_sym_boolean_literal_token2] = ACTIONS(9716), + [sym_nothing_literal] = ACTIONS(9716), + [sym_null_literal] = ACTIONS(9716), + [sym_empty_literal] = ACTIONS(9716), + [sym_date_literal] = ACTIONS(9718), + [anon_sym_POUND] = ACTIONS(9716), + }, + [STATE(4508)] = { + [sym_identifier] = ACTIONS(9752), + [sym_newline] = ACTIONS(9754), + [anon_sym_COLON] = ACTIONS(9754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9752), + [aux_sym_frm_property_statement_token1] = ACTIONS(9752), + [anon_sym_DOT] = ACTIONS(9752), + [anon_sym_BANG] = ACTIONS(9754), + [aux_sym__attribute_identifier_token1] = ACTIONS(9752), + [aux_sym_option_statement_token3] = ACTIONS(9752), + [aux_sym_type_declaration_token1] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9752), + [aux_sym_enum_declaration_token1] = ACTIONS(9752), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9752), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9752), + [aux_sym_declare_function_statement_token1] = ACTIONS(9752), + [aux_sym_preprocessor_const_token1] = ACTIONS(9752), + [aux_sym__property_get_header_token1] = ACTIONS(9752), + [aux_sym_event_declaration_token1] = ACTIONS(9752), + [sym_static_modifier] = ACTIONS(9752), + [sym__dim_keyword] = ACTIONS(9752), + [sym__redim_keyword] = ACTIONS(9752), + [aux_sym_get_accessor_token1] = ACTIONS(9752), + [aux_sym_set_accessor_token1] = ACTIONS(9752), + [aux_sym_const_declaration_token1] = ACTIONS(9752), + [anon_sym_LPAREN] = ACTIONS(9754), + [aux_sym_as_type_clause_token2] = ACTIONS(9752), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9752), + [aux_sym_visibility_token1] = ACTIONS(9752), + [aux_sym_visibility_token2] = ACTIONS(9752), + [aux_sym_elseif_fragment_token1] = ACTIONS(9752), + [aux_sym_else_fragment_token1] = ACTIONS(9752), + [aux_sym_select_statement_token1] = ACTIONS(9752), + [aux_sym__for_header_token1] = ACTIONS(9752), + [aux_sym_do_statement_token1] = ACTIONS(9752), + [aux_sym_do_condition_token1] = ACTIONS(9752), + [aux_sym_with_statement_token1] = ACTIONS(9752), + [aux_sym_exit_statement_token1] = ACTIONS(9752), + [sym_end_statement] = ACTIONS(9754), + [aux_sym_on_goto_statement_token1] = ACTIONS(9752), + [aux_sym_on_goto_statement_token2] = ACTIONS(9752), + [aux_sym_on_error_statement_token2] = ACTIONS(9752), + [sym__ambiguous_redim_statement] = ACTIONS(9754), + [aux_sym_erase_statement_token1] = ACTIONS(9752), + [aux_sym_open_statement_token1] = ACTIONS(9752), + [aux_sym_file_mode_token2] = ACTIONS(9752), + [aux_sym_file_access_token2] = ACTIONS(9752), + [aux_sym_file_lock_token2] = ACTIONS(9752), + [aux_sym_print_statement_token1] = ACTIONS(9752), + [anon_sym_PLUS] = ACTIONS(9754), + [anon_sym_DASH] = ACTIONS(9752), + [anon_sym_QMARK] = ACTIONS(9754), + [aux_sym_close_statement_token1] = ACTIONS(9752), + [aux_sym_put_statement_token1] = ACTIONS(9752), + [aux_sym_unlock_statement_token1] = ACTIONS(9752), + [aux_sym_seek_statement_token1] = ACTIONS(9752), + [sym_reset_statement] = ACTIONS(9752), + [aux_sym_raise_event_statement_token1] = ACTIONS(9752), + [sym_stop_statement] = ACTIONS(9752), + [sym_beep_statement] = ACTIONS(9752), + [aux_sym_unload_statement_token1] = ACTIONS(9752), + [aux_sym_def_type_statement_token1] = ACTIONS(9752), + [aux_sym_def_type_statement_token2] = ACTIONS(9752), + [aux_sym_def_type_statement_token3] = ACTIONS(9752), + [aux_sym_def_type_statement_token4] = ACTIONS(9752), + [aux_sym_def_type_statement_token5] = ACTIONS(9752), + [aux_sym_def_type_statement_token6] = ACTIONS(9752), + [aux_sym_def_type_statement_token7] = ACTIONS(9752), + [aux_sym_def_type_statement_token8] = ACTIONS(9752), + [aux_sym_def_type_statement_token9] = ACTIONS(9752), + [aux_sym_def_type_statement_token10] = ACTIONS(9752), + [aux_sym_def_type_statement_token11] = ACTIONS(9752), + [aux_sym_def_type_statement_token12] = ACTIONS(9752), + [aux_sym_def_type_statement_token13] = ACTIONS(9752), + [aux_sym_def_type_statement_token14] = ACTIONS(9752), + [aux_sym_call_statement_token1] = ACTIONS(9752), + [sym__ambiguous_call_statement] = ACTIONS(9752), + [aux_sym_addressof_expression_token1] = ACTIONS(9752), + [aux_sym_type_of_expression_token1] = ACTIONS(9752), + [aux_sym_unary_expression_token1] = ACTIONS(9752), + [sym_string_literal] = ACTIONS(9754), + [sym_number_literal] = ACTIONS(9754), + [aux_sym_boolean_literal_token1] = ACTIONS(9752), + [aux_sym_boolean_literal_token2] = ACTIONS(9752), + [sym_nothing_literal] = ACTIONS(9752), + [sym_null_literal] = ACTIONS(9752), + [sym_empty_literal] = ACTIONS(9752), + [sym_date_literal] = ACTIONS(9754), + [anon_sym_POUND] = ACTIONS(9752), + }, + [STATE(4509)] = { + [sym_identifier] = ACTIONS(9756), + [sym_newline] = ACTIONS(9758), + [anon_sym_COLON] = ACTIONS(9758), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9756), + [aux_sym_frm_property_statement_token1] = ACTIONS(9756), + [anon_sym_DOT] = ACTIONS(9756), + [anon_sym_BANG] = ACTIONS(9758), + [aux_sym__attribute_identifier_token1] = ACTIONS(9756), + [aux_sym_option_statement_token3] = ACTIONS(9756), + [aux_sym_type_declaration_token1] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9756), + [aux_sym_enum_declaration_token1] = ACTIONS(9756), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9756), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9756), + [aux_sym_declare_function_statement_token1] = ACTIONS(9756), + [aux_sym_preprocessor_const_token1] = ACTIONS(9756), + [aux_sym__property_get_header_token1] = ACTIONS(9756), + [aux_sym_event_declaration_token1] = ACTIONS(9756), + [sym_static_modifier] = ACTIONS(9756), + [sym__dim_keyword] = ACTIONS(9756), + [sym__redim_keyword] = ACTIONS(9756), + [aux_sym_get_accessor_token1] = ACTIONS(9756), + [aux_sym_set_accessor_token1] = ACTIONS(9756), + [aux_sym_const_declaration_token1] = ACTIONS(9756), + [anon_sym_LPAREN] = ACTIONS(9758), + [aux_sym_as_type_clause_token2] = ACTIONS(9756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9756), + [aux_sym_visibility_token1] = ACTIONS(9756), + [aux_sym_visibility_token2] = ACTIONS(9756), + [aux_sym_elseif_fragment_token1] = ACTIONS(9756), + [aux_sym_else_fragment_token1] = ACTIONS(9756), + [aux_sym_select_statement_token1] = ACTIONS(9756), + [aux_sym__for_header_token1] = ACTIONS(9756), + [aux_sym_do_statement_token1] = ACTIONS(9756), + [aux_sym_do_condition_token1] = ACTIONS(9756), + [aux_sym_with_statement_token1] = ACTIONS(9756), + [aux_sym_exit_statement_token1] = ACTIONS(9756), + [sym_end_statement] = ACTIONS(9758), + [aux_sym_on_goto_statement_token1] = ACTIONS(9756), + [aux_sym_on_goto_statement_token2] = ACTIONS(9756), + [aux_sym_on_error_statement_token2] = ACTIONS(9756), + [sym__ambiguous_redim_statement] = ACTIONS(9758), + [aux_sym_erase_statement_token1] = ACTIONS(9756), + [aux_sym_open_statement_token1] = ACTIONS(9756), + [aux_sym_file_mode_token2] = ACTIONS(9756), + [aux_sym_file_access_token2] = ACTIONS(9756), + [aux_sym_file_lock_token2] = ACTIONS(9756), + [aux_sym_print_statement_token1] = ACTIONS(9756), + [anon_sym_PLUS] = ACTIONS(9758), + [anon_sym_DASH] = ACTIONS(9756), + [anon_sym_QMARK] = ACTIONS(9758), + [aux_sym_close_statement_token1] = ACTIONS(9756), + [aux_sym_put_statement_token1] = ACTIONS(9756), + [aux_sym_unlock_statement_token1] = ACTIONS(9756), + [aux_sym_seek_statement_token1] = ACTIONS(9756), + [sym_reset_statement] = ACTIONS(9756), + [aux_sym_raise_event_statement_token1] = ACTIONS(9756), + [sym_stop_statement] = ACTIONS(9756), + [sym_beep_statement] = ACTIONS(9756), + [aux_sym_unload_statement_token1] = ACTIONS(9756), + [aux_sym_def_type_statement_token1] = ACTIONS(9756), + [aux_sym_def_type_statement_token2] = ACTIONS(9756), + [aux_sym_def_type_statement_token3] = ACTIONS(9756), + [aux_sym_def_type_statement_token4] = ACTIONS(9756), + [aux_sym_def_type_statement_token5] = ACTIONS(9756), + [aux_sym_def_type_statement_token6] = ACTIONS(9756), + [aux_sym_def_type_statement_token7] = ACTIONS(9756), + [aux_sym_def_type_statement_token8] = ACTIONS(9756), + [aux_sym_def_type_statement_token9] = ACTIONS(9756), + [aux_sym_def_type_statement_token10] = ACTIONS(9756), + [aux_sym_def_type_statement_token11] = ACTIONS(9756), + [aux_sym_def_type_statement_token12] = ACTIONS(9756), + [aux_sym_def_type_statement_token13] = ACTIONS(9756), + [aux_sym_def_type_statement_token14] = ACTIONS(9756), + [aux_sym_call_statement_token1] = ACTIONS(9756), + [sym__ambiguous_call_statement] = ACTIONS(9756), + [aux_sym_addressof_expression_token1] = ACTIONS(9756), + [aux_sym_type_of_expression_token1] = ACTIONS(9756), + [aux_sym_unary_expression_token1] = ACTIONS(9756), + [sym_string_literal] = ACTIONS(9758), + [sym_number_literal] = ACTIONS(9758), + [aux_sym_boolean_literal_token1] = ACTIONS(9756), + [aux_sym_boolean_literal_token2] = ACTIONS(9756), + [sym_nothing_literal] = ACTIONS(9756), + [sym_null_literal] = ACTIONS(9756), + [sym_empty_literal] = ACTIONS(9756), + [sym_date_literal] = ACTIONS(9758), + [anon_sym_POUND] = ACTIONS(9756), + }, + [STATE(4510)] = { + [sym_identifier] = ACTIONS(9760), + [sym_newline] = ACTIONS(9762), + [anon_sym_COLON] = ACTIONS(9762), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9760), + [aux_sym_frm_property_statement_token1] = ACTIONS(9760), + [anon_sym_DOT] = ACTIONS(9760), + [anon_sym_BANG] = ACTIONS(9762), + [aux_sym__attribute_identifier_token1] = ACTIONS(9760), + [aux_sym_option_statement_token3] = ACTIONS(9760), + [aux_sym_type_declaration_token1] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9760), + [aux_sym_enum_declaration_token1] = ACTIONS(9760), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9760), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9760), + [aux_sym_declare_function_statement_token1] = ACTIONS(9760), + [aux_sym_preprocessor_const_token1] = ACTIONS(9760), + [aux_sym__property_get_header_token1] = ACTIONS(9760), + [aux_sym_event_declaration_token1] = ACTIONS(9760), + [sym_static_modifier] = ACTIONS(9760), + [sym__dim_keyword] = ACTIONS(9760), + [sym__redim_keyword] = ACTIONS(9760), + [aux_sym_get_accessor_token1] = ACTIONS(9760), + [aux_sym_set_accessor_token1] = ACTIONS(9760), + [aux_sym_const_declaration_token1] = ACTIONS(9760), + [anon_sym_LPAREN] = ACTIONS(9762), + [aux_sym_as_type_clause_token2] = ACTIONS(9760), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9760), + [aux_sym_visibility_token1] = ACTIONS(9760), + [aux_sym_visibility_token2] = ACTIONS(9760), + [aux_sym_elseif_fragment_token1] = ACTIONS(9760), + [aux_sym_else_fragment_token1] = ACTIONS(9760), + [aux_sym_select_statement_token1] = ACTIONS(9760), + [aux_sym__for_header_token1] = ACTIONS(9760), + [aux_sym_do_statement_token1] = ACTIONS(9760), + [aux_sym_do_condition_token1] = ACTIONS(9760), + [aux_sym_with_statement_token1] = ACTIONS(9760), + [aux_sym_exit_statement_token1] = ACTIONS(9760), + [sym_end_statement] = ACTIONS(9762), + [aux_sym_on_goto_statement_token1] = ACTIONS(9760), + [aux_sym_on_goto_statement_token2] = ACTIONS(9760), + [aux_sym_on_error_statement_token2] = ACTIONS(9760), + [sym__ambiguous_redim_statement] = ACTIONS(9762), + [aux_sym_erase_statement_token1] = ACTIONS(9760), + [aux_sym_open_statement_token1] = ACTIONS(9760), + [aux_sym_file_mode_token2] = ACTIONS(9760), + [aux_sym_file_access_token2] = ACTIONS(9760), + [aux_sym_file_lock_token2] = ACTIONS(9760), + [aux_sym_print_statement_token1] = ACTIONS(9760), + [anon_sym_PLUS] = ACTIONS(9762), + [anon_sym_DASH] = ACTIONS(9760), + [anon_sym_QMARK] = ACTIONS(9762), + [aux_sym_close_statement_token1] = ACTIONS(9760), + [aux_sym_put_statement_token1] = ACTIONS(9760), + [aux_sym_unlock_statement_token1] = ACTIONS(9760), + [aux_sym_seek_statement_token1] = ACTIONS(9760), + [sym_reset_statement] = ACTIONS(9760), + [aux_sym_raise_event_statement_token1] = ACTIONS(9760), + [sym_stop_statement] = ACTIONS(9760), + [sym_beep_statement] = ACTIONS(9760), + [aux_sym_unload_statement_token1] = ACTIONS(9760), + [aux_sym_def_type_statement_token1] = ACTIONS(9760), + [aux_sym_def_type_statement_token2] = ACTIONS(9760), + [aux_sym_def_type_statement_token3] = ACTIONS(9760), + [aux_sym_def_type_statement_token4] = ACTIONS(9760), + [aux_sym_def_type_statement_token5] = ACTIONS(9760), + [aux_sym_def_type_statement_token6] = ACTIONS(9760), + [aux_sym_def_type_statement_token7] = ACTIONS(9760), + [aux_sym_def_type_statement_token8] = ACTIONS(9760), + [aux_sym_def_type_statement_token9] = ACTIONS(9760), + [aux_sym_def_type_statement_token10] = ACTIONS(9760), + [aux_sym_def_type_statement_token11] = ACTIONS(9760), + [aux_sym_def_type_statement_token12] = ACTIONS(9760), + [aux_sym_def_type_statement_token13] = ACTIONS(9760), + [aux_sym_def_type_statement_token14] = ACTIONS(9760), + [aux_sym_call_statement_token1] = ACTIONS(9760), + [sym__ambiguous_call_statement] = ACTIONS(9760), + [aux_sym_addressof_expression_token1] = ACTIONS(9760), + [aux_sym_type_of_expression_token1] = ACTIONS(9760), + [aux_sym_unary_expression_token1] = ACTIONS(9760), + [sym_string_literal] = ACTIONS(9762), + [sym_number_literal] = ACTIONS(9762), + [aux_sym_boolean_literal_token1] = ACTIONS(9760), + [aux_sym_boolean_literal_token2] = ACTIONS(9760), + [sym_nothing_literal] = ACTIONS(9760), + [sym_null_literal] = ACTIONS(9760), + [sym_empty_literal] = ACTIONS(9760), + [sym_date_literal] = ACTIONS(9762), + [anon_sym_POUND] = ACTIONS(9760), + }, + [STATE(4511)] = { + [sym_identifier] = ACTIONS(9764), + [sym_newline] = ACTIONS(9766), + [anon_sym_COLON] = ACTIONS(9766), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9764), + [aux_sym_frm_property_statement_token1] = ACTIONS(9764), + [anon_sym_DOT] = ACTIONS(9764), + [anon_sym_BANG] = ACTIONS(9766), + [aux_sym__attribute_identifier_token1] = ACTIONS(9764), + [aux_sym_option_statement_token3] = ACTIONS(9764), + [aux_sym_type_declaration_token1] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9764), + [aux_sym_enum_declaration_token1] = ACTIONS(9764), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9764), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9764), + [aux_sym_declare_function_statement_token1] = ACTIONS(9764), + [aux_sym_preprocessor_const_token1] = ACTIONS(9764), + [aux_sym__property_get_header_token1] = ACTIONS(9764), + [aux_sym_event_declaration_token1] = ACTIONS(9764), + [sym_static_modifier] = ACTIONS(9764), + [sym__dim_keyword] = ACTIONS(9764), + [sym__redim_keyword] = ACTIONS(9764), + [aux_sym_get_accessor_token1] = ACTIONS(9764), + [aux_sym_set_accessor_token1] = ACTIONS(9764), + [aux_sym_const_declaration_token1] = ACTIONS(9764), + [anon_sym_LPAREN] = ACTIONS(9766), + [aux_sym_as_type_clause_token2] = ACTIONS(9764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9764), + [aux_sym_visibility_token1] = ACTIONS(9764), + [aux_sym_visibility_token2] = ACTIONS(9764), + [aux_sym_elseif_fragment_token1] = ACTIONS(9764), + [aux_sym_else_fragment_token1] = ACTIONS(9764), + [aux_sym_select_statement_token1] = ACTIONS(9764), + [aux_sym__for_header_token1] = ACTIONS(9764), + [aux_sym_do_statement_token1] = ACTIONS(9764), + [aux_sym_do_condition_token1] = ACTIONS(9764), + [aux_sym_with_statement_token1] = ACTIONS(9764), + [aux_sym_exit_statement_token1] = ACTIONS(9764), + [sym_end_statement] = ACTIONS(9766), + [aux_sym_on_goto_statement_token1] = ACTIONS(9764), + [aux_sym_on_goto_statement_token2] = ACTIONS(9764), + [aux_sym_on_error_statement_token2] = ACTIONS(9764), + [sym__ambiguous_redim_statement] = ACTIONS(9766), + [aux_sym_erase_statement_token1] = ACTIONS(9764), + [aux_sym_open_statement_token1] = ACTIONS(9764), + [aux_sym_file_mode_token2] = ACTIONS(9764), + [aux_sym_file_access_token2] = ACTIONS(9764), + [aux_sym_file_lock_token2] = ACTIONS(9764), + [aux_sym_print_statement_token1] = ACTIONS(9764), + [anon_sym_PLUS] = ACTIONS(9766), + [anon_sym_DASH] = ACTIONS(9764), + [anon_sym_QMARK] = ACTIONS(9766), + [aux_sym_close_statement_token1] = ACTIONS(9764), + [aux_sym_put_statement_token1] = ACTIONS(9764), + [aux_sym_unlock_statement_token1] = ACTIONS(9764), + [aux_sym_seek_statement_token1] = ACTIONS(9764), + [sym_reset_statement] = ACTIONS(9764), + [aux_sym_raise_event_statement_token1] = ACTIONS(9764), + [sym_stop_statement] = ACTIONS(9764), + [sym_beep_statement] = ACTIONS(9764), + [aux_sym_unload_statement_token1] = ACTIONS(9764), + [aux_sym_def_type_statement_token1] = ACTIONS(9764), + [aux_sym_def_type_statement_token2] = ACTIONS(9764), + [aux_sym_def_type_statement_token3] = ACTIONS(9764), + [aux_sym_def_type_statement_token4] = ACTIONS(9764), + [aux_sym_def_type_statement_token5] = ACTIONS(9764), + [aux_sym_def_type_statement_token6] = ACTIONS(9764), + [aux_sym_def_type_statement_token7] = ACTIONS(9764), + [aux_sym_def_type_statement_token8] = ACTIONS(9764), + [aux_sym_def_type_statement_token9] = ACTIONS(9764), + [aux_sym_def_type_statement_token10] = ACTIONS(9764), + [aux_sym_def_type_statement_token11] = ACTIONS(9764), + [aux_sym_def_type_statement_token12] = ACTIONS(9764), + [aux_sym_def_type_statement_token13] = ACTIONS(9764), + [aux_sym_def_type_statement_token14] = ACTIONS(9764), + [aux_sym_call_statement_token1] = ACTIONS(9764), + [sym__ambiguous_call_statement] = ACTIONS(9764), + [aux_sym_addressof_expression_token1] = ACTIONS(9764), + [aux_sym_type_of_expression_token1] = ACTIONS(9764), + [aux_sym_unary_expression_token1] = ACTIONS(9764), + [sym_string_literal] = ACTIONS(9766), + [sym_number_literal] = ACTIONS(9766), + [aux_sym_boolean_literal_token1] = ACTIONS(9764), + [aux_sym_boolean_literal_token2] = ACTIONS(9764), + [sym_nothing_literal] = ACTIONS(9764), + [sym_null_literal] = ACTIONS(9764), + [sym_empty_literal] = ACTIONS(9764), + [sym_date_literal] = ACTIONS(9766), + [anon_sym_POUND] = ACTIONS(9764), + }, + [STATE(4512)] = { + [sym_identifier] = ACTIONS(9768), + [sym_newline] = ACTIONS(9770), + [anon_sym_COLON] = ACTIONS(9770), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9768), + [aux_sym_frm_property_statement_token1] = ACTIONS(9768), + [anon_sym_DOT] = ACTIONS(9768), + [anon_sym_BANG] = ACTIONS(9770), + [aux_sym__attribute_identifier_token1] = ACTIONS(9768), + [aux_sym_option_statement_token3] = ACTIONS(9768), + [aux_sym_type_declaration_token1] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9768), + [aux_sym_enum_declaration_token1] = ACTIONS(9768), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9768), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9768), + [aux_sym_declare_function_statement_token1] = ACTIONS(9768), + [aux_sym_preprocessor_const_token1] = ACTIONS(9768), + [aux_sym__property_get_header_token1] = ACTIONS(9768), + [aux_sym_event_declaration_token1] = ACTIONS(9768), + [sym_static_modifier] = ACTIONS(9768), + [sym__dim_keyword] = ACTIONS(9768), + [sym__redim_keyword] = ACTIONS(9768), + [aux_sym_get_accessor_token1] = ACTIONS(9768), + [aux_sym_set_accessor_token1] = ACTIONS(9768), + [aux_sym_const_declaration_token1] = ACTIONS(9768), + [anon_sym_LPAREN] = ACTIONS(9770), + [aux_sym_as_type_clause_token2] = ACTIONS(9768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9768), + [aux_sym_visibility_token1] = ACTIONS(9768), + [aux_sym_visibility_token2] = ACTIONS(9768), + [aux_sym_elseif_fragment_token1] = ACTIONS(9768), + [aux_sym_else_fragment_token1] = ACTIONS(9768), + [aux_sym_select_statement_token1] = ACTIONS(9768), + [aux_sym__for_header_token1] = ACTIONS(9768), + [aux_sym_do_statement_token1] = ACTIONS(9768), + [aux_sym_do_condition_token1] = ACTIONS(9768), + [aux_sym_with_statement_token1] = ACTIONS(9768), + [aux_sym_exit_statement_token1] = ACTIONS(9768), + [sym_end_statement] = ACTIONS(9770), + [aux_sym_on_goto_statement_token1] = ACTIONS(9768), + [aux_sym_on_goto_statement_token2] = ACTIONS(9768), + [aux_sym_on_error_statement_token2] = ACTIONS(9768), + [sym__ambiguous_redim_statement] = ACTIONS(9770), + [aux_sym_erase_statement_token1] = ACTIONS(9768), + [aux_sym_open_statement_token1] = ACTIONS(9768), + [aux_sym_file_mode_token2] = ACTIONS(9768), + [aux_sym_file_access_token2] = ACTIONS(9768), + [aux_sym_file_lock_token2] = ACTIONS(9768), + [aux_sym_print_statement_token1] = ACTIONS(9768), + [anon_sym_PLUS] = ACTIONS(9770), + [anon_sym_DASH] = ACTIONS(9768), + [anon_sym_QMARK] = ACTIONS(9770), + [aux_sym_close_statement_token1] = ACTIONS(9768), + [aux_sym_put_statement_token1] = ACTIONS(9768), + [aux_sym_unlock_statement_token1] = ACTIONS(9768), + [aux_sym_seek_statement_token1] = ACTIONS(9768), + [sym_reset_statement] = ACTIONS(9768), + [aux_sym_raise_event_statement_token1] = ACTIONS(9768), + [sym_stop_statement] = ACTIONS(9768), + [sym_beep_statement] = ACTIONS(9768), + [aux_sym_unload_statement_token1] = ACTIONS(9768), + [aux_sym_def_type_statement_token1] = ACTIONS(9768), + [aux_sym_def_type_statement_token2] = ACTIONS(9768), + [aux_sym_def_type_statement_token3] = ACTIONS(9768), + [aux_sym_def_type_statement_token4] = ACTIONS(9768), + [aux_sym_def_type_statement_token5] = ACTIONS(9768), + [aux_sym_def_type_statement_token6] = ACTIONS(9768), + [aux_sym_def_type_statement_token7] = ACTIONS(9768), + [aux_sym_def_type_statement_token8] = ACTIONS(9768), + [aux_sym_def_type_statement_token9] = ACTIONS(9768), + [aux_sym_def_type_statement_token10] = ACTIONS(9768), + [aux_sym_def_type_statement_token11] = ACTIONS(9768), + [aux_sym_def_type_statement_token12] = ACTIONS(9768), + [aux_sym_def_type_statement_token13] = ACTIONS(9768), + [aux_sym_def_type_statement_token14] = ACTIONS(9768), + [aux_sym_call_statement_token1] = ACTIONS(9768), + [sym__ambiguous_call_statement] = ACTIONS(9768), + [aux_sym_addressof_expression_token1] = ACTIONS(9768), + [aux_sym_type_of_expression_token1] = ACTIONS(9768), + [aux_sym_unary_expression_token1] = ACTIONS(9768), + [sym_string_literal] = ACTIONS(9770), + [sym_number_literal] = ACTIONS(9770), + [aux_sym_boolean_literal_token1] = ACTIONS(9768), + [aux_sym_boolean_literal_token2] = ACTIONS(9768), + [sym_nothing_literal] = ACTIONS(9768), + [sym_null_literal] = ACTIONS(9768), + [sym_empty_literal] = ACTIONS(9768), + [sym_date_literal] = ACTIONS(9770), + [anon_sym_POUND] = ACTIONS(9768), + }, + [STATE(4513)] = { + [sym_identifier] = ACTIONS(9316), + [sym_newline] = ACTIONS(9318), + [anon_sym_COLON] = ACTIONS(9318), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9316), + [aux_sym_frm_property_statement_token1] = ACTIONS(9316), + [anon_sym_DOT] = ACTIONS(9316), + [anon_sym_BANG] = ACTIONS(9318), + [aux_sym__attribute_identifier_token1] = ACTIONS(9316), + [aux_sym_option_statement_token3] = ACTIONS(9316), + [aux_sym_type_declaration_token1] = ACTIONS(9316), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9316), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9316), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9316), + [aux_sym_enum_declaration_token1] = ACTIONS(9316), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9316), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9316), + [aux_sym_declare_function_statement_token1] = ACTIONS(9316), + [aux_sym_preprocessor_const_token1] = ACTIONS(9316), + [aux_sym__property_get_header_token1] = ACTIONS(9316), + [aux_sym_event_declaration_token1] = ACTIONS(9316), + [sym_static_modifier] = ACTIONS(9316), + [sym__dim_keyword] = ACTIONS(9316), + [sym__redim_keyword] = ACTIONS(9316), + [aux_sym_get_accessor_token1] = ACTIONS(9316), + [aux_sym_set_accessor_token1] = ACTIONS(9316), + [aux_sym_const_declaration_token1] = ACTIONS(9316), + [anon_sym_LPAREN] = ACTIONS(9318), + [aux_sym_as_type_clause_token2] = ACTIONS(9316), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9316), + [aux_sym_visibility_token1] = ACTIONS(9316), + [aux_sym_visibility_token2] = ACTIONS(9316), + [aux_sym_elseif_fragment_token1] = ACTIONS(9316), + [aux_sym_else_fragment_token1] = ACTIONS(9316), + [aux_sym_select_statement_token1] = ACTIONS(9316), + [aux_sym__for_header_token1] = ACTIONS(9316), + [aux_sym_do_statement_token1] = ACTIONS(9316), + [aux_sym_do_condition_token1] = ACTIONS(9316), + [aux_sym_with_statement_token1] = ACTIONS(9316), + [aux_sym_exit_statement_token1] = ACTIONS(9316), + [sym_end_statement] = ACTIONS(9318), + [aux_sym_on_goto_statement_token1] = ACTIONS(9316), + [aux_sym_on_goto_statement_token2] = ACTIONS(9316), + [aux_sym_on_error_statement_token2] = ACTIONS(9316), + [sym__ambiguous_redim_statement] = ACTIONS(9318), + [aux_sym_erase_statement_token1] = ACTIONS(9316), + [aux_sym_open_statement_token1] = ACTIONS(9316), + [aux_sym_file_mode_token2] = ACTIONS(9316), + [aux_sym_file_access_token2] = ACTIONS(9316), + [aux_sym_file_lock_token2] = ACTIONS(9316), + [aux_sym_print_statement_token1] = ACTIONS(9316), + [anon_sym_PLUS] = ACTIONS(9318), + [anon_sym_DASH] = ACTIONS(9316), + [anon_sym_QMARK] = ACTIONS(9318), + [aux_sym_close_statement_token1] = ACTIONS(9316), + [aux_sym_put_statement_token1] = ACTIONS(9316), + [aux_sym_unlock_statement_token1] = ACTIONS(9316), + [aux_sym_seek_statement_token1] = ACTIONS(9316), + [sym_reset_statement] = ACTIONS(9316), + [aux_sym_raise_event_statement_token1] = ACTIONS(9316), + [sym_stop_statement] = ACTIONS(9316), + [sym_beep_statement] = ACTIONS(9316), + [aux_sym_unload_statement_token1] = ACTIONS(9316), + [aux_sym_def_type_statement_token1] = ACTIONS(9316), + [aux_sym_def_type_statement_token2] = ACTIONS(9316), + [aux_sym_def_type_statement_token3] = ACTIONS(9316), + [aux_sym_def_type_statement_token4] = ACTIONS(9316), + [aux_sym_def_type_statement_token5] = ACTIONS(9316), + [aux_sym_def_type_statement_token6] = ACTIONS(9316), + [aux_sym_def_type_statement_token7] = ACTIONS(9316), + [aux_sym_def_type_statement_token8] = ACTIONS(9316), + [aux_sym_def_type_statement_token9] = ACTIONS(9316), + [aux_sym_def_type_statement_token10] = ACTIONS(9316), + [aux_sym_def_type_statement_token11] = ACTIONS(9316), + [aux_sym_def_type_statement_token12] = ACTIONS(9316), + [aux_sym_def_type_statement_token13] = ACTIONS(9316), + [aux_sym_def_type_statement_token14] = ACTIONS(9316), + [aux_sym_call_statement_token1] = ACTIONS(9316), + [sym__ambiguous_call_statement] = ACTIONS(9316), + [aux_sym_addressof_expression_token1] = ACTIONS(9316), + [aux_sym_type_of_expression_token1] = ACTIONS(9316), + [aux_sym_unary_expression_token1] = ACTIONS(9316), + [sym_string_literal] = ACTIONS(9318), + [sym_number_literal] = ACTIONS(9318), + [aux_sym_boolean_literal_token1] = ACTIONS(9316), + [aux_sym_boolean_literal_token2] = ACTIONS(9316), + [sym_nothing_literal] = ACTIONS(9316), + [sym_null_literal] = ACTIONS(9316), + [sym_empty_literal] = ACTIONS(9316), + [sym_date_literal] = ACTIONS(9318), + [anon_sym_POUND] = ACTIONS(9316), + }, + [STATE(4514)] = { + [sym_next_variable_list] = STATE(6809), + [sym__assignable_expression] = STATE(5809), + [sym__callable_expression] = STATE(5801), + [sym_call_expression] = STATE(5238), + [sym_member_expression] = STATE(6043), + [sym_qualified_member_expression] = STATE(5833), + [sym_implicit_member_expression] = STATE(5833), + [sym_identifier] = ACTIONS(9947), + [sym_newline] = ACTIONS(6867), + [anon_sym_COLON] = ACTIONS(6867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6869), + [aux_sym_frm_property_statement_token1] = ACTIONS(9949), + [anon_sym_DOT] = ACTIONS(9951), + [anon_sym_BANG] = ACTIONS(9953), + [aux_sym__attribute_identifier_token1] = ACTIONS(6869), + [aux_sym_option_statement_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6869), + [aux_sym_preprocessor_const_token1] = ACTIONS(6869), + [sym_static_modifier] = ACTIONS(6869), + [sym__dim_keyword] = ACTIONS(6869), + [sym__redim_keyword] = ACTIONS(6869), + [aux_sym_get_accessor_token1] = ACTIONS(6869), + [aux_sym_set_accessor_token1] = ACTIONS(6869), + [aux_sym_const_declaration_token1] = ACTIONS(6869), + [anon_sym_LPAREN] = ACTIONS(6867), + [aux_sym_as_type_clause_token2] = ACTIONS(6869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9955), + [aux_sym_visibility_token1] = ACTIONS(6869), + [aux_sym_visibility_token2] = ACTIONS(6869), + [aux_sym_elseif_fragment_token1] = ACTIONS(6869), + [aux_sym_else_fragment_token1] = ACTIONS(6869), + [aux_sym_select_statement_token1] = ACTIONS(6869), + [aux_sym__for_header_token1] = ACTIONS(6869), + [aux_sym_do_statement_token1] = ACTIONS(6869), + [aux_sym_do_statement_token2] = ACTIONS(6869), + [aux_sym_do_condition_token1] = ACTIONS(6869), + [aux_sym_with_statement_token1] = ACTIONS(6869), + [aux_sym_exit_statement_token1] = ACTIONS(6869), + [sym_end_statement] = ACTIONS(6867), + [aux_sym_on_goto_statement_token1] = ACTIONS(6869), + [aux_sym_on_goto_statement_token2] = ACTIONS(6869), + [aux_sym_on_error_statement_token2] = ACTIONS(6869), + [sym__ambiguous_redim_statement] = ACTIONS(6867), + [aux_sym_erase_statement_token1] = ACTIONS(6869), + [aux_sym_open_statement_token1] = ACTIONS(6869), + [aux_sym_file_mode_token2] = ACTIONS(6869), + [aux_sym_file_access_token2] = ACTIONS(6869), + [aux_sym_file_lock_token2] = ACTIONS(6869), + [aux_sym_print_statement_token1] = ACTIONS(6869), + [anon_sym_PLUS] = ACTIONS(6867), + [anon_sym_DASH] = ACTIONS(6869), + [anon_sym_QMARK] = ACTIONS(6867), + [aux_sym_close_statement_token1] = ACTIONS(6869), + [aux_sym_put_statement_token1] = ACTIONS(6869), + [aux_sym_unlock_statement_token1] = ACTIONS(6869), + [aux_sym_seek_statement_token1] = ACTIONS(6869), + [sym_reset_statement] = ACTIONS(6869), + [aux_sym_raise_event_statement_token1] = ACTIONS(6869), + [sym_stop_statement] = ACTIONS(6869), + [sym_beep_statement] = ACTIONS(6869), + [aux_sym_unload_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token2] = ACTIONS(6869), + [aux_sym_def_type_statement_token3] = ACTIONS(6869), + [aux_sym_def_type_statement_token4] = ACTIONS(6869), + [aux_sym_def_type_statement_token5] = ACTIONS(6869), + [aux_sym_def_type_statement_token6] = ACTIONS(6869), + [aux_sym_def_type_statement_token7] = ACTIONS(6869), + [aux_sym_def_type_statement_token8] = ACTIONS(6869), + [aux_sym_def_type_statement_token9] = ACTIONS(6869), + [aux_sym_def_type_statement_token10] = ACTIONS(6869), + [aux_sym_def_type_statement_token11] = ACTIONS(6869), + [aux_sym_def_type_statement_token12] = ACTIONS(6869), + [aux_sym_def_type_statement_token13] = ACTIONS(6869), + [aux_sym_def_type_statement_token14] = ACTIONS(6869), + [aux_sym_call_statement_token1] = ACTIONS(6869), + [sym__ambiguous_call_statement] = ACTIONS(6869), + [aux_sym_addressof_expression_token1] = ACTIONS(6869), + [aux_sym_type_of_expression_token1] = ACTIONS(6869), + [aux_sym_unary_expression_token1] = ACTIONS(6869), + [sym_string_literal] = ACTIONS(6867), + [sym_number_literal] = ACTIONS(6867), + [aux_sym_boolean_literal_token1] = ACTIONS(6869), + [aux_sym_boolean_literal_token2] = ACTIONS(6869), + [sym_nothing_literal] = ACTIONS(6869), + [sym_null_literal] = ACTIONS(6869), + [sym_empty_literal] = ACTIONS(6869), + [sym_date_literal] = ACTIONS(6867), + [anon_sym_POUND] = ACTIONS(6869), + }, + [STATE(4515)] = { + [sym_next_variable_list] = STATE(6811), + [sym__assignable_expression] = STATE(5809), + [sym__callable_expression] = STATE(5801), + [sym_call_expression] = STATE(5238), + [sym_member_expression] = STATE(6043), + [sym_qualified_member_expression] = STATE(5833), + [sym_implicit_member_expression] = STATE(5833), + [sym_identifier] = ACTIONS(9947), + [sym_newline] = ACTIONS(6810), + [anon_sym_COLON] = ACTIONS(6810), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6812), + [aux_sym_frm_property_statement_token1] = ACTIONS(9949), + [anon_sym_DOT] = ACTIONS(9951), + [anon_sym_BANG] = ACTIONS(9953), + [aux_sym__attribute_identifier_token1] = ACTIONS(6812), + [aux_sym_option_statement_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6812), + [aux_sym_preprocessor_const_token1] = ACTIONS(6812), + [sym_static_modifier] = ACTIONS(6812), + [sym__dim_keyword] = ACTIONS(6812), + [sym__redim_keyword] = ACTIONS(6812), + [aux_sym_get_accessor_token1] = ACTIONS(6812), + [aux_sym_set_accessor_token1] = ACTIONS(6812), + [aux_sym_const_declaration_token1] = ACTIONS(6812), + [anon_sym_LPAREN] = ACTIONS(6810), + [aux_sym_as_type_clause_token2] = ACTIONS(6812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9955), + [aux_sym_visibility_token1] = ACTIONS(6812), + [aux_sym_visibility_token2] = ACTIONS(6812), + [aux_sym_elseif_fragment_token1] = ACTIONS(6812), + [aux_sym_else_fragment_token1] = ACTIONS(6812), + [aux_sym_select_statement_token1] = ACTIONS(6812), + [aux_sym__for_header_token1] = ACTIONS(6812), + [aux_sym_do_statement_token1] = ACTIONS(6812), + [aux_sym_do_statement_token2] = ACTIONS(6812), + [aux_sym_do_condition_token1] = ACTIONS(6812), + [aux_sym_with_statement_token1] = ACTIONS(6812), + [aux_sym_exit_statement_token1] = ACTIONS(6812), + [sym_end_statement] = ACTIONS(6810), + [aux_sym_on_goto_statement_token1] = ACTIONS(6812), + [aux_sym_on_goto_statement_token2] = ACTIONS(6812), + [aux_sym_on_error_statement_token2] = ACTIONS(6812), + [sym__ambiguous_redim_statement] = ACTIONS(6810), + [aux_sym_erase_statement_token1] = ACTIONS(6812), + [aux_sym_open_statement_token1] = ACTIONS(6812), + [aux_sym_file_mode_token2] = ACTIONS(6812), + [aux_sym_file_access_token2] = ACTIONS(6812), + [aux_sym_file_lock_token2] = ACTIONS(6812), + [aux_sym_print_statement_token1] = ACTIONS(6812), + [anon_sym_PLUS] = ACTIONS(6810), + [anon_sym_DASH] = ACTIONS(6812), + [anon_sym_QMARK] = ACTIONS(6810), + [aux_sym_close_statement_token1] = ACTIONS(6812), + [aux_sym_put_statement_token1] = ACTIONS(6812), + [aux_sym_unlock_statement_token1] = ACTIONS(6812), + [aux_sym_seek_statement_token1] = ACTIONS(6812), + [sym_reset_statement] = ACTIONS(6812), + [aux_sym_raise_event_statement_token1] = ACTIONS(6812), + [sym_stop_statement] = ACTIONS(6812), + [sym_beep_statement] = ACTIONS(6812), + [aux_sym_unload_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token2] = ACTIONS(6812), + [aux_sym_def_type_statement_token3] = ACTIONS(6812), + [aux_sym_def_type_statement_token4] = ACTIONS(6812), + [aux_sym_def_type_statement_token5] = ACTIONS(6812), + [aux_sym_def_type_statement_token6] = ACTIONS(6812), + [aux_sym_def_type_statement_token7] = ACTIONS(6812), + [aux_sym_def_type_statement_token8] = ACTIONS(6812), + [aux_sym_def_type_statement_token9] = ACTIONS(6812), + [aux_sym_def_type_statement_token10] = ACTIONS(6812), + [aux_sym_def_type_statement_token11] = ACTIONS(6812), + [aux_sym_def_type_statement_token12] = ACTIONS(6812), + [aux_sym_def_type_statement_token13] = ACTIONS(6812), + [aux_sym_def_type_statement_token14] = ACTIONS(6812), + [aux_sym_call_statement_token1] = ACTIONS(6812), + [sym__ambiguous_call_statement] = ACTIONS(6812), + [aux_sym_addressof_expression_token1] = ACTIONS(6812), + [aux_sym_type_of_expression_token1] = ACTIONS(6812), + [aux_sym_unary_expression_token1] = ACTIONS(6812), + [sym_string_literal] = ACTIONS(6810), + [sym_number_literal] = ACTIONS(6810), + [aux_sym_boolean_literal_token1] = ACTIONS(6812), + [aux_sym_boolean_literal_token2] = ACTIONS(6812), + [sym_nothing_literal] = ACTIONS(6812), + [sym_null_literal] = ACTIONS(6812), + [sym_empty_literal] = ACTIONS(6812), + [sym_date_literal] = ACTIONS(6810), + [anon_sym_POUND] = ACTIONS(6812), + }, + [STATE(4516)] = { + [sym_next_variable_list] = STATE(6814), + [sym__assignable_expression] = STATE(5809), + [sym__callable_expression] = STATE(5801), + [sym_call_expression] = STATE(5238), + [sym_member_expression] = STATE(6043), + [sym_qualified_member_expression] = STATE(5833), + [sym_implicit_member_expression] = STATE(5833), + [sym_identifier] = ACTIONS(9947), + [sym_newline] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6828), + [aux_sym_frm_property_statement_token1] = ACTIONS(9949), + [anon_sym_DOT] = ACTIONS(9951), + [anon_sym_BANG] = ACTIONS(9953), + [aux_sym__attribute_identifier_token1] = ACTIONS(6828), + [aux_sym_option_statement_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6828), + [aux_sym_preprocessor_const_token1] = ACTIONS(6828), + [sym_static_modifier] = ACTIONS(6828), + [sym__dim_keyword] = ACTIONS(6828), + [sym__redim_keyword] = ACTIONS(6828), + [aux_sym_get_accessor_token1] = ACTIONS(6828), + [aux_sym_set_accessor_token1] = ACTIONS(6828), + [aux_sym_const_declaration_token1] = ACTIONS(6828), + [anon_sym_LPAREN] = ACTIONS(6826), + [aux_sym_as_type_clause_token2] = ACTIONS(6828), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9955), + [aux_sym_visibility_token1] = ACTIONS(6828), + [aux_sym_visibility_token2] = ACTIONS(6828), + [aux_sym_elseif_fragment_token1] = ACTIONS(6828), + [aux_sym_else_fragment_token1] = ACTIONS(6828), + [aux_sym_select_statement_token1] = ACTIONS(6828), + [aux_sym__for_header_token1] = ACTIONS(6828), + [aux_sym_do_statement_token1] = ACTIONS(6828), + [aux_sym_do_statement_token2] = ACTIONS(6828), + [aux_sym_do_condition_token1] = ACTIONS(6828), + [aux_sym_with_statement_token1] = ACTIONS(6828), + [aux_sym_exit_statement_token1] = ACTIONS(6828), + [sym_end_statement] = ACTIONS(6826), + [aux_sym_on_goto_statement_token1] = ACTIONS(6828), + [aux_sym_on_goto_statement_token2] = ACTIONS(6828), + [aux_sym_on_error_statement_token2] = ACTIONS(6828), + [sym__ambiguous_redim_statement] = ACTIONS(6826), + [aux_sym_erase_statement_token1] = ACTIONS(6828), + [aux_sym_open_statement_token1] = ACTIONS(6828), + [aux_sym_file_mode_token2] = ACTIONS(6828), + [aux_sym_file_access_token2] = ACTIONS(6828), + [aux_sym_file_lock_token2] = ACTIONS(6828), + [aux_sym_print_statement_token1] = ACTIONS(6828), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_DASH] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6826), + [aux_sym_close_statement_token1] = ACTIONS(6828), + [aux_sym_put_statement_token1] = ACTIONS(6828), + [aux_sym_unlock_statement_token1] = ACTIONS(6828), + [aux_sym_seek_statement_token1] = ACTIONS(6828), + [sym_reset_statement] = ACTIONS(6828), + [aux_sym_raise_event_statement_token1] = ACTIONS(6828), + [sym_stop_statement] = ACTIONS(6828), + [sym_beep_statement] = ACTIONS(6828), + [aux_sym_unload_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token2] = ACTIONS(6828), + [aux_sym_def_type_statement_token3] = ACTIONS(6828), + [aux_sym_def_type_statement_token4] = ACTIONS(6828), + [aux_sym_def_type_statement_token5] = ACTIONS(6828), + [aux_sym_def_type_statement_token6] = ACTIONS(6828), + [aux_sym_def_type_statement_token7] = ACTIONS(6828), + [aux_sym_def_type_statement_token8] = ACTIONS(6828), + [aux_sym_def_type_statement_token9] = ACTIONS(6828), + [aux_sym_def_type_statement_token10] = ACTIONS(6828), + [aux_sym_def_type_statement_token11] = ACTIONS(6828), + [aux_sym_def_type_statement_token12] = ACTIONS(6828), + [aux_sym_def_type_statement_token13] = ACTIONS(6828), + [aux_sym_def_type_statement_token14] = ACTIONS(6828), + [aux_sym_call_statement_token1] = ACTIONS(6828), + [sym__ambiguous_call_statement] = ACTIONS(6828), + [aux_sym_addressof_expression_token1] = ACTIONS(6828), + [aux_sym_type_of_expression_token1] = ACTIONS(6828), + [aux_sym_unary_expression_token1] = ACTIONS(6828), + [sym_string_literal] = ACTIONS(6826), + [sym_number_literal] = ACTIONS(6826), + [aux_sym_boolean_literal_token1] = ACTIONS(6828), + [aux_sym_boolean_literal_token2] = ACTIONS(6828), + [sym_nothing_literal] = ACTIONS(6828), + [sym_null_literal] = ACTIONS(6828), + [sym_empty_literal] = ACTIONS(6828), + [sym_date_literal] = ACTIONS(6826), + [anon_sym_POUND] = ACTIONS(6828), + }, + [STATE(4517)] = { + [sym_next_variable_list] = STATE(6816), + [sym__assignable_expression] = STATE(5809), + [sym__callable_expression] = STATE(5801), + [sym_call_expression] = STATE(5238), + [sym_member_expression] = STATE(6043), + [sym_qualified_member_expression] = STATE(5833), + [sym_implicit_member_expression] = STATE(5833), + [sym_identifier] = ACTIONS(9947), + [sym_newline] = ACTIONS(6863), + [anon_sym_COLON] = ACTIONS(6863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6865), + [aux_sym_frm_property_statement_token1] = ACTIONS(9949), + [anon_sym_DOT] = ACTIONS(9951), + [anon_sym_BANG] = ACTIONS(9953), + [aux_sym__attribute_identifier_token1] = ACTIONS(6865), + [aux_sym_option_statement_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6865), + [aux_sym_preprocessor_const_token1] = ACTIONS(6865), + [sym_static_modifier] = ACTIONS(6865), + [sym__dim_keyword] = ACTIONS(6865), + [sym__redim_keyword] = ACTIONS(6865), + [aux_sym_get_accessor_token1] = ACTIONS(6865), + [aux_sym_set_accessor_token1] = ACTIONS(6865), + [aux_sym_const_declaration_token1] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6863), + [aux_sym_as_type_clause_token2] = ACTIONS(6865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9955), + [aux_sym_visibility_token1] = ACTIONS(6865), + [aux_sym_visibility_token2] = ACTIONS(6865), + [aux_sym_elseif_fragment_token1] = ACTIONS(6865), + [aux_sym_else_fragment_token1] = ACTIONS(6865), + [aux_sym_select_statement_token1] = ACTIONS(6865), + [aux_sym__for_header_token1] = ACTIONS(6865), + [aux_sym_do_statement_token1] = ACTIONS(6865), + [aux_sym_do_statement_token2] = ACTIONS(6865), + [aux_sym_do_condition_token1] = ACTIONS(6865), + [aux_sym_with_statement_token1] = ACTIONS(6865), + [aux_sym_exit_statement_token1] = ACTIONS(6865), + [sym_end_statement] = ACTIONS(6863), + [aux_sym_on_goto_statement_token1] = ACTIONS(6865), + [aux_sym_on_goto_statement_token2] = ACTIONS(6865), + [aux_sym_on_error_statement_token2] = ACTIONS(6865), + [sym__ambiguous_redim_statement] = ACTIONS(6863), + [aux_sym_erase_statement_token1] = ACTIONS(6865), + [aux_sym_open_statement_token1] = ACTIONS(6865), + [aux_sym_file_mode_token2] = ACTIONS(6865), + [aux_sym_file_access_token2] = ACTIONS(6865), + [aux_sym_file_lock_token2] = ACTIONS(6865), + [aux_sym_print_statement_token1] = ACTIONS(6865), + [anon_sym_PLUS] = ACTIONS(6863), + [anon_sym_DASH] = ACTIONS(6865), + [anon_sym_QMARK] = ACTIONS(6863), + [aux_sym_close_statement_token1] = ACTIONS(6865), + [aux_sym_put_statement_token1] = ACTIONS(6865), + [aux_sym_unlock_statement_token1] = ACTIONS(6865), + [aux_sym_seek_statement_token1] = ACTIONS(6865), + [sym_reset_statement] = ACTIONS(6865), + [aux_sym_raise_event_statement_token1] = ACTIONS(6865), + [sym_stop_statement] = ACTIONS(6865), + [sym_beep_statement] = ACTIONS(6865), + [aux_sym_unload_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token2] = ACTIONS(6865), + [aux_sym_def_type_statement_token3] = ACTIONS(6865), + [aux_sym_def_type_statement_token4] = ACTIONS(6865), + [aux_sym_def_type_statement_token5] = ACTIONS(6865), + [aux_sym_def_type_statement_token6] = ACTIONS(6865), + [aux_sym_def_type_statement_token7] = ACTIONS(6865), + [aux_sym_def_type_statement_token8] = ACTIONS(6865), + [aux_sym_def_type_statement_token9] = ACTIONS(6865), + [aux_sym_def_type_statement_token10] = ACTIONS(6865), + [aux_sym_def_type_statement_token11] = ACTIONS(6865), + [aux_sym_def_type_statement_token12] = ACTIONS(6865), + [aux_sym_def_type_statement_token13] = ACTIONS(6865), + [aux_sym_def_type_statement_token14] = ACTIONS(6865), + [aux_sym_call_statement_token1] = ACTIONS(6865), + [sym__ambiguous_call_statement] = ACTIONS(6865), + [aux_sym_addressof_expression_token1] = ACTIONS(6865), + [aux_sym_type_of_expression_token1] = ACTIONS(6865), + [aux_sym_unary_expression_token1] = ACTIONS(6865), + [sym_string_literal] = ACTIONS(6863), + [sym_number_literal] = ACTIONS(6863), + [aux_sym_boolean_literal_token1] = ACTIONS(6865), + [aux_sym_boolean_literal_token2] = ACTIONS(6865), + [sym_nothing_literal] = ACTIONS(6865), + [sym_null_literal] = ACTIONS(6865), + [sym_empty_literal] = ACTIONS(6865), + [sym_date_literal] = ACTIONS(6863), + [anon_sym_POUND] = ACTIONS(6865), + }, + [STATE(4518)] = { + [sym_identifier] = ACTIONS(9020), + [sym_newline] = ACTIONS(9022), + [anon_sym_COLON] = ACTIONS(9022), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9020), + [aux_sym_frm_property_statement_token1] = ACTIONS(9020), + [anon_sym_DOT] = ACTIONS(9020), + [anon_sym_BANG] = ACTIONS(9022), + [aux_sym__attribute_identifier_token1] = ACTIONS(9020), + [aux_sym_option_statement_token3] = ACTIONS(9020), + [aux_sym_type_declaration_token1] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9020), + [aux_sym_enum_declaration_token1] = ACTIONS(9020), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9020), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9020), + [aux_sym_declare_function_statement_token1] = ACTIONS(9020), + [aux_sym_preprocessor_const_token1] = ACTIONS(9020), + [aux_sym__property_get_header_token1] = ACTIONS(9020), + [aux_sym_event_declaration_token1] = ACTIONS(9020), + [sym_static_modifier] = ACTIONS(9020), + [sym__dim_keyword] = ACTIONS(9020), + [sym__redim_keyword] = ACTIONS(9020), + [aux_sym_get_accessor_token1] = ACTIONS(9020), + [aux_sym_set_accessor_token1] = ACTIONS(9020), + [aux_sym_const_declaration_token1] = ACTIONS(9020), + [anon_sym_LPAREN] = ACTIONS(9022), + [aux_sym_as_type_clause_token2] = ACTIONS(9020), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9020), + [aux_sym_visibility_token1] = ACTIONS(9020), + [aux_sym_visibility_token2] = ACTIONS(9020), + [aux_sym_elseif_fragment_token1] = ACTIONS(9020), + [aux_sym_else_fragment_token1] = ACTIONS(9020), + [aux_sym_select_statement_token1] = ACTIONS(9020), + [aux_sym__for_header_token1] = ACTIONS(9020), + [aux_sym_do_statement_token1] = ACTIONS(9020), + [aux_sym_do_condition_token1] = ACTIONS(9020), + [aux_sym_with_statement_token1] = ACTIONS(9020), + [aux_sym_exit_statement_token1] = ACTIONS(9020), + [sym_end_statement] = ACTIONS(9022), + [aux_sym_on_goto_statement_token1] = ACTIONS(9020), + [aux_sym_on_goto_statement_token2] = ACTIONS(9020), + [aux_sym_on_error_statement_token2] = ACTIONS(9020), + [sym__ambiguous_redim_statement] = ACTIONS(9022), + [aux_sym_erase_statement_token1] = ACTIONS(9020), + [aux_sym_open_statement_token1] = ACTIONS(9020), + [aux_sym_file_mode_token2] = ACTIONS(9020), + [aux_sym_file_access_token2] = ACTIONS(9020), + [aux_sym_file_lock_token2] = ACTIONS(9020), + [aux_sym_print_statement_token1] = ACTIONS(9020), + [anon_sym_PLUS] = ACTIONS(9022), + [anon_sym_DASH] = ACTIONS(9020), + [anon_sym_QMARK] = ACTIONS(9022), + [aux_sym_close_statement_token1] = ACTIONS(9020), + [aux_sym_put_statement_token1] = ACTIONS(9020), + [aux_sym_unlock_statement_token1] = ACTIONS(9020), + [aux_sym_seek_statement_token1] = ACTIONS(9020), + [sym_reset_statement] = ACTIONS(9020), + [aux_sym_raise_event_statement_token1] = ACTIONS(9020), + [sym_stop_statement] = ACTIONS(9020), + [sym_beep_statement] = ACTIONS(9020), + [aux_sym_unload_statement_token1] = ACTIONS(9020), + [aux_sym_def_type_statement_token1] = ACTIONS(9020), + [aux_sym_def_type_statement_token2] = ACTIONS(9020), + [aux_sym_def_type_statement_token3] = ACTIONS(9020), + [aux_sym_def_type_statement_token4] = ACTIONS(9020), + [aux_sym_def_type_statement_token5] = ACTIONS(9020), + [aux_sym_def_type_statement_token6] = ACTIONS(9020), + [aux_sym_def_type_statement_token7] = ACTIONS(9020), + [aux_sym_def_type_statement_token8] = ACTIONS(9020), + [aux_sym_def_type_statement_token9] = ACTIONS(9020), + [aux_sym_def_type_statement_token10] = ACTIONS(9020), + [aux_sym_def_type_statement_token11] = ACTIONS(9020), + [aux_sym_def_type_statement_token12] = ACTIONS(9020), + [aux_sym_def_type_statement_token13] = ACTIONS(9020), + [aux_sym_def_type_statement_token14] = ACTIONS(9020), + [aux_sym_call_statement_token1] = ACTIONS(9020), + [sym__ambiguous_call_statement] = ACTIONS(9020), + [aux_sym_addressof_expression_token1] = ACTIONS(9020), + [aux_sym_type_of_expression_token1] = ACTIONS(9020), + [aux_sym_unary_expression_token1] = ACTIONS(9020), + [sym_string_literal] = ACTIONS(9022), + [sym_number_literal] = ACTIONS(9022), + [aux_sym_boolean_literal_token1] = ACTIONS(9020), + [aux_sym_boolean_literal_token2] = ACTIONS(9020), + [sym_nothing_literal] = ACTIONS(9020), + [sym_null_literal] = ACTIONS(9020), + [sym_empty_literal] = ACTIONS(9020), + [sym_date_literal] = ACTIONS(9022), + [anon_sym_POUND] = ACTIONS(9020), + }, + [STATE(4519)] = { + [sym_identifier] = ACTIONS(9320), + [sym_newline] = ACTIONS(9322), + [anon_sym_COLON] = ACTIONS(9322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9320), + [aux_sym_frm_property_statement_token1] = ACTIONS(9320), + [anon_sym_DOT] = ACTIONS(9320), + [anon_sym_BANG] = ACTIONS(9322), + [aux_sym__attribute_identifier_token1] = ACTIONS(9320), + [aux_sym_option_statement_token3] = ACTIONS(9320), + [aux_sym_type_declaration_token1] = ACTIONS(9320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9320), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9320), + [aux_sym_enum_declaration_token1] = ACTIONS(9320), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9320), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9320), + [aux_sym_declare_function_statement_token1] = ACTIONS(9320), + [aux_sym_preprocessor_const_token1] = ACTIONS(9320), + [aux_sym__property_get_header_token1] = ACTIONS(9320), + [aux_sym_event_declaration_token1] = ACTIONS(9320), + [sym_static_modifier] = ACTIONS(9320), + [sym__dim_keyword] = ACTIONS(9320), + [sym__redim_keyword] = ACTIONS(9320), + [aux_sym_get_accessor_token1] = ACTIONS(9320), + [aux_sym_set_accessor_token1] = ACTIONS(9320), + [aux_sym_const_declaration_token1] = ACTIONS(9320), + [anon_sym_LPAREN] = ACTIONS(9322), + [aux_sym_as_type_clause_token2] = ACTIONS(9320), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9320), + [aux_sym_visibility_token1] = ACTIONS(9320), + [aux_sym_visibility_token2] = ACTIONS(9320), + [aux_sym_elseif_fragment_token1] = ACTIONS(9320), + [aux_sym_else_fragment_token1] = ACTIONS(9320), + [aux_sym_select_statement_token1] = ACTIONS(9320), + [aux_sym__for_header_token1] = ACTIONS(9320), + [aux_sym_do_statement_token1] = ACTIONS(9320), + [aux_sym_do_condition_token1] = ACTIONS(9320), + [aux_sym_with_statement_token1] = ACTIONS(9320), + [aux_sym_exit_statement_token1] = ACTIONS(9320), + [sym_end_statement] = ACTIONS(9322), + [aux_sym_on_goto_statement_token1] = ACTIONS(9320), + [aux_sym_on_goto_statement_token2] = ACTIONS(9320), + [aux_sym_on_error_statement_token2] = ACTIONS(9320), + [sym__ambiguous_redim_statement] = ACTIONS(9322), + [aux_sym_erase_statement_token1] = ACTIONS(9320), + [aux_sym_open_statement_token1] = ACTIONS(9320), + [aux_sym_file_mode_token2] = ACTIONS(9320), + [aux_sym_file_access_token2] = ACTIONS(9320), + [aux_sym_file_lock_token2] = ACTIONS(9320), + [aux_sym_print_statement_token1] = ACTIONS(9320), + [anon_sym_PLUS] = ACTIONS(9322), + [anon_sym_DASH] = ACTIONS(9320), + [anon_sym_QMARK] = ACTIONS(9322), + [aux_sym_close_statement_token1] = ACTIONS(9320), + [aux_sym_put_statement_token1] = ACTIONS(9320), + [aux_sym_unlock_statement_token1] = ACTIONS(9320), + [aux_sym_seek_statement_token1] = ACTIONS(9320), + [sym_reset_statement] = ACTIONS(9320), + [aux_sym_raise_event_statement_token1] = ACTIONS(9320), + [sym_stop_statement] = ACTIONS(9320), + [sym_beep_statement] = ACTIONS(9320), + [aux_sym_unload_statement_token1] = ACTIONS(9320), + [aux_sym_def_type_statement_token1] = ACTIONS(9320), + [aux_sym_def_type_statement_token2] = ACTIONS(9320), + [aux_sym_def_type_statement_token3] = ACTIONS(9320), + [aux_sym_def_type_statement_token4] = ACTIONS(9320), + [aux_sym_def_type_statement_token5] = ACTIONS(9320), + [aux_sym_def_type_statement_token6] = ACTIONS(9320), + [aux_sym_def_type_statement_token7] = ACTIONS(9320), + [aux_sym_def_type_statement_token8] = ACTIONS(9320), + [aux_sym_def_type_statement_token9] = ACTIONS(9320), + [aux_sym_def_type_statement_token10] = ACTIONS(9320), + [aux_sym_def_type_statement_token11] = ACTIONS(9320), + [aux_sym_def_type_statement_token12] = ACTIONS(9320), + [aux_sym_def_type_statement_token13] = ACTIONS(9320), + [aux_sym_def_type_statement_token14] = ACTIONS(9320), + [aux_sym_call_statement_token1] = ACTIONS(9320), + [sym__ambiguous_call_statement] = ACTIONS(9320), + [aux_sym_addressof_expression_token1] = ACTIONS(9320), + [aux_sym_type_of_expression_token1] = ACTIONS(9320), + [aux_sym_unary_expression_token1] = ACTIONS(9320), + [sym_string_literal] = ACTIONS(9322), + [sym_number_literal] = ACTIONS(9322), + [aux_sym_boolean_literal_token1] = ACTIONS(9320), + [aux_sym_boolean_literal_token2] = ACTIONS(9320), + [sym_nothing_literal] = ACTIONS(9320), + [sym_null_literal] = ACTIONS(9320), + [sym_empty_literal] = ACTIONS(9320), + [sym_date_literal] = ACTIONS(9322), + [anon_sym_POUND] = ACTIONS(9320), + }, + [STATE(4520)] = { + [sym_identifier] = ACTIONS(9024), + [sym_newline] = ACTIONS(9026), + [anon_sym_COLON] = ACTIONS(9026), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9024), + [aux_sym_frm_property_statement_token1] = ACTIONS(9024), + [anon_sym_DOT] = ACTIONS(9024), + [anon_sym_BANG] = ACTIONS(9026), + [aux_sym__attribute_identifier_token1] = ACTIONS(9024), + [aux_sym_option_statement_token3] = ACTIONS(9024), + [aux_sym_type_declaration_token1] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9024), + [aux_sym_enum_declaration_token1] = ACTIONS(9024), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9024), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9024), + [aux_sym_declare_function_statement_token1] = ACTIONS(9024), + [aux_sym_preprocessor_const_token1] = ACTIONS(9024), + [aux_sym__property_get_header_token1] = ACTIONS(9024), + [aux_sym_event_declaration_token1] = ACTIONS(9024), + [sym_static_modifier] = ACTIONS(9024), + [sym__dim_keyword] = ACTIONS(9024), + [sym__redim_keyword] = ACTIONS(9024), + [aux_sym_get_accessor_token1] = ACTIONS(9024), + [aux_sym_set_accessor_token1] = ACTIONS(9024), + [aux_sym_const_declaration_token1] = ACTIONS(9024), + [anon_sym_LPAREN] = ACTIONS(9026), + [aux_sym_as_type_clause_token2] = ACTIONS(9024), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9024), + [aux_sym_visibility_token1] = ACTIONS(9024), + [aux_sym_visibility_token2] = ACTIONS(9024), + [aux_sym_elseif_fragment_token1] = ACTIONS(9024), + [aux_sym_else_fragment_token1] = ACTIONS(9024), + [aux_sym_select_statement_token1] = ACTIONS(9024), + [aux_sym__for_header_token1] = ACTIONS(9024), + [aux_sym_do_statement_token1] = ACTIONS(9024), + [aux_sym_do_condition_token1] = ACTIONS(9024), + [aux_sym_with_statement_token1] = ACTIONS(9024), + [aux_sym_exit_statement_token1] = ACTIONS(9024), + [sym_end_statement] = ACTIONS(9026), + [aux_sym_on_goto_statement_token1] = ACTIONS(9024), + [aux_sym_on_goto_statement_token2] = ACTIONS(9024), + [aux_sym_on_error_statement_token2] = ACTIONS(9024), + [sym__ambiguous_redim_statement] = ACTIONS(9026), + [aux_sym_erase_statement_token1] = ACTIONS(9024), + [aux_sym_open_statement_token1] = ACTIONS(9024), + [aux_sym_file_mode_token2] = ACTIONS(9024), + [aux_sym_file_access_token2] = ACTIONS(9024), + [aux_sym_file_lock_token2] = ACTIONS(9024), + [aux_sym_print_statement_token1] = ACTIONS(9024), + [anon_sym_PLUS] = ACTIONS(9026), + [anon_sym_DASH] = ACTIONS(9024), + [anon_sym_QMARK] = ACTIONS(9026), + [aux_sym_close_statement_token1] = ACTIONS(9024), + [aux_sym_put_statement_token1] = ACTIONS(9024), + [aux_sym_unlock_statement_token1] = ACTIONS(9024), + [aux_sym_seek_statement_token1] = ACTIONS(9024), + [sym_reset_statement] = ACTIONS(9024), + [aux_sym_raise_event_statement_token1] = ACTIONS(9024), + [sym_stop_statement] = ACTIONS(9024), + [sym_beep_statement] = ACTIONS(9024), + [aux_sym_unload_statement_token1] = ACTIONS(9024), + [aux_sym_def_type_statement_token1] = ACTIONS(9024), + [aux_sym_def_type_statement_token2] = ACTIONS(9024), + [aux_sym_def_type_statement_token3] = ACTIONS(9024), + [aux_sym_def_type_statement_token4] = ACTIONS(9024), + [aux_sym_def_type_statement_token5] = ACTIONS(9024), + [aux_sym_def_type_statement_token6] = ACTIONS(9024), + [aux_sym_def_type_statement_token7] = ACTIONS(9024), + [aux_sym_def_type_statement_token8] = ACTIONS(9024), + [aux_sym_def_type_statement_token9] = ACTIONS(9024), + [aux_sym_def_type_statement_token10] = ACTIONS(9024), + [aux_sym_def_type_statement_token11] = ACTIONS(9024), + [aux_sym_def_type_statement_token12] = ACTIONS(9024), + [aux_sym_def_type_statement_token13] = ACTIONS(9024), + [aux_sym_def_type_statement_token14] = ACTIONS(9024), + [aux_sym_call_statement_token1] = ACTIONS(9024), + [sym__ambiguous_call_statement] = ACTIONS(9024), + [aux_sym_addressof_expression_token1] = ACTIONS(9024), + [aux_sym_type_of_expression_token1] = ACTIONS(9024), + [aux_sym_unary_expression_token1] = ACTIONS(9024), + [sym_string_literal] = ACTIONS(9026), + [sym_number_literal] = ACTIONS(9026), + [aux_sym_boolean_literal_token1] = ACTIONS(9024), + [aux_sym_boolean_literal_token2] = ACTIONS(9024), + [sym_nothing_literal] = ACTIONS(9024), + [sym_null_literal] = ACTIONS(9024), + [sym_empty_literal] = ACTIONS(9024), + [sym_date_literal] = ACTIONS(9026), + [anon_sym_POUND] = ACTIONS(9024), + }, + [STATE(4521)] = { + [sym_identifier] = ACTIONS(9044), + [sym_newline] = ACTIONS(9046), + [anon_sym_COLON] = ACTIONS(9046), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9044), + [aux_sym_frm_property_statement_token1] = ACTIONS(9044), + [anon_sym_DOT] = ACTIONS(9044), + [anon_sym_BANG] = ACTIONS(9046), + [aux_sym__attribute_identifier_token1] = ACTIONS(9044), + [aux_sym_option_statement_token3] = ACTIONS(9044), + [aux_sym_type_declaration_token1] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9044), + [aux_sym_enum_declaration_token1] = ACTIONS(9044), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9044), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9044), + [aux_sym_declare_function_statement_token1] = ACTIONS(9044), + [aux_sym_preprocessor_const_token1] = ACTIONS(9044), + [aux_sym__property_get_header_token1] = ACTIONS(9044), + [aux_sym_event_declaration_token1] = ACTIONS(9044), + [sym_static_modifier] = ACTIONS(9044), + [sym__dim_keyword] = ACTIONS(9044), + [sym__redim_keyword] = ACTIONS(9044), + [aux_sym_get_accessor_token1] = ACTIONS(9044), + [aux_sym_set_accessor_token1] = ACTIONS(9044), + [aux_sym_const_declaration_token1] = ACTIONS(9044), + [anon_sym_LPAREN] = ACTIONS(9046), + [aux_sym_as_type_clause_token2] = ACTIONS(9044), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9044), + [aux_sym_visibility_token1] = ACTIONS(9044), + [aux_sym_visibility_token2] = ACTIONS(9044), + [aux_sym_elseif_fragment_token1] = ACTIONS(9044), + [aux_sym_else_fragment_token1] = ACTIONS(9044), + [aux_sym_select_statement_token1] = ACTIONS(9044), + [aux_sym__for_header_token1] = ACTIONS(9044), + [aux_sym_do_statement_token1] = ACTIONS(9044), + [aux_sym_do_condition_token1] = ACTIONS(9044), + [aux_sym_with_statement_token1] = ACTIONS(9044), + [aux_sym_exit_statement_token1] = ACTIONS(9044), + [sym_end_statement] = ACTIONS(9046), + [aux_sym_on_goto_statement_token1] = ACTIONS(9044), + [aux_sym_on_goto_statement_token2] = ACTIONS(9044), + [aux_sym_on_error_statement_token2] = ACTIONS(9044), + [sym__ambiguous_redim_statement] = ACTIONS(9046), + [aux_sym_erase_statement_token1] = ACTIONS(9044), + [aux_sym_open_statement_token1] = ACTIONS(9044), + [aux_sym_file_mode_token2] = ACTIONS(9044), + [aux_sym_file_access_token2] = ACTIONS(9044), + [aux_sym_file_lock_token2] = ACTIONS(9044), + [aux_sym_print_statement_token1] = ACTIONS(9044), + [anon_sym_PLUS] = ACTIONS(9046), + [anon_sym_DASH] = ACTIONS(9044), + [anon_sym_QMARK] = ACTIONS(9046), + [aux_sym_close_statement_token1] = ACTIONS(9044), + [aux_sym_put_statement_token1] = ACTIONS(9044), + [aux_sym_unlock_statement_token1] = ACTIONS(9044), + [aux_sym_seek_statement_token1] = ACTIONS(9044), + [sym_reset_statement] = ACTIONS(9044), + [aux_sym_raise_event_statement_token1] = ACTIONS(9044), + [sym_stop_statement] = ACTIONS(9044), + [sym_beep_statement] = ACTIONS(9044), + [aux_sym_unload_statement_token1] = ACTIONS(9044), + [aux_sym_def_type_statement_token1] = ACTIONS(9044), + [aux_sym_def_type_statement_token2] = ACTIONS(9044), + [aux_sym_def_type_statement_token3] = ACTIONS(9044), + [aux_sym_def_type_statement_token4] = ACTIONS(9044), + [aux_sym_def_type_statement_token5] = ACTIONS(9044), + [aux_sym_def_type_statement_token6] = ACTIONS(9044), + [aux_sym_def_type_statement_token7] = ACTIONS(9044), + [aux_sym_def_type_statement_token8] = ACTIONS(9044), + [aux_sym_def_type_statement_token9] = ACTIONS(9044), + [aux_sym_def_type_statement_token10] = ACTIONS(9044), + [aux_sym_def_type_statement_token11] = ACTIONS(9044), + [aux_sym_def_type_statement_token12] = ACTIONS(9044), + [aux_sym_def_type_statement_token13] = ACTIONS(9044), + [aux_sym_def_type_statement_token14] = ACTIONS(9044), + [aux_sym_call_statement_token1] = ACTIONS(9044), + [sym__ambiguous_call_statement] = ACTIONS(9044), + [aux_sym_addressof_expression_token1] = ACTIONS(9044), + [aux_sym_type_of_expression_token1] = ACTIONS(9044), + [aux_sym_unary_expression_token1] = ACTIONS(9044), + [sym_string_literal] = ACTIONS(9046), + [sym_number_literal] = ACTIONS(9046), + [aux_sym_boolean_literal_token1] = ACTIONS(9044), + [aux_sym_boolean_literal_token2] = ACTIONS(9044), + [sym_nothing_literal] = ACTIONS(9044), + [sym_null_literal] = ACTIONS(9044), + [sym_empty_literal] = ACTIONS(9044), + [sym_date_literal] = ACTIONS(9046), + [anon_sym_POUND] = ACTIONS(9044), + }, + [STATE(4522)] = { + [sym_identifier] = ACTIONS(9048), + [sym_newline] = ACTIONS(9050), + [anon_sym_COLON] = ACTIONS(9050), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9048), + [aux_sym_frm_property_statement_token1] = ACTIONS(9048), + [anon_sym_DOT] = ACTIONS(9048), + [anon_sym_BANG] = ACTIONS(9050), + [aux_sym__attribute_identifier_token1] = ACTIONS(9048), + [aux_sym_option_statement_token3] = ACTIONS(9048), + [aux_sym_type_declaration_token1] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9048), + [aux_sym_enum_declaration_token1] = ACTIONS(9048), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9048), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9048), + [aux_sym_declare_function_statement_token1] = ACTIONS(9048), + [aux_sym_preprocessor_const_token1] = ACTIONS(9048), + [aux_sym__property_get_header_token1] = ACTIONS(9048), + [aux_sym_event_declaration_token1] = ACTIONS(9048), + [sym_static_modifier] = ACTIONS(9048), + [sym__dim_keyword] = ACTIONS(9048), + [sym__redim_keyword] = ACTIONS(9048), + [aux_sym_get_accessor_token1] = ACTIONS(9048), + [aux_sym_set_accessor_token1] = ACTIONS(9048), + [aux_sym_const_declaration_token1] = ACTIONS(9048), + [anon_sym_LPAREN] = ACTIONS(9050), + [aux_sym_as_type_clause_token2] = ACTIONS(9048), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9048), + [aux_sym_visibility_token1] = ACTIONS(9048), + [aux_sym_visibility_token2] = ACTIONS(9048), + [aux_sym_elseif_fragment_token1] = ACTIONS(9048), + [aux_sym_else_fragment_token1] = ACTIONS(9048), + [aux_sym_select_statement_token1] = ACTIONS(9048), + [aux_sym__for_header_token1] = ACTIONS(9048), + [aux_sym_do_statement_token1] = ACTIONS(9048), + [aux_sym_do_condition_token1] = ACTIONS(9048), + [aux_sym_with_statement_token1] = ACTIONS(9048), + [aux_sym_exit_statement_token1] = ACTIONS(9048), + [sym_end_statement] = ACTIONS(9050), + [aux_sym_on_goto_statement_token1] = ACTIONS(9048), + [aux_sym_on_goto_statement_token2] = ACTIONS(9048), + [aux_sym_on_error_statement_token2] = ACTIONS(9048), + [sym__ambiguous_redim_statement] = ACTIONS(9050), + [aux_sym_erase_statement_token1] = ACTIONS(9048), + [aux_sym_open_statement_token1] = ACTIONS(9048), + [aux_sym_file_mode_token2] = ACTIONS(9048), + [aux_sym_file_access_token2] = ACTIONS(9048), + [aux_sym_file_lock_token2] = ACTIONS(9048), + [aux_sym_print_statement_token1] = ACTIONS(9048), + [anon_sym_PLUS] = ACTIONS(9050), + [anon_sym_DASH] = ACTIONS(9048), + [anon_sym_QMARK] = ACTIONS(9050), + [aux_sym_close_statement_token1] = ACTIONS(9048), + [aux_sym_put_statement_token1] = ACTIONS(9048), + [aux_sym_unlock_statement_token1] = ACTIONS(9048), + [aux_sym_seek_statement_token1] = ACTIONS(9048), + [sym_reset_statement] = ACTIONS(9048), + [aux_sym_raise_event_statement_token1] = ACTIONS(9048), + [sym_stop_statement] = ACTIONS(9048), + [sym_beep_statement] = ACTIONS(9048), + [aux_sym_unload_statement_token1] = ACTIONS(9048), + [aux_sym_def_type_statement_token1] = ACTIONS(9048), + [aux_sym_def_type_statement_token2] = ACTIONS(9048), + [aux_sym_def_type_statement_token3] = ACTIONS(9048), + [aux_sym_def_type_statement_token4] = ACTIONS(9048), + [aux_sym_def_type_statement_token5] = ACTIONS(9048), + [aux_sym_def_type_statement_token6] = ACTIONS(9048), + [aux_sym_def_type_statement_token7] = ACTIONS(9048), + [aux_sym_def_type_statement_token8] = ACTIONS(9048), + [aux_sym_def_type_statement_token9] = ACTIONS(9048), + [aux_sym_def_type_statement_token10] = ACTIONS(9048), + [aux_sym_def_type_statement_token11] = ACTIONS(9048), + [aux_sym_def_type_statement_token12] = ACTIONS(9048), + [aux_sym_def_type_statement_token13] = ACTIONS(9048), + [aux_sym_def_type_statement_token14] = ACTIONS(9048), + [aux_sym_call_statement_token1] = ACTIONS(9048), + [sym__ambiguous_call_statement] = ACTIONS(9048), + [aux_sym_addressof_expression_token1] = ACTIONS(9048), + [aux_sym_type_of_expression_token1] = ACTIONS(9048), + [aux_sym_unary_expression_token1] = ACTIONS(9048), + [sym_string_literal] = ACTIONS(9050), + [sym_number_literal] = ACTIONS(9050), + [aux_sym_boolean_literal_token1] = ACTIONS(9048), + [aux_sym_boolean_literal_token2] = ACTIONS(9048), + [sym_nothing_literal] = ACTIONS(9048), + [sym_null_literal] = ACTIONS(9048), + [sym_empty_literal] = ACTIONS(9048), + [sym_date_literal] = ACTIONS(9050), + [anon_sym_POUND] = ACTIONS(9048), + }, + [STATE(4523)] = { + [sym_identifier] = ACTIONS(8988), + [sym_newline] = ACTIONS(8990), + [anon_sym_COLON] = ACTIONS(8990), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8988), + [aux_sym_frm_property_statement_token1] = ACTIONS(8988), + [anon_sym_DOT] = ACTIONS(8988), + [anon_sym_BANG] = ACTIONS(8990), + [aux_sym__attribute_identifier_token1] = ACTIONS(8988), + [aux_sym_option_statement_token3] = ACTIONS(8988), + [aux_sym_type_declaration_token1] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8988), + [aux_sym_enum_declaration_token1] = ACTIONS(8988), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8988), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8988), + [aux_sym_declare_function_statement_token1] = ACTIONS(8988), + [aux_sym_preprocessor_const_token1] = ACTIONS(8988), + [aux_sym__property_get_header_token1] = ACTIONS(8988), + [aux_sym_event_declaration_token1] = ACTIONS(8988), + [sym_static_modifier] = ACTIONS(8988), + [sym__dim_keyword] = ACTIONS(8988), + [sym__redim_keyword] = ACTIONS(8988), + [aux_sym_get_accessor_token1] = ACTIONS(8988), + [aux_sym_set_accessor_token1] = ACTIONS(8988), + [aux_sym_const_declaration_token1] = ACTIONS(8988), + [anon_sym_LPAREN] = ACTIONS(8990), + [aux_sym_as_type_clause_token2] = ACTIONS(8988), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8988), + [aux_sym_visibility_token1] = ACTIONS(8988), + [aux_sym_visibility_token2] = ACTIONS(8988), + [aux_sym_elseif_fragment_token1] = ACTIONS(8988), + [aux_sym_else_fragment_token1] = ACTIONS(8988), + [aux_sym_select_statement_token1] = ACTIONS(8988), + [aux_sym__for_header_token1] = ACTIONS(8988), + [aux_sym_do_statement_token1] = ACTIONS(8988), + [aux_sym_do_condition_token1] = ACTIONS(8988), + [aux_sym_with_statement_token1] = ACTIONS(8988), + [aux_sym_exit_statement_token1] = ACTIONS(8988), + [sym_end_statement] = ACTIONS(8990), + [aux_sym_on_goto_statement_token1] = ACTIONS(8988), + [aux_sym_on_goto_statement_token2] = ACTIONS(8988), + [aux_sym_on_error_statement_token2] = ACTIONS(8988), + [sym__ambiguous_redim_statement] = ACTIONS(8990), + [aux_sym_erase_statement_token1] = ACTIONS(8988), + [aux_sym_open_statement_token1] = ACTIONS(8988), + [aux_sym_file_mode_token2] = ACTIONS(8988), + [aux_sym_file_access_token2] = ACTIONS(8988), + [aux_sym_file_lock_token2] = ACTIONS(8988), + [aux_sym_print_statement_token1] = ACTIONS(8988), + [anon_sym_PLUS] = ACTIONS(8990), + [anon_sym_DASH] = ACTIONS(8988), + [anon_sym_QMARK] = ACTIONS(8990), + [aux_sym_close_statement_token1] = ACTIONS(8988), + [aux_sym_put_statement_token1] = ACTIONS(8988), + [aux_sym_unlock_statement_token1] = ACTIONS(8988), + [aux_sym_seek_statement_token1] = ACTIONS(8988), + [sym_reset_statement] = ACTIONS(8988), + [aux_sym_raise_event_statement_token1] = ACTIONS(8988), + [sym_stop_statement] = ACTIONS(8988), + [sym_beep_statement] = ACTIONS(8988), + [aux_sym_unload_statement_token1] = ACTIONS(8988), + [aux_sym_def_type_statement_token1] = ACTIONS(8988), + [aux_sym_def_type_statement_token2] = ACTIONS(8988), + [aux_sym_def_type_statement_token3] = ACTIONS(8988), + [aux_sym_def_type_statement_token4] = ACTIONS(8988), + [aux_sym_def_type_statement_token5] = ACTIONS(8988), + [aux_sym_def_type_statement_token6] = ACTIONS(8988), + [aux_sym_def_type_statement_token7] = ACTIONS(8988), + [aux_sym_def_type_statement_token8] = ACTIONS(8988), + [aux_sym_def_type_statement_token9] = ACTIONS(8988), + [aux_sym_def_type_statement_token10] = ACTIONS(8988), + [aux_sym_def_type_statement_token11] = ACTIONS(8988), + [aux_sym_def_type_statement_token12] = ACTIONS(8988), + [aux_sym_def_type_statement_token13] = ACTIONS(8988), + [aux_sym_def_type_statement_token14] = ACTIONS(8988), + [aux_sym_call_statement_token1] = ACTIONS(8988), + [sym__ambiguous_call_statement] = ACTIONS(8988), + [aux_sym_addressof_expression_token1] = ACTIONS(8988), + [aux_sym_type_of_expression_token1] = ACTIONS(8988), + [aux_sym_unary_expression_token1] = ACTIONS(8988), + [sym_string_literal] = ACTIONS(8990), + [sym_number_literal] = ACTIONS(8990), + [aux_sym_boolean_literal_token1] = ACTIONS(8988), + [aux_sym_boolean_literal_token2] = ACTIONS(8988), + [sym_nothing_literal] = ACTIONS(8988), + [sym_null_literal] = ACTIONS(8988), + [sym_empty_literal] = ACTIONS(8988), + [sym_date_literal] = ACTIONS(8990), + [anon_sym_POUND] = ACTIONS(8988), + }, + [STATE(4524)] = { + [sym_identifier] = ACTIONS(9484), + [sym_newline] = ACTIONS(9486), + [anon_sym_COLON] = ACTIONS(9486), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9484), + [aux_sym_frm_property_statement_token1] = ACTIONS(9484), + [anon_sym_DOT] = ACTIONS(9484), + [anon_sym_BANG] = ACTIONS(9486), + [aux_sym__attribute_identifier_token1] = ACTIONS(9484), + [aux_sym_option_statement_token3] = ACTIONS(9484), + [aux_sym_type_declaration_token1] = ACTIONS(9484), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9484), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9484), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9484), + [aux_sym_enum_declaration_token1] = ACTIONS(9484), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9484), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9484), + [aux_sym_declare_function_statement_token1] = ACTIONS(9484), + [aux_sym_preprocessor_const_token1] = ACTIONS(9484), + [aux_sym__property_get_header_token1] = ACTIONS(9484), + [aux_sym_event_declaration_token1] = ACTIONS(9484), + [sym_static_modifier] = ACTIONS(9484), + [sym__dim_keyword] = ACTIONS(9484), + [sym__redim_keyword] = ACTIONS(9484), + [aux_sym_get_accessor_token1] = ACTIONS(9484), + [aux_sym_set_accessor_token1] = ACTIONS(9484), + [aux_sym_const_declaration_token1] = ACTIONS(9484), + [anon_sym_LPAREN] = ACTIONS(9486), + [aux_sym_as_type_clause_token2] = ACTIONS(9484), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9484), + [aux_sym_visibility_token1] = ACTIONS(9484), + [aux_sym_visibility_token2] = ACTIONS(9484), + [aux_sym_elseif_fragment_token1] = ACTIONS(9484), + [aux_sym_else_fragment_token1] = ACTIONS(9484), + [aux_sym_select_statement_token1] = ACTIONS(9484), + [aux_sym__for_header_token1] = ACTIONS(9484), + [aux_sym_do_statement_token1] = ACTIONS(9484), + [aux_sym_do_condition_token1] = ACTIONS(9484), + [aux_sym_with_statement_token1] = ACTIONS(9484), + [aux_sym_exit_statement_token1] = ACTIONS(9484), + [sym_end_statement] = ACTIONS(9486), + [aux_sym_on_goto_statement_token1] = ACTIONS(9484), + [aux_sym_on_goto_statement_token2] = ACTIONS(9484), + [aux_sym_on_error_statement_token2] = ACTIONS(9484), + [sym__ambiguous_redim_statement] = ACTIONS(9486), + [aux_sym_erase_statement_token1] = ACTIONS(9484), + [aux_sym_open_statement_token1] = ACTIONS(9484), + [aux_sym_file_mode_token2] = ACTIONS(9484), + [aux_sym_file_access_token2] = ACTIONS(9484), + [aux_sym_file_lock_token2] = ACTIONS(9484), + [aux_sym_print_statement_token1] = ACTIONS(9484), + [anon_sym_PLUS] = ACTIONS(9486), + [anon_sym_DASH] = ACTIONS(9484), + [anon_sym_QMARK] = ACTIONS(9486), + [aux_sym_close_statement_token1] = ACTIONS(9484), + [aux_sym_put_statement_token1] = ACTIONS(9484), + [aux_sym_unlock_statement_token1] = ACTIONS(9484), + [aux_sym_seek_statement_token1] = ACTIONS(9484), + [sym_reset_statement] = ACTIONS(9484), + [aux_sym_raise_event_statement_token1] = ACTIONS(9484), + [sym_stop_statement] = ACTIONS(9484), + [sym_beep_statement] = ACTIONS(9484), + [aux_sym_unload_statement_token1] = ACTIONS(9484), + [aux_sym_def_type_statement_token1] = ACTIONS(9484), + [aux_sym_def_type_statement_token2] = ACTIONS(9484), + [aux_sym_def_type_statement_token3] = ACTIONS(9484), + [aux_sym_def_type_statement_token4] = ACTIONS(9484), + [aux_sym_def_type_statement_token5] = ACTIONS(9484), + [aux_sym_def_type_statement_token6] = ACTIONS(9484), + [aux_sym_def_type_statement_token7] = ACTIONS(9484), + [aux_sym_def_type_statement_token8] = ACTIONS(9484), + [aux_sym_def_type_statement_token9] = ACTIONS(9484), + [aux_sym_def_type_statement_token10] = ACTIONS(9484), + [aux_sym_def_type_statement_token11] = ACTIONS(9484), + [aux_sym_def_type_statement_token12] = ACTIONS(9484), + [aux_sym_def_type_statement_token13] = ACTIONS(9484), + [aux_sym_def_type_statement_token14] = ACTIONS(9484), + [aux_sym_call_statement_token1] = ACTIONS(9484), + [sym__ambiguous_call_statement] = ACTIONS(9484), + [aux_sym_addressof_expression_token1] = ACTIONS(9484), + [aux_sym_type_of_expression_token1] = ACTIONS(9484), + [aux_sym_unary_expression_token1] = ACTIONS(9484), + [sym_string_literal] = ACTIONS(9486), + [sym_number_literal] = ACTIONS(9486), + [aux_sym_boolean_literal_token1] = ACTIONS(9484), + [aux_sym_boolean_literal_token2] = ACTIONS(9484), + [sym_nothing_literal] = ACTIONS(9484), + [sym_null_literal] = ACTIONS(9484), + [sym_empty_literal] = ACTIONS(9484), + [sym_date_literal] = ACTIONS(9486), + [anon_sym_POUND] = ACTIONS(9484), + }, + [STATE(4525)] = { + [sym_identifier] = ACTIONS(9382), + [sym_newline] = ACTIONS(9384), + [anon_sym_COLON] = ACTIONS(9384), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9382), + [aux_sym_frm_property_statement_token1] = ACTIONS(9382), + [anon_sym_DOT] = ACTIONS(9382), + [anon_sym_BANG] = ACTIONS(9384), + [aux_sym__attribute_identifier_token1] = ACTIONS(9382), + [aux_sym_option_statement_token3] = ACTIONS(9382), + [aux_sym_type_declaration_token1] = ACTIONS(9382), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9382), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9382), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9382), + [aux_sym_enum_declaration_token1] = ACTIONS(9382), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9382), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9382), + [aux_sym_declare_function_statement_token1] = ACTIONS(9382), + [aux_sym_preprocessor_const_token1] = ACTIONS(9382), + [aux_sym__property_get_header_token1] = ACTIONS(9382), + [aux_sym_event_declaration_token1] = ACTIONS(9382), + [sym_static_modifier] = ACTIONS(9382), + [sym__dim_keyword] = ACTIONS(9382), + [sym__redim_keyword] = ACTIONS(9382), + [aux_sym_get_accessor_token1] = ACTIONS(9382), + [aux_sym_set_accessor_token1] = ACTIONS(9382), + [aux_sym_const_declaration_token1] = ACTIONS(9382), + [anon_sym_LPAREN] = ACTIONS(9384), + [aux_sym_as_type_clause_token2] = ACTIONS(9382), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9382), + [aux_sym_visibility_token1] = ACTIONS(9382), + [aux_sym_visibility_token2] = ACTIONS(9382), + [aux_sym_elseif_fragment_token1] = ACTIONS(9382), + [aux_sym_else_fragment_token1] = ACTIONS(9382), + [aux_sym_select_statement_token1] = ACTIONS(9382), + [aux_sym__for_header_token1] = ACTIONS(9382), + [aux_sym_do_statement_token1] = ACTIONS(9382), + [aux_sym_do_condition_token1] = ACTIONS(9382), + [aux_sym_with_statement_token1] = ACTIONS(9382), + [aux_sym_exit_statement_token1] = ACTIONS(9382), + [sym_end_statement] = ACTIONS(9384), + [aux_sym_on_goto_statement_token1] = ACTIONS(9382), + [aux_sym_on_goto_statement_token2] = ACTIONS(9382), + [aux_sym_on_error_statement_token2] = ACTIONS(9382), + [sym__ambiguous_redim_statement] = ACTIONS(9384), + [aux_sym_erase_statement_token1] = ACTIONS(9382), + [aux_sym_open_statement_token1] = ACTIONS(9382), + [aux_sym_file_mode_token2] = ACTIONS(9382), + [aux_sym_file_access_token2] = ACTIONS(9382), + [aux_sym_file_lock_token2] = ACTIONS(9382), + [aux_sym_print_statement_token1] = ACTIONS(9382), + [anon_sym_PLUS] = ACTIONS(9384), + [anon_sym_DASH] = ACTIONS(9382), + [anon_sym_QMARK] = ACTIONS(9384), + [aux_sym_close_statement_token1] = ACTIONS(9382), + [aux_sym_put_statement_token1] = ACTIONS(9382), + [aux_sym_unlock_statement_token1] = ACTIONS(9382), + [aux_sym_seek_statement_token1] = ACTIONS(9382), + [sym_reset_statement] = ACTIONS(9382), + [aux_sym_raise_event_statement_token1] = ACTIONS(9382), + [sym_stop_statement] = ACTIONS(9382), + [sym_beep_statement] = ACTIONS(9382), + [aux_sym_unload_statement_token1] = ACTIONS(9382), + [aux_sym_def_type_statement_token1] = ACTIONS(9382), + [aux_sym_def_type_statement_token2] = ACTIONS(9382), + [aux_sym_def_type_statement_token3] = ACTIONS(9382), + [aux_sym_def_type_statement_token4] = ACTIONS(9382), + [aux_sym_def_type_statement_token5] = ACTIONS(9382), + [aux_sym_def_type_statement_token6] = ACTIONS(9382), + [aux_sym_def_type_statement_token7] = ACTIONS(9382), + [aux_sym_def_type_statement_token8] = ACTIONS(9382), + [aux_sym_def_type_statement_token9] = ACTIONS(9382), + [aux_sym_def_type_statement_token10] = ACTIONS(9382), + [aux_sym_def_type_statement_token11] = ACTIONS(9382), + [aux_sym_def_type_statement_token12] = ACTIONS(9382), + [aux_sym_def_type_statement_token13] = ACTIONS(9382), + [aux_sym_def_type_statement_token14] = ACTIONS(9382), + [aux_sym_call_statement_token1] = ACTIONS(9382), + [sym__ambiguous_call_statement] = ACTIONS(9382), + [aux_sym_addressof_expression_token1] = ACTIONS(9382), + [aux_sym_type_of_expression_token1] = ACTIONS(9382), + [aux_sym_unary_expression_token1] = ACTIONS(9382), + [sym_string_literal] = ACTIONS(9384), + [sym_number_literal] = ACTIONS(9384), + [aux_sym_boolean_literal_token1] = ACTIONS(9382), + [aux_sym_boolean_literal_token2] = ACTIONS(9382), + [sym_nothing_literal] = ACTIONS(9382), + [sym_null_literal] = ACTIONS(9382), + [sym_empty_literal] = ACTIONS(9382), + [sym_date_literal] = ACTIONS(9384), + [anon_sym_POUND] = ACTIONS(9382), + }, + [STATE(4526)] = { + [sym_identifier] = ACTIONS(9488), + [sym_newline] = ACTIONS(9490), + [anon_sym_COLON] = ACTIONS(9490), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9488), + [aux_sym_frm_property_statement_token1] = ACTIONS(9488), + [anon_sym_DOT] = ACTIONS(9488), + [anon_sym_BANG] = ACTIONS(9490), + [aux_sym__attribute_identifier_token1] = ACTIONS(9488), + [aux_sym_option_statement_token3] = ACTIONS(9488), + [aux_sym_type_declaration_token1] = ACTIONS(9488), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9488), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9488), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9488), + [aux_sym_enum_declaration_token1] = ACTIONS(9488), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9488), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9488), + [aux_sym_declare_function_statement_token1] = ACTIONS(9488), + [aux_sym_preprocessor_const_token1] = ACTIONS(9488), + [aux_sym__property_get_header_token1] = ACTIONS(9488), + [aux_sym_event_declaration_token1] = ACTIONS(9488), + [sym_static_modifier] = ACTIONS(9488), + [sym__dim_keyword] = ACTIONS(9488), + [sym__redim_keyword] = ACTIONS(9488), + [aux_sym_get_accessor_token1] = ACTIONS(9488), + [aux_sym_set_accessor_token1] = ACTIONS(9488), + [aux_sym_const_declaration_token1] = ACTIONS(9488), + [anon_sym_LPAREN] = ACTIONS(9490), + [aux_sym_as_type_clause_token2] = ACTIONS(9488), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9488), + [aux_sym_visibility_token1] = ACTIONS(9488), + [aux_sym_visibility_token2] = ACTIONS(9488), + [aux_sym_elseif_fragment_token1] = ACTIONS(9488), + [aux_sym_else_fragment_token1] = ACTIONS(9488), + [aux_sym_select_statement_token1] = ACTIONS(9488), + [aux_sym__for_header_token1] = ACTIONS(9488), + [aux_sym_do_statement_token1] = ACTIONS(9488), + [aux_sym_do_condition_token1] = ACTIONS(9488), + [aux_sym_with_statement_token1] = ACTIONS(9488), + [aux_sym_exit_statement_token1] = ACTIONS(9488), + [sym_end_statement] = ACTIONS(9490), + [aux_sym_on_goto_statement_token1] = ACTIONS(9488), + [aux_sym_on_goto_statement_token2] = ACTIONS(9488), + [aux_sym_on_error_statement_token2] = ACTIONS(9488), + [sym__ambiguous_redim_statement] = ACTIONS(9490), + [aux_sym_erase_statement_token1] = ACTIONS(9488), + [aux_sym_open_statement_token1] = ACTIONS(9488), + [aux_sym_file_mode_token2] = ACTIONS(9488), + [aux_sym_file_access_token2] = ACTIONS(9488), + [aux_sym_file_lock_token2] = ACTIONS(9488), + [aux_sym_print_statement_token1] = ACTIONS(9488), + [anon_sym_PLUS] = ACTIONS(9490), + [anon_sym_DASH] = ACTIONS(9488), + [anon_sym_QMARK] = ACTIONS(9490), + [aux_sym_close_statement_token1] = ACTIONS(9488), + [aux_sym_put_statement_token1] = ACTIONS(9488), + [aux_sym_unlock_statement_token1] = ACTIONS(9488), + [aux_sym_seek_statement_token1] = ACTIONS(9488), + [sym_reset_statement] = ACTIONS(9488), + [aux_sym_raise_event_statement_token1] = ACTIONS(9488), + [sym_stop_statement] = ACTIONS(9488), + [sym_beep_statement] = ACTIONS(9488), + [aux_sym_unload_statement_token1] = ACTIONS(9488), + [aux_sym_def_type_statement_token1] = ACTIONS(9488), + [aux_sym_def_type_statement_token2] = ACTIONS(9488), + [aux_sym_def_type_statement_token3] = ACTIONS(9488), + [aux_sym_def_type_statement_token4] = ACTIONS(9488), + [aux_sym_def_type_statement_token5] = ACTIONS(9488), + [aux_sym_def_type_statement_token6] = ACTIONS(9488), + [aux_sym_def_type_statement_token7] = ACTIONS(9488), + [aux_sym_def_type_statement_token8] = ACTIONS(9488), + [aux_sym_def_type_statement_token9] = ACTIONS(9488), + [aux_sym_def_type_statement_token10] = ACTIONS(9488), + [aux_sym_def_type_statement_token11] = ACTIONS(9488), + [aux_sym_def_type_statement_token12] = ACTIONS(9488), + [aux_sym_def_type_statement_token13] = ACTIONS(9488), + [aux_sym_def_type_statement_token14] = ACTIONS(9488), + [aux_sym_call_statement_token1] = ACTIONS(9488), + [sym__ambiguous_call_statement] = ACTIONS(9488), + [aux_sym_addressof_expression_token1] = ACTIONS(9488), + [aux_sym_type_of_expression_token1] = ACTIONS(9488), + [aux_sym_unary_expression_token1] = ACTIONS(9488), + [sym_string_literal] = ACTIONS(9490), + [sym_number_literal] = ACTIONS(9490), + [aux_sym_boolean_literal_token1] = ACTIONS(9488), + [aux_sym_boolean_literal_token2] = ACTIONS(9488), + [sym_nothing_literal] = ACTIONS(9488), + [sym_null_literal] = ACTIONS(9488), + [sym_empty_literal] = ACTIONS(9488), + [sym_date_literal] = ACTIONS(9490), + [anon_sym_POUND] = ACTIONS(9488), + }, + [STATE(4527)] = { + [sym_identifier] = ACTIONS(9386), + [sym_newline] = ACTIONS(9388), + [anon_sym_COLON] = ACTIONS(9388), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9386), + [aux_sym_frm_property_statement_token1] = ACTIONS(9386), + [anon_sym_DOT] = ACTIONS(9386), + [anon_sym_BANG] = ACTIONS(9388), + [aux_sym__attribute_identifier_token1] = ACTIONS(9386), + [aux_sym_option_statement_token3] = ACTIONS(9386), + [aux_sym_type_declaration_token1] = ACTIONS(9386), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9386), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9386), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9386), + [aux_sym_enum_declaration_token1] = ACTIONS(9386), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9386), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9386), + [aux_sym_declare_function_statement_token1] = ACTIONS(9386), + [aux_sym_preprocessor_const_token1] = ACTIONS(9386), + [aux_sym__property_get_header_token1] = ACTIONS(9386), + [aux_sym_event_declaration_token1] = ACTIONS(9386), + [sym_static_modifier] = ACTIONS(9386), + [sym__dim_keyword] = ACTIONS(9386), + [sym__redim_keyword] = ACTIONS(9386), + [aux_sym_get_accessor_token1] = ACTIONS(9386), + [aux_sym_set_accessor_token1] = ACTIONS(9386), + [aux_sym_const_declaration_token1] = ACTIONS(9386), + [anon_sym_LPAREN] = ACTIONS(9388), + [aux_sym_as_type_clause_token2] = ACTIONS(9386), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9386), + [aux_sym_visibility_token1] = ACTIONS(9386), + [aux_sym_visibility_token2] = ACTIONS(9386), + [aux_sym_elseif_fragment_token1] = ACTIONS(9386), + [aux_sym_else_fragment_token1] = ACTIONS(9386), + [aux_sym_select_statement_token1] = ACTIONS(9386), + [aux_sym__for_header_token1] = ACTIONS(9386), + [aux_sym_do_statement_token1] = ACTIONS(9386), + [aux_sym_do_condition_token1] = ACTIONS(9386), + [aux_sym_with_statement_token1] = ACTIONS(9386), + [aux_sym_exit_statement_token1] = ACTIONS(9386), + [sym_end_statement] = ACTIONS(9388), + [aux_sym_on_goto_statement_token1] = ACTIONS(9386), + [aux_sym_on_goto_statement_token2] = ACTIONS(9386), + [aux_sym_on_error_statement_token2] = ACTIONS(9386), + [sym__ambiguous_redim_statement] = ACTIONS(9388), + [aux_sym_erase_statement_token1] = ACTIONS(9386), + [aux_sym_open_statement_token1] = ACTIONS(9386), + [aux_sym_file_mode_token2] = ACTIONS(9386), + [aux_sym_file_access_token2] = ACTIONS(9386), + [aux_sym_file_lock_token2] = ACTIONS(9386), + [aux_sym_print_statement_token1] = ACTIONS(9386), + [anon_sym_PLUS] = ACTIONS(9388), + [anon_sym_DASH] = ACTIONS(9386), + [anon_sym_QMARK] = ACTIONS(9388), + [aux_sym_close_statement_token1] = ACTIONS(9386), + [aux_sym_put_statement_token1] = ACTIONS(9386), + [aux_sym_unlock_statement_token1] = ACTIONS(9386), + [aux_sym_seek_statement_token1] = ACTIONS(9386), + [sym_reset_statement] = ACTIONS(9386), + [aux_sym_raise_event_statement_token1] = ACTIONS(9386), + [sym_stop_statement] = ACTIONS(9386), + [sym_beep_statement] = ACTIONS(9386), + [aux_sym_unload_statement_token1] = ACTIONS(9386), + [aux_sym_def_type_statement_token1] = ACTIONS(9386), + [aux_sym_def_type_statement_token2] = ACTIONS(9386), + [aux_sym_def_type_statement_token3] = ACTIONS(9386), + [aux_sym_def_type_statement_token4] = ACTIONS(9386), + [aux_sym_def_type_statement_token5] = ACTIONS(9386), + [aux_sym_def_type_statement_token6] = ACTIONS(9386), + [aux_sym_def_type_statement_token7] = ACTIONS(9386), + [aux_sym_def_type_statement_token8] = ACTIONS(9386), + [aux_sym_def_type_statement_token9] = ACTIONS(9386), + [aux_sym_def_type_statement_token10] = ACTIONS(9386), + [aux_sym_def_type_statement_token11] = ACTIONS(9386), + [aux_sym_def_type_statement_token12] = ACTIONS(9386), + [aux_sym_def_type_statement_token13] = ACTIONS(9386), + [aux_sym_def_type_statement_token14] = ACTIONS(9386), + [aux_sym_call_statement_token1] = ACTIONS(9386), + [sym__ambiguous_call_statement] = ACTIONS(9386), + [aux_sym_addressof_expression_token1] = ACTIONS(9386), + [aux_sym_type_of_expression_token1] = ACTIONS(9386), + [aux_sym_unary_expression_token1] = ACTIONS(9386), + [sym_string_literal] = ACTIONS(9388), + [sym_number_literal] = ACTIONS(9388), + [aux_sym_boolean_literal_token1] = ACTIONS(9386), + [aux_sym_boolean_literal_token2] = ACTIONS(9386), + [sym_nothing_literal] = ACTIONS(9386), + [sym_null_literal] = ACTIONS(9386), + [sym_empty_literal] = ACTIONS(9386), + [sym_date_literal] = ACTIONS(9388), + [anon_sym_POUND] = ACTIONS(9386), + }, + [STATE(4528)] = { + [sym_identifier] = ACTIONS(9492), + [sym_newline] = ACTIONS(9494), + [anon_sym_COLON] = ACTIONS(9494), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9492), + [aux_sym_frm_property_statement_token1] = ACTIONS(9492), + [anon_sym_DOT] = ACTIONS(9492), + [anon_sym_BANG] = ACTIONS(9494), + [aux_sym__attribute_identifier_token1] = ACTIONS(9492), + [aux_sym_option_statement_token3] = ACTIONS(9492), + [aux_sym_type_declaration_token1] = ACTIONS(9492), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9492), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9492), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9492), + [aux_sym_enum_declaration_token1] = ACTIONS(9492), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9492), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9492), + [aux_sym_declare_function_statement_token1] = ACTIONS(9492), + [aux_sym_preprocessor_const_token1] = ACTIONS(9492), + [aux_sym__property_get_header_token1] = ACTIONS(9492), + [aux_sym_event_declaration_token1] = ACTIONS(9492), + [sym_static_modifier] = ACTIONS(9492), + [sym__dim_keyword] = ACTIONS(9492), + [sym__redim_keyword] = ACTIONS(9492), + [aux_sym_get_accessor_token1] = ACTIONS(9492), + [aux_sym_set_accessor_token1] = ACTIONS(9492), + [aux_sym_const_declaration_token1] = ACTIONS(9492), + [anon_sym_LPAREN] = ACTIONS(9494), + [aux_sym_as_type_clause_token2] = ACTIONS(9492), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9492), + [aux_sym_visibility_token1] = ACTIONS(9492), + [aux_sym_visibility_token2] = ACTIONS(9492), + [aux_sym_elseif_fragment_token1] = ACTIONS(9492), + [aux_sym_else_fragment_token1] = ACTIONS(9492), + [aux_sym_select_statement_token1] = ACTIONS(9492), + [aux_sym__for_header_token1] = ACTIONS(9492), + [aux_sym_do_statement_token1] = ACTIONS(9492), + [aux_sym_do_condition_token1] = ACTIONS(9492), + [aux_sym_with_statement_token1] = ACTIONS(9492), + [aux_sym_exit_statement_token1] = ACTIONS(9492), + [sym_end_statement] = ACTIONS(9494), + [aux_sym_on_goto_statement_token1] = ACTIONS(9492), + [aux_sym_on_goto_statement_token2] = ACTIONS(9492), + [aux_sym_on_error_statement_token2] = ACTIONS(9492), + [sym__ambiguous_redim_statement] = ACTIONS(9494), + [aux_sym_erase_statement_token1] = ACTIONS(9492), + [aux_sym_open_statement_token1] = ACTIONS(9492), + [aux_sym_file_mode_token2] = ACTIONS(9492), + [aux_sym_file_access_token2] = ACTIONS(9492), + [aux_sym_file_lock_token2] = ACTIONS(9492), + [aux_sym_print_statement_token1] = ACTIONS(9492), + [anon_sym_PLUS] = ACTIONS(9494), + [anon_sym_DASH] = ACTIONS(9492), + [anon_sym_QMARK] = ACTIONS(9494), + [aux_sym_close_statement_token1] = ACTIONS(9492), + [aux_sym_put_statement_token1] = ACTIONS(9492), + [aux_sym_unlock_statement_token1] = ACTIONS(9492), + [aux_sym_seek_statement_token1] = ACTIONS(9492), + [sym_reset_statement] = ACTIONS(9492), + [aux_sym_raise_event_statement_token1] = ACTIONS(9492), + [sym_stop_statement] = ACTIONS(9492), + [sym_beep_statement] = ACTIONS(9492), + [aux_sym_unload_statement_token1] = ACTIONS(9492), + [aux_sym_def_type_statement_token1] = ACTIONS(9492), + [aux_sym_def_type_statement_token2] = ACTIONS(9492), + [aux_sym_def_type_statement_token3] = ACTIONS(9492), + [aux_sym_def_type_statement_token4] = ACTIONS(9492), + [aux_sym_def_type_statement_token5] = ACTIONS(9492), + [aux_sym_def_type_statement_token6] = ACTIONS(9492), + [aux_sym_def_type_statement_token7] = ACTIONS(9492), + [aux_sym_def_type_statement_token8] = ACTIONS(9492), + [aux_sym_def_type_statement_token9] = ACTIONS(9492), + [aux_sym_def_type_statement_token10] = ACTIONS(9492), + [aux_sym_def_type_statement_token11] = ACTIONS(9492), + [aux_sym_def_type_statement_token12] = ACTIONS(9492), + [aux_sym_def_type_statement_token13] = ACTIONS(9492), + [aux_sym_def_type_statement_token14] = ACTIONS(9492), + [aux_sym_call_statement_token1] = ACTIONS(9492), + [sym__ambiguous_call_statement] = ACTIONS(9492), + [aux_sym_addressof_expression_token1] = ACTIONS(9492), + [aux_sym_type_of_expression_token1] = ACTIONS(9492), + [aux_sym_unary_expression_token1] = ACTIONS(9492), + [sym_string_literal] = ACTIONS(9494), + [sym_number_literal] = ACTIONS(9494), + [aux_sym_boolean_literal_token1] = ACTIONS(9492), + [aux_sym_boolean_literal_token2] = ACTIONS(9492), + [sym_nothing_literal] = ACTIONS(9492), + [sym_null_literal] = ACTIONS(9492), + [sym_empty_literal] = ACTIONS(9492), + [sym_date_literal] = ACTIONS(9494), + [anon_sym_POUND] = ACTIONS(9492), + }, + [STATE(4529)] = { + [sym_identifier] = ACTIONS(9324), + [sym_newline] = ACTIONS(9326), + [anon_sym_COLON] = ACTIONS(9326), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9324), + [aux_sym_frm_property_statement_token1] = ACTIONS(9324), + [anon_sym_DOT] = ACTIONS(9324), + [anon_sym_BANG] = ACTIONS(9326), + [aux_sym__attribute_identifier_token1] = ACTIONS(9324), + [aux_sym_option_statement_token3] = ACTIONS(9324), + [aux_sym_type_declaration_token1] = ACTIONS(9324), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9324), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9324), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9324), + [aux_sym_enum_declaration_token1] = ACTIONS(9324), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9324), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9324), + [aux_sym_declare_function_statement_token1] = ACTIONS(9324), + [aux_sym_preprocessor_const_token1] = ACTIONS(9324), + [aux_sym__property_get_header_token1] = ACTIONS(9324), + [aux_sym_event_declaration_token1] = ACTIONS(9324), + [sym_static_modifier] = ACTIONS(9324), + [sym__dim_keyword] = ACTIONS(9324), + [sym__redim_keyword] = ACTIONS(9324), + [aux_sym_get_accessor_token1] = ACTIONS(9324), + [aux_sym_set_accessor_token1] = ACTIONS(9324), + [aux_sym_const_declaration_token1] = ACTIONS(9324), + [anon_sym_LPAREN] = ACTIONS(9326), + [aux_sym_as_type_clause_token2] = ACTIONS(9324), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9324), + [aux_sym_visibility_token1] = ACTIONS(9324), + [aux_sym_visibility_token2] = ACTIONS(9324), + [aux_sym_elseif_fragment_token1] = ACTIONS(9324), + [aux_sym_else_fragment_token1] = ACTIONS(9324), + [aux_sym_select_statement_token1] = ACTIONS(9324), + [aux_sym__for_header_token1] = ACTIONS(9324), + [aux_sym_do_statement_token1] = ACTIONS(9324), + [aux_sym_do_condition_token1] = ACTIONS(9324), + [aux_sym_with_statement_token1] = ACTIONS(9324), + [aux_sym_exit_statement_token1] = ACTIONS(9324), + [sym_end_statement] = ACTIONS(9326), + [aux_sym_on_goto_statement_token1] = ACTIONS(9324), + [aux_sym_on_goto_statement_token2] = ACTIONS(9324), + [aux_sym_on_error_statement_token2] = ACTIONS(9324), + [sym__ambiguous_redim_statement] = ACTIONS(9326), + [aux_sym_erase_statement_token1] = ACTIONS(9324), + [aux_sym_open_statement_token1] = ACTIONS(9324), + [aux_sym_file_mode_token2] = ACTIONS(9324), + [aux_sym_file_access_token2] = ACTIONS(9324), + [aux_sym_file_lock_token2] = ACTIONS(9324), + [aux_sym_print_statement_token1] = ACTIONS(9324), + [anon_sym_PLUS] = ACTIONS(9326), + [anon_sym_DASH] = ACTIONS(9324), + [anon_sym_QMARK] = ACTIONS(9326), + [aux_sym_close_statement_token1] = ACTIONS(9324), + [aux_sym_put_statement_token1] = ACTIONS(9324), + [aux_sym_unlock_statement_token1] = ACTIONS(9324), + [aux_sym_seek_statement_token1] = ACTIONS(9324), + [sym_reset_statement] = ACTIONS(9324), + [aux_sym_raise_event_statement_token1] = ACTIONS(9324), + [sym_stop_statement] = ACTIONS(9324), + [sym_beep_statement] = ACTIONS(9324), + [aux_sym_unload_statement_token1] = ACTIONS(9324), + [aux_sym_def_type_statement_token1] = ACTIONS(9324), + [aux_sym_def_type_statement_token2] = ACTIONS(9324), + [aux_sym_def_type_statement_token3] = ACTIONS(9324), + [aux_sym_def_type_statement_token4] = ACTIONS(9324), + [aux_sym_def_type_statement_token5] = ACTIONS(9324), + [aux_sym_def_type_statement_token6] = ACTIONS(9324), + [aux_sym_def_type_statement_token7] = ACTIONS(9324), + [aux_sym_def_type_statement_token8] = ACTIONS(9324), + [aux_sym_def_type_statement_token9] = ACTIONS(9324), + [aux_sym_def_type_statement_token10] = ACTIONS(9324), + [aux_sym_def_type_statement_token11] = ACTIONS(9324), + [aux_sym_def_type_statement_token12] = ACTIONS(9324), + [aux_sym_def_type_statement_token13] = ACTIONS(9324), + [aux_sym_def_type_statement_token14] = ACTIONS(9324), + [aux_sym_call_statement_token1] = ACTIONS(9324), + [sym__ambiguous_call_statement] = ACTIONS(9324), + [aux_sym_addressof_expression_token1] = ACTIONS(9324), + [aux_sym_type_of_expression_token1] = ACTIONS(9324), + [aux_sym_unary_expression_token1] = ACTIONS(9324), + [sym_string_literal] = ACTIONS(9326), + [sym_number_literal] = ACTIONS(9326), + [aux_sym_boolean_literal_token1] = ACTIONS(9324), + [aux_sym_boolean_literal_token2] = ACTIONS(9324), + [sym_nothing_literal] = ACTIONS(9324), + [sym_null_literal] = ACTIONS(9324), + [sym_empty_literal] = ACTIONS(9324), + [sym_date_literal] = ACTIONS(9326), + [anon_sym_POUND] = ACTIONS(9324), + }, + [STATE(4530)] = { + [sym_identifier] = ACTIONS(6621), + [sym_newline] = ACTIONS(6623), + [anon_sym_COLON] = ACTIONS(6623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6621), + [aux_sym_frm_property_statement_token1] = ACTIONS(6621), + [anon_sym_DOT] = ACTIONS(6621), + [anon_sym_BANG] = ACTIONS(6623), + [aux_sym__attribute_identifier_token1] = ACTIONS(6621), + [aux_sym_option_statement_token3] = ACTIONS(6621), + [aux_sym_type_declaration_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6621), + [aux_sym_enum_declaration_token1] = ACTIONS(6621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(6621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(6621), + [aux_sym_declare_function_statement_token1] = ACTIONS(6621), + [aux_sym_preprocessor_const_token1] = ACTIONS(6621), + [aux_sym__property_get_header_token1] = ACTIONS(6621), + [aux_sym_event_declaration_token1] = ACTIONS(6621), + [sym_static_modifier] = ACTIONS(6621), + [sym__dim_keyword] = ACTIONS(6621), + [sym__redim_keyword] = ACTIONS(6621), + [aux_sym_get_accessor_token1] = ACTIONS(6621), + [aux_sym_set_accessor_token1] = ACTIONS(6621), + [aux_sym_const_declaration_token1] = ACTIONS(6621), + [anon_sym_LPAREN] = ACTIONS(6623), + [aux_sym_as_type_clause_token2] = ACTIONS(6621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6621), + [aux_sym_visibility_token1] = ACTIONS(6621), + [aux_sym_visibility_token2] = ACTIONS(6621), + [aux_sym_elseif_fragment_token1] = ACTIONS(6621), + [aux_sym_else_fragment_token1] = ACTIONS(6621), + [aux_sym_select_statement_token1] = ACTIONS(6621), + [aux_sym__for_header_token1] = ACTIONS(6621), + [aux_sym_do_statement_token1] = ACTIONS(6621), + [aux_sym_do_condition_token1] = ACTIONS(6621), + [aux_sym_with_statement_token1] = ACTIONS(6621), + [aux_sym_exit_statement_token1] = ACTIONS(6621), + [sym_end_statement] = ACTIONS(6623), + [aux_sym_on_goto_statement_token1] = ACTIONS(6621), + [aux_sym_on_goto_statement_token2] = ACTIONS(6621), + [aux_sym_on_error_statement_token2] = ACTIONS(6621), + [sym__ambiguous_redim_statement] = ACTIONS(6623), + [aux_sym_erase_statement_token1] = ACTIONS(6621), + [aux_sym_open_statement_token1] = ACTIONS(6621), + [aux_sym_file_mode_token2] = ACTIONS(6621), + [aux_sym_file_access_token2] = ACTIONS(6621), + [aux_sym_file_lock_token2] = ACTIONS(6621), + [aux_sym_print_statement_token1] = ACTIONS(6621), + [anon_sym_PLUS] = ACTIONS(6623), + [anon_sym_DASH] = ACTIONS(6621), + [anon_sym_QMARK] = ACTIONS(6623), + [aux_sym_close_statement_token1] = ACTIONS(6621), + [aux_sym_put_statement_token1] = ACTIONS(6621), + [aux_sym_unlock_statement_token1] = ACTIONS(6621), + [aux_sym_seek_statement_token1] = ACTIONS(6621), + [sym_reset_statement] = ACTIONS(6621), + [aux_sym_raise_event_statement_token1] = ACTIONS(6621), + [sym_stop_statement] = ACTIONS(6621), + [sym_beep_statement] = ACTIONS(6621), + [aux_sym_unload_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token2] = ACTIONS(6621), + [aux_sym_def_type_statement_token3] = ACTIONS(6621), + [aux_sym_def_type_statement_token4] = ACTIONS(6621), + [aux_sym_def_type_statement_token5] = ACTIONS(6621), + [aux_sym_def_type_statement_token6] = ACTIONS(6621), + [aux_sym_def_type_statement_token7] = ACTIONS(6621), + [aux_sym_def_type_statement_token8] = ACTIONS(6621), + [aux_sym_def_type_statement_token9] = ACTIONS(6621), + [aux_sym_def_type_statement_token10] = ACTIONS(6621), + [aux_sym_def_type_statement_token11] = ACTIONS(6621), + [aux_sym_def_type_statement_token12] = ACTIONS(6621), + [aux_sym_def_type_statement_token13] = ACTIONS(6621), + [aux_sym_def_type_statement_token14] = ACTIONS(6621), + [aux_sym_call_statement_token1] = ACTIONS(6621), + [sym__ambiguous_call_statement] = ACTIONS(6621), + [aux_sym_addressof_expression_token1] = ACTIONS(6621), + [aux_sym_type_of_expression_token1] = ACTIONS(6621), + [aux_sym_unary_expression_token1] = ACTIONS(6621), + [sym_string_literal] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [aux_sym_boolean_literal_token1] = ACTIONS(6621), + [aux_sym_boolean_literal_token2] = ACTIONS(6621), + [sym_nothing_literal] = ACTIONS(6621), + [sym_null_literal] = ACTIONS(6621), + [sym_empty_literal] = ACTIONS(6621), + [sym_date_literal] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6621), + }, + [STATE(4531)] = { + [sym_identifier] = ACTIONS(9080), + [sym_newline] = ACTIONS(9082), + [anon_sym_COLON] = ACTIONS(9082), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9080), + [aux_sym_frm_property_statement_token1] = ACTIONS(9080), + [anon_sym_DOT] = ACTIONS(9080), + [anon_sym_BANG] = ACTIONS(9082), + [aux_sym__attribute_identifier_token1] = ACTIONS(9080), + [aux_sym_option_statement_token3] = ACTIONS(9080), + [aux_sym_type_declaration_token1] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9080), + [aux_sym_enum_declaration_token1] = ACTIONS(9080), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9080), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9080), + [aux_sym_declare_function_statement_token1] = ACTIONS(9080), + [aux_sym_preprocessor_const_token1] = ACTIONS(9080), + [aux_sym__property_get_header_token1] = ACTIONS(9080), + [aux_sym_event_declaration_token1] = ACTIONS(9080), + [sym_static_modifier] = ACTIONS(9080), + [sym__dim_keyword] = ACTIONS(9080), + [sym__redim_keyword] = ACTIONS(9080), + [aux_sym_get_accessor_token1] = ACTIONS(9080), + [aux_sym_set_accessor_token1] = ACTIONS(9080), + [aux_sym_const_declaration_token1] = ACTIONS(9080), + [anon_sym_LPAREN] = ACTIONS(9082), + [aux_sym_as_type_clause_token2] = ACTIONS(9080), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9080), + [aux_sym_visibility_token1] = ACTIONS(9080), + [aux_sym_visibility_token2] = ACTIONS(9080), + [aux_sym_elseif_fragment_token1] = ACTIONS(9080), + [aux_sym_else_fragment_token1] = ACTIONS(9080), + [aux_sym_select_statement_token1] = ACTIONS(9080), + [aux_sym__for_header_token1] = ACTIONS(9080), + [aux_sym_do_statement_token1] = ACTIONS(9080), + [aux_sym_do_condition_token1] = ACTIONS(9080), + [aux_sym_with_statement_token1] = ACTIONS(9080), + [aux_sym_exit_statement_token1] = ACTIONS(9080), + [sym_end_statement] = ACTIONS(9082), + [aux_sym_on_goto_statement_token1] = ACTIONS(9080), + [aux_sym_on_goto_statement_token2] = ACTIONS(9080), + [aux_sym_on_error_statement_token2] = ACTIONS(9080), + [sym__ambiguous_redim_statement] = ACTIONS(9082), + [aux_sym_erase_statement_token1] = ACTIONS(9080), + [aux_sym_open_statement_token1] = ACTIONS(9080), + [aux_sym_file_mode_token2] = ACTIONS(9080), + [aux_sym_file_access_token2] = ACTIONS(9080), + [aux_sym_file_lock_token2] = ACTIONS(9080), + [aux_sym_print_statement_token1] = ACTIONS(9080), + [anon_sym_PLUS] = ACTIONS(9082), + [anon_sym_DASH] = ACTIONS(9080), + [anon_sym_QMARK] = ACTIONS(9082), + [aux_sym_close_statement_token1] = ACTIONS(9080), + [aux_sym_put_statement_token1] = ACTIONS(9080), + [aux_sym_unlock_statement_token1] = ACTIONS(9080), + [aux_sym_seek_statement_token1] = ACTIONS(9080), + [sym_reset_statement] = ACTIONS(9080), + [aux_sym_raise_event_statement_token1] = ACTIONS(9080), + [sym_stop_statement] = ACTIONS(9080), + [sym_beep_statement] = ACTIONS(9080), + [aux_sym_unload_statement_token1] = ACTIONS(9080), + [aux_sym_def_type_statement_token1] = ACTIONS(9080), + [aux_sym_def_type_statement_token2] = ACTIONS(9080), + [aux_sym_def_type_statement_token3] = ACTIONS(9080), + [aux_sym_def_type_statement_token4] = ACTIONS(9080), + [aux_sym_def_type_statement_token5] = ACTIONS(9080), + [aux_sym_def_type_statement_token6] = ACTIONS(9080), + [aux_sym_def_type_statement_token7] = ACTIONS(9080), + [aux_sym_def_type_statement_token8] = ACTIONS(9080), + [aux_sym_def_type_statement_token9] = ACTIONS(9080), + [aux_sym_def_type_statement_token10] = ACTIONS(9080), + [aux_sym_def_type_statement_token11] = ACTIONS(9080), + [aux_sym_def_type_statement_token12] = ACTIONS(9080), + [aux_sym_def_type_statement_token13] = ACTIONS(9080), + [aux_sym_def_type_statement_token14] = ACTIONS(9080), + [aux_sym_call_statement_token1] = ACTIONS(9080), + [sym__ambiguous_call_statement] = ACTIONS(9080), + [aux_sym_addressof_expression_token1] = ACTIONS(9080), + [aux_sym_type_of_expression_token1] = ACTIONS(9080), + [aux_sym_unary_expression_token1] = ACTIONS(9080), + [sym_string_literal] = ACTIONS(9082), + [sym_number_literal] = ACTIONS(9082), + [aux_sym_boolean_literal_token1] = ACTIONS(9080), + [aux_sym_boolean_literal_token2] = ACTIONS(9080), + [sym_nothing_literal] = ACTIONS(9080), + [sym_null_literal] = ACTIONS(9080), + [sym_empty_literal] = ACTIONS(9080), + [sym_date_literal] = ACTIONS(9082), + [anon_sym_POUND] = ACTIONS(9080), + }, + [STATE(4532)] = { + [sym_identifier] = ACTIONS(7234), + [sym_newline] = ACTIONS(7236), + [anon_sym_COLON] = ACTIONS(7236), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7234), + [aux_sym_frm_property_statement_token1] = ACTIONS(7234), + [anon_sym_DOT] = ACTIONS(7234), + [anon_sym_BANG] = ACTIONS(7236), + [aux_sym__attribute_identifier_token1] = ACTIONS(7234), + [aux_sym_option_statement_token3] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7234), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7234), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7234), + [aux_sym_preprocessor_const_token1] = ACTIONS(7234), + [sym_static_modifier] = ACTIONS(7234), + [sym__dim_keyword] = ACTIONS(7234), + [sym__redim_keyword] = ACTIONS(7234), + [aux_sym_get_accessor_token1] = ACTIONS(7234), + [aux_sym_set_accessor_token1] = ACTIONS(7234), + [aux_sym_const_declaration_token1] = ACTIONS(7234), + [anon_sym_LPAREN] = ACTIONS(7236), + [aux_sym_as_type_clause_token2] = ACTIONS(7234), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7234), + [aux_sym_visibility_token1] = ACTIONS(7234), + [aux_sym_visibility_token2] = ACTIONS(7234), + [aux_sym_elseif_fragment_token1] = ACTIONS(7234), + [aux_sym_else_fragment_token1] = ACTIONS(7234), + [aux_sym_select_statement_token1] = ACTIONS(7234), + [aux_sym__for_header_token1] = ACTIONS(7234), + [aux_sym_do_statement_token1] = ACTIONS(7234), + [aux_sym_do_condition_token1] = ACTIONS(7234), + [aux_sym_with_statement_token1] = ACTIONS(7234), + [aux_sym_exit_statement_token1] = ACTIONS(7234), + [sym_end_statement] = ACTIONS(7236), + [aux_sym_on_goto_statement_token1] = ACTIONS(7234), + [aux_sym_on_goto_statement_token2] = ACTIONS(7234), + [aux_sym_on_error_statement_token2] = ACTIONS(7234), + [sym__ambiguous_redim_statement] = ACTIONS(7236), + [aux_sym_erase_statement_token1] = ACTIONS(7234), + [aux_sym_open_statement_token1] = ACTIONS(7234), + [aux_sym_file_mode_token2] = ACTIONS(7234), + [aux_sym_file_access_token2] = ACTIONS(7234), + [aux_sym_file_lock_token2] = ACTIONS(7234), + [aux_sym_print_statement_token1] = ACTIONS(7234), + [anon_sym_PLUS] = ACTIONS(7236), + [anon_sym_DASH] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7234), + [anon_sym_QMARK] = ACTIONS(7236), + [aux_sym_close_statement_token1] = ACTIONS(7234), + [aux_sym_put_statement_token1] = ACTIONS(7234), + [aux_sym_unlock_statement_token1] = ACTIONS(7234), + [aux_sym_seek_statement_token1] = ACTIONS(7234), + [sym_reset_statement] = ACTIONS(7234), + [aux_sym_raise_event_statement_token1] = ACTIONS(7234), + [sym_stop_statement] = ACTIONS(7234), + [sym_beep_statement] = ACTIONS(7234), + [aux_sym_unload_statement_token1] = ACTIONS(7234), + [aux_sym_def_type_statement_token1] = ACTIONS(7234), + [aux_sym_def_type_statement_token2] = ACTIONS(7234), + [aux_sym_def_type_statement_token3] = ACTIONS(7234), + [aux_sym_def_type_statement_token4] = ACTIONS(7234), + [aux_sym_def_type_statement_token5] = ACTIONS(7234), + [aux_sym_def_type_statement_token6] = ACTIONS(7234), + [aux_sym_def_type_statement_token7] = ACTIONS(7234), + [aux_sym_def_type_statement_token8] = ACTIONS(7234), + [aux_sym_def_type_statement_token9] = ACTIONS(7234), + [aux_sym_def_type_statement_token10] = ACTIONS(7234), + [aux_sym_def_type_statement_token11] = ACTIONS(7234), + [aux_sym_def_type_statement_token12] = ACTIONS(7234), + [aux_sym_def_type_statement_token13] = ACTIONS(7234), + [aux_sym_def_type_statement_token14] = ACTIONS(7234), + [aux_sym_call_statement_token1] = ACTIONS(7234), + [sym__ambiguous_call_statement] = ACTIONS(7234), + [aux_sym_addressof_expression_token1] = ACTIONS(7234), + [aux_sym_type_of_expression_token1] = ACTIONS(7234), + [aux_sym_unary_expression_token1] = ACTIONS(7234), + [sym_string_literal] = ACTIONS(7236), + [sym_number_literal] = ACTIONS(7236), + [aux_sym_boolean_literal_token1] = ACTIONS(7234), + [aux_sym_boolean_literal_token2] = ACTIONS(7234), + [sym_nothing_literal] = ACTIONS(7234), + [sym_null_literal] = ACTIONS(7234), + [sym_empty_literal] = ACTIONS(7234), + [sym_date_literal] = ACTIONS(7236), + [anon_sym_POUND] = ACTIONS(7234), + }, + [STATE(4533)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4534)] = { + [sym_identifier] = ACTIONS(9248), + [sym_newline] = ACTIONS(9250), + [anon_sym_COLON] = ACTIONS(9250), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9248), + [aux_sym_frm_property_statement_token1] = ACTIONS(9248), + [anon_sym_DOT] = ACTIONS(9248), + [anon_sym_BANG] = ACTIONS(9250), + [aux_sym__attribute_identifier_token1] = ACTIONS(9248), + [aux_sym_option_statement_token3] = ACTIONS(9248), + [aux_sym_type_declaration_token1] = ACTIONS(9248), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9248), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9248), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9248), + [aux_sym_enum_declaration_token1] = ACTIONS(9248), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9248), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9248), + [aux_sym_declare_function_statement_token1] = ACTIONS(9248), + [aux_sym_preprocessor_const_token1] = ACTIONS(9248), + [aux_sym__property_get_header_token1] = ACTIONS(9248), + [aux_sym_event_declaration_token1] = ACTIONS(9248), + [sym_static_modifier] = ACTIONS(9248), + [sym__dim_keyword] = ACTIONS(9248), + [sym__redim_keyword] = ACTIONS(9248), + [aux_sym_get_accessor_token1] = ACTIONS(9248), + [aux_sym_set_accessor_token1] = ACTIONS(9248), + [aux_sym_const_declaration_token1] = ACTIONS(9248), + [anon_sym_LPAREN] = ACTIONS(9250), + [aux_sym_as_type_clause_token2] = ACTIONS(9248), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9248), + [aux_sym_visibility_token1] = ACTIONS(9248), + [aux_sym_visibility_token2] = ACTIONS(9248), + [aux_sym_elseif_fragment_token1] = ACTIONS(9248), + [aux_sym_else_fragment_token1] = ACTIONS(9248), + [aux_sym_select_statement_token1] = ACTIONS(9248), + [aux_sym__for_header_token1] = ACTIONS(9248), + [aux_sym_do_statement_token1] = ACTIONS(9248), + [aux_sym_do_condition_token1] = ACTIONS(9248), + [aux_sym_with_statement_token1] = ACTIONS(9248), + [aux_sym_exit_statement_token1] = ACTIONS(9248), + [sym_end_statement] = ACTIONS(9250), + [aux_sym_on_goto_statement_token1] = ACTIONS(9248), + [aux_sym_on_goto_statement_token2] = ACTIONS(9248), + [aux_sym_on_error_statement_token2] = ACTIONS(9248), + [sym__ambiguous_redim_statement] = ACTIONS(9250), + [aux_sym_erase_statement_token1] = ACTIONS(9248), + [aux_sym_open_statement_token1] = ACTIONS(9248), + [aux_sym_file_mode_token2] = ACTIONS(9248), + [aux_sym_file_access_token2] = ACTIONS(9248), + [aux_sym_file_lock_token2] = ACTIONS(9248), + [aux_sym_print_statement_token1] = ACTIONS(9248), + [anon_sym_PLUS] = ACTIONS(9250), + [anon_sym_DASH] = ACTIONS(9248), + [anon_sym_QMARK] = ACTIONS(9250), + [aux_sym_close_statement_token1] = ACTIONS(9248), + [aux_sym_put_statement_token1] = ACTIONS(9248), + [aux_sym_unlock_statement_token1] = ACTIONS(9248), + [aux_sym_seek_statement_token1] = ACTIONS(9248), + [sym_reset_statement] = ACTIONS(9248), + [aux_sym_raise_event_statement_token1] = ACTIONS(9248), + [sym_stop_statement] = ACTIONS(9248), + [sym_beep_statement] = ACTIONS(9248), + [aux_sym_unload_statement_token1] = ACTIONS(9248), + [aux_sym_def_type_statement_token1] = ACTIONS(9248), + [aux_sym_def_type_statement_token2] = ACTIONS(9248), + [aux_sym_def_type_statement_token3] = ACTIONS(9248), + [aux_sym_def_type_statement_token4] = ACTIONS(9248), + [aux_sym_def_type_statement_token5] = ACTIONS(9248), + [aux_sym_def_type_statement_token6] = ACTIONS(9248), + [aux_sym_def_type_statement_token7] = ACTIONS(9248), + [aux_sym_def_type_statement_token8] = ACTIONS(9248), + [aux_sym_def_type_statement_token9] = ACTIONS(9248), + [aux_sym_def_type_statement_token10] = ACTIONS(9248), + [aux_sym_def_type_statement_token11] = ACTIONS(9248), + [aux_sym_def_type_statement_token12] = ACTIONS(9248), + [aux_sym_def_type_statement_token13] = ACTIONS(9248), + [aux_sym_def_type_statement_token14] = ACTIONS(9248), + [aux_sym_call_statement_token1] = ACTIONS(9248), + [sym__ambiguous_call_statement] = ACTIONS(9248), + [aux_sym_addressof_expression_token1] = ACTIONS(9248), + [aux_sym_type_of_expression_token1] = ACTIONS(9248), + [aux_sym_unary_expression_token1] = ACTIONS(9248), + [sym_string_literal] = ACTIONS(9250), + [sym_number_literal] = ACTIONS(9250), + [aux_sym_boolean_literal_token1] = ACTIONS(9248), + [aux_sym_boolean_literal_token2] = ACTIONS(9248), + [sym_nothing_literal] = ACTIONS(9248), + [sym_null_literal] = ACTIONS(9248), + [sym_empty_literal] = ACTIONS(9248), + [sym_date_literal] = ACTIONS(9250), + [anon_sym_POUND] = ACTIONS(9248), + }, + [STATE(4535)] = { + [sym_identifier] = ACTIONS(9084), + [sym_newline] = ACTIONS(9086), + [anon_sym_COLON] = ACTIONS(9086), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9084), + [aux_sym_frm_property_statement_token1] = ACTIONS(9084), + [anon_sym_DOT] = ACTIONS(9084), + [anon_sym_BANG] = ACTIONS(9086), + [aux_sym__attribute_identifier_token1] = ACTIONS(9084), + [aux_sym_option_statement_token3] = ACTIONS(9084), + [aux_sym_type_declaration_token1] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9084), + [aux_sym_enum_declaration_token1] = ACTIONS(9084), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9084), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9084), + [aux_sym_declare_function_statement_token1] = ACTIONS(9084), + [aux_sym_preprocessor_const_token1] = ACTIONS(9084), + [aux_sym__property_get_header_token1] = ACTIONS(9084), + [aux_sym_event_declaration_token1] = ACTIONS(9084), + [sym_static_modifier] = ACTIONS(9084), + [sym__dim_keyword] = ACTIONS(9084), + [sym__redim_keyword] = ACTIONS(9084), + [aux_sym_get_accessor_token1] = ACTIONS(9084), + [aux_sym_set_accessor_token1] = ACTIONS(9084), + [aux_sym_const_declaration_token1] = ACTIONS(9084), + [anon_sym_LPAREN] = ACTIONS(9086), + [aux_sym_as_type_clause_token2] = ACTIONS(9084), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9084), + [aux_sym_visibility_token1] = ACTIONS(9084), + [aux_sym_visibility_token2] = ACTIONS(9084), + [aux_sym_elseif_fragment_token1] = ACTIONS(9084), + [aux_sym_else_fragment_token1] = ACTIONS(9084), + [aux_sym_select_statement_token1] = ACTIONS(9084), + [aux_sym__for_header_token1] = ACTIONS(9084), + [aux_sym_do_statement_token1] = ACTIONS(9084), + [aux_sym_do_condition_token1] = ACTIONS(9084), + [aux_sym_with_statement_token1] = ACTIONS(9084), + [aux_sym_exit_statement_token1] = ACTIONS(9084), + [sym_end_statement] = ACTIONS(9086), + [aux_sym_on_goto_statement_token1] = ACTIONS(9084), + [aux_sym_on_goto_statement_token2] = ACTIONS(9084), + [aux_sym_on_error_statement_token2] = ACTIONS(9084), + [sym__ambiguous_redim_statement] = ACTIONS(9086), + [aux_sym_erase_statement_token1] = ACTIONS(9084), + [aux_sym_open_statement_token1] = ACTIONS(9084), + [aux_sym_file_mode_token2] = ACTIONS(9084), + [aux_sym_file_access_token2] = ACTIONS(9084), + [aux_sym_file_lock_token2] = ACTIONS(9084), + [aux_sym_print_statement_token1] = ACTIONS(9084), + [anon_sym_PLUS] = ACTIONS(9086), + [anon_sym_DASH] = ACTIONS(9084), + [anon_sym_QMARK] = ACTIONS(9086), + [aux_sym_close_statement_token1] = ACTIONS(9084), + [aux_sym_put_statement_token1] = ACTIONS(9084), + [aux_sym_unlock_statement_token1] = ACTIONS(9084), + [aux_sym_seek_statement_token1] = ACTIONS(9084), + [sym_reset_statement] = ACTIONS(9084), + [aux_sym_raise_event_statement_token1] = ACTIONS(9084), + [sym_stop_statement] = ACTIONS(9084), + [sym_beep_statement] = ACTIONS(9084), + [aux_sym_unload_statement_token1] = ACTIONS(9084), + [aux_sym_def_type_statement_token1] = ACTIONS(9084), + [aux_sym_def_type_statement_token2] = ACTIONS(9084), + [aux_sym_def_type_statement_token3] = ACTIONS(9084), + [aux_sym_def_type_statement_token4] = ACTIONS(9084), + [aux_sym_def_type_statement_token5] = ACTIONS(9084), + [aux_sym_def_type_statement_token6] = ACTIONS(9084), + [aux_sym_def_type_statement_token7] = ACTIONS(9084), + [aux_sym_def_type_statement_token8] = ACTIONS(9084), + [aux_sym_def_type_statement_token9] = ACTIONS(9084), + [aux_sym_def_type_statement_token10] = ACTIONS(9084), + [aux_sym_def_type_statement_token11] = ACTIONS(9084), + [aux_sym_def_type_statement_token12] = ACTIONS(9084), + [aux_sym_def_type_statement_token13] = ACTIONS(9084), + [aux_sym_def_type_statement_token14] = ACTIONS(9084), + [aux_sym_call_statement_token1] = ACTIONS(9084), + [sym__ambiguous_call_statement] = ACTIONS(9084), + [aux_sym_addressof_expression_token1] = ACTIONS(9084), + [aux_sym_type_of_expression_token1] = ACTIONS(9084), + [aux_sym_unary_expression_token1] = ACTIONS(9084), + [sym_string_literal] = ACTIONS(9086), + [sym_number_literal] = ACTIONS(9086), + [aux_sym_boolean_literal_token1] = ACTIONS(9084), + [aux_sym_boolean_literal_token2] = ACTIONS(9084), + [sym_nothing_literal] = ACTIONS(9084), + [sym_null_literal] = ACTIONS(9084), + [sym_empty_literal] = ACTIONS(9084), + [sym_date_literal] = ACTIONS(9086), + [anon_sym_POUND] = ACTIONS(9084), + }, + [STATE(4536)] = { + [sym_identifier] = ACTIONS(9008), + [sym_newline] = ACTIONS(9010), + [anon_sym_COLON] = ACTIONS(9010), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9008), + [aux_sym_frm_property_statement_token1] = ACTIONS(9008), + [anon_sym_DOT] = ACTIONS(9008), + [anon_sym_BANG] = ACTIONS(9010), + [aux_sym__attribute_identifier_token1] = ACTIONS(9008), + [aux_sym_option_statement_token3] = ACTIONS(9008), + [aux_sym_type_declaration_token1] = ACTIONS(9008), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9008), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9008), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9008), + [aux_sym_enum_declaration_token1] = ACTIONS(9008), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9008), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9008), + [aux_sym_declare_function_statement_token1] = ACTIONS(9008), + [aux_sym_preprocessor_const_token1] = ACTIONS(9008), + [aux_sym__property_get_header_token1] = ACTIONS(9008), + [aux_sym_event_declaration_token1] = ACTIONS(9008), + [sym_static_modifier] = ACTIONS(9008), + [sym__dim_keyword] = ACTIONS(9008), + [sym__redim_keyword] = ACTIONS(9008), + [aux_sym_get_accessor_token1] = ACTIONS(9008), + [aux_sym_set_accessor_token1] = ACTIONS(9008), + [aux_sym_const_declaration_token1] = ACTIONS(9008), + [anon_sym_LPAREN] = ACTIONS(9010), + [aux_sym_as_type_clause_token2] = ACTIONS(9008), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9008), + [aux_sym_visibility_token1] = ACTIONS(9008), + [aux_sym_visibility_token2] = ACTIONS(9008), + [aux_sym_elseif_fragment_token1] = ACTIONS(9008), + [aux_sym_else_fragment_token1] = ACTIONS(9008), + [aux_sym_select_statement_token1] = ACTIONS(9008), + [aux_sym__for_header_token1] = ACTIONS(9008), + [aux_sym_do_statement_token1] = ACTIONS(9008), + [aux_sym_do_condition_token1] = ACTIONS(9008), + [aux_sym_with_statement_token1] = ACTIONS(9008), + [aux_sym_exit_statement_token1] = ACTIONS(9008), + [sym_end_statement] = ACTIONS(9010), + [aux_sym_on_goto_statement_token1] = ACTIONS(9008), + [aux_sym_on_goto_statement_token2] = ACTIONS(9008), + [aux_sym_on_error_statement_token2] = ACTIONS(9008), + [sym__ambiguous_redim_statement] = ACTIONS(9010), + [aux_sym_erase_statement_token1] = ACTIONS(9008), + [aux_sym_open_statement_token1] = ACTIONS(9008), + [aux_sym_file_mode_token2] = ACTIONS(9008), + [aux_sym_file_access_token2] = ACTIONS(9008), + [aux_sym_file_lock_token2] = ACTIONS(9008), + [aux_sym_print_statement_token1] = ACTIONS(9008), + [anon_sym_PLUS] = ACTIONS(9010), + [anon_sym_DASH] = ACTIONS(9008), + [anon_sym_QMARK] = ACTIONS(9010), + [aux_sym_close_statement_token1] = ACTIONS(9008), + [aux_sym_put_statement_token1] = ACTIONS(9008), + [aux_sym_unlock_statement_token1] = ACTIONS(9008), + [aux_sym_seek_statement_token1] = ACTIONS(9008), + [sym_reset_statement] = ACTIONS(9008), + [aux_sym_raise_event_statement_token1] = ACTIONS(9008), + [sym_stop_statement] = ACTIONS(9008), + [sym_beep_statement] = ACTIONS(9008), + [aux_sym_unload_statement_token1] = ACTIONS(9008), + [aux_sym_def_type_statement_token1] = ACTIONS(9008), + [aux_sym_def_type_statement_token2] = ACTIONS(9008), + [aux_sym_def_type_statement_token3] = ACTIONS(9008), + [aux_sym_def_type_statement_token4] = ACTIONS(9008), + [aux_sym_def_type_statement_token5] = ACTIONS(9008), + [aux_sym_def_type_statement_token6] = ACTIONS(9008), + [aux_sym_def_type_statement_token7] = ACTIONS(9008), + [aux_sym_def_type_statement_token8] = ACTIONS(9008), + [aux_sym_def_type_statement_token9] = ACTIONS(9008), + [aux_sym_def_type_statement_token10] = ACTIONS(9008), + [aux_sym_def_type_statement_token11] = ACTIONS(9008), + [aux_sym_def_type_statement_token12] = ACTIONS(9008), + [aux_sym_def_type_statement_token13] = ACTIONS(9008), + [aux_sym_def_type_statement_token14] = ACTIONS(9008), + [aux_sym_call_statement_token1] = ACTIONS(9008), + [sym__ambiguous_call_statement] = ACTIONS(9008), + [aux_sym_addressof_expression_token1] = ACTIONS(9008), + [aux_sym_type_of_expression_token1] = ACTIONS(9008), + [aux_sym_unary_expression_token1] = ACTIONS(9008), + [sym_string_literal] = ACTIONS(9010), + [sym_number_literal] = ACTIONS(9010), + [aux_sym_boolean_literal_token1] = ACTIONS(9008), + [aux_sym_boolean_literal_token2] = ACTIONS(9008), + [sym_nothing_literal] = ACTIONS(9008), + [sym_null_literal] = ACTIONS(9008), + [sym_empty_literal] = ACTIONS(9008), + [sym_date_literal] = ACTIONS(9010), + [anon_sym_POUND] = ACTIONS(9008), + }, + [STATE(4537)] = { + [sym_identifier] = ACTIONS(9328), + [sym_newline] = ACTIONS(9330), + [anon_sym_COLON] = ACTIONS(9330), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9328), + [aux_sym_frm_property_statement_token1] = ACTIONS(9328), + [anon_sym_DOT] = ACTIONS(9328), + [anon_sym_BANG] = ACTIONS(9330), + [aux_sym__attribute_identifier_token1] = ACTIONS(9328), + [aux_sym_option_statement_token3] = ACTIONS(9328), + [aux_sym_type_declaration_token1] = ACTIONS(9328), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9328), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9328), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9328), + [aux_sym_enum_declaration_token1] = ACTIONS(9328), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9328), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9328), + [aux_sym_declare_function_statement_token1] = ACTIONS(9328), + [aux_sym_preprocessor_const_token1] = ACTIONS(9328), + [aux_sym__property_get_header_token1] = ACTIONS(9328), + [aux_sym_event_declaration_token1] = ACTIONS(9328), + [sym_static_modifier] = ACTIONS(9328), + [sym__dim_keyword] = ACTIONS(9328), + [sym__redim_keyword] = ACTIONS(9328), + [aux_sym_get_accessor_token1] = ACTIONS(9328), + [aux_sym_set_accessor_token1] = ACTIONS(9328), + [aux_sym_const_declaration_token1] = ACTIONS(9328), + [anon_sym_LPAREN] = ACTIONS(9330), + [aux_sym_as_type_clause_token2] = ACTIONS(9328), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9328), + [aux_sym_visibility_token1] = ACTIONS(9328), + [aux_sym_visibility_token2] = ACTIONS(9328), + [aux_sym_elseif_fragment_token1] = ACTIONS(9328), + [aux_sym_else_fragment_token1] = ACTIONS(9328), + [aux_sym_select_statement_token1] = ACTIONS(9328), + [aux_sym__for_header_token1] = ACTIONS(9328), + [aux_sym_do_statement_token1] = ACTIONS(9328), + [aux_sym_do_condition_token1] = ACTIONS(9328), + [aux_sym_with_statement_token1] = ACTIONS(9328), + [aux_sym_exit_statement_token1] = ACTIONS(9328), + [sym_end_statement] = ACTIONS(9330), + [aux_sym_on_goto_statement_token1] = ACTIONS(9328), + [aux_sym_on_goto_statement_token2] = ACTIONS(9328), + [aux_sym_on_error_statement_token2] = ACTIONS(9328), + [sym__ambiguous_redim_statement] = ACTIONS(9330), + [aux_sym_erase_statement_token1] = ACTIONS(9328), + [aux_sym_open_statement_token1] = ACTIONS(9328), + [aux_sym_file_mode_token2] = ACTIONS(9328), + [aux_sym_file_access_token2] = ACTIONS(9328), + [aux_sym_file_lock_token2] = ACTIONS(9328), + [aux_sym_print_statement_token1] = ACTIONS(9328), + [anon_sym_PLUS] = ACTIONS(9330), + [anon_sym_DASH] = ACTIONS(9328), + [anon_sym_QMARK] = ACTIONS(9330), + [aux_sym_close_statement_token1] = ACTIONS(9328), + [aux_sym_put_statement_token1] = ACTIONS(9328), + [aux_sym_unlock_statement_token1] = ACTIONS(9328), + [aux_sym_seek_statement_token1] = ACTIONS(9328), + [sym_reset_statement] = ACTIONS(9328), + [aux_sym_raise_event_statement_token1] = ACTIONS(9328), + [sym_stop_statement] = ACTIONS(9328), + [sym_beep_statement] = ACTIONS(9328), + [aux_sym_unload_statement_token1] = ACTIONS(9328), + [aux_sym_def_type_statement_token1] = ACTIONS(9328), + [aux_sym_def_type_statement_token2] = ACTIONS(9328), + [aux_sym_def_type_statement_token3] = ACTIONS(9328), + [aux_sym_def_type_statement_token4] = ACTIONS(9328), + [aux_sym_def_type_statement_token5] = ACTIONS(9328), + [aux_sym_def_type_statement_token6] = ACTIONS(9328), + [aux_sym_def_type_statement_token7] = ACTIONS(9328), + [aux_sym_def_type_statement_token8] = ACTIONS(9328), + [aux_sym_def_type_statement_token9] = ACTIONS(9328), + [aux_sym_def_type_statement_token10] = ACTIONS(9328), + [aux_sym_def_type_statement_token11] = ACTIONS(9328), + [aux_sym_def_type_statement_token12] = ACTIONS(9328), + [aux_sym_def_type_statement_token13] = ACTIONS(9328), + [aux_sym_def_type_statement_token14] = ACTIONS(9328), + [aux_sym_call_statement_token1] = ACTIONS(9328), + [sym__ambiguous_call_statement] = ACTIONS(9328), + [aux_sym_addressof_expression_token1] = ACTIONS(9328), + [aux_sym_type_of_expression_token1] = ACTIONS(9328), + [aux_sym_unary_expression_token1] = ACTIONS(9328), + [sym_string_literal] = ACTIONS(9330), + [sym_number_literal] = ACTIONS(9330), + [aux_sym_boolean_literal_token1] = ACTIONS(9328), + [aux_sym_boolean_literal_token2] = ACTIONS(9328), + [sym_nothing_literal] = ACTIONS(9328), + [sym_null_literal] = ACTIONS(9328), + [sym_empty_literal] = ACTIONS(9328), + [sym_date_literal] = ACTIONS(9330), + [anon_sym_POUND] = ACTIONS(9328), + }, + [STATE(4538)] = { + [sym_identifier] = ACTIONS(9088), + [sym_newline] = ACTIONS(9090), + [anon_sym_COLON] = ACTIONS(9090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9088), + [aux_sym_frm_property_statement_token1] = ACTIONS(9088), + [anon_sym_DOT] = ACTIONS(9088), + [anon_sym_BANG] = ACTIONS(9090), + [aux_sym__attribute_identifier_token1] = ACTIONS(9088), + [aux_sym_option_statement_token3] = ACTIONS(9088), + [aux_sym_type_declaration_token1] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9088), + [aux_sym_enum_declaration_token1] = ACTIONS(9088), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9088), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9088), + [aux_sym_declare_function_statement_token1] = ACTIONS(9088), + [aux_sym_preprocessor_const_token1] = ACTIONS(9088), + [aux_sym__property_get_header_token1] = ACTIONS(9088), + [aux_sym_event_declaration_token1] = ACTIONS(9088), + [sym_static_modifier] = ACTIONS(9088), + [sym__dim_keyword] = ACTIONS(9088), + [sym__redim_keyword] = ACTIONS(9088), + [aux_sym_get_accessor_token1] = ACTIONS(9088), + [aux_sym_set_accessor_token1] = ACTIONS(9088), + [aux_sym_const_declaration_token1] = ACTIONS(9088), + [anon_sym_LPAREN] = ACTIONS(9090), + [aux_sym_as_type_clause_token2] = ACTIONS(9088), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9088), + [aux_sym_visibility_token1] = ACTIONS(9088), + [aux_sym_visibility_token2] = ACTIONS(9088), + [aux_sym_elseif_fragment_token1] = ACTIONS(9088), + [aux_sym_else_fragment_token1] = ACTIONS(9088), + [aux_sym_select_statement_token1] = ACTIONS(9088), + [aux_sym__for_header_token1] = ACTIONS(9088), + [aux_sym_do_statement_token1] = ACTIONS(9088), + [aux_sym_do_condition_token1] = ACTIONS(9088), + [aux_sym_with_statement_token1] = ACTIONS(9088), + [aux_sym_exit_statement_token1] = ACTIONS(9088), + [sym_end_statement] = ACTIONS(9090), + [aux_sym_on_goto_statement_token1] = ACTIONS(9088), + [aux_sym_on_goto_statement_token2] = ACTIONS(9088), + [aux_sym_on_error_statement_token2] = ACTIONS(9088), + [sym__ambiguous_redim_statement] = ACTIONS(9090), + [aux_sym_erase_statement_token1] = ACTIONS(9088), + [aux_sym_open_statement_token1] = ACTIONS(9088), + [aux_sym_file_mode_token2] = ACTIONS(9088), + [aux_sym_file_access_token2] = ACTIONS(9088), + [aux_sym_file_lock_token2] = ACTIONS(9088), + [aux_sym_print_statement_token1] = ACTIONS(9088), + [anon_sym_PLUS] = ACTIONS(9090), + [anon_sym_DASH] = ACTIONS(9088), + [anon_sym_QMARK] = ACTIONS(9090), + [aux_sym_close_statement_token1] = ACTIONS(9088), + [aux_sym_put_statement_token1] = ACTIONS(9088), + [aux_sym_unlock_statement_token1] = ACTIONS(9088), + [aux_sym_seek_statement_token1] = ACTIONS(9088), + [sym_reset_statement] = ACTIONS(9088), + [aux_sym_raise_event_statement_token1] = ACTIONS(9088), + [sym_stop_statement] = ACTIONS(9088), + [sym_beep_statement] = ACTIONS(9088), + [aux_sym_unload_statement_token1] = ACTIONS(9088), + [aux_sym_def_type_statement_token1] = ACTIONS(9088), + [aux_sym_def_type_statement_token2] = ACTIONS(9088), + [aux_sym_def_type_statement_token3] = ACTIONS(9088), + [aux_sym_def_type_statement_token4] = ACTIONS(9088), + [aux_sym_def_type_statement_token5] = ACTIONS(9088), + [aux_sym_def_type_statement_token6] = ACTIONS(9088), + [aux_sym_def_type_statement_token7] = ACTIONS(9088), + [aux_sym_def_type_statement_token8] = ACTIONS(9088), + [aux_sym_def_type_statement_token9] = ACTIONS(9088), + [aux_sym_def_type_statement_token10] = ACTIONS(9088), + [aux_sym_def_type_statement_token11] = ACTIONS(9088), + [aux_sym_def_type_statement_token12] = ACTIONS(9088), + [aux_sym_def_type_statement_token13] = ACTIONS(9088), + [aux_sym_def_type_statement_token14] = ACTIONS(9088), + [aux_sym_call_statement_token1] = ACTIONS(9088), + [sym__ambiguous_call_statement] = ACTIONS(9088), + [aux_sym_addressof_expression_token1] = ACTIONS(9088), + [aux_sym_type_of_expression_token1] = ACTIONS(9088), + [aux_sym_unary_expression_token1] = ACTIONS(9088), + [sym_string_literal] = ACTIONS(9090), + [sym_number_literal] = ACTIONS(9090), + [aux_sym_boolean_literal_token1] = ACTIONS(9088), + [aux_sym_boolean_literal_token2] = ACTIONS(9088), + [sym_nothing_literal] = ACTIONS(9088), + [sym_null_literal] = ACTIONS(9088), + [sym_empty_literal] = ACTIONS(9088), + [sym_date_literal] = ACTIONS(9090), + [anon_sym_POUND] = ACTIONS(9088), + }, + [STATE(4539)] = { + [sym_identifier] = ACTIONS(9092), + [sym_newline] = ACTIONS(9094), + [anon_sym_COLON] = ACTIONS(9967), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9092), + [aux_sym_frm_property_statement_token1] = ACTIONS(9092), + [anon_sym_DOT] = ACTIONS(9092), + [anon_sym_BANG] = ACTIONS(9094), + [aux_sym__attribute_identifier_token1] = ACTIONS(9092), + [aux_sym_option_statement_token3] = ACTIONS(9092), + [aux_sym_type_declaration_token1] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9092), + [aux_sym_enum_declaration_token1] = ACTIONS(9092), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9092), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9092), + [aux_sym_declare_function_statement_token1] = ACTIONS(9092), + [aux_sym_preprocessor_const_token1] = ACTIONS(9092), + [aux_sym__property_get_header_token1] = ACTIONS(9092), + [aux_sym_event_declaration_token1] = ACTIONS(9092), + [sym_static_modifier] = ACTIONS(9092), + [sym__dim_keyword] = ACTIONS(9092), + [sym__redim_keyword] = ACTIONS(9092), + [aux_sym_get_accessor_token1] = ACTIONS(9092), + [aux_sym_set_accessor_token1] = ACTIONS(9092), + [aux_sym_const_declaration_token1] = ACTIONS(9092), + [anon_sym_LPAREN] = ACTIONS(9094), + [aux_sym_as_type_clause_token2] = ACTIONS(9092), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9092), + [aux_sym_visibility_token1] = ACTIONS(9092), + [aux_sym_visibility_token2] = ACTIONS(9092), + [aux_sym_elseif_fragment_token1] = ACTIONS(9092), + [aux_sym_else_fragment_token1] = ACTIONS(9092), + [aux_sym_select_statement_token1] = ACTIONS(9092), + [aux_sym__for_header_token1] = ACTIONS(9092), + [aux_sym_do_statement_token1] = ACTIONS(9092), + [aux_sym_do_condition_token1] = ACTIONS(9092), + [aux_sym_with_statement_token1] = ACTIONS(9092), + [aux_sym_exit_statement_token1] = ACTIONS(9092), + [sym_end_statement] = ACTIONS(9094), + [aux_sym_on_goto_statement_token1] = ACTIONS(9092), + [aux_sym_on_goto_statement_token2] = ACTIONS(9092), + [aux_sym_on_error_statement_token2] = ACTIONS(9092), + [sym__ambiguous_redim_statement] = ACTIONS(9094), + [aux_sym_erase_statement_token1] = ACTIONS(9092), + [aux_sym_open_statement_token1] = ACTIONS(9092), + [aux_sym_file_mode_token2] = ACTIONS(9092), + [aux_sym_file_access_token2] = ACTIONS(9092), + [aux_sym_file_lock_token2] = ACTIONS(9092), + [aux_sym_print_statement_token1] = ACTIONS(9092), + [anon_sym_PLUS] = ACTIONS(9094), + [anon_sym_DASH] = ACTIONS(9092), + [anon_sym_QMARK] = ACTIONS(9094), + [aux_sym_close_statement_token1] = ACTIONS(9092), + [aux_sym_put_statement_token1] = ACTIONS(9092), + [aux_sym_unlock_statement_token1] = ACTIONS(9092), + [aux_sym_seek_statement_token1] = ACTIONS(9092), + [sym_reset_statement] = ACTIONS(9092), + [aux_sym_raise_event_statement_token1] = ACTIONS(9092), + [sym_stop_statement] = ACTIONS(9092), + [sym_beep_statement] = ACTIONS(9092), + [aux_sym_unload_statement_token1] = ACTIONS(9092), + [aux_sym_def_type_statement_token1] = ACTIONS(9092), + [aux_sym_def_type_statement_token2] = ACTIONS(9092), + [aux_sym_def_type_statement_token3] = ACTIONS(9092), + [aux_sym_def_type_statement_token4] = ACTIONS(9092), + [aux_sym_def_type_statement_token5] = ACTIONS(9092), + [aux_sym_def_type_statement_token6] = ACTIONS(9092), + [aux_sym_def_type_statement_token7] = ACTIONS(9092), + [aux_sym_def_type_statement_token8] = ACTIONS(9092), + [aux_sym_def_type_statement_token9] = ACTIONS(9092), + [aux_sym_def_type_statement_token10] = ACTIONS(9092), + [aux_sym_def_type_statement_token11] = ACTIONS(9092), + [aux_sym_def_type_statement_token12] = ACTIONS(9092), + [aux_sym_def_type_statement_token13] = ACTIONS(9092), + [aux_sym_def_type_statement_token14] = ACTIONS(9092), + [aux_sym_call_statement_token1] = ACTIONS(9092), + [sym__ambiguous_call_statement] = ACTIONS(9092), + [aux_sym_addressof_expression_token1] = ACTIONS(9092), + [aux_sym_type_of_expression_token1] = ACTIONS(9092), + [aux_sym_unary_expression_token1] = ACTIONS(9092), + [sym_string_literal] = ACTIONS(9094), + [sym_number_literal] = ACTIONS(9094), + [aux_sym_boolean_literal_token1] = ACTIONS(9092), + [aux_sym_boolean_literal_token2] = ACTIONS(9092), + [sym_nothing_literal] = ACTIONS(9092), + [sym_null_literal] = ACTIONS(9092), + [sym_empty_literal] = ACTIONS(9092), + [sym_date_literal] = ACTIONS(9094), + [anon_sym_POUND] = ACTIONS(9092), + }, + [STATE(4540)] = { + [sym_identifier] = ACTIONS(9099), + [sym_newline] = ACTIONS(9101), + [anon_sym_COLON] = ACTIONS(9970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9099), + [aux_sym_frm_property_statement_token1] = ACTIONS(9099), + [anon_sym_DOT] = ACTIONS(9099), + [anon_sym_BANG] = ACTIONS(9101), + [aux_sym__attribute_identifier_token1] = ACTIONS(9099), + [aux_sym_option_statement_token3] = ACTIONS(9099), + [aux_sym_type_declaration_token1] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9099), + [aux_sym_enum_declaration_token1] = ACTIONS(9099), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9099), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9099), + [aux_sym_declare_function_statement_token1] = ACTIONS(9099), + [aux_sym_preprocessor_const_token1] = ACTIONS(9099), + [aux_sym__property_get_header_token1] = ACTIONS(9099), + [aux_sym_event_declaration_token1] = ACTIONS(9099), + [sym_static_modifier] = ACTIONS(9099), + [sym__dim_keyword] = ACTIONS(9099), + [sym__redim_keyword] = ACTIONS(9099), + [aux_sym_get_accessor_token1] = ACTIONS(9099), + [aux_sym_set_accessor_token1] = ACTIONS(9099), + [aux_sym_const_declaration_token1] = ACTIONS(9099), + [anon_sym_LPAREN] = ACTIONS(9101), + [aux_sym_as_type_clause_token2] = ACTIONS(9099), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9099), + [aux_sym_visibility_token1] = ACTIONS(9099), + [aux_sym_visibility_token2] = ACTIONS(9099), + [aux_sym_elseif_fragment_token1] = ACTIONS(9099), + [aux_sym_else_fragment_token1] = ACTIONS(9099), + [aux_sym_select_statement_token1] = ACTIONS(9099), + [aux_sym__for_header_token1] = ACTIONS(9099), + [aux_sym_do_statement_token1] = ACTIONS(9099), + [aux_sym_do_condition_token1] = ACTIONS(9099), + [aux_sym_with_statement_token1] = ACTIONS(9099), + [aux_sym_exit_statement_token1] = ACTIONS(9099), + [sym_end_statement] = ACTIONS(9101), + [aux_sym_on_goto_statement_token1] = ACTIONS(9099), + [aux_sym_on_goto_statement_token2] = ACTIONS(9099), + [aux_sym_on_error_statement_token2] = ACTIONS(9099), + [sym__ambiguous_redim_statement] = ACTIONS(9101), + [aux_sym_erase_statement_token1] = ACTIONS(9099), + [aux_sym_open_statement_token1] = ACTIONS(9099), + [aux_sym_file_mode_token2] = ACTIONS(9099), + [aux_sym_file_access_token2] = ACTIONS(9099), + [aux_sym_file_lock_token2] = ACTIONS(9099), + [aux_sym_print_statement_token1] = ACTIONS(9099), + [anon_sym_PLUS] = ACTIONS(9101), + [anon_sym_DASH] = ACTIONS(9099), + [anon_sym_QMARK] = ACTIONS(9101), + [aux_sym_close_statement_token1] = ACTIONS(9099), + [aux_sym_put_statement_token1] = ACTIONS(9099), + [aux_sym_unlock_statement_token1] = ACTIONS(9099), + [aux_sym_seek_statement_token1] = ACTIONS(9099), + [sym_reset_statement] = ACTIONS(9099), + [aux_sym_raise_event_statement_token1] = ACTIONS(9099), + [sym_stop_statement] = ACTIONS(9099), + [sym_beep_statement] = ACTIONS(9099), + [aux_sym_unload_statement_token1] = ACTIONS(9099), + [aux_sym_def_type_statement_token1] = ACTIONS(9099), + [aux_sym_def_type_statement_token2] = ACTIONS(9099), + [aux_sym_def_type_statement_token3] = ACTIONS(9099), + [aux_sym_def_type_statement_token4] = ACTIONS(9099), + [aux_sym_def_type_statement_token5] = ACTIONS(9099), + [aux_sym_def_type_statement_token6] = ACTIONS(9099), + [aux_sym_def_type_statement_token7] = ACTIONS(9099), + [aux_sym_def_type_statement_token8] = ACTIONS(9099), + [aux_sym_def_type_statement_token9] = ACTIONS(9099), + [aux_sym_def_type_statement_token10] = ACTIONS(9099), + [aux_sym_def_type_statement_token11] = ACTIONS(9099), + [aux_sym_def_type_statement_token12] = ACTIONS(9099), + [aux_sym_def_type_statement_token13] = ACTIONS(9099), + [aux_sym_def_type_statement_token14] = ACTIONS(9099), + [aux_sym_call_statement_token1] = ACTIONS(9099), + [sym__ambiguous_call_statement] = ACTIONS(9099), + [aux_sym_addressof_expression_token1] = ACTIONS(9099), + [aux_sym_type_of_expression_token1] = ACTIONS(9099), + [aux_sym_unary_expression_token1] = ACTIONS(9099), + [sym_string_literal] = ACTIONS(9101), + [sym_number_literal] = ACTIONS(9101), + [aux_sym_boolean_literal_token1] = ACTIONS(9099), + [aux_sym_boolean_literal_token2] = ACTIONS(9099), + [sym_nothing_literal] = ACTIONS(9099), + [sym_null_literal] = ACTIONS(9099), + [sym_empty_literal] = ACTIONS(9099), + [sym_date_literal] = ACTIONS(9101), + [anon_sym_POUND] = ACTIONS(9099), + }, + [STATE(4541)] = { + [sym_identifier] = ACTIONS(9110), + [sym_newline] = ACTIONS(9112), + [anon_sym_COLON] = ACTIONS(9112), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9110), + [aux_sym_frm_property_statement_token1] = ACTIONS(9110), + [anon_sym_DOT] = ACTIONS(9110), + [anon_sym_BANG] = ACTIONS(9112), + [aux_sym__attribute_identifier_token1] = ACTIONS(9110), + [aux_sym_option_statement_token3] = ACTIONS(9110), + [aux_sym_type_declaration_token1] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9110), + [aux_sym_enum_declaration_token1] = ACTIONS(9110), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9110), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9110), + [aux_sym_declare_function_statement_token1] = ACTIONS(9110), + [aux_sym_preprocessor_const_token1] = ACTIONS(9110), + [aux_sym__property_get_header_token1] = ACTIONS(9110), + [aux_sym_event_declaration_token1] = ACTIONS(9110), + [sym_static_modifier] = ACTIONS(9110), + [sym__dim_keyword] = ACTIONS(9110), + [sym__redim_keyword] = ACTIONS(9110), + [aux_sym_get_accessor_token1] = ACTIONS(9110), + [aux_sym_set_accessor_token1] = ACTIONS(9110), + [aux_sym_const_declaration_token1] = ACTIONS(9110), + [anon_sym_LPAREN] = ACTIONS(9112), + [aux_sym_as_type_clause_token2] = ACTIONS(9110), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9110), + [aux_sym_visibility_token1] = ACTIONS(9110), + [aux_sym_visibility_token2] = ACTIONS(9110), + [aux_sym_elseif_fragment_token1] = ACTIONS(9110), + [aux_sym_else_fragment_token1] = ACTIONS(9110), + [aux_sym_select_statement_token1] = ACTIONS(9110), + [aux_sym__for_header_token1] = ACTIONS(9110), + [aux_sym_do_statement_token1] = ACTIONS(9110), + [aux_sym_do_condition_token1] = ACTIONS(9110), + [aux_sym_with_statement_token1] = ACTIONS(9110), + [aux_sym_exit_statement_token1] = ACTIONS(9110), + [sym_end_statement] = ACTIONS(9112), + [aux_sym_on_goto_statement_token1] = ACTIONS(9110), + [aux_sym_on_goto_statement_token2] = ACTIONS(9110), + [aux_sym_on_error_statement_token2] = ACTIONS(9110), + [sym__ambiguous_redim_statement] = ACTIONS(9112), + [aux_sym_erase_statement_token1] = ACTIONS(9110), + [aux_sym_open_statement_token1] = ACTIONS(9110), + [aux_sym_file_mode_token2] = ACTIONS(9110), + [aux_sym_file_access_token2] = ACTIONS(9110), + [aux_sym_file_lock_token2] = ACTIONS(9110), + [aux_sym_print_statement_token1] = ACTIONS(9110), + [anon_sym_PLUS] = ACTIONS(9112), + [anon_sym_DASH] = ACTIONS(9110), + [anon_sym_QMARK] = ACTIONS(9112), + [aux_sym_close_statement_token1] = ACTIONS(9110), + [aux_sym_put_statement_token1] = ACTIONS(9110), + [aux_sym_unlock_statement_token1] = ACTIONS(9110), + [aux_sym_seek_statement_token1] = ACTIONS(9110), + [sym_reset_statement] = ACTIONS(9110), + [aux_sym_raise_event_statement_token1] = ACTIONS(9110), + [sym_stop_statement] = ACTIONS(9110), + [sym_beep_statement] = ACTIONS(9110), + [aux_sym_unload_statement_token1] = ACTIONS(9110), + [aux_sym_def_type_statement_token1] = ACTIONS(9110), + [aux_sym_def_type_statement_token2] = ACTIONS(9110), + [aux_sym_def_type_statement_token3] = ACTIONS(9110), + [aux_sym_def_type_statement_token4] = ACTIONS(9110), + [aux_sym_def_type_statement_token5] = ACTIONS(9110), + [aux_sym_def_type_statement_token6] = ACTIONS(9110), + [aux_sym_def_type_statement_token7] = ACTIONS(9110), + [aux_sym_def_type_statement_token8] = ACTIONS(9110), + [aux_sym_def_type_statement_token9] = ACTIONS(9110), + [aux_sym_def_type_statement_token10] = ACTIONS(9110), + [aux_sym_def_type_statement_token11] = ACTIONS(9110), + [aux_sym_def_type_statement_token12] = ACTIONS(9110), + [aux_sym_def_type_statement_token13] = ACTIONS(9110), + [aux_sym_def_type_statement_token14] = ACTIONS(9110), + [aux_sym_call_statement_token1] = ACTIONS(9110), + [sym__ambiguous_call_statement] = ACTIONS(9110), + [aux_sym_addressof_expression_token1] = ACTIONS(9110), + [aux_sym_type_of_expression_token1] = ACTIONS(9110), + [aux_sym_unary_expression_token1] = ACTIONS(9110), + [sym_string_literal] = ACTIONS(9112), + [sym_number_literal] = ACTIONS(9112), + [aux_sym_boolean_literal_token1] = ACTIONS(9110), + [aux_sym_boolean_literal_token2] = ACTIONS(9110), + [sym_nothing_literal] = ACTIONS(9110), + [sym_null_literal] = ACTIONS(9110), + [sym_empty_literal] = ACTIONS(9110), + [sym_date_literal] = ACTIONS(9112), + [anon_sym_POUND] = ACTIONS(9110), + }, + [STATE(4542)] = { + [sym_identifier] = ACTIONS(9114), + [sym_newline] = ACTIONS(9116), + [anon_sym_COLON] = ACTIONS(9116), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9114), + [aux_sym_frm_property_statement_token1] = ACTIONS(9114), + [anon_sym_DOT] = ACTIONS(9114), + [anon_sym_BANG] = ACTIONS(9116), + [aux_sym__attribute_identifier_token1] = ACTIONS(9114), + [aux_sym_option_statement_token3] = ACTIONS(9114), + [aux_sym_type_declaration_token1] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9114), + [aux_sym_enum_declaration_token1] = ACTIONS(9114), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9114), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9114), + [aux_sym_declare_function_statement_token1] = ACTIONS(9114), + [aux_sym_preprocessor_const_token1] = ACTIONS(9114), + [aux_sym__property_get_header_token1] = ACTIONS(9114), + [aux_sym_event_declaration_token1] = ACTIONS(9114), + [sym_static_modifier] = ACTIONS(9114), + [sym__dim_keyword] = ACTIONS(9114), + [sym__redim_keyword] = ACTIONS(9114), + [aux_sym_get_accessor_token1] = ACTIONS(9114), + [aux_sym_set_accessor_token1] = ACTIONS(9114), + [aux_sym_const_declaration_token1] = ACTIONS(9114), + [anon_sym_LPAREN] = ACTIONS(9116), + [aux_sym_as_type_clause_token2] = ACTIONS(9114), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9114), + [aux_sym_visibility_token1] = ACTIONS(9114), + [aux_sym_visibility_token2] = ACTIONS(9114), + [aux_sym_elseif_fragment_token1] = ACTIONS(9114), + [aux_sym_else_fragment_token1] = ACTIONS(9114), + [aux_sym_select_statement_token1] = ACTIONS(9114), + [aux_sym__for_header_token1] = ACTIONS(9114), + [aux_sym_do_statement_token1] = ACTIONS(9114), + [aux_sym_do_condition_token1] = ACTIONS(9114), + [aux_sym_with_statement_token1] = ACTIONS(9114), + [aux_sym_exit_statement_token1] = ACTIONS(9114), + [sym_end_statement] = ACTIONS(9116), + [aux_sym_on_goto_statement_token1] = ACTIONS(9114), + [aux_sym_on_goto_statement_token2] = ACTIONS(9114), + [aux_sym_on_error_statement_token2] = ACTIONS(9114), + [sym__ambiguous_redim_statement] = ACTIONS(9116), + [aux_sym_erase_statement_token1] = ACTIONS(9114), + [aux_sym_open_statement_token1] = ACTIONS(9114), + [aux_sym_file_mode_token2] = ACTIONS(9114), + [aux_sym_file_access_token2] = ACTIONS(9114), + [aux_sym_file_lock_token2] = ACTIONS(9114), + [aux_sym_print_statement_token1] = ACTIONS(9114), + [anon_sym_PLUS] = ACTIONS(9116), + [anon_sym_DASH] = ACTIONS(9114), + [anon_sym_QMARK] = ACTIONS(9116), + [aux_sym_close_statement_token1] = ACTIONS(9114), + [aux_sym_put_statement_token1] = ACTIONS(9114), + [aux_sym_unlock_statement_token1] = ACTIONS(9114), + [aux_sym_seek_statement_token1] = ACTIONS(9114), + [sym_reset_statement] = ACTIONS(9114), + [aux_sym_raise_event_statement_token1] = ACTIONS(9114), + [sym_stop_statement] = ACTIONS(9114), + [sym_beep_statement] = ACTIONS(9114), + [aux_sym_unload_statement_token1] = ACTIONS(9114), + [aux_sym_def_type_statement_token1] = ACTIONS(9114), + [aux_sym_def_type_statement_token2] = ACTIONS(9114), + [aux_sym_def_type_statement_token3] = ACTIONS(9114), + [aux_sym_def_type_statement_token4] = ACTIONS(9114), + [aux_sym_def_type_statement_token5] = ACTIONS(9114), + [aux_sym_def_type_statement_token6] = ACTIONS(9114), + [aux_sym_def_type_statement_token7] = ACTIONS(9114), + [aux_sym_def_type_statement_token8] = ACTIONS(9114), + [aux_sym_def_type_statement_token9] = ACTIONS(9114), + [aux_sym_def_type_statement_token10] = ACTIONS(9114), + [aux_sym_def_type_statement_token11] = ACTIONS(9114), + [aux_sym_def_type_statement_token12] = ACTIONS(9114), + [aux_sym_def_type_statement_token13] = ACTIONS(9114), + [aux_sym_def_type_statement_token14] = ACTIONS(9114), + [aux_sym_call_statement_token1] = ACTIONS(9114), + [sym__ambiguous_call_statement] = ACTIONS(9114), + [aux_sym_addressof_expression_token1] = ACTIONS(9114), + [aux_sym_type_of_expression_token1] = ACTIONS(9114), + [aux_sym_unary_expression_token1] = ACTIONS(9114), + [sym_string_literal] = ACTIONS(9116), + [sym_number_literal] = ACTIONS(9116), + [aux_sym_boolean_literal_token1] = ACTIONS(9114), + [aux_sym_boolean_literal_token2] = ACTIONS(9114), + [sym_nothing_literal] = ACTIONS(9114), + [sym_null_literal] = ACTIONS(9114), + [sym_empty_literal] = ACTIONS(9114), + [sym_date_literal] = ACTIONS(9116), + [anon_sym_POUND] = ACTIONS(9114), + }, + [STATE(4543)] = { + [sym_identifier] = ACTIONS(9118), + [sym_newline] = ACTIONS(9120), + [anon_sym_COLON] = ACTIONS(9120), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9118), + [aux_sym_frm_property_statement_token1] = ACTIONS(9118), + [anon_sym_DOT] = ACTIONS(9118), + [anon_sym_BANG] = ACTIONS(9120), + [aux_sym__attribute_identifier_token1] = ACTIONS(9118), + [aux_sym_option_statement_token3] = ACTIONS(9118), + [aux_sym_type_declaration_token1] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9118), + [aux_sym_enum_declaration_token1] = ACTIONS(9118), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9118), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9118), + [aux_sym_declare_function_statement_token1] = ACTIONS(9118), + [aux_sym_preprocessor_const_token1] = ACTIONS(9118), + [aux_sym__property_get_header_token1] = ACTIONS(9118), + [aux_sym_event_declaration_token1] = ACTIONS(9118), + [sym_static_modifier] = ACTIONS(9118), + [sym__dim_keyword] = ACTIONS(9118), + [sym__redim_keyword] = ACTIONS(9118), + [aux_sym_get_accessor_token1] = ACTIONS(9118), + [aux_sym_set_accessor_token1] = ACTIONS(9118), + [aux_sym_const_declaration_token1] = ACTIONS(9118), + [anon_sym_LPAREN] = ACTIONS(9120), + [aux_sym_as_type_clause_token2] = ACTIONS(9118), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9118), + [aux_sym_visibility_token1] = ACTIONS(9118), + [aux_sym_visibility_token2] = ACTIONS(9118), + [aux_sym_elseif_fragment_token1] = ACTIONS(9118), + [aux_sym_else_fragment_token1] = ACTIONS(9118), + [aux_sym_select_statement_token1] = ACTIONS(9118), + [aux_sym__for_header_token1] = ACTIONS(9118), + [aux_sym_do_statement_token1] = ACTIONS(9118), + [aux_sym_do_condition_token1] = ACTIONS(9118), + [aux_sym_with_statement_token1] = ACTIONS(9118), + [aux_sym_exit_statement_token1] = ACTIONS(9118), + [sym_end_statement] = ACTIONS(9120), + [aux_sym_on_goto_statement_token1] = ACTIONS(9118), + [aux_sym_on_goto_statement_token2] = ACTIONS(9118), + [aux_sym_on_error_statement_token2] = ACTIONS(9118), + [sym__ambiguous_redim_statement] = ACTIONS(9120), + [aux_sym_erase_statement_token1] = ACTIONS(9118), + [aux_sym_open_statement_token1] = ACTIONS(9118), + [aux_sym_file_mode_token2] = ACTIONS(9118), + [aux_sym_file_access_token2] = ACTIONS(9118), + [aux_sym_file_lock_token2] = ACTIONS(9118), + [aux_sym_print_statement_token1] = ACTIONS(9118), + [anon_sym_PLUS] = ACTIONS(9120), + [anon_sym_DASH] = ACTIONS(9118), + [anon_sym_QMARK] = ACTIONS(9120), + [aux_sym_close_statement_token1] = ACTIONS(9118), + [aux_sym_put_statement_token1] = ACTIONS(9118), + [aux_sym_unlock_statement_token1] = ACTIONS(9118), + [aux_sym_seek_statement_token1] = ACTIONS(9118), + [sym_reset_statement] = ACTIONS(9118), + [aux_sym_raise_event_statement_token1] = ACTIONS(9118), + [sym_stop_statement] = ACTIONS(9118), + [sym_beep_statement] = ACTIONS(9118), + [aux_sym_unload_statement_token1] = ACTIONS(9118), + [aux_sym_def_type_statement_token1] = ACTIONS(9118), + [aux_sym_def_type_statement_token2] = ACTIONS(9118), + [aux_sym_def_type_statement_token3] = ACTIONS(9118), + [aux_sym_def_type_statement_token4] = ACTIONS(9118), + [aux_sym_def_type_statement_token5] = ACTIONS(9118), + [aux_sym_def_type_statement_token6] = ACTIONS(9118), + [aux_sym_def_type_statement_token7] = ACTIONS(9118), + [aux_sym_def_type_statement_token8] = ACTIONS(9118), + [aux_sym_def_type_statement_token9] = ACTIONS(9118), + [aux_sym_def_type_statement_token10] = ACTIONS(9118), + [aux_sym_def_type_statement_token11] = ACTIONS(9118), + [aux_sym_def_type_statement_token12] = ACTIONS(9118), + [aux_sym_def_type_statement_token13] = ACTIONS(9118), + [aux_sym_def_type_statement_token14] = ACTIONS(9118), + [aux_sym_call_statement_token1] = ACTIONS(9118), + [sym__ambiguous_call_statement] = ACTIONS(9118), + [aux_sym_addressof_expression_token1] = ACTIONS(9118), + [aux_sym_type_of_expression_token1] = ACTIONS(9118), + [aux_sym_unary_expression_token1] = ACTIONS(9118), + [sym_string_literal] = ACTIONS(9120), + [sym_number_literal] = ACTIONS(9120), + [aux_sym_boolean_literal_token1] = ACTIONS(9118), + [aux_sym_boolean_literal_token2] = ACTIONS(9118), + [sym_nothing_literal] = ACTIONS(9118), + [sym_null_literal] = ACTIONS(9118), + [sym_empty_literal] = ACTIONS(9118), + [sym_date_literal] = ACTIONS(9120), + [anon_sym_POUND] = ACTIONS(9118), + }, + [STATE(4544)] = { + [sym_identifier] = ACTIONS(9602), + [sym_newline] = ACTIONS(9604), + [anon_sym_COLON] = ACTIONS(9604), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9602), + [aux_sym_frm_property_statement_token1] = ACTIONS(9602), + [anon_sym_DOT] = ACTIONS(9602), + [anon_sym_BANG] = ACTIONS(9604), + [aux_sym__attribute_identifier_token1] = ACTIONS(9602), + [aux_sym_option_statement_token3] = ACTIONS(9602), + [aux_sym_type_declaration_token1] = ACTIONS(9602), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9602), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9602), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9602), + [aux_sym_enum_declaration_token1] = ACTIONS(9602), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9602), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9602), + [aux_sym_declare_function_statement_token1] = ACTIONS(9602), + [aux_sym_preprocessor_const_token1] = ACTIONS(9602), + [aux_sym__property_get_header_token1] = ACTIONS(9602), + [aux_sym_event_declaration_token1] = ACTIONS(9602), + [sym_static_modifier] = ACTIONS(9602), + [sym__dim_keyword] = ACTIONS(9602), + [sym__redim_keyword] = ACTIONS(9602), + [aux_sym_get_accessor_token1] = ACTIONS(9602), + [aux_sym_set_accessor_token1] = ACTIONS(9602), + [aux_sym_const_declaration_token1] = ACTIONS(9602), + [anon_sym_LPAREN] = ACTIONS(9604), + [aux_sym_as_type_clause_token2] = ACTIONS(9602), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9602), + [aux_sym_visibility_token1] = ACTIONS(9602), + [aux_sym_visibility_token2] = ACTIONS(9602), + [aux_sym_elseif_fragment_token1] = ACTIONS(9602), + [aux_sym_else_fragment_token1] = ACTIONS(9602), + [aux_sym_select_statement_token1] = ACTIONS(9602), + [aux_sym__for_header_token1] = ACTIONS(9602), + [aux_sym_do_statement_token1] = ACTIONS(9602), + [aux_sym_do_condition_token1] = ACTIONS(9602), + [aux_sym_with_statement_token1] = ACTIONS(9602), + [aux_sym_exit_statement_token1] = ACTIONS(9602), + [sym_end_statement] = ACTIONS(9604), + [aux_sym_on_goto_statement_token1] = ACTIONS(9602), + [aux_sym_on_goto_statement_token2] = ACTIONS(9602), + [aux_sym_on_error_statement_token2] = ACTIONS(9602), + [sym__ambiguous_redim_statement] = ACTIONS(9604), + [aux_sym_erase_statement_token1] = ACTIONS(9602), + [aux_sym_open_statement_token1] = ACTIONS(9602), + [aux_sym_file_mode_token2] = ACTIONS(9602), + [aux_sym_file_access_token2] = ACTIONS(9602), + [aux_sym_file_lock_token2] = ACTIONS(9602), + [aux_sym_print_statement_token1] = ACTIONS(9602), + [anon_sym_PLUS] = ACTIONS(9604), + [anon_sym_DASH] = ACTIONS(9602), + [anon_sym_QMARK] = ACTIONS(9604), + [aux_sym_close_statement_token1] = ACTIONS(9602), + [aux_sym_put_statement_token1] = ACTIONS(9602), + [aux_sym_unlock_statement_token1] = ACTIONS(9602), + [aux_sym_seek_statement_token1] = ACTIONS(9602), + [sym_reset_statement] = ACTIONS(9602), + [aux_sym_raise_event_statement_token1] = ACTIONS(9602), + [sym_stop_statement] = ACTIONS(9602), + [sym_beep_statement] = ACTIONS(9602), + [aux_sym_unload_statement_token1] = ACTIONS(9602), + [aux_sym_def_type_statement_token1] = ACTIONS(9602), + [aux_sym_def_type_statement_token2] = ACTIONS(9602), + [aux_sym_def_type_statement_token3] = ACTIONS(9602), + [aux_sym_def_type_statement_token4] = ACTIONS(9602), + [aux_sym_def_type_statement_token5] = ACTIONS(9602), + [aux_sym_def_type_statement_token6] = ACTIONS(9602), + [aux_sym_def_type_statement_token7] = ACTIONS(9602), + [aux_sym_def_type_statement_token8] = ACTIONS(9602), + [aux_sym_def_type_statement_token9] = ACTIONS(9602), + [aux_sym_def_type_statement_token10] = ACTIONS(9602), + [aux_sym_def_type_statement_token11] = ACTIONS(9602), + [aux_sym_def_type_statement_token12] = ACTIONS(9602), + [aux_sym_def_type_statement_token13] = ACTIONS(9602), + [aux_sym_def_type_statement_token14] = ACTIONS(9602), + [aux_sym_call_statement_token1] = ACTIONS(9602), + [sym__ambiguous_call_statement] = ACTIONS(9602), + [aux_sym_addressof_expression_token1] = ACTIONS(9602), + [aux_sym_type_of_expression_token1] = ACTIONS(9602), + [aux_sym_unary_expression_token1] = ACTIONS(9602), + [sym_string_literal] = ACTIONS(9604), + [sym_number_literal] = ACTIONS(9604), + [aux_sym_boolean_literal_token1] = ACTIONS(9602), + [aux_sym_boolean_literal_token2] = ACTIONS(9602), + [sym_nothing_literal] = ACTIONS(9602), + [sym_null_literal] = ACTIONS(9602), + [sym_empty_literal] = ACTIONS(9602), + [sym_date_literal] = ACTIONS(9604), + [anon_sym_POUND] = ACTIONS(9602), + }, + [STATE(4545)] = { + [sym_identifier] = ACTIONS(8786), + [sym_newline] = ACTIONS(8788), + [anon_sym_COLON] = ACTIONS(8788), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8786), + [aux_sym_frm_property_statement_token1] = ACTIONS(8786), + [anon_sym_DOT] = ACTIONS(8786), + [anon_sym_BANG] = ACTIONS(8788), + [aux_sym__attribute_identifier_token1] = ACTIONS(8786), + [aux_sym_option_statement_token3] = ACTIONS(8786), + [aux_sym_type_declaration_token1] = ACTIONS(8786), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8786), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8786), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8786), + [aux_sym_enum_declaration_token1] = ACTIONS(8786), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8786), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8786), + [aux_sym_declare_function_statement_token1] = ACTIONS(8786), + [aux_sym_preprocessor_const_token1] = ACTIONS(8786), + [aux_sym__property_get_header_token1] = ACTIONS(8786), + [aux_sym_event_declaration_token1] = ACTIONS(8786), + [sym_static_modifier] = ACTIONS(8786), + [sym__dim_keyword] = ACTIONS(8786), + [sym__redim_keyword] = ACTIONS(8786), + [aux_sym_get_accessor_token1] = ACTIONS(8786), + [aux_sym_set_accessor_token1] = ACTIONS(8786), + [aux_sym_const_declaration_token1] = ACTIONS(8786), + [anon_sym_LPAREN] = ACTIONS(8788), + [aux_sym_as_type_clause_token2] = ACTIONS(8786), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8786), + [aux_sym_visibility_token1] = ACTIONS(8786), + [aux_sym_visibility_token2] = ACTIONS(8786), + [aux_sym_elseif_fragment_token1] = ACTIONS(8786), + [aux_sym_else_fragment_token1] = ACTIONS(8786), + [aux_sym_select_statement_token1] = ACTIONS(8786), + [aux_sym__for_header_token1] = ACTIONS(8786), + [aux_sym_do_statement_token1] = ACTIONS(8786), + [aux_sym_do_condition_token1] = ACTIONS(8786), + [aux_sym_with_statement_token1] = ACTIONS(8786), + [aux_sym_exit_statement_token1] = ACTIONS(8786), + [sym_end_statement] = ACTIONS(8788), + [aux_sym_on_goto_statement_token1] = ACTIONS(8786), + [aux_sym_on_goto_statement_token2] = ACTIONS(8786), + [aux_sym_on_error_statement_token2] = ACTIONS(8786), + [sym__ambiguous_redim_statement] = ACTIONS(8788), + [aux_sym_erase_statement_token1] = ACTIONS(8786), + [aux_sym_open_statement_token1] = ACTIONS(8786), + [aux_sym_file_mode_token2] = ACTIONS(8786), + [aux_sym_file_access_token2] = ACTIONS(8786), + [aux_sym_file_lock_token2] = ACTIONS(8786), + [aux_sym_print_statement_token1] = ACTIONS(8786), + [anon_sym_PLUS] = ACTIONS(8788), + [anon_sym_DASH] = ACTIONS(8786), + [anon_sym_QMARK] = ACTIONS(8788), + [aux_sym_close_statement_token1] = ACTIONS(8786), + [aux_sym_put_statement_token1] = ACTIONS(8786), + [aux_sym_unlock_statement_token1] = ACTIONS(8786), + [aux_sym_seek_statement_token1] = ACTIONS(8786), + [sym_reset_statement] = ACTIONS(8786), + [aux_sym_raise_event_statement_token1] = ACTIONS(8786), + [sym_stop_statement] = ACTIONS(8786), + [sym_beep_statement] = ACTIONS(8786), + [aux_sym_unload_statement_token1] = ACTIONS(8786), + [aux_sym_def_type_statement_token1] = ACTIONS(8786), + [aux_sym_def_type_statement_token2] = ACTIONS(8786), + [aux_sym_def_type_statement_token3] = ACTIONS(8786), + [aux_sym_def_type_statement_token4] = ACTIONS(8786), + [aux_sym_def_type_statement_token5] = ACTIONS(8786), + [aux_sym_def_type_statement_token6] = ACTIONS(8786), + [aux_sym_def_type_statement_token7] = ACTIONS(8786), + [aux_sym_def_type_statement_token8] = ACTIONS(8786), + [aux_sym_def_type_statement_token9] = ACTIONS(8786), + [aux_sym_def_type_statement_token10] = ACTIONS(8786), + [aux_sym_def_type_statement_token11] = ACTIONS(8786), + [aux_sym_def_type_statement_token12] = ACTIONS(8786), + [aux_sym_def_type_statement_token13] = ACTIONS(8786), + [aux_sym_def_type_statement_token14] = ACTIONS(8786), + [aux_sym_call_statement_token1] = ACTIONS(8786), + [sym__ambiguous_call_statement] = ACTIONS(8786), + [aux_sym_addressof_expression_token1] = ACTIONS(8786), + [aux_sym_type_of_expression_token1] = ACTIONS(8786), + [aux_sym_unary_expression_token1] = ACTIONS(8786), + [sym_string_literal] = ACTIONS(8788), + [sym_number_literal] = ACTIONS(8788), + [aux_sym_boolean_literal_token1] = ACTIONS(8786), + [aux_sym_boolean_literal_token2] = ACTIONS(8786), + [sym_nothing_literal] = ACTIONS(8786), + [sym_null_literal] = ACTIONS(8786), + [sym_empty_literal] = ACTIONS(8786), + [sym_date_literal] = ACTIONS(8788), + [anon_sym_POUND] = ACTIONS(8786), + }, + [STATE(4546)] = { + [sym_identifier] = ACTIONS(9150), + [sym_newline] = ACTIONS(9152), + [anon_sym_COLON] = ACTIONS(9152), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9154), + [aux_sym_frm_property_statement_token1] = ACTIONS(9150), + [anon_sym_DOT] = ACTIONS(9150), + [anon_sym_BANG] = ACTIONS(9152), + [aux_sym__attribute_identifier_token1] = ACTIONS(9150), + [aux_sym_option_statement_token3] = ACTIONS(9150), + [aux_sym_type_declaration_token1] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9154), + [aux_sym_enum_declaration_token1] = ACTIONS(9150), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9150), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9150), + [aux_sym_declare_function_statement_token1] = ACTIONS(9150), + [aux_sym_preprocessor_const_token1] = ACTIONS(9150), + [aux_sym__property_get_header_token1] = ACTIONS(9150), + [aux_sym_event_declaration_token1] = ACTIONS(9150), + [sym_static_modifier] = ACTIONS(9150), + [sym__dim_keyword] = ACTIONS(9150), + [sym__redim_keyword] = ACTIONS(9150), + [aux_sym_get_accessor_token1] = ACTIONS(9150), + [aux_sym_set_accessor_token1] = ACTIONS(9150), + [aux_sym_const_declaration_token1] = ACTIONS(9150), + [anon_sym_LPAREN] = ACTIONS(9152), + [aux_sym_as_type_clause_token2] = ACTIONS(9150), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9150), + [aux_sym_visibility_token1] = ACTIONS(9150), + [aux_sym_visibility_token2] = ACTIONS(9150), + [aux_sym_elseif_fragment_token1] = ACTIONS(9154), + [aux_sym_else_fragment_token1] = ACTIONS(9154), + [aux_sym_select_statement_token1] = ACTIONS(9154), + [aux_sym__for_header_token1] = ACTIONS(9154), + [aux_sym_do_statement_token1] = ACTIONS(9154), + [aux_sym_do_condition_token1] = ACTIONS(9154), + [aux_sym_with_statement_token1] = ACTIONS(9154), + [aux_sym_exit_statement_token1] = ACTIONS(9150), + [sym_end_statement] = ACTIONS(9152), + [aux_sym_on_goto_statement_token1] = ACTIONS(9150), + [aux_sym_on_goto_statement_token2] = ACTIONS(9150), + [aux_sym_on_error_statement_token2] = ACTIONS(9150), + [sym__ambiguous_redim_statement] = ACTIONS(9152), + [aux_sym_erase_statement_token1] = ACTIONS(9150), + [aux_sym_open_statement_token1] = ACTIONS(9150), + [aux_sym_file_mode_token2] = ACTIONS(9150), + [aux_sym_file_access_token2] = ACTIONS(9150), + [aux_sym_file_lock_token2] = ACTIONS(9150), + [aux_sym_print_statement_token1] = ACTIONS(9150), + [anon_sym_PLUS] = ACTIONS(9152), + [anon_sym_DASH] = ACTIONS(9150), + [anon_sym_QMARK] = ACTIONS(9152), + [aux_sym_close_statement_token1] = ACTIONS(9150), + [aux_sym_put_statement_token1] = ACTIONS(9150), + [aux_sym_unlock_statement_token1] = ACTIONS(9150), + [aux_sym_seek_statement_token1] = ACTIONS(9150), + [sym_reset_statement] = ACTIONS(9150), + [aux_sym_raise_event_statement_token1] = ACTIONS(9150), + [sym_stop_statement] = ACTIONS(9150), + [sym_beep_statement] = ACTIONS(9150), + [aux_sym_unload_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token2] = ACTIONS(9150), + [aux_sym_def_type_statement_token3] = ACTIONS(9150), + [aux_sym_def_type_statement_token4] = ACTIONS(9150), + [aux_sym_def_type_statement_token5] = ACTIONS(9150), + [aux_sym_def_type_statement_token6] = ACTIONS(9150), + [aux_sym_def_type_statement_token7] = ACTIONS(9150), + [aux_sym_def_type_statement_token8] = ACTIONS(9150), + [aux_sym_def_type_statement_token9] = ACTIONS(9150), + [aux_sym_def_type_statement_token10] = ACTIONS(9150), + [aux_sym_def_type_statement_token11] = ACTIONS(9150), + [aux_sym_def_type_statement_token12] = ACTIONS(9150), + [aux_sym_def_type_statement_token13] = ACTIONS(9150), + [aux_sym_def_type_statement_token14] = ACTIONS(9150), + [aux_sym_call_statement_token1] = ACTIONS(9150), + [sym__ambiguous_call_statement] = ACTIONS(9150), + [aux_sym_addressof_expression_token1] = ACTIONS(9150), + [aux_sym_type_of_expression_token1] = ACTIONS(9150), + [aux_sym_unary_expression_token1] = ACTIONS(9150), + [sym_string_literal] = ACTIONS(9152), + [sym_number_literal] = ACTIONS(9152), + [aux_sym_boolean_literal_token1] = ACTIONS(9150), + [aux_sym_boolean_literal_token2] = ACTIONS(9150), + [sym_nothing_literal] = ACTIONS(9150), + [sym_null_literal] = ACTIONS(9150), + [sym_empty_literal] = ACTIONS(9150), + [sym_date_literal] = ACTIONS(9152), + [anon_sym_POUND] = ACTIONS(9150), + }, + [STATE(4547)] = { + [sym_identifier] = ACTIONS(9606), + [sym_newline] = ACTIONS(9608), + [anon_sym_COLON] = ACTIONS(9608), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9606), + [aux_sym_frm_property_statement_token1] = ACTIONS(9606), + [anon_sym_DOT] = ACTIONS(9606), + [anon_sym_BANG] = ACTIONS(9608), + [aux_sym__attribute_identifier_token1] = ACTIONS(9606), + [aux_sym_option_statement_token3] = ACTIONS(9606), + [aux_sym_type_declaration_token1] = ACTIONS(9606), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9606), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9606), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9606), + [aux_sym_enum_declaration_token1] = ACTIONS(9606), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9606), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9606), + [aux_sym_declare_function_statement_token1] = ACTIONS(9606), + [aux_sym_preprocessor_const_token1] = ACTIONS(9606), + [aux_sym__property_get_header_token1] = ACTIONS(9606), + [aux_sym_event_declaration_token1] = ACTIONS(9606), + [sym_static_modifier] = ACTIONS(9606), + [sym__dim_keyword] = ACTIONS(9606), + [sym__redim_keyword] = ACTIONS(9606), + [aux_sym_get_accessor_token1] = ACTIONS(9606), + [aux_sym_set_accessor_token1] = ACTIONS(9606), + [aux_sym_const_declaration_token1] = ACTIONS(9606), + [anon_sym_LPAREN] = ACTIONS(9608), + [aux_sym_as_type_clause_token2] = ACTIONS(9606), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9606), + [aux_sym_visibility_token1] = ACTIONS(9606), + [aux_sym_visibility_token2] = ACTIONS(9606), + [aux_sym_elseif_fragment_token1] = ACTIONS(9606), + [aux_sym_else_fragment_token1] = ACTIONS(9606), + [aux_sym_select_statement_token1] = ACTIONS(9606), + [aux_sym__for_header_token1] = ACTIONS(9606), + [aux_sym_do_statement_token1] = ACTIONS(9606), + [aux_sym_do_condition_token1] = ACTIONS(9606), + [aux_sym_with_statement_token1] = ACTIONS(9606), + [aux_sym_exit_statement_token1] = ACTIONS(9606), + [sym_end_statement] = ACTIONS(9608), + [aux_sym_on_goto_statement_token1] = ACTIONS(9606), + [aux_sym_on_goto_statement_token2] = ACTIONS(9606), + [aux_sym_on_error_statement_token2] = ACTIONS(9606), + [sym__ambiguous_redim_statement] = ACTIONS(9608), + [aux_sym_erase_statement_token1] = ACTIONS(9606), + [aux_sym_open_statement_token1] = ACTIONS(9606), + [aux_sym_file_mode_token2] = ACTIONS(9606), + [aux_sym_file_access_token2] = ACTIONS(9606), + [aux_sym_file_lock_token2] = ACTIONS(9606), + [aux_sym_print_statement_token1] = ACTIONS(9606), + [anon_sym_PLUS] = ACTIONS(9608), + [anon_sym_DASH] = ACTIONS(9606), + [anon_sym_QMARK] = ACTIONS(9608), + [aux_sym_close_statement_token1] = ACTIONS(9606), + [aux_sym_put_statement_token1] = ACTIONS(9606), + [aux_sym_unlock_statement_token1] = ACTIONS(9606), + [aux_sym_seek_statement_token1] = ACTIONS(9606), + [sym_reset_statement] = ACTIONS(9606), + [aux_sym_raise_event_statement_token1] = ACTIONS(9606), + [sym_stop_statement] = ACTIONS(9606), + [sym_beep_statement] = ACTIONS(9606), + [aux_sym_unload_statement_token1] = ACTIONS(9606), + [aux_sym_def_type_statement_token1] = ACTIONS(9606), + [aux_sym_def_type_statement_token2] = ACTIONS(9606), + [aux_sym_def_type_statement_token3] = ACTIONS(9606), + [aux_sym_def_type_statement_token4] = ACTIONS(9606), + [aux_sym_def_type_statement_token5] = ACTIONS(9606), + [aux_sym_def_type_statement_token6] = ACTIONS(9606), + [aux_sym_def_type_statement_token7] = ACTIONS(9606), + [aux_sym_def_type_statement_token8] = ACTIONS(9606), + [aux_sym_def_type_statement_token9] = ACTIONS(9606), + [aux_sym_def_type_statement_token10] = ACTIONS(9606), + [aux_sym_def_type_statement_token11] = ACTIONS(9606), + [aux_sym_def_type_statement_token12] = ACTIONS(9606), + [aux_sym_def_type_statement_token13] = ACTIONS(9606), + [aux_sym_def_type_statement_token14] = ACTIONS(9606), + [aux_sym_call_statement_token1] = ACTIONS(9606), + [sym__ambiguous_call_statement] = ACTIONS(9606), + [aux_sym_addressof_expression_token1] = ACTIONS(9606), + [aux_sym_type_of_expression_token1] = ACTIONS(9606), + [aux_sym_unary_expression_token1] = ACTIONS(9606), + [sym_string_literal] = ACTIONS(9608), + [sym_number_literal] = ACTIONS(9608), + [aux_sym_boolean_literal_token1] = ACTIONS(9606), + [aux_sym_boolean_literal_token2] = ACTIONS(9606), + [sym_nothing_literal] = ACTIONS(9606), + [sym_null_literal] = ACTIONS(9606), + [sym_empty_literal] = ACTIONS(9606), + [sym_date_literal] = ACTIONS(9608), + [anon_sym_POUND] = ACTIONS(9606), + }, + [STATE(4548)] = { + [sym_identifier] = ACTIONS(9393), + [sym_newline] = ACTIONS(9395), + [anon_sym_COLON] = ACTIONS(9395), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9393), + [aux_sym_frm_property_statement_token1] = ACTIONS(9393), + [anon_sym_DOT] = ACTIONS(9393), + [anon_sym_BANG] = ACTIONS(9395), + [aux_sym__attribute_identifier_token1] = ACTIONS(9393), + [aux_sym_option_statement_token3] = ACTIONS(9393), + [aux_sym_type_declaration_token1] = ACTIONS(9393), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9393), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9393), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9393), + [aux_sym_enum_declaration_token1] = ACTIONS(9393), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9393), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9393), + [aux_sym_declare_function_statement_token1] = ACTIONS(9393), + [aux_sym_preprocessor_const_token1] = ACTIONS(9393), + [aux_sym__property_get_header_token1] = ACTIONS(9393), + [aux_sym_event_declaration_token1] = ACTIONS(9393), + [sym_static_modifier] = ACTIONS(9393), + [sym__dim_keyword] = ACTIONS(9393), + [sym__redim_keyword] = ACTIONS(9393), + [aux_sym_get_accessor_token1] = ACTIONS(9393), + [aux_sym_set_accessor_token1] = ACTIONS(9393), + [aux_sym_const_declaration_token1] = ACTIONS(9393), + [anon_sym_LPAREN] = ACTIONS(9395), + [aux_sym_as_type_clause_token2] = ACTIONS(9393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9393), + [aux_sym_visibility_token1] = ACTIONS(9393), + [aux_sym_visibility_token2] = ACTIONS(9393), + [aux_sym_elseif_fragment_token1] = ACTIONS(9393), + [aux_sym_else_fragment_token1] = ACTIONS(9393), + [aux_sym_select_statement_token1] = ACTIONS(9393), + [aux_sym__for_header_token1] = ACTIONS(9393), + [aux_sym_do_statement_token1] = ACTIONS(9393), + [aux_sym_do_condition_token1] = ACTIONS(9393), + [aux_sym_with_statement_token1] = ACTIONS(9393), + [aux_sym_exit_statement_token1] = ACTIONS(9393), + [sym_end_statement] = ACTIONS(9395), + [aux_sym_on_goto_statement_token1] = ACTIONS(9393), + [aux_sym_on_goto_statement_token2] = ACTIONS(9393), + [aux_sym_on_error_statement_token2] = ACTIONS(9393), + [sym__ambiguous_redim_statement] = ACTIONS(9395), + [aux_sym_erase_statement_token1] = ACTIONS(9393), + [aux_sym_open_statement_token1] = ACTIONS(9393), + [aux_sym_file_mode_token2] = ACTIONS(9393), + [aux_sym_file_access_token2] = ACTIONS(9393), + [aux_sym_file_lock_token2] = ACTIONS(9393), + [aux_sym_print_statement_token1] = ACTIONS(9393), + [anon_sym_PLUS] = ACTIONS(9395), + [anon_sym_DASH] = ACTIONS(9393), + [anon_sym_QMARK] = ACTIONS(9395), + [aux_sym_close_statement_token1] = ACTIONS(9393), + [aux_sym_put_statement_token1] = ACTIONS(9393), + [aux_sym_unlock_statement_token1] = ACTIONS(9393), + [aux_sym_seek_statement_token1] = ACTIONS(9393), + [sym_reset_statement] = ACTIONS(9393), + [aux_sym_raise_event_statement_token1] = ACTIONS(9393), + [sym_stop_statement] = ACTIONS(9393), + [sym_beep_statement] = ACTIONS(9393), + [aux_sym_unload_statement_token1] = ACTIONS(9393), + [aux_sym_def_type_statement_token1] = ACTIONS(9393), + [aux_sym_def_type_statement_token2] = ACTIONS(9393), + [aux_sym_def_type_statement_token3] = ACTIONS(9393), + [aux_sym_def_type_statement_token4] = ACTIONS(9393), + [aux_sym_def_type_statement_token5] = ACTIONS(9393), + [aux_sym_def_type_statement_token6] = ACTIONS(9393), + [aux_sym_def_type_statement_token7] = ACTIONS(9393), + [aux_sym_def_type_statement_token8] = ACTIONS(9393), + [aux_sym_def_type_statement_token9] = ACTIONS(9393), + [aux_sym_def_type_statement_token10] = ACTIONS(9393), + [aux_sym_def_type_statement_token11] = ACTIONS(9393), + [aux_sym_def_type_statement_token12] = ACTIONS(9393), + [aux_sym_def_type_statement_token13] = ACTIONS(9393), + [aux_sym_def_type_statement_token14] = ACTIONS(9393), + [aux_sym_call_statement_token1] = ACTIONS(9393), + [sym__ambiguous_call_statement] = ACTIONS(9393), + [aux_sym_addressof_expression_token1] = ACTIONS(9393), + [aux_sym_type_of_expression_token1] = ACTIONS(9393), + [aux_sym_unary_expression_token1] = ACTIONS(9393), + [sym_string_literal] = ACTIONS(9395), + [sym_number_literal] = ACTIONS(9395), + [aux_sym_boolean_literal_token1] = ACTIONS(9393), + [aux_sym_boolean_literal_token2] = ACTIONS(9393), + [sym_nothing_literal] = ACTIONS(9393), + [sym_null_literal] = ACTIONS(9393), + [sym_empty_literal] = ACTIONS(9393), + [sym_date_literal] = ACTIONS(9395), + [anon_sym_POUND] = ACTIONS(9393), + }, + [STATE(4549)] = { + [sym_identifier] = ACTIONS(9142), + [sym_newline] = ACTIONS(9144), + [anon_sym_COLON] = ACTIONS(9144), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9142), + [aux_sym_frm_property_statement_token1] = ACTIONS(9142), + [anon_sym_DOT] = ACTIONS(9142), + [anon_sym_BANG] = ACTIONS(9144), + [aux_sym__attribute_identifier_token1] = ACTIONS(9142), + [aux_sym_option_statement_token3] = ACTIONS(9142), + [aux_sym_type_declaration_token1] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9142), + [aux_sym_enum_declaration_token1] = ACTIONS(9142), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9142), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9142), + [aux_sym_declare_function_statement_token1] = ACTIONS(9142), + [aux_sym_preprocessor_const_token1] = ACTIONS(9142), + [aux_sym__property_get_header_token1] = ACTIONS(9142), + [aux_sym_event_declaration_token1] = ACTIONS(9142), + [sym_static_modifier] = ACTIONS(9142), + [sym__dim_keyword] = ACTIONS(9142), + [sym__redim_keyword] = ACTIONS(9142), + [aux_sym_get_accessor_token1] = ACTIONS(9142), + [aux_sym_set_accessor_token1] = ACTIONS(9142), + [aux_sym_const_declaration_token1] = ACTIONS(9142), + [anon_sym_LPAREN] = ACTIONS(9144), + [aux_sym_as_type_clause_token2] = ACTIONS(9142), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9142), + [aux_sym_visibility_token1] = ACTIONS(9142), + [aux_sym_visibility_token2] = ACTIONS(9142), + [aux_sym_elseif_fragment_token1] = ACTIONS(9142), + [aux_sym_else_fragment_token1] = ACTIONS(9142), + [aux_sym_select_statement_token1] = ACTIONS(9142), + [aux_sym__for_header_token1] = ACTIONS(9142), + [aux_sym_do_statement_token1] = ACTIONS(9142), + [aux_sym_do_condition_token1] = ACTIONS(9142), + [aux_sym_with_statement_token1] = ACTIONS(9142), + [aux_sym_exit_statement_token1] = ACTIONS(9142), + [sym_end_statement] = ACTIONS(9144), + [aux_sym_on_goto_statement_token1] = ACTIONS(9142), + [aux_sym_on_goto_statement_token2] = ACTIONS(9142), + [aux_sym_on_error_statement_token2] = ACTIONS(9142), + [sym__ambiguous_redim_statement] = ACTIONS(9144), + [aux_sym_erase_statement_token1] = ACTIONS(9142), + [aux_sym_open_statement_token1] = ACTIONS(9142), + [aux_sym_file_mode_token2] = ACTIONS(9142), + [aux_sym_file_access_token2] = ACTIONS(9142), + [aux_sym_file_lock_token2] = ACTIONS(9142), + [aux_sym_print_statement_token1] = ACTIONS(9142), + [anon_sym_PLUS] = ACTIONS(9144), + [anon_sym_DASH] = ACTIONS(9142), + [anon_sym_QMARK] = ACTIONS(9144), + [aux_sym_close_statement_token1] = ACTIONS(9142), + [aux_sym_put_statement_token1] = ACTIONS(9142), + [aux_sym_unlock_statement_token1] = ACTIONS(9142), + [aux_sym_seek_statement_token1] = ACTIONS(9142), + [sym_reset_statement] = ACTIONS(9142), + [aux_sym_raise_event_statement_token1] = ACTIONS(9142), + [sym_stop_statement] = ACTIONS(9142), + [sym_beep_statement] = ACTIONS(9142), + [aux_sym_unload_statement_token1] = ACTIONS(9142), + [aux_sym_def_type_statement_token1] = ACTIONS(9142), + [aux_sym_def_type_statement_token2] = ACTIONS(9142), + [aux_sym_def_type_statement_token3] = ACTIONS(9142), + [aux_sym_def_type_statement_token4] = ACTIONS(9142), + [aux_sym_def_type_statement_token5] = ACTIONS(9142), + [aux_sym_def_type_statement_token6] = ACTIONS(9142), + [aux_sym_def_type_statement_token7] = ACTIONS(9142), + [aux_sym_def_type_statement_token8] = ACTIONS(9142), + [aux_sym_def_type_statement_token9] = ACTIONS(9142), + [aux_sym_def_type_statement_token10] = ACTIONS(9142), + [aux_sym_def_type_statement_token11] = ACTIONS(9142), + [aux_sym_def_type_statement_token12] = ACTIONS(9142), + [aux_sym_def_type_statement_token13] = ACTIONS(9142), + [aux_sym_def_type_statement_token14] = ACTIONS(9142), + [aux_sym_call_statement_token1] = ACTIONS(9142), + [sym__ambiguous_call_statement] = ACTIONS(9142), + [aux_sym_addressof_expression_token1] = ACTIONS(9142), + [aux_sym_type_of_expression_token1] = ACTIONS(9142), + [aux_sym_unary_expression_token1] = ACTIONS(9142), + [sym_string_literal] = ACTIONS(9144), + [sym_number_literal] = ACTIONS(9144), + [aux_sym_boolean_literal_token1] = ACTIONS(9142), + [aux_sym_boolean_literal_token2] = ACTIONS(9142), + [sym_nothing_literal] = ACTIONS(9142), + [sym_null_literal] = ACTIONS(9142), + [sym_empty_literal] = ACTIONS(9142), + [sym_date_literal] = ACTIONS(9144), + [anon_sym_POUND] = ACTIONS(9142), + }, + [STATE(4550)] = { + [sym_identifier] = ACTIONS(9610), + [sym_newline] = ACTIONS(9612), + [anon_sym_COLON] = ACTIONS(9612), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9610), + [aux_sym_frm_property_statement_token1] = ACTIONS(9610), + [anon_sym_DOT] = ACTIONS(9610), + [anon_sym_BANG] = ACTIONS(9612), + [aux_sym__attribute_identifier_token1] = ACTIONS(9610), + [aux_sym_option_statement_token3] = ACTIONS(9610), + [aux_sym_type_declaration_token1] = ACTIONS(9610), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9610), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9610), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9610), + [aux_sym_enum_declaration_token1] = ACTIONS(9610), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9610), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9610), + [aux_sym_declare_function_statement_token1] = ACTIONS(9610), + [aux_sym_preprocessor_const_token1] = ACTIONS(9610), + [aux_sym__property_get_header_token1] = ACTIONS(9610), + [aux_sym_event_declaration_token1] = ACTIONS(9610), + [sym_static_modifier] = ACTIONS(9610), + [sym__dim_keyword] = ACTIONS(9610), + [sym__redim_keyword] = ACTIONS(9610), + [aux_sym_get_accessor_token1] = ACTIONS(9610), + [aux_sym_set_accessor_token1] = ACTIONS(9610), + [aux_sym_const_declaration_token1] = ACTIONS(9610), + [anon_sym_LPAREN] = ACTIONS(9612), + [aux_sym_as_type_clause_token2] = ACTIONS(9610), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9610), + [aux_sym_visibility_token1] = ACTIONS(9610), + [aux_sym_visibility_token2] = ACTIONS(9610), + [aux_sym_elseif_fragment_token1] = ACTIONS(9610), + [aux_sym_else_fragment_token1] = ACTIONS(9610), + [aux_sym_select_statement_token1] = ACTIONS(9610), + [aux_sym__for_header_token1] = ACTIONS(9610), + [aux_sym_do_statement_token1] = ACTIONS(9610), + [aux_sym_do_condition_token1] = ACTIONS(9610), + [aux_sym_with_statement_token1] = ACTIONS(9610), + [aux_sym_exit_statement_token1] = ACTIONS(9610), + [sym_end_statement] = ACTIONS(9612), + [aux_sym_on_goto_statement_token1] = ACTIONS(9610), + [aux_sym_on_goto_statement_token2] = ACTIONS(9610), + [aux_sym_on_error_statement_token2] = ACTIONS(9610), + [sym__ambiguous_redim_statement] = ACTIONS(9612), + [aux_sym_erase_statement_token1] = ACTIONS(9610), + [aux_sym_open_statement_token1] = ACTIONS(9610), + [aux_sym_file_mode_token2] = ACTIONS(9610), + [aux_sym_file_access_token2] = ACTIONS(9610), + [aux_sym_file_lock_token2] = ACTIONS(9610), + [aux_sym_print_statement_token1] = ACTIONS(9610), + [anon_sym_PLUS] = ACTIONS(9612), + [anon_sym_DASH] = ACTIONS(9610), + [anon_sym_QMARK] = ACTIONS(9612), + [aux_sym_close_statement_token1] = ACTIONS(9610), + [aux_sym_put_statement_token1] = ACTIONS(9610), + [aux_sym_unlock_statement_token1] = ACTIONS(9610), + [aux_sym_seek_statement_token1] = ACTIONS(9610), + [sym_reset_statement] = ACTIONS(9610), + [aux_sym_raise_event_statement_token1] = ACTIONS(9610), + [sym_stop_statement] = ACTIONS(9610), + [sym_beep_statement] = ACTIONS(9610), + [aux_sym_unload_statement_token1] = ACTIONS(9610), + [aux_sym_def_type_statement_token1] = ACTIONS(9610), + [aux_sym_def_type_statement_token2] = ACTIONS(9610), + [aux_sym_def_type_statement_token3] = ACTIONS(9610), + [aux_sym_def_type_statement_token4] = ACTIONS(9610), + [aux_sym_def_type_statement_token5] = ACTIONS(9610), + [aux_sym_def_type_statement_token6] = ACTIONS(9610), + [aux_sym_def_type_statement_token7] = ACTIONS(9610), + [aux_sym_def_type_statement_token8] = ACTIONS(9610), + [aux_sym_def_type_statement_token9] = ACTIONS(9610), + [aux_sym_def_type_statement_token10] = ACTIONS(9610), + [aux_sym_def_type_statement_token11] = ACTIONS(9610), + [aux_sym_def_type_statement_token12] = ACTIONS(9610), + [aux_sym_def_type_statement_token13] = ACTIONS(9610), + [aux_sym_def_type_statement_token14] = ACTIONS(9610), + [aux_sym_call_statement_token1] = ACTIONS(9610), + [sym__ambiguous_call_statement] = ACTIONS(9610), + [aux_sym_addressof_expression_token1] = ACTIONS(9610), + [aux_sym_type_of_expression_token1] = ACTIONS(9610), + [aux_sym_unary_expression_token1] = ACTIONS(9610), + [sym_string_literal] = ACTIONS(9612), + [sym_number_literal] = ACTIONS(9612), + [aux_sym_boolean_literal_token1] = ACTIONS(9610), + [aux_sym_boolean_literal_token2] = ACTIONS(9610), + [sym_nothing_literal] = ACTIONS(9610), + [sym_null_literal] = ACTIONS(9610), + [sym_empty_literal] = ACTIONS(9610), + [sym_date_literal] = ACTIONS(9612), + [anon_sym_POUND] = ACTIONS(9610), + }, + [STATE(4551)] = { + [sym_identifier] = ACTIONS(9028), + [sym_newline] = ACTIONS(9030), + [anon_sym_COLON] = ACTIONS(9030), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9028), + [aux_sym_frm_property_statement_token1] = ACTIONS(9028), + [anon_sym_DOT] = ACTIONS(9028), + [anon_sym_BANG] = ACTIONS(9030), + [aux_sym__attribute_identifier_token1] = ACTIONS(9028), + [aux_sym_option_statement_token3] = ACTIONS(9028), + [aux_sym_type_declaration_token1] = ACTIONS(9028), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9028), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9028), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9028), + [aux_sym_enum_declaration_token1] = ACTIONS(9028), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9028), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9028), + [aux_sym_declare_function_statement_token1] = ACTIONS(9028), + [aux_sym_preprocessor_const_token1] = ACTIONS(9028), + [aux_sym__property_get_header_token1] = ACTIONS(9028), + [aux_sym_event_declaration_token1] = ACTIONS(9028), + [sym_static_modifier] = ACTIONS(9028), + [sym__dim_keyword] = ACTIONS(9028), + [sym__redim_keyword] = ACTIONS(9028), + [aux_sym_get_accessor_token1] = ACTIONS(9028), + [aux_sym_set_accessor_token1] = ACTIONS(9028), + [aux_sym_const_declaration_token1] = ACTIONS(9028), + [anon_sym_LPAREN] = ACTIONS(9030), + [aux_sym_as_type_clause_token2] = ACTIONS(9028), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9028), + [aux_sym_visibility_token1] = ACTIONS(9028), + [aux_sym_visibility_token2] = ACTIONS(9028), + [aux_sym_elseif_fragment_token1] = ACTIONS(9028), + [aux_sym_else_fragment_token1] = ACTIONS(9028), + [aux_sym_select_statement_token1] = ACTIONS(9028), + [aux_sym__for_header_token1] = ACTIONS(9028), + [aux_sym_do_statement_token1] = ACTIONS(9028), + [aux_sym_do_condition_token1] = ACTIONS(9028), + [aux_sym_with_statement_token1] = ACTIONS(9028), + [aux_sym_exit_statement_token1] = ACTIONS(9028), + [sym_end_statement] = ACTIONS(9030), + [aux_sym_on_goto_statement_token1] = ACTIONS(9028), + [aux_sym_on_goto_statement_token2] = ACTIONS(9028), + [aux_sym_on_error_statement_token2] = ACTIONS(9028), + [sym__ambiguous_redim_statement] = ACTIONS(9030), + [aux_sym_erase_statement_token1] = ACTIONS(9028), + [aux_sym_open_statement_token1] = ACTIONS(9028), + [aux_sym_file_mode_token2] = ACTIONS(9028), + [aux_sym_file_access_token2] = ACTIONS(9028), + [aux_sym_file_lock_token2] = ACTIONS(9028), + [aux_sym_print_statement_token1] = ACTIONS(9028), + [anon_sym_PLUS] = ACTIONS(9030), + [anon_sym_DASH] = ACTIONS(9028), + [anon_sym_QMARK] = ACTIONS(9030), + [aux_sym_close_statement_token1] = ACTIONS(9028), + [aux_sym_put_statement_token1] = ACTIONS(9028), + [aux_sym_unlock_statement_token1] = ACTIONS(9028), + [aux_sym_seek_statement_token1] = ACTIONS(9028), + [sym_reset_statement] = ACTIONS(9028), + [aux_sym_raise_event_statement_token1] = ACTIONS(9028), + [sym_stop_statement] = ACTIONS(9028), + [sym_beep_statement] = ACTIONS(9028), + [aux_sym_unload_statement_token1] = ACTIONS(9028), + [aux_sym_def_type_statement_token1] = ACTIONS(9028), + [aux_sym_def_type_statement_token2] = ACTIONS(9028), + [aux_sym_def_type_statement_token3] = ACTIONS(9028), + [aux_sym_def_type_statement_token4] = ACTIONS(9028), + [aux_sym_def_type_statement_token5] = ACTIONS(9028), + [aux_sym_def_type_statement_token6] = ACTIONS(9028), + [aux_sym_def_type_statement_token7] = ACTIONS(9028), + [aux_sym_def_type_statement_token8] = ACTIONS(9028), + [aux_sym_def_type_statement_token9] = ACTIONS(9028), + [aux_sym_def_type_statement_token10] = ACTIONS(9028), + [aux_sym_def_type_statement_token11] = ACTIONS(9028), + [aux_sym_def_type_statement_token12] = ACTIONS(9028), + [aux_sym_def_type_statement_token13] = ACTIONS(9028), + [aux_sym_def_type_statement_token14] = ACTIONS(9028), + [aux_sym_call_statement_token1] = ACTIONS(9028), + [sym__ambiguous_call_statement] = ACTIONS(9028), + [aux_sym_addressof_expression_token1] = ACTIONS(9028), + [aux_sym_type_of_expression_token1] = ACTIONS(9028), + [aux_sym_unary_expression_token1] = ACTIONS(9028), + [sym_string_literal] = ACTIONS(9030), + [sym_number_literal] = ACTIONS(9030), + [aux_sym_boolean_literal_token1] = ACTIONS(9028), + [aux_sym_boolean_literal_token2] = ACTIONS(9028), + [sym_nothing_literal] = ACTIONS(9028), + [sym_null_literal] = ACTIONS(9028), + [sym_empty_literal] = ACTIONS(9028), + [sym_date_literal] = ACTIONS(9030), + [anon_sym_POUND] = ACTIONS(9028), + }, + [STATE(4552)] = { + [sym_identifier] = ACTIONS(7281), + [sym_newline] = ACTIONS(7283), + [anon_sym_COLON] = ACTIONS(7283), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7281), + [aux_sym_frm_property_statement_token1] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7281), + [anon_sym_BANG] = ACTIONS(7283), + [aux_sym__attribute_identifier_token1] = ACTIONS(7281), + [aux_sym_option_statement_token3] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7281), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7281), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7281), + [aux_sym_preprocessor_const_token1] = ACTIONS(7281), + [sym_static_modifier] = ACTIONS(7281), + [sym__dim_keyword] = ACTIONS(7281), + [sym__redim_keyword] = ACTIONS(7281), + [aux_sym_get_accessor_token1] = ACTIONS(7281), + [aux_sym_set_accessor_token1] = ACTIONS(7281), + [aux_sym_const_declaration_token1] = ACTIONS(7281), + [anon_sym_LPAREN] = ACTIONS(7283), + [aux_sym_as_type_clause_token2] = ACTIONS(7281), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7281), + [aux_sym_visibility_token1] = ACTIONS(7281), + [aux_sym_visibility_token2] = ACTIONS(7281), + [aux_sym_elseif_fragment_token1] = ACTIONS(7281), + [aux_sym_else_fragment_token1] = ACTIONS(7281), + [aux_sym_select_statement_token1] = ACTIONS(7281), + [aux_sym__for_header_token1] = ACTIONS(7281), + [aux_sym_do_statement_token1] = ACTIONS(7281), + [aux_sym_do_condition_token1] = ACTIONS(7281), + [aux_sym_with_statement_token1] = ACTIONS(7281), + [aux_sym_exit_statement_token1] = ACTIONS(7281), + [sym_end_statement] = ACTIONS(7283), + [aux_sym_on_goto_statement_token1] = ACTIONS(7281), + [aux_sym_on_goto_statement_token2] = ACTIONS(7281), + [aux_sym_on_error_statement_token2] = ACTIONS(7281), + [sym__ambiguous_redim_statement] = ACTIONS(7283), + [aux_sym_erase_statement_token1] = ACTIONS(7281), + [aux_sym_open_statement_token1] = ACTIONS(7281), + [aux_sym_file_mode_token2] = ACTIONS(7281), + [aux_sym_file_access_token2] = ACTIONS(7281), + [aux_sym_file_lock_token2] = ACTIONS(7281), + [aux_sym_print_statement_token1] = ACTIONS(7281), + [anon_sym_PLUS] = ACTIONS(7283), + [anon_sym_DASH] = ACTIONS(7281), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(9973), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(9975), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(9977), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(9979), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(9981), + [anon_sym_QMARK] = ACTIONS(7283), + [aux_sym_close_statement_token1] = ACTIONS(7281), + [aux_sym_put_statement_token1] = ACTIONS(7281), + [aux_sym_unlock_statement_token1] = ACTIONS(7281), + [aux_sym_seek_statement_token1] = ACTIONS(7281), + [sym_reset_statement] = ACTIONS(7281), + [aux_sym_raise_event_statement_token1] = ACTIONS(7281), + [sym_stop_statement] = ACTIONS(7281), + [sym_beep_statement] = ACTIONS(7281), + [aux_sym_unload_statement_token1] = ACTIONS(7281), + [aux_sym_def_type_statement_token1] = ACTIONS(7281), + [aux_sym_def_type_statement_token2] = ACTIONS(7281), + [aux_sym_def_type_statement_token3] = ACTIONS(7281), + [aux_sym_def_type_statement_token4] = ACTIONS(7281), + [aux_sym_def_type_statement_token5] = ACTIONS(7281), + [aux_sym_def_type_statement_token6] = ACTIONS(7281), + [aux_sym_def_type_statement_token7] = ACTIONS(7281), + [aux_sym_def_type_statement_token8] = ACTIONS(7281), + [aux_sym_def_type_statement_token9] = ACTIONS(7281), + [aux_sym_def_type_statement_token10] = ACTIONS(7281), + [aux_sym_def_type_statement_token11] = ACTIONS(7281), + [aux_sym_def_type_statement_token12] = ACTIONS(7281), + [aux_sym_def_type_statement_token13] = ACTIONS(7281), + [aux_sym_def_type_statement_token14] = ACTIONS(7281), + [aux_sym_call_statement_token1] = ACTIONS(7281), + [sym__ambiguous_call_statement] = ACTIONS(7281), + [aux_sym_addressof_expression_token1] = ACTIONS(7281), + [aux_sym_type_of_expression_token1] = ACTIONS(7281), + [aux_sym_unary_expression_token1] = ACTIONS(7281), + [sym_string_literal] = ACTIONS(7283), + [sym_number_literal] = ACTIONS(7283), + [aux_sym_boolean_literal_token1] = ACTIONS(7281), + [aux_sym_boolean_literal_token2] = ACTIONS(7281), + [sym_nothing_literal] = ACTIONS(7281), + [sym_null_literal] = ACTIONS(7281), + [sym_empty_literal] = ACTIONS(7281), + [sym_date_literal] = ACTIONS(7283), + [anon_sym_POUND] = ACTIONS(7281), + }, + [STATE(4553)] = { + [sym_identifier] = ACTIONS(9614), + [sym_newline] = ACTIONS(9616), + [anon_sym_COLON] = ACTIONS(9616), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9614), + [aux_sym_frm_property_statement_token1] = ACTIONS(9614), + [anon_sym_DOT] = ACTIONS(9614), + [anon_sym_BANG] = ACTIONS(9616), + [aux_sym__attribute_identifier_token1] = ACTIONS(9614), + [aux_sym_option_statement_token3] = ACTIONS(9614), + [aux_sym_type_declaration_token1] = ACTIONS(9614), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9614), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9614), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9614), + [aux_sym_enum_declaration_token1] = ACTIONS(9614), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9614), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9614), + [aux_sym_declare_function_statement_token1] = ACTIONS(9614), + [aux_sym_preprocessor_const_token1] = ACTIONS(9614), + [aux_sym__property_get_header_token1] = ACTIONS(9614), + [aux_sym_event_declaration_token1] = ACTIONS(9614), + [sym_static_modifier] = ACTIONS(9614), + [sym__dim_keyword] = ACTIONS(9614), + [sym__redim_keyword] = ACTIONS(9614), + [aux_sym_get_accessor_token1] = ACTIONS(9614), + [aux_sym_set_accessor_token1] = ACTIONS(9614), + [aux_sym_const_declaration_token1] = ACTIONS(9614), + [anon_sym_LPAREN] = ACTIONS(9616), + [aux_sym_as_type_clause_token2] = ACTIONS(9614), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9614), + [aux_sym_visibility_token1] = ACTIONS(9614), + [aux_sym_visibility_token2] = ACTIONS(9614), + [aux_sym_elseif_fragment_token1] = ACTIONS(9614), + [aux_sym_else_fragment_token1] = ACTIONS(9614), + [aux_sym_select_statement_token1] = ACTIONS(9614), + [aux_sym__for_header_token1] = ACTIONS(9614), + [aux_sym_do_statement_token1] = ACTIONS(9614), + [aux_sym_do_condition_token1] = ACTIONS(9614), + [aux_sym_with_statement_token1] = ACTIONS(9614), + [aux_sym_exit_statement_token1] = ACTIONS(9614), + [sym_end_statement] = ACTIONS(9616), + [aux_sym_on_goto_statement_token1] = ACTIONS(9614), + [aux_sym_on_goto_statement_token2] = ACTIONS(9614), + [aux_sym_on_error_statement_token2] = ACTIONS(9614), + [sym__ambiguous_redim_statement] = ACTIONS(9616), + [aux_sym_erase_statement_token1] = ACTIONS(9614), + [aux_sym_open_statement_token1] = ACTIONS(9614), + [aux_sym_file_mode_token2] = ACTIONS(9614), + [aux_sym_file_access_token2] = ACTIONS(9614), + [aux_sym_file_lock_token2] = ACTIONS(9614), + [aux_sym_print_statement_token1] = ACTIONS(9614), + [anon_sym_PLUS] = ACTIONS(9616), + [anon_sym_DASH] = ACTIONS(9614), + [anon_sym_QMARK] = ACTIONS(9616), + [aux_sym_close_statement_token1] = ACTIONS(9614), + [aux_sym_put_statement_token1] = ACTIONS(9614), + [aux_sym_unlock_statement_token1] = ACTIONS(9614), + [aux_sym_seek_statement_token1] = ACTIONS(9614), + [sym_reset_statement] = ACTIONS(9614), + [aux_sym_raise_event_statement_token1] = ACTIONS(9614), + [sym_stop_statement] = ACTIONS(9614), + [sym_beep_statement] = ACTIONS(9614), + [aux_sym_unload_statement_token1] = ACTIONS(9614), + [aux_sym_def_type_statement_token1] = ACTIONS(9614), + [aux_sym_def_type_statement_token2] = ACTIONS(9614), + [aux_sym_def_type_statement_token3] = ACTIONS(9614), + [aux_sym_def_type_statement_token4] = ACTIONS(9614), + [aux_sym_def_type_statement_token5] = ACTIONS(9614), + [aux_sym_def_type_statement_token6] = ACTIONS(9614), + [aux_sym_def_type_statement_token7] = ACTIONS(9614), + [aux_sym_def_type_statement_token8] = ACTIONS(9614), + [aux_sym_def_type_statement_token9] = ACTIONS(9614), + [aux_sym_def_type_statement_token10] = ACTIONS(9614), + [aux_sym_def_type_statement_token11] = ACTIONS(9614), + [aux_sym_def_type_statement_token12] = ACTIONS(9614), + [aux_sym_def_type_statement_token13] = ACTIONS(9614), + [aux_sym_def_type_statement_token14] = ACTIONS(9614), + [aux_sym_call_statement_token1] = ACTIONS(9614), + [sym__ambiguous_call_statement] = ACTIONS(9614), + [aux_sym_addressof_expression_token1] = ACTIONS(9614), + [aux_sym_type_of_expression_token1] = ACTIONS(9614), + [aux_sym_unary_expression_token1] = ACTIONS(9614), + [sym_string_literal] = ACTIONS(9616), + [sym_number_literal] = ACTIONS(9616), + [aux_sym_boolean_literal_token1] = ACTIONS(9614), + [aux_sym_boolean_literal_token2] = ACTIONS(9614), + [sym_nothing_literal] = ACTIONS(9614), + [sym_null_literal] = ACTIONS(9614), + [sym_empty_literal] = ACTIONS(9614), + [sym_date_literal] = ACTIONS(9616), + [anon_sym_POUND] = ACTIONS(9614), + }, + [STATE(4554)] = { + [sym_identifier] = ACTIONS(9618), + [sym_newline] = ACTIONS(9620), + [anon_sym_COLON] = ACTIONS(9620), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9618), + [aux_sym_frm_property_statement_token1] = ACTIONS(9618), + [anon_sym_DOT] = ACTIONS(9618), + [anon_sym_BANG] = ACTIONS(9620), + [aux_sym__attribute_identifier_token1] = ACTIONS(9618), + [aux_sym_option_statement_token3] = ACTIONS(9618), + [aux_sym_type_declaration_token1] = ACTIONS(9618), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9618), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9618), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9618), + [aux_sym_enum_declaration_token1] = ACTIONS(9618), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9618), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9618), + [aux_sym_declare_function_statement_token1] = ACTIONS(9618), + [aux_sym_preprocessor_const_token1] = ACTIONS(9618), + [aux_sym__property_get_header_token1] = ACTIONS(9618), + [aux_sym_event_declaration_token1] = ACTIONS(9618), + [sym_static_modifier] = ACTIONS(9618), + [sym__dim_keyword] = ACTIONS(9618), + [sym__redim_keyword] = ACTIONS(9618), + [aux_sym_get_accessor_token1] = ACTIONS(9618), + [aux_sym_set_accessor_token1] = ACTIONS(9618), + [aux_sym_const_declaration_token1] = ACTIONS(9618), + [anon_sym_LPAREN] = ACTIONS(9620), + [aux_sym_as_type_clause_token2] = ACTIONS(9618), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9618), + [aux_sym_visibility_token1] = ACTIONS(9618), + [aux_sym_visibility_token2] = ACTIONS(9618), + [aux_sym_elseif_fragment_token1] = ACTIONS(9618), + [aux_sym_else_fragment_token1] = ACTIONS(9618), + [aux_sym_select_statement_token1] = ACTIONS(9618), + [aux_sym__for_header_token1] = ACTIONS(9618), + [aux_sym_do_statement_token1] = ACTIONS(9618), + [aux_sym_do_condition_token1] = ACTIONS(9618), + [aux_sym_with_statement_token1] = ACTIONS(9618), + [aux_sym_exit_statement_token1] = ACTIONS(9618), + [sym_end_statement] = ACTIONS(9620), + [aux_sym_on_goto_statement_token1] = ACTIONS(9618), + [aux_sym_on_goto_statement_token2] = ACTIONS(9618), + [aux_sym_on_error_statement_token2] = ACTIONS(9618), + [sym__ambiguous_redim_statement] = ACTIONS(9620), + [aux_sym_erase_statement_token1] = ACTIONS(9618), + [aux_sym_open_statement_token1] = ACTIONS(9618), + [aux_sym_file_mode_token2] = ACTIONS(9618), + [aux_sym_file_access_token2] = ACTIONS(9618), + [aux_sym_file_lock_token2] = ACTIONS(9618), + [aux_sym_print_statement_token1] = ACTIONS(9618), + [anon_sym_PLUS] = ACTIONS(9620), + [anon_sym_DASH] = ACTIONS(9618), + [anon_sym_QMARK] = ACTIONS(9620), + [aux_sym_close_statement_token1] = ACTIONS(9618), + [aux_sym_put_statement_token1] = ACTIONS(9618), + [aux_sym_unlock_statement_token1] = ACTIONS(9618), + [aux_sym_seek_statement_token1] = ACTIONS(9618), + [sym_reset_statement] = ACTIONS(9618), + [aux_sym_raise_event_statement_token1] = ACTIONS(9618), + [sym_stop_statement] = ACTIONS(9618), + [sym_beep_statement] = ACTIONS(9618), + [aux_sym_unload_statement_token1] = ACTIONS(9618), + [aux_sym_def_type_statement_token1] = ACTIONS(9618), + [aux_sym_def_type_statement_token2] = ACTIONS(9618), + [aux_sym_def_type_statement_token3] = ACTIONS(9618), + [aux_sym_def_type_statement_token4] = ACTIONS(9618), + [aux_sym_def_type_statement_token5] = ACTIONS(9618), + [aux_sym_def_type_statement_token6] = ACTIONS(9618), + [aux_sym_def_type_statement_token7] = ACTIONS(9618), + [aux_sym_def_type_statement_token8] = ACTIONS(9618), + [aux_sym_def_type_statement_token9] = ACTIONS(9618), + [aux_sym_def_type_statement_token10] = ACTIONS(9618), + [aux_sym_def_type_statement_token11] = ACTIONS(9618), + [aux_sym_def_type_statement_token12] = ACTIONS(9618), + [aux_sym_def_type_statement_token13] = ACTIONS(9618), + [aux_sym_def_type_statement_token14] = ACTIONS(9618), + [aux_sym_call_statement_token1] = ACTIONS(9618), + [sym__ambiguous_call_statement] = ACTIONS(9618), + [aux_sym_addressof_expression_token1] = ACTIONS(9618), + [aux_sym_type_of_expression_token1] = ACTIONS(9618), + [aux_sym_unary_expression_token1] = ACTIONS(9618), + [sym_string_literal] = ACTIONS(9620), + [sym_number_literal] = ACTIONS(9620), + [aux_sym_boolean_literal_token1] = ACTIONS(9618), + [aux_sym_boolean_literal_token2] = ACTIONS(9618), + [sym_nothing_literal] = ACTIONS(9618), + [sym_null_literal] = ACTIONS(9618), + [sym_empty_literal] = ACTIONS(9618), + [sym_date_literal] = ACTIONS(9620), + [anon_sym_POUND] = ACTIONS(9618), + }, + [STATE(4555)] = { + [sym_identifier] = ACTIONS(9052), + [sym_newline] = ACTIONS(9054), + [anon_sym_COLON] = ACTIONS(9054), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9052), + [aux_sym_frm_property_statement_token1] = ACTIONS(9052), + [anon_sym_DOT] = ACTIONS(9052), + [anon_sym_BANG] = ACTIONS(9054), + [aux_sym__attribute_identifier_token1] = ACTIONS(9052), + [aux_sym_option_statement_token3] = ACTIONS(9052), + [aux_sym_type_declaration_token1] = ACTIONS(9052), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9052), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9052), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9052), + [aux_sym_enum_declaration_token1] = ACTIONS(9052), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9052), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9052), + [aux_sym_declare_function_statement_token1] = ACTIONS(9052), + [aux_sym_preprocessor_const_token1] = ACTIONS(9052), + [aux_sym__property_get_header_token1] = ACTIONS(9052), + [aux_sym_event_declaration_token1] = ACTIONS(9052), + [sym_static_modifier] = ACTIONS(9052), + [sym__dim_keyword] = ACTIONS(9052), + [sym__redim_keyword] = ACTIONS(9052), + [aux_sym_get_accessor_token1] = ACTIONS(9052), + [aux_sym_set_accessor_token1] = ACTIONS(9052), + [aux_sym_const_declaration_token1] = ACTIONS(9052), + [anon_sym_LPAREN] = ACTIONS(9054), + [aux_sym_as_type_clause_token2] = ACTIONS(9052), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9052), + [aux_sym_visibility_token1] = ACTIONS(9052), + [aux_sym_visibility_token2] = ACTIONS(9052), + [aux_sym_elseif_fragment_token1] = ACTIONS(9052), + [aux_sym_else_fragment_token1] = ACTIONS(9052), + [aux_sym_select_statement_token1] = ACTIONS(9052), + [aux_sym__for_header_token1] = ACTIONS(9052), + [aux_sym_do_statement_token1] = ACTIONS(9052), + [aux_sym_do_condition_token1] = ACTIONS(9052), + [aux_sym_with_statement_token1] = ACTIONS(9052), + [aux_sym_exit_statement_token1] = ACTIONS(9052), + [sym_end_statement] = ACTIONS(9054), + [aux_sym_on_goto_statement_token1] = ACTIONS(9052), + [aux_sym_on_goto_statement_token2] = ACTIONS(9052), + [aux_sym_on_error_statement_token2] = ACTIONS(9052), + [sym__ambiguous_redim_statement] = ACTIONS(9054), + [aux_sym_erase_statement_token1] = ACTIONS(9052), + [aux_sym_open_statement_token1] = ACTIONS(9052), + [aux_sym_file_mode_token2] = ACTIONS(9052), + [aux_sym_file_access_token2] = ACTIONS(9052), + [aux_sym_file_lock_token2] = ACTIONS(9052), + [aux_sym_print_statement_token1] = ACTIONS(9052), + [anon_sym_PLUS] = ACTIONS(9054), + [anon_sym_DASH] = ACTIONS(9052), + [anon_sym_QMARK] = ACTIONS(9054), + [aux_sym_close_statement_token1] = ACTIONS(9052), + [aux_sym_put_statement_token1] = ACTIONS(9052), + [aux_sym_unlock_statement_token1] = ACTIONS(9052), + [aux_sym_seek_statement_token1] = ACTIONS(9052), + [sym_reset_statement] = ACTIONS(9052), + [aux_sym_raise_event_statement_token1] = ACTIONS(9052), + [sym_stop_statement] = ACTIONS(9052), + [sym_beep_statement] = ACTIONS(9052), + [aux_sym_unload_statement_token1] = ACTIONS(9052), + [aux_sym_def_type_statement_token1] = ACTIONS(9052), + [aux_sym_def_type_statement_token2] = ACTIONS(9052), + [aux_sym_def_type_statement_token3] = ACTIONS(9052), + [aux_sym_def_type_statement_token4] = ACTIONS(9052), + [aux_sym_def_type_statement_token5] = ACTIONS(9052), + [aux_sym_def_type_statement_token6] = ACTIONS(9052), + [aux_sym_def_type_statement_token7] = ACTIONS(9052), + [aux_sym_def_type_statement_token8] = ACTIONS(9052), + [aux_sym_def_type_statement_token9] = ACTIONS(9052), + [aux_sym_def_type_statement_token10] = ACTIONS(9052), + [aux_sym_def_type_statement_token11] = ACTIONS(9052), + [aux_sym_def_type_statement_token12] = ACTIONS(9052), + [aux_sym_def_type_statement_token13] = ACTIONS(9052), + [aux_sym_def_type_statement_token14] = ACTIONS(9052), + [aux_sym_call_statement_token1] = ACTIONS(9052), + [sym__ambiguous_call_statement] = ACTIONS(9052), + [aux_sym_addressof_expression_token1] = ACTIONS(9052), + [aux_sym_type_of_expression_token1] = ACTIONS(9052), + [aux_sym_unary_expression_token1] = ACTIONS(9052), + [sym_string_literal] = ACTIONS(9054), + [sym_number_literal] = ACTIONS(9054), + [aux_sym_boolean_literal_token1] = ACTIONS(9052), + [aux_sym_boolean_literal_token2] = ACTIONS(9052), + [sym_nothing_literal] = ACTIONS(9052), + [sym_null_literal] = ACTIONS(9052), + [sym_empty_literal] = ACTIONS(9052), + [sym_date_literal] = ACTIONS(9054), + [anon_sym_POUND] = ACTIONS(9052), + }, + [STATE(4556)] = { + [sym_identifier] = ACTIONS(9058), + [sym_newline] = ACTIONS(9060), + [anon_sym_COLON] = ACTIONS(9060), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9058), + [aux_sym_frm_property_statement_token1] = ACTIONS(9058), + [anon_sym_DOT] = ACTIONS(9058), + [anon_sym_BANG] = ACTIONS(9060), + [aux_sym__attribute_identifier_token1] = ACTIONS(9058), + [aux_sym_option_statement_token3] = ACTIONS(9058), + [aux_sym_type_declaration_token1] = ACTIONS(9058), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9058), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9058), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9058), + [aux_sym_enum_declaration_token1] = ACTIONS(9058), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9058), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9058), + [aux_sym_declare_function_statement_token1] = ACTIONS(9058), + [aux_sym_preprocessor_const_token1] = ACTIONS(9058), + [aux_sym__property_get_header_token1] = ACTIONS(9058), + [aux_sym_event_declaration_token1] = ACTIONS(9058), + [sym_static_modifier] = ACTIONS(9058), + [sym__dim_keyword] = ACTIONS(9058), + [sym__redim_keyword] = ACTIONS(9058), + [aux_sym_get_accessor_token1] = ACTIONS(9058), + [aux_sym_set_accessor_token1] = ACTIONS(9058), + [aux_sym_const_declaration_token1] = ACTIONS(9058), + [anon_sym_LPAREN] = ACTIONS(9060), + [aux_sym_as_type_clause_token2] = ACTIONS(9058), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9058), + [aux_sym_visibility_token1] = ACTIONS(9058), + [aux_sym_visibility_token2] = ACTIONS(9058), + [aux_sym_elseif_fragment_token1] = ACTIONS(9058), + [aux_sym_else_fragment_token1] = ACTIONS(9058), + [aux_sym_select_statement_token1] = ACTIONS(9058), + [aux_sym__for_header_token1] = ACTIONS(9058), + [aux_sym_do_statement_token1] = ACTIONS(9058), + [aux_sym_do_condition_token1] = ACTIONS(9058), + [aux_sym_with_statement_token1] = ACTIONS(9058), + [aux_sym_exit_statement_token1] = ACTIONS(9058), + [sym_end_statement] = ACTIONS(9060), + [aux_sym_on_goto_statement_token1] = ACTIONS(9058), + [aux_sym_on_goto_statement_token2] = ACTIONS(9058), + [aux_sym_on_error_statement_token2] = ACTIONS(9058), + [sym__ambiguous_redim_statement] = ACTIONS(9060), + [aux_sym_erase_statement_token1] = ACTIONS(9058), + [aux_sym_open_statement_token1] = ACTIONS(9058), + [aux_sym_file_mode_token2] = ACTIONS(9058), + [aux_sym_file_access_token2] = ACTIONS(9058), + [aux_sym_file_lock_token2] = ACTIONS(9058), + [aux_sym_print_statement_token1] = ACTIONS(9058), + [anon_sym_PLUS] = ACTIONS(9060), + [anon_sym_DASH] = ACTIONS(9058), + [anon_sym_QMARK] = ACTIONS(9060), + [aux_sym_close_statement_token1] = ACTIONS(9058), + [aux_sym_put_statement_token1] = ACTIONS(9058), + [aux_sym_unlock_statement_token1] = ACTIONS(9058), + [aux_sym_seek_statement_token1] = ACTIONS(9058), + [sym_reset_statement] = ACTIONS(9058), + [aux_sym_raise_event_statement_token1] = ACTIONS(9058), + [sym_stop_statement] = ACTIONS(9058), + [sym_beep_statement] = ACTIONS(9058), + [aux_sym_unload_statement_token1] = ACTIONS(9058), + [aux_sym_def_type_statement_token1] = ACTIONS(9058), + [aux_sym_def_type_statement_token2] = ACTIONS(9058), + [aux_sym_def_type_statement_token3] = ACTIONS(9058), + [aux_sym_def_type_statement_token4] = ACTIONS(9058), + [aux_sym_def_type_statement_token5] = ACTIONS(9058), + [aux_sym_def_type_statement_token6] = ACTIONS(9058), + [aux_sym_def_type_statement_token7] = ACTIONS(9058), + [aux_sym_def_type_statement_token8] = ACTIONS(9058), + [aux_sym_def_type_statement_token9] = ACTIONS(9058), + [aux_sym_def_type_statement_token10] = ACTIONS(9058), + [aux_sym_def_type_statement_token11] = ACTIONS(9058), + [aux_sym_def_type_statement_token12] = ACTIONS(9058), + [aux_sym_def_type_statement_token13] = ACTIONS(9058), + [aux_sym_def_type_statement_token14] = ACTIONS(9058), + [aux_sym_call_statement_token1] = ACTIONS(9058), + [sym__ambiguous_call_statement] = ACTIONS(9058), + [aux_sym_addressof_expression_token1] = ACTIONS(9058), + [aux_sym_type_of_expression_token1] = ACTIONS(9058), + [aux_sym_unary_expression_token1] = ACTIONS(9058), + [sym_string_literal] = ACTIONS(9060), + [sym_number_literal] = ACTIONS(9060), + [aux_sym_boolean_literal_token1] = ACTIONS(9058), + [aux_sym_boolean_literal_token2] = ACTIONS(9058), + [sym_nothing_literal] = ACTIONS(9058), + [sym_null_literal] = ACTIONS(9058), + [sym_empty_literal] = ACTIONS(9058), + [sym_date_literal] = ACTIONS(9060), + [anon_sym_POUND] = ACTIONS(9058), + }, + [STATE(4557)] = { + [sym_identifier] = ACTIONS(9062), + [sym_newline] = ACTIONS(9064), + [anon_sym_COLON] = ACTIONS(9064), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9062), + [aux_sym_frm_property_statement_token1] = ACTIONS(9062), + [anon_sym_DOT] = ACTIONS(9062), + [anon_sym_BANG] = ACTIONS(9064), + [aux_sym__attribute_identifier_token1] = ACTIONS(9062), + [aux_sym_option_statement_token3] = ACTIONS(9062), + [aux_sym_type_declaration_token1] = ACTIONS(9062), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9062), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9062), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9062), + [aux_sym_enum_declaration_token1] = ACTIONS(9062), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9062), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9062), + [aux_sym_declare_function_statement_token1] = ACTIONS(9062), + [aux_sym_preprocessor_const_token1] = ACTIONS(9062), + [aux_sym__property_get_header_token1] = ACTIONS(9062), + [aux_sym_event_declaration_token1] = ACTIONS(9062), + [sym_static_modifier] = ACTIONS(9062), + [sym__dim_keyword] = ACTIONS(9062), + [sym__redim_keyword] = ACTIONS(9062), + [aux_sym_get_accessor_token1] = ACTIONS(9062), + [aux_sym_set_accessor_token1] = ACTIONS(9062), + [aux_sym_const_declaration_token1] = ACTIONS(9062), + [anon_sym_LPAREN] = ACTIONS(9064), + [aux_sym_as_type_clause_token2] = ACTIONS(9062), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9062), + [aux_sym_visibility_token1] = ACTIONS(9062), + [aux_sym_visibility_token2] = ACTIONS(9062), + [aux_sym_elseif_fragment_token1] = ACTIONS(9062), + [aux_sym_else_fragment_token1] = ACTIONS(9062), + [aux_sym_select_statement_token1] = ACTIONS(9062), + [aux_sym__for_header_token1] = ACTIONS(9062), + [aux_sym_do_statement_token1] = ACTIONS(9062), + [aux_sym_do_condition_token1] = ACTIONS(9062), + [aux_sym_with_statement_token1] = ACTIONS(9062), + [aux_sym_exit_statement_token1] = ACTIONS(9062), + [sym_end_statement] = ACTIONS(9064), + [aux_sym_on_goto_statement_token1] = ACTIONS(9062), + [aux_sym_on_goto_statement_token2] = ACTIONS(9062), + [aux_sym_on_error_statement_token2] = ACTIONS(9062), + [sym__ambiguous_redim_statement] = ACTIONS(9064), + [aux_sym_erase_statement_token1] = ACTIONS(9062), + [aux_sym_open_statement_token1] = ACTIONS(9062), + [aux_sym_file_mode_token2] = ACTIONS(9062), + [aux_sym_file_access_token2] = ACTIONS(9062), + [aux_sym_file_lock_token2] = ACTIONS(9062), + [aux_sym_print_statement_token1] = ACTIONS(9062), + [anon_sym_PLUS] = ACTIONS(9064), + [anon_sym_DASH] = ACTIONS(9062), + [anon_sym_QMARK] = ACTIONS(9064), + [aux_sym_close_statement_token1] = ACTIONS(9062), + [aux_sym_put_statement_token1] = ACTIONS(9062), + [aux_sym_unlock_statement_token1] = ACTIONS(9062), + [aux_sym_seek_statement_token1] = ACTIONS(9062), + [sym_reset_statement] = ACTIONS(9062), + [aux_sym_raise_event_statement_token1] = ACTIONS(9062), + [sym_stop_statement] = ACTIONS(9062), + [sym_beep_statement] = ACTIONS(9062), + [aux_sym_unload_statement_token1] = ACTIONS(9062), + [aux_sym_def_type_statement_token1] = ACTIONS(9062), + [aux_sym_def_type_statement_token2] = ACTIONS(9062), + [aux_sym_def_type_statement_token3] = ACTIONS(9062), + [aux_sym_def_type_statement_token4] = ACTIONS(9062), + [aux_sym_def_type_statement_token5] = ACTIONS(9062), + [aux_sym_def_type_statement_token6] = ACTIONS(9062), + [aux_sym_def_type_statement_token7] = ACTIONS(9062), + [aux_sym_def_type_statement_token8] = ACTIONS(9062), + [aux_sym_def_type_statement_token9] = ACTIONS(9062), + [aux_sym_def_type_statement_token10] = ACTIONS(9062), + [aux_sym_def_type_statement_token11] = ACTIONS(9062), + [aux_sym_def_type_statement_token12] = ACTIONS(9062), + [aux_sym_def_type_statement_token13] = ACTIONS(9062), + [aux_sym_def_type_statement_token14] = ACTIONS(9062), + [aux_sym_call_statement_token1] = ACTIONS(9062), + [sym__ambiguous_call_statement] = ACTIONS(9062), + [aux_sym_addressof_expression_token1] = ACTIONS(9062), + [aux_sym_type_of_expression_token1] = ACTIONS(9062), + [aux_sym_unary_expression_token1] = ACTIONS(9062), + [sym_string_literal] = ACTIONS(9064), + [sym_number_literal] = ACTIONS(9064), + [aux_sym_boolean_literal_token1] = ACTIONS(9062), + [aux_sym_boolean_literal_token2] = ACTIONS(9062), + [sym_nothing_literal] = ACTIONS(9062), + [sym_null_literal] = ACTIONS(9062), + [sym_empty_literal] = ACTIONS(9062), + [sym_date_literal] = ACTIONS(9064), + [anon_sym_POUND] = ACTIONS(9062), + }, + [STATE(4558)] = { + [sym_identifier] = ACTIONS(9066), + [sym_newline] = ACTIONS(9068), + [anon_sym_COLON] = ACTIONS(9068), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9066), + [aux_sym_frm_property_statement_token1] = ACTIONS(9066), + [anon_sym_DOT] = ACTIONS(9066), + [anon_sym_BANG] = ACTIONS(9068), + [aux_sym__attribute_identifier_token1] = ACTIONS(9066), + [aux_sym_option_statement_token3] = ACTIONS(9066), + [aux_sym_type_declaration_token1] = ACTIONS(9066), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9066), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9066), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9066), + [aux_sym_enum_declaration_token1] = ACTIONS(9066), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9066), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9066), + [aux_sym_declare_function_statement_token1] = ACTIONS(9066), + [aux_sym_preprocessor_const_token1] = ACTIONS(9066), + [aux_sym__property_get_header_token1] = ACTIONS(9066), + [aux_sym_event_declaration_token1] = ACTIONS(9066), + [sym_static_modifier] = ACTIONS(9066), + [sym__dim_keyword] = ACTIONS(9066), + [sym__redim_keyword] = ACTIONS(9066), + [aux_sym_get_accessor_token1] = ACTIONS(9066), + [aux_sym_set_accessor_token1] = ACTIONS(9066), + [aux_sym_const_declaration_token1] = ACTIONS(9066), + [anon_sym_LPAREN] = ACTIONS(9068), + [aux_sym_as_type_clause_token2] = ACTIONS(9066), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9066), + [aux_sym_visibility_token1] = ACTIONS(9066), + [aux_sym_visibility_token2] = ACTIONS(9066), + [aux_sym_elseif_fragment_token1] = ACTIONS(9066), + [aux_sym_else_fragment_token1] = ACTIONS(9066), + [aux_sym_select_statement_token1] = ACTIONS(9066), + [aux_sym__for_header_token1] = ACTIONS(9066), + [aux_sym_do_statement_token1] = ACTIONS(9066), + [aux_sym_do_condition_token1] = ACTIONS(9066), + [aux_sym_with_statement_token1] = ACTIONS(9066), + [aux_sym_exit_statement_token1] = ACTIONS(9066), + [sym_end_statement] = ACTIONS(9068), + [aux_sym_on_goto_statement_token1] = ACTIONS(9066), + [aux_sym_on_goto_statement_token2] = ACTIONS(9066), + [aux_sym_on_error_statement_token2] = ACTIONS(9066), + [sym__ambiguous_redim_statement] = ACTIONS(9068), + [aux_sym_erase_statement_token1] = ACTIONS(9066), + [aux_sym_open_statement_token1] = ACTIONS(9066), + [aux_sym_file_mode_token2] = ACTIONS(9066), + [aux_sym_file_access_token2] = ACTIONS(9066), + [aux_sym_file_lock_token2] = ACTIONS(9066), + [aux_sym_print_statement_token1] = ACTIONS(9066), + [anon_sym_PLUS] = ACTIONS(9068), + [anon_sym_DASH] = ACTIONS(9066), + [anon_sym_QMARK] = ACTIONS(9068), + [aux_sym_close_statement_token1] = ACTIONS(9066), + [aux_sym_put_statement_token1] = ACTIONS(9066), + [aux_sym_unlock_statement_token1] = ACTIONS(9066), + [aux_sym_seek_statement_token1] = ACTIONS(9066), + [sym_reset_statement] = ACTIONS(9066), + [aux_sym_raise_event_statement_token1] = ACTIONS(9066), + [sym_stop_statement] = ACTIONS(9066), + [sym_beep_statement] = ACTIONS(9066), + [aux_sym_unload_statement_token1] = ACTIONS(9066), + [aux_sym_def_type_statement_token1] = ACTIONS(9066), + [aux_sym_def_type_statement_token2] = ACTIONS(9066), + [aux_sym_def_type_statement_token3] = ACTIONS(9066), + [aux_sym_def_type_statement_token4] = ACTIONS(9066), + [aux_sym_def_type_statement_token5] = ACTIONS(9066), + [aux_sym_def_type_statement_token6] = ACTIONS(9066), + [aux_sym_def_type_statement_token7] = ACTIONS(9066), + [aux_sym_def_type_statement_token8] = ACTIONS(9066), + [aux_sym_def_type_statement_token9] = ACTIONS(9066), + [aux_sym_def_type_statement_token10] = ACTIONS(9066), + [aux_sym_def_type_statement_token11] = ACTIONS(9066), + [aux_sym_def_type_statement_token12] = ACTIONS(9066), + [aux_sym_def_type_statement_token13] = ACTIONS(9066), + [aux_sym_def_type_statement_token14] = ACTIONS(9066), + [aux_sym_call_statement_token1] = ACTIONS(9066), + [sym__ambiguous_call_statement] = ACTIONS(9066), + [aux_sym_addressof_expression_token1] = ACTIONS(9066), + [aux_sym_type_of_expression_token1] = ACTIONS(9066), + [aux_sym_unary_expression_token1] = ACTIONS(9066), + [sym_string_literal] = ACTIONS(9068), + [sym_number_literal] = ACTIONS(9068), + [aux_sym_boolean_literal_token1] = ACTIONS(9066), + [aux_sym_boolean_literal_token2] = ACTIONS(9066), + [sym_nothing_literal] = ACTIONS(9066), + [sym_null_literal] = ACTIONS(9066), + [sym_empty_literal] = ACTIONS(9066), + [sym_date_literal] = ACTIONS(9068), + [anon_sym_POUND] = ACTIONS(9066), + }, + [STATE(4559)] = { + [sym_identifier] = ACTIONS(9106), + [sym_newline] = ACTIONS(9108), + [anon_sym_COLON] = ACTIONS(9108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9106), + [aux_sym_frm_property_statement_token1] = ACTIONS(9106), + [anon_sym_DOT] = ACTIONS(9106), + [anon_sym_BANG] = ACTIONS(9108), + [aux_sym__attribute_identifier_token1] = ACTIONS(9106), + [aux_sym_option_statement_token3] = ACTIONS(9106), + [aux_sym_type_declaration_token1] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9106), + [aux_sym_enum_declaration_token1] = ACTIONS(9106), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9106), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9106), + [aux_sym_declare_function_statement_token1] = ACTIONS(9106), + [aux_sym_preprocessor_const_token1] = ACTIONS(9106), + [aux_sym__property_get_header_token1] = ACTIONS(9106), + [aux_sym_event_declaration_token1] = ACTIONS(9106), + [sym_static_modifier] = ACTIONS(9106), + [sym__dim_keyword] = ACTIONS(9106), + [sym__redim_keyword] = ACTIONS(9106), + [aux_sym_get_accessor_token1] = ACTIONS(9106), + [aux_sym_set_accessor_token1] = ACTIONS(9106), + [aux_sym_const_declaration_token1] = ACTIONS(9106), + [anon_sym_LPAREN] = ACTIONS(9108), + [aux_sym_as_type_clause_token2] = ACTIONS(9106), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9106), + [aux_sym_visibility_token1] = ACTIONS(9106), + [aux_sym_visibility_token2] = ACTIONS(9106), + [aux_sym_elseif_fragment_token1] = ACTIONS(9106), + [aux_sym_else_fragment_token1] = ACTIONS(9106), + [aux_sym_select_statement_token1] = ACTIONS(9106), + [aux_sym__for_header_token1] = ACTIONS(9106), + [aux_sym_do_statement_token1] = ACTIONS(9106), + [aux_sym_do_condition_token1] = ACTIONS(9106), + [aux_sym_with_statement_token1] = ACTIONS(9106), + [aux_sym_exit_statement_token1] = ACTIONS(9106), + [sym_end_statement] = ACTIONS(9108), + [aux_sym_on_goto_statement_token1] = ACTIONS(9106), + [aux_sym_on_goto_statement_token2] = ACTIONS(9106), + [aux_sym_on_error_statement_token2] = ACTIONS(9106), + [sym__ambiguous_redim_statement] = ACTIONS(9108), + [aux_sym_erase_statement_token1] = ACTIONS(9106), + [aux_sym_open_statement_token1] = ACTIONS(9106), + [aux_sym_file_mode_token2] = ACTIONS(9106), + [aux_sym_file_access_token2] = ACTIONS(9106), + [aux_sym_file_lock_token2] = ACTIONS(9106), + [aux_sym_print_statement_token1] = ACTIONS(9106), + [anon_sym_PLUS] = ACTIONS(9108), + [anon_sym_DASH] = ACTIONS(9106), + [anon_sym_QMARK] = ACTIONS(9108), + [aux_sym_close_statement_token1] = ACTIONS(9106), + [aux_sym_put_statement_token1] = ACTIONS(9106), + [aux_sym_unlock_statement_token1] = ACTIONS(9106), + [aux_sym_seek_statement_token1] = ACTIONS(9106), + [sym_reset_statement] = ACTIONS(9106), + [aux_sym_raise_event_statement_token1] = ACTIONS(9106), + [sym_stop_statement] = ACTIONS(9106), + [sym_beep_statement] = ACTIONS(9106), + [aux_sym_unload_statement_token1] = ACTIONS(9106), + [aux_sym_def_type_statement_token1] = ACTIONS(9106), + [aux_sym_def_type_statement_token2] = ACTIONS(9106), + [aux_sym_def_type_statement_token3] = ACTIONS(9106), + [aux_sym_def_type_statement_token4] = ACTIONS(9106), + [aux_sym_def_type_statement_token5] = ACTIONS(9106), + [aux_sym_def_type_statement_token6] = ACTIONS(9106), + [aux_sym_def_type_statement_token7] = ACTIONS(9106), + [aux_sym_def_type_statement_token8] = ACTIONS(9106), + [aux_sym_def_type_statement_token9] = ACTIONS(9106), + [aux_sym_def_type_statement_token10] = ACTIONS(9106), + [aux_sym_def_type_statement_token11] = ACTIONS(9106), + [aux_sym_def_type_statement_token12] = ACTIONS(9106), + [aux_sym_def_type_statement_token13] = ACTIONS(9106), + [aux_sym_def_type_statement_token14] = ACTIONS(9106), + [aux_sym_call_statement_token1] = ACTIONS(9106), + [sym__ambiguous_call_statement] = ACTIONS(9106), + [aux_sym_addressof_expression_token1] = ACTIONS(9106), + [aux_sym_type_of_expression_token1] = ACTIONS(9106), + [aux_sym_unary_expression_token1] = ACTIONS(9106), + [sym_string_literal] = ACTIONS(9108), + [sym_number_literal] = ACTIONS(9108), + [aux_sym_boolean_literal_token1] = ACTIONS(9106), + [aux_sym_boolean_literal_token2] = ACTIONS(9106), + [sym_nothing_literal] = ACTIONS(9106), + [sym_null_literal] = ACTIONS(9106), + [sym_empty_literal] = ACTIONS(9106), + [sym_date_literal] = ACTIONS(9108), + [anon_sym_POUND] = ACTIONS(9106), + }, + [STATE(4560)] = { + [sym_identifier] = ACTIONS(9397), + [sym_newline] = ACTIONS(9399), + [anon_sym_COLON] = ACTIONS(9399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9397), + [aux_sym_frm_property_statement_token1] = ACTIONS(9397), + [anon_sym_DOT] = ACTIONS(9397), + [anon_sym_BANG] = ACTIONS(9399), + [aux_sym__attribute_identifier_token1] = ACTIONS(9397), + [aux_sym_option_statement_token3] = ACTIONS(9397), + [aux_sym_type_declaration_token1] = ACTIONS(9397), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9397), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9397), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9397), + [aux_sym_enum_declaration_token1] = ACTIONS(9397), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9397), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9397), + [aux_sym_declare_function_statement_token1] = ACTIONS(9397), + [aux_sym_preprocessor_const_token1] = ACTIONS(9397), + [aux_sym__property_get_header_token1] = ACTIONS(9397), + [aux_sym_event_declaration_token1] = ACTIONS(9397), + [sym_static_modifier] = ACTIONS(9397), + [sym__dim_keyword] = ACTIONS(9397), + [sym__redim_keyword] = ACTIONS(9397), + [aux_sym_get_accessor_token1] = ACTIONS(9397), + [aux_sym_set_accessor_token1] = ACTIONS(9397), + [aux_sym_const_declaration_token1] = ACTIONS(9397), + [anon_sym_LPAREN] = ACTIONS(9399), + [aux_sym_as_type_clause_token2] = ACTIONS(9397), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9397), + [aux_sym_visibility_token1] = ACTIONS(9397), + [aux_sym_visibility_token2] = ACTIONS(9397), + [aux_sym_elseif_fragment_token1] = ACTIONS(9397), + [aux_sym_else_fragment_token1] = ACTIONS(9397), + [aux_sym_select_statement_token1] = ACTIONS(9397), + [aux_sym__for_header_token1] = ACTIONS(9397), + [aux_sym_do_statement_token1] = ACTIONS(9397), + [aux_sym_do_condition_token1] = ACTIONS(9397), + [aux_sym_with_statement_token1] = ACTIONS(9397), + [aux_sym_exit_statement_token1] = ACTIONS(9397), + [sym_end_statement] = ACTIONS(9399), + [aux_sym_on_goto_statement_token1] = ACTIONS(9397), + [aux_sym_on_goto_statement_token2] = ACTIONS(9397), + [aux_sym_on_error_statement_token2] = ACTIONS(9397), + [sym__ambiguous_redim_statement] = ACTIONS(9399), + [aux_sym_erase_statement_token1] = ACTIONS(9397), + [aux_sym_open_statement_token1] = ACTIONS(9397), + [aux_sym_file_mode_token2] = ACTIONS(9397), + [aux_sym_file_access_token2] = ACTIONS(9397), + [aux_sym_file_lock_token2] = ACTIONS(9397), + [aux_sym_print_statement_token1] = ACTIONS(9397), + [anon_sym_PLUS] = ACTIONS(9399), + [anon_sym_DASH] = ACTIONS(9397), + [anon_sym_QMARK] = ACTIONS(9399), + [aux_sym_close_statement_token1] = ACTIONS(9397), + [aux_sym_put_statement_token1] = ACTIONS(9397), + [aux_sym_unlock_statement_token1] = ACTIONS(9397), + [aux_sym_seek_statement_token1] = ACTIONS(9397), + [sym_reset_statement] = ACTIONS(9397), + [aux_sym_raise_event_statement_token1] = ACTIONS(9397), + [sym_stop_statement] = ACTIONS(9397), + [sym_beep_statement] = ACTIONS(9397), + [aux_sym_unload_statement_token1] = ACTIONS(9397), + [aux_sym_def_type_statement_token1] = ACTIONS(9397), + [aux_sym_def_type_statement_token2] = ACTIONS(9397), + [aux_sym_def_type_statement_token3] = ACTIONS(9397), + [aux_sym_def_type_statement_token4] = ACTIONS(9397), + [aux_sym_def_type_statement_token5] = ACTIONS(9397), + [aux_sym_def_type_statement_token6] = ACTIONS(9397), + [aux_sym_def_type_statement_token7] = ACTIONS(9397), + [aux_sym_def_type_statement_token8] = ACTIONS(9397), + [aux_sym_def_type_statement_token9] = ACTIONS(9397), + [aux_sym_def_type_statement_token10] = ACTIONS(9397), + [aux_sym_def_type_statement_token11] = ACTIONS(9397), + [aux_sym_def_type_statement_token12] = ACTIONS(9397), + [aux_sym_def_type_statement_token13] = ACTIONS(9397), + [aux_sym_def_type_statement_token14] = ACTIONS(9397), + [aux_sym_call_statement_token1] = ACTIONS(9397), + [sym__ambiguous_call_statement] = ACTIONS(9397), + [aux_sym_addressof_expression_token1] = ACTIONS(9397), + [aux_sym_type_of_expression_token1] = ACTIONS(9397), + [aux_sym_unary_expression_token1] = ACTIONS(9397), + [sym_string_literal] = ACTIONS(9399), + [sym_number_literal] = ACTIONS(9399), + [aux_sym_boolean_literal_token1] = ACTIONS(9397), + [aux_sym_boolean_literal_token2] = ACTIONS(9397), + [sym_nothing_literal] = ACTIONS(9397), + [sym_null_literal] = ACTIONS(9397), + [sym_empty_literal] = ACTIONS(9397), + [sym_date_literal] = ACTIONS(9399), + [anon_sym_POUND] = ACTIONS(9397), + }, + [STATE(4561)] = { + [sym_identifier] = ACTIONS(9622), + [sym_newline] = ACTIONS(9624), + [anon_sym_COLON] = ACTIONS(9624), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9622), + [aux_sym_frm_property_statement_token1] = ACTIONS(9622), + [anon_sym_DOT] = ACTIONS(9622), + [anon_sym_BANG] = ACTIONS(9624), + [aux_sym__attribute_identifier_token1] = ACTIONS(9622), + [aux_sym_option_statement_token3] = ACTIONS(9622), + [aux_sym_type_declaration_token1] = ACTIONS(9622), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9622), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9622), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9622), + [aux_sym_enum_declaration_token1] = ACTIONS(9622), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9622), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9622), + [aux_sym_declare_function_statement_token1] = ACTIONS(9622), + [aux_sym_preprocessor_const_token1] = ACTIONS(9622), + [aux_sym__property_get_header_token1] = ACTIONS(9622), + [aux_sym_event_declaration_token1] = ACTIONS(9622), + [sym_static_modifier] = ACTIONS(9622), + [sym__dim_keyword] = ACTIONS(9622), + [sym__redim_keyword] = ACTIONS(9622), + [aux_sym_get_accessor_token1] = ACTIONS(9622), + [aux_sym_set_accessor_token1] = ACTIONS(9622), + [aux_sym_const_declaration_token1] = ACTIONS(9622), + [anon_sym_LPAREN] = ACTIONS(9624), + [aux_sym_as_type_clause_token2] = ACTIONS(9622), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9622), + [aux_sym_visibility_token1] = ACTIONS(9622), + [aux_sym_visibility_token2] = ACTIONS(9622), + [aux_sym_elseif_fragment_token1] = ACTIONS(9622), + [aux_sym_else_fragment_token1] = ACTIONS(9622), + [aux_sym_select_statement_token1] = ACTIONS(9622), + [aux_sym__for_header_token1] = ACTIONS(9622), + [aux_sym_do_statement_token1] = ACTIONS(9622), + [aux_sym_do_condition_token1] = ACTIONS(9622), + [aux_sym_with_statement_token1] = ACTIONS(9622), + [aux_sym_exit_statement_token1] = ACTIONS(9622), + [sym_end_statement] = ACTIONS(9624), + [aux_sym_on_goto_statement_token1] = ACTIONS(9622), + [aux_sym_on_goto_statement_token2] = ACTIONS(9622), + [aux_sym_on_error_statement_token2] = ACTIONS(9622), + [sym__ambiguous_redim_statement] = ACTIONS(9624), + [aux_sym_erase_statement_token1] = ACTIONS(9622), + [aux_sym_open_statement_token1] = ACTIONS(9622), + [aux_sym_file_mode_token2] = ACTIONS(9622), + [aux_sym_file_access_token2] = ACTIONS(9622), + [aux_sym_file_lock_token2] = ACTIONS(9622), + [aux_sym_print_statement_token1] = ACTIONS(9622), + [anon_sym_PLUS] = ACTIONS(9624), + [anon_sym_DASH] = ACTIONS(9622), + [anon_sym_QMARK] = ACTIONS(9624), + [aux_sym_close_statement_token1] = ACTIONS(9622), + [aux_sym_put_statement_token1] = ACTIONS(9622), + [aux_sym_unlock_statement_token1] = ACTIONS(9622), + [aux_sym_seek_statement_token1] = ACTIONS(9622), + [sym_reset_statement] = ACTIONS(9622), + [aux_sym_raise_event_statement_token1] = ACTIONS(9622), + [sym_stop_statement] = ACTIONS(9622), + [sym_beep_statement] = ACTIONS(9622), + [aux_sym_unload_statement_token1] = ACTIONS(9622), + [aux_sym_def_type_statement_token1] = ACTIONS(9622), + [aux_sym_def_type_statement_token2] = ACTIONS(9622), + [aux_sym_def_type_statement_token3] = ACTIONS(9622), + [aux_sym_def_type_statement_token4] = ACTIONS(9622), + [aux_sym_def_type_statement_token5] = ACTIONS(9622), + [aux_sym_def_type_statement_token6] = ACTIONS(9622), + [aux_sym_def_type_statement_token7] = ACTIONS(9622), + [aux_sym_def_type_statement_token8] = ACTIONS(9622), + [aux_sym_def_type_statement_token9] = ACTIONS(9622), + [aux_sym_def_type_statement_token10] = ACTIONS(9622), + [aux_sym_def_type_statement_token11] = ACTIONS(9622), + [aux_sym_def_type_statement_token12] = ACTIONS(9622), + [aux_sym_def_type_statement_token13] = ACTIONS(9622), + [aux_sym_def_type_statement_token14] = ACTIONS(9622), + [aux_sym_call_statement_token1] = ACTIONS(9622), + [sym__ambiguous_call_statement] = ACTIONS(9622), + [aux_sym_addressof_expression_token1] = ACTIONS(9622), + [aux_sym_type_of_expression_token1] = ACTIONS(9622), + [aux_sym_unary_expression_token1] = ACTIONS(9622), + [sym_string_literal] = ACTIONS(9624), + [sym_number_literal] = ACTIONS(9624), + [aux_sym_boolean_literal_token1] = ACTIONS(9622), + [aux_sym_boolean_literal_token2] = ACTIONS(9622), + [sym_nothing_literal] = ACTIONS(9622), + [sym_null_literal] = ACTIONS(9622), + [sym_empty_literal] = ACTIONS(9622), + [sym_date_literal] = ACTIONS(9624), + [anon_sym_POUND] = ACTIONS(9622), + }, + [STATE(4562)] = { + [sym_identifier] = ACTIONS(9252), + [sym_newline] = ACTIONS(9254), + [anon_sym_COLON] = ACTIONS(9254), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9252), + [aux_sym_frm_property_statement_token1] = ACTIONS(9252), + [anon_sym_DOT] = ACTIONS(9252), + [anon_sym_BANG] = ACTIONS(9254), + [aux_sym__attribute_identifier_token1] = ACTIONS(9252), + [aux_sym_option_statement_token3] = ACTIONS(9252), + [aux_sym_type_declaration_token1] = ACTIONS(9252), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9252), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9252), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9252), + [aux_sym_enum_declaration_token1] = ACTIONS(9252), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9252), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9252), + [aux_sym_declare_function_statement_token1] = ACTIONS(9252), + [aux_sym_preprocessor_const_token1] = ACTIONS(9252), + [aux_sym__property_get_header_token1] = ACTIONS(9252), + [aux_sym_event_declaration_token1] = ACTIONS(9252), + [sym_static_modifier] = ACTIONS(9252), + [sym__dim_keyword] = ACTIONS(9252), + [sym__redim_keyword] = ACTIONS(9252), + [aux_sym_get_accessor_token1] = ACTIONS(9252), + [aux_sym_set_accessor_token1] = ACTIONS(9252), + [aux_sym_const_declaration_token1] = ACTIONS(9252), + [anon_sym_LPAREN] = ACTIONS(9254), + [aux_sym_as_type_clause_token2] = ACTIONS(9252), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9252), + [aux_sym_visibility_token1] = ACTIONS(9252), + [aux_sym_visibility_token2] = ACTIONS(9252), + [aux_sym_elseif_fragment_token1] = ACTIONS(9252), + [aux_sym_else_fragment_token1] = ACTIONS(9252), + [aux_sym_select_statement_token1] = ACTIONS(9252), + [aux_sym__for_header_token1] = ACTIONS(9252), + [aux_sym_do_statement_token1] = ACTIONS(9252), + [aux_sym_do_condition_token1] = ACTIONS(9252), + [aux_sym_with_statement_token1] = ACTIONS(9252), + [aux_sym_exit_statement_token1] = ACTIONS(9252), + [sym_end_statement] = ACTIONS(9254), + [aux_sym_on_goto_statement_token1] = ACTIONS(9252), + [aux_sym_on_goto_statement_token2] = ACTIONS(9252), + [aux_sym_on_error_statement_token2] = ACTIONS(9252), + [sym__ambiguous_redim_statement] = ACTIONS(9254), + [aux_sym_erase_statement_token1] = ACTIONS(9252), + [aux_sym_open_statement_token1] = ACTIONS(9252), + [aux_sym_file_mode_token2] = ACTIONS(9252), + [aux_sym_file_access_token2] = ACTIONS(9252), + [aux_sym_file_lock_token2] = ACTIONS(9252), + [aux_sym_print_statement_token1] = ACTIONS(9252), + [anon_sym_PLUS] = ACTIONS(9254), + [anon_sym_DASH] = ACTIONS(9252), + [anon_sym_QMARK] = ACTIONS(9254), + [aux_sym_close_statement_token1] = ACTIONS(9252), + [aux_sym_put_statement_token1] = ACTIONS(9252), + [aux_sym_unlock_statement_token1] = ACTIONS(9252), + [aux_sym_seek_statement_token1] = ACTIONS(9252), + [sym_reset_statement] = ACTIONS(9252), + [aux_sym_raise_event_statement_token1] = ACTIONS(9252), + [sym_stop_statement] = ACTIONS(9252), + [sym_beep_statement] = ACTIONS(9252), + [aux_sym_unload_statement_token1] = ACTIONS(9252), + [aux_sym_def_type_statement_token1] = ACTIONS(9252), + [aux_sym_def_type_statement_token2] = ACTIONS(9252), + [aux_sym_def_type_statement_token3] = ACTIONS(9252), + [aux_sym_def_type_statement_token4] = ACTIONS(9252), + [aux_sym_def_type_statement_token5] = ACTIONS(9252), + [aux_sym_def_type_statement_token6] = ACTIONS(9252), + [aux_sym_def_type_statement_token7] = ACTIONS(9252), + [aux_sym_def_type_statement_token8] = ACTIONS(9252), + [aux_sym_def_type_statement_token9] = ACTIONS(9252), + [aux_sym_def_type_statement_token10] = ACTIONS(9252), + [aux_sym_def_type_statement_token11] = ACTIONS(9252), + [aux_sym_def_type_statement_token12] = ACTIONS(9252), + [aux_sym_def_type_statement_token13] = ACTIONS(9252), + [aux_sym_def_type_statement_token14] = ACTIONS(9252), + [aux_sym_call_statement_token1] = ACTIONS(9252), + [sym__ambiguous_call_statement] = ACTIONS(9252), + [aux_sym_addressof_expression_token1] = ACTIONS(9252), + [aux_sym_type_of_expression_token1] = ACTIONS(9252), + [aux_sym_unary_expression_token1] = ACTIONS(9252), + [sym_string_literal] = ACTIONS(9254), + [sym_number_literal] = ACTIONS(9254), + [aux_sym_boolean_literal_token1] = ACTIONS(9252), + [aux_sym_boolean_literal_token2] = ACTIONS(9252), + [sym_nothing_literal] = ACTIONS(9252), + [sym_null_literal] = ACTIONS(9252), + [sym_empty_literal] = ACTIONS(9252), + [sym_date_literal] = ACTIONS(9254), + [anon_sym_POUND] = ACTIONS(9252), + }, + [STATE(4563)] = { + [sym_identifier] = ACTIONS(9146), + [sym_newline] = ACTIONS(9148), + [anon_sym_COLON] = ACTIONS(9148), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9146), + [aux_sym_frm_property_statement_token1] = ACTIONS(9146), + [anon_sym_DOT] = ACTIONS(9146), + [anon_sym_BANG] = ACTIONS(9148), + [aux_sym__attribute_identifier_token1] = ACTIONS(9146), + [aux_sym_option_statement_token3] = ACTIONS(9146), + [aux_sym_type_declaration_token1] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9146), + [aux_sym_enum_declaration_token1] = ACTIONS(9146), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9146), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9146), + [aux_sym_declare_function_statement_token1] = ACTIONS(9146), + [aux_sym_preprocessor_const_token1] = ACTIONS(9146), + [aux_sym__property_get_header_token1] = ACTIONS(9146), + [aux_sym_event_declaration_token1] = ACTIONS(9146), + [sym_static_modifier] = ACTIONS(9146), + [sym__dim_keyword] = ACTIONS(9146), + [sym__redim_keyword] = ACTIONS(9146), + [aux_sym_get_accessor_token1] = ACTIONS(9146), + [aux_sym_set_accessor_token1] = ACTIONS(9146), + [aux_sym_const_declaration_token1] = ACTIONS(9146), + [anon_sym_LPAREN] = ACTIONS(9148), + [aux_sym_as_type_clause_token2] = ACTIONS(9146), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9146), + [aux_sym_visibility_token1] = ACTIONS(9146), + [aux_sym_visibility_token2] = ACTIONS(9146), + [aux_sym_elseif_fragment_token1] = ACTIONS(9146), + [aux_sym_else_fragment_token1] = ACTIONS(9146), + [aux_sym_select_statement_token1] = ACTIONS(9146), + [aux_sym__for_header_token1] = ACTIONS(9146), + [aux_sym_do_statement_token1] = ACTIONS(9146), + [aux_sym_do_condition_token1] = ACTIONS(9146), + [aux_sym_with_statement_token1] = ACTIONS(9146), + [aux_sym_exit_statement_token1] = ACTIONS(9146), + [sym_end_statement] = ACTIONS(9148), + [aux_sym_on_goto_statement_token1] = ACTIONS(9146), + [aux_sym_on_goto_statement_token2] = ACTIONS(9146), + [aux_sym_on_error_statement_token2] = ACTIONS(9146), + [sym__ambiguous_redim_statement] = ACTIONS(9148), + [aux_sym_erase_statement_token1] = ACTIONS(9146), + [aux_sym_open_statement_token1] = ACTIONS(9146), + [aux_sym_file_mode_token2] = ACTIONS(9146), + [aux_sym_file_access_token2] = ACTIONS(9146), + [aux_sym_file_lock_token2] = ACTIONS(9146), + [aux_sym_print_statement_token1] = ACTIONS(9146), + [anon_sym_PLUS] = ACTIONS(9148), + [anon_sym_DASH] = ACTIONS(9146), + [anon_sym_QMARK] = ACTIONS(9148), + [aux_sym_close_statement_token1] = ACTIONS(9146), + [aux_sym_put_statement_token1] = ACTIONS(9146), + [aux_sym_unlock_statement_token1] = ACTIONS(9146), + [aux_sym_seek_statement_token1] = ACTIONS(9146), + [sym_reset_statement] = ACTIONS(9146), + [aux_sym_raise_event_statement_token1] = ACTIONS(9146), + [sym_stop_statement] = ACTIONS(9146), + [sym_beep_statement] = ACTIONS(9146), + [aux_sym_unload_statement_token1] = ACTIONS(9146), + [aux_sym_def_type_statement_token1] = ACTIONS(9146), + [aux_sym_def_type_statement_token2] = ACTIONS(9146), + [aux_sym_def_type_statement_token3] = ACTIONS(9146), + [aux_sym_def_type_statement_token4] = ACTIONS(9146), + [aux_sym_def_type_statement_token5] = ACTIONS(9146), + [aux_sym_def_type_statement_token6] = ACTIONS(9146), + [aux_sym_def_type_statement_token7] = ACTIONS(9146), + [aux_sym_def_type_statement_token8] = ACTIONS(9146), + [aux_sym_def_type_statement_token9] = ACTIONS(9146), + [aux_sym_def_type_statement_token10] = ACTIONS(9146), + [aux_sym_def_type_statement_token11] = ACTIONS(9146), + [aux_sym_def_type_statement_token12] = ACTIONS(9146), + [aux_sym_def_type_statement_token13] = ACTIONS(9146), + [aux_sym_def_type_statement_token14] = ACTIONS(9146), + [aux_sym_call_statement_token1] = ACTIONS(9146), + [sym__ambiguous_call_statement] = ACTIONS(9146), + [aux_sym_addressof_expression_token1] = ACTIONS(9146), + [aux_sym_type_of_expression_token1] = ACTIONS(9146), + [aux_sym_unary_expression_token1] = ACTIONS(9146), + [sym_string_literal] = ACTIONS(9148), + [sym_number_literal] = ACTIONS(9148), + [aux_sym_boolean_literal_token1] = ACTIONS(9146), + [aux_sym_boolean_literal_token2] = ACTIONS(9146), + [sym_nothing_literal] = ACTIONS(9146), + [sym_null_literal] = ACTIONS(9146), + [sym_empty_literal] = ACTIONS(9146), + [sym_date_literal] = ACTIONS(9148), + [anon_sym_POUND] = ACTIONS(9146), + }, + [STATE(4564)] = { + [sym_identifier] = ACTIONS(9122), + [sym_newline] = ACTIONS(9124), + [anon_sym_COLON] = ACTIONS(9124), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9122), + [aux_sym_frm_property_statement_token1] = ACTIONS(9122), + [anon_sym_DOT] = ACTIONS(9122), + [anon_sym_BANG] = ACTIONS(9124), + [aux_sym__attribute_identifier_token1] = ACTIONS(9122), + [aux_sym_option_statement_token3] = ACTIONS(9122), + [aux_sym_type_declaration_token1] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9122), + [aux_sym_enum_declaration_token1] = ACTIONS(9122), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9122), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9122), + [aux_sym_declare_function_statement_token1] = ACTIONS(9122), + [aux_sym_preprocessor_const_token1] = ACTIONS(9122), + [aux_sym__property_get_header_token1] = ACTIONS(9122), + [aux_sym_event_declaration_token1] = ACTIONS(9122), + [sym_static_modifier] = ACTIONS(9122), + [sym__dim_keyword] = ACTIONS(9122), + [sym__redim_keyword] = ACTIONS(9122), + [aux_sym_get_accessor_token1] = ACTIONS(9122), + [aux_sym_set_accessor_token1] = ACTIONS(9122), + [aux_sym_const_declaration_token1] = ACTIONS(9122), + [anon_sym_LPAREN] = ACTIONS(9124), + [aux_sym_as_type_clause_token2] = ACTIONS(9122), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9122), + [aux_sym_visibility_token1] = ACTIONS(9122), + [aux_sym_visibility_token2] = ACTIONS(9122), + [aux_sym_elseif_fragment_token1] = ACTIONS(9122), + [aux_sym_else_fragment_token1] = ACTIONS(9122), + [aux_sym_select_statement_token1] = ACTIONS(9122), + [aux_sym__for_header_token1] = ACTIONS(9122), + [aux_sym_do_statement_token1] = ACTIONS(9122), + [aux_sym_do_condition_token1] = ACTIONS(9122), + [aux_sym_with_statement_token1] = ACTIONS(9122), + [aux_sym_exit_statement_token1] = ACTIONS(9122), + [sym_end_statement] = ACTIONS(9124), + [aux_sym_on_goto_statement_token1] = ACTIONS(9122), + [aux_sym_on_goto_statement_token2] = ACTIONS(9122), + [aux_sym_on_error_statement_token2] = ACTIONS(9122), + [sym__ambiguous_redim_statement] = ACTIONS(9124), + [aux_sym_erase_statement_token1] = ACTIONS(9122), + [aux_sym_open_statement_token1] = ACTIONS(9122), + [aux_sym_file_mode_token2] = ACTIONS(9122), + [aux_sym_file_access_token2] = ACTIONS(9122), + [aux_sym_file_lock_token2] = ACTIONS(9122), + [aux_sym_print_statement_token1] = ACTIONS(9122), + [anon_sym_PLUS] = ACTIONS(9124), + [anon_sym_DASH] = ACTIONS(9122), + [anon_sym_QMARK] = ACTIONS(9124), + [aux_sym_close_statement_token1] = ACTIONS(9122), + [aux_sym_put_statement_token1] = ACTIONS(9122), + [aux_sym_unlock_statement_token1] = ACTIONS(9122), + [aux_sym_seek_statement_token1] = ACTIONS(9122), + [sym_reset_statement] = ACTIONS(9122), + [aux_sym_raise_event_statement_token1] = ACTIONS(9122), + [sym_stop_statement] = ACTIONS(9122), + [sym_beep_statement] = ACTIONS(9122), + [aux_sym_unload_statement_token1] = ACTIONS(9122), + [aux_sym_def_type_statement_token1] = ACTIONS(9122), + [aux_sym_def_type_statement_token2] = ACTIONS(9122), + [aux_sym_def_type_statement_token3] = ACTIONS(9122), + [aux_sym_def_type_statement_token4] = ACTIONS(9122), + [aux_sym_def_type_statement_token5] = ACTIONS(9122), + [aux_sym_def_type_statement_token6] = ACTIONS(9122), + [aux_sym_def_type_statement_token7] = ACTIONS(9122), + [aux_sym_def_type_statement_token8] = ACTIONS(9122), + [aux_sym_def_type_statement_token9] = ACTIONS(9122), + [aux_sym_def_type_statement_token10] = ACTIONS(9122), + [aux_sym_def_type_statement_token11] = ACTIONS(9122), + [aux_sym_def_type_statement_token12] = ACTIONS(9122), + [aux_sym_def_type_statement_token13] = ACTIONS(9122), + [aux_sym_def_type_statement_token14] = ACTIONS(9122), + [aux_sym_call_statement_token1] = ACTIONS(9122), + [sym__ambiguous_call_statement] = ACTIONS(9122), + [aux_sym_addressof_expression_token1] = ACTIONS(9122), + [aux_sym_type_of_expression_token1] = ACTIONS(9122), + [aux_sym_unary_expression_token1] = ACTIONS(9122), + [sym_string_literal] = ACTIONS(9124), + [sym_number_literal] = ACTIONS(9124), + [aux_sym_boolean_literal_token1] = ACTIONS(9122), + [aux_sym_boolean_literal_token2] = ACTIONS(9122), + [sym_nothing_literal] = ACTIONS(9122), + [sym_null_literal] = ACTIONS(9122), + [sym_empty_literal] = ACTIONS(9122), + [sym_date_literal] = ACTIONS(9124), + [anon_sym_POUND] = ACTIONS(9122), + }, + [STATE(4565)] = { + [sym_identifier] = ACTIONS(9126), + [sym_newline] = ACTIONS(9128), + [anon_sym_COLON] = ACTIONS(9128), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9126), + [aux_sym_frm_property_statement_token1] = ACTIONS(9126), + [anon_sym_DOT] = ACTIONS(9126), + [anon_sym_BANG] = ACTIONS(9128), + [aux_sym__attribute_identifier_token1] = ACTIONS(9126), + [aux_sym_option_statement_token3] = ACTIONS(9126), + [aux_sym_type_declaration_token1] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9126), + [aux_sym_enum_declaration_token1] = ACTIONS(9126), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9126), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9126), + [aux_sym_declare_function_statement_token1] = ACTIONS(9126), + [aux_sym_preprocessor_const_token1] = ACTIONS(9126), + [aux_sym__property_get_header_token1] = ACTIONS(9126), + [aux_sym_event_declaration_token1] = ACTIONS(9126), + [sym_static_modifier] = ACTIONS(9126), + [sym__dim_keyword] = ACTIONS(9126), + [sym__redim_keyword] = ACTIONS(9126), + [aux_sym_get_accessor_token1] = ACTIONS(9126), + [aux_sym_set_accessor_token1] = ACTIONS(9126), + [aux_sym_const_declaration_token1] = ACTIONS(9126), + [anon_sym_LPAREN] = ACTIONS(9128), + [aux_sym_as_type_clause_token2] = ACTIONS(9126), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9126), + [aux_sym_visibility_token1] = ACTIONS(9126), + [aux_sym_visibility_token2] = ACTIONS(9126), + [aux_sym_elseif_fragment_token1] = ACTIONS(9126), + [aux_sym_else_fragment_token1] = ACTIONS(9126), + [aux_sym_select_statement_token1] = ACTIONS(9126), + [aux_sym__for_header_token1] = ACTIONS(9126), + [aux_sym_do_statement_token1] = ACTIONS(9126), + [aux_sym_do_condition_token1] = ACTIONS(9126), + [aux_sym_with_statement_token1] = ACTIONS(9126), + [aux_sym_exit_statement_token1] = ACTIONS(9126), + [sym_end_statement] = ACTIONS(9128), + [aux_sym_on_goto_statement_token1] = ACTIONS(9126), + [aux_sym_on_goto_statement_token2] = ACTIONS(9126), + [aux_sym_on_error_statement_token2] = ACTIONS(9126), + [sym__ambiguous_redim_statement] = ACTIONS(9128), + [aux_sym_erase_statement_token1] = ACTIONS(9126), + [aux_sym_open_statement_token1] = ACTIONS(9126), + [aux_sym_file_mode_token2] = ACTIONS(9126), + [aux_sym_file_access_token2] = ACTIONS(9126), + [aux_sym_file_lock_token2] = ACTIONS(9126), + [aux_sym_print_statement_token1] = ACTIONS(9126), + [anon_sym_PLUS] = ACTIONS(9128), + [anon_sym_DASH] = ACTIONS(9126), + [anon_sym_QMARK] = ACTIONS(9128), + [aux_sym_close_statement_token1] = ACTIONS(9126), + [aux_sym_put_statement_token1] = ACTIONS(9126), + [aux_sym_unlock_statement_token1] = ACTIONS(9126), + [aux_sym_seek_statement_token1] = ACTIONS(9126), + [sym_reset_statement] = ACTIONS(9126), + [aux_sym_raise_event_statement_token1] = ACTIONS(9126), + [sym_stop_statement] = ACTIONS(9126), + [sym_beep_statement] = ACTIONS(9126), + [aux_sym_unload_statement_token1] = ACTIONS(9126), + [aux_sym_def_type_statement_token1] = ACTIONS(9126), + [aux_sym_def_type_statement_token2] = ACTIONS(9126), + [aux_sym_def_type_statement_token3] = ACTIONS(9126), + [aux_sym_def_type_statement_token4] = ACTIONS(9126), + [aux_sym_def_type_statement_token5] = ACTIONS(9126), + [aux_sym_def_type_statement_token6] = ACTIONS(9126), + [aux_sym_def_type_statement_token7] = ACTIONS(9126), + [aux_sym_def_type_statement_token8] = ACTIONS(9126), + [aux_sym_def_type_statement_token9] = ACTIONS(9126), + [aux_sym_def_type_statement_token10] = ACTIONS(9126), + [aux_sym_def_type_statement_token11] = ACTIONS(9126), + [aux_sym_def_type_statement_token12] = ACTIONS(9126), + [aux_sym_def_type_statement_token13] = ACTIONS(9126), + [aux_sym_def_type_statement_token14] = ACTIONS(9126), + [aux_sym_call_statement_token1] = ACTIONS(9126), + [sym__ambiguous_call_statement] = ACTIONS(9126), + [aux_sym_addressof_expression_token1] = ACTIONS(9126), + [aux_sym_type_of_expression_token1] = ACTIONS(9126), + [aux_sym_unary_expression_token1] = ACTIONS(9126), + [sym_string_literal] = ACTIONS(9128), + [sym_number_literal] = ACTIONS(9128), + [aux_sym_boolean_literal_token1] = ACTIONS(9126), + [aux_sym_boolean_literal_token2] = ACTIONS(9126), + [sym_nothing_literal] = ACTIONS(9126), + [sym_null_literal] = ACTIONS(9126), + [sym_empty_literal] = ACTIONS(9126), + [sym_date_literal] = ACTIONS(9128), + [anon_sym_POUND] = ACTIONS(9126), + }, + [STATE(4566)] = { + [sym_identifier] = ACTIONS(9130), + [sym_newline] = ACTIONS(9132), + [anon_sym_COLON] = ACTIONS(9132), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9130), + [aux_sym_frm_property_statement_token1] = ACTIONS(9130), + [anon_sym_DOT] = ACTIONS(9130), + [anon_sym_BANG] = ACTIONS(9132), + [aux_sym__attribute_identifier_token1] = ACTIONS(9130), + [aux_sym_option_statement_token3] = ACTIONS(9130), + [aux_sym_type_declaration_token1] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9130), + [aux_sym_enum_declaration_token1] = ACTIONS(9130), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9130), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9130), + [aux_sym_declare_function_statement_token1] = ACTIONS(9130), + [aux_sym_preprocessor_const_token1] = ACTIONS(9130), + [aux_sym__property_get_header_token1] = ACTIONS(9130), + [aux_sym_event_declaration_token1] = ACTIONS(9130), + [sym_static_modifier] = ACTIONS(9130), + [sym__dim_keyword] = ACTIONS(9130), + [sym__redim_keyword] = ACTIONS(9130), + [aux_sym_get_accessor_token1] = ACTIONS(9130), + [aux_sym_set_accessor_token1] = ACTIONS(9130), + [aux_sym_const_declaration_token1] = ACTIONS(9130), + [anon_sym_LPAREN] = ACTIONS(9132), + [aux_sym_as_type_clause_token2] = ACTIONS(9130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9130), + [aux_sym_visibility_token1] = ACTIONS(9130), + [aux_sym_visibility_token2] = ACTIONS(9130), + [aux_sym_elseif_fragment_token1] = ACTIONS(9130), + [aux_sym_else_fragment_token1] = ACTIONS(9130), + [aux_sym_select_statement_token1] = ACTIONS(9130), + [aux_sym__for_header_token1] = ACTIONS(9130), + [aux_sym_do_statement_token1] = ACTIONS(9130), + [aux_sym_do_condition_token1] = ACTIONS(9130), + [aux_sym_with_statement_token1] = ACTIONS(9130), + [aux_sym_exit_statement_token1] = ACTIONS(9130), + [sym_end_statement] = ACTIONS(9132), + [aux_sym_on_goto_statement_token1] = ACTIONS(9130), + [aux_sym_on_goto_statement_token2] = ACTIONS(9130), + [aux_sym_on_error_statement_token2] = ACTIONS(9130), + [sym__ambiguous_redim_statement] = ACTIONS(9132), + [aux_sym_erase_statement_token1] = ACTIONS(9130), + [aux_sym_open_statement_token1] = ACTIONS(9130), + [aux_sym_file_mode_token2] = ACTIONS(9130), + [aux_sym_file_access_token2] = ACTIONS(9130), + [aux_sym_file_lock_token2] = ACTIONS(9130), + [aux_sym_print_statement_token1] = ACTIONS(9130), + [anon_sym_PLUS] = ACTIONS(9132), + [anon_sym_DASH] = ACTIONS(9130), + [anon_sym_QMARK] = ACTIONS(9132), + [aux_sym_close_statement_token1] = ACTIONS(9130), + [aux_sym_put_statement_token1] = ACTIONS(9130), + [aux_sym_unlock_statement_token1] = ACTIONS(9130), + [aux_sym_seek_statement_token1] = ACTIONS(9130), + [sym_reset_statement] = ACTIONS(9130), + [aux_sym_raise_event_statement_token1] = ACTIONS(9130), + [sym_stop_statement] = ACTIONS(9130), + [sym_beep_statement] = ACTIONS(9130), + [aux_sym_unload_statement_token1] = ACTIONS(9130), + [aux_sym_def_type_statement_token1] = ACTIONS(9130), + [aux_sym_def_type_statement_token2] = ACTIONS(9130), + [aux_sym_def_type_statement_token3] = ACTIONS(9130), + [aux_sym_def_type_statement_token4] = ACTIONS(9130), + [aux_sym_def_type_statement_token5] = ACTIONS(9130), + [aux_sym_def_type_statement_token6] = ACTIONS(9130), + [aux_sym_def_type_statement_token7] = ACTIONS(9130), + [aux_sym_def_type_statement_token8] = ACTIONS(9130), + [aux_sym_def_type_statement_token9] = ACTIONS(9130), + [aux_sym_def_type_statement_token10] = ACTIONS(9130), + [aux_sym_def_type_statement_token11] = ACTIONS(9130), + [aux_sym_def_type_statement_token12] = ACTIONS(9130), + [aux_sym_def_type_statement_token13] = ACTIONS(9130), + [aux_sym_def_type_statement_token14] = ACTIONS(9130), + [aux_sym_call_statement_token1] = ACTIONS(9130), + [sym__ambiguous_call_statement] = ACTIONS(9130), + [aux_sym_addressof_expression_token1] = ACTIONS(9130), + [aux_sym_type_of_expression_token1] = ACTIONS(9130), + [aux_sym_unary_expression_token1] = ACTIONS(9130), + [sym_string_literal] = ACTIONS(9132), + [sym_number_literal] = ACTIONS(9132), + [aux_sym_boolean_literal_token1] = ACTIONS(9130), + [aux_sym_boolean_literal_token2] = ACTIONS(9130), + [sym_nothing_literal] = ACTIONS(9130), + [sym_null_literal] = ACTIONS(9130), + [sym_empty_literal] = ACTIONS(9130), + [sym_date_literal] = ACTIONS(9132), + [anon_sym_POUND] = ACTIONS(9130), + }, + [STATE(4567)] = { + [sym_identifier] = ACTIONS(9134), + [sym_newline] = ACTIONS(9136), + [anon_sym_COLON] = ACTIONS(9136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9134), + [aux_sym_frm_property_statement_token1] = ACTIONS(9134), + [anon_sym_DOT] = ACTIONS(9134), + [anon_sym_BANG] = ACTIONS(9136), + [aux_sym__attribute_identifier_token1] = ACTIONS(9134), + [aux_sym_option_statement_token3] = ACTIONS(9134), + [aux_sym_type_declaration_token1] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9134), + [aux_sym_enum_declaration_token1] = ACTIONS(9134), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9134), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9134), + [aux_sym_declare_function_statement_token1] = ACTIONS(9134), + [aux_sym_preprocessor_const_token1] = ACTIONS(9134), + [aux_sym__property_get_header_token1] = ACTIONS(9134), + [aux_sym_event_declaration_token1] = ACTIONS(9134), + [sym_static_modifier] = ACTIONS(9134), + [sym__dim_keyword] = ACTIONS(9134), + [sym__redim_keyword] = ACTIONS(9134), + [aux_sym_get_accessor_token1] = ACTIONS(9134), + [aux_sym_set_accessor_token1] = ACTIONS(9134), + [aux_sym_const_declaration_token1] = ACTIONS(9134), + [anon_sym_LPAREN] = ACTIONS(9136), + [aux_sym_as_type_clause_token2] = ACTIONS(9134), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9134), + [aux_sym_visibility_token1] = ACTIONS(9134), + [aux_sym_visibility_token2] = ACTIONS(9134), + [aux_sym_elseif_fragment_token1] = ACTIONS(9134), + [aux_sym_else_fragment_token1] = ACTIONS(9134), + [aux_sym_select_statement_token1] = ACTIONS(9134), + [aux_sym__for_header_token1] = ACTIONS(9134), + [aux_sym_do_statement_token1] = ACTIONS(9134), + [aux_sym_do_condition_token1] = ACTIONS(9134), + [aux_sym_with_statement_token1] = ACTIONS(9134), + [aux_sym_exit_statement_token1] = ACTIONS(9134), + [sym_end_statement] = ACTIONS(9136), + [aux_sym_on_goto_statement_token1] = ACTIONS(9134), + [aux_sym_on_goto_statement_token2] = ACTIONS(9134), + [aux_sym_on_error_statement_token2] = ACTIONS(9134), + [sym__ambiguous_redim_statement] = ACTIONS(9136), + [aux_sym_erase_statement_token1] = ACTIONS(9134), + [aux_sym_open_statement_token1] = ACTIONS(9134), + [aux_sym_file_mode_token2] = ACTIONS(9134), + [aux_sym_file_access_token2] = ACTIONS(9134), + [aux_sym_file_lock_token2] = ACTIONS(9134), + [aux_sym_print_statement_token1] = ACTIONS(9134), + [anon_sym_PLUS] = ACTIONS(9136), + [anon_sym_DASH] = ACTIONS(9134), + [anon_sym_QMARK] = ACTIONS(9136), + [aux_sym_close_statement_token1] = ACTIONS(9134), + [aux_sym_put_statement_token1] = ACTIONS(9134), + [aux_sym_unlock_statement_token1] = ACTIONS(9134), + [aux_sym_seek_statement_token1] = ACTIONS(9134), + [sym_reset_statement] = ACTIONS(9134), + [aux_sym_raise_event_statement_token1] = ACTIONS(9134), + [sym_stop_statement] = ACTIONS(9134), + [sym_beep_statement] = ACTIONS(9134), + [aux_sym_unload_statement_token1] = ACTIONS(9134), + [aux_sym_def_type_statement_token1] = ACTIONS(9134), + [aux_sym_def_type_statement_token2] = ACTIONS(9134), + [aux_sym_def_type_statement_token3] = ACTIONS(9134), + [aux_sym_def_type_statement_token4] = ACTIONS(9134), + [aux_sym_def_type_statement_token5] = ACTIONS(9134), + [aux_sym_def_type_statement_token6] = ACTIONS(9134), + [aux_sym_def_type_statement_token7] = ACTIONS(9134), + [aux_sym_def_type_statement_token8] = ACTIONS(9134), + [aux_sym_def_type_statement_token9] = ACTIONS(9134), + [aux_sym_def_type_statement_token10] = ACTIONS(9134), + [aux_sym_def_type_statement_token11] = ACTIONS(9134), + [aux_sym_def_type_statement_token12] = ACTIONS(9134), + [aux_sym_def_type_statement_token13] = ACTIONS(9134), + [aux_sym_def_type_statement_token14] = ACTIONS(9134), + [aux_sym_call_statement_token1] = ACTIONS(9134), + [sym__ambiguous_call_statement] = ACTIONS(9134), + [aux_sym_addressof_expression_token1] = ACTIONS(9134), + [aux_sym_type_of_expression_token1] = ACTIONS(9134), + [aux_sym_unary_expression_token1] = ACTIONS(9134), + [sym_string_literal] = ACTIONS(9136), + [sym_number_literal] = ACTIONS(9136), + [aux_sym_boolean_literal_token1] = ACTIONS(9134), + [aux_sym_boolean_literal_token2] = ACTIONS(9134), + [sym_nothing_literal] = ACTIONS(9134), + [sym_null_literal] = ACTIONS(9134), + [sym_empty_literal] = ACTIONS(9134), + [sym_date_literal] = ACTIONS(9136), + [anon_sym_POUND] = ACTIONS(9134), + }, + [STATE(4568)] = { + [sym_identifier] = ACTIONS(8809), + [sym_newline] = ACTIONS(8811), + [anon_sym_COLON] = ACTIONS(8811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8809), + [aux_sym_frm_property_statement_token1] = ACTIONS(8809), + [anon_sym_DOT] = ACTIONS(8809), + [anon_sym_BANG] = ACTIONS(8811), + [aux_sym__attribute_identifier_token1] = ACTIONS(8809), + [aux_sym_option_statement_token3] = ACTIONS(8809), + [aux_sym_type_declaration_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8809), + [aux_sym_enum_declaration_token1] = ACTIONS(8809), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8809), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8809), + [aux_sym_declare_function_statement_token1] = ACTIONS(8809), + [aux_sym_preprocessor_const_token1] = ACTIONS(8809), + [aux_sym__property_get_header_token1] = ACTIONS(8809), + [aux_sym_event_declaration_token1] = ACTIONS(8809), + [sym_static_modifier] = ACTIONS(8809), + [sym__dim_keyword] = ACTIONS(8809), + [sym__redim_keyword] = ACTIONS(8809), + [aux_sym_get_accessor_token1] = ACTIONS(8809), + [aux_sym_set_accessor_token1] = ACTIONS(8809), + [aux_sym_const_declaration_token1] = ACTIONS(8809), + [anon_sym_LPAREN] = ACTIONS(8811), + [aux_sym_as_type_clause_token2] = ACTIONS(8809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8809), + [aux_sym_visibility_token1] = ACTIONS(8809), + [aux_sym_visibility_token2] = ACTIONS(8809), + [aux_sym_elseif_fragment_token1] = ACTIONS(8809), + [aux_sym_else_fragment_token1] = ACTIONS(8809), + [aux_sym_select_statement_token1] = ACTIONS(8809), + [aux_sym__for_header_token1] = ACTIONS(8809), + [aux_sym_do_statement_token1] = ACTIONS(8809), + [aux_sym_do_condition_token1] = ACTIONS(8809), + [aux_sym_with_statement_token1] = ACTIONS(8809), + [aux_sym_exit_statement_token1] = ACTIONS(8809), + [sym_end_statement] = ACTIONS(8811), + [aux_sym_on_goto_statement_token1] = ACTIONS(8809), + [aux_sym_on_goto_statement_token2] = ACTIONS(8809), + [aux_sym_on_error_statement_token2] = ACTIONS(8809), + [sym__ambiguous_redim_statement] = ACTIONS(8811), + [aux_sym_erase_statement_token1] = ACTIONS(8809), + [aux_sym_open_statement_token1] = ACTIONS(8809), + [aux_sym_file_mode_token2] = ACTIONS(8809), + [aux_sym_file_access_token2] = ACTIONS(8809), + [aux_sym_file_lock_token2] = ACTIONS(8809), + [aux_sym_print_statement_token1] = ACTIONS(8809), + [anon_sym_PLUS] = ACTIONS(8811), + [anon_sym_DASH] = ACTIONS(8809), + [anon_sym_QMARK] = ACTIONS(8811), + [aux_sym_close_statement_token1] = ACTIONS(8809), + [aux_sym_put_statement_token1] = ACTIONS(8809), + [aux_sym_unlock_statement_token1] = ACTIONS(8809), + [aux_sym_seek_statement_token1] = ACTIONS(8809), + [sym_reset_statement] = ACTIONS(8809), + [aux_sym_raise_event_statement_token1] = ACTIONS(8809), + [sym_stop_statement] = ACTIONS(8809), + [sym_beep_statement] = ACTIONS(8809), + [aux_sym_unload_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token2] = ACTIONS(8809), + [aux_sym_def_type_statement_token3] = ACTIONS(8809), + [aux_sym_def_type_statement_token4] = ACTIONS(8809), + [aux_sym_def_type_statement_token5] = ACTIONS(8809), + [aux_sym_def_type_statement_token6] = ACTIONS(8809), + [aux_sym_def_type_statement_token7] = ACTIONS(8809), + [aux_sym_def_type_statement_token8] = ACTIONS(8809), + [aux_sym_def_type_statement_token9] = ACTIONS(8809), + [aux_sym_def_type_statement_token10] = ACTIONS(8809), + [aux_sym_def_type_statement_token11] = ACTIONS(8809), + [aux_sym_def_type_statement_token12] = ACTIONS(8809), + [aux_sym_def_type_statement_token13] = ACTIONS(8809), + [aux_sym_def_type_statement_token14] = ACTIONS(8809), + [aux_sym_call_statement_token1] = ACTIONS(8809), + [sym__ambiguous_call_statement] = ACTIONS(8809), + [aux_sym_addressof_expression_token1] = ACTIONS(8809), + [aux_sym_type_of_expression_token1] = ACTIONS(8809), + [aux_sym_unary_expression_token1] = ACTIONS(8809), + [sym_string_literal] = ACTIONS(8811), + [sym_number_literal] = ACTIONS(8811), + [aux_sym_boolean_literal_token1] = ACTIONS(8809), + [aux_sym_boolean_literal_token2] = ACTIONS(8809), + [sym_nothing_literal] = ACTIONS(8809), + [sym_null_literal] = ACTIONS(8809), + [sym_empty_literal] = ACTIONS(8809), + [sym_date_literal] = ACTIONS(8811), + [anon_sym_POUND] = ACTIONS(8809), + }, + [STATE(4569)] = { + [sym_identifier] = ACTIONS(8877), + [sym_newline] = ACTIONS(8879), + [anon_sym_COLON] = ACTIONS(8879), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8877), + [aux_sym_frm_property_statement_token1] = ACTIONS(8877), + [anon_sym_DOT] = ACTIONS(8877), + [anon_sym_BANG] = ACTIONS(8879), + [aux_sym__attribute_identifier_token1] = ACTIONS(8877), + [aux_sym_option_statement_token3] = ACTIONS(8877), + [aux_sym_type_declaration_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8877), + [aux_sym_enum_declaration_token1] = ACTIONS(8877), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8877), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8877), + [aux_sym_declare_function_statement_token1] = ACTIONS(8877), + [aux_sym_preprocessor_const_token1] = ACTIONS(8877), + [aux_sym__property_get_header_token1] = ACTIONS(8877), + [aux_sym_event_declaration_token1] = ACTIONS(8877), + [sym_static_modifier] = ACTIONS(8877), + [sym__dim_keyword] = ACTIONS(8877), + [sym__redim_keyword] = ACTIONS(8877), + [aux_sym_get_accessor_token1] = ACTIONS(8877), + [aux_sym_set_accessor_token1] = ACTIONS(8877), + [aux_sym_const_declaration_token1] = ACTIONS(8877), + [anon_sym_LPAREN] = ACTIONS(8879), + [aux_sym_as_type_clause_token2] = ACTIONS(8877), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8877), + [aux_sym_visibility_token1] = ACTIONS(8877), + [aux_sym_visibility_token2] = ACTIONS(8877), + [aux_sym_elseif_fragment_token1] = ACTIONS(8877), + [aux_sym_else_fragment_token1] = ACTIONS(8877), + [aux_sym_select_statement_token1] = ACTIONS(8877), + [aux_sym__for_header_token1] = ACTIONS(8877), + [aux_sym_do_statement_token1] = ACTIONS(8877), + [aux_sym_do_condition_token1] = ACTIONS(8877), + [aux_sym_with_statement_token1] = ACTIONS(8877), + [aux_sym_exit_statement_token1] = ACTIONS(8877), + [sym_end_statement] = ACTIONS(8879), + [aux_sym_on_goto_statement_token1] = ACTIONS(8877), + [aux_sym_on_goto_statement_token2] = ACTIONS(8877), + [aux_sym_on_error_statement_token2] = ACTIONS(8877), + [sym__ambiguous_redim_statement] = ACTIONS(8879), + [aux_sym_erase_statement_token1] = ACTIONS(8877), + [aux_sym_open_statement_token1] = ACTIONS(8877), + [aux_sym_file_mode_token2] = ACTIONS(8877), + [aux_sym_file_access_token2] = ACTIONS(8877), + [aux_sym_file_lock_token2] = ACTIONS(8877), + [aux_sym_print_statement_token1] = ACTIONS(8877), + [anon_sym_PLUS] = ACTIONS(8879), + [anon_sym_DASH] = ACTIONS(8877), + [anon_sym_QMARK] = ACTIONS(8879), + [aux_sym_close_statement_token1] = ACTIONS(8877), + [aux_sym_put_statement_token1] = ACTIONS(8877), + [aux_sym_unlock_statement_token1] = ACTIONS(8877), + [aux_sym_seek_statement_token1] = ACTIONS(8877), + [sym_reset_statement] = ACTIONS(8877), + [aux_sym_raise_event_statement_token1] = ACTIONS(8877), + [sym_stop_statement] = ACTIONS(8877), + [sym_beep_statement] = ACTIONS(8877), + [aux_sym_unload_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token2] = ACTIONS(8877), + [aux_sym_def_type_statement_token3] = ACTIONS(8877), + [aux_sym_def_type_statement_token4] = ACTIONS(8877), + [aux_sym_def_type_statement_token5] = ACTIONS(8877), + [aux_sym_def_type_statement_token6] = ACTIONS(8877), + [aux_sym_def_type_statement_token7] = ACTIONS(8877), + [aux_sym_def_type_statement_token8] = ACTIONS(8877), + [aux_sym_def_type_statement_token9] = ACTIONS(8877), + [aux_sym_def_type_statement_token10] = ACTIONS(8877), + [aux_sym_def_type_statement_token11] = ACTIONS(8877), + [aux_sym_def_type_statement_token12] = ACTIONS(8877), + [aux_sym_def_type_statement_token13] = ACTIONS(8877), + [aux_sym_def_type_statement_token14] = ACTIONS(8877), + [aux_sym_call_statement_token1] = ACTIONS(8877), + [sym__ambiguous_call_statement] = ACTIONS(8877), + [aux_sym_addressof_expression_token1] = ACTIONS(8877), + [aux_sym_type_of_expression_token1] = ACTIONS(8877), + [aux_sym_unary_expression_token1] = ACTIONS(8877), + [sym_string_literal] = ACTIONS(8879), + [sym_number_literal] = ACTIONS(8879), + [aux_sym_boolean_literal_token1] = ACTIONS(8877), + [aux_sym_boolean_literal_token2] = ACTIONS(8877), + [sym_nothing_literal] = ACTIONS(8877), + [sym_null_literal] = ACTIONS(8877), + [sym_empty_literal] = ACTIONS(8877), + [sym_date_literal] = ACTIONS(8879), + [anon_sym_POUND] = ACTIONS(8877), + }, + [STATE(4570)] = { + [sym_identifier] = ACTIONS(9138), + [sym_newline] = ACTIONS(9140), + [anon_sym_COLON] = ACTIONS(9140), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9138), + [aux_sym_frm_property_statement_token1] = ACTIONS(9138), + [anon_sym_DOT] = ACTIONS(9138), + [anon_sym_BANG] = ACTIONS(9140), + [aux_sym__attribute_identifier_token1] = ACTIONS(9138), + [aux_sym_option_statement_token3] = ACTIONS(9138), + [aux_sym_type_declaration_token1] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9138), + [aux_sym_enum_declaration_token1] = ACTIONS(9138), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9138), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9138), + [aux_sym_declare_function_statement_token1] = ACTIONS(9138), + [aux_sym_preprocessor_const_token1] = ACTIONS(9138), + [aux_sym__property_get_header_token1] = ACTIONS(9138), + [aux_sym_event_declaration_token1] = ACTIONS(9138), + [sym_static_modifier] = ACTIONS(9138), + [sym__dim_keyword] = ACTIONS(9138), + [sym__redim_keyword] = ACTIONS(9138), + [aux_sym_get_accessor_token1] = ACTIONS(9138), + [aux_sym_set_accessor_token1] = ACTIONS(9138), + [aux_sym_const_declaration_token1] = ACTIONS(9138), + [anon_sym_LPAREN] = ACTIONS(9140), + [aux_sym_as_type_clause_token2] = ACTIONS(9138), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9138), + [aux_sym_visibility_token1] = ACTIONS(9138), + [aux_sym_visibility_token2] = ACTIONS(9138), + [aux_sym_elseif_fragment_token1] = ACTIONS(9138), + [aux_sym_else_fragment_token1] = ACTIONS(9138), + [aux_sym_select_statement_token1] = ACTIONS(9138), + [aux_sym__for_header_token1] = ACTIONS(9138), + [aux_sym_do_statement_token1] = ACTIONS(9138), + [aux_sym_do_condition_token1] = ACTIONS(9138), + [aux_sym_with_statement_token1] = ACTIONS(9138), + [aux_sym_exit_statement_token1] = ACTIONS(9138), + [sym_end_statement] = ACTIONS(9140), + [aux_sym_on_goto_statement_token1] = ACTIONS(9138), + [aux_sym_on_goto_statement_token2] = ACTIONS(9138), + [aux_sym_on_error_statement_token2] = ACTIONS(9138), + [sym__ambiguous_redim_statement] = ACTIONS(9140), + [aux_sym_erase_statement_token1] = ACTIONS(9138), + [aux_sym_open_statement_token1] = ACTIONS(9138), + [aux_sym_file_mode_token2] = ACTIONS(9138), + [aux_sym_file_access_token2] = ACTIONS(9138), + [aux_sym_file_lock_token2] = ACTIONS(9138), + [aux_sym_print_statement_token1] = ACTIONS(9138), + [anon_sym_PLUS] = ACTIONS(9140), + [anon_sym_DASH] = ACTIONS(9138), + [anon_sym_QMARK] = ACTIONS(9140), + [aux_sym_close_statement_token1] = ACTIONS(9138), + [aux_sym_put_statement_token1] = ACTIONS(9138), + [aux_sym_unlock_statement_token1] = ACTIONS(9138), + [aux_sym_seek_statement_token1] = ACTIONS(9138), + [sym_reset_statement] = ACTIONS(9138), + [aux_sym_raise_event_statement_token1] = ACTIONS(9138), + [sym_stop_statement] = ACTIONS(9138), + [sym_beep_statement] = ACTIONS(9138), + [aux_sym_unload_statement_token1] = ACTIONS(9138), + [aux_sym_def_type_statement_token1] = ACTIONS(9138), + [aux_sym_def_type_statement_token2] = ACTIONS(9138), + [aux_sym_def_type_statement_token3] = ACTIONS(9138), + [aux_sym_def_type_statement_token4] = ACTIONS(9138), + [aux_sym_def_type_statement_token5] = ACTIONS(9138), + [aux_sym_def_type_statement_token6] = ACTIONS(9138), + [aux_sym_def_type_statement_token7] = ACTIONS(9138), + [aux_sym_def_type_statement_token8] = ACTIONS(9138), + [aux_sym_def_type_statement_token9] = ACTIONS(9138), + [aux_sym_def_type_statement_token10] = ACTIONS(9138), + [aux_sym_def_type_statement_token11] = ACTIONS(9138), + [aux_sym_def_type_statement_token12] = ACTIONS(9138), + [aux_sym_def_type_statement_token13] = ACTIONS(9138), + [aux_sym_def_type_statement_token14] = ACTIONS(9138), + [aux_sym_call_statement_token1] = ACTIONS(9138), + [sym__ambiguous_call_statement] = ACTIONS(9138), + [aux_sym_addressof_expression_token1] = ACTIONS(9138), + [aux_sym_type_of_expression_token1] = ACTIONS(9138), + [aux_sym_unary_expression_token1] = ACTIONS(9138), + [sym_string_literal] = ACTIONS(9140), + [sym_number_literal] = ACTIONS(9140), + [aux_sym_boolean_literal_token1] = ACTIONS(9138), + [aux_sym_boolean_literal_token2] = ACTIONS(9138), + [sym_nothing_literal] = ACTIONS(9138), + [sym_null_literal] = ACTIONS(9138), + [sym_empty_literal] = ACTIONS(9138), + [sym_date_literal] = ACTIONS(9140), + [anon_sym_POUND] = ACTIONS(9138), + }, + [STATE(4571)] = { + [sym_identifier] = ACTIONS(9076), + [sym_newline] = ACTIONS(9078), + [anon_sym_COLON] = ACTIONS(9078), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9076), + [aux_sym_frm_property_statement_token1] = ACTIONS(9076), + [anon_sym_DOT] = ACTIONS(9076), + [anon_sym_BANG] = ACTIONS(9078), + [aux_sym__attribute_identifier_token1] = ACTIONS(9076), + [aux_sym_option_statement_token3] = ACTIONS(9076), + [aux_sym_type_declaration_token1] = ACTIONS(9076), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9076), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9076), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9076), + [aux_sym_enum_declaration_token1] = ACTIONS(9076), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9076), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9076), + [aux_sym_declare_function_statement_token1] = ACTIONS(9076), + [aux_sym_preprocessor_const_token1] = ACTIONS(9076), + [aux_sym__property_get_header_token1] = ACTIONS(9076), + [aux_sym_event_declaration_token1] = ACTIONS(9076), + [sym_static_modifier] = ACTIONS(9076), + [sym__dim_keyword] = ACTIONS(9076), + [sym__redim_keyword] = ACTIONS(9076), + [aux_sym_get_accessor_token1] = ACTIONS(9076), + [aux_sym_set_accessor_token1] = ACTIONS(9076), + [aux_sym_const_declaration_token1] = ACTIONS(9076), + [anon_sym_LPAREN] = ACTIONS(9078), + [aux_sym_as_type_clause_token2] = ACTIONS(9076), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9076), + [aux_sym_visibility_token1] = ACTIONS(9076), + [aux_sym_visibility_token2] = ACTIONS(9076), + [aux_sym_elseif_fragment_token1] = ACTIONS(9076), + [aux_sym_else_fragment_token1] = ACTIONS(9076), + [aux_sym_select_statement_token1] = ACTIONS(9076), + [aux_sym__for_header_token1] = ACTIONS(9076), + [aux_sym_do_statement_token1] = ACTIONS(9076), + [aux_sym_do_condition_token1] = ACTIONS(9076), + [aux_sym_with_statement_token1] = ACTIONS(9076), + [aux_sym_exit_statement_token1] = ACTIONS(9076), + [sym_end_statement] = ACTIONS(9078), + [aux_sym_on_goto_statement_token1] = ACTIONS(9076), + [aux_sym_on_goto_statement_token2] = ACTIONS(9076), + [aux_sym_on_error_statement_token2] = ACTIONS(9076), + [sym__ambiguous_redim_statement] = ACTIONS(9078), + [aux_sym_erase_statement_token1] = ACTIONS(9076), + [aux_sym_open_statement_token1] = ACTIONS(9076), + [aux_sym_file_mode_token2] = ACTIONS(9076), + [aux_sym_file_access_token2] = ACTIONS(9076), + [aux_sym_file_lock_token2] = ACTIONS(9076), + [aux_sym_print_statement_token1] = ACTIONS(9076), + [anon_sym_PLUS] = ACTIONS(9078), + [anon_sym_DASH] = ACTIONS(9076), + [anon_sym_QMARK] = ACTIONS(9078), + [aux_sym_close_statement_token1] = ACTIONS(9076), + [aux_sym_put_statement_token1] = ACTIONS(9076), + [aux_sym_unlock_statement_token1] = ACTIONS(9076), + [aux_sym_seek_statement_token1] = ACTIONS(9076), + [sym_reset_statement] = ACTIONS(9076), + [aux_sym_raise_event_statement_token1] = ACTIONS(9076), + [sym_stop_statement] = ACTIONS(9076), + [sym_beep_statement] = ACTIONS(9076), + [aux_sym_unload_statement_token1] = ACTIONS(9076), + [aux_sym_def_type_statement_token1] = ACTIONS(9076), + [aux_sym_def_type_statement_token2] = ACTIONS(9076), + [aux_sym_def_type_statement_token3] = ACTIONS(9076), + [aux_sym_def_type_statement_token4] = ACTIONS(9076), + [aux_sym_def_type_statement_token5] = ACTIONS(9076), + [aux_sym_def_type_statement_token6] = ACTIONS(9076), + [aux_sym_def_type_statement_token7] = ACTIONS(9076), + [aux_sym_def_type_statement_token8] = ACTIONS(9076), + [aux_sym_def_type_statement_token9] = ACTIONS(9076), + [aux_sym_def_type_statement_token10] = ACTIONS(9076), + [aux_sym_def_type_statement_token11] = ACTIONS(9076), + [aux_sym_def_type_statement_token12] = ACTIONS(9076), + [aux_sym_def_type_statement_token13] = ACTIONS(9076), + [aux_sym_def_type_statement_token14] = ACTIONS(9076), + [aux_sym_call_statement_token1] = ACTIONS(9076), + [sym__ambiguous_call_statement] = ACTIONS(9076), + [aux_sym_addressof_expression_token1] = ACTIONS(9076), + [aux_sym_type_of_expression_token1] = ACTIONS(9076), + [aux_sym_unary_expression_token1] = ACTIONS(9076), + [sym_string_literal] = ACTIONS(9078), + [sym_number_literal] = ACTIONS(9078), + [aux_sym_boolean_literal_token1] = ACTIONS(9076), + [aux_sym_boolean_literal_token2] = ACTIONS(9076), + [sym_nothing_literal] = ACTIONS(9076), + [sym_null_literal] = ACTIONS(9076), + [sym_empty_literal] = ACTIONS(9076), + [sym_date_literal] = ACTIONS(9078), + [anon_sym_POUND] = ACTIONS(9076), + }, + [STATE(4572)] = { + [sym_identifier] = ACTIONS(8907), + [sym_newline] = ACTIONS(8909), + [anon_sym_COLON] = ACTIONS(8909), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8907), + [aux_sym_frm_property_statement_token1] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8907), + [anon_sym_BANG] = ACTIONS(8909), + [aux_sym__attribute_identifier_token1] = ACTIONS(8907), + [aux_sym_option_statement_token3] = ACTIONS(8907), + [aux_sym_type_declaration_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8907), + [aux_sym_enum_declaration_token1] = ACTIONS(8907), + [aux_sym_declare_sub_statement_token1] = ACTIONS(8907), + [aux_sym_declare_sub_statement_token2] = ACTIONS(8907), + [aux_sym_declare_function_statement_token1] = ACTIONS(8907), + [aux_sym_preprocessor_const_token1] = ACTIONS(8907), + [aux_sym__property_get_header_token1] = ACTIONS(8907), + [aux_sym_event_declaration_token1] = ACTIONS(8907), + [sym_static_modifier] = ACTIONS(8907), + [sym__dim_keyword] = ACTIONS(8907), + [sym__redim_keyword] = ACTIONS(8907), + [aux_sym_get_accessor_token1] = ACTIONS(8907), + [aux_sym_set_accessor_token1] = ACTIONS(8907), + [aux_sym_const_declaration_token1] = ACTIONS(8907), + [anon_sym_LPAREN] = ACTIONS(8909), + [aux_sym_as_type_clause_token2] = ACTIONS(8907), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8907), + [aux_sym_visibility_token1] = ACTIONS(8907), + [aux_sym_visibility_token2] = ACTIONS(8907), + [aux_sym_elseif_fragment_token1] = ACTIONS(8907), + [aux_sym_else_fragment_token1] = ACTIONS(8907), + [aux_sym_select_statement_token1] = ACTIONS(8907), + [aux_sym__for_header_token1] = ACTIONS(8907), + [aux_sym_do_statement_token1] = ACTIONS(8907), + [aux_sym_do_condition_token1] = ACTIONS(8907), + [aux_sym_with_statement_token1] = ACTIONS(8907), + [aux_sym_exit_statement_token1] = ACTIONS(8907), + [sym_end_statement] = ACTIONS(8909), + [aux_sym_on_goto_statement_token1] = ACTIONS(8907), + [aux_sym_on_goto_statement_token2] = ACTIONS(8907), + [aux_sym_on_error_statement_token2] = ACTIONS(8907), + [sym__ambiguous_redim_statement] = ACTIONS(8909), + [aux_sym_erase_statement_token1] = ACTIONS(8907), + [aux_sym_open_statement_token1] = ACTIONS(8907), + [aux_sym_file_mode_token2] = ACTIONS(8907), + [aux_sym_file_access_token2] = ACTIONS(8907), + [aux_sym_file_lock_token2] = ACTIONS(8907), + [aux_sym_print_statement_token1] = ACTIONS(8907), + [anon_sym_PLUS] = ACTIONS(8909), + [anon_sym_DASH] = ACTIONS(8907), + [anon_sym_QMARK] = ACTIONS(8909), + [aux_sym_close_statement_token1] = ACTIONS(8907), + [aux_sym_put_statement_token1] = ACTIONS(8907), + [aux_sym_unlock_statement_token1] = ACTIONS(8907), + [aux_sym_seek_statement_token1] = ACTIONS(8907), + [sym_reset_statement] = ACTIONS(8907), + [aux_sym_raise_event_statement_token1] = ACTIONS(8907), + [sym_stop_statement] = ACTIONS(8907), + [sym_beep_statement] = ACTIONS(8907), + [aux_sym_unload_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token2] = ACTIONS(8907), + [aux_sym_def_type_statement_token3] = ACTIONS(8907), + [aux_sym_def_type_statement_token4] = ACTIONS(8907), + [aux_sym_def_type_statement_token5] = ACTIONS(8907), + [aux_sym_def_type_statement_token6] = ACTIONS(8907), + [aux_sym_def_type_statement_token7] = ACTIONS(8907), + [aux_sym_def_type_statement_token8] = ACTIONS(8907), + [aux_sym_def_type_statement_token9] = ACTIONS(8907), + [aux_sym_def_type_statement_token10] = ACTIONS(8907), + [aux_sym_def_type_statement_token11] = ACTIONS(8907), + [aux_sym_def_type_statement_token12] = ACTIONS(8907), + [aux_sym_def_type_statement_token13] = ACTIONS(8907), + [aux_sym_def_type_statement_token14] = ACTIONS(8907), + [aux_sym_call_statement_token1] = ACTIONS(8907), + [sym__ambiguous_call_statement] = ACTIONS(8907), + [aux_sym_addressof_expression_token1] = ACTIONS(8907), + [aux_sym_type_of_expression_token1] = ACTIONS(8907), + [aux_sym_unary_expression_token1] = ACTIONS(8907), + [sym_string_literal] = ACTIONS(8909), + [sym_number_literal] = ACTIONS(8909), + [aux_sym_boolean_literal_token1] = ACTIONS(8907), + [aux_sym_boolean_literal_token2] = ACTIONS(8907), + [sym_nothing_literal] = ACTIONS(8907), + [sym_null_literal] = ACTIONS(8907), + [sym_empty_literal] = ACTIONS(8907), + [sym_date_literal] = ACTIONS(8909), + [anon_sym_POUND] = ACTIONS(8907), + }, + [STATE(4573)] = { + [sym_initializer] = STATE(5041), + [sym_as_type_clause] = STATE(4672), + [sym_identifier] = ACTIONS(7287), + [sym_newline] = ACTIONS(7289), + [anon_sym_COLON] = ACTIONS(7289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7287), + [aux_sym_frm_property_statement_token1] = ACTIONS(7287), + [anon_sym_EQ] = ACTIONS(9859), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_BANG] = ACTIONS(7289), + [aux_sym__attribute_identifier_token1] = ACTIONS(7287), + [aux_sym_option_statement_token3] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7287), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7287), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7287), + [aux_sym_preprocessor_const_token1] = ACTIONS(7287), + [sym_static_modifier] = ACTIONS(7287), + [sym__dim_keyword] = ACTIONS(7287), + [sym__redim_keyword] = ACTIONS(7287), + [aux_sym_get_accessor_token1] = ACTIONS(7287), + [aux_sym_set_accessor_token1] = ACTIONS(7287), + [anon_sym_COMMA] = ACTIONS(7289), + [aux_sym_const_declaration_token1] = ACTIONS(7287), + [anon_sym_LPAREN] = ACTIONS(7289), + [aux_sym_as_type_clause_token1] = ACTIONS(9863), + [aux_sym_as_type_clause_token2] = ACTIONS(7287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7287), + [aux_sym_visibility_token1] = ACTIONS(7287), + [aux_sym_visibility_token2] = ACTIONS(7287), + [aux_sym_elseif_fragment_token1] = ACTIONS(7287), + [aux_sym_else_fragment_token1] = ACTIONS(7287), + [aux_sym_select_statement_token1] = ACTIONS(7287), + [aux_sym__for_header_token1] = ACTIONS(7287), + [aux_sym_do_statement_token1] = ACTIONS(7287), + [aux_sym_do_condition_token1] = ACTIONS(7287), + [aux_sym_with_statement_token1] = ACTIONS(7287), + [aux_sym_exit_statement_token1] = ACTIONS(7287), + [sym_end_statement] = ACTIONS(7289), + [aux_sym_on_goto_statement_token1] = ACTIONS(7287), + [aux_sym_on_goto_statement_token2] = ACTIONS(7287), + [aux_sym_on_error_statement_token2] = ACTIONS(7287), + [sym__ambiguous_redim_statement] = ACTIONS(7289), + [aux_sym_erase_statement_token1] = ACTIONS(7287), + [aux_sym_open_statement_token1] = ACTIONS(7287), + [aux_sym_file_mode_token2] = ACTIONS(7287), + [aux_sym_file_access_token2] = ACTIONS(7287), + [aux_sym_file_lock_token2] = ACTIONS(7287), + [aux_sym_print_statement_token1] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_QMARK] = ACTIONS(7289), + [aux_sym_close_statement_token1] = ACTIONS(7287), + [aux_sym_put_statement_token1] = ACTIONS(7287), + [aux_sym_unlock_statement_token1] = ACTIONS(7287), + [aux_sym_seek_statement_token1] = ACTIONS(7287), + [sym_reset_statement] = ACTIONS(7287), + [aux_sym_raise_event_statement_token1] = ACTIONS(7287), + [sym_stop_statement] = ACTIONS(7287), + [sym_beep_statement] = ACTIONS(7287), + [aux_sym_unload_statement_token1] = ACTIONS(7287), + [aux_sym_def_type_statement_token1] = ACTIONS(7287), + [aux_sym_def_type_statement_token2] = ACTIONS(7287), + [aux_sym_def_type_statement_token3] = ACTIONS(7287), + [aux_sym_def_type_statement_token4] = ACTIONS(7287), + [aux_sym_def_type_statement_token5] = ACTIONS(7287), + [aux_sym_def_type_statement_token6] = ACTIONS(7287), + [aux_sym_def_type_statement_token7] = ACTIONS(7287), + [aux_sym_def_type_statement_token8] = ACTIONS(7287), + [aux_sym_def_type_statement_token9] = ACTIONS(7287), + [aux_sym_def_type_statement_token10] = ACTIONS(7287), + [aux_sym_def_type_statement_token11] = ACTIONS(7287), + [aux_sym_def_type_statement_token12] = ACTIONS(7287), + [aux_sym_def_type_statement_token13] = ACTIONS(7287), + [aux_sym_def_type_statement_token14] = ACTIONS(7287), + [aux_sym_call_statement_token1] = ACTIONS(7287), + [sym__ambiguous_call_statement] = ACTIONS(7287), + [aux_sym_addressof_expression_token1] = ACTIONS(7287), + [aux_sym_type_of_expression_token1] = ACTIONS(7287), + [aux_sym_unary_expression_token1] = ACTIONS(7287), + [sym_string_literal] = ACTIONS(7289), + [sym_number_literal] = ACTIONS(7289), + [aux_sym_boolean_literal_token1] = ACTIONS(7287), + [aux_sym_boolean_literal_token2] = ACTIONS(7287), + [sym_nothing_literal] = ACTIONS(7287), + [sym_null_literal] = ACTIONS(7287), + [sym_empty_literal] = ACTIONS(7287), + [sym_date_literal] = ACTIONS(7289), + [anon_sym_POUND] = ACTIONS(7287), + }, + [STATE(4574)] = { + [sym_initializer] = STATE(5058), + [sym_as_type_clause] = STATE(4679), + [sym_identifier] = ACTIONS(7200), + [sym_newline] = ACTIONS(7202), + [anon_sym_COLON] = ACTIONS(7202), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7200), + [aux_sym_frm_property_statement_token1] = ACTIONS(7200), + [anon_sym_EQ] = ACTIONS(9859), + [anon_sym_DOT] = ACTIONS(7200), + [anon_sym_BANG] = ACTIONS(7202), + [aux_sym__attribute_identifier_token1] = ACTIONS(7200), + [aux_sym_option_statement_token3] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7200), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7200), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7200), + [aux_sym_preprocessor_const_token1] = ACTIONS(7200), + [sym_static_modifier] = ACTIONS(7200), + [sym__dim_keyword] = ACTIONS(7200), + [sym__redim_keyword] = ACTIONS(7200), + [aux_sym_get_accessor_token1] = ACTIONS(7200), + [aux_sym_set_accessor_token1] = ACTIONS(7200), + [anon_sym_COMMA] = ACTIONS(7202), + [aux_sym_const_declaration_token1] = ACTIONS(7200), + [anon_sym_LPAREN] = ACTIONS(7202), + [aux_sym_as_type_clause_token1] = ACTIONS(9863), + [aux_sym_as_type_clause_token2] = ACTIONS(7200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7200), + [aux_sym_visibility_token1] = ACTIONS(7200), + [aux_sym_visibility_token2] = ACTIONS(7200), + [aux_sym_elseif_fragment_token1] = ACTIONS(7200), + [aux_sym_else_fragment_token1] = ACTIONS(7200), + [aux_sym_select_statement_token1] = ACTIONS(7200), + [aux_sym__for_header_token1] = ACTIONS(7200), + [aux_sym_do_statement_token1] = ACTIONS(7200), + [aux_sym_do_condition_token1] = ACTIONS(7200), + [aux_sym_with_statement_token1] = ACTIONS(7200), + [aux_sym_exit_statement_token1] = ACTIONS(7200), + [sym_end_statement] = ACTIONS(7202), + [aux_sym_on_goto_statement_token1] = ACTIONS(7200), + [aux_sym_on_goto_statement_token2] = ACTIONS(7200), + [aux_sym_on_error_statement_token2] = ACTIONS(7200), + [sym__ambiguous_redim_statement] = ACTIONS(7202), + [aux_sym_erase_statement_token1] = ACTIONS(7200), + [aux_sym_open_statement_token1] = ACTIONS(7200), + [aux_sym_file_mode_token2] = ACTIONS(7200), + [aux_sym_file_access_token2] = ACTIONS(7200), + [aux_sym_file_lock_token2] = ACTIONS(7200), + [aux_sym_print_statement_token1] = ACTIONS(7200), + [anon_sym_PLUS] = ACTIONS(7202), + [anon_sym_DASH] = ACTIONS(7200), + [anon_sym_QMARK] = ACTIONS(7202), + [aux_sym_close_statement_token1] = ACTIONS(7200), + [aux_sym_put_statement_token1] = ACTIONS(7200), + [aux_sym_unlock_statement_token1] = ACTIONS(7200), + [aux_sym_seek_statement_token1] = ACTIONS(7200), + [sym_reset_statement] = ACTIONS(7200), + [aux_sym_raise_event_statement_token1] = ACTIONS(7200), + [sym_stop_statement] = ACTIONS(7200), + [sym_beep_statement] = ACTIONS(7200), + [aux_sym_unload_statement_token1] = ACTIONS(7200), + [aux_sym_def_type_statement_token1] = ACTIONS(7200), + [aux_sym_def_type_statement_token2] = ACTIONS(7200), + [aux_sym_def_type_statement_token3] = ACTIONS(7200), + [aux_sym_def_type_statement_token4] = ACTIONS(7200), + [aux_sym_def_type_statement_token5] = ACTIONS(7200), + [aux_sym_def_type_statement_token6] = ACTIONS(7200), + [aux_sym_def_type_statement_token7] = ACTIONS(7200), + [aux_sym_def_type_statement_token8] = ACTIONS(7200), + [aux_sym_def_type_statement_token9] = ACTIONS(7200), + [aux_sym_def_type_statement_token10] = ACTIONS(7200), + [aux_sym_def_type_statement_token11] = ACTIONS(7200), + [aux_sym_def_type_statement_token12] = ACTIONS(7200), + [aux_sym_def_type_statement_token13] = ACTIONS(7200), + [aux_sym_def_type_statement_token14] = ACTIONS(7200), + [aux_sym_call_statement_token1] = ACTIONS(7200), + [sym__ambiguous_call_statement] = ACTIONS(7200), + [aux_sym_addressof_expression_token1] = ACTIONS(7200), + [aux_sym_type_of_expression_token1] = ACTIONS(7200), + [aux_sym_unary_expression_token1] = ACTIONS(7200), + [sym_string_literal] = ACTIONS(7202), + [sym_number_literal] = ACTIONS(7202), + [aux_sym_boolean_literal_token1] = ACTIONS(7200), + [aux_sym_boolean_literal_token2] = ACTIONS(7200), + [sym_nothing_literal] = ACTIONS(7200), + [sym_null_literal] = ACTIONS(7200), + [sym_empty_literal] = ACTIONS(7200), + [sym_date_literal] = ACTIONS(7202), + [anon_sym_POUND] = ACTIONS(7200), + }, + [STATE(4575)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(9973), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4576)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(9973), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(9975), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4577)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(9973), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(9975), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(9977), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4578)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(9973), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(9975), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(9977), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(9979), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4579)] = { + [sym_identifier] = ACTIONS(9164), + [sym_newline] = ACTIONS(9166), + [anon_sym_COLON] = ACTIONS(9166), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9164), + [aux_sym_frm_property_statement_token1] = ACTIONS(9164), + [anon_sym_DOT] = ACTIONS(9164), + [anon_sym_BANG] = ACTIONS(9166), + [aux_sym__attribute_identifier_token1] = ACTIONS(9164), + [aux_sym_option_statement_token3] = ACTIONS(9164), + [aux_sym_type_declaration_token1] = ACTIONS(9164), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9164), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9164), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9164), + [aux_sym_enum_declaration_token1] = ACTIONS(9164), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9164), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9164), + [aux_sym_declare_function_statement_token1] = ACTIONS(9164), + [aux_sym_preprocessor_const_token1] = ACTIONS(9164), + [aux_sym__property_get_header_token1] = ACTIONS(9164), + [aux_sym_event_declaration_token1] = ACTIONS(9164), + [sym_static_modifier] = ACTIONS(9164), + [sym__dim_keyword] = ACTIONS(9164), + [sym__redim_keyword] = ACTIONS(9164), + [aux_sym_get_accessor_token1] = ACTIONS(9164), + [aux_sym_set_accessor_token1] = ACTIONS(9164), + [aux_sym_const_declaration_token1] = ACTIONS(9164), + [anon_sym_LPAREN] = ACTIONS(9166), + [aux_sym_as_type_clause_token2] = ACTIONS(9164), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9164), + [aux_sym_visibility_token1] = ACTIONS(9164), + [aux_sym_visibility_token2] = ACTIONS(9164), + [aux_sym_elseif_fragment_token1] = ACTIONS(9164), + [aux_sym_else_fragment_token1] = ACTIONS(9164), + [aux_sym_select_statement_token1] = ACTIONS(9164), + [aux_sym__for_header_token1] = ACTIONS(9164), + [aux_sym_do_statement_token1] = ACTIONS(9164), + [aux_sym_do_condition_token1] = ACTIONS(9164), + [aux_sym_with_statement_token1] = ACTIONS(9164), + [aux_sym_exit_statement_token1] = ACTIONS(9164), + [sym_end_statement] = ACTIONS(9166), + [aux_sym_on_goto_statement_token1] = ACTIONS(9164), + [aux_sym_on_goto_statement_token2] = ACTIONS(9164), + [aux_sym_on_error_statement_token2] = ACTIONS(9164), + [sym__ambiguous_redim_statement] = ACTIONS(9166), + [aux_sym_erase_statement_token1] = ACTIONS(9164), + [aux_sym_open_statement_token1] = ACTIONS(9164), + [aux_sym_file_mode_token2] = ACTIONS(9164), + [aux_sym_file_access_token2] = ACTIONS(9164), + [aux_sym_file_lock_token2] = ACTIONS(9164), + [aux_sym_print_statement_token1] = ACTIONS(9164), + [anon_sym_PLUS] = ACTIONS(9166), + [anon_sym_DASH] = ACTIONS(9164), + [anon_sym_QMARK] = ACTIONS(9166), + [aux_sym_close_statement_token1] = ACTIONS(9164), + [aux_sym_put_statement_token1] = ACTIONS(9164), + [aux_sym_unlock_statement_token1] = ACTIONS(9164), + [aux_sym_seek_statement_token1] = ACTIONS(9164), + [sym_reset_statement] = ACTIONS(9164), + [aux_sym_raise_event_statement_token1] = ACTIONS(9164), + [sym_stop_statement] = ACTIONS(9164), + [sym_beep_statement] = ACTIONS(9164), + [aux_sym_unload_statement_token1] = ACTIONS(9164), + [aux_sym_def_type_statement_token1] = ACTIONS(9164), + [aux_sym_def_type_statement_token2] = ACTIONS(9164), + [aux_sym_def_type_statement_token3] = ACTIONS(9164), + [aux_sym_def_type_statement_token4] = ACTIONS(9164), + [aux_sym_def_type_statement_token5] = ACTIONS(9164), + [aux_sym_def_type_statement_token6] = ACTIONS(9164), + [aux_sym_def_type_statement_token7] = ACTIONS(9164), + [aux_sym_def_type_statement_token8] = ACTIONS(9164), + [aux_sym_def_type_statement_token9] = ACTIONS(9164), + [aux_sym_def_type_statement_token10] = ACTIONS(9164), + [aux_sym_def_type_statement_token11] = ACTIONS(9164), + [aux_sym_def_type_statement_token12] = ACTIONS(9164), + [aux_sym_def_type_statement_token13] = ACTIONS(9164), + [aux_sym_def_type_statement_token14] = ACTIONS(9164), + [aux_sym_call_statement_token1] = ACTIONS(9164), + [sym__ambiguous_call_statement] = ACTIONS(9164), + [aux_sym_addressof_expression_token1] = ACTIONS(9164), + [aux_sym_type_of_expression_token1] = ACTIONS(9164), + [aux_sym_unary_expression_token1] = ACTIONS(9164), + [sym_string_literal] = ACTIONS(9166), + [sym_number_literal] = ACTIONS(9166), + [aux_sym_boolean_literal_token1] = ACTIONS(9164), + [aux_sym_boolean_literal_token2] = ACTIONS(9164), + [sym_nothing_literal] = ACTIONS(9164), + [sym_null_literal] = ACTIONS(9164), + [sym_empty_literal] = ACTIONS(9164), + [sym_date_literal] = ACTIONS(9166), + [anon_sym_POUND] = ACTIONS(9164), + }, + [STATE(4580)] = { + [sym_identifier] = ACTIONS(9196), + [sym_newline] = ACTIONS(9198), + [anon_sym_COLON] = ACTIONS(9198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9196), + [aux_sym_frm_property_statement_token1] = ACTIONS(9196), + [anon_sym_DOT] = ACTIONS(9196), + [anon_sym_BANG] = ACTIONS(9198), + [aux_sym__attribute_identifier_token1] = ACTIONS(9196), + [aux_sym_option_statement_token3] = ACTIONS(9196), + [aux_sym_type_declaration_token1] = ACTIONS(9196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9196), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9196), + [aux_sym_enum_declaration_token1] = ACTIONS(9196), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9196), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9196), + [aux_sym_declare_function_statement_token1] = ACTIONS(9196), + [aux_sym_preprocessor_const_token1] = ACTIONS(9196), + [aux_sym__property_get_header_token1] = ACTIONS(9196), + [aux_sym_event_declaration_token1] = ACTIONS(9196), + [sym_static_modifier] = ACTIONS(9196), + [sym__dim_keyword] = ACTIONS(9196), + [sym__redim_keyword] = ACTIONS(9196), + [aux_sym_get_accessor_token1] = ACTIONS(9196), + [aux_sym_set_accessor_token1] = ACTIONS(9196), + [aux_sym_const_declaration_token1] = ACTIONS(9196), + [anon_sym_LPAREN] = ACTIONS(9198), + [aux_sym_as_type_clause_token2] = ACTIONS(9196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9196), + [aux_sym_visibility_token1] = ACTIONS(9196), + [aux_sym_visibility_token2] = ACTIONS(9196), + [aux_sym_elseif_fragment_token1] = ACTIONS(9196), + [aux_sym_else_fragment_token1] = ACTIONS(9196), + [aux_sym_select_statement_token1] = ACTIONS(9196), + [aux_sym__for_header_token1] = ACTIONS(9196), + [aux_sym_do_statement_token1] = ACTIONS(9196), + [aux_sym_do_condition_token1] = ACTIONS(9196), + [aux_sym_with_statement_token1] = ACTIONS(9196), + [aux_sym_exit_statement_token1] = ACTIONS(9196), + [sym_end_statement] = ACTIONS(9198), + [aux_sym_on_goto_statement_token1] = ACTIONS(9196), + [aux_sym_on_goto_statement_token2] = ACTIONS(9196), + [aux_sym_on_error_statement_token2] = ACTIONS(9196), + [sym__ambiguous_redim_statement] = ACTIONS(9198), + [aux_sym_erase_statement_token1] = ACTIONS(9196), + [aux_sym_open_statement_token1] = ACTIONS(9196), + [aux_sym_file_mode_token2] = ACTIONS(9196), + [aux_sym_file_access_token2] = ACTIONS(9196), + [aux_sym_file_lock_token2] = ACTIONS(9196), + [aux_sym_print_statement_token1] = ACTIONS(9196), + [anon_sym_PLUS] = ACTIONS(9198), + [anon_sym_DASH] = ACTIONS(9196), + [anon_sym_QMARK] = ACTIONS(9198), + [aux_sym_close_statement_token1] = ACTIONS(9196), + [aux_sym_put_statement_token1] = ACTIONS(9196), + [aux_sym_unlock_statement_token1] = ACTIONS(9196), + [aux_sym_seek_statement_token1] = ACTIONS(9196), + [sym_reset_statement] = ACTIONS(9196), + [aux_sym_raise_event_statement_token1] = ACTIONS(9196), + [sym_stop_statement] = ACTIONS(9196), + [sym_beep_statement] = ACTIONS(9196), + [aux_sym_unload_statement_token1] = ACTIONS(9196), + [aux_sym_def_type_statement_token1] = ACTIONS(9196), + [aux_sym_def_type_statement_token2] = ACTIONS(9196), + [aux_sym_def_type_statement_token3] = ACTIONS(9196), + [aux_sym_def_type_statement_token4] = ACTIONS(9196), + [aux_sym_def_type_statement_token5] = ACTIONS(9196), + [aux_sym_def_type_statement_token6] = ACTIONS(9196), + [aux_sym_def_type_statement_token7] = ACTIONS(9196), + [aux_sym_def_type_statement_token8] = ACTIONS(9196), + [aux_sym_def_type_statement_token9] = ACTIONS(9196), + [aux_sym_def_type_statement_token10] = ACTIONS(9196), + [aux_sym_def_type_statement_token11] = ACTIONS(9196), + [aux_sym_def_type_statement_token12] = ACTIONS(9196), + [aux_sym_def_type_statement_token13] = ACTIONS(9196), + [aux_sym_def_type_statement_token14] = ACTIONS(9196), + [aux_sym_call_statement_token1] = ACTIONS(9196), + [sym__ambiguous_call_statement] = ACTIONS(9196), + [aux_sym_addressof_expression_token1] = ACTIONS(9196), + [aux_sym_type_of_expression_token1] = ACTIONS(9196), + [aux_sym_unary_expression_token1] = ACTIONS(9196), + [sym_string_literal] = ACTIONS(9198), + [sym_number_literal] = ACTIONS(9198), + [aux_sym_boolean_literal_token1] = ACTIONS(9196), + [aux_sym_boolean_literal_token2] = ACTIONS(9196), + [sym_nothing_literal] = ACTIONS(9196), + [sym_null_literal] = ACTIONS(9196), + [sym_empty_literal] = ACTIONS(9196), + [sym_date_literal] = ACTIONS(9198), + [anon_sym_POUND] = ACTIONS(9196), + }, + [STATE(4581)] = { + [sym_identifier] = ACTIONS(9200), + [sym_newline] = ACTIONS(9202), + [anon_sym_COLON] = ACTIONS(9202), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9200), + [aux_sym_frm_property_statement_token1] = ACTIONS(9200), + [anon_sym_DOT] = ACTIONS(9200), + [anon_sym_BANG] = ACTIONS(9202), + [aux_sym__attribute_identifier_token1] = ACTIONS(9200), + [aux_sym_option_statement_token3] = ACTIONS(9200), + [aux_sym_type_declaration_token1] = ACTIONS(9200), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9200), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9200), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9200), + [aux_sym_enum_declaration_token1] = ACTIONS(9200), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9200), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9200), + [aux_sym_declare_function_statement_token1] = ACTIONS(9200), + [aux_sym_preprocessor_const_token1] = ACTIONS(9200), + [aux_sym__property_get_header_token1] = ACTIONS(9200), + [aux_sym_event_declaration_token1] = ACTIONS(9200), + [sym_static_modifier] = ACTIONS(9200), + [sym__dim_keyword] = ACTIONS(9200), + [sym__redim_keyword] = ACTIONS(9200), + [aux_sym_get_accessor_token1] = ACTIONS(9200), + [aux_sym_set_accessor_token1] = ACTIONS(9200), + [aux_sym_const_declaration_token1] = ACTIONS(9200), + [anon_sym_LPAREN] = ACTIONS(9202), + [aux_sym_as_type_clause_token2] = ACTIONS(9200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9200), + [aux_sym_visibility_token1] = ACTIONS(9200), + [aux_sym_visibility_token2] = ACTIONS(9200), + [aux_sym_elseif_fragment_token1] = ACTIONS(9200), + [aux_sym_else_fragment_token1] = ACTIONS(9200), + [aux_sym_select_statement_token1] = ACTIONS(9200), + [aux_sym__for_header_token1] = ACTIONS(9200), + [aux_sym_do_statement_token1] = ACTIONS(9200), + [aux_sym_do_condition_token1] = ACTIONS(9200), + [aux_sym_with_statement_token1] = ACTIONS(9200), + [aux_sym_exit_statement_token1] = ACTIONS(9200), + [sym_end_statement] = ACTIONS(9202), + [aux_sym_on_goto_statement_token1] = ACTIONS(9200), + [aux_sym_on_goto_statement_token2] = ACTIONS(9200), + [aux_sym_on_error_statement_token2] = ACTIONS(9200), + [sym__ambiguous_redim_statement] = ACTIONS(9202), + [aux_sym_erase_statement_token1] = ACTIONS(9200), + [aux_sym_open_statement_token1] = ACTIONS(9200), + [aux_sym_file_mode_token2] = ACTIONS(9200), + [aux_sym_file_access_token2] = ACTIONS(9200), + [aux_sym_file_lock_token2] = ACTIONS(9200), + [aux_sym_print_statement_token1] = ACTIONS(9200), + [anon_sym_PLUS] = ACTIONS(9202), + [anon_sym_DASH] = ACTIONS(9200), + [anon_sym_QMARK] = ACTIONS(9202), + [aux_sym_close_statement_token1] = ACTIONS(9200), + [aux_sym_put_statement_token1] = ACTIONS(9200), + [aux_sym_unlock_statement_token1] = ACTIONS(9200), + [aux_sym_seek_statement_token1] = ACTIONS(9200), + [sym_reset_statement] = ACTIONS(9200), + [aux_sym_raise_event_statement_token1] = ACTIONS(9200), + [sym_stop_statement] = ACTIONS(9200), + [sym_beep_statement] = ACTIONS(9200), + [aux_sym_unload_statement_token1] = ACTIONS(9200), + [aux_sym_def_type_statement_token1] = ACTIONS(9200), + [aux_sym_def_type_statement_token2] = ACTIONS(9200), + [aux_sym_def_type_statement_token3] = ACTIONS(9200), + [aux_sym_def_type_statement_token4] = ACTIONS(9200), + [aux_sym_def_type_statement_token5] = ACTIONS(9200), + [aux_sym_def_type_statement_token6] = ACTIONS(9200), + [aux_sym_def_type_statement_token7] = ACTIONS(9200), + [aux_sym_def_type_statement_token8] = ACTIONS(9200), + [aux_sym_def_type_statement_token9] = ACTIONS(9200), + [aux_sym_def_type_statement_token10] = ACTIONS(9200), + [aux_sym_def_type_statement_token11] = ACTIONS(9200), + [aux_sym_def_type_statement_token12] = ACTIONS(9200), + [aux_sym_def_type_statement_token13] = ACTIONS(9200), + [aux_sym_def_type_statement_token14] = ACTIONS(9200), + [aux_sym_call_statement_token1] = ACTIONS(9200), + [sym__ambiguous_call_statement] = ACTIONS(9200), + [aux_sym_addressof_expression_token1] = ACTIONS(9200), + [aux_sym_type_of_expression_token1] = ACTIONS(9200), + [aux_sym_unary_expression_token1] = ACTIONS(9200), + [sym_string_literal] = ACTIONS(9202), + [sym_number_literal] = ACTIONS(9202), + [aux_sym_boolean_literal_token1] = ACTIONS(9200), + [aux_sym_boolean_literal_token2] = ACTIONS(9200), + [sym_nothing_literal] = ACTIONS(9200), + [sym_null_literal] = ACTIONS(9200), + [sym_empty_literal] = ACTIONS(9200), + [sym_date_literal] = ACTIONS(9202), + [anon_sym_POUND] = ACTIONS(9200), + }, + [STATE(4582)] = { + [sym_identifier] = ACTIONS(9204), + [sym_newline] = ACTIONS(9206), + [anon_sym_COLON] = ACTIONS(9206), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9204), + [aux_sym_frm_property_statement_token1] = ACTIONS(9204), + [anon_sym_DOT] = ACTIONS(9204), + [anon_sym_BANG] = ACTIONS(9206), + [aux_sym__attribute_identifier_token1] = ACTIONS(9204), + [aux_sym_option_statement_token3] = ACTIONS(9204), + [aux_sym_type_declaration_token1] = ACTIONS(9204), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9204), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9204), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9204), + [aux_sym_enum_declaration_token1] = ACTIONS(9204), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9204), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9204), + [aux_sym_declare_function_statement_token1] = ACTIONS(9204), + [aux_sym_preprocessor_const_token1] = ACTIONS(9204), + [aux_sym__property_get_header_token1] = ACTIONS(9204), + [aux_sym_event_declaration_token1] = ACTIONS(9204), + [sym_static_modifier] = ACTIONS(9204), + [sym__dim_keyword] = ACTIONS(9204), + [sym__redim_keyword] = ACTIONS(9204), + [aux_sym_get_accessor_token1] = ACTIONS(9204), + [aux_sym_set_accessor_token1] = ACTIONS(9204), + [aux_sym_const_declaration_token1] = ACTIONS(9204), + [anon_sym_LPAREN] = ACTIONS(9206), + [aux_sym_as_type_clause_token2] = ACTIONS(9204), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9204), + [aux_sym_visibility_token1] = ACTIONS(9204), + [aux_sym_visibility_token2] = ACTIONS(9204), + [aux_sym_elseif_fragment_token1] = ACTIONS(9204), + [aux_sym_else_fragment_token1] = ACTIONS(9204), + [aux_sym_select_statement_token1] = ACTIONS(9204), + [aux_sym__for_header_token1] = ACTIONS(9204), + [aux_sym_do_statement_token1] = ACTIONS(9204), + [aux_sym_do_condition_token1] = ACTIONS(9204), + [aux_sym_with_statement_token1] = ACTIONS(9204), + [aux_sym_exit_statement_token1] = ACTIONS(9204), + [sym_end_statement] = ACTIONS(9206), + [aux_sym_on_goto_statement_token1] = ACTIONS(9204), + [aux_sym_on_goto_statement_token2] = ACTIONS(9204), + [aux_sym_on_error_statement_token2] = ACTIONS(9204), + [sym__ambiguous_redim_statement] = ACTIONS(9206), + [aux_sym_erase_statement_token1] = ACTIONS(9204), + [aux_sym_open_statement_token1] = ACTIONS(9204), + [aux_sym_file_mode_token2] = ACTIONS(9204), + [aux_sym_file_access_token2] = ACTIONS(9204), + [aux_sym_file_lock_token2] = ACTIONS(9204), + [aux_sym_print_statement_token1] = ACTIONS(9204), + [anon_sym_PLUS] = ACTIONS(9206), + [anon_sym_DASH] = ACTIONS(9204), + [anon_sym_QMARK] = ACTIONS(9206), + [aux_sym_close_statement_token1] = ACTIONS(9204), + [aux_sym_put_statement_token1] = ACTIONS(9204), + [aux_sym_unlock_statement_token1] = ACTIONS(9204), + [aux_sym_seek_statement_token1] = ACTIONS(9204), + [sym_reset_statement] = ACTIONS(9204), + [aux_sym_raise_event_statement_token1] = ACTIONS(9204), + [sym_stop_statement] = ACTIONS(9204), + [sym_beep_statement] = ACTIONS(9204), + [aux_sym_unload_statement_token1] = ACTIONS(9204), + [aux_sym_def_type_statement_token1] = ACTIONS(9204), + [aux_sym_def_type_statement_token2] = ACTIONS(9204), + [aux_sym_def_type_statement_token3] = ACTIONS(9204), + [aux_sym_def_type_statement_token4] = ACTIONS(9204), + [aux_sym_def_type_statement_token5] = ACTIONS(9204), + [aux_sym_def_type_statement_token6] = ACTIONS(9204), + [aux_sym_def_type_statement_token7] = ACTIONS(9204), + [aux_sym_def_type_statement_token8] = ACTIONS(9204), + [aux_sym_def_type_statement_token9] = ACTIONS(9204), + [aux_sym_def_type_statement_token10] = ACTIONS(9204), + [aux_sym_def_type_statement_token11] = ACTIONS(9204), + [aux_sym_def_type_statement_token12] = ACTIONS(9204), + [aux_sym_def_type_statement_token13] = ACTIONS(9204), + [aux_sym_def_type_statement_token14] = ACTIONS(9204), + [aux_sym_call_statement_token1] = ACTIONS(9204), + [sym__ambiguous_call_statement] = ACTIONS(9204), + [aux_sym_addressof_expression_token1] = ACTIONS(9204), + [aux_sym_type_of_expression_token1] = ACTIONS(9204), + [aux_sym_unary_expression_token1] = ACTIONS(9204), + [sym_string_literal] = ACTIONS(9206), + [sym_number_literal] = ACTIONS(9206), + [aux_sym_boolean_literal_token1] = ACTIONS(9204), + [aux_sym_boolean_literal_token2] = ACTIONS(9204), + [sym_nothing_literal] = ACTIONS(9204), + [sym_null_literal] = ACTIONS(9204), + [sym_empty_literal] = ACTIONS(9204), + [sym_date_literal] = ACTIONS(9206), + [anon_sym_POUND] = ACTIONS(9204), + }, + [STATE(4583)] = { + [sym_identifier] = ACTIONS(9208), + [sym_newline] = ACTIONS(9210), + [anon_sym_COLON] = ACTIONS(9210), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9208), + [aux_sym_frm_property_statement_token1] = ACTIONS(9208), + [anon_sym_DOT] = ACTIONS(9208), + [anon_sym_BANG] = ACTIONS(9210), + [aux_sym__attribute_identifier_token1] = ACTIONS(9208), + [aux_sym_option_statement_token3] = ACTIONS(9208), + [aux_sym_type_declaration_token1] = ACTIONS(9208), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9208), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9208), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9208), + [aux_sym_enum_declaration_token1] = ACTIONS(9208), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9208), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9208), + [aux_sym_declare_function_statement_token1] = ACTIONS(9208), + [aux_sym_preprocessor_const_token1] = ACTIONS(9208), + [aux_sym__property_get_header_token1] = ACTIONS(9208), + [aux_sym_event_declaration_token1] = ACTIONS(9208), + [sym_static_modifier] = ACTIONS(9208), + [sym__dim_keyword] = ACTIONS(9208), + [sym__redim_keyword] = ACTIONS(9208), + [aux_sym_get_accessor_token1] = ACTIONS(9208), + [aux_sym_set_accessor_token1] = ACTIONS(9208), + [aux_sym_const_declaration_token1] = ACTIONS(9208), + [anon_sym_LPAREN] = ACTIONS(9210), + [aux_sym_as_type_clause_token2] = ACTIONS(9208), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9208), + [aux_sym_visibility_token1] = ACTIONS(9208), + [aux_sym_visibility_token2] = ACTIONS(9208), + [aux_sym_elseif_fragment_token1] = ACTIONS(9208), + [aux_sym_else_fragment_token1] = ACTIONS(9208), + [aux_sym_select_statement_token1] = ACTIONS(9208), + [aux_sym__for_header_token1] = ACTIONS(9208), + [aux_sym_do_statement_token1] = ACTIONS(9208), + [aux_sym_do_condition_token1] = ACTIONS(9208), + [aux_sym_with_statement_token1] = ACTIONS(9208), + [aux_sym_exit_statement_token1] = ACTIONS(9208), + [sym_end_statement] = ACTIONS(9210), + [aux_sym_on_goto_statement_token1] = ACTIONS(9208), + [aux_sym_on_goto_statement_token2] = ACTIONS(9208), + [aux_sym_on_error_statement_token2] = ACTIONS(9208), + [sym__ambiguous_redim_statement] = ACTIONS(9210), + [aux_sym_erase_statement_token1] = ACTIONS(9208), + [aux_sym_open_statement_token1] = ACTIONS(9208), + [aux_sym_file_mode_token2] = ACTIONS(9208), + [aux_sym_file_access_token2] = ACTIONS(9208), + [aux_sym_file_lock_token2] = ACTIONS(9208), + [aux_sym_print_statement_token1] = ACTIONS(9208), + [anon_sym_PLUS] = ACTIONS(9210), + [anon_sym_DASH] = ACTIONS(9208), + [anon_sym_QMARK] = ACTIONS(9210), + [aux_sym_close_statement_token1] = ACTIONS(9208), + [aux_sym_put_statement_token1] = ACTIONS(9208), + [aux_sym_unlock_statement_token1] = ACTIONS(9208), + [aux_sym_seek_statement_token1] = ACTIONS(9208), + [sym_reset_statement] = ACTIONS(9208), + [aux_sym_raise_event_statement_token1] = ACTIONS(9208), + [sym_stop_statement] = ACTIONS(9208), + [sym_beep_statement] = ACTIONS(9208), + [aux_sym_unload_statement_token1] = ACTIONS(9208), + [aux_sym_def_type_statement_token1] = ACTIONS(9208), + [aux_sym_def_type_statement_token2] = ACTIONS(9208), + [aux_sym_def_type_statement_token3] = ACTIONS(9208), + [aux_sym_def_type_statement_token4] = ACTIONS(9208), + [aux_sym_def_type_statement_token5] = ACTIONS(9208), + [aux_sym_def_type_statement_token6] = ACTIONS(9208), + [aux_sym_def_type_statement_token7] = ACTIONS(9208), + [aux_sym_def_type_statement_token8] = ACTIONS(9208), + [aux_sym_def_type_statement_token9] = ACTIONS(9208), + [aux_sym_def_type_statement_token10] = ACTIONS(9208), + [aux_sym_def_type_statement_token11] = ACTIONS(9208), + [aux_sym_def_type_statement_token12] = ACTIONS(9208), + [aux_sym_def_type_statement_token13] = ACTIONS(9208), + [aux_sym_def_type_statement_token14] = ACTIONS(9208), + [aux_sym_call_statement_token1] = ACTIONS(9208), + [sym__ambiguous_call_statement] = ACTIONS(9208), + [aux_sym_addressof_expression_token1] = ACTIONS(9208), + [aux_sym_type_of_expression_token1] = ACTIONS(9208), + [aux_sym_unary_expression_token1] = ACTIONS(9208), + [sym_string_literal] = ACTIONS(9210), + [sym_number_literal] = ACTIONS(9210), + [aux_sym_boolean_literal_token1] = ACTIONS(9208), + [aux_sym_boolean_literal_token2] = ACTIONS(9208), + [sym_nothing_literal] = ACTIONS(9208), + [sym_null_literal] = ACTIONS(9208), + [sym_empty_literal] = ACTIONS(9208), + [sym_date_literal] = ACTIONS(9210), + [anon_sym_POUND] = ACTIONS(9208), + }, + [STATE(4584)] = { + [sym_identifier] = ACTIONS(9212), + [sym_newline] = ACTIONS(9214), + [anon_sym_COLON] = ACTIONS(9214), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9212), + [aux_sym_frm_property_statement_token1] = ACTIONS(9212), + [anon_sym_DOT] = ACTIONS(9212), + [anon_sym_BANG] = ACTIONS(9214), + [aux_sym__attribute_identifier_token1] = ACTIONS(9212), + [aux_sym_option_statement_token3] = ACTIONS(9212), + [aux_sym_type_declaration_token1] = ACTIONS(9212), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9212), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9212), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9212), + [aux_sym_enum_declaration_token1] = ACTIONS(9212), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9212), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9212), + [aux_sym_declare_function_statement_token1] = ACTIONS(9212), + [aux_sym_preprocessor_const_token1] = ACTIONS(9212), + [aux_sym__property_get_header_token1] = ACTIONS(9212), + [aux_sym_event_declaration_token1] = ACTIONS(9212), + [sym_static_modifier] = ACTIONS(9212), + [sym__dim_keyword] = ACTIONS(9212), + [sym__redim_keyword] = ACTIONS(9212), + [aux_sym_get_accessor_token1] = ACTIONS(9212), + [aux_sym_set_accessor_token1] = ACTIONS(9212), + [aux_sym_const_declaration_token1] = ACTIONS(9212), + [anon_sym_LPAREN] = ACTIONS(9214), + [aux_sym_as_type_clause_token2] = ACTIONS(9212), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9212), + [aux_sym_visibility_token1] = ACTIONS(9212), + [aux_sym_visibility_token2] = ACTIONS(9212), + [aux_sym_elseif_fragment_token1] = ACTIONS(9212), + [aux_sym_else_fragment_token1] = ACTIONS(9212), + [aux_sym_select_statement_token1] = ACTIONS(9212), + [aux_sym__for_header_token1] = ACTIONS(9212), + [aux_sym_do_statement_token1] = ACTIONS(9212), + [aux_sym_do_condition_token1] = ACTIONS(9212), + [aux_sym_with_statement_token1] = ACTIONS(9212), + [aux_sym_exit_statement_token1] = ACTIONS(9212), + [sym_end_statement] = ACTIONS(9214), + [aux_sym_on_goto_statement_token1] = ACTIONS(9212), + [aux_sym_on_goto_statement_token2] = ACTIONS(9212), + [aux_sym_on_error_statement_token2] = ACTIONS(9212), + [sym__ambiguous_redim_statement] = ACTIONS(9214), + [aux_sym_erase_statement_token1] = ACTIONS(9212), + [aux_sym_open_statement_token1] = ACTIONS(9212), + [aux_sym_file_mode_token2] = ACTIONS(9212), + [aux_sym_file_access_token2] = ACTIONS(9212), + [aux_sym_file_lock_token2] = ACTIONS(9212), + [aux_sym_print_statement_token1] = ACTIONS(9212), + [anon_sym_PLUS] = ACTIONS(9214), + [anon_sym_DASH] = ACTIONS(9212), + [anon_sym_QMARK] = ACTIONS(9214), + [aux_sym_close_statement_token1] = ACTIONS(9212), + [aux_sym_put_statement_token1] = ACTIONS(9212), + [aux_sym_unlock_statement_token1] = ACTIONS(9212), + [aux_sym_seek_statement_token1] = ACTIONS(9212), + [sym_reset_statement] = ACTIONS(9212), + [aux_sym_raise_event_statement_token1] = ACTIONS(9212), + [sym_stop_statement] = ACTIONS(9212), + [sym_beep_statement] = ACTIONS(9212), + [aux_sym_unload_statement_token1] = ACTIONS(9212), + [aux_sym_def_type_statement_token1] = ACTIONS(9212), + [aux_sym_def_type_statement_token2] = ACTIONS(9212), + [aux_sym_def_type_statement_token3] = ACTIONS(9212), + [aux_sym_def_type_statement_token4] = ACTIONS(9212), + [aux_sym_def_type_statement_token5] = ACTIONS(9212), + [aux_sym_def_type_statement_token6] = ACTIONS(9212), + [aux_sym_def_type_statement_token7] = ACTIONS(9212), + [aux_sym_def_type_statement_token8] = ACTIONS(9212), + [aux_sym_def_type_statement_token9] = ACTIONS(9212), + [aux_sym_def_type_statement_token10] = ACTIONS(9212), + [aux_sym_def_type_statement_token11] = ACTIONS(9212), + [aux_sym_def_type_statement_token12] = ACTIONS(9212), + [aux_sym_def_type_statement_token13] = ACTIONS(9212), + [aux_sym_def_type_statement_token14] = ACTIONS(9212), + [aux_sym_call_statement_token1] = ACTIONS(9212), + [sym__ambiguous_call_statement] = ACTIONS(9212), + [aux_sym_addressof_expression_token1] = ACTIONS(9212), + [aux_sym_type_of_expression_token1] = ACTIONS(9212), + [aux_sym_unary_expression_token1] = ACTIONS(9212), + [sym_string_literal] = ACTIONS(9214), + [sym_number_literal] = ACTIONS(9214), + [aux_sym_boolean_literal_token1] = ACTIONS(9212), + [aux_sym_boolean_literal_token2] = ACTIONS(9212), + [sym_nothing_literal] = ACTIONS(9212), + [sym_null_literal] = ACTIONS(9212), + [sym_empty_literal] = ACTIONS(9212), + [sym_date_literal] = ACTIONS(9214), + [anon_sym_POUND] = ACTIONS(9212), + }, + [STATE(4585)] = { + [sym_identifier] = ACTIONS(9216), + [sym_newline] = ACTIONS(9218), + [anon_sym_COLON] = ACTIONS(9218), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9216), + [aux_sym_frm_property_statement_token1] = ACTIONS(9216), + [anon_sym_DOT] = ACTIONS(9216), + [anon_sym_BANG] = ACTIONS(9218), + [aux_sym__attribute_identifier_token1] = ACTIONS(9216), + [aux_sym_option_statement_token3] = ACTIONS(9216), + [aux_sym_type_declaration_token1] = ACTIONS(9216), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9216), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9216), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9216), + [aux_sym_enum_declaration_token1] = ACTIONS(9216), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9216), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9216), + [aux_sym_declare_function_statement_token1] = ACTIONS(9216), + [aux_sym_preprocessor_const_token1] = ACTIONS(9216), + [aux_sym__property_get_header_token1] = ACTIONS(9216), + [aux_sym_event_declaration_token1] = ACTIONS(9216), + [sym_static_modifier] = ACTIONS(9216), + [sym__dim_keyword] = ACTIONS(9216), + [sym__redim_keyword] = ACTIONS(9216), + [aux_sym_get_accessor_token1] = ACTIONS(9216), + [aux_sym_set_accessor_token1] = ACTIONS(9216), + [aux_sym_const_declaration_token1] = ACTIONS(9216), + [anon_sym_LPAREN] = ACTIONS(9218), + [aux_sym_as_type_clause_token2] = ACTIONS(9216), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9216), + [aux_sym_visibility_token1] = ACTIONS(9216), + [aux_sym_visibility_token2] = ACTIONS(9216), + [aux_sym_elseif_fragment_token1] = ACTIONS(9216), + [aux_sym_else_fragment_token1] = ACTIONS(9216), + [aux_sym_select_statement_token1] = ACTIONS(9216), + [aux_sym__for_header_token1] = ACTIONS(9216), + [aux_sym_do_statement_token1] = ACTIONS(9216), + [aux_sym_do_condition_token1] = ACTIONS(9216), + [aux_sym_with_statement_token1] = ACTIONS(9216), + [aux_sym_exit_statement_token1] = ACTIONS(9216), + [sym_end_statement] = ACTIONS(9218), + [aux_sym_on_goto_statement_token1] = ACTIONS(9216), + [aux_sym_on_goto_statement_token2] = ACTIONS(9216), + [aux_sym_on_error_statement_token2] = ACTIONS(9216), + [sym__ambiguous_redim_statement] = ACTIONS(9218), + [aux_sym_erase_statement_token1] = ACTIONS(9216), + [aux_sym_open_statement_token1] = ACTIONS(9216), + [aux_sym_file_mode_token2] = ACTIONS(9216), + [aux_sym_file_access_token2] = ACTIONS(9216), + [aux_sym_file_lock_token2] = ACTIONS(9216), + [aux_sym_print_statement_token1] = ACTIONS(9216), + [anon_sym_PLUS] = ACTIONS(9218), + [anon_sym_DASH] = ACTIONS(9216), + [anon_sym_QMARK] = ACTIONS(9218), + [aux_sym_close_statement_token1] = ACTIONS(9216), + [aux_sym_put_statement_token1] = ACTIONS(9216), + [aux_sym_unlock_statement_token1] = ACTIONS(9216), + [aux_sym_seek_statement_token1] = ACTIONS(9216), + [sym_reset_statement] = ACTIONS(9216), + [aux_sym_raise_event_statement_token1] = ACTIONS(9216), + [sym_stop_statement] = ACTIONS(9216), + [sym_beep_statement] = ACTIONS(9216), + [aux_sym_unload_statement_token1] = ACTIONS(9216), + [aux_sym_def_type_statement_token1] = ACTIONS(9216), + [aux_sym_def_type_statement_token2] = ACTIONS(9216), + [aux_sym_def_type_statement_token3] = ACTIONS(9216), + [aux_sym_def_type_statement_token4] = ACTIONS(9216), + [aux_sym_def_type_statement_token5] = ACTIONS(9216), + [aux_sym_def_type_statement_token6] = ACTIONS(9216), + [aux_sym_def_type_statement_token7] = ACTIONS(9216), + [aux_sym_def_type_statement_token8] = ACTIONS(9216), + [aux_sym_def_type_statement_token9] = ACTIONS(9216), + [aux_sym_def_type_statement_token10] = ACTIONS(9216), + [aux_sym_def_type_statement_token11] = ACTIONS(9216), + [aux_sym_def_type_statement_token12] = ACTIONS(9216), + [aux_sym_def_type_statement_token13] = ACTIONS(9216), + [aux_sym_def_type_statement_token14] = ACTIONS(9216), + [aux_sym_call_statement_token1] = ACTIONS(9216), + [sym__ambiguous_call_statement] = ACTIONS(9216), + [aux_sym_addressof_expression_token1] = ACTIONS(9216), + [aux_sym_type_of_expression_token1] = ACTIONS(9216), + [aux_sym_unary_expression_token1] = ACTIONS(9216), + [sym_string_literal] = ACTIONS(9218), + [sym_number_literal] = ACTIONS(9218), + [aux_sym_boolean_literal_token1] = ACTIONS(9216), + [aux_sym_boolean_literal_token2] = ACTIONS(9216), + [sym_nothing_literal] = ACTIONS(9216), + [sym_null_literal] = ACTIONS(9216), + [sym_empty_literal] = ACTIONS(9216), + [sym_date_literal] = ACTIONS(9218), + [anon_sym_POUND] = ACTIONS(9216), + }, + [STATE(4586)] = { + [sym_identifier] = ACTIONS(9220), + [sym_newline] = ACTIONS(9222), + [anon_sym_COLON] = ACTIONS(9222), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9220), + [aux_sym_frm_property_statement_token1] = ACTIONS(9220), + [anon_sym_DOT] = ACTIONS(9220), + [anon_sym_BANG] = ACTIONS(9222), + [aux_sym__attribute_identifier_token1] = ACTIONS(9220), + [aux_sym_option_statement_token3] = ACTIONS(9220), + [aux_sym_type_declaration_token1] = ACTIONS(9220), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9220), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9220), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9220), + [aux_sym_enum_declaration_token1] = ACTIONS(9220), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9220), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9220), + [aux_sym_declare_function_statement_token1] = ACTIONS(9220), + [aux_sym_preprocessor_const_token1] = ACTIONS(9220), + [aux_sym__property_get_header_token1] = ACTIONS(9220), + [aux_sym_event_declaration_token1] = ACTIONS(9220), + [sym_static_modifier] = ACTIONS(9220), + [sym__dim_keyword] = ACTIONS(9220), + [sym__redim_keyword] = ACTIONS(9220), + [aux_sym_get_accessor_token1] = ACTIONS(9220), + [aux_sym_set_accessor_token1] = ACTIONS(9220), + [aux_sym_const_declaration_token1] = ACTIONS(9220), + [anon_sym_LPAREN] = ACTIONS(9222), + [aux_sym_as_type_clause_token2] = ACTIONS(9220), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9220), + [aux_sym_visibility_token1] = ACTIONS(9220), + [aux_sym_visibility_token2] = ACTIONS(9220), + [aux_sym_elseif_fragment_token1] = ACTIONS(9220), + [aux_sym_else_fragment_token1] = ACTIONS(9220), + [aux_sym_select_statement_token1] = ACTIONS(9220), + [aux_sym__for_header_token1] = ACTIONS(9220), + [aux_sym_do_statement_token1] = ACTIONS(9220), + [aux_sym_do_condition_token1] = ACTIONS(9220), + [aux_sym_with_statement_token1] = ACTIONS(9220), + [aux_sym_exit_statement_token1] = ACTIONS(9220), + [sym_end_statement] = ACTIONS(9222), + [aux_sym_on_goto_statement_token1] = ACTIONS(9220), + [aux_sym_on_goto_statement_token2] = ACTIONS(9220), + [aux_sym_on_error_statement_token2] = ACTIONS(9220), + [sym__ambiguous_redim_statement] = ACTIONS(9222), + [aux_sym_erase_statement_token1] = ACTIONS(9220), + [aux_sym_open_statement_token1] = ACTIONS(9220), + [aux_sym_file_mode_token2] = ACTIONS(9220), + [aux_sym_file_access_token2] = ACTIONS(9220), + [aux_sym_file_lock_token2] = ACTIONS(9220), + [aux_sym_print_statement_token1] = ACTIONS(9220), + [anon_sym_PLUS] = ACTIONS(9222), + [anon_sym_DASH] = ACTIONS(9220), + [anon_sym_QMARK] = ACTIONS(9222), + [aux_sym_close_statement_token1] = ACTIONS(9220), + [aux_sym_put_statement_token1] = ACTIONS(9220), + [aux_sym_unlock_statement_token1] = ACTIONS(9220), + [aux_sym_seek_statement_token1] = ACTIONS(9220), + [sym_reset_statement] = ACTIONS(9220), + [aux_sym_raise_event_statement_token1] = ACTIONS(9220), + [sym_stop_statement] = ACTIONS(9220), + [sym_beep_statement] = ACTIONS(9220), + [aux_sym_unload_statement_token1] = ACTIONS(9220), + [aux_sym_def_type_statement_token1] = ACTIONS(9220), + [aux_sym_def_type_statement_token2] = ACTIONS(9220), + [aux_sym_def_type_statement_token3] = ACTIONS(9220), + [aux_sym_def_type_statement_token4] = ACTIONS(9220), + [aux_sym_def_type_statement_token5] = ACTIONS(9220), + [aux_sym_def_type_statement_token6] = ACTIONS(9220), + [aux_sym_def_type_statement_token7] = ACTIONS(9220), + [aux_sym_def_type_statement_token8] = ACTIONS(9220), + [aux_sym_def_type_statement_token9] = ACTIONS(9220), + [aux_sym_def_type_statement_token10] = ACTIONS(9220), + [aux_sym_def_type_statement_token11] = ACTIONS(9220), + [aux_sym_def_type_statement_token12] = ACTIONS(9220), + [aux_sym_def_type_statement_token13] = ACTIONS(9220), + [aux_sym_def_type_statement_token14] = ACTIONS(9220), + [aux_sym_call_statement_token1] = ACTIONS(9220), + [sym__ambiguous_call_statement] = ACTIONS(9220), + [aux_sym_addressof_expression_token1] = ACTIONS(9220), + [aux_sym_type_of_expression_token1] = ACTIONS(9220), + [aux_sym_unary_expression_token1] = ACTIONS(9220), + [sym_string_literal] = ACTIONS(9222), + [sym_number_literal] = ACTIONS(9222), + [aux_sym_boolean_literal_token1] = ACTIONS(9220), + [aux_sym_boolean_literal_token2] = ACTIONS(9220), + [sym_nothing_literal] = ACTIONS(9220), + [sym_null_literal] = ACTIONS(9220), + [sym_empty_literal] = ACTIONS(9220), + [sym_date_literal] = ACTIONS(9222), + [anon_sym_POUND] = ACTIONS(9220), + }, + [STATE(4587)] = { + [sym_identifier] = ACTIONS(9224), + [sym_newline] = ACTIONS(9226), + [anon_sym_COLON] = ACTIONS(9226), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9224), + [aux_sym_frm_property_statement_token1] = ACTIONS(9224), + [anon_sym_DOT] = ACTIONS(9224), + [anon_sym_BANG] = ACTIONS(9226), + [aux_sym__attribute_identifier_token1] = ACTIONS(9224), + [aux_sym_option_statement_token3] = ACTIONS(9224), + [aux_sym_type_declaration_token1] = ACTIONS(9224), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9224), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9224), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9224), + [aux_sym_enum_declaration_token1] = ACTIONS(9224), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9224), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9224), + [aux_sym_declare_function_statement_token1] = ACTIONS(9224), + [aux_sym_preprocessor_const_token1] = ACTIONS(9224), + [aux_sym__property_get_header_token1] = ACTIONS(9224), + [aux_sym_event_declaration_token1] = ACTIONS(9224), + [sym_static_modifier] = ACTIONS(9224), + [sym__dim_keyword] = ACTIONS(9224), + [sym__redim_keyword] = ACTIONS(9224), + [aux_sym_get_accessor_token1] = ACTIONS(9224), + [aux_sym_set_accessor_token1] = ACTIONS(9224), + [aux_sym_const_declaration_token1] = ACTIONS(9224), + [anon_sym_LPAREN] = ACTIONS(9226), + [aux_sym_as_type_clause_token2] = ACTIONS(9224), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9224), + [aux_sym_visibility_token1] = ACTIONS(9224), + [aux_sym_visibility_token2] = ACTIONS(9224), + [aux_sym_elseif_fragment_token1] = ACTIONS(9224), + [aux_sym_else_fragment_token1] = ACTIONS(9224), + [aux_sym_select_statement_token1] = ACTIONS(9224), + [aux_sym__for_header_token1] = ACTIONS(9224), + [aux_sym_do_statement_token1] = ACTIONS(9224), + [aux_sym_do_condition_token1] = ACTIONS(9224), + [aux_sym_with_statement_token1] = ACTIONS(9224), + [aux_sym_exit_statement_token1] = ACTIONS(9224), + [sym_end_statement] = ACTIONS(9226), + [aux_sym_on_goto_statement_token1] = ACTIONS(9224), + [aux_sym_on_goto_statement_token2] = ACTIONS(9224), + [aux_sym_on_error_statement_token2] = ACTIONS(9224), + [sym__ambiguous_redim_statement] = ACTIONS(9226), + [aux_sym_erase_statement_token1] = ACTIONS(9224), + [aux_sym_open_statement_token1] = ACTIONS(9224), + [aux_sym_file_mode_token2] = ACTIONS(9224), + [aux_sym_file_access_token2] = ACTIONS(9224), + [aux_sym_file_lock_token2] = ACTIONS(9224), + [aux_sym_print_statement_token1] = ACTIONS(9224), + [anon_sym_PLUS] = ACTIONS(9226), + [anon_sym_DASH] = ACTIONS(9224), + [anon_sym_QMARK] = ACTIONS(9226), + [aux_sym_close_statement_token1] = ACTIONS(9224), + [aux_sym_put_statement_token1] = ACTIONS(9224), + [aux_sym_unlock_statement_token1] = ACTIONS(9224), + [aux_sym_seek_statement_token1] = ACTIONS(9224), + [sym_reset_statement] = ACTIONS(9224), + [aux_sym_raise_event_statement_token1] = ACTIONS(9224), + [sym_stop_statement] = ACTIONS(9224), + [sym_beep_statement] = ACTIONS(9224), + [aux_sym_unload_statement_token1] = ACTIONS(9224), + [aux_sym_def_type_statement_token1] = ACTIONS(9224), + [aux_sym_def_type_statement_token2] = ACTIONS(9224), + [aux_sym_def_type_statement_token3] = ACTIONS(9224), + [aux_sym_def_type_statement_token4] = ACTIONS(9224), + [aux_sym_def_type_statement_token5] = ACTIONS(9224), + [aux_sym_def_type_statement_token6] = ACTIONS(9224), + [aux_sym_def_type_statement_token7] = ACTIONS(9224), + [aux_sym_def_type_statement_token8] = ACTIONS(9224), + [aux_sym_def_type_statement_token9] = ACTIONS(9224), + [aux_sym_def_type_statement_token10] = ACTIONS(9224), + [aux_sym_def_type_statement_token11] = ACTIONS(9224), + [aux_sym_def_type_statement_token12] = ACTIONS(9224), + [aux_sym_def_type_statement_token13] = ACTIONS(9224), + [aux_sym_def_type_statement_token14] = ACTIONS(9224), + [aux_sym_call_statement_token1] = ACTIONS(9224), + [sym__ambiguous_call_statement] = ACTIONS(9224), + [aux_sym_addressof_expression_token1] = ACTIONS(9224), + [aux_sym_type_of_expression_token1] = ACTIONS(9224), + [aux_sym_unary_expression_token1] = ACTIONS(9224), + [sym_string_literal] = ACTIONS(9226), + [sym_number_literal] = ACTIONS(9226), + [aux_sym_boolean_literal_token1] = ACTIONS(9224), + [aux_sym_boolean_literal_token2] = ACTIONS(9224), + [sym_nothing_literal] = ACTIONS(9224), + [sym_null_literal] = ACTIONS(9224), + [sym_empty_literal] = ACTIONS(9224), + [sym_date_literal] = ACTIONS(9226), + [anon_sym_POUND] = ACTIONS(9224), + }, + [STATE(4588)] = { + [sym_identifier] = ACTIONS(9228), + [sym_newline] = ACTIONS(9230), + [anon_sym_COLON] = ACTIONS(9230), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9228), + [aux_sym_frm_property_statement_token1] = ACTIONS(9228), + [anon_sym_DOT] = ACTIONS(9228), + [anon_sym_BANG] = ACTIONS(9230), + [aux_sym__attribute_identifier_token1] = ACTIONS(9228), + [aux_sym_option_statement_token3] = ACTIONS(9228), + [aux_sym_type_declaration_token1] = ACTIONS(9228), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9228), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9228), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9228), + [aux_sym_enum_declaration_token1] = ACTIONS(9228), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9228), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9228), + [aux_sym_declare_function_statement_token1] = ACTIONS(9228), + [aux_sym_preprocessor_const_token1] = ACTIONS(9228), + [aux_sym__property_get_header_token1] = ACTIONS(9228), + [aux_sym_event_declaration_token1] = ACTIONS(9228), + [sym_static_modifier] = ACTIONS(9228), + [sym__dim_keyword] = ACTIONS(9228), + [sym__redim_keyword] = ACTIONS(9228), + [aux_sym_get_accessor_token1] = ACTIONS(9228), + [aux_sym_set_accessor_token1] = ACTIONS(9228), + [aux_sym_const_declaration_token1] = ACTIONS(9228), + [anon_sym_LPAREN] = ACTIONS(9230), + [aux_sym_as_type_clause_token2] = ACTIONS(9228), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9228), + [aux_sym_visibility_token1] = ACTIONS(9228), + [aux_sym_visibility_token2] = ACTIONS(9228), + [aux_sym_elseif_fragment_token1] = ACTIONS(9228), + [aux_sym_else_fragment_token1] = ACTIONS(9228), + [aux_sym_select_statement_token1] = ACTIONS(9228), + [aux_sym__for_header_token1] = ACTIONS(9228), + [aux_sym_do_statement_token1] = ACTIONS(9228), + [aux_sym_do_condition_token1] = ACTIONS(9228), + [aux_sym_with_statement_token1] = ACTIONS(9228), + [aux_sym_exit_statement_token1] = ACTIONS(9228), + [sym_end_statement] = ACTIONS(9230), + [aux_sym_on_goto_statement_token1] = ACTIONS(9228), + [aux_sym_on_goto_statement_token2] = ACTIONS(9228), + [aux_sym_on_error_statement_token2] = ACTIONS(9228), + [sym__ambiguous_redim_statement] = ACTIONS(9230), + [aux_sym_erase_statement_token1] = ACTIONS(9228), + [aux_sym_open_statement_token1] = ACTIONS(9228), + [aux_sym_file_mode_token2] = ACTIONS(9228), + [aux_sym_file_access_token2] = ACTIONS(9228), + [aux_sym_file_lock_token2] = ACTIONS(9228), + [aux_sym_print_statement_token1] = ACTIONS(9228), + [anon_sym_PLUS] = ACTIONS(9230), + [anon_sym_DASH] = ACTIONS(9228), + [anon_sym_QMARK] = ACTIONS(9230), + [aux_sym_close_statement_token1] = ACTIONS(9228), + [aux_sym_put_statement_token1] = ACTIONS(9228), + [aux_sym_unlock_statement_token1] = ACTIONS(9228), + [aux_sym_seek_statement_token1] = ACTIONS(9228), + [sym_reset_statement] = ACTIONS(9228), + [aux_sym_raise_event_statement_token1] = ACTIONS(9228), + [sym_stop_statement] = ACTIONS(9228), + [sym_beep_statement] = ACTIONS(9228), + [aux_sym_unload_statement_token1] = ACTIONS(9228), + [aux_sym_def_type_statement_token1] = ACTIONS(9228), + [aux_sym_def_type_statement_token2] = ACTIONS(9228), + [aux_sym_def_type_statement_token3] = ACTIONS(9228), + [aux_sym_def_type_statement_token4] = ACTIONS(9228), + [aux_sym_def_type_statement_token5] = ACTIONS(9228), + [aux_sym_def_type_statement_token6] = ACTIONS(9228), + [aux_sym_def_type_statement_token7] = ACTIONS(9228), + [aux_sym_def_type_statement_token8] = ACTIONS(9228), + [aux_sym_def_type_statement_token9] = ACTIONS(9228), + [aux_sym_def_type_statement_token10] = ACTIONS(9228), + [aux_sym_def_type_statement_token11] = ACTIONS(9228), + [aux_sym_def_type_statement_token12] = ACTIONS(9228), + [aux_sym_def_type_statement_token13] = ACTIONS(9228), + [aux_sym_def_type_statement_token14] = ACTIONS(9228), + [aux_sym_call_statement_token1] = ACTIONS(9228), + [sym__ambiguous_call_statement] = ACTIONS(9228), + [aux_sym_addressof_expression_token1] = ACTIONS(9228), + [aux_sym_type_of_expression_token1] = ACTIONS(9228), + [aux_sym_unary_expression_token1] = ACTIONS(9228), + [sym_string_literal] = ACTIONS(9230), + [sym_number_literal] = ACTIONS(9230), + [aux_sym_boolean_literal_token1] = ACTIONS(9228), + [aux_sym_boolean_literal_token2] = ACTIONS(9228), + [sym_nothing_literal] = ACTIONS(9228), + [sym_null_literal] = ACTIONS(9228), + [sym_empty_literal] = ACTIONS(9228), + [sym_date_literal] = ACTIONS(9230), + [anon_sym_POUND] = ACTIONS(9228), + }, + [STATE(4589)] = { + [sym_identifier] = ACTIONS(9232), + [sym_newline] = ACTIONS(9234), + [anon_sym_COLON] = ACTIONS(9234), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9232), + [aux_sym_frm_property_statement_token1] = ACTIONS(9232), + [anon_sym_DOT] = ACTIONS(9232), + [anon_sym_BANG] = ACTIONS(9234), + [aux_sym__attribute_identifier_token1] = ACTIONS(9232), + [aux_sym_option_statement_token3] = ACTIONS(9232), + [aux_sym_type_declaration_token1] = ACTIONS(9232), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9232), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9232), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9232), + [aux_sym_enum_declaration_token1] = ACTIONS(9232), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9232), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9232), + [aux_sym_declare_function_statement_token1] = ACTIONS(9232), + [aux_sym_preprocessor_const_token1] = ACTIONS(9232), + [aux_sym__property_get_header_token1] = ACTIONS(9232), + [aux_sym_event_declaration_token1] = ACTIONS(9232), + [sym_static_modifier] = ACTIONS(9232), + [sym__dim_keyword] = ACTIONS(9232), + [sym__redim_keyword] = ACTIONS(9232), + [aux_sym_get_accessor_token1] = ACTIONS(9232), + [aux_sym_set_accessor_token1] = ACTIONS(9232), + [aux_sym_const_declaration_token1] = ACTIONS(9232), + [anon_sym_LPAREN] = ACTIONS(9234), + [aux_sym_as_type_clause_token2] = ACTIONS(9232), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9232), + [aux_sym_visibility_token1] = ACTIONS(9232), + [aux_sym_visibility_token2] = ACTIONS(9232), + [aux_sym_elseif_fragment_token1] = ACTIONS(9232), + [aux_sym_else_fragment_token1] = ACTIONS(9232), + [aux_sym_select_statement_token1] = ACTIONS(9232), + [aux_sym__for_header_token1] = ACTIONS(9232), + [aux_sym_do_statement_token1] = ACTIONS(9232), + [aux_sym_do_condition_token1] = ACTIONS(9232), + [aux_sym_with_statement_token1] = ACTIONS(9232), + [aux_sym_exit_statement_token1] = ACTIONS(9232), + [sym_end_statement] = ACTIONS(9234), + [aux_sym_on_goto_statement_token1] = ACTIONS(9232), + [aux_sym_on_goto_statement_token2] = ACTIONS(9232), + [aux_sym_on_error_statement_token2] = ACTIONS(9232), + [sym__ambiguous_redim_statement] = ACTIONS(9234), + [aux_sym_erase_statement_token1] = ACTIONS(9232), + [aux_sym_open_statement_token1] = ACTIONS(9232), + [aux_sym_file_mode_token2] = ACTIONS(9232), + [aux_sym_file_access_token2] = ACTIONS(9232), + [aux_sym_file_lock_token2] = ACTIONS(9232), + [aux_sym_print_statement_token1] = ACTIONS(9232), + [anon_sym_PLUS] = ACTIONS(9234), + [anon_sym_DASH] = ACTIONS(9232), + [anon_sym_QMARK] = ACTIONS(9234), + [aux_sym_close_statement_token1] = ACTIONS(9232), + [aux_sym_put_statement_token1] = ACTIONS(9232), + [aux_sym_unlock_statement_token1] = ACTIONS(9232), + [aux_sym_seek_statement_token1] = ACTIONS(9232), + [sym_reset_statement] = ACTIONS(9232), + [aux_sym_raise_event_statement_token1] = ACTIONS(9232), + [sym_stop_statement] = ACTIONS(9232), + [sym_beep_statement] = ACTIONS(9232), + [aux_sym_unload_statement_token1] = ACTIONS(9232), + [aux_sym_def_type_statement_token1] = ACTIONS(9232), + [aux_sym_def_type_statement_token2] = ACTIONS(9232), + [aux_sym_def_type_statement_token3] = ACTIONS(9232), + [aux_sym_def_type_statement_token4] = ACTIONS(9232), + [aux_sym_def_type_statement_token5] = ACTIONS(9232), + [aux_sym_def_type_statement_token6] = ACTIONS(9232), + [aux_sym_def_type_statement_token7] = ACTIONS(9232), + [aux_sym_def_type_statement_token8] = ACTIONS(9232), + [aux_sym_def_type_statement_token9] = ACTIONS(9232), + [aux_sym_def_type_statement_token10] = ACTIONS(9232), + [aux_sym_def_type_statement_token11] = ACTIONS(9232), + [aux_sym_def_type_statement_token12] = ACTIONS(9232), + [aux_sym_def_type_statement_token13] = ACTIONS(9232), + [aux_sym_def_type_statement_token14] = ACTIONS(9232), + [aux_sym_call_statement_token1] = ACTIONS(9232), + [sym__ambiguous_call_statement] = ACTIONS(9232), + [aux_sym_addressof_expression_token1] = ACTIONS(9232), + [aux_sym_type_of_expression_token1] = ACTIONS(9232), + [aux_sym_unary_expression_token1] = ACTIONS(9232), + [sym_string_literal] = ACTIONS(9234), + [sym_number_literal] = ACTIONS(9234), + [aux_sym_boolean_literal_token1] = ACTIONS(9232), + [aux_sym_boolean_literal_token2] = ACTIONS(9232), + [sym_nothing_literal] = ACTIONS(9232), + [sym_null_literal] = ACTIONS(9232), + [sym_empty_literal] = ACTIONS(9232), + [sym_date_literal] = ACTIONS(9234), + [anon_sym_POUND] = ACTIONS(9232), + }, + [STATE(4590)] = { + [sym_identifier] = ACTIONS(9236), + [sym_newline] = ACTIONS(9238), + [anon_sym_COLON] = ACTIONS(9238), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9236), + [aux_sym_frm_property_statement_token1] = ACTIONS(9236), + [anon_sym_DOT] = ACTIONS(9236), + [anon_sym_BANG] = ACTIONS(9238), + [aux_sym__attribute_identifier_token1] = ACTIONS(9236), + [aux_sym_option_statement_token3] = ACTIONS(9236), + [aux_sym_type_declaration_token1] = ACTIONS(9236), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9236), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9236), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9236), + [aux_sym_enum_declaration_token1] = ACTIONS(9236), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9236), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9236), + [aux_sym_declare_function_statement_token1] = ACTIONS(9236), + [aux_sym_preprocessor_const_token1] = ACTIONS(9236), + [aux_sym__property_get_header_token1] = ACTIONS(9236), + [aux_sym_event_declaration_token1] = ACTIONS(9236), + [sym_static_modifier] = ACTIONS(9236), + [sym__dim_keyword] = ACTIONS(9236), + [sym__redim_keyword] = ACTIONS(9236), + [aux_sym_get_accessor_token1] = ACTIONS(9236), + [aux_sym_set_accessor_token1] = ACTIONS(9236), + [aux_sym_const_declaration_token1] = ACTIONS(9236), + [anon_sym_LPAREN] = ACTIONS(9238), + [aux_sym_as_type_clause_token2] = ACTIONS(9236), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9236), + [aux_sym_visibility_token1] = ACTIONS(9236), + [aux_sym_visibility_token2] = ACTIONS(9236), + [aux_sym_elseif_fragment_token1] = ACTIONS(9236), + [aux_sym_else_fragment_token1] = ACTIONS(9236), + [aux_sym_select_statement_token1] = ACTIONS(9236), + [aux_sym__for_header_token1] = ACTIONS(9236), + [aux_sym_do_statement_token1] = ACTIONS(9236), + [aux_sym_do_condition_token1] = ACTIONS(9236), + [aux_sym_with_statement_token1] = ACTIONS(9236), + [aux_sym_exit_statement_token1] = ACTIONS(9236), + [sym_end_statement] = ACTIONS(9238), + [aux_sym_on_goto_statement_token1] = ACTIONS(9236), + [aux_sym_on_goto_statement_token2] = ACTIONS(9236), + [aux_sym_on_error_statement_token2] = ACTIONS(9236), + [sym__ambiguous_redim_statement] = ACTIONS(9238), + [aux_sym_erase_statement_token1] = ACTIONS(9236), + [aux_sym_open_statement_token1] = ACTIONS(9236), + [aux_sym_file_mode_token2] = ACTIONS(9236), + [aux_sym_file_access_token2] = ACTIONS(9236), + [aux_sym_file_lock_token2] = ACTIONS(9236), + [aux_sym_print_statement_token1] = ACTIONS(9236), + [anon_sym_PLUS] = ACTIONS(9238), + [anon_sym_DASH] = ACTIONS(9236), + [anon_sym_QMARK] = ACTIONS(9238), + [aux_sym_close_statement_token1] = ACTIONS(9236), + [aux_sym_put_statement_token1] = ACTIONS(9236), + [aux_sym_unlock_statement_token1] = ACTIONS(9236), + [aux_sym_seek_statement_token1] = ACTIONS(9236), + [sym_reset_statement] = ACTIONS(9236), + [aux_sym_raise_event_statement_token1] = ACTIONS(9236), + [sym_stop_statement] = ACTIONS(9236), + [sym_beep_statement] = ACTIONS(9236), + [aux_sym_unload_statement_token1] = ACTIONS(9236), + [aux_sym_def_type_statement_token1] = ACTIONS(9236), + [aux_sym_def_type_statement_token2] = ACTIONS(9236), + [aux_sym_def_type_statement_token3] = ACTIONS(9236), + [aux_sym_def_type_statement_token4] = ACTIONS(9236), + [aux_sym_def_type_statement_token5] = ACTIONS(9236), + [aux_sym_def_type_statement_token6] = ACTIONS(9236), + [aux_sym_def_type_statement_token7] = ACTIONS(9236), + [aux_sym_def_type_statement_token8] = ACTIONS(9236), + [aux_sym_def_type_statement_token9] = ACTIONS(9236), + [aux_sym_def_type_statement_token10] = ACTIONS(9236), + [aux_sym_def_type_statement_token11] = ACTIONS(9236), + [aux_sym_def_type_statement_token12] = ACTIONS(9236), + [aux_sym_def_type_statement_token13] = ACTIONS(9236), + [aux_sym_def_type_statement_token14] = ACTIONS(9236), + [aux_sym_call_statement_token1] = ACTIONS(9236), + [sym__ambiguous_call_statement] = ACTIONS(9236), + [aux_sym_addressof_expression_token1] = ACTIONS(9236), + [aux_sym_type_of_expression_token1] = ACTIONS(9236), + [aux_sym_unary_expression_token1] = ACTIONS(9236), + [sym_string_literal] = ACTIONS(9238), + [sym_number_literal] = ACTIONS(9238), + [aux_sym_boolean_literal_token1] = ACTIONS(9236), + [aux_sym_boolean_literal_token2] = ACTIONS(9236), + [sym_nothing_literal] = ACTIONS(9236), + [sym_null_literal] = ACTIONS(9236), + [sym_empty_literal] = ACTIONS(9236), + [sym_date_literal] = ACTIONS(9238), + [anon_sym_POUND] = ACTIONS(9236), + }, + [STATE(4591)] = { + [sym_identifier] = ACTIONS(9240), + [sym_newline] = ACTIONS(9242), + [anon_sym_COLON] = ACTIONS(9242), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9240), + [aux_sym_frm_property_statement_token1] = ACTIONS(9240), + [anon_sym_DOT] = ACTIONS(9240), + [anon_sym_BANG] = ACTIONS(9242), + [aux_sym__attribute_identifier_token1] = ACTIONS(9240), + [aux_sym_option_statement_token3] = ACTIONS(9240), + [aux_sym_type_declaration_token1] = ACTIONS(9240), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9240), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9240), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9240), + [aux_sym_enum_declaration_token1] = ACTIONS(9240), + [aux_sym_declare_sub_statement_token1] = ACTIONS(9240), + [aux_sym_declare_sub_statement_token2] = ACTIONS(9240), + [aux_sym_declare_function_statement_token1] = ACTIONS(9240), + [aux_sym_preprocessor_const_token1] = ACTIONS(9240), + [aux_sym__property_get_header_token1] = ACTIONS(9240), + [aux_sym_event_declaration_token1] = ACTIONS(9240), + [sym_static_modifier] = ACTIONS(9240), + [sym__dim_keyword] = ACTIONS(9240), + [sym__redim_keyword] = ACTIONS(9240), + [aux_sym_get_accessor_token1] = ACTIONS(9240), + [aux_sym_set_accessor_token1] = ACTIONS(9240), + [aux_sym_const_declaration_token1] = ACTIONS(9240), + [anon_sym_LPAREN] = ACTIONS(9242), + [aux_sym_as_type_clause_token2] = ACTIONS(9240), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9240), + [aux_sym_visibility_token1] = ACTIONS(9240), + [aux_sym_visibility_token2] = ACTIONS(9240), + [aux_sym_elseif_fragment_token1] = ACTIONS(9240), + [aux_sym_else_fragment_token1] = ACTIONS(9240), + [aux_sym_select_statement_token1] = ACTIONS(9240), + [aux_sym__for_header_token1] = ACTIONS(9240), + [aux_sym_do_statement_token1] = ACTIONS(9240), + [aux_sym_do_condition_token1] = ACTIONS(9240), + [aux_sym_with_statement_token1] = ACTIONS(9240), + [aux_sym_exit_statement_token1] = ACTIONS(9240), + [sym_end_statement] = ACTIONS(9242), + [aux_sym_on_goto_statement_token1] = ACTIONS(9240), + [aux_sym_on_goto_statement_token2] = ACTIONS(9240), + [aux_sym_on_error_statement_token2] = ACTIONS(9240), + [sym__ambiguous_redim_statement] = ACTIONS(9242), + [aux_sym_erase_statement_token1] = ACTIONS(9240), + [aux_sym_open_statement_token1] = ACTIONS(9240), + [aux_sym_file_mode_token2] = ACTIONS(9240), + [aux_sym_file_access_token2] = ACTIONS(9240), + [aux_sym_file_lock_token2] = ACTIONS(9240), + [aux_sym_print_statement_token1] = ACTIONS(9240), + [anon_sym_PLUS] = ACTIONS(9242), + [anon_sym_DASH] = ACTIONS(9240), + [anon_sym_QMARK] = ACTIONS(9242), + [aux_sym_close_statement_token1] = ACTIONS(9240), + [aux_sym_put_statement_token1] = ACTIONS(9240), + [aux_sym_unlock_statement_token1] = ACTIONS(9240), + [aux_sym_seek_statement_token1] = ACTIONS(9240), + [sym_reset_statement] = ACTIONS(9240), + [aux_sym_raise_event_statement_token1] = ACTIONS(9240), + [sym_stop_statement] = ACTIONS(9240), + [sym_beep_statement] = ACTIONS(9240), + [aux_sym_unload_statement_token1] = ACTIONS(9240), + [aux_sym_def_type_statement_token1] = ACTIONS(9240), + [aux_sym_def_type_statement_token2] = ACTIONS(9240), + [aux_sym_def_type_statement_token3] = ACTIONS(9240), + [aux_sym_def_type_statement_token4] = ACTIONS(9240), + [aux_sym_def_type_statement_token5] = ACTIONS(9240), + [aux_sym_def_type_statement_token6] = ACTIONS(9240), + [aux_sym_def_type_statement_token7] = ACTIONS(9240), + [aux_sym_def_type_statement_token8] = ACTIONS(9240), + [aux_sym_def_type_statement_token9] = ACTIONS(9240), + [aux_sym_def_type_statement_token10] = ACTIONS(9240), + [aux_sym_def_type_statement_token11] = ACTIONS(9240), + [aux_sym_def_type_statement_token12] = ACTIONS(9240), + [aux_sym_def_type_statement_token13] = ACTIONS(9240), + [aux_sym_def_type_statement_token14] = ACTIONS(9240), + [aux_sym_call_statement_token1] = ACTIONS(9240), + [sym__ambiguous_call_statement] = ACTIONS(9240), + [aux_sym_addressof_expression_token1] = ACTIONS(9240), + [aux_sym_type_of_expression_token1] = ACTIONS(9240), + [aux_sym_unary_expression_token1] = ACTIONS(9240), + [sym_string_literal] = ACTIONS(9242), + [sym_number_literal] = ACTIONS(9242), + [aux_sym_boolean_literal_token1] = ACTIONS(9240), + [aux_sym_boolean_literal_token2] = ACTIONS(9240), + [sym_nothing_literal] = ACTIONS(9240), + [sym_null_literal] = ACTIONS(9240), + [sym_empty_literal] = ACTIONS(9240), + [sym_date_literal] = ACTIONS(9242), + [anon_sym_POUND] = ACTIONS(9240), + }, + [STATE(4592)] = { + [sym_next_variable_list] = STATE(6529), + [sym__assignable_expression] = STATE(5585), + [sym__callable_expression] = STATE(5394), + [sym_call_expression] = STATE(5098), + [sym_member_expression] = STATE(6089), + [sym_qualified_member_expression] = STATE(6126), + [sym_implicit_member_expression] = STATE(6126), + [sym_identifier] = ACTIONS(9923), + [sym_newline] = ACTIONS(6842), + [anon_sym_COLON] = ACTIONS(6842), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6844), + [aux_sym_frm_property_statement_token1] = ACTIONS(9925), + [anon_sym_DOT] = ACTIONS(9927), + [anon_sym_BANG] = ACTIONS(9929), + [aux_sym__attribute_identifier_token1] = ACTIONS(6844), + [aux_sym_option_statement_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6844), + [aux_sym_preprocessor_const_token1] = ACTIONS(6844), + [sym_static_modifier] = ACTIONS(6844), + [sym__dim_keyword] = ACTIONS(6844), + [sym__redim_keyword] = ACTIONS(6844), + [aux_sym_get_accessor_token1] = ACTIONS(6844), + [aux_sym_set_accessor_token1] = ACTIONS(6844), + [aux_sym_const_declaration_token1] = ACTIONS(6844), + [anon_sym_LPAREN] = ACTIONS(6842), + [aux_sym_as_type_clause_token2] = ACTIONS(6844), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9931), + [aux_sym_visibility_token1] = ACTIONS(6844), + [aux_sym_visibility_token2] = ACTIONS(6844), + [aux_sym_elseif_fragment_token1] = ACTIONS(6844), + [aux_sym_else_fragment_token1] = ACTIONS(6844), + [aux_sym_select_statement_token1] = ACTIONS(6844), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6844), + [aux_sym__for_header_token1] = ACTIONS(6844), + [aux_sym_do_statement_token1] = ACTIONS(6844), + [aux_sym_do_condition_token1] = ACTIONS(6844), + [aux_sym_with_statement_token1] = ACTIONS(6844), + [aux_sym_exit_statement_token1] = ACTIONS(6844), + [sym_end_statement] = ACTIONS(6842), + [aux_sym_on_goto_statement_token1] = ACTIONS(6844), + [aux_sym_on_goto_statement_token2] = ACTIONS(6844), + [aux_sym_on_error_statement_token2] = ACTIONS(6844), + [sym__ambiguous_redim_statement] = ACTIONS(6842), + [aux_sym_erase_statement_token1] = ACTIONS(6844), + [aux_sym_open_statement_token1] = ACTIONS(6844), + [aux_sym_file_mode_token2] = ACTIONS(6844), + [aux_sym_file_access_token2] = ACTIONS(6844), + [aux_sym_file_lock_token2] = ACTIONS(6844), + [aux_sym_print_statement_token1] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6842), + [aux_sym_close_statement_token1] = ACTIONS(6844), + [aux_sym_put_statement_token1] = ACTIONS(6844), + [aux_sym_unlock_statement_token1] = ACTIONS(6844), + [aux_sym_seek_statement_token1] = ACTIONS(6844), + [sym_reset_statement] = ACTIONS(6844), + [aux_sym_raise_event_statement_token1] = ACTIONS(6844), + [sym_stop_statement] = ACTIONS(6844), + [sym_beep_statement] = ACTIONS(6844), + [aux_sym_unload_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token2] = ACTIONS(6844), + [aux_sym_def_type_statement_token3] = ACTIONS(6844), + [aux_sym_def_type_statement_token4] = ACTIONS(6844), + [aux_sym_def_type_statement_token5] = ACTIONS(6844), + [aux_sym_def_type_statement_token6] = ACTIONS(6844), + [aux_sym_def_type_statement_token7] = ACTIONS(6844), + [aux_sym_def_type_statement_token8] = ACTIONS(6844), + [aux_sym_def_type_statement_token9] = ACTIONS(6844), + [aux_sym_def_type_statement_token10] = ACTIONS(6844), + [aux_sym_def_type_statement_token11] = ACTIONS(6844), + [aux_sym_def_type_statement_token12] = ACTIONS(6844), + [aux_sym_def_type_statement_token13] = ACTIONS(6844), + [aux_sym_def_type_statement_token14] = ACTIONS(6844), + [aux_sym_call_statement_token1] = ACTIONS(6844), + [sym__ambiguous_call_statement] = ACTIONS(6844), + [aux_sym_addressof_expression_token1] = ACTIONS(6844), + [aux_sym_type_of_expression_token1] = ACTIONS(6844), + [aux_sym_unary_expression_token1] = ACTIONS(6844), + [sym_string_literal] = ACTIONS(6842), + [sym_number_literal] = ACTIONS(6842), + [aux_sym_boolean_literal_token1] = ACTIONS(6844), + [aux_sym_boolean_literal_token2] = ACTIONS(6844), + [sym_nothing_literal] = ACTIONS(6844), + [sym_null_literal] = ACTIONS(6844), + [sym_empty_literal] = ACTIONS(6844), + [sym_date_literal] = ACTIONS(6842), + [anon_sym_POUND] = ACTIONS(6844), + }, + [STATE(4593)] = { + [sym_identifier] = ACTIONS(5699), + [sym_newline] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5701), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5699), + [aux_sym_frm_property_statement_token1] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5699), + [anon_sym_BANG] = ACTIONS(5701), + [aux_sym__attribute_identifier_token1] = ACTIONS(5699), + [aux_sym_option_statement_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5699), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5699), + [aux_sym_preprocessor_const_token1] = ACTIONS(5699), + [sym_static_modifier] = ACTIONS(5699), + [sym__dim_keyword] = ACTIONS(5699), + [sym__redim_keyword] = ACTIONS(5699), + [aux_sym_get_accessor_token1] = ACTIONS(5699), + [aux_sym_set_accessor_token1] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5701), + [aux_sym_const_declaration_token1] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(5701), + [aux_sym_as_type_clause_token2] = ACTIONS(5699), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5699), + [aux_sym_visibility_token1] = ACTIONS(5699), + [aux_sym_visibility_token2] = ACTIONS(5699), + [aux_sym_elseif_fragment_token1] = ACTIONS(5699), + [aux_sym_else_fragment_token1] = ACTIONS(5699), + [aux_sym_select_statement_token1] = ACTIONS(5699), + [aux_sym__for_header_token1] = ACTIONS(5699), + [aux_sym_do_statement_token1] = ACTIONS(5699), + [aux_sym_do_condition_token1] = ACTIONS(5699), + [aux_sym_with_statement_token1] = ACTIONS(5699), + [aux_sym_exit_statement_token1] = ACTIONS(5699), + [sym_end_statement] = ACTIONS(5701), + [aux_sym_on_goto_statement_token1] = ACTIONS(5699), + [aux_sym_on_goto_statement_token2] = ACTIONS(5699), + [aux_sym_on_error_statement_token2] = ACTIONS(5699), + [sym__ambiguous_redim_statement] = ACTIONS(5701), + [aux_sym_erase_statement_token1] = ACTIONS(5699), + [aux_sym_open_statement_token1] = ACTIONS(5699), + [aux_sym_file_mode_token2] = ACTIONS(5699), + [aux_sym_file_access_token2] = ACTIONS(5699), + [aux_sym_file_lock_token2] = ACTIONS(5699), + [aux_sym_print_statement_token1] = ACTIONS(5699), + [anon_sym_PLUS] = ACTIONS(5701), + [anon_sym_DASH] = ACTIONS(5699), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(9983), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(9985), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5701), + [aux_sym_close_statement_token1] = ACTIONS(5699), + [aux_sym_put_statement_token1] = ACTIONS(5699), + [aux_sym_unlock_statement_token1] = ACTIONS(5699), + [aux_sym_seek_statement_token1] = ACTIONS(5699), + [sym_reset_statement] = ACTIONS(5699), + [aux_sym_raise_event_statement_token1] = ACTIONS(5699), + [sym_stop_statement] = ACTIONS(5699), + [sym_beep_statement] = ACTIONS(5699), + [aux_sym_unload_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token2] = ACTIONS(5699), + [aux_sym_def_type_statement_token3] = ACTIONS(5699), + [aux_sym_def_type_statement_token4] = ACTIONS(5699), + [aux_sym_def_type_statement_token5] = ACTIONS(5699), + [aux_sym_def_type_statement_token6] = ACTIONS(5699), + [aux_sym_def_type_statement_token7] = ACTIONS(5699), + [aux_sym_def_type_statement_token8] = ACTIONS(5699), + [aux_sym_def_type_statement_token9] = ACTIONS(5699), + [aux_sym_def_type_statement_token10] = ACTIONS(5699), + [aux_sym_def_type_statement_token11] = ACTIONS(5699), + [aux_sym_def_type_statement_token12] = ACTIONS(5699), + [aux_sym_def_type_statement_token13] = ACTIONS(5699), + [aux_sym_def_type_statement_token14] = ACTIONS(5699), + [aux_sym_call_statement_token1] = ACTIONS(5699), + [sym__ambiguous_call_statement] = ACTIONS(5699), + [aux_sym_addressof_expression_token1] = ACTIONS(5699), + [aux_sym_type_of_expression_token1] = ACTIONS(5699), + [aux_sym_unary_expression_token1] = ACTIONS(5699), + [sym_string_literal] = ACTIONS(5701), + [sym_number_literal] = ACTIONS(5701), + [aux_sym_boolean_literal_token1] = ACTIONS(5699), + [aux_sym_boolean_literal_token2] = ACTIONS(5699), + [sym_nothing_literal] = ACTIONS(5699), + [sym_null_literal] = ACTIONS(5699), + [sym_empty_literal] = ACTIONS(5699), + [sym_date_literal] = ACTIONS(5701), + [anon_sym_POUND] = ACTIONS(5699), + }, + [STATE(4594)] = { + [sym_identifier] = ACTIONS(5869), + [sym_newline] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5869), + [aux_sym_frm_property_statement_token1] = ACTIONS(5869), + [anon_sym_DOT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [aux_sym__attribute_identifier_token1] = ACTIONS(5869), + [aux_sym_option_statement_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5869), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5869), + [aux_sym_preprocessor_const_token1] = ACTIONS(5869), + [sym_static_modifier] = ACTIONS(5869), + [sym__dim_keyword] = ACTIONS(5869), + [sym__redim_keyword] = ACTIONS(5869), + [aux_sym_get_accessor_token1] = ACTIONS(5869), + [aux_sym_set_accessor_token1] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5871), + [aux_sym_const_declaration_token1] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5871), + [aux_sym_as_type_clause_token2] = ACTIONS(5869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5869), + [aux_sym_visibility_token1] = ACTIONS(5869), + [aux_sym_visibility_token2] = ACTIONS(5869), + [aux_sym_elseif_fragment_token1] = ACTIONS(5869), + [aux_sym_else_fragment_token1] = ACTIONS(5869), + [aux_sym_select_statement_token1] = ACTIONS(5869), + [aux_sym__for_header_token1] = ACTIONS(5869), + [aux_sym_do_statement_token1] = ACTIONS(5869), + [aux_sym_do_condition_token1] = ACTIONS(5869), + [aux_sym_with_statement_token1] = ACTIONS(5869), + [aux_sym_exit_statement_token1] = ACTIONS(5869), + [sym_end_statement] = ACTIONS(5871), + [aux_sym_on_goto_statement_token1] = ACTIONS(5869), + [aux_sym_on_goto_statement_token2] = ACTIONS(5869), + [aux_sym_on_error_statement_token2] = ACTIONS(5869), + [sym__ambiguous_redim_statement] = ACTIONS(5871), + [aux_sym_erase_statement_token1] = ACTIONS(5869), + [aux_sym_open_statement_token1] = ACTIONS(5869), + [aux_sym_file_mode_token2] = ACTIONS(5869), + [aux_sym_file_access_token2] = ACTIONS(5869), + [aux_sym_file_lock_token2] = ACTIONS(5869), + [aux_sym_print_statement_token1] = ACTIONS(5869), + [anon_sym_PLUS] = ACTIONS(5871), + [anon_sym_DASH] = ACTIONS(5869), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(9983), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(9985), + [anon_sym_SEMI] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [aux_sym_close_statement_token1] = ACTIONS(5869), + [aux_sym_put_statement_token1] = ACTIONS(5869), + [aux_sym_unlock_statement_token1] = ACTIONS(5869), + [aux_sym_seek_statement_token1] = ACTIONS(5869), + [sym_reset_statement] = ACTIONS(5869), + [aux_sym_raise_event_statement_token1] = ACTIONS(5869), + [sym_stop_statement] = ACTIONS(5869), + [sym_beep_statement] = ACTIONS(5869), + [aux_sym_unload_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token2] = ACTIONS(5869), + [aux_sym_def_type_statement_token3] = ACTIONS(5869), + [aux_sym_def_type_statement_token4] = ACTIONS(5869), + [aux_sym_def_type_statement_token5] = ACTIONS(5869), + [aux_sym_def_type_statement_token6] = ACTIONS(5869), + [aux_sym_def_type_statement_token7] = ACTIONS(5869), + [aux_sym_def_type_statement_token8] = ACTIONS(5869), + [aux_sym_def_type_statement_token9] = ACTIONS(5869), + [aux_sym_def_type_statement_token10] = ACTIONS(5869), + [aux_sym_def_type_statement_token11] = ACTIONS(5869), + [aux_sym_def_type_statement_token12] = ACTIONS(5869), + [aux_sym_def_type_statement_token13] = ACTIONS(5869), + [aux_sym_def_type_statement_token14] = ACTIONS(5869), + [aux_sym_call_statement_token1] = ACTIONS(5869), + [sym__ambiguous_call_statement] = ACTIONS(5869), + [aux_sym_addressof_expression_token1] = ACTIONS(5869), + [aux_sym_type_of_expression_token1] = ACTIONS(5869), + [aux_sym_unary_expression_token1] = ACTIONS(5869), + [sym_string_literal] = ACTIONS(5871), + [sym_number_literal] = ACTIONS(5871), + [aux_sym_boolean_literal_token1] = ACTIONS(5869), + [aux_sym_boolean_literal_token2] = ACTIONS(5869), + [sym_nothing_literal] = ACTIONS(5869), + [sym_null_literal] = ACTIONS(5869), + [sym_empty_literal] = ACTIONS(5869), + [sym_date_literal] = ACTIONS(5871), + [anon_sym_POUND] = ACTIONS(5869), + }, + [STATE(4595)] = { + [sym_next_variable_list] = STATE(7170), + [sym__assignable_expression] = STATE(5844), + [sym__callable_expression] = STATE(5929), + [sym_call_expression] = STATE(6127), + [sym_member_expression] = STATE(6743), + [sym_qualified_member_expression] = STATE(6669), + [sym_implicit_member_expression] = STATE(6669), + [sym_identifier] = ACTIONS(9987), + [sym_newline] = ACTIONS(6810), + [anon_sym_COLON] = ACTIONS(6810), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6812), + [aux_sym_frm_property_statement_token1] = ACTIONS(9989), + [anon_sym_DOT] = ACTIONS(9991), + [anon_sym_BANG] = ACTIONS(9993), + [aux_sym__attribute_identifier_token1] = ACTIONS(6812), + [aux_sym_option_statement_token3] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6812), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6812), + [aux_sym_preprocessor_const_token1] = ACTIONS(6812), + [sym_static_modifier] = ACTIONS(6812), + [sym__dim_keyword] = ACTIONS(6812), + [sym__redim_keyword] = ACTIONS(6812), + [aux_sym_get_accessor_token1] = ACTIONS(6812), + [aux_sym_set_accessor_token1] = ACTIONS(6812), + [aux_sym_const_declaration_token1] = ACTIONS(6812), + [anon_sym_LPAREN] = ACTIONS(6810), + [aux_sym_as_type_clause_token2] = ACTIONS(6812), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9995), + [aux_sym_visibility_token1] = ACTIONS(6812), + [aux_sym_visibility_token2] = ACTIONS(6812), + [aux_sym_elseif_fragment_token1] = ACTIONS(6812), + [aux_sym_else_fragment_token1] = ACTIONS(6812), + [aux_sym_select_statement_token1] = ACTIONS(6812), + [aux_sym__for_header_token1] = ACTIONS(6812), + [aux_sym_do_statement_token1] = ACTIONS(6812), + [aux_sym_do_condition_token1] = ACTIONS(6812), + [aux_sym_with_statement_token1] = ACTIONS(6812), + [aux_sym_exit_statement_token1] = ACTIONS(6812), + [sym_end_statement] = ACTIONS(6810), + [aux_sym_on_goto_statement_token1] = ACTIONS(6812), + [aux_sym_on_goto_statement_token2] = ACTIONS(6812), + [aux_sym_on_error_statement_token2] = ACTIONS(6812), + [sym__ambiguous_redim_statement] = ACTIONS(6810), + [aux_sym_erase_statement_token1] = ACTIONS(6812), + [aux_sym_open_statement_token1] = ACTIONS(6812), + [aux_sym_file_mode_token2] = ACTIONS(6812), + [aux_sym_file_access_token2] = ACTIONS(6812), + [aux_sym_file_lock_token2] = ACTIONS(6812), + [aux_sym_print_statement_token1] = ACTIONS(6812), + [anon_sym_PLUS] = ACTIONS(6810), + [anon_sym_DASH] = ACTIONS(6812), + [anon_sym_QMARK] = ACTIONS(6810), + [aux_sym_close_statement_token1] = ACTIONS(6812), + [aux_sym_put_statement_token1] = ACTIONS(6812), + [aux_sym_unlock_statement_token1] = ACTIONS(6812), + [aux_sym_seek_statement_token1] = ACTIONS(6812), + [sym_reset_statement] = ACTIONS(6812), + [aux_sym_raise_event_statement_token1] = ACTIONS(6812), + [sym_stop_statement] = ACTIONS(6812), + [sym_beep_statement] = ACTIONS(6812), + [aux_sym_unload_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token1] = ACTIONS(6812), + [aux_sym_def_type_statement_token2] = ACTIONS(6812), + [aux_sym_def_type_statement_token3] = ACTIONS(6812), + [aux_sym_def_type_statement_token4] = ACTIONS(6812), + [aux_sym_def_type_statement_token5] = ACTIONS(6812), + [aux_sym_def_type_statement_token6] = ACTIONS(6812), + [aux_sym_def_type_statement_token7] = ACTIONS(6812), + [aux_sym_def_type_statement_token8] = ACTIONS(6812), + [aux_sym_def_type_statement_token9] = ACTIONS(6812), + [aux_sym_def_type_statement_token10] = ACTIONS(6812), + [aux_sym_def_type_statement_token11] = ACTIONS(6812), + [aux_sym_def_type_statement_token12] = ACTIONS(6812), + [aux_sym_def_type_statement_token13] = ACTIONS(6812), + [aux_sym_def_type_statement_token14] = ACTIONS(6812), + [aux_sym_call_statement_token1] = ACTIONS(6812), + [sym__ambiguous_call_statement] = ACTIONS(6812), + [aux_sym_addressof_expression_token1] = ACTIONS(6812), + [aux_sym_type_of_expression_token1] = ACTIONS(6812), + [aux_sym_unary_expression_token1] = ACTIONS(6812), + [sym_string_literal] = ACTIONS(6810), + [sym_number_literal] = ACTIONS(6810), + [aux_sym_boolean_literal_token1] = ACTIONS(6812), + [aux_sym_boolean_literal_token2] = ACTIONS(6812), + [sym_nothing_literal] = ACTIONS(6812), + [sym_null_literal] = ACTIONS(6812), + [sym_empty_literal] = ACTIONS(6812), + [sym_date_literal] = ACTIONS(6810), + [anon_sym_POUND] = ACTIONS(6812), + }, + [STATE(4596)] = { + [sym_next_variable_list] = STATE(7171), + [sym__assignable_expression] = STATE(5844), + [sym__callable_expression] = STATE(5929), + [sym_call_expression] = STATE(6127), + [sym_member_expression] = STATE(6743), + [sym_qualified_member_expression] = STATE(6669), + [sym_implicit_member_expression] = STATE(6669), + [sym_identifier] = ACTIONS(9987), + [sym_newline] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6828), + [aux_sym_frm_property_statement_token1] = ACTIONS(9989), + [anon_sym_DOT] = ACTIONS(9991), + [anon_sym_BANG] = ACTIONS(9993), + [aux_sym__attribute_identifier_token1] = ACTIONS(6828), + [aux_sym_option_statement_token3] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6828), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6828), + [aux_sym_preprocessor_const_token1] = ACTIONS(6828), + [sym_static_modifier] = ACTIONS(6828), + [sym__dim_keyword] = ACTIONS(6828), + [sym__redim_keyword] = ACTIONS(6828), + [aux_sym_get_accessor_token1] = ACTIONS(6828), + [aux_sym_set_accessor_token1] = ACTIONS(6828), + [aux_sym_const_declaration_token1] = ACTIONS(6828), + [anon_sym_LPAREN] = ACTIONS(6826), + [aux_sym_as_type_clause_token2] = ACTIONS(6828), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9995), + [aux_sym_visibility_token1] = ACTIONS(6828), + [aux_sym_visibility_token2] = ACTIONS(6828), + [aux_sym_elseif_fragment_token1] = ACTIONS(6828), + [aux_sym_else_fragment_token1] = ACTIONS(6828), + [aux_sym_select_statement_token1] = ACTIONS(6828), + [aux_sym__for_header_token1] = ACTIONS(6828), + [aux_sym_do_statement_token1] = ACTIONS(6828), + [aux_sym_do_condition_token1] = ACTIONS(6828), + [aux_sym_with_statement_token1] = ACTIONS(6828), + [aux_sym_exit_statement_token1] = ACTIONS(6828), + [sym_end_statement] = ACTIONS(6826), + [aux_sym_on_goto_statement_token1] = ACTIONS(6828), + [aux_sym_on_goto_statement_token2] = ACTIONS(6828), + [aux_sym_on_error_statement_token2] = ACTIONS(6828), + [sym__ambiguous_redim_statement] = ACTIONS(6826), + [aux_sym_erase_statement_token1] = ACTIONS(6828), + [aux_sym_open_statement_token1] = ACTIONS(6828), + [aux_sym_file_mode_token2] = ACTIONS(6828), + [aux_sym_file_access_token2] = ACTIONS(6828), + [aux_sym_file_lock_token2] = ACTIONS(6828), + [aux_sym_print_statement_token1] = ACTIONS(6828), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_DASH] = ACTIONS(6828), + [anon_sym_QMARK] = ACTIONS(6826), + [aux_sym_close_statement_token1] = ACTIONS(6828), + [aux_sym_put_statement_token1] = ACTIONS(6828), + [aux_sym_unlock_statement_token1] = ACTIONS(6828), + [aux_sym_seek_statement_token1] = ACTIONS(6828), + [sym_reset_statement] = ACTIONS(6828), + [aux_sym_raise_event_statement_token1] = ACTIONS(6828), + [sym_stop_statement] = ACTIONS(6828), + [sym_beep_statement] = ACTIONS(6828), + [aux_sym_unload_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token1] = ACTIONS(6828), + [aux_sym_def_type_statement_token2] = ACTIONS(6828), + [aux_sym_def_type_statement_token3] = ACTIONS(6828), + [aux_sym_def_type_statement_token4] = ACTIONS(6828), + [aux_sym_def_type_statement_token5] = ACTIONS(6828), + [aux_sym_def_type_statement_token6] = ACTIONS(6828), + [aux_sym_def_type_statement_token7] = ACTIONS(6828), + [aux_sym_def_type_statement_token8] = ACTIONS(6828), + [aux_sym_def_type_statement_token9] = ACTIONS(6828), + [aux_sym_def_type_statement_token10] = ACTIONS(6828), + [aux_sym_def_type_statement_token11] = ACTIONS(6828), + [aux_sym_def_type_statement_token12] = ACTIONS(6828), + [aux_sym_def_type_statement_token13] = ACTIONS(6828), + [aux_sym_def_type_statement_token14] = ACTIONS(6828), + [aux_sym_call_statement_token1] = ACTIONS(6828), + [sym__ambiguous_call_statement] = ACTIONS(6828), + [aux_sym_addressof_expression_token1] = ACTIONS(6828), + [aux_sym_type_of_expression_token1] = ACTIONS(6828), + [aux_sym_unary_expression_token1] = ACTIONS(6828), + [sym_string_literal] = ACTIONS(6826), + [sym_number_literal] = ACTIONS(6826), + [aux_sym_boolean_literal_token1] = ACTIONS(6828), + [aux_sym_boolean_literal_token2] = ACTIONS(6828), + [sym_nothing_literal] = ACTIONS(6828), + [sym_null_literal] = ACTIONS(6828), + [sym_empty_literal] = ACTIONS(6828), + [sym_date_literal] = ACTIONS(6826), + [anon_sym_POUND] = ACTIONS(6828), + }, + [STATE(4597)] = { + [sym_next_variable_list] = STATE(7173), + [sym__assignable_expression] = STATE(5844), + [sym__callable_expression] = STATE(5929), + [sym_call_expression] = STATE(6127), + [sym_member_expression] = STATE(6743), + [sym_qualified_member_expression] = STATE(6669), + [sym_implicit_member_expression] = STATE(6669), + [sym_identifier] = ACTIONS(9987), + [sym_newline] = ACTIONS(6863), + [anon_sym_COLON] = ACTIONS(6863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6865), + [aux_sym_frm_property_statement_token1] = ACTIONS(9989), + [anon_sym_DOT] = ACTIONS(9991), + [anon_sym_BANG] = ACTIONS(9993), + [aux_sym__attribute_identifier_token1] = ACTIONS(6865), + [aux_sym_option_statement_token3] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6865), + [aux_sym_preprocessor_const_token1] = ACTIONS(6865), + [sym_static_modifier] = ACTIONS(6865), + [sym__dim_keyword] = ACTIONS(6865), + [sym__redim_keyword] = ACTIONS(6865), + [aux_sym_get_accessor_token1] = ACTIONS(6865), + [aux_sym_set_accessor_token1] = ACTIONS(6865), + [aux_sym_const_declaration_token1] = ACTIONS(6865), + [anon_sym_LPAREN] = ACTIONS(6863), + [aux_sym_as_type_clause_token2] = ACTIONS(6865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9995), + [aux_sym_visibility_token1] = ACTIONS(6865), + [aux_sym_visibility_token2] = ACTIONS(6865), + [aux_sym_elseif_fragment_token1] = ACTIONS(6865), + [aux_sym_else_fragment_token1] = ACTIONS(6865), + [aux_sym_select_statement_token1] = ACTIONS(6865), + [aux_sym__for_header_token1] = ACTIONS(6865), + [aux_sym_do_statement_token1] = ACTIONS(6865), + [aux_sym_do_condition_token1] = ACTIONS(6865), + [aux_sym_with_statement_token1] = ACTIONS(6865), + [aux_sym_exit_statement_token1] = ACTIONS(6865), + [sym_end_statement] = ACTIONS(6863), + [aux_sym_on_goto_statement_token1] = ACTIONS(6865), + [aux_sym_on_goto_statement_token2] = ACTIONS(6865), + [aux_sym_on_error_statement_token2] = ACTIONS(6865), + [sym__ambiguous_redim_statement] = ACTIONS(6863), + [aux_sym_erase_statement_token1] = ACTIONS(6865), + [aux_sym_open_statement_token1] = ACTIONS(6865), + [aux_sym_file_mode_token2] = ACTIONS(6865), + [aux_sym_file_access_token2] = ACTIONS(6865), + [aux_sym_file_lock_token2] = ACTIONS(6865), + [aux_sym_print_statement_token1] = ACTIONS(6865), + [anon_sym_PLUS] = ACTIONS(6863), + [anon_sym_DASH] = ACTIONS(6865), + [anon_sym_QMARK] = ACTIONS(6863), + [aux_sym_close_statement_token1] = ACTIONS(6865), + [aux_sym_put_statement_token1] = ACTIONS(6865), + [aux_sym_unlock_statement_token1] = ACTIONS(6865), + [aux_sym_seek_statement_token1] = ACTIONS(6865), + [sym_reset_statement] = ACTIONS(6865), + [aux_sym_raise_event_statement_token1] = ACTIONS(6865), + [sym_stop_statement] = ACTIONS(6865), + [sym_beep_statement] = ACTIONS(6865), + [aux_sym_unload_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token1] = ACTIONS(6865), + [aux_sym_def_type_statement_token2] = ACTIONS(6865), + [aux_sym_def_type_statement_token3] = ACTIONS(6865), + [aux_sym_def_type_statement_token4] = ACTIONS(6865), + [aux_sym_def_type_statement_token5] = ACTIONS(6865), + [aux_sym_def_type_statement_token6] = ACTIONS(6865), + [aux_sym_def_type_statement_token7] = ACTIONS(6865), + [aux_sym_def_type_statement_token8] = ACTIONS(6865), + [aux_sym_def_type_statement_token9] = ACTIONS(6865), + [aux_sym_def_type_statement_token10] = ACTIONS(6865), + [aux_sym_def_type_statement_token11] = ACTIONS(6865), + [aux_sym_def_type_statement_token12] = ACTIONS(6865), + [aux_sym_def_type_statement_token13] = ACTIONS(6865), + [aux_sym_def_type_statement_token14] = ACTIONS(6865), + [aux_sym_call_statement_token1] = ACTIONS(6865), + [sym__ambiguous_call_statement] = ACTIONS(6865), + [aux_sym_addressof_expression_token1] = ACTIONS(6865), + [aux_sym_type_of_expression_token1] = ACTIONS(6865), + [aux_sym_unary_expression_token1] = ACTIONS(6865), + [sym_string_literal] = ACTIONS(6863), + [sym_number_literal] = ACTIONS(6863), + [aux_sym_boolean_literal_token1] = ACTIONS(6865), + [aux_sym_boolean_literal_token2] = ACTIONS(6865), + [sym_nothing_literal] = ACTIONS(6865), + [sym_null_literal] = ACTIONS(6865), + [sym_empty_literal] = ACTIONS(6865), + [sym_date_literal] = ACTIONS(6863), + [anon_sym_POUND] = ACTIONS(6865), + }, + [STATE(4598)] = { + [sym_initializer] = STATE(5853), + [sym_as_type_clause] = STATE(4918), + [sym_array_bounds] = STATE(4657), + [sym_identifier] = ACTIONS(6989), + [sym_newline] = ACTIONS(6991), + [anon_sym_COLON] = ACTIONS(6991), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6989), + [aux_sym_frm_property_statement_token1] = ACTIONS(6989), + [anon_sym_EQ] = ACTIONS(9997), + [anon_sym_DOT] = ACTIONS(6989), + [anon_sym_BANG] = ACTIONS(6991), + [aux_sym__attribute_identifier_token1] = ACTIONS(6989), + [aux_sym_option_statement_token3] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6989), + [aux_sym_preprocessor_const_token1] = ACTIONS(6989), + [sym_static_modifier] = ACTIONS(6989), + [sym__dim_keyword] = ACTIONS(6989), + [sym__redim_keyword] = ACTIONS(6989), + [aux_sym_get_accessor_token1] = ACTIONS(6989), + [aux_sym_set_accessor_token1] = ACTIONS(6989), + [anon_sym_COMMA] = ACTIONS(6991), + [aux_sym_const_declaration_token1] = ACTIONS(6989), + [anon_sym_LPAREN] = ACTIONS(9999), + [aux_sym_as_type_clause_token1] = ACTIONS(10001), + [aux_sym_as_type_clause_token2] = ACTIONS(6989), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6989), + [aux_sym_visibility_token1] = ACTIONS(6989), + [aux_sym_visibility_token2] = ACTIONS(6989), + [aux_sym_elseif_fragment_token1] = ACTIONS(6989), + [aux_sym_else_fragment_token1] = ACTIONS(6989), + [aux_sym_select_statement_token1] = ACTIONS(6989), + [aux_sym__for_header_token1] = ACTIONS(6989), + [aux_sym_do_statement_token1] = ACTIONS(6989), + [aux_sym_do_condition_token1] = ACTIONS(6989), + [aux_sym_while_statement_token1] = ACTIONS(6989), + [aux_sym_with_statement_token1] = ACTIONS(6989), + [aux_sym_exit_statement_token1] = ACTIONS(6989), + [sym_end_statement] = ACTIONS(6991), + [aux_sym_on_goto_statement_token1] = ACTIONS(6989), + [aux_sym_on_goto_statement_token2] = ACTIONS(6989), + [aux_sym_on_error_statement_token2] = ACTIONS(6989), + [sym__ambiguous_redim_statement] = ACTIONS(6991), + [aux_sym_erase_statement_token1] = ACTIONS(6989), + [aux_sym_open_statement_token1] = ACTIONS(6989), + [aux_sym_file_mode_token2] = ACTIONS(6989), + [aux_sym_file_access_token2] = ACTIONS(6989), + [aux_sym_file_lock_token2] = ACTIONS(6989), + [aux_sym_print_statement_token1] = ACTIONS(6989), + [anon_sym_PLUS] = ACTIONS(6991), + [anon_sym_DASH] = ACTIONS(6989), + [anon_sym_QMARK] = ACTIONS(6991), + [aux_sym_close_statement_token1] = ACTIONS(6989), + [aux_sym_put_statement_token1] = ACTIONS(6989), + [aux_sym_unlock_statement_token1] = ACTIONS(6989), + [aux_sym_seek_statement_token1] = ACTIONS(6989), + [sym_reset_statement] = ACTIONS(6989), + [aux_sym_raise_event_statement_token1] = ACTIONS(6989), + [sym_stop_statement] = ACTIONS(6989), + [sym_beep_statement] = ACTIONS(6989), + [aux_sym_unload_statement_token1] = ACTIONS(6989), + [aux_sym_def_type_statement_token1] = ACTIONS(6989), + [aux_sym_def_type_statement_token2] = ACTIONS(6989), + [aux_sym_def_type_statement_token3] = ACTIONS(6989), + [aux_sym_def_type_statement_token4] = ACTIONS(6989), + [aux_sym_def_type_statement_token5] = ACTIONS(6989), + [aux_sym_def_type_statement_token6] = ACTIONS(6989), + [aux_sym_def_type_statement_token7] = ACTIONS(6989), + [aux_sym_def_type_statement_token8] = ACTIONS(6989), + [aux_sym_def_type_statement_token9] = ACTIONS(6989), + [aux_sym_def_type_statement_token10] = ACTIONS(6989), + [aux_sym_def_type_statement_token11] = ACTIONS(6989), + [aux_sym_def_type_statement_token12] = ACTIONS(6989), + [aux_sym_def_type_statement_token13] = ACTIONS(6989), + [aux_sym_def_type_statement_token14] = ACTIONS(6989), + [aux_sym_call_statement_token1] = ACTIONS(6989), + [sym__ambiguous_call_statement] = ACTIONS(6989), + [aux_sym_addressof_expression_token1] = ACTIONS(6989), + [aux_sym_type_of_expression_token1] = ACTIONS(6989), + [aux_sym_unary_expression_token1] = ACTIONS(6989), + [sym_string_literal] = ACTIONS(6991), + [sym_number_literal] = ACTIONS(6991), + [aux_sym_boolean_literal_token1] = ACTIONS(6989), + [aux_sym_boolean_literal_token2] = ACTIONS(6989), + [sym_nothing_literal] = ACTIONS(6989), + [sym_null_literal] = ACTIONS(6989), + [sym_empty_literal] = ACTIONS(6989), + [sym_date_literal] = ACTIONS(6991), + [anon_sym_POUND] = ACTIONS(6989), + }, + [STATE(4599)] = { + [sym_char_position] = STATE(464), + [aux_sym_output_list_repeat1] = STATE(4606), + [sym_identifier] = ACTIONS(7631), + [sym_newline] = ACTIONS(7633), + [anon_sym_COLON] = ACTIONS(7633), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7631), + [aux_sym_frm_property_statement_token1] = ACTIONS(7631), + [anon_sym_DOT] = ACTIONS(7631), + [anon_sym_BANG] = ACTIONS(7633), + [aux_sym__attribute_identifier_token1] = ACTIONS(7631), + [aux_sym_option_statement_token3] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7631), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7631), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7631), + [aux_sym_preprocessor_const_token1] = ACTIONS(7631), + [sym_static_modifier] = ACTIONS(7631), + [sym__dim_keyword] = ACTIONS(7631), + [sym__redim_keyword] = ACTIONS(7631), + [aux_sym_get_accessor_token1] = ACTIONS(7631), + [aux_sym_set_accessor_token1] = ACTIONS(7631), + [anon_sym_COMMA] = ACTIONS(10003), + [aux_sym_const_declaration_token1] = ACTIONS(7631), + [anon_sym_LPAREN] = ACTIONS(7633), + [aux_sym_as_type_clause_token2] = ACTIONS(7631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7631), + [aux_sym_visibility_token1] = ACTIONS(7631), + [aux_sym_visibility_token2] = ACTIONS(7631), + [aux_sym_elseif_fragment_token1] = ACTIONS(7631), + [aux_sym_else_fragment_token1] = ACTIONS(7631), + [aux_sym_select_statement_token1] = ACTIONS(7631), + [aux_sym__for_header_token1] = ACTIONS(7631), + [aux_sym_do_statement_token1] = ACTIONS(7631), + [aux_sym_do_condition_token1] = ACTIONS(7631), + [aux_sym_with_statement_token1] = ACTIONS(7631), + [aux_sym_exit_statement_token1] = ACTIONS(7631), + [sym_end_statement] = ACTIONS(7633), + [aux_sym_on_goto_statement_token1] = ACTIONS(7631), + [aux_sym_on_goto_statement_token2] = ACTIONS(7631), + [aux_sym_on_error_statement_token2] = ACTIONS(7631), + [sym__ambiguous_redim_statement] = ACTIONS(7633), + [aux_sym_erase_statement_token1] = ACTIONS(7631), + [aux_sym_open_statement_token1] = ACTIONS(7631), + [aux_sym_file_mode_token2] = ACTIONS(7631), + [aux_sym_file_access_token2] = ACTIONS(7631), + [aux_sym_file_lock_token2] = ACTIONS(7631), + [aux_sym_print_statement_token1] = ACTIONS(7631), + [anon_sym_PLUS] = ACTIONS(7633), + [anon_sym_DASH] = ACTIONS(7631), + [anon_sym_SEMI] = ACTIONS(10003), + [anon_sym_QMARK] = ACTIONS(7633), + [aux_sym_close_statement_token1] = ACTIONS(7631), + [aux_sym_put_statement_token1] = ACTIONS(7631), + [aux_sym_unlock_statement_token1] = ACTIONS(7631), + [aux_sym_seek_statement_token1] = ACTIONS(7631), + [sym_reset_statement] = ACTIONS(7631), + [aux_sym_raise_event_statement_token1] = ACTIONS(7631), + [sym_stop_statement] = ACTIONS(7631), + [sym_beep_statement] = ACTIONS(7631), + [aux_sym_unload_statement_token1] = ACTIONS(7631), + [aux_sym_def_type_statement_token1] = ACTIONS(7631), + [aux_sym_def_type_statement_token2] = ACTIONS(7631), + [aux_sym_def_type_statement_token3] = ACTIONS(7631), + [aux_sym_def_type_statement_token4] = ACTIONS(7631), + [aux_sym_def_type_statement_token5] = ACTIONS(7631), + [aux_sym_def_type_statement_token6] = ACTIONS(7631), + [aux_sym_def_type_statement_token7] = ACTIONS(7631), + [aux_sym_def_type_statement_token8] = ACTIONS(7631), + [aux_sym_def_type_statement_token9] = ACTIONS(7631), + [aux_sym_def_type_statement_token10] = ACTIONS(7631), + [aux_sym_def_type_statement_token11] = ACTIONS(7631), + [aux_sym_def_type_statement_token12] = ACTIONS(7631), + [aux_sym_def_type_statement_token13] = ACTIONS(7631), + [aux_sym_def_type_statement_token14] = ACTIONS(7631), + [aux_sym_call_statement_token1] = ACTIONS(7631), + [sym__ambiguous_call_statement] = ACTIONS(7631), + [aux_sym_addressof_expression_token1] = ACTIONS(7631), + [aux_sym_type_of_expression_token1] = ACTIONS(7631), + [aux_sym_unary_expression_token1] = ACTIONS(7631), + [sym_string_literal] = ACTIONS(7633), + [sym_number_literal] = ACTIONS(7633), + [aux_sym_boolean_literal_token1] = ACTIONS(7631), + [aux_sym_boolean_literal_token2] = ACTIONS(7631), + [sym_nothing_literal] = ACTIONS(7631), + [sym_null_literal] = ACTIONS(7631), + [sym_empty_literal] = ACTIONS(7631), + [sym_date_literal] = ACTIONS(7633), + [anon_sym_POUND] = ACTIONS(7631), + }, + [STATE(4600)] = { + [sym_identifier] = ACTIONS(7640), + [sym_newline] = ACTIONS(7642), + [anon_sym_COLON] = ACTIONS(7642), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7640), + [aux_sym_frm_property_statement_token1] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7640), + [anon_sym_BANG] = ACTIONS(7642), + [aux_sym__attribute_identifier_token1] = ACTIONS(7640), + [aux_sym_option_statement_token3] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7640), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7640), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7640), + [aux_sym_preprocessor_const_token1] = ACTIONS(7640), + [sym_static_modifier] = ACTIONS(7640), + [sym__dim_keyword] = ACTIONS(7640), + [sym__redim_keyword] = ACTIONS(7640), + [aux_sym_get_accessor_token1] = ACTIONS(7640), + [aux_sym_set_accessor_token1] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7642), + [aux_sym_const_declaration_token1] = ACTIONS(7640), + [anon_sym_LPAREN] = ACTIONS(7642), + [aux_sym_as_type_clause_token2] = ACTIONS(7640), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7640), + [aux_sym_visibility_token1] = ACTIONS(7640), + [aux_sym_visibility_token2] = ACTIONS(7640), + [aux_sym_elseif_fragment_token1] = ACTIONS(7640), + [aux_sym_else_fragment_token1] = ACTIONS(7640), + [aux_sym_select_statement_token1] = ACTIONS(7640), + [aux_sym__for_header_token1] = ACTIONS(7640), + [aux_sym_do_statement_token1] = ACTIONS(7640), + [aux_sym_do_condition_token1] = ACTIONS(7640), + [aux_sym_with_statement_token1] = ACTIONS(7640), + [aux_sym_exit_statement_token1] = ACTIONS(7640), + [sym_end_statement] = ACTIONS(7642), + [aux_sym_on_goto_statement_token1] = ACTIONS(7640), + [aux_sym_on_goto_statement_token2] = ACTIONS(7640), + [aux_sym_on_error_statement_token2] = ACTIONS(7640), + [sym__ambiguous_redim_statement] = ACTIONS(7642), + [aux_sym_erase_statement_token1] = ACTIONS(7640), + [aux_sym_open_statement_token1] = ACTIONS(7640), + [aux_sym_file_mode_token2] = ACTIONS(7640), + [aux_sym_file_access_token2] = ACTIONS(7640), + [aux_sym_file_lock_token2] = ACTIONS(7640), + [aux_sym_print_statement_token1] = ACTIONS(7640), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_DASH] = ACTIONS(7640), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(9983), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(9985), + [anon_sym_SEMI] = ACTIONS(7642), + [anon_sym_QMARK] = ACTIONS(7642), + [aux_sym_close_statement_token1] = ACTIONS(7640), + [aux_sym_put_statement_token1] = ACTIONS(7640), + [aux_sym_unlock_statement_token1] = ACTIONS(7640), + [aux_sym_seek_statement_token1] = ACTIONS(7640), + [sym_reset_statement] = ACTIONS(7640), + [aux_sym_raise_event_statement_token1] = ACTIONS(7640), + [sym_stop_statement] = ACTIONS(7640), + [sym_beep_statement] = ACTIONS(7640), + [aux_sym_unload_statement_token1] = ACTIONS(7640), + [aux_sym_def_type_statement_token1] = ACTIONS(7640), + [aux_sym_def_type_statement_token2] = ACTIONS(7640), + [aux_sym_def_type_statement_token3] = ACTIONS(7640), + [aux_sym_def_type_statement_token4] = ACTIONS(7640), + [aux_sym_def_type_statement_token5] = ACTIONS(7640), + [aux_sym_def_type_statement_token6] = ACTIONS(7640), + [aux_sym_def_type_statement_token7] = ACTIONS(7640), + [aux_sym_def_type_statement_token8] = ACTIONS(7640), + [aux_sym_def_type_statement_token9] = ACTIONS(7640), + [aux_sym_def_type_statement_token10] = ACTIONS(7640), + [aux_sym_def_type_statement_token11] = ACTIONS(7640), + [aux_sym_def_type_statement_token12] = ACTIONS(7640), + [aux_sym_def_type_statement_token13] = ACTIONS(7640), + [aux_sym_def_type_statement_token14] = ACTIONS(7640), + [aux_sym_call_statement_token1] = ACTIONS(7640), + [sym__ambiguous_call_statement] = ACTIONS(7640), + [aux_sym_addressof_expression_token1] = ACTIONS(7640), + [aux_sym_type_of_expression_token1] = ACTIONS(7640), + [aux_sym_unary_expression_token1] = ACTIONS(7640), + [sym_string_literal] = ACTIONS(7642), + [sym_number_literal] = ACTIONS(7642), + [aux_sym_boolean_literal_token1] = ACTIONS(7640), + [aux_sym_boolean_literal_token2] = ACTIONS(7640), + [sym_nothing_literal] = ACTIONS(7640), + [sym_null_literal] = ACTIONS(7640), + [sym_empty_literal] = ACTIONS(7640), + [sym_date_literal] = ACTIONS(7642), + [anon_sym_POUND] = ACTIONS(7640), + }, + [STATE(4601)] = { + [sym_identifier] = ACTIONS(7647), + [sym_newline] = ACTIONS(7649), + [anon_sym_COLON] = ACTIONS(7649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7647), + [aux_sym_frm_property_statement_token1] = ACTIONS(7647), + [anon_sym_DOT] = ACTIONS(7647), + [anon_sym_BANG] = ACTIONS(7649), + [aux_sym__attribute_identifier_token1] = ACTIONS(7647), + [aux_sym_option_statement_token3] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7647), + [aux_sym_preprocessor_const_token1] = ACTIONS(7647), + [sym_static_modifier] = ACTIONS(7647), + [sym__dim_keyword] = ACTIONS(7647), + [sym__redim_keyword] = ACTIONS(7647), + [aux_sym_get_accessor_token1] = ACTIONS(7647), + [aux_sym_set_accessor_token1] = ACTIONS(7647), + [anon_sym_COMMA] = ACTIONS(7649), + [aux_sym_const_declaration_token1] = ACTIONS(7647), + [anon_sym_LPAREN] = ACTIONS(7649), + [aux_sym_as_type_clause_token2] = ACTIONS(7647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7647), + [aux_sym_visibility_token1] = ACTIONS(7647), + [aux_sym_visibility_token2] = ACTIONS(7647), + [aux_sym_elseif_fragment_token1] = ACTIONS(7647), + [aux_sym_else_fragment_token1] = ACTIONS(7647), + [aux_sym_select_statement_token1] = ACTIONS(7647), + [aux_sym__for_header_token1] = ACTIONS(7647), + [aux_sym_do_statement_token1] = ACTIONS(7647), + [aux_sym_do_condition_token1] = ACTIONS(7647), + [aux_sym_with_statement_token1] = ACTIONS(7647), + [aux_sym_exit_statement_token1] = ACTIONS(7647), + [sym_end_statement] = ACTIONS(7649), + [aux_sym_on_goto_statement_token1] = ACTIONS(7647), + [aux_sym_on_goto_statement_token2] = ACTIONS(7647), + [aux_sym_on_error_statement_token2] = ACTIONS(7647), + [sym__ambiguous_redim_statement] = ACTIONS(7649), + [aux_sym_erase_statement_token1] = ACTIONS(7647), + [aux_sym_open_statement_token1] = ACTIONS(7647), + [aux_sym_file_mode_token2] = ACTIONS(7647), + [aux_sym_file_access_token2] = ACTIONS(7647), + [aux_sym_file_lock_token2] = ACTIONS(7647), + [aux_sym_print_statement_token1] = ACTIONS(7647), + [anon_sym_PLUS] = ACTIONS(7649), + [anon_sym_DASH] = ACTIONS(7647), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(9983), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(9985), + [anon_sym_SEMI] = ACTIONS(7649), + [anon_sym_QMARK] = ACTIONS(7649), + [aux_sym_close_statement_token1] = ACTIONS(7647), + [aux_sym_put_statement_token1] = ACTIONS(7647), + [aux_sym_unlock_statement_token1] = ACTIONS(7647), + [aux_sym_seek_statement_token1] = ACTIONS(7647), + [sym_reset_statement] = ACTIONS(7647), + [aux_sym_raise_event_statement_token1] = ACTIONS(7647), + [sym_stop_statement] = ACTIONS(7647), + [sym_beep_statement] = ACTIONS(7647), + [aux_sym_unload_statement_token1] = ACTIONS(7647), + [aux_sym_def_type_statement_token1] = ACTIONS(7647), + [aux_sym_def_type_statement_token2] = ACTIONS(7647), + [aux_sym_def_type_statement_token3] = ACTIONS(7647), + [aux_sym_def_type_statement_token4] = ACTIONS(7647), + [aux_sym_def_type_statement_token5] = ACTIONS(7647), + [aux_sym_def_type_statement_token6] = ACTIONS(7647), + [aux_sym_def_type_statement_token7] = ACTIONS(7647), + [aux_sym_def_type_statement_token8] = ACTIONS(7647), + [aux_sym_def_type_statement_token9] = ACTIONS(7647), + [aux_sym_def_type_statement_token10] = ACTIONS(7647), + [aux_sym_def_type_statement_token11] = ACTIONS(7647), + [aux_sym_def_type_statement_token12] = ACTIONS(7647), + [aux_sym_def_type_statement_token13] = ACTIONS(7647), + [aux_sym_def_type_statement_token14] = ACTIONS(7647), + [aux_sym_call_statement_token1] = ACTIONS(7647), + [sym__ambiguous_call_statement] = ACTIONS(7647), + [aux_sym_addressof_expression_token1] = ACTIONS(7647), + [aux_sym_type_of_expression_token1] = ACTIONS(7647), + [aux_sym_unary_expression_token1] = ACTIONS(7647), + [sym_string_literal] = ACTIONS(7649), + [sym_number_literal] = ACTIONS(7649), + [aux_sym_boolean_literal_token1] = ACTIONS(7647), + [aux_sym_boolean_literal_token2] = ACTIONS(7647), + [sym_nothing_literal] = ACTIONS(7647), + [sym_null_literal] = ACTIONS(7647), + [sym_empty_literal] = ACTIONS(7647), + [sym_date_literal] = ACTIONS(7649), + [anon_sym_POUND] = ACTIONS(7647), + }, + [STATE(4602)] = { + [aux_sym__argument_sequence_repeat1] = STATE(4810), + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(4811), + [sym_identifier] = ACTIONS(7651), + [sym_newline] = ACTIONS(7653), + [anon_sym_COLON] = ACTIONS(7653), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7651), + [aux_sym_frm_property_statement_token1] = ACTIONS(7651), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_BANG] = ACTIONS(7653), + [aux_sym__attribute_identifier_token1] = ACTIONS(7651), + [aux_sym_option_statement_token3] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7651), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7651), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7651), + [aux_sym_preprocessor_const_token1] = ACTIONS(7651), + [sym_static_modifier] = ACTIONS(7651), + [sym__dim_keyword] = ACTIONS(7651), + [sym__redim_keyword] = ACTIONS(7651), + [aux_sym_get_accessor_token1] = ACTIONS(7651), + [aux_sym_set_accessor_token1] = ACTIONS(7651), + [anon_sym_COMMA] = ACTIONS(10005), + [aux_sym_const_declaration_token1] = ACTIONS(7651), + [anon_sym_LPAREN] = ACTIONS(7653), + [aux_sym_as_type_clause_token2] = ACTIONS(7651), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7651), + [aux_sym_visibility_token1] = ACTIONS(7651), + [aux_sym_visibility_token2] = ACTIONS(7651), + [aux_sym_elseif_fragment_token1] = ACTIONS(7651), + [aux_sym_else_fragment_token1] = ACTIONS(7651), + [aux_sym_select_statement_token1] = ACTIONS(7651), + [aux_sym__for_header_token1] = ACTIONS(7651), + [aux_sym_do_statement_token1] = ACTIONS(7651), + [aux_sym_do_condition_token1] = ACTIONS(7651), + [aux_sym_with_statement_token1] = ACTIONS(7651), + [aux_sym_exit_statement_token1] = ACTIONS(7651), + [sym_end_statement] = ACTIONS(7653), + [aux_sym_on_goto_statement_token1] = ACTIONS(7651), + [aux_sym_on_goto_statement_token2] = ACTIONS(7651), + [aux_sym_on_error_statement_token2] = ACTIONS(7651), + [sym__ambiguous_redim_statement] = ACTIONS(7653), + [aux_sym_erase_statement_token1] = ACTIONS(7651), + [aux_sym_open_statement_token1] = ACTIONS(7651), + [aux_sym_file_mode_token2] = ACTIONS(7651), + [aux_sym_file_access_token2] = ACTIONS(7651), + [aux_sym_file_lock_token2] = ACTIONS(7651), + [aux_sym_print_statement_token1] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_SEMI] = ACTIONS(10007), + [anon_sym_QMARK] = ACTIONS(7653), + [aux_sym_close_statement_token1] = ACTIONS(7651), + [aux_sym_put_statement_token1] = ACTIONS(7651), + [aux_sym_unlock_statement_token1] = ACTIONS(7651), + [aux_sym_seek_statement_token1] = ACTIONS(7651), + [sym_reset_statement] = ACTIONS(7651), + [aux_sym_raise_event_statement_token1] = ACTIONS(7651), + [sym_stop_statement] = ACTIONS(7651), + [sym_beep_statement] = ACTIONS(7651), + [aux_sym_unload_statement_token1] = ACTIONS(7651), + [aux_sym_def_type_statement_token1] = ACTIONS(7651), + [aux_sym_def_type_statement_token2] = ACTIONS(7651), + [aux_sym_def_type_statement_token3] = ACTIONS(7651), + [aux_sym_def_type_statement_token4] = ACTIONS(7651), + [aux_sym_def_type_statement_token5] = ACTIONS(7651), + [aux_sym_def_type_statement_token6] = ACTIONS(7651), + [aux_sym_def_type_statement_token7] = ACTIONS(7651), + [aux_sym_def_type_statement_token8] = ACTIONS(7651), + [aux_sym_def_type_statement_token9] = ACTIONS(7651), + [aux_sym_def_type_statement_token10] = ACTIONS(7651), + [aux_sym_def_type_statement_token11] = ACTIONS(7651), + [aux_sym_def_type_statement_token12] = ACTIONS(7651), + [aux_sym_def_type_statement_token13] = ACTIONS(7651), + [aux_sym_def_type_statement_token14] = ACTIONS(7651), + [aux_sym_call_statement_token1] = ACTIONS(7651), + [sym__ambiguous_call_statement] = ACTIONS(7651), + [aux_sym_addressof_expression_token1] = ACTIONS(7651), + [aux_sym_type_of_expression_token1] = ACTIONS(7651), + [aux_sym_unary_expression_token1] = ACTIONS(7651), + [sym_string_literal] = ACTIONS(7653), + [sym_number_literal] = ACTIONS(7653), + [aux_sym_boolean_literal_token1] = ACTIONS(7651), + [aux_sym_boolean_literal_token2] = ACTIONS(7651), + [sym_nothing_literal] = ACTIONS(7651), + [sym_null_literal] = ACTIONS(7651), + [sym_empty_literal] = ACTIONS(7651), + [sym_date_literal] = ACTIONS(7653), + [anon_sym_POUND] = ACTIONS(7651), + }, + [STATE(4603)] = { + [sym_char_position] = STATE(403), + [aux_sym_output_list_repeat1] = STATE(4607), + [sym_identifier] = ACTIONS(7474), + [sym_newline] = ACTIONS(7476), + [anon_sym_COLON] = ACTIONS(7476), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7474), + [aux_sym_frm_property_statement_token1] = ACTIONS(7474), + [anon_sym_DOT] = ACTIONS(7474), + [anon_sym_BANG] = ACTIONS(7476), + [aux_sym__attribute_identifier_token1] = ACTIONS(7474), + [aux_sym_option_statement_token3] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7474), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7474), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7474), + [aux_sym_preprocessor_const_token1] = ACTIONS(7474), + [sym_static_modifier] = ACTIONS(7474), + [sym__dim_keyword] = ACTIONS(7474), + [sym__redim_keyword] = ACTIONS(7474), + [aux_sym_get_accessor_token1] = ACTIONS(7474), + [aux_sym_set_accessor_token1] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(10003), + [aux_sym_const_declaration_token1] = ACTIONS(7474), + [anon_sym_LPAREN] = ACTIONS(7476), + [aux_sym_as_type_clause_token2] = ACTIONS(7474), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7474), + [aux_sym_visibility_token1] = ACTIONS(7474), + [aux_sym_visibility_token2] = ACTIONS(7474), + [aux_sym_elseif_fragment_token1] = ACTIONS(7474), + [aux_sym_else_fragment_token1] = ACTIONS(7474), + [aux_sym_select_statement_token1] = ACTIONS(7474), + [aux_sym__for_header_token1] = ACTIONS(7474), + [aux_sym_do_statement_token1] = ACTIONS(7474), + [aux_sym_do_condition_token1] = ACTIONS(7474), + [aux_sym_with_statement_token1] = ACTIONS(7474), + [aux_sym_exit_statement_token1] = ACTIONS(7474), + [sym_end_statement] = ACTIONS(7476), + [aux_sym_on_goto_statement_token1] = ACTIONS(7474), + [aux_sym_on_goto_statement_token2] = ACTIONS(7474), + [aux_sym_on_error_statement_token2] = ACTIONS(7474), + [sym__ambiguous_redim_statement] = ACTIONS(7476), + [aux_sym_erase_statement_token1] = ACTIONS(7474), + [aux_sym_open_statement_token1] = ACTIONS(7474), + [aux_sym_file_mode_token2] = ACTIONS(7474), + [aux_sym_file_access_token2] = ACTIONS(7474), + [aux_sym_file_lock_token2] = ACTIONS(7474), + [aux_sym_print_statement_token1] = ACTIONS(7474), + [anon_sym_PLUS] = ACTIONS(7476), + [anon_sym_DASH] = ACTIONS(7474), + [anon_sym_SEMI] = ACTIONS(10003), + [anon_sym_QMARK] = ACTIONS(7476), + [aux_sym_close_statement_token1] = ACTIONS(7474), + [aux_sym_put_statement_token1] = ACTIONS(7474), + [aux_sym_unlock_statement_token1] = ACTIONS(7474), + [aux_sym_seek_statement_token1] = ACTIONS(7474), + [sym_reset_statement] = ACTIONS(7474), + [aux_sym_raise_event_statement_token1] = ACTIONS(7474), + [sym_stop_statement] = ACTIONS(7474), + [sym_beep_statement] = ACTIONS(7474), + [aux_sym_unload_statement_token1] = ACTIONS(7474), + [aux_sym_def_type_statement_token1] = ACTIONS(7474), + [aux_sym_def_type_statement_token2] = ACTIONS(7474), + [aux_sym_def_type_statement_token3] = ACTIONS(7474), + [aux_sym_def_type_statement_token4] = ACTIONS(7474), + [aux_sym_def_type_statement_token5] = ACTIONS(7474), + [aux_sym_def_type_statement_token6] = ACTIONS(7474), + [aux_sym_def_type_statement_token7] = ACTIONS(7474), + [aux_sym_def_type_statement_token8] = ACTIONS(7474), + [aux_sym_def_type_statement_token9] = ACTIONS(7474), + [aux_sym_def_type_statement_token10] = ACTIONS(7474), + [aux_sym_def_type_statement_token11] = ACTIONS(7474), + [aux_sym_def_type_statement_token12] = ACTIONS(7474), + [aux_sym_def_type_statement_token13] = ACTIONS(7474), + [aux_sym_def_type_statement_token14] = ACTIONS(7474), + [aux_sym_call_statement_token1] = ACTIONS(7474), + [sym__ambiguous_call_statement] = ACTIONS(7474), + [aux_sym_addressof_expression_token1] = ACTIONS(7474), + [aux_sym_type_of_expression_token1] = ACTIONS(7474), + [aux_sym_unary_expression_token1] = ACTIONS(7474), + [sym_string_literal] = ACTIONS(7476), + [sym_number_literal] = ACTIONS(7476), + [aux_sym_boolean_literal_token1] = ACTIONS(7474), + [aux_sym_boolean_literal_token2] = ACTIONS(7474), + [sym_nothing_literal] = ACTIONS(7474), + [sym_null_literal] = ACTIONS(7474), + [sym_empty_literal] = ACTIONS(7474), + [sym_date_literal] = ACTIONS(7476), + [anon_sym_POUND] = ACTIONS(7474), + }, + [STATE(4604)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4608), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(10009), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(4605)] = { + [sym_initializer] = STATE(6008), + [sym_as_type_clause] = STATE(5014), + [sym_array_bounds] = STATE(4677), + [sym_identifier] = ACTIONS(6989), + [sym_newline] = ACTIONS(6991), + [anon_sym_COLON] = ACTIONS(6991), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6989), + [aux_sym_frm_property_statement_token1] = ACTIONS(6989), + [anon_sym_EQ] = ACTIONS(10011), + [anon_sym_DOT] = ACTIONS(6989), + [anon_sym_BANG] = ACTIONS(6991), + [aux_sym__attribute_identifier_token1] = ACTIONS(6989), + [aux_sym_option_statement_token3] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6989), + [aux_sym_preprocessor_const_token1] = ACTIONS(6989), + [sym_static_modifier] = ACTIONS(6989), + [sym__dim_keyword] = ACTIONS(6989), + [sym__redim_keyword] = ACTIONS(6989), + [aux_sym_get_accessor_token1] = ACTIONS(6989), + [aux_sym_set_accessor_token1] = ACTIONS(6989), + [anon_sym_COMMA] = ACTIONS(6991), + [aux_sym_const_declaration_token1] = ACTIONS(6989), + [anon_sym_LPAREN] = ACTIONS(10013), + [aux_sym_as_type_clause_token1] = ACTIONS(10015), + [aux_sym_as_type_clause_token2] = ACTIONS(6989), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6989), + [aux_sym_visibility_token1] = ACTIONS(6989), + [aux_sym_visibility_token2] = ACTIONS(6989), + [aux_sym_elseif_fragment_token1] = ACTIONS(6989), + [aux_sym_else_fragment_token1] = ACTIONS(6989), + [aux_sym_select_statement_token1] = ACTIONS(6989), + [aux_sym_select_statement_token2] = ACTIONS(6989), + [aux_sym__for_header_token1] = ACTIONS(6989), + [aux_sym_do_statement_token1] = ACTIONS(6989), + [aux_sym_do_condition_token1] = ACTIONS(6989), + [aux_sym_with_statement_token1] = ACTIONS(6989), + [aux_sym_exit_statement_token1] = ACTIONS(6989), + [sym_end_statement] = ACTIONS(6991), + [aux_sym_on_goto_statement_token1] = ACTIONS(6989), + [aux_sym_on_goto_statement_token2] = ACTIONS(6989), + [aux_sym_on_error_statement_token2] = ACTIONS(6989), + [sym__ambiguous_redim_statement] = ACTIONS(6991), + [aux_sym_erase_statement_token1] = ACTIONS(6989), + [aux_sym_open_statement_token1] = ACTIONS(6989), + [aux_sym_file_mode_token2] = ACTIONS(6989), + [aux_sym_file_access_token2] = ACTIONS(6989), + [aux_sym_file_lock_token2] = ACTIONS(6989), + [aux_sym_print_statement_token1] = ACTIONS(6989), + [anon_sym_PLUS] = ACTIONS(6991), + [anon_sym_DASH] = ACTIONS(6989), + [anon_sym_QMARK] = ACTIONS(6991), + [aux_sym_close_statement_token1] = ACTIONS(6989), + [aux_sym_put_statement_token1] = ACTIONS(6989), + [aux_sym_unlock_statement_token1] = ACTIONS(6989), + [aux_sym_seek_statement_token1] = ACTIONS(6989), + [sym_reset_statement] = ACTIONS(6989), + [aux_sym_raise_event_statement_token1] = ACTIONS(6989), + [sym_stop_statement] = ACTIONS(6989), + [sym_beep_statement] = ACTIONS(6989), + [aux_sym_unload_statement_token1] = ACTIONS(6989), + [aux_sym_def_type_statement_token1] = ACTIONS(6989), + [aux_sym_def_type_statement_token2] = ACTIONS(6989), + [aux_sym_def_type_statement_token3] = ACTIONS(6989), + [aux_sym_def_type_statement_token4] = ACTIONS(6989), + [aux_sym_def_type_statement_token5] = ACTIONS(6989), + [aux_sym_def_type_statement_token6] = ACTIONS(6989), + [aux_sym_def_type_statement_token7] = ACTIONS(6989), + [aux_sym_def_type_statement_token8] = ACTIONS(6989), + [aux_sym_def_type_statement_token9] = ACTIONS(6989), + [aux_sym_def_type_statement_token10] = ACTIONS(6989), + [aux_sym_def_type_statement_token11] = ACTIONS(6989), + [aux_sym_def_type_statement_token12] = ACTIONS(6989), + [aux_sym_def_type_statement_token13] = ACTIONS(6989), + [aux_sym_def_type_statement_token14] = ACTIONS(6989), + [aux_sym_call_statement_token1] = ACTIONS(6989), + [sym__ambiguous_call_statement] = ACTIONS(6989), + [aux_sym_addressof_expression_token1] = ACTIONS(6989), + [aux_sym_type_of_expression_token1] = ACTIONS(6989), + [aux_sym_unary_expression_token1] = ACTIONS(6989), + [sym_string_literal] = ACTIONS(6991), + [sym_number_literal] = ACTIONS(6991), + [aux_sym_boolean_literal_token1] = ACTIONS(6989), + [aux_sym_boolean_literal_token2] = ACTIONS(6989), + [sym_nothing_literal] = ACTIONS(6989), + [sym_null_literal] = ACTIONS(6989), + [sym_empty_literal] = ACTIONS(6989), + [sym_date_literal] = ACTIONS(6991), + [anon_sym_POUND] = ACTIONS(6989), + }, + [STATE(4606)] = { + [sym_char_position] = STATE(420), + [aux_sym_output_list_repeat1] = STATE(4612), + [sym_identifier] = ACTIONS(7609), + [sym_newline] = ACTIONS(7611), + [anon_sym_COLON] = ACTIONS(7611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7609), + [aux_sym_frm_property_statement_token1] = ACTIONS(7609), + [anon_sym_DOT] = ACTIONS(7609), + [anon_sym_BANG] = ACTIONS(7611), + [aux_sym__attribute_identifier_token1] = ACTIONS(7609), + [aux_sym_option_statement_token3] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7609), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7609), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7609), + [aux_sym_preprocessor_const_token1] = ACTIONS(7609), + [sym_static_modifier] = ACTIONS(7609), + [sym__dim_keyword] = ACTIONS(7609), + [sym__redim_keyword] = ACTIONS(7609), + [aux_sym_get_accessor_token1] = ACTIONS(7609), + [aux_sym_set_accessor_token1] = ACTIONS(7609), + [anon_sym_COMMA] = ACTIONS(10003), + [aux_sym_const_declaration_token1] = ACTIONS(7609), + [anon_sym_LPAREN] = ACTIONS(7611), + [aux_sym_as_type_clause_token2] = ACTIONS(7609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7609), + [aux_sym_visibility_token1] = ACTIONS(7609), + [aux_sym_visibility_token2] = ACTIONS(7609), + [aux_sym_elseif_fragment_token1] = ACTIONS(7609), + [aux_sym_else_fragment_token1] = ACTIONS(7609), + [aux_sym_select_statement_token1] = ACTIONS(7609), + [aux_sym__for_header_token1] = ACTIONS(7609), + [aux_sym_do_statement_token1] = ACTIONS(7609), + [aux_sym_do_condition_token1] = ACTIONS(7609), + [aux_sym_with_statement_token1] = ACTIONS(7609), + [aux_sym_exit_statement_token1] = ACTIONS(7609), + [sym_end_statement] = ACTIONS(7611), + [aux_sym_on_goto_statement_token1] = ACTIONS(7609), + [aux_sym_on_goto_statement_token2] = ACTIONS(7609), + [aux_sym_on_error_statement_token2] = ACTIONS(7609), + [sym__ambiguous_redim_statement] = ACTIONS(7611), + [aux_sym_erase_statement_token1] = ACTIONS(7609), + [aux_sym_open_statement_token1] = ACTIONS(7609), + [aux_sym_file_mode_token2] = ACTIONS(7609), + [aux_sym_file_access_token2] = ACTIONS(7609), + [aux_sym_file_lock_token2] = ACTIONS(7609), + [aux_sym_print_statement_token1] = ACTIONS(7609), + [anon_sym_PLUS] = ACTIONS(7611), + [anon_sym_DASH] = ACTIONS(7609), + [anon_sym_SEMI] = ACTIONS(10003), + [anon_sym_QMARK] = ACTIONS(7611), + [aux_sym_close_statement_token1] = ACTIONS(7609), + [aux_sym_put_statement_token1] = ACTIONS(7609), + [aux_sym_unlock_statement_token1] = ACTIONS(7609), + [aux_sym_seek_statement_token1] = ACTIONS(7609), + [sym_reset_statement] = ACTIONS(7609), + [aux_sym_raise_event_statement_token1] = ACTIONS(7609), + [sym_stop_statement] = ACTIONS(7609), + [sym_beep_statement] = ACTIONS(7609), + [aux_sym_unload_statement_token1] = ACTIONS(7609), + [aux_sym_def_type_statement_token1] = ACTIONS(7609), + [aux_sym_def_type_statement_token2] = ACTIONS(7609), + [aux_sym_def_type_statement_token3] = ACTIONS(7609), + [aux_sym_def_type_statement_token4] = ACTIONS(7609), + [aux_sym_def_type_statement_token5] = ACTIONS(7609), + [aux_sym_def_type_statement_token6] = ACTIONS(7609), + [aux_sym_def_type_statement_token7] = ACTIONS(7609), + [aux_sym_def_type_statement_token8] = ACTIONS(7609), + [aux_sym_def_type_statement_token9] = ACTIONS(7609), + [aux_sym_def_type_statement_token10] = ACTIONS(7609), + [aux_sym_def_type_statement_token11] = ACTIONS(7609), + [aux_sym_def_type_statement_token12] = ACTIONS(7609), + [aux_sym_def_type_statement_token13] = ACTIONS(7609), + [aux_sym_def_type_statement_token14] = ACTIONS(7609), + [aux_sym_call_statement_token1] = ACTIONS(7609), + [sym__ambiguous_call_statement] = ACTIONS(7609), + [aux_sym_addressof_expression_token1] = ACTIONS(7609), + [aux_sym_type_of_expression_token1] = ACTIONS(7609), + [aux_sym_unary_expression_token1] = ACTIONS(7609), + [sym_string_literal] = ACTIONS(7611), + [sym_number_literal] = ACTIONS(7611), + [aux_sym_boolean_literal_token1] = ACTIONS(7609), + [aux_sym_boolean_literal_token2] = ACTIONS(7609), + [sym_nothing_literal] = ACTIONS(7609), + [sym_null_literal] = ACTIONS(7609), + [sym_empty_literal] = ACTIONS(7609), + [sym_date_literal] = ACTIONS(7611), + [anon_sym_POUND] = ACTIONS(7609), + }, + [STATE(4607)] = { + [sym_char_position] = STATE(396), + [aux_sym_output_list_repeat1] = STATE(4612), + [sym_identifier] = ACTIONS(7460), + [sym_newline] = ACTIONS(7462), + [anon_sym_COLON] = ACTIONS(7462), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7460), + [aux_sym_frm_property_statement_token1] = ACTIONS(7460), + [anon_sym_DOT] = ACTIONS(7460), + [anon_sym_BANG] = ACTIONS(7462), + [aux_sym__attribute_identifier_token1] = ACTIONS(7460), + [aux_sym_option_statement_token3] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7460), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7460), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7460), + [aux_sym_preprocessor_const_token1] = ACTIONS(7460), + [sym_static_modifier] = ACTIONS(7460), + [sym__dim_keyword] = ACTIONS(7460), + [sym__redim_keyword] = ACTIONS(7460), + [aux_sym_get_accessor_token1] = ACTIONS(7460), + [aux_sym_set_accessor_token1] = ACTIONS(7460), + [anon_sym_COMMA] = ACTIONS(10003), + [aux_sym_const_declaration_token1] = ACTIONS(7460), + [anon_sym_LPAREN] = ACTIONS(7462), + [aux_sym_as_type_clause_token2] = ACTIONS(7460), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7460), + [aux_sym_visibility_token1] = ACTIONS(7460), + [aux_sym_visibility_token2] = ACTIONS(7460), + [aux_sym_elseif_fragment_token1] = ACTIONS(7460), + [aux_sym_else_fragment_token1] = ACTIONS(7460), + [aux_sym_select_statement_token1] = ACTIONS(7460), + [aux_sym__for_header_token1] = ACTIONS(7460), + [aux_sym_do_statement_token1] = ACTIONS(7460), + [aux_sym_do_condition_token1] = ACTIONS(7460), + [aux_sym_with_statement_token1] = ACTIONS(7460), + [aux_sym_exit_statement_token1] = ACTIONS(7460), + [sym_end_statement] = ACTIONS(7462), + [aux_sym_on_goto_statement_token1] = ACTIONS(7460), + [aux_sym_on_goto_statement_token2] = ACTIONS(7460), + [aux_sym_on_error_statement_token2] = ACTIONS(7460), + [sym__ambiguous_redim_statement] = ACTIONS(7462), + [aux_sym_erase_statement_token1] = ACTIONS(7460), + [aux_sym_open_statement_token1] = ACTIONS(7460), + [aux_sym_file_mode_token2] = ACTIONS(7460), + [aux_sym_file_access_token2] = ACTIONS(7460), + [aux_sym_file_lock_token2] = ACTIONS(7460), + [aux_sym_print_statement_token1] = ACTIONS(7460), + [anon_sym_PLUS] = ACTIONS(7462), + [anon_sym_DASH] = ACTIONS(7460), + [anon_sym_SEMI] = ACTIONS(10003), + [anon_sym_QMARK] = ACTIONS(7462), + [aux_sym_close_statement_token1] = ACTIONS(7460), + [aux_sym_put_statement_token1] = ACTIONS(7460), + [aux_sym_unlock_statement_token1] = ACTIONS(7460), + [aux_sym_seek_statement_token1] = ACTIONS(7460), + [sym_reset_statement] = ACTIONS(7460), + [aux_sym_raise_event_statement_token1] = ACTIONS(7460), + [sym_stop_statement] = ACTIONS(7460), + [sym_beep_statement] = ACTIONS(7460), + [aux_sym_unload_statement_token1] = ACTIONS(7460), + [aux_sym_def_type_statement_token1] = ACTIONS(7460), + [aux_sym_def_type_statement_token2] = ACTIONS(7460), + [aux_sym_def_type_statement_token3] = ACTIONS(7460), + [aux_sym_def_type_statement_token4] = ACTIONS(7460), + [aux_sym_def_type_statement_token5] = ACTIONS(7460), + [aux_sym_def_type_statement_token6] = ACTIONS(7460), + [aux_sym_def_type_statement_token7] = ACTIONS(7460), + [aux_sym_def_type_statement_token8] = ACTIONS(7460), + [aux_sym_def_type_statement_token9] = ACTIONS(7460), + [aux_sym_def_type_statement_token10] = ACTIONS(7460), + [aux_sym_def_type_statement_token11] = ACTIONS(7460), + [aux_sym_def_type_statement_token12] = ACTIONS(7460), + [aux_sym_def_type_statement_token13] = ACTIONS(7460), + [aux_sym_def_type_statement_token14] = ACTIONS(7460), + [aux_sym_call_statement_token1] = ACTIONS(7460), + [sym__ambiguous_call_statement] = ACTIONS(7460), + [aux_sym_addressof_expression_token1] = ACTIONS(7460), + [aux_sym_type_of_expression_token1] = ACTIONS(7460), + [aux_sym_unary_expression_token1] = ACTIONS(7460), + [sym_string_literal] = ACTIONS(7462), + [sym_number_literal] = ACTIONS(7462), + [aux_sym_boolean_literal_token1] = ACTIONS(7460), + [aux_sym_boolean_literal_token2] = ACTIONS(7460), + [sym_nothing_literal] = ACTIONS(7460), + [sym_null_literal] = ACTIONS(7460), + [sym_empty_literal] = ACTIONS(7460), + [sym_date_literal] = ACTIONS(7462), + [anon_sym_POUND] = ACTIONS(7460), + }, + [STATE(4608)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4613), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(4609)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(4610)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(4611)] = { + [sym_initializer] = STATE(6232), + [sym_as_type_clause] = STATE(5000), + [sym_array_bounds] = STATE(4667), + [sym_identifier] = ACTIONS(6989), + [sym_newline] = ACTIONS(6991), + [anon_sym_COLON] = ACTIONS(6991), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6989), + [aux_sym_frm_property_statement_token1] = ACTIONS(6989), + [anon_sym_EQ] = ACTIONS(10017), + [anon_sym_DOT] = ACTIONS(6989), + [anon_sym_BANG] = ACTIONS(6991), + [aux_sym__attribute_identifier_token1] = ACTIONS(6989), + [aux_sym_option_statement_token3] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6989), + [aux_sym_preprocessor_const_token1] = ACTIONS(6989), + [sym_static_modifier] = ACTIONS(6989), + [sym__dim_keyword] = ACTIONS(6989), + [sym__redim_keyword] = ACTIONS(6989), + [aux_sym_get_accessor_token1] = ACTIONS(6989), + [aux_sym_set_accessor_token1] = ACTIONS(6989), + [anon_sym_COMMA] = ACTIONS(6991), + [aux_sym_const_declaration_token1] = ACTIONS(6989), + [anon_sym_LPAREN] = ACTIONS(10019), + [aux_sym_as_type_clause_token1] = ACTIONS(10021), + [aux_sym_as_type_clause_token2] = ACTIONS(6989), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6989), + [aux_sym_visibility_token1] = ACTIONS(6989), + [aux_sym_visibility_token2] = ACTIONS(6989), + [aux_sym_elseif_fragment_token1] = ACTIONS(6989), + [aux_sym_else_fragment_token1] = ACTIONS(6989), + [aux_sym_select_statement_token1] = ACTIONS(6989), + [aux_sym__for_header_token1] = ACTIONS(6989), + [aux_sym_do_statement_token1] = ACTIONS(6989), + [aux_sym_do_statement_token2] = ACTIONS(6989), + [aux_sym_do_condition_token1] = ACTIONS(6989), + [aux_sym_with_statement_token1] = ACTIONS(6989), + [aux_sym_exit_statement_token1] = ACTIONS(6989), + [sym_end_statement] = ACTIONS(6991), + [aux_sym_on_goto_statement_token1] = ACTIONS(6989), + [aux_sym_on_goto_statement_token2] = ACTIONS(6989), + [aux_sym_on_error_statement_token2] = ACTIONS(6989), + [sym__ambiguous_redim_statement] = ACTIONS(6991), + [aux_sym_erase_statement_token1] = ACTIONS(6989), + [aux_sym_open_statement_token1] = ACTIONS(6989), + [aux_sym_file_mode_token2] = ACTIONS(6989), + [aux_sym_file_access_token2] = ACTIONS(6989), + [aux_sym_file_lock_token2] = ACTIONS(6989), + [aux_sym_print_statement_token1] = ACTIONS(6989), + [anon_sym_PLUS] = ACTIONS(6991), + [anon_sym_DASH] = ACTIONS(6989), + [anon_sym_QMARK] = ACTIONS(6991), + [aux_sym_close_statement_token1] = ACTIONS(6989), + [aux_sym_put_statement_token1] = ACTIONS(6989), + [aux_sym_unlock_statement_token1] = ACTIONS(6989), + [aux_sym_seek_statement_token1] = ACTIONS(6989), + [sym_reset_statement] = ACTIONS(6989), + [aux_sym_raise_event_statement_token1] = ACTIONS(6989), + [sym_stop_statement] = ACTIONS(6989), + [sym_beep_statement] = ACTIONS(6989), + [aux_sym_unload_statement_token1] = ACTIONS(6989), + [aux_sym_def_type_statement_token1] = ACTIONS(6989), + [aux_sym_def_type_statement_token2] = ACTIONS(6989), + [aux_sym_def_type_statement_token3] = ACTIONS(6989), + [aux_sym_def_type_statement_token4] = ACTIONS(6989), + [aux_sym_def_type_statement_token5] = ACTIONS(6989), + [aux_sym_def_type_statement_token6] = ACTIONS(6989), + [aux_sym_def_type_statement_token7] = ACTIONS(6989), + [aux_sym_def_type_statement_token8] = ACTIONS(6989), + [aux_sym_def_type_statement_token9] = ACTIONS(6989), + [aux_sym_def_type_statement_token10] = ACTIONS(6989), + [aux_sym_def_type_statement_token11] = ACTIONS(6989), + [aux_sym_def_type_statement_token12] = ACTIONS(6989), + [aux_sym_def_type_statement_token13] = ACTIONS(6989), + [aux_sym_def_type_statement_token14] = ACTIONS(6989), + [aux_sym_call_statement_token1] = ACTIONS(6989), + [sym__ambiguous_call_statement] = ACTIONS(6989), + [aux_sym_addressof_expression_token1] = ACTIONS(6989), + [aux_sym_type_of_expression_token1] = ACTIONS(6989), + [aux_sym_unary_expression_token1] = ACTIONS(6989), + [sym_string_literal] = ACTIONS(6991), + [sym_number_literal] = ACTIONS(6991), + [aux_sym_boolean_literal_token1] = ACTIONS(6989), + [aux_sym_boolean_literal_token2] = ACTIONS(6989), + [sym_nothing_literal] = ACTIONS(6989), + [sym_null_literal] = ACTIONS(6989), + [sym_empty_literal] = ACTIONS(6989), + [sym_date_literal] = ACTIONS(6991), + [anon_sym_POUND] = ACTIONS(6989), + }, + [STATE(4612)] = { + [sym_char_position] = STATE(7545), + [aux_sym_output_list_repeat1] = STATE(4612), + [sym_identifier] = ACTIONS(7618), + [sym_newline] = ACTIONS(7620), + [anon_sym_COLON] = ACTIONS(7620), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7618), + [aux_sym_frm_property_statement_token1] = ACTIONS(7618), + [anon_sym_DOT] = ACTIONS(7618), + [anon_sym_BANG] = ACTIONS(7620), + [aux_sym__attribute_identifier_token1] = ACTIONS(7618), + [aux_sym_option_statement_token3] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7618), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7618), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7618), + [aux_sym_preprocessor_const_token1] = ACTIONS(7618), + [sym_static_modifier] = ACTIONS(7618), + [sym__dim_keyword] = ACTIONS(7618), + [sym__redim_keyword] = ACTIONS(7618), + [aux_sym_get_accessor_token1] = ACTIONS(7618), + [aux_sym_set_accessor_token1] = ACTIONS(7618), + [anon_sym_COMMA] = ACTIONS(7622), + [aux_sym_const_declaration_token1] = ACTIONS(7618), + [anon_sym_LPAREN] = ACTIONS(7620), + [aux_sym_as_type_clause_token2] = ACTIONS(7618), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7618), + [aux_sym_visibility_token1] = ACTIONS(7618), + [aux_sym_visibility_token2] = ACTIONS(7618), + [aux_sym_elseif_fragment_token1] = ACTIONS(7618), + [aux_sym_else_fragment_token1] = ACTIONS(7618), + [aux_sym_select_statement_token1] = ACTIONS(7618), + [aux_sym__for_header_token1] = ACTIONS(7618), + [aux_sym_do_statement_token1] = ACTIONS(7618), + [aux_sym_do_condition_token1] = ACTIONS(7618), + [aux_sym_with_statement_token1] = ACTIONS(7618), + [aux_sym_exit_statement_token1] = ACTIONS(7618), + [sym_end_statement] = ACTIONS(7620), + [aux_sym_on_goto_statement_token1] = ACTIONS(7618), + [aux_sym_on_goto_statement_token2] = ACTIONS(7618), + [aux_sym_on_error_statement_token2] = ACTIONS(7618), + [sym__ambiguous_redim_statement] = ACTIONS(7620), + [aux_sym_erase_statement_token1] = ACTIONS(7618), + [aux_sym_open_statement_token1] = ACTIONS(7618), + [aux_sym_file_mode_token2] = ACTIONS(7618), + [aux_sym_file_access_token2] = ACTIONS(7618), + [aux_sym_file_lock_token2] = ACTIONS(7618), + [aux_sym_print_statement_token1] = ACTIONS(7618), + [anon_sym_PLUS] = ACTIONS(7620), + [anon_sym_DASH] = ACTIONS(7618), + [anon_sym_SEMI] = ACTIONS(7622), + [anon_sym_QMARK] = ACTIONS(7620), + [aux_sym_close_statement_token1] = ACTIONS(7618), + [aux_sym_put_statement_token1] = ACTIONS(7618), + [aux_sym_unlock_statement_token1] = ACTIONS(7618), + [aux_sym_seek_statement_token1] = ACTIONS(7618), + [sym_reset_statement] = ACTIONS(7618), + [aux_sym_raise_event_statement_token1] = ACTIONS(7618), + [sym_stop_statement] = ACTIONS(7618), + [sym_beep_statement] = ACTIONS(7618), + [aux_sym_unload_statement_token1] = ACTIONS(7618), + [aux_sym_def_type_statement_token1] = ACTIONS(7618), + [aux_sym_def_type_statement_token2] = ACTIONS(7618), + [aux_sym_def_type_statement_token3] = ACTIONS(7618), + [aux_sym_def_type_statement_token4] = ACTIONS(7618), + [aux_sym_def_type_statement_token5] = ACTIONS(7618), + [aux_sym_def_type_statement_token6] = ACTIONS(7618), + [aux_sym_def_type_statement_token7] = ACTIONS(7618), + [aux_sym_def_type_statement_token8] = ACTIONS(7618), + [aux_sym_def_type_statement_token9] = ACTIONS(7618), + [aux_sym_def_type_statement_token10] = ACTIONS(7618), + [aux_sym_def_type_statement_token11] = ACTIONS(7618), + [aux_sym_def_type_statement_token12] = ACTIONS(7618), + [aux_sym_def_type_statement_token13] = ACTIONS(7618), + [aux_sym_def_type_statement_token14] = ACTIONS(7618), + [aux_sym_call_statement_token1] = ACTIONS(7618), + [sym__ambiguous_call_statement] = ACTIONS(7618), + [aux_sym_addressof_expression_token1] = ACTIONS(7618), + [aux_sym_type_of_expression_token1] = ACTIONS(7618), + [aux_sym_unary_expression_token1] = ACTIONS(7618), + [sym_string_literal] = ACTIONS(7620), + [sym_number_literal] = ACTIONS(7620), + [aux_sym_boolean_literal_token1] = ACTIONS(7618), + [aux_sym_boolean_literal_token2] = ACTIONS(7618), + [sym_nothing_literal] = ACTIONS(7618), + [sym_null_literal] = ACTIONS(7618), + [sym_empty_literal] = ACTIONS(7618), + [sym_date_literal] = ACTIONS(7620), + [anon_sym_POUND] = ACTIONS(7618), + }, + [STATE(4613)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4613), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(10023), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(4614)] = { + [sym_next_variable_list] = STATE(7271), + [sym__assignable_expression] = STATE(5844), + [sym__callable_expression] = STATE(5929), + [sym_call_expression] = STATE(6127), + [sym_member_expression] = STATE(6743), + [sym_qualified_member_expression] = STATE(6669), + [sym_implicit_member_expression] = STATE(6669), + [sym_identifier] = ACTIONS(9987), + [sym_newline] = ACTIONS(6842), + [anon_sym_COLON] = ACTIONS(6842), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6844), + [aux_sym_frm_property_statement_token1] = ACTIONS(9989), + [anon_sym_DOT] = ACTIONS(9991), + [anon_sym_BANG] = ACTIONS(9993), + [aux_sym__attribute_identifier_token1] = ACTIONS(6844), + [aux_sym_option_statement_token3] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6844), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6844), + [aux_sym_preprocessor_const_token1] = ACTIONS(6844), + [sym_static_modifier] = ACTIONS(6844), + [sym__dim_keyword] = ACTIONS(6844), + [sym__redim_keyword] = ACTIONS(6844), + [aux_sym_get_accessor_token1] = ACTIONS(6844), + [aux_sym_set_accessor_token1] = ACTIONS(6844), + [aux_sym_const_declaration_token1] = ACTIONS(6844), + [anon_sym_LPAREN] = ACTIONS(6842), + [aux_sym_as_type_clause_token2] = ACTIONS(6844), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9995), + [aux_sym_visibility_token1] = ACTIONS(6844), + [aux_sym_visibility_token2] = ACTIONS(6844), + [aux_sym_elseif_fragment_token1] = ACTIONS(6844), + [aux_sym_else_fragment_token1] = ACTIONS(6844), + [aux_sym_select_statement_token1] = ACTIONS(6844), + [aux_sym__for_header_token1] = ACTIONS(6844), + [aux_sym_do_statement_token1] = ACTIONS(6844), + [aux_sym_do_condition_token1] = ACTIONS(6844), + [aux_sym_with_statement_token1] = ACTIONS(6844), + [aux_sym_exit_statement_token1] = ACTIONS(6844), + [sym_end_statement] = ACTIONS(6842), + [aux_sym_on_goto_statement_token1] = ACTIONS(6844), + [aux_sym_on_goto_statement_token2] = ACTIONS(6844), + [aux_sym_on_error_statement_token2] = ACTIONS(6844), + [sym__ambiguous_redim_statement] = ACTIONS(6842), + [aux_sym_erase_statement_token1] = ACTIONS(6844), + [aux_sym_open_statement_token1] = ACTIONS(6844), + [aux_sym_file_mode_token2] = ACTIONS(6844), + [aux_sym_file_access_token2] = ACTIONS(6844), + [aux_sym_file_lock_token2] = ACTIONS(6844), + [aux_sym_print_statement_token1] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_QMARK] = ACTIONS(6842), + [aux_sym_close_statement_token1] = ACTIONS(6844), + [aux_sym_put_statement_token1] = ACTIONS(6844), + [aux_sym_unlock_statement_token1] = ACTIONS(6844), + [aux_sym_seek_statement_token1] = ACTIONS(6844), + [sym_reset_statement] = ACTIONS(6844), + [aux_sym_raise_event_statement_token1] = ACTIONS(6844), + [sym_stop_statement] = ACTIONS(6844), + [sym_beep_statement] = ACTIONS(6844), + [aux_sym_unload_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token1] = ACTIONS(6844), + [aux_sym_def_type_statement_token2] = ACTIONS(6844), + [aux_sym_def_type_statement_token3] = ACTIONS(6844), + [aux_sym_def_type_statement_token4] = ACTIONS(6844), + [aux_sym_def_type_statement_token5] = ACTIONS(6844), + [aux_sym_def_type_statement_token6] = ACTIONS(6844), + [aux_sym_def_type_statement_token7] = ACTIONS(6844), + [aux_sym_def_type_statement_token8] = ACTIONS(6844), + [aux_sym_def_type_statement_token9] = ACTIONS(6844), + [aux_sym_def_type_statement_token10] = ACTIONS(6844), + [aux_sym_def_type_statement_token11] = ACTIONS(6844), + [aux_sym_def_type_statement_token12] = ACTIONS(6844), + [aux_sym_def_type_statement_token13] = ACTIONS(6844), + [aux_sym_def_type_statement_token14] = ACTIONS(6844), + [aux_sym_call_statement_token1] = ACTIONS(6844), + [sym__ambiguous_call_statement] = ACTIONS(6844), + [aux_sym_addressof_expression_token1] = ACTIONS(6844), + [aux_sym_type_of_expression_token1] = ACTIONS(6844), + [aux_sym_unary_expression_token1] = ACTIONS(6844), + [sym_string_literal] = ACTIONS(6842), + [sym_number_literal] = ACTIONS(6842), + [aux_sym_boolean_literal_token1] = ACTIONS(6844), + [aux_sym_boolean_literal_token2] = ACTIONS(6844), + [sym_nothing_literal] = ACTIONS(6844), + [sym_null_literal] = ACTIONS(6844), + [sym_empty_literal] = ACTIONS(6844), + [sym_date_literal] = ACTIONS(6842), + [anon_sym_POUND] = ACTIONS(6844), + }, + [STATE(4615)] = { + [sym_initializer] = STATE(6199), + [sym_as_type_clause] = STATE(4951), + [sym_array_bounds] = STATE(4649), + [sym_identifier] = ACTIONS(6989), + [sym_newline] = ACTIONS(6991), + [anon_sym_COLON] = ACTIONS(6991), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6989), + [aux_sym_frm_property_statement_token1] = ACTIONS(6989), + [anon_sym_EQ] = ACTIONS(10026), + [anon_sym_DOT] = ACTIONS(6989), + [anon_sym_BANG] = ACTIONS(6991), + [aux_sym__attribute_identifier_token1] = ACTIONS(6989), + [aux_sym_option_statement_token3] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6989), + [aux_sym_preprocessor_const_token1] = ACTIONS(6989), + [sym_static_modifier] = ACTIONS(6989), + [sym__dim_keyword] = ACTIONS(6989), + [sym__redim_keyword] = ACTIONS(6989), + [aux_sym_get_accessor_token1] = ACTIONS(6989), + [aux_sym_set_accessor_token1] = ACTIONS(6989), + [anon_sym_COMMA] = ACTIONS(6991), + [aux_sym_const_declaration_token1] = ACTIONS(6989), + [anon_sym_LPAREN] = ACTIONS(10028), + [aux_sym_as_type_clause_token1] = ACTIONS(10030), + [aux_sym_as_type_clause_token2] = ACTIONS(6989), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6989), + [aux_sym_visibility_token1] = ACTIONS(6989), + [aux_sym_visibility_token2] = ACTIONS(6989), + [aux_sym_elseif_fragment_token1] = ACTIONS(6989), + [aux_sym_else_fragment_token1] = ACTIONS(6989), + [aux_sym_select_statement_token1] = ACTIONS(6989), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6989), + [aux_sym__for_header_token1] = ACTIONS(6989), + [aux_sym_do_statement_token1] = ACTIONS(6989), + [aux_sym_do_condition_token1] = ACTIONS(6989), + [aux_sym_with_statement_token1] = ACTIONS(6989), + [aux_sym_exit_statement_token1] = ACTIONS(6989), + [sym_end_statement] = ACTIONS(6991), + [aux_sym_on_goto_statement_token1] = ACTIONS(6989), + [aux_sym_on_goto_statement_token2] = ACTIONS(6989), + [aux_sym_on_error_statement_token2] = ACTIONS(6989), + [sym__ambiguous_redim_statement] = ACTIONS(6991), + [aux_sym_erase_statement_token1] = ACTIONS(6989), + [aux_sym_open_statement_token1] = ACTIONS(6989), + [aux_sym_file_mode_token2] = ACTIONS(6989), + [aux_sym_file_access_token2] = ACTIONS(6989), + [aux_sym_file_lock_token2] = ACTIONS(6989), + [aux_sym_print_statement_token1] = ACTIONS(6989), + [anon_sym_PLUS] = ACTIONS(6991), + [anon_sym_DASH] = ACTIONS(6989), + [anon_sym_QMARK] = ACTIONS(6991), + [aux_sym_close_statement_token1] = ACTIONS(6989), + [aux_sym_put_statement_token1] = ACTIONS(6989), + [aux_sym_unlock_statement_token1] = ACTIONS(6989), + [aux_sym_seek_statement_token1] = ACTIONS(6989), + [sym_reset_statement] = ACTIONS(6989), + [aux_sym_raise_event_statement_token1] = ACTIONS(6989), + [sym_stop_statement] = ACTIONS(6989), + [sym_beep_statement] = ACTIONS(6989), + [aux_sym_unload_statement_token1] = ACTIONS(6989), + [aux_sym_def_type_statement_token1] = ACTIONS(6989), + [aux_sym_def_type_statement_token2] = ACTIONS(6989), + [aux_sym_def_type_statement_token3] = ACTIONS(6989), + [aux_sym_def_type_statement_token4] = ACTIONS(6989), + [aux_sym_def_type_statement_token5] = ACTIONS(6989), + [aux_sym_def_type_statement_token6] = ACTIONS(6989), + [aux_sym_def_type_statement_token7] = ACTIONS(6989), + [aux_sym_def_type_statement_token8] = ACTIONS(6989), + [aux_sym_def_type_statement_token9] = ACTIONS(6989), + [aux_sym_def_type_statement_token10] = ACTIONS(6989), + [aux_sym_def_type_statement_token11] = ACTIONS(6989), + [aux_sym_def_type_statement_token12] = ACTIONS(6989), + [aux_sym_def_type_statement_token13] = ACTIONS(6989), + [aux_sym_def_type_statement_token14] = ACTIONS(6989), + [aux_sym_call_statement_token1] = ACTIONS(6989), + [sym__ambiguous_call_statement] = ACTIONS(6989), + [aux_sym_addressof_expression_token1] = ACTIONS(6989), + [aux_sym_type_of_expression_token1] = ACTIONS(6989), + [aux_sym_unary_expression_token1] = ACTIONS(6989), + [sym_string_literal] = ACTIONS(6991), + [sym_number_literal] = ACTIONS(6991), + [aux_sym_boolean_literal_token1] = ACTIONS(6989), + [aux_sym_boolean_literal_token2] = ACTIONS(6989), + [sym_nothing_literal] = ACTIONS(6989), + [sym_null_literal] = ACTIONS(6989), + [sym_empty_literal] = ACTIONS(6989), + [sym_date_literal] = ACTIONS(6991), + [anon_sym_POUND] = ACTIONS(6989), + }, + [STATE(4616)] = { + [sym_next_variable_list] = STATE(7126), + [sym__assignable_expression] = STATE(5844), + [sym__callable_expression] = STATE(5929), + [sym_call_expression] = STATE(6127), + [sym_member_expression] = STATE(6743), + [sym_qualified_member_expression] = STATE(6669), + [sym_implicit_member_expression] = STATE(6669), + [sym_identifier] = ACTIONS(9987), + [sym_newline] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(6856), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6858), + [aux_sym_frm_property_statement_token1] = ACTIONS(9989), + [anon_sym_DOT] = ACTIONS(9991), + [anon_sym_BANG] = ACTIONS(9993), + [aux_sym__attribute_identifier_token1] = ACTIONS(6858), + [aux_sym_option_statement_token3] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6858), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6858), + [aux_sym_preprocessor_const_token1] = ACTIONS(6858), + [sym_static_modifier] = ACTIONS(6858), + [sym__dim_keyword] = ACTIONS(6858), + [sym__redim_keyword] = ACTIONS(6858), + [aux_sym_get_accessor_token1] = ACTIONS(6858), + [aux_sym_set_accessor_token1] = ACTIONS(6858), + [aux_sym_const_declaration_token1] = ACTIONS(6858), + [anon_sym_LPAREN] = ACTIONS(6856), + [aux_sym_as_type_clause_token2] = ACTIONS(6858), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9995), + [aux_sym_visibility_token1] = ACTIONS(6858), + [aux_sym_visibility_token2] = ACTIONS(6858), + [aux_sym_elseif_fragment_token1] = ACTIONS(6858), + [aux_sym_else_fragment_token1] = ACTIONS(6858), + [aux_sym_select_statement_token1] = ACTIONS(6858), + [aux_sym__for_header_token1] = ACTIONS(6858), + [aux_sym_do_statement_token1] = ACTIONS(6858), + [aux_sym_do_condition_token1] = ACTIONS(6858), + [aux_sym_with_statement_token1] = ACTIONS(6858), + [aux_sym_exit_statement_token1] = ACTIONS(6858), + [sym_end_statement] = ACTIONS(6856), + [aux_sym_on_goto_statement_token1] = ACTIONS(6858), + [aux_sym_on_goto_statement_token2] = ACTIONS(6858), + [aux_sym_on_error_statement_token2] = ACTIONS(6858), + [sym__ambiguous_redim_statement] = ACTIONS(6856), + [aux_sym_erase_statement_token1] = ACTIONS(6858), + [aux_sym_open_statement_token1] = ACTIONS(6858), + [aux_sym_file_mode_token2] = ACTIONS(6858), + [aux_sym_file_access_token2] = ACTIONS(6858), + [aux_sym_file_lock_token2] = ACTIONS(6858), + [aux_sym_print_statement_token1] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6856), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_QMARK] = ACTIONS(6856), + [aux_sym_close_statement_token1] = ACTIONS(6858), + [aux_sym_put_statement_token1] = ACTIONS(6858), + [aux_sym_unlock_statement_token1] = ACTIONS(6858), + [aux_sym_seek_statement_token1] = ACTIONS(6858), + [sym_reset_statement] = ACTIONS(6858), + [aux_sym_raise_event_statement_token1] = ACTIONS(6858), + [sym_stop_statement] = ACTIONS(6858), + [sym_beep_statement] = ACTIONS(6858), + [aux_sym_unload_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token1] = ACTIONS(6858), + [aux_sym_def_type_statement_token2] = ACTIONS(6858), + [aux_sym_def_type_statement_token3] = ACTIONS(6858), + [aux_sym_def_type_statement_token4] = ACTIONS(6858), + [aux_sym_def_type_statement_token5] = ACTIONS(6858), + [aux_sym_def_type_statement_token6] = ACTIONS(6858), + [aux_sym_def_type_statement_token7] = ACTIONS(6858), + [aux_sym_def_type_statement_token8] = ACTIONS(6858), + [aux_sym_def_type_statement_token9] = ACTIONS(6858), + [aux_sym_def_type_statement_token10] = ACTIONS(6858), + [aux_sym_def_type_statement_token11] = ACTIONS(6858), + [aux_sym_def_type_statement_token12] = ACTIONS(6858), + [aux_sym_def_type_statement_token13] = ACTIONS(6858), + [aux_sym_def_type_statement_token14] = ACTIONS(6858), + [aux_sym_call_statement_token1] = ACTIONS(6858), + [sym__ambiguous_call_statement] = ACTIONS(6858), + [aux_sym_addressof_expression_token1] = ACTIONS(6858), + [aux_sym_type_of_expression_token1] = ACTIONS(6858), + [aux_sym_unary_expression_token1] = ACTIONS(6858), + [sym_string_literal] = ACTIONS(6856), + [sym_number_literal] = ACTIONS(6856), + [aux_sym_boolean_literal_token1] = ACTIONS(6858), + [aux_sym_boolean_literal_token2] = ACTIONS(6858), + [sym_nothing_literal] = ACTIONS(6858), + [sym_null_literal] = ACTIONS(6858), + [sym_empty_literal] = ACTIONS(6858), + [sym_date_literal] = ACTIONS(6856), + [anon_sym_POUND] = ACTIONS(6858), + }, + [STATE(4617)] = { + [sym_initializer] = STATE(5850), + [sym_as_type_clause] = STATE(4916), + [sym_array_bounds] = STATE(4684), + [sym_identifier] = ACTIONS(6989), + [sym_newline] = ACTIONS(6991), + [anon_sym_COLON] = ACTIONS(6991), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6989), + [aux_sym_frm_property_statement_token1] = ACTIONS(6989), + [anon_sym_EQ] = ACTIONS(10032), + [anon_sym_DOT] = ACTIONS(6989), + [anon_sym_BANG] = ACTIONS(6991), + [aux_sym__attribute_identifier_token1] = ACTIONS(6989), + [aux_sym_option_statement_token3] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6989), + [aux_sym_preprocessor_const_token1] = ACTIONS(6989), + [sym_static_modifier] = ACTIONS(6989), + [sym__dim_keyword] = ACTIONS(6989), + [sym__redim_keyword] = ACTIONS(6989), + [aux_sym_get_accessor_token1] = ACTIONS(6989), + [aux_sym_set_accessor_token1] = ACTIONS(6989), + [anon_sym_COMMA] = ACTIONS(6991), + [aux_sym_const_declaration_token1] = ACTIONS(6989), + [anon_sym_LPAREN] = ACTIONS(10034), + [aux_sym_as_type_clause_token1] = ACTIONS(10036), + [aux_sym_as_type_clause_token2] = ACTIONS(6989), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6989), + [aux_sym_visibility_token1] = ACTIONS(6989), + [aux_sym_visibility_token2] = ACTIONS(6989), + [aux_sym_elseif_fragment_token1] = ACTIONS(6989), + [aux_sym_else_fragment_token1] = ACTIONS(6989), + [aux_sym_select_statement_token1] = ACTIONS(6989), + [aux_sym__for_header_token1] = ACTIONS(6989), + [aux_sym_do_statement_token1] = ACTIONS(6989), + [aux_sym_do_condition_token1] = ACTIONS(6989), + [aux_sym_with_statement_token1] = ACTIONS(6989), + [aux_sym_exit_statement_token1] = ACTIONS(6989), + [sym_end_statement] = ACTIONS(6991), + [aux_sym_on_goto_statement_token1] = ACTIONS(6989), + [aux_sym_on_goto_statement_token2] = ACTIONS(6989), + [aux_sym_on_error_statement_token2] = ACTIONS(6989), + [sym__ambiguous_redim_statement] = ACTIONS(6991), + [aux_sym_erase_statement_token1] = ACTIONS(6989), + [aux_sym_open_statement_token1] = ACTIONS(6989), + [aux_sym_file_mode_token2] = ACTIONS(6989), + [aux_sym_file_access_token2] = ACTIONS(6989), + [aux_sym_file_lock_token2] = ACTIONS(6989), + [aux_sym_print_statement_token1] = ACTIONS(6989), + [anon_sym_PLUS] = ACTIONS(6991), + [anon_sym_DASH] = ACTIONS(6989), + [anon_sym_QMARK] = ACTIONS(6991), + [aux_sym_close_statement_token1] = ACTIONS(6989), + [aux_sym_put_statement_token1] = ACTIONS(6989), + [aux_sym_unlock_statement_token1] = ACTIONS(6989), + [aux_sym_seek_statement_token1] = ACTIONS(6989), + [sym_reset_statement] = ACTIONS(6989), + [aux_sym_raise_event_statement_token1] = ACTIONS(6989), + [sym_stop_statement] = ACTIONS(6989), + [sym_beep_statement] = ACTIONS(6989), + [aux_sym_unload_statement_token1] = ACTIONS(6989), + [aux_sym_def_type_statement_token1] = ACTIONS(6989), + [aux_sym_def_type_statement_token2] = ACTIONS(6989), + [aux_sym_def_type_statement_token3] = ACTIONS(6989), + [aux_sym_def_type_statement_token4] = ACTIONS(6989), + [aux_sym_def_type_statement_token5] = ACTIONS(6989), + [aux_sym_def_type_statement_token6] = ACTIONS(6989), + [aux_sym_def_type_statement_token7] = ACTIONS(6989), + [aux_sym_def_type_statement_token8] = ACTIONS(6989), + [aux_sym_def_type_statement_token9] = ACTIONS(6989), + [aux_sym_def_type_statement_token10] = ACTIONS(6989), + [aux_sym_def_type_statement_token11] = ACTIONS(6989), + [aux_sym_def_type_statement_token12] = ACTIONS(6989), + [aux_sym_def_type_statement_token13] = ACTIONS(6989), + [aux_sym_def_type_statement_token14] = ACTIONS(6989), + [aux_sym_call_statement_token1] = ACTIONS(6989), + [sym__ambiguous_call_statement] = ACTIONS(6989), + [aux_sym_addressof_expression_token1] = ACTIONS(6989), + [aux_sym_type_of_expression_token1] = ACTIONS(6989), + [aux_sym_unary_expression_token1] = ACTIONS(6989), + [sym_string_literal] = ACTIONS(6991), + [sym_number_literal] = ACTIONS(6991), + [aux_sym_boolean_literal_token1] = ACTIONS(6989), + [aux_sym_boolean_literal_token2] = ACTIONS(6989), + [sym_nothing_literal] = ACTIONS(6989), + [sym_null_literal] = ACTIONS(6989), + [sym_empty_literal] = ACTIONS(6989), + [sym_date_literal] = ACTIONS(6991), + [anon_sym_POUND] = ACTIONS(6989), + }, + [STATE(4618)] = { + [sym_identifier] = ACTIONS(5752), + [sym_newline] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5752), + [aux_sym_frm_property_statement_token1] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5752), + [anon_sym_BANG] = ACTIONS(5754), + [aux_sym__attribute_identifier_token1] = ACTIONS(5752), + [aux_sym_option_statement_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5752), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5752), + [aux_sym_preprocessor_const_token1] = ACTIONS(5752), + [sym_static_modifier] = ACTIONS(5752), + [sym__dim_keyword] = ACTIONS(5752), + [sym__redim_keyword] = ACTIONS(5752), + [aux_sym_get_accessor_token1] = ACTIONS(5752), + [aux_sym_set_accessor_token1] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5754), + [aux_sym_const_declaration_token1] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [aux_sym_as_type_clause_token2] = ACTIONS(5752), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5752), + [aux_sym_visibility_token1] = ACTIONS(5752), + [aux_sym_visibility_token2] = ACTIONS(5752), + [aux_sym_elseif_fragment_token1] = ACTIONS(5752), + [aux_sym_else_fragment_token1] = ACTIONS(5752), + [aux_sym_select_statement_token1] = ACTIONS(5752), + [aux_sym__for_header_token1] = ACTIONS(5752), + [aux_sym_do_statement_token1] = ACTIONS(5752), + [aux_sym_do_condition_token1] = ACTIONS(5752), + [aux_sym_with_statement_token1] = ACTIONS(5752), + [aux_sym_exit_statement_token1] = ACTIONS(5752), + [sym_end_statement] = ACTIONS(5754), + [aux_sym_on_goto_statement_token1] = ACTIONS(5752), + [aux_sym_on_goto_statement_token2] = ACTIONS(5752), + [aux_sym_on_error_statement_token2] = ACTIONS(5752), + [sym__ambiguous_redim_statement] = ACTIONS(5754), + [aux_sym_erase_statement_token1] = ACTIONS(5752), + [aux_sym_open_statement_token1] = ACTIONS(5752), + [aux_sym_file_mode_token2] = ACTIONS(5752), + [aux_sym_file_access_token2] = ACTIONS(5752), + [aux_sym_file_lock_token2] = ACTIONS(5752), + [aux_sym_print_statement_token1] = ACTIONS(5752), + [anon_sym_PLUS] = ACTIONS(5754), + [anon_sym_DASH] = ACTIONS(5752), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(9983), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(9985), + [anon_sym_SEMI] = ACTIONS(5754), + [anon_sym_QMARK] = ACTIONS(5754), + [aux_sym_close_statement_token1] = ACTIONS(5752), + [aux_sym_put_statement_token1] = ACTIONS(5752), + [aux_sym_unlock_statement_token1] = ACTIONS(5752), + [aux_sym_seek_statement_token1] = ACTIONS(5752), + [sym_reset_statement] = ACTIONS(5752), + [aux_sym_raise_event_statement_token1] = ACTIONS(5752), + [sym_stop_statement] = ACTIONS(5752), + [sym_beep_statement] = ACTIONS(5752), + [aux_sym_unload_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token2] = ACTIONS(5752), + [aux_sym_def_type_statement_token3] = ACTIONS(5752), + [aux_sym_def_type_statement_token4] = ACTIONS(5752), + [aux_sym_def_type_statement_token5] = ACTIONS(5752), + [aux_sym_def_type_statement_token6] = ACTIONS(5752), + [aux_sym_def_type_statement_token7] = ACTIONS(5752), + [aux_sym_def_type_statement_token8] = ACTIONS(5752), + [aux_sym_def_type_statement_token9] = ACTIONS(5752), + [aux_sym_def_type_statement_token10] = ACTIONS(5752), + [aux_sym_def_type_statement_token11] = ACTIONS(5752), + [aux_sym_def_type_statement_token12] = ACTIONS(5752), + [aux_sym_def_type_statement_token13] = ACTIONS(5752), + [aux_sym_def_type_statement_token14] = ACTIONS(5752), + [aux_sym_call_statement_token1] = ACTIONS(5752), + [sym__ambiguous_call_statement] = ACTIONS(5752), + [aux_sym_addressof_expression_token1] = ACTIONS(5752), + [aux_sym_type_of_expression_token1] = ACTIONS(5752), + [aux_sym_unary_expression_token1] = ACTIONS(5752), + [sym_string_literal] = ACTIONS(5754), + [sym_number_literal] = ACTIONS(5754), + [aux_sym_boolean_literal_token1] = ACTIONS(5752), + [aux_sym_boolean_literal_token2] = ACTIONS(5752), + [sym_nothing_literal] = ACTIONS(5752), + [sym_null_literal] = ACTIONS(5752), + [sym_empty_literal] = ACTIONS(5752), + [sym_date_literal] = ACTIONS(5754), + [anon_sym_POUND] = ACTIONS(5752), + }, + [STATE(4619)] = { + [sym_next_variable_list] = STATE(7262), + [sym__assignable_expression] = STATE(5844), + [sym__callable_expression] = STATE(5929), + [sym_call_expression] = STATE(6127), + [sym_member_expression] = STATE(6743), + [sym_qualified_member_expression] = STATE(6669), + [sym_implicit_member_expression] = STATE(6669), + [sym_identifier] = ACTIONS(9987), + [sym_newline] = ACTIONS(6848), + [anon_sym_COLON] = ACTIONS(6848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6850), + [aux_sym_frm_property_statement_token1] = ACTIONS(9989), + [anon_sym_DOT] = ACTIONS(9991), + [anon_sym_BANG] = ACTIONS(9993), + [aux_sym__attribute_identifier_token1] = ACTIONS(6850), + [aux_sym_option_statement_token3] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6850), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6850), + [aux_sym_preprocessor_const_token1] = ACTIONS(6850), + [sym_static_modifier] = ACTIONS(6850), + [sym__dim_keyword] = ACTIONS(6850), + [sym__redim_keyword] = ACTIONS(6850), + [aux_sym_get_accessor_token1] = ACTIONS(6850), + [aux_sym_set_accessor_token1] = ACTIONS(6850), + [aux_sym_const_declaration_token1] = ACTIONS(6850), + [anon_sym_LPAREN] = ACTIONS(6848), + [aux_sym_as_type_clause_token2] = ACTIONS(6850), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9995), + [aux_sym_visibility_token1] = ACTIONS(6850), + [aux_sym_visibility_token2] = ACTIONS(6850), + [aux_sym_elseif_fragment_token1] = ACTIONS(6850), + [aux_sym_else_fragment_token1] = ACTIONS(6850), + [aux_sym_select_statement_token1] = ACTIONS(6850), + [aux_sym__for_header_token1] = ACTIONS(6850), + [aux_sym_do_statement_token1] = ACTIONS(6850), + [aux_sym_do_condition_token1] = ACTIONS(6850), + [aux_sym_with_statement_token1] = ACTIONS(6850), + [aux_sym_exit_statement_token1] = ACTIONS(6850), + [sym_end_statement] = ACTIONS(6848), + [aux_sym_on_goto_statement_token1] = ACTIONS(6850), + [aux_sym_on_goto_statement_token2] = ACTIONS(6850), + [aux_sym_on_error_statement_token2] = ACTIONS(6850), + [sym__ambiguous_redim_statement] = ACTIONS(6848), + [aux_sym_erase_statement_token1] = ACTIONS(6850), + [aux_sym_open_statement_token1] = ACTIONS(6850), + [aux_sym_file_mode_token2] = ACTIONS(6850), + [aux_sym_file_access_token2] = ACTIONS(6850), + [aux_sym_file_lock_token2] = ACTIONS(6850), + [aux_sym_print_statement_token1] = ACTIONS(6850), + [anon_sym_PLUS] = ACTIONS(6848), + [anon_sym_DASH] = ACTIONS(6850), + [anon_sym_QMARK] = ACTIONS(6848), + [aux_sym_close_statement_token1] = ACTIONS(6850), + [aux_sym_put_statement_token1] = ACTIONS(6850), + [aux_sym_unlock_statement_token1] = ACTIONS(6850), + [aux_sym_seek_statement_token1] = ACTIONS(6850), + [sym_reset_statement] = ACTIONS(6850), + [aux_sym_raise_event_statement_token1] = ACTIONS(6850), + [sym_stop_statement] = ACTIONS(6850), + [sym_beep_statement] = ACTIONS(6850), + [aux_sym_unload_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token1] = ACTIONS(6850), + [aux_sym_def_type_statement_token2] = ACTIONS(6850), + [aux_sym_def_type_statement_token3] = ACTIONS(6850), + [aux_sym_def_type_statement_token4] = ACTIONS(6850), + [aux_sym_def_type_statement_token5] = ACTIONS(6850), + [aux_sym_def_type_statement_token6] = ACTIONS(6850), + [aux_sym_def_type_statement_token7] = ACTIONS(6850), + [aux_sym_def_type_statement_token8] = ACTIONS(6850), + [aux_sym_def_type_statement_token9] = ACTIONS(6850), + [aux_sym_def_type_statement_token10] = ACTIONS(6850), + [aux_sym_def_type_statement_token11] = ACTIONS(6850), + [aux_sym_def_type_statement_token12] = ACTIONS(6850), + [aux_sym_def_type_statement_token13] = ACTIONS(6850), + [aux_sym_def_type_statement_token14] = ACTIONS(6850), + [aux_sym_call_statement_token1] = ACTIONS(6850), + [sym__ambiguous_call_statement] = ACTIONS(6850), + [aux_sym_addressof_expression_token1] = ACTIONS(6850), + [aux_sym_type_of_expression_token1] = ACTIONS(6850), + [aux_sym_unary_expression_token1] = ACTIONS(6850), + [sym_string_literal] = ACTIONS(6848), + [sym_number_literal] = ACTIONS(6848), + [aux_sym_boolean_literal_token1] = ACTIONS(6850), + [aux_sym_boolean_literal_token2] = ACTIONS(6850), + [sym_nothing_literal] = ACTIONS(6850), + [sym_null_literal] = ACTIONS(6850), + [sym_empty_literal] = ACTIONS(6850), + [sym_date_literal] = ACTIONS(6848), + [anon_sym_POUND] = ACTIONS(6850), + }, + [STATE(4620)] = { + [sym_next_variable_list] = STATE(7164), + [sym__assignable_expression] = STATE(5844), + [sym__callable_expression] = STATE(5929), + [sym_call_expression] = STATE(6127), + [sym_member_expression] = STATE(6743), + [sym_qualified_member_expression] = STATE(6669), + [sym_implicit_member_expression] = STATE(6669), + [sym_identifier] = ACTIONS(9987), + [sym_newline] = ACTIONS(6867), + [anon_sym_COLON] = ACTIONS(6867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6869), + [aux_sym_frm_property_statement_token1] = ACTIONS(9989), + [anon_sym_DOT] = ACTIONS(9991), + [anon_sym_BANG] = ACTIONS(9993), + [aux_sym__attribute_identifier_token1] = ACTIONS(6869), + [aux_sym_option_statement_token3] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6869), + [aux_sym_preprocessor_const_token1] = ACTIONS(6869), + [sym_static_modifier] = ACTIONS(6869), + [sym__dim_keyword] = ACTIONS(6869), + [sym__redim_keyword] = ACTIONS(6869), + [aux_sym_get_accessor_token1] = ACTIONS(6869), + [aux_sym_set_accessor_token1] = ACTIONS(6869), + [aux_sym_const_declaration_token1] = ACTIONS(6869), + [anon_sym_LPAREN] = ACTIONS(6867), + [aux_sym_as_type_clause_token2] = ACTIONS(6869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9995), + [aux_sym_visibility_token1] = ACTIONS(6869), + [aux_sym_visibility_token2] = ACTIONS(6869), + [aux_sym_elseif_fragment_token1] = ACTIONS(6869), + [aux_sym_else_fragment_token1] = ACTIONS(6869), + [aux_sym_select_statement_token1] = ACTIONS(6869), + [aux_sym__for_header_token1] = ACTIONS(6869), + [aux_sym_do_statement_token1] = ACTIONS(6869), + [aux_sym_do_condition_token1] = ACTIONS(6869), + [aux_sym_with_statement_token1] = ACTIONS(6869), + [aux_sym_exit_statement_token1] = ACTIONS(6869), + [sym_end_statement] = ACTIONS(6867), + [aux_sym_on_goto_statement_token1] = ACTIONS(6869), + [aux_sym_on_goto_statement_token2] = ACTIONS(6869), + [aux_sym_on_error_statement_token2] = ACTIONS(6869), + [sym__ambiguous_redim_statement] = ACTIONS(6867), + [aux_sym_erase_statement_token1] = ACTIONS(6869), + [aux_sym_open_statement_token1] = ACTIONS(6869), + [aux_sym_file_mode_token2] = ACTIONS(6869), + [aux_sym_file_access_token2] = ACTIONS(6869), + [aux_sym_file_lock_token2] = ACTIONS(6869), + [aux_sym_print_statement_token1] = ACTIONS(6869), + [anon_sym_PLUS] = ACTIONS(6867), + [anon_sym_DASH] = ACTIONS(6869), + [anon_sym_QMARK] = ACTIONS(6867), + [aux_sym_close_statement_token1] = ACTIONS(6869), + [aux_sym_put_statement_token1] = ACTIONS(6869), + [aux_sym_unlock_statement_token1] = ACTIONS(6869), + [aux_sym_seek_statement_token1] = ACTIONS(6869), + [sym_reset_statement] = ACTIONS(6869), + [aux_sym_raise_event_statement_token1] = ACTIONS(6869), + [sym_stop_statement] = ACTIONS(6869), + [sym_beep_statement] = ACTIONS(6869), + [aux_sym_unload_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token1] = ACTIONS(6869), + [aux_sym_def_type_statement_token2] = ACTIONS(6869), + [aux_sym_def_type_statement_token3] = ACTIONS(6869), + [aux_sym_def_type_statement_token4] = ACTIONS(6869), + [aux_sym_def_type_statement_token5] = ACTIONS(6869), + [aux_sym_def_type_statement_token6] = ACTIONS(6869), + [aux_sym_def_type_statement_token7] = ACTIONS(6869), + [aux_sym_def_type_statement_token8] = ACTIONS(6869), + [aux_sym_def_type_statement_token9] = ACTIONS(6869), + [aux_sym_def_type_statement_token10] = ACTIONS(6869), + [aux_sym_def_type_statement_token11] = ACTIONS(6869), + [aux_sym_def_type_statement_token12] = ACTIONS(6869), + [aux_sym_def_type_statement_token13] = ACTIONS(6869), + [aux_sym_def_type_statement_token14] = ACTIONS(6869), + [aux_sym_call_statement_token1] = ACTIONS(6869), + [sym__ambiguous_call_statement] = ACTIONS(6869), + [aux_sym_addressof_expression_token1] = ACTIONS(6869), + [aux_sym_type_of_expression_token1] = ACTIONS(6869), + [aux_sym_unary_expression_token1] = ACTIONS(6869), + [sym_string_literal] = ACTIONS(6867), + [sym_number_literal] = ACTIONS(6867), + [aux_sym_boolean_literal_token1] = ACTIONS(6869), + [aux_sym_boolean_literal_token2] = ACTIONS(6869), + [sym_nothing_literal] = ACTIONS(6869), + [sym_null_literal] = ACTIONS(6869), + [sym_empty_literal] = ACTIONS(6869), + [sym_date_literal] = ACTIONS(6867), + [anon_sym_POUND] = ACTIONS(6869), + }, + [STATE(4621)] = { + [sym_next_variable_list] = STATE(7264), + [sym__assignable_expression] = STATE(5844), + [sym__callable_expression] = STATE(5929), + [sym_call_expression] = STATE(6127), + [sym_member_expression] = STATE(6743), + [sym_qualified_member_expression] = STATE(6669), + [sym_implicit_member_expression] = STATE(6669), + [sym_identifier] = ACTIONS(9987), + [sym_newline] = ACTIONS(6822), + [anon_sym_COLON] = ACTIONS(6822), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6824), + [aux_sym_frm_property_statement_token1] = ACTIONS(9989), + [anon_sym_DOT] = ACTIONS(9991), + [anon_sym_BANG] = ACTIONS(9993), + [aux_sym__attribute_identifier_token1] = ACTIONS(6824), + [aux_sym_option_statement_token3] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6824), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6824), + [aux_sym_preprocessor_const_token1] = ACTIONS(6824), + [sym_static_modifier] = ACTIONS(6824), + [sym__dim_keyword] = ACTIONS(6824), + [sym__redim_keyword] = ACTIONS(6824), + [aux_sym_get_accessor_token1] = ACTIONS(6824), + [aux_sym_set_accessor_token1] = ACTIONS(6824), + [aux_sym_const_declaration_token1] = ACTIONS(6824), + [anon_sym_LPAREN] = ACTIONS(6822), + [aux_sym_as_type_clause_token2] = ACTIONS(6824), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9995), + [aux_sym_visibility_token1] = ACTIONS(6824), + [aux_sym_visibility_token2] = ACTIONS(6824), + [aux_sym_elseif_fragment_token1] = ACTIONS(6824), + [aux_sym_else_fragment_token1] = ACTIONS(6824), + [aux_sym_select_statement_token1] = ACTIONS(6824), + [aux_sym__for_header_token1] = ACTIONS(6824), + [aux_sym_do_statement_token1] = ACTIONS(6824), + [aux_sym_do_condition_token1] = ACTIONS(6824), + [aux_sym_with_statement_token1] = ACTIONS(6824), + [aux_sym_exit_statement_token1] = ACTIONS(6824), + [sym_end_statement] = ACTIONS(6822), + [aux_sym_on_goto_statement_token1] = ACTIONS(6824), + [aux_sym_on_goto_statement_token2] = ACTIONS(6824), + [aux_sym_on_error_statement_token2] = ACTIONS(6824), + [sym__ambiguous_redim_statement] = ACTIONS(6822), + [aux_sym_erase_statement_token1] = ACTIONS(6824), + [aux_sym_open_statement_token1] = ACTIONS(6824), + [aux_sym_file_mode_token2] = ACTIONS(6824), + [aux_sym_file_access_token2] = ACTIONS(6824), + [aux_sym_file_lock_token2] = ACTIONS(6824), + [aux_sym_print_statement_token1] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6822), + [aux_sym_close_statement_token1] = ACTIONS(6824), + [aux_sym_put_statement_token1] = ACTIONS(6824), + [aux_sym_unlock_statement_token1] = ACTIONS(6824), + [aux_sym_seek_statement_token1] = ACTIONS(6824), + [sym_reset_statement] = ACTIONS(6824), + [aux_sym_raise_event_statement_token1] = ACTIONS(6824), + [sym_stop_statement] = ACTIONS(6824), + [sym_beep_statement] = ACTIONS(6824), + [aux_sym_unload_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token1] = ACTIONS(6824), + [aux_sym_def_type_statement_token2] = ACTIONS(6824), + [aux_sym_def_type_statement_token3] = ACTIONS(6824), + [aux_sym_def_type_statement_token4] = ACTIONS(6824), + [aux_sym_def_type_statement_token5] = ACTIONS(6824), + [aux_sym_def_type_statement_token6] = ACTIONS(6824), + [aux_sym_def_type_statement_token7] = ACTIONS(6824), + [aux_sym_def_type_statement_token8] = ACTIONS(6824), + [aux_sym_def_type_statement_token9] = ACTIONS(6824), + [aux_sym_def_type_statement_token10] = ACTIONS(6824), + [aux_sym_def_type_statement_token11] = ACTIONS(6824), + [aux_sym_def_type_statement_token12] = ACTIONS(6824), + [aux_sym_def_type_statement_token13] = ACTIONS(6824), + [aux_sym_def_type_statement_token14] = ACTIONS(6824), + [aux_sym_call_statement_token1] = ACTIONS(6824), + [sym__ambiguous_call_statement] = ACTIONS(6824), + [aux_sym_addressof_expression_token1] = ACTIONS(6824), + [aux_sym_type_of_expression_token1] = ACTIONS(6824), + [aux_sym_unary_expression_token1] = ACTIONS(6824), + [sym_string_literal] = ACTIONS(6822), + [sym_number_literal] = ACTIONS(6822), + [aux_sym_boolean_literal_token1] = ACTIONS(6824), + [aux_sym_boolean_literal_token2] = ACTIONS(6824), + [sym_nothing_literal] = ACTIONS(6824), + [sym_null_literal] = ACTIONS(6824), + [sym_empty_literal] = ACTIONS(6824), + [sym_date_literal] = ACTIONS(6822), + [anon_sym_POUND] = ACTIONS(6824), + }, + [STATE(4622)] = { + [sym_fixed_string_length] = STATE(5010), + [sym_array_bounds] = STATE(5398), + [sym_identifier] = ACTIONS(7134), + [sym_newline] = ACTIONS(7136), + [anon_sym_COLON] = ACTIONS(7136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7134), + [aux_sym_frm_property_statement_token1] = ACTIONS(7134), + [anon_sym_EQ] = ACTIONS(7136), + [anon_sym_DOT] = ACTIONS(7134), + [anon_sym_BANG] = ACTIONS(7136), + [aux_sym__attribute_identifier_token1] = ACTIONS(7134), + [aux_sym_option_statement_token3] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7134), + [aux_sym_preprocessor_const_token1] = ACTIONS(7134), + [sym_static_modifier] = ACTIONS(7134), + [sym__dim_keyword] = ACTIONS(7134), + [sym__redim_keyword] = ACTIONS(7134), + [aux_sym_get_accessor_token1] = ACTIONS(7134), + [aux_sym_set_accessor_token1] = ACTIONS(7134), + [anon_sym_COMMA] = ACTIONS(7136), + [aux_sym_const_declaration_token1] = ACTIONS(7134), + [anon_sym_LPAREN] = ACTIONS(10038), + [aux_sym_as_type_clause_token2] = ACTIONS(7134), + [anon_sym_STAR] = ACTIONS(10040), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7134), + [aux_sym_visibility_token1] = ACTIONS(7134), + [aux_sym_visibility_token2] = ACTIONS(7134), + [aux_sym_elseif_fragment_token1] = ACTIONS(7134), + [aux_sym_else_fragment_token1] = ACTIONS(7134), + [aux_sym_select_statement_token1] = ACTIONS(7134), + [aux_sym__for_header_token1] = ACTIONS(7134), + [aux_sym_do_statement_token1] = ACTIONS(7134), + [aux_sym_do_condition_token1] = ACTIONS(7134), + [aux_sym_with_statement_token1] = ACTIONS(7134), + [aux_sym_exit_statement_token1] = ACTIONS(7134), + [sym_end_statement] = ACTIONS(7136), + [aux_sym_on_goto_statement_token1] = ACTIONS(7134), + [aux_sym_on_goto_statement_token2] = ACTIONS(7134), + [aux_sym_on_error_statement_token2] = ACTIONS(7134), + [sym__ambiguous_redim_statement] = ACTIONS(7136), + [aux_sym_erase_statement_token1] = ACTIONS(7134), + [aux_sym_open_statement_token1] = ACTIONS(7134), + [aux_sym_file_mode_token2] = ACTIONS(7134), + [aux_sym_file_access_token2] = ACTIONS(7134), + [aux_sym_file_lock_token2] = ACTIONS(7134), + [aux_sym_print_statement_token1] = ACTIONS(7134), + [anon_sym_PLUS] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7134), + [anon_sym_QMARK] = ACTIONS(7136), + [aux_sym_close_statement_token1] = ACTIONS(7134), + [aux_sym_put_statement_token1] = ACTIONS(7134), + [aux_sym_unlock_statement_token1] = ACTIONS(7134), + [aux_sym_seek_statement_token1] = ACTIONS(7134), + [sym_reset_statement] = ACTIONS(7134), + [aux_sym_raise_event_statement_token1] = ACTIONS(7134), + [sym_stop_statement] = ACTIONS(7134), + [sym_beep_statement] = ACTIONS(7134), + [aux_sym_unload_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token2] = ACTIONS(7134), + [aux_sym_def_type_statement_token3] = ACTIONS(7134), + [aux_sym_def_type_statement_token4] = ACTIONS(7134), + [aux_sym_def_type_statement_token5] = ACTIONS(7134), + [aux_sym_def_type_statement_token6] = ACTIONS(7134), + [aux_sym_def_type_statement_token7] = ACTIONS(7134), + [aux_sym_def_type_statement_token8] = ACTIONS(7134), + [aux_sym_def_type_statement_token9] = ACTIONS(7134), + [aux_sym_def_type_statement_token10] = ACTIONS(7134), + [aux_sym_def_type_statement_token11] = ACTIONS(7134), + [aux_sym_def_type_statement_token12] = ACTIONS(7134), + [aux_sym_def_type_statement_token13] = ACTIONS(7134), + [aux_sym_def_type_statement_token14] = ACTIONS(7134), + [aux_sym_call_statement_token1] = ACTIONS(7134), + [sym__ambiguous_call_statement] = ACTIONS(7134), + [aux_sym_addressof_expression_token1] = ACTIONS(7134), + [aux_sym_type_of_expression_token1] = ACTIONS(7134), + [aux_sym_unary_expression_token1] = ACTIONS(7134), + [sym_string_literal] = ACTIONS(7136), + [sym_number_literal] = ACTIONS(7136), + [aux_sym_boolean_literal_token1] = ACTIONS(7134), + [aux_sym_boolean_literal_token2] = ACTIONS(7134), + [sym_nothing_literal] = ACTIONS(7134), + [sym_null_literal] = ACTIONS(7134), + [sym_empty_literal] = ACTIONS(7134), + [sym_date_literal] = ACTIONS(7136), + [anon_sym_POUND] = ACTIONS(7134), + }, + [STATE(4623)] = { + [sym_identifier] = ACTIONS(7234), + [sym_newline] = ACTIONS(7236), + [anon_sym_COLON] = ACTIONS(7236), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7234), + [aux_sym_frm_property_statement_token1] = ACTIONS(7234), + [anon_sym_DOT] = ACTIONS(7234), + [anon_sym_BANG] = ACTIONS(7236), + [aux_sym__attribute_identifier_token1] = ACTIONS(7234), + [aux_sym_option_statement_token3] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7234), + [aux_sym_preprocessor_const_token1] = ACTIONS(7234), + [sym_static_modifier] = ACTIONS(7234), + [sym__dim_keyword] = ACTIONS(7234), + [sym__redim_keyword] = ACTIONS(7234), + [aux_sym_get_accessor_token1] = ACTIONS(7234), + [aux_sym_set_accessor_token1] = ACTIONS(7234), + [aux_sym_const_declaration_token1] = ACTIONS(7234), + [anon_sym_LPAREN] = ACTIONS(7236), + [aux_sym_as_type_clause_token2] = ACTIONS(7234), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7234), + [aux_sym_visibility_token1] = ACTIONS(7234), + [aux_sym_visibility_token2] = ACTIONS(7234), + [aux_sym_elseif_fragment_token1] = ACTIONS(7234), + [aux_sym_else_fragment_token1] = ACTIONS(7234), + [aux_sym_select_statement_token1] = ACTIONS(7234), + [aux_sym__for_header_token1] = ACTIONS(7234), + [aux_sym_do_statement_token1] = ACTIONS(7234), + [aux_sym_do_condition_token1] = ACTIONS(7234), + [aux_sym_with_statement_token1] = ACTIONS(7234), + [aux_sym_exit_statement_token1] = ACTIONS(7234), + [sym_end_statement] = ACTIONS(7236), + [aux_sym_on_goto_statement_token1] = ACTIONS(7234), + [aux_sym_on_goto_statement_token2] = ACTIONS(7234), + [aux_sym_on_error_statement_token2] = ACTIONS(7234), + [sym__ambiguous_redim_statement] = ACTIONS(7236), + [aux_sym_erase_statement_token1] = ACTIONS(7234), + [aux_sym_open_statement_token1] = ACTIONS(7234), + [aux_sym_file_mode_token2] = ACTIONS(7234), + [aux_sym_file_access_token2] = ACTIONS(7234), + [aux_sym_file_lock_token2] = ACTIONS(7234), + [aux_sym_print_statement_token1] = ACTIONS(7234), + [anon_sym_PLUS] = ACTIONS(7236), + [anon_sym_DASH] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7234), + [anon_sym_QMARK] = ACTIONS(7236), + [aux_sym_close_statement_token1] = ACTIONS(7234), + [aux_sym_put_statement_token1] = ACTIONS(7234), + [aux_sym_unlock_statement_token1] = ACTIONS(7234), + [aux_sym_seek_statement_token1] = ACTIONS(7234), + [sym_reset_statement] = ACTIONS(7234), + [aux_sym_raise_event_statement_token1] = ACTIONS(7234), + [sym_stop_statement] = ACTIONS(7234), + [sym_beep_statement] = ACTIONS(7234), + [aux_sym_unload_statement_token1] = ACTIONS(7234), + [aux_sym_def_type_statement_token1] = ACTIONS(7234), + [aux_sym_def_type_statement_token2] = ACTIONS(7234), + [aux_sym_def_type_statement_token3] = ACTIONS(7234), + [aux_sym_def_type_statement_token4] = ACTIONS(7234), + [aux_sym_def_type_statement_token5] = ACTIONS(7234), + [aux_sym_def_type_statement_token6] = ACTIONS(7234), + [aux_sym_def_type_statement_token7] = ACTIONS(7234), + [aux_sym_def_type_statement_token8] = ACTIONS(7234), + [aux_sym_def_type_statement_token9] = ACTIONS(7234), + [aux_sym_def_type_statement_token10] = ACTIONS(7234), + [aux_sym_def_type_statement_token11] = ACTIONS(7234), + [aux_sym_def_type_statement_token12] = ACTIONS(7234), + [aux_sym_def_type_statement_token13] = ACTIONS(7234), + [aux_sym_def_type_statement_token14] = ACTIONS(7234), + [aux_sym_call_statement_token1] = ACTIONS(7234), + [sym__ambiguous_call_statement] = ACTIONS(7234), + [aux_sym_addressof_expression_token1] = ACTIONS(7234), + [aux_sym_type_of_expression_token1] = ACTIONS(7234), + [aux_sym_unary_expression_token1] = ACTIONS(7234), + [sym_string_literal] = ACTIONS(7236), + [sym_number_literal] = ACTIONS(7236), + [aux_sym_boolean_literal_token1] = ACTIONS(7234), + [aux_sym_boolean_literal_token2] = ACTIONS(7234), + [sym_nothing_literal] = ACTIONS(7234), + [sym_null_literal] = ACTIONS(7234), + [sym_empty_literal] = ACTIONS(7234), + [sym_date_literal] = ACTIONS(7236), + [anon_sym_POUND] = ACTIONS(7234), + }, + [STATE(4624)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10042), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10044), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(10046), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4625)] = { + [sym_identifier] = ACTIONS(7281), + [sym_newline] = ACTIONS(7283), + [anon_sym_COLON] = ACTIONS(7283), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7281), + [aux_sym_frm_property_statement_token1] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7281), + [anon_sym_BANG] = ACTIONS(7283), + [aux_sym__attribute_identifier_token1] = ACTIONS(7281), + [aux_sym_option_statement_token3] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7281), + [aux_sym_preprocessor_const_token1] = ACTIONS(7281), + [sym_static_modifier] = ACTIONS(7281), + [sym__dim_keyword] = ACTIONS(7281), + [sym__redim_keyword] = ACTIONS(7281), + [aux_sym_get_accessor_token1] = ACTIONS(7281), + [aux_sym_set_accessor_token1] = ACTIONS(7281), + [aux_sym_const_declaration_token1] = ACTIONS(7281), + [anon_sym_LPAREN] = ACTIONS(7283), + [aux_sym_as_type_clause_token2] = ACTIONS(7281), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7281), + [aux_sym_visibility_token1] = ACTIONS(7281), + [aux_sym_visibility_token2] = ACTIONS(7281), + [aux_sym_elseif_fragment_token1] = ACTIONS(7281), + [aux_sym_else_fragment_token1] = ACTIONS(7281), + [aux_sym_select_statement_token1] = ACTIONS(7281), + [aux_sym__for_header_token1] = ACTIONS(7281), + [aux_sym_do_statement_token1] = ACTIONS(7281), + [aux_sym_do_condition_token1] = ACTIONS(7281), + [aux_sym_with_statement_token1] = ACTIONS(7281), + [aux_sym_exit_statement_token1] = ACTIONS(7281), + [sym_end_statement] = ACTIONS(7283), + [aux_sym_on_goto_statement_token1] = ACTIONS(7281), + [aux_sym_on_goto_statement_token2] = ACTIONS(7281), + [aux_sym_on_error_statement_token2] = ACTIONS(7281), + [sym__ambiguous_redim_statement] = ACTIONS(7283), + [aux_sym_erase_statement_token1] = ACTIONS(7281), + [aux_sym_open_statement_token1] = ACTIONS(7281), + [aux_sym_file_mode_token2] = ACTIONS(7281), + [aux_sym_file_access_token2] = ACTIONS(7281), + [aux_sym_file_lock_token2] = ACTIONS(7281), + [aux_sym_print_statement_token1] = ACTIONS(7281), + [anon_sym_PLUS] = ACTIONS(7283), + [anon_sym_DASH] = ACTIONS(7281), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10042), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10044), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(10046), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(10048), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(10050), + [anon_sym_QMARK] = ACTIONS(7283), + [aux_sym_close_statement_token1] = ACTIONS(7281), + [aux_sym_put_statement_token1] = ACTIONS(7281), + [aux_sym_unlock_statement_token1] = ACTIONS(7281), + [aux_sym_seek_statement_token1] = ACTIONS(7281), + [sym_reset_statement] = ACTIONS(7281), + [aux_sym_raise_event_statement_token1] = ACTIONS(7281), + [sym_stop_statement] = ACTIONS(7281), + [sym_beep_statement] = ACTIONS(7281), + [aux_sym_unload_statement_token1] = ACTIONS(7281), + [aux_sym_def_type_statement_token1] = ACTIONS(7281), + [aux_sym_def_type_statement_token2] = ACTIONS(7281), + [aux_sym_def_type_statement_token3] = ACTIONS(7281), + [aux_sym_def_type_statement_token4] = ACTIONS(7281), + [aux_sym_def_type_statement_token5] = ACTIONS(7281), + [aux_sym_def_type_statement_token6] = ACTIONS(7281), + [aux_sym_def_type_statement_token7] = ACTIONS(7281), + [aux_sym_def_type_statement_token8] = ACTIONS(7281), + [aux_sym_def_type_statement_token9] = ACTIONS(7281), + [aux_sym_def_type_statement_token10] = ACTIONS(7281), + [aux_sym_def_type_statement_token11] = ACTIONS(7281), + [aux_sym_def_type_statement_token12] = ACTIONS(7281), + [aux_sym_def_type_statement_token13] = ACTIONS(7281), + [aux_sym_def_type_statement_token14] = ACTIONS(7281), + [aux_sym_call_statement_token1] = ACTIONS(7281), + [sym__ambiguous_call_statement] = ACTIONS(7281), + [aux_sym_addressof_expression_token1] = ACTIONS(7281), + [aux_sym_type_of_expression_token1] = ACTIONS(7281), + [aux_sym_unary_expression_token1] = ACTIONS(7281), + [sym_string_literal] = ACTIONS(7283), + [sym_number_literal] = ACTIONS(7283), + [aux_sym_boolean_literal_token1] = ACTIONS(7281), + [aux_sym_boolean_literal_token2] = ACTIONS(7281), + [sym_nothing_literal] = ACTIONS(7281), + [sym_null_literal] = ACTIONS(7281), + [sym_empty_literal] = ACTIONS(7281), + [sym_date_literal] = ACTIONS(7283), + [anon_sym_POUND] = ACTIONS(7281), + }, + [STATE(4626)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_statement_token2] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10052), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4627)] = { + [sym_fixed_string_length] = STATE(4967), + [sym_array_bounds] = STATE(5321), + [sym_identifier] = ACTIONS(7134), + [sym_newline] = ACTIONS(7136), + [anon_sym_COLON] = ACTIONS(7136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7134), + [aux_sym_frm_property_statement_token1] = ACTIONS(7134), + [anon_sym_EQ] = ACTIONS(7136), + [anon_sym_DOT] = ACTIONS(7134), + [anon_sym_BANG] = ACTIONS(7136), + [aux_sym__attribute_identifier_token1] = ACTIONS(7134), + [aux_sym_option_statement_token3] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7134), + [aux_sym_preprocessor_const_token1] = ACTIONS(7134), + [sym_static_modifier] = ACTIONS(7134), + [sym__dim_keyword] = ACTIONS(7134), + [sym__redim_keyword] = ACTIONS(7134), + [aux_sym_get_accessor_token1] = ACTIONS(7134), + [aux_sym_set_accessor_token1] = ACTIONS(7134), + [anon_sym_COMMA] = ACTIONS(7136), + [aux_sym_const_declaration_token1] = ACTIONS(7134), + [anon_sym_LPAREN] = ACTIONS(10054), + [aux_sym_as_type_clause_token2] = ACTIONS(7134), + [anon_sym_STAR] = ACTIONS(10056), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7134), + [aux_sym_visibility_token1] = ACTIONS(7134), + [aux_sym_visibility_token2] = ACTIONS(7134), + [aux_sym_elseif_fragment_token1] = ACTIONS(7134), + [aux_sym_else_fragment_token1] = ACTIONS(7134), + [aux_sym_select_statement_token1] = ACTIONS(7134), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7134), + [aux_sym__for_header_token1] = ACTIONS(7134), + [aux_sym_do_statement_token1] = ACTIONS(7134), + [aux_sym_do_condition_token1] = ACTIONS(7134), + [aux_sym_with_statement_token1] = ACTIONS(7134), + [aux_sym_exit_statement_token1] = ACTIONS(7134), + [sym_end_statement] = ACTIONS(7136), + [aux_sym_on_goto_statement_token1] = ACTIONS(7134), + [aux_sym_on_goto_statement_token2] = ACTIONS(7134), + [aux_sym_on_error_statement_token2] = ACTIONS(7134), + [sym__ambiguous_redim_statement] = ACTIONS(7136), + [aux_sym_erase_statement_token1] = ACTIONS(7134), + [aux_sym_open_statement_token1] = ACTIONS(7134), + [aux_sym_file_mode_token2] = ACTIONS(7134), + [aux_sym_file_access_token2] = ACTIONS(7134), + [aux_sym_file_lock_token2] = ACTIONS(7134), + [aux_sym_print_statement_token1] = ACTIONS(7134), + [anon_sym_PLUS] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7134), + [anon_sym_QMARK] = ACTIONS(7136), + [aux_sym_close_statement_token1] = ACTIONS(7134), + [aux_sym_put_statement_token1] = ACTIONS(7134), + [aux_sym_unlock_statement_token1] = ACTIONS(7134), + [aux_sym_seek_statement_token1] = ACTIONS(7134), + [sym_reset_statement] = ACTIONS(7134), + [aux_sym_raise_event_statement_token1] = ACTIONS(7134), + [sym_stop_statement] = ACTIONS(7134), + [sym_beep_statement] = ACTIONS(7134), + [aux_sym_unload_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token2] = ACTIONS(7134), + [aux_sym_def_type_statement_token3] = ACTIONS(7134), + [aux_sym_def_type_statement_token4] = ACTIONS(7134), + [aux_sym_def_type_statement_token5] = ACTIONS(7134), + [aux_sym_def_type_statement_token6] = ACTIONS(7134), + [aux_sym_def_type_statement_token7] = ACTIONS(7134), + [aux_sym_def_type_statement_token8] = ACTIONS(7134), + [aux_sym_def_type_statement_token9] = ACTIONS(7134), + [aux_sym_def_type_statement_token10] = ACTIONS(7134), + [aux_sym_def_type_statement_token11] = ACTIONS(7134), + [aux_sym_def_type_statement_token12] = ACTIONS(7134), + [aux_sym_def_type_statement_token13] = ACTIONS(7134), + [aux_sym_def_type_statement_token14] = ACTIONS(7134), + [aux_sym_call_statement_token1] = ACTIONS(7134), + [sym__ambiguous_call_statement] = ACTIONS(7134), + [aux_sym_addressof_expression_token1] = ACTIONS(7134), + [aux_sym_type_of_expression_token1] = ACTIONS(7134), + [aux_sym_unary_expression_token1] = ACTIONS(7134), + [sym_string_literal] = ACTIONS(7136), + [sym_number_literal] = ACTIONS(7136), + [aux_sym_boolean_literal_token1] = ACTIONS(7134), + [aux_sym_boolean_literal_token2] = ACTIONS(7134), + [sym_nothing_literal] = ACTIONS(7134), + [sym_null_literal] = ACTIONS(7134), + [sym_empty_literal] = ACTIONS(7134), + [sym_date_literal] = ACTIONS(7136), + [anon_sym_POUND] = ACTIONS(7134), + }, + [STATE(4628)] = { + [sym_identifier] = ACTIONS(7281), + [sym_newline] = ACTIONS(7283), + [anon_sym_COLON] = ACTIONS(7283), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7281), + [aux_sym_frm_property_statement_token1] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7281), + [anon_sym_BANG] = ACTIONS(7283), + [aux_sym__attribute_identifier_token1] = ACTIONS(7281), + [aux_sym_option_statement_token3] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7281), + [aux_sym_preprocessor_const_token1] = ACTIONS(7281), + [sym_static_modifier] = ACTIONS(7281), + [sym__dim_keyword] = ACTIONS(7281), + [sym__redim_keyword] = ACTIONS(7281), + [aux_sym_get_accessor_token1] = ACTIONS(7281), + [aux_sym_set_accessor_token1] = ACTIONS(7281), + [aux_sym_const_declaration_token1] = ACTIONS(7281), + [anon_sym_LPAREN] = ACTIONS(7283), + [aux_sym_as_type_clause_token2] = ACTIONS(7281), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7281), + [aux_sym_visibility_token1] = ACTIONS(7281), + [aux_sym_visibility_token2] = ACTIONS(7281), + [aux_sym_elseif_fragment_token1] = ACTIONS(7281), + [aux_sym_else_fragment_token1] = ACTIONS(7281), + [aux_sym_select_statement_token1] = ACTIONS(7281), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7281), + [aux_sym__for_header_token1] = ACTIONS(7281), + [aux_sym_do_statement_token1] = ACTIONS(7281), + [aux_sym_do_condition_token1] = ACTIONS(7281), + [aux_sym_with_statement_token1] = ACTIONS(7281), + [aux_sym_exit_statement_token1] = ACTIONS(7281), + [sym_end_statement] = ACTIONS(7283), + [aux_sym_on_goto_statement_token1] = ACTIONS(7281), + [aux_sym_on_goto_statement_token2] = ACTIONS(7281), + [aux_sym_on_error_statement_token2] = ACTIONS(7281), + [sym__ambiguous_redim_statement] = ACTIONS(7283), + [aux_sym_erase_statement_token1] = ACTIONS(7281), + [aux_sym_open_statement_token1] = ACTIONS(7281), + [aux_sym_file_mode_token2] = ACTIONS(7281), + [aux_sym_file_access_token2] = ACTIONS(7281), + [aux_sym_file_lock_token2] = ACTIONS(7281), + [aux_sym_print_statement_token1] = ACTIONS(7281), + [anon_sym_PLUS] = ACTIONS(7283), + [anon_sym_DASH] = ACTIONS(7281), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10058), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10060), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(10062), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(10064), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(10066), + [anon_sym_QMARK] = ACTIONS(7283), + [aux_sym_close_statement_token1] = ACTIONS(7281), + [aux_sym_put_statement_token1] = ACTIONS(7281), + [aux_sym_unlock_statement_token1] = ACTIONS(7281), + [aux_sym_seek_statement_token1] = ACTIONS(7281), + [sym_reset_statement] = ACTIONS(7281), + [aux_sym_raise_event_statement_token1] = ACTIONS(7281), + [sym_stop_statement] = ACTIONS(7281), + [sym_beep_statement] = ACTIONS(7281), + [aux_sym_unload_statement_token1] = ACTIONS(7281), + [aux_sym_def_type_statement_token1] = ACTIONS(7281), + [aux_sym_def_type_statement_token2] = ACTIONS(7281), + [aux_sym_def_type_statement_token3] = ACTIONS(7281), + [aux_sym_def_type_statement_token4] = ACTIONS(7281), + [aux_sym_def_type_statement_token5] = ACTIONS(7281), + [aux_sym_def_type_statement_token6] = ACTIONS(7281), + [aux_sym_def_type_statement_token7] = ACTIONS(7281), + [aux_sym_def_type_statement_token8] = ACTIONS(7281), + [aux_sym_def_type_statement_token9] = ACTIONS(7281), + [aux_sym_def_type_statement_token10] = ACTIONS(7281), + [aux_sym_def_type_statement_token11] = ACTIONS(7281), + [aux_sym_def_type_statement_token12] = ACTIONS(7281), + [aux_sym_def_type_statement_token13] = ACTIONS(7281), + [aux_sym_def_type_statement_token14] = ACTIONS(7281), + [aux_sym_call_statement_token1] = ACTIONS(7281), + [sym__ambiguous_call_statement] = ACTIONS(7281), + [aux_sym_addressof_expression_token1] = ACTIONS(7281), + [aux_sym_type_of_expression_token1] = ACTIONS(7281), + [aux_sym_unary_expression_token1] = ACTIONS(7281), + [sym_string_literal] = ACTIONS(7283), + [sym_number_literal] = ACTIONS(7283), + [aux_sym_boolean_literal_token1] = ACTIONS(7281), + [aux_sym_boolean_literal_token2] = ACTIONS(7281), + [sym_nothing_literal] = ACTIONS(7281), + [sym_null_literal] = ACTIONS(7281), + [sym_empty_literal] = ACTIONS(7281), + [sym_date_literal] = ACTIONS(7283), + [anon_sym_POUND] = ACTIONS(7281), + }, + [STATE(4629)] = { + [sym_identifier] = ACTIONS(8022), + [sym_newline] = ACTIONS(8024), + [anon_sym_COLON] = ACTIONS(8024), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8022), + [aux_sym_frm_property_statement_token1] = ACTIONS(8022), + [anon_sym_EQ] = ACTIONS(8024), + [anon_sym_DOT] = ACTIONS(8022), + [anon_sym_BANG] = ACTIONS(8024), + [aux_sym__attribute_identifier_token1] = ACTIONS(8022), + [aux_sym_option_statement_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8022), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8022), + [aux_sym_preprocessor_const_token1] = ACTIONS(8022), + [sym_static_modifier] = ACTIONS(8022), + [sym__dim_keyword] = ACTIONS(8022), + [sym__redim_keyword] = ACTIONS(8022), + [aux_sym_get_accessor_token1] = ACTIONS(8022), + [aux_sym_set_accessor_token1] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8024), + [aux_sym_const_declaration_token1] = ACTIONS(8022), + [anon_sym_LPAREN] = ACTIONS(8024), + [aux_sym_as_type_clause_token1] = ACTIONS(8022), + [aux_sym_as_type_clause_token2] = ACTIONS(8022), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8022), + [aux_sym_visibility_token1] = ACTIONS(8022), + [aux_sym_visibility_token2] = ACTIONS(8022), + [aux_sym_elseif_fragment_token1] = ACTIONS(8022), + [aux_sym_else_fragment_token1] = ACTIONS(8022), + [aux_sym_select_statement_token1] = ACTIONS(8022), + [aux_sym__for_header_token1] = ACTIONS(8022), + [aux_sym_do_statement_token1] = ACTIONS(8022), + [aux_sym_do_condition_token1] = ACTIONS(8022), + [aux_sym_with_statement_token1] = ACTIONS(8022), + [aux_sym_exit_statement_token1] = ACTIONS(8022), + [sym_end_statement] = ACTIONS(8024), + [aux_sym_on_goto_statement_token1] = ACTIONS(8022), + [aux_sym_on_goto_statement_token2] = ACTIONS(8022), + [aux_sym_on_error_statement_token2] = ACTIONS(8022), + [sym__ambiguous_redim_statement] = ACTIONS(8024), + [aux_sym_erase_statement_token1] = ACTIONS(8022), + [aux_sym_open_statement_token1] = ACTIONS(8022), + [aux_sym_file_mode_token2] = ACTIONS(8022), + [aux_sym_file_access_token2] = ACTIONS(8022), + [aux_sym_file_lock_token2] = ACTIONS(8022), + [aux_sym_print_statement_token1] = ACTIONS(8022), + [anon_sym_PLUS] = ACTIONS(8024), + [anon_sym_DASH] = ACTIONS(8022), + [anon_sym_QMARK] = ACTIONS(8024), + [aux_sym_close_statement_token1] = ACTIONS(8022), + [aux_sym_put_statement_token1] = ACTIONS(8022), + [aux_sym_unlock_statement_token1] = ACTIONS(8022), + [aux_sym_seek_statement_token1] = ACTIONS(8022), + [sym_reset_statement] = ACTIONS(8022), + [aux_sym_raise_event_statement_token1] = ACTIONS(8022), + [sym_stop_statement] = ACTIONS(8022), + [sym_beep_statement] = ACTIONS(8022), + [aux_sym_unload_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token2] = ACTIONS(8022), + [aux_sym_def_type_statement_token3] = ACTIONS(8022), + [aux_sym_def_type_statement_token4] = ACTIONS(8022), + [aux_sym_def_type_statement_token5] = ACTIONS(8022), + [aux_sym_def_type_statement_token6] = ACTIONS(8022), + [aux_sym_def_type_statement_token7] = ACTIONS(8022), + [aux_sym_def_type_statement_token8] = ACTIONS(8022), + [aux_sym_def_type_statement_token9] = ACTIONS(8022), + [aux_sym_def_type_statement_token10] = ACTIONS(8022), + [aux_sym_def_type_statement_token11] = ACTIONS(8022), + [aux_sym_def_type_statement_token12] = ACTIONS(8022), + [aux_sym_def_type_statement_token13] = ACTIONS(8022), + [aux_sym_def_type_statement_token14] = ACTIONS(8022), + [aux_sym_call_statement_token1] = ACTIONS(8022), + [sym__ambiguous_call_statement] = ACTIONS(8022), + [aux_sym_addressof_expression_token1] = ACTIONS(8022), + [aux_sym_type_of_expression_token1] = ACTIONS(8022), + [aux_sym_unary_expression_token1] = ACTIONS(8022), + [sym_string_literal] = ACTIONS(8024), + [sym_number_literal] = ACTIONS(8024), + [aux_sym_boolean_literal_token1] = ACTIONS(8022), + [aux_sym_boolean_literal_token2] = ACTIONS(8022), + [sym_nothing_literal] = ACTIONS(8022), + [sym_null_literal] = ACTIONS(8022), + [sym_empty_literal] = ACTIONS(8022), + [sym_date_literal] = ACTIONS(8024), + [anon_sym_POUND] = ACTIONS(8022), + }, + [STATE(4630)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10042), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10044), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(10046), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(10048), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4631)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(4632)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10058), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10060), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(10062), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4633)] = { + [sym_fixed_string_length] = STATE(4958), + [sym_array_bounds] = STATE(5589), + [sym_identifier] = ACTIONS(7230), + [sym_newline] = ACTIONS(7232), + [anon_sym_COLON] = ACTIONS(7232), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7230), + [aux_sym_frm_property_statement_token1] = ACTIONS(7230), + [anon_sym_EQ] = ACTIONS(7232), + [anon_sym_DOT] = ACTIONS(7230), + [anon_sym_BANG] = ACTIONS(7232), + [aux_sym__attribute_identifier_token1] = ACTIONS(7230), + [aux_sym_option_statement_token3] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7230), + [aux_sym_preprocessor_const_token1] = ACTIONS(7230), + [sym_static_modifier] = ACTIONS(7230), + [sym__dim_keyword] = ACTIONS(7230), + [sym__redim_keyword] = ACTIONS(7230), + [aux_sym_get_accessor_token1] = ACTIONS(7230), + [aux_sym_set_accessor_token1] = ACTIONS(7230), + [anon_sym_COMMA] = ACTIONS(7232), + [aux_sym_const_declaration_token1] = ACTIONS(7230), + [anon_sym_LPAREN] = ACTIONS(10068), + [aux_sym_as_type_clause_token2] = ACTIONS(7230), + [anon_sym_STAR] = ACTIONS(10070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7230), + [aux_sym_visibility_token1] = ACTIONS(7230), + [aux_sym_visibility_token2] = ACTIONS(7230), + [aux_sym_elseif_fragment_token1] = ACTIONS(7230), + [aux_sym_else_fragment_token1] = ACTIONS(7230), + [aux_sym_select_statement_token1] = ACTIONS(7230), + [aux_sym__for_header_token1] = ACTIONS(7230), + [aux_sym_do_statement_token1] = ACTIONS(7230), + [aux_sym_do_condition_token1] = ACTIONS(7230), + [aux_sym_while_statement_token1] = ACTIONS(7230), + [aux_sym_with_statement_token1] = ACTIONS(7230), + [aux_sym_exit_statement_token1] = ACTIONS(7230), + [sym_end_statement] = ACTIONS(7232), + [aux_sym_on_goto_statement_token1] = ACTIONS(7230), + [aux_sym_on_goto_statement_token2] = ACTIONS(7230), + [aux_sym_on_error_statement_token2] = ACTIONS(7230), + [sym__ambiguous_redim_statement] = ACTIONS(7232), + [aux_sym_erase_statement_token1] = ACTIONS(7230), + [aux_sym_open_statement_token1] = ACTIONS(7230), + [aux_sym_file_mode_token2] = ACTIONS(7230), + [aux_sym_file_access_token2] = ACTIONS(7230), + [aux_sym_file_lock_token2] = ACTIONS(7230), + [aux_sym_print_statement_token1] = ACTIONS(7230), + [anon_sym_PLUS] = ACTIONS(7232), + [anon_sym_DASH] = ACTIONS(7230), + [anon_sym_QMARK] = ACTIONS(7232), + [aux_sym_close_statement_token1] = ACTIONS(7230), + [aux_sym_put_statement_token1] = ACTIONS(7230), + [aux_sym_unlock_statement_token1] = ACTIONS(7230), + [aux_sym_seek_statement_token1] = ACTIONS(7230), + [sym_reset_statement] = ACTIONS(7230), + [aux_sym_raise_event_statement_token1] = ACTIONS(7230), + [sym_stop_statement] = ACTIONS(7230), + [sym_beep_statement] = ACTIONS(7230), + [aux_sym_unload_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token2] = ACTIONS(7230), + [aux_sym_def_type_statement_token3] = ACTIONS(7230), + [aux_sym_def_type_statement_token4] = ACTIONS(7230), + [aux_sym_def_type_statement_token5] = ACTIONS(7230), + [aux_sym_def_type_statement_token6] = ACTIONS(7230), + [aux_sym_def_type_statement_token7] = ACTIONS(7230), + [aux_sym_def_type_statement_token8] = ACTIONS(7230), + [aux_sym_def_type_statement_token9] = ACTIONS(7230), + [aux_sym_def_type_statement_token10] = ACTIONS(7230), + [aux_sym_def_type_statement_token11] = ACTIONS(7230), + [aux_sym_def_type_statement_token12] = ACTIONS(7230), + [aux_sym_def_type_statement_token13] = ACTIONS(7230), + [aux_sym_def_type_statement_token14] = ACTIONS(7230), + [aux_sym_call_statement_token1] = ACTIONS(7230), + [sym__ambiguous_call_statement] = ACTIONS(7230), + [aux_sym_addressof_expression_token1] = ACTIONS(7230), + [aux_sym_type_of_expression_token1] = ACTIONS(7230), + [aux_sym_unary_expression_token1] = ACTIONS(7230), + [sym_string_literal] = ACTIONS(7232), + [sym_number_literal] = ACTIONS(7232), + [aux_sym_boolean_literal_token1] = ACTIONS(7230), + [aux_sym_boolean_literal_token2] = ACTIONS(7230), + [sym_nothing_literal] = ACTIONS(7230), + [sym_null_literal] = ACTIONS(7230), + [sym_empty_literal] = ACTIONS(7230), + [sym_date_literal] = ACTIONS(7232), + [anon_sym_POUND] = ACTIONS(7230), + }, + [STATE(4634)] = { + [sym_array_bounds] = STATE(4756), + [sym_identifier] = ACTIONS(8070), + [sym_newline] = ACTIONS(8072), + [anon_sym_COLON] = ACTIONS(8072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8070), + [aux_sym_frm_property_statement_token1] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(8072), + [anon_sym_DOT] = ACTIONS(8070), + [anon_sym_BANG] = ACTIONS(8072), + [aux_sym__attribute_identifier_token1] = ACTIONS(8070), + [aux_sym_option_statement_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8070), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8070), + [aux_sym_preprocessor_const_token1] = ACTIONS(8070), + [sym_static_modifier] = ACTIONS(8070), + [sym__dim_keyword] = ACTIONS(8070), + [sym__redim_keyword] = ACTIONS(8070), + [aux_sym_get_accessor_token1] = ACTIONS(8070), + [aux_sym_set_accessor_token1] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [aux_sym_const_declaration_token1] = ACTIONS(8070), + [anon_sym_LPAREN] = ACTIONS(9943), + [aux_sym_as_type_clause_token2] = ACTIONS(8070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8070), + [aux_sym_visibility_token1] = ACTIONS(8070), + [aux_sym_visibility_token2] = ACTIONS(8070), + [aux_sym_elseif_fragment_token1] = ACTIONS(8070), + [aux_sym_else_fragment_token1] = ACTIONS(8070), + [aux_sym_select_statement_token1] = ACTIONS(8070), + [aux_sym__for_header_token1] = ACTIONS(8070), + [aux_sym_do_statement_token1] = ACTIONS(8070), + [aux_sym_do_condition_token1] = ACTIONS(8070), + [aux_sym_with_statement_token1] = ACTIONS(8070), + [aux_sym_exit_statement_token1] = ACTIONS(8070), + [sym_end_statement] = ACTIONS(8072), + [aux_sym_on_goto_statement_token1] = ACTIONS(8070), + [aux_sym_on_goto_statement_token2] = ACTIONS(8070), + [aux_sym_on_error_statement_token2] = ACTIONS(8070), + [sym__ambiguous_redim_statement] = ACTIONS(8072), + [aux_sym_erase_statement_token1] = ACTIONS(8070), + [aux_sym_open_statement_token1] = ACTIONS(8070), + [aux_sym_file_mode_token2] = ACTIONS(8070), + [aux_sym_file_access_token2] = ACTIONS(8070), + [aux_sym_file_lock_token2] = ACTIONS(8070), + [aux_sym_print_statement_token1] = ACTIONS(8070), + [anon_sym_PLUS] = ACTIONS(8072), + [anon_sym_DASH] = ACTIONS(8070), + [anon_sym_QMARK] = ACTIONS(8072), + [aux_sym_close_statement_token1] = ACTIONS(8070), + [aux_sym_put_statement_token1] = ACTIONS(8070), + [aux_sym_unlock_statement_token1] = ACTIONS(8070), + [aux_sym_seek_statement_token1] = ACTIONS(8070), + [sym_reset_statement] = ACTIONS(8070), + [aux_sym_raise_event_statement_token1] = ACTIONS(8070), + [sym_stop_statement] = ACTIONS(8070), + [sym_beep_statement] = ACTIONS(8070), + [aux_sym_unload_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token2] = ACTIONS(8070), + [aux_sym_def_type_statement_token3] = ACTIONS(8070), + [aux_sym_def_type_statement_token4] = ACTIONS(8070), + [aux_sym_def_type_statement_token5] = ACTIONS(8070), + [aux_sym_def_type_statement_token6] = ACTIONS(8070), + [aux_sym_def_type_statement_token7] = ACTIONS(8070), + [aux_sym_def_type_statement_token8] = ACTIONS(8070), + [aux_sym_def_type_statement_token9] = ACTIONS(8070), + [aux_sym_def_type_statement_token10] = ACTIONS(8070), + [aux_sym_def_type_statement_token11] = ACTIONS(8070), + [aux_sym_def_type_statement_token12] = ACTIONS(8070), + [aux_sym_def_type_statement_token13] = ACTIONS(8070), + [aux_sym_def_type_statement_token14] = ACTIONS(8070), + [aux_sym_call_statement_token1] = ACTIONS(8070), + [sym__ambiguous_call_statement] = ACTIONS(8070), + [aux_sym_addressof_expression_token1] = ACTIONS(8070), + [aux_sym_type_of_expression_token1] = ACTIONS(8070), + [aux_sym_unary_expression_token1] = ACTIONS(8070), + [sym_string_literal] = ACTIONS(8072), + [sym_number_literal] = ACTIONS(8072), + [aux_sym_boolean_literal_token1] = ACTIONS(8070), + [aux_sym_boolean_literal_token2] = ACTIONS(8070), + [sym_nothing_literal] = ACTIONS(8070), + [sym_null_literal] = ACTIONS(8070), + [sym_empty_literal] = ACTIONS(8070), + [sym_date_literal] = ACTIONS(8072), + [anon_sym_POUND] = ACTIONS(8070), + }, + [STATE(4635)] = { + [sym_initializer] = STATE(5863), + [sym_as_type_clause] = STATE(4923), + [sym_identifier] = ACTIONS(7287), + [sym_newline] = ACTIONS(7289), + [anon_sym_COLON] = ACTIONS(7289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7287), + [aux_sym_frm_property_statement_token1] = ACTIONS(7287), + [anon_sym_EQ] = ACTIONS(9997), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_BANG] = ACTIONS(7289), + [aux_sym__attribute_identifier_token1] = ACTIONS(7287), + [aux_sym_option_statement_token3] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7287), + [aux_sym_preprocessor_const_token1] = ACTIONS(7287), + [sym_static_modifier] = ACTIONS(7287), + [sym__dim_keyword] = ACTIONS(7287), + [sym__redim_keyword] = ACTIONS(7287), + [aux_sym_get_accessor_token1] = ACTIONS(7287), + [aux_sym_set_accessor_token1] = ACTIONS(7287), + [anon_sym_COMMA] = ACTIONS(7289), + [aux_sym_const_declaration_token1] = ACTIONS(7287), + [anon_sym_LPAREN] = ACTIONS(7289), + [aux_sym_as_type_clause_token1] = ACTIONS(10001), + [aux_sym_as_type_clause_token2] = ACTIONS(7287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7287), + [aux_sym_visibility_token1] = ACTIONS(7287), + [aux_sym_visibility_token2] = ACTIONS(7287), + [aux_sym_elseif_fragment_token1] = ACTIONS(7287), + [aux_sym_else_fragment_token1] = ACTIONS(7287), + [aux_sym_select_statement_token1] = ACTIONS(7287), + [aux_sym__for_header_token1] = ACTIONS(7287), + [aux_sym_do_statement_token1] = ACTIONS(7287), + [aux_sym_do_condition_token1] = ACTIONS(7287), + [aux_sym_while_statement_token1] = ACTIONS(7287), + [aux_sym_with_statement_token1] = ACTIONS(7287), + [aux_sym_exit_statement_token1] = ACTIONS(7287), + [sym_end_statement] = ACTIONS(7289), + [aux_sym_on_goto_statement_token1] = ACTIONS(7287), + [aux_sym_on_goto_statement_token2] = ACTIONS(7287), + [aux_sym_on_error_statement_token2] = ACTIONS(7287), + [sym__ambiguous_redim_statement] = ACTIONS(7289), + [aux_sym_erase_statement_token1] = ACTIONS(7287), + [aux_sym_open_statement_token1] = ACTIONS(7287), + [aux_sym_file_mode_token2] = ACTIONS(7287), + [aux_sym_file_access_token2] = ACTIONS(7287), + [aux_sym_file_lock_token2] = ACTIONS(7287), + [aux_sym_print_statement_token1] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_QMARK] = ACTIONS(7289), + [aux_sym_close_statement_token1] = ACTIONS(7287), + [aux_sym_put_statement_token1] = ACTIONS(7287), + [aux_sym_unlock_statement_token1] = ACTIONS(7287), + [aux_sym_seek_statement_token1] = ACTIONS(7287), + [sym_reset_statement] = ACTIONS(7287), + [aux_sym_raise_event_statement_token1] = ACTIONS(7287), + [sym_stop_statement] = ACTIONS(7287), + [sym_beep_statement] = ACTIONS(7287), + [aux_sym_unload_statement_token1] = ACTIONS(7287), + [aux_sym_def_type_statement_token1] = ACTIONS(7287), + [aux_sym_def_type_statement_token2] = ACTIONS(7287), + [aux_sym_def_type_statement_token3] = ACTIONS(7287), + [aux_sym_def_type_statement_token4] = ACTIONS(7287), + [aux_sym_def_type_statement_token5] = ACTIONS(7287), + [aux_sym_def_type_statement_token6] = ACTIONS(7287), + [aux_sym_def_type_statement_token7] = ACTIONS(7287), + [aux_sym_def_type_statement_token8] = ACTIONS(7287), + [aux_sym_def_type_statement_token9] = ACTIONS(7287), + [aux_sym_def_type_statement_token10] = ACTIONS(7287), + [aux_sym_def_type_statement_token11] = ACTIONS(7287), + [aux_sym_def_type_statement_token12] = ACTIONS(7287), + [aux_sym_def_type_statement_token13] = ACTIONS(7287), + [aux_sym_def_type_statement_token14] = ACTIONS(7287), + [aux_sym_call_statement_token1] = ACTIONS(7287), + [sym__ambiguous_call_statement] = ACTIONS(7287), + [aux_sym_addressof_expression_token1] = ACTIONS(7287), + [aux_sym_type_of_expression_token1] = ACTIONS(7287), + [aux_sym_unary_expression_token1] = ACTIONS(7287), + [sym_string_literal] = ACTIONS(7289), + [sym_number_literal] = ACTIONS(7289), + [aux_sym_boolean_literal_token1] = ACTIONS(7287), + [aux_sym_boolean_literal_token2] = ACTIONS(7287), + [sym_nothing_literal] = ACTIONS(7287), + [sym_null_literal] = ACTIONS(7287), + [sym_empty_literal] = ACTIONS(7287), + [sym_date_literal] = ACTIONS(7289), + [anon_sym_POUND] = ACTIONS(7287), + }, + [STATE(4636)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10058), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10060), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(10062), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(10064), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4637)] = { + [sym_fixed_string_length] = STATE(4934), + [sym_array_bounds] = STATE(5560), + [sym_identifier] = ACTIONS(7134), + [sym_newline] = ACTIONS(7136), + [anon_sym_COLON] = ACTIONS(7136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7134), + [aux_sym_frm_property_statement_token1] = ACTIONS(7134), + [anon_sym_EQ] = ACTIONS(7136), + [anon_sym_DOT] = ACTIONS(7134), + [anon_sym_BANG] = ACTIONS(7136), + [aux_sym__attribute_identifier_token1] = ACTIONS(7134), + [aux_sym_option_statement_token3] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7134), + [aux_sym_preprocessor_const_token1] = ACTIONS(7134), + [sym_static_modifier] = ACTIONS(7134), + [sym__dim_keyword] = ACTIONS(7134), + [sym__redim_keyword] = ACTIONS(7134), + [aux_sym_get_accessor_token1] = ACTIONS(7134), + [aux_sym_set_accessor_token1] = ACTIONS(7134), + [anon_sym_COMMA] = ACTIONS(7136), + [aux_sym_const_declaration_token1] = ACTIONS(7134), + [anon_sym_LPAREN] = ACTIONS(10068), + [aux_sym_as_type_clause_token2] = ACTIONS(7134), + [anon_sym_STAR] = ACTIONS(10070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7134), + [aux_sym_visibility_token1] = ACTIONS(7134), + [aux_sym_visibility_token2] = ACTIONS(7134), + [aux_sym_elseif_fragment_token1] = ACTIONS(7134), + [aux_sym_else_fragment_token1] = ACTIONS(7134), + [aux_sym_select_statement_token1] = ACTIONS(7134), + [aux_sym__for_header_token1] = ACTIONS(7134), + [aux_sym_do_statement_token1] = ACTIONS(7134), + [aux_sym_do_condition_token1] = ACTIONS(7134), + [aux_sym_while_statement_token1] = ACTIONS(7134), + [aux_sym_with_statement_token1] = ACTIONS(7134), + [aux_sym_exit_statement_token1] = ACTIONS(7134), + [sym_end_statement] = ACTIONS(7136), + [aux_sym_on_goto_statement_token1] = ACTIONS(7134), + [aux_sym_on_goto_statement_token2] = ACTIONS(7134), + [aux_sym_on_error_statement_token2] = ACTIONS(7134), + [sym__ambiguous_redim_statement] = ACTIONS(7136), + [aux_sym_erase_statement_token1] = ACTIONS(7134), + [aux_sym_open_statement_token1] = ACTIONS(7134), + [aux_sym_file_mode_token2] = ACTIONS(7134), + [aux_sym_file_access_token2] = ACTIONS(7134), + [aux_sym_file_lock_token2] = ACTIONS(7134), + [aux_sym_print_statement_token1] = ACTIONS(7134), + [anon_sym_PLUS] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7134), + [anon_sym_QMARK] = ACTIONS(7136), + [aux_sym_close_statement_token1] = ACTIONS(7134), + [aux_sym_put_statement_token1] = ACTIONS(7134), + [aux_sym_unlock_statement_token1] = ACTIONS(7134), + [aux_sym_seek_statement_token1] = ACTIONS(7134), + [sym_reset_statement] = ACTIONS(7134), + [aux_sym_raise_event_statement_token1] = ACTIONS(7134), + [sym_stop_statement] = ACTIONS(7134), + [sym_beep_statement] = ACTIONS(7134), + [aux_sym_unload_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token2] = ACTIONS(7134), + [aux_sym_def_type_statement_token3] = ACTIONS(7134), + [aux_sym_def_type_statement_token4] = ACTIONS(7134), + [aux_sym_def_type_statement_token5] = ACTIONS(7134), + [aux_sym_def_type_statement_token6] = ACTIONS(7134), + [aux_sym_def_type_statement_token7] = ACTIONS(7134), + [aux_sym_def_type_statement_token8] = ACTIONS(7134), + [aux_sym_def_type_statement_token9] = ACTIONS(7134), + [aux_sym_def_type_statement_token10] = ACTIONS(7134), + [aux_sym_def_type_statement_token11] = ACTIONS(7134), + [aux_sym_def_type_statement_token12] = ACTIONS(7134), + [aux_sym_def_type_statement_token13] = ACTIONS(7134), + [aux_sym_def_type_statement_token14] = ACTIONS(7134), + [aux_sym_call_statement_token1] = ACTIONS(7134), + [sym__ambiguous_call_statement] = ACTIONS(7134), + [aux_sym_addressof_expression_token1] = ACTIONS(7134), + [aux_sym_type_of_expression_token1] = ACTIONS(7134), + [aux_sym_unary_expression_token1] = ACTIONS(7134), + [sym_string_literal] = ACTIONS(7136), + [sym_number_literal] = ACTIONS(7136), + [aux_sym_boolean_literal_token1] = ACTIONS(7134), + [aux_sym_boolean_literal_token2] = ACTIONS(7134), + [sym_nothing_literal] = ACTIONS(7134), + [sym_null_literal] = ACTIONS(7134), + [sym_empty_literal] = ACTIONS(7134), + [sym_date_literal] = ACTIONS(7136), + [anon_sym_POUND] = ACTIONS(7134), + }, + [STATE(4638)] = { + [sym_array_bounds] = STATE(4758), + [sym_identifier] = ACTIONS(8081), + [sym_newline] = ACTIONS(8083), + [anon_sym_COLON] = ACTIONS(8083), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8081), + [aux_sym_frm_property_statement_token1] = ACTIONS(8081), + [anon_sym_EQ] = ACTIONS(8083), + [anon_sym_DOT] = ACTIONS(8081), + [anon_sym_BANG] = ACTIONS(8083), + [aux_sym__attribute_identifier_token1] = ACTIONS(8081), + [aux_sym_option_statement_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8081), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8081), + [aux_sym_preprocessor_const_token1] = ACTIONS(8081), + [sym_static_modifier] = ACTIONS(8081), + [sym__dim_keyword] = ACTIONS(8081), + [sym__redim_keyword] = ACTIONS(8081), + [aux_sym_get_accessor_token1] = ACTIONS(8081), + [aux_sym_set_accessor_token1] = ACTIONS(8081), + [anon_sym_COMMA] = ACTIONS(8083), + [aux_sym_const_declaration_token1] = ACTIONS(8081), + [anon_sym_LPAREN] = ACTIONS(9943), + [aux_sym_as_type_clause_token2] = ACTIONS(8081), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8081), + [aux_sym_visibility_token1] = ACTIONS(8081), + [aux_sym_visibility_token2] = ACTIONS(8081), + [aux_sym_elseif_fragment_token1] = ACTIONS(8081), + [aux_sym_else_fragment_token1] = ACTIONS(8081), + [aux_sym_select_statement_token1] = ACTIONS(8081), + [aux_sym__for_header_token1] = ACTIONS(8081), + [aux_sym_do_statement_token1] = ACTIONS(8081), + [aux_sym_do_condition_token1] = ACTIONS(8081), + [aux_sym_with_statement_token1] = ACTIONS(8081), + [aux_sym_exit_statement_token1] = ACTIONS(8081), + [sym_end_statement] = ACTIONS(8083), + [aux_sym_on_goto_statement_token1] = ACTIONS(8081), + [aux_sym_on_goto_statement_token2] = ACTIONS(8081), + [aux_sym_on_error_statement_token2] = ACTIONS(8081), + [sym__ambiguous_redim_statement] = ACTIONS(8083), + [aux_sym_erase_statement_token1] = ACTIONS(8081), + [aux_sym_open_statement_token1] = ACTIONS(8081), + [aux_sym_file_mode_token2] = ACTIONS(8081), + [aux_sym_file_access_token2] = ACTIONS(8081), + [aux_sym_file_lock_token2] = ACTIONS(8081), + [aux_sym_print_statement_token1] = ACTIONS(8081), + [anon_sym_PLUS] = ACTIONS(8083), + [anon_sym_DASH] = ACTIONS(8081), + [anon_sym_QMARK] = ACTIONS(8083), + [aux_sym_close_statement_token1] = ACTIONS(8081), + [aux_sym_put_statement_token1] = ACTIONS(8081), + [aux_sym_unlock_statement_token1] = ACTIONS(8081), + [aux_sym_seek_statement_token1] = ACTIONS(8081), + [sym_reset_statement] = ACTIONS(8081), + [aux_sym_raise_event_statement_token1] = ACTIONS(8081), + [sym_stop_statement] = ACTIONS(8081), + [sym_beep_statement] = ACTIONS(8081), + [aux_sym_unload_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token2] = ACTIONS(8081), + [aux_sym_def_type_statement_token3] = ACTIONS(8081), + [aux_sym_def_type_statement_token4] = ACTIONS(8081), + [aux_sym_def_type_statement_token5] = ACTIONS(8081), + [aux_sym_def_type_statement_token6] = ACTIONS(8081), + [aux_sym_def_type_statement_token7] = ACTIONS(8081), + [aux_sym_def_type_statement_token8] = ACTIONS(8081), + [aux_sym_def_type_statement_token9] = ACTIONS(8081), + [aux_sym_def_type_statement_token10] = ACTIONS(8081), + [aux_sym_def_type_statement_token11] = ACTIONS(8081), + [aux_sym_def_type_statement_token12] = ACTIONS(8081), + [aux_sym_def_type_statement_token13] = ACTIONS(8081), + [aux_sym_def_type_statement_token14] = ACTIONS(8081), + [aux_sym_call_statement_token1] = ACTIONS(8081), + [sym__ambiguous_call_statement] = ACTIONS(8081), + [aux_sym_addressof_expression_token1] = ACTIONS(8081), + [aux_sym_type_of_expression_token1] = ACTIONS(8081), + [aux_sym_unary_expression_token1] = ACTIONS(8081), + [sym_string_literal] = ACTIONS(8083), + [sym_number_literal] = ACTIONS(8083), + [aux_sym_boolean_literal_token1] = ACTIONS(8081), + [aux_sym_boolean_literal_token2] = ACTIONS(8081), + [sym_nothing_literal] = ACTIONS(8081), + [sym_null_literal] = ACTIONS(8081), + [sym_empty_literal] = ACTIONS(8081), + [sym_date_literal] = ACTIONS(8083), + [anon_sym_POUND] = ACTIONS(8081), + }, + [STATE(4639)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym_select_statement_token2] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10072), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10074), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4640)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_statement_token2] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10052), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10076), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4641)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym_select_statement_token2] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10072), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10074), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(10078), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4642)] = { + [sym_fixed_string_length] = STATE(4980), + [sym_array_bounds] = STATE(5359), + [sym_identifier] = ACTIONS(7230), + [sym_newline] = ACTIONS(7232), + [anon_sym_COLON] = ACTIONS(7232), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7230), + [aux_sym_frm_property_statement_token1] = ACTIONS(7230), + [anon_sym_EQ] = ACTIONS(7232), + [anon_sym_DOT] = ACTIONS(7230), + [anon_sym_BANG] = ACTIONS(7232), + [aux_sym__attribute_identifier_token1] = ACTIONS(7230), + [aux_sym_option_statement_token3] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7230), + [aux_sym_preprocessor_const_token1] = ACTIONS(7230), + [sym_static_modifier] = ACTIONS(7230), + [sym__dim_keyword] = ACTIONS(7230), + [sym__redim_keyword] = ACTIONS(7230), + [aux_sym_get_accessor_token1] = ACTIONS(7230), + [aux_sym_set_accessor_token1] = ACTIONS(7230), + [anon_sym_COMMA] = ACTIONS(7232), + [aux_sym_const_declaration_token1] = ACTIONS(7230), + [anon_sym_LPAREN] = ACTIONS(10054), + [aux_sym_as_type_clause_token2] = ACTIONS(7230), + [anon_sym_STAR] = ACTIONS(10056), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7230), + [aux_sym_visibility_token1] = ACTIONS(7230), + [aux_sym_visibility_token2] = ACTIONS(7230), + [aux_sym_elseif_fragment_token1] = ACTIONS(7230), + [aux_sym_else_fragment_token1] = ACTIONS(7230), + [aux_sym_select_statement_token1] = ACTIONS(7230), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7230), + [aux_sym__for_header_token1] = ACTIONS(7230), + [aux_sym_do_statement_token1] = ACTIONS(7230), + [aux_sym_do_condition_token1] = ACTIONS(7230), + [aux_sym_with_statement_token1] = ACTIONS(7230), + [aux_sym_exit_statement_token1] = ACTIONS(7230), + [sym_end_statement] = ACTIONS(7232), + [aux_sym_on_goto_statement_token1] = ACTIONS(7230), + [aux_sym_on_goto_statement_token2] = ACTIONS(7230), + [aux_sym_on_error_statement_token2] = ACTIONS(7230), + [sym__ambiguous_redim_statement] = ACTIONS(7232), + [aux_sym_erase_statement_token1] = ACTIONS(7230), + [aux_sym_open_statement_token1] = ACTIONS(7230), + [aux_sym_file_mode_token2] = ACTIONS(7230), + [aux_sym_file_access_token2] = ACTIONS(7230), + [aux_sym_file_lock_token2] = ACTIONS(7230), + [aux_sym_print_statement_token1] = ACTIONS(7230), + [anon_sym_PLUS] = ACTIONS(7232), + [anon_sym_DASH] = ACTIONS(7230), + [anon_sym_QMARK] = ACTIONS(7232), + [aux_sym_close_statement_token1] = ACTIONS(7230), + [aux_sym_put_statement_token1] = ACTIONS(7230), + [aux_sym_unlock_statement_token1] = ACTIONS(7230), + [aux_sym_seek_statement_token1] = ACTIONS(7230), + [sym_reset_statement] = ACTIONS(7230), + [aux_sym_raise_event_statement_token1] = ACTIONS(7230), + [sym_stop_statement] = ACTIONS(7230), + [sym_beep_statement] = ACTIONS(7230), + [aux_sym_unload_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token2] = ACTIONS(7230), + [aux_sym_def_type_statement_token3] = ACTIONS(7230), + [aux_sym_def_type_statement_token4] = ACTIONS(7230), + [aux_sym_def_type_statement_token5] = ACTIONS(7230), + [aux_sym_def_type_statement_token6] = ACTIONS(7230), + [aux_sym_def_type_statement_token7] = ACTIONS(7230), + [aux_sym_def_type_statement_token8] = ACTIONS(7230), + [aux_sym_def_type_statement_token9] = ACTIONS(7230), + [aux_sym_def_type_statement_token10] = ACTIONS(7230), + [aux_sym_def_type_statement_token11] = ACTIONS(7230), + [aux_sym_def_type_statement_token12] = ACTIONS(7230), + [aux_sym_def_type_statement_token13] = ACTIONS(7230), + [aux_sym_def_type_statement_token14] = ACTIONS(7230), + [aux_sym_call_statement_token1] = ACTIONS(7230), + [sym__ambiguous_call_statement] = ACTIONS(7230), + [aux_sym_addressof_expression_token1] = ACTIONS(7230), + [aux_sym_type_of_expression_token1] = ACTIONS(7230), + [aux_sym_unary_expression_token1] = ACTIONS(7230), + [sym_string_literal] = ACTIONS(7232), + [sym_number_literal] = ACTIONS(7232), + [aux_sym_boolean_literal_token1] = ACTIONS(7230), + [aux_sym_boolean_literal_token2] = ACTIONS(7230), + [sym_nothing_literal] = ACTIONS(7230), + [sym_null_literal] = ACTIONS(7230), + [sym_empty_literal] = ACTIONS(7230), + [sym_date_literal] = ACTIONS(7232), + [anon_sym_POUND] = ACTIONS(7230), + }, + [STATE(4643)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4644)] = { + [sym_identifier] = ACTIONS(7968), + [sym_newline] = ACTIONS(7970), + [anon_sym_COLON] = ACTIONS(7970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7968), + [aux_sym_frm_property_statement_token1] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_BANG] = ACTIONS(7970), + [aux_sym__attribute_identifier_token1] = ACTIONS(7968), + [aux_sym_option_statement_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7968), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7968), + [aux_sym_preprocessor_const_token1] = ACTIONS(7968), + [sym_static_modifier] = ACTIONS(7968), + [sym__dim_keyword] = ACTIONS(7968), + [sym__redim_keyword] = ACTIONS(7968), + [aux_sym_get_accessor_token1] = ACTIONS(7968), + [aux_sym_set_accessor_token1] = ACTIONS(7968), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_const_declaration_token1] = ACTIONS(7968), + [anon_sym_LPAREN] = ACTIONS(7970), + [aux_sym_as_type_clause_token1] = ACTIONS(7968), + [aux_sym_as_type_clause_token2] = ACTIONS(7968), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7968), + [aux_sym_visibility_token1] = ACTIONS(7968), + [aux_sym_visibility_token2] = ACTIONS(7968), + [aux_sym_elseif_fragment_token1] = ACTIONS(7968), + [aux_sym_else_fragment_token1] = ACTIONS(7968), + [aux_sym_select_statement_token1] = ACTIONS(7968), + [aux_sym__for_header_token1] = ACTIONS(7968), + [aux_sym_do_statement_token1] = ACTIONS(7968), + [aux_sym_do_condition_token1] = ACTIONS(7968), + [aux_sym_with_statement_token1] = ACTIONS(7968), + [aux_sym_exit_statement_token1] = ACTIONS(7968), + [sym_end_statement] = ACTIONS(7970), + [aux_sym_on_goto_statement_token1] = ACTIONS(7968), + [aux_sym_on_goto_statement_token2] = ACTIONS(7968), + [aux_sym_on_error_statement_token2] = ACTIONS(7968), + [sym__ambiguous_redim_statement] = ACTIONS(7970), + [aux_sym_erase_statement_token1] = ACTIONS(7968), + [aux_sym_open_statement_token1] = ACTIONS(7968), + [aux_sym_file_mode_token2] = ACTIONS(7968), + [aux_sym_file_access_token2] = ACTIONS(7968), + [aux_sym_file_lock_token2] = ACTIONS(7968), + [aux_sym_print_statement_token1] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7970), + [aux_sym_close_statement_token1] = ACTIONS(7968), + [aux_sym_put_statement_token1] = ACTIONS(7968), + [aux_sym_unlock_statement_token1] = ACTIONS(7968), + [aux_sym_seek_statement_token1] = ACTIONS(7968), + [sym_reset_statement] = ACTIONS(7968), + [aux_sym_raise_event_statement_token1] = ACTIONS(7968), + [sym_stop_statement] = ACTIONS(7968), + [sym_beep_statement] = ACTIONS(7968), + [aux_sym_unload_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token2] = ACTIONS(7968), + [aux_sym_def_type_statement_token3] = ACTIONS(7968), + [aux_sym_def_type_statement_token4] = ACTIONS(7968), + [aux_sym_def_type_statement_token5] = ACTIONS(7968), + [aux_sym_def_type_statement_token6] = ACTIONS(7968), + [aux_sym_def_type_statement_token7] = ACTIONS(7968), + [aux_sym_def_type_statement_token8] = ACTIONS(7968), + [aux_sym_def_type_statement_token9] = ACTIONS(7968), + [aux_sym_def_type_statement_token10] = ACTIONS(7968), + [aux_sym_def_type_statement_token11] = ACTIONS(7968), + [aux_sym_def_type_statement_token12] = ACTIONS(7968), + [aux_sym_def_type_statement_token13] = ACTIONS(7968), + [aux_sym_def_type_statement_token14] = ACTIONS(7968), + [aux_sym_call_statement_token1] = ACTIONS(7968), + [sym__ambiguous_call_statement] = ACTIONS(7968), + [aux_sym_addressof_expression_token1] = ACTIONS(7968), + [aux_sym_type_of_expression_token1] = ACTIONS(7968), + [aux_sym_unary_expression_token1] = ACTIONS(7968), + [sym_string_literal] = ACTIONS(7970), + [sym_number_literal] = ACTIONS(7970), + [aux_sym_boolean_literal_token1] = ACTIONS(7968), + [aux_sym_boolean_literal_token2] = ACTIONS(7968), + [sym_nothing_literal] = ACTIONS(7968), + [sym_null_literal] = ACTIONS(7968), + [sym_empty_literal] = ACTIONS(7968), + [sym_date_literal] = ACTIONS(7970), + [anon_sym_POUND] = ACTIONS(7968), + }, + [STATE(4645)] = { + [aux_sym_next_variable_list_repeat1] = STATE(4648), + [sym_identifier] = ACTIONS(7939), + [sym_newline] = ACTIONS(7941), + [anon_sym_COLON] = ACTIONS(7941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7939), + [aux_sym_frm_property_statement_token1] = ACTIONS(7939), + [anon_sym_DOT] = ACTIONS(7939), + [anon_sym_BANG] = ACTIONS(7941), + [aux_sym__attribute_identifier_token1] = ACTIONS(7939), + [aux_sym_option_statement_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7939), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7939), + [aux_sym_preprocessor_const_token1] = ACTIONS(7939), + [sym_static_modifier] = ACTIONS(7939), + [sym__dim_keyword] = ACTIONS(7939), + [sym__redim_keyword] = ACTIONS(7939), + [aux_sym_get_accessor_token1] = ACTIONS(7939), + [aux_sym_set_accessor_token1] = ACTIONS(7939), + [anon_sym_COMMA] = ACTIONS(10080), + [aux_sym_const_declaration_token1] = ACTIONS(7939), + [anon_sym_LPAREN] = ACTIONS(7941), + [aux_sym_as_type_clause_token2] = ACTIONS(7939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7939), + [aux_sym_visibility_token1] = ACTIONS(7939), + [aux_sym_visibility_token2] = ACTIONS(7939), + [aux_sym_elseif_fragment_token1] = ACTIONS(7939), + [aux_sym_else_fragment_token1] = ACTIONS(7939), + [aux_sym_select_statement_token1] = ACTIONS(7939), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7939), + [aux_sym__for_header_token1] = ACTIONS(7939), + [aux_sym_do_statement_token1] = ACTIONS(7939), + [aux_sym_do_condition_token1] = ACTIONS(7939), + [aux_sym_with_statement_token1] = ACTIONS(7939), + [aux_sym_exit_statement_token1] = ACTIONS(7939), + [sym_end_statement] = ACTIONS(7941), + [aux_sym_on_goto_statement_token1] = ACTIONS(7939), + [aux_sym_on_goto_statement_token2] = ACTIONS(7939), + [aux_sym_on_error_statement_token2] = ACTIONS(7939), + [sym__ambiguous_redim_statement] = ACTIONS(7941), + [aux_sym_erase_statement_token1] = ACTIONS(7939), + [aux_sym_open_statement_token1] = ACTIONS(7939), + [aux_sym_file_mode_token2] = ACTIONS(7939), + [aux_sym_file_access_token2] = ACTIONS(7939), + [aux_sym_file_lock_token2] = ACTIONS(7939), + [aux_sym_print_statement_token1] = ACTIONS(7939), + [anon_sym_PLUS] = ACTIONS(7941), + [anon_sym_DASH] = ACTIONS(7939), + [anon_sym_QMARK] = ACTIONS(7941), + [aux_sym_close_statement_token1] = ACTIONS(7939), + [aux_sym_put_statement_token1] = ACTIONS(7939), + [aux_sym_unlock_statement_token1] = ACTIONS(7939), + [aux_sym_seek_statement_token1] = ACTIONS(7939), + [sym_reset_statement] = ACTIONS(7939), + [aux_sym_raise_event_statement_token1] = ACTIONS(7939), + [sym_stop_statement] = ACTIONS(7939), + [sym_beep_statement] = ACTIONS(7939), + [aux_sym_unload_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token2] = ACTIONS(7939), + [aux_sym_def_type_statement_token3] = ACTIONS(7939), + [aux_sym_def_type_statement_token4] = ACTIONS(7939), + [aux_sym_def_type_statement_token5] = ACTIONS(7939), + [aux_sym_def_type_statement_token6] = ACTIONS(7939), + [aux_sym_def_type_statement_token7] = ACTIONS(7939), + [aux_sym_def_type_statement_token8] = ACTIONS(7939), + [aux_sym_def_type_statement_token9] = ACTIONS(7939), + [aux_sym_def_type_statement_token10] = ACTIONS(7939), + [aux_sym_def_type_statement_token11] = ACTIONS(7939), + [aux_sym_def_type_statement_token12] = ACTIONS(7939), + [aux_sym_def_type_statement_token13] = ACTIONS(7939), + [aux_sym_def_type_statement_token14] = ACTIONS(7939), + [aux_sym_call_statement_token1] = ACTIONS(7939), + [sym__ambiguous_call_statement] = ACTIONS(7939), + [aux_sym_addressof_expression_token1] = ACTIONS(7939), + [aux_sym_type_of_expression_token1] = ACTIONS(7939), + [aux_sym_unary_expression_token1] = ACTIONS(7939), + [sym_string_literal] = ACTIONS(7941), + [sym_number_literal] = ACTIONS(7941), + [aux_sym_boolean_literal_token1] = ACTIONS(7939), + [aux_sym_boolean_literal_token2] = ACTIONS(7939), + [sym_nothing_literal] = ACTIONS(7939), + [sym_null_literal] = ACTIONS(7939), + [sym_empty_literal] = ACTIONS(7939), + [sym_date_literal] = ACTIONS(7941), + [anon_sym_POUND] = ACTIONS(7939), + }, + [STATE(4646)] = { + [sym_initializer] = STATE(6065), + [sym_as_type_clause] = STATE(5039), + [sym_identifier] = ACTIONS(7287), + [sym_newline] = ACTIONS(7289), + [anon_sym_COLON] = ACTIONS(7289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7287), + [aux_sym_frm_property_statement_token1] = ACTIONS(7287), + [anon_sym_EQ] = ACTIONS(10011), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_BANG] = ACTIONS(7289), + [aux_sym__attribute_identifier_token1] = ACTIONS(7287), + [aux_sym_option_statement_token3] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7287), + [aux_sym_preprocessor_const_token1] = ACTIONS(7287), + [sym_static_modifier] = ACTIONS(7287), + [sym__dim_keyword] = ACTIONS(7287), + [sym__redim_keyword] = ACTIONS(7287), + [aux_sym_get_accessor_token1] = ACTIONS(7287), + [aux_sym_set_accessor_token1] = ACTIONS(7287), + [anon_sym_COMMA] = ACTIONS(7289), + [aux_sym_const_declaration_token1] = ACTIONS(7287), + [anon_sym_LPAREN] = ACTIONS(7289), + [aux_sym_as_type_clause_token1] = ACTIONS(10015), + [aux_sym_as_type_clause_token2] = ACTIONS(7287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7287), + [aux_sym_visibility_token1] = ACTIONS(7287), + [aux_sym_visibility_token2] = ACTIONS(7287), + [aux_sym_elseif_fragment_token1] = ACTIONS(7287), + [aux_sym_else_fragment_token1] = ACTIONS(7287), + [aux_sym_select_statement_token1] = ACTIONS(7287), + [aux_sym_select_statement_token2] = ACTIONS(7287), + [aux_sym__for_header_token1] = ACTIONS(7287), + [aux_sym_do_statement_token1] = ACTIONS(7287), + [aux_sym_do_condition_token1] = ACTIONS(7287), + [aux_sym_with_statement_token1] = ACTIONS(7287), + [aux_sym_exit_statement_token1] = ACTIONS(7287), + [sym_end_statement] = ACTIONS(7289), + [aux_sym_on_goto_statement_token1] = ACTIONS(7287), + [aux_sym_on_goto_statement_token2] = ACTIONS(7287), + [aux_sym_on_error_statement_token2] = ACTIONS(7287), + [sym__ambiguous_redim_statement] = ACTIONS(7289), + [aux_sym_erase_statement_token1] = ACTIONS(7287), + [aux_sym_open_statement_token1] = ACTIONS(7287), + [aux_sym_file_mode_token2] = ACTIONS(7287), + [aux_sym_file_access_token2] = ACTIONS(7287), + [aux_sym_file_lock_token2] = ACTIONS(7287), + [aux_sym_print_statement_token1] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_QMARK] = ACTIONS(7289), + [aux_sym_close_statement_token1] = ACTIONS(7287), + [aux_sym_put_statement_token1] = ACTIONS(7287), + [aux_sym_unlock_statement_token1] = ACTIONS(7287), + [aux_sym_seek_statement_token1] = ACTIONS(7287), + [sym_reset_statement] = ACTIONS(7287), + [aux_sym_raise_event_statement_token1] = ACTIONS(7287), + [sym_stop_statement] = ACTIONS(7287), + [sym_beep_statement] = ACTIONS(7287), + [aux_sym_unload_statement_token1] = ACTIONS(7287), + [aux_sym_def_type_statement_token1] = ACTIONS(7287), + [aux_sym_def_type_statement_token2] = ACTIONS(7287), + [aux_sym_def_type_statement_token3] = ACTIONS(7287), + [aux_sym_def_type_statement_token4] = ACTIONS(7287), + [aux_sym_def_type_statement_token5] = ACTIONS(7287), + [aux_sym_def_type_statement_token6] = ACTIONS(7287), + [aux_sym_def_type_statement_token7] = ACTIONS(7287), + [aux_sym_def_type_statement_token8] = ACTIONS(7287), + [aux_sym_def_type_statement_token9] = ACTIONS(7287), + [aux_sym_def_type_statement_token10] = ACTIONS(7287), + [aux_sym_def_type_statement_token11] = ACTIONS(7287), + [aux_sym_def_type_statement_token12] = ACTIONS(7287), + [aux_sym_def_type_statement_token13] = ACTIONS(7287), + [aux_sym_def_type_statement_token14] = ACTIONS(7287), + [aux_sym_call_statement_token1] = ACTIONS(7287), + [sym__ambiguous_call_statement] = ACTIONS(7287), + [aux_sym_addressof_expression_token1] = ACTIONS(7287), + [aux_sym_type_of_expression_token1] = ACTIONS(7287), + [aux_sym_unary_expression_token1] = ACTIONS(7287), + [sym_string_literal] = ACTIONS(7289), + [sym_number_literal] = ACTIONS(7289), + [aux_sym_boolean_literal_token1] = ACTIONS(7287), + [aux_sym_boolean_literal_token2] = ACTIONS(7287), + [sym_nothing_literal] = ACTIONS(7287), + [sym_null_literal] = ACTIONS(7287), + [sym_empty_literal] = ACTIONS(7287), + [sym_date_literal] = ACTIONS(7289), + [anon_sym_POUND] = ACTIONS(7287), + }, + [STATE(4647)] = { + [sym_argument_list] = STATE(4790), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7836), + [anon_sym_BANG] = ACTIONS(4034), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10082), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(4648)] = { + [aux_sym_next_variable_list_repeat1] = STATE(4686), + [sym_identifier] = ACTIONS(7945), + [sym_newline] = ACTIONS(7947), + [anon_sym_COLON] = ACTIONS(7947), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7945), + [aux_sym_frm_property_statement_token1] = ACTIONS(7945), + [anon_sym_DOT] = ACTIONS(7945), + [anon_sym_BANG] = ACTIONS(7947), + [aux_sym__attribute_identifier_token1] = ACTIONS(7945), + [aux_sym_option_statement_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7945), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7945), + [aux_sym_preprocessor_const_token1] = ACTIONS(7945), + [sym_static_modifier] = ACTIONS(7945), + [sym__dim_keyword] = ACTIONS(7945), + [sym__redim_keyword] = ACTIONS(7945), + [aux_sym_get_accessor_token1] = ACTIONS(7945), + [aux_sym_set_accessor_token1] = ACTIONS(7945), + [anon_sym_COMMA] = ACTIONS(10080), + [aux_sym_const_declaration_token1] = ACTIONS(7945), + [anon_sym_LPAREN] = ACTIONS(7947), + [aux_sym_as_type_clause_token2] = ACTIONS(7945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7945), + [aux_sym_visibility_token1] = ACTIONS(7945), + [aux_sym_visibility_token2] = ACTIONS(7945), + [aux_sym_elseif_fragment_token1] = ACTIONS(7945), + [aux_sym_else_fragment_token1] = ACTIONS(7945), + [aux_sym_select_statement_token1] = ACTIONS(7945), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7945), + [aux_sym__for_header_token1] = ACTIONS(7945), + [aux_sym_do_statement_token1] = ACTIONS(7945), + [aux_sym_do_condition_token1] = ACTIONS(7945), + [aux_sym_with_statement_token1] = ACTIONS(7945), + [aux_sym_exit_statement_token1] = ACTIONS(7945), + [sym_end_statement] = ACTIONS(7947), + [aux_sym_on_goto_statement_token1] = ACTIONS(7945), + [aux_sym_on_goto_statement_token2] = ACTIONS(7945), + [aux_sym_on_error_statement_token2] = ACTIONS(7945), + [sym__ambiguous_redim_statement] = ACTIONS(7947), + [aux_sym_erase_statement_token1] = ACTIONS(7945), + [aux_sym_open_statement_token1] = ACTIONS(7945), + [aux_sym_file_mode_token2] = ACTIONS(7945), + [aux_sym_file_access_token2] = ACTIONS(7945), + [aux_sym_file_lock_token2] = ACTIONS(7945), + [aux_sym_print_statement_token1] = ACTIONS(7945), + [anon_sym_PLUS] = ACTIONS(7947), + [anon_sym_DASH] = ACTIONS(7945), + [anon_sym_QMARK] = ACTIONS(7947), + [aux_sym_close_statement_token1] = ACTIONS(7945), + [aux_sym_put_statement_token1] = ACTIONS(7945), + [aux_sym_unlock_statement_token1] = ACTIONS(7945), + [aux_sym_seek_statement_token1] = ACTIONS(7945), + [sym_reset_statement] = ACTIONS(7945), + [aux_sym_raise_event_statement_token1] = ACTIONS(7945), + [sym_stop_statement] = ACTIONS(7945), + [sym_beep_statement] = ACTIONS(7945), + [aux_sym_unload_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token2] = ACTIONS(7945), + [aux_sym_def_type_statement_token3] = ACTIONS(7945), + [aux_sym_def_type_statement_token4] = ACTIONS(7945), + [aux_sym_def_type_statement_token5] = ACTIONS(7945), + [aux_sym_def_type_statement_token6] = ACTIONS(7945), + [aux_sym_def_type_statement_token7] = ACTIONS(7945), + [aux_sym_def_type_statement_token8] = ACTIONS(7945), + [aux_sym_def_type_statement_token9] = ACTIONS(7945), + [aux_sym_def_type_statement_token10] = ACTIONS(7945), + [aux_sym_def_type_statement_token11] = ACTIONS(7945), + [aux_sym_def_type_statement_token12] = ACTIONS(7945), + [aux_sym_def_type_statement_token13] = ACTIONS(7945), + [aux_sym_def_type_statement_token14] = ACTIONS(7945), + [aux_sym_call_statement_token1] = ACTIONS(7945), + [sym__ambiguous_call_statement] = ACTIONS(7945), + [aux_sym_addressof_expression_token1] = ACTIONS(7945), + [aux_sym_type_of_expression_token1] = ACTIONS(7945), + [aux_sym_unary_expression_token1] = ACTIONS(7945), + [sym_string_literal] = ACTIONS(7947), + [sym_number_literal] = ACTIONS(7947), + [aux_sym_boolean_literal_token1] = ACTIONS(7945), + [aux_sym_boolean_literal_token2] = ACTIONS(7945), + [sym_nothing_literal] = ACTIONS(7945), + [sym_null_literal] = ACTIONS(7945), + [sym_empty_literal] = ACTIONS(7945), + [sym_date_literal] = ACTIONS(7947), + [anon_sym_POUND] = ACTIONS(7945), + }, + [STATE(4649)] = { + [sym_initializer] = STATE(6098), + [sym_as_type_clause] = STATE(4975), + [sym_identifier] = ACTIONS(7200), + [sym_newline] = ACTIONS(7202), + [anon_sym_COLON] = ACTIONS(7202), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7200), + [aux_sym_frm_property_statement_token1] = ACTIONS(7200), + [anon_sym_EQ] = ACTIONS(10026), + [anon_sym_DOT] = ACTIONS(7200), + [anon_sym_BANG] = ACTIONS(7202), + [aux_sym__attribute_identifier_token1] = ACTIONS(7200), + [aux_sym_option_statement_token3] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7200), + [aux_sym_preprocessor_const_token1] = ACTIONS(7200), + [sym_static_modifier] = ACTIONS(7200), + [sym__dim_keyword] = ACTIONS(7200), + [sym__redim_keyword] = ACTIONS(7200), + [aux_sym_get_accessor_token1] = ACTIONS(7200), + [aux_sym_set_accessor_token1] = ACTIONS(7200), + [anon_sym_COMMA] = ACTIONS(7202), + [aux_sym_const_declaration_token1] = ACTIONS(7200), + [anon_sym_LPAREN] = ACTIONS(7202), + [aux_sym_as_type_clause_token1] = ACTIONS(10030), + [aux_sym_as_type_clause_token2] = ACTIONS(7200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7200), + [aux_sym_visibility_token1] = ACTIONS(7200), + [aux_sym_visibility_token2] = ACTIONS(7200), + [aux_sym_elseif_fragment_token1] = ACTIONS(7200), + [aux_sym_else_fragment_token1] = ACTIONS(7200), + [aux_sym_select_statement_token1] = ACTIONS(7200), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7200), + [aux_sym__for_header_token1] = ACTIONS(7200), + [aux_sym_do_statement_token1] = ACTIONS(7200), + [aux_sym_do_condition_token1] = ACTIONS(7200), + [aux_sym_with_statement_token1] = ACTIONS(7200), + [aux_sym_exit_statement_token1] = ACTIONS(7200), + [sym_end_statement] = ACTIONS(7202), + [aux_sym_on_goto_statement_token1] = ACTIONS(7200), + [aux_sym_on_goto_statement_token2] = ACTIONS(7200), + [aux_sym_on_error_statement_token2] = ACTIONS(7200), + [sym__ambiguous_redim_statement] = ACTIONS(7202), + [aux_sym_erase_statement_token1] = ACTIONS(7200), + [aux_sym_open_statement_token1] = ACTIONS(7200), + [aux_sym_file_mode_token2] = ACTIONS(7200), + [aux_sym_file_access_token2] = ACTIONS(7200), + [aux_sym_file_lock_token2] = ACTIONS(7200), + [aux_sym_print_statement_token1] = ACTIONS(7200), + [anon_sym_PLUS] = ACTIONS(7202), + [anon_sym_DASH] = ACTIONS(7200), + [anon_sym_QMARK] = ACTIONS(7202), + [aux_sym_close_statement_token1] = ACTIONS(7200), + [aux_sym_put_statement_token1] = ACTIONS(7200), + [aux_sym_unlock_statement_token1] = ACTIONS(7200), + [aux_sym_seek_statement_token1] = ACTIONS(7200), + [sym_reset_statement] = ACTIONS(7200), + [aux_sym_raise_event_statement_token1] = ACTIONS(7200), + [sym_stop_statement] = ACTIONS(7200), + [sym_beep_statement] = ACTIONS(7200), + [aux_sym_unload_statement_token1] = ACTIONS(7200), + [aux_sym_def_type_statement_token1] = ACTIONS(7200), + [aux_sym_def_type_statement_token2] = ACTIONS(7200), + [aux_sym_def_type_statement_token3] = ACTIONS(7200), + [aux_sym_def_type_statement_token4] = ACTIONS(7200), + [aux_sym_def_type_statement_token5] = ACTIONS(7200), + [aux_sym_def_type_statement_token6] = ACTIONS(7200), + [aux_sym_def_type_statement_token7] = ACTIONS(7200), + [aux_sym_def_type_statement_token8] = ACTIONS(7200), + [aux_sym_def_type_statement_token9] = ACTIONS(7200), + [aux_sym_def_type_statement_token10] = ACTIONS(7200), + [aux_sym_def_type_statement_token11] = ACTIONS(7200), + [aux_sym_def_type_statement_token12] = ACTIONS(7200), + [aux_sym_def_type_statement_token13] = ACTIONS(7200), + [aux_sym_def_type_statement_token14] = ACTIONS(7200), + [aux_sym_call_statement_token1] = ACTIONS(7200), + [sym__ambiguous_call_statement] = ACTIONS(7200), + [aux_sym_addressof_expression_token1] = ACTIONS(7200), + [aux_sym_type_of_expression_token1] = ACTIONS(7200), + [aux_sym_unary_expression_token1] = ACTIONS(7200), + [sym_string_literal] = ACTIONS(7202), + [sym_number_literal] = ACTIONS(7202), + [aux_sym_boolean_literal_token1] = ACTIONS(7200), + [aux_sym_boolean_literal_token2] = ACTIONS(7200), + [sym_nothing_literal] = ACTIONS(7200), + [sym_null_literal] = ACTIONS(7200), + [sym_empty_literal] = ACTIONS(7200), + [sym_date_literal] = ACTIONS(7202), + [anon_sym_POUND] = ACTIONS(7200), + }, + [STATE(4650)] = { + [sym_argument_list] = STATE(10051), + [aux_sym_input_statement_repeat1] = STATE(4839), + [sym_identifier] = ACTIONS(7864), + [sym_newline] = ACTIONS(7866), + [anon_sym_COLON] = ACTIONS(7866), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7864), + [aux_sym_frm_property_statement_token1] = ACTIONS(7864), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_BANG] = ACTIONS(7866), + [aux_sym__attribute_identifier_token1] = ACTIONS(7864), + [aux_sym_option_statement_token3] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7864), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7864), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7864), + [aux_sym_preprocessor_const_token1] = ACTIONS(7864), + [sym_static_modifier] = ACTIONS(7864), + [sym__dim_keyword] = ACTIONS(7864), + [sym__redim_keyword] = ACTIONS(7864), + [aux_sym_get_accessor_token1] = ACTIONS(7864), + [aux_sym_set_accessor_token1] = ACTIONS(7864), + [anon_sym_COMMA] = ACTIONS(10084), + [aux_sym_const_declaration_token1] = ACTIONS(7864), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(7864), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7864), + [aux_sym_visibility_token1] = ACTIONS(7864), + [aux_sym_visibility_token2] = ACTIONS(7864), + [aux_sym_elseif_fragment_token1] = ACTIONS(7864), + [aux_sym_else_fragment_token1] = ACTIONS(7864), + [aux_sym_select_statement_token1] = ACTIONS(7864), + [aux_sym__for_header_token1] = ACTIONS(7864), + [aux_sym_do_statement_token1] = ACTIONS(7864), + [aux_sym_do_condition_token1] = ACTIONS(7864), + [aux_sym_with_statement_token1] = ACTIONS(7864), + [aux_sym_exit_statement_token1] = ACTIONS(7864), + [sym_end_statement] = ACTIONS(7866), + [aux_sym_on_goto_statement_token1] = ACTIONS(7864), + [aux_sym_on_goto_statement_token2] = ACTIONS(7864), + [aux_sym_on_error_statement_token2] = ACTIONS(7864), + [sym__ambiguous_redim_statement] = ACTIONS(7866), + [aux_sym_erase_statement_token1] = ACTIONS(7864), + [aux_sym_open_statement_token1] = ACTIONS(7864), + [aux_sym_file_mode_token2] = ACTIONS(7864), + [aux_sym_file_access_token2] = ACTIONS(7864), + [aux_sym_file_lock_token2] = ACTIONS(7864), + [aux_sym_print_statement_token1] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7866), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7866), + [aux_sym_close_statement_token1] = ACTIONS(7864), + [aux_sym_put_statement_token1] = ACTIONS(7864), + [aux_sym_unlock_statement_token1] = ACTIONS(7864), + [aux_sym_seek_statement_token1] = ACTIONS(7864), + [sym_reset_statement] = ACTIONS(7864), + [aux_sym_raise_event_statement_token1] = ACTIONS(7864), + [sym_stop_statement] = ACTIONS(7864), + [sym_beep_statement] = ACTIONS(7864), + [aux_sym_unload_statement_token1] = ACTIONS(7864), + [aux_sym_def_type_statement_token1] = ACTIONS(7864), + [aux_sym_def_type_statement_token2] = ACTIONS(7864), + [aux_sym_def_type_statement_token3] = ACTIONS(7864), + [aux_sym_def_type_statement_token4] = ACTIONS(7864), + [aux_sym_def_type_statement_token5] = ACTIONS(7864), + [aux_sym_def_type_statement_token6] = ACTIONS(7864), + [aux_sym_def_type_statement_token7] = ACTIONS(7864), + [aux_sym_def_type_statement_token8] = ACTIONS(7864), + [aux_sym_def_type_statement_token9] = ACTIONS(7864), + [aux_sym_def_type_statement_token10] = ACTIONS(7864), + [aux_sym_def_type_statement_token11] = ACTIONS(7864), + [aux_sym_def_type_statement_token12] = ACTIONS(7864), + [aux_sym_def_type_statement_token13] = ACTIONS(7864), + [aux_sym_def_type_statement_token14] = ACTIONS(7864), + [aux_sym_call_statement_token1] = ACTIONS(7864), + [sym__ambiguous_call_statement] = ACTIONS(7864), + [aux_sym_addressof_expression_token1] = ACTIONS(7864), + [aux_sym_type_of_expression_token1] = ACTIONS(7864), + [aux_sym_unary_expression_token1] = ACTIONS(7864), + [sym_string_literal] = ACTIONS(7866), + [sym_number_literal] = ACTIONS(7866), + [aux_sym_boolean_literal_token1] = ACTIONS(7864), + [aux_sym_boolean_literal_token2] = ACTIONS(7864), + [sym_nothing_literal] = ACTIONS(7864), + [sym_null_literal] = ACTIONS(7864), + [sym_empty_literal] = ACTIONS(7864), + [sym_date_literal] = ACTIONS(7866), + [anon_sym_POUND] = ACTIONS(7864), + }, + [STATE(4651)] = { + [sym_fixed_string_length] = STATE(5013), + [sym_array_bounds] = STATE(5119), + [sym_identifier] = ACTIONS(7134), + [sym_newline] = ACTIONS(7136), + [anon_sym_COLON] = ACTIONS(7136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7134), + [aux_sym_frm_property_statement_token1] = ACTIONS(7134), + [anon_sym_EQ] = ACTIONS(7136), + [anon_sym_DOT] = ACTIONS(7134), + [anon_sym_BANG] = ACTIONS(7136), + [aux_sym__attribute_identifier_token1] = ACTIONS(7134), + [aux_sym_option_statement_token3] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7134), + [aux_sym_preprocessor_const_token1] = ACTIONS(7134), + [sym_static_modifier] = ACTIONS(7134), + [sym__dim_keyword] = ACTIONS(7134), + [sym__redim_keyword] = ACTIONS(7134), + [aux_sym_get_accessor_token1] = ACTIONS(7134), + [aux_sym_set_accessor_token1] = ACTIONS(7134), + [anon_sym_COMMA] = ACTIONS(7136), + [aux_sym_const_declaration_token1] = ACTIONS(7134), + [anon_sym_LPAREN] = ACTIONS(10086), + [aux_sym_as_type_clause_token2] = ACTIONS(7134), + [anon_sym_STAR] = ACTIONS(10088), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7134), + [aux_sym_visibility_token1] = ACTIONS(7134), + [aux_sym_visibility_token2] = ACTIONS(7134), + [aux_sym_elseif_fragment_token1] = ACTIONS(7134), + [aux_sym_else_fragment_token1] = ACTIONS(7134), + [aux_sym_select_statement_token1] = ACTIONS(7134), + [aux_sym__for_header_token1] = ACTIONS(7134), + [aux_sym_do_statement_token1] = ACTIONS(7134), + [aux_sym_do_statement_token2] = ACTIONS(7134), + [aux_sym_do_condition_token1] = ACTIONS(7134), + [aux_sym_with_statement_token1] = ACTIONS(7134), + [aux_sym_exit_statement_token1] = ACTIONS(7134), + [sym_end_statement] = ACTIONS(7136), + [aux_sym_on_goto_statement_token1] = ACTIONS(7134), + [aux_sym_on_goto_statement_token2] = ACTIONS(7134), + [aux_sym_on_error_statement_token2] = ACTIONS(7134), + [sym__ambiguous_redim_statement] = ACTIONS(7136), + [aux_sym_erase_statement_token1] = ACTIONS(7134), + [aux_sym_open_statement_token1] = ACTIONS(7134), + [aux_sym_file_mode_token2] = ACTIONS(7134), + [aux_sym_file_access_token2] = ACTIONS(7134), + [aux_sym_file_lock_token2] = ACTIONS(7134), + [aux_sym_print_statement_token1] = ACTIONS(7134), + [anon_sym_PLUS] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7134), + [anon_sym_QMARK] = ACTIONS(7136), + [aux_sym_close_statement_token1] = ACTIONS(7134), + [aux_sym_put_statement_token1] = ACTIONS(7134), + [aux_sym_unlock_statement_token1] = ACTIONS(7134), + [aux_sym_seek_statement_token1] = ACTIONS(7134), + [sym_reset_statement] = ACTIONS(7134), + [aux_sym_raise_event_statement_token1] = ACTIONS(7134), + [sym_stop_statement] = ACTIONS(7134), + [sym_beep_statement] = ACTIONS(7134), + [aux_sym_unload_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token2] = ACTIONS(7134), + [aux_sym_def_type_statement_token3] = ACTIONS(7134), + [aux_sym_def_type_statement_token4] = ACTIONS(7134), + [aux_sym_def_type_statement_token5] = ACTIONS(7134), + [aux_sym_def_type_statement_token6] = ACTIONS(7134), + [aux_sym_def_type_statement_token7] = ACTIONS(7134), + [aux_sym_def_type_statement_token8] = ACTIONS(7134), + [aux_sym_def_type_statement_token9] = ACTIONS(7134), + [aux_sym_def_type_statement_token10] = ACTIONS(7134), + [aux_sym_def_type_statement_token11] = ACTIONS(7134), + [aux_sym_def_type_statement_token12] = ACTIONS(7134), + [aux_sym_def_type_statement_token13] = ACTIONS(7134), + [aux_sym_def_type_statement_token14] = ACTIONS(7134), + [aux_sym_call_statement_token1] = ACTIONS(7134), + [sym__ambiguous_call_statement] = ACTIONS(7134), + [aux_sym_addressof_expression_token1] = ACTIONS(7134), + [aux_sym_type_of_expression_token1] = ACTIONS(7134), + [aux_sym_unary_expression_token1] = ACTIONS(7134), + [sym_string_literal] = ACTIONS(7136), + [sym_number_literal] = ACTIONS(7136), + [aux_sym_boolean_literal_token1] = ACTIONS(7134), + [aux_sym_boolean_literal_token2] = ACTIONS(7134), + [sym_nothing_literal] = ACTIONS(7134), + [sym_null_literal] = ACTIONS(7134), + [sym_empty_literal] = ACTIONS(7134), + [sym_date_literal] = ACTIONS(7136), + [anon_sym_POUND] = ACTIONS(7134), + }, + [STATE(4652)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym_select_statement_token2] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10072), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10074), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(10078), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(10090), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4653)] = { + [sym_initializer] = STATE(5846), + [sym_as_type_clause] = STATE(4922), + [sym_identifier] = ACTIONS(7287), + [sym_newline] = ACTIONS(7289), + [anon_sym_COLON] = ACTIONS(7289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7287), + [aux_sym_frm_property_statement_token1] = ACTIONS(7287), + [anon_sym_EQ] = ACTIONS(10017), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_BANG] = ACTIONS(7289), + [aux_sym__attribute_identifier_token1] = ACTIONS(7287), + [aux_sym_option_statement_token3] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7287), + [aux_sym_preprocessor_const_token1] = ACTIONS(7287), + [sym_static_modifier] = ACTIONS(7287), + [sym__dim_keyword] = ACTIONS(7287), + [sym__redim_keyword] = ACTIONS(7287), + [aux_sym_get_accessor_token1] = ACTIONS(7287), + [aux_sym_set_accessor_token1] = ACTIONS(7287), + [anon_sym_COMMA] = ACTIONS(7289), + [aux_sym_const_declaration_token1] = ACTIONS(7287), + [anon_sym_LPAREN] = ACTIONS(7289), + [aux_sym_as_type_clause_token1] = ACTIONS(10021), + [aux_sym_as_type_clause_token2] = ACTIONS(7287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7287), + [aux_sym_visibility_token1] = ACTIONS(7287), + [aux_sym_visibility_token2] = ACTIONS(7287), + [aux_sym_elseif_fragment_token1] = ACTIONS(7287), + [aux_sym_else_fragment_token1] = ACTIONS(7287), + [aux_sym_select_statement_token1] = ACTIONS(7287), + [aux_sym__for_header_token1] = ACTIONS(7287), + [aux_sym_do_statement_token1] = ACTIONS(7287), + [aux_sym_do_statement_token2] = ACTIONS(7287), + [aux_sym_do_condition_token1] = ACTIONS(7287), + [aux_sym_with_statement_token1] = ACTIONS(7287), + [aux_sym_exit_statement_token1] = ACTIONS(7287), + [sym_end_statement] = ACTIONS(7289), + [aux_sym_on_goto_statement_token1] = ACTIONS(7287), + [aux_sym_on_goto_statement_token2] = ACTIONS(7287), + [aux_sym_on_error_statement_token2] = ACTIONS(7287), + [sym__ambiguous_redim_statement] = ACTIONS(7289), + [aux_sym_erase_statement_token1] = ACTIONS(7287), + [aux_sym_open_statement_token1] = ACTIONS(7287), + [aux_sym_file_mode_token2] = ACTIONS(7287), + [aux_sym_file_access_token2] = ACTIONS(7287), + [aux_sym_file_lock_token2] = ACTIONS(7287), + [aux_sym_print_statement_token1] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_QMARK] = ACTIONS(7289), + [aux_sym_close_statement_token1] = ACTIONS(7287), + [aux_sym_put_statement_token1] = ACTIONS(7287), + [aux_sym_unlock_statement_token1] = ACTIONS(7287), + [aux_sym_seek_statement_token1] = ACTIONS(7287), + [sym_reset_statement] = ACTIONS(7287), + [aux_sym_raise_event_statement_token1] = ACTIONS(7287), + [sym_stop_statement] = ACTIONS(7287), + [sym_beep_statement] = ACTIONS(7287), + [aux_sym_unload_statement_token1] = ACTIONS(7287), + [aux_sym_def_type_statement_token1] = ACTIONS(7287), + [aux_sym_def_type_statement_token2] = ACTIONS(7287), + [aux_sym_def_type_statement_token3] = ACTIONS(7287), + [aux_sym_def_type_statement_token4] = ACTIONS(7287), + [aux_sym_def_type_statement_token5] = ACTIONS(7287), + [aux_sym_def_type_statement_token6] = ACTIONS(7287), + [aux_sym_def_type_statement_token7] = ACTIONS(7287), + [aux_sym_def_type_statement_token8] = ACTIONS(7287), + [aux_sym_def_type_statement_token9] = ACTIONS(7287), + [aux_sym_def_type_statement_token10] = ACTIONS(7287), + [aux_sym_def_type_statement_token11] = ACTIONS(7287), + [aux_sym_def_type_statement_token12] = ACTIONS(7287), + [aux_sym_def_type_statement_token13] = ACTIONS(7287), + [aux_sym_def_type_statement_token14] = ACTIONS(7287), + [aux_sym_call_statement_token1] = ACTIONS(7287), + [sym__ambiguous_call_statement] = ACTIONS(7287), + [aux_sym_addressof_expression_token1] = ACTIONS(7287), + [aux_sym_type_of_expression_token1] = ACTIONS(7287), + [aux_sym_unary_expression_token1] = ACTIONS(7287), + [sym_string_literal] = ACTIONS(7289), + [sym_number_literal] = ACTIONS(7289), + [aux_sym_boolean_literal_token1] = ACTIONS(7287), + [aux_sym_boolean_literal_token2] = ACTIONS(7287), + [sym_nothing_literal] = ACTIONS(7287), + [sym_null_literal] = ACTIONS(7287), + [sym_empty_literal] = ACTIONS(7287), + [sym_date_literal] = ACTIONS(7289), + [anon_sym_POUND] = ACTIONS(7287), + }, + [STATE(4654)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(4655)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10042), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10044), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4656)] = { + [sym_fixed_string_length] = STATE(4989), + [sym_array_bounds] = STATE(5367), + [sym_identifier] = ACTIONS(7230), + [sym_newline] = ACTIONS(7232), + [anon_sym_COLON] = ACTIONS(7232), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7230), + [aux_sym_frm_property_statement_token1] = ACTIONS(7230), + [anon_sym_EQ] = ACTIONS(7232), + [anon_sym_DOT] = ACTIONS(7230), + [anon_sym_BANG] = ACTIONS(7232), + [aux_sym__attribute_identifier_token1] = ACTIONS(7230), + [aux_sym_option_statement_token3] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7230), + [aux_sym_preprocessor_const_token1] = ACTIONS(7230), + [sym_static_modifier] = ACTIONS(7230), + [sym__dim_keyword] = ACTIONS(7230), + [sym__redim_keyword] = ACTIONS(7230), + [aux_sym_get_accessor_token1] = ACTIONS(7230), + [aux_sym_set_accessor_token1] = ACTIONS(7230), + [anon_sym_COMMA] = ACTIONS(7232), + [aux_sym_const_declaration_token1] = ACTIONS(7230), + [anon_sym_LPAREN] = ACTIONS(10092), + [aux_sym_as_type_clause_token2] = ACTIONS(7230), + [anon_sym_STAR] = ACTIONS(10094), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7230), + [aux_sym_visibility_token1] = ACTIONS(7230), + [aux_sym_visibility_token2] = ACTIONS(7230), + [aux_sym_elseif_fragment_token1] = ACTIONS(7230), + [aux_sym_else_fragment_token1] = ACTIONS(7230), + [aux_sym_select_statement_token1] = ACTIONS(7230), + [aux_sym_select_statement_token2] = ACTIONS(7230), + [aux_sym__for_header_token1] = ACTIONS(7230), + [aux_sym_do_statement_token1] = ACTIONS(7230), + [aux_sym_do_condition_token1] = ACTIONS(7230), + [aux_sym_with_statement_token1] = ACTIONS(7230), + [aux_sym_exit_statement_token1] = ACTIONS(7230), + [sym_end_statement] = ACTIONS(7232), + [aux_sym_on_goto_statement_token1] = ACTIONS(7230), + [aux_sym_on_goto_statement_token2] = ACTIONS(7230), + [aux_sym_on_error_statement_token2] = ACTIONS(7230), + [sym__ambiguous_redim_statement] = ACTIONS(7232), + [aux_sym_erase_statement_token1] = ACTIONS(7230), + [aux_sym_open_statement_token1] = ACTIONS(7230), + [aux_sym_file_mode_token2] = ACTIONS(7230), + [aux_sym_file_access_token2] = ACTIONS(7230), + [aux_sym_file_lock_token2] = ACTIONS(7230), + [aux_sym_print_statement_token1] = ACTIONS(7230), + [anon_sym_PLUS] = ACTIONS(7232), + [anon_sym_DASH] = ACTIONS(7230), + [anon_sym_QMARK] = ACTIONS(7232), + [aux_sym_close_statement_token1] = ACTIONS(7230), + [aux_sym_put_statement_token1] = ACTIONS(7230), + [aux_sym_unlock_statement_token1] = ACTIONS(7230), + [aux_sym_seek_statement_token1] = ACTIONS(7230), + [sym_reset_statement] = ACTIONS(7230), + [aux_sym_raise_event_statement_token1] = ACTIONS(7230), + [sym_stop_statement] = ACTIONS(7230), + [sym_beep_statement] = ACTIONS(7230), + [aux_sym_unload_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token2] = ACTIONS(7230), + [aux_sym_def_type_statement_token3] = ACTIONS(7230), + [aux_sym_def_type_statement_token4] = ACTIONS(7230), + [aux_sym_def_type_statement_token5] = ACTIONS(7230), + [aux_sym_def_type_statement_token6] = ACTIONS(7230), + [aux_sym_def_type_statement_token7] = ACTIONS(7230), + [aux_sym_def_type_statement_token8] = ACTIONS(7230), + [aux_sym_def_type_statement_token9] = ACTIONS(7230), + [aux_sym_def_type_statement_token10] = ACTIONS(7230), + [aux_sym_def_type_statement_token11] = ACTIONS(7230), + [aux_sym_def_type_statement_token12] = ACTIONS(7230), + [aux_sym_def_type_statement_token13] = ACTIONS(7230), + [aux_sym_def_type_statement_token14] = ACTIONS(7230), + [aux_sym_call_statement_token1] = ACTIONS(7230), + [sym__ambiguous_call_statement] = ACTIONS(7230), + [aux_sym_addressof_expression_token1] = ACTIONS(7230), + [aux_sym_type_of_expression_token1] = ACTIONS(7230), + [aux_sym_unary_expression_token1] = ACTIONS(7230), + [sym_string_literal] = ACTIONS(7232), + [sym_number_literal] = ACTIONS(7232), + [aux_sym_boolean_literal_token1] = ACTIONS(7230), + [aux_sym_boolean_literal_token2] = ACTIONS(7230), + [sym_nothing_literal] = ACTIONS(7230), + [sym_null_literal] = ACTIONS(7230), + [sym_empty_literal] = ACTIONS(7230), + [sym_date_literal] = ACTIONS(7232), + [anon_sym_POUND] = ACTIONS(7230), + }, + [STATE(4657)] = { + [sym_initializer] = STATE(6021), + [sym_as_type_clause] = STATE(4932), + [sym_identifier] = ACTIONS(7200), + [sym_newline] = ACTIONS(7202), + [anon_sym_COLON] = ACTIONS(7202), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7200), + [aux_sym_frm_property_statement_token1] = ACTIONS(7200), + [anon_sym_EQ] = ACTIONS(9997), + [anon_sym_DOT] = ACTIONS(7200), + [anon_sym_BANG] = ACTIONS(7202), + [aux_sym__attribute_identifier_token1] = ACTIONS(7200), + [aux_sym_option_statement_token3] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7200), + [aux_sym_preprocessor_const_token1] = ACTIONS(7200), + [sym_static_modifier] = ACTIONS(7200), + [sym__dim_keyword] = ACTIONS(7200), + [sym__redim_keyword] = ACTIONS(7200), + [aux_sym_get_accessor_token1] = ACTIONS(7200), + [aux_sym_set_accessor_token1] = ACTIONS(7200), + [anon_sym_COMMA] = ACTIONS(7202), + [aux_sym_const_declaration_token1] = ACTIONS(7200), + [anon_sym_LPAREN] = ACTIONS(7202), + [aux_sym_as_type_clause_token1] = ACTIONS(10001), + [aux_sym_as_type_clause_token2] = ACTIONS(7200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7200), + [aux_sym_visibility_token1] = ACTIONS(7200), + [aux_sym_visibility_token2] = ACTIONS(7200), + [aux_sym_elseif_fragment_token1] = ACTIONS(7200), + [aux_sym_else_fragment_token1] = ACTIONS(7200), + [aux_sym_select_statement_token1] = ACTIONS(7200), + [aux_sym__for_header_token1] = ACTIONS(7200), + [aux_sym_do_statement_token1] = ACTIONS(7200), + [aux_sym_do_condition_token1] = ACTIONS(7200), + [aux_sym_while_statement_token1] = ACTIONS(7200), + [aux_sym_with_statement_token1] = ACTIONS(7200), + [aux_sym_exit_statement_token1] = ACTIONS(7200), + [sym_end_statement] = ACTIONS(7202), + [aux_sym_on_goto_statement_token1] = ACTIONS(7200), + [aux_sym_on_goto_statement_token2] = ACTIONS(7200), + [aux_sym_on_error_statement_token2] = ACTIONS(7200), + [sym__ambiguous_redim_statement] = ACTIONS(7202), + [aux_sym_erase_statement_token1] = ACTIONS(7200), + [aux_sym_open_statement_token1] = ACTIONS(7200), + [aux_sym_file_mode_token2] = ACTIONS(7200), + [aux_sym_file_access_token2] = ACTIONS(7200), + [aux_sym_file_lock_token2] = ACTIONS(7200), + [aux_sym_print_statement_token1] = ACTIONS(7200), + [anon_sym_PLUS] = ACTIONS(7202), + [anon_sym_DASH] = ACTIONS(7200), + [anon_sym_QMARK] = ACTIONS(7202), + [aux_sym_close_statement_token1] = ACTIONS(7200), + [aux_sym_put_statement_token1] = ACTIONS(7200), + [aux_sym_unlock_statement_token1] = ACTIONS(7200), + [aux_sym_seek_statement_token1] = ACTIONS(7200), + [sym_reset_statement] = ACTIONS(7200), + [aux_sym_raise_event_statement_token1] = ACTIONS(7200), + [sym_stop_statement] = ACTIONS(7200), + [sym_beep_statement] = ACTIONS(7200), + [aux_sym_unload_statement_token1] = ACTIONS(7200), + [aux_sym_def_type_statement_token1] = ACTIONS(7200), + [aux_sym_def_type_statement_token2] = ACTIONS(7200), + [aux_sym_def_type_statement_token3] = ACTIONS(7200), + [aux_sym_def_type_statement_token4] = ACTIONS(7200), + [aux_sym_def_type_statement_token5] = ACTIONS(7200), + [aux_sym_def_type_statement_token6] = ACTIONS(7200), + [aux_sym_def_type_statement_token7] = ACTIONS(7200), + [aux_sym_def_type_statement_token8] = ACTIONS(7200), + [aux_sym_def_type_statement_token9] = ACTIONS(7200), + [aux_sym_def_type_statement_token10] = ACTIONS(7200), + [aux_sym_def_type_statement_token11] = ACTIONS(7200), + [aux_sym_def_type_statement_token12] = ACTIONS(7200), + [aux_sym_def_type_statement_token13] = ACTIONS(7200), + [aux_sym_def_type_statement_token14] = ACTIONS(7200), + [aux_sym_call_statement_token1] = ACTIONS(7200), + [sym__ambiguous_call_statement] = ACTIONS(7200), + [aux_sym_addressof_expression_token1] = ACTIONS(7200), + [aux_sym_type_of_expression_token1] = ACTIONS(7200), + [aux_sym_unary_expression_token1] = ACTIONS(7200), + [sym_string_literal] = ACTIONS(7202), + [sym_number_literal] = ACTIONS(7202), + [aux_sym_boolean_literal_token1] = ACTIONS(7200), + [aux_sym_boolean_literal_token2] = ACTIONS(7200), + [sym_nothing_literal] = ACTIONS(7200), + [sym_null_literal] = ACTIONS(7200), + [sym_empty_literal] = ACTIONS(7200), + [sym_date_literal] = ACTIONS(7202), + [anon_sym_POUND] = ACTIONS(7200), + }, + [STATE(4658)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(4659)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym_select_statement_token2] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10072), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4660)] = { + [sym_fixed_string_length] = STATE(5053), + [sym_array_bounds] = STATE(5141), + [sym_identifier] = ACTIONS(7230), + [sym_newline] = ACTIONS(7232), + [anon_sym_COLON] = ACTIONS(7232), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7230), + [aux_sym_frm_property_statement_token1] = ACTIONS(7230), + [anon_sym_EQ] = ACTIONS(7232), + [anon_sym_DOT] = ACTIONS(7230), + [anon_sym_BANG] = ACTIONS(7232), + [aux_sym__attribute_identifier_token1] = ACTIONS(7230), + [aux_sym_option_statement_token3] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7230), + [aux_sym_preprocessor_const_token1] = ACTIONS(7230), + [sym_static_modifier] = ACTIONS(7230), + [sym__dim_keyword] = ACTIONS(7230), + [sym__redim_keyword] = ACTIONS(7230), + [aux_sym_get_accessor_token1] = ACTIONS(7230), + [aux_sym_set_accessor_token1] = ACTIONS(7230), + [anon_sym_COMMA] = ACTIONS(7232), + [aux_sym_const_declaration_token1] = ACTIONS(7230), + [anon_sym_LPAREN] = ACTIONS(10086), + [aux_sym_as_type_clause_token2] = ACTIONS(7230), + [anon_sym_STAR] = ACTIONS(10088), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7230), + [aux_sym_visibility_token1] = ACTIONS(7230), + [aux_sym_visibility_token2] = ACTIONS(7230), + [aux_sym_elseif_fragment_token1] = ACTIONS(7230), + [aux_sym_else_fragment_token1] = ACTIONS(7230), + [aux_sym_select_statement_token1] = ACTIONS(7230), + [aux_sym__for_header_token1] = ACTIONS(7230), + [aux_sym_do_statement_token1] = ACTIONS(7230), + [aux_sym_do_statement_token2] = ACTIONS(7230), + [aux_sym_do_condition_token1] = ACTIONS(7230), + [aux_sym_with_statement_token1] = ACTIONS(7230), + [aux_sym_exit_statement_token1] = ACTIONS(7230), + [sym_end_statement] = ACTIONS(7232), + [aux_sym_on_goto_statement_token1] = ACTIONS(7230), + [aux_sym_on_goto_statement_token2] = ACTIONS(7230), + [aux_sym_on_error_statement_token2] = ACTIONS(7230), + [sym__ambiguous_redim_statement] = ACTIONS(7232), + [aux_sym_erase_statement_token1] = ACTIONS(7230), + [aux_sym_open_statement_token1] = ACTIONS(7230), + [aux_sym_file_mode_token2] = ACTIONS(7230), + [aux_sym_file_access_token2] = ACTIONS(7230), + [aux_sym_file_lock_token2] = ACTIONS(7230), + [aux_sym_print_statement_token1] = ACTIONS(7230), + [anon_sym_PLUS] = ACTIONS(7232), + [anon_sym_DASH] = ACTIONS(7230), + [anon_sym_QMARK] = ACTIONS(7232), + [aux_sym_close_statement_token1] = ACTIONS(7230), + [aux_sym_put_statement_token1] = ACTIONS(7230), + [aux_sym_unlock_statement_token1] = ACTIONS(7230), + [aux_sym_seek_statement_token1] = ACTIONS(7230), + [sym_reset_statement] = ACTIONS(7230), + [aux_sym_raise_event_statement_token1] = ACTIONS(7230), + [sym_stop_statement] = ACTIONS(7230), + [sym_beep_statement] = ACTIONS(7230), + [aux_sym_unload_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token2] = ACTIONS(7230), + [aux_sym_def_type_statement_token3] = ACTIONS(7230), + [aux_sym_def_type_statement_token4] = ACTIONS(7230), + [aux_sym_def_type_statement_token5] = ACTIONS(7230), + [aux_sym_def_type_statement_token6] = ACTIONS(7230), + [aux_sym_def_type_statement_token7] = ACTIONS(7230), + [aux_sym_def_type_statement_token8] = ACTIONS(7230), + [aux_sym_def_type_statement_token9] = ACTIONS(7230), + [aux_sym_def_type_statement_token10] = ACTIONS(7230), + [aux_sym_def_type_statement_token11] = ACTIONS(7230), + [aux_sym_def_type_statement_token12] = ACTIONS(7230), + [aux_sym_def_type_statement_token13] = ACTIONS(7230), + [aux_sym_def_type_statement_token14] = ACTIONS(7230), + [aux_sym_call_statement_token1] = ACTIONS(7230), + [sym__ambiguous_call_statement] = ACTIONS(7230), + [aux_sym_addressof_expression_token1] = ACTIONS(7230), + [aux_sym_type_of_expression_token1] = ACTIONS(7230), + [aux_sym_unary_expression_token1] = ACTIONS(7230), + [sym_string_literal] = ACTIONS(7232), + [sym_number_literal] = ACTIONS(7232), + [aux_sym_boolean_literal_token1] = ACTIONS(7230), + [aux_sym_boolean_literal_token2] = ACTIONS(7230), + [sym_nothing_literal] = ACTIONS(7230), + [sym_null_literal] = ACTIONS(7230), + [sym_empty_literal] = ACTIONS(7230), + [sym_date_literal] = ACTIONS(7232), + [anon_sym_POUND] = ACTIONS(7230), + }, + [STATE(4661)] = { + [sym_fixed_string_length] = STATE(4984), + [sym_array_bounds] = STATE(5363), + [sym_identifier] = ACTIONS(7134), + [sym_newline] = ACTIONS(7136), + [anon_sym_COLON] = ACTIONS(7136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7134), + [aux_sym_frm_property_statement_token1] = ACTIONS(7134), + [anon_sym_EQ] = ACTIONS(7136), + [anon_sym_DOT] = ACTIONS(7134), + [anon_sym_BANG] = ACTIONS(7136), + [aux_sym__attribute_identifier_token1] = ACTIONS(7134), + [aux_sym_option_statement_token3] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7134), + [aux_sym_preprocessor_const_token1] = ACTIONS(7134), + [sym_static_modifier] = ACTIONS(7134), + [sym__dim_keyword] = ACTIONS(7134), + [sym__redim_keyword] = ACTIONS(7134), + [aux_sym_get_accessor_token1] = ACTIONS(7134), + [aux_sym_set_accessor_token1] = ACTIONS(7134), + [anon_sym_COMMA] = ACTIONS(7136), + [aux_sym_const_declaration_token1] = ACTIONS(7134), + [anon_sym_LPAREN] = ACTIONS(10092), + [aux_sym_as_type_clause_token2] = ACTIONS(7134), + [anon_sym_STAR] = ACTIONS(10094), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7134), + [aux_sym_visibility_token1] = ACTIONS(7134), + [aux_sym_visibility_token2] = ACTIONS(7134), + [aux_sym_elseif_fragment_token1] = ACTIONS(7134), + [aux_sym_else_fragment_token1] = ACTIONS(7134), + [aux_sym_select_statement_token1] = ACTIONS(7134), + [aux_sym_select_statement_token2] = ACTIONS(7134), + [aux_sym__for_header_token1] = ACTIONS(7134), + [aux_sym_do_statement_token1] = ACTIONS(7134), + [aux_sym_do_condition_token1] = ACTIONS(7134), + [aux_sym_with_statement_token1] = ACTIONS(7134), + [aux_sym_exit_statement_token1] = ACTIONS(7134), + [sym_end_statement] = ACTIONS(7136), + [aux_sym_on_goto_statement_token1] = ACTIONS(7134), + [aux_sym_on_goto_statement_token2] = ACTIONS(7134), + [aux_sym_on_error_statement_token2] = ACTIONS(7134), + [sym__ambiguous_redim_statement] = ACTIONS(7136), + [aux_sym_erase_statement_token1] = ACTIONS(7134), + [aux_sym_open_statement_token1] = ACTIONS(7134), + [aux_sym_file_mode_token2] = ACTIONS(7134), + [aux_sym_file_access_token2] = ACTIONS(7134), + [aux_sym_file_lock_token2] = ACTIONS(7134), + [aux_sym_print_statement_token1] = ACTIONS(7134), + [anon_sym_PLUS] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7134), + [anon_sym_QMARK] = ACTIONS(7136), + [aux_sym_close_statement_token1] = ACTIONS(7134), + [aux_sym_put_statement_token1] = ACTIONS(7134), + [aux_sym_unlock_statement_token1] = ACTIONS(7134), + [aux_sym_seek_statement_token1] = ACTIONS(7134), + [sym_reset_statement] = ACTIONS(7134), + [aux_sym_raise_event_statement_token1] = ACTIONS(7134), + [sym_stop_statement] = ACTIONS(7134), + [sym_beep_statement] = ACTIONS(7134), + [aux_sym_unload_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token2] = ACTIONS(7134), + [aux_sym_def_type_statement_token3] = ACTIONS(7134), + [aux_sym_def_type_statement_token4] = ACTIONS(7134), + [aux_sym_def_type_statement_token5] = ACTIONS(7134), + [aux_sym_def_type_statement_token6] = ACTIONS(7134), + [aux_sym_def_type_statement_token7] = ACTIONS(7134), + [aux_sym_def_type_statement_token8] = ACTIONS(7134), + [aux_sym_def_type_statement_token9] = ACTIONS(7134), + [aux_sym_def_type_statement_token10] = ACTIONS(7134), + [aux_sym_def_type_statement_token11] = ACTIONS(7134), + [aux_sym_def_type_statement_token12] = ACTIONS(7134), + [aux_sym_def_type_statement_token13] = ACTIONS(7134), + [aux_sym_def_type_statement_token14] = ACTIONS(7134), + [aux_sym_call_statement_token1] = ACTIONS(7134), + [sym__ambiguous_call_statement] = ACTIONS(7134), + [aux_sym_addressof_expression_token1] = ACTIONS(7134), + [aux_sym_type_of_expression_token1] = ACTIONS(7134), + [aux_sym_unary_expression_token1] = ACTIONS(7134), + [sym_string_literal] = ACTIONS(7136), + [sym_number_literal] = ACTIONS(7136), + [aux_sym_boolean_literal_token1] = ACTIONS(7134), + [aux_sym_boolean_literal_token2] = ACTIONS(7134), + [sym_nothing_literal] = ACTIONS(7134), + [sym_null_literal] = ACTIONS(7134), + [sym_empty_literal] = ACTIONS(7134), + [sym_date_literal] = ACTIONS(7136), + [anon_sym_POUND] = ACTIONS(7134), + }, + [STATE(4662)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4663)] = { + [sym_argument_list] = STATE(4790), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(10096), + [anon_sym_BANG] = ACTIONS(10098), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10082), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(4664)] = { + [sym_identifier] = ACTIONS(7234), + [sym_newline] = ACTIONS(7236), + [anon_sym_COLON] = ACTIONS(7236), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7234), + [aux_sym_frm_property_statement_token1] = ACTIONS(7234), + [anon_sym_DOT] = ACTIONS(7234), + [anon_sym_BANG] = ACTIONS(7236), + [aux_sym__attribute_identifier_token1] = ACTIONS(7234), + [aux_sym_option_statement_token3] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7234), + [aux_sym_preprocessor_const_token1] = ACTIONS(7234), + [sym_static_modifier] = ACTIONS(7234), + [sym__dim_keyword] = ACTIONS(7234), + [sym__redim_keyword] = ACTIONS(7234), + [aux_sym_get_accessor_token1] = ACTIONS(7234), + [aux_sym_set_accessor_token1] = ACTIONS(7234), + [aux_sym_const_declaration_token1] = ACTIONS(7234), + [anon_sym_LPAREN] = ACTIONS(7236), + [aux_sym_as_type_clause_token2] = ACTIONS(7234), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7234), + [aux_sym_visibility_token1] = ACTIONS(7234), + [aux_sym_visibility_token2] = ACTIONS(7234), + [aux_sym_elseif_fragment_token1] = ACTIONS(7234), + [aux_sym_else_fragment_token1] = ACTIONS(7234), + [aux_sym_select_statement_token1] = ACTIONS(7234), + [aux_sym__for_header_token1] = ACTIONS(7234), + [aux_sym_do_statement_token1] = ACTIONS(7234), + [aux_sym_do_statement_token2] = ACTIONS(7234), + [aux_sym_do_condition_token1] = ACTIONS(7234), + [aux_sym_with_statement_token1] = ACTIONS(7234), + [aux_sym_exit_statement_token1] = ACTIONS(7234), + [sym_end_statement] = ACTIONS(7236), + [aux_sym_on_goto_statement_token1] = ACTIONS(7234), + [aux_sym_on_goto_statement_token2] = ACTIONS(7234), + [aux_sym_on_error_statement_token2] = ACTIONS(7234), + [sym__ambiguous_redim_statement] = ACTIONS(7236), + [aux_sym_erase_statement_token1] = ACTIONS(7234), + [aux_sym_open_statement_token1] = ACTIONS(7234), + [aux_sym_file_mode_token2] = ACTIONS(7234), + [aux_sym_file_access_token2] = ACTIONS(7234), + [aux_sym_file_lock_token2] = ACTIONS(7234), + [aux_sym_print_statement_token1] = ACTIONS(7234), + [anon_sym_PLUS] = ACTIONS(7236), + [anon_sym_DASH] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7234), + [anon_sym_QMARK] = ACTIONS(7236), + [aux_sym_close_statement_token1] = ACTIONS(7234), + [aux_sym_put_statement_token1] = ACTIONS(7234), + [aux_sym_unlock_statement_token1] = ACTIONS(7234), + [aux_sym_seek_statement_token1] = ACTIONS(7234), + [sym_reset_statement] = ACTIONS(7234), + [aux_sym_raise_event_statement_token1] = ACTIONS(7234), + [sym_stop_statement] = ACTIONS(7234), + [sym_beep_statement] = ACTIONS(7234), + [aux_sym_unload_statement_token1] = ACTIONS(7234), + [aux_sym_def_type_statement_token1] = ACTIONS(7234), + [aux_sym_def_type_statement_token2] = ACTIONS(7234), + [aux_sym_def_type_statement_token3] = ACTIONS(7234), + [aux_sym_def_type_statement_token4] = ACTIONS(7234), + [aux_sym_def_type_statement_token5] = ACTIONS(7234), + [aux_sym_def_type_statement_token6] = ACTIONS(7234), + [aux_sym_def_type_statement_token7] = ACTIONS(7234), + [aux_sym_def_type_statement_token8] = ACTIONS(7234), + [aux_sym_def_type_statement_token9] = ACTIONS(7234), + [aux_sym_def_type_statement_token10] = ACTIONS(7234), + [aux_sym_def_type_statement_token11] = ACTIONS(7234), + [aux_sym_def_type_statement_token12] = ACTIONS(7234), + [aux_sym_def_type_statement_token13] = ACTIONS(7234), + [aux_sym_def_type_statement_token14] = ACTIONS(7234), + [aux_sym_call_statement_token1] = ACTIONS(7234), + [sym__ambiguous_call_statement] = ACTIONS(7234), + [aux_sym_addressof_expression_token1] = ACTIONS(7234), + [aux_sym_type_of_expression_token1] = ACTIONS(7234), + [aux_sym_unary_expression_token1] = ACTIONS(7234), + [sym_string_literal] = ACTIONS(7236), + [sym_number_literal] = ACTIONS(7236), + [aux_sym_boolean_literal_token1] = ACTIONS(7234), + [aux_sym_boolean_literal_token2] = ACTIONS(7234), + [sym_nothing_literal] = ACTIONS(7234), + [sym_null_literal] = ACTIONS(7234), + [sym_empty_literal] = ACTIONS(7234), + [sym_date_literal] = ACTIONS(7236), + [anon_sym_POUND] = ACTIONS(7234), + }, + [STATE(4665)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(4666), + [sym_identifier] = ACTIONS(8066), + [sym_newline] = ACTIONS(8068), + [anon_sym_COLON] = ACTIONS(8068), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8066), + [aux_sym_frm_property_statement_token1] = ACTIONS(8066), + [anon_sym_DOT] = ACTIONS(8066), + [anon_sym_BANG] = ACTIONS(8068), + [aux_sym__attribute_identifier_token1] = ACTIONS(8066), + [aux_sym_option_statement_token3] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8066), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8066), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8066), + [aux_sym_preprocessor_const_token1] = ACTIONS(8066), + [sym_static_modifier] = ACTIONS(8066), + [sym__dim_keyword] = ACTIONS(8066), + [sym__redim_keyword] = ACTIONS(8066), + [aux_sym_get_accessor_token1] = ACTIONS(8066), + [aux_sym_set_accessor_token1] = ACTIONS(8066), + [anon_sym_COMMA] = ACTIONS(6883), + [aux_sym_const_declaration_token1] = ACTIONS(8066), + [anon_sym_LPAREN] = ACTIONS(8068), + [aux_sym_as_type_clause_token2] = ACTIONS(8066), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8066), + [aux_sym_visibility_token1] = ACTIONS(8066), + [aux_sym_visibility_token2] = ACTIONS(8066), + [aux_sym_elseif_fragment_token1] = ACTIONS(8066), + [aux_sym_else_fragment_token1] = ACTIONS(8066), + [aux_sym_select_statement_token1] = ACTIONS(8066), + [aux_sym__for_header_token1] = ACTIONS(8066), + [aux_sym_do_statement_token1] = ACTIONS(8066), + [aux_sym_do_condition_token1] = ACTIONS(8066), + [aux_sym_with_statement_token1] = ACTIONS(8066), + [aux_sym_exit_statement_token1] = ACTIONS(8066), + [sym_end_statement] = ACTIONS(8068), + [aux_sym_on_goto_statement_token1] = ACTIONS(8066), + [aux_sym_on_goto_statement_token2] = ACTIONS(8066), + [aux_sym_on_error_statement_token2] = ACTIONS(8066), + [sym__ambiguous_redim_statement] = ACTIONS(8068), + [aux_sym_erase_statement_token1] = ACTIONS(8066), + [aux_sym_open_statement_token1] = ACTIONS(8066), + [aux_sym_file_mode_token2] = ACTIONS(8066), + [aux_sym_file_access_token2] = ACTIONS(8066), + [aux_sym_file_lock_token2] = ACTIONS(8066), + [aux_sym_print_statement_token1] = ACTIONS(8066), + [anon_sym_PLUS] = ACTIONS(8068), + [anon_sym_DASH] = ACTIONS(8066), + [anon_sym_SEMI] = ACTIONS(6883), + [anon_sym_QMARK] = ACTIONS(8068), + [aux_sym_close_statement_token1] = ACTIONS(8066), + [aux_sym_put_statement_token1] = ACTIONS(8066), + [aux_sym_unlock_statement_token1] = ACTIONS(8066), + [aux_sym_seek_statement_token1] = ACTIONS(8066), + [sym_reset_statement] = ACTIONS(8066), + [aux_sym_raise_event_statement_token1] = ACTIONS(8066), + [sym_stop_statement] = ACTIONS(8066), + [sym_beep_statement] = ACTIONS(8066), + [aux_sym_unload_statement_token1] = ACTIONS(8066), + [aux_sym_def_type_statement_token1] = ACTIONS(8066), + [aux_sym_def_type_statement_token2] = ACTIONS(8066), + [aux_sym_def_type_statement_token3] = ACTIONS(8066), + [aux_sym_def_type_statement_token4] = ACTIONS(8066), + [aux_sym_def_type_statement_token5] = ACTIONS(8066), + [aux_sym_def_type_statement_token6] = ACTIONS(8066), + [aux_sym_def_type_statement_token7] = ACTIONS(8066), + [aux_sym_def_type_statement_token8] = ACTIONS(8066), + [aux_sym_def_type_statement_token9] = ACTIONS(8066), + [aux_sym_def_type_statement_token10] = ACTIONS(8066), + [aux_sym_def_type_statement_token11] = ACTIONS(8066), + [aux_sym_def_type_statement_token12] = ACTIONS(8066), + [aux_sym_def_type_statement_token13] = ACTIONS(8066), + [aux_sym_def_type_statement_token14] = ACTIONS(8066), + [aux_sym_call_statement_token1] = ACTIONS(8066), + [sym__ambiguous_call_statement] = ACTIONS(8066), + [aux_sym_addressof_expression_token1] = ACTIONS(8066), + [aux_sym_type_of_expression_token1] = ACTIONS(8066), + [aux_sym_unary_expression_token1] = ACTIONS(8066), + [sym_string_literal] = ACTIONS(8068), + [sym_number_literal] = ACTIONS(8068), + [aux_sym_boolean_literal_token1] = ACTIONS(8066), + [aux_sym_boolean_literal_token2] = ACTIONS(8066), + [sym_nothing_literal] = ACTIONS(8066), + [sym_null_literal] = ACTIONS(8066), + [sym_empty_literal] = ACTIONS(8066), + [sym_date_literal] = ACTIONS(8068), + [anon_sym_POUND] = ACTIONS(8066), + }, + [STATE(4666)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(4666), + [sym_identifier] = ACTIONS(5841), + [sym_newline] = ACTIONS(5843), + [anon_sym_COLON] = ACTIONS(5843), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5841), + [aux_sym_frm_property_statement_token1] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5843), + [aux_sym__attribute_identifier_token1] = ACTIONS(5841), + [aux_sym_option_statement_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5841), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5841), + [aux_sym_preprocessor_const_token1] = ACTIONS(5841), + [sym_static_modifier] = ACTIONS(5841), + [sym__dim_keyword] = ACTIONS(5841), + [sym__redim_keyword] = ACTIONS(5841), + [aux_sym_get_accessor_token1] = ACTIONS(5841), + [aux_sym_set_accessor_token1] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(10100), + [aux_sym_const_declaration_token1] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5843), + [aux_sym_as_type_clause_token2] = ACTIONS(5841), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5841), + [aux_sym_visibility_token1] = ACTIONS(5841), + [aux_sym_visibility_token2] = ACTIONS(5841), + [aux_sym_elseif_fragment_token1] = ACTIONS(5841), + [aux_sym_else_fragment_token1] = ACTIONS(5841), + [aux_sym_select_statement_token1] = ACTIONS(5841), + [aux_sym__for_header_token1] = ACTIONS(5841), + [aux_sym_do_statement_token1] = ACTIONS(5841), + [aux_sym_do_condition_token1] = ACTIONS(5841), + [aux_sym_with_statement_token1] = ACTIONS(5841), + [aux_sym_exit_statement_token1] = ACTIONS(5841), + [sym_end_statement] = ACTIONS(5843), + [aux_sym_on_goto_statement_token1] = ACTIONS(5841), + [aux_sym_on_goto_statement_token2] = ACTIONS(5841), + [aux_sym_on_error_statement_token2] = ACTIONS(5841), + [sym__ambiguous_redim_statement] = ACTIONS(5843), + [aux_sym_erase_statement_token1] = ACTIONS(5841), + [aux_sym_open_statement_token1] = ACTIONS(5841), + [aux_sym_file_mode_token2] = ACTIONS(5841), + [aux_sym_file_access_token2] = ACTIONS(5841), + [aux_sym_file_lock_token2] = ACTIONS(5841), + [aux_sym_print_statement_token1] = ACTIONS(5841), + [anon_sym_PLUS] = ACTIONS(5843), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_SEMI] = ACTIONS(10100), + [anon_sym_QMARK] = ACTIONS(5843), + [aux_sym_close_statement_token1] = ACTIONS(5841), + [aux_sym_put_statement_token1] = ACTIONS(5841), + [aux_sym_unlock_statement_token1] = ACTIONS(5841), + [aux_sym_seek_statement_token1] = ACTIONS(5841), + [sym_reset_statement] = ACTIONS(5841), + [aux_sym_raise_event_statement_token1] = ACTIONS(5841), + [sym_stop_statement] = ACTIONS(5841), + [sym_beep_statement] = ACTIONS(5841), + [aux_sym_unload_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token2] = ACTIONS(5841), + [aux_sym_def_type_statement_token3] = ACTIONS(5841), + [aux_sym_def_type_statement_token4] = ACTIONS(5841), + [aux_sym_def_type_statement_token5] = ACTIONS(5841), + [aux_sym_def_type_statement_token6] = ACTIONS(5841), + [aux_sym_def_type_statement_token7] = ACTIONS(5841), + [aux_sym_def_type_statement_token8] = ACTIONS(5841), + [aux_sym_def_type_statement_token9] = ACTIONS(5841), + [aux_sym_def_type_statement_token10] = ACTIONS(5841), + [aux_sym_def_type_statement_token11] = ACTIONS(5841), + [aux_sym_def_type_statement_token12] = ACTIONS(5841), + [aux_sym_def_type_statement_token13] = ACTIONS(5841), + [aux_sym_def_type_statement_token14] = ACTIONS(5841), + [aux_sym_call_statement_token1] = ACTIONS(5841), + [sym__ambiguous_call_statement] = ACTIONS(5841), + [aux_sym_addressof_expression_token1] = ACTIONS(5841), + [aux_sym_type_of_expression_token1] = ACTIONS(5841), + [aux_sym_unary_expression_token1] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5843), + [sym_number_literal] = ACTIONS(5843), + [aux_sym_boolean_literal_token1] = ACTIONS(5841), + [aux_sym_boolean_literal_token2] = ACTIONS(5841), + [sym_nothing_literal] = ACTIONS(5841), + [sym_null_literal] = ACTIONS(5841), + [sym_empty_literal] = ACTIONS(5841), + [sym_date_literal] = ACTIONS(5843), + [anon_sym_POUND] = ACTIONS(5841), + }, + [STATE(4667)] = { + [sym_initializer] = STATE(6271), + [sym_as_type_clause] = STATE(5082), + [sym_identifier] = ACTIONS(7200), + [sym_newline] = ACTIONS(7202), + [anon_sym_COLON] = ACTIONS(7202), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7200), + [aux_sym_frm_property_statement_token1] = ACTIONS(7200), + [anon_sym_EQ] = ACTIONS(10017), + [anon_sym_DOT] = ACTIONS(7200), + [anon_sym_BANG] = ACTIONS(7202), + [aux_sym__attribute_identifier_token1] = ACTIONS(7200), + [aux_sym_option_statement_token3] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7200), + [aux_sym_preprocessor_const_token1] = ACTIONS(7200), + [sym_static_modifier] = ACTIONS(7200), + [sym__dim_keyword] = ACTIONS(7200), + [sym__redim_keyword] = ACTIONS(7200), + [aux_sym_get_accessor_token1] = ACTIONS(7200), + [aux_sym_set_accessor_token1] = ACTIONS(7200), + [anon_sym_COMMA] = ACTIONS(7202), + [aux_sym_const_declaration_token1] = ACTIONS(7200), + [anon_sym_LPAREN] = ACTIONS(7202), + [aux_sym_as_type_clause_token1] = ACTIONS(10021), + [aux_sym_as_type_clause_token2] = ACTIONS(7200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7200), + [aux_sym_visibility_token1] = ACTIONS(7200), + [aux_sym_visibility_token2] = ACTIONS(7200), + [aux_sym_elseif_fragment_token1] = ACTIONS(7200), + [aux_sym_else_fragment_token1] = ACTIONS(7200), + [aux_sym_select_statement_token1] = ACTIONS(7200), + [aux_sym__for_header_token1] = ACTIONS(7200), + [aux_sym_do_statement_token1] = ACTIONS(7200), + [aux_sym_do_statement_token2] = ACTIONS(7200), + [aux_sym_do_condition_token1] = ACTIONS(7200), + [aux_sym_with_statement_token1] = ACTIONS(7200), + [aux_sym_exit_statement_token1] = ACTIONS(7200), + [sym_end_statement] = ACTIONS(7202), + [aux_sym_on_goto_statement_token1] = ACTIONS(7200), + [aux_sym_on_goto_statement_token2] = ACTIONS(7200), + [aux_sym_on_error_statement_token2] = ACTIONS(7200), + [sym__ambiguous_redim_statement] = ACTIONS(7202), + [aux_sym_erase_statement_token1] = ACTIONS(7200), + [aux_sym_open_statement_token1] = ACTIONS(7200), + [aux_sym_file_mode_token2] = ACTIONS(7200), + [aux_sym_file_access_token2] = ACTIONS(7200), + [aux_sym_file_lock_token2] = ACTIONS(7200), + [aux_sym_print_statement_token1] = ACTIONS(7200), + [anon_sym_PLUS] = ACTIONS(7202), + [anon_sym_DASH] = ACTIONS(7200), + [anon_sym_QMARK] = ACTIONS(7202), + [aux_sym_close_statement_token1] = ACTIONS(7200), + [aux_sym_put_statement_token1] = ACTIONS(7200), + [aux_sym_unlock_statement_token1] = ACTIONS(7200), + [aux_sym_seek_statement_token1] = ACTIONS(7200), + [sym_reset_statement] = ACTIONS(7200), + [aux_sym_raise_event_statement_token1] = ACTIONS(7200), + [sym_stop_statement] = ACTIONS(7200), + [sym_beep_statement] = ACTIONS(7200), + [aux_sym_unload_statement_token1] = ACTIONS(7200), + [aux_sym_def_type_statement_token1] = ACTIONS(7200), + [aux_sym_def_type_statement_token2] = ACTIONS(7200), + [aux_sym_def_type_statement_token3] = ACTIONS(7200), + [aux_sym_def_type_statement_token4] = ACTIONS(7200), + [aux_sym_def_type_statement_token5] = ACTIONS(7200), + [aux_sym_def_type_statement_token6] = ACTIONS(7200), + [aux_sym_def_type_statement_token7] = ACTIONS(7200), + [aux_sym_def_type_statement_token8] = ACTIONS(7200), + [aux_sym_def_type_statement_token9] = ACTIONS(7200), + [aux_sym_def_type_statement_token10] = ACTIONS(7200), + [aux_sym_def_type_statement_token11] = ACTIONS(7200), + [aux_sym_def_type_statement_token12] = ACTIONS(7200), + [aux_sym_def_type_statement_token13] = ACTIONS(7200), + [aux_sym_def_type_statement_token14] = ACTIONS(7200), + [aux_sym_call_statement_token1] = ACTIONS(7200), + [sym__ambiguous_call_statement] = ACTIONS(7200), + [aux_sym_addressof_expression_token1] = ACTIONS(7200), + [aux_sym_type_of_expression_token1] = ACTIONS(7200), + [aux_sym_unary_expression_token1] = ACTIONS(7200), + [sym_string_literal] = ACTIONS(7202), + [sym_number_literal] = ACTIONS(7202), + [aux_sym_boolean_literal_token1] = ACTIONS(7200), + [aux_sym_boolean_literal_token2] = ACTIONS(7200), + [sym_nothing_literal] = ACTIONS(7200), + [sym_null_literal] = ACTIONS(7200), + [sym_empty_literal] = ACTIONS(7200), + [sym_date_literal] = ACTIONS(7202), + [anon_sym_POUND] = ACTIONS(7200), + }, + [STATE(4668)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_statement_token2] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10052), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10076), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(10103), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4669)] = { + [sym_initializer] = STATE(6207), + [sym_as_type_clause] = STATE(4953), + [sym_identifier] = ACTIONS(7287), + [sym_newline] = ACTIONS(7289), + [anon_sym_COLON] = ACTIONS(7289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7287), + [aux_sym_frm_property_statement_token1] = ACTIONS(7287), + [anon_sym_EQ] = ACTIONS(10026), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_BANG] = ACTIONS(7289), + [aux_sym__attribute_identifier_token1] = ACTIONS(7287), + [aux_sym_option_statement_token3] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7287), + [aux_sym_preprocessor_const_token1] = ACTIONS(7287), + [sym_static_modifier] = ACTIONS(7287), + [sym__dim_keyword] = ACTIONS(7287), + [sym__redim_keyword] = ACTIONS(7287), + [aux_sym_get_accessor_token1] = ACTIONS(7287), + [aux_sym_set_accessor_token1] = ACTIONS(7287), + [anon_sym_COMMA] = ACTIONS(7289), + [aux_sym_const_declaration_token1] = ACTIONS(7287), + [anon_sym_LPAREN] = ACTIONS(7289), + [aux_sym_as_type_clause_token1] = ACTIONS(10030), + [aux_sym_as_type_clause_token2] = ACTIONS(7287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7287), + [aux_sym_visibility_token1] = ACTIONS(7287), + [aux_sym_visibility_token2] = ACTIONS(7287), + [aux_sym_elseif_fragment_token1] = ACTIONS(7287), + [aux_sym_else_fragment_token1] = ACTIONS(7287), + [aux_sym_select_statement_token1] = ACTIONS(7287), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7287), + [aux_sym__for_header_token1] = ACTIONS(7287), + [aux_sym_do_statement_token1] = ACTIONS(7287), + [aux_sym_do_condition_token1] = ACTIONS(7287), + [aux_sym_with_statement_token1] = ACTIONS(7287), + [aux_sym_exit_statement_token1] = ACTIONS(7287), + [sym_end_statement] = ACTIONS(7289), + [aux_sym_on_goto_statement_token1] = ACTIONS(7287), + [aux_sym_on_goto_statement_token2] = ACTIONS(7287), + [aux_sym_on_error_statement_token2] = ACTIONS(7287), + [sym__ambiguous_redim_statement] = ACTIONS(7289), + [aux_sym_erase_statement_token1] = ACTIONS(7287), + [aux_sym_open_statement_token1] = ACTIONS(7287), + [aux_sym_file_mode_token2] = ACTIONS(7287), + [aux_sym_file_access_token2] = ACTIONS(7287), + [aux_sym_file_lock_token2] = ACTIONS(7287), + [aux_sym_print_statement_token1] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_QMARK] = ACTIONS(7289), + [aux_sym_close_statement_token1] = ACTIONS(7287), + [aux_sym_put_statement_token1] = ACTIONS(7287), + [aux_sym_unlock_statement_token1] = ACTIONS(7287), + [aux_sym_seek_statement_token1] = ACTIONS(7287), + [sym_reset_statement] = ACTIONS(7287), + [aux_sym_raise_event_statement_token1] = ACTIONS(7287), + [sym_stop_statement] = ACTIONS(7287), + [sym_beep_statement] = ACTIONS(7287), + [aux_sym_unload_statement_token1] = ACTIONS(7287), + [aux_sym_def_type_statement_token1] = ACTIONS(7287), + [aux_sym_def_type_statement_token2] = ACTIONS(7287), + [aux_sym_def_type_statement_token3] = ACTIONS(7287), + [aux_sym_def_type_statement_token4] = ACTIONS(7287), + [aux_sym_def_type_statement_token5] = ACTIONS(7287), + [aux_sym_def_type_statement_token6] = ACTIONS(7287), + [aux_sym_def_type_statement_token7] = ACTIONS(7287), + [aux_sym_def_type_statement_token8] = ACTIONS(7287), + [aux_sym_def_type_statement_token9] = ACTIONS(7287), + [aux_sym_def_type_statement_token10] = ACTIONS(7287), + [aux_sym_def_type_statement_token11] = ACTIONS(7287), + [aux_sym_def_type_statement_token12] = ACTIONS(7287), + [aux_sym_def_type_statement_token13] = ACTIONS(7287), + [aux_sym_def_type_statement_token14] = ACTIONS(7287), + [aux_sym_call_statement_token1] = ACTIONS(7287), + [sym__ambiguous_call_statement] = ACTIONS(7287), + [aux_sym_addressof_expression_token1] = ACTIONS(7287), + [aux_sym_type_of_expression_token1] = ACTIONS(7287), + [aux_sym_unary_expression_token1] = ACTIONS(7287), + [sym_string_literal] = ACTIONS(7289), + [sym_number_literal] = ACTIONS(7289), + [aux_sym_boolean_literal_token1] = ACTIONS(7287), + [aux_sym_boolean_literal_token2] = ACTIONS(7287), + [sym_nothing_literal] = ACTIONS(7287), + [sym_null_literal] = ACTIONS(7287), + [sym_empty_literal] = ACTIONS(7287), + [sym_date_literal] = ACTIONS(7289), + [anon_sym_POUND] = ACTIONS(7287), + }, + [STATE(4670)] = { + [sym_initializer] = STATE(5057), + [sym_identifier] = ACTIONS(8087), + [sym_newline] = ACTIONS(8089), + [anon_sym_COLON] = ACTIONS(8089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8087), + [aux_sym_frm_property_statement_token1] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(9859), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_BANG] = ACTIONS(8089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8087), + [aux_sym_option_statement_token3] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8087), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8087), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8087), + [aux_sym_preprocessor_const_token1] = ACTIONS(8087), + [sym_static_modifier] = ACTIONS(8087), + [sym__dim_keyword] = ACTIONS(8087), + [sym__redim_keyword] = ACTIONS(8087), + [aux_sym_get_accessor_token1] = ACTIONS(8087), + [aux_sym_set_accessor_token1] = ACTIONS(8087), + [anon_sym_COMMA] = ACTIONS(8089), + [aux_sym_const_declaration_token1] = ACTIONS(8087), + [anon_sym_LPAREN] = ACTIONS(8089), + [aux_sym_as_type_clause_token2] = ACTIONS(8087), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8087), + [aux_sym_visibility_token1] = ACTIONS(8087), + [aux_sym_visibility_token2] = ACTIONS(8087), + [aux_sym_elseif_fragment_token1] = ACTIONS(8087), + [aux_sym_else_fragment_token1] = ACTIONS(8087), + [aux_sym_select_statement_token1] = ACTIONS(8087), + [aux_sym__for_header_token1] = ACTIONS(8087), + [aux_sym_do_statement_token1] = ACTIONS(8087), + [aux_sym_do_condition_token1] = ACTIONS(8087), + [aux_sym_with_statement_token1] = ACTIONS(8087), + [aux_sym_exit_statement_token1] = ACTIONS(8087), + [sym_end_statement] = ACTIONS(8089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8087), + [aux_sym_on_goto_statement_token2] = ACTIONS(8087), + [aux_sym_on_error_statement_token2] = ACTIONS(8087), + [sym__ambiguous_redim_statement] = ACTIONS(8089), + [aux_sym_erase_statement_token1] = ACTIONS(8087), + [aux_sym_open_statement_token1] = ACTIONS(8087), + [aux_sym_file_mode_token2] = ACTIONS(8087), + [aux_sym_file_access_token2] = ACTIONS(8087), + [aux_sym_file_lock_token2] = ACTIONS(8087), + [aux_sym_print_statement_token1] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [aux_sym_close_statement_token1] = ACTIONS(8087), + [aux_sym_put_statement_token1] = ACTIONS(8087), + [aux_sym_unlock_statement_token1] = ACTIONS(8087), + [aux_sym_seek_statement_token1] = ACTIONS(8087), + [sym_reset_statement] = ACTIONS(8087), + [aux_sym_raise_event_statement_token1] = ACTIONS(8087), + [sym_stop_statement] = ACTIONS(8087), + [sym_beep_statement] = ACTIONS(8087), + [aux_sym_unload_statement_token1] = ACTIONS(8087), + [aux_sym_def_type_statement_token1] = ACTIONS(8087), + [aux_sym_def_type_statement_token2] = ACTIONS(8087), + [aux_sym_def_type_statement_token3] = ACTIONS(8087), + [aux_sym_def_type_statement_token4] = ACTIONS(8087), + [aux_sym_def_type_statement_token5] = ACTIONS(8087), + [aux_sym_def_type_statement_token6] = ACTIONS(8087), + [aux_sym_def_type_statement_token7] = ACTIONS(8087), + [aux_sym_def_type_statement_token8] = ACTIONS(8087), + [aux_sym_def_type_statement_token9] = ACTIONS(8087), + [aux_sym_def_type_statement_token10] = ACTIONS(8087), + [aux_sym_def_type_statement_token11] = ACTIONS(8087), + [aux_sym_def_type_statement_token12] = ACTIONS(8087), + [aux_sym_def_type_statement_token13] = ACTIONS(8087), + [aux_sym_def_type_statement_token14] = ACTIONS(8087), + [aux_sym_call_statement_token1] = ACTIONS(8087), + [sym__ambiguous_call_statement] = ACTIONS(8087), + [aux_sym_addressof_expression_token1] = ACTIONS(8087), + [aux_sym_type_of_expression_token1] = ACTIONS(8087), + [aux_sym_unary_expression_token1] = ACTIONS(8087), + [sym_string_literal] = ACTIONS(8089), + [sym_number_literal] = ACTIONS(8089), + [aux_sym_boolean_literal_token1] = ACTIONS(8087), + [aux_sym_boolean_literal_token2] = ACTIONS(8087), + [sym_nothing_literal] = ACTIONS(8087), + [sym_null_literal] = ACTIONS(8087), + [sym_empty_literal] = ACTIONS(8087), + [sym_date_literal] = ACTIONS(8089), + [anon_sym_POUND] = ACTIONS(8087), + }, + [STATE(4671)] = { + [sym_initializer] = STATE(5877), + [sym_as_type_clause] = STATE(4925), + [sym_identifier] = ACTIONS(7287), + [sym_newline] = ACTIONS(7289), + [anon_sym_COLON] = ACTIONS(7289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7287), + [aux_sym_frm_property_statement_token1] = ACTIONS(7287), + [anon_sym_EQ] = ACTIONS(10032), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_BANG] = ACTIONS(7289), + [aux_sym__attribute_identifier_token1] = ACTIONS(7287), + [aux_sym_option_statement_token3] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7287), + [aux_sym_preprocessor_const_token1] = ACTIONS(7287), + [sym_static_modifier] = ACTIONS(7287), + [sym__dim_keyword] = ACTIONS(7287), + [sym__redim_keyword] = ACTIONS(7287), + [aux_sym_get_accessor_token1] = ACTIONS(7287), + [aux_sym_set_accessor_token1] = ACTIONS(7287), + [anon_sym_COMMA] = ACTIONS(7289), + [aux_sym_const_declaration_token1] = ACTIONS(7287), + [anon_sym_LPAREN] = ACTIONS(7289), + [aux_sym_as_type_clause_token1] = ACTIONS(10036), + [aux_sym_as_type_clause_token2] = ACTIONS(7287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7287), + [aux_sym_visibility_token1] = ACTIONS(7287), + [aux_sym_visibility_token2] = ACTIONS(7287), + [aux_sym_elseif_fragment_token1] = ACTIONS(7287), + [aux_sym_else_fragment_token1] = ACTIONS(7287), + [aux_sym_select_statement_token1] = ACTIONS(7287), + [aux_sym__for_header_token1] = ACTIONS(7287), + [aux_sym_do_statement_token1] = ACTIONS(7287), + [aux_sym_do_condition_token1] = ACTIONS(7287), + [aux_sym_with_statement_token1] = ACTIONS(7287), + [aux_sym_exit_statement_token1] = ACTIONS(7287), + [sym_end_statement] = ACTIONS(7289), + [aux_sym_on_goto_statement_token1] = ACTIONS(7287), + [aux_sym_on_goto_statement_token2] = ACTIONS(7287), + [aux_sym_on_error_statement_token2] = ACTIONS(7287), + [sym__ambiguous_redim_statement] = ACTIONS(7289), + [aux_sym_erase_statement_token1] = ACTIONS(7287), + [aux_sym_open_statement_token1] = ACTIONS(7287), + [aux_sym_file_mode_token2] = ACTIONS(7287), + [aux_sym_file_access_token2] = ACTIONS(7287), + [aux_sym_file_lock_token2] = ACTIONS(7287), + [aux_sym_print_statement_token1] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_QMARK] = ACTIONS(7289), + [aux_sym_close_statement_token1] = ACTIONS(7287), + [aux_sym_put_statement_token1] = ACTIONS(7287), + [aux_sym_unlock_statement_token1] = ACTIONS(7287), + [aux_sym_seek_statement_token1] = ACTIONS(7287), + [sym_reset_statement] = ACTIONS(7287), + [aux_sym_raise_event_statement_token1] = ACTIONS(7287), + [sym_stop_statement] = ACTIONS(7287), + [sym_beep_statement] = ACTIONS(7287), + [aux_sym_unload_statement_token1] = ACTIONS(7287), + [aux_sym_def_type_statement_token1] = ACTIONS(7287), + [aux_sym_def_type_statement_token2] = ACTIONS(7287), + [aux_sym_def_type_statement_token3] = ACTIONS(7287), + [aux_sym_def_type_statement_token4] = ACTIONS(7287), + [aux_sym_def_type_statement_token5] = ACTIONS(7287), + [aux_sym_def_type_statement_token6] = ACTIONS(7287), + [aux_sym_def_type_statement_token7] = ACTIONS(7287), + [aux_sym_def_type_statement_token8] = ACTIONS(7287), + [aux_sym_def_type_statement_token9] = ACTIONS(7287), + [aux_sym_def_type_statement_token10] = ACTIONS(7287), + [aux_sym_def_type_statement_token11] = ACTIONS(7287), + [aux_sym_def_type_statement_token12] = ACTIONS(7287), + [aux_sym_def_type_statement_token13] = ACTIONS(7287), + [aux_sym_def_type_statement_token14] = ACTIONS(7287), + [aux_sym_call_statement_token1] = ACTIONS(7287), + [sym__ambiguous_call_statement] = ACTIONS(7287), + [aux_sym_addressof_expression_token1] = ACTIONS(7287), + [aux_sym_type_of_expression_token1] = ACTIONS(7287), + [aux_sym_unary_expression_token1] = ACTIONS(7287), + [sym_string_literal] = ACTIONS(7289), + [sym_number_literal] = ACTIONS(7289), + [aux_sym_boolean_literal_token1] = ACTIONS(7287), + [aux_sym_boolean_literal_token2] = ACTIONS(7287), + [sym_nothing_literal] = ACTIONS(7287), + [sym_null_literal] = ACTIONS(7287), + [sym_empty_literal] = ACTIONS(7287), + [sym_date_literal] = ACTIONS(7289), + [anon_sym_POUND] = ACTIONS(7287), + }, + [STATE(4672)] = { + [sym_initializer] = STATE(5061), + [sym_identifier] = ACTIONS(8091), + [sym_newline] = ACTIONS(8093), + [anon_sym_COLON] = ACTIONS(8093), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8091), + [aux_sym_frm_property_statement_token1] = ACTIONS(8091), + [anon_sym_EQ] = ACTIONS(9859), + [anon_sym_DOT] = ACTIONS(8091), + [anon_sym_BANG] = ACTIONS(8093), + [aux_sym__attribute_identifier_token1] = ACTIONS(8091), + [aux_sym_option_statement_token3] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8091), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8091), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8091), + [aux_sym_preprocessor_const_token1] = ACTIONS(8091), + [sym_static_modifier] = ACTIONS(8091), + [sym__dim_keyword] = ACTIONS(8091), + [sym__redim_keyword] = ACTIONS(8091), + [aux_sym_get_accessor_token1] = ACTIONS(8091), + [aux_sym_set_accessor_token1] = ACTIONS(8091), + [anon_sym_COMMA] = ACTIONS(8093), + [aux_sym_const_declaration_token1] = ACTIONS(8091), + [anon_sym_LPAREN] = ACTIONS(8093), + [aux_sym_as_type_clause_token2] = ACTIONS(8091), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8091), + [aux_sym_visibility_token1] = ACTIONS(8091), + [aux_sym_visibility_token2] = ACTIONS(8091), + [aux_sym_elseif_fragment_token1] = ACTIONS(8091), + [aux_sym_else_fragment_token1] = ACTIONS(8091), + [aux_sym_select_statement_token1] = ACTIONS(8091), + [aux_sym__for_header_token1] = ACTIONS(8091), + [aux_sym_do_statement_token1] = ACTIONS(8091), + [aux_sym_do_condition_token1] = ACTIONS(8091), + [aux_sym_with_statement_token1] = ACTIONS(8091), + [aux_sym_exit_statement_token1] = ACTIONS(8091), + [sym_end_statement] = ACTIONS(8093), + [aux_sym_on_goto_statement_token1] = ACTIONS(8091), + [aux_sym_on_goto_statement_token2] = ACTIONS(8091), + [aux_sym_on_error_statement_token2] = ACTIONS(8091), + [sym__ambiguous_redim_statement] = ACTIONS(8093), + [aux_sym_erase_statement_token1] = ACTIONS(8091), + [aux_sym_open_statement_token1] = ACTIONS(8091), + [aux_sym_file_mode_token2] = ACTIONS(8091), + [aux_sym_file_access_token2] = ACTIONS(8091), + [aux_sym_file_lock_token2] = ACTIONS(8091), + [aux_sym_print_statement_token1] = ACTIONS(8091), + [anon_sym_PLUS] = ACTIONS(8093), + [anon_sym_DASH] = ACTIONS(8091), + [anon_sym_QMARK] = ACTIONS(8093), + [aux_sym_close_statement_token1] = ACTIONS(8091), + [aux_sym_put_statement_token1] = ACTIONS(8091), + [aux_sym_unlock_statement_token1] = ACTIONS(8091), + [aux_sym_seek_statement_token1] = ACTIONS(8091), + [sym_reset_statement] = ACTIONS(8091), + [aux_sym_raise_event_statement_token1] = ACTIONS(8091), + [sym_stop_statement] = ACTIONS(8091), + [sym_beep_statement] = ACTIONS(8091), + [aux_sym_unload_statement_token1] = ACTIONS(8091), + [aux_sym_def_type_statement_token1] = ACTIONS(8091), + [aux_sym_def_type_statement_token2] = ACTIONS(8091), + [aux_sym_def_type_statement_token3] = ACTIONS(8091), + [aux_sym_def_type_statement_token4] = ACTIONS(8091), + [aux_sym_def_type_statement_token5] = ACTIONS(8091), + [aux_sym_def_type_statement_token6] = ACTIONS(8091), + [aux_sym_def_type_statement_token7] = ACTIONS(8091), + [aux_sym_def_type_statement_token8] = ACTIONS(8091), + [aux_sym_def_type_statement_token9] = ACTIONS(8091), + [aux_sym_def_type_statement_token10] = ACTIONS(8091), + [aux_sym_def_type_statement_token11] = ACTIONS(8091), + [aux_sym_def_type_statement_token12] = ACTIONS(8091), + [aux_sym_def_type_statement_token13] = ACTIONS(8091), + [aux_sym_def_type_statement_token14] = ACTIONS(8091), + [aux_sym_call_statement_token1] = ACTIONS(8091), + [sym__ambiguous_call_statement] = ACTIONS(8091), + [aux_sym_addressof_expression_token1] = ACTIONS(8091), + [aux_sym_type_of_expression_token1] = ACTIONS(8091), + [aux_sym_unary_expression_token1] = ACTIONS(8091), + [sym_string_literal] = ACTIONS(8093), + [sym_number_literal] = ACTIONS(8093), + [aux_sym_boolean_literal_token1] = ACTIONS(8091), + [aux_sym_boolean_literal_token2] = ACTIONS(8091), + [sym_nothing_literal] = ACTIONS(8091), + [sym_null_literal] = ACTIONS(8091), + [sym_empty_literal] = ACTIONS(8091), + [sym_date_literal] = ACTIONS(8093), + [anon_sym_POUND] = ACTIONS(8091), + }, + [STATE(4673)] = { + [sym_identifier] = ACTIONS(7234), + [sym_newline] = ACTIONS(7236), + [anon_sym_COLON] = ACTIONS(7236), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7234), + [aux_sym_frm_property_statement_token1] = ACTIONS(7234), + [anon_sym_DOT] = ACTIONS(7234), + [anon_sym_BANG] = ACTIONS(7236), + [aux_sym__attribute_identifier_token1] = ACTIONS(7234), + [aux_sym_option_statement_token3] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7234), + [aux_sym_preprocessor_const_token1] = ACTIONS(7234), + [sym_static_modifier] = ACTIONS(7234), + [sym__dim_keyword] = ACTIONS(7234), + [sym__redim_keyword] = ACTIONS(7234), + [aux_sym_get_accessor_token1] = ACTIONS(7234), + [aux_sym_set_accessor_token1] = ACTIONS(7234), + [aux_sym_const_declaration_token1] = ACTIONS(7234), + [anon_sym_LPAREN] = ACTIONS(7236), + [aux_sym_as_type_clause_token2] = ACTIONS(7234), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7234), + [aux_sym_visibility_token1] = ACTIONS(7234), + [aux_sym_visibility_token2] = ACTIONS(7234), + [aux_sym_elseif_fragment_token1] = ACTIONS(7234), + [aux_sym_else_fragment_token1] = ACTIONS(7234), + [aux_sym_select_statement_token1] = ACTIONS(7234), + [aux_sym_select_statement_token2] = ACTIONS(7234), + [aux_sym__for_header_token1] = ACTIONS(7234), + [aux_sym_do_statement_token1] = ACTIONS(7234), + [aux_sym_do_condition_token1] = ACTIONS(7234), + [aux_sym_with_statement_token1] = ACTIONS(7234), + [aux_sym_exit_statement_token1] = ACTIONS(7234), + [sym_end_statement] = ACTIONS(7236), + [aux_sym_on_goto_statement_token1] = ACTIONS(7234), + [aux_sym_on_goto_statement_token2] = ACTIONS(7234), + [aux_sym_on_error_statement_token2] = ACTIONS(7234), + [sym__ambiguous_redim_statement] = ACTIONS(7236), + [aux_sym_erase_statement_token1] = ACTIONS(7234), + [aux_sym_open_statement_token1] = ACTIONS(7234), + [aux_sym_file_mode_token2] = ACTIONS(7234), + [aux_sym_file_access_token2] = ACTIONS(7234), + [aux_sym_file_lock_token2] = ACTIONS(7234), + [aux_sym_print_statement_token1] = ACTIONS(7234), + [anon_sym_PLUS] = ACTIONS(7236), + [anon_sym_DASH] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7234), + [anon_sym_QMARK] = ACTIONS(7236), + [aux_sym_close_statement_token1] = ACTIONS(7234), + [aux_sym_put_statement_token1] = ACTIONS(7234), + [aux_sym_unlock_statement_token1] = ACTIONS(7234), + [aux_sym_seek_statement_token1] = ACTIONS(7234), + [sym_reset_statement] = ACTIONS(7234), + [aux_sym_raise_event_statement_token1] = ACTIONS(7234), + [sym_stop_statement] = ACTIONS(7234), + [sym_beep_statement] = ACTIONS(7234), + [aux_sym_unload_statement_token1] = ACTIONS(7234), + [aux_sym_def_type_statement_token1] = ACTIONS(7234), + [aux_sym_def_type_statement_token2] = ACTIONS(7234), + [aux_sym_def_type_statement_token3] = ACTIONS(7234), + [aux_sym_def_type_statement_token4] = ACTIONS(7234), + [aux_sym_def_type_statement_token5] = ACTIONS(7234), + [aux_sym_def_type_statement_token6] = ACTIONS(7234), + [aux_sym_def_type_statement_token7] = ACTIONS(7234), + [aux_sym_def_type_statement_token8] = ACTIONS(7234), + [aux_sym_def_type_statement_token9] = ACTIONS(7234), + [aux_sym_def_type_statement_token10] = ACTIONS(7234), + [aux_sym_def_type_statement_token11] = ACTIONS(7234), + [aux_sym_def_type_statement_token12] = ACTIONS(7234), + [aux_sym_def_type_statement_token13] = ACTIONS(7234), + [aux_sym_def_type_statement_token14] = ACTIONS(7234), + [aux_sym_call_statement_token1] = ACTIONS(7234), + [sym__ambiguous_call_statement] = ACTIONS(7234), + [aux_sym_addressof_expression_token1] = ACTIONS(7234), + [aux_sym_type_of_expression_token1] = ACTIONS(7234), + [aux_sym_unary_expression_token1] = ACTIONS(7234), + [sym_string_literal] = ACTIONS(7236), + [sym_number_literal] = ACTIONS(7236), + [aux_sym_boolean_literal_token1] = ACTIONS(7234), + [aux_sym_boolean_literal_token2] = ACTIONS(7234), + [sym_nothing_literal] = ACTIONS(7234), + [sym_null_literal] = ACTIONS(7234), + [sym_empty_literal] = ACTIONS(7234), + [sym_date_literal] = ACTIONS(7236), + [anon_sym_POUND] = ACTIONS(7234), + }, + [STATE(4674)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym_select_statement_token2] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4675)] = { + [sym_identifier] = ACTIONS(7281), + [sym_newline] = ACTIONS(7283), + [anon_sym_COLON] = ACTIONS(7283), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7281), + [aux_sym_frm_property_statement_token1] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7281), + [anon_sym_BANG] = ACTIONS(7283), + [aux_sym__attribute_identifier_token1] = ACTIONS(7281), + [aux_sym_option_statement_token3] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7281), + [aux_sym_preprocessor_const_token1] = ACTIONS(7281), + [sym_static_modifier] = ACTIONS(7281), + [sym__dim_keyword] = ACTIONS(7281), + [sym__redim_keyword] = ACTIONS(7281), + [aux_sym_get_accessor_token1] = ACTIONS(7281), + [aux_sym_set_accessor_token1] = ACTIONS(7281), + [aux_sym_const_declaration_token1] = ACTIONS(7281), + [anon_sym_LPAREN] = ACTIONS(7283), + [aux_sym_as_type_clause_token2] = ACTIONS(7281), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7281), + [aux_sym_visibility_token1] = ACTIONS(7281), + [aux_sym_visibility_token2] = ACTIONS(7281), + [aux_sym_elseif_fragment_token1] = ACTIONS(7281), + [aux_sym_else_fragment_token1] = ACTIONS(7281), + [aux_sym_select_statement_token1] = ACTIONS(7281), + [aux_sym__for_header_token1] = ACTIONS(7281), + [aux_sym_do_statement_token1] = ACTIONS(7281), + [aux_sym_do_condition_token1] = ACTIONS(7281), + [aux_sym_while_statement_token1] = ACTIONS(7281), + [aux_sym_with_statement_token1] = ACTIONS(7281), + [aux_sym_exit_statement_token1] = ACTIONS(7281), + [sym_end_statement] = ACTIONS(7283), + [aux_sym_on_goto_statement_token1] = ACTIONS(7281), + [aux_sym_on_goto_statement_token2] = ACTIONS(7281), + [aux_sym_on_error_statement_token2] = ACTIONS(7281), + [sym__ambiguous_redim_statement] = ACTIONS(7283), + [aux_sym_erase_statement_token1] = ACTIONS(7281), + [aux_sym_open_statement_token1] = ACTIONS(7281), + [aux_sym_file_mode_token2] = ACTIONS(7281), + [aux_sym_file_access_token2] = ACTIONS(7281), + [aux_sym_file_lock_token2] = ACTIONS(7281), + [aux_sym_print_statement_token1] = ACTIONS(7281), + [anon_sym_PLUS] = ACTIONS(7283), + [anon_sym_DASH] = ACTIONS(7281), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10105), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10107), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(10109), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(10111), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(10113), + [anon_sym_QMARK] = ACTIONS(7283), + [aux_sym_close_statement_token1] = ACTIONS(7281), + [aux_sym_put_statement_token1] = ACTIONS(7281), + [aux_sym_unlock_statement_token1] = ACTIONS(7281), + [aux_sym_seek_statement_token1] = ACTIONS(7281), + [sym_reset_statement] = ACTIONS(7281), + [aux_sym_raise_event_statement_token1] = ACTIONS(7281), + [sym_stop_statement] = ACTIONS(7281), + [sym_beep_statement] = ACTIONS(7281), + [aux_sym_unload_statement_token1] = ACTIONS(7281), + [aux_sym_def_type_statement_token1] = ACTIONS(7281), + [aux_sym_def_type_statement_token2] = ACTIONS(7281), + [aux_sym_def_type_statement_token3] = ACTIONS(7281), + [aux_sym_def_type_statement_token4] = ACTIONS(7281), + [aux_sym_def_type_statement_token5] = ACTIONS(7281), + [aux_sym_def_type_statement_token6] = ACTIONS(7281), + [aux_sym_def_type_statement_token7] = ACTIONS(7281), + [aux_sym_def_type_statement_token8] = ACTIONS(7281), + [aux_sym_def_type_statement_token9] = ACTIONS(7281), + [aux_sym_def_type_statement_token10] = ACTIONS(7281), + [aux_sym_def_type_statement_token11] = ACTIONS(7281), + [aux_sym_def_type_statement_token12] = ACTIONS(7281), + [aux_sym_def_type_statement_token13] = ACTIONS(7281), + [aux_sym_def_type_statement_token14] = ACTIONS(7281), + [aux_sym_call_statement_token1] = ACTIONS(7281), + [sym__ambiguous_call_statement] = ACTIONS(7281), + [aux_sym_addressof_expression_token1] = ACTIONS(7281), + [aux_sym_type_of_expression_token1] = ACTIONS(7281), + [aux_sym_unary_expression_token1] = ACTIONS(7281), + [sym_string_literal] = ACTIONS(7283), + [sym_number_literal] = ACTIONS(7283), + [aux_sym_boolean_literal_token1] = ACTIONS(7281), + [aux_sym_boolean_literal_token2] = ACTIONS(7281), + [sym_nothing_literal] = ACTIONS(7281), + [sym_null_literal] = ACTIONS(7281), + [sym_empty_literal] = ACTIONS(7281), + [sym_date_literal] = ACTIONS(7283), + [anon_sym_POUND] = ACTIONS(7281), + }, + [STATE(4676)] = { + [sym_identifier] = ACTIONS(7234), + [sym_newline] = ACTIONS(7236), + [anon_sym_COLON] = ACTIONS(7236), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7234), + [aux_sym_frm_property_statement_token1] = ACTIONS(7234), + [anon_sym_DOT] = ACTIONS(7234), + [anon_sym_BANG] = ACTIONS(7236), + [aux_sym__attribute_identifier_token1] = ACTIONS(7234), + [aux_sym_option_statement_token3] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7234), + [aux_sym_preprocessor_const_token1] = ACTIONS(7234), + [sym_static_modifier] = ACTIONS(7234), + [sym__dim_keyword] = ACTIONS(7234), + [sym__redim_keyword] = ACTIONS(7234), + [aux_sym_get_accessor_token1] = ACTIONS(7234), + [aux_sym_set_accessor_token1] = ACTIONS(7234), + [aux_sym_const_declaration_token1] = ACTIONS(7234), + [anon_sym_LPAREN] = ACTIONS(7236), + [aux_sym_as_type_clause_token2] = ACTIONS(7234), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7234), + [aux_sym_visibility_token1] = ACTIONS(7234), + [aux_sym_visibility_token2] = ACTIONS(7234), + [aux_sym_elseif_fragment_token1] = ACTIONS(7234), + [aux_sym_else_fragment_token1] = ACTIONS(7234), + [aux_sym_select_statement_token1] = ACTIONS(7234), + [aux_sym__for_header_token1] = ACTIONS(7234), + [aux_sym_do_statement_token1] = ACTIONS(7234), + [aux_sym_do_condition_token1] = ACTIONS(7234), + [aux_sym_while_statement_token1] = ACTIONS(7234), + [aux_sym_with_statement_token1] = ACTIONS(7234), + [aux_sym_exit_statement_token1] = ACTIONS(7234), + [sym_end_statement] = ACTIONS(7236), + [aux_sym_on_goto_statement_token1] = ACTIONS(7234), + [aux_sym_on_goto_statement_token2] = ACTIONS(7234), + [aux_sym_on_error_statement_token2] = ACTIONS(7234), + [sym__ambiguous_redim_statement] = ACTIONS(7236), + [aux_sym_erase_statement_token1] = ACTIONS(7234), + [aux_sym_open_statement_token1] = ACTIONS(7234), + [aux_sym_file_mode_token2] = ACTIONS(7234), + [aux_sym_file_access_token2] = ACTIONS(7234), + [aux_sym_file_lock_token2] = ACTIONS(7234), + [aux_sym_print_statement_token1] = ACTIONS(7234), + [anon_sym_PLUS] = ACTIONS(7236), + [anon_sym_DASH] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7234), + [anon_sym_QMARK] = ACTIONS(7236), + [aux_sym_close_statement_token1] = ACTIONS(7234), + [aux_sym_put_statement_token1] = ACTIONS(7234), + [aux_sym_unlock_statement_token1] = ACTIONS(7234), + [aux_sym_seek_statement_token1] = ACTIONS(7234), + [sym_reset_statement] = ACTIONS(7234), + [aux_sym_raise_event_statement_token1] = ACTIONS(7234), + [sym_stop_statement] = ACTIONS(7234), + [sym_beep_statement] = ACTIONS(7234), + [aux_sym_unload_statement_token1] = ACTIONS(7234), + [aux_sym_def_type_statement_token1] = ACTIONS(7234), + [aux_sym_def_type_statement_token2] = ACTIONS(7234), + [aux_sym_def_type_statement_token3] = ACTIONS(7234), + [aux_sym_def_type_statement_token4] = ACTIONS(7234), + [aux_sym_def_type_statement_token5] = ACTIONS(7234), + [aux_sym_def_type_statement_token6] = ACTIONS(7234), + [aux_sym_def_type_statement_token7] = ACTIONS(7234), + [aux_sym_def_type_statement_token8] = ACTIONS(7234), + [aux_sym_def_type_statement_token9] = ACTIONS(7234), + [aux_sym_def_type_statement_token10] = ACTIONS(7234), + [aux_sym_def_type_statement_token11] = ACTIONS(7234), + [aux_sym_def_type_statement_token12] = ACTIONS(7234), + [aux_sym_def_type_statement_token13] = ACTIONS(7234), + [aux_sym_def_type_statement_token14] = ACTIONS(7234), + [aux_sym_call_statement_token1] = ACTIONS(7234), + [sym__ambiguous_call_statement] = ACTIONS(7234), + [aux_sym_addressof_expression_token1] = ACTIONS(7234), + [aux_sym_type_of_expression_token1] = ACTIONS(7234), + [aux_sym_unary_expression_token1] = ACTIONS(7234), + [sym_string_literal] = ACTIONS(7236), + [sym_number_literal] = ACTIONS(7236), + [aux_sym_boolean_literal_token1] = ACTIONS(7234), + [aux_sym_boolean_literal_token2] = ACTIONS(7234), + [sym_nothing_literal] = ACTIONS(7234), + [sym_null_literal] = ACTIONS(7234), + [sym_empty_literal] = ACTIONS(7234), + [sym_date_literal] = ACTIONS(7236), + [anon_sym_POUND] = ACTIONS(7234), + }, + [STATE(4677)] = { + [sym_initializer] = STATE(6073), + [sym_as_type_clause] = STATE(4904), + [sym_identifier] = ACTIONS(7200), + [sym_newline] = ACTIONS(7202), + [anon_sym_COLON] = ACTIONS(7202), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7200), + [aux_sym_frm_property_statement_token1] = ACTIONS(7200), + [anon_sym_EQ] = ACTIONS(10011), + [anon_sym_DOT] = ACTIONS(7200), + [anon_sym_BANG] = ACTIONS(7202), + [aux_sym__attribute_identifier_token1] = ACTIONS(7200), + [aux_sym_option_statement_token3] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7200), + [aux_sym_preprocessor_const_token1] = ACTIONS(7200), + [sym_static_modifier] = ACTIONS(7200), + [sym__dim_keyword] = ACTIONS(7200), + [sym__redim_keyword] = ACTIONS(7200), + [aux_sym_get_accessor_token1] = ACTIONS(7200), + [aux_sym_set_accessor_token1] = ACTIONS(7200), + [anon_sym_COMMA] = ACTIONS(7202), + [aux_sym_const_declaration_token1] = ACTIONS(7200), + [anon_sym_LPAREN] = ACTIONS(7202), + [aux_sym_as_type_clause_token1] = ACTIONS(10015), + [aux_sym_as_type_clause_token2] = ACTIONS(7200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7200), + [aux_sym_visibility_token1] = ACTIONS(7200), + [aux_sym_visibility_token2] = ACTIONS(7200), + [aux_sym_elseif_fragment_token1] = ACTIONS(7200), + [aux_sym_else_fragment_token1] = ACTIONS(7200), + [aux_sym_select_statement_token1] = ACTIONS(7200), + [aux_sym_select_statement_token2] = ACTIONS(7200), + [aux_sym__for_header_token1] = ACTIONS(7200), + [aux_sym_do_statement_token1] = ACTIONS(7200), + [aux_sym_do_condition_token1] = ACTIONS(7200), + [aux_sym_with_statement_token1] = ACTIONS(7200), + [aux_sym_exit_statement_token1] = ACTIONS(7200), + [sym_end_statement] = ACTIONS(7202), + [aux_sym_on_goto_statement_token1] = ACTIONS(7200), + [aux_sym_on_goto_statement_token2] = ACTIONS(7200), + [aux_sym_on_error_statement_token2] = ACTIONS(7200), + [sym__ambiguous_redim_statement] = ACTIONS(7202), + [aux_sym_erase_statement_token1] = ACTIONS(7200), + [aux_sym_open_statement_token1] = ACTIONS(7200), + [aux_sym_file_mode_token2] = ACTIONS(7200), + [aux_sym_file_access_token2] = ACTIONS(7200), + [aux_sym_file_lock_token2] = ACTIONS(7200), + [aux_sym_print_statement_token1] = ACTIONS(7200), + [anon_sym_PLUS] = ACTIONS(7202), + [anon_sym_DASH] = ACTIONS(7200), + [anon_sym_QMARK] = ACTIONS(7202), + [aux_sym_close_statement_token1] = ACTIONS(7200), + [aux_sym_put_statement_token1] = ACTIONS(7200), + [aux_sym_unlock_statement_token1] = ACTIONS(7200), + [aux_sym_seek_statement_token1] = ACTIONS(7200), + [sym_reset_statement] = ACTIONS(7200), + [aux_sym_raise_event_statement_token1] = ACTIONS(7200), + [sym_stop_statement] = ACTIONS(7200), + [sym_beep_statement] = ACTIONS(7200), + [aux_sym_unload_statement_token1] = ACTIONS(7200), + [aux_sym_def_type_statement_token1] = ACTIONS(7200), + [aux_sym_def_type_statement_token2] = ACTIONS(7200), + [aux_sym_def_type_statement_token3] = ACTIONS(7200), + [aux_sym_def_type_statement_token4] = ACTIONS(7200), + [aux_sym_def_type_statement_token5] = ACTIONS(7200), + [aux_sym_def_type_statement_token6] = ACTIONS(7200), + [aux_sym_def_type_statement_token7] = ACTIONS(7200), + [aux_sym_def_type_statement_token8] = ACTIONS(7200), + [aux_sym_def_type_statement_token9] = ACTIONS(7200), + [aux_sym_def_type_statement_token10] = ACTIONS(7200), + [aux_sym_def_type_statement_token11] = ACTIONS(7200), + [aux_sym_def_type_statement_token12] = ACTIONS(7200), + [aux_sym_def_type_statement_token13] = ACTIONS(7200), + [aux_sym_def_type_statement_token14] = ACTIONS(7200), + [aux_sym_call_statement_token1] = ACTIONS(7200), + [sym__ambiguous_call_statement] = ACTIONS(7200), + [aux_sym_addressof_expression_token1] = ACTIONS(7200), + [aux_sym_type_of_expression_token1] = ACTIONS(7200), + [aux_sym_unary_expression_token1] = ACTIONS(7200), + [sym_string_literal] = ACTIONS(7202), + [sym_number_literal] = ACTIONS(7202), + [aux_sym_boolean_literal_token1] = ACTIONS(7200), + [aux_sym_boolean_literal_token2] = ACTIONS(7200), + [sym_nothing_literal] = ACTIONS(7200), + [sym_null_literal] = ACTIONS(7200), + [sym_empty_literal] = ACTIONS(7200), + [sym_date_literal] = ACTIONS(7202), + [anon_sym_POUND] = ACTIONS(7200), + }, + [STATE(4678)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_while_statement_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4679)] = { + [sym_initializer] = STATE(5079), + [sym_identifier] = ACTIONS(7710), + [sym_newline] = ACTIONS(7712), + [anon_sym_COLON] = ACTIONS(7712), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7710), + [aux_sym_frm_property_statement_token1] = ACTIONS(7710), + [anon_sym_EQ] = ACTIONS(9859), + [anon_sym_DOT] = ACTIONS(7710), + [anon_sym_BANG] = ACTIONS(7712), + [aux_sym__attribute_identifier_token1] = ACTIONS(7710), + [aux_sym_option_statement_token3] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7710), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7710), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7710), + [aux_sym_preprocessor_const_token1] = ACTIONS(7710), + [sym_static_modifier] = ACTIONS(7710), + [sym__dim_keyword] = ACTIONS(7710), + [sym__redim_keyword] = ACTIONS(7710), + [aux_sym_get_accessor_token1] = ACTIONS(7710), + [aux_sym_set_accessor_token1] = ACTIONS(7710), + [anon_sym_COMMA] = ACTIONS(7712), + [aux_sym_const_declaration_token1] = ACTIONS(7710), + [anon_sym_LPAREN] = ACTIONS(7712), + [aux_sym_as_type_clause_token2] = ACTIONS(7710), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7710), + [aux_sym_visibility_token1] = ACTIONS(7710), + [aux_sym_visibility_token2] = ACTIONS(7710), + [aux_sym_elseif_fragment_token1] = ACTIONS(7710), + [aux_sym_else_fragment_token1] = ACTIONS(7710), + [aux_sym_select_statement_token1] = ACTIONS(7710), + [aux_sym__for_header_token1] = ACTIONS(7710), + [aux_sym_do_statement_token1] = ACTIONS(7710), + [aux_sym_do_condition_token1] = ACTIONS(7710), + [aux_sym_with_statement_token1] = ACTIONS(7710), + [aux_sym_exit_statement_token1] = ACTIONS(7710), + [sym_end_statement] = ACTIONS(7712), + [aux_sym_on_goto_statement_token1] = ACTIONS(7710), + [aux_sym_on_goto_statement_token2] = ACTIONS(7710), + [aux_sym_on_error_statement_token2] = ACTIONS(7710), + [sym__ambiguous_redim_statement] = ACTIONS(7712), + [aux_sym_erase_statement_token1] = ACTIONS(7710), + [aux_sym_open_statement_token1] = ACTIONS(7710), + [aux_sym_file_mode_token2] = ACTIONS(7710), + [aux_sym_file_access_token2] = ACTIONS(7710), + [aux_sym_file_lock_token2] = ACTIONS(7710), + [aux_sym_print_statement_token1] = ACTIONS(7710), + [anon_sym_PLUS] = ACTIONS(7712), + [anon_sym_DASH] = ACTIONS(7710), + [anon_sym_QMARK] = ACTIONS(7712), + [aux_sym_close_statement_token1] = ACTIONS(7710), + [aux_sym_put_statement_token1] = ACTIONS(7710), + [aux_sym_unlock_statement_token1] = ACTIONS(7710), + [aux_sym_seek_statement_token1] = ACTIONS(7710), + [sym_reset_statement] = ACTIONS(7710), + [aux_sym_raise_event_statement_token1] = ACTIONS(7710), + [sym_stop_statement] = ACTIONS(7710), + [sym_beep_statement] = ACTIONS(7710), + [aux_sym_unload_statement_token1] = ACTIONS(7710), + [aux_sym_def_type_statement_token1] = ACTIONS(7710), + [aux_sym_def_type_statement_token2] = ACTIONS(7710), + [aux_sym_def_type_statement_token3] = ACTIONS(7710), + [aux_sym_def_type_statement_token4] = ACTIONS(7710), + [aux_sym_def_type_statement_token5] = ACTIONS(7710), + [aux_sym_def_type_statement_token6] = ACTIONS(7710), + [aux_sym_def_type_statement_token7] = ACTIONS(7710), + [aux_sym_def_type_statement_token8] = ACTIONS(7710), + [aux_sym_def_type_statement_token9] = ACTIONS(7710), + [aux_sym_def_type_statement_token10] = ACTIONS(7710), + [aux_sym_def_type_statement_token11] = ACTIONS(7710), + [aux_sym_def_type_statement_token12] = ACTIONS(7710), + [aux_sym_def_type_statement_token13] = ACTIONS(7710), + [aux_sym_def_type_statement_token14] = ACTIONS(7710), + [aux_sym_call_statement_token1] = ACTIONS(7710), + [sym__ambiguous_call_statement] = ACTIONS(7710), + [aux_sym_addressof_expression_token1] = ACTIONS(7710), + [aux_sym_type_of_expression_token1] = ACTIONS(7710), + [aux_sym_unary_expression_token1] = ACTIONS(7710), + [sym_string_literal] = ACTIONS(7712), + [sym_number_literal] = ACTIONS(7712), + [aux_sym_boolean_literal_token1] = ACTIONS(7710), + [aux_sym_boolean_literal_token2] = ACTIONS(7710), + [sym_nothing_literal] = ACTIONS(7710), + [sym_null_literal] = ACTIONS(7710), + [sym_empty_literal] = ACTIONS(7710), + [sym_date_literal] = ACTIONS(7712), + [anon_sym_POUND] = ACTIONS(7710), + }, + [STATE(4680)] = { + [sym_identifier] = ACTIONS(7281), + [sym_newline] = ACTIONS(7283), + [anon_sym_COLON] = ACTIONS(7283), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7281), + [aux_sym_frm_property_statement_token1] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7281), + [anon_sym_BANG] = ACTIONS(7283), + [aux_sym__attribute_identifier_token1] = ACTIONS(7281), + [aux_sym_option_statement_token3] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7281), + [aux_sym_preprocessor_const_token1] = ACTIONS(7281), + [sym_static_modifier] = ACTIONS(7281), + [sym__dim_keyword] = ACTIONS(7281), + [sym__redim_keyword] = ACTIONS(7281), + [aux_sym_get_accessor_token1] = ACTIONS(7281), + [aux_sym_set_accessor_token1] = ACTIONS(7281), + [aux_sym_const_declaration_token1] = ACTIONS(7281), + [anon_sym_LPAREN] = ACTIONS(7283), + [aux_sym_as_type_clause_token2] = ACTIONS(7281), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7281), + [aux_sym_visibility_token1] = ACTIONS(7281), + [aux_sym_visibility_token2] = ACTIONS(7281), + [aux_sym_elseif_fragment_token1] = ACTIONS(7281), + [aux_sym_else_fragment_token1] = ACTIONS(7281), + [aux_sym_select_statement_token1] = ACTIONS(7281), + [aux_sym__for_header_token1] = ACTIONS(7281), + [aux_sym_do_statement_token1] = ACTIONS(7281), + [aux_sym_do_statement_token2] = ACTIONS(7281), + [aux_sym_do_condition_token1] = ACTIONS(7281), + [aux_sym_with_statement_token1] = ACTIONS(7281), + [aux_sym_exit_statement_token1] = ACTIONS(7281), + [sym_end_statement] = ACTIONS(7283), + [aux_sym_on_goto_statement_token1] = ACTIONS(7281), + [aux_sym_on_goto_statement_token2] = ACTIONS(7281), + [aux_sym_on_error_statement_token2] = ACTIONS(7281), + [sym__ambiguous_redim_statement] = ACTIONS(7283), + [aux_sym_erase_statement_token1] = ACTIONS(7281), + [aux_sym_open_statement_token1] = ACTIONS(7281), + [aux_sym_file_mode_token2] = ACTIONS(7281), + [aux_sym_file_access_token2] = ACTIONS(7281), + [aux_sym_file_lock_token2] = ACTIONS(7281), + [aux_sym_print_statement_token1] = ACTIONS(7281), + [anon_sym_PLUS] = ACTIONS(7283), + [anon_sym_DASH] = ACTIONS(7281), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10052), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10076), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(10103), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(10115), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(10117), + [anon_sym_QMARK] = ACTIONS(7283), + [aux_sym_close_statement_token1] = ACTIONS(7281), + [aux_sym_put_statement_token1] = ACTIONS(7281), + [aux_sym_unlock_statement_token1] = ACTIONS(7281), + [aux_sym_seek_statement_token1] = ACTIONS(7281), + [sym_reset_statement] = ACTIONS(7281), + [aux_sym_raise_event_statement_token1] = ACTIONS(7281), + [sym_stop_statement] = ACTIONS(7281), + [sym_beep_statement] = ACTIONS(7281), + [aux_sym_unload_statement_token1] = ACTIONS(7281), + [aux_sym_def_type_statement_token1] = ACTIONS(7281), + [aux_sym_def_type_statement_token2] = ACTIONS(7281), + [aux_sym_def_type_statement_token3] = ACTIONS(7281), + [aux_sym_def_type_statement_token4] = ACTIONS(7281), + [aux_sym_def_type_statement_token5] = ACTIONS(7281), + [aux_sym_def_type_statement_token6] = ACTIONS(7281), + [aux_sym_def_type_statement_token7] = ACTIONS(7281), + [aux_sym_def_type_statement_token8] = ACTIONS(7281), + [aux_sym_def_type_statement_token9] = ACTIONS(7281), + [aux_sym_def_type_statement_token10] = ACTIONS(7281), + [aux_sym_def_type_statement_token11] = ACTIONS(7281), + [aux_sym_def_type_statement_token12] = ACTIONS(7281), + [aux_sym_def_type_statement_token13] = ACTIONS(7281), + [aux_sym_def_type_statement_token14] = ACTIONS(7281), + [aux_sym_call_statement_token1] = ACTIONS(7281), + [sym__ambiguous_call_statement] = ACTIONS(7281), + [aux_sym_addressof_expression_token1] = ACTIONS(7281), + [aux_sym_type_of_expression_token1] = ACTIONS(7281), + [aux_sym_unary_expression_token1] = ACTIONS(7281), + [sym_string_literal] = ACTIONS(7283), + [sym_number_literal] = ACTIONS(7283), + [aux_sym_boolean_literal_token1] = ACTIONS(7281), + [aux_sym_boolean_literal_token2] = ACTIONS(7281), + [sym_nothing_literal] = ACTIONS(7281), + [sym_null_literal] = ACTIONS(7281), + [sym_empty_literal] = ACTIONS(7281), + [sym_date_literal] = ACTIONS(7283), + [anon_sym_POUND] = ACTIONS(7281), + }, + [STATE(4681)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_statement_token2] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10052), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10076), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(10103), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(10115), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4682)] = { + [sym_identifier] = ACTIONS(7281), + [sym_newline] = ACTIONS(7283), + [anon_sym_COLON] = ACTIONS(7283), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7281), + [aux_sym_frm_property_statement_token1] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7281), + [anon_sym_BANG] = ACTIONS(7283), + [aux_sym__attribute_identifier_token1] = ACTIONS(7281), + [aux_sym_option_statement_token3] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7281), + [aux_sym_preprocessor_const_token1] = ACTIONS(7281), + [sym_static_modifier] = ACTIONS(7281), + [sym__dim_keyword] = ACTIONS(7281), + [sym__redim_keyword] = ACTIONS(7281), + [aux_sym_get_accessor_token1] = ACTIONS(7281), + [aux_sym_set_accessor_token1] = ACTIONS(7281), + [aux_sym_const_declaration_token1] = ACTIONS(7281), + [anon_sym_LPAREN] = ACTIONS(7283), + [aux_sym_as_type_clause_token2] = ACTIONS(7281), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7281), + [aux_sym_visibility_token1] = ACTIONS(7281), + [aux_sym_visibility_token2] = ACTIONS(7281), + [aux_sym_elseif_fragment_token1] = ACTIONS(7281), + [aux_sym_else_fragment_token1] = ACTIONS(7281), + [aux_sym_select_statement_token1] = ACTIONS(7281), + [aux_sym_select_statement_token2] = ACTIONS(7281), + [aux_sym__for_header_token1] = ACTIONS(7281), + [aux_sym_do_statement_token1] = ACTIONS(7281), + [aux_sym_do_condition_token1] = ACTIONS(7281), + [aux_sym_with_statement_token1] = ACTIONS(7281), + [aux_sym_exit_statement_token1] = ACTIONS(7281), + [sym_end_statement] = ACTIONS(7283), + [aux_sym_on_goto_statement_token1] = ACTIONS(7281), + [aux_sym_on_goto_statement_token2] = ACTIONS(7281), + [aux_sym_on_error_statement_token2] = ACTIONS(7281), + [sym__ambiguous_redim_statement] = ACTIONS(7283), + [aux_sym_erase_statement_token1] = ACTIONS(7281), + [aux_sym_open_statement_token1] = ACTIONS(7281), + [aux_sym_file_mode_token2] = ACTIONS(7281), + [aux_sym_file_access_token2] = ACTIONS(7281), + [aux_sym_file_lock_token2] = ACTIONS(7281), + [aux_sym_print_statement_token1] = ACTIONS(7281), + [anon_sym_PLUS] = ACTIONS(7283), + [anon_sym_DASH] = ACTIONS(7281), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10072), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10074), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(10078), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(10090), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(10119), + [anon_sym_QMARK] = ACTIONS(7283), + [aux_sym_close_statement_token1] = ACTIONS(7281), + [aux_sym_put_statement_token1] = ACTIONS(7281), + [aux_sym_unlock_statement_token1] = ACTIONS(7281), + [aux_sym_seek_statement_token1] = ACTIONS(7281), + [sym_reset_statement] = ACTIONS(7281), + [aux_sym_raise_event_statement_token1] = ACTIONS(7281), + [sym_stop_statement] = ACTIONS(7281), + [sym_beep_statement] = ACTIONS(7281), + [aux_sym_unload_statement_token1] = ACTIONS(7281), + [aux_sym_def_type_statement_token1] = ACTIONS(7281), + [aux_sym_def_type_statement_token2] = ACTIONS(7281), + [aux_sym_def_type_statement_token3] = ACTIONS(7281), + [aux_sym_def_type_statement_token4] = ACTIONS(7281), + [aux_sym_def_type_statement_token5] = ACTIONS(7281), + [aux_sym_def_type_statement_token6] = ACTIONS(7281), + [aux_sym_def_type_statement_token7] = ACTIONS(7281), + [aux_sym_def_type_statement_token8] = ACTIONS(7281), + [aux_sym_def_type_statement_token9] = ACTIONS(7281), + [aux_sym_def_type_statement_token10] = ACTIONS(7281), + [aux_sym_def_type_statement_token11] = ACTIONS(7281), + [aux_sym_def_type_statement_token12] = ACTIONS(7281), + [aux_sym_def_type_statement_token13] = ACTIONS(7281), + [aux_sym_def_type_statement_token14] = ACTIONS(7281), + [aux_sym_call_statement_token1] = ACTIONS(7281), + [sym__ambiguous_call_statement] = ACTIONS(7281), + [aux_sym_addressof_expression_token1] = ACTIONS(7281), + [aux_sym_type_of_expression_token1] = ACTIONS(7281), + [aux_sym_unary_expression_token1] = ACTIONS(7281), + [sym_string_literal] = ACTIONS(7283), + [sym_number_literal] = ACTIONS(7283), + [aux_sym_boolean_literal_token1] = ACTIONS(7281), + [aux_sym_boolean_literal_token2] = ACTIONS(7281), + [sym_nothing_literal] = ACTIONS(7281), + [sym_null_literal] = ACTIONS(7281), + [sym_empty_literal] = ACTIONS(7281), + [sym_date_literal] = ACTIONS(7283), + [anon_sym_POUND] = ACTIONS(7281), + }, + [STATE(4683)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_statement_token2] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4684)] = { + [sym_initializer] = STATE(6032), + [sym_as_type_clause] = STATE(4935), + [sym_identifier] = ACTIONS(7200), + [sym_newline] = ACTIONS(7202), + [anon_sym_COLON] = ACTIONS(7202), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7200), + [aux_sym_frm_property_statement_token1] = ACTIONS(7200), + [anon_sym_EQ] = ACTIONS(10032), + [anon_sym_DOT] = ACTIONS(7200), + [anon_sym_BANG] = ACTIONS(7202), + [aux_sym__attribute_identifier_token1] = ACTIONS(7200), + [aux_sym_option_statement_token3] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7200), + [aux_sym_preprocessor_const_token1] = ACTIONS(7200), + [sym_static_modifier] = ACTIONS(7200), + [sym__dim_keyword] = ACTIONS(7200), + [sym__redim_keyword] = ACTIONS(7200), + [aux_sym_get_accessor_token1] = ACTIONS(7200), + [aux_sym_set_accessor_token1] = ACTIONS(7200), + [anon_sym_COMMA] = ACTIONS(7202), + [aux_sym_const_declaration_token1] = ACTIONS(7200), + [anon_sym_LPAREN] = ACTIONS(7202), + [aux_sym_as_type_clause_token1] = ACTIONS(10036), + [aux_sym_as_type_clause_token2] = ACTIONS(7200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7200), + [aux_sym_visibility_token1] = ACTIONS(7200), + [aux_sym_visibility_token2] = ACTIONS(7200), + [aux_sym_elseif_fragment_token1] = ACTIONS(7200), + [aux_sym_else_fragment_token1] = ACTIONS(7200), + [aux_sym_select_statement_token1] = ACTIONS(7200), + [aux_sym__for_header_token1] = ACTIONS(7200), + [aux_sym_do_statement_token1] = ACTIONS(7200), + [aux_sym_do_condition_token1] = ACTIONS(7200), + [aux_sym_with_statement_token1] = ACTIONS(7200), + [aux_sym_exit_statement_token1] = ACTIONS(7200), + [sym_end_statement] = ACTIONS(7202), + [aux_sym_on_goto_statement_token1] = ACTIONS(7200), + [aux_sym_on_goto_statement_token2] = ACTIONS(7200), + [aux_sym_on_error_statement_token2] = ACTIONS(7200), + [sym__ambiguous_redim_statement] = ACTIONS(7202), + [aux_sym_erase_statement_token1] = ACTIONS(7200), + [aux_sym_open_statement_token1] = ACTIONS(7200), + [aux_sym_file_mode_token2] = ACTIONS(7200), + [aux_sym_file_access_token2] = ACTIONS(7200), + [aux_sym_file_lock_token2] = ACTIONS(7200), + [aux_sym_print_statement_token1] = ACTIONS(7200), + [anon_sym_PLUS] = ACTIONS(7202), + [anon_sym_DASH] = ACTIONS(7200), + [anon_sym_QMARK] = ACTIONS(7202), + [aux_sym_close_statement_token1] = ACTIONS(7200), + [aux_sym_put_statement_token1] = ACTIONS(7200), + [aux_sym_unlock_statement_token1] = ACTIONS(7200), + [aux_sym_seek_statement_token1] = ACTIONS(7200), + [sym_reset_statement] = ACTIONS(7200), + [aux_sym_raise_event_statement_token1] = ACTIONS(7200), + [sym_stop_statement] = ACTIONS(7200), + [sym_beep_statement] = ACTIONS(7200), + [aux_sym_unload_statement_token1] = ACTIONS(7200), + [aux_sym_def_type_statement_token1] = ACTIONS(7200), + [aux_sym_def_type_statement_token2] = ACTIONS(7200), + [aux_sym_def_type_statement_token3] = ACTIONS(7200), + [aux_sym_def_type_statement_token4] = ACTIONS(7200), + [aux_sym_def_type_statement_token5] = ACTIONS(7200), + [aux_sym_def_type_statement_token6] = ACTIONS(7200), + [aux_sym_def_type_statement_token7] = ACTIONS(7200), + [aux_sym_def_type_statement_token8] = ACTIONS(7200), + [aux_sym_def_type_statement_token9] = ACTIONS(7200), + [aux_sym_def_type_statement_token10] = ACTIONS(7200), + [aux_sym_def_type_statement_token11] = ACTIONS(7200), + [aux_sym_def_type_statement_token12] = ACTIONS(7200), + [aux_sym_def_type_statement_token13] = ACTIONS(7200), + [aux_sym_def_type_statement_token14] = ACTIONS(7200), + [aux_sym_call_statement_token1] = ACTIONS(7200), + [sym__ambiguous_call_statement] = ACTIONS(7200), + [aux_sym_addressof_expression_token1] = ACTIONS(7200), + [aux_sym_type_of_expression_token1] = ACTIONS(7200), + [aux_sym_unary_expression_token1] = ACTIONS(7200), + [sym_string_literal] = ACTIONS(7202), + [sym_number_literal] = ACTIONS(7202), + [aux_sym_boolean_literal_token1] = ACTIONS(7200), + [aux_sym_boolean_literal_token2] = ACTIONS(7200), + [sym_nothing_literal] = ACTIONS(7200), + [sym_null_literal] = ACTIONS(7200), + [sym_empty_literal] = ACTIONS(7200), + [sym_date_literal] = ACTIONS(7202), + [anon_sym_POUND] = ACTIONS(7200), + }, + [STATE(4685)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10058), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4686)] = { + [aux_sym_next_variable_list_repeat1] = STATE(4686), + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(10121), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(4687)] = { + [sym_fixed_string_length] = STATE(5019), + [sym_array_bounds] = STATE(5405), + [sym_identifier] = ACTIONS(7230), + [sym_newline] = ACTIONS(7232), + [anon_sym_COLON] = ACTIONS(7232), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7230), + [aux_sym_frm_property_statement_token1] = ACTIONS(7230), + [anon_sym_EQ] = ACTIONS(7232), + [anon_sym_DOT] = ACTIONS(7230), + [anon_sym_BANG] = ACTIONS(7232), + [aux_sym__attribute_identifier_token1] = ACTIONS(7230), + [aux_sym_option_statement_token3] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7230), + [aux_sym_preprocessor_const_token1] = ACTIONS(7230), + [sym_static_modifier] = ACTIONS(7230), + [sym__dim_keyword] = ACTIONS(7230), + [sym__redim_keyword] = ACTIONS(7230), + [aux_sym_get_accessor_token1] = ACTIONS(7230), + [aux_sym_set_accessor_token1] = ACTIONS(7230), + [anon_sym_COMMA] = ACTIONS(7232), + [aux_sym_const_declaration_token1] = ACTIONS(7230), + [anon_sym_LPAREN] = ACTIONS(10038), + [aux_sym_as_type_clause_token2] = ACTIONS(7230), + [anon_sym_STAR] = ACTIONS(10040), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7230), + [aux_sym_visibility_token1] = ACTIONS(7230), + [aux_sym_visibility_token2] = ACTIONS(7230), + [aux_sym_elseif_fragment_token1] = ACTIONS(7230), + [aux_sym_else_fragment_token1] = ACTIONS(7230), + [aux_sym_select_statement_token1] = ACTIONS(7230), + [aux_sym__for_header_token1] = ACTIONS(7230), + [aux_sym_do_statement_token1] = ACTIONS(7230), + [aux_sym_do_condition_token1] = ACTIONS(7230), + [aux_sym_with_statement_token1] = ACTIONS(7230), + [aux_sym_exit_statement_token1] = ACTIONS(7230), + [sym_end_statement] = ACTIONS(7232), + [aux_sym_on_goto_statement_token1] = ACTIONS(7230), + [aux_sym_on_goto_statement_token2] = ACTIONS(7230), + [aux_sym_on_error_statement_token2] = ACTIONS(7230), + [sym__ambiguous_redim_statement] = ACTIONS(7232), + [aux_sym_erase_statement_token1] = ACTIONS(7230), + [aux_sym_open_statement_token1] = ACTIONS(7230), + [aux_sym_file_mode_token2] = ACTIONS(7230), + [aux_sym_file_access_token2] = ACTIONS(7230), + [aux_sym_file_lock_token2] = ACTIONS(7230), + [aux_sym_print_statement_token1] = ACTIONS(7230), + [anon_sym_PLUS] = ACTIONS(7232), + [anon_sym_DASH] = ACTIONS(7230), + [anon_sym_QMARK] = ACTIONS(7232), + [aux_sym_close_statement_token1] = ACTIONS(7230), + [aux_sym_put_statement_token1] = ACTIONS(7230), + [aux_sym_unlock_statement_token1] = ACTIONS(7230), + [aux_sym_seek_statement_token1] = ACTIONS(7230), + [sym_reset_statement] = ACTIONS(7230), + [aux_sym_raise_event_statement_token1] = ACTIONS(7230), + [sym_stop_statement] = ACTIONS(7230), + [sym_beep_statement] = ACTIONS(7230), + [aux_sym_unload_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token2] = ACTIONS(7230), + [aux_sym_def_type_statement_token3] = ACTIONS(7230), + [aux_sym_def_type_statement_token4] = ACTIONS(7230), + [aux_sym_def_type_statement_token5] = ACTIONS(7230), + [aux_sym_def_type_statement_token6] = ACTIONS(7230), + [aux_sym_def_type_statement_token7] = ACTIONS(7230), + [aux_sym_def_type_statement_token8] = ACTIONS(7230), + [aux_sym_def_type_statement_token9] = ACTIONS(7230), + [aux_sym_def_type_statement_token10] = ACTIONS(7230), + [aux_sym_def_type_statement_token11] = ACTIONS(7230), + [aux_sym_def_type_statement_token12] = ACTIONS(7230), + [aux_sym_def_type_statement_token13] = ACTIONS(7230), + [aux_sym_def_type_statement_token14] = ACTIONS(7230), + [aux_sym_call_statement_token1] = ACTIONS(7230), + [sym__ambiguous_call_statement] = ACTIONS(7230), + [aux_sym_addressof_expression_token1] = ACTIONS(7230), + [aux_sym_type_of_expression_token1] = ACTIONS(7230), + [aux_sym_unary_expression_token1] = ACTIONS(7230), + [sym_string_literal] = ACTIONS(7232), + [sym_number_literal] = ACTIONS(7232), + [aux_sym_boolean_literal_token1] = ACTIONS(7230), + [aux_sym_boolean_literal_token2] = ACTIONS(7230), + [sym_nothing_literal] = ACTIONS(7230), + [sym_null_literal] = ACTIONS(7230), + [sym_empty_literal] = ACTIONS(7230), + [sym_date_literal] = ACTIONS(7232), + [anon_sym_POUND] = ACTIONS(7230), + }, + [STATE(4688)] = { + [sym_initializer] = STATE(6714), + [sym_as_type_clause] = STATE(5462), + [sym_array_bounds] = STATE(4778), + [sym_identifier] = ACTIONS(6989), + [sym_newline] = ACTIONS(6991), + [anon_sym_COLON] = ACTIONS(6991), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6989), + [aux_sym_frm_property_statement_token1] = ACTIONS(6989), + [anon_sym_EQ] = ACTIONS(10124), + [anon_sym_DOT] = ACTIONS(6989), + [anon_sym_BANG] = ACTIONS(6991), + [aux_sym__attribute_identifier_token1] = ACTIONS(6989), + [aux_sym_option_statement_token3] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6989), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6989), + [aux_sym_preprocessor_const_token1] = ACTIONS(6989), + [sym_static_modifier] = ACTIONS(6989), + [sym__dim_keyword] = ACTIONS(6989), + [sym__redim_keyword] = ACTIONS(6989), + [aux_sym_get_accessor_token1] = ACTIONS(6989), + [aux_sym_set_accessor_token1] = ACTIONS(6989), + [anon_sym_COMMA] = ACTIONS(6991), + [aux_sym_const_declaration_token1] = ACTIONS(6989), + [anon_sym_LPAREN] = ACTIONS(10126), + [aux_sym_as_type_clause_token1] = ACTIONS(10128), + [aux_sym_as_type_clause_token2] = ACTIONS(6989), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6989), + [aux_sym_visibility_token1] = ACTIONS(6989), + [aux_sym_visibility_token2] = ACTIONS(6989), + [aux_sym_elseif_fragment_token1] = ACTIONS(6989), + [aux_sym_else_fragment_token1] = ACTIONS(6989), + [aux_sym_select_statement_token1] = ACTIONS(6989), + [aux_sym__for_header_token1] = ACTIONS(6989), + [aux_sym_do_statement_token1] = ACTIONS(6989), + [aux_sym_do_condition_token1] = ACTIONS(6989), + [aux_sym_with_statement_token1] = ACTIONS(6989), + [aux_sym_exit_statement_token1] = ACTIONS(6989), + [sym_end_statement] = ACTIONS(6991), + [aux_sym_on_goto_statement_token1] = ACTIONS(6989), + [aux_sym_on_goto_statement_token2] = ACTIONS(6989), + [aux_sym_on_error_statement_token2] = ACTIONS(6989), + [sym__ambiguous_redim_statement] = ACTIONS(6991), + [aux_sym_erase_statement_token1] = ACTIONS(6989), + [aux_sym_open_statement_token1] = ACTIONS(6989), + [aux_sym_file_mode_token2] = ACTIONS(6989), + [aux_sym_file_access_token2] = ACTIONS(6989), + [aux_sym_file_lock_token2] = ACTIONS(6989), + [aux_sym_print_statement_token1] = ACTIONS(6989), + [anon_sym_PLUS] = ACTIONS(6991), + [anon_sym_DASH] = ACTIONS(6989), + [anon_sym_QMARK] = ACTIONS(6991), + [aux_sym_close_statement_token1] = ACTIONS(6989), + [aux_sym_put_statement_token1] = ACTIONS(6989), + [aux_sym_unlock_statement_token1] = ACTIONS(6989), + [aux_sym_seek_statement_token1] = ACTIONS(6989), + [sym_reset_statement] = ACTIONS(6989), + [aux_sym_raise_event_statement_token1] = ACTIONS(6989), + [sym_stop_statement] = ACTIONS(6989), + [sym_beep_statement] = ACTIONS(6989), + [aux_sym_unload_statement_token1] = ACTIONS(6989), + [aux_sym_def_type_statement_token1] = ACTIONS(6989), + [aux_sym_def_type_statement_token2] = ACTIONS(6989), + [aux_sym_def_type_statement_token3] = ACTIONS(6989), + [aux_sym_def_type_statement_token4] = ACTIONS(6989), + [aux_sym_def_type_statement_token5] = ACTIONS(6989), + [aux_sym_def_type_statement_token6] = ACTIONS(6989), + [aux_sym_def_type_statement_token7] = ACTIONS(6989), + [aux_sym_def_type_statement_token8] = ACTIONS(6989), + [aux_sym_def_type_statement_token9] = ACTIONS(6989), + [aux_sym_def_type_statement_token10] = ACTIONS(6989), + [aux_sym_def_type_statement_token11] = ACTIONS(6989), + [aux_sym_def_type_statement_token12] = ACTIONS(6989), + [aux_sym_def_type_statement_token13] = ACTIONS(6989), + [aux_sym_def_type_statement_token14] = ACTIONS(6989), + [aux_sym_call_statement_token1] = ACTIONS(6989), + [sym__ambiguous_call_statement] = ACTIONS(6989), + [aux_sym_addressof_expression_token1] = ACTIONS(6989), + [aux_sym_type_of_expression_token1] = ACTIONS(6989), + [aux_sym_unary_expression_token1] = ACTIONS(6989), + [sym_string_literal] = ACTIONS(6991), + [sym_number_literal] = ACTIONS(6991), + [aux_sym_boolean_literal_token1] = ACTIONS(6989), + [aux_sym_boolean_literal_token2] = ACTIONS(6989), + [sym_nothing_literal] = ACTIONS(6989), + [sym_null_literal] = ACTIONS(6989), + [sym_empty_literal] = ACTIONS(6989), + [sym_date_literal] = ACTIONS(6991), + [anon_sym_POUND] = ACTIONS(6989), + }, + [STATE(4689)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_while_statement_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10105), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4690)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_while_statement_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10105), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10107), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4691)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_while_statement_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10105), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10107), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(10109), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4692)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_while_statement_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10105), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10107), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(10109), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(10111), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4693)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10058), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10060), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4694)] = { + [sym_identifier] = ACTIONS(7984), + [sym_newline] = ACTIONS(7986), + [anon_sym_COLON] = ACTIONS(7986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7984), + [aux_sym_frm_property_statement_token1] = ACTIONS(7984), + [anon_sym_EQ] = ACTIONS(7986), + [anon_sym_DOT] = ACTIONS(7984), + [anon_sym_BANG] = ACTIONS(7986), + [aux_sym__attribute_identifier_token1] = ACTIONS(7984), + [aux_sym_option_statement_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7984), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7984), + [aux_sym_preprocessor_const_token1] = ACTIONS(7984), + [sym_static_modifier] = ACTIONS(7984), + [sym__dim_keyword] = ACTIONS(7984), + [sym__redim_keyword] = ACTIONS(7984), + [aux_sym_get_accessor_token1] = ACTIONS(7984), + [aux_sym_set_accessor_token1] = ACTIONS(7984), + [anon_sym_COMMA] = ACTIONS(7986), + [aux_sym_const_declaration_token1] = ACTIONS(7984), + [anon_sym_LPAREN] = ACTIONS(7986), + [aux_sym_as_type_clause_token1] = ACTIONS(7984), + [aux_sym_as_type_clause_token2] = ACTIONS(7984), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7984), + [aux_sym_visibility_token1] = ACTIONS(7984), + [aux_sym_visibility_token2] = ACTIONS(7984), + [aux_sym_elseif_fragment_token1] = ACTIONS(7984), + [aux_sym_else_fragment_token1] = ACTIONS(7984), + [aux_sym_select_statement_token1] = ACTIONS(7984), + [aux_sym__for_header_token1] = ACTIONS(7984), + [aux_sym_do_statement_token1] = ACTIONS(7984), + [aux_sym_do_condition_token1] = ACTIONS(7984), + [aux_sym_with_statement_token1] = ACTIONS(7984), + [aux_sym_exit_statement_token1] = ACTIONS(7984), + [sym_end_statement] = ACTIONS(7986), + [aux_sym_on_goto_statement_token1] = ACTIONS(7984), + [aux_sym_on_goto_statement_token2] = ACTIONS(7984), + [aux_sym_on_error_statement_token2] = ACTIONS(7984), + [sym__ambiguous_redim_statement] = ACTIONS(7986), + [aux_sym_erase_statement_token1] = ACTIONS(7984), + [aux_sym_open_statement_token1] = ACTIONS(7984), + [aux_sym_file_mode_token2] = ACTIONS(7984), + [aux_sym_file_access_token2] = ACTIONS(7984), + [aux_sym_file_lock_token2] = ACTIONS(7984), + [aux_sym_print_statement_token1] = ACTIONS(7984), + [anon_sym_PLUS] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(7984), + [anon_sym_QMARK] = ACTIONS(7986), + [aux_sym_close_statement_token1] = ACTIONS(7984), + [aux_sym_put_statement_token1] = ACTIONS(7984), + [aux_sym_unlock_statement_token1] = ACTIONS(7984), + [aux_sym_seek_statement_token1] = ACTIONS(7984), + [sym_reset_statement] = ACTIONS(7984), + [aux_sym_raise_event_statement_token1] = ACTIONS(7984), + [sym_stop_statement] = ACTIONS(7984), + [sym_beep_statement] = ACTIONS(7984), + [aux_sym_unload_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token2] = ACTIONS(7984), + [aux_sym_def_type_statement_token3] = ACTIONS(7984), + [aux_sym_def_type_statement_token4] = ACTIONS(7984), + [aux_sym_def_type_statement_token5] = ACTIONS(7984), + [aux_sym_def_type_statement_token6] = ACTIONS(7984), + [aux_sym_def_type_statement_token7] = ACTIONS(7984), + [aux_sym_def_type_statement_token8] = ACTIONS(7984), + [aux_sym_def_type_statement_token9] = ACTIONS(7984), + [aux_sym_def_type_statement_token10] = ACTIONS(7984), + [aux_sym_def_type_statement_token11] = ACTIONS(7984), + [aux_sym_def_type_statement_token12] = ACTIONS(7984), + [aux_sym_def_type_statement_token13] = ACTIONS(7984), + [aux_sym_def_type_statement_token14] = ACTIONS(7984), + [aux_sym_call_statement_token1] = ACTIONS(7984), + [sym__ambiguous_call_statement] = ACTIONS(7984), + [aux_sym_addressof_expression_token1] = ACTIONS(7984), + [aux_sym_type_of_expression_token1] = ACTIONS(7984), + [aux_sym_unary_expression_token1] = ACTIONS(7984), + [sym_string_literal] = ACTIONS(7986), + [sym_number_literal] = ACTIONS(7986), + [aux_sym_boolean_literal_token1] = ACTIONS(7984), + [aux_sym_boolean_literal_token2] = ACTIONS(7984), + [sym_nothing_literal] = ACTIONS(7984), + [sym_null_literal] = ACTIONS(7984), + [sym_empty_literal] = ACTIONS(7984), + [sym_date_literal] = ACTIONS(7986), + [anon_sym_POUND] = ACTIONS(7984), + }, + [STATE(4695)] = { + [sym_identifier] = ACTIONS(7234), + [sym_newline] = ACTIONS(7236), + [anon_sym_COLON] = ACTIONS(7236), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7234), + [aux_sym_frm_property_statement_token1] = ACTIONS(7234), + [anon_sym_DOT] = ACTIONS(7234), + [anon_sym_BANG] = ACTIONS(7236), + [aux_sym__attribute_identifier_token1] = ACTIONS(7234), + [aux_sym_option_statement_token3] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7234), + [aux_sym_preprocessor_const_token1] = ACTIONS(7234), + [sym_static_modifier] = ACTIONS(7234), + [sym__dim_keyword] = ACTIONS(7234), + [sym__redim_keyword] = ACTIONS(7234), + [aux_sym_get_accessor_token1] = ACTIONS(7234), + [aux_sym_set_accessor_token1] = ACTIONS(7234), + [aux_sym_const_declaration_token1] = ACTIONS(7234), + [anon_sym_LPAREN] = ACTIONS(7236), + [aux_sym_as_type_clause_token2] = ACTIONS(7234), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7234), + [aux_sym_visibility_token1] = ACTIONS(7234), + [aux_sym_visibility_token2] = ACTIONS(7234), + [aux_sym_elseif_fragment_token1] = ACTIONS(7234), + [aux_sym_else_fragment_token1] = ACTIONS(7234), + [aux_sym_select_statement_token1] = ACTIONS(7234), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7234), + [aux_sym__for_header_token1] = ACTIONS(7234), + [aux_sym_do_statement_token1] = ACTIONS(7234), + [aux_sym_do_condition_token1] = ACTIONS(7234), + [aux_sym_with_statement_token1] = ACTIONS(7234), + [aux_sym_exit_statement_token1] = ACTIONS(7234), + [sym_end_statement] = ACTIONS(7236), + [aux_sym_on_goto_statement_token1] = ACTIONS(7234), + [aux_sym_on_goto_statement_token2] = ACTIONS(7234), + [aux_sym_on_error_statement_token2] = ACTIONS(7234), + [sym__ambiguous_redim_statement] = ACTIONS(7236), + [aux_sym_erase_statement_token1] = ACTIONS(7234), + [aux_sym_open_statement_token1] = ACTIONS(7234), + [aux_sym_file_mode_token2] = ACTIONS(7234), + [aux_sym_file_access_token2] = ACTIONS(7234), + [aux_sym_file_lock_token2] = ACTIONS(7234), + [aux_sym_print_statement_token1] = ACTIONS(7234), + [anon_sym_PLUS] = ACTIONS(7236), + [anon_sym_DASH] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7234), + [anon_sym_QMARK] = ACTIONS(7236), + [aux_sym_close_statement_token1] = ACTIONS(7234), + [aux_sym_put_statement_token1] = ACTIONS(7234), + [aux_sym_unlock_statement_token1] = ACTIONS(7234), + [aux_sym_seek_statement_token1] = ACTIONS(7234), + [sym_reset_statement] = ACTIONS(7234), + [aux_sym_raise_event_statement_token1] = ACTIONS(7234), + [sym_stop_statement] = ACTIONS(7234), + [sym_beep_statement] = ACTIONS(7234), + [aux_sym_unload_statement_token1] = ACTIONS(7234), + [aux_sym_def_type_statement_token1] = ACTIONS(7234), + [aux_sym_def_type_statement_token2] = ACTIONS(7234), + [aux_sym_def_type_statement_token3] = ACTIONS(7234), + [aux_sym_def_type_statement_token4] = ACTIONS(7234), + [aux_sym_def_type_statement_token5] = ACTIONS(7234), + [aux_sym_def_type_statement_token6] = ACTIONS(7234), + [aux_sym_def_type_statement_token7] = ACTIONS(7234), + [aux_sym_def_type_statement_token8] = ACTIONS(7234), + [aux_sym_def_type_statement_token9] = ACTIONS(7234), + [aux_sym_def_type_statement_token10] = ACTIONS(7234), + [aux_sym_def_type_statement_token11] = ACTIONS(7234), + [aux_sym_def_type_statement_token12] = ACTIONS(7234), + [aux_sym_def_type_statement_token13] = ACTIONS(7234), + [aux_sym_def_type_statement_token14] = ACTIONS(7234), + [aux_sym_call_statement_token1] = ACTIONS(7234), + [sym__ambiguous_call_statement] = ACTIONS(7234), + [aux_sym_addressof_expression_token1] = ACTIONS(7234), + [aux_sym_type_of_expression_token1] = ACTIONS(7234), + [aux_sym_unary_expression_token1] = ACTIONS(7234), + [sym_string_literal] = ACTIONS(7236), + [sym_number_literal] = ACTIONS(7236), + [aux_sym_boolean_literal_token1] = ACTIONS(7234), + [aux_sym_boolean_literal_token2] = ACTIONS(7234), + [sym_nothing_literal] = ACTIONS(7234), + [sym_null_literal] = ACTIONS(7234), + [sym_empty_literal] = ACTIONS(7234), + [sym_date_literal] = ACTIONS(7236), + [anon_sym_POUND] = ACTIONS(7234), + }, + [STATE(4696)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10042), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4697)] = { + [sym_identifier] = ACTIONS(5699), + [sym_newline] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5701), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5699), + [aux_sym_frm_property_statement_token1] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5699), + [anon_sym_BANG] = ACTIONS(5701), + [aux_sym__attribute_identifier_token1] = ACTIONS(5699), + [aux_sym_option_statement_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5699), + [aux_sym_preprocessor_const_token1] = ACTIONS(5699), + [sym_static_modifier] = ACTIONS(5699), + [sym__dim_keyword] = ACTIONS(5699), + [sym__redim_keyword] = ACTIONS(5699), + [aux_sym_get_accessor_token1] = ACTIONS(5699), + [aux_sym_set_accessor_token1] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5701), + [aux_sym_const_declaration_token1] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(5701), + [aux_sym_as_type_clause_token2] = ACTIONS(5699), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5699), + [aux_sym_visibility_token1] = ACTIONS(5699), + [aux_sym_visibility_token2] = ACTIONS(5699), + [aux_sym_elseif_fragment_token1] = ACTIONS(5699), + [aux_sym_else_fragment_token1] = ACTIONS(5699), + [aux_sym_select_statement_token1] = ACTIONS(5699), + [aux_sym_select_statement_token2] = ACTIONS(5699), + [aux_sym__for_header_token1] = ACTIONS(5699), + [aux_sym_do_statement_token1] = ACTIONS(5699), + [aux_sym_do_condition_token1] = ACTIONS(5699), + [aux_sym_with_statement_token1] = ACTIONS(5699), + [aux_sym_exit_statement_token1] = ACTIONS(5699), + [sym_end_statement] = ACTIONS(5701), + [aux_sym_on_goto_statement_token1] = ACTIONS(5699), + [aux_sym_on_goto_statement_token2] = ACTIONS(5699), + [aux_sym_on_error_statement_token2] = ACTIONS(5699), + [sym__ambiguous_redim_statement] = ACTIONS(5701), + [aux_sym_erase_statement_token1] = ACTIONS(5699), + [aux_sym_open_statement_token1] = ACTIONS(5699), + [aux_sym_file_mode_token2] = ACTIONS(5699), + [aux_sym_file_access_token2] = ACTIONS(5699), + [aux_sym_file_lock_token2] = ACTIONS(5699), + [aux_sym_print_statement_token1] = ACTIONS(5699), + [anon_sym_PLUS] = ACTIONS(5701), + [anon_sym_DASH] = ACTIONS(5699), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10130), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10132), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5701), + [aux_sym_close_statement_token1] = ACTIONS(5699), + [aux_sym_put_statement_token1] = ACTIONS(5699), + [aux_sym_unlock_statement_token1] = ACTIONS(5699), + [aux_sym_seek_statement_token1] = ACTIONS(5699), + [sym_reset_statement] = ACTIONS(5699), + [aux_sym_raise_event_statement_token1] = ACTIONS(5699), + [sym_stop_statement] = ACTIONS(5699), + [sym_beep_statement] = ACTIONS(5699), + [aux_sym_unload_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token2] = ACTIONS(5699), + [aux_sym_def_type_statement_token3] = ACTIONS(5699), + [aux_sym_def_type_statement_token4] = ACTIONS(5699), + [aux_sym_def_type_statement_token5] = ACTIONS(5699), + [aux_sym_def_type_statement_token6] = ACTIONS(5699), + [aux_sym_def_type_statement_token7] = ACTIONS(5699), + [aux_sym_def_type_statement_token8] = ACTIONS(5699), + [aux_sym_def_type_statement_token9] = ACTIONS(5699), + [aux_sym_def_type_statement_token10] = ACTIONS(5699), + [aux_sym_def_type_statement_token11] = ACTIONS(5699), + [aux_sym_def_type_statement_token12] = ACTIONS(5699), + [aux_sym_def_type_statement_token13] = ACTIONS(5699), + [aux_sym_def_type_statement_token14] = ACTIONS(5699), + [aux_sym_call_statement_token1] = ACTIONS(5699), + [sym__ambiguous_call_statement] = ACTIONS(5699), + [aux_sym_addressof_expression_token1] = ACTIONS(5699), + [aux_sym_type_of_expression_token1] = ACTIONS(5699), + [aux_sym_unary_expression_token1] = ACTIONS(5699), + [sym_string_literal] = ACTIONS(5701), + [sym_number_literal] = ACTIONS(5701), + [aux_sym_boolean_literal_token1] = ACTIONS(5699), + [aux_sym_boolean_literal_token2] = ACTIONS(5699), + [sym_nothing_literal] = ACTIONS(5699), + [sym_null_literal] = ACTIONS(5699), + [sym_empty_literal] = ACTIONS(5699), + [sym_date_literal] = ACTIONS(5701), + [anon_sym_POUND] = ACTIONS(5699), + }, + [STATE(4698)] = { + [sym_identifier] = ACTIONS(7968), + [sym_newline] = ACTIONS(7970), + [anon_sym_COLON] = ACTIONS(7970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7968), + [aux_sym_frm_property_statement_token1] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_BANG] = ACTIONS(7970), + [aux_sym__attribute_identifier_token1] = ACTIONS(7968), + [aux_sym_option_statement_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7968), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7968), + [aux_sym_preprocessor_const_token1] = ACTIONS(7968), + [sym_static_modifier] = ACTIONS(7968), + [sym__dim_keyword] = ACTIONS(7968), + [sym__redim_keyword] = ACTIONS(7968), + [aux_sym_get_accessor_token1] = ACTIONS(7968), + [aux_sym_set_accessor_token1] = ACTIONS(7968), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_const_declaration_token1] = ACTIONS(7968), + [anon_sym_LPAREN] = ACTIONS(7970), + [aux_sym_as_type_clause_token2] = ACTIONS(7968), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7968), + [aux_sym_visibility_token1] = ACTIONS(7968), + [aux_sym_visibility_token2] = ACTIONS(7968), + [aux_sym_elseif_fragment_token1] = ACTIONS(7968), + [aux_sym_else_fragment_token1] = ACTIONS(7968), + [aux_sym_select_statement_token1] = ACTIONS(7968), + [aux_sym__for_header_token1] = ACTIONS(7968), + [aux_sym_do_statement_token1] = ACTIONS(7968), + [aux_sym_do_condition_token1] = ACTIONS(7968), + [aux_sym_with_statement_token1] = ACTIONS(7968), + [aux_sym_exit_statement_token1] = ACTIONS(7968), + [sym_end_statement] = ACTIONS(7970), + [aux_sym_on_goto_statement_token1] = ACTIONS(7968), + [aux_sym_on_goto_statement_token2] = ACTIONS(7968), + [aux_sym_on_error_statement_token2] = ACTIONS(7968), + [sym__ambiguous_redim_statement] = ACTIONS(7970), + [aux_sym_erase_statement_token1] = ACTIONS(7968), + [aux_sym_open_statement_token1] = ACTIONS(7968), + [aux_sym_file_mode_token2] = ACTIONS(7968), + [aux_sym_file_access_token2] = ACTIONS(7968), + [aux_sym_file_lock_token2] = ACTIONS(7968), + [aux_sym_print_statement_token1] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7970), + [aux_sym_close_statement_token1] = ACTIONS(7968), + [aux_sym_put_statement_token1] = ACTIONS(7968), + [aux_sym_unlock_statement_token1] = ACTIONS(7968), + [aux_sym_seek_statement_token1] = ACTIONS(7968), + [sym_reset_statement] = ACTIONS(7968), + [aux_sym_raise_event_statement_token1] = ACTIONS(7968), + [sym_stop_statement] = ACTIONS(7968), + [sym_beep_statement] = ACTIONS(7968), + [aux_sym_unload_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token2] = ACTIONS(7968), + [aux_sym_def_type_statement_token3] = ACTIONS(7968), + [aux_sym_def_type_statement_token4] = ACTIONS(7968), + [aux_sym_def_type_statement_token5] = ACTIONS(7968), + [aux_sym_def_type_statement_token6] = ACTIONS(7968), + [aux_sym_def_type_statement_token7] = ACTIONS(7968), + [aux_sym_def_type_statement_token8] = ACTIONS(7968), + [aux_sym_def_type_statement_token9] = ACTIONS(7968), + [aux_sym_def_type_statement_token10] = ACTIONS(7968), + [aux_sym_def_type_statement_token11] = ACTIONS(7968), + [aux_sym_def_type_statement_token12] = ACTIONS(7968), + [aux_sym_def_type_statement_token13] = ACTIONS(7968), + [aux_sym_def_type_statement_token14] = ACTIONS(7968), + [aux_sym_call_statement_token1] = ACTIONS(7968), + [sym__ambiguous_call_statement] = ACTIONS(7968), + [aux_sym_addressof_expression_token1] = ACTIONS(7968), + [aux_sym_type_of_expression_token1] = ACTIONS(7968), + [aux_sym_unary_expression_token1] = ACTIONS(7968), + [sym_string_literal] = ACTIONS(7970), + [sym_number_literal] = ACTIONS(7970), + [aux_sym_boolean_literal_token1] = ACTIONS(7968), + [aux_sym_boolean_literal_token2] = ACTIONS(7968), + [sym_nothing_literal] = ACTIONS(7968), + [sym_null_literal] = ACTIONS(7968), + [sym_empty_literal] = ACTIONS(7968), + [sym_date_literal] = ACTIONS(7970), + [anon_sym_POUND] = ACTIONS(7968), + }, + [STATE(4699)] = { + [sym_identifier] = ACTIONS(7984), + [sym_newline] = ACTIONS(7986), + [anon_sym_COLON] = ACTIONS(7986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7984), + [aux_sym_frm_property_statement_token1] = ACTIONS(7984), + [anon_sym_EQ] = ACTIONS(7986), + [anon_sym_DOT] = ACTIONS(7984), + [anon_sym_BANG] = ACTIONS(7986), + [aux_sym__attribute_identifier_token1] = ACTIONS(7984), + [aux_sym_option_statement_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7984), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7984), + [aux_sym_preprocessor_const_token1] = ACTIONS(7984), + [sym_static_modifier] = ACTIONS(7984), + [sym__dim_keyword] = ACTIONS(7984), + [sym__redim_keyword] = ACTIONS(7984), + [aux_sym_get_accessor_token1] = ACTIONS(7984), + [aux_sym_set_accessor_token1] = ACTIONS(7984), + [anon_sym_COMMA] = ACTIONS(7986), + [aux_sym_const_declaration_token1] = ACTIONS(7984), + [anon_sym_LPAREN] = ACTIONS(7986), + [aux_sym_as_type_clause_token2] = ACTIONS(7984), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7984), + [aux_sym_visibility_token1] = ACTIONS(7984), + [aux_sym_visibility_token2] = ACTIONS(7984), + [aux_sym_elseif_fragment_token1] = ACTIONS(7984), + [aux_sym_else_fragment_token1] = ACTIONS(7984), + [aux_sym_select_statement_token1] = ACTIONS(7984), + [aux_sym__for_header_token1] = ACTIONS(7984), + [aux_sym_do_statement_token1] = ACTIONS(7984), + [aux_sym_do_condition_token1] = ACTIONS(7984), + [aux_sym_with_statement_token1] = ACTIONS(7984), + [aux_sym_exit_statement_token1] = ACTIONS(7984), + [sym_end_statement] = ACTIONS(7986), + [aux_sym_on_goto_statement_token1] = ACTIONS(7984), + [aux_sym_on_goto_statement_token2] = ACTIONS(7984), + [aux_sym_on_error_statement_token2] = ACTIONS(7984), + [sym__ambiguous_redim_statement] = ACTIONS(7986), + [aux_sym_erase_statement_token1] = ACTIONS(7984), + [aux_sym_open_statement_token1] = ACTIONS(7984), + [aux_sym_file_mode_token2] = ACTIONS(7984), + [aux_sym_file_access_token2] = ACTIONS(7984), + [aux_sym_file_lock_token2] = ACTIONS(7984), + [aux_sym_print_statement_token1] = ACTIONS(7984), + [anon_sym_PLUS] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(7984), + [anon_sym_QMARK] = ACTIONS(7986), + [aux_sym_close_statement_token1] = ACTIONS(7984), + [aux_sym_put_statement_token1] = ACTIONS(7984), + [aux_sym_unlock_statement_token1] = ACTIONS(7984), + [aux_sym_seek_statement_token1] = ACTIONS(7984), + [sym_reset_statement] = ACTIONS(7984), + [aux_sym_raise_event_statement_token1] = ACTIONS(7984), + [sym_stop_statement] = ACTIONS(7984), + [sym_beep_statement] = ACTIONS(7984), + [aux_sym_unload_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token2] = ACTIONS(7984), + [aux_sym_def_type_statement_token3] = ACTIONS(7984), + [aux_sym_def_type_statement_token4] = ACTIONS(7984), + [aux_sym_def_type_statement_token5] = ACTIONS(7984), + [aux_sym_def_type_statement_token6] = ACTIONS(7984), + [aux_sym_def_type_statement_token7] = ACTIONS(7984), + [aux_sym_def_type_statement_token8] = ACTIONS(7984), + [aux_sym_def_type_statement_token9] = ACTIONS(7984), + [aux_sym_def_type_statement_token10] = ACTIONS(7984), + [aux_sym_def_type_statement_token11] = ACTIONS(7984), + [aux_sym_def_type_statement_token12] = ACTIONS(7984), + [aux_sym_def_type_statement_token13] = ACTIONS(7984), + [aux_sym_def_type_statement_token14] = ACTIONS(7984), + [aux_sym_call_statement_token1] = ACTIONS(7984), + [sym__ambiguous_call_statement] = ACTIONS(7984), + [aux_sym_addressof_expression_token1] = ACTIONS(7984), + [aux_sym_type_of_expression_token1] = ACTIONS(7984), + [aux_sym_unary_expression_token1] = ACTIONS(7984), + [sym_string_literal] = ACTIONS(7986), + [sym_number_literal] = ACTIONS(7986), + [aux_sym_boolean_literal_token1] = ACTIONS(7984), + [aux_sym_boolean_literal_token2] = ACTIONS(7984), + [sym_nothing_literal] = ACTIONS(7984), + [sym_null_literal] = ACTIONS(7984), + [sym_empty_literal] = ACTIONS(7984), + [sym_date_literal] = ACTIONS(7986), + [anon_sym_POUND] = ACTIONS(7984), + }, + [STATE(4700)] = { + [sym_identifier] = ACTIONS(8022), + [sym_newline] = ACTIONS(8024), + [anon_sym_COLON] = ACTIONS(8024), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8022), + [aux_sym_frm_property_statement_token1] = ACTIONS(8022), + [anon_sym_EQ] = ACTIONS(8024), + [anon_sym_DOT] = ACTIONS(8022), + [anon_sym_BANG] = ACTIONS(8024), + [aux_sym__attribute_identifier_token1] = ACTIONS(8022), + [aux_sym_option_statement_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8022), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8022), + [aux_sym_preprocessor_const_token1] = ACTIONS(8022), + [sym_static_modifier] = ACTIONS(8022), + [sym__dim_keyword] = ACTIONS(8022), + [sym__redim_keyword] = ACTIONS(8022), + [aux_sym_get_accessor_token1] = ACTIONS(8022), + [aux_sym_set_accessor_token1] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8024), + [aux_sym_const_declaration_token1] = ACTIONS(8022), + [anon_sym_LPAREN] = ACTIONS(8024), + [aux_sym_as_type_clause_token2] = ACTIONS(8022), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8022), + [aux_sym_visibility_token1] = ACTIONS(8022), + [aux_sym_visibility_token2] = ACTIONS(8022), + [aux_sym_elseif_fragment_token1] = ACTIONS(8022), + [aux_sym_else_fragment_token1] = ACTIONS(8022), + [aux_sym_select_statement_token1] = ACTIONS(8022), + [aux_sym__for_header_token1] = ACTIONS(8022), + [aux_sym_do_statement_token1] = ACTIONS(8022), + [aux_sym_do_condition_token1] = ACTIONS(8022), + [aux_sym_with_statement_token1] = ACTIONS(8022), + [aux_sym_exit_statement_token1] = ACTIONS(8022), + [sym_end_statement] = ACTIONS(8024), + [aux_sym_on_goto_statement_token1] = ACTIONS(8022), + [aux_sym_on_goto_statement_token2] = ACTIONS(8022), + [aux_sym_on_error_statement_token2] = ACTIONS(8022), + [sym__ambiguous_redim_statement] = ACTIONS(8024), + [aux_sym_erase_statement_token1] = ACTIONS(8022), + [aux_sym_open_statement_token1] = ACTIONS(8022), + [aux_sym_file_mode_token2] = ACTIONS(8022), + [aux_sym_file_access_token2] = ACTIONS(8022), + [aux_sym_file_lock_token2] = ACTIONS(8022), + [aux_sym_print_statement_token1] = ACTIONS(8022), + [anon_sym_PLUS] = ACTIONS(8024), + [anon_sym_DASH] = ACTIONS(8022), + [anon_sym_QMARK] = ACTIONS(8024), + [aux_sym_close_statement_token1] = ACTIONS(8022), + [aux_sym_put_statement_token1] = ACTIONS(8022), + [aux_sym_unlock_statement_token1] = ACTIONS(8022), + [aux_sym_seek_statement_token1] = ACTIONS(8022), + [sym_reset_statement] = ACTIONS(8022), + [aux_sym_raise_event_statement_token1] = ACTIONS(8022), + [sym_stop_statement] = ACTIONS(8022), + [sym_beep_statement] = ACTIONS(8022), + [aux_sym_unload_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token2] = ACTIONS(8022), + [aux_sym_def_type_statement_token3] = ACTIONS(8022), + [aux_sym_def_type_statement_token4] = ACTIONS(8022), + [aux_sym_def_type_statement_token5] = ACTIONS(8022), + [aux_sym_def_type_statement_token6] = ACTIONS(8022), + [aux_sym_def_type_statement_token7] = ACTIONS(8022), + [aux_sym_def_type_statement_token8] = ACTIONS(8022), + [aux_sym_def_type_statement_token9] = ACTIONS(8022), + [aux_sym_def_type_statement_token10] = ACTIONS(8022), + [aux_sym_def_type_statement_token11] = ACTIONS(8022), + [aux_sym_def_type_statement_token12] = ACTIONS(8022), + [aux_sym_def_type_statement_token13] = ACTIONS(8022), + [aux_sym_def_type_statement_token14] = ACTIONS(8022), + [aux_sym_call_statement_token1] = ACTIONS(8022), + [sym__ambiguous_call_statement] = ACTIONS(8022), + [aux_sym_addressof_expression_token1] = ACTIONS(8022), + [aux_sym_type_of_expression_token1] = ACTIONS(8022), + [aux_sym_unary_expression_token1] = ACTIONS(8022), + [sym_string_literal] = ACTIONS(8024), + [sym_number_literal] = ACTIONS(8024), + [aux_sym_boolean_literal_token1] = ACTIONS(8022), + [aux_sym_boolean_literal_token2] = ACTIONS(8022), + [sym_nothing_literal] = ACTIONS(8022), + [sym_null_literal] = ACTIONS(8022), + [sym_empty_literal] = ACTIONS(8022), + [sym_date_literal] = ACTIONS(8024), + [anon_sym_POUND] = ACTIONS(8022), + }, + [STATE(4701)] = { + [sym_char_position] = STATE(656), + [aux_sym_output_list_repeat1] = STATE(4750), + [sym_identifier] = ACTIONS(7631), + [sym_newline] = ACTIONS(7633), + [anon_sym_COLON] = ACTIONS(7633), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7631), + [aux_sym_frm_property_statement_token1] = ACTIONS(7631), + [anon_sym_DOT] = ACTIONS(7631), + [anon_sym_BANG] = ACTIONS(7633), + [aux_sym__attribute_identifier_token1] = ACTIONS(7631), + [aux_sym_option_statement_token3] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7631), + [aux_sym_preprocessor_const_token1] = ACTIONS(7631), + [sym_static_modifier] = ACTIONS(7631), + [sym__dim_keyword] = ACTIONS(7631), + [sym__redim_keyword] = ACTIONS(7631), + [aux_sym_get_accessor_token1] = ACTIONS(7631), + [aux_sym_set_accessor_token1] = ACTIONS(7631), + [anon_sym_COMMA] = ACTIONS(10134), + [aux_sym_const_declaration_token1] = ACTIONS(7631), + [anon_sym_LPAREN] = ACTIONS(7633), + [aux_sym_as_type_clause_token2] = ACTIONS(7631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7631), + [aux_sym_visibility_token1] = ACTIONS(7631), + [aux_sym_visibility_token2] = ACTIONS(7631), + [aux_sym_elseif_fragment_token1] = ACTIONS(7631), + [aux_sym_else_fragment_token1] = ACTIONS(7631), + [aux_sym_select_statement_token1] = ACTIONS(7631), + [aux_sym__for_header_token1] = ACTIONS(7631), + [aux_sym_do_statement_token1] = ACTIONS(7631), + [aux_sym_do_condition_token1] = ACTIONS(7631), + [aux_sym_with_statement_token1] = ACTIONS(7631), + [aux_sym_exit_statement_token1] = ACTIONS(7631), + [sym_end_statement] = ACTIONS(7633), + [aux_sym_on_goto_statement_token1] = ACTIONS(7631), + [aux_sym_on_goto_statement_token2] = ACTIONS(7631), + [aux_sym_on_error_statement_token2] = ACTIONS(7631), + [sym__ambiguous_redim_statement] = ACTIONS(7633), + [aux_sym_erase_statement_token1] = ACTIONS(7631), + [aux_sym_open_statement_token1] = ACTIONS(7631), + [aux_sym_file_mode_token2] = ACTIONS(7631), + [aux_sym_file_access_token2] = ACTIONS(7631), + [aux_sym_file_lock_token2] = ACTIONS(7631), + [aux_sym_print_statement_token1] = ACTIONS(7631), + [anon_sym_PLUS] = ACTIONS(7633), + [anon_sym_DASH] = ACTIONS(7631), + [anon_sym_SEMI] = ACTIONS(10134), + [anon_sym_QMARK] = ACTIONS(7633), + [aux_sym_close_statement_token1] = ACTIONS(7631), + [aux_sym_put_statement_token1] = ACTIONS(7631), + [aux_sym_unlock_statement_token1] = ACTIONS(7631), + [aux_sym_seek_statement_token1] = ACTIONS(7631), + [sym_reset_statement] = ACTIONS(7631), + [aux_sym_raise_event_statement_token1] = ACTIONS(7631), + [sym_stop_statement] = ACTIONS(7631), + [sym_beep_statement] = ACTIONS(7631), + [aux_sym_unload_statement_token1] = ACTIONS(7631), + [aux_sym_def_type_statement_token1] = ACTIONS(7631), + [aux_sym_def_type_statement_token2] = ACTIONS(7631), + [aux_sym_def_type_statement_token3] = ACTIONS(7631), + [aux_sym_def_type_statement_token4] = ACTIONS(7631), + [aux_sym_def_type_statement_token5] = ACTIONS(7631), + [aux_sym_def_type_statement_token6] = ACTIONS(7631), + [aux_sym_def_type_statement_token7] = ACTIONS(7631), + [aux_sym_def_type_statement_token8] = ACTIONS(7631), + [aux_sym_def_type_statement_token9] = ACTIONS(7631), + [aux_sym_def_type_statement_token10] = ACTIONS(7631), + [aux_sym_def_type_statement_token11] = ACTIONS(7631), + [aux_sym_def_type_statement_token12] = ACTIONS(7631), + [aux_sym_def_type_statement_token13] = ACTIONS(7631), + [aux_sym_def_type_statement_token14] = ACTIONS(7631), + [aux_sym_call_statement_token1] = ACTIONS(7631), + [sym__ambiguous_call_statement] = ACTIONS(7631), + [aux_sym_addressof_expression_token1] = ACTIONS(7631), + [aux_sym_type_of_expression_token1] = ACTIONS(7631), + [aux_sym_unary_expression_token1] = ACTIONS(7631), + [sym_string_literal] = ACTIONS(7633), + [sym_number_literal] = ACTIONS(7633), + [aux_sym_boolean_literal_token1] = ACTIONS(7631), + [aux_sym_boolean_literal_token2] = ACTIONS(7631), + [sym_nothing_literal] = ACTIONS(7631), + [sym_null_literal] = ACTIONS(7631), + [sym_empty_literal] = ACTIONS(7631), + [sym_date_literal] = ACTIONS(7633), + [anon_sym_POUND] = ACTIONS(7631), + }, + [STATE(4702)] = { + [sym_identifier] = ACTIONS(7640), + [sym_newline] = ACTIONS(7642), + [anon_sym_COLON] = ACTIONS(7642), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7640), + [aux_sym_frm_property_statement_token1] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7640), + [anon_sym_BANG] = ACTIONS(7642), + [aux_sym__attribute_identifier_token1] = ACTIONS(7640), + [aux_sym_option_statement_token3] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7640), + [aux_sym_preprocessor_const_token1] = ACTIONS(7640), + [sym_static_modifier] = ACTIONS(7640), + [sym__dim_keyword] = ACTIONS(7640), + [sym__redim_keyword] = ACTIONS(7640), + [aux_sym_get_accessor_token1] = ACTIONS(7640), + [aux_sym_set_accessor_token1] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7642), + [aux_sym_const_declaration_token1] = ACTIONS(7640), + [anon_sym_LPAREN] = ACTIONS(7642), + [aux_sym_as_type_clause_token2] = ACTIONS(7640), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7640), + [aux_sym_visibility_token1] = ACTIONS(7640), + [aux_sym_visibility_token2] = ACTIONS(7640), + [aux_sym_elseif_fragment_token1] = ACTIONS(7640), + [aux_sym_else_fragment_token1] = ACTIONS(7640), + [aux_sym_select_statement_token1] = ACTIONS(7640), + [aux_sym__for_header_token1] = ACTIONS(7640), + [aux_sym_do_statement_token1] = ACTIONS(7640), + [aux_sym_do_condition_token1] = ACTIONS(7640), + [aux_sym_with_statement_token1] = ACTIONS(7640), + [aux_sym_exit_statement_token1] = ACTIONS(7640), + [sym_end_statement] = ACTIONS(7642), + [aux_sym_on_goto_statement_token1] = ACTIONS(7640), + [aux_sym_on_goto_statement_token2] = ACTIONS(7640), + [aux_sym_on_error_statement_token2] = ACTIONS(7640), + [sym__ambiguous_redim_statement] = ACTIONS(7642), + [aux_sym_erase_statement_token1] = ACTIONS(7640), + [aux_sym_open_statement_token1] = ACTIONS(7640), + [aux_sym_file_mode_token2] = ACTIONS(7640), + [aux_sym_file_access_token2] = ACTIONS(7640), + [aux_sym_file_lock_token2] = ACTIONS(7640), + [aux_sym_print_statement_token1] = ACTIONS(7640), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_DASH] = ACTIONS(7640), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10136), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10138), + [anon_sym_SEMI] = ACTIONS(7642), + [anon_sym_QMARK] = ACTIONS(7642), + [aux_sym_close_statement_token1] = ACTIONS(7640), + [aux_sym_put_statement_token1] = ACTIONS(7640), + [aux_sym_unlock_statement_token1] = ACTIONS(7640), + [aux_sym_seek_statement_token1] = ACTIONS(7640), + [sym_reset_statement] = ACTIONS(7640), + [aux_sym_raise_event_statement_token1] = ACTIONS(7640), + [sym_stop_statement] = ACTIONS(7640), + [sym_beep_statement] = ACTIONS(7640), + [aux_sym_unload_statement_token1] = ACTIONS(7640), + [aux_sym_def_type_statement_token1] = ACTIONS(7640), + [aux_sym_def_type_statement_token2] = ACTIONS(7640), + [aux_sym_def_type_statement_token3] = ACTIONS(7640), + [aux_sym_def_type_statement_token4] = ACTIONS(7640), + [aux_sym_def_type_statement_token5] = ACTIONS(7640), + [aux_sym_def_type_statement_token6] = ACTIONS(7640), + [aux_sym_def_type_statement_token7] = ACTIONS(7640), + [aux_sym_def_type_statement_token8] = ACTIONS(7640), + [aux_sym_def_type_statement_token9] = ACTIONS(7640), + [aux_sym_def_type_statement_token10] = ACTIONS(7640), + [aux_sym_def_type_statement_token11] = ACTIONS(7640), + [aux_sym_def_type_statement_token12] = ACTIONS(7640), + [aux_sym_def_type_statement_token13] = ACTIONS(7640), + [aux_sym_def_type_statement_token14] = ACTIONS(7640), + [aux_sym_call_statement_token1] = ACTIONS(7640), + [sym__ambiguous_call_statement] = ACTIONS(7640), + [aux_sym_addressof_expression_token1] = ACTIONS(7640), + [aux_sym_type_of_expression_token1] = ACTIONS(7640), + [aux_sym_unary_expression_token1] = ACTIONS(7640), + [sym_string_literal] = ACTIONS(7642), + [sym_number_literal] = ACTIONS(7642), + [aux_sym_boolean_literal_token1] = ACTIONS(7640), + [aux_sym_boolean_literal_token2] = ACTIONS(7640), + [sym_nothing_literal] = ACTIONS(7640), + [sym_null_literal] = ACTIONS(7640), + [sym_empty_literal] = ACTIONS(7640), + [sym_date_literal] = ACTIONS(7642), + [anon_sym_POUND] = ACTIONS(7640), + }, + [STATE(4703)] = { + [sym_identifier] = ACTIONS(7647), + [sym_newline] = ACTIONS(7649), + [anon_sym_COLON] = ACTIONS(7649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7647), + [aux_sym_frm_property_statement_token1] = ACTIONS(7647), + [anon_sym_DOT] = ACTIONS(7647), + [anon_sym_BANG] = ACTIONS(7649), + [aux_sym__attribute_identifier_token1] = ACTIONS(7647), + [aux_sym_option_statement_token3] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7647), + [aux_sym_preprocessor_const_token1] = ACTIONS(7647), + [sym_static_modifier] = ACTIONS(7647), + [sym__dim_keyword] = ACTIONS(7647), + [sym__redim_keyword] = ACTIONS(7647), + [aux_sym_get_accessor_token1] = ACTIONS(7647), + [aux_sym_set_accessor_token1] = ACTIONS(7647), + [anon_sym_COMMA] = ACTIONS(7649), + [aux_sym_const_declaration_token1] = ACTIONS(7647), + [anon_sym_LPAREN] = ACTIONS(7649), + [aux_sym_as_type_clause_token2] = ACTIONS(7647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7647), + [aux_sym_visibility_token1] = ACTIONS(7647), + [aux_sym_visibility_token2] = ACTIONS(7647), + [aux_sym_elseif_fragment_token1] = ACTIONS(7647), + [aux_sym_else_fragment_token1] = ACTIONS(7647), + [aux_sym_select_statement_token1] = ACTIONS(7647), + [aux_sym__for_header_token1] = ACTIONS(7647), + [aux_sym_do_statement_token1] = ACTIONS(7647), + [aux_sym_do_condition_token1] = ACTIONS(7647), + [aux_sym_with_statement_token1] = ACTIONS(7647), + [aux_sym_exit_statement_token1] = ACTIONS(7647), + [sym_end_statement] = ACTIONS(7649), + [aux_sym_on_goto_statement_token1] = ACTIONS(7647), + [aux_sym_on_goto_statement_token2] = ACTIONS(7647), + [aux_sym_on_error_statement_token2] = ACTIONS(7647), + [sym__ambiguous_redim_statement] = ACTIONS(7649), + [aux_sym_erase_statement_token1] = ACTIONS(7647), + [aux_sym_open_statement_token1] = ACTIONS(7647), + [aux_sym_file_mode_token2] = ACTIONS(7647), + [aux_sym_file_access_token2] = ACTIONS(7647), + [aux_sym_file_lock_token2] = ACTIONS(7647), + [aux_sym_print_statement_token1] = ACTIONS(7647), + [anon_sym_PLUS] = ACTIONS(7649), + [anon_sym_DASH] = ACTIONS(7647), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10136), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10138), + [anon_sym_SEMI] = ACTIONS(7649), + [anon_sym_QMARK] = ACTIONS(7649), + [aux_sym_close_statement_token1] = ACTIONS(7647), + [aux_sym_put_statement_token1] = ACTIONS(7647), + [aux_sym_unlock_statement_token1] = ACTIONS(7647), + [aux_sym_seek_statement_token1] = ACTIONS(7647), + [sym_reset_statement] = ACTIONS(7647), + [aux_sym_raise_event_statement_token1] = ACTIONS(7647), + [sym_stop_statement] = ACTIONS(7647), + [sym_beep_statement] = ACTIONS(7647), + [aux_sym_unload_statement_token1] = ACTIONS(7647), + [aux_sym_def_type_statement_token1] = ACTIONS(7647), + [aux_sym_def_type_statement_token2] = ACTIONS(7647), + [aux_sym_def_type_statement_token3] = ACTIONS(7647), + [aux_sym_def_type_statement_token4] = ACTIONS(7647), + [aux_sym_def_type_statement_token5] = ACTIONS(7647), + [aux_sym_def_type_statement_token6] = ACTIONS(7647), + [aux_sym_def_type_statement_token7] = ACTIONS(7647), + [aux_sym_def_type_statement_token8] = ACTIONS(7647), + [aux_sym_def_type_statement_token9] = ACTIONS(7647), + [aux_sym_def_type_statement_token10] = ACTIONS(7647), + [aux_sym_def_type_statement_token11] = ACTIONS(7647), + [aux_sym_def_type_statement_token12] = ACTIONS(7647), + [aux_sym_def_type_statement_token13] = ACTIONS(7647), + [aux_sym_def_type_statement_token14] = ACTIONS(7647), + [aux_sym_call_statement_token1] = ACTIONS(7647), + [sym__ambiguous_call_statement] = ACTIONS(7647), + [aux_sym_addressof_expression_token1] = ACTIONS(7647), + [aux_sym_type_of_expression_token1] = ACTIONS(7647), + [aux_sym_unary_expression_token1] = ACTIONS(7647), + [sym_string_literal] = ACTIONS(7649), + [sym_number_literal] = ACTIONS(7649), + [aux_sym_boolean_literal_token1] = ACTIONS(7647), + [aux_sym_boolean_literal_token2] = ACTIONS(7647), + [sym_nothing_literal] = ACTIONS(7647), + [sym_null_literal] = ACTIONS(7647), + [sym_empty_literal] = ACTIONS(7647), + [sym_date_literal] = ACTIONS(7649), + [anon_sym_POUND] = ACTIONS(7647), + }, + [STATE(4704)] = { + [sym_fixed_string_length] = STATE(5695), + [sym_array_bounds] = STATE(6128), + [sym_identifier] = ACTIONS(7230), + [sym_newline] = ACTIONS(7232), + [anon_sym_COLON] = ACTIONS(7232), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7230), + [aux_sym_frm_property_statement_token1] = ACTIONS(7230), + [anon_sym_EQ] = ACTIONS(7232), + [anon_sym_DOT] = ACTIONS(7230), + [anon_sym_BANG] = ACTIONS(7232), + [aux_sym__attribute_identifier_token1] = ACTIONS(7230), + [aux_sym_option_statement_token3] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7230), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7230), + [aux_sym_preprocessor_const_token1] = ACTIONS(7230), + [sym_static_modifier] = ACTIONS(7230), + [sym__dim_keyword] = ACTIONS(7230), + [sym__redim_keyword] = ACTIONS(7230), + [aux_sym_get_accessor_token1] = ACTIONS(7230), + [aux_sym_set_accessor_token1] = ACTIONS(7230), + [anon_sym_COMMA] = ACTIONS(7232), + [aux_sym_const_declaration_token1] = ACTIONS(7230), + [anon_sym_LPAREN] = ACTIONS(10140), + [aux_sym_as_type_clause_token2] = ACTIONS(7230), + [anon_sym_STAR] = ACTIONS(10142), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7230), + [aux_sym_visibility_token1] = ACTIONS(7230), + [aux_sym_visibility_token2] = ACTIONS(7230), + [aux_sym_elseif_fragment_token1] = ACTIONS(7230), + [aux_sym_else_fragment_token1] = ACTIONS(7230), + [aux_sym_select_statement_token1] = ACTIONS(7230), + [aux_sym__for_header_token1] = ACTIONS(7230), + [aux_sym_do_statement_token1] = ACTIONS(7230), + [aux_sym_do_condition_token1] = ACTIONS(7230), + [aux_sym_with_statement_token1] = ACTIONS(7230), + [aux_sym_exit_statement_token1] = ACTIONS(7230), + [sym_end_statement] = ACTIONS(7232), + [aux_sym_on_goto_statement_token1] = ACTIONS(7230), + [aux_sym_on_goto_statement_token2] = ACTIONS(7230), + [aux_sym_on_error_statement_token2] = ACTIONS(7230), + [sym__ambiguous_redim_statement] = ACTIONS(7232), + [aux_sym_erase_statement_token1] = ACTIONS(7230), + [aux_sym_open_statement_token1] = ACTIONS(7230), + [aux_sym_file_mode_token2] = ACTIONS(7230), + [aux_sym_file_access_token2] = ACTIONS(7230), + [aux_sym_file_lock_token2] = ACTIONS(7230), + [aux_sym_print_statement_token1] = ACTIONS(7230), + [anon_sym_PLUS] = ACTIONS(7232), + [anon_sym_DASH] = ACTIONS(7230), + [anon_sym_QMARK] = ACTIONS(7232), + [aux_sym_close_statement_token1] = ACTIONS(7230), + [aux_sym_put_statement_token1] = ACTIONS(7230), + [aux_sym_unlock_statement_token1] = ACTIONS(7230), + [aux_sym_seek_statement_token1] = ACTIONS(7230), + [sym_reset_statement] = ACTIONS(7230), + [aux_sym_raise_event_statement_token1] = ACTIONS(7230), + [sym_stop_statement] = ACTIONS(7230), + [sym_beep_statement] = ACTIONS(7230), + [aux_sym_unload_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token1] = ACTIONS(7230), + [aux_sym_def_type_statement_token2] = ACTIONS(7230), + [aux_sym_def_type_statement_token3] = ACTIONS(7230), + [aux_sym_def_type_statement_token4] = ACTIONS(7230), + [aux_sym_def_type_statement_token5] = ACTIONS(7230), + [aux_sym_def_type_statement_token6] = ACTIONS(7230), + [aux_sym_def_type_statement_token7] = ACTIONS(7230), + [aux_sym_def_type_statement_token8] = ACTIONS(7230), + [aux_sym_def_type_statement_token9] = ACTIONS(7230), + [aux_sym_def_type_statement_token10] = ACTIONS(7230), + [aux_sym_def_type_statement_token11] = ACTIONS(7230), + [aux_sym_def_type_statement_token12] = ACTIONS(7230), + [aux_sym_def_type_statement_token13] = ACTIONS(7230), + [aux_sym_def_type_statement_token14] = ACTIONS(7230), + [aux_sym_call_statement_token1] = ACTIONS(7230), + [sym__ambiguous_call_statement] = ACTIONS(7230), + [aux_sym_addressof_expression_token1] = ACTIONS(7230), + [aux_sym_type_of_expression_token1] = ACTIONS(7230), + [aux_sym_unary_expression_token1] = ACTIONS(7230), + [sym_string_literal] = ACTIONS(7232), + [sym_number_literal] = ACTIONS(7232), + [aux_sym_boolean_literal_token1] = ACTIONS(7230), + [aux_sym_boolean_literal_token2] = ACTIONS(7230), + [sym_nothing_literal] = ACTIONS(7230), + [sym_null_literal] = ACTIONS(7230), + [sym_empty_literal] = ACTIONS(7230), + [sym_date_literal] = ACTIONS(7232), + [anon_sym_POUND] = ACTIONS(7230), + }, + [STATE(4705)] = { + [sym_identifier] = ACTIONS(5699), + [sym_newline] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5701), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5699), + [aux_sym_frm_property_statement_token1] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5699), + [anon_sym_BANG] = ACTIONS(5701), + [aux_sym__attribute_identifier_token1] = ACTIONS(5699), + [aux_sym_option_statement_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5699), + [aux_sym_preprocessor_const_token1] = ACTIONS(5699), + [sym_static_modifier] = ACTIONS(5699), + [sym__dim_keyword] = ACTIONS(5699), + [sym__redim_keyword] = ACTIONS(5699), + [aux_sym_get_accessor_token1] = ACTIONS(5699), + [aux_sym_set_accessor_token1] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5701), + [aux_sym_const_declaration_token1] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(5701), + [aux_sym_as_type_clause_token2] = ACTIONS(5699), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5699), + [aux_sym_visibility_token1] = ACTIONS(5699), + [aux_sym_visibility_token2] = ACTIONS(5699), + [aux_sym_elseif_fragment_token1] = ACTIONS(5699), + [aux_sym_else_fragment_token1] = ACTIONS(5699), + [aux_sym_select_statement_token1] = ACTIONS(5699), + [aux_sym__for_header_token1] = ACTIONS(5699), + [aux_sym_do_statement_token1] = ACTIONS(5699), + [aux_sym_do_statement_token2] = ACTIONS(5699), + [aux_sym_do_condition_token1] = ACTIONS(5699), + [aux_sym_with_statement_token1] = ACTIONS(5699), + [aux_sym_exit_statement_token1] = ACTIONS(5699), + [sym_end_statement] = ACTIONS(5701), + [aux_sym_on_goto_statement_token1] = ACTIONS(5699), + [aux_sym_on_goto_statement_token2] = ACTIONS(5699), + [aux_sym_on_error_statement_token2] = ACTIONS(5699), + [sym__ambiguous_redim_statement] = ACTIONS(5701), + [aux_sym_erase_statement_token1] = ACTIONS(5699), + [aux_sym_open_statement_token1] = ACTIONS(5699), + [aux_sym_file_mode_token2] = ACTIONS(5699), + [aux_sym_file_access_token2] = ACTIONS(5699), + [aux_sym_file_lock_token2] = ACTIONS(5699), + [aux_sym_print_statement_token1] = ACTIONS(5699), + [anon_sym_PLUS] = ACTIONS(5701), + [anon_sym_DASH] = ACTIONS(5699), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10144), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10146), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5701), + [aux_sym_close_statement_token1] = ACTIONS(5699), + [aux_sym_put_statement_token1] = ACTIONS(5699), + [aux_sym_unlock_statement_token1] = ACTIONS(5699), + [aux_sym_seek_statement_token1] = ACTIONS(5699), + [sym_reset_statement] = ACTIONS(5699), + [aux_sym_raise_event_statement_token1] = ACTIONS(5699), + [sym_stop_statement] = ACTIONS(5699), + [sym_beep_statement] = ACTIONS(5699), + [aux_sym_unload_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token2] = ACTIONS(5699), + [aux_sym_def_type_statement_token3] = ACTIONS(5699), + [aux_sym_def_type_statement_token4] = ACTIONS(5699), + [aux_sym_def_type_statement_token5] = ACTIONS(5699), + [aux_sym_def_type_statement_token6] = ACTIONS(5699), + [aux_sym_def_type_statement_token7] = ACTIONS(5699), + [aux_sym_def_type_statement_token8] = ACTIONS(5699), + [aux_sym_def_type_statement_token9] = ACTIONS(5699), + [aux_sym_def_type_statement_token10] = ACTIONS(5699), + [aux_sym_def_type_statement_token11] = ACTIONS(5699), + [aux_sym_def_type_statement_token12] = ACTIONS(5699), + [aux_sym_def_type_statement_token13] = ACTIONS(5699), + [aux_sym_def_type_statement_token14] = ACTIONS(5699), + [aux_sym_call_statement_token1] = ACTIONS(5699), + [sym__ambiguous_call_statement] = ACTIONS(5699), + [aux_sym_addressof_expression_token1] = ACTIONS(5699), + [aux_sym_type_of_expression_token1] = ACTIONS(5699), + [aux_sym_unary_expression_token1] = ACTIONS(5699), + [sym_string_literal] = ACTIONS(5701), + [sym_number_literal] = ACTIONS(5701), + [aux_sym_boolean_literal_token1] = ACTIONS(5699), + [aux_sym_boolean_literal_token2] = ACTIONS(5699), + [sym_nothing_literal] = ACTIONS(5699), + [sym_null_literal] = ACTIONS(5699), + [sym_empty_literal] = ACTIONS(5699), + [sym_date_literal] = ACTIONS(5701), + [anon_sym_POUND] = ACTIONS(5699), + }, + [STATE(4706)] = { + [sym_identifier] = ACTIONS(5752), + [sym_newline] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5752), + [aux_sym_frm_property_statement_token1] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5752), + [anon_sym_BANG] = ACTIONS(5754), + [aux_sym__attribute_identifier_token1] = ACTIONS(5752), + [aux_sym_option_statement_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5752), + [aux_sym_preprocessor_const_token1] = ACTIONS(5752), + [sym_static_modifier] = ACTIONS(5752), + [sym__dim_keyword] = ACTIONS(5752), + [sym__redim_keyword] = ACTIONS(5752), + [aux_sym_get_accessor_token1] = ACTIONS(5752), + [aux_sym_set_accessor_token1] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5754), + [aux_sym_const_declaration_token1] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [aux_sym_as_type_clause_token2] = ACTIONS(5752), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5752), + [aux_sym_visibility_token1] = ACTIONS(5752), + [aux_sym_visibility_token2] = ACTIONS(5752), + [aux_sym_elseif_fragment_token1] = ACTIONS(5752), + [aux_sym_else_fragment_token1] = ACTIONS(5752), + [aux_sym_select_statement_token1] = ACTIONS(5752), + [aux_sym__for_header_token1] = ACTIONS(5752), + [aux_sym_do_statement_token1] = ACTIONS(5752), + [aux_sym_do_statement_token2] = ACTIONS(5752), + [aux_sym_do_condition_token1] = ACTIONS(5752), + [aux_sym_with_statement_token1] = ACTIONS(5752), + [aux_sym_exit_statement_token1] = ACTIONS(5752), + [sym_end_statement] = ACTIONS(5754), + [aux_sym_on_goto_statement_token1] = ACTIONS(5752), + [aux_sym_on_goto_statement_token2] = ACTIONS(5752), + [aux_sym_on_error_statement_token2] = ACTIONS(5752), + [sym__ambiguous_redim_statement] = ACTIONS(5754), + [aux_sym_erase_statement_token1] = ACTIONS(5752), + [aux_sym_open_statement_token1] = ACTIONS(5752), + [aux_sym_file_mode_token2] = ACTIONS(5752), + [aux_sym_file_access_token2] = ACTIONS(5752), + [aux_sym_file_lock_token2] = ACTIONS(5752), + [aux_sym_print_statement_token1] = ACTIONS(5752), + [anon_sym_PLUS] = ACTIONS(5754), + [anon_sym_DASH] = ACTIONS(5752), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10144), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10146), + [anon_sym_SEMI] = ACTIONS(5754), + [anon_sym_QMARK] = ACTIONS(5754), + [aux_sym_close_statement_token1] = ACTIONS(5752), + [aux_sym_put_statement_token1] = ACTIONS(5752), + [aux_sym_unlock_statement_token1] = ACTIONS(5752), + [aux_sym_seek_statement_token1] = ACTIONS(5752), + [sym_reset_statement] = ACTIONS(5752), + [aux_sym_raise_event_statement_token1] = ACTIONS(5752), + [sym_stop_statement] = ACTIONS(5752), + [sym_beep_statement] = ACTIONS(5752), + [aux_sym_unload_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token2] = ACTIONS(5752), + [aux_sym_def_type_statement_token3] = ACTIONS(5752), + [aux_sym_def_type_statement_token4] = ACTIONS(5752), + [aux_sym_def_type_statement_token5] = ACTIONS(5752), + [aux_sym_def_type_statement_token6] = ACTIONS(5752), + [aux_sym_def_type_statement_token7] = ACTIONS(5752), + [aux_sym_def_type_statement_token8] = ACTIONS(5752), + [aux_sym_def_type_statement_token9] = ACTIONS(5752), + [aux_sym_def_type_statement_token10] = ACTIONS(5752), + [aux_sym_def_type_statement_token11] = ACTIONS(5752), + [aux_sym_def_type_statement_token12] = ACTIONS(5752), + [aux_sym_def_type_statement_token13] = ACTIONS(5752), + [aux_sym_def_type_statement_token14] = ACTIONS(5752), + [aux_sym_call_statement_token1] = ACTIONS(5752), + [sym__ambiguous_call_statement] = ACTIONS(5752), + [aux_sym_addressof_expression_token1] = ACTIONS(5752), + [aux_sym_type_of_expression_token1] = ACTIONS(5752), + [aux_sym_unary_expression_token1] = ACTIONS(5752), + [sym_string_literal] = ACTIONS(5754), + [sym_number_literal] = ACTIONS(5754), + [aux_sym_boolean_literal_token1] = ACTIONS(5752), + [aux_sym_boolean_literal_token2] = ACTIONS(5752), + [sym_nothing_literal] = ACTIONS(5752), + [sym_null_literal] = ACTIONS(5752), + [sym_empty_literal] = ACTIONS(5752), + [sym_date_literal] = ACTIONS(5754), + [anon_sym_POUND] = ACTIONS(5752), + }, + [STATE(4707)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_statement_token2] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(4708)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_statement_token2] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(4709)] = { + [aux_sym__argument_sequence_repeat1] = STATE(5404), + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(5410), + [sym_identifier] = ACTIONS(7651), + [sym_newline] = ACTIONS(7653), + [anon_sym_COLON] = ACTIONS(7653), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7651), + [aux_sym_frm_property_statement_token1] = ACTIONS(7651), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_BANG] = ACTIONS(7653), + [aux_sym__attribute_identifier_token1] = ACTIONS(7651), + [aux_sym_option_statement_token3] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7651), + [aux_sym_preprocessor_const_token1] = ACTIONS(7651), + [sym_static_modifier] = ACTIONS(7651), + [sym__dim_keyword] = ACTIONS(7651), + [sym__redim_keyword] = ACTIONS(7651), + [aux_sym_get_accessor_token1] = ACTIONS(7651), + [aux_sym_set_accessor_token1] = ACTIONS(7651), + [anon_sym_COMMA] = ACTIONS(10148), + [aux_sym_const_declaration_token1] = ACTIONS(7651), + [anon_sym_LPAREN] = ACTIONS(7653), + [aux_sym_as_type_clause_token2] = ACTIONS(7651), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7651), + [aux_sym_visibility_token1] = ACTIONS(7651), + [aux_sym_visibility_token2] = ACTIONS(7651), + [aux_sym_elseif_fragment_token1] = ACTIONS(7651), + [aux_sym_else_fragment_token1] = ACTIONS(7651), + [aux_sym_select_statement_token1] = ACTIONS(7651), + [aux_sym__for_header_token1] = ACTIONS(7651), + [aux_sym_do_statement_token1] = ACTIONS(7651), + [aux_sym_do_condition_token1] = ACTIONS(7651), + [aux_sym_with_statement_token1] = ACTIONS(7651), + [aux_sym_exit_statement_token1] = ACTIONS(7651), + [sym_end_statement] = ACTIONS(7653), + [aux_sym_on_goto_statement_token1] = ACTIONS(7651), + [aux_sym_on_goto_statement_token2] = ACTIONS(7651), + [aux_sym_on_error_statement_token2] = ACTIONS(7651), + [sym__ambiguous_redim_statement] = ACTIONS(7653), + [aux_sym_erase_statement_token1] = ACTIONS(7651), + [aux_sym_open_statement_token1] = ACTIONS(7651), + [aux_sym_file_mode_token2] = ACTIONS(7651), + [aux_sym_file_access_token2] = ACTIONS(7651), + [aux_sym_file_lock_token2] = ACTIONS(7651), + [aux_sym_print_statement_token1] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_SEMI] = ACTIONS(10150), + [anon_sym_QMARK] = ACTIONS(7653), + [aux_sym_close_statement_token1] = ACTIONS(7651), + [aux_sym_put_statement_token1] = ACTIONS(7651), + [aux_sym_unlock_statement_token1] = ACTIONS(7651), + [aux_sym_seek_statement_token1] = ACTIONS(7651), + [sym_reset_statement] = ACTIONS(7651), + [aux_sym_raise_event_statement_token1] = ACTIONS(7651), + [sym_stop_statement] = ACTIONS(7651), + [sym_beep_statement] = ACTIONS(7651), + [aux_sym_unload_statement_token1] = ACTIONS(7651), + [aux_sym_def_type_statement_token1] = ACTIONS(7651), + [aux_sym_def_type_statement_token2] = ACTIONS(7651), + [aux_sym_def_type_statement_token3] = ACTIONS(7651), + [aux_sym_def_type_statement_token4] = ACTIONS(7651), + [aux_sym_def_type_statement_token5] = ACTIONS(7651), + [aux_sym_def_type_statement_token6] = ACTIONS(7651), + [aux_sym_def_type_statement_token7] = ACTIONS(7651), + [aux_sym_def_type_statement_token8] = ACTIONS(7651), + [aux_sym_def_type_statement_token9] = ACTIONS(7651), + [aux_sym_def_type_statement_token10] = ACTIONS(7651), + [aux_sym_def_type_statement_token11] = ACTIONS(7651), + [aux_sym_def_type_statement_token12] = ACTIONS(7651), + [aux_sym_def_type_statement_token13] = ACTIONS(7651), + [aux_sym_def_type_statement_token14] = ACTIONS(7651), + [aux_sym_call_statement_token1] = ACTIONS(7651), + [sym__ambiguous_call_statement] = ACTIONS(7651), + [aux_sym_addressof_expression_token1] = ACTIONS(7651), + [aux_sym_type_of_expression_token1] = ACTIONS(7651), + [aux_sym_unary_expression_token1] = ACTIONS(7651), + [sym_string_literal] = ACTIONS(7653), + [sym_number_literal] = ACTIONS(7653), + [aux_sym_boolean_literal_token1] = ACTIONS(7651), + [aux_sym_boolean_literal_token2] = ACTIONS(7651), + [sym_nothing_literal] = ACTIONS(7651), + [sym_null_literal] = ACTIONS(7651), + [sym_empty_literal] = ACTIONS(7651), + [sym_date_literal] = ACTIONS(7653), + [anon_sym_POUND] = ACTIONS(7651), + }, + [STATE(4710)] = { + [sym_char_position] = STATE(658), + [aux_sym_output_list_repeat1] = STATE(4751), + [sym_identifier] = ACTIONS(7474), + [sym_newline] = ACTIONS(7476), + [anon_sym_COLON] = ACTIONS(7476), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7474), + [aux_sym_frm_property_statement_token1] = ACTIONS(7474), + [anon_sym_DOT] = ACTIONS(7474), + [anon_sym_BANG] = ACTIONS(7476), + [aux_sym__attribute_identifier_token1] = ACTIONS(7474), + [aux_sym_option_statement_token3] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7474), + [aux_sym_preprocessor_const_token1] = ACTIONS(7474), + [sym_static_modifier] = ACTIONS(7474), + [sym__dim_keyword] = ACTIONS(7474), + [sym__redim_keyword] = ACTIONS(7474), + [aux_sym_get_accessor_token1] = ACTIONS(7474), + [aux_sym_set_accessor_token1] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(10134), + [aux_sym_const_declaration_token1] = ACTIONS(7474), + [anon_sym_LPAREN] = ACTIONS(7476), + [aux_sym_as_type_clause_token2] = ACTIONS(7474), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7474), + [aux_sym_visibility_token1] = ACTIONS(7474), + [aux_sym_visibility_token2] = ACTIONS(7474), + [aux_sym_elseif_fragment_token1] = ACTIONS(7474), + [aux_sym_else_fragment_token1] = ACTIONS(7474), + [aux_sym_select_statement_token1] = ACTIONS(7474), + [aux_sym__for_header_token1] = ACTIONS(7474), + [aux_sym_do_statement_token1] = ACTIONS(7474), + [aux_sym_do_condition_token1] = ACTIONS(7474), + [aux_sym_with_statement_token1] = ACTIONS(7474), + [aux_sym_exit_statement_token1] = ACTIONS(7474), + [sym_end_statement] = ACTIONS(7476), + [aux_sym_on_goto_statement_token1] = ACTIONS(7474), + [aux_sym_on_goto_statement_token2] = ACTIONS(7474), + [aux_sym_on_error_statement_token2] = ACTIONS(7474), + [sym__ambiguous_redim_statement] = ACTIONS(7476), + [aux_sym_erase_statement_token1] = ACTIONS(7474), + [aux_sym_open_statement_token1] = ACTIONS(7474), + [aux_sym_file_mode_token2] = ACTIONS(7474), + [aux_sym_file_access_token2] = ACTIONS(7474), + [aux_sym_file_lock_token2] = ACTIONS(7474), + [aux_sym_print_statement_token1] = ACTIONS(7474), + [anon_sym_PLUS] = ACTIONS(7476), + [anon_sym_DASH] = ACTIONS(7474), + [anon_sym_SEMI] = ACTIONS(10134), + [anon_sym_QMARK] = ACTIONS(7476), + [aux_sym_close_statement_token1] = ACTIONS(7474), + [aux_sym_put_statement_token1] = ACTIONS(7474), + [aux_sym_unlock_statement_token1] = ACTIONS(7474), + [aux_sym_seek_statement_token1] = ACTIONS(7474), + [sym_reset_statement] = ACTIONS(7474), + [aux_sym_raise_event_statement_token1] = ACTIONS(7474), + [sym_stop_statement] = ACTIONS(7474), + [sym_beep_statement] = ACTIONS(7474), + [aux_sym_unload_statement_token1] = ACTIONS(7474), + [aux_sym_def_type_statement_token1] = ACTIONS(7474), + [aux_sym_def_type_statement_token2] = ACTIONS(7474), + [aux_sym_def_type_statement_token3] = ACTIONS(7474), + [aux_sym_def_type_statement_token4] = ACTIONS(7474), + [aux_sym_def_type_statement_token5] = ACTIONS(7474), + [aux_sym_def_type_statement_token6] = ACTIONS(7474), + [aux_sym_def_type_statement_token7] = ACTIONS(7474), + [aux_sym_def_type_statement_token8] = ACTIONS(7474), + [aux_sym_def_type_statement_token9] = ACTIONS(7474), + [aux_sym_def_type_statement_token10] = ACTIONS(7474), + [aux_sym_def_type_statement_token11] = ACTIONS(7474), + [aux_sym_def_type_statement_token12] = ACTIONS(7474), + [aux_sym_def_type_statement_token13] = ACTIONS(7474), + [aux_sym_def_type_statement_token14] = ACTIONS(7474), + [aux_sym_call_statement_token1] = ACTIONS(7474), + [sym__ambiguous_call_statement] = ACTIONS(7474), + [aux_sym_addressof_expression_token1] = ACTIONS(7474), + [aux_sym_type_of_expression_token1] = ACTIONS(7474), + [aux_sym_unary_expression_token1] = ACTIONS(7474), + [sym_string_literal] = ACTIONS(7476), + [sym_number_literal] = ACTIONS(7476), + [aux_sym_boolean_literal_token1] = ACTIONS(7474), + [aux_sym_boolean_literal_token2] = ACTIONS(7474), + [sym_nothing_literal] = ACTIONS(7474), + [sym_null_literal] = ACTIONS(7474), + [sym_empty_literal] = ACTIONS(7474), + [sym_date_literal] = ACTIONS(7476), + [anon_sym_POUND] = ACTIONS(7474), + }, + [STATE(4711)] = { + [aux_sym__argument_sequence_repeat1] = STATE(4711), + [sym_identifier] = ACTIONS(8533), + [sym_newline] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(8535), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8533), + [aux_sym_frm_property_statement_token1] = ACTIONS(8533), + [anon_sym_DOT] = ACTIONS(8533), + [anon_sym_BANG] = ACTIONS(8535), + [aux_sym__attribute_identifier_token1] = ACTIONS(8533), + [aux_sym_option_statement_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8533), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8533), + [aux_sym_preprocessor_const_token1] = ACTIONS(8533), + [sym_static_modifier] = ACTIONS(8533), + [sym__dim_keyword] = ACTIONS(8533), + [sym__redim_keyword] = ACTIONS(8533), + [aux_sym_get_accessor_token1] = ACTIONS(8533), + [aux_sym_set_accessor_token1] = ACTIONS(8533), + [anon_sym_COMMA] = ACTIONS(10152), + [aux_sym_const_declaration_token1] = ACTIONS(8533), + [anon_sym_LPAREN] = ACTIONS(8535), + [aux_sym_as_type_clause_token2] = ACTIONS(8533), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8533), + [aux_sym_visibility_token1] = ACTIONS(8533), + [aux_sym_visibility_token2] = ACTIONS(8533), + [aux_sym_elseif_fragment_token1] = ACTIONS(8533), + [aux_sym_else_fragment_token1] = ACTIONS(8533), + [aux_sym_select_statement_token1] = ACTIONS(8533), + [aux_sym__for_header_token1] = ACTIONS(8533), + [aux_sym_do_statement_token1] = ACTIONS(8533), + [aux_sym_do_condition_token1] = ACTIONS(8533), + [aux_sym_with_statement_token1] = ACTIONS(8533), + [aux_sym_exit_statement_token1] = ACTIONS(8533), + [sym_end_statement] = ACTIONS(8535), + [aux_sym_on_goto_statement_token1] = ACTIONS(8533), + [aux_sym_on_goto_statement_token2] = ACTIONS(8533), + [aux_sym_on_error_statement_token2] = ACTIONS(8533), + [sym__ambiguous_redim_statement] = ACTIONS(8535), + [aux_sym_erase_statement_token1] = ACTIONS(8533), + [aux_sym_open_statement_token1] = ACTIONS(8533), + [aux_sym_file_mode_token2] = ACTIONS(8533), + [aux_sym_file_access_token2] = ACTIONS(8533), + [aux_sym_file_lock_token2] = ACTIONS(8533), + [aux_sym_print_statement_token1] = ACTIONS(8533), + [anon_sym_PLUS] = ACTIONS(8535), + [anon_sym_DASH] = ACTIONS(8533), + [anon_sym_QMARK] = ACTIONS(8535), + [aux_sym_close_statement_token1] = ACTIONS(8533), + [aux_sym_put_statement_token1] = ACTIONS(8533), + [aux_sym_unlock_statement_token1] = ACTIONS(8533), + [aux_sym_seek_statement_token1] = ACTIONS(8533), + [sym_reset_statement] = ACTIONS(8533), + [aux_sym_raise_event_statement_token1] = ACTIONS(8533), + [sym_stop_statement] = ACTIONS(8533), + [sym_beep_statement] = ACTIONS(8533), + [aux_sym_unload_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token2] = ACTIONS(8533), + [aux_sym_def_type_statement_token3] = ACTIONS(8533), + [aux_sym_def_type_statement_token4] = ACTIONS(8533), + [aux_sym_def_type_statement_token5] = ACTIONS(8533), + [aux_sym_def_type_statement_token6] = ACTIONS(8533), + [aux_sym_def_type_statement_token7] = ACTIONS(8533), + [aux_sym_def_type_statement_token8] = ACTIONS(8533), + [aux_sym_def_type_statement_token9] = ACTIONS(8533), + [aux_sym_def_type_statement_token10] = ACTIONS(8533), + [aux_sym_def_type_statement_token11] = ACTIONS(8533), + [aux_sym_def_type_statement_token12] = ACTIONS(8533), + [aux_sym_def_type_statement_token13] = ACTIONS(8533), + [aux_sym_def_type_statement_token14] = ACTIONS(8533), + [aux_sym_call_statement_token1] = ACTIONS(8533), + [sym__ambiguous_call_statement] = ACTIONS(8533), + [aux_sym_addressof_expression_token1] = ACTIONS(8533), + [aux_sym_type_of_expression_token1] = ACTIONS(8533), + [aux_sym_unary_expression_token1] = ACTIONS(8533), + [sym_string_literal] = ACTIONS(8535), + [sym_number_literal] = ACTIONS(8535), + [aux_sym_boolean_literal_token1] = ACTIONS(8533), + [aux_sym_boolean_literal_token2] = ACTIONS(8533), + [sym_nothing_literal] = ACTIONS(8533), + [sym_null_literal] = ACTIONS(8533), + [sym_empty_literal] = ACTIONS(8533), + [sym_date_literal] = ACTIONS(8535), + [anon_sym_POUND] = ACTIONS(8533), + }, + [STATE(4712)] = { + [sym_char_position] = STATE(619), + [aux_sym_output_list_repeat1] = STATE(4776), + [sym_identifier] = ACTIONS(7609), + [sym_newline] = ACTIONS(7611), + [anon_sym_COLON] = ACTIONS(7611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7609), + [aux_sym_frm_property_statement_token1] = ACTIONS(7609), + [anon_sym_DOT] = ACTIONS(7609), + [anon_sym_BANG] = ACTIONS(7611), + [aux_sym__attribute_identifier_token1] = ACTIONS(7609), + [aux_sym_option_statement_token3] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7609), + [aux_sym_preprocessor_const_token1] = ACTIONS(7609), + [sym_static_modifier] = ACTIONS(7609), + [sym__dim_keyword] = ACTIONS(7609), + [sym__redim_keyword] = ACTIONS(7609), + [aux_sym_get_accessor_token1] = ACTIONS(7609), + [aux_sym_set_accessor_token1] = ACTIONS(7609), + [anon_sym_COMMA] = ACTIONS(10155), + [aux_sym_const_declaration_token1] = ACTIONS(7609), + [anon_sym_LPAREN] = ACTIONS(7611), + [aux_sym_as_type_clause_token2] = ACTIONS(7609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7609), + [aux_sym_visibility_token1] = ACTIONS(7609), + [aux_sym_visibility_token2] = ACTIONS(7609), + [aux_sym_elseif_fragment_token1] = ACTIONS(7609), + [aux_sym_else_fragment_token1] = ACTIONS(7609), + [aux_sym_select_statement_token1] = ACTIONS(7609), + [aux_sym_select_statement_token2] = ACTIONS(7609), + [aux_sym__for_header_token1] = ACTIONS(7609), + [aux_sym_do_statement_token1] = ACTIONS(7609), + [aux_sym_do_condition_token1] = ACTIONS(7609), + [aux_sym_with_statement_token1] = ACTIONS(7609), + [aux_sym_exit_statement_token1] = ACTIONS(7609), + [sym_end_statement] = ACTIONS(7611), + [aux_sym_on_goto_statement_token1] = ACTIONS(7609), + [aux_sym_on_goto_statement_token2] = ACTIONS(7609), + [aux_sym_on_error_statement_token2] = ACTIONS(7609), + [sym__ambiguous_redim_statement] = ACTIONS(7611), + [aux_sym_erase_statement_token1] = ACTIONS(7609), + [aux_sym_open_statement_token1] = ACTIONS(7609), + [aux_sym_file_mode_token2] = ACTIONS(7609), + [aux_sym_file_access_token2] = ACTIONS(7609), + [aux_sym_file_lock_token2] = ACTIONS(7609), + [aux_sym_print_statement_token1] = ACTIONS(7609), + [anon_sym_PLUS] = ACTIONS(7611), + [anon_sym_DASH] = ACTIONS(7609), + [anon_sym_SEMI] = ACTIONS(10155), + [anon_sym_QMARK] = ACTIONS(7611), + [aux_sym_close_statement_token1] = ACTIONS(7609), + [aux_sym_put_statement_token1] = ACTIONS(7609), + [aux_sym_unlock_statement_token1] = ACTIONS(7609), + [aux_sym_seek_statement_token1] = ACTIONS(7609), + [sym_reset_statement] = ACTIONS(7609), + [aux_sym_raise_event_statement_token1] = ACTIONS(7609), + [sym_stop_statement] = ACTIONS(7609), + [sym_beep_statement] = ACTIONS(7609), + [aux_sym_unload_statement_token1] = ACTIONS(7609), + [aux_sym_def_type_statement_token1] = ACTIONS(7609), + [aux_sym_def_type_statement_token2] = ACTIONS(7609), + [aux_sym_def_type_statement_token3] = ACTIONS(7609), + [aux_sym_def_type_statement_token4] = ACTIONS(7609), + [aux_sym_def_type_statement_token5] = ACTIONS(7609), + [aux_sym_def_type_statement_token6] = ACTIONS(7609), + [aux_sym_def_type_statement_token7] = ACTIONS(7609), + [aux_sym_def_type_statement_token8] = ACTIONS(7609), + [aux_sym_def_type_statement_token9] = ACTIONS(7609), + [aux_sym_def_type_statement_token10] = ACTIONS(7609), + [aux_sym_def_type_statement_token11] = ACTIONS(7609), + [aux_sym_def_type_statement_token12] = ACTIONS(7609), + [aux_sym_def_type_statement_token13] = ACTIONS(7609), + [aux_sym_def_type_statement_token14] = ACTIONS(7609), + [aux_sym_call_statement_token1] = ACTIONS(7609), + [sym__ambiguous_call_statement] = ACTIONS(7609), + [aux_sym_addressof_expression_token1] = ACTIONS(7609), + [aux_sym_type_of_expression_token1] = ACTIONS(7609), + [aux_sym_unary_expression_token1] = ACTIONS(7609), + [sym_string_literal] = ACTIONS(7611), + [sym_number_literal] = ACTIONS(7611), + [aux_sym_boolean_literal_token1] = ACTIONS(7609), + [aux_sym_boolean_literal_token2] = ACTIONS(7609), + [sym_nothing_literal] = ACTIONS(7609), + [sym_null_literal] = ACTIONS(7609), + [sym_empty_literal] = ACTIONS(7609), + [sym_date_literal] = ACTIONS(7611), + [anon_sym_POUND] = ACTIONS(7609), + }, + [STATE(4713)] = { + [sym_initializer] = STATE(6818), + [sym_as_type_clause] = STATE(5492), + [sym_identifier] = ACTIONS(7287), + [sym_newline] = ACTIONS(7289), + [anon_sym_COLON] = ACTIONS(7289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7287), + [aux_sym_frm_property_statement_token1] = ACTIONS(7287), + [anon_sym_EQ] = ACTIONS(10124), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_BANG] = ACTIONS(7289), + [aux_sym__attribute_identifier_token1] = ACTIONS(7287), + [aux_sym_option_statement_token3] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7287), + [aux_sym_preprocessor_const_token1] = ACTIONS(7287), + [sym_static_modifier] = ACTIONS(7287), + [sym__dim_keyword] = ACTIONS(7287), + [sym__redim_keyword] = ACTIONS(7287), + [aux_sym_get_accessor_token1] = ACTIONS(7287), + [aux_sym_set_accessor_token1] = ACTIONS(7287), + [anon_sym_COMMA] = ACTIONS(7289), + [aux_sym_const_declaration_token1] = ACTIONS(7287), + [anon_sym_LPAREN] = ACTIONS(7289), + [aux_sym_as_type_clause_token1] = ACTIONS(10128), + [aux_sym_as_type_clause_token2] = ACTIONS(7287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7287), + [aux_sym_visibility_token1] = ACTIONS(7287), + [aux_sym_visibility_token2] = ACTIONS(7287), + [aux_sym_elseif_fragment_token1] = ACTIONS(7287), + [aux_sym_else_fragment_token1] = ACTIONS(7287), + [aux_sym_select_statement_token1] = ACTIONS(7287), + [aux_sym__for_header_token1] = ACTIONS(7287), + [aux_sym_do_statement_token1] = ACTIONS(7287), + [aux_sym_do_condition_token1] = ACTIONS(7287), + [aux_sym_with_statement_token1] = ACTIONS(7287), + [aux_sym_exit_statement_token1] = ACTIONS(7287), + [sym_end_statement] = ACTIONS(7289), + [aux_sym_on_goto_statement_token1] = ACTIONS(7287), + [aux_sym_on_goto_statement_token2] = ACTIONS(7287), + [aux_sym_on_error_statement_token2] = ACTIONS(7287), + [sym__ambiguous_redim_statement] = ACTIONS(7289), + [aux_sym_erase_statement_token1] = ACTIONS(7287), + [aux_sym_open_statement_token1] = ACTIONS(7287), + [aux_sym_file_mode_token2] = ACTIONS(7287), + [aux_sym_file_access_token2] = ACTIONS(7287), + [aux_sym_file_lock_token2] = ACTIONS(7287), + [aux_sym_print_statement_token1] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_QMARK] = ACTIONS(7289), + [aux_sym_close_statement_token1] = ACTIONS(7287), + [aux_sym_put_statement_token1] = ACTIONS(7287), + [aux_sym_unlock_statement_token1] = ACTIONS(7287), + [aux_sym_seek_statement_token1] = ACTIONS(7287), + [sym_reset_statement] = ACTIONS(7287), + [aux_sym_raise_event_statement_token1] = ACTIONS(7287), + [sym_stop_statement] = ACTIONS(7287), + [sym_beep_statement] = ACTIONS(7287), + [aux_sym_unload_statement_token1] = ACTIONS(7287), + [aux_sym_def_type_statement_token1] = ACTIONS(7287), + [aux_sym_def_type_statement_token2] = ACTIONS(7287), + [aux_sym_def_type_statement_token3] = ACTIONS(7287), + [aux_sym_def_type_statement_token4] = ACTIONS(7287), + [aux_sym_def_type_statement_token5] = ACTIONS(7287), + [aux_sym_def_type_statement_token6] = ACTIONS(7287), + [aux_sym_def_type_statement_token7] = ACTIONS(7287), + [aux_sym_def_type_statement_token8] = ACTIONS(7287), + [aux_sym_def_type_statement_token9] = ACTIONS(7287), + [aux_sym_def_type_statement_token10] = ACTIONS(7287), + [aux_sym_def_type_statement_token11] = ACTIONS(7287), + [aux_sym_def_type_statement_token12] = ACTIONS(7287), + [aux_sym_def_type_statement_token13] = ACTIONS(7287), + [aux_sym_def_type_statement_token14] = ACTIONS(7287), + [aux_sym_call_statement_token1] = ACTIONS(7287), + [sym__ambiguous_call_statement] = ACTIONS(7287), + [aux_sym_addressof_expression_token1] = ACTIONS(7287), + [aux_sym_type_of_expression_token1] = ACTIONS(7287), + [aux_sym_unary_expression_token1] = ACTIONS(7287), + [sym_string_literal] = ACTIONS(7289), + [sym_number_literal] = ACTIONS(7289), + [aux_sym_boolean_literal_token1] = ACTIONS(7287), + [aux_sym_boolean_literal_token2] = ACTIONS(7287), + [sym_nothing_literal] = ACTIONS(7287), + [sym_null_literal] = ACTIONS(7287), + [sym_empty_literal] = ACTIONS(7287), + [sym_date_literal] = ACTIONS(7289), + [anon_sym_POUND] = ACTIONS(7287), + }, + [STATE(4714)] = { + [sym_char_position] = STATE(620), + [aux_sym_output_list_repeat1] = STATE(4724), + [sym_identifier] = ACTIONS(7631), + [sym_newline] = ACTIONS(7633), + [anon_sym_COLON] = ACTIONS(7633), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7631), + [aux_sym_frm_property_statement_token1] = ACTIONS(7631), + [anon_sym_DOT] = ACTIONS(7631), + [anon_sym_BANG] = ACTIONS(7633), + [aux_sym__attribute_identifier_token1] = ACTIONS(7631), + [aux_sym_option_statement_token3] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7631), + [aux_sym_preprocessor_const_token1] = ACTIONS(7631), + [sym_static_modifier] = ACTIONS(7631), + [sym__dim_keyword] = ACTIONS(7631), + [sym__redim_keyword] = ACTIONS(7631), + [aux_sym_get_accessor_token1] = ACTIONS(7631), + [aux_sym_set_accessor_token1] = ACTIONS(7631), + [anon_sym_COMMA] = ACTIONS(10157), + [aux_sym_const_declaration_token1] = ACTIONS(7631), + [anon_sym_LPAREN] = ACTIONS(7633), + [aux_sym_as_type_clause_token2] = ACTIONS(7631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7631), + [aux_sym_visibility_token1] = ACTIONS(7631), + [aux_sym_visibility_token2] = ACTIONS(7631), + [aux_sym_elseif_fragment_token1] = ACTIONS(7631), + [aux_sym_else_fragment_token1] = ACTIONS(7631), + [aux_sym_select_statement_token1] = ACTIONS(7631), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7631), + [aux_sym__for_header_token1] = ACTIONS(7631), + [aux_sym_do_statement_token1] = ACTIONS(7631), + [aux_sym_do_condition_token1] = ACTIONS(7631), + [aux_sym_with_statement_token1] = ACTIONS(7631), + [aux_sym_exit_statement_token1] = ACTIONS(7631), + [sym_end_statement] = ACTIONS(7633), + [aux_sym_on_goto_statement_token1] = ACTIONS(7631), + [aux_sym_on_goto_statement_token2] = ACTIONS(7631), + [aux_sym_on_error_statement_token2] = ACTIONS(7631), + [sym__ambiguous_redim_statement] = ACTIONS(7633), + [aux_sym_erase_statement_token1] = ACTIONS(7631), + [aux_sym_open_statement_token1] = ACTIONS(7631), + [aux_sym_file_mode_token2] = ACTIONS(7631), + [aux_sym_file_access_token2] = ACTIONS(7631), + [aux_sym_file_lock_token2] = ACTIONS(7631), + [aux_sym_print_statement_token1] = ACTIONS(7631), + [anon_sym_PLUS] = ACTIONS(7633), + [anon_sym_DASH] = ACTIONS(7631), + [anon_sym_SEMI] = ACTIONS(10157), + [anon_sym_QMARK] = ACTIONS(7633), + [aux_sym_close_statement_token1] = ACTIONS(7631), + [aux_sym_put_statement_token1] = ACTIONS(7631), + [aux_sym_unlock_statement_token1] = ACTIONS(7631), + [aux_sym_seek_statement_token1] = ACTIONS(7631), + [sym_reset_statement] = ACTIONS(7631), + [aux_sym_raise_event_statement_token1] = ACTIONS(7631), + [sym_stop_statement] = ACTIONS(7631), + [sym_beep_statement] = ACTIONS(7631), + [aux_sym_unload_statement_token1] = ACTIONS(7631), + [aux_sym_def_type_statement_token1] = ACTIONS(7631), + [aux_sym_def_type_statement_token2] = ACTIONS(7631), + [aux_sym_def_type_statement_token3] = ACTIONS(7631), + [aux_sym_def_type_statement_token4] = ACTIONS(7631), + [aux_sym_def_type_statement_token5] = ACTIONS(7631), + [aux_sym_def_type_statement_token6] = ACTIONS(7631), + [aux_sym_def_type_statement_token7] = ACTIONS(7631), + [aux_sym_def_type_statement_token8] = ACTIONS(7631), + [aux_sym_def_type_statement_token9] = ACTIONS(7631), + [aux_sym_def_type_statement_token10] = ACTIONS(7631), + [aux_sym_def_type_statement_token11] = ACTIONS(7631), + [aux_sym_def_type_statement_token12] = ACTIONS(7631), + [aux_sym_def_type_statement_token13] = ACTIONS(7631), + [aux_sym_def_type_statement_token14] = ACTIONS(7631), + [aux_sym_call_statement_token1] = ACTIONS(7631), + [sym__ambiguous_call_statement] = ACTIONS(7631), + [aux_sym_addressof_expression_token1] = ACTIONS(7631), + [aux_sym_type_of_expression_token1] = ACTIONS(7631), + [aux_sym_unary_expression_token1] = ACTIONS(7631), + [sym_string_literal] = ACTIONS(7633), + [sym_number_literal] = ACTIONS(7633), + [aux_sym_boolean_literal_token1] = ACTIONS(7631), + [aux_sym_boolean_literal_token2] = ACTIONS(7631), + [sym_nothing_literal] = ACTIONS(7631), + [sym_null_literal] = ACTIONS(7631), + [sym_empty_literal] = ACTIONS(7631), + [sym_date_literal] = ACTIONS(7633), + [anon_sym_POUND] = ACTIONS(7631), + }, + [STATE(4715)] = { + [sym_char_position] = STATE(625), + [aux_sym_output_list_repeat1] = STATE(4776), + [sym_identifier] = ACTIONS(7460), + [sym_newline] = ACTIONS(7462), + [anon_sym_COLON] = ACTIONS(7462), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7460), + [aux_sym_frm_property_statement_token1] = ACTIONS(7460), + [anon_sym_DOT] = ACTIONS(7460), + [anon_sym_BANG] = ACTIONS(7462), + [aux_sym__attribute_identifier_token1] = ACTIONS(7460), + [aux_sym_option_statement_token3] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7460), + [aux_sym_preprocessor_const_token1] = ACTIONS(7460), + [sym_static_modifier] = ACTIONS(7460), + [sym__dim_keyword] = ACTIONS(7460), + [sym__redim_keyword] = ACTIONS(7460), + [aux_sym_get_accessor_token1] = ACTIONS(7460), + [aux_sym_set_accessor_token1] = ACTIONS(7460), + [anon_sym_COMMA] = ACTIONS(10155), + [aux_sym_const_declaration_token1] = ACTIONS(7460), + [anon_sym_LPAREN] = ACTIONS(7462), + [aux_sym_as_type_clause_token2] = ACTIONS(7460), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7460), + [aux_sym_visibility_token1] = ACTIONS(7460), + [aux_sym_visibility_token2] = ACTIONS(7460), + [aux_sym_elseif_fragment_token1] = ACTIONS(7460), + [aux_sym_else_fragment_token1] = ACTIONS(7460), + [aux_sym_select_statement_token1] = ACTIONS(7460), + [aux_sym_select_statement_token2] = ACTIONS(7460), + [aux_sym__for_header_token1] = ACTIONS(7460), + [aux_sym_do_statement_token1] = ACTIONS(7460), + [aux_sym_do_condition_token1] = ACTIONS(7460), + [aux_sym_with_statement_token1] = ACTIONS(7460), + [aux_sym_exit_statement_token1] = ACTIONS(7460), + [sym_end_statement] = ACTIONS(7462), + [aux_sym_on_goto_statement_token1] = ACTIONS(7460), + [aux_sym_on_goto_statement_token2] = ACTIONS(7460), + [aux_sym_on_error_statement_token2] = ACTIONS(7460), + [sym__ambiguous_redim_statement] = ACTIONS(7462), + [aux_sym_erase_statement_token1] = ACTIONS(7460), + [aux_sym_open_statement_token1] = ACTIONS(7460), + [aux_sym_file_mode_token2] = ACTIONS(7460), + [aux_sym_file_access_token2] = ACTIONS(7460), + [aux_sym_file_lock_token2] = ACTIONS(7460), + [aux_sym_print_statement_token1] = ACTIONS(7460), + [anon_sym_PLUS] = ACTIONS(7462), + [anon_sym_DASH] = ACTIONS(7460), + [anon_sym_SEMI] = ACTIONS(10155), + [anon_sym_QMARK] = ACTIONS(7462), + [aux_sym_close_statement_token1] = ACTIONS(7460), + [aux_sym_put_statement_token1] = ACTIONS(7460), + [aux_sym_unlock_statement_token1] = ACTIONS(7460), + [aux_sym_seek_statement_token1] = ACTIONS(7460), + [sym_reset_statement] = ACTIONS(7460), + [aux_sym_raise_event_statement_token1] = ACTIONS(7460), + [sym_stop_statement] = ACTIONS(7460), + [sym_beep_statement] = ACTIONS(7460), + [aux_sym_unload_statement_token1] = ACTIONS(7460), + [aux_sym_def_type_statement_token1] = ACTIONS(7460), + [aux_sym_def_type_statement_token2] = ACTIONS(7460), + [aux_sym_def_type_statement_token3] = ACTIONS(7460), + [aux_sym_def_type_statement_token4] = ACTIONS(7460), + [aux_sym_def_type_statement_token5] = ACTIONS(7460), + [aux_sym_def_type_statement_token6] = ACTIONS(7460), + [aux_sym_def_type_statement_token7] = ACTIONS(7460), + [aux_sym_def_type_statement_token8] = ACTIONS(7460), + [aux_sym_def_type_statement_token9] = ACTIONS(7460), + [aux_sym_def_type_statement_token10] = ACTIONS(7460), + [aux_sym_def_type_statement_token11] = ACTIONS(7460), + [aux_sym_def_type_statement_token12] = ACTIONS(7460), + [aux_sym_def_type_statement_token13] = ACTIONS(7460), + [aux_sym_def_type_statement_token14] = ACTIONS(7460), + [aux_sym_call_statement_token1] = ACTIONS(7460), + [sym__ambiguous_call_statement] = ACTIONS(7460), + [aux_sym_addressof_expression_token1] = ACTIONS(7460), + [aux_sym_type_of_expression_token1] = ACTIONS(7460), + [aux_sym_unary_expression_token1] = ACTIONS(7460), + [sym_string_literal] = ACTIONS(7462), + [sym_number_literal] = ACTIONS(7462), + [aux_sym_boolean_literal_token1] = ACTIONS(7460), + [aux_sym_boolean_literal_token2] = ACTIONS(7460), + [sym_nothing_literal] = ACTIONS(7460), + [sym_null_literal] = ACTIONS(7460), + [sym_empty_literal] = ACTIONS(7460), + [sym_date_literal] = ACTIONS(7462), + [anon_sym_POUND] = ACTIONS(7460), + }, + [STATE(4716)] = { + [sym_identifier] = ACTIONS(7640), + [sym_newline] = ACTIONS(7642), + [anon_sym_COLON] = ACTIONS(7642), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7640), + [aux_sym_frm_property_statement_token1] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7640), + [anon_sym_BANG] = ACTIONS(7642), + [aux_sym__attribute_identifier_token1] = ACTIONS(7640), + [aux_sym_option_statement_token3] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7640), + [aux_sym_preprocessor_const_token1] = ACTIONS(7640), + [sym_static_modifier] = ACTIONS(7640), + [sym__dim_keyword] = ACTIONS(7640), + [sym__redim_keyword] = ACTIONS(7640), + [aux_sym_get_accessor_token1] = ACTIONS(7640), + [aux_sym_set_accessor_token1] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7642), + [aux_sym_const_declaration_token1] = ACTIONS(7640), + [anon_sym_LPAREN] = ACTIONS(7642), + [aux_sym_as_type_clause_token2] = ACTIONS(7640), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7640), + [aux_sym_visibility_token1] = ACTIONS(7640), + [aux_sym_visibility_token2] = ACTIONS(7640), + [aux_sym_elseif_fragment_token1] = ACTIONS(7640), + [aux_sym_else_fragment_token1] = ACTIONS(7640), + [aux_sym_select_statement_token1] = ACTIONS(7640), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7640), + [aux_sym__for_header_token1] = ACTIONS(7640), + [aux_sym_do_statement_token1] = ACTIONS(7640), + [aux_sym_do_condition_token1] = ACTIONS(7640), + [aux_sym_with_statement_token1] = ACTIONS(7640), + [aux_sym_exit_statement_token1] = ACTIONS(7640), + [sym_end_statement] = ACTIONS(7642), + [aux_sym_on_goto_statement_token1] = ACTIONS(7640), + [aux_sym_on_goto_statement_token2] = ACTIONS(7640), + [aux_sym_on_error_statement_token2] = ACTIONS(7640), + [sym__ambiguous_redim_statement] = ACTIONS(7642), + [aux_sym_erase_statement_token1] = ACTIONS(7640), + [aux_sym_open_statement_token1] = ACTIONS(7640), + [aux_sym_file_mode_token2] = ACTIONS(7640), + [aux_sym_file_access_token2] = ACTIONS(7640), + [aux_sym_file_lock_token2] = ACTIONS(7640), + [aux_sym_print_statement_token1] = ACTIONS(7640), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_DASH] = ACTIONS(7640), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10159), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10161), + [anon_sym_SEMI] = ACTIONS(7642), + [anon_sym_QMARK] = ACTIONS(7642), + [aux_sym_close_statement_token1] = ACTIONS(7640), + [aux_sym_put_statement_token1] = ACTIONS(7640), + [aux_sym_unlock_statement_token1] = ACTIONS(7640), + [aux_sym_seek_statement_token1] = ACTIONS(7640), + [sym_reset_statement] = ACTIONS(7640), + [aux_sym_raise_event_statement_token1] = ACTIONS(7640), + [sym_stop_statement] = ACTIONS(7640), + [sym_beep_statement] = ACTIONS(7640), + [aux_sym_unload_statement_token1] = ACTIONS(7640), + [aux_sym_def_type_statement_token1] = ACTIONS(7640), + [aux_sym_def_type_statement_token2] = ACTIONS(7640), + [aux_sym_def_type_statement_token3] = ACTIONS(7640), + [aux_sym_def_type_statement_token4] = ACTIONS(7640), + [aux_sym_def_type_statement_token5] = ACTIONS(7640), + [aux_sym_def_type_statement_token6] = ACTIONS(7640), + [aux_sym_def_type_statement_token7] = ACTIONS(7640), + [aux_sym_def_type_statement_token8] = ACTIONS(7640), + [aux_sym_def_type_statement_token9] = ACTIONS(7640), + [aux_sym_def_type_statement_token10] = ACTIONS(7640), + [aux_sym_def_type_statement_token11] = ACTIONS(7640), + [aux_sym_def_type_statement_token12] = ACTIONS(7640), + [aux_sym_def_type_statement_token13] = ACTIONS(7640), + [aux_sym_def_type_statement_token14] = ACTIONS(7640), + [aux_sym_call_statement_token1] = ACTIONS(7640), + [sym__ambiguous_call_statement] = ACTIONS(7640), + [aux_sym_addressof_expression_token1] = ACTIONS(7640), + [aux_sym_type_of_expression_token1] = ACTIONS(7640), + [aux_sym_unary_expression_token1] = ACTIONS(7640), + [sym_string_literal] = ACTIONS(7642), + [sym_number_literal] = ACTIONS(7642), + [aux_sym_boolean_literal_token1] = ACTIONS(7640), + [aux_sym_boolean_literal_token2] = ACTIONS(7640), + [sym_nothing_literal] = ACTIONS(7640), + [sym_null_literal] = ACTIONS(7640), + [sym_empty_literal] = ACTIONS(7640), + [sym_date_literal] = ACTIONS(7642), + [anon_sym_POUND] = ACTIONS(7640), + }, + [STATE(4717)] = { + [sym_identifier] = ACTIONS(7647), + [sym_newline] = ACTIONS(7649), + [anon_sym_COLON] = ACTIONS(7649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7647), + [aux_sym_frm_property_statement_token1] = ACTIONS(7647), + [anon_sym_DOT] = ACTIONS(7647), + [anon_sym_BANG] = ACTIONS(7649), + [aux_sym__attribute_identifier_token1] = ACTIONS(7647), + [aux_sym_option_statement_token3] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7647), + [aux_sym_preprocessor_const_token1] = ACTIONS(7647), + [sym_static_modifier] = ACTIONS(7647), + [sym__dim_keyword] = ACTIONS(7647), + [sym__redim_keyword] = ACTIONS(7647), + [aux_sym_get_accessor_token1] = ACTIONS(7647), + [aux_sym_set_accessor_token1] = ACTIONS(7647), + [anon_sym_COMMA] = ACTIONS(7649), + [aux_sym_const_declaration_token1] = ACTIONS(7647), + [anon_sym_LPAREN] = ACTIONS(7649), + [aux_sym_as_type_clause_token2] = ACTIONS(7647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7647), + [aux_sym_visibility_token1] = ACTIONS(7647), + [aux_sym_visibility_token2] = ACTIONS(7647), + [aux_sym_elseif_fragment_token1] = ACTIONS(7647), + [aux_sym_else_fragment_token1] = ACTIONS(7647), + [aux_sym_select_statement_token1] = ACTIONS(7647), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7647), + [aux_sym__for_header_token1] = ACTIONS(7647), + [aux_sym_do_statement_token1] = ACTIONS(7647), + [aux_sym_do_condition_token1] = ACTIONS(7647), + [aux_sym_with_statement_token1] = ACTIONS(7647), + [aux_sym_exit_statement_token1] = ACTIONS(7647), + [sym_end_statement] = ACTIONS(7649), + [aux_sym_on_goto_statement_token1] = ACTIONS(7647), + [aux_sym_on_goto_statement_token2] = ACTIONS(7647), + [aux_sym_on_error_statement_token2] = ACTIONS(7647), + [sym__ambiguous_redim_statement] = ACTIONS(7649), + [aux_sym_erase_statement_token1] = ACTIONS(7647), + [aux_sym_open_statement_token1] = ACTIONS(7647), + [aux_sym_file_mode_token2] = ACTIONS(7647), + [aux_sym_file_access_token2] = ACTIONS(7647), + [aux_sym_file_lock_token2] = ACTIONS(7647), + [aux_sym_print_statement_token1] = ACTIONS(7647), + [anon_sym_PLUS] = ACTIONS(7649), + [anon_sym_DASH] = ACTIONS(7647), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10159), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10161), + [anon_sym_SEMI] = ACTIONS(7649), + [anon_sym_QMARK] = ACTIONS(7649), + [aux_sym_close_statement_token1] = ACTIONS(7647), + [aux_sym_put_statement_token1] = ACTIONS(7647), + [aux_sym_unlock_statement_token1] = ACTIONS(7647), + [aux_sym_seek_statement_token1] = ACTIONS(7647), + [sym_reset_statement] = ACTIONS(7647), + [aux_sym_raise_event_statement_token1] = ACTIONS(7647), + [sym_stop_statement] = ACTIONS(7647), + [sym_beep_statement] = ACTIONS(7647), + [aux_sym_unload_statement_token1] = ACTIONS(7647), + [aux_sym_def_type_statement_token1] = ACTIONS(7647), + [aux_sym_def_type_statement_token2] = ACTIONS(7647), + [aux_sym_def_type_statement_token3] = ACTIONS(7647), + [aux_sym_def_type_statement_token4] = ACTIONS(7647), + [aux_sym_def_type_statement_token5] = ACTIONS(7647), + [aux_sym_def_type_statement_token6] = ACTIONS(7647), + [aux_sym_def_type_statement_token7] = ACTIONS(7647), + [aux_sym_def_type_statement_token8] = ACTIONS(7647), + [aux_sym_def_type_statement_token9] = ACTIONS(7647), + [aux_sym_def_type_statement_token10] = ACTIONS(7647), + [aux_sym_def_type_statement_token11] = ACTIONS(7647), + [aux_sym_def_type_statement_token12] = ACTIONS(7647), + [aux_sym_def_type_statement_token13] = ACTIONS(7647), + [aux_sym_def_type_statement_token14] = ACTIONS(7647), + [aux_sym_call_statement_token1] = ACTIONS(7647), + [sym__ambiguous_call_statement] = ACTIONS(7647), + [aux_sym_addressof_expression_token1] = ACTIONS(7647), + [aux_sym_type_of_expression_token1] = ACTIONS(7647), + [aux_sym_unary_expression_token1] = ACTIONS(7647), + [sym_string_literal] = ACTIONS(7649), + [sym_number_literal] = ACTIONS(7649), + [aux_sym_boolean_literal_token1] = ACTIONS(7647), + [aux_sym_boolean_literal_token2] = ACTIONS(7647), + [sym_nothing_literal] = ACTIONS(7647), + [sym_null_literal] = ACTIONS(7647), + [sym_empty_literal] = ACTIONS(7647), + [sym_date_literal] = ACTIONS(7649), + [anon_sym_POUND] = ACTIONS(7647), + }, + [STATE(4718)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym_select_statement_token2] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(4719)] = { + [sym_identifier] = ACTIONS(5752), + [sym_newline] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5752), + [aux_sym_frm_property_statement_token1] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5752), + [anon_sym_BANG] = ACTIONS(5754), + [aux_sym__attribute_identifier_token1] = ACTIONS(5752), + [aux_sym_option_statement_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5752), + [aux_sym_preprocessor_const_token1] = ACTIONS(5752), + [sym_static_modifier] = ACTIONS(5752), + [sym__dim_keyword] = ACTIONS(5752), + [sym__redim_keyword] = ACTIONS(5752), + [aux_sym_get_accessor_token1] = ACTIONS(5752), + [aux_sym_set_accessor_token1] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5754), + [aux_sym_const_declaration_token1] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [aux_sym_as_type_clause_token2] = ACTIONS(5752), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5752), + [aux_sym_visibility_token1] = ACTIONS(5752), + [aux_sym_visibility_token2] = ACTIONS(5752), + [aux_sym_elseif_fragment_token1] = ACTIONS(5752), + [aux_sym_else_fragment_token1] = ACTIONS(5752), + [aux_sym_select_statement_token1] = ACTIONS(5752), + [aux_sym_select_statement_token2] = ACTIONS(5752), + [aux_sym__for_header_token1] = ACTIONS(5752), + [aux_sym_do_statement_token1] = ACTIONS(5752), + [aux_sym_do_condition_token1] = ACTIONS(5752), + [aux_sym_with_statement_token1] = ACTIONS(5752), + [aux_sym_exit_statement_token1] = ACTIONS(5752), + [sym_end_statement] = ACTIONS(5754), + [aux_sym_on_goto_statement_token1] = ACTIONS(5752), + [aux_sym_on_goto_statement_token2] = ACTIONS(5752), + [aux_sym_on_error_statement_token2] = ACTIONS(5752), + [sym__ambiguous_redim_statement] = ACTIONS(5754), + [aux_sym_erase_statement_token1] = ACTIONS(5752), + [aux_sym_open_statement_token1] = ACTIONS(5752), + [aux_sym_file_mode_token2] = ACTIONS(5752), + [aux_sym_file_access_token2] = ACTIONS(5752), + [aux_sym_file_lock_token2] = ACTIONS(5752), + [aux_sym_print_statement_token1] = ACTIONS(5752), + [anon_sym_PLUS] = ACTIONS(5754), + [anon_sym_DASH] = ACTIONS(5752), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10130), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10132), + [anon_sym_SEMI] = ACTIONS(5754), + [anon_sym_QMARK] = ACTIONS(5754), + [aux_sym_close_statement_token1] = ACTIONS(5752), + [aux_sym_put_statement_token1] = ACTIONS(5752), + [aux_sym_unlock_statement_token1] = ACTIONS(5752), + [aux_sym_seek_statement_token1] = ACTIONS(5752), + [sym_reset_statement] = ACTIONS(5752), + [aux_sym_raise_event_statement_token1] = ACTIONS(5752), + [sym_stop_statement] = ACTIONS(5752), + [sym_beep_statement] = ACTIONS(5752), + [aux_sym_unload_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token2] = ACTIONS(5752), + [aux_sym_def_type_statement_token3] = ACTIONS(5752), + [aux_sym_def_type_statement_token4] = ACTIONS(5752), + [aux_sym_def_type_statement_token5] = ACTIONS(5752), + [aux_sym_def_type_statement_token6] = ACTIONS(5752), + [aux_sym_def_type_statement_token7] = ACTIONS(5752), + [aux_sym_def_type_statement_token8] = ACTIONS(5752), + [aux_sym_def_type_statement_token9] = ACTIONS(5752), + [aux_sym_def_type_statement_token10] = ACTIONS(5752), + [aux_sym_def_type_statement_token11] = ACTIONS(5752), + [aux_sym_def_type_statement_token12] = ACTIONS(5752), + [aux_sym_def_type_statement_token13] = ACTIONS(5752), + [aux_sym_def_type_statement_token14] = ACTIONS(5752), + [aux_sym_call_statement_token1] = ACTIONS(5752), + [sym__ambiguous_call_statement] = ACTIONS(5752), + [aux_sym_addressof_expression_token1] = ACTIONS(5752), + [aux_sym_type_of_expression_token1] = ACTIONS(5752), + [aux_sym_unary_expression_token1] = ACTIONS(5752), + [sym_string_literal] = ACTIONS(5754), + [sym_number_literal] = ACTIONS(5754), + [aux_sym_boolean_literal_token1] = ACTIONS(5752), + [aux_sym_boolean_literal_token2] = ACTIONS(5752), + [sym_nothing_literal] = ACTIONS(5752), + [sym_null_literal] = ACTIONS(5752), + [sym_empty_literal] = ACTIONS(5752), + [sym_date_literal] = ACTIONS(5754), + [anon_sym_POUND] = ACTIONS(5752), + }, + [STATE(4720)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(4721)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(4722)] = { + [aux_sym__argument_sequence_repeat1] = STATE(5514), + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(5517), + [sym_identifier] = ACTIONS(7651), + [sym_newline] = ACTIONS(7653), + [anon_sym_COLON] = ACTIONS(7653), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7651), + [aux_sym_frm_property_statement_token1] = ACTIONS(7651), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_BANG] = ACTIONS(7653), + [aux_sym__attribute_identifier_token1] = ACTIONS(7651), + [aux_sym_option_statement_token3] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7651), + [aux_sym_preprocessor_const_token1] = ACTIONS(7651), + [sym_static_modifier] = ACTIONS(7651), + [sym__dim_keyword] = ACTIONS(7651), + [sym__redim_keyword] = ACTIONS(7651), + [aux_sym_get_accessor_token1] = ACTIONS(7651), + [aux_sym_set_accessor_token1] = ACTIONS(7651), + [anon_sym_COMMA] = ACTIONS(10163), + [aux_sym_const_declaration_token1] = ACTIONS(7651), + [anon_sym_LPAREN] = ACTIONS(7653), + [aux_sym_as_type_clause_token2] = ACTIONS(7651), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7651), + [aux_sym_visibility_token1] = ACTIONS(7651), + [aux_sym_visibility_token2] = ACTIONS(7651), + [aux_sym_elseif_fragment_token1] = ACTIONS(7651), + [aux_sym_else_fragment_token1] = ACTIONS(7651), + [aux_sym_select_statement_token1] = ACTIONS(7651), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7651), + [aux_sym__for_header_token1] = ACTIONS(7651), + [aux_sym_do_statement_token1] = ACTIONS(7651), + [aux_sym_do_condition_token1] = ACTIONS(7651), + [aux_sym_with_statement_token1] = ACTIONS(7651), + [aux_sym_exit_statement_token1] = ACTIONS(7651), + [sym_end_statement] = ACTIONS(7653), + [aux_sym_on_goto_statement_token1] = ACTIONS(7651), + [aux_sym_on_goto_statement_token2] = ACTIONS(7651), + [aux_sym_on_error_statement_token2] = ACTIONS(7651), + [sym__ambiguous_redim_statement] = ACTIONS(7653), + [aux_sym_erase_statement_token1] = ACTIONS(7651), + [aux_sym_open_statement_token1] = ACTIONS(7651), + [aux_sym_file_mode_token2] = ACTIONS(7651), + [aux_sym_file_access_token2] = ACTIONS(7651), + [aux_sym_file_lock_token2] = ACTIONS(7651), + [aux_sym_print_statement_token1] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_SEMI] = ACTIONS(10165), + [anon_sym_QMARK] = ACTIONS(7653), + [aux_sym_close_statement_token1] = ACTIONS(7651), + [aux_sym_put_statement_token1] = ACTIONS(7651), + [aux_sym_unlock_statement_token1] = ACTIONS(7651), + [aux_sym_seek_statement_token1] = ACTIONS(7651), + [sym_reset_statement] = ACTIONS(7651), + [aux_sym_raise_event_statement_token1] = ACTIONS(7651), + [sym_stop_statement] = ACTIONS(7651), + [sym_beep_statement] = ACTIONS(7651), + [aux_sym_unload_statement_token1] = ACTIONS(7651), + [aux_sym_def_type_statement_token1] = ACTIONS(7651), + [aux_sym_def_type_statement_token2] = ACTIONS(7651), + [aux_sym_def_type_statement_token3] = ACTIONS(7651), + [aux_sym_def_type_statement_token4] = ACTIONS(7651), + [aux_sym_def_type_statement_token5] = ACTIONS(7651), + [aux_sym_def_type_statement_token6] = ACTIONS(7651), + [aux_sym_def_type_statement_token7] = ACTIONS(7651), + [aux_sym_def_type_statement_token8] = ACTIONS(7651), + [aux_sym_def_type_statement_token9] = ACTIONS(7651), + [aux_sym_def_type_statement_token10] = ACTIONS(7651), + [aux_sym_def_type_statement_token11] = ACTIONS(7651), + [aux_sym_def_type_statement_token12] = ACTIONS(7651), + [aux_sym_def_type_statement_token13] = ACTIONS(7651), + [aux_sym_def_type_statement_token14] = ACTIONS(7651), + [aux_sym_call_statement_token1] = ACTIONS(7651), + [sym__ambiguous_call_statement] = ACTIONS(7651), + [aux_sym_addressof_expression_token1] = ACTIONS(7651), + [aux_sym_type_of_expression_token1] = ACTIONS(7651), + [aux_sym_unary_expression_token1] = ACTIONS(7651), + [sym_string_literal] = ACTIONS(7653), + [sym_number_literal] = ACTIONS(7653), + [aux_sym_boolean_literal_token1] = ACTIONS(7651), + [aux_sym_boolean_literal_token2] = ACTIONS(7651), + [sym_nothing_literal] = ACTIONS(7651), + [sym_null_literal] = ACTIONS(7651), + [sym_empty_literal] = ACTIONS(7651), + [sym_date_literal] = ACTIONS(7653), + [anon_sym_POUND] = ACTIONS(7651), + }, + [STATE(4723)] = { + [sym_char_position] = STATE(621), + [aux_sym_output_list_repeat1] = STATE(4725), + [sym_identifier] = ACTIONS(7474), + [sym_newline] = ACTIONS(7476), + [anon_sym_COLON] = ACTIONS(7476), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7474), + [aux_sym_frm_property_statement_token1] = ACTIONS(7474), + [anon_sym_DOT] = ACTIONS(7474), + [anon_sym_BANG] = ACTIONS(7476), + [aux_sym__attribute_identifier_token1] = ACTIONS(7474), + [aux_sym_option_statement_token3] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7474), + [aux_sym_preprocessor_const_token1] = ACTIONS(7474), + [sym_static_modifier] = ACTIONS(7474), + [sym__dim_keyword] = ACTIONS(7474), + [sym__redim_keyword] = ACTIONS(7474), + [aux_sym_get_accessor_token1] = ACTIONS(7474), + [aux_sym_set_accessor_token1] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(10157), + [aux_sym_const_declaration_token1] = ACTIONS(7474), + [anon_sym_LPAREN] = ACTIONS(7476), + [aux_sym_as_type_clause_token2] = ACTIONS(7474), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7474), + [aux_sym_visibility_token1] = ACTIONS(7474), + [aux_sym_visibility_token2] = ACTIONS(7474), + [aux_sym_elseif_fragment_token1] = ACTIONS(7474), + [aux_sym_else_fragment_token1] = ACTIONS(7474), + [aux_sym_select_statement_token1] = ACTIONS(7474), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7474), + [aux_sym__for_header_token1] = ACTIONS(7474), + [aux_sym_do_statement_token1] = ACTIONS(7474), + [aux_sym_do_condition_token1] = ACTIONS(7474), + [aux_sym_with_statement_token1] = ACTIONS(7474), + [aux_sym_exit_statement_token1] = ACTIONS(7474), + [sym_end_statement] = ACTIONS(7476), + [aux_sym_on_goto_statement_token1] = ACTIONS(7474), + [aux_sym_on_goto_statement_token2] = ACTIONS(7474), + [aux_sym_on_error_statement_token2] = ACTIONS(7474), + [sym__ambiguous_redim_statement] = ACTIONS(7476), + [aux_sym_erase_statement_token1] = ACTIONS(7474), + [aux_sym_open_statement_token1] = ACTIONS(7474), + [aux_sym_file_mode_token2] = ACTIONS(7474), + [aux_sym_file_access_token2] = ACTIONS(7474), + [aux_sym_file_lock_token2] = ACTIONS(7474), + [aux_sym_print_statement_token1] = ACTIONS(7474), + [anon_sym_PLUS] = ACTIONS(7476), + [anon_sym_DASH] = ACTIONS(7474), + [anon_sym_SEMI] = ACTIONS(10157), + [anon_sym_QMARK] = ACTIONS(7476), + [aux_sym_close_statement_token1] = ACTIONS(7474), + [aux_sym_put_statement_token1] = ACTIONS(7474), + [aux_sym_unlock_statement_token1] = ACTIONS(7474), + [aux_sym_seek_statement_token1] = ACTIONS(7474), + [sym_reset_statement] = ACTIONS(7474), + [aux_sym_raise_event_statement_token1] = ACTIONS(7474), + [sym_stop_statement] = ACTIONS(7474), + [sym_beep_statement] = ACTIONS(7474), + [aux_sym_unload_statement_token1] = ACTIONS(7474), + [aux_sym_def_type_statement_token1] = ACTIONS(7474), + [aux_sym_def_type_statement_token2] = ACTIONS(7474), + [aux_sym_def_type_statement_token3] = ACTIONS(7474), + [aux_sym_def_type_statement_token4] = ACTIONS(7474), + [aux_sym_def_type_statement_token5] = ACTIONS(7474), + [aux_sym_def_type_statement_token6] = ACTIONS(7474), + [aux_sym_def_type_statement_token7] = ACTIONS(7474), + [aux_sym_def_type_statement_token8] = ACTIONS(7474), + [aux_sym_def_type_statement_token9] = ACTIONS(7474), + [aux_sym_def_type_statement_token10] = ACTIONS(7474), + [aux_sym_def_type_statement_token11] = ACTIONS(7474), + [aux_sym_def_type_statement_token12] = ACTIONS(7474), + [aux_sym_def_type_statement_token13] = ACTIONS(7474), + [aux_sym_def_type_statement_token14] = ACTIONS(7474), + [aux_sym_call_statement_token1] = ACTIONS(7474), + [sym__ambiguous_call_statement] = ACTIONS(7474), + [aux_sym_addressof_expression_token1] = ACTIONS(7474), + [aux_sym_type_of_expression_token1] = ACTIONS(7474), + [aux_sym_unary_expression_token1] = ACTIONS(7474), + [sym_string_literal] = ACTIONS(7476), + [sym_number_literal] = ACTIONS(7476), + [aux_sym_boolean_literal_token1] = ACTIONS(7474), + [aux_sym_boolean_literal_token2] = ACTIONS(7474), + [sym_nothing_literal] = ACTIONS(7474), + [sym_null_literal] = ACTIONS(7474), + [sym_empty_literal] = ACTIONS(7474), + [sym_date_literal] = ACTIONS(7476), + [anon_sym_POUND] = ACTIONS(7474), + }, + [STATE(4724)] = { + [sym_char_position] = STATE(623), + [aux_sym_output_list_repeat1] = STATE(4728), + [sym_identifier] = ACTIONS(7609), + [sym_newline] = ACTIONS(7611), + [anon_sym_COLON] = ACTIONS(7611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7609), + [aux_sym_frm_property_statement_token1] = ACTIONS(7609), + [anon_sym_DOT] = ACTIONS(7609), + [anon_sym_BANG] = ACTIONS(7611), + [aux_sym__attribute_identifier_token1] = ACTIONS(7609), + [aux_sym_option_statement_token3] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7609), + [aux_sym_preprocessor_const_token1] = ACTIONS(7609), + [sym_static_modifier] = ACTIONS(7609), + [sym__dim_keyword] = ACTIONS(7609), + [sym__redim_keyword] = ACTIONS(7609), + [aux_sym_get_accessor_token1] = ACTIONS(7609), + [aux_sym_set_accessor_token1] = ACTIONS(7609), + [anon_sym_COMMA] = ACTIONS(10157), + [aux_sym_const_declaration_token1] = ACTIONS(7609), + [anon_sym_LPAREN] = ACTIONS(7611), + [aux_sym_as_type_clause_token2] = ACTIONS(7609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7609), + [aux_sym_visibility_token1] = ACTIONS(7609), + [aux_sym_visibility_token2] = ACTIONS(7609), + [aux_sym_elseif_fragment_token1] = ACTIONS(7609), + [aux_sym_else_fragment_token1] = ACTIONS(7609), + [aux_sym_select_statement_token1] = ACTIONS(7609), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7609), + [aux_sym__for_header_token1] = ACTIONS(7609), + [aux_sym_do_statement_token1] = ACTIONS(7609), + [aux_sym_do_condition_token1] = ACTIONS(7609), + [aux_sym_with_statement_token1] = ACTIONS(7609), + [aux_sym_exit_statement_token1] = ACTIONS(7609), + [sym_end_statement] = ACTIONS(7611), + [aux_sym_on_goto_statement_token1] = ACTIONS(7609), + [aux_sym_on_goto_statement_token2] = ACTIONS(7609), + [aux_sym_on_error_statement_token2] = ACTIONS(7609), + [sym__ambiguous_redim_statement] = ACTIONS(7611), + [aux_sym_erase_statement_token1] = ACTIONS(7609), + [aux_sym_open_statement_token1] = ACTIONS(7609), + [aux_sym_file_mode_token2] = ACTIONS(7609), + [aux_sym_file_access_token2] = ACTIONS(7609), + [aux_sym_file_lock_token2] = ACTIONS(7609), + [aux_sym_print_statement_token1] = ACTIONS(7609), + [anon_sym_PLUS] = ACTIONS(7611), + [anon_sym_DASH] = ACTIONS(7609), + [anon_sym_SEMI] = ACTIONS(10157), + [anon_sym_QMARK] = ACTIONS(7611), + [aux_sym_close_statement_token1] = ACTIONS(7609), + [aux_sym_put_statement_token1] = ACTIONS(7609), + [aux_sym_unlock_statement_token1] = ACTIONS(7609), + [aux_sym_seek_statement_token1] = ACTIONS(7609), + [sym_reset_statement] = ACTIONS(7609), + [aux_sym_raise_event_statement_token1] = ACTIONS(7609), + [sym_stop_statement] = ACTIONS(7609), + [sym_beep_statement] = ACTIONS(7609), + [aux_sym_unload_statement_token1] = ACTIONS(7609), + [aux_sym_def_type_statement_token1] = ACTIONS(7609), + [aux_sym_def_type_statement_token2] = ACTIONS(7609), + [aux_sym_def_type_statement_token3] = ACTIONS(7609), + [aux_sym_def_type_statement_token4] = ACTIONS(7609), + [aux_sym_def_type_statement_token5] = ACTIONS(7609), + [aux_sym_def_type_statement_token6] = ACTIONS(7609), + [aux_sym_def_type_statement_token7] = ACTIONS(7609), + [aux_sym_def_type_statement_token8] = ACTIONS(7609), + [aux_sym_def_type_statement_token9] = ACTIONS(7609), + [aux_sym_def_type_statement_token10] = ACTIONS(7609), + [aux_sym_def_type_statement_token11] = ACTIONS(7609), + [aux_sym_def_type_statement_token12] = ACTIONS(7609), + [aux_sym_def_type_statement_token13] = ACTIONS(7609), + [aux_sym_def_type_statement_token14] = ACTIONS(7609), + [aux_sym_call_statement_token1] = ACTIONS(7609), + [sym__ambiguous_call_statement] = ACTIONS(7609), + [aux_sym_addressof_expression_token1] = ACTIONS(7609), + [aux_sym_type_of_expression_token1] = ACTIONS(7609), + [aux_sym_unary_expression_token1] = ACTIONS(7609), + [sym_string_literal] = ACTIONS(7611), + [sym_number_literal] = ACTIONS(7611), + [aux_sym_boolean_literal_token1] = ACTIONS(7609), + [aux_sym_boolean_literal_token2] = ACTIONS(7609), + [sym_nothing_literal] = ACTIONS(7609), + [sym_null_literal] = ACTIONS(7609), + [sym_empty_literal] = ACTIONS(7609), + [sym_date_literal] = ACTIONS(7611), + [anon_sym_POUND] = ACTIONS(7609), + }, + [STATE(4725)] = { + [sym_char_position] = STATE(624), + [aux_sym_output_list_repeat1] = STATE(4728), + [sym_identifier] = ACTIONS(7460), + [sym_newline] = ACTIONS(7462), + [anon_sym_COLON] = ACTIONS(7462), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7460), + [aux_sym_frm_property_statement_token1] = ACTIONS(7460), + [anon_sym_DOT] = ACTIONS(7460), + [anon_sym_BANG] = ACTIONS(7462), + [aux_sym__attribute_identifier_token1] = ACTIONS(7460), + [aux_sym_option_statement_token3] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7460), + [aux_sym_preprocessor_const_token1] = ACTIONS(7460), + [sym_static_modifier] = ACTIONS(7460), + [sym__dim_keyword] = ACTIONS(7460), + [sym__redim_keyword] = ACTIONS(7460), + [aux_sym_get_accessor_token1] = ACTIONS(7460), + [aux_sym_set_accessor_token1] = ACTIONS(7460), + [anon_sym_COMMA] = ACTIONS(10157), + [aux_sym_const_declaration_token1] = ACTIONS(7460), + [anon_sym_LPAREN] = ACTIONS(7462), + [aux_sym_as_type_clause_token2] = ACTIONS(7460), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7460), + [aux_sym_visibility_token1] = ACTIONS(7460), + [aux_sym_visibility_token2] = ACTIONS(7460), + [aux_sym_elseif_fragment_token1] = ACTIONS(7460), + [aux_sym_else_fragment_token1] = ACTIONS(7460), + [aux_sym_select_statement_token1] = ACTIONS(7460), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7460), + [aux_sym__for_header_token1] = ACTIONS(7460), + [aux_sym_do_statement_token1] = ACTIONS(7460), + [aux_sym_do_condition_token1] = ACTIONS(7460), + [aux_sym_with_statement_token1] = ACTIONS(7460), + [aux_sym_exit_statement_token1] = ACTIONS(7460), + [sym_end_statement] = ACTIONS(7462), + [aux_sym_on_goto_statement_token1] = ACTIONS(7460), + [aux_sym_on_goto_statement_token2] = ACTIONS(7460), + [aux_sym_on_error_statement_token2] = ACTIONS(7460), + [sym__ambiguous_redim_statement] = ACTIONS(7462), + [aux_sym_erase_statement_token1] = ACTIONS(7460), + [aux_sym_open_statement_token1] = ACTIONS(7460), + [aux_sym_file_mode_token2] = ACTIONS(7460), + [aux_sym_file_access_token2] = ACTIONS(7460), + [aux_sym_file_lock_token2] = ACTIONS(7460), + [aux_sym_print_statement_token1] = ACTIONS(7460), + [anon_sym_PLUS] = ACTIONS(7462), + [anon_sym_DASH] = ACTIONS(7460), + [anon_sym_SEMI] = ACTIONS(10157), + [anon_sym_QMARK] = ACTIONS(7462), + [aux_sym_close_statement_token1] = ACTIONS(7460), + [aux_sym_put_statement_token1] = ACTIONS(7460), + [aux_sym_unlock_statement_token1] = ACTIONS(7460), + [aux_sym_seek_statement_token1] = ACTIONS(7460), + [sym_reset_statement] = ACTIONS(7460), + [aux_sym_raise_event_statement_token1] = ACTIONS(7460), + [sym_stop_statement] = ACTIONS(7460), + [sym_beep_statement] = ACTIONS(7460), + [aux_sym_unload_statement_token1] = ACTIONS(7460), + [aux_sym_def_type_statement_token1] = ACTIONS(7460), + [aux_sym_def_type_statement_token2] = ACTIONS(7460), + [aux_sym_def_type_statement_token3] = ACTIONS(7460), + [aux_sym_def_type_statement_token4] = ACTIONS(7460), + [aux_sym_def_type_statement_token5] = ACTIONS(7460), + [aux_sym_def_type_statement_token6] = ACTIONS(7460), + [aux_sym_def_type_statement_token7] = ACTIONS(7460), + [aux_sym_def_type_statement_token8] = ACTIONS(7460), + [aux_sym_def_type_statement_token9] = ACTIONS(7460), + [aux_sym_def_type_statement_token10] = ACTIONS(7460), + [aux_sym_def_type_statement_token11] = ACTIONS(7460), + [aux_sym_def_type_statement_token12] = ACTIONS(7460), + [aux_sym_def_type_statement_token13] = ACTIONS(7460), + [aux_sym_def_type_statement_token14] = ACTIONS(7460), + [aux_sym_call_statement_token1] = ACTIONS(7460), + [sym__ambiguous_call_statement] = ACTIONS(7460), + [aux_sym_addressof_expression_token1] = ACTIONS(7460), + [aux_sym_type_of_expression_token1] = ACTIONS(7460), + [aux_sym_unary_expression_token1] = ACTIONS(7460), + [sym_string_literal] = ACTIONS(7462), + [sym_number_literal] = ACTIONS(7462), + [aux_sym_boolean_literal_token1] = ACTIONS(7460), + [aux_sym_boolean_literal_token2] = ACTIONS(7460), + [sym_nothing_literal] = ACTIONS(7460), + [sym_null_literal] = ACTIONS(7460), + [sym_empty_literal] = ACTIONS(7460), + [sym_date_literal] = ACTIONS(7462), + [anon_sym_POUND] = ACTIONS(7460), + }, + [STATE(4726)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(4727)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(4728)] = { + [sym_char_position] = STATE(7498), + [aux_sym_output_list_repeat1] = STATE(4728), + [sym_identifier] = ACTIONS(7618), + [sym_newline] = ACTIONS(7620), + [anon_sym_COLON] = ACTIONS(7620), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7618), + [aux_sym_frm_property_statement_token1] = ACTIONS(7618), + [anon_sym_DOT] = ACTIONS(7618), + [anon_sym_BANG] = ACTIONS(7620), + [aux_sym__attribute_identifier_token1] = ACTIONS(7618), + [aux_sym_option_statement_token3] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7618), + [aux_sym_preprocessor_const_token1] = ACTIONS(7618), + [sym_static_modifier] = ACTIONS(7618), + [sym__dim_keyword] = ACTIONS(7618), + [sym__redim_keyword] = ACTIONS(7618), + [aux_sym_get_accessor_token1] = ACTIONS(7618), + [aux_sym_set_accessor_token1] = ACTIONS(7618), + [anon_sym_COMMA] = ACTIONS(7622), + [aux_sym_const_declaration_token1] = ACTIONS(7618), + [anon_sym_LPAREN] = ACTIONS(7620), + [aux_sym_as_type_clause_token2] = ACTIONS(7618), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7618), + [aux_sym_visibility_token1] = ACTIONS(7618), + [aux_sym_visibility_token2] = ACTIONS(7618), + [aux_sym_elseif_fragment_token1] = ACTIONS(7618), + [aux_sym_else_fragment_token1] = ACTIONS(7618), + [aux_sym_select_statement_token1] = ACTIONS(7618), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7618), + [aux_sym__for_header_token1] = ACTIONS(7618), + [aux_sym_do_statement_token1] = ACTIONS(7618), + [aux_sym_do_condition_token1] = ACTIONS(7618), + [aux_sym_with_statement_token1] = ACTIONS(7618), + [aux_sym_exit_statement_token1] = ACTIONS(7618), + [sym_end_statement] = ACTIONS(7620), + [aux_sym_on_goto_statement_token1] = ACTIONS(7618), + [aux_sym_on_goto_statement_token2] = ACTIONS(7618), + [aux_sym_on_error_statement_token2] = ACTIONS(7618), + [sym__ambiguous_redim_statement] = ACTIONS(7620), + [aux_sym_erase_statement_token1] = ACTIONS(7618), + [aux_sym_open_statement_token1] = ACTIONS(7618), + [aux_sym_file_mode_token2] = ACTIONS(7618), + [aux_sym_file_access_token2] = ACTIONS(7618), + [aux_sym_file_lock_token2] = ACTIONS(7618), + [aux_sym_print_statement_token1] = ACTIONS(7618), + [anon_sym_PLUS] = ACTIONS(7620), + [anon_sym_DASH] = ACTIONS(7618), + [anon_sym_SEMI] = ACTIONS(7622), + [anon_sym_QMARK] = ACTIONS(7620), + [aux_sym_close_statement_token1] = ACTIONS(7618), + [aux_sym_put_statement_token1] = ACTIONS(7618), + [aux_sym_unlock_statement_token1] = ACTIONS(7618), + [aux_sym_seek_statement_token1] = ACTIONS(7618), + [sym_reset_statement] = ACTIONS(7618), + [aux_sym_raise_event_statement_token1] = ACTIONS(7618), + [sym_stop_statement] = ACTIONS(7618), + [sym_beep_statement] = ACTIONS(7618), + [aux_sym_unload_statement_token1] = ACTIONS(7618), + [aux_sym_def_type_statement_token1] = ACTIONS(7618), + [aux_sym_def_type_statement_token2] = ACTIONS(7618), + [aux_sym_def_type_statement_token3] = ACTIONS(7618), + [aux_sym_def_type_statement_token4] = ACTIONS(7618), + [aux_sym_def_type_statement_token5] = ACTIONS(7618), + [aux_sym_def_type_statement_token6] = ACTIONS(7618), + [aux_sym_def_type_statement_token7] = ACTIONS(7618), + [aux_sym_def_type_statement_token8] = ACTIONS(7618), + [aux_sym_def_type_statement_token9] = ACTIONS(7618), + [aux_sym_def_type_statement_token10] = ACTIONS(7618), + [aux_sym_def_type_statement_token11] = ACTIONS(7618), + [aux_sym_def_type_statement_token12] = ACTIONS(7618), + [aux_sym_def_type_statement_token13] = ACTIONS(7618), + [aux_sym_def_type_statement_token14] = ACTIONS(7618), + [aux_sym_call_statement_token1] = ACTIONS(7618), + [sym__ambiguous_call_statement] = ACTIONS(7618), + [aux_sym_addressof_expression_token1] = ACTIONS(7618), + [aux_sym_type_of_expression_token1] = ACTIONS(7618), + [aux_sym_unary_expression_token1] = ACTIONS(7618), + [sym_string_literal] = ACTIONS(7620), + [sym_number_literal] = ACTIONS(7620), + [aux_sym_boolean_literal_token1] = ACTIONS(7618), + [aux_sym_boolean_literal_token2] = ACTIONS(7618), + [sym_nothing_literal] = ACTIONS(7618), + [sym_null_literal] = ACTIONS(7618), + [sym_empty_literal] = ACTIONS(7618), + [sym_date_literal] = ACTIONS(7620), + [anon_sym_POUND] = ACTIONS(7618), + }, + [STATE(4729)] = { + [sym_identifier] = ACTIONS(7281), + [sym_newline] = ACTIONS(7283), + [anon_sym_COLON] = ACTIONS(7283), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7281), + [aux_sym_frm_property_statement_token1] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7281), + [anon_sym_BANG] = ACTIONS(7283), + [aux_sym__attribute_identifier_token1] = ACTIONS(7281), + [aux_sym_option_statement_token3] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7281), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7281), + [aux_sym_preprocessor_const_token1] = ACTIONS(7281), + [sym_static_modifier] = ACTIONS(7281), + [sym__dim_keyword] = ACTIONS(7281), + [sym__redim_keyword] = ACTIONS(7281), + [aux_sym_get_accessor_token1] = ACTIONS(7281), + [aux_sym_set_accessor_token1] = ACTIONS(7281), + [aux_sym_const_declaration_token1] = ACTIONS(7281), + [anon_sym_LPAREN] = ACTIONS(7283), + [aux_sym_as_type_clause_token2] = ACTIONS(7281), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7281), + [aux_sym_visibility_token1] = ACTIONS(7281), + [aux_sym_visibility_token2] = ACTIONS(7281), + [aux_sym_elseif_fragment_token1] = ACTIONS(7281), + [aux_sym_else_fragment_token1] = ACTIONS(7281), + [aux_sym_select_statement_token1] = ACTIONS(7281), + [aux_sym__for_header_token1] = ACTIONS(7281), + [aux_sym_do_statement_token1] = ACTIONS(7281), + [aux_sym_do_condition_token1] = ACTIONS(7281), + [aux_sym_with_statement_token1] = ACTIONS(7281), + [aux_sym_exit_statement_token1] = ACTIONS(7281), + [sym_end_statement] = ACTIONS(7283), + [aux_sym_on_goto_statement_token1] = ACTIONS(7281), + [aux_sym_on_goto_statement_token2] = ACTIONS(7281), + [aux_sym_on_error_statement_token2] = ACTIONS(7281), + [sym__ambiguous_redim_statement] = ACTIONS(7283), + [aux_sym_erase_statement_token1] = ACTIONS(7281), + [aux_sym_open_statement_token1] = ACTIONS(7281), + [aux_sym_file_mode_token2] = ACTIONS(7281), + [aux_sym_file_access_token2] = ACTIONS(7281), + [aux_sym_file_lock_token2] = ACTIONS(7281), + [aux_sym_print_statement_token1] = ACTIONS(7281), + [anon_sym_PLUS] = ACTIONS(7283), + [anon_sym_DASH] = ACTIONS(7281), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10167), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10169), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(10171), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(10173), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(10175), + [anon_sym_QMARK] = ACTIONS(7283), + [aux_sym_close_statement_token1] = ACTIONS(7281), + [aux_sym_put_statement_token1] = ACTIONS(7281), + [aux_sym_unlock_statement_token1] = ACTIONS(7281), + [aux_sym_seek_statement_token1] = ACTIONS(7281), + [sym_reset_statement] = ACTIONS(7281), + [aux_sym_raise_event_statement_token1] = ACTIONS(7281), + [sym_stop_statement] = ACTIONS(7281), + [sym_beep_statement] = ACTIONS(7281), + [aux_sym_unload_statement_token1] = ACTIONS(7281), + [aux_sym_def_type_statement_token1] = ACTIONS(7281), + [aux_sym_def_type_statement_token2] = ACTIONS(7281), + [aux_sym_def_type_statement_token3] = ACTIONS(7281), + [aux_sym_def_type_statement_token4] = ACTIONS(7281), + [aux_sym_def_type_statement_token5] = ACTIONS(7281), + [aux_sym_def_type_statement_token6] = ACTIONS(7281), + [aux_sym_def_type_statement_token7] = ACTIONS(7281), + [aux_sym_def_type_statement_token8] = ACTIONS(7281), + [aux_sym_def_type_statement_token9] = ACTIONS(7281), + [aux_sym_def_type_statement_token10] = ACTIONS(7281), + [aux_sym_def_type_statement_token11] = ACTIONS(7281), + [aux_sym_def_type_statement_token12] = ACTIONS(7281), + [aux_sym_def_type_statement_token13] = ACTIONS(7281), + [aux_sym_def_type_statement_token14] = ACTIONS(7281), + [aux_sym_call_statement_token1] = ACTIONS(7281), + [sym__ambiguous_call_statement] = ACTIONS(7281), + [aux_sym_addressof_expression_token1] = ACTIONS(7281), + [aux_sym_type_of_expression_token1] = ACTIONS(7281), + [aux_sym_unary_expression_token1] = ACTIONS(7281), + [sym_string_literal] = ACTIONS(7283), + [sym_number_literal] = ACTIONS(7283), + [aux_sym_boolean_literal_token1] = ACTIONS(7281), + [aux_sym_boolean_literal_token2] = ACTIONS(7281), + [sym_nothing_literal] = ACTIONS(7281), + [sym_null_literal] = ACTIONS(7281), + [sym_empty_literal] = ACTIONS(7281), + [sym_date_literal] = ACTIONS(7283), + [anon_sym_POUND] = ACTIONS(7281), + }, + [STATE(4730)] = { + [sym_char_position] = STATE(7547), + [aux_sym_output_list_repeat1] = STATE(4730), + [sym_identifier] = ACTIONS(7618), + [sym_newline] = ACTIONS(7620), + [anon_sym_COLON] = ACTIONS(7620), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7618), + [aux_sym_frm_property_statement_token1] = ACTIONS(7618), + [anon_sym_DOT] = ACTIONS(7618), + [anon_sym_BANG] = ACTIONS(7620), + [aux_sym__attribute_identifier_token1] = ACTIONS(7618), + [aux_sym_option_statement_token3] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7618), + [aux_sym_preprocessor_const_token1] = ACTIONS(7618), + [sym_static_modifier] = ACTIONS(7618), + [sym__dim_keyword] = ACTIONS(7618), + [sym__redim_keyword] = ACTIONS(7618), + [aux_sym_get_accessor_token1] = ACTIONS(7618), + [aux_sym_set_accessor_token1] = ACTIONS(7618), + [anon_sym_COMMA] = ACTIONS(7622), + [aux_sym_const_declaration_token1] = ACTIONS(7618), + [anon_sym_LPAREN] = ACTIONS(7620), + [aux_sym_as_type_clause_token2] = ACTIONS(7618), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7618), + [aux_sym_visibility_token1] = ACTIONS(7618), + [aux_sym_visibility_token2] = ACTIONS(7618), + [aux_sym_elseif_fragment_token1] = ACTIONS(7618), + [aux_sym_else_fragment_token1] = ACTIONS(7618), + [aux_sym_select_statement_token1] = ACTIONS(7618), + [aux_sym__for_header_token1] = ACTIONS(7618), + [aux_sym_do_statement_token1] = ACTIONS(7618), + [aux_sym_do_condition_token1] = ACTIONS(7618), + [aux_sym_with_statement_token1] = ACTIONS(7618), + [aux_sym_exit_statement_token1] = ACTIONS(7618), + [sym_end_statement] = ACTIONS(7620), + [aux_sym_on_goto_statement_token1] = ACTIONS(7618), + [aux_sym_on_goto_statement_token2] = ACTIONS(7618), + [aux_sym_on_error_statement_token2] = ACTIONS(7618), + [sym__ambiguous_redim_statement] = ACTIONS(7620), + [aux_sym_erase_statement_token1] = ACTIONS(7618), + [aux_sym_open_statement_token1] = ACTIONS(7618), + [aux_sym_file_mode_token2] = ACTIONS(7618), + [aux_sym_file_access_token2] = ACTIONS(7618), + [aux_sym_file_lock_token2] = ACTIONS(7618), + [aux_sym_print_statement_token1] = ACTIONS(7618), + [anon_sym_PLUS] = ACTIONS(7620), + [anon_sym_DASH] = ACTIONS(7618), + [anon_sym_SEMI] = ACTIONS(7622), + [anon_sym_QMARK] = ACTIONS(7620), + [aux_sym_close_statement_token1] = ACTIONS(7618), + [aux_sym_put_statement_token1] = ACTIONS(7618), + [aux_sym_unlock_statement_token1] = ACTIONS(7618), + [aux_sym_seek_statement_token1] = ACTIONS(7618), + [sym_reset_statement] = ACTIONS(7618), + [aux_sym_raise_event_statement_token1] = ACTIONS(7618), + [sym_stop_statement] = ACTIONS(7618), + [sym_beep_statement] = ACTIONS(7618), + [aux_sym_unload_statement_token1] = ACTIONS(7618), + [aux_sym_def_type_statement_token1] = ACTIONS(7618), + [aux_sym_def_type_statement_token2] = ACTIONS(7618), + [aux_sym_def_type_statement_token3] = ACTIONS(7618), + [aux_sym_def_type_statement_token4] = ACTIONS(7618), + [aux_sym_def_type_statement_token5] = ACTIONS(7618), + [aux_sym_def_type_statement_token6] = ACTIONS(7618), + [aux_sym_def_type_statement_token7] = ACTIONS(7618), + [aux_sym_def_type_statement_token8] = ACTIONS(7618), + [aux_sym_def_type_statement_token9] = ACTIONS(7618), + [aux_sym_def_type_statement_token10] = ACTIONS(7618), + [aux_sym_def_type_statement_token11] = ACTIONS(7618), + [aux_sym_def_type_statement_token12] = ACTIONS(7618), + [aux_sym_def_type_statement_token13] = ACTIONS(7618), + [aux_sym_def_type_statement_token14] = ACTIONS(7618), + [aux_sym_call_statement_token1] = ACTIONS(7618), + [sym__ambiguous_call_statement] = ACTIONS(7618), + [aux_sym_addressof_expression_token1] = ACTIONS(7618), + [aux_sym_type_of_expression_token1] = ACTIONS(7618), + [aux_sym_unary_expression_token1] = ACTIONS(7618), + [sym_string_literal] = ACTIONS(7620), + [sym_number_literal] = ACTIONS(7620), + [aux_sym_boolean_literal_token1] = ACTIONS(7618), + [aux_sym_boolean_literal_token2] = ACTIONS(7618), + [sym_nothing_literal] = ACTIONS(7618), + [sym_null_literal] = ACTIONS(7618), + [sym_empty_literal] = ACTIONS(7618), + [sym_date_literal] = ACTIONS(7620), + [anon_sym_POUND] = ACTIONS(7618), + }, + [STATE(4731)] = { + [sym_char_position] = STATE(7505), + [aux_sym_output_list_repeat1] = STATE(4731), + [sym_identifier] = ACTIONS(7618), + [sym_newline] = ACTIONS(7620), + [anon_sym_COLON] = ACTIONS(7620), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7618), + [aux_sym_frm_property_statement_token1] = ACTIONS(7618), + [anon_sym_DOT] = ACTIONS(7618), + [anon_sym_BANG] = ACTIONS(7620), + [aux_sym__attribute_identifier_token1] = ACTIONS(7618), + [aux_sym_option_statement_token3] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7618), + [aux_sym_preprocessor_const_token1] = ACTIONS(7618), + [sym_static_modifier] = ACTIONS(7618), + [sym__dim_keyword] = ACTIONS(7618), + [sym__redim_keyword] = ACTIONS(7618), + [aux_sym_get_accessor_token1] = ACTIONS(7618), + [aux_sym_set_accessor_token1] = ACTIONS(7618), + [anon_sym_COMMA] = ACTIONS(7622), + [aux_sym_const_declaration_token1] = ACTIONS(7618), + [anon_sym_LPAREN] = ACTIONS(7620), + [aux_sym_as_type_clause_token2] = ACTIONS(7618), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7618), + [aux_sym_visibility_token1] = ACTIONS(7618), + [aux_sym_visibility_token2] = ACTIONS(7618), + [aux_sym_elseif_fragment_token1] = ACTIONS(7618), + [aux_sym_else_fragment_token1] = ACTIONS(7618), + [aux_sym_select_statement_token1] = ACTIONS(7618), + [aux_sym__for_header_token1] = ACTIONS(7618), + [aux_sym_do_statement_token1] = ACTIONS(7618), + [aux_sym_do_statement_token2] = ACTIONS(7618), + [aux_sym_do_condition_token1] = ACTIONS(7618), + [aux_sym_with_statement_token1] = ACTIONS(7618), + [aux_sym_exit_statement_token1] = ACTIONS(7618), + [sym_end_statement] = ACTIONS(7620), + [aux_sym_on_goto_statement_token1] = ACTIONS(7618), + [aux_sym_on_goto_statement_token2] = ACTIONS(7618), + [aux_sym_on_error_statement_token2] = ACTIONS(7618), + [sym__ambiguous_redim_statement] = ACTIONS(7620), + [aux_sym_erase_statement_token1] = ACTIONS(7618), + [aux_sym_open_statement_token1] = ACTIONS(7618), + [aux_sym_file_mode_token2] = ACTIONS(7618), + [aux_sym_file_access_token2] = ACTIONS(7618), + [aux_sym_file_lock_token2] = ACTIONS(7618), + [aux_sym_print_statement_token1] = ACTIONS(7618), + [anon_sym_PLUS] = ACTIONS(7620), + [anon_sym_DASH] = ACTIONS(7618), + [anon_sym_SEMI] = ACTIONS(7622), + [anon_sym_QMARK] = ACTIONS(7620), + [aux_sym_close_statement_token1] = ACTIONS(7618), + [aux_sym_put_statement_token1] = ACTIONS(7618), + [aux_sym_unlock_statement_token1] = ACTIONS(7618), + [aux_sym_seek_statement_token1] = ACTIONS(7618), + [sym_reset_statement] = ACTIONS(7618), + [aux_sym_raise_event_statement_token1] = ACTIONS(7618), + [sym_stop_statement] = ACTIONS(7618), + [sym_beep_statement] = ACTIONS(7618), + [aux_sym_unload_statement_token1] = ACTIONS(7618), + [aux_sym_def_type_statement_token1] = ACTIONS(7618), + [aux_sym_def_type_statement_token2] = ACTIONS(7618), + [aux_sym_def_type_statement_token3] = ACTIONS(7618), + [aux_sym_def_type_statement_token4] = ACTIONS(7618), + [aux_sym_def_type_statement_token5] = ACTIONS(7618), + [aux_sym_def_type_statement_token6] = ACTIONS(7618), + [aux_sym_def_type_statement_token7] = ACTIONS(7618), + [aux_sym_def_type_statement_token8] = ACTIONS(7618), + [aux_sym_def_type_statement_token9] = ACTIONS(7618), + [aux_sym_def_type_statement_token10] = ACTIONS(7618), + [aux_sym_def_type_statement_token11] = ACTIONS(7618), + [aux_sym_def_type_statement_token12] = ACTIONS(7618), + [aux_sym_def_type_statement_token13] = ACTIONS(7618), + [aux_sym_def_type_statement_token14] = ACTIONS(7618), + [aux_sym_call_statement_token1] = ACTIONS(7618), + [sym__ambiguous_call_statement] = ACTIONS(7618), + [aux_sym_addressof_expression_token1] = ACTIONS(7618), + [aux_sym_type_of_expression_token1] = ACTIONS(7618), + [aux_sym_unary_expression_token1] = ACTIONS(7618), + [sym_string_literal] = ACTIONS(7620), + [sym_number_literal] = ACTIONS(7620), + [aux_sym_boolean_literal_token1] = ACTIONS(7618), + [aux_sym_boolean_literal_token2] = ACTIONS(7618), + [sym_nothing_literal] = ACTIONS(7618), + [sym_null_literal] = ACTIONS(7618), + [sym_empty_literal] = ACTIONS(7618), + [sym_date_literal] = ACTIONS(7620), + [anon_sym_POUND] = ACTIONS(7618), + }, + [STATE(4732)] = { + [sym_identifier] = ACTIONS(5869), + [sym_newline] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5869), + [aux_sym_frm_property_statement_token1] = ACTIONS(5869), + [anon_sym_DOT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [aux_sym__attribute_identifier_token1] = ACTIONS(5869), + [aux_sym_option_statement_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5869), + [aux_sym_preprocessor_const_token1] = ACTIONS(5869), + [sym_static_modifier] = ACTIONS(5869), + [sym__dim_keyword] = ACTIONS(5869), + [sym__redim_keyword] = ACTIONS(5869), + [aux_sym_get_accessor_token1] = ACTIONS(5869), + [aux_sym_set_accessor_token1] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5871), + [aux_sym_const_declaration_token1] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5871), + [aux_sym_as_type_clause_token2] = ACTIONS(5869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5869), + [aux_sym_visibility_token1] = ACTIONS(5869), + [aux_sym_visibility_token2] = ACTIONS(5869), + [aux_sym_elseif_fragment_token1] = ACTIONS(5869), + [aux_sym_else_fragment_token1] = ACTIONS(5869), + [aux_sym_select_statement_token1] = ACTIONS(5869), + [aux_sym__for_header_token1] = ACTIONS(5869), + [aux_sym_do_statement_token1] = ACTIONS(5869), + [aux_sym_do_condition_token1] = ACTIONS(5869), + [aux_sym_while_statement_token1] = ACTIONS(5869), + [aux_sym_with_statement_token1] = ACTIONS(5869), + [aux_sym_exit_statement_token1] = ACTIONS(5869), + [sym_end_statement] = ACTIONS(5871), + [aux_sym_on_goto_statement_token1] = ACTIONS(5869), + [aux_sym_on_goto_statement_token2] = ACTIONS(5869), + [aux_sym_on_error_statement_token2] = ACTIONS(5869), + [sym__ambiguous_redim_statement] = ACTIONS(5871), + [aux_sym_erase_statement_token1] = ACTIONS(5869), + [aux_sym_open_statement_token1] = ACTIONS(5869), + [aux_sym_file_mode_token2] = ACTIONS(5869), + [aux_sym_file_access_token2] = ACTIONS(5869), + [aux_sym_file_lock_token2] = ACTIONS(5869), + [aux_sym_print_statement_token1] = ACTIONS(5869), + [anon_sym_PLUS] = ACTIONS(5871), + [anon_sym_DASH] = ACTIONS(5869), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10177), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10179), + [anon_sym_SEMI] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [aux_sym_close_statement_token1] = ACTIONS(5869), + [aux_sym_put_statement_token1] = ACTIONS(5869), + [aux_sym_unlock_statement_token1] = ACTIONS(5869), + [aux_sym_seek_statement_token1] = ACTIONS(5869), + [sym_reset_statement] = ACTIONS(5869), + [aux_sym_raise_event_statement_token1] = ACTIONS(5869), + [sym_stop_statement] = ACTIONS(5869), + [sym_beep_statement] = ACTIONS(5869), + [aux_sym_unload_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token2] = ACTIONS(5869), + [aux_sym_def_type_statement_token3] = ACTIONS(5869), + [aux_sym_def_type_statement_token4] = ACTIONS(5869), + [aux_sym_def_type_statement_token5] = ACTIONS(5869), + [aux_sym_def_type_statement_token6] = ACTIONS(5869), + [aux_sym_def_type_statement_token7] = ACTIONS(5869), + [aux_sym_def_type_statement_token8] = ACTIONS(5869), + [aux_sym_def_type_statement_token9] = ACTIONS(5869), + [aux_sym_def_type_statement_token10] = ACTIONS(5869), + [aux_sym_def_type_statement_token11] = ACTIONS(5869), + [aux_sym_def_type_statement_token12] = ACTIONS(5869), + [aux_sym_def_type_statement_token13] = ACTIONS(5869), + [aux_sym_def_type_statement_token14] = ACTIONS(5869), + [aux_sym_call_statement_token1] = ACTIONS(5869), + [sym__ambiguous_call_statement] = ACTIONS(5869), + [aux_sym_addressof_expression_token1] = ACTIONS(5869), + [aux_sym_type_of_expression_token1] = ACTIONS(5869), + [aux_sym_unary_expression_token1] = ACTIONS(5869), + [sym_string_literal] = ACTIONS(5871), + [sym_number_literal] = ACTIONS(5871), + [aux_sym_boolean_literal_token1] = ACTIONS(5869), + [aux_sym_boolean_literal_token2] = ACTIONS(5869), + [sym_nothing_literal] = ACTIONS(5869), + [sym_null_literal] = ACTIONS(5869), + [sym_empty_literal] = ACTIONS(5869), + [sym_date_literal] = ACTIONS(5871), + [anon_sym_POUND] = ACTIONS(5869), + }, + [STATE(4733)] = { + [sym_char_position] = STATE(628), + [aux_sym_output_list_repeat1] = STATE(4738), + [sym_identifier] = ACTIONS(7631), + [sym_newline] = ACTIONS(7633), + [anon_sym_COLON] = ACTIONS(7633), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7631), + [aux_sym_frm_property_statement_token1] = ACTIONS(7631), + [anon_sym_DOT] = ACTIONS(7631), + [anon_sym_BANG] = ACTIONS(7633), + [aux_sym__attribute_identifier_token1] = ACTIONS(7631), + [aux_sym_option_statement_token3] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7631), + [aux_sym_preprocessor_const_token1] = ACTIONS(7631), + [sym_static_modifier] = ACTIONS(7631), + [sym__dim_keyword] = ACTIONS(7631), + [sym__redim_keyword] = ACTIONS(7631), + [aux_sym_get_accessor_token1] = ACTIONS(7631), + [aux_sym_set_accessor_token1] = ACTIONS(7631), + [anon_sym_COMMA] = ACTIONS(10181), + [aux_sym_const_declaration_token1] = ACTIONS(7631), + [anon_sym_LPAREN] = ACTIONS(7633), + [aux_sym_as_type_clause_token2] = ACTIONS(7631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7631), + [aux_sym_visibility_token1] = ACTIONS(7631), + [aux_sym_visibility_token2] = ACTIONS(7631), + [aux_sym_elseif_fragment_token1] = ACTIONS(7631), + [aux_sym_else_fragment_token1] = ACTIONS(7631), + [aux_sym_select_statement_token1] = ACTIONS(7631), + [aux_sym__for_header_token1] = ACTIONS(7631), + [aux_sym_do_statement_token1] = ACTIONS(7631), + [aux_sym_do_condition_token1] = ACTIONS(7631), + [aux_sym_while_statement_token1] = ACTIONS(7631), + [aux_sym_with_statement_token1] = ACTIONS(7631), + [aux_sym_exit_statement_token1] = ACTIONS(7631), + [sym_end_statement] = ACTIONS(7633), + [aux_sym_on_goto_statement_token1] = ACTIONS(7631), + [aux_sym_on_goto_statement_token2] = ACTIONS(7631), + [aux_sym_on_error_statement_token2] = ACTIONS(7631), + [sym__ambiguous_redim_statement] = ACTIONS(7633), + [aux_sym_erase_statement_token1] = ACTIONS(7631), + [aux_sym_open_statement_token1] = ACTIONS(7631), + [aux_sym_file_mode_token2] = ACTIONS(7631), + [aux_sym_file_access_token2] = ACTIONS(7631), + [aux_sym_file_lock_token2] = ACTIONS(7631), + [aux_sym_print_statement_token1] = ACTIONS(7631), + [anon_sym_PLUS] = ACTIONS(7633), + [anon_sym_DASH] = ACTIONS(7631), + [anon_sym_SEMI] = ACTIONS(10181), + [anon_sym_QMARK] = ACTIONS(7633), + [aux_sym_close_statement_token1] = ACTIONS(7631), + [aux_sym_put_statement_token1] = ACTIONS(7631), + [aux_sym_unlock_statement_token1] = ACTIONS(7631), + [aux_sym_seek_statement_token1] = ACTIONS(7631), + [sym_reset_statement] = ACTIONS(7631), + [aux_sym_raise_event_statement_token1] = ACTIONS(7631), + [sym_stop_statement] = ACTIONS(7631), + [sym_beep_statement] = ACTIONS(7631), + [aux_sym_unload_statement_token1] = ACTIONS(7631), + [aux_sym_def_type_statement_token1] = ACTIONS(7631), + [aux_sym_def_type_statement_token2] = ACTIONS(7631), + [aux_sym_def_type_statement_token3] = ACTIONS(7631), + [aux_sym_def_type_statement_token4] = ACTIONS(7631), + [aux_sym_def_type_statement_token5] = ACTIONS(7631), + [aux_sym_def_type_statement_token6] = ACTIONS(7631), + [aux_sym_def_type_statement_token7] = ACTIONS(7631), + [aux_sym_def_type_statement_token8] = ACTIONS(7631), + [aux_sym_def_type_statement_token9] = ACTIONS(7631), + [aux_sym_def_type_statement_token10] = ACTIONS(7631), + [aux_sym_def_type_statement_token11] = ACTIONS(7631), + [aux_sym_def_type_statement_token12] = ACTIONS(7631), + [aux_sym_def_type_statement_token13] = ACTIONS(7631), + [aux_sym_def_type_statement_token14] = ACTIONS(7631), + [aux_sym_call_statement_token1] = ACTIONS(7631), + [sym__ambiguous_call_statement] = ACTIONS(7631), + [aux_sym_addressof_expression_token1] = ACTIONS(7631), + [aux_sym_type_of_expression_token1] = ACTIONS(7631), + [aux_sym_unary_expression_token1] = ACTIONS(7631), + [sym_string_literal] = ACTIONS(7633), + [sym_number_literal] = ACTIONS(7633), + [aux_sym_boolean_literal_token1] = ACTIONS(7631), + [aux_sym_boolean_literal_token2] = ACTIONS(7631), + [sym_nothing_literal] = ACTIONS(7631), + [sym_null_literal] = ACTIONS(7631), + [sym_empty_literal] = ACTIONS(7631), + [sym_date_literal] = ACTIONS(7633), + [anon_sym_POUND] = ACTIONS(7631), + }, + [STATE(4734)] = { + [sym_identifier] = ACTIONS(7640), + [sym_newline] = ACTIONS(7642), + [anon_sym_COLON] = ACTIONS(7642), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7640), + [aux_sym_frm_property_statement_token1] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7640), + [anon_sym_BANG] = ACTIONS(7642), + [aux_sym__attribute_identifier_token1] = ACTIONS(7640), + [aux_sym_option_statement_token3] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7640), + [aux_sym_preprocessor_const_token1] = ACTIONS(7640), + [sym_static_modifier] = ACTIONS(7640), + [sym__dim_keyword] = ACTIONS(7640), + [sym__redim_keyword] = ACTIONS(7640), + [aux_sym_get_accessor_token1] = ACTIONS(7640), + [aux_sym_set_accessor_token1] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7642), + [aux_sym_const_declaration_token1] = ACTIONS(7640), + [anon_sym_LPAREN] = ACTIONS(7642), + [aux_sym_as_type_clause_token2] = ACTIONS(7640), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7640), + [aux_sym_visibility_token1] = ACTIONS(7640), + [aux_sym_visibility_token2] = ACTIONS(7640), + [aux_sym_elseif_fragment_token1] = ACTIONS(7640), + [aux_sym_else_fragment_token1] = ACTIONS(7640), + [aux_sym_select_statement_token1] = ACTIONS(7640), + [aux_sym__for_header_token1] = ACTIONS(7640), + [aux_sym_do_statement_token1] = ACTIONS(7640), + [aux_sym_do_condition_token1] = ACTIONS(7640), + [aux_sym_while_statement_token1] = ACTIONS(7640), + [aux_sym_with_statement_token1] = ACTIONS(7640), + [aux_sym_exit_statement_token1] = ACTIONS(7640), + [sym_end_statement] = ACTIONS(7642), + [aux_sym_on_goto_statement_token1] = ACTIONS(7640), + [aux_sym_on_goto_statement_token2] = ACTIONS(7640), + [aux_sym_on_error_statement_token2] = ACTIONS(7640), + [sym__ambiguous_redim_statement] = ACTIONS(7642), + [aux_sym_erase_statement_token1] = ACTIONS(7640), + [aux_sym_open_statement_token1] = ACTIONS(7640), + [aux_sym_file_mode_token2] = ACTIONS(7640), + [aux_sym_file_access_token2] = ACTIONS(7640), + [aux_sym_file_lock_token2] = ACTIONS(7640), + [aux_sym_print_statement_token1] = ACTIONS(7640), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_DASH] = ACTIONS(7640), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10177), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10179), + [anon_sym_SEMI] = ACTIONS(7642), + [anon_sym_QMARK] = ACTIONS(7642), + [aux_sym_close_statement_token1] = ACTIONS(7640), + [aux_sym_put_statement_token1] = ACTIONS(7640), + [aux_sym_unlock_statement_token1] = ACTIONS(7640), + [aux_sym_seek_statement_token1] = ACTIONS(7640), + [sym_reset_statement] = ACTIONS(7640), + [aux_sym_raise_event_statement_token1] = ACTIONS(7640), + [sym_stop_statement] = ACTIONS(7640), + [sym_beep_statement] = ACTIONS(7640), + [aux_sym_unload_statement_token1] = ACTIONS(7640), + [aux_sym_def_type_statement_token1] = ACTIONS(7640), + [aux_sym_def_type_statement_token2] = ACTIONS(7640), + [aux_sym_def_type_statement_token3] = ACTIONS(7640), + [aux_sym_def_type_statement_token4] = ACTIONS(7640), + [aux_sym_def_type_statement_token5] = ACTIONS(7640), + [aux_sym_def_type_statement_token6] = ACTIONS(7640), + [aux_sym_def_type_statement_token7] = ACTIONS(7640), + [aux_sym_def_type_statement_token8] = ACTIONS(7640), + [aux_sym_def_type_statement_token9] = ACTIONS(7640), + [aux_sym_def_type_statement_token10] = ACTIONS(7640), + [aux_sym_def_type_statement_token11] = ACTIONS(7640), + [aux_sym_def_type_statement_token12] = ACTIONS(7640), + [aux_sym_def_type_statement_token13] = ACTIONS(7640), + [aux_sym_def_type_statement_token14] = ACTIONS(7640), + [aux_sym_call_statement_token1] = ACTIONS(7640), + [sym__ambiguous_call_statement] = ACTIONS(7640), + [aux_sym_addressof_expression_token1] = ACTIONS(7640), + [aux_sym_type_of_expression_token1] = ACTIONS(7640), + [aux_sym_unary_expression_token1] = ACTIONS(7640), + [sym_string_literal] = ACTIONS(7642), + [sym_number_literal] = ACTIONS(7642), + [aux_sym_boolean_literal_token1] = ACTIONS(7640), + [aux_sym_boolean_literal_token2] = ACTIONS(7640), + [sym_nothing_literal] = ACTIONS(7640), + [sym_null_literal] = ACTIONS(7640), + [sym_empty_literal] = ACTIONS(7640), + [sym_date_literal] = ACTIONS(7642), + [anon_sym_POUND] = ACTIONS(7640), + }, + [STATE(4735)] = { + [sym_identifier] = ACTIONS(7647), + [sym_newline] = ACTIONS(7649), + [anon_sym_COLON] = ACTIONS(7649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7647), + [aux_sym_frm_property_statement_token1] = ACTIONS(7647), + [anon_sym_DOT] = ACTIONS(7647), + [anon_sym_BANG] = ACTIONS(7649), + [aux_sym__attribute_identifier_token1] = ACTIONS(7647), + [aux_sym_option_statement_token3] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7647), + [aux_sym_preprocessor_const_token1] = ACTIONS(7647), + [sym_static_modifier] = ACTIONS(7647), + [sym__dim_keyword] = ACTIONS(7647), + [sym__redim_keyword] = ACTIONS(7647), + [aux_sym_get_accessor_token1] = ACTIONS(7647), + [aux_sym_set_accessor_token1] = ACTIONS(7647), + [anon_sym_COMMA] = ACTIONS(7649), + [aux_sym_const_declaration_token1] = ACTIONS(7647), + [anon_sym_LPAREN] = ACTIONS(7649), + [aux_sym_as_type_clause_token2] = ACTIONS(7647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7647), + [aux_sym_visibility_token1] = ACTIONS(7647), + [aux_sym_visibility_token2] = ACTIONS(7647), + [aux_sym_elseif_fragment_token1] = ACTIONS(7647), + [aux_sym_else_fragment_token1] = ACTIONS(7647), + [aux_sym_select_statement_token1] = ACTIONS(7647), + [aux_sym__for_header_token1] = ACTIONS(7647), + [aux_sym_do_statement_token1] = ACTIONS(7647), + [aux_sym_do_condition_token1] = ACTIONS(7647), + [aux_sym_while_statement_token1] = ACTIONS(7647), + [aux_sym_with_statement_token1] = ACTIONS(7647), + [aux_sym_exit_statement_token1] = ACTIONS(7647), + [sym_end_statement] = ACTIONS(7649), + [aux_sym_on_goto_statement_token1] = ACTIONS(7647), + [aux_sym_on_goto_statement_token2] = ACTIONS(7647), + [aux_sym_on_error_statement_token2] = ACTIONS(7647), + [sym__ambiguous_redim_statement] = ACTIONS(7649), + [aux_sym_erase_statement_token1] = ACTIONS(7647), + [aux_sym_open_statement_token1] = ACTIONS(7647), + [aux_sym_file_mode_token2] = ACTIONS(7647), + [aux_sym_file_access_token2] = ACTIONS(7647), + [aux_sym_file_lock_token2] = ACTIONS(7647), + [aux_sym_print_statement_token1] = ACTIONS(7647), + [anon_sym_PLUS] = ACTIONS(7649), + [anon_sym_DASH] = ACTIONS(7647), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10177), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10179), + [anon_sym_SEMI] = ACTIONS(7649), + [anon_sym_QMARK] = ACTIONS(7649), + [aux_sym_close_statement_token1] = ACTIONS(7647), + [aux_sym_put_statement_token1] = ACTIONS(7647), + [aux_sym_unlock_statement_token1] = ACTIONS(7647), + [aux_sym_seek_statement_token1] = ACTIONS(7647), + [sym_reset_statement] = ACTIONS(7647), + [aux_sym_raise_event_statement_token1] = ACTIONS(7647), + [sym_stop_statement] = ACTIONS(7647), + [sym_beep_statement] = ACTIONS(7647), + [aux_sym_unload_statement_token1] = ACTIONS(7647), + [aux_sym_def_type_statement_token1] = ACTIONS(7647), + [aux_sym_def_type_statement_token2] = ACTIONS(7647), + [aux_sym_def_type_statement_token3] = ACTIONS(7647), + [aux_sym_def_type_statement_token4] = ACTIONS(7647), + [aux_sym_def_type_statement_token5] = ACTIONS(7647), + [aux_sym_def_type_statement_token6] = ACTIONS(7647), + [aux_sym_def_type_statement_token7] = ACTIONS(7647), + [aux_sym_def_type_statement_token8] = ACTIONS(7647), + [aux_sym_def_type_statement_token9] = ACTIONS(7647), + [aux_sym_def_type_statement_token10] = ACTIONS(7647), + [aux_sym_def_type_statement_token11] = ACTIONS(7647), + [aux_sym_def_type_statement_token12] = ACTIONS(7647), + [aux_sym_def_type_statement_token13] = ACTIONS(7647), + [aux_sym_def_type_statement_token14] = ACTIONS(7647), + [aux_sym_call_statement_token1] = ACTIONS(7647), + [sym__ambiguous_call_statement] = ACTIONS(7647), + [aux_sym_addressof_expression_token1] = ACTIONS(7647), + [aux_sym_type_of_expression_token1] = ACTIONS(7647), + [aux_sym_unary_expression_token1] = ACTIONS(7647), + [sym_string_literal] = ACTIONS(7649), + [sym_number_literal] = ACTIONS(7649), + [aux_sym_boolean_literal_token1] = ACTIONS(7647), + [aux_sym_boolean_literal_token2] = ACTIONS(7647), + [sym_nothing_literal] = ACTIONS(7647), + [sym_null_literal] = ACTIONS(7647), + [sym_empty_literal] = ACTIONS(7647), + [sym_date_literal] = ACTIONS(7649), + [anon_sym_POUND] = ACTIONS(7647), + }, + [STATE(4736)] = { + [aux_sym__argument_sequence_repeat1] = STATE(5137), + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(5138), + [sym_identifier] = ACTIONS(7651), + [sym_newline] = ACTIONS(7653), + [anon_sym_COLON] = ACTIONS(7653), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7651), + [aux_sym_frm_property_statement_token1] = ACTIONS(7651), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_BANG] = ACTIONS(7653), + [aux_sym__attribute_identifier_token1] = ACTIONS(7651), + [aux_sym_option_statement_token3] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7651), + [aux_sym_preprocessor_const_token1] = ACTIONS(7651), + [sym_static_modifier] = ACTIONS(7651), + [sym__dim_keyword] = ACTIONS(7651), + [sym__redim_keyword] = ACTIONS(7651), + [aux_sym_get_accessor_token1] = ACTIONS(7651), + [aux_sym_set_accessor_token1] = ACTIONS(7651), + [anon_sym_COMMA] = ACTIONS(10183), + [aux_sym_const_declaration_token1] = ACTIONS(7651), + [anon_sym_LPAREN] = ACTIONS(7653), + [aux_sym_as_type_clause_token2] = ACTIONS(7651), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7651), + [aux_sym_visibility_token1] = ACTIONS(7651), + [aux_sym_visibility_token2] = ACTIONS(7651), + [aux_sym_elseif_fragment_token1] = ACTIONS(7651), + [aux_sym_else_fragment_token1] = ACTIONS(7651), + [aux_sym_select_statement_token1] = ACTIONS(7651), + [aux_sym__for_header_token1] = ACTIONS(7651), + [aux_sym_do_statement_token1] = ACTIONS(7651), + [aux_sym_do_condition_token1] = ACTIONS(7651), + [aux_sym_while_statement_token1] = ACTIONS(7651), + [aux_sym_with_statement_token1] = ACTIONS(7651), + [aux_sym_exit_statement_token1] = ACTIONS(7651), + [sym_end_statement] = ACTIONS(7653), + [aux_sym_on_goto_statement_token1] = ACTIONS(7651), + [aux_sym_on_goto_statement_token2] = ACTIONS(7651), + [aux_sym_on_error_statement_token2] = ACTIONS(7651), + [sym__ambiguous_redim_statement] = ACTIONS(7653), + [aux_sym_erase_statement_token1] = ACTIONS(7651), + [aux_sym_open_statement_token1] = ACTIONS(7651), + [aux_sym_file_mode_token2] = ACTIONS(7651), + [aux_sym_file_access_token2] = ACTIONS(7651), + [aux_sym_file_lock_token2] = ACTIONS(7651), + [aux_sym_print_statement_token1] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_SEMI] = ACTIONS(10185), + [anon_sym_QMARK] = ACTIONS(7653), + [aux_sym_close_statement_token1] = ACTIONS(7651), + [aux_sym_put_statement_token1] = ACTIONS(7651), + [aux_sym_unlock_statement_token1] = ACTIONS(7651), + [aux_sym_seek_statement_token1] = ACTIONS(7651), + [sym_reset_statement] = ACTIONS(7651), + [aux_sym_raise_event_statement_token1] = ACTIONS(7651), + [sym_stop_statement] = ACTIONS(7651), + [sym_beep_statement] = ACTIONS(7651), + [aux_sym_unload_statement_token1] = ACTIONS(7651), + [aux_sym_def_type_statement_token1] = ACTIONS(7651), + [aux_sym_def_type_statement_token2] = ACTIONS(7651), + [aux_sym_def_type_statement_token3] = ACTIONS(7651), + [aux_sym_def_type_statement_token4] = ACTIONS(7651), + [aux_sym_def_type_statement_token5] = ACTIONS(7651), + [aux_sym_def_type_statement_token6] = ACTIONS(7651), + [aux_sym_def_type_statement_token7] = ACTIONS(7651), + [aux_sym_def_type_statement_token8] = ACTIONS(7651), + [aux_sym_def_type_statement_token9] = ACTIONS(7651), + [aux_sym_def_type_statement_token10] = ACTIONS(7651), + [aux_sym_def_type_statement_token11] = ACTIONS(7651), + [aux_sym_def_type_statement_token12] = ACTIONS(7651), + [aux_sym_def_type_statement_token13] = ACTIONS(7651), + [aux_sym_def_type_statement_token14] = ACTIONS(7651), + [aux_sym_call_statement_token1] = ACTIONS(7651), + [sym__ambiguous_call_statement] = ACTIONS(7651), + [aux_sym_addressof_expression_token1] = ACTIONS(7651), + [aux_sym_type_of_expression_token1] = ACTIONS(7651), + [aux_sym_unary_expression_token1] = ACTIONS(7651), + [sym_string_literal] = ACTIONS(7653), + [sym_number_literal] = ACTIONS(7653), + [aux_sym_boolean_literal_token1] = ACTIONS(7651), + [aux_sym_boolean_literal_token2] = ACTIONS(7651), + [sym_nothing_literal] = ACTIONS(7651), + [sym_null_literal] = ACTIONS(7651), + [sym_empty_literal] = ACTIONS(7651), + [sym_date_literal] = ACTIONS(7653), + [anon_sym_POUND] = ACTIONS(7651), + }, + [STATE(4737)] = { + [sym_char_position] = STATE(629), + [aux_sym_output_list_repeat1] = STATE(4739), + [sym_identifier] = ACTIONS(7474), + [sym_newline] = ACTIONS(7476), + [anon_sym_COLON] = ACTIONS(7476), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7474), + [aux_sym_frm_property_statement_token1] = ACTIONS(7474), + [anon_sym_DOT] = ACTIONS(7474), + [anon_sym_BANG] = ACTIONS(7476), + [aux_sym__attribute_identifier_token1] = ACTIONS(7474), + [aux_sym_option_statement_token3] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7474), + [aux_sym_preprocessor_const_token1] = ACTIONS(7474), + [sym_static_modifier] = ACTIONS(7474), + [sym__dim_keyword] = ACTIONS(7474), + [sym__redim_keyword] = ACTIONS(7474), + [aux_sym_get_accessor_token1] = ACTIONS(7474), + [aux_sym_set_accessor_token1] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(10181), + [aux_sym_const_declaration_token1] = ACTIONS(7474), + [anon_sym_LPAREN] = ACTIONS(7476), + [aux_sym_as_type_clause_token2] = ACTIONS(7474), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7474), + [aux_sym_visibility_token1] = ACTIONS(7474), + [aux_sym_visibility_token2] = ACTIONS(7474), + [aux_sym_elseif_fragment_token1] = ACTIONS(7474), + [aux_sym_else_fragment_token1] = ACTIONS(7474), + [aux_sym_select_statement_token1] = ACTIONS(7474), + [aux_sym__for_header_token1] = ACTIONS(7474), + [aux_sym_do_statement_token1] = ACTIONS(7474), + [aux_sym_do_condition_token1] = ACTIONS(7474), + [aux_sym_while_statement_token1] = ACTIONS(7474), + [aux_sym_with_statement_token1] = ACTIONS(7474), + [aux_sym_exit_statement_token1] = ACTIONS(7474), + [sym_end_statement] = ACTIONS(7476), + [aux_sym_on_goto_statement_token1] = ACTIONS(7474), + [aux_sym_on_goto_statement_token2] = ACTIONS(7474), + [aux_sym_on_error_statement_token2] = ACTIONS(7474), + [sym__ambiguous_redim_statement] = ACTIONS(7476), + [aux_sym_erase_statement_token1] = ACTIONS(7474), + [aux_sym_open_statement_token1] = ACTIONS(7474), + [aux_sym_file_mode_token2] = ACTIONS(7474), + [aux_sym_file_access_token2] = ACTIONS(7474), + [aux_sym_file_lock_token2] = ACTIONS(7474), + [aux_sym_print_statement_token1] = ACTIONS(7474), + [anon_sym_PLUS] = ACTIONS(7476), + [anon_sym_DASH] = ACTIONS(7474), + [anon_sym_SEMI] = ACTIONS(10181), + [anon_sym_QMARK] = ACTIONS(7476), + [aux_sym_close_statement_token1] = ACTIONS(7474), + [aux_sym_put_statement_token1] = ACTIONS(7474), + [aux_sym_unlock_statement_token1] = ACTIONS(7474), + [aux_sym_seek_statement_token1] = ACTIONS(7474), + [sym_reset_statement] = ACTIONS(7474), + [aux_sym_raise_event_statement_token1] = ACTIONS(7474), + [sym_stop_statement] = ACTIONS(7474), + [sym_beep_statement] = ACTIONS(7474), + [aux_sym_unload_statement_token1] = ACTIONS(7474), + [aux_sym_def_type_statement_token1] = ACTIONS(7474), + [aux_sym_def_type_statement_token2] = ACTIONS(7474), + [aux_sym_def_type_statement_token3] = ACTIONS(7474), + [aux_sym_def_type_statement_token4] = ACTIONS(7474), + [aux_sym_def_type_statement_token5] = ACTIONS(7474), + [aux_sym_def_type_statement_token6] = ACTIONS(7474), + [aux_sym_def_type_statement_token7] = ACTIONS(7474), + [aux_sym_def_type_statement_token8] = ACTIONS(7474), + [aux_sym_def_type_statement_token9] = ACTIONS(7474), + [aux_sym_def_type_statement_token10] = ACTIONS(7474), + [aux_sym_def_type_statement_token11] = ACTIONS(7474), + [aux_sym_def_type_statement_token12] = ACTIONS(7474), + [aux_sym_def_type_statement_token13] = ACTIONS(7474), + [aux_sym_def_type_statement_token14] = ACTIONS(7474), + [aux_sym_call_statement_token1] = ACTIONS(7474), + [sym__ambiguous_call_statement] = ACTIONS(7474), + [aux_sym_addressof_expression_token1] = ACTIONS(7474), + [aux_sym_type_of_expression_token1] = ACTIONS(7474), + [aux_sym_unary_expression_token1] = ACTIONS(7474), + [sym_string_literal] = ACTIONS(7476), + [sym_number_literal] = ACTIONS(7476), + [aux_sym_boolean_literal_token1] = ACTIONS(7474), + [aux_sym_boolean_literal_token2] = ACTIONS(7474), + [sym_nothing_literal] = ACTIONS(7474), + [sym_null_literal] = ACTIONS(7474), + [sym_empty_literal] = ACTIONS(7474), + [sym_date_literal] = ACTIONS(7476), + [anon_sym_POUND] = ACTIONS(7474), + }, + [STATE(4738)] = { + [sym_char_position] = STATE(630), + [aux_sym_output_list_repeat1] = STATE(4744), + [sym_identifier] = ACTIONS(7609), + [sym_newline] = ACTIONS(7611), + [anon_sym_COLON] = ACTIONS(7611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7609), + [aux_sym_frm_property_statement_token1] = ACTIONS(7609), + [anon_sym_DOT] = ACTIONS(7609), + [anon_sym_BANG] = ACTIONS(7611), + [aux_sym__attribute_identifier_token1] = ACTIONS(7609), + [aux_sym_option_statement_token3] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7609), + [aux_sym_preprocessor_const_token1] = ACTIONS(7609), + [sym_static_modifier] = ACTIONS(7609), + [sym__dim_keyword] = ACTIONS(7609), + [sym__redim_keyword] = ACTIONS(7609), + [aux_sym_get_accessor_token1] = ACTIONS(7609), + [aux_sym_set_accessor_token1] = ACTIONS(7609), + [anon_sym_COMMA] = ACTIONS(10181), + [aux_sym_const_declaration_token1] = ACTIONS(7609), + [anon_sym_LPAREN] = ACTIONS(7611), + [aux_sym_as_type_clause_token2] = ACTIONS(7609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7609), + [aux_sym_visibility_token1] = ACTIONS(7609), + [aux_sym_visibility_token2] = ACTIONS(7609), + [aux_sym_elseif_fragment_token1] = ACTIONS(7609), + [aux_sym_else_fragment_token1] = ACTIONS(7609), + [aux_sym_select_statement_token1] = ACTIONS(7609), + [aux_sym__for_header_token1] = ACTIONS(7609), + [aux_sym_do_statement_token1] = ACTIONS(7609), + [aux_sym_do_condition_token1] = ACTIONS(7609), + [aux_sym_while_statement_token1] = ACTIONS(7609), + [aux_sym_with_statement_token1] = ACTIONS(7609), + [aux_sym_exit_statement_token1] = ACTIONS(7609), + [sym_end_statement] = ACTIONS(7611), + [aux_sym_on_goto_statement_token1] = ACTIONS(7609), + [aux_sym_on_goto_statement_token2] = ACTIONS(7609), + [aux_sym_on_error_statement_token2] = ACTIONS(7609), + [sym__ambiguous_redim_statement] = ACTIONS(7611), + [aux_sym_erase_statement_token1] = ACTIONS(7609), + [aux_sym_open_statement_token1] = ACTIONS(7609), + [aux_sym_file_mode_token2] = ACTIONS(7609), + [aux_sym_file_access_token2] = ACTIONS(7609), + [aux_sym_file_lock_token2] = ACTIONS(7609), + [aux_sym_print_statement_token1] = ACTIONS(7609), + [anon_sym_PLUS] = ACTIONS(7611), + [anon_sym_DASH] = ACTIONS(7609), + [anon_sym_SEMI] = ACTIONS(10181), + [anon_sym_QMARK] = ACTIONS(7611), + [aux_sym_close_statement_token1] = ACTIONS(7609), + [aux_sym_put_statement_token1] = ACTIONS(7609), + [aux_sym_unlock_statement_token1] = ACTIONS(7609), + [aux_sym_seek_statement_token1] = ACTIONS(7609), + [sym_reset_statement] = ACTIONS(7609), + [aux_sym_raise_event_statement_token1] = ACTIONS(7609), + [sym_stop_statement] = ACTIONS(7609), + [sym_beep_statement] = ACTIONS(7609), + [aux_sym_unload_statement_token1] = ACTIONS(7609), + [aux_sym_def_type_statement_token1] = ACTIONS(7609), + [aux_sym_def_type_statement_token2] = ACTIONS(7609), + [aux_sym_def_type_statement_token3] = ACTIONS(7609), + [aux_sym_def_type_statement_token4] = ACTIONS(7609), + [aux_sym_def_type_statement_token5] = ACTIONS(7609), + [aux_sym_def_type_statement_token6] = ACTIONS(7609), + [aux_sym_def_type_statement_token7] = ACTIONS(7609), + [aux_sym_def_type_statement_token8] = ACTIONS(7609), + [aux_sym_def_type_statement_token9] = ACTIONS(7609), + [aux_sym_def_type_statement_token10] = ACTIONS(7609), + [aux_sym_def_type_statement_token11] = ACTIONS(7609), + [aux_sym_def_type_statement_token12] = ACTIONS(7609), + [aux_sym_def_type_statement_token13] = ACTIONS(7609), + [aux_sym_def_type_statement_token14] = ACTIONS(7609), + [aux_sym_call_statement_token1] = ACTIONS(7609), + [sym__ambiguous_call_statement] = ACTIONS(7609), + [aux_sym_addressof_expression_token1] = ACTIONS(7609), + [aux_sym_type_of_expression_token1] = ACTIONS(7609), + [aux_sym_unary_expression_token1] = ACTIONS(7609), + [sym_string_literal] = ACTIONS(7611), + [sym_number_literal] = ACTIONS(7611), + [aux_sym_boolean_literal_token1] = ACTIONS(7609), + [aux_sym_boolean_literal_token2] = ACTIONS(7609), + [sym_nothing_literal] = ACTIONS(7609), + [sym_null_literal] = ACTIONS(7609), + [sym_empty_literal] = ACTIONS(7609), + [sym_date_literal] = ACTIONS(7611), + [anon_sym_POUND] = ACTIONS(7609), + }, + [STATE(4739)] = { + [sym_char_position] = STATE(631), + [aux_sym_output_list_repeat1] = STATE(4744), + [sym_identifier] = ACTIONS(7460), + [sym_newline] = ACTIONS(7462), + [anon_sym_COLON] = ACTIONS(7462), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7460), + [aux_sym_frm_property_statement_token1] = ACTIONS(7460), + [anon_sym_DOT] = ACTIONS(7460), + [anon_sym_BANG] = ACTIONS(7462), + [aux_sym__attribute_identifier_token1] = ACTIONS(7460), + [aux_sym_option_statement_token3] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7460), + [aux_sym_preprocessor_const_token1] = ACTIONS(7460), + [sym_static_modifier] = ACTIONS(7460), + [sym__dim_keyword] = ACTIONS(7460), + [sym__redim_keyword] = ACTIONS(7460), + [aux_sym_get_accessor_token1] = ACTIONS(7460), + [aux_sym_set_accessor_token1] = ACTIONS(7460), + [anon_sym_COMMA] = ACTIONS(10181), + [aux_sym_const_declaration_token1] = ACTIONS(7460), + [anon_sym_LPAREN] = ACTIONS(7462), + [aux_sym_as_type_clause_token2] = ACTIONS(7460), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7460), + [aux_sym_visibility_token1] = ACTIONS(7460), + [aux_sym_visibility_token2] = ACTIONS(7460), + [aux_sym_elseif_fragment_token1] = ACTIONS(7460), + [aux_sym_else_fragment_token1] = ACTIONS(7460), + [aux_sym_select_statement_token1] = ACTIONS(7460), + [aux_sym__for_header_token1] = ACTIONS(7460), + [aux_sym_do_statement_token1] = ACTIONS(7460), + [aux_sym_do_condition_token1] = ACTIONS(7460), + [aux_sym_while_statement_token1] = ACTIONS(7460), + [aux_sym_with_statement_token1] = ACTIONS(7460), + [aux_sym_exit_statement_token1] = ACTIONS(7460), + [sym_end_statement] = ACTIONS(7462), + [aux_sym_on_goto_statement_token1] = ACTIONS(7460), + [aux_sym_on_goto_statement_token2] = ACTIONS(7460), + [aux_sym_on_error_statement_token2] = ACTIONS(7460), + [sym__ambiguous_redim_statement] = ACTIONS(7462), + [aux_sym_erase_statement_token1] = ACTIONS(7460), + [aux_sym_open_statement_token1] = ACTIONS(7460), + [aux_sym_file_mode_token2] = ACTIONS(7460), + [aux_sym_file_access_token2] = ACTIONS(7460), + [aux_sym_file_lock_token2] = ACTIONS(7460), + [aux_sym_print_statement_token1] = ACTIONS(7460), + [anon_sym_PLUS] = ACTIONS(7462), + [anon_sym_DASH] = ACTIONS(7460), + [anon_sym_SEMI] = ACTIONS(10181), + [anon_sym_QMARK] = ACTIONS(7462), + [aux_sym_close_statement_token1] = ACTIONS(7460), + [aux_sym_put_statement_token1] = ACTIONS(7460), + [aux_sym_unlock_statement_token1] = ACTIONS(7460), + [aux_sym_seek_statement_token1] = ACTIONS(7460), + [sym_reset_statement] = ACTIONS(7460), + [aux_sym_raise_event_statement_token1] = ACTIONS(7460), + [sym_stop_statement] = ACTIONS(7460), + [sym_beep_statement] = ACTIONS(7460), + [aux_sym_unload_statement_token1] = ACTIONS(7460), + [aux_sym_def_type_statement_token1] = ACTIONS(7460), + [aux_sym_def_type_statement_token2] = ACTIONS(7460), + [aux_sym_def_type_statement_token3] = ACTIONS(7460), + [aux_sym_def_type_statement_token4] = ACTIONS(7460), + [aux_sym_def_type_statement_token5] = ACTIONS(7460), + [aux_sym_def_type_statement_token6] = ACTIONS(7460), + [aux_sym_def_type_statement_token7] = ACTIONS(7460), + [aux_sym_def_type_statement_token8] = ACTIONS(7460), + [aux_sym_def_type_statement_token9] = ACTIONS(7460), + [aux_sym_def_type_statement_token10] = ACTIONS(7460), + [aux_sym_def_type_statement_token11] = ACTIONS(7460), + [aux_sym_def_type_statement_token12] = ACTIONS(7460), + [aux_sym_def_type_statement_token13] = ACTIONS(7460), + [aux_sym_def_type_statement_token14] = ACTIONS(7460), + [aux_sym_call_statement_token1] = ACTIONS(7460), + [sym__ambiguous_call_statement] = ACTIONS(7460), + [aux_sym_addressof_expression_token1] = ACTIONS(7460), + [aux_sym_type_of_expression_token1] = ACTIONS(7460), + [aux_sym_unary_expression_token1] = ACTIONS(7460), + [sym_string_literal] = ACTIONS(7462), + [sym_number_literal] = ACTIONS(7462), + [aux_sym_boolean_literal_token1] = ACTIONS(7460), + [aux_sym_boolean_literal_token2] = ACTIONS(7460), + [sym_nothing_literal] = ACTIONS(7460), + [sym_null_literal] = ACTIONS(7460), + [sym_empty_literal] = ACTIONS(7460), + [sym_date_literal] = ACTIONS(7462), + [anon_sym_POUND] = ACTIONS(7460), + }, + [STATE(4740)] = { + [sym_identifier] = ACTIONS(5699), + [sym_newline] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5701), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5699), + [aux_sym_frm_property_statement_token1] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5699), + [anon_sym_BANG] = ACTIONS(5701), + [aux_sym__attribute_identifier_token1] = ACTIONS(5699), + [aux_sym_option_statement_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5699), + [aux_sym_preprocessor_const_token1] = ACTIONS(5699), + [sym_static_modifier] = ACTIONS(5699), + [sym__dim_keyword] = ACTIONS(5699), + [sym__redim_keyword] = ACTIONS(5699), + [aux_sym_get_accessor_token1] = ACTIONS(5699), + [aux_sym_set_accessor_token1] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5701), + [aux_sym_const_declaration_token1] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(5701), + [aux_sym_as_type_clause_token2] = ACTIONS(5699), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5699), + [aux_sym_visibility_token1] = ACTIONS(5699), + [aux_sym_visibility_token2] = ACTIONS(5699), + [aux_sym_elseif_fragment_token1] = ACTIONS(5699), + [aux_sym_else_fragment_token1] = ACTIONS(5699), + [aux_sym_select_statement_token1] = ACTIONS(5699), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5699), + [aux_sym__for_header_token1] = ACTIONS(5699), + [aux_sym_do_statement_token1] = ACTIONS(5699), + [aux_sym_do_condition_token1] = ACTIONS(5699), + [aux_sym_with_statement_token1] = ACTIONS(5699), + [aux_sym_exit_statement_token1] = ACTIONS(5699), + [sym_end_statement] = ACTIONS(5701), + [aux_sym_on_goto_statement_token1] = ACTIONS(5699), + [aux_sym_on_goto_statement_token2] = ACTIONS(5699), + [aux_sym_on_error_statement_token2] = ACTIONS(5699), + [sym__ambiguous_redim_statement] = ACTIONS(5701), + [aux_sym_erase_statement_token1] = ACTIONS(5699), + [aux_sym_open_statement_token1] = ACTIONS(5699), + [aux_sym_file_mode_token2] = ACTIONS(5699), + [aux_sym_file_access_token2] = ACTIONS(5699), + [aux_sym_file_lock_token2] = ACTIONS(5699), + [aux_sym_print_statement_token1] = ACTIONS(5699), + [anon_sym_PLUS] = ACTIONS(5701), + [anon_sym_DASH] = ACTIONS(5699), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10159), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10161), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5701), + [aux_sym_close_statement_token1] = ACTIONS(5699), + [aux_sym_put_statement_token1] = ACTIONS(5699), + [aux_sym_unlock_statement_token1] = ACTIONS(5699), + [aux_sym_seek_statement_token1] = ACTIONS(5699), + [sym_reset_statement] = ACTIONS(5699), + [aux_sym_raise_event_statement_token1] = ACTIONS(5699), + [sym_stop_statement] = ACTIONS(5699), + [sym_beep_statement] = ACTIONS(5699), + [aux_sym_unload_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token2] = ACTIONS(5699), + [aux_sym_def_type_statement_token3] = ACTIONS(5699), + [aux_sym_def_type_statement_token4] = ACTIONS(5699), + [aux_sym_def_type_statement_token5] = ACTIONS(5699), + [aux_sym_def_type_statement_token6] = ACTIONS(5699), + [aux_sym_def_type_statement_token7] = ACTIONS(5699), + [aux_sym_def_type_statement_token8] = ACTIONS(5699), + [aux_sym_def_type_statement_token9] = ACTIONS(5699), + [aux_sym_def_type_statement_token10] = ACTIONS(5699), + [aux_sym_def_type_statement_token11] = ACTIONS(5699), + [aux_sym_def_type_statement_token12] = ACTIONS(5699), + [aux_sym_def_type_statement_token13] = ACTIONS(5699), + [aux_sym_def_type_statement_token14] = ACTIONS(5699), + [aux_sym_call_statement_token1] = ACTIONS(5699), + [sym__ambiguous_call_statement] = ACTIONS(5699), + [aux_sym_addressof_expression_token1] = ACTIONS(5699), + [aux_sym_type_of_expression_token1] = ACTIONS(5699), + [aux_sym_unary_expression_token1] = ACTIONS(5699), + [sym_string_literal] = ACTIONS(5701), + [sym_number_literal] = ACTIONS(5701), + [aux_sym_boolean_literal_token1] = ACTIONS(5699), + [aux_sym_boolean_literal_token2] = ACTIONS(5699), + [sym_nothing_literal] = ACTIONS(5699), + [sym_null_literal] = ACTIONS(5699), + [sym_empty_literal] = ACTIONS(5699), + [sym_date_literal] = ACTIONS(5701), + [anon_sym_POUND] = ACTIONS(5699), + }, + [STATE(4741)] = { + [sym_identifier] = ACTIONS(5752), + [sym_newline] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5752), + [aux_sym_frm_property_statement_token1] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5752), + [anon_sym_BANG] = ACTIONS(5754), + [aux_sym__attribute_identifier_token1] = ACTIONS(5752), + [aux_sym_option_statement_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5752), + [aux_sym_preprocessor_const_token1] = ACTIONS(5752), + [sym_static_modifier] = ACTIONS(5752), + [sym__dim_keyword] = ACTIONS(5752), + [sym__redim_keyword] = ACTIONS(5752), + [aux_sym_get_accessor_token1] = ACTIONS(5752), + [aux_sym_set_accessor_token1] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5754), + [aux_sym_const_declaration_token1] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [aux_sym_as_type_clause_token2] = ACTIONS(5752), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5752), + [aux_sym_visibility_token1] = ACTIONS(5752), + [aux_sym_visibility_token2] = ACTIONS(5752), + [aux_sym_elseif_fragment_token1] = ACTIONS(5752), + [aux_sym_else_fragment_token1] = ACTIONS(5752), + [aux_sym_select_statement_token1] = ACTIONS(5752), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5752), + [aux_sym__for_header_token1] = ACTIONS(5752), + [aux_sym_do_statement_token1] = ACTIONS(5752), + [aux_sym_do_condition_token1] = ACTIONS(5752), + [aux_sym_with_statement_token1] = ACTIONS(5752), + [aux_sym_exit_statement_token1] = ACTIONS(5752), + [sym_end_statement] = ACTIONS(5754), + [aux_sym_on_goto_statement_token1] = ACTIONS(5752), + [aux_sym_on_goto_statement_token2] = ACTIONS(5752), + [aux_sym_on_error_statement_token2] = ACTIONS(5752), + [sym__ambiguous_redim_statement] = ACTIONS(5754), + [aux_sym_erase_statement_token1] = ACTIONS(5752), + [aux_sym_open_statement_token1] = ACTIONS(5752), + [aux_sym_file_mode_token2] = ACTIONS(5752), + [aux_sym_file_access_token2] = ACTIONS(5752), + [aux_sym_file_lock_token2] = ACTIONS(5752), + [aux_sym_print_statement_token1] = ACTIONS(5752), + [anon_sym_PLUS] = ACTIONS(5754), + [anon_sym_DASH] = ACTIONS(5752), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10159), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10161), + [anon_sym_SEMI] = ACTIONS(5754), + [anon_sym_QMARK] = ACTIONS(5754), + [aux_sym_close_statement_token1] = ACTIONS(5752), + [aux_sym_put_statement_token1] = ACTIONS(5752), + [aux_sym_unlock_statement_token1] = ACTIONS(5752), + [aux_sym_seek_statement_token1] = ACTIONS(5752), + [sym_reset_statement] = ACTIONS(5752), + [aux_sym_raise_event_statement_token1] = ACTIONS(5752), + [sym_stop_statement] = ACTIONS(5752), + [sym_beep_statement] = ACTIONS(5752), + [aux_sym_unload_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token2] = ACTIONS(5752), + [aux_sym_def_type_statement_token3] = ACTIONS(5752), + [aux_sym_def_type_statement_token4] = ACTIONS(5752), + [aux_sym_def_type_statement_token5] = ACTIONS(5752), + [aux_sym_def_type_statement_token6] = ACTIONS(5752), + [aux_sym_def_type_statement_token7] = ACTIONS(5752), + [aux_sym_def_type_statement_token8] = ACTIONS(5752), + [aux_sym_def_type_statement_token9] = ACTIONS(5752), + [aux_sym_def_type_statement_token10] = ACTIONS(5752), + [aux_sym_def_type_statement_token11] = ACTIONS(5752), + [aux_sym_def_type_statement_token12] = ACTIONS(5752), + [aux_sym_def_type_statement_token13] = ACTIONS(5752), + [aux_sym_def_type_statement_token14] = ACTIONS(5752), + [aux_sym_call_statement_token1] = ACTIONS(5752), + [sym__ambiguous_call_statement] = ACTIONS(5752), + [aux_sym_addressof_expression_token1] = ACTIONS(5752), + [aux_sym_type_of_expression_token1] = ACTIONS(5752), + [aux_sym_unary_expression_token1] = ACTIONS(5752), + [sym_string_literal] = ACTIONS(5754), + [sym_number_literal] = ACTIONS(5754), + [aux_sym_boolean_literal_token1] = ACTIONS(5752), + [aux_sym_boolean_literal_token2] = ACTIONS(5752), + [sym_nothing_literal] = ACTIONS(5752), + [sym_null_literal] = ACTIONS(5752), + [sym_empty_literal] = ACTIONS(5752), + [sym_date_literal] = ACTIONS(5754), + [anon_sym_POUND] = ACTIONS(5752), + }, + [STATE(4742)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_while_statement_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(4743)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_while_statement_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(4744)] = { + [sym_char_position] = STATE(7507), + [aux_sym_output_list_repeat1] = STATE(4744), + [sym_identifier] = ACTIONS(7618), + [sym_newline] = ACTIONS(7620), + [anon_sym_COLON] = ACTIONS(7620), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7618), + [aux_sym_frm_property_statement_token1] = ACTIONS(7618), + [anon_sym_DOT] = ACTIONS(7618), + [anon_sym_BANG] = ACTIONS(7620), + [aux_sym__attribute_identifier_token1] = ACTIONS(7618), + [aux_sym_option_statement_token3] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7618), + [aux_sym_preprocessor_const_token1] = ACTIONS(7618), + [sym_static_modifier] = ACTIONS(7618), + [sym__dim_keyword] = ACTIONS(7618), + [sym__redim_keyword] = ACTIONS(7618), + [aux_sym_get_accessor_token1] = ACTIONS(7618), + [aux_sym_set_accessor_token1] = ACTIONS(7618), + [anon_sym_COMMA] = ACTIONS(7622), + [aux_sym_const_declaration_token1] = ACTIONS(7618), + [anon_sym_LPAREN] = ACTIONS(7620), + [aux_sym_as_type_clause_token2] = ACTIONS(7618), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7618), + [aux_sym_visibility_token1] = ACTIONS(7618), + [aux_sym_visibility_token2] = ACTIONS(7618), + [aux_sym_elseif_fragment_token1] = ACTIONS(7618), + [aux_sym_else_fragment_token1] = ACTIONS(7618), + [aux_sym_select_statement_token1] = ACTIONS(7618), + [aux_sym__for_header_token1] = ACTIONS(7618), + [aux_sym_do_statement_token1] = ACTIONS(7618), + [aux_sym_do_condition_token1] = ACTIONS(7618), + [aux_sym_while_statement_token1] = ACTIONS(7618), + [aux_sym_with_statement_token1] = ACTIONS(7618), + [aux_sym_exit_statement_token1] = ACTIONS(7618), + [sym_end_statement] = ACTIONS(7620), + [aux_sym_on_goto_statement_token1] = ACTIONS(7618), + [aux_sym_on_goto_statement_token2] = ACTIONS(7618), + [aux_sym_on_error_statement_token2] = ACTIONS(7618), + [sym__ambiguous_redim_statement] = ACTIONS(7620), + [aux_sym_erase_statement_token1] = ACTIONS(7618), + [aux_sym_open_statement_token1] = ACTIONS(7618), + [aux_sym_file_mode_token2] = ACTIONS(7618), + [aux_sym_file_access_token2] = ACTIONS(7618), + [aux_sym_file_lock_token2] = ACTIONS(7618), + [aux_sym_print_statement_token1] = ACTIONS(7618), + [anon_sym_PLUS] = ACTIONS(7620), + [anon_sym_DASH] = ACTIONS(7618), + [anon_sym_SEMI] = ACTIONS(7622), + [anon_sym_QMARK] = ACTIONS(7620), + [aux_sym_close_statement_token1] = ACTIONS(7618), + [aux_sym_put_statement_token1] = ACTIONS(7618), + [aux_sym_unlock_statement_token1] = ACTIONS(7618), + [aux_sym_seek_statement_token1] = ACTIONS(7618), + [sym_reset_statement] = ACTIONS(7618), + [aux_sym_raise_event_statement_token1] = ACTIONS(7618), + [sym_stop_statement] = ACTIONS(7618), + [sym_beep_statement] = ACTIONS(7618), + [aux_sym_unload_statement_token1] = ACTIONS(7618), + [aux_sym_def_type_statement_token1] = ACTIONS(7618), + [aux_sym_def_type_statement_token2] = ACTIONS(7618), + [aux_sym_def_type_statement_token3] = ACTIONS(7618), + [aux_sym_def_type_statement_token4] = ACTIONS(7618), + [aux_sym_def_type_statement_token5] = ACTIONS(7618), + [aux_sym_def_type_statement_token6] = ACTIONS(7618), + [aux_sym_def_type_statement_token7] = ACTIONS(7618), + [aux_sym_def_type_statement_token8] = ACTIONS(7618), + [aux_sym_def_type_statement_token9] = ACTIONS(7618), + [aux_sym_def_type_statement_token10] = ACTIONS(7618), + [aux_sym_def_type_statement_token11] = ACTIONS(7618), + [aux_sym_def_type_statement_token12] = ACTIONS(7618), + [aux_sym_def_type_statement_token13] = ACTIONS(7618), + [aux_sym_def_type_statement_token14] = ACTIONS(7618), + [aux_sym_call_statement_token1] = ACTIONS(7618), + [sym__ambiguous_call_statement] = ACTIONS(7618), + [aux_sym_addressof_expression_token1] = ACTIONS(7618), + [aux_sym_type_of_expression_token1] = ACTIONS(7618), + [aux_sym_unary_expression_token1] = ACTIONS(7618), + [sym_string_literal] = ACTIONS(7620), + [sym_number_literal] = ACTIONS(7620), + [aux_sym_boolean_literal_token1] = ACTIONS(7618), + [aux_sym_boolean_literal_token2] = ACTIONS(7618), + [sym_nothing_literal] = ACTIONS(7618), + [sym_null_literal] = ACTIONS(7618), + [sym_empty_literal] = ACTIONS(7618), + [sym_date_literal] = ACTIONS(7620), + [anon_sym_POUND] = ACTIONS(7618), + }, + [STATE(4745)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4746), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(10187), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_select_statement_token2] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(4746)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4747), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym_select_statement_token2] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(4747)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4747), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(10189), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_select_statement_token2] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(4748)] = { + [sym_char_position] = STATE(627), + [aux_sym_output_list_repeat1] = STATE(4731), + [sym_identifier] = ACTIONS(7609), + [sym_newline] = ACTIONS(7611), + [anon_sym_COLON] = ACTIONS(7611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7609), + [aux_sym_frm_property_statement_token1] = ACTIONS(7609), + [anon_sym_DOT] = ACTIONS(7609), + [anon_sym_BANG] = ACTIONS(7611), + [aux_sym__attribute_identifier_token1] = ACTIONS(7609), + [aux_sym_option_statement_token3] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7609), + [aux_sym_preprocessor_const_token1] = ACTIONS(7609), + [sym_static_modifier] = ACTIONS(7609), + [sym__dim_keyword] = ACTIONS(7609), + [sym__redim_keyword] = ACTIONS(7609), + [aux_sym_get_accessor_token1] = ACTIONS(7609), + [aux_sym_set_accessor_token1] = ACTIONS(7609), + [anon_sym_COMMA] = ACTIONS(10192), + [aux_sym_const_declaration_token1] = ACTIONS(7609), + [anon_sym_LPAREN] = ACTIONS(7611), + [aux_sym_as_type_clause_token2] = ACTIONS(7609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7609), + [aux_sym_visibility_token1] = ACTIONS(7609), + [aux_sym_visibility_token2] = ACTIONS(7609), + [aux_sym_elseif_fragment_token1] = ACTIONS(7609), + [aux_sym_else_fragment_token1] = ACTIONS(7609), + [aux_sym_select_statement_token1] = ACTIONS(7609), + [aux_sym__for_header_token1] = ACTIONS(7609), + [aux_sym_do_statement_token1] = ACTIONS(7609), + [aux_sym_do_statement_token2] = ACTIONS(7609), + [aux_sym_do_condition_token1] = ACTIONS(7609), + [aux_sym_with_statement_token1] = ACTIONS(7609), + [aux_sym_exit_statement_token1] = ACTIONS(7609), + [sym_end_statement] = ACTIONS(7611), + [aux_sym_on_goto_statement_token1] = ACTIONS(7609), + [aux_sym_on_goto_statement_token2] = ACTIONS(7609), + [aux_sym_on_error_statement_token2] = ACTIONS(7609), + [sym__ambiguous_redim_statement] = ACTIONS(7611), + [aux_sym_erase_statement_token1] = ACTIONS(7609), + [aux_sym_open_statement_token1] = ACTIONS(7609), + [aux_sym_file_mode_token2] = ACTIONS(7609), + [aux_sym_file_access_token2] = ACTIONS(7609), + [aux_sym_file_lock_token2] = ACTIONS(7609), + [aux_sym_print_statement_token1] = ACTIONS(7609), + [anon_sym_PLUS] = ACTIONS(7611), + [anon_sym_DASH] = ACTIONS(7609), + [anon_sym_SEMI] = ACTIONS(10192), + [anon_sym_QMARK] = ACTIONS(7611), + [aux_sym_close_statement_token1] = ACTIONS(7609), + [aux_sym_put_statement_token1] = ACTIONS(7609), + [aux_sym_unlock_statement_token1] = ACTIONS(7609), + [aux_sym_seek_statement_token1] = ACTIONS(7609), + [sym_reset_statement] = ACTIONS(7609), + [aux_sym_raise_event_statement_token1] = ACTIONS(7609), + [sym_stop_statement] = ACTIONS(7609), + [sym_beep_statement] = ACTIONS(7609), + [aux_sym_unload_statement_token1] = ACTIONS(7609), + [aux_sym_def_type_statement_token1] = ACTIONS(7609), + [aux_sym_def_type_statement_token2] = ACTIONS(7609), + [aux_sym_def_type_statement_token3] = ACTIONS(7609), + [aux_sym_def_type_statement_token4] = ACTIONS(7609), + [aux_sym_def_type_statement_token5] = ACTIONS(7609), + [aux_sym_def_type_statement_token6] = ACTIONS(7609), + [aux_sym_def_type_statement_token7] = ACTIONS(7609), + [aux_sym_def_type_statement_token8] = ACTIONS(7609), + [aux_sym_def_type_statement_token9] = ACTIONS(7609), + [aux_sym_def_type_statement_token10] = ACTIONS(7609), + [aux_sym_def_type_statement_token11] = ACTIONS(7609), + [aux_sym_def_type_statement_token12] = ACTIONS(7609), + [aux_sym_def_type_statement_token13] = ACTIONS(7609), + [aux_sym_def_type_statement_token14] = ACTIONS(7609), + [aux_sym_call_statement_token1] = ACTIONS(7609), + [sym__ambiguous_call_statement] = ACTIONS(7609), + [aux_sym_addressof_expression_token1] = ACTIONS(7609), + [aux_sym_type_of_expression_token1] = ACTIONS(7609), + [aux_sym_unary_expression_token1] = ACTIONS(7609), + [sym_string_literal] = ACTIONS(7611), + [sym_number_literal] = ACTIONS(7611), + [aux_sym_boolean_literal_token1] = ACTIONS(7609), + [aux_sym_boolean_literal_token2] = ACTIONS(7609), + [sym_nothing_literal] = ACTIONS(7609), + [sym_null_literal] = ACTIONS(7609), + [sym_empty_literal] = ACTIONS(7609), + [sym_date_literal] = ACTIONS(7611), + [anon_sym_POUND] = ACTIONS(7609), + }, + [STATE(4749)] = { + [sym_identifier] = ACTIONS(8070), + [sym_newline] = ACTIONS(8072), + [anon_sym_COLON] = ACTIONS(8072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8070), + [aux_sym_frm_property_statement_token1] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(8072), + [anon_sym_DOT] = ACTIONS(8070), + [anon_sym_BANG] = ACTIONS(8072), + [aux_sym__attribute_identifier_token1] = ACTIONS(8070), + [aux_sym_option_statement_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8070), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8070), + [aux_sym_preprocessor_const_token1] = ACTIONS(8070), + [sym_static_modifier] = ACTIONS(8070), + [sym__dim_keyword] = ACTIONS(8070), + [sym__redim_keyword] = ACTIONS(8070), + [aux_sym_get_accessor_token1] = ACTIONS(8070), + [aux_sym_set_accessor_token1] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [aux_sym_const_declaration_token1] = ACTIONS(8070), + [anon_sym_LPAREN] = ACTIONS(8072), + [aux_sym_as_type_clause_token2] = ACTIONS(8070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8070), + [aux_sym_visibility_token1] = ACTIONS(8070), + [aux_sym_visibility_token2] = ACTIONS(8070), + [aux_sym_elseif_fragment_token1] = ACTIONS(8070), + [aux_sym_else_fragment_token1] = ACTIONS(8070), + [aux_sym_select_statement_token1] = ACTIONS(8070), + [aux_sym__for_header_token1] = ACTIONS(8070), + [aux_sym_do_statement_token1] = ACTIONS(8070), + [aux_sym_do_condition_token1] = ACTIONS(8070), + [aux_sym_with_statement_token1] = ACTIONS(8070), + [aux_sym_exit_statement_token1] = ACTIONS(8070), + [sym_end_statement] = ACTIONS(8072), + [aux_sym_on_goto_statement_token1] = ACTIONS(8070), + [aux_sym_on_goto_statement_token2] = ACTIONS(8070), + [aux_sym_on_error_statement_token2] = ACTIONS(8070), + [sym__ambiguous_redim_statement] = ACTIONS(8072), + [aux_sym_erase_statement_token1] = ACTIONS(8070), + [aux_sym_open_statement_token1] = ACTIONS(8070), + [aux_sym_file_mode_token2] = ACTIONS(8070), + [aux_sym_file_access_token2] = ACTIONS(8070), + [aux_sym_file_lock_token2] = ACTIONS(8070), + [aux_sym_print_statement_token1] = ACTIONS(8070), + [anon_sym_PLUS] = ACTIONS(8072), + [anon_sym_DASH] = ACTIONS(8070), + [anon_sym_QMARK] = ACTIONS(8072), + [aux_sym_close_statement_token1] = ACTIONS(8070), + [aux_sym_put_statement_token1] = ACTIONS(8070), + [aux_sym_unlock_statement_token1] = ACTIONS(8070), + [aux_sym_seek_statement_token1] = ACTIONS(8070), + [sym_reset_statement] = ACTIONS(8070), + [aux_sym_raise_event_statement_token1] = ACTIONS(8070), + [sym_stop_statement] = ACTIONS(8070), + [sym_beep_statement] = ACTIONS(8070), + [aux_sym_unload_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token2] = ACTIONS(8070), + [aux_sym_def_type_statement_token3] = ACTIONS(8070), + [aux_sym_def_type_statement_token4] = ACTIONS(8070), + [aux_sym_def_type_statement_token5] = ACTIONS(8070), + [aux_sym_def_type_statement_token6] = ACTIONS(8070), + [aux_sym_def_type_statement_token7] = ACTIONS(8070), + [aux_sym_def_type_statement_token8] = ACTIONS(8070), + [aux_sym_def_type_statement_token9] = ACTIONS(8070), + [aux_sym_def_type_statement_token10] = ACTIONS(8070), + [aux_sym_def_type_statement_token11] = ACTIONS(8070), + [aux_sym_def_type_statement_token12] = ACTIONS(8070), + [aux_sym_def_type_statement_token13] = ACTIONS(8070), + [aux_sym_def_type_statement_token14] = ACTIONS(8070), + [aux_sym_call_statement_token1] = ACTIONS(8070), + [sym__ambiguous_call_statement] = ACTIONS(8070), + [aux_sym_addressof_expression_token1] = ACTIONS(8070), + [aux_sym_type_of_expression_token1] = ACTIONS(8070), + [aux_sym_unary_expression_token1] = ACTIONS(8070), + [sym_string_literal] = ACTIONS(8072), + [sym_number_literal] = ACTIONS(8072), + [aux_sym_boolean_literal_token1] = ACTIONS(8070), + [aux_sym_boolean_literal_token2] = ACTIONS(8070), + [sym_nothing_literal] = ACTIONS(8070), + [sym_null_literal] = ACTIONS(8070), + [sym_empty_literal] = ACTIONS(8070), + [sym_date_literal] = ACTIONS(8072), + [anon_sym_POUND] = ACTIONS(8070), + }, + [STATE(4750)] = { + [sym_char_position] = STATE(617), + [aux_sym_output_list_repeat1] = STATE(4730), + [sym_identifier] = ACTIONS(7609), + [sym_newline] = ACTIONS(7611), + [anon_sym_COLON] = ACTIONS(7611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7609), + [aux_sym_frm_property_statement_token1] = ACTIONS(7609), + [anon_sym_DOT] = ACTIONS(7609), + [anon_sym_BANG] = ACTIONS(7611), + [aux_sym__attribute_identifier_token1] = ACTIONS(7609), + [aux_sym_option_statement_token3] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7609), + [aux_sym_preprocessor_const_token1] = ACTIONS(7609), + [sym_static_modifier] = ACTIONS(7609), + [sym__dim_keyword] = ACTIONS(7609), + [sym__redim_keyword] = ACTIONS(7609), + [aux_sym_get_accessor_token1] = ACTIONS(7609), + [aux_sym_set_accessor_token1] = ACTIONS(7609), + [anon_sym_COMMA] = ACTIONS(10134), + [aux_sym_const_declaration_token1] = ACTIONS(7609), + [anon_sym_LPAREN] = ACTIONS(7611), + [aux_sym_as_type_clause_token2] = ACTIONS(7609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7609), + [aux_sym_visibility_token1] = ACTIONS(7609), + [aux_sym_visibility_token2] = ACTIONS(7609), + [aux_sym_elseif_fragment_token1] = ACTIONS(7609), + [aux_sym_else_fragment_token1] = ACTIONS(7609), + [aux_sym_select_statement_token1] = ACTIONS(7609), + [aux_sym__for_header_token1] = ACTIONS(7609), + [aux_sym_do_statement_token1] = ACTIONS(7609), + [aux_sym_do_condition_token1] = ACTIONS(7609), + [aux_sym_with_statement_token1] = ACTIONS(7609), + [aux_sym_exit_statement_token1] = ACTIONS(7609), + [sym_end_statement] = ACTIONS(7611), + [aux_sym_on_goto_statement_token1] = ACTIONS(7609), + [aux_sym_on_goto_statement_token2] = ACTIONS(7609), + [aux_sym_on_error_statement_token2] = ACTIONS(7609), + [sym__ambiguous_redim_statement] = ACTIONS(7611), + [aux_sym_erase_statement_token1] = ACTIONS(7609), + [aux_sym_open_statement_token1] = ACTIONS(7609), + [aux_sym_file_mode_token2] = ACTIONS(7609), + [aux_sym_file_access_token2] = ACTIONS(7609), + [aux_sym_file_lock_token2] = ACTIONS(7609), + [aux_sym_print_statement_token1] = ACTIONS(7609), + [anon_sym_PLUS] = ACTIONS(7611), + [anon_sym_DASH] = ACTIONS(7609), + [anon_sym_SEMI] = ACTIONS(10134), + [anon_sym_QMARK] = ACTIONS(7611), + [aux_sym_close_statement_token1] = ACTIONS(7609), + [aux_sym_put_statement_token1] = ACTIONS(7609), + [aux_sym_unlock_statement_token1] = ACTIONS(7609), + [aux_sym_seek_statement_token1] = ACTIONS(7609), + [sym_reset_statement] = ACTIONS(7609), + [aux_sym_raise_event_statement_token1] = ACTIONS(7609), + [sym_stop_statement] = ACTIONS(7609), + [sym_beep_statement] = ACTIONS(7609), + [aux_sym_unload_statement_token1] = ACTIONS(7609), + [aux_sym_def_type_statement_token1] = ACTIONS(7609), + [aux_sym_def_type_statement_token2] = ACTIONS(7609), + [aux_sym_def_type_statement_token3] = ACTIONS(7609), + [aux_sym_def_type_statement_token4] = ACTIONS(7609), + [aux_sym_def_type_statement_token5] = ACTIONS(7609), + [aux_sym_def_type_statement_token6] = ACTIONS(7609), + [aux_sym_def_type_statement_token7] = ACTIONS(7609), + [aux_sym_def_type_statement_token8] = ACTIONS(7609), + [aux_sym_def_type_statement_token9] = ACTIONS(7609), + [aux_sym_def_type_statement_token10] = ACTIONS(7609), + [aux_sym_def_type_statement_token11] = ACTIONS(7609), + [aux_sym_def_type_statement_token12] = ACTIONS(7609), + [aux_sym_def_type_statement_token13] = ACTIONS(7609), + [aux_sym_def_type_statement_token14] = ACTIONS(7609), + [aux_sym_call_statement_token1] = ACTIONS(7609), + [sym__ambiguous_call_statement] = ACTIONS(7609), + [aux_sym_addressof_expression_token1] = ACTIONS(7609), + [aux_sym_type_of_expression_token1] = ACTIONS(7609), + [aux_sym_unary_expression_token1] = ACTIONS(7609), + [sym_string_literal] = ACTIONS(7611), + [sym_number_literal] = ACTIONS(7611), + [aux_sym_boolean_literal_token1] = ACTIONS(7609), + [aux_sym_boolean_literal_token2] = ACTIONS(7609), + [sym_nothing_literal] = ACTIONS(7609), + [sym_null_literal] = ACTIONS(7609), + [sym_empty_literal] = ACTIONS(7609), + [sym_date_literal] = ACTIONS(7611), + [anon_sym_POUND] = ACTIONS(7609), + }, + [STATE(4751)] = { + [sym_char_position] = STATE(574), + [aux_sym_output_list_repeat1] = STATE(4730), + [sym_identifier] = ACTIONS(7460), + [sym_newline] = ACTIONS(7462), + [anon_sym_COLON] = ACTIONS(7462), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7460), + [aux_sym_frm_property_statement_token1] = ACTIONS(7460), + [anon_sym_DOT] = ACTIONS(7460), + [anon_sym_BANG] = ACTIONS(7462), + [aux_sym__attribute_identifier_token1] = ACTIONS(7460), + [aux_sym_option_statement_token3] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7460), + [aux_sym_preprocessor_const_token1] = ACTIONS(7460), + [sym_static_modifier] = ACTIONS(7460), + [sym__dim_keyword] = ACTIONS(7460), + [sym__redim_keyword] = ACTIONS(7460), + [aux_sym_get_accessor_token1] = ACTIONS(7460), + [aux_sym_set_accessor_token1] = ACTIONS(7460), + [anon_sym_COMMA] = ACTIONS(10134), + [aux_sym_const_declaration_token1] = ACTIONS(7460), + [anon_sym_LPAREN] = ACTIONS(7462), + [aux_sym_as_type_clause_token2] = ACTIONS(7460), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7460), + [aux_sym_visibility_token1] = ACTIONS(7460), + [aux_sym_visibility_token2] = ACTIONS(7460), + [aux_sym_elseif_fragment_token1] = ACTIONS(7460), + [aux_sym_else_fragment_token1] = ACTIONS(7460), + [aux_sym_select_statement_token1] = ACTIONS(7460), + [aux_sym__for_header_token1] = ACTIONS(7460), + [aux_sym_do_statement_token1] = ACTIONS(7460), + [aux_sym_do_condition_token1] = ACTIONS(7460), + [aux_sym_with_statement_token1] = ACTIONS(7460), + [aux_sym_exit_statement_token1] = ACTIONS(7460), + [sym_end_statement] = ACTIONS(7462), + [aux_sym_on_goto_statement_token1] = ACTIONS(7460), + [aux_sym_on_goto_statement_token2] = ACTIONS(7460), + [aux_sym_on_error_statement_token2] = ACTIONS(7460), + [sym__ambiguous_redim_statement] = ACTIONS(7462), + [aux_sym_erase_statement_token1] = ACTIONS(7460), + [aux_sym_open_statement_token1] = ACTIONS(7460), + [aux_sym_file_mode_token2] = ACTIONS(7460), + [aux_sym_file_access_token2] = ACTIONS(7460), + [aux_sym_file_lock_token2] = ACTIONS(7460), + [aux_sym_print_statement_token1] = ACTIONS(7460), + [anon_sym_PLUS] = ACTIONS(7462), + [anon_sym_DASH] = ACTIONS(7460), + [anon_sym_SEMI] = ACTIONS(10134), + [anon_sym_QMARK] = ACTIONS(7462), + [aux_sym_close_statement_token1] = ACTIONS(7460), + [aux_sym_put_statement_token1] = ACTIONS(7460), + [aux_sym_unlock_statement_token1] = ACTIONS(7460), + [aux_sym_seek_statement_token1] = ACTIONS(7460), + [sym_reset_statement] = ACTIONS(7460), + [aux_sym_raise_event_statement_token1] = ACTIONS(7460), + [sym_stop_statement] = ACTIONS(7460), + [sym_beep_statement] = ACTIONS(7460), + [aux_sym_unload_statement_token1] = ACTIONS(7460), + [aux_sym_def_type_statement_token1] = ACTIONS(7460), + [aux_sym_def_type_statement_token2] = ACTIONS(7460), + [aux_sym_def_type_statement_token3] = ACTIONS(7460), + [aux_sym_def_type_statement_token4] = ACTIONS(7460), + [aux_sym_def_type_statement_token5] = ACTIONS(7460), + [aux_sym_def_type_statement_token6] = ACTIONS(7460), + [aux_sym_def_type_statement_token7] = ACTIONS(7460), + [aux_sym_def_type_statement_token8] = ACTIONS(7460), + [aux_sym_def_type_statement_token9] = ACTIONS(7460), + [aux_sym_def_type_statement_token10] = ACTIONS(7460), + [aux_sym_def_type_statement_token11] = ACTIONS(7460), + [aux_sym_def_type_statement_token12] = ACTIONS(7460), + [aux_sym_def_type_statement_token13] = ACTIONS(7460), + [aux_sym_def_type_statement_token14] = ACTIONS(7460), + [aux_sym_call_statement_token1] = ACTIONS(7460), + [sym__ambiguous_call_statement] = ACTIONS(7460), + [aux_sym_addressof_expression_token1] = ACTIONS(7460), + [aux_sym_type_of_expression_token1] = ACTIONS(7460), + [aux_sym_unary_expression_token1] = ACTIONS(7460), + [sym_string_literal] = ACTIONS(7462), + [sym_number_literal] = ACTIONS(7462), + [aux_sym_boolean_literal_token1] = ACTIONS(7460), + [aux_sym_boolean_literal_token2] = ACTIONS(7460), + [sym_nothing_literal] = ACTIONS(7460), + [sym_null_literal] = ACTIONS(7460), + [sym_empty_literal] = ACTIONS(7460), + [sym_date_literal] = ACTIONS(7462), + [anon_sym_POUND] = ACTIONS(7460), + }, + [STATE(4752)] = { + [sym_identifier] = ACTIONS(5699), + [sym_newline] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5701), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5699), + [aux_sym_frm_property_statement_token1] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5699), + [anon_sym_BANG] = ACTIONS(5701), + [aux_sym__attribute_identifier_token1] = ACTIONS(5699), + [aux_sym_option_statement_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5699), + [aux_sym_preprocessor_const_token1] = ACTIONS(5699), + [sym_static_modifier] = ACTIONS(5699), + [sym__dim_keyword] = ACTIONS(5699), + [sym__redim_keyword] = ACTIONS(5699), + [aux_sym_get_accessor_token1] = ACTIONS(5699), + [aux_sym_set_accessor_token1] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5701), + [aux_sym_const_declaration_token1] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(5701), + [aux_sym_as_type_clause_token2] = ACTIONS(5699), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5699), + [aux_sym_visibility_token1] = ACTIONS(5699), + [aux_sym_visibility_token2] = ACTIONS(5699), + [aux_sym_elseif_fragment_token1] = ACTIONS(5699), + [aux_sym_else_fragment_token1] = ACTIONS(5699), + [aux_sym_select_statement_token1] = ACTIONS(5699), + [aux_sym__for_header_token1] = ACTIONS(5699), + [aux_sym_do_statement_token1] = ACTIONS(5699), + [aux_sym_do_condition_token1] = ACTIONS(5699), + [aux_sym_with_statement_token1] = ACTIONS(5699), + [aux_sym_exit_statement_token1] = ACTIONS(5699), + [sym_end_statement] = ACTIONS(5701), + [aux_sym_on_goto_statement_token1] = ACTIONS(5699), + [aux_sym_on_goto_statement_token2] = ACTIONS(5699), + [aux_sym_on_error_statement_token2] = ACTIONS(5699), + [sym__ambiguous_redim_statement] = ACTIONS(5701), + [aux_sym_erase_statement_token1] = ACTIONS(5699), + [aux_sym_open_statement_token1] = ACTIONS(5699), + [aux_sym_file_mode_token2] = ACTIONS(5699), + [aux_sym_file_access_token2] = ACTIONS(5699), + [aux_sym_file_lock_token2] = ACTIONS(5699), + [aux_sym_print_statement_token1] = ACTIONS(5699), + [anon_sym_PLUS] = ACTIONS(5701), + [anon_sym_DASH] = ACTIONS(5699), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10136), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10138), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5701), + [aux_sym_close_statement_token1] = ACTIONS(5699), + [aux_sym_put_statement_token1] = ACTIONS(5699), + [aux_sym_unlock_statement_token1] = ACTIONS(5699), + [aux_sym_seek_statement_token1] = ACTIONS(5699), + [sym_reset_statement] = ACTIONS(5699), + [aux_sym_raise_event_statement_token1] = ACTIONS(5699), + [sym_stop_statement] = ACTIONS(5699), + [sym_beep_statement] = ACTIONS(5699), + [aux_sym_unload_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token2] = ACTIONS(5699), + [aux_sym_def_type_statement_token3] = ACTIONS(5699), + [aux_sym_def_type_statement_token4] = ACTIONS(5699), + [aux_sym_def_type_statement_token5] = ACTIONS(5699), + [aux_sym_def_type_statement_token6] = ACTIONS(5699), + [aux_sym_def_type_statement_token7] = ACTIONS(5699), + [aux_sym_def_type_statement_token8] = ACTIONS(5699), + [aux_sym_def_type_statement_token9] = ACTIONS(5699), + [aux_sym_def_type_statement_token10] = ACTIONS(5699), + [aux_sym_def_type_statement_token11] = ACTIONS(5699), + [aux_sym_def_type_statement_token12] = ACTIONS(5699), + [aux_sym_def_type_statement_token13] = ACTIONS(5699), + [aux_sym_def_type_statement_token14] = ACTIONS(5699), + [aux_sym_call_statement_token1] = ACTIONS(5699), + [sym__ambiguous_call_statement] = ACTIONS(5699), + [aux_sym_addressof_expression_token1] = ACTIONS(5699), + [aux_sym_type_of_expression_token1] = ACTIONS(5699), + [aux_sym_unary_expression_token1] = ACTIONS(5699), + [sym_string_literal] = ACTIONS(5701), + [sym_number_literal] = ACTIONS(5701), + [aux_sym_boolean_literal_token1] = ACTIONS(5699), + [aux_sym_boolean_literal_token2] = ACTIONS(5699), + [sym_nothing_literal] = ACTIONS(5699), + [sym_null_literal] = ACTIONS(5699), + [sym_empty_literal] = ACTIONS(5699), + [sym_date_literal] = ACTIONS(5701), + [anon_sym_POUND] = ACTIONS(5699), + }, + [STATE(4753)] = { + [sym_identifier] = ACTIONS(5752), + [sym_newline] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5752), + [aux_sym_frm_property_statement_token1] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5752), + [anon_sym_BANG] = ACTIONS(5754), + [aux_sym__attribute_identifier_token1] = ACTIONS(5752), + [aux_sym_option_statement_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5752), + [aux_sym_preprocessor_const_token1] = ACTIONS(5752), + [sym_static_modifier] = ACTIONS(5752), + [sym__dim_keyword] = ACTIONS(5752), + [sym__redim_keyword] = ACTIONS(5752), + [aux_sym_get_accessor_token1] = ACTIONS(5752), + [aux_sym_set_accessor_token1] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5754), + [aux_sym_const_declaration_token1] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [aux_sym_as_type_clause_token2] = ACTIONS(5752), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5752), + [aux_sym_visibility_token1] = ACTIONS(5752), + [aux_sym_visibility_token2] = ACTIONS(5752), + [aux_sym_elseif_fragment_token1] = ACTIONS(5752), + [aux_sym_else_fragment_token1] = ACTIONS(5752), + [aux_sym_select_statement_token1] = ACTIONS(5752), + [aux_sym__for_header_token1] = ACTIONS(5752), + [aux_sym_do_statement_token1] = ACTIONS(5752), + [aux_sym_do_condition_token1] = ACTIONS(5752), + [aux_sym_with_statement_token1] = ACTIONS(5752), + [aux_sym_exit_statement_token1] = ACTIONS(5752), + [sym_end_statement] = ACTIONS(5754), + [aux_sym_on_goto_statement_token1] = ACTIONS(5752), + [aux_sym_on_goto_statement_token2] = ACTIONS(5752), + [aux_sym_on_error_statement_token2] = ACTIONS(5752), + [sym__ambiguous_redim_statement] = ACTIONS(5754), + [aux_sym_erase_statement_token1] = ACTIONS(5752), + [aux_sym_open_statement_token1] = ACTIONS(5752), + [aux_sym_file_mode_token2] = ACTIONS(5752), + [aux_sym_file_access_token2] = ACTIONS(5752), + [aux_sym_file_lock_token2] = ACTIONS(5752), + [aux_sym_print_statement_token1] = ACTIONS(5752), + [anon_sym_PLUS] = ACTIONS(5754), + [anon_sym_DASH] = ACTIONS(5752), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10136), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10138), + [anon_sym_SEMI] = ACTIONS(5754), + [anon_sym_QMARK] = ACTIONS(5754), + [aux_sym_close_statement_token1] = ACTIONS(5752), + [aux_sym_put_statement_token1] = ACTIONS(5752), + [aux_sym_unlock_statement_token1] = ACTIONS(5752), + [aux_sym_seek_statement_token1] = ACTIONS(5752), + [sym_reset_statement] = ACTIONS(5752), + [aux_sym_raise_event_statement_token1] = ACTIONS(5752), + [sym_stop_statement] = ACTIONS(5752), + [sym_beep_statement] = ACTIONS(5752), + [aux_sym_unload_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token2] = ACTIONS(5752), + [aux_sym_def_type_statement_token3] = ACTIONS(5752), + [aux_sym_def_type_statement_token4] = ACTIONS(5752), + [aux_sym_def_type_statement_token5] = ACTIONS(5752), + [aux_sym_def_type_statement_token6] = ACTIONS(5752), + [aux_sym_def_type_statement_token7] = ACTIONS(5752), + [aux_sym_def_type_statement_token8] = ACTIONS(5752), + [aux_sym_def_type_statement_token9] = ACTIONS(5752), + [aux_sym_def_type_statement_token10] = ACTIONS(5752), + [aux_sym_def_type_statement_token11] = ACTIONS(5752), + [aux_sym_def_type_statement_token12] = ACTIONS(5752), + [aux_sym_def_type_statement_token13] = ACTIONS(5752), + [aux_sym_def_type_statement_token14] = ACTIONS(5752), + [aux_sym_call_statement_token1] = ACTIONS(5752), + [sym__ambiguous_call_statement] = ACTIONS(5752), + [aux_sym_addressof_expression_token1] = ACTIONS(5752), + [aux_sym_type_of_expression_token1] = ACTIONS(5752), + [aux_sym_unary_expression_token1] = ACTIONS(5752), + [sym_string_literal] = ACTIONS(5754), + [sym_number_literal] = ACTIONS(5754), + [aux_sym_boolean_literal_token1] = ACTIONS(5752), + [aux_sym_boolean_literal_token2] = ACTIONS(5752), + [sym_nothing_literal] = ACTIONS(5752), + [sym_null_literal] = ACTIONS(5752), + [sym_empty_literal] = ACTIONS(5752), + [sym_date_literal] = ACTIONS(5754), + [anon_sym_POUND] = ACTIONS(5752), + }, + [STATE(4754)] = { + [sym_identifier] = ACTIONS(8081), + [sym_newline] = ACTIONS(8083), + [anon_sym_COLON] = ACTIONS(8083), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8081), + [aux_sym_frm_property_statement_token1] = ACTIONS(8081), + [anon_sym_EQ] = ACTIONS(8083), + [anon_sym_DOT] = ACTIONS(8081), + [anon_sym_BANG] = ACTIONS(8083), + [aux_sym__attribute_identifier_token1] = ACTIONS(8081), + [aux_sym_option_statement_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8081), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8081), + [aux_sym_preprocessor_const_token1] = ACTIONS(8081), + [sym_static_modifier] = ACTIONS(8081), + [sym__dim_keyword] = ACTIONS(8081), + [sym__redim_keyword] = ACTIONS(8081), + [aux_sym_get_accessor_token1] = ACTIONS(8081), + [aux_sym_set_accessor_token1] = ACTIONS(8081), + [anon_sym_COMMA] = ACTIONS(8083), + [aux_sym_const_declaration_token1] = ACTIONS(8081), + [anon_sym_LPAREN] = ACTIONS(8083), + [aux_sym_as_type_clause_token2] = ACTIONS(8081), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8081), + [aux_sym_visibility_token1] = ACTIONS(8081), + [aux_sym_visibility_token2] = ACTIONS(8081), + [aux_sym_elseif_fragment_token1] = ACTIONS(8081), + [aux_sym_else_fragment_token1] = ACTIONS(8081), + [aux_sym_select_statement_token1] = ACTIONS(8081), + [aux_sym__for_header_token1] = ACTIONS(8081), + [aux_sym_do_statement_token1] = ACTIONS(8081), + [aux_sym_do_condition_token1] = ACTIONS(8081), + [aux_sym_with_statement_token1] = ACTIONS(8081), + [aux_sym_exit_statement_token1] = ACTIONS(8081), + [sym_end_statement] = ACTIONS(8083), + [aux_sym_on_goto_statement_token1] = ACTIONS(8081), + [aux_sym_on_goto_statement_token2] = ACTIONS(8081), + [aux_sym_on_error_statement_token2] = ACTIONS(8081), + [sym__ambiguous_redim_statement] = ACTIONS(8083), + [aux_sym_erase_statement_token1] = ACTIONS(8081), + [aux_sym_open_statement_token1] = ACTIONS(8081), + [aux_sym_file_mode_token2] = ACTIONS(8081), + [aux_sym_file_access_token2] = ACTIONS(8081), + [aux_sym_file_lock_token2] = ACTIONS(8081), + [aux_sym_print_statement_token1] = ACTIONS(8081), + [anon_sym_PLUS] = ACTIONS(8083), + [anon_sym_DASH] = ACTIONS(8081), + [anon_sym_QMARK] = ACTIONS(8083), + [aux_sym_close_statement_token1] = ACTIONS(8081), + [aux_sym_put_statement_token1] = ACTIONS(8081), + [aux_sym_unlock_statement_token1] = ACTIONS(8081), + [aux_sym_seek_statement_token1] = ACTIONS(8081), + [sym_reset_statement] = ACTIONS(8081), + [aux_sym_raise_event_statement_token1] = ACTIONS(8081), + [sym_stop_statement] = ACTIONS(8081), + [sym_beep_statement] = ACTIONS(8081), + [aux_sym_unload_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token2] = ACTIONS(8081), + [aux_sym_def_type_statement_token3] = ACTIONS(8081), + [aux_sym_def_type_statement_token4] = ACTIONS(8081), + [aux_sym_def_type_statement_token5] = ACTIONS(8081), + [aux_sym_def_type_statement_token6] = ACTIONS(8081), + [aux_sym_def_type_statement_token7] = ACTIONS(8081), + [aux_sym_def_type_statement_token8] = ACTIONS(8081), + [aux_sym_def_type_statement_token9] = ACTIONS(8081), + [aux_sym_def_type_statement_token10] = ACTIONS(8081), + [aux_sym_def_type_statement_token11] = ACTIONS(8081), + [aux_sym_def_type_statement_token12] = ACTIONS(8081), + [aux_sym_def_type_statement_token13] = ACTIONS(8081), + [aux_sym_def_type_statement_token14] = ACTIONS(8081), + [aux_sym_call_statement_token1] = ACTIONS(8081), + [sym__ambiguous_call_statement] = ACTIONS(8081), + [aux_sym_addressof_expression_token1] = ACTIONS(8081), + [aux_sym_type_of_expression_token1] = ACTIONS(8081), + [aux_sym_unary_expression_token1] = ACTIONS(8081), + [sym_string_literal] = ACTIONS(8083), + [sym_number_literal] = ACTIONS(8083), + [aux_sym_boolean_literal_token1] = ACTIONS(8081), + [aux_sym_boolean_literal_token2] = ACTIONS(8081), + [sym_nothing_literal] = ACTIONS(8081), + [sym_null_literal] = ACTIONS(8081), + [sym_empty_literal] = ACTIONS(8081), + [sym_date_literal] = ACTIONS(8083), + [anon_sym_POUND] = ACTIONS(8081), + }, + [STATE(4755)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4757), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(10194), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(4756)] = { + [sym_identifier] = ACTIONS(8525), + [sym_newline] = ACTIONS(8527), + [anon_sym_COLON] = ACTIONS(8527), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8525), + [aux_sym_frm_property_statement_token1] = ACTIONS(8525), + [anon_sym_EQ] = ACTIONS(8527), + [anon_sym_DOT] = ACTIONS(8525), + [anon_sym_BANG] = ACTIONS(8527), + [aux_sym__attribute_identifier_token1] = ACTIONS(8525), + [aux_sym_option_statement_token3] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8525), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8525), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8525), + [aux_sym_preprocessor_const_token1] = ACTIONS(8525), + [sym_static_modifier] = ACTIONS(8525), + [sym__dim_keyword] = ACTIONS(8525), + [sym__redim_keyword] = ACTIONS(8525), + [aux_sym_get_accessor_token1] = ACTIONS(8525), + [aux_sym_set_accessor_token1] = ACTIONS(8525), + [anon_sym_COMMA] = ACTIONS(8527), + [aux_sym_const_declaration_token1] = ACTIONS(8525), + [anon_sym_LPAREN] = ACTIONS(8527), + [aux_sym_as_type_clause_token2] = ACTIONS(8525), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8525), + [aux_sym_visibility_token1] = ACTIONS(8525), + [aux_sym_visibility_token2] = ACTIONS(8525), + [aux_sym_elseif_fragment_token1] = ACTIONS(8525), + [aux_sym_else_fragment_token1] = ACTIONS(8525), + [aux_sym_select_statement_token1] = ACTIONS(8525), + [aux_sym__for_header_token1] = ACTIONS(8525), + [aux_sym_do_statement_token1] = ACTIONS(8525), + [aux_sym_do_condition_token1] = ACTIONS(8525), + [aux_sym_with_statement_token1] = ACTIONS(8525), + [aux_sym_exit_statement_token1] = ACTIONS(8525), + [sym_end_statement] = ACTIONS(8527), + [aux_sym_on_goto_statement_token1] = ACTIONS(8525), + [aux_sym_on_goto_statement_token2] = ACTIONS(8525), + [aux_sym_on_error_statement_token2] = ACTIONS(8525), + [sym__ambiguous_redim_statement] = ACTIONS(8527), + [aux_sym_erase_statement_token1] = ACTIONS(8525), + [aux_sym_open_statement_token1] = ACTIONS(8525), + [aux_sym_file_mode_token2] = ACTIONS(8525), + [aux_sym_file_access_token2] = ACTIONS(8525), + [aux_sym_file_lock_token2] = ACTIONS(8525), + [aux_sym_print_statement_token1] = ACTIONS(8525), + [anon_sym_PLUS] = ACTIONS(8527), + [anon_sym_DASH] = ACTIONS(8525), + [anon_sym_QMARK] = ACTIONS(8527), + [aux_sym_close_statement_token1] = ACTIONS(8525), + [aux_sym_put_statement_token1] = ACTIONS(8525), + [aux_sym_unlock_statement_token1] = ACTIONS(8525), + [aux_sym_seek_statement_token1] = ACTIONS(8525), + [sym_reset_statement] = ACTIONS(8525), + [aux_sym_raise_event_statement_token1] = ACTIONS(8525), + [sym_stop_statement] = ACTIONS(8525), + [sym_beep_statement] = ACTIONS(8525), + [aux_sym_unload_statement_token1] = ACTIONS(8525), + [aux_sym_def_type_statement_token1] = ACTIONS(8525), + [aux_sym_def_type_statement_token2] = ACTIONS(8525), + [aux_sym_def_type_statement_token3] = ACTIONS(8525), + [aux_sym_def_type_statement_token4] = ACTIONS(8525), + [aux_sym_def_type_statement_token5] = ACTIONS(8525), + [aux_sym_def_type_statement_token6] = ACTIONS(8525), + [aux_sym_def_type_statement_token7] = ACTIONS(8525), + [aux_sym_def_type_statement_token8] = ACTIONS(8525), + [aux_sym_def_type_statement_token9] = ACTIONS(8525), + [aux_sym_def_type_statement_token10] = ACTIONS(8525), + [aux_sym_def_type_statement_token11] = ACTIONS(8525), + [aux_sym_def_type_statement_token12] = ACTIONS(8525), + [aux_sym_def_type_statement_token13] = ACTIONS(8525), + [aux_sym_def_type_statement_token14] = ACTIONS(8525), + [aux_sym_call_statement_token1] = ACTIONS(8525), + [sym__ambiguous_call_statement] = ACTIONS(8525), + [aux_sym_addressof_expression_token1] = ACTIONS(8525), + [aux_sym_type_of_expression_token1] = ACTIONS(8525), + [aux_sym_unary_expression_token1] = ACTIONS(8525), + [sym_string_literal] = ACTIONS(8527), + [sym_number_literal] = ACTIONS(8527), + [aux_sym_boolean_literal_token1] = ACTIONS(8525), + [aux_sym_boolean_literal_token2] = ACTIONS(8525), + [sym_nothing_literal] = ACTIONS(8525), + [sym_null_literal] = ACTIONS(8525), + [sym_empty_literal] = ACTIONS(8525), + [sym_date_literal] = ACTIONS(8527), + [anon_sym_POUND] = ACTIONS(8525), + }, + [STATE(4757)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(4758)] = { + [sym_identifier] = ACTIONS(8620), + [sym_newline] = ACTIONS(8622), + [anon_sym_COLON] = ACTIONS(8622), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8620), + [aux_sym_frm_property_statement_token1] = ACTIONS(8620), + [anon_sym_EQ] = ACTIONS(8622), + [anon_sym_DOT] = ACTIONS(8620), + [anon_sym_BANG] = ACTIONS(8622), + [aux_sym__attribute_identifier_token1] = ACTIONS(8620), + [aux_sym_option_statement_token3] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8620), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8620), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8620), + [aux_sym_preprocessor_const_token1] = ACTIONS(8620), + [sym_static_modifier] = ACTIONS(8620), + [sym__dim_keyword] = ACTIONS(8620), + [sym__redim_keyword] = ACTIONS(8620), + [aux_sym_get_accessor_token1] = ACTIONS(8620), + [aux_sym_set_accessor_token1] = ACTIONS(8620), + [anon_sym_COMMA] = ACTIONS(8622), + [aux_sym_const_declaration_token1] = ACTIONS(8620), + [anon_sym_LPAREN] = ACTIONS(8622), + [aux_sym_as_type_clause_token2] = ACTIONS(8620), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8620), + [aux_sym_visibility_token1] = ACTIONS(8620), + [aux_sym_visibility_token2] = ACTIONS(8620), + [aux_sym_elseif_fragment_token1] = ACTIONS(8620), + [aux_sym_else_fragment_token1] = ACTIONS(8620), + [aux_sym_select_statement_token1] = ACTIONS(8620), + [aux_sym__for_header_token1] = ACTIONS(8620), + [aux_sym_do_statement_token1] = ACTIONS(8620), + [aux_sym_do_condition_token1] = ACTIONS(8620), + [aux_sym_with_statement_token1] = ACTIONS(8620), + [aux_sym_exit_statement_token1] = ACTIONS(8620), + [sym_end_statement] = ACTIONS(8622), + [aux_sym_on_goto_statement_token1] = ACTIONS(8620), + [aux_sym_on_goto_statement_token2] = ACTIONS(8620), + [aux_sym_on_error_statement_token2] = ACTIONS(8620), + [sym__ambiguous_redim_statement] = ACTIONS(8622), + [aux_sym_erase_statement_token1] = ACTIONS(8620), + [aux_sym_open_statement_token1] = ACTIONS(8620), + [aux_sym_file_mode_token2] = ACTIONS(8620), + [aux_sym_file_access_token2] = ACTIONS(8620), + [aux_sym_file_lock_token2] = ACTIONS(8620), + [aux_sym_print_statement_token1] = ACTIONS(8620), + [anon_sym_PLUS] = ACTIONS(8622), + [anon_sym_DASH] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(8622), + [aux_sym_close_statement_token1] = ACTIONS(8620), + [aux_sym_put_statement_token1] = ACTIONS(8620), + [aux_sym_unlock_statement_token1] = ACTIONS(8620), + [aux_sym_seek_statement_token1] = ACTIONS(8620), + [sym_reset_statement] = ACTIONS(8620), + [aux_sym_raise_event_statement_token1] = ACTIONS(8620), + [sym_stop_statement] = ACTIONS(8620), + [sym_beep_statement] = ACTIONS(8620), + [aux_sym_unload_statement_token1] = ACTIONS(8620), + [aux_sym_def_type_statement_token1] = ACTIONS(8620), + [aux_sym_def_type_statement_token2] = ACTIONS(8620), + [aux_sym_def_type_statement_token3] = ACTIONS(8620), + [aux_sym_def_type_statement_token4] = ACTIONS(8620), + [aux_sym_def_type_statement_token5] = ACTIONS(8620), + [aux_sym_def_type_statement_token6] = ACTIONS(8620), + [aux_sym_def_type_statement_token7] = ACTIONS(8620), + [aux_sym_def_type_statement_token8] = ACTIONS(8620), + [aux_sym_def_type_statement_token9] = ACTIONS(8620), + [aux_sym_def_type_statement_token10] = ACTIONS(8620), + [aux_sym_def_type_statement_token11] = ACTIONS(8620), + [aux_sym_def_type_statement_token12] = ACTIONS(8620), + [aux_sym_def_type_statement_token13] = ACTIONS(8620), + [aux_sym_def_type_statement_token14] = ACTIONS(8620), + [aux_sym_call_statement_token1] = ACTIONS(8620), + [sym__ambiguous_call_statement] = ACTIONS(8620), + [aux_sym_addressof_expression_token1] = ACTIONS(8620), + [aux_sym_type_of_expression_token1] = ACTIONS(8620), + [aux_sym_unary_expression_token1] = ACTIONS(8620), + [sym_string_literal] = ACTIONS(8622), + [sym_number_literal] = ACTIONS(8622), + [aux_sym_boolean_literal_token1] = ACTIONS(8620), + [aux_sym_boolean_literal_token2] = ACTIONS(8620), + [sym_nothing_literal] = ACTIONS(8620), + [sym_null_literal] = ACTIONS(8620), + [sym_empty_literal] = ACTIONS(8620), + [sym_date_literal] = ACTIONS(8622), + [anon_sym_POUND] = ACTIONS(8620), + }, + [STATE(4759)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(10196), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(4760)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4761), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(10199), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(4761)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4762), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(4762)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4762), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(10201), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(4763)] = { + [sym_identifier] = ACTIONS(5699), + [sym_newline] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5701), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5699), + [aux_sym_frm_property_statement_token1] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5699), + [anon_sym_BANG] = ACTIONS(5701), + [aux_sym__attribute_identifier_token1] = ACTIONS(5699), + [aux_sym_option_statement_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5699), + [aux_sym_preprocessor_const_token1] = ACTIONS(5699), + [sym_static_modifier] = ACTIONS(5699), + [sym__dim_keyword] = ACTIONS(5699), + [sym__redim_keyword] = ACTIONS(5699), + [aux_sym_get_accessor_token1] = ACTIONS(5699), + [aux_sym_set_accessor_token1] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5701), + [aux_sym_const_declaration_token1] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(5701), + [aux_sym_as_type_clause_token2] = ACTIONS(5699), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5699), + [aux_sym_visibility_token1] = ACTIONS(5699), + [aux_sym_visibility_token2] = ACTIONS(5699), + [aux_sym_elseif_fragment_token1] = ACTIONS(5699), + [aux_sym_else_fragment_token1] = ACTIONS(5699), + [aux_sym_select_statement_token1] = ACTIONS(5699), + [aux_sym__for_header_token1] = ACTIONS(5699), + [aux_sym_do_statement_token1] = ACTIONS(5699), + [aux_sym_do_condition_token1] = ACTIONS(5699), + [aux_sym_while_statement_token1] = ACTIONS(5699), + [aux_sym_with_statement_token1] = ACTIONS(5699), + [aux_sym_exit_statement_token1] = ACTIONS(5699), + [sym_end_statement] = ACTIONS(5701), + [aux_sym_on_goto_statement_token1] = ACTIONS(5699), + [aux_sym_on_goto_statement_token2] = ACTIONS(5699), + [aux_sym_on_error_statement_token2] = ACTIONS(5699), + [sym__ambiguous_redim_statement] = ACTIONS(5701), + [aux_sym_erase_statement_token1] = ACTIONS(5699), + [aux_sym_open_statement_token1] = ACTIONS(5699), + [aux_sym_file_mode_token2] = ACTIONS(5699), + [aux_sym_file_access_token2] = ACTIONS(5699), + [aux_sym_file_lock_token2] = ACTIONS(5699), + [aux_sym_print_statement_token1] = ACTIONS(5699), + [anon_sym_PLUS] = ACTIONS(5701), + [anon_sym_DASH] = ACTIONS(5699), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10177), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10179), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5701), + [aux_sym_close_statement_token1] = ACTIONS(5699), + [aux_sym_put_statement_token1] = ACTIONS(5699), + [aux_sym_unlock_statement_token1] = ACTIONS(5699), + [aux_sym_seek_statement_token1] = ACTIONS(5699), + [sym_reset_statement] = ACTIONS(5699), + [aux_sym_raise_event_statement_token1] = ACTIONS(5699), + [sym_stop_statement] = ACTIONS(5699), + [sym_beep_statement] = ACTIONS(5699), + [aux_sym_unload_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token2] = ACTIONS(5699), + [aux_sym_def_type_statement_token3] = ACTIONS(5699), + [aux_sym_def_type_statement_token4] = ACTIONS(5699), + [aux_sym_def_type_statement_token5] = ACTIONS(5699), + [aux_sym_def_type_statement_token6] = ACTIONS(5699), + [aux_sym_def_type_statement_token7] = ACTIONS(5699), + [aux_sym_def_type_statement_token8] = ACTIONS(5699), + [aux_sym_def_type_statement_token9] = ACTIONS(5699), + [aux_sym_def_type_statement_token10] = ACTIONS(5699), + [aux_sym_def_type_statement_token11] = ACTIONS(5699), + [aux_sym_def_type_statement_token12] = ACTIONS(5699), + [aux_sym_def_type_statement_token13] = ACTIONS(5699), + [aux_sym_def_type_statement_token14] = ACTIONS(5699), + [aux_sym_call_statement_token1] = ACTIONS(5699), + [sym__ambiguous_call_statement] = ACTIONS(5699), + [aux_sym_addressof_expression_token1] = ACTIONS(5699), + [aux_sym_type_of_expression_token1] = ACTIONS(5699), + [aux_sym_unary_expression_token1] = ACTIONS(5699), + [sym_string_literal] = ACTIONS(5701), + [sym_number_literal] = ACTIONS(5701), + [aux_sym_boolean_literal_token1] = ACTIONS(5699), + [aux_sym_boolean_literal_token2] = ACTIONS(5699), + [sym_nothing_literal] = ACTIONS(5699), + [sym_null_literal] = ACTIONS(5699), + [sym_empty_literal] = ACTIONS(5699), + [sym_date_literal] = ACTIONS(5701), + [anon_sym_POUND] = ACTIONS(5699), + }, + [STATE(4764)] = { + [sym_identifier] = ACTIONS(5752), + [sym_newline] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5752), + [aux_sym_frm_property_statement_token1] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5752), + [anon_sym_BANG] = ACTIONS(5754), + [aux_sym__attribute_identifier_token1] = ACTIONS(5752), + [aux_sym_option_statement_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5752), + [aux_sym_preprocessor_const_token1] = ACTIONS(5752), + [sym_static_modifier] = ACTIONS(5752), + [sym__dim_keyword] = ACTIONS(5752), + [sym__redim_keyword] = ACTIONS(5752), + [aux_sym_get_accessor_token1] = ACTIONS(5752), + [aux_sym_set_accessor_token1] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5754), + [aux_sym_const_declaration_token1] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [aux_sym_as_type_clause_token2] = ACTIONS(5752), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5752), + [aux_sym_visibility_token1] = ACTIONS(5752), + [aux_sym_visibility_token2] = ACTIONS(5752), + [aux_sym_elseif_fragment_token1] = ACTIONS(5752), + [aux_sym_else_fragment_token1] = ACTIONS(5752), + [aux_sym_select_statement_token1] = ACTIONS(5752), + [aux_sym__for_header_token1] = ACTIONS(5752), + [aux_sym_do_statement_token1] = ACTIONS(5752), + [aux_sym_do_condition_token1] = ACTIONS(5752), + [aux_sym_while_statement_token1] = ACTIONS(5752), + [aux_sym_with_statement_token1] = ACTIONS(5752), + [aux_sym_exit_statement_token1] = ACTIONS(5752), + [sym_end_statement] = ACTIONS(5754), + [aux_sym_on_goto_statement_token1] = ACTIONS(5752), + [aux_sym_on_goto_statement_token2] = ACTIONS(5752), + [aux_sym_on_error_statement_token2] = ACTIONS(5752), + [sym__ambiguous_redim_statement] = ACTIONS(5754), + [aux_sym_erase_statement_token1] = ACTIONS(5752), + [aux_sym_open_statement_token1] = ACTIONS(5752), + [aux_sym_file_mode_token2] = ACTIONS(5752), + [aux_sym_file_access_token2] = ACTIONS(5752), + [aux_sym_file_lock_token2] = ACTIONS(5752), + [aux_sym_print_statement_token1] = ACTIONS(5752), + [anon_sym_PLUS] = ACTIONS(5754), + [anon_sym_DASH] = ACTIONS(5752), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10177), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10179), + [anon_sym_SEMI] = ACTIONS(5754), + [anon_sym_QMARK] = ACTIONS(5754), + [aux_sym_close_statement_token1] = ACTIONS(5752), + [aux_sym_put_statement_token1] = ACTIONS(5752), + [aux_sym_unlock_statement_token1] = ACTIONS(5752), + [aux_sym_seek_statement_token1] = ACTIONS(5752), + [sym_reset_statement] = ACTIONS(5752), + [aux_sym_raise_event_statement_token1] = ACTIONS(5752), + [sym_stop_statement] = ACTIONS(5752), + [sym_beep_statement] = ACTIONS(5752), + [aux_sym_unload_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token2] = ACTIONS(5752), + [aux_sym_def_type_statement_token3] = ACTIONS(5752), + [aux_sym_def_type_statement_token4] = ACTIONS(5752), + [aux_sym_def_type_statement_token5] = ACTIONS(5752), + [aux_sym_def_type_statement_token6] = ACTIONS(5752), + [aux_sym_def_type_statement_token7] = ACTIONS(5752), + [aux_sym_def_type_statement_token8] = ACTIONS(5752), + [aux_sym_def_type_statement_token9] = ACTIONS(5752), + [aux_sym_def_type_statement_token10] = ACTIONS(5752), + [aux_sym_def_type_statement_token11] = ACTIONS(5752), + [aux_sym_def_type_statement_token12] = ACTIONS(5752), + [aux_sym_def_type_statement_token13] = ACTIONS(5752), + [aux_sym_def_type_statement_token14] = ACTIONS(5752), + [aux_sym_call_statement_token1] = ACTIONS(5752), + [sym__ambiguous_call_statement] = ACTIONS(5752), + [aux_sym_addressof_expression_token1] = ACTIONS(5752), + [aux_sym_type_of_expression_token1] = ACTIONS(5752), + [aux_sym_unary_expression_token1] = ACTIONS(5752), + [sym_string_literal] = ACTIONS(5754), + [sym_number_literal] = ACTIONS(5754), + [aux_sym_boolean_literal_token1] = ACTIONS(5752), + [aux_sym_boolean_literal_token2] = ACTIONS(5752), + [sym_nothing_literal] = ACTIONS(5752), + [sym_null_literal] = ACTIONS(5752), + [sym_empty_literal] = ACTIONS(5752), + [sym_date_literal] = ACTIONS(5754), + [anon_sym_POUND] = ACTIONS(5752), + }, + [STATE(4765)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(4770), + [sym_identifier] = ACTIONS(8529), + [sym_newline] = ACTIONS(8531), + [anon_sym_COLON] = ACTIONS(8531), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8529), + [aux_sym_frm_property_statement_token1] = ACTIONS(8529), + [anon_sym_DOT] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(8531), + [aux_sym__attribute_identifier_token1] = ACTIONS(8529), + [aux_sym_option_statement_token3] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8529), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8529), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8529), + [aux_sym_preprocessor_const_token1] = ACTIONS(8529), + [sym_static_modifier] = ACTIONS(8529), + [sym__dim_keyword] = ACTIONS(8529), + [sym__redim_keyword] = ACTIONS(8529), + [aux_sym_get_accessor_token1] = ACTIONS(8529), + [aux_sym_set_accessor_token1] = ACTIONS(8529), + [anon_sym_COMMA] = ACTIONS(10204), + [aux_sym_const_declaration_token1] = ACTIONS(8529), + [anon_sym_LPAREN] = ACTIONS(8531), + [aux_sym_as_type_clause_token2] = ACTIONS(8529), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8529), + [aux_sym_visibility_token1] = ACTIONS(8529), + [aux_sym_visibility_token2] = ACTIONS(8529), + [aux_sym_elseif_fragment_token1] = ACTIONS(8529), + [aux_sym_else_fragment_token1] = ACTIONS(8529), + [aux_sym_select_statement_token1] = ACTIONS(8529), + [aux_sym__for_header_token1] = ACTIONS(8529), + [aux_sym_do_statement_token1] = ACTIONS(8529), + [aux_sym_do_condition_token1] = ACTIONS(8529), + [aux_sym_with_statement_token1] = ACTIONS(8529), + [aux_sym_exit_statement_token1] = ACTIONS(8529), + [sym_end_statement] = ACTIONS(8531), + [aux_sym_on_goto_statement_token1] = ACTIONS(8529), + [aux_sym_on_goto_statement_token2] = ACTIONS(8529), + [aux_sym_on_error_statement_token2] = ACTIONS(8529), + [sym__ambiguous_redim_statement] = ACTIONS(8531), + [aux_sym_erase_statement_token1] = ACTIONS(8529), + [aux_sym_open_statement_token1] = ACTIONS(8529), + [aux_sym_file_mode_token2] = ACTIONS(8529), + [aux_sym_file_access_token2] = ACTIONS(8529), + [aux_sym_file_lock_token2] = ACTIONS(8529), + [aux_sym_print_statement_token1] = ACTIONS(8529), + [anon_sym_PLUS] = ACTIONS(8531), + [anon_sym_DASH] = ACTIONS(8529), + [anon_sym_QMARK] = ACTIONS(8531), + [aux_sym_close_statement_token1] = ACTIONS(8529), + [aux_sym_put_statement_token1] = ACTIONS(8529), + [aux_sym_unlock_statement_token1] = ACTIONS(8529), + [aux_sym_seek_statement_token1] = ACTIONS(8529), + [sym_reset_statement] = ACTIONS(8529), + [aux_sym_raise_event_statement_token1] = ACTIONS(8529), + [sym_stop_statement] = ACTIONS(8529), + [sym_beep_statement] = ACTIONS(8529), + [aux_sym_unload_statement_token1] = ACTIONS(8529), + [aux_sym_def_type_statement_token1] = ACTIONS(8529), + [aux_sym_def_type_statement_token2] = ACTIONS(8529), + [aux_sym_def_type_statement_token3] = ACTIONS(8529), + [aux_sym_def_type_statement_token4] = ACTIONS(8529), + [aux_sym_def_type_statement_token5] = ACTIONS(8529), + [aux_sym_def_type_statement_token6] = ACTIONS(8529), + [aux_sym_def_type_statement_token7] = ACTIONS(8529), + [aux_sym_def_type_statement_token8] = ACTIONS(8529), + [aux_sym_def_type_statement_token9] = ACTIONS(8529), + [aux_sym_def_type_statement_token10] = ACTIONS(8529), + [aux_sym_def_type_statement_token11] = ACTIONS(8529), + [aux_sym_def_type_statement_token12] = ACTIONS(8529), + [aux_sym_def_type_statement_token13] = ACTIONS(8529), + [aux_sym_def_type_statement_token14] = ACTIONS(8529), + [aux_sym_call_statement_token1] = ACTIONS(8529), + [sym__ambiguous_call_statement] = ACTIONS(8529), + [aux_sym_addressof_expression_token1] = ACTIONS(8529), + [aux_sym_type_of_expression_token1] = ACTIONS(8529), + [aux_sym_unary_expression_token1] = ACTIONS(8529), + [sym_string_literal] = ACTIONS(8531), + [sym_number_literal] = ACTIONS(8531), + [aux_sym_boolean_literal_token1] = ACTIONS(8529), + [aux_sym_boolean_literal_token2] = ACTIONS(8529), + [sym_nothing_literal] = ACTIONS(8529), + [sym_null_literal] = ACTIONS(8529), + [sym_empty_literal] = ACTIONS(8529), + [sym_date_literal] = ACTIONS(8531), + [anon_sym_POUND] = ACTIONS(8529), + }, + [STATE(4766)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(4771), + [sym_identifier] = ACTIONS(8540), + [sym_newline] = ACTIONS(8542), + [anon_sym_COLON] = ACTIONS(8542), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8540), + [aux_sym_frm_property_statement_token1] = ACTIONS(8540), + [anon_sym_DOT] = ACTIONS(8540), + [anon_sym_BANG] = ACTIONS(8542), + [aux_sym__attribute_identifier_token1] = ACTIONS(8540), + [aux_sym_option_statement_token3] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8540), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8540), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8540), + [aux_sym_preprocessor_const_token1] = ACTIONS(8540), + [sym_static_modifier] = ACTIONS(8540), + [sym__dim_keyword] = ACTIONS(8540), + [sym__redim_keyword] = ACTIONS(8540), + [aux_sym_get_accessor_token1] = ACTIONS(8540), + [aux_sym_set_accessor_token1] = ACTIONS(8540), + [anon_sym_COMMA] = ACTIONS(10204), + [aux_sym_const_declaration_token1] = ACTIONS(8540), + [anon_sym_LPAREN] = ACTIONS(8542), + [aux_sym_as_type_clause_token2] = ACTIONS(8540), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8540), + [aux_sym_visibility_token1] = ACTIONS(8540), + [aux_sym_visibility_token2] = ACTIONS(8540), + [aux_sym_elseif_fragment_token1] = ACTIONS(8540), + [aux_sym_else_fragment_token1] = ACTIONS(8540), + [aux_sym_select_statement_token1] = ACTIONS(8540), + [aux_sym__for_header_token1] = ACTIONS(8540), + [aux_sym_do_statement_token1] = ACTIONS(8540), + [aux_sym_do_condition_token1] = ACTIONS(8540), + [aux_sym_with_statement_token1] = ACTIONS(8540), + [aux_sym_exit_statement_token1] = ACTIONS(8540), + [sym_end_statement] = ACTIONS(8542), + [aux_sym_on_goto_statement_token1] = ACTIONS(8540), + [aux_sym_on_goto_statement_token2] = ACTIONS(8540), + [aux_sym_on_error_statement_token2] = ACTIONS(8540), + [sym__ambiguous_redim_statement] = ACTIONS(8542), + [aux_sym_erase_statement_token1] = ACTIONS(8540), + [aux_sym_open_statement_token1] = ACTIONS(8540), + [aux_sym_file_mode_token2] = ACTIONS(8540), + [aux_sym_file_access_token2] = ACTIONS(8540), + [aux_sym_file_lock_token2] = ACTIONS(8540), + [aux_sym_print_statement_token1] = ACTIONS(8540), + [anon_sym_PLUS] = ACTIONS(8542), + [anon_sym_DASH] = ACTIONS(8540), + [anon_sym_QMARK] = ACTIONS(8542), + [aux_sym_close_statement_token1] = ACTIONS(8540), + [aux_sym_put_statement_token1] = ACTIONS(8540), + [aux_sym_unlock_statement_token1] = ACTIONS(8540), + [aux_sym_seek_statement_token1] = ACTIONS(8540), + [sym_reset_statement] = ACTIONS(8540), + [aux_sym_raise_event_statement_token1] = ACTIONS(8540), + [sym_stop_statement] = ACTIONS(8540), + [sym_beep_statement] = ACTIONS(8540), + [aux_sym_unload_statement_token1] = ACTIONS(8540), + [aux_sym_def_type_statement_token1] = ACTIONS(8540), + [aux_sym_def_type_statement_token2] = ACTIONS(8540), + [aux_sym_def_type_statement_token3] = ACTIONS(8540), + [aux_sym_def_type_statement_token4] = ACTIONS(8540), + [aux_sym_def_type_statement_token5] = ACTIONS(8540), + [aux_sym_def_type_statement_token6] = ACTIONS(8540), + [aux_sym_def_type_statement_token7] = ACTIONS(8540), + [aux_sym_def_type_statement_token8] = ACTIONS(8540), + [aux_sym_def_type_statement_token9] = ACTIONS(8540), + [aux_sym_def_type_statement_token10] = ACTIONS(8540), + [aux_sym_def_type_statement_token11] = ACTIONS(8540), + [aux_sym_def_type_statement_token12] = ACTIONS(8540), + [aux_sym_def_type_statement_token13] = ACTIONS(8540), + [aux_sym_def_type_statement_token14] = ACTIONS(8540), + [aux_sym_call_statement_token1] = ACTIONS(8540), + [sym__ambiguous_call_statement] = ACTIONS(8540), + [aux_sym_addressof_expression_token1] = ACTIONS(8540), + [aux_sym_type_of_expression_token1] = ACTIONS(8540), + [aux_sym_unary_expression_token1] = ACTIONS(8540), + [sym_string_literal] = ACTIONS(8542), + [sym_number_literal] = ACTIONS(8542), + [aux_sym_boolean_literal_token1] = ACTIONS(8540), + [aux_sym_boolean_literal_token2] = ACTIONS(8540), + [sym_nothing_literal] = ACTIONS(8540), + [sym_null_literal] = ACTIONS(8540), + [sym_empty_literal] = ACTIONS(8540), + [sym_date_literal] = ACTIONS(8542), + [anon_sym_POUND] = ACTIONS(8540), + }, + [STATE(4767)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4769), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(10206), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_statement_token2] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(4768)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym_select_statement_token2] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(4769)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4780), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_statement_token2] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(4770)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(8225), + [sym_newline] = ACTIONS(8227), + [anon_sym_COLON] = ACTIONS(8227), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8225), + [aux_sym_frm_property_statement_token1] = ACTIONS(8225), + [anon_sym_DOT] = ACTIONS(8225), + [anon_sym_BANG] = ACTIONS(8227), + [aux_sym__attribute_identifier_token1] = ACTIONS(8225), + [aux_sym_option_statement_token3] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8225), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8225), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8225), + [aux_sym_preprocessor_const_token1] = ACTIONS(8225), + [sym_static_modifier] = ACTIONS(8225), + [sym__dim_keyword] = ACTIONS(8225), + [sym__redim_keyword] = ACTIONS(8225), + [aux_sym_get_accessor_token1] = ACTIONS(8225), + [aux_sym_set_accessor_token1] = ACTIONS(8225), + [anon_sym_COMMA] = ACTIONS(10204), + [aux_sym_const_declaration_token1] = ACTIONS(8225), + [anon_sym_LPAREN] = ACTIONS(8227), + [aux_sym_as_type_clause_token2] = ACTIONS(8225), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8225), + [aux_sym_visibility_token1] = ACTIONS(8225), + [aux_sym_visibility_token2] = ACTIONS(8225), + [aux_sym_elseif_fragment_token1] = ACTIONS(8225), + [aux_sym_else_fragment_token1] = ACTIONS(8225), + [aux_sym_select_statement_token1] = ACTIONS(8225), + [aux_sym__for_header_token1] = ACTIONS(8225), + [aux_sym_do_statement_token1] = ACTIONS(8225), + [aux_sym_do_condition_token1] = ACTIONS(8225), + [aux_sym_with_statement_token1] = ACTIONS(8225), + [aux_sym_exit_statement_token1] = ACTIONS(8225), + [sym_end_statement] = ACTIONS(8227), + [aux_sym_on_goto_statement_token1] = ACTIONS(8225), + [aux_sym_on_goto_statement_token2] = ACTIONS(8225), + [aux_sym_on_error_statement_token2] = ACTIONS(8225), + [sym__ambiguous_redim_statement] = ACTIONS(8227), + [aux_sym_erase_statement_token1] = ACTIONS(8225), + [aux_sym_open_statement_token1] = ACTIONS(8225), + [aux_sym_file_mode_token2] = ACTIONS(8225), + [aux_sym_file_access_token2] = ACTIONS(8225), + [aux_sym_file_lock_token2] = ACTIONS(8225), + [aux_sym_print_statement_token1] = ACTIONS(8225), + [anon_sym_PLUS] = ACTIONS(8227), + [anon_sym_DASH] = ACTIONS(8225), + [anon_sym_QMARK] = ACTIONS(8227), + [aux_sym_close_statement_token1] = ACTIONS(8225), + [aux_sym_put_statement_token1] = ACTIONS(8225), + [aux_sym_unlock_statement_token1] = ACTIONS(8225), + [aux_sym_seek_statement_token1] = ACTIONS(8225), + [sym_reset_statement] = ACTIONS(8225), + [aux_sym_raise_event_statement_token1] = ACTIONS(8225), + [sym_stop_statement] = ACTIONS(8225), + [sym_beep_statement] = ACTIONS(8225), + [aux_sym_unload_statement_token1] = ACTIONS(8225), + [aux_sym_def_type_statement_token1] = ACTIONS(8225), + [aux_sym_def_type_statement_token2] = ACTIONS(8225), + [aux_sym_def_type_statement_token3] = ACTIONS(8225), + [aux_sym_def_type_statement_token4] = ACTIONS(8225), + [aux_sym_def_type_statement_token5] = ACTIONS(8225), + [aux_sym_def_type_statement_token6] = ACTIONS(8225), + [aux_sym_def_type_statement_token7] = ACTIONS(8225), + [aux_sym_def_type_statement_token8] = ACTIONS(8225), + [aux_sym_def_type_statement_token9] = ACTIONS(8225), + [aux_sym_def_type_statement_token10] = ACTIONS(8225), + [aux_sym_def_type_statement_token11] = ACTIONS(8225), + [aux_sym_def_type_statement_token12] = ACTIONS(8225), + [aux_sym_def_type_statement_token13] = ACTIONS(8225), + [aux_sym_def_type_statement_token14] = ACTIONS(8225), + [aux_sym_call_statement_token1] = ACTIONS(8225), + [sym__ambiguous_call_statement] = ACTIONS(8225), + [aux_sym_addressof_expression_token1] = ACTIONS(8225), + [aux_sym_type_of_expression_token1] = ACTIONS(8225), + [aux_sym_unary_expression_token1] = ACTIONS(8225), + [sym_string_literal] = ACTIONS(8227), + [sym_number_literal] = ACTIONS(8227), + [aux_sym_boolean_literal_token1] = ACTIONS(8225), + [aux_sym_boolean_literal_token2] = ACTIONS(8225), + [sym_nothing_literal] = ACTIONS(8225), + [sym_null_literal] = ACTIONS(8225), + [sym_empty_literal] = ACTIONS(8225), + [sym_date_literal] = ACTIONS(8227), + [anon_sym_POUND] = ACTIONS(8225), + }, + [STATE(4771)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(8231), + [sym_newline] = ACTIONS(8233), + [anon_sym_COLON] = ACTIONS(8233), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8231), + [aux_sym_frm_property_statement_token1] = ACTIONS(8231), + [anon_sym_DOT] = ACTIONS(8231), + [anon_sym_BANG] = ACTIONS(8233), + [aux_sym__attribute_identifier_token1] = ACTIONS(8231), + [aux_sym_option_statement_token3] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8231), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8231), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8231), + [aux_sym_preprocessor_const_token1] = ACTIONS(8231), + [sym_static_modifier] = ACTIONS(8231), + [sym__dim_keyword] = ACTIONS(8231), + [sym__redim_keyword] = ACTIONS(8231), + [aux_sym_get_accessor_token1] = ACTIONS(8231), + [aux_sym_set_accessor_token1] = ACTIONS(8231), + [anon_sym_COMMA] = ACTIONS(10204), + [aux_sym_const_declaration_token1] = ACTIONS(8231), + [anon_sym_LPAREN] = ACTIONS(8233), + [aux_sym_as_type_clause_token2] = ACTIONS(8231), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8231), + [aux_sym_visibility_token1] = ACTIONS(8231), + [aux_sym_visibility_token2] = ACTIONS(8231), + [aux_sym_elseif_fragment_token1] = ACTIONS(8231), + [aux_sym_else_fragment_token1] = ACTIONS(8231), + [aux_sym_select_statement_token1] = ACTIONS(8231), + [aux_sym__for_header_token1] = ACTIONS(8231), + [aux_sym_do_statement_token1] = ACTIONS(8231), + [aux_sym_do_condition_token1] = ACTIONS(8231), + [aux_sym_with_statement_token1] = ACTIONS(8231), + [aux_sym_exit_statement_token1] = ACTIONS(8231), + [sym_end_statement] = ACTIONS(8233), + [aux_sym_on_goto_statement_token1] = ACTIONS(8231), + [aux_sym_on_goto_statement_token2] = ACTIONS(8231), + [aux_sym_on_error_statement_token2] = ACTIONS(8231), + [sym__ambiguous_redim_statement] = ACTIONS(8233), + [aux_sym_erase_statement_token1] = ACTIONS(8231), + [aux_sym_open_statement_token1] = ACTIONS(8231), + [aux_sym_file_mode_token2] = ACTIONS(8231), + [aux_sym_file_access_token2] = ACTIONS(8231), + [aux_sym_file_lock_token2] = ACTIONS(8231), + [aux_sym_print_statement_token1] = ACTIONS(8231), + [anon_sym_PLUS] = ACTIONS(8233), + [anon_sym_DASH] = ACTIONS(8231), + [anon_sym_QMARK] = ACTIONS(8233), + [aux_sym_close_statement_token1] = ACTIONS(8231), + [aux_sym_put_statement_token1] = ACTIONS(8231), + [aux_sym_unlock_statement_token1] = ACTIONS(8231), + [aux_sym_seek_statement_token1] = ACTIONS(8231), + [sym_reset_statement] = ACTIONS(8231), + [aux_sym_raise_event_statement_token1] = ACTIONS(8231), + [sym_stop_statement] = ACTIONS(8231), + [sym_beep_statement] = ACTIONS(8231), + [aux_sym_unload_statement_token1] = ACTIONS(8231), + [aux_sym_def_type_statement_token1] = ACTIONS(8231), + [aux_sym_def_type_statement_token2] = ACTIONS(8231), + [aux_sym_def_type_statement_token3] = ACTIONS(8231), + [aux_sym_def_type_statement_token4] = ACTIONS(8231), + [aux_sym_def_type_statement_token5] = ACTIONS(8231), + [aux_sym_def_type_statement_token6] = ACTIONS(8231), + [aux_sym_def_type_statement_token7] = ACTIONS(8231), + [aux_sym_def_type_statement_token8] = ACTIONS(8231), + [aux_sym_def_type_statement_token9] = ACTIONS(8231), + [aux_sym_def_type_statement_token10] = ACTIONS(8231), + [aux_sym_def_type_statement_token11] = ACTIONS(8231), + [aux_sym_def_type_statement_token12] = ACTIONS(8231), + [aux_sym_def_type_statement_token13] = ACTIONS(8231), + [aux_sym_def_type_statement_token14] = ACTIONS(8231), + [aux_sym_call_statement_token1] = ACTIONS(8231), + [sym__ambiguous_call_statement] = ACTIONS(8231), + [aux_sym_addressof_expression_token1] = ACTIONS(8231), + [aux_sym_type_of_expression_token1] = ACTIONS(8231), + [aux_sym_unary_expression_token1] = ACTIONS(8231), + [sym_string_literal] = ACTIONS(8233), + [sym_number_literal] = ACTIONS(8233), + [aux_sym_boolean_literal_token1] = ACTIONS(8231), + [aux_sym_boolean_literal_token2] = ACTIONS(8231), + [sym_nothing_literal] = ACTIONS(8231), + [sym_null_literal] = ACTIONS(8231), + [sym_empty_literal] = ACTIONS(8231), + [sym_date_literal] = ACTIONS(8233), + [anon_sym_POUND] = ACTIONS(8231), + }, + [STATE(4772)] = { + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(7951), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(4773)] = { + [sym_char_position] = STATE(579), + [aux_sym_output_list_repeat1] = STATE(4731), + [sym_identifier] = ACTIONS(7460), + [sym_newline] = ACTIONS(7462), + [anon_sym_COLON] = ACTIONS(7462), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7460), + [aux_sym_frm_property_statement_token1] = ACTIONS(7460), + [anon_sym_DOT] = ACTIONS(7460), + [anon_sym_BANG] = ACTIONS(7462), + [aux_sym__attribute_identifier_token1] = ACTIONS(7460), + [aux_sym_option_statement_token3] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7460), + [aux_sym_preprocessor_const_token1] = ACTIONS(7460), + [sym_static_modifier] = ACTIONS(7460), + [sym__dim_keyword] = ACTIONS(7460), + [sym__redim_keyword] = ACTIONS(7460), + [aux_sym_get_accessor_token1] = ACTIONS(7460), + [aux_sym_set_accessor_token1] = ACTIONS(7460), + [anon_sym_COMMA] = ACTIONS(10192), + [aux_sym_const_declaration_token1] = ACTIONS(7460), + [anon_sym_LPAREN] = ACTIONS(7462), + [aux_sym_as_type_clause_token2] = ACTIONS(7460), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7460), + [aux_sym_visibility_token1] = ACTIONS(7460), + [aux_sym_visibility_token2] = ACTIONS(7460), + [aux_sym_elseif_fragment_token1] = ACTIONS(7460), + [aux_sym_else_fragment_token1] = ACTIONS(7460), + [aux_sym_select_statement_token1] = ACTIONS(7460), + [aux_sym__for_header_token1] = ACTIONS(7460), + [aux_sym_do_statement_token1] = ACTIONS(7460), + [aux_sym_do_statement_token2] = ACTIONS(7460), + [aux_sym_do_condition_token1] = ACTIONS(7460), + [aux_sym_with_statement_token1] = ACTIONS(7460), + [aux_sym_exit_statement_token1] = ACTIONS(7460), + [sym_end_statement] = ACTIONS(7462), + [aux_sym_on_goto_statement_token1] = ACTIONS(7460), + [aux_sym_on_goto_statement_token2] = ACTIONS(7460), + [aux_sym_on_error_statement_token2] = ACTIONS(7460), + [sym__ambiguous_redim_statement] = ACTIONS(7462), + [aux_sym_erase_statement_token1] = ACTIONS(7460), + [aux_sym_open_statement_token1] = ACTIONS(7460), + [aux_sym_file_mode_token2] = ACTIONS(7460), + [aux_sym_file_access_token2] = ACTIONS(7460), + [aux_sym_file_lock_token2] = ACTIONS(7460), + [aux_sym_print_statement_token1] = ACTIONS(7460), + [anon_sym_PLUS] = ACTIONS(7462), + [anon_sym_DASH] = ACTIONS(7460), + [anon_sym_SEMI] = ACTIONS(10192), + [anon_sym_QMARK] = ACTIONS(7462), + [aux_sym_close_statement_token1] = ACTIONS(7460), + [aux_sym_put_statement_token1] = ACTIONS(7460), + [aux_sym_unlock_statement_token1] = ACTIONS(7460), + [aux_sym_seek_statement_token1] = ACTIONS(7460), + [sym_reset_statement] = ACTIONS(7460), + [aux_sym_raise_event_statement_token1] = ACTIONS(7460), + [sym_stop_statement] = ACTIONS(7460), + [sym_beep_statement] = ACTIONS(7460), + [aux_sym_unload_statement_token1] = ACTIONS(7460), + [aux_sym_def_type_statement_token1] = ACTIONS(7460), + [aux_sym_def_type_statement_token2] = ACTIONS(7460), + [aux_sym_def_type_statement_token3] = ACTIONS(7460), + [aux_sym_def_type_statement_token4] = ACTIONS(7460), + [aux_sym_def_type_statement_token5] = ACTIONS(7460), + [aux_sym_def_type_statement_token6] = ACTIONS(7460), + [aux_sym_def_type_statement_token7] = ACTIONS(7460), + [aux_sym_def_type_statement_token8] = ACTIONS(7460), + [aux_sym_def_type_statement_token9] = ACTIONS(7460), + [aux_sym_def_type_statement_token10] = ACTIONS(7460), + [aux_sym_def_type_statement_token11] = ACTIONS(7460), + [aux_sym_def_type_statement_token12] = ACTIONS(7460), + [aux_sym_def_type_statement_token13] = ACTIONS(7460), + [aux_sym_def_type_statement_token14] = ACTIONS(7460), + [aux_sym_call_statement_token1] = ACTIONS(7460), + [sym__ambiguous_call_statement] = ACTIONS(7460), + [aux_sym_addressof_expression_token1] = ACTIONS(7460), + [aux_sym_type_of_expression_token1] = ACTIONS(7460), + [aux_sym_unary_expression_token1] = ACTIONS(7460), + [sym_string_literal] = ACTIONS(7462), + [sym_number_literal] = ACTIONS(7462), + [aux_sym_boolean_literal_token1] = ACTIONS(7460), + [aux_sym_boolean_literal_token2] = ACTIONS(7460), + [sym_nothing_literal] = ACTIONS(7460), + [sym_null_literal] = ACTIONS(7460), + [sym_empty_literal] = ACTIONS(7460), + [sym_date_literal] = ACTIONS(7462), + [anon_sym_POUND] = ACTIONS(7460), + }, + [STATE(4774)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(4774), + [sym_identifier] = ACTIONS(8386), + [sym_newline] = ACTIONS(8388), + [anon_sym_COLON] = ACTIONS(8388), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8386), + [aux_sym_frm_property_statement_token1] = ACTIONS(8386), + [anon_sym_DOT] = ACTIONS(8386), + [anon_sym_BANG] = ACTIONS(8388), + [aux_sym__attribute_identifier_token1] = ACTIONS(8386), + [aux_sym_option_statement_token3] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8386), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8386), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8386), + [aux_sym_preprocessor_const_token1] = ACTIONS(8386), + [sym_static_modifier] = ACTIONS(8386), + [sym__dim_keyword] = ACTIONS(8386), + [sym__redim_keyword] = ACTIONS(8386), + [aux_sym_get_accessor_token1] = ACTIONS(8386), + [aux_sym_set_accessor_token1] = ACTIONS(8386), + [anon_sym_COMMA] = ACTIONS(10208), + [aux_sym_const_declaration_token1] = ACTIONS(8386), + [anon_sym_LPAREN] = ACTIONS(8388), + [aux_sym_as_type_clause_token2] = ACTIONS(8386), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8386), + [aux_sym_visibility_token1] = ACTIONS(8386), + [aux_sym_visibility_token2] = ACTIONS(8386), + [aux_sym_elseif_fragment_token1] = ACTIONS(8386), + [aux_sym_else_fragment_token1] = ACTIONS(8386), + [aux_sym_select_statement_token1] = ACTIONS(8386), + [aux_sym__for_header_token1] = ACTIONS(8386), + [aux_sym_do_statement_token1] = ACTIONS(8386), + [aux_sym_do_condition_token1] = ACTIONS(8386), + [aux_sym_with_statement_token1] = ACTIONS(8386), + [aux_sym_exit_statement_token1] = ACTIONS(8386), + [sym_end_statement] = ACTIONS(8388), + [aux_sym_on_goto_statement_token1] = ACTIONS(8386), + [aux_sym_on_goto_statement_token2] = ACTIONS(8386), + [aux_sym_on_error_statement_token2] = ACTIONS(8386), + [sym__ambiguous_redim_statement] = ACTIONS(8388), + [aux_sym_erase_statement_token1] = ACTIONS(8386), + [aux_sym_open_statement_token1] = ACTIONS(8386), + [aux_sym_file_mode_token2] = ACTIONS(8386), + [aux_sym_file_access_token2] = ACTIONS(8386), + [aux_sym_file_lock_token2] = ACTIONS(8386), + [aux_sym_print_statement_token1] = ACTIONS(8386), + [anon_sym_PLUS] = ACTIONS(8388), + [anon_sym_DASH] = ACTIONS(8386), + [anon_sym_QMARK] = ACTIONS(8388), + [aux_sym_close_statement_token1] = ACTIONS(8386), + [aux_sym_put_statement_token1] = ACTIONS(8386), + [aux_sym_unlock_statement_token1] = ACTIONS(8386), + [aux_sym_seek_statement_token1] = ACTIONS(8386), + [sym_reset_statement] = ACTIONS(8386), + [aux_sym_raise_event_statement_token1] = ACTIONS(8386), + [sym_stop_statement] = ACTIONS(8386), + [sym_beep_statement] = ACTIONS(8386), + [aux_sym_unload_statement_token1] = ACTIONS(8386), + [aux_sym_def_type_statement_token1] = ACTIONS(8386), + [aux_sym_def_type_statement_token2] = ACTIONS(8386), + [aux_sym_def_type_statement_token3] = ACTIONS(8386), + [aux_sym_def_type_statement_token4] = ACTIONS(8386), + [aux_sym_def_type_statement_token5] = ACTIONS(8386), + [aux_sym_def_type_statement_token6] = ACTIONS(8386), + [aux_sym_def_type_statement_token7] = ACTIONS(8386), + [aux_sym_def_type_statement_token8] = ACTIONS(8386), + [aux_sym_def_type_statement_token9] = ACTIONS(8386), + [aux_sym_def_type_statement_token10] = ACTIONS(8386), + [aux_sym_def_type_statement_token11] = ACTIONS(8386), + [aux_sym_def_type_statement_token12] = ACTIONS(8386), + [aux_sym_def_type_statement_token13] = ACTIONS(8386), + [aux_sym_def_type_statement_token14] = ACTIONS(8386), + [aux_sym_call_statement_token1] = ACTIONS(8386), + [sym__ambiguous_call_statement] = ACTIONS(8386), + [aux_sym_addressof_expression_token1] = ACTIONS(8386), + [aux_sym_type_of_expression_token1] = ACTIONS(8386), + [aux_sym_unary_expression_token1] = ACTIONS(8386), + [sym_string_literal] = ACTIONS(8388), + [sym_number_literal] = ACTIONS(8388), + [aux_sym_boolean_literal_token1] = ACTIONS(8386), + [aux_sym_boolean_literal_token2] = ACTIONS(8386), + [sym_nothing_literal] = ACTIONS(8386), + [sym_null_literal] = ACTIONS(8386), + [sym_empty_literal] = ACTIONS(8386), + [sym_date_literal] = ACTIONS(8388), + [anon_sym_POUND] = ACTIONS(8386), + }, + [STATE(4775)] = { + [sym_identifier] = ACTIONS(3996), + [sym_newline] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3996), + [aux_sym_frm_property_statement_token1] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3994), + [aux_sym__attribute_identifier_token1] = ACTIONS(3996), + [aux_sym_option_statement_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3996), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(3996), + [aux_sym_preprocessor_const_token1] = ACTIONS(3996), + [sym_static_modifier] = ACTIONS(3996), + [sym__dim_keyword] = ACTIONS(3996), + [sym__redim_keyword] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3996), + [aux_sym_set_accessor_token1] = ACTIONS(3996), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3994), + [aux_sym_as_type_clause_token2] = ACTIONS(3996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3996), + [aux_sym_visibility_token1] = ACTIONS(3996), + [aux_sym_visibility_token2] = ACTIONS(3996), + [aux_sym_elseif_fragment_token1] = ACTIONS(3996), + [aux_sym_else_fragment_token1] = ACTIONS(3996), + [aux_sym_select_statement_token1] = ACTIONS(3996), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3996), + [aux_sym__for_header_token1] = ACTIONS(3996), + [aux_sym_do_statement_token1] = ACTIONS(3996), + [aux_sym_do_condition_token1] = ACTIONS(3996), + [aux_sym_with_statement_token1] = ACTIONS(3996), + [aux_sym_exit_statement_token1] = ACTIONS(3996), + [sym_end_statement] = ACTIONS(3994), + [aux_sym_on_goto_statement_token1] = ACTIONS(3996), + [aux_sym_on_goto_statement_token2] = ACTIONS(3996), + [aux_sym_on_error_statement_token2] = ACTIONS(3996), + [sym__ambiguous_redim_statement] = ACTIONS(3994), + [aux_sym_erase_statement_token1] = ACTIONS(3996), + [aux_sym_open_statement_token1] = ACTIONS(3996), + [aux_sym_file_mode_token2] = ACTIONS(3996), + [aux_sym_file_access_token2] = ACTIONS(3996), + [aux_sym_file_lock_token2] = ACTIONS(3996), + [aux_sym_print_statement_token1] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3994), + [aux_sym_close_statement_token1] = ACTIONS(3996), + [aux_sym_put_statement_token1] = ACTIONS(3996), + [aux_sym_unlock_statement_token1] = ACTIONS(3996), + [aux_sym_seek_statement_token1] = ACTIONS(3996), + [sym_reset_statement] = ACTIONS(3996), + [aux_sym_raise_event_statement_token1] = ACTIONS(3996), + [sym_stop_statement] = ACTIONS(3996), + [sym_beep_statement] = ACTIONS(3996), + [aux_sym_unload_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token2] = ACTIONS(3996), + [aux_sym_def_type_statement_token3] = ACTIONS(3996), + [aux_sym_def_type_statement_token4] = ACTIONS(3996), + [aux_sym_def_type_statement_token5] = ACTIONS(3996), + [aux_sym_def_type_statement_token6] = ACTIONS(3996), + [aux_sym_def_type_statement_token7] = ACTIONS(3996), + [aux_sym_def_type_statement_token8] = ACTIONS(3996), + [aux_sym_def_type_statement_token9] = ACTIONS(3996), + [aux_sym_def_type_statement_token10] = ACTIONS(3996), + [aux_sym_def_type_statement_token11] = ACTIONS(3996), + [aux_sym_def_type_statement_token12] = ACTIONS(3996), + [aux_sym_def_type_statement_token13] = ACTIONS(3996), + [aux_sym_def_type_statement_token14] = ACTIONS(3996), + [aux_sym_call_statement_token1] = ACTIONS(3996), + [sym__ambiguous_call_statement] = ACTIONS(3996), + [aux_sym_addressof_expression_token1] = ACTIONS(3996), + [aux_sym_type_of_expression_token1] = ACTIONS(3996), + [aux_sym_unary_expression_token1] = ACTIONS(3996), + [sym_string_literal] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3994), + [aux_sym_boolean_literal_token1] = ACTIONS(3996), + [aux_sym_boolean_literal_token2] = ACTIONS(3996), + [sym_nothing_literal] = ACTIONS(3996), + [sym_null_literal] = ACTIONS(3996), + [sym_empty_literal] = ACTIONS(3996), + [sym_date_literal] = ACTIONS(3994), + [anon_sym_POUND] = ACTIONS(3996), + }, + [STATE(4776)] = { + [sym_char_position] = STATE(7524), + [aux_sym_output_list_repeat1] = STATE(4776), + [sym_identifier] = ACTIONS(7618), + [sym_newline] = ACTIONS(7620), + [anon_sym_COLON] = ACTIONS(7620), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7618), + [aux_sym_frm_property_statement_token1] = ACTIONS(7618), + [anon_sym_DOT] = ACTIONS(7618), + [anon_sym_BANG] = ACTIONS(7620), + [aux_sym__attribute_identifier_token1] = ACTIONS(7618), + [aux_sym_option_statement_token3] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7618), + [aux_sym_preprocessor_const_token1] = ACTIONS(7618), + [sym_static_modifier] = ACTIONS(7618), + [sym__dim_keyword] = ACTIONS(7618), + [sym__redim_keyword] = ACTIONS(7618), + [aux_sym_get_accessor_token1] = ACTIONS(7618), + [aux_sym_set_accessor_token1] = ACTIONS(7618), + [anon_sym_COMMA] = ACTIONS(7622), + [aux_sym_const_declaration_token1] = ACTIONS(7618), + [anon_sym_LPAREN] = ACTIONS(7620), + [aux_sym_as_type_clause_token2] = ACTIONS(7618), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7618), + [aux_sym_visibility_token1] = ACTIONS(7618), + [aux_sym_visibility_token2] = ACTIONS(7618), + [aux_sym_elseif_fragment_token1] = ACTIONS(7618), + [aux_sym_else_fragment_token1] = ACTIONS(7618), + [aux_sym_select_statement_token1] = ACTIONS(7618), + [aux_sym_select_statement_token2] = ACTIONS(7618), + [aux_sym__for_header_token1] = ACTIONS(7618), + [aux_sym_do_statement_token1] = ACTIONS(7618), + [aux_sym_do_condition_token1] = ACTIONS(7618), + [aux_sym_with_statement_token1] = ACTIONS(7618), + [aux_sym_exit_statement_token1] = ACTIONS(7618), + [sym_end_statement] = ACTIONS(7620), + [aux_sym_on_goto_statement_token1] = ACTIONS(7618), + [aux_sym_on_goto_statement_token2] = ACTIONS(7618), + [aux_sym_on_error_statement_token2] = ACTIONS(7618), + [sym__ambiguous_redim_statement] = ACTIONS(7620), + [aux_sym_erase_statement_token1] = ACTIONS(7618), + [aux_sym_open_statement_token1] = ACTIONS(7618), + [aux_sym_file_mode_token2] = ACTIONS(7618), + [aux_sym_file_access_token2] = ACTIONS(7618), + [aux_sym_file_lock_token2] = ACTIONS(7618), + [aux_sym_print_statement_token1] = ACTIONS(7618), + [anon_sym_PLUS] = ACTIONS(7620), + [anon_sym_DASH] = ACTIONS(7618), + [anon_sym_SEMI] = ACTIONS(7622), + [anon_sym_QMARK] = ACTIONS(7620), + [aux_sym_close_statement_token1] = ACTIONS(7618), + [aux_sym_put_statement_token1] = ACTIONS(7618), + [aux_sym_unlock_statement_token1] = ACTIONS(7618), + [aux_sym_seek_statement_token1] = ACTIONS(7618), + [sym_reset_statement] = ACTIONS(7618), + [aux_sym_raise_event_statement_token1] = ACTIONS(7618), + [sym_stop_statement] = ACTIONS(7618), + [sym_beep_statement] = ACTIONS(7618), + [aux_sym_unload_statement_token1] = ACTIONS(7618), + [aux_sym_def_type_statement_token1] = ACTIONS(7618), + [aux_sym_def_type_statement_token2] = ACTIONS(7618), + [aux_sym_def_type_statement_token3] = ACTIONS(7618), + [aux_sym_def_type_statement_token4] = ACTIONS(7618), + [aux_sym_def_type_statement_token5] = ACTIONS(7618), + [aux_sym_def_type_statement_token6] = ACTIONS(7618), + [aux_sym_def_type_statement_token7] = ACTIONS(7618), + [aux_sym_def_type_statement_token8] = ACTIONS(7618), + [aux_sym_def_type_statement_token9] = ACTIONS(7618), + [aux_sym_def_type_statement_token10] = ACTIONS(7618), + [aux_sym_def_type_statement_token11] = ACTIONS(7618), + [aux_sym_def_type_statement_token12] = ACTIONS(7618), + [aux_sym_def_type_statement_token13] = ACTIONS(7618), + [aux_sym_def_type_statement_token14] = ACTIONS(7618), + [aux_sym_call_statement_token1] = ACTIONS(7618), + [sym__ambiguous_call_statement] = ACTIONS(7618), + [aux_sym_addressof_expression_token1] = ACTIONS(7618), + [aux_sym_type_of_expression_token1] = ACTIONS(7618), + [aux_sym_unary_expression_token1] = ACTIONS(7618), + [sym_string_literal] = ACTIONS(7620), + [sym_number_literal] = ACTIONS(7620), + [aux_sym_boolean_literal_token1] = ACTIONS(7618), + [aux_sym_boolean_literal_token2] = ACTIONS(7618), + [sym_nothing_literal] = ACTIONS(7618), + [sym_null_literal] = ACTIONS(7618), + [sym_empty_literal] = ACTIONS(7618), + [sym_date_literal] = ACTIONS(7620), + [anon_sym_POUND] = ACTIONS(7618), + }, + [STATE(4777)] = { + [sym_identifier] = ACTIONS(8467), + [sym_newline] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8467), + [aux_sym_frm_property_statement_token1] = ACTIONS(8467), + [anon_sym_DOT] = ACTIONS(8467), + [anon_sym_BANG] = ACTIONS(6089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8467), + [aux_sym_option_statement_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8467), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8467), + [aux_sym_preprocessor_const_token1] = ACTIONS(8467), + [sym_static_modifier] = ACTIONS(8467), + [sym__dim_keyword] = ACTIONS(8467), + [sym__redim_keyword] = ACTIONS(8467), + [aux_sym_get_accessor_token1] = ACTIONS(8467), + [aux_sym_set_accessor_token1] = ACTIONS(8467), + [anon_sym_COMMA] = ACTIONS(6089), + [aux_sym_const_declaration_token1] = ACTIONS(8467), + [anon_sym_LPAREN] = ACTIONS(6089), + [aux_sym_as_type_clause_token2] = ACTIONS(8467), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8467), + [aux_sym_visibility_token1] = ACTIONS(8467), + [aux_sym_visibility_token2] = ACTIONS(8467), + [aux_sym_elseif_fragment_token1] = ACTIONS(8467), + [aux_sym_else_fragment_token1] = ACTIONS(8467), + [aux_sym_select_statement_token1] = ACTIONS(8467), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8467), + [aux_sym__for_header_token1] = ACTIONS(8467), + [aux_sym_do_statement_token1] = ACTIONS(8467), + [aux_sym_do_condition_token1] = ACTIONS(8467), + [aux_sym_with_statement_token1] = ACTIONS(8467), + [aux_sym_exit_statement_token1] = ACTIONS(8467), + [sym_end_statement] = ACTIONS(6089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8467), + [aux_sym_on_goto_statement_token2] = ACTIONS(8467), + [aux_sym_on_error_statement_token2] = ACTIONS(8467), + [sym__ambiguous_redim_statement] = ACTIONS(6089), + [aux_sym_erase_statement_token1] = ACTIONS(8467), + [aux_sym_open_statement_token1] = ACTIONS(8467), + [aux_sym_file_mode_token2] = ACTIONS(8467), + [aux_sym_file_access_token2] = ACTIONS(8467), + [aux_sym_file_lock_token2] = ACTIONS(8467), + [aux_sym_print_statement_token1] = ACTIONS(8467), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(8467), + [anon_sym_QMARK] = ACTIONS(6089), + [aux_sym_close_statement_token1] = ACTIONS(8467), + [aux_sym_put_statement_token1] = ACTIONS(8467), + [aux_sym_unlock_statement_token1] = ACTIONS(8467), + [aux_sym_seek_statement_token1] = ACTIONS(8467), + [sym_reset_statement] = ACTIONS(8467), + [aux_sym_raise_event_statement_token1] = ACTIONS(8467), + [sym_stop_statement] = ACTIONS(8467), + [sym_beep_statement] = ACTIONS(8467), + [aux_sym_unload_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token2] = ACTIONS(8467), + [aux_sym_def_type_statement_token3] = ACTIONS(8467), + [aux_sym_def_type_statement_token4] = ACTIONS(8467), + [aux_sym_def_type_statement_token5] = ACTIONS(8467), + [aux_sym_def_type_statement_token6] = ACTIONS(8467), + [aux_sym_def_type_statement_token7] = ACTIONS(8467), + [aux_sym_def_type_statement_token8] = ACTIONS(8467), + [aux_sym_def_type_statement_token9] = ACTIONS(8467), + [aux_sym_def_type_statement_token10] = ACTIONS(8467), + [aux_sym_def_type_statement_token11] = ACTIONS(8467), + [aux_sym_def_type_statement_token12] = ACTIONS(8467), + [aux_sym_def_type_statement_token13] = ACTIONS(8467), + [aux_sym_def_type_statement_token14] = ACTIONS(8467), + [aux_sym_call_statement_token1] = ACTIONS(8467), + [sym__ambiguous_call_statement] = ACTIONS(8467), + [aux_sym_addressof_expression_token1] = ACTIONS(8467), + [aux_sym_type_of_expression_token1] = ACTIONS(8467), + [aux_sym_unary_expression_token1] = ACTIONS(8467), + [sym_string_literal] = ACTIONS(6089), + [sym_number_literal] = ACTIONS(6089), + [aux_sym_boolean_literal_token1] = ACTIONS(8467), + [aux_sym_boolean_literal_token2] = ACTIONS(8467), + [sym_nothing_literal] = ACTIONS(8467), + [sym_null_literal] = ACTIONS(8467), + [sym_empty_literal] = ACTIONS(8467), + [sym_date_literal] = ACTIONS(6089), + [anon_sym_POUND] = ACTIONS(8467), + }, + [STATE(4778)] = { + [sym_initializer] = STATE(6822), + [sym_as_type_clause] = STATE(5762), + [sym_identifier] = ACTIONS(7200), + [sym_newline] = ACTIONS(7202), + [anon_sym_COLON] = ACTIONS(7202), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7200), + [aux_sym_frm_property_statement_token1] = ACTIONS(7200), + [anon_sym_EQ] = ACTIONS(10124), + [anon_sym_DOT] = ACTIONS(7200), + [anon_sym_BANG] = ACTIONS(7202), + [aux_sym__attribute_identifier_token1] = ACTIONS(7200), + [aux_sym_option_statement_token3] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7200), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7200), + [aux_sym_preprocessor_const_token1] = ACTIONS(7200), + [sym_static_modifier] = ACTIONS(7200), + [sym__dim_keyword] = ACTIONS(7200), + [sym__redim_keyword] = ACTIONS(7200), + [aux_sym_get_accessor_token1] = ACTIONS(7200), + [aux_sym_set_accessor_token1] = ACTIONS(7200), + [anon_sym_COMMA] = ACTIONS(7202), + [aux_sym_const_declaration_token1] = ACTIONS(7200), + [anon_sym_LPAREN] = ACTIONS(7202), + [aux_sym_as_type_clause_token1] = ACTIONS(10128), + [aux_sym_as_type_clause_token2] = ACTIONS(7200), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7200), + [aux_sym_visibility_token1] = ACTIONS(7200), + [aux_sym_visibility_token2] = ACTIONS(7200), + [aux_sym_elseif_fragment_token1] = ACTIONS(7200), + [aux_sym_else_fragment_token1] = ACTIONS(7200), + [aux_sym_select_statement_token1] = ACTIONS(7200), + [aux_sym__for_header_token1] = ACTIONS(7200), + [aux_sym_do_statement_token1] = ACTIONS(7200), + [aux_sym_do_condition_token1] = ACTIONS(7200), + [aux_sym_with_statement_token1] = ACTIONS(7200), + [aux_sym_exit_statement_token1] = ACTIONS(7200), + [sym_end_statement] = ACTIONS(7202), + [aux_sym_on_goto_statement_token1] = ACTIONS(7200), + [aux_sym_on_goto_statement_token2] = ACTIONS(7200), + [aux_sym_on_error_statement_token2] = ACTIONS(7200), + [sym__ambiguous_redim_statement] = ACTIONS(7202), + [aux_sym_erase_statement_token1] = ACTIONS(7200), + [aux_sym_open_statement_token1] = ACTIONS(7200), + [aux_sym_file_mode_token2] = ACTIONS(7200), + [aux_sym_file_access_token2] = ACTIONS(7200), + [aux_sym_file_lock_token2] = ACTIONS(7200), + [aux_sym_print_statement_token1] = ACTIONS(7200), + [anon_sym_PLUS] = ACTIONS(7202), + [anon_sym_DASH] = ACTIONS(7200), + [anon_sym_QMARK] = ACTIONS(7202), + [aux_sym_close_statement_token1] = ACTIONS(7200), + [aux_sym_put_statement_token1] = ACTIONS(7200), + [aux_sym_unlock_statement_token1] = ACTIONS(7200), + [aux_sym_seek_statement_token1] = ACTIONS(7200), + [sym_reset_statement] = ACTIONS(7200), + [aux_sym_raise_event_statement_token1] = ACTIONS(7200), + [sym_stop_statement] = ACTIONS(7200), + [sym_beep_statement] = ACTIONS(7200), + [aux_sym_unload_statement_token1] = ACTIONS(7200), + [aux_sym_def_type_statement_token1] = ACTIONS(7200), + [aux_sym_def_type_statement_token2] = ACTIONS(7200), + [aux_sym_def_type_statement_token3] = ACTIONS(7200), + [aux_sym_def_type_statement_token4] = ACTIONS(7200), + [aux_sym_def_type_statement_token5] = ACTIONS(7200), + [aux_sym_def_type_statement_token6] = ACTIONS(7200), + [aux_sym_def_type_statement_token7] = ACTIONS(7200), + [aux_sym_def_type_statement_token8] = ACTIONS(7200), + [aux_sym_def_type_statement_token9] = ACTIONS(7200), + [aux_sym_def_type_statement_token10] = ACTIONS(7200), + [aux_sym_def_type_statement_token11] = ACTIONS(7200), + [aux_sym_def_type_statement_token12] = ACTIONS(7200), + [aux_sym_def_type_statement_token13] = ACTIONS(7200), + [aux_sym_def_type_statement_token14] = ACTIONS(7200), + [aux_sym_call_statement_token1] = ACTIONS(7200), + [sym__ambiguous_call_statement] = ACTIONS(7200), + [aux_sym_addressof_expression_token1] = ACTIONS(7200), + [aux_sym_type_of_expression_token1] = ACTIONS(7200), + [aux_sym_unary_expression_token1] = ACTIONS(7200), + [sym_string_literal] = ACTIONS(7202), + [sym_number_literal] = ACTIONS(7202), + [aux_sym_boolean_literal_token1] = ACTIONS(7200), + [aux_sym_boolean_literal_token2] = ACTIONS(7200), + [sym_nothing_literal] = ACTIONS(7200), + [sym_null_literal] = ACTIONS(7200), + [sym_empty_literal] = ACTIONS(7200), + [sym_date_literal] = ACTIONS(7202), + [anon_sym_POUND] = ACTIONS(7200), + }, + [STATE(4779)] = { + [sym_identifier] = ACTIONS(5869), + [sym_newline] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5869), + [aux_sym_frm_property_statement_token1] = ACTIONS(5869), + [anon_sym_DOT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [aux_sym__attribute_identifier_token1] = ACTIONS(5869), + [aux_sym_option_statement_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5869), + [aux_sym_preprocessor_const_token1] = ACTIONS(5869), + [sym_static_modifier] = ACTIONS(5869), + [sym__dim_keyword] = ACTIONS(5869), + [sym__redim_keyword] = ACTIONS(5869), + [aux_sym_get_accessor_token1] = ACTIONS(5869), + [aux_sym_set_accessor_token1] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5871), + [aux_sym_const_declaration_token1] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5871), + [aux_sym_as_type_clause_token2] = ACTIONS(5869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5869), + [aux_sym_visibility_token1] = ACTIONS(5869), + [aux_sym_visibility_token2] = ACTIONS(5869), + [aux_sym_elseif_fragment_token1] = ACTIONS(5869), + [aux_sym_else_fragment_token1] = ACTIONS(5869), + [aux_sym_select_statement_token1] = ACTIONS(5869), + [aux_sym__for_header_token1] = ACTIONS(5869), + [aux_sym_do_statement_token1] = ACTIONS(5869), + [aux_sym_do_condition_token1] = ACTIONS(5869), + [aux_sym_with_statement_token1] = ACTIONS(5869), + [aux_sym_exit_statement_token1] = ACTIONS(5869), + [sym_end_statement] = ACTIONS(5871), + [aux_sym_on_goto_statement_token1] = ACTIONS(5869), + [aux_sym_on_goto_statement_token2] = ACTIONS(5869), + [aux_sym_on_error_statement_token2] = ACTIONS(5869), + [sym__ambiguous_redim_statement] = ACTIONS(5871), + [aux_sym_erase_statement_token1] = ACTIONS(5869), + [aux_sym_open_statement_token1] = ACTIONS(5869), + [aux_sym_file_mode_token2] = ACTIONS(5869), + [aux_sym_file_access_token2] = ACTIONS(5869), + [aux_sym_file_lock_token2] = ACTIONS(5869), + [aux_sym_print_statement_token1] = ACTIONS(5869), + [anon_sym_PLUS] = ACTIONS(5871), + [anon_sym_DASH] = ACTIONS(5869), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10136), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10138), + [anon_sym_SEMI] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [aux_sym_close_statement_token1] = ACTIONS(5869), + [aux_sym_put_statement_token1] = ACTIONS(5869), + [aux_sym_unlock_statement_token1] = ACTIONS(5869), + [aux_sym_seek_statement_token1] = ACTIONS(5869), + [sym_reset_statement] = ACTIONS(5869), + [aux_sym_raise_event_statement_token1] = ACTIONS(5869), + [sym_stop_statement] = ACTIONS(5869), + [sym_beep_statement] = ACTIONS(5869), + [aux_sym_unload_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token2] = ACTIONS(5869), + [aux_sym_def_type_statement_token3] = ACTIONS(5869), + [aux_sym_def_type_statement_token4] = ACTIONS(5869), + [aux_sym_def_type_statement_token5] = ACTIONS(5869), + [aux_sym_def_type_statement_token6] = ACTIONS(5869), + [aux_sym_def_type_statement_token7] = ACTIONS(5869), + [aux_sym_def_type_statement_token8] = ACTIONS(5869), + [aux_sym_def_type_statement_token9] = ACTIONS(5869), + [aux_sym_def_type_statement_token10] = ACTIONS(5869), + [aux_sym_def_type_statement_token11] = ACTIONS(5869), + [aux_sym_def_type_statement_token12] = ACTIONS(5869), + [aux_sym_def_type_statement_token13] = ACTIONS(5869), + [aux_sym_def_type_statement_token14] = ACTIONS(5869), + [aux_sym_call_statement_token1] = ACTIONS(5869), + [sym__ambiguous_call_statement] = ACTIONS(5869), + [aux_sym_addressof_expression_token1] = ACTIONS(5869), + [aux_sym_type_of_expression_token1] = ACTIONS(5869), + [aux_sym_unary_expression_token1] = ACTIONS(5869), + [sym_string_literal] = ACTIONS(5871), + [sym_number_literal] = ACTIONS(5871), + [aux_sym_boolean_literal_token1] = ACTIONS(5869), + [aux_sym_boolean_literal_token2] = ACTIONS(5869), + [sym_nothing_literal] = ACTIONS(5869), + [sym_null_literal] = ACTIONS(5869), + [sym_empty_literal] = ACTIONS(5869), + [sym_date_literal] = ACTIONS(5871), + [anon_sym_POUND] = ACTIONS(5869), + }, + [STATE(4780)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4780), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(10211), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_statement_token2] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(4781)] = { + [sym_identifier] = ACTIONS(7234), + [sym_newline] = ACTIONS(7236), + [anon_sym_COLON] = ACTIONS(7236), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7234), + [aux_sym_frm_property_statement_token1] = ACTIONS(7234), + [anon_sym_DOT] = ACTIONS(7234), + [anon_sym_BANG] = ACTIONS(7236), + [aux_sym__attribute_identifier_token1] = ACTIONS(7234), + [aux_sym_option_statement_token3] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7234), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7234), + [aux_sym_preprocessor_const_token1] = ACTIONS(7234), + [sym_static_modifier] = ACTIONS(7234), + [sym__dim_keyword] = ACTIONS(7234), + [sym__redim_keyword] = ACTIONS(7234), + [aux_sym_get_accessor_token1] = ACTIONS(7234), + [aux_sym_set_accessor_token1] = ACTIONS(7234), + [aux_sym_const_declaration_token1] = ACTIONS(7234), + [anon_sym_LPAREN] = ACTIONS(7236), + [aux_sym_as_type_clause_token2] = ACTIONS(7234), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7234), + [aux_sym_visibility_token1] = ACTIONS(7234), + [aux_sym_visibility_token2] = ACTIONS(7234), + [aux_sym_elseif_fragment_token1] = ACTIONS(7234), + [aux_sym_else_fragment_token1] = ACTIONS(7234), + [aux_sym_select_statement_token1] = ACTIONS(7234), + [aux_sym__for_header_token1] = ACTIONS(7234), + [aux_sym_do_statement_token1] = ACTIONS(7234), + [aux_sym_do_condition_token1] = ACTIONS(7234), + [aux_sym_with_statement_token1] = ACTIONS(7234), + [aux_sym_exit_statement_token1] = ACTIONS(7234), + [sym_end_statement] = ACTIONS(7236), + [aux_sym_on_goto_statement_token1] = ACTIONS(7234), + [aux_sym_on_goto_statement_token2] = ACTIONS(7234), + [aux_sym_on_error_statement_token2] = ACTIONS(7234), + [sym__ambiguous_redim_statement] = ACTIONS(7236), + [aux_sym_erase_statement_token1] = ACTIONS(7234), + [aux_sym_open_statement_token1] = ACTIONS(7234), + [aux_sym_file_mode_token2] = ACTIONS(7234), + [aux_sym_file_access_token2] = ACTIONS(7234), + [aux_sym_file_lock_token2] = ACTIONS(7234), + [aux_sym_print_statement_token1] = ACTIONS(7234), + [anon_sym_PLUS] = ACTIONS(7236), + [anon_sym_DASH] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7234), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7234), + [anon_sym_QMARK] = ACTIONS(7236), + [aux_sym_close_statement_token1] = ACTIONS(7234), + [aux_sym_put_statement_token1] = ACTIONS(7234), + [aux_sym_unlock_statement_token1] = ACTIONS(7234), + [aux_sym_seek_statement_token1] = ACTIONS(7234), + [sym_reset_statement] = ACTIONS(7234), + [aux_sym_raise_event_statement_token1] = ACTIONS(7234), + [sym_stop_statement] = ACTIONS(7234), + [sym_beep_statement] = ACTIONS(7234), + [aux_sym_unload_statement_token1] = ACTIONS(7234), + [aux_sym_def_type_statement_token1] = ACTIONS(7234), + [aux_sym_def_type_statement_token2] = ACTIONS(7234), + [aux_sym_def_type_statement_token3] = ACTIONS(7234), + [aux_sym_def_type_statement_token4] = ACTIONS(7234), + [aux_sym_def_type_statement_token5] = ACTIONS(7234), + [aux_sym_def_type_statement_token6] = ACTIONS(7234), + [aux_sym_def_type_statement_token7] = ACTIONS(7234), + [aux_sym_def_type_statement_token8] = ACTIONS(7234), + [aux_sym_def_type_statement_token9] = ACTIONS(7234), + [aux_sym_def_type_statement_token10] = ACTIONS(7234), + [aux_sym_def_type_statement_token11] = ACTIONS(7234), + [aux_sym_def_type_statement_token12] = ACTIONS(7234), + [aux_sym_def_type_statement_token13] = ACTIONS(7234), + [aux_sym_def_type_statement_token14] = ACTIONS(7234), + [aux_sym_call_statement_token1] = ACTIONS(7234), + [sym__ambiguous_call_statement] = ACTIONS(7234), + [aux_sym_addressof_expression_token1] = ACTIONS(7234), + [aux_sym_type_of_expression_token1] = ACTIONS(7234), + [aux_sym_unary_expression_token1] = ACTIONS(7234), + [sym_string_literal] = ACTIONS(7236), + [sym_number_literal] = ACTIONS(7236), + [aux_sym_boolean_literal_token1] = ACTIONS(7234), + [aux_sym_boolean_literal_token2] = ACTIONS(7234), + [sym_nothing_literal] = ACTIONS(7234), + [sym_null_literal] = ACTIONS(7234), + [sym_empty_literal] = ACTIONS(7234), + [sym_date_literal] = ACTIONS(7236), + [anon_sym_POUND] = ACTIONS(7234), + }, + [STATE(4782)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4783)] = { + [sym_identifier] = ACTIONS(5562), + [sym_newline] = ACTIONS(5558), + [anon_sym_COLON] = ACTIONS(5558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5562), + [aux_sym_frm_property_statement_token1] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(10096), + [anon_sym_BANG] = ACTIONS(10098), + [aux_sym__attribute_identifier_token1] = ACTIONS(5562), + [aux_sym_option_statement_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5562), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5562), + [aux_sym_preprocessor_const_token1] = ACTIONS(5562), + [sym_static_modifier] = ACTIONS(5562), + [sym__dim_keyword] = ACTIONS(5562), + [sym__redim_keyword] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5562), + [aux_sym_set_accessor_token1] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5558), + [aux_sym_as_type_clause_token2] = ACTIONS(5562), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5562), + [aux_sym_visibility_token1] = ACTIONS(5562), + [aux_sym_visibility_token2] = ACTIONS(5562), + [aux_sym_elseif_fragment_token1] = ACTIONS(5562), + [aux_sym_else_fragment_token1] = ACTIONS(5562), + [aux_sym_select_statement_token1] = ACTIONS(5562), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5562), + [aux_sym__for_header_token1] = ACTIONS(5562), + [aux_sym_do_statement_token1] = ACTIONS(5562), + [aux_sym_do_condition_token1] = ACTIONS(5562), + [aux_sym_with_statement_token1] = ACTIONS(5562), + [aux_sym_exit_statement_token1] = ACTIONS(5562), + [sym_end_statement] = ACTIONS(5558), + [aux_sym_on_goto_statement_token1] = ACTIONS(5562), + [aux_sym_on_goto_statement_token2] = ACTIONS(5562), + [aux_sym_on_error_statement_token2] = ACTIONS(5562), + [sym__ambiguous_redim_statement] = ACTIONS(5558), + [aux_sym_erase_statement_token1] = ACTIONS(5562), + [aux_sym_open_statement_token1] = ACTIONS(5562), + [aux_sym_file_mode_token2] = ACTIONS(5562), + [aux_sym_file_access_token2] = ACTIONS(5562), + [aux_sym_file_lock_token2] = ACTIONS(5562), + [aux_sym_print_statement_token1] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5558), + [aux_sym_close_statement_token1] = ACTIONS(5562), + [aux_sym_put_statement_token1] = ACTIONS(5562), + [aux_sym_unlock_statement_token1] = ACTIONS(5562), + [aux_sym_seek_statement_token1] = ACTIONS(5562), + [sym_reset_statement] = ACTIONS(5562), + [aux_sym_raise_event_statement_token1] = ACTIONS(5562), + [sym_stop_statement] = ACTIONS(5562), + [sym_beep_statement] = ACTIONS(5562), + [aux_sym_unload_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token2] = ACTIONS(5562), + [aux_sym_def_type_statement_token3] = ACTIONS(5562), + [aux_sym_def_type_statement_token4] = ACTIONS(5562), + [aux_sym_def_type_statement_token5] = ACTIONS(5562), + [aux_sym_def_type_statement_token6] = ACTIONS(5562), + [aux_sym_def_type_statement_token7] = ACTIONS(5562), + [aux_sym_def_type_statement_token8] = ACTIONS(5562), + [aux_sym_def_type_statement_token9] = ACTIONS(5562), + [aux_sym_def_type_statement_token10] = ACTIONS(5562), + [aux_sym_def_type_statement_token11] = ACTIONS(5562), + [aux_sym_def_type_statement_token12] = ACTIONS(5562), + [aux_sym_def_type_statement_token13] = ACTIONS(5562), + [aux_sym_def_type_statement_token14] = ACTIONS(5562), + [aux_sym_call_statement_token1] = ACTIONS(5562), + [sym__ambiguous_call_statement] = ACTIONS(5562), + [aux_sym_addressof_expression_token1] = ACTIONS(5562), + [aux_sym_type_of_expression_token1] = ACTIONS(5562), + [aux_sym_unary_expression_token1] = ACTIONS(5562), + [sym_string_literal] = ACTIONS(5558), + [sym_number_literal] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5562), + [aux_sym_boolean_literal_token2] = ACTIONS(5562), + [sym_nothing_literal] = ACTIONS(5562), + [sym_null_literal] = ACTIONS(5562), + [sym_empty_literal] = ACTIONS(5562), + [sym_date_literal] = ACTIONS(5558), + [anon_sym_POUND] = ACTIONS(5562), + }, + [STATE(4784)] = { + [aux_sym_def_type_statement_repeat1] = STATE(4785), + [sym_identifier] = ACTIONS(8577), + [sym_newline] = ACTIONS(8579), + [anon_sym_COLON] = ACTIONS(8579), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8577), + [aux_sym_frm_property_statement_token1] = ACTIONS(8577), + [anon_sym_DOT] = ACTIONS(8577), + [anon_sym_BANG] = ACTIONS(8579), + [aux_sym__attribute_identifier_token1] = ACTIONS(8577), + [aux_sym_option_statement_token3] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8577), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8577), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8577), + [aux_sym_preprocessor_const_token1] = ACTIONS(8577), + [sym_static_modifier] = ACTIONS(8577), + [sym__dim_keyword] = ACTIONS(8577), + [sym__redim_keyword] = ACTIONS(8577), + [aux_sym_get_accessor_token1] = ACTIONS(8577), + [aux_sym_set_accessor_token1] = ACTIONS(8577), + [anon_sym_COMMA] = ACTIONS(10214), + [aux_sym_const_declaration_token1] = ACTIONS(8577), + [anon_sym_LPAREN] = ACTIONS(8579), + [aux_sym_as_type_clause_token2] = ACTIONS(8577), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8577), + [aux_sym_visibility_token1] = ACTIONS(8577), + [aux_sym_visibility_token2] = ACTIONS(8577), + [aux_sym_elseif_fragment_token1] = ACTIONS(8577), + [aux_sym_else_fragment_token1] = ACTIONS(8577), + [aux_sym_select_statement_token1] = ACTIONS(8577), + [aux_sym__for_header_token1] = ACTIONS(8577), + [aux_sym_do_statement_token1] = ACTIONS(8577), + [aux_sym_do_condition_token1] = ACTIONS(8577), + [aux_sym_with_statement_token1] = ACTIONS(8577), + [aux_sym_exit_statement_token1] = ACTIONS(8577), + [sym_end_statement] = ACTIONS(8579), + [aux_sym_on_goto_statement_token1] = ACTIONS(8577), + [aux_sym_on_goto_statement_token2] = ACTIONS(8577), + [aux_sym_on_error_statement_token2] = ACTIONS(8577), + [sym__ambiguous_redim_statement] = ACTIONS(8579), + [aux_sym_erase_statement_token1] = ACTIONS(8577), + [aux_sym_open_statement_token1] = ACTIONS(8577), + [aux_sym_file_mode_token2] = ACTIONS(8577), + [aux_sym_file_access_token2] = ACTIONS(8577), + [aux_sym_file_lock_token2] = ACTIONS(8577), + [aux_sym_print_statement_token1] = ACTIONS(8577), + [anon_sym_PLUS] = ACTIONS(8579), + [anon_sym_DASH] = ACTIONS(8577), + [anon_sym_QMARK] = ACTIONS(8579), + [aux_sym_close_statement_token1] = ACTIONS(8577), + [aux_sym_put_statement_token1] = ACTIONS(8577), + [aux_sym_unlock_statement_token1] = ACTIONS(8577), + [aux_sym_seek_statement_token1] = ACTIONS(8577), + [sym_reset_statement] = ACTIONS(8577), + [aux_sym_raise_event_statement_token1] = ACTIONS(8577), + [sym_stop_statement] = ACTIONS(8577), + [sym_beep_statement] = ACTIONS(8577), + [aux_sym_unload_statement_token1] = ACTIONS(8577), + [aux_sym_def_type_statement_token1] = ACTIONS(8577), + [aux_sym_def_type_statement_token2] = ACTIONS(8577), + [aux_sym_def_type_statement_token3] = ACTIONS(8577), + [aux_sym_def_type_statement_token4] = ACTIONS(8577), + [aux_sym_def_type_statement_token5] = ACTIONS(8577), + [aux_sym_def_type_statement_token6] = ACTIONS(8577), + [aux_sym_def_type_statement_token7] = ACTIONS(8577), + [aux_sym_def_type_statement_token8] = ACTIONS(8577), + [aux_sym_def_type_statement_token9] = ACTIONS(8577), + [aux_sym_def_type_statement_token10] = ACTIONS(8577), + [aux_sym_def_type_statement_token11] = ACTIONS(8577), + [aux_sym_def_type_statement_token12] = ACTIONS(8577), + [aux_sym_def_type_statement_token13] = ACTIONS(8577), + [aux_sym_def_type_statement_token14] = ACTIONS(8577), + [aux_sym_call_statement_token1] = ACTIONS(8577), + [sym__ambiguous_call_statement] = ACTIONS(8577), + [aux_sym_addressof_expression_token1] = ACTIONS(8577), + [aux_sym_type_of_expression_token1] = ACTIONS(8577), + [aux_sym_unary_expression_token1] = ACTIONS(8577), + [sym_string_literal] = ACTIONS(8579), + [sym_number_literal] = ACTIONS(8579), + [aux_sym_boolean_literal_token1] = ACTIONS(8577), + [aux_sym_boolean_literal_token2] = ACTIONS(8577), + [sym_nothing_literal] = ACTIONS(8577), + [sym_null_literal] = ACTIONS(8577), + [sym_empty_literal] = ACTIONS(8577), + [sym_date_literal] = ACTIONS(8579), + [anon_sym_POUND] = ACTIONS(8577), + }, + [STATE(4785)] = { + [aux_sym_def_type_statement_repeat1] = STATE(4787), + [sym_identifier] = ACTIONS(8603), + [sym_newline] = ACTIONS(8605), + [anon_sym_COLON] = ACTIONS(8605), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8603), + [aux_sym_frm_property_statement_token1] = ACTIONS(8603), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_BANG] = ACTIONS(8605), + [aux_sym__attribute_identifier_token1] = ACTIONS(8603), + [aux_sym_option_statement_token3] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8603), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8603), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8603), + [aux_sym_preprocessor_const_token1] = ACTIONS(8603), + [sym_static_modifier] = ACTIONS(8603), + [sym__dim_keyword] = ACTIONS(8603), + [sym__redim_keyword] = ACTIONS(8603), + [aux_sym_get_accessor_token1] = ACTIONS(8603), + [aux_sym_set_accessor_token1] = ACTIONS(8603), + [anon_sym_COMMA] = ACTIONS(10214), + [aux_sym_const_declaration_token1] = ACTIONS(8603), + [anon_sym_LPAREN] = ACTIONS(8605), + [aux_sym_as_type_clause_token2] = ACTIONS(8603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8603), + [aux_sym_visibility_token1] = ACTIONS(8603), + [aux_sym_visibility_token2] = ACTIONS(8603), + [aux_sym_elseif_fragment_token1] = ACTIONS(8603), + [aux_sym_else_fragment_token1] = ACTIONS(8603), + [aux_sym_select_statement_token1] = ACTIONS(8603), + [aux_sym__for_header_token1] = ACTIONS(8603), + [aux_sym_do_statement_token1] = ACTIONS(8603), + [aux_sym_do_condition_token1] = ACTIONS(8603), + [aux_sym_with_statement_token1] = ACTIONS(8603), + [aux_sym_exit_statement_token1] = ACTIONS(8603), + [sym_end_statement] = ACTIONS(8605), + [aux_sym_on_goto_statement_token1] = ACTIONS(8603), + [aux_sym_on_goto_statement_token2] = ACTIONS(8603), + [aux_sym_on_error_statement_token2] = ACTIONS(8603), + [sym__ambiguous_redim_statement] = ACTIONS(8605), + [aux_sym_erase_statement_token1] = ACTIONS(8603), + [aux_sym_open_statement_token1] = ACTIONS(8603), + [aux_sym_file_mode_token2] = ACTIONS(8603), + [aux_sym_file_access_token2] = ACTIONS(8603), + [aux_sym_file_lock_token2] = ACTIONS(8603), + [aux_sym_print_statement_token1] = ACTIONS(8603), + [anon_sym_PLUS] = ACTIONS(8605), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_QMARK] = ACTIONS(8605), + [aux_sym_close_statement_token1] = ACTIONS(8603), + [aux_sym_put_statement_token1] = ACTIONS(8603), + [aux_sym_unlock_statement_token1] = ACTIONS(8603), + [aux_sym_seek_statement_token1] = ACTIONS(8603), + [sym_reset_statement] = ACTIONS(8603), + [aux_sym_raise_event_statement_token1] = ACTIONS(8603), + [sym_stop_statement] = ACTIONS(8603), + [sym_beep_statement] = ACTIONS(8603), + [aux_sym_unload_statement_token1] = ACTIONS(8603), + [aux_sym_def_type_statement_token1] = ACTIONS(8603), + [aux_sym_def_type_statement_token2] = ACTIONS(8603), + [aux_sym_def_type_statement_token3] = ACTIONS(8603), + [aux_sym_def_type_statement_token4] = ACTIONS(8603), + [aux_sym_def_type_statement_token5] = ACTIONS(8603), + [aux_sym_def_type_statement_token6] = ACTIONS(8603), + [aux_sym_def_type_statement_token7] = ACTIONS(8603), + [aux_sym_def_type_statement_token8] = ACTIONS(8603), + [aux_sym_def_type_statement_token9] = ACTIONS(8603), + [aux_sym_def_type_statement_token10] = ACTIONS(8603), + [aux_sym_def_type_statement_token11] = ACTIONS(8603), + [aux_sym_def_type_statement_token12] = ACTIONS(8603), + [aux_sym_def_type_statement_token13] = ACTIONS(8603), + [aux_sym_def_type_statement_token14] = ACTIONS(8603), + [aux_sym_call_statement_token1] = ACTIONS(8603), + [sym__ambiguous_call_statement] = ACTIONS(8603), + [aux_sym_addressof_expression_token1] = ACTIONS(8603), + [aux_sym_type_of_expression_token1] = ACTIONS(8603), + [aux_sym_unary_expression_token1] = ACTIONS(8603), + [sym_string_literal] = ACTIONS(8605), + [sym_number_literal] = ACTIONS(8605), + [aux_sym_boolean_literal_token1] = ACTIONS(8603), + [aux_sym_boolean_literal_token2] = ACTIONS(8603), + [sym_nothing_literal] = ACTIONS(8603), + [sym_null_literal] = ACTIONS(8603), + [sym_empty_literal] = ACTIONS(8603), + [sym_date_literal] = ACTIONS(8605), + [anon_sym_POUND] = ACTIONS(8603), + }, + [STATE(4786)] = { + [sym__required_file_number] = STATE(4921), + [sym_file_number_literal] = STATE(4919), + [sym_identifier] = ACTIONS(8312), + [sym_newline] = ACTIONS(8314), + [anon_sym_COLON] = ACTIONS(8314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8312), + [aux_sym_frm_property_statement_token1] = ACTIONS(8312), + [anon_sym_DOT] = ACTIONS(8312), + [anon_sym_BANG] = ACTIONS(8314), + [aux_sym__attribute_identifier_token1] = ACTIONS(8312), + [aux_sym_option_statement_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8312), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8312), + [aux_sym_preprocessor_const_token1] = ACTIONS(8312), + [sym_static_modifier] = ACTIONS(8312), + [sym__dim_keyword] = ACTIONS(8312), + [sym__redim_keyword] = ACTIONS(8312), + [aux_sym_get_accessor_token1] = ACTIONS(8312), + [aux_sym_set_accessor_token1] = ACTIONS(8312), + [aux_sym_const_declaration_token1] = ACTIONS(8312), + [anon_sym_LPAREN] = ACTIONS(8314), + [aux_sym_as_type_clause_token2] = ACTIONS(8312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8312), + [aux_sym_visibility_token1] = ACTIONS(8312), + [aux_sym_visibility_token2] = ACTIONS(8312), + [aux_sym_elseif_fragment_token1] = ACTIONS(8312), + [aux_sym_else_fragment_token1] = ACTIONS(8312), + [aux_sym_select_statement_token1] = ACTIONS(8312), + [aux_sym__for_header_token1] = ACTIONS(8312), + [aux_sym_do_statement_token1] = ACTIONS(8312), + [aux_sym_do_condition_token1] = ACTIONS(8312), + [aux_sym_with_statement_token1] = ACTIONS(8312), + [aux_sym_exit_statement_token1] = ACTIONS(8312), + [sym_end_statement] = ACTIONS(8314), + [aux_sym_on_goto_statement_token1] = ACTIONS(8312), + [aux_sym_on_goto_statement_token2] = ACTIONS(8312), + [aux_sym_on_error_statement_token2] = ACTIONS(8312), + [sym__ambiguous_redim_statement] = ACTIONS(8314), + [aux_sym_erase_statement_token1] = ACTIONS(8312), + [aux_sym_open_statement_token1] = ACTIONS(8312), + [aux_sym_file_mode_token2] = ACTIONS(8312), + [aux_sym_file_access_token2] = ACTIONS(8312), + [aux_sym_file_lock_token2] = ACTIONS(8312), + [aux_sym_print_statement_token1] = ACTIONS(8312), + [anon_sym_PLUS] = ACTIONS(8314), + [anon_sym_DASH] = ACTIONS(8312), + [anon_sym_QMARK] = ACTIONS(8314), + [aux_sym_close_statement_token1] = ACTIONS(8312), + [aux_sym_put_statement_token1] = ACTIONS(8312), + [aux_sym_unlock_statement_token1] = ACTIONS(8312), + [aux_sym_seek_statement_token1] = ACTIONS(8312), + [sym_reset_statement] = ACTIONS(8312), + [aux_sym_raise_event_statement_token1] = ACTIONS(8312), + [sym_stop_statement] = ACTIONS(8312), + [sym_beep_statement] = ACTIONS(8312), + [aux_sym_unload_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token2] = ACTIONS(8312), + [aux_sym_def_type_statement_token3] = ACTIONS(8312), + [aux_sym_def_type_statement_token4] = ACTIONS(8312), + [aux_sym_def_type_statement_token5] = ACTIONS(8312), + [aux_sym_def_type_statement_token6] = ACTIONS(8312), + [aux_sym_def_type_statement_token7] = ACTIONS(8312), + [aux_sym_def_type_statement_token8] = ACTIONS(8312), + [aux_sym_def_type_statement_token9] = ACTIONS(8312), + [aux_sym_def_type_statement_token10] = ACTIONS(8312), + [aux_sym_def_type_statement_token11] = ACTIONS(8312), + [aux_sym_def_type_statement_token12] = ACTIONS(8312), + [aux_sym_def_type_statement_token13] = ACTIONS(8312), + [aux_sym_def_type_statement_token14] = ACTIONS(8312), + [aux_sym_call_statement_token1] = ACTIONS(8312), + [sym__ambiguous_call_statement] = ACTIONS(8312), + [aux_sym_addressof_expression_token1] = ACTIONS(8312), + [aux_sym_type_of_expression_token1] = ACTIONS(8312), + [aux_sym_unary_expression_token1] = ACTIONS(8312), + [sym_string_literal] = ACTIONS(8314), + [sym_number_literal] = ACTIONS(8314), + [aux_sym_boolean_literal_token1] = ACTIONS(8312), + [aux_sym_boolean_literal_token2] = ACTIONS(8312), + [sym_nothing_literal] = ACTIONS(8312), + [sym_null_literal] = ACTIONS(8312), + [sym_empty_literal] = ACTIONS(8312), + [sym_date_literal] = ACTIONS(8314), + [anon_sym_POUND] = ACTIONS(1171), + }, + [STATE(4787)] = { + [aux_sym_def_type_statement_repeat1] = STATE(4787), + [sym_identifier] = ACTIONS(8357), + [sym_newline] = ACTIONS(8359), + [anon_sym_COLON] = ACTIONS(8359), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8357), + [aux_sym_frm_property_statement_token1] = ACTIONS(8357), + [anon_sym_DOT] = ACTIONS(8357), + [anon_sym_BANG] = ACTIONS(8359), + [aux_sym__attribute_identifier_token1] = ACTIONS(8357), + [aux_sym_option_statement_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8357), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8357), + [aux_sym_preprocessor_const_token1] = ACTIONS(8357), + [sym_static_modifier] = ACTIONS(8357), + [sym__dim_keyword] = ACTIONS(8357), + [sym__redim_keyword] = ACTIONS(8357), + [aux_sym_get_accessor_token1] = ACTIONS(8357), + [aux_sym_set_accessor_token1] = ACTIONS(8357), + [anon_sym_COMMA] = ACTIONS(10216), + [aux_sym_const_declaration_token1] = ACTIONS(8357), + [anon_sym_LPAREN] = ACTIONS(8359), + [aux_sym_as_type_clause_token2] = ACTIONS(8357), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8357), + [aux_sym_visibility_token1] = ACTIONS(8357), + [aux_sym_visibility_token2] = ACTIONS(8357), + [aux_sym_elseif_fragment_token1] = ACTIONS(8357), + [aux_sym_else_fragment_token1] = ACTIONS(8357), + [aux_sym_select_statement_token1] = ACTIONS(8357), + [aux_sym__for_header_token1] = ACTIONS(8357), + [aux_sym_do_statement_token1] = ACTIONS(8357), + [aux_sym_do_condition_token1] = ACTIONS(8357), + [aux_sym_with_statement_token1] = ACTIONS(8357), + [aux_sym_exit_statement_token1] = ACTIONS(8357), + [sym_end_statement] = ACTIONS(8359), + [aux_sym_on_goto_statement_token1] = ACTIONS(8357), + [aux_sym_on_goto_statement_token2] = ACTIONS(8357), + [aux_sym_on_error_statement_token2] = ACTIONS(8357), + [sym__ambiguous_redim_statement] = ACTIONS(8359), + [aux_sym_erase_statement_token1] = ACTIONS(8357), + [aux_sym_open_statement_token1] = ACTIONS(8357), + [aux_sym_file_mode_token2] = ACTIONS(8357), + [aux_sym_file_access_token2] = ACTIONS(8357), + [aux_sym_file_lock_token2] = ACTIONS(8357), + [aux_sym_print_statement_token1] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_QMARK] = ACTIONS(8359), + [aux_sym_close_statement_token1] = ACTIONS(8357), + [aux_sym_put_statement_token1] = ACTIONS(8357), + [aux_sym_unlock_statement_token1] = ACTIONS(8357), + [aux_sym_seek_statement_token1] = ACTIONS(8357), + [sym_reset_statement] = ACTIONS(8357), + [aux_sym_raise_event_statement_token1] = ACTIONS(8357), + [sym_stop_statement] = ACTIONS(8357), + [sym_beep_statement] = ACTIONS(8357), + [aux_sym_unload_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token2] = ACTIONS(8357), + [aux_sym_def_type_statement_token3] = ACTIONS(8357), + [aux_sym_def_type_statement_token4] = ACTIONS(8357), + [aux_sym_def_type_statement_token5] = ACTIONS(8357), + [aux_sym_def_type_statement_token6] = ACTIONS(8357), + [aux_sym_def_type_statement_token7] = ACTIONS(8357), + [aux_sym_def_type_statement_token8] = ACTIONS(8357), + [aux_sym_def_type_statement_token9] = ACTIONS(8357), + [aux_sym_def_type_statement_token10] = ACTIONS(8357), + [aux_sym_def_type_statement_token11] = ACTIONS(8357), + [aux_sym_def_type_statement_token12] = ACTIONS(8357), + [aux_sym_def_type_statement_token13] = ACTIONS(8357), + [aux_sym_def_type_statement_token14] = ACTIONS(8357), + [aux_sym_call_statement_token1] = ACTIONS(8357), + [sym__ambiguous_call_statement] = ACTIONS(8357), + [aux_sym_addressof_expression_token1] = ACTIONS(8357), + [aux_sym_type_of_expression_token1] = ACTIONS(8357), + [aux_sym_unary_expression_token1] = ACTIONS(8357), + [sym_string_literal] = ACTIONS(8359), + [sym_number_literal] = ACTIONS(8359), + [aux_sym_boolean_literal_token1] = ACTIONS(8357), + [aux_sym_boolean_literal_token2] = ACTIONS(8357), + [sym_nothing_literal] = ACTIONS(8357), + [sym_null_literal] = ACTIONS(8357), + [sym_empty_literal] = ACTIONS(8357), + [sym_date_literal] = ACTIONS(8359), + [anon_sym_POUND] = ACTIONS(8357), + }, + [STATE(4788)] = { + [sym_argument_list] = STATE(5035), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7836), + [anon_sym_BANG] = ACTIONS(4034), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10219), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(4789)] = { + [aux_sym_redim_statement_repeat1] = STATE(4799), + [sym_identifier] = ACTIONS(8368), + [sym_newline] = ACTIONS(8370), + [anon_sym_COLON] = ACTIONS(8370), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8368), + [aux_sym_frm_property_statement_token1] = ACTIONS(8368), + [anon_sym_DOT] = ACTIONS(8368), + [anon_sym_BANG] = ACTIONS(8370), + [aux_sym__attribute_identifier_token1] = ACTIONS(8368), + [aux_sym_option_statement_token3] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8368), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8368), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8368), + [aux_sym_preprocessor_const_token1] = ACTIONS(8368), + [sym_static_modifier] = ACTIONS(8368), + [sym__dim_keyword] = ACTIONS(8368), + [sym__redim_keyword] = ACTIONS(8368), + [aux_sym_get_accessor_token1] = ACTIONS(8368), + [aux_sym_set_accessor_token1] = ACTIONS(8368), + [anon_sym_COMMA] = ACTIONS(10221), + [aux_sym_const_declaration_token1] = ACTIONS(8368), + [anon_sym_LPAREN] = ACTIONS(8370), + [aux_sym_as_type_clause_token2] = ACTIONS(8368), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8368), + [aux_sym_visibility_token1] = ACTIONS(8368), + [aux_sym_visibility_token2] = ACTIONS(8368), + [aux_sym_elseif_fragment_token1] = ACTIONS(8368), + [aux_sym_else_fragment_token1] = ACTIONS(8368), + [aux_sym_select_statement_token1] = ACTIONS(8368), + [aux_sym__for_header_token1] = ACTIONS(8368), + [aux_sym_do_statement_token1] = ACTIONS(8368), + [aux_sym_do_condition_token1] = ACTIONS(8368), + [aux_sym_with_statement_token1] = ACTIONS(8368), + [aux_sym_exit_statement_token1] = ACTIONS(8368), + [sym_end_statement] = ACTIONS(8370), + [aux_sym_on_goto_statement_token1] = ACTIONS(8368), + [aux_sym_on_goto_statement_token2] = ACTIONS(8368), + [aux_sym_on_error_statement_token2] = ACTIONS(8368), + [sym__ambiguous_redim_statement] = ACTIONS(8370), + [aux_sym_erase_statement_token1] = ACTIONS(8368), + [aux_sym_open_statement_token1] = ACTIONS(8368), + [aux_sym_file_mode_token2] = ACTIONS(8368), + [aux_sym_file_access_token2] = ACTIONS(8368), + [aux_sym_file_lock_token2] = ACTIONS(8368), + [aux_sym_print_statement_token1] = ACTIONS(8368), + [anon_sym_PLUS] = ACTIONS(8370), + [anon_sym_DASH] = ACTIONS(8368), + [anon_sym_QMARK] = ACTIONS(8370), + [aux_sym_close_statement_token1] = ACTIONS(8368), + [aux_sym_put_statement_token1] = ACTIONS(8368), + [aux_sym_unlock_statement_token1] = ACTIONS(8368), + [aux_sym_seek_statement_token1] = ACTIONS(8368), + [sym_reset_statement] = ACTIONS(8368), + [aux_sym_raise_event_statement_token1] = ACTIONS(8368), + [sym_stop_statement] = ACTIONS(8368), + [sym_beep_statement] = ACTIONS(8368), + [aux_sym_unload_statement_token1] = ACTIONS(8368), + [aux_sym_def_type_statement_token1] = ACTIONS(8368), + [aux_sym_def_type_statement_token2] = ACTIONS(8368), + [aux_sym_def_type_statement_token3] = ACTIONS(8368), + [aux_sym_def_type_statement_token4] = ACTIONS(8368), + [aux_sym_def_type_statement_token5] = ACTIONS(8368), + [aux_sym_def_type_statement_token6] = ACTIONS(8368), + [aux_sym_def_type_statement_token7] = ACTIONS(8368), + [aux_sym_def_type_statement_token8] = ACTIONS(8368), + [aux_sym_def_type_statement_token9] = ACTIONS(8368), + [aux_sym_def_type_statement_token10] = ACTIONS(8368), + [aux_sym_def_type_statement_token11] = ACTIONS(8368), + [aux_sym_def_type_statement_token12] = ACTIONS(8368), + [aux_sym_def_type_statement_token13] = ACTIONS(8368), + [aux_sym_def_type_statement_token14] = ACTIONS(8368), + [aux_sym_call_statement_token1] = ACTIONS(8368), + [sym__ambiguous_call_statement] = ACTIONS(8368), + [aux_sym_addressof_expression_token1] = ACTIONS(8368), + [aux_sym_type_of_expression_token1] = ACTIONS(8368), + [aux_sym_unary_expression_token1] = ACTIONS(8368), + [sym_string_literal] = ACTIONS(8370), + [sym_number_literal] = ACTIONS(8370), + [aux_sym_boolean_literal_token1] = ACTIONS(8368), + [aux_sym_boolean_literal_token2] = ACTIONS(8368), + [sym_nothing_literal] = ACTIONS(8368), + [sym_null_literal] = ACTIONS(8368), + [sym_empty_literal] = ACTIONS(8368), + [sym_date_literal] = ACTIONS(8370), + [anon_sym_POUND] = ACTIONS(8368), + }, + [STATE(4790)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(4791)] = { + [aux_sym_erase_statement_repeat1] = STATE(4802), + [sym_identifier] = ACTIONS(8397), + [sym_newline] = ACTIONS(8399), + [anon_sym_COLON] = ACTIONS(8399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8397), + [aux_sym_frm_property_statement_token1] = ACTIONS(8397), + [anon_sym_DOT] = ACTIONS(8397), + [anon_sym_BANG] = ACTIONS(8399), + [aux_sym__attribute_identifier_token1] = ACTIONS(8397), + [aux_sym_option_statement_token3] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8397), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8397), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8397), + [aux_sym_preprocessor_const_token1] = ACTIONS(8397), + [sym_static_modifier] = ACTIONS(8397), + [sym__dim_keyword] = ACTIONS(8397), + [sym__redim_keyword] = ACTIONS(8397), + [aux_sym_get_accessor_token1] = ACTIONS(8397), + [aux_sym_set_accessor_token1] = ACTIONS(8397), + [anon_sym_COMMA] = ACTIONS(10223), + [aux_sym_const_declaration_token1] = ACTIONS(8397), + [anon_sym_LPAREN] = ACTIONS(8399), + [aux_sym_as_type_clause_token2] = ACTIONS(8397), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8397), + [aux_sym_visibility_token1] = ACTIONS(8397), + [aux_sym_visibility_token2] = ACTIONS(8397), + [aux_sym_elseif_fragment_token1] = ACTIONS(8397), + [aux_sym_else_fragment_token1] = ACTIONS(8397), + [aux_sym_select_statement_token1] = ACTIONS(8397), + [aux_sym__for_header_token1] = ACTIONS(8397), + [aux_sym_do_statement_token1] = ACTIONS(8397), + [aux_sym_do_condition_token1] = ACTIONS(8397), + [aux_sym_with_statement_token1] = ACTIONS(8397), + [aux_sym_exit_statement_token1] = ACTIONS(8397), + [sym_end_statement] = ACTIONS(8399), + [aux_sym_on_goto_statement_token1] = ACTIONS(8397), + [aux_sym_on_goto_statement_token2] = ACTIONS(8397), + [aux_sym_on_error_statement_token2] = ACTIONS(8397), + [sym__ambiguous_redim_statement] = ACTIONS(8399), + [aux_sym_erase_statement_token1] = ACTIONS(8397), + [aux_sym_open_statement_token1] = ACTIONS(8397), + [aux_sym_file_mode_token2] = ACTIONS(8397), + [aux_sym_file_access_token2] = ACTIONS(8397), + [aux_sym_file_lock_token2] = ACTIONS(8397), + [aux_sym_print_statement_token1] = ACTIONS(8397), + [anon_sym_PLUS] = ACTIONS(8399), + [anon_sym_DASH] = ACTIONS(8397), + [anon_sym_QMARK] = ACTIONS(8399), + [aux_sym_close_statement_token1] = ACTIONS(8397), + [aux_sym_put_statement_token1] = ACTIONS(8397), + [aux_sym_unlock_statement_token1] = ACTIONS(8397), + [aux_sym_seek_statement_token1] = ACTIONS(8397), + [sym_reset_statement] = ACTIONS(8397), + [aux_sym_raise_event_statement_token1] = ACTIONS(8397), + [sym_stop_statement] = ACTIONS(8397), + [sym_beep_statement] = ACTIONS(8397), + [aux_sym_unload_statement_token1] = ACTIONS(8397), + [aux_sym_def_type_statement_token1] = ACTIONS(8397), + [aux_sym_def_type_statement_token2] = ACTIONS(8397), + [aux_sym_def_type_statement_token3] = ACTIONS(8397), + [aux_sym_def_type_statement_token4] = ACTIONS(8397), + [aux_sym_def_type_statement_token5] = ACTIONS(8397), + [aux_sym_def_type_statement_token6] = ACTIONS(8397), + [aux_sym_def_type_statement_token7] = ACTIONS(8397), + [aux_sym_def_type_statement_token8] = ACTIONS(8397), + [aux_sym_def_type_statement_token9] = ACTIONS(8397), + [aux_sym_def_type_statement_token10] = ACTIONS(8397), + [aux_sym_def_type_statement_token11] = ACTIONS(8397), + [aux_sym_def_type_statement_token12] = ACTIONS(8397), + [aux_sym_def_type_statement_token13] = ACTIONS(8397), + [aux_sym_def_type_statement_token14] = ACTIONS(8397), + [aux_sym_call_statement_token1] = ACTIONS(8397), + [sym__ambiguous_call_statement] = ACTIONS(8397), + [aux_sym_addressof_expression_token1] = ACTIONS(8397), + [aux_sym_type_of_expression_token1] = ACTIONS(8397), + [aux_sym_unary_expression_token1] = ACTIONS(8397), + [sym_string_literal] = ACTIONS(8399), + [sym_number_literal] = ACTIONS(8399), + [aux_sym_boolean_literal_token1] = ACTIONS(8397), + [aux_sym_boolean_literal_token2] = ACTIONS(8397), + [sym_nothing_literal] = ACTIONS(8397), + [sym_null_literal] = ACTIONS(8397), + [sym_empty_literal] = ACTIONS(8397), + [sym_date_literal] = ACTIONS(8399), + [anon_sym_POUND] = ACTIONS(8397), + }, + [STATE(4792)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(4793)] = { + [sym_identifier] = ACTIONS(8587), + [sym_newline] = ACTIONS(8589), + [anon_sym_COLON] = ACTIONS(8589), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8587), + [aux_sym_frm_property_statement_token1] = ACTIONS(8587), + [anon_sym_DOT] = ACTIONS(8587), + [anon_sym_BANG] = ACTIONS(8589), + [aux_sym__attribute_identifier_token1] = ACTIONS(8587), + [aux_sym_option_statement_token3] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8587), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8587), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8587), + [aux_sym_preprocessor_const_token1] = ACTIONS(8587), + [sym_static_modifier] = ACTIONS(8587), + [sym__dim_keyword] = ACTIONS(8587), + [sym__redim_keyword] = ACTIONS(8587), + [aux_sym_get_accessor_token1] = ACTIONS(8587), + [aux_sym_set_accessor_token1] = ACTIONS(8587), + [anon_sym_COMMA] = ACTIONS(8589), + [aux_sym_const_declaration_token1] = ACTIONS(8587), + [anon_sym_LPAREN] = ACTIONS(8589), + [aux_sym_as_type_clause_token2] = ACTIONS(8587), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8587), + [aux_sym_visibility_token1] = ACTIONS(8587), + [aux_sym_visibility_token2] = ACTIONS(8587), + [aux_sym_elseif_fragment_token1] = ACTIONS(8587), + [aux_sym_else_fragment_token1] = ACTIONS(8587), + [aux_sym_select_statement_token1] = ACTIONS(8587), + [aux_sym__for_header_token1] = ACTIONS(8587), + [aux_sym_do_statement_token1] = ACTIONS(8587), + [aux_sym_do_condition_token1] = ACTIONS(8587), + [aux_sym_with_statement_token1] = ACTIONS(8587), + [aux_sym_exit_statement_token1] = ACTIONS(8587), + [sym_end_statement] = ACTIONS(8589), + [aux_sym_on_goto_statement_token1] = ACTIONS(8587), + [aux_sym_on_goto_statement_token2] = ACTIONS(8587), + [aux_sym_on_error_statement_token2] = ACTIONS(8587), + [sym__ambiguous_redim_statement] = ACTIONS(8589), + [aux_sym_erase_statement_token1] = ACTIONS(8587), + [aux_sym_open_statement_token1] = ACTIONS(8587), + [aux_sym_file_mode_token2] = ACTIONS(8587), + [aux_sym_file_access_token2] = ACTIONS(8587), + [aux_sym_file_lock_token2] = ACTIONS(8587), + [aux_sym_print_statement_token1] = ACTIONS(8587), + [anon_sym_PLUS] = ACTIONS(8589), + [anon_sym_DASH] = ACTIONS(8587), + [anon_sym_SEMI] = ACTIONS(8589), + [anon_sym_QMARK] = ACTIONS(8589), + [aux_sym_close_statement_token1] = ACTIONS(8587), + [aux_sym_put_statement_token1] = ACTIONS(8587), + [aux_sym_unlock_statement_token1] = ACTIONS(8587), + [aux_sym_seek_statement_token1] = ACTIONS(8587), + [sym_reset_statement] = ACTIONS(8587), + [aux_sym_raise_event_statement_token1] = ACTIONS(8587), + [sym_stop_statement] = ACTIONS(8587), + [sym_beep_statement] = ACTIONS(8587), + [aux_sym_unload_statement_token1] = ACTIONS(8587), + [aux_sym_def_type_statement_token1] = ACTIONS(8587), + [aux_sym_def_type_statement_token2] = ACTIONS(8587), + [aux_sym_def_type_statement_token3] = ACTIONS(8587), + [aux_sym_def_type_statement_token4] = ACTIONS(8587), + [aux_sym_def_type_statement_token5] = ACTIONS(8587), + [aux_sym_def_type_statement_token6] = ACTIONS(8587), + [aux_sym_def_type_statement_token7] = ACTIONS(8587), + [aux_sym_def_type_statement_token8] = ACTIONS(8587), + [aux_sym_def_type_statement_token9] = ACTIONS(8587), + [aux_sym_def_type_statement_token10] = ACTIONS(8587), + [aux_sym_def_type_statement_token11] = ACTIONS(8587), + [aux_sym_def_type_statement_token12] = ACTIONS(8587), + [aux_sym_def_type_statement_token13] = ACTIONS(8587), + [aux_sym_def_type_statement_token14] = ACTIONS(8587), + [aux_sym_call_statement_token1] = ACTIONS(8587), + [sym__ambiguous_call_statement] = ACTIONS(8587), + [aux_sym_addressof_expression_token1] = ACTIONS(8587), + [aux_sym_type_of_expression_token1] = ACTIONS(8587), + [aux_sym_unary_expression_token1] = ACTIONS(8587), + [sym_string_literal] = ACTIONS(8589), + [sym_number_literal] = ACTIONS(8589), + [aux_sym_boolean_literal_token1] = ACTIONS(8587), + [aux_sym_boolean_literal_token2] = ACTIONS(8587), + [sym_nothing_literal] = ACTIONS(8587), + [sym_null_literal] = ACTIONS(8587), + [sym_empty_literal] = ACTIONS(8587), + [sym_date_literal] = ACTIONS(8589), + [anon_sym_POUND] = ACTIONS(8587), + }, + [STATE(4794)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(4795)] = { + [aux_sym_close_statement_repeat1] = STATE(4803), + [sym_identifier] = ACTIONS(8265), + [sym_newline] = ACTIONS(8267), + [anon_sym_COLON] = ACTIONS(8267), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8265), + [aux_sym_frm_property_statement_token1] = ACTIONS(8265), + [anon_sym_DOT] = ACTIONS(8265), + [anon_sym_BANG] = ACTIONS(8267), + [aux_sym__attribute_identifier_token1] = ACTIONS(8265), + [aux_sym_option_statement_token3] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8265), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8265), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8265), + [aux_sym_preprocessor_const_token1] = ACTIONS(8265), + [sym_static_modifier] = ACTIONS(8265), + [sym__dim_keyword] = ACTIONS(8265), + [sym__redim_keyword] = ACTIONS(8265), + [aux_sym_get_accessor_token1] = ACTIONS(8265), + [aux_sym_set_accessor_token1] = ACTIONS(8265), + [anon_sym_COMMA] = ACTIONS(10225), + [aux_sym_const_declaration_token1] = ACTIONS(8265), + [anon_sym_LPAREN] = ACTIONS(8267), + [aux_sym_as_type_clause_token2] = ACTIONS(8265), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8265), + [aux_sym_visibility_token1] = ACTIONS(8265), + [aux_sym_visibility_token2] = ACTIONS(8265), + [aux_sym_elseif_fragment_token1] = ACTIONS(8265), + [aux_sym_else_fragment_token1] = ACTIONS(8265), + [aux_sym_select_statement_token1] = ACTIONS(8265), + [aux_sym__for_header_token1] = ACTIONS(8265), + [aux_sym_do_statement_token1] = ACTIONS(8265), + [aux_sym_do_condition_token1] = ACTIONS(8265), + [aux_sym_with_statement_token1] = ACTIONS(8265), + [aux_sym_exit_statement_token1] = ACTIONS(8265), + [sym_end_statement] = ACTIONS(8267), + [aux_sym_on_goto_statement_token1] = ACTIONS(8265), + [aux_sym_on_goto_statement_token2] = ACTIONS(8265), + [aux_sym_on_error_statement_token2] = ACTIONS(8265), + [sym__ambiguous_redim_statement] = ACTIONS(8267), + [aux_sym_erase_statement_token1] = ACTIONS(8265), + [aux_sym_open_statement_token1] = ACTIONS(8265), + [aux_sym_file_mode_token2] = ACTIONS(8265), + [aux_sym_file_access_token2] = ACTIONS(8265), + [aux_sym_file_lock_token2] = ACTIONS(8265), + [aux_sym_print_statement_token1] = ACTIONS(8265), + [anon_sym_PLUS] = ACTIONS(8267), + [anon_sym_DASH] = ACTIONS(8265), + [anon_sym_QMARK] = ACTIONS(8267), + [aux_sym_close_statement_token1] = ACTIONS(8265), + [aux_sym_put_statement_token1] = ACTIONS(8265), + [aux_sym_unlock_statement_token1] = ACTIONS(8265), + [aux_sym_seek_statement_token1] = ACTIONS(8265), + [sym_reset_statement] = ACTIONS(8265), + [aux_sym_raise_event_statement_token1] = ACTIONS(8265), + [sym_stop_statement] = ACTIONS(8265), + [sym_beep_statement] = ACTIONS(8265), + [aux_sym_unload_statement_token1] = ACTIONS(8265), + [aux_sym_def_type_statement_token1] = ACTIONS(8265), + [aux_sym_def_type_statement_token2] = ACTIONS(8265), + [aux_sym_def_type_statement_token3] = ACTIONS(8265), + [aux_sym_def_type_statement_token4] = ACTIONS(8265), + [aux_sym_def_type_statement_token5] = ACTIONS(8265), + [aux_sym_def_type_statement_token6] = ACTIONS(8265), + [aux_sym_def_type_statement_token7] = ACTIONS(8265), + [aux_sym_def_type_statement_token8] = ACTIONS(8265), + [aux_sym_def_type_statement_token9] = ACTIONS(8265), + [aux_sym_def_type_statement_token10] = ACTIONS(8265), + [aux_sym_def_type_statement_token11] = ACTIONS(8265), + [aux_sym_def_type_statement_token12] = ACTIONS(8265), + [aux_sym_def_type_statement_token13] = ACTIONS(8265), + [aux_sym_def_type_statement_token14] = ACTIONS(8265), + [aux_sym_call_statement_token1] = ACTIONS(8265), + [sym__ambiguous_call_statement] = ACTIONS(8265), + [aux_sym_addressof_expression_token1] = ACTIONS(8265), + [aux_sym_type_of_expression_token1] = ACTIONS(8265), + [aux_sym_unary_expression_token1] = ACTIONS(8265), + [sym_string_literal] = ACTIONS(8267), + [sym_number_literal] = ACTIONS(8267), + [aux_sym_boolean_literal_token1] = ACTIONS(8265), + [aux_sym_boolean_literal_token2] = ACTIONS(8265), + [sym_nothing_literal] = ACTIONS(8265), + [sym_null_literal] = ACTIONS(8265), + [sym_empty_literal] = ACTIONS(8265), + [sym_date_literal] = ACTIONS(8267), + [anon_sym_POUND] = ACTIONS(8265), + }, + [STATE(4796)] = { + [sym_identifier] = ACTIONS(5869), + [sym_newline] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5869), + [aux_sym_frm_property_statement_token1] = ACTIONS(5869), + [anon_sym_DOT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [aux_sym__attribute_identifier_token1] = ACTIONS(5869), + [aux_sym_option_statement_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5869), + [aux_sym_preprocessor_const_token1] = ACTIONS(5869), + [sym_static_modifier] = ACTIONS(5869), + [sym__dim_keyword] = ACTIONS(5869), + [sym__redim_keyword] = ACTIONS(5869), + [aux_sym_get_accessor_token1] = ACTIONS(5869), + [aux_sym_set_accessor_token1] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5871), + [aux_sym_const_declaration_token1] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5871), + [aux_sym_as_type_clause_token2] = ACTIONS(5869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5869), + [aux_sym_visibility_token1] = ACTIONS(5869), + [aux_sym_visibility_token2] = ACTIONS(5869), + [aux_sym_elseif_fragment_token1] = ACTIONS(5869), + [aux_sym_else_fragment_token1] = ACTIONS(5869), + [aux_sym_select_statement_token1] = ACTIONS(5869), + [aux_sym__for_header_token1] = ACTIONS(5869), + [aux_sym_do_statement_token1] = ACTIONS(5869), + [aux_sym_do_statement_token2] = ACTIONS(5869), + [aux_sym_do_condition_token1] = ACTIONS(5869), + [aux_sym_with_statement_token1] = ACTIONS(5869), + [aux_sym_exit_statement_token1] = ACTIONS(5869), + [sym_end_statement] = ACTIONS(5871), + [aux_sym_on_goto_statement_token1] = ACTIONS(5869), + [aux_sym_on_goto_statement_token2] = ACTIONS(5869), + [aux_sym_on_error_statement_token2] = ACTIONS(5869), + [sym__ambiguous_redim_statement] = ACTIONS(5871), + [aux_sym_erase_statement_token1] = ACTIONS(5869), + [aux_sym_open_statement_token1] = ACTIONS(5869), + [aux_sym_file_mode_token2] = ACTIONS(5869), + [aux_sym_file_access_token2] = ACTIONS(5869), + [aux_sym_file_lock_token2] = ACTIONS(5869), + [aux_sym_print_statement_token1] = ACTIONS(5869), + [anon_sym_PLUS] = ACTIONS(5871), + [anon_sym_DASH] = ACTIONS(5869), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10144), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10146), + [anon_sym_SEMI] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [aux_sym_close_statement_token1] = ACTIONS(5869), + [aux_sym_put_statement_token1] = ACTIONS(5869), + [aux_sym_unlock_statement_token1] = ACTIONS(5869), + [aux_sym_seek_statement_token1] = ACTIONS(5869), + [sym_reset_statement] = ACTIONS(5869), + [aux_sym_raise_event_statement_token1] = ACTIONS(5869), + [sym_stop_statement] = ACTIONS(5869), + [sym_beep_statement] = ACTIONS(5869), + [aux_sym_unload_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token2] = ACTIONS(5869), + [aux_sym_def_type_statement_token3] = ACTIONS(5869), + [aux_sym_def_type_statement_token4] = ACTIONS(5869), + [aux_sym_def_type_statement_token5] = ACTIONS(5869), + [aux_sym_def_type_statement_token6] = ACTIONS(5869), + [aux_sym_def_type_statement_token7] = ACTIONS(5869), + [aux_sym_def_type_statement_token8] = ACTIONS(5869), + [aux_sym_def_type_statement_token9] = ACTIONS(5869), + [aux_sym_def_type_statement_token10] = ACTIONS(5869), + [aux_sym_def_type_statement_token11] = ACTIONS(5869), + [aux_sym_def_type_statement_token12] = ACTIONS(5869), + [aux_sym_def_type_statement_token13] = ACTIONS(5869), + [aux_sym_def_type_statement_token14] = ACTIONS(5869), + [aux_sym_call_statement_token1] = ACTIONS(5869), + [sym__ambiguous_call_statement] = ACTIONS(5869), + [aux_sym_addressof_expression_token1] = ACTIONS(5869), + [aux_sym_type_of_expression_token1] = ACTIONS(5869), + [aux_sym_unary_expression_token1] = ACTIONS(5869), + [sym_string_literal] = ACTIONS(5871), + [sym_number_literal] = ACTIONS(5871), + [aux_sym_boolean_literal_token1] = ACTIONS(5869), + [aux_sym_boolean_literal_token2] = ACTIONS(5869), + [sym_nothing_literal] = ACTIONS(5869), + [sym_null_literal] = ACTIONS(5869), + [sym_empty_literal] = ACTIONS(5869), + [sym_date_literal] = ACTIONS(5871), + [anon_sym_POUND] = ACTIONS(5869), + }, + [STATE(4797)] = { + [sym_identifier] = ACTIONS(5716), + [sym_newline] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5716), + [aux_sym_frm_property_statement_token1] = ACTIONS(5716), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_BANG] = ACTIONS(5718), + [aux_sym__attribute_identifier_token1] = ACTIONS(5716), + [aux_sym_option_statement_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5716), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5716), + [aux_sym_preprocessor_const_token1] = ACTIONS(5716), + [sym_static_modifier] = ACTIONS(5716), + [sym__dim_keyword] = ACTIONS(5716), + [sym__redim_keyword] = ACTIONS(5716), + [aux_sym_get_accessor_token1] = ACTIONS(5716), + [aux_sym_set_accessor_token1] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5718), + [aux_sym_const_declaration_token1] = ACTIONS(5716), + [anon_sym_LPAREN] = ACTIONS(5718), + [aux_sym_as_type_clause_token2] = ACTIONS(5716), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5716), + [aux_sym_visibility_token1] = ACTIONS(5716), + [aux_sym_visibility_token2] = ACTIONS(5716), + [aux_sym_elseif_fragment_token1] = ACTIONS(5716), + [aux_sym_else_fragment_token1] = ACTIONS(5716), + [aux_sym_select_statement_token1] = ACTIONS(5716), + [aux_sym__for_header_token1] = ACTIONS(5716), + [aux_sym_do_statement_token1] = ACTIONS(5716), + [aux_sym_do_condition_token1] = ACTIONS(5716), + [aux_sym_with_statement_token1] = ACTIONS(5716), + [aux_sym_exit_statement_token1] = ACTIONS(5716), + [sym_end_statement] = ACTIONS(5718), + [aux_sym_on_goto_statement_token1] = ACTIONS(5716), + [aux_sym_on_goto_statement_token2] = ACTIONS(5716), + [aux_sym_on_error_statement_token2] = ACTIONS(5716), + [sym__ambiguous_redim_statement] = ACTIONS(5718), + [aux_sym_erase_statement_token1] = ACTIONS(5716), + [aux_sym_open_statement_token1] = ACTIONS(5716), + [aux_sym_file_mode_token2] = ACTIONS(5716), + [aux_sym_file_access_token2] = ACTIONS(5716), + [aux_sym_file_lock_token2] = ACTIONS(5716), + [aux_sym_print_statement_token1] = ACTIONS(5716), + [anon_sym_PLUS] = ACTIONS(5718), + [anon_sym_DASH] = ACTIONS(5716), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [aux_sym_close_statement_token1] = ACTIONS(5716), + [aux_sym_put_statement_token1] = ACTIONS(5716), + [aux_sym_unlock_statement_token1] = ACTIONS(5716), + [aux_sym_seek_statement_token1] = ACTIONS(5716), + [sym_reset_statement] = ACTIONS(5716), + [aux_sym_raise_event_statement_token1] = ACTIONS(5716), + [sym_stop_statement] = ACTIONS(5716), + [sym_beep_statement] = ACTIONS(5716), + [aux_sym_unload_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token2] = ACTIONS(5716), + [aux_sym_def_type_statement_token3] = ACTIONS(5716), + [aux_sym_def_type_statement_token4] = ACTIONS(5716), + [aux_sym_def_type_statement_token5] = ACTIONS(5716), + [aux_sym_def_type_statement_token6] = ACTIONS(5716), + [aux_sym_def_type_statement_token7] = ACTIONS(5716), + [aux_sym_def_type_statement_token8] = ACTIONS(5716), + [aux_sym_def_type_statement_token9] = ACTIONS(5716), + [aux_sym_def_type_statement_token10] = ACTIONS(5716), + [aux_sym_def_type_statement_token11] = ACTIONS(5716), + [aux_sym_def_type_statement_token12] = ACTIONS(5716), + [aux_sym_def_type_statement_token13] = ACTIONS(5716), + [aux_sym_def_type_statement_token14] = ACTIONS(5716), + [aux_sym_call_statement_token1] = ACTIONS(5716), + [sym__ambiguous_call_statement] = ACTIONS(5716), + [aux_sym_addressof_expression_token1] = ACTIONS(5716), + [aux_sym_type_of_expression_token1] = ACTIONS(5716), + [aux_sym_unary_expression_token1] = ACTIONS(5716), + [sym_string_literal] = ACTIONS(5718), + [sym_number_literal] = ACTIONS(5718), + [aux_sym_boolean_literal_token1] = ACTIONS(5716), + [aux_sym_boolean_literal_token2] = ACTIONS(5716), + [sym_nothing_literal] = ACTIONS(5716), + [sym_null_literal] = ACTIONS(5716), + [sym_empty_literal] = ACTIONS(5716), + [sym_date_literal] = ACTIONS(5718), + [anon_sym_POUND] = ACTIONS(5716), + }, + [STATE(4798)] = { + [aux_sym_redim_statement_repeat1] = STATE(4813), + [sym_identifier] = ACTIONS(8561), + [sym_newline] = ACTIONS(8563), + [anon_sym_COLON] = ACTIONS(8563), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8561), + [aux_sym_frm_property_statement_token1] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8561), + [anon_sym_BANG] = ACTIONS(8563), + [aux_sym__attribute_identifier_token1] = ACTIONS(8561), + [aux_sym_option_statement_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8561), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8561), + [aux_sym_preprocessor_const_token1] = ACTIONS(8561), + [sym_static_modifier] = ACTIONS(8561), + [sym__dim_keyword] = ACTIONS(8561), + [sym__redim_keyword] = ACTIONS(8561), + [aux_sym_get_accessor_token1] = ACTIONS(8561), + [aux_sym_set_accessor_token1] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(10221), + [aux_sym_const_declaration_token1] = ACTIONS(8561), + [anon_sym_LPAREN] = ACTIONS(8563), + [aux_sym_as_type_clause_token2] = ACTIONS(8561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8561), + [aux_sym_visibility_token1] = ACTIONS(8561), + [aux_sym_visibility_token2] = ACTIONS(8561), + [aux_sym_elseif_fragment_token1] = ACTIONS(8561), + [aux_sym_else_fragment_token1] = ACTIONS(8561), + [aux_sym_select_statement_token1] = ACTIONS(8561), + [aux_sym__for_header_token1] = ACTIONS(8561), + [aux_sym_do_statement_token1] = ACTIONS(8561), + [aux_sym_do_condition_token1] = ACTIONS(8561), + [aux_sym_with_statement_token1] = ACTIONS(8561), + [aux_sym_exit_statement_token1] = ACTIONS(8561), + [sym_end_statement] = ACTIONS(8563), + [aux_sym_on_goto_statement_token1] = ACTIONS(8561), + [aux_sym_on_goto_statement_token2] = ACTIONS(8561), + [aux_sym_on_error_statement_token2] = ACTIONS(8561), + [sym__ambiguous_redim_statement] = ACTIONS(8563), + [aux_sym_erase_statement_token1] = ACTIONS(8561), + [aux_sym_open_statement_token1] = ACTIONS(8561), + [aux_sym_file_mode_token2] = ACTIONS(8561), + [aux_sym_file_access_token2] = ACTIONS(8561), + [aux_sym_file_lock_token2] = ACTIONS(8561), + [aux_sym_print_statement_token1] = ACTIONS(8561), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(8561), + [anon_sym_QMARK] = ACTIONS(8563), + [aux_sym_close_statement_token1] = ACTIONS(8561), + [aux_sym_put_statement_token1] = ACTIONS(8561), + [aux_sym_unlock_statement_token1] = ACTIONS(8561), + [aux_sym_seek_statement_token1] = ACTIONS(8561), + [sym_reset_statement] = ACTIONS(8561), + [aux_sym_raise_event_statement_token1] = ACTIONS(8561), + [sym_stop_statement] = ACTIONS(8561), + [sym_beep_statement] = ACTIONS(8561), + [aux_sym_unload_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token2] = ACTIONS(8561), + [aux_sym_def_type_statement_token3] = ACTIONS(8561), + [aux_sym_def_type_statement_token4] = ACTIONS(8561), + [aux_sym_def_type_statement_token5] = ACTIONS(8561), + [aux_sym_def_type_statement_token6] = ACTIONS(8561), + [aux_sym_def_type_statement_token7] = ACTIONS(8561), + [aux_sym_def_type_statement_token8] = ACTIONS(8561), + [aux_sym_def_type_statement_token9] = ACTIONS(8561), + [aux_sym_def_type_statement_token10] = ACTIONS(8561), + [aux_sym_def_type_statement_token11] = ACTIONS(8561), + [aux_sym_def_type_statement_token12] = ACTIONS(8561), + [aux_sym_def_type_statement_token13] = ACTIONS(8561), + [aux_sym_def_type_statement_token14] = ACTIONS(8561), + [aux_sym_call_statement_token1] = ACTIONS(8561), + [sym__ambiguous_call_statement] = ACTIONS(8561), + [aux_sym_addressof_expression_token1] = ACTIONS(8561), + [aux_sym_type_of_expression_token1] = ACTIONS(8561), + [aux_sym_unary_expression_token1] = ACTIONS(8561), + [sym_string_literal] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8563), + [aux_sym_boolean_literal_token1] = ACTIONS(8561), + [aux_sym_boolean_literal_token2] = ACTIONS(8561), + [sym_nothing_literal] = ACTIONS(8561), + [sym_null_literal] = ACTIONS(8561), + [sym_empty_literal] = ACTIONS(8561), + [sym_date_literal] = ACTIONS(8563), + [anon_sym_POUND] = ACTIONS(8561), + }, + [STATE(4799)] = { + [aux_sym_redim_statement_repeat1] = STATE(4814), + [sym_identifier] = ACTIONS(8561), + [sym_newline] = ACTIONS(8563), + [anon_sym_COLON] = ACTIONS(8563), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8561), + [aux_sym_frm_property_statement_token1] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8561), + [anon_sym_BANG] = ACTIONS(8563), + [aux_sym__attribute_identifier_token1] = ACTIONS(8561), + [aux_sym_option_statement_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8561), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8561), + [aux_sym_preprocessor_const_token1] = ACTIONS(8561), + [sym_static_modifier] = ACTIONS(8561), + [sym__dim_keyword] = ACTIONS(8561), + [sym__redim_keyword] = ACTIONS(8561), + [aux_sym_get_accessor_token1] = ACTIONS(8561), + [aux_sym_set_accessor_token1] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(10221), + [aux_sym_const_declaration_token1] = ACTIONS(8561), + [anon_sym_LPAREN] = ACTIONS(8563), + [aux_sym_as_type_clause_token2] = ACTIONS(8561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8561), + [aux_sym_visibility_token1] = ACTIONS(8561), + [aux_sym_visibility_token2] = ACTIONS(8561), + [aux_sym_elseif_fragment_token1] = ACTIONS(8561), + [aux_sym_else_fragment_token1] = ACTIONS(8561), + [aux_sym_select_statement_token1] = ACTIONS(8561), + [aux_sym__for_header_token1] = ACTIONS(8561), + [aux_sym_do_statement_token1] = ACTIONS(8561), + [aux_sym_do_condition_token1] = ACTIONS(8561), + [aux_sym_with_statement_token1] = ACTIONS(8561), + [aux_sym_exit_statement_token1] = ACTIONS(8561), + [sym_end_statement] = ACTIONS(8563), + [aux_sym_on_goto_statement_token1] = ACTIONS(8561), + [aux_sym_on_goto_statement_token2] = ACTIONS(8561), + [aux_sym_on_error_statement_token2] = ACTIONS(8561), + [sym__ambiguous_redim_statement] = ACTIONS(8563), + [aux_sym_erase_statement_token1] = ACTIONS(8561), + [aux_sym_open_statement_token1] = ACTIONS(8561), + [aux_sym_file_mode_token2] = ACTIONS(8561), + [aux_sym_file_access_token2] = ACTIONS(8561), + [aux_sym_file_lock_token2] = ACTIONS(8561), + [aux_sym_print_statement_token1] = ACTIONS(8561), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(8561), + [anon_sym_QMARK] = ACTIONS(8563), + [aux_sym_close_statement_token1] = ACTIONS(8561), + [aux_sym_put_statement_token1] = ACTIONS(8561), + [aux_sym_unlock_statement_token1] = ACTIONS(8561), + [aux_sym_seek_statement_token1] = ACTIONS(8561), + [sym_reset_statement] = ACTIONS(8561), + [aux_sym_raise_event_statement_token1] = ACTIONS(8561), + [sym_stop_statement] = ACTIONS(8561), + [sym_beep_statement] = ACTIONS(8561), + [aux_sym_unload_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token2] = ACTIONS(8561), + [aux_sym_def_type_statement_token3] = ACTIONS(8561), + [aux_sym_def_type_statement_token4] = ACTIONS(8561), + [aux_sym_def_type_statement_token5] = ACTIONS(8561), + [aux_sym_def_type_statement_token6] = ACTIONS(8561), + [aux_sym_def_type_statement_token7] = ACTIONS(8561), + [aux_sym_def_type_statement_token8] = ACTIONS(8561), + [aux_sym_def_type_statement_token9] = ACTIONS(8561), + [aux_sym_def_type_statement_token10] = ACTIONS(8561), + [aux_sym_def_type_statement_token11] = ACTIONS(8561), + [aux_sym_def_type_statement_token12] = ACTIONS(8561), + [aux_sym_def_type_statement_token13] = ACTIONS(8561), + [aux_sym_def_type_statement_token14] = ACTIONS(8561), + [aux_sym_call_statement_token1] = ACTIONS(8561), + [sym__ambiguous_call_statement] = ACTIONS(8561), + [aux_sym_addressof_expression_token1] = ACTIONS(8561), + [aux_sym_type_of_expression_token1] = ACTIONS(8561), + [aux_sym_unary_expression_token1] = ACTIONS(8561), + [sym_string_literal] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8563), + [aux_sym_boolean_literal_token1] = ACTIONS(8561), + [aux_sym_boolean_literal_token2] = ACTIONS(8561), + [sym_nothing_literal] = ACTIONS(8561), + [sym_null_literal] = ACTIONS(8561), + [sym_empty_literal] = ACTIONS(8561), + [sym_date_literal] = ACTIONS(8563), + [anon_sym_POUND] = ACTIONS(8561), + }, + [STATE(4800)] = { + [sym_do_condition] = STATE(5596), + [sym_identifier] = ACTIONS(8170), + [sym_newline] = ACTIONS(8172), + [anon_sym_COLON] = ACTIONS(8172), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8170), + [aux_sym_frm_property_statement_token1] = ACTIONS(8170), + [anon_sym_DOT] = ACTIONS(8170), + [anon_sym_BANG] = ACTIONS(8172), + [aux_sym__attribute_identifier_token1] = ACTIONS(8170), + [aux_sym_option_statement_token3] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8170), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8170), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8170), + [aux_sym_preprocessor_const_token1] = ACTIONS(8170), + [sym_static_modifier] = ACTIONS(8170), + [sym__dim_keyword] = ACTIONS(8170), + [sym__redim_keyword] = ACTIONS(8170), + [aux_sym_get_accessor_token1] = ACTIONS(8170), + [aux_sym_set_accessor_token1] = ACTIONS(8170), + [aux_sym_const_declaration_token1] = ACTIONS(8170), + [anon_sym_LPAREN] = ACTIONS(8172), + [aux_sym_as_type_clause_token2] = ACTIONS(8170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8170), + [aux_sym_visibility_token1] = ACTIONS(8170), + [aux_sym_visibility_token2] = ACTIONS(8170), + [aux_sym_elseif_fragment_token1] = ACTIONS(8170), + [aux_sym_else_fragment_token1] = ACTIONS(8170), + [aux_sym_select_statement_token1] = ACTIONS(8170), + [aux_sym__for_header_token1] = ACTIONS(8170), + [aux_sym_do_statement_token1] = ACTIONS(8170), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8170), + [aux_sym_exit_statement_token1] = ACTIONS(8170), + [sym_end_statement] = ACTIONS(8172), + [aux_sym_on_goto_statement_token1] = ACTIONS(8170), + [aux_sym_on_goto_statement_token2] = ACTIONS(8170), + [aux_sym_on_error_statement_token2] = ACTIONS(8170), + [sym__ambiguous_redim_statement] = ACTIONS(8172), + [aux_sym_erase_statement_token1] = ACTIONS(8170), + [aux_sym_open_statement_token1] = ACTIONS(8170), + [aux_sym_file_mode_token2] = ACTIONS(8170), + [aux_sym_file_access_token2] = ACTIONS(8170), + [aux_sym_file_lock_token2] = ACTIONS(8170), + [aux_sym_print_statement_token1] = ACTIONS(8170), + [anon_sym_PLUS] = ACTIONS(8172), + [anon_sym_DASH] = ACTIONS(8170), + [anon_sym_QMARK] = ACTIONS(8172), + [aux_sym_close_statement_token1] = ACTIONS(8170), + [aux_sym_put_statement_token1] = ACTIONS(8170), + [aux_sym_unlock_statement_token1] = ACTIONS(8170), + [aux_sym_seek_statement_token1] = ACTIONS(8170), + [sym_reset_statement] = ACTIONS(8170), + [aux_sym_raise_event_statement_token1] = ACTIONS(8170), + [sym_stop_statement] = ACTIONS(8170), + [sym_beep_statement] = ACTIONS(8170), + [aux_sym_unload_statement_token1] = ACTIONS(8170), + [aux_sym_def_type_statement_token1] = ACTIONS(8170), + [aux_sym_def_type_statement_token2] = ACTIONS(8170), + [aux_sym_def_type_statement_token3] = ACTIONS(8170), + [aux_sym_def_type_statement_token4] = ACTIONS(8170), + [aux_sym_def_type_statement_token5] = ACTIONS(8170), + [aux_sym_def_type_statement_token6] = ACTIONS(8170), + [aux_sym_def_type_statement_token7] = ACTIONS(8170), + [aux_sym_def_type_statement_token8] = ACTIONS(8170), + [aux_sym_def_type_statement_token9] = ACTIONS(8170), + [aux_sym_def_type_statement_token10] = ACTIONS(8170), + [aux_sym_def_type_statement_token11] = ACTIONS(8170), + [aux_sym_def_type_statement_token12] = ACTIONS(8170), + [aux_sym_def_type_statement_token13] = ACTIONS(8170), + [aux_sym_def_type_statement_token14] = ACTIONS(8170), + [aux_sym_call_statement_token1] = ACTIONS(8170), + [sym__ambiguous_call_statement] = ACTIONS(8170), + [aux_sym_addressof_expression_token1] = ACTIONS(8170), + [aux_sym_type_of_expression_token1] = ACTIONS(8170), + [aux_sym_unary_expression_token1] = ACTIONS(8170), + [sym_string_literal] = ACTIONS(8172), + [sym_number_literal] = ACTIONS(8172), + [aux_sym_boolean_literal_token1] = ACTIONS(8170), + [aux_sym_boolean_literal_token2] = ACTIONS(8170), + [sym_nothing_literal] = ACTIONS(8170), + [sym_null_literal] = ACTIONS(8170), + [sym_empty_literal] = ACTIONS(8170), + [sym_date_literal] = ACTIONS(8172), + [anon_sym_POUND] = ACTIONS(8170), + }, + [STATE(4801)] = { + [sym_do_condition] = STATE(5597), + [sym_identifier] = ACTIONS(8140), + [sym_newline] = ACTIONS(8142), + [anon_sym_COLON] = ACTIONS(8142), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8140), + [aux_sym_frm_property_statement_token1] = ACTIONS(8140), + [anon_sym_DOT] = ACTIONS(8140), + [anon_sym_BANG] = ACTIONS(8142), + [aux_sym__attribute_identifier_token1] = ACTIONS(8140), + [aux_sym_option_statement_token3] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8140), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8140), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8140), + [aux_sym_preprocessor_const_token1] = ACTIONS(8140), + [sym_static_modifier] = ACTIONS(8140), + [sym__dim_keyword] = ACTIONS(8140), + [sym__redim_keyword] = ACTIONS(8140), + [aux_sym_get_accessor_token1] = ACTIONS(8140), + [aux_sym_set_accessor_token1] = ACTIONS(8140), + [aux_sym_const_declaration_token1] = ACTIONS(8140), + [anon_sym_LPAREN] = ACTIONS(8142), + [aux_sym_as_type_clause_token2] = ACTIONS(8140), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8140), + [aux_sym_visibility_token1] = ACTIONS(8140), + [aux_sym_visibility_token2] = ACTIONS(8140), + [aux_sym_elseif_fragment_token1] = ACTIONS(8140), + [aux_sym_else_fragment_token1] = ACTIONS(8140), + [aux_sym_select_statement_token1] = ACTIONS(8140), + [aux_sym__for_header_token1] = ACTIONS(8140), + [aux_sym_do_statement_token1] = ACTIONS(8140), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8140), + [aux_sym_exit_statement_token1] = ACTIONS(8140), + [sym_end_statement] = ACTIONS(8142), + [aux_sym_on_goto_statement_token1] = ACTIONS(8140), + [aux_sym_on_goto_statement_token2] = ACTIONS(8140), + [aux_sym_on_error_statement_token2] = ACTIONS(8140), + [sym__ambiguous_redim_statement] = ACTIONS(8142), + [aux_sym_erase_statement_token1] = ACTIONS(8140), + [aux_sym_open_statement_token1] = ACTIONS(8140), + [aux_sym_file_mode_token2] = ACTIONS(8140), + [aux_sym_file_access_token2] = ACTIONS(8140), + [aux_sym_file_lock_token2] = ACTIONS(8140), + [aux_sym_print_statement_token1] = ACTIONS(8140), + [anon_sym_PLUS] = ACTIONS(8142), + [anon_sym_DASH] = ACTIONS(8140), + [anon_sym_QMARK] = ACTIONS(8142), + [aux_sym_close_statement_token1] = ACTIONS(8140), + [aux_sym_put_statement_token1] = ACTIONS(8140), + [aux_sym_unlock_statement_token1] = ACTIONS(8140), + [aux_sym_seek_statement_token1] = ACTIONS(8140), + [sym_reset_statement] = ACTIONS(8140), + [aux_sym_raise_event_statement_token1] = ACTIONS(8140), + [sym_stop_statement] = ACTIONS(8140), + [sym_beep_statement] = ACTIONS(8140), + [aux_sym_unload_statement_token1] = ACTIONS(8140), + [aux_sym_def_type_statement_token1] = ACTIONS(8140), + [aux_sym_def_type_statement_token2] = ACTIONS(8140), + [aux_sym_def_type_statement_token3] = ACTIONS(8140), + [aux_sym_def_type_statement_token4] = ACTIONS(8140), + [aux_sym_def_type_statement_token5] = ACTIONS(8140), + [aux_sym_def_type_statement_token6] = ACTIONS(8140), + [aux_sym_def_type_statement_token7] = ACTIONS(8140), + [aux_sym_def_type_statement_token8] = ACTIONS(8140), + [aux_sym_def_type_statement_token9] = ACTIONS(8140), + [aux_sym_def_type_statement_token10] = ACTIONS(8140), + [aux_sym_def_type_statement_token11] = ACTIONS(8140), + [aux_sym_def_type_statement_token12] = ACTIONS(8140), + [aux_sym_def_type_statement_token13] = ACTIONS(8140), + [aux_sym_def_type_statement_token14] = ACTIONS(8140), + [aux_sym_call_statement_token1] = ACTIONS(8140), + [sym__ambiguous_call_statement] = ACTIONS(8140), + [aux_sym_addressof_expression_token1] = ACTIONS(8140), + [aux_sym_type_of_expression_token1] = ACTIONS(8140), + [aux_sym_unary_expression_token1] = ACTIONS(8140), + [sym_string_literal] = ACTIONS(8142), + [sym_number_literal] = ACTIONS(8142), + [aux_sym_boolean_literal_token1] = ACTIONS(8140), + [aux_sym_boolean_literal_token2] = ACTIONS(8140), + [sym_nothing_literal] = ACTIONS(8140), + [sym_null_literal] = ACTIONS(8140), + [sym_empty_literal] = ACTIONS(8140), + [sym_date_literal] = ACTIONS(8142), + [anon_sym_POUND] = ACTIONS(8140), + }, + [STATE(4802)] = { + [aux_sym_erase_statement_repeat1] = STATE(4821), + [sym_identifier] = ACTIONS(8320), + [sym_newline] = ACTIONS(8322), + [anon_sym_COLON] = ACTIONS(8322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8320), + [aux_sym_frm_property_statement_token1] = ACTIONS(8320), + [anon_sym_DOT] = ACTIONS(8320), + [anon_sym_BANG] = ACTIONS(8322), + [aux_sym__attribute_identifier_token1] = ACTIONS(8320), + [aux_sym_option_statement_token3] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8320), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8320), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8320), + [aux_sym_preprocessor_const_token1] = ACTIONS(8320), + [sym_static_modifier] = ACTIONS(8320), + [sym__dim_keyword] = ACTIONS(8320), + [sym__redim_keyword] = ACTIONS(8320), + [aux_sym_get_accessor_token1] = ACTIONS(8320), + [aux_sym_set_accessor_token1] = ACTIONS(8320), + [anon_sym_COMMA] = ACTIONS(10223), + [aux_sym_const_declaration_token1] = ACTIONS(8320), + [anon_sym_LPAREN] = ACTIONS(8322), + [aux_sym_as_type_clause_token2] = ACTIONS(8320), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8320), + [aux_sym_visibility_token1] = ACTIONS(8320), + [aux_sym_visibility_token2] = ACTIONS(8320), + [aux_sym_elseif_fragment_token1] = ACTIONS(8320), + [aux_sym_else_fragment_token1] = ACTIONS(8320), + [aux_sym_select_statement_token1] = ACTIONS(8320), + [aux_sym__for_header_token1] = ACTIONS(8320), + [aux_sym_do_statement_token1] = ACTIONS(8320), + [aux_sym_do_condition_token1] = ACTIONS(8320), + [aux_sym_with_statement_token1] = ACTIONS(8320), + [aux_sym_exit_statement_token1] = ACTIONS(8320), + [sym_end_statement] = ACTIONS(8322), + [aux_sym_on_goto_statement_token1] = ACTIONS(8320), + [aux_sym_on_goto_statement_token2] = ACTIONS(8320), + [aux_sym_on_error_statement_token2] = ACTIONS(8320), + [sym__ambiguous_redim_statement] = ACTIONS(8322), + [aux_sym_erase_statement_token1] = ACTIONS(8320), + [aux_sym_open_statement_token1] = ACTIONS(8320), + [aux_sym_file_mode_token2] = ACTIONS(8320), + [aux_sym_file_access_token2] = ACTIONS(8320), + [aux_sym_file_lock_token2] = ACTIONS(8320), + [aux_sym_print_statement_token1] = ACTIONS(8320), + [anon_sym_PLUS] = ACTIONS(8322), + [anon_sym_DASH] = ACTIONS(8320), + [anon_sym_QMARK] = ACTIONS(8322), + [aux_sym_close_statement_token1] = ACTIONS(8320), + [aux_sym_put_statement_token1] = ACTIONS(8320), + [aux_sym_unlock_statement_token1] = ACTIONS(8320), + [aux_sym_seek_statement_token1] = ACTIONS(8320), + [sym_reset_statement] = ACTIONS(8320), + [aux_sym_raise_event_statement_token1] = ACTIONS(8320), + [sym_stop_statement] = ACTIONS(8320), + [sym_beep_statement] = ACTIONS(8320), + [aux_sym_unload_statement_token1] = ACTIONS(8320), + [aux_sym_def_type_statement_token1] = ACTIONS(8320), + [aux_sym_def_type_statement_token2] = ACTIONS(8320), + [aux_sym_def_type_statement_token3] = ACTIONS(8320), + [aux_sym_def_type_statement_token4] = ACTIONS(8320), + [aux_sym_def_type_statement_token5] = ACTIONS(8320), + [aux_sym_def_type_statement_token6] = ACTIONS(8320), + [aux_sym_def_type_statement_token7] = ACTIONS(8320), + [aux_sym_def_type_statement_token8] = ACTIONS(8320), + [aux_sym_def_type_statement_token9] = ACTIONS(8320), + [aux_sym_def_type_statement_token10] = ACTIONS(8320), + [aux_sym_def_type_statement_token11] = ACTIONS(8320), + [aux_sym_def_type_statement_token12] = ACTIONS(8320), + [aux_sym_def_type_statement_token13] = ACTIONS(8320), + [aux_sym_def_type_statement_token14] = ACTIONS(8320), + [aux_sym_call_statement_token1] = ACTIONS(8320), + [sym__ambiguous_call_statement] = ACTIONS(8320), + [aux_sym_addressof_expression_token1] = ACTIONS(8320), + [aux_sym_type_of_expression_token1] = ACTIONS(8320), + [aux_sym_unary_expression_token1] = ACTIONS(8320), + [sym_string_literal] = ACTIONS(8322), + [sym_number_literal] = ACTIONS(8322), + [aux_sym_boolean_literal_token1] = ACTIONS(8320), + [aux_sym_boolean_literal_token2] = ACTIONS(8320), + [sym_nothing_literal] = ACTIONS(8320), + [sym_null_literal] = ACTIONS(8320), + [sym_empty_literal] = ACTIONS(8320), + [sym_date_literal] = ACTIONS(8322), + [anon_sym_POUND] = ACTIONS(8320), + }, + [STATE(4803)] = { + [aux_sym_close_statement_repeat1] = STATE(4827), + [sym_identifier] = ACTIONS(8521), + [sym_newline] = ACTIONS(8523), + [anon_sym_COLON] = ACTIONS(8523), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8521), + [aux_sym_frm_property_statement_token1] = ACTIONS(8521), + [anon_sym_DOT] = ACTIONS(8521), + [anon_sym_BANG] = ACTIONS(8523), + [aux_sym__attribute_identifier_token1] = ACTIONS(8521), + [aux_sym_option_statement_token3] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8521), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8521), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8521), + [aux_sym_preprocessor_const_token1] = ACTIONS(8521), + [sym_static_modifier] = ACTIONS(8521), + [sym__dim_keyword] = ACTIONS(8521), + [sym__redim_keyword] = ACTIONS(8521), + [aux_sym_get_accessor_token1] = ACTIONS(8521), + [aux_sym_set_accessor_token1] = ACTIONS(8521), + [anon_sym_COMMA] = ACTIONS(10225), + [aux_sym_const_declaration_token1] = ACTIONS(8521), + [anon_sym_LPAREN] = ACTIONS(8523), + [aux_sym_as_type_clause_token2] = ACTIONS(8521), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8521), + [aux_sym_visibility_token1] = ACTIONS(8521), + [aux_sym_visibility_token2] = ACTIONS(8521), + [aux_sym_elseif_fragment_token1] = ACTIONS(8521), + [aux_sym_else_fragment_token1] = ACTIONS(8521), + [aux_sym_select_statement_token1] = ACTIONS(8521), + [aux_sym__for_header_token1] = ACTIONS(8521), + [aux_sym_do_statement_token1] = ACTIONS(8521), + [aux_sym_do_condition_token1] = ACTIONS(8521), + [aux_sym_with_statement_token1] = ACTIONS(8521), + [aux_sym_exit_statement_token1] = ACTIONS(8521), + [sym_end_statement] = ACTIONS(8523), + [aux_sym_on_goto_statement_token1] = ACTIONS(8521), + [aux_sym_on_goto_statement_token2] = ACTIONS(8521), + [aux_sym_on_error_statement_token2] = ACTIONS(8521), + [sym__ambiguous_redim_statement] = ACTIONS(8523), + [aux_sym_erase_statement_token1] = ACTIONS(8521), + [aux_sym_open_statement_token1] = ACTIONS(8521), + [aux_sym_file_mode_token2] = ACTIONS(8521), + [aux_sym_file_access_token2] = ACTIONS(8521), + [aux_sym_file_lock_token2] = ACTIONS(8521), + [aux_sym_print_statement_token1] = ACTIONS(8521), + [anon_sym_PLUS] = ACTIONS(8523), + [anon_sym_DASH] = ACTIONS(8521), + [anon_sym_QMARK] = ACTIONS(8523), + [aux_sym_close_statement_token1] = ACTIONS(8521), + [aux_sym_put_statement_token1] = ACTIONS(8521), + [aux_sym_unlock_statement_token1] = ACTIONS(8521), + [aux_sym_seek_statement_token1] = ACTIONS(8521), + [sym_reset_statement] = ACTIONS(8521), + [aux_sym_raise_event_statement_token1] = ACTIONS(8521), + [sym_stop_statement] = ACTIONS(8521), + [sym_beep_statement] = ACTIONS(8521), + [aux_sym_unload_statement_token1] = ACTIONS(8521), + [aux_sym_def_type_statement_token1] = ACTIONS(8521), + [aux_sym_def_type_statement_token2] = ACTIONS(8521), + [aux_sym_def_type_statement_token3] = ACTIONS(8521), + [aux_sym_def_type_statement_token4] = ACTIONS(8521), + [aux_sym_def_type_statement_token5] = ACTIONS(8521), + [aux_sym_def_type_statement_token6] = ACTIONS(8521), + [aux_sym_def_type_statement_token7] = ACTIONS(8521), + [aux_sym_def_type_statement_token8] = ACTIONS(8521), + [aux_sym_def_type_statement_token9] = ACTIONS(8521), + [aux_sym_def_type_statement_token10] = ACTIONS(8521), + [aux_sym_def_type_statement_token11] = ACTIONS(8521), + [aux_sym_def_type_statement_token12] = ACTIONS(8521), + [aux_sym_def_type_statement_token13] = ACTIONS(8521), + [aux_sym_def_type_statement_token14] = ACTIONS(8521), + [aux_sym_call_statement_token1] = ACTIONS(8521), + [sym__ambiguous_call_statement] = ACTIONS(8521), + [aux_sym_addressof_expression_token1] = ACTIONS(8521), + [aux_sym_type_of_expression_token1] = ACTIONS(8521), + [aux_sym_unary_expression_token1] = ACTIONS(8521), + [sym_string_literal] = ACTIONS(8523), + [sym_number_literal] = ACTIONS(8523), + [aux_sym_boolean_literal_token1] = ACTIONS(8521), + [aux_sym_boolean_literal_token2] = ACTIONS(8521), + [sym_nothing_literal] = ACTIONS(8521), + [sym_null_literal] = ACTIONS(8521), + [sym_empty_literal] = ACTIONS(8521), + [sym_date_literal] = ACTIONS(8523), + [anon_sym_POUND] = ACTIONS(8521), + }, + [STATE(4804)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(4805)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(4806)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(4807)] = { + [sym_identifier] = ACTIONS(6617), + [sym_newline] = ACTIONS(6619), + [anon_sym_COLON] = ACTIONS(6619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6617), + [aux_sym_frm_property_statement_token1] = ACTIONS(6617), + [anon_sym_DOT] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(6619), + [aux_sym__attribute_identifier_token1] = ACTIONS(6617), + [aux_sym_option_statement_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6617), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6617), + [aux_sym_preprocessor_const_token1] = ACTIONS(6617), + [sym_static_modifier] = ACTIONS(6617), + [sym__dim_keyword] = ACTIONS(6617), + [sym__redim_keyword] = ACTIONS(6617), + [aux_sym_get_accessor_token1] = ACTIONS(6617), + [aux_sym_set_accessor_token1] = ACTIONS(6617), + [aux_sym_const_declaration_token1] = ACTIONS(6617), + [anon_sym_LPAREN] = ACTIONS(6619), + [aux_sym_as_type_clause_token2] = ACTIONS(6617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6617), + [aux_sym_visibility_token1] = ACTIONS(6617), + [aux_sym_visibility_token2] = ACTIONS(6617), + [aux_sym_elseif_fragment_token1] = ACTIONS(6617), + [aux_sym_else_fragment_token1] = ACTIONS(6617), + [aux_sym_select_statement_token1] = ACTIONS(6617), + [aux_sym__for_header_token1] = ACTIONS(6617), + [aux_sym_do_statement_token1] = ACTIONS(6617), + [aux_sym_do_condition_token1] = ACTIONS(6617), + [aux_sym_with_statement_token1] = ACTIONS(6617), + [aux_sym_exit_statement_token1] = ACTIONS(6617), + [sym_end_statement] = ACTIONS(6619), + [aux_sym_on_goto_statement_token1] = ACTIONS(6617), + [aux_sym_on_goto_statement_token2] = ACTIONS(6617), + [aux_sym_on_error_statement_token2] = ACTIONS(6617), + [sym__ambiguous_redim_statement] = ACTIONS(6619), + [aux_sym_erase_statement_token1] = ACTIONS(6617), + [aux_sym_open_statement_token1] = ACTIONS(6617), + [aux_sym_file_mode_token2] = ACTIONS(6617), + [aux_sym_file_access_token2] = ACTIONS(6617), + [aux_sym_file_lock_token2] = ACTIONS(6617), + [aux_sym_print_statement_token1] = ACTIONS(6617), + [anon_sym_PLUS] = ACTIONS(6619), + [anon_sym_DASH] = ACTIONS(6617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(9983), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(9985), + [anon_sym_QMARK] = ACTIONS(6619), + [aux_sym_close_statement_token1] = ACTIONS(6617), + [aux_sym_put_statement_token1] = ACTIONS(6617), + [aux_sym_unlock_statement_token1] = ACTIONS(6617), + [aux_sym_seek_statement_token1] = ACTIONS(6617), + [sym_reset_statement] = ACTIONS(6617), + [aux_sym_raise_event_statement_token1] = ACTIONS(6617), + [sym_stop_statement] = ACTIONS(6617), + [sym_beep_statement] = ACTIONS(6617), + [aux_sym_unload_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token2] = ACTIONS(6617), + [aux_sym_def_type_statement_token3] = ACTIONS(6617), + [aux_sym_def_type_statement_token4] = ACTIONS(6617), + [aux_sym_def_type_statement_token5] = ACTIONS(6617), + [aux_sym_def_type_statement_token6] = ACTIONS(6617), + [aux_sym_def_type_statement_token7] = ACTIONS(6617), + [aux_sym_def_type_statement_token8] = ACTIONS(6617), + [aux_sym_def_type_statement_token9] = ACTIONS(6617), + [aux_sym_def_type_statement_token10] = ACTIONS(6617), + [aux_sym_def_type_statement_token11] = ACTIONS(6617), + [aux_sym_def_type_statement_token12] = ACTIONS(6617), + [aux_sym_def_type_statement_token13] = ACTIONS(6617), + [aux_sym_def_type_statement_token14] = ACTIONS(6617), + [aux_sym_call_statement_token1] = ACTIONS(6617), + [sym__ambiguous_call_statement] = ACTIONS(6617), + [aux_sym_addressof_expression_token1] = ACTIONS(6617), + [aux_sym_type_of_expression_token1] = ACTIONS(6617), + [aux_sym_unary_expression_token1] = ACTIONS(6617), + [sym_string_literal] = ACTIONS(6619), + [sym_number_literal] = ACTIONS(6619), + [aux_sym_boolean_literal_token1] = ACTIONS(6617), + [aux_sym_boolean_literal_token2] = ACTIONS(6617), + [sym_nothing_literal] = ACTIONS(6617), + [sym_null_literal] = ACTIONS(6617), + [sym_empty_literal] = ACTIONS(6617), + [sym_date_literal] = ACTIONS(6619), + [anon_sym_POUND] = ACTIONS(6617), + }, + [STATE(4808)] = { + [aux_sym__argument_sequence_repeat2] = STATE(4831), + [sym_identifier] = ACTIONS(8495), + [sym_newline] = ACTIONS(8497), + [anon_sym_COLON] = ACTIONS(8497), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8495), + [aux_sym_frm_property_statement_token1] = ACTIONS(8495), + [anon_sym_DOT] = ACTIONS(8495), + [anon_sym_BANG] = ACTIONS(8497), + [aux_sym__attribute_identifier_token1] = ACTIONS(8495), + [aux_sym_option_statement_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8495), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8495), + [aux_sym_preprocessor_const_token1] = ACTIONS(8495), + [sym_static_modifier] = ACTIONS(8495), + [sym__dim_keyword] = ACTIONS(8495), + [sym__redim_keyword] = ACTIONS(8495), + [aux_sym_get_accessor_token1] = ACTIONS(8495), + [aux_sym_set_accessor_token1] = ACTIONS(8495), + [anon_sym_COMMA] = ACTIONS(5034), + [aux_sym_const_declaration_token1] = ACTIONS(8495), + [anon_sym_LPAREN] = ACTIONS(8497), + [aux_sym_as_type_clause_token2] = ACTIONS(8495), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8495), + [aux_sym_visibility_token1] = ACTIONS(8495), + [aux_sym_visibility_token2] = ACTIONS(8495), + [aux_sym_elseif_fragment_token1] = ACTIONS(8495), + [aux_sym_else_fragment_token1] = ACTIONS(8495), + [aux_sym_select_statement_token1] = ACTIONS(8495), + [aux_sym__for_header_token1] = ACTIONS(8495), + [aux_sym_do_statement_token1] = ACTIONS(8495), + [aux_sym_do_condition_token1] = ACTIONS(8495), + [aux_sym_with_statement_token1] = ACTIONS(8495), + [aux_sym_exit_statement_token1] = ACTIONS(8495), + [sym_end_statement] = ACTIONS(8497), + [aux_sym_on_goto_statement_token1] = ACTIONS(8495), + [aux_sym_on_goto_statement_token2] = ACTIONS(8495), + [aux_sym_on_error_statement_token2] = ACTIONS(8495), + [sym__ambiguous_redim_statement] = ACTIONS(8497), + [aux_sym_erase_statement_token1] = ACTIONS(8495), + [aux_sym_open_statement_token1] = ACTIONS(8495), + [aux_sym_file_mode_token2] = ACTIONS(8495), + [aux_sym_file_access_token2] = ACTIONS(8495), + [aux_sym_file_lock_token2] = ACTIONS(8495), + [aux_sym_print_statement_token1] = ACTIONS(8495), + [anon_sym_PLUS] = ACTIONS(8497), + [anon_sym_DASH] = ACTIONS(8495), + [anon_sym_QMARK] = ACTIONS(8497), + [aux_sym_close_statement_token1] = ACTIONS(8495), + [aux_sym_put_statement_token1] = ACTIONS(8495), + [aux_sym_unlock_statement_token1] = ACTIONS(8495), + [aux_sym_seek_statement_token1] = ACTIONS(8495), + [sym_reset_statement] = ACTIONS(8495), + [aux_sym_raise_event_statement_token1] = ACTIONS(8495), + [sym_stop_statement] = ACTIONS(8495), + [sym_beep_statement] = ACTIONS(8495), + [aux_sym_unload_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token2] = ACTIONS(8495), + [aux_sym_def_type_statement_token3] = ACTIONS(8495), + [aux_sym_def_type_statement_token4] = ACTIONS(8495), + [aux_sym_def_type_statement_token5] = ACTIONS(8495), + [aux_sym_def_type_statement_token6] = ACTIONS(8495), + [aux_sym_def_type_statement_token7] = ACTIONS(8495), + [aux_sym_def_type_statement_token8] = ACTIONS(8495), + [aux_sym_def_type_statement_token9] = ACTIONS(8495), + [aux_sym_def_type_statement_token10] = ACTIONS(8495), + [aux_sym_def_type_statement_token11] = ACTIONS(8495), + [aux_sym_def_type_statement_token12] = ACTIONS(8495), + [aux_sym_def_type_statement_token13] = ACTIONS(8495), + [aux_sym_def_type_statement_token14] = ACTIONS(8495), + [aux_sym_call_statement_token1] = ACTIONS(8495), + [sym__ambiguous_call_statement] = ACTIONS(8495), + [aux_sym_addressof_expression_token1] = ACTIONS(8495), + [aux_sym_type_of_expression_token1] = ACTIONS(8495), + [aux_sym_unary_expression_token1] = ACTIONS(8495), + [sym_string_literal] = ACTIONS(8497), + [sym_number_literal] = ACTIONS(8497), + [aux_sym_boolean_literal_token1] = ACTIONS(8495), + [aux_sym_boolean_literal_token2] = ACTIONS(8495), + [sym_nothing_literal] = ACTIONS(8495), + [sym_null_literal] = ACTIONS(8495), + [sym_empty_literal] = ACTIONS(8495), + [sym_date_literal] = ACTIONS(8497), + [anon_sym_POUND] = ACTIONS(8495), + }, + [STATE(4809)] = { + [aux_sym__argument_sequence_repeat2] = STATE(4895), + [sym_identifier] = ACTIONS(8495), + [sym_newline] = ACTIONS(8497), + [anon_sym_COLON] = ACTIONS(8497), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8495), + [aux_sym_frm_property_statement_token1] = ACTIONS(8495), + [anon_sym_DOT] = ACTIONS(8495), + [anon_sym_BANG] = ACTIONS(8497), + [aux_sym__attribute_identifier_token1] = ACTIONS(8495), + [aux_sym_option_statement_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8495), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8495), + [aux_sym_preprocessor_const_token1] = ACTIONS(8495), + [sym_static_modifier] = ACTIONS(8495), + [sym__dim_keyword] = ACTIONS(8495), + [sym__redim_keyword] = ACTIONS(8495), + [aux_sym_get_accessor_token1] = ACTIONS(8495), + [aux_sym_set_accessor_token1] = ACTIONS(8495), + [anon_sym_COMMA] = ACTIONS(5034), + [aux_sym_const_declaration_token1] = ACTIONS(8495), + [anon_sym_LPAREN] = ACTIONS(8497), + [aux_sym_as_type_clause_token2] = ACTIONS(8495), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8495), + [aux_sym_visibility_token1] = ACTIONS(8495), + [aux_sym_visibility_token2] = ACTIONS(8495), + [aux_sym_elseif_fragment_token1] = ACTIONS(8495), + [aux_sym_else_fragment_token1] = ACTIONS(8495), + [aux_sym_select_statement_token1] = ACTIONS(8495), + [aux_sym__for_header_token1] = ACTIONS(8495), + [aux_sym_do_statement_token1] = ACTIONS(8495), + [aux_sym_do_condition_token1] = ACTIONS(8495), + [aux_sym_with_statement_token1] = ACTIONS(8495), + [aux_sym_exit_statement_token1] = ACTIONS(8495), + [sym_end_statement] = ACTIONS(8497), + [aux_sym_on_goto_statement_token1] = ACTIONS(8495), + [aux_sym_on_goto_statement_token2] = ACTIONS(8495), + [aux_sym_on_error_statement_token2] = ACTIONS(8495), + [sym__ambiguous_redim_statement] = ACTIONS(8497), + [aux_sym_erase_statement_token1] = ACTIONS(8495), + [aux_sym_open_statement_token1] = ACTIONS(8495), + [aux_sym_file_mode_token2] = ACTIONS(8495), + [aux_sym_file_access_token2] = ACTIONS(8495), + [aux_sym_file_lock_token2] = ACTIONS(8495), + [aux_sym_print_statement_token1] = ACTIONS(8495), + [anon_sym_PLUS] = ACTIONS(8497), + [anon_sym_DASH] = ACTIONS(8495), + [anon_sym_QMARK] = ACTIONS(8497), + [aux_sym_close_statement_token1] = ACTIONS(8495), + [aux_sym_put_statement_token1] = ACTIONS(8495), + [aux_sym_unlock_statement_token1] = ACTIONS(8495), + [aux_sym_seek_statement_token1] = ACTIONS(8495), + [sym_reset_statement] = ACTIONS(8495), + [aux_sym_raise_event_statement_token1] = ACTIONS(8495), + [sym_stop_statement] = ACTIONS(8495), + [sym_beep_statement] = ACTIONS(8495), + [aux_sym_unload_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token2] = ACTIONS(8495), + [aux_sym_def_type_statement_token3] = ACTIONS(8495), + [aux_sym_def_type_statement_token4] = ACTIONS(8495), + [aux_sym_def_type_statement_token5] = ACTIONS(8495), + [aux_sym_def_type_statement_token6] = ACTIONS(8495), + [aux_sym_def_type_statement_token7] = ACTIONS(8495), + [aux_sym_def_type_statement_token8] = ACTIONS(8495), + [aux_sym_def_type_statement_token9] = ACTIONS(8495), + [aux_sym_def_type_statement_token10] = ACTIONS(8495), + [aux_sym_def_type_statement_token11] = ACTIONS(8495), + [aux_sym_def_type_statement_token12] = ACTIONS(8495), + [aux_sym_def_type_statement_token13] = ACTIONS(8495), + [aux_sym_def_type_statement_token14] = ACTIONS(8495), + [aux_sym_call_statement_token1] = ACTIONS(8495), + [sym__ambiguous_call_statement] = ACTIONS(8495), + [aux_sym_addressof_expression_token1] = ACTIONS(8495), + [aux_sym_type_of_expression_token1] = ACTIONS(8495), + [aux_sym_unary_expression_token1] = ACTIONS(8495), + [sym_string_literal] = ACTIONS(8497), + [sym_number_literal] = ACTIONS(8497), + [aux_sym_boolean_literal_token1] = ACTIONS(8495), + [aux_sym_boolean_literal_token2] = ACTIONS(8495), + [sym_nothing_literal] = ACTIONS(8495), + [sym_null_literal] = ACTIONS(8495), + [sym_empty_literal] = ACTIONS(8495), + [sym_date_literal] = ACTIONS(8497), + [anon_sym_POUND] = ACTIONS(8495), + }, + [STATE(4810)] = { + [aux_sym__argument_sequence_repeat1] = STATE(4711), + [sym_identifier] = ACTIONS(8549), + [sym_newline] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8549), + [aux_sym_frm_property_statement_token1] = ACTIONS(8549), + [anon_sym_DOT] = ACTIONS(8549), + [anon_sym_BANG] = ACTIONS(8551), + [aux_sym__attribute_identifier_token1] = ACTIONS(8549), + [aux_sym_option_statement_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8549), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8549), + [aux_sym_preprocessor_const_token1] = ACTIONS(8549), + [sym_static_modifier] = ACTIONS(8549), + [sym__dim_keyword] = ACTIONS(8549), + [sym__redim_keyword] = ACTIONS(8549), + [aux_sym_get_accessor_token1] = ACTIONS(8549), + [aux_sym_set_accessor_token1] = ACTIONS(8549), + [anon_sym_COMMA] = ACTIONS(10229), + [aux_sym_const_declaration_token1] = ACTIONS(8549), + [anon_sym_LPAREN] = ACTIONS(8551), + [aux_sym_as_type_clause_token2] = ACTIONS(8549), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8549), + [aux_sym_visibility_token1] = ACTIONS(8549), + [aux_sym_visibility_token2] = ACTIONS(8549), + [aux_sym_elseif_fragment_token1] = ACTIONS(8549), + [aux_sym_else_fragment_token1] = ACTIONS(8549), + [aux_sym_select_statement_token1] = ACTIONS(8549), + [aux_sym__for_header_token1] = ACTIONS(8549), + [aux_sym_do_statement_token1] = ACTIONS(8549), + [aux_sym_do_condition_token1] = ACTIONS(8549), + [aux_sym_with_statement_token1] = ACTIONS(8549), + [aux_sym_exit_statement_token1] = ACTIONS(8549), + [sym_end_statement] = ACTIONS(8551), + [aux_sym_on_goto_statement_token1] = ACTIONS(8549), + [aux_sym_on_goto_statement_token2] = ACTIONS(8549), + [aux_sym_on_error_statement_token2] = ACTIONS(8549), + [sym__ambiguous_redim_statement] = ACTIONS(8551), + [aux_sym_erase_statement_token1] = ACTIONS(8549), + [aux_sym_open_statement_token1] = ACTIONS(8549), + [aux_sym_file_mode_token2] = ACTIONS(8549), + [aux_sym_file_access_token2] = ACTIONS(8549), + [aux_sym_file_lock_token2] = ACTIONS(8549), + [aux_sym_print_statement_token1] = ACTIONS(8549), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_DASH] = ACTIONS(8549), + [anon_sym_QMARK] = ACTIONS(8551), + [aux_sym_close_statement_token1] = ACTIONS(8549), + [aux_sym_put_statement_token1] = ACTIONS(8549), + [aux_sym_unlock_statement_token1] = ACTIONS(8549), + [aux_sym_seek_statement_token1] = ACTIONS(8549), + [sym_reset_statement] = ACTIONS(8549), + [aux_sym_raise_event_statement_token1] = ACTIONS(8549), + [sym_stop_statement] = ACTIONS(8549), + [sym_beep_statement] = ACTIONS(8549), + [aux_sym_unload_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token2] = ACTIONS(8549), + [aux_sym_def_type_statement_token3] = ACTIONS(8549), + [aux_sym_def_type_statement_token4] = ACTIONS(8549), + [aux_sym_def_type_statement_token5] = ACTIONS(8549), + [aux_sym_def_type_statement_token6] = ACTIONS(8549), + [aux_sym_def_type_statement_token7] = ACTIONS(8549), + [aux_sym_def_type_statement_token8] = ACTIONS(8549), + [aux_sym_def_type_statement_token9] = ACTIONS(8549), + [aux_sym_def_type_statement_token10] = ACTIONS(8549), + [aux_sym_def_type_statement_token11] = ACTIONS(8549), + [aux_sym_def_type_statement_token12] = ACTIONS(8549), + [aux_sym_def_type_statement_token13] = ACTIONS(8549), + [aux_sym_def_type_statement_token14] = ACTIONS(8549), + [aux_sym_call_statement_token1] = ACTIONS(8549), + [sym__ambiguous_call_statement] = ACTIONS(8549), + [aux_sym_addressof_expression_token1] = ACTIONS(8549), + [aux_sym_type_of_expression_token1] = ACTIONS(8549), + [aux_sym_unary_expression_token1] = ACTIONS(8549), + [sym_string_literal] = ACTIONS(8551), + [sym_number_literal] = ACTIONS(8551), + [aux_sym_boolean_literal_token1] = ACTIONS(8549), + [aux_sym_boolean_literal_token2] = ACTIONS(8549), + [sym_nothing_literal] = ACTIONS(8549), + [sym_null_literal] = ACTIONS(8549), + [sym_empty_literal] = ACTIONS(8549), + [sym_date_literal] = ACTIONS(8551), + [anon_sym_POUND] = ACTIONS(8549), + }, + [STATE(4811)] = { + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(4832), + [sym_identifier] = ACTIONS(8549), + [sym_newline] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8549), + [aux_sym_frm_property_statement_token1] = ACTIONS(8549), + [anon_sym_DOT] = ACTIONS(8549), + [anon_sym_BANG] = ACTIONS(8551), + [aux_sym__attribute_identifier_token1] = ACTIONS(8549), + [aux_sym_option_statement_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8549), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8549), + [aux_sym_preprocessor_const_token1] = ACTIONS(8549), + [sym_static_modifier] = ACTIONS(8549), + [sym__dim_keyword] = ACTIONS(8549), + [sym__redim_keyword] = ACTIONS(8549), + [aux_sym_get_accessor_token1] = ACTIONS(8549), + [aux_sym_set_accessor_token1] = ACTIONS(8549), + [aux_sym_const_declaration_token1] = ACTIONS(8549), + [anon_sym_LPAREN] = ACTIONS(8551), + [aux_sym_as_type_clause_token2] = ACTIONS(8549), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8549), + [aux_sym_visibility_token1] = ACTIONS(8549), + [aux_sym_visibility_token2] = ACTIONS(8549), + [aux_sym_elseif_fragment_token1] = ACTIONS(8549), + [aux_sym_else_fragment_token1] = ACTIONS(8549), + [aux_sym_select_statement_token1] = ACTIONS(8549), + [aux_sym__for_header_token1] = ACTIONS(8549), + [aux_sym_do_statement_token1] = ACTIONS(8549), + [aux_sym_do_condition_token1] = ACTIONS(8549), + [aux_sym_with_statement_token1] = ACTIONS(8549), + [aux_sym_exit_statement_token1] = ACTIONS(8549), + [sym_end_statement] = ACTIONS(8551), + [aux_sym_on_goto_statement_token1] = ACTIONS(8549), + [aux_sym_on_goto_statement_token2] = ACTIONS(8549), + [aux_sym_on_error_statement_token2] = ACTIONS(8549), + [sym__ambiguous_redim_statement] = ACTIONS(8551), + [aux_sym_erase_statement_token1] = ACTIONS(8549), + [aux_sym_open_statement_token1] = ACTIONS(8549), + [aux_sym_file_mode_token2] = ACTIONS(8549), + [aux_sym_file_access_token2] = ACTIONS(8549), + [aux_sym_file_lock_token2] = ACTIONS(8549), + [aux_sym_print_statement_token1] = ACTIONS(8549), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_DASH] = ACTIONS(8549), + [anon_sym_SEMI] = ACTIONS(10007), + [anon_sym_QMARK] = ACTIONS(8551), + [aux_sym_close_statement_token1] = ACTIONS(8549), + [aux_sym_put_statement_token1] = ACTIONS(8549), + [aux_sym_unlock_statement_token1] = ACTIONS(8549), + [aux_sym_seek_statement_token1] = ACTIONS(8549), + [sym_reset_statement] = ACTIONS(8549), + [aux_sym_raise_event_statement_token1] = ACTIONS(8549), + [sym_stop_statement] = ACTIONS(8549), + [sym_beep_statement] = ACTIONS(8549), + [aux_sym_unload_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token2] = ACTIONS(8549), + [aux_sym_def_type_statement_token3] = ACTIONS(8549), + [aux_sym_def_type_statement_token4] = ACTIONS(8549), + [aux_sym_def_type_statement_token5] = ACTIONS(8549), + [aux_sym_def_type_statement_token6] = ACTIONS(8549), + [aux_sym_def_type_statement_token7] = ACTIONS(8549), + [aux_sym_def_type_statement_token8] = ACTIONS(8549), + [aux_sym_def_type_statement_token9] = ACTIONS(8549), + [aux_sym_def_type_statement_token10] = ACTIONS(8549), + [aux_sym_def_type_statement_token11] = ACTIONS(8549), + [aux_sym_def_type_statement_token12] = ACTIONS(8549), + [aux_sym_def_type_statement_token13] = ACTIONS(8549), + [aux_sym_def_type_statement_token14] = ACTIONS(8549), + [aux_sym_call_statement_token1] = ACTIONS(8549), + [sym__ambiguous_call_statement] = ACTIONS(8549), + [aux_sym_addressof_expression_token1] = ACTIONS(8549), + [aux_sym_type_of_expression_token1] = ACTIONS(8549), + [aux_sym_unary_expression_token1] = ACTIONS(8549), + [sym_string_literal] = ACTIONS(8551), + [sym_number_literal] = ACTIONS(8551), + [aux_sym_boolean_literal_token1] = ACTIONS(8549), + [aux_sym_boolean_literal_token2] = ACTIONS(8549), + [sym_nothing_literal] = ACTIONS(8549), + [sym_null_literal] = ACTIONS(8549), + [sym_empty_literal] = ACTIONS(8549), + [sym_date_literal] = ACTIONS(8551), + [anon_sym_POUND] = ACTIONS(8549), + }, + [STATE(4812)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(4813)] = { + [aux_sym_redim_statement_repeat1] = STATE(4814), + [sym_identifier] = ACTIONS(8340), + [sym_newline] = ACTIONS(8342), + [anon_sym_COLON] = ACTIONS(8342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8340), + [aux_sym_frm_property_statement_token1] = ACTIONS(8340), + [anon_sym_DOT] = ACTIONS(8340), + [anon_sym_BANG] = ACTIONS(8342), + [aux_sym__attribute_identifier_token1] = ACTIONS(8340), + [aux_sym_option_statement_token3] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8340), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8340), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8340), + [aux_sym_preprocessor_const_token1] = ACTIONS(8340), + [sym_static_modifier] = ACTIONS(8340), + [sym__dim_keyword] = ACTIONS(8340), + [sym__redim_keyword] = ACTIONS(8340), + [aux_sym_get_accessor_token1] = ACTIONS(8340), + [aux_sym_set_accessor_token1] = ACTIONS(8340), + [anon_sym_COMMA] = ACTIONS(10221), + [aux_sym_const_declaration_token1] = ACTIONS(8340), + [anon_sym_LPAREN] = ACTIONS(8342), + [aux_sym_as_type_clause_token2] = ACTIONS(8340), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8340), + [aux_sym_visibility_token1] = ACTIONS(8340), + [aux_sym_visibility_token2] = ACTIONS(8340), + [aux_sym_elseif_fragment_token1] = ACTIONS(8340), + [aux_sym_else_fragment_token1] = ACTIONS(8340), + [aux_sym_select_statement_token1] = ACTIONS(8340), + [aux_sym__for_header_token1] = ACTIONS(8340), + [aux_sym_do_statement_token1] = ACTIONS(8340), + [aux_sym_do_condition_token1] = ACTIONS(8340), + [aux_sym_with_statement_token1] = ACTIONS(8340), + [aux_sym_exit_statement_token1] = ACTIONS(8340), + [sym_end_statement] = ACTIONS(8342), + [aux_sym_on_goto_statement_token1] = ACTIONS(8340), + [aux_sym_on_goto_statement_token2] = ACTIONS(8340), + [aux_sym_on_error_statement_token2] = ACTIONS(8340), + [sym__ambiguous_redim_statement] = ACTIONS(8342), + [aux_sym_erase_statement_token1] = ACTIONS(8340), + [aux_sym_open_statement_token1] = ACTIONS(8340), + [aux_sym_file_mode_token2] = ACTIONS(8340), + [aux_sym_file_access_token2] = ACTIONS(8340), + [aux_sym_file_lock_token2] = ACTIONS(8340), + [aux_sym_print_statement_token1] = ACTIONS(8340), + [anon_sym_PLUS] = ACTIONS(8342), + [anon_sym_DASH] = ACTIONS(8340), + [anon_sym_QMARK] = ACTIONS(8342), + [aux_sym_close_statement_token1] = ACTIONS(8340), + [aux_sym_put_statement_token1] = ACTIONS(8340), + [aux_sym_unlock_statement_token1] = ACTIONS(8340), + [aux_sym_seek_statement_token1] = ACTIONS(8340), + [sym_reset_statement] = ACTIONS(8340), + [aux_sym_raise_event_statement_token1] = ACTIONS(8340), + [sym_stop_statement] = ACTIONS(8340), + [sym_beep_statement] = ACTIONS(8340), + [aux_sym_unload_statement_token1] = ACTIONS(8340), + [aux_sym_def_type_statement_token1] = ACTIONS(8340), + [aux_sym_def_type_statement_token2] = ACTIONS(8340), + [aux_sym_def_type_statement_token3] = ACTIONS(8340), + [aux_sym_def_type_statement_token4] = ACTIONS(8340), + [aux_sym_def_type_statement_token5] = ACTIONS(8340), + [aux_sym_def_type_statement_token6] = ACTIONS(8340), + [aux_sym_def_type_statement_token7] = ACTIONS(8340), + [aux_sym_def_type_statement_token8] = ACTIONS(8340), + [aux_sym_def_type_statement_token9] = ACTIONS(8340), + [aux_sym_def_type_statement_token10] = ACTIONS(8340), + [aux_sym_def_type_statement_token11] = ACTIONS(8340), + [aux_sym_def_type_statement_token12] = ACTIONS(8340), + [aux_sym_def_type_statement_token13] = ACTIONS(8340), + [aux_sym_def_type_statement_token14] = ACTIONS(8340), + [aux_sym_call_statement_token1] = ACTIONS(8340), + [sym__ambiguous_call_statement] = ACTIONS(8340), + [aux_sym_addressof_expression_token1] = ACTIONS(8340), + [aux_sym_type_of_expression_token1] = ACTIONS(8340), + [aux_sym_unary_expression_token1] = ACTIONS(8340), + [sym_string_literal] = ACTIONS(8342), + [sym_number_literal] = ACTIONS(8342), + [aux_sym_boolean_literal_token1] = ACTIONS(8340), + [aux_sym_boolean_literal_token2] = ACTIONS(8340), + [sym_nothing_literal] = ACTIONS(8340), + [sym_null_literal] = ACTIONS(8340), + [sym_empty_literal] = ACTIONS(8340), + [sym_date_literal] = ACTIONS(8342), + [anon_sym_POUND] = ACTIONS(8340), + }, + [STATE(4814)] = { + [aux_sym_redim_statement_repeat1] = STATE(4814), + [sym_identifier] = ACTIONS(8456), + [sym_newline] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8458), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8456), + [aux_sym_frm_property_statement_token1] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_BANG] = ACTIONS(8458), + [aux_sym__attribute_identifier_token1] = ACTIONS(8456), + [aux_sym_option_statement_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8456), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8456), + [aux_sym_preprocessor_const_token1] = ACTIONS(8456), + [sym_static_modifier] = ACTIONS(8456), + [sym__dim_keyword] = ACTIONS(8456), + [sym__redim_keyword] = ACTIONS(8456), + [aux_sym_get_accessor_token1] = ACTIONS(8456), + [aux_sym_set_accessor_token1] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(10231), + [aux_sym_const_declaration_token1] = ACTIONS(8456), + [anon_sym_LPAREN] = ACTIONS(8458), + [aux_sym_as_type_clause_token2] = ACTIONS(8456), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8456), + [aux_sym_visibility_token1] = ACTIONS(8456), + [aux_sym_visibility_token2] = ACTIONS(8456), + [aux_sym_elseif_fragment_token1] = ACTIONS(8456), + [aux_sym_else_fragment_token1] = ACTIONS(8456), + [aux_sym_select_statement_token1] = ACTIONS(8456), + [aux_sym__for_header_token1] = ACTIONS(8456), + [aux_sym_do_statement_token1] = ACTIONS(8456), + [aux_sym_do_condition_token1] = ACTIONS(8456), + [aux_sym_with_statement_token1] = ACTIONS(8456), + [aux_sym_exit_statement_token1] = ACTIONS(8456), + [sym_end_statement] = ACTIONS(8458), + [aux_sym_on_goto_statement_token1] = ACTIONS(8456), + [aux_sym_on_goto_statement_token2] = ACTIONS(8456), + [aux_sym_on_error_statement_token2] = ACTIONS(8456), + [sym__ambiguous_redim_statement] = ACTIONS(8458), + [aux_sym_erase_statement_token1] = ACTIONS(8456), + [aux_sym_open_statement_token1] = ACTIONS(8456), + [aux_sym_file_mode_token2] = ACTIONS(8456), + [aux_sym_file_access_token2] = ACTIONS(8456), + [aux_sym_file_lock_token2] = ACTIONS(8456), + [aux_sym_print_statement_token1] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8458), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8458), + [aux_sym_close_statement_token1] = ACTIONS(8456), + [aux_sym_put_statement_token1] = ACTIONS(8456), + [aux_sym_unlock_statement_token1] = ACTIONS(8456), + [aux_sym_seek_statement_token1] = ACTIONS(8456), + [sym_reset_statement] = ACTIONS(8456), + [aux_sym_raise_event_statement_token1] = ACTIONS(8456), + [sym_stop_statement] = ACTIONS(8456), + [sym_beep_statement] = ACTIONS(8456), + [aux_sym_unload_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token2] = ACTIONS(8456), + [aux_sym_def_type_statement_token3] = ACTIONS(8456), + [aux_sym_def_type_statement_token4] = ACTIONS(8456), + [aux_sym_def_type_statement_token5] = ACTIONS(8456), + [aux_sym_def_type_statement_token6] = ACTIONS(8456), + [aux_sym_def_type_statement_token7] = ACTIONS(8456), + [aux_sym_def_type_statement_token8] = ACTIONS(8456), + [aux_sym_def_type_statement_token9] = ACTIONS(8456), + [aux_sym_def_type_statement_token10] = ACTIONS(8456), + [aux_sym_def_type_statement_token11] = ACTIONS(8456), + [aux_sym_def_type_statement_token12] = ACTIONS(8456), + [aux_sym_def_type_statement_token13] = ACTIONS(8456), + [aux_sym_def_type_statement_token14] = ACTIONS(8456), + [aux_sym_call_statement_token1] = ACTIONS(8456), + [sym__ambiguous_call_statement] = ACTIONS(8456), + [aux_sym_addressof_expression_token1] = ACTIONS(8456), + [aux_sym_type_of_expression_token1] = ACTIONS(8456), + [aux_sym_unary_expression_token1] = ACTIONS(8456), + [sym_string_literal] = ACTIONS(8458), + [sym_number_literal] = ACTIONS(8458), + [aux_sym_boolean_literal_token1] = ACTIONS(8456), + [aux_sym_boolean_literal_token2] = ACTIONS(8456), + [sym_nothing_literal] = ACTIONS(8456), + [sym_null_literal] = ACTIONS(8456), + [sym_empty_literal] = ACTIONS(8456), + [sym_date_literal] = ACTIONS(8458), + [anon_sym_POUND] = ACTIONS(8456), + }, + [STATE(4815)] = { + [sym_do_condition] = STATE(5643), + [sym_identifier] = ACTIONS(8475), + [sym_newline] = ACTIONS(8477), + [anon_sym_COLON] = ACTIONS(8477), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8475), + [aux_sym_frm_property_statement_token1] = ACTIONS(8475), + [anon_sym_DOT] = ACTIONS(8475), + [anon_sym_BANG] = ACTIONS(8477), + [aux_sym__attribute_identifier_token1] = ACTIONS(8475), + [aux_sym_option_statement_token3] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8475), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8475), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8475), + [aux_sym_preprocessor_const_token1] = ACTIONS(8475), + [sym_static_modifier] = ACTIONS(8475), + [sym__dim_keyword] = ACTIONS(8475), + [sym__redim_keyword] = ACTIONS(8475), + [aux_sym_get_accessor_token1] = ACTIONS(8475), + [aux_sym_set_accessor_token1] = ACTIONS(8475), + [aux_sym_const_declaration_token1] = ACTIONS(8475), + [anon_sym_LPAREN] = ACTIONS(8477), + [aux_sym_as_type_clause_token2] = ACTIONS(8475), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8475), + [aux_sym_visibility_token1] = ACTIONS(8475), + [aux_sym_visibility_token2] = ACTIONS(8475), + [aux_sym_elseif_fragment_token1] = ACTIONS(8475), + [aux_sym_else_fragment_token1] = ACTIONS(8475), + [aux_sym_select_statement_token1] = ACTIONS(8475), + [aux_sym__for_header_token1] = ACTIONS(8475), + [aux_sym_do_statement_token1] = ACTIONS(8475), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8475), + [aux_sym_exit_statement_token1] = ACTIONS(8475), + [sym_end_statement] = ACTIONS(8477), + [aux_sym_on_goto_statement_token1] = ACTIONS(8475), + [aux_sym_on_goto_statement_token2] = ACTIONS(8475), + [aux_sym_on_error_statement_token2] = ACTIONS(8475), + [sym__ambiguous_redim_statement] = ACTIONS(8477), + [aux_sym_erase_statement_token1] = ACTIONS(8475), + [aux_sym_open_statement_token1] = ACTIONS(8475), + [aux_sym_file_mode_token2] = ACTIONS(8475), + [aux_sym_file_access_token2] = ACTIONS(8475), + [aux_sym_file_lock_token2] = ACTIONS(8475), + [aux_sym_print_statement_token1] = ACTIONS(8475), + [anon_sym_PLUS] = ACTIONS(8477), + [anon_sym_DASH] = ACTIONS(8475), + [anon_sym_QMARK] = ACTIONS(8477), + [aux_sym_close_statement_token1] = ACTIONS(8475), + [aux_sym_put_statement_token1] = ACTIONS(8475), + [aux_sym_unlock_statement_token1] = ACTIONS(8475), + [aux_sym_seek_statement_token1] = ACTIONS(8475), + [sym_reset_statement] = ACTIONS(8475), + [aux_sym_raise_event_statement_token1] = ACTIONS(8475), + [sym_stop_statement] = ACTIONS(8475), + [sym_beep_statement] = ACTIONS(8475), + [aux_sym_unload_statement_token1] = ACTIONS(8475), + [aux_sym_def_type_statement_token1] = ACTIONS(8475), + [aux_sym_def_type_statement_token2] = ACTIONS(8475), + [aux_sym_def_type_statement_token3] = ACTIONS(8475), + [aux_sym_def_type_statement_token4] = ACTIONS(8475), + [aux_sym_def_type_statement_token5] = ACTIONS(8475), + [aux_sym_def_type_statement_token6] = ACTIONS(8475), + [aux_sym_def_type_statement_token7] = ACTIONS(8475), + [aux_sym_def_type_statement_token8] = ACTIONS(8475), + [aux_sym_def_type_statement_token9] = ACTIONS(8475), + [aux_sym_def_type_statement_token10] = ACTIONS(8475), + [aux_sym_def_type_statement_token11] = ACTIONS(8475), + [aux_sym_def_type_statement_token12] = ACTIONS(8475), + [aux_sym_def_type_statement_token13] = ACTIONS(8475), + [aux_sym_def_type_statement_token14] = ACTIONS(8475), + [aux_sym_call_statement_token1] = ACTIONS(8475), + [sym__ambiguous_call_statement] = ACTIONS(8475), + [aux_sym_addressof_expression_token1] = ACTIONS(8475), + [aux_sym_type_of_expression_token1] = ACTIONS(8475), + [aux_sym_unary_expression_token1] = ACTIONS(8475), + [sym_string_literal] = ACTIONS(8477), + [sym_number_literal] = ACTIONS(8477), + [aux_sym_boolean_literal_token1] = ACTIONS(8475), + [aux_sym_boolean_literal_token2] = ACTIONS(8475), + [sym_nothing_literal] = ACTIONS(8475), + [sym_null_literal] = ACTIONS(8475), + [sym_empty_literal] = ACTIONS(8475), + [sym_date_literal] = ACTIONS(8477), + [anon_sym_POUND] = ACTIONS(8475), + }, + [STATE(4816)] = { + [sym_do_condition] = STATE(5645), + [sym_identifier] = ACTIONS(8491), + [sym_newline] = ACTIONS(8493), + [anon_sym_COLON] = ACTIONS(8493), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8491), + [aux_sym_frm_property_statement_token1] = ACTIONS(8491), + [anon_sym_DOT] = ACTIONS(8491), + [anon_sym_BANG] = ACTIONS(8493), + [aux_sym__attribute_identifier_token1] = ACTIONS(8491), + [aux_sym_option_statement_token3] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8491), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8491), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8491), + [aux_sym_preprocessor_const_token1] = ACTIONS(8491), + [sym_static_modifier] = ACTIONS(8491), + [sym__dim_keyword] = ACTIONS(8491), + [sym__redim_keyword] = ACTIONS(8491), + [aux_sym_get_accessor_token1] = ACTIONS(8491), + [aux_sym_set_accessor_token1] = ACTIONS(8491), + [aux_sym_const_declaration_token1] = ACTIONS(8491), + [anon_sym_LPAREN] = ACTIONS(8493), + [aux_sym_as_type_clause_token2] = ACTIONS(8491), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8491), + [aux_sym_visibility_token1] = ACTIONS(8491), + [aux_sym_visibility_token2] = ACTIONS(8491), + [aux_sym_elseif_fragment_token1] = ACTIONS(8491), + [aux_sym_else_fragment_token1] = ACTIONS(8491), + [aux_sym_select_statement_token1] = ACTIONS(8491), + [aux_sym__for_header_token1] = ACTIONS(8491), + [aux_sym_do_statement_token1] = ACTIONS(8491), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8491), + [aux_sym_exit_statement_token1] = ACTIONS(8491), + [sym_end_statement] = ACTIONS(8493), + [aux_sym_on_goto_statement_token1] = ACTIONS(8491), + [aux_sym_on_goto_statement_token2] = ACTIONS(8491), + [aux_sym_on_error_statement_token2] = ACTIONS(8491), + [sym__ambiguous_redim_statement] = ACTIONS(8493), + [aux_sym_erase_statement_token1] = ACTIONS(8491), + [aux_sym_open_statement_token1] = ACTIONS(8491), + [aux_sym_file_mode_token2] = ACTIONS(8491), + [aux_sym_file_access_token2] = ACTIONS(8491), + [aux_sym_file_lock_token2] = ACTIONS(8491), + [aux_sym_print_statement_token1] = ACTIONS(8491), + [anon_sym_PLUS] = ACTIONS(8493), + [anon_sym_DASH] = ACTIONS(8491), + [anon_sym_QMARK] = ACTIONS(8493), + [aux_sym_close_statement_token1] = ACTIONS(8491), + [aux_sym_put_statement_token1] = ACTIONS(8491), + [aux_sym_unlock_statement_token1] = ACTIONS(8491), + [aux_sym_seek_statement_token1] = ACTIONS(8491), + [sym_reset_statement] = ACTIONS(8491), + [aux_sym_raise_event_statement_token1] = ACTIONS(8491), + [sym_stop_statement] = ACTIONS(8491), + [sym_beep_statement] = ACTIONS(8491), + [aux_sym_unload_statement_token1] = ACTIONS(8491), + [aux_sym_def_type_statement_token1] = ACTIONS(8491), + [aux_sym_def_type_statement_token2] = ACTIONS(8491), + [aux_sym_def_type_statement_token3] = ACTIONS(8491), + [aux_sym_def_type_statement_token4] = ACTIONS(8491), + [aux_sym_def_type_statement_token5] = ACTIONS(8491), + [aux_sym_def_type_statement_token6] = ACTIONS(8491), + [aux_sym_def_type_statement_token7] = ACTIONS(8491), + [aux_sym_def_type_statement_token8] = ACTIONS(8491), + [aux_sym_def_type_statement_token9] = ACTIONS(8491), + [aux_sym_def_type_statement_token10] = ACTIONS(8491), + [aux_sym_def_type_statement_token11] = ACTIONS(8491), + [aux_sym_def_type_statement_token12] = ACTIONS(8491), + [aux_sym_def_type_statement_token13] = ACTIONS(8491), + [aux_sym_def_type_statement_token14] = ACTIONS(8491), + [aux_sym_call_statement_token1] = ACTIONS(8491), + [sym__ambiguous_call_statement] = ACTIONS(8491), + [aux_sym_addressof_expression_token1] = ACTIONS(8491), + [aux_sym_type_of_expression_token1] = ACTIONS(8491), + [aux_sym_unary_expression_token1] = ACTIONS(8491), + [sym_string_literal] = ACTIONS(8493), + [sym_number_literal] = ACTIONS(8493), + [aux_sym_boolean_literal_token1] = ACTIONS(8491), + [aux_sym_boolean_literal_token2] = ACTIONS(8491), + [sym_nothing_literal] = ACTIONS(8491), + [sym_null_literal] = ACTIONS(8491), + [sym_empty_literal] = ACTIONS(8491), + [sym_date_literal] = ACTIONS(8493), + [anon_sym_POUND] = ACTIONS(8491), + }, + [STATE(4817)] = { + [sym_do_condition] = STATE(5646), + [sym_identifier] = ACTIONS(8501), + [sym_newline] = ACTIONS(8503), + [anon_sym_COLON] = ACTIONS(8503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8501), + [aux_sym_frm_property_statement_token1] = ACTIONS(8501), + [anon_sym_DOT] = ACTIONS(8501), + [anon_sym_BANG] = ACTIONS(8503), + [aux_sym__attribute_identifier_token1] = ACTIONS(8501), + [aux_sym_option_statement_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8501), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8501), + [aux_sym_preprocessor_const_token1] = ACTIONS(8501), + [sym_static_modifier] = ACTIONS(8501), + [sym__dim_keyword] = ACTIONS(8501), + [sym__redim_keyword] = ACTIONS(8501), + [aux_sym_get_accessor_token1] = ACTIONS(8501), + [aux_sym_set_accessor_token1] = ACTIONS(8501), + [aux_sym_const_declaration_token1] = ACTIONS(8501), + [anon_sym_LPAREN] = ACTIONS(8503), + [aux_sym_as_type_clause_token2] = ACTIONS(8501), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8501), + [aux_sym_visibility_token1] = ACTIONS(8501), + [aux_sym_visibility_token2] = ACTIONS(8501), + [aux_sym_elseif_fragment_token1] = ACTIONS(8501), + [aux_sym_else_fragment_token1] = ACTIONS(8501), + [aux_sym_select_statement_token1] = ACTIONS(8501), + [aux_sym__for_header_token1] = ACTIONS(8501), + [aux_sym_do_statement_token1] = ACTIONS(8501), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8501), + [aux_sym_exit_statement_token1] = ACTIONS(8501), + [sym_end_statement] = ACTIONS(8503), + [aux_sym_on_goto_statement_token1] = ACTIONS(8501), + [aux_sym_on_goto_statement_token2] = ACTIONS(8501), + [aux_sym_on_error_statement_token2] = ACTIONS(8501), + [sym__ambiguous_redim_statement] = ACTIONS(8503), + [aux_sym_erase_statement_token1] = ACTIONS(8501), + [aux_sym_open_statement_token1] = ACTIONS(8501), + [aux_sym_file_mode_token2] = ACTIONS(8501), + [aux_sym_file_access_token2] = ACTIONS(8501), + [aux_sym_file_lock_token2] = ACTIONS(8501), + [aux_sym_print_statement_token1] = ACTIONS(8501), + [anon_sym_PLUS] = ACTIONS(8503), + [anon_sym_DASH] = ACTIONS(8501), + [anon_sym_QMARK] = ACTIONS(8503), + [aux_sym_close_statement_token1] = ACTIONS(8501), + [aux_sym_put_statement_token1] = ACTIONS(8501), + [aux_sym_unlock_statement_token1] = ACTIONS(8501), + [aux_sym_seek_statement_token1] = ACTIONS(8501), + [sym_reset_statement] = ACTIONS(8501), + [aux_sym_raise_event_statement_token1] = ACTIONS(8501), + [sym_stop_statement] = ACTIONS(8501), + [sym_beep_statement] = ACTIONS(8501), + [aux_sym_unload_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token2] = ACTIONS(8501), + [aux_sym_def_type_statement_token3] = ACTIONS(8501), + [aux_sym_def_type_statement_token4] = ACTIONS(8501), + [aux_sym_def_type_statement_token5] = ACTIONS(8501), + [aux_sym_def_type_statement_token6] = ACTIONS(8501), + [aux_sym_def_type_statement_token7] = ACTIONS(8501), + [aux_sym_def_type_statement_token8] = ACTIONS(8501), + [aux_sym_def_type_statement_token9] = ACTIONS(8501), + [aux_sym_def_type_statement_token10] = ACTIONS(8501), + [aux_sym_def_type_statement_token11] = ACTIONS(8501), + [aux_sym_def_type_statement_token12] = ACTIONS(8501), + [aux_sym_def_type_statement_token13] = ACTIONS(8501), + [aux_sym_def_type_statement_token14] = ACTIONS(8501), + [aux_sym_call_statement_token1] = ACTIONS(8501), + [sym__ambiguous_call_statement] = ACTIONS(8501), + [aux_sym_addressof_expression_token1] = ACTIONS(8501), + [aux_sym_type_of_expression_token1] = ACTIONS(8501), + [aux_sym_unary_expression_token1] = ACTIONS(8501), + [sym_string_literal] = ACTIONS(8503), + [sym_number_literal] = ACTIONS(8503), + [aux_sym_boolean_literal_token1] = ACTIONS(8501), + [aux_sym_boolean_literal_token2] = ACTIONS(8501), + [sym_nothing_literal] = ACTIONS(8501), + [sym_null_literal] = ACTIONS(8501), + [sym_empty_literal] = ACTIONS(8501), + [sym_date_literal] = ACTIONS(8503), + [anon_sym_POUND] = ACTIONS(8501), + }, + [STATE(4818)] = { + [sym_do_condition] = STATE(5649), + [sym_identifier] = ACTIONS(8509), + [sym_newline] = ACTIONS(8511), + [anon_sym_COLON] = ACTIONS(8511), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8509), + [aux_sym_frm_property_statement_token1] = ACTIONS(8509), + [anon_sym_DOT] = ACTIONS(8509), + [anon_sym_BANG] = ACTIONS(8511), + [aux_sym__attribute_identifier_token1] = ACTIONS(8509), + [aux_sym_option_statement_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8509), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8509), + [aux_sym_preprocessor_const_token1] = ACTIONS(8509), + [sym_static_modifier] = ACTIONS(8509), + [sym__dim_keyword] = ACTIONS(8509), + [sym__redim_keyword] = ACTIONS(8509), + [aux_sym_get_accessor_token1] = ACTIONS(8509), + [aux_sym_set_accessor_token1] = ACTIONS(8509), + [aux_sym_const_declaration_token1] = ACTIONS(8509), + [anon_sym_LPAREN] = ACTIONS(8511), + [aux_sym_as_type_clause_token2] = ACTIONS(8509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8509), + [aux_sym_visibility_token1] = ACTIONS(8509), + [aux_sym_visibility_token2] = ACTIONS(8509), + [aux_sym_elseif_fragment_token1] = ACTIONS(8509), + [aux_sym_else_fragment_token1] = ACTIONS(8509), + [aux_sym_select_statement_token1] = ACTIONS(8509), + [aux_sym__for_header_token1] = ACTIONS(8509), + [aux_sym_do_statement_token1] = ACTIONS(8509), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8509), + [aux_sym_exit_statement_token1] = ACTIONS(8509), + [sym_end_statement] = ACTIONS(8511), + [aux_sym_on_goto_statement_token1] = ACTIONS(8509), + [aux_sym_on_goto_statement_token2] = ACTIONS(8509), + [aux_sym_on_error_statement_token2] = ACTIONS(8509), + [sym__ambiguous_redim_statement] = ACTIONS(8511), + [aux_sym_erase_statement_token1] = ACTIONS(8509), + [aux_sym_open_statement_token1] = ACTIONS(8509), + [aux_sym_file_mode_token2] = ACTIONS(8509), + [aux_sym_file_access_token2] = ACTIONS(8509), + [aux_sym_file_lock_token2] = ACTIONS(8509), + [aux_sym_print_statement_token1] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(8511), + [anon_sym_DASH] = ACTIONS(8509), + [anon_sym_QMARK] = ACTIONS(8511), + [aux_sym_close_statement_token1] = ACTIONS(8509), + [aux_sym_put_statement_token1] = ACTIONS(8509), + [aux_sym_unlock_statement_token1] = ACTIONS(8509), + [aux_sym_seek_statement_token1] = ACTIONS(8509), + [sym_reset_statement] = ACTIONS(8509), + [aux_sym_raise_event_statement_token1] = ACTIONS(8509), + [sym_stop_statement] = ACTIONS(8509), + [sym_beep_statement] = ACTIONS(8509), + [aux_sym_unload_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token2] = ACTIONS(8509), + [aux_sym_def_type_statement_token3] = ACTIONS(8509), + [aux_sym_def_type_statement_token4] = ACTIONS(8509), + [aux_sym_def_type_statement_token5] = ACTIONS(8509), + [aux_sym_def_type_statement_token6] = ACTIONS(8509), + [aux_sym_def_type_statement_token7] = ACTIONS(8509), + [aux_sym_def_type_statement_token8] = ACTIONS(8509), + [aux_sym_def_type_statement_token9] = ACTIONS(8509), + [aux_sym_def_type_statement_token10] = ACTIONS(8509), + [aux_sym_def_type_statement_token11] = ACTIONS(8509), + [aux_sym_def_type_statement_token12] = ACTIONS(8509), + [aux_sym_def_type_statement_token13] = ACTIONS(8509), + [aux_sym_def_type_statement_token14] = ACTIONS(8509), + [aux_sym_call_statement_token1] = ACTIONS(8509), + [sym__ambiguous_call_statement] = ACTIONS(8509), + [aux_sym_addressof_expression_token1] = ACTIONS(8509), + [aux_sym_type_of_expression_token1] = ACTIONS(8509), + [aux_sym_unary_expression_token1] = ACTIONS(8509), + [sym_string_literal] = ACTIONS(8511), + [sym_number_literal] = ACTIONS(8511), + [aux_sym_boolean_literal_token1] = ACTIONS(8509), + [aux_sym_boolean_literal_token2] = ACTIONS(8509), + [sym_nothing_literal] = ACTIONS(8509), + [sym_null_literal] = ACTIONS(8509), + [sym_empty_literal] = ACTIONS(8509), + [sym_date_literal] = ACTIONS(8511), + [anon_sym_POUND] = ACTIONS(8509), + }, + [STATE(4819)] = { + [sym_do_condition] = STATE(5650), + [sym_identifier] = ACTIONS(8513), + [sym_newline] = ACTIONS(8515), + [anon_sym_COLON] = ACTIONS(8515), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8513), + [aux_sym_frm_property_statement_token1] = ACTIONS(8513), + [anon_sym_DOT] = ACTIONS(8513), + [anon_sym_BANG] = ACTIONS(8515), + [aux_sym__attribute_identifier_token1] = ACTIONS(8513), + [aux_sym_option_statement_token3] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8513), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8513), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8513), + [aux_sym_preprocessor_const_token1] = ACTIONS(8513), + [sym_static_modifier] = ACTIONS(8513), + [sym__dim_keyword] = ACTIONS(8513), + [sym__redim_keyword] = ACTIONS(8513), + [aux_sym_get_accessor_token1] = ACTIONS(8513), + [aux_sym_set_accessor_token1] = ACTIONS(8513), + [aux_sym_const_declaration_token1] = ACTIONS(8513), + [anon_sym_LPAREN] = ACTIONS(8515), + [aux_sym_as_type_clause_token2] = ACTIONS(8513), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8513), + [aux_sym_visibility_token1] = ACTIONS(8513), + [aux_sym_visibility_token2] = ACTIONS(8513), + [aux_sym_elseif_fragment_token1] = ACTIONS(8513), + [aux_sym_else_fragment_token1] = ACTIONS(8513), + [aux_sym_select_statement_token1] = ACTIONS(8513), + [aux_sym__for_header_token1] = ACTIONS(8513), + [aux_sym_do_statement_token1] = ACTIONS(8513), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8513), + [aux_sym_exit_statement_token1] = ACTIONS(8513), + [sym_end_statement] = ACTIONS(8515), + [aux_sym_on_goto_statement_token1] = ACTIONS(8513), + [aux_sym_on_goto_statement_token2] = ACTIONS(8513), + [aux_sym_on_error_statement_token2] = ACTIONS(8513), + [sym__ambiguous_redim_statement] = ACTIONS(8515), + [aux_sym_erase_statement_token1] = ACTIONS(8513), + [aux_sym_open_statement_token1] = ACTIONS(8513), + [aux_sym_file_mode_token2] = ACTIONS(8513), + [aux_sym_file_access_token2] = ACTIONS(8513), + [aux_sym_file_lock_token2] = ACTIONS(8513), + [aux_sym_print_statement_token1] = ACTIONS(8513), + [anon_sym_PLUS] = ACTIONS(8515), + [anon_sym_DASH] = ACTIONS(8513), + [anon_sym_QMARK] = ACTIONS(8515), + [aux_sym_close_statement_token1] = ACTIONS(8513), + [aux_sym_put_statement_token1] = ACTIONS(8513), + [aux_sym_unlock_statement_token1] = ACTIONS(8513), + [aux_sym_seek_statement_token1] = ACTIONS(8513), + [sym_reset_statement] = ACTIONS(8513), + [aux_sym_raise_event_statement_token1] = ACTIONS(8513), + [sym_stop_statement] = ACTIONS(8513), + [sym_beep_statement] = ACTIONS(8513), + [aux_sym_unload_statement_token1] = ACTIONS(8513), + [aux_sym_def_type_statement_token1] = ACTIONS(8513), + [aux_sym_def_type_statement_token2] = ACTIONS(8513), + [aux_sym_def_type_statement_token3] = ACTIONS(8513), + [aux_sym_def_type_statement_token4] = ACTIONS(8513), + [aux_sym_def_type_statement_token5] = ACTIONS(8513), + [aux_sym_def_type_statement_token6] = ACTIONS(8513), + [aux_sym_def_type_statement_token7] = ACTIONS(8513), + [aux_sym_def_type_statement_token8] = ACTIONS(8513), + [aux_sym_def_type_statement_token9] = ACTIONS(8513), + [aux_sym_def_type_statement_token10] = ACTIONS(8513), + [aux_sym_def_type_statement_token11] = ACTIONS(8513), + [aux_sym_def_type_statement_token12] = ACTIONS(8513), + [aux_sym_def_type_statement_token13] = ACTIONS(8513), + [aux_sym_def_type_statement_token14] = ACTIONS(8513), + [aux_sym_call_statement_token1] = ACTIONS(8513), + [sym__ambiguous_call_statement] = ACTIONS(8513), + [aux_sym_addressof_expression_token1] = ACTIONS(8513), + [aux_sym_type_of_expression_token1] = ACTIONS(8513), + [aux_sym_unary_expression_token1] = ACTIONS(8513), + [sym_string_literal] = ACTIONS(8515), + [sym_number_literal] = ACTIONS(8515), + [aux_sym_boolean_literal_token1] = ACTIONS(8513), + [aux_sym_boolean_literal_token2] = ACTIONS(8513), + [sym_nothing_literal] = ACTIONS(8513), + [sym_null_literal] = ACTIONS(8513), + [sym_empty_literal] = ACTIONS(8513), + [sym_date_literal] = ACTIONS(8515), + [anon_sym_POUND] = ACTIONS(8513), + }, + [STATE(4820)] = { + [sym_do_condition] = STATE(5651), + [sym_identifier] = ACTIONS(8517), + [sym_newline] = ACTIONS(8519), + [anon_sym_COLON] = ACTIONS(8519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8517), + [aux_sym_frm_property_statement_token1] = ACTIONS(8517), + [anon_sym_DOT] = ACTIONS(8517), + [anon_sym_BANG] = ACTIONS(8519), + [aux_sym__attribute_identifier_token1] = ACTIONS(8517), + [aux_sym_option_statement_token3] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8517), + [aux_sym_preprocessor_const_token1] = ACTIONS(8517), + [sym_static_modifier] = ACTIONS(8517), + [sym__dim_keyword] = ACTIONS(8517), + [sym__redim_keyword] = ACTIONS(8517), + [aux_sym_get_accessor_token1] = ACTIONS(8517), + [aux_sym_set_accessor_token1] = ACTIONS(8517), + [aux_sym_const_declaration_token1] = ACTIONS(8517), + [anon_sym_LPAREN] = ACTIONS(8519), + [aux_sym_as_type_clause_token2] = ACTIONS(8517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8517), + [aux_sym_visibility_token1] = ACTIONS(8517), + [aux_sym_visibility_token2] = ACTIONS(8517), + [aux_sym_elseif_fragment_token1] = ACTIONS(8517), + [aux_sym_else_fragment_token1] = ACTIONS(8517), + [aux_sym_select_statement_token1] = ACTIONS(8517), + [aux_sym__for_header_token1] = ACTIONS(8517), + [aux_sym_do_statement_token1] = ACTIONS(8517), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8517), + [aux_sym_exit_statement_token1] = ACTIONS(8517), + [sym_end_statement] = ACTIONS(8519), + [aux_sym_on_goto_statement_token1] = ACTIONS(8517), + [aux_sym_on_goto_statement_token2] = ACTIONS(8517), + [aux_sym_on_error_statement_token2] = ACTIONS(8517), + [sym__ambiguous_redim_statement] = ACTIONS(8519), + [aux_sym_erase_statement_token1] = ACTIONS(8517), + [aux_sym_open_statement_token1] = ACTIONS(8517), + [aux_sym_file_mode_token2] = ACTIONS(8517), + [aux_sym_file_access_token2] = ACTIONS(8517), + [aux_sym_file_lock_token2] = ACTIONS(8517), + [aux_sym_print_statement_token1] = ACTIONS(8517), + [anon_sym_PLUS] = ACTIONS(8519), + [anon_sym_DASH] = ACTIONS(8517), + [anon_sym_QMARK] = ACTIONS(8519), + [aux_sym_close_statement_token1] = ACTIONS(8517), + [aux_sym_put_statement_token1] = ACTIONS(8517), + [aux_sym_unlock_statement_token1] = ACTIONS(8517), + [aux_sym_seek_statement_token1] = ACTIONS(8517), + [sym_reset_statement] = ACTIONS(8517), + [aux_sym_raise_event_statement_token1] = ACTIONS(8517), + [sym_stop_statement] = ACTIONS(8517), + [sym_beep_statement] = ACTIONS(8517), + [aux_sym_unload_statement_token1] = ACTIONS(8517), + [aux_sym_def_type_statement_token1] = ACTIONS(8517), + [aux_sym_def_type_statement_token2] = ACTIONS(8517), + [aux_sym_def_type_statement_token3] = ACTIONS(8517), + [aux_sym_def_type_statement_token4] = ACTIONS(8517), + [aux_sym_def_type_statement_token5] = ACTIONS(8517), + [aux_sym_def_type_statement_token6] = ACTIONS(8517), + [aux_sym_def_type_statement_token7] = ACTIONS(8517), + [aux_sym_def_type_statement_token8] = ACTIONS(8517), + [aux_sym_def_type_statement_token9] = ACTIONS(8517), + [aux_sym_def_type_statement_token10] = ACTIONS(8517), + [aux_sym_def_type_statement_token11] = ACTIONS(8517), + [aux_sym_def_type_statement_token12] = ACTIONS(8517), + [aux_sym_def_type_statement_token13] = ACTIONS(8517), + [aux_sym_def_type_statement_token14] = ACTIONS(8517), + [aux_sym_call_statement_token1] = ACTIONS(8517), + [sym__ambiguous_call_statement] = ACTIONS(8517), + [aux_sym_addressof_expression_token1] = ACTIONS(8517), + [aux_sym_type_of_expression_token1] = ACTIONS(8517), + [aux_sym_unary_expression_token1] = ACTIONS(8517), + [sym_string_literal] = ACTIONS(8519), + [sym_number_literal] = ACTIONS(8519), + [aux_sym_boolean_literal_token1] = ACTIONS(8517), + [aux_sym_boolean_literal_token2] = ACTIONS(8517), + [sym_nothing_literal] = ACTIONS(8517), + [sym_null_literal] = ACTIONS(8517), + [sym_empty_literal] = ACTIONS(8517), + [sym_date_literal] = ACTIONS(8519), + [anon_sym_POUND] = ACTIONS(8517), + }, + [STATE(4821)] = { + [aux_sym_erase_statement_repeat1] = STATE(4821), + [sym_identifier] = ACTIONS(8607), + [sym_newline] = ACTIONS(8609), + [anon_sym_COLON] = ACTIONS(8609), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8607), + [aux_sym_frm_property_statement_token1] = ACTIONS(8607), + [anon_sym_DOT] = ACTIONS(8607), + [anon_sym_BANG] = ACTIONS(8609), + [aux_sym__attribute_identifier_token1] = ACTIONS(8607), + [aux_sym_option_statement_token3] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8607), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8607), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8607), + [aux_sym_preprocessor_const_token1] = ACTIONS(8607), + [sym_static_modifier] = ACTIONS(8607), + [sym__dim_keyword] = ACTIONS(8607), + [sym__redim_keyword] = ACTIONS(8607), + [aux_sym_get_accessor_token1] = ACTIONS(8607), + [aux_sym_set_accessor_token1] = ACTIONS(8607), + [anon_sym_COMMA] = ACTIONS(10234), + [aux_sym_const_declaration_token1] = ACTIONS(8607), + [anon_sym_LPAREN] = ACTIONS(8609), + [aux_sym_as_type_clause_token2] = ACTIONS(8607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8607), + [aux_sym_visibility_token1] = ACTIONS(8607), + [aux_sym_visibility_token2] = ACTIONS(8607), + [aux_sym_elseif_fragment_token1] = ACTIONS(8607), + [aux_sym_else_fragment_token1] = ACTIONS(8607), + [aux_sym_select_statement_token1] = ACTIONS(8607), + [aux_sym__for_header_token1] = ACTIONS(8607), + [aux_sym_do_statement_token1] = ACTIONS(8607), + [aux_sym_do_condition_token1] = ACTIONS(8607), + [aux_sym_with_statement_token1] = ACTIONS(8607), + [aux_sym_exit_statement_token1] = ACTIONS(8607), + [sym_end_statement] = ACTIONS(8609), + [aux_sym_on_goto_statement_token1] = ACTIONS(8607), + [aux_sym_on_goto_statement_token2] = ACTIONS(8607), + [aux_sym_on_error_statement_token2] = ACTIONS(8607), + [sym__ambiguous_redim_statement] = ACTIONS(8609), + [aux_sym_erase_statement_token1] = ACTIONS(8607), + [aux_sym_open_statement_token1] = ACTIONS(8607), + [aux_sym_file_mode_token2] = ACTIONS(8607), + [aux_sym_file_access_token2] = ACTIONS(8607), + [aux_sym_file_lock_token2] = ACTIONS(8607), + [aux_sym_print_statement_token1] = ACTIONS(8607), + [anon_sym_PLUS] = ACTIONS(8609), + [anon_sym_DASH] = ACTIONS(8607), + [anon_sym_QMARK] = ACTIONS(8609), + [aux_sym_close_statement_token1] = ACTIONS(8607), + [aux_sym_put_statement_token1] = ACTIONS(8607), + [aux_sym_unlock_statement_token1] = ACTIONS(8607), + [aux_sym_seek_statement_token1] = ACTIONS(8607), + [sym_reset_statement] = ACTIONS(8607), + [aux_sym_raise_event_statement_token1] = ACTIONS(8607), + [sym_stop_statement] = ACTIONS(8607), + [sym_beep_statement] = ACTIONS(8607), + [aux_sym_unload_statement_token1] = ACTIONS(8607), + [aux_sym_def_type_statement_token1] = ACTIONS(8607), + [aux_sym_def_type_statement_token2] = ACTIONS(8607), + [aux_sym_def_type_statement_token3] = ACTIONS(8607), + [aux_sym_def_type_statement_token4] = ACTIONS(8607), + [aux_sym_def_type_statement_token5] = ACTIONS(8607), + [aux_sym_def_type_statement_token6] = ACTIONS(8607), + [aux_sym_def_type_statement_token7] = ACTIONS(8607), + [aux_sym_def_type_statement_token8] = ACTIONS(8607), + [aux_sym_def_type_statement_token9] = ACTIONS(8607), + [aux_sym_def_type_statement_token10] = ACTIONS(8607), + [aux_sym_def_type_statement_token11] = ACTIONS(8607), + [aux_sym_def_type_statement_token12] = ACTIONS(8607), + [aux_sym_def_type_statement_token13] = ACTIONS(8607), + [aux_sym_def_type_statement_token14] = ACTIONS(8607), + [aux_sym_call_statement_token1] = ACTIONS(8607), + [sym__ambiguous_call_statement] = ACTIONS(8607), + [aux_sym_addressof_expression_token1] = ACTIONS(8607), + [aux_sym_type_of_expression_token1] = ACTIONS(8607), + [aux_sym_unary_expression_token1] = ACTIONS(8607), + [sym_string_literal] = ACTIONS(8609), + [sym_number_literal] = ACTIONS(8609), + [aux_sym_boolean_literal_token1] = ACTIONS(8607), + [aux_sym_boolean_literal_token2] = ACTIONS(8607), + [sym_nothing_literal] = ACTIONS(8607), + [sym_null_literal] = ACTIONS(8607), + [sym_empty_literal] = ACTIONS(8607), + [sym_date_literal] = ACTIONS(8609), + [anon_sym_POUND] = ACTIONS(8607), + }, + [STATE(4822)] = { + [sym_identifier] = ACTIONS(8162), + [sym_newline] = ACTIONS(8164), + [anon_sym_COLON] = ACTIONS(8164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8162), + [aux_sym_frm_property_statement_token1] = ACTIONS(8162), + [anon_sym_DOT] = ACTIONS(8162), + [anon_sym_BANG] = ACTIONS(8164), + [aux_sym__attribute_identifier_token1] = ACTIONS(8162), + [aux_sym_option_statement_token3] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8162), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8162), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8162), + [aux_sym_preprocessor_const_token1] = ACTIONS(8162), + [sym_static_modifier] = ACTIONS(8162), + [sym__dim_keyword] = ACTIONS(8162), + [sym__redim_keyword] = ACTIONS(8162), + [aux_sym_get_accessor_token1] = ACTIONS(8162), + [aux_sym_set_accessor_token1] = ACTIONS(8162), + [anon_sym_COMMA] = ACTIONS(8164), + [aux_sym_const_declaration_token1] = ACTIONS(8162), + [anon_sym_LPAREN] = ACTIONS(8164), + [aux_sym_as_type_clause_token2] = ACTIONS(8162), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8162), + [aux_sym_visibility_token1] = ACTIONS(8162), + [aux_sym_visibility_token2] = ACTIONS(8162), + [aux_sym_elseif_fragment_token1] = ACTIONS(8162), + [aux_sym_else_fragment_token1] = ACTIONS(8162), + [aux_sym_select_statement_token1] = ACTIONS(8162), + [aux_sym__for_header_token1] = ACTIONS(8162), + [aux_sym_do_statement_token1] = ACTIONS(8162), + [aux_sym_do_condition_token1] = ACTIONS(8162), + [aux_sym_with_statement_token1] = ACTIONS(8162), + [aux_sym_exit_statement_token1] = ACTIONS(8162), + [sym_end_statement] = ACTIONS(8164), + [aux_sym_on_goto_statement_token1] = ACTIONS(8162), + [aux_sym_on_goto_statement_token2] = ACTIONS(8162), + [aux_sym_on_error_statement_token2] = ACTIONS(8162), + [sym__ambiguous_redim_statement] = ACTIONS(8164), + [aux_sym_erase_statement_token1] = ACTIONS(8162), + [aux_sym_open_statement_token1] = ACTIONS(8162), + [aux_sym_file_mode_token2] = ACTIONS(8162), + [aux_sym_file_access_token2] = ACTIONS(8162), + [aux_sym_file_lock_token2] = ACTIONS(8162), + [aux_sym_print_statement_token1] = ACTIONS(8162), + [anon_sym_PLUS] = ACTIONS(8164), + [anon_sym_DASH] = ACTIONS(8162), + [anon_sym_SEMI] = ACTIONS(8164), + [anon_sym_QMARK] = ACTIONS(8164), + [aux_sym_close_statement_token1] = ACTIONS(8162), + [aux_sym_put_statement_token1] = ACTIONS(8162), + [aux_sym_unlock_statement_token1] = ACTIONS(8162), + [aux_sym_seek_statement_token1] = ACTIONS(8162), + [sym_reset_statement] = ACTIONS(8162), + [aux_sym_raise_event_statement_token1] = ACTIONS(8162), + [sym_stop_statement] = ACTIONS(8162), + [sym_beep_statement] = ACTIONS(8162), + [aux_sym_unload_statement_token1] = ACTIONS(8162), + [aux_sym_def_type_statement_token1] = ACTIONS(8162), + [aux_sym_def_type_statement_token2] = ACTIONS(8162), + [aux_sym_def_type_statement_token3] = ACTIONS(8162), + [aux_sym_def_type_statement_token4] = ACTIONS(8162), + [aux_sym_def_type_statement_token5] = ACTIONS(8162), + [aux_sym_def_type_statement_token6] = ACTIONS(8162), + [aux_sym_def_type_statement_token7] = ACTIONS(8162), + [aux_sym_def_type_statement_token8] = ACTIONS(8162), + [aux_sym_def_type_statement_token9] = ACTIONS(8162), + [aux_sym_def_type_statement_token10] = ACTIONS(8162), + [aux_sym_def_type_statement_token11] = ACTIONS(8162), + [aux_sym_def_type_statement_token12] = ACTIONS(8162), + [aux_sym_def_type_statement_token13] = ACTIONS(8162), + [aux_sym_def_type_statement_token14] = ACTIONS(8162), + [aux_sym_call_statement_token1] = ACTIONS(8162), + [sym__ambiguous_call_statement] = ACTIONS(8162), + [aux_sym_addressof_expression_token1] = ACTIONS(8162), + [aux_sym_type_of_expression_token1] = ACTIONS(8162), + [aux_sym_unary_expression_token1] = ACTIONS(8162), + [sym_string_literal] = ACTIONS(8164), + [sym_number_literal] = ACTIONS(8164), + [aux_sym_boolean_literal_token1] = ACTIONS(8162), + [aux_sym_boolean_literal_token2] = ACTIONS(8162), + [sym_nothing_literal] = ACTIONS(8162), + [sym_null_literal] = ACTIONS(8162), + [sym_empty_literal] = ACTIONS(8162), + [sym_date_literal] = ACTIONS(8164), + [anon_sym_POUND] = ACTIONS(8162), + }, + [STATE(4823)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10167), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4824)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10167), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10169), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4825)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10167), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10169), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(10171), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4826)] = { + [sym_identifier] = ACTIONS(7042), + [sym_newline] = ACTIONS(7044), + [anon_sym_COLON] = ACTIONS(7044), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7042), + [aux_sym_frm_property_statement_token1] = ACTIONS(7042), + [anon_sym_DOT] = ACTIONS(7042), + [anon_sym_BANG] = ACTIONS(7044), + [aux_sym__attribute_identifier_token1] = ACTIONS(7042), + [aux_sym_option_statement_token3] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7042), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7042), + [aux_sym_preprocessor_const_token1] = ACTIONS(7042), + [sym_static_modifier] = ACTIONS(7042), + [sym__dim_keyword] = ACTIONS(7042), + [sym__redim_keyword] = ACTIONS(7042), + [aux_sym_get_accessor_token1] = ACTIONS(7042), + [aux_sym_set_accessor_token1] = ACTIONS(7042), + [aux_sym_const_declaration_token1] = ACTIONS(7042), + [anon_sym_LPAREN] = ACTIONS(7044), + [aux_sym_as_type_clause_token2] = ACTIONS(7042), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7042), + [aux_sym_visibility_token1] = ACTIONS(7042), + [aux_sym_visibility_token2] = ACTIONS(7042), + [aux_sym_elseif_fragment_token1] = ACTIONS(7042), + [aux_sym_else_fragment_token1] = ACTIONS(7042), + [aux_sym_select_statement_token1] = ACTIONS(7042), + [aux_sym__for_header_token1] = ACTIONS(7042), + [aux_sym_do_statement_token1] = ACTIONS(7042), + [aux_sym_do_condition_token1] = ACTIONS(7042), + [aux_sym_with_statement_token1] = ACTIONS(7042), + [aux_sym_exit_statement_token1] = ACTIONS(7042), + [sym_end_statement] = ACTIONS(7044), + [aux_sym_on_goto_statement_token1] = ACTIONS(7042), + [aux_sym_on_goto_statement_token2] = ACTIONS(7042), + [aux_sym_on_error_statement_token2] = ACTIONS(7042), + [sym__ambiguous_redim_statement] = ACTIONS(7044), + [aux_sym_erase_statement_token1] = ACTIONS(7042), + [aux_sym_open_statement_token1] = ACTIONS(7042), + [aux_sym_file_mode_token2] = ACTIONS(7042), + [aux_sym_file_access_token2] = ACTIONS(7042), + [aux_sym_file_lock_token2] = ACTIONS(7042), + [aux_sym_print_statement_token1] = ACTIONS(7042), + [anon_sym_PLUS] = ACTIONS(7044), + [anon_sym_DASH] = ACTIONS(7042), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10167), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10169), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(10171), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(10173), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(7042), + [anon_sym_QMARK] = ACTIONS(7044), + [aux_sym_close_statement_token1] = ACTIONS(7042), + [aux_sym_put_statement_token1] = ACTIONS(7042), + [aux_sym_unlock_statement_token1] = ACTIONS(7042), + [aux_sym_seek_statement_token1] = ACTIONS(7042), + [sym_reset_statement] = ACTIONS(7042), + [aux_sym_raise_event_statement_token1] = ACTIONS(7042), + [sym_stop_statement] = ACTIONS(7042), + [sym_beep_statement] = ACTIONS(7042), + [aux_sym_unload_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token1] = ACTIONS(7042), + [aux_sym_def_type_statement_token2] = ACTIONS(7042), + [aux_sym_def_type_statement_token3] = ACTIONS(7042), + [aux_sym_def_type_statement_token4] = ACTIONS(7042), + [aux_sym_def_type_statement_token5] = ACTIONS(7042), + [aux_sym_def_type_statement_token6] = ACTIONS(7042), + [aux_sym_def_type_statement_token7] = ACTIONS(7042), + [aux_sym_def_type_statement_token8] = ACTIONS(7042), + [aux_sym_def_type_statement_token9] = ACTIONS(7042), + [aux_sym_def_type_statement_token10] = ACTIONS(7042), + [aux_sym_def_type_statement_token11] = ACTIONS(7042), + [aux_sym_def_type_statement_token12] = ACTIONS(7042), + [aux_sym_def_type_statement_token13] = ACTIONS(7042), + [aux_sym_def_type_statement_token14] = ACTIONS(7042), + [aux_sym_call_statement_token1] = ACTIONS(7042), + [sym__ambiguous_call_statement] = ACTIONS(7042), + [aux_sym_addressof_expression_token1] = ACTIONS(7042), + [aux_sym_type_of_expression_token1] = ACTIONS(7042), + [aux_sym_unary_expression_token1] = ACTIONS(7042), + [sym_string_literal] = ACTIONS(7044), + [sym_number_literal] = ACTIONS(7044), + [aux_sym_boolean_literal_token1] = ACTIONS(7042), + [aux_sym_boolean_literal_token2] = ACTIONS(7042), + [sym_nothing_literal] = ACTIONS(7042), + [sym_null_literal] = ACTIONS(7042), + [sym_empty_literal] = ACTIONS(7042), + [sym_date_literal] = ACTIONS(7044), + [anon_sym_POUND] = ACTIONS(7042), + }, + [STATE(4827)] = { + [aux_sym_close_statement_repeat1] = STATE(4827), + [sym_identifier] = ACTIONS(8443), + [sym_newline] = ACTIONS(8445), + [anon_sym_COLON] = ACTIONS(8445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8443), + [aux_sym_frm_property_statement_token1] = ACTIONS(8443), + [anon_sym_DOT] = ACTIONS(8443), + [anon_sym_BANG] = ACTIONS(8445), + [aux_sym__attribute_identifier_token1] = ACTIONS(8443), + [aux_sym_option_statement_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8443), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8443), + [aux_sym_preprocessor_const_token1] = ACTIONS(8443), + [sym_static_modifier] = ACTIONS(8443), + [sym__dim_keyword] = ACTIONS(8443), + [sym__redim_keyword] = ACTIONS(8443), + [aux_sym_get_accessor_token1] = ACTIONS(8443), + [aux_sym_set_accessor_token1] = ACTIONS(8443), + [anon_sym_COMMA] = ACTIONS(10237), + [aux_sym_const_declaration_token1] = ACTIONS(8443), + [anon_sym_LPAREN] = ACTIONS(8445), + [aux_sym_as_type_clause_token2] = ACTIONS(8443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8443), + [aux_sym_visibility_token1] = ACTIONS(8443), + [aux_sym_visibility_token2] = ACTIONS(8443), + [aux_sym_elseif_fragment_token1] = ACTIONS(8443), + [aux_sym_else_fragment_token1] = ACTIONS(8443), + [aux_sym_select_statement_token1] = ACTIONS(8443), + [aux_sym__for_header_token1] = ACTIONS(8443), + [aux_sym_do_statement_token1] = ACTIONS(8443), + [aux_sym_do_condition_token1] = ACTIONS(8443), + [aux_sym_with_statement_token1] = ACTIONS(8443), + [aux_sym_exit_statement_token1] = ACTIONS(8443), + [sym_end_statement] = ACTIONS(8445), + [aux_sym_on_goto_statement_token1] = ACTIONS(8443), + [aux_sym_on_goto_statement_token2] = ACTIONS(8443), + [aux_sym_on_error_statement_token2] = ACTIONS(8443), + [sym__ambiguous_redim_statement] = ACTIONS(8445), + [aux_sym_erase_statement_token1] = ACTIONS(8443), + [aux_sym_open_statement_token1] = ACTIONS(8443), + [aux_sym_file_mode_token2] = ACTIONS(8443), + [aux_sym_file_access_token2] = ACTIONS(8443), + [aux_sym_file_lock_token2] = ACTIONS(8443), + [aux_sym_print_statement_token1] = ACTIONS(8443), + [anon_sym_PLUS] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8443), + [anon_sym_QMARK] = ACTIONS(8445), + [aux_sym_close_statement_token1] = ACTIONS(8443), + [aux_sym_put_statement_token1] = ACTIONS(8443), + [aux_sym_unlock_statement_token1] = ACTIONS(8443), + [aux_sym_seek_statement_token1] = ACTIONS(8443), + [sym_reset_statement] = ACTIONS(8443), + [aux_sym_raise_event_statement_token1] = ACTIONS(8443), + [sym_stop_statement] = ACTIONS(8443), + [sym_beep_statement] = ACTIONS(8443), + [aux_sym_unload_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token2] = ACTIONS(8443), + [aux_sym_def_type_statement_token3] = ACTIONS(8443), + [aux_sym_def_type_statement_token4] = ACTIONS(8443), + [aux_sym_def_type_statement_token5] = ACTIONS(8443), + [aux_sym_def_type_statement_token6] = ACTIONS(8443), + [aux_sym_def_type_statement_token7] = ACTIONS(8443), + [aux_sym_def_type_statement_token8] = ACTIONS(8443), + [aux_sym_def_type_statement_token9] = ACTIONS(8443), + [aux_sym_def_type_statement_token10] = ACTIONS(8443), + [aux_sym_def_type_statement_token11] = ACTIONS(8443), + [aux_sym_def_type_statement_token12] = ACTIONS(8443), + [aux_sym_def_type_statement_token13] = ACTIONS(8443), + [aux_sym_def_type_statement_token14] = ACTIONS(8443), + [aux_sym_call_statement_token1] = ACTIONS(8443), + [sym__ambiguous_call_statement] = ACTIONS(8443), + [aux_sym_addressof_expression_token1] = ACTIONS(8443), + [aux_sym_type_of_expression_token1] = ACTIONS(8443), + [aux_sym_unary_expression_token1] = ACTIONS(8443), + [sym_string_literal] = ACTIONS(8445), + [sym_number_literal] = ACTIONS(8445), + [aux_sym_boolean_literal_token1] = ACTIONS(8443), + [aux_sym_boolean_literal_token2] = ACTIONS(8443), + [sym_nothing_literal] = ACTIONS(8443), + [sym_null_literal] = ACTIONS(8443), + [sym_empty_literal] = ACTIONS(8443), + [sym_date_literal] = ACTIONS(8445), + [anon_sym_POUND] = ACTIONS(8443), + }, + [STATE(4828)] = { + [aux_sym_next_variable_list_repeat1] = STATE(4840), + [sym_identifier] = ACTIONS(7939), + [sym_newline] = ACTIONS(7941), + [anon_sym_COLON] = ACTIONS(7941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7939), + [aux_sym_frm_property_statement_token1] = ACTIONS(7939), + [anon_sym_DOT] = ACTIONS(7939), + [anon_sym_BANG] = ACTIONS(7941), + [aux_sym__attribute_identifier_token1] = ACTIONS(7939), + [aux_sym_option_statement_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7939), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7939), + [aux_sym_preprocessor_const_token1] = ACTIONS(7939), + [sym_static_modifier] = ACTIONS(7939), + [sym__dim_keyword] = ACTIONS(7939), + [sym__redim_keyword] = ACTIONS(7939), + [aux_sym_get_accessor_token1] = ACTIONS(7939), + [aux_sym_set_accessor_token1] = ACTIONS(7939), + [anon_sym_COMMA] = ACTIONS(10240), + [aux_sym_const_declaration_token1] = ACTIONS(7939), + [anon_sym_LPAREN] = ACTIONS(7941), + [aux_sym_as_type_clause_token2] = ACTIONS(7939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7939), + [aux_sym_visibility_token1] = ACTIONS(7939), + [aux_sym_visibility_token2] = ACTIONS(7939), + [aux_sym_elseif_fragment_token1] = ACTIONS(7939), + [aux_sym_else_fragment_token1] = ACTIONS(7939), + [aux_sym_select_statement_token1] = ACTIONS(7939), + [aux_sym__for_header_token1] = ACTIONS(7939), + [aux_sym_do_statement_token1] = ACTIONS(7939), + [aux_sym_do_condition_token1] = ACTIONS(7939), + [aux_sym_with_statement_token1] = ACTIONS(7939), + [aux_sym_exit_statement_token1] = ACTIONS(7939), + [sym_end_statement] = ACTIONS(7941), + [aux_sym_on_goto_statement_token1] = ACTIONS(7939), + [aux_sym_on_goto_statement_token2] = ACTIONS(7939), + [aux_sym_on_error_statement_token2] = ACTIONS(7939), + [sym__ambiguous_redim_statement] = ACTIONS(7941), + [aux_sym_erase_statement_token1] = ACTIONS(7939), + [aux_sym_open_statement_token1] = ACTIONS(7939), + [aux_sym_file_mode_token2] = ACTIONS(7939), + [aux_sym_file_access_token2] = ACTIONS(7939), + [aux_sym_file_lock_token2] = ACTIONS(7939), + [aux_sym_print_statement_token1] = ACTIONS(7939), + [anon_sym_PLUS] = ACTIONS(7941), + [anon_sym_DASH] = ACTIONS(7939), + [anon_sym_QMARK] = ACTIONS(7941), + [aux_sym_close_statement_token1] = ACTIONS(7939), + [aux_sym_put_statement_token1] = ACTIONS(7939), + [aux_sym_unlock_statement_token1] = ACTIONS(7939), + [aux_sym_seek_statement_token1] = ACTIONS(7939), + [sym_reset_statement] = ACTIONS(7939), + [aux_sym_raise_event_statement_token1] = ACTIONS(7939), + [sym_stop_statement] = ACTIONS(7939), + [sym_beep_statement] = ACTIONS(7939), + [aux_sym_unload_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token2] = ACTIONS(7939), + [aux_sym_def_type_statement_token3] = ACTIONS(7939), + [aux_sym_def_type_statement_token4] = ACTIONS(7939), + [aux_sym_def_type_statement_token5] = ACTIONS(7939), + [aux_sym_def_type_statement_token6] = ACTIONS(7939), + [aux_sym_def_type_statement_token7] = ACTIONS(7939), + [aux_sym_def_type_statement_token8] = ACTIONS(7939), + [aux_sym_def_type_statement_token9] = ACTIONS(7939), + [aux_sym_def_type_statement_token10] = ACTIONS(7939), + [aux_sym_def_type_statement_token11] = ACTIONS(7939), + [aux_sym_def_type_statement_token12] = ACTIONS(7939), + [aux_sym_def_type_statement_token13] = ACTIONS(7939), + [aux_sym_def_type_statement_token14] = ACTIONS(7939), + [aux_sym_call_statement_token1] = ACTIONS(7939), + [sym__ambiguous_call_statement] = ACTIONS(7939), + [aux_sym_addressof_expression_token1] = ACTIONS(7939), + [aux_sym_type_of_expression_token1] = ACTIONS(7939), + [aux_sym_unary_expression_token1] = ACTIONS(7939), + [sym_string_literal] = ACTIONS(7941), + [sym_number_literal] = ACTIONS(7941), + [aux_sym_boolean_literal_token1] = ACTIONS(7939), + [aux_sym_boolean_literal_token2] = ACTIONS(7939), + [sym_nothing_literal] = ACTIONS(7939), + [sym_null_literal] = ACTIONS(7939), + [sym_empty_literal] = ACTIONS(7939), + [sym_date_literal] = ACTIONS(7941), + [anon_sym_POUND] = ACTIONS(7939), + }, + [STATE(4829)] = { + [sym_do_condition] = STATE(5672), + [sym_identifier] = ACTIONS(8595), + [sym_newline] = ACTIONS(8597), + [anon_sym_COLON] = ACTIONS(8597), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8595), + [aux_sym_frm_property_statement_token1] = ACTIONS(8595), + [anon_sym_DOT] = ACTIONS(8595), + [anon_sym_BANG] = ACTIONS(8597), + [aux_sym__attribute_identifier_token1] = ACTIONS(8595), + [aux_sym_option_statement_token3] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8595), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8595), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8595), + [aux_sym_preprocessor_const_token1] = ACTIONS(8595), + [sym_static_modifier] = ACTIONS(8595), + [sym__dim_keyword] = ACTIONS(8595), + [sym__redim_keyword] = ACTIONS(8595), + [aux_sym_get_accessor_token1] = ACTIONS(8595), + [aux_sym_set_accessor_token1] = ACTIONS(8595), + [aux_sym_const_declaration_token1] = ACTIONS(8595), + [anon_sym_LPAREN] = ACTIONS(8597), + [aux_sym_as_type_clause_token2] = ACTIONS(8595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8595), + [aux_sym_visibility_token1] = ACTIONS(8595), + [aux_sym_visibility_token2] = ACTIONS(8595), + [aux_sym_elseif_fragment_token1] = ACTIONS(8595), + [aux_sym_else_fragment_token1] = ACTIONS(8595), + [aux_sym_select_statement_token1] = ACTIONS(8595), + [aux_sym__for_header_token1] = ACTIONS(8595), + [aux_sym_do_statement_token1] = ACTIONS(8595), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8595), + [aux_sym_exit_statement_token1] = ACTIONS(8595), + [sym_end_statement] = ACTIONS(8597), + [aux_sym_on_goto_statement_token1] = ACTIONS(8595), + [aux_sym_on_goto_statement_token2] = ACTIONS(8595), + [aux_sym_on_error_statement_token2] = ACTIONS(8595), + [sym__ambiguous_redim_statement] = ACTIONS(8597), + [aux_sym_erase_statement_token1] = ACTIONS(8595), + [aux_sym_open_statement_token1] = ACTIONS(8595), + [aux_sym_file_mode_token2] = ACTIONS(8595), + [aux_sym_file_access_token2] = ACTIONS(8595), + [aux_sym_file_lock_token2] = ACTIONS(8595), + [aux_sym_print_statement_token1] = ACTIONS(8595), + [anon_sym_PLUS] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(8595), + [anon_sym_QMARK] = ACTIONS(8597), + [aux_sym_close_statement_token1] = ACTIONS(8595), + [aux_sym_put_statement_token1] = ACTIONS(8595), + [aux_sym_unlock_statement_token1] = ACTIONS(8595), + [aux_sym_seek_statement_token1] = ACTIONS(8595), + [sym_reset_statement] = ACTIONS(8595), + [aux_sym_raise_event_statement_token1] = ACTIONS(8595), + [sym_stop_statement] = ACTIONS(8595), + [sym_beep_statement] = ACTIONS(8595), + [aux_sym_unload_statement_token1] = ACTIONS(8595), + [aux_sym_def_type_statement_token1] = ACTIONS(8595), + [aux_sym_def_type_statement_token2] = ACTIONS(8595), + [aux_sym_def_type_statement_token3] = ACTIONS(8595), + [aux_sym_def_type_statement_token4] = ACTIONS(8595), + [aux_sym_def_type_statement_token5] = ACTIONS(8595), + [aux_sym_def_type_statement_token6] = ACTIONS(8595), + [aux_sym_def_type_statement_token7] = ACTIONS(8595), + [aux_sym_def_type_statement_token8] = ACTIONS(8595), + [aux_sym_def_type_statement_token9] = ACTIONS(8595), + [aux_sym_def_type_statement_token10] = ACTIONS(8595), + [aux_sym_def_type_statement_token11] = ACTIONS(8595), + [aux_sym_def_type_statement_token12] = ACTIONS(8595), + [aux_sym_def_type_statement_token13] = ACTIONS(8595), + [aux_sym_def_type_statement_token14] = ACTIONS(8595), + [aux_sym_call_statement_token1] = ACTIONS(8595), + [sym__ambiguous_call_statement] = ACTIONS(8595), + [aux_sym_addressof_expression_token1] = ACTIONS(8595), + [aux_sym_type_of_expression_token1] = ACTIONS(8595), + [aux_sym_unary_expression_token1] = ACTIONS(8595), + [sym_string_literal] = ACTIONS(8597), + [sym_number_literal] = ACTIONS(8597), + [aux_sym_boolean_literal_token1] = ACTIONS(8595), + [aux_sym_boolean_literal_token2] = ACTIONS(8595), + [sym_nothing_literal] = ACTIONS(8595), + [sym_null_literal] = ACTIONS(8595), + [sym_empty_literal] = ACTIONS(8595), + [sym_date_literal] = ACTIONS(8597), + [anon_sym_POUND] = ACTIONS(8595), + }, + [STATE(4830)] = { + [sym_do_condition] = STATE(5673), + [sym_identifier] = ACTIONS(8599), + [sym_newline] = ACTIONS(8601), + [anon_sym_COLON] = ACTIONS(8601), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8599), + [aux_sym_frm_property_statement_token1] = ACTIONS(8599), + [anon_sym_DOT] = ACTIONS(8599), + [anon_sym_BANG] = ACTIONS(8601), + [aux_sym__attribute_identifier_token1] = ACTIONS(8599), + [aux_sym_option_statement_token3] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8599), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8599), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8599), + [aux_sym_preprocessor_const_token1] = ACTIONS(8599), + [sym_static_modifier] = ACTIONS(8599), + [sym__dim_keyword] = ACTIONS(8599), + [sym__redim_keyword] = ACTIONS(8599), + [aux_sym_get_accessor_token1] = ACTIONS(8599), + [aux_sym_set_accessor_token1] = ACTIONS(8599), + [aux_sym_const_declaration_token1] = ACTIONS(8599), + [anon_sym_LPAREN] = ACTIONS(8601), + [aux_sym_as_type_clause_token2] = ACTIONS(8599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8599), + [aux_sym_visibility_token1] = ACTIONS(8599), + [aux_sym_visibility_token2] = ACTIONS(8599), + [aux_sym_elseif_fragment_token1] = ACTIONS(8599), + [aux_sym_else_fragment_token1] = ACTIONS(8599), + [aux_sym_select_statement_token1] = ACTIONS(8599), + [aux_sym__for_header_token1] = ACTIONS(8599), + [aux_sym_do_statement_token1] = ACTIONS(8599), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8599), + [aux_sym_exit_statement_token1] = ACTIONS(8599), + [sym_end_statement] = ACTIONS(8601), + [aux_sym_on_goto_statement_token1] = ACTIONS(8599), + [aux_sym_on_goto_statement_token2] = ACTIONS(8599), + [aux_sym_on_error_statement_token2] = ACTIONS(8599), + [sym__ambiguous_redim_statement] = ACTIONS(8601), + [aux_sym_erase_statement_token1] = ACTIONS(8599), + [aux_sym_open_statement_token1] = ACTIONS(8599), + [aux_sym_file_mode_token2] = ACTIONS(8599), + [aux_sym_file_access_token2] = ACTIONS(8599), + [aux_sym_file_lock_token2] = ACTIONS(8599), + [aux_sym_print_statement_token1] = ACTIONS(8599), + [anon_sym_PLUS] = ACTIONS(8601), + [anon_sym_DASH] = ACTIONS(8599), + [anon_sym_QMARK] = ACTIONS(8601), + [aux_sym_close_statement_token1] = ACTIONS(8599), + [aux_sym_put_statement_token1] = ACTIONS(8599), + [aux_sym_unlock_statement_token1] = ACTIONS(8599), + [aux_sym_seek_statement_token1] = ACTIONS(8599), + [sym_reset_statement] = ACTIONS(8599), + [aux_sym_raise_event_statement_token1] = ACTIONS(8599), + [sym_stop_statement] = ACTIONS(8599), + [sym_beep_statement] = ACTIONS(8599), + [aux_sym_unload_statement_token1] = ACTIONS(8599), + [aux_sym_def_type_statement_token1] = ACTIONS(8599), + [aux_sym_def_type_statement_token2] = ACTIONS(8599), + [aux_sym_def_type_statement_token3] = ACTIONS(8599), + [aux_sym_def_type_statement_token4] = ACTIONS(8599), + [aux_sym_def_type_statement_token5] = ACTIONS(8599), + [aux_sym_def_type_statement_token6] = ACTIONS(8599), + [aux_sym_def_type_statement_token7] = ACTIONS(8599), + [aux_sym_def_type_statement_token8] = ACTIONS(8599), + [aux_sym_def_type_statement_token9] = ACTIONS(8599), + [aux_sym_def_type_statement_token10] = ACTIONS(8599), + [aux_sym_def_type_statement_token11] = ACTIONS(8599), + [aux_sym_def_type_statement_token12] = ACTIONS(8599), + [aux_sym_def_type_statement_token13] = ACTIONS(8599), + [aux_sym_def_type_statement_token14] = ACTIONS(8599), + [aux_sym_call_statement_token1] = ACTIONS(8599), + [sym__ambiguous_call_statement] = ACTIONS(8599), + [aux_sym_addressof_expression_token1] = ACTIONS(8599), + [aux_sym_type_of_expression_token1] = ACTIONS(8599), + [aux_sym_unary_expression_token1] = ACTIONS(8599), + [sym_string_literal] = ACTIONS(8601), + [sym_number_literal] = ACTIONS(8601), + [aux_sym_boolean_literal_token1] = ACTIONS(8599), + [aux_sym_boolean_literal_token2] = ACTIONS(8599), + [sym_nothing_literal] = ACTIONS(8599), + [sym_null_literal] = ACTIONS(8599), + [sym_empty_literal] = ACTIONS(8599), + [sym_date_literal] = ACTIONS(8601), + [anon_sym_POUND] = ACTIONS(8599), + }, + [STATE(4831)] = { + [aux_sym__argument_sequence_repeat2] = STATE(4895), + [sym_identifier] = ACTIONS(4172), + [sym_newline] = ACTIONS(4170), + [anon_sym_COLON] = ACTIONS(4170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4172), + [aux_sym_frm_property_statement_token1] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [aux_sym__attribute_identifier_token1] = ACTIONS(4172), + [aux_sym_option_statement_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4172), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4172), + [aux_sym_preprocessor_const_token1] = ACTIONS(4172), + [sym_static_modifier] = ACTIONS(4172), + [sym__dim_keyword] = ACTIONS(4172), + [sym__redim_keyword] = ACTIONS(4172), + [aux_sym_get_accessor_token1] = ACTIONS(4172), + [aux_sym_set_accessor_token1] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(5034), + [aux_sym_const_declaration_token1] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4170), + [aux_sym_as_type_clause_token2] = ACTIONS(4172), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4172), + [aux_sym_visibility_token1] = ACTIONS(4172), + [aux_sym_visibility_token2] = ACTIONS(4172), + [aux_sym_elseif_fragment_token1] = ACTIONS(4172), + [aux_sym_else_fragment_token1] = ACTIONS(4172), + [aux_sym_select_statement_token1] = ACTIONS(4172), + [aux_sym__for_header_token1] = ACTIONS(4172), + [aux_sym_do_statement_token1] = ACTIONS(4172), + [aux_sym_do_condition_token1] = ACTIONS(4172), + [aux_sym_with_statement_token1] = ACTIONS(4172), + [aux_sym_exit_statement_token1] = ACTIONS(4172), + [sym_end_statement] = ACTIONS(4170), + [aux_sym_on_goto_statement_token1] = ACTIONS(4172), + [aux_sym_on_goto_statement_token2] = ACTIONS(4172), + [aux_sym_on_error_statement_token2] = ACTIONS(4172), + [sym__ambiguous_redim_statement] = ACTIONS(4170), + [aux_sym_erase_statement_token1] = ACTIONS(4172), + [aux_sym_open_statement_token1] = ACTIONS(4172), + [aux_sym_file_mode_token2] = ACTIONS(4172), + [aux_sym_file_access_token2] = ACTIONS(4172), + [aux_sym_file_lock_token2] = ACTIONS(4172), + [aux_sym_print_statement_token1] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4172), + [anon_sym_QMARK] = ACTIONS(4170), + [aux_sym_close_statement_token1] = ACTIONS(4172), + [aux_sym_put_statement_token1] = ACTIONS(4172), + [aux_sym_unlock_statement_token1] = ACTIONS(4172), + [aux_sym_seek_statement_token1] = ACTIONS(4172), + [sym_reset_statement] = ACTIONS(4172), + [aux_sym_raise_event_statement_token1] = ACTIONS(4172), + [sym_stop_statement] = ACTIONS(4172), + [sym_beep_statement] = ACTIONS(4172), + [aux_sym_unload_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token2] = ACTIONS(4172), + [aux_sym_def_type_statement_token3] = ACTIONS(4172), + [aux_sym_def_type_statement_token4] = ACTIONS(4172), + [aux_sym_def_type_statement_token5] = ACTIONS(4172), + [aux_sym_def_type_statement_token6] = ACTIONS(4172), + [aux_sym_def_type_statement_token7] = ACTIONS(4172), + [aux_sym_def_type_statement_token8] = ACTIONS(4172), + [aux_sym_def_type_statement_token9] = ACTIONS(4172), + [aux_sym_def_type_statement_token10] = ACTIONS(4172), + [aux_sym_def_type_statement_token11] = ACTIONS(4172), + [aux_sym_def_type_statement_token12] = ACTIONS(4172), + [aux_sym_def_type_statement_token13] = ACTIONS(4172), + [aux_sym_def_type_statement_token14] = ACTIONS(4172), + [aux_sym_call_statement_token1] = ACTIONS(4172), + [sym__ambiguous_call_statement] = ACTIONS(4172), + [aux_sym_addressof_expression_token1] = ACTIONS(4172), + [aux_sym_type_of_expression_token1] = ACTIONS(4172), + [aux_sym_unary_expression_token1] = ACTIONS(4172), + [sym_string_literal] = ACTIONS(4170), + [sym_number_literal] = ACTIONS(4170), + [aux_sym_boolean_literal_token1] = ACTIONS(4172), + [aux_sym_boolean_literal_token2] = ACTIONS(4172), + [sym_nothing_literal] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4172), + [sym_empty_literal] = ACTIONS(4172), + [sym_date_literal] = ACTIONS(4170), + [anon_sym_POUND] = ACTIONS(4172), + }, + [STATE(4832)] = { + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(4832), + [sym_identifier] = ACTIONS(8109), + [sym_newline] = ACTIONS(8111), + [anon_sym_COLON] = ACTIONS(8111), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8109), + [aux_sym_frm_property_statement_token1] = ACTIONS(8109), + [anon_sym_DOT] = ACTIONS(8109), + [anon_sym_BANG] = ACTIONS(8111), + [aux_sym__attribute_identifier_token1] = ACTIONS(8109), + [aux_sym_option_statement_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8109), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8109), + [aux_sym_preprocessor_const_token1] = ACTIONS(8109), + [sym_static_modifier] = ACTIONS(8109), + [sym__dim_keyword] = ACTIONS(8109), + [sym__redim_keyword] = ACTIONS(8109), + [aux_sym_get_accessor_token1] = ACTIONS(8109), + [aux_sym_set_accessor_token1] = ACTIONS(8109), + [aux_sym_const_declaration_token1] = ACTIONS(8109), + [anon_sym_LPAREN] = ACTIONS(8111), + [aux_sym_as_type_clause_token2] = ACTIONS(8109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8109), + [aux_sym_visibility_token1] = ACTIONS(8109), + [aux_sym_visibility_token2] = ACTIONS(8109), + [aux_sym_elseif_fragment_token1] = ACTIONS(8109), + [aux_sym_else_fragment_token1] = ACTIONS(8109), + [aux_sym_select_statement_token1] = ACTIONS(8109), + [aux_sym__for_header_token1] = ACTIONS(8109), + [aux_sym_do_statement_token1] = ACTIONS(8109), + [aux_sym_do_condition_token1] = ACTIONS(8109), + [aux_sym_with_statement_token1] = ACTIONS(8109), + [aux_sym_exit_statement_token1] = ACTIONS(8109), + [sym_end_statement] = ACTIONS(8111), + [aux_sym_on_goto_statement_token1] = ACTIONS(8109), + [aux_sym_on_goto_statement_token2] = ACTIONS(8109), + [aux_sym_on_error_statement_token2] = ACTIONS(8109), + [sym__ambiguous_redim_statement] = ACTIONS(8111), + [aux_sym_erase_statement_token1] = ACTIONS(8109), + [aux_sym_open_statement_token1] = ACTIONS(8109), + [aux_sym_file_mode_token2] = ACTIONS(8109), + [aux_sym_file_access_token2] = ACTIONS(8109), + [aux_sym_file_lock_token2] = ACTIONS(8109), + [aux_sym_print_statement_token1] = ACTIONS(8109), + [anon_sym_PLUS] = ACTIONS(8111), + [anon_sym_DASH] = ACTIONS(8109), + [anon_sym_SEMI] = ACTIONS(10242), + [anon_sym_QMARK] = ACTIONS(8111), + [aux_sym_close_statement_token1] = ACTIONS(8109), + [aux_sym_put_statement_token1] = ACTIONS(8109), + [aux_sym_unlock_statement_token1] = ACTIONS(8109), + [aux_sym_seek_statement_token1] = ACTIONS(8109), + [sym_reset_statement] = ACTIONS(8109), + [aux_sym_raise_event_statement_token1] = ACTIONS(8109), + [sym_stop_statement] = ACTIONS(8109), + [sym_beep_statement] = ACTIONS(8109), + [aux_sym_unload_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token2] = ACTIONS(8109), + [aux_sym_def_type_statement_token3] = ACTIONS(8109), + [aux_sym_def_type_statement_token4] = ACTIONS(8109), + [aux_sym_def_type_statement_token5] = ACTIONS(8109), + [aux_sym_def_type_statement_token6] = ACTIONS(8109), + [aux_sym_def_type_statement_token7] = ACTIONS(8109), + [aux_sym_def_type_statement_token8] = ACTIONS(8109), + [aux_sym_def_type_statement_token9] = ACTIONS(8109), + [aux_sym_def_type_statement_token10] = ACTIONS(8109), + [aux_sym_def_type_statement_token11] = ACTIONS(8109), + [aux_sym_def_type_statement_token12] = ACTIONS(8109), + [aux_sym_def_type_statement_token13] = ACTIONS(8109), + [aux_sym_def_type_statement_token14] = ACTIONS(8109), + [aux_sym_call_statement_token1] = ACTIONS(8109), + [sym__ambiguous_call_statement] = ACTIONS(8109), + [aux_sym_addressof_expression_token1] = ACTIONS(8109), + [aux_sym_type_of_expression_token1] = ACTIONS(8109), + [aux_sym_unary_expression_token1] = ACTIONS(8109), + [sym_string_literal] = ACTIONS(8111), + [sym_number_literal] = ACTIONS(8111), + [aux_sym_boolean_literal_token1] = ACTIONS(8109), + [aux_sym_boolean_literal_token2] = ACTIONS(8109), + [sym_nothing_literal] = ACTIONS(8109), + [sym_null_literal] = ACTIONS(8109), + [sym_empty_literal] = ACTIONS(8109), + [sym_date_literal] = ACTIONS(8111), + [anon_sym_POUND] = ACTIONS(8109), + }, + [STATE(4833)] = { + [sym_do_condition] = STATE(5681), + [sym_identifier] = ACTIONS(8188), + [sym_newline] = ACTIONS(8190), + [anon_sym_COLON] = ACTIONS(8190), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8188), + [aux_sym_frm_property_statement_token1] = ACTIONS(8188), + [anon_sym_DOT] = ACTIONS(8188), + [anon_sym_BANG] = ACTIONS(8190), + [aux_sym__attribute_identifier_token1] = ACTIONS(8188), + [aux_sym_option_statement_token3] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8188), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8188), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8188), + [aux_sym_preprocessor_const_token1] = ACTIONS(8188), + [sym_static_modifier] = ACTIONS(8188), + [sym__dim_keyword] = ACTIONS(8188), + [sym__redim_keyword] = ACTIONS(8188), + [aux_sym_get_accessor_token1] = ACTIONS(8188), + [aux_sym_set_accessor_token1] = ACTIONS(8188), + [aux_sym_const_declaration_token1] = ACTIONS(8188), + [anon_sym_LPAREN] = ACTIONS(8190), + [aux_sym_as_type_clause_token2] = ACTIONS(8188), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8188), + [aux_sym_visibility_token1] = ACTIONS(8188), + [aux_sym_visibility_token2] = ACTIONS(8188), + [aux_sym_elseif_fragment_token1] = ACTIONS(8188), + [aux_sym_else_fragment_token1] = ACTIONS(8188), + [aux_sym_select_statement_token1] = ACTIONS(8188), + [aux_sym__for_header_token1] = ACTIONS(8188), + [aux_sym_do_statement_token1] = ACTIONS(8188), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8188), + [aux_sym_exit_statement_token1] = ACTIONS(8188), + [sym_end_statement] = ACTIONS(8190), + [aux_sym_on_goto_statement_token1] = ACTIONS(8188), + [aux_sym_on_goto_statement_token2] = ACTIONS(8188), + [aux_sym_on_error_statement_token2] = ACTIONS(8188), + [sym__ambiguous_redim_statement] = ACTIONS(8190), + [aux_sym_erase_statement_token1] = ACTIONS(8188), + [aux_sym_open_statement_token1] = ACTIONS(8188), + [aux_sym_file_mode_token2] = ACTIONS(8188), + [aux_sym_file_access_token2] = ACTIONS(8188), + [aux_sym_file_lock_token2] = ACTIONS(8188), + [aux_sym_print_statement_token1] = ACTIONS(8188), + [anon_sym_PLUS] = ACTIONS(8190), + [anon_sym_DASH] = ACTIONS(8188), + [anon_sym_QMARK] = ACTIONS(8190), + [aux_sym_close_statement_token1] = ACTIONS(8188), + [aux_sym_put_statement_token1] = ACTIONS(8188), + [aux_sym_unlock_statement_token1] = ACTIONS(8188), + [aux_sym_seek_statement_token1] = ACTIONS(8188), + [sym_reset_statement] = ACTIONS(8188), + [aux_sym_raise_event_statement_token1] = ACTIONS(8188), + [sym_stop_statement] = ACTIONS(8188), + [sym_beep_statement] = ACTIONS(8188), + [aux_sym_unload_statement_token1] = ACTIONS(8188), + [aux_sym_def_type_statement_token1] = ACTIONS(8188), + [aux_sym_def_type_statement_token2] = ACTIONS(8188), + [aux_sym_def_type_statement_token3] = ACTIONS(8188), + [aux_sym_def_type_statement_token4] = ACTIONS(8188), + [aux_sym_def_type_statement_token5] = ACTIONS(8188), + [aux_sym_def_type_statement_token6] = ACTIONS(8188), + [aux_sym_def_type_statement_token7] = ACTIONS(8188), + [aux_sym_def_type_statement_token8] = ACTIONS(8188), + [aux_sym_def_type_statement_token9] = ACTIONS(8188), + [aux_sym_def_type_statement_token10] = ACTIONS(8188), + [aux_sym_def_type_statement_token11] = ACTIONS(8188), + [aux_sym_def_type_statement_token12] = ACTIONS(8188), + [aux_sym_def_type_statement_token13] = ACTIONS(8188), + [aux_sym_def_type_statement_token14] = ACTIONS(8188), + [aux_sym_call_statement_token1] = ACTIONS(8188), + [sym__ambiguous_call_statement] = ACTIONS(8188), + [aux_sym_addressof_expression_token1] = ACTIONS(8188), + [aux_sym_type_of_expression_token1] = ACTIONS(8188), + [aux_sym_unary_expression_token1] = ACTIONS(8188), + [sym_string_literal] = ACTIONS(8190), + [sym_number_literal] = ACTIONS(8190), + [aux_sym_boolean_literal_token1] = ACTIONS(8188), + [aux_sym_boolean_literal_token2] = ACTIONS(8188), + [sym_nothing_literal] = ACTIONS(8188), + [sym_null_literal] = ACTIONS(8188), + [sym_empty_literal] = ACTIONS(8188), + [sym_date_literal] = ACTIONS(8190), + [anon_sym_POUND] = ACTIONS(8188), + }, + [STATE(4834)] = { + [sym_do_condition] = STATE(5682), + [sym_identifier] = ACTIONS(8192), + [sym_newline] = ACTIONS(8194), + [anon_sym_COLON] = ACTIONS(8194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8192), + [aux_sym_frm_property_statement_token1] = ACTIONS(8192), + [anon_sym_DOT] = ACTIONS(8192), + [anon_sym_BANG] = ACTIONS(8194), + [aux_sym__attribute_identifier_token1] = ACTIONS(8192), + [aux_sym_option_statement_token3] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8192), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8192), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8192), + [aux_sym_preprocessor_const_token1] = ACTIONS(8192), + [sym_static_modifier] = ACTIONS(8192), + [sym__dim_keyword] = ACTIONS(8192), + [sym__redim_keyword] = ACTIONS(8192), + [aux_sym_get_accessor_token1] = ACTIONS(8192), + [aux_sym_set_accessor_token1] = ACTIONS(8192), + [aux_sym_const_declaration_token1] = ACTIONS(8192), + [anon_sym_LPAREN] = ACTIONS(8194), + [aux_sym_as_type_clause_token2] = ACTIONS(8192), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8192), + [aux_sym_visibility_token1] = ACTIONS(8192), + [aux_sym_visibility_token2] = ACTIONS(8192), + [aux_sym_elseif_fragment_token1] = ACTIONS(8192), + [aux_sym_else_fragment_token1] = ACTIONS(8192), + [aux_sym_select_statement_token1] = ACTIONS(8192), + [aux_sym__for_header_token1] = ACTIONS(8192), + [aux_sym_do_statement_token1] = ACTIONS(8192), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8192), + [aux_sym_exit_statement_token1] = ACTIONS(8192), + [sym_end_statement] = ACTIONS(8194), + [aux_sym_on_goto_statement_token1] = ACTIONS(8192), + [aux_sym_on_goto_statement_token2] = ACTIONS(8192), + [aux_sym_on_error_statement_token2] = ACTIONS(8192), + [sym__ambiguous_redim_statement] = ACTIONS(8194), + [aux_sym_erase_statement_token1] = ACTIONS(8192), + [aux_sym_open_statement_token1] = ACTIONS(8192), + [aux_sym_file_mode_token2] = ACTIONS(8192), + [aux_sym_file_access_token2] = ACTIONS(8192), + [aux_sym_file_lock_token2] = ACTIONS(8192), + [aux_sym_print_statement_token1] = ACTIONS(8192), + [anon_sym_PLUS] = ACTIONS(8194), + [anon_sym_DASH] = ACTIONS(8192), + [anon_sym_QMARK] = ACTIONS(8194), + [aux_sym_close_statement_token1] = ACTIONS(8192), + [aux_sym_put_statement_token1] = ACTIONS(8192), + [aux_sym_unlock_statement_token1] = ACTIONS(8192), + [aux_sym_seek_statement_token1] = ACTIONS(8192), + [sym_reset_statement] = ACTIONS(8192), + [aux_sym_raise_event_statement_token1] = ACTIONS(8192), + [sym_stop_statement] = ACTIONS(8192), + [sym_beep_statement] = ACTIONS(8192), + [aux_sym_unload_statement_token1] = ACTIONS(8192), + [aux_sym_def_type_statement_token1] = ACTIONS(8192), + [aux_sym_def_type_statement_token2] = ACTIONS(8192), + [aux_sym_def_type_statement_token3] = ACTIONS(8192), + [aux_sym_def_type_statement_token4] = ACTIONS(8192), + [aux_sym_def_type_statement_token5] = ACTIONS(8192), + [aux_sym_def_type_statement_token6] = ACTIONS(8192), + [aux_sym_def_type_statement_token7] = ACTIONS(8192), + [aux_sym_def_type_statement_token8] = ACTIONS(8192), + [aux_sym_def_type_statement_token9] = ACTIONS(8192), + [aux_sym_def_type_statement_token10] = ACTIONS(8192), + [aux_sym_def_type_statement_token11] = ACTIONS(8192), + [aux_sym_def_type_statement_token12] = ACTIONS(8192), + [aux_sym_def_type_statement_token13] = ACTIONS(8192), + [aux_sym_def_type_statement_token14] = ACTIONS(8192), + [aux_sym_call_statement_token1] = ACTIONS(8192), + [sym__ambiguous_call_statement] = ACTIONS(8192), + [aux_sym_addressof_expression_token1] = ACTIONS(8192), + [aux_sym_type_of_expression_token1] = ACTIONS(8192), + [aux_sym_unary_expression_token1] = ACTIONS(8192), + [sym_string_literal] = ACTIONS(8194), + [sym_number_literal] = ACTIONS(8194), + [aux_sym_boolean_literal_token1] = ACTIONS(8192), + [aux_sym_boolean_literal_token2] = ACTIONS(8192), + [sym_nothing_literal] = ACTIONS(8192), + [sym_null_literal] = ACTIONS(8192), + [sym_empty_literal] = ACTIONS(8192), + [sym_date_literal] = ACTIONS(8194), + [anon_sym_POUND] = ACTIONS(8192), + }, + [STATE(4835)] = { + [sym_do_condition] = STATE(5684), + [sym_identifier] = ACTIONS(8203), + [sym_newline] = ACTIONS(8205), + [anon_sym_COLON] = ACTIONS(8205), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8203), + [aux_sym_frm_property_statement_token1] = ACTIONS(8203), + [anon_sym_DOT] = ACTIONS(8203), + [anon_sym_BANG] = ACTIONS(8205), + [aux_sym__attribute_identifier_token1] = ACTIONS(8203), + [aux_sym_option_statement_token3] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8203), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8203), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8203), + [aux_sym_preprocessor_const_token1] = ACTIONS(8203), + [sym_static_modifier] = ACTIONS(8203), + [sym__dim_keyword] = ACTIONS(8203), + [sym__redim_keyword] = ACTIONS(8203), + [aux_sym_get_accessor_token1] = ACTIONS(8203), + [aux_sym_set_accessor_token1] = ACTIONS(8203), + [aux_sym_const_declaration_token1] = ACTIONS(8203), + [anon_sym_LPAREN] = ACTIONS(8205), + [aux_sym_as_type_clause_token2] = ACTIONS(8203), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8203), + [aux_sym_visibility_token1] = ACTIONS(8203), + [aux_sym_visibility_token2] = ACTIONS(8203), + [aux_sym_elseif_fragment_token1] = ACTIONS(8203), + [aux_sym_else_fragment_token1] = ACTIONS(8203), + [aux_sym_select_statement_token1] = ACTIONS(8203), + [aux_sym__for_header_token1] = ACTIONS(8203), + [aux_sym_do_statement_token1] = ACTIONS(8203), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8203), + [aux_sym_exit_statement_token1] = ACTIONS(8203), + [sym_end_statement] = ACTIONS(8205), + [aux_sym_on_goto_statement_token1] = ACTIONS(8203), + [aux_sym_on_goto_statement_token2] = ACTIONS(8203), + [aux_sym_on_error_statement_token2] = ACTIONS(8203), + [sym__ambiguous_redim_statement] = ACTIONS(8205), + [aux_sym_erase_statement_token1] = ACTIONS(8203), + [aux_sym_open_statement_token1] = ACTIONS(8203), + [aux_sym_file_mode_token2] = ACTIONS(8203), + [aux_sym_file_access_token2] = ACTIONS(8203), + [aux_sym_file_lock_token2] = ACTIONS(8203), + [aux_sym_print_statement_token1] = ACTIONS(8203), + [anon_sym_PLUS] = ACTIONS(8205), + [anon_sym_DASH] = ACTIONS(8203), + [anon_sym_QMARK] = ACTIONS(8205), + [aux_sym_close_statement_token1] = ACTIONS(8203), + [aux_sym_put_statement_token1] = ACTIONS(8203), + [aux_sym_unlock_statement_token1] = ACTIONS(8203), + [aux_sym_seek_statement_token1] = ACTIONS(8203), + [sym_reset_statement] = ACTIONS(8203), + [aux_sym_raise_event_statement_token1] = ACTIONS(8203), + [sym_stop_statement] = ACTIONS(8203), + [sym_beep_statement] = ACTIONS(8203), + [aux_sym_unload_statement_token1] = ACTIONS(8203), + [aux_sym_def_type_statement_token1] = ACTIONS(8203), + [aux_sym_def_type_statement_token2] = ACTIONS(8203), + [aux_sym_def_type_statement_token3] = ACTIONS(8203), + [aux_sym_def_type_statement_token4] = ACTIONS(8203), + [aux_sym_def_type_statement_token5] = ACTIONS(8203), + [aux_sym_def_type_statement_token6] = ACTIONS(8203), + [aux_sym_def_type_statement_token7] = ACTIONS(8203), + [aux_sym_def_type_statement_token8] = ACTIONS(8203), + [aux_sym_def_type_statement_token9] = ACTIONS(8203), + [aux_sym_def_type_statement_token10] = ACTIONS(8203), + [aux_sym_def_type_statement_token11] = ACTIONS(8203), + [aux_sym_def_type_statement_token12] = ACTIONS(8203), + [aux_sym_def_type_statement_token13] = ACTIONS(8203), + [aux_sym_def_type_statement_token14] = ACTIONS(8203), + [aux_sym_call_statement_token1] = ACTIONS(8203), + [sym__ambiguous_call_statement] = ACTIONS(8203), + [aux_sym_addressof_expression_token1] = ACTIONS(8203), + [aux_sym_type_of_expression_token1] = ACTIONS(8203), + [aux_sym_unary_expression_token1] = ACTIONS(8203), + [sym_string_literal] = ACTIONS(8205), + [sym_number_literal] = ACTIONS(8205), + [aux_sym_boolean_literal_token1] = ACTIONS(8203), + [aux_sym_boolean_literal_token2] = ACTIONS(8203), + [sym_nothing_literal] = ACTIONS(8203), + [sym_null_literal] = ACTIONS(8203), + [sym_empty_literal] = ACTIONS(8203), + [sym_date_literal] = ACTIONS(8205), + [anon_sym_POUND] = ACTIONS(8203), + }, + [STATE(4836)] = { + [sym_do_condition] = STATE(5685), + [sym_identifier] = ACTIONS(8213), + [sym_newline] = ACTIONS(8215), + [anon_sym_COLON] = ACTIONS(8215), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8213), + [aux_sym_frm_property_statement_token1] = ACTIONS(8213), + [anon_sym_DOT] = ACTIONS(8213), + [anon_sym_BANG] = ACTIONS(8215), + [aux_sym__attribute_identifier_token1] = ACTIONS(8213), + [aux_sym_option_statement_token3] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8213), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8213), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8213), + [aux_sym_preprocessor_const_token1] = ACTIONS(8213), + [sym_static_modifier] = ACTIONS(8213), + [sym__dim_keyword] = ACTIONS(8213), + [sym__redim_keyword] = ACTIONS(8213), + [aux_sym_get_accessor_token1] = ACTIONS(8213), + [aux_sym_set_accessor_token1] = ACTIONS(8213), + [aux_sym_const_declaration_token1] = ACTIONS(8213), + [anon_sym_LPAREN] = ACTIONS(8215), + [aux_sym_as_type_clause_token2] = ACTIONS(8213), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8213), + [aux_sym_visibility_token1] = ACTIONS(8213), + [aux_sym_visibility_token2] = ACTIONS(8213), + [aux_sym_elseif_fragment_token1] = ACTIONS(8213), + [aux_sym_else_fragment_token1] = ACTIONS(8213), + [aux_sym_select_statement_token1] = ACTIONS(8213), + [aux_sym__for_header_token1] = ACTIONS(8213), + [aux_sym_do_statement_token1] = ACTIONS(8213), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8213), + [aux_sym_exit_statement_token1] = ACTIONS(8213), + [sym_end_statement] = ACTIONS(8215), + [aux_sym_on_goto_statement_token1] = ACTIONS(8213), + [aux_sym_on_goto_statement_token2] = ACTIONS(8213), + [aux_sym_on_error_statement_token2] = ACTIONS(8213), + [sym__ambiguous_redim_statement] = ACTIONS(8215), + [aux_sym_erase_statement_token1] = ACTIONS(8213), + [aux_sym_open_statement_token1] = ACTIONS(8213), + [aux_sym_file_mode_token2] = ACTIONS(8213), + [aux_sym_file_access_token2] = ACTIONS(8213), + [aux_sym_file_lock_token2] = ACTIONS(8213), + [aux_sym_print_statement_token1] = ACTIONS(8213), + [anon_sym_PLUS] = ACTIONS(8215), + [anon_sym_DASH] = ACTIONS(8213), + [anon_sym_QMARK] = ACTIONS(8215), + [aux_sym_close_statement_token1] = ACTIONS(8213), + [aux_sym_put_statement_token1] = ACTIONS(8213), + [aux_sym_unlock_statement_token1] = ACTIONS(8213), + [aux_sym_seek_statement_token1] = ACTIONS(8213), + [sym_reset_statement] = ACTIONS(8213), + [aux_sym_raise_event_statement_token1] = ACTIONS(8213), + [sym_stop_statement] = ACTIONS(8213), + [sym_beep_statement] = ACTIONS(8213), + [aux_sym_unload_statement_token1] = ACTIONS(8213), + [aux_sym_def_type_statement_token1] = ACTIONS(8213), + [aux_sym_def_type_statement_token2] = ACTIONS(8213), + [aux_sym_def_type_statement_token3] = ACTIONS(8213), + [aux_sym_def_type_statement_token4] = ACTIONS(8213), + [aux_sym_def_type_statement_token5] = ACTIONS(8213), + [aux_sym_def_type_statement_token6] = ACTIONS(8213), + [aux_sym_def_type_statement_token7] = ACTIONS(8213), + [aux_sym_def_type_statement_token8] = ACTIONS(8213), + [aux_sym_def_type_statement_token9] = ACTIONS(8213), + [aux_sym_def_type_statement_token10] = ACTIONS(8213), + [aux_sym_def_type_statement_token11] = ACTIONS(8213), + [aux_sym_def_type_statement_token12] = ACTIONS(8213), + [aux_sym_def_type_statement_token13] = ACTIONS(8213), + [aux_sym_def_type_statement_token14] = ACTIONS(8213), + [aux_sym_call_statement_token1] = ACTIONS(8213), + [sym__ambiguous_call_statement] = ACTIONS(8213), + [aux_sym_addressof_expression_token1] = ACTIONS(8213), + [aux_sym_type_of_expression_token1] = ACTIONS(8213), + [aux_sym_unary_expression_token1] = ACTIONS(8213), + [sym_string_literal] = ACTIONS(8215), + [sym_number_literal] = ACTIONS(8215), + [aux_sym_boolean_literal_token1] = ACTIONS(8213), + [aux_sym_boolean_literal_token2] = ACTIONS(8213), + [sym_nothing_literal] = ACTIONS(8213), + [sym_null_literal] = ACTIONS(8213), + [sym_empty_literal] = ACTIONS(8213), + [sym_date_literal] = ACTIONS(8215), + [anon_sym_POUND] = ACTIONS(8213), + }, + [STATE(4837)] = { + [sym_do_condition] = STATE(5687), + [sym_identifier] = ACTIONS(8217), + [sym_newline] = ACTIONS(8219), + [anon_sym_COLON] = ACTIONS(8219), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8217), + [aux_sym_frm_property_statement_token1] = ACTIONS(8217), + [anon_sym_DOT] = ACTIONS(8217), + [anon_sym_BANG] = ACTIONS(8219), + [aux_sym__attribute_identifier_token1] = ACTIONS(8217), + [aux_sym_option_statement_token3] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8217), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8217), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8217), + [aux_sym_preprocessor_const_token1] = ACTIONS(8217), + [sym_static_modifier] = ACTIONS(8217), + [sym__dim_keyword] = ACTIONS(8217), + [sym__redim_keyword] = ACTIONS(8217), + [aux_sym_get_accessor_token1] = ACTIONS(8217), + [aux_sym_set_accessor_token1] = ACTIONS(8217), + [aux_sym_const_declaration_token1] = ACTIONS(8217), + [anon_sym_LPAREN] = ACTIONS(8219), + [aux_sym_as_type_clause_token2] = ACTIONS(8217), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8217), + [aux_sym_visibility_token1] = ACTIONS(8217), + [aux_sym_visibility_token2] = ACTIONS(8217), + [aux_sym_elseif_fragment_token1] = ACTIONS(8217), + [aux_sym_else_fragment_token1] = ACTIONS(8217), + [aux_sym_select_statement_token1] = ACTIONS(8217), + [aux_sym__for_header_token1] = ACTIONS(8217), + [aux_sym_do_statement_token1] = ACTIONS(8217), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8217), + [aux_sym_exit_statement_token1] = ACTIONS(8217), + [sym_end_statement] = ACTIONS(8219), + [aux_sym_on_goto_statement_token1] = ACTIONS(8217), + [aux_sym_on_goto_statement_token2] = ACTIONS(8217), + [aux_sym_on_error_statement_token2] = ACTIONS(8217), + [sym__ambiguous_redim_statement] = ACTIONS(8219), + [aux_sym_erase_statement_token1] = ACTIONS(8217), + [aux_sym_open_statement_token1] = ACTIONS(8217), + [aux_sym_file_mode_token2] = ACTIONS(8217), + [aux_sym_file_access_token2] = ACTIONS(8217), + [aux_sym_file_lock_token2] = ACTIONS(8217), + [aux_sym_print_statement_token1] = ACTIONS(8217), + [anon_sym_PLUS] = ACTIONS(8219), + [anon_sym_DASH] = ACTIONS(8217), + [anon_sym_QMARK] = ACTIONS(8219), + [aux_sym_close_statement_token1] = ACTIONS(8217), + [aux_sym_put_statement_token1] = ACTIONS(8217), + [aux_sym_unlock_statement_token1] = ACTIONS(8217), + [aux_sym_seek_statement_token1] = ACTIONS(8217), + [sym_reset_statement] = ACTIONS(8217), + [aux_sym_raise_event_statement_token1] = ACTIONS(8217), + [sym_stop_statement] = ACTIONS(8217), + [sym_beep_statement] = ACTIONS(8217), + [aux_sym_unload_statement_token1] = ACTIONS(8217), + [aux_sym_def_type_statement_token1] = ACTIONS(8217), + [aux_sym_def_type_statement_token2] = ACTIONS(8217), + [aux_sym_def_type_statement_token3] = ACTIONS(8217), + [aux_sym_def_type_statement_token4] = ACTIONS(8217), + [aux_sym_def_type_statement_token5] = ACTIONS(8217), + [aux_sym_def_type_statement_token6] = ACTIONS(8217), + [aux_sym_def_type_statement_token7] = ACTIONS(8217), + [aux_sym_def_type_statement_token8] = ACTIONS(8217), + [aux_sym_def_type_statement_token9] = ACTIONS(8217), + [aux_sym_def_type_statement_token10] = ACTIONS(8217), + [aux_sym_def_type_statement_token11] = ACTIONS(8217), + [aux_sym_def_type_statement_token12] = ACTIONS(8217), + [aux_sym_def_type_statement_token13] = ACTIONS(8217), + [aux_sym_def_type_statement_token14] = ACTIONS(8217), + [aux_sym_call_statement_token1] = ACTIONS(8217), + [sym__ambiguous_call_statement] = ACTIONS(8217), + [aux_sym_addressof_expression_token1] = ACTIONS(8217), + [aux_sym_type_of_expression_token1] = ACTIONS(8217), + [aux_sym_unary_expression_token1] = ACTIONS(8217), + [sym_string_literal] = ACTIONS(8219), + [sym_number_literal] = ACTIONS(8219), + [aux_sym_boolean_literal_token1] = ACTIONS(8217), + [aux_sym_boolean_literal_token2] = ACTIONS(8217), + [sym_nothing_literal] = ACTIONS(8217), + [sym_null_literal] = ACTIONS(8217), + [sym_empty_literal] = ACTIONS(8217), + [sym_date_literal] = ACTIONS(8219), + [anon_sym_POUND] = ACTIONS(8217), + }, + [STATE(4838)] = { + [sym_do_condition] = STATE(5688), + [sym_identifier] = ACTIONS(8221), + [sym_newline] = ACTIONS(8223), + [anon_sym_COLON] = ACTIONS(8223), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8221), + [aux_sym_frm_property_statement_token1] = ACTIONS(8221), + [anon_sym_DOT] = ACTIONS(8221), + [anon_sym_BANG] = ACTIONS(8223), + [aux_sym__attribute_identifier_token1] = ACTIONS(8221), + [aux_sym_option_statement_token3] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8221), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8221), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8221), + [aux_sym_preprocessor_const_token1] = ACTIONS(8221), + [sym_static_modifier] = ACTIONS(8221), + [sym__dim_keyword] = ACTIONS(8221), + [sym__redim_keyword] = ACTIONS(8221), + [aux_sym_get_accessor_token1] = ACTIONS(8221), + [aux_sym_set_accessor_token1] = ACTIONS(8221), + [aux_sym_const_declaration_token1] = ACTIONS(8221), + [anon_sym_LPAREN] = ACTIONS(8223), + [aux_sym_as_type_clause_token2] = ACTIONS(8221), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8221), + [aux_sym_visibility_token1] = ACTIONS(8221), + [aux_sym_visibility_token2] = ACTIONS(8221), + [aux_sym_elseif_fragment_token1] = ACTIONS(8221), + [aux_sym_else_fragment_token1] = ACTIONS(8221), + [aux_sym_select_statement_token1] = ACTIONS(8221), + [aux_sym__for_header_token1] = ACTIONS(8221), + [aux_sym_do_statement_token1] = ACTIONS(8221), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8221), + [aux_sym_exit_statement_token1] = ACTIONS(8221), + [sym_end_statement] = ACTIONS(8223), + [aux_sym_on_goto_statement_token1] = ACTIONS(8221), + [aux_sym_on_goto_statement_token2] = ACTIONS(8221), + [aux_sym_on_error_statement_token2] = ACTIONS(8221), + [sym__ambiguous_redim_statement] = ACTIONS(8223), + [aux_sym_erase_statement_token1] = ACTIONS(8221), + [aux_sym_open_statement_token1] = ACTIONS(8221), + [aux_sym_file_mode_token2] = ACTIONS(8221), + [aux_sym_file_access_token2] = ACTIONS(8221), + [aux_sym_file_lock_token2] = ACTIONS(8221), + [aux_sym_print_statement_token1] = ACTIONS(8221), + [anon_sym_PLUS] = ACTIONS(8223), + [anon_sym_DASH] = ACTIONS(8221), + [anon_sym_QMARK] = ACTIONS(8223), + [aux_sym_close_statement_token1] = ACTIONS(8221), + [aux_sym_put_statement_token1] = ACTIONS(8221), + [aux_sym_unlock_statement_token1] = ACTIONS(8221), + [aux_sym_seek_statement_token1] = ACTIONS(8221), + [sym_reset_statement] = ACTIONS(8221), + [aux_sym_raise_event_statement_token1] = ACTIONS(8221), + [sym_stop_statement] = ACTIONS(8221), + [sym_beep_statement] = ACTIONS(8221), + [aux_sym_unload_statement_token1] = ACTIONS(8221), + [aux_sym_def_type_statement_token1] = ACTIONS(8221), + [aux_sym_def_type_statement_token2] = ACTIONS(8221), + [aux_sym_def_type_statement_token3] = ACTIONS(8221), + [aux_sym_def_type_statement_token4] = ACTIONS(8221), + [aux_sym_def_type_statement_token5] = ACTIONS(8221), + [aux_sym_def_type_statement_token6] = ACTIONS(8221), + [aux_sym_def_type_statement_token7] = ACTIONS(8221), + [aux_sym_def_type_statement_token8] = ACTIONS(8221), + [aux_sym_def_type_statement_token9] = ACTIONS(8221), + [aux_sym_def_type_statement_token10] = ACTIONS(8221), + [aux_sym_def_type_statement_token11] = ACTIONS(8221), + [aux_sym_def_type_statement_token12] = ACTIONS(8221), + [aux_sym_def_type_statement_token13] = ACTIONS(8221), + [aux_sym_def_type_statement_token14] = ACTIONS(8221), + [aux_sym_call_statement_token1] = ACTIONS(8221), + [sym__ambiguous_call_statement] = ACTIONS(8221), + [aux_sym_addressof_expression_token1] = ACTIONS(8221), + [aux_sym_type_of_expression_token1] = ACTIONS(8221), + [aux_sym_unary_expression_token1] = ACTIONS(8221), + [sym_string_literal] = ACTIONS(8223), + [sym_number_literal] = ACTIONS(8223), + [aux_sym_boolean_literal_token1] = ACTIONS(8221), + [aux_sym_boolean_literal_token2] = ACTIONS(8221), + [sym_nothing_literal] = ACTIONS(8221), + [sym_null_literal] = ACTIONS(8221), + [sym_empty_literal] = ACTIONS(8221), + [sym_date_literal] = ACTIONS(8223), + [anon_sym_POUND] = ACTIONS(8221), + }, + [STATE(4839)] = { + [aux_sym_input_statement_repeat1] = STATE(4852), + [sym_identifier] = ACTIONS(8237), + [sym_newline] = ACTIONS(8239), + [anon_sym_COLON] = ACTIONS(8239), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8237), + [aux_sym_frm_property_statement_token1] = ACTIONS(8237), + [anon_sym_DOT] = ACTIONS(8237), + [anon_sym_BANG] = ACTIONS(8239), + [aux_sym__attribute_identifier_token1] = ACTIONS(8237), + [aux_sym_option_statement_token3] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8237), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8237), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8237), + [aux_sym_preprocessor_const_token1] = ACTIONS(8237), + [sym_static_modifier] = ACTIONS(8237), + [sym__dim_keyword] = ACTIONS(8237), + [sym__redim_keyword] = ACTIONS(8237), + [aux_sym_get_accessor_token1] = ACTIONS(8237), + [aux_sym_set_accessor_token1] = ACTIONS(8237), + [anon_sym_COMMA] = ACTIONS(10084), + [aux_sym_const_declaration_token1] = ACTIONS(8237), + [anon_sym_LPAREN] = ACTIONS(8239), + [aux_sym_as_type_clause_token2] = ACTIONS(8237), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8237), + [aux_sym_visibility_token1] = ACTIONS(8237), + [aux_sym_visibility_token2] = ACTIONS(8237), + [aux_sym_elseif_fragment_token1] = ACTIONS(8237), + [aux_sym_else_fragment_token1] = ACTIONS(8237), + [aux_sym_select_statement_token1] = ACTIONS(8237), + [aux_sym__for_header_token1] = ACTIONS(8237), + [aux_sym_do_statement_token1] = ACTIONS(8237), + [aux_sym_do_condition_token1] = ACTIONS(8237), + [aux_sym_with_statement_token1] = ACTIONS(8237), + [aux_sym_exit_statement_token1] = ACTIONS(8237), + [sym_end_statement] = ACTIONS(8239), + [aux_sym_on_goto_statement_token1] = ACTIONS(8237), + [aux_sym_on_goto_statement_token2] = ACTIONS(8237), + [aux_sym_on_error_statement_token2] = ACTIONS(8237), + [sym__ambiguous_redim_statement] = ACTIONS(8239), + [aux_sym_erase_statement_token1] = ACTIONS(8237), + [aux_sym_open_statement_token1] = ACTIONS(8237), + [aux_sym_file_mode_token2] = ACTIONS(8237), + [aux_sym_file_access_token2] = ACTIONS(8237), + [aux_sym_file_lock_token2] = ACTIONS(8237), + [aux_sym_print_statement_token1] = ACTIONS(8237), + [anon_sym_PLUS] = ACTIONS(8239), + [anon_sym_DASH] = ACTIONS(8237), + [anon_sym_QMARK] = ACTIONS(8239), + [aux_sym_close_statement_token1] = ACTIONS(8237), + [aux_sym_put_statement_token1] = ACTIONS(8237), + [aux_sym_unlock_statement_token1] = ACTIONS(8237), + [aux_sym_seek_statement_token1] = ACTIONS(8237), + [sym_reset_statement] = ACTIONS(8237), + [aux_sym_raise_event_statement_token1] = ACTIONS(8237), + [sym_stop_statement] = ACTIONS(8237), + [sym_beep_statement] = ACTIONS(8237), + [aux_sym_unload_statement_token1] = ACTIONS(8237), + [aux_sym_def_type_statement_token1] = ACTIONS(8237), + [aux_sym_def_type_statement_token2] = ACTIONS(8237), + [aux_sym_def_type_statement_token3] = ACTIONS(8237), + [aux_sym_def_type_statement_token4] = ACTIONS(8237), + [aux_sym_def_type_statement_token5] = ACTIONS(8237), + [aux_sym_def_type_statement_token6] = ACTIONS(8237), + [aux_sym_def_type_statement_token7] = ACTIONS(8237), + [aux_sym_def_type_statement_token8] = ACTIONS(8237), + [aux_sym_def_type_statement_token9] = ACTIONS(8237), + [aux_sym_def_type_statement_token10] = ACTIONS(8237), + [aux_sym_def_type_statement_token11] = ACTIONS(8237), + [aux_sym_def_type_statement_token12] = ACTIONS(8237), + [aux_sym_def_type_statement_token13] = ACTIONS(8237), + [aux_sym_def_type_statement_token14] = ACTIONS(8237), + [aux_sym_call_statement_token1] = ACTIONS(8237), + [sym__ambiguous_call_statement] = ACTIONS(8237), + [aux_sym_addressof_expression_token1] = ACTIONS(8237), + [aux_sym_type_of_expression_token1] = ACTIONS(8237), + [aux_sym_unary_expression_token1] = ACTIONS(8237), + [sym_string_literal] = ACTIONS(8239), + [sym_number_literal] = ACTIONS(8239), + [aux_sym_boolean_literal_token1] = ACTIONS(8237), + [aux_sym_boolean_literal_token2] = ACTIONS(8237), + [sym_nothing_literal] = ACTIONS(8237), + [sym_null_literal] = ACTIONS(8237), + [sym_empty_literal] = ACTIONS(8237), + [sym_date_literal] = ACTIONS(8239), + [anon_sym_POUND] = ACTIONS(8237), + }, + [STATE(4840)] = { + [aux_sym_next_variable_list_repeat1] = STATE(4853), + [sym_identifier] = ACTIONS(7945), + [sym_newline] = ACTIONS(7947), + [anon_sym_COLON] = ACTIONS(7947), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7945), + [aux_sym_frm_property_statement_token1] = ACTIONS(7945), + [anon_sym_DOT] = ACTIONS(7945), + [anon_sym_BANG] = ACTIONS(7947), + [aux_sym__attribute_identifier_token1] = ACTIONS(7945), + [aux_sym_option_statement_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7945), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7945), + [aux_sym_preprocessor_const_token1] = ACTIONS(7945), + [sym_static_modifier] = ACTIONS(7945), + [sym__dim_keyword] = ACTIONS(7945), + [sym__redim_keyword] = ACTIONS(7945), + [aux_sym_get_accessor_token1] = ACTIONS(7945), + [aux_sym_set_accessor_token1] = ACTIONS(7945), + [anon_sym_COMMA] = ACTIONS(10240), + [aux_sym_const_declaration_token1] = ACTIONS(7945), + [anon_sym_LPAREN] = ACTIONS(7947), + [aux_sym_as_type_clause_token2] = ACTIONS(7945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7945), + [aux_sym_visibility_token1] = ACTIONS(7945), + [aux_sym_visibility_token2] = ACTIONS(7945), + [aux_sym_elseif_fragment_token1] = ACTIONS(7945), + [aux_sym_else_fragment_token1] = ACTIONS(7945), + [aux_sym_select_statement_token1] = ACTIONS(7945), + [aux_sym__for_header_token1] = ACTIONS(7945), + [aux_sym_do_statement_token1] = ACTIONS(7945), + [aux_sym_do_condition_token1] = ACTIONS(7945), + [aux_sym_with_statement_token1] = ACTIONS(7945), + [aux_sym_exit_statement_token1] = ACTIONS(7945), + [sym_end_statement] = ACTIONS(7947), + [aux_sym_on_goto_statement_token1] = ACTIONS(7945), + [aux_sym_on_goto_statement_token2] = ACTIONS(7945), + [aux_sym_on_error_statement_token2] = ACTIONS(7945), + [sym__ambiguous_redim_statement] = ACTIONS(7947), + [aux_sym_erase_statement_token1] = ACTIONS(7945), + [aux_sym_open_statement_token1] = ACTIONS(7945), + [aux_sym_file_mode_token2] = ACTIONS(7945), + [aux_sym_file_access_token2] = ACTIONS(7945), + [aux_sym_file_lock_token2] = ACTIONS(7945), + [aux_sym_print_statement_token1] = ACTIONS(7945), + [anon_sym_PLUS] = ACTIONS(7947), + [anon_sym_DASH] = ACTIONS(7945), + [anon_sym_QMARK] = ACTIONS(7947), + [aux_sym_close_statement_token1] = ACTIONS(7945), + [aux_sym_put_statement_token1] = ACTIONS(7945), + [aux_sym_unlock_statement_token1] = ACTIONS(7945), + [aux_sym_seek_statement_token1] = ACTIONS(7945), + [sym_reset_statement] = ACTIONS(7945), + [aux_sym_raise_event_statement_token1] = ACTIONS(7945), + [sym_stop_statement] = ACTIONS(7945), + [sym_beep_statement] = ACTIONS(7945), + [aux_sym_unload_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token2] = ACTIONS(7945), + [aux_sym_def_type_statement_token3] = ACTIONS(7945), + [aux_sym_def_type_statement_token4] = ACTIONS(7945), + [aux_sym_def_type_statement_token5] = ACTIONS(7945), + [aux_sym_def_type_statement_token6] = ACTIONS(7945), + [aux_sym_def_type_statement_token7] = ACTIONS(7945), + [aux_sym_def_type_statement_token8] = ACTIONS(7945), + [aux_sym_def_type_statement_token9] = ACTIONS(7945), + [aux_sym_def_type_statement_token10] = ACTIONS(7945), + [aux_sym_def_type_statement_token11] = ACTIONS(7945), + [aux_sym_def_type_statement_token12] = ACTIONS(7945), + [aux_sym_def_type_statement_token13] = ACTIONS(7945), + [aux_sym_def_type_statement_token14] = ACTIONS(7945), + [aux_sym_call_statement_token1] = ACTIONS(7945), + [sym__ambiguous_call_statement] = ACTIONS(7945), + [aux_sym_addressof_expression_token1] = ACTIONS(7945), + [aux_sym_type_of_expression_token1] = ACTIONS(7945), + [aux_sym_unary_expression_token1] = ACTIONS(7945), + [sym_string_literal] = ACTIONS(7947), + [sym_number_literal] = ACTIONS(7947), + [aux_sym_boolean_literal_token1] = ACTIONS(7945), + [aux_sym_boolean_literal_token2] = ACTIONS(7945), + [sym_nothing_literal] = ACTIONS(7945), + [sym_null_literal] = ACTIONS(7945), + [sym_empty_literal] = ACTIONS(7945), + [sym_date_literal] = ACTIONS(7947), + [anon_sym_POUND] = ACTIONS(7945), + }, + [STATE(4841)] = { + [sym_do_condition] = STATE(5703), + [sym_identifier] = ACTIONS(8271), + [sym_newline] = ACTIONS(8273), + [anon_sym_COLON] = ACTIONS(8273), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8271), + [aux_sym_frm_property_statement_token1] = ACTIONS(8271), + [anon_sym_DOT] = ACTIONS(8271), + [anon_sym_BANG] = ACTIONS(8273), + [aux_sym__attribute_identifier_token1] = ACTIONS(8271), + [aux_sym_option_statement_token3] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8271), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8271), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8271), + [aux_sym_preprocessor_const_token1] = ACTIONS(8271), + [sym_static_modifier] = ACTIONS(8271), + [sym__dim_keyword] = ACTIONS(8271), + [sym__redim_keyword] = ACTIONS(8271), + [aux_sym_get_accessor_token1] = ACTIONS(8271), + [aux_sym_set_accessor_token1] = ACTIONS(8271), + [aux_sym_const_declaration_token1] = ACTIONS(8271), + [anon_sym_LPAREN] = ACTIONS(8273), + [aux_sym_as_type_clause_token2] = ACTIONS(8271), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8271), + [aux_sym_visibility_token1] = ACTIONS(8271), + [aux_sym_visibility_token2] = ACTIONS(8271), + [aux_sym_elseif_fragment_token1] = ACTIONS(8271), + [aux_sym_else_fragment_token1] = ACTIONS(8271), + [aux_sym_select_statement_token1] = ACTIONS(8271), + [aux_sym__for_header_token1] = ACTIONS(8271), + [aux_sym_do_statement_token1] = ACTIONS(8271), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8271), + [aux_sym_exit_statement_token1] = ACTIONS(8271), + [sym_end_statement] = ACTIONS(8273), + [aux_sym_on_goto_statement_token1] = ACTIONS(8271), + [aux_sym_on_goto_statement_token2] = ACTIONS(8271), + [aux_sym_on_error_statement_token2] = ACTIONS(8271), + [sym__ambiguous_redim_statement] = ACTIONS(8273), + [aux_sym_erase_statement_token1] = ACTIONS(8271), + [aux_sym_open_statement_token1] = ACTIONS(8271), + [aux_sym_file_mode_token2] = ACTIONS(8271), + [aux_sym_file_access_token2] = ACTIONS(8271), + [aux_sym_file_lock_token2] = ACTIONS(8271), + [aux_sym_print_statement_token1] = ACTIONS(8271), + [anon_sym_PLUS] = ACTIONS(8273), + [anon_sym_DASH] = ACTIONS(8271), + [anon_sym_QMARK] = ACTIONS(8273), + [aux_sym_close_statement_token1] = ACTIONS(8271), + [aux_sym_put_statement_token1] = ACTIONS(8271), + [aux_sym_unlock_statement_token1] = ACTIONS(8271), + [aux_sym_seek_statement_token1] = ACTIONS(8271), + [sym_reset_statement] = ACTIONS(8271), + [aux_sym_raise_event_statement_token1] = ACTIONS(8271), + [sym_stop_statement] = ACTIONS(8271), + [sym_beep_statement] = ACTIONS(8271), + [aux_sym_unload_statement_token1] = ACTIONS(8271), + [aux_sym_def_type_statement_token1] = ACTIONS(8271), + [aux_sym_def_type_statement_token2] = ACTIONS(8271), + [aux_sym_def_type_statement_token3] = ACTIONS(8271), + [aux_sym_def_type_statement_token4] = ACTIONS(8271), + [aux_sym_def_type_statement_token5] = ACTIONS(8271), + [aux_sym_def_type_statement_token6] = ACTIONS(8271), + [aux_sym_def_type_statement_token7] = ACTIONS(8271), + [aux_sym_def_type_statement_token8] = ACTIONS(8271), + [aux_sym_def_type_statement_token9] = ACTIONS(8271), + [aux_sym_def_type_statement_token10] = ACTIONS(8271), + [aux_sym_def_type_statement_token11] = ACTIONS(8271), + [aux_sym_def_type_statement_token12] = ACTIONS(8271), + [aux_sym_def_type_statement_token13] = ACTIONS(8271), + [aux_sym_def_type_statement_token14] = ACTIONS(8271), + [aux_sym_call_statement_token1] = ACTIONS(8271), + [sym__ambiguous_call_statement] = ACTIONS(8271), + [aux_sym_addressof_expression_token1] = ACTIONS(8271), + [aux_sym_type_of_expression_token1] = ACTIONS(8271), + [aux_sym_unary_expression_token1] = ACTIONS(8271), + [sym_string_literal] = ACTIONS(8273), + [sym_number_literal] = ACTIONS(8273), + [aux_sym_boolean_literal_token1] = ACTIONS(8271), + [aux_sym_boolean_literal_token2] = ACTIONS(8271), + [sym_nothing_literal] = ACTIONS(8271), + [sym_null_literal] = ACTIONS(8271), + [sym_empty_literal] = ACTIONS(8271), + [sym_date_literal] = ACTIONS(8273), + [anon_sym_POUND] = ACTIONS(8271), + }, + [STATE(4842)] = { + [sym_do_condition] = STATE(5705), + [sym_identifier] = ACTIONS(8275), + [sym_newline] = ACTIONS(8277), + [anon_sym_COLON] = ACTIONS(8277), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8275), + [aux_sym_frm_property_statement_token1] = ACTIONS(8275), + [anon_sym_DOT] = ACTIONS(8275), + [anon_sym_BANG] = ACTIONS(8277), + [aux_sym__attribute_identifier_token1] = ACTIONS(8275), + [aux_sym_option_statement_token3] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8275), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8275), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8275), + [aux_sym_preprocessor_const_token1] = ACTIONS(8275), + [sym_static_modifier] = ACTIONS(8275), + [sym__dim_keyword] = ACTIONS(8275), + [sym__redim_keyword] = ACTIONS(8275), + [aux_sym_get_accessor_token1] = ACTIONS(8275), + [aux_sym_set_accessor_token1] = ACTIONS(8275), + [aux_sym_const_declaration_token1] = ACTIONS(8275), + [anon_sym_LPAREN] = ACTIONS(8277), + [aux_sym_as_type_clause_token2] = ACTIONS(8275), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8275), + [aux_sym_visibility_token1] = ACTIONS(8275), + [aux_sym_visibility_token2] = ACTIONS(8275), + [aux_sym_elseif_fragment_token1] = ACTIONS(8275), + [aux_sym_else_fragment_token1] = ACTIONS(8275), + [aux_sym_select_statement_token1] = ACTIONS(8275), + [aux_sym__for_header_token1] = ACTIONS(8275), + [aux_sym_do_statement_token1] = ACTIONS(8275), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8275), + [aux_sym_exit_statement_token1] = ACTIONS(8275), + [sym_end_statement] = ACTIONS(8277), + [aux_sym_on_goto_statement_token1] = ACTIONS(8275), + [aux_sym_on_goto_statement_token2] = ACTIONS(8275), + [aux_sym_on_error_statement_token2] = ACTIONS(8275), + [sym__ambiguous_redim_statement] = ACTIONS(8277), + [aux_sym_erase_statement_token1] = ACTIONS(8275), + [aux_sym_open_statement_token1] = ACTIONS(8275), + [aux_sym_file_mode_token2] = ACTIONS(8275), + [aux_sym_file_access_token2] = ACTIONS(8275), + [aux_sym_file_lock_token2] = ACTIONS(8275), + [aux_sym_print_statement_token1] = ACTIONS(8275), + [anon_sym_PLUS] = ACTIONS(8277), + [anon_sym_DASH] = ACTIONS(8275), + [anon_sym_QMARK] = ACTIONS(8277), + [aux_sym_close_statement_token1] = ACTIONS(8275), + [aux_sym_put_statement_token1] = ACTIONS(8275), + [aux_sym_unlock_statement_token1] = ACTIONS(8275), + [aux_sym_seek_statement_token1] = ACTIONS(8275), + [sym_reset_statement] = ACTIONS(8275), + [aux_sym_raise_event_statement_token1] = ACTIONS(8275), + [sym_stop_statement] = ACTIONS(8275), + [sym_beep_statement] = ACTIONS(8275), + [aux_sym_unload_statement_token1] = ACTIONS(8275), + [aux_sym_def_type_statement_token1] = ACTIONS(8275), + [aux_sym_def_type_statement_token2] = ACTIONS(8275), + [aux_sym_def_type_statement_token3] = ACTIONS(8275), + [aux_sym_def_type_statement_token4] = ACTIONS(8275), + [aux_sym_def_type_statement_token5] = ACTIONS(8275), + [aux_sym_def_type_statement_token6] = ACTIONS(8275), + [aux_sym_def_type_statement_token7] = ACTIONS(8275), + [aux_sym_def_type_statement_token8] = ACTIONS(8275), + [aux_sym_def_type_statement_token9] = ACTIONS(8275), + [aux_sym_def_type_statement_token10] = ACTIONS(8275), + [aux_sym_def_type_statement_token11] = ACTIONS(8275), + [aux_sym_def_type_statement_token12] = ACTIONS(8275), + [aux_sym_def_type_statement_token13] = ACTIONS(8275), + [aux_sym_def_type_statement_token14] = ACTIONS(8275), + [aux_sym_call_statement_token1] = ACTIONS(8275), + [sym__ambiguous_call_statement] = ACTIONS(8275), + [aux_sym_addressof_expression_token1] = ACTIONS(8275), + [aux_sym_type_of_expression_token1] = ACTIONS(8275), + [aux_sym_unary_expression_token1] = ACTIONS(8275), + [sym_string_literal] = ACTIONS(8277), + [sym_number_literal] = ACTIONS(8277), + [aux_sym_boolean_literal_token1] = ACTIONS(8275), + [aux_sym_boolean_literal_token2] = ACTIONS(8275), + [sym_nothing_literal] = ACTIONS(8275), + [sym_null_literal] = ACTIONS(8275), + [sym_empty_literal] = ACTIONS(8275), + [sym_date_literal] = ACTIONS(8277), + [anon_sym_POUND] = ACTIONS(8275), + }, + [STATE(4843)] = { + [sym_do_condition] = STATE(5706), + [sym_identifier] = ACTIONS(8279), + [sym_newline] = ACTIONS(8281), + [anon_sym_COLON] = ACTIONS(8281), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8279), + [aux_sym_frm_property_statement_token1] = ACTIONS(8279), + [anon_sym_DOT] = ACTIONS(8279), + [anon_sym_BANG] = ACTIONS(8281), + [aux_sym__attribute_identifier_token1] = ACTIONS(8279), + [aux_sym_option_statement_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8279), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8279), + [aux_sym_preprocessor_const_token1] = ACTIONS(8279), + [sym_static_modifier] = ACTIONS(8279), + [sym__dim_keyword] = ACTIONS(8279), + [sym__redim_keyword] = ACTIONS(8279), + [aux_sym_get_accessor_token1] = ACTIONS(8279), + [aux_sym_set_accessor_token1] = ACTIONS(8279), + [aux_sym_const_declaration_token1] = ACTIONS(8279), + [anon_sym_LPAREN] = ACTIONS(8281), + [aux_sym_as_type_clause_token2] = ACTIONS(8279), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8279), + [aux_sym_visibility_token1] = ACTIONS(8279), + [aux_sym_visibility_token2] = ACTIONS(8279), + [aux_sym_elseif_fragment_token1] = ACTIONS(8279), + [aux_sym_else_fragment_token1] = ACTIONS(8279), + [aux_sym_select_statement_token1] = ACTIONS(8279), + [aux_sym__for_header_token1] = ACTIONS(8279), + [aux_sym_do_statement_token1] = ACTIONS(8279), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8279), + [aux_sym_exit_statement_token1] = ACTIONS(8279), + [sym_end_statement] = ACTIONS(8281), + [aux_sym_on_goto_statement_token1] = ACTIONS(8279), + [aux_sym_on_goto_statement_token2] = ACTIONS(8279), + [aux_sym_on_error_statement_token2] = ACTIONS(8279), + [sym__ambiguous_redim_statement] = ACTIONS(8281), + [aux_sym_erase_statement_token1] = ACTIONS(8279), + [aux_sym_open_statement_token1] = ACTIONS(8279), + [aux_sym_file_mode_token2] = ACTIONS(8279), + [aux_sym_file_access_token2] = ACTIONS(8279), + [aux_sym_file_lock_token2] = ACTIONS(8279), + [aux_sym_print_statement_token1] = ACTIONS(8279), + [anon_sym_PLUS] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8279), + [anon_sym_QMARK] = ACTIONS(8281), + [aux_sym_close_statement_token1] = ACTIONS(8279), + [aux_sym_put_statement_token1] = ACTIONS(8279), + [aux_sym_unlock_statement_token1] = ACTIONS(8279), + [aux_sym_seek_statement_token1] = ACTIONS(8279), + [sym_reset_statement] = ACTIONS(8279), + [aux_sym_raise_event_statement_token1] = ACTIONS(8279), + [sym_stop_statement] = ACTIONS(8279), + [sym_beep_statement] = ACTIONS(8279), + [aux_sym_unload_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token2] = ACTIONS(8279), + [aux_sym_def_type_statement_token3] = ACTIONS(8279), + [aux_sym_def_type_statement_token4] = ACTIONS(8279), + [aux_sym_def_type_statement_token5] = ACTIONS(8279), + [aux_sym_def_type_statement_token6] = ACTIONS(8279), + [aux_sym_def_type_statement_token7] = ACTIONS(8279), + [aux_sym_def_type_statement_token8] = ACTIONS(8279), + [aux_sym_def_type_statement_token9] = ACTIONS(8279), + [aux_sym_def_type_statement_token10] = ACTIONS(8279), + [aux_sym_def_type_statement_token11] = ACTIONS(8279), + [aux_sym_def_type_statement_token12] = ACTIONS(8279), + [aux_sym_def_type_statement_token13] = ACTIONS(8279), + [aux_sym_def_type_statement_token14] = ACTIONS(8279), + [aux_sym_call_statement_token1] = ACTIONS(8279), + [sym__ambiguous_call_statement] = ACTIONS(8279), + [aux_sym_addressof_expression_token1] = ACTIONS(8279), + [aux_sym_type_of_expression_token1] = ACTIONS(8279), + [aux_sym_unary_expression_token1] = ACTIONS(8279), + [sym_string_literal] = ACTIONS(8281), + [sym_number_literal] = ACTIONS(8281), + [aux_sym_boolean_literal_token1] = ACTIONS(8279), + [aux_sym_boolean_literal_token2] = ACTIONS(8279), + [sym_nothing_literal] = ACTIONS(8279), + [sym_null_literal] = ACTIONS(8279), + [sym_empty_literal] = ACTIONS(8279), + [sym_date_literal] = ACTIONS(8281), + [anon_sym_POUND] = ACTIONS(8279), + }, + [STATE(4844)] = { + [sym_do_condition] = STATE(5709), + [sym_identifier] = ACTIONS(8283), + [sym_newline] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8283), + [aux_sym_frm_property_statement_token1] = ACTIONS(8283), + [anon_sym_DOT] = ACTIONS(8283), + [anon_sym_BANG] = ACTIONS(8285), + [aux_sym__attribute_identifier_token1] = ACTIONS(8283), + [aux_sym_option_statement_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8283), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8283), + [aux_sym_preprocessor_const_token1] = ACTIONS(8283), + [sym_static_modifier] = ACTIONS(8283), + [sym__dim_keyword] = ACTIONS(8283), + [sym__redim_keyword] = ACTIONS(8283), + [aux_sym_get_accessor_token1] = ACTIONS(8283), + [aux_sym_set_accessor_token1] = ACTIONS(8283), + [aux_sym_const_declaration_token1] = ACTIONS(8283), + [anon_sym_LPAREN] = ACTIONS(8285), + [aux_sym_as_type_clause_token2] = ACTIONS(8283), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8283), + [aux_sym_visibility_token1] = ACTIONS(8283), + [aux_sym_visibility_token2] = ACTIONS(8283), + [aux_sym_elseif_fragment_token1] = ACTIONS(8283), + [aux_sym_else_fragment_token1] = ACTIONS(8283), + [aux_sym_select_statement_token1] = ACTIONS(8283), + [aux_sym__for_header_token1] = ACTIONS(8283), + [aux_sym_do_statement_token1] = ACTIONS(8283), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8283), + [aux_sym_exit_statement_token1] = ACTIONS(8283), + [sym_end_statement] = ACTIONS(8285), + [aux_sym_on_goto_statement_token1] = ACTIONS(8283), + [aux_sym_on_goto_statement_token2] = ACTIONS(8283), + [aux_sym_on_error_statement_token2] = ACTIONS(8283), + [sym__ambiguous_redim_statement] = ACTIONS(8285), + [aux_sym_erase_statement_token1] = ACTIONS(8283), + [aux_sym_open_statement_token1] = ACTIONS(8283), + [aux_sym_file_mode_token2] = ACTIONS(8283), + [aux_sym_file_access_token2] = ACTIONS(8283), + [aux_sym_file_lock_token2] = ACTIONS(8283), + [aux_sym_print_statement_token1] = ACTIONS(8283), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_DASH] = ACTIONS(8283), + [anon_sym_QMARK] = ACTIONS(8285), + [aux_sym_close_statement_token1] = ACTIONS(8283), + [aux_sym_put_statement_token1] = ACTIONS(8283), + [aux_sym_unlock_statement_token1] = ACTIONS(8283), + [aux_sym_seek_statement_token1] = ACTIONS(8283), + [sym_reset_statement] = ACTIONS(8283), + [aux_sym_raise_event_statement_token1] = ACTIONS(8283), + [sym_stop_statement] = ACTIONS(8283), + [sym_beep_statement] = ACTIONS(8283), + [aux_sym_unload_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token2] = ACTIONS(8283), + [aux_sym_def_type_statement_token3] = ACTIONS(8283), + [aux_sym_def_type_statement_token4] = ACTIONS(8283), + [aux_sym_def_type_statement_token5] = ACTIONS(8283), + [aux_sym_def_type_statement_token6] = ACTIONS(8283), + [aux_sym_def_type_statement_token7] = ACTIONS(8283), + [aux_sym_def_type_statement_token8] = ACTIONS(8283), + [aux_sym_def_type_statement_token9] = ACTIONS(8283), + [aux_sym_def_type_statement_token10] = ACTIONS(8283), + [aux_sym_def_type_statement_token11] = ACTIONS(8283), + [aux_sym_def_type_statement_token12] = ACTIONS(8283), + [aux_sym_def_type_statement_token13] = ACTIONS(8283), + [aux_sym_def_type_statement_token14] = ACTIONS(8283), + [aux_sym_call_statement_token1] = ACTIONS(8283), + [sym__ambiguous_call_statement] = ACTIONS(8283), + [aux_sym_addressof_expression_token1] = ACTIONS(8283), + [aux_sym_type_of_expression_token1] = ACTIONS(8283), + [aux_sym_unary_expression_token1] = ACTIONS(8283), + [sym_string_literal] = ACTIONS(8285), + [sym_number_literal] = ACTIONS(8285), + [aux_sym_boolean_literal_token1] = ACTIONS(8283), + [aux_sym_boolean_literal_token2] = ACTIONS(8283), + [sym_nothing_literal] = ACTIONS(8283), + [sym_null_literal] = ACTIONS(8283), + [sym_empty_literal] = ACTIONS(8283), + [sym_date_literal] = ACTIONS(8285), + [anon_sym_POUND] = ACTIONS(8283), + }, + [STATE(4845)] = { + [sym_do_condition] = STATE(5711), + [sym_identifier] = ACTIONS(8294), + [sym_newline] = ACTIONS(8296), + [anon_sym_COLON] = ACTIONS(8296), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8294), + [aux_sym_frm_property_statement_token1] = ACTIONS(8294), + [anon_sym_DOT] = ACTIONS(8294), + [anon_sym_BANG] = ACTIONS(8296), + [aux_sym__attribute_identifier_token1] = ACTIONS(8294), + [aux_sym_option_statement_token3] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8294), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8294), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8294), + [aux_sym_preprocessor_const_token1] = ACTIONS(8294), + [sym_static_modifier] = ACTIONS(8294), + [sym__dim_keyword] = ACTIONS(8294), + [sym__redim_keyword] = ACTIONS(8294), + [aux_sym_get_accessor_token1] = ACTIONS(8294), + [aux_sym_set_accessor_token1] = ACTIONS(8294), + [aux_sym_const_declaration_token1] = ACTIONS(8294), + [anon_sym_LPAREN] = ACTIONS(8296), + [aux_sym_as_type_clause_token2] = ACTIONS(8294), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8294), + [aux_sym_visibility_token1] = ACTIONS(8294), + [aux_sym_visibility_token2] = ACTIONS(8294), + [aux_sym_elseif_fragment_token1] = ACTIONS(8294), + [aux_sym_else_fragment_token1] = ACTIONS(8294), + [aux_sym_select_statement_token1] = ACTIONS(8294), + [aux_sym__for_header_token1] = ACTIONS(8294), + [aux_sym_do_statement_token1] = ACTIONS(8294), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8294), + [aux_sym_exit_statement_token1] = ACTIONS(8294), + [sym_end_statement] = ACTIONS(8296), + [aux_sym_on_goto_statement_token1] = ACTIONS(8294), + [aux_sym_on_goto_statement_token2] = ACTIONS(8294), + [aux_sym_on_error_statement_token2] = ACTIONS(8294), + [sym__ambiguous_redim_statement] = ACTIONS(8296), + [aux_sym_erase_statement_token1] = ACTIONS(8294), + [aux_sym_open_statement_token1] = ACTIONS(8294), + [aux_sym_file_mode_token2] = ACTIONS(8294), + [aux_sym_file_access_token2] = ACTIONS(8294), + [aux_sym_file_lock_token2] = ACTIONS(8294), + [aux_sym_print_statement_token1] = ACTIONS(8294), + [anon_sym_PLUS] = ACTIONS(8296), + [anon_sym_DASH] = ACTIONS(8294), + [anon_sym_QMARK] = ACTIONS(8296), + [aux_sym_close_statement_token1] = ACTIONS(8294), + [aux_sym_put_statement_token1] = ACTIONS(8294), + [aux_sym_unlock_statement_token1] = ACTIONS(8294), + [aux_sym_seek_statement_token1] = ACTIONS(8294), + [sym_reset_statement] = ACTIONS(8294), + [aux_sym_raise_event_statement_token1] = ACTIONS(8294), + [sym_stop_statement] = ACTIONS(8294), + [sym_beep_statement] = ACTIONS(8294), + [aux_sym_unload_statement_token1] = ACTIONS(8294), + [aux_sym_def_type_statement_token1] = ACTIONS(8294), + [aux_sym_def_type_statement_token2] = ACTIONS(8294), + [aux_sym_def_type_statement_token3] = ACTIONS(8294), + [aux_sym_def_type_statement_token4] = ACTIONS(8294), + [aux_sym_def_type_statement_token5] = ACTIONS(8294), + [aux_sym_def_type_statement_token6] = ACTIONS(8294), + [aux_sym_def_type_statement_token7] = ACTIONS(8294), + [aux_sym_def_type_statement_token8] = ACTIONS(8294), + [aux_sym_def_type_statement_token9] = ACTIONS(8294), + [aux_sym_def_type_statement_token10] = ACTIONS(8294), + [aux_sym_def_type_statement_token11] = ACTIONS(8294), + [aux_sym_def_type_statement_token12] = ACTIONS(8294), + [aux_sym_def_type_statement_token13] = ACTIONS(8294), + [aux_sym_def_type_statement_token14] = ACTIONS(8294), + [aux_sym_call_statement_token1] = ACTIONS(8294), + [sym__ambiguous_call_statement] = ACTIONS(8294), + [aux_sym_addressof_expression_token1] = ACTIONS(8294), + [aux_sym_type_of_expression_token1] = ACTIONS(8294), + [aux_sym_unary_expression_token1] = ACTIONS(8294), + [sym_string_literal] = ACTIONS(8296), + [sym_number_literal] = ACTIONS(8296), + [aux_sym_boolean_literal_token1] = ACTIONS(8294), + [aux_sym_boolean_literal_token2] = ACTIONS(8294), + [sym_nothing_literal] = ACTIONS(8294), + [sym_null_literal] = ACTIONS(8294), + [sym_empty_literal] = ACTIONS(8294), + [sym_date_literal] = ACTIONS(8296), + [anon_sym_POUND] = ACTIONS(8294), + }, + [STATE(4846)] = { + [sym_do_condition] = STATE(5712), + [sym_identifier] = ACTIONS(8298), + [sym_newline] = ACTIONS(8300), + [anon_sym_COLON] = ACTIONS(8300), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8298), + [aux_sym_frm_property_statement_token1] = ACTIONS(8298), + [anon_sym_DOT] = ACTIONS(8298), + [anon_sym_BANG] = ACTIONS(8300), + [aux_sym__attribute_identifier_token1] = ACTIONS(8298), + [aux_sym_option_statement_token3] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8298), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8298), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8298), + [aux_sym_preprocessor_const_token1] = ACTIONS(8298), + [sym_static_modifier] = ACTIONS(8298), + [sym__dim_keyword] = ACTIONS(8298), + [sym__redim_keyword] = ACTIONS(8298), + [aux_sym_get_accessor_token1] = ACTIONS(8298), + [aux_sym_set_accessor_token1] = ACTIONS(8298), + [aux_sym_const_declaration_token1] = ACTIONS(8298), + [anon_sym_LPAREN] = ACTIONS(8300), + [aux_sym_as_type_clause_token2] = ACTIONS(8298), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8298), + [aux_sym_visibility_token1] = ACTIONS(8298), + [aux_sym_visibility_token2] = ACTIONS(8298), + [aux_sym_elseif_fragment_token1] = ACTIONS(8298), + [aux_sym_else_fragment_token1] = ACTIONS(8298), + [aux_sym_select_statement_token1] = ACTIONS(8298), + [aux_sym__for_header_token1] = ACTIONS(8298), + [aux_sym_do_statement_token1] = ACTIONS(8298), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8298), + [aux_sym_exit_statement_token1] = ACTIONS(8298), + [sym_end_statement] = ACTIONS(8300), + [aux_sym_on_goto_statement_token1] = ACTIONS(8298), + [aux_sym_on_goto_statement_token2] = ACTIONS(8298), + [aux_sym_on_error_statement_token2] = ACTIONS(8298), + [sym__ambiguous_redim_statement] = ACTIONS(8300), + [aux_sym_erase_statement_token1] = ACTIONS(8298), + [aux_sym_open_statement_token1] = ACTIONS(8298), + [aux_sym_file_mode_token2] = ACTIONS(8298), + [aux_sym_file_access_token2] = ACTIONS(8298), + [aux_sym_file_lock_token2] = ACTIONS(8298), + [aux_sym_print_statement_token1] = ACTIONS(8298), + [anon_sym_PLUS] = ACTIONS(8300), + [anon_sym_DASH] = ACTIONS(8298), + [anon_sym_QMARK] = ACTIONS(8300), + [aux_sym_close_statement_token1] = ACTIONS(8298), + [aux_sym_put_statement_token1] = ACTIONS(8298), + [aux_sym_unlock_statement_token1] = ACTIONS(8298), + [aux_sym_seek_statement_token1] = ACTIONS(8298), + [sym_reset_statement] = ACTIONS(8298), + [aux_sym_raise_event_statement_token1] = ACTIONS(8298), + [sym_stop_statement] = ACTIONS(8298), + [sym_beep_statement] = ACTIONS(8298), + [aux_sym_unload_statement_token1] = ACTIONS(8298), + [aux_sym_def_type_statement_token1] = ACTIONS(8298), + [aux_sym_def_type_statement_token2] = ACTIONS(8298), + [aux_sym_def_type_statement_token3] = ACTIONS(8298), + [aux_sym_def_type_statement_token4] = ACTIONS(8298), + [aux_sym_def_type_statement_token5] = ACTIONS(8298), + [aux_sym_def_type_statement_token6] = ACTIONS(8298), + [aux_sym_def_type_statement_token7] = ACTIONS(8298), + [aux_sym_def_type_statement_token8] = ACTIONS(8298), + [aux_sym_def_type_statement_token9] = ACTIONS(8298), + [aux_sym_def_type_statement_token10] = ACTIONS(8298), + [aux_sym_def_type_statement_token11] = ACTIONS(8298), + [aux_sym_def_type_statement_token12] = ACTIONS(8298), + [aux_sym_def_type_statement_token13] = ACTIONS(8298), + [aux_sym_def_type_statement_token14] = ACTIONS(8298), + [aux_sym_call_statement_token1] = ACTIONS(8298), + [sym__ambiguous_call_statement] = ACTIONS(8298), + [aux_sym_addressof_expression_token1] = ACTIONS(8298), + [aux_sym_type_of_expression_token1] = ACTIONS(8298), + [aux_sym_unary_expression_token1] = ACTIONS(8298), + [sym_string_literal] = ACTIONS(8300), + [sym_number_literal] = ACTIONS(8300), + [aux_sym_boolean_literal_token1] = ACTIONS(8298), + [aux_sym_boolean_literal_token2] = ACTIONS(8298), + [sym_nothing_literal] = ACTIONS(8298), + [sym_null_literal] = ACTIONS(8298), + [sym_empty_literal] = ACTIONS(8298), + [sym_date_literal] = ACTIONS(8300), + [anon_sym_POUND] = ACTIONS(8298), + }, + [STATE(4847)] = { + [aux_sym__argument_sequence_repeat2] = STATE(4860), + [sym_identifier] = ACTIONS(4166), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5034), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4164), + [aux_sym_as_type_clause_token2] = ACTIONS(4166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4166), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4166), + [aux_sym_type_of_expression_token1] = ACTIONS(4166), + [aux_sym_unary_expression_token1] = ACTIONS(4166), + [sym_string_literal] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4164), + [aux_sym_boolean_literal_token1] = ACTIONS(4166), + [aux_sym_boolean_literal_token2] = ACTIONS(4166), + [sym_nothing_literal] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4166), + [sym_empty_literal] = ACTIONS(4166), + [sym_date_literal] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4166), + }, + [STATE(4848)] = { + [aux_sym__argument_sequence_repeat2] = STATE(4895), + [sym_identifier] = ACTIONS(4166), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5034), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4164), + [aux_sym_as_type_clause_token2] = ACTIONS(4166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4166), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4166), + [aux_sym_type_of_expression_token1] = ACTIONS(4166), + [aux_sym_unary_expression_token1] = ACTIONS(4166), + [sym_string_literal] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4164), + [aux_sym_boolean_literal_token1] = ACTIONS(4166), + [aux_sym_boolean_literal_token2] = ACTIONS(4166), + [sym_nothing_literal] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4166), + [sym_empty_literal] = ACTIONS(4166), + [sym_date_literal] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4166), + }, + [STATE(4849)] = { + [sym_do_condition] = STATE(5722), + [sym_identifier] = ACTIONS(8374), + [sym_newline] = ACTIONS(8376), + [anon_sym_COLON] = ACTIONS(8376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8374), + [aux_sym_frm_property_statement_token1] = ACTIONS(8374), + [anon_sym_DOT] = ACTIONS(8374), + [anon_sym_BANG] = ACTIONS(8376), + [aux_sym__attribute_identifier_token1] = ACTIONS(8374), + [aux_sym_option_statement_token3] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8374), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8374), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8374), + [aux_sym_preprocessor_const_token1] = ACTIONS(8374), + [sym_static_modifier] = ACTIONS(8374), + [sym__dim_keyword] = ACTIONS(8374), + [sym__redim_keyword] = ACTIONS(8374), + [aux_sym_get_accessor_token1] = ACTIONS(8374), + [aux_sym_set_accessor_token1] = ACTIONS(8374), + [aux_sym_const_declaration_token1] = ACTIONS(8374), + [anon_sym_LPAREN] = ACTIONS(8376), + [aux_sym_as_type_clause_token2] = ACTIONS(8374), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8374), + [aux_sym_visibility_token1] = ACTIONS(8374), + [aux_sym_visibility_token2] = ACTIONS(8374), + [aux_sym_elseif_fragment_token1] = ACTIONS(8374), + [aux_sym_else_fragment_token1] = ACTIONS(8374), + [aux_sym_select_statement_token1] = ACTIONS(8374), + [aux_sym__for_header_token1] = ACTIONS(8374), + [aux_sym_do_statement_token1] = ACTIONS(8374), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8374), + [aux_sym_exit_statement_token1] = ACTIONS(8374), + [sym_end_statement] = ACTIONS(8376), + [aux_sym_on_goto_statement_token1] = ACTIONS(8374), + [aux_sym_on_goto_statement_token2] = ACTIONS(8374), + [aux_sym_on_error_statement_token2] = ACTIONS(8374), + [sym__ambiguous_redim_statement] = ACTIONS(8376), + [aux_sym_erase_statement_token1] = ACTIONS(8374), + [aux_sym_open_statement_token1] = ACTIONS(8374), + [aux_sym_file_mode_token2] = ACTIONS(8374), + [aux_sym_file_access_token2] = ACTIONS(8374), + [aux_sym_file_lock_token2] = ACTIONS(8374), + [aux_sym_print_statement_token1] = ACTIONS(8374), + [anon_sym_PLUS] = ACTIONS(8376), + [anon_sym_DASH] = ACTIONS(8374), + [anon_sym_QMARK] = ACTIONS(8376), + [aux_sym_close_statement_token1] = ACTIONS(8374), + [aux_sym_put_statement_token1] = ACTIONS(8374), + [aux_sym_unlock_statement_token1] = ACTIONS(8374), + [aux_sym_seek_statement_token1] = ACTIONS(8374), + [sym_reset_statement] = ACTIONS(8374), + [aux_sym_raise_event_statement_token1] = ACTIONS(8374), + [sym_stop_statement] = ACTIONS(8374), + [sym_beep_statement] = ACTIONS(8374), + [aux_sym_unload_statement_token1] = ACTIONS(8374), + [aux_sym_def_type_statement_token1] = ACTIONS(8374), + [aux_sym_def_type_statement_token2] = ACTIONS(8374), + [aux_sym_def_type_statement_token3] = ACTIONS(8374), + [aux_sym_def_type_statement_token4] = ACTIONS(8374), + [aux_sym_def_type_statement_token5] = ACTIONS(8374), + [aux_sym_def_type_statement_token6] = ACTIONS(8374), + [aux_sym_def_type_statement_token7] = ACTIONS(8374), + [aux_sym_def_type_statement_token8] = ACTIONS(8374), + [aux_sym_def_type_statement_token9] = ACTIONS(8374), + [aux_sym_def_type_statement_token10] = ACTIONS(8374), + [aux_sym_def_type_statement_token11] = ACTIONS(8374), + [aux_sym_def_type_statement_token12] = ACTIONS(8374), + [aux_sym_def_type_statement_token13] = ACTIONS(8374), + [aux_sym_def_type_statement_token14] = ACTIONS(8374), + [aux_sym_call_statement_token1] = ACTIONS(8374), + [sym__ambiguous_call_statement] = ACTIONS(8374), + [aux_sym_addressof_expression_token1] = ACTIONS(8374), + [aux_sym_type_of_expression_token1] = ACTIONS(8374), + [aux_sym_unary_expression_token1] = ACTIONS(8374), + [sym_string_literal] = ACTIONS(8376), + [sym_number_literal] = ACTIONS(8376), + [aux_sym_boolean_literal_token1] = ACTIONS(8374), + [aux_sym_boolean_literal_token2] = ACTIONS(8374), + [sym_nothing_literal] = ACTIONS(8374), + [sym_null_literal] = ACTIONS(8374), + [sym_empty_literal] = ACTIONS(8374), + [sym_date_literal] = ACTIONS(8376), + [anon_sym_POUND] = ACTIONS(8374), + }, + [STATE(4850)] = { + [sym_do_condition] = STATE(5723), + [sym_identifier] = ACTIONS(8378), + [sym_newline] = ACTIONS(8380), + [anon_sym_COLON] = ACTIONS(8380), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8378), + [aux_sym_frm_property_statement_token1] = ACTIONS(8378), + [anon_sym_DOT] = ACTIONS(8378), + [anon_sym_BANG] = ACTIONS(8380), + [aux_sym__attribute_identifier_token1] = ACTIONS(8378), + [aux_sym_option_statement_token3] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8378), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8378), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8378), + [aux_sym_preprocessor_const_token1] = ACTIONS(8378), + [sym_static_modifier] = ACTIONS(8378), + [sym__dim_keyword] = ACTIONS(8378), + [sym__redim_keyword] = ACTIONS(8378), + [aux_sym_get_accessor_token1] = ACTIONS(8378), + [aux_sym_set_accessor_token1] = ACTIONS(8378), + [aux_sym_const_declaration_token1] = ACTIONS(8378), + [anon_sym_LPAREN] = ACTIONS(8380), + [aux_sym_as_type_clause_token2] = ACTIONS(8378), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8378), + [aux_sym_visibility_token1] = ACTIONS(8378), + [aux_sym_visibility_token2] = ACTIONS(8378), + [aux_sym_elseif_fragment_token1] = ACTIONS(8378), + [aux_sym_else_fragment_token1] = ACTIONS(8378), + [aux_sym_select_statement_token1] = ACTIONS(8378), + [aux_sym__for_header_token1] = ACTIONS(8378), + [aux_sym_do_statement_token1] = ACTIONS(8378), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8378), + [aux_sym_exit_statement_token1] = ACTIONS(8378), + [sym_end_statement] = ACTIONS(8380), + [aux_sym_on_goto_statement_token1] = ACTIONS(8378), + [aux_sym_on_goto_statement_token2] = ACTIONS(8378), + [aux_sym_on_error_statement_token2] = ACTIONS(8378), + [sym__ambiguous_redim_statement] = ACTIONS(8380), + [aux_sym_erase_statement_token1] = ACTIONS(8378), + [aux_sym_open_statement_token1] = ACTIONS(8378), + [aux_sym_file_mode_token2] = ACTIONS(8378), + [aux_sym_file_access_token2] = ACTIONS(8378), + [aux_sym_file_lock_token2] = ACTIONS(8378), + [aux_sym_print_statement_token1] = ACTIONS(8378), + [anon_sym_PLUS] = ACTIONS(8380), + [anon_sym_DASH] = ACTIONS(8378), + [anon_sym_QMARK] = ACTIONS(8380), + [aux_sym_close_statement_token1] = ACTIONS(8378), + [aux_sym_put_statement_token1] = ACTIONS(8378), + [aux_sym_unlock_statement_token1] = ACTIONS(8378), + [aux_sym_seek_statement_token1] = ACTIONS(8378), + [sym_reset_statement] = ACTIONS(8378), + [aux_sym_raise_event_statement_token1] = ACTIONS(8378), + [sym_stop_statement] = ACTIONS(8378), + [sym_beep_statement] = ACTIONS(8378), + [aux_sym_unload_statement_token1] = ACTIONS(8378), + [aux_sym_def_type_statement_token1] = ACTIONS(8378), + [aux_sym_def_type_statement_token2] = ACTIONS(8378), + [aux_sym_def_type_statement_token3] = ACTIONS(8378), + [aux_sym_def_type_statement_token4] = ACTIONS(8378), + [aux_sym_def_type_statement_token5] = ACTIONS(8378), + [aux_sym_def_type_statement_token6] = ACTIONS(8378), + [aux_sym_def_type_statement_token7] = ACTIONS(8378), + [aux_sym_def_type_statement_token8] = ACTIONS(8378), + [aux_sym_def_type_statement_token9] = ACTIONS(8378), + [aux_sym_def_type_statement_token10] = ACTIONS(8378), + [aux_sym_def_type_statement_token11] = ACTIONS(8378), + [aux_sym_def_type_statement_token12] = ACTIONS(8378), + [aux_sym_def_type_statement_token13] = ACTIONS(8378), + [aux_sym_def_type_statement_token14] = ACTIONS(8378), + [aux_sym_call_statement_token1] = ACTIONS(8378), + [sym__ambiguous_call_statement] = ACTIONS(8378), + [aux_sym_addressof_expression_token1] = ACTIONS(8378), + [aux_sym_type_of_expression_token1] = ACTIONS(8378), + [aux_sym_unary_expression_token1] = ACTIONS(8378), + [sym_string_literal] = ACTIONS(8380), + [sym_number_literal] = ACTIONS(8380), + [aux_sym_boolean_literal_token1] = ACTIONS(8378), + [aux_sym_boolean_literal_token2] = ACTIONS(8378), + [sym_nothing_literal] = ACTIONS(8378), + [sym_null_literal] = ACTIONS(8378), + [sym_empty_literal] = ACTIONS(8378), + [sym_date_literal] = ACTIONS(8380), + [anon_sym_POUND] = ACTIONS(8378), + }, + [STATE(4851)] = { + [sym_argument_list] = STATE(10051), + [sym_identifier] = ACTIONS(8393), + [sym_newline] = ACTIONS(8395), + [anon_sym_COLON] = ACTIONS(8395), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8393), + [aux_sym_frm_property_statement_token1] = ACTIONS(8393), + [anon_sym_DOT] = ACTIONS(8393), + [anon_sym_BANG] = ACTIONS(8395), + [aux_sym__attribute_identifier_token1] = ACTIONS(8393), + [aux_sym_option_statement_token3] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8393), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8393), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8393), + [aux_sym_preprocessor_const_token1] = ACTIONS(8393), + [sym_static_modifier] = ACTIONS(8393), + [sym__dim_keyword] = ACTIONS(8393), + [sym__redim_keyword] = ACTIONS(8393), + [aux_sym_get_accessor_token1] = ACTIONS(8393), + [aux_sym_set_accessor_token1] = ACTIONS(8393), + [anon_sym_COMMA] = ACTIONS(8395), + [aux_sym_const_declaration_token1] = ACTIONS(8393), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(8393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8393), + [aux_sym_visibility_token1] = ACTIONS(8393), + [aux_sym_visibility_token2] = ACTIONS(8393), + [aux_sym_elseif_fragment_token1] = ACTIONS(8393), + [aux_sym_else_fragment_token1] = ACTIONS(8393), + [aux_sym_select_statement_token1] = ACTIONS(8393), + [aux_sym__for_header_token1] = ACTIONS(8393), + [aux_sym_do_statement_token1] = ACTIONS(8393), + [aux_sym_do_condition_token1] = ACTIONS(8393), + [aux_sym_with_statement_token1] = ACTIONS(8393), + [aux_sym_exit_statement_token1] = ACTIONS(8393), + [sym_end_statement] = ACTIONS(8395), + [aux_sym_on_goto_statement_token1] = ACTIONS(8393), + [aux_sym_on_goto_statement_token2] = ACTIONS(8393), + [aux_sym_on_error_statement_token2] = ACTIONS(8393), + [sym__ambiguous_redim_statement] = ACTIONS(8395), + [aux_sym_erase_statement_token1] = ACTIONS(8393), + [aux_sym_open_statement_token1] = ACTIONS(8393), + [aux_sym_file_mode_token2] = ACTIONS(8393), + [aux_sym_file_access_token2] = ACTIONS(8393), + [aux_sym_file_lock_token2] = ACTIONS(8393), + [aux_sym_print_statement_token1] = ACTIONS(8393), + [anon_sym_PLUS] = ACTIONS(8395), + [anon_sym_DASH] = ACTIONS(8393), + [anon_sym_QMARK] = ACTIONS(8395), + [aux_sym_close_statement_token1] = ACTIONS(8393), + [aux_sym_put_statement_token1] = ACTIONS(8393), + [aux_sym_unlock_statement_token1] = ACTIONS(8393), + [aux_sym_seek_statement_token1] = ACTIONS(8393), + [sym_reset_statement] = ACTIONS(8393), + [aux_sym_raise_event_statement_token1] = ACTIONS(8393), + [sym_stop_statement] = ACTIONS(8393), + [sym_beep_statement] = ACTIONS(8393), + [aux_sym_unload_statement_token1] = ACTIONS(8393), + [aux_sym_def_type_statement_token1] = ACTIONS(8393), + [aux_sym_def_type_statement_token2] = ACTIONS(8393), + [aux_sym_def_type_statement_token3] = ACTIONS(8393), + [aux_sym_def_type_statement_token4] = ACTIONS(8393), + [aux_sym_def_type_statement_token5] = ACTIONS(8393), + [aux_sym_def_type_statement_token6] = ACTIONS(8393), + [aux_sym_def_type_statement_token7] = ACTIONS(8393), + [aux_sym_def_type_statement_token8] = ACTIONS(8393), + [aux_sym_def_type_statement_token9] = ACTIONS(8393), + [aux_sym_def_type_statement_token10] = ACTIONS(8393), + [aux_sym_def_type_statement_token11] = ACTIONS(8393), + [aux_sym_def_type_statement_token12] = ACTIONS(8393), + [aux_sym_def_type_statement_token13] = ACTIONS(8393), + [aux_sym_def_type_statement_token14] = ACTIONS(8393), + [aux_sym_call_statement_token1] = ACTIONS(8393), + [sym__ambiguous_call_statement] = ACTIONS(8393), + [aux_sym_addressof_expression_token1] = ACTIONS(8393), + [aux_sym_type_of_expression_token1] = ACTIONS(8393), + [aux_sym_unary_expression_token1] = ACTIONS(8393), + [sym_string_literal] = ACTIONS(8395), + [sym_number_literal] = ACTIONS(8395), + [aux_sym_boolean_literal_token1] = ACTIONS(8393), + [aux_sym_boolean_literal_token2] = ACTIONS(8393), + [sym_nothing_literal] = ACTIONS(8393), + [sym_null_literal] = ACTIONS(8393), + [sym_empty_literal] = ACTIONS(8393), + [sym_date_literal] = ACTIONS(8395), + [anon_sym_POUND] = ACTIONS(8393), + }, + [STATE(4852)] = { + [aux_sym_input_statement_repeat1] = STATE(4852), + [sym_identifier] = ACTIONS(8401), + [sym_newline] = ACTIONS(8403), + [anon_sym_COLON] = ACTIONS(8403), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8401), + [aux_sym_frm_property_statement_token1] = ACTIONS(8401), + [anon_sym_DOT] = ACTIONS(8401), + [anon_sym_BANG] = ACTIONS(8403), + [aux_sym__attribute_identifier_token1] = ACTIONS(8401), + [aux_sym_option_statement_token3] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8401), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8401), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8401), + [aux_sym_preprocessor_const_token1] = ACTIONS(8401), + [sym_static_modifier] = ACTIONS(8401), + [sym__dim_keyword] = ACTIONS(8401), + [sym__redim_keyword] = ACTIONS(8401), + [aux_sym_get_accessor_token1] = ACTIONS(8401), + [aux_sym_set_accessor_token1] = ACTIONS(8401), + [anon_sym_COMMA] = ACTIONS(10245), + [aux_sym_const_declaration_token1] = ACTIONS(8401), + [anon_sym_LPAREN] = ACTIONS(8403), + [aux_sym_as_type_clause_token2] = ACTIONS(8401), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8401), + [aux_sym_visibility_token1] = ACTIONS(8401), + [aux_sym_visibility_token2] = ACTIONS(8401), + [aux_sym_elseif_fragment_token1] = ACTIONS(8401), + [aux_sym_else_fragment_token1] = ACTIONS(8401), + [aux_sym_select_statement_token1] = ACTIONS(8401), + [aux_sym__for_header_token1] = ACTIONS(8401), + [aux_sym_do_statement_token1] = ACTIONS(8401), + [aux_sym_do_condition_token1] = ACTIONS(8401), + [aux_sym_with_statement_token1] = ACTIONS(8401), + [aux_sym_exit_statement_token1] = ACTIONS(8401), + [sym_end_statement] = ACTIONS(8403), + [aux_sym_on_goto_statement_token1] = ACTIONS(8401), + [aux_sym_on_goto_statement_token2] = ACTIONS(8401), + [aux_sym_on_error_statement_token2] = ACTIONS(8401), + [sym__ambiguous_redim_statement] = ACTIONS(8403), + [aux_sym_erase_statement_token1] = ACTIONS(8401), + [aux_sym_open_statement_token1] = ACTIONS(8401), + [aux_sym_file_mode_token2] = ACTIONS(8401), + [aux_sym_file_access_token2] = ACTIONS(8401), + [aux_sym_file_lock_token2] = ACTIONS(8401), + [aux_sym_print_statement_token1] = ACTIONS(8401), + [anon_sym_PLUS] = ACTIONS(8403), + [anon_sym_DASH] = ACTIONS(8401), + [anon_sym_QMARK] = ACTIONS(8403), + [aux_sym_close_statement_token1] = ACTIONS(8401), + [aux_sym_put_statement_token1] = ACTIONS(8401), + [aux_sym_unlock_statement_token1] = ACTIONS(8401), + [aux_sym_seek_statement_token1] = ACTIONS(8401), + [sym_reset_statement] = ACTIONS(8401), + [aux_sym_raise_event_statement_token1] = ACTIONS(8401), + [sym_stop_statement] = ACTIONS(8401), + [sym_beep_statement] = ACTIONS(8401), + [aux_sym_unload_statement_token1] = ACTIONS(8401), + [aux_sym_def_type_statement_token1] = ACTIONS(8401), + [aux_sym_def_type_statement_token2] = ACTIONS(8401), + [aux_sym_def_type_statement_token3] = ACTIONS(8401), + [aux_sym_def_type_statement_token4] = ACTIONS(8401), + [aux_sym_def_type_statement_token5] = ACTIONS(8401), + [aux_sym_def_type_statement_token6] = ACTIONS(8401), + [aux_sym_def_type_statement_token7] = ACTIONS(8401), + [aux_sym_def_type_statement_token8] = ACTIONS(8401), + [aux_sym_def_type_statement_token9] = ACTIONS(8401), + [aux_sym_def_type_statement_token10] = ACTIONS(8401), + [aux_sym_def_type_statement_token11] = ACTIONS(8401), + [aux_sym_def_type_statement_token12] = ACTIONS(8401), + [aux_sym_def_type_statement_token13] = ACTIONS(8401), + [aux_sym_def_type_statement_token14] = ACTIONS(8401), + [aux_sym_call_statement_token1] = ACTIONS(8401), + [sym__ambiguous_call_statement] = ACTIONS(8401), + [aux_sym_addressof_expression_token1] = ACTIONS(8401), + [aux_sym_type_of_expression_token1] = ACTIONS(8401), + [aux_sym_unary_expression_token1] = ACTIONS(8401), + [sym_string_literal] = ACTIONS(8403), + [sym_number_literal] = ACTIONS(8403), + [aux_sym_boolean_literal_token1] = ACTIONS(8401), + [aux_sym_boolean_literal_token2] = ACTIONS(8401), + [sym_nothing_literal] = ACTIONS(8401), + [sym_null_literal] = ACTIONS(8401), + [sym_empty_literal] = ACTIONS(8401), + [sym_date_literal] = ACTIONS(8403), + [anon_sym_POUND] = ACTIONS(8401), + }, + [STATE(4853)] = { + [aux_sym_next_variable_list_repeat1] = STATE(4853), + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(10248), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(4854)] = { + [sym_do_condition] = STATE(5726), + [sym_identifier] = ACTIONS(8411), + [sym_newline] = ACTIONS(8413), + [anon_sym_COLON] = ACTIONS(8413), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8411), + [aux_sym_frm_property_statement_token1] = ACTIONS(8411), + [anon_sym_DOT] = ACTIONS(8411), + [anon_sym_BANG] = ACTIONS(8413), + [aux_sym__attribute_identifier_token1] = ACTIONS(8411), + [aux_sym_option_statement_token3] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8411), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8411), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8411), + [aux_sym_preprocessor_const_token1] = ACTIONS(8411), + [sym_static_modifier] = ACTIONS(8411), + [sym__dim_keyword] = ACTIONS(8411), + [sym__redim_keyword] = ACTIONS(8411), + [aux_sym_get_accessor_token1] = ACTIONS(8411), + [aux_sym_set_accessor_token1] = ACTIONS(8411), + [aux_sym_const_declaration_token1] = ACTIONS(8411), + [anon_sym_LPAREN] = ACTIONS(8413), + [aux_sym_as_type_clause_token2] = ACTIONS(8411), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8411), + [aux_sym_visibility_token1] = ACTIONS(8411), + [aux_sym_visibility_token2] = ACTIONS(8411), + [aux_sym_elseif_fragment_token1] = ACTIONS(8411), + [aux_sym_else_fragment_token1] = ACTIONS(8411), + [aux_sym_select_statement_token1] = ACTIONS(8411), + [aux_sym__for_header_token1] = ACTIONS(8411), + [aux_sym_do_statement_token1] = ACTIONS(8411), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8411), + [aux_sym_exit_statement_token1] = ACTIONS(8411), + [sym_end_statement] = ACTIONS(8413), + [aux_sym_on_goto_statement_token1] = ACTIONS(8411), + [aux_sym_on_goto_statement_token2] = ACTIONS(8411), + [aux_sym_on_error_statement_token2] = ACTIONS(8411), + [sym__ambiguous_redim_statement] = ACTIONS(8413), + [aux_sym_erase_statement_token1] = ACTIONS(8411), + [aux_sym_open_statement_token1] = ACTIONS(8411), + [aux_sym_file_mode_token2] = ACTIONS(8411), + [aux_sym_file_access_token2] = ACTIONS(8411), + [aux_sym_file_lock_token2] = ACTIONS(8411), + [aux_sym_print_statement_token1] = ACTIONS(8411), + [anon_sym_PLUS] = ACTIONS(8413), + [anon_sym_DASH] = ACTIONS(8411), + [anon_sym_QMARK] = ACTIONS(8413), + [aux_sym_close_statement_token1] = ACTIONS(8411), + [aux_sym_put_statement_token1] = ACTIONS(8411), + [aux_sym_unlock_statement_token1] = ACTIONS(8411), + [aux_sym_seek_statement_token1] = ACTIONS(8411), + [sym_reset_statement] = ACTIONS(8411), + [aux_sym_raise_event_statement_token1] = ACTIONS(8411), + [sym_stop_statement] = ACTIONS(8411), + [sym_beep_statement] = ACTIONS(8411), + [aux_sym_unload_statement_token1] = ACTIONS(8411), + [aux_sym_def_type_statement_token1] = ACTIONS(8411), + [aux_sym_def_type_statement_token2] = ACTIONS(8411), + [aux_sym_def_type_statement_token3] = ACTIONS(8411), + [aux_sym_def_type_statement_token4] = ACTIONS(8411), + [aux_sym_def_type_statement_token5] = ACTIONS(8411), + [aux_sym_def_type_statement_token6] = ACTIONS(8411), + [aux_sym_def_type_statement_token7] = ACTIONS(8411), + [aux_sym_def_type_statement_token8] = ACTIONS(8411), + [aux_sym_def_type_statement_token9] = ACTIONS(8411), + [aux_sym_def_type_statement_token10] = ACTIONS(8411), + [aux_sym_def_type_statement_token11] = ACTIONS(8411), + [aux_sym_def_type_statement_token12] = ACTIONS(8411), + [aux_sym_def_type_statement_token13] = ACTIONS(8411), + [aux_sym_def_type_statement_token14] = ACTIONS(8411), + [aux_sym_call_statement_token1] = ACTIONS(8411), + [sym__ambiguous_call_statement] = ACTIONS(8411), + [aux_sym_addressof_expression_token1] = ACTIONS(8411), + [aux_sym_type_of_expression_token1] = ACTIONS(8411), + [aux_sym_unary_expression_token1] = ACTIONS(8411), + [sym_string_literal] = ACTIONS(8413), + [sym_number_literal] = ACTIONS(8413), + [aux_sym_boolean_literal_token1] = ACTIONS(8411), + [aux_sym_boolean_literal_token2] = ACTIONS(8411), + [sym_nothing_literal] = ACTIONS(8411), + [sym_null_literal] = ACTIONS(8411), + [sym_empty_literal] = ACTIONS(8411), + [sym_date_literal] = ACTIONS(8413), + [anon_sym_POUND] = ACTIONS(8411), + }, + [STATE(4855)] = { + [sym_do_condition] = STATE(5727), + [sym_identifier] = ACTIONS(8415), + [sym_newline] = ACTIONS(8417), + [anon_sym_COLON] = ACTIONS(8417), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8415), + [aux_sym_frm_property_statement_token1] = ACTIONS(8415), + [anon_sym_DOT] = ACTIONS(8415), + [anon_sym_BANG] = ACTIONS(8417), + [aux_sym__attribute_identifier_token1] = ACTIONS(8415), + [aux_sym_option_statement_token3] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8415), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8415), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8415), + [aux_sym_preprocessor_const_token1] = ACTIONS(8415), + [sym_static_modifier] = ACTIONS(8415), + [sym__dim_keyword] = ACTIONS(8415), + [sym__redim_keyword] = ACTIONS(8415), + [aux_sym_get_accessor_token1] = ACTIONS(8415), + [aux_sym_set_accessor_token1] = ACTIONS(8415), + [aux_sym_const_declaration_token1] = ACTIONS(8415), + [anon_sym_LPAREN] = ACTIONS(8417), + [aux_sym_as_type_clause_token2] = ACTIONS(8415), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8415), + [aux_sym_visibility_token1] = ACTIONS(8415), + [aux_sym_visibility_token2] = ACTIONS(8415), + [aux_sym_elseif_fragment_token1] = ACTIONS(8415), + [aux_sym_else_fragment_token1] = ACTIONS(8415), + [aux_sym_select_statement_token1] = ACTIONS(8415), + [aux_sym__for_header_token1] = ACTIONS(8415), + [aux_sym_do_statement_token1] = ACTIONS(8415), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8415), + [aux_sym_exit_statement_token1] = ACTIONS(8415), + [sym_end_statement] = ACTIONS(8417), + [aux_sym_on_goto_statement_token1] = ACTIONS(8415), + [aux_sym_on_goto_statement_token2] = ACTIONS(8415), + [aux_sym_on_error_statement_token2] = ACTIONS(8415), + [sym__ambiguous_redim_statement] = ACTIONS(8417), + [aux_sym_erase_statement_token1] = ACTIONS(8415), + [aux_sym_open_statement_token1] = ACTIONS(8415), + [aux_sym_file_mode_token2] = ACTIONS(8415), + [aux_sym_file_access_token2] = ACTIONS(8415), + [aux_sym_file_lock_token2] = ACTIONS(8415), + [aux_sym_print_statement_token1] = ACTIONS(8415), + [anon_sym_PLUS] = ACTIONS(8417), + [anon_sym_DASH] = ACTIONS(8415), + [anon_sym_QMARK] = ACTIONS(8417), + [aux_sym_close_statement_token1] = ACTIONS(8415), + [aux_sym_put_statement_token1] = ACTIONS(8415), + [aux_sym_unlock_statement_token1] = ACTIONS(8415), + [aux_sym_seek_statement_token1] = ACTIONS(8415), + [sym_reset_statement] = ACTIONS(8415), + [aux_sym_raise_event_statement_token1] = ACTIONS(8415), + [sym_stop_statement] = ACTIONS(8415), + [sym_beep_statement] = ACTIONS(8415), + [aux_sym_unload_statement_token1] = ACTIONS(8415), + [aux_sym_def_type_statement_token1] = ACTIONS(8415), + [aux_sym_def_type_statement_token2] = ACTIONS(8415), + [aux_sym_def_type_statement_token3] = ACTIONS(8415), + [aux_sym_def_type_statement_token4] = ACTIONS(8415), + [aux_sym_def_type_statement_token5] = ACTIONS(8415), + [aux_sym_def_type_statement_token6] = ACTIONS(8415), + [aux_sym_def_type_statement_token7] = ACTIONS(8415), + [aux_sym_def_type_statement_token8] = ACTIONS(8415), + [aux_sym_def_type_statement_token9] = ACTIONS(8415), + [aux_sym_def_type_statement_token10] = ACTIONS(8415), + [aux_sym_def_type_statement_token11] = ACTIONS(8415), + [aux_sym_def_type_statement_token12] = ACTIONS(8415), + [aux_sym_def_type_statement_token13] = ACTIONS(8415), + [aux_sym_def_type_statement_token14] = ACTIONS(8415), + [aux_sym_call_statement_token1] = ACTIONS(8415), + [sym__ambiguous_call_statement] = ACTIONS(8415), + [aux_sym_addressof_expression_token1] = ACTIONS(8415), + [aux_sym_type_of_expression_token1] = ACTIONS(8415), + [aux_sym_unary_expression_token1] = ACTIONS(8415), + [sym_string_literal] = ACTIONS(8417), + [sym_number_literal] = ACTIONS(8417), + [aux_sym_boolean_literal_token1] = ACTIONS(8415), + [aux_sym_boolean_literal_token2] = ACTIONS(8415), + [sym_nothing_literal] = ACTIONS(8415), + [sym_null_literal] = ACTIONS(8415), + [sym_empty_literal] = ACTIONS(8415), + [sym_date_literal] = ACTIONS(8417), + [anon_sym_POUND] = ACTIONS(8415), + }, + [STATE(4856)] = { + [sym_do_condition] = STATE(5728), + [sym_identifier] = ACTIONS(8419), + [sym_newline] = ACTIONS(8421), + [anon_sym_COLON] = ACTIONS(8421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8419), + [aux_sym_frm_property_statement_token1] = ACTIONS(8419), + [anon_sym_DOT] = ACTIONS(8419), + [anon_sym_BANG] = ACTIONS(8421), + [aux_sym__attribute_identifier_token1] = ACTIONS(8419), + [aux_sym_option_statement_token3] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8419), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8419), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8419), + [aux_sym_preprocessor_const_token1] = ACTIONS(8419), + [sym_static_modifier] = ACTIONS(8419), + [sym__dim_keyword] = ACTIONS(8419), + [sym__redim_keyword] = ACTIONS(8419), + [aux_sym_get_accessor_token1] = ACTIONS(8419), + [aux_sym_set_accessor_token1] = ACTIONS(8419), + [aux_sym_const_declaration_token1] = ACTIONS(8419), + [anon_sym_LPAREN] = ACTIONS(8421), + [aux_sym_as_type_clause_token2] = ACTIONS(8419), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8419), + [aux_sym_visibility_token1] = ACTIONS(8419), + [aux_sym_visibility_token2] = ACTIONS(8419), + [aux_sym_elseif_fragment_token1] = ACTIONS(8419), + [aux_sym_else_fragment_token1] = ACTIONS(8419), + [aux_sym_select_statement_token1] = ACTIONS(8419), + [aux_sym__for_header_token1] = ACTIONS(8419), + [aux_sym_do_statement_token1] = ACTIONS(8419), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8419), + [aux_sym_exit_statement_token1] = ACTIONS(8419), + [sym_end_statement] = ACTIONS(8421), + [aux_sym_on_goto_statement_token1] = ACTIONS(8419), + [aux_sym_on_goto_statement_token2] = ACTIONS(8419), + [aux_sym_on_error_statement_token2] = ACTIONS(8419), + [sym__ambiguous_redim_statement] = ACTIONS(8421), + [aux_sym_erase_statement_token1] = ACTIONS(8419), + [aux_sym_open_statement_token1] = ACTIONS(8419), + [aux_sym_file_mode_token2] = ACTIONS(8419), + [aux_sym_file_access_token2] = ACTIONS(8419), + [aux_sym_file_lock_token2] = ACTIONS(8419), + [aux_sym_print_statement_token1] = ACTIONS(8419), + [anon_sym_PLUS] = ACTIONS(8421), + [anon_sym_DASH] = ACTIONS(8419), + [anon_sym_QMARK] = ACTIONS(8421), + [aux_sym_close_statement_token1] = ACTIONS(8419), + [aux_sym_put_statement_token1] = ACTIONS(8419), + [aux_sym_unlock_statement_token1] = ACTIONS(8419), + [aux_sym_seek_statement_token1] = ACTIONS(8419), + [sym_reset_statement] = ACTIONS(8419), + [aux_sym_raise_event_statement_token1] = ACTIONS(8419), + [sym_stop_statement] = ACTIONS(8419), + [sym_beep_statement] = ACTIONS(8419), + [aux_sym_unload_statement_token1] = ACTIONS(8419), + [aux_sym_def_type_statement_token1] = ACTIONS(8419), + [aux_sym_def_type_statement_token2] = ACTIONS(8419), + [aux_sym_def_type_statement_token3] = ACTIONS(8419), + [aux_sym_def_type_statement_token4] = ACTIONS(8419), + [aux_sym_def_type_statement_token5] = ACTIONS(8419), + [aux_sym_def_type_statement_token6] = ACTIONS(8419), + [aux_sym_def_type_statement_token7] = ACTIONS(8419), + [aux_sym_def_type_statement_token8] = ACTIONS(8419), + [aux_sym_def_type_statement_token9] = ACTIONS(8419), + [aux_sym_def_type_statement_token10] = ACTIONS(8419), + [aux_sym_def_type_statement_token11] = ACTIONS(8419), + [aux_sym_def_type_statement_token12] = ACTIONS(8419), + [aux_sym_def_type_statement_token13] = ACTIONS(8419), + [aux_sym_def_type_statement_token14] = ACTIONS(8419), + [aux_sym_call_statement_token1] = ACTIONS(8419), + [sym__ambiguous_call_statement] = ACTIONS(8419), + [aux_sym_addressof_expression_token1] = ACTIONS(8419), + [aux_sym_type_of_expression_token1] = ACTIONS(8419), + [aux_sym_unary_expression_token1] = ACTIONS(8419), + [sym_string_literal] = ACTIONS(8421), + [sym_number_literal] = ACTIONS(8421), + [aux_sym_boolean_literal_token1] = ACTIONS(8419), + [aux_sym_boolean_literal_token2] = ACTIONS(8419), + [sym_nothing_literal] = ACTIONS(8419), + [sym_null_literal] = ACTIONS(8419), + [sym_empty_literal] = ACTIONS(8419), + [sym_date_literal] = ACTIONS(8421), + [anon_sym_POUND] = ACTIONS(8419), + }, + [STATE(4857)] = { + [sym_do_condition] = STATE(5729), + [sym_identifier] = ACTIONS(8423), + [sym_newline] = ACTIONS(8425), + [anon_sym_COLON] = ACTIONS(8425), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8423), + [aux_sym_frm_property_statement_token1] = ACTIONS(8423), + [anon_sym_DOT] = ACTIONS(8423), + [anon_sym_BANG] = ACTIONS(8425), + [aux_sym__attribute_identifier_token1] = ACTIONS(8423), + [aux_sym_option_statement_token3] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8423), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8423), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8423), + [aux_sym_preprocessor_const_token1] = ACTIONS(8423), + [sym_static_modifier] = ACTIONS(8423), + [sym__dim_keyword] = ACTIONS(8423), + [sym__redim_keyword] = ACTIONS(8423), + [aux_sym_get_accessor_token1] = ACTIONS(8423), + [aux_sym_set_accessor_token1] = ACTIONS(8423), + [aux_sym_const_declaration_token1] = ACTIONS(8423), + [anon_sym_LPAREN] = ACTIONS(8425), + [aux_sym_as_type_clause_token2] = ACTIONS(8423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8423), + [aux_sym_visibility_token1] = ACTIONS(8423), + [aux_sym_visibility_token2] = ACTIONS(8423), + [aux_sym_elseif_fragment_token1] = ACTIONS(8423), + [aux_sym_else_fragment_token1] = ACTIONS(8423), + [aux_sym_select_statement_token1] = ACTIONS(8423), + [aux_sym__for_header_token1] = ACTIONS(8423), + [aux_sym_do_statement_token1] = ACTIONS(8423), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8423), + [aux_sym_exit_statement_token1] = ACTIONS(8423), + [sym_end_statement] = ACTIONS(8425), + [aux_sym_on_goto_statement_token1] = ACTIONS(8423), + [aux_sym_on_goto_statement_token2] = ACTIONS(8423), + [aux_sym_on_error_statement_token2] = ACTIONS(8423), + [sym__ambiguous_redim_statement] = ACTIONS(8425), + [aux_sym_erase_statement_token1] = ACTIONS(8423), + [aux_sym_open_statement_token1] = ACTIONS(8423), + [aux_sym_file_mode_token2] = ACTIONS(8423), + [aux_sym_file_access_token2] = ACTIONS(8423), + [aux_sym_file_lock_token2] = ACTIONS(8423), + [aux_sym_print_statement_token1] = ACTIONS(8423), + [anon_sym_PLUS] = ACTIONS(8425), + [anon_sym_DASH] = ACTIONS(8423), + [anon_sym_QMARK] = ACTIONS(8425), + [aux_sym_close_statement_token1] = ACTIONS(8423), + [aux_sym_put_statement_token1] = ACTIONS(8423), + [aux_sym_unlock_statement_token1] = ACTIONS(8423), + [aux_sym_seek_statement_token1] = ACTIONS(8423), + [sym_reset_statement] = ACTIONS(8423), + [aux_sym_raise_event_statement_token1] = ACTIONS(8423), + [sym_stop_statement] = ACTIONS(8423), + [sym_beep_statement] = ACTIONS(8423), + [aux_sym_unload_statement_token1] = ACTIONS(8423), + [aux_sym_def_type_statement_token1] = ACTIONS(8423), + [aux_sym_def_type_statement_token2] = ACTIONS(8423), + [aux_sym_def_type_statement_token3] = ACTIONS(8423), + [aux_sym_def_type_statement_token4] = ACTIONS(8423), + [aux_sym_def_type_statement_token5] = ACTIONS(8423), + [aux_sym_def_type_statement_token6] = ACTIONS(8423), + [aux_sym_def_type_statement_token7] = ACTIONS(8423), + [aux_sym_def_type_statement_token8] = ACTIONS(8423), + [aux_sym_def_type_statement_token9] = ACTIONS(8423), + [aux_sym_def_type_statement_token10] = ACTIONS(8423), + [aux_sym_def_type_statement_token11] = ACTIONS(8423), + [aux_sym_def_type_statement_token12] = ACTIONS(8423), + [aux_sym_def_type_statement_token13] = ACTIONS(8423), + [aux_sym_def_type_statement_token14] = ACTIONS(8423), + [aux_sym_call_statement_token1] = ACTIONS(8423), + [sym__ambiguous_call_statement] = ACTIONS(8423), + [aux_sym_addressof_expression_token1] = ACTIONS(8423), + [aux_sym_type_of_expression_token1] = ACTIONS(8423), + [aux_sym_unary_expression_token1] = ACTIONS(8423), + [sym_string_literal] = ACTIONS(8425), + [sym_number_literal] = ACTIONS(8425), + [aux_sym_boolean_literal_token1] = ACTIONS(8423), + [aux_sym_boolean_literal_token2] = ACTIONS(8423), + [sym_nothing_literal] = ACTIONS(8423), + [sym_null_literal] = ACTIONS(8423), + [sym_empty_literal] = ACTIONS(8423), + [sym_date_literal] = ACTIONS(8425), + [anon_sym_POUND] = ACTIONS(8423), + }, + [STATE(4858)] = { + [sym_do_condition] = STATE(5730), + [sym_identifier] = ACTIONS(8427), + [sym_newline] = ACTIONS(8429), + [anon_sym_COLON] = ACTIONS(8429), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8427), + [aux_sym_frm_property_statement_token1] = ACTIONS(8427), + [anon_sym_DOT] = ACTIONS(8427), + [anon_sym_BANG] = ACTIONS(8429), + [aux_sym__attribute_identifier_token1] = ACTIONS(8427), + [aux_sym_option_statement_token3] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8427), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8427), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8427), + [aux_sym_preprocessor_const_token1] = ACTIONS(8427), + [sym_static_modifier] = ACTIONS(8427), + [sym__dim_keyword] = ACTIONS(8427), + [sym__redim_keyword] = ACTIONS(8427), + [aux_sym_get_accessor_token1] = ACTIONS(8427), + [aux_sym_set_accessor_token1] = ACTIONS(8427), + [aux_sym_const_declaration_token1] = ACTIONS(8427), + [anon_sym_LPAREN] = ACTIONS(8429), + [aux_sym_as_type_clause_token2] = ACTIONS(8427), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8427), + [aux_sym_visibility_token1] = ACTIONS(8427), + [aux_sym_visibility_token2] = ACTIONS(8427), + [aux_sym_elseif_fragment_token1] = ACTIONS(8427), + [aux_sym_else_fragment_token1] = ACTIONS(8427), + [aux_sym_select_statement_token1] = ACTIONS(8427), + [aux_sym__for_header_token1] = ACTIONS(8427), + [aux_sym_do_statement_token1] = ACTIONS(8427), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8427), + [aux_sym_exit_statement_token1] = ACTIONS(8427), + [sym_end_statement] = ACTIONS(8429), + [aux_sym_on_goto_statement_token1] = ACTIONS(8427), + [aux_sym_on_goto_statement_token2] = ACTIONS(8427), + [aux_sym_on_error_statement_token2] = ACTIONS(8427), + [sym__ambiguous_redim_statement] = ACTIONS(8429), + [aux_sym_erase_statement_token1] = ACTIONS(8427), + [aux_sym_open_statement_token1] = ACTIONS(8427), + [aux_sym_file_mode_token2] = ACTIONS(8427), + [aux_sym_file_access_token2] = ACTIONS(8427), + [aux_sym_file_lock_token2] = ACTIONS(8427), + [aux_sym_print_statement_token1] = ACTIONS(8427), + [anon_sym_PLUS] = ACTIONS(8429), + [anon_sym_DASH] = ACTIONS(8427), + [anon_sym_QMARK] = ACTIONS(8429), + [aux_sym_close_statement_token1] = ACTIONS(8427), + [aux_sym_put_statement_token1] = ACTIONS(8427), + [aux_sym_unlock_statement_token1] = ACTIONS(8427), + [aux_sym_seek_statement_token1] = ACTIONS(8427), + [sym_reset_statement] = ACTIONS(8427), + [aux_sym_raise_event_statement_token1] = ACTIONS(8427), + [sym_stop_statement] = ACTIONS(8427), + [sym_beep_statement] = ACTIONS(8427), + [aux_sym_unload_statement_token1] = ACTIONS(8427), + [aux_sym_def_type_statement_token1] = ACTIONS(8427), + [aux_sym_def_type_statement_token2] = ACTIONS(8427), + [aux_sym_def_type_statement_token3] = ACTIONS(8427), + [aux_sym_def_type_statement_token4] = ACTIONS(8427), + [aux_sym_def_type_statement_token5] = ACTIONS(8427), + [aux_sym_def_type_statement_token6] = ACTIONS(8427), + [aux_sym_def_type_statement_token7] = ACTIONS(8427), + [aux_sym_def_type_statement_token8] = ACTIONS(8427), + [aux_sym_def_type_statement_token9] = ACTIONS(8427), + [aux_sym_def_type_statement_token10] = ACTIONS(8427), + [aux_sym_def_type_statement_token11] = ACTIONS(8427), + [aux_sym_def_type_statement_token12] = ACTIONS(8427), + [aux_sym_def_type_statement_token13] = ACTIONS(8427), + [aux_sym_def_type_statement_token14] = ACTIONS(8427), + [aux_sym_call_statement_token1] = ACTIONS(8427), + [sym__ambiguous_call_statement] = ACTIONS(8427), + [aux_sym_addressof_expression_token1] = ACTIONS(8427), + [aux_sym_type_of_expression_token1] = ACTIONS(8427), + [aux_sym_unary_expression_token1] = ACTIONS(8427), + [sym_string_literal] = ACTIONS(8429), + [sym_number_literal] = ACTIONS(8429), + [aux_sym_boolean_literal_token1] = ACTIONS(8427), + [aux_sym_boolean_literal_token2] = ACTIONS(8427), + [sym_nothing_literal] = ACTIONS(8427), + [sym_null_literal] = ACTIONS(8427), + [sym_empty_literal] = ACTIONS(8427), + [sym_date_literal] = ACTIONS(8429), + [anon_sym_POUND] = ACTIONS(8427), + }, + [STATE(4859)] = { + [sym_do_condition] = STATE(5731), + [sym_identifier] = ACTIONS(8431), + [sym_newline] = ACTIONS(8433), + [anon_sym_COLON] = ACTIONS(8433), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8431), + [aux_sym_frm_property_statement_token1] = ACTIONS(8431), + [anon_sym_DOT] = ACTIONS(8431), + [anon_sym_BANG] = ACTIONS(8433), + [aux_sym__attribute_identifier_token1] = ACTIONS(8431), + [aux_sym_option_statement_token3] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8431), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8431), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8431), + [aux_sym_preprocessor_const_token1] = ACTIONS(8431), + [sym_static_modifier] = ACTIONS(8431), + [sym__dim_keyword] = ACTIONS(8431), + [sym__redim_keyword] = ACTIONS(8431), + [aux_sym_get_accessor_token1] = ACTIONS(8431), + [aux_sym_set_accessor_token1] = ACTIONS(8431), + [aux_sym_const_declaration_token1] = ACTIONS(8431), + [anon_sym_LPAREN] = ACTIONS(8433), + [aux_sym_as_type_clause_token2] = ACTIONS(8431), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8431), + [aux_sym_visibility_token1] = ACTIONS(8431), + [aux_sym_visibility_token2] = ACTIONS(8431), + [aux_sym_elseif_fragment_token1] = ACTIONS(8431), + [aux_sym_else_fragment_token1] = ACTIONS(8431), + [aux_sym_select_statement_token1] = ACTIONS(8431), + [aux_sym__for_header_token1] = ACTIONS(8431), + [aux_sym_do_statement_token1] = ACTIONS(8431), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8431), + [aux_sym_exit_statement_token1] = ACTIONS(8431), + [sym_end_statement] = ACTIONS(8433), + [aux_sym_on_goto_statement_token1] = ACTIONS(8431), + [aux_sym_on_goto_statement_token2] = ACTIONS(8431), + [aux_sym_on_error_statement_token2] = ACTIONS(8431), + [sym__ambiguous_redim_statement] = ACTIONS(8433), + [aux_sym_erase_statement_token1] = ACTIONS(8431), + [aux_sym_open_statement_token1] = ACTIONS(8431), + [aux_sym_file_mode_token2] = ACTIONS(8431), + [aux_sym_file_access_token2] = ACTIONS(8431), + [aux_sym_file_lock_token2] = ACTIONS(8431), + [aux_sym_print_statement_token1] = ACTIONS(8431), + [anon_sym_PLUS] = ACTIONS(8433), + [anon_sym_DASH] = ACTIONS(8431), + [anon_sym_QMARK] = ACTIONS(8433), + [aux_sym_close_statement_token1] = ACTIONS(8431), + [aux_sym_put_statement_token1] = ACTIONS(8431), + [aux_sym_unlock_statement_token1] = ACTIONS(8431), + [aux_sym_seek_statement_token1] = ACTIONS(8431), + [sym_reset_statement] = ACTIONS(8431), + [aux_sym_raise_event_statement_token1] = ACTIONS(8431), + [sym_stop_statement] = ACTIONS(8431), + [sym_beep_statement] = ACTIONS(8431), + [aux_sym_unload_statement_token1] = ACTIONS(8431), + [aux_sym_def_type_statement_token1] = ACTIONS(8431), + [aux_sym_def_type_statement_token2] = ACTIONS(8431), + [aux_sym_def_type_statement_token3] = ACTIONS(8431), + [aux_sym_def_type_statement_token4] = ACTIONS(8431), + [aux_sym_def_type_statement_token5] = ACTIONS(8431), + [aux_sym_def_type_statement_token6] = ACTIONS(8431), + [aux_sym_def_type_statement_token7] = ACTIONS(8431), + [aux_sym_def_type_statement_token8] = ACTIONS(8431), + [aux_sym_def_type_statement_token9] = ACTIONS(8431), + [aux_sym_def_type_statement_token10] = ACTIONS(8431), + [aux_sym_def_type_statement_token11] = ACTIONS(8431), + [aux_sym_def_type_statement_token12] = ACTIONS(8431), + [aux_sym_def_type_statement_token13] = ACTIONS(8431), + [aux_sym_def_type_statement_token14] = ACTIONS(8431), + [aux_sym_call_statement_token1] = ACTIONS(8431), + [sym__ambiguous_call_statement] = ACTIONS(8431), + [aux_sym_addressof_expression_token1] = ACTIONS(8431), + [aux_sym_type_of_expression_token1] = ACTIONS(8431), + [aux_sym_unary_expression_token1] = ACTIONS(8431), + [sym_string_literal] = ACTIONS(8433), + [sym_number_literal] = ACTIONS(8433), + [aux_sym_boolean_literal_token1] = ACTIONS(8431), + [aux_sym_boolean_literal_token2] = ACTIONS(8431), + [sym_nothing_literal] = ACTIONS(8431), + [sym_null_literal] = ACTIONS(8431), + [sym_empty_literal] = ACTIONS(8431), + [sym_date_literal] = ACTIONS(8433), + [anon_sym_POUND] = ACTIONS(8431), + }, + [STATE(4860)] = { + [aux_sym__argument_sequence_repeat2] = STATE(4895), + [sym_identifier] = ACTIONS(8435), + [sym_newline] = ACTIONS(8437), + [anon_sym_COLON] = ACTIONS(8437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8435), + [aux_sym_frm_property_statement_token1] = ACTIONS(8435), + [anon_sym_DOT] = ACTIONS(8435), + [anon_sym_BANG] = ACTIONS(8437), + [aux_sym__attribute_identifier_token1] = ACTIONS(8435), + [aux_sym_option_statement_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8435), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8435), + [aux_sym_preprocessor_const_token1] = ACTIONS(8435), + [sym_static_modifier] = ACTIONS(8435), + [sym__dim_keyword] = ACTIONS(8435), + [sym__redim_keyword] = ACTIONS(8435), + [aux_sym_get_accessor_token1] = ACTIONS(8435), + [aux_sym_set_accessor_token1] = ACTIONS(8435), + [anon_sym_COMMA] = ACTIONS(5034), + [aux_sym_const_declaration_token1] = ACTIONS(8435), + [anon_sym_LPAREN] = ACTIONS(8437), + [aux_sym_as_type_clause_token2] = ACTIONS(8435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8435), + [aux_sym_visibility_token1] = ACTIONS(8435), + [aux_sym_visibility_token2] = ACTIONS(8435), + [aux_sym_elseif_fragment_token1] = ACTIONS(8435), + [aux_sym_else_fragment_token1] = ACTIONS(8435), + [aux_sym_select_statement_token1] = ACTIONS(8435), + [aux_sym__for_header_token1] = ACTIONS(8435), + [aux_sym_do_statement_token1] = ACTIONS(8435), + [aux_sym_do_condition_token1] = ACTIONS(8435), + [aux_sym_with_statement_token1] = ACTIONS(8435), + [aux_sym_exit_statement_token1] = ACTIONS(8435), + [sym_end_statement] = ACTIONS(8437), + [aux_sym_on_goto_statement_token1] = ACTIONS(8435), + [aux_sym_on_goto_statement_token2] = ACTIONS(8435), + [aux_sym_on_error_statement_token2] = ACTIONS(8435), + [sym__ambiguous_redim_statement] = ACTIONS(8437), + [aux_sym_erase_statement_token1] = ACTIONS(8435), + [aux_sym_open_statement_token1] = ACTIONS(8435), + [aux_sym_file_mode_token2] = ACTIONS(8435), + [aux_sym_file_access_token2] = ACTIONS(8435), + [aux_sym_file_lock_token2] = ACTIONS(8435), + [aux_sym_print_statement_token1] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(8437), + [anon_sym_DASH] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8437), + [aux_sym_close_statement_token1] = ACTIONS(8435), + [aux_sym_put_statement_token1] = ACTIONS(8435), + [aux_sym_unlock_statement_token1] = ACTIONS(8435), + [aux_sym_seek_statement_token1] = ACTIONS(8435), + [sym_reset_statement] = ACTIONS(8435), + [aux_sym_raise_event_statement_token1] = ACTIONS(8435), + [sym_stop_statement] = ACTIONS(8435), + [sym_beep_statement] = ACTIONS(8435), + [aux_sym_unload_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token2] = ACTIONS(8435), + [aux_sym_def_type_statement_token3] = ACTIONS(8435), + [aux_sym_def_type_statement_token4] = ACTIONS(8435), + [aux_sym_def_type_statement_token5] = ACTIONS(8435), + [aux_sym_def_type_statement_token6] = ACTIONS(8435), + [aux_sym_def_type_statement_token7] = ACTIONS(8435), + [aux_sym_def_type_statement_token8] = ACTIONS(8435), + [aux_sym_def_type_statement_token9] = ACTIONS(8435), + [aux_sym_def_type_statement_token10] = ACTIONS(8435), + [aux_sym_def_type_statement_token11] = ACTIONS(8435), + [aux_sym_def_type_statement_token12] = ACTIONS(8435), + [aux_sym_def_type_statement_token13] = ACTIONS(8435), + [aux_sym_def_type_statement_token14] = ACTIONS(8435), + [aux_sym_call_statement_token1] = ACTIONS(8435), + [sym__ambiguous_call_statement] = ACTIONS(8435), + [aux_sym_addressof_expression_token1] = ACTIONS(8435), + [aux_sym_type_of_expression_token1] = ACTIONS(8435), + [aux_sym_unary_expression_token1] = ACTIONS(8435), + [sym_string_literal] = ACTIONS(8437), + [sym_number_literal] = ACTIONS(8437), + [aux_sym_boolean_literal_token1] = ACTIONS(8435), + [aux_sym_boolean_literal_token2] = ACTIONS(8435), + [sym_nothing_literal] = ACTIONS(8435), + [sym_null_literal] = ACTIONS(8435), + [sym_empty_literal] = ACTIONS(8435), + [sym_date_literal] = ACTIONS(8437), + [anon_sym_POUND] = ACTIONS(8435), + }, + [STATE(4861)] = { + [aux_sym__argument_sequence_repeat2] = STATE(4864), + [sym_identifier] = ACTIONS(8435), + [sym_newline] = ACTIONS(8437), + [anon_sym_COLON] = ACTIONS(8437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8435), + [aux_sym_frm_property_statement_token1] = ACTIONS(8435), + [anon_sym_DOT] = ACTIONS(8435), + [anon_sym_BANG] = ACTIONS(8437), + [aux_sym__attribute_identifier_token1] = ACTIONS(8435), + [aux_sym_option_statement_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8435), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8435), + [aux_sym_preprocessor_const_token1] = ACTIONS(8435), + [sym_static_modifier] = ACTIONS(8435), + [sym__dim_keyword] = ACTIONS(8435), + [sym__redim_keyword] = ACTIONS(8435), + [aux_sym_get_accessor_token1] = ACTIONS(8435), + [aux_sym_set_accessor_token1] = ACTIONS(8435), + [anon_sym_COMMA] = ACTIONS(5034), + [aux_sym_const_declaration_token1] = ACTIONS(8435), + [anon_sym_LPAREN] = ACTIONS(8437), + [aux_sym_as_type_clause_token2] = ACTIONS(8435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8435), + [aux_sym_visibility_token1] = ACTIONS(8435), + [aux_sym_visibility_token2] = ACTIONS(8435), + [aux_sym_elseif_fragment_token1] = ACTIONS(8435), + [aux_sym_else_fragment_token1] = ACTIONS(8435), + [aux_sym_select_statement_token1] = ACTIONS(8435), + [aux_sym__for_header_token1] = ACTIONS(8435), + [aux_sym_do_statement_token1] = ACTIONS(8435), + [aux_sym_do_condition_token1] = ACTIONS(8435), + [aux_sym_with_statement_token1] = ACTIONS(8435), + [aux_sym_exit_statement_token1] = ACTIONS(8435), + [sym_end_statement] = ACTIONS(8437), + [aux_sym_on_goto_statement_token1] = ACTIONS(8435), + [aux_sym_on_goto_statement_token2] = ACTIONS(8435), + [aux_sym_on_error_statement_token2] = ACTIONS(8435), + [sym__ambiguous_redim_statement] = ACTIONS(8437), + [aux_sym_erase_statement_token1] = ACTIONS(8435), + [aux_sym_open_statement_token1] = ACTIONS(8435), + [aux_sym_file_mode_token2] = ACTIONS(8435), + [aux_sym_file_access_token2] = ACTIONS(8435), + [aux_sym_file_lock_token2] = ACTIONS(8435), + [aux_sym_print_statement_token1] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(8437), + [anon_sym_DASH] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8437), + [aux_sym_close_statement_token1] = ACTIONS(8435), + [aux_sym_put_statement_token1] = ACTIONS(8435), + [aux_sym_unlock_statement_token1] = ACTIONS(8435), + [aux_sym_seek_statement_token1] = ACTIONS(8435), + [sym_reset_statement] = ACTIONS(8435), + [aux_sym_raise_event_statement_token1] = ACTIONS(8435), + [sym_stop_statement] = ACTIONS(8435), + [sym_beep_statement] = ACTIONS(8435), + [aux_sym_unload_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token2] = ACTIONS(8435), + [aux_sym_def_type_statement_token3] = ACTIONS(8435), + [aux_sym_def_type_statement_token4] = ACTIONS(8435), + [aux_sym_def_type_statement_token5] = ACTIONS(8435), + [aux_sym_def_type_statement_token6] = ACTIONS(8435), + [aux_sym_def_type_statement_token7] = ACTIONS(8435), + [aux_sym_def_type_statement_token8] = ACTIONS(8435), + [aux_sym_def_type_statement_token9] = ACTIONS(8435), + [aux_sym_def_type_statement_token10] = ACTIONS(8435), + [aux_sym_def_type_statement_token11] = ACTIONS(8435), + [aux_sym_def_type_statement_token12] = ACTIONS(8435), + [aux_sym_def_type_statement_token13] = ACTIONS(8435), + [aux_sym_def_type_statement_token14] = ACTIONS(8435), + [aux_sym_call_statement_token1] = ACTIONS(8435), + [sym__ambiguous_call_statement] = ACTIONS(8435), + [aux_sym_addressof_expression_token1] = ACTIONS(8435), + [aux_sym_type_of_expression_token1] = ACTIONS(8435), + [aux_sym_unary_expression_token1] = ACTIONS(8435), + [sym_string_literal] = ACTIONS(8437), + [sym_number_literal] = ACTIONS(8437), + [aux_sym_boolean_literal_token1] = ACTIONS(8435), + [aux_sym_boolean_literal_token2] = ACTIONS(8435), + [sym_nothing_literal] = ACTIONS(8435), + [sym_null_literal] = ACTIONS(8435), + [sym_empty_literal] = ACTIONS(8435), + [sym_date_literal] = ACTIONS(8437), + [anon_sym_POUND] = ACTIONS(8435), + }, + [STATE(4862)] = { + [sym_do_condition] = STATE(5739), + [sym_identifier] = ACTIONS(8471), + [sym_newline] = ACTIONS(8473), + [anon_sym_COLON] = ACTIONS(8473), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8471), + [aux_sym_frm_property_statement_token1] = ACTIONS(8471), + [anon_sym_DOT] = ACTIONS(8471), + [anon_sym_BANG] = ACTIONS(8473), + [aux_sym__attribute_identifier_token1] = ACTIONS(8471), + [aux_sym_option_statement_token3] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8471), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8471), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8471), + [aux_sym_preprocessor_const_token1] = ACTIONS(8471), + [sym_static_modifier] = ACTIONS(8471), + [sym__dim_keyword] = ACTIONS(8471), + [sym__redim_keyword] = ACTIONS(8471), + [aux_sym_get_accessor_token1] = ACTIONS(8471), + [aux_sym_set_accessor_token1] = ACTIONS(8471), + [aux_sym_const_declaration_token1] = ACTIONS(8471), + [anon_sym_LPAREN] = ACTIONS(8473), + [aux_sym_as_type_clause_token2] = ACTIONS(8471), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8471), + [aux_sym_visibility_token1] = ACTIONS(8471), + [aux_sym_visibility_token2] = ACTIONS(8471), + [aux_sym_elseif_fragment_token1] = ACTIONS(8471), + [aux_sym_else_fragment_token1] = ACTIONS(8471), + [aux_sym_select_statement_token1] = ACTIONS(8471), + [aux_sym__for_header_token1] = ACTIONS(8471), + [aux_sym_do_statement_token1] = ACTIONS(8471), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8471), + [aux_sym_exit_statement_token1] = ACTIONS(8471), + [sym_end_statement] = ACTIONS(8473), + [aux_sym_on_goto_statement_token1] = ACTIONS(8471), + [aux_sym_on_goto_statement_token2] = ACTIONS(8471), + [aux_sym_on_error_statement_token2] = ACTIONS(8471), + [sym__ambiguous_redim_statement] = ACTIONS(8473), + [aux_sym_erase_statement_token1] = ACTIONS(8471), + [aux_sym_open_statement_token1] = ACTIONS(8471), + [aux_sym_file_mode_token2] = ACTIONS(8471), + [aux_sym_file_access_token2] = ACTIONS(8471), + [aux_sym_file_lock_token2] = ACTIONS(8471), + [aux_sym_print_statement_token1] = ACTIONS(8471), + [anon_sym_PLUS] = ACTIONS(8473), + [anon_sym_DASH] = ACTIONS(8471), + [anon_sym_QMARK] = ACTIONS(8473), + [aux_sym_close_statement_token1] = ACTIONS(8471), + [aux_sym_put_statement_token1] = ACTIONS(8471), + [aux_sym_unlock_statement_token1] = ACTIONS(8471), + [aux_sym_seek_statement_token1] = ACTIONS(8471), + [sym_reset_statement] = ACTIONS(8471), + [aux_sym_raise_event_statement_token1] = ACTIONS(8471), + [sym_stop_statement] = ACTIONS(8471), + [sym_beep_statement] = ACTIONS(8471), + [aux_sym_unload_statement_token1] = ACTIONS(8471), + [aux_sym_def_type_statement_token1] = ACTIONS(8471), + [aux_sym_def_type_statement_token2] = ACTIONS(8471), + [aux_sym_def_type_statement_token3] = ACTIONS(8471), + [aux_sym_def_type_statement_token4] = ACTIONS(8471), + [aux_sym_def_type_statement_token5] = ACTIONS(8471), + [aux_sym_def_type_statement_token6] = ACTIONS(8471), + [aux_sym_def_type_statement_token7] = ACTIONS(8471), + [aux_sym_def_type_statement_token8] = ACTIONS(8471), + [aux_sym_def_type_statement_token9] = ACTIONS(8471), + [aux_sym_def_type_statement_token10] = ACTIONS(8471), + [aux_sym_def_type_statement_token11] = ACTIONS(8471), + [aux_sym_def_type_statement_token12] = ACTIONS(8471), + [aux_sym_def_type_statement_token13] = ACTIONS(8471), + [aux_sym_def_type_statement_token14] = ACTIONS(8471), + [aux_sym_call_statement_token1] = ACTIONS(8471), + [sym__ambiguous_call_statement] = ACTIONS(8471), + [aux_sym_addressof_expression_token1] = ACTIONS(8471), + [aux_sym_type_of_expression_token1] = ACTIONS(8471), + [aux_sym_unary_expression_token1] = ACTIONS(8471), + [sym_string_literal] = ACTIONS(8473), + [sym_number_literal] = ACTIONS(8473), + [aux_sym_boolean_literal_token1] = ACTIONS(8471), + [aux_sym_boolean_literal_token2] = ACTIONS(8471), + [sym_nothing_literal] = ACTIONS(8471), + [sym_null_literal] = ACTIONS(8471), + [sym_empty_literal] = ACTIONS(8471), + [sym_date_literal] = ACTIONS(8473), + [anon_sym_POUND] = ACTIONS(8471), + }, + [STATE(4863)] = { + [sym_do_condition] = STATE(5740), + [sym_identifier] = ACTIONS(8479), + [sym_newline] = ACTIONS(8481), + [anon_sym_COLON] = ACTIONS(8481), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8479), + [aux_sym_frm_property_statement_token1] = ACTIONS(8479), + [anon_sym_DOT] = ACTIONS(8479), + [anon_sym_BANG] = ACTIONS(8481), + [aux_sym__attribute_identifier_token1] = ACTIONS(8479), + [aux_sym_option_statement_token3] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8479), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8479), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8479), + [aux_sym_preprocessor_const_token1] = ACTIONS(8479), + [sym_static_modifier] = ACTIONS(8479), + [sym__dim_keyword] = ACTIONS(8479), + [sym__redim_keyword] = ACTIONS(8479), + [aux_sym_get_accessor_token1] = ACTIONS(8479), + [aux_sym_set_accessor_token1] = ACTIONS(8479), + [aux_sym_const_declaration_token1] = ACTIONS(8479), + [anon_sym_LPAREN] = ACTIONS(8481), + [aux_sym_as_type_clause_token2] = ACTIONS(8479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8479), + [aux_sym_visibility_token1] = ACTIONS(8479), + [aux_sym_visibility_token2] = ACTIONS(8479), + [aux_sym_elseif_fragment_token1] = ACTIONS(8479), + [aux_sym_else_fragment_token1] = ACTIONS(8479), + [aux_sym_select_statement_token1] = ACTIONS(8479), + [aux_sym__for_header_token1] = ACTIONS(8479), + [aux_sym_do_statement_token1] = ACTIONS(8479), + [aux_sym_do_condition_token1] = ACTIONS(10227), + [aux_sym_do_condition_token2] = ACTIONS(10227), + [aux_sym_with_statement_token1] = ACTIONS(8479), + [aux_sym_exit_statement_token1] = ACTIONS(8479), + [sym_end_statement] = ACTIONS(8481), + [aux_sym_on_goto_statement_token1] = ACTIONS(8479), + [aux_sym_on_goto_statement_token2] = ACTIONS(8479), + [aux_sym_on_error_statement_token2] = ACTIONS(8479), + [sym__ambiguous_redim_statement] = ACTIONS(8481), + [aux_sym_erase_statement_token1] = ACTIONS(8479), + [aux_sym_open_statement_token1] = ACTIONS(8479), + [aux_sym_file_mode_token2] = ACTIONS(8479), + [aux_sym_file_access_token2] = ACTIONS(8479), + [aux_sym_file_lock_token2] = ACTIONS(8479), + [aux_sym_print_statement_token1] = ACTIONS(8479), + [anon_sym_PLUS] = ACTIONS(8481), + [anon_sym_DASH] = ACTIONS(8479), + [anon_sym_QMARK] = ACTIONS(8481), + [aux_sym_close_statement_token1] = ACTIONS(8479), + [aux_sym_put_statement_token1] = ACTIONS(8479), + [aux_sym_unlock_statement_token1] = ACTIONS(8479), + [aux_sym_seek_statement_token1] = ACTIONS(8479), + [sym_reset_statement] = ACTIONS(8479), + [aux_sym_raise_event_statement_token1] = ACTIONS(8479), + [sym_stop_statement] = ACTIONS(8479), + [sym_beep_statement] = ACTIONS(8479), + [aux_sym_unload_statement_token1] = ACTIONS(8479), + [aux_sym_def_type_statement_token1] = ACTIONS(8479), + [aux_sym_def_type_statement_token2] = ACTIONS(8479), + [aux_sym_def_type_statement_token3] = ACTIONS(8479), + [aux_sym_def_type_statement_token4] = ACTIONS(8479), + [aux_sym_def_type_statement_token5] = ACTIONS(8479), + [aux_sym_def_type_statement_token6] = ACTIONS(8479), + [aux_sym_def_type_statement_token7] = ACTIONS(8479), + [aux_sym_def_type_statement_token8] = ACTIONS(8479), + [aux_sym_def_type_statement_token9] = ACTIONS(8479), + [aux_sym_def_type_statement_token10] = ACTIONS(8479), + [aux_sym_def_type_statement_token11] = ACTIONS(8479), + [aux_sym_def_type_statement_token12] = ACTIONS(8479), + [aux_sym_def_type_statement_token13] = ACTIONS(8479), + [aux_sym_def_type_statement_token14] = ACTIONS(8479), + [aux_sym_call_statement_token1] = ACTIONS(8479), + [sym__ambiguous_call_statement] = ACTIONS(8479), + [aux_sym_addressof_expression_token1] = ACTIONS(8479), + [aux_sym_type_of_expression_token1] = ACTIONS(8479), + [aux_sym_unary_expression_token1] = ACTIONS(8479), + [sym_string_literal] = ACTIONS(8481), + [sym_number_literal] = ACTIONS(8481), + [aux_sym_boolean_literal_token1] = ACTIONS(8479), + [aux_sym_boolean_literal_token2] = ACTIONS(8479), + [sym_nothing_literal] = ACTIONS(8479), + [sym_null_literal] = ACTIONS(8479), + [sym_empty_literal] = ACTIONS(8479), + [sym_date_literal] = ACTIONS(8481), + [anon_sym_POUND] = ACTIONS(8479), + }, + [STATE(4864)] = { + [aux_sym__argument_sequence_repeat2] = STATE(4895), + [sym_identifier] = ACTIONS(8483), + [sym_newline] = ACTIONS(8485), + [anon_sym_COLON] = ACTIONS(8485), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8483), + [aux_sym_frm_property_statement_token1] = ACTIONS(8483), + [anon_sym_DOT] = ACTIONS(8483), + [anon_sym_BANG] = ACTIONS(8485), + [aux_sym__attribute_identifier_token1] = ACTIONS(8483), + [aux_sym_option_statement_token3] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8483), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8483), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8483), + [aux_sym_preprocessor_const_token1] = ACTIONS(8483), + [sym_static_modifier] = ACTIONS(8483), + [sym__dim_keyword] = ACTIONS(8483), + [sym__redim_keyword] = ACTIONS(8483), + [aux_sym_get_accessor_token1] = ACTIONS(8483), + [aux_sym_set_accessor_token1] = ACTIONS(8483), + [anon_sym_COMMA] = ACTIONS(5034), + [aux_sym_const_declaration_token1] = ACTIONS(8483), + [anon_sym_LPAREN] = ACTIONS(8485), + [aux_sym_as_type_clause_token2] = ACTIONS(8483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8483), + [aux_sym_visibility_token1] = ACTIONS(8483), + [aux_sym_visibility_token2] = ACTIONS(8483), + [aux_sym_elseif_fragment_token1] = ACTIONS(8483), + [aux_sym_else_fragment_token1] = ACTIONS(8483), + [aux_sym_select_statement_token1] = ACTIONS(8483), + [aux_sym__for_header_token1] = ACTIONS(8483), + [aux_sym_do_statement_token1] = ACTIONS(8483), + [aux_sym_do_condition_token1] = ACTIONS(8483), + [aux_sym_with_statement_token1] = ACTIONS(8483), + [aux_sym_exit_statement_token1] = ACTIONS(8483), + [sym_end_statement] = ACTIONS(8485), + [aux_sym_on_goto_statement_token1] = ACTIONS(8483), + [aux_sym_on_goto_statement_token2] = ACTIONS(8483), + [aux_sym_on_error_statement_token2] = ACTIONS(8483), + [sym__ambiguous_redim_statement] = ACTIONS(8485), + [aux_sym_erase_statement_token1] = ACTIONS(8483), + [aux_sym_open_statement_token1] = ACTIONS(8483), + [aux_sym_file_mode_token2] = ACTIONS(8483), + [aux_sym_file_access_token2] = ACTIONS(8483), + [aux_sym_file_lock_token2] = ACTIONS(8483), + [aux_sym_print_statement_token1] = ACTIONS(8483), + [anon_sym_PLUS] = ACTIONS(8485), + [anon_sym_DASH] = ACTIONS(8483), + [anon_sym_QMARK] = ACTIONS(8485), + [aux_sym_close_statement_token1] = ACTIONS(8483), + [aux_sym_put_statement_token1] = ACTIONS(8483), + [aux_sym_unlock_statement_token1] = ACTIONS(8483), + [aux_sym_seek_statement_token1] = ACTIONS(8483), + [sym_reset_statement] = ACTIONS(8483), + [aux_sym_raise_event_statement_token1] = ACTIONS(8483), + [sym_stop_statement] = ACTIONS(8483), + [sym_beep_statement] = ACTIONS(8483), + [aux_sym_unload_statement_token1] = ACTIONS(8483), + [aux_sym_def_type_statement_token1] = ACTIONS(8483), + [aux_sym_def_type_statement_token2] = ACTIONS(8483), + [aux_sym_def_type_statement_token3] = ACTIONS(8483), + [aux_sym_def_type_statement_token4] = ACTIONS(8483), + [aux_sym_def_type_statement_token5] = ACTIONS(8483), + [aux_sym_def_type_statement_token6] = ACTIONS(8483), + [aux_sym_def_type_statement_token7] = ACTIONS(8483), + [aux_sym_def_type_statement_token8] = ACTIONS(8483), + [aux_sym_def_type_statement_token9] = ACTIONS(8483), + [aux_sym_def_type_statement_token10] = ACTIONS(8483), + [aux_sym_def_type_statement_token11] = ACTIONS(8483), + [aux_sym_def_type_statement_token12] = ACTIONS(8483), + [aux_sym_def_type_statement_token13] = ACTIONS(8483), + [aux_sym_def_type_statement_token14] = ACTIONS(8483), + [aux_sym_call_statement_token1] = ACTIONS(8483), + [sym__ambiguous_call_statement] = ACTIONS(8483), + [aux_sym_addressof_expression_token1] = ACTIONS(8483), + [aux_sym_type_of_expression_token1] = ACTIONS(8483), + [aux_sym_unary_expression_token1] = ACTIONS(8483), + [sym_string_literal] = ACTIONS(8485), + [sym_number_literal] = ACTIONS(8485), + [aux_sym_boolean_literal_token1] = ACTIONS(8483), + [aux_sym_boolean_literal_token2] = ACTIONS(8483), + [sym_nothing_literal] = ACTIONS(8483), + [sym_null_literal] = ACTIONS(8483), + [sym_empty_literal] = ACTIONS(8483), + [sym_date_literal] = ACTIONS(8485), + [anon_sym_POUND] = ACTIONS(8483), + }, + [STATE(4865)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4869), + [sym_identifier] = ACTIONS(8565), + [sym_newline] = ACTIONS(8567), + [anon_sym_COLON] = ACTIONS(8567), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8565), + [aux_sym_frm_property_statement_token1] = ACTIONS(8565), + [anon_sym_DOT] = ACTIONS(8565), + [anon_sym_BANG] = ACTIONS(8567), + [aux_sym__attribute_identifier_token1] = ACTIONS(8565), + [aux_sym_option_statement_token3] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8565), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8565), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8565), + [aux_sym_preprocessor_const_token1] = ACTIONS(8565), + [sym_static_modifier] = ACTIONS(8565), + [sym__dim_keyword] = ACTIONS(8565), + [sym__redim_keyword] = ACTIONS(8565), + [aux_sym_get_accessor_token1] = ACTIONS(8565), + [aux_sym_set_accessor_token1] = ACTIONS(8565), + [anon_sym_COMMA] = ACTIONS(10251), + [aux_sym_const_declaration_token1] = ACTIONS(8565), + [anon_sym_LPAREN] = ACTIONS(8567), + [aux_sym_as_type_clause_token2] = ACTIONS(8565), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8565), + [aux_sym_visibility_token1] = ACTIONS(8565), + [aux_sym_visibility_token2] = ACTIONS(8565), + [aux_sym_elseif_fragment_token1] = ACTIONS(8565), + [aux_sym_else_fragment_token1] = ACTIONS(8565), + [aux_sym_select_statement_token1] = ACTIONS(8565), + [aux_sym__for_header_token1] = ACTIONS(8565), + [aux_sym_do_statement_token1] = ACTIONS(8565), + [aux_sym_do_condition_token1] = ACTIONS(8565), + [aux_sym_with_statement_token1] = ACTIONS(8565), + [aux_sym_exit_statement_token1] = ACTIONS(8565), + [sym_end_statement] = ACTIONS(8567), + [aux_sym_on_goto_statement_token1] = ACTIONS(8565), + [aux_sym_on_goto_statement_token2] = ACTIONS(8565), + [aux_sym_on_error_statement_token2] = ACTIONS(8565), + [sym__ambiguous_redim_statement] = ACTIONS(8567), + [aux_sym_erase_statement_token1] = ACTIONS(8565), + [aux_sym_open_statement_token1] = ACTIONS(8565), + [aux_sym_file_mode_token2] = ACTIONS(8565), + [aux_sym_file_access_token2] = ACTIONS(8565), + [aux_sym_file_lock_token2] = ACTIONS(8565), + [aux_sym_print_statement_token1] = ACTIONS(8565), + [anon_sym_PLUS] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(8565), + [anon_sym_QMARK] = ACTIONS(8567), + [aux_sym_close_statement_token1] = ACTIONS(8565), + [aux_sym_put_statement_token1] = ACTIONS(8565), + [aux_sym_unlock_statement_token1] = ACTIONS(8565), + [aux_sym_seek_statement_token1] = ACTIONS(8565), + [sym_reset_statement] = ACTIONS(8565), + [aux_sym_raise_event_statement_token1] = ACTIONS(8565), + [sym_stop_statement] = ACTIONS(8565), + [sym_beep_statement] = ACTIONS(8565), + [aux_sym_unload_statement_token1] = ACTIONS(8565), + [aux_sym_def_type_statement_token1] = ACTIONS(8565), + [aux_sym_def_type_statement_token2] = ACTIONS(8565), + [aux_sym_def_type_statement_token3] = ACTIONS(8565), + [aux_sym_def_type_statement_token4] = ACTIONS(8565), + [aux_sym_def_type_statement_token5] = ACTIONS(8565), + [aux_sym_def_type_statement_token6] = ACTIONS(8565), + [aux_sym_def_type_statement_token7] = ACTIONS(8565), + [aux_sym_def_type_statement_token8] = ACTIONS(8565), + [aux_sym_def_type_statement_token9] = ACTIONS(8565), + [aux_sym_def_type_statement_token10] = ACTIONS(8565), + [aux_sym_def_type_statement_token11] = ACTIONS(8565), + [aux_sym_def_type_statement_token12] = ACTIONS(8565), + [aux_sym_def_type_statement_token13] = ACTIONS(8565), + [aux_sym_def_type_statement_token14] = ACTIONS(8565), + [aux_sym_call_statement_token1] = ACTIONS(8565), + [sym__ambiguous_call_statement] = ACTIONS(8565), + [aux_sym_addressof_expression_token1] = ACTIONS(8565), + [aux_sym_type_of_expression_token1] = ACTIONS(8565), + [aux_sym_unary_expression_token1] = ACTIONS(8565), + [sym_string_literal] = ACTIONS(8567), + [sym_number_literal] = ACTIONS(8567), + [aux_sym_boolean_literal_token1] = ACTIONS(8565), + [aux_sym_boolean_literal_token2] = ACTIONS(8565), + [sym_nothing_literal] = ACTIONS(8565), + [sym_null_literal] = ACTIONS(8565), + [sym_empty_literal] = ACTIONS(8565), + [sym_date_literal] = ACTIONS(8567), + [anon_sym_POUND] = ACTIONS(8565), + }, + [STATE(4866)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4870), + [sym_identifier] = ACTIONS(8569), + [sym_newline] = ACTIONS(8571), + [anon_sym_COLON] = ACTIONS(8571), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8569), + [aux_sym_frm_property_statement_token1] = ACTIONS(8569), + [anon_sym_DOT] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(8571), + [aux_sym__attribute_identifier_token1] = ACTIONS(8569), + [aux_sym_option_statement_token3] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8569), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8569), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8569), + [aux_sym_preprocessor_const_token1] = ACTIONS(8569), + [sym_static_modifier] = ACTIONS(8569), + [sym__dim_keyword] = ACTIONS(8569), + [sym__redim_keyword] = ACTIONS(8569), + [aux_sym_get_accessor_token1] = ACTIONS(8569), + [aux_sym_set_accessor_token1] = ACTIONS(8569), + [anon_sym_COMMA] = ACTIONS(10251), + [aux_sym_const_declaration_token1] = ACTIONS(8569), + [anon_sym_LPAREN] = ACTIONS(8571), + [aux_sym_as_type_clause_token2] = ACTIONS(8569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8569), + [aux_sym_visibility_token1] = ACTIONS(8569), + [aux_sym_visibility_token2] = ACTIONS(8569), + [aux_sym_elseif_fragment_token1] = ACTIONS(8569), + [aux_sym_else_fragment_token1] = ACTIONS(8569), + [aux_sym_select_statement_token1] = ACTIONS(8569), + [aux_sym__for_header_token1] = ACTIONS(8569), + [aux_sym_do_statement_token1] = ACTIONS(8569), + [aux_sym_do_condition_token1] = ACTIONS(8569), + [aux_sym_with_statement_token1] = ACTIONS(8569), + [aux_sym_exit_statement_token1] = ACTIONS(8569), + [sym_end_statement] = ACTIONS(8571), + [aux_sym_on_goto_statement_token1] = ACTIONS(8569), + [aux_sym_on_goto_statement_token2] = ACTIONS(8569), + [aux_sym_on_error_statement_token2] = ACTIONS(8569), + [sym__ambiguous_redim_statement] = ACTIONS(8571), + [aux_sym_erase_statement_token1] = ACTIONS(8569), + [aux_sym_open_statement_token1] = ACTIONS(8569), + [aux_sym_file_mode_token2] = ACTIONS(8569), + [aux_sym_file_access_token2] = ACTIONS(8569), + [aux_sym_file_lock_token2] = ACTIONS(8569), + [aux_sym_print_statement_token1] = ACTIONS(8569), + [anon_sym_PLUS] = ACTIONS(8571), + [anon_sym_DASH] = ACTIONS(8569), + [anon_sym_QMARK] = ACTIONS(8571), + [aux_sym_close_statement_token1] = ACTIONS(8569), + [aux_sym_put_statement_token1] = ACTIONS(8569), + [aux_sym_unlock_statement_token1] = ACTIONS(8569), + [aux_sym_seek_statement_token1] = ACTIONS(8569), + [sym_reset_statement] = ACTIONS(8569), + [aux_sym_raise_event_statement_token1] = ACTIONS(8569), + [sym_stop_statement] = ACTIONS(8569), + [sym_beep_statement] = ACTIONS(8569), + [aux_sym_unload_statement_token1] = ACTIONS(8569), + [aux_sym_def_type_statement_token1] = ACTIONS(8569), + [aux_sym_def_type_statement_token2] = ACTIONS(8569), + [aux_sym_def_type_statement_token3] = ACTIONS(8569), + [aux_sym_def_type_statement_token4] = ACTIONS(8569), + [aux_sym_def_type_statement_token5] = ACTIONS(8569), + [aux_sym_def_type_statement_token6] = ACTIONS(8569), + [aux_sym_def_type_statement_token7] = ACTIONS(8569), + [aux_sym_def_type_statement_token8] = ACTIONS(8569), + [aux_sym_def_type_statement_token9] = ACTIONS(8569), + [aux_sym_def_type_statement_token10] = ACTIONS(8569), + [aux_sym_def_type_statement_token11] = ACTIONS(8569), + [aux_sym_def_type_statement_token12] = ACTIONS(8569), + [aux_sym_def_type_statement_token13] = ACTIONS(8569), + [aux_sym_def_type_statement_token14] = ACTIONS(8569), + [aux_sym_call_statement_token1] = ACTIONS(8569), + [sym__ambiguous_call_statement] = ACTIONS(8569), + [aux_sym_addressof_expression_token1] = ACTIONS(8569), + [aux_sym_type_of_expression_token1] = ACTIONS(8569), + [aux_sym_unary_expression_token1] = ACTIONS(8569), + [sym_string_literal] = ACTIONS(8571), + [sym_number_literal] = ACTIONS(8571), + [aux_sym_boolean_literal_token1] = ACTIONS(8569), + [aux_sym_boolean_literal_token2] = ACTIONS(8569), + [sym_nothing_literal] = ACTIONS(8569), + [sym_null_literal] = ACTIONS(8569), + [sym_empty_literal] = ACTIONS(8569), + [sym_date_literal] = ACTIONS(8571), + [anon_sym_POUND] = ACTIONS(8569), + }, + [STATE(4867)] = { + [aux_sym_const_declaration_repeat1] = STATE(4871), + [sym_identifier] = ACTIONS(8573), + [sym_newline] = ACTIONS(8575), + [anon_sym_COLON] = ACTIONS(8575), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8573), + [aux_sym_frm_property_statement_token1] = ACTIONS(8573), + [anon_sym_DOT] = ACTIONS(8573), + [anon_sym_BANG] = ACTIONS(8575), + [aux_sym__attribute_identifier_token1] = ACTIONS(8573), + [aux_sym_option_statement_token3] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8573), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8573), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8573), + [aux_sym_preprocessor_const_token1] = ACTIONS(8573), + [sym_static_modifier] = ACTIONS(8573), + [sym__dim_keyword] = ACTIONS(8573), + [sym__redim_keyword] = ACTIONS(8573), + [aux_sym_get_accessor_token1] = ACTIONS(8573), + [aux_sym_set_accessor_token1] = ACTIONS(8573), + [anon_sym_COMMA] = ACTIONS(10253), + [aux_sym_const_declaration_token1] = ACTIONS(8573), + [anon_sym_LPAREN] = ACTIONS(8575), + [aux_sym_as_type_clause_token2] = ACTIONS(8573), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8573), + [aux_sym_visibility_token1] = ACTIONS(8573), + [aux_sym_visibility_token2] = ACTIONS(8573), + [aux_sym_elseif_fragment_token1] = ACTIONS(8573), + [aux_sym_else_fragment_token1] = ACTIONS(8573), + [aux_sym_select_statement_token1] = ACTIONS(8573), + [aux_sym__for_header_token1] = ACTIONS(8573), + [aux_sym_do_statement_token1] = ACTIONS(8573), + [aux_sym_do_condition_token1] = ACTIONS(8573), + [aux_sym_with_statement_token1] = ACTIONS(8573), + [aux_sym_exit_statement_token1] = ACTIONS(8573), + [sym_end_statement] = ACTIONS(8575), + [aux_sym_on_goto_statement_token1] = ACTIONS(8573), + [aux_sym_on_goto_statement_token2] = ACTIONS(8573), + [aux_sym_on_error_statement_token2] = ACTIONS(8573), + [sym__ambiguous_redim_statement] = ACTIONS(8575), + [aux_sym_erase_statement_token1] = ACTIONS(8573), + [aux_sym_open_statement_token1] = ACTIONS(8573), + [aux_sym_file_mode_token2] = ACTIONS(8573), + [aux_sym_file_access_token2] = ACTIONS(8573), + [aux_sym_file_lock_token2] = ACTIONS(8573), + [aux_sym_print_statement_token1] = ACTIONS(8573), + [anon_sym_PLUS] = ACTIONS(8575), + [anon_sym_DASH] = ACTIONS(8573), + [anon_sym_QMARK] = ACTIONS(8575), + [aux_sym_close_statement_token1] = ACTIONS(8573), + [aux_sym_put_statement_token1] = ACTIONS(8573), + [aux_sym_unlock_statement_token1] = ACTIONS(8573), + [aux_sym_seek_statement_token1] = ACTIONS(8573), + [sym_reset_statement] = ACTIONS(8573), + [aux_sym_raise_event_statement_token1] = ACTIONS(8573), + [sym_stop_statement] = ACTIONS(8573), + [sym_beep_statement] = ACTIONS(8573), + [aux_sym_unload_statement_token1] = ACTIONS(8573), + [aux_sym_def_type_statement_token1] = ACTIONS(8573), + [aux_sym_def_type_statement_token2] = ACTIONS(8573), + [aux_sym_def_type_statement_token3] = ACTIONS(8573), + [aux_sym_def_type_statement_token4] = ACTIONS(8573), + [aux_sym_def_type_statement_token5] = ACTIONS(8573), + [aux_sym_def_type_statement_token6] = ACTIONS(8573), + [aux_sym_def_type_statement_token7] = ACTIONS(8573), + [aux_sym_def_type_statement_token8] = ACTIONS(8573), + [aux_sym_def_type_statement_token9] = ACTIONS(8573), + [aux_sym_def_type_statement_token10] = ACTIONS(8573), + [aux_sym_def_type_statement_token11] = ACTIONS(8573), + [aux_sym_def_type_statement_token12] = ACTIONS(8573), + [aux_sym_def_type_statement_token13] = ACTIONS(8573), + [aux_sym_def_type_statement_token14] = ACTIONS(8573), + [aux_sym_call_statement_token1] = ACTIONS(8573), + [sym__ambiguous_call_statement] = ACTIONS(8573), + [aux_sym_addressof_expression_token1] = ACTIONS(8573), + [aux_sym_type_of_expression_token1] = ACTIONS(8573), + [aux_sym_unary_expression_token1] = ACTIONS(8573), + [sym_string_literal] = ACTIONS(8575), + [sym_number_literal] = ACTIONS(8575), + [aux_sym_boolean_literal_token1] = ACTIONS(8573), + [aux_sym_boolean_literal_token2] = ACTIONS(8573), + [sym_nothing_literal] = ACTIONS(8573), + [sym_null_literal] = ACTIONS(8573), + [sym_empty_literal] = ACTIONS(8573), + [sym_date_literal] = ACTIONS(8575), + [anon_sym_POUND] = ACTIONS(8573), + }, + [STATE(4868)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4876), + [sym_identifier] = ACTIONS(8583), + [sym_newline] = ACTIONS(8585), + [anon_sym_COLON] = ACTIONS(8585), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8583), + [aux_sym_frm_property_statement_token1] = ACTIONS(8583), + [anon_sym_DOT] = ACTIONS(8583), + [anon_sym_BANG] = ACTIONS(8585), + [aux_sym__attribute_identifier_token1] = ACTIONS(8583), + [aux_sym_option_statement_token3] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8583), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8583), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8583), + [aux_sym_preprocessor_const_token1] = ACTIONS(8583), + [sym_static_modifier] = ACTIONS(8583), + [sym__dim_keyword] = ACTIONS(8583), + [sym__redim_keyword] = ACTIONS(8583), + [aux_sym_get_accessor_token1] = ACTIONS(8583), + [aux_sym_set_accessor_token1] = ACTIONS(8583), + [anon_sym_COMMA] = ACTIONS(10251), + [aux_sym_const_declaration_token1] = ACTIONS(8583), + [anon_sym_LPAREN] = ACTIONS(8585), + [aux_sym_as_type_clause_token2] = ACTIONS(8583), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8583), + [aux_sym_visibility_token1] = ACTIONS(8583), + [aux_sym_visibility_token2] = ACTIONS(8583), + [aux_sym_elseif_fragment_token1] = ACTIONS(8583), + [aux_sym_else_fragment_token1] = ACTIONS(8583), + [aux_sym_select_statement_token1] = ACTIONS(8583), + [aux_sym__for_header_token1] = ACTIONS(8583), + [aux_sym_do_statement_token1] = ACTIONS(8583), + [aux_sym_do_condition_token1] = ACTIONS(8583), + [aux_sym_with_statement_token1] = ACTIONS(8583), + [aux_sym_exit_statement_token1] = ACTIONS(8583), + [sym_end_statement] = ACTIONS(8585), + [aux_sym_on_goto_statement_token1] = ACTIONS(8583), + [aux_sym_on_goto_statement_token2] = ACTIONS(8583), + [aux_sym_on_error_statement_token2] = ACTIONS(8583), + [sym__ambiguous_redim_statement] = ACTIONS(8585), + [aux_sym_erase_statement_token1] = ACTIONS(8583), + [aux_sym_open_statement_token1] = ACTIONS(8583), + [aux_sym_file_mode_token2] = ACTIONS(8583), + [aux_sym_file_access_token2] = ACTIONS(8583), + [aux_sym_file_lock_token2] = ACTIONS(8583), + [aux_sym_print_statement_token1] = ACTIONS(8583), + [anon_sym_PLUS] = ACTIONS(8585), + [anon_sym_DASH] = ACTIONS(8583), + [anon_sym_QMARK] = ACTIONS(8585), + [aux_sym_close_statement_token1] = ACTIONS(8583), + [aux_sym_put_statement_token1] = ACTIONS(8583), + [aux_sym_unlock_statement_token1] = ACTIONS(8583), + [aux_sym_seek_statement_token1] = ACTIONS(8583), + [sym_reset_statement] = ACTIONS(8583), + [aux_sym_raise_event_statement_token1] = ACTIONS(8583), + [sym_stop_statement] = ACTIONS(8583), + [sym_beep_statement] = ACTIONS(8583), + [aux_sym_unload_statement_token1] = ACTIONS(8583), + [aux_sym_def_type_statement_token1] = ACTIONS(8583), + [aux_sym_def_type_statement_token2] = ACTIONS(8583), + [aux_sym_def_type_statement_token3] = ACTIONS(8583), + [aux_sym_def_type_statement_token4] = ACTIONS(8583), + [aux_sym_def_type_statement_token5] = ACTIONS(8583), + [aux_sym_def_type_statement_token6] = ACTIONS(8583), + [aux_sym_def_type_statement_token7] = ACTIONS(8583), + [aux_sym_def_type_statement_token8] = ACTIONS(8583), + [aux_sym_def_type_statement_token9] = ACTIONS(8583), + [aux_sym_def_type_statement_token10] = ACTIONS(8583), + [aux_sym_def_type_statement_token11] = ACTIONS(8583), + [aux_sym_def_type_statement_token12] = ACTIONS(8583), + [aux_sym_def_type_statement_token13] = ACTIONS(8583), + [aux_sym_def_type_statement_token14] = ACTIONS(8583), + [aux_sym_call_statement_token1] = ACTIONS(8583), + [sym__ambiguous_call_statement] = ACTIONS(8583), + [aux_sym_addressof_expression_token1] = ACTIONS(8583), + [aux_sym_type_of_expression_token1] = ACTIONS(8583), + [aux_sym_unary_expression_token1] = ACTIONS(8583), + [sym_string_literal] = ACTIONS(8585), + [sym_number_literal] = ACTIONS(8585), + [aux_sym_boolean_literal_token1] = ACTIONS(8583), + [aux_sym_boolean_literal_token2] = ACTIONS(8583), + [sym_nothing_literal] = ACTIONS(8583), + [sym_null_literal] = ACTIONS(8583), + [sym_empty_literal] = ACTIONS(8583), + [sym_date_literal] = ACTIONS(8585), + [anon_sym_POUND] = ACTIONS(8583), + }, + [STATE(4869)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4882), + [sym_identifier] = ACTIONS(8591), + [sym_newline] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(8593), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8591), + [aux_sym_frm_property_statement_token1] = ACTIONS(8591), + [anon_sym_DOT] = ACTIONS(8591), + [anon_sym_BANG] = ACTIONS(8593), + [aux_sym__attribute_identifier_token1] = ACTIONS(8591), + [aux_sym_option_statement_token3] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8591), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8591), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8591), + [aux_sym_preprocessor_const_token1] = ACTIONS(8591), + [sym_static_modifier] = ACTIONS(8591), + [sym__dim_keyword] = ACTIONS(8591), + [sym__redim_keyword] = ACTIONS(8591), + [aux_sym_get_accessor_token1] = ACTIONS(8591), + [aux_sym_set_accessor_token1] = ACTIONS(8591), + [anon_sym_COMMA] = ACTIONS(10251), + [aux_sym_const_declaration_token1] = ACTIONS(8591), + [anon_sym_LPAREN] = ACTIONS(8593), + [aux_sym_as_type_clause_token2] = ACTIONS(8591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8591), + [aux_sym_visibility_token1] = ACTIONS(8591), + [aux_sym_visibility_token2] = ACTIONS(8591), + [aux_sym_elseif_fragment_token1] = ACTIONS(8591), + [aux_sym_else_fragment_token1] = ACTIONS(8591), + [aux_sym_select_statement_token1] = ACTIONS(8591), + [aux_sym__for_header_token1] = ACTIONS(8591), + [aux_sym_do_statement_token1] = ACTIONS(8591), + [aux_sym_do_condition_token1] = ACTIONS(8591), + [aux_sym_with_statement_token1] = ACTIONS(8591), + [aux_sym_exit_statement_token1] = ACTIONS(8591), + [sym_end_statement] = ACTIONS(8593), + [aux_sym_on_goto_statement_token1] = ACTIONS(8591), + [aux_sym_on_goto_statement_token2] = ACTIONS(8591), + [aux_sym_on_error_statement_token2] = ACTIONS(8591), + [sym__ambiguous_redim_statement] = ACTIONS(8593), + [aux_sym_erase_statement_token1] = ACTIONS(8591), + [aux_sym_open_statement_token1] = ACTIONS(8591), + [aux_sym_file_mode_token2] = ACTIONS(8591), + [aux_sym_file_access_token2] = ACTIONS(8591), + [aux_sym_file_lock_token2] = ACTIONS(8591), + [aux_sym_print_statement_token1] = ACTIONS(8591), + [anon_sym_PLUS] = ACTIONS(8593), + [anon_sym_DASH] = ACTIONS(8591), + [anon_sym_QMARK] = ACTIONS(8593), + [aux_sym_close_statement_token1] = ACTIONS(8591), + [aux_sym_put_statement_token1] = ACTIONS(8591), + [aux_sym_unlock_statement_token1] = ACTIONS(8591), + [aux_sym_seek_statement_token1] = ACTIONS(8591), + [sym_reset_statement] = ACTIONS(8591), + [aux_sym_raise_event_statement_token1] = ACTIONS(8591), + [sym_stop_statement] = ACTIONS(8591), + [sym_beep_statement] = ACTIONS(8591), + [aux_sym_unload_statement_token1] = ACTIONS(8591), + [aux_sym_def_type_statement_token1] = ACTIONS(8591), + [aux_sym_def_type_statement_token2] = ACTIONS(8591), + [aux_sym_def_type_statement_token3] = ACTIONS(8591), + [aux_sym_def_type_statement_token4] = ACTIONS(8591), + [aux_sym_def_type_statement_token5] = ACTIONS(8591), + [aux_sym_def_type_statement_token6] = ACTIONS(8591), + [aux_sym_def_type_statement_token7] = ACTIONS(8591), + [aux_sym_def_type_statement_token8] = ACTIONS(8591), + [aux_sym_def_type_statement_token9] = ACTIONS(8591), + [aux_sym_def_type_statement_token10] = ACTIONS(8591), + [aux_sym_def_type_statement_token11] = ACTIONS(8591), + [aux_sym_def_type_statement_token12] = ACTIONS(8591), + [aux_sym_def_type_statement_token13] = ACTIONS(8591), + [aux_sym_def_type_statement_token14] = ACTIONS(8591), + [aux_sym_call_statement_token1] = ACTIONS(8591), + [sym__ambiguous_call_statement] = ACTIONS(8591), + [aux_sym_addressof_expression_token1] = ACTIONS(8591), + [aux_sym_type_of_expression_token1] = ACTIONS(8591), + [aux_sym_unary_expression_token1] = ACTIONS(8591), + [sym_string_literal] = ACTIONS(8593), + [sym_number_literal] = ACTIONS(8593), + [aux_sym_boolean_literal_token1] = ACTIONS(8591), + [aux_sym_boolean_literal_token2] = ACTIONS(8591), + [sym_nothing_literal] = ACTIONS(8591), + [sym_null_literal] = ACTIONS(8591), + [sym_empty_literal] = ACTIONS(8591), + [sym_date_literal] = ACTIONS(8593), + [anon_sym_POUND] = ACTIONS(8591), + }, + [STATE(4870)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4882), + [sym_identifier] = ACTIONS(8095), + [sym_newline] = ACTIONS(8097), + [anon_sym_COLON] = ACTIONS(8097), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8095), + [aux_sym_frm_property_statement_token1] = ACTIONS(8095), + [anon_sym_DOT] = ACTIONS(8095), + [anon_sym_BANG] = ACTIONS(8097), + [aux_sym__attribute_identifier_token1] = ACTIONS(8095), + [aux_sym_option_statement_token3] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8095), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8095), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8095), + [aux_sym_preprocessor_const_token1] = ACTIONS(8095), + [sym_static_modifier] = ACTIONS(8095), + [sym__dim_keyword] = ACTIONS(8095), + [sym__redim_keyword] = ACTIONS(8095), + [aux_sym_get_accessor_token1] = ACTIONS(8095), + [aux_sym_set_accessor_token1] = ACTIONS(8095), + [anon_sym_COMMA] = ACTIONS(10251), + [aux_sym_const_declaration_token1] = ACTIONS(8095), + [anon_sym_LPAREN] = ACTIONS(8097), + [aux_sym_as_type_clause_token2] = ACTIONS(8095), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8095), + [aux_sym_visibility_token1] = ACTIONS(8095), + [aux_sym_visibility_token2] = ACTIONS(8095), + [aux_sym_elseif_fragment_token1] = ACTIONS(8095), + [aux_sym_else_fragment_token1] = ACTIONS(8095), + [aux_sym_select_statement_token1] = ACTIONS(8095), + [aux_sym__for_header_token1] = ACTIONS(8095), + [aux_sym_do_statement_token1] = ACTIONS(8095), + [aux_sym_do_condition_token1] = ACTIONS(8095), + [aux_sym_with_statement_token1] = ACTIONS(8095), + [aux_sym_exit_statement_token1] = ACTIONS(8095), + [sym_end_statement] = ACTIONS(8097), + [aux_sym_on_goto_statement_token1] = ACTIONS(8095), + [aux_sym_on_goto_statement_token2] = ACTIONS(8095), + [aux_sym_on_error_statement_token2] = ACTIONS(8095), + [sym__ambiguous_redim_statement] = ACTIONS(8097), + [aux_sym_erase_statement_token1] = ACTIONS(8095), + [aux_sym_open_statement_token1] = ACTIONS(8095), + [aux_sym_file_mode_token2] = ACTIONS(8095), + [aux_sym_file_access_token2] = ACTIONS(8095), + [aux_sym_file_lock_token2] = ACTIONS(8095), + [aux_sym_print_statement_token1] = ACTIONS(8095), + [anon_sym_PLUS] = ACTIONS(8097), + [anon_sym_DASH] = ACTIONS(8095), + [anon_sym_QMARK] = ACTIONS(8097), + [aux_sym_close_statement_token1] = ACTIONS(8095), + [aux_sym_put_statement_token1] = ACTIONS(8095), + [aux_sym_unlock_statement_token1] = ACTIONS(8095), + [aux_sym_seek_statement_token1] = ACTIONS(8095), + [sym_reset_statement] = ACTIONS(8095), + [aux_sym_raise_event_statement_token1] = ACTIONS(8095), + [sym_stop_statement] = ACTIONS(8095), + [sym_beep_statement] = ACTIONS(8095), + [aux_sym_unload_statement_token1] = ACTIONS(8095), + [aux_sym_def_type_statement_token1] = ACTIONS(8095), + [aux_sym_def_type_statement_token2] = ACTIONS(8095), + [aux_sym_def_type_statement_token3] = ACTIONS(8095), + [aux_sym_def_type_statement_token4] = ACTIONS(8095), + [aux_sym_def_type_statement_token5] = ACTIONS(8095), + [aux_sym_def_type_statement_token6] = ACTIONS(8095), + [aux_sym_def_type_statement_token7] = ACTIONS(8095), + [aux_sym_def_type_statement_token8] = ACTIONS(8095), + [aux_sym_def_type_statement_token9] = ACTIONS(8095), + [aux_sym_def_type_statement_token10] = ACTIONS(8095), + [aux_sym_def_type_statement_token11] = ACTIONS(8095), + [aux_sym_def_type_statement_token12] = ACTIONS(8095), + [aux_sym_def_type_statement_token13] = ACTIONS(8095), + [aux_sym_def_type_statement_token14] = ACTIONS(8095), + [aux_sym_call_statement_token1] = ACTIONS(8095), + [sym__ambiguous_call_statement] = ACTIONS(8095), + [aux_sym_addressof_expression_token1] = ACTIONS(8095), + [aux_sym_type_of_expression_token1] = ACTIONS(8095), + [aux_sym_unary_expression_token1] = ACTIONS(8095), + [sym_string_literal] = ACTIONS(8097), + [sym_number_literal] = ACTIONS(8097), + [aux_sym_boolean_literal_token1] = ACTIONS(8095), + [aux_sym_boolean_literal_token2] = ACTIONS(8095), + [sym_nothing_literal] = ACTIONS(8095), + [sym_null_literal] = ACTIONS(8095), + [sym_empty_literal] = ACTIONS(8095), + [sym_date_literal] = ACTIONS(8097), + [anon_sym_POUND] = ACTIONS(8095), + }, + [STATE(4871)] = { + [aux_sym_const_declaration_repeat1] = STATE(4883), + [sym_identifier] = ACTIONS(8614), + [sym_newline] = ACTIONS(8616), + [anon_sym_COLON] = ACTIONS(8616), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8614), + [aux_sym_frm_property_statement_token1] = ACTIONS(8614), + [anon_sym_DOT] = ACTIONS(8614), + [anon_sym_BANG] = ACTIONS(8616), + [aux_sym__attribute_identifier_token1] = ACTIONS(8614), + [aux_sym_option_statement_token3] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8614), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8614), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8614), + [aux_sym_preprocessor_const_token1] = ACTIONS(8614), + [sym_static_modifier] = ACTIONS(8614), + [sym__dim_keyword] = ACTIONS(8614), + [sym__redim_keyword] = ACTIONS(8614), + [aux_sym_get_accessor_token1] = ACTIONS(8614), + [aux_sym_set_accessor_token1] = ACTIONS(8614), + [anon_sym_COMMA] = ACTIONS(10253), + [aux_sym_const_declaration_token1] = ACTIONS(8614), + [anon_sym_LPAREN] = ACTIONS(8616), + [aux_sym_as_type_clause_token2] = ACTIONS(8614), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8614), + [aux_sym_visibility_token1] = ACTIONS(8614), + [aux_sym_visibility_token2] = ACTIONS(8614), + [aux_sym_elseif_fragment_token1] = ACTIONS(8614), + [aux_sym_else_fragment_token1] = ACTIONS(8614), + [aux_sym_select_statement_token1] = ACTIONS(8614), + [aux_sym__for_header_token1] = ACTIONS(8614), + [aux_sym_do_statement_token1] = ACTIONS(8614), + [aux_sym_do_condition_token1] = ACTIONS(8614), + [aux_sym_with_statement_token1] = ACTIONS(8614), + [aux_sym_exit_statement_token1] = ACTIONS(8614), + [sym_end_statement] = ACTIONS(8616), + [aux_sym_on_goto_statement_token1] = ACTIONS(8614), + [aux_sym_on_goto_statement_token2] = ACTIONS(8614), + [aux_sym_on_error_statement_token2] = ACTIONS(8614), + [sym__ambiguous_redim_statement] = ACTIONS(8616), + [aux_sym_erase_statement_token1] = ACTIONS(8614), + [aux_sym_open_statement_token1] = ACTIONS(8614), + [aux_sym_file_mode_token2] = ACTIONS(8614), + [aux_sym_file_access_token2] = ACTIONS(8614), + [aux_sym_file_lock_token2] = ACTIONS(8614), + [aux_sym_print_statement_token1] = ACTIONS(8614), + [anon_sym_PLUS] = ACTIONS(8616), + [anon_sym_DASH] = ACTIONS(8614), + [anon_sym_QMARK] = ACTIONS(8616), + [aux_sym_close_statement_token1] = ACTIONS(8614), + [aux_sym_put_statement_token1] = ACTIONS(8614), + [aux_sym_unlock_statement_token1] = ACTIONS(8614), + [aux_sym_seek_statement_token1] = ACTIONS(8614), + [sym_reset_statement] = ACTIONS(8614), + [aux_sym_raise_event_statement_token1] = ACTIONS(8614), + [sym_stop_statement] = ACTIONS(8614), + [sym_beep_statement] = ACTIONS(8614), + [aux_sym_unload_statement_token1] = ACTIONS(8614), + [aux_sym_def_type_statement_token1] = ACTIONS(8614), + [aux_sym_def_type_statement_token2] = ACTIONS(8614), + [aux_sym_def_type_statement_token3] = ACTIONS(8614), + [aux_sym_def_type_statement_token4] = ACTIONS(8614), + [aux_sym_def_type_statement_token5] = ACTIONS(8614), + [aux_sym_def_type_statement_token6] = ACTIONS(8614), + [aux_sym_def_type_statement_token7] = ACTIONS(8614), + [aux_sym_def_type_statement_token8] = ACTIONS(8614), + [aux_sym_def_type_statement_token9] = ACTIONS(8614), + [aux_sym_def_type_statement_token10] = ACTIONS(8614), + [aux_sym_def_type_statement_token11] = ACTIONS(8614), + [aux_sym_def_type_statement_token12] = ACTIONS(8614), + [aux_sym_def_type_statement_token13] = ACTIONS(8614), + [aux_sym_def_type_statement_token14] = ACTIONS(8614), + [aux_sym_call_statement_token1] = ACTIONS(8614), + [sym__ambiguous_call_statement] = ACTIONS(8614), + [aux_sym_addressof_expression_token1] = ACTIONS(8614), + [aux_sym_type_of_expression_token1] = ACTIONS(8614), + [aux_sym_unary_expression_token1] = ACTIONS(8614), + [sym_string_literal] = ACTIONS(8616), + [sym_number_literal] = ACTIONS(8616), + [aux_sym_boolean_literal_token1] = ACTIONS(8614), + [aux_sym_boolean_literal_token2] = ACTIONS(8614), + [sym_nothing_literal] = ACTIONS(8614), + [sym_null_literal] = ACTIONS(8614), + [sym_empty_literal] = ACTIONS(8614), + [sym_date_literal] = ACTIONS(8616), + [anon_sym_POUND] = ACTIONS(8614), + }, + [STATE(4872)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4891), + [sym_identifier] = ACTIONS(8308), + [sym_newline] = ACTIONS(8310), + [anon_sym_COLON] = ACTIONS(8310), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8308), + [aux_sym_frm_property_statement_token1] = ACTIONS(8308), + [anon_sym_DOT] = ACTIONS(8308), + [anon_sym_BANG] = ACTIONS(8310), + [aux_sym__attribute_identifier_token1] = ACTIONS(8308), + [aux_sym_option_statement_token3] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8308), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8308), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8308), + [aux_sym_preprocessor_const_token1] = ACTIONS(8308), + [sym_static_modifier] = ACTIONS(8308), + [sym__dim_keyword] = ACTIONS(8308), + [sym__redim_keyword] = ACTIONS(8308), + [aux_sym_get_accessor_token1] = ACTIONS(8308), + [aux_sym_set_accessor_token1] = ACTIONS(8308), + [anon_sym_COMMA] = ACTIONS(10251), + [aux_sym_const_declaration_token1] = ACTIONS(8308), + [anon_sym_LPAREN] = ACTIONS(8310), + [aux_sym_as_type_clause_token2] = ACTIONS(8308), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8308), + [aux_sym_visibility_token1] = ACTIONS(8308), + [aux_sym_visibility_token2] = ACTIONS(8308), + [aux_sym_elseif_fragment_token1] = ACTIONS(8308), + [aux_sym_else_fragment_token1] = ACTIONS(8308), + [aux_sym_select_statement_token1] = ACTIONS(8308), + [aux_sym__for_header_token1] = ACTIONS(8308), + [aux_sym_do_statement_token1] = ACTIONS(8308), + [aux_sym_do_condition_token1] = ACTIONS(8308), + [aux_sym_with_statement_token1] = ACTIONS(8308), + [aux_sym_exit_statement_token1] = ACTIONS(8308), + [sym_end_statement] = ACTIONS(8310), + [aux_sym_on_goto_statement_token1] = ACTIONS(8308), + [aux_sym_on_goto_statement_token2] = ACTIONS(8308), + [aux_sym_on_error_statement_token2] = ACTIONS(8308), + [sym__ambiguous_redim_statement] = ACTIONS(8310), + [aux_sym_erase_statement_token1] = ACTIONS(8308), + [aux_sym_open_statement_token1] = ACTIONS(8308), + [aux_sym_file_mode_token2] = ACTIONS(8308), + [aux_sym_file_access_token2] = ACTIONS(8308), + [aux_sym_file_lock_token2] = ACTIONS(8308), + [aux_sym_print_statement_token1] = ACTIONS(8308), + [anon_sym_PLUS] = ACTIONS(8310), + [anon_sym_DASH] = ACTIONS(8308), + [anon_sym_QMARK] = ACTIONS(8310), + [aux_sym_close_statement_token1] = ACTIONS(8308), + [aux_sym_put_statement_token1] = ACTIONS(8308), + [aux_sym_unlock_statement_token1] = ACTIONS(8308), + [aux_sym_seek_statement_token1] = ACTIONS(8308), + [sym_reset_statement] = ACTIONS(8308), + [aux_sym_raise_event_statement_token1] = ACTIONS(8308), + [sym_stop_statement] = ACTIONS(8308), + [sym_beep_statement] = ACTIONS(8308), + [aux_sym_unload_statement_token1] = ACTIONS(8308), + [aux_sym_def_type_statement_token1] = ACTIONS(8308), + [aux_sym_def_type_statement_token2] = ACTIONS(8308), + [aux_sym_def_type_statement_token3] = ACTIONS(8308), + [aux_sym_def_type_statement_token4] = ACTIONS(8308), + [aux_sym_def_type_statement_token5] = ACTIONS(8308), + [aux_sym_def_type_statement_token6] = ACTIONS(8308), + [aux_sym_def_type_statement_token7] = ACTIONS(8308), + [aux_sym_def_type_statement_token8] = ACTIONS(8308), + [aux_sym_def_type_statement_token9] = ACTIONS(8308), + [aux_sym_def_type_statement_token10] = ACTIONS(8308), + [aux_sym_def_type_statement_token11] = ACTIONS(8308), + [aux_sym_def_type_statement_token12] = ACTIONS(8308), + [aux_sym_def_type_statement_token13] = ACTIONS(8308), + [aux_sym_def_type_statement_token14] = ACTIONS(8308), + [aux_sym_call_statement_token1] = ACTIONS(8308), + [sym__ambiguous_call_statement] = ACTIONS(8308), + [aux_sym_addressof_expression_token1] = ACTIONS(8308), + [aux_sym_type_of_expression_token1] = ACTIONS(8308), + [aux_sym_unary_expression_token1] = ACTIONS(8308), + [sym_string_literal] = ACTIONS(8310), + [sym_number_literal] = ACTIONS(8310), + [aux_sym_boolean_literal_token1] = ACTIONS(8308), + [aux_sym_boolean_literal_token2] = ACTIONS(8308), + [sym_nothing_literal] = ACTIONS(8308), + [sym_null_literal] = ACTIONS(8308), + [sym_empty_literal] = ACTIONS(8308), + [sym_date_literal] = ACTIONS(8310), + [anon_sym_POUND] = ACTIONS(8308), + }, + [STATE(4873)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4892), + [sym_identifier] = ACTIONS(8332), + [sym_newline] = ACTIONS(8334), + [anon_sym_COLON] = ACTIONS(8334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8332), + [aux_sym_frm_property_statement_token1] = ACTIONS(8332), + [anon_sym_DOT] = ACTIONS(8332), + [anon_sym_BANG] = ACTIONS(8334), + [aux_sym__attribute_identifier_token1] = ACTIONS(8332), + [aux_sym_option_statement_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8332), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8332), + [aux_sym_preprocessor_const_token1] = ACTIONS(8332), + [sym_static_modifier] = ACTIONS(8332), + [sym__dim_keyword] = ACTIONS(8332), + [sym__redim_keyword] = ACTIONS(8332), + [aux_sym_get_accessor_token1] = ACTIONS(8332), + [aux_sym_set_accessor_token1] = ACTIONS(8332), + [anon_sym_COMMA] = ACTIONS(10251), + [aux_sym_const_declaration_token1] = ACTIONS(8332), + [anon_sym_LPAREN] = ACTIONS(8334), + [aux_sym_as_type_clause_token2] = ACTIONS(8332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8332), + [aux_sym_visibility_token1] = ACTIONS(8332), + [aux_sym_visibility_token2] = ACTIONS(8332), + [aux_sym_elseif_fragment_token1] = ACTIONS(8332), + [aux_sym_else_fragment_token1] = ACTIONS(8332), + [aux_sym_select_statement_token1] = ACTIONS(8332), + [aux_sym__for_header_token1] = ACTIONS(8332), + [aux_sym_do_statement_token1] = ACTIONS(8332), + [aux_sym_do_condition_token1] = ACTIONS(8332), + [aux_sym_with_statement_token1] = ACTIONS(8332), + [aux_sym_exit_statement_token1] = ACTIONS(8332), + [sym_end_statement] = ACTIONS(8334), + [aux_sym_on_goto_statement_token1] = ACTIONS(8332), + [aux_sym_on_goto_statement_token2] = ACTIONS(8332), + [aux_sym_on_error_statement_token2] = ACTIONS(8332), + [sym__ambiguous_redim_statement] = ACTIONS(8334), + [aux_sym_erase_statement_token1] = ACTIONS(8332), + [aux_sym_open_statement_token1] = ACTIONS(8332), + [aux_sym_file_mode_token2] = ACTIONS(8332), + [aux_sym_file_access_token2] = ACTIONS(8332), + [aux_sym_file_lock_token2] = ACTIONS(8332), + [aux_sym_print_statement_token1] = ACTIONS(8332), + [anon_sym_PLUS] = ACTIONS(8334), + [anon_sym_DASH] = ACTIONS(8332), + [anon_sym_QMARK] = ACTIONS(8334), + [aux_sym_close_statement_token1] = ACTIONS(8332), + [aux_sym_put_statement_token1] = ACTIONS(8332), + [aux_sym_unlock_statement_token1] = ACTIONS(8332), + [aux_sym_seek_statement_token1] = ACTIONS(8332), + [sym_reset_statement] = ACTIONS(8332), + [aux_sym_raise_event_statement_token1] = ACTIONS(8332), + [sym_stop_statement] = ACTIONS(8332), + [sym_beep_statement] = ACTIONS(8332), + [aux_sym_unload_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token2] = ACTIONS(8332), + [aux_sym_def_type_statement_token3] = ACTIONS(8332), + [aux_sym_def_type_statement_token4] = ACTIONS(8332), + [aux_sym_def_type_statement_token5] = ACTIONS(8332), + [aux_sym_def_type_statement_token6] = ACTIONS(8332), + [aux_sym_def_type_statement_token7] = ACTIONS(8332), + [aux_sym_def_type_statement_token8] = ACTIONS(8332), + [aux_sym_def_type_statement_token9] = ACTIONS(8332), + [aux_sym_def_type_statement_token10] = ACTIONS(8332), + [aux_sym_def_type_statement_token11] = ACTIONS(8332), + [aux_sym_def_type_statement_token12] = ACTIONS(8332), + [aux_sym_def_type_statement_token13] = ACTIONS(8332), + [aux_sym_def_type_statement_token14] = ACTIONS(8332), + [aux_sym_call_statement_token1] = ACTIONS(8332), + [sym__ambiguous_call_statement] = ACTIONS(8332), + [aux_sym_addressof_expression_token1] = ACTIONS(8332), + [aux_sym_type_of_expression_token1] = ACTIONS(8332), + [aux_sym_unary_expression_token1] = ACTIONS(8332), + [sym_string_literal] = ACTIONS(8334), + [sym_number_literal] = ACTIONS(8334), + [aux_sym_boolean_literal_token1] = ACTIONS(8332), + [aux_sym_boolean_literal_token2] = ACTIONS(8332), + [sym_nothing_literal] = ACTIONS(8332), + [sym_null_literal] = ACTIONS(8332), + [sym_empty_literal] = ACTIONS(8332), + [sym_date_literal] = ACTIONS(8334), + [anon_sym_POUND] = ACTIONS(8332), + }, + [STATE(4874)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4893), + [sym_identifier] = ACTIONS(8336), + [sym_newline] = ACTIONS(8338), + [anon_sym_COLON] = ACTIONS(8338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8336), + [aux_sym_frm_property_statement_token1] = ACTIONS(8336), + [anon_sym_DOT] = ACTIONS(8336), + [anon_sym_BANG] = ACTIONS(8338), + [aux_sym__attribute_identifier_token1] = ACTIONS(8336), + [aux_sym_option_statement_token3] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8336), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8336), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8336), + [aux_sym_preprocessor_const_token1] = ACTIONS(8336), + [sym_static_modifier] = ACTIONS(8336), + [sym__dim_keyword] = ACTIONS(8336), + [sym__redim_keyword] = ACTIONS(8336), + [aux_sym_get_accessor_token1] = ACTIONS(8336), + [aux_sym_set_accessor_token1] = ACTIONS(8336), + [anon_sym_COMMA] = ACTIONS(10251), + [aux_sym_const_declaration_token1] = ACTIONS(8336), + [anon_sym_LPAREN] = ACTIONS(8338), + [aux_sym_as_type_clause_token2] = ACTIONS(8336), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8336), + [aux_sym_visibility_token1] = ACTIONS(8336), + [aux_sym_visibility_token2] = ACTIONS(8336), + [aux_sym_elseif_fragment_token1] = ACTIONS(8336), + [aux_sym_else_fragment_token1] = ACTIONS(8336), + [aux_sym_select_statement_token1] = ACTIONS(8336), + [aux_sym__for_header_token1] = ACTIONS(8336), + [aux_sym_do_statement_token1] = ACTIONS(8336), + [aux_sym_do_condition_token1] = ACTIONS(8336), + [aux_sym_with_statement_token1] = ACTIONS(8336), + [aux_sym_exit_statement_token1] = ACTIONS(8336), + [sym_end_statement] = ACTIONS(8338), + [aux_sym_on_goto_statement_token1] = ACTIONS(8336), + [aux_sym_on_goto_statement_token2] = ACTIONS(8336), + [aux_sym_on_error_statement_token2] = ACTIONS(8336), + [sym__ambiguous_redim_statement] = ACTIONS(8338), + [aux_sym_erase_statement_token1] = ACTIONS(8336), + [aux_sym_open_statement_token1] = ACTIONS(8336), + [aux_sym_file_mode_token2] = ACTIONS(8336), + [aux_sym_file_access_token2] = ACTIONS(8336), + [aux_sym_file_lock_token2] = ACTIONS(8336), + [aux_sym_print_statement_token1] = ACTIONS(8336), + [anon_sym_PLUS] = ACTIONS(8338), + [anon_sym_DASH] = ACTIONS(8336), + [anon_sym_QMARK] = ACTIONS(8338), + [aux_sym_close_statement_token1] = ACTIONS(8336), + [aux_sym_put_statement_token1] = ACTIONS(8336), + [aux_sym_unlock_statement_token1] = ACTIONS(8336), + [aux_sym_seek_statement_token1] = ACTIONS(8336), + [sym_reset_statement] = ACTIONS(8336), + [aux_sym_raise_event_statement_token1] = ACTIONS(8336), + [sym_stop_statement] = ACTIONS(8336), + [sym_beep_statement] = ACTIONS(8336), + [aux_sym_unload_statement_token1] = ACTIONS(8336), + [aux_sym_def_type_statement_token1] = ACTIONS(8336), + [aux_sym_def_type_statement_token2] = ACTIONS(8336), + [aux_sym_def_type_statement_token3] = ACTIONS(8336), + [aux_sym_def_type_statement_token4] = ACTIONS(8336), + [aux_sym_def_type_statement_token5] = ACTIONS(8336), + [aux_sym_def_type_statement_token6] = ACTIONS(8336), + [aux_sym_def_type_statement_token7] = ACTIONS(8336), + [aux_sym_def_type_statement_token8] = ACTIONS(8336), + [aux_sym_def_type_statement_token9] = ACTIONS(8336), + [aux_sym_def_type_statement_token10] = ACTIONS(8336), + [aux_sym_def_type_statement_token11] = ACTIONS(8336), + [aux_sym_def_type_statement_token12] = ACTIONS(8336), + [aux_sym_def_type_statement_token13] = ACTIONS(8336), + [aux_sym_def_type_statement_token14] = ACTIONS(8336), + [aux_sym_call_statement_token1] = ACTIONS(8336), + [sym__ambiguous_call_statement] = ACTIONS(8336), + [aux_sym_addressof_expression_token1] = ACTIONS(8336), + [aux_sym_type_of_expression_token1] = ACTIONS(8336), + [aux_sym_unary_expression_token1] = ACTIONS(8336), + [sym_string_literal] = ACTIONS(8338), + [sym_number_literal] = ACTIONS(8338), + [aux_sym_boolean_literal_token1] = ACTIONS(8336), + [aux_sym_boolean_literal_token2] = ACTIONS(8336), + [sym_nothing_literal] = ACTIONS(8336), + [sym_null_literal] = ACTIONS(8336), + [sym_empty_literal] = ACTIONS(8336), + [sym_date_literal] = ACTIONS(8338), + [anon_sym_POUND] = ACTIONS(8336), + }, + [STATE(4875)] = { + [aux_sym_const_declaration_repeat1] = STATE(4894), + [sym_identifier] = ACTIONS(8346), + [sym_newline] = ACTIONS(8348), + [anon_sym_COLON] = ACTIONS(8348), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8346), + [aux_sym_frm_property_statement_token1] = ACTIONS(8346), + [anon_sym_DOT] = ACTIONS(8346), + [anon_sym_BANG] = ACTIONS(8348), + [aux_sym__attribute_identifier_token1] = ACTIONS(8346), + [aux_sym_option_statement_token3] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8346), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8346), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8346), + [aux_sym_preprocessor_const_token1] = ACTIONS(8346), + [sym_static_modifier] = ACTIONS(8346), + [sym__dim_keyword] = ACTIONS(8346), + [sym__redim_keyword] = ACTIONS(8346), + [aux_sym_get_accessor_token1] = ACTIONS(8346), + [aux_sym_set_accessor_token1] = ACTIONS(8346), + [anon_sym_COMMA] = ACTIONS(10253), + [aux_sym_const_declaration_token1] = ACTIONS(8346), + [anon_sym_LPAREN] = ACTIONS(8348), + [aux_sym_as_type_clause_token2] = ACTIONS(8346), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8346), + [aux_sym_visibility_token1] = ACTIONS(8346), + [aux_sym_visibility_token2] = ACTIONS(8346), + [aux_sym_elseif_fragment_token1] = ACTIONS(8346), + [aux_sym_else_fragment_token1] = ACTIONS(8346), + [aux_sym_select_statement_token1] = ACTIONS(8346), + [aux_sym__for_header_token1] = ACTIONS(8346), + [aux_sym_do_statement_token1] = ACTIONS(8346), + [aux_sym_do_condition_token1] = ACTIONS(8346), + [aux_sym_with_statement_token1] = ACTIONS(8346), + [aux_sym_exit_statement_token1] = ACTIONS(8346), + [sym_end_statement] = ACTIONS(8348), + [aux_sym_on_goto_statement_token1] = ACTIONS(8346), + [aux_sym_on_goto_statement_token2] = ACTIONS(8346), + [aux_sym_on_error_statement_token2] = ACTIONS(8346), + [sym__ambiguous_redim_statement] = ACTIONS(8348), + [aux_sym_erase_statement_token1] = ACTIONS(8346), + [aux_sym_open_statement_token1] = ACTIONS(8346), + [aux_sym_file_mode_token2] = ACTIONS(8346), + [aux_sym_file_access_token2] = ACTIONS(8346), + [aux_sym_file_lock_token2] = ACTIONS(8346), + [aux_sym_print_statement_token1] = ACTIONS(8346), + [anon_sym_PLUS] = ACTIONS(8348), + [anon_sym_DASH] = ACTIONS(8346), + [anon_sym_QMARK] = ACTIONS(8348), + [aux_sym_close_statement_token1] = ACTIONS(8346), + [aux_sym_put_statement_token1] = ACTIONS(8346), + [aux_sym_unlock_statement_token1] = ACTIONS(8346), + [aux_sym_seek_statement_token1] = ACTIONS(8346), + [sym_reset_statement] = ACTIONS(8346), + [aux_sym_raise_event_statement_token1] = ACTIONS(8346), + [sym_stop_statement] = ACTIONS(8346), + [sym_beep_statement] = ACTIONS(8346), + [aux_sym_unload_statement_token1] = ACTIONS(8346), + [aux_sym_def_type_statement_token1] = ACTIONS(8346), + [aux_sym_def_type_statement_token2] = ACTIONS(8346), + [aux_sym_def_type_statement_token3] = ACTIONS(8346), + [aux_sym_def_type_statement_token4] = ACTIONS(8346), + [aux_sym_def_type_statement_token5] = ACTIONS(8346), + [aux_sym_def_type_statement_token6] = ACTIONS(8346), + [aux_sym_def_type_statement_token7] = ACTIONS(8346), + [aux_sym_def_type_statement_token8] = ACTIONS(8346), + [aux_sym_def_type_statement_token9] = ACTIONS(8346), + [aux_sym_def_type_statement_token10] = ACTIONS(8346), + [aux_sym_def_type_statement_token11] = ACTIONS(8346), + [aux_sym_def_type_statement_token12] = ACTIONS(8346), + [aux_sym_def_type_statement_token13] = ACTIONS(8346), + [aux_sym_def_type_statement_token14] = ACTIONS(8346), + [aux_sym_call_statement_token1] = ACTIONS(8346), + [sym__ambiguous_call_statement] = ACTIONS(8346), + [aux_sym_addressof_expression_token1] = ACTIONS(8346), + [aux_sym_type_of_expression_token1] = ACTIONS(8346), + [aux_sym_unary_expression_token1] = ACTIONS(8346), + [sym_string_literal] = ACTIONS(8348), + [sym_number_literal] = ACTIONS(8348), + [aux_sym_boolean_literal_token1] = ACTIONS(8346), + [aux_sym_boolean_literal_token2] = ACTIONS(8346), + [sym_nothing_literal] = ACTIONS(8346), + [sym_null_literal] = ACTIONS(8346), + [sym_empty_literal] = ACTIONS(8346), + [sym_date_literal] = ACTIONS(8348), + [anon_sym_POUND] = ACTIONS(8346), + }, + [STATE(4876)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4882), + [sym_identifier] = ACTIONS(8332), + [sym_newline] = ACTIONS(8334), + [anon_sym_COLON] = ACTIONS(8334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8332), + [aux_sym_frm_property_statement_token1] = ACTIONS(8332), + [anon_sym_DOT] = ACTIONS(8332), + [anon_sym_BANG] = ACTIONS(8334), + [aux_sym__attribute_identifier_token1] = ACTIONS(8332), + [aux_sym_option_statement_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8332), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8332), + [aux_sym_preprocessor_const_token1] = ACTIONS(8332), + [sym_static_modifier] = ACTIONS(8332), + [sym__dim_keyword] = ACTIONS(8332), + [sym__redim_keyword] = ACTIONS(8332), + [aux_sym_get_accessor_token1] = ACTIONS(8332), + [aux_sym_set_accessor_token1] = ACTIONS(8332), + [anon_sym_COMMA] = ACTIONS(10251), + [aux_sym_const_declaration_token1] = ACTIONS(8332), + [anon_sym_LPAREN] = ACTIONS(8334), + [aux_sym_as_type_clause_token2] = ACTIONS(8332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8332), + [aux_sym_visibility_token1] = ACTIONS(8332), + [aux_sym_visibility_token2] = ACTIONS(8332), + [aux_sym_elseif_fragment_token1] = ACTIONS(8332), + [aux_sym_else_fragment_token1] = ACTIONS(8332), + [aux_sym_select_statement_token1] = ACTIONS(8332), + [aux_sym__for_header_token1] = ACTIONS(8332), + [aux_sym_do_statement_token1] = ACTIONS(8332), + [aux_sym_do_condition_token1] = ACTIONS(8332), + [aux_sym_with_statement_token1] = ACTIONS(8332), + [aux_sym_exit_statement_token1] = ACTIONS(8332), + [sym_end_statement] = ACTIONS(8334), + [aux_sym_on_goto_statement_token1] = ACTIONS(8332), + [aux_sym_on_goto_statement_token2] = ACTIONS(8332), + [aux_sym_on_error_statement_token2] = ACTIONS(8332), + [sym__ambiguous_redim_statement] = ACTIONS(8334), + [aux_sym_erase_statement_token1] = ACTIONS(8332), + [aux_sym_open_statement_token1] = ACTIONS(8332), + [aux_sym_file_mode_token2] = ACTIONS(8332), + [aux_sym_file_access_token2] = ACTIONS(8332), + [aux_sym_file_lock_token2] = ACTIONS(8332), + [aux_sym_print_statement_token1] = ACTIONS(8332), + [anon_sym_PLUS] = ACTIONS(8334), + [anon_sym_DASH] = ACTIONS(8332), + [anon_sym_QMARK] = ACTIONS(8334), + [aux_sym_close_statement_token1] = ACTIONS(8332), + [aux_sym_put_statement_token1] = ACTIONS(8332), + [aux_sym_unlock_statement_token1] = ACTIONS(8332), + [aux_sym_seek_statement_token1] = ACTIONS(8332), + [sym_reset_statement] = ACTIONS(8332), + [aux_sym_raise_event_statement_token1] = ACTIONS(8332), + [sym_stop_statement] = ACTIONS(8332), + [sym_beep_statement] = ACTIONS(8332), + [aux_sym_unload_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token2] = ACTIONS(8332), + [aux_sym_def_type_statement_token3] = ACTIONS(8332), + [aux_sym_def_type_statement_token4] = ACTIONS(8332), + [aux_sym_def_type_statement_token5] = ACTIONS(8332), + [aux_sym_def_type_statement_token6] = ACTIONS(8332), + [aux_sym_def_type_statement_token7] = ACTIONS(8332), + [aux_sym_def_type_statement_token8] = ACTIONS(8332), + [aux_sym_def_type_statement_token9] = ACTIONS(8332), + [aux_sym_def_type_statement_token10] = ACTIONS(8332), + [aux_sym_def_type_statement_token11] = ACTIONS(8332), + [aux_sym_def_type_statement_token12] = ACTIONS(8332), + [aux_sym_def_type_statement_token13] = ACTIONS(8332), + [aux_sym_def_type_statement_token14] = ACTIONS(8332), + [aux_sym_call_statement_token1] = ACTIONS(8332), + [sym__ambiguous_call_statement] = ACTIONS(8332), + [aux_sym_addressof_expression_token1] = ACTIONS(8332), + [aux_sym_type_of_expression_token1] = ACTIONS(8332), + [aux_sym_unary_expression_token1] = ACTIONS(8332), + [sym_string_literal] = ACTIONS(8334), + [sym_number_literal] = ACTIONS(8334), + [aux_sym_boolean_literal_token1] = ACTIONS(8332), + [aux_sym_boolean_literal_token2] = ACTIONS(8332), + [sym_nothing_literal] = ACTIONS(8332), + [sym_null_literal] = ACTIONS(8332), + [sym_empty_literal] = ACTIONS(8332), + [sym_date_literal] = ACTIONS(8334), + [anon_sym_POUND] = ACTIONS(8332), + }, + [STATE(4877)] = { + [sym_identifier] = ACTIONS(5869), + [sym_newline] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5869), + [aux_sym_frm_property_statement_token1] = ACTIONS(5869), + [anon_sym_DOT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [aux_sym__attribute_identifier_token1] = ACTIONS(5869), + [aux_sym_option_statement_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5869), + [aux_sym_preprocessor_const_token1] = ACTIONS(5869), + [sym_static_modifier] = ACTIONS(5869), + [sym__dim_keyword] = ACTIONS(5869), + [sym__redim_keyword] = ACTIONS(5869), + [aux_sym_get_accessor_token1] = ACTIONS(5869), + [aux_sym_set_accessor_token1] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5871), + [aux_sym_const_declaration_token1] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5871), + [aux_sym_as_type_clause_token2] = ACTIONS(5869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5869), + [aux_sym_visibility_token1] = ACTIONS(5869), + [aux_sym_visibility_token2] = ACTIONS(5869), + [aux_sym_elseif_fragment_token1] = ACTIONS(5869), + [aux_sym_else_fragment_token1] = ACTIONS(5869), + [aux_sym_select_statement_token1] = ACTIONS(5869), + [aux_sym_select_statement_token2] = ACTIONS(5869), + [aux_sym__for_header_token1] = ACTIONS(5869), + [aux_sym_do_statement_token1] = ACTIONS(5869), + [aux_sym_do_condition_token1] = ACTIONS(5869), + [aux_sym_with_statement_token1] = ACTIONS(5869), + [aux_sym_exit_statement_token1] = ACTIONS(5869), + [sym_end_statement] = ACTIONS(5871), + [aux_sym_on_goto_statement_token1] = ACTIONS(5869), + [aux_sym_on_goto_statement_token2] = ACTIONS(5869), + [aux_sym_on_error_statement_token2] = ACTIONS(5869), + [sym__ambiguous_redim_statement] = ACTIONS(5871), + [aux_sym_erase_statement_token1] = ACTIONS(5869), + [aux_sym_open_statement_token1] = ACTIONS(5869), + [aux_sym_file_mode_token2] = ACTIONS(5869), + [aux_sym_file_access_token2] = ACTIONS(5869), + [aux_sym_file_lock_token2] = ACTIONS(5869), + [aux_sym_print_statement_token1] = ACTIONS(5869), + [anon_sym_PLUS] = ACTIONS(5871), + [anon_sym_DASH] = ACTIONS(5869), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10130), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10132), + [anon_sym_SEMI] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [aux_sym_close_statement_token1] = ACTIONS(5869), + [aux_sym_put_statement_token1] = ACTIONS(5869), + [aux_sym_unlock_statement_token1] = ACTIONS(5869), + [aux_sym_seek_statement_token1] = ACTIONS(5869), + [sym_reset_statement] = ACTIONS(5869), + [aux_sym_raise_event_statement_token1] = ACTIONS(5869), + [sym_stop_statement] = ACTIONS(5869), + [sym_beep_statement] = ACTIONS(5869), + [aux_sym_unload_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token2] = ACTIONS(5869), + [aux_sym_def_type_statement_token3] = ACTIONS(5869), + [aux_sym_def_type_statement_token4] = ACTIONS(5869), + [aux_sym_def_type_statement_token5] = ACTIONS(5869), + [aux_sym_def_type_statement_token6] = ACTIONS(5869), + [aux_sym_def_type_statement_token7] = ACTIONS(5869), + [aux_sym_def_type_statement_token8] = ACTIONS(5869), + [aux_sym_def_type_statement_token9] = ACTIONS(5869), + [aux_sym_def_type_statement_token10] = ACTIONS(5869), + [aux_sym_def_type_statement_token11] = ACTIONS(5869), + [aux_sym_def_type_statement_token12] = ACTIONS(5869), + [aux_sym_def_type_statement_token13] = ACTIONS(5869), + [aux_sym_def_type_statement_token14] = ACTIONS(5869), + [aux_sym_call_statement_token1] = ACTIONS(5869), + [sym__ambiguous_call_statement] = ACTIONS(5869), + [aux_sym_addressof_expression_token1] = ACTIONS(5869), + [aux_sym_type_of_expression_token1] = ACTIONS(5869), + [aux_sym_unary_expression_token1] = ACTIONS(5869), + [sym_string_literal] = ACTIONS(5871), + [sym_number_literal] = ACTIONS(5871), + [aux_sym_boolean_literal_token1] = ACTIONS(5869), + [aux_sym_boolean_literal_token2] = ACTIONS(5869), + [sym_nothing_literal] = ACTIONS(5869), + [sym_null_literal] = ACTIONS(5869), + [sym_empty_literal] = ACTIONS(5869), + [sym_date_literal] = ACTIONS(5871), + [anon_sym_POUND] = ACTIONS(5869), + }, + [STATE(4878)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4898), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(10255), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_while_statement_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(4879)] = { + [sym_char_position] = STATE(577), + [aux_sym_output_list_repeat1] = STATE(4748), + [sym_identifier] = ACTIONS(7631), + [sym_newline] = ACTIONS(7633), + [anon_sym_COLON] = ACTIONS(7633), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7631), + [aux_sym_frm_property_statement_token1] = ACTIONS(7631), + [anon_sym_DOT] = ACTIONS(7631), + [anon_sym_BANG] = ACTIONS(7633), + [aux_sym__attribute_identifier_token1] = ACTIONS(7631), + [aux_sym_option_statement_token3] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7631), + [aux_sym_preprocessor_const_token1] = ACTIONS(7631), + [sym_static_modifier] = ACTIONS(7631), + [sym__dim_keyword] = ACTIONS(7631), + [sym__redim_keyword] = ACTIONS(7631), + [aux_sym_get_accessor_token1] = ACTIONS(7631), + [aux_sym_set_accessor_token1] = ACTIONS(7631), + [anon_sym_COMMA] = ACTIONS(10192), + [aux_sym_const_declaration_token1] = ACTIONS(7631), + [anon_sym_LPAREN] = ACTIONS(7633), + [aux_sym_as_type_clause_token2] = ACTIONS(7631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7631), + [aux_sym_visibility_token1] = ACTIONS(7631), + [aux_sym_visibility_token2] = ACTIONS(7631), + [aux_sym_elseif_fragment_token1] = ACTIONS(7631), + [aux_sym_else_fragment_token1] = ACTIONS(7631), + [aux_sym_select_statement_token1] = ACTIONS(7631), + [aux_sym__for_header_token1] = ACTIONS(7631), + [aux_sym_do_statement_token1] = ACTIONS(7631), + [aux_sym_do_statement_token2] = ACTIONS(7631), + [aux_sym_do_condition_token1] = ACTIONS(7631), + [aux_sym_with_statement_token1] = ACTIONS(7631), + [aux_sym_exit_statement_token1] = ACTIONS(7631), + [sym_end_statement] = ACTIONS(7633), + [aux_sym_on_goto_statement_token1] = ACTIONS(7631), + [aux_sym_on_goto_statement_token2] = ACTIONS(7631), + [aux_sym_on_error_statement_token2] = ACTIONS(7631), + [sym__ambiguous_redim_statement] = ACTIONS(7633), + [aux_sym_erase_statement_token1] = ACTIONS(7631), + [aux_sym_open_statement_token1] = ACTIONS(7631), + [aux_sym_file_mode_token2] = ACTIONS(7631), + [aux_sym_file_access_token2] = ACTIONS(7631), + [aux_sym_file_lock_token2] = ACTIONS(7631), + [aux_sym_print_statement_token1] = ACTIONS(7631), + [anon_sym_PLUS] = ACTIONS(7633), + [anon_sym_DASH] = ACTIONS(7631), + [anon_sym_SEMI] = ACTIONS(10192), + [anon_sym_QMARK] = ACTIONS(7633), + [aux_sym_close_statement_token1] = ACTIONS(7631), + [aux_sym_put_statement_token1] = ACTIONS(7631), + [aux_sym_unlock_statement_token1] = ACTIONS(7631), + [aux_sym_seek_statement_token1] = ACTIONS(7631), + [sym_reset_statement] = ACTIONS(7631), + [aux_sym_raise_event_statement_token1] = ACTIONS(7631), + [sym_stop_statement] = ACTIONS(7631), + [sym_beep_statement] = ACTIONS(7631), + [aux_sym_unload_statement_token1] = ACTIONS(7631), + [aux_sym_def_type_statement_token1] = ACTIONS(7631), + [aux_sym_def_type_statement_token2] = ACTIONS(7631), + [aux_sym_def_type_statement_token3] = ACTIONS(7631), + [aux_sym_def_type_statement_token4] = ACTIONS(7631), + [aux_sym_def_type_statement_token5] = ACTIONS(7631), + [aux_sym_def_type_statement_token6] = ACTIONS(7631), + [aux_sym_def_type_statement_token7] = ACTIONS(7631), + [aux_sym_def_type_statement_token8] = ACTIONS(7631), + [aux_sym_def_type_statement_token9] = ACTIONS(7631), + [aux_sym_def_type_statement_token10] = ACTIONS(7631), + [aux_sym_def_type_statement_token11] = ACTIONS(7631), + [aux_sym_def_type_statement_token12] = ACTIONS(7631), + [aux_sym_def_type_statement_token13] = ACTIONS(7631), + [aux_sym_def_type_statement_token14] = ACTIONS(7631), + [aux_sym_call_statement_token1] = ACTIONS(7631), + [sym__ambiguous_call_statement] = ACTIONS(7631), + [aux_sym_addressof_expression_token1] = ACTIONS(7631), + [aux_sym_type_of_expression_token1] = ACTIONS(7631), + [aux_sym_unary_expression_token1] = ACTIONS(7631), + [sym_string_literal] = ACTIONS(7633), + [sym_number_literal] = ACTIONS(7633), + [aux_sym_boolean_literal_token1] = ACTIONS(7631), + [aux_sym_boolean_literal_token2] = ACTIONS(7631), + [sym_nothing_literal] = ACTIONS(7631), + [sym_null_literal] = ACTIONS(7631), + [sym_empty_literal] = ACTIONS(7631), + [sym_date_literal] = ACTIONS(7633), + [anon_sym_POUND] = ACTIONS(7631), + }, + [STATE(4880)] = { + [sym_identifier] = ACTIONS(7640), + [sym_newline] = ACTIONS(7642), + [anon_sym_COLON] = ACTIONS(7642), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7640), + [aux_sym_frm_property_statement_token1] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7640), + [anon_sym_BANG] = ACTIONS(7642), + [aux_sym__attribute_identifier_token1] = ACTIONS(7640), + [aux_sym_option_statement_token3] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7640), + [aux_sym_preprocessor_const_token1] = ACTIONS(7640), + [sym_static_modifier] = ACTIONS(7640), + [sym__dim_keyword] = ACTIONS(7640), + [sym__redim_keyword] = ACTIONS(7640), + [aux_sym_get_accessor_token1] = ACTIONS(7640), + [aux_sym_set_accessor_token1] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7642), + [aux_sym_const_declaration_token1] = ACTIONS(7640), + [anon_sym_LPAREN] = ACTIONS(7642), + [aux_sym_as_type_clause_token2] = ACTIONS(7640), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7640), + [aux_sym_visibility_token1] = ACTIONS(7640), + [aux_sym_visibility_token2] = ACTIONS(7640), + [aux_sym_elseif_fragment_token1] = ACTIONS(7640), + [aux_sym_else_fragment_token1] = ACTIONS(7640), + [aux_sym_select_statement_token1] = ACTIONS(7640), + [aux_sym__for_header_token1] = ACTIONS(7640), + [aux_sym_do_statement_token1] = ACTIONS(7640), + [aux_sym_do_statement_token2] = ACTIONS(7640), + [aux_sym_do_condition_token1] = ACTIONS(7640), + [aux_sym_with_statement_token1] = ACTIONS(7640), + [aux_sym_exit_statement_token1] = ACTIONS(7640), + [sym_end_statement] = ACTIONS(7642), + [aux_sym_on_goto_statement_token1] = ACTIONS(7640), + [aux_sym_on_goto_statement_token2] = ACTIONS(7640), + [aux_sym_on_error_statement_token2] = ACTIONS(7640), + [sym__ambiguous_redim_statement] = ACTIONS(7642), + [aux_sym_erase_statement_token1] = ACTIONS(7640), + [aux_sym_open_statement_token1] = ACTIONS(7640), + [aux_sym_file_mode_token2] = ACTIONS(7640), + [aux_sym_file_access_token2] = ACTIONS(7640), + [aux_sym_file_lock_token2] = ACTIONS(7640), + [aux_sym_print_statement_token1] = ACTIONS(7640), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_DASH] = ACTIONS(7640), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10144), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10146), + [anon_sym_SEMI] = ACTIONS(7642), + [anon_sym_QMARK] = ACTIONS(7642), + [aux_sym_close_statement_token1] = ACTIONS(7640), + [aux_sym_put_statement_token1] = ACTIONS(7640), + [aux_sym_unlock_statement_token1] = ACTIONS(7640), + [aux_sym_seek_statement_token1] = ACTIONS(7640), + [sym_reset_statement] = ACTIONS(7640), + [aux_sym_raise_event_statement_token1] = ACTIONS(7640), + [sym_stop_statement] = ACTIONS(7640), + [sym_beep_statement] = ACTIONS(7640), + [aux_sym_unload_statement_token1] = ACTIONS(7640), + [aux_sym_def_type_statement_token1] = ACTIONS(7640), + [aux_sym_def_type_statement_token2] = ACTIONS(7640), + [aux_sym_def_type_statement_token3] = ACTIONS(7640), + [aux_sym_def_type_statement_token4] = ACTIONS(7640), + [aux_sym_def_type_statement_token5] = ACTIONS(7640), + [aux_sym_def_type_statement_token6] = ACTIONS(7640), + [aux_sym_def_type_statement_token7] = ACTIONS(7640), + [aux_sym_def_type_statement_token8] = ACTIONS(7640), + [aux_sym_def_type_statement_token9] = ACTIONS(7640), + [aux_sym_def_type_statement_token10] = ACTIONS(7640), + [aux_sym_def_type_statement_token11] = ACTIONS(7640), + [aux_sym_def_type_statement_token12] = ACTIONS(7640), + [aux_sym_def_type_statement_token13] = ACTIONS(7640), + [aux_sym_def_type_statement_token14] = ACTIONS(7640), + [aux_sym_call_statement_token1] = ACTIONS(7640), + [sym__ambiguous_call_statement] = ACTIONS(7640), + [aux_sym_addressof_expression_token1] = ACTIONS(7640), + [aux_sym_type_of_expression_token1] = ACTIONS(7640), + [aux_sym_unary_expression_token1] = ACTIONS(7640), + [sym_string_literal] = ACTIONS(7642), + [sym_number_literal] = ACTIONS(7642), + [aux_sym_boolean_literal_token1] = ACTIONS(7640), + [aux_sym_boolean_literal_token2] = ACTIONS(7640), + [sym_nothing_literal] = ACTIONS(7640), + [sym_null_literal] = ACTIONS(7640), + [sym_empty_literal] = ACTIONS(7640), + [sym_date_literal] = ACTIONS(7642), + [anon_sym_POUND] = ACTIONS(7640), + }, + [STATE(4881)] = { + [sym_identifier] = ACTIONS(7647), + [sym_newline] = ACTIONS(7649), + [anon_sym_COLON] = ACTIONS(7649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7647), + [aux_sym_frm_property_statement_token1] = ACTIONS(7647), + [anon_sym_DOT] = ACTIONS(7647), + [anon_sym_BANG] = ACTIONS(7649), + [aux_sym__attribute_identifier_token1] = ACTIONS(7647), + [aux_sym_option_statement_token3] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7647), + [aux_sym_preprocessor_const_token1] = ACTIONS(7647), + [sym_static_modifier] = ACTIONS(7647), + [sym__dim_keyword] = ACTIONS(7647), + [sym__redim_keyword] = ACTIONS(7647), + [aux_sym_get_accessor_token1] = ACTIONS(7647), + [aux_sym_set_accessor_token1] = ACTIONS(7647), + [anon_sym_COMMA] = ACTIONS(7649), + [aux_sym_const_declaration_token1] = ACTIONS(7647), + [anon_sym_LPAREN] = ACTIONS(7649), + [aux_sym_as_type_clause_token2] = ACTIONS(7647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7647), + [aux_sym_visibility_token1] = ACTIONS(7647), + [aux_sym_visibility_token2] = ACTIONS(7647), + [aux_sym_elseif_fragment_token1] = ACTIONS(7647), + [aux_sym_else_fragment_token1] = ACTIONS(7647), + [aux_sym_select_statement_token1] = ACTIONS(7647), + [aux_sym__for_header_token1] = ACTIONS(7647), + [aux_sym_do_statement_token1] = ACTIONS(7647), + [aux_sym_do_statement_token2] = ACTIONS(7647), + [aux_sym_do_condition_token1] = ACTIONS(7647), + [aux_sym_with_statement_token1] = ACTIONS(7647), + [aux_sym_exit_statement_token1] = ACTIONS(7647), + [sym_end_statement] = ACTIONS(7649), + [aux_sym_on_goto_statement_token1] = ACTIONS(7647), + [aux_sym_on_goto_statement_token2] = ACTIONS(7647), + [aux_sym_on_error_statement_token2] = ACTIONS(7647), + [sym__ambiguous_redim_statement] = ACTIONS(7649), + [aux_sym_erase_statement_token1] = ACTIONS(7647), + [aux_sym_open_statement_token1] = ACTIONS(7647), + [aux_sym_file_mode_token2] = ACTIONS(7647), + [aux_sym_file_access_token2] = ACTIONS(7647), + [aux_sym_file_lock_token2] = ACTIONS(7647), + [aux_sym_print_statement_token1] = ACTIONS(7647), + [anon_sym_PLUS] = ACTIONS(7649), + [anon_sym_DASH] = ACTIONS(7647), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10144), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10146), + [anon_sym_SEMI] = ACTIONS(7649), + [anon_sym_QMARK] = ACTIONS(7649), + [aux_sym_close_statement_token1] = ACTIONS(7647), + [aux_sym_put_statement_token1] = ACTIONS(7647), + [aux_sym_unlock_statement_token1] = ACTIONS(7647), + [aux_sym_seek_statement_token1] = ACTIONS(7647), + [sym_reset_statement] = ACTIONS(7647), + [aux_sym_raise_event_statement_token1] = ACTIONS(7647), + [sym_stop_statement] = ACTIONS(7647), + [sym_beep_statement] = ACTIONS(7647), + [aux_sym_unload_statement_token1] = ACTIONS(7647), + [aux_sym_def_type_statement_token1] = ACTIONS(7647), + [aux_sym_def_type_statement_token2] = ACTIONS(7647), + [aux_sym_def_type_statement_token3] = ACTIONS(7647), + [aux_sym_def_type_statement_token4] = ACTIONS(7647), + [aux_sym_def_type_statement_token5] = ACTIONS(7647), + [aux_sym_def_type_statement_token6] = ACTIONS(7647), + [aux_sym_def_type_statement_token7] = ACTIONS(7647), + [aux_sym_def_type_statement_token8] = ACTIONS(7647), + [aux_sym_def_type_statement_token9] = ACTIONS(7647), + [aux_sym_def_type_statement_token10] = ACTIONS(7647), + [aux_sym_def_type_statement_token11] = ACTIONS(7647), + [aux_sym_def_type_statement_token12] = ACTIONS(7647), + [aux_sym_def_type_statement_token13] = ACTIONS(7647), + [aux_sym_def_type_statement_token14] = ACTIONS(7647), + [aux_sym_call_statement_token1] = ACTIONS(7647), + [sym__ambiguous_call_statement] = ACTIONS(7647), + [aux_sym_addressof_expression_token1] = ACTIONS(7647), + [aux_sym_type_of_expression_token1] = ACTIONS(7647), + [aux_sym_unary_expression_token1] = ACTIONS(7647), + [sym_string_literal] = ACTIONS(7649), + [sym_number_literal] = ACTIONS(7649), + [aux_sym_boolean_literal_token1] = ACTIONS(7647), + [aux_sym_boolean_literal_token2] = ACTIONS(7647), + [sym_nothing_literal] = ACTIONS(7647), + [sym_null_literal] = ACTIONS(7647), + [sym_empty_literal] = ACTIONS(7647), + [sym_date_literal] = ACTIONS(7649), + [anon_sym_POUND] = ACTIONS(7647), + }, + [STATE(4882)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4882), + [sym_identifier] = ACTIONS(8287), + [sym_newline] = ACTIONS(8289), + [anon_sym_COLON] = ACTIONS(8289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8287), + [aux_sym_frm_property_statement_token1] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8287), + [anon_sym_BANG] = ACTIONS(8289), + [aux_sym__attribute_identifier_token1] = ACTIONS(8287), + [aux_sym_option_statement_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8287), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8287), + [aux_sym_preprocessor_const_token1] = ACTIONS(8287), + [sym_static_modifier] = ACTIONS(8287), + [sym__dim_keyword] = ACTIONS(8287), + [sym__redim_keyword] = ACTIONS(8287), + [aux_sym_get_accessor_token1] = ACTIONS(8287), + [aux_sym_set_accessor_token1] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(10257), + [aux_sym_const_declaration_token1] = ACTIONS(8287), + [anon_sym_LPAREN] = ACTIONS(8289), + [aux_sym_as_type_clause_token2] = ACTIONS(8287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8287), + [aux_sym_visibility_token1] = ACTIONS(8287), + [aux_sym_visibility_token2] = ACTIONS(8287), + [aux_sym_elseif_fragment_token1] = ACTIONS(8287), + [aux_sym_else_fragment_token1] = ACTIONS(8287), + [aux_sym_select_statement_token1] = ACTIONS(8287), + [aux_sym__for_header_token1] = ACTIONS(8287), + [aux_sym_do_statement_token1] = ACTIONS(8287), + [aux_sym_do_condition_token1] = ACTIONS(8287), + [aux_sym_with_statement_token1] = ACTIONS(8287), + [aux_sym_exit_statement_token1] = ACTIONS(8287), + [sym_end_statement] = ACTIONS(8289), + [aux_sym_on_goto_statement_token1] = ACTIONS(8287), + [aux_sym_on_goto_statement_token2] = ACTIONS(8287), + [aux_sym_on_error_statement_token2] = ACTIONS(8287), + [sym__ambiguous_redim_statement] = ACTIONS(8289), + [aux_sym_erase_statement_token1] = ACTIONS(8287), + [aux_sym_open_statement_token1] = ACTIONS(8287), + [aux_sym_file_mode_token2] = ACTIONS(8287), + [aux_sym_file_access_token2] = ACTIONS(8287), + [aux_sym_file_lock_token2] = ACTIONS(8287), + [aux_sym_print_statement_token1] = ACTIONS(8287), + [anon_sym_PLUS] = ACTIONS(8289), + [anon_sym_DASH] = ACTIONS(8287), + [anon_sym_QMARK] = ACTIONS(8289), + [aux_sym_close_statement_token1] = ACTIONS(8287), + [aux_sym_put_statement_token1] = ACTIONS(8287), + [aux_sym_unlock_statement_token1] = ACTIONS(8287), + [aux_sym_seek_statement_token1] = ACTIONS(8287), + [sym_reset_statement] = ACTIONS(8287), + [aux_sym_raise_event_statement_token1] = ACTIONS(8287), + [sym_stop_statement] = ACTIONS(8287), + [sym_beep_statement] = ACTIONS(8287), + [aux_sym_unload_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token2] = ACTIONS(8287), + [aux_sym_def_type_statement_token3] = ACTIONS(8287), + [aux_sym_def_type_statement_token4] = ACTIONS(8287), + [aux_sym_def_type_statement_token5] = ACTIONS(8287), + [aux_sym_def_type_statement_token6] = ACTIONS(8287), + [aux_sym_def_type_statement_token7] = ACTIONS(8287), + [aux_sym_def_type_statement_token8] = ACTIONS(8287), + [aux_sym_def_type_statement_token9] = ACTIONS(8287), + [aux_sym_def_type_statement_token10] = ACTIONS(8287), + [aux_sym_def_type_statement_token11] = ACTIONS(8287), + [aux_sym_def_type_statement_token12] = ACTIONS(8287), + [aux_sym_def_type_statement_token13] = ACTIONS(8287), + [aux_sym_def_type_statement_token14] = ACTIONS(8287), + [aux_sym_call_statement_token1] = ACTIONS(8287), + [sym__ambiguous_call_statement] = ACTIONS(8287), + [aux_sym_addressof_expression_token1] = ACTIONS(8287), + [aux_sym_type_of_expression_token1] = ACTIONS(8287), + [aux_sym_unary_expression_token1] = ACTIONS(8287), + [sym_string_literal] = ACTIONS(8289), + [sym_number_literal] = ACTIONS(8289), + [aux_sym_boolean_literal_token1] = ACTIONS(8287), + [aux_sym_boolean_literal_token2] = ACTIONS(8287), + [sym_nothing_literal] = ACTIONS(8287), + [sym_null_literal] = ACTIONS(8287), + [sym_empty_literal] = ACTIONS(8287), + [sym_date_literal] = ACTIONS(8289), + [anon_sym_POUND] = ACTIONS(8287), + }, + [STATE(4883)] = { + [aux_sym_const_declaration_repeat1] = STATE(4883), + [sym_identifier] = ACTIONS(8350), + [sym_newline] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8350), + [aux_sym_frm_property_statement_token1] = ACTIONS(8350), + [anon_sym_DOT] = ACTIONS(8350), + [anon_sym_BANG] = ACTIONS(8352), + [aux_sym__attribute_identifier_token1] = ACTIONS(8350), + [aux_sym_option_statement_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8350), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8350), + [aux_sym_preprocessor_const_token1] = ACTIONS(8350), + [sym_static_modifier] = ACTIONS(8350), + [sym__dim_keyword] = ACTIONS(8350), + [sym__redim_keyword] = ACTIONS(8350), + [aux_sym_get_accessor_token1] = ACTIONS(8350), + [aux_sym_set_accessor_token1] = ACTIONS(8350), + [anon_sym_COMMA] = ACTIONS(10260), + [aux_sym_const_declaration_token1] = ACTIONS(8350), + [anon_sym_LPAREN] = ACTIONS(8352), + [aux_sym_as_type_clause_token2] = ACTIONS(8350), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8350), + [aux_sym_visibility_token1] = ACTIONS(8350), + [aux_sym_visibility_token2] = ACTIONS(8350), + [aux_sym_elseif_fragment_token1] = ACTIONS(8350), + [aux_sym_else_fragment_token1] = ACTIONS(8350), + [aux_sym_select_statement_token1] = ACTIONS(8350), + [aux_sym__for_header_token1] = ACTIONS(8350), + [aux_sym_do_statement_token1] = ACTIONS(8350), + [aux_sym_do_condition_token1] = ACTIONS(8350), + [aux_sym_with_statement_token1] = ACTIONS(8350), + [aux_sym_exit_statement_token1] = ACTIONS(8350), + [sym_end_statement] = ACTIONS(8352), + [aux_sym_on_goto_statement_token1] = ACTIONS(8350), + [aux_sym_on_goto_statement_token2] = ACTIONS(8350), + [aux_sym_on_error_statement_token2] = ACTIONS(8350), + [sym__ambiguous_redim_statement] = ACTIONS(8352), + [aux_sym_erase_statement_token1] = ACTIONS(8350), + [aux_sym_open_statement_token1] = ACTIONS(8350), + [aux_sym_file_mode_token2] = ACTIONS(8350), + [aux_sym_file_access_token2] = ACTIONS(8350), + [aux_sym_file_lock_token2] = ACTIONS(8350), + [aux_sym_print_statement_token1] = ACTIONS(8350), + [anon_sym_PLUS] = ACTIONS(8352), + [anon_sym_DASH] = ACTIONS(8350), + [anon_sym_QMARK] = ACTIONS(8352), + [aux_sym_close_statement_token1] = ACTIONS(8350), + [aux_sym_put_statement_token1] = ACTIONS(8350), + [aux_sym_unlock_statement_token1] = ACTIONS(8350), + [aux_sym_seek_statement_token1] = ACTIONS(8350), + [sym_reset_statement] = ACTIONS(8350), + [aux_sym_raise_event_statement_token1] = ACTIONS(8350), + [sym_stop_statement] = ACTIONS(8350), + [sym_beep_statement] = ACTIONS(8350), + [aux_sym_unload_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token2] = ACTIONS(8350), + [aux_sym_def_type_statement_token3] = ACTIONS(8350), + [aux_sym_def_type_statement_token4] = ACTIONS(8350), + [aux_sym_def_type_statement_token5] = ACTIONS(8350), + [aux_sym_def_type_statement_token6] = ACTIONS(8350), + [aux_sym_def_type_statement_token7] = ACTIONS(8350), + [aux_sym_def_type_statement_token8] = ACTIONS(8350), + [aux_sym_def_type_statement_token9] = ACTIONS(8350), + [aux_sym_def_type_statement_token10] = ACTIONS(8350), + [aux_sym_def_type_statement_token11] = ACTIONS(8350), + [aux_sym_def_type_statement_token12] = ACTIONS(8350), + [aux_sym_def_type_statement_token13] = ACTIONS(8350), + [aux_sym_def_type_statement_token14] = ACTIONS(8350), + [aux_sym_call_statement_token1] = ACTIONS(8350), + [sym__ambiguous_call_statement] = ACTIONS(8350), + [aux_sym_addressof_expression_token1] = ACTIONS(8350), + [aux_sym_type_of_expression_token1] = ACTIONS(8350), + [aux_sym_unary_expression_token1] = ACTIONS(8350), + [sym_string_literal] = ACTIONS(8352), + [sym_number_literal] = ACTIONS(8352), + [aux_sym_boolean_literal_token1] = ACTIONS(8350), + [aux_sym_boolean_literal_token2] = ACTIONS(8350), + [sym_nothing_literal] = ACTIONS(8350), + [sym_null_literal] = ACTIONS(8350), + [sym_empty_literal] = ACTIONS(8350), + [sym_date_literal] = ACTIONS(8352), + [anon_sym_POUND] = ACTIONS(8350), + }, + [STATE(4884)] = { + [sym_argument_list] = STATE(5035), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(10263), + [anon_sym_BANG] = ACTIONS(10265), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10219), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(4885)] = { + [sym_char_position] = STATE(587), + [aux_sym_output_list_repeat1] = STATE(4712), + [sym_identifier] = ACTIONS(7631), + [sym_newline] = ACTIONS(7633), + [anon_sym_COLON] = ACTIONS(7633), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7631), + [aux_sym_frm_property_statement_token1] = ACTIONS(7631), + [anon_sym_DOT] = ACTIONS(7631), + [anon_sym_BANG] = ACTIONS(7633), + [aux_sym__attribute_identifier_token1] = ACTIONS(7631), + [aux_sym_option_statement_token3] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7631), + [aux_sym_preprocessor_const_token1] = ACTIONS(7631), + [sym_static_modifier] = ACTIONS(7631), + [sym__dim_keyword] = ACTIONS(7631), + [sym__redim_keyword] = ACTIONS(7631), + [aux_sym_get_accessor_token1] = ACTIONS(7631), + [aux_sym_set_accessor_token1] = ACTIONS(7631), + [anon_sym_COMMA] = ACTIONS(10155), + [aux_sym_const_declaration_token1] = ACTIONS(7631), + [anon_sym_LPAREN] = ACTIONS(7633), + [aux_sym_as_type_clause_token2] = ACTIONS(7631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7631), + [aux_sym_visibility_token1] = ACTIONS(7631), + [aux_sym_visibility_token2] = ACTIONS(7631), + [aux_sym_elseif_fragment_token1] = ACTIONS(7631), + [aux_sym_else_fragment_token1] = ACTIONS(7631), + [aux_sym_select_statement_token1] = ACTIONS(7631), + [aux_sym_select_statement_token2] = ACTIONS(7631), + [aux_sym__for_header_token1] = ACTIONS(7631), + [aux_sym_do_statement_token1] = ACTIONS(7631), + [aux_sym_do_condition_token1] = ACTIONS(7631), + [aux_sym_with_statement_token1] = ACTIONS(7631), + [aux_sym_exit_statement_token1] = ACTIONS(7631), + [sym_end_statement] = ACTIONS(7633), + [aux_sym_on_goto_statement_token1] = ACTIONS(7631), + [aux_sym_on_goto_statement_token2] = ACTIONS(7631), + [aux_sym_on_error_statement_token2] = ACTIONS(7631), + [sym__ambiguous_redim_statement] = ACTIONS(7633), + [aux_sym_erase_statement_token1] = ACTIONS(7631), + [aux_sym_open_statement_token1] = ACTIONS(7631), + [aux_sym_file_mode_token2] = ACTIONS(7631), + [aux_sym_file_access_token2] = ACTIONS(7631), + [aux_sym_file_lock_token2] = ACTIONS(7631), + [aux_sym_print_statement_token1] = ACTIONS(7631), + [anon_sym_PLUS] = ACTIONS(7633), + [anon_sym_DASH] = ACTIONS(7631), + [anon_sym_SEMI] = ACTIONS(10155), + [anon_sym_QMARK] = ACTIONS(7633), + [aux_sym_close_statement_token1] = ACTIONS(7631), + [aux_sym_put_statement_token1] = ACTIONS(7631), + [aux_sym_unlock_statement_token1] = ACTIONS(7631), + [aux_sym_seek_statement_token1] = ACTIONS(7631), + [sym_reset_statement] = ACTIONS(7631), + [aux_sym_raise_event_statement_token1] = ACTIONS(7631), + [sym_stop_statement] = ACTIONS(7631), + [sym_beep_statement] = ACTIONS(7631), + [aux_sym_unload_statement_token1] = ACTIONS(7631), + [aux_sym_def_type_statement_token1] = ACTIONS(7631), + [aux_sym_def_type_statement_token2] = ACTIONS(7631), + [aux_sym_def_type_statement_token3] = ACTIONS(7631), + [aux_sym_def_type_statement_token4] = ACTIONS(7631), + [aux_sym_def_type_statement_token5] = ACTIONS(7631), + [aux_sym_def_type_statement_token6] = ACTIONS(7631), + [aux_sym_def_type_statement_token7] = ACTIONS(7631), + [aux_sym_def_type_statement_token8] = ACTIONS(7631), + [aux_sym_def_type_statement_token9] = ACTIONS(7631), + [aux_sym_def_type_statement_token10] = ACTIONS(7631), + [aux_sym_def_type_statement_token11] = ACTIONS(7631), + [aux_sym_def_type_statement_token12] = ACTIONS(7631), + [aux_sym_def_type_statement_token13] = ACTIONS(7631), + [aux_sym_def_type_statement_token14] = ACTIONS(7631), + [aux_sym_call_statement_token1] = ACTIONS(7631), + [sym__ambiguous_call_statement] = ACTIONS(7631), + [aux_sym_addressof_expression_token1] = ACTIONS(7631), + [aux_sym_type_of_expression_token1] = ACTIONS(7631), + [aux_sym_unary_expression_token1] = ACTIONS(7631), + [sym_string_literal] = ACTIONS(7633), + [sym_number_literal] = ACTIONS(7633), + [aux_sym_boolean_literal_token1] = ACTIONS(7631), + [aux_sym_boolean_literal_token2] = ACTIONS(7631), + [sym_nothing_literal] = ACTIONS(7631), + [sym_null_literal] = ACTIONS(7631), + [sym_empty_literal] = ACTIONS(7631), + [sym_date_literal] = ACTIONS(7633), + [anon_sym_POUND] = ACTIONS(7631), + }, + [STATE(4886)] = { + [sym_identifier] = ACTIONS(7640), + [sym_newline] = ACTIONS(7642), + [anon_sym_COLON] = ACTIONS(7642), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7640), + [aux_sym_frm_property_statement_token1] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7640), + [anon_sym_BANG] = ACTIONS(7642), + [aux_sym__attribute_identifier_token1] = ACTIONS(7640), + [aux_sym_option_statement_token3] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7640), + [aux_sym_preprocessor_const_token1] = ACTIONS(7640), + [sym_static_modifier] = ACTIONS(7640), + [sym__dim_keyword] = ACTIONS(7640), + [sym__redim_keyword] = ACTIONS(7640), + [aux_sym_get_accessor_token1] = ACTIONS(7640), + [aux_sym_set_accessor_token1] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7642), + [aux_sym_const_declaration_token1] = ACTIONS(7640), + [anon_sym_LPAREN] = ACTIONS(7642), + [aux_sym_as_type_clause_token2] = ACTIONS(7640), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7640), + [aux_sym_visibility_token1] = ACTIONS(7640), + [aux_sym_visibility_token2] = ACTIONS(7640), + [aux_sym_elseif_fragment_token1] = ACTIONS(7640), + [aux_sym_else_fragment_token1] = ACTIONS(7640), + [aux_sym_select_statement_token1] = ACTIONS(7640), + [aux_sym_select_statement_token2] = ACTIONS(7640), + [aux_sym__for_header_token1] = ACTIONS(7640), + [aux_sym_do_statement_token1] = ACTIONS(7640), + [aux_sym_do_condition_token1] = ACTIONS(7640), + [aux_sym_with_statement_token1] = ACTIONS(7640), + [aux_sym_exit_statement_token1] = ACTIONS(7640), + [sym_end_statement] = ACTIONS(7642), + [aux_sym_on_goto_statement_token1] = ACTIONS(7640), + [aux_sym_on_goto_statement_token2] = ACTIONS(7640), + [aux_sym_on_error_statement_token2] = ACTIONS(7640), + [sym__ambiguous_redim_statement] = ACTIONS(7642), + [aux_sym_erase_statement_token1] = ACTIONS(7640), + [aux_sym_open_statement_token1] = ACTIONS(7640), + [aux_sym_file_mode_token2] = ACTIONS(7640), + [aux_sym_file_access_token2] = ACTIONS(7640), + [aux_sym_file_lock_token2] = ACTIONS(7640), + [aux_sym_print_statement_token1] = ACTIONS(7640), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_DASH] = ACTIONS(7640), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10130), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10132), + [anon_sym_SEMI] = ACTIONS(7642), + [anon_sym_QMARK] = ACTIONS(7642), + [aux_sym_close_statement_token1] = ACTIONS(7640), + [aux_sym_put_statement_token1] = ACTIONS(7640), + [aux_sym_unlock_statement_token1] = ACTIONS(7640), + [aux_sym_seek_statement_token1] = ACTIONS(7640), + [sym_reset_statement] = ACTIONS(7640), + [aux_sym_raise_event_statement_token1] = ACTIONS(7640), + [sym_stop_statement] = ACTIONS(7640), + [sym_beep_statement] = ACTIONS(7640), + [aux_sym_unload_statement_token1] = ACTIONS(7640), + [aux_sym_def_type_statement_token1] = ACTIONS(7640), + [aux_sym_def_type_statement_token2] = ACTIONS(7640), + [aux_sym_def_type_statement_token3] = ACTIONS(7640), + [aux_sym_def_type_statement_token4] = ACTIONS(7640), + [aux_sym_def_type_statement_token5] = ACTIONS(7640), + [aux_sym_def_type_statement_token6] = ACTIONS(7640), + [aux_sym_def_type_statement_token7] = ACTIONS(7640), + [aux_sym_def_type_statement_token8] = ACTIONS(7640), + [aux_sym_def_type_statement_token9] = ACTIONS(7640), + [aux_sym_def_type_statement_token10] = ACTIONS(7640), + [aux_sym_def_type_statement_token11] = ACTIONS(7640), + [aux_sym_def_type_statement_token12] = ACTIONS(7640), + [aux_sym_def_type_statement_token13] = ACTIONS(7640), + [aux_sym_def_type_statement_token14] = ACTIONS(7640), + [aux_sym_call_statement_token1] = ACTIONS(7640), + [sym__ambiguous_call_statement] = ACTIONS(7640), + [aux_sym_addressof_expression_token1] = ACTIONS(7640), + [aux_sym_type_of_expression_token1] = ACTIONS(7640), + [aux_sym_unary_expression_token1] = ACTIONS(7640), + [sym_string_literal] = ACTIONS(7642), + [sym_number_literal] = ACTIONS(7642), + [aux_sym_boolean_literal_token1] = ACTIONS(7640), + [aux_sym_boolean_literal_token2] = ACTIONS(7640), + [sym_nothing_literal] = ACTIONS(7640), + [sym_null_literal] = ACTIONS(7640), + [sym_empty_literal] = ACTIONS(7640), + [sym_date_literal] = ACTIONS(7642), + [anon_sym_POUND] = ACTIONS(7640), + }, + [STATE(4887)] = { + [sym_identifier] = ACTIONS(7647), + [sym_newline] = ACTIONS(7649), + [anon_sym_COLON] = ACTIONS(7649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7647), + [aux_sym_frm_property_statement_token1] = ACTIONS(7647), + [anon_sym_DOT] = ACTIONS(7647), + [anon_sym_BANG] = ACTIONS(7649), + [aux_sym__attribute_identifier_token1] = ACTIONS(7647), + [aux_sym_option_statement_token3] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7647), + [aux_sym_preprocessor_const_token1] = ACTIONS(7647), + [sym_static_modifier] = ACTIONS(7647), + [sym__dim_keyword] = ACTIONS(7647), + [sym__redim_keyword] = ACTIONS(7647), + [aux_sym_get_accessor_token1] = ACTIONS(7647), + [aux_sym_set_accessor_token1] = ACTIONS(7647), + [anon_sym_COMMA] = ACTIONS(7649), + [aux_sym_const_declaration_token1] = ACTIONS(7647), + [anon_sym_LPAREN] = ACTIONS(7649), + [aux_sym_as_type_clause_token2] = ACTIONS(7647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7647), + [aux_sym_visibility_token1] = ACTIONS(7647), + [aux_sym_visibility_token2] = ACTIONS(7647), + [aux_sym_elseif_fragment_token1] = ACTIONS(7647), + [aux_sym_else_fragment_token1] = ACTIONS(7647), + [aux_sym_select_statement_token1] = ACTIONS(7647), + [aux_sym_select_statement_token2] = ACTIONS(7647), + [aux_sym__for_header_token1] = ACTIONS(7647), + [aux_sym_do_statement_token1] = ACTIONS(7647), + [aux_sym_do_condition_token1] = ACTIONS(7647), + [aux_sym_with_statement_token1] = ACTIONS(7647), + [aux_sym_exit_statement_token1] = ACTIONS(7647), + [sym_end_statement] = ACTIONS(7649), + [aux_sym_on_goto_statement_token1] = ACTIONS(7647), + [aux_sym_on_goto_statement_token2] = ACTIONS(7647), + [aux_sym_on_error_statement_token2] = ACTIONS(7647), + [sym__ambiguous_redim_statement] = ACTIONS(7649), + [aux_sym_erase_statement_token1] = ACTIONS(7647), + [aux_sym_open_statement_token1] = ACTIONS(7647), + [aux_sym_file_mode_token2] = ACTIONS(7647), + [aux_sym_file_access_token2] = ACTIONS(7647), + [aux_sym_file_lock_token2] = ACTIONS(7647), + [aux_sym_print_statement_token1] = ACTIONS(7647), + [anon_sym_PLUS] = ACTIONS(7649), + [anon_sym_DASH] = ACTIONS(7647), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10130), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10132), + [anon_sym_SEMI] = ACTIONS(7649), + [anon_sym_QMARK] = ACTIONS(7649), + [aux_sym_close_statement_token1] = ACTIONS(7647), + [aux_sym_put_statement_token1] = ACTIONS(7647), + [aux_sym_unlock_statement_token1] = ACTIONS(7647), + [aux_sym_seek_statement_token1] = ACTIONS(7647), + [sym_reset_statement] = ACTIONS(7647), + [aux_sym_raise_event_statement_token1] = ACTIONS(7647), + [sym_stop_statement] = ACTIONS(7647), + [sym_beep_statement] = ACTIONS(7647), + [aux_sym_unload_statement_token1] = ACTIONS(7647), + [aux_sym_def_type_statement_token1] = ACTIONS(7647), + [aux_sym_def_type_statement_token2] = ACTIONS(7647), + [aux_sym_def_type_statement_token3] = ACTIONS(7647), + [aux_sym_def_type_statement_token4] = ACTIONS(7647), + [aux_sym_def_type_statement_token5] = ACTIONS(7647), + [aux_sym_def_type_statement_token6] = ACTIONS(7647), + [aux_sym_def_type_statement_token7] = ACTIONS(7647), + [aux_sym_def_type_statement_token8] = ACTIONS(7647), + [aux_sym_def_type_statement_token9] = ACTIONS(7647), + [aux_sym_def_type_statement_token10] = ACTIONS(7647), + [aux_sym_def_type_statement_token11] = ACTIONS(7647), + [aux_sym_def_type_statement_token12] = ACTIONS(7647), + [aux_sym_def_type_statement_token13] = ACTIONS(7647), + [aux_sym_def_type_statement_token14] = ACTIONS(7647), + [aux_sym_call_statement_token1] = ACTIONS(7647), + [sym__ambiguous_call_statement] = ACTIONS(7647), + [aux_sym_addressof_expression_token1] = ACTIONS(7647), + [aux_sym_type_of_expression_token1] = ACTIONS(7647), + [aux_sym_unary_expression_token1] = ACTIONS(7647), + [sym_string_literal] = ACTIONS(7649), + [sym_number_literal] = ACTIONS(7649), + [aux_sym_boolean_literal_token1] = ACTIONS(7647), + [aux_sym_boolean_literal_token2] = ACTIONS(7647), + [sym_nothing_literal] = ACTIONS(7647), + [sym_null_literal] = ACTIONS(7647), + [sym_empty_literal] = ACTIONS(7647), + [sym_date_literal] = ACTIONS(7649), + [anon_sym_POUND] = ACTIONS(7647), + }, + [STATE(4888)] = { + [sym_fixed_string_length] = STATE(5421), + [sym_array_bounds] = STATE(6047), + [sym_identifier] = ACTIONS(7134), + [sym_newline] = ACTIONS(7136), + [anon_sym_COLON] = ACTIONS(7136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7134), + [aux_sym_frm_property_statement_token1] = ACTIONS(7134), + [anon_sym_EQ] = ACTIONS(7136), + [anon_sym_DOT] = ACTIONS(7134), + [anon_sym_BANG] = ACTIONS(7136), + [aux_sym__attribute_identifier_token1] = ACTIONS(7134), + [aux_sym_option_statement_token3] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7134), + [aux_sym_preprocessor_const_token1] = ACTIONS(7134), + [sym_static_modifier] = ACTIONS(7134), + [sym__dim_keyword] = ACTIONS(7134), + [sym__redim_keyword] = ACTIONS(7134), + [aux_sym_get_accessor_token1] = ACTIONS(7134), + [aux_sym_set_accessor_token1] = ACTIONS(7134), + [anon_sym_COMMA] = ACTIONS(7136), + [aux_sym_const_declaration_token1] = ACTIONS(7134), + [anon_sym_LPAREN] = ACTIONS(10140), + [aux_sym_as_type_clause_token2] = ACTIONS(7134), + [anon_sym_STAR] = ACTIONS(10142), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7134), + [aux_sym_visibility_token1] = ACTIONS(7134), + [aux_sym_visibility_token2] = ACTIONS(7134), + [aux_sym_elseif_fragment_token1] = ACTIONS(7134), + [aux_sym_else_fragment_token1] = ACTIONS(7134), + [aux_sym_select_statement_token1] = ACTIONS(7134), + [aux_sym__for_header_token1] = ACTIONS(7134), + [aux_sym_do_statement_token1] = ACTIONS(7134), + [aux_sym_do_condition_token1] = ACTIONS(7134), + [aux_sym_with_statement_token1] = ACTIONS(7134), + [aux_sym_exit_statement_token1] = ACTIONS(7134), + [sym_end_statement] = ACTIONS(7136), + [aux_sym_on_goto_statement_token1] = ACTIONS(7134), + [aux_sym_on_goto_statement_token2] = ACTIONS(7134), + [aux_sym_on_error_statement_token2] = ACTIONS(7134), + [sym__ambiguous_redim_statement] = ACTIONS(7136), + [aux_sym_erase_statement_token1] = ACTIONS(7134), + [aux_sym_open_statement_token1] = ACTIONS(7134), + [aux_sym_file_mode_token2] = ACTIONS(7134), + [aux_sym_file_access_token2] = ACTIONS(7134), + [aux_sym_file_lock_token2] = ACTIONS(7134), + [aux_sym_print_statement_token1] = ACTIONS(7134), + [anon_sym_PLUS] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7134), + [anon_sym_QMARK] = ACTIONS(7136), + [aux_sym_close_statement_token1] = ACTIONS(7134), + [aux_sym_put_statement_token1] = ACTIONS(7134), + [aux_sym_unlock_statement_token1] = ACTIONS(7134), + [aux_sym_seek_statement_token1] = ACTIONS(7134), + [sym_reset_statement] = ACTIONS(7134), + [aux_sym_raise_event_statement_token1] = ACTIONS(7134), + [sym_stop_statement] = ACTIONS(7134), + [sym_beep_statement] = ACTIONS(7134), + [aux_sym_unload_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token1] = ACTIONS(7134), + [aux_sym_def_type_statement_token2] = ACTIONS(7134), + [aux_sym_def_type_statement_token3] = ACTIONS(7134), + [aux_sym_def_type_statement_token4] = ACTIONS(7134), + [aux_sym_def_type_statement_token5] = ACTIONS(7134), + [aux_sym_def_type_statement_token6] = ACTIONS(7134), + [aux_sym_def_type_statement_token7] = ACTIONS(7134), + [aux_sym_def_type_statement_token8] = ACTIONS(7134), + [aux_sym_def_type_statement_token9] = ACTIONS(7134), + [aux_sym_def_type_statement_token10] = ACTIONS(7134), + [aux_sym_def_type_statement_token11] = ACTIONS(7134), + [aux_sym_def_type_statement_token12] = ACTIONS(7134), + [aux_sym_def_type_statement_token13] = ACTIONS(7134), + [aux_sym_def_type_statement_token14] = ACTIONS(7134), + [aux_sym_call_statement_token1] = ACTIONS(7134), + [sym__ambiguous_call_statement] = ACTIONS(7134), + [aux_sym_addressof_expression_token1] = ACTIONS(7134), + [aux_sym_type_of_expression_token1] = ACTIONS(7134), + [aux_sym_unary_expression_token1] = ACTIONS(7134), + [sym_string_literal] = ACTIONS(7136), + [sym_number_literal] = ACTIONS(7136), + [aux_sym_boolean_literal_token1] = ACTIONS(7134), + [aux_sym_boolean_literal_token2] = ACTIONS(7134), + [sym_nothing_literal] = ACTIONS(7134), + [sym_null_literal] = ACTIONS(7134), + [sym_empty_literal] = ACTIONS(7134), + [sym_date_literal] = ACTIONS(7136), + [anon_sym_POUND] = ACTIONS(7134), + }, + [STATE(4889)] = { + [aux_sym__argument_sequence_repeat1] = STATE(5806), + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(5807), + [sym_identifier] = ACTIONS(7651), + [sym_newline] = ACTIONS(7653), + [anon_sym_COLON] = ACTIONS(7653), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7651), + [aux_sym_frm_property_statement_token1] = ACTIONS(7651), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_BANG] = ACTIONS(7653), + [aux_sym__attribute_identifier_token1] = ACTIONS(7651), + [aux_sym_option_statement_token3] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7651), + [aux_sym_preprocessor_const_token1] = ACTIONS(7651), + [sym_static_modifier] = ACTIONS(7651), + [sym__dim_keyword] = ACTIONS(7651), + [sym__redim_keyword] = ACTIONS(7651), + [aux_sym_get_accessor_token1] = ACTIONS(7651), + [aux_sym_set_accessor_token1] = ACTIONS(7651), + [anon_sym_COMMA] = ACTIONS(10267), + [aux_sym_const_declaration_token1] = ACTIONS(7651), + [anon_sym_LPAREN] = ACTIONS(7653), + [aux_sym_as_type_clause_token2] = ACTIONS(7651), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7651), + [aux_sym_visibility_token1] = ACTIONS(7651), + [aux_sym_visibility_token2] = ACTIONS(7651), + [aux_sym_elseif_fragment_token1] = ACTIONS(7651), + [aux_sym_else_fragment_token1] = ACTIONS(7651), + [aux_sym_select_statement_token1] = ACTIONS(7651), + [aux_sym_select_statement_token2] = ACTIONS(7651), + [aux_sym__for_header_token1] = ACTIONS(7651), + [aux_sym_do_statement_token1] = ACTIONS(7651), + [aux_sym_do_condition_token1] = ACTIONS(7651), + [aux_sym_with_statement_token1] = ACTIONS(7651), + [aux_sym_exit_statement_token1] = ACTIONS(7651), + [sym_end_statement] = ACTIONS(7653), + [aux_sym_on_goto_statement_token1] = ACTIONS(7651), + [aux_sym_on_goto_statement_token2] = ACTIONS(7651), + [aux_sym_on_error_statement_token2] = ACTIONS(7651), + [sym__ambiguous_redim_statement] = ACTIONS(7653), + [aux_sym_erase_statement_token1] = ACTIONS(7651), + [aux_sym_open_statement_token1] = ACTIONS(7651), + [aux_sym_file_mode_token2] = ACTIONS(7651), + [aux_sym_file_access_token2] = ACTIONS(7651), + [aux_sym_file_lock_token2] = ACTIONS(7651), + [aux_sym_print_statement_token1] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_SEMI] = ACTIONS(10269), + [anon_sym_QMARK] = ACTIONS(7653), + [aux_sym_close_statement_token1] = ACTIONS(7651), + [aux_sym_put_statement_token1] = ACTIONS(7651), + [aux_sym_unlock_statement_token1] = ACTIONS(7651), + [aux_sym_seek_statement_token1] = ACTIONS(7651), + [sym_reset_statement] = ACTIONS(7651), + [aux_sym_raise_event_statement_token1] = ACTIONS(7651), + [sym_stop_statement] = ACTIONS(7651), + [sym_beep_statement] = ACTIONS(7651), + [aux_sym_unload_statement_token1] = ACTIONS(7651), + [aux_sym_def_type_statement_token1] = ACTIONS(7651), + [aux_sym_def_type_statement_token2] = ACTIONS(7651), + [aux_sym_def_type_statement_token3] = ACTIONS(7651), + [aux_sym_def_type_statement_token4] = ACTIONS(7651), + [aux_sym_def_type_statement_token5] = ACTIONS(7651), + [aux_sym_def_type_statement_token6] = ACTIONS(7651), + [aux_sym_def_type_statement_token7] = ACTIONS(7651), + [aux_sym_def_type_statement_token8] = ACTIONS(7651), + [aux_sym_def_type_statement_token9] = ACTIONS(7651), + [aux_sym_def_type_statement_token10] = ACTIONS(7651), + [aux_sym_def_type_statement_token11] = ACTIONS(7651), + [aux_sym_def_type_statement_token12] = ACTIONS(7651), + [aux_sym_def_type_statement_token13] = ACTIONS(7651), + [aux_sym_def_type_statement_token14] = ACTIONS(7651), + [aux_sym_call_statement_token1] = ACTIONS(7651), + [sym__ambiguous_call_statement] = ACTIONS(7651), + [aux_sym_addressof_expression_token1] = ACTIONS(7651), + [aux_sym_type_of_expression_token1] = ACTIONS(7651), + [aux_sym_unary_expression_token1] = ACTIONS(7651), + [sym_string_literal] = ACTIONS(7653), + [sym_number_literal] = ACTIONS(7653), + [aux_sym_boolean_literal_token1] = ACTIONS(7651), + [aux_sym_boolean_literal_token2] = ACTIONS(7651), + [sym_nothing_literal] = ACTIONS(7651), + [sym_null_literal] = ACTIONS(7651), + [sym_empty_literal] = ACTIONS(7651), + [sym_date_literal] = ACTIONS(7653), + [anon_sym_POUND] = ACTIONS(7651), + }, + [STATE(4890)] = { + [sym_char_position] = STATE(618), + [aux_sym_output_list_repeat1] = STATE(4715), + [sym_identifier] = ACTIONS(7474), + [sym_newline] = ACTIONS(7476), + [anon_sym_COLON] = ACTIONS(7476), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7474), + [aux_sym_frm_property_statement_token1] = ACTIONS(7474), + [anon_sym_DOT] = ACTIONS(7474), + [anon_sym_BANG] = ACTIONS(7476), + [aux_sym__attribute_identifier_token1] = ACTIONS(7474), + [aux_sym_option_statement_token3] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7474), + [aux_sym_preprocessor_const_token1] = ACTIONS(7474), + [sym_static_modifier] = ACTIONS(7474), + [sym__dim_keyword] = ACTIONS(7474), + [sym__redim_keyword] = ACTIONS(7474), + [aux_sym_get_accessor_token1] = ACTIONS(7474), + [aux_sym_set_accessor_token1] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(10155), + [aux_sym_const_declaration_token1] = ACTIONS(7474), + [anon_sym_LPAREN] = ACTIONS(7476), + [aux_sym_as_type_clause_token2] = ACTIONS(7474), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7474), + [aux_sym_visibility_token1] = ACTIONS(7474), + [aux_sym_visibility_token2] = ACTIONS(7474), + [aux_sym_elseif_fragment_token1] = ACTIONS(7474), + [aux_sym_else_fragment_token1] = ACTIONS(7474), + [aux_sym_select_statement_token1] = ACTIONS(7474), + [aux_sym_select_statement_token2] = ACTIONS(7474), + [aux_sym__for_header_token1] = ACTIONS(7474), + [aux_sym_do_statement_token1] = ACTIONS(7474), + [aux_sym_do_condition_token1] = ACTIONS(7474), + [aux_sym_with_statement_token1] = ACTIONS(7474), + [aux_sym_exit_statement_token1] = ACTIONS(7474), + [sym_end_statement] = ACTIONS(7476), + [aux_sym_on_goto_statement_token1] = ACTIONS(7474), + [aux_sym_on_goto_statement_token2] = ACTIONS(7474), + [aux_sym_on_error_statement_token2] = ACTIONS(7474), + [sym__ambiguous_redim_statement] = ACTIONS(7476), + [aux_sym_erase_statement_token1] = ACTIONS(7474), + [aux_sym_open_statement_token1] = ACTIONS(7474), + [aux_sym_file_mode_token2] = ACTIONS(7474), + [aux_sym_file_access_token2] = ACTIONS(7474), + [aux_sym_file_lock_token2] = ACTIONS(7474), + [aux_sym_print_statement_token1] = ACTIONS(7474), + [anon_sym_PLUS] = ACTIONS(7476), + [anon_sym_DASH] = ACTIONS(7474), + [anon_sym_SEMI] = ACTIONS(10155), + [anon_sym_QMARK] = ACTIONS(7476), + [aux_sym_close_statement_token1] = ACTIONS(7474), + [aux_sym_put_statement_token1] = ACTIONS(7474), + [aux_sym_unlock_statement_token1] = ACTIONS(7474), + [aux_sym_seek_statement_token1] = ACTIONS(7474), + [sym_reset_statement] = ACTIONS(7474), + [aux_sym_raise_event_statement_token1] = ACTIONS(7474), + [sym_stop_statement] = ACTIONS(7474), + [sym_beep_statement] = ACTIONS(7474), + [aux_sym_unload_statement_token1] = ACTIONS(7474), + [aux_sym_def_type_statement_token1] = ACTIONS(7474), + [aux_sym_def_type_statement_token2] = ACTIONS(7474), + [aux_sym_def_type_statement_token3] = ACTIONS(7474), + [aux_sym_def_type_statement_token4] = ACTIONS(7474), + [aux_sym_def_type_statement_token5] = ACTIONS(7474), + [aux_sym_def_type_statement_token6] = ACTIONS(7474), + [aux_sym_def_type_statement_token7] = ACTIONS(7474), + [aux_sym_def_type_statement_token8] = ACTIONS(7474), + [aux_sym_def_type_statement_token9] = ACTIONS(7474), + [aux_sym_def_type_statement_token10] = ACTIONS(7474), + [aux_sym_def_type_statement_token11] = ACTIONS(7474), + [aux_sym_def_type_statement_token12] = ACTIONS(7474), + [aux_sym_def_type_statement_token13] = ACTIONS(7474), + [aux_sym_def_type_statement_token14] = ACTIONS(7474), + [aux_sym_call_statement_token1] = ACTIONS(7474), + [sym__ambiguous_call_statement] = ACTIONS(7474), + [aux_sym_addressof_expression_token1] = ACTIONS(7474), + [aux_sym_type_of_expression_token1] = ACTIONS(7474), + [aux_sym_unary_expression_token1] = ACTIONS(7474), + [sym_string_literal] = ACTIONS(7476), + [sym_number_literal] = ACTIONS(7476), + [aux_sym_boolean_literal_token1] = ACTIONS(7474), + [aux_sym_boolean_literal_token2] = ACTIONS(7474), + [sym_nothing_literal] = ACTIONS(7474), + [sym_null_literal] = ACTIONS(7474), + [sym_empty_literal] = ACTIONS(7474), + [sym_date_literal] = ACTIONS(7476), + [anon_sym_POUND] = ACTIONS(7474), + }, + [STATE(4891)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4882), + [sym_identifier] = ACTIONS(8154), + [sym_newline] = ACTIONS(8156), + [anon_sym_COLON] = ACTIONS(8156), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8154), + [aux_sym_frm_property_statement_token1] = ACTIONS(8154), + [anon_sym_DOT] = ACTIONS(8154), + [anon_sym_BANG] = ACTIONS(8156), + [aux_sym__attribute_identifier_token1] = ACTIONS(8154), + [aux_sym_option_statement_token3] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8154), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8154), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8154), + [aux_sym_preprocessor_const_token1] = ACTIONS(8154), + [sym_static_modifier] = ACTIONS(8154), + [sym__dim_keyword] = ACTIONS(8154), + [sym__redim_keyword] = ACTIONS(8154), + [aux_sym_get_accessor_token1] = ACTIONS(8154), + [aux_sym_set_accessor_token1] = ACTIONS(8154), + [anon_sym_COMMA] = ACTIONS(10251), + [aux_sym_const_declaration_token1] = ACTIONS(8154), + [anon_sym_LPAREN] = ACTIONS(8156), + [aux_sym_as_type_clause_token2] = ACTIONS(8154), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8154), + [aux_sym_visibility_token1] = ACTIONS(8154), + [aux_sym_visibility_token2] = ACTIONS(8154), + [aux_sym_elseif_fragment_token1] = ACTIONS(8154), + [aux_sym_else_fragment_token1] = ACTIONS(8154), + [aux_sym_select_statement_token1] = ACTIONS(8154), + [aux_sym__for_header_token1] = ACTIONS(8154), + [aux_sym_do_statement_token1] = ACTIONS(8154), + [aux_sym_do_condition_token1] = ACTIONS(8154), + [aux_sym_with_statement_token1] = ACTIONS(8154), + [aux_sym_exit_statement_token1] = ACTIONS(8154), + [sym_end_statement] = ACTIONS(8156), + [aux_sym_on_goto_statement_token1] = ACTIONS(8154), + [aux_sym_on_goto_statement_token2] = ACTIONS(8154), + [aux_sym_on_error_statement_token2] = ACTIONS(8154), + [sym__ambiguous_redim_statement] = ACTIONS(8156), + [aux_sym_erase_statement_token1] = ACTIONS(8154), + [aux_sym_open_statement_token1] = ACTIONS(8154), + [aux_sym_file_mode_token2] = ACTIONS(8154), + [aux_sym_file_access_token2] = ACTIONS(8154), + [aux_sym_file_lock_token2] = ACTIONS(8154), + [aux_sym_print_statement_token1] = ACTIONS(8154), + [anon_sym_PLUS] = ACTIONS(8156), + [anon_sym_DASH] = ACTIONS(8154), + [anon_sym_QMARK] = ACTIONS(8156), + [aux_sym_close_statement_token1] = ACTIONS(8154), + [aux_sym_put_statement_token1] = ACTIONS(8154), + [aux_sym_unlock_statement_token1] = ACTIONS(8154), + [aux_sym_seek_statement_token1] = ACTIONS(8154), + [sym_reset_statement] = ACTIONS(8154), + [aux_sym_raise_event_statement_token1] = ACTIONS(8154), + [sym_stop_statement] = ACTIONS(8154), + [sym_beep_statement] = ACTIONS(8154), + [aux_sym_unload_statement_token1] = ACTIONS(8154), + [aux_sym_def_type_statement_token1] = ACTIONS(8154), + [aux_sym_def_type_statement_token2] = ACTIONS(8154), + [aux_sym_def_type_statement_token3] = ACTIONS(8154), + [aux_sym_def_type_statement_token4] = ACTIONS(8154), + [aux_sym_def_type_statement_token5] = ACTIONS(8154), + [aux_sym_def_type_statement_token6] = ACTIONS(8154), + [aux_sym_def_type_statement_token7] = ACTIONS(8154), + [aux_sym_def_type_statement_token8] = ACTIONS(8154), + [aux_sym_def_type_statement_token9] = ACTIONS(8154), + [aux_sym_def_type_statement_token10] = ACTIONS(8154), + [aux_sym_def_type_statement_token11] = ACTIONS(8154), + [aux_sym_def_type_statement_token12] = ACTIONS(8154), + [aux_sym_def_type_statement_token13] = ACTIONS(8154), + [aux_sym_def_type_statement_token14] = ACTIONS(8154), + [aux_sym_call_statement_token1] = ACTIONS(8154), + [sym__ambiguous_call_statement] = ACTIONS(8154), + [aux_sym_addressof_expression_token1] = ACTIONS(8154), + [aux_sym_type_of_expression_token1] = ACTIONS(8154), + [aux_sym_unary_expression_token1] = ACTIONS(8154), + [sym_string_literal] = ACTIONS(8156), + [sym_number_literal] = ACTIONS(8156), + [aux_sym_boolean_literal_token1] = ACTIONS(8154), + [aux_sym_boolean_literal_token2] = ACTIONS(8154), + [sym_nothing_literal] = ACTIONS(8154), + [sym_null_literal] = ACTIONS(8154), + [sym_empty_literal] = ACTIONS(8154), + [sym_date_literal] = ACTIONS(8156), + [anon_sym_POUND] = ACTIONS(8154), + }, + [STATE(4892)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4882), + [sym_identifier] = ACTIONS(8158), + [sym_newline] = ACTIONS(8160), + [anon_sym_COLON] = ACTIONS(8160), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8158), + [aux_sym_frm_property_statement_token1] = ACTIONS(8158), + [anon_sym_DOT] = ACTIONS(8158), + [anon_sym_BANG] = ACTIONS(8160), + [aux_sym__attribute_identifier_token1] = ACTIONS(8158), + [aux_sym_option_statement_token3] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8158), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8158), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8158), + [aux_sym_preprocessor_const_token1] = ACTIONS(8158), + [sym_static_modifier] = ACTIONS(8158), + [sym__dim_keyword] = ACTIONS(8158), + [sym__redim_keyword] = ACTIONS(8158), + [aux_sym_get_accessor_token1] = ACTIONS(8158), + [aux_sym_set_accessor_token1] = ACTIONS(8158), + [anon_sym_COMMA] = ACTIONS(10251), + [aux_sym_const_declaration_token1] = ACTIONS(8158), + [anon_sym_LPAREN] = ACTIONS(8160), + [aux_sym_as_type_clause_token2] = ACTIONS(8158), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8158), + [aux_sym_visibility_token1] = ACTIONS(8158), + [aux_sym_visibility_token2] = ACTIONS(8158), + [aux_sym_elseif_fragment_token1] = ACTIONS(8158), + [aux_sym_else_fragment_token1] = ACTIONS(8158), + [aux_sym_select_statement_token1] = ACTIONS(8158), + [aux_sym__for_header_token1] = ACTIONS(8158), + [aux_sym_do_statement_token1] = ACTIONS(8158), + [aux_sym_do_condition_token1] = ACTIONS(8158), + [aux_sym_with_statement_token1] = ACTIONS(8158), + [aux_sym_exit_statement_token1] = ACTIONS(8158), + [sym_end_statement] = ACTIONS(8160), + [aux_sym_on_goto_statement_token1] = ACTIONS(8158), + [aux_sym_on_goto_statement_token2] = ACTIONS(8158), + [aux_sym_on_error_statement_token2] = ACTIONS(8158), + [sym__ambiguous_redim_statement] = ACTIONS(8160), + [aux_sym_erase_statement_token1] = ACTIONS(8158), + [aux_sym_open_statement_token1] = ACTIONS(8158), + [aux_sym_file_mode_token2] = ACTIONS(8158), + [aux_sym_file_access_token2] = ACTIONS(8158), + [aux_sym_file_lock_token2] = ACTIONS(8158), + [aux_sym_print_statement_token1] = ACTIONS(8158), + [anon_sym_PLUS] = ACTIONS(8160), + [anon_sym_DASH] = ACTIONS(8158), + [anon_sym_QMARK] = ACTIONS(8160), + [aux_sym_close_statement_token1] = ACTIONS(8158), + [aux_sym_put_statement_token1] = ACTIONS(8158), + [aux_sym_unlock_statement_token1] = ACTIONS(8158), + [aux_sym_seek_statement_token1] = ACTIONS(8158), + [sym_reset_statement] = ACTIONS(8158), + [aux_sym_raise_event_statement_token1] = ACTIONS(8158), + [sym_stop_statement] = ACTIONS(8158), + [sym_beep_statement] = ACTIONS(8158), + [aux_sym_unload_statement_token1] = ACTIONS(8158), + [aux_sym_def_type_statement_token1] = ACTIONS(8158), + [aux_sym_def_type_statement_token2] = ACTIONS(8158), + [aux_sym_def_type_statement_token3] = ACTIONS(8158), + [aux_sym_def_type_statement_token4] = ACTIONS(8158), + [aux_sym_def_type_statement_token5] = ACTIONS(8158), + [aux_sym_def_type_statement_token6] = ACTIONS(8158), + [aux_sym_def_type_statement_token7] = ACTIONS(8158), + [aux_sym_def_type_statement_token8] = ACTIONS(8158), + [aux_sym_def_type_statement_token9] = ACTIONS(8158), + [aux_sym_def_type_statement_token10] = ACTIONS(8158), + [aux_sym_def_type_statement_token11] = ACTIONS(8158), + [aux_sym_def_type_statement_token12] = ACTIONS(8158), + [aux_sym_def_type_statement_token13] = ACTIONS(8158), + [aux_sym_def_type_statement_token14] = ACTIONS(8158), + [aux_sym_call_statement_token1] = ACTIONS(8158), + [sym__ambiguous_call_statement] = ACTIONS(8158), + [aux_sym_addressof_expression_token1] = ACTIONS(8158), + [aux_sym_type_of_expression_token1] = ACTIONS(8158), + [aux_sym_unary_expression_token1] = ACTIONS(8158), + [sym_string_literal] = ACTIONS(8160), + [sym_number_literal] = ACTIONS(8160), + [aux_sym_boolean_literal_token1] = ACTIONS(8158), + [aux_sym_boolean_literal_token2] = ACTIONS(8158), + [sym_nothing_literal] = ACTIONS(8158), + [sym_null_literal] = ACTIONS(8158), + [sym_empty_literal] = ACTIONS(8158), + [sym_date_literal] = ACTIONS(8160), + [anon_sym_POUND] = ACTIONS(8158), + }, + [STATE(4893)] = { + [aux_sym_variable_declaration_repeat1] = STATE(4882), + [sym_identifier] = ACTIONS(8166), + [sym_newline] = ACTIONS(8168), + [anon_sym_COLON] = ACTIONS(8168), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8166), + [aux_sym_frm_property_statement_token1] = ACTIONS(8166), + [anon_sym_DOT] = ACTIONS(8166), + [anon_sym_BANG] = ACTIONS(8168), + [aux_sym__attribute_identifier_token1] = ACTIONS(8166), + [aux_sym_option_statement_token3] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8166), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8166), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8166), + [aux_sym_preprocessor_const_token1] = ACTIONS(8166), + [sym_static_modifier] = ACTIONS(8166), + [sym__dim_keyword] = ACTIONS(8166), + [sym__redim_keyword] = ACTIONS(8166), + [aux_sym_get_accessor_token1] = ACTIONS(8166), + [aux_sym_set_accessor_token1] = ACTIONS(8166), + [anon_sym_COMMA] = ACTIONS(10251), + [aux_sym_const_declaration_token1] = ACTIONS(8166), + [anon_sym_LPAREN] = ACTIONS(8168), + [aux_sym_as_type_clause_token2] = ACTIONS(8166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8166), + [aux_sym_visibility_token1] = ACTIONS(8166), + [aux_sym_visibility_token2] = ACTIONS(8166), + [aux_sym_elseif_fragment_token1] = ACTIONS(8166), + [aux_sym_else_fragment_token1] = ACTIONS(8166), + [aux_sym_select_statement_token1] = ACTIONS(8166), + [aux_sym__for_header_token1] = ACTIONS(8166), + [aux_sym_do_statement_token1] = ACTIONS(8166), + [aux_sym_do_condition_token1] = ACTIONS(8166), + [aux_sym_with_statement_token1] = ACTIONS(8166), + [aux_sym_exit_statement_token1] = ACTIONS(8166), + [sym_end_statement] = ACTIONS(8168), + [aux_sym_on_goto_statement_token1] = ACTIONS(8166), + [aux_sym_on_goto_statement_token2] = ACTIONS(8166), + [aux_sym_on_error_statement_token2] = ACTIONS(8166), + [sym__ambiguous_redim_statement] = ACTIONS(8168), + [aux_sym_erase_statement_token1] = ACTIONS(8166), + [aux_sym_open_statement_token1] = ACTIONS(8166), + [aux_sym_file_mode_token2] = ACTIONS(8166), + [aux_sym_file_access_token2] = ACTIONS(8166), + [aux_sym_file_lock_token2] = ACTIONS(8166), + [aux_sym_print_statement_token1] = ACTIONS(8166), + [anon_sym_PLUS] = ACTIONS(8168), + [anon_sym_DASH] = ACTIONS(8166), + [anon_sym_QMARK] = ACTIONS(8168), + [aux_sym_close_statement_token1] = ACTIONS(8166), + [aux_sym_put_statement_token1] = ACTIONS(8166), + [aux_sym_unlock_statement_token1] = ACTIONS(8166), + [aux_sym_seek_statement_token1] = ACTIONS(8166), + [sym_reset_statement] = ACTIONS(8166), + [aux_sym_raise_event_statement_token1] = ACTIONS(8166), + [sym_stop_statement] = ACTIONS(8166), + [sym_beep_statement] = ACTIONS(8166), + [aux_sym_unload_statement_token1] = ACTIONS(8166), + [aux_sym_def_type_statement_token1] = ACTIONS(8166), + [aux_sym_def_type_statement_token2] = ACTIONS(8166), + [aux_sym_def_type_statement_token3] = ACTIONS(8166), + [aux_sym_def_type_statement_token4] = ACTIONS(8166), + [aux_sym_def_type_statement_token5] = ACTIONS(8166), + [aux_sym_def_type_statement_token6] = ACTIONS(8166), + [aux_sym_def_type_statement_token7] = ACTIONS(8166), + [aux_sym_def_type_statement_token8] = ACTIONS(8166), + [aux_sym_def_type_statement_token9] = ACTIONS(8166), + [aux_sym_def_type_statement_token10] = ACTIONS(8166), + [aux_sym_def_type_statement_token11] = ACTIONS(8166), + [aux_sym_def_type_statement_token12] = ACTIONS(8166), + [aux_sym_def_type_statement_token13] = ACTIONS(8166), + [aux_sym_def_type_statement_token14] = ACTIONS(8166), + [aux_sym_call_statement_token1] = ACTIONS(8166), + [sym__ambiguous_call_statement] = ACTIONS(8166), + [aux_sym_addressof_expression_token1] = ACTIONS(8166), + [aux_sym_type_of_expression_token1] = ACTIONS(8166), + [aux_sym_unary_expression_token1] = ACTIONS(8166), + [sym_string_literal] = ACTIONS(8168), + [sym_number_literal] = ACTIONS(8168), + [aux_sym_boolean_literal_token1] = ACTIONS(8166), + [aux_sym_boolean_literal_token2] = ACTIONS(8166), + [sym_nothing_literal] = ACTIONS(8166), + [sym_null_literal] = ACTIONS(8166), + [sym_empty_literal] = ACTIONS(8166), + [sym_date_literal] = ACTIONS(8168), + [anon_sym_POUND] = ACTIONS(8166), + }, + [STATE(4894)] = { + [aux_sym_const_declaration_repeat1] = STATE(4883), + [sym_identifier] = ACTIONS(8174), + [sym_newline] = ACTIONS(8176), + [anon_sym_COLON] = ACTIONS(8176), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8174), + [aux_sym_frm_property_statement_token1] = ACTIONS(8174), + [anon_sym_DOT] = ACTIONS(8174), + [anon_sym_BANG] = ACTIONS(8176), + [aux_sym__attribute_identifier_token1] = ACTIONS(8174), + [aux_sym_option_statement_token3] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8174), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8174), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8174), + [aux_sym_preprocessor_const_token1] = ACTIONS(8174), + [sym_static_modifier] = ACTIONS(8174), + [sym__dim_keyword] = ACTIONS(8174), + [sym__redim_keyword] = ACTIONS(8174), + [aux_sym_get_accessor_token1] = ACTIONS(8174), + [aux_sym_set_accessor_token1] = ACTIONS(8174), + [anon_sym_COMMA] = ACTIONS(10253), + [aux_sym_const_declaration_token1] = ACTIONS(8174), + [anon_sym_LPAREN] = ACTIONS(8176), + [aux_sym_as_type_clause_token2] = ACTIONS(8174), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8174), + [aux_sym_visibility_token1] = ACTIONS(8174), + [aux_sym_visibility_token2] = ACTIONS(8174), + [aux_sym_elseif_fragment_token1] = ACTIONS(8174), + [aux_sym_else_fragment_token1] = ACTIONS(8174), + [aux_sym_select_statement_token1] = ACTIONS(8174), + [aux_sym__for_header_token1] = ACTIONS(8174), + [aux_sym_do_statement_token1] = ACTIONS(8174), + [aux_sym_do_condition_token1] = ACTIONS(8174), + [aux_sym_with_statement_token1] = ACTIONS(8174), + [aux_sym_exit_statement_token1] = ACTIONS(8174), + [sym_end_statement] = ACTIONS(8176), + [aux_sym_on_goto_statement_token1] = ACTIONS(8174), + [aux_sym_on_goto_statement_token2] = ACTIONS(8174), + [aux_sym_on_error_statement_token2] = ACTIONS(8174), + [sym__ambiguous_redim_statement] = ACTIONS(8176), + [aux_sym_erase_statement_token1] = ACTIONS(8174), + [aux_sym_open_statement_token1] = ACTIONS(8174), + [aux_sym_file_mode_token2] = ACTIONS(8174), + [aux_sym_file_access_token2] = ACTIONS(8174), + [aux_sym_file_lock_token2] = ACTIONS(8174), + [aux_sym_print_statement_token1] = ACTIONS(8174), + [anon_sym_PLUS] = ACTIONS(8176), + [anon_sym_DASH] = ACTIONS(8174), + [anon_sym_QMARK] = ACTIONS(8176), + [aux_sym_close_statement_token1] = ACTIONS(8174), + [aux_sym_put_statement_token1] = ACTIONS(8174), + [aux_sym_unlock_statement_token1] = ACTIONS(8174), + [aux_sym_seek_statement_token1] = ACTIONS(8174), + [sym_reset_statement] = ACTIONS(8174), + [aux_sym_raise_event_statement_token1] = ACTIONS(8174), + [sym_stop_statement] = ACTIONS(8174), + [sym_beep_statement] = ACTIONS(8174), + [aux_sym_unload_statement_token1] = ACTIONS(8174), + [aux_sym_def_type_statement_token1] = ACTIONS(8174), + [aux_sym_def_type_statement_token2] = ACTIONS(8174), + [aux_sym_def_type_statement_token3] = ACTIONS(8174), + [aux_sym_def_type_statement_token4] = ACTIONS(8174), + [aux_sym_def_type_statement_token5] = ACTIONS(8174), + [aux_sym_def_type_statement_token6] = ACTIONS(8174), + [aux_sym_def_type_statement_token7] = ACTIONS(8174), + [aux_sym_def_type_statement_token8] = ACTIONS(8174), + [aux_sym_def_type_statement_token9] = ACTIONS(8174), + [aux_sym_def_type_statement_token10] = ACTIONS(8174), + [aux_sym_def_type_statement_token11] = ACTIONS(8174), + [aux_sym_def_type_statement_token12] = ACTIONS(8174), + [aux_sym_def_type_statement_token13] = ACTIONS(8174), + [aux_sym_def_type_statement_token14] = ACTIONS(8174), + [aux_sym_call_statement_token1] = ACTIONS(8174), + [sym__ambiguous_call_statement] = ACTIONS(8174), + [aux_sym_addressof_expression_token1] = ACTIONS(8174), + [aux_sym_type_of_expression_token1] = ACTIONS(8174), + [aux_sym_unary_expression_token1] = ACTIONS(8174), + [sym_string_literal] = ACTIONS(8176), + [sym_number_literal] = ACTIONS(8176), + [aux_sym_boolean_literal_token1] = ACTIONS(8174), + [aux_sym_boolean_literal_token2] = ACTIONS(8174), + [sym_nothing_literal] = ACTIONS(8174), + [sym_null_literal] = ACTIONS(8174), + [sym_empty_literal] = ACTIONS(8174), + [sym_date_literal] = ACTIONS(8176), + [anon_sym_POUND] = ACTIONS(8174), + }, + [STATE(4895)] = { + [aux_sym__argument_sequence_repeat2] = STATE(4895), + [sym_identifier] = ACTIONS(8196), + [sym_newline] = ACTIONS(8198), + [anon_sym_COLON] = ACTIONS(8198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8196), + [aux_sym_frm_property_statement_token1] = ACTIONS(8196), + [anon_sym_DOT] = ACTIONS(8196), + [anon_sym_BANG] = ACTIONS(8198), + [aux_sym__attribute_identifier_token1] = ACTIONS(8196), + [aux_sym_option_statement_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8196), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8196), + [aux_sym_preprocessor_const_token1] = ACTIONS(8196), + [sym_static_modifier] = ACTIONS(8196), + [sym__dim_keyword] = ACTIONS(8196), + [sym__redim_keyword] = ACTIONS(8196), + [aux_sym_get_accessor_token1] = ACTIONS(8196), + [aux_sym_set_accessor_token1] = ACTIONS(8196), + [anon_sym_COMMA] = ACTIONS(10271), + [aux_sym_const_declaration_token1] = ACTIONS(8196), + [anon_sym_LPAREN] = ACTIONS(8198), + [aux_sym_as_type_clause_token2] = ACTIONS(8196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8196), + [aux_sym_visibility_token1] = ACTIONS(8196), + [aux_sym_visibility_token2] = ACTIONS(8196), + [aux_sym_elseif_fragment_token1] = ACTIONS(8196), + [aux_sym_else_fragment_token1] = ACTIONS(8196), + [aux_sym_select_statement_token1] = ACTIONS(8196), + [aux_sym__for_header_token1] = ACTIONS(8196), + [aux_sym_do_statement_token1] = ACTIONS(8196), + [aux_sym_do_condition_token1] = ACTIONS(8196), + [aux_sym_with_statement_token1] = ACTIONS(8196), + [aux_sym_exit_statement_token1] = ACTIONS(8196), + [sym_end_statement] = ACTIONS(8198), + [aux_sym_on_goto_statement_token1] = ACTIONS(8196), + [aux_sym_on_goto_statement_token2] = ACTIONS(8196), + [aux_sym_on_error_statement_token2] = ACTIONS(8196), + [sym__ambiguous_redim_statement] = ACTIONS(8198), + [aux_sym_erase_statement_token1] = ACTIONS(8196), + [aux_sym_open_statement_token1] = ACTIONS(8196), + [aux_sym_file_mode_token2] = ACTIONS(8196), + [aux_sym_file_access_token2] = ACTIONS(8196), + [aux_sym_file_lock_token2] = ACTIONS(8196), + [aux_sym_print_statement_token1] = ACTIONS(8196), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(8196), + [anon_sym_QMARK] = ACTIONS(8198), + [aux_sym_close_statement_token1] = ACTIONS(8196), + [aux_sym_put_statement_token1] = ACTIONS(8196), + [aux_sym_unlock_statement_token1] = ACTIONS(8196), + [aux_sym_seek_statement_token1] = ACTIONS(8196), + [sym_reset_statement] = ACTIONS(8196), + [aux_sym_raise_event_statement_token1] = ACTIONS(8196), + [sym_stop_statement] = ACTIONS(8196), + [sym_beep_statement] = ACTIONS(8196), + [aux_sym_unload_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token2] = ACTIONS(8196), + [aux_sym_def_type_statement_token3] = ACTIONS(8196), + [aux_sym_def_type_statement_token4] = ACTIONS(8196), + [aux_sym_def_type_statement_token5] = ACTIONS(8196), + [aux_sym_def_type_statement_token6] = ACTIONS(8196), + [aux_sym_def_type_statement_token7] = ACTIONS(8196), + [aux_sym_def_type_statement_token8] = ACTIONS(8196), + [aux_sym_def_type_statement_token9] = ACTIONS(8196), + [aux_sym_def_type_statement_token10] = ACTIONS(8196), + [aux_sym_def_type_statement_token11] = ACTIONS(8196), + [aux_sym_def_type_statement_token12] = ACTIONS(8196), + [aux_sym_def_type_statement_token13] = ACTIONS(8196), + [aux_sym_def_type_statement_token14] = ACTIONS(8196), + [aux_sym_call_statement_token1] = ACTIONS(8196), + [sym__ambiguous_call_statement] = ACTIONS(8196), + [aux_sym_addressof_expression_token1] = ACTIONS(8196), + [aux_sym_type_of_expression_token1] = ACTIONS(8196), + [aux_sym_unary_expression_token1] = ACTIONS(8196), + [sym_string_literal] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8198), + [aux_sym_boolean_literal_token1] = ACTIONS(8196), + [aux_sym_boolean_literal_token2] = ACTIONS(8196), + [sym_nothing_literal] = ACTIONS(8196), + [sym_null_literal] = ACTIONS(8196), + [sym_empty_literal] = ACTIONS(8196), + [sym_date_literal] = ACTIONS(8198), + [anon_sym_POUND] = ACTIONS(8196), + }, + [STATE(4896)] = { + [aux_sym__argument_sequence_repeat1] = STATE(5087), + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(5380), + [sym_identifier] = ACTIONS(7651), + [sym_newline] = ACTIONS(7653), + [anon_sym_COLON] = ACTIONS(7653), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7651), + [aux_sym_frm_property_statement_token1] = ACTIONS(7651), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_BANG] = ACTIONS(7653), + [aux_sym__attribute_identifier_token1] = ACTIONS(7651), + [aux_sym_option_statement_token3] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7651), + [aux_sym_preprocessor_const_token1] = ACTIONS(7651), + [sym_static_modifier] = ACTIONS(7651), + [sym__dim_keyword] = ACTIONS(7651), + [sym__redim_keyword] = ACTIONS(7651), + [aux_sym_get_accessor_token1] = ACTIONS(7651), + [aux_sym_set_accessor_token1] = ACTIONS(7651), + [anon_sym_COMMA] = ACTIONS(10274), + [aux_sym_const_declaration_token1] = ACTIONS(7651), + [anon_sym_LPAREN] = ACTIONS(7653), + [aux_sym_as_type_clause_token2] = ACTIONS(7651), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7651), + [aux_sym_visibility_token1] = ACTIONS(7651), + [aux_sym_visibility_token2] = ACTIONS(7651), + [aux_sym_elseif_fragment_token1] = ACTIONS(7651), + [aux_sym_else_fragment_token1] = ACTIONS(7651), + [aux_sym_select_statement_token1] = ACTIONS(7651), + [aux_sym__for_header_token1] = ACTIONS(7651), + [aux_sym_do_statement_token1] = ACTIONS(7651), + [aux_sym_do_statement_token2] = ACTIONS(7651), + [aux_sym_do_condition_token1] = ACTIONS(7651), + [aux_sym_with_statement_token1] = ACTIONS(7651), + [aux_sym_exit_statement_token1] = ACTIONS(7651), + [sym_end_statement] = ACTIONS(7653), + [aux_sym_on_goto_statement_token1] = ACTIONS(7651), + [aux_sym_on_goto_statement_token2] = ACTIONS(7651), + [aux_sym_on_error_statement_token2] = ACTIONS(7651), + [sym__ambiguous_redim_statement] = ACTIONS(7653), + [aux_sym_erase_statement_token1] = ACTIONS(7651), + [aux_sym_open_statement_token1] = ACTIONS(7651), + [aux_sym_file_mode_token2] = ACTIONS(7651), + [aux_sym_file_access_token2] = ACTIONS(7651), + [aux_sym_file_lock_token2] = ACTIONS(7651), + [aux_sym_print_statement_token1] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_SEMI] = ACTIONS(10276), + [anon_sym_QMARK] = ACTIONS(7653), + [aux_sym_close_statement_token1] = ACTIONS(7651), + [aux_sym_put_statement_token1] = ACTIONS(7651), + [aux_sym_unlock_statement_token1] = ACTIONS(7651), + [aux_sym_seek_statement_token1] = ACTIONS(7651), + [sym_reset_statement] = ACTIONS(7651), + [aux_sym_raise_event_statement_token1] = ACTIONS(7651), + [sym_stop_statement] = ACTIONS(7651), + [sym_beep_statement] = ACTIONS(7651), + [aux_sym_unload_statement_token1] = ACTIONS(7651), + [aux_sym_def_type_statement_token1] = ACTIONS(7651), + [aux_sym_def_type_statement_token2] = ACTIONS(7651), + [aux_sym_def_type_statement_token3] = ACTIONS(7651), + [aux_sym_def_type_statement_token4] = ACTIONS(7651), + [aux_sym_def_type_statement_token5] = ACTIONS(7651), + [aux_sym_def_type_statement_token6] = ACTIONS(7651), + [aux_sym_def_type_statement_token7] = ACTIONS(7651), + [aux_sym_def_type_statement_token8] = ACTIONS(7651), + [aux_sym_def_type_statement_token9] = ACTIONS(7651), + [aux_sym_def_type_statement_token10] = ACTIONS(7651), + [aux_sym_def_type_statement_token11] = ACTIONS(7651), + [aux_sym_def_type_statement_token12] = ACTIONS(7651), + [aux_sym_def_type_statement_token13] = ACTIONS(7651), + [aux_sym_def_type_statement_token14] = ACTIONS(7651), + [aux_sym_call_statement_token1] = ACTIONS(7651), + [sym__ambiguous_call_statement] = ACTIONS(7651), + [aux_sym_addressof_expression_token1] = ACTIONS(7651), + [aux_sym_type_of_expression_token1] = ACTIONS(7651), + [aux_sym_unary_expression_token1] = ACTIONS(7651), + [sym_string_literal] = ACTIONS(7653), + [sym_number_literal] = ACTIONS(7653), + [aux_sym_boolean_literal_token1] = ACTIONS(7651), + [aux_sym_boolean_literal_token2] = ACTIONS(7651), + [sym_nothing_literal] = ACTIONS(7651), + [sym_null_literal] = ACTIONS(7651), + [sym_empty_literal] = ACTIONS(7651), + [sym_date_literal] = ACTIONS(7653), + [anon_sym_POUND] = ACTIONS(7651), + }, + [STATE(4897)] = { + [sym_char_position] = STATE(578), + [aux_sym_output_list_repeat1] = STATE(4773), + [sym_identifier] = ACTIONS(7474), + [sym_newline] = ACTIONS(7476), + [anon_sym_COLON] = ACTIONS(7476), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7474), + [aux_sym_frm_property_statement_token1] = ACTIONS(7474), + [anon_sym_DOT] = ACTIONS(7474), + [anon_sym_BANG] = ACTIONS(7476), + [aux_sym__attribute_identifier_token1] = ACTIONS(7474), + [aux_sym_option_statement_token3] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7474), + [aux_sym_preprocessor_const_token1] = ACTIONS(7474), + [sym_static_modifier] = ACTIONS(7474), + [sym__dim_keyword] = ACTIONS(7474), + [sym__redim_keyword] = ACTIONS(7474), + [aux_sym_get_accessor_token1] = ACTIONS(7474), + [aux_sym_set_accessor_token1] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(10192), + [aux_sym_const_declaration_token1] = ACTIONS(7474), + [anon_sym_LPAREN] = ACTIONS(7476), + [aux_sym_as_type_clause_token2] = ACTIONS(7474), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7474), + [aux_sym_visibility_token1] = ACTIONS(7474), + [aux_sym_visibility_token2] = ACTIONS(7474), + [aux_sym_elseif_fragment_token1] = ACTIONS(7474), + [aux_sym_else_fragment_token1] = ACTIONS(7474), + [aux_sym_select_statement_token1] = ACTIONS(7474), + [aux_sym__for_header_token1] = ACTIONS(7474), + [aux_sym_do_statement_token1] = ACTIONS(7474), + [aux_sym_do_statement_token2] = ACTIONS(7474), + [aux_sym_do_condition_token1] = ACTIONS(7474), + [aux_sym_with_statement_token1] = ACTIONS(7474), + [aux_sym_exit_statement_token1] = ACTIONS(7474), + [sym_end_statement] = ACTIONS(7476), + [aux_sym_on_goto_statement_token1] = ACTIONS(7474), + [aux_sym_on_goto_statement_token2] = ACTIONS(7474), + [aux_sym_on_error_statement_token2] = ACTIONS(7474), + [sym__ambiguous_redim_statement] = ACTIONS(7476), + [aux_sym_erase_statement_token1] = ACTIONS(7474), + [aux_sym_open_statement_token1] = ACTIONS(7474), + [aux_sym_file_mode_token2] = ACTIONS(7474), + [aux_sym_file_access_token2] = ACTIONS(7474), + [aux_sym_file_lock_token2] = ACTIONS(7474), + [aux_sym_print_statement_token1] = ACTIONS(7474), + [anon_sym_PLUS] = ACTIONS(7476), + [anon_sym_DASH] = ACTIONS(7474), + [anon_sym_SEMI] = ACTIONS(10192), + [anon_sym_QMARK] = ACTIONS(7476), + [aux_sym_close_statement_token1] = ACTIONS(7474), + [aux_sym_put_statement_token1] = ACTIONS(7474), + [aux_sym_unlock_statement_token1] = ACTIONS(7474), + [aux_sym_seek_statement_token1] = ACTIONS(7474), + [sym_reset_statement] = ACTIONS(7474), + [aux_sym_raise_event_statement_token1] = ACTIONS(7474), + [sym_stop_statement] = ACTIONS(7474), + [sym_beep_statement] = ACTIONS(7474), + [aux_sym_unload_statement_token1] = ACTIONS(7474), + [aux_sym_def_type_statement_token1] = ACTIONS(7474), + [aux_sym_def_type_statement_token2] = ACTIONS(7474), + [aux_sym_def_type_statement_token3] = ACTIONS(7474), + [aux_sym_def_type_statement_token4] = ACTIONS(7474), + [aux_sym_def_type_statement_token5] = ACTIONS(7474), + [aux_sym_def_type_statement_token6] = ACTIONS(7474), + [aux_sym_def_type_statement_token7] = ACTIONS(7474), + [aux_sym_def_type_statement_token8] = ACTIONS(7474), + [aux_sym_def_type_statement_token9] = ACTIONS(7474), + [aux_sym_def_type_statement_token10] = ACTIONS(7474), + [aux_sym_def_type_statement_token11] = ACTIONS(7474), + [aux_sym_def_type_statement_token12] = ACTIONS(7474), + [aux_sym_def_type_statement_token13] = ACTIONS(7474), + [aux_sym_def_type_statement_token14] = ACTIONS(7474), + [aux_sym_call_statement_token1] = ACTIONS(7474), + [sym__ambiguous_call_statement] = ACTIONS(7474), + [aux_sym_addressof_expression_token1] = ACTIONS(7474), + [aux_sym_type_of_expression_token1] = ACTIONS(7474), + [aux_sym_unary_expression_token1] = ACTIONS(7474), + [sym_string_literal] = ACTIONS(7476), + [sym_number_literal] = ACTIONS(7476), + [aux_sym_boolean_literal_token1] = ACTIONS(7474), + [aux_sym_boolean_literal_token2] = ACTIONS(7474), + [sym_nothing_literal] = ACTIONS(7474), + [sym_null_literal] = ACTIONS(7474), + [sym_empty_literal] = ACTIONS(7474), + [sym_date_literal] = ACTIONS(7476), + [anon_sym_POUND] = ACTIONS(7474), + }, + [STATE(4898)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4899), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_while_statement_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(4899)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4899), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(10278), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_while_statement_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(4900)] = { + [sym_identifier] = ACTIONS(5869), + [sym_newline] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5869), + [aux_sym_frm_property_statement_token1] = ACTIONS(5869), + [anon_sym_DOT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [aux_sym__attribute_identifier_token1] = ACTIONS(5869), + [aux_sym_option_statement_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5869), + [aux_sym_preprocessor_const_token1] = ACTIONS(5869), + [sym_static_modifier] = ACTIONS(5869), + [sym__dim_keyword] = ACTIONS(5869), + [sym__redim_keyword] = ACTIONS(5869), + [aux_sym_get_accessor_token1] = ACTIONS(5869), + [aux_sym_set_accessor_token1] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5871), + [aux_sym_const_declaration_token1] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5871), + [aux_sym_as_type_clause_token2] = ACTIONS(5869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5869), + [aux_sym_visibility_token1] = ACTIONS(5869), + [aux_sym_visibility_token2] = ACTIONS(5869), + [aux_sym_elseif_fragment_token1] = ACTIONS(5869), + [aux_sym_else_fragment_token1] = ACTIONS(5869), + [aux_sym_select_statement_token1] = ACTIONS(5869), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5869), + [aux_sym__for_header_token1] = ACTIONS(5869), + [aux_sym_do_statement_token1] = ACTIONS(5869), + [aux_sym_do_condition_token1] = ACTIONS(5869), + [aux_sym_with_statement_token1] = ACTIONS(5869), + [aux_sym_exit_statement_token1] = ACTIONS(5869), + [sym_end_statement] = ACTIONS(5871), + [aux_sym_on_goto_statement_token1] = ACTIONS(5869), + [aux_sym_on_goto_statement_token2] = ACTIONS(5869), + [aux_sym_on_error_statement_token2] = ACTIONS(5869), + [sym__ambiguous_redim_statement] = ACTIONS(5871), + [aux_sym_erase_statement_token1] = ACTIONS(5869), + [aux_sym_open_statement_token1] = ACTIONS(5869), + [aux_sym_file_mode_token2] = ACTIONS(5869), + [aux_sym_file_access_token2] = ACTIONS(5869), + [aux_sym_file_lock_token2] = ACTIONS(5869), + [aux_sym_print_statement_token1] = ACTIONS(5869), + [anon_sym_PLUS] = ACTIONS(5871), + [anon_sym_DASH] = ACTIONS(5869), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10159), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10161), + [anon_sym_SEMI] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [aux_sym_close_statement_token1] = ACTIONS(5869), + [aux_sym_put_statement_token1] = ACTIONS(5869), + [aux_sym_unlock_statement_token1] = ACTIONS(5869), + [aux_sym_seek_statement_token1] = ACTIONS(5869), + [sym_reset_statement] = ACTIONS(5869), + [aux_sym_raise_event_statement_token1] = ACTIONS(5869), + [sym_stop_statement] = ACTIONS(5869), + [sym_beep_statement] = ACTIONS(5869), + [aux_sym_unload_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token2] = ACTIONS(5869), + [aux_sym_def_type_statement_token3] = ACTIONS(5869), + [aux_sym_def_type_statement_token4] = ACTIONS(5869), + [aux_sym_def_type_statement_token5] = ACTIONS(5869), + [aux_sym_def_type_statement_token6] = ACTIONS(5869), + [aux_sym_def_type_statement_token7] = ACTIONS(5869), + [aux_sym_def_type_statement_token8] = ACTIONS(5869), + [aux_sym_def_type_statement_token9] = ACTIONS(5869), + [aux_sym_def_type_statement_token10] = ACTIONS(5869), + [aux_sym_def_type_statement_token11] = ACTIONS(5869), + [aux_sym_def_type_statement_token12] = ACTIONS(5869), + [aux_sym_def_type_statement_token13] = ACTIONS(5869), + [aux_sym_def_type_statement_token14] = ACTIONS(5869), + [aux_sym_call_statement_token1] = ACTIONS(5869), + [sym__ambiguous_call_statement] = ACTIONS(5869), + [aux_sym_addressof_expression_token1] = ACTIONS(5869), + [aux_sym_type_of_expression_token1] = ACTIONS(5869), + [aux_sym_unary_expression_token1] = ACTIONS(5869), + [sym_string_literal] = ACTIONS(5871), + [sym_number_literal] = ACTIONS(5871), + [aux_sym_boolean_literal_token1] = ACTIONS(5869), + [aux_sym_boolean_literal_token2] = ACTIONS(5869), + [sym_nothing_literal] = ACTIONS(5869), + [sym_null_literal] = ACTIONS(5869), + [sym_empty_literal] = ACTIONS(5869), + [sym_date_literal] = ACTIONS(5871), + [anon_sym_POUND] = ACTIONS(5869), + }, + [STATE(4901)] = { + [sym_argument_list] = STATE(5386), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(10281), + [anon_sym_BANG] = ACTIONS(10283), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10285), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_while_statement_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(4902)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(4903)] = { + [aux_sym_next_variable_list_repeat1] = STATE(4905), + [sym_identifier] = ACTIONS(7939), + [sym_newline] = ACTIONS(7941), + [anon_sym_COLON] = ACTIONS(7941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7939), + [aux_sym_frm_property_statement_token1] = ACTIONS(7939), + [anon_sym_DOT] = ACTIONS(7939), + [anon_sym_BANG] = ACTIONS(7941), + [aux_sym__attribute_identifier_token1] = ACTIONS(7939), + [aux_sym_option_statement_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7939), + [aux_sym_preprocessor_const_token1] = ACTIONS(7939), + [sym_static_modifier] = ACTIONS(7939), + [sym__dim_keyword] = ACTIONS(7939), + [sym__redim_keyword] = ACTIONS(7939), + [aux_sym_get_accessor_token1] = ACTIONS(7939), + [aux_sym_set_accessor_token1] = ACTIONS(7939), + [anon_sym_COMMA] = ACTIONS(10287), + [aux_sym_const_declaration_token1] = ACTIONS(7939), + [anon_sym_LPAREN] = ACTIONS(7941), + [aux_sym_as_type_clause_token2] = ACTIONS(7939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7939), + [aux_sym_visibility_token1] = ACTIONS(7939), + [aux_sym_visibility_token2] = ACTIONS(7939), + [aux_sym_elseif_fragment_token1] = ACTIONS(7939), + [aux_sym_else_fragment_token1] = ACTIONS(7939), + [aux_sym_select_statement_token1] = ACTIONS(7939), + [aux_sym_select_statement_token2] = ACTIONS(7939), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7939), + [aux_sym__for_header_token1] = ACTIONS(7939), + [aux_sym_do_statement_token1] = ACTIONS(7939), + [aux_sym_do_condition_token1] = ACTIONS(7939), + [aux_sym_with_statement_token1] = ACTIONS(7939), + [aux_sym_exit_statement_token1] = ACTIONS(7939), + [sym_end_statement] = ACTIONS(7941), + [aux_sym_on_goto_statement_token1] = ACTIONS(7939), + [aux_sym_on_goto_statement_token2] = ACTIONS(7939), + [aux_sym_on_error_statement_token2] = ACTIONS(7939), + [sym__ambiguous_redim_statement] = ACTIONS(7941), + [aux_sym_erase_statement_token1] = ACTIONS(7939), + [aux_sym_open_statement_token1] = ACTIONS(7939), + [aux_sym_file_mode_token2] = ACTIONS(7939), + [aux_sym_file_access_token2] = ACTIONS(7939), + [aux_sym_file_lock_token2] = ACTIONS(7939), + [aux_sym_print_statement_token1] = ACTIONS(7939), + [anon_sym_PLUS] = ACTIONS(7941), + [anon_sym_DASH] = ACTIONS(7939), + [anon_sym_QMARK] = ACTIONS(7941), + [aux_sym_close_statement_token1] = ACTIONS(7939), + [aux_sym_put_statement_token1] = ACTIONS(7939), + [aux_sym_unlock_statement_token1] = ACTIONS(7939), + [aux_sym_seek_statement_token1] = ACTIONS(7939), + [sym_reset_statement] = ACTIONS(7939), + [aux_sym_raise_event_statement_token1] = ACTIONS(7939), + [sym_stop_statement] = ACTIONS(7939), + [sym_beep_statement] = ACTIONS(7939), + [aux_sym_unload_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token2] = ACTIONS(7939), + [aux_sym_def_type_statement_token3] = ACTIONS(7939), + [aux_sym_def_type_statement_token4] = ACTIONS(7939), + [aux_sym_def_type_statement_token5] = ACTIONS(7939), + [aux_sym_def_type_statement_token6] = ACTIONS(7939), + [aux_sym_def_type_statement_token7] = ACTIONS(7939), + [aux_sym_def_type_statement_token8] = ACTIONS(7939), + [aux_sym_def_type_statement_token9] = ACTIONS(7939), + [aux_sym_def_type_statement_token10] = ACTIONS(7939), + [aux_sym_def_type_statement_token11] = ACTIONS(7939), + [aux_sym_def_type_statement_token12] = ACTIONS(7939), + [aux_sym_def_type_statement_token13] = ACTIONS(7939), + [aux_sym_def_type_statement_token14] = ACTIONS(7939), + [aux_sym_call_statement_token1] = ACTIONS(7939), + [sym__ambiguous_call_statement] = ACTIONS(7939), + [aux_sym_addressof_expression_token1] = ACTIONS(7939), + [aux_sym_type_of_expression_token1] = ACTIONS(7939), + [aux_sym_unary_expression_token1] = ACTIONS(7939), + [sym_string_literal] = ACTIONS(7941), + [sym_number_literal] = ACTIONS(7941), + [aux_sym_boolean_literal_token1] = ACTIONS(7939), + [aux_sym_boolean_literal_token2] = ACTIONS(7939), + [sym_nothing_literal] = ACTIONS(7939), + [sym_null_literal] = ACTIONS(7939), + [sym_empty_literal] = ACTIONS(7939), + [sym_date_literal] = ACTIONS(7941), + [anon_sym_POUND] = ACTIONS(7939), + }, + [STATE(4904)] = { + [sym_initializer] = STATE(6156), + [sym_identifier] = ACTIONS(7710), + [sym_newline] = ACTIONS(7712), + [anon_sym_COLON] = ACTIONS(7712), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7710), + [aux_sym_frm_property_statement_token1] = ACTIONS(7710), + [anon_sym_EQ] = ACTIONS(10011), + [anon_sym_DOT] = ACTIONS(7710), + [anon_sym_BANG] = ACTIONS(7712), + [aux_sym__attribute_identifier_token1] = ACTIONS(7710), + [aux_sym_option_statement_token3] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7710), + [aux_sym_preprocessor_const_token1] = ACTIONS(7710), + [sym_static_modifier] = ACTIONS(7710), + [sym__dim_keyword] = ACTIONS(7710), + [sym__redim_keyword] = ACTIONS(7710), + [aux_sym_get_accessor_token1] = ACTIONS(7710), + [aux_sym_set_accessor_token1] = ACTIONS(7710), + [anon_sym_COMMA] = ACTIONS(7712), + [aux_sym_const_declaration_token1] = ACTIONS(7710), + [anon_sym_LPAREN] = ACTIONS(7712), + [aux_sym_as_type_clause_token2] = ACTIONS(7710), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7710), + [aux_sym_visibility_token1] = ACTIONS(7710), + [aux_sym_visibility_token2] = ACTIONS(7710), + [aux_sym_elseif_fragment_token1] = ACTIONS(7710), + [aux_sym_else_fragment_token1] = ACTIONS(7710), + [aux_sym_select_statement_token1] = ACTIONS(7710), + [aux_sym_select_statement_token2] = ACTIONS(7710), + [aux_sym__for_header_token1] = ACTIONS(7710), + [aux_sym_do_statement_token1] = ACTIONS(7710), + [aux_sym_do_condition_token1] = ACTIONS(7710), + [aux_sym_with_statement_token1] = ACTIONS(7710), + [aux_sym_exit_statement_token1] = ACTIONS(7710), + [sym_end_statement] = ACTIONS(7712), + [aux_sym_on_goto_statement_token1] = ACTIONS(7710), + [aux_sym_on_goto_statement_token2] = ACTIONS(7710), + [aux_sym_on_error_statement_token2] = ACTIONS(7710), + [sym__ambiguous_redim_statement] = ACTIONS(7712), + [aux_sym_erase_statement_token1] = ACTIONS(7710), + [aux_sym_open_statement_token1] = ACTIONS(7710), + [aux_sym_file_mode_token2] = ACTIONS(7710), + [aux_sym_file_access_token2] = ACTIONS(7710), + [aux_sym_file_lock_token2] = ACTIONS(7710), + [aux_sym_print_statement_token1] = ACTIONS(7710), + [anon_sym_PLUS] = ACTIONS(7712), + [anon_sym_DASH] = ACTIONS(7710), + [anon_sym_QMARK] = ACTIONS(7712), + [aux_sym_close_statement_token1] = ACTIONS(7710), + [aux_sym_put_statement_token1] = ACTIONS(7710), + [aux_sym_unlock_statement_token1] = ACTIONS(7710), + [aux_sym_seek_statement_token1] = ACTIONS(7710), + [sym_reset_statement] = ACTIONS(7710), + [aux_sym_raise_event_statement_token1] = ACTIONS(7710), + [sym_stop_statement] = ACTIONS(7710), + [sym_beep_statement] = ACTIONS(7710), + [aux_sym_unload_statement_token1] = ACTIONS(7710), + [aux_sym_def_type_statement_token1] = ACTIONS(7710), + [aux_sym_def_type_statement_token2] = ACTIONS(7710), + [aux_sym_def_type_statement_token3] = ACTIONS(7710), + [aux_sym_def_type_statement_token4] = ACTIONS(7710), + [aux_sym_def_type_statement_token5] = ACTIONS(7710), + [aux_sym_def_type_statement_token6] = ACTIONS(7710), + [aux_sym_def_type_statement_token7] = ACTIONS(7710), + [aux_sym_def_type_statement_token8] = ACTIONS(7710), + [aux_sym_def_type_statement_token9] = ACTIONS(7710), + [aux_sym_def_type_statement_token10] = ACTIONS(7710), + [aux_sym_def_type_statement_token11] = ACTIONS(7710), + [aux_sym_def_type_statement_token12] = ACTIONS(7710), + [aux_sym_def_type_statement_token13] = ACTIONS(7710), + [aux_sym_def_type_statement_token14] = ACTIONS(7710), + [aux_sym_call_statement_token1] = ACTIONS(7710), + [sym__ambiguous_call_statement] = ACTIONS(7710), + [aux_sym_addressof_expression_token1] = ACTIONS(7710), + [aux_sym_type_of_expression_token1] = ACTIONS(7710), + [aux_sym_unary_expression_token1] = ACTIONS(7710), + [sym_string_literal] = ACTIONS(7712), + [sym_number_literal] = ACTIONS(7712), + [aux_sym_boolean_literal_token1] = ACTIONS(7710), + [aux_sym_boolean_literal_token2] = ACTIONS(7710), + [sym_nothing_literal] = ACTIONS(7710), + [sym_null_literal] = ACTIONS(7710), + [sym_empty_literal] = ACTIONS(7710), + [sym_date_literal] = ACTIONS(7712), + [anon_sym_POUND] = ACTIONS(7710), + }, + [STATE(4905)] = { + [aux_sym_next_variable_list_repeat1] = STATE(4907), + [sym_identifier] = ACTIONS(7945), + [sym_newline] = ACTIONS(7947), + [anon_sym_COLON] = ACTIONS(7947), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7945), + [aux_sym_frm_property_statement_token1] = ACTIONS(7945), + [anon_sym_DOT] = ACTIONS(7945), + [anon_sym_BANG] = ACTIONS(7947), + [aux_sym__attribute_identifier_token1] = ACTIONS(7945), + [aux_sym_option_statement_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7945), + [aux_sym_preprocessor_const_token1] = ACTIONS(7945), + [sym_static_modifier] = ACTIONS(7945), + [sym__dim_keyword] = ACTIONS(7945), + [sym__redim_keyword] = ACTIONS(7945), + [aux_sym_get_accessor_token1] = ACTIONS(7945), + [aux_sym_set_accessor_token1] = ACTIONS(7945), + [anon_sym_COMMA] = ACTIONS(10287), + [aux_sym_const_declaration_token1] = ACTIONS(7945), + [anon_sym_LPAREN] = ACTIONS(7947), + [aux_sym_as_type_clause_token2] = ACTIONS(7945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7945), + [aux_sym_visibility_token1] = ACTIONS(7945), + [aux_sym_visibility_token2] = ACTIONS(7945), + [aux_sym_elseif_fragment_token1] = ACTIONS(7945), + [aux_sym_else_fragment_token1] = ACTIONS(7945), + [aux_sym_select_statement_token1] = ACTIONS(7945), + [aux_sym_select_statement_token2] = ACTIONS(7945), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7945), + [aux_sym__for_header_token1] = ACTIONS(7945), + [aux_sym_do_statement_token1] = ACTIONS(7945), + [aux_sym_do_condition_token1] = ACTIONS(7945), + [aux_sym_with_statement_token1] = ACTIONS(7945), + [aux_sym_exit_statement_token1] = ACTIONS(7945), + [sym_end_statement] = ACTIONS(7947), + [aux_sym_on_goto_statement_token1] = ACTIONS(7945), + [aux_sym_on_goto_statement_token2] = ACTIONS(7945), + [aux_sym_on_error_statement_token2] = ACTIONS(7945), + [sym__ambiguous_redim_statement] = ACTIONS(7947), + [aux_sym_erase_statement_token1] = ACTIONS(7945), + [aux_sym_open_statement_token1] = ACTIONS(7945), + [aux_sym_file_mode_token2] = ACTIONS(7945), + [aux_sym_file_access_token2] = ACTIONS(7945), + [aux_sym_file_lock_token2] = ACTIONS(7945), + [aux_sym_print_statement_token1] = ACTIONS(7945), + [anon_sym_PLUS] = ACTIONS(7947), + [anon_sym_DASH] = ACTIONS(7945), + [anon_sym_QMARK] = ACTIONS(7947), + [aux_sym_close_statement_token1] = ACTIONS(7945), + [aux_sym_put_statement_token1] = ACTIONS(7945), + [aux_sym_unlock_statement_token1] = ACTIONS(7945), + [aux_sym_seek_statement_token1] = ACTIONS(7945), + [sym_reset_statement] = ACTIONS(7945), + [aux_sym_raise_event_statement_token1] = ACTIONS(7945), + [sym_stop_statement] = ACTIONS(7945), + [sym_beep_statement] = ACTIONS(7945), + [aux_sym_unload_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token2] = ACTIONS(7945), + [aux_sym_def_type_statement_token3] = ACTIONS(7945), + [aux_sym_def_type_statement_token4] = ACTIONS(7945), + [aux_sym_def_type_statement_token5] = ACTIONS(7945), + [aux_sym_def_type_statement_token6] = ACTIONS(7945), + [aux_sym_def_type_statement_token7] = ACTIONS(7945), + [aux_sym_def_type_statement_token8] = ACTIONS(7945), + [aux_sym_def_type_statement_token9] = ACTIONS(7945), + [aux_sym_def_type_statement_token10] = ACTIONS(7945), + [aux_sym_def_type_statement_token11] = ACTIONS(7945), + [aux_sym_def_type_statement_token12] = ACTIONS(7945), + [aux_sym_def_type_statement_token13] = ACTIONS(7945), + [aux_sym_def_type_statement_token14] = ACTIONS(7945), + [aux_sym_call_statement_token1] = ACTIONS(7945), + [sym__ambiguous_call_statement] = ACTIONS(7945), + [aux_sym_addressof_expression_token1] = ACTIONS(7945), + [aux_sym_type_of_expression_token1] = ACTIONS(7945), + [aux_sym_unary_expression_token1] = ACTIONS(7945), + [sym_string_literal] = ACTIONS(7947), + [sym_number_literal] = ACTIONS(7947), + [aux_sym_boolean_literal_token1] = ACTIONS(7945), + [aux_sym_boolean_literal_token2] = ACTIONS(7945), + [sym_nothing_literal] = ACTIONS(7945), + [sym_null_literal] = ACTIONS(7945), + [sym_empty_literal] = ACTIONS(7945), + [sym_date_literal] = ACTIONS(7947), + [anon_sym_POUND] = ACTIONS(7945), + }, + [STATE(4906)] = { + [sym_identifier] = ACTIONS(7647), + [sym_newline] = ACTIONS(7649), + [anon_sym_COLON] = ACTIONS(7649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7647), + [aux_sym_frm_property_statement_token1] = ACTIONS(7647), + [anon_sym_DOT] = ACTIONS(7647), + [anon_sym_BANG] = ACTIONS(7649), + [aux_sym__attribute_identifier_token1] = ACTIONS(7647), + [aux_sym_option_statement_token3] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7647), + [aux_sym_preprocessor_const_token1] = ACTIONS(7647), + [sym_static_modifier] = ACTIONS(7647), + [sym__dim_keyword] = ACTIONS(7647), + [sym__redim_keyword] = ACTIONS(7647), + [aux_sym_get_accessor_token1] = ACTIONS(7647), + [aux_sym_set_accessor_token1] = ACTIONS(7647), + [anon_sym_COMMA] = ACTIONS(7649), + [aux_sym_const_declaration_token1] = ACTIONS(7647), + [anon_sym_LPAREN] = ACTIONS(7649), + [aux_sym_as_type_clause_token2] = ACTIONS(7647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7647), + [aux_sym_visibility_token1] = ACTIONS(7647), + [aux_sym_visibility_token2] = ACTIONS(7647), + [aux_sym_elseif_fragment_token1] = ACTIONS(7647), + [aux_sym_else_fragment_token1] = ACTIONS(7647), + [aux_sym_select_statement_token1] = ACTIONS(7647), + [aux_sym__for_header_token1] = ACTIONS(7647), + [aux_sym_do_statement_token1] = ACTIONS(7647), + [aux_sym_do_condition_token1] = ACTIONS(7647), + [aux_sym_with_statement_token1] = ACTIONS(7647), + [aux_sym_exit_statement_token1] = ACTIONS(7647), + [sym_end_statement] = ACTIONS(7649), + [aux_sym_on_goto_statement_token1] = ACTIONS(7647), + [aux_sym_on_goto_statement_token2] = ACTIONS(7647), + [aux_sym_on_error_statement_token2] = ACTIONS(7647), + [sym__ambiguous_redim_statement] = ACTIONS(7649), + [aux_sym_erase_statement_token1] = ACTIONS(7647), + [aux_sym_open_statement_token1] = ACTIONS(7647), + [aux_sym_file_mode_token2] = ACTIONS(7647), + [aux_sym_file_access_token2] = ACTIONS(7647), + [aux_sym_file_lock_token2] = ACTIONS(7647), + [aux_sym_print_statement_token1] = ACTIONS(7647), + [anon_sym_PLUS] = ACTIONS(7649), + [anon_sym_DASH] = ACTIONS(7647), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10289), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10291), + [anon_sym_SEMI] = ACTIONS(7649), + [anon_sym_QMARK] = ACTIONS(7649), + [aux_sym_close_statement_token1] = ACTIONS(7647), + [aux_sym_put_statement_token1] = ACTIONS(7647), + [aux_sym_unlock_statement_token1] = ACTIONS(7647), + [aux_sym_seek_statement_token1] = ACTIONS(7647), + [sym_reset_statement] = ACTIONS(7647), + [aux_sym_raise_event_statement_token1] = ACTIONS(7647), + [sym_stop_statement] = ACTIONS(7647), + [sym_beep_statement] = ACTIONS(7647), + [aux_sym_unload_statement_token1] = ACTIONS(7647), + [aux_sym_def_type_statement_token1] = ACTIONS(7647), + [aux_sym_def_type_statement_token2] = ACTIONS(7647), + [aux_sym_def_type_statement_token3] = ACTIONS(7647), + [aux_sym_def_type_statement_token4] = ACTIONS(7647), + [aux_sym_def_type_statement_token5] = ACTIONS(7647), + [aux_sym_def_type_statement_token6] = ACTIONS(7647), + [aux_sym_def_type_statement_token7] = ACTIONS(7647), + [aux_sym_def_type_statement_token8] = ACTIONS(7647), + [aux_sym_def_type_statement_token9] = ACTIONS(7647), + [aux_sym_def_type_statement_token10] = ACTIONS(7647), + [aux_sym_def_type_statement_token11] = ACTIONS(7647), + [aux_sym_def_type_statement_token12] = ACTIONS(7647), + [aux_sym_def_type_statement_token13] = ACTIONS(7647), + [aux_sym_def_type_statement_token14] = ACTIONS(7647), + [aux_sym_call_statement_token1] = ACTIONS(7647), + [sym__ambiguous_call_statement] = ACTIONS(7647), + [aux_sym_addressof_expression_token1] = ACTIONS(7647), + [aux_sym_type_of_expression_token1] = ACTIONS(7647), + [aux_sym_unary_expression_token1] = ACTIONS(7647), + [sym_string_literal] = ACTIONS(7649), + [sym_number_literal] = ACTIONS(7649), + [aux_sym_boolean_literal_token1] = ACTIONS(7647), + [aux_sym_boolean_literal_token2] = ACTIONS(7647), + [sym_nothing_literal] = ACTIONS(7647), + [sym_null_literal] = ACTIONS(7647), + [sym_empty_literal] = ACTIONS(7647), + [sym_date_literal] = ACTIONS(7649), + [anon_sym_POUND] = ACTIONS(7647), + }, + [STATE(4907)] = { + [aux_sym_next_variable_list_repeat1] = STATE(4907), + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(10293), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym_select_statement_token2] = ACTIONS(7949), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(4908)] = { + [sym_identifier] = ACTIONS(8805), + [sym_newline] = ACTIONS(8807), + [anon_sym_COLON] = ACTIONS(8807), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8805), + [aux_sym_frm_property_statement_token1] = ACTIONS(8805), + [anon_sym_DOT] = ACTIONS(8805), + [anon_sym_BANG] = ACTIONS(8807), + [aux_sym__attribute_identifier_token1] = ACTIONS(8805), + [aux_sym_option_statement_token3] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8805), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8805), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8805), + [aux_sym_preprocessor_const_token1] = ACTIONS(8805), + [sym_static_modifier] = ACTIONS(8805), + [sym__dim_keyword] = ACTIONS(8805), + [sym__redim_keyword] = ACTIONS(8805), + [aux_sym_get_accessor_token1] = ACTIONS(8805), + [aux_sym_set_accessor_token1] = ACTIONS(8805), + [anon_sym_COMMA] = ACTIONS(8807), + [aux_sym_const_declaration_token1] = ACTIONS(8805), + [anon_sym_LPAREN] = ACTIONS(8807), + [aux_sym_as_type_clause_token2] = ACTIONS(8805), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8805), + [aux_sym_visibility_token1] = ACTIONS(8805), + [aux_sym_visibility_token2] = ACTIONS(8805), + [aux_sym_elseif_fragment_token1] = ACTIONS(8805), + [aux_sym_else_fragment_token1] = ACTIONS(8805), + [aux_sym_select_statement_token1] = ACTIONS(8805), + [aux_sym__for_header_token1] = ACTIONS(8805), + [aux_sym_do_statement_token1] = ACTIONS(8805), + [aux_sym_do_condition_token1] = ACTIONS(8805), + [aux_sym_with_statement_token1] = ACTIONS(8805), + [aux_sym_exit_statement_token1] = ACTIONS(8805), + [sym_end_statement] = ACTIONS(8807), + [aux_sym_on_goto_statement_token1] = ACTIONS(8805), + [aux_sym_on_goto_statement_token2] = ACTIONS(8805), + [aux_sym_on_error_statement_token2] = ACTIONS(8805), + [sym__ambiguous_redim_statement] = ACTIONS(8807), + [aux_sym_erase_statement_token1] = ACTIONS(8805), + [aux_sym_open_statement_token1] = ACTIONS(8805), + [aux_sym_file_mode_token2] = ACTIONS(8805), + [aux_sym_file_access_token2] = ACTIONS(8805), + [aux_sym_file_lock_token2] = ACTIONS(8805), + [aux_sym_print_statement_token1] = ACTIONS(8805), + [anon_sym_PLUS] = ACTIONS(8807), + [anon_sym_DASH] = ACTIONS(8805), + [anon_sym_QMARK] = ACTIONS(8807), + [aux_sym_close_statement_token1] = ACTIONS(8805), + [aux_sym_put_statement_token1] = ACTIONS(8805), + [aux_sym_unlock_statement_token1] = ACTIONS(8805), + [aux_sym_seek_statement_token1] = ACTIONS(8805), + [sym_reset_statement] = ACTIONS(8805), + [aux_sym_raise_event_statement_token1] = ACTIONS(8805), + [sym_stop_statement] = ACTIONS(8805), + [sym_beep_statement] = ACTIONS(8805), + [aux_sym_unload_statement_token1] = ACTIONS(8805), + [aux_sym_def_type_statement_token1] = ACTIONS(8805), + [aux_sym_def_type_statement_token2] = ACTIONS(8805), + [aux_sym_def_type_statement_token3] = ACTIONS(8805), + [aux_sym_def_type_statement_token4] = ACTIONS(8805), + [aux_sym_def_type_statement_token5] = ACTIONS(8805), + [aux_sym_def_type_statement_token6] = ACTIONS(8805), + [aux_sym_def_type_statement_token7] = ACTIONS(8805), + [aux_sym_def_type_statement_token8] = ACTIONS(8805), + [aux_sym_def_type_statement_token9] = ACTIONS(8805), + [aux_sym_def_type_statement_token10] = ACTIONS(8805), + [aux_sym_def_type_statement_token11] = ACTIONS(8805), + [aux_sym_def_type_statement_token12] = ACTIONS(8805), + [aux_sym_def_type_statement_token13] = ACTIONS(8805), + [aux_sym_def_type_statement_token14] = ACTIONS(8805), + [aux_sym_call_statement_token1] = ACTIONS(8805), + [sym__ambiguous_call_statement] = ACTIONS(8805), + [aux_sym_addressof_expression_token1] = ACTIONS(8805), + [aux_sym_type_of_expression_token1] = ACTIONS(8805), + [aux_sym_unary_expression_token1] = ACTIONS(8805), + [sym_string_literal] = ACTIONS(8807), + [sym_number_literal] = ACTIONS(8807), + [aux_sym_boolean_literal_token1] = ACTIONS(8805), + [aux_sym_boolean_literal_token2] = ACTIONS(8805), + [sym_nothing_literal] = ACTIONS(8805), + [sym_null_literal] = ACTIONS(8805), + [sym_empty_literal] = ACTIONS(8805), + [sym_date_literal] = ACTIONS(8807), + [anon_sym_POUND] = ACTIONS(8805), + }, + [STATE(4909)] = { + [sym_identifier] = ACTIONS(8357), + [sym_newline] = ACTIONS(8359), + [anon_sym_COLON] = ACTIONS(8359), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8357), + [aux_sym_frm_property_statement_token1] = ACTIONS(8357), + [anon_sym_DOT] = ACTIONS(8357), + [anon_sym_BANG] = ACTIONS(8359), + [aux_sym__attribute_identifier_token1] = ACTIONS(8357), + [aux_sym_option_statement_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8357), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8357), + [aux_sym_preprocessor_const_token1] = ACTIONS(8357), + [sym_static_modifier] = ACTIONS(8357), + [sym__dim_keyword] = ACTIONS(8357), + [sym__redim_keyword] = ACTIONS(8357), + [aux_sym_get_accessor_token1] = ACTIONS(8357), + [aux_sym_set_accessor_token1] = ACTIONS(8357), + [anon_sym_COMMA] = ACTIONS(8359), + [aux_sym_const_declaration_token1] = ACTIONS(8357), + [anon_sym_LPAREN] = ACTIONS(8359), + [aux_sym_as_type_clause_token2] = ACTIONS(8357), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8357), + [aux_sym_visibility_token1] = ACTIONS(8357), + [aux_sym_visibility_token2] = ACTIONS(8357), + [aux_sym_elseif_fragment_token1] = ACTIONS(8357), + [aux_sym_else_fragment_token1] = ACTIONS(8357), + [aux_sym_select_statement_token1] = ACTIONS(8357), + [aux_sym__for_header_token1] = ACTIONS(8357), + [aux_sym_do_statement_token1] = ACTIONS(8357), + [aux_sym_do_condition_token1] = ACTIONS(8357), + [aux_sym_with_statement_token1] = ACTIONS(8357), + [aux_sym_exit_statement_token1] = ACTIONS(8357), + [sym_end_statement] = ACTIONS(8359), + [aux_sym_on_goto_statement_token1] = ACTIONS(8357), + [aux_sym_on_goto_statement_token2] = ACTIONS(8357), + [aux_sym_on_error_statement_token2] = ACTIONS(8357), + [sym__ambiguous_redim_statement] = ACTIONS(8359), + [aux_sym_erase_statement_token1] = ACTIONS(8357), + [aux_sym_open_statement_token1] = ACTIONS(8357), + [aux_sym_file_mode_token2] = ACTIONS(8357), + [aux_sym_file_access_token2] = ACTIONS(8357), + [aux_sym_file_lock_token2] = ACTIONS(8357), + [aux_sym_print_statement_token1] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_QMARK] = ACTIONS(8359), + [aux_sym_close_statement_token1] = ACTIONS(8357), + [aux_sym_put_statement_token1] = ACTIONS(8357), + [aux_sym_unlock_statement_token1] = ACTIONS(8357), + [aux_sym_seek_statement_token1] = ACTIONS(8357), + [sym_reset_statement] = ACTIONS(8357), + [aux_sym_raise_event_statement_token1] = ACTIONS(8357), + [sym_stop_statement] = ACTIONS(8357), + [sym_beep_statement] = ACTIONS(8357), + [aux_sym_unload_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token2] = ACTIONS(8357), + [aux_sym_def_type_statement_token3] = ACTIONS(8357), + [aux_sym_def_type_statement_token4] = ACTIONS(8357), + [aux_sym_def_type_statement_token5] = ACTIONS(8357), + [aux_sym_def_type_statement_token6] = ACTIONS(8357), + [aux_sym_def_type_statement_token7] = ACTIONS(8357), + [aux_sym_def_type_statement_token8] = ACTIONS(8357), + [aux_sym_def_type_statement_token9] = ACTIONS(8357), + [aux_sym_def_type_statement_token10] = ACTIONS(8357), + [aux_sym_def_type_statement_token11] = ACTIONS(8357), + [aux_sym_def_type_statement_token12] = ACTIONS(8357), + [aux_sym_def_type_statement_token13] = ACTIONS(8357), + [aux_sym_def_type_statement_token14] = ACTIONS(8357), + [aux_sym_call_statement_token1] = ACTIONS(8357), + [sym__ambiguous_call_statement] = ACTIONS(8357), + [aux_sym_addressof_expression_token1] = ACTIONS(8357), + [aux_sym_type_of_expression_token1] = ACTIONS(8357), + [aux_sym_unary_expression_token1] = ACTIONS(8357), + [sym_string_literal] = ACTIONS(8359), + [sym_number_literal] = ACTIONS(8359), + [aux_sym_boolean_literal_token1] = ACTIONS(8357), + [aux_sym_boolean_literal_token2] = ACTIONS(8357), + [sym_nothing_literal] = ACTIONS(8357), + [sym_null_literal] = ACTIONS(8357), + [sym_empty_literal] = ACTIONS(8357), + [sym_date_literal] = ACTIONS(8359), + [anon_sym_POUND] = ACTIONS(8357), + }, + [STATE(4910)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(4910), + [sym_identifier] = ACTIONS(5841), + [sym_newline] = ACTIONS(5843), + [anon_sym_COLON] = ACTIONS(5843), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5841), + [aux_sym_frm_property_statement_token1] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5843), + [aux_sym__attribute_identifier_token1] = ACTIONS(5841), + [aux_sym_option_statement_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5841), + [aux_sym_preprocessor_const_token1] = ACTIONS(5841), + [sym_static_modifier] = ACTIONS(5841), + [sym__dim_keyword] = ACTIONS(5841), + [sym__redim_keyword] = ACTIONS(5841), + [aux_sym_get_accessor_token1] = ACTIONS(5841), + [aux_sym_set_accessor_token1] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(10296), + [aux_sym_const_declaration_token1] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5843), + [aux_sym_as_type_clause_token2] = ACTIONS(5841), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5841), + [aux_sym_visibility_token1] = ACTIONS(5841), + [aux_sym_visibility_token2] = ACTIONS(5841), + [aux_sym_elseif_fragment_token1] = ACTIONS(5841), + [aux_sym_else_fragment_token1] = ACTIONS(5841), + [aux_sym_select_statement_token1] = ACTIONS(5841), + [aux_sym__for_header_token1] = ACTIONS(5841), + [aux_sym_do_statement_token1] = ACTIONS(5841), + [aux_sym_do_condition_token1] = ACTIONS(5841), + [aux_sym_with_statement_token1] = ACTIONS(5841), + [aux_sym_exit_statement_token1] = ACTIONS(5841), + [sym_end_statement] = ACTIONS(5843), + [aux_sym_on_goto_statement_token1] = ACTIONS(5841), + [aux_sym_on_goto_statement_token2] = ACTIONS(5841), + [aux_sym_on_error_statement_token2] = ACTIONS(5841), + [sym__ambiguous_redim_statement] = ACTIONS(5843), + [aux_sym_erase_statement_token1] = ACTIONS(5841), + [aux_sym_open_statement_token1] = ACTIONS(5841), + [aux_sym_file_mode_token2] = ACTIONS(5841), + [aux_sym_file_access_token2] = ACTIONS(5841), + [aux_sym_file_lock_token2] = ACTIONS(5841), + [aux_sym_print_statement_token1] = ACTIONS(5841), + [anon_sym_PLUS] = ACTIONS(5843), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_SEMI] = ACTIONS(10296), + [anon_sym_QMARK] = ACTIONS(5843), + [aux_sym_close_statement_token1] = ACTIONS(5841), + [aux_sym_put_statement_token1] = ACTIONS(5841), + [aux_sym_unlock_statement_token1] = ACTIONS(5841), + [aux_sym_seek_statement_token1] = ACTIONS(5841), + [sym_reset_statement] = ACTIONS(5841), + [aux_sym_raise_event_statement_token1] = ACTIONS(5841), + [sym_stop_statement] = ACTIONS(5841), + [sym_beep_statement] = ACTIONS(5841), + [aux_sym_unload_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token2] = ACTIONS(5841), + [aux_sym_def_type_statement_token3] = ACTIONS(5841), + [aux_sym_def_type_statement_token4] = ACTIONS(5841), + [aux_sym_def_type_statement_token5] = ACTIONS(5841), + [aux_sym_def_type_statement_token6] = ACTIONS(5841), + [aux_sym_def_type_statement_token7] = ACTIONS(5841), + [aux_sym_def_type_statement_token8] = ACTIONS(5841), + [aux_sym_def_type_statement_token9] = ACTIONS(5841), + [aux_sym_def_type_statement_token10] = ACTIONS(5841), + [aux_sym_def_type_statement_token11] = ACTIONS(5841), + [aux_sym_def_type_statement_token12] = ACTIONS(5841), + [aux_sym_def_type_statement_token13] = ACTIONS(5841), + [aux_sym_def_type_statement_token14] = ACTIONS(5841), + [aux_sym_call_statement_token1] = ACTIONS(5841), + [sym__ambiguous_call_statement] = ACTIONS(5841), + [aux_sym_addressof_expression_token1] = ACTIONS(5841), + [aux_sym_type_of_expression_token1] = ACTIONS(5841), + [aux_sym_unary_expression_token1] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5843), + [sym_number_literal] = ACTIONS(5843), + [aux_sym_boolean_literal_token1] = ACTIONS(5841), + [aux_sym_boolean_literal_token2] = ACTIONS(5841), + [sym_nothing_literal] = ACTIONS(5841), + [sym_null_literal] = ACTIONS(5841), + [sym_empty_literal] = ACTIONS(5841), + [sym_date_literal] = ACTIONS(5843), + [anon_sym_POUND] = ACTIONS(5841), + }, + [STATE(4911)] = { + [sym_identifier] = ACTIONS(8467), + [sym_newline] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8467), + [aux_sym_frm_property_statement_token1] = ACTIONS(8467), + [anon_sym_DOT] = ACTIONS(8467), + [anon_sym_BANG] = ACTIONS(6089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8467), + [aux_sym_option_statement_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8467), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8467), + [aux_sym_preprocessor_const_token1] = ACTIONS(8467), + [sym_static_modifier] = ACTIONS(8467), + [sym__dim_keyword] = ACTIONS(8467), + [sym__redim_keyword] = ACTIONS(8467), + [aux_sym_get_accessor_token1] = ACTIONS(8467), + [aux_sym_set_accessor_token1] = ACTIONS(8467), + [anon_sym_COMMA] = ACTIONS(6089), + [aux_sym_const_declaration_token1] = ACTIONS(8467), + [anon_sym_LPAREN] = ACTIONS(6089), + [aux_sym_as_type_clause_token2] = ACTIONS(8467), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8467), + [aux_sym_visibility_token1] = ACTIONS(8467), + [aux_sym_visibility_token2] = ACTIONS(8467), + [aux_sym_elseif_fragment_token1] = ACTIONS(8467), + [aux_sym_else_fragment_token1] = ACTIONS(8467), + [aux_sym_select_statement_token1] = ACTIONS(8467), + [aux_sym__for_header_token1] = ACTIONS(8467), + [aux_sym_do_statement_token1] = ACTIONS(8467), + [aux_sym_do_condition_token1] = ACTIONS(8467), + [aux_sym_with_statement_token1] = ACTIONS(8467), + [aux_sym_exit_statement_token1] = ACTIONS(8467), + [sym_end_statement] = ACTIONS(6089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8467), + [aux_sym_on_goto_statement_token2] = ACTIONS(8467), + [aux_sym_on_error_statement_token2] = ACTIONS(8467), + [sym__ambiguous_redim_statement] = ACTIONS(6089), + [aux_sym_erase_statement_token1] = ACTIONS(8467), + [aux_sym_open_statement_token1] = ACTIONS(8467), + [aux_sym_file_mode_token2] = ACTIONS(8467), + [aux_sym_file_access_token2] = ACTIONS(8467), + [aux_sym_file_lock_token2] = ACTIONS(8467), + [aux_sym_print_statement_token1] = ACTIONS(8467), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(8467), + [anon_sym_QMARK] = ACTIONS(6089), + [aux_sym_close_statement_token1] = ACTIONS(8467), + [aux_sym_put_statement_token1] = ACTIONS(8467), + [aux_sym_unlock_statement_token1] = ACTIONS(8467), + [aux_sym_seek_statement_token1] = ACTIONS(8467), + [sym_reset_statement] = ACTIONS(8467), + [aux_sym_raise_event_statement_token1] = ACTIONS(8467), + [sym_stop_statement] = ACTIONS(8467), + [sym_beep_statement] = ACTIONS(8467), + [aux_sym_unload_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token2] = ACTIONS(8467), + [aux_sym_def_type_statement_token3] = ACTIONS(8467), + [aux_sym_def_type_statement_token4] = ACTIONS(8467), + [aux_sym_def_type_statement_token5] = ACTIONS(8467), + [aux_sym_def_type_statement_token6] = ACTIONS(8467), + [aux_sym_def_type_statement_token7] = ACTIONS(8467), + [aux_sym_def_type_statement_token8] = ACTIONS(8467), + [aux_sym_def_type_statement_token9] = ACTIONS(8467), + [aux_sym_def_type_statement_token10] = ACTIONS(8467), + [aux_sym_def_type_statement_token11] = ACTIONS(8467), + [aux_sym_def_type_statement_token12] = ACTIONS(8467), + [aux_sym_def_type_statement_token13] = ACTIONS(8467), + [aux_sym_def_type_statement_token14] = ACTIONS(8467), + [aux_sym_call_statement_token1] = ACTIONS(8467), + [sym__ambiguous_call_statement] = ACTIONS(8467), + [aux_sym_addressof_expression_token1] = ACTIONS(8467), + [aux_sym_type_of_expression_token1] = ACTIONS(8467), + [aux_sym_unary_expression_token1] = ACTIONS(8467), + [sym_string_literal] = ACTIONS(6089), + [sym_number_literal] = ACTIONS(6089), + [aux_sym_boolean_literal_token1] = ACTIONS(8467), + [aux_sym_boolean_literal_token2] = ACTIONS(8467), + [sym_nothing_literal] = ACTIONS(8467), + [sym_null_literal] = ACTIONS(8467), + [sym_empty_literal] = ACTIONS(8467), + [sym_date_literal] = ACTIONS(6089), + [anon_sym_POUND] = ACTIONS(8467), + }, + [STATE(4912)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(4913), + [sym_identifier] = ACTIONS(8066), + [sym_newline] = ACTIONS(8068), + [anon_sym_COLON] = ACTIONS(8068), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8066), + [aux_sym_frm_property_statement_token1] = ACTIONS(8066), + [anon_sym_DOT] = ACTIONS(8066), + [anon_sym_BANG] = ACTIONS(8068), + [aux_sym__attribute_identifier_token1] = ACTIONS(8066), + [aux_sym_option_statement_token3] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8066), + [aux_sym_preprocessor_const_token1] = ACTIONS(8066), + [sym_static_modifier] = ACTIONS(8066), + [sym__dim_keyword] = ACTIONS(8066), + [sym__redim_keyword] = ACTIONS(8066), + [aux_sym_get_accessor_token1] = ACTIONS(8066), + [aux_sym_set_accessor_token1] = ACTIONS(8066), + [anon_sym_COMMA] = ACTIONS(7204), + [aux_sym_const_declaration_token1] = ACTIONS(8066), + [anon_sym_LPAREN] = ACTIONS(8068), + [aux_sym_as_type_clause_token2] = ACTIONS(8066), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8066), + [aux_sym_visibility_token1] = ACTIONS(8066), + [aux_sym_visibility_token2] = ACTIONS(8066), + [aux_sym_elseif_fragment_token1] = ACTIONS(8066), + [aux_sym_else_fragment_token1] = ACTIONS(8066), + [aux_sym_select_statement_token1] = ACTIONS(8066), + [aux_sym__for_header_token1] = ACTIONS(8066), + [aux_sym_do_statement_token1] = ACTIONS(8066), + [aux_sym_do_condition_token1] = ACTIONS(8066), + [aux_sym_while_statement_token1] = ACTIONS(8066), + [aux_sym_with_statement_token1] = ACTIONS(8066), + [aux_sym_exit_statement_token1] = ACTIONS(8066), + [sym_end_statement] = ACTIONS(8068), + [aux_sym_on_goto_statement_token1] = ACTIONS(8066), + [aux_sym_on_goto_statement_token2] = ACTIONS(8066), + [aux_sym_on_error_statement_token2] = ACTIONS(8066), + [sym__ambiguous_redim_statement] = ACTIONS(8068), + [aux_sym_erase_statement_token1] = ACTIONS(8066), + [aux_sym_open_statement_token1] = ACTIONS(8066), + [aux_sym_file_mode_token2] = ACTIONS(8066), + [aux_sym_file_access_token2] = ACTIONS(8066), + [aux_sym_file_lock_token2] = ACTIONS(8066), + [aux_sym_print_statement_token1] = ACTIONS(8066), + [anon_sym_PLUS] = ACTIONS(8068), + [anon_sym_DASH] = ACTIONS(8066), + [anon_sym_SEMI] = ACTIONS(7204), + [anon_sym_QMARK] = ACTIONS(8068), + [aux_sym_close_statement_token1] = ACTIONS(8066), + [aux_sym_put_statement_token1] = ACTIONS(8066), + [aux_sym_unlock_statement_token1] = ACTIONS(8066), + [aux_sym_seek_statement_token1] = ACTIONS(8066), + [sym_reset_statement] = ACTIONS(8066), + [aux_sym_raise_event_statement_token1] = ACTIONS(8066), + [sym_stop_statement] = ACTIONS(8066), + [sym_beep_statement] = ACTIONS(8066), + [aux_sym_unload_statement_token1] = ACTIONS(8066), + [aux_sym_def_type_statement_token1] = ACTIONS(8066), + [aux_sym_def_type_statement_token2] = ACTIONS(8066), + [aux_sym_def_type_statement_token3] = ACTIONS(8066), + [aux_sym_def_type_statement_token4] = ACTIONS(8066), + [aux_sym_def_type_statement_token5] = ACTIONS(8066), + [aux_sym_def_type_statement_token6] = ACTIONS(8066), + [aux_sym_def_type_statement_token7] = ACTIONS(8066), + [aux_sym_def_type_statement_token8] = ACTIONS(8066), + [aux_sym_def_type_statement_token9] = ACTIONS(8066), + [aux_sym_def_type_statement_token10] = ACTIONS(8066), + [aux_sym_def_type_statement_token11] = ACTIONS(8066), + [aux_sym_def_type_statement_token12] = ACTIONS(8066), + [aux_sym_def_type_statement_token13] = ACTIONS(8066), + [aux_sym_def_type_statement_token14] = ACTIONS(8066), + [aux_sym_call_statement_token1] = ACTIONS(8066), + [sym__ambiguous_call_statement] = ACTIONS(8066), + [aux_sym_addressof_expression_token1] = ACTIONS(8066), + [aux_sym_type_of_expression_token1] = ACTIONS(8066), + [aux_sym_unary_expression_token1] = ACTIONS(8066), + [sym_string_literal] = ACTIONS(8068), + [sym_number_literal] = ACTIONS(8068), + [aux_sym_boolean_literal_token1] = ACTIONS(8066), + [aux_sym_boolean_literal_token2] = ACTIONS(8066), + [sym_nothing_literal] = ACTIONS(8066), + [sym_null_literal] = ACTIONS(8066), + [sym_empty_literal] = ACTIONS(8066), + [sym_date_literal] = ACTIONS(8068), + [anon_sym_POUND] = ACTIONS(8066), + }, + [STATE(4913)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(4913), + [sym_identifier] = ACTIONS(5841), + [sym_newline] = ACTIONS(5843), + [anon_sym_COLON] = ACTIONS(5843), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5841), + [aux_sym_frm_property_statement_token1] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5843), + [aux_sym__attribute_identifier_token1] = ACTIONS(5841), + [aux_sym_option_statement_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5841), + [aux_sym_preprocessor_const_token1] = ACTIONS(5841), + [sym_static_modifier] = ACTIONS(5841), + [sym__dim_keyword] = ACTIONS(5841), + [sym__redim_keyword] = ACTIONS(5841), + [aux_sym_get_accessor_token1] = ACTIONS(5841), + [aux_sym_set_accessor_token1] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(10299), + [aux_sym_const_declaration_token1] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5843), + [aux_sym_as_type_clause_token2] = ACTIONS(5841), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5841), + [aux_sym_visibility_token1] = ACTIONS(5841), + [aux_sym_visibility_token2] = ACTIONS(5841), + [aux_sym_elseif_fragment_token1] = ACTIONS(5841), + [aux_sym_else_fragment_token1] = ACTIONS(5841), + [aux_sym_select_statement_token1] = ACTIONS(5841), + [aux_sym__for_header_token1] = ACTIONS(5841), + [aux_sym_do_statement_token1] = ACTIONS(5841), + [aux_sym_do_condition_token1] = ACTIONS(5841), + [aux_sym_while_statement_token1] = ACTIONS(5841), + [aux_sym_with_statement_token1] = ACTIONS(5841), + [aux_sym_exit_statement_token1] = ACTIONS(5841), + [sym_end_statement] = ACTIONS(5843), + [aux_sym_on_goto_statement_token1] = ACTIONS(5841), + [aux_sym_on_goto_statement_token2] = ACTIONS(5841), + [aux_sym_on_error_statement_token2] = ACTIONS(5841), + [sym__ambiguous_redim_statement] = ACTIONS(5843), + [aux_sym_erase_statement_token1] = ACTIONS(5841), + [aux_sym_open_statement_token1] = ACTIONS(5841), + [aux_sym_file_mode_token2] = ACTIONS(5841), + [aux_sym_file_access_token2] = ACTIONS(5841), + [aux_sym_file_lock_token2] = ACTIONS(5841), + [aux_sym_print_statement_token1] = ACTIONS(5841), + [anon_sym_PLUS] = ACTIONS(5843), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_SEMI] = ACTIONS(10299), + [anon_sym_QMARK] = ACTIONS(5843), + [aux_sym_close_statement_token1] = ACTIONS(5841), + [aux_sym_put_statement_token1] = ACTIONS(5841), + [aux_sym_unlock_statement_token1] = ACTIONS(5841), + [aux_sym_seek_statement_token1] = ACTIONS(5841), + [sym_reset_statement] = ACTIONS(5841), + [aux_sym_raise_event_statement_token1] = ACTIONS(5841), + [sym_stop_statement] = ACTIONS(5841), + [sym_beep_statement] = ACTIONS(5841), + [aux_sym_unload_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token2] = ACTIONS(5841), + [aux_sym_def_type_statement_token3] = ACTIONS(5841), + [aux_sym_def_type_statement_token4] = ACTIONS(5841), + [aux_sym_def_type_statement_token5] = ACTIONS(5841), + [aux_sym_def_type_statement_token6] = ACTIONS(5841), + [aux_sym_def_type_statement_token7] = ACTIONS(5841), + [aux_sym_def_type_statement_token8] = ACTIONS(5841), + [aux_sym_def_type_statement_token9] = ACTIONS(5841), + [aux_sym_def_type_statement_token10] = ACTIONS(5841), + [aux_sym_def_type_statement_token11] = ACTIONS(5841), + [aux_sym_def_type_statement_token12] = ACTIONS(5841), + [aux_sym_def_type_statement_token13] = ACTIONS(5841), + [aux_sym_def_type_statement_token14] = ACTIONS(5841), + [aux_sym_call_statement_token1] = ACTIONS(5841), + [sym__ambiguous_call_statement] = ACTIONS(5841), + [aux_sym_addressof_expression_token1] = ACTIONS(5841), + [aux_sym_type_of_expression_token1] = ACTIONS(5841), + [aux_sym_unary_expression_token1] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5843), + [sym_number_literal] = ACTIONS(5843), + [aux_sym_boolean_literal_token1] = ACTIONS(5841), + [aux_sym_boolean_literal_token2] = ACTIONS(5841), + [sym_nothing_literal] = ACTIONS(5841), + [sym_null_literal] = ACTIONS(5841), + [sym_empty_literal] = ACTIONS(5841), + [sym_date_literal] = ACTIONS(5843), + [anon_sym_POUND] = ACTIONS(5841), + }, + [STATE(4914)] = { + [sym_identifier] = ACTIONS(8939), + [sym_newline] = ACTIONS(8941), + [anon_sym_COLON] = ACTIONS(8941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8939), + [aux_sym_frm_property_statement_token1] = ACTIONS(8939), + [anon_sym_DOT] = ACTIONS(8939), + [anon_sym_BANG] = ACTIONS(8941), + [aux_sym__attribute_identifier_token1] = ACTIONS(8939), + [aux_sym_option_statement_token3] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8939), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8939), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8939), + [aux_sym_preprocessor_const_token1] = ACTIONS(8939), + [sym_static_modifier] = ACTIONS(8939), + [sym__dim_keyword] = ACTIONS(8939), + [sym__redim_keyword] = ACTIONS(8939), + [aux_sym_get_accessor_token1] = ACTIONS(8939), + [aux_sym_set_accessor_token1] = ACTIONS(8939), + [anon_sym_COMMA] = ACTIONS(10302), + [aux_sym_const_declaration_token1] = ACTIONS(8939), + [anon_sym_LPAREN] = ACTIONS(8941), + [aux_sym_as_type_clause_token2] = ACTIONS(8939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8939), + [aux_sym_visibility_token1] = ACTIONS(8939), + [aux_sym_visibility_token2] = ACTIONS(8939), + [aux_sym_elseif_fragment_token1] = ACTIONS(8939), + [aux_sym_else_fragment_token1] = ACTIONS(8939), + [aux_sym_select_statement_token1] = ACTIONS(8939), + [aux_sym__for_header_token1] = ACTIONS(8939), + [aux_sym_do_statement_token1] = ACTIONS(8939), + [aux_sym_do_condition_token1] = ACTIONS(8939), + [aux_sym_with_statement_token1] = ACTIONS(8939), + [aux_sym_exit_statement_token1] = ACTIONS(8939), + [sym_end_statement] = ACTIONS(8941), + [aux_sym_on_goto_statement_token1] = ACTIONS(8939), + [aux_sym_on_goto_statement_token2] = ACTIONS(8939), + [aux_sym_on_error_statement_token2] = ACTIONS(8939), + [sym__ambiguous_redim_statement] = ACTIONS(8941), + [aux_sym_erase_statement_token1] = ACTIONS(8939), + [aux_sym_open_statement_token1] = ACTIONS(8939), + [aux_sym_file_mode_token2] = ACTIONS(8939), + [aux_sym_file_access_token2] = ACTIONS(8939), + [aux_sym_file_lock_token2] = ACTIONS(8939), + [aux_sym_print_statement_token1] = ACTIONS(8939), + [anon_sym_PLUS] = ACTIONS(8941), + [anon_sym_DASH] = ACTIONS(8939), + [anon_sym_QMARK] = ACTIONS(8941), + [aux_sym_close_statement_token1] = ACTIONS(8939), + [aux_sym_put_statement_token1] = ACTIONS(8939), + [aux_sym_unlock_statement_token1] = ACTIONS(8939), + [aux_sym_seek_statement_token1] = ACTIONS(8939), + [sym_reset_statement] = ACTIONS(8939), + [aux_sym_raise_event_statement_token1] = ACTIONS(8939), + [sym_stop_statement] = ACTIONS(8939), + [sym_beep_statement] = ACTIONS(8939), + [aux_sym_unload_statement_token1] = ACTIONS(8939), + [aux_sym_def_type_statement_token1] = ACTIONS(8939), + [aux_sym_def_type_statement_token2] = ACTIONS(8939), + [aux_sym_def_type_statement_token3] = ACTIONS(8939), + [aux_sym_def_type_statement_token4] = ACTIONS(8939), + [aux_sym_def_type_statement_token5] = ACTIONS(8939), + [aux_sym_def_type_statement_token6] = ACTIONS(8939), + [aux_sym_def_type_statement_token7] = ACTIONS(8939), + [aux_sym_def_type_statement_token8] = ACTIONS(8939), + [aux_sym_def_type_statement_token9] = ACTIONS(8939), + [aux_sym_def_type_statement_token10] = ACTIONS(8939), + [aux_sym_def_type_statement_token11] = ACTIONS(8939), + [aux_sym_def_type_statement_token12] = ACTIONS(8939), + [aux_sym_def_type_statement_token13] = ACTIONS(8939), + [aux_sym_def_type_statement_token14] = ACTIONS(8939), + [aux_sym_call_statement_token1] = ACTIONS(8939), + [sym__ambiguous_call_statement] = ACTIONS(8939), + [aux_sym_addressof_expression_token1] = ACTIONS(8939), + [aux_sym_type_of_expression_token1] = ACTIONS(8939), + [aux_sym_unary_expression_token1] = ACTIONS(8939), + [sym_string_literal] = ACTIONS(8941), + [sym_number_literal] = ACTIONS(8941), + [aux_sym_boolean_literal_token1] = ACTIONS(8939), + [aux_sym_boolean_literal_token2] = ACTIONS(8939), + [sym_nothing_literal] = ACTIONS(8939), + [sym_null_literal] = ACTIONS(8939), + [sym_empty_literal] = ACTIONS(8939), + [sym_date_literal] = ACTIONS(8941), + [anon_sym_POUND] = ACTIONS(8939), + }, + [STATE(4915)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(4916)] = { + [sym_initializer] = STATE(6011), + [sym_identifier] = ACTIONS(8087), + [sym_newline] = ACTIONS(8089), + [anon_sym_COLON] = ACTIONS(8089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8087), + [aux_sym_frm_property_statement_token1] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(10032), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_BANG] = ACTIONS(8089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8087), + [aux_sym_option_statement_token3] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8087), + [aux_sym_preprocessor_const_token1] = ACTIONS(8087), + [sym_static_modifier] = ACTIONS(8087), + [sym__dim_keyword] = ACTIONS(8087), + [sym__redim_keyword] = ACTIONS(8087), + [aux_sym_get_accessor_token1] = ACTIONS(8087), + [aux_sym_set_accessor_token1] = ACTIONS(8087), + [anon_sym_COMMA] = ACTIONS(8089), + [aux_sym_const_declaration_token1] = ACTIONS(8087), + [anon_sym_LPAREN] = ACTIONS(8089), + [aux_sym_as_type_clause_token2] = ACTIONS(8087), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8087), + [aux_sym_visibility_token1] = ACTIONS(8087), + [aux_sym_visibility_token2] = ACTIONS(8087), + [aux_sym_elseif_fragment_token1] = ACTIONS(8087), + [aux_sym_else_fragment_token1] = ACTIONS(8087), + [aux_sym_select_statement_token1] = ACTIONS(8087), + [aux_sym__for_header_token1] = ACTIONS(8087), + [aux_sym_do_statement_token1] = ACTIONS(8087), + [aux_sym_do_condition_token1] = ACTIONS(8087), + [aux_sym_with_statement_token1] = ACTIONS(8087), + [aux_sym_exit_statement_token1] = ACTIONS(8087), + [sym_end_statement] = ACTIONS(8089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8087), + [aux_sym_on_goto_statement_token2] = ACTIONS(8087), + [aux_sym_on_error_statement_token2] = ACTIONS(8087), + [sym__ambiguous_redim_statement] = ACTIONS(8089), + [aux_sym_erase_statement_token1] = ACTIONS(8087), + [aux_sym_open_statement_token1] = ACTIONS(8087), + [aux_sym_file_mode_token2] = ACTIONS(8087), + [aux_sym_file_access_token2] = ACTIONS(8087), + [aux_sym_file_lock_token2] = ACTIONS(8087), + [aux_sym_print_statement_token1] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [aux_sym_close_statement_token1] = ACTIONS(8087), + [aux_sym_put_statement_token1] = ACTIONS(8087), + [aux_sym_unlock_statement_token1] = ACTIONS(8087), + [aux_sym_seek_statement_token1] = ACTIONS(8087), + [sym_reset_statement] = ACTIONS(8087), + [aux_sym_raise_event_statement_token1] = ACTIONS(8087), + [sym_stop_statement] = ACTIONS(8087), + [sym_beep_statement] = ACTIONS(8087), + [aux_sym_unload_statement_token1] = ACTIONS(8087), + [aux_sym_def_type_statement_token1] = ACTIONS(8087), + [aux_sym_def_type_statement_token2] = ACTIONS(8087), + [aux_sym_def_type_statement_token3] = ACTIONS(8087), + [aux_sym_def_type_statement_token4] = ACTIONS(8087), + [aux_sym_def_type_statement_token5] = ACTIONS(8087), + [aux_sym_def_type_statement_token6] = ACTIONS(8087), + [aux_sym_def_type_statement_token7] = ACTIONS(8087), + [aux_sym_def_type_statement_token8] = ACTIONS(8087), + [aux_sym_def_type_statement_token9] = ACTIONS(8087), + [aux_sym_def_type_statement_token10] = ACTIONS(8087), + [aux_sym_def_type_statement_token11] = ACTIONS(8087), + [aux_sym_def_type_statement_token12] = ACTIONS(8087), + [aux_sym_def_type_statement_token13] = ACTIONS(8087), + [aux_sym_def_type_statement_token14] = ACTIONS(8087), + [aux_sym_call_statement_token1] = ACTIONS(8087), + [sym__ambiguous_call_statement] = ACTIONS(8087), + [aux_sym_addressof_expression_token1] = ACTIONS(8087), + [aux_sym_type_of_expression_token1] = ACTIONS(8087), + [aux_sym_unary_expression_token1] = ACTIONS(8087), + [sym_string_literal] = ACTIONS(8089), + [sym_number_literal] = ACTIONS(8089), + [aux_sym_boolean_literal_token1] = ACTIONS(8087), + [aux_sym_boolean_literal_token2] = ACTIONS(8087), + [sym_nothing_literal] = ACTIONS(8087), + [sym_null_literal] = ACTIONS(8087), + [sym_empty_literal] = ACTIONS(8087), + [sym_date_literal] = ACTIONS(8089), + [anon_sym_POUND] = ACTIONS(8087), + }, + [STATE(4917)] = { + [sym_identifier] = ACTIONS(8635), + [sym_newline] = ACTIONS(8637), + [anon_sym_COLON] = ACTIONS(8637), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8635), + [aux_sym_frm_property_statement_token1] = ACTIONS(8635), + [anon_sym_DOT] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(8637), + [aux_sym__attribute_identifier_token1] = ACTIONS(8635), + [aux_sym_option_statement_token3] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8635), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8635), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8635), + [aux_sym_preprocessor_const_token1] = ACTIONS(8635), + [sym_static_modifier] = ACTIONS(8635), + [sym__dim_keyword] = ACTIONS(8635), + [sym__redim_keyword] = ACTIONS(8635), + [aux_sym_get_accessor_token1] = ACTIONS(8635), + [aux_sym_set_accessor_token1] = ACTIONS(8635), + [anon_sym_COMMA] = ACTIONS(10304), + [aux_sym_const_declaration_token1] = ACTIONS(8635), + [anon_sym_LPAREN] = ACTIONS(8637), + [aux_sym_as_type_clause_token2] = ACTIONS(8635), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8635), + [aux_sym_visibility_token1] = ACTIONS(8635), + [aux_sym_visibility_token2] = ACTIONS(8635), + [aux_sym_elseif_fragment_token1] = ACTIONS(8635), + [aux_sym_else_fragment_token1] = ACTIONS(8635), + [aux_sym_select_statement_token1] = ACTIONS(8635), + [aux_sym__for_header_token1] = ACTIONS(8635), + [aux_sym_do_statement_token1] = ACTIONS(8635), + [aux_sym_do_condition_token1] = ACTIONS(8635), + [aux_sym_with_statement_token1] = ACTIONS(8635), + [aux_sym_exit_statement_token1] = ACTIONS(8635), + [sym_end_statement] = ACTIONS(8637), + [aux_sym_on_goto_statement_token1] = ACTIONS(8635), + [aux_sym_on_goto_statement_token2] = ACTIONS(8635), + [aux_sym_on_error_statement_token2] = ACTIONS(8635), + [sym__ambiguous_redim_statement] = ACTIONS(8637), + [aux_sym_erase_statement_token1] = ACTIONS(8635), + [aux_sym_open_statement_token1] = ACTIONS(8635), + [aux_sym_file_mode_token2] = ACTIONS(8635), + [aux_sym_file_access_token2] = ACTIONS(8635), + [aux_sym_file_lock_token2] = ACTIONS(8635), + [aux_sym_print_statement_token1] = ACTIONS(8635), + [anon_sym_PLUS] = ACTIONS(8637), + [anon_sym_DASH] = ACTIONS(8635), + [anon_sym_QMARK] = ACTIONS(8637), + [aux_sym_close_statement_token1] = ACTIONS(8635), + [aux_sym_put_statement_token1] = ACTIONS(8635), + [aux_sym_unlock_statement_token1] = ACTIONS(8635), + [aux_sym_seek_statement_token1] = ACTIONS(8635), + [sym_reset_statement] = ACTIONS(8635), + [aux_sym_raise_event_statement_token1] = ACTIONS(8635), + [sym_stop_statement] = ACTIONS(8635), + [sym_beep_statement] = ACTIONS(8635), + [aux_sym_unload_statement_token1] = ACTIONS(8635), + [aux_sym_def_type_statement_token1] = ACTIONS(8635), + [aux_sym_def_type_statement_token2] = ACTIONS(8635), + [aux_sym_def_type_statement_token3] = ACTIONS(8635), + [aux_sym_def_type_statement_token4] = ACTIONS(8635), + [aux_sym_def_type_statement_token5] = ACTIONS(8635), + [aux_sym_def_type_statement_token6] = ACTIONS(8635), + [aux_sym_def_type_statement_token7] = ACTIONS(8635), + [aux_sym_def_type_statement_token8] = ACTIONS(8635), + [aux_sym_def_type_statement_token9] = ACTIONS(8635), + [aux_sym_def_type_statement_token10] = ACTIONS(8635), + [aux_sym_def_type_statement_token11] = ACTIONS(8635), + [aux_sym_def_type_statement_token12] = ACTIONS(8635), + [aux_sym_def_type_statement_token13] = ACTIONS(8635), + [aux_sym_def_type_statement_token14] = ACTIONS(8635), + [aux_sym_call_statement_token1] = ACTIONS(8635), + [sym__ambiguous_call_statement] = ACTIONS(8635), + [aux_sym_addressof_expression_token1] = ACTIONS(8635), + [aux_sym_type_of_expression_token1] = ACTIONS(8635), + [aux_sym_unary_expression_token1] = ACTIONS(8635), + [sym_string_literal] = ACTIONS(8637), + [sym_number_literal] = ACTIONS(8637), + [aux_sym_boolean_literal_token1] = ACTIONS(8635), + [aux_sym_boolean_literal_token2] = ACTIONS(8635), + [sym_nothing_literal] = ACTIONS(8635), + [sym_null_literal] = ACTIONS(8635), + [sym_empty_literal] = ACTIONS(8635), + [sym_date_literal] = ACTIONS(8637), + [anon_sym_POUND] = ACTIONS(8635), + }, + [STATE(4918)] = { + [sym_initializer] = STATE(6020), + [sym_identifier] = ACTIONS(8087), + [sym_newline] = ACTIONS(8089), + [anon_sym_COLON] = ACTIONS(8089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8087), + [aux_sym_frm_property_statement_token1] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(9997), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_BANG] = ACTIONS(8089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8087), + [aux_sym_option_statement_token3] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8087), + [aux_sym_preprocessor_const_token1] = ACTIONS(8087), + [sym_static_modifier] = ACTIONS(8087), + [sym__dim_keyword] = ACTIONS(8087), + [sym__redim_keyword] = ACTIONS(8087), + [aux_sym_get_accessor_token1] = ACTIONS(8087), + [aux_sym_set_accessor_token1] = ACTIONS(8087), + [anon_sym_COMMA] = ACTIONS(8089), + [aux_sym_const_declaration_token1] = ACTIONS(8087), + [anon_sym_LPAREN] = ACTIONS(8089), + [aux_sym_as_type_clause_token2] = ACTIONS(8087), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8087), + [aux_sym_visibility_token1] = ACTIONS(8087), + [aux_sym_visibility_token2] = ACTIONS(8087), + [aux_sym_elseif_fragment_token1] = ACTIONS(8087), + [aux_sym_else_fragment_token1] = ACTIONS(8087), + [aux_sym_select_statement_token1] = ACTIONS(8087), + [aux_sym__for_header_token1] = ACTIONS(8087), + [aux_sym_do_statement_token1] = ACTIONS(8087), + [aux_sym_do_condition_token1] = ACTIONS(8087), + [aux_sym_while_statement_token1] = ACTIONS(8087), + [aux_sym_with_statement_token1] = ACTIONS(8087), + [aux_sym_exit_statement_token1] = ACTIONS(8087), + [sym_end_statement] = ACTIONS(8089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8087), + [aux_sym_on_goto_statement_token2] = ACTIONS(8087), + [aux_sym_on_error_statement_token2] = ACTIONS(8087), + [sym__ambiguous_redim_statement] = ACTIONS(8089), + [aux_sym_erase_statement_token1] = ACTIONS(8087), + [aux_sym_open_statement_token1] = ACTIONS(8087), + [aux_sym_file_mode_token2] = ACTIONS(8087), + [aux_sym_file_access_token2] = ACTIONS(8087), + [aux_sym_file_lock_token2] = ACTIONS(8087), + [aux_sym_print_statement_token1] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [aux_sym_close_statement_token1] = ACTIONS(8087), + [aux_sym_put_statement_token1] = ACTIONS(8087), + [aux_sym_unlock_statement_token1] = ACTIONS(8087), + [aux_sym_seek_statement_token1] = ACTIONS(8087), + [sym_reset_statement] = ACTIONS(8087), + [aux_sym_raise_event_statement_token1] = ACTIONS(8087), + [sym_stop_statement] = ACTIONS(8087), + [sym_beep_statement] = ACTIONS(8087), + [aux_sym_unload_statement_token1] = ACTIONS(8087), + [aux_sym_def_type_statement_token1] = ACTIONS(8087), + [aux_sym_def_type_statement_token2] = ACTIONS(8087), + [aux_sym_def_type_statement_token3] = ACTIONS(8087), + [aux_sym_def_type_statement_token4] = ACTIONS(8087), + [aux_sym_def_type_statement_token5] = ACTIONS(8087), + [aux_sym_def_type_statement_token6] = ACTIONS(8087), + [aux_sym_def_type_statement_token7] = ACTIONS(8087), + [aux_sym_def_type_statement_token8] = ACTIONS(8087), + [aux_sym_def_type_statement_token9] = ACTIONS(8087), + [aux_sym_def_type_statement_token10] = ACTIONS(8087), + [aux_sym_def_type_statement_token11] = ACTIONS(8087), + [aux_sym_def_type_statement_token12] = ACTIONS(8087), + [aux_sym_def_type_statement_token13] = ACTIONS(8087), + [aux_sym_def_type_statement_token14] = ACTIONS(8087), + [aux_sym_call_statement_token1] = ACTIONS(8087), + [sym__ambiguous_call_statement] = ACTIONS(8087), + [aux_sym_addressof_expression_token1] = ACTIONS(8087), + [aux_sym_type_of_expression_token1] = ACTIONS(8087), + [aux_sym_unary_expression_token1] = ACTIONS(8087), + [sym_string_literal] = ACTIONS(8089), + [sym_number_literal] = ACTIONS(8089), + [aux_sym_boolean_literal_token1] = ACTIONS(8087), + [aux_sym_boolean_literal_token2] = ACTIONS(8087), + [sym_nothing_literal] = ACTIONS(8087), + [sym_null_literal] = ACTIONS(8087), + [sym_empty_literal] = ACTIONS(8087), + [sym_date_literal] = ACTIONS(8089), + [anon_sym_POUND] = ACTIONS(8087), + }, + [STATE(4919)] = { + [sym_identifier] = ACTIONS(8713), + [sym_newline] = ACTIONS(8715), + [anon_sym_COLON] = ACTIONS(8715), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8713), + [aux_sym_frm_property_statement_token1] = ACTIONS(8713), + [anon_sym_DOT] = ACTIONS(8713), + [anon_sym_BANG] = ACTIONS(8715), + [aux_sym__attribute_identifier_token1] = ACTIONS(8713), + [aux_sym_option_statement_token3] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8713), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8713), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8713), + [aux_sym_preprocessor_const_token1] = ACTIONS(8713), + [sym_static_modifier] = ACTIONS(8713), + [sym__dim_keyword] = ACTIONS(8713), + [sym__redim_keyword] = ACTIONS(8713), + [aux_sym_get_accessor_token1] = ACTIONS(8713), + [aux_sym_set_accessor_token1] = ACTIONS(8713), + [anon_sym_COMMA] = ACTIONS(8715), + [aux_sym_const_declaration_token1] = ACTIONS(8713), + [anon_sym_LPAREN] = ACTIONS(8715), + [aux_sym_as_type_clause_token2] = ACTIONS(8713), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8713), + [aux_sym_visibility_token1] = ACTIONS(8713), + [aux_sym_visibility_token2] = ACTIONS(8713), + [aux_sym_elseif_fragment_token1] = ACTIONS(8713), + [aux_sym_else_fragment_token1] = ACTIONS(8713), + [aux_sym_select_statement_token1] = ACTIONS(8713), + [aux_sym__for_header_token1] = ACTIONS(8713), + [aux_sym_do_statement_token1] = ACTIONS(8713), + [aux_sym_do_condition_token1] = ACTIONS(8713), + [aux_sym_with_statement_token1] = ACTIONS(8713), + [aux_sym_exit_statement_token1] = ACTIONS(8713), + [sym_end_statement] = ACTIONS(8715), + [aux_sym_on_goto_statement_token1] = ACTIONS(8713), + [aux_sym_on_goto_statement_token2] = ACTIONS(8713), + [aux_sym_on_error_statement_token2] = ACTIONS(8713), + [sym__ambiguous_redim_statement] = ACTIONS(8715), + [aux_sym_erase_statement_token1] = ACTIONS(8713), + [aux_sym_open_statement_token1] = ACTIONS(8713), + [aux_sym_file_mode_token2] = ACTIONS(8713), + [aux_sym_file_access_token2] = ACTIONS(8713), + [aux_sym_file_lock_token2] = ACTIONS(8713), + [aux_sym_print_statement_token1] = ACTIONS(8713), + [anon_sym_PLUS] = ACTIONS(8715), + [anon_sym_DASH] = ACTIONS(8713), + [anon_sym_QMARK] = ACTIONS(8715), + [aux_sym_close_statement_token1] = ACTIONS(8713), + [aux_sym_put_statement_token1] = ACTIONS(8713), + [aux_sym_unlock_statement_token1] = ACTIONS(8713), + [aux_sym_seek_statement_token1] = ACTIONS(8713), + [sym_reset_statement] = ACTIONS(8713), + [aux_sym_raise_event_statement_token1] = ACTIONS(8713), + [sym_stop_statement] = ACTIONS(8713), + [sym_beep_statement] = ACTIONS(8713), + [aux_sym_unload_statement_token1] = ACTIONS(8713), + [aux_sym_def_type_statement_token1] = ACTIONS(8713), + [aux_sym_def_type_statement_token2] = ACTIONS(8713), + [aux_sym_def_type_statement_token3] = ACTIONS(8713), + [aux_sym_def_type_statement_token4] = ACTIONS(8713), + [aux_sym_def_type_statement_token5] = ACTIONS(8713), + [aux_sym_def_type_statement_token6] = ACTIONS(8713), + [aux_sym_def_type_statement_token7] = ACTIONS(8713), + [aux_sym_def_type_statement_token8] = ACTIONS(8713), + [aux_sym_def_type_statement_token9] = ACTIONS(8713), + [aux_sym_def_type_statement_token10] = ACTIONS(8713), + [aux_sym_def_type_statement_token11] = ACTIONS(8713), + [aux_sym_def_type_statement_token12] = ACTIONS(8713), + [aux_sym_def_type_statement_token13] = ACTIONS(8713), + [aux_sym_def_type_statement_token14] = ACTIONS(8713), + [aux_sym_call_statement_token1] = ACTIONS(8713), + [sym__ambiguous_call_statement] = ACTIONS(8713), + [aux_sym_addressof_expression_token1] = ACTIONS(8713), + [aux_sym_type_of_expression_token1] = ACTIONS(8713), + [aux_sym_unary_expression_token1] = ACTIONS(8713), + [sym_string_literal] = ACTIONS(8715), + [sym_number_literal] = ACTIONS(8715), + [aux_sym_boolean_literal_token1] = ACTIONS(8713), + [aux_sym_boolean_literal_token2] = ACTIONS(8713), + [sym_nothing_literal] = ACTIONS(8713), + [sym_null_literal] = ACTIONS(8713), + [sym_empty_literal] = ACTIONS(8713), + [sym_date_literal] = ACTIONS(8715), + [anon_sym_POUND] = ACTIONS(8713), + }, + [STATE(4920)] = { + [sym_identifier] = ACTIONS(8739), + [sym_newline] = ACTIONS(8741), + [anon_sym_COLON] = ACTIONS(8741), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8739), + [aux_sym_frm_property_statement_token1] = ACTIONS(8739), + [anon_sym_DOT] = ACTIONS(8739), + [anon_sym_BANG] = ACTIONS(8741), + [aux_sym__attribute_identifier_token1] = ACTIONS(8739), + [aux_sym_option_statement_token3] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8739), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8739), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8739), + [aux_sym_preprocessor_const_token1] = ACTIONS(8739), + [sym_static_modifier] = ACTIONS(8739), + [sym__dim_keyword] = ACTIONS(8739), + [sym__redim_keyword] = ACTIONS(8739), + [aux_sym_get_accessor_token1] = ACTIONS(8739), + [aux_sym_set_accessor_token1] = ACTIONS(8739), + [anon_sym_COMMA] = ACTIONS(10306), + [aux_sym_const_declaration_token1] = ACTIONS(8739), + [anon_sym_LPAREN] = ACTIONS(8741), + [aux_sym_as_type_clause_token2] = ACTIONS(8739), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8739), + [aux_sym_visibility_token1] = ACTIONS(8739), + [aux_sym_visibility_token2] = ACTIONS(8739), + [aux_sym_elseif_fragment_token1] = ACTIONS(8739), + [aux_sym_else_fragment_token1] = ACTIONS(8739), + [aux_sym_select_statement_token1] = ACTIONS(8739), + [aux_sym__for_header_token1] = ACTIONS(8739), + [aux_sym_do_statement_token1] = ACTIONS(8739), + [aux_sym_do_condition_token1] = ACTIONS(8739), + [aux_sym_with_statement_token1] = ACTIONS(8739), + [aux_sym_exit_statement_token1] = ACTIONS(8739), + [sym_end_statement] = ACTIONS(8741), + [aux_sym_on_goto_statement_token1] = ACTIONS(8739), + [aux_sym_on_goto_statement_token2] = ACTIONS(8739), + [aux_sym_on_error_statement_token2] = ACTIONS(8739), + [sym__ambiguous_redim_statement] = ACTIONS(8741), + [aux_sym_erase_statement_token1] = ACTIONS(8739), + [aux_sym_open_statement_token1] = ACTIONS(8739), + [aux_sym_file_mode_token2] = ACTIONS(8739), + [aux_sym_file_access_token2] = ACTIONS(8739), + [aux_sym_file_lock_token2] = ACTIONS(8739), + [aux_sym_print_statement_token1] = ACTIONS(8739), + [anon_sym_PLUS] = ACTIONS(8741), + [anon_sym_DASH] = ACTIONS(8739), + [anon_sym_QMARK] = ACTIONS(8741), + [aux_sym_close_statement_token1] = ACTIONS(8739), + [aux_sym_put_statement_token1] = ACTIONS(8739), + [aux_sym_unlock_statement_token1] = ACTIONS(8739), + [aux_sym_seek_statement_token1] = ACTIONS(8739), + [sym_reset_statement] = ACTIONS(8739), + [aux_sym_raise_event_statement_token1] = ACTIONS(8739), + [sym_stop_statement] = ACTIONS(8739), + [sym_beep_statement] = ACTIONS(8739), + [aux_sym_unload_statement_token1] = ACTIONS(8739), + [aux_sym_def_type_statement_token1] = ACTIONS(8739), + [aux_sym_def_type_statement_token2] = ACTIONS(8739), + [aux_sym_def_type_statement_token3] = ACTIONS(8739), + [aux_sym_def_type_statement_token4] = ACTIONS(8739), + [aux_sym_def_type_statement_token5] = ACTIONS(8739), + [aux_sym_def_type_statement_token6] = ACTIONS(8739), + [aux_sym_def_type_statement_token7] = ACTIONS(8739), + [aux_sym_def_type_statement_token8] = ACTIONS(8739), + [aux_sym_def_type_statement_token9] = ACTIONS(8739), + [aux_sym_def_type_statement_token10] = ACTIONS(8739), + [aux_sym_def_type_statement_token11] = ACTIONS(8739), + [aux_sym_def_type_statement_token12] = ACTIONS(8739), + [aux_sym_def_type_statement_token13] = ACTIONS(8739), + [aux_sym_def_type_statement_token14] = ACTIONS(8739), + [aux_sym_call_statement_token1] = ACTIONS(8739), + [sym__ambiguous_call_statement] = ACTIONS(8739), + [aux_sym_addressof_expression_token1] = ACTIONS(8739), + [aux_sym_type_of_expression_token1] = ACTIONS(8739), + [aux_sym_unary_expression_token1] = ACTIONS(8739), + [sym_string_literal] = ACTIONS(8741), + [sym_number_literal] = ACTIONS(8741), + [aux_sym_boolean_literal_token1] = ACTIONS(8739), + [aux_sym_boolean_literal_token2] = ACTIONS(8739), + [sym_nothing_literal] = ACTIONS(8739), + [sym_null_literal] = ACTIONS(8739), + [sym_empty_literal] = ACTIONS(8739), + [sym_date_literal] = ACTIONS(8741), + [anon_sym_POUND] = ACTIONS(8739), + }, + [STATE(4921)] = { + [sym_identifier] = ACTIONS(8766), + [sym_newline] = ACTIONS(8768), + [anon_sym_COLON] = ACTIONS(8768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8766), + [aux_sym_frm_property_statement_token1] = ACTIONS(8766), + [anon_sym_DOT] = ACTIONS(8766), + [anon_sym_BANG] = ACTIONS(8768), + [aux_sym__attribute_identifier_token1] = ACTIONS(8766), + [aux_sym_option_statement_token3] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8766), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8766), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8766), + [aux_sym_preprocessor_const_token1] = ACTIONS(8766), + [sym_static_modifier] = ACTIONS(8766), + [sym__dim_keyword] = ACTIONS(8766), + [sym__redim_keyword] = ACTIONS(8766), + [aux_sym_get_accessor_token1] = ACTIONS(8766), + [aux_sym_set_accessor_token1] = ACTIONS(8766), + [anon_sym_COMMA] = ACTIONS(10308), + [aux_sym_const_declaration_token1] = ACTIONS(8766), + [anon_sym_LPAREN] = ACTIONS(8768), + [aux_sym_as_type_clause_token2] = ACTIONS(8766), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8766), + [aux_sym_visibility_token1] = ACTIONS(8766), + [aux_sym_visibility_token2] = ACTIONS(8766), + [aux_sym_elseif_fragment_token1] = ACTIONS(8766), + [aux_sym_else_fragment_token1] = ACTIONS(8766), + [aux_sym_select_statement_token1] = ACTIONS(8766), + [aux_sym__for_header_token1] = ACTIONS(8766), + [aux_sym_do_statement_token1] = ACTIONS(8766), + [aux_sym_do_condition_token1] = ACTIONS(8766), + [aux_sym_with_statement_token1] = ACTIONS(8766), + [aux_sym_exit_statement_token1] = ACTIONS(8766), + [sym_end_statement] = ACTIONS(8768), + [aux_sym_on_goto_statement_token1] = ACTIONS(8766), + [aux_sym_on_goto_statement_token2] = ACTIONS(8766), + [aux_sym_on_error_statement_token2] = ACTIONS(8766), + [sym__ambiguous_redim_statement] = ACTIONS(8768), + [aux_sym_erase_statement_token1] = ACTIONS(8766), + [aux_sym_open_statement_token1] = ACTIONS(8766), + [aux_sym_file_mode_token2] = ACTIONS(8766), + [aux_sym_file_access_token2] = ACTIONS(8766), + [aux_sym_file_lock_token2] = ACTIONS(8766), + [aux_sym_print_statement_token1] = ACTIONS(8766), + [anon_sym_PLUS] = ACTIONS(8768), + [anon_sym_DASH] = ACTIONS(8766), + [anon_sym_QMARK] = ACTIONS(8768), + [aux_sym_close_statement_token1] = ACTIONS(8766), + [aux_sym_put_statement_token1] = ACTIONS(8766), + [aux_sym_unlock_statement_token1] = ACTIONS(8766), + [aux_sym_seek_statement_token1] = ACTIONS(8766), + [sym_reset_statement] = ACTIONS(8766), + [aux_sym_raise_event_statement_token1] = ACTIONS(8766), + [sym_stop_statement] = ACTIONS(8766), + [sym_beep_statement] = ACTIONS(8766), + [aux_sym_unload_statement_token1] = ACTIONS(8766), + [aux_sym_def_type_statement_token1] = ACTIONS(8766), + [aux_sym_def_type_statement_token2] = ACTIONS(8766), + [aux_sym_def_type_statement_token3] = ACTIONS(8766), + [aux_sym_def_type_statement_token4] = ACTIONS(8766), + [aux_sym_def_type_statement_token5] = ACTIONS(8766), + [aux_sym_def_type_statement_token6] = ACTIONS(8766), + [aux_sym_def_type_statement_token7] = ACTIONS(8766), + [aux_sym_def_type_statement_token8] = ACTIONS(8766), + [aux_sym_def_type_statement_token9] = ACTIONS(8766), + [aux_sym_def_type_statement_token10] = ACTIONS(8766), + [aux_sym_def_type_statement_token11] = ACTIONS(8766), + [aux_sym_def_type_statement_token12] = ACTIONS(8766), + [aux_sym_def_type_statement_token13] = ACTIONS(8766), + [aux_sym_def_type_statement_token14] = ACTIONS(8766), + [aux_sym_call_statement_token1] = ACTIONS(8766), + [sym__ambiguous_call_statement] = ACTIONS(8766), + [aux_sym_addressof_expression_token1] = ACTIONS(8766), + [aux_sym_type_of_expression_token1] = ACTIONS(8766), + [aux_sym_unary_expression_token1] = ACTIONS(8766), + [sym_string_literal] = ACTIONS(8768), + [sym_number_literal] = ACTIONS(8768), + [aux_sym_boolean_literal_token1] = ACTIONS(8766), + [aux_sym_boolean_literal_token2] = ACTIONS(8766), + [sym_nothing_literal] = ACTIONS(8766), + [sym_null_literal] = ACTIONS(8766), + [sym_empty_literal] = ACTIONS(8766), + [sym_date_literal] = ACTIONS(8768), + [anon_sym_POUND] = ACTIONS(8766), + }, + [STATE(4922)] = { + [sym_initializer] = STATE(6283), + [sym_identifier] = ACTIONS(8091), + [sym_newline] = ACTIONS(8093), + [anon_sym_COLON] = ACTIONS(8093), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8091), + [aux_sym_frm_property_statement_token1] = ACTIONS(8091), + [anon_sym_EQ] = ACTIONS(10017), + [anon_sym_DOT] = ACTIONS(8091), + [anon_sym_BANG] = ACTIONS(8093), + [aux_sym__attribute_identifier_token1] = ACTIONS(8091), + [aux_sym_option_statement_token3] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8091), + [aux_sym_preprocessor_const_token1] = ACTIONS(8091), + [sym_static_modifier] = ACTIONS(8091), + [sym__dim_keyword] = ACTIONS(8091), + [sym__redim_keyword] = ACTIONS(8091), + [aux_sym_get_accessor_token1] = ACTIONS(8091), + [aux_sym_set_accessor_token1] = ACTIONS(8091), + [anon_sym_COMMA] = ACTIONS(8093), + [aux_sym_const_declaration_token1] = ACTIONS(8091), + [anon_sym_LPAREN] = ACTIONS(8093), + [aux_sym_as_type_clause_token2] = ACTIONS(8091), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8091), + [aux_sym_visibility_token1] = ACTIONS(8091), + [aux_sym_visibility_token2] = ACTIONS(8091), + [aux_sym_elseif_fragment_token1] = ACTIONS(8091), + [aux_sym_else_fragment_token1] = ACTIONS(8091), + [aux_sym_select_statement_token1] = ACTIONS(8091), + [aux_sym__for_header_token1] = ACTIONS(8091), + [aux_sym_do_statement_token1] = ACTIONS(8091), + [aux_sym_do_statement_token2] = ACTIONS(8091), + [aux_sym_do_condition_token1] = ACTIONS(8091), + [aux_sym_with_statement_token1] = ACTIONS(8091), + [aux_sym_exit_statement_token1] = ACTIONS(8091), + [sym_end_statement] = ACTIONS(8093), + [aux_sym_on_goto_statement_token1] = ACTIONS(8091), + [aux_sym_on_goto_statement_token2] = ACTIONS(8091), + [aux_sym_on_error_statement_token2] = ACTIONS(8091), + [sym__ambiguous_redim_statement] = ACTIONS(8093), + [aux_sym_erase_statement_token1] = ACTIONS(8091), + [aux_sym_open_statement_token1] = ACTIONS(8091), + [aux_sym_file_mode_token2] = ACTIONS(8091), + [aux_sym_file_access_token2] = ACTIONS(8091), + [aux_sym_file_lock_token2] = ACTIONS(8091), + [aux_sym_print_statement_token1] = ACTIONS(8091), + [anon_sym_PLUS] = ACTIONS(8093), + [anon_sym_DASH] = ACTIONS(8091), + [anon_sym_QMARK] = ACTIONS(8093), + [aux_sym_close_statement_token1] = ACTIONS(8091), + [aux_sym_put_statement_token1] = ACTIONS(8091), + [aux_sym_unlock_statement_token1] = ACTIONS(8091), + [aux_sym_seek_statement_token1] = ACTIONS(8091), + [sym_reset_statement] = ACTIONS(8091), + [aux_sym_raise_event_statement_token1] = ACTIONS(8091), + [sym_stop_statement] = ACTIONS(8091), + [sym_beep_statement] = ACTIONS(8091), + [aux_sym_unload_statement_token1] = ACTIONS(8091), + [aux_sym_def_type_statement_token1] = ACTIONS(8091), + [aux_sym_def_type_statement_token2] = ACTIONS(8091), + [aux_sym_def_type_statement_token3] = ACTIONS(8091), + [aux_sym_def_type_statement_token4] = ACTIONS(8091), + [aux_sym_def_type_statement_token5] = ACTIONS(8091), + [aux_sym_def_type_statement_token6] = ACTIONS(8091), + [aux_sym_def_type_statement_token7] = ACTIONS(8091), + [aux_sym_def_type_statement_token8] = ACTIONS(8091), + [aux_sym_def_type_statement_token9] = ACTIONS(8091), + [aux_sym_def_type_statement_token10] = ACTIONS(8091), + [aux_sym_def_type_statement_token11] = ACTIONS(8091), + [aux_sym_def_type_statement_token12] = ACTIONS(8091), + [aux_sym_def_type_statement_token13] = ACTIONS(8091), + [aux_sym_def_type_statement_token14] = ACTIONS(8091), + [aux_sym_call_statement_token1] = ACTIONS(8091), + [sym__ambiguous_call_statement] = ACTIONS(8091), + [aux_sym_addressof_expression_token1] = ACTIONS(8091), + [aux_sym_type_of_expression_token1] = ACTIONS(8091), + [aux_sym_unary_expression_token1] = ACTIONS(8091), + [sym_string_literal] = ACTIONS(8093), + [sym_number_literal] = ACTIONS(8093), + [aux_sym_boolean_literal_token1] = ACTIONS(8091), + [aux_sym_boolean_literal_token2] = ACTIONS(8091), + [sym_nothing_literal] = ACTIONS(8091), + [sym_null_literal] = ACTIONS(8091), + [sym_empty_literal] = ACTIONS(8091), + [sym_date_literal] = ACTIONS(8093), + [anon_sym_POUND] = ACTIONS(8091), + }, + [STATE(4923)] = { + [sym_initializer] = STATE(6026), + [sym_identifier] = ACTIONS(8091), + [sym_newline] = ACTIONS(8093), + [anon_sym_COLON] = ACTIONS(8093), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8091), + [aux_sym_frm_property_statement_token1] = ACTIONS(8091), + [anon_sym_EQ] = ACTIONS(9997), + [anon_sym_DOT] = ACTIONS(8091), + [anon_sym_BANG] = ACTIONS(8093), + [aux_sym__attribute_identifier_token1] = ACTIONS(8091), + [aux_sym_option_statement_token3] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8091), + [aux_sym_preprocessor_const_token1] = ACTIONS(8091), + [sym_static_modifier] = ACTIONS(8091), + [sym__dim_keyword] = ACTIONS(8091), + [sym__redim_keyword] = ACTIONS(8091), + [aux_sym_get_accessor_token1] = ACTIONS(8091), + [aux_sym_set_accessor_token1] = ACTIONS(8091), + [anon_sym_COMMA] = ACTIONS(8093), + [aux_sym_const_declaration_token1] = ACTIONS(8091), + [anon_sym_LPAREN] = ACTIONS(8093), + [aux_sym_as_type_clause_token2] = ACTIONS(8091), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8091), + [aux_sym_visibility_token1] = ACTIONS(8091), + [aux_sym_visibility_token2] = ACTIONS(8091), + [aux_sym_elseif_fragment_token1] = ACTIONS(8091), + [aux_sym_else_fragment_token1] = ACTIONS(8091), + [aux_sym_select_statement_token1] = ACTIONS(8091), + [aux_sym__for_header_token1] = ACTIONS(8091), + [aux_sym_do_statement_token1] = ACTIONS(8091), + [aux_sym_do_condition_token1] = ACTIONS(8091), + [aux_sym_while_statement_token1] = ACTIONS(8091), + [aux_sym_with_statement_token1] = ACTIONS(8091), + [aux_sym_exit_statement_token1] = ACTIONS(8091), + [sym_end_statement] = ACTIONS(8093), + [aux_sym_on_goto_statement_token1] = ACTIONS(8091), + [aux_sym_on_goto_statement_token2] = ACTIONS(8091), + [aux_sym_on_error_statement_token2] = ACTIONS(8091), + [sym__ambiguous_redim_statement] = ACTIONS(8093), + [aux_sym_erase_statement_token1] = ACTIONS(8091), + [aux_sym_open_statement_token1] = ACTIONS(8091), + [aux_sym_file_mode_token2] = ACTIONS(8091), + [aux_sym_file_access_token2] = ACTIONS(8091), + [aux_sym_file_lock_token2] = ACTIONS(8091), + [aux_sym_print_statement_token1] = ACTIONS(8091), + [anon_sym_PLUS] = ACTIONS(8093), + [anon_sym_DASH] = ACTIONS(8091), + [anon_sym_QMARK] = ACTIONS(8093), + [aux_sym_close_statement_token1] = ACTIONS(8091), + [aux_sym_put_statement_token1] = ACTIONS(8091), + [aux_sym_unlock_statement_token1] = ACTIONS(8091), + [aux_sym_seek_statement_token1] = ACTIONS(8091), + [sym_reset_statement] = ACTIONS(8091), + [aux_sym_raise_event_statement_token1] = ACTIONS(8091), + [sym_stop_statement] = ACTIONS(8091), + [sym_beep_statement] = ACTIONS(8091), + [aux_sym_unload_statement_token1] = ACTIONS(8091), + [aux_sym_def_type_statement_token1] = ACTIONS(8091), + [aux_sym_def_type_statement_token2] = ACTIONS(8091), + [aux_sym_def_type_statement_token3] = ACTIONS(8091), + [aux_sym_def_type_statement_token4] = ACTIONS(8091), + [aux_sym_def_type_statement_token5] = ACTIONS(8091), + [aux_sym_def_type_statement_token6] = ACTIONS(8091), + [aux_sym_def_type_statement_token7] = ACTIONS(8091), + [aux_sym_def_type_statement_token8] = ACTIONS(8091), + [aux_sym_def_type_statement_token9] = ACTIONS(8091), + [aux_sym_def_type_statement_token10] = ACTIONS(8091), + [aux_sym_def_type_statement_token11] = ACTIONS(8091), + [aux_sym_def_type_statement_token12] = ACTIONS(8091), + [aux_sym_def_type_statement_token13] = ACTIONS(8091), + [aux_sym_def_type_statement_token14] = ACTIONS(8091), + [aux_sym_call_statement_token1] = ACTIONS(8091), + [sym__ambiguous_call_statement] = ACTIONS(8091), + [aux_sym_addressof_expression_token1] = ACTIONS(8091), + [aux_sym_type_of_expression_token1] = ACTIONS(8091), + [aux_sym_unary_expression_token1] = ACTIONS(8091), + [sym_string_literal] = ACTIONS(8093), + [sym_number_literal] = ACTIONS(8093), + [aux_sym_boolean_literal_token1] = ACTIONS(8091), + [aux_sym_boolean_literal_token2] = ACTIONS(8091), + [sym_nothing_literal] = ACTIONS(8091), + [sym_null_literal] = ACTIONS(8091), + [sym_empty_literal] = ACTIONS(8091), + [sym_date_literal] = ACTIONS(8093), + [anon_sym_POUND] = ACTIONS(8091), + }, + [STATE(4924)] = { + [sym_identifier] = ACTIONS(10310), + [sym_newline] = ACTIONS(8819), + [anon_sym_COLON] = ACTIONS(8819), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8821), + [aux_sym_frm_property_statement_token1] = ACTIONS(8821), + [anon_sym_DOT] = ACTIONS(8821), + [anon_sym_BANG] = ACTIONS(8819), + [aux_sym__attribute_identifier_token1] = ACTIONS(8821), + [aux_sym_option_statement_token3] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8821), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8821), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8821), + [aux_sym_preprocessor_const_token1] = ACTIONS(8821), + [sym_static_modifier] = ACTIONS(8821), + [sym__dim_keyword] = ACTIONS(8821), + [sym__redim_keyword] = ACTIONS(8821), + [aux_sym_get_accessor_token1] = ACTIONS(8821), + [aux_sym_set_accessor_token1] = ACTIONS(8821), + [aux_sym_const_declaration_token1] = ACTIONS(8821), + [anon_sym_LPAREN] = ACTIONS(8819), + [aux_sym_as_type_clause_token2] = ACTIONS(8821), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8821), + [aux_sym_visibility_token1] = ACTIONS(8821), + [aux_sym_visibility_token2] = ACTIONS(8821), + [aux_sym_elseif_fragment_token1] = ACTIONS(8821), + [aux_sym_else_fragment_token1] = ACTIONS(8821), + [aux_sym_select_statement_token1] = ACTIONS(8821), + [aux_sym__multiline_for_tail_token1] = ACTIONS(10312), + [aux_sym__for_header_token1] = ACTIONS(8821), + [aux_sym_do_statement_token1] = ACTIONS(8821), + [aux_sym_do_condition_token1] = ACTIONS(8821), + [aux_sym_with_statement_token1] = ACTIONS(8821), + [aux_sym_exit_statement_token1] = ACTIONS(8821), + [sym_end_statement] = ACTIONS(8819), + [aux_sym_on_goto_statement_token1] = ACTIONS(8821), + [aux_sym_on_goto_statement_token2] = ACTIONS(8821), + [aux_sym_on_error_statement_token2] = ACTIONS(8821), + [sym__ambiguous_redim_statement] = ACTIONS(8819), + [aux_sym_erase_statement_token1] = ACTIONS(8821), + [aux_sym_open_statement_token1] = ACTIONS(8821), + [aux_sym_file_mode_token2] = ACTIONS(8821), + [aux_sym_file_access_token2] = ACTIONS(8821), + [aux_sym_file_lock_token2] = ACTIONS(8821), + [aux_sym_print_statement_token1] = ACTIONS(8821), + [anon_sym_PLUS] = ACTIONS(8819), + [anon_sym_DASH] = ACTIONS(8821), + [anon_sym_QMARK] = ACTIONS(8819), + [aux_sym_close_statement_token1] = ACTIONS(8821), + [aux_sym_put_statement_token1] = ACTIONS(8821), + [aux_sym_unlock_statement_token1] = ACTIONS(8821), + [aux_sym_seek_statement_token1] = ACTIONS(8821), + [sym_reset_statement] = ACTIONS(8821), + [aux_sym_raise_event_statement_token1] = ACTIONS(8821), + [sym_stop_statement] = ACTIONS(8821), + [sym_beep_statement] = ACTIONS(8821), + [aux_sym_unload_statement_token1] = ACTIONS(8821), + [aux_sym_def_type_statement_token1] = ACTIONS(8821), + [aux_sym_def_type_statement_token2] = ACTIONS(8821), + [aux_sym_def_type_statement_token3] = ACTIONS(8821), + [aux_sym_def_type_statement_token4] = ACTIONS(8821), + [aux_sym_def_type_statement_token5] = ACTIONS(8821), + [aux_sym_def_type_statement_token6] = ACTIONS(8821), + [aux_sym_def_type_statement_token7] = ACTIONS(8821), + [aux_sym_def_type_statement_token8] = ACTIONS(8821), + [aux_sym_def_type_statement_token9] = ACTIONS(8821), + [aux_sym_def_type_statement_token10] = ACTIONS(8821), + [aux_sym_def_type_statement_token11] = ACTIONS(8821), + [aux_sym_def_type_statement_token12] = ACTIONS(8821), + [aux_sym_def_type_statement_token13] = ACTIONS(8821), + [aux_sym_def_type_statement_token14] = ACTIONS(8821), + [aux_sym_call_statement_token1] = ACTIONS(8821), + [sym__ambiguous_call_statement] = ACTIONS(8821), + [aux_sym_addressof_expression_token1] = ACTIONS(8821), + [aux_sym_type_of_expression_token1] = ACTIONS(8821), + [aux_sym_unary_expression_token1] = ACTIONS(8821), + [sym_string_literal] = ACTIONS(8819), + [sym_number_literal] = ACTIONS(10314), + [aux_sym_boolean_literal_token1] = ACTIONS(8821), + [aux_sym_boolean_literal_token2] = ACTIONS(8821), + [sym_nothing_literal] = ACTIONS(8821), + [sym_null_literal] = ACTIONS(8821), + [sym_empty_literal] = ACTIONS(8821), + [sym_date_literal] = ACTIONS(8819), + [anon_sym_POUND] = ACTIONS(8821), + }, + [STATE(4925)] = { + [sym_initializer] = STATE(6044), + [sym_identifier] = ACTIONS(8091), + [sym_newline] = ACTIONS(8093), + [anon_sym_COLON] = ACTIONS(8093), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8091), + [aux_sym_frm_property_statement_token1] = ACTIONS(8091), + [anon_sym_EQ] = ACTIONS(10032), + [anon_sym_DOT] = ACTIONS(8091), + [anon_sym_BANG] = ACTIONS(8093), + [aux_sym__attribute_identifier_token1] = ACTIONS(8091), + [aux_sym_option_statement_token3] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8091), + [aux_sym_preprocessor_const_token1] = ACTIONS(8091), + [sym_static_modifier] = ACTIONS(8091), + [sym__dim_keyword] = ACTIONS(8091), + [sym__redim_keyword] = ACTIONS(8091), + [aux_sym_get_accessor_token1] = ACTIONS(8091), + [aux_sym_set_accessor_token1] = ACTIONS(8091), + [anon_sym_COMMA] = ACTIONS(8093), + [aux_sym_const_declaration_token1] = ACTIONS(8091), + [anon_sym_LPAREN] = ACTIONS(8093), + [aux_sym_as_type_clause_token2] = ACTIONS(8091), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8091), + [aux_sym_visibility_token1] = ACTIONS(8091), + [aux_sym_visibility_token2] = ACTIONS(8091), + [aux_sym_elseif_fragment_token1] = ACTIONS(8091), + [aux_sym_else_fragment_token1] = ACTIONS(8091), + [aux_sym_select_statement_token1] = ACTIONS(8091), + [aux_sym__for_header_token1] = ACTIONS(8091), + [aux_sym_do_statement_token1] = ACTIONS(8091), + [aux_sym_do_condition_token1] = ACTIONS(8091), + [aux_sym_with_statement_token1] = ACTIONS(8091), + [aux_sym_exit_statement_token1] = ACTIONS(8091), + [sym_end_statement] = ACTIONS(8093), + [aux_sym_on_goto_statement_token1] = ACTIONS(8091), + [aux_sym_on_goto_statement_token2] = ACTIONS(8091), + [aux_sym_on_error_statement_token2] = ACTIONS(8091), + [sym__ambiguous_redim_statement] = ACTIONS(8093), + [aux_sym_erase_statement_token1] = ACTIONS(8091), + [aux_sym_open_statement_token1] = ACTIONS(8091), + [aux_sym_file_mode_token2] = ACTIONS(8091), + [aux_sym_file_access_token2] = ACTIONS(8091), + [aux_sym_file_lock_token2] = ACTIONS(8091), + [aux_sym_print_statement_token1] = ACTIONS(8091), + [anon_sym_PLUS] = ACTIONS(8093), + [anon_sym_DASH] = ACTIONS(8091), + [anon_sym_QMARK] = ACTIONS(8093), + [aux_sym_close_statement_token1] = ACTIONS(8091), + [aux_sym_put_statement_token1] = ACTIONS(8091), + [aux_sym_unlock_statement_token1] = ACTIONS(8091), + [aux_sym_seek_statement_token1] = ACTIONS(8091), + [sym_reset_statement] = ACTIONS(8091), + [aux_sym_raise_event_statement_token1] = ACTIONS(8091), + [sym_stop_statement] = ACTIONS(8091), + [sym_beep_statement] = ACTIONS(8091), + [aux_sym_unload_statement_token1] = ACTIONS(8091), + [aux_sym_def_type_statement_token1] = ACTIONS(8091), + [aux_sym_def_type_statement_token2] = ACTIONS(8091), + [aux_sym_def_type_statement_token3] = ACTIONS(8091), + [aux_sym_def_type_statement_token4] = ACTIONS(8091), + [aux_sym_def_type_statement_token5] = ACTIONS(8091), + [aux_sym_def_type_statement_token6] = ACTIONS(8091), + [aux_sym_def_type_statement_token7] = ACTIONS(8091), + [aux_sym_def_type_statement_token8] = ACTIONS(8091), + [aux_sym_def_type_statement_token9] = ACTIONS(8091), + [aux_sym_def_type_statement_token10] = ACTIONS(8091), + [aux_sym_def_type_statement_token11] = ACTIONS(8091), + [aux_sym_def_type_statement_token12] = ACTIONS(8091), + [aux_sym_def_type_statement_token13] = ACTIONS(8091), + [aux_sym_def_type_statement_token14] = ACTIONS(8091), + [aux_sym_call_statement_token1] = ACTIONS(8091), + [sym__ambiguous_call_statement] = ACTIONS(8091), + [aux_sym_addressof_expression_token1] = ACTIONS(8091), + [aux_sym_type_of_expression_token1] = ACTIONS(8091), + [aux_sym_unary_expression_token1] = ACTIONS(8091), + [sym_string_literal] = ACTIONS(8093), + [sym_number_literal] = ACTIONS(8093), + [aux_sym_boolean_literal_token1] = ACTIONS(8091), + [aux_sym_boolean_literal_token2] = ACTIONS(8091), + [sym_nothing_literal] = ACTIONS(8091), + [sym_null_literal] = ACTIONS(8091), + [sym_empty_literal] = ACTIONS(8091), + [sym_date_literal] = ACTIONS(8093), + [anon_sym_POUND] = ACTIONS(8091), + }, + [STATE(4926)] = { + [sym_identifier] = ACTIONS(8652), + [sym_newline] = ACTIONS(8654), + [anon_sym_COLON] = ACTIONS(8654), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8652), + [aux_sym_frm_property_statement_token1] = ACTIONS(8652), + [anon_sym_DOT] = ACTIONS(8652), + [anon_sym_BANG] = ACTIONS(8654), + [aux_sym__attribute_identifier_token1] = ACTIONS(8652), + [aux_sym_option_statement_token3] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8652), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8652), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8652), + [aux_sym_preprocessor_const_token1] = ACTIONS(8652), + [sym_static_modifier] = ACTIONS(8652), + [sym__dim_keyword] = ACTIONS(8652), + [sym__redim_keyword] = ACTIONS(8652), + [aux_sym_get_accessor_token1] = ACTIONS(8652), + [aux_sym_set_accessor_token1] = ACTIONS(8652), + [anon_sym_COMMA] = ACTIONS(10316), + [aux_sym_const_declaration_token1] = ACTIONS(8652), + [anon_sym_LPAREN] = ACTIONS(8654), + [aux_sym_as_type_clause_token2] = ACTIONS(8652), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8652), + [aux_sym_visibility_token1] = ACTIONS(8652), + [aux_sym_visibility_token2] = ACTIONS(8652), + [aux_sym_elseif_fragment_token1] = ACTIONS(8652), + [aux_sym_else_fragment_token1] = ACTIONS(8652), + [aux_sym_select_statement_token1] = ACTIONS(8652), + [aux_sym__for_header_token1] = ACTIONS(8652), + [aux_sym_do_statement_token1] = ACTIONS(8652), + [aux_sym_do_condition_token1] = ACTIONS(8652), + [aux_sym_with_statement_token1] = ACTIONS(8652), + [aux_sym_exit_statement_token1] = ACTIONS(8652), + [sym_end_statement] = ACTIONS(8654), + [aux_sym_on_goto_statement_token1] = ACTIONS(8652), + [aux_sym_on_goto_statement_token2] = ACTIONS(8652), + [aux_sym_on_error_statement_token2] = ACTIONS(8652), + [sym__ambiguous_redim_statement] = ACTIONS(8654), + [aux_sym_erase_statement_token1] = ACTIONS(8652), + [aux_sym_open_statement_token1] = ACTIONS(8652), + [aux_sym_file_mode_token2] = ACTIONS(8652), + [aux_sym_file_access_token2] = ACTIONS(8652), + [aux_sym_file_lock_token2] = ACTIONS(8652), + [aux_sym_print_statement_token1] = ACTIONS(8652), + [anon_sym_PLUS] = ACTIONS(8654), + [anon_sym_DASH] = ACTIONS(8652), + [anon_sym_QMARK] = ACTIONS(8654), + [aux_sym_close_statement_token1] = ACTIONS(8652), + [aux_sym_put_statement_token1] = ACTIONS(8652), + [aux_sym_unlock_statement_token1] = ACTIONS(8652), + [aux_sym_seek_statement_token1] = ACTIONS(8652), + [sym_reset_statement] = ACTIONS(8652), + [aux_sym_raise_event_statement_token1] = ACTIONS(8652), + [sym_stop_statement] = ACTIONS(8652), + [sym_beep_statement] = ACTIONS(8652), + [aux_sym_unload_statement_token1] = ACTIONS(8652), + [aux_sym_def_type_statement_token1] = ACTIONS(8652), + [aux_sym_def_type_statement_token2] = ACTIONS(8652), + [aux_sym_def_type_statement_token3] = ACTIONS(8652), + [aux_sym_def_type_statement_token4] = ACTIONS(8652), + [aux_sym_def_type_statement_token5] = ACTIONS(8652), + [aux_sym_def_type_statement_token6] = ACTIONS(8652), + [aux_sym_def_type_statement_token7] = ACTIONS(8652), + [aux_sym_def_type_statement_token8] = ACTIONS(8652), + [aux_sym_def_type_statement_token9] = ACTIONS(8652), + [aux_sym_def_type_statement_token10] = ACTIONS(8652), + [aux_sym_def_type_statement_token11] = ACTIONS(8652), + [aux_sym_def_type_statement_token12] = ACTIONS(8652), + [aux_sym_def_type_statement_token13] = ACTIONS(8652), + [aux_sym_def_type_statement_token14] = ACTIONS(8652), + [aux_sym_call_statement_token1] = ACTIONS(8652), + [sym__ambiguous_call_statement] = ACTIONS(8652), + [aux_sym_addressof_expression_token1] = ACTIONS(8652), + [aux_sym_type_of_expression_token1] = ACTIONS(8652), + [aux_sym_unary_expression_token1] = ACTIONS(8652), + [sym_string_literal] = ACTIONS(8654), + [sym_number_literal] = ACTIONS(8654), + [aux_sym_boolean_literal_token1] = ACTIONS(8652), + [aux_sym_boolean_literal_token2] = ACTIONS(8652), + [sym_nothing_literal] = ACTIONS(8652), + [sym_null_literal] = ACTIONS(8652), + [sym_empty_literal] = ACTIONS(8652), + [sym_date_literal] = ACTIONS(8654), + [anon_sym_POUND] = ACTIONS(8652), + }, + [STATE(4927)] = { + [sym_identifier] = ACTIONS(8717), + [sym_newline] = ACTIONS(8719), + [anon_sym_COLON] = ACTIONS(8719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8717), + [aux_sym_frm_property_statement_token1] = ACTIONS(8717), + [anon_sym_DOT] = ACTIONS(8717), + [anon_sym_BANG] = ACTIONS(8719), + [aux_sym__attribute_identifier_token1] = ACTIONS(8717), + [aux_sym_option_statement_token3] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8717), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8717), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8717), + [aux_sym_preprocessor_const_token1] = ACTIONS(8717), + [sym_static_modifier] = ACTIONS(8717), + [sym__dim_keyword] = ACTIONS(8717), + [sym__redim_keyword] = ACTIONS(8717), + [aux_sym_get_accessor_token1] = ACTIONS(8717), + [aux_sym_set_accessor_token1] = ACTIONS(8717), + [anon_sym_COMMA] = ACTIONS(10318), + [aux_sym_const_declaration_token1] = ACTIONS(8717), + [anon_sym_LPAREN] = ACTIONS(8719), + [aux_sym_as_type_clause_token2] = ACTIONS(8717), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8717), + [aux_sym_visibility_token1] = ACTIONS(8717), + [aux_sym_visibility_token2] = ACTIONS(8717), + [aux_sym_elseif_fragment_token1] = ACTIONS(8717), + [aux_sym_else_fragment_token1] = ACTIONS(8717), + [aux_sym_select_statement_token1] = ACTIONS(8717), + [aux_sym__for_header_token1] = ACTIONS(8717), + [aux_sym_do_statement_token1] = ACTIONS(8717), + [aux_sym_do_condition_token1] = ACTIONS(8717), + [aux_sym_with_statement_token1] = ACTIONS(8717), + [aux_sym_exit_statement_token1] = ACTIONS(8717), + [sym_end_statement] = ACTIONS(8719), + [aux_sym_on_goto_statement_token1] = ACTIONS(8717), + [aux_sym_on_goto_statement_token2] = ACTIONS(8717), + [aux_sym_on_error_statement_token2] = ACTIONS(8717), + [sym__ambiguous_redim_statement] = ACTIONS(8719), + [aux_sym_erase_statement_token1] = ACTIONS(8717), + [aux_sym_open_statement_token1] = ACTIONS(8717), + [aux_sym_file_mode_token2] = ACTIONS(8717), + [aux_sym_file_access_token2] = ACTIONS(8717), + [aux_sym_file_lock_token2] = ACTIONS(8717), + [aux_sym_print_statement_token1] = ACTIONS(8717), + [anon_sym_PLUS] = ACTIONS(8719), + [anon_sym_DASH] = ACTIONS(8717), + [anon_sym_QMARK] = ACTIONS(8719), + [aux_sym_close_statement_token1] = ACTIONS(8717), + [aux_sym_put_statement_token1] = ACTIONS(8717), + [aux_sym_unlock_statement_token1] = ACTIONS(8717), + [aux_sym_seek_statement_token1] = ACTIONS(8717), + [sym_reset_statement] = ACTIONS(8717), + [aux_sym_raise_event_statement_token1] = ACTIONS(8717), + [sym_stop_statement] = ACTIONS(8717), + [sym_beep_statement] = ACTIONS(8717), + [aux_sym_unload_statement_token1] = ACTIONS(8717), + [aux_sym_def_type_statement_token1] = ACTIONS(8717), + [aux_sym_def_type_statement_token2] = ACTIONS(8717), + [aux_sym_def_type_statement_token3] = ACTIONS(8717), + [aux_sym_def_type_statement_token4] = ACTIONS(8717), + [aux_sym_def_type_statement_token5] = ACTIONS(8717), + [aux_sym_def_type_statement_token6] = ACTIONS(8717), + [aux_sym_def_type_statement_token7] = ACTIONS(8717), + [aux_sym_def_type_statement_token8] = ACTIONS(8717), + [aux_sym_def_type_statement_token9] = ACTIONS(8717), + [aux_sym_def_type_statement_token10] = ACTIONS(8717), + [aux_sym_def_type_statement_token11] = ACTIONS(8717), + [aux_sym_def_type_statement_token12] = ACTIONS(8717), + [aux_sym_def_type_statement_token13] = ACTIONS(8717), + [aux_sym_def_type_statement_token14] = ACTIONS(8717), + [aux_sym_call_statement_token1] = ACTIONS(8717), + [sym__ambiguous_call_statement] = ACTIONS(8717), + [aux_sym_addressof_expression_token1] = ACTIONS(8717), + [aux_sym_type_of_expression_token1] = ACTIONS(8717), + [aux_sym_unary_expression_token1] = ACTIONS(8717), + [sym_string_literal] = ACTIONS(8719), + [sym_number_literal] = ACTIONS(8719), + [aux_sym_boolean_literal_token1] = ACTIONS(8717), + [aux_sym_boolean_literal_token2] = ACTIONS(8717), + [sym_nothing_literal] = ACTIONS(8717), + [sym_null_literal] = ACTIONS(8717), + [sym_empty_literal] = ACTIONS(8717), + [sym_date_literal] = ACTIONS(8719), + [anon_sym_POUND] = ACTIONS(8717), + }, + [STATE(4928)] = { + [sym_argument_list] = STATE(5576), + [sym_identifier] = ACTIONS(8843), + [sym_newline] = ACTIONS(8845), + [anon_sym_COLON] = ACTIONS(8845), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8843), + [aux_sym_frm_property_statement_token1] = ACTIONS(8843), + [anon_sym_DOT] = ACTIONS(8843), + [anon_sym_BANG] = ACTIONS(8845), + [aux_sym__attribute_identifier_token1] = ACTIONS(8843), + [aux_sym_option_statement_token3] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8843), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8843), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8843), + [aux_sym_preprocessor_const_token1] = ACTIONS(8843), + [sym_static_modifier] = ACTIONS(8843), + [sym__dim_keyword] = ACTIONS(8843), + [sym__redim_keyword] = ACTIONS(8843), + [aux_sym_get_accessor_token1] = ACTIONS(8843), + [aux_sym_set_accessor_token1] = ACTIONS(8843), + [aux_sym_const_declaration_token1] = ACTIONS(8843), + [anon_sym_LPAREN] = ACTIONS(10219), + [aux_sym_as_type_clause_token2] = ACTIONS(8843), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8843), + [aux_sym_visibility_token1] = ACTIONS(8843), + [aux_sym_visibility_token2] = ACTIONS(8843), + [aux_sym_elseif_fragment_token1] = ACTIONS(8843), + [aux_sym_else_fragment_token1] = ACTIONS(8843), + [aux_sym_select_statement_token1] = ACTIONS(8843), + [aux_sym__for_header_token1] = ACTIONS(8843), + [aux_sym_do_statement_token1] = ACTIONS(8843), + [aux_sym_do_condition_token1] = ACTIONS(8843), + [aux_sym_with_statement_token1] = ACTIONS(8843), + [aux_sym_exit_statement_token1] = ACTIONS(8843), + [sym_end_statement] = ACTIONS(8845), + [aux_sym_on_goto_statement_token1] = ACTIONS(8843), + [aux_sym_on_goto_statement_token2] = ACTIONS(8843), + [aux_sym_on_error_statement_token2] = ACTIONS(8843), + [sym__ambiguous_redim_statement] = ACTIONS(8845), + [aux_sym_erase_statement_token1] = ACTIONS(8843), + [aux_sym_open_statement_token1] = ACTIONS(8843), + [aux_sym_file_mode_token2] = ACTIONS(8843), + [aux_sym_file_access_token2] = ACTIONS(8843), + [aux_sym_file_lock_token2] = ACTIONS(8843), + [aux_sym_print_statement_token1] = ACTIONS(8843), + [anon_sym_PLUS] = ACTIONS(8845), + [anon_sym_DASH] = ACTIONS(8843), + [anon_sym_QMARK] = ACTIONS(8845), + [aux_sym_close_statement_token1] = ACTIONS(8843), + [aux_sym_put_statement_token1] = ACTIONS(8843), + [aux_sym_unlock_statement_token1] = ACTIONS(8843), + [aux_sym_seek_statement_token1] = ACTIONS(8843), + [sym_reset_statement] = ACTIONS(8843), + [aux_sym_raise_event_statement_token1] = ACTIONS(8843), + [sym_stop_statement] = ACTIONS(8843), + [sym_beep_statement] = ACTIONS(8843), + [aux_sym_unload_statement_token1] = ACTIONS(8843), + [aux_sym_def_type_statement_token1] = ACTIONS(8843), + [aux_sym_def_type_statement_token2] = ACTIONS(8843), + [aux_sym_def_type_statement_token3] = ACTIONS(8843), + [aux_sym_def_type_statement_token4] = ACTIONS(8843), + [aux_sym_def_type_statement_token5] = ACTIONS(8843), + [aux_sym_def_type_statement_token6] = ACTIONS(8843), + [aux_sym_def_type_statement_token7] = ACTIONS(8843), + [aux_sym_def_type_statement_token8] = ACTIONS(8843), + [aux_sym_def_type_statement_token9] = ACTIONS(8843), + [aux_sym_def_type_statement_token10] = ACTIONS(8843), + [aux_sym_def_type_statement_token11] = ACTIONS(8843), + [aux_sym_def_type_statement_token12] = ACTIONS(8843), + [aux_sym_def_type_statement_token13] = ACTIONS(8843), + [aux_sym_def_type_statement_token14] = ACTIONS(8843), + [aux_sym_call_statement_token1] = ACTIONS(8843), + [sym__ambiguous_call_statement] = ACTIONS(8843), + [aux_sym_addressof_expression_token1] = ACTIONS(8843), + [aux_sym_type_of_expression_token1] = ACTIONS(8843), + [aux_sym_unary_expression_token1] = ACTIONS(8843), + [sym_string_literal] = ACTIONS(8845), + [sym_number_literal] = ACTIONS(8845), + [aux_sym_boolean_literal_token1] = ACTIONS(8843), + [aux_sym_boolean_literal_token2] = ACTIONS(8843), + [sym_nothing_literal] = ACTIONS(8843), + [sym_null_literal] = ACTIONS(8843), + [sym_empty_literal] = ACTIONS(8843), + [sym_date_literal] = ACTIONS(8845), + [anon_sym_POUND] = ACTIONS(8843), + }, + [STATE(4929)] = { + [sym_argument_list] = STATE(5577), + [sym_identifier] = ACTIONS(8899), + [sym_newline] = ACTIONS(8901), + [anon_sym_COLON] = ACTIONS(8901), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8899), + [aux_sym_frm_property_statement_token1] = ACTIONS(8899), + [anon_sym_DOT] = ACTIONS(10263), + [anon_sym_BANG] = ACTIONS(10265), + [aux_sym__attribute_identifier_token1] = ACTIONS(8899), + [aux_sym_option_statement_token3] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8899), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8899), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8899), + [aux_sym_preprocessor_const_token1] = ACTIONS(8899), + [sym_static_modifier] = ACTIONS(8899), + [sym__dim_keyword] = ACTIONS(8899), + [sym__redim_keyword] = ACTIONS(8899), + [aux_sym_get_accessor_token1] = ACTIONS(8899), + [aux_sym_set_accessor_token1] = ACTIONS(8899), + [aux_sym_const_declaration_token1] = ACTIONS(8899), + [anon_sym_LPAREN] = ACTIONS(10219), + [aux_sym_as_type_clause_token2] = ACTIONS(8899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8899), + [aux_sym_visibility_token1] = ACTIONS(8899), + [aux_sym_visibility_token2] = ACTIONS(8899), + [aux_sym_elseif_fragment_token1] = ACTIONS(8899), + [aux_sym_else_fragment_token1] = ACTIONS(8899), + [aux_sym_select_statement_token1] = ACTIONS(8899), + [aux_sym__for_header_token1] = ACTIONS(8899), + [aux_sym_do_statement_token1] = ACTIONS(8899), + [aux_sym_do_condition_token1] = ACTIONS(8899), + [aux_sym_with_statement_token1] = ACTIONS(8899), + [aux_sym_exit_statement_token1] = ACTIONS(8899), + [sym_end_statement] = ACTIONS(8901), + [aux_sym_on_goto_statement_token1] = ACTIONS(8899), + [aux_sym_on_goto_statement_token2] = ACTIONS(8899), + [aux_sym_on_error_statement_token2] = ACTIONS(8899), + [sym__ambiguous_redim_statement] = ACTIONS(8901), + [aux_sym_erase_statement_token1] = ACTIONS(8899), + [aux_sym_open_statement_token1] = ACTIONS(8899), + [aux_sym_file_mode_token2] = ACTIONS(8899), + [aux_sym_file_access_token2] = ACTIONS(8899), + [aux_sym_file_lock_token2] = ACTIONS(8899), + [aux_sym_print_statement_token1] = ACTIONS(8899), + [anon_sym_PLUS] = ACTIONS(8901), + [anon_sym_DASH] = ACTIONS(8899), + [anon_sym_QMARK] = ACTIONS(8901), + [aux_sym_close_statement_token1] = ACTIONS(8899), + [aux_sym_put_statement_token1] = ACTIONS(8899), + [aux_sym_unlock_statement_token1] = ACTIONS(8899), + [aux_sym_seek_statement_token1] = ACTIONS(8899), + [sym_reset_statement] = ACTIONS(8899), + [aux_sym_raise_event_statement_token1] = ACTIONS(8899), + [sym_stop_statement] = ACTIONS(8899), + [sym_beep_statement] = ACTIONS(8899), + [aux_sym_unload_statement_token1] = ACTIONS(8899), + [aux_sym_def_type_statement_token1] = ACTIONS(8899), + [aux_sym_def_type_statement_token2] = ACTIONS(8899), + [aux_sym_def_type_statement_token3] = ACTIONS(8899), + [aux_sym_def_type_statement_token4] = ACTIONS(8899), + [aux_sym_def_type_statement_token5] = ACTIONS(8899), + [aux_sym_def_type_statement_token6] = ACTIONS(8899), + [aux_sym_def_type_statement_token7] = ACTIONS(8899), + [aux_sym_def_type_statement_token8] = ACTIONS(8899), + [aux_sym_def_type_statement_token9] = ACTIONS(8899), + [aux_sym_def_type_statement_token10] = ACTIONS(8899), + [aux_sym_def_type_statement_token11] = ACTIONS(8899), + [aux_sym_def_type_statement_token12] = ACTIONS(8899), + [aux_sym_def_type_statement_token13] = ACTIONS(8899), + [aux_sym_def_type_statement_token14] = ACTIONS(8899), + [aux_sym_call_statement_token1] = ACTIONS(8899), + [sym__ambiguous_call_statement] = ACTIONS(8899), + [aux_sym_addressof_expression_token1] = ACTIONS(8899), + [aux_sym_type_of_expression_token1] = ACTIONS(8899), + [aux_sym_unary_expression_token1] = ACTIONS(8899), + [sym_string_literal] = ACTIONS(8901), + [sym_number_literal] = ACTIONS(8901), + [aux_sym_boolean_literal_token1] = ACTIONS(8899), + [aux_sym_boolean_literal_token2] = ACTIONS(8899), + [sym_nothing_literal] = ACTIONS(8899), + [sym_null_literal] = ACTIONS(8899), + [sym_empty_literal] = ACTIONS(8899), + [sym_date_literal] = ACTIONS(8901), + [anon_sym_POUND] = ACTIONS(8899), + }, + [STATE(4930)] = { + [sym_char_position] = STATE(704), + [aux_sym_output_list_repeat1] = STATE(4971), + [sym_identifier] = ACTIONS(7609), + [sym_newline] = ACTIONS(7611), + [anon_sym_COLON] = ACTIONS(7611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7609), + [aux_sym_frm_property_statement_token1] = ACTIONS(7609), + [anon_sym_DOT] = ACTIONS(7609), + [anon_sym_BANG] = ACTIONS(7611), + [aux_sym__attribute_identifier_token1] = ACTIONS(7609), + [aux_sym_option_statement_token3] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7609), + [aux_sym_preprocessor_const_token1] = ACTIONS(7609), + [sym_static_modifier] = ACTIONS(7609), + [sym__dim_keyword] = ACTIONS(7609), + [sym__redim_keyword] = ACTIONS(7609), + [aux_sym_get_accessor_token1] = ACTIONS(7609), + [aux_sym_set_accessor_token1] = ACTIONS(7609), + [anon_sym_COMMA] = ACTIONS(10320), + [aux_sym_const_declaration_token1] = ACTIONS(7609), + [anon_sym_LPAREN] = ACTIONS(7611), + [aux_sym_as_type_clause_token2] = ACTIONS(7609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7609), + [aux_sym_visibility_token1] = ACTIONS(7609), + [aux_sym_visibility_token2] = ACTIONS(7609), + [aux_sym_elseif_fragment_token1] = ACTIONS(7609), + [aux_sym_else_fragment_token1] = ACTIONS(7609), + [aux_sym_select_statement_token1] = ACTIONS(7609), + [aux_sym__for_header_token1] = ACTIONS(7609), + [aux_sym_do_statement_token1] = ACTIONS(7609), + [aux_sym_do_condition_token1] = ACTIONS(7609), + [aux_sym_with_statement_token1] = ACTIONS(7609), + [aux_sym_exit_statement_token1] = ACTIONS(7609), + [sym_end_statement] = ACTIONS(7611), + [aux_sym_on_goto_statement_token1] = ACTIONS(7609), + [aux_sym_on_goto_statement_token2] = ACTIONS(7609), + [aux_sym_on_error_statement_token2] = ACTIONS(7609), + [sym__ambiguous_redim_statement] = ACTIONS(7611), + [aux_sym_erase_statement_token1] = ACTIONS(7609), + [aux_sym_open_statement_token1] = ACTIONS(7609), + [aux_sym_file_mode_token2] = ACTIONS(7609), + [aux_sym_file_access_token2] = ACTIONS(7609), + [aux_sym_file_lock_token2] = ACTIONS(7609), + [aux_sym_print_statement_token1] = ACTIONS(7609), + [anon_sym_PLUS] = ACTIONS(7611), + [anon_sym_DASH] = ACTIONS(7609), + [anon_sym_SEMI] = ACTIONS(10320), + [anon_sym_QMARK] = ACTIONS(7611), + [aux_sym_close_statement_token1] = ACTIONS(7609), + [aux_sym_put_statement_token1] = ACTIONS(7609), + [aux_sym_unlock_statement_token1] = ACTIONS(7609), + [aux_sym_seek_statement_token1] = ACTIONS(7609), + [sym_reset_statement] = ACTIONS(7609), + [aux_sym_raise_event_statement_token1] = ACTIONS(7609), + [sym_stop_statement] = ACTIONS(7609), + [sym_beep_statement] = ACTIONS(7609), + [aux_sym_unload_statement_token1] = ACTIONS(7609), + [aux_sym_def_type_statement_token1] = ACTIONS(7609), + [aux_sym_def_type_statement_token2] = ACTIONS(7609), + [aux_sym_def_type_statement_token3] = ACTIONS(7609), + [aux_sym_def_type_statement_token4] = ACTIONS(7609), + [aux_sym_def_type_statement_token5] = ACTIONS(7609), + [aux_sym_def_type_statement_token6] = ACTIONS(7609), + [aux_sym_def_type_statement_token7] = ACTIONS(7609), + [aux_sym_def_type_statement_token8] = ACTIONS(7609), + [aux_sym_def_type_statement_token9] = ACTIONS(7609), + [aux_sym_def_type_statement_token10] = ACTIONS(7609), + [aux_sym_def_type_statement_token11] = ACTIONS(7609), + [aux_sym_def_type_statement_token12] = ACTIONS(7609), + [aux_sym_def_type_statement_token13] = ACTIONS(7609), + [aux_sym_def_type_statement_token14] = ACTIONS(7609), + [aux_sym_call_statement_token1] = ACTIONS(7609), + [sym__ambiguous_call_statement] = ACTIONS(7609), + [aux_sym_addressof_expression_token1] = ACTIONS(7609), + [aux_sym_type_of_expression_token1] = ACTIONS(7609), + [aux_sym_unary_expression_token1] = ACTIONS(7609), + [sym_string_literal] = ACTIONS(7611), + [sym_number_literal] = ACTIONS(7611), + [aux_sym_boolean_literal_token1] = ACTIONS(7609), + [aux_sym_boolean_literal_token2] = ACTIONS(7609), + [sym_nothing_literal] = ACTIONS(7609), + [sym_null_literal] = ACTIONS(7609), + [sym_empty_literal] = ACTIONS(7609), + [sym_date_literal] = ACTIONS(7611), + [anon_sym_POUND] = ACTIONS(7609), + }, + [STATE(4931)] = { + [sym_identifier] = ACTIONS(7968), + [sym_newline] = ACTIONS(7970), + [anon_sym_COLON] = ACTIONS(7970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7968), + [aux_sym_frm_property_statement_token1] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_BANG] = ACTIONS(7970), + [aux_sym__attribute_identifier_token1] = ACTIONS(7968), + [aux_sym_option_statement_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7968), + [aux_sym_preprocessor_const_token1] = ACTIONS(7968), + [sym_static_modifier] = ACTIONS(7968), + [sym__dim_keyword] = ACTIONS(7968), + [sym__redim_keyword] = ACTIONS(7968), + [aux_sym_get_accessor_token1] = ACTIONS(7968), + [aux_sym_set_accessor_token1] = ACTIONS(7968), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_const_declaration_token1] = ACTIONS(7968), + [anon_sym_LPAREN] = ACTIONS(7970), + [aux_sym_as_type_clause_token1] = ACTIONS(7968), + [aux_sym_as_type_clause_token2] = ACTIONS(7968), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7968), + [aux_sym_visibility_token1] = ACTIONS(7968), + [aux_sym_visibility_token2] = ACTIONS(7968), + [aux_sym_elseif_fragment_token1] = ACTIONS(7968), + [aux_sym_else_fragment_token1] = ACTIONS(7968), + [aux_sym_select_statement_token1] = ACTIONS(7968), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7968), + [aux_sym__for_header_token1] = ACTIONS(7968), + [aux_sym_do_statement_token1] = ACTIONS(7968), + [aux_sym_do_condition_token1] = ACTIONS(7968), + [aux_sym_with_statement_token1] = ACTIONS(7968), + [aux_sym_exit_statement_token1] = ACTIONS(7968), + [sym_end_statement] = ACTIONS(7970), + [aux_sym_on_goto_statement_token1] = ACTIONS(7968), + [aux_sym_on_goto_statement_token2] = ACTIONS(7968), + [aux_sym_on_error_statement_token2] = ACTIONS(7968), + [sym__ambiguous_redim_statement] = ACTIONS(7970), + [aux_sym_erase_statement_token1] = ACTIONS(7968), + [aux_sym_open_statement_token1] = ACTIONS(7968), + [aux_sym_file_mode_token2] = ACTIONS(7968), + [aux_sym_file_access_token2] = ACTIONS(7968), + [aux_sym_file_lock_token2] = ACTIONS(7968), + [aux_sym_print_statement_token1] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7970), + [aux_sym_close_statement_token1] = ACTIONS(7968), + [aux_sym_put_statement_token1] = ACTIONS(7968), + [aux_sym_unlock_statement_token1] = ACTIONS(7968), + [aux_sym_seek_statement_token1] = ACTIONS(7968), + [sym_reset_statement] = ACTIONS(7968), + [aux_sym_raise_event_statement_token1] = ACTIONS(7968), + [sym_stop_statement] = ACTIONS(7968), + [sym_beep_statement] = ACTIONS(7968), + [aux_sym_unload_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token2] = ACTIONS(7968), + [aux_sym_def_type_statement_token3] = ACTIONS(7968), + [aux_sym_def_type_statement_token4] = ACTIONS(7968), + [aux_sym_def_type_statement_token5] = ACTIONS(7968), + [aux_sym_def_type_statement_token6] = ACTIONS(7968), + [aux_sym_def_type_statement_token7] = ACTIONS(7968), + [aux_sym_def_type_statement_token8] = ACTIONS(7968), + [aux_sym_def_type_statement_token9] = ACTIONS(7968), + [aux_sym_def_type_statement_token10] = ACTIONS(7968), + [aux_sym_def_type_statement_token11] = ACTIONS(7968), + [aux_sym_def_type_statement_token12] = ACTIONS(7968), + [aux_sym_def_type_statement_token13] = ACTIONS(7968), + [aux_sym_def_type_statement_token14] = ACTIONS(7968), + [aux_sym_call_statement_token1] = ACTIONS(7968), + [sym__ambiguous_call_statement] = ACTIONS(7968), + [aux_sym_addressof_expression_token1] = ACTIONS(7968), + [aux_sym_type_of_expression_token1] = ACTIONS(7968), + [aux_sym_unary_expression_token1] = ACTIONS(7968), + [sym_string_literal] = ACTIONS(7970), + [sym_number_literal] = ACTIONS(7970), + [aux_sym_boolean_literal_token1] = ACTIONS(7968), + [aux_sym_boolean_literal_token2] = ACTIONS(7968), + [sym_nothing_literal] = ACTIONS(7968), + [sym_null_literal] = ACTIONS(7968), + [sym_empty_literal] = ACTIONS(7968), + [sym_date_literal] = ACTIONS(7970), + [anon_sym_POUND] = ACTIONS(7968), + }, + [STATE(4932)] = { + [sym_initializer] = STATE(6269), + [sym_identifier] = ACTIONS(7710), + [sym_newline] = ACTIONS(7712), + [anon_sym_COLON] = ACTIONS(7712), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7710), + [aux_sym_frm_property_statement_token1] = ACTIONS(7710), + [anon_sym_EQ] = ACTIONS(9997), + [anon_sym_DOT] = ACTIONS(7710), + [anon_sym_BANG] = ACTIONS(7712), + [aux_sym__attribute_identifier_token1] = ACTIONS(7710), + [aux_sym_option_statement_token3] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7710), + [aux_sym_preprocessor_const_token1] = ACTIONS(7710), + [sym_static_modifier] = ACTIONS(7710), + [sym__dim_keyword] = ACTIONS(7710), + [sym__redim_keyword] = ACTIONS(7710), + [aux_sym_get_accessor_token1] = ACTIONS(7710), + [aux_sym_set_accessor_token1] = ACTIONS(7710), + [anon_sym_COMMA] = ACTIONS(7712), + [aux_sym_const_declaration_token1] = ACTIONS(7710), + [anon_sym_LPAREN] = ACTIONS(7712), + [aux_sym_as_type_clause_token2] = ACTIONS(7710), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7710), + [aux_sym_visibility_token1] = ACTIONS(7710), + [aux_sym_visibility_token2] = ACTIONS(7710), + [aux_sym_elseif_fragment_token1] = ACTIONS(7710), + [aux_sym_else_fragment_token1] = ACTIONS(7710), + [aux_sym_select_statement_token1] = ACTIONS(7710), + [aux_sym__for_header_token1] = ACTIONS(7710), + [aux_sym_do_statement_token1] = ACTIONS(7710), + [aux_sym_do_condition_token1] = ACTIONS(7710), + [aux_sym_while_statement_token1] = ACTIONS(7710), + [aux_sym_with_statement_token1] = ACTIONS(7710), + [aux_sym_exit_statement_token1] = ACTIONS(7710), + [sym_end_statement] = ACTIONS(7712), + [aux_sym_on_goto_statement_token1] = ACTIONS(7710), + [aux_sym_on_goto_statement_token2] = ACTIONS(7710), + [aux_sym_on_error_statement_token2] = ACTIONS(7710), + [sym__ambiguous_redim_statement] = ACTIONS(7712), + [aux_sym_erase_statement_token1] = ACTIONS(7710), + [aux_sym_open_statement_token1] = ACTIONS(7710), + [aux_sym_file_mode_token2] = ACTIONS(7710), + [aux_sym_file_access_token2] = ACTIONS(7710), + [aux_sym_file_lock_token2] = ACTIONS(7710), + [aux_sym_print_statement_token1] = ACTIONS(7710), + [anon_sym_PLUS] = ACTIONS(7712), + [anon_sym_DASH] = ACTIONS(7710), + [anon_sym_QMARK] = ACTIONS(7712), + [aux_sym_close_statement_token1] = ACTIONS(7710), + [aux_sym_put_statement_token1] = ACTIONS(7710), + [aux_sym_unlock_statement_token1] = ACTIONS(7710), + [aux_sym_seek_statement_token1] = ACTIONS(7710), + [sym_reset_statement] = ACTIONS(7710), + [aux_sym_raise_event_statement_token1] = ACTIONS(7710), + [sym_stop_statement] = ACTIONS(7710), + [sym_beep_statement] = ACTIONS(7710), + [aux_sym_unload_statement_token1] = ACTIONS(7710), + [aux_sym_def_type_statement_token1] = ACTIONS(7710), + [aux_sym_def_type_statement_token2] = ACTIONS(7710), + [aux_sym_def_type_statement_token3] = ACTIONS(7710), + [aux_sym_def_type_statement_token4] = ACTIONS(7710), + [aux_sym_def_type_statement_token5] = ACTIONS(7710), + [aux_sym_def_type_statement_token6] = ACTIONS(7710), + [aux_sym_def_type_statement_token7] = ACTIONS(7710), + [aux_sym_def_type_statement_token8] = ACTIONS(7710), + [aux_sym_def_type_statement_token9] = ACTIONS(7710), + [aux_sym_def_type_statement_token10] = ACTIONS(7710), + [aux_sym_def_type_statement_token11] = ACTIONS(7710), + [aux_sym_def_type_statement_token12] = ACTIONS(7710), + [aux_sym_def_type_statement_token13] = ACTIONS(7710), + [aux_sym_def_type_statement_token14] = ACTIONS(7710), + [aux_sym_call_statement_token1] = ACTIONS(7710), + [sym__ambiguous_call_statement] = ACTIONS(7710), + [aux_sym_addressof_expression_token1] = ACTIONS(7710), + [aux_sym_type_of_expression_token1] = ACTIONS(7710), + [aux_sym_unary_expression_token1] = ACTIONS(7710), + [sym_string_literal] = ACTIONS(7712), + [sym_number_literal] = ACTIONS(7712), + [aux_sym_boolean_literal_token1] = ACTIONS(7710), + [aux_sym_boolean_literal_token2] = ACTIONS(7710), + [sym_nothing_literal] = ACTIONS(7710), + [sym_null_literal] = ACTIONS(7710), + [sym_empty_literal] = ACTIONS(7710), + [sym_date_literal] = ACTIONS(7712), + [anon_sym_POUND] = ACTIONS(7710), + }, + [STATE(4933)] = { + [sym_identifier] = ACTIONS(8196), + [sym_newline] = ACTIONS(8198), + [anon_sym_COLON] = ACTIONS(8198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8196), + [aux_sym_frm_property_statement_token1] = ACTIONS(8196), + [anon_sym_DOT] = ACTIONS(8196), + [anon_sym_BANG] = ACTIONS(8198), + [aux_sym__attribute_identifier_token1] = ACTIONS(8196), + [aux_sym_option_statement_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8196), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8196), + [aux_sym_preprocessor_const_token1] = ACTIONS(8196), + [sym_static_modifier] = ACTIONS(8196), + [sym__dim_keyword] = ACTIONS(8196), + [sym__redim_keyword] = ACTIONS(8196), + [aux_sym_get_accessor_token1] = ACTIONS(8196), + [aux_sym_set_accessor_token1] = ACTIONS(8196), + [anon_sym_COMMA] = ACTIONS(8198), + [aux_sym_const_declaration_token1] = ACTIONS(8196), + [anon_sym_LPAREN] = ACTIONS(8198), + [aux_sym_as_type_clause_token2] = ACTIONS(8196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8196), + [aux_sym_visibility_token1] = ACTIONS(8196), + [aux_sym_visibility_token2] = ACTIONS(8196), + [aux_sym_elseif_fragment_token1] = ACTIONS(8196), + [aux_sym_else_fragment_token1] = ACTIONS(8196), + [aux_sym_select_statement_token1] = ACTIONS(8196), + [aux_sym__for_header_token1] = ACTIONS(8196), + [aux_sym_do_statement_token1] = ACTIONS(8196), + [aux_sym_do_condition_token1] = ACTIONS(8196), + [aux_sym_with_statement_token1] = ACTIONS(8196), + [aux_sym_exit_statement_token1] = ACTIONS(8196), + [sym_end_statement] = ACTIONS(8198), + [aux_sym_on_goto_statement_token1] = ACTIONS(8196), + [aux_sym_on_goto_statement_token2] = ACTIONS(8196), + [aux_sym_on_error_statement_token2] = ACTIONS(8196), + [sym__ambiguous_redim_statement] = ACTIONS(8198), + [aux_sym_erase_statement_token1] = ACTIONS(8196), + [aux_sym_open_statement_token1] = ACTIONS(8196), + [aux_sym_file_mode_token2] = ACTIONS(8196), + [aux_sym_file_access_token2] = ACTIONS(8196), + [aux_sym_file_lock_token2] = ACTIONS(8196), + [aux_sym_print_statement_token1] = ACTIONS(8196), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(8196), + [anon_sym_QMARK] = ACTIONS(8198), + [aux_sym_close_statement_token1] = ACTIONS(8196), + [aux_sym_put_statement_token1] = ACTIONS(8196), + [aux_sym_unlock_statement_token1] = ACTIONS(8196), + [aux_sym_seek_statement_token1] = ACTIONS(8196), + [sym_reset_statement] = ACTIONS(8196), + [aux_sym_raise_event_statement_token1] = ACTIONS(8196), + [sym_stop_statement] = ACTIONS(8196), + [sym_beep_statement] = ACTIONS(8196), + [aux_sym_unload_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token2] = ACTIONS(8196), + [aux_sym_def_type_statement_token3] = ACTIONS(8196), + [aux_sym_def_type_statement_token4] = ACTIONS(8196), + [aux_sym_def_type_statement_token5] = ACTIONS(8196), + [aux_sym_def_type_statement_token6] = ACTIONS(8196), + [aux_sym_def_type_statement_token7] = ACTIONS(8196), + [aux_sym_def_type_statement_token8] = ACTIONS(8196), + [aux_sym_def_type_statement_token9] = ACTIONS(8196), + [aux_sym_def_type_statement_token10] = ACTIONS(8196), + [aux_sym_def_type_statement_token11] = ACTIONS(8196), + [aux_sym_def_type_statement_token12] = ACTIONS(8196), + [aux_sym_def_type_statement_token13] = ACTIONS(8196), + [aux_sym_def_type_statement_token14] = ACTIONS(8196), + [aux_sym_call_statement_token1] = ACTIONS(8196), + [sym__ambiguous_call_statement] = ACTIONS(8196), + [aux_sym_addressof_expression_token1] = ACTIONS(8196), + [aux_sym_type_of_expression_token1] = ACTIONS(8196), + [aux_sym_unary_expression_token1] = ACTIONS(8196), + [sym_string_literal] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8198), + [aux_sym_boolean_literal_token1] = ACTIONS(8196), + [aux_sym_boolean_literal_token2] = ACTIONS(8196), + [sym_nothing_literal] = ACTIONS(8196), + [sym_null_literal] = ACTIONS(8196), + [sym_empty_literal] = ACTIONS(8196), + [sym_date_literal] = ACTIONS(8198), + [anon_sym_POUND] = ACTIONS(8196), + }, + [STATE(4934)] = { + [sym_array_bounds] = STATE(5590), + [sym_identifier] = ACTIONS(8070), + [sym_newline] = ACTIONS(8072), + [anon_sym_COLON] = ACTIONS(8072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8070), + [aux_sym_frm_property_statement_token1] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(8072), + [anon_sym_DOT] = ACTIONS(8070), + [anon_sym_BANG] = ACTIONS(8072), + [aux_sym__attribute_identifier_token1] = ACTIONS(8070), + [aux_sym_option_statement_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8070), + [aux_sym_preprocessor_const_token1] = ACTIONS(8070), + [sym_static_modifier] = ACTIONS(8070), + [sym__dim_keyword] = ACTIONS(8070), + [sym__redim_keyword] = ACTIONS(8070), + [aux_sym_get_accessor_token1] = ACTIONS(8070), + [aux_sym_set_accessor_token1] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [aux_sym_const_declaration_token1] = ACTIONS(8070), + [anon_sym_LPAREN] = ACTIONS(10068), + [aux_sym_as_type_clause_token2] = ACTIONS(8070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8070), + [aux_sym_visibility_token1] = ACTIONS(8070), + [aux_sym_visibility_token2] = ACTIONS(8070), + [aux_sym_elseif_fragment_token1] = ACTIONS(8070), + [aux_sym_else_fragment_token1] = ACTIONS(8070), + [aux_sym_select_statement_token1] = ACTIONS(8070), + [aux_sym__for_header_token1] = ACTIONS(8070), + [aux_sym_do_statement_token1] = ACTIONS(8070), + [aux_sym_do_condition_token1] = ACTIONS(8070), + [aux_sym_while_statement_token1] = ACTIONS(8070), + [aux_sym_with_statement_token1] = ACTIONS(8070), + [aux_sym_exit_statement_token1] = ACTIONS(8070), + [sym_end_statement] = ACTIONS(8072), + [aux_sym_on_goto_statement_token1] = ACTIONS(8070), + [aux_sym_on_goto_statement_token2] = ACTIONS(8070), + [aux_sym_on_error_statement_token2] = ACTIONS(8070), + [sym__ambiguous_redim_statement] = ACTIONS(8072), + [aux_sym_erase_statement_token1] = ACTIONS(8070), + [aux_sym_open_statement_token1] = ACTIONS(8070), + [aux_sym_file_mode_token2] = ACTIONS(8070), + [aux_sym_file_access_token2] = ACTIONS(8070), + [aux_sym_file_lock_token2] = ACTIONS(8070), + [aux_sym_print_statement_token1] = ACTIONS(8070), + [anon_sym_PLUS] = ACTIONS(8072), + [anon_sym_DASH] = ACTIONS(8070), + [anon_sym_QMARK] = ACTIONS(8072), + [aux_sym_close_statement_token1] = ACTIONS(8070), + [aux_sym_put_statement_token1] = ACTIONS(8070), + [aux_sym_unlock_statement_token1] = ACTIONS(8070), + [aux_sym_seek_statement_token1] = ACTIONS(8070), + [sym_reset_statement] = ACTIONS(8070), + [aux_sym_raise_event_statement_token1] = ACTIONS(8070), + [sym_stop_statement] = ACTIONS(8070), + [sym_beep_statement] = ACTIONS(8070), + [aux_sym_unload_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token2] = ACTIONS(8070), + [aux_sym_def_type_statement_token3] = ACTIONS(8070), + [aux_sym_def_type_statement_token4] = ACTIONS(8070), + [aux_sym_def_type_statement_token5] = ACTIONS(8070), + [aux_sym_def_type_statement_token6] = ACTIONS(8070), + [aux_sym_def_type_statement_token7] = ACTIONS(8070), + [aux_sym_def_type_statement_token8] = ACTIONS(8070), + [aux_sym_def_type_statement_token9] = ACTIONS(8070), + [aux_sym_def_type_statement_token10] = ACTIONS(8070), + [aux_sym_def_type_statement_token11] = ACTIONS(8070), + [aux_sym_def_type_statement_token12] = ACTIONS(8070), + [aux_sym_def_type_statement_token13] = ACTIONS(8070), + [aux_sym_def_type_statement_token14] = ACTIONS(8070), + [aux_sym_call_statement_token1] = ACTIONS(8070), + [sym__ambiguous_call_statement] = ACTIONS(8070), + [aux_sym_addressof_expression_token1] = ACTIONS(8070), + [aux_sym_type_of_expression_token1] = ACTIONS(8070), + [aux_sym_unary_expression_token1] = ACTIONS(8070), + [sym_string_literal] = ACTIONS(8072), + [sym_number_literal] = ACTIONS(8072), + [aux_sym_boolean_literal_token1] = ACTIONS(8070), + [aux_sym_boolean_literal_token2] = ACTIONS(8070), + [sym_nothing_literal] = ACTIONS(8070), + [sym_null_literal] = ACTIONS(8070), + [sym_empty_literal] = ACTIONS(8070), + [sym_date_literal] = ACTIONS(8072), + [anon_sym_POUND] = ACTIONS(8070), + }, + [STATE(4935)] = { + [sym_initializer] = STATE(6106), + [sym_identifier] = ACTIONS(7710), + [sym_newline] = ACTIONS(7712), + [anon_sym_COLON] = ACTIONS(7712), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7710), + [aux_sym_frm_property_statement_token1] = ACTIONS(7710), + [anon_sym_EQ] = ACTIONS(10032), + [anon_sym_DOT] = ACTIONS(7710), + [anon_sym_BANG] = ACTIONS(7712), + [aux_sym__attribute_identifier_token1] = ACTIONS(7710), + [aux_sym_option_statement_token3] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7710), + [aux_sym_preprocessor_const_token1] = ACTIONS(7710), + [sym_static_modifier] = ACTIONS(7710), + [sym__dim_keyword] = ACTIONS(7710), + [sym__redim_keyword] = ACTIONS(7710), + [aux_sym_get_accessor_token1] = ACTIONS(7710), + [aux_sym_set_accessor_token1] = ACTIONS(7710), + [anon_sym_COMMA] = ACTIONS(7712), + [aux_sym_const_declaration_token1] = ACTIONS(7710), + [anon_sym_LPAREN] = ACTIONS(7712), + [aux_sym_as_type_clause_token2] = ACTIONS(7710), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7710), + [aux_sym_visibility_token1] = ACTIONS(7710), + [aux_sym_visibility_token2] = ACTIONS(7710), + [aux_sym_elseif_fragment_token1] = ACTIONS(7710), + [aux_sym_else_fragment_token1] = ACTIONS(7710), + [aux_sym_select_statement_token1] = ACTIONS(7710), + [aux_sym__for_header_token1] = ACTIONS(7710), + [aux_sym_do_statement_token1] = ACTIONS(7710), + [aux_sym_do_condition_token1] = ACTIONS(7710), + [aux_sym_with_statement_token1] = ACTIONS(7710), + [aux_sym_exit_statement_token1] = ACTIONS(7710), + [sym_end_statement] = ACTIONS(7712), + [aux_sym_on_goto_statement_token1] = ACTIONS(7710), + [aux_sym_on_goto_statement_token2] = ACTIONS(7710), + [aux_sym_on_error_statement_token2] = ACTIONS(7710), + [sym__ambiguous_redim_statement] = ACTIONS(7712), + [aux_sym_erase_statement_token1] = ACTIONS(7710), + [aux_sym_open_statement_token1] = ACTIONS(7710), + [aux_sym_file_mode_token2] = ACTIONS(7710), + [aux_sym_file_access_token2] = ACTIONS(7710), + [aux_sym_file_lock_token2] = ACTIONS(7710), + [aux_sym_print_statement_token1] = ACTIONS(7710), + [anon_sym_PLUS] = ACTIONS(7712), + [anon_sym_DASH] = ACTIONS(7710), + [anon_sym_QMARK] = ACTIONS(7712), + [aux_sym_close_statement_token1] = ACTIONS(7710), + [aux_sym_put_statement_token1] = ACTIONS(7710), + [aux_sym_unlock_statement_token1] = ACTIONS(7710), + [aux_sym_seek_statement_token1] = ACTIONS(7710), + [sym_reset_statement] = ACTIONS(7710), + [aux_sym_raise_event_statement_token1] = ACTIONS(7710), + [sym_stop_statement] = ACTIONS(7710), + [sym_beep_statement] = ACTIONS(7710), + [aux_sym_unload_statement_token1] = ACTIONS(7710), + [aux_sym_def_type_statement_token1] = ACTIONS(7710), + [aux_sym_def_type_statement_token2] = ACTIONS(7710), + [aux_sym_def_type_statement_token3] = ACTIONS(7710), + [aux_sym_def_type_statement_token4] = ACTIONS(7710), + [aux_sym_def_type_statement_token5] = ACTIONS(7710), + [aux_sym_def_type_statement_token6] = ACTIONS(7710), + [aux_sym_def_type_statement_token7] = ACTIONS(7710), + [aux_sym_def_type_statement_token8] = ACTIONS(7710), + [aux_sym_def_type_statement_token9] = ACTIONS(7710), + [aux_sym_def_type_statement_token10] = ACTIONS(7710), + [aux_sym_def_type_statement_token11] = ACTIONS(7710), + [aux_sym_def_type_statement_token12] = ACTIONS(7710), + [aux_sym_def_type_statement_token13] = ACTIONS(7710), + [aux_sym_def_type_statement_token14] = ACTIONS(7710), + [aux_sym_call_statement_token1] = ACTIONS(7710), + [sym__ambiguous_call_statement] = ACTIONS(7710), + [aux_sym_addressof_expression_token1] = ACTIONS(7710), + [aux_sym_type_of_expression_token1] = ACTIONS(7710), + [aux_sym_unary_expression_token1] = ACTIONS(7710), + [sym_string_literal] = ACTIONS(7712), + [sym_number_literal] = ACTIONS(7712), + [aux_sym_boolean_literal_token1] = ACTIONS(7710), + [aux_sym_boolean_literal_token2] = ACTIONS(7710), + [sym_nothing_literal] = ACTIONS(7710), + [sym_null_literal] = ACTIONS(7710), + [sym_empty_literal] = ACTIONS(7710), + [sym_date_literal] = ACTIONS(7712), + [anon_sym_POUND] = ACTIONS(7710), + }, + [STATE(4936)] = { + [sym_identifier] = ACTIONS(8835), + [sym_newline] = ACTIONS(8837), + [anon_sym_COLON] = ACTIONS(8837), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8835), + [aux_sym_frm_property_statement_token1] = ACTIONS(8835), + [anon_sym_DOT] = ACTIONS(8835), + [anon_sym_BANG] = ACTIONS(8837), + [aux_sym__attribute_identifier_token1] = ACTIONS(8835), + [aux_sym_option_statement_token3] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8835), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8835), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8835), + [aux_sym_preprocessor_const_token1] = ACTIONS(8835), + [sym_static_modifier] = ACTIONS(8835), + [sym__dim_keyword] = ACTIONS(8835), + [sym__redim_keyword] = ACTIONS(8835), + [aux_sym_get_accessor_token1] = ACTIONS(8835), + [aux_sym_set_accessor_token1] = ACTIONS(8835), + [anon_sym_COMMA] = ACTIONS(8837), + [aux_sym_const_declaration_token1] = ACTIONS(8835), + [anon_sym_LPAREN] = ACTIONS(8837), + [aux_sym_as_type_clause_token2] = ACTIONS(8835), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8835), + [aux_sym_visibility_token1] = ACTIONS(8835), + [aux_sym_visibility_token2] = ACTIONS(8835), + [aux_sym_elseif_fragment_token1] = ACTIONS(8835), + [aux_sym_else_fragment_token1] = ACTIONS(8835), + [aux_sym_select_statement_token1] = ACTIONS(8835), + [aux_sym__for_header_token1] = ACTIONS(8835), + [aux_sym_do_statement_token1] = ACTIONS(8835), + [aux_sym_do_condition_token1] = ACTIONS(8835), + [aux_sym_with_statement_token1] = ACTIONS(8835), + [aux_sym_exit_statement_token1] = ACTIONS(8835), + [sym_end_statement] = ACTIONS(8837), + [aux_sym_on_goto_statement_token1] = ACTIONS(8835), + [aux_sym_on_goto_statement_token2] = ACTIONS(8835), + [aux_sym_on_error_statement_token2] = ACTIONS(8835), + [sym__ambiguous_redim_statement] = ACTIONS(8837), + [aux_sym_erase_statement_token1] = ACTIONS(8835), + [aux_sym_open_statement_token1] = ACTIONS(8835), + [aux_sym_file_mode_token2] = ACTIONS(8835), + [aux_sym_file_access_token2] = ACTIONS(8835), + [aux_sym_file_lock_token2] = ACTIONS(8835), + [aux_sym_print_statement_token1] = ACTIONS(8835), + [anon_sym_PLUS] = ACTIONS(8837), + [anon_sym_DASH] = ACTIONS(8835), + [anon_sym_QMARK] = ACTIONS(8837), + [aux_sym_close_statement_token1] = ACTIONS(8835), + [aux_sym_put_statement_token1] = ACTIONS(8835), + [aux_sym_unlock_statement_token1] = ACTIONS(8835), + [aux_sym_seek_statement_token1] = ACTIONS(8835), + [sym_reset_statement] = ACTIONS(8835), + [aux_sym_raise_event_statement_token1] = ACTIONS(8835), + [sym_stop_statement] = ACTIONS(8835), + [sym_beep_statement] = ACTIONS(8835), + [aux_sym_unload_statement_token1] = ACTIONS(8835), + [aux_sym_def_type_statement_token1] = ACTIONS(8835), + [aux_sym_def_type_statement_token2] = ACTIONS(8835), + [aux_sym_def_type_statement_token3] = ACTIONS(8835), + [aux_sym_def_type_statement_token4] = ACTIONS(8835), + [aux_sym_def_type_statement_token5] = ACTIONS(8835), + [aux_sym_def_type_statement_token6] = ACTIONS(8835), + [aux_sym_def_type_statement_token7] = ACTIONS(8835), + [aux_sym_def_type_statement_token8] = ACTIONS(8835), + [aux_sym_def_type_statement_token9] = ACTIONS(8835), + [aux_sym_def_type_statement_token10] = ACTIONS(8835), + [aux_sym_def_type_statement_token11] = ACTIONS(8835), + [aux_sym_def_type_statement_token12] = ACTIONS(8835), + [aux_sym_def_type_statement_token13] = ACTIONS(8835), + [aux_sym_def_type_statement_token14] = ACTIONS(8835), + [aux_sym_call_statement_token1] = ACTIONS(8835), + [sym__ambiguous_call_statement] = ACTIONS(8835), + [aux_sym_addressof_expression_token1] = ACTIONS(8835), + [aux_sym_type_of_expression_token1] = ACTIONS(8835), + [aux_sym_unary_expression_token1] = ACTIONS(8835), + [sym_string_literal] = ACTIONS(8837), + [sym_number_literal] = ACTIONS(8837), + [aux_sym_boolean_literal_token1] = ACTIONS(8835), + [aux_sym_boolean_literal_token2] = ACTIONS(8835), + [sym_nothing_literal] = ACTIONS(8835), + [sym_null_literal] = ACTIONS(8835), + [sym_empty_literal] = ACTIONS(8835), + [sym_date_literal] = ACTIONS(8837), + [anon_sym_POUND] = ACTIONS(8835), + }, + [STATE(4937)] = { + [sym_argument_list] = STATE(5196), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(10322), + [anon_sym_BANG] = ACTIONS(10324), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10326), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_statement_token2] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(4938)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(4939)] = { + [sym_identifier] = ACTIONS(7984), + [sym_newline] = ACTIONS(7986), + [anon_sym_COLON] = ACTIONS(7986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7984), + [aux_sym_frm_property_statement_token1] = ACTIONS(7984), + [anon_sym_EQ] = ACTIONS(7986), + [anon_sym_DOT] = ACTIONS(7984), + [anon_sym_BANG] = ACTIONS(7986), + [aux_sym__attribute_identifier_token1] = ACTIONS(7984), + [aux_sym_option_statement_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7984), + [aux_sym_preprocessor_const_token1] = ACTIONS(7984), + [sym_static_modifier] = ACTIONS(7984), + [sym__dim_keyword] = ACTIONS(7984), + [sym__redim_keyword] = ACTIONS(7984), + [aux_sym_get_accessor_token1] = ACTIONS(7984), + [aux_sym_set_accessor_token1] = ACTIONS(7984), + [anon_sym_COMMA] = ACTIONS(7986), + [aux_sym_const_declaration_token1] = ACTIONS(7984), + [anon_sym_LPAREN] = ACTIONS(7986), + [aux_sym_as_type_clause_token1] = ACTIONS(7984), + [aux_sym_as_type_clause_token2] = ACTIONS(7984), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7984), + [aux_sym_visibility_token1] = ACTIONS(7984), + [aux_sym_visibility_token2] = ACTIONS(7984), + [aux_sym_elseif_fragment_token1] = ACTIONS(7984), + [aux_sym_else_fragment_token1] = ACTIONS(7984), + [aux_sym_select_statement_token1] = ACTIONS(7984), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7984), + [aux_sym__for_header_token1] = ACTIONS(7984), + [aux_sym_do_statement_token1] = ACTIONS(7984), + [aux_sym_do_condition_token1] = ACTIONS(7984), + [aux_sym_with_statement_token1] = ACTIONS(7984), + [aux_sym_exit_statement_token1] = ACTIONS(7984), + [sym_end_statement] = ACTIONS(7986), + [aux_sym_on_goto_statement_token1] = ACTIONS(7984), + [aux_sym_on_goto_statement_token2] = ACTIONS(7984), + [aux_sym_on_error_statement_token2] = ACTIONS(7984), + [sym__ambiguous_redim_statement] = ACTIONS(7986), + [aux_sym_erase_statement_token1] = ACTIONS(7984), + [aux_sym_open_statement_token1] = ACTIONS(7984), + [aux_sym_file_mode_token2] = ACTIONS(7984), + [aux_sym_file_access_token2] = ACTIONS(7984), + [aux_sym_file_lock_token2] = ACTIONS(7984), + [aux_sym_print_statement_token1] = ACTIONS(7984), + [anon_sym_PLUS] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(7984), + [anon_sym_QMARK] = ACTIONS(7986), + [aux_sym_close_statement_token1] = ACTIONS(7984), + [aux_sym_put_statement_token1] = ACTIONS(7984), + [aux_sym_unlock_statement_token1] = ACTIONS(7984), + [aux_sym_seek_statement_token1] = ACTIONS(7984), + [sym_reset_statement] = ACTIONS(7984), + [aux_sym_raise_event_statement_token1] = ACTIONS(7984), + [sym_stop_statement] = ACTIONS(7984), + [sym_beep_statement] = ACTIONS(7984), + [aux_sym_unload_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token2] = ACTIONS(7984), + [aux_sym_def_type_statement_token3] = ACTIONS(7984), + [aux_sym_def_type_statement_token4] = ACTIONS(7984), + [aux_sym_def_type_statement_token5] = ACTIONS(7984), + [aux_sym_def_type_statement_token6] = ACTIONS(7984), + [aux_sym_def_type_statement_token7] = ACTIONS(7984), + [aux_sym_def_type_statement_token8] = ACTIONS(7984), + [aux_sym_def_type_statement_token9] = ACTIONS(7984), + [aux_sym_def_type_statement_token10] = ACTIONS(7984), + [aux_sym_def_type_statement_token11] = ACTIONS(7984), + [aux_sym_def_type_statement_token12] = ACTIONS(7984), + [aux_sym_def_type_statement_token13] = ACTIONS(7984), + [aux_sym_def_type_statement_token14] = ACTIONS(7984), + [aux_sym_call_statement_token1] = ACTIONS(7984), + [sym__ambiguous_call_statement] = ACTIONS(7984), + [aux_sym_addressof_expression_token1] = ACTIONS(7984), + [aux_sym_type_of_expression_token1] = ACTIONS(7984), + [aux_sym_unary_expression_token1] = ACTIONS(7984), + [sym_string_literal] = ACTIONS(7986), + [sym_number_literal] = ACTIONS(7986), + [aux_sym_boolean_literal_token1] = ACTIONS(7984), + [aux_sym_boolean_literal_token2] = ACTIONS(7984), + [sym_nothing_literal] = ACTIONS(7984), + [sym_null_literal] = ACTIONS(7984), + [sym_empty_literal] = ACTIONS(7984), + [sym_date_literal] = ACTIONS(7986), + [anon_sym_POUND] = ACTIONS(7984), + }, + [STATE(4940)] = { + [sym_argument_list] = STATE(5635), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7836), + [anon_sym_BANG] = ACTIONS(4034), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10328), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(4941)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(4941), + [sym_identifier] = ACTIONS(8702), + [sym_newline] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(10330), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8702), + [aux_sym_frm_property_statement_token1] = ACTIONS(8702), + [anon_sym_DOT] = ACTIONS(8702), + [anon_sym_BANG] = ACTIONS(8704), + [aux_sym__attribute_identifier_token1] = ACTIONS(8702), + [aux_sym_option_statement_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8702), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8702), + [aux_sym_preprocessor_const_token1] = ACTIONS(8702), + [sym_static_modifier] = ACTIONS(8702), + [sym__dim_keyword] = ACTIONS(8702), + [sym__redim_keyword] = ACTIONS(8702), + [aux_sym_get_accessor_token1] = ACTIONS(8702), + [aux_sym_set_accessor_token1] = ACTIONS(8702), + [aux_sym_const_declaration_token1] = ACTIONS(8702), + [anon_sym_LPAREN] = ACTIONS(8704), + [aux_sym_as_type_clause_token2] = ACTIONS(8702), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8702), + [aux_sym_visibility_token1] = ACTIONS(8702), + [aux_sym_visibility_token2] = ACTIONS(8702), + [aux_sym_elseif_fragment_token1] = ACTIONS(8702), + [aux_sym_else_fragment_token1] = ACTIONS(8702), + [aux_sym_select_statement_token1] = ACTIONS(8702), + [aux_sym__for_header_token1] = ACTIONS(8702), + [aux_sym_do_statement_token1] = ACTIONS(8702), + [aux_sym_do_condition_token1] = ACTIONS(8702), + [aux_sym_with_statement_token1] = ACTIONS(8702), + [aux_sym_exit_statement_token1] = ACTIONS(8702), + [sym_end_statement] = ACTIONS(8704), + [aux_sym_on_goto_statement_token1] = ACTIONS(8702), + [aux_sym_on_goto_statement_token2] = ACTIONS(8702), + [aux_sym_on_error_statement_token2] = ACTIONS(8702), + [sym__ambiguous_redim_statement] = ACTIONS(8704), + [aux_sym_erase_statement_token1] = ACTIONS(8702), + [aux_sym_open_statement_token1] = ACTIONS(8702), + [aux_sym_file_mode_token2] = ACTIONS(8702), + [aux_sym_file_access_token2] = ACTIONS(8702), + [aux_sym_file_lock_token2] = ACTIONS(8702), + [aux_sym_print_statement_token1] = ACTIONS(8702), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_DASH] = ACTIONS(8702), + [anon_sym_QMARK] = ACTIONS(8704), + [aux_sym_close_statement_token1] = ACTIONS(8702), + [aux_sym_put_statement_token1] = ACTIONS(8702), + [aux_sym_unlock_statement_token1] = ACTIONS(8702), + [aux_sym_seek_statement_token1] = ACTIONS(8702), + [sym_reset_statement] = ACTIONS(8702), + [aux_sym_raise_event_statement_token1] = ACTIONS(8702), + [sym_stop_statement] = ACTIONS(8702), + [sym_beep_statement] = ACTIONS(8702), + [aux_sym_unload_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token2] = ACTIONS(8702), + [aux_sym_def_type_statement_token3] = ACTIONS(8702), + [aux_sym_def_type_statement_token4] = ACTIONS(8702), + [aux_sym_def_type_statement_token5] = ACTIONS(8702), + [aux_sym_def_type_statement_token6] = ACTIONS(8702), + [aux_sym_def_type_statement_token7] = ACTIONS(8702), + [aux_sym_def_type_statement_token8] = ACTIONS(8702), + [aux_sym_def_type_statement_token9] = ACTIONS(8702), + [aux_sym_def_type_statement_token10] = ACTIONS(8702), + [aux_sym_def_type_statement_token11] = ACTIONS(8702), + [aux_sym_def_type_statement_token12] = ACTIONS(8702), + [aux_sym_def_type_statement_token13] = ACTIONS(8702), + [aux_sym_def_type_statement_token14] = ACTIONS(8702), + [aux_sym_call_statement_token1] = ACTIONS(8702), + [sym__ambiguous_call_statement] = ACTIONS(8702), + [aux_sym_addressof_expression_token1] = ACTIONS(8702), + [aux_sym_type_of_expression_token1] = ACTIONS(8702), + [aux_sym_unary_expression_token1] = ACTIONS(8702), + [sym_string_literal] = ACTIONS(8704), + [sym_number_literal] = ACTIONS(8704), + [aux_sym_boolean_literal_token1] = ACTIONS(8702), + [aux_sym_boolean_literal_token2] = ACTIONS(8702), + [sym_nothing_literal] = ACTIONS(8702), + [sym_null_literal] = ACTIONS(8702), + [sym_empty_literal] = ACTIONS(8702), + [sym_date_literal] = ACTIONS(8704), + [anon_sym_POUND] = ACTIONS(8702), + }, + [STATE(4942)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(4943)] = { + [sym_argument_list] = STATE(5620), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(10333), + [anon_sym_BANG] = ACTIONS(10335), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10337), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym_select_statement_token2] = ACTIONS(7836), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(4944)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(4949), + [sym_identifier] = ACTIONS(8066), + [sym_newline] = ACTIONS(8068), + [anon_sym_COLON] = ACTIONS(8068), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8066), + [aux_sym_frm_property_statement_token1] = ACTIONS(8066), + [anon_sym_DOT] = ACTIONS(8066), + [anon_sym_BANG] = ACTIONS(8068), + [aux_sym__attribute_identifier_token1] = ACTIONS(8066), + [aux_sym_option_statement_token3] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8066), + [aux_sym_preprocessor_const_token1] = ACTIONS(8066), + [sym_static_modifier] = ACTIONS(8066), + [sym__dim_keyword] = ACTIONS(8066), + [sym__redim_keyword] = ACTIONS(8066), + [aux_sym_get_accessor_token1] = ACTIONS(8066), + [aux_sym_set_accessor_token1] = ACTIONS(8066), + [anon_sym_COMMA] = ACTIONS(7255), + [aux_sym_const_declaration_token1] = ACTIONS(8066), + [anon_sym_LPAREN] = ACTIONS(8068), + [aux_sym_as_type_clause_token2] = ACTIONS(8066), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8066), + [aux_sym_visibility_token1] = ACTIONS(8066), + [aux_sym_visibility_token2] = ACTIONS(8066), + [aux_sym_elseif_fragment_token1] = ACTIONS(8066), + [aux_sym_else_fragment_token1] = ACTIONS(8066), + [aux_sym_select_statement_token1] = ACTIONS(8066), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8066), + [aux_sym__for_header_token1] = ACTIONS(8066), + [aux_sym_do_statement_token1] = ACTIONS(8066), + [aux_sym_do_condition_token1] = ACTIONS(8066), + [aux_sym_with_statement_token1] = ACTIONS(8066), + [aux_sym_exit_statement_token1] = ACTIONS(8066), + [sym_end_statement] = ACTIONS(8068), + [aux_sym_on_goto_statement_token1] = ACTIONS(8066), + [aux_sym_on_goto_statement_token2] = ACTIONS(8066), + [aux_sym_on_error_statement_token2] = ACTIONS(8066), + [sym__ambiguous_redim_statement] = ACTIONS(8068), + [aux_sym_erase_statement_token1] = ACTIONS(8066), + [aux_sym_open_statement_token1] = ACTIONS(8066), + [aux_sym_file_mode_token2] = ACTIONS(8066), + [aux_sym_file_access_token2] = ACTIONS(8066), + [aux_sym_file_lock_token2] = ACTIONS(8066), + [aux_sym_print_statement_token1] = ACTIONS(8066), + [anon_sym_PLUS] = ACTIONS(8068), + [anon_sym_DASH] = ACTIONS(8066), + [anon_sym_SEMI] = ACTIONS(7255), + [anon_sym_QMARK] = ACTIONS(8068), + [aux_sym_close_statement_token1] = ACTIONS(8066), + [aux_sym_put_statement_token1] = ACTIONS(8066), + [aux_sym_unlock_statement_token1] = ACTIONS(8066), + [aux_sym_seek_statement_token1] = ACTIONS(8066), + [sym_reset_statement] = ACTIONS(8066), + [aux_sym_raise_event_statement_token1] = ACTIONS(8066), + [sym_stop_statement] = ACTIONS(8066), + [sym_beep_statement] = ACTIONS(8066), + [aux_sym_unload_statement_token1] = ACTIONS(8066), + [aux_sym_def_type_statement_token1] = ACTIONS(8066), + [aux_sym_def_type_statement_token2] = ACTIONS(8066), + [aux_sym_def_type_statement_token3] = ACTIONS(8066), + [aux_sym_def_type_statement_token4] = ACTIONS(8066), + [aux_sym_def_type_statement_token5] = ACTIONS(8066), + [aux_sym_def_type_statement_token6] = ACTIONS(8066), + [aux_sym_def_type_statement_token7] = ACTIONS(8066), + [aux_sym_def_type_statement_token8] = ACTIONS(8066), + [aux_sym_def_type_statement_token9] = ACTIONS(8066), + [aux_sym_def_type_statement_token10] = ACTIONS(8066), + [aux_sym_def_type_statement_token11] = ACTIONS(8066), + [aux_sym_def_type_statement_token12] = ACTIONS(8066), + [aux_sym_def_type_statement_token13] = ACTIONS(8066), + [aux_sym_def_type_statement_token14] = ACTIONS(8066), + [aux_sym_call_statement_token1] = ACTIONS(8066), + [sym__ambiguous_call_statement] = ACTIONS(8066), + [aux_sym_addressof_expression_token1] = ACTIONS(8066), + [aux_sym_type_of_expression_token1] = ACTIONS(8066), + [aux_sym_unary_expression_token1] = ACTIONS(8066), + [sym_string_literal] = ACTIONS(8068), + [sym_number_literal] = ACTIONS(8068), + [aux_sym_boolean_literal_token1] = ACTIONS(8066), + [aux_sym_boolean_literal_token2] = ACTIONS(8066), + [sym_nothing_literal] = ACTIONS(8066), + [sym_null_literal] = ACTIONS(8066), + [sym_empty_literal] = ACTIONS(8066), + [sym_date_literal] = ACTIONS(8068), + [anon_sym_POUND] = ACTIONS(8066), + }, + [STATE(4945)] = { + [sym_identifier] = ACTIONS(8881), + [sym_newline] = ACTIONS(8884), + [anon_sym_COLON] = ACTIONS(8884), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8881), + [aux_sym_frm_property_statement_token1] = ACTIONS(8881), + [anon_sym_DOT] = ACTIONS(8881), + [anon_sym_BANG] = ACTIONS(8884), + [aux_sym__attribute_identifier_token1] = ACTIONS(8881), + [aux_sym_option_statement_token3] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8887), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8881), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8887), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8887), + [aux_sym_preprocessor_const_token1] = ACTIONS(8881), + [sym_static_modifier] = ACTIONS(8881), + [sym__dim_keyword] = ACTIONS(8881), + [sym__redim_keyword] = ACTIONS(8881), + [aux_sym_get_accessor_token1] = ACTIONS(8881), + [aux_sym_set_accessor_token1] = ACTIONS(8881), + [aux_sym_const_declaration_token1] = ACTIONS(8881), + [anon_sym_LPAREN] = ACTIONS(8884), + [aux_sym_as_type_clause_token2] = ACTIONS(8881), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8881), + [aux_sym_visibility_token1] = ACTIONS(8881), + [aux_sym_visibility_token2] = ACTIONS(8881), + [aux_sym_elseif_fragment_token1] = ACTIONS(8881), + [aux_sym_else_fragment_token1] = ACTIONS(8881), + [aux_sym_select_statement_token1] = ACTIONS(8881), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8949), + [aux_sym__for_header_token1] = ACTIONS(8881), + [aux_sym_do_statement_token1] = ACTIONS(8881), + [aux_sym_do_condition_token1] = ACTIONS(8881), + [aux_sym_with_statement_token1] = ACTIONS(8881), + [aux_sym_exit_statement_token1] = ACTIONS(8881), + [sym_end_statement] = ACTIONS(8884), + [aux_sym_on_goto_statement_token1] = ACTIONS(8881), + [aux_sym_on_goto_statement_token2] = ACTIONS(8881), + [aux_sym_on_error_statement_token2] = ACTIONS(8881), + [sym__ambiguous_redim_statement] = ACTIONS(8884), + [aux_sym_erase_statement_token1] = ACTIONS(8881), + [aux_sym_open_statement_token1] = ACTIONS(8881), + [aux_sym_file_mode_token2] = ACTIONS(8881), + [aux_sym_file_access_token2] = ACTIONS(8881), + [aux_sym_file_lock_token2] = ACTIONS(8881), + [aux_sym_print_statement_token1] = ACTIONS(8881), + [anon_sym_PLUS] = ACTIONS(8884), + [anon_sym_DASH] = ACTIONS(8881), + [anon_sym_QMARK] = ACTIONS(8884), + [aux_sym_close_statement_token1] = ACTIONS(8881), + [aux_sym_put_statement_token1] = ACTIONS(8881), + [aux_sym_unlock_statement_token1] = ACTIONS(8881), + [aux_sym_seek_statement_token1] = ACTIONS(8881), + [sym_reset_statement] = ACTIONS(8881), + [aux_sym_raise_event_statement_token1] = ACTIONS(8881), + [sym_stop_statement] = ACTIONS(8881), + [sym_beep_statement] = ACTIONS(8881), + [aux_sym_unload_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token2] = ACTIONS(8881), + [aux_sym_def_type_statement_token3] = ACTIONS(8881), + [aux_sym_def_type_statement_token4] = ACTIONS(8881), + [aux_sym_def_type_statement_token5] = ACTIONS(8881), + [aux_sym_def_type_statement_token6] = ACTIONS(8881), + [aux_sym_def_type_statement_token7] = ACTIONS(8881), + [aux_sym_def_type_statement_token8] = ACTIONS(8881), + [aux_sym_def_type_statement_token9] = ACTIONS(8881), + [aux_sym_def_type_statement_token10] = ACTIONS(8881), + [aux_sym_def_type_statement_token11] = ACTIONS(8881), + [aux_sym_def_type_statement_token12] = ACTIONS(8881), + [aux_sym_def_type_statement_token13] = ACTIONS(8881), + [aux_sym_def_type_statement_token14] = ACTIONS(8881), + [aux_sym_call_statement_token1] = ACTIONS(8881), + [sym__ambiguous_call_statement] = ACTIONS(8881), + [aux_sym_addressof_expression_token1] = ACTIONS(8881), + [aux_sym_type_of_expression_token1] = ACTIONS(8881), + [aux_sym_unary_expression_token1] = ACTIONS(8881), + [sym_string_literal] = ACTIONS(8884), + [sym_number_literal] = ACTIONS(8884), + [aux_sym_boolean_literal_token1] = ACTIONS(8881), + [aux_sym_boolean_literal_token2] = ACTIONS(8881), + [sym_nothing_literal] = ACTIONS(8881), + [sym_null_literal] = ACTIONS(8881), + [sym_empty_literal] = ACTIONS(8881), + [sym_date_literal] = ACTIONS(8884), + [anon_sym_POUND] = ACTIONS(8881), + }, + [STATE(4946)] = { + [sym_identifier] = ACTIONS(8915), + [sym_newline] = ACTIONS(8918), + [anon_sym_COLON] = ACTIONS(8918), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8915), + [aux_sym_frm_property_statement_token1] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8915), + [anon_sym_BANG] = ACTIONS(8918), + [aux_sym__attribute_identifier_token1] = ACTIONS(8915), + [aux_sym_option_statement_token3] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8921), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8915), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8921), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8921), + [aux_sym_preprocessor_const_token1] = ACTIONS(8915), + [sym_static_modifier] = ACTIONS(8915), + [sym__dim_keyword] = ACTIONS(8915), + [sym__redim_keyword] = ACTIONS(8915), + [aux_sym_get_accessor_token1] = ACTIONS(8915), + [aux_sym_set_accessor_token1] = ACTIONS(8915), + [aux_sym_const_declaration_token1] = ACTIONS(8915), + [anon_sym_LPAREN] = ACTIONS(8918), + [aux_sym_as_type_clause_token2] = ACTIONS(8915), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8915), + [aux_sym_visibility_token1] = ACTIONS(8915), + [aux_sym_visibility_token2] = ACTIONS(8915), + [aux_sym_elseif_fragment_token1] = ACTIONS(8915), + [aux_sym_else_fragment_token1] = ACTIONS(8915), + [aux_sym_select_statement_token1] = ACTIONS(8915), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8915), + [aux_sym_do_statement_token1] = ACTIONS(8915), + [aux_sym_do_condition_token1] = ACTIONS(8915), + [aux_sym_with_statement_token1] = ACTIONS(8915), + [aux_sym_exit_statement_token1] = ACTIONS(8915), + [sym_end_statement] = ACTIONS(8918), + [aux_sym_on_goto_statement_token1] = ACTIONS(8915), + [aux_sym_on_goto_statement_token2] = ACTIONS(8915), + [aux_sym_on_error_statement_token2] = ACTIONS(8915), + [sym__ambiguous_redim_statement] = ACTIONS(8918), + [aux_sym_erase_statement_token1] = ACTIONS(8915), + [aux_sym_open_statement_token1] = ACTIONS(8915), + [aux_sym_file_mode_token2] = ACTIONS(8915), + [aux_sym_file_access_token2] = ACTIONS(8915), + [aux_sym_file_lock_token2] = ACTIONS(8915), + [aux_sym_print_statement_token1] = ACTIONS(8915), + [anon_sym_PLUS] = ACTIONS(8918), + [anon_sym_DASH] = ACTIONS(8915), + [anon_sym_QMARK] = ACTIONS(8918), + [aux_sym_close_statement_token1] = ACTIONS(8915), + [aux_sym_put_statement_token1] = ACTIONS(8915), + [aux_sym_unlock_statement_token1] = ACTIONS(8915), + [aux_sym_seek_statement_token1] = ACTIONS(8915), + [sym_reset_statement] = ACTIONS(8915), + [aux_sym_raise_event_statement_token1] = ACTIONS(8915), + [sym_stop_statement] = ACTIONS(8915), + [sym_beep_statement] = ACTIONS(8915), + [aux_sym_unload_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token2] = ACTIONS(8915), + [aux_sym_def_type_statement_token3] = ACTIONS(8915), + [aux_sym_def_type_statement_token4] = ACTIONS(8915), + [aux_sym_def_type_statement_token5] = ACTIONS(8915), + [aux_sym_def_type_statement_token6] = ACTIONS(8915), + [aux_sym_def_type_statement_token7] = ACTIONS(8915), + [aux_sym_def_type_statement_token8] = ACTIONS(8915), + [aux_sym_def_type_statement_token9] = ACTIONS(8915), + [aux_sym_def_type_statement_token10] = ACTIONS(8915), + [aux_sym_def_type_statement_token11] = ACTIONS(8915), + [aux_sym_def_type_statement_token12] = ACTIONS(8915), + [aux_sym_def_type_statement_token13] = ACTIONS(8915), + [aux_sym_def_type_statement_token14] = ACTIONS(8915), + [aux_sym_call_statement_token1] = ACTIONS(8915), + [sym__ambiguous_call_statement] = ACTIONS(8915), + [aux_sym_addressof_expression_token1] = ACTIONS(8915), + [aux_sym_type_of_expression_token1] = ACTIONS(8915), + [aux_sym_unary_expression_token1] = ACTIONS(8915), + [sym_string_literal] = ACTIONS(8918), + [sym_number_literal] = ACTIONS(8918), + [aux_sym_boolean_literal_token1] = ACTIONS(8915), + [aux_sym_boolean_literal_token2] = ACTIONS(8915), + [sym_nothing_literal] = ACTIONS(8915), + [sym_null_literal] = ACTIONS(8915), + [sym_empty_literal] = ACTIONS(8915), + [sym_date_literal] = ACTIONS(8918), + [anon_sym_POUND] = ACTIONS(8915), + }, + [STATE(4947)] = { + [sym_identifier] = ACTIONS(8756), + [sym_newline] = ACTIONS(8759), + [anon_sym_COLON] = ACTIONS(8759), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8756), + [aux_sym_frm_property_statement_token1] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8756), + [anon_sym_BANG] = ACTIONS(8759), + [aux_sym__attribute_identifier_token1] = ACTIONS(8756), + [aux_sym_option_statement_token3] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8762), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8756), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8762), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8762), + [aux_sym_preprocessor_const_token1] = ACTIONS(8756), + [sym_static_modifier] = ACTIONS(8756), + [sym__dim_keyword] = ACTIONS(8756), + [sym__redim_keyword] = ACTIONS(8756), + [aux_sym_get_accessor_token1] = ACTIONS(8756), + [aux_sym_set_accessor_token1] = ACTIONS(8756), + [aux_sym_const_declaration_token1] = ACTIONS(8756), + [anon_sym_LPAREN] = ACTIONS(8759), + [aux_sym_as_type_clause_token2] = ACTIONS(8756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8756), + [aux_sym_visibility_token1] = ACTIONS(8756), + [aux_sym_visibility_token2] = ACTIONS(8756), + [aux_sym_elseif_fragment_token1] = ACTIONS(8756), + [aux_sym_else_fragment_token1] = ACTIONS(8756), + [aux_sym_select_statement_token1] = ACTIONS(8756), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8756), + [aux_sym_do_statement_token1] = ACTIONS(8756), + [aux_sym_do_condition_token1] = ACTIONS(8756), + [aux_sym_with_statement_token1] = ACTIONS(8756), + [aux_sym_exit_statement_token1] = ACTIONS(8756), + [sym_end_statement] = ACTIONS(8759), + [aux_sym_on_goto_statement_token1] = ACTIONS(8756), + [aux_sym_on_goto_statement_token2] = ACTIONS(8756), + [aux_sym_on_error_statement_token2] = ACTIONS(8756), + [sym__ambiguous_redim_statement] = ACTIONS(8759), + [aux_sym_erase_statement_token1] = ACTIONS(8756), + [aux_sym_open_statement_token1] = ACTIONS(8756), + [aux_sym_file_mode_token2] = ACTIONS(8756), + [aux_sym_file_access_token2] = ACTIONS(8756), + [aux_sym_file_lock_token2] = ACTIONS(8756), + [aux_sym_print_statement_token1] = ACTIONS(8756), + [anon_sym_PLUS] = ACTIONS(8759), + [anon_sym_DASH] = ACTIONS(8756), + [anon_sym_QMARK] = ACTIONS(8759), + [aux_sym_close_statement_token1] = ACTIONS(8756), + [aux_sym_put_statement_token1] = ACTIONS(8756), + [aux_sym_unlock_statement_token1] = ACTIONS(8756), + [aux_sym_seek_statement_token1] = ACTIONS(8756), + [sym_reset_statement] = ACTIONS(8756), + [aux_sym_raise_event_statement_token1] = ACTIONS(8756), + [sym_stop_statement] = ACTIONS(8756), + [sym_beep_statement] = ACTIONS(8756), + [aux_sym_unload_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token2] = ACTIONS(8756), + [aux_sym_def_type_statement_token3] = ACTIONS(8756), + [aux_sym_def_type_statement_token4] = ACTIONS(8756), + [aux_sym_def_type_statement_token5] = ACTIONS(8756), + [aux_sym_def_type_statement_token6] = ACTIONS(8756), + [aux_sym_def_type_statement_token7] = ACTIONS(8756), + [aux_sym_def_type_statement_token8] = ACTIONS(8756), + [aux_sym_def_type_statement_token9] = ACTIONS(8756), + [aux_sym_def_type_statement_token10] = ACTIONS(8756), + [aux_sym_def_type_statement_token11] = ACTIONS(8756), + [aux_sym_def_type_statement_token12] = ACTIONS(8756), + [aux_sym_def_type_statement_token13] = ACTIONS(8756), + [aux_sym_def_type_statement_token14] = ACTIONS(8756), + [aux_sym_call_statement_token1] = ACTIONS(8756), + [sym__ambiguous_call_statement] = ACTIONS(8756), + [aux_sym_addressof_expression_token1] = ACTIONS(8756), + [aux_sym_type_of_expression_token1] = ACTIONS(8756), + [aux_sym_unary_expression_token1] = ACTIONS(8756), + [sym_string_literal] = ACTIONS(8759), + [sym_number_literal] = ACTIONS(8759), + [aux_sym_boolean_literal_token1] = ACTIONS(8756), + [aux_sym_boolean_literal_token2] = ACTIONS(8756), + [sym_nothing_literal] = ACTIONS(8756), + [sym_null_literal] = ACTIONS(8756), + [sym_empty_literal] = ACTIONS(8756), + [sym_date_literal] = ACTIONS(8759), + [anon_sym_POUND] = ACTIONS(8756), + }, + [STATE(4948)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4948), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(10339), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(4949)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(4949), + [sym_identifier] = ACTIONS(5841), + [sym_newline] = ACTIONS(5843), + [anon_sym_COLON] = ACTIONS(5843), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5841), + [aux_sym_frm_property_statement_token1] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5843), + [aux_sym__attribute_identifier_token1] = ACTIONS(5841), + [aux_sym_option_statement_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5841), + [aux_sym_preprocessor_const_token1] = ACTIONS(5841), + [sym_static_modifier] = ACTIONS(5841), + [sym__dim_keyword] = ACTIONS(5841), + [sym__redim_keyword] = ACTIONS(5841), + [aux_sym_get_accessor_token1] = ACTIONS(5841), + [aux_sym_set_accessor_token1] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(10342), + [aux_sym_const_declaration_token1] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5843), + [aux_sym_as_type_clause_token2] = ACTIONS(5841), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5841), + [aux_sym_visibility_token1] = ACTIONS(5841), + [aux_sym_visibility_token2] = ACTIONS(5841), + [aux_sym_elseif_fragment_token1] = ACTIONS(5841), + [aux_sym_else_fragment_token1] = ACTIONS(5841), + [aux_sym_select_statement_token1] = ACTIONS(5841), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5841), + [aux_sym__for_header_token1] = ACTIONS(5841), + [aux_sym_do_statement_token1] = ACTIONS(5841), + [aux_sym_do_condition_token1] = ACTIONS(5841), + [aux_sym_with_statement_token1] = ACTIONS(5841), + [aux_sym_exit_statement_token1] = ACTIONS(5841), + [sym_end_statement] = ACTIONS(5843), + [aux_sym_on_goto_statement_token1] = ACTIONS(5841), + [aux_sym_on_goto_statement_token2] = ACTIONS(5841), + [aux_sym_on_error_statement_token2] = ACTIONS(5841), + [sym__ambiguous_redim_statement] = ACTIONS(5843), + [aux_sym_erase_statement_token1] = ACTIONS(5841), + [aux_sym_open_statement_token1] = ACTIONS(5841), + [aux_sym_file_mode_token2] = ACTIONS(5841), + [aux_sym_file_access_token2] = ACTIONS(5841), + [aux_sym_file_lock_token2] = ACTIONS(5841), + [aux_sym_print_statement_token1] = ACTIONS(5841), + [anon_sym_PLUS] = ACTIONS(5843), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_SEMI] = ACTIONS(10342), + [anon_sym_QMARK] = ACTIONS(5843), + [aux_sym_close_statement_token1] = ACTIONS(5841), + [aux_sym_put_statement_token1] = ACTIONS(5841), + [aux_sym_unlock_statement_token1] = ACTIONS(5841), + [aux_sym_seek_statement_token1] = ACTIONS(5841), + [sym_reset_statement] = ACTIONS(5841), + [aux_sym_raise_event_statement_token1] = ACTIONS(5841), + [sym_stop_statement] = ACTIONS(5841), + [sym_beep_statement] = ACTIONS(5841), + [aux_sym_unload_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token2] = ACTIONS(5841), + [aux_sym_def_type_statement_token3] = ACTIONS(5841), + [aux_sym_def_type_statement_token4] = ACTIONS(5841), + [aux_sym_def_type_statement_token5] = ACTIONS(5841), + [aux_sym_def_type_statement_token6] = ACTIONS(5841), + [aux_sym_def_type_statement_token7] = ACTIONS(5841), + [aux_sym_def_type_statement_token8] = ACTIONS(5841), + [aux_sym_def_type_statement_token9] = ACTIONS(5841), + [aux_sym_def_type_statement_token10] = ACTIONS(5841), + [aux_sym_def_type_statement_token11] = ACTIONS(5841), + [aux_sym_def_type_statement_token12] = ACTIONS(5841), + [aux_sym_def_type_statement_token13] = ACTIONS(5841), + [aux_sym_def_type_statement_token14] = ACTIONS(5841), + [aux_sym_call_statement_token1] = ACTIONS(5841), + [sym__ambiguous_call_statement] = ACTIONS(5841), + [aux_sym_addressof_expression_token1] = ACTIONS(5841), + [aux_sym_type_of_expression_token1] = ACTIONS(5841), + [aux_sym_unary_expression_token1] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5843), + [sym_number_literal] = ACTIONS(5843), + [aux_sym_boolean_literal_token1] = ACTIONS(5841), + [aux_sym_boolean_literal_token2] = ACTIONS(5841), + [sym_nothing_literal] = ACTIONS(5841), + [sym_null_literal] = ACTIONS(5841), + [sym_empty_literal] = ACTIONS(5841), + [sym_date_literal] = ACTIONS(5843), + [anon_sym_POUND] = ACTIONS(5841), + }, + [STATE(4950)] = { + [aux_sym_next_variable_list_repeat1] = STATE(4978), + [sym_identifier] = ACTIONS(7939), + [sym_newline] = ACTIONS(7941), + [anon_sym_COLON] = ACTIONS(7941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7939), + [aux_sym_frm_property_statement_token1] = ACTIONS(7939), + [anon_sym_DOT] = ACTIONS(7939), + [anon_sym_BANG] = ACTIONS(7941), + [aux_sym__attribute_identifier_token1] = ACTIONS(7939), + [aux_sym_option_statement_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7939), + [aux_sym_preprocessor_const_token1] = ACTIONS(7939), + [sym_static_modifier] = ACTIONS(7939), + [sym__dim_keyword] = ACTIONS(7939), + [sym__redim_keyword] = ACTIONS(7939), + [aux_sym_get_accessor_token1] = ACTIONS(7939), + [aux_sym_set_accessor_token1] = ACTIONS(7939), + [anon_sym_COMMA] = ACTIONS(10345), + [aux_sym_const_declaration_token1] = ACTIONS(7939), + [anon_sym_LPAREN] = ACTIONS(7941), + [aux_sym_as_type_clause_token2] = ACTIONS(7939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7939), + [aux_sym_visibility_token1] = ACTIONS(7939), + [aux_sym_visibility_token2] = ACTIONS(7939), + [aux_sym_elseif_fragment_token1] = ACTIONS(7939), + [aux_sym_else_fragment_token1] = ACTIONS(7939), + [aux_sym_select_statement_token1] = ACTIONS(7939), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7939), + [aux_sym__for_header_token1] = ACTIONS(7939), + [aux_sym_do_statement_token1] = ACTIONS(7939), + [aux_sym_do_statement_token2] = ACTIONS(7939), + [aux_sym_do_condition_token1] = ACTIONS(7939), + [aux_sym_with_statement_token1] = ACTIONS(7939), + [aux_sym_exit_statement_token1] = ACTIONS(7939), + [sym_end_statement] = ACTIONS(7941), + [aux_sym_on_goto_statement_token1] = ACTIONS(7939), + [aux_sym_on_goto_statement_token2] = ACTIONS(7939), + [aux_sym_on_error_statement_token2] = ACTIONS(7939), + [sym__ambiguous_redim_statement] = ACTIONS(7941), + [aux_sym_erase_statement_token1] = ACTIONS(7939), + [aux_sym_open_statement_token1] = ACTIONS(7939), + [aux_sym_file_mode_token2] = ACTIONS(7939), + [aux_sym_file_access_token2] = ACTIONS(7939), + [aux_sym_file_lock_token2] = ACTIONS(7939), + [aux_sym_print_statement_token1] = ACTIONS(7939), + [anon_sym_PLUS] = ACTIONS(7941), + [anon_sym_DASH] = ACTIONS(7939), + [anon_sym_QMARK] = ACTIONS(7941), + [aux_sym_close_statement_token1] = ACTIONS(7939), + [aux_sym_put_statement_token1] = ACTIONS(7939), + [aux_sym_unlock_statement_token1] = ACTIONS(7939), + [aux_sym_seek_statement_token1] = ACTIONS(7939), + [sym_reset_statement] = ACTIONS(7939), + [aux_sym_raise_event_statement_token1] = ACTIONS(7939), + [sym_stop_statement] = ACTIONS(7939), + [sym_beep_statement] = ACTIONS(7939), + [aux_sym_unload_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token2] = ACTIONS(7939), + [aux_sym_def_type_statement_token3] = ACTIONS(7939), + [aux_sym_def_type_statement_token4] = ACTIONS(7939), + [aux_sym_def_type_statement_token5] = ACTIONS(7939), + [aux_sym_def_type_statement_token6] = ACTIONS(7939), + [aux_sym_def_type_statement_token7] = ACTIONS(7939), + [aux_sym_def_type_statement_token8] = ACTIONS(7939), + [aux_sym_def_type_statement_token9] = ACTIONS(7939), + [aux_sym_def_type_statement_token10] = ACTIONS(7939), + [aux_sym_def_type_statement_token11] = ACTIONS(7939), + [aux_sym_def_type_statement_token12] = ACTIONS(7939), + [aux_sym_def_type_statement_token13] = ACTIONS(7939), + [aux_sym_def_type_statement_token14] = ACTIONS(7939), + [aux_sym_call_statement_token1] = ACTIONS(7939), + [sym__ambiguous_call_statement] = ACTIONS(7939), + [aux_sym_addressof_expression_token1] = ACTIONS(7939), + [aux_sym_type_of_expression_token1] = ACTIONS(7939), + [aux_sym_unary_expression_token1] = ACTIONS(7939), + [sym_string_literal] = ACTIONS(7941), + [sym_number_literal] = ACTIONS(7941), + [aux_sym_boolean_literal_token1] = ACTIONS(7939), + [aux_sym_boolean_literal_token2] = ACTIONS(7939), + [sym_nothing_literal] = ACTIONS(7939), + [sym_null_literal] = ACTIONS(7939), + [sym_empty_literal] = ACTIONS(7939), + [sym_date_literal] = ACTIONS(7941), + [anon_sym_POUND] = ACTIONS(7939), + }, + [STATE(4951)] = { + [sym_initializer] = STATE(6092), + [sym_identifier] = ACTIONS(8087), + [sym_newline] = ACTIONS(8089), + [anon_sym_COLON] = ACTIONS(8089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8087), + [aux_sym_frm_property_statement_token1] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(10026), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_BANG] = ACTIONS(8089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8087), + [aux_sym_option_statement_token3] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8087), + [aux_sym_preprocessor_const_token1] = ACTIONS(8087), + [sym_static_modifier] = ACTIONS(8087), + [sym__dim_keyword] = ACTIONS(8087), + [sym__redim_keyword] = ACTIONS(8087), + [aux_sym_get_accessor_token1] = ACTIONS(8087), + [aux_sym_set_accessor_token1] = ACTIONS(8087), + [anon_sym_COMMA] = ACTIONS(8089), + [aux_sym_const_declaration_token1] = ACTIONS(8087), + [anon_sym_LPAREN] = ACTIONS(8089), + [aux_sym_as_type_clause_token2] = ACTIONS(8087), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8087), + [aux_sym_visibility_token1] = ACTIONS(8087), + [aux_sym_visibility_token2] = ACTIONS(8087), + [aux_sym_elseif_fragment_token1] = ACTIONS(8087), + [aux_sym_else_fragment_token1] = ACTIONS(8087), + [aux_sym_select_statement_token1] = ACTIONS(8087), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8087), + [aux_sym__for_header_token1] = ACTIONS(8087), + [aux_sym_do_statement_token1] = ACTIONS(8087), + [aux_sym_do_condition_token1] = ACTIONS(8087), + [aux_sym_with_statement_token1] = ACTIONS(8087), + [aux_sym_exit_statement_token1] = ACTIONS(8087), + [sym_end_statement] = ACTIONS(8089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8087), + [aux_sym_on_goto_statement_token2] = ACTIONS(8087), + [aux_sym_on_error_statement_token2] = ACTIONS(8087), + [sym__ambiguous_redim_statement] = ACTIONS(8089), + [aux_sym_erase_statement_token1] = ACTIONS(8087), + [aux_sym_open_statement_token1] = ACTIONS(8087), + [aux_sym_file_mode_token2] = ACTIONS(8087), + [aux_sym_file_access_token2] = ACTIONS(8087), + [aux_sym_file_lock_token2] = ACTIONS(8087), + [aux_sym_print_statement_token1] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [aux_sym_close_statement_token1] = ACTIONS(8087), + [aux_sym_put_statement_token1] = ACTIONS(8087), + [aux_sym_unlock_statement_token1] = ACTIONS(8087), + [aux_sym_seek_statement_token1] = ACTIONS(8087), + [sym_reset_statement] = ACTIONS(8087), + [aux_sym_raise_event_statement_token1] = ACTIONS(8087), + [sym_stop_statement] = ACTIONS(8087), + [sym_beep_statement] = ACTIONS(8087), + [aux_sym_unload_statement_token1] = ACTIONS(8087), + [aux_sym_def_type_statement_token1] = ACTIONS(8087), + [aux_sym_def_type_statement_token2] = ACTIONS(8087), + [aux_sym_def_type_statement_token3] = ACTIONS(8087), + [aux_sym_def_type_statement_token4] = ACTIONS(8087), + [aux_sym_def_type_statement_token5] = ACTIONS(8087), + [aux_sym_def_type_statement_token6] = ACTIONS(8087), + [aux_sym_def_type_statement_token7] = ACTIONS(8087), + [aux_sym_def_type_statement_token8] = ACTIONS(8087), + [aux_sym_def_type_statement_token9] = ACTIONS(8087), + [aux_sym_def_type_statement_token10] = ACTIONS(8087), + [aux_sym_def_type_statement_token11] = ACTIONS(8087), + [aux_sym_def_type_statement_token12] = ACTIONS(8087), + [aux_sym_def_type_statement_token13] = ACTIONS(8087), + [aux_sym_def_type_statement_token14] = ACTIONS(8087), + [aux_sym_call_statement_token1] = ACTIONS(8087), + [sym__ambiguous_call_statement] = ACTIONS(8087), + [aux_sym_addressof_expression_token1] = ACTIONS(8087), + [aux_sym_type_of_expression_token1] = ACTIONS(8087), + [aux_sym_unary_expression_token1] = ACTIONS(8087), + [sym_string_literal] = ACTIONS(8089), + [sym_number_literal] = ACTIONS(8089), + [aux_sym_boolean_literal_token1] = ACTIONS(8087), + [aux_sym_boolean_literal_token2] = ACTIONS(8087), + [sym_nothing_literal] = ACTIONS(8087), + [sym_null_literal] = ACTIONS(8087), + [sym_empty_literal] = ACTIONS(8087), + [sym_date_literal] = ACTIONS(8089), + [anon_sym_POUND] = ACTIONS(8087), + }, + [STATE(4952)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(4953)] = { + [sym_initializer] = STATE(5830), + [sym_identifier] = ACTIONS(8091), + [sym_newline] = ACTIONS(8093), + [anon_sym_COLON] = ACTIONS(8093), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8091), + [aux_sym_frm_property_statement_token1] = ACTIONS(8091), + [anon_sym_EQ] = ACTIONS(10026), + [anon_sym_DOT] = ACTIONS(8091), + [anon_sym_BANG] = ACTIONS(8093), + [aux_sym__attribute_identifier_token1] = ACTIONS(8091), + [aux_sym_option_statement_token3] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8091), + [aux_sym_preprocessor_const_token1] = ACTIONS(8091), + [sym_static_modifier] = ACTIONS(8091), + [sym__dim_keyword] = ACTIONS(8091), + [sym__redim_keyword] = ACTIONS(8091), + [aux_sym_get_accessor_token1] = ACTIONS(8091), + [aux_sym_set_accessor_token1] = ACTIONS(8091), + [anon_sym_COMMA] = ACTIONS(8093), + [aux_sym_const_declaration_token1] = ACTIONS(8091), + [anon_sym_LPAREN] = ACTIONS(8093), + [aux_sym_as_type_clause_token2] = ACTIONS(8091), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8091), + [aux_sym_visibility_token1] = ACTIONS(8091), + [aux_sym_visibility_token2] = ACTIONS(8091), + [aux_sym_elseif_fragment_token1] = ACTIONS(8091), + [aux_sym_else_fragment_token1] = ACTIONS(8091), + [aux_sym_select_statement_token1] = ACTIONS(8091), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8091), + [aux_sym__for_header_token1] = ACTIONS(8091), + [aux_sym_do_statement_token1] = ACTIONS(8091), + [aux_sym_do_condition_token1] = ACTIONS(8091), + [aux_sym_with_statement_token1] = ACTIONS(8091), + [aux_sym_exit_statement_token1] = ACTIONS(8091), + [sym_end_statement] = ACTIONS(8093), + [aux_sym_on_goto_statement_token1] = ACTIONS(8091), + [aux_sym_on_goto_statement_token2] = ACTIONS(8091), + [aux_sym_on_error_statement_token2] = ACTIONS(8091), + [sym__ambiguous_redim_statement] = ACTIONS(8093), + [aux_sym_erase_statement_token1] = ACTIONS(8091), + [aux_sym_open_statement_token1] = ACTIONS(8091), + [aux_sym_file_mode_token2] = ACTIONS(8091), + [aux_sym_file_access_token2] = ACTIONS(8091), + [aux_sym_file_lock_token2] = ACTIONS(8091), + [aux_sym_print_statement_token1] = ACTIONS(8091), + [anon_sym_PLUS] = ACTIONS(8093), + [anon_sym_DASH] = ACTIONS(8091), + [anon_sym_QMARK] = ACTIONS(8093), + [aux_sym_close_statement_token1] = ACTIONS(8091), + [aux_sym_put_statement_token1] = ACTIONS(8091), + [aux_sym_unlock_statement_token1] = ACTIONS(8091), + [aux_sym_seek_statement_token1] = ACTIONS(8091), + [sym_reset_statement] = ACTIONS(8091), + [aux_sym_raise_event_statement_token1] = ACTIONS(8091), + [sym_stop_statement] = ACTIONS(8091), + [sym_beep_statement] = ACTIONS(8091), + [aux_sym_unload_statement_token1] = ACTIONS(8091), + [aux_sym_def_type_statement_token1] = ACTIONS(8091), + [aux_sym_def_type_statement_token2] = ACTIONS(8091), + [aux_sym_def_type_statement_token3] = ACTIONS(8091), + [aux_sym_def_type_statement_token4] = ACTIONS(8091), + [aux_sym_def_type_statement_token5] = ACTIONS(8091), + [aux_sym_def_type_statement_token6] = ACTIONS(8091), + [aux_sym_def_type_statement_token7] = ACTIONS(8091), + [aux_sym_def_type_statement_token8] = ACTIONS(8091), + [aux_sym_def_type_statement_token9] = ACTIONS(8091), + [aux_sym_def_type_statement_token10] = ACTIONS(8091), + [aux_sym_def_type_statement_token11] = ACTIONS(8091), + [aux_sym_def_type_statement_token12] = ACTIONS(8091), + [aux_sym_def_type_statement_token13] = ACTIONS(8091), + [aux_sym_def_type_statement_token14] = ACTIONS(8091), + [aux_sym_call_statement_token1] = ACTIONS(8091), + [sym__ambiguous_call_statement] = ACTIONS(8091), + [aux_sym_addressof_expression_token1] = ACTIONS(8091), + [aux_sym_type_of_expression_token1] = ACTIONS(8091), + [aux_sym_unary_expression_token1] = ACTIONS(8091), + [sym_string_literal] = ACTIONS(8093), + [sym_number_literal] = ACTIONS(8093), + [aux_sym_boolean_literal_token1] = ACTIONS(8091), + [aux_sym_boolean_literal_token2] = ACTIONS(8091), + [sym_nothing_literal] = ACTIONS(8091), + [sym_null_literal] = ACTIONS(8091), + [sym_empty_literal] = ACTIONS(8091), + [sym_date_literal] = ACTIONS(8093), + [anon_sym_POUND] = ACTIONS(8091), + }, + [STATE(4954)] = { + [sym_identifier] = ACTIONS(5699), + [sym_newline] = ACTIONS(5701), + [anon_sym_COLON] = ACTIONS(5701), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5699), + [aux_sym_frm_property_statement_token1] = ACTIONS(5699), + [anon_sym_DOT] = ACTIONS(5699), + [anon_sym_BANG] = ACTIONS(5701), + [aux_sym__attribute_identifier_token1] = ACTIONS(5699), + [aux_sym_option_statement_token3] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5699), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5699), + [aux_sym_preprocessor_const_token1] = ACTIONS(5699), + [sym_static_modifier] = ACTIONS(5699), + [sym__dim_keyword] = ACTIONS(5699), + [sym__redim_keyword] = ACTIONS(5699), + [aux_sym_get_accessor_token1] = ACTIONS(5699), + [aux_sym_set_accessor_token1] = ACTIONS(5699), + [anon_sym_COMMA] = ACTIONS(5701), + [aux_sym_const_declaration_token1] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(5701), + [aux_sym_as_type_clause_token2] = ACTIONS(5699), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5699), + [aux_sym_visibility_token1] = ACTIONS(5699), + [aux_sym_visibility_token2] = ACTIONS(5699), + [aux_sym_elseif_fragment_token1] = ACTIONS(5699), + [aux_sym_else_fragment_token1] = ACTIONS(5699), + [aux_sym_select_statement_token1] = ACTIONS(5699), + [aux_sym__for_header_token1] = ACTIONS(5699), + [aux_sym_do_statement_token1] = ACTIONS(5699), + [aux_sym_do_condition_token1] = ACTIONS(5699), + [aux_sym_with_statement_token1] = ACTIONS(5699), + [aux_sym_exit_statement_token1] = ACTIONS(5699), + [sym_end_statement] = ACTIONS(5701), + [aux_sym_on_goto_statement_token1] = ACTIONS(5699), + [aux_sym_on_goto_statement_token2] = ACTIONS(5699), + [aux_sym_on_error_statement_token2] = ACTIONS(5699), + [sym__ambiguous_redim_statement] = ACTIONS(5701), + [aux_sym_erase_statement_token1] = ACTIONS(5699), + [aux_sym_open_statement_token1] = ACTIONS(5699), + [aux_sym_file_mode_token2] = ACTIONS(5699), + [aux_sym_file_access_token2] = ACTIONS(5699), + [aux_sym_file_lock_token2] = ACTIONS(5699), + [aux_sym_print_statement_token1] = ACTIONS(5699), + [anon_sym_PLUS] = ACTIONS(5701), + [anon_sym_DASH] = ACTIONS(5699), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10289), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10291), + [anon_sym_SEMI] = ACTIONS(5701), + [anon_sym_QMARK] = ACTIONS(5701), + [aux_sym_close_statement_token1] = ACTIONS(5699), + [aux_sym_put_statement_token1] = ACTIONS(5699), + [aux_sym_unlock_statement_token1] = ACTIONS(5699), + [aux_sym_seek_statement_token1] = ACTIONS(5699), + [sym_reset_statement] = ACTIONS(5699), + [aux_sym_raise_event_statement_token1] = ACTIONS(5699), + [sym_stop_statement] = ACTIONS(5699), + [sym_beep_statement] = ACTIONS(5699), + [aux_sym_unload_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token1] = ACTIONS(5699), + [aux_sym_def_type_statement_token2] = ACTIONS(5699), + [aux_sym_def_type_statement_token3] = ACTIONS(5699), + [aux_sym_def_type_statement_token4] = ACTIONS(5699), + [aux_sym_def_type_statement_token5] = ACTIONS(5699), + [aux_sym_def_type_statement_token6] = ACTIONS(5699), + [aux_sym_def_type_statement_token7] = ACTIONS(5699), + [aux_sym_def_type_statement_token8] = ACTIONS(5699), + [aux_sym_def_type_statement_token9] = ACTIONS(5699), + [aux_sym_def_type_statement_token10] = ACTIONS(5699), + [aux_sym_def_type_statement_token11] = ACTIONS(5699), + [aux_sym_def_type_statement_token12] = ACTIONS(5699), + [aux_sym_def_type_statement_token13] = ACTIONS(5699), + [aux_sym_def_type_statement_token14] = ACTIONS(5699), + [aux_sym_call_statement_token1] = ACTIONS(5699), + [sym__ambiguous_call_statement] = ACTIONS(5699), + [aux_sym_addressof_expression_token1] = ACTIONS(5699), + [aux_sym_type_of_expression_token1] = ACTIONS(5699), + [aux_sym_unary_expression_token1] = ACTIONS(5699), + [sym_string_literal] = ACTIONS(5701), + [sym_number_literal] = ACTIONS(5701), + [aux_sym_boolean_literal_token1] = ACTIONS(5699), + [aux_sym_boolean_literal_token2] = ACTIONS(5699), + [sym_nothing_literal] = ACTIONS(5699), + [sym_null_literal] = ACTIONS(5699), + [sym_empty_literal] = ACTIONS(5699), + [sym_date_literal] = ACTIONS(5701), + [anon_sym_POUND] = ACTIONS(5699), + }, + [STATE(4955)] = { + [sym_identifier] = ACTIONS(8022), + [sym_newline] = ACTIONS(8024), + [anon_sym_COLON] = ACTIONS(8024), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8022), + [aux_sym_frm_property_statement_token1] = ACTIONS(8022), + [anon_sym_EQ] = ACTIONS(8024), + [anon_sym_DOT] = ACTIONS(8022), + [anon_sym_BANG] = ACTIONS(8024), + [aux_sym__attribute_identifier_token1] = ACTIONS(8022), + [aux_sym_option_statement_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8022), + [aux_sym_preprocessor_const_token1] = ACTIONS(8022), + [sym_static_modifier] = ACTIONS(8022), + [sym__dim_keyword] = ACTIONS(8022), + [sym__redim_keyword] = ACTIONS(8022), + [aux_sym_get_accessor_token1] = ACTIONS(8022), + [aux_sym_set_accessor_token1] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8024), + [aux_sym_const_declaration_token1] = ACTIONS(8022), + [anon_sym_LPAREN] = ACTIONS(8024), + [aux_sym_as_type_clause_token1] = ACTIONS(8022), + [aux_sym_as_type_clause_token2] = ACTIONS(8022), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8022), + [aux_sym_visibility_token1] = ACTIONS(8022), + [aux_sym_visibility_token2] = ACTIONS(8022), + [aux_sym_elseif_fragment_token1] = ACTIONS(8022), + [aux_sym_else_fragment_token1] = ACTIONS(8022), + [aux_sym_select_statement_token1] = ACTIONS(8022), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8022), + [aux_sym__for_header_token1] = ACTIONS(8022), + [aux_sym_do_statement_token1] = ACTIONS(8022), + [aux_sym_do_condition_token1] = ACTIONS(8022), + [aux_sym_with_statement_token1] = ACTIONS(8022), + [aux_sym_exit_statement_token1] = ACTIONS(8022), + [sym_end_statement] = ACTIONS(8024), + [aux_sym_on_goto_statement_token1] = ACTIONS(8022), + [aux_sym_on_goto_statement_token2] = ACTIONS(8022), + [aux_sym_on_error_statement_token2] = ACTIONS(8022), + [sym__ambiguous_redim_statement] = ACTIONS(8024), + [aux_sym_erase_statement_token1] = ACTIONS(8022), + [aux_sym_open_statement_token1] = ACTIONS(8022), + [aux_sym_file_mode_token2] = ACTIONS(8022), + [aux_sym_file_access_token2] = ACTIONS(8022), + [aux_sym_file_lock_token2] = ACTIONS(8022), + [aux_sym_print_statement_token1] = ACTIONS(8022), + [anon_sym_PLUS] = ACTIONS(8024), + [anon_sym_DASH] = ACTIONS(8022), + [anon_sym_QMARK] = ACTIONS(8024), + [aux_sym_close_statement_token1] = ACTIONS(8022), + [aux_sym_put_statement_token1] = ACTIONS(8022), + [aux_sym_unlock_statement_token1] = ACTIONS(8022), + [aux_sym_seek_statement_token1] = ACTIONS(8022), + [sym_reset_statement] = ACTIONS(8022), + [aux_sym_raise_event_statement_token1] = ACTIONS(8022), + [sym_stop_statement] = ACTIONS(8022), + [sym_beep_statement] = ACTIONS(8022), + [aux_sym_unload_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token2] = ACTIONS(8022), + [aux_sym_def_type_statement_token3] = ACTIONS(8022), + [aux_sym_def_type_statement_token4] = ACTIONS(8022), + [aux_sym_def_type_statement_token5] = ACTIONS(8022), + [aux_sym_def_type_statement_token6] = ACTIONS(8022), + [aux_sym_def_type_statement_token7] = ACTIONS(8022), + [aux_sym_def_type_statement_token8] = ACTIONS(8022), + [aux_sym_def_type_statement_token9] = ACTIONS(8022), + [aux_sym_def_type_statement_token10] = ACTIONS(8022), + [aux_sym_def_type_statement_token11] = ACTIONS(8022), + [aux_sym_def_type_statement_token12] = ACTIONS(8022), + [aux_sym_def_type_statement_token13] = ACTIONS(8022), + [aux_sym_def_type_statement_token14] = ACTIONS(8022), + [aux_sym_call_statement_token1] = ACTIONS(8022), + [sym__ambiguous_call_statement] = ACTIONS(8022), + [aux_sym_addressof_expression_token1] = ACTIONS(8022), + [aux_sym_type_of_expression_token1] = ACTIONS(8022), + [aux_sym_unary_expression_token1] = ACTIONS(8022), + [sym_string_literal] = ACTIONS(8024), + [sym_number_literal] = ACTIONS(8024), + [aux_sym_boolean_literal_token1] = ACTIONS(8022), + [aux_sym_boolean_literal_token2] = ACTIONS(8022), + [sym_nothing_literal] = ACTIONS(8022), + [sym_null_literal] = ACTIONS(8022), + [sym_empty_literal] = ACTIONS(8022), + [sym_date_literal] = ACTIONS(8024), + [anon_sym_POUND] = ACTIONS(8022), + }, + [STATE(4956)] = { + [aux_sym_next_variable_list_repeat1] = STATE(4963), + [sym_identifier] = ACTIONS(7939), + [sym_newline] = ACTIONS(7941), + [anon_sym_COLON] = ACTIONS(7941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7939), + [aux_sym_frm_property_statement_token1] = ACTIONS(7939), + [anon_sym_DOT] = ACTIONS(7939), + [anon_sym_BANG] = ACTIONS(7941), + [aux_sym__attribute_identifier_token1] = ACTIONS(7939), + [aux_sym_option_statement_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7939), + [aux_sym_preprocessor_const_token1] = ACTIONS(7939), + [sym_static_modifier] = ACTIONS(7939), + [sym__dim_keyword] = ACTIONS(7939), + [sym__redim_keyword] = ACTIONS(7939), + [aux_sym_get_accessor_token1] = ACTIONS(7939), + [aux_sym_set_accessor_token1] = ACTIONS(7939), + [anon_sym_COMMA] = ACTIONS(10347), + [aux_sym_const_declaration_token1] = ACTIONS(7939), + [anon_sym_LPAREN] = ACTIONS(7941), + [aux_sym_as_type_clause_token2] = ACTIONS(7939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7939), + [aux_sym_visibility_token1] = ACTIONS(7939), + [aux_sym_visibility_token2] = ACTIONS(7939), + [aux_sym_elseif_fragment_token1] = ACTIONS(7939), + [aux_sym_else_fragment_token1] = ACTIONS(7939), + [aux_sym_select_statement_token1] = ACTIONS(7939), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7939), + [aux_sym__for_header_token1] = ACTIONS(7939), + [aux_sym_do_statement_token1] = ACTIONS(7939), + [aux_sym_do_condition_token1] = ACTIONS(7939), + [aux_sym_while_statement_token1] = ACTIONS(7939), + [aux_sym_with_statement_token1] = ACTIONS(7939), + [aux_sym_exit_statement_token1] = ACTIONS(7939), + [sym_end_statement] = ACTIONS(7941), + [aux_sym_on_goto_statement_token1] = ACTIONS(7939), + [aux_sym_on_goto_statement_token2] = ACTIONS(7939), + [aux_sym_on_error_statement_token2] = ACTIONS(7939), + [sym__ambiguous_redim_statement] = ACTIONS(7941), + [aux_sym_erase_statement_token1] = ACTIONS(7939), + [aux_sym_open_statement_token1] = ACTIONS(7939), + [aux_sym_file_mode_token2] = ACTIONS(7939), + [aux_sym_file_access_token2] = ACTIONS(7939), + [aux_sym_file_lock_token2] = ACTIONS(7939), + [aux_sym_print_statement_token1] = ACTIONS(7939), + [anon_sym_PLUS] = ACTIONS(7941), + [anon_sym_DASH] = ACTIONS(7939), + [anon_sym_QMARK] = ACTIONS(7941), + [aux_sym_close_statement_token1] = ACTIONS(7939), + [aux_sym_put_statement_token1] = ACTIONS(7939), + [aux_sym_unlock_statement_token1] = ACTIONS(7939), + [aux_sym_seek_statement_token1] = ACTIONS(7939), + [sym_reset_statement] = ACTIONS(7939), + [aux_sym_raise_event_statement_token1] = ACTIONS(7939), + [sym_stop_statement] = ACTIONS(7939), + [sym_beep_statement] = ACTIONS(7939), + [aux_sym_unload_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token2] = ACTIONS(7939), + [aux_sym_def_type_statement_token3] = ACTIONS(7939), + [aux_sym_def_type_statement_token4] = ACTIONS(7939), + [aux_sym_def_type_statement_token5] = ACTIONS(7939), + [aux_sym_def_type_statement_token6] = ACTIONS(7939), + [aux_sym_def_type_statement_token7] = ACTIONS(7939), + [aux_sym_def_type_statement_token8] = ACTIONS(7939), + [aux_sym_def_type_statement_token9] = ACTIONS(7939), + [aux_sym_def_type_statement_token10] = ACTIONS(7939), + [aux_sym_def_type_statement_token11] = ACTIONS(7939), + [aux_sym_def_type_statement_token12] = ACTIONS(7939), + [aux_sym_def_type_statement_token13] = ACTIONS(7939), + [aux_sym_def_type_statement_token14] = ACTIONS(7939), + [aux_sym_call_statement_token1] = ACTIONS(7939), + [sym__ambiguous_call_statement] = ACTIONS(7939), + [aux_sym_addressof_expression_token1] = ACTIONS(7939), + [aux_sym_type_of_expression_token1] = ACTIONS(7939), + [aux_sym_unary_expression_token1] = ACTIONS(7939), + [sym_string_literal] = ACTIONS(7941), + [sym_number_literal] = ACTIONS(7941), + [aux_sym_boolean_literal_token1] = ACTIONS(7939), + [aux_sym_boolean_literal_token2] = ACTIONS(7939), + [sym_nothing_literal] = ACTIONS(7939), + [sym_null_literal] = ACTIONS(7939), + [sym_empty_literal] = ACTIONS(7939), + [sym_date_literal] = ACTIONS(7941), + [anon_sym_POUND] = ACTIONS(7939), + }, + [STATE(4957)] = { + [sym_char_position] = STATE(744), + [aux_sym_output_list_repeat1] = STATE(4930), + [sym_identifier] = ACTIONS(7631), + [sym_newline] = ACTIONS(7633), + [anon_sym_COLON] = ACTIONS(7633), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7631), + [aux_sym_frm_property_statement_token1] = ACTIONS(7631), + [anon_sym_DOT] = ACTIONS(7631), + [anon_sym_BANG] = ACTIONS(7633), + [aux_sym__attribute_identifier_token1] = ACTIONS(7631), + [aux_sym_option_statement_token3] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7631), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7631), + [aux_sym_preprocessor_const_token1] = ACTIONS(7631), + [sym_static_modifier] = ACTIONS(7631), + [sym__dim_keyword] = ACTIONS(7631), + [sym__redim_keyword] = ACTIONS(7631), + [aux_sym_get_accessor_token1] = ACTIONS(7631), + [aux_sym_set_accessor_token1] = ACTIONS(7631), + [anon_sym_COMMA] = ACTIONS(10320), + [aux_sym_const_declaration_token1] = ACTIONS(7631), + [anon_sym_LPAREN] = ACTIONS(7633), + [aux_sym_as_type_clause_token2] = ACTIONS(7631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7631), + [aux_sym_visibility_token1] = ACTIONS(7631), + [aux_sym_visibility_token2] = ACTIONS(7631), + [aux_sym_elseif_fragment_token1] = ACTIONS(7631), + [aux_sym_else_fragment_token1] = ACTIONS(7631), + [aux_sym_select_statement_token1] = ACTIONS(7631), + [aux_sym__for_header_token1] = ACTIONS(7631), + [aux_sym_do_statement_token1] = ACTIONS(7631), + [aux_sym_do_condition_token1] = ACTIONS(7631), + [aux_sym_with_statement_token1] = ACTIONS(7631), + [aux_sym_exit_statement_token1] = ACTIONS(7631), + [sym_end_statement] = ACTIONS(7633), + [aux_sym_on_goto_statement_token1] = ACTIONS(7631), + [aux_sym_on_goto_statement_token2] = ACTIONS(7631), + [aux_sym_on_error_statement_token2] = ACTIONS(7631), + [sym__ambiguous_redim_statement] = ACTIONS(7633), + [aux_sym_erase_statement_token1] = ACTIONS(7631), + [aux_sym_open_statement_token1] = ACTIONS(7631), + [aux_sym_file_mode_token2] = ACTIONS(7631), + [aux_sym_file_access_token2] = ACTIONS(7631), + [aux_sym_file_lock_token2] = ACTIONS(7631), + [aux_sym_print_statement_token1] = ACTIONS(7631), + [anon_sym_PLUS] = ACTIONS(7633), + [anon_sym_DASH] = ACTIONS(7631), + [anon_sym_SEMI] = ACTIONS(10320), + [anon_sym_QMARK] = ACTIONS(7633), + [aux_sym_close_statement_token1] = ACTIONS(7631), + [aux_sym_put_statement_token1] = ACTIONS(7631), + [aux_sym_unlock_statement_token1] = ACTIONS(7631), + [aux_sym_seek_statement_token1] = ACTIONS(7631), + [sym_reset_statement] = ACTIONS(7631), + [aux_sym_raise_event_statement_token1] = ACTIONS(7631), + [sym_stop_statement] = ACTIONS(7631), + [sym_beep_statement] = ACTIONS(7631), + [aux_sym_unload_statement_token1] = ACTIONS(7631), + [aux_sym_def_type_statement_token1] = ACTIONS(7631), + [aux_sym_def_type_statement_token2] = ACTIONS(7631), + [aux_sym_def_type_statement_token3] = ACTIONS(7631), + [aux_sym_def_type_statement_token4] = ACTIONS(7631), + [aux_sym_def_type_statement_token5] = ACTIONS(7631), + [aux_sym_def_type_statement_token6] = ACTIONS(7631), + [aux_sym_def_type_statement_token7] = ACTIONS(7631), + [aux_sym_def_type_statement_token8] = ACTIONS(7631), + [aux_sym_def_type_statement_token9] = ACTIONS(7631), + [aux_sym_def_type_statement_token10] = ACTIONS(7631), + [aux_sym_def_type_statement_token11] = ACTIONS(7631), + [aux_sym_def_type_statement_token12] = ACTIONS(7631), + [aux_sym_def_type_statement_token13] = ACTIONS(7631), + [aux_sym_def_type_statement_token14] = ACTIONS(7631), + [aux_sym_call_statement_token1] = ACTIONS(7631), + [sym__ambiguous_call_statement] = ACTIONS(7631), + [aux_sym_addressof_expression_token1] = ACTIONS(7631), + [aux_sym_type_of_expression_token1] = ACTIONS(7631), + [aux_sym_unary_expression_token1] = ACTIONS(7631), + [sym_string_literal] = ACTIONS(7633), + [sym_number_literal] = ACTIONS(7633), + [aux_sym_boolean_literal_token1] = ACTIONS(7631), + [aux_sym_boolean_literal_token2] = ACTIONS(7631), + [sym_nothing_literal] = ACTIONS(7631), + [sym_null_literal] = ACTIONS(7631), + [sym_empty_literal] = ACTIONS(7631), + [sym_date_literal] = ACTIONS(7633), + [anon_sym_POUND] = ACTIONS(7631), + }, + [STATE(4958)] = { + [sym_array_bounds] = STATE(5633), + [sym_identifier] = ACTIONS(8081), + [sym_newline] = ACTIONS(8083), + [anon_sym_COLON] = ACTIONS(8083), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8081), + [aux_sym_frm_property_statement_token1] = ACTIONS(8081), + [anon_sym_EQ] = ACTIONS(8083), + [anon_sym_DOT] = ACTIONS(8081), + [anon_sym_BANG] = ACTIONS(8083), + [aux_sym__attribute_identifier_token1] = ACTIONS(8081), + [aux_sym_option_statement_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8081), + [aux_sym_preprocessor_const_token1] = ACTIONS(8081), + [sym_static_modifier] = ACTIONS(8081), + [sym__dim_keyword] = ACTIONS(8081), + [sym__redim_keyword] = ACTIONS(8081), + [aux_sym_get_accessor_token1] = ACTIONS(8081), + [aux_sym_set_accessor_token1] = ACTIONS(8081), + [anon_sym_COMMA] = ACTIONS(8083), + [aux_sym_const_declaration_token1] = ACTIONS(8081), + [anon_sym_LPAREN] = ACTIONS(10068), + [aux_sym_as_type_clause_token2] = ACTIONS(8081), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8081), + [aux_sym_visibility_token1] = ACTIONS(8081), + [aux_sym_visibility_token2] = ACTIONS(8081), + [aux_sym_elseif_fragment_token1] = ACTIONS(8081), + [aux_sym_else_fragment_token1] = ACTIONS(8081), + [aux_sym_select_statement_token1] = ACTIONS(8081), + [aux_sym__for_header_token1] = ACTIONS(8081), + [aux_sym_do_statement_token1] = ACTIONS(8081), + [aux_sym_do_condition_token1] = ACTIONS(8081), + [aux_sym_while_statement_token1] = ACTIONS(8081), + [aux_sym_with_statement_token1] = ACTIONS(8081), + [aux_sym_exit_statement_token1] = ACTIONS(8081), + [sym_end_statement] = ACTIONS(8083), + [aux_sym_on_goto_statement_token1] = ACTIONS(8081), + [aux_sym_on_goto_statement_token2] = ACTIONS(8081), + [aux_sym_on_error_statement_token2] = ACTIONS(8081), + [sym__ambiguous_redim_statement] = ACTIONS(8083), + [aux_sym_erase_statement_token1] = ACTIONS(8081), + [aux_sym_open_statement_token1] = ACTIONS(8081), + [aux_sym_file_mode_token2] = ACTIONS(8081), + [aux_sym_file_access_token2] = ACTIONS(8081), + [aux_sym_file_lock_token2] = ACTIONS(8081), + [aux_sym_print_statement_token1] = ACTIONS(8081), + [anon_sym_PLUS] = ACTIONS(8083), + [anon_sym_DASH] = ACTIONS(8081), + [anon_sym_QMARK] = ACTIONS(8083), + [aux_sym_close_statement_token1] = ACTIONS(8081), + [aux_sym_put_statement_token1] = ACTIONS(8081), + [aux_sym_unlock_statement_token1] = ACTIONS(8081), + [aux_sym_seek_statement_token1] = ACTIONS(8081), + [sym_reset_statement] = ACTIONS(8081), + [aux_sym_raise_event_statement_token1] = ACTIONS(8081), + [sym_stop_statement] = ACTIONS(8081), + [sym_beep_statement] = ACTIONS(8081), + [aux_sym_unload_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token2] = ACTIONS(8081), + [aux_sym_def_type_statement_token3] = ACTIONS(8081), + [aux_sym_def_type_statement_token4] = ACTIONS(8081), + [aux_sym_def_type_statement_token5] = ACTIONS(8081), + [aux_sym_def_type_statement_token6] = ACTIONS(8081), + [aux_sym_def_type_statement_token7] = ACTIONS(8081), + [aux_sym_def_type_statement_token8] = ACTIONS(8081), + [aux_sym_def_type_statement_token9] = ACTIONS(8081), + [aux_sym_def_type_statement_token10] = ACTIONS(8081), + [aux_sym_def_type_statement_token11] = ACTIONS(8081), + [aux_sym_def_type_statement_token12] = ACTIONS(8081), + [aux_sym_def_type_statement_token13] = ACTIONS(8081), + [aux_sym_def_type_statement_token14] = ACTIONS(8081), + [aux_sym_call_statement_token1] = ACTIONS(8081), + [sym__ambiguous_call_statement] = ACTIONS(8081), + [aux_sym_addressof_expression_token1] = ACTIONS(8081), + [aux_sym_type_of_expression_token1] = ACTIONS(8081), + [aux_sym_unary_expression_token1] = ACTIONS(8081), + [sym_string_literal] = ACTIONS(8083), + [sym_number_literal] = ACTIONS(8083), + [aux_sym_boolean_literal_token1] = ACTIONS(8081), + [aux_sym_boolean_literal_token2] = ACTIONS(8081), + [sym_nothing_literal] = ACTIONS(8081), + [sym_null_literal] = ACTIONS(8081), + [sym_empty_literal] = ACTIONS(8081), + [sym_date_literal] = ACTIONS(8083), + [anon_sym_POUND] = ACTIONS(8081), + }, + [STATE(4959)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(4987), + [sym_identifier] = ACTIONS(8733), + [sym_newline] = ACTIONS(8735), + [anon_sym_COLON] = ACTIONS(10349), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8733), + [aux_sym_frm_property_statement_token1] = ACTIONS(8733), + [anon_sym_DOT] = ACTIONS(8733), + [anon_sym_BANG] = ACTIONS(8735), + [aux_sym__attribute_identifier_token1] = ACTIONS(8733), + [aux_sym_option_statement_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8733), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8733), + [aux_sym_preprocessor_const_token1] = ACTIONS(8733), + [sym_static_modifier] = ACTIONS(8733), + [sym__dim_keyword] = ACTIONS(8733), + [sym__redim_keyword] = ACTIONS(8733), + [aux_sym_get_accessor_token1] = ACTIONS(8733), + [aux_sym_set_accessor_token1] = ACTIONS(8733), + [aux_sym_const_declaration_token1] = ACTIONS(8733), + [anon_sym_LPAREN] = ACTIONS(8735), + [aux_sym_as_type_clause_token2] = ACTIONS(8733), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8733), + [aux_sym_visibility_token1] = ACTIONS(8733), + [aux_sym_visibility_token2] = ACTIONS(8733), + [aux_sym_elseif_fragment_token1] = ACTIONS(8733), + [aux_sym_else_fragment_token1] = ACTIONS(10351), + [aux_sym_select_statement_token1] = ACTIONS(8733), + [aux_sym__for_header_token1] = ACTIONS(8733), + [aux_sym_do_statement_token1] = ACTIONS(8733), + [aux_sym_do_condition_token1] = ACTIONS(8733), + [aux_sym_with_statement_token1] = ACTIONS(8733), + [aux_sym_exit_statement_token1] = ACTIONS(8733), + [sym_end_statement] = ACTIONS(8735), + [aux_sym_on_goto_statement_token1] = ACTIONS(8733), + [aux_sym_on_goto_statement_token2] = ACTIONS(8733), + [aux_sym_on_error_statement_token2] = ACTIONS(8733), + [sym__ambiguous_redim_statement] = ACTIONS(8735), + [aux_sym_erase_statement_token1] = ACTIONS(8733), + [aux_sym_open_statement_token1] = ACTIONS(8733), + [aux_sym_file_mode_token2] = ACTIONS(8733), + [aux_sym_file_access_token2] = ACTIONS(8733), + [aux_sym_file_lock_token2] = ACTIONS(8733), + [aux_sym_print_statement_token1] = ACTIONS(8733), + [anon_sym_PLUS] = ACTIONS(8735), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_QMARK] = ACTIONS(8735), + [aux_sym_close_statement_token1] = ACTIONS(8733), + [aux_sym_put_statement_token1] = ACTIONS(8733), + [aux_sym_unlock_statement_token1] = ACTIONS(8733), + [aux_sym_seek_statement_token1] = ACTIONS(8733), + [sym_reset_statement] = ACTIONS(8733), + [aux_sym_raise_event_statement_token1] = ACTIONS(8733), + [sym_stop_statement] = ACTIONS(8733), + [sym_beep_statement] = ACTIONS(8733), + [aux_sym_unload_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token2] = ACTIONS(8733), + [aux_sym_def_type_statement_token3] = ACTIONS(8733), + [aux_sym_def_type_statement_token4] = ACTIONS(8733), + [aux_sym_def_type_statement_token5] = ACTIONS(8733), + [aux_sym_def_type_statement_token6] = ACTIONS(8733), + [aux_sym_def_type_statement_token7] = ACTIONS(8733), + [aux_sym_def_type_statement_token8] = ACTIONS(8733), + [aux_sym_def_type_statement_token9] = ACTIONS(8733), + [aux_sym_def_type_statement_token10] = ACTIONS(8733), + [aux_sym_def_type_statement_token11] = ACTIONS(8733), + [aux_sym_def_type_statement_token12] = ACTIONS(8733), + [aux_sym_def_type_statement_token13] = ACTIONS(8733), + [aux_sym_def_type_statement_token14] = ACTIONS(8733), + [aux_sym_call_statement_token1] = ACTIONS(8733), + [sym__ambiguous_call_statement] = ACTIONS(8733), + [aux_sym_addressof_expression_token1] = ACTIONS(8733), + [aux_sym_type_of_expression_token1] = ACTIONS(8733), + [aux_sym_unary_expression_token1] = ACTIONS(8733), + [sym_string_literal] = ACTIONS(8735), + [sym_number_literal] = ACTIONS(8735), + [aux_sym_boolean_literal_token1] = ACTIONS(8733), + [aux_sym_boolean_literal_token2] = ACTIONS(8733), + [sym_nothing_literal] = ACTIONS(8733), + [sym_null_literal] = ACTIONS(8733), + [sym_empty_literal] = ACTIONS(8733), + [sym_date_literal] = ACTIONS(8735), + [anon_sym_POUND] = ACTIONS(8733), + }, + [STATE(4960)] = { + [sym_identifier] = ACTIONS(5752), + [sym_newline] = ACTIONS(5754), + [anon_sym_COLON] = ACTIONS(5754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5752), + [aux_sym_frm_property_statement_token1] = ACTIONS(5752), + [anon_sym_DOT] = ACTIONS(5752), + [anon_sym_BANG] = ACTIONS(5754), + [aux_sym__attribute_identifier_token1] = ACTIONS(5752), + [aux_sym_option_statement_token3] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5752), + [aux_sym_preprocessor_const_token1] = ACTIONS(5752), + [sym_static_modifier] = ACTIONS(5752), + [sym__dim_keyword] = ACTIONS(5752), + [sym__redim_keyword] = ACTIONS(5752), + [aux_sym_get_accessor_token1] = ACTIONS(5752), + [aux_sym_set_accessor_token1] = ACTIONS(5752), + [anon_sym_COMMA] = ACTIONS(5754), + [aux_sym_const_declaration_token1] = ACTIONS(5752), + [anon_sym_LPAREN] = ACTIONS(5754), + [aux_sym_as_type_clause_token2] = ACTIONS(5752), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5752), + [aux_sym_visibility_token1] = ACTIONS(5752), + [aux_sym_visibility_token2] = ACTIONS(5752), + [aux_sym_elseif_fragment_token1] = ACTIONS(5752), + [aux_sym_else_fragment_token1] = ACTIONS(5752), + [aux_sym_select_statement_token1] = ACTIONS(5752), + [aux_sym__for_header_token1] = ACTIONS(5752), + [aux_sym_do_statement_token1] = ACTIONS(5752), + [aux_sym_do_condition_token1] = ACTIONS(5752), + [aux_sym_with_statement_token1] = ACTIONS(5752), + [aux_sym_exit_statement_token1] = ACTIONS(5752), + [sym_end_statement] = ACTIONS(5754), + [aux_sym_on_goto_statement_token1] = ACTIONS(5752), + [aux_sym_on_goto_statement_token2] = ACTIONS(5752), + [aux_sym_on_error_statement_token2] = ACTIONS(5752), + [sym__ambiguous_redim_statement] = ACTIONS(5754), + [aux_sym_erase_statement_token1] = ACTIONS(5752), + [aux_sym_open_statement_token1] = ACTIONS(5752), + [aux_sym_file_mode_token2] = ACTIONS(5752), + [aux_sym_file_access_token2] = ACTIONS(5752), + [aux_sym_file_lock_token2] = ACTIONS(5752), + [aux_sym_print_statement_token1] = ACTIONS(5752), + [anon_sym_PLUS] = ACTIONS(5754), + [anon_sym_DASH] = ACTIONS(5752), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10289), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10291), + [anon_sym_SEMI] = ACTIONS(5754), + [anon_sym_QMARK] = ACTIONS(5754), + [aux_sym_close_statement_token1] = ACTIONS(5752), + [aux_sym_put_statement_token1] = ACTIONS(5752), + [aux_sym_unlock_statement_token1] = ACTIONS(5752), + [aux_sym_seek_statement_token1] = ACTIONS(5752), + [sym_reset_statement] = ACTIONS(5752), + [aux_sym_raise_event_statement_token1] = ACTIONS(5752), + [sym_stop_statement] = ACTIONS(5752), + [sym_beep_statement] = ACTIONS(5752), + [aux_sym_unload_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token1] = ACTIONS(5752), + [aux_sym_def_type_statement_token2] = ACTIONS(5752), + [aux_sym_def_type_statement_token3] = ACTIONS(5752), + [aux_sym_def_type_statement_token4] = ACTIONS(5752), + [aux_sym_def_type_statement_token5] = ACTIONS(5752), + [aux_sym_def_type_statement_token6] = ACTIONS(5752), + [aux_sym_def_type_statement_token7] = ACTIONS(5752), + [aux_sym_def_type_statement_token8] = ACTIONS(5752), + [aux_sym_def_type_statement_token9] = ACTIONS(5752), + [aux_sym_def_type_statement_token10] = ACTIONS(5752), + [aux_sym_def_type_statement_token11] = ACTIONS(5752), + [aux_sym_def_type_statement_token12] = ACTIONS(5752), + [aux_sym_def_type_statement_token13] = ACTIONS(5752), + [aux_sym_def_type_statement_token14] = ACTIONS(5752), + [aux_sym_call_statement_token1] = ACTIONS(5752), + [sym__ambiguous_call_statement] = ACTIONS(5752), + [aux_sym_addressof_expression_token1] = ACTIONS(5752), + [aux_sym_type_of_expression_token1] = ACTIONS(5752), + [aux_sym_unary_expression_token1] = ACTIONS(5752), + [sym_string_literal] = ACTIONS(5754), + [sym_number_literal] = ACTIONS(5754), + [aux_sym_boolean_literal_token1] = ACTIONS(5752), + [aux_sym_boolean_literal_token2] = ACTIONS(5752), + [sym_nothing_literal] = ACTIONS(5752), + [sym_null_literal] = ACTIONS(5752), + [sym_empty_literal] = ACTIONS(5752), + [sym_date_literal] = ACTIONS(5754), + [anon_sym_POUND] = ACTIONS(5752), + }, + [STATE(4961)] = { + [sym_identifier] = ACTIONS(8456), + [sym_newline] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8458), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8456), + [aux_sym_frm_property_statement_token1] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_BANG] = ACTIONS(8458), + [aux_sym__attribute_identifier_token1] = ACTIONS(8456), + [aux_sym_option_statement_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8456), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8456), + [aux_sym_preprocessor_const_token1] = ACTIONS(8456), + [sym_static_modifier] = ACTIONS(8456), + [sym__dim_keyword] = ACTIONS(8456), + [sym__redim_keyword] = ACTIONS(8456), + [aux_sym_get_accessor_token1] = ACTIONS(8456), + [aux_sym_set_accessor_token1] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(8458), + [aux_sym_const_declaration_token1] = ACTIONS(8456), + [anon_sym_LPAREN] = ACTIONS(8458), + [aux_sym_as_type_clause_token2] = ACTIONS(8456), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8456), + [aux_sym_visibility_token1] = ACTIONS(8456), + [aux_sym_visibility_token2] = ACTIONS(8456), + [aux_sym_elseif_fragment_token1] = ACTIONS(8456), + [aux_sym_else_fragment_token1] = ACTIONS(8456), + [aux_sym_select_statement_token1] = ACTIONS(8456), + [aux_sym__for_header_token1] = ACTIONS(8456), + [aux_sym_do_statement_token1] = ACTIONS(8456), + [aux_sym_do_condition_token1] = ACTIONS(8456), + [aux_sym_with_statement_token1] = ACTIONS(8456), + [aux_sym_exit_statement_token1] = ACTIONS(8456), + [sym_end_statement] = ACTIONS(8458), + [aux_sym_on_goto_statement_token1] = ACTIONS(8456), + [aux_sym_on_goto_statement_token2] = ACTIONS(8456), + [aux_sym_on_error_statement_token2] = ACTIONS(8456), + [sym__ambiguous_redim_statement] = ACTIONS(8458), + [aux_sym_erase_statement_token1] = ACTIONS(8456), + [aux_sym_open_statement_token1] = ACTIONS(8456), + [aux_sym_file_mode_token2] = ACTIONS(8456), + [aux_sym_file_access_token2] = ACTIONS(8456), + [aux_sym_file_lock_token2] = ACTIONS(8456), + [aux_sym_print_statement_token1] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8458), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8458), + [aux_sym_close_statement_token1] = ACTIONS(8456), + [aux_sym_put_statement_token1] = ACTIONS(8456), + [aux_sym_unlock_statement_token1] = ACTIONS(8456), + [aux_sym_seek_statement_token1] = ACTIONS(8456), + [sym_reset_statement] = ACTIONS(8456), + [aux_sym_raise_event_statement_token1] = ACTIONS(8456), + [sym_stop_statement] = ACTIONS(8456), + [sym_beep_statement] = ACTIONS(8456), + [aux_sym_unload_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token2] = ACTIONS(8456), + [aux_sym_def_type_statement_token3] = ACTIONS(8456), + [aux_sym_def_type_statement_token4] = ACTIONS(8456), + [aux_sym_def_type_statement_token5] = ACTIONS(8456), + [aux_sym_def_type_statement_token6] = ACTIONS(8456), + [aux_sym_def_type_statement_token7] = ACTIONS(8456), + [aux_sym_def_type_statement_token8] = ACTIONS(8456), + [aux_sym_def_type_statement_token9] = ACTIONS(8456), + [aux_sym_def_type_statement_token10] = ACTIONS(8456), + [aux_sym_def_type_statement_token11] = ACTIONS(8456), + [aux_sym_def_type_statement_token12] = ACTIONS(8456), + [aux_sym_def_type_statement_token13] = ACTIONS(8456), + [aux_sym_def_type_statement_token14] = ACTIONS(8456), + [aux_sym_call_statement_token1] = ACTIONS(8456), + [sym__ambiguous_call_statement] = ACTIONS(8456), + [aux_sym_addressof_expression_token1] = ACTIONS(8456), + [aux_sym_type_of_expression_token1] = ACTIONS(8456), + [aux_sym_unary_expression_token1] = ACTIONS(8456), + [sym_string_literal] = ACTIONS(8458), + [sym_number_literal] = ACTIONS(8458), + [aux_sym_boolean_literal_token1] = ACTIONS(8456), + [aux_sym_boolean_literal_token2] = ACTIONS(8456), + [sym_nothing_literal] = ACTIONS(8456), + [sym_null_literal] = ACTIONS(8456), + [sym_empty_literal] = ACTIONS(8456), + [sym_date_literal] = ACTIONS(8458), + [anon_sym_POUND] = ACTIONS(8456), + }, + [STATE(4962)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(4963)] = { + [aux_sym_next_variable_list_repeat1] = STATE(4968), + [sym_identifier] = ACTIONS(7945), + [sym_newline] = ACTIONS(7947), + [anon_sym_COLON] = ACTIONS(7947), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7945), + [aux_sym_frm_property_statement_token1] = ACTIONS(7945), + [anon_sym_DOT] = ACTIONS(7945), + [anon_sym_BANG] = ACTIONS(7947), + [aux_sym__attribute_identifier_token1] = ACTIONS(7945), + [aux_sym_option_statement_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7945), + [aux_sym_preprocessor_const_token1] = ACTIONS(7945), + [sym_static_modifier] = ACTIONS(7945), + [sym__dim_keyword] = ACTIONS(7945), + [sym__redim_keyword] = ACTIONS(7945), + [aux_sym_get_accessor_token1] = ACTIONS(7945), + [aux_sym_set_accessor_token1] = ACTIONS(7945), + [anon_sym_COMMA] = ACTIONS(10347), + [aux_sym_const_declaration_token1] = ACTIONS(7945), + [anon_sym_LPAREN] = ACTIONS(7947), + [aux_sym_as_type_clause_token2] = ACTIONS(7945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7945), + [aux_sym_visibility_token1] = ACTIONS(7945), + [aux_sym_visibility_token2] = ACTIONS(7945), + [aux_sym_elseif_fragment_token1] = ACTIONS(7945), + [aux_sym_else_fragment_token1] = ACTIONS(7945), + [aux_sym_select_statement_token1] = ACTIONS(7945), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7945), + [aux_sym__for_header_token1] = ACTIONS(7945), + [aux_sym_do_statement_token1] = ACTIONS(7945), + [aux_sym_do_condition_token1] = ACTIONS(7945), + [aux_sym_while_statement_token1] = ACTIONS(7945), + [aux_sym_with_statement_token1] = ACTIONS(7945), + [aux_sym_exit_statement_token1] = ACTIONS(7945), + [sym_end_statement] = ACTIONS(7947), + [aux_sym_on_goto_statement_token1] = ACTIONS(7945), + [aux_sym_on_goto_statement_token2] = ACTIONS(7945), + [aux_sym_on_error_statement_token2] = ACTIONS(7945), + [sym__ambiguous_redim_statement] = ACTIONS(7947), + [aux_sym_erase_statement_token1] = ACTIONS(7945), + [aux_sym_open_statement_token1] = ACTIONS(7945), + [aux_sym_file_mode_token2] = ACTIONS(7945), + [aux_sym_file_access_token2] = ACTIONS(7945), + [aux_sym_file_lock_token2] = ACTIONS(7945), + [aux_sym_print_statement_token1] = ACTIONS(7945), + [anon_sym_PLUS] = ACTIONS(7947), + [anon_sym_DASH] = ACTIONS(7945), + [anon_sym_QMARK] = ACTIONS(7947), + [aux_sym_close_statement_token1] = ACTIONS(7945), + [aux_sym_put_statement_token1] = ACTIONS(7945), + [aux_sym_unlock_statement_token1] = ACTIONS(7945), + [aux_sym_seek_statement_token1] = ACTIONS(7945), + [sym_reset_statement] = ACTIONS(7945), + [aux_sym_raise_event_statement_token1] = ACTIONS(7945), + [sym_stop_statement] = ACTIONS(7945), + [sym_beep_statement] = ACTIONS(7945), + [aux_sym_unload_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token2] = ACTIONS(7945), + [aux_sym_def_type_statement_token3] = ACTIONS(7945), + [aux_sym_def_type_statement_token4] = ACTIONS(7945), + [aux_sym_def_type_statement_token5] = ACTIONS(7945), + [aux_sym_def_type_statement_token6] = ACTIONS(7945), + [aux_sym_def_type_statement_token7] = ACTIONS(7945), + [aux_sym_def_type_statement_token8] = ACTIONS(7945), + [aux_sym_def_type_statement_token9] = ACTIONS(7945), + [aux_sym_def_type_statement_token10] = ACTIONS(7945), + [aux_sym_def_type_statement_token11] = ACTIONS(7945), + [aux_sym_def_type_statement_token12] = ACTIONS(7945), + [aux_sym_def_type_statement_token13] = ACTIONS(7945), + [aux_sym_def_type_statement_token14] = ACTIONS(7945), + [aux_sym_call_statement_token1] = ACTIONS(7945), + [sym__ambiguous_call_statement] = ACTIONS(7945), + [aux_sym_addressof_expression_token1] = ACTIONS(7945), + [aux_sym_type_of_expression_token1] = ACTIONS(7945), + [aux_sym_unary_expression_token1] = ACTIONS(7945), + [sym_string_literal] = ACTIONS(7947), + [sym_number_literal] = ACTIONS(7947), + [aux_sym_boolean_literal_token1] = ACTIONS(7945), + [aux_sym_boolean_literal_token2] = ACTIONS(7945), + [sym_nothing_literal] = ACTIONS(7945), + [sym_null_literal] = ACTIONS(7945), + [sym_empty_literal] = ACTIONS(7945), + [sym_date_literal] = ACTIONS(7947), + [anon_sym_POUND] = ACTIONS(7945), + }, + [STATE(4964)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(4965)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(4966)] = { + [sym_identifier] = ACTIONS(5627), + [sym_newline] = ACTIONS(5629), + [anon_sym_COLON] = ACTIONS(5629), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5627), + [aux_sym_frm_property_statement_token1] = ACTIONS(5627), + [anon_sym_DOT] = ACTIONS(5627), + [anon_sym_BANG] = ACTIONS(5629), + [aux_sym__attribute_identifier_token1] = ACTIONS(5627), + [aux_sym_option_statement_token3] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5627), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5627), + [aux_sym_preprocessor_const_token1] = ACTIONS(5627), + [sym_static_modifier] = ACTIONS(5627), + [sym__dim_keyword] = ACTIONS(5627), + [sym__redim_keyword] = ACTIONS(5627), + [aux_sym_get_accessor_token1] = ACTIONS(5627), + [aux_sym_set_accessor_token1] = ACTIONS(5627), + [anon_sym_COMMA] = ACTIONS(5629), + [aux_sym_const_declaration_token1] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5629), + [aux_sym_as_type_clause_token2] = ACTIONS(5627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5627), + [aux_sym_visibility_token1] = ACTIONS(5627), + [aux_sym_visibility_token2] = ACTIONS(5627), + [aux_sym_elseif_fragment_token1] = ACTIONS(5627), + [aux_sym_else_fragment_token1] = ACTIONS(5627), + [aux_sym_select_statement_token1] = ACTIONS(5627), + [aux_sym__for_header_token1] = ACTIONS(5627), + [aux_sym_do_statement_token1] = ACTIONS(5627), + [aux_sym_do_condition_token1] = ACTIONS(5627), + [aux_sym_with_statement_token1] = ACTIONS(5627), + [aux_sym_exit_statement_token1] = ACTIONS(5627), + [sym_end_statement] = ACTIONS(5629), + [aux_sym_on_goto_statement_token1] = ACTIONS(5627), + [aux_sym_on_goto_statement_token2] = ACTIONS(5627), + [aux_sym_on_error_statement_token2] = ACTIONS(5627), + [sym__ambiguous_redim_statement] = ACTIONS(5629), + [aux_sym_erase_statement_token1] = ACTIONS(5627), + [aux_sym_open_statement_token1] = ACTIONS(5627), + [aux_sym_file_mode_token2] = ACTIONS(5627), + [aux_sym_file_access_token2] = ACTIONS(5627), + [aux_sym_file_lock_token2] = ACTIONS(5627), + [aux_sym_print_statement_token1] = ACTIONS(5627), + [anon_sym_PLUS] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(5627), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5629), + [anon_sym_QMARK] = ACTIONS(5629), + [aux_sym_close_statement_token1] = ACTIONS(5627), + [aux_sym_put_statement_token1] = ACTIONS(5627), + [aux_sym_unlock_statement_token1] = ACTIONS(5627), + [aux_sym_seek_statement_token1] = ACTIONS(5627), + [sym_reset_statement] = ACTIONS(5627), + [aux_sym_raise_event_statement_token1] = ACTIONS(5627), + [sym_stop_statement] = ACTIONS(5627), + [sym_beep_statement] = ACTIONS(5627), + [aux_sym_unload_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token1] = ACTIONS(5627), + [aux_sym_def_type_statement_token2] = ACTIONS(5627), + [aux_sym_def_type_statement_token3] = ACTIONS(5627), + [aux_sym_def_type_statement_token4] = ACTIONS(5627), + [aux_sym_def_type_statement_token5] = ACTIONS(5627), + [aux_sym_def_type_statement_token6] = ACTIONS(5627), + [aux_sym_def_type_statement_token7] = ACTIONS(5627), + [aux_sym_def_type_statement_token8] = ACTIONS(5627), + [aux_sym_def_type_statement_token9] = ACTIONS(5627), + [aux_sym_def_type_statement_token10] = ACTIONS(5627), + [aux_sym_def_type_statement_token11] = ACTIONS(5627), + [aux_sym_def_type_statement_token12] = ACTIONS(5627), + [aux_sym_def_type_statement_token13] = ACTIONS(5627), + [aux_sym_def_type_statement_token14] = ACTIONS(5627), + [aux_sym_call_statement_token1] = ACTIONS(5627), + [sym__ambiguous_call_statement] = ACTIONS(5627), + [aux_sym_addressof_expression_token1] = ACTIONS(5627), + [aux_sym_type_of_expression_token1] = ACTIONS(5627), + [aux_sym_unary_expression_token1] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(5629), + [sym_number_literal] = ACTIONS(5629), + [aux_sym_boolean_literal_token1] = ACTIONS(5627), + [aux_sym_boolean_literal_token2] = ACTIONS(5627), + [sym_nothing_literal] = ACTIONS(5627), + [sym_null_literal] = ACTIONS(5627), + [sym_empty_literal] = ACTIONS(5627), + [sym_date_literal] = ACTIONS(5629), + [anon_sym_POUND] = ACTIONS(5627), + }, + [STATE(4967)] = { + [sym_array_bounds] = STATE(5360), + [sym_identifier] = ACTIONS(8070), + [sym_newline] = ACTIONS(8072), + [anon_sym_COLON] = ACTIONS(8072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8070), + [aux_sym_frm_property_statement_token1] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(8072), + [anon_sym_DOT] = ACTIONS(8070), + [anon_sym_BANG] = ACTIONS(8072), + [aux_sym__attribute_identifier_token1] = ACTIONS(8070), + [aux_sym_option_statement_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8070), + [aux_sym_preprocessor_const_token1] = ACTIONS(8070), + [sym_static_modifier] = ACTIONS(8070), + [sym__dim_keyword] = ACTIONS(8070), + [sym__redim_keyword] = ACTIONS(8070), + [aux_sym_get_accessor_token1] = ACTIONS(8070), + [aux_sym_set_accessor_token1] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [aux_sym_const_declaration_token1] = ACTIONS(8070), + [anon_sym_LPAREN] = ACTIONS(10054), + [aux_sym_as_type_clause_token2] = ACTIONS(8070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8070), + [aux_sym_visibility_token1] = ACTIONS(8070), + [aux_sym_visibility_token2] = ACTIONS(8070), + [aux_sym_elseif_fragment_token1] = ACTIONS(8070), + [aux_sym_else_fragment_token1] = ACTIONS(8070), + [aux_sym_select_statement_token1] = ACTIONS(8070), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8070), + [aux_sym__for_header_token1] = ACTIONS(8070), + [aux_sym_do_statement_token1] = ACTIONS(8070), + [aux_sym_do_condition_token1] = ACTIONS(8070), + [aux_sym_with_statement_token1] = ACTIONS(8070), + [aux_sym_exit_statement_token1] = ACTIONS(8070), + [sym_end_statement] = ACTIONS(8072), + [aux_sym_on_goto_statement_token1] = ACTIONS(8070), + [aux_sym_on_goto_statement_token2] = ACTIONS(8070), + [aux_sym_on_error_statement_token2] = ACTIONS(8070), + [sym__ambiguous_redim_statement] = ACTIONS(8072), + [aux_sym_erase_statement_token1] = ACTIONS(8070), + [aux_sym_open_statement_token1] = ACTIONS(8070), + [aux_sym_file_mode_token2] = ACTIONS(8070), + [aux_sym_file_access_token2] = ACTIONS(8070), + [aux_sym_file_lock_token2] = ACTIONS(8070), + [aux_sym_print_statement_token1] = ACTIONS(8070), + [anon_sym_PLUS] = ACTIONS(8072), + [anon_sym_DASH] = ACTIONS(8070), + [anon_sym_QMARK] = ACTIONS(8072), + [aux_sym_close_statement_token1] = ACTIONS(8070), + [aux_sym_put_statement_token1] = ACTIONS(8070), + [aux_sym_unlock_statement_token1] = ACTIONS(8070), + [aux_sym_seek_statement_token1] = ACTIONS(8070), + [sym_reset_statement] = ACTIONS(8070), + [aux_sym_raise_event_statement_token1] = ACTIONS(8070), + [sym_stop_statement] = ACTIONS(8070), + [sym_beep_statement] = ACTIONS(8070), + [aux_sym_unload_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token2] = ACTIONS(8070), + [aux_sym_def_type_statement_token3] = ACTIONS(8070), + [aux_sym_def_type_statement_token4] = ACTIONS(8070), + [aux_sym_def_type_statement_token5] = ACTIONS(8070), + [aux_sym_def_type_statement_token6] = ACTIONS(8070), + [aux_sym_def_type_statement_token7] = ACTIONS(8070), + [aux_sym_def_type_statement_token8] = ACTIONS(8070), + [aux_sym_def_type_statement_token9] = ACTIONS(8070), + [aux_sym_def_type_statement_token10] = ACTIONS(8070), + [aux_sym_def_type_statement_token11] = ACTIONS(8070), + [aux_sym_def_type_statement_token12] = ACTIONS(8070), + [aux_sym_def_type_statement_token13] = ACTIONS(8070), + [aux_sym_def_type_statement_token14] = ACTIONS(8070), + [aux_sym_call_statement_token1] = ACTIONS(8070), + [sym__ambiguous_call_statement] = ACTIONS(8070), + [aux_sym_addressof_expression_token1] = ACTIONS(8070), + [aux_sym_type_of_expression_token1] = ACTIONS(8070), + [aux_sym_unary_expression_token1] = ACTIONS(8070), + [sym_string_literal] = ACTIONS(8072), + [sym_number_literal] = ACTIONS(8072), + [aux_sym_boolean_literal_token1] = ACTIONS(8070), + [aux_sym_boolean_literal_token2] = ACTIONS(8070), + [sym_nothing_literal] = ACTIONS(8070), + [sym_null_literal] = ACTIONS(8070), + [sym_empty_literal] = ACTIONS(8070), + [sym_date_literal] = ACTIONS(8072), + [anon_sym_POUND] = ACTIONS(8070), + }, + [STATE(4968)] = { + [aux_sym_next_variable_list_repeat1] = STATE(4968), + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(10353), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_while_statement_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(4969)] = { + [sym_identifier] = ACTIONS(8790), + [sym_newline] = ACTIONS(8792), + [anon_sym_COLON] = ACTIONS(8792), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8790), + [aux_sym_frm_property_statement_token1] = ACTIONS(8790), + [anon_sym_DOT] = ACTIONS(8790), + [anon_sym_BANG] = ACTIONS(8792), + [aux_sym__attribute_identifier_token1] = ACTIONS(8790), + [aux_sym_option_statement_token3] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8790), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8790), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8790), + [aux_sym_preprocessor_const_token1] = ACTIONS(8790), + [sym_static_modifier] = ACTIONS(8790), + [sym__dim_keyword] = ACTIONS(8790), + [sym__redim_keyword] = ACTIONS(8790), + [aux_sym_get_accessor_token1] = ACTIONS(8790), + [aux_sym_set_accessor_token1] = ACTIONS(8790), + [anon_sym_COMMA] = ACTIONS(8792), + [aux_sym_const_declaration_token1] = ACTIONS(8790), + [anon_sym_LPAREN] = ACTIONS(8792), + [aux_sym_as_type_clause_token2] = ACTIONS(8790), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8790), + [aux_sym_visibility_token1] = ACTIONS(8790), + [aux_sym_visibility_token2] = ACTIONS(8790), + [aux_sym_elseif_fragment_token1] = ACTIONS(8790), + [aux_sym_else_fragment_token1] = ACTIONS(8790), + [aux_sym_select_statement_token1] = ACTIONS(8790), + [aux_sym__for_header_token1] = ACTIONS(8790), + [aux_sym_do_statement_token1] = ACTIONS(8790), + [aux_sym_do_condition_token1] = ACTIONS(8790), + [aux_sym_with_statement_token1] = ACTIONS(8790), + [aux_sym_exit_statement_token1] = ACTIONS(8790), + [sym_end_statement] = ACTIONS(8792), + [aux_sym_on_goto_statement_token1] = ACTIONS(8790), + [aux_sym_on_goto_statement_token2] = ACTIONS(8790), + [aux_sym_on_error_statement_token2] = ACTIONS(8790), + [sym__ambiguous_redim_statement] = ACTIONS(8792), + [aux_sym_erase_statement_token1] = ACTIONS(8790), + [aux_sym_open_statement_token1] = ACTIONS(8790), + [aux_sym_file_mode_token2] = ACTIONS(8790), + [aux_sym_file_access_token2] = ACTIONS(8790), + [aux_sym_file_lock_token2] = ACTIONS(8790), + [aux_sym_print_statement_token1] = ACTIONS(8790), + [anon_sym_PLUS] = ACTIONS(8792), + [anon_sym_DASH] = ACTIONS(8790), + [anon_sym_QMARK] = ACTIONS(8792), + [aux_sym_close_statement_token1] = ACTIONS(8790), + [aux_sym_put_statement_token1] = ACTIONS(8790), + [aux_sym_unlock_statement_token1] = ACTIONS(8790), + [aux_sym_seek_statement_token1] = ACTIONS(8790), + [sym_reset_statement] = ACTIONS(8790), + [aux_sym_raise_event_statement_token1] = ACTIONS(8790), + [sym_stop_statement] = ACTIONS(8790), + [sym_beep_statement] = ACTIONS(8790), + [aux_sym_unload_statement_token1] = ACTIONS(8790), + [aux_sym_def_type_statement_token1] = ACTIONS(8790), + [aux_sym_def_type_statement_token2] = ACTIONS(8790), + [aux_sym_def_type_statement_token3] = ACTIONS(8790), + [aux_sym_def_type_statement_token4] = ACTIONS(8790), + [aux_sym_def_type_statement_token5] = ACTIONS(8790), + [aux_sym_def_type_statement_token6] = ACTIONS(8790), + [aux_sym_def_type_statement_token7] = ACTIONS(8790), + [aux_sym_def_type_statement_token8] = ACTIONS(8790), + [aux_sym_def_type_statement_token9] = ACTIONS(8790), + [aux_sym_def_type_statement_token10] = ACTIONS(8790), + [aux_sym_def_type_statement_token11] = ACTIONS(8790), + [aux_sym_def_type_statement_token12] = ACTIONS(8790), + [aux_sym_def_type_statement_token13] = ACTIONS(8790), + [aux_sym_def_type_statement_token14] = ACTIONS(8790), + [aux_sym_call_statement_token1] = ACTIONS(8790), + [sym__ambiguous_call_statement] = ACTIONS(8790), + [aux_sym_addressof_expression_token1] = ACTIONS(8790), + [aux_sym_type_of_expression_token1] = ACTIONS(8790), + [aux_sym_unary_expression_token1] = ACTIONS(8790), + [sym_string_literal] = ACTIONS(8792), + [sym_number_literal] = ACTIONS(8792), + [aux_sym_boolean_literal_token1] = ACTIONS(8790), + [aux_sym_boolean_literal_token2] = ACTIONS(8790), + [sym_nothing_literal] = ACTIONS(8790), + [sym_null_literal] = ACTIONS(8790), + [sym_empty_literal] = ACTIONS(8790), + [sym_date_literal] = ACTIONS(8792), + [anon_sym_POUND] = ACTIONS(8790), + }, + [STATE(4970)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(4971)] = { + [sym_char_position] = STATE(7516), + [aux_sym_output_list_repeat1] = STATE(4971), + [sym_identifier] = ACTIONS(7618), + [sym_newline] = ACTIONS(7620), + [anon_sym_COLON] = ACTIONS(7620), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7618), + [aux_sym_frm_property_statement_token1] = ACTIONS(7618), + [anon_sym_DOT] = ACTIONS(7618), + [anon_sym_BANG] = ACTIONS(7620), + [aux_sym__attribute_identifier_token1] = ACTIONS(7618), + [aux_sym_option_statement_token3] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7618), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7618), + [aux_sym_preprocessor_const_token1] = ACTIONS(7618), + [sym_static_modifier] = ACTIONS(7618), + [sym__dim_keyword] = ACTIONS(7618), + [sym__redim_keyword] = ACTIONS(7618), + [aux_sym_get_accessor_token1] = ACTIONS(7618), + [aux_sym_set_accessor_token1] = ACTIONS(7618), + [anon_sym_COMMA] = ACTIONS(7622), + [aux_sym_const_declaration_token1] = ACTIONS(7618), + [anon_sym_LPAREN] = ACTIONS(7620), + [aux_sym_as_type_clause_token2] = ACTIONS(7618), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7618), + [aux_sym_visibility_token1] = ACTIONS(7618), + [aux_sym_visibility_token2] = ACTIONS(7618), + [aux_sym_elseif_fragment_token1] = ACTIONS(7618), + [aux_sym_else_fragment_token1] = ACTIONS(7618), + [aux_sym_select_statement_token1] = ACTIONS(7618), + [aux_sym__for_header_token1] = ACTIONS(7618), + [aux_sym_do_statement_token1] = ACTIONS(7618), + [aux_sym_do_condition_token1] = ACTIONS(7618), + [aux_sym_with_statement_token1] = ACTIONS(7618), + [aux_sym_exit_statement_token1] = ACTIONS(7618), + [sym_end_statement] = ACTIONS(7620), + [aux_sym_on_goto_statement_token1] = ACTIONS(7618), + [aux_sym_on_goto_statement_token2] = ACTIONS(7618), + [aux_sym_on_error_statement_token2] = ACTIONS(7618), + [sym__ambiguous_redim_statement] = ACTIONS(7620), + [aux_sym_erase_statement_token1] = ACTIONS(7618), + [aux_sym_open_statement_token1] = ACTIONS(7618), + [aux_sym_file_mode_token2] = ACTIONS(7618), + [aux_sym_file_access_token2] = ACTIONS(7618), + [aux_sym_file_lock_token2] = ACTIONS(7618), + [aux_sym_print_statement_token1] = ACTIONS(7618), + [anon_sym_PLUS] = ACTIONS(7620), + [anon_sym_DASH] = ACTIONS(7618), + [anon_sym_SEMI] = ACTIONS(7622), + [anon_sym_QMARK] = ACTIONS(7620), + [aux_sym_close_statement_token1] = ACTIONS(7618), + [aux_sym_put_statement_token1] = ACTIONS(7618), + [aux_sym_unlock_statement_token1] = ACTIONS(7618), + [aux_sym_seek_statement_token1] = ACTIONS(7618), + [sym_reset_statement] = ACTIONS(7618), + [aux_sym_raise_event_statement_token1] = ACTIONS(7618), + [sym_stop_statement] = ACTIONS(7618), + [sym_beep_statement] = ACTIONS(7618), + [aux_sym_unload_statement_token1] = ACTIONS(7618), + [aux_sym_def_type_statement_token1] = ACTIONS(7618), + [aux_sym_def_type_statement_token2] = ACTIONS(7618), + [aux_sym_def_type_statement_token3] = ACTIONS(7618), + [aux_sym_def_type_statement_token4] = ACTIONS(7618), + [aux_sym_def_type_statement_token5] = ACTIONS(7618), + [aux_sym_def_type_statement_token6] = ACTIONS(7618), + [aux_sym_def_type_statement_token7] = ACTIONS(7618), + [aux_sym_def_type_statement_token8] = ACTIONS(7618), + [aux_sym_def_type_statement_token9] = ACTIONS(7618), + [aux_sym_def_type_statement_token10] = ACTIONS(7618), + [aux_sym_def_type_statement_token11] = ACTIONS(7618), + [aux_sym_def_type_statement_token12] = ACTIONS(7618), + [aux_sym_def_type_statement_token13] = ACTIONS(7618), + [aux_sym_def_type_statement_token14] = ACTIONS(7618), + [aux_sym_call_statement_token1] = ACTIONS(7618), + [sym__ambiguous_call_statement] = ACTIONS(7618), + [aux_sym_addressof_expression_token1] = ACTIONS(7618), + [aux_sym_type_of_expression_token1] = ACTIONS(7618), + [aux_sym_unary_expression_token1] = ACTIONS(7618), + [sym_string_literal] = ACTIONS(7620), + [sym_number_literal] = ACTIONS(7620), + [aux_sym_boolean_literal_token1] = ACTIONS(7618), + [aux_sym_boolean_literal_token2] = ACTIONS(7618), + [sym_nothing_literal] = ACTIONS(7618), + [sym_null_literal] = ACTIONS(7618), + [sym_empty_literal] = ACTIONS(7618), + [sym_date_literal] = ACTIONS(7620), + [anon_sym_POUND] = ACTIONS(7618), + }, + [STATE(4972)] = { + [sym_identifier] = ACTIONS(7968), + [sym_newline] = ACTIONS(7970), + [anon_sym_COLON] = ACTIONS(7970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7968), + [aux_sym_frm_property_statement_token1] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_BANG] = ACTIONS(7970), + [aux_sym__attribute_identifier_token1] = ACTIONS(7968), + [aux_sym_option_statement_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7968), + [aux_sym_preprocessor_const_token1] = ACTIONS(7968), + [sym_static_modifier] = ACTIONS(7968), + [sym__dim_keyword] = ACTIONS(7968), + [sym__redim_keyword] = ACTIONS(7968), + [aux_sym_get_accessor_token1] = ACTIONS(7968), + [aux_sym_set_accessor_token1] = ACTIONS(7968), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_const_declaration_token1] = ACTIONS(7968), + [anon_sym_LPAREN] = ACTIONS(7970), + [aux_sym_as_type_clause_token1] = ACTIONS(7968), + [aux_sym_as_type_clause_token2] = ACTIONS(7968), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7968), + [aux_sym_visibility_token1] = ACTIONS(7968), + [aux_sym_visibility_token2] = ACTIONS(7968), + [aux_sym_elseif_fragment_token1] = ACTIONS(7968), + [aux_sym_else_fragment_token1] = ACTIONS(7968), + [aux_sym_select_statement_token1] = ACTIONS(7968), + [aux_sym_select_statement_token2] = ACTIONS(7968), + [aux_sym__for_header_token1] = ACTIONS(7968), + [aux_sym_do_statement_token1] = ACTIONS(7968), + [aux_sym_do_condition_token1] = ACTIONS(7968), + [aux_sym_with_statement_token1] = ACTIONS(7968), + [aux_sym_exit_statement_token1] = ACTIONS(7968), + [sym_end_statement] = ACTIONS(7970), + [aux_sym_on_goto_statement_token1] = ACTIONS(7968), + [aux_sym_on_goto_statement_token2] = ACTIONS(7968), + [aux_sym_on_error_statement_token2] = ACTIONS(7968), + [sym__ambiguous_redim_statement] = ACTIONS(7970), + [aux_sym_erase_statement_token1] = ACTIONS(7968), + [aux_sym_open_statement_token1] = ACTIONS(7968), + [aux_sym_file_mode_token2] = ACTIONS(7968), + [aux_sym_file_access_token2] = ACTIONS(7968), + [aux_sym_file_lock_token2] = ACTIONS(7968), + [aux_sym_print_statement_token1] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7970), + [aux_sym_close_statement_token1] = ACTIONS(7968), + [aux_sym_put_statement_token1] = ACTIONS(7968), + [aux_sym_unlock_statement_token1] = ACTIONS(7968), + [aux_sym_seek_statement_token1] = ACTIONS(7968), + [sym_reset_statement] = ACTIONS(7968), + [aux_sym_raise_event_statement_token1] = ACTIONS(7968), + [sym_stop_statement] = ACTIONS(7968), + [sym_beep_statement] = ACTIONS(7968), + [aux_sym_unload_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token2] = ACTIONS(7968), + [aux_sym_def_type_statement_token3] = ACTIONS(7968), + [aux_sym_def_type_statement_token4] = ACTIONS(7968), + [aux_sym_def_type_statement_token5] = ACTIONS(7968), + [aux_sym_def_type_statement_token6] = ACTIONS(7968), + [aux_sym_def_type_statement_token7] = ACTIONS(7968), + [aux_sym_def_type_statement_token8] = ACTIONS(7968), + [aux_sym_def_type_statement_token9] = ACTIONS(7968), + [aux_sym_def_type_statement_token10] = ACTIONS(7968), + [aux_sym_def_type_statement_token11] = ACTIONS(7968), + [aux_sym_def_type_statement_token12] = ACTIONS(7968), + [aux_sym_def_type_statement_token13] = ACTIONS(7968), + [aux_sym_def_type_statement_token14] = ACTIONS(7968), + [aux_sym_call_statement_token1] = ACTIONS(7968), + [sym__ambiguous_call_statement] = ACTIONS(7968), + [aux_sym_addressof_expression_token1] = ACTIONS(7968), + [aux_sym_type_of_expression_token1] = ACTIONS(7968), + [aux_sym_unary_expression_token1] = ACTIONS(7968), + [sym_string_literal] = ACTIONS(7970), + [sym_number_literal] = ACTIONS(7970), + [aux_sym_boolean_literal_token1] = ACTIONS(7968), + [aux_sym_boolean_literal_token2] = ACTIONS(7968), + [sym_nothing_literal] = ACTIONS(7968), + [sym_null_literal] = ACTIONS(7968), + [sym_empty_literal] = ACTIONS(7968), + [sym_date_literal] = ACTIONS(7970), + [anon_sym_POUND] = ACTIONS(7968), + }, + [STATE(4973)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(4974)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(4975)] = { + [sym_initializer] = STATE(6158), + [sym_identifier] = ACTIONS(7710), + [sym_newline] = ACTIONS(7712), + [anon_sym_COLON] = ACTIONS(7712), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7710), + [aux_sym_frm_property_statement_token1] = ACTIONS(7710), + [anon_sym_EQ] = ACTIONS(10026), + [anon_sym_DOT] = ACTIONS(7710), + [anon_sym_BANG] = ACTIONS(7712), + [aux_sym__attribute_identifier_token1] = ACTIONS(7710), + [aux_sym_option_statement_token3] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7710), + [aux_sym_preprocessor_const_token1] = ACTIONS(7710), + [sym_static_modifier] = ACTIONS(7710), + [sym__dim_keyword] = ACTIONS(7710), + [sym__redim_keyword] = ACTIONS(7710), + [aux_sym_get_accessor_token1] = ACTIONS(7710), + [aux_sym_set_accessor_token1] = ACTIONS(7710), + [anon_sym_COMMA] = ACTIONS(7712), + [aux_sym_const_declaration_token1] = ACTIONS(7710), + [anon_sym_LPAREN] = ACTIONS(7712), + [aux_sym_as_type_clause_token2] = ACTIONS(7710), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7710), + [aux_sym_visibility_token1] = ACTIONS(7710), + [aux_sym_visibility_token2] = ACTIONS(7710), + [aux_sym_elseif_fragment_token1] = ACTIONS(7710), + [aux_sym_else_fragment_token1] = ACTIONS(7710), + [aux_sym_select_statement_token1] = ACTIONS(7710), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7710), + [aux_sym__for_header_token1] = ACTIONS(7710), + [aux_sym_do_statement_token1] = ACTIONS(7710), + [aux_sym_do_condition_token1] = ACTIONS(7710), + [aux_sym_with_statement_token1] = ACTIONS(7710), + [aux_sym_exit_statement_token1] = ACTIONS(7710), + [sym_end_statement] = ACTIONS(7712), + [aux_sym_on_goto_statement_token1] = ACTIONS(7710), + [aux_sym_on_goto_statement_token2] = ACTIONS(7710), + [aux_sym_on_error_statement_token2] = ACTIONS(7710), + [sym__ambiguous_redim_statement] = ACTIONS(7712), + [aux_sym_erase_statement_token1] = ACTIONS(7710), + [aux_sym_open_statement_token1] = ACTIONS(7710), + [aux_sym_file_mode_token2] = ACTIONS(7710), + [aux_sym_file_access_token2] = ACTIONS(7710), + [aux_sym_file_lock_token2] = ACTIONS(7710), + [aux_sym_print_statement_token1] = ACTIONS(7710), + [anon_sym_PLUS] = ACTIONS(7712), + [anon_sym_DASH] = ACTIONS(7710), + [anon_sym_QMARK] = ACTIONS(7712), + [aux_sym_close_statement_token1] = ACTIONS(7710), + [aux_sym_put_statement_token1] = ACTIONS(7710), + [aux_sym_unlock_statement_token1] = ACTIONS(7710), + [aux_sym_seek_statement_token1] = ACTIONS(7710), + [sym_reset_statement] = ACTIONS(7710), + [aux_sym_raise_event_statement_token1] = ACTIONS(7710), + [sym_stop_statement] = ACTIONS(7710), + [sym_beep_statement] = ACTIONS(7710), + [aux_sym_unload_statement_token1] = ACTIONS(7710), + [aux_sym_def_type_statement_token1] = ACTIONS(7710), + [aux_sym_def_type_statement_token2] = ACTIONS(7710), + [aux_sym_def_type_statement_token3] = ACTIONS(7710), + [aux_sym_def_type_statement_token4] = ACTIONS(7710), + [aux_sym_def_type_statement_token5] = ACTIONS(7710), + [aux_sym_def_type_statement_token6] = ACTIONS(7710), + [aux_sym_def_type_statement_token7] = ACTIONS(7710), + [aux_sym_def_type_statement_token8] = ACTIONS(7710), + [aux_sym_def_type_statement_token9] = ACTIONS(7710), + [aux_sym_def_type_statement_token10] = ACTIONS(7710), + [aux_sym_def_type_statement_token11] = ACTIONS(7710), + [aux_sym_def_type_statement_token12] = ACTIONS(7710), + [aux_sym_def_type_statement_token13] = ACTIONS(7710), + [aux_sym_def_type_statement_token14] = ACTIONS(7710), + [aux_sym_call_statement_token1] = ACTIONS(7710), + [sym__ambiguous_call_statement] = ACTIONS(7710), + [aux_sym_addressof_expression_token1] = ACTIONS(7710), + [aux_sym_type_of_expression_token1] = ACTIONS(7710), + [aux_sym_unary_expression_token1] = ACTIONS(7710), + [sym_string_literal] = ACTIONS(7712), + [sym_number_literal] = ACTIONS(7712), + [aux_sym_boolean_literal_token1] = ACTIONS(7710), + [aux_sym_boolean_literal_token2] = ACTIONS(7710), + [sym_nothing_literal] = ACTIONS(7710), + [sym_null_literal] = ACTIONS(7710), + [sym_empty_literal] = ACTIONS(7710), + [sym_date_literal] = ACTIONS(7712), + [anon_sym_POUND] = ACTIONS(7710), + }, + [STATE(4976)] = { + [sym_identifier] = ACTIONS(8443), + [sym_newline] = ACTIONS(8445), + [anon_sym_COLON] = ACTIONS(8445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8443), + [aux_sym_frm_property_statement_token1] = ACTIONS(8443), + [anon_sym_DOT] = ACTIONS(8443), + [anon_sym_BANG] = ACTIONS(8445), + [aux_sym__attribute_identifier_token1] = ACTIONS(8443), + [aux_sym_option_statement_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8443), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8443), + [aux_sym_preprocessor_const_token1] = ACTIONS(8443), + [sym_static_modifier] = ACTIONS(8443), + [sym__dim_keyword] = ACTIONS(8443), + [sym__redim_keyword] = ACTIONS(8443), + [aux_sym_get_accessor_token1] = ACTIONS(8443), + [aux_sym_set_accessor_token1] = ACTIONS(8443), + [anon_sym_COMMA] = ACTIONS(8445), + [aux_sym_const_declaration_token1] = ACTIONS(8443), + [anon_sym_LPAREN] = ACTIONS(8445), + [aux_sym_as_type_clause_token2] = ACTIONS(8443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8443), + [aux_sym_visibility_token1] = ACTIONS(8443), + [aux_sym_visibility_token2] = ACTIONS(8443), + [aux_sym_elseif_fragment_token1] = ACTIONS(8443), + [aux_sym_else_fragment_token1] = ACTIONS(8443), + [aux_sym_select_statement_token1] = ACTIONS(8443), + [aux_sym__for_header_token1] = ACTIONS(8443), + [aux_sym_do_statement_token1] = ACTIONS(8443), + [aux_sym_do_condition_token1] = ACTIONS(8443), + [aux_sym_with_statement_token1] = ACTIONS(8443), + [aux_sym_exit_statement_token1] = ACTIONS(8443), + [sym_end_statement] = ACTIONS(8445), + [aux_sym_on_goto_statement_token1] = ACTIONS(8443), + [aux_sym_on_goto_statement_token2] = ACTIONS(8443), + [aux_sym_on_error_statement_token2] = ACTIONS(8443), + [sym__ambiguous_redim_statement] = ACTIONS(8445), + [aux_sym_erase_statement_token1] = ACTIONS(8443), + [aux_sym_open_statement_token1] = ACTIONS(8443), + [aux_sym_file_mode_token2] = ACTIONS(8443), + [aux_sym_file_access_token2] = ACTIONS(8443), + [aux_sym_file_lock_token2] = ACTIONS(8443), + [aux_sym_print_statement_token1] = ACTIONS(8443), + [anon_sym_PLUS] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8443), + [anon_sym_QMARK] = ACTIONS(8445), + [aux_sym_close_statement_token1] = ACTIONS(8443), + [aux_sym_put_statement_token1] = ACTIONS(8443), + [aux_sym_unlock_statement_token1] = ACTIONS(8443), + [aux_sym_seek_statement_token1] = ACTIONS(8443), + [sym_reset_statement] = ACTIONS(8443), + [aux_sym_raise_event_statement_token1] = ACTIONS(8443), + [sym_stop_statement] = ACTIONS(8443), + [sym_beep_statement] = ACTIONS(8443), + [aux_sym_unload_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token2] = ACTIONS(8443), + [aux_sym_def_type_statement_token3] = ACTIONS(8443), + [aux_sym_def_type_statement_token4] = ACTIONS(8443), + [aux_sym_def_type_statement_token5] = ACTIONS(8443), + [aux_sym_def_type_statement_token6] = ACTIONS(8443), + [aux_sym_def_type_statement_token7] = ACTIONS(8443), + [aux_sym_def_type_statement_token8] = ACTIONS(8443), + [aux_sym_def_type_statement_token9] = ACTIONS(8443), + [aux_sym_def_type_statement_token10] = ACTIONS(8443), + [aux_sym_def_type_statement_token11] = ACTIONS(8443), + [aux_sym_def_type_statement_token12] = ACTIONS(8443), + [aux_sym_def_type_statement_token13] = ACTIONS(8443), + [aux_sym_def_type_statement_token14] = ACTIONS(8443), + [aux_sym_call_statement_token1] = ACTIONS(8443), + [sym__ambiguous_call_statement] = ACTIONS(8443), + [aux_sym_addressof_expression_token1] = ACTIONS(8443), + [aux_sym_type_of_expression_token1] = ACTIONS(8443), + [aux_sym_unary_expression_token1] = ACTIONS(8443), + [sym_string_literal] = ACTIONS(8445), + [sym_number_literal] = ACTIONS(8445), + [aux_sym_boolean_literal_token1] = ACTIONS(8443), + [aux_sym_boolean_literal_token2] = ACTIONS(8443), + [sym_nothing_literal] = ACTIONS(8443), + [sym_null_literal] = ACTIONS(8443), + [sym_empty_literal] = ACTIONS(8443), + [sym_date_literal] = ACTIONS(8445), + [anon_sym_POUND] = ACTIONS(8443), + }, + [STATE(4977)] = { + [sym_argument_list] = STATE(5386), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7836), + [anon_sym_BANG] = ACTIONS(4034), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10285), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_while_statement_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(4978)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5067), + [sym_identifier] = ACTIONS(7945), + [sym_newline] = ACTIONS(7947), + [anon_sym_COLON] = ACTIONS(7947), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7945), + [aux_sym_frm_property_statement_token1] = ACTIONS(7945), + [anon_sym_DOT] = ACTIONS(7945), + [anon_sym_BANG] = ACTIONS(7947), + [aux_sym__attribute_identifier_token1] = ACTIONS(7945), + [aux_sym_option_statement_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7945), + [aux_sym_preprocessor_const_token1] = ACTIONS(7945), + [sym_static_modifier] = ACTIONS(7945), + [sym__dim_keyword] = ACTIONS(7945), + [sym__redim_keyword] = ACTIONS(7945), + [aux_sym_get_accessor_token1] = ACTIONS(7945), + [aux_sym_set_accessor_token1] = ACTIONS(7945), + [anon_sym_COMMA] = ACTIONS(10345), + [aux_sym_const_declaration_token1] = ACTIONS(7945), + [anon_sym_LPAREN] = ACTIONS(7947), + [aux_sym_as_type_clause_token2] = ACTIONS(7945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7945), + [aux_sym_visibility_token1] = ACTIONS(7945), + [aux_sym_visibility_token2] = ACTIONS(7945), + [aux_sym_elseif_fragment_token1] = ACTIONS(7945), + [aux_sym_else_fragment_token1] = ACTIONS(7945), + [aux_sym_select_statement_token1] = ACTIONS(7945), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7945), + [aux_sym__for_header_token1] = ACTIONS(7945), + [aux_sym_do_statement_token1] = ACTIONS(7945), + [aux_sym_do_statement_token2] = ACTIONS(7945), + [aux_sym_do_condition_token1] = ACTIONS(7945), + [aux_sym_with_statement_token1] = ACTIONS(7945), + [aux_sym_exit_statement_token1] = ACTIONS(7945), + [sym_end_statement] = ACTIONS(7947), + [aux_sym_on_goto_statement_token1] = ACTIONS(7945), + [aux_sym_on_goto_statement_token2] = ACTIONS(7945), + [aux_sym_on_error_statement_token2] = ACTIONS(7945), + [sym__ambiguous_redim_statement] = ACTIONS(7947), + [aux_sym_erase_statement_token1] = ACTIONS(7945), + [aux_sym_open_statement_token1] = ACTIONS(7945), + [aux_sym_file_mode_token2] = ACTIONS(7945), + [aux_sym_file_access_token2] = ACTIONS(7945), + [aux_sym_file_lock_token2] = ACTIONS(7945), + [aux_sym_print_statement_token1] = ACTIONS(7945), + [anon_sym_PLUS] = ACTIONS(7947), + [anon_sym_DASH] = ACTIONS(7945), + [anon_sym_QMARK] = ACTIONS(7947), + [aux_sym_close_statement_token1] = ACTIONS(7945), + [aux_sym_put_statement_token1] = ACTIONS(7945), + [aux_sym_unlock_statement_token1] = ACTIONS(7945), + [aux_sym_seek_statement_token1] = ACTIONS(7945), + [sym_reset_statement] = ACTIONS(7945), + [aux_sym_raise_event_statement_token1] = ACTIONS(7945), + [sym_stop_statement] = ACTIONS(7945), + [sym_beep_statement] = ACTIONS(7945), + [aux_sym_unload_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token2] = ACTIONS(7945), + [aux_sym_def_type_statement_token3] = ACTIONS(7945), + [aux_sym_def_type_statement_token4] = ACTIONS(7945), + [aux_sym_def_type_statement_token5] = ACTIONS(7945), + [aux_sym_def_type_statement_token6] = ACTIONS(7945), + [aux_sym_def_type_statement_token7] = ACTIONS(7945), + [aux_sym_def_type_statement_token8] = ACTIONS(7945), + [aux_sym_def_type_statement_token9] = ACTIONS(7945), + [aux_sym_def_type_statement_token10] = ACTIONS(7945), + [aux_sym_def_type_statement_token11] = ACTIONS(7945), + [aux_sym_def_type_statement_token12] = ACTIONS(7945), + [aux_sym_def_type_statement_token13] = ACTIONS(7945), + [aux_sym_def_type_statement_token14] = ACTIONS(7945), + [aux_sym_call_statement_token1] = ACTIONS(7945), + [sym__ambiguous_call_statement] = ACTIONS(7945), + [aux_sym_addressof_expression_token1] = ACTIONS(7945), + [aux_sym_type_of_expression_token1] = ACTIONS(7945), + [aux_sym_unary_expression_token1] = ACTIONS(7945), + [sym_string_literal] = ACTIONS(7947), + [sym_number_literal] = ACTIONS(7947), + [aux_sym_boolean_literal_token1] = ACTIONS(7945), + [aux_sym_boolean_literal_token2] = ACTIONS(7945), + [sym_nothing_literal] = ACTIONS(7945), + [sym_null_literal] = ACTIONS(7945), + [sym_empty_literal] = ACTIONS(7945), + [sym_date_literal] = ACTIONS(7947), + [anon_sym_POUND] = ACTIONS(7945), + }, + [STATE(4979)] = { + [sym_argument_list] = STATE(10051), + [aux_sym_input_statement_repeat1] = STATE(5314), + [sym_identifier] = ACTIONS(7864), + [sym_newline] = ACTIONS(7866), + [anon_sym_COLON] = ACTIONS(7866), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7864), + [aux_sym_frm_property_statement_token1] = ACTIONS(7864), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_BANG] = ACTIONS(7866), + [aux_sym__attribute_identifier_token1] = ACTIONS(7864), + [aux_sym_option_statement_token3] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7864), + [aux_sym_preprocessor_const_token1] = ACTIONS(7864), + [sym_static_modifier] = ACTIONS(7864), + [sym__dim_keyword] = ACTIONS(7864), + [sym__redim_keyword] = ACTIONS(7864), + [aux_sym_get_accessor_token1] = ACTIONS(7864), + [aux_sym_set_accessor_token1] = ACTIONS(7864), + [anon_sym_COMMA] = ACTIONS(10356), + [aux_sym_const_declaration_token1] = ACTIONS(7864), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(7864), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7864), + [aux_sym_visibility_token1] = ACTIONS(7864), + [aux_sym_visibility_token2] = ACTIONS(7864), + [aux_sym_elseif_fragment_token1] = ACTIONS(7864), + [aux_sym_else_fragment_token1] = ACTIONS(7864), + [aux_sym_select_statement_token1] = ACTIONS(7864), + [aux_sym__for_header_token1] = ACTIONS(7864), + [aux_sym_do_statement_token1] = ACTIONS(7864), + [aux_sym_do_statement_token2] = ACTIONS(7864), + [aux_sym_do_condition_token1] = ACTIONS(7864), + [aux_sym_with_statement_token1] = ACTIONS(7864), + [aux_sym_exit_statement_token1] = ACTIONS(7864), + [sym_end_statement] = ACTIONS(7866), + [aux_sym_on_goto_statement_token1] = ACTIONS(7864), + [aux_sym_on_goto_statement_token2] = ACTIONS(7864), + [aux_sym_on_error_statement_token2] = ACTIONS(7864), + [sym__ambiguous_redim_statement] = ACTIONS(7866), + [aux_sym_erase_statement_token1] = ACTIONS(7864), + [aux_sym_open_statement_token1] = ACTIONS(7864), + [aux_sym_file_mode_token2] = ACTIONS(7864), + [aux_sym_file_access_token2] = ACTIONS(7864), + [aux_sym_file_lock_token2] = ACTIONS(7864), + [aux_sym_print_statement_token1] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7866), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7866), + [aux_sym_close_statement_token1] = ACTIONS(7864), + [aux_sym_put_statement_token1] = ACTIONS(7864), + [aux_sym_unlock_statement_token1] = ACTIONS(7864), + [aux_sym_seek_statement_token1] = ACTIONS(7864), + [sym_reset_statement] = ACTIONS(7864), + [aux_sym_raise_event_statement_token1] = ACTIONS(7864), + [sym_stop_statement] = ACTIONS(7864), + [sym_beep_statement] = ACTIONS(7864), + [aux_sym_unload_statement_token1] = ACTIONS(7864), + [aux_sym_def_type_statement_token1] = ACTIONS(7864), + [aux_sym_def_type_statement_token2] = ACTIONS(7864), + [aux_sym_def_type_statement_token3] = ACTIONS(7864), + [aux_sym_def_type_statement_token4] = ACTIONS(7864), + [aux_sym_def_type_statement_token5] = ACTIONS(7864), + [aux_sym_def_type_statement_token6] = ACTIONS(7864), + [aux_sym_def_type_statement_token7] = ACTIONS(7864), + [aux_sym_def_type_statement_token8] = ACTIONS(7864), + [aux_sym_def_type_statement_token9] = ACTIONS(7864), + [aux_sym_def_type_statement_token10] = ACTIONS(7864), + [aux_sym_def_type_statement_token11] = ACTIONS(7864), + [aux_sym_def_type_statement_token12] = ACTIONS(7864), + [aux_sym_def_type_statement_token13] = ACTIONS(7864), + [aux_sym_def_type_statement_token14] = ACTIONS(7864), + [aux_sym_call_statement_token1] = ACTIONS(7864), + [sym__ambiguous_call_statement] = ACTIONS(7864), + [aux_sym_addressof_expression_token1] = ACTIONS(7864), + [aux_sym_type_of_expression_token1] = ACTIONS(7864), + [aux_sym_unary_expression_token1] = ACTIONS(7864), + [sym_string_literal] = ACTIONS(7866), + [sym_number_literal] = ACTIONS(7866), + [aux_sym_boolean_literal_token1] = ACTIONS(7864), + [aux_sym_boolean_literal_token2] = ACTIONS(7864), + [sym_nothing_literal] = ACTIONS(7864), + [sym_null_literal] = ACTIONS(7864), + [sym_empty_literal] = ACTIONS(7864), + [sym_date_literal] = ACTIONS(7866), + [anon_sym_POUND] = ACTIONS(7864), + }, + [STATE(4980)] = { + [sym_array_bounds] = STATE(5396), + [sym_identifier] = ACTIONS(8081), + [sym_newline] = ACTIONS(8083), + [anon_sym_COLON] = ACTIONS(8083), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8081), + [aux_sym_frm_property_statement_token1] = ACTIONS(8081), + [anon_sym_EQ] = ACTIONS(8083), + [anon_sym_DOT] = ACTIONS(8081), + [anon_sym_BANG] = ACTIONS(8083), + [aux_sym__attribute_identifier_token1] = ACTIONS(8081), + [aux_sym_option_statement_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8081), + [aux_sym_preprocessor_const_token1] = ACTIONS(8081), + [sym_static_modifier] = ACTIONS(8081), + [sym__dim_keyword] = ACTIONS(8081), + [sym__redim_keyword] = ACTIONS(8081), + [aux_sym_get_accessor_token1] = ACTIONS(8081), + [aux_sym_set_accessor_token1] = ACTIONS(8081), + [anon_sym_COMMA] = ACTIONS(8083), + [aux_sym_const_declaration_token1] = ACTIONS(8081), + [anon_sym_LPAREN] = ACTIONS(10054), + [aux_sym_as_type_clause_token2] = ACTIONS(8081), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8081), + [aux_sym_visibility_token1] = ACTIONS(8081), + [aux_sym_visibility_token2] = ACTIONS(8081), + [aux_sym_elseif_fragment_token1] = ACTIONS(8081), + [aux_sym_else_fragment_token1] = ACTIONS(8081), + [aux_sym_select_statement_token1] = ACTIONS(8081), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8081), + [aux_sym__for_header_token1] = ACTIONS(8081), + [aux_sym_do_statement_token1] = ACTIONS(8081), + [aux_sym_do_condition_token1] = ACTIONS(8081), + [aux_sym_with_statement_token1] = ACTIONS(8081), + [aux_sym_exit_statement_token1] = ACTIONS(8081), + [sym_end_statement] = ACTIONS(8083), + [aux_sym_on_goto_statement_token1] = ACTIONS(8081), + [aux_sym_on_goto_statement_token2] = ACTIONS(8081), + [aux_sym_on_error_statement_token2] = ACTIONS(8081), + [sym__ambiguous_redim_statement] = ACTIONS(8083), + [aux_sym_erase_statement_token1] = ACTIONS(8081), + [aux_sym_open_statement_token1] = ACTIONS(8081), + [aux_sym_file_mode_token2] = ACTIONS(8081), + [aux_sym_file_access_token2] = ACTIONS(8081), + [aux_sym_file_lock_token2] = ACTIONS(8081), + [aux_sym_print_statement_token1] = ACTIONS(8081), + [anon_sym_PLUS] = ACTIONS(8083), + [anon_sym_DASH] = ACTIONS(8081), + [anon_sym_QMARK] = ACTIONS(8083), + [aux_sym_close_statement_token1] = ACTIONS(8081), + [aux_sym_put_statement_token1] = ACTIONS(8081), + [aux_sym_unlock_statement_token1] = ACTIONS(8081), + [aux_sym_seek_statement_token1] = ACTIONS(8081), + [sym_reset_statement] = ACTIONS(8081), + [aux_sym_raise_event_statement_token1] = ACTIONS(8081), + [sym_stop_statement] = ACTIONS(8081), + [sym_beep_statement] = ACTIONS(8081), + [aux_sym_unload_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token2] = ACTIONS(8081), + [aux_sym_def_type_statement_token3] = ACTIONS(8081), + [aux_sym_def_type_statement_token4] = ACTIONS(8081), + [aux_sym_def_type_statement_token5] = ACTIONS(8081), + [aux_sym_def_type_statement_token6] = ACTIONS(8081), + [aux_sym_def_type_statement_token7] = ACTIONS(8081), + [aux_sym_def_type_statement_token8] = ACTIONS(8081), + [aux_sym_def_type_statement_token9] = ACTIONS(8081), + [aux_sym_def_type_statement_token10] = ACTIONS(8081), + [aux_sym_def_type_statement_token11] = ACTIONS(8081), + [aux_sym_def_type_statement_token12] = ACTIONS(8081), + [aux_sym_def_type_statement_token13] = ACTIONS(8081), + [aux_sym_def_type_statement_token14] = ACTIONS(8081), + [aux_sym_call_statement_token1] = ACTIONS(8081), + [sym__ambiguous_call_statement] = ACTIONS(8081), + [aux_sym_addressof_expression_token1] = ACTIONS(8081), + [aux_sym_type_of_expression_token1] = ACTIONS(8081), + [aux_sym_unary_expression_token1] = ACTIONS(8081), + [sym_string_literal] = ACTIONS(8083), + [sym_number_literal] = ACTIONS(8083), + [aux_sym_boolean_literal_token1] = ACTIONS(8081), + [aux_sym_boolean_literal_token2] = ACTIONS(8081), + [sym_nothing_literal] = ACTIONS(8081), + [sym_null_literal] = ACTIONS(8081), + [sym_empty_literal] = ACTIONS(8081), + [sym_date_literal] = ACTIONS(8083), + [anon_sym_POUND] = ACTIONS(8081), + }, + [STATE(4981)] = { + [sym_identifier] = ACTIONS(8680), + [sym_newline] = ACTIONS(8682), + [anon_sym_COLON] = ACTIONS(8682), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8680), + [aux_sym_frm_property_statement_token1] = ACTIONS(8680), + [anon_sym_DOT] = ACTIONS(8680), + [anon_sym_BANG] = ACTIONS(8682), + [aux_sym__attribute_identifier_token1] = ACTIONS(8680), + [aux_sym_option_statement_token3] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8680), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8680), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8680), + [aux_sym_preprocessor_const_token1] = ACTIONS(8680), + [sym_static_modifier] = ACTIONS(8680), + [sym__dim_keyword] = ACTIONS(8680), + [sym__redim_keyword] = ACTIONS(8680), + [aux_sym_get_accessor_token1] = ACTIONS(8680), + [aux_sym_set_accessor_token1] = ACTIONS(8680), + [anon_sym_COMMA] = ACTIONS(8682), + [aux_sym_const_declaration_token1] = ACTIONS(8680), + [anon_sym_LPAREN] = ACTIONS(8682), + [aux_sym_as_type_clause_token2] = ACTIONS(8680), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8680), + [aux_sym_visibility_token1] = ACTIONS(8680), + [aux_sym_visibility_token2] = ACTIONS(8680), + [aux_sym_elseif_fragment_token1] = ACTIONS(8680), + [aux_sym_else_fragment_token1] = ACTIONS(8680), + [aux_sym_select_statement_token1] = ACTIONS(8680), + [aux_sym__for_header_token1] = ACTIONS(8680), + [aux_sym_do_statement_token1] = ACTIONS(8680), + [aux_sym_do_condition_token1] = ACTIONS(8680), + [aux_sym_with_statement_token1] = ACTIONS(8680), + [aux_sym_exit_statement_token1] = ACTIONS(8680), + [sym_end_statement] = ACTIONS(8682), + [aux_sym_on_goto_statement_token1] = ACTIONS(8680), + [aux_sym_on_goto_statement_token2] = ACTIONS(8680), + [aux_sym_on_error_statement_token2] = ACTIONS(8680), + [sym__ambiguous_redim_statement] = ACTIONS(8682), + [aux_sym_erase_statement_token1] = ACTIONS(8680), + [aux_sym_open_statement_token1] = ACTIONS(8680), + [aux_sym_file_mode_token2] = ACTIONS(8680), + [aux_sym_file_access_token2] = ACTIONS(8680), + [aux_sym_file_lock_token2] = ACTIONS(8680), + [aux_sym_print_statement_token1] = ACTIONS(8680), + [anon_sym_PLUS] = ACTIONS(8682), + [anon_sym_DASH] = ACTIONS(8680), + [anon_sym_QMARK] = ACTIONS(8682), + [aux_sym_close_statement_token1] = ACTIONS(8680), + [aux_sym_put_statement_token1] = ACTIONS(8680), + [aux_sym_unlock_statement_token1] = ACTIONS(8680), + [aux_sym_seek_statement_token1] = ACTIONS(8680), + [sym_reset_statement] = ACTIONS(8680), + [aux_sym_raise_event_statement_token1] = ACTIONS(8680), + [sym_stop_statement] = ACTIONS(8680), + [sym_beep_statement] = ACTIONS(8680), + [aux_sym_unload_statement_token1] = ACTIONS(8680), + [aux_sym_def_type_statement_token1] = ACTIONS(8680), + [aux_sym_def_type_statement_token2] = ACTIONS(8680), + [aux_sym_def_type_statement_token3] = ACTIONS(8680), + [aux_sym_def_type_statement_token4] = ACTIONS(8680), + [aux_sym_def_type_statement_token5] = ACTIONS(8680), + [aux_sym_def_type_statement_token6] = ACTIONS(8680), + [aux_sym_def_type_statement_token7] = ACTIONS(8680), + [aux_sym_def_type_statement_token8] = ACTIONS(8680), + [aux_sym_def_type_statement_token9] = ACTIONS(8680), + [aux_sym_def_type_statement_token10] = ACTIONS(8680), + [aux_sym_def_type_statement_token11] = ACTIONS(8680), + [aux_sym_def_type_statement_token12] = ACTIONS(8680), + [aux_sym_def_type_statement_token13] = ACTIONS(8680), + [aux_sym_def_type_statement_token14] = ACTIONS(8680), + [aux_sym_call_statement_token1] = ACTIONS(8680), + [sym__ambiguous_call_statement] = ACTIONS(8680), + [aux_sym_addressof_expression_token1] = ACTIONS(8680), + [aux_sym_type_of_expression_token1] = ACTIONS(8680), + [aux_sym_unary_expression_token1] = ACTIONS(8680), + [sym_string_literal] = ACTIONS(8682), + [sym_number_literal] = ACTIONS(8682), + [aux_sym_boolean_literal_token1] = ACTIONS(8680), + [aux_sym_boolean_literal_token2] = ACTIONS(8680), + [sym_nothing_literal] = ACTIONS(8680), + [sym_null_literal] = ACTIONS(8680), + [sym_empty_literal] = ACTIONS(8680), + [sym_date_literal] = ACTIONS(8682), + [anon_sym_POUND] = ACTIONS(8680), + }, + [STATE(4982)] = { + [sym_identifier] = ACTIONS(8533), + [sym_newline] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(8535), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8533), + [aux_sym_frm_property_statement_token1] = ACTIONS(8533), + [anon_sym_DOT] = ACTIONS(8533), + [anon_sym_BANG] = ACTIONS(8535), + [aux_sym__attribute_identifier_token1] = ACTIONS(8533), + [aux_sym_option_statement_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8533), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8533), + [aux_sym_preprocessor_const_token1] = ACTIONS(8533), + [sym_static_modifier] = ACTIONS(8533), + [sym__dim_keyword] = ACTIONS(8533), + [sym__redim_keyword] = ACTIONS(8533), + [aux_sym_get_accessor_token1] = ACTIONS(8533), + [aux_sym_set_accessor_token1] = ACTIONS(8533), + [anon_sym_COMMA] = ACTIONS(8535), + [aux_sym_const_declaration_token1] = ACTIONS(8533), + [anon_sym_LPAREN] = ACTIONS(8535), + [aux_sym_as_type_clause_token2] = ACTIONS(8533), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8533), + [aux_sym_visibility_token1] = ACTIONS(8533), + [aux_sym_visibility_token2] = ACTIONS(8533), + [aux_sym_elseif_fragment_token1] = ACTIONS(8533), + [aux_sym_else_fragment_token1] = ACTIONS(8533), + [aux_sym_select_statement_token1] = ACTIONS(8533), + [aux_sym__for_header_token1] = ACTIONS(8533), + [aux_sym_do_statement_token1] = ACTIONS(8533), + [aux_sym_do_condition_token1] = ACTIONS(8533), + [aux_sym_with_statement_token1] = ACTIONS(8533), + [aux_sym_exit_statement_token1] = ACTIONS(8533), + [sym_end_statement] = ACTIONS(8535), + [aux_sym_on_goto_statement_token1] = ACTIONS(8533), + [aux_sym_on_goto_statement_token2] = ACTIONS(8533), + [aux_sym_on_error_statement_token2] = ACTIONS(8533), + [sym__ambiguous_redim_statement] = ACTIONS(8535), + [aux_sym_erase_statement_token1] = ACTIONS(8533), + [aux_sym_open_statement_token1] = ACTIONS(8533), + [aux_sym_file_mode_token2] = ACTIONS(8533), + [aux_sym_file_access_token2] = ACTIONS(8533), + [aux_sym_file_lock_token2] = ACTIONS(8533), + [aux_sym_print_statement_token1] = ACTIONS(8533), + [anon_sym_PLUS] = ACTIONS(8535), + [anon_sym_DASH] = ACTIONS(8533), + [anon_sym_QMARK] = ACTIONS(8535), + [aux_sym_close_statement_token1] = ACTIONS(8533), + [aux_sym_put_statement_token1] = ACTIONS(8533), + [aux_sym_unlock_statement_token1] = ACTIONS(8533), + [aux_sym_seek_statement_token1] = ACTIONS(8533), + [sym_reset_statement] = ACTIONS(8533), + [aux_sym_raise_event_statement_token1] = ACTIONS(8533), + [sym_stop_statement] = ACTIONS(8533), + [sym_beep_statement] = ACTIONS(8533), + [aux_sym_unload_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token2] = ACTIONS(8533), + [aux_sym_def_type_statement_token3] = ACTIONS(8533), + [aux_sym_def_type_statement_token4] = ACTIONS(8533), + [aux_sym_def_type_statement_token5] = ACTIONS(8533), + [aux_sym_def_type_statement_token6] = ACTIONS(8533), + [aux_sym_def_type_statement_token7] = ACTIONS(8533), + [aux_sym_def_type_statement_token8] = ACTIONS(8533), + [aux_sym_def_type_statement_token9] = ACTIONS(8533), + [aux_sym_def_type_statement_token10] = ACTIONS(8533), + [aux_sym_def_type_statement_token11] = ACTIONS(8533), + [aux_sym_def_type_statement_token12] = ACTIONS(8533), + [aux_sym_def_type_statement_token13] = ACTIONS(8533), + [aux_sym_def_type_statement_token14] = ACTIONS(8533), + [aux_sym_call_statement_token1] = ACTIONS(8533), + [sym__ambiguous_call_statement] = ACTIONS(8533), + [aux_sym_addressof_expression_token1] = ACTIONS(8533), + [aux_sym_type_of_expression_token1] = ACTIONS(8533), + [aux_sym_unary_expression_token1] = ACTIONS(8533), + [sym_string_literal] = ACTIONS(8535), + [sym_number_literal] = ACTIONS(8535), + [aux_sym_boolean_literal_token1] = ACTIONS(8533), + [aux_sym_boolean_literal_token2] = ACTIONS(8533), + [sym_nothing_literal] = ACTIONS(8533), + [sym_null_literal] = ACTIONS(8533), + [sym_empty_literal] = ACTIONS(8533), + [sym_date_literal] = ACTIONS(8535), + [anon_sym_POUND] = ACTIONS(8533), + }, + [STATE(4983)] = { + [sym_identifier] = ACTIONS(8109), + [sym_newline] = ACTIONS(8111), + [anon_sym_COLON] = ACTIONS(8111), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8109), + [aux_sym_frm_property_statement_token1] = ACTIONS(8109), + [anon_sym_DOT] = ACTIONS(8109), + [anon_sym_BANG] = ACTIONS(8111), + [aux_sym__attribute_identifier_token1] = ACTIONS(8109), + [aux_sym_option_statement_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8109), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8109), + [aux_sym_preprocessor_const_token1] = ACTIONS(8109), + [sym_static_modifier] = ACTIONS(8109), + [sym__dim_keyword] = ACTIONS(8109), + [sym__redim_keyword] = ACTIONS(8109), + [aux_sym_get_accessor_token1] = ACTIONS(8109), + [aux_sym_set_accessor_token1] = ACTIONS(8109), + [aux_sym_const_declaration_token1] = ACTIONS(8109), + [anon_sym_LPAREN] = ACTIONS(8111), + [aux_sym_as_type_clause_token2] = ACTIONS(8109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8109), + [aux_sym_visibility_token1] = ACTIONS(8109), + [aux_sym_visibility_token2] = ACTIONS(8109), + [aux_sym_elseif_fragment_token1] = ACTIONS(8109), + [aux_sym_else_fragment_token1] = ACTIONS(8109), + [aux_sym_select_statement_token1] = ACTIONS(8109), + [aux_sym__for_header_token1] = ACTIONS(8109), + [aux_sym_do_statement_token1] = ACTIONS(8109), + [aux_sym_do_condition_token1] = ACTIONS(8109), + [aux_sym_with_statement_token1] = ACTIONS(8109), + [aux_sym_exit_statement_token1] = ACTIONS(8109), + [sym_end_statement] = ACTIONS(8111), + [aux_sym_on_goto_statement_token1] = ACTIONS(8109), + [aux_sym_on_goto_statement_token2] = ACTIONS(8109), + [aux_sym_on_error_statement_token2] = ACTIONS(8109), + [sym__ambiguous_redim_statement] = ACTIONS(8111), + [aux_sym_erase_statement_token1] = ACTIONS(8109), + [aux_sym_open_statement_token1] = ACTIONS(8109), + [aux_sym_file_mode_token2] = ACTIONS(8109), + [aux_sym_file_access_token2] = ACTIONS(8109), + [aux_sym_file_lock_token2] = ACTIONS(8109), + [aux_sym_print_statement_token1] = ACTIONS(8109), + [anon_sym_PLUS] = ACTIONS(8111), + [anon_sym_DASH] = ACTIONS(8109), + [anon_sym_SEMI] = ACTIONS(8111), + [anon_sym_QMARK] = ACTIONS(8111), + [aux_sym_close_statement_token1] = ACTIONS(8109), + [aux_sym_put_statement_token1] = ACTIONS(8109), + [aux_sym_unlock_statement_token1] = ACTIONS(8109), + [aux_sym_seek_statement_token1] = ACTIONS(8109), + [sym_reset_statement] = ACTIONS(8109), + [aux_sym_raise_event_statement_token1] = ACTIONS(8109), + [sym_stop_statement] = ACTIONS(8109), + [sym_beep_statement] = ACTIONS(8109), + [aux_sym_unload_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token2] = ACTIONS(8109), + [aux_sym_def_type_statement_token3] = ACTIONS(8109), + [aux_sym_def_type_statement_token4] = ACTIONS(8109), + [aux_sym_def_type_statement_token5] = ACTIONS(8109), + [aux_sym_def_type_statement_token6] = ACTIONS(8109), + [aux_sym_def_type_statement_token7] = ACTIONS(8109), + [aux_sym_def_type_statement_token8] = ACTIONS(8109), + [aux_sym_def_type_statement_token9] = ACTIONS(8109), + [aux_sym_def_type_statement_token10] = ACTIONS(8109), + [aux_sym_def_type_statement_token11] = ACTIONS(8109), + [aux_sym_def_type_statement_token12] = ACTIONS(8109), + [aux_sym_def_type_statement_token13] = ACTIONS(8109), + [aux_sym_def_type_statement_token14] = ACTIONS(8109), + [aux_sym_call_statement_token1] = ACTIONS(8109), + [sym__ambiguous_call_statement] = ACTIONS(8109), + [aux_sym_addressof_expression_token1] = ACTIONS(8109), + [aux_sym_type_of_expression_token1] = ACTIONS(8109), + [aux_sym_unary_expression_token1] = ACTIONS(8109), + [sym_string_literal] = ACTIONS(8111), + [sym_number_literal] = ACTIONS(8111), + [aux_sym_boolean_literal_token1] = ACTIONS(8109), + [aux_sym_boolean_literal_token2] = ACTIONS(8109), + [sym_nothing_literal] = ACTIONS(8109), + [sym_null_literal] = ACTIONS(8109), + [sym_empty_literal] = ACTIONS(8109), + [sym_date_literal] = ACTIONS(8111), + [anon_sym_POUND] = ACTIONS(8109), + }, + [STATE(4984)] = { + [sym_array_bounds] = STATE(5369), + [sym_identifier] = ACTIONS(8070), + [sym_newline] = ACTIONS(8072), + [anon_sym_COLON] = ACTIONS(8072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8070), + [aux_sym_frm_property_statement_token1] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(8072), + [anon_sym_DOT] = ACTIONS(8070), + [anon_sym_BANG] = ACTIONS(8072), + [aux_sym__attribute_identifier_token1] = ACTIONS(8070), + [aux_sym_option_statement_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8070), + [aux_sym_preprocessor_const_token1] = ACTIONS(8070), + [sym_static_modifier] = ACTIONS(8070), + [sym__dim_keyword] = ACTIONS(8070), + [sym__redim_keyword] = ACTIONS(8070), + [aux_sym_get_accessor_token1] = ACTIONS(8070), + [aux_sym_set_accessor_token1] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [aux_sym_const_declaration_token1] = ACTIONS(8070), + [anon_sym_LPAREN] = ACTIONS(10092), + [aux_sym_as_type_clause_token2] = ACTIONS(8070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8070), + [aux_sym_visibility_token1] = ACTIONS(8070), + [aux_sym_visibility_token2] = ACTIONS(8070), + [aux_sym_elseif_fragment_token1] = ACTIONS(8070), + [aux_sym_else_fragment_token1] = ACTIONS(8070), + [aux_sym_select_statement_token1] = ACTIONS(8070), + [aux_sym_select_statement_token2] = ACTIONS(8070), + [aux_sym__for_header_token1] = ACTIONS(8070), + [aux_sym_do_statement_token1] = ACTIONS(8070), + [aux_sym_do_condition_token1] = ACTIONS(8070), + [aux_sym_with_statement_token1] = ACTIONS(8070), + [aux_sym_exit_statement_token1] = ACTIONS(8070), + [sym_end_statement] = ACTIONS(8072), + [aux_sym_on_goto_statement_token1] = ACTIONS(8070), + [aux_sym_on_goto_statement_token2] = ACTIONS(8070), + [aux_sym_on_error_statement_token2] = ACTIONS(8070), + [sym__ambiguous_redim_statement] = ACTIONS(8072), + [aux_sym_erase_statement_token1] = ACTIONS(8070), + [aux_sym_open_statement_token1] = ACTIONS(8070), + [aux_sym_file_mode_token2] = ACTIONS(8070), + [aux_sym_file_access_token2] = ACTIONS(8070), + [aux_sym_file_lock_token2] = ACTIONS(8070), + [aux_sym_print_statement_token1] = ACTIONS(8070), + [anon_sym_PLUS] = ACTIONS(8072), + [anon_sym_DASH] = ACTIONS(8070), + [anon_sym_QMARK] = ACTIONS(8072), + [aux_sym_close_statement_token1] = ACTIONS(8070), + [aux_sym_put_statement_token1] = ACTIONS(8070), + [aux_sym_unlock_statement_token1] = ACTIONS(8070), + [aux_sym_seek_statement_token1] = ACTIONS(8070), + [sym_reset_statement] = ACTIONS(8070), + [aux_sym_raise_event_statement_token1] = ACTIONS(8070), + [sym_stop_statement] = ACTIONS(8070), + [sym_beep_statement] = ACTIONS(8070), + [aux_sym_unload_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token2] = ACTIONS(8070), + [aux_sym_def_type_statement_token3] = ACTIONS(8070), + [aux_sym_def_type_statement_token4] = ACTIONS(8070), + [aux_sym_def_type_statement_token5] = ACTIONS(8070), + [aux_sym_def_type_statement_token6] = ACTIONS(8070), + [aux_sym_def_type_statement_token7] = ACTIONS(8070), + [aux_sym_def_type_statement_token8] = ACTIONS(8070), + [aux_sym_def_type_statement_token9] = ACTIONS(8070), + [aux_sym_def_type_statement_token10] = ACTIONS(8070), + [aux_sym_def_type_statement_token11] = ACTIONS(8070), + [aux_sym_def_type_statement_token12] = ACTIONS(8070), + [aux_sym_def_type_statement_token13] = ACTIONS(8070), + [aux_sym_def_type_statement_token14] = ACTIONS(8070), + [aux_sym_call_statement_token1] = ACTIONS(8070), + [sym__ambiguous_call_statement] = ACTIONS(8070), + [aux_sym_addressof_expression_token1] = ACTIONS(8070), + [aux_sym_type_of_expression_token1] = ACTIONS(8070), + [aux_sym_unary_expression_token1] = ACTIONS(8070), + [sym_string_literal] = ACTIONS(8072), + [sym_number_literal] = ACTIONS(8072), + [aux_sym_boolean_literal_token1] = ACTIONS(8070), + [aux_sym_boolean_literal_token2] = ACTIONS(8070), + [sym_nothing_literal] = ACTIONS(8070), + [sym_null_literal] = ACTIONS(8070), + [sym_empty_literal] = ACTIONS(8070), + [sym_date_literal] = ACTIONS(8072), + [anon_sym_POUND] = ACTIONS(8070), + }, + [STATE(4985)] = { + [sym_identifier] = ACTIONS(8974), + [sym_newline] = ACTIONS(8976), + [anon_sym_COLON] = ACTIONS(8976), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8974), + [aux_sym_frm_property_statement_token1] = ACTIONS(8974), + [anon_sym_DOT] = ACTIONS(8974), + [anon_sym_BANG] = ACTIONS(8976), + [aux_sym__attribute_identifier_token1] = ACTIONS(8974), + [aux_sym_option_statement_token3] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8974), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8974), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8974), + [aux_sym_preprocessor_const_token1] = ACTIONS(8974), + [sym_static_modifier] = ACTIONS(8974), + [sym__dim_keyword] = ACTIONS(8974), + [sym__redim_keyword] = ACTIONS(8974), + [aux_sym_get_accessor_token1] = ACTIONS(8974), + [aux_sym_set_accessor_token1] = ACTIONS(8974), + [anon_sym_COMMA] = ACTIONS(10358), + [aux_sym_const_declaration_token1] = ACTIONS(8974), + [anon_sym_LPAREN] = ACTIONS(8976), + [aux_sym_as_type_clause_token2] = ACTIONS(8974), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8974), + [aux_sym_visibility_token1] = ACTIONS(8974), + [aux_sym_visibility_token2] = ACTIONS(8974), + [aux_sym_elseif_fragment_token1] = ACTIONS(8974), + [aux_sym_else_fragment_token1] = ACTIONS(8974), + [aux_sym_select_statement_token1] = ACTIONS(8974), + [aux_sym__for_header_token1] = ACTIONS(8974), + [aux_sym_do_statement_token1] = ACTIONS(8974), + [aux_sym_do_condition_token1] = ACTIONS(8974), + [aux_sym_with_statement_token1] = ACTIONS(8974), + [aux_sym_exit_statement_token1] = ACTIONS(8974), + [sym_end_statement] = ACTIONS(8976), + [aux_sym_on_goto_statement_token1] = ACTIONS(8974), + [aux_sym_on_goto_statement_token2] = ACTIONS(8974), + [aux_sym_on_error_statement_token2] = ACTIONS(8974), + [sym__ambiguous_redim_statement] = ACTIONS(8976), + [aux_sym_erase_statement_token1] = ACTIONS(8974), + [aux_sym_open_statement_token1] = ACTIONS(8974), + [aux_sym_file_mode_token2] = ACTIONS(8974), + [aux_sym_file_access_token2] = ACTIONS(8974), + [aux_sym_file_lock_token2] = ACTIONS(8974), + [aux_sym_print_statement_token1] = ACTIONS(8974), + [anon_sym_PLUS] = ACTIONS(8976), + [anon_sym_DASH] = ACTIONS(8974), + [anon_sym_QMARK] = ACTIONS(8976), + [aux_sym_close_statement_token1] = ACTIONS(8974), + [aux_sym_put_statement_token1] = ACTIONS(8974), + [aux_sym_unlock_statement_token1] = ACTIONS(8974), + [aux_sym_seek_statement_token1] = ACTIONS(8974), + [sym_reset_statement] = ACTIONS(8974), + [aux_sym_raise_event_statement_token1] = ACTIONS(8974), + [sym_stop_statement] = ACTIONS(8974), + [sym_beep_statement] = ACTIONS(8974), + [aux_sym_unload_statement_token1] = ACTIONS(8974), + [aux_sym_def_type_statement_token1] = ACTIONS(8974), + [aux_sym_def_type_statement_token2] = ACTIONS(8974), + [aux_sym_def_type_statement_token3] = ACTIONS(8974), + [aux_sym_def_type_statement_token4] = ACTIONS(8974), + [aux_sym_def_type_statement_token5] = ACTIONS(8974), + [aux_sym_def_type_statement_token6] = ACTIONS(8974), + [aux_sym_def_type_statement_token7] = ACTIONS(8974), + [aux_sym_def_type_statement_token8] = ACTIONS(8974), + [aux_sym_def_type_statement_token9] = ACTIONS(8974), + [aux_sym_def_type_statement_token10] = ACTIONS(8974), + [aux_sym_def_type_statement_token11] = ACTIONS(8974), + [aux_sym_def_type_statement_token12] = ACTIONS(8974), + [aux_sym_def_type_statement_token13] = ACTIONS(8974), + [aux_sym_def_type_statement_token14] = ACTIONS(8974), + [aux_sym_call_statement_token1] = ACTIONS(8974), + [sym__ambiguous_call_statement] = ACTIONS(8974), + [aux_sym_addressof_expression_token1] = ACTIONS(8974), + [aux_sym_type_of_expression_token1] = ACTIONS(8974), + [aux_sym_unary_expression_token1] = ACTIONS(8974), + [sym_string_literal] = ACTIONS(8976), + [sym_number_literal] = ACTIONS(8976), + [aux_sym_boolean_literal_token1] = ACTIONS(8974), + [aux_sym_boolean_literal_token2] = ACTIONS(8974), + [sym_nothing_literal] = ACTIONS(8974), + [sym_null_literal] = ACTIONS(8974), + [sym_empty_literal] = ACTIONS(8974), + [sym_date_literal] = ACTIONS(8976), + [anon_sym_POUND] = ACTIONS(8974), + }, + [STATE(4986)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(4987), + [sym_identifier] = ACTIONS(8692), + [sym_newline] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(10349), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8692), + [aux_sym_frm_property_statement_token1] = ACTIONS(8692), + [anon_sym_DOT] = ACTIONS(8692), + [anon_sym_BANG] = ACTIONS(8694), + [aux_sym__attribute_identifier_token1] = ACTIONS(8692), + [aux_sym_option_statement_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8692), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8692), + [aux_sym_preprocessor_const_token1] = ACTIONS(8692), + [sym_static_modifier] = ACTIONS(8692), + [sym__dim_keyword] = ACTIONS(8692), + [sym__redim_keyword] = ACTIONS(8692), + [aux_sym_get_accessor_token1] = ACTIONS(8692), + [aux_sym_set_accessor_token1] = ACTIONS(8692), + [aux_sym_const_declaration_token1] = ACTIONS(8692), + [anon_sym_LPAREN] = ACTIONS(8694), + [aux_sym_as_type_clause_token2] = ACTIONS(8692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8692), + [aux_sym_visibility_token1] = ACTIONS(8692), + [aux_sym_visibility_token2] = ACTIONS(8692), + [aux_sym_elseif_fragment_token1] = ACTIONS(8692), + [aux_sym_else_fragment_token1] = ACTIONS(10360), + [aux_sym_select_statement_token1] = ACTIONS(8692), + [aux_sym__for_header_token1] = ACTIONS(8692), + [aux_sym_do_statement_token1] = ACTIONS(8692), + [aux_sym_do_condition_token1] = ACTIONS(8692), + [aux_sym_with_statement_token1] = ACTIONS(8692), + [aux_sym_exit_statement_token1] = ACTIONS(8692), + [sym_end_statement] = ACTIONS(8694), + [aux_sym_on_goto_statement_token1] = ACTIONS(8692), + [aux_sym_on_goto_statement_token2] = ACTIONS(8692), + [aux_sym_on_error_statement_token2] = ACTIONS(8692), + [sym__ambiguous_redim_statement] = ACTIONS(8694), + [aux_sym_erase_statement_token1] = ACTIONS(8692), + [aux_sym_open_statement_token1] = ACTIONS(8692), + [aux_sym_file_mode_token2] = ACTIONS(8692), + [aux_sym_file_access_token2] = ACTIONS(8692), + [aux_sym_file_lock_token2] = ACTIONS(8692), + [aux_sym_print_statement_token1] = ACTIONS(8692), + [anon_sym_PLUS] = ACTIONS(8694), + [anon_sym_DASH] = ACTIONS(8692), + [anon_sym_QMARK] = ACTIONS(8694), + [aux_sym_close_statement_token1] = ACTIONS(8692), + [aux_sym_put_statement_token1] = ACTIONS(8692), + [aux_sym_unlock_statement_token1] = ACTIONS(8692), + [aux_sym_seek_statement_token1] = ACTIONS(8692), + [sym_reset_statement] = ACTIONS(8692), + [aux_sym_raise_event_statement_token1] = ACTIONS(8692), + [sym_stop_statement] = ACTIONS(8692), + [sym_beep_statement] = ACTIONS(8692), + [aux_sym_unload_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token2] = ACTIONS(8692), + [aux_sym_def_type_statement_token3] = ACTIONS(8692), + [aux_sym_def_type_statement_token4] = ACTIONS(8692), + [aux_sym_def_type_statement_token5] = ACTIONS(8692), + [aux_sym_def_type_statement_token6] = ACTIONS(8692), + [aux_sym_def_type_statement_token7] = ACTIONS(8692), + [aux_sym_def_type_statement_token8] = ACTIONS(8692), + [aux_sym_def_type_statement_token9] = ACTIONS(8692), + [aux_sym_def_type_statement_token10] = ACTIONS(8692), + [aux_sym_def_type_statement_token11] = ACTIONS(8692), + [aux_sym_def_type_statement_token12] = ACTIONS(8692), + [aux_sym_def_type_statement_token13] = ACTIONS(8692), + [aux_sym_def_type_statement_token14] = ACTIONS(8692), + [aux_sym_call_statement_token1] = ACTIONS(8692), + [sym__ambiguous_call_statement] = ACTIONS(8692), + [aux_sym_addressof_expression_token1] = ACTIONS(8692), + [aux_sym_type_of_expression_token1] = ACTIONS(8692), + [aux_sym_unary_expression_token1] = ACTIONS(8692), + [sym_string_literal] = ACTIONS(8694), + [sym_number_literal] = ACTIONS(8694), + [aux_sym_boolean_literal_token1] = ACTIONS(8692), + [aux_sym_boolean_literal_token2] = ACTIONS(8692), + [sym_nothing_literal] = ACTIONS(8692), + [sym_null_literal] = ACTIONS(8692), + [sym_empty_literal] = ACTIONS(8692), + [sym_date_literal] = ACTIONS(8694), + [anon_sym_POUND] = ACTIONS(8692), + }, + [STATE(4987)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(4941), + [sym_identifier] = ACTIONS(8772), + [sym_newline] = ACTIONS(8774), + [anon_sym_COLON] = ACTIONS(8774), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8772), + [aux_sym_frm_property_statement_token1] = ACTIONS(8772), + [anon_sym_DOT] = ACTIONS(8772), + [anon_sym_BANG] = ACTIONS(8774), + [aux_sym__attribute_identifier_token1] = ACTIONS(8772), + [aux_sym_option_statement_token3] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8772), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8772), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8772), + [aux_sym_preprocessor_const_token1] = ACTIONS(8772), + [sym_static_modifier] = ACTIONS(8772), + [sym__dim_keyword] = ACTIONS(8772), + [sym__redim_keyword] = ACTIONS(8772), + [aux_sym_get_accessor_token1] = ACTIONS(8772), + [aux_sym_set_accessor_token1] = ACTIONS(8772), + [aux_sym_const_declaration_token1] = ACTIONS(8772), + [anon_sym_LPAREN] = ACTIONS(8774), + [aux_sym_as_type_clause_token2] = ACTIONS(8772), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8772), + [aux_sym_visibility_token1] = ACTIONS(8772), + [aux_sym_visibility_token2] = ACTIONS(8772), + [aux_sym_elseif_fragment_token1] = ACTIONS(8772), + [aux_sym_else_fragment_token1] = ACTIONS(8772), + [aux_sym_select_statement_token1] = ACTIONS(8772), + [aux_sym__for_header_token1] = ACTIONS(8772), + [aux_sym_do_statement_token1] = ACTIONS(8772), + [aux_sym_do_condition_token1] = ACTIONS(8772), + [aux_sym_with_statement_token1] = ACTIONS(8772), + [aux_sym_exit_statement_token1] = ACTIONS(8772), + [sym_end_statement] = ACTIONS(8774), + [aux_sym_on_goto_statement_token1] = ACTIONS(8772), + [aux_sym_on_goto_statement_token2] = ACTIONS(8772), + [aux_sym_on_error_statement_token2] = ACTIONS(8772), + [sym__ambiguous_redim_statement] = ACTIONS(8774), + [aux_sym_erase_statement_token1] = ACTIONS(8772), + [aux_sym_open_statement_token1] = ACTIONS(8772), + [aux_sym_file_mode_token2] = ACTIONS(8772), + [aux_sym_file_access_token2] = ACTIONS(8772), + [aux_sym_file_lock_token2] = ACTIONS(8772), + [aux_sym_print_statement_token1] = ACTIONS(8772), + [anon_sym_PLUS] = ACTIONS(8774), + [anon_sym_DASH] = ACTIONS(8772), + [anon_sym_QMARK] = ACTIONS(8774), + [aux_sym_close_statement_token1] = ACTIONS(8772), + [aux_sym_put_statement_token1] = ACTIONS(8772), + [aux_sym_unlock_statement_token1] = ACTIONS(8772), + [aux_sym_seek_statement_token1] = ACTIONS(8772), + [sym_reset_statement] = ACTIONS(8772), + [aux_sym_raise_event_statement_token1] = ACTIONS(8772), + [sym_stop_statement] = ACTIONS(8772), + [sym_beep_statement] = ACTIONS(8772), + [aux_sym_unload_statement_token1] = ACTIONS(8772), + [aux_sym_def_type_statement_token1] = ACTIONS(8772), + [aux_sym_def_type_statement_token2] = ACTIONS(8772), + [aux_sym_def_type_statement_token3] = ACTIONS(8772), + [aux_sym_def_type_statement_token4] = ACTIONS(8772), + [aux_sym_def_type_statement_token5] = ACTIONS(8772), + [aux_sym_def_type_statement_token6] = ACTIONS(8772), + [aux_sym_def_type_statement_token7] = ACTIONS(8772), + [aux_sym_def_type_statement_token8] = ACTIONS(8772), + [aux_sym_def_type_statement_token9] = ACTIONS(8772), + [aux_sym_def_type_statement_token10] = ACTIONS(8772), + [aux_sym_def_type_statement_token11] = ACTIONS(8772), + [aux_sym_def_type_statement_token12] = ACTIONS(8772), + [aux_sym_def_type_statement_token13] = ACTIONS(8772), + [aux_sym_def_type_statement_token14] = ACTIONS(8772), + [aux_sym_call_statement_token1] = ACTIONS(8772), + [sym__ambiguous_call_statement] = ACTIONS(8772), + [aux_sym_addressof_expression_token1] = ACTIONS(8772), + [aux_sym_type_of_expression_token1] = ACTIONS(8772), + [aux_sym_unary_expression_token1] = ACTIONS(8772), + [sym_string_literal] = ACTIONS(8774), + [sym_number_literal] = ACTIONS(8774), + [aux_sym_boolean_literal_token1] = ACTIONS(8772), + [aux_sym_boolean_literal_token2] = ACTIONS(8772), + [sym_nothing_literal] = ACTIONS(8772), + [sym_null_literal] = ACTIONS(8772), + [sym_empty_literal] = ACTIONS(8772), + [sym_date_literal] = ACTIONS(8774), + [anon_sym_POUND] = ACTIONS(8772), + }, + [STATE(4988)] = { + [sym_argument_list] = STATE(10051), + [sym_identifier] = ACTIONS(8794), + [sym_newline] = ACTIONS(8796), + [anon_sym_COLON] = ACTIONS(8796), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8794), + [aux_sym_frm_property_statement_token1] = ACTIONS(8794), + [anon_sym_DOT] = ACTIONS(8794), + [anon_sym_BANG] = ACTIONS(8796), + [aux_sym__attribute_identifier_token1] = ACTIONS(8794), + [aux_sym_option_statement_token3] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8794), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8794), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8794), + [aux_sym_preprocessor_const_token1] = ACTIONS(8794), + [sym_static_modifier] = ACTIONS(8794), + [sym__dim_keyword] = ACTIONS(8794), + [sym__redim_keyword] = ACTIONS(8794), + [aux_sym_get_accessor_token1] = ACTIONS(8794), + [aux_sym_set_accessor_token1] = ACTIONS(8794), + [aux_sym_const_declaration_token1] = ACTIONS(8794), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(8794), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8794), + [aux_sym_visibility_token1] = ACTIONS(8794), + [aux_sym_visibility_token2] = ACTIONS(8794), + [aux_sym_elseif_fragment_token1] = ACTIONS(8794), + [aux_sym_else_fragment_token1] = ACTIONS(8794), + [aux_sym_select_statement_token1] = ACTIONS(8794), + [aux_sym__for_header_token1] = ACTIONS(8794), + [aux_sym_do_statement_token1] = ACTIONS(8794), + [aux_sym_do_condition_token1] = ACTIONS(8794), + [aux_sym_with_statement_token1] = ACTIONS(8794), + [aux_sym_exit_statement_token1] = ACTIONS(8794), + [sym_end_statement] = ACTIONS(8796), + [aux_sym_on_goto_statement_token1] = ACTIONS(8794), + [aux_sym_on_goto_statement_token2] = ACTIONS(8794), + [aux_sym_on_error_statement_token2] = ACTIONS(8794), + [sym__ambiguous_redim_statement] = ACTIONS(8796), + [aux_sym_erase_statement_token1] = ACTIONS(8794), + [aux_sym_open_statement_token1] = ACTIONS(8794), + [aux_sym_file_mode_token2] = ACTIONS(8794), + [aux_sym_file_access_token2] = ACTIONS(8794), + [aux_sym_file_lock_token2] = ACTIONS(8794), + [aux_sym_print_statement_token1] = ACTIONS(8794), + [anon_sym_PLUS] = ACTIONS(8796), + [anon_sym_DASH] = ACTIONS(8794), + [anon_sym_QMARK] = ACTIONS(8796), + [aux_sym_close_statement_token1] = ACTIONS(8794), + [aux_sym_put_statement_token1] = ACTIONS(8794), + [aux_sym_unlock_statement_token1] = ACTIONS(8794), + [aux_sym_seek_statement_token1] = ACTIONS(8794), + [sym_reset_statement] = ACTIONS(8794), + [aux_sym_raise_event_statement_token1] = ACTIONS(8794), + [sym_stop_statement] = ACTIONS(8794), + [sym_beep_statement] = ACTIONS(8794), + [aux_sym_unload_statement_token1] = ACTIONS(8794), + [aux_sym_def_type_statement_token1] = ACTIONS(8794), + [aux_sym_def_type_statement_token2] = ACTIONS(8794), + [aux_sym_def_type_statement_token3] = ACTIONS(8794), + [aux_sym_def_type_statement_token4] = ACTIONS(8794), + [aux_sym_def_type_statement_token5] = ACTIONS(8794), + [aux_sym_def_type_statement_token6] = ACTIONS(8794), + [aux_sym_def_type_statement_token7] = ACTIONS(8794), + [aux_sym_def_type_statement_token8] = ACTIONS(8794), + [aux_sym_def_type_statement_token9] = ACTIONS(8794), + [aux_sym_def_type_statement_token10] = ACTIONS(8794), + [aux_sym_def_type_statement_token11] = ACTIONS(8794), + [aux_sym_def_type_statement_token12] = ACTIONS(8794), + [aux_sym_def_type_statement_token13] = ACTIONS(8794), + [aux_sym_def_type_statement_token14] = ACTIONS(8794), + [aux_sym_call_statement_token1] = ACTIONS(8794), + [sym__ambiguous_call_statement] = ACTIONS(8794), + [aux_sym_addressof_expression_token1] = ACTIONS(8794), + [aux_sym_type_of_expression_token1] = ACTIONS(8794), + [aux_sym_unary_expression_token1] = ACTIONS(8794), + [sym_string_literal] = ACTIONS(8796), + [sym_number_literal] = ACTIONS(8796), + [aux_sym_boolean_literal_token1] = ACTIONS(8794), + [aux_sym_boolean_literal_token2] = ACTIONS(8794), + [sym_nothing_literal] = ACTIONS(8794), + [sym_null_literal] = ACTIONS(8794), + [sym_empty_literal] = ACTIONS(8794), + [sym_date_literal] = ACTIONS(8796), + [anon_sym_POUND] = ACTIONS(8794), + }, + [STATE(4989)] = { + [sym_array_bounds] = STATE(5373), + [sym_identifier] = ACTIONS(8081), + [sym_newline] = ACTIONS(8083), + [anon_sym_COLON] = ACTIONS(8083), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8081), + [aux_sym_frm_property_statement_token1] = ACTIONS(8081), + [anon_sym_EQ] = ACTIONS(8083), + [anon_sym_DOT] = ACTIONS(8081), + [anon_sym_BANG] = ACTIONS(8083), + [aux_sym__attribute_identifier_token1] = ACTIONS(8081), + [aux_sym_option_statement_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8081), + [aux_sym_preprocessor_const_token1] = ACTIONS(8081), + [sym_static_modifier] = ACTIONS(8081), + [sym__dim_keyword] = ACTIONS(8081), + [sym__redim_keyword] = ACTIONS(8081), + [aux_sym_get_accessor_token1] = ACTIONS(8081), + [aux_sym_set_accessor_token1] = ACTIONS(8081), + [anon_sym_COMMA] = ACTIONS(8083), + [aux_sym_const_declaration_token1] = ACTIONS(8081), + [anon_sym_LPAREN] = ACTIONS(10092), + [aux_sym_as_type_clause_token2] = ACTIONS(8081), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8081), + [aux_sym_visibility_token1] = ACTIONS(8081), + [aux_sym_visibility_token2] = ACTIONS(8081), + [aux_sym_elseif_fragment_token1] = ACTIONS(8081), + [aux_sym_else_fragment_token1] = ACTIONS(8081), + [aux_sym_select_statement_token1] = ACTIONS(8081), + [aux_sym_select_statement_token2] = ACTIONS(8081), + [aux_sym__for_header_token1] = ACTIONS(8081), + [aux_sym_do_statement_token1] = ACTIONS(8081), + [aux_sym_do_condition_token1] = ACTIONS(8081), + [aux_sym_with_statement_token1] = ACTIONS(8081), + [aux_sym_exit_statement_token1] = ACTIONS(8081), + [sym_end_statement] = ACTIONS(8083), + [aux_sym_on_goto_statement_token1] = ACTIONS(8081), + [aux_sym_on_goto_statement_token2] = ACTIONS(8081), + [aux_sym_on_error_statement_token2] = ACTIONS(8081), + [sym__ambiguous_redim_statement] = ACTIONS(8083), + [aux_sym_erase_statement_token1] = ACTIONS(8081), + [aux_sym_open_statement_token1] = ACTIONS(8081), + [aux_sym_file_mode_token2] = ACTIONS(8081), + [aux_sym_file_access_token2] = ACTIONS(8081), + [aux_sym_file_lock_token2] = ACTIONS(8081), + [aux_sym_print_statement_token1] = ACTIONS(8081), + [anon_sym_PLUS] = ACTIONS(8083), + [anon_sym_DASH] = ACTIONS(8081), + [anon_sym_QMARK] = ACTIONS(8083), + [aux_sym_close_statement_token1] = ACTIONS(8081), + [aux_sym_put_statement_token1] = ACTIONS(8081), + [aux_sym_unlock_statement_token1] = ACTIONS(8081), + [aux_sym_seek_statement_token1] = ACTIONS(8081), + [sym_reset_statement] = ACTIONS(8081), + [aux_sym_raise_event_statement_token1] = ACTIONS(8081), + [sym_stop_statement] = ACTIONS(8081), + [sym_beep_statement] = ACTIONS(8081), + [aux_sym_unload_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token2] = ACTIONS(8081), + [aux_sym_def_type_statement_token3] = ACTIONS(8081), + [aux_sym_def_type_statement_token4] = ACTIONS(8081), + [aux_sym_def_type_statement_token5] = ACTIONS(8081), + [aux_sym_def_type_statement_token6] = ACTIONS(8081), + [aux_sym_def_type_statement_token7] = ACTIONS(8081), + [aux_sym_def_type_statement_token8] = ACTIONS(8081), + [aux_sym_def_type_statement_token9] = ACTIONS(8081), + [aux_sym_def_type_statement_token10] = ACTIONS(8081), + [aux_sym_def_type_statement_token11] = ACTIONS(8081), + [aux_sym_def_type_statement_token12] = ACTIONS(8081), + [aux_sym_def_type_statement_token13] = ACTIONS(8081), + [aux_sym_def_type_statement_token14] = ACTIONS(8081), + [aux_sym_call_statement_token1] = ACTIONS(8081), + [sym__ambiguous_call_statement] = ACTIONS(8081), + [aux_sym_addressof_expression_token1] = ACTIONS(8081), + [aux_sym_type_of_expression_token1] = ACTIONS(8081), + [aux_sym_unary_expression_token1] = ACTIONS(8081), + [sym_string_literal] = ACTIONS(8083), + [sym_number_literal] = ACTIONS(8083), + [aux_sym_boolean_literal_token1] = ACTIONS(8081), + [aux_sym_boolean_literal_token2] = ACTIONS(8081), + [sym_nothing_literal] = ACTIONS(8081), + [sym_null_literal] = ACTIONS(8081), + [sym_empty_literal] = ACTIONS(8081), + [sym_date_literal] = ACTIONS(8083), + [anon_sym_POUND] = ACTIONS(8081), + }, + [STATE(4990)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(4991)] = { + [sym_identifier] = ACTIONS(7984), + [sym_newline] = ACTIONS(7986), + [anon_sym_COLON] = ACTIONS(7986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7984), + [aux_sym_frm_property_statement_token1] = ACTIONS(7984), + [anon_sym_EQ] = ACTIONS(7986), + [anon_sym_DOT] = ACTIONS(7984), + [anon_sym_BANG] = ACTIONS(7986), + [aux_sym__attribute_identifier_token1] = ACTIONS(7984), + [aux_sym_option_statement_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7984), + [aux_sym_preprocessor_const_token1] = ACTIONS(7984), + [sym_static_modifier] = ACTIONS(7984), + [sym__dim_keyword] = ACTIONS(7984), + [sym__redim_keyword] = ACTIONS(7984), + [aux_sym_get_accessor_token1] = ACTIONS(7984), + [aux_sym_set_accessor_token1] = ACTIONS(7984), + [anon_sym_COMMA] = ACTIONS(7986), + [aux_sym_const_declaration_token1] = ACTIONS(7984), + [anon_sym_LPAREN] = ACTIONS(7986), + [aux_sym_as_type_clause_token1] = ACTIONS(7984), + [aux_sym_as_type_clause_token2] = ACTIONS(7984), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7984), + [aux_sym_visibility_token1] = ACTIONS(7984), + [aux_sym_visibility_token2] = ACTIONS(7984), + [aux_sym_elseif_fragment_token1] = ACTIONS(7984), + [aux_sym_else_fragment_token1] = ACTIONS(7984), + [aux_sym_select_statement_token1] = ACTIONS(7984), + [aux_sym_select_statement_token2] = ACTIONS(7984), + [aux_sym__for_header_token1] = ACTIONS(7984), + [aux_sym_do_statement_token1] = ACTIONS(7984), + [aux_sym_do_condition_token1] = ACTIONS(7984), + [aux_sym_with_statement_token1] = ACTIONS(7984), + [aux_sym_exit_statement_token1] = ACTIONS(7984), + [sym_end_statement] = ACTIONS(7986), + [aux_sym_on_goto_statement_token1] = ACTIONS(7984), + [aux_sym_on_goto_statement_token2] = ACTIONS(7984), + [aux_sym_on_error_statement_token2] = ACTIONS(7984), + [sym__ambiguous_redim_statement] = ACTIONS(7986), + [aux_sym_erase_statement_token1] = ACTIONS(7984), + [aux_sym_open_statement_token1] = ACTIONS(7984), + [aux_sym_file_mode_token2] = ACTIONS(7984), + [aux_sym_file_access_token2] = ACTIONS(7984), + [aux_sym_file_lock_token2] = ACTIONS(7984), + [aux_sym_print_statement_token1] = ACTIONS(7984), + [anon_sym_PLUS] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(7984), + [anon_sym_QMARK] = ACTIONS(7986), + [aux_sym_close_statement_token1] = ACTIONS(7984), + [aux_sym_put_statement_token1] = ACTIONS(7984), + [aux_sym_unlock_statement_token1] = ACTIONS(7984), + [aux_sym_seek_statement_token1] = ACTIONS(7984), + [sym_reset_statement] = ACTIONS(7984), + [aux_sym_raise_event_statement_token1] = ACTIONS(7984), + [sym_stop_statement] = ACTIONS(7984), + [sym_beep_statement] = ACTIONS(7984), + [aux_sym_unload_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token2] = ACTIONS(7984), + [aux_sym_def_type_statement_token3] = ACTIONS(7984), + [aux_sym_def_type_statement_token4] = ACTIONS(7984), + [aux_sym_def_type_statement_token5] = ACTIONS(7984), + [aux_sym_def_type_statement_token6] = ACTIONS(7984), + [aux_sym_def_type_statement_token7] = ACTIONS(7984), + [aux_sym_def_type_statement_token8] = ACTIONS(7984), + [aux_sym_def_type_statement_token9] = ACTIONS(7984), + [aux_sym_def_type_statement_token10] = ACTIONS(7984), + [aux_sym_def_type_statement_token11] = ACTIONS(7984), + [aux_sym_def_type_statement_token12] = ACTIONS(7984), + [aux_sym_def_type_statement_token13] = ACTIONS(7984), + [aux_sym_def_type_statement_token14] = ACTIONS(7984), + [aux_sym_call_statement_token1] = ACTIONS(7984), + [sym__ambiguous_call_statement] = ACTIONS(7984), + [aux_sym_addressof_expression_token1] = ACTIONS(7984), + [aux_sym_type_of_expression_token1] = ACTIONS(7984), + [aux_sym_unary_expression_token1] = ACTIONS(7984), + [sym_string_literal] = ACTIONS(7986), + [sym_number_literal] = ACTIONS(7986), + [aux_sym_boolean_literal_token1] = ACTIONS(7984), + [aux_sym_boolean_literal_token2] = ACTIONS(7984), + [sym_nothing_literal] = ACTIONS(7984), + [sym_null_literal] = ACTIONS(7984), + [sym_empty_literal] = ACTIONS(7984), + [sym_date_literal] = ACTIONS(7986), + [anon_sym_POUND] = ACTIONS(7984), + }, + [STATE(4992)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(4993), + [sym_identifier] = ACTIONS(8066), + [sym_newline] = ACTIONS(8068), + [anon_sym_COLON] = ACTIONS(8068), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8066), + [aux_sym_frm_property_statement_token1] = ACTIONS(8066), + [anon_sym_DOT] = ACTIONS(8066), + [anon_sym_BANG] = ACTIONS(8068), + [aux_sym__attribute_identifier_token1] = ACTIONS(8066), + [aux_sym_option_statement_token3] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8066), + [aux_sym_preprocessor_const_token1] = ACTIONS(8066), + [sym_static_modifier] = ACTIONS(8066), + [sym__dim_keyword] = ACTIONS(8066), + [sym__redim_keyword] = ACTIONS(8066), + [aux_sym_get_accessor_token1] = ACTIONS(8066), + [aux_sym_set_accessor_token1] = ACTIONS(8066), + [anon_sym_COMMA] = ACTIONS(7168), + [aux_sym_const_declaration_token1] = ACTIONS(8066), + [anon_sym_LPAREN] = ACTIONS(8068), + [aux_sym_as_type_clause_token2] = ACTIONS(8066), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8066), + [aux_sym_visibility_token1] = ACTIONS(8066), + [aux_sym_visibility_token2] = ACTIONS(8066), + [aux_sym_elseif_fragment_token1] = ACTIONS(8066), + [aux_sym_else_fragment_token1] = ACTIONS(8066), + [aux_sym_select_statement_token1] = ACTIONS(8066), + [aux_sym_select_statement_token2] = ACTIONS(8066), + [aux_sym__for_header_token1] = ACTIONS(8066), + [aux_sym_do_statement_token1] = ACTIONS(8066), + [aux_sym_do_condition_token1] = ACTIONS(8066), + [aux_sym_with_statement_token1] = ACTIONS(8066), + [aux_sym_exit_statement_token1] = ACTIONS(8066), + [sym_end_statement] = ACTIONS(8068), + [aux_sym_on_goto_statement_token1] = ACTIONS(8066), + [aux_sym_on_goto_statement_token2] = ACTIONS(8066), + [aux_sym_on_error_statement_token2] = ACTIONS(8066), + [sym__ambiguous_redim_statement] = ACTIONS(8068), + [aux_sym_erase_statement_token1] = ACTIONS(8066), + [aux_sym_open_statement_token1] = ACTIONS(8066), + [aux_sym_file_mode_token2] = ACTIONS(8066), + [aux_sym_file_access_token2] = ACTIONS(8066), + [aux_sym_file_lock_token2] = ACTIONS(8066), + [aux_sym_print_statement_token1] = ACTIONS(8066), + [anon_sym_PLUS] = ACTIONS(8068), + [anon_sym_DASH] = ACTIONS(8066), + [anon_sym_SEMI] = ACTIONS(7168), + [anon_sym_QMARK] = ACTIONS(8068), + [aux_sym_close_statement_token1] = ACTIONS(8066), + [aux_sym_put_statement_token1] = ACTIONS(8066), + [aux_sym_unlock_statement_token1] = ACTIONS(8066), + [aux_sym_seek_statement_token1] = ACTIONS(8066), + [sym_reset_statement] = ACTIONS(8066), + [aux_sym_raise_event_statement_token1] = ACTIONS(8066), + [sym_stop_statement] = ACTIONS(8066), + [sym_beep_statement] = ACTIONS(8066), + [aux_sym_unload_statement_token1] = ACTIONS(8066), + [aux_sym_def_type_statement_token1] = ACTIONS(8066), + [aux_sym_def_type_statement_token2] = ACTIONS(8066), + [aux_sym_def_type_statement_token3] = ACTIONS(8066), + [aux_sym_def_type_statement_token4] = ACTIONS(8066), + [aux_sym_def_type_statement_token5] = ACTIONS(8066), + [aux_sym_def_type_statement_token6] = ACTIONS(8066), + [aux_sym_def_type_statement_token7] = ACTIONS(8066), + [aux_sym_def_type_statement_token8] = ACTIONS(8066), + [aux_sym_def_type_statement_token9] = ACTIONS(8066), + [aux_sym_def_type_statement_token10] = ACTIONS(8066), + [aux_sym_def_type_statement_token11] = ACTIONS(8066), + [aux_sym_def_type_statement_token12] = ACTIONS(8066), + [aux_sym_def_type_statement_token13] = ACTIONS(8066), + [aux_sym_def_type_statement_token14] = ACTIONS(8066), + [aux_sym_call_statement_token1] = ACTIONS(8066), + [sym__ambiguous_call_statement] = ACTIONS(8066), + [aux_sym_addressof_expression_token1] = ACTIONS(8066), + [aux_sym_type_of_expression_token1] = ACTIONS(8066), + [aux_sym_unary_expression_token1] = ACTIONS(8066), + [sym_string_literal] = ACTIONS(8068), + [sym_number_literal] = ACTIONS(8068), + [aux_sym_boolean_literal_token1] = ACTIONS(8066), + [aux_sym_boolean_literal_token2] = ACTIONS(8066), + [sym_nothing_literal] = ACTIONS(8066), + [sym_null_literal] = ACTIONS(8066), + [sym_empty_literal] = ACTIONS(8066), + [sym_date_literal] = ACTIONS(8068), + [anon_sym_POUND] = ACTIONS(8066), + }, + [STATE(4993)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(4993), + [sym_identifier] = ACTIONS(5841), + [sym_newline] = ACTIONS(5843), + [anon_sym_COLON] = ACTIONS(5843), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5841), + [aux_sym_frm_property_statement_token1] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5843), + [aux_sym__attribute_identifier_token1] = ACTIONS(5841), + [aux_sym_option_statement_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5841), + [aux_sym_preprocessor_const_token1] = ACTIONS(5841), + [sym_static_modifier] = ACTIONS(5841), + [sym__dim_keyword] = ACTIONS(5841), + [sym__redim_keyword] = ACTIONS(5841), + [aux_sym_get_accessor_token1] = ACTIONS(5841), + [aux_sym_set_accessor_token1] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(10362), + [aux_sym_const_declaration_token1] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5843), + [aux_sym_as_type_clause_token2] = ACTIONS(5841), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5841), + [aux_sym_visibility_token1] = ACTIONS(5841), + [aux_sym_visibility_token2] = ACTIONS(5841), + [aux_sym_elseif_fragment_token1] = ACTIONS(5841), + [aux_sym_else_fragment_token1] = ACTIONS(5841), + [aux_sym_select_statement_token1] = ACTIONS(5841), + [aux_sym_select_statement_token2] = ACTIONS(5841), + [aux_sym__for_header_token1] = ACTIONS(5841), + [aux_sym_do_statement_token1] = ACTIONS(5841), + [aux_sym_do_condition_token1] = ACTIONS(5841), + [aux_sym_with_statement_token1] = ACTIONS(5841), + [aux_sym_exit_statement_token1] = ACTIONS(5841), + [sym_end_statement] = ACTIONS(5843), + [aux_sym_on_goto_statement_token1] = ACTIONS(5841), + [aux_sym_on_goto_statement_token2] = ACTIONS(5841), + [aux_sym_on_error_statement_token2] = ACTIONS(5841), + [sym__ambiguous_redim_statement] = ACTIONS(5843), + [aux_sym_erase_statement_token1] = ACTIONS(5841), + [aux_sym_open_statement_token1] = ACTIONS(5841), + [aux_sym_file_mode_token2] = ACTIONS(5841), + [aux_sym_file_access_token2] = ACTIONS(5841), + [aux_sym_file_lock_token2] = ACTIONS(5841), + [aux_sym_print_statement_token1] = ACTIONS(5841), + [anon_sym_PLUS] = ACTIONS(5843), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_SEMI] = ACTIONS(10362), + [anon_sym_QMARK] = ACTIONS(5843), + [aux_sym_close_statement_token1] = ACTIONS(5841), + [aux_sym_put_statement_token1] = ACTIONS(5841), + [aux_sym_unlock_statement_token1] = ACTIONS(5841), + [aux_sym_seek_statement_token1] = ACTIONS(5841), + [sym_reset_statement] = ACTIONS(5841), + [aux_sym_raise_event_statement_token1] = ACTIONS(5841), + [sym_stop_statement] = ACTIONS(5841), + [sym_beep_statement] = ACTIONS(5841), + [aux_sym_unload_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token2] = ACTIONS(5841), + [aux_sym_def_type_statement_token3] = ACTIONS(5841), + [aux_sym_def_type_statement_token4] = ACTIONS(5841), + [aux_sym_def_type_statement_token5] = ACTIONS(5841), + [aux_sym_def_type_statement_token6] = ACTIONS(5841), + [aux_sym_def_type_statement_token7] = ACTIONS(5841), + [aux_sym_def_type_statement_token8] = ACTIONS(5841), + [aux_sym_def_type_statement_token9] = ACTIONS(5841), + [aux_sym_def_type_statement_token10] = ACTIONS(5841), + [aux_sym_def_type_statement_token11] = ACTIONS(5841), + [aux_sym_def_type_statement_token12] = ACTIONS(5841), + [aux_sym_def_type_statement_token13] = ACTIONS(5841), + [aux_sym_def_type_statement_token14] = ACTIONS(5841), + [aux_sym_call_statement_token1] = ACTIONS(5841), + [sym__ambiguous_call_statement] = ACTIONS(5841), + [aux_sym_addressof_expression_token1] = ACTIONS(5841), + [aux_sym_type_of_expression_token1] = ACTIONS(5841), + [aux_sym_unary_expression_token1] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5843), + [sym_number_literal] = ACTIONS(5843), + [aux_sym_boolean_literal_token1] = ACTIONS(5841), + [aux_sym_boolean_literal_token2] = ACTIONS(5841), + [sym_nothing_literal] = ACTIONS(5841), + [sym_null_literal] = ACTIONS(5841), + [sym_empty_literal] = ACTIONS(5841), + [sym_date_literal] = ACTIONS(5843), + [anon_sym_POUND] = ACTIONS(5841), + }, + [STATE(4994)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_statement_token2] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(4995)] = { + [sym_identifier] = ACTIONS(8022), + [sym_newline] = ACTIONS(8024), + [anon_sym_COLON] = ACTIONS(8024), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8022), + [aux_sym_frm_property_statement_token1] = ACTIONS(8022), + [anon_sym_EQ] = ACTIONS(8024), + [anon_sym_DOT] = ACTIONS(8022), + [anon_sym_BANG] = ACTIONS(8024), + [aux_sym__attribute_identifier_token1] = ACTIONS(8022), + [aux_sym_option_statement_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8022), + [aux_sym_preprocessor_const_token1] = ACTIONS(8022), + [sym_static_modifier] = ACTIONS(8022), + [sym__dim_keyword] = ACTIONS(8022), + [sym__redim_keyword] = ACTIONS(8022), + [aux_sym_get_accessor_token1] = ACTIONS(8022), + [aux_sym_set_accessor_token1] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8024), + [aux_sym_const_declaration_token1] = ACTIONS(8022), + [anon_sym_LPAREN] = ACTIONS(8024), + [aux_sym_as_type_clause_token1] = ACTIONS(8022), + [aux_sym_as_type_clause_token2] = ACTIONS(8022), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8022), + [aux_sym_visibility_token1] = ACTIONS(8022), + [aux_sym_visibility_token2] = ACTIONS(8022), + [aux_sym_elseif_fragment_token1] = ACTIONS(8022), + [aux_sym_else_fragment_token1] = ACTIONS(8022), + [aux_sym_select_statement_token1] = ACTIONS(8022), + [aux_sym_select_statement_token2] = ACTIONS(8022), + [aux_sym__for_header_token1] = ACTIONS(8022), + [aux_sym_do_statement_token1] = ACTIONS(8022), + [aux_sym_do_condition_token1] = ACTIONS(8022), + [aux_sym_with_statement_token1] = ACTIONS(8022), + [aux_sym_exit_statement_token1] = ACTIONS(8022), + [sym_end_statement] = ACTIONS(8024), + [aux_sym_on_goto_statement_token1] = ACTIONS(8022), + [aux_sym_on_goto_statement_token2] = ACTIONS(8022), + [aux_sym_on_error_statement_token2] = ACTIONS(8022), + [sym__ambiguous_redim_statement] = ACTIONS(8024), + [aux_sym_erase_statement_token1] = ACTIONS(8022), + [aux_sym_open_statement_token1] = ACTIONS(8022), + [aux_sym_file_mode_token2] = ACTIONS(8022), + [aux_sym_file_access_token2] = ACTIONS(8022), + [aux_sym_file_lock_token2] = ACTIONS(8022), + [aux_sym_print_statement_token1] = ACTIONS(8022), + [anon_sym_PLUS] = ACTIONS(8024), + [anon_sym_DASH] = ACTIONS(8022), + [anon_sym_QMARK] = ACTIONS(8024), + [aux_sym_close_statement_token1] = ACTIONS(8022), + [aux_sym_put_statement_token1] = ACTIONS(8022), + [aux_sym_unlock_statement_token1] = ACTIONS(8022), + [aux_sym_seek_statement_token1] = ACTIONS(8022), + [sym_reset_statement] = ACTIONS(8022), + [aux_sym_raise_event_statement_token1] = ACTIONS(8022), + [sym_stop_statement] = ACTIONS(8022), + [sym_beep_statement] = ACTIONS(8022), + [aux_sym_unload_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token2] = ACTIONS(8022), + [aux_sym_def_type_statement_token3] = ACTIONS(8022), + [aux_sym_def_type_statement_token4] = ACTIONS(8022), + [aux_sym_def_type_statement_token5] = ACTIONS(8022), + [aux_sym_def_type_statement_token6] = ACTIONS(8022), + [aux_sym_def_type_statement_token7] = ACTIONS(8022), + [aux_sym_def_type_statement_token8] = ACTIONS(8022), + [aux_sym_def_type_statement_token9] = ACTIONS(8022), + [aux_sym_def_type_statement_token10] = ACTIONS(8022), + [aux_sym_def_type_statement_token11] = ACTIONS(8022), + [aux_sym_def_type_statement_token12] = ACTIONS(8022), + [aux_sym_def_type_statement_token13] = ACTIONS(8022), + [aux_sym_def_type_statement_token14] = ACTIONS(8022), + [aux_sym_call_statement_token1] = ACTIONS(8022), + [sym__ambiguous_call_statement] = ACTIONS(8022), + [aux_sym_addressof_expression_token1] = ACTIONS(8022), + [aux_sym_type_of_expression_token1] = ACTIONS(8022), + [aux_sym_unary_expression_token1] = ACTIONS(8022), + [sym_string_literal] = ACTIONS(8024), + [sym_number_literal] = ACTIONS(8024), + [aux_sym_boolean_literal_token1] = ACTIONS(8022), + [aux_sym_boolean_literal_token2] = ACTIONS(8022), + [sym_nothing_literal] = ACTIONS(8022), + [sym_null_literal] = ACTIONS(8022), + [sym_empty_literal] = ACTIONS(8022), + [sym_date_literal] = ACTIONS(8024), + [anon_sym_POUND] = ACTIONS(8022), + }, + [STATE(4996)] = { + [sym_char_position] = STATE(721), + [aux_sym_output_list_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(7474), + [sym_newline] = ACTIONS(7476), + [anon_sym_COLON] = ACTIONS(7476), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7474), + [aux_sym_frm_property_statement_token1] = ACTIONS(7474), + [anon_sym_DOT] = ACTIONS(7474), + [anon_sym_BANG] = ACTIONS(7476), + [aux_sym__attribute_identifier_token1] = ACTIONS(7474), + [aux_sym_option_statement_token3] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7474), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7474), + [aux_sym_preprocessor_const_token1] = ACTIONS(7474), + [sym_static_modifier] = ACTIONS(7474), + [sym__dim_keyword] = ACTIONS(7474), + [sym__redim_keyword] = ACTIONS(7474), + [aux_sym_get_accessor_token1] = ACTIONS(7474), + [aux_sym_set_accessor_token1] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(10320), + [aux_sym_const_declaration_token1] = ACTIONS(7474), + [anon_sym_LPAREN] = ACTIONS(7476), + [aux_sym_as_type_clause_token2] = ACTIONS(7474), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7474), + [aux_sym_visibility_token1] = ACTIONS(7474), + [aux_sym_visibility_token2] = ACTIONS(7474), + [aux_sym_elseif_fragment_token1] = ACTIONS(7474), + [aux_sym_else_fragment_token1] = ACTIONS(7474), + [aux_sym_select_statement_token1] = ACTIONS(7474), + [aux_sym__for_header_token1] = ACTIONS(7474), + [aux_sym_do_statement_token1] = ACTIONS(7474), + [aux_sym_do_condition_token1] = ACTIONS(7474), + [aux_sym_with_statement_token1] = ACTIONS(7474), + [aux_sym_exit_statement_token1] = ACTIONS(7474), + [sym_end_statement] = ACTIONS(7476), + [aux_sym_on_goto_statement_token1] = ACTIONS(7474), + [aux_sym_on_goto_statement_token2] = ACTIONS(7474), + [aux_sym_on_error_statement_token2] = ACTIONS(7474), + [sym__ambiguous_redim_statement] = ACTIONS(7476), + [aux_sym_erase_statement_token1] = ACTIONS(7474), + [aux_sym_open_statement_token1] = ACTIONS(7474), + [aux_sym_file_mode_token2] = ACTIONS(7474), + [aux_sym_file_access_token2] = ACTIONS(7474), + [aux_sym_file_lock_token2] = ACTIONS(7474), + [aux_sym_print_statement_token1] = ACTIONS(7474), + [anon_sym_PLUS] = ACTIONS(7476), + [anon_sym_DASH] = ACTIONS(7474), + [anon_sym_SEMI] = ACTIONS(10320), + [anon_sym_QMARK] = ACTIONS(7476), + [aux_sym_close_statement_token1] = ACTIONS(7474), + [aux_sym_put_statement_token1] = ACTIONS(7474), + [aux_sym_unlock_statement_token1] = ACTIONS(7474), + [aux_sym_seek_statement_token1] = ACTIONS(7474), + [sym_reset_statement] = ACTIONS(7474), + [aux_sym_raise_event_statement_token1] = ACTIONS(7474), + [sym_stop_statement] = ACTIONS(7474), + [sym_beep_statement] = ACTIONS(7474), + [aux_sym_unload_statement_token1] = ACTIONS(7474), + [aux_sym_def_type_statement_token1] = ACTIONS(7474), + [aux_sym_def_type_statement_token2] = ACTIONS(7474), + [aux_sym_def_type_statement_token3] = ACTIONS(7474), + [aux_sym_def_type_statement_token4] = ACTIONS(7474), + [aux_sym_def_type_statement_token5] = ACTIONS(7474), + [aux_sym_def_type_statement_token6] = ACTIONS(7474), + [aux_sym_def_type_statement_token7] = ACTIONS(7474), + [aux_sym_def_type_statement_token8] = ACTIONS(7474), + [aux_sym_def_type_statement_token9] = ACTIONS(7474), + [aux_sym_def_type_statement_token10] = ACTIONS(7474), + [aux_sym_def_type_statement_token11] = ACTIONS(7474), + [aux_sym_def_type_statement_token12] = ACTIONS(7474), + [aux_sym_def_type_statement_token13] = ACTIONS(7474), + [aux_sym_def_type_statement_token14] = ACTIONS(7474), + [aux_sym_call_statement_token1] = ACTIONS(7474), + [sym__ambiguous_call_statement] = ACTIONS(7474), + [aux_sym_addressof_expression_token1] = ACTIONS(7474), + [aux_sym_type_of_expression_token1] = ACTIONS(7474), + [aux_sym_unary_expression_token1] = ACTIONS(7474), + [sym_string_literal] = ACTIONS(7476), + [sym_number_literal] = ACTIONS(7476), + [aux_sym_boolean_literal_token1] = ACTIONS(7474), + [aux_sym_boolean_literal_token2] = ACTIONS(7474), + [sym_nothing_literal] = ACTIONS(7474), + [sym_null_literal] = ACTIONS(7474), + [sym_empty_literal] = ACTIONS(7474), + [sym_date_literal] = ACTIONS(7476), + [anon_sym_POUND] = ACTIONS(7474), + }, + [STATE(4997)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5026), + [sym_identifier] = ACTIONS(7939), + [sym_newline] = ACTIONS(7941), + [anon_sym_COLON] = ACTIONS(7941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7939), + [aux_sym_frm_property_statement_token1] = ACTIONS(7939), + [anon_sym_DOT] = ACTIONS(7939), + [anon_sym_BANG] = ACTIONS(7941), + [aux_sym__attribute_identifier_token1] = ACTIONS(7939), + [aux_sym_option_statement_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7939), + [aux_sym_preprocessor_const_token1] = ACTIONS(7939), + [sym_static_modifier] = ACTIONS(7939), + [sym__dim_keyword] = ACTIONS(7939), + [sym__redim_keyword] = ACTIONS(7939), + [aux_sym_get_accessor_token1] = ACTIONS(7939), + [aux_sym_set_accessor_token1] = ACTIONS(7939), + [anon_sym_COMMA] = ACTIONS(10365), + [aux_sym_const_declaration_token1] = ACTIONS(7939), + [anon_sym_LPAREN] = ACTIONS(7941), + [aux_sym_as_type_clause_token2] = ACTIONS(7939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7939), + [aux_sym_visibility_token1] = ACTIONS(7939), + [aux_sym_visibility_token2] = ACTIONS(7939), + [aux_sym_elseif_fragment_token1] = ACTIONS(7939), + [aux_sym_else_fragment_token1] = ACTIONS(7939), + [aux_sym_select_statement_token1] = ACTIONS(7939), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7939), + [aux_sym__for_header_token1] = ACTIONS(7939), + [aux_sym_do_statement_token1] = ACTIONS(7939), + [aux_sym_do_condition_token1] = ACTIONS(7939), + [aux_sym_with_statement_token1] = ACTIONS(7939), + [aux_sym_exit_statement_token1] = ACTIONS(7939), + [sym_end_statement] = ACTIONS(7941), + [aux_sym_on_goto_statement_token1] = ACTIONS(7939), + [aux_sym_on_goto_statement_token2] = ACTIONS(7939), + [aux_sym_on_error_statement_token2] = ACTIONS(7939), + [sym__ambiguous_redim_statement] = ACTIONS(7941), + [aux_sym_erase_statement_token1] = ACTIONS(7939), + [aux_sym_open_statement_token1] = ACTIONS(7939), + [aux_sym_file_mode_token2] = ACTIONS(7939), + [aux_sym_file_access_token2] = ACTIONS(7939), + [aux_sym_file_lock_token2] = ACTIONS(7939), + [aux_sym_print_statement_token1] = ACTIONS(7939), + [anon_sym_PLUS] = ACTIONS(7941), + [anon_sym_DASH] = ACTIONS(7939), + [anon_sym_QMARK] = ACTIONS(7941), + [aux_sym_close_statement_token1] = ACTIONS(7939), + [aux_sym_put_statement_token1] = ACTIONS(7939), + [aux_sym_unlock_statement_token1] = ACTIONS(7939), + [aux_sym_seek_statement_token1] = ACTIONS(7939), + [sym_reset_statement] = ACTIONS(7939), + [aux_sym_raise_event_statement_token1] = ACTIONS(7939), + [sym_stop_statement] = ACTIONS(7939), + [sym_beep_statement] = ACTIONS(7939), + [aux_sym_unload_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token2] = ACTIONS(7939), + [aux_sym_def_type_statement_token3] = ACTIONS(7939), + [aux_sym_def_type_statement_token4] = ACTIONS(7939), + [aux_sym_def_type_statement_token5] = ACTIONS(7939), + [aux_sym_def_type_statement_token6] = ACTIONS(7939), + [aux_sym_def_type_statement_token7] = ACTIONS(7939), + [aux_sym_def_type_statement_token8] = ACTIONS(7939), + [aux_sym_def_type_statement_token9] = ACTIONS(7939), + [aux_sym_def_type_statement_token10] = ACTIONS(7939), + [aux_sym_def_type_statement_token11] = ACTIONS(7939), + [aux_sym_def_type_statement_token12] = ACTIONS(7939), + [aux_sym_def_type_statement_token13] = ACTIONS(7939), + [aux_sym_def_type_statement_token14] = ACTIONS(7939), + [aux_sym_call_statement_token1] = ACTIONS(7939), + [sym__ambiguous_call_statement] = ACTIONS(7939), + [aux_sym_addressof_expression_token1] = ACTIONS(7939), + [aux_sym_type_of_expression_token1] = ACTIONS(7939), + [aux_sym_unary_expression_token1] = ACTIONS(7939), + [sym_string_literal] = ACTIONS(7941), + [sym_number_literal] = ACTIONS(7941), + [aux_sym_boolean_literal_token1] = ACTIONS(7939), + [aux_sym_boolean_literal_token2] = ACTIONS(7939), + [sym_nothing_literal] = ACTIONS(7939), + [sym_null_literal] = ACTIONS(7939), + [sym_empty_literal] = ACTIONS(7939), + [sym_date_literal] = ACTIONS(7941), + [anon_sym_POUND] = ACTIONS(7939), + }, + [STATE(4998)] = { + [sym_argument_list] = STATE(5196), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7836), + [anon_sym_BANG] = ACTIONS(4034), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10326), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_statement_token2] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(4999)] = { + [sym_identifier] = ACTIONS(7968), + [sym_newline] = ACTIONS(7970), + [anon_sym_COLON] = ACTIONS(7970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7968), + [aux_sym_frm_property_statement_token1] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_BANG] = ACTIONS(7970), + [aux_sym__attribute_identifier_token1] = ACTIONS(7968), + [aux_sym_option_statement_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7968), + [aux_sym_preprocessor_const_token1] = ACTIONS(7968), + [sym_static_modifier] = ACTIONS(7968), + [sym__dim_keyword] = ACTIONS(7968), + [sym__redim_keyword] = ACTIONS(7968), + [aux_sym_get_accessor_token1] = ACTIONS(7968), + [aux_sym_set_accessor_token1] = ACTIONS(7968), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_const_declaration_token1] = ACTIONS(7968), + [anon_sym_LPAREN] = ACTIONS(7970), + [aux_sym_as_type_clause_token1] = ACTIONS(7968), + [aux_sym_as_type_clause_token2] = ACTIONS(7968), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7968), + [aux_sym_visibility_token1] = ACTIONS(7968), + [aux_sym_visibility_token2] = ACTIONS(7968), + [aux_sym_elseif_fragment_token1] = ACTIONS(7968), + [aux_sym_else_fragment_token1] = ACTIONS(7968), + [aux_sym_select_statement_token1] = ACTIONS(7968), + [aux_sym__for_header_token1] = ACTIONS(7968), + [aux_sym_do_statement_token1] = ACTIONS(7968), + [aux_sym_do_condition_token1] = ACTIONS(7968), + [aux_sym_while_statement_token1] = ACTIONS(7968), + [aux_sym_with_statement_token1] = ACTIONS(7968), + [aux_sym_exit_statement_token1] = ACTIONS(7968), + [sym_end_statement] = ACTIONS(7970), + [aux_sym_on_goto_statement_token1] = ACTIONS(7968), + [aux_sym_on_goto_statement_token2] = ACTIONS(7968), + [aux_sym_on_error_statement_token2] = ACTIONS(7968), + [sym__ambiguous_redim_statement] = ACTIONS(7970), + [aux_sym_erase_statement_token1] = ACTIONS(7968), + [aux_sym_open_statement_token1] = ACTIONS(7968), + [aux_sym_file_mode_token2] = ACTIONS(7968), + [aux_sym_file_access_token2] = ACTIONS(7968), + [aux_sym_file_lock_token2] = ACTIONS(7968), + [aux_sym_print_statement_token1] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7970), + [aux_sym_close_statement_token1] = ACTIONS(7968), + [aux_sym_put_statement_token1] = ACTIONS(7968), + [aux_sym_unlock_statement_token1] = ACTIONS(7968), + [aux_sym_seek_statement_token1] = ACTIONS(7968), + [sym_reset_statement] = ACTIONS(7968), + [aux_sym_raise_event_statement_token1] = ACTIONS(7968), + [sym_stop_statement] = ACTIONS(7968), + [sym_beep_statement] = ACTIONS(7968), + [aux_sym_unload_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token2] = ACTIONS(7968), + [aux_sym_def_type_statement_token3] = ACTIONS(7968), + [aux_sym_def_type_statement_token4] = ACTIONS(7968), + [aux_sym_def_type_statement_token5] = ACTIONS(7968), + [aux_sym_def_type_statement_token6] = ACTIONS(7968), + [aux_sym_def_type_statement_token7] = ACTIONS(7968), + [aux_sym_def_type_statement_token8] = ACTIONS(7968), + [aux_sym_def_type_statement_token9] = ACTIONS(7968), + [aux_sym_def_type_statement_token10] = ACTIONS(7968), + [aux_sym_def_type_statement_token11] = ACTIONS(7968), + [aux_sym_def_type_statement_token12] = ACTIONS(7968), + [aux_sym_def_type_statement_token13] = ACTIONS(7968), + [aux_sym_def_type_statement_token14] = ACTIONS(7968), + [aux_sym_call_statement_token1] = ACTIONS(7968), + [sym__ambiguous_call_statement] = ACTIONS(7968), + [aux_sym_addressof_expression_token1] = ACTIONS(7968), + [aux_sym_type_of_expression_token1] = ACTIONS(7968), + [aux_sym_unary_expression_token1] = ACTIONS(7968), + [sym_string_literal] = ACTIONS(7970), + [sym_number_literal] = ACTIONS(7970), + [aux_sym_boolean_literal_token1] = ACTIONS(7968), + [aux_sym_boolean_literal_token2] = ACTIONS(7968), + [sym_nothing_literal] = ACTIONS(7968), + [sym_null_literal] = ACTIONS(7968), + [sym_empty_literal] = ACTIONS(7968), + [sym_date_literal] = ACTIONS(7970), + [anon_sym_POUND] = ACTIONS(7968), + }, + [STATE(5000)] = { + [sym_initializer] = STATE(6270), + [sym_identifier] = ACTIONS(8087), + [sym_newline] = ACTIONS(8089), + [anon_sym_COLON] = ACTIONS(8089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8087), + [aux_sym_frm_property_statement_token1] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(10017), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_BANG] = ACTIONS(8089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8087), + [aux_sym_option_statement_token3] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8087), + [aux_sym_preprocessor_const_token1] = ACTIONS(8087), + [sym_static_modifier] = ACTIONS(8087), + [sym__dim_keyword] = ACTIONS(8087), + [sym__redim_keyword] = ACTIONS(8087), + [aux_sym_get_accessor_token1] = ACTIONS(8087), + [aux_sym_set_accessor_token1] = ACTIONS(8087), + [anon_sym_COMMA] = ACTIONS(8089), + [aux_sym_const_declaration_token1] = ACTIONS(8087), + [anon_sym_LPAREN] = ACTIONS(8089), + [aux_sym_as_type_clause_token2] = ACTIONS(8087), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8087), + [aux_sym_visibility_token1] = ACTIONS(8087), + [aux_sym_visibility_token2] = ACTIONS(8087), + [aux_sym_elseif_fragment_token1] = ACTIONS(8087), + [aux_sym_else_fragment_token1] = ACTIONS(8087), + [aux_sym_select_statement_token1] = ACTIONS(8087), + [aux_sym__for_header_token1] = ACTIONS(8087), + [aux_sym_do_statement_token1] = ACTIONS(8087), + [aux_sym_do_statement_token2] = ACTIONS(8087), + [aux_sym_do_condition_token1] = ACTIONS(8087), + [aux_sym_with_statement_token1] = ACTIONS(8087), + [aux_sym_exit_statement_token1] = ACTIONS(8087), + [sym_end_statement] = ACTIONS(8089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8087), + [aux_sym_on_goto_statement_token2] = ACTIONS(8087), + [aux_sym_on_error_statement_token2] = ACTIONS(8087), + [sym__ambiguous_redim_statement] = ACTIONS(8089), + [aux_sym_erase_statement_token1] = ACTIONS(8087), + [aux_sym_open_statement_token1] = ACTIONS(8087), + [aux_sym_file_mode_token2] = ACTIONS(8087), + [aux_sym_file_access_token2] = ACTIONS(8087), + [aux_sym_file_lock_token2] = ACTIONS(8087), + [aux_sym_print_statement_token1] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [aux_sym_close_statement_token1] = ACTIONS(8087), + [aux_sym_put_statement_token1] = ACTIONS(8087), + [aux_sym_unlock_statement_token1] = ACTIONS(8087), + [aux_sym_seek_statement_token1] = ACTIONS(8087), + [sym_reset_statement] = ACTIONS(8087), + [aux_sym_raise_event_statement_token1] = ACTIONS(8087), + [sym_stop_statement] = ACTIONS(8087), + [sym_beep_statement] = ACTIONS(8087), + [aux_sym_unload_statement_token1] = ACTIONS(8087), + [aux_sym_def_type_statement_token1] = ACTIONS(8087), + [aux_sym_def_type_statement_token2] = ACTIONS(8087), + [aux_sym_def_type_statement_token3] = ACTIONS(8087), + [aux_sym_def_type_statement_token4] = ACTIONS(8087), + [aux_sym_def_type_statement_token5] = ACTIONS(8087), + [aux_sym_def_type_statement_token6] = ACTIONS(8087), + [aux_sym_def_type_statement_token7] = ACTIONS(8087), + [aux_sym_def_type_statement_token8] = ACTIONS(8087), + [aux_sym_def_type_statement_token9] = ACTIONS(8087), + [aux_sym_def_type_statement_token10] = ACTIONS(8087), + [aux_sym_def_type_statement_token11] = ACTIONS(8087), + [aux_sym_def_type_statement_token12] = ACTIONS(8087), + [aux_sym_def_type_statement_token13] = ACTIONS(8087), + [aux_sym_def_type_statement_token14] = ACTIONS(8087), + [aux_sym_call_statement_token1] = ACTIONS(8087), + [sym__ambiguous_call_statement] = ACTIONS(8087), + [aux_sym_addressof_expression_token1] = ACTIONS(8087), + [aux_sym_type_of_expression_token1] = ACTIONS(8087), + [aux_sym_unary_expression_token1] = ACTIONS(8087), + [sym_string_literal] = ACTIONS(8089), + [sym_number_literal] = ACTIONS(8089), + [aux_sym_boolean_literal_token1] = ACTIONS(8087), + [aux_sym_boolean_literal_token2] = ACTIONS(8087), + [sym_nothing_literal] = ACTIONS(8087), + [sym_null_literal] = ACTIONS(8087), + [sym_empty_literal] = ACTIONS(8087), + [sym_date_literal] = ACTIONS(8089), + [anon_sym_POUND] = ACTIONS(8087), + }, + [STATE(5001)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym_select_statement_token2] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(5002)] = { + [sym_identifier] = ACTIONS(8877), + [sym_newline] = ACTIONS(8879), + [anon_sym_COLON] = ACTIONS(8879), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8877), + [aux_sym_frm_property_statement_token1] = ACTIONS(8877), + [anon_sym_DOT] = ACTIONS(8877), + [anon_sym_BANG] = ACTIONS(8879), + [aux_sym__attribute_identifier_token1] = ACTIONS(8877), + [aux_sym_option_statement_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8877), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8877), + [aux_sym_preprocessor_const_token1] = ACTIONS(8877), + [sym_static_modifier] = ACTIONS(8877), + [sym__dim_keyword] = ACTIONS(8877), + [sym__redim_keyword] = ACTIONS(8877), + [aux_sym_get_accessor_token1] = ACTIONS(8877), + [aux_sym_set_accessor_token1] = ACTIONS(8877), + [aux_sym_const_declaration_token1] = ACTIONS(8877), + [anon_sym_LPAREN] = ACTIONS(8879), + [aux_sym_as_type_clause_token2] = ACTIONS(8877), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8877), + [aux_sym_visibility_token1] = ACTIONS(8877), + [aux_sym_visibility_token2] = ACTIONS(8877), + [aux_sym_elseif_fragment_token1] = ACTIONS(8877), + [aux_sym_else_fragment_token1] = ACTIONS(8877), + [aux_sym_select_statement_token1] = ACTIONS(8877), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8877), + [aux_sym__for_header_token1] = ACTIONS(8877), + [aux_sym_do_statement_token1] = ACTIONS(8877), + [aux_sym_do_condition_token1] = ACTIONS(8877), + [aux_sym_with_statement_token1] = ACTIONS(8877), + [aux_sym_exit_statement_token1] = ACTIONS(8877), + [sym_end_statement] = ACTIONS(8879), + [aux_sym_on_goto_statement_token1] = ACTIONS(8877), + [aux_sym_on_goto_statement_token2] = ACTIONS(8877), + [aux_sym_on_error_statement_token2] = ACTIONS(8877), + [sym__ambiguous_redim_statement] = ACTIONS(8879), + [aux_sym_erase_statement_token1] = ACTIONS(8877), + [aux_sym_open_statement_token1] = ACTIONS(8877), + [aux_sym_file_mode_token2] = ACTIONS(8877), + [aux_sym_file_access_token2] = ACTIONS(8877), + [aux_sym_file_lock_token2] = ACTIONS(8877), + [aux_sym_print_statement_token1] = ACTIONS(8877), + [anon_sym_PLUS] = ACTIONS(8879), + [anon_sym_DASH] = ACTIONS(8877), + [anon_sym_QMARK] = ACTIONS(8879), + [aux_sym_close_statement_token1] = ACTIONS(8877), + [aux_sym_put_statement_token1] = ACTIONS(8877), + [aux_sym_unlock_statement_token1] = ACTIONS(8877), + [aux_sym_seek_statement_token1] = ACTIONS(8877), + [sym_reset_statement] = ACTIONS(8877), + [aux_sym_raise_event_statement_token1] = ACTIONS(8877), + [sym_stop_statement] = ACTIONS(8877), + [sym_beep_statement] = ACTIONS(8877), + [aux_sym_unload_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token2] = ACTIONS(8877), + [aux_sym_def_type_statement_token3] = ACTIONS(8877), + [aux_sym_def_type_statement_token4] = ACTIONS(8877), + [aux_sym_def_type_statement_token5] = ACTIONS(8877), + [aux_sym_def_type_statement_token6] = ACTIONS(8877), + [aux_sym_def_type_statement_token7] = ACTIONS(8877), + [aux_sym_def_type_statement_token8] = ACTIONS(8877), + [aux_sym_def_type_statement_token9] = ACTIONS(8877), + [aux_sym_def_type_statement_token10] = ACTIONS(8877), + [aux_sym_def_type_statement_token11] = ACTIONS(8877), + [aux_sym_def_type_statement_token12] = ACTIONS(8877), + [aux_sym_def_type_statement_token13] = ACTIONS(8877), + [aux_sym_def_type_statement_token14] = ACTIONS(8877), + [aux_sym_call_statement_token1] = ACTIONS(8877), + [sym__ambiguous_call_statement] = ACTIONS(8877), + [aux_sym_addressof_expression_token1] = ACTIONS(8877), + [aux_sym_type_of_expression_token1] = ACTIONS(8877), + [aux_sym_unary_expression_token1] = ACTIONS(8877), + [sym_string_literal] = ACTIONS(8879), + [sym_number_literal] = ACTIONS(8879), + [aux_sym_boolean_literal_token1] = ACTIONS(8877), + [aux_sym_boolean_literal_token2] = ACTIONS(8877), + [sym_nothing_literal] = ACTIONS(8877), + [sym_null_literal] = ACTIONS(8877), + [sym_empty_literal] = ACTIONS(8877), + [sym_date_literal] = ACTIONS(8879), + [anon_sym_POUND] = ACTIONS(8877), + }, + [STATE(5003)] = { + [sym_identifier] = ACTIONS(8907), + [sym_newline] = ACTIONS(8909), + [anon_sym_COLON] = ACTIONS(8909), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8907), + [aux_sym_frm_property_statement_token1] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8907), + [anon_sym_BANG] = ACTIONS(8909), + [aux_sym__attribute_identifier_token1] = ACTIONS(8907), + [aux_sym_option_statement_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8907), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8907), + [aux_sym_preprocessor_const_token1] = ACTIONS(8907), + [sym_static_modifier] = ACTIONS(8907), + [sym__dim_keyword] = ACTIONS(8907), + [sym__redim_keyword] = ACTIONS(8907), + [aux_sym_get_accessor_token1] = ACTIONS(8907), + [aux_sym_set_accessor_token1] = ACTIONS(8907), + [aux_sym_const_declaration_token1] = ACTIONS(8907), + [anon_sym_LPAREN] = ACTIONS(8909), + [aux_sym_as_type_clause_token2] = ACTIONS(8907), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8907), + [aux_sym_visibility_token1] = ACTIONS(8907), + [aux_sym_visibility_token2] = ACTIONS(8907), + [aux_sym_elseif_fragment_token1] = ACTIONS(8907), + [aux_sym_else_fragment_token1] = ACTIONS(8907), + [aux_sym_select_statement_token1] = ACTIONS(8907), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8907), + [aux_sym__for_header_token1] = ACTIONS(8907), + [aux_sym_do_statement_token1] = ACTIONS(8907), + [aux_sym_do_condition_token1] = ACTIONS(8907), + [aux_sym_with_statement_token1] = ACTIONS(8907), + [aux_sym_exit_statement_token1] = ACTIONS(8907), + [sym_end_statement] = ACTIONS(8909), + [aux_sym_on_goto_statement_token1] = ACTIONS(8907), + [aux_sym_on_goto_statement_token2] = ACTIONS(8907), + [aux_sym_on_error_statement_token2] = ACTIONS(8907), + [sym__ambiguous_redim_statement] = ACTIONS(8909), + [aux_sym_erase_statement_token1] = ACTIONS(8907), + [aux_sym_open_statement_token1] = ACTIONS(8907), + [aux_sym_file_mode_token2] = ACTIONS(8907), + [aux_sym_file_access_token2] = ACTIONS(8907), + [aux_sym_file_lock_token2] = ACTIONS(8907), + [aux_sym_print_statement_token1] = ACTIONS(8907), + [anon_sym_PLUS] = ACTIONS(8909), + [anon_sym_DASH] = ACTIONS(8907), + [anon_sym_QMARK] = ACTIONS(8909), + [aux_sym_close_statement_token1] = ACTIONS(8907), + [aux_sym_put_statement_token1] = ACTIONS(8907), + [aux_sym_unlock_statement_token1] = ACTIONS(8907), + [aux_sym_seek_statement_token1] = ACTIONS(8907), + [sym_reset_statement] = ACTIONS(8907), + [aux_sym_raise_event_statement_token1] = ACTIONS(8907), + [sym_stop_statement] = ACTIONS(8907), + [sym_beep_statement] = ACTIONS(8907), + [aux_sym_unload_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token2] = ACTIONS(8907), + [aux_sym_def_type_statement_token3] = ACTIONS(8907), + [aux_sym_def_type_statement_token4] = ACTIONS(8907), + [aux_sym_def_type_statement_token5] = ACTIONS(8907), + [aux_sym_def_type_statement_token6] = ACTIONS(8907), + [aux_sym_def_type_statement_token7] = ACTIONS(8907), + [aux_sym_def_type_statement_token8] = ACTIONS(8907), + [aux_sym_def_type_statement_token9] = ACTIONS(8907), + [aux_sym_def_type_statement_token10] = ACTIONS(8907), + [aux_sym_def_type_statement_token11] = ACTIONS(8907), + [aux_sym_def_type_statement_token12] = ACTIONS(8907), + [aux_sym_def_type_statement_token13] = ACTIONS(8907), + [aux_sym_def_type_statement_token14] = ACTIONS(8907), + [aux_sym_call_statement_token1] = ACTIONS(8907), + [sym__ambiguous_call_statement] = ACTIONS(8907), + [aux_sym_addressof_expression_token1] = ACTIONS(8907), + [aux_sym_type_of_expression_token1] = ACTIONS(8907), + [aux_sym_unary_expression_token1] = ACTIONS(8907), + [sym_string_literal] = ACTIONS(8909), + [sym_number_literal] = ACTIONS(8909), + [aux_sym_boolean_literal_token1] = ACTIONS(8907), + [aux_sym_boolean_literal_token2] = ACTIONS(8907), + [sym_nothing_literal] = ACTIONS(8907), + [sym_null_literal] = ACTIONS(8907), + [sym_empty_literal] = ACTIONS(8907), + [sym_date_literal] = ACTIONS(8909), + [anon_sym_POUND] = ACTIONS(8907), + }, + [STATE(5004)] = { + [sym_identifier] = ACTIONS(8927), + [sym_newline] = ACTIONS(8929), + [anon_sym_COLON] = ACTIONS(8929), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8927), + [aux_sym_frm_property_statement_token1] = ACTIONS(8927), + [anon_sym_DOT] = ACTIONS(8927), + [anon_sym_BANG] = ACTIONS(8929), + [aux_sym__attribute_identifier_token1] = ACTIONS(8927), + [aux_sym_option_statement_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8927), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8927), + [aux_sym_preprocessor_const_token1] = ACTIONS(8927), + [sym_static_modifier] = ACTIONS(8927), + [sym__dim_keyword] = ACTIONS(8927), + [sym__redim_keyword] = ACTIONS(8927), + [aux_sym_get_accessor_token1] = ACTIONS(8927), + [aux_sym_set_accessor_token1] = ACTIONS(8927), + [aux_sym_const_declaration_token1] = ACTIONS(8927), + [anon_sym_LPAREN] = ACTIONS(8929), + [aux_sym_as_type_clause_token2] = ACTIONS(8927), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8927), + [aux_sym_visibility_token1] = ACTIONS(8927), + [aux_sym_visibility_token2] = ACTIONS(8927), + [aux_sym_elseif_fragment_token1] = ACTIONS(8927), + [aux_sym_else_fragment_token1] = ACTIONS(8927), + [aux_sym_select_statement_token1] = ACTIONS(8927), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8927), + [aux_sym__for_header_token1] = ACTIONS(8927), + [aux_sym_do_statement_token1] = ACTIONS(8927), + [aux_sym_do_condition_token1] = ACTIONS(8927), + [aux_sym_with_statement_token1] = ACTIONS(8927), + [aux_sym_exit_statement_token1] = ACTIONS(8927), + [sym_end_statement] = ACTIONS(8929), + [aux_sym_on_goto_statement_token1] = ACTIONS(8927), + [aux_sym_on_goto_statement_token2] = ACTIONS(8927), + [aux_sym_on_error_statement_token2] = ACTIONS(8927), + [sym__ambiguous_redim_statement] = ACTIONS(8929), + [aux_sym_erase_statement_token1] = ACTIONS(8927), + [aux_sym_open_statement_token1] = ACTIONS(8927), + [aux_sym_file_mode_token2] = ACTIONS(8927), + [aux_sym_file_access_token2] = ACTIONS(8927), + [aux_sym_file_lock_token2] = ACTIONS(8927), + [aux_sym_print_statement_token1] = ACTIONS(8927), + [anon_sym_PLUS] = ACTIONS(8929), + [anon_sym_DASH] = ACTIONS(8927), + [anon_sym_QMARK] = ACTIONS(8929), + [aux_sym_close_statement_token1] = ACTIONS(8927), + [aux_sym_put_statement_token1] = ACTIONS(8927), + [aux_sym_unlock_statement_token1] = ACTIONS(8927), + [aux_sym_seek_statement_token1] = ACTIONS(8927), + [sym_reset_statement] = ACTIONS(8927), + [aux_sym_raise_event_statement_token1] = ACTIONS(8927), + [sym_stop_statement] = ACTIONS(8927), + [sym_beep_statement] = ACTIONS(8927), + [aux_sym_unload_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token2] = ACTIONS(8927), + [aux_sym_def_type_statement_token3] = ACTIONS(8927), + [aux_sym_def_type_statement_token4] = ACTIONS(8927), + [aux_sym_def_type_statement_token5] = ACTIONS(8927), + [aux_sym_def_type_statement_token6] = ACTIONS(8927), + [aux_sym_def_type_statement_token7] = ACTIONS(8927), + [aux_sym_def_type_statement_token8] = ACTIONS(8927), + [aux_sym_def_type_statement_token9] = ACTIONS(8927), + [aux_sym_def_type_statement_token10] = ACTIONS(8927), + [aux_sym_def_type_statement_token11] = ACTIONS(8927), + [aux_sym_def_type_statement_token12] = ACTIONS(8927), + [aux_sym_def_type_statement_token13] = ACTIONS(8927), + [aux_sym_def_type_statement_token14] = ACTIONS(8927), + [aux_sym_call_statement_token1] = ACTIONS(8927), + [sym__ambiguous_call_statement] = ACTIONS(8927), + [aux_sym_addressof_expression_token1] = ACTIONS(8927), + [aux_sym_type_of_expression_token1] = ACTIONS(8927), + [aux_sym_unary_expression_token1] = ACTIONS(8927), + [sym_string_literal] = ACTIONS(8929), + [sym_number_literal] = ACTIONS(8929), + [aux_sym_boolean_literal_token1] = ACTIONS(8927), + [aux_sym_boolean_literal_token2] = ACTIONS(8927), + [sym_nothing_literal] = ACTIONS(8927), + [sym_null_literal] = ACTIONS(8927), + [sym_empty_literal] = ACTIONS(8927), + [sym_date_literal] = ACTIONS(8929), + [anon_sym_POUND] = ACTIONS(8927), + }, + [STATE(5005)] = { + [sym_identifier] = ACTIONS(8931), + [sym_newline] = ACTIONS(8933), + [anon_sym_COLON] = ACTIONS(8933), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8931), + [aux_sym_frm_property_statement_token1] = ACTIONS(8931), + [anon_sym_DOT] = ACTIONS(8931), + [anon_sym_BANG] = ACTIONS(8933), + [aux_sym__attribute_identifier_token1] = ACTIONS(8931), + [aux_sym_option_statement_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8931), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8931), + [aux_sym_preprocessor_const_token1] = ACTIONS(8931), + [sym_static_modifier] = ACTIONS(8931), + [sym__dim_keyword] = ACTIONS(8931), + [sym__redim_keyword] = ACTIONS(8931), + [aux_sym_get_accessor_token1] = ACTIONS(8931), + [aux_sym_set_accessor_token1] = ACTIONS(8931), + [aux_sym_const_declaration_token1] = ACTIONS(8931), + [anon_sym_LPAREN] = ACTIONS(8933), + [aux_sym_as_type_clause_token2] = ACTIONS(8931), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8931), + [aux_sym_visibility_token1] = ACTIONS(8931), + [aux_sym_visibility_token2] = ACTIONS(8931), + [aux_sym_elseif_fragment_token1] = ACTIONS(8931), + [aux_sym_else_fragment_token1] = ACTIONS(8931), + [aux_sym_select_statement_token1] = ACTIONS(8931), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8931), + [aux_sym__for_header_token1] = ACTIONS(8931), + [aux_sym_do_statement_token1] = ACTIONS(8931), + [aux_sym_do_condition_token1] = ACTIONS(8931), + [aux_sym_with_statement_token1] = ACTIONS(8931), + [aux_sym_exit_statement_token1] = ACTIONS(8931), + [sym_end_statement] = ACTIONS(8933), + [aux_sym_on_goto_statement_token1] = ACTIONS(8931), + [aux_sym_on_goto_statement_token2] = ACTIONS(8931), + [aux_sym_on_error_statement_token2] = ACTIONS(8931), + [sym__ambiguous_redim_statement] = ACTIONS(8933), + [aux_sym_erase_statement_token1] = ACTIONS(8931), + [aux_sym_open_statement_token1] = ACTIONS(8931), + [aux_sym_file_mode_token2] = ACTIONS(8931), + [aux_sym_file_access_token2] = ACTIONS(8931), + [aux_sym_file_lock_token2] = ACTIONS(8931), + [aux_sym_print_statement_token1] = ACTIONS(8931), + [anon_sym_PLUS] = ACTIONS(8933), + [anon_sym_DASH] = ACTIONS(8931), + [anon_sym_QMARK] = ACTIONS(8933), + [aux_sym_close_statement_token1] = ACTIONS(8931), + [aux_sym_put_statement_token1] = ACTIONS(8931), + [aux_sym_unlock_statement_token1] = ACTIONS(8931), + [aux_sym_seek_statement_token1] = ACTIONS(8931), + [sym_reset_statement] = ACTIONS(8931), + [aux_sym_raise_event_statement_token1] = ACTIONS(8931), + [sym_stop_statement] = ACTIONS(8931), + [sym_beep_statement] = ACTIONS(8931), + [aux_sym_unload_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token2] = ACTIONS(8931), + [aux_sym_def_type_statement_token3] = ACTIONS(8931), + [aux_sym_def_type_statement_token4] = ACTIONS(8931), + [aux_sym_def_type_statement_token5] = ACTIONS(8931), + [aux_sym_def_type_statement_token6] = ACTIONS(8931), + [aux_sym_def_type_statement_token7] = ACTIONS(8931), + [aux_sym_def_type_statement_token8] = ACTIONS(8931), + [aux_sym_def_type_statement_token9] = ACTIONS(8931), + [aux_sym_def_type_statement_token10] = ACTIONS(8931), + [aux_sym_def_type_statement_token11] = ACTIONS(8931), + [aux_sym_def_type_statement_token12] = ACTIONS(8931), + [aux_sym_def_type_statement_token13] = ACTIONS(8931), + [aux_sym_def_type_statement_token14] = ACTIONS(8931), + [aux_sym_call_statement_token1] = ACTIONS(8931), + [sym__ambiguous_call_statement] = ACTIONS(8931), + [aux_sym_addressof_expression_token1] = ACTIONS(8931), + [aux_sym_type_of_expression_token1] = ACTIONS(8931), + [aux_sym_unary_expression_token1] = ACTIONS(8931), + [sym_string_literal] = ACTIONS(8933), + [sym_number_literal] = ACTIONS(8933), + [aux_sym_boolean_literal_token1] = ACTIONS(8931), + [aux_sym_boolean_literal_token2] = ACTIONS(8931), + [sym_nothing_literal] = ACTIONS(8931), + [sym_null_literal] = ACTIONS(8931), + [sym_empty_literal] = ACTIONS(8931), + [sym_date_literal] = ACTIONS(8933), + [anon_sym_POUND] = ACTIONS(8931), + }, + [STATE(5006)] = { + [aux_sym__argument_sequence_repeat1] = STATE(6102), + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(6104), + [sym_identifier] = ACTIONS(7651), + [sym_newline] = ACTIONS(7653), + [anon_sym_COLON] = ACTIONS(7653), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7651), + [aux_sym_frm_property_statement_token1] = ACTIONS(7651), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_BANG] = ACTIONS(7653), + [aux_sym__attribute_identifier_token1] = ACTIONS(7651), + [aux_sym_option_statement_token3] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7651), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7651), + [aux_sym_preprocessor_const_token1] = ACTIONS(7651), + [sym_static_modifier] = ACTIONS(7651), + [sym__dim_keyword] = ACTIONS(7651), + [sym__redim_keyword] = ACTIONS(7651), + [aux_sym_get_accessor_token1] = ACTIONS(7651), + [aux_sym_set_accessor_token1] = ACTIONS(7651), + [anon_sym_COMMA] = ACTIONS(10367), + [aux_sym_const_declaration_token1] = ACTIONS(7651), + [anon_sym_LPAREN] = ACTIONS(7653), + [aux_sym_as_type_clause_token2] = ACTIONS(7651), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7651), + [aux_sym_visibility_token1] = ACTIONS(7651), + [aux_sym_visibility_token2] = ACTIONS(7651), + [aux_sym_elseif_fragment_token1] = ACTIONS(7651), + [aux_sym_else_fragment_token1] = ACTIONS(7651), + [aux_sym_select_statement_token1] = ACTIONS(7651), + [aux_sym__for_header_token1] = ACTIONS(7651), + [aux_sym_do_statement_token1] = ACTIONS(7651), + [aux_sym_do_condition_token1] = ACTIONS(7651), + [aux_sym_with_statement_token1] = ACTIONS(7651), + [aux_sym_exit_statement_token1] = ACTIONS(7651), + [sym_end_statement] = ACTIONS(7653), + [aux_sym_on_goto_statement_token1] = ACTIONS(7651), + [aux_sym_on_goto_statement_token2] = ACTIONS(7651), + [aux_sym_on_error_statement_token2] = ACTIONS(7651), + [sym__ambiguous_redim_statement] = ACTIONS(7653), + [aux_sym_erase_statement_token1] = ACTIONS(7651), + [aux_sym_open_statement_token1] = ACTIONS(7651), + [aux_sym_file_mode_token2] = ACTIONS(7651), + [aux_sym_file_access_token2] = ACTIONS(7651), + [aux_sym_file_lock_token2] = ACTIONS(7651), + [aux_sym_print_statement_token1] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_SEMI] = ACTIONS(10369), + [anon_sym_QMARK] = ACTIONS(7653), + [aux_sym_close_statement_token1] = ACTIONS(7651), + [aux_sym_put_statement_token1] = ACTIONS(7651), + [aux_sym_unlock_statement_token1] = ACTIONS(7651), + [aux_sym_seek_statement_token1] = ACTIONS(7651), + [sym_reset_statement] = ACTIONS(7651), + [aux_sym_raise_event_statement_token1] = ACTIONS(7651), + [sym_stop_statement] = ACTIONS(7651), + [sym_beep_statement] = ACTIONS(7651), + [aux_sym_unload_statement_token1] = ACTIONS(7651), + [aux_sym_def_type_statement_token1] = ACTIONS(7651), + [aux_sym_def_type_statement_token2] = ACTIONS(7651), + [aux_sym_def_type_statement_token3] = ACTIONS(7651), + [aux_sym_def_type_statement_token4] = ACTIONS(7651), + [aux_sym_def_type_statement_token5] = ACTIONS(7651), + [aux_sym_def_type_statement_token6] = ACTIONS(7651), + [aux_sym_def_type_statement_token7] = ACTIONS(7651), + [aux_sym_def_type_statement_token8] = ACTIONS(7651), + [aux_sym_def_type_statement_token9] = ACTIONS(7651), + [aux_sym_def_type_statement_token10] = ACTIONS(7651), + [aux_sym_def_type_statement_token11] = ACTIONS(7651), + [aux_sym_def_type_statement_token12] = ACTIONS(7651), + [aux_sym_def_type_statement_token13] = ACTIONS(7651), + [aux_sym_def_type_statement_token14] = ACTIONS(7651), + [aux_sym_call_statement_token1] = ACTIONS(7651), + [sym__ambiguous_call_statement] = ACTIONS(7651), + [aux_sym_addressof_expression_token1] = ACTIONS(7651), + [aux_sym_type_of_expression_token1] = ACTIONS(7651), + [aux_sym_unary_expression_token1] = ACTIONS(7651), + [sym_string_literal] = ACTIONS(7653), + [sym_number_literal] = ACTIONS(7653), + [aux_sym_boolean_literal_token1] = ACTIONS(7651), + [aux_sym_boolean_literal_token2] = ACTIONS(7651), + [sym_nothing_literal] = ACTIONS(7651), + [sym_null_literal] = ACTIONS(7651), + [sym_empty_literal] = ACTIONS(7651), + [sym_date_literal] = ACTIONS(7653), + [anon_sym_POUND] = ACTIONS(7651), + }, + [STATE(5007)] = { + [sym_identifier] = ACTIONS(8660), + [sym_newline] = ACTIONS(8662), + [anon_sym_COLON] = ACTIONS(8662), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8660), + [aux_sym_frm_property_statement_token1] = ACTIONS(8660), + [anon_sym_DOT] = ACTIONS(8660), + [anon_sym_BANG] = ACTIONS(8662), + [aux_sym__attribute_identifier_token1] = ACTIONS(8660), + [aux_sym_option_statement_token3] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8660), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8660), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8660), + [aux_sym_preprocessor_const_token1] = ACTIONS(8660), + [sym_static_modifier] = ACTIONS(8660), + [sym__dim_keyword] = ACTIONS(8660), + [sym__redim_keyword] = ACTIONS(8660), + [aux_sym_get_accessor_token1] = ACTIONS(8660), + [aux_sym_set_accessor_token1] = ACTIONS(8660), + [anon_sym_COMMA] = ACTIONS(10371), + [aux_sym_const_declaration_token1] = ACTIONS(8660), + [anon_sym_LPAREN] = ACTIONS(8662), + [aux_sym_as_type_clause_token2] = ACTIONS(8660), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8660), + [aux_sym_visibility_token1] = ACTIONS(8660), + [aux_sym_visibility_token2] = ACTIONS(8660), + [aux_sym_elseif_fragment_token1] = ACTIONS(8660), + [aux_sym_else_fragment_token1] = ACTIONS(8660), + [aux_sym_select_statement_token1] = ACTIONS(8660), + [aux_sym__for_header_token1] = ACTIONS(8660), + [aux_sym_do_statement_token1] = ACTIONS(8660), + [aux_sym_do_condition_token1] = ACTIONS(8660), + [aux_sym_with_statement_token1] = ACTIONS(8660), + [aux_sym_exit_statement_token1] = ACTIONS(8660), + [sym_end_statement] = ACTIONS(8662), + [aux_sym_on_goto_statement_token1] = ACTIONS(8660), + [aux_sym_on_goto_statement_token2] = ACTIONS(8660), + [aux_sym_on_error_statement_token2] = ACTIONS(8660), + [sym__ambiguous_redim_statement] = ACTIONS(8662), + [aux_sym_erase_statement_token1] = ACTIONS(8660), + [aux_sym_open_statement_token1] = ACTIONS(8660), + [aux_sym_file_mode_token2] = ACTIONS(8660), + [aux_sym_file_access_token2] = ACTIONS(8660), + [aux_sym_file_lock_token2] = ACTIONS(8660), + [aux_sym_print_statement_token1] = ACTIONS(8660), + [anon_sym_PLUS] = ACTIONS(8662), + [anon_sym_DASH] = ACTIONS(8660), + [anon_sym_QMARK] = ACTIONS(8662), + [aux_sym_close_statement_token1] = ACTIONS(8660), + [aux_sym_put_statement_token1] = ACTIONS(8660), + [aux_sym_unlock_statement_token1] = ACTIONS(8660), + [aux_sym_seek_statement_token1] = ACTIONS(8660), + [sym_reset_statement] = ACTIONS(8660), + [aux_sym_raise_event_statement_token1] = ACTIONS(8660), + [sym_stop_statement] = ACTIONS(8660), + [sym_beep_statement] = ACTIONS(8660), + [aux_sym_unload_statement_token1] = ACTIONS(8660), + [aux_sym_def_type_statement_token1] = ACTIONS(8660), + [aux_sym_def_type_statement_token2] = ACTIONS(8660), + [aux_sym_def_type_statement_token3] = ACTIONS(8660), + [aux_sym_def_type_statement_token4] = ACTIONS(8660), + [aux_sym_def_type_statement_token5] = ACTIONS(8660), + [aux_sym_def_type_statement_token6] = ACTIONS(8660), + [aux_sym_def_type_statement_token7] = ACTIONS(8660), + [aux_sym_def_type_statement_token8] = ACTIONS(8660), + [aux_sym_def_type_statement_token9] = ACTIONS(8660), + [aux_sym_def_type_statement_token10] = ACTIONS(8660), + [aux_sym_def_type_statement_token11] = ACTIONS(8660), + [aux_sym_def_type_statement_token12] = ACTIONS(8660), + [aux_sym_def_type_statement_token13] = ACTIONS(8660), + [aux_sym_def_type_statement_token14] = ACTIONS(8660), + [aux_sym_call_statement_token1] = ACTIONS(8660), + [sym__ambiguous_call_statement] = ACTIONS(8660), + [aux_sym_addressof_expression_token1] = ACTIONS(8660), + [aux_sym_type_of_expression_token1] = ACTIONS(8660), + [aux_sym_unary_expression_token1] = ACTIONS(8660), + [sym_string_literal] = ACTIONS(8662), + [sym_number_literal] = ACTIONS(8662), + [aux_sym_boolean_literal_token1] = ACTIONS(8660), + [aux_sym_boolean_literal_token2] = ACTIONS(8660), + [sym_nothing_literal] = ACTIONS(8660), + [sym_null_literal] = ACTIONS(8660), + [sym_empty_literal] = ACTIONS(8660), + [sym_date_literal] = ACTIONS(8662), + [anon_sym_POUND] = ACTIONS(8660), + }, + [STATE(5008)] = { + [sym_identifier] = ACTIONS(8666), + [sym_newline] = ACTIONS(8668), + [anon_sym_COLON] = ACTIONS(8668), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8666), + [aux_sym_frm_property_statement_token1] = ACTIONS(8666), + [anon_sym_DOT] = ACTIONS(8666), + [anon_sym_BANG] = ACTIONS(8668), + [aux_sym__attribute_identifier_token1] = ACTIONS(8666), + [aux_sym_option_statement_token3] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8666), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8666), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8666), + [aux_sym_preprocessor_const_token1] = ACTIONS(8666), + [sym_static_modifier] = ACTIONS(8666), + [sym__dim_keyword] = ACTIONS(8666), + [sym__redim_keyword] = ACTIONS(8666), + [aux_sym_get_accessor_token1] = ACTIONS(8666), + [aux_sym_set_accessor_token1] = ACTIONS(8666), + [anon_sym_COMMA] = ACTIONS(10373), + [aux_sym_const_declaration_token1] = ACTIONS(8666), + [anon_sym_LPAREN] = ACTIONS(8668), + [aux_sym_as_type_clause_token2] = ACTIONS(8666), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8666), + [aux_sym_visibility_token1] = ACTIONS(8666), + [aux_sym_visibility_token2] = ACTIONS(8666), + [aux_sym_elseif_fragment_token1] = ACTIONS(8666), + [aux_sym_else_fragment_token1] = ACTIONS(8666), + [aux_sym_select_statement_token1] = ACTIONS(8666), + [aux_sym__for_header_token1] = ACTIONS(8666), + [aux_sym_do_statement_token1] = ACTIONS(8666), + [aux_sym_do_condition_token1] = ACTIONS(8666), + [aux_sym_with_statement_token1] = ACTIONS(8666), + [aux_sym_exit_statement_token1] = ACTIONS(8666), + [sym_end_statement] = ACTIONS(8668), + [aux_sym_on_goto_statement_token1] = ACTIONS(8666), + [aux_sym_on_goto_statement_token2] = ACTIONS(8666), + [aux_sym_on_error_statement_token2] = ACTIONS(8666), + [sym__ambiguous_redim_statement] = ACTIONS(8668), + [aux_sym_erase_statement_token1] = ACTIONS(8666), + [aux_sym_open_statement_token1] = ACTIONS(8666), + [aux_sym_file_mode_token2] = ACTIONS(8666), + [aux_sym_file_access_token2] = ACTIONS(8666), + [aux_sym_file_lock_token2] = ACTIONS(8666), + [aux_sym_print_statement_token1] = ACTIONS(8666), + [anon_sym_PLUS] = ACTIONS(8668), + [anon_sym_DASH] = ACTIONS(8666), + [anon_sym_QMARK] = ACTIONS(8668), + [aux_sym_close_statement_token1] = ACTIONS(8666), + [aux_sym_put_statement_token1] = ACTIONS(8666), + [aux_sym_unlock_statement_token1] = ACTIONS(8666), + [aux_sym_seek_statement_token1] = ACTIONS(8666), + [sym_reset_statement] = ACTIONS(8666), + [aux_sym_raise_event_statement_token1] = ACTIONS(8666), + [sym_stop_statement] = ACTIONS(8666), + [sym_beep_statement] = ACTIONS(8666), + [aux_sym_unload_statement_token1] = ACTIONS(8666), + [aux_sym_def_type_statement_token1] = ACTIONS(8666), + [aux_sym_def_type_statement_token2] = ACTIONS(8666), + [aux_sym_def_type_statement_token3] = ACTIONS(8666), + [aux_sym_def_type_statement_token4] = ACTIONS(8666), + [aux_sym_def_type_statement_token5] = ACTIONS(8666), + [aux_sym_def_type_statement_token6] = ACTIONS(8666), + [aux_sym_def_type_statement_token7] = ACTIONS(8666), + [aux_sym_def_type_statement_token8] = ACTIONS(8666), + [aux_sym_def_type_statement_token9] = ACTIONS(8666), + [aux_sym_def_type_statement_token10] = ACTIONS(8666), + [aux_sym_def_type_statement_token11] = ACTIONS(8666), + [aux_sym_def_type_statement_token12] = ACTIONS(8666), + [aux_sym_def_type_statement_token13] = ACTIONS(8666), + [aux_sym_def_type_statement_token14] = ACTIONS(8666), + [aux_sym_call_statement_token1] = ACTIONS(8666), + [sym__ambiguous_call_statement] = ACTIONS(8666), + [aux_sym_addressof_expression_token1] = ACTIONS(8666), + [aux_sym_type_of_expression_token1] = ACTIONS(8666), + [aux_sym_unary_expression_token1] = ACTIONS(8666), + [sym_string_literal] = ACTIONS(8668), + [sym_number_literal] = ACTIONS(8668), + [aux_sym_boolean_literal_token1] = ACTIONS(8666), + [aux_sym_boolean_literal_token2] = ACTIONS(8666), + [sym_nothing_literal] = ACTIONS(8666), + [sym_null_literal] = ACTIONS(8666), + [sym_empty_literal] = ACTIONS(8666), + [sym_date_literal] = ACTIONS(8668), + [anon_sym_POUND] = ACTIONS(8666), + }, + [STATE(5009)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(4987), + [sym_identifier] = ACTIONS(8935), + [sym_newline] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(10349), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8935), + [aux_sym_frm_property_statement_token1] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_BANG] = ACTIONS(8937), + [aux_sym__attribute_identifier_token1] = ACTIONS(8935), + [aux_sym_option_statement_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8935), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8935), + [aux_sym_preprocessor_const_token1] = ACTIONS(8935), + [sym_static_modifier] = ACTIONS(8935), + [sym__dim_keyword] = ACTIONS(8935), + [sym__redim_keyword] = ACTIONS(8935), + [aux_sym_get_accessor_token1] = ACTIONS(8935), + [aux_sym_set_accessor_token1] = ACTIONS(8935), + [aux_sym_const_declaration_token1] = ACTIONS(8935), + [anon_sym_LPAREN] = ACTIONS(8937), + [aux_sym_as_type_clause_token2] = ACTIONS(8935), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8935), + [aux_sym_visibility_token1] = ACTIONS(8935), + [aux_sym_visibility_token2] = ACTIONS(8935), + [aux_sym_elseif_fragment_token1] = ACTIONS(8935), + [aux_sym_else_fragment_token1] = ACTIONS(8935), + [aux_sym_select_statement_token1] = ACTIONS(8935), + [aux_sym__for_header_token1] = ACTIONS(8935), + [aux_sym_do_statement_token1] = ACTIONS(8935), + [aux_sym_do_condition_token1] = ACTIONS(8935), + [aux_sym_with_statement_token1] = ACTIONS(8935), + [aux_sym_exit_statement_token1] = ACTIONS(8935), + [sym_end_statement] = ACTIONS(8937), + [aux_sym_on_goto_statement_token1] = ACTIONS(8935), + [aux_sym_on_goto_statement_token2] = ACTIONS(8935), + [aux_sym_on_error_statement_token2] = ACTIONS(8935), + [sym__ambiguous_redim_statement] = ACTIONS(8937), + [aux_sym_erase_statement_token1] = ACTIONS(8935), + [aux_sym_open_statement_token1] = ACTIONS(8935), + [aux_sym_file_mode_token2] = ACTIONS(8935), + [aux_sym_file_access_token2] = ACTIONS(8935), + [aux_sym_file_lock_token2] = ACTIONS(8935), + [aux_sym_print_statement_token1] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [aux_sym_close_statement_token1] = ACTIONS(8935), + [aux_sym_put_statement_token1] = ACTIONS(8935), + [aux_sym_unlock_statement_token1] = ACTIONS(8935), + [aux_sym_seek_statement_token1] = ACTIONS(8935), + [sym_reset_statement] = ACTIONS(8935), + [aux_sym_raise_event_statement_token1] = ACTIONS(8935), + [sym_stop_statement] = ACTIONS(8935), + [sym_beep_statement] = ACTIONS(8935), + [aux_sym_unload_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token2] = ACTIONS(8935), + [aux_sym_def_type_statement_token3] = ACTIONS(8935), + [aux_sym_def_type_statement_token4] = ACTIONS(8935), + [aux_sym_def_type_statement_token5] = ACTIONS(8935), + [aux_sym_def_type_statement_token6] = ACTIONS(8935), + [aux_sym_def_type_statement_token7] = ACTIONS(8935), + [aux_sym_def_type_statement_token8] = ACTIONS(8935), + [aux_sym_def_type_statement_token9] = ACTIONS(8935), + [aux_sym_def_type_statement_token10] = ACTIONS(8935), + [aux_sym_def_type_statement_token11] = ACTIONS(8935), + [aux_sym_def_type_statement_token12] = ACTIONS(8935), + [aux_sym_def_type_statement_token13] = ACTIONS(8935), + [aux_sym_def_type_statement_token14] = ACTIONS(8935), + [aux_sym_call_statement_token1] = ACTIONS(8935), + [sym__ambiguous_call_statement] = ACTIONS(8935), + [aux_sym_addressof_expression_token1] = ACTIONS(8935), + [aux_sym_type_of_expression_token1] = ACTIONS(8935), + [aux_sym_unary_expression_token1] = ACTIONS(8935), + [sym_string_literal] = ACTIONS(8937), + [sym_number_literal] = ACTIONS(8937), + [aux_sym_boolean_literal_token1] = ACTIONS(8935), + [aux_sym_boolean_literal_token2] = ACTIONS(8935), + [sym_nothing_literal] = ACTIONS(8935), + [sym_null_literal] = ACTIONS(8935), + [sym_empty_literal] = ACTIONS(8935), + [sym_date_literal] = ACTIONS(8937), + [anon_sym_POUND] = ACTIONS(8935), + }, + [STATE(5010)] = { + [sym_array_bounds] = STATE(5407), + [sym_identifier] = ACTIONS(8070), + [sym_newline] = ACTIONS(8072), + [anon_sym_COLON] = ACTIONS(8072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8070), + [aux_sym_frm_property_statement_token1] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(8072), + [anon_sym_DOT] = ACTIONS(8070), + [anon_sym_BANG] = ACTIONS(8072), + [aux_sym__attribute_identifier_token1] = ACTIONS(8070), + [aux_sym_option_statement_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8070), + [aux_sym_preprocessor_const_token1] = ACTIONS(8070), + [sym_static_modifier] = ACTIONS(8070), + [sym__dim_keyword] = ACTIONS(8070), + [sym__redim_keyword] = ACTIONS(8070), + [aux_sym_get_accessor_token1] = ACTIONS(8070), + [aux_sym_set_accessor_token1] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [aux_sym_const_declaration_token1] = ACTIONS(8070), + [anon_sym_LPAREN] = ACTIONS(10038), + [aux_sym_as_type_clause_token2] = ACTIONS(8070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8070), + [aux_sym_visibility_token1] = ACTIONS(8070), + [aux_sym_visibility_token2] = ACTIONS(8070), + [aux_sym_elseif_fragment_token1] = ACTIONS(8070), + [aux_sym_else_fragment_token1] = ACTIONS(8070), + [aux_sym_select_statement_token1] = ACTIONS(8070), + [aux_sym__for_header_token1] = ACTIONS(8070), + [aux_sym_do_statement_token1] = ACTIONS(8070), + [aux_sym_do_condition_token1] = ACTIONS(8070), + [aux_sym_with_statement_token1] = ACTIONS(8070), + [aux_sym_exit_statement_token1] = ACTIONS(8070), + [sym_end_statement] = ACTIONS(8072), + [aux_sym_on_goto_statement_token1] = ACTIONS(8070), + [aux_sym_on_goto_statement_token2] = ACTIONS(8070), + [aux_sym_on_error_statement_token2] = ACTIONS(8070), + [sym__ambiguous_redim_statement] = ACTIONS(8072), + [aux_sym_erase_statement_token1] = ACTIONS(8070), + [aux_sym_open_statement_token1] = ACTIONS(8070), + [aux_sym_file_mode_token2] = ACTIONS(8070), + [aux_sym_file_access_token2] = ACTIONS(8070), + [aux_sym_file_lock_token2] = ACTIONS(8070), + [aux_sym_print_statement_token1] = ACTIONS(8070), + [anon_sym_PLUS] = ACTIONS(8072), + [anon_sym_DASH] = ACTIONS(8070), + [anon_sym_QMARK] = ACTIONS(8072), + [aux_sym_close_statement_token1] = ACTIONS(8070), + [aux_sym_put_statement_token1] = ACTIONS(8070), + [aux_sym_unlock_statement_token1] = ACTIONS(8070), + [aux_sym_seek_statement_token1] = ACTIONS(8070), + [sym_reset_statement] = ACTIONS(8070), + [aux_sym_raise_event_statement_token1] = ACTIONS(8070), + [sym_stop_statement] = ACTIONS(8070), + [sym_beep_statement] = ACTIONS(8070), + [aux_sym_unload_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token2] = ACTIONS(8070), + [aux_sym_def_type_statement_token3] = ACTIONS(8070), + [aux_sym_def_type_statement_token4] = ACTIONS(8070), + [aux_sym_def_type_statement_token5] = ACTIONS(8070), + [aux_sym_def_type_statement_token6] = ACTIONS(8070), + [aux_sym_def_type_statement_token7] = ACTIONS(8070), + [aux_sym_def_type_statement_token8] = ACTIONS(8070), + [aux_sym_def_type_statement_token9] = ACTIONS(8070), + [aux_sym_def_type_statement_token10] = ACTIONS(8070), + [aux_sym_def_type_statement_token11] = ACTIONS(8070), + [aux_sym_def_type_statement_token12] = ACTIONS(8070), + [aux_sym_def_type_statement_token13] = ACTIONS(8070), + [aux_sym_def_type_statement_token14] = ACTIONS(8070), + [aux_sym_call_statement_token1] = ACTIONS(8070), + [sym__ambiguous_call_statement] = ACTIONS(8070), + [aux_sym_addressof_expression_token1] = ACTIONS(8070), + [aux_sym_type_of_expression_token1] = ACTIONS(8070), + [aux_sym_unary_expression_token1] = ACTIONS(8070), + [sym_string_literal] = ACTIONS(8072), + [sym_number_literal] = ACTIONS(8072), + [aux_sym_boolean_literal_token1] = ACTIONS(8070), + [aux_sym_boolean_literal_token2] = ACTIONS(8070), + [sym_nothing_literal] = ACTIONS(8070), + [sym_null_literal] = ACTIONS(8070), + [sym_empty_literal] = ACTIONS(8070), + [sym_date_literal] = ACTIONS(8072), + [anon_sym_POUND] = ACTIONS(8070), + }, + [STATE(5011)] = { + [sym_identifier] = ACTIONS(7984), + [sym_newline] = ACTIONS(7986), + [anon_sym_COLON] = ACTIONS(7986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7984), + [aux_sym_frm_property_statement_token1] = ACTIONS(7984), + [anon_sym_EQ] = ACTIONS(7986), + [anon_sym_DOT] = ACTIONS(7984), + [anon_sym_BANG] = ACTIONS(7986), + [aux_sym__attribute_identifier_token1] = ACTIONS(7984), + [aux_sym_option_statement_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7984), + [aux_sym_preprocessor_const_token1] = ACTIONS(7984), + [sym_static_modifier] = ACTIONS(7984), + [sym__dim_keyword] = ACTIONS(7984), + [sym__redim_keyword] = ACTIONS(7984), + [aux_sym_get_accessor_token1] = ACTIONS(7984), + [aux_sym_set_accessor_token1] = ACTIONS(7984), + [anon_sym_COMMA] = ACTIONS(7986), + [aux_sym_const_declaration_token1] = ACTIONS(7984), + [anon_sym_LPAREN] = ACTIONS(7986), + [aux_sym_as_type_clause_token1] = ACTIONS(7984), + [aux_sym_as_type_clause_token2] = ACTIONS(7984), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7984), + [aux_sym_visibility_token1] = ACTIONS(7984), + [aux_sym_visibility_token2] = ACTIONS(7984), + [aux_sym_elseif_fragment_token1] = ACTIONS(7984), + [aux_sym_else_fragment_token1] = ACTIONS(7984), + [aux_sym_select_statement_token1] = ACTIONS(7984), + [aux_sym__for_header_token1] = ACTIONS(7984), + [aux_sym_do_statement_token1] = ACTIONS(7984), + [aux_sym_do_condition_token1] = ACTIONS(7984), + [aux_sym_while_statement_token1] = ACTIONS(7984), + [aux_sym_with_statement_token1] = ACTIONS(7984), + [aux_sym_exit_statement_token1] = ACTIONS(7984), + [sym_end_statement] = ACTIONS(7986), + [aux_sym_on_goto_statement_token1] = ACTIONS(7984), + [aux_sym_on_goto_statement_token2] = ACTIONS(7984), + [aux_sym_on_error_statement_token2] = ACTIONS(7984), + [sym__ambiguous_redim_statement] = ACTIONS(7986), + [aux_sym_erase_statement_token1] = ACTIONS(7984), + [aux_sym_open_statement_token1] = ACTIONS(7984), + [aux_sym_file_mode_token2] = ACTIONS(7984), + [aux_sym_file_access_token2] = ACTIONS(7984), + [aux_sym_file_lock_token2] = ACTIONS(7984), + [aux_sym_print_statement_token1] = ACTIONS(7984), + [anon_sym_PLUS] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(7984), + [anon_sym_QMARK] = ACTIONS(7986), + [aux_sym_close_statement_token1] = ACTIONS(7984), + [aux_sym_put_statement_token1] = ACTIONS(7984), + [aux_sym_unlock_statement_token1] = ACTIONS(7984), + [aux_sym_seek_statement_token1] = ACTIONS(7984), + [sym_reset_statement] = ACTIONS(7984), + [aux_sym_raise_event_statement_token1] = ACTIONS(7984), + [sym_stop_statement] = ACTIONS(7984), + [sym_beep_statement] = ACTIONS(7984), + [aux_sym_unload_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token2] = ACTIONS(7984), + [aux_sym_def_type_statement_token3] = ACTIONS(7984), + [aux_sym_def_type_statement_token4] = ACTIONS(7984), + [aux_sym_def_type_statement_token5] = ACTIONS(7984), + [aux_sym_def_type_statement_token6] = ACTIONS(7984), + [aux_sym_def_type_statement_token7] = ACTIONS(7984), + [aux_sym_def_type_statement_token8] = ACTIONS(7984), + [aux_sym_def_type_statement_token9] = ACTIONS(7984), + [aux_sym_def_type_statement_token10] = ACTIONS(7984), + [aux_sym_def_type_statement_token11] = ACTIONS(7984), + [aux_sym_def_type_statement_token12] = ACTIONS(7984), + [aux_sym_def_type_statement_token13] = ACTIONS(7984), + [aux_sym_def_type_statement_token14] = ACTIONS(7984), + [aux_sym_call_statement_token1] = ACTIONS(7984), + [sym__ambiguous_call_statement] = ACTIONS(7984), + [aux_sym_addressof_expression_token1] = ACTIONS(7984), + [aux_sym_type_of_expression_token1] = ACTIONS(7984), + [aux_sym_unary_expression_token1] = ACTIONS(7984), + [sym_string_literal] = ACTIONS(7986), + [sym_number_literal] = ACTIONS(7986), + [aux_sym_boolean_literal_token1] = ACTIONS(7984), + [aux_sym_boolean_literal_token2] = ACTIONS(7984), + [sym_nothing_literal] = ACTIONS(7984), + [sym_null_literal] = ACTIONS(7984), + [sym_empty_literal] = ACTIONS(7984), + [sym_date_literal] = ACTIONS(7986), + [anon_sym_POUND] = ACTIONS(7984), + }, + [STATE(5012)] = { + [sym_identifier] = ACTIONS(8980), + [sym_newline] = ACTIONS(8982), + [anon_sym_COLON] = ACTIONS(8982), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8980), + [aux_sym_frm_property_statement_token1] = ACTIONS(8980), + [anon_sym_DOT] = ACTIONS(8980), + [anon_sym_BANG] = ACTIONS(8982), + [aux_sym__attribute_identifier_token1] = ACTIONS(8980), + [aux_sym_option_statement_token3] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8980), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8980), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8980), + [aux_sym_preprocessor_const_token1] = ACTIONS(8980), + [sym_static_modifier] = ACTIONS(8980), + [sym__dim_keyword] = ACTIONS(8980), + [sym__redim_keyword] = ACTIONS(8980), + [aux_sym_get_accessor_token1] = ACTIONS(8980), + [aux_sym_set_accessor_token1] = ACTIONS(8980), + [aux_sym_const_declaration_token1] = ACTIONS(8980), + [anon_sym_LPAREN] = ACTIONS(8982), + [aux_sym_as_type_clause_token2] = ACTIONS(8980), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8980), + [aux_sym_visibility_token1] = ACTIONS(8980), + [aux_sym_visibility_token2] = ACTIONS(8980), + [aux_sym_elseif_fragment_token1] = ACTIONS(8980), + [aux_sym_else_fragment_token1] = ACTIONS(8980), + [aux_sym_select_statement_token1] = ACTIONS(8980), + [aux_sym__for_header_token1] = ACTIONS(8980), + [aux_sym_do_statement_token1] = ACTIONS(8980), + [aux_sym_do_condition_token1] = ACTIONS(8980), + [aux_sym_with_statement_token1] = ACTIONS(8980), + [aux_sym_exit_statement_token1] = ACTIONS(8980), + [sym_end_statement] = ACTIONS(8982), + [aux_sym_on_goto_statement_token1] = ACTIONS(8980), + [aux_sym_on_goto_statement_token2] = ACTIONS(8980), + [aux_sym_on_error_statement_token2] = ACTIONS(8980), + [sym__ambiguous_redim_statement] = ACTIONS(8982), + [aux_sym_erase_statement_token1] = ACTIONS(8980), + [aux_sym_open_statement_token1] = ACTIONS(8980), + [aux_sym_open_statement_token3] = ACTIONS(10375), + [aux_sym_file_mode_token2] = ACTIONS(8980), + [aux_sym_file_access_token2] = ACTIONS(8980), + [aux_sym_file_lock_token2] = ACTIONS(8980), + [aux_sym_print_statement_token1] = ACTIONS(8980), + [anon_sym_PLUS] = ACTIONS(8982), + [anon_sym_DASH] = ACTIONS(8980), + [anon_sym_QMARK] = ACTIONS(8982), + [aux_sym_close_statement_token1] = ACTIONS(8980), + [aux_sym_put_statement_token1] = ACTIONS(8980), + [aux_sym_unlock_statement_token1] = ACTIONS(8980), + [aux_sym_seek_statement_token1] = ACTIONS(8980), + [sym_reset_statement] = ACTIONS(8980), + [aux_sym_raise_event_statement_token1] = ACTIONS(8980), + [sym_stop_statement] = ACTIONS(8980), + [sym_beep_statement] = ACTIONS(8980), + [aux_sym_unload_statement_token1] = ACTIONS(8980), + [aux_sym_def_type_statement_token1] = ACTIONS(8980), + [aux_sym_def_type_statement_token2] = ACTIONS(8980), + [aux_sym_def_type_statement_token3] = ACTIONS(8980), + [aux_sym_def_type_statement_token4] = ACTIONS(8980), + [aux_sym_def_type_statement_token5] = ACTIONS(8980), + [aux_sym_def_type_statement_token6] = ACTIONS(8980), + [aux_sym_def_type_statement_token7] = ACTIONS(8980), + [aux_sym_def_type_statement_token8] = ACTIONS(8980), + [aux_sym_def_type_statement_token9] = ACTIONS(8980), + [aux_sym_def_type_statement_token10] = ACTIONS(8980), + [aux_sym_def_type_statement_token11] = ACTIONS(8980), + [aux_sym_def_type_statement_token12] = ACTIONS(8980), + [aux_sym_def_type_statement_token13] = ACTIONS(8980), + [aux_sym_def_type_statement_token14] = ACTIONS(8980), + [aux_sym_call_statement_token1] = ACTIONS(8980), + [sym__ambiguous_call_statement] = ACTIONS(8980), + [aux_sym_addressof_expression_token1] = ACTIONS(8980), + [aux_sym_type_of_expression_token1] = ACTIONS(8980), + [aux_sym_unary_expression_token1] = ACTIONS(8980), + [sym_string_literal] = ACTIONS(8982), + [sym_number_literal] = ACTIONS(8982), + [aux_sym_boolean_literal_token1] = ACTIONS(8980), + [aux_sym_boolean_literal_token2] = ACTIONS(8980), + [sym_nothing_literal] = ACTIONS(8980), + [sym_null_literal] = ACTIONS(8980), + [sym_empty_literal] = ACTIONS(8980), + [sym_date_literal] = ACTIONS(8982), + [anon_sym_POUND] = ACTIONS(8980), + }, + [STATE(5013)] = { + [sym_array_bounds] = STATE(5142), + [sym_identifier] = ACTIONS(8070), + [sym_newline] = ACTIONS(8072), + [anon_sym_COLON] = ACTIONS(8072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8070), + [aux_sym_frm_property_statement_token1] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(8072), + [anon_sym_DOT] = ACTIONS(8070), + [anon_sym_BANG] = ACTIONS(8072), + [aux_sym__attribute_identifier_token1] = ACTIONS(8070), + [aux_sym_option_statement_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8070), + [aux_sym_preprocessor_const_token1] = ACTIONS(8070), + [sym_static_modifier] = ACTIONS(8070), + [sym__dim_keyword] = ACTIONS(8070), + [sym__redim_keyword] = ACTIONS(8070), + [aux_sym_get_accessor_token1] = ACTIONS(8070), + [aux_sym_set_accessor_token1] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [aux_sym_const_declaration_token1] = ACTIONS(8070), + [anon_sym_LPAREN] = ACTIONS(10086), + [aux_sym_as_type_clause_token2] = ACTIONS(8070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8070), + [aux_sym_visibility_token1] = ACTIONS(8070), + [aux_sym_visibility_token2] = ACTIONS(8070), + [aux_sym_elseif_fragment_token1] = ACTIONS(8070), + [aux_sym_else_fragment_token1] = ACTIONS(8070), + [aux_sym_select_statement_token1] = ACTIONS(8070), + [aux_sym__for_header_token1] = ACTIONS(8070), + [aux_sym_do_statement_token1] = ACTIONS(8070), + [aux_sym_do_statement_token2] = ACTIONS(8070), + [aux_sym_do_condition_token1] = ACTIONS(8070), + [aux_sym_with_statement_token1] = ACTIONS(8070), + [aux_sym_exit_statement_token1] = ACTIONS(8070), + [sym_end_statement] = ACTIONS(8072), + [aux_sym_on_goto_statement_token1] = ACTIONS(8070), + [aux_sym_on_goto_statement_token2] = ACTIONS(8070), + [aux_sym_on_error_statement_token2] = ACTIONS(8070), + [sym__ambiguous_redim_statement] = ACTIONS(8072), + [aux_sym_erase_statement_token1] = ACTIONS(8070), + [aux_sym_open_statement_token1] = ACTIONS(8070), + [aux_sym_file_mode_token2] = ACTIONS(8070), + [aux_sym_file_access_token2] = ACTIONS(8070), + [aux_sym_file_lock_token2] = ACTIONS(8070), + [aux_sym_print_statement_token1] = ACTIONS(8070), + [anon_sym_PLUS] = ACTIONS(8072), + [anon_sym_DASH] = ACTIONS(8070), + [anon_sym_QMARK] = ACTIONS(8072), + [aux_sym_close_statement_token1] = ACTIONS(8070), + [aux_sym_put_statement_token1] = ACTIONS(8070), + [aux_sym_unlock_statement_token1] = ACTIONS(8070), + [aux_sym_seek_statement_token1] = ACTIONS(8070), + [sym_reset_statement] = ACTIONS(8070), + [aux_sym_raise_event_statement_token1] = ACTIONS(8070), + [sym_stop_statement] = ACTIONS(8070), + [sym_beep_statement] = ACTIONS(8070), + [aux_sym_unload_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token2] = ACTIONS(8070), + [aux_sym_def_type_statement_token3] = ACTIONS(8070), + [aux_sym_def_type_statement_token4] = ACTIONS(8070), + [aux_sym_def_type_statement_token5] = ACTIONS(8070), + [aux_sym_def_type_statement_token6] = ACTIONS(8070), + [aux_sym_def_type_statement_token7] = ACTIONS(8070), + [aux_sym_def_type_statement_token8] = ACTIONS(8070), + [aux_sym_def_type_statement_token9] = ACTIONS(8070), + [aux_sym_def_type_statement_token10] = ACTIONS(8070), + [aux_sym_def_type_statement_token11] = ACTIONS(8070), + [aux_sym_def_type_statement_token12] = ACTIONS(8070), + [aux_sym_def_type_statement_token13] = ACTIONS(8070), + [aux_sym_def_type_statement_token14] = ACTIONS(8070), + [aux_sym_call_statement_token1] = ACTIONS(8070), + [sym__ambiguous_call_statement] = ACTIONS(8070), + [aux_sym_addressof_expression_token1] = ACTIONS(8070), + [aux_sym_type_of_expression_token1] = ACTIONS(8070), + [aux_sym_unary_expression_token1] = ACTIONS(8070), + [sym_string_literal] = ACTIONS(8072), + [sym_number_literal] = ACTIONS(8072), + [aux_sym_boolean_literal_token1] = ACTIONS(8070), + [aux_sym_boolean_literal_token2] = ACTIONS(8070), + [sym_nothing_literal] = ACTIONS(8070), + [sym_null_literal] = ACTIONS(8070), + [sym_empty_literal] = ACTIONS(8070), + [sym_date_literal] = ACTIONS(8072), + [anon_sym_POUND] = ACTIONS(8070), + }, + [STATE(5014)] = { + [sym_initializer] = STATE(6274), + [sym_identifier] = ACTIONS(8087), + [sym_newline] = ACTIONS(8089), + [anon_sym_COLON] = ACTIONS(8089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8087), + [aux_sym_frm_property_statement_token1] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(10011), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_BANG] = ACTIONS(8089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8087), + [aux_sym_option_statement_token3] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8087), + [aux_sym_preprocessor_const_token1] = ACTIONS(8087), + [sym_static_modifier] = ACTIONS(8087), + [sym__dim_keyword] = ACTIONS(8087), + [sym__redim_keyword] = ACTIONS(8087), + [aux_sym_get_accessor_token1] = ACTIONS(8087), + [aux_sym_set_accessor_token1] = ACTIONS(8087), + [anon_sym_COMMA] = ACTIONS(8089), + [aux_sym_const_declaration_token1] = ACTIONS(8087), + [anon_sym_LPAREN] = ACTIONS(8089), + [aux_sym_as_type_clause_token2] = ACTIONS(8087), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8087), + [aux_sym_visibility_token1] = ACTIONS(8087), + [aux_sym_visibility_token2] = ACTIONS(8087), + [aux_sym_elseif_fragment_token1] = ACTIONS(8087), + [aux_sym_else_fragment_token1] = ACTIONS(8087), + [aux_sym_select_statement_token1] = ACTIONS(8087), + [aux_sym_select_statement_token2] = ACTIONS(8087), + [aux_sym__for_header_token1] = ACTIONS(8087), + [aux_sym_do_statement_token1] = ACTIONS(8087), + [aux_sym_do_condition_token1] = ACTIONS(8087), + [aux_sym_with_statement_token1] = ACTIONS(8087), + [aux_sym_exit_statement_token1] = ACTIONS(8087), + [sym_end_statement] = ACTIONS(8089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8087), + [aux_sym_on_goto_statement_token2] = ACTIONS(8087), + [aux_sym_on_error_statement_token2] = ACTIONS(8087), + [sym__ambiguous_redim_statement] = ACTIONS(8089), + [aux_sym_erase_statement_token1] = ACTIONS(8087), + [aux_sym_open_statement_token1] = ACTIONS(8087), + [aux_sym_file_mode_token2] = ACTIONS(8087), + [aux_sym_file_access_token2] = ACTIONS(8087), + [aux_sym_file_lock_token2] = ACTIONS(8087), + [aux_sym_print_statement_token1] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [aux_sym_close_statement_token1] = ACTIONS(8087), + [aux_sym_put_statement_token1] = ACTIONS(8087), + [aux_sym_unlock_statement_token1] = ACTIONS(8087), + [aux_sym_seek_statement_token1] = ACTIONS(8087), + [sym_reset_statement] = ACTIONS(8087), + [aux_sym_raise_event_statement_token1] = ACTIONS(8087), + [sym_stop_statement] = ACTIONS(8087), + [sym_beep_statement] = ACTIONS(8087), + [aux_sym_unload_statement_token1] = ACTIONS(8087), + [aux_sym_def_type_statement_token1] = ACTIONS(8087), + [aux_sym_def_type_statement_token2] = ACTIONS(8087), + [aux_sym_def_type_statement_token3] = ACTIONS(8087), + [aux_sym_def_type_statement_token4] = ACTIONS(8087), + [aux_sym_def_type_statement_token5] = ACTIONS(8087), + [aux_sym_def_type_statement_token6] = ACTIONS(8087), + [aux_sym_def_type_statement_token7] = ACTIONS(8087), + [aux_sym_def_type_statement_token8] = ACTIONS(8087), + [aux_sym_def_type_statement_token9] = ACTIONS(8087), + [aux_sym_def_type_statement_token10] = ACTIONS(8087), + [aux_sym_def_type_statement_token11] = ACTIONS(8087), + [aux_sym_def_type_statement_token12] = ACTIONS(8087), + [aux_sym_def_type_statement_token13] = ACTIONS(8087), + [aux_sym_def_type_statement_token14] = ACTIONS(8087), + [aux_sym_call_statement_token1] = ACTIONS(8087), + [sym__ambiguous_call_statement] = ACTIONS(8087), + [aux_sym_addressof_expression_token1] = ACTIONS(8087), + [aux_sym_type_of_expression_token1] = ACTIONS(8087), + [aux_sym_unary_expression_token1] = ACTIONS(8087), + [sym_string_literal] = ACTIONS(8089), + [sym_number_literal] = ACTIONS(8089), + [aux_sym_boolean_literal_token1] = ACTIONS(8087), + [aux_sym_boolean_literal_token2] = ACTIONS(8087), + [sym_nothing_literal] = ACTIONS(8087), + [sym_null_literal] = ACTIONS(8087), + [sym_empty_literal] = ACTIONS(8087), + [sym_date_literal] = ACTIONS(8089), + [anon_sym_POUND] = ACTIONS(8087), + }, + [STATE(5015)] = { + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(7951), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(5016)] = { + [sym_identifier] = ACTIONS(8951), + [sym_newline] = ACTIONS(8953), + [anon_sym_COLON] = ACTIONS(8955), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8951), + [aux_sym_frm_property_statement_token1] = ACTIONS(8951), + [anon_sym_DOT] = ACTIONS(8951), + [anon_sym_BANG] = ACTIONS(8953), + [aux_sym__attribute_identifier_token1] = ACTIONS(8951), + [aux_sym_option_statement_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8951), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8951), + [aux_sym_preprocessor_const_token1] = ACTIONS(8951), + [sym_static_modifier] = ACTIONS(8951), + [sym__dim_keyword] = ACTIONS(8951), + [sym__redim_keyword] = ACTIONS(8951), + [aux_sym_get_accessor_token1] = ACTIONS(8951), + [aux_sym_set_accessor_token1] = ACTIONS(8951), + [aux_sym_const_declaration_token1] = ACTIONS(8951), + [anon_sym_LPAREN] = ACTIONS(8953), + [aux_sym_as_type_clause_token2] = ACTIONS(8951), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8951), + [aux_sym_visibility_token1] = ACTIONS(8951), + [aux_sym_visibility_token2] = ACTIONS(8951), + [aux_sym_elseif_fragment_token1] = ACTIONS(8951), + [aux_sym_else_fragment_token1] = ACTIONS(8951), + [aux_sym_select_statement_token1] = ACTIONS(8951), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8951), + [aux_sym__for_header_token1] = ACTIONS(8951), + [aux_sym_do_statement_token1] = ACTIONS(8951), + [aux_sym_do_condition_token1] = ACTIONS(8951), + [aux_sym_with_statement_token1] = ACTIONS(8951), + [aux_sym_exit_statement_token1] = ACTIONS(8951), + [sym_end_statement] = ACTIONS(8953), + [aux_sym_on_goto_statement_token1] = ACTIONS(8951), + [aux_sym_on_goto_statement_token2] = ACTIONS(8951), + [aux_sym_on_error_statement_token2] = ACTIONS(8951), + [sym__ambiguous_redim_statement] = ACTIONS(8953), + [aux_sym_erase_statement_token1] = ACTIONS(8951), + [aux_sym_open_statement_token1] = ACTIONS(8951), + [aux_sym_file_mode_token2] = ACTIONS(8951), + [aux_sym_file_access_token2] = ACTIONS(8951), + [aux_sym_file_lock_token2] = ACTIONS(8951), + [aux_sym_print_statement_token1] = ACTIONS(8951), + [anon_sym_PLUS] = ACTIONS(8953), + [anon_sym_DASH] = ACTIONS(8951), + [anon_sym_QMARK] = ACTIONS(8953), + [aux_sym_close_statement_token1] = ACTIONS(8951), + [aux_sym_put_statement_token1] = ACTIONS(8951), + [aux_sym_unlock_statement_token1] = ACTIONS(8951), + [aux_sym_seek_statement_token1] = ACTIONS(8951), + [sym_reset_statement] = ACTIONS(8951), + [aux_sym_raise_event_statement_token1] = ACTIONS(8951), + [sym_stop_statement] = ACTIONS(8951), + [sym_beep_statement] = ACTIONS(8951), + [aux_sym_unload_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token2] = ACTIONS(8951), + [aux_sym_def_type_statement_token3] = ACTIONS(8951), + [aux_sym_def_type_statement_token4] = ACTIONS(8951), + [aux_sym_def_type_statement_token5] = ACTIONS(8951), + [aux_sym_def_type_statement_token6] = ACTIONS(8951), + [aux_sym_def_type_statement_token7] = ACTIONS(8951), + [aux_sym_def_type_statement_token8] = ACTIONS(8951), + [aux_sym_def_type_statement_token9] = ACTIONS(8951), + [aux_sym_def_type_statement_token10] = ACTIONS(8951), + [aux_sym_def_type_statement_token11] = ACTIONS(8951), + [aux_sym_def_type_statement_token12] = ACTIONS(8951), + [aux_sym_def_type_statement_token13] = ACTIONS(8951), + [aux_sym_def_type_statement_token14] = ACTIONS(8951), + [aux_sym_call_statement_token1] = ACTIONS(8951), + [sym__ambiguous_call_statement] = ACTIONS(8951), + [aux_sym_addressof_expression_token1] = ACTIONS(8951), + [aux_sym_type_of_expression_token1] = ACTIONS(8951), + [aux_sym_unary_expression_token1] = ACTIONS(8951), + [sym_string_literal] = ACTIONS(8953), + [sym_number_literal] = ACTIONS(8955), + [aux_sym_boolean_literal_token1] = ACTIONS(8951), + [aux_sym_boolean_literal_token2] = ACTIONS(8951), + [sym_nothing_literal] = ACTIONS(8951), + [sym_null_literal] = ACTIONS(8951), + [sym_empty_literal] = ACTIONS(8951), + [sym_date_literal] = ACTIONS(8953), + [anon_sym_POUND] = ACTIONS(8951), + }, + [STATE(5017)] = { + [sym_identifier] = ACTIONS(8645), + [sym_newline] = ACTIONS(8647), + [anon_sym_COLON] = ACTIONS(8649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8645), + [aux_sym_frm_property_statement_token1] = ACTIONS(8645), + [anon_sym_DOT] = ACTIONS(8645), + [anon_sym_BANG] = ACTIONS(8647), + [aux_sym__attribute_identifier_token1] = ACTIONS(8645), + [aux_sym_option_statement_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8645), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8645), + [aux_sym_preprocessor_const_token1] = ACTIONS(8645), + [sym_static_modifier] = ACTIONS(8645), + [sym__dim_keyword] = ACTIONS(8645), + [sym__redim_keyword] = ACTIONS(8645), + [aux_sym_get_accessor_token1] = ACTIONS(8645), + [aux_sym_set_accessor_token1] = ACTIONS(8645), + [aux_sym_const_declaration_token1] = ACTIONS(8645), + [anon_sym_LPAREN] = ACTIONS(8647), + [aux_sym_as_type_clause_token2] = ACTIONS(8645), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8645), + [aux_sym_visibility_token1] = ACTIONS(8645), + [aux_sym_visibility_token2] = ACTIONS(8645), + [aux_sym_elseif_fragment_token1] = ACTIONS(8645), + [aux_sym_else_fragment_token1] = ACTIONS(8645), + [aux_sym_select_statement_token1] = ACTIONS(8645), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8645), + [aux_sym__for_header_token1] = ACTIONS(8645), + [aux_sym_do_statement_token1] = ACTIONS(8645), + [aux_sym_do_condition_token1] = ACTIONS(8645), + [aux_sym_with_statement_token1] = ACTIONS(8645), + [aux_sym_exit_statement_token1] = ACTIONS(8645), + [sym_end_statement] = ACTIONS(8647), + [aux_sym_on_goto_statement_token1] = ACTIONS(8645), + [aux_sym_on_goto_statement_token2] = ACTIONS(8645), + [aux_sym_on_error_statement_token2] = ACTIONS(8645), + [sym__ambiguous_redim_statement] = ACTIONS(8647), + [aux_sym_erase_statement_token1] = ACTIONS(8645), + [aux_sym_open_statement_token1] = ACTIONS(8645), + [aux_sym_file_mode_token2] = ACTIONS(8645), + [aux_sym_file_access_token2] = ACTIONS(8645), + [aux_sym_file_lock_token2] = ACTIONS(8645), + [aux_sym_print_statement_token1] = ACTIONS(8645), + [anon_sym_PLUS] = ACTIONS(8647), + [anon_sym_DASH] = ACTIONS(8645), + [anon_sym_QMARK] = ACTIONS(8647), + [aux_sym_close_statement_token1] = ACTIONS(8645), + [aux_sym_put_statement_token1] = ACTIONS(8645), + [aux_sym_unlock_statement_token1] = ACTIONS(8645), + [aux_sym_seek_statement_token1] = ACTIONS(8645), + [sym_reset_statement] = ACTIONS(8645), + [aux_sym_raise_event_statement_token1] = ACTIONS(8645), + [sym_stop_statement] = ACTIONS(8645), + [sym_beep_statement] = ACTIONS(8645), + [aux_sym_unload_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token2] = ACTIONS(8645), + [aux_sym_def_type_statement_token3] = ACTIONS(8645), + [aux_sym_def_type_statement_token4] = ACTIONS(8645), + [aux_sym_def_type_statement_token5] = ACTIONS(8645), + [aux_sym_def_type_statement_token6] = ACTIONS(8645), + [aux_sym_def_type_statement_token7] = ACTIONS(8645), + [aux_sym_def_type_statement_token8] = ACTIONS(8645), + [aux_sym_def_type_statement_token9] = ACTIONS(8645), + [aux_sym_def_type_statement_token10] = ACTIONS(8645), + [aux_sym_def_type_statement_token11] = ACTIONS(8645), + [aux_sym_def_type_statement_token12] = ACTIONS(8645), + [aux_sym_def_type_statement_token13] = ACTIONS(8645), + [aux_sym_def_type_statement_token14] = ACTIONS(8645), + [aux_sym_call_statement_token1] = ACTIONS(8645), + [sym__ambiguous_call_statement] = ACTIONS(8645), + [aux_sym_addressof_expression_token1] = ACTIONS(8645), + [aux_sym_type_of_expression_token1] = ACTIONS(8645), + [aux_sym_unary_expression_token1] = ACTIONS(8645), + [sym_string_literal] = ACTIONS(8647), + [sym_number_literal] = ACTIONS(8649), + [aux_sym_boolean_literal_token1] = ACTIONS(8645), + [aux_sym_boolean_literal_token2] = ACTIONS(8645), + [sym_nothing_literal] = ACTIONS(8645), + [sym_null_literal] = ACTIONS(8645), + [sym_empty_literal] = ACTIONS(8645), + [sym_date_literal] = ACTIONS(8647), + [anon_sym_POUND] = ACTIONS(8645), + }, + [STATE(5018)] = { + [sym_identifier] = ACTIONS(8749), + [sym_newline] = ACTIONS(8751), + [anon_sym_COLON] = ACTIONS(8753), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8749), + [aux_sym_frm_property_statement_token1] = ACTIONS(8749), + [anon_sym_DOT] = ACTIONS(8749), + [anon_sym_BANG] = ACTIONS(8751), + [aux_sym__attribute_identifier_token1] = ACTIONS(8749), + [aux_sym_option_statement_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8749), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8749), + [aux_sym_preprocessor_const_token1] = ACTIONS(8749), + [sym_static_modifier] = ACTIONS(8749), + [sym__dim_keyword] = ACTIONS(8749), + [sym__redim_keyword] = ACTIONS(8749), + [aux_sym_get_accessor_token1] = ACTIONS(8749), + [aux_sym_set_accessor_token1] = ACTIONS(8749), + [aux_sym_const_declaration_token1] = ACTIONS(8749), + [anon_sym_LPAREN] = ACTIONS(8751), + [aux_sym_as_type_clause_token2] = ACTIONS(8749), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8749), + [aux_sym_visibility_token1] = ACTIONS(8749), + [aux_sym_visibility_token2] = ACTIONS(8749), + [aux_sym_elseif_fragment_token1] = ACTIONS(8749), + [aux_sym_else_fragment_token1] = ACTIONS(8749), + [aux_sym_select_statement_token1] = ACTIONS(8749), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8749), + [aux_sym__for_header_token1] = ACTIONS(8749), + [aux_sym_do_statement_token1] = ACTIONS(8749), + [aux_sym_do_condition_token1] = ACTIONS(8749), + [aux_sym_with_statement_token1] = ACTIONS(8749), + [aux_sym_exit_statement_token1] = ACTIONS(8749), + [sym_end_statement] = ACTIONS(8751), + [aux_sym_on_goto_statement_token1] = ACTIONS(8749), + [aux_sym_on_goto_statement_token2] = ACTIONS(8749), + [aux_sym_on_error_statement_token2] = ACTIONS(8749), + [sym__ambiguous_redim_statement] = ACTIONS(8751), + [aux_sym_erase_statement_token1] = ACTIONS(8749), + [aux_sym_open_statement_token1] = ACTIONS(8749), + [aux_sym_file_mode_token2] = ACTIONS(8749), + [aux_sym_file_access_token2] = ACTIONS(8749), + [aux_sym_file_lock_token2] = ACTIONS(8749), + [aux_sym_print_statement_token1] = ACTIONS(8749), + [anon_sym_PLUS] = ACTIONS(8751), + [anon_sym_DASH] = ACTIONS(8749), + [anon_sym_QMARK] = ACTIONS(8751), + [aux_sym_close_statement_token1] = ACTIONS(8749), + [aux_sym_put_statement_token1] = ACTIONS(8749), + [aux_sym_unlock_statement_token1] = ACTIONS(8749), + [aux_sym_seek_statement_token1] = ACTIONS(8749), + [sym_reset_statement] = ACTIONS(8749), + [aux_sym_raise_event_statement_token1] = ACTIONS(8749), + [sym_stop_statement] = ACTIONS(8749), + [sym_beep_statement] = ACTIONS(8749), + [aux_sym_unload_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token2] = ACTIONS(8749), + [aux_sym_def_type_statement_token3] = ACTIONS(8749), + [aux_sym_def_type_statement_token4] = ACTIONS(8749), + [aux_sym_def_type_statement_token5] = ACTIONS(8749), + [aux_sym_def_type_statement_token6] = ACTIONS(8749), + [aux_sym_def_type_statement_token7] = ACTIONS(8749), + [aux_sym_def_type_statement_token8] = ACTIONS(8749), + [aux_sym_def_type_statement_token9] = ACTIONS(8749), + [aux_sym_def_type_statement_token10] = ACTIONS(8749), + [aux_sym_def_type_statement_token11] = ACTIONS(8749), + [aux_sym_def_type_statement_token12] = ACTIONS(8749), + [aux_sym_def_type_statement_token13] = ACTIONS(8749), + [aux_sym_def_type_statement_token14] = ACTIONS(8749), + [aux_sym_call_statement_token1] = ACTIONS(8749), + [sym__ambiguous_call_statement] = ACTIONS(8749), + [aux_sym_addressof_expression_token1] = ACTIONS(8749), + [aux_sym_type_of_expression_token1] = ACTIONS(8749), + [aux_sym_unary_expression_token1] = ACTIONS(8749), + [sym_string_literal] = ACTIONS(8751), + [sym_number_literal] = ACTIONS(8753), + [aux_sym_boolean_literal_token1] = ACTIONS(8749), + [aux_sym_boolean_literal_token2] = ACTIONS(8749), + [sym_nothing_literal] = ACTIONS(8749), + [sym_null_literal] = ACTIONS(8749), + [sym_empty_literal] = ACTIONS(8749), + [sym_date_literal] = ACTIONS(8751), + [anon_sym_POUND] = ACTIONS(8749), + }, + [STATE(5019)] = { + [sym_array_bounds] = STATE(5414), + [sym_identifier] = ACTIONS(8081), + [sym_newline] = ACTIONS(8083), + [anon_sym_COLON] = ACTIONS(8083), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8081), + [aux_sym_frm_property_statement_token1] = ACTIONS(8081), + [anon_sym_EQ] = ACTIONS(8083), + [anon_sym_DOT] = ACTIONS(8081), + [anon_sym_BANG] = ACTIONS(8083), + [aux_sym__attribute_identifier_token1] = ACTIONS(8081), + [aux_sym_option_statement_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8081), + [aux_sym_preprocessor_const_token1] = ACTIONS(8081), + [sym_static_modifier] = ACTIONS(8081), + [sym__dim_keyword] = ACTIONS(8081), + [sym__redim_keyword] = ACTIONS(8081), + [aux_sym_get_accessor_token1] = ACTIONS(8081), + [aux_sym_set_accessor_token1] = ACTIONS(8081), + [anon_sym_COMMA] = ACTIONS(8083), + [aux_sym_const_declaration_token1] = ACTIONS(8081), + [anon_sym_LPAREN] = ACTIONS(10038), + [aux_sym_as_type_clause_token2] = ACTIONS(8081), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8081), + [aux_sym_visibility_token1] = ACTIONS(8081), + [aux_sym_visibility_token2] = ACTIONS(8081), + [aux_sym_elseif_fragment_token1] = ACTIONS(8081), + [aux_sym_else_fragment_token1] = ACTIONS(8081), + [aux_sym_select_statement_token1] = ACTIONS(8081), + [aux_sym__for_header_token1] = ACTIONS(8081), + [aux_sym_do_statement_token1] = ACTIONS(8081), + [aux_sym_do_condition_token1] = ACTIONS(8081), + [aux_sym_with_statement_token1] = ACTIONS(8081), + [aux_sym_exit_statement_token1] = ACTIONS(8081), + [sym_end_statement] = ACTIONS(8083), + [aux_sym_on_goto_statement_token1] = ACTIONS(8081), + [aux_sym_on_goto_statement_token2] = ACTIONS(8081), + [aux_sym_on_error_statement_token2] = ACTIONS(8081), + [sym__ambiguous_redim_statement] = ACTIONS(8083), + [aux_sym_erase_statement_token1] = ACTIONS(8081), + [aux_sym_open_statement_token1] = ACTIONS(8081), + [aux_sym_file_mode_token2] = ACTIONS(8081), + [aux_sym_file_access_token2] = ACTIONS(8081), + [aux_sym_file_lock_token2] = ACTIONS(8081), + [aux_sym_print_statement_token1] = ACTIONS(8081), + [anon_sym_PLUS] = ACTIONS(8083), + [anon_sym_DASH] = ACTIONS(8081), + [anon_sym_QMARK] = ACTIONS(8083), + [aux_sym_close_statement_token1] = ACTIONS(8081), + [aux_sym_put_statement_token1] = ACTIONS(8081), + [aux_sym_unlock_statement_token1] = ACTIONS(8081), + [aux_sym_seek_statement_token1] = ACTIONS(8081), + [sym_reset_statement] = ACTIONS(8081), + [aux_sym_raise_event_statement_token1] = ACTIONS(8081), + [sym_stop_statement] = ACTIONS(8081), + [sym_beep_statement] = ACTIONS(8081), + [aux_sym_unload_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token2] = ACTIONS(8081), + [aux_sym_def_type_statement_token3] = ACTIONS(8081), + [aux_sym_def_type_statement_token4] = ACTIONS(8081), + [aux_sym_def_type_statement_token5] = ACTIONS(8081), + [aux_sym_def_type_statement_token6] = ACTIONS(8081), + [aux_sym_def_type_statement_token7] = ACTIONS(8081), + [aux_sym_def_type_statement_token8] = ACTIONS(8081), + [aux_sym_def_type_statement_token9] = ACTIONS(8081), + [aux_sym_def_type_statement_token10] = ACTIONS(8081), + [aux_sym_def_type_statement_token11] = ACTIONS(8081), + [aux_sym_def_type_statement_token12] = ACTIONS(8081), + [aux_sym_def_type_statement_token13] = ACTIONS(8081), + [aux_sym_def_type_statement_token14] = ACTIONS(8081), + [aux_sym_call_statement_token1] = ACTIONS(8081), + [sym__ambiguous_call_statement] = ACTIONS(8081), + [aux_sym_addressof_expression_token1] = ACTIONS(8081), + [aux_sym_type_of_expression_token1] = ACTIONS(8081), + [aux_sym_unary_expression_token1] = ACTIONS(8081), + [sym_string_literal] = ACTIONS(8083), + [sym_number_literal] = ACTIONS(8083), + [aux_sym_boolean_literal_token1] = ACTIONS(8081), + [aux_sym_boolean_literal_token2] = ACTIONS(8081), + [sym_nothing_literal] = ACTIONS(8081), + [sym_null_literal] = ACTIONS(8081), + [sym_empty_literal] = ACTIONS(8081), + [sym_date_literal] = ACTIONS(8083), + [anon_sym_POUND] = ACTIONS(8081), + }, + [STATE(5020)] = { + [sym_identifier] = ACTIONS(8022), + [sym_newline] = ACTIONS(8024), + [anon_sym_COLON] = ACTIONS(8024), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8022), + [aux_sym_frm_property_statement_token1] = ACTIONS(8022), + [anon_sym_EQ] = ACTIONS(8024), + [anon_sym_DOT] = ACTIONS(8022), + [anon_sym_BANG] = ACTIONS(8024), + [aux_sym__attribute_identifier_token1] = ACTIONS(8022), + [aux_sym_option_statement_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8022), + [aux_sym_preprocessor_const_token1] = ACTIONS(8022), + [sym_static_modifier] = ACTIONS(8022), + [sym__dim_keyword] = ACTIONS(8022), + [sym__redim_keyword] = ACTIONS(8022), + [aux_sym_get_accessor_token1] = ACTIONS(8022), + [aux_sym_set_accessor_token1] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8024), + [aux_sym_const_declaration_token1] = ACTIONS(8022), + [anon_sym_LPAREN] = ACTIONS(8024), + [aux_sym_as_type_clause_token1] = ACTIONS(8022), + [aux_sym_as_type_clause_token2] = ACTIONS(8022), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8022), + [aux_sym_visibility_token1] = ACTIONS(8022), + [aux_sym_visibility_token2] = ACTIONS(8022), + [aux_sym_elseif_fragment_token1] = ACTIONS(8022), + [aux_sym_else_fragment_token1] = ACTIONS(8022), + [aux_sym_select_statement_token1] = ACTIONS(8022), + [aux_sym__for_header_token1] = ACTIONS(8022), + [aux_sym_do_statement_token1] = ACTIONS(8022), + [aux_sym_do_condition_token1] = ACTIONS(8022), + [aux_sym_while_statement_token1] = ACTIONS(8022), + [aux_sym_with_statement_token1] = ACTIONS(8022), + [aux_sym_exit_statement_token1] = ACTIONS(8022), + [sym_end_statement] = ACTIONS(8024), + [aux_sym_on_goto_statement_token1] = ACTIONS(8022), + [aux_sym_on_goto_statement_token2] = ACTIONS(8022), + [aux_sym_on_error_statement_token2] = ACTIONS(8022), + [sym__ambiguous_redim_statement] = ACTIONS(8024), + [aux_sym_erase_statement_token1] = ACTIONS(8022), + [aux_sym_open_statement_token1] = ACTIONS(8022), + [aux_sym_file_mode_token2] = ACTIONS(8022), + [aux_sym_file_access_token2] = ACTIONS(8022), + [aux_sym_file_lock_token2] = ACTIONS(8022), + [aux_sym_print_statement_token1] = ACTIONS(8022), + [anon_sym_PLUS] = ACTIONS(8024), + [anon_sym_DASH] = ACTIONS(8022), + [anon_sym_QMARK] = ACTIONS(8024), + [aux_sym_close_statement_token1] = ACTIONS(8022), + [aux_sym_put_statement_token1] = ACTIONS(8022), + [aux_sym_unlock_statement_token1] = ACTIONS(8022), + [aux_sym_seek_statement_token1] = ACTIONS(8022), + [sym_reset_statement] = ACTIONS(8022), + [aux_sym_raise_event_statement_token1] = ACTIONS(8022), + [sym_stop_statement] = ACTIONS(8022), + [sym_beep_statement] = ACTIONS(8022), + [aux_sym_unload_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token2] = ACTIONS(8022), + [aux_sym_def_type_statement_token3] = ACTIONS(8022), + [aux_sym_def_type_statement_token4] = ACTIONS(8022), + [aux_sym_def_type_statement_token5] = ACTIONS(8022), + [aux_sym_def_type_statement_token6] = ACTIONS(8022), + [aux_sym_def_type_statement_token7] = ACTIONS(8022), + [aux_sym_def_type_statement_token8] = ACTIONS(8022), + [aux_sym_def_type_statement_token9] = ACTIONS(8022), + [aux_sym_def_type_statement_token10] = ACTIONS(8022), + [aux_sym_def_type_statement_token11] = ACTIONS(8022), + [aux_sym_def_type_statement_token12] = ACTIONS(8022), + [aux_sym_def_type_statement_token13] = ACTIONS(8022), + [aux_sym_def_type_statement_token14] = ACTIONS(8022), + [aux_sym_call_statement_token1] = ACTIONS(8022), + [sym__ambiguous_call_statement] = ACTIONS(8022), + [aux_sym_addressof_expression_token1] = ACTIONS(8022), + [aux_sym_type_of_expression_token1] = ACTIONS(8022), + [aux_sym_unary_expression_token1] = ACTIONS(8022), + [sym_string_literal] = ACTIONS(8024), + [sym_number_literal] = ACTIONS(8024), + [aux_sym_boolean_literal_token1] = ACTIONS(8022), + [aux_sym_boolean_literal_token2] = ACTIONS(8022), + [sym_nothing_literal] = ACTIONS(8022), + [sym_null_literal] = ACTIONS(8022), + [sym_empty_literal] = ACTIONS(8022), + [sym_date_literal] = ACTIONS(8024), + [anon_sym_POUND] = ACTIONS(8022), + }, + [STATE(5021)] = { + [sym_identifier] = ACTIONS(8729), + [sym_newline] = ACTIONS(8731), + [anon_sym_COLON] = ACTIONS(8731), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8729), + [aux_sym_frm_property_statement_token1] = ACTIONS(8729), + [anon_sym_DOT] = ACTIONS(8729), + [anon_sym_BANG] = ACTIONS(8731), + [aux_sym__attribute_identifier_token1] = ACTIONS(8729), + [aux_sym_option_statement_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8729), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8729), + [aux_sym_preprocessor_const_token1] = ACTIONS(8729), + [sym_static_modifier] = ACTIONS(8729), + [sym__dim_keyword] = ACTIONS(8729), + [sym__redim_keyword] = ACTIONS(8729), + [aux_sym_get_accessor_token1] = ACTIONS(8729), + [aux_sym_set_accessor_token1] = ACTIONS(8729), + [aux_sym_const_declaration_token1] = ACTIONS(8729), + [anon_sym_LPAREN] = ACTIONS(8731), + [aux_sym_as_type_clause_token2] = ACTIONS(8729), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8729), + [aux_sym_visibility_token1] = ACTIONS(8729), + [aux_sym_visibility_token2] = ACTIONS(8729), + [aux_sym_elseif_fragment_token1] = ACTIONS(8729), + [aux_sym_else_fragment_token1] = ACTIONS(8729), + [aux_sym_select_statement_token1] = ACTIONS(8729), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8729), + [aux_sym__for_header_token1] = ACTIONS(8729), + [aux_sym_do_statement_token1] = ACTIONS(8729), + [aux_sym_do_condition_token1] = ACTIONS(8729), + [aux_sym_with_statement_token1] = ACTIONS(8729), + [aux_sym_exit_statement_token1] = ACTIONS(8729), + [sym_end_statement] = ACTIONS(8731), + [aux_sym_on_goto_statement_token1] = ACTIONS(8729), + [aux_sym_on_goto_statement_token2] = ACTIONS(8729), + [aux_sym_on_error_statement_token2] = ACTIONS(8729), + [sym__ambiguous_redim_statement] = ACTIONS(8731), + [aux_sym_erase_statement_token1] = ACTIONS(8729), + [aux_sym_open_statement_token1] = ACTIONS(8729), + [aux_sym_file_mode_token2] = ACTIONS(8729), + [aux_sym_file_access_token2] = ACTIONS(8729), + [aux_sym_file_lock_token2] = ACTIONS(8729), + [aux_sym_print_statement_token1] = ACTIONS(8729), + [anon_sym_PLUS] = ACTIONS(8731), + [anon_sym_DASH] = ACTIONS(8729), + [anon_sym_QMARK] = ACTIONS(8731), + [aux_sym_close_statement_token1] = ACTIONS(8729), + [aux_sym_put_statement_token1] = ACTIONS(8729), + [aux_sym_unlock_statement_token1] = ACTIONS(8729), + [aux_sym_seek_statement_token1] = ACTIONS(8729), + [sym_reset_statement] = ACTIONS(8729), + [aux_sym_raise_event_statement_token1] = ACTIONS(8729), + [sym_stop_statement] = ACTIONS(8729), + [sym_beep_statement] = ACTIONS(8729), + [aux_sym_unload_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token2] = ACTIONS(8729), + [aux_sym_def_type_statement_token3] = ACTIONS(8729), + [aux_sym_def_type_statement_token4] = ACTIONS(8729), + [aux_sym_def_type_statement_token5] = ACTIONS(8729), + [aux_sym_def_type_statement_token6] = ACTIONS(8729), + [aux_sym_def_type_statement_token7] = ACTIONS(8729), + [aux_sym_def_type_statement_token8] = ACTIONS(8729), + [aux_sym_def_type_statement_token9] = ACTIONS(8729), + [aux_sym_def_type_statement_token10] = ACTIONS(8729), + [aux_sym_def_type_statement_token11] = ACTIONS(8729), + [aux_sym_def_type_statement_token12] = ACTIONS(8729), + [aux_sym_def_type_statement_token13] = ACTIONS(8729), + [aux_sym_def_type_statement_token14] = ACTIONS(8729), + [aux_sym_call_statement_token1] = ACTIONS(8729), + [sym__ambiguous_call_statement] = ACTIONS(8729), + [aux_sym_addressof_expression_token1] = ACTIONS(8729), + [aux_sym_type_of_expression_token1] = ACTIONS(8729), + [aux_sym_unary_expression_token1] = ACTIONS(8729), + [sym_string_literal] = ACTIONS(8731), + [sym_number_literal] = ACTIONS(8731), + [aux_sym_boolean_literal_token1] = ACTIONS(8729), + [aux_sym_boolean_literal_token2] = ACTIONS(8729), + [sym_nothing_literal] = ACTIONS(8729), + [sym_null_literal] = ACTIONS(8729), + [sym_empty_literal] = ACTIONS(8729), + [sym_date_literal] = ACTIONS(8731), + [anon_sym_POUND] = ACTIONS(8729), + }, + [STATE(5022)] = { + [sym_argument_list] = STATE(5635), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(10377), + [anon_sym_BANG] = ACTIONS(10379), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10328), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(5023)] = { + [sym_identifier] = ACTIONS(7968), + [sym_newline] = ACTIONS(7970), + [anon_sym_COLON] = ACTIONS(7970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7968), + [aux_sym_frm_property_statement_token1] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_BANG] = ACTIONS(7970), + [aux_sym__attribute_identifier_token1] = ACTIONS(7968), + [aux_sym_option_statement_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7968), + [aux_sym_preprocessor_const_token1] = ACTIONS(7968), + [sym_static_modifier] = ACTIONS(7968), + [sym__dim_keyword] = ACTIONS(7968), + [sym__redim_keyword] = ACTIONS(7968), + [aux_sym_get_accessor_token1] = ACTIONS(7968), + [aux_sym_set_accessor_token1] = ACTIONS(7968), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_const_declaration_token1] = ACTIONS(7968), + [anon_sym_LPAREN] = ACTIONS(7970), + [aux_sym_as_type_clause_token1] = ACTIONS(7968), + [aux_sym_as_type_clause_token2] = ACTIONS(7968), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7968), + [aux_sym_visibility_token1] = ACTIONS(7968), + [aux_sym_visibility_token2] = ACTIONS(7968), + [aux_sym_elseif_fragment_token1] = ACTIONS(7968), + [aux_sym_else_fragment_token1] = ACTIONS(7968), + [aux_sym_select_statement_token1] = ACTIONS(7968), + [aux_sym__for_header_token1] = ACTIONS(7968), + [aux_sym_do_statement_token1] = ACTIONS(7968), + [aux_sym_do_condition_token1] = ACTIONS(7968), + [aux_sym_with_statement_token1] = ACTIONS(7968), + [aux_sym_exit_statement_token1] = ACTIONS(7968), + [sym_end_statement] = ACTIONS(7970), + [aux_sym_on_goto_statement_token1] = ACTIONS(7968), + [aux_sym_on_goto_statement_token2] = ACTIONS(7968), + [aux_sym_on_error_statement_token2] = ACTIONS(7968), + [sym__ambiguous_redim_statement] = ACTIONS(7970), + [aux_sym_erase_statement_token1] = ACTIONS(7968), + [aux_sym_open_statement_token1] = ACTIONS(7968), + [aux_sym_file_mode_token2] = ACTIONS(7968), + [aux_sym_file_access_token2] = ACTIONS(7968), + [aux_sym_file_lock_token2] = ACTIONS(7968), + [aux_sym_print_statement_token1] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7970), + [aux_sym_close_statement_token1] = ACTIONS(7968), + [aux_sym_put_statement_token1] = ACTIONS(7968), + [aux_sym_unlock_statement_token1] = ACTIONS(7968), + [aux_sym_seek_statement_token1] = ACTIONS(7968), + [sym_reset_statement] = ACTIONS(7968), + [aux_sym_raise_event_statement_token1] = ACTIONS(7968), + [sym_stop_statement] = ACTIONS(7968), + [sym_beep_statement] = ACTIONS(7968), + [aux_sym_unload_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token2] = ACTIONS(7968), + [aux_sym_def_type_statement_token3] = ACTIONS(7968), + [aux_sym_def_type_statement_token4] = ACTIONS(7968), + [aux_sym_def_type_statement_token5] = ACTIONS(7968), + [aux_sym_def_type_statement_token6] = ACTIONS(7968), + [aux_sym_def_type_statement_token7] = ACTIONS(7968), + [aux_sym_def_type_statement_token8] = ACTIONS(7968), + [aux_sym_def_type_statement_token9] = ACTIONS(7968), + [aux_sym_def_type_statement_token10] = ACTIONS(7968), + [aux_sym_def_type_statement_token11] = ACTIONS(7968), + [aux_sym_def_type_statement_token12] = ACTIONS(7968), + [aux_sym_def_type_statement_token13] = ACTIONS(7968), + [aux_sym_def_type_statement_token14] = ACTIONS(7968), + [aux_sym_call_statement_token1] = ACTIONS(7968), + [sym__ambiguous_call_statement] = ACTIONS(7968), + [aux_sym_addressof_expression_token1] = ACTIONS(7968), + [aux_sym_type_of_expression_token1] = ACTIONS(7968), + [aux_sym_unary_expression_token1] = ACTIONS(7968), + [sym_string_literal] = ACTIONS(7970), + [sym_number_literal] = ACTIONS(7970), + [aux_sym_boolean_literal_token1] = ACTIONS(7968), + [aux_sym_boolean_literal_token2] = ACTIONS(7968), + [sym_nothing_literal] = ACTIONS(7968), + [sym_null_literal] = ACTIONS(7968), + [sym_empty_literal] = ACTIONS(7968), + [sym_date_literal] = ACTIONS(7970), + [anon_sym_POUND] = ACTIONS(7968), + }, + [STATE(5024)] = { + [sym_identifier] = ACTIONS(8745), + [sym_newline] = ACTIONS(8747), + [anon_sym_COLON] = ACTIONS(8747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8745), + [aux_sym_frm_property_statement_token1] = ACTIONS(8745), + [anon_sym_DOT] = ACTIONS(8745), + [anon_sym_BANG] = ACTIONS(8747), + [aux_sym__attribute_identifier_token1] = ACTIONS(8745), + [aux_sym_option_statement_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8745), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8745), + [aux_sym_preprocessor_const_token1] = ACTIONS(8745), + [sym_static_modifier] = ACTIONS(8745), + [sym__dim_keyword] = ACTIONS(8745), + [sym__redim_keyword] = ACTIONS(8745), + [aux_sym_get_accessor_token1] = ACTIONS(8745), + [aux_sym_set_accessor_token1] = ACTIONS(8745), + [aux_sym_const_declaration_token1] = ACTIONS(8745), + [anon_sym_LPAREN] = ACTIONS(8747), + [aux_sym_as_type_clause_token2] = ACTIONS(8745), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8745), + [aux_sym_visibility_token1] = ACTIONS(8745), + [aux_sym_visibility_token2] = ACTIONS(8745), + [aux_sym_elseif_fragment_token1] = ACTIONS(8745), + [aux_sym_else_fragment_token1] = ACTIONS(8745), + [aux_sym_select_statement_token1] = ACTIONS(8745), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8745), + [aux_sym__for_header_token1] = ACTIONS(8745), + [aux_sym_do_statement_token1] = ACTIONS(8745), + [aux_sym_do_condition_token1] = ACTIONS(8745), + [aux_sym_with_statement_token1] = ACTIONS(8745), + [aux_sym_exit_statement_token1] = ACTIONS(8745), + [sym_end_statement] = ACTIONS(8747), + [aux_sym_on_goto_statement_token1] = ACTIONS(8745), + [aux_sym_on_goto_statement_token2] = ACTIONS(8745), + [aux_sym_on_error_statement_token2] = ACTIONS(8745), + [sym__ambiguous_redim_statement] = ACTIONS(8747), + [aux_sym_erase_statement_token1] = ACTIONS(8745), + [aux_sym_open_statement_token1] = ACTIONS(8745), + [aux_sym_file_mode_token2] = ACTIONS(8745), + [aux_sym_file_access_token2] = ACTIONS(8745), + [aux_sym_file_lock_token2] = ACTIONS(8745), + [aux_sym_print_statement_token1] = ACTIONS(8745), + [anon_sym_PLUS] = ACTIONS(8747), + [anon_sym_DASH] = ACTIONS(8745), + [anon_sym_QMARK] = ACTIONS(8747), + [aux_sym_close_statement_token1] = ACTIONS(8745), + [aux_sym_put_statement_token1] = ACTIONS(8745), + [aux_sym_unlock_statement_token1] = ACTIONS(8745), + [aux_sym_seek_statement_token1] = ACTIONS(8745), + [sym_reset_statement] = ACTIONS(8745), + [aux_sym_raise_event_statement_token1] = ACTIONS(8745), + [sym_stop_statement] = ACTIONS(8745), + [sym_beep_statement] = ACTIONS(8745), + [aux_sym_unload_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token2] = ACTIONS(8745), + [aux_sym_def_type_statement_token3] = ACTIONS(8745), + [aux_sym_def_type_statement_token4] = ACTIONS(8745), + [aux_sym_def_type_statement_token5] = ACTIONS(8745), + [aux_sym_def_type_statement_token6] = ACTIONS(8745), + [aux_sym_def_type_statement_token7] = ACTIONS(8745), + [aux_sym_def_type_statement_token8] = ACTIONS(8745), + [aux_sym_def_type_statement_token9] = ACTIONS(8745), + [aux_sym_def_type_statement_token10] = ACTIONS(8745), + [aux_sym_def_type_statement_token11] = ACTIONS(8745), + [aux_sym_def_type_statement_token12] = ACTIONS(8745), + [aux_sym_def_type_statement_token13] = ACTIONS(8745), + [aux_sym_def_type_statement_token14] = ACTIONS(8745), + [aux_sym_call_statement_token1] = ACTIONS(8745), + [sym__ambiguous_call_statement] = ACTIONS(8745), + [aux_sym_addressof_expression_token1] = ACTIONS(8745), + [aux_sym_type_of_expression_token1] = ACTIONS(8745), + [aux_sym_unary_expression_token1] = ACTIONS(8745), + [sym_string_literal] = ACTIONS(8747), + [sym_number_literal] = ACTIONS(8747), + [aux_sym_boolean_literal_token1] = ACTIONS(8745), + [aux_sym_boolean_literal_token2] = ACTIONS(8745), + [sym_nothing_literal] = ACTIONS(8745), + [sym_null_literal] = ACTIONS(8745), + [sym_empty_literal] = ACTIONS(8745), + [sym_date_literal] = ACTIONS(8747), + [anon_sym_POUND] = ACTIONS(8745), + }, + [STATE(5025)] = { + [sym_identifier] = ACTIONS(8780), + [sym_newline] = ACTIONS(8782), + [anon_sym_COLON] = ACTIONS(8782), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8780), + [aux_sym_frm_property_statement_token1] = ACTIONS(8780), + [anon_sym_DOT] = ACTIONS(8780), + [anon_sym_BANG] = ACTIONS(8782), + [aux_sym__attribute_identifier_token1] = ACTIONS(8780), + [aux_sym_option_statement_token3] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8780), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8780), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8780), + [aux_sym_preprocessor_const_token1] = ACTIONS(8780), + [sym_static_modifier] = ACTIONS(8780), + [sym__dim_keyword] = ACTIONS(8780), + [sym__redim_keyword] = ACTIONS(8780), + [aux_sym_get_accessor_token1] = ACTIONS(8780), + [aux_sym_set_accessor_token1] = ACTIONS(8780), + [anon_sym_COMMA] = ACTIONS(10381), + [aux_sym_const_declaration_token1] = ACTIONS(8780), + [anon_sym_LPAREN] = ACTIONS(8782), + [aux_sym_as_type_clause_token2] = ACTIONS(8780), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8780), + [aux_sym_visibility_token1] = ACTIONS(8780), + [aux_sym_visibility_token2] = ACTIONS(8780), + [aux_sym_elseif_fragment_token1] = ACTIONS(8780), + [aux_sym_else_fragment_token1] = ACTIONS(8780), + [aux_sym_select_statement_token1] = ACTIONS(8780), + [aux_sym__for_header_token1] = ACTIONS(8780), + [aux_sym_do_statement_token1] = ACTIONS(8780), + [aux_sym_do_condition_token1] = ACTIONS(8780), + [aux_sym_with_statement_token1] = ACTIONS(8780), + [aux_sym_exit_statement_token1] = ACTIONS(8780), + [sym_end_statement] = ACTIONS(8782), + [aux_sym_on_goto_statement_token1] = ACTIONS(8780), + [aux_sym_on_goto_statement_token2] = ACTIONS(8780), + [aux_sym_on_error_statement_token2] = ACTIONS(8780), + [sym__ambiguous_redim_statement] = ACTIONS(8782), + [aux_sym_erase_statement_token1] = ACTIONS(8780), + [aux_sym_open_statement_token1] = ACTIONS(8780), + [aux_sym_file_mode_token2] = ACTIONS(8780), + [aux_sym_file_access_token2] = ACTIONS(8780), + [aux_sym_file_lock_token2] = ACTIONS(8780), + [aux_sym_print_statement_token1] = ACTIONS(8780), + [anon_sym_PLUS] = ACTIONS(8782), + [anon_sym_DASH] = ACTIONS(8780), + [anon_sym_QMARK] = ACTIONS(8782), + [aux_sym_close_statement_token1] = ACTIONS(8780), + [aux_sym_put_statement_token1] = ACTIONS(8780), + [aux_sym_unlock_statement_token1] = ACTIONS(8780), + [aux_sym_seek_statement_token1] = ACTIONS(8780), + [sym_reset_statement] = ACTIONS(8780), + [aux_sym_raise_event_statement_token1] = ACTIONS(8780), + [sym_stop_statement] = ACTIONS(8780), + [sym_beep_statement] = ACTIONS(8780), + [aux_sym_unload_statement_token1] = ACTIONS(8780), + [aux_sym_def_type_statement_token1] = ACTIONS(8780), + [aux_sym_def_type_statement_token2] = ACTIONS(8780), + [aux_sym_def_type_statement_token3] = ACTIONS(8780), + [aux_sym_def_type_statement_token4] = ACTIONS(8780), + [aux_sym_def_type_statement_token5] = ACTIONS(8780), + [aux_sym_def_type_statement_token6] = ACTIONS(8780), + [aux_sym_def_type_statement_token7] = ACTIONS(8780), + [aux_sym_def_type_statement_token8] = ACTIONS(8780), + [aux_sym_def_type_statement_token9] = ACTIONS(8780), + [aux_sym_def_type_statement_token10] = ACTIONS(8780), + [aux_sym_def_type_statement_token11] = ACTIONS(8780), + [aux_sym_def_type_statement_token12] = ACTIONS(8780), + [aux_sym_def_type_statement_token13] = ACTIONS(8780), + [aux_sym_def_type_statement_token14] = ACTIONS(8780), + [aux_sym_call_statement_token1] = ACTIONS(8780), + [sym__ambiguous_call_statement] = ACTIONS(8780), + [aux_sym_addressof_expression_token1] = ACTIONS(8780), + [aux_sym_type_of_expression_token1] = ACTIONS(8780), + [aux_sym_unary_expression_token1] = ACTIONS(8780), + [sym_string_literal] = ACTIONS(8782), + [sym_number_literal] = ACTIONS(8782), + [aux_sym_boolean_literal_token1] = ACTIONS(8780), + [aux_sym_boolean_literal_token2] = ACTIONS(8780), + [sym_nothing_literal] = ACTIONS(8780), + [sym_null_literal] = ACTIONS(8780), + [sym_empty_literal] = ACTIONS(8780), + [sym_date_literal] = ACTIONS(8782), + [anon_sym_POUND] = ACTIONS(8780), + }, + [STATE(5026)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5042), + [sym_identifier] = ACTIONS(7945), + [sym_newline] = ACTIONS(7947), + [anon_sym_COLON] = ACTIONS(7947), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7945), + [aux_sym_frm_property_statement_token1] = ACTIONS(7945), + [anon_sym_DOT] = ACTIONS(7945), + [anon_sym_BANG] = ACTIONS(7947), + [aux_sym__attribute_identifier_token1] = ACTIONS(7945), + [aux_sym_option_statement_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7945), + [aux_sym_preprocessor_const_token1] = ACTIONS(7945), + [sym_static_modifier] = ACTIONS(7945), + [sym__dim_keyword] = ACTIONS(7945), + [sym__redim_keyword] = ACTIONS(7945), + [aux_sym_get_accessor_token1] = ACTIONS(7945), + [aux_sym_set_accessor_token1] = ACTIONS(7945), + [anon_sym_COMMA] = ACTIONS(10365), + [aux_sym_const_declaration_token1] = ACTIONS(7945), + [anon_sym_LPAREN] = ACTIONS(7947), + [aux_sym_as_type_clause_token2] = ACTIONS(7945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7945), + [aux_sym_visibility_token1] = ACTIONS(7945), + [aux_sym_visibility_token2] = ACTIONS(7945), + [aux_sym_elseif_fragment_token1] = ACTIONS(7945), + [aux_sym_else_fragment_token1] = ACTIONS(7945), + [aux_sym_select_statement_token1] = ACTIONS(7945), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7945), + [aux_sym__for_header_token1] = ACTIONS(7945), + [aux_sym_do_statement_token1] = ACTIONS(7945), + [aux_sym_do_condition_token1] = ACTIONS(7945), + [aux_sym_with_statement_token1] = ACTIONS(7945), + [aux_sym_exit_statement_token1] = ACTIONS(7945), + [sym_end_statement] = ACTIONS(7947), + [aux_sym_on_goto_statement_token1] = ACTIONS(7945), + [aux_sym_on_goto_statement_token2] = ACTIONS(7945), + [aux_sym_on_error_statement_token2] = ACTIONS(7945), + [sym__ambiguous_redim_statement] = ACTIONS(7947), + [aux_sym_erase_statement_token1] = ACTIONS(7945), + [aux_sym_open_statement_token1] = ACTIONS(7945), + [aux_sym_file_mode_token2] = ACTIONS(7945), + [aux_sym_file_access_token2] = ACTIONS(7945), + [aux_sym_file_lock_token2] = ACTIONS(7945), + [aux_sym_print_statement_token1] = ACTIONS(7945), + [anon_sym_PLUS] = ACTIONS(7947), + [anon_sym_DASH] = ACTIONS(7945), + [anon_sym_QMARK] = ACTIONS(7947), + [aux_sym_close_statement_token1] = ACTIONS(7945), + [aux_sym_put_statement_token1] = ACTIONS(7945), + [aux_sym_unlock_statement_token1] = ACTIONS(7945), + [aux_sym_seek_statement_token1] = ACTIONS(7945), + [sym_reset_statement] = ACTIONS(7945), + [aux_sym_raise_event_statement_token1] = ACTIONS(7945), + [sym_stop_statement] = ACTIONS(7945), + [sym_beep_statement] = ACTIONS(7945), + [aux_sym_unload_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token2] = ACTIONS(7945), + [aux_sym_def_type_statement_token3] = ACTIONS(7945), + [aux_sym_def_type_statement_token4] = ACTIONS(7945), + [aux_sym_def_type_statement_token5] = ACTIONS(7945), + [aux_sym_def_type_statement_token6] = ACTIONS(7945), + [aux_sym_def_type_statement_token7] = ACTIONS(7945), + [aux_sym_def_type_statement_token8] = ACTIONS(7945), + [aux_sym_def_type_statement_token9] = ACTIONS(7945), + [aux_sym_def_type_statement_token10] = ACTIONS(7945), + [aux_sym_def_type_statement_token11] = ACTIONS(7945), + [aux_sym_def_type_statement_token12] = ACTIONS(7945), + [aux_sym_def_type_statement_token13] = ACTIONS(7945), + [aux_sym_def_type_statement_token14] = ACTIONS(7945), + [aux_sym_call_statement_token1] = ACTIONS(7945), + [sym__ambiguous_call_statement] = ACTIONS(7945), + [aux_sym_addressof_expression_token1] = ACTIONS(7945), + [aux_sym_type_of_expression_token1] = ACTIONS(7945), + [aux_sym_unary_expression_token1] = ACTIONS(7945), + [sym_string_literal] = ACTIONS(7947), + [sym_number_literal] = ACTIONS(7947), + [aux_sym_boolean_literal_token1] = ACTIONS(7945), + [aux_sym_boolean_literal_token2] = ACTIONS(7945), + [sym_nothing_literal] = ACTIONS(7945), + [sym_null_literal] = ACTIONS(7945), + [sym_empty_literal] = ACTIONS(7945), + [sym_date_literal] = ACTIONS(7947), + [anon_sym_POUND] = ACTIONS(7945), + }, + [STATE(5027)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(4987), + [sym_identifier] = ACTIONS(8813), + [sym_newline] = ACTIONS(8815), + [anon_sym_COLON] = ACTIONS(10349), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8813), + [aux_sym_frm_property_statement_token1] = ACTIONS(8813), + [anon_sym_DOT] = ACTIONS(8813), + [anon_sym_BANG] = ACTIONS(8815), + [aux_sym__attribute_identifier_token1] = ACTIONS(8813), + [aux_sym_option_statement_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8813), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8813), + [aux_sym_preprocessor_const_token1] = ACTIONS(8813), + [sym_static_modifier] = ACTIONS(8813), + [sym__dim_keyword] = ACTIONS(8813), + [sym__redim_keyword] = ACTIONS(8813), + [aux_sym_get_accessor_token1] = ACTIONS(8813), + [aux_sym_set_accessor_token1] = ACTIONS(8813), + [aux_sym_const_declaration_token1] = ACTIONS(8813), + [anon_sym_LPAREN] = ACTIONS(8815), + [aux_sym_as_type_clause_token2] = ACTIONS(8813), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8813), + [aux_sym_visibility_token1] = ACTIONS(8813), + [aux_sym_visibility_token2] = ACTIONS(8813), + [aux_sym_elseif_fragment_token1] = ACTIONS(8813), + [aux_sym_else_fragment_token1] = ACTIONS(8813), + [aux_sym_select_statement_token1] = ACTIONS(8813), + [aux_sym__for_header_token1] = ACTIONS(8813), + [aux_sym_do_statement_token1] = ACTIONS(8813), + [aux_sym_do_condition_token1] = ACTIONS(8813), + [aux_sym_with_statement_token1] = ACTIONS(8813), + [aux_sym_exit_statement_token1] = ACTIONS(8813), + [sym_end_statement] = ACTIONS(8815), + [aux_sym_on_goto_statement_token1] = ACTIONS(8813), + [aux_sym_on_goto_statement_token2] = ACTIONS(8813), + [aux_sym_on_error_statement_token2] = ACTIONS(8813), + [sym__ambiguous_redim_statement] = ACTIONS(8815), + [aux_sym_erase_statement_token1] = ACTIONS(8813), + [aux_sym_open_statement_token1] = ACTIONS(8813), + [aux_sym_file_mode_token2] = ACTIONS(8813), + [aux_sym_file_access_token2] = ACTIONS(8813), + [aux_sym_file_lock_token2] = ACTIONS(8813), + [aux_sym_print_statement_token1] = ACTIONS(8813), + [anon_sym_PLUS] = ACTIONS(8815), + [anon_sym_DASH] = ACTIONS(8813), + [anon_sym_QMARK] = ACTIONS(8815), + [aux_sym_close_statement_token1] = ACTIONS(8813), + [aux_sym_put_statement_token1] = ACTIONS(8813), + [aux_sym_unlock_statement_token1] = ACTIONS(8813), + [aux_sym_seek_statement_token1] = ACTIONS(8813), + [sym_reset_statement] = ACTIONS(8813), + [aux_sym_raise_event_statement_token1] = ACTIONS(8813), + [sym_stop_statement] = ACTIONS(8813), + [sym_beep_statement] = ACTIONS(8813), + [aux_sym_unload_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token2] = ACTIONS(8813), + [aux_sym_def_type_statement_token3] = ACTIONS(8813), + [aux_sym_def_type_statement_token4] = ACTIONS(8813), + [aux_sym_def_type_statement_token5] = ACTIONS(8813), + [aux_sym_def_type_statement_token6] = ACTIONS(8813), + [aux_sym_def_type_statement_token7] = ACTIONS(8813), + [aux_sym_def_type_statement_token8] = ACTIONS(8813), + [aux_sym_def_type_statement_token9] = ACTIONS(8813), + [aux_sym_def_type_statement_token10] = ACTIONS(8813), + [aux_sym_def_type_statement_token11] = ACTIONS(8813), + [aux_sym_def_type_statement_token12] = ACTIONS(8813), + [aux_sym_def_type_statement_token13] = ACTIONS(8813), + [aux_sym_def_type_statement_token14] = ACTIONS(8813), + [aux_sym_call_statement_token1] = ACTIONS(8813), + [sym__ambiguous_call_statement] = ACTIONS(8813), + [aux_sym_addressof_expression_token1] = ACTIONS(8813), + [aux_sym_type_of_expression_token1] = ACTIONS(8813), + [aux_sym_unary_expression_token1] = ACTIONS(8813), + [sym_string_literal] = ACTIONS(8815), + [sym_number_literal] = ACTIONS(8815), + [aux_sym_boolean_literal_token1] = ACTIONS(8813), + [aux_sym_boolean_literal_token2] = ACTIONS(8813), + [sym_nothing_literal] = ACTIONS(8813), + [sym_null_literal] = ACTIONS(8813), + [sym_empty_literal] = ACTIONS(8813), + [sym_date_literal] = ACTIONS(8815), + [anon_sym_POUND] = ACTIONS(8813), + }, + [STATE(5028)] = { + [sym_identifier] = ACTIONS(8624), + [sym_newline] = ACTIONS(8626), + [anon_sym_COLON] = ACTIONS(8626), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8624), + [aux_sym_frm_property_statement_token1] = ACTIONS(8624), + [anon_sym_DOT] = ACTIONS(8624), + [anon_sym_BANG] = ACTIONS(8626), + [aux_sym__attribute_identifier_token1] = ACTIONS(8624), + [aux_sym_option_statement_token3] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8624), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8624), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8624), + [aux_sym_preprocessor_const_token1] = ACTIONS(8624), + [sym_static_modifier] = ACTIONS(8624), + [sym__dim_keyword] = ACTIONS(8624), + [sym__redim_keyword] = ACTIONS(8624), + [aux_sym_get_accessor_token1] = ACTIONS(8624), + [aux_sym_set_accessor_token1] = ACTIONS(8624), + [aux_sym_const_declaration_token1] = ACTIONS(8624), + [anon_sym_LPAREN] = ACTIONS(8626), + [aux_sym_as_type_clause_token2] = ACTIONS(8624), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8624), + [aux_sym_visibility_token1] = ACTIONS(8624), + [aux_sym_visibility_token2] = ACTIONS(8624), + [aux_sym_elseif_fragment_token1] = ACTIONS(8624), + [aux_sym_else_fragment_token1] = ACTIONS(8624), + [aux_sym_select_statement_token1] = ACTIONS(8624), + [aux_sym__for_header_token1] = ACTIONS(8624), + [aux_sym_do_statement_token1] = ACTIONS(8624), + [aux_sym_do_condition_token1] = ACTIONS(8624), + [aux_sym_with_statement_token1] = ACTIONS(8624), + [aux_sym_exit_statement_token1] = ACTIONS(8624), + [sym_end_statement] = ACTIONS(8626), + [aux_sym_on_goto_statement_token1] = ACTIONS(8624), + [aux_sym_on_goto_statement_token2] = ACTIONS(8624), + [aux_sym_on_error_statement_token2] = ACTIONS(8624), + [sym__ambiguous_redim_statement] = ACTIONS(8626), + [aux_sym_erase_statement_token1] = ACTIONS(8624), + [aux_sym_open_statement_token1] = ACTIONS(8624), + [aux_sym_open_statement_token3] = ACTIONS(10383), + [aux_sym_file_mode_token2] = ACTIONS(8624), + [aux_sym_file_access_token2] = ACTIONS(8624), + [aux_sym_file_lock_token2] = ACTIONS(8624), + [aux_sym_print_statement_token1] = ACTIONS(8624), + [anon_sym_PLUS] = ACTIONS(8626), + [anon_sym_DASH] = ACTIONS(8624), + [anon_sym_QMARK] = ACTIONS(8626), + [aux_sym_close_statement_token1] = ACTIONS(8624), + [aux_sym_put_statement_token1] = ACTIONS(8624), + [aux_sym_unlock_statement_token1] = ACTIONS(8624), + [aux_sym_seek_statement_token1] = ACTIONS(8624), + [sym_reset_statement] = ACTIONS(8624), + [aux_sym_raise_event_statement_token1] = ACTIONS(8624), + [sym_stop_statement] = ACTIONS(8624), + [sym_beep_statement] = ACTIONS(8624), + [aux_sym_unload_statement_token1] = ACTIONS(8624), + [aux_sym_def_type_statement_token1] = ACTIONS(8624), + [aux_sym_def_type_statement_token2] = ACTIONS(8624), + [aux_sym_def_type_statement_token3] = ACTIONS(8624), + [aux_sym_def_type_statement_token4] = ACTIONS(8624), + [aux_sym_def_type_statement_token5] = ACTIONS(8624), + [aux_sym_def_type_statement_token6] = ACTIONS(8624), + [aux_sym_def_type_statement_token7] = ACTIONS(8624), + [aux_sym_def_type_statement_token8] = ACTIONS(8624), + [aux_sym_def_type_statement_token9] = ACTIONS(8624), + [aux_sym_def_type_statement_token10] = ACTIONS(8624), + [aux_sym_def_type_statement_token11] = ACTIONS(8624), + [aux_sym_def_type_statement_token12] = ACTIONS(8624), + [aux_sym_def_type_statement_token13] = ACTIONS(8624), + [aux_sym_def_type_statement_token14] = ACTIONS(8624), + [aux_sym_call_statement_token1] = ACTIONS(8624), + [sym__ambiguous_call_statement] = ACTIONS(8624), + [aux_sym_addressof_expression_token1] = ACTIONS(8624), + [aux_sym_type_of_expression_token1] = ACTIONS(8624), + [aux_sym_unary_expression_token1] = ACTIONS(8624), + [sym_string_literal] = ACTIONS(8626), + [sym_number_literal] = ACTIONS(8626), + [aux_sym_boolean_literal_token1] = ACTIONS(8624), + [aux_sym_boolean_literal_token2] = ACTIONS(8624), + [sym_nothing_literal] = ACTIONS(8624), + [sym_null_literal] = ACTIONS(8624), + [sym_empty_literal] = ACTIONS(8624), + [sym_date_literal] = ACTIONS(8626), + [anon_sym_POUND] = ACTIONS(8624), + }, + [STATE(5029)] = { + [sym_identifier] = ACTIONS(8839), + [sym_newline] = ACTIONS(8841), + [anon_sym_COLON] = ACTIONS(8841), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8839), + [aux_sym_frm_property_statement_token1] = ACTIONS(8839), + [anon_sym_DOT] = ACTIONS(8839), + [anon_sym_BANG] = ACTIONS(8841), + [aux_sym__attribute_identifier_token1] = ACTIONS(8839), + [aux_sym_option_statement_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8839), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8839), + [aux_sym_preprocessor_const_token1] = ACTIONS(8839), + [sym_static_modifier] = ACTIONS(8839), + [sym__dim_keyword] = ACTIONS(8839), + [sym__redim_keyword] = ACTIONS(8839), + [aux_sym_get_accessor_token1] = ACTIONS(8839), + [aux_sym_set_accessor_token1] = ACTIONS(8839), + [aux_sym_const_declaration_token1] = ACTIONS(8839), + [anon_sym_LPAREN] = ACTIONS(8841), + [aux_sym_as_type_clause_token2] = ACTIONS(8839), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8839), + [aux_sym_visibility_token1] = ACTIONS(8839), + [aux_sym_visibility_token2] = ACTIONS(8839), + [aux_sym_elseif_fragment_token1] = ACTIONS(8839), + [aux_sym_else_fragment_token1] = ACTIONS(8839), + [aux_sym_select_statement_token1] = ACTIONS(8839), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8839), + [aux_sym__for_header_token1] = ACTIONS(8839), + [aux_sym_do_statement_token1] = ACTIONS(8839), + [aux_sym_do_condition_token1] = ACTIONS(8839), + [aux_sym_with_statement_token1] = ACTIONS(8839), + [aux_sym_exit_statement_token1] = ACTIONS(8839), + [sym_end_statement] = ACTIONS(8841), + [aux_sym_on_goto_statement_token1] = ACTIONS(8839), + [aux_sym_on_goto_statement_token2] = ACTIONS(8839), + [aux_sym_on_error_statement_token2] = ACTIONS(8839), + [sym__ambiguous_redim_statement] = ACTIONS(8841), + [aux_sym_erase_statement_token1] = ACTIONS(8839), + [aux_sym_open_statement_token1] = ACTIONS(8839), + [aux_sym_file_mode_token2] = ACTIONS(8839), + [aux_sym_file_access_token2] = ACTIONS(8839), + [aux_sym_file_lock_token2] = ACTIONS(8839), + [aux_sym_print_statement_token1] = ACTIONS(8839), + [anon_sym_PLUS] = ACTIONS(8841), + [anon_sym_DASH] = ACTIONS(8839), + [anon_sym_QMARK] = ACTIONS(8841), + [aux_sym_close_statement_token1] = ACTIONS(8839), + [aux_sym_put_statement_token1] = ACTIONS(8839), + [aux_sym_unlock_statement_token1] = ACTIONS(8839), + [aux_sym_seek_statement_token1] = ACTIONS(8839), + [sym_reset_statement] = ACTIONS(8839), + [aux_sym_raise_event_statement_token1] = ACTIONS(8839), + [sym_stop_statement] = ACTIONS(8839), + [sym_beep_statement] = ACTIONS(8839), + [aux_sym_unload_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token2] = ACTIONS(8839), + [aux_sym_def_type_statement_token3] = ACTIONS(8839), + [aux_sym_def_type_statement_token4] = ACTIONS(8839), + [aux_sym_def_type_statement_token5] = ACTIONS(8839), + [aux_sym_def_type_statement_token6] = ACTIONS(8839), + [aux_sym_def_type_statement_token7] = ACTIONS(8839), + [aux_sym_def_type_statement_token8] = ACTIONS(8839), + [aux_sym_def_type_statement_token9] = ACTIONS(8839), + [aux_sym_def_type_statement_token10] = ACTIONS(8839), + [aux_sym_def_type_statement_token11] = ACTIONS(8839), + [aux_sym_def_type_statement_token12] = ACTIONS(8839), + [aux_sym_def_type_statement_token13] = ACTIONS(8839), + [aux_sym_def_type_statement_token14] = ACTIONS(8839), + [aux_sym_call_statement_token1] = ACTIONS(8839), + [sym__ambiguous_call_statement] = ACTIONS(8839), + [aux_sym_addressof_expression_token1] = ACTIONS(8839), + [aux_sym_type_of_expression_token1] = ACTIONS(8839), + [aux_sym_unary_expression_token1] = ACTIONS(8839), + [sym_string_literal] = ACTIONS(8841), + [sym_number_literal] = ACTIONS(8841), + [aux_sym_boolean_literal_token1] = ACTIONS(8839), + [aux_sym_boolean_literal_token2] = ACTIONS(8839), + [sym_nothing_literal] = ACTIONS(8839), + [sym_null_literal] = ACTIONS(8839), + [sym_empty_literal] = ACTIONS(8839), + [sym_date_literal] = ACTIONS(8841), + [anon_sym_POUND] = ACTIONS(8839), + }, + [STATE(5030)] = { + [sym_identifier] = ACTIONS(8853), + [sym_newline] = ACTIONS(8855), + [anon_sym_COLON] = ACTIONS(8855), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8853), + [aux_sym_frm_property_statement_token1] = ACTIONS(8853), + [anon_sym_DOT] = ACTIONS(8853), + [anon_sym_BANG] = ACTIONS(8855), + [aux_sym__attribute_identifier_token1] = ACTIONS(8853), + [aux_sym_option_statement_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8853), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8853), + [aux_sym_preprocessor_const_token1] = ACTIONS(8853), + [sym_static_modifier] = ACTIONS(8853), + [sym__dim_keyword] = ACTIONS(8853), + [sym__redim_keyword] = ACTIONS(8853), + [aux_sym_get_accessor_token1] = ACTIONS(8853), + [aux_sym_set_accessor_token1] = ACTIONS(8853), + [aux_sym_const_declaration_token1] = ACTIONS(8853), + [anon_sym_LPAREN] = ACTIONS(8855), + [aux_sym_as_type_clause_token2] = ACTIONS(8853), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8853), + [aux_sym_visibility_token1] = ACTIONS(8853), + [aux_sym_visibility_token2] = ACTIONS(8853), + [aux_sym_elseif_fragment_token1] = ACTIONS(8853), + [aux_sym_else_fragment_token1] = ACTIONS(8853), + [aux_sym_select_statement_token1] = ACTIONS(8853), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8853), + [aux_sym__for_header_token1] = ACTIONS(8853), + [aux_sym_do_statement_token1] = ACTIONS(8853), + [aux_sym_do_condition_token1] = ACTIONS(8853), + [aux_sym_with_statement_token1] = ACTIONS(8853), + [aux_sym_exit_statement_token1] = ACTIONS(8853), + [sym_end_statement] = ACTIONS(8855), + [aux_sym_on_goto_statement_token1] = ACTIONS(8853), + [aux_sym_on_goto_statement_token2] = ACTIONS(8853), + [aux_sym_on_error_statement_token2] = ACTIONS(8853), + [sym__ambiguous_redim_statement] = ACTIONS(8855), + [aux_sym_erase_statement_token1] = ACTIONS(8853), + [aux_sym_open_statement_token1] = ACTIONS(8853), + [aux_sym_file_mode_token2] = ACTIONS(8853), + [aux_sym_file_access_token2] = ACTIONS(8853), + [aux_sym_file_lock_token2] = ACTIONS(8853), + [aux_sym_print_statement_token1] = ACTIONS(8853), + [anon_sym_PLUS] = ACTIONS(8855), + [anon_sym_DASH] = ACTIONS(8853), + [anon_sym_QMARK] = ACTIONS(8855), + [aux_sym_close_statement_token1] = ACTIONS(8853), + [aux_sym_put_statement_token1] = ACTIONS(8853), + [aux_sym_unlock_statement_token1] = ACTIONS(8853), + [aux_sym_seek_statement_token1] = ACTIONS(8853), + [sym_reset_statement] = ACTIONS(8853), + [aux_sym_raise_event_statement_token1] = ACTIONS(8853), + [sym_stop_statement] = ACTIONS(8853), + [sym_beep_statement] = ACTIONS(8853), + [aux_sym_unload_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token2] = ACTIONS(8853), + [aux_sym_def_type_statement_token3] = ACTIONS(8853), + [aux_sym_def_type_statement_token4] = ACTIONS(8853), + [aux_sym_def_type_statement_token5] = ACTIONS(8853), + [aux_sym_def_type_statement_token6] = ACTIONS(8853), + [aux_sym_def_type_statement_token7] = ACTIONS(8853), + [aux_sym_def_type_statement_token8] = ACTIONS(8853), + [aux_sym_def_type_statement_token9] = ACTIONS(8853), + [aux_sym_def_type_statement_token10] = ACTIONS(8853), + [aux_sym_def_type_statement_token11] = ACTIONS(8853), + [aux_sym_def_type_statement_token12] = ACTIONS(8853), + [aux_sym_def_type_statement_token13] = ACTIONS(8853), + [aux_sym_def_type_statement_token14] = ACTIONS(8853), + [aux_sym_call_statement_token1] = ACTIONS(8853), + [sym__ambiguous_call_statement] = ACTIONS(8853), + [aux_sym_addressof_expression_token1] = ACTIONS(8853), + [aux_sym_type_of_expression_token1] = ACTIONS(8853), + [aux_sym_unary_expression_token1] = ACTIONS(8853), + [sym_string_literal] = ACTIONS(8855), + [sym_number_literal] = ACTIONS(8855), + [aux_sym_boolean_literal_token1] = ACTIONS(8853), + [aux_sym_boolean_literal_token2] = ACTIONS(8853), + [sym_nothing_literal] = ACTIONS(8853), + [sym_null_literal] = ACTIONS(8853), + [sym_empty_literal] = ACTIONS(8853), + [sym_date_literal] = ACTIONS(8855), + [anon_sym_POUND] = ACTIONS(8853), + }, + [STATE(5031)] = { + [sym_identifier] = ACTIONS(8857), + [sym_newline] = ACTIONS(8859), + [anon_sym_COLON] = ACTIONS(8859), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8857), + [aux_sym_frm_property_statement_token1] = ACTIONS(8857), + [anon_sym_DOT] = ACTIONS(8857), + [anon_sym_BANG] = ACTIONS(8859), + [aux_sym__attribute_identifier_token1] = ACTIONS(8857), + [aux_sym_option_statement_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8857), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8857), + [aux_sym_preprocessor_const_token1] = ACTIONS(8857), + [sym_static_modifier] = ACTIONS(8857), + [sym__dim_keyword] = ACTIONS(8857), + [sym__redim_keyword] = ACTIONS(8857), + [aux_sym_get_accessor_token1] = ACTIONS(8857), + [aux_sym_set_accessor_token1] = ACTIONS(8857), + [aux_sym_const_declaration_token1] = ACTIONS(8857), + [anon_sym_LPAREN] = ACTIONS(8859), + [aux_sym_as_type_clause_token2] = ACTIONS(8857), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8857), + [aux_sym_visibility_token1] = ACTIONS(8857), + [aux_sym_visibility_token2] = ACTIONS(8857), + [aux_sym_elseif_fragment_token1] = ACTIONS(8857), + [aux_sym_else_fragment_token1] = ACTIONS(8857), + [aux_sym_select_statement_token1] = ACTIONS(8857), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8857), + [aux_sym__for_header_token1] = ACTIONS(8857), + [aux_sym_do_statement_token1] = ACTIONS(8857), + [aux_sym_do_condition_token1] = ACTIONS(8857), + [aux_sym_with_statement_token1] = ACTIONS(8857), + [aux_sym_exit_statement_token1] = ACTIONS(8857), + [sym_end_statement] = ACTIONS(8859), + [aux_sym_on_goto_statement_token1] = ACTIONS(8857), + [aux_sym_on_goto_statement_token2] = ACTIONS(8857), + [aux_sym_on_error_statement_token2] = ACTIONS(8857), + [sym__ambiguous_redim_statement] = ACTIONS(8859), + [aux_sym_erase_statement_token1] = ACTIONS(8857), + [aux_sym_open_statement_token1] = ACTIONS(8857), + [aux_sym_file_mode_token2] = ACTIONS(8857), + [aux_sym_file_access_token2] = ACTIONS(8857), + [aux_sym_file_lock_token2] = ACTIONS(8857), + [aux_sym_print_statement_token1] = ACTIONS(8857), + [anon_sym_PLUS] = ACTIONS(8859), + [anon_sym_DASH] = ACTIONS(8857), + [anon_sym_QMARK] = ACTIONS(8859), + [aux_sym_close_statement_token1] = ACTIONS(8857), + [aux_sym_put_statement_token1] = ACTIONS(8857), + [aux_sym_unlock_statement_token1] = ACTIONS(8857), + [aux_sym_seek_statement_token1] = ACTIONS(8857), + [sym_reset_statement] = ACTIONS(8857), + [aux_sym_raise_event_statement_token1] = ACTIONS(8857), + [sym_stop_statement] = ACTIONS(8857), + [sym_beep_statement] = ACTIONS(8857), + [aux_sym_unload_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token2] = ACTIONS(8857), + [aux_sym_def_type_statement_token3] = ACTIONS(8857), + [aux_sym_def_type_statement_token4] = ACTIONS(8857), + [aux_sym_def_type_statement_token5] = ACTIONS(8857), + [aux_sym_def_type_statement_token6] = ACTIONS(8857), + [aux_sym_def_type_statement_token7] = ACTIONS(8857), + [aux_sym_def_type_statement_token8] = ACTIONS(8857), + [aux_sym_def_type_statement_token9] = ACTIONS(8857), + [aux_sym_def_type_statement_token10] = ACTIONS(8857), + [aux_sym_def_type_statement_token11] = ACTIONS(8857), + [aux_sym_def_type_statement_token12] = ACTIONS(8857), + [aux_sym_def_type_statement_token13] = ACTIONS(8857), + [aux_sym_def_type_statement_token14] = ACTIONS(8857), + [aux_sym_call_statement_token1] = ACTIONS(8857), + [sym__ambiguous_call_statement] = ACTIONS(8857), + [aux_sym_addressof_expression_token1] = ACTIONS(8857), + [aux_sym_type_of_expression_token1] = ACTIONS(8857), + [aux_sym_unary_expression_token1] = ACTIONS(8857), + [sym_string_literal] = ACTIONS(8859), + [sym_number_literal] = ACTIONS(8859), + [aux_sym_boolean_literal_token1] = ACTIONS(8857), + [aux_sym_boolean_literal_token2] = ACTIONS(8857), + [sym_nothing_literal] = ACTIONS(8857), + [sym_null_literal] = ACTIONS(8857), + [sym_empty_literal] = ACTIONS(8857), + [sym_date_literal] = ACTIONS(8859), + [anon_sym_POUND] = ACTIONS(8857), + }, + [STATE(5032)] = { + [sym_identifier] = ACTIONS(8686), + [sym_newline] = ACTIONS(8688), + [anon_sym_COLON] = ACTIONS(8688), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8686), + [aux_sym_frm_property_statement_token1] = ACTIONS(8686), + [anon_sym_DOT] = ACTIONS(8686), + [anon_sym_BANG] = ACTIONS(8688), + [aux_sym__attribute_identifier_token1] = ACTIONS(8686), + [aux_sym_option_statement_token3] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8686), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8686), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8686), + [aux_sym_preprocessor_const_token1] = ACTIONS(8686), + [sym_static_modifier] = ACTIONS(8686), + [sym__dim_keyword] = ACTIONS(8686), + [sym__redim_keyword] = ACTIONS(8686), + [aux_sym_get_accessor_token1] = ACTIONS(8686), + [aux_sym_set_accessor_token1] = ACTIONS(8686), + [aux_sym_const_declaration_token1] = ACTIONS(8686), + [anon_sym_LPAREN] = ACTIONS(8688), + [aux_sym_as_type_clause_token2] = ACTIONS(8686), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8686), + [aux_sym_visibility_token1] = ACTIONS(8686), + [aux_sym_visibility_token2] = ACTIONS(8686), + [aux_sym_elseif_fragment_token1] = ACTIONS(8686), + [aux_sym_else_fragment_token1] = ACTIONS(8686), + [aux_sym_select_statement_token1] = ACTIONS(8686), + [aux_sym__for_header_token1] = ACTIONS(8686), + [aux_sym_do_statement_token1] = ACTIONS(8686), + [aux_sym_do_condition_token1] = ACTIONS(8686), + [aux_sym_with_statement_token1] = ACTIONS(8686), + [aux_sym_exit_statement_token1] = ACTIONS(8686), + [sym_end_statement] = ACTIONS(8688), + [aux_sym_on_goto_statement_token1] = ACTIONS(8686), + [aux_sym_on_goto_statement_token2] = ACTIONS(8686), + [aux_sym_on_error_statement_token2] = ACTIONS(8686), + [sym__ambiguous_redim_statement] = ACTIONS(8688), + [aux_sym_erase_statement_token1] = ACTIONS(8686), + [aux_sym_open_statement_token1] = ACTIONS(8686), + [aux_sym_open_statement_token3] = ACTIONS(10385), + [aux_sym_file_mode_token2] = ACTIONS(8686), + [aux_sym_file_access_token2] = ACTIONS(8686), + [aux_sym_file_lock_token2] = ACTIONS(8686), + [aux_sym_print_statement_token1] = ACTIONS(8686), + [anon_sym_PLUS] = ACTIONS(8688), + [anon_sym_DASH] = ACTIONS(8686), + [anon_sym_QMARK] = ACTIONS(8688), + [aux_sym_close_statement_token1] = ACTIONS(8686), + [aux_sym_put_statement_token1] = ACTIONS(8686), + [aux_sym_unlock_statement_token1] = ACTIONS(8686), + [aux_sym_seek_statement_token1] = ACTIONS(8686), + [sym_reset_statement] = ACTIONS(8686), + [aux_sym_raise_event_statement_token1] = ACTIONS(8686), + [sym_stop_statement] = ACTIONS(8686), + [sym_beep_statement] = ACTIONS(8686), + [aux_sym_unload_statement_token1] = ACTIONS(8686), + [aux_sym_def_type_statement_token1] = ACTIONS(8686), + [aux_sym_def_type_statement_token2] = ACTIONS(8686), + [aux_sym_def_type_statement_token3] = ACTIONS(8686), + [aux_sym_def_type_statement_token4] = ACTIONS(8686), + [aux_sym_def_type_statement_token5] = ACTIONS(8686), + [aux_sym_def_type_statement_token6] = ACTIONS(8686), + [aux_sym_def_type_statement_token7] = ACTIONS(8686), + [aux_sym_def_type_statement_token8] = ACTIONS(8686), + [aux_sym_def_type_statement_token9] = ACTIONS(8686), + [aux_sym_def_type_statement_token10] = ACTIONS(8686), + [aux_sym_def_type_statement_token11] = ACTIONS(8686), + [aux_sym_def_type_statement_token12] = ACTIONS(8686), + [aux_sym_def_type_statement_token13] = ACTIONS(8686), + [aux_sym_def_type_statement_token14] = ACTIONS(8686), + [aux_sym_call_statement_token1] = ACTIONS(8686), + [sym__ambiguous_call_statement] = ACTIONS(8686), + [aux_sym_addressof_expression_token1] = ACTIONS(8686), + [aux_sym_type_of_expression_token1] = ACTIONS(8686), + [aux_sym_unary_expression_token1] = ACTIONS(8686), + [sym_string_literal] = ACTIONS(8688), + [sym_number_literal] = ACTIONS(8688), + [aux_sym_boolean_literal_token1] = ACTIONS(8686), + [aux_sym_boolean_literal_token2] = ACTIONS(8686), + [sym_nothing_literal] = ACTIONS(8686), + [sym_null_literal] = ACTIONS(8686), + [sym_empty_literal] = ACTIONS(8686), + [sym_date_literal] = ACTIONS(8688), + [anon_sym_POUND] = ACTIONS(8686), + }, + [STATE(5033)] = { + [sym_identifier] = ACTIONS(8723), + [sym_newline] = ACTIONS(8725), + [anon_sym_COLON] = ACTIONS(8725), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8723), + [aux_sym_frm_property_statement_token1] = ACTIONS(8723), + [anon_sym_DOT] = ACTIONS(8723), + [anon_sym_BANG] = ACTIONS(8725), + [aux_sym__attribute_identifier_token1] = ACTIONS(8723), + [aux_sym_option_statement_token3] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8723), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8723), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8723), + [aux_sym_preprocessor_const_token1] = ACTIONS(8723), + [sym_static_modifier] = ACTIONS(8723), + [sym__dim_keyword] = ACTIONS(8723), + [sym__redim_keyword] = ACTIONS(8723), + [aux_sym_get_accessor_token1] = ACTIONS(8723), + [aux_sym_set_accessor_token1] = ACTIONS(8723), + [aux_sym_const_declaration_token1] = ACTIONS(8723), + [anon_sym_LPAREN] = ACTIONS(8725), + [aux_sym_as_type_clause_token2] = ACTIONS(8723), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8723), + [aux_sym_visibility_token1] = ACTIONS(8723), + [aux_sym_visibility_token2] = ACTIONS(8723), + [aux_sym_elseif_fragment_token1] = ACTIONS(8723), + [aux_sym_else_fragment_token1] = ACTIONS(8723), + [aux_sym_select_statement_token1] = ACTIONS(8723), + [aux_sym__for_header_token1] = ACTIONS(8723), + [aux_sym_do_statement_token1] = ACTIONS(8723), + [aux_sym_do_condition_token1] = ACTIONS(8723), + [aux_sym_with_statement_token1] = ACTIONS(8723), + [aux_sym_exit_statement_token1] = ACTIONS(8723), + [sym_end_statement] = ACTIONS(8725), + [aux_sym_on_goto_statement_token1] = ACTIONS(8723), + [aux_sym_on_goto_statement_token2] = ACTIONS(8723), + [aux_sym_on_error_statement_token2] = ACTIONS(8723), + [sym__ambiguous_redim_statement] = ACTIONS(8725), + [aux_sym_erase_statement_token1] = ACTIONS(8723), + [aux_sym_open_statement_token1] = ACTIONS(8723), + [aux_sym_open_statement_token3] = ACTIONS(10387), + [aux_sym_file_mode_token2] = ACTIONS(8723), + [aux_sym_file_access_token2] = ACTIONS(8723), + [aux_sym_file_lock_token2] = ACTIONS(8723), + [aux_sym_print_statement_token1] = ACTIONS(8723), + [anon_sym_PLUS] = ACTIONS(8725), + [anon_sym_DASH] = ACTIONS(8723), + [anon_sym_QMARK] = ACTIONS(8725), + [aux_sym_close_statement_token1] = ACTIONS(8723), + [aux_sym_put_statement_token1] = ACTIONS(8723), + [aux_sym_unlock_statement_token1] = ACTIONS(8723), + [aux_sym_seek_statement_token1] = ACTIONS(8723), + [sym_reset_statement] = ACTIONS(8723), + [aux_sym_raise_event_statement_token1] = ACTIONS(8723), + [sym_stop_statement] = ACTIONS(8723), + [sym_beep_statement] = ACTIONS(8723), + [aux_sym_unload_statement_token1] = ACTIONS(8723), + [aux_sym_def_type_statement_token1] = ACTIONS(8723), + [aux_sym_def_type_statement_token2] = ACTIONS(8723), + [aux_sym_def_type_statement_token3] = ACTIONS(8723), + [aux_sym_def_type_statement_token4] = ACTIONS(8723), + [aux_sym_def_type_statement_token5] = ACTIONS(8723), + [aux_sym_def_type_statement_token6] = ACTIONS(8723), + [aux_sym_def_type_statement_token7] = ACTIONS(8723), + [aux_sym_def_type_statement_token8] = ACTIONS(8723), + [aux_sym_def_type_statement_token9] = ACTIONS(8723), + [aux_sym_def_type_statement_token10] = ACTIONS(8723), + [aux_sym_def_type_statement_token11] = ACTIONS(8723), + [aux_sym_def_type_statement_token12] = ACTIONS(8723), + [aux_sym_def_type_statement_token13] = ACTIONS(8723), + [aux_sym_def_type_statement_token14] = ACTIONS(8723), + [aux_sym_call_statement_token1] = ACTIONS(8723), + [sym__ambiguous_call_statement] = ACTIONS(8723), + [aux_sym_addressof_expression_token1] = ACTIONS(8723), + [aux_sym_type_of_expression_token1] = ACTIONS(8723), + [aux_sym_unary_expression_token1] = ACTIONS(8723), + [sym_string_literal] = ACTIONS(8725), + [sym_number_literal] = ACTIONS(8725), + [aux_sym_boolean_literal_token1] = ACTIONS(8723), + [aux_sym_boolean_literal_token2] = ACTIONS(8723), + [sym_nothing_literal] = ACTIONS(8723), + [sym_null_literal] = ACTIONS(8723), + [sym_empty_literal] = ACTIONS(8723), + [sym_date_literal] = ACTIONS(8725), + [anon_sym_POUND] = ACTIONS(8723), + }, + [STATE(5034)] = { + [sym_identifier] = ACTIONS(8861), + [sym_newline] = ACTIONS(8863), + [anon_sym_COLON] = ACTIONS(8863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8861), + [aux_sym_frm_property_statement_token1] = ACTIONS(8861), + [anon_sym_DOT] = ACTIONS(8861), + [anon_sym_BANG] = ACTIONS(8863), + [aux_sym__attribute_identifier_token1] = ACTIONS(8861), + [aux_sym_option_statement_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8861), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8861), + [aux_sym_preprocessor_const_token1] = ACTIONS(8861), + [sym_static_modifier] = ACTIONS(8861), + [sym__dim_keyword] = ACTIONS(8861), + [sym__redim_keyword] = ACTIONS(8861), + [aux_sym_get_accessor_token1] = ACTIONS(8861), + [aux_sym_set_accessor_token1] = ACTIONS(8861), + [aux_sym_const_declaration_token1] = ACTIONS(8861), + [anon_sym_LPAREN] = ACTIONS(8863), + [aux_sym_as_type_clause_token2] = ACTIONS(8861), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8861), + [aux_sym_visibility_token1] = ACTIONS(8861), + [aux_sym_visibility_token2] = ACTIONS(8861), + [aux_sym_elseif_fragment_token1] = ACTIONS(8861), + [aux_sym_else_fragment_token1] = ACTIONS(8861), + [aux_sym_select_statement_token1] = ACTIONS(8861), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8861), + [aux_sym__for_header_token1] = ACTIONS(8861), + [aux_sym_do_statement_token1] = ACTIONS(8861), + [aux_sym_do_condition_token1] = ACTIONS(8861), + [aux_sym_with_statement_token1] = ACTIONS(8861), + [aux_sym_exit_statement_token1] = ACTIONS(8861), + [sym_end_statement] = ACTIONS(8863), + [aux_sym_on_goto_statement_token1] = ACTIONS(8861), + [aux_sym_on_goto_statement_token2] = ACTIONS(8861), + [aux_sym_on_error_statement_token2] = ACTIONS(8861), + [sym__ambiguous_redim_statement] = ACTIONS(8863), + [aux_sym_erase_statement_token1] = ACTIONS(8861), + [aux_sym_open_statement_token1] = ACTIONS(8861), + [aux_sym_file_mode_token2] = ACTIONS(8861), + [aux_sym_file_access_token2] = ACTIONS(8861), + [aux_sym_file_lock_token2] = ACTIONS(8861), + [aux_sym_print_statement_token1] = ACTIONS(8861), + [anon_sym_PLUS] = ACTIONS(8863), + [anon_sym_DASH] = ACTIONS(8861), + [anon_sym_QMARK] = ACTIONS(8863), + [aux_sym_close_statement_token1] = ACTIONS(8861), + [aux_sym_put_statement_token1] = ACTIONS(8861), + [aux_sym_unlock_statement_token1] = ACTIONS(8861), + [aux_sym_seek_statement_token1] = ACTIONS(8861), + [sym_reset_statement] = ACTIONS(8861), + [aux_sym_raise_event_statement_token1] = ACTIONS(8861), + [sym_stop_statement] = ACTIONS(8861), + [sym_beep_statement] = ACTIONS(8861), + [aux_sym_unload_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token2] = ACTIONS(8861), + [aux_sym_def_type_statement_token3] = ACTIONS(8861), + [aux_sym_def_type_statement_token4] = ACTIONS(8861), + [aux_sym_def_type_statement_token5] = ACTIONS(8861), + [aux_sym_def_type_statement_token6] = ACTIONS(8861), + [aux_sym_def_type_statement_token7] = ACTIONS(8861), + [aux_sym_def_type_statement_token8] = ACTIONS(8861), + [aux_sym_def_type_statement_token9] = ACTIONS(8861), + [aux_sym_def_type_statement_token10] = ACTIONS(8861), + [aux_sym_def_type_statement_token11] = ACTIONS(8861), + [aux_sym_def_type_statement_token12] = ACTIONS(8861), + [aux_sym_def_type_statement_token13] = ACTIONS(8861), + [aux_sym_def_type_statement_token14] = ACTIONS(8861), + [aux_sym_call_statement_token1] = ACTIONS(8861), + [sym__ambiguous_call_statement] = ACTIONS(8861), + [aux_sym_addressof_expression_token1] = ACTIONS(8861), + [aux_sym_type_of_expression_token1] = ACTIONS(8861), + [aux_sym_unary_expression_token1] = ACTIONS(8861), + [sym_string_literal] = ACTIONS(8863), + [sym_number_literal] = ACTIONS(8863), + [aux_sym_boolean_literal_token1] = ACTIONS(8861), + [aux_sym_boolean_literal_token2] = ACTIONS(8861), + [sym_nothing_literal] = ACTIONS(8861), + [sym_null_literal] = ACTIONS(8861), + [sym_empty_literal] = ACTIONS(8861), + [sym_date_literal] = ACTIONS(8863), + [anon_sym_POUND] = ACTIONS(8861), + }, + [STATE(5035)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(5036)] = { + [sym_identifier] = ACTIONS(8903), + [sym_newline] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8903), + [aux_sym_frm_property_statement_token1] = ACTIONS(8903), + [anon_sym_DOT] = ACTIONS(8903), + [anon_sym_BANG] = ACTIONS(8905), + [aux_sym__attribute_identifier_token1] = ACTIONS(8903), + [aux_sym_option_statement_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8903), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8903), + [aux_sym_preprocessor_const_token1] = ACTIONS(8903), + [sym_static_modifier] = ACTIONS(8903), + [sym__dim_keyword] = ACTIONS(8903), + [sym__redim_keyword] = ACTIONS(8903), + [aux_sym_get_accessor_token1] = ACTIONS(8903), + [aux_sym_set_accessor_token1] = ACTIONS(8903), + [aux_sym_const_declaration_token1] = ACTIONS(8903), + [anon_sym_LPAREN] = ACTIONS(8905), + [aux_sym_as_type_clause_token2] = ACTIONS(8903), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8903), + [aux_sym_visibility_token1] = ACTIONS(8903), + [aux_sym_visibility_token2] = ACTIONS(8903), + [aux_sym_elseif_fragment_token1] = ACTIONS(8903), + [aux_sym_else_fragment_token1] = ACTIONS(8903), + [aux_sym_select_statement_token1] = ACTIONS(8903), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8903), + [aux_sym__for_header_token1] = ACTIONS(8903), + [aux_sym_do_statement_token1] = ACTIONS(8903), + [aux_sym_do_condition_token1] = ACTIONS(8903), + [aux_sym_with_statement_token1] = ACTIONS(8903), + [aux_sym_exit_statement_token1] = ACTIONS(8903), + [sym_end_statement] = ACTIONS(8905), + [aux_sym_on_goto_statement_token1] = ACTIONS(8903), + [aux_sym_on_goto_statement_token2] = ACTIONS(8903), + [aux_sym_on_error_statement_token2] = ACTIONS(8903), + [sym__ambiguous_redim_statement] = ACTIONS(8905), + [aux_sym_erase_statement_token1] = ACTIONS(8903), + [aux_sym_open_statement_token1] = ACTIONS(8903), + [aux_sym_file_mode_token2] = ACTIONS(8903), + [aux_sym_file_access_token2] = ACTIONS(8903), + [aux_sym_file_lock_token2] = ACTIONS(8903), + [aux_sym_print_statement_token1] = ACTIONS(8903), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_DASH] = ACTIONS(8903), + [anon_sym_QMARK] = ACTIONS(8905), + [aux_sym_close_statement_token1] = ACTIONS(8903), + [aux_sym_put_statement_token1] = ACTIONS(8903), + [aux_sym_unlock_statement_token1] = ACTIONS(8903), + [aux_sym_seek_statement_token1] = ACTIONS(8903), + [sym_reset_statement] = ACTIONS(8903), + [aux_sym_raise_event_statement_token1] = ACTIONS(8903), + [sym_stop_statement] = ACTIONS(8903), + [sym_beep_statement] = ACTIONS(8903), + [aux_sym_unload_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token2] = ACTIONS(8903), + [aux_sym_def_type_statement_token3] = ACTIONS(8903), + [aux_sym_def_type_statement_token4] = ACTIONS(8903), + [aux_sym_def_type_statement_token5] = ACTIONS(8903), + [aux_sym_def_type_statement_token6] = ACTIONS(8903), + [aux_sym_def_type_statement_token7] = ACTIONS(8903), + [aux_sym_def_type_statement_token8] = ACTIONS(8903), + [aux_sym_def_type_statement_token9] = ACTIONS(8903), + [aux_sym_def_type_statement_token10] = ACTIONS(8903), + [aux_sym_def_type_statement_token11] = ACTIONS(8903), + [aux_sym_def_type_statement_token12] = ACTIONS(8903), + [aux_sym_def_type_statement_token13] = ACTIONS(8903), + [aux_sym_def_type_statement_token14] = ACTIONS(8903), + [aux_sym_call_statement_token1] = ACTIONS(8903), + [sym__ambiguous_call_statement] = ACTIONS(8903), + [aux_sym_addressof_expression_token1] = ACTIONS(8903), + [aux_sym_type_of_expression_token1] = ACTIONS(8903), + [aux_sym_unary_expression_token1] = ACTIONS(8903), + [sym_string_literal] = ACTIONS(8905), + [sym_number_literal] = ACTIONS(8905), + [aux_sym_boolean_literal_token1] = ACTIONS(8903), + [aux_sym_boolean_literal_token2] = ACTIONS(8903), + [sym_nothing_literal] = ACTIONS(8903), + [sym_null_literal] = ACTIONS(8903), + [sym_empty_literal] = ACTIONS(8903), + [sym_date_literal] = ACTIONS(8905), + [anon_sym_POUND] = ACTIONS(8903), + }, + [STATE(5037)] = { + [sym_identifier] = ACTIONS(8911), + [sym_newline] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8911), + [aux_sym_frm_property_statement_token1] = ACTIONS(8911), + [anon_sym_DOT] = ACTIONS(8911), + [anon_sym_BANG] = ACTIONS(8913), + [aux_sym__attribute_identifier_token1] = ACTIONS(8911), + [aux_sym_option_statement_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8911), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8911), + [aux_sym_preprocessor_const_token1] = ACTIONS(8911), + [sym_static_modifier] = ACTIONS(8911), + [sym__dim_keyword] = ACTIONS(8911), + [sym__redim_keyword] = ACTIONS(8911), + [aux_sym_get_accessor_token1] = ACTIONS(8911), + [aux_sym_set_accessor_token1] = ACTIONS(8911), + [aux_sym_const_declaration_token1] = ACTIONS(8911), + [anon_sym_LPAREN] = ACTIONS(8913), + [aux_sym_as_type_clause_token2] = ACTIONS(8911), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8911), + [aux_sym_visibility_token1] = ACTIONS(8911), + [aux_sym_visibility_token2] = ACTIONS(8911), + [aux_sym_elseif_fragment_token1] = ACTIONS(8911), + [aux_sym_else_fragment_token1] = ACTIONS(8911), + [aux_sym_select_statement_token1] = ACTIONS(8911), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8911), + [aux_sym__for_header_token1] = ACTIONS(8911), + [aux_sym_do_statement_token1] = ACTIONS(8911), + [aux_sym_do_condition_token1] = ACTIONS(8911), + [aux_sym_with_statement_token1] = ACTIONS(8911), + [aux_sym_exit_statement_token1] = ACTIONS(8911), + [sym_end_statement] = ACTIONS(8913), + [aux_sym_on_goto_statement_token1] = ACTIONS(8911), + [aux_sym_on_goto_statement_token2] = ACTIONS(8911), + [aux_sym_on_error_statement_token2] = ACTIONS(8911), + [sym__ambiguous_redim_statement] = ACTIONS(8913), + [aux_sym_erase_statement_token1] = ACTIONS(8911), + [aux_sym_open_statement_token1] = ACTIONS(8911), + [aux_sym_file_mode_token2] = ACTIONS(8911), + [aux_sym_file_access_token2] = ACTIONS(8911), + [aux_sym_file_lock_token2] = ACTIONS(8911), + [aux_sym_print_statement_token1] = ACTIONS(8911), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_DASH] = ACTIONS(8911), + [anon_sym_QMARK] = ACTIONS(8913), + [aux_sym_close_statement_token1] = ACTIONS(8911), + [aux_sym_put_statement_token1] = ACTIONS(8911), + [aux_sym_unlock_statement_token1] = ACTIONS(8911), + [aux_sym_seek_statement_token1] = ACTIONS(8911), + [sym_reset_statement] = ACTIONS(8911), + [aux_sym_raise_event_statement_token1] = ACTIONS(8911), + [sym_stop_statement] = ACTIONS(8911), + [sym_beep_statement] = ACTIONS(8911), + [aux_sym_unload_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token2] = ACTIONS(8911), + [aux_sym_def_type_statement_token3] = ACTIONS(8911), + [aux_sym_def_type_statement_token4] = ACTIONS(8911), + [aux_sym_def_type_statement_token5] = ACTIONS(8911), + [aux_sym_def_type_statement_token6] = ACTIONS(8911), + [aux_sym_def_type_statement_token7] = ACTIONS(8911), + [aux_sym_def_type_statement_token8] = ACTIONS(8911), + [aux_sym_def_type_statement_token9] = ACTIONS(8911), + [aux_sym_def_type_statement_token10] = ACTIONS(8911), + [aux_sym_def_type_statement_token11] = ACTIONS(8911), + [aux_sym_def_type_statement_token12] = ACTIONS(8911), + [aux_sym_def_type_statement_token13] = ACTIONS(8911), + [aux_sym_def_type_statement_token14] = ACTIONS(8911), + [aux_sym_call_statement_token1] = ACTIONS(8911), + [sym__ambiguous_call_statement] = ACTIONS(8911), + [aux_sym_addressof_expression_token1] = ACTIONS(8911), + [aux_sym_type_of_expression_token1] = ACTIONS(8911), + [aux_sym_unary_expression_token1] = ACTIONS(8911), + [sym_string_literal] = ACTIONS(8913), + [sym_number_literal] = ACTIONS(8913), + [aux_sym_boolean_literal_token1] = ACTIONS(8911), + [aux_sym_boolean_literal_token2] = ACTIONS(8911), + [sym_nothing_literal] = ACTIONS(8911), + [sym_null_literal] = ACTIONS(8911), + [sym_empty_literal] = ACTIONS(8911), + [sym_date_literal] = ACTIONS(8913), + [anon_sym_POUND] = ACTIONS(8911), + }, + [STATE(5038)] = { + [sym_identifier] = ACTIONS(8865), + [sym_newline] = ACTIONS(8867), + [anon_sym_COLON] = ACTIONS(8867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8865), + [aux_sym_frm_property_statement_token1] = ACTIONS(8865), + [anon_sym_DOT] = ACTIONS(8865), + [anon_sym_BANG] = ACTIONS(8867), + [aux_sym__attribute_identifier_token1] = ACTIONS(8865), + [aux_sym_option_statement_token3] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8865), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8865), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8865), + [aux_sym_preprocessor_const_token1] = ACTIONS(8865), + [sym_static_modifier] = ACTIONS(8865), + [sym__dim_keyword] = ACTIONS(8865), + [sym__redim_keyword] = ACTIONS(8865), + [aux_sym_get_accessor_token1] = ACTIONS(8865), + [aux_sym_set_accessor_token1] = ACTIONS(8865), + [anon_sym_COMMA] = ACTIONS(8867), + [aux_sym_const_declaration_token1] = ACTIONS(8865), + [anon_sym_LPAREN] = ACTIONS(8867), + [aux_sym_as_type_clause_token2] = ACTIONS(8865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8865), + [aux_sym_visibility_token1] = ACTIONS(8865), + [aux_sym_visibility_token2] = ACTIONS(8865), + [aux_sym_elseif_fragment_token1] = ACTIONS(8865), + [aux_sym_else_fragment_token1] = ACTIONS(8865), + [aux_sym_select_statement_token1] = ACTIONS(8865), + [aux_sym__for_header_token1] = ACTIONS(8865), + [aux_sym_do_statement_token1] = ACTIONS(8865), + [aux_sym_do_condition_token1] = ACTIONS(8865), + [aux_sym_with_statement_token1] = ACTIONS(8865), + [aux_sym_exit_statement_token1] = ACTIONS(8865), + [sym_end_statement] = ACTIONS(8867), + [aux_sym_on_goto_statement_token1] = ACTIONS(8865), + [aux_sym_on_goto_statement_token2] = ACTIONS(8865), + [aux_sym_on_error_statement_token2] = ACTIONS(8865), + [sym__ambiguous_redim_statement] = ACTIONS(8867), + [aux_sym_erase_statement_token1] = ACTIONS(8865), + [aux_sym_open_statement_token1] = ACTIONS(8865), + [aux_sym_file_mode_token2] = ACTIONS(8865), + [aux_sym_file_access_token2] = ACTIONS(8865), + [aux_sym_file_lock_token2] = ACTIONS(8865), + [aux_sym_print_statement_token1] = ACTIONS(8865), + [anon_sym_PLUS] = ACTIONS(8867), + [anon_sym_DASH] = ACTIONS(8865), + [anon_sym_QMARK] = ACTIONS(8867), + [aux_sym_close_statement_token1] = ACTIONS(8865), + [aux_sym_put_statement_token1] = ACTIONS(8865), + [aux_sym_unlock_statement_token1] = ACTIONS(8865), + [aux_sym_seek_statement_token1] = ACTIONS(8865), + [sym_reset_statement] = ACTIONS(8865), + [aux_sym_raise_event_statement_token1] = ACTIONS(8865), + [sym_stop_statement] = ACTIONS(8865), + [sym_beep_statement] = ACTIONS(8865), + [aux_sym_unload_statement_token1] = ACTIONS(8865), + [aux_sym_def_type_statement_token1] = ACTIONS(8865), + [aux_sym_def_type_statement_token2] = ACTIONS(8865), + [aux_sym_def_type_statement_token3] = ACTIONS(8865), + [aux_sym_def_type_statement_token4] = ACTIONS(8865), + [aux_sym_def_type_statement_token5] = ACTIONS(8865), + [aux_sym_def_type_statement_token6] = ACTIONS(8865), + [aux_sym_def_type_statement_token7] = ACTIONS(8865), + [aux_sym_def_type_statement_token8] = ACTIONS(8865), + [aux_sym_def_type_statement_token9] = ACTIONS(8865), + [aux_sym_def_type_statement_token10] = ACTIONS(8865), + [aux_sym_def_type_statement_token11] = ACTIONS(8865), + [aux_sym_def_type_statement_token12] = ACTIONS(8865), + [aux_sym_def_type_statement_token13] = ACTIONS(8865), + [aux_sym_def_type_statement_token14] = ACTIONS(8865), + [aux_sym_call_statement_token1] = ACTIONS(8865), + [sym__ambiguous_call_statement] = ACTIONS(8865), + [aux_sym_addressof_expression_token1] = ACTIONS(8865), + [aux_sym_type_of_expression_token1] = ACTIONS(8865), + [aux_sym_unary_expression_token1] = ACTIONS(8865), + [sym_string_literal] = ACTIONS(8867), + [sym_number_literal] = ACTIONS(8867), + [aux_sym_boolean_literal_token1] = ACTIONS(8865), + [aux_sym_boolean_literal_token2] = ACTIONS(8865), + [sym_nothing_literal] = ACTIONS(8865), + [sym_null_literal] = ACTIONS(8865), + [sym_empty_literal] = ACTIONS(8865), + [sym_date_literal] = ACTIONS(8867), + [anon_sym_POUND] = ACTIONS(8865), + }, + [STATE(5039)] = { + [sym_initializer] = STATE(5819), + [sym_identifier] = ACTIONS(8091), + [sym_newline] = ACTIONS(8093), + [anon_sym_COLON] = ACTIONS(8093), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8091), + [aux_sym_frm_property_statement_token1] = ACTIONS(8091), + [anon_sym_EQ] = ACTIONS(10011), + [anon_sym_DOT] = ACTIONS(8091), + [anon_sym_BANG] = ACTIONS(8093), + [aux_sym__attribute_identifier_token1] = ACTIONS(8091), + [aux_sym_option_statement_token3] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8091), + [aux_sym_preprocessor_const_token1] = ACTIONS(8091), + [sym_static_modifier] = ACTIONS(8091), + [sym__dim_keyword] = ACTIONS(8091), + [sym__redim_keyword] = ACTIONS(8091), + [aux_sym_get_accessor_token1] = ACTIONS(8091), + [aux_sym_set_accessor_token1] = ACTIONS(8091), + [anon_sym_COMMA] = ACTIONS(8093), + [aux_sym_const_declaration_token1] = ACTIONS(8091), + [anon_sym_LPAREN] = ACTIONS(8093), + [aux_sym_as_type_clause_token2] = ACTIONS(8091), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8091), + [aux_sym_visibility_token1] = ACTIONS(8091), + [aux_sym_visibility_token2] = ACTIONS(8091), + [aux_sym_elseif_fragment_token1] = ACTIONS(8091), + [aux_sym_else_fragment_token1] = ACTIONS(8091), + [aux_sym_select_statement_token1] = ACTIONS(8091), + [aux_sym_select_statement_token2] = ACTIONS(8091), + [aux_sym__for_header_token1] = ACTIONS(8091), + [aux_sym_do_statement_token1] = ACTIONS(8091), + [aux_sym_do_condition_token1] = ACTIONS(8091), + [aux_sym_with_statement_token1] = ACTIONS(8091), + [aux_sym_exit_statement_token1] = ACTIONS(8091), + [sym_end_statement] = ACTIONS(8093), + [aux_sym_on_goto_statement_token1] = ACTIONS(8091), + [aux_sym_on_goto_statement_token2] = ACTIONS(8091), + [aux_sym_on_error_statement_token2] = ACTIONS(8091), + [sym__ambiguous_redim_statement] = ACTIONS(8093), + [aux_sym_erase_statement_token1] = ACTIONS(8091), + [aux_sym_open_statement_token1] = ACTIONS(8091), + [aux_sym_file_mode_token2] = ACTIONS(8091), + [aux_sym_file_access_token2] = ACTIONS(8091), + [aux_sym_file_lock_token2] = ACTIONS(8091), + [aux_sym_print_statement_token1] = ACTIONS(8091), + [anon_sym_PLUS] = ACTIONS(8093), + [anon_sym_DASH] = ACTIONS(8091), + [anon_sym_QMARK] = ACTIONS(8093), + [aux_sym_close_statement_token1] = ACTIONS(8091), + [aux_sym_put_statement_token1] = ACTIONS(8091), + [aux_sym_unlock_statement_token1] = ACTIONS(8091), + [aux_sym_seek_statement_token1] = ACTIONS(8091), + [sym_reset_statement] = ACTIONS(8091), + [aux_sym_raise_event_statement_token1] = ACTIONS(8091), + [sym_stop_statement] = ACTIONS(8091), + [sym_beep_statement] = ACTIONS(8091), + [aux_sym_unload_statement_token1] = ACTIONS(8091), + [aux_sym_def_type_statement_token1] = ACTIONS(8091), + [aux_sym_def_type_statement_token2] = ACTIONS(8091), + [aux_sym_def_type_statement_token3] = ACTIONS(8091), + [aux_sym_def_type_statement_token4] = ACTIONS(8091), + [aux_sym_def_type_statement_token5] = ACTIONS(8091), + [aux_sym_def_type_statement_token6] = ACTIONS(8091), + [aux_sym_def_type_statement_token7] = ACTIONS(8091), + [aux_sym_def_type_statement_token8] = ACTIONS(8091), + [aux_sym_def_type_statement_token9] = ACTIONS(8091), + [aux_sym_def_type_statement_token10] = ACTIONS(8091), + [aux_sym_def_type_statement_token11] = ACTIONS(8091), + [aux_sym_def_type_statement_token12] = ACTIONS(8091), + [aux_sym_def_type_statement_token13] = ACTIONS(8091), + [aux_sym_def_type_statement_token14] = ACTIONS(8091), + [aux_sym_call_statement_token1] = ACTIONS(8091), + [sym__ambiguous_call_statement] = ACTIONS(8091), + [aux_sym_addressof_expression_token1] = ACTIONS(8091), + [aux_sym_type_of_expression_token1] = ACTIONS(8091), + [aux_sym_unary_expression_token1] = ACTIONS(8091), + [sym_string_literal] = ACTIONS(8093), + [sym_number_literal] = ACTIONS(8093), + [aux_sym_boolean_literal_token1] = ACTIONS(8091), + [aux_sym_boolean_literal_token2] = ACTIONS(8091), + [sym_nothing_literal] = ACTIONS(8091), + [sym_null_literal] = ACTIONS(8091), + [sym_empty_literal] = ACTIONS(8091), + [sym_date_literal] = ACTIONS(8093), + [anon_sym_POUND] = ACTIONS(8091), + }, + [STATE(5040)] = { + [sym_argument_list] = STATE(10051), + [aux_sym_input_statement_repeat1] = STATE(5627), + [sym_identifier] = ACTIONS(7864), + [sym_newline] = ACTIONS(7866), + [anon_sym_COLON] = ACTIONS(7866), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7864), + [aux_sym_frm_property_statement_token1] = ACTIONS(7864), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_BANG] = ACTIONS(7866), + [aux_sym__attribute_identifier_token1] = ACTIONS(7864), + [aux_sym_option_statement_token3] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7864), + [aux_sym_preprocessor_const_token1] = ACTIONS(7864), + [sym_static_modifier] = ACTIONS(7864), + [sym__dim_keyword] = ACTIONS(7864), + [sym__redim_keyword] = ACTIONS(7864), + [aux_sym_get_accessor_token1] = ACTIONS(7864), + [aux_sym_set_accessor_token1] = ACTIONS(7864), + [anon_sym_COMMA] = ACTIONS(10389), + [aux_sym_const_declaration_token1] = ACTIONS(7864), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(7864), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7864), + [aux_sym_visibility_token1] = ACTIONS(7864), + [aux_sym_visibility_token2] = ACTIONS(7864), + [aux_sym_elseif_fragment_token1] = ACTIONS(7864), + [aux_sym_else_fragment_token1] = ACTIONS(7864), + [aux_sym_select_statement_token1] = ACTIONS(7864), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7864), + [aux_sym__for_header_token1] = ACTIONS(7864), + [aux_sym_do_statement_token1] = ACTIONS(7864), + [aux_sym_do_condition_token1] = ACTIONS(7864), + [aux_sym_with_statement_token1] = ACTIONS(7864), + [aux_sym_exit_statement_token1] = ACTIONS(7864), + [sym_end_statement] = ACTIONS(7866), + [aux_sym_on_goto_statement_token1] = ACTIONS(7864), + [aux_sym_on_goto_statement_token2] = ACTIONS(7864), + [aux_sym_on_error_statement_token2] = ACTIONS(7864), + [sym__ambiguous_redim_statement] = ACTIONS(7866), + [aux_sym_erase_statement_token1] = ACTIONS(7864), + [aux_sym_open_statement_token1] = ACTIONS(7864), + [aux_sym_file_mode_token2] = ACTIONS(7864), + [aux_sym_file_access_token2] = ACTIONS(7864), + [aux_sym_file_lock_token2] = ACTIONS(7864), + [aux_sym_print_statement_token1] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7866), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7866), + [aux_sym_close_statement_token1] = ACTIONS(7864), + [aux_sym_put_statement_token1] = ACTIONS(7864), + [aux_sym_unlock_statement_token1] = ACTIONS(7864), + [aux_sym_seek_statement_token1] = ACTIONS(7864), + [sym_reset_statement] = ACTIONS(7864), + [aux_sym_raise_event_statement_token1] = ACTIONS(7864), + [sym_stop_statement] = ACTIONS(7864), + [sym_beep_statement] = ACTIONS(7864), + [aux_sym_unload_statement_token1] = ACTIONS(7864), + [aux_sym_def_type_statement_token1] = ACTIONS(7864), + [aux_sym_def_type_statement_token2] = ACTIONS(7864), + [aux_sym_def_type_statement_token3] = ACTIONS(7864), + [aux_sym_def_type_statement_token4] = ACTIONS(7864), + [aux_sym_def_type_statement_token5] = ACTIONS(7864), + [aux_sym_def_type_statement_token6] = ACTIONS(7864), + [aux_sym_def_type_statement_token7] = ACTIONS(7864), + [aux_sym_def_type_statement_token8] = ACTIONS(7864), + [aux_sym_def_type_statement_token9] = ACTIONS(7864), + [aux_sym_def_type_statement_token10] = ACTIONS(7864), + [aux_sym_def_type_statement_token11] = ACTIONS(7864), + [aux_sym_def_type_statement_token12] = ACTIONS(7864), + [aux_sym_def_type_statement_token13] = ACTIONS(7864), + [aux_sym_def_type_statement_token14] = ACTIONS(7864), + [aux_sym_call_statement_token1] = ACTIONS(7864), + [sym__ambiguous_call_statement] = ACTIONS(7864), + [aux_sym_addressof_expression_token1] = ACTIONS(7864), + [aux_sym_type_of_expression_token1] = ACTIONS(7864), + [aux_sym_unary_expression_token1] = ACTIONS(7864), + [sym_string_literal] = ACTIONS(7866), + [sym_number_literal] = ACTIONS(7866), + [aux_sym_boolean_literal_token1] = ACTIONS(7864), + [aux_sym_boolean_literal_token2] = ACTIONS(7864), + [sym_nothing_literal] = ACTIONS(7864), + [sym_null_literal] = ACTIONS(7864), + [sym_empty_literal] = ACTIONS(7864), + [sym_date_literal] = ACTIONS(7866), + [anon_sym_POUND] = ACTIONS(7864), + }, + [STATE(5041)] = { + [sym_identifier] = ACTIONS(8962), + [sym_newline] = ACTIONS(8964), + [anon_sym_COLON] = ACTIONS(8964), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8962), + [aux_sym_frm_property_statement_token1] = ACTIONS(8962), + [anon_sym_DOT] = ACTIONS(8962), + [anon_sym_BANG] = ACTIONS(8964), + [aux_sym__attribute_identifier_token1] = ACTIONS(8962), + [aux_sym_option_statement_token3] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8962), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8962), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8962), + [aux_sym_preprocessor_const_token1] = ACTIONS(8962), + [sym_static_modifier] = ACTIONS(8962), + [sym__dim_keyword] = ACTIONS(8962), + [sym__redim_keyword] = ACTIONS(8962), + [aux_sym_get_accessor_token1] = ACTIONS(8962), + [aux_sym_set_accessor_token1] = ACTIONS(8962), + [anon_sym_COMMA] = ACTIONS(8964), + [aux_sym_const_declaration_token1] = ACTIONS(8962), + [anon_sym_LPAREN] = ACTIONS(8964), + [aux_sym_as_type_clause_token2] = ACTIONS(8962), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8962), + [aux_sym_visibility_token1] = ACTIONS(8962), + [aux_sym_visibility_token2] = ACTIONS(8962), + [aux_sym_elseif_fragment_token1] = ACTIONS(8962), + [aux_sym_else_fragment_token1] = ACTIONS(8962), + [aux_sym_select_statement_token1] = ACTIONS(8962), + [aux_sym__for_header_token1] = ACTIONS(8962), + [aux_sym_do_statement_token1] = ACTIONS(8962), + [aux_sym_do_condition_token1] = ACTIONS(8962), + [aux_sym_with_statement_token1] = ACTIONS(8962), + [aux_sym_exit_statement_token1] = ACTIONS(8962), + [sym_end_statement] = ACTIONS(8964), + [aux_sym_on_goto_statement_token1] = ACTIONS(8962), + [aux_sym_on_goto_statement_token2] = ACTIONS(8962), + [aux_sym_on_error_statement_token2] = ACTIONS(8962), + [sym__ambiguous_redim_statement] = ACTIONS(8964), + [aux_sym_erase_statement_token1] = ACTIONS(8962), + [aux_sym_open_statement_token1] = ACTIONS(8962), + [aux_sym_file_mode_token2] = ACTIONS(8962), + [aux_sym_file_access_token2] = ACTIONS(8962), + [aux_sym_file_lock_token2] = ACTIONS(8962), + [aux_sym_print_statement_token1] = ACTIONS(8962), + [anon_sym_PLUS] = ACTIONS(8964), + [anon_sym_DASH] = ACTIONS(8962), + [anon_sym_QMARK] = ACTIONS(8964), + [aux_sym_close_statement_token1] = ACTIONS(8962), + [aux_sym_put_statement_token1] = ACTIONS(8962), + [aux_sym_unlock_statement_token1] = ACTIONS(8962), + [aux_sym_seek_statement_token1] = ACTIONS(8962), + [sym_reset_statement] = ACTIONS(8962), + [aux_sym_raise_event_statement_token1] = ACTIONS(8962), + [sym_stop_statement] = ACTIONS(8962), + [sym_beep_statement] = ACTIONS(8962), + [aux_sym_unload_statement_token1] = ACTIONS(8962), + [aux_sym_def_type_statement_token1] = ACTIONS(8962), + [aux_sym_def_type_statement_token2] = ACTIONS(8962), + [aux_sym_def_type_statement_token3] = ACTIONS(8962), + [aux_sym_def_type_statement_token4] = ACTIONS(8962), + [aux_sym_def_type_statement_token5] = ACTIONS(8962), + [aux_sym_def_type_statement_token6] = ACTIONS(8962), + [aux_sym_def_type_statement_token7] = ACTIONS(8962), + [aux_sym_def_type_statement_token8] = ACTIONS(8962), + [aux_sym_def_type_statement_token9] = ACTIONS(8962), + [aux_sym_def_type_statement_token10] = ACTIONS(8962), + [aux_sym_def_type_statement_token11] = ACTIONS(8962), + [aux_sym_def_type_statement_token12] = ACTIONS(8962), + [aux_sym_def_type_statement_token13] = ACTIONS(8962), + [aux_sym_def_type_statement_token14] = ACTIONS(8962), + [aux_sym_call_statement_token1] = ACTIONS(8962), + [sym__ambiguous_call_statement] = ACTIONS(8962), + [aux_sym_addressof_expression_token1] = ACTIONS(8962), + [aux_sym_type_of_expression_token1] = ACTIONS(8962), + [aux_sym_unary_expression_token1] = ACTIONS(8962), + [sym_string_literal] = ACTIONS(8964), + [sym_number_literal] = ACTIONS(8964), + [aux_sym_boolean_literal_token1] = ACTIONS(8962), + [aux_sym_boolean_literal_token2] = ACTIONS(8962), + [sym_nothing_literal] = ACTIONS(8962), + [sym_null_literal] = ACTIONS(8962), + [sym_empty_literal] = ACTIONS(8962), + [sym_date_literal] = ACTIONS(8964), + [anon_sym_POUND] = ACTIONS(8962), + }, + [STATE(5042)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5042), + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(10391), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(5043)] = { + [sym_argument_list] = STATE(10051), + [aux_sym_input_statement_repeat1] = STATE(5151), + [sym_identifier] = ACTIONS(7864), + [sym_newline] = ACTIONS(7866), + [anon_sym_COLON] = ACTIONS(7866), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7864), + [aux_sym_frm_property_statement_token1] = ACTIONS(7864), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_BANG] = ACTIONS(7866), + [aux_sym__attribute_identifier_token1] = ACTIONS(7864), + [aux_sym_option_statement_token3] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7864), + [aux_sym_preprocessor_const_token1] = ACTIONS(7864), + [sym_static_modifier] = ACTIONS(7864), + [sym__dim_keyword] = ACTIONS(7864), + [sym__redim_keyword] = ACTIONS(7864), + [aux_sym_get_accessor_token1] = ACTIONS(7864), + [aux_sym_set_accessor_token1] = ACTIONS(7864), + [anon_sym_COMMA] = ACTIONS(10394), + [aux_sym_const_declaration_token1] = ACTIONS(7864), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(7864), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7864), + [aux_sym_visibility_token1] = ACTIONS(7864), + [aux_sym_visibility_token2] = ACTIONS(7864), + [aux_sym_elseif_fragment_token1] = ACTIONS(7864), + [aux_sym_else_fragment_token1] = ACTIONS(7864), + [aux_sym_select_statement_token1] = ACTIONS(7864), + [aux_sym_select_statement_token2] = ACTIONS(7864), + [aux_sym__for_header_token1] = ACTIONS(7864), + [aux_sym_do_statement_token1] = ACTIONS(7864), + [aux_sym_do_condition_token1] = ACTIONS(7864), + [aux_sym_with_statement_token1] = ACTIONS(7864), + [aux_sym_exit_statement_token1] = ACTIONS(7864), + [sym_end_statement] = ACTIONS(7866), + [aux_sym_on_goto_statement_token1] = ACTIONS(7864), + [aux_sym_on_goto_statement_token2] = ACTIONS(7864), + [aux_sym_on_error_statement_token2] = ACTIONS(7864), + [sym__ambiguous_redim_statement] = ACTIONS(7866), + [aux_sym_erase_statement_token1] = ACTIONS(7864), + [aux_sym_open_statement_token1] = ACTIONS(7864), + [aux_sym_file_mode_token2] = ACTIONS(7864), + [aux_sym_file_access_token2] = ACTIONS(7864), + [aux_sym_file_lock_token2] = ACTIONS(7864), + [aux_sym_print_statement_token1] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7866), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7866), + [aux_sym_close_statement_token1] = ACTIONS(7864), + [aux_sym_put_statement_token1] = ACTIONS(7864), + [aux_sym_unlock_statement_token1] = ACTIONS(7864), + [aux_sym_seek_statement_token1] = ACTIONS(7864), + [sym_reset_statement] = ACTIONS(7864), + [aux_sym_raise_event_statement_token1] = ACTIONS(7864), + [sym_stop_statement] = ACTIONS(7864), + [sym_beep_statement] = ACTIONS(7864), + [aux_sym_unload_statement_token1] = ACTIONS(7864), + [aux_sym_def_type_statement_token1] = ACTIONS(7864), + [aux_sym_def_type_statement_token2] = ACTIONS(7864), + [aux_sym_def_type_statement_token3] = ACTIONS(7864), + [aux_sym_def_type_statement_token4] = ACTIONS(7864), + [aux_sym_def_type_statement_token5] = ACTIONS(7864), + [aux_sym_def_type_statement_token6] = ACTIONS(7864), + [aux_sym_def_type_statement_token7] = ACTIONS(7864), + [aux_sym_def_type_statement_token8] = ACTIONS(7864), + [aux_sym_def_type_statement_token9] = ACTIONS(7864), + [aux_sym_def_type_statement_token10] = ACTIONS(7864), + [aux_sym_def_type_statement_token11] = ACTIONS(7864), + [aux_sym_def_type_statement_token12] = ACTIONS(7864), + [aux_sym_def_type_statement_token13] = ACTIONS(7864), + [aux_sym_def_type_statement_token14] = ACTIONS(7864), + [aux_sym_call_statement_token1] = ACTIONS(7864), + [sym__ambiguous_call_statement] = ACTIONS(7864), + [aux_sym_addressof_expression_token1] = ACTIONS(7864), + [aux_sym_type_of_expression_token1] = ACTIONS(7864), + [aux_sym_unary_expression_token1] = ACTIONS(7864), + [sym_string_literal] = ACTIONS(7866), + [sym_number_literal] = ACTIONS(7866), + [aux_sym_boolean_literal_token1] = ACTIONS(7864), + [aux_sym_boolean_literal_token2] = ACTIONS(7864), + [sym_nothing_literal] = ACTIONS(7864), + [sym_null_literal] = ACTIONS(7864), + [sym_empty_literal] = ACTIONS(7864), + [sym_date_literal] = ACTIONS(7866), + [anon_sym_POUND] = ACTIONS(7864), + }, + [STATE(5044)] = { + [sym_identifier] = ACTIONS(8958), + [sym_newline] = ACTIONS(8960), + [anon_sym_COLON] = ACTIONS(8960), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8958), + [aux_sym_frm_property_statement_token1] = ACTIONS(8958), + [anon_sym_DOT] = ACTIONS(8958), + [anon_sym_BANG] = ACTIONS(8960), + [aux_sym__attribute_identifier_token1] = ACTIONS(8958), + [aux_sym_option_statement_token3] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8958), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8958), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8958), + [aux_sym_preprocessor_const_token1] = ACTIONS(8958), + [sym_static_modifier] = ACTIONS(8958), + [sym__dim_keyword] = ACTIONS(8958), + [sym__redim_keyword] = ACTIONS(8958), + [aux_sym_get_accessor_token1] = ACTIONS(8958), + [aux_sym_set_accessor_token1] = ACTIONS(8958), + [anon_sym_COMMA] = ACTIONS(8960), + [aux_sym_const_declaration_token1] = ACTIONS(8958), + [anon_sym_LPAREN] = ACTIONS(8960), + [aux_sym_as_type_clause_token2] = ACTIONS(8958), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8958), + [aux_sym_visibility_token1] = ACTIONS(8958), + [aux_sym_visibility_token2] = ACTIONS(8958), + [aux_sym_elseif_fragment_token1] = ACTIONS(8958), + [aux_sym_else_fragment_token1] = ACTIONS(8958), + [aux_sym_select_statement_token1] = ACTIONS(8958), + [aux_sym__for_header_token1] = ACTIONS(8958), + [aux_sym_do_statement_token1] = ACTIONS(8958), + [aux_sym_do_condition_token1] = ACTIONS(8958), + [aux_sym_with_statement_token1] = ACTIONS(8958), + [aux_sym_exit_statement_token1] = ACTIONS(8958), + [sym_end_statement] = ACTIONS(8960), + [aux_sym_on_goto_statement_token1] = ACTIONS(8958), + [aux_sym_on_goto_statement_token2] = ACTIONS(8958), + [aux_sym_on_error_statement_token2] = ACTIONS(8958), + [sym__ambiguous_redim_statement] = ACTIONS(8960), + [aux_sym_erase_statement_token1] = ACTIONS(8958), + [aux_sym_open_statement_token1] = ACTIONS(8958), + [aux_sym_file_mode_token2] = ACTIONS(8958), + [aux_sym_file_access_token2] = ACTIONS(8958), + [aux_sym_file_lock_token2] = ACTIONS(8958), + [aux_sym_print_statement_token1] = ACTIONS(8958), + [anon_sym_PLUS] = ACTIONS(8960), + [anon_sym_DASH] = ACTIONS(8958), + [anon_sym_QMARK] = ACTIONS(8960), + [aux_sym_close_statement_token1] = ACTIONS(8958), + [aux_sym_put_statement_token1] = ACTIONS(8958), + [aux_sym_unlock_statement_token1] = ACTIONS(8958), + [aux_sym_seek_statement_token1] = ACTIONS(8958), + [sym_reset_statement] = ACTIONS(8958), + [aux_sym_raise_event_statement_token1] = ACTIONS(8958), + [sym_stop_statement] = ACTIONS(8958), + [sym_beep_statement] = ACTIONS(8958), + [aux_sym_unload_statement_token1] = ACTIONS(8958), + [aux_sym_def_type_statement_token1] = ACTIONS(8958), + [aux_sym_def_type_statement_token2] = ACTIONS(8958), + [aux_sym_def_type_statement_token3] = ACTIONS(8958), + [aux_sym_def_type_statement_token4] = ACTIONS(8958), + [aux_sym_def_type_statement_token5] = ACTIONS(8958), + [aux_sym_def_type_statement_token6] = ACTIONS(8958), + [aux_sym_def_type_statement_token7] = ACTIONS(8958), + [aux_sym_def_type_statement_token8] = ACTIONS(8958), + [aux_sym_def_type_statement_token9] = ACTIONS(8958), + [aux_sym_def_type_statement_token10] = ACTIONS(8958), + [aux_sym_def_type_statement_token11] = ACTIONS(8958), + [aux_sym_def_type_statement_token12] = ACTIONS(8958), + [aux_sym_def_type_statement_token13] = ACTIONS(8958), + [aux_sym_def_type_statement_token14] = ACTIONS(8958), + [aux_sym_call_statement_token1] = ACTIONS(8958), + [sym__ambiguous_call_statement] = ACTIONS(8958), + [aux_sym_addressof_expression_token1] = ACTIONS(8958), + [aux_sym_type_of_expression_token1] = ACTIONS(8958), + [aux_sym_unary_expression_token1] = ACTIONS(8958), + [sym_string_literal] = ACTIONS(8960), + [sym_number_literal] = ACTIONS(8960), + [aux_sym_boolean_literal_token1] = ACTIONS(8958), + [aux_sym_boolean_literal_token2] = ACTIONS(8958), + [sym_nothing_literal] = ACTIONS(8958), + [sym_null_literal] = ACTIONS(8958), + [sym_empty_literal] = ACTIONS(8958), + [sym_date_literal] = ACTIONS(8960), + [anon_sym_POUND] = ACTIONS(8958), + }, + [STATE(5045)] = { + [sym_identifier] = ACTIONS(8970), + [sym_newline] = ACTIONS(8972), + [anon_sym_COLON] = ACTIONS(8972), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8970), + [aux_sym_frm_property_statement_token1] = ACTIONS(8970), + [anon_sym_DOT] = ACTIONS(8970), + [anon_sym_BANG] = ACTIONS(8972), + [aux_sym__attribute_identifier_token1] = ACTIONS(8970), + [aux_sym_option_statement_token3] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8970), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8970), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8970), + [aux_sym_preprocessor_const_token1] = ACTIONS(8970), + [sym_static_modifier] = ACTIONS(8970), + [sym__dim_keyword] = ACTIONS(8970), + [sym__redim_keyword] = ACTIONS(8970), + [aux_sym_get_accessor_token1] = ACTIONS(8970), + [aux_sym_set_accessor_token1] = ACTIONS(8970), + [anon_sym_COMMA] = ACTIONS(8972), + [aux_sym_const_declaration_token1] = ACTIONS(8970), + [anon_sym_LPAREN] = ACTIONS(8972), + [aux_sym_as_type_clause_token2] = ACTIONS(8970), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8970), + [aux_sym_visibility_token1] = ACTIONS(8970), + [aux_sym_visibility_token2] = ACTIONS(8970), + [aux_sym_elseif_fragment_token1] = ACTIONS(8970), + [aux_sym_else_fragment_token1] = ACTIONS(8970), + [aux_sym_select_statement_token1] = ACTIONS(8970), + [aux_sym__for_header_token1] = ACTIONS(8970), + [aux_sym_do_statement_token1] = ACTIONS(8970), + [aux_sym_do_condition_token1] = ACTIONS(8970), + [aux_sym_with_statement_token1] = ACTIONS(8970), + [aux_sym_exit_statement_token1] = ACTIONS(8970), + [sym_end_statement] = ACTIONS(8972), + [aux_sym_on_goto_statement_token1] = ACTIONS(8970), + [aux_sym_on_goto_statement_token2] = ACTIONS(8970), + [aux_sym_on_error_statement_token2] = ACTIONS(8970), + [sym__ambiguous_redim_statement] = ACTIONS(8972), + [aux_sym_erase_statement_token1] = ACTIONS(8970), + [aux_sym_open_statement_token1] = ACTIONS(8970), + [aux_sym_file_mode_token2] = ACTIONS(8970), + [aux_sym_file_access_token2] = ACTIONS(8970), + [aux_sym_file_lock_token2] = ACTIONS(8970), + [aux_sym_print_statement_token1] = ACTIONS(8970), + [anon_sym_PLUS] = ACTIONS(8972), + [anon_sym_DASH] = ACTIONS(8970), + [anon_sym_QMARK] = ACTIONS(8972), + [aux_sym_close_statement_token1] = ACTIONS(8970), + [aux_sym_put_statement_token1] = ACTIONS(8970), + [aux_sym_unlock_statement_token1] = ACTIONS(8970), + [aux_sym_seek_statement_token1] = ACTIONS(8970), + [sym_reset_statement] = ACTIONS(8970), + [aux_sym_raise_event_statement_token1] = ACTIONS(8970), + [sym_stop_statement] = ACTIONS(8970), + [sym_beep_statement] = ACTIONS(8970), + [aux_sym_unload_statement_token1] = ACTIONS(8970), + [aux_sym_def_type_statement_token1] = ACTIONS(8970), + [aux_sym_def_type_statement_token2] = ACTIONS(8970), + [aux_sym_def_type_statement_token3] = ACTIONS(8970), + [aux_sym_def_type_statement_token4] = ACTIONS(8970), + [aux_sym_def_type_statement_token5] = ACTIONS(8970), + [aux_sym_def_type_statement_token6] = ACTIONS(8970), + [aux_sym_def_type_statement_token7] = ACTIONS(8970), + [aux_sym_def_type_statement_token8] = ACTIONS(8970), + [aux_sym_def_type_statement_token9] = ACTIONS(8970), + [aux_sym_def_type_statement_token10] = ACTIONS(8970), + [aux_sym_def_type_statement_token11] = ACTIONS(8970), + [aux_sym_def_type_statement_token12] = ACTIONS(8970), + [aux_sym_def_type_statement_token13] = ACTIONS(8970), + [aux_sym_def_type_statement_token14] = ACTIONS(8970), + [aux_sym_call_statement_token1] = ACTIONS(8970), + [sym__ambiguous_call_statement] = ACTIONS(8970), + [aux_sym_addressof_expression_token1] = ACTIONS(8970), + [aux_sym_type_of_expression_token1] = ACTIONS(8970), + [aux_sym_unary_expression_token1] = ACTIONS(8970), + [sym_string_literal] = ACTIONS(8972), + [sym_number_literal] = ACTIONS(8972), + [aux_sym_boolean_literal_token1] = ACTIONS(8970), + [aux_sym_boolean_literal_token2] = ACTIONS(8970), + [sym_nothing_literal] = ACTIONS(8970), + [sym_null_literal] = ACTIONS(8970), + [sym_empty_literal] = ACTIONS(8970), + [sym_date_literal] = ACTIONS(8972), + [anon_sym_POUND] = ACTIONS(8970), + }, + [STATE(5046)] = { + [sym_identifier] = ACTIONS(7984), + [sym_newline] = ACTIONS(7986), + [anon_sym_COLON] = ACTIONS(7986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7984), + [aux_sym_frm_property_statement_token1] = ACTIONS(7984), + [anon_sym_EQ] = ACTIONS(7986), + [anon_sym_DOT] = ACTIONS(7984), + [anon_sym_BANG] = ACTIONS(7986), + [aux_sym__attribute_identifier_token1] = ACTIONS(7984), + [aux_sym_option_statement_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7984), + [aux_sym_preprocessor_const_token1] = ACTIONS(7984), + [sym_static_modifier] = ACTIONS(7984), + [sym__dim_keyword] = ACTIONS(7984), + [sym__redim_keyword] = ACTIONS(7984), + [aux_sym_get_accessor_token1] = ACTIONS(7984), + [aux_sym_set_accessor_token1] = ACTIONS(7984), + [anon_sym_COMMA] = ACTIONS(7986), + [aux_sym_const_declaration_token1] = ACTIONS(7984), + [anon_sym_LPAREN] = ACTIONS(7986), + [aux_sym_as_type_clause_token1] = ACTIONS(7984), + [aux_sym_as_type_clause_token2] = ACTIONS(7984), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7984), + [aux_sym_visibility_token1] = ACTIONS(7984), + [aux_sym_visibility_token2] = ACTIONS(7984), + [aux_sym_elseif_fragment_token1] = ACTIONS(7984), + [aux_sym_else_fragment_token1] = ACTIONS(7984), + [aux_sym_select_statement_token1] = ACTIONS(7984), + [aux_sym__for_header_token1] = ACTIONS(7984), + [aux_sym_do_statement_token1] = ACTIONS(7984), + [aux_sym_do_condition_token1] = ACTIONS(7984), + [aux_sym_with_statement_token1] = ACTIONS(7984), + [aux_sym_exit_statement_token1] = ACTIONS(7984), + [sym_end_statement] = ACTIONS(7986), + [aux_sym_on_goto_statement_token1] = ACTIONS(7984), + [aux_sym_on_goto_statement_token2] = ACTIONS(7984), + [aux_sym_on_error_statement_token2] = ACTIONS(7984), + [sym__ambiguous_redim_statement] = ACTIONS(7986), + [aux_sym_erase_statement_token1] = ACTIONS(7984), + [aux_sym_open_statement_token1] = ACTIONS(7984), + [aux_sym_file_mode_token2] = ACTIONS(7984), + [aux_sym_file_access_token2] = ACTIONS(7984), + [aux_sym_file_lock_token2] = ACTIONS(7984), + [aux_sym_print_statement_token1] = ACTIONS(7984), + [anon_sym_PLUS] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(7984), + [anon_sym_QMARK] = ACTIONS(7986), + [aux_sym_close_statement_token1] = ACTIONS(7984), + [aux_sym_put_statement_token1] = ACTIONS(7984), + [aux_sym_unlock_statement_token1] = ACTIONS(7984), + [aux_sym_seek_statement_token1] = ACTIONS(7984), + [sym_reset_statement] = ACTIONS(7984), + [aux_sym_raise_event_statement_token1] = ACTIONS(7984), + [sym_stop_statement] = ACTIONS(7984), + [sym_beep_statement] = ACTIONS(7984), + [aux_sym_unload_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token2] = ACTIONS(7984), + [aux_sym_def_type_statement_token3] = ACTIONS(7984), + [aux_sym_def_type_statement_token4] = ACTIONS(7984), + [aux_sym_def_type_statement_token5] = ACTIONS(7984), + [aux_sym_def_type_statement_token6] = ACTIONS(7984), + [aux_sym_def_type_statement_token7] = ACTIONS(7984), + [aux_sym_def_type_statement_token8] = ACTIONS(7984), + [aux_sym_def_type_statement_token9] = ACTIONS(7984), + [aux_sym_def_type_statement_token10] = ACTIONS(7984), + [aux_sym_def_type_statement_token11] = ACTIONS(7984), + [aux_sym_def_type_statement_token12] = ACTIONS(7984), + [aux_sym_def_type_statement_token13] = ACTIONS(7984), + [aux_sym_def_type_statement_token14] = ACTIONS(7984), + [aux_sym_call_statement_token1] = ACTIONS(7984), + [sym__ambiguous_call_statement] = ACTIONS(7984), + [aux_sym_addressof_expression_token1] = ACTIONS(7984), + [aux_sym_type_of_expression_token1] = ACTIONS(7984), + [aux_sym_unary_expression_token1] = ACTIONS(7984), + [sym_string_literal] = ACTIONS(7986), + [sym_number_literal] = ACTIONS(7986), + [aux_sym_boolean_literal_token1] = ACTIONS(7984), + [aux_sym_boolean_literal_token2] = ACTIONS(7984), + [sym_nothing_literal] = ACTIONS(7984), + [sym_null_literal] = ACTIONS(7984), + [sym_empty_literal] = ACTIONS(7984), + [sym_date_literal] = ACTIONS(7986), + [anon_sym_POUND] = ACTIONS(7984), + }, + [STATE(5047)] = { + [sym_identifier] = ACTIONS(8881), + [sym_newline] = ACTIONS(8884), + [anon_sym_COLON] = ACTIONS(8884), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8881), + [aux_sym_frm_property_statement_token1] = ACTIONS(8881), + [anon_sym_DOT] = ACTIONS(8881), + [anon_sym_BANG] = ACTIONS(8884), + [aux_sym__attribute_identifier_token1] = ACTIONS(8881), + [aux_sym_option_statement_token3] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8887), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8881), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8887), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8887), + [aux_sym_preprocessor_const_token1] = ACTIONS(8881), + [sym_static_modifier] = ACTIONS(8881), + [sym__dim_keyword] = ACTIONS(8881), + [sym__redim_keyword] = ACTIONS(8881), + [aux_sym_get_accessor_token1] = ACTIONS(8881), + [aux_sym_set_accessor_token1] = ACTIONS(8881), + [aux_sym_const_declaration_token1] = ACTIONS(8881), + [anon_sym_LPAREN] = ACTIONS(8884), + [aux_sym_as_type_clause_token2] = ACTIONS(8881), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8881), + [aux_sym_visibility_token1] = ACTIONS(8881), + [aux_sym_visibility_token2] = ACTIONS(8881), + [aux_sym_elseif_fragment_token1] = ACTIONS(8881), + [aux_sym_else_fragment_token1] = ACTIONS(8881), + [aux_sym_select_statement_token1] = ACTIONS(8881), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8881), + [aux_sym__for_header_token1] = ACTIONS(8881), + [aux_sym_do_statement_token1] = ACTIONS(8881), + [aux_sym_do_condition_token1] = ACTIONS(8881), + [aux_sym_with_statement_token1] = ACTIONS(8881), + [aux_sym_exit_statement_token1] = ACTIONS(8881), + [sym_end_statement] = ACTIONS(8884), + [aux_sym_on_goto_statement_token1] = ACTIONS(8881), + [aux_sym_on_goto_statement_token2] = ACTIONS(8881), + [aux_sym_on_error_statement_token2] = ACTIONS(8881), + [sym__ambiguous_redim_statement] = ACTIONS(8884), + [aux_sym_erase_statement_token1] = ACTIONS(8881), + [aux_sym_open_statement_token1] = ACTIONS(8881), + [aux_sym_file_mode_token2] = ACTIONS(8881), + [aux_sym_file_access_token2] = ACTIONS(8881), + [aux_sym_file_lock_token2] = ACTIONS(8881), + [aux_sym_print_statement_token1] = ACTIONS(8881), + [anon_sym_PLUS] = ACTIONS(8884), + [anon_sym_DASH] = ACTIONS(8881), + [anon_sym_QMARK] = ACTIONS(8884), + [aux_sym_close_statement_token1] = ACTIONS(8881), + [aux_sym_put_statement_token1] = ACTIONS(8881), + [aux_sym_unlock_statement_token1] = ACTIONS(8881), + [aux_sym_seek_statement_token1] = ACTIONS(8881), + [sym_reset_statement] = ACTIONS(8881), + [aux_sym_raise_event_statement_token1] = ACTIONS(8881), + [sym_stop_statement] = ACTIONS(8881), + [sym_beep_statement] = ACTIONS(8881), + [aux_sym_unload_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token2] = ACTIONS(8881), + [aux_sym_def_type_statement_token3] = ACTIONS(8881), + [aux_sym_def_type_statement_token4] = ACTIONS(8881), + [aux_sym_def_type_statement_token5] = ACTIONS(8881), + [aux_sym_def_type_statement_token6] = ACTIONS(8881), + [aux_sym_def_type_statement_token7] = ACTIONS(8881), + [aux_sym_def_type_statement_token8] = ACTIONS(8881), + [aux_sym_def_type_statement_token9] = ACTIONS(8881), + [aux_sym_def_type_statement_token10] = ACTIONS(8881), + [aux_sym_def_type_statement_token11] = ACTIONS(8881), + [aux_sym_def_type_statement_token12] = ACTIONS(8881), + [aux_sym_def_type_statement_token13] = ACTIONS(8881), + [aux_sym_def_type_statement_token14] = ACTIONS(8881), + [aux_sym_call_statement_token1] = ACTIONS(8881), + [sym__ambiguous_call_statement] = ACTIONS(8881), + [aux_sym_addressof_expression_token1] = ACTIONS(8881), + [aux_sym_type_of_expression_token1] = ACTIONS(8881), + [aux_sym_unary_expression_token1] = ACTIONS(8881), + [sym_string_literal] = ACTIONS(8884), + [sym_number_literal] = ACTIONS(8884), + [aux_sym_boolean_literal_token1] = ACTIONS(8881), + [aux_sym_boolean_literal_token2] = ACTIONS(8881), + [sym_nothing_literal] = ACTIONS(8881), + [sym_null_literal] = ACTIONS(8881), + [sym_empty_literal] = ACTIONS(8881), + [sym_date_literal] = ACTIONS(8884), + [anon_sym_POUND] = ACTIONS(8881), + }, + [STATE(5048)] = { + [sym_identifier] = ACTIONS(8915), + [sym_newline] = ACTIONS(8918), + [anon_sym_COLON] = ACTIONS(8918), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8915), + [aux_sym_frm_property_statement_token1] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8915), + [anon_sym_BANG] = ACTIONS(8918), + [aux_sym__attribute_identifier_token1] = ACTIONS(8915), + [aux_sym_option_statement_token3] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8921), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8915), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8921), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8921), + [aux_sym_preprocessor_const_token1] = ACTIONS(8915), + [sym_static_modifier] = ACTIONS(8915), + [sym__dim_keyword] = ACTIONS(8915), + [sym__redim_keyword] = ACTIONS(8915), + [aux_sym_get_accessor_token1] = ACTIONS(8915), + [aux_sym_set_accessor_token1] = ACTIONS(8915), + [aux_sym_const_declaration_token1] = ACTIONS(8915), + [anon_sym_LPAREN] = ACTIONS(8918), + [aux_sym_as_type_clause_token2] = ACTIONS(8915), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8915), + [aux_sym_visibility_token1] = ACTIONS(8915), + [aux_sym_visibility_token2] = ACTIONS(8915), + [aux_sym_elseif_fragment_token1] = ACTIONS(8915), + [aux_sym_else_fragment_token1] = ACTIONS(8915), + [aux_sym_select_statement_token1] = ACTIONS(8915), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8915), + [aux_sym__for_header_token1] = ACTIONS(8915), + [aux_sym_do_statement_token1] = ACTIONS(8915), + [aux_sym_do_condition_token1] = ACTIONS(8915), + [aux_sym_with_statement_token1] = ACTIONS(8915), + [aux_sym_exit_statement_token1] = ACTIONS(8915), + [sym_end_statement] = ACTIONS(8918), + [aux_sym_on_goto_statement_token1] = ACTIONS(8915), + [aux_sym_on_goto_statement_token2] = ACTIONS(8915), + [aux_sym_on_error_statement_token2] = ACTIONS(8915), + [sym__ambiguous_redim_statement] = ACTIONS(8918), + [aux_sym_erase_statement_token1] = ACTIONS(8915), + [aux_sym_open_statement_token1] = ACTIONS(8915), + [aux_sym_file_mode_token2] = ACTIONS(8915), + [aux_sym_file_access_token2] = ACTIONS(8915), + [aux_sym_file_lock_token2] = ACTIONS(8915), + [aux_sym_print_statement_token1] = ACTIONS(8915), + [anon_sym_PLUS] = ACTIONS(8918), + [anon_sym_DASH] = ACTIONS(8915), + [anon_sym_QMARK] = ACTIONS(8918), + [aux_sym_close_statement_token1] = ACTIONS(8915), + [aux_sym_put_statement_token1] = ACTIONS(8915), + [aux_sym_unlock_statement_token1] = ACTIONS(8915), + [aux_sym_seek_statement_token1] = ACTIONS(8915), + [sym_reset_statement] = ACTIONS(8915), + [aux_sym_raise_event_statement_token1] = ACTIONS(8915), + [sym_stop_statement] = ACTIONS(8915), + [sym_beep_statement] = ACTIONS(8915), + [aux_sym_unload_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token2] = ACTIONS(8915), + [aux_sym_def_type_statement_token3] = ACTIONS(8915), + [aux_sym_def_type_statement_token4] = ACTIONS(8915), + [aux_sym_def_type_statement_token5] = ACTIONS(8915), + [aux_sym_def_type_statement_token6] = ACTIONS(8915), + [aux_sym_def_type_statement_token7] = ACTIONS(8915), + [aux_sym_def_type_statement_token8] = ACTIONS(8915), + [aux_sym_def_type_statement_token9] = ACTIONS(8915), + [aux_sym_def_type_statement_token10] = ACTIONS(8915), + [aux_sym_def_type_statement_token11] = ACTIONS(8915), + [aux_sym_def_type_statement_token12] = ACTIONS(8915), + [aux_sym_def_type_statement_token13] = ACTIONS(8915), + [aux_sym_def_type_statement_token14] = ACTIONS(8915), + [aux_sym_call_statement_token1] = ACTIONS(8915), + [sym__ambiguous_call_statement] = ACTIONS(8915), + [aux_sym_addressof_expression_token1] = ACTIONS(8915), + [aux_sym_type_of_expression_token1] = ACTIONS(8915), + [aux_sym_unary_expression_token1] = ACTIONS(8915), + [sym_string_literal] = ACTIONS(8918), + [sym_number_literal] = ACTIONS(8918), + [aux_sym_boolean_literal_token1] = ACTIONS(8915), + [aux_sym_boolean_literal_token2] = ACTIONS(8915), + [sym_nothing_literal] = ACTIONS(8915), + [sym_null_literal] = ACTIONS(8915), + [sym_empty_literal] = ACTIONS(8915), + [sym_date_literal] = ACTIONS(8918), + [anon_sym_POUND] = ACTIONS(8915), + }, + [STATE(5049)] = { + [sym_identifier] = ACTIONS(8756), + [sym_newline] = ACTIONS(8759), + [anon_sym_COLON] = ACTIONS(8759), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8756), + [aux_sym_frm_property_statement_token1] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8756), + [anon_sym_BANG] = ACTIONS(8759), + [aux_sym__attribute_identifier_token1] = ACTIONS(8756), + [aux_sym_option_statement_token3] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8762), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8756), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8762), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8762), + [aux_sym_preprocessor_const_token1] = ACTIONS(8756), + [sym_static_modifier] = ACTIONS(8756), + [sym__dim_keyword] = ACTIONS(8756), + [sym__redim_keyword] = ACTIONS(8756), + [aux_sym_get_accessor_token1] = ACTIONS(8756), + [aux_sym_set_accessor_token1] = ACTIONS(8756), + [aux_sym_const_declaration_token1] = ACTIONS(8756), + [anon_sym_LPAREN] = ACTIONS(8759), + [aux_sym_as_type_clause_token2] = ACTIONS(8756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8756), + [aux_sym_visibility_token1] = ACTIONS(8756), + [aux_sym_visibility_token2] = ACTIONS(8756), + [aux_sym_elseif_fragment_token1] = ACTIONS(8756), + [aux_sym_else_fragment_token1] = ACTIONS(8756), + [aux_sym_select_statement_token1] = ACTIONS(8756), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8756), + [aux_sym__for_header_token1] = ACTIONS(8756), + [aux_sym_do_statement_token1] = ACTIONS(8756), + [aux_sym_do_condition_token1] = ACTIONS(8756), + [aux_sym_with_statement_token1] = ACTIONS(8756), + [aux_sym_exit_statement_token1] = ACTIONS(8756), + [sym_end_statement] = ACTIONS(8759), + [aux_sym_on_goto_statement_token1] = ACTIONS(8756), + [aux_sym_on_goto_statement_token2] = ACTIONS(8756), + [aux_sym_on_error_statement_token2] = ACTIONS(8756), + [sym__ambiguous_redim_statement] = ACTIONS(8759), + [aux_sym_erase_statement_token1] = ACTIONS(8756), + [aux_sym_open_statement_token1] = ACTIONS(8756), + [aux_sym_file_mode_token2] = ACTIONS(8756), + [aux_sym_file_access_token2] = ACTIONS(8756), + [aux_sym_file_lock_token2] = ACTIONS(8756), + [aux_sym_print_statement_token1] = ACTIONS(8756), + [anon_sym_PLUS] = ACTIONS(8759), + [anon_sym_DASH] = ACTIONS(8756), + [anon_sym_QMARK] = ACTIONS(8759), + [aux_sym_close_statement_token1] = ACTIONS(8756), + [aux_sym_put_statement_token1] = ACTIONS(8756), + [aux_sym_unlock_statement_token1] = ACTIONS(8756), + [aux_sym_seek_statement_token1] = ACTIONS(8756), + [sym_reset_statement] = ACTIONS(8756), + [aux_sym_raise_event_statement_token1] = ACTIONS(8756), + [sym_stop_statement] = ACTIONS(8756), + [sym_beep_statement] = ACTIONS(8756), + [aux_sym_unload_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token2] = ACTIONS(8756), + [aux_sym_def_type_statement_token3] = ACTIONS(8756), + [aux_sym_def_type_statement_token4] = ACTIONS(8756), + [aux_sym_def_type_statement_token5] = ACTIONS(8756), + [aux_sym_def_type_statement_token6] = ACTIONS(8756), + [aux_sym_def_type_statement_token7] = ACTIONS(8756), + [aux_sym_def_type_statement_token8] = ACTIONS(8756), + [aux_sym_def_type_statement_token9] = ACTIONS(8756), + [aux_sym_def_type_statement_token10] = ACTIONS(8756), + [aux_sym_def_type_statement_token11] = ACTIONS(8756), + [aux_sym_def_type_statement_token12] = ACTIONS(8756), + [aux_sym_def_type_statement_token13] = ACTIONS(8756), + [aux_sym_def_type_statement_token14] = ACTIONS(8756), + [aux_sym_call_statement_token1] = ACTIONS(8756), + [sym__ambiguous_call_statement] = ACTIONS(8756), + [aux_sym_addressof_expression_token1] = ACTIONS(8756), + [aux_sym_type_of_expression_token1] = ACTIONS(8756), + [aux_sym_unary_expression_token1] = ACTIONS(8756), + [sym_string_literal] = ACTIONS(8759), + [sym_number_literal] = ACTIONS(8759), + [aux_sym_boolean_literal_token1] = ACTIONS(8756), + [aux_sym_boolean_literal_token2] = ACTIONS(8756), + [sym_nothing_literal] = ACTIONS(8756), + [sym_null_literal] = ACTIONS(8756), + [sym_empty_literal] = ACTIONS(8756), + [sym_date_literal] = ACTIONS(8759), + [anon_sym_POUND] = ACTIONS(8756), + }, + [STATE(5050)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_while_statement_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(5051)] = { + [sym_identifier] = ACTIONS(8022), + [sym_newline] = ACTIONS(8024), + [anon_sym_COLON] = ACTIONS(8024), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8022), + [aux_sym_frm_property_statement_token1] = ACTIONS(8022), + [anon_sym_EQ] = ACTIONS(8024), + [anon_sym_DOT] = ACTIONS(8022), + [anon_sym_BANG] = ACTIONS(8024), + [aux_sym__attribute_identifier_token1] = ACTIONS(8022), + [aux_sym_option_statement_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8022), + [aux_sym_preprocessor_const_token1] = ACTIONS(8022), + [sym_static_modifier] = ACTIONS(8022), + [sym__dim_keyword] = ACTIONS(8022), + [sym__redim_keyword] = ACTIONS(8022), + [aux_sym_get_accessor_token1] = ACTIONS(8022), + [aux_sym_set_accessor_token1] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8024), + [aux_sym_const_declaration_token1] = ACTIONS(8022), + [anon_sym_LPAREN] = ACTIONS(8024), + [aux_sym_as_type_clause_token1] = ACTIONS(8022), + [aux_sym_as_type_clause_token2] = ACTIONS(8022), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8022), + [aux_sym_visibility_token1] = ACTIONS(8022), + [aux_sym_visibility_token2] = ACTIONS(8022), + [aux_sym_elseif_fragment_token1] = ACTIONS(8022), + [aux_sym_else_fragment_token1] = ACTIONS(8022), + [aux_sym_select_statement_token1] = ACTIONS(8022), + [aux_sym__for_header_token1] = ACTIONS(8022), + [aux_sym_do_statement_token1] = ACTIONS(8022), + [aux_sym_do_condition_token1] = ACTIONS(8022), + [aux_sym_with_statement_token1] = ACTIONS(8022), + [aux_sym_exit_statement_token1] = ACTIONS(8022), + [sym_end_statement] = ACTIONS(8024), + [aux_sym_on_goto_statement_token1] = ACTIONS(8022), + [aux_sym_on_goto_statement_token2] = ACTIONS(8022), + [aux_sym_on_error_statement_token2] = ACTIONS(8022), + [sym__ambiguous_redim_statement] = ACTIONS(8024), + [aux_sym_erase_statement_token1] = ACTIONS(8022), + [aux_sym_open_statement_token1] = ACTIONS(8022), + [aux_sym_file_mode_token2] = ACTIONS(8022), + [aux_sym_file_access_token2] = ACTIONS(8022), + [aux_sym_file_lock_token2] = ACTIONS(8022), + [aux_sym_print_statement_token1] = ACTIONS(8022), + [anon_sym_PLUS] = ACTIONS(8024), + [anon_sym_DASH] = ACTIONS(8022), + [anon_sym_QMARK] = ACTIONS(8024), + [aux_sym_close_statement_token1] = ACTIONS(8022), + [aux_sym_put_statement_token1] = ACTIONS(8022), + [aux_sym_unlock_statement_token1] = ACTIONS(8022), + [aux_sym_seek_statement_token1] = ACTIONS(8022), + [sym_reset_statement] = ACTIONS(8022), + [aux_sym_raise_event_statement_token1] = ACTIONS(8022), + [sym_stop_statement] = ACTIONS(8022), + [sym_beep_statement] = ACTIONS(8022), + [aux_sym_unload_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token2] = ACTIONS(8022), + [aux_sym_def_type_statement_token3] = ACTIONS(8022), + [aux_sym_def_type_statement_token4] = ACTIONS(8022), + [aux_sym_def_type_statement_token5] = ACTIONS(8022), + [aux_sym_def_type_statement_token6] = ACTIONS(8022), + [aux_sym_def_type_statement_token7] = ACTIONS(8022), + [aux_sym_def_type_statement_token8] = ACTIONS(8022), + [aux_sym_def_type_statement_token9] = ACTIONS(8022), + [aux_sym_def_type_statement_token10] = ACTIONS(8022), + [aux_sym_def_type_statement_token11] = ACTIONS(8022), + [aux_sym_def_type_statement_token12] = ACTIONS(8022), + [aux_sym_def_type_statement_token13] = ACTIONS(8022), + [aux_sym_def_type_statement_token14] = ACTIONS(8022), + [aux_sym_call_statement_token1] = ACTIONS(8022), + [sym__ambiguous_call_statement] = ACTIONS(8022), + [aux_sym_addressof_expression_token1] = ACTIONS(8022), + [aux_sym_type_of_expression_token1] = ACTIONS(8022), + [aux_sym_unary_expression_token1] = ACTIONS(8022), + [sym_string_literal] = ACTIONS(8024), + [sym_number_literal] = ACTIONS(8024), + [aux_sym_boolean_literal_token1] = ACTIONS(8022), + [aux_sym_boolean_literal_token2] = ACTIONS(8022), + [sym_nothing_literal] = ACTIONS(8022), + [sym_null_literal] = ACTIONS(8022), + [sym_empty_literal] = ACTIONS(8022), + [sym_date_literal] = ACTIONS(8024), + [anon_sym_POUND] = ACTIONS(8022), + }, + [STATE(5052)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(5065), + [sym_identifier] = ACTIONS(8066), + [sym_newline] = ACTIONS(8068), + [anon_sym_COLON] = ACTIONS(8068), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8066), + [aux_sym_frm_property_statement_token1] = ACTIONS(8066), + [anon_sym_DOT] = ACTIONS(8066), + [anon_sym_BANG] = ACTIONS(8068), + [aux_sym__attribute_identifier_token1] = ACTIONS(8066), + [aux_sym_option_statement_token3] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8066), + [aux_sym_preprocessor_const_token1] = ACTIONS(8066), + [sym_static_modifier] = ACTIONS(8066), + [sym__dim_keyword] = ACTIONS(8066), + [sym__redim_keyword] = ACTIONS(8066), + [aux_sym_get_accessor_token1] = ACTIONS(8066), + [aux_sym_set_accessor_token1] = ACTIONS(8066), + [anon_sym_COMMA] = ACTIONS(7088), + [aux_sym_const_declaration_token1] = ACTIONS(8066), + [anon_sym_LPAREN] = ACTIONS(8068), + [aux_sym_as_type_clause_token2] = ACTIONS(8066), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8066), + [aux_sym_visibility_token1] = ACTIONS(8066), + [aux_sym_visibility_token2] = ACTIONS(8066), + [aux_sym_elseif_fragment_token1] = ACTIONS(8066), + [aux_sym_else_fragment_token1] = ACTIONS(8066), + [aux_sym_select_statement_token1] = ACTIONS(8066), + [aux_sym__for_header_token1] = ACTIONS(8066), + [aux_sym_do_statement_token1] = ACTIONS(8066), + [aux_sym_do_statement_token2] = ACTIONS(8066), + [aux_sym_do_condition_token1] = ACTIONS(8066), + [aux_sym_with_statement_token1] = ACTIONS(8066), + [aux_sym_exit_statement_token1] = ACTIONS(8066), + [sym_end_statement] = ACTIONS(8068), + [aux_sym_on_goto_statement_token1] = ACTIONS(8066), + [aux_sym_on_goto_statement_token2] = ACTIONS(8066), + [aux_sym_on_error_statement_token2] = ACTIONS(8066), + [sym__ambiguous_redim_statement] = ACTIONS(8068), + [aux_sym_erase_statement_token1] = ACTIONS(8066), + [aux_sym_open_statement_token1] = ACTIONS(8066), + [aux_sym_file_mode_token2] = ACTIONS(8066), + [aux_sym_file_access_token2] = ACTIONS(8066), + [aux_sym_file_lock_token2] = ACTIONS(8066), + [aux_sym_print_statement_token1] = ACTIONS(8066), + [anon_sym_PLUS] = ACTIONS(8068), + [anon_sym_DASH] = ACTIONS(8066), + [anon_sym_SEMI] = ACTIONS(7088), + [anon_sym_QMARK] = ACTIONS(8068), + [aux_sym_close_statement_token1] = ACTIONS(8066), + [aux_sym_put_statement_token1] = ACTIONS(8066), + [aux_sym_unlock_statement_token1] = ACTIONS(8066), + [aux_sym_seek_statement_token1] = ACTIONS(8066), + [sym_reset_statement] = ACTIONS(8066), + [aux_sym_raise_event_statement_token1] = ACTIONS(8066), + [sym_stop_statement] = ACTIONS(8066), + [sym_beep_statement] = ACTIONS(8066), + [aux_sym_unload_statement_token1] = ACTIONS(8066), + [aux_sym_def_type_statement_token1] = ACTIONS(8066), + [aux_sym_def_type_statement_token2] = ACTIONS(8066), + [aux_sym_def_type_statement_token3] = ACTIONS(8066), + [aux_sym_def_type_statement_token4] = ACTIONS(8066), + [aux_sym_def_type_statement_token5] = ACTIONS(8066), + [aux_sym_def_type_statement_token6] = ACTIONS(8066), + [aux_sym_def_type_statement_token7] = ACTIONS(8066), + [aux_sym_def_type_statement_token8] = ACTIONS(8066), + [aux_sym_def_type_statement_token9] = ACTIONS(8066), + [aux_sym_def_type_statement_token10] = ACTIONS(8066), + [aux_sym_def_type_statement_token11] = ACTIONS(8066), + [aux_sym_def_type_statement_token12] = ACTIONS(8066), + [aux_sym_def_type_statement_token13] = ACTIONS(8066), + [aux_sym_def_type_statement_token14] = ACTIONS(8066), + [aux_sym_call_statement_token1] = ACTIONS(8066), + [sym__ambiguous_call_statement] = ACTIONS(8066), + [aux_sym_addressof_expression_token1] = ACTIONS(8066), + [aux_sym_type_of_expression_token1] = ACTIONS(8066), + [aux_sym_unary_expression_token1] = ACTIONS(8066), + [sym_string_literal] = ACTIONS(8068), + [sym_number_literal] = ACTIONS(8068), + [aux_sym_boolean_literal_token1] = ACTIONS(8066), + [aux_sym_boolean_literal_token2] = ACTIONS(8066), + [sym_nothing_literal] = ACTIONS(8066), + [sym_null_literal] = ACTIONS(8066), + [sym_empty_literal] = ACTIONS(8066), + [sym_date_literal] = ACTIONS(8068), + [anon_sym_POUND] = ACTIONS(8066), + }, + [STATE(5053)] = { + [sym_array_bounds] = STATE(5171), + [sym_identifier] = ACTIONS(8081), + [sym_newline] = ACTIONS(8083), + [anon_sym_COLON] = ACTIONS(8083), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8081), + [aux_sym_frm_property_statement_token1] = ACTIONS(8081), + [anon_sym_EQ] = ACTIONS(8083), + [anon_sym_DOT] = ACTIONS(8081), + [anon_sym_BANG] = ACTIONS(8083), + [aux_sym__attribute_identifier_token1] = ACTIONS(8081), + [aux_sym_option_statement_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8081), + [aux_sym_preprocessor_const_token1] = ACTIONS(8081), + [sym_static_modifier] = ACTIONS(8081), + [sym__dim_keyword] = ACTIONS(8081), + [sym__redim_keyword] = ACTIONS(8081), + [aux_sym_get_accessor_token1] = ACTIONS(8081), + [aux_sym_set_accessor_token1] = ACTIONS(8081), + [anon_sym_COMMA] = ACTIONS(8083), + [aux_sym_const_declaration_token1] = ACTIONS(8081), + [anon_sym_LPAREN] = ACTIONS(10086), + [aux_sym_as_type_clause_token2] = ACTIONS(8081), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8081), + [aux_sym_visibility_token1] = ACTIONS(8081), + [aux_sym_visibility_token2] = ACTIONS(8081), + [aux_sym_elseif_fragment_token1] = ACTIONS(8081), + [aux_sym_else_fragment_token1] = ACTIONS(8081), + [aux_sym_select_statement_token1] = ACTIONS(8081), + [aux_sym__for_header_token1] = ACTIONS(8081), + [aux_sym_do_statement_token1] = ACTIONS(8081), + [aux_sym_do_statement_token2] = ACTIONS(8081), + [aux_sym_do_condition_token1] = ACTIONS(8081), + [aux_sym_with_statement_token1] = ACTIONS(8081), + [aux_sym_exit_statement_token1] = ACTIONS(8081), + [sym_end_statement] = ACTIONS(8083), + [aux_sym_on_goto_statement_token1] = ACTIONS(8081), + [aux_sym_on_goto_statement_token2] = ACTIONS(8081), + [aux_sym_on_error_statement_token2] = ACTIONS(8081), + [sym__ambiguous_redim_statement] = ACTIONS(8083), + [aux_sym_erase_statement_token1] = ACTIONS(8081), + [aux_sym_open_statement_token1] = ACTIONS(8081), + [aux_sym_file_mode_token2] = ACTIONS(8081), + [aux_sym_file_access_token2] = ACTIONS(8081), + [aux_sym_file_lock_token2] = ACTIONS(8081), + [aux_sym_print_statement_token1] = ACTIONS(8081), + [anon_sym_PLUS] = ACTIONS(8083), + [anon_sym_DASH] = ACTIONS(8081), + [anon_sym_QMARK] = ACTIONS(8083), + [aux_sym_close_statement_token1] = ACTIONS(8081), + [aux_sym_put_statement_token1] = ACTIONS(8081), + [aux_sym_unlock_statement_token1] = ACTIONS(8081), + [aux_sym_seek_statement_token1] = ACTIONS(8081), + [sym_reset_statement] = ACTIONS(8081), + [aux_sym_raise_event_statement_token1] = ACTIONS(8081), + [sym_stop_statement] = ACTIONS(8081), + [sym_beep_statement] = ACTIONS(8081), + [aux_sym_unload_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token2] = ACTIONS(8081), + [aux_sym_def_type_statement_token3] = ACTIONS(8081), + [aux_sym_def_type_statement_token4] = ACTIONS(8081), + [aux_sym_def_type_statement_token5] = ACTIONS(8081), + [aux_sym_def_type_statement_token6] = ACTIONS(8081), + [aux_sym_def_type_statement_token7] = ACTIONS(8081), + [aux_sym_def_type_statement_token8] = ACTIONS(8081), + [aux_sym_def_type_statement_token9] = ACTIONS(8081), + [aux_sym_def_type_statement_token10] = ACTIONS(8081), + [aux_sym_def_type_statement_token11] = ACTIONS(8081), + [aux_sym_def_type_statement_token12] = ACTIONS(8081), + [aux_sym_def_type_statement_token13] = ACTIONS(8081), + [aux_sym_def_type_statement_token14] = ACTIONS(8081), + [aux_sym_call_statement_token1] = ACTIONS(8081), + [sym__ambiguous_call_statement] = ACTIONS(8081), + [aux_sym_addressof_expression_token1] = ACTIONS(8081), + [aux_sym_type_of_expression_token1] = ACTIONS(8081), + [aux_sym_unary_expression_token1] = ACTIONS(8081), + [sym_string_literal] = ACTIONS(8083), + [sym_number_literal] = ACTIONS(8083), + [aux_sym_boolean_literal_token1] = ACTIONS(8081), + [aux_sym_boolean_literal_token2] = ACTIONS(8081), + [sym_nothing_literal] = ACTIONS(8081), + [sym_null_literal] = ACTIONS(8081), + [sym_empty_literal] = ACTIONS(8081), + [sym_date_literal] = ACTIONS(8083), + [anon_sym_POUND] = ACTIONS(8081), + }, + [STATE(5054)] = { + [sym_identifier] = ACTIONS(8022), + [sym_newline] = ACTIONS(8024), + [anon_sym_COLON] = ACTIONS(8024), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8022), + [aux_sym_frm_property_statement_token1] = ACTIONS(8022), + [anon_sym_EQ] = ACTIONS(8024), + [anon_sym_DOT] = ACTIONS(8022), + [anon_sym_BANG] = ACTIONS(8024), + [aux_sym__attribute_identifier_token1] = ACTIONS(8022), + [aux_sym_option_statement_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8022), + [aux_sym_preprocessor_const_token1] = ACTIONS(8022), + [sym_static_modifier] = ACTIONS(8022), + [sym__dim_keyword] = ACTIONS(8022), + [sym__redim_keyword] = ACTIONS(8022), + [aux_sym_get_accessor_token1] = ACTIONS(8022), + [aux_sym_set_accessor_token1] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8024), + [aux_sym_const_declaration_token1] = ACTIONS(8022), + [anon_sym_LPAREN] = ACTIONS(8024), + [aux_sym_as_type_clause_token1] = ACTIONS(8022), + [aux_sym_as_type_clause_token2] = ACTIONS(8022), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8022), + [aux_sym_visibility_token1] = ACTIONS(8022), + [aux_sym_visibility_token2] = ACTIONS(8022), + [aux_sym_elseif_fragment_token1] = ACTIONS(8022), + [aux_sym_else_fragment_token1] = ACTIONS(8022), + [aux_sym_select_statement_token1] = ACTIONS(8022), + [aux_sym__for_header_token1] = ACTIONS(8022), + [aux_sym_do_statement_token1] = ACTIONS(8022), + [aux_sym_do_statement_token2] = ACTIONS(8022), + [aux_sym_do_condition_token1] = ACTIONS(8022), + [aux_sym_with_statement_token1] = ACTIONS(8022), + [aux_sym_exit_statement_token1] = ACTIONS(8022), + [sym_end_statement] = ACTIONS(8024), + [aux_sym_on_goto_statement_token1] = ACTIONS(8022), + [aux_sym_on_goto_statement_token2] = ACTIONS(8022), + [aux_sym_on_error_statement_token2] = ACTIONS(8022), + [sym__ambiguous_redim_statement] = ACTIONS(8024), + [aux_sym_erase_statement_token1] = ACTIONS(8022), + [aux_sym_open_statement_token1] = ACTIONS(8022), + [aux_sym_file_mode_token2] = ACTIONS(8022), + [aux_sym_file_access_token2] = ACTIONS(8022), + [aux_sym_file_lock_token2] = ACTIONS(8022), + [aux_sym_print_statement_token1] = ACTIONS(8022), + [anon_sym_PLUS] = ACTIONS(8024), + [anon_sym_DASH] = ACTIONS(8022), + [anon_sym_QMARK] = ACTIONS(8024), + [aux_sym_close_statement_token1] = ACTIONS(8022), + [aux_sym_put_statement_token1] = ACTIONS(8022), + [aux_sym_unlock_statement_token1] = ACTIONS(8022), + [aux_sym_seek_statement_token1] = ACTIONS(8022), + [sym_reset_statement] = ACTIONS(8022), + [aux_sym_raise_event_statement_token1] = ACTIONS(8022), + [sym_stop_statement] = ACTIONS(8022), + [sym_beep_statement] = ACTIONS(8022), + [aux_sym_unload_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token2] = ACTIONS(8022), + [aux_sym_def_type_statement_token3] = ACTIONS(8022), + [aux_sym_def_type_statement_token4] = ACTIONS(8022), + [aux_sym_def_type_statement_token5] = ACTIONS(8022), + [aux_sym_def_type_statement_token6] = ACTIONS(8022), + [aux_sym_def_type_statement_token7] = ACTIONS(8022), + [aux_sym_def_type_statement_token8] = ACTIONS(8022), + [aux_sym_def_type_statement_token9] = ACTIONS(8022), + [aux_sym_def_type_statement_token10] = ACTIONS(8022), + [aux_sym_def_type_statement_token11] = ACTIONS(8022), + [aux_sym_def_type_statement_token12] = ACTIONS(8022), + [aux_sym_def_type_statement_token13] = ACTIONS(8022), + [aux_sym_def_type_statement_token14] = ACTIONS(8022), + [aux_sym_call_statement_token1] = ACTIONS(8022), + [sym__ambiguous_call_statement] = ACTIONS(8022), + [aux_sym_addressof_expression_token1] = ACTIONS(8022), + [aux_sym_type_of_expression_token1] = ACTIONS(8022), + [aux_sym_unary_expression_token1] = ACTIONS(8022), + [sym_string_literal] = ACTIONS(8024), + [sym_number_literal] = ACTIONS(8024), + [aux_sym_boolean_literal_token1] = ACTIONS(8022), + [aux_sym_boolean_literal_token2] = ACTIONS(8022), + [sym_nothing_literal] = ACTIONS(8022), + [sym_null_literal] = ACTIONS(8022), + [sym_empty_literal] = ACTIONS(8022), + [sym_date_literal] = ACTIONS(8024), + [anon_sym_POUND] = ACTIONS(8022), + }, + [STATE(5055)] = { + [sym_identifier] = ACTIONS(6117), + [sym_newline] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6117), + [aux_sym_frm_property_statement_token1] = ACTIONS(6117), + [anon_sym_DOT] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6119), + [aux_sym__attribute_identifier_token1] = ACTIONS(6117), + [aux_sym_option_statement_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6117), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6117), + [aux_sym_preprocessor_const_token1] = ACTIONS(6117), + [sym_static_modifier] = ACTIONS(6117), + [sym__dim_keyword] = ACTIONS(6117), + [sym__redim_keyword] = ACTIONS(6117), + [aux_sym_get_accessor_token1] = ACTIONS(6117), + [aux_sym_set_accessor_token1] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6119), + [aux_sym_const_declaration_token1] = ACTIONS(6117), + [anon_sym_LPAREN] = ACTIONS(6119), + [aux_sym_as_type_clause_token2] = ACTIONS(6117), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6117), + [aux_sym_visibility_token1] = ACTIONS(6117), + [aux_sym_visibility_token2] = ACTIONS(6117), + [aux_sym_elseif_fragment_token1] = ACTIONS(6117), + [aux_sym_else_fragment_token1] = ACTIONS(6117), + [aux_sym_select_statement_token1] = ACTIONS(6117), + [aux_sym__for_header_token1] = ACTIONS(6117), + [aux_sym_do_statement_token1] = ACTIONS(6117), + [aux_sym_do_condition_token1] = ACTIONS(6117), + [aux_sym_with_statement_token1] = ACTIONS(6117), + [aux_sym_exit_statement_token1] = ACTIONS(6117), + [sym_end_statement] = ACTIONS(6119), + [aux_sym_on_goto_statement_token1] = ACTIONS(6117), + [aux_sym_on_goto_statement_token2] = ACTIONS(6117), + [aux_sym_on_error_statement_token2] = ACTIONS(6117), + [sym__ambiguous_redim_statement] = ACTIONS(6119), + [aux_sym_erase_statement_token1] = ACTIONS(6117), + [aux_sym_open_statement_token1] = ACTIONS(6117), + [aux_sym_file_mode_token2] = ACTIONS(6117), + [aux_sym_file_access_token2] = ACTIONS(6117), + [aux_sym_file_lock_token2] = ACTIONS(6117), + [aux_sym_print_statement_token1] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6117), + [anon_sym_QMARK] = ACTIONS(6119), + [aux_sym_close_statement_token1] = ACTIONS(6117), + [aux_sym_put_statement_token1] = ACTIONS(6117), + [aux_sym_unlock_statement_token1] = ACTIONS(6117), + [aux_sym_seek_statement_token1] = ACTIONS(6117), + [sym_reset_statement] = ACTIONS(6117), + [aux_sym_raise_event_statement_token1] = ACTIONS(6117), + [sym_stop_statement] = ACTIONS(6117), + [sym_beep_statement] = ACTIONS(6117), + [aux_sym_unload_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token2] = ACTIONS(6117), + [aux_sym_def_type_statement_token3] = ACTIONS(6117), + [aux_sym_def_type_statement_token4] = ACTIONS(6117), + [aux_sym_def_type_statement_token5] = ACTIONS(6117), + [aux_sym_def_type_statement_token6] = ACTIONS(6117), + [aux_sym_def_type_statement_token7] = ACTIONS(6117), + [aux_sym_def_type_statement_token8] = ACTIONS(6117), + [aux_sym_def_type_statement_token9] = ACTIONS(6117), + [aux_sym_def_type_statement_token10] = ACTIONS(6117), + [aux_sym_def_type_statement_token11] = ACTIONS(6117), + [aux_sym_def_type_statement_token12] = ACTIONS(6117), + [aux_sym_def_type_statement_token13] = ACTIONS(6117), + [aux_sym_def_type_statement_token14] = ACTIONS(6117), + [aux_sym_call_statement_token1] = ACTIONS(6117), + [sym__ambiguous_call_statement] = ACTIONS(6117), + [aux_sym_addressof_expression_token1] = ACTIONS(6117), + [aux_sym_type_of_expression_token1] = ACTIONS(6117), + [aux_sym_unary_expression_token1] = ACTIONS(6117), + [sym_string_literal] = ACTIONS(6119), + [sym_number_literal] = ACTIONS(6119), + [aux_sym_boolean_literal_token1] = ACTIONS(6117), + [aux_sym_boolean_literal_token2] = ACTIONS(6117), + [sym_nothing_literal] = ACTIONS(6117), + [sym_null_literal] = ACTIONS(6117), + [sym_empty_literal] = ACTIONS(6117), + [sym_date_literal] = ACTIONS(6119), + [anon_sym_POUND] = ACTIONS(6117), + }, + [STATE(5056)] = { + [sym_identifier] = ACTIONS(7968), + [sym_newline] = ACTIONS(7970), + [anon_sym_COLON] = ACTIONS(7970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7968), + [aux_sym_frm_property_statement_token1] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_BANG] = ACTIONS(7970), + [aux_sym__attribute_identifier_token1] = ACTIONS(7968), + [aux_sym_option_statement_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7968), + [aux_sym_preprocessor_const_token1] = ACTIONS(7968), + [sym_static_modifier] = ACTIONS(7968), + [sym__dim_keyword] = ACTIONS(7968), + [sym__redim_keyword] = ACTIONS(7968), + [aux_sym_get_accessor_token1] = ACTIONS(7968), + [aux_sym_set_accessor_token1] = ACTIONS(7968), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_const_declaration_token1] = ACTIONS(7968), + [anon_sym_LPAREN] = ACTIONS(7970), + [aux_sym_as_type_clause_token1] = ACTIONS(7968), + [aux_sym_as_type_clause_token2] = ACTIONS(7968), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7968), + [aux_sym_visibility_token1] = ACTIONS(7968), + [aux_sym_visibility_token2] = ACTIONS(7968), + [aux_sym_elseif_fragment_token1] = ACTIONS(7968), + [aux_sym_else_fragment_token1] = ACTIONS(7968), + [aux_sym_select_statement_token1] = ACTIONS(7968), + [aux_sym__for_header_token1] = ACTIONS(7968), + [aux_sym_do_statement_token1] = ACTIONS(7968), + [aux_sym_do_statement_token2] = ACTIONS(7968), + [aux_sym_do_condition_token1] = ACTIONS(7968), + [aux_sym_with_statement_token1] = ACTIONS(7968), + [aux_sym_exit_statement_token1] = ACTIONS(7968), + [sym_end_statement] = ACTIONS(7970), + [aux_sym_on_goto_statement_token1] = ACTIONS(7968), + [aux_sym_on_goto_statement_token2] = ACTIONS(7968), + [aux_sym_on_error_statement_token2] = ACTIONS(7968), + [sym__ambiguous_redim_statement] = ACTIONS(7970), + [aux_sym_erase_statement_token1] = ACTIONS(7968), + [aux_sym_open_statement_token1] = ACTIONS(7968), + [aux_sym_file_mode_token2] = ACTIONS(7968), + [aux_sym_file_access_token2] = ACTIONS(7968), + [aux_sym_file_lock_token2] = ACTIONS(7968), + [aux_sym_print_statement_token1] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7970), + [aux_sym_close_statement_token1] = ACTIONS(7968), + [aux_sym_put_statement_token1] = ACTIONS(7968), + [aux_sym_unlock_statement_token1] = ACTIONS(7968), + [aux_sym_seek_statement_token1] = ACTIONS(7968), + [sym_reset_statement] = ACTIONS(7968), + [aux_sym_raise_event_statement_token1] = ACTIONS(7968), + [sym_stop_statement] = ACTIONS(7968), + [sym_beep_statement] = ACTIONS(7968), + [aux_sym_unload_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token2] = ACTIONS(7968), + [aux_sym_def_type_statement_token3] = ACTIONS(7968), + [aux_sym_def_type_statement_token4] = ACTIONS(7968), + [aux_sym_def_type_statement_token5] = ACTIONS(7968), + [aux_sym_def_type_statement_token6] = ACTIONS(7968), + [aux_sym_def_type_statement_token7] = ACTIONS(7968), + [aux_sym_def_type_statement_token8] = ACTIONS(7968), + [aux_sym_def_type_statement_token9] = ACTIONS(7968), + [aux_sym_def_type_statement_token10] = ACTIONS(7968), + [aux_sym_def_type_statement_token11] = ACTIONS(7968), + [aux_sym_def_type_statement_token12] = ACTIONS(7968), + [aux_sym_def_type_statement_token13] = ACTIONS(7968), + [aux_sym_def_type_statement_token14] = ACTIONS(7968), + [aux_sym_call_statement_token1] = ACTIONS(7968), + [sym__ambiguous_call_statement] = ACTIONS(7968), + [aux_sym_addressof_expression_token1] = ACTIONS(7968), + [aux_sym_type_of_expression_token1] = ACTIONS(7968), + [aux_sym_unary_expression_token1] = ACTIONS(7968), + [sym_string_literal] = ACTIONS(7970), + [sym_number_literal] = ACTIONS(7970), + [aux_sym_boolean_literal_token1] = ACTIONS(7968), + [aux_sym_boolean_literal_token2] = ACTIONS(7968), + [sym_nothing_literal] = ACTIONS(7968), + [sym_null_literal] = ACTIONS(7968), + [sym_empty_literal] = ACTIONS(7968), + [sym_date_literal] = ACTIONS(7970), + [anon_sym_POUND] = ACTIONS(7968), + }, + [STATE(5057)] = { + [sym_identifier] = ACTIONS(8776), + [sym_newline] = ACTIONS(8778), + [anon_sym_COLON] = ACTIONS(8778), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8776), + [aux_sym_frm_property_statement_token1] = ACTIONS(8776), + [anon_sym_DOT] = ACTIONS(8776), + [anon_sym_BANG] = ACTIONS(8778), + [aux_sym__attribute_identifier_token1] = ACTIONS(8776), + [aux_sym_option_statement_token3] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8776), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8776), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8776), + [aux_sym_preprocessor_const_token1] = ACTIONS(8776), + [sym_static_modifier] = ACTIONS(8776), + [sym__dim_keyword] = ACTIONS(8776), + [sym__redim_keyword] = ACTIONS(8776), + [aux_sym_get_accessor_token1] = ACTIONS(8776), + [aux_sym_set_accessor_token1] = ACTIONS(8776), + [anon_sym_COMMA] = ACTIONS(8778), + [aux_sym_const_declaration_token1] = ACTIONS(8776), + [anon_sym_LPAREN] = ACTIONS(8778), + [aux_sym_as_type_clause_token2] = ACTIONS(8776), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8776), + [aux_sym_visibility_token1] = ACTIONS(8776), + [aux_sym_visibility_token2] = ACTIONS(8776), + [aux_sym_elseif_fragment_token1] = ACTIONS(8776), + [aux_sym_else_fragment_token1] = ACTIONS(8776), + [aux_sym_select_statement_token1] = ACTIONS(8776), + [aux_sym__for_header_token1] = ACTIONS(8776), + [aux_sym_do_statement_token1] = ACTIONS(8776), + [aux_sym_do_condition_token1] = ACTIONS(8776), + [aux_sym_with_statement_token1] = ACTIONS(8776), + [aux_sym_exit_statement_token1] = ACTIONS(8776), + [sym_end_statement] = ACTIONS(8778), + [aux_sym_on_goto_statement_token1] = ACTIONS(8776), + [aux_sym_on_goto_statement_token2] = ACTIONS(8776), + [aux_sym_on_error_statement_token2] = ACTIONS(8776), + [sym__ambiguous_redim_statement] = ACTIONS(8778), + [aux_sym_erase_statement_token1] = ACTIONS(8776), + [aux_sym_open_statement_token1] = ACTIONS(8776), + [aux_sym_file_mode_token2] = ACTIONS(8776), + [aux_sym_file_access_token2] = ACTIONS(8776), + [aux_sym_file_lock_token2] = ACTIONS(8776), + [aux_sym_print_statement_token1] = ACTIONS(8776), + [anon_sym_PLUS] = ACTIONS(8778), + [anon_sym_DASH] = ACTIONS(8776), + [anon_sym_QMARK] = ACTIONS(8778), + [aux_sym_close_statement_token1] = ACTIONS(8776), + [aux_sym_put_statement_token1] = ACTIONS(8776), + [aux_sym_unlock_statement_token1] = ACTIONS(8776), + [aux_sym_seek_statement_token1] = ACTIONS(8776), + [sym_reset_statement] = ACTIONS(8776), + [aux_sym_raise_event_statement_token1] = ACTIONS(8776), + [sym_stop_statement] = ACTIONS(8776), + [sym_beep_statement] = ACTIONS(8776), + [aux_sym_unload_statement_token1] = ACTIONS(8776), + [aux_sym_def_type_statement_token1] = ACTIONS(8776), + [aux_sym_def_type_statement_token2] = ACTIONS(8776), + [aux_sym_def_type_statement_token3] = ACTIONS(8776), + [aux_sym_def_type_statement_token4] = ACTIONS(8776), + [aux_sym_def_type_statement_token5] = ACTIONS(8776), + [aux_sym_def_type_statement_token6] = ACTIONS(8776), + [aux_sym_def_type_statement_token7] = ACTIONS(8776), + [aux_sym_def_type_statement_token8] = ACTIONS(8776), + [aux_sym_def_type_statement_token9] = ACTIONS(8776), + [aux_sym_def_type_statement_token10] = ACTIONS(8776), + [aux_sym_def_type_statement_token11] = ACTIONS(8776), + [aux_sym_def_type_statement_token12] = ACTIONS(8776), + [aux_sym_def_type_statement_token13] = ACTIONS(8776), + [aux_sym_def_type_statement_token14] = ACTIONS(8776), + [aux_sym_call_statement_token1] = ACTIONS(8776), + [sym__ambiguous_call_statement] = ACTIONS(8776), + [aux_sym_addressof_expression_token1] = ACTIONS(8776), + [aux_sym_type_of_expression_token1] = ACTIONS(8776), + [aux_sym_unary_expression_token1] = ACTIONS(8776), + [sym_string_literal] = ACTIONS(8778), + [sym_number_literal] = ACTIONS(8778), + [aux_sym_boolean_literal_token1] = ACTIONS(8776), + [aux_sym_boolean_literal_token2] = ACTIONS(8776), + [sym_nothing_literal] = ACTIONS(8776), + [sym_null_literal] = ACTIONS(8776), + [sym_empty_literal] = ACTIONS(8776), + [sym_date_literal] = ACTIONS(8778), + [anon_sym_POUND] = ACTIONS(8776), + }, + [STATE(5058)] = { + [sym_identifier] = ACTIONS(8801), + [sym_newline] = ACTIONS(8803), + [anon_sym_COLON] = ACTIONS(8803), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8801), + [aux_sym_frm_property_statement_token1] = ACTIONS(8801), + [anon_sym_DOT] = ACTIONS(8801), + [anon_sym_BANG] = ACTIONS(8803), + [aux_sym__attribute_identifier_token1] = ACTIONS(8801), + [aux_sym_option_statement_token3] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8801), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8801), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8801), + [aux_sym_preprocessor_const_token1] = ACTIONS(8801), + [sym_static_modifier] = ACTIONS(8801), + [sym__dim_keyword] = ACTIONS(8801), + [sym__redim_keyword] = ACTIONS(8801), + [aux_sym_get_accessor_token1] = ACTIONS(8801), + [aux_sym_set_accessor_token1] = ACTIONS(8801), + [anon_sym_COMMA] = ACTIONS(8803), + [aux_sym_const_declaration_token1] = ACTIONS(8801), + [anon_sym_LPAREN] = ACTIONS(8803), + [aux_sym_as_type_clause_token2] = ACTIONS(8801), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8801), + [aux_sym_visibility_token1] = ACTIONS(8801), + [aux_sym_visibility_token2] = ACTIONS(8801), + [aux_sym_elseif_fragment_token1] = ACTIONS(8801), + [aux_sym_else_fragment_token1] = ACTIONS(8801), + [aux_sym_select_statement_token1] = ACTIONS(8801), + [aux_sym__for_header_token1] = ACTIONS(8801), + [aux_sym_do_statement_token1] = ACTIONS(8801), + [aux_sym_do_condition_token1] = ACTIONS(8801), + [aux_sym_with_statement_token1] = ACTIONS(8801), + [aux_sym_exit_statement_token1] = ACTIONS(8801), + [sym_end_statement] = ACTIONS(8803), + [aux_sym_on_goto_statement_token1] = ACTIONS(8801), + [aux_sym_on_goto_statement_token2] = ACTIONS(8801), + [aux_sym_on_error_statement_token2] = ACTIONS(8801), + [sym__ambiguous_redim_statement] = ACTIONS(8803), + [aux_sym_erase_statement_token1] = ACTIONS(8801), + [aux_sym_open_statement_token1] = ACTIONS(8801), + [aux_sym_file_mode_token2] = ACTIONS(8801), + [aux_sym_file_access_token2] = ACTIONS(8801), + [aux_sym_file_lock_token2] = ACTIONS(8801), + [aux_sym_print_statement_token1] = ACTIONS(8801), + [anon_sym_PLUS] = ACTIONS(8803), + [anon_sym_DASH] = ACTIONS(8801), + [anon_sym_QMARK] = ACTIONS(8803), + [aux_sym_close_statement_token1] = ACTIONS(8801), + [aux_sym_put_statement_token1] = ACTIONS(8801), + [aux_sym_unlock_statement_token1] = ACTIONS(8801), + [aux_sym_seek_statement_token1] = ACTIONS(8801), + [sym_reset_statement] = ACTIONS(8801), + [aux_sym_raise_event_statement_token1] = ACTIONS(8801), + [sym_stop_statement] = ACTIONS(8801), + [sym_beep_statement] = ACTIONS(8801), + [aux_sym_unload_statement_token1] = ACTIONS(8801), + [aux_sym_def_type_statement_token1] = ACTIONS(8801), + [aux_sym_def_type_statement_token2] = ACTIONS(8801), + [aux_sym_def_type_statement_token3] = ACTIONS(8801), + [aux_sym_def_type_statement_token4] = ACTIONS(8801), + [aux_sym_def_type_statement_token5] = ACTIONS(8801), + [aux_sym_def_type_statement_token6] = ACTIONS(8801), + [aux_sym_def_type_statement_token7] = ACTIONS(8801), + [aux_sym_def_type_statement_token8] = ACTIONS(8801), + [aux_sym_def_type_statement_token9] = ACTIONS(8801), + [aux_sym_def_type_statement_token10] = ACTIONS(8801), + [aux_sym_def_type_statement_token11] = ACTIONS(8801), + [aux_sym_def_type_statement_token12] = ACTIONS(8801), + [aux_sym_def_type_statement_token13] = ACTIONS(8801), + [aux_sym_def_type_statement_token14] = ACTIONS(8801), + [aux_sym_call_statement_token1] = ACTIONS(8801), + [sym__ambiguous_call_statement] = ACTIONS(8801), + [aux_sym_addressof_expression_token1] = ACTIONS(8801), + [aux_sym_type_of_expression_token1] = ACTIONS(8801), + [aux_sym_unary_expression_token1] = ACTIONS(8801), + [sym_string_literal] = ACTIONS(8803), + [sym_number_literal] = ACTIONS(8803), + [aux_sym_boolean_literal_token1] = ACTIONS(8801), + [aux_sym_boolean_literal_token2] = ACTIONS(8801), + [sym_nothing_literal] = ACTIONS(8801), + [sym_null_literal] = ACTIONS(8801), + [sym_empty_literal] = ACTIONS(8801), + [sym_date_literal] = ACTIONS(8803), + [anon_sym_POUND] = ACTIONS(8801), + }, + [STATE(5059)] = { + [sym_identifier] = ACTIONS(8287), + [sym_newline] = ACTIONS(8289), + [anon_sym_COLON] = ACTIONS(8289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8287), + [aux_sym_frm_property_statement_token1] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8287), + [anon_sym_BANG] = ACTIONS(8289), + [aux_sym__attribute_identifier_token1] = ACTIONS(8287), + [aux_sym_option_statement_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8287), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8287), + [aux_sym_preprocessor_const_token1] = ACTIONS(8287), + [sym_static_modifier] = ACTIONS(8287), + [sym__dim_keyword] = ACTIONS(8287), + [sym__redim_keyword] = ACTIONS(8287), + [aux_sym_get_accessor_token1] = ACTIONS(8287), + [aux_sym_set_accessor_token1] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8289), + [aux_sym_const_declaration_token1] = ACTIONS(8287), + [anon_sym_LPAREN] = ACTIONS(8289), + [aux_sym_as_type_clause_token2] = ACTIONS(8287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8287), + [aux_sym_visibility_token1] = ACTIONS(8287), + [aux_sym_visibility_token2] = ACTIONS(8287), + [aux_sym_elseif_fragment_token1] = ACTIONS(8287), + [aux_sym_else_fragment_token1] = ACTIONS(8287), + [aux_sym_select_statement_token1] = ACTIONS(8287), + [aux_sym__for_header_token1] = ACTIONS(8287), + [aux_sym_do_statement_token1] = ACTIONS(8287), + [aux_sym_do_condition_token1] = ACTIONS(8287), + [aux_sym_with_statement_token1] = ACTIONS(8287), + [aux_sym_exit_statement_token1] = ACTIONS(8287), + [sym_end_statement] = ACTIONS(8289), + [aux_sym_on_goto_statement_token1] = ACTIONS(8287), + [aux_sym_on_goto_statement_token2] = ACTIONS(8287), + [aux_sym_on_error_statement_token2] = ACTIONS(8287), + [sym__ambiguous_redim_statement] = ACTIONS(8289), + [aux_sym_erase_statement_token1] = ACTIONS(8287), + [aux_sym_open_statement_token1] = ACTIONS(8287), + [aux_sym_file_mode_token2] = ACTIONS(8287), + [aux_sym_file_access_token2] = ACTIONS(8287), + [aux_sym_file_lock_token2] = ACTIONS(8287), + [aux_sym_print_statement_token1] = ACTIONS(8287), + [anon_sym_PLUS] = ACTIONS(8289), + [anon_sym_DASH] = ACTIONS(8287), + [anon_sym_QMARK] = ACTIONS(8289), + [aux_sym_close_statement_token1] = ACTIONS(8287), + [aux_sym_put_statement_token1] = ACTIONS(8287), + [aux_sym_unlock_statement_token1] = ACTIONS(8287), + [aux_sym_seek_statement_token1] = ACTIONS(8287), + [sym_reset_statement] = ACTIONS(8287), + [aux_sym_raise_event_statement_token1] = ACTIONS(8287), + [sym_stop_statement] = ACTIONS(8287), + [sym_beep_statement] = ACTIONS(8287), + [aux_sym_unload_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token2] = ACTIONS(8287), + [aux_sym_def_type_statement_token3] = ACTIONS(8287), + [aux_sym_def_type_statement_token4] = ACTIONS(8287), + [aux_sym_def_type_statement_token5] = ACTIONS(8287), + [aux_sym_def_type_statement_token6] = ACTIONS(8287), + [aux_sym_def_type_statement_token7] = ACTIONS(8287), + [aux_sym_def_type_statement_token8] = ACTIONS(8287), + [aux_sym_def_type_statement_token9] = ACTIONS(8287), + [aux_sym_def_type_statement_token10] = ACTIONS(8287), + [aux_sym_def_type_statement_token11] = ACTIONS(8287), + [aux_sym_def_type_statement_token12] = ACTIONS(8287), + [aux_sym_def_type_statement_token13] = ACTIONS(8287), + [aux_sym_def_type_statement_token14] = ACTIONS(8287), + [aux_sym_call_statement_token1] = ACTIONS(8287), + [sym__ambiguous_call_statement] = ACTIONS(8287), + [aux_sym_addressof_expression_token1] = ACTIONS(8287), + [aux_sym_type_of_expression_token1] = ACTIONS(8287), + [aux_sym_unary_expression_token1] = ACTIONS(8287), + [sym_string_literal] = ACTIONS(8289), + [sym_number_literal] = ACTIONS(8289), + [aux_sym_boolean_literal_token1] = ACTIONS(8287), + [aux_sym_boolean_literal_token2] = ACTIONS(8287), + [sym_nothing_literal] = ACTIONS(8287), + [sym_null_literal] = ACTIONS(8287), + [sym_empty_literal] = ACTIONS(8287), + [sym_date_literal] = ACTIONS(8289), + [anon_sym_POUND] = ACTIONS(8287), + }, + [STATE(5060)] = { + [sym_argument_list] = STATE(10051), + [aux_sym_input_statement_repeat1] = STATE(5178), + [sym_identifier] = ACTIONS(7864), + [sym_newline] = ACTIONS(7866), + [anon_sym_COLON] = ACTIONS(7866), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7864), + [aux_sym_frm_property_statement_token1] = ACTIONS(7864), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_BANG] = ACTIONS(7866), + [aux_sym__attribute_identifier_token1] = ACTIONS(7864), + [aux_sym_option_statement_token3] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7864), + [aux_sym_preprocessor_const_token1] = ACTIONS(7864), + [sym_static_modifier] = ACTIONS(7864), + [sym__dim_keyword] = ACTIONS(7864), + [sym__redim_keyword] = ACTIONS(7864), + [aux_sym_get_accessor_token1] = ACTIONS(7864), + [aux_sym_set_accessor_token1] = ACTIONS(7864), + [anon_sym_COMMA] = ACTIONS(10396), + [aux_sym_const_declaration_token1] = ACTIONS(7864), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(7864), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7864), + [aux_sym_visibility_token1] = ACTIONS(7864), + [aux_sym_visibility_token2] = ACTIONS(7864), + [aux_sym_elseif_fragment_token1] = ACTIONS(7864), + [aux_sym_else_fragment_token1] = ACTIONS(7864), + [aux_sym_select_statement_token1] = ACTIONS(7864), + [aux_sym__for_header_token1] = ACTIONS(7864), + [aux_sym_do_statement_token1] = ACTIONS(7864), + [aux_sym_do_condition_token1] = ACTIONS(7864), + [aux_sym_while_statement_token1] = ACTIONS(7864), + [aux_sym_with_statement_token1] = ACTIONS(7864), + [aux_sym_exit_statement_token1] = ACTIONS(7864), + [sym_end_statement] = ACTIONS(7866), + [aux_sym_on_goto_statement_token1] = ACTIONS(7864), + [aux_sym_on_goto_statement_token2] = ACTIONS(7864), + [aux_sym_on_error_statement_token2] = ACTIONS(7864), + [sym__ambiguous_redim_statement] = ACTIONS(7866), + [aux_sym_erase_statement_token1] = ACTIONS(7864), + [aux_sym_open_statement_token1] = ACTIONS(7864), + [aux_sym_file_mode_token2] = ACTIONS(7864), + [aux_sym_file_access_token2] = ACTIONS(7864), + [aux_sym_file_lock_token2] = ACTIONS(7864), + [aux_sym_print_statement_token1] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7866), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7866), + [aux_sym_close_statement_token1] = ACTIONS(7864), + [aux_sym_put_statement_token1] = ACTIONS(7864), + [aux_sym_unlock_statement_token1] = ACTIONS(7864), + [aux_sym_seek_statement_token1] = ACTIONS(7864), + [sym_reset_statement] = ACTIONS(7864), + [aux_sym_raise_event_statement_token1] = ACTIONS(7864), + [sym_stop_statement] = ACTIONS(7864), + [sym_beep_statement] = ACTIONS(7864), + [aux_sym_unload_statement_token1] = ACTIONS(7864), + [aux_sym_def_type_statement_token1] = ACTIONS(7864), + [aux_sym_def_type_statement_token2] = ACTIONS(7864), + [aux_sym_def_type_statement_token3] = ACTIONS(7864), + [aux_sym_def_type_statement_token4] = ACTIONS(7864), + [aux_sym_def_type_statement_token5] = ACTIONS(7864), + [aux_sym_def_type_statement_token6] = ACTIONS(7864), + [aux_sym_def_type_statement_token7] = ACTIONS(7864), + [aux_sym_def_type_statement_token8] = ACTIONS(7864), + [aux_sym_def_type_statement_token9] = ACTIONS(7864), + [aux_sym_def_type_statement_token10] = ACTIONS(7864), + [aux_sym_def_type_statement_token11] = ACTIONS(7864), + [aux_sym_def_type_statement_token12] = ACTIONS(7864), + [aux_sym_def_type_statement_token13] = ACTIONS(7864), + [aux_sym_def_type_statement_token14] = ACTIONS(7864), + [aux_sym_call_statement_token1] = ACTIONS(7864), + [sym__ambiguous_call_statement] = ACTIONS(7864), + [aux_sym_addressof_expression_token1] = ACTIONS(7864), + [aux_sym_type_of_expression_token1] = ACTIONS(7864), + [aux_sym_unary_expression_token1] = ACTIONS(7864), + [sym_string_literal] = ACTIONS(7866), + [sym_number_literal] = ACTIONS(7866), + [aux_sym_boolean_literal_token1] = ACTIONS(7864), + [aux_sym_boolean_literal_token2] = ACTIONS(7864), + [sym_nothing_literal] = ACTIONS(7864), + [sym_null_literal] = ACTIONS(7864), + [sym_empty_literal] = ACTIONS(7864), + [sym_date_literal] = ACTIONS(7866), + [anon_sym_POUND] = ACTIONS(7864), + }, + [STATE(5061)] = { + [sym_identifier] = ACTIONS(8672), + [sym_newline] = ACTIONS(8674), + [anon_sym_COLON] = ACTIONS(8674), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8672), + [aux_sym_frm_property_statement_token1] = ACTIONS(8672), + [anon_sym_DOT] = ACTIONS(8672), + [anon_sym_BANG] = ACTIONS(8674), + [aux_sym__attribute_identifier_token1] = ACTIONS(8672), + [aux_sym_option_statement_token3] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8672), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8672), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8672), + [aux_sym_preprocessor_const_token1] = ACTIONS(8672), + [sym_static_modifier] = ACTIONS(8672), + [sym__dim_keyword] = ACTIONS(8672), + [sym__redim_keyword] = ACTIONS(8672), + [aux_sym_get_accessor_token1] = ACTIONS(8672), + [aux_sym_set_accessor_token1] = ACTIONS(8672), + [anon_sym_COMMA] = ACTIONS(8674), + [aux_sym_const_declaration_token1] = ACTIONS(8672), + [anon_sym_LPAREN] = ACTIONS(8674), + [aux_sym_as_type_clause_token2] = ACTIONS(8672), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8672), + [aux_sym_visibility_token1] = ACTIONS(8672), + [aux_sym_visibility_token2] = ACTIONS(8672), + [aux_sym_elseif_fragment_token1] = ACTIONS(8672), + [aux_sym_else_fragment_token1] = ACTIONS(8672), + [aux_sym_select_statement_token1] = ACTIONS(8672), + [aux_sym__for_header_token1] = ACTIONS(8672), + [aux_sym_do_statement_token1] = ACTIONS(8672), + [aux_sym_do_condition_token1] = ACTIONS(8672), + [aux_sym_with_statement_token1] = ACTIONS(8672), + [aux_sym_exit_statement_token1] = ACTIONS(8672), + [sym_end_statement] = ACTIONS(8674), + [aux_sym_on_goto_statement_token1] = ACTIONS(8672), + [aux_sym_on_goto_statement_token2] = ACTIONS(8672), + [aux_sym_on_error_statement_token2] = ACTIONS(8672), + [sym__ambiguous_redim_statement] = ACTIONS(8674), + [aux_sym_erase_statement_token1] = ACTIONS(8672), + [aux_sym_open_statement_token1] = ACTIONS(8672), + [aux_sym_file_mode_token2] = ACTIONS(8672), + [aux_sym_file_access_token2] = ACTIONS(8672), + [aux_sym_file_lock_token2] = ACTIONS(8672), + [aux_sym_print_statement_token1] = ACTIONS(8672), + [anon_sym_PLUS] = ACTIONS(8674), + [anon_sym_DASH] = ACTIONS(8672), + [anon_sym_QMARK] = ACTIONS(8674), + [aux_sym_close_statement_token1] = ACTIONS(8672), + [aux_sym_put_statement_token1] = ACTIONS(8672), + [aux_sym_unlock_statement_token1] = ACTIONS(8672), + [aux_sym_seek_statement_token1] = ACTIONS(8672), + [sym_reset_statement] = ACTIONS(8672), + [aux_sym_raise_event_statement_token1] = ACTIONS(8672), + [sym_stop_statement] = ACTIONS(8672), + [sym_beep_statement] = ACTIONS(8672), + [aux_sym_unload_statement_token1] = ACTIONS(8672), + [aux_sym_def_type_statement_token1] = ACTIONS(8672), + [aux_sym_def_type_statement_token2] = ACTIONS(8672), + [aux_sym_def_type_statement_token3] = ACTIONS(8672), + [aux_sym_def_type_statement_token4] = ACTIONS(8672), + [aux_sym_def_type_statement_token5] = ACTIONS(8672), + [aux_sym_def_type_statement_token6] = ACTIONS(8672), + [aux_sym_def_type_statement_token7] = ACTIONS(8672), + [aux_sym_def_type_statement_token8] = ACTIONS(8672), + [aux_sym_def_type_statement_token9] = ACTIONS(8672), + [aux_sym_def_type_statement_token10] = ACTIONS(8672), + [aux_sym_def_type_statement_token11] = ACTIONS(8672), + [aux_sym_def_type_statement_token12] = ACTIONS(8672), + [aux_sym_def_type_statement_token13] = ACTIONS(8672), + [aux_sym_def_type_statement_token14] = ACTIONS(8672), + [aux_sym_call_statement_token1] = ACTIONS(8672), + [sym__ambiguous_call_statement] = ACTIONS(8672), + [aux_sym_addressof_expression_token1] = ACTIONS(8672), + [aux_sym_type_of_expression_token1] = ACTIONS(8672), + [aux_sym_unary_expression_token1] = ACTIONS(8672), + [sym_string_literal] = ACTIONS(8674), + [sym_number_literal] = ACTIONS(8674), + [aux_sym_boolean_literal_token1] = ACTIONS(8672), + [aux_sym_boolean_literal_token2] = ACTIONS(8672), + [sym_nothing_literal] = ACTIONS(8672), + [sym_null_literal] = ACTIONS(8672), + [sym_empty_literal] = ACTIONS(8672), + [sym_date_literal] = ACTIONS(8674), + [anon_sym_POUND] = ACTIONS(8672), + }, + [STATE(5062)] = { + [sym_identifier] = ACTIONS(8350), + [sym_newline] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8350), + [aux_sym_frm_property_statement_token1] = ACTIONS(8350), + [anon_sym_DOT] = ACTIONS(8350), + [anon_sym_BANG] = ACTIONS(8352), + [aux_sym__attribute_identifier_token1] = ACTIONS(8350), + [aux_sym_option_statement_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8350), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8350), + [aux_sym_preprocessor_const_token1] = ACTIONS(8350), + [sym_static_modifier] = ACTIONS(8350), + [sym__dim_keyword] = ACTIONS(8350), + [sym__redim_keyword] = ACTIONS(8350), + [aux_sym_get_accessor_token1] = ACTIONS(8350), + [aux_sym_set_accessor_token1] = ACTIONS(8350), + [anon_sym_COMMA] = ACTIONS(8352), + [aux_sym_const_declaration_token1] = ACTIONS(8350), + [anon_sym_LPAREN] = ACTIONS(8352), + [aux_sym_as_type_clause_token2] = ACTIONS(8350), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8350), + [aux_sym_visibility_token1] = ACTIONS(8350), + [aux_sym_visibility_token2] = ACTIONS(8350), + [aux_sym_elseif_fragment_token1] = ACTIONS(8350), + [aux_sym_else_fragment_token1] = ACTIONS(8350), + [aux_sym_select_statement_token1] = ACTIONS(8350), + [aux_sym__for_header_token1] = ACTIONS(8350), + [aux_sym_do_statement_token1] = ACTIONS(8350), + [aux_sym_do_condition_token1] = ACTIONS(8350), + [aux_sym_with_statement_token1] = ACTIONS(8350), + [aux_sym_exit_statement_token1] = ACTIONS(8350), + [sym_end_statement] = ACTIONS(8352), + [aux_sym_on_goto_statement_token1] = ACTIONS(8350), + [aux_sym_on_goto_statement_token2] = ACTIONS(8350), + [aux_sym_on_error_statement_token2] = ACTIONS(8350), + [sym__ambiguous_redim_statement] = ACTIONS(8352), + [aux_sym_erase_statement_token1] = ACTIONS(8350), + [aux_sym_open_statement_token1] = ACTIONS(8350), + [aux_sym_file_mode_token2] = ACTIONS(8350), + [aux_sym_file_access_token2] = ACTIONS(8350), + [aux_sym_file_lock_token2] = ACTIONS(8350), + [aux_sym_print_statement_token1] = ACTIONS(8350), + [anon_sym_PLUS] = ACTIONS(8352), + [anon_sym_DASH] = ACTIONS(8350), + [anon_sym_QMARK] = ACTIONS(8352), + [aux_sym_close_statement_token1] = ACTIONS(8350), + [aux_sym_put_statement_token1] = ACTIONS(8350), + [aux_sym_unlock_statement_token1] = ACTIONS(8350), + [aux_sym_seek_statement_token1] = ACTIONS(8350), + [sym_reset_statement] = ACTIONS(8350), + [aux_sym_raise_event_statement_token1] = ACTIONS(8350), + [sym_stop_statement] = ACTIONS(8350), + [sym_beep_statement] = ACTIONS(8350), + [aux_sym_unload_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token2] = ACTIONS(8350), + [aux_sym_def_type_statement_token3] = ACTIONS(8350), + [aux_sym_def_type_statement_token4] = ACTIONS(8350), + [aux_sym_def_type_statement_token5] = ACTIONS(8350), + [aux_sym_def_type_statement_token6] = ACTIONS(8350), + [aux_sym_def_type_statement_token7] = ACTIONS(8350), + [aux_sym_def_type_statement_token8] = ACTIONS(8350), + [aux_sym_def_type_statement_token9] = ACTIONS(8350), + [aux_sym_def_type_statement_token10] = ACTIONS(8350), + [aux_sym_def_type_statement_token11] = ACTIONS(8350), + [aux_sym_def_type_statement_token12] = ACTIONS(8350), + [aux_sym_def_type_statement_token13] = ACTIONS(8350), + [aux_sym_def_type_statement_token14] = ACTIONS(8350), + [aux_sym_call_statement_token1] = ACTIONS(8350), + [sym__ambiguous_call_statement] = ACTIONS(8350), + [aux_sym_addressof_expression_token1] = ACTIONS(8350), + [aux_sym_type_of_expression_token1] = ACTIONS(8350), + [aux_sym_unary_expression_token1] = ACTIONS(8350), + [sym_string_literal] = ACTIONS(8352), + [sym_number_literal] = ACTIONS(8352), + [aux_sym_boolean_literal_token1] = ACTIONS(8350), + [aux_sym_boolean_literal_token2] = ACTIONS(8350), + [sym_nothing_literal] = ACTIONS(8350), + [sym_null_literal] = ACTIONS(8350), + [sym_empty_literal] = ACTIONS(8350), + [sym_date_literal] = ACTIONS(8352), + [anon_sym_POUND] = ACTIONS(8350), + }, + [STATE(5063)] = { + [sym_identifier] = ACTIONS(5869), + [sym_newline] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5871), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5869), + [aux_sym_frm_property_statement_token1] = ACTIONS(5869), + [anon_sym_DOT] = ACTIONS(5869), + [anon_sym_BANG] = ACTIONS(5871), + [aux_sym__attribute_identifier_token1] = ACTIONS(5869), + [aux_sym_option_statement_token3] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5869), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5869), + [aux_sym_preprocessor_const_token1] = ACTIONS(5869), + [sym_static_modifier] = ACTIONS(5869), + [sym__dim_keyword] = ACTIONS(5869), + [sym__redim_keyword] = ACTIONS(5869), + [aux_sym_get_accessor_token1] = ACTIONS(5869), + [aux_sym_set_accessor_token1] = ACTIONS(5869), + [anon_sym_COMMA] = ACTIONS(5871), + [aux_sym_const_declaration_token1] = ACTIONS(5869), + [anon_sym_LPAREN] = ACTIONS(5871), + [aux_sym_as_type_clause_token2] = ACTIONS(5869), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5869), + [aux_sym_visibility_token1] = ACTIONS(5869), + [aux_sym_visibility_token2] = ACTIONS(5869), + [aux_sym_elseif_fragment_token1] = ACTIONS(5869), + [aux_sym_else_fragment_token1] = ACTIONS(5869), + [aux_sym_select_statement_token1] = ACTIONS(5869), + [aux_sym__for_header_token1] = ACTIONS(5869), + [aux_sym_do_statement_token1] = ACTIONS(5869), + [aux_sym_do_condition_token1] = ACTIONS(5869), + [aux_sym_with_statement_token1] = ACTIONS(5869), + [aux_sym_exit_statement_token1] = ACTIONS(5869), + [sym_end_statement] = ACTIONS(5871), + [aux_sym_on_goto_statement_token1] = ACTIONS(5869), + [aux_sym_on_goto_statement_token2] = ACTIONS(5869), + [aux_sym_on_error_statement_token2] = ACTIONS(5869), + [sym__ambiguous_redim_statement] = ACTIONS(5871), + [aux_sym_erase_statement_token1] = ACTIONS(5869), + [aux_sym_open_statement_token1] = ACTIONS(5869), + [aux_sym_file_mode_token2] = ACTIONS(5869), + [aux_sym_file_access_token2] = ACTIONS(5869), + [aux_sym_file_lock_token2] = ACTIONS(5869), + [aux_sym_print_statement_token1] = ACTIONS(5869), + [anon_sym_PLUS] = ACTIONS(5871), + [anon_sym_DASH] = ACTIONS(5869), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10289), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10291), + [anon_sym_SEMI] = ACTIONS(5871), + [anon_sym_QMARK] = ACTIONS(5871), + [aux_sym_close_statement_token1] = ACTIONS(5869), + [aux_sym_put_statement_token1] = ACTIONS(5869), + [aux_sym_unlock_statement_token1] = ACTIONS(5869), + [aux_sym_seek_statement_token1] = ACTIONS(5869), + [sym_reset_statement] = ACTIONS(5869), + [aux_sym_raise_event_statement_token1] = ACTIONS(5869), + [sym_stop_statement] = ACTIONS(5869), + [sym_beep_statement] = ACTIONS(5869), + [aux_sym_unload_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token1] = ACTIONS(5869), + [aux_sym_def_type_statement_token2] = ACTIONS(5869), + [aux_sym_def_type_statement_token3] = ACTIONS(5869), + [aux_sym_def_type_statement_token4] = ACTIONS(5869), + [aux_sym_def_type_statement_token5] = ACTIONS(5869), + [aux_sym_def_type_statement_token6] = ACTIONS(5869), + [aux_sym_def_type_statement_token7] = ACTIONS(5869), + [aux_sym_def_type_statement_token8] = ACTIONS(5869), + [aux_sym_def_type_statement_token9] = ACTIONS(5869), + [aux_sym_def_type_statement_token10] = ACTIONS(5869), + [aux_sym_def_type_statement_token11] = ACTIONS(5869), + [aux_sym_def_type_statement_token12] = ACTIONS(5869), + [aux_sym_def_type_statement_token13] = ACTIONS(5869), + [aux_sym_def_type_statement_token14] = ACTIONS(5869), + [aux_sym_call_statement_token1] = ACTIONS(5869), + [sym__ambiguous_call_statement] = ACTIONS(5869), + [aux_sym_addressof_expression_token1] = ACTIONS(5869), + [aux_sym_type_of_expression_token1] = ACTIONS(5869), + [aux_sym_unary_expression_token1] = ACTIONS(5869), + [sym_string_literal] = ACTIONS(5871), + [sym_number_literal] = ACTIONS(5871), + [aux_sym_boolean_literal_token1] = ACTIONS(5869), + [aux_sym_boolean_literal_token2] = ACTIONS(5869), + [sym_nothing_literal] = ACTIONS(5869), + [sym_null_literal] = ACTIONS(5869), + [sym_empty_literal] = ACTIONS(5869), + [sym_date_literal] = ACTIONS(5871), + [anon_sym_POUND] = ACTIONS(5869), + }, + [STATE(5064)] = { + [sym_identifier] = ACTIONS(5562), + [sym_newline] = ACTIONS(5558), + [anon_sym_COLON] = ACTIONS(5558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5562), + [aux_sym_frm_property_statement_token1] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(10263), + [anon_sym_BANG] = ACTIONS(10265), + [aux_sym__attribute_identifier_token1] = ACTIONS(5562), + [aux_sym_option_statement_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5562), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(5562), + [aux_sym_preprocessor_const_token1] = ACTIONS(5562), + [sym_static_modifier] = ACTIONS(5562), + [sym__dim_keyword] = ACTIONS(5562), + [sym__redim_keyword] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5562), + [aux_sym_set_accessor_token1] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5558), + [aux_sym_as_type_clause_token2] = ACTIONS(5562), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5562), + [aux_sym_visibility_token1] = ACTIONS(5562), + [aux_sym_visibility_token2] = ACTIONS(5562), + [aux_sym_elseif_fragment_token1] = ACTIONS(5562), + [aux_sym_else_fragment_token1] = ACTIONS(5562), + [aux_sym_select_statement_token1] = ACTIONS(5562), + [aux_sym__for_header_token1] = ACTIONS(5562), + [aux_sym_do_statement_token1] = ACTIONS(5562), + [aux_sym_do_condition_token1] = ACTIONS(5562), + [aux_sym_with_statement_token1] = ACTIONS(5562), + [aux_sym_exit_statement_token1] = ACTIONS(5562), + [sym_end_statement] = ACTIONS(5558), + [aux_sym_on_goto_statement_token1] = ACTIONS(5562), + [aux_sym_on_goto_statement_token2] = ACTIONS(5562), + [aux_sym_on_error_statement_token2] = ACTIONS(5562), + [sym__ambiguous_redim_statement] = ACTIONS(5558), + [aux_sym_erase_statement_token1] = ACTIONS(5562), + [aux_sym_open_statement_token1] = ACTIONS(5562), + [aux_sym_file_mode_token2] = ACTIONS(5562), + [aux_sym_file_access_token2] = ACTIONS(5562), + [aux_sym_file_lock_token2] = ACTIONS(5562), + [aux_sym_print_statement_token1] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5558), + [aux_sym_close_statement_token1] = ACTIONS(5562), + [aux_sym_put_statement_token1] = ACTIONS(5562), + [aux_sym_unlock_statement_token1] = ACTIONS(5562), + [aux_sym_seek_statement_token1] = ACTIONS(5562), + [sym_reset_statement] = ACTIONS(5562), + [aux_sym_raise_event_statement_token1] = ACTIONS(5562), + [sym_stop_statement] = ACTIONS(5562), + [sym_beep_statement] = ACTIONS(5562), + [aux_sym_unload_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token2] = ACTIONS(5562), + [aux_sym_def_type_statement_token3] = ACTIONS(5562), + [aux_sym_def_type_statement_token4] = ACTIONS(5562), + [aux_sym_def_type_statement_token5] = ACTIONS(5562), + [aux_sym_def_type_statement_token6] = ACTIONS(5562), + [aux_sym_def_type_statement_token7] = ACTIONS(5562), + [aux_sym_def_type_statement_token8] = ACTIONS(5562), + [aux_sym_def_type_statement_token9] = ACTIONS(5562), + [aux_sym_def_type_statement_token10] = ACTIONS(5562), + [aux_sym_def_type_statement_token11] = ACTIONS(5562), + [aux_sym_def_type_statement_token12] = ACTIONS(5562), + [aux_sym_def_type_statement_token13] = ACTIONS(5562), + [aux_sym_def_type_statement_token14] = ACTIONS(5562), + [aux_sym_call_statement_token1] = ACTIONS(5562), + [sym__ambiguous_call_statement] = ACTIONS(5562), + [aux_sym_addressof_expression_token1] = ACTIONS(5562), + [aux_sym_type_of_expression_token1] = ACTIONS(5562), + [aux_sym_unary_expression_token1] = ACTIONS(5562), + [sym_string_literal] = ACTIONS(5558), + [sym_number_literal] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5562), + [aux_sym_boolean_literal_token2] = ACTIONS(5562), + [sym_nothing_literal] = ACTIONS(5562), + [sym_null_literal] = ACTIONS(5562), + [sym_empty_literal] = ACTIONS(5562), + [sym_date_literal] = ACTIONS(5558), + [anon_sym_POUND] = ACTIONS(5562), + }, + [STATE(5065)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(5065), + [sym_identifier] = ACTIONS(5841), + [sym_newline] = ACTIONS(5843), + [anon_sym_COLON] = ACTIONS(5843), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5841), + [aux_sym_frm_property_statement_token1] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5843), + [aux_sym__attribute_identifier_token1] = ACTIONS(5841), + [aux_sym_option_statement_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5841), + [aux_sym_preprocessor_const_token1] = ACTIONS(5841), + [sym_static_modifier] = ACTIONS(5841), + [sym__dim_keyword] = ACTIONS(5841), + [sym__redim_keyword] = ACTIONS(5841), + [aux_sym_get_accessor_token1] = ACTIONS(5841), + [aux_sym_set_accessor_token1] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(10398), + [aux_sym_const_declaration_token1] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5843), + [aux_sym_as_type_clause_token2] = ACTIONS(5841), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5841), + [aux_sym_visibility_token1] = ACTIONS(5841), + [aux_sym_visibility_token2] = ACTIONS(5841), + [aux_sym_elseif_fragment_token1] = ACTIONS(5841), + [aux_sym_else_fragment_token1] = ACTIONS(5841), + [aux_sym_select_statement_token1] = ACTIONS(5841), + [aux_sym__for_header_token1] = ACTIONS(5841), + [aux_sym_do_statement_token1] = ACTIONS(5841), + [aux_sym_do_statement_token2] = ACTIONS(5841), + [aux_sym_do_condition_token1] = ACTIONS(5841), + [aux_sym_with_statement_token1] = ACTIONS(5841), + [aux_sym_exit_statement_token1] = ACTIONS(5841), + [sym_end_statement] = ACTIONS(5843), + [aux_sym_on_goto_statement_token1] = ACTIONS(5841), + [aux_sym_on_goto_statement_token2] = ACTIONS(5841), + [aux_sym_on_error_statement_token2] = ACTIONS(5841), + [sym__ambiguous_redim_statement] = ACTIONS(5843), + [aux_sym_erase_statement_token1] = ACTIONS(5841), + [aux_sym_open_statement_token1] = ACTIONS(5841), + [aux_sym_file_mode_token2] = ACTIONS(5841), + [aux_sym_file_access_token2] = ACTIONS(5841), + [aux_sym_file_lock_token2] = ACTIONS(5841), + [aux_sym_print_statement_token1] = ACTIONS(5841), + [anon_sym_PLUS] = ACTIONS(5843), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_SEMI] = ACTIONS(10398), + [anon_sym_QMARK] = ACTIONS(5843), + [aux_sym_close_statement_token1] = ACTIONS(5841), + [aux_sym_put_statement_token1] = ACTIONS(5841), + [aux_sym_unlock_statement_token1] = ACTIONS(5841), + [aux_sym_seek_statement_token1] = ACTIONS(5841), + [sym_reset_statement] = ACTIONS(5841), + [aux_sym_raise_event_statement_token1] = ACTIONS(5841), + [sym_stop_statement] = ACTIONS(5841), + [sym_beep_statement] = ACTIONS(5841), + [aux_sym_unload_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token2] = ACTIONS(5841), + [aux_sym_def_type_statement_token3] = ACTIONS(5841), + [aux_sym_def_type_statement_token4] = ACTIONS(5841), + [aux_sym_def_type_statement_token5] = ACTIONS(5841), + [aux_sym_def_type_statement_token6] = ACTIONS(5841), + [aux_sym_def_type_statement_token7] = ACTIONS(5841), + [aux_sym_def_type_statement_token8] = ACTIONS(5841), + [aux_sym_def_type_statement_token9] = ACTIONS(5841), + [aux_sym_def_type_statement_token10] = ACTIONS(5841), + [aux_sym_def_type_statement_token11] = ACTIONS(5841), + [aux_sym_def_type_statement_token12] = ACTIONS(5841), + [aux_sym_def_type_statement_token13] = ACTIONS(5841), + [aux_sym_def_type_statement_token14] = ACTIONS(5841), + [aux_sym_call_statement_token1] = ACTIONS(5841), + [sym__ambiguous_call_statement] = ACTIONS(5841), + [aux_sym_addressof_expression_token1] = ACTIONS(5841), + [aux_sym_type_of_expression_token1] = ACTIONS(5841), + [aux_sym_unary_expression_token1] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5843), + [sym_number_literal] = ACTIONS(5843), + [aux_sym_boolean_literal_token1] = ACTIONS(5841), + [aux_sym_boolean_literal_token2] = ACTIONS(5841), + [sym_nothing_literal] = ACTIONS(5841), + [sym_null_literal] = ACTIONS(5841), + [sym_empty_literal] = ACTIONS(5841), + [sym_date_literal] = ACTIONS(5843), + [anon_sym_POUND] = ACTIONS(5841), + }, + [STATE(5066)] = { + [sym_argument_list] = STATE(10051), + [aux_sym_input_statement_repeat1] = STATE(5100), + [sym_identifier] = ACTIONS(7864), + [sym_newline] = ACTIONS(7866), + [anon_sym_COLON] = ACTIONS(7866), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7864), + [aux_sym_frm_property_statement_token1] = ACTIONS(7864), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_BANG] = ACTIONS(7866), + [aux_sym__attribute_identifier_token1] = ACTIONS(7864), + [aux_sym_option_statement_token3] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7864), + [aux_sym_preprocessor_const_token1] = ACTIONS(7864), + [sym_static_modifier] = ACTIONS(7864), + [sym__dim_keyword] = ACTIONS(7864), + [sym__redim_keyword] = ACTIONS(7864), + [aux_sym_get_accessor_token1] = ACTIONS(7864), + [aux_sym_set_accessor_token1] = ACTIONS(7864), + [anon_sym_COMMA] = ACTIONS(10401), + [aux_sym_const_declaration_token1] = ACTIONS(7864), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(7864), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7864), + [aux_sym_visibility_token1] = ACTIONS(7864), + [aux_sym_visibility_token2] = ACTIONS(7864), + [aux_sym_elseif_fragment_token1] = ACTIONS(7864), + [aux_sym_else_fragment_token1] = ACTIONS(7864), + [aux_sym_select_statement_token1] = ACTIONS(7864), + [aux_sym__for_header_token1] = ACTIONS(7864), + [aux_sym_do_statement_token1] = ACTIONS(7864), + [aux_sym_do_condition_token1] = ACTIONS(7864), + [aux_sym_with_statement_token1] = ACTIONS(7864), + [aux_sym_exit_statement_token1] = ACTIONS(7864), + [sym_end_statement] = ACTIONS(7866), + [aux_sym_on_goto_statement_token1] = ACTIONS(7864), + [aux_sym_on_goto_statement_token2] = ACTIONS(7864), + [aux_sym_on_error_statement_token2] = ACTIONS(7864), + [sym__ambiguous_redim_statement] = ACTIONS(7866), + [aux_sym_erase_statement_token1] = ACTIONS(7864), + [aux_sym_open_statement_token1] = ACTIONS(7864), + [aux_sym_file_mode_token2] = ACTIONS(7864), + [aux_sym_file_access_token2] = ACTIONS(7864), + [aux_sym_file_lock_token2] = ACTIONS(7864), + [aux_sym_print_statement_token1] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7866), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7866), + [aux_sym_close_statement_token1] = ACTIONS(7864), + [aux_sym_put_statement_token1] = ACTIONS(7864), + [aux_sym_unlock_statement_token1] = ACTIONS(7864), + [aux_sym_seek_statement_token1] = ACTIONS(7864), + [sym_reset_statement] = ACTIONS(7864), + [aux_sym_raise_event_statement_token1] = ACTIONS(7864), + [sym_stop_statement] = ACTIONS(7864), + [sym_beep_statement] = ACTIONS(7864), + [aux_sym_unload_statement_token1] = ACTIONS(7864), + [aux_sym_def_type_statement_token1] = ACTIONS(7864), + [aux_sym_def_type_statement_token2] = ACTIONS(7864), + [aux_sym_def_type_statement_token3] = ACTIONS(7864), + [aux_sym_def_type_statement_token4] = ACTIONS(7864), + [aux_sym_def_type_statement_token5] = ACTIONS(7864), + [aux_sym_def_type_statement_token6] = ACTIONS(7864), + [aux_sym_def_type_statement_token7] = ACTIONS(7864), + [aux_sym_def_type_statement_token8] = ACTIONS(7864), + [aux_sym_def_type_statement_token9] = ACTIONS(7864), + [aux_sym_def_type_statement_token10] = ACTIONS(7864), + [aux_sym_def_type_statement_token11] = ACTIONS(7864), + [aux_sym_def_type_statement_token12] = ACTIONS(7864), + [aux_sym_def_type_statement_token13] = ACTIONS(7864), + [aux_sym_def_type_statement_token14] = ACTIONS(7864), + [aux_sym_call_statement_token1] = ACTIONS(7864), + [sym__ambiguous_call_statement] = ACTIONS(7864), + [aux_sym_addressof_expression_token1] = ACTIONS(7864), + [aux_sym_type_of_expression_token1] = ACTIONS(7864), + [aux_sym_unary_expression_token1] = ACTIONS(7864), + [sym_string_literal] = ACTIONS(7866), + [sym_number_literal] = ACTIONS(7866), + [aux_sym_boolean_literal_token1] = ACTIONS(7864), + [aux_sym_boolean_literal_token2] = ACTIONS(7864), + [sym_nothing_literal] = ACTIONS(7864), + [sym_null_literal] = ACTIONS(7864), + [sym_empty_literal] = ACTIONS(7864), + [sym_date_literal] = ACTIONS(7866), + [anon_sym_POUND] = ACTIONS(7864), + }, + [STATE(5067)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5067), + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(10403), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_statement_token2] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(5068)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_statement_token2] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(5069)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_statement_token2] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(5070)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym_select_statement_token2] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(5071)] = { + [sym_char_position] = STATE(724), + [aux_sym_output_list_repeat1] = STATE(4971), + [sym_identifier] = ACTIONS(7460), + [sym_newline] = ACTIONS(7462), + [anon_sym_COLON] = ACTIONS(7462), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7460), + [aux_sym_frm_property_statement_token1] = ACTIONS(7460), + [anon_sym_DOT] = ACTIONS(7460), + [anon_sym_BANG] = ACTIONS(7462), + [aux_sym__attribute_identifier_token1] = ACTIONS(7460), + [aux_sym_option_statement_token3] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7460), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7460), + [aux_sym_preprocessor_const_token1] = ACTIONS(7460), + [sym_static_modifier] = ACTIONS(7460), + [sym__dim_keyword] = ACTIONS(7460), + [sym__redim_keyword] = ACTIONS(7460), + [aux_sym_get_accessor_token1] = ACTIONS(7460), + [aux_sym_set_accessor_token1] = ACTIONS(7460), + [anon_sym_COMMA] = ACTIONS(10320), + [aux_sym_const_declaration_token1] = ACTIONS(7460), + [anon_sym_LPAREN] = ACTIONS(7462), + [aux_sym_as_type_clause_token2] = ACTIONS(7460), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7460), + [aux_sym_visibility_token1] = ACTIONS(7460), + [aux_sym_visibility_token2] = ACTIONS(7460), + [aux_sym_elseif_fragment_token1] = ACTIONS(7460), + [aux_sym_else_fragment_token1] = ACTIONS(7460), + [aux_sym_select_statement_token1] = ACTIONS(7460), + [aux_sym__for_header_token1] = ACTIONS(7460), + [aux_sym_do_statement_token1] = ACTIONS(7460), + [aux_sym_do_condition_token1] = ACTIONS(7460), + [aux_sym_with_statement_token1] = ACTIONS(7460), + [aux_sym_exit_statement_token1] = ACTIONS(7460), + [sym_end_statement] = ACTIONS(7462), + [aux_sym_on_goto_statement_token1] = ACTIONS(7460), + [aux_sym_on_goto_statement_token2] = ACTIONS(7460), + [aux_sym_on_error_statement_token2] = ACTIONS(7460), + [sym__ambiguous_redim_statement] = ACTIONS(7462), + [aux_sym_erase_statement_token1] = ACTIONS(7460), + [aux_sym_open_statement_token1] = ACTIONS(7460), + [aux_sym_file_mode_token2] = ACTIONS(7460), + [aux_sym_file_access_token2] = ACTIONS(7460), + [aux_sym_file_lock_token2] = ACTIONS(7460), + [aux_sym_print_statement_token1] = ACTIONS(7460), + [anon_sym_PLUS] = ACTIONS(7462), + [anon_sym_DASH] = ACTIONS(7460), + [anon_sym_SEMI] = ACTIONS(10320), + [anon_sym_QMARK] = ACTIONS(7462), + [aux_sym_close_statement_token1] = ACTIONS(7460), + [aux_sym_put_statement_token1] = ACTIONS(7460), + [aux_sym_unlock_statement_token1] = ACTIONS(7460), + [aux_sym_seek_statement_token1] = ACTIONS(7460), + [sym_reset_statement] = ACTIONS(7460), + [aux_sym_raise_event_statement_token1] = ACTIONS(7460), + [sym_stop_statement] = ACTIONS(7460), + [sym_beep_statement] = ACTIONS(7460), + [aux_sym_unload_statement_token1] = ACTIONS(7460), + [aux_sym_def_type_statement_token1] = ACTIONS(7460), + [aux_sym_def_type_statement_token2] = ACTIONS(7460), + [aux_sym_def_type_statement_token3] = ACTIONS(7460), + [aux_sym_def_type_statement_token4] = ACTIONS(7460), + [aux_sym_def_type_statement_token5] = ACTIONS(7460), + [aux_sym_def_type_statement_token6] = ACTIONS(7460), + [aux_sym_def_type_statement_token7] = ACTIONS(7460), + [aux_sym_def_type_statement_token8] = ACTIONS(7460), + [aux_sym_def_type_statement_token9] = ACTIONS(7460), + [aux_sym_def_type_statement_token10] = ACTIONS(7460), + [aux_sym_def_type_statement_token11] = ACTIONS(7460), + [aux_sym_def_type_statement_token12] = ACTIONS(7460), + [aux_sym_def_type_statement_token13] = ACTIONS(7460), + [aux_sym_def_type_statement_token14] = ACTIONS(7460), + [aux_sym_call_statement_token1] = ACTIONS(7460), + [sym__ambiguous_call_statement] = ACTIONS(7460), + [aux_sym_addressof_expression_token1] = ACTIONS(7460), + [aux_sym_type_of_expression_token1] = ACTIONS(7460), + [aux_sym_unary_expression_token1] = ACTIONS(7460), + [sym_string_literal] = ACTIONS(7462), + [sym_number_literal] = ACTIONS(7462), + [aux_sym_boolean_literal_token1] = ACTIONS(7460), + [aux_sym_boolean_literal_token2] = ACTIONS(7460), + [sym_nothing_literal] = ACTIONS(7460), + [sym_null_literal] = ACTIONS(7460), + [sym_empty_literal] = ACTIONS(7460), + [sym_date_literal] = ACTIONS(7462), + [anon_sym_POUND] = ACTIONS(7460), + }, + [STATE(5072)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(4910), + [sym_identifier] = ACTIONS(8066), + [sym_newline] = ACTIONS(8068), + [anon_sym_COLON] = ACTIONS(8068), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8066), + [aux_sym_frm_property_statement_token1] = ACTIONS(8066), + [anon_sym_DOT] = ACTIONS(8066), + [anon_sym_BANG] = ACTIONS(8068), + [aux_sym__attribute_identifier_token1] = ACTIONS(8066), + [aux_sym_option_statement_token3] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8066), + [aux_sym_preprocessor_const_token1] = ACTIONS(8066), + [sym_static_modifier] = ACTIONS(8066), + [sym__dim_keyword] = ACTIONS(8066), + [sym__redim_keyword] = ACTIONS(8066), + [aux_sym_get_accessor_token1] = ACTIONS(8066), + [aux_sym_set_accessor_token1] = ACTIONS(8066), + [anon_sym_COMMA] = ACTIONS(7142), + [aux_sym_const_declaration_token1] = ACTIONS(8066), + [anon_sym_LPAREN] = ACTIONS(8068), + [aux_sym_as_type_clause_token2] = ACTIONS(8066), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8066), + [aux_sym_visibility_token1] = ACTIONS(8066), + [aux_sym_visibility_token2] = ACTIONS(8066), + [aux_sym_elseif_fragment_token1] = ACTIONS(8066), + [aux_sym_else_fragment_token1] = ACTIONS(8066), + [aux_sym_select_statement_token1] = ACTIONS(8066), + [aux_sym__for_header_token1] = ACTIONS(8066), + [aux_sym_do_statement_token1] = ACTIONS(8066), + [aux_sym_do_condition_token1] = ACTIONS(8066), + [aux_sym_with_statement_token1] = ACTIONS(8066), + [aux_sym_exit_statement_token1] = ACTIONS(8066), + [sym_end_statement] = ACTIONS(8068), + [aux_sym_on_goto_statement_token1] = ACTIONS(8066), + [aux_sym_on_goto_statement_token2] = ACTIONS(8066), + [aux_sym_on_error_statement_token2] = ACTIONS(8066), + [sym__ambiguous_redim_statement] = ACTIONS(8068), + [aux_sym_erase_statement_token1] = ACTIONS(8066), + [aux_sym_open_statement_token1] = ACTIONS(8066), + [aux_sym_file_mode_token2] = ACTIONS(8066), + [aux_sym_file_access_token2] = ACTIONS(8066), + [aux_sym_file_lock_token2] = ACTIONS(8066), + [aux_sym_print_statement_token1] = ACTIONS(8066), + [anon_sym_PLUS] = ACTIONS(8068), + [anon_sym_DASH] = ACTIONS(8066), + [anon_sym_SEMI] = ACTIONS(7142), + [anon_sym_QMARK] = ACTIONS(8068), + [aux_sym_close_statement_token1] = ACTIONS(8066), + [aux_sym_put_statement_token1] = ACTIONS(8066), + [aux_sym_unlock_statement_token1] = ACTIONS(8066), + [aux_sym_seek_statement_token1] = ACTIONS(8066), + [sym_reset_statement] = ACTIONS(8066), + [aux_sym_raise_event_statement_token1] = ACTIONS(8066), + [sym_stop_statement] = ACTIONS(8066), + [sym_beep_statement] = ACTIONS(8066), + [aux_sym_unload_statement_token1] = ACTIONS(8066), + [aux_sym_def_type_statement_token1] = ACTIONS(8066), + [aux_sym_def_type_statement_token2] = ACTIONS(8066), + [aux_sym_def_type_statement_token3] = ACTIONS(8066), + [aux_sym_def_type_statement_token4] = ACTIONS(8066), + [aux_sym_def_type_statement_token5] = ACTIONS(8066), + [aux_sym_def_type_statement_token6] = ACTIONS(8066), + [aux_sym_def_type_statement_token7] = ACTIONS(8066), + [aux_sym_def_type_statement_token8] = ACTIONS(8066), + [aux_sym_def_type_statement_token9] = ACTIONS(8066), + [aux_sym_def_type_statement_token10] = ACTIONS(8066), + [aux_sym_def_type_statement_token11] = ACTIONS(8066), + [aux_sym_def_type_statement_token12] = ACTIONS(8066), + [aux_sym_def_type_statement_token13] = ACTIONS(8066), + [aux_sym_def_type_statement_token14] = ACTIONS(8066), + [aux_sym_call_statement_token1] = ACTIONS(8066), + [sym__ambiguous_call_statement] = ACTIONS(8066), + [aux_sym_addressof_expression_token1] = ACTIONS(8066), + [aux_sym_type_of_expression_token1] = ACTIONS(8066), + [aux_sym_unary_expression_token1] = ACTIONS(8066), + [sym_string_literal] = ACTIONS(8068), + [sym_number_literal] = ACTIONS(8068), + [aux_sym_boolean_literal_token1] = ACTIONS(8066), + [aux_sym_boolean_literal_token2] = ACTIONS(8066), + [sym_nothing_literal] = ACTIONS(8066), + [sym_null_literal] = ACTIONS(8066), + [sym_empty_literal] = ACTIONS(8066), + [sym_date_literal] = ACTIONS(8068), + [anon_sym_POUND] = ACTIONS(8066), + }, + [STATE(5073)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(5076), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(10406), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(5074)] = { + [sym_identifier] = ACTIONS(3996), + [sym_newline] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3996), + [aux_sym_frm_property_statement_token1] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3994), + [aux_sym__attribute_identifier_token1] = ACTIONS(3996), + [aux_sym_option_statement_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3996), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(3996), + [aux_sym_preprocessor_const_token1] = ACTIONS(3996), + [sym_static_modifier] = ACTIONS(3996), + [sym__dim_keyword] = ACTIONS(3996), + [sym__redim_keyword] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3996), + [aux_sym_set_accessor_token1] = ACTIONS(3996), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3994), + [aux_sym_as_type_clause_token2] = ACTIONS(3996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3996), + [aux_sym_visibility_token1] = ACTIONS(3996), + [aux_sym_visibility_token2] = ACTIONS(3996), + [aux_sym_elseif_fragment_token1] = ACTIONS(3996), + [aux_sym_else_fragment_token1] = ACTIONS(3996), + [aux_sym_select_statement_token1] = ACTIONS(3996), + [aux_sym__for_header_token1] = ACTIONS(3996), + [aux_sym_do_statement_token1] = ACTIONS(3996), + [aux_sym_do_condition_token1] = ACTIONS(3996), + [aux_sym_with_statement_token1] = ACTIONS(3996), + [aux_sym_exit_statement_token1] = ACTIONS(3996), + [sym_end_statement] = ACTIONS(3994), + [aux_sym_on_goto_statement_token1] = ACTIONS(3996), + [aux_sym_on_goto_statement_token2] = ACTIONS(3996), + [aux_sym_on_error_statement_token2] = ACTIONS(3996), + [sym__ambiguous_redim_statement] = ACTIONS(3994), + [aux_sym_erase_statement_token1] = ACTIONS(3996), + [aux_sym_open_statement_token1] = ACTIONS(3996), + [aux_sym_file_mode_token2] = ACTIONS(3996), + [aux_sym_file_access_token2] = ACTIONS(3996), + [aux_sym_file_lock_token2] = ACTIONS(3996), + [aux_sym_print_statement_token1] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3994), + [aux_sym_close_statement_token1] = ACTIONS(3996), + [aux_sym_put_statement_token1] = ACTIONS(3996), + [aux_sym_unlock_statement_token1] = ACTIONS(3996), + [aux_sym_seek_statement_token1] = ACTIONS(3996), + [sym_reset_statement] = ACTIONS(3996), + [aux_sym_raise_event_statement_token1] = ACTIONS(3996), + [sym_stop_statement] = ACTIONS(3996), + [sym_beep_statement] = ACTIONS(3996), + [aux_sym_unload_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token2] = ACTIONS(3996), + [aux_sym_def_type_statement_token3] = ACTIONS(3996), + [aux_sym_def_type_statement_token4] = ACTIONS(3996), + [aux_sym_def_type_statement_token5] = ACTIONS(3996), + [aux_sym_def_type_statement_token6] = ACTIONS(3996), + [aux_sym_def_type_statement_token7] = ACTIONS(3996), + [aux_sym_def_type_statement_token8] = ACTIONS(3996), + [aux_sym_def_type_statement_token9] = ACTIONS(3996), + [aux_sym_def_type_statement_token10] = ACTIONS(3996), + [aux_sym_def_type_statement_token11] = ACTIONS(3996), + [aux_sym_def_type_statement_token12] = ACTIONS(3996), + [aux_sym_def_type_statement_token13] = ACTIONS(3996), + [aux_sym_def_type_statement_token14] = ACTIONS(3996), + [aux_sym_call_statement_token1] = ACTIONS(3996), + [sym__ambiguous_call_statement] = ACTIONS(3996), + [aux_sym_addressof_expression_token1] = ACTIONS(3996), + [aux_sym_type_of_expression_token1] = ACTIONS(3996), + [aux_sym_unary_expression_token1] = ACTIONS(3996), + [sym_string_literal] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3994), + [aux_sym_boolean_literal_token1] = ACTIONS(3996), + [aux_sym_boolean_literal_token2] = ACTIONS(3996), + [sym_nothing_literal] = ACTIONS(3996), + [sym_null_literal] = ACTIONS(3996), + [sym_empty_literal] = ACTIONS(3996), + [sym_date_literal] = ACTIONS(3994), + [anon_sym_POUND] = ACTIONS(3996), + }, + [STATE(5075)] = { + [sym_identifier] = ACTIONS(7640), + [sym_newline] = ACTIONS(7642), + [anon_sym_COLON] = ACTIONS(7642), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7640), + [aux_sym_frm_property_statement_token1] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7640), + [anon_sym_BANG] = ACTIONS(7642), + [aux_sym__attribute_identifier_token1] = ACTIONS(7640), + [aux_sym_option_statement_token3] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7640), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7640), + [aux_sym_preprocessor_const_token1] = ACTIONS(7640), + [sym_static_modifier] = ACTIONS(7640), + [sym__dim_keyword] = ACTIONS(7640), + [sym__redim_keyword] = ACTIONS(7640), + [aux_sym_get_accessor_token1] = ACTIONS(7640), + [aux_sym_set_accessor_token1] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7642), + [aux_sym_const_declaration_token1] = ACTIONS(7640), + [anon_sym_LPAREN] = ACTIONS(7642), + [aux_sym_as_type_clause_token2] = ACTIONS(7640), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7640), + [aux_sym_visibility_token1] = ACTIONS(7640), + [aux_sym_visibility_token2] = ACTIONS(7640), + [aux_sym_elseif_fragment_token1] = ACTIONS(7640), + [aux_sym_else_fragment_token1] = ACTIONS(7640), + [aux_sym_select_statement_token1] = ACTIONS(7640), + [aux_sym__for_header_token1] = ACTIONS(7640), + [aux_sym_do_statement_token1] = ACTIONS(7640), + [aux_sym_do_condition_token1] = ACTIONS(7640), + [aux_sym_with_statement_token1] = ACTIONS(7640), + [aux_sym_exit_statement_token1] = ACTIONS(7640), + [sym_end_statement] = ACTIONS(7642), + [aux_sym_on_goto_statement_token1] = ACTIONS(7640), + [aux_sym_on_goto_statement_token2] = ACTIONS(7640), + [aux_sym_on_error_statement_token2] = ACTIONS(7640), + [sym__ambiguous_redim_statement] = ACTIONS(7642), + [aux_sym_erase_statement_token1] = ACTIONS(7640), + [aux_sym_open_statement_token1] = ACTIONS(7640), + [aux_sym_file_mode_token2] = ACTIONS(7640), + [aux_sym_file_access_token2] = ACTIONS(7640), + [aux_sym_file_lock_token2] = ACTIONS(7640), + [aux_sym_print_statement_token1] = ACTIONS(7640), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_DASH] = ACTIONS(7640), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10289), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10291), + [anon_sym_SEMI] = ACTIONS(7642), + [anon_sym_QMARK] = ACTIONS(7642), + [aux_sym_close_statement_token1] = ACTIONS(7640), + [aux_sym_put_statement_token1] = ACTIONS(7640), + [aux_sym_unlock_statement_token1] = ACTIONS(7640), + [aux_sym_seek_statement_token1] = ACTIONS(7640), + [sym_reset_statement] = ACTIONS(7640), + [aux_sym_raise_event_statement_token1] = ACTIONS(7640), + [sym_stop_statement] = ACTIONS(7640), + [sym_beep_statement] = ACTIONS(7640), + [aux_sym_unload_statement_token1] = ACTIONS(7640), + [aux_sym_def_type_statement_token1] = ACTIONS(7640), + [aux_sym_def_type_statement_token2] = ACTIONS(7640), + [aux_sym_def_type_statement_token3] = ACTIONS(7640), + [aux_sym_def_type_statement_token4] = ACTIONS(7640), + [aux_sym_def_type_statement_token5] = ACTIONS(7640), + [aux_sym_def_type_statement_token6] = ACTIONS(7640), + [aux_sym_def_type_statement_token7] = ACTIONS(7640), + [aux_sym_def_type_statement_token8] = ACTIONS(7640), + [aux_sym_def_type_statement_token9] = ACTIONS(7640), + [aux_sym_def_type_statement_token10] = ACTIONS(7640), + [aux_sym_def_type_statement_token11] = ACTIONS(7640), + [aux_sym_def_type_statement_token12] = ACTIONS(7640), + [aux_sym_def_type_statement_token13] = ACTIONS(7640), + [aux_sym_def_type_statement_token14] = ACTIONS(7640), + [aux_sym_call_statement_token1] = ACTIONS(7640), + [sym__ambiguous_call_statement] = ACTIONS(7640), + [aux_sym_addressof_expression_token1] = ACTIONS(7640), + [aux_sym_type_of_expression_token1] = ACTIONS(7640), + [aux_sym_unary_expression_token1] = ACTIONS(7640), + [sym_string_literal] = ACTIONS(7642), + [sym_number_literal] = ACTIONS(7642), + [aux_sym_boolean_literal_token1] = ACTIONS(7640), + [aux_sym_boolean_literal_token2] = ACTIONS(7640), + [sym_nothing_literal] = ACTIONS(7640), + [sym_null_literal] = ACTIONS(7640), + [sym_empty_literal] = ACTIONS(7640), + [sym_date_literal] = ACTIONS(7642), + [anon_sym_POUND] = ACTIONS(7640), + }, + [STATE(5076)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(4948), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [anon_sym_COLON] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym__attribute_identifier_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [sym__redim_keyword] = ACTIONS(4375), + [aux_sym_get_accessor_token1] = ACTIONS(4375), + [aux_sym_set_accessor_token1] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [aux_sym_as_type_clause_token2] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4375), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_elseif_fragment_token1] = ACTIONS(4375), + [aux_sym_else_fragment_token1] = ACTIONS(4375), + [aux_sym_select_statement_token1] = ACTIONS(4375), + [aux_sym__for_header_token1] = ACTIONS(4375), + [aux_sym_do_statement_token1] = ACTIONS(4375), + [aux_sym_do_condition_token1] = ACTIONS(4375), + [aux_sym_with_statement_token1] = ACTIONS(4375), + [aux_sym_exit_statement_token1] = ACTIONS(4375), + [sym_end_statement] = ACTIONS(4377), + [aux_sym_on_goto_statement_token1] = ACTIONS(4375), + [aux_sym_on_goto_statement_token2] = ACTIONS(4375), + [aux_sym_on_error_statement_token2] = ACTIONS(4375), + [sym__ambiguous_redim_statement] = ACTIONS(4377), + [aux_sym_erase_statement_token1] = ACTIONS(4375), + [aux_sym_open_statement_token1] = ACTIONS(4375), + [aux_sym_file_mode_token2] = ACTIONS(4375), + [aux_sym_file_access_token2] = ACTIONS(4375), + [aux_sym_file_lock_token2] = ACTIONS(4375), + [aux_sym_print_statement_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4377), + [aux_sym_close_statement_token1] = ACTIONS(4375), + [aux_sym_put_statement_token1] = ACTIONS(4375), + [aux_sym_unlock_statement_token1] = ACTIONS(4375), + [aux_sym_seek_statement_token1] = ACTIONS(4375), + [sym_reset_statement] = ACTIONS(4375), + [aux_sym_raise_event_statement_token1] = ACTIONS(4375), + [sym_stop_statement] = ACTIONS(4375), + [sym_beep_statement] = ACTIONS(4375), + [aux_sym_unload_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_call_statement_token1] = ACTIONS(4375), + [sym__ambiguous_call_statement] = ACTIONS(4375), + [aux_sym_addressof_expression_token1] = ACTIONS(4375), + [aux_sym_type_of_expression_token1] = ACTIONS(4375), + [aux_sym_unary_expression_token1] = ACTIONS(4375), + [sym_string_literal] = ACTIONS(4377), + [sym_number_literal] = ACTIONS(4377), + [aux_sym_boolean_literal_token1] = ACTIONS(4375), + [aux_sym_boolean_literal_token2] = ACTIONS(4375), + [sym_nothing_literal] = ACTIONS(4375), + [sym_null_literal] = ACTIONS(4375), + [sym_empty_literal] = ACTIONS(4375), + [sym_date_literal] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4375), + }, + [STATE(5077)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(5078)] = { + [sym_identifier] = ACTIONS(7984), + [sym_newline] = ACTIONS(7986), + [anon_sym_COLON] = ACTIONS(7986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7984), + [aux_sym_frm_property_statement_token1] = ACTIONS(7984), + [anon_sym_EQ] = ACTIONS(7986), + [anon_sym_DOT] = ACTIONS(7984), + [anon_sym_BANG] = ACTIONS(7986), + [aux_sym__attribute_identifier_token1] = ACTIONS(7984), + [aux_sym_option_statement_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7984), + [aux_sym_preprocessor_const_token1] = ACTIONS(7984), + [sym_static_modifier] = ACTIONS(7984), + [sym__dim_keyword] = ACTIONS(7984), + [sym__redim_keyword] = ACTIONS(7984), + [aux_sym_get_accessor_token1] = ACTIONS(7984), + [aux_sym_set_accessor_token1] = ACTIONS(7984), + [anon_sym_COMMA] = ACTIONS(7986), + [aux_sym_const_declaration_token1] = ACTIONS(7984), + [anon_sym_LPAREN] = ACTIONS(7986), + [aux_sym_as_type_clause_token1] = ACTIONS(7984), + [aux_sym_as_type_clause_token2] = ACTIONS(7984), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7984), + [aux_sym_visibility_token1] = ACTIONS(7984), + [aux_sym_visibility_token2] = ACTIONS(7984), + [aux_sym_elseif_fragment_token1] = ACTIONS(7984), + [aux_sym_else_fragment_token1] = ACTIONS(7984), + [aux_sym_select_statement_token1] = ACTIONS(7984), + [aux_sym__for_header_token1] = ACTIONS(7984), + [aux_sym_do_statement_token1] = ACTIONS(7984), + [aux_sym_do_statement_token2] = ACTIONS(7984), + [aux_sym_do_condition_token1] = ACTIONS(7984), + [aux_sym_with_statement_token1] = ACTIONS(7984), + [aux_sym_exit_statement_token1] = ACTIONS(7984), + [sym_end_statement] = ACTIONS(7986), + [aux_sym_on_goto_statement_token1] = ACTIONS(7984), + [aux_sym_on_goto_statement_token2] = ACTIONS(7984), + [aux_sym_on_error_statement_token2] = ACTIONS(7984), + [sym__ambiguous_redim_statement] = ACTIONS(7986), + [aux_sym_erase_statement_token1] = ACTIONS(7984), + [aux_sym_open_statement_token1] = ACTIONS(7984), + [aux_sym_file_mode_token2] = ACTIONS(7984), + [aux_sym_file_access_token2] = ACTIONS(7984), + [aux_sym_file_lock_token2] = ACTIONS(7984), + [aux_sym_print_statement_token1] = ACTIONS(7984), + [anon_sym_PLUS] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(7984), + [anon_sym_QMARK] = ACTIONS(7986), + [aux_sym_close_statement_token1] = ACTIONS(7984), + [aux_sym_put_statement_token1] = ACTIONS(7984), + [aux_sym_unlock_statement_token1] = ACTIONS(7984), + [aux_sym_seek_statement_token1] = ACTIONS(7984), + [sym_reset_statement] = ACTIONS(7984), + [aux_sym_raise_event_statement_token1] = ACTIONS(7984), + [sym_stop_statement] = ACTIONS(7984), + [sym_beep_statement] = ACTIONS(7984), + [aux_sym_unload_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token2] = ACTIONS(7984), + [aux_sym_def_type_statement_token3] = ACTIONS(7984), + [aux_sym_def_type_statement_token4] = ACTIONS(7984), + [aux_sym_def_type_statement_token5] = ACTIONS(7984), + [aux_sym_def_type_statement_token6] = ACTIONS(7984), + [aux_sym_def_type_statement_token7] = ACTIONS(7984), + [aux_sym_def_type_statement_token8] = ACTIONS(7984), + [aux_sym_def_type_statement_token9] = ACTIONS(7984), + [aux_sym_def_type_statement_token10] = ACTIONS(7984), + [aux_sym_def_type_statement_token11] = ACTIONS(7984), + [aux_sym_def_type_statement_token12] = ACTIONS(7984), + [aux_sym_def_type_statement_token13] = ACTIONS(7984), + [aux_sym_def_type_statement_token14] = ACTIONS(7984), + [aux_sym_call_statement_token1] = ACTIONS(7984), + [sym__ambiguous_call_statement] = ACTIONS(7984), + [aux_sym_addressof_expression_token1] = ACTIONS(7984), + [aux_sym_type_of_expression_token1] = ACTIONS(7984), + [aux_sym_unary_expression_token1] = ACTIONS(7984), + [sym_string_literal] = ACTIONS(7986), + [sym_number_literal] = ACTIONS(7986), + [aux_sym_boolean_literal_token1] = ACTIONS(7984), + [aux_sym_boolean_literal_token2] = ACTIONS(7984), + [sym_nothing_literal] = ACTIONS(7984), + [sym_null_literal] = ACTIONS(7984), + [sym_empty_literal] = ACTIONS(7984), + [sym_date_literal] = ACTIONS(7986), + [anon_sym_POUND] = ACTIONS(7984), + }, + [STATE(5079)] = { + [sym_identifier] = ACTIONS(8831), + [sym_newline] = ACTIONS(8833), + [anon_sym_COLON] = ACTIONS(8833), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8831), + [aux_sym_frm_property_statement_token1] = ACTIONS(8831), + [anon_sym_DOT] = ACTIONS(8831), + [anon_sym_BANG] = ACTIONS(8833), + [aux_sym__attribute_identifier_token1] = ACTIONS(8831), + [aux_sym_option_statement_token3] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8831), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8831), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8831), + [aux_sym_preprocessor_const_token1] = ACTIONS(8831), + [sym_static_modifier] = ACTIONS(8831), + [sym__dim_keyword] = ACTIONS(8831), + [sym__redim_keyword] = ACTIONS(8831), + [aux_sym_get_accessor_token1] = ACTIONS(8831), + [aux_sym_set_accessor_token1] = ACTIONS(8831), + [anon_sym_COMMA] = ACTIONS(8833), + [aux_sym_const_declaration_token1] = ACTIONS(8831), + [anon_sym_LPAREN] = ACTIONS(8833), + [aux_sym_as_type_clause_token2] = ACTIONS(8831), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8831), + [aux_sym_visibility_token1] = ACTIONS(8831), + [aux_sym_visibility_token2] = ACTIONS(8831), + [aux_sym_elseif_fragment_token1] = ACTIONS(8831), + [aux_sym_else_fragment_token1] = ACTIONS(8831), + [aux_sym_select_statement_token1] = ACTIONS(8831), + [aux_sym__for_header_token1] = ACTIONS(8831), + [aux_sym_do_statement_token1] = ACTIONS(8831), + [aux_sym_do_condition_token1] = ACTIONS(8831), + [aux_sym_with_statement_token1] = ACTIONS(8831), + [aux_sym_exit_statement_token1] = ACTIONS(8831), + [sym_end_statement] = ACTIONS(8833), + [aux_sym_on_goto_statement_token1] = ACTIONS(8831), + [aux_sym_on_goto_statement_token2] = ACTIONS(8831), + [aux_sym_on_error_statement_token2] = ACTIONS(8831), + [sym__ambiguous_redim_statement] = ACTIONS(8833), + [aux_sym_erase_statement_token1] = ACTIONS(8831), + [aux_sym_open_statement_token1] = ACTIONS(8831), + [aux_sym_file_mode_token2] = ACTIONS(8831), + [aux_sym_file_access_token2] = ACTIONS(8831), + [aux_sym_file_lock_token2] = ACTIONS(8831), + [aux_sym_print_statement_token1] = ACTIONS(8831), + [anon_sym_PLUS] = ACTIONS(8833), + [anon_sym_DASH] = ACTIONS(8831), + [anon_sym_QMARK] = ACTIONS(8833), + [aux_sym_close_statement_token1] = ACTIONS(8831), + [aux_sym_put_statement_token1] = ACTIONS(8831), + [aux_sym_unlock_statement_token1] = ACTIONS(8831), + [aux_sym_seek_statement_token1] = ACTIONS(8831), + [sym_reset_statement] = ACTIONS(8831), + [aux_sym_raise_event_statement_token1] = ACTIONS(8831), + [sym_stop_statement] = ACTIONS(8831), + [sym_beep_statement] = ACTIONS(8831), + [aux_sym_unload_statement_token1] = ACTIONS(8831), + [aux_sym_def_type_statement_token1] = ACTIONS(8831), + [aux_sym_def_type_statement_token2] = ACTIONS(8831), + [aux_sym_def_type_statement_token3] = ACTIONS(8831), + [aux_sym_def_type_statement_token4] = ACTIONS(8831), + [aux_sym_def_type_statement_token5] = ACTIONS(8831), + [aux_sym_def_type_statement_token6] = ACTIONS(8831), + [aux_sym_def_type_statement_token7] = ACTIONS(8831), + [aux_sym_def_type_statement_token8] = ACTIONS(8831), + [aux_sym_def_type_statement_token9] = ACTIONS(8831), + [aux_sym_def_type_statement_token10] = ACTIONS(8831), + [aux_sym_def_type_statement_token11] = ACTIONS(8831), + [aux_sym_def_type_statement_token12] = ACTIONS(8831), + [aux_sym_def_type_statement_token13] = ACTIONS(8831), + [aux_sym_def_type_statement_token14] = ACTIONS(8831), + [aux_sym_call_statement_token1] = ACTIONS(8831), + [sym__ambiguous_call_statement] = ACTIONS(8831), + [aux_sym_addressof_expression_token1] = ACTIONS(8831), + [aux_sym_type_of_expression_token1] = ACTIONS(8831), + [aux_sym_unary_expression_token1] = ACTIONS(8831), + [sym_string_literal] = ACTIONS(8833), + [sym_number_literal] = ACTIONS(8833), + [aux_sym_boolean_literal_token1] = ACTIONS(8831), + [aux_sym_boolean_literal_token2] = ACTIONS(8831), + [sym_nothing_literal] = ACTIONS(8831), + [sym_null_literal] = ACTIONS(8831), + [sym_empty_literal] = ACTIONS(8831), + [sym_date_literal] = ACTIONS(8833), + [anon_sym_POUND] = ACTIONS(8831), + }, + [STATE(5080)] = { + [sym_argument_list] = STATE(5620), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7836), + [anon_sym_BANG] = ACTIONS(4034), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10337), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym_select_statement_token2] = ACTIONS(7836), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(5081)] = { + [sym_identifier] = ACTIONS(8847), + [sym_newline] = ACTIONS(8849), + [anon_sym_COLON] = ACTIONS(8849), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8847), + [aux_sym_frm_property_statement_token1] = ACTIONS(8847), + [anon_sym_DOT] = ACTIONS(8847), + [anon_sym_BANG] = ACTIONS(8849), + [aux_sym__attribute_identifier_token1] = ACTIONS(8847), + [aux_sym_option_statement_token3] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8847), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8847), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8847), + [aux_sym_preprocessor_const_token1] = ACTIONS(8847), + [sym_static_modifier] = ACTIONS(8847), + [sym__dim_keyword] = ACTIONS(8847), + [sym__redim_keyword] = ACTIONS(8847), + [aux_sym_get_accessor_token1] = ACTIONS(8847), + [aux_sym_set_accessor_token1] = ACTIONS(8847), + [anon_sym_COMMA] = ACTIONS(8849), + [aux_sym_const_declaration_token1] = ACTIONS(8847), + [anon_sym_LPAREN] = ACTIONS(8849), + [aux_sym_as_type_clause_token2] = ACTIONS(8847), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8847), + [aux_sym_visibility_token1] = ACTIONS(8847), + [aux_sym_visibility_token2] = ACTIONS(8847), + [aux_sym_elseif_fragment_token1] = ACTIONS(8847), + [aux_sym_else_fragment_token1] = ACTIONS(8847), + [aux_sym_select_statement_token1] = ACTIONS(8847), + [aux_sym__for_header_token1] = ACTIONS(8847), + [aux_sym_do_statement_token1] = ACTIONS(8847), + [aux_sym_do_condition_token1] = ACTIONS(8847), + [aux_sym_with_statement_token1] = ACTIONS(8847), + [aux_sym_exit_statement_token1] = ACTIONS(8847), + [sym_end_statement] = ACTIONS(8849), + [aux_sym_on_goto_statement_token1] = ACTIONS(8847), + [aux_sym_on_goto_statement_token2] = ACTIONS(8847), + [aux_sym_on_error_statement_token2] = ACTIONS(8847), + [sym__ambiguous_redim_statement] = ACTIONS(8849), + [aux_sym_erase_statement_token1] = ACTIONS(8847), + [aux_sym_open_statement_token1] = ACTIONS(8847), + [aux_sym_file_mode_token2] = ACTIONS(8847), + [aux_sym_file_access_token2] = ACTIONS(8847), + [aux_sym_file_lock_token2] = ACTIONS(8847), + [aux_sym_print_statement_token1] = ACTIONS(8847), + [anon_sym_PLUS] = ACTIONS(8849), + [anon_sym_DASH] = ACTIONS(10408), + [anon_sym_QMARK] = ACTIONS(8849), + [aux_sym_close_statement_token1] = ACTIONS(8847), + [aux_sym_put_statement_token1] = ACTIONS(8847), + [aux_sym_unlock_statement_token1] = ACTIONS(8847), + [aux_sym_seek_statement_token1] = ACTIONS(8847), + [sym_reset_statement] = ACTIONS(8847), + [aux_sym_raise_event_statement_token1] = ACTIONS(8847), + [sym_stop_statement] = ACTIONS(8847), + [sym_beep_statement] = ACTIONS(8847), + [aux_sym_unload_statement_token1] = ACTIONS(8847), + [aux_sym_def_type_statement_token1] = ACTIONS(8847), + [aux_sym_def_type_statement_token2] = ACTIONS(8847), + [aux_sym_def_type_statement_token3] = ACTIONS(8847), + [aux_sym_def_type_statement_token4] = ACTIONS(8847), + [aux_sym_def_type_statement_token5] = ACTIONS(8847), + [aux_sym_def_type_statement_token6] = ACTIONS(8847), + [aux_sym_def_type_statement_token7] = ACTIONS(8847), + [aux_sym_def_type_statement_token8] = ACTIONS(8847), + [aux_sym_def_type_statement_token9] = ACTIONS(8847), + [aux_sym_def_type_statement_token10] = ACTIONS(8847), + [aux_sym_def_type_statement_token11] = ACTIONS(8847), + [aux_sym_def_type_statement_token12] = ACTIONS(8847), + [aux_sym_def_type_statement_token13] = ACTIONS(8847), + [aux_sym_def_type_statement_token14] = ACTIONS(8847), + [aux_sym_call_statement_token1] = ACTIONS(8847), + [sym__ambiguous_call_statement] = ACTIONS(8847), + [aux_sym_addressof_expression_token1] = ACTIONS(8847), + [aux_sym_type_of_expression_token1] = ACTIONS(8847), + [aux_sym_unary_expression_token1] = ACTIONS(8847), + [sym_string_literal] = ACTIONS(8849), + [sym_number_literal] = ACTIONS(8849), + [aux_sym_boolean_literal_token1] = ACTIONS(8847), + [aux_sym_boolean_literal_token2] = ACTIONS(8847), + [sym_nothing_literal] = ACTIONS(8847), + [sym_null_literal] = ACTIONS(8847), + [sym_empty_literal] = ACTIONS(8847), + [sym_date_literal] = ACTIONS(8849), + [anon_sym_POUND] = ACTIONS(8847), + }, + [STATE(5082)] = { + [sym_initializer] = STATE(6119), + [sym_identifier] = ACTIONS(7710), + [sym_newline] = ACTIONS(7712), + [anon_sym_COLON] = ACTIONS(7712), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7710), + [aux_sym_frm_property_statement_token1] = ACTIONS(7710), + [anon_sym_EQ] = ACTIONS(10017), + [anon_sym_DOT] = ACTIONS(7710), + [anon_sym_BANG] = ACTIONS(7712), + [aux_sym__attribute_identifier_token1] = ACTIONS(7710), + [aux_sym_option_statement_token3] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7710), + [aux_sym_preprocessor_const_token1] = ACTIONS(7710), + [sym_static_modifier] = ACTIONS(7710), + [sym__dim_keyword] = ACTIONS(7710), + [sym__redim_keyword] = ACTIONS(7710), + [aux_sym_get_accessor_token1] = ACTIONS(7710), + [aux_sym_set_accessor_token1] = ACTIONS(7710), + [anon_sym_COMMA] = ACTIONS(7712), + [aux_sym_const_declaration_token1] = ACTIONS(7710), + [anon_sym_LPAREN] = ACTIONS(7712), + [aux_sym_as_type_clause_token2] = ACTIONS(7710), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7710), + [aux_sym_visibility_token1] = ACTIONS(7710), + [aux_sym_visibility_token2] = ACTIONS(7710), + [aux_sym_elseif_fragment_token1] = ACTIONS(7710), + [aux_sym_else_fragment_token1] = ACTIONS(7710), + [aux_sym_select_statement_token1] = ACTIONS(7710), + [aux_sym__for_header_token1] = ACTIONS(7710), + [aux_sym_do_statement_token1] = ACTIONS(7710), + [aux_sym_do_statement_token2] = ACTIONS(7710), + [aux_sym_do_condition_token1] = ACTIONS(7710), + [aux_sym_with_statement_token1] = ACTIONS(7710), + [aux_sym_exit_statement_token1] = ACTIONS(7710), + [sym_end_statement] = ACTIONS(7712), + [aux_sym_on_goto_statement_token1] = ACTIONS(7710), + [aux_sym_on_goto_statement_token2] = ACTIONS(7710), + [aux_sym_on_error_statement_token2] = ACTIONS(7710), + [sym__ambiguous_redim_statement] = ACTIONS(7712), + [aux_sym_erase_statement_token1] = ACTIONS(7710), + [aux_sym_open_statement_token1] = ACTIONS(7710), + [aux_sym_file_mode_token2] = ACTIONS(7710), + [aux_sym_file_access_token2] = ACTIONS(7710), + [aux_sym_file_lock_token2] = ACTIONS(7710), + [aux_sym_print_statement_token1] = ACTIONS(7710), + [anon_sym_PLUS] = ACTIONS(7712), + [anon_sym_DASH] = ACTIONS(7710), + [anon_sym_QMARK] = ACTIONS(7712), + [aux_sym_close_statement_token1] = ACTIONS(7710), + [aux_sym_put_statement_token1] = ACTIONS(7710), + [aux_sym_unlock_statement_token1] = ACTIONS(7710), + [aux_sym_seek_statement_token1] = ACTIONS(7710), + [sym_reset_statement] = ACTIONS(7710), + [aux_sym_raise_event_statement_token1] = ACTIONS(7710), + [sym_stop_statement] = ACTIONS(7710), + [sym_beep_statement] = ACTIONS(7710), + [aux_sym_unload_statement_token1] = ACTIONS(7710), + [aux_sym_def_type_statement_token1] = ACTIONS(7710), + [aux_sym_def_type_statement_token2] = ACTIONS(7710), + [aux_sym_def_type_statement_token3] = ACTIONS(7710), + [aux_sym_def_type_statement_token4] = ACTIONS(7710), + [aux_sym_def_type_statement_token5] = ACTIONS(7710), + [aux_sym_def_type_statement_token6] = ACTIONS(7710), + [aux_sym_def_type_statement_token7] = ACTIONS(7710), + [aux_sym_def_type_statement_token8] = ACTIONS(7710), + [aux_sym_def_type_statement_token9] = ACTIONS(7710), + [aux_sym_def_type_statement_token10] = ACTIONS(7710), + [aux_sym_def_type_statement_token11] = ACTIONS(7710), + [aux_sym_def_type_statement_token12] = ACTIONS(7710), + [aux_sym_def_type_statement_token13] = ACTIONS(7710), + [aux_sym_def_type_statement_token14] = ACTIONS(7710), + [aux_sym_call_statement_token1] = ACTIONS(7710), + [sym__ambiguous_call_statement] = ACTIONS(7710), + [aux_sym_addressof_expression_token1] = ACTIONS(7710), + [aux_sym_type_of_expression_token1] = ACTIONS(7710), + [aux_sym_unary_expression_token1] = ACTIONS(7710), + [sym_string_literal] = ACTIONS(7712), + [sym_number_literal] = ACTIONS(7712), + [aux_sym_boolean_literal_token1] = ACTIONS(7710), + [aux_sym_boolean_literal_token2] = ACTIONS(7710), + [sym_nothing_literal] = ACTIONS(7710), + [sym_null_literal] = ACTIONS(7710), + [sym_empty_literal] = ACTIONS(7710), + [sym_date_literal] = ACTIONS(7712), + [anon_sym_POUND] = ACTIONS(7710), + }, + [STATE(5083)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_while_statement_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(5084)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_while_statement_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(5085)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym_select_statement_token2] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(5086)] = { + [sym_identifier] = ACTIONS(8809), + [sym_newline] = ACTIONS(8811), + [anon_sym_COLON] = ACTIONS(8811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8809), + [aux_sym_frm_property_statement_token1] = ACTIONS(8809), + [anon_sym_DOT] = ACTIONS(8809), + [anon_sym_BANG] = ACTIONS(8811), + [aux_sym__attribute_identifier_token1] = ACTIONS(8809), + [aux_sym_option_statement_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8809), + [aux_sym_preprocessor_const_token1] = ACTIONS(8809), + [sym_static_modifier] = ACTIONS(8809), + [sym__dim_keyword] = ACTIONS(8809), + [sym__redim_keyword] = ACTIONS(8809), + [aux_sym_get_accessor_token1] = ACTIONS(8809), + [aux_sym_set_accessor_token1] = ACTIONS(8809), + [aux_sym_const_declaration_token1] = ACTIONS(8809), + [anon_sym_LPAREN] = ACTIONS(8811), + [aux_sym_as_type_clause_token2] = ACTIONS(8809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8809), + [aux_sym_visibility_token1] = ACTIONS(8809), + [aux_sym_visibility_token2] = ACTIONS(8809), + [aux_sym_elseif_fragment_token1] = ACTIONS(8809), + [aux_sym_else_fragment_token1] = ACTIONS(8809), + [aux_sym_select_statement_token1] = ACTIONS(8809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8809), + [aux_sym__for_header_token1] = ACTIONS(8809), + [aux_sym_do_statement_token1] = ACTIONS(8809), + [aux_sym_do_condition_token1] = ACTIONS(8809), + [aux_sym_with_statement_token1] = ACTIONS(8809), + [aux_sym_exit_statement_token1] = ACTIONS(8809), + [sym_end_statement] = ACTIONS(8811), + [aux_sym_on_goto_statement_token1] = ACTIONS(8809), + [aux_sym_on_goto_statement_token2] = ACTIONS(8809), + [aux_sym_on_error_statement_token2] = ACTIONS(8809), + [sym__ambiguous_redim_statement] = ACTIONS(8811), + [aux_sym_erase_statement_token1] = ACTIONS(8809), + [aux_sym_open_statement_token1] = ACTIONS(8809), + [aux_sym_file_mode_token2] = ACTIONS(8809), + [aux_sym_file_access_token2] = ACTIONS(8809), + [aux_sym_file_lock_token2] = ACTIONS(8809), + [aux_sym_print_statement_token1] = ACTIONS(8809), + [anon_sym_PLUS] = ACTIONS(8811), + [anon_sym_DASH] = ACTIONS(8809), + [anon_sym_QMARK] = ACTIONS(8811), + [aux_sym_close_statement_token1] = ACTIONS(8809), + [aux_sym_put_statement_token1] = ACTIONS(8809), + [aux_sym_unlock_statement_token1] = ACTIONS(8809), + [aux_sym_seek_statement_token1] = ACTIONS(8809), + [sym_reset_statement] = ACTIONS(8809), + [aux_sym_raise_event_statement_token1] = ACTIONS(8809), + [sym_stop_statement] = ACTIONS(8809), + [sym_beep_statement] = ACTIONS(8809), + [aux_sym_unload_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token2] = ACTIONS(8809), + [aux_sym_def_type_statement_token3] = ACTIONS(8809), + [aux_sym_def_type_statement_token4] = ACTIONS(8809), + [aux_sym_def_type_statement_token5] = ACTIONS(8809), + [aux_sym_def_type_statement_token6] = ACTIONS(8809), + [aux_sym_def_type_statement_token7] = ACTIONS(8809), + [aux_sym_def_type_statement_token8] = ACTIONS(8809), + [aux_sym_def_type_statement_token9] = ACTIONS(8809), + [aux_sym_def_type_statement_token10] = ACTIONS(8809), + [aux_sym_def_type_statement_token11] = ACTIONS(8809), + [aux_sym_def_type_statement_token12] = ACTIONS(8809), + [aux_sym_def_type_statement_token13] = ACTIONS(8809), + [aux_sym_def_type_statement_token14] = ACTIONS(8809), + [aux_sym_call_statement_token1] = ACTIONS(8809), + [sym__ambiguous_call_statement] = ACTIONS(8809), + [aux_sym_addressof_expression_token1] = ACTIONS(8809), + [aux_sym_type_of_expression_token1] = ACTIONS(8809), + [aux_sym_unary_expression_token1] = ACTIONS(8809), + [sym_string_literal] = ACTIONS(8811), + [sym_number_literal] = ACTIONS(8811), + [aux_sym_boolean_literal_token1] = ACTIONS(8809), + [aux_sym_boolean_literal_token2] = ACTIONS(8809), + [sym_nothing_literal] = ACTIONS(8809), + [sym_null_literal] = ACTIONS(8809), + [sym_empty_literal] = ACTIONS(8809), + [sym_date_literal] = ACTIONS(8811), + [anon_sym_POUND] = ACTIONS(8809), + }, + [STATE(5087)] = { + [aux_sym__argument_sequence_repeat1] = STATE(5573), + [sym_identifier] = ACTIONS(8549), + [sym_newline] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8549), + [aux_sym_frm_property_statement_token1] = ACTIONS(8549), + [anon_sym_DOT] = ACTIONS(8549), + [anon_sym_BANG] = ACTIONS(8551), + [aux_sym__attribute_identifier_token1] = ACTIONS(8549), + [aux_sym_option_statement_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8549), + [aux_sym_preprocessor_const_token1] = ACTIONS(8549), + [sym_static_modifier] = ACTIONS(8549), + [sym__dim_keyword] = ACTIONS(8549), + [sym__redim_keyword] = ACTIONS(8549), + [aux_sym_get_accessor_token1] = ACTIONS(8549), + [aux_sym_set_accessor_token1] = ACTIONS(8549), + [anon_sym_COMMA] = ACTIONS(10410), + [aux_sym_const_declaration_token1] = ACTIONS(8549), + [anon_sym_LPAREN] = ACTIONS(8551), + [aux_sym_as_type_clause_token2] = ACTIONS(8549), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8549), + [aux_sym_visibility_token1] = ACTIONS(8549), + [aux_sym_visibility_token2] = ACTIONS(8549), + [aux_sym_elseif_fragment_token1] = ACTIONS(8549), + [aux_sym_else_fragment_token1] = ACTIONS(8549), + [aux_sym_select_statement_token1] = ACTIONS(8549), + [aux_sym__for_header_token1] = ACTIONS(8549), + [aux_sym_do_statement_token1] = ACTIONS(8549), + [aux_sym_do_statement_token2] = ACTIONS(8549), + [aux_sym_do_condition_token1] = ACTIONS(8549), + [aux_sym_with_statement_token1] = ACTIONS(8549), + [aux_sym_exit_statement_token1] = ACTIONS(8549), + [sym_end_statement] = ACTIONS(8551), + [aux_sym_on_goto_statement_token1] = ACTIONS(8549), + [aux_sym_on_goto_statement_token2] = ACTIONS(8549), + [aux_sym_on_error_statement_token2] = ACTIONS(8549), + [sym__ambiguous_redim_statement] = ACTIONS(8551), + [aux_sym_erase_statement_token1] = ACTIONS(8549), + [aux_sym_open_statement_token1] = ACTIONS(8549), + [aux_sym_file_mode_token2] = ACTIONS(8549), + [aux_sym_file_access_token2] = ACTIONS(8549), + [aux_sym_file_lock_token2] = ACTIONS(8549), + [aux_sym_print_statement_token1] = ACTIONS(8549), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_DASH] = ACTIONS(8549), + [anon_sym_QMARK] = ACTIONS(8551), + [aux_sym_close_statement_token1] = ACTIONS(8549), + [aux_sym_put_statement_token1] = ACTIONS(8549), + [aux_sym_unlock_statement_token1] = ACTIONS(8549), + [aux_sym_seek_statement_token1] = ACTIONS(8549), + [sym_reset_statement] = ACTIONS(8549), + [aux_sym_raise_event_statement_token1] = ACTIONS(8549), + [sym_stop_statement] = ACTIONS(8549), + [sym_beep_statement] = ACTIONS(8549), + [aux_sym_unload_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token2] = ACTIONS(8549), + [aux_sym_def_type_statement_token3] = ACTIONS(8549), + [aux_sym_def_type_statement_token4] = ACTIONS(8549), + [aux_sym_def_type_statement_token5] = ACTIONS(8549), + [aux_sym_def_type_statement_token6] = ACTIONS(8549), + [aux_sym_def_type_statement_token7] = ACTIONS(8549), + [aux_sym_def_type_statement_token8] = ACTIONS(8549), + [aux_sym_def_type_statement_token9] = ACTIONS(8549), + [aux_sym_def_type_statement_token10] = ACTIONS(8549), + [aux_sym_def_type_statement_token11] = ACTIONS(8549), + [aux_sym_def_type_statement_token12] = ACTIONS(8549), + [aux_sym_def_type_statement_token13] = ACTIONS(8549), + [aux_sym_def_type_statement_token14] = ACTIONS(8549), + [aux_sym_call_statement_token1] = ACTIONS(8549), + [sym__ambiguous_call_statement] = ACTIONS(8549), + [aux_sym_addressof_expression_token1] = ACTIONS(8549), + [aux_sym_type_of_expression_token1] = ACTIONS(8549), + [aux_sym_unary_expression_token1] = ACTIONS(8549), + [sym_string_literal] = ACTIONS(8551), + [sym_number_literal] = ACTIONS(8551), + [aux_sym_boolean_literal_token1] = ACTIONS(8549), + [aux_sym_boolean_literal_token2] = ACTIONS(8549), + [sym_nothing_literal] = ACTIONS(8549), + [sym_null_literal] = ACTIONS(8549), + [sym_empty_literal] = ACTIONS(8549), + [sym_date_literal] = ACTIONS(8551), + [anon_sym_POUND] = ACTIONS(8549), + }, + [STATE(5088)] = { + [sym_do_condition] = STATE(7047), + [sym_identifier] = ACTIONS(8188), + [sym_newline] = ACTIONS(8190), + [anon_sym_COLON] = ACTIONS(8190), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8188), + [aux_sym_frm_property_statement_token1] = ACTIONS(8188), + [anon_sym_DOT] = ACTIONS(8188), + [anon_sym_BANG] = ACTIONS(8190), + [aux_sym__attribute_identifier_token1] = ACTIONS(8188), + [aux_sym_option_statement_token3] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8188), + [aux_sym_preprocessor_const_token1] = ACTIONS(8188), + [sym_static_modifier] = ACTIONS(8188), + [sym__dim_keyword] = ACTIONS(8188), + [sym__redim_keyword] = ACTIONS(8188), + [aux_sym_get_accessor_token1] = ACTIONS(8188), + [aux_sym_set_accessor_token1] = ACTIONS(8188), + [aux_sym_const_declaration_token1] = ACTIONS(8188), + [anon_sym_LPAREN] = ACTIONS(8190), + [aux_sym_as_type_clause_token2] = ACTIONS(8188), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8188), + [aux_sym_visibility_token1] = ACTIONS(8188), + [aux_sym_visibility_token2] = ACTIONS(8188), + [aux_sym_elseif_fragment_token1] = ACTIONS(8188), + [aux_sym_else_fragment_token1] = ACTIONS(8188), + [aux_sym_select_statement_token1] = ACTIONS(8188), + [aux_sym__for_header_token1] = ACTIONS(8188), + [aux_sym_do_statement_token1] = ACTIONS(8188), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8188), + [aux_sym_exit_statement_token1] = ACTIONS(8188), + [sym_end_statement] = ACTIONS(8190), + [aux_sym_on_goto_statement_token1] = ACTIONS(8188), + [aux_sym_on_goto_statement_token2] = ACTIONS(8188), + [aux_sym_on_error_statement_token2] = ACTIONS(8188), + [sym__ambiguous_redim_statement] = ACTIONS(8190), + [aux_sym_erase_statement_token1] = ACTIONS(8188), + [aux_sym_open_statement_token1] = ACTIONS(8188), + [aux_sym_file_mode_token2] = ACTIONS(8188), + [aux_sym_file_access_token2] = ACTIONS(8188), + [aux_sym_file_lock_token2] = ACTIONS(8188), + [aux_sym_print_statement_token1] = ACTIONS(8188), + [anon_sym_PLUS] = ACTIONS(8190), + [anon_sym_DASH] = ACTIONS(8188), + [anon_sym_QMARK] = ACTIONS(8190), + [aux_sym_close_statement_token1] = ACTIONS(8188), + [aux_sym_put_statement_token1] = ACTIONS(8188), + [aux_sym_unlock_statement_token1] = ACTIONS(8188), + [aux_sym_seek_statement_token1] = ACTIONS(8188), + [sym_reset_statement] = ACTIONS(8188), + [aux_sym_raise_event_statement_token1] = ACTIONS(8188), + [sym_stop_statement] = ACTIONS(8188), + [sym_beep_statement] = ACTIONS(8188), + [aux_sym_unload_statement_token1] = ACTIONS(8188), + [aux_sym_def_type_statement_token1] = ACTIONS(8188), + [aux_sym_def_type_statement_token2] = ACTIONS(8188), + [aux_sym_def_type_statement_token3] = ACTIONS(8188), + [aux_sym_def_type_statement_token4] = ACTIONS(8188), + [aux_sym_def_type_statement_token5] = ACTIONS(8188), + [aux_sym_def_type_statement_token6] = ACTIONS(8188), + [aux_sym_def_type_statement_token7] = ACTIONS(8188), + [aux_sym_def_type_statement_token8] = ACTIONS(8188), + [aux_sym_def_type_statement_token9] = ACTIONS(8188), + [aux_sym_def_type_statement_token10] = ACTIONS(8188), + [aux_sym_def_type_statement_token11] = ACTIONS(8188), + [aux_sym_def_type_statement_token12] = ACTIONS(8188), + [aux_sym_def_type_statement_token13] = ACTIONS(8188), + [aux_sym_def_type_statement_token14] = ACTIONS(8188), + [aux_sym_call_statement_token1] = ACTIONS(8188), + [sym__ambiguous_call_statement] = ACTIONS(8188), + [aux_sym_addressof_expression_token1] = ACTIONS(8188), + [aux_sym_type_of_expression_token1] = ACTIONS(8188), + [aux_sym_unary_expression_token1] = ACTIONS(8188), + [sym_string_literal] = ACTIONS(8190), + [sym_number_literal] = ACTIONS(8190), + [aux_sym_boolean_literal_token1] = ACTIONS(8188), + [aux_sym_boolean_literal_token2] = ACTIONS(8188), + [sym_nothing_literal] = ACTIONS(8188), + [sym_null_literal] = ACTIONS(8188), + [sym_empty_literal] = ACTIONS(8188), + [sym_date_literal] = ACTIONS(8190), + [anon_sym_POUND] = ACTIONS(8188), + }, + [STATE(5089)] = { + [sym_do_condition] = STATE(7057), + [sym_identifier] = ACTIONS(8192), + [sym_newline] = ACTIONS(8194), + [anon_sym_COLON] = ACTIONS(8194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8192), + [aux_sym_frm_property_statement_token1] = ACTIONS(8192), + [anon_sym_DOT] = ACTIONS(8192), + [anon_sym_BANG] = ACTIONS(8194), + [aux_sym__attribute_identifier_token1] = ACTIONS(8192), + [aux_sym_option_statement_token3] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8192), + [aux_sym_preprocessor_const_token1] = ACTIONS(8192), + [sym_static_modifier] = ACTIONS(8192), + [sym__dim_keyword] = ACTIONS(8192), + [sym__redim_keyword] = ACTIONS(8192), + [aux_sym_get_accessor_token1] = ACTIONS(8192), + [aux_sym_set_accessor_token1] = ACTIONS(8192), + [aux_sym_const_declaration_token1] = ACTIONS(8192), + [anon_sym_LPAREN] = ACTIONS(8194), + [aux_sym_as_type_clause_token2] = ACTIONS(8192), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8192), + [aux_sym_visibility_token1] = ACTIONS(8192), + [aux_sym_visibility_token2] = ACTIONS(8192), + [aux_sym_elseif_fragment_token1] = ACTIONS(8192), + [aux_sym_else_fragment_token1] = ACTIONS(8192), + [aux_sym_select_statement_token1] = ACTIONS(8192), + [aux_sym__for_header_token1] = ACTIONS(8192), + [aux_sym_do_statement_token1] = ACTIONS(8192), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8192), + [aux_sym_exit_statement_token1] = ACTIONS(8192), + [sym_end_statement] = ACTIONS(8194), + [aux_sym_on_goto_statement_token1] = ACTIONS(8192), + [aux_sym_on_goto_statement_token2] = ACTIONS(8192), + [aux_sym_on_error_statement_token2] = ACTIONS(8192), + [sym__ambiguous_redim_statement] = ACTIONS(8194), + [aux_sym_erase_statement_token1] = ACTIONS(8192), + [aux_sym_open_statement_token1] = ACTIONS(8192), + [aux_sym_file_mode_token2] = ACTIONS(8192), + [aux_sym_file_access_token2] = ACTIONS(8192), + [aux_sym_file_lock_token2] = ACTIONS(8192), + [aux_sym_print_statement_token1] = ACTIONS(8192), + [anon_sym_PLUS] = ACTIONS(8194), + [anon_sym_DASH] = ACTIONS(8192), + [anon_sym_QMARK] = ACTIONS(8194), + [aux_sym_close_statement_token1] = ACTIONS(8192), + [aux_sym_put_statement_token1] = ACTIONS(8192), + [aux_sym_unlock_statement_token1] = ACTIONS(8192), + [aux_sym_seek_statement_token1] = ACTIONS(8192), + [sym_reset_statement] = ACTIONS(8192), + [aux_sym_raise_event_statement_token1] = ACTIONS(8192), + [sym_stop_statement] = ACTIONS(8192), + [sym_beep_statement] = ACTIONS(8192), + [aux_sym_unload_statement_token1] = ACTIONS(8192), + [aux_sym_def_type_statement_token1] = ACTIONS(8192), + [aux_sym_def_type_statement_token2] = ACTIONS(8192), + [aux_sym_def_type_statement_token3] = ACTIONS(8192), + [aux_sym_def_type_statement_token4] = ACTIONS(8192), + [aux_sym_def_type_statement_token5] = ACTIONS(8192), + [aux_sym_def_type_statement_token6] = ACTIONS(8192), + [aux_sym_def_type_statement_token7] = ACTIONS(8192), + [aux_sym_def_type_statement_token8] = ACTIONS(8192), + [aux_sym_def_type_statement_token9] = ACTIONS(8192), + [aux_sym_def_type_statement_token10] = ACTIONS(8192), + [aux_sym_def_type_statement_token11] = ACTIONS(8192), + [aux_sym_def_type_statement_token12] = ACTIONS(8192), + [aux_sym_def_type_statement_token13] = ACTIONS(8192), + [aux_sym_def_type_statement_token14] = ACTIONS(8192), + [aux_sym_call_statement_token1] = ACTIONS(8192), + [sym__ambiguous_call_statement] = ACTIONS(8192), + [aux_sym_addressof_expression_token1] = ACTIONS(8192), + [aux_sym_type_of_expression_token1] = ACTIONS(8192), + [aux_sym_unary_expression_token1] = ACTIONS(8192), + [sym_string_literal] = ACTIONS(8194), + [sym_number_literal] = ACTIONS(8194), + [aux_sym_boolean_literal_token1] = ACTIONS(8192), + [aux_sym_boolean_literal_token2] = ACTIONS(8192), + [sym_nothing_literal] = ACTIONS(8192), + [sym_null_literal] = ACTIONS(8192), + [sym_empty_literal] = ACTIONS(8192), + [sym_date_literal] = ACTIONS(8194), + [anon_sym_POUND] = ACTIONS(8192), + }, + [STATE(5090)] = { + [sym_do_condition] = STATE(7116), + [sym_identifier] = ACTIONS(8203), + [sym_newline] = ACTIONS(8205), + [anon_sym_COLON] = ACTIONS(8205), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8203), + [aux_sym_frm_property_statement_token1] = ACTIONS(8203), + [anon_sym_DOT] = ACTIONS(8203), + [anon_sym_BANG] = ACTIONS(8205), + [aux_sym__attribute_identifier_token1] = ACTIONS(8203), + [aux_sym_option_statement_token3] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8203), + [aux_sym_preprocessor_const_token1] = ACTIONS(8203), + [sym_static_modifier] = ACTIONS(8203), + [sym__dim_keyword] = ACTIONS(8203), + [sym__redim_keyword] = ACTIONS(8203), + [aux_sym_get_accessor_token1] = ACTIONS(8203), + [aux_sym_set_accessor_token1] = ACTIONS(8203), + [aux_sym_const_declaration_token1] = ACTIONS(8203), + [anon_sym_LPAREN] = ACTIONS(8205), + [aux_sym_as_type_clause_token2] = ACTIONS(8203), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8203), + [aux_sym_visibility_token1] = ACTIONS(8203), + [aux_sym_visibility_token2] = ACTIONS(8203), + [aux_sym_elseif_fragment_token1] = ACTIONS(8203), + [aux_sym_else_fragment_token1] = ACTIONS(8203), + [aux_sym_select_statement_token1] = ACTIONS(8203), + [aux_sym__for_header_token1] = ACTIONS(8203), + [aux_sym_do_statement_token1] = ACTIONS(8203), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8203), + [aux_sym_exit_statement_token1] = ACTIONS(8203), + [sym_end_statement] = ACTIONS(8205), + [aux_sym_on_goto_statement_token1] = ACTIONS(8203), + [aux_sym_on_goto_statement_token2] = ACTIONS(8203), + [aux_sym_on_error_statement_token2] = ACTIONS(8203), + [sym__ambiguous_redim_statement] = ACTIONS(8205), + [aux_sym_erase_statement_token1] = ACTIONS(8203), + [aux_sym_open_statement_token1] = ACTIONS(8203), + [aux_sym_file_mode_token2] = ACTIONS(8203), + [aux_sym_file_access_token2] = ACTIONS(8203), + [aux_sym_file_lock_token2] = ACTIONS(8203), + [aux_sym_print_statement_token1] = ACTIONS(8203), + [anon_sym_PLUS] = ACTIONS(8205), + [anon_sym_DASH] = ACTIONS(8203), + [anon_sym_QMARK] = ACTIONS(8205), + [aux_sym_close_statement_token1] = ACTIONS(8203), + [aux_sym_put_statement_token1] = ACTIONS(8203), + [aux_sym_unlock_statement_token1] = ACTIONS(8203), + [aux_sym_seek_statement_token1] = ACTIONS(8203), + [sym_reset_statement] = ACTIONS(8203), + [aux_sym_raise_event_statement_token1] = ACTIONS(8203), + [sym_stop_statement] = ACTIONS(8203), + [sym_beep_statement] = ACTIONS(8203), + [aux_sym_unload_statement_token1] = ACTIONS(8203), + [aux_sym_def_type_statement_token1] = ACTIONS(8203), + [aux_sym_def_type_statement_token2] = ACTIONS(8203), + [aux_sym_def_type_statement_token3] = ACTIONS(8203), + [aux_sym_def_type_statement_token4] = ACTIONS(8203), + [aux_sym_def_type_statement_token5] = ACTIONS(8203), + [aux_sym_def_type_statement_token6] = ACTIONS(8203), + [aux_sym_def_type_statement_token7] = ACTIONS(8203), + [aux_sym_def_type_statement_token8] = ACTIONS(8203), + [aux_sym_def_type_statement_token9] = ACTIONS(8203), + [aux_sym_def_type_statement_token10] = ACTIONS(8203), + [aux_sym_def_type_statement_token11] = ACTIONS(8203), + [aux_sym_def_type_statement_token12] = ACTIONS(8203), + [aux_sym_def_type_statement_token13] = ACTIONS(8203), + [aux_sym_def_type_statement_token14] = ACTIONS(8203), + [aux_sym_call_statement_token1] = ACTIONS(8203), + [sym__ambiguous_call_statement] = ACTIONS(8203), + [aux_sym_addressof_expression_token1] = ACTIONS(8203), + [aux_sym_type_of_expression_token1] = ACTIONS(8203), + [aux_sym_unary_expression_token1] = ACTIONS(8203), + [sym_string_literal] = ACTIONS(8205), + [sym_number_literal] = ACTIONS(8205), + [aux_sym_boolean_literal_token1] = ACTIONS(8203), + [aux_sym_boolean_literal_token2] = ACTIONS(8203), + [sym_nothing_literal] = ACTIONS(8203), + [sym_null_literal] = ACTIONS(8203), + [sym_empty_literal] = ACTIONS(8203), + [sym_date_literal] = ACTIONS(8205), + [anon_sym_POUND] = ACTIONS(8203), + }, + [STATE(5091)] = { + [sym_do_condition] = STATE(6304), + [sym_identifier] = ACTIONS(8213), + [sym_newline] = ACTIONS(8215), + [anon_sym_COLON] = ACTIONS(8215), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8213), + [aux_sym_frm_property_statement_token1] = ACTIONS(8213), + [anon_sym_DOT] = ACTIONS(8213), + [anon_sym_BANG] = ACTIONS(8215), + [aux_sym__attribute_identifier_token1] = ACTIONS(8213), + [aux_sym_option_statement_token3] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8213), + [aux_sym_preprocessor_const_token1] = ACTIONS(8213), + [sym_static_modifier] = ACTIONS(8213), + [sym__dim_keyword] = ACTIONS(8213), + [sym__redim_keyword] = ACTIONS(8213), + [aux_sym_get_accessor_token1] = ACTIONS(8213), + [aux_sym_set_accessor_token1] = ACTIONS(8213), + [aux_sym_const_declaration_token1] = ACTIONS(8213), + [anon_sym_LPAREN] = ACTIONS(8215), + [aux_sym_as_type_clause_token2] = ACTIONS(8213), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8213), + [aux_sym_visibility_token1] = ACTIONS(8213), + [aux_sym_visibility_token2] = ACTIONS(8213), + [aux_sym_elseif_fragment_token1] = ACTIONS(8213), + [aux_sym_else_fragment_token1] = ACTIONS(8213), + [aux_sym_select_statement_token1] = ACTIONS(8213), + [aux_sym__for_header_token1] = ACTIONS(8213), + [aux_sym_do_statement_token1] = ACTIONS(8213), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8213), + [aux_sym_exit_statement_token1] = ACTIONS(8213), + [sym_end_statement] = ACTIONS(8215), + [aux_sym_on_goto_statement_token1] = ACTIONS(8213), + [aux_sym_on_goto_statement_token2] = ACTIONS(8213), + [aux_sym_on_error_statement_token2] = ACTIONS(8213), + [sym__ambiguous_redim_statement] = ACTIONS(8215), + [aux_sym_erase_statement_token1] = ACTIONS(8213), + [aux_sym_open_statement_token1] = ACTIONS(8213), + [aux_sym_file_mode_token2] = ACTIONS(8213), + [aux_sym_file_access_token2] = ACTIONS(8213), + [aux_sym_file_lock_token2] = ACTIONS(8213), + [aux_sym_print_statement_token1] = ACTIONS(8213), + [anon_sym_PLUS] = ACTIONS(8215), + [anon_sym_DASH] = ACTIONS(8213), + [anon_sym_QMARK] = ACTIONS(8215), + [aux_sym_close_statement_token1] = ACTIONS(8213), + [aux_sym_put_statement_token1] = ACTIONS(8213), + [aux_sym_unlock_statement_token1] = ACTIONS(8213), + [aux_sym_seek_statement_token1] = ACTIONS(8213), + [sym_reset_statement] = ACTIONS(8213), + [aux_sym_raise_event_statement_token1] = ACTIONS(8213), + [sym_stop_statement] = ACTIONS(8213), + [sym_beep_statement] = ACTIONS(8213), + [aux_sym_unload_statement_token1] = ACTIONS(8213), + [aux_sym_def_type_statement_token1] = ACTIONS(8213), + [aux_sym_def_type_statement_token2] = ACTIONS(8213), + [aux_sym_def_type_statement_token3] = ACTIONS(8213), + [aux_sym_def_type_statement_token4] = ACTIONS(8213), + [aux_sym_def_type_statement_token5] = ACTIONS(8213), + [aux_sym_def_type_statement_token6] = ACTIONS(8213), + [aux_sym_def_type_statement_token7] = ACTIONS(8213), + [aux_sym_def_type_statement_token8] = ACTIONS(8213), + [aux_sym_def_type_statement_token9] = ACTIONS(8213), + [aux_sym_def_type_statement_token10] = ACTIONS(8213), + [aux_sym_def_type_statement_token11] = ACTIONS(8213), + [aux_sym_def_type_statement_token12] = ACTIONS(8213), + [aux_sym_def_type_statement_token13] = ACTIONS(8213), + [aux_sym_def_type_statement_token14] = ACTIONS(8213), + [aux_sym_call_statement_token1] = ACTIONS(8213), + [sym__ambiguous_call_statement] = ACTIONS(8213), + [aux_sym_addressof_expression_token1] = ACTIONS(8213), + [aux_sym_type_of_expression_token1] = ACTIONS(8213), + [aux_sym_unary_expression_token1] = ACTIONS(8213), + [sym_string_literal] = ACTIONS(8215), + [sym_number_literal] = ACTIONS(8215), + [aux_sym_boolean_literal_token1] = ACTIONS(8213), + [aux_sym_boolean_literal_token2] = ACTIONS(8213), + [sym_nothing_literal] = ACTIONS(8213), + [sym_null_literal] = ACTIONS(8213), + [sym_empty_literal] = ACTIONS(8213), + [sym_date_literal] = ACTIONS(8215), + [anon_sym_POUND] = ACTIONS(8213), + }, + [STATE(5092)] = { + [sym_do_condition] = STATE(6306), + [sym_identifier] = ACTIONS(8217), + [sym_newline] = ACTIONS(8219), + [anon_sym_COLON] = ACTIONS(8219), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8217), + [aux_sym_frm_property_statement_token1] = ACTIONS(8217), + [anon_sym_DOT] = ACTIONS(8217), + [anon_sym_BANG] = ACTIONS(8219), + [aux_sym__attribute_identifier_token1] = ACTIONS(8217), + [aux_sym_option_statement_token3] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8217), + [aux_sym_preprocessor_const_token1] = ACTIONS(8217), + [sym_static_modifier] = ACTIONS(8217), + [sym__dim_keyword] = ACTIONS(8217), + [sym__redim_keyword] = ACTIONS(8217), + [aux_sym_get_accessor_token1] = ACTIONS(8217), + [aux_sym_set_accessor_token1] = ACTIONS(8217), + [aux_sym_const_declaration_token1] = ACTIONS(8217), + [anon_sym_LPAREN] = ACTIONS(8219), + [aux_sym_as_type_clause_token2] = ACTIONS(8217), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8217), + [aux_sym_visibility_token1] = ACTIONS(8217), + [aux_sym_visibility_token2] = ACTIONS(8217), + [aux_sym_elseif_fragment_token1] = ACTIONS(8217), + [aux_sym_else_fragment_token1] = ACTIONS(8217), + [aux_sym_select_statement_token1] = ACTIONS(8217), + [aux_sym__for_header_token1] = ACTIONS(8217), + [aux_sym_do_statement_token1] = ACTIONS(8217), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8217), + [aux_sym_exit_statement_token1] = ACTIONS(8217), + [sym_end_statement] = ACTIONS(8219), + [aux_sym_on_goto_statement_token1] = ACTIONS(8217), + [aux_sym_on_goto_statement_token2] = ACTIONS(8217), + [aux_sym_on_error_statement_token2] = ACTIONS(8217), + [sym__ambiguous_redim_statement] = ACTIONS(8219), + [aux_sym_erase_statement_token1] = ACTIONS(8217), + [aux_sym_open_statement_token1] = ACTIONS(8217), + [aux_sym_file_mode_token2] = ACTIONS(8217), + [aux_sym_file_access_token2] = ACTIONS(8217), + [aux_sym_file_lock_token2] = ACTIONS(8217), + [aux_sym_print_statement_token1] = ACTIONS(8217), + [anon_sym_PLUS] = ACTIONS(8219), + [anon_sym_DASH] = ACTIONS(8217), + [anon_sym_QMARK] = ACTIONS(8219), + [aux_sym_close_statement_token1] = ACTIONS(8217), + [aux_sym_put_statement_token1] = ACTIONS(8217), + [aux_sym_unlock_statement_token1] = ACTIONS(8217), + [aux_sym_seek_statement_token1] = ACTIONS(8217), + [sym_reset_statement] = ACTIONS(8217), + [aux_sym_raise_event_statement_token1] = ACTIONS(8217), + [sym_stop_statement] = ACTIONS(8217), + [sym_beep_statement] = ACTIONS(8217), + [aux_sym_unload_statement_token1] = ACTIONS(8217), + [aux_sym_def_type_statement_token1] = ACTIONS(8217), + [aux_sym_def_type_statement_token2] = ACTIONS(8217), + [aux_sym_def_type_statement_token3] = ACTIONS(8217), + [aux_sym_def_type_statement_token4] = ACTIONS(8217), + [aux_sym_def_type_statement_token5] = ACTIONS(8217), + [aux_sym_def_type_statement_token6] = ACTIONS(8217), + [aux_sym_def_type_statement_token7] = ACTIONS(8217), + [aux_sym_def_type_statement_token8] = ACTIONS(8217), + [aux_sym_def_type_statement_token9] = ACTIONS(8217), + [aux_sym_def_type_statement_token10] = ACTIONS(8217), + [aux_sym_def_type_statement_token11] = ACTIONS(8217), + [aux_sym_def_type_statement_token12] = ACTIONS(8217), + [aux_sym_def_type_statement_token13] = ACTIONS(8217), + [aux_sym_def_type_statement_token14] = ACTIONS(8217), + [aux_sym_call_statement_token1] = ACTIONS(8217), + [sym__ambiguous_call_statement] = ACTIONS(8217), + [aux_sym_addressof_expression_token1] = ACTIONS(8217), + [aux_sym_type_of_expression_token1] = ACTIONS(8217), + [aux_sym_unary_expression_token1] = ACTIONS(8217), + [sym_string_literal] = ACTIONS(8219), + [sym_number_literal] = ACTIONS(8219), + [aux_sym_boolean_literal_token1] = ACTIONS(8217), + [aux_sym_boolean_literal_token2] = ACTIONS(8217), + [sym_nothing_literal] = ACTIONS(8217), + [sym_null_literal] = ACTIONS(8217), + [sym_empty_literal] = ACTIONS(8217), + [sym_date_literal] = ACTIONS(8219), + [anon_sym_POUND] = ACTIONS(8217), + }, + [STATE(5093)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5093), + [sym_identifier] = ACTIONS(8287), + [sym_newline] = ACTIONS(8289), + [anon_sym_COLON] = ACTIONS(8289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8287), + [aux_sym_frm_property_statement_token1] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8287), + [anon_sym_BANG] = ACTIONS(8289), + [aux_sym__attribute_identifier_token1] = ACTIONS(8287), + [aux_sym_option_statement_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8287), + [aux_sym_preprocessor_const_token1] = ACTIONS(8287), + [sym_static_modifier] = ACTIONS(8287), + [sym__dim_keyword] = ACTIONS(8287), + [sym__redim_keyword] = ACTIONS(8287), + [aux_sym_get_accessor_token1] = ACTIONS(8287), + [aux_sym_set_accessor_token1] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(10414), + [aux_sym_const_declaration_token1] = ACTIONS(8287), + [anon_sym_LPAREN] = ACTIONS(8289), + [aux_sym_as_type_clause_token2] = ACTIONS(8287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8287), + [aux_sym_visibility_token1] = ACTIONS(8287), + [aux_sym_visibility_token2] = ACTIONS(8287), + [aux_sym_elseif_fragment_token1] = ACTIONS(8287), + [aux_sym_else_fragment_token1] = ACTIONS(8287), + [aux_sym_select_statement_token1] = ACTIONS(8287), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8287), + [aux_sym__for_header_token1] = ACTIONS(8287), + [aux_sym_do_statement_token1] = ACTIONS(8287), + [aux_sym_do_condition_token1] = ACTIONS(8287), + [aux_sym_with_statement_token1] = ACTIONS(8287), + [aux_sym_exit_statement_token1] = ACTIONS(8287), + [sym_end_statement] = ACTIONS(8289), + [aux_sym_on_goto_statement_token1] = ACTIONS(8287), + [aux_sym_on_goto_statement_token2] = ACTIONS(8287), + [aux_sym_on_error_statement_token2] = ACTIONS(8287), + [sym__ambiguous_redim_statement] = ACTIONS(8289), + [aux_sym_erase_statement_token1] = ACTIONS(8287), + [aux_sym_open_statement_token1] = ACTIONS(8287), + [aux_sym_file_mode_token2] = ACTIONS(8287), + [aux_sym_file_access_token2] = ACTIONS(8287), + [aux_sym_file_lock_token2] = ACTIONS(8287), + [aux_sym_print_statement_token1] = ACTIONS(8287), + [anon_sym_PLUS] = ACTIONS(8289), + [anon_sym_DASH] = ACTIONS(8287), + [anon_sym_QMARK] = ACTIONS(8289), + [aux_sym_close_statement_token1] = ACTIONS(8287), + [aux_sym_put_statement_token1] = ACTIONS(8287), + [aux_sym_unlock_statement_token1] = ACTIONS(8287), + [aux_sym_seek_statement_token1] = ACTIONS(8287), + [sym_reset_statement] = ACTIONS(8287), + [aux_sym_raise_event_statement_token1] = ACTIONS(8287), + [sym_stop_statement] = ACTIONS(8287), + [sym_beep_statement] = ACTIONS(8287), + [aux_sym_unload_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token2] = ACTIONS(8287), + [aux_sym_def_type_statement_token3] = ACTIONS(8287), + [aux_sym_def_type_statement_token4] = ACTIONS(8287), + [aux_sym_def_type_statement_token5] = ACTIONS(8287), + [aux_sym_def_type_statement_token6] = ACTIONS(8287), + [aux_sym_def_type_statement_token7] = ACTIONS(8287), + [aux_sym_def_type_statement_token8] = ACTIONS(8287), + [aux_sym_def_type_statement_token9] = ACTIONS(8287), + [aux_sym_def_type_statement_token10] = ACTIONS(8287), + [aux_sym_def_type_statement_token11] = ACTIONS(8287), + [aux_sym_def_type_statement_token12] = ACTIONS(8287), + [aux_sym_def_type_statement_token13] = ACTIONS(8287), + [aux_sym_def_type_statement_token14] = ACTIONS(8287), + [aux_sym_call_statement_token1] = ACTIONS(8287), + [sym__ambiguous_call_statement] = ACTIONS(8287), + [aux_sym_addressof_expression_token1] = ACTIONS(8287), + [aux_sym_type_of_expression_token1] = ACTIONS(8287), + [aux_sym_unary_expression_token1] = ACTIONS(8287), + [sym_string_literal] = ACTIONS(8289), + [sym_number_literal] = ACTIONS(8289), + [aux_sym_boolean_literal_token1] = ACTIONS(8287), + [aux_sym_boolean_literal_token2] = ACTIONS(8287), + [sym_nothing_literal] = ACTIONS(8287), + [sym_null_literal] = ACTIONS(8287), + [sym_empty_literal] = ACTIONS(8287), + [sym_date_literal] = ACTIONS(8289), + [anon_sym_POUND] = ACTIONS(8287), + }, + [STATE(5094)] = { + [aux_sym_const_declaration_repeat1] = STATE(5094), + [sym_identifier] = ACTIONS(8350), + [sym_newline] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8350), + [aux_sym_frm_property_statement_token1] = ACTIONS(8350), + [anon_sym_DOT] = ACTIONS(8350), + [anon_sym_BANG] = ACTIONS(8352), + [aux_sym__attribute_identifier_token1] = ACTIONS(8350), + [aux_sym_option_statement_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8350), + [aux_sym_preprocessor_const_token1] = ACTIONS(8350), + [sym_static_modifier] = ACTIONS(8350), + [sym__dim_keyword] = ACTIONS(8350), + [sym__redim_keyword] = ACTIONS(8350), + [aux_sym_get_accessor_token1] = ACTIONS(8350), + [aux_sym_set_accessor_token1] = ACTIONS(8350), + [anon_sym_COMMA] = ACTIONS(10417), + [aux_sym_const_declaration_token1] = ACTIONS(8350), + [anon_sym_LPAREN] = ACTIONS(8352), + [aux_sym_as_type_clause_token2] = ACTIONS(8350), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8350), + [aux_sym_visibility_token1] = ACTIONS(8350), + [aux_sym_visibility_token2] = ACTIONS(8350), + [aux_sym_elseif_fragment_token1] = ACTIONS(8350), + [aux_sym_else_fragment_token1] = ACTIONS(8350), + [aux_sym_select_statement_token1] = ACTIONS(8350), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8350), + [aux_sym__for_header_token1] = ACTIONS(8350), + [aux_sym_do_statement_token1] = ACTIONS(8350), + [aux_sym_do_condition_token1] = ACTIONS(8350), + [aux_sym_with_statement_token1] = ACTIONS(8350), + [aux_sym_exit_statement_token1] = ACTIONS(8350), + [sym_end_statement] = ACTIONS(8352), + [aux_sym_on_goto_statement_token1] = ACTIONS(8350), + [aux_sym_on_goto_statement_token2] = ACTIONS(8350), + [aux_sym_on_error_statement_token2] = ACTIONS(8350), + [sym__ambiguous_redim_statement] = ACTIONS(8352), + [aux_sym_erase_statement_token1] = ACTIONS(8350), + [aux_sym_open_statement_token1] = ACTIONS(8350), + [aux_sym_file_mode_token2] = ACTIONS(8350), + [aux_sym_file_access_token2] = ACTIONS(8350), + [aux_sym_file_lock_token2] = ACTIONS(8350), + [aux_sym_print_statement_token1] = ACTIONS(8350), + [anon_sym_PLUS] = ACTIONS(8352), + [anon_sym_DASH] = ACTIONS(8350), + [anon_sym_QMARK] = ACTIONS(8352), + [aux_sym_close_statement_token1] = ACTIONS(8350), + [aux_sym_put_statement_token1] = ACTIONS(8350), + [aux_sym_unlock_statement_token1] = ACTIONS(8350), + [aux_sym_seek_statement_token1] = ACTIONS(8350), + [sym_reset_statement] = ACTIONS(8350), + [aux_sym_raise_event_statement_token1] = ACTIONS(8350), + [sym_stop_statement] = ACTIONS(8350), + [sym_beep_statement] = ACTIONS(8350), + [aux_sym_unload_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token2] = ACTIONS(8350), + [aux_sym_def_type_statement_token3] = ACTIONS(8350), + [aux_sym_def_type_statement_token4] = ACTIONS(8350), + [aux_sym_def_type_statement_token5] = ACTIONS(8350), + [aux_sym_def_type_statement_token6] = ACTIONS(8350), + [aux_sym_def_type_statement_token7] = ACTIONS(8350), + [aux_sym_def_type_statement_token8] = ACTIONS(8350), + [aux_sym_def_type_statement_token9] = ACTIONS(8350), + [aux_sym_def_type_statement_token10] = ACTIONS(8350), + [aux_sym_def_type_statement_token11] = ACTIONS(8350), + [aux_sym_def_type_statement_token12] = ACTIONS(8350), + [aux_sym_def_type_statement_token13] = ACTIONS(8350), + [aux_sym_def_type_statement_token14] = ACTIONS(8350), + [aux_sym_call_statement_token1] = ACTIONS(8350), + [sym__ambiguous_call_statement] = ACTIONS(8350), + [aux_sym_addressof_expression_token1] = ACTIONS(8350), + [aux_sym_type_of_expression_token1] = ACTIONS(8350), + [aux_sym_unary_expression_token1] = ACTIONS(8350), + [sym_string_literal] = ACTIONS(8352), + [sym_number_literal] = ACTIONS(8352), + [aux_sym_boolean_literal_token1] = ACTIONS(8350), + [aux_sym_boolean_literal_token2] = ACTIONS(8350), + [sym_nothing_literal] = ACTIONS(8350), + [sym_null_literal] = ACTIONS(8350), + [sym_empty_literal] = ACTIONS(8350), + [sym_date_literal] = ACTIONS(8352), + [anon_sym_POUND] = ACTIONS(8350), + }, + [STATE(5095)] = { + [aux_sym_def_type_statement_repeat1] = STATE(5095), + [sym_identifier] = ACTIONS(8357), + [sym_newline] = ACTIONS(8359), + [anon_sym_COLON] = ACTIONS(8359), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8357), + [aux_sym_frm_property_statement_token1] = ACTIONS(8357), + [anon_sym_DOT] = ACTIONS(8357), + [anon_sym_BANG] = ACTIONS(8359), + [aux_sym__attribute_identifier_token1] = ACTIONS(8357), + [aux_sym_option_statement_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8357), + [aux_sym_preprocessor_const_token1] = ACTIONS(8357), + [sym_static_modifier] = ACTIONS(8357), + [sym__dim_keyword] = ACTIONS(8357), + [sym__redim_keyword] = ACTIONS(8357), + [aux_sym_get_accessor_token1] = ACTIONS(8357), + [aux_sym_set_accessor_token1] = ACTIONS(8357), + [anon_sym_COMMA] = ACTIONS(10420), + [aux_sym_const_declaration_token1] = ACTIONS(8357), + [anon_sym_LPAREN] = ACTIONS(8359), + [aux_sym_as_type_clause_token2] = ACTIONS(8357), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8357), + [aux_sym_visibility_token1] = ACTIONS(8357), + [aux_sym_visibility_token2] = ACTIONS(8357), + [aux_sym_elseif_fragment_token1] = ACTIONS(8357), + [aux_sym_else_fragment_token1] = ACTIONS(8357), + [aux_sym_select_statement_token1] = ACTIONS(8357), + [aux_sym__for_header_token1] = ACTIONS(8357), + [aux_sym_do_statement_token1] = ACTIONS(8357), + [aux_sym_do_condition_token1] = ACTIONS(8357), + [aux_sym_while_statement_token1] = ACTIONS(8357), + [aux_sym_with_statement_token1] = ACTIONS(8357), + [aux_sym_exit_statement_token1] = ACTIONS(8357), + [sym_end_statement] = ACTIONS(8359), + [aux_sym_on_goto_statement_token1] = ACTIONS(8357), + [aux_sym_on_goto_statement_token2] = ACTIONS(8357), + [aux_sym_on_error_statement_token2] = ACTIONS(8357), + [sym__ambiguous_redim_statement] = ACTIONS(8359), + [aux_sym_erase_statement_token1] = ACTIONS(8357), + [aux_sym_open_statement_token1] = ACTIONS(8357), + [aux_sym_file_mode_token2] = ACTIONS(8357), + [aux_sym_file_access_token2] = ACTIONS(8357), + [aux_sym_file_lock_token2] = ACTIONS(8357), + [aux_sym_print_statement_token1] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_QMARK] = ACTIONS(8359), + [aux_sym_close_statement_token1] = ACTIONS(8357), + [aux_sym_put_statement_token1] = ACTIONS(8357), + [aux_sym_unlock_statement_token1] = ACTIONS(8357), + [aux_sym_seek_statement_token1] = ACTIONS(8357), + [sym_reset_statement] = ACTIONS(8357), + [aux_sym_raise_event_statement_token1] = ACTIONS(8357), + [sym_stop_statement] = ACTIONS(8357), + [sym_beep_statement] = ACTIONS(8357), + [aux_sym_unload_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token2] = ACTIONS(8357), + [aux_sym_def_type_statement_token3] = ACTIONS(8357), + [aux_sym_def_type_statement_token4] = ACTIONS(8357), + [aux_sym_def_type_statement_token5] = ACTIONS(8357), + [aux_sym_def_type_statement_token6] = ACTIONS(8357), + [aux_sym_def_type_statement_token7] = ACTIONS(8357), + [aux_sym_def_type_statement_token8] = ACTIONS(8357), + [aux_sym_def_type_statement_token9] = ACTIONS(8357), + [aux_sym_def_type_statement_token10] = ACTIONS(8357), + [aux_sym_def_type_statement_token11] = ACTIONS(8357), + [aux_sym_def_type_statement_token12] = ACTIONS(8357), + [aux_sym_def_type_statement_token13] = ACTIONS(8357), + [aux_sym_def_type_statement_token14] = ACTIONS(8357), + [aux_sym_call_statement_token1] = ACTIONS(8357), + [sym__ambiguous_call_statement] = ACTIONS(8357), + [aux_sym_addressof_expression_token1] = ACTIONS(8357), + [aux_sym_type_of_expression_token1] = ACTIONS(8357), + [aux_sym_unary_expression_token1] = ACTIONS(8357), + [sym_string_literal] = ACTIONS(8359), + [sym_number_literal] = ACTIONS(8359), + [aux_sym_boolean_literal_token1] = ACTIONS(8357), + [aux_sym_boolean_literal_token2] = ACTIONS(8357), + [sym_nothing_literal] = ACTIONS(8357), + [sym_null_literal] = ACTIONS(8357), + [sym_empty_literal] = ACTIONS(8357), + [sym_date_literal] = ACTIONS(8359), + [anon_sym_POUND] = ACTIONS(8357), + }, + [STATE(5096)] = { + [sym_do_condition] = STATE(6308), + [sym_identifier] = ACTIONS(8221), + [sym_newline] = ACTIONS(8223), + [anon_sym_COLON] = ACTIONS(8223), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8221), + [aux_sym_frm_property_statement_token1] = ACTIONS(8221), + [anon_sym_DOT] = ACTIONS(8221), + [anon_sym_BANG] = ACTIONS(8223), + [aux_sym__attribute_identifier_token1] = ACTIONS(8221), + [aux_sym_option_statement_token3] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8221), + [aux_sym_preprocessor_const_token1] = ACTIONS(8221), + [sym_static_modifier] = ACTIONS(8221), + [sym__dim_keyword] = ACTIONS(8221), + [sym__redim_keyword] = ACTIONS(8221), + [aux_sym_get_accessor_token1] = ACTIONS(8221), + [aux_sym_set_accessor_token1] = ACTIONS(8221), + [aux_sym_const_declaration_token1] = ACTIONS(8221), + [anon_sym_LPAREN] = ACTIONS(8223), + [aux_sym_as_type_clause_token2] = ACTIONS(8221), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8221), + [aux_sym_visibility_token1] = ACTIONS(8221), + [aux_sym_visibility_token2] = ACTIONS(8221), + [aux_sym_elseif_fragment_token1] = ACTIONS(8221), + [aux_sym_else_fragment_token1] = ACTIONS(8221), + [aux_sym_select_statement_token1] = ACTIONS(8221), + [aux_sym__for_header_token1] = ACTIONS(8221), + [aux_sym_do_statement_token1] = ACTIONS(8221), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8221), + [aux_sym_exit_statement_token1] = ACTIONS(8221), + [sym_end_statement] = ACTIONS(8223), + [aux_sym_on_goto_statement_token1] = ACTIONS(8221), + [aux_sym_on_goto_statement_token2] = ACTIONS(8221), + [aux_sym_on_error_statement_token2] = ACTIONS(8221), + [sym__ambiguous_redim_statement] = ACTIONS(8223), + [aux_sym_erase_statement_token1] = ACTIONS(8221), + [aux_sym_open_statement_token1] = ACTIONS(8221), + [aux_sym_file_mode_token2] = ACTIONS(8221), + [aux_sym_file_access_token2] = ACTIONS(8221), + [aux_sym_file_lock_token2] = ACTIONS(8221), + [aux_sym_print_statement_token1] = ACTIONS(8221), + [anon_sym_PLUS] = ACTIONS(8223), + [anon_sym_DASH] = ACTIONS(8221), + [anon_sym_QMARK] = ACTIONS(8223), + [aux_sym_close_statement_token1] = ACTIONS(8221), + [aux_sym_put_statement_token1] = ACTIONS(8221), + [aux_sym_unlock_statement_token1] = ACTIONS(8221), + [aux_sym_seek_statement_token1] = ACTIONS(8221), + [sym_reset_statement] = ACTIONS(8221), + [aux_sym_raise_event_statement_token1] = ACTIONS(8221), + [sym_stop_statement] = ACTIONS(8221), + [sym_beep_statement] = ACTIONS(8221), + [aux_sym_unload_statement_token1] = ACTIONS(8221), + [aux_sym_def_type_statement_token1] = ACTIONS(8221), + [aux_sym_def_type_statement_token2] = ACTIONS(8221), + [aux_sym_def_type_statement_token3] = ACTIONS(8221), + [aux_sym_def_type_statement_token4] = ACTIONS(8221), + [aux_sym_def_type_statement_token5] = ACTIONS(8221), + [aux_sym_def_type_statement_token6] = ACTIONS(8221), + [aux_sym_def_type_statement_token7] = ACTIONS(8221), + [aux_sym_def_type_statement_token8] = ACTIONS(8221), + [aux_sym_def_type_statement_token9] = ACTIONS(8221), + [aux_sym_def_type_statement_token10] = ACTIONS(8221), + [aux_sym_def_type_statement_token11] = ACTIONS(8221), + [aux_sym_def_type_statement_token12] = ACTIONS(8221), + [aux_sym_def_type_statement_token13] = ACTIONS(8221), + [aux_sym_def_type_statement_token14] = ACTIONS(8221), + [aux_sym_call_statement_token1] = ACTIONS(8221), + [sym__ambiguous_call_statement] = ACTIONS(8221), + [aux_sym_addressof_expression_token1] = ACTIONS(8221), + [aux_sym_type_of_expression_token1] = ACTIONS(8221), + [aux_sym_unary_expression_token1] = ACTIONS(8221), + [sym_string_literal] = ACTIONS(8223), + [sym_number_literal] = ACTIONS(8223), + [aux_sym_boolean_literal_token1] = ACTIONS(8221), + [aux_sym_boolean_literal_token2] = ACTIONS(8221), + [sym_nothing_literal] = ACTIONS(8221), + [sym_null_literal] = ACTIONS(8221), + [sym_empty_literal] = ACTIONS(8221), + [sym_date_literal] = ACTIONS(8223), + [anon_sym_POUND] = ACTIONS(8221), + }, + [STATE(5097)] = { + [sym_argument_list] = STATE(6083), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7836), + [anon_sym_BANG] = ACTIONS(4034), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10423), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_while_statement_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(5098)] = { + [sym_argument_list] = STATE(5868), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(10425), + [anon_sym_BANG] = ACTIONS(10427), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10429), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(5099)] = { + [aux_sym_redim_statement_repeat1] = STATE(5122), + [sym_identifier] = ACTIONS(8368), + [sym_newline] = ACTIONS(8370), + [anon_sym_COLON] = ACTIONS(8370), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8368), + [aux_sym_frm_property_statement_token1] = ACTIONS(8368), + [anon_sym_DOT] = ACTIONS(8368), + [anon_sym_BANG] = ACTIONS(8370), + [aux_sym__attribute_identifier_token1] = ACTIONS(8368), + [aux_sym_option_statement_token3] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8368), + [aux_sym_preprocessor_const_token1] = ACTIONS(8368), + [sym_static_modifier] = ACTIONS(8368), + [sym__dim_keyword] = ACTIONS(8368), + [sym__redim_keyword] = ACTIONS(8368), + [aux_sym_get_accessor_token1] = ACTIONS(8368), + [aux_sym_set_accessor_token1] = ACTIONS(8368), + [anon_sym_COMMA] = ACTIONS(10431), + [aux_sym_const_declaration_token1] = ACTIONS(8368), + [anon_sym_LPAREN] = ACTIONS(8370), + [aux_sym_as_type_clause_token2] = ACTIONS(8368), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8368), + [aux_sym_visibility_token1] = ACTIONS(8368), + [aux_sym_visibility_token2] = ACTIONS(8368), + [aux_sym_elseif_fragment_token1] = ACTIONS(8368), + [aux_sym_else_fragment_token1] = ACTIONS(8368), + [aux_sym_select_statement_token1] = ACTIONS(8368), + [aux_sym__for_header_token1] = ACTIONS(8368), + [aux_sym_do_statement_token1] = ACTIONS(8368), + [aux_sym_do_condition_token1] = ACTIONS(8368), + [aux_sym_while_statement_token1] = ACTIONS(8368), + [aux_sym_with_statement_token1] = ACTIONS(8368), + [aux_sym_exit_statement_token1] = ACTIONS(8368), + [sym_end_statement] = ACTIONS(8370), + [aux_sym_on_goto_statement_token1] = ACTIONS(8368), + [aux_sym_on_goto_statement_token2] = ACTIONS(8368), + [aux_sym_on_error_statement_token2] = ACTIONS(8368), + [sym__ambiguous_redim_statement] = ACTIONS(8370), + [aux_sym_erase_statement_token1] = ACTIONS(8368), + [aux_sym_open_statement_token1] = ACTIONS(8368), + [aux_sym_file_mode_token2] = ACTIONS(8368), + [aux_sym_file_access_token2] = ACTIONS(8368), + [aux_sym_file_lock_token2] = ACTIONS(8368), + [aux_sym_print_statement_token1] = ACTIONS(8368), + [anon_sym_PLUS] = ACTIONS(8370), + [anon_sym_DASH] = ACTIONS(8368), + [anon_sym_QMARK] = ACTIONS(8370), + [aux_sym_close_statement_token1] = ACTIONS(8368), + [aux_sym_put_statement_token1] = ACTIONS(8368), + [aux_sym_unlock_statement_token1] = ACTIONS(8368), + [aux_sym_seek_statement_token1] = ACTIONS(8368), + [sym_reset_statement] = ACTIONS(8368), + [aux_sym_raise_event_statement_token1] = ACTIONS(8368), + [sym_stop_statement] = ACTIONS(8368), + [sym_beep_statement] = ACTIONS(8368), + [aux_sym_unload_statement_token1] = ACTIONS(8368), + [aux_sym_def_type_statement_token1] = ACTIONS(8368), + [aux_sym_def_type_statement_token2] = ACTIONS(8368), + [aux_sym_def_type_statement_token3] = ACTIONS(8368), + [aux_sym_def_type_statement_token4] = ACTIONS(8368), + [aux_sym_def_type_statement_token5] = ACTIONS(8368), + [aux_sym_def_type_statement_token6] = ACTIONS(8368), + [aux_sym_def_type_statement_token7] = ACTIONS(8368), + [aux_sym_def_type_statement_token8] = ACTIONS(8368), + [aux_sym_def_type_statement_token9] = ACTIONS(8368), + [aux_sym_def_type_statement_token10] = ACTIONS(8368), + [aux_sym_def_type_statement_token11] = ACTIONS(8368), + [aux_sym_def_type_statement_token12] = ACTIONS(8368), + [aux_sym_def_type_statement_token13] = ACTIONS(8368), + [aux_sym_def_type_statement_token14] = ACTIONS(8368), + [aux_sym_call_statement_token1] = ACTIONS(8368), + [sym__ambiguous_call_statement] = ACTIONS(8368), + [aux_sym_addressof_expression_token1] = ACTIONS(8368), + [aux_sym_type_of_expression_token1] = ACTIONS(8368), + [aux_sym_unary_expression_token1] = ACTIONS(8368), + [sym_string_literal] = ACTIONS(8370), + [sym_number_literal] = ACTIONS(8370), + [aux_sym_boolean_literal_token1] = ACTIONS(8368), + [aux_sym_boolean_literal_token2] = ACTIONS(8368), + [sym_nothing_literal] = ACTIONS(8368), + [sym_null_literal] = ACTIONS(8368), + [sym_empty_literal] = ACTIONS(8368), + [sym_date_literal] = ACTIONS(8370), + [anon_sym_POUND] = ACTIONS(8368), + }, + [STATE(5100)] = { + [aux_sym_input_statement_repeat1] = STATE(5132), + [sym_identifier] = ACTIONS(8237), + [sym_newline] = ACTIONS(8239), + [anon_sym_COLON] = ACTIONS(8239), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8237), + [aux_sym_frm_property_statement_token1] = ACTIONS(8237), + [anon_sym_DOT] = ACTIONS(8237), + [anon_sym_BANG] = ACTIONS(8239), + [aux_sym__attribute_identifier_token1] = ACTIONS(8237), + [aux_sym_option_statement_token3] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8237), + [aux_sym_preprocessor_const_token1] = ACTIONS(8237), + [sym_static_modifier] = ACTIONS(8237), + [sym__dim_keyword] = ACTIONS(8237), + [sym__redim_keyword] = ACTIONS(8237), + [aux_sym_get_accessor_token1] = ACTIONS(8237), + [aux_sym_set_accessor_token1] = ACTIONS(8237), + [anon_sym_COMMA] = ACTIONS(10401), + [aux_sym_const_declaration_token1] = ACTIONS(8237), + [anon_sym_LPAREN] = ACTIONS(8239), + [aux_sym_as_type_clause_token2] = ACTIONS(8237), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8237), + [aux_sym_visibility_token1] = ACTIONS(8237), + [aux_sym_visibility_token2] = ACTIONS(8237), + [aux_sym_elseif_fragment_token1] = ACTIONS(8237), + [aux_sym_else_fragment_token1] = ACTIONS(8237), + [aux_sym_select_statement_token1] = ACTIONS(8237), + [aux_sym__for_header_token1] = ACTIONS(8237), + [aux_sym_do_statement_token1] = ACTIONS(8237), + [aux_sym_do_condition_token1] = ACTIONS(8237), + [aux_sym_with_statement_token1] = ACTIONS(8237), + [aux_sym_exit_statement_token1] = ACTIONS(8237), + [sym_end_statement] = ACTIONS(8239), + [aux_sym_on_goto_statement_token1] = ACTIONS(8237), + [aux_sym_on_goto_statement_token2] = ACTIONS(8237), + [aux_sym_on_error_statement_token2] = ACTIONS(8237), + [sym__ambiguous_redim_statement] = ACTIONS(8239), + [aux_sym_erase_statement_token1] = ACTIONS(8237), + [aux_sym_open_statement_token1] = ACTIONS(8237), + [aux_sym_file_mode_token2] = ACTIONS(8237), + [aux_sym_file_access_token2] = ACTIONS(8237), + [aux_sym_file_lock_token2] = ACTIONS(8237), + [aux_sym_print_statement_token1] = ACTIONS(8237), + [anon_sym_PLUS] = ACTIONS(8239), + [anon_sym_DASH] = ACTIONS(8237), + [anon_sym_QMARK] = ACTIONS(8239), + [aux_sym_close_statement_token1] = ACTIONS(8237), + [aux_sym_put_statement_token1] = ACTIONS(8237), + [aux_sym_unlock_statement_token1] = ACTIONS(8237), + [aux_sym_seek_statement_token1] = ACTIONS(8237), + [sym_reset_statement] = ACTIONS(8237), + [aux_sym_raise_event_statement_token1] = ACTIONS(8237), + [sym_stop_statement] = ACTIONS(8237), + [sym_beep_statement] = ACTIONS(8237), + [aux_sym_unload_statement_token1] = ACTIONS(8237), + [aux_sym_def_type_statement_token1] = ACTIONS(8237), + [aux_sym_def_type_statement_token2] = ACTIONS(8237), + [aux_sym_def_type_statement_token3] = ACTIONS(8237), + [aux_sym_def_type_statement_token4] = ACTIONS(8237), + [aux_sym_def_type_statement_token5] = ACTIONS(8237), + [aux_sym_def_type_statement_token6] = ACTIONS(8237), + [aux_sym_def_type_statement_token7] = ACTIONS(8237), + [aux_sym_def_type_statement_token8] = ACTIONS(8237), + [aux_sym_def_type_statement_token9] = ACTIONS(8237), + [aux_sym_def_type_statement_token10] = ACTIONS(8237), + [aux_sym_def_type_statement_token11] = ACTIONS(8237), + [aux_sym_def_type_statement_token12] = ACTIONS(8237), + [aux_sym_def_type_statement_token13] = ACTIONS(8237), + [aux_sym_def_type_statement_token14] = ACTIONS(8237), + [aux_sym_call_statement_token1] = ACTIONS(8237), + [sym__ambiguous_call_statement] = ACTIONS(8237), + [aux_sym_addressof_expression_token1] = ACTIONS(8237), + [aux_sym_type_of_expression_token1] = ACTIONS(8237), + [aux_sym_unary_expression_token1] = ACTIONS(8237), + [sym_string_literal] = ACTIONS(8239), + [sym_number_literal] = ACTIONS(8239), + [aux_sym_boolean_literal_token1] = ACTIONS(8237), + [aux_sym_boolean_literal_token2] = ACTIONS(8237), + [sym_nothing_literal] = ACTIONS(8237), + [sym_null_literal] = ACTIONS(8237), + [sym_empty_literal] = ACTIONS(8237), + [sym_date_literal] = ACTIONS(8239), + [anon_sym_POUND] = ACTIONS(8237), + }, + [STATE(5101)] = { + [aux_sym_erase_statement_repeat1] = STATE(5126), + [sym_identifier] = ACTIONS(8397), + [sym_newline] = ACTIONS(8399), + [anon_sym_COLON] = ACTIONS(8399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8397), + [aux_sym_frm_property_statement_token1] = ACTIONS(8397), + [anon_sym_DOT] = ACTIONS(8397), + [anon_sym_BANG] = ACTIONS(8399), + [aux_sym__attribute_identifier_token1] = ACTIONS(8397), + [aux_sym_option_statement_token3] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8397), + [aux_sym_preprocessor_const_token1] = ACTIONS(8397), + [sym_static_modifier] = ACTIONS(8397), + [sym__dim_keyword] = ACTIONS(8397), + [sym__redim_keyword] = ACTIONS(8397), + [aux_sym_get_accessor_token1] = ACTIONS(8397), + [aux_sym_set_accessor_token1] = ACTIONS(8397), + [anon_sym_COMMA] = ACTIONS(10433), + [aux_sym_const_declaration_token1] = ACTIONS(8397), + [anon_sym_LPAREN] = ACTIONS(8399), + [aux_sym_as_type_clause_token2] = ACTIONS(8397), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8397), + [aux_sym_visibility_token1] = ACTIONS(8397), + [aux_sym_visibility_token2] = ACTIONS(8397), + [aux_sym_elseif_fragment_token1] = ACTIONS(8397), + [aux_sym_else_fragment_token1] = ACTIONS(8397), + [aux_sym_select_statement_token1] = ACTIONS(8397), + [aux_sym__for_header_token1] = ACTIONS(8397), + [aux_sym_do_statement_token1] = ACTIONS(8397), + [aux_sym_do_condition_token1] = ACTIONS(8397), + [aux_sym_while_statement_token1] = ACTIONS(8397), + [aux_sym_with_statement_token1] = ACTIONS(8397), + [aux_sym_exit_statement_token1] = ACTIONS(8397), + [sym_end_statement] = ACTIONS(8399), + [aux_sym_on_goto_statement_token1] = ACTIONS(8397), + [aux_sym_on_goto_statement_token2] = ACTIONS(8397), + [aux_sym_on_error_statement_token2] = ACTIONS(8397), + [sym__ambiguous_redim_statement] = ACTIONS(8399), + [aux_sym_erase_statement_token1] = ACTIONS(8397), + [aux_sym_open_statement_token1] = ACTIONS(8397), + [aux_sym_file_mode_token2] = ACTIONS(8397), + [aux_sym_file_access_token2] = ACTIONS(8397), + [aux_sym_file_lock_token2] = ACTIONS(8397), + [aux_sym_print_statement_token1] = ACTIONS(8397), + [anon_sym_PLUS] = ACTIONS(8399), + [anon_sym_DASH] = ACTIONS(8397), + [anon_sym_QMARK] = ACTIONS(8399), + [aux_sym_close_statement_token1] = ACTIONS(8397), + [aux_sym_put_statement_token1] = ACTIONS(8397), + [aux_sym_unlock_statement_token1] = ACTIONS(8397), + [aux_sym_seek_statement_token1] = ACTIONS(8397), + [sym_reset_statement] = ACTIONS(8397), + [aux_sym_raise_event_statement_token1] = ACTIONS(8397), + [sym_stop_statement] = ACTIONS(8397), + [sym_beep_statement] = ACTIONS(8397), + [aux_sym_unload_statement_token1] = ACTIONS(8397), + [aux_sym_def_type_statement_token1] = ACTIONS(8397), + [aux_sym_def_type_statement_token2] = ACTIONS(8397), + [aux_sym_def_type_statement_token3] = ACTIONS(8397), + [aux_sym_def_type_statement_token4] = ACTIONS(8397), + [aux_sym_def_type_statement_token5] = ACTIONS(8397), + [aux_sym_def_type_statement_token6] = ACTIONS(8397), + [aux_sym_def_type_statement_token7] = ACTIONS(8397), + [aux_sym_def_type_statement_token8] = ACTIONS(8397), + [aux_sym_def_type_statement_token9] = ACTIONS(8397), + [aux_sym_def_type_statement_token10] = ACTIONS(8397), + [aux_sym_def_type_statement_token11] = ACTIONS(8397), + [aux_sym_def_type_statement_token12] = ACTIONS(8397), + [aux_sym_def_type_statement_token13] = ACTIONS(8397), + [aux_sym_def_type_statement_token14] = ACTIONS(8397), + [aux_sym_call_statement_token1] = ACTIONS(8397), + [sym__ambiguous_call_statement] = ACTIONS(8397), + [aux_sym_addressof_expression_token1] = ACTIONS(8397), + [aux_sym_type_of_expression_token1] = ACTIONS(8397), + [aux_sym_unary_expression_token1] = ACTIONS(8397), + [sym_string_literal] = ACTIONS(8399), + [sym_number_literal] = ACTIONS(8399), + [aux_sym_boolean_literal_token1] = ACTIONS(8397), + [aux_sym_boolean_literal_token2] = ACTIONS(8397), + [sym_nothing_literal] = ACTIONS(8397), + [sym_null_literal] = ACTIONS(8397), + [sym_empty_literal] = ACTIONS(8397), + [sym_date_literal] = ACTIONS(8399), + [anon_sym_POUND] = ACTIONS(8397), + }, + [STATE(5102)] = { + [sym_identifier] = ACTIONS(8587), + [sym_newline] = ACTIONS(8589), + [anon_sym_COLON] = ACTIONS(8589), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8587), + [aux_sym_frm_property_statement_token1] = ACTIONS(8587), + [anon_sym_DOT] = ACTIONS(8587), + [anon_sym_BANG] = ACTIONS(8589), + [aux_sym__attribute_identifier_token1] = ACTIONS(8587), + [aux_sym_option_statement_token3] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8587), + [aux_sym_preprocessor_const_token1] = ACTIONS(8587), + [sym_static_modifier] = ACTIONS(8587), + [sym__dim_keyword] = ACTIONS(8587), + [sym__redim_keyword] = ACTIONS(8587), + [aux_sym_get_accessor_token1] = ACTIONS(8587), + [aux_sym_set_accessor_token1] = ACTIONS(8587), + [anon_sym_COMMA] = ACTIONS(8589), + [aux_sym_const_declaration_token1] = ACTIONS(8587), + [anon_sym_LPAREN] = ACTIONS(8589), + [aux_sym_as_type_clause_token2] = ACTIONS(8587), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8587), + [aux_sym_visibility_token1] = ACTIONS(8587), + [aux_sym_visibility_token2] = ACTIONS(8587), + [aux_sym_elseif_fragment_token1] = ACTIONS(8587), + [aux_sym_else_fragment_token1] = ACTIONS(8587), + [aux_sym_select_statement_token1] = ACTIONS(8587), + [aux_sym__for_header_token1] = ACTIONS(8587), + [aux_sym_do_statement_token1] = ACTIONS(8587), + [aux_sym_do_condition_token1] = ACTIONS(8587), + [aux_sym_while_statement_token1] = ACTIONS(8587), + [aux_sym_with_statement_token1] = ACTIONS(8587), + [aux_sym_exit_statement_token1] = ACTIONS(8587), + [sym_end_statement] = ACTIONS(8589), + [aux_sym_on_goto_statement_token1] = ACTIONS(8587), + [aux_sym_on_goto_statement_token2] = ACTIONS(8587), + [aux_sym_on_error_statement_token2] = ACTIONS(8587), + [sym__ambiguous_redim_statement] = ACTIONS(8589), + [aux_sym_erase_statement_token1] = ACTIONS(8587), + [aux_sym_open_statement_token1] = ACTIONS(8587), + [aux_sym_file_mode_token2] = ACTIONS(8587), + [aux_sym_file_access_token2] = ACTIONS(8587), + [aux_sym_file_lock_token2] = ACTIONS(8587), + [aux_sym_print_statement_token1] = ACTIONS(8587), + [anon_sym_PLUS] = ACTIONS(8589), + [anon_sym_DASH] = ACTIONS(8587), + [anon_sym_SEMI] = ACTIONS(8589), + [anon_sym_QMARK] = ACTIONS(8589), + [aux_sym_close_statement_token1] = ACTIONS(8587), + [aux_sym_put_statement_token1] = ACTIONS(8587), + [aux_sym_unlock_statement_token1] = ACTIONS(8587), + [aux_sym_seek_statement_token1] = ACTIONS(8587), + [sym_reset_statement] = ACTIONS(8587), + [aux_sym_raise_event_statement_token1] = ACTIONS(8587), + [sym_stop_statement] = ACTIONS(8587), + [sym_beep_statement] = ACTIONS(8587), + [aux_sym_unload_statement_token1] = ACTIONS(8587), + [aux_sym_def_type_statement_token1] = ACTIONS(8587), + [aux_sym_def_type_statement_token2] = ACTIONS(8587), + [aux_sym_def_type_statement_token3] = ACTIONS(8587), + [aux_sym_def_type_statement_token4] = ACTIONS(8587), + [aux_sym_def_type_statement_token5] = ACTIONS(8587), + [aux_sym_def_type_statement_token6] = ACTIONS(8587), + [aux_sym_def_type_statement_token7] = ACTIONS(8587), + [aux_sym_def_type_statement_token8] = ACTIONS(8587), + [aux_sym_def_type_statement_token9] = ACTIONS(8587), + [aux_sym_def_type_statement_token10] = ACTIONS(8587), + [aux_sym_def_type_statement_token11] = ACTIONS(8587), + [aux_sym_def_type_statement_token12] = ACTIONS(8587), + [aux_sym_def_type_statement_token13] = ACTIONS(8587), + [aux_sym_def_type_statement_token14] = ACTIONS(8587), + [aux_sym_call_statement_token1] = ACTIONS(8587), + [sym__ambiguous_call_statement] = ACTIONS(8587), + [aux_sym_addressof_expression_token1] = ACTIONS(8587), + [aux_sym_type_of_expression_token1] = ACTIONS(8587), + [aux_sym_unary_expression_token1] = ACTIONS(8587), + [sym_string_literal] = ACTIONS(8589), + [sym_number_literal] = ACTIONS(8589), + [aux_sym_boolean_literal_token1] = ACTIONS(8587), + [aux_sym_boolean_literal_token2] = ACTIONS(8587), + [sym_nothing_literal] = ACTIONS(8587), + [sym_null_literal] = ACTIONS(8587), + [sym_empty_literal] = ACTIONS(8587), + [sym_date_literal] = ACTIONS(8589), + [anon_sym_POUND] = ACTIONS(8587), + }, + [STATE(5103)] = { + [sym_do_condition] = STATE(6688), + [sym_identifier] = ACTIONS(8221), + [sym_newline] = ACTIONS(8223), + [anon_sym_COLON] = ACTIONS(8223), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8221), + [aux_sym_frm_property_statement_token1] = ACTIONS(8221), + [anon_sym_DOT] = ACTIONS(8221), + [anon_sym_BANG] = ACTIONS(8223), + [aux_sym__attribute_identifier_token1] = ACTIONS(8221), + [aux_sym_option_statement_token3] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8221), + [aux_sym_preprocessor_const_token1] = ACTIONS(8221), + [sym_static_modifier] = ACTIONS(8221), + [sym__dim_keyword] = ACTIONS(8221), + [sym__redim_keyword] = ACTIONS(8221), + [aux_sym_get_accessor_token1] = ACTIONS(8221), + [aux_sym_set_accessor_token1] = ACTIONS(8221), + [aux_sym_const_declaration_token1] = ACTIONS(8221), + [anon_sym_LPAREN] = ACTIONS(8223), + [aux_sym_as_type_clause_token2] = ACTIONS(8221), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8221), + [aux_sym_visibility_token1] = ACTIONS(8221), + [aux_sym_visibility_token2] = ACTIONS(8221), + [aux_sym_elseif_fragment_token1] = ACTIONS(8221), + [aux_sym_else_fragment_token1] = ACTIONS(8221), + [aux_sym_select_statement_token1] = ACTIONS(8221), + [aux_sym_select_statement_token2] = ACTIONS(8221), + [aux_sym__for_header_token1] = ACTIONS(8221), + [aux_sym_do_statement_token1] = ACTIONS(8221), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8221), + [aux_sym_exit_statement_token1] = ACTIONS(8221), + [sym_end_statement] = ACTIONS(8223), + [aux_sym_on_goto_statement_token1] = ACTIONS(8221), + [aux_sym_on_goto_statement_token2] = ACTIONS(8221), + [aux_sym_on_error_statement_token2] = ACTIONS(8221), + [sym__ambiguous_redim_statement] = ACTIONS(8223), + [aux_sym_erase_statement_token1] = ACTIONS(8221), + [aux_sym_open_statement_token1] = ACTIONS(8221), + [aux_sym_file_mode_token2] = ACTIONS(8221), + [aux_sym_file_access_token2] = ACTIONS(8221), + [aux_sym_file_lock_token2] = ACTIONS(8221), + [aux_sym_print_statement_token1] = ACTIONS(8221), + [anon_sym_PLUS] = ACTIONS(8223), + [anon_sym_DASH] = ACTIONS(8221), + [anon_sym_QMARK] = ACTIONS(8223), + [aux_sym_close_statement_token1] = ACTIONS(8221), + [aux_sym_put_statement_token1] = ACTIONS(8221), + [aux_sym_unlock_statement_token1] = ACTIONS(8221), + [aux_sym_seek_statement_token1] = ACTIONS(8221), + [sym_reset_statement] = ACTIONS(8221), + [aux_sym_raise_event_statement_token1] = ACTIONS(8221), + [sym_stop_statement] = ACTIONS(8221), + [sym_beep_statement] = ACTIONS(8221), + [aux_sym_unload_statement_token1] = ACTIONS(8221), + [aux_sym_def_type_statement_token1] = ACTIONS(8221), + [aux_sym_def_type_statement_token2] = ACTIONS(8221), + [aux_sym_def_type_statement_token3] = ACTIONS(8221), + [aux_sym_def_type_statement_token4] = ACTIONS(8221), + [aux_sym_def_type_statement_token5] = ACTIONS(8221), + [aux_sym_def_type_statement_token6] = ACTIONS(8221), + [aux_sym_def_type_statement_token7] = ACTIONS(8221), + [aux_sym_def_type_statement_token8] = ACTIONS(8221), + [aux_sym_def_type_statement_token9] = ACTIONS(8221), + [aux_sym_def_type_statement_token10] = ACTIONS(8221), + [aux_sym_def_type_statement_token11] = ACTIONS(8221), + [aux_sym_def_type_statement_token12] = ACTIONS(8221), + [aux_sym_def_type_statement_token13] = ACTIONS(8221), + [aux_sym_def_type_statement_token14] = ACTIONS(8221), + [aux_sym_call_statement_token1] = ACTIONS(8221), + [sym__ambiguous_call_statement] = ACTIONS(8221), + [aux_sym_addressof_expression_token1] = ACTIONS(8221), + [aux_sym_type_of_expression_token1] = ACTIONS(8221), + [aux_sym_unary_expression_token1] = ACTIONS(8221), + [sym_string_literal] = ACTIONS(8223), + [sym_number_literal] = ACTIONS(8223), + [aux_sym_boolean_literal_token1] = ACTIONS(8221), + [aux_sym_boolean_literal_token2] = ACTIONS(8221), + [sym_nothing_literal] = ACTIONS(8221), + [sym_null_literal] = ACTIONS(8221), + [sym_empty_literal] = ACTIONS(8221), + [sym_date_literal] = ACTIONS(8223), + [anon_sym_POUND] = ACTIONS(8221), + }, + [STATE(5104)] = { + [aux_sym_close_statement_repeat1] = STATE(5130), + [sym_identifier] = ACTIONS(8265), + [sym_newline] = ACTIONS(8267), + [anon_sym_COLON] = ACTIONS(8267), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8265), + [aux_sym_frm_property_statement_token1] = ACTIONS(8265), + [anon_sym_DOT] = ACTIONS(8265), + [anon_sym_BANG] = ACTIONS(8267), + [aux_sym__attribute_identifier_token1] = ACTIONS(8265), + [aux_sym_option_statement_token3] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8265), + [aux_sym_preprocessor_const_token1] = ACTIONS(8265), + [sym_static_modifier] = ACTIONS(8265), + [sym__dim_keyword] = ACTIONS(8265), + [sym__redim_keyword] = ACTIONS(8265), + [aux_sym_get_accessor_token1] = ACTIONS(8265), + [aux_sym_set_accessor_token1] = ACTIONS(8265), + [anon_sym_COMMA] = ACTIONS(10437), + [aux_sym_const_declaration_token1] = ACTIONS(8265), + [anon_sym_LPAREN] = ACTIONS(8267), + [aux_sym_as_type_clause_token2] = ACTIONS(8265), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8265), + [aux_sym_visibility_token1] = ACTIONS(8265), + [aux_sym_visibility_token2] = ACTIONS(8265), + [aux_sym_elseif_fragment_token1] = ACTIONS(8265), + [aux_sym_else_fragment_token1] = ACTIONS(8265), + [aux_sym_select_statement_token1] = ACTIONS(8265), + [aux_sym__for_header_token1] = ACTIONS(8265), + [aux_sym_do_statement_token1] = ACTIONS(8265), + [aux_sym_do_condition_token1] = ACTIONS(8265), + [aux_sym_while_statement_token1] = ACTIONS(8265), + [aux_sym_with_statement_token1] = ACTIONS(8265), + [aux_sym_exit_statement_token1] = ACTIONS(8265), + [sym_end_statement] = ACTIONS(8267), + [aux_sym_on_goto_statement_token1] = ACTIONS(8265), + [aux_sym_on_goto_statement_token2] = ACTIONS(8265), + [aux_sym_on_error_statement_token2] = ACTIONS(8265), + [sym__ambiguous_redim_statement] = ACTIONS(8267), + [aux_sym_erase_statement_token1] = ACTIONS(8265), + [aux_sym_open_statement_token1] = ACTIONS(8265), + [aux_sym_file_mode_token2] = ACTIONS(8265), + [aux_sym_file_access_token2] = ACTIONS(8265), + [aux_sym_file_lock_token2] = ACTIONS(8265), + [aux_sym_print_statement_token1] = ACTIONS(8265), + [anon_sym_PLUS] = ACTIONS(8267), + [anon_sym_DASH] = ACTIONS(8265), + [anon_sym_QMARK] = ACTIONS(8267), + [aux_sym_close_statement_token1] = ACTIONS(8265), + [aux_sym_put_statement_token1] = ACTIONS(8265), + [aux_sym_unlock_statement_token1] = ACTIONS(8265), + [aux_sym_seek_statement_token1] = ACTIONS(8265), + [sym_reset_statement] = ACTIONS(8265), + [aux_sym_raise_event_statement_token1] = ACTIONS(8265), + [sym_stop_statement] = ACTIONS(8265), + [sym_beep_statement] = ACTIONS(8265), + [aux_sym_unload_statement_token1] = ACTIONS(8265), + [aux_sym_def_type_statement_token1] = ACTIONS(8265), + [aux_sym_def_type_statement_token2] = ACTIONS(8265), + [aux_sym_def_type_statement_token3] = ACTIONS(8265), + [aux_sym_def_type_statement_token4] = ACTIONS(8265), + [aux_sym_def_type_statement_token5] = ACTIONS(8265), + [aux_sym_def_type_statement_token6] = ACTIONS(8265), + [aux_sym_def_type_statement_token7] = ACTIONS(8265), + [aux_sym_def_type_statement_token8] = ACTIONS(8265), + [aux_sym_def_type_statement_token9] = ACTIONS(8265), + [aux_sym_def_type_statement_token10] = ACTIONS(8265), + [aux_sym_def_type_statement_token11] = ACTIONS(8265), + [aux_sym_def_type_statement_token12] = ACTIONS(8265), + [aux_sym_def_type_statement_token13] = ACTIONS(8265), + [aux_sym_def_type_statement_token14] = ACTIONS(8265), + [aux_sym_call_statement_token1] = ACTIONS(8265), + [sym__ambiguous_call_statement] = ACTIONS(8265), + [aux_sym_addressof_expression_token1] = ACTIONS(8265), + [aux_sym_type_of_expression_token1] = ACTIONS(8265), + [aux_sym_unary_expression_token1] = ACTIONS(8265), + [sym_string_literal] = ACTIONS(8267), + [sym_number_literal] = ACTIONS(8267), + [aux_sym_boolean_literal_token1] = ACTIONS(8265), + [aux_sym_boolean_literal_token2] = ACTIONS(8265), + [sym_nothing_literal] = ACTIONS(8265), + [sym_null_literal] = ACTIONS(8265), + [sym_empty_literal] = ACTIONS(8265), + [sym_date_literal] = ACTIONS(8267), + [anon_sym_POUND] = ACTIONS(8265), + }, + [STATE(5105)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5268), + [sym_identifier] = ACTIONS(8225), + [sym_newline] = ACTIONS(8227), + [anon_sym_COLON] = ACTIONS(8227), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8225), + [aux_sym_frm_property_statement_token1] = ACTIONS(8225), + [anon_sym_DOT] = ACTIONS(8225), + [anon_sym_BANG] = ACTIONS(8227), + [aux_sym__attribute_identifier_token1] = ACTIONS(8225), + [aux_sym_option_statement_token3] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8225), + [aux_sym_preprocessor_const_token1] = ACTIONS(8225), + [sym_static_modifier] = ACTIONS(8225), + [sym__dim_keyword] = ACTIONS(8225), + [sym__redim_keyword] = ACTIONS(8225), + [aux_sym_get_accessor_token1] = ACTIONS(8225), + [aux_sym_set_accessor_token1] = ACTIONS(8225), + [anon_sym_COMMA] = ACTIONS(10439), + [aux_sym_const_declaration_token1] = ACTIONS(8225), + [anon_sym_LPAREN] = ACTIONS(8227), + [aux_sym_as_type_clause_token2] = ACTIONS(8225), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8225), + [aux_sym_visibility_token1] = ACTIONS(8225), + [aux_sym_visibility_token2] = ACTIONS(8225), + [aux_sym_elseif_fragment_token1] = ACTIONS(8225), + [aux_sym_else_fragment_token1] = ACTIONS(8225), + [aux_sym_select_statement_token1] = ACTIONS(8225), + [aux_sym__for_header_token1] = ACTIONS(8225), + [aux_sym_do_statement_token1] = ACTIONS(8225), + [aux_sym_do_condition_token1] = ACTIONS(8225), + [aux_sym_with_statement_token1] = ACTIONS(8225), + [aux_sym_exit_statement_token1] = ACTIONS(8225), + [sym_end_statement] = ACTIONS(8227), + [aux_sym_on_goto_statement_token1] = ACTIONS(8225), + [aux_sym_on_goto_statement_token2] = ACTIONS(8225), + [aux_sym_on_error_statement_token2] = ACTIONS(8225), + [sym__ambiguous_redim_statement] = ACTIONS(8227), + [aux_sym_erase_statement_token1] = ACTIONS(8225), + [aux_sym_open_statement_token1] = ACTIONS(8225), + [aux_sym_file_mode_token2] = ACTIONS(8225), + [aux_sym_file_access_token2] = ACTIONS(8225), + [aux_sym_file_lock_token2] = ACTIONS(8225), + [aux_sym_print_statement_token1] = ACTIONS(8225), + [anon_sym_PLUS] = ACTIONS(8227), + [anon_sym_DASH] = ACTIONS(8225), + [anon_sym_QMARK] = ACTIONS(8227), + [aux_sym_close_statement_token1] = ACTIONS(8225), + [aux_sym_put_statement_token1] = ACTIONS(8225), + [aux_sym_unlock_statement_token1] = ACTIONS(8225), + [aux_sym_seek_statement_token1] = ACTIONS(8225), + [sym_reset_statement] = ACTIONS(8225), + [aux_sym_raise_event_statement_token1] = ACTIONS(8225), + [sym_stop_statement] = ACTIONS(8225), + [sym_beep_statement] = ACTIONS(8225), + [aux_sym_unload_statement_token1] = ACTIONS(8225), + [aux_sym_def_type_statement_token1] = ACTIONS(8225), + [aux_sym_def_type_statement_token2] = ACTIONS(8225), + [aux_sym_def_type_statement_token3] = ACTIONS(8225), + [aux_sym_def_type_statement_token4] = ACTIONS(8225), + [aux_sym_def_type_statement_token5] = ACTIONS(8225), + [aux_sym_def_type_statement_token6] = ACTIONS(8225), + [aux_sym_def_type_statement_token7] = ACTIONS(8225), + [aux_sym_def_type_statement_token8] = ACTIONS(8225), + [aux_sym_def_type_statement_token9] = ACTIONS(8225), + [aux_sym_def_type_statement_token10] = ACTIONS(8225), + [aux_sym_def_type_statement_token11] = ACTIONS(8225), + [aux_sym_def_type_statement_token12] = ACTIONS(8225), + [aux_sym_def_type_statement_token13] = ACTIONS(8225), + [aux_sym_def_type_statement_token14] = ACTIONS(8225), + [aux_sym_call_statement_token1] = ACTIONS(8225), + [sym__ambiguous_call_statement] = ACTIONS(8225), + [aux_sym_addressof_expression_token1] = ACTIONS(8225), + [aux_sym_type_of_expression_token1] = ACTIONS(8225), + [aux_sym_unary_expression_token1] = ACTIONS(8225), + [sym_string_literal] = ACTIONS(8227), + [sym_number_literal] = ACTIONS(8227), + [aux_sym_boolean_literal_token1] = ACTIONS(8225), + [aux_sym_boolean_literal_token2] = ACTIONS(8225), + [sym_nothing_literal] = ACTIONS(8225), + [sym_null_literal] = ACTIONS(8225), + [sym_empty_literal] = ACTIONS(8225), + [sym_date_literal] = ACTIONS(8227), + [anon_sym_POUND] = ACTIONS(8225), + }, + [STATE(5106)] = { + [sym_do_condition] = STATE(6334), + [sym_identifier] = ACTIONS(8271), + [sym_newline] = ACTIONS(8273), + [anon_sym_COLON] = ACTIONS(8273), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8271), + [aux_sym_frm_property_statement_token1] = ACTIONS(8271), + [anon_sym_DOT] = ACTIONS(8271), + [anon_sym_BANG] = ACTIONS(8273), + [aux_sym__attribute_identifier_token1] = ACTIONS(8271), + [aux_sym_option_statement_token3] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8271), + [aux_sym_preprocessor_const_token1] = ACTIONS(8271), + [sym_static_modifier] = ACTIONS(8271), + [sym__dim_keyword] = ACTIONS(8271), + [sym__redim_keyword] = ACTIONS(8271), + [aux_sym_get_accessor_token1] = ACTIONS(8271), + [aux_sym_set_accessor_token1] = ACTIONS(8271), + [aux_sym_const_declaration_token1] = ACTIONS(8271), + [anon_sym_LPAREN] = ACTIONS(8273), + [aux_sym_as_type_clause_token2] = ACTIONS(8271), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8271), + [aux_sym_visibility_token1] = ACTIONS(8271), + [aux_sym_visibility_token2] = ACTIONS(8271), + [aux_sym_elseif_fragment_token1] = ACTIONS(8271), + [aux_sym_else_fragment_token1] = ACTIONS(8271), + [aux_sym_select_statement_token1] = ACTIONS(8271), + [aux_sym__for_header_token1] = ACTIONS(8271), + [aux_sym_do_statement_token1] = ACTIONS(8271), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8271), + [aux_sym_exit_statement_token1] = ACTIONS(8271), + [sym_end_statement] = ACTIONS(8273), + [aux_sym_on_goto_statement_token1] = ACTIONS(8271), + [aux_sym_on_goto_statement_token2] = ACTIONS(8271), + [aux_sym_on_error_statement_token2] = ACTIONS(8271), + [sym__ambiguous_redim_statement] = ACTIONS(8273), + [aux_sym_erase_statement_token1] = ACTIONS(8271), + [aux_sym_open_statement_token1] = ACTIONS(8271), + [aux_sym_file_mode_token2] = ACTIONS(8271), + [aux_sym_file_access_token2] = ACTIONS(8271), + [aux_sym_file_lock_token2] = ACTIONS(8271), + [aux_sym_print_statement_token1] = ACTIONS(8271), + [anon_sym_PLUS] = ACTIONS(8273), + [anon_sym_DASH] = ACTIONS(8271), + [anon_sym_QMARK] = ACTIONS(8273), + [aux_sym_close_statement_token1] = ACTIONS(8271), + [aux_sym_put_statement_token1] = ACTIONS(8271), + [aux_sym_unlock_statement_token1] = ACTIONS(8271), + [aux_sym_seek_statement_token1] = ACTIONS(8271), + [sym_reset_statement] = ACTIONS(8271), + [aux_sym_raise_event_statement_token1] = ACTIONS(8271), + [sym_stop_statement] = ACTIONS(8271), + [sym_beep_statement] = ACTIONS(8271), + [aux_sym_unload_statement_token1] = ACTIONS(8271), + [aux_sym_def_type_statement_token1] = ACTIONS(8271), + [aux_sym_def_type_statement_token2] = ACTIONS(8271), + [aux_sym_def_type_statement_token3] = ACTIONS(8271), + [aux_sym_def_type_statement_token4] = ACTIONS(8271), + [aux_sym_def_type_statement_token5] = ACTIONS(8271), + [aux_sym_def_type_statement_token6] = ACTIONS(8271), + [aux_sym_def_type_statement_token7] = ACTIONS(8271), + [aux_sym_def_type_statement_token8] = ACTIONS(8271), + [aux_sym_def_type_statement_token9] = ACTIONS(8271), + [aux_sym_def_type_statement_token10] = ACTIONS(8271), + [aux_sym_def_type_statement_token11] = ACTIONS(8271), + [aux_sym_def_type_statement_token12] = ACTIONS(8271), + [aux_sym_def_type_statement_token13] = ACTIONS(8271), + [aux_sym_def_type_statement_token14] = ACTIONS(8271), + [aux_sym_call_statement_token1] = ACTIONS(8271), + [sym__ambiguous_call_statement] = ACTIONS(8271), + [aux_sym_addressof_expression_token1] = ACTIONS(8271), + [aux_sym_type_of_expression_token1] = ACTIONS(8271), + [aux_sym_unary_expression_token1] = ACTIONS(8271), + [sym_string_literal] = ACTIONS(8273), + [sym_number_literal] = ACTIONS(8273), + [aux_sym_boolean_literal_token1] = ACTIONS(8271), + [aux_sym_boolean_literal_token2] = ACTIONS(8271), + [sym_nothing_literal] = ACTIONS(8271), + [sym_null_literal] = ACTIONS(8271), + [sym_empty_literal] = ACTIONS(8271), + [sym_date_literal] = ACTIONS(8273), + [anon_sym_POUND] = ACTIONS(8271), + }, + [STATE(5107)] = { + [sym_do_condition] = STATE(6336), + [sym_identifier] = ACTIONS(8275), + [sym_newline] = ACTIONS(8277), + [anon_sym_COLON] = ACTIONS(8277), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8275), + [aux_sym_frm_property_statement_token1] = ACTIONS(8275), + [anon_sym_DOT] = ACTIONS(8275), + [anon_sym_BANG] = ACTIONS(8277), + [aux_sym__attribute_identifier_token1] = ACTIONS(8275), + [aux_sym_option_statement_token3] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8275), + [aux_sym_preprocessor_const_token1] = ACTIONS(8275), + [sym_static_modifier] = ACTIONS(8275), + [sym__dim_keyword] = ACTIONS(8275), + [sym__redim_keyword] = ACTIONS(8275), + [aux_sym_get_accessor_token1] = ACTIONS(8275), + [aux_sym_set_accessor_token1] = ACTIONS(8275), + [aux_sym_const_declaration_token1] = ACTIONS(8275), + [anon_sym_LPAREN] = ACTIONS(8277), + [aux_sym_as_type_clause_token2] = ACTIONS(8275), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8275), + [aux_sym_visibility_token1] = ACTIONS(8275), + [aux_sym_visibility_token2] = ACTIONS(8275), + [aux_sym_elseif_fragment_token1] = ACTIONS(8275), + [aux_sym_else_fragment_token1] = ACTIONS(8275), + [aux_sym_select_statement_token1] = ACTIONS(8275), + [aux_sym__for_header_token1] = ACTIONS(8275), + [aux_sym_do_statement_token1] = ACTIONS(8275), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8275), + [aux_sym_exit_statement_token1] = ACTIONS(8275), + [sym_end_statement] = ACTIONS(8277), + [aux_sym_on_goto_statement_token1] = ACTIONS(8275), + [aux_sym_on_goto_statement_token2] = ACTIONS(8275), + [aux_sym_on_error_statement_token2] = ACTIONS(8275), + [sym__ambiguous_redim_statement] = ACTIONS(8277), + [aux_sym_erase_statement_token1] = ACTIONS(8275), + [aux_sym_open_statement_token1] = ACTIONS(8275), + [aux_sym_file_mode_token2] = ACTIONS(8275), + [aux_sym_file_access_token2] = ACTIONS(8275), + [aux_sym_file_lock_token2] = ACTIONS(8275), + [aux_sym_print_statement_token1] = ACTIONS(8275), + [anon_sym_PLUS] = ACTIONS(8277), + [anon_sym_DASH] = ACTIONS(8275), + [anon_sym_QMARK] = ACTIONS(8277), + [aux_sym_close_statement_token1] = ACTIONS(8275), + [aux_sym_put_statement_token1] = ACTIONS(8275), + [aux_sym_unlock_statement_token1] = ACTIONS(8275), + [aux_sym_seek_statement_token1] = ACTIONS(8275), + [sym_reset_statement] = ACTIONS(8275), + [aux_sym_raise_event_statement_token1] = ACTIONS(8275), + [sym_stop_statement] = ACTIONS(8275), + [sym_beep_statement] = ACTIONS(8275), + [aux_sym_unload_statement_token1] = ACTIONS(8275), + [aux_sym_def_type_statement_token1] = ACTIONS(8275), + [aux_sym_def_type_statement_token2] = ACTIONS(8275), + [aux_sym_def_type_statement_token3] = ACTIONS(8275), + [aux_sym_def_type_statement_token4] = ACTIONS(8275), + [aux_sym_def_type_statement_token5] = ACTIONS(8275), + [aux_sym_def_type_statement_token6] = ACTIONS(8275), + [aux_sym_def_type_statement_token7] = ACTIONS(8275), + [aux_sym_def_type_statement_token8] = ACTIONS(8275), + [aux_sym_def_type_statement_token9] = ACTIONS(8275), + [aux_sym_def_type_statement_token10] = ACTIONS(8275), + [aux_sym_def_type_statement_token11] = ACTIONS(8275), + [aux_sym_def_type_statement_token12] = ACTIONS(8275), + [aux_sym_def_type_statement_token13] = ACTIONS(8275), + [aux_sym_def_type_statement_token14] = ACTIONS(8275), + [aux_sym_call_statement_token1] = ACTIONS(8275), + [sym__ambiguous_call_statement] = ACTIONS(8275), + [aux_sym_addressof_expression_token1] = ACTIONS(8275), + [aux_sym_type_of_expression_token1] = ACTIONS(8275), + [aux_sym_unary_expression_token1] = ACTIONS(8275), + [sym_string_literal] = ACTIONS(8277), + [sym_number_literal] = ACTIONS(8277), + [aux_sym_boolean_literal_token1] = ACTIONS(8275), + [aux_sym_boolean_literal_token2] = ACTIONS(8275), + [sym_nothing_literal] = ACTIONS(8275), + [sym_null_literal] = ACTIONS(8275), + [sym_empty_literal] = ACTIONS(8275), + [sym_date_literal] = ACTIONS(8277), + [anon_sym_POUND] = ACTIONS(8275), + }, + [STATE(5108)] = { + [sym_do_condition] = STATE(6337), + [sym_identifier] = ACTIONS(8279), + [sym_newline] = ACTIONS(8281), + [anon_sym_COLON] = ACTIONS(8281), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8279), + [aux_sym_frm_property_statement_token1] = ACTIONS(8279), + [anon_sym_DOT] = ACTIONS(8279), + [anon_sym_BANG] = ACTIONS(8281), + [aux_sym__attribute_identifier_token1] = ACTIONS(8279), + [aux_sym_option_statement_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8279), + [aux_sym_preprocessor_const_token1] = ACTIONS(8279), + [sym_static_modifier] = ACTIONS(8279), + [sym__dim_keyword] = ACTIONS(8279), + [sym__redim_keyword] = ACTIONS(8279), + [aux_sym_get_accessor_token1] = ACTIONS(8279), + [aux_sym_set_accessor_token1] = ACTIONS(8279), + [aux_sym_const_declaration_token1] = ACTIONS(8279), + [anon_sym_LPAREN] = ACTIONS(8281), + [aux_sym_as_type_clause_token2] = ACTIONS(8279), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8279), + [aux_sym_visibility_token1] = ACTIONS(8279), + [aux_sym_visibility_token2] = ACTIONS(8279), + [aux_sym_elseif_fragment_token1] = ACTIONS(8279), + [aux_sym_else_fragment_token1] = ACTIONS(8279), + [aux_sym_select_statement_token1] = ACTIONS(8279), + [aux_sym__for_header_token1] = ACTIONS(8279), + [aux_sym_do_statement_token1] = ACTIONS(8279), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8279), + [aux_sym_exit_statement_token1] = ACTIONS(8279), + [sym_end_statement] = ACTIONS(8281), + [aux_sym_on_goto_statement_token1] = ACTIONS(8279), + [aux_sym_on_goto_statement_token2] = ACTIONS(8279), + [aux_sym_on_error_statement_token2] = ACTIONS(8279), + [sym__ambiguous_redim_statement] = ACTIONS(8281), + [aux_sym_erase_statement_token1] = ACTIONS(8279), + [aux_sym_open_statement_token1] = ACTIONS(8279), + [aux_sym_file_mode_token2] = ACTIONS(8279), + [aux_sym_file_access_token2] = ACTIONS(8279), + [aux_sym_file_lock_token2] = ACTIONS(8279), + [aux_sym_print_statement_token1] = ACTIONS(8279), + [anon_sym_PLUS] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8279), + [anon_sym_QMARK] = ACTIONS(8281), + [aux_sym_close_statement_token1] = ACTIONS(8279), + [aux_sym_put_statement_token1] = ACTIONS(8279), + [aux_sym_unlock_statement_token1] = ACTIONS(8279), + [aux_sym_seek_statement_token1] = ACTIONS(8279), + [sym_reset_statement] = ACTIONS(8279), + [aux_sym_raise_event_statement_token1] = ACTIONS(8279), + [sym_stop_statement] = ACTIONS(8279), + [sym_beep_statement] = ACTIONS(8279), + [aux_sym_unload_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token2] = ACTIONS(8279), + [aux_sym_def_type_statement_token3] = ACTIONS(8279), + [aux_sym_def_type_statement_token4] = ACTIONS(8279), + [aux_sym_def_type_statement_token5] = ACTIONS(8279), + [aux_sym_def_type_statement_token6] = ACTIONS(8279), + [aux_sym_def_type_statement_token7] = ACTIONS(8279), + [aux_sym_def_type_statement_token8] = ACTIONS(8279), + [aux_sym_def_type_statement_token9] = ACTIONS(8279), + [aux_sym_def_type_statement_token10] = ACTIONS(8279), + [aux_sym_def_type_statement_token11] = ACTIONS(8279), + [aux_sym_def_type_statement_token12] = ACTIONS(8279), + [aux_sym_def_type_statement_token13] = ACTIONS(8279), + [aux_sym_def_type_statement_token14] = ACTIONS(8279), + [aux_sym_call_statement_token1] = ACTIONS(8279), + [sym__ambiguous_call_statement] = ACTIONS(8279), + [aux_sym_addressof_expression_token1] = ACTIONS(8279), + [aux_sym_type_of_expression_token1] = ACTIONS(8279), + [aux_sym_unary_expression_token1] = ACTIONS(8279), + [sym_string_literal] = ACTIONS(8281), + [sym_number_literal] = ACTIONS(8281), + [aux_sym_boolean_literal_token1] = ACTIONS(8279), + [aux_sym_boolean_literal_token2] = ACTIONS(8279), + [sym_nothing_literal] = ACTIONS(8279), + [sym_null_literal] = ACTIONS(8279), + [sym_empty_literal] = ACTIONS(8279), + [sym_date_literal] = ACTIONS(8281), + [anon_sym_POUND] = ACTIONS(8279), + }, + [STATE(5109)] = { + [sym_do_condition] = STATE(6340), + [sym_identifier] = ACTIONS(8283), + [sym_newline] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8283), + [aux_sym_frm_property_statement_token1] = ACTIONS(8283), + [anon_sym_DOT] = ACTIONS(8283), + [anon_sym_BANG] = ACTIONS(8285), + [aux_sym__attribute_identifier_token1] = ACTIONS(8283), + [aux_sym_option_statement_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8283), + [aux_sym_preprocessor_const_token1] = ACTIONS(8283), + [sym_static_modifier] = ACTIONS(8283), + [sym__dim_keyword] = ACTIONS(8283), + [sym__redim_keyword] = ACTIONS(8283), + [aux_sym_get_accessor_token1] = ACTIONS(8283), + [aux_sym_set_accessor_token1] = ACTIONS(8283), + [aux_sym_const_declaration_token1] = ACTIONS(8283), + [anon_sym_LPAREN] = ACTIONS(8285), + [aux_sym_as_type_clause_token2] = ACTIONS(8283), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8283), + [aux_sym_visibility_token1] = ACTIONS(8283), + [aux_sym_visibility_token2] = ACTIONS(8283), + [aux_sym_elseif_fragment_token1] = ACTIONS(8283), + [aux_sym_else_fragment_token1] = ACTIONS(8283), + [aux_sym_select_statement_token1] = ACTIONS(8283), + [aux_sym__for_header_token1] = ACTIONS(8283), + [aux_sym_do_statement_token1] = ACTIONS(8283), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8283), + [aux_sym_exit_statement_token1] = ACTIONS(8283), + [sym_end_statement] = ACTIONS(8285), + [aux_sym_on_goto_statement_token1] = ACTIONS(8283), + [aux_sym_on_goto_statement_token2] = ACTIONS(8283), + [aux_sym_on_error_statement_token2] = ACTIONS(8283), + [sym__ambiguous_redim_statement] = ACTIONS(8285), + [aux_sym_erase_statement_token1] = ACTIONS(8283), + [aux_sym_open_statement_token1] = ACTIONS(8283), + [aux_sym_file_mode_token2] = ACTIONS(8283), + [aux_sym_file_access_token2] = ACTIONS(8283), + [aux_sym_file_lock_token2] = ACTIONS(8283), + [aux_sym_print_statement_token1] = ACTIONS(8283), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_DASH] = ACTIONS(8283), + [anon_sym_QMARK] = ACTIONS(8285), + [aux_sym_close_statement_token1] = ACTIONS(8283), + [aux_sym_put_statement_token1] = ACTIONS(8283), + [aux_sym_unlock_statement_token1] = ACTIONS(8283), + [aux_sym_seek_statement_token1] = ACTIONS(8283), + [sym_reset_statement] = ACTIONS(8283), + [aux_sym_raise_event_statement_token1] = ACTIONS(8283), + [sym_stop_statement] = ACTIONS(8283), + [sym_beep_statement] = ACTIONS(8283), + [aux_sym_unload_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token2] = ACTIONS(8283), + [aux_sym_def_type_statement_token3] = ACTIONS(8283), + [aux_sym_def_type_statement_token4] = ACTIONS(8283), + [aux_sym_def_type_statement_token5] = ACTIONS(8283), + [aux_sym_def_type_statement_token6] = ACTIONS(8283), + [aux_sym_def_type_statement_token7] = ACTIONS(8283), + [aux_sym_def_type_statement_token8] = ACTIONS(8283), + [aux_sym_def_type_statement_token9] = ACTIONS(8283), + [aux_sym_def_type_statement_token10] = ACTIONS(8283), + [aux_sym_def_type_statement_token11] = ACTIONS(8283), + [aux_sym_def_type_statement_token12] = ACTIONS(8283), + [aux_sym_def_type_statement_token13] = ACTIONS(8283), + [aux_sym_def_type_statement_token14] = ACTIONS(8283), + [aux_sym_call_statement_token1] = ACTIONS(8283), + [sym__ambiguous_call_statement] = ACTIONS(8283), + [aux_sym_addressof_expression_token1] = ACTIONS(8283), + [aux_sym_type_of_expression_token1] = ACTIONS(8283), + [aux_sym_unary_expression_token1] = ACTIONS(8283), + [sym_string_literal] = ACTIONS(8285), + [sym_number_literal] = ACTIONS(8285), + [aux_sym_boolean_literal_token1] = ACTIONS(8283), + [aux_sym_boolean_literal_token2] = ACTIONS(8283), + [sym_nothing_literal] = ACTIONS(8283), + [sym_null_literal] = ACTIONS(8283), + [sym_empty_literal] = ACTIONS(8283), + [sym_date_literal] = ACTIONS(8285), + [anon_sym_POUND] = ACTIONS(8283), + }, + [STATE(5110)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5093), + [sym_identifier] = ACTIONS(8154), + [sym_newline] = ACTIONS(8156), + [anon_sym_COLON] = ACTIONS(8156), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8154), + [aux_sym_frm_property_statement_token1] = ACTIONS(8154), + [anon_sym_DOT] = ACTIONS(8154), + [anon_sym_BANG] = ACTIONS(8156), + [aux_sym__attribute_identifier_token1] = ACTIONS(8154), + [aux_sym_option_statement_token3] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8154), + [aux_sym_preprocessor_const_token1] = ACTIONS(8154), + [sym_static_modifier] = ACTIONS(8154), + [sym__dim_keyword] = ACTIONS(8154), + [sym__redim_keyword] = ACTIONS(8154), + [aux_sym_get_accessor_token1] = ACTIONS(8154), + [aux_sym_set_accessor_token1] = ACTIONS(8154), + [anon_sym_COMMA] = ACTIONS(10441), + [aux_sym_const_declaration_token1] = ACTIONS(8154), + [anon_sym_LPAREN] = ACTIONS(8156), + [aux_sym_as_type_clause_token2] = ACTIONS(8154), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8154), + [aux_sym_visibility_token1] = ACTIONS(8154), + [aux_sym_visibility_token2] = ACTIONS(8154), + [aux_sym_elseif_fragment_token1] = ACTIONS(8154), + [aux_sym_else_fragment_token1] = ACTIONS(8154), + [aux_sym_select_statement_token1] = ACTIONS(8154), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8154), + [aux_sym__for_header_token1] = ACTIONS(8154), + [aux_sym_do_statement_token1] = ACTIONS(8154), + [aux_sym_do_condition_token1] = ACTIONS(8154), + [aux_sym_with_statement_token1] = ACTIONS(8154), + [aux_sym_exit_statement_token1] = ACTIONS(8154), + [sym_end_statement] = ACTIONS(8156), + [aux_sym_on_goto_statement_token1] = ACTIONS(8154), + [aux_sym_on_goto_statement_token2] = ACTIONS(8154), + [aux_sym_on_error_statement_token2] = ACTIONS(8154), + [sym__ambiguous_redim_statement] = ACTIONS(8156), + [aux_sym_erase_statement_token1] = ACTIONS(8154), + [aux_sym_open_statement_token1] = ACTIONS(8154), + [aux_sym_file_mode_token2] = ACTIONS(8154), + [aux_sym_file_access_token2] = ACTIONS(8154), + [aux_sym_file_lock_token2] = ACTIONS(8154), + [aux_sym_print_statement_token1] = ACTIONS(8154), + [anon_sym_PLUS] = ACTIONS(8156), + [anon_sym_DASH] = ACTIONS(8154), + [anon_sym_QMARK] = ACTIONS(8156), + [aux_sym_close_statement_token1] = ACTIONS(8154), + [aux_sym_put_statement_token1] = ACTIONS(8154), + [aux_sym_unlock_statement_token1] = ACTIONS(8154), + [aux_sym_seek_statement_token1] = ACTIONS(8154), + [sym_reset_statement] = ACTIONS(8154), + [aux_sym_raise_event_statement_token1] = ACTIONS(8154), + [sym_stop_statement] = ACTIONS(8154), + [sym_beep_statement] = ACTIONS(8154), + [aux_sym_unload_statement_token1] = ACTIONS(8154), + [aux_sym_def_type_statement_token1] = ACTIONS(8154), + [aux_sym_def_type_statement_token2] = ACTIONS(8154), + [aux_sym_def_type_statement_token3] = ACTIONS(8154), + [aux_sym_def_type_statement_token4] = ACTIONS(8154), + [aux_sym_def_type_statement_token5] = ACTIONS(8154), + [aux_sym_def_type_statement_token6] = ACTIONS(8154), + [aux_sym_def_type_statement_token7] = ACTIONS(8154), + [aux_sym_def_type_statement_token8] = ACTIONS(8154), + [aux_sym_def_type_statement_token9] = ACTIONS(8154), + [aux_sym_def_type_statement_token10] = ACTIONS(8154), + [aux_sym_def_type_statement_token11] = ACTIONS(8154), + [aux_sym_def_type_statement_token12] = ACTIONS(8154), + [aux_sym_def_type_statement_token13] = ACTIONS(8154), + [aux_sym_def_type_statement_token14] = ACTIONS(8154), + [aux_sym_call_statement_token1] = ACTIONS(8154), + [sym__ambiguous_call_statement] = ACTIONS(8154), + [aux_sym_addressof_expression_token1] = ACTIONS(8154), + [aux_sym_type_of_expression_token1] = ACTIONS(8154), + [aux_sym_unary_expression_token1] = ACTIONS(8154), + [sym_string_literal] = ACTIONS(8156), + [sym_number_literal] = ACTIONS(8156), + [aux_sym_boolean_literal_token1] = ACTIONS(8154), + [aux_sym_boolean_literal_token2] = ACTIONS(8154), + [sym_nothing_literal] = ACTIONS(8154), + [sym_null_literal] = ACTIONS(8154), + [sym_empty_literal] = ACTIONS(8154), + [sym_date_literal] = ACTIONS(8156), + [anon_sym_POUND] = ACTIONS(8154), + }, + [STATE(5111)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5093), + [sym_identifier] = ACTIONS(8158), + [sym_newline] = ACTIONS(8160), + [anon_sym_COLON] = ACTIONS(8160), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8158), + [aux_sym_frm_property_statement_token1] = ACTIONS(8158), + [anon_sym_DOT] = ACTIONS(8158), + [anon_sym_BANG] = ACTIONS(8160), + [aux_sym__attribute_identifier_token1] = ACTIONS(8158), + [aux_sym_option_statement_token3] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8158), + [aux_sym_preprocessor_const_token1] = ACTIONS(8158), + [sym_static_modifier] = ACTIONS(8158), + [sym__dim_keyword] = ACTIONS(8158), + [sym__redim_keyword] = ACTIONS(8158), + [aux_sym_get_accessor_token1] = ACTIONS(8158), + [aux_sym_set_accessor_token1] = ACTIONS(8158), + [anon_sym_COMMA] = ACTIONS(10441), + [aux_sym_const_declaration_token1] = ACTIONS(8158), + [anon_sym_LPAREN] = ACTIONS(8160), + [aux_sym_as_type_clause_token2] = ACTIONS(8158), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8158), + [aux_sym_visibility_token1] = ACTIONS(8158), + [aux_sym_visibility_token2] = ACTIONS(8158), + [aux_sym_elseif_fragment_token1] = ACTIONS(8158), + [aux_sym_else_fragment_token1] = ACTIONS(8158), + [aux_sym_select_statement_token1] = ACTIONS(8158), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8158), + [aux_sym__for_header_token1] = ACTIONS(8158), + [aux_sym_do_statement_token1] = ACTIONS(8158), + [aux_sym_do_condition_token1] = ACTIONS(8158), + [aux_sym_with_statement_token1] = ACTIONS(8158), + [aux_sym_exit_statement_token1] = ACTIONS(8158), + [sym_end_statement] = ACTIONS(8160), + [aux_sym_on_goto_statement_token1] = ACTIONS(8158), + [aux_sym_on_goto_statement_token2] = ACTIONS(8158), + [aux_sym_on_error_statement_token2] = ACTIONS(8158), + [sym__ambiguous_redim_statement] = ACTIONS(8160), + [aux_sym_erase_statement_token1] = ACTIONS(8158), + [aux_sym_open_statement_token1] = ACTIONS(8158), + [aux_sym_file_mode_token2] = ACTIONS(8158), + [aux_sym_file_access_token2] = ACTIONS(8158), + [aux_sym_file_lock_token2] = ACTIONS(8158), + [aux_sym_print_statement_token1] = ACTIONS(8158), + [anon_sym_PLUS] = ACTIONS(8160), + [anon_sym_DASH] = ACTIONS(8158), + [anon_sym_QMARK] = ACTIONS(8160), + [aux_sym_close_statement_token1] = ACTIONS(8158), + [aux_sym_put_statement_token1] = ACTIONS(8158), + [aux_sym_unlock_statement_token1] = ACTIONS(8158), + [aux_sym_seek_statement_token1] = ACTIONS(8158), + [sym_reset_statement] = ACTIONS(8158), + [aux_sym_raise_event_statement_token1] = ACTIONS(8158), + [sym_stop_statement] = ACTIONS(8158), + [sym_beep_statement] = ACTIONS(8158), + [aux_sym_unload_statement_token1] = ACTIONS(8158), + [aux_sym_def_type_statement_token1] = ACTIONS(8158), + [aux_sym_def_type_statement_token2] = ACTIONS(8158), + [aux_sym_def_type_statement_token3] = ACTIONS(8158), + [aux_sym_def_type_statement_token4] = ACTIONS(8158), + [aux_sym_def_type_statement_token5] = ACTIONS(8158), + [aux_sym_def_type_statement_token6] = ACTIONS(8158), + [aux_sym_def_type_statement_token7] = ACTIONS(8158), + [aux_sym_def_type_statement_token8] = ACTIONS(8158), + [aux_sym_def_type_statement_token9] = ACTIONS(8158), + [aux_sym_def_type_statement_token10] = ACTIONS(8158), + [aux_sym_def_type_statement_token11] = ACTIONS(8158), + [aux_sym_def_type_statement_token12] = ACTIONS(8158), + [aux_sym_def_type_statement_token13] = ACTIONS(8158), + [aux_sym_def_type_statement_token14] = ACTIONS(8158), + [aux_sym_call_statement_token1] = ACTIONS(8158), + [sym__ambiguous_call_statement] = ACTIONS(8158), + [aux_sym_addressof_expression_token1] = ACTIONS(8158), + [aux_sym_type_of_expression_token1] = ACTIONS(8158), + [aux_sym_unary_expression_token1] = ACTIONS(8158), + [sym_string_literal] = ACTIONS(8160), + [sym_number_literal] = ACTIONS(8160), + [aux_sym_boolean_literal_token1] = ACTIONS(8158), + [aux_sym_boolean_literal_token2] = ACTIONS(8158), + [sym_nothing_literal] = ACTIONS(8158), + [sym_null_literal] = ACTIONS(8158), + [sym_empty_literal] = ACTIONS(8158), + [sym_date_literal] = ACTIONS(8160), + [anon_sym_POUND] = ACTIONS(8158), + }, + [STATE(5112)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5093), + [sym_identifier] = ACTIONS(8166), + [sym_newline] = ACTIONS(8168), + [anon_sym_COLON] = ACTIONS(8168), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8166), + [aux_sym_frm_property_statement_token1] = ACTIONS(8166), + [anon_sym_DOT] = ACTIONS(8166), + [anon_sym_BANG] = ACTIONS(8168), + [aux_sym__attribute_identifier_token1] = ACTIONS(8166), + [aux_sym_option_statement_token3] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8166), + [aux_sym_preprocessor_const_token1] = ACTIONS(8166), + [sym_static_modifier] = ACTIONS(8166), + [sym__dim_keyword] = ACTIONS(8166), + [sym__redim_keyword] = ACTIONS(8166), + [aux_sym_get_accessor_token1] = ACTIONS(8166), + [aux_sym_set_accessor_token1] = ACTIONS(8166), + [anon_sym_COMMA] = ACTIONS(10441), + [aux_sym_const_declaration_token1] = ACTIONS(8166), + [anon_sym_LPAREN] = ACTIONS(8168), + [aux_sym_as_type_clause_token2] = ACTIONS(8166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8166), + [aux_sym_visibility_token1] = ACTIONS(8166), + [aux_sym_visibility_token2] = ACTIONS(8166), + [aux_sym_elseif_fragment_token1] = ACTIONS(8166), + [aux_sym_else_fragment_token1] = ACTIONS(8166), + [aux_sym_select_statement_token1] = ACTIONS(8166), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8166), + [aux_sym__for_header_token1] = ACTIONS(8166), + [aux_sym_do_statement_token1] = ACTIONS(8166), + [aux_sym_do_condition_token1] = ACTIONS(8166), + [aux_sym_with_statement_token1] = ACTIONS(8166), + [aux_sym_exit_statement_token1] = ACTIONS(8166), + [sym_end_statement] = ACTIONS(8168), + [aux_sym_on_goto_statement_token1] = ACTIONS(8166), + [aux_sym_on_goto_statement_token2] = ACTIONS(8166), + [aux_sym_on_error_statement_token2] = ACTIONS(8166), + [sym__ambiguous_redim_statement] = ACTIONS(8168), + [aux_sym_erase_statement_token1] = ACTIONS(8166), + [aux_sym_open_statement_token1] = ACTIONS(8166), + [aux_sym_file_mode_token2] = ACTIONS(8166), + [aux_sym_file_access_token2] = ACTIONS(8166), + [aux_sym_file_lock_token2] = ACTIONS(8166), + [aux_sym_print_statement_token1] = ACTIONS(8166), + [anon_sym_PLUS] = ACTIONS(8168), + [anon_sym_DASH] = ACTIONS(8166), + [anon_sym_QMARK] = ACTIONS(8168), + [aux_sym_close_statement_token1] = ACTIONS(8166), + [aux_sym_put_statement_token1] = ACTIONS(8166), + [aux_sym_unlock_statement_token1] = ACTIONS(8166), + [aux_sym_seek_statement_token1] = ACTIONS(8166), + [sym_reset_statement] = ACTIONS(8166), + [aux_sym_raise_event_statement_token1] = ACTIONS(8166), + [sym_stop_statement] = ACTIONS(8166), + [sym_beep_statement] = ACTIONS(8166), + [aux_sym_unload_statement_token1] = ACTIONS(8166), + [aux_sym_def_type_statement_token1] = ACTIONS(8166), + [aux_sym_def_type_statement_token2] = ACTIONS(8166), + [aux_sym_def_type_statement_token3] = ACTIONS(8166), + [aux_sym_def_type_statement_token4] = ACTIONS(8166), + [aux_sym_def_type_statement_token5] = ACTIONS(8166), + [aux_sym_def_type_statement_token6] = ACTIONS(8166), + [aux_sym_def_type_statement_token7] = ACTIONS(8166), + [aux_sym_def_type_statement_token8] = ACTIONS(8166), + [aux_sym_def_type_statement_token9] = ACTIONS(8166), + [aux_sym_def_type_statement_token10] = ACTIONS(8166), + [aux_sym_def_type_statement_token11] = ACTIONS(8166), + [aux_sym_def_type_statement_token12] = ACTIONS(8166), + [aux_sym_def_type_statement_token13] = ACTIONS(8166), + [aux_sym_def_type_statement_token14] = ACTIONS(8166), + [aux_sym_call_statement_token1] = ACTIONS(8166), + [sym__ambiguous_call_statement] = ACTIONS(8166), + [aux_sym_addressof_expression_token1] = ACTIONS(8166), + [aux_sym_type_of_expression_token1] = ACTIONS(8166), + [aux_sym_unary_expression_token1] = ACTIONS(8166), + [sym_string_literal] = ACTIONS(8168), + [sym_number_literal] = ACTIONS(8168), + [aux_sym_boolean_literal_token1] = ACTIONS(8166), + [aux_sym_boolean_literal_token2] = ACTIONS(8166), + [sym_nothing_literal] = ACTIONS(8166), + [sym_null_literal] = ACTIONS(8166), + [sym_empty_literal] = ACTIONS(8166), + [sym_date_literal] = ACTIONS(8168), + [anon_sym_POUND] = ACTIONS(8166), + }, + [STATE(5113)] = { + [aux_sym_const_declaration_repeat1] = STATE(5094), + [sym_identifier] = ACTIONS(8174), + [sym_newline] = ACTIONS(8176), + [anon_sym_COLON] = ACTIONS(8176), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8174), + [aux_sym_frm_property_statement_token1] = ACTIONS(8174), + [anon_sym_DOT] = ACTIONS(8174), + [anon_sym_BANG] = ACTIONS(8176), + [aux_sym__attribute_identifier_token1] = ACTIONS(8174), + [aux_sym_option_statement_token3] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8174), + [aux_sym_preprocessor_const_token1] = ACTIONS(8174), + [sym_static_modifier] = ACTIONS(8174), + [sym__dim_keyword] = ACTIONS(8174), + [sym__redim_keyword] = ACTIONS(8174), + [aux_sym_get_accessor_token1] = ACTIONS(8174), + [aux_sym_set_accessor_token1] = ACTIONS(8174), + [anon_sym_COMMA] = ACTIONS(10443), + [aux_sym_const_declaration_token1] = ACTIONS(8174), + [anon_sym_LPAREN] = ACTIONS(8176), + [aux_sym_as_type_clause_token2] = ACTIONS(8174), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8174), + [aux_sym_visibility_token1] = ACTIONS(8174), + [aux_sym_visibility_token2] = ACTIONS(8174), + [aux_sym_elseif_fragment_token1] = ACTIONS(8174), + [aux_sym_else_fragment_token1] = ACTIONS(8174), + [aux_sym_select_statement_token1] = ACTIONS(8174), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8174), + [aux_sym__for_header_token1] = ACTIONS(8174), + [aux_sym_do_statement_token1] = ACTIONS(8174), + [aux_sym_do_condition_token1] = ACTIONS(8174), + [aux_sym_with_statement_token1] = ACTIONS(8174), + [aux_sym_exit_statement_token1] = ACTIONS(8174), + [sym_end_statement] = ACTIONS(8176), + [aux_sym_on_goto_statement_token1] = ACTIONS(8174), + [aux_sym_on_goto_statement_token2] = ACTIONS(8174), + [aux_sym_on_error_statement_token2] = ACTIONS(8174), + [sym__ambiguous_redim_statement] = ACTIONS(8176), + [aux_sym_erase_statement_token1] = ACTIONS(8174), + [aux_sym_open_statement_token1] = ACTIONS(8174), + [aux_sym_file_mode_token2] = ACTIONS(8174), + [aux_sym_file_access_token2] = ACTIONS(8174), + [aux_sym_file_lock_token2] = ACTIONS(8174), + [aux_sym_print_statement_token1] = ACTIONS(8174), + [anon_sym_PLUS] = ACTIONS(8176), + [anon_sym_DASH] = ACTIONS(8174), + [anon_sym_QMARK] = ACTIONS(8176), + [aux_sym_close_statement_token1] = ACTIONS(8174), + [aux_sym_put_statement_token1] = ACTIONS(8174), + [aux_sym_unlock_statement_token1] = ACTIONS(8174), + [aux_sym_seek_statement_token1] = ACTIONS(8174), + [sym_reset_statement] = ACTIONS(8174), + [aux_sym_raise_event_statement_token1] = ACTIONS(8174), + [sym_stop_statement] = ACTIONS(8174), + [sym_beep_statement] = ACTIONS(8174), + [aux_sym_unload_statement_token1] = ACTIONS(8174), + [aux_sym_def_type_statement_token1] = ACTIONS(8174), + [aux_sym_def_type_statement_token2] = ACTIONS(8174), + [aux_sym_def_type_statement_token3] = ACTIONS(8174), + [aux_sym_def_type_statement_token4] = ACTIONS(8174), + [aux_sym_def_type_statement_token5] = ACTIONS(8174), + [aux_sym_def_type_statement_token6] = ACTIONS(8174), + [aux_sym_def_type_statement_token7] = ACTIONS(8174), + [aux_sym_def_type_statement_token8] = ACTIONS(8174), + [aux_sym_def_type_statement_token9] = ACTIONS(8174), + [aux_sym_def_type_statement_token10] = ACTIONS(8174), + [aux_sym_def_type_statement_token11] = ACTIONS(8174), + [aux_sym_def_type_statement_token12] = ACTIONS(8174), + [aux_sym_def_type_statement_token13] = ACTIONS(8174), + [aux_sym_def_type_statement_token14] = ACTIONS(8174), + [aux_sym_call_statement_token1] = ACTIONS(8174), + [sym__ambiguous_call_statement] = ACTIONS(8174), + [aux_sym_addressof_expression_token1] = ACTIONS(8174), + [aux_sym_type_of_expression_token1] = ACTIONS(8174), + [aux_sym_unary_expression_token1] = ACTIONS(8174), + [sym_string_literal] = ACTIONS(8176), + [sym_number_literal] = ACTIONS(8176), + [aux_sym_boolean_literal_token1] = ACTIONS(8174), + [aux_sym_boolean_literal_token2] = ACTIONS(8174), + [sym_nothing_literal] = ACTIONS(8174), + [sym_null_literal] = ACTIONS(8174), + [sym_empty_literal] = ACTIONS(8174), + [sym_date_literal] = ACTIONS(8176), + [anon_sym_POUND] = ACTIONS(8174), + }, + [STATE(5114)] = { + [sym_do_condition] = STATE(6343), + [sym_identifier] = ACTIONS(8294), + [sym_newline] = ACTIONS(8296), + [anon_sym_COLON] = ACTIONS(8296), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8294), + [aux_sym_frm_property_statement_token1] = ACTIONS(8294), + [anon_sym_DOT] = ACTIONS(8294), + [anon_sym_BANG] = ACTIONS(8296), + [aux_sym__attribute_identifier_token1] = ACTIONS(8294), + [aux_sym_option_statement_token3] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8294), + [aux_sym_preprocessor_const_token1] = ACTIONS(8294), + [sym_static_modifier] = ACTIONS(8294), + [sym__dim_keyword] = ACTIONS(8294), + [sym__redim_keyword] = ACTIONS(8294), + [aux_sym_get_accessor_token1] = ACTIONS(8294), + [aux_sym_set_accessor_token1] = ACTIONS(8294), + [aux_sym_const_declaration_token1] = ACTIONS(8294), + [anon_sym_LPAREN] = ACTIONS(8296), + [aux_sym_as_type_clause_token2] = ACTIONS(8294), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8294), + [aux_sym_visibility_token1] = ACTIONS(8294), + [aux_sym_visibility_token2] = ACTIONS(8294), + [aux_sym_elseif_fragment_token1] = ACTIONS(8294), + [aux_sym_else_fragment_token1] = ACTIONS(8294), + [aux_sym_select_statement_token1] = ACTIONS(8294), + [aux_sym__for_header_token1] = ACTIONS(8294), + [aux_sym_do_statement_token1] = ACTIONS(8294), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8294), + [aux_sym_exit_statement_token1] = ACTIONS(8294), + [sym_end_statement] = ACTIONS(8296), + [aux_sym_on_goto_statement_token1] = ACTIONS(8294), + [aux_sym_on_goto_statement_token2] = ACTIONS(8294), + [aux_sym_on_error_statement_token2] = ACTIONS(8294), + [sym__ambiguous_redim_statement] = ACTIONS(8296), + [aux_sym_erase_statement_token1] = ACTIONS(8294), + [aux_sym_open_statement_token1] = ACTIONS(8294), + [aux_sym_file_mode_token2] = ACTIONS(8294), + [aux_sym_file_access_token2] = ACTIONS(8294), + [aux_sym_file_lock_token2] = ACTIONS(8294), + [aux_sym_print_statement_token1] = ACTIONS(8294), + [anon_sym_PLUS] = ACTIONS(8296), + [anon_sym_DASH] = ACTIONS(8294), + [anon_sym_QMARK] = ACTIONS(8296), + [aux_sym_close_statement_token1] = ACTIONS(8294), + [aux_sym_put_statement_token1] = ACTIONS(8294), + [aux_sym_unlock_statement_token1] = ACTIONS(8294), + [aux_sym_seek_statement_token1] = ACTIONS(8294), + [sym_reset_statement] = ACTIONS(8294), + [aux_sym_raise_event_statement_token1] = ACTIONS(8294), + [sym_stop_statement] = ACTIONS(8294), + [sym_beep_statement] = ACTIONS(8294), + [aux_sym_unload_statement_token1] = ACTIONS(8294), + [aux_sym_def_type_statement_token1] = ACTIONS(8294), + [aux_sym_def_type_statement_token2] = ACTIONS(8294), + [aux_sym_def_type_statement_token3] = ACTIONS(8294), + [aux_sym_def_type_statement_token4] = ACTIONS(8294), + [aux_sym_def_type_statement_token5] = ACTIONS(8294), + [aux_sym_def_type_statement_token6] = ACTIONS(8294), + [aux_sym_def_type_statement_token7] = ACTIONS(8294), + [aux_sym_def_type_statement_token8] = ACTIONS(8294), + [aux_sym_def_type_statement_token9] = ACTIONS(8294), + [aux_sym_def_type_statement_token10] = ACTIONS(8294), + [aux_sym_def_type_statement_token11] = ACTIONS(8294), + [aux_sym_def_type_statement_token12] = ACTIONS(8294), + [aux_sym_def_type_statement_token13] = ACTIONS(8294), + [aux_sym_def_type_statement_token14] = ACTIONS(8294), + [aux_sym_call_statement_token1] = ACTIONS(8294), + [sym__ambiguous_call_statement] = ACTIONS(8294), + [aux_sym_addressof_expression_token1] = ACTIONS(8294), + [aux_sym_type_of_expression_token1] = ACTIONS(8294), + [aux_sym_unary_expression_token1] = ACTIONS(8294), + [sym_string_literal] = ACTIONS(8296), + [sym_number_literal] = ACTIONS(8296), + [aux_sym_boolean_literal_token1] = ACTIONS(8294), + [aux_sym_boolean_literal_token2] = ACTIONS(8294), + [sym_nothing_literal] = ACTIONS(8294), + [sym_null_literal] = ACTIONS(8294), + [sym_empty_literal] = ACTIONS(8294), + [sym_date_literal] = ACTIONS(8296), + [anon_sym_POUND] = ACTIONS(8294), + }, + [STATE(5115)] = { + [sym_identifier] = ACTIONS(5716), + [sym_newline] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5716), + [aux_sym_frm_property_statement_token1] = ACTIONS(5716), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_BANG] = ACTIONS(5718), + [aux_sym__attribute_identifier_token1] = ACTIONS(5716), + [aux_sym_option_statement_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5716), + [aux_sym_preprocessor_const_token1] = ACTIONS(5716), + [sym_static_modifier] = ACTIONS(5716), + [sym__dim_keyword] = ACTIONS(5716), + [sym__redim_keyword] = ACTIONS(5716), + [aux_sym_get_accessor_token1] = ACTIONS(5716), + [aux_sym_set_accessor_token1] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5718), + [aux_sym_const_declaration_token1] = ACTIONS(5716), + [anon_sym_LPAREN] = ACTIONS(5718), + [aux_sym_as_type_clause_token2] = ACTIONS(5716), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5716), + [aux_sym_visibility_token1] = ACTIONS(5716), + [aux_sym_visibility_token2] = ACTIONS(5716), + [aux_sym_elseif_fragment_token1] = ACTIONS(5716), + [aux_sym_else_fragment_token1] = ACTIONS(5716), + [aux_sym_select_statement_token1] = ACTIONS(5716), + [aux_sym__for_header_token1] = ACTIONS(5716), + [aux_sym_do_statement_token1] = ACTIONS(5716), + [aux_sym_do_condition_token1] = ACTIONS(5716), + [aux_sym_while_statement_token1] = ACTIONS(5716), + [aux_sym_with_statement_token1] = ACTIONS(5716), + [aux_sym_exit_statement_token1] = ACTIONS(5716), + [sym_end_statement] = ACTIONS(5718), + [aux_sym_on_goto_statement_token1] = ACTIONS(5716), + [aux_sym_on_goto_statement_token2] = ACTIONS(5716), + [aux_sym_on_error_statement_token2] = ACTIONS(5716), + [sym__ambiguous_redim_statement] = ACTIONS(5718), + [aux_sym_erase_statement_token1] = ACTIONS(5716), + [aux_sym_open_statement_token1] = ACTIONS(5716), + [aux_sym_file_mode_token2] = ACTIONS(5716), + [aux_sym_file_access_token2] = ACTIONS(5716), + [aux_sym_file_lock_token2] = ACTIONS(5716), + [aux_sym_print_statement_token1] = ACTIONS(5716), + [anon_sym_PLUS] = ACTIONS(5718), + [anon_sym_DASH] = ACTIONS(5716), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [aux_sym_close_statement_token1] = ACTIONS(5716), + [aux_sym_put_statement_token1] = ACTIONS(5716), + [aux_sym_unlock_statement_token1] = ACTIONS(5716), + [aux_sym_seek_statement_token1] = ACTIONS(5716), + [sym_reset_statement] = ACTIONS(5716), + [aux_sym_raise_event_statement_token1] = ACTIONS(5716), + [sym_stop_statement] = ACTIONS(5716), + [sym_beep_statement] = ACTIONS(5716), + [aux_sym_unload_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token2] = ACTIONS(5716), + [aux_sym_def_type_statement_token3] = ACTIONS(5716), + [aux_sym_def_type_statement_token4] = ACTIONS(5716), + [aux_sym_def_type_statement_token5] = ACTIONS(5716), + [aux_sym_def_type_statement_token6] = ACTIONS(5716), + [aux_sym_def_type_statement_token7] = ACTIONS(5716), + [aux_sym_def_type_statement_token8] = ACTIONS(5716), + [aux_sym_def_type_statement_token9] = ACTIONS(5716), + [aux_sym_def_type_statement_token10] = ACTIONS(5716), + [aux_sym_def_type_statement_token11] = ACTIONS(5716), + [aux_sym_def_type_statement_token12] = ACTIONS(5716), + [aux_sym_def_type_statement_token13] = ACTIONS(5716), + [aux_sym_def_type_statement_token14] = ACTIONS(5716), + [aux_sym_call_statement_token1] = ACTIONS(5716), + [sym__ambiguous_call_statement] = ACTIONS(5716), + [aux_sym_addressof_expression_token1] = ACTIONS(5716), + [aux_sym_type_of_expression_token1] = ACTIONS(5716), + [aux_sym_unary_expression_token1] = ACTIONS(5716), + [sym_string_literal] = ACTIONS(5718), + [sym_number_literal] = ACTIONS(5718), + [aux_sym_boolean_literal_token1] = ACTIONS(5716), + [aux_sym_boolean_literal_token2] = ACTIONS(5716), + [sym_nothing_literal] = ACTIONS(5716), + [sym_null_literal] = ACTIONS(5716), + [sym_empty_literal] = ACTIONS(5716), + [sym_date_literal] = ACTIONS(5718), + [anon_sym_POUND] = ACTIONS(5716), + }, + [STATE(5116)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5116), + [sym_identifier] = ACTIONS(8196), + [sym_newline] = ACTIONS(8198), + [anon_sym_COLON] = ACTIONS(8198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8196), + [aux_sym_frm_property_statement_token1] = ACTIONS(8196), + [anon_sym_DOT] = ACTIONS(8196), + [anon_sym_BANG] = ACTIONS(8198), + [aux_sym__attribute_identifier_token1] = ACTIONS(8196), + [aux_sym_option_statement_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8196), + [aux_sym_preprocessor_const_token1] = ACTIONS(8196), + [sym_static_modifier] = ACTIONS(8196), + [sym__dim_keyword] = ACTIONS(8196), + [sym__redim_keyword] = ACTIONS(8196), + [aux_sym_get_accessor_token1] = ACTIONS(8196), + [aux_sym_set_accessor_token1] = ACTIONS(8196), + [anon_sym_COMMA] = ACTIONS(10445), + [aux_sym_const_declaration_token1] = ACTIONS(8196), + [anon_sym_LPAREN] = ACTIONS(8198), + [aux_sym_as_type_clause_token2] = ACTIONS(8196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8196), + [aux_sym_visibility_token1] = ACTIONS(8196), + [aux_sym_visibility_token2] = ACTIONS(8196), + [aux_sym_elseif_fragment_token1] = ACTIONS(8196), + [aux_sym_else_fragment_token1] = ACTIONS(8196), + [aux_sym_select_statement_token1] = ACTIONS(8196), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8196), + [aux_sym__for_header_token1] = ACTIONS(8196), + [aux_sym_do_statement_token1] = ACTIONS(8196), + [aux_sym_do_condition_token1] = ACTIONS(8196), + [aux_sym_with_statement_token1] = ACTIONS(8196), + [aux_sym_exit_statement_token1] = ACTIONS(8196), + [sym_end_statement] = ACTIONS(8198), + [aux_sym_on_goto_statement_token1] = ACTIONS(8196), + [aux_sym_on_goto_statement_token2] = ACTIONS(8196), + [aux_sym_on_error_statement_token2] = ACTIONS(8196), + [sym__ambiguous_redim_statement] = ACTIONS(8198), + [aux_sym_erase_statement_token1] = ACTIONS(8196), + [aux_sym_open_statement_token1] = ACTIONS(8196), + [aux_sym_file_mode_token2] = ACTIONS(8196), + [aux_sym_file_access_token2] = ACTIONS(8196), + [aux_sym_file_lock_token2] = ACTIONS(8196), + [aux_sym_print_statement_token1] = ACTIONS(8196), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(8196), + [anon_sym_QMARK] = ACTIONS(8198), + [aux_sym_close_statement_token1] = ACTIONS(8196), + [aux_sym_put_statement_token1] = ACTIONS(8196), + [aux_sym_unlock_statement_token1] = ACTIONS(8196), + [aux_sym_seek_statement_token1] = ACTIONS(8196), + [sym_reset_statement] = ACTIONS(8196), + [aux_sym_raise_event_statement_token1] = ACTIONS(8196), + [sym_stop_statement] = ACTIONS(8196), + [sym_beep_statement] = ACTIONS(8196), + [aux_sym_unload_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token2] = ACTIONS(8196), + [aux_sym_def_type_statement_token3] = ACTIONS(8196), + [aux_sym_def_type_statement_token4] = ACTIONS(8196), + [aux_sym_def_type_statement_token5] = ACTIONS(8196), + [aux_sym_def_type_statement_token6] = ACTIONS(8196), + [aux_sym_def_type_statement_token7] = ACTIONS(8196), + [aux_sym_def_type_statement_token8] = ACTIONS(8196), + [aux_sym_def_type_statement_token9] = ACTIONS(8196), + [aux_sym_def_type_statement_token10] = ACTIONS(8196), + [aux_sym_def_type_statement_token11] = ACTIONS(8196), + [aux_sym_def_type_statement_token12] = ACTIONS(8196), + [aux_sym_def_type_statement_token13] = ACTIONS(8196), + [aux_sym_def_type_statement_token14] = ACTIONS(8196), + [aux_sym_call_statement_token1] = ACTIONS(8196), + [sym__ambiguous_call_statement] = ACTIONS(8196), + [aux_sym_addressof_expression_token1] = ACTIONS(8196), + [aux_sym_type_of_expression_token1] = ACTIONS(8196), + [aux_sym_unary_expression_token1] = ACTIONS(8196), + [sym_string_literal] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8198), + [aux_sym_boolean_literal_token1] = ACTIONS(8196), + [aux_sym_boolean_literal_token2] = ACTIONS(8196), + [sym_nothing_literal] = ACTIONS(8196), + [sym_null_literal] = ACTIONS(8196), + [sym_empty_literal] = ACTIONS(8196), + [sym_date_literal] = ACTIONS(8198), + [anon_sym_POUND] = ACTIONS(8196), + }, + [STATE(5117)] = { + [sym_do_condition] = STATE(6345), + [sym_identifier] = ACTIONS(8298), + [sym_newline] = ACTIONS(8300), + [anon_sym_COLON] = ACTIONS(8300), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8298), + [aux_sym_frm_property_statement_token1] = ACTIONS(8298), + [anon_sym_DOT] = ACTIONS(8298), + [anon_sym_BANG] = ACTIONS(8300), + [aux_sym__attribute_identifier_token1] = ACTIONS(8298), + [aux_sym_option_statement_token3] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8298), + [aux_sym_preprocessor_const_token1] = ACTIONS(8298), + [sym_static_modifier] = ACTIONS(8298), + [sym__dim_keyword] = ACTIONS(8298), + [sym__redim_keyword] = ACTIONS(8298), + [aux_sym_get_accessor_token1] = ACTIONS(8298), + [aux_sym_set_accessor_token1] = ACTIONS(8298), + [aux_sym_const_declaration_token1] = ACTIONS(8298), + [anon_sym_LPAREN] = ACTIONS(8300), + [aux_sym_as_type_clause_token2] = ACTIONS(8298), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8298), + [aux_sym_visibility_token1] = ACTIONS(8298), + [aux_sym_visibility_token2] = ACTIONS(8298), + [aux_sym_elseif_fragment_token1] = ACTIONS(8298), + [aux_sym_else_fragment_token1] = ACTIONS(8298), + [aux_sym_select_statement_token1] = ACTIONS(8298), + [aux_sym__for_header_token1] = ACTIONS(8298), + [aux_sym_do_statement_token1] = ACTIONS(8298), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8298), + [aux_sym_exit_statement_token1] = ACTIONS(8298), + [sym_end_statement] = ACTIONS(8300), + [aux_sym_on_goto_statement_token1] = ACTIONS(8298), + [aux_sym_on_goto_statement_token2] = ACTIONS(8298), + [aux_sym_on_error_statement_token2] = ACTIONS(8298), + [sym__ambiguous_redim_statement] = ACTIONS(8300), + [aux_sym_erase_statement_token1] = ACTIONS(8298), + [aux_sym_open_statement_token1] = ACTIONS(8298), + [aux_sym_file_mode_token2] = ACTIONS(8298), + [aux_sym_file_access_token2] = ACTIONS(8298), + [aux_sym_file_lock_token2] = ACTIONS(8298), + [aux_sym_print_statement_token1] = ACTIONS(8298), + [anon_sym_PLUS] = ACTIONS(8300), + [anon_sym_DASH] = ACTIONS(8298), + [anon_sym_QMARK] = ACTIONS(8300), + [aux_sym_close_statement_token1] = ACTIONS(8298), + [aux_sym_put_statement_token1] = ACTIONS(8298), + [aux_sym_unlock_statement_token1] = ACTIONS(8298), + [aux_sym_seek_statement_token1] = ACTIONS(8298), + [sym_reset_statement] = ACTIONS(8298), + [aux_sym_raise_event_statement_token1] = ACTIONS(8298), + [sym_stop_statement] = ACTIONS(8298), + [sym_beep_statement] = ACTIONS(8298), + [aux_sym_unload_statement_token1] = ACTIONS(8298), + [aux_sym_def_type_statement_token1] = ACTIONS(8298), + [aux_sym_def_type_statement_token2] = ACTIONS(8298), + [aux_sym_def_type_statement_token3] = ACTIONS(8298), + [aux_sym_def_type_statement_token4] = ACTIONS(8298), + [aux_sym_def_type_statement_token5] = ACTIONS(8298), + [aux_sym_def_type_statement_token6] = ACTIONS(8298), + [aux_sym_def_type_statement_token7] = ACTIONS(8298), + [aux_sym_def_type_statement_token8] = ACTIONS(8298), + [aux_sym_def_type_statement_token9] = ACTIONS(8298), + [aux_sym_def_type_statement_token10] = ACTIONS(8298), + [aux_sym_def_type_statement_token11] = ACTIONS(8298), + [aux_sym_def_type_statement_token12] = ACTIONS(8298), + [aux_sym_def_type_statement_token13] = ACTIONS(8298), + [aux_sym_def_type_statement_token14] = ACTIONS(8298), + [aux_sym_call_statement_token1] = ACTIONS(8298), + [sym__ambiguous_call_statement] = ACTIONS(8298), + [aux_sym_addressof_expression_token1] = ACTIONS(8298), + [aux_sym_type_of_expression_token1] = ACTIONS(8298), + [aux_sym_unary_expression_token1] = ACTIONS(8298), + [sym_string_literal] = ACTIONS(8300), + [sym_number_literal] = ACTIONS(8300), + [aux_sym_boolean_literal_token1] = ACTIONS(8298), + [aux_sym_boolean_literal_token2] = ACTIONS(8298), + [sym_nothing_literal] = ACTIONS(8298), + [sym_null_literal] = ACTIONS(8298), + [sym_empty_literal] = ACTIONS(8298), + [sym_date_literal] = ACTIONS(8300), + [anon_sym_POUND] = ACTIONS(8298), + }, + [STATE(5118)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5154), + [sym_identifier] = ACTIONS(8225), + [sym_newline] = ACTIONS(8227), + [anon_sym_COLON] = ACTIONS(8227), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8225), + [aux_sym_frm_property_statement_token1] = ACTIONS(8225), + [anon_sym_DOT] = ACTIONS(8225), + [anon_sym_BANG] = ACTIONS(8227), + [aux_sym__attribute_identifier_token1] = ACTIONS(8225), + [aux_sym_option_statement_token3] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8225), + [aux_sym_preprocessor_const_token1] = ACTIONS(8225), + [sym_static_modifier] = ACTIONS(8225), + [sym__dim_keyword] = ACTIONS(8225), + [sym__redim_keyword] = ACTIONS(8225), + [aux_sym_get_accessor_token1] = ACTIONS(8225), + [aux_sym_set_accessor_token1] = ACTIONS(8225), + [anon_sym_COMMA] = ACTIONS(10448), + [aux_sym_const_declaration_token1] = ACTIONS(8225), + [anon_sym_LPAREN] = ACTIONS(8227), + [aux_sym_as_type_clause_token2] = ACTIONS(8225), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8225), + [aux_sym_visibility_token1] = ACTIONS(8225), + [aux_sym_visibility_token2] = ACTIONS(8225), + [aux_sym_elseif_fragment_token1] = ACTIONS(8225), + [aux_sym_else_fragment_token1] = ACTIONS(8225), + [aux_sym_select_statement_token1] = ACTIONS(8225), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8225), + [aux_sym__for_header_token1] = ACTIONS(8225), + [aux_sym_do_statement_token1] = ACTIONS(8225), + [aux_sym_do_condition_token1] = ACTIONS(8225), + [aux_sym_with_statement_token1] = ACTIONS(8225), + [aux_sym_exit_statement_token1] = ACTIONS(8225), + [sym_end_statement] = ACTIONS(8227), + [aux_sym_on_goto_statement_token1] = ACTIONS(8225), + [aux_sym_on_goto_statement_token2] = ACTIONS(8225), + [aux_sym_on_error_statement_token2] = ACTIONS(8225), + [sym__ambiguous_redim_statement] = ACTIONS(8227), + [aux_sym_erase_statement_token1] = ACTIONS(8225), + [aux_sym_open_statement_token1] = ACTIONS(8225), + [aux_sym_file_mode_token2] = ACTIONS(8225), + [aux_sym_file_access_token2] = ACTIONS(8225), + [aux_sym_file_lock_token2] = ACTIONS(8225), + [aux_sym_print_statement_token1] = ACTIONS(8225), + [anon_sym_PLUS] = ACTIONS(8227), + [anon_sym_DASH] = ACTIONS(8225), + [anon_sym_QMARK] = ACTIONS(8227), + [aux_sym_close_statement_token1] = ACTIONS(8225), + [aux_sym_put_statement_token1] = ACTIONS(8225), + [aux_sym_unlock_statement_token1] = ACTIONS(8225), + [aux_sym_seek_statement_token1] = ACTIONS(8225), + [sym_reset_statement] = ACTIONS(8225), + [aux_sym_raise_event_statement_token1] = ACTIONS(8225), + [sym_stop_statement] = ACTIONS(8225), + [sym_beep_statement] = ACTIONS(8225), + [aux_sym_unload_statement_token1] = ACTIONS(8225), + [aux_sym_def_type_statement_token1] = ACTIONS(8225), + [aux_sym_def_type_statement_token2] = ACTIONS(8225), + [aux_sym_def_type_statement_token3] = ACTIONS(8225), + [aux_sym_def_type_statement_token4] = ACTIONS(8225), + [aux_sym_def_type_statement_token5] = ACTIONS(8225), + [aux_sym_def_type_statement_token6] = ACTIONS(8225), + [aux_sym_def_type_statement_token7] = ACTIONS(8225), + [aux_sym_def_type_statement_token8] = ACTIONS(8225), + [aux_sym_def_type_statement_token9] = ACTIONS(8225), + [aux_sym_def_type_statement_token10] = ACTIONS(8225), + [aux_sym_def_type_statement_token11] = ACTIONS(8225), + [aux_sym_def_type_statement_token12] = ACTIONS(8225), + [aux_sym_def_type_statement_token13] = ACTIONS(8225), + [aux_sym_def_type_statement_token14] = ACTIONS(8225), + [aux_sym_call_statement_token1] = ACTIONS(8225), + [sym__ambiguous_call_statement] = ACTIONS(8225), + [aux_sym_addressof_expression_token1] = ACTIONS(8225), + [aux_sym_type_of_expression_token1] = ACTIONS(8225), + [aux_sym_unary_expression_token1] = ACTIONS(8225), + [sym_string_literal] = ACTIONS(8227), + [sym_number_literal] = ACTIONS(8227), + [aux_sym_boolean_literal_token1] = ACTIONS(8225), + [aux_sym_boolean_literal_token2] = ACTIONS(8225), + [sym_nothing_literal] = ACTIONS(8225), + [sym_null_literal] = ACTIONS(8225), + [sym_empty_literal] = ACTIONS(8225), + [sym_date_literal] = ACTIONS(8227), + [anon_sym_POUND] = ACTIONS(8225), + }, + [STATE(5119)] = { + [sym_identifier] = ACTIONS(8070), + [sym_newline] = ACTIONS(8072), + [anon_sym_COLON] = ACTIONS(8072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8070), + [aux_sym_frm_property_statement_token1] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(8072), + [anon_sym_DOT] = ACTIONS(8070), + [anon_sym_BANG] = ACTIONS(8072), + [aux_sym__attribute_identifier_token1] = ACTIONS(8070), + [aux_sym_option_statement_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8070), + [aux_sym_preprocessor_const_token1] = ACTIONS(8070), + [sym_static_modifier] = ACTIONS(8070), + [sym__dim_keyword] = ACTIONS(8070), + [sym__redim_keyword] = ACTIONS(8070), + [aux_sym_get_accessor_token1] = ACTIONS(8070), + [aux_sym_set_accessor_token1] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [aux_sym_const_declaration_token1] = ACTIONS(8070), + [anon_sym_LPAREN] = ACTIONS(8072), + [aux_sym_as_type_clause_token2] = ACTIONS(8070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8070), + [aux_sym_visibility_token1] = ACTIONS(8070), + [aux_sym_visibility_token2] = ACTIONS(8070), + [aux_sym_elseif_fragment_token1] = ACTIONS(8070), + [aux_sym_else_fragment_token1] = ACTIONS(8070), + [aux_sym_select_statement_token1] = ACTIONS(8070), + [aux_sym__for_header_token1] = ACTIONS(8070), + [aux_sym_do_statement_token1] = ACTIONS(8070), + [aux_sym_do_statement_token2] = ACTIONS(8070), + [aux_sym_do_condition_token1] = ACTIONS(8070), + [aux_sym_with_statement_token1] = ACTIONS(8070), + [aux_sym_exit_statement_token1] = ACTIONS(8070), + [sym_end_statement] = ACTIONS(8072), + [aux_sym_on_goto_statement_token1] = ACTIONS(8070), + [aux_sym_on_goto_statement_token2] = ACTIONS(8070), + [aux_sym_on_error_statement_token2] = ACTIONS(8070), + [sym__ambiguous_redim_statement] = ACTIONS(8072), + [aux_sym_erase_statement_token1] = ACTIONS(8070), + [aux_sym_open_statement_token1] = ACTIONS(8070), + [aux_sym_file_mode_token2] = ACTIONS(8070), + [aux_sym_file_access_token2] = ACTIONS(8070), + [aux_sym_file_lock_token2] = ACTIONS(8070), + [aux_sym_print_statement_token1] = ACTIONS(8070), + [anon_sym_PLUS] = ACTIONS(8072), + [anon_sym_DASH] = ACTIONS(8070), + [anon_sym_QMARK] = ACTIONS(8072), + [aux_sym_close_statement_token1] = ACTIONS(8070), + [aux_sym_put_statement_token1] = ACTIONS(8070), + [aux_sym_unlock_statement_token1] = ACTIONS(8070), + [aux_sym_seek_statement_token1] = ACTIONS(8070), + [sym_reset_statement] = ACTIONS(8070), + [aux_sym_raise_event_statement_token1] = ACTIONS(8070), + [sym_stop_statement] = ACTIONS(8070), + [sym_beep_statement] = ACTIONS(8070), + [aux_sym_unload_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token2] = ACTIONS(8070), + [aux_sym_def_type_statement_token3] = ACTIONS(8070), + [aux_sym_def_type_statement_token4] = ACTIONS(8070), + [aux_sym_def_type_statement_token5] = ACTIONS(8070), + [aux_sym_def_type_statement_token6] = ACTIONS(8070), + [aux_sym_def_type_statement_token7] = ACTIONS(8070), + [aux_sym_def_type_statement_token8] = ACTIONS(8070), + [aux_sym_def_type_statement_token9] = ACTIONS(8070), + [aux_sym_def_type_statement_token10] = ACTIONS(8070), + [aux_sym_def_type_statement_token11] = ACTIONS(8070), + [aux_sym_def_type_statement_token12] = ACTIONS(8070), + [aux_sym_def_type_statement_token13] = ACTIONS(8070), + [aux_sym_def_type_statement_token14] = ACTIONS(8070), + [aux_sym_call_statement_token1] = ACTIONS(8070), + [sym__ambiguous_call_statement] = ACTIONS(8070), + [aux_sym_addressof_expression_token1] = ACTIONS(8070), + [aux_sym_type_of_expression_token1] = ACTIONS(8070), + [aux_sym_unary_expression_token1] = ACTIONS(8070), + [sym_string_literal] = ACTIONS(8072), + [sym_number_literal] = ACTIONS(8072), + [aux_sym_boolean_literal_token1] = ACTIONS(8070), + [aux_sym_boolean_literal_token2] = ACTIONS(8070), + [sym_nothing_literal] = ACTIONS(8070), + [sym_null_literal] = ACTIONS(8070), + [sym_empty_literal] = ACTIONS(8070), + [sym_date_literal] = ACTIONS(8072), + [anon_sym_POUND] = ACTIONS(8070), + }, + [STATE(5120)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5165), + [sym_identifier] = ACTIONS(4166), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5154), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4164), + [aux_sym_as_type_clause_token2] = ACTIONS(4166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4166), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4166), + [aux_sym_type_of_expression_token1] = ACTIONS(4166), + [aux_sym_unary_expression_token1] = ACTIONS(4166), + [sym_string_literal] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4164), + [aux_sym_boolean_literal_token1] = ACTIONS(4166), + [aux_sym_boolean_literal_token2] = ACTIONS(4166), + [sym_nothing_literal] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4166), + [sym_empty_literal] = ACTIONS(4166), + [sym_date_literal] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4166), + }, + [STATE(5121)] = { + [aux_sym_redim_statement_repeat1] = STATE(5143), + [sym_identifier] = ACTIONS(8561), + [sym_newline] = ACTIONS(8563), + [anon_sym_COLON] = ACTIONS(8563), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8561), + [aux_sym_frm_property_statement_token1] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8561), + [anon_sym_BANG] = ACTIONS(8563), + [aux_sym__attribute_identifier_token1] = ACTIONS(8561), + [aux_sym_option_statement_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8561), + [aux_sym_preprocessor_const_token1] = ACTIONS(8561), + [sym_static_modifier] = ACTIONS(8561), + [sym__dim_keyword] = ACTIONS(8561), + [sym__redim_keyword] = ACTIONS(8561), + [aux_sym_get_accessor_token1] = ACTIONS(8561), + [aux_sym_set_accessor_token1] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(10431), + [aux_sym_const_declaration_token1] = ACTIONS(8561), + [anon_sym_LPAREN] = ACTIONS(8563), + [aux_sym_as_type_clause_token2] = ACTIONS(8561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8561), + [aux_sym_visibility_token1] = ACTIONS(8561), + [aux_sym_visibility_token2] = ACTIONS(8561), + [aux_sym_elseif_fragment_token1] = ACTIONS(8561), + [aux_sym_else_fragment_token1] = ACTIONS(8561), + [aux_sym_select_statement_token1] = ACTIONS(8561), + [aux_sym__for_header_token1] = ACTIONS(8561), + [aux_sym_do_statement_token1] = ACTIONS(8561), + [aux_sym_do_condition_token1] = ACTIONS(8561), + [aux_sym_while_statement_token1] = ACTIONS(8561), + [aux_sym_with_statement_token1] = ACTIONS(8561), + [aux_sym_exit_statement_token1] = ACTIONS(8561), + [sym_end_statement] = ACTIONS(8563), + [aux_sym_on_goto_statement_token1] = ACTIONS(8561), + [aux_sym_on_goto_statement_token2] = ACTIONS(8561), + [aux_sym_on_error_statement_token2] = ACTIONS(8561), + [sym__ambiguous_redim_statement] = ACTIONS(8563), + [aux_sym_erase_statement_token1] = ACTIONS(8561), + [aux_sym_open_statement_token1] = ACTIONS(8561), + [aux_sym_file_mode_token2] = ACTIONS(8561), + [aux_sym_file_access_token2] = ACTIONS(8561), + [aux_sym_file_lock_token2] = ACTIONS(8561), + [aux_sym_print_statement_token1] = ACTIONS(8561), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(8561), + [anon_sym_QMARK] = ACTIONS(8563), + [aux_sym_close_statement_token1] = ACTIONS(8561), + [aux_sym_put_statement_token1] = ACTIONS(8561), + [aux_sym_unlock_statement_token1] = ACTIONS(8561), + [aux_sym_seek_statement_token1] = ACTIONS(8561), + [sym_reset_statement] = ACTIONS(8561), + [aux_sym_raise_event_statement_token1] = ACTIONS(8561), + [sym_stop_statement] = ACTIONS(8561), + [sym_beep_statement] = ACTIONS(8561), + [aux_sym_unload_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token2] = ACTIONS(8561), + [aux_sym_def_type_statement_token3] = ACTIONS(8561), + [aux_sym_def_type_statement_token4] = ACTIONS(8561), + [aux_sym_def_type_statement_token5] = ACTIONS(8561), + [aux_sym_def_type_statement_token6] = ACTIONS(8561), + [aux_sym_def_type_statement_token7] = ACTIONS(8561), + [aux_sym_def_type_statement_token8] = ACTIONS(8561), + [aux_sym_def_type_statement_token9] = ACTIONS(8561), + [aux_sym_def_type_statement_token10] = ACTIONS(8561), + [aux_sym_def_type_statement_token11] = ACTIONS(8561), + [aux_sym_def_type_statement_token12] = ACTIONS(8561), + [aux_sym_def_type_statement_token13] = ACTIONS(8561), + [aux_sym_def_type_statement_token14] = ACTIONS(8561), + [aux_sym_call_statement_token1] = ACTIONS(8561), + [sym__ambiguous_call_statement] = ACTIONS(8561), + [aux_sym_addressof_expression_token1] = ACTIONS(8561), + [aux_sym_type_of_expression_token1] = ACTIONS(8561), + [aux_sym_unary_expression_token1] = ACTIONS(8561), + [sym_string_literal] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8563), + [aux_sym_boolean_literal_token1] = ACTIONS(8561), + [aux_sym_boolean_literal_token2] = ACTIONS(8561), + [sym_nothing_literal] = ACTIONS(8561), + [sym_null_literal] = ACTIONS(8561), + [sym_empty_literal] = ACTIONS(8561), + [sym_date_literal] = ACTIONS(8563), + [anon_sym_POUND] = ACTIONS(8561), + }, + [STATE(5122)] = { + [aux_sym_redim_statement_repeat1] = STATE(5144), + [sym_identifier] = ACTIONS(8561), + [sym_newline] = ACTIONS(8563), + [anon_sym_COLON] = ACTIONS(8563), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8561), + [aux_sym_frm_property_statement_token1] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8561), + [anon_sym_BANG] = ACTIONS(8563), + [aux_sym__attribute_identifier_token1] = ACTIONS(8561), + [aux_sym_option_statement_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8561), + [aux_sym_preprocessor_const_token1] = ACTIONS(8561), + [sym_static_modifier] = ACTIONS(8561), + [sym__dim_keyword] = ACTIONS(8561), + [sym__redim_keyword] = ACTIONS(8561), + [aux_sym_get_accessor_token1] = ACTIONS(8561), + [aux_sym_set_accessor_token1] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(10431), + [aux_sym_const_declaration_token1] = ACTIONS(8561), + [anon_sym_LPAREN] = ACTIONS(8563), + [aux_sym_as_type_clause_token2] = ACTIONS(8561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8561), + [aux_sym_visibility_token1] = ACTIONS(8561), + [aux_sym_visibility_token2] = ACTIONS(8561), + [aux_sym_elseif_fragment_token1] = ACTIONS(8561), + [aux_sym_else_fragment_token1] = ACTIONS(8561), + [aux_sym_select_statement_token1] = ACTIONS(8561), + [aux_sym__for_header_token1] = ACTIONS(8561), + [aux_sym_do_statement_token1] = ACTIONS(8561), + [aux_sym_do_condition_token1] = ACTIONS(8561), + [aux_sym_while_statement_token1] = ACTIONS(8561), + [aux_sym_with_statement_token1] = ACTIONS(8561), + [aux_sym_exit_statement_token1] = ACTIONS(8561), + [sym_end_statement] = ACTIONS(8563), + [aux_sym_on_goto_statement_token1] = ACTIONS(8561), + [aux_sym_on_goto_statement_token2] = ACTIONS(8561), + [aux_sym_on_error_statement_token2] = ACTIONS(8561), + [sym__ambiguous_redim_statement] = ACTIONS(8563), + [aux_sym_erase_statement_token1] = ACTIONS(8561), + [aux_sym_open_statement_token1] = ACTIONS(8561), + [aux_sym_file_mode_token2] = ACTIONS(8561), + [aux_sym_file_access_token2] = ACTIONS(8561), + [aux_sym_file_lock_token2] = ACTIONS(8561), + [aux_sym_print_statement_token1] = ACTIONS(8561), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(8561), + [anon_sym_QMARK] = ACTIONS(8563), + [aux_sym_close_statement_token1] = ACTIONS(8561), + [aux_sym_put_statement_token1] = ACTIONS(8561), + [aux_sym_unlock_statement_token1] = ACTIONS(8561), + [aux_sym_seek_statement_token1] = ACTIONS(8561), + [sym_reset_statement] = ACTIONS(8561), + [aux_sym_raise_event_statement_token1] = ACTIONS(8561), + [sym_stop_statement] = ACTIONS(8561), + [sym_beep_statement] = ACTIONS(8561), + [aux_sym_unload_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token2] = ACTIONS(8561), + [aux_sym_def_type_statement_token3] = ACTIONS(8561), + [aux_sym_def_type_statement_token4] = ACTIONS(8561), + [aux_sym_def_type_statement_token5] = ACTIONS(8561), + [aux_sym_def_type_statement_token6] = ACTIONS(8561), + [aux_sym_def_type_statement_token7] = ACTIONS(8561), + [aux_sym_def_type_statement_token8] = ACTIONS(8561), + [aux_sym_def_type_statement_token9] = ACTIONS(8561), + [aux_sym_def_type_statement_token10] = ACTIONS(8561), + [aux_sym_def_type_statement_token11] = ACTIONS(8561), + [aux_sym_def_type_statement_token12] = ACTIONS(8561), + [aux_sym_def_type_statement_token13] = ACTIONS(8561), + [aux_sym_def_type_statement_token14] = ACTIONS(8561), + [aux_sym_call_statement_token1] = ACTIONS(8561), + [sym__ambiguous_call_statement] = ACTIONS(8561), + [aux_sym_addressof_expression_token1] = ACTIONS(8561), + [aux_sym_type_of_expression_token1] = ACTIONS(8561), + [aux_sym_unary_expression_token1] = ACTIONS(8561), + [sym_string_literal] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8563), + [aux_sym_boolean_literal_token1] = ACTIONS(8561), + [aux_sym_boolean_literal_token2] = ACTIONS(8561), + [sym_nothing_literal] = ACTIONS(8561), + [sym_null_literal] = ACTIONS(8561), + [sym_empty_literal] = ACTIONS(8561), + [sym_date_literal] = ACTIONS(8563), + [anon_sym_POUND] = ACTIONS(8561), + }, + [STATE(5123)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5361), + [sym_identifier] = ACTIONS(4166), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5154), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4164), + [aux_sym_as_type_clause_token2] = ACTIONS(4166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4166), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4166), + [aux_sym_type_of_expression_token1] = ACTIONS(4166), + [aux_sym_unary_expression_token1] = ACTIONS(4166), + [sym_string_literal] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4164), + [aux_sym_boolean_literal_token1] = ACTIONS(4166), + [aux_sym_boolean_literal_token2] = ACTIONS(4166), + [sym_nothing_literal] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4166), + [sym_empty_literal] = ACTIONS(4166), + [sym_date_literal] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4166), + }, + [STATE(5124)] = { + [sym_do_condition] = STATE(6866), + [sym_identifier] = ACTIONS(8170), + [sym_newline] = ACTIONS(8172), + [anon_sym_COLON] = ACTIONS(8172), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8170), + [aux_sym_frm_property_statement_token1] = ACTIONS(8170), + [anon_sym_DOT] = ACTIONS(8170), + [anon_sym_BANG] = ACTIONS(8172), + [aux_sym__attribute_identifier_token1] = ACTIONS(8170), + [aux_sym_option_statement_token3] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8170), + [aux_sym_preprocessor_const_token1] = ACTIONS(8170), + [sym_static_modifier] = ACTIONS(8170), + [sym__dim_keyword] = ACTIONS(8170), + [sym__redim_keyword] = ACTIONS(8170), + [aux_sym_get_accessor_token1] = ACTIONS(8170), + [aux_sym_set_accessor_token1] = ACTIONS(8170), + [aux_sym_const_declaration_token1] = ACTIONS(8170), + [anon_sym_LPAREN] = ACTIONS(8172), + [aux_sym_as_type_clause_token2] = ACTIONS(8170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8170), + [aux_sym_visibility_token1] = ACTIONS(8170), + [aux_sym_visibility_token2] = ACTIONS(8170), + [aux_sym_elseif_fragment_token1] = ACTIONS(8170), + [aux_sym_else_fragment_token1] = ACTIONS(8170), + [aux_sym_select_statement_token1] = ACTIONS(8170), + [aux_sym__for_header_token1] = ACTIONS(8170), + [aux_sym_do_statement_token1] = ACTIONS(8170), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8170), + [aux_sym_with_statement_token1] = ACTIONS(8170), + [aux_sym_exit_statement_token1] = ACTIONS(8170), + [sym_end_statement] = ACTIONS(8172), + [aux_sym_on_goto_statement_token1] = ACTIONS(8170), + [aux_sym_on_goto_statement_token2] = ACTIONS(8170), + [aux_sym_on_error_statement_token2] = ACTIONS(8170), + [sym__ambiguous_redim_statement] = ACTIONS(8172), + [aux_sym_erase_statement_token1] = ACTIONS(8170), + [aux_sym_open_statement_token1] = ACTIONS(8170), + [aux_sym_file_mode_token2] = ACTIONS(8170), + [aux_sym_file_access_token2] = ACTIONS(8170), + [aux_sym_file_lock_token2] = ACTIONS(8170), + [aux_sym_print_statement_token1] = ACTIONS(8170), + [anon_sym_PLUS] = ACTIONS(8172), + [anon_sym_DASH] = ACTIONS(8170), + [anon_sym_QMARK] = ACTIONS(8172), + [aux_sym_close_statement_token1] = ACTIONS(8170), + [aux_sym_put_statement_token1] = ACTIONS(8170), + [aux_sym_unlock_statement_token1] = ACTIONS(8170), + [aux_sym_seek_statement_token1] = ACTIONS(8170), + [sym_reset_statement] = ACTIONS(8170), + [aux_sym_raise_event_statement_token1] = ACTIONS(8170), + [sym_stop_statement] = ACTIONS(8170), + [sym_beep_statement] = ACTIONS(8170), + [aux_sym_unload_statement_token1] = ACTIONS(8170), + [aux_sym_def_type_statement_token1] = ACTIONS(8170), + [aux_sym_def_type_statement_token2] = ACTIONS(8170), + [aux_sym_def_type_statement_token3] = ACTIONS(8170), + [aux_sym_def_type_statement_token4] = ACTIONS(8170), + [aux_sym_def_type_statement_token5] = ACTIONS(8170), + [aux_sym_def_type_statement_token6] = ACTIONS(8170), + [aux_sym_def_type_statement_token7] = ACTIONS(8170), + [aux_sym_def_type_statement_token8] = ACTIONS(8170), + [aux_sym_def_type_statement_token9] = ACTIONS(8170), + [aux_sym_def_type_statement_token10] = ACTIONS(8170), + [aux_sym_def_type_statement_token11] = ACTIONS(8170), + [aux_sym_def_type_statement_token12] = ACTIONS(8170), + [aux_sym_def_type_statement_token13] = ACTIONS(8170), + [aux_sym_def_type_statement_token14] = ACTIONS(8170), + [aux_sym_call_statement_token1] = ACTIONS(8170), + [sym__ambiguous_call_statement] = ACTIONS(8170), + [aux_sym_addressof_expression_token1] = ACTIONS(8170), + [aux_sym_type_of_expression_token1] = ACTIONS(8170), + [aux_sym_unary_expression_token1] = ACTIONS(8170), + [sym_string_literal] = ACTIONS(8172), + [sym_number_literal] = ACTIONS(8172), + [aux_sym_boolean_literal_token1] = ACTIONS(8170), + [aux_sym_boolean_literal_token2] = ACTIONS(8170), + [sym_nothing_literal] = ACTIONS(8170), + [sym_null_literal] = ACTIONS(8170), + [sym_empty_literal] = ACTIONS(8170), + [sym_date_literal] = ACTIONS(8172), + [anon_sym_POUND] = ACTIONS(8170), + }, + [STATE(5125)] = { + [sym_do_condition] = STATE(6869), + [sym_identifier] = ACTIONS(8140), + [sym_newline] = ACTIONS(8142), + [anon_sym_COLON] = ACTIONS(8142), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8140), + [aux_sym_frm_property_statement_token1] = ACTIONS(8140), + [anon_sym_DOT] = ACTIONS(8140), + [anon_sym_BANG] = ACTIONS(8142), + [aux_sym__attribute_identifier_token1] = ACTIONS(8140), + [aux_sym_option_statement_token3] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8140), + [aux_sym_preprocessor_const_token1] = ACTIONS(8140), + [sym_static_modifier] = ACTIONS(8140), + [sym__dim_keyword] = ACTIONS(8140), + [sym__redim_keyword] = ACTIONS(8140), + [aux_sym_get_accessor_token1] = ACTIONS(8140), + [aux_sym_set_accessor_token1] = ACTIONS(8140), + [aux_sym_const_declaration_token1] = ACTIONS(8140), + [anon_sym_LPAREN] = ACTIONS(8142), + [aux_sym_as_type_clause_token2] = ACTIONS(8140), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8140), + [aux_sym_visibility_token1] = ACTIONS(8140), + [aux_sym_visibility_token2] = ACTIONS(8140), + [aux_sym_elseif_fragment_token1] = ACTIONS(8140), + [aux_sym_else_fragment_token1] = ACTIONS(8140), + [aux_sym_select_statement_token1] = ACTIONS(8140), + [aux_sym__for_header_token1] = ACTIONS(8140), + [aux_sym_do_statement_token1] = ACTIONS(8140), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8140), + [aux_sym_with_statement_token1] = ACTIONS(8140), + [aux_sym_exit_statement_token1] = ACTIONS(8140), + [sym_end_statement] = ACTIONS(8142), + [aux_sym_on_goto_statement_token1] = ACTIONS(8140), + [aux_sym_on_goto_statement_token2] = ACTIONS(8140), + [aux_sym_on_error_statement_token2] = ACTIONS(8140), + [sym__ambiguous_redim_statement] = ACTIONS(8142), + [aux_sym_erase_statement_token1] = ACTIONS(8140), + [aux_sym_open_statement_token1] = ACTIONS(8140), + [aux_sym_file_mode_token2] = ACTIONS(8140), + [aux_sym_file_access_token2] = ACTIONS(8140), + [aux_sym_file_lock_token2] = ACTIONS(8140), + [aux_sym_print_statement_token1] = ACTIONS(8140), + [anon_sym_PLUS] = ACTIONS(8142), + [anon_sym_DASH] = ACTIONS(8140), + [anon_sym_QMARK] = ACTIONS(8142), + [aux_sym_close_statement_token1] = ACTIONS(8140), + [aux_sym_put_statement_token1] = ACTIONS(8140), + [aux_sym_unlock_statement_token1] = ACTIONS(8140), + [aux_sym_seek_statement_token1] = ACTIONS(8140), + [sym_reset_statement] = ACTIONS(8140), + [aux_sym_raise_event_statement_token1] = ACTIONS(8140), + [sym_stop_statement] = ACTIONS(8140), + [sym_beep_statement] = ACTIONS(8140), + [aux_sym_unload_statement_token1] = ACTIONS(8140), + [aux_sym_def_type_statement_token1] = ACTIONS(8140), + [aux_sym_def_type_statement_token2] = ACTIONS(8140), + [aux_sym_def_type_statement_token3] = ACTIONS(8140), + [aux_sym_def_type_statement_token4] = ACTIONS(8140), + [aux_sym_def_type_statement_token5] = ACTIONS(8140), + [aux_sym_def_type_statement_token6] = ACTIONS(8140), + [aux_sym_def_type_statement_token7] = ACTIONS(8140), + [aux_sym_def_type_statement_token8] = ACTIONS(8140), + [aux_sym_def_type_statement_token9] = ACTIONS(8140), + [aux_sym_def_type_statement_token10] = ACTIONS(8140), + [aux_sym_def_type_statement_token11] = ACTIONS(8140), + [aux_sym_def_type_statement_token12] = ACTIONS(8140), + [aux_sym_def_type_statement_token13] = ACTIONS(8140), + [aux_sym_def_type_statement_token14] = ACTIONS(8140), + [aux_sym_call_statement_token1] = ACTIONS(8140), + [sym__ambiguous_call_statement] = ACTIONS(8140), + [aux_sym_addressof_expression_token1] = ACTIONS(8140), + [aux_sym_type_of_expression_token1] = ACTIONS(8140), + [aux_sym_unary_expression_token1] = ACTIONS(8140), + [sym_string_literal] = ACTIONS(8142), + [sym_number_literal] = ACTIONS(8142), + [aux_sym_boolean_literal_token1] = ACTIONS(8140), + [aux_sym_boolean_literal_token2] = ACTIONS(8140), + [sym_nothing_literal] = ACTIONS(8140), + [sym_null_literal] = ACTIONS(8140), + [sym_empty_literal] = ACTIONS(8140), + [sym_date_literal] = ACTIONS(8142), + [anon_sym_POUND] = ACTIONS(8140), + }, + [STATE(5126)] = { + [aux_sym_erase_statement_repeat1] = STATE(5153), + [sym_identifier] = ACTIONS(8320), + [sym_newline] = ACTIONS(8322), + [anon_sym_COLON] = ACTIONS(8322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8320), + [aux_sym_frm_property_statement_token1] = ACTIONS(8320), + [anon_sym_DOT] = ACTIONS(8320), + [anon_sym_BANG] = ACTIONS(8322), + [aux_sym__attribute_identifier_token1] = ACTIONS(8320), + [aux_sym_option_statement_token3] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8320), + [aux_sym_preprocessor_const_token1] = ACTIONS(8320), + [sym_static_modifier] = ACTIONS(8320), + [sym__dim_keyword] = ACTIONS(8320), + [sym__redim_keyword] = ACTIONS(8320), + [aux_sym_get_accessor_token1] = ACTIONS(8320), + [aux_sym_set_accessor_token1] = ACTIONS(8320), + [anon_sym_COMMA] = ACTIONS(10433), + [aux_sym_const_declaration_token1] = ACTIONS(8320), + [anon_sym_LPAREN] = ACTIONS(8322), + [aux_sym_as_type_clause_token2] = ACTIONS(8320), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8320), + [aux_sym_visibility_token1] = ACTIONS(8320), + [aux_sym_visibility_token2] = ACTIONS(8320), + [aux_sym_elseif_fragment_token1] = ACTIONS(8320), + [aux_sym_else_fragment_token1] = ACTIONS(8320), + [aux_sym_select_statement_token1] = ACTIONS(8320), + [aux_sym__for_header_token1] = ACTIONS(8320), + [aux_sym_do_statement_token1] = ACTIONS(8320), + [aux_sym_do_condition_token1] = ACTIONS(8320), + [aux_sym_while_statement_token1] = ACTIONS(8320), + [aux_sym_with_statement_token1] = ACTIONS(8320), + [aux_sym_exit_statement_token1] = ACTIONS(8320), + [sym_end_statement] = ACTIONS(8322), + [aux_sym_on_goto_statement_token1] = ACTIONS(8320), + [aux_sym_on_goto_statement_token2] = ACTIONS(8320), + [aux_sym_on_error_statement_token2] = ACTIONS(8320), + [sym__ambiguous_redim_statement] = ACTIONS(8322), + [aux_sym_erase_statement_token1] = ACTIONS(8320), + [aux_sym_open_statement_token1] = ACTIONS(8320), + [aux_sym_file_mode_token2] = ACTIONS(8320), + [aux_sym_file_access_token2] = ACTIONS(8320), + [aux_sym_file_lock_token2] = ACTIONS(8320), + [aux_sym_print_statement_token1] = ACTIONS(8320), + [anon_sym_PLUS] = ACTIONS(8322), + [anon_sym_DASH] = ACTIONS(8320), + [anon_sym_QMARK] = ACTIONS(8322), + [aux_sym_close_statement_token1] = ACTIONS(8320), + [aux_sym_put_statement_token1] = ACTIONS(8320), + [aux_sym_unlock_statement_token1] = ACTIONS(8320), + [aux_sym_seek_statement_token1] = ACTIONS(8320), + [sym_reset_statement] = ACTIONS(8320), + [aux_sym_raise_event_statement_token1] = ACTIONS(8320), + [sym_stop_statement] = ACTIONS(8320), + [sym_beep_statement] = ACTIONS(8320), + [aux_sym_unload_statement_token1] = ACTIONS(8320), + [aux_sym_def_type_statement_token1] = ACTIONS(8320), + [aux_sym_def_type_statement_token2] = ACTIONS(8320), + [aux_sym_def_type_statement_token3] = ACTIONS(8320), + [aux_sym_def_type_statement_token4] = ACTIONS(8320), + [aux_sym_def_type_statement_token5] = ACTIONS(8320), + [aux_sym_def_type_statement_token6] = ACTIONS(8320), + [aux_sym_def_type_statement_token7] = ACTIONS(8320), + [aux_sym_def_type_statement_token8] = ACTIONS(8320), + [aux_sym_def_type_statement_token9] = ACTIONS(8320), + [aux_sym_def_type_statement_token10] = ACTIONS(8320), + [aux_sym_def_type_statement_token11] = ACTIONS(8320), + [aux_sym_def_type_statement_token12] = ACTIONS(8320), + [aux_sym_def_type_statement_token13] = ACTIONS(8320), + [aux_sym_def_type_statement_token14] = ACTIONS(8320), + [aux_sym_call_statement_token1] = ACTIONS(8320), + [sym__ambiguous_call_statement] = ACTIONS(8320), + [aux_sym_addressof_expression_token1] = ACTIONS(8320), + [aux_sym_type_of_expression_token1] = ACTIONS(8320), + [aux_sym_unary_expression_token1] = ACTIONS(8320), + [sym_string_literal] = ACTIONS(8322), + [sym_number_literal] = ACTIONS(8322), + [aux_sym_boolean_literal_token1] = ACTIONS(8320), + [aux_sym_boolean_literal_token2] = ACTIONS(8320), + [sym_nothing_literal] = ACTIONS(8320), + [sym_null_literal] = ACTIONS(8320), + [sym_empty_literal] = ACTIONS(8320), + [sym_date_literal] = ACTIONS(8322), + [anon_sym_POUND] = ACTIONS(8320), + }, + [STATE(5127)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5154), + [sym_identifier] = ACTIONS(8231), + [sym_newline] = ACTIONS(8233), + [anon_sym_COLON] = ACTIONS(8233), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8231), + [aux_sym_frm_property_statement_token1] = ACTIONS(8231), + [anon_sym_DOT] = ACTIONS(8231), + [anon_sym_BANG] = ACTIONS(8233), + [aux_sym__attribute_identifier_token1] = ACTIONS(8231), + [aux_sym_option_statement_token3] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8231), + [aux_sym_preprocessor_const_token1] = ACTIONS(8231), + [sym_static_modifier] = ACTIONS(8231), + [sym__dim_keyword] = ACTIONS(8231), + [sym__redim_keyword] = ACTIONS(8231), + [aux_sym_get_accessor_token1] = ACTIONS(8231), + [aux_sym_set_accessor_token1] = ACTIONS(8231), + [anon_sym_COMMA] = ACTIONS(10448), + [aux_sym_const_declaration_token1] = ACTIONS(8231), + [anon_sym_LPAREN] = ACTIONS(8233), + [aux_sym_as_type_clause_token2] = ACTIONS(8231), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8231), + [aux_sym_visibility_token1] = ACTIONS(8231), + [aux_sym_visibility_token2] = ACTIONS(8231), + [aux_sym_elseif_fragment_token1] = ACTIONS(8231), + [aux_sym_else_fragment_token1] = ACTIONS(8231), + [aux_sym_select_statement_token1] = ACTIONS(8231), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8231), + [aux_sym__for_header_token1] = ACTIONS(8231), + [aux_sym_do_statement_token1] = ACTIONS(8231), + [aux_sym_do_condition_token1] = ACTIONS(8231), + [aux_sym_with_statement_token1] = ACTIONS(8231), + [aux_sym_exit_statement_token1] = ACTIONS(8231), + [sym_end_statement] = ACTIONS(8233), + [aux_sym_on_goto_statement_token1] = ACTIONS(8231), + [aux_sym_on_goto_statement_token2] = ACTIONS(8231), + [aux_sym_on_error_statement_token2] = ACTIONS(8231), + [sym__ambiguous_redim_statement] = ACTIONS(8233), + [aux_sym_erase_statement_token1] = ACTIONS(8231), + [aux_sym_open_statement_token1] = ACTIONS(8231), + [aux_sym_file_mode_token2] = ACTIONS(8231), + [aux_sym_file_access_token2] = ACTIONS(8231), + [aux_sym_file_lock_token2] = ACTIONS(8231), + [aux_sym_print_statement_token1] = ACTIONS(8231), + [anon_sym_PLUS] = ACTIONS(8233), + [anon_sym_DASH] = ACTIONS(8231), + [anon_sym_QMARK] = ACTIONS(8233), + [aux_sym_close_statement_token1] = ACTIONS(8231), + [aux_sym_put_statement_token1] = ACTIONS(8231), + [aux_sym_unlock_statement_token1] = ACTIONS(8231), + [aux_sym_seek_statement_token1] = ACTIONS(8231), + [sym_reset_statement] = ACTIONS(8231), + [aux_sym_raise_event_statement_token1] = ACTIONS(8231), + [sym_stop_statement] = ACTIONS(8231), + [sym_beep_statement] = ACTIONS(8231), + [aux_sym_unload_statement_token1] = ACTIONS(8231), + [aux_sym_def_type_statement_token1] = ACTIONS(8231), + [aux_sym_def_type_statement_token2] = ACTIONS(8231), + [aux_sym_def_type_statement_token3] = ACTIONS(8231), + [aux_sym_def_type_statement_token4] = ACTIONS(8231), + [aux_sym_def_type_statement_token5] = ACTIONS(8231), + [aux_sym_def_type_statement_token6] = ACTIONS(8231), + [aux_sym_def_type_statement_token7] = ACTIONS(8231), + [aux_sym_def_type_statement_token8] = ACTIONS(8231), + [aux_sym_def_type_statement_token9] = ACTIONS(8231), + [aux_sym_def_type_statement_token10] = ACTIONS(8231), + [aux_sym_def_type_statement_token11] = ACTIONS(8231), + [aux_sym_def_type_statement_token12] = ACTIONS(8231), + [aux_sym_def_type_statement_token13] = ACTIONS(8231), + [aux_sym_def_type_statement_token14] = ACTIONS(8231), + [aux_sym_call_statement_token1] = ACTIONS(8231), + [sym__ambiguous_call_statement] = ACTIONS(8231), + [aux_sym_addressof_expression_token1] = ACTIONS(8231), + [aux_sym_type_of_expression_token1] = ACTIONS(8231), + [aux_sym_unary_expression_token1] = ACTIONS(8231), + [sym_string_literal] = ACTIONS(8233), + [sym_number_literal] = ACTIONS(8233), + [aux_sym_boolean_literal_token1] = ACTIONS(8231), + [aux_sym_boolean_literal_token2] = ACTIONS(8231), + [sym_nothing_literal] = ACTIONS(8231), + [sym_null_literal] = ACTIONS(8231), + [sym_empty_literal] = ACTIONS(8231), + [sym_date_literal] = ACTIONS(8233), + [anon_sym_POUND] = ACTIONS(8231), + }, + [STATE(5128)] = { + [sym_do_condition] = STATE(6361), + [sym_identifier] = ACTIONS(8374), + [sym_newline] = ACTIONS(8376), + [anon_sym_COLON] = ACTIONS(8376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8374), + [aux_sym_frm_property_statement_token1] = ACTIONS(8374), + [anon_sym_DOT] = ACTIONS(8374), + [anon_sym_BANG] = ACTIONS(8376), + [aux_sym__attribute_identifier_token1] = ACTIONS(8374), + [aux_sym_option_statement_token3] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8374), + [aux_sym_preprocessor_const_token1] = ACTIONS(8374), + [sym_static_modifier] = ACTIONS(8374), + [sym__dim_keyword] = ACTIONS(8374), + [sym__redim_keyword] = ACTIONS(8374), + [aux_sym_get_accessor_token1] = ACTIONS(8374), + [aux_sym_set_accessor_token1] = ACTIONS(8374), + [aux_sym_const_declaration_token1] = ACTIONS(8374), + [anon_sym_LPAREN] = ACTIONS(8376), + [aux_sym_as_type_clause_token2] = ACTIONS(8374), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8374), + [aux_sym_visibility_token1] = ACTIONS(8374), + [aux_sym_visibility_token2] = ACTIONS(8374), + [aux_sym_elseif_fragment_token1] = ACTIONS(8374), + [aux_sym_else_fragment_token1] = ACTIONS(8374), + [aux_sym_select_statement_token1] = ACTIONS(8374), + [aux_sym__for_header_token1] = ACTIONS(8374), + [aux_sym_do_statement_token1] = ACTIONS(8374), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8374), + [aux_sym_exit_statement_token1] = ACTIONS(8374), + [sym_end_statement] = ACTIONS(8376), + [aux_sym_on_goto_statement_token1] = ACTIONS(8374), + [aux_sym_on_goto_statement_token2] = ACTIONS(8374), + [aux_sym_on_error_statement_token2] = ACTIONS(8374), + [sym__ambiguous_redim_statement] = ACTIONS(8376), + [aux_sym_erase_statement_token1] = ACTIONS(8374), + [aux_sym_open_statement_token1] = ACTIONS(8374), + [aux_sym_file_mode_token2] = ACTIONS(8374), + [aux_sym_file_access_token2] = ACTIONS(8374), + [aux_sym_file_lock_token2] = ACTIONS(8374), + [aux_sym_print_statement_token1] = ACTIONS(8374), + [anon_sym_PLUS] = ACTIONS(8376), + [anon_sym_DASH] = ACTIONS(8374), + [anon_sym_QMARK] = ACTIONS(8376), + [aux_sym_close_statement_token1] = ACTIONS(8374), + [aux_sym_put_statement_token1] = ACTIONS(8374), + [aux_sym_unlock_statement_token1] = ACTIONS(8374), + [aux_sym_seek_statement_token1] = ACTIONS(8374), + [sym_reset_statement] = ACTIONS(8374), + [aux_sym_raise_event_statement_token1] = ACTIONS(8374), + [sym_stop_statement] = ACTIONS(8374), + [sym_beep_statement] = ACTIONS(8374), + [aux_sym_unload_statement_token1] = ACTIONS(8374), + [aux_sym_def_type_statement_token1] = ACTIONS(8374), + [aux_sym_def_type_statement_token2] = ACTIONS(8374), + [aux_sym_def_type_statement_token3] = ACTIONS(8374), + [aux_sym_def_type_statement_token4] = ACTIONS(8374), + [aux_sym_def_type_statement_token5] = ACTIONS(8374), + [aux_sym_def_type_statement_token6] = ACTIONS(8374), + [aux_sym_def_type_statement_token7] = ACTIONS(8374), + [aux_sym_def_type_statement_token8] = ACTIONS(8374), + [aux_sym_def_type_statement_token9] = ACTIONS(8374), + [aux_sym_def_type_statement_token10] = ACTIONS(8374), + [aux_sym_def_type_statement_token11] = ACTIONS(8374), + [aux_sym_def_type_statement_token12] = ACTIONS(8374), + [aux_sym_def_type_statement_token13] = ACTIONS(8374), + [aux_sym_def_type_statement_token14] = ACTIONS(8374), + [aux_sym_call_statement_token1] = ACTIONS(8374), + [sym__ambiguous_call_statement] = ACTIONS(8374), + [aux_sym_addressof_expression_token1] = ACTIONS(8374), + [aux_sym_type_of_expression_token1] = ACTIONS(8374), + [aux_sym_unary_expression_token1] = ACTIONS(8374), + [sym_string_literal] = ACTIONS(8376), + [sym_number_literal] = ACTIONS(8376), + [aux_sym_boolean_literal_token1] = ACTIONS(8374), + [aux_sym_boolean_literal_token2] = ACTIONS(8374), + [sym_nothing_literal] = ACTIONS(8374), + [sym_null_literal] = ACTIONS(8374), + [sym_empty_literal] = ACTIONS(8374), + [sym_date_literal] = ACTIONS(8376), + [anon_sym_POUND] = ACTIONS(8374), + }, + [STATE(5129)] = { + [sym_do_condition] = STATE(6363), + [sym_identifier] = ACTIONS(8378), + [sym_newline] = ACTIONS(8380), + [anon_sym_COLON] = ACTIONS(8380), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8378), + [aux_sym_frm_property_statement_token1] = ACTIONS(8378), + [anon_sym_DOT] = ACTIONS(8378), + [anon_sym_BANG] = ACTIONS(8380), + [aux_sym__attribute_identifier_token1] = ACTIONS(8378), + [aux_sym_option_statement_token3] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8378), + [aux_sym_preprocessor_const_token1] = ACTIONS(8378), + [sym_static_modifier] = ACTIONS(8378), + [sym__dim_keyword] = ACTIONS(8378), + [sym__redim_keyword] = ACTIONS(8378), + [aux_sym_get_accessor_token1] = ACTIONS(8378), + [aux_sym_set_accessor_token1] = ACTIONS(8378), + [aux_sym_const_declaration_token1] = ACTIONS(8378), + [anon_sym_LPAREN] = ACTIONS(8380), + [aux_sym_as_type_clause_token2] = ACTIONS(8378), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8378), + [aux_sym_visibility_token1] = ACTIONS(8378), + [aux_sym_visibility_token2] = ACTIONS(8378), + [aux_sym_elseif_fragment_token1] = ACTIONS(8378), + [aux_sym_else_fragment_token1] = ACTIONS(8378), + [aux_sym_select_statement_token1] = ACTIONS(8378), + [aux_sym__for_header_token1] = ACTIONS(8378), + [aux_sym_do_statement_token1] = ACTIONS(8378), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8378), + [aux_sym_exit_statement_token1] = ACTIONS(8378), + [sym_end_statement] = ACTIONS(8380), + [aux_sym_on_goto_statement_token1] = ACTIONS(8378), + [aux_sym_on_goto_statement_token2] = ACTIONS(8378), + [aux_sym_on_error_statement_token2] = ACTIONS(8378), + [sym__ambiguous_redim_statement] = ACTIONS(8380), + [aux_sym_erase_statement_token1] = ACTIONS(8378), + [aux_sym_open_statement_token1] = ACTIONS(8378), + [aux_sym_file_mode_token2] = ACTIONS(8378), + [aux_sym_file_access_token2] = ACTIONS(8378), + [aux_sym_file_lock_token2] = ACTIONS(8378), + [aux_sym_print_statement_token1] = ACTIONS(8378), + [anon_sym_PLUS] = ACTIONS(8380), + [anon_sym_DASH] = ACTIONS(8378), + [anon_sym_QMARK] = ACTIONS(8380), + [aux_sym_close_statement_token1] = ACTIONS(8378), + [aux_sym_put_statement_token1] = ACTIONS(8378), + [aux_sym_unlock_statement_token1] = ACTIONS(8378), + [aux_sym_seek_statement_token1] = ACTIONS(8378), + [sym_reset_statement] = ACTIONS(8378), + [aux_sym_raise_event_statement_token1] = ACTIONS(8378), + [sym_stop_statement] = ACTIONS(8378), + [sym_beep_statement] = ACTIONS(8378), + [aux_sym_unload_statement_token1] = ACTIONS(8378), + [aux_sym_def_type_statement_token1] = ACTIONS(8378), + [aux_sym_def_type_statement_token2] = ACTIONS(8378), + [aux_sym_def_type_statement_token3] = ACTIONS(8378), + [aux_sym_def_type_statement_token4] = ACTIONS(8378), + [aux_sym_def_type_statement_token5] = ACTIONS(8378), + [aux_sym_def_type_statement_token6] = ACTIONS(8378), + [aux_sym_def_type_statement_token7] = ACTIONS(8378), + [aux_sym_def_type_statement_token8] = ACTIONS(8378), + [aux_sym_def_type_statement_token9] = ACTIONS(8378), + [aux_sym_def_type_statement_token10] = ACTIONS(8378), + [aux_sym_def_type_statement_token11] = ACTIONS(8378), + [aux_sym_def_type_statement_token12] = ACTIONS(8378), + [aux_sym_def_type_statement_token13] = ACTIONS(8378), + [aux_sym_def_type_statement_token14] = ACTIONS(8378), + [aux_sym_call_statement_token1] = ACTIONS(8378), + [sym__ambiguous_call_statement] = ACTIONS(8378), + [aux_sym_addressof_expression_token1] = ACTIONS(8378), + [aux_sym_type_of_expression_token1] = ACTIONS(8378), + [aux_sym_unary_expression_token1] = ACTIONS(8378), + [sym_string_literal] = ACTIONS(8380), + [sym_number_literal] = ACTIONS(8380), + [aux_sym_boolean_literal_token1] = ACTIONS(8378), + [aux_sym_boolean_literal_token2] = ACTIONS(8378), + [sym_nothing_literal] = ACTIONS(8378), + [sym_null_literal] = ACTIONS(8378), + [sym_empty_literal] = ACTIONS(8378), + [sym_date_literal] = ACTIONS(8380), + [anon_sym_POUND] = ACTIONS(8378), + }, + [STATE(5130)] = { + [aux_sym_close_statement_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(8521), + [sym_newline] = ACTIONS(8523), + [anon_sym_COLON] = ACTIONS(8523), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8521), + [aux_sym_frm_property_statement_token1] = ACTIONS(8521), + [anon_sym_DOT] = ACTIONS(8521), + [anon_sym_BANG] = ACTIONS(8523), + [aux_sym__attribute_identifier_token1] = ACTIONS(8521), + [aux_sym_option_statement_token3] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8521), + [aux_sym_preprocessor_const_token1] = ACTIONS(8521), + [sym_static_modifier] = ACTIONS(8521), + [sym__dim_keyword] = ACTIONS(8521), + [sym__redim_keyword] = ACTIONS(8521), + [aux_sym_get_accessor_token1] = ACTIONS(8521), + [aux_sym_set_accessor_token1] = ACTIONS(8521), + [anon_sym_COMMA] = ACTIONS(10437), + [aux_sym_const_declaration_token1] = ACTIONS(8521), + [anon_sym_LPAREN] = ACTIONS(8523), + [aux_sym_as_type_clause_token2] = ACTIONS(8521), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8521), + [aux_sym_visibility_token1] = ACTIONS(8521), + [aux_sym_visibility_token2] = ACTIONS(8521), + [aux_sym_elseif_fragment_token1] = ACTIONS(8521), + [aux_sym_else_fragment_token1] = ACTIONS(8521), + [aux_sym_select_statement_token1] = ACTIONS(8521), + [aux_sym__for_header_token1] = ACTIONS(8521), + [aux_sym_do_statement_token1] = ACTIONS(8521), + [aux_sym_do_condition_token1] = ACTIONS(8521), + [aux_sym_while_statement_token1] = ACTIONS(8521), + [aux_sym_with_statement_token1] = ACTIONS(8521), + [aux_sym_exit_statement_token1] = ACTIONS(8521), + [sym_end_statement] = ACTIONS(8523), + [aux_sym_on_goto_statement_token1] = ACTIONS(8521), + [aux_sym_on_goto_statement_token2] = ACTIONS(8521), + [aux_sym_on_error_statement_token2] = ACTIONS(8521), + [sym__ambiguous_redim_statement] = ACTIONS(8523), + [aux_sym_erase_statement_token1] = ACTIONS(8521), + [aux_sym_open_statement_token1] = ACTIONS(8521), + [aux_sym_file_mode_token2] = ACTIONS(8521), + [aux_sym_file_access_token2] = ACTIONS(8521), + [aux_sym_file_lock_token2] = ACTIONS(8521), + [aux_sym_print_statement_token1] = ACTIONS(8521), + [anon_sym_PLUS] = ACTIONS(8523), + [anon_sym_DASH] = ACTIONS(8521), + [anon_sym_QMARK] = ACTIONS(8523), + [aux_sym_close_statement_token1] = ACTIONS(8521), + [aux_sym_put_statement_token1] = ACTIONS(8521), + [aux_sym_unlock_statement_token1] = ACTIONS(8521), + [aux_sym_seek_statement_token1] = ACTIONS(8521), + [sym_reset_statement] = ACTIONS(8521), + [aux_sym_raise_event_statement_token1] = ACTIONS(8521), + [sym_stop_statement] = ACTIONS(8521), + [sym_beep_statement] = ACTIONS(8521), + [aux_sym_unload_statement_token1] = ACTIONS(8521), + [aux_sym_def_type_statement_token1] = ACTIONS(8521), + [aux_sym_def_type_statement_token2] = ACTIONS(8521), + [aux_sym_def_type_statement_token3] = ACTIONS(8521), + [aux_sym_def_type_statement_token4] = ACTIONS(8521), + [aux_sym_def_type_statement_token5] = ACTIONS(8521), + [aux_sym_def_type_statement_token6] = ACTIONS(8521), + [aux_sym_def_type_statement_token7] = ACTIONS(8521), + [aux_sym_def_type_statement_token8] = ACTIONS(8521), + [aux_sym_def_type_statement_token9] = ACTIONS(8521), + [aux_sym_def_type_statement_token10] = ACTIONS(8521), + [aux_sym_def_type_statement_token11] = ACTIONS(8521), + [aux_sym_def_type_statement_token12] = ACTIONS(8521), + [aux_sym_def_type_statement_token13] = ACTIONS(8521), + [aux_sym_def_type_statement_token14] = ACTIONS(8521), + [aux_sym_call_statement_token1] = ACTIONS(8521), + [sym__ambiguous_call_statement] = ACTIONS(8521), + [aux_sym_addressof_expression_token1] = ACTIONS(8521), + [aux_sym_type_of_expression_token1] = ACTIONS(8521), + [aux_sym_unary_expression_token1] = ACTIONS(8521), + [sym_string_literal] = ACTIONS(8523), + [sym_number_literal] = ACTIONS(8523), + [aux_sym_boolean_literal_token1] = ACTIONS(8521), + [aux_sym_boolean_literal_token2] = ACTIONS(8521), + [sym_nothing_literal] = ACTIONS(8521), + [sym_null_literal] = ACTIONS(8521), + [sym_empty_literal] = ACTIONS(8521), + [sym_date_literal] = ACTIONS(8523), + [anon_sym_POUND] = ACTIONS(8521), + }, + [STATE(5131)] = { + [sym_argument_list] = STATE(10051), + [sym_identifier] = ACTIONS(8393), + [sym_newline] = ACTIONS(8395), + [anon_sym_COLON] = ACTIONS(8395), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8393), + [aux_sym_frm_property_statement_token1] = ACTIONS(8393), + [anon_sym_DOT] = ACTIONS(8393), + [anon_sym_BANG] = ACTIONS(8395), + [aux_sym__attribute_identifier_token1] = ACTIONS(8393), + [aux_sym_option_statement_token3] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8393), + [aux_sym_preprocessor_const_token1] = ACTIONS(8393), + [sym_static_modifier] = ACTIONS(8393), + [sym__dim_keyword] = ACTIONS(8393), + [sym__redim_keyword] = ACTIONS(8393), + [aux_sym_get_accessor_token1] = ACTIONS(8393), + [aux_sym_set_accessor_token1] = ACTIONS(8393), + [anon_sym_COMMA] = ACTIONS(8395), + [aux_sym_const_declaration_token1] = ACTIONS(8393), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(8393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8393), + [aux_sym_visibility_token1] = ACTIONS(8393), + [aux_sym_visibility_token2] = ACTIONS(8393), + [aux_sym_elseif_fragment_token1] = ACTIONS(8393), + [aux_sym_else_fragment_token1] = ACTIONS(8393), + [aux_sym_select_statement_token1] = ACTIONS(8393), + [aux_sym__for_header_token1] = ACTIONS(8393), + [aux_sym_do_statement_token1] = ACTIONS(8393), + [aux_sym_do_condition_token1] = ACTIONS(8393), + [aux_sym_with_statement_token1] = ACTIONS(8393), + [aux_sym_exit_statement_token1] = ACTIONS(8393), + [sym_end_statement] = ACTIONS(8395), + [aux_sym_on_goto_statement_token1] = ACTIONS(8393), + [aux_sym_on_goto_statement_token2] = ACTIONS(8393), + [aux_sym_on_error_statement_token2] = ACTIONS(8393), + [sym__ambiguous_redim_statement] = ACTIONS(8395), + [aux_sym_erase_statement_token1] = ACTIONS(8393), + [aux_sym_open_statement_token1] = ACTIONS(8393), + [aux_sym_file_mode_token2] = ACTIONS(8393), + [aux_sym_file_access_token2] = ACTIONS(8393), + [aux_sym_file_lock_token2] = ACTIONS(8393), + [aux_sym_print_statement_token1] = ACTIONS(8393), + [anon_sym_PLUS] = ACTIONS(8395), + [anon_sym_DASH] = ACTIONS(8393), + [anon_sym_QMARK] = ACTIONS(8395), + [aux_sym_close_statement_token1] = ACTIONS(8393), + [aux_sym_put_statement_token1] = ACTIONS(8393), + [aux_sym_unlock_statement_token1] = ACTIONS(8393), + [aux_sym_seek_statement_token1] = ACTIONS(8393), + [sym_reset_statement] = ACTIONS(8393), + [aux_sym_raise_event_statement_token1] = ACTIONS(8393), + [sym_stop_statement] = ACTIONS(8393), + [sym_beep_statement] = ACTIONS(8393), + [aux_sym_unload_statement_token1] = ACTIONS(8393), + [aux_sym_def_type_statement_token1] = ACTIONS(8393), + [aux_sym_def_type_statement_token2] = ACTIONS(8393), + [aux_sym_def_type_statement_token3] = ACTIONS(8393), + [aux_sym_def_type_statement_token4] = ACTIONS(8393), + [aux_sym_def_type_statement_token5] = ACTIONS(8393), + [aux_sym_def_type_statement_token6] = ACTIONS(8393), + [aux_sym_def_type_statement_token7] = ACTIONS(8393), + [aux_sym_def_type_statement_token8] = ACTIONS(8393), + [aux_sym_def_type_statement_token9] = ACTIONS(8393), + [aux_sym_def_type_statement_token10] = ACTIONS(8393), + [aux_sym_def_type_statement_token11] = ACTIONS(8393), + [aux_sym_def_type_statement_token12] = ACTIONS(8393), + [aux_sym_def_type_statement_token13] = ACTIONS(8393), + [aux_sym_def_type_statement_token14] = ACTIONS(8393), + [aux_sym_call_statement_token1] = ACTIONS(8393), + [sym__ambiguous_call_statement] = ACTIONS(8393), + [aux_sym_addressof_expression_token1] = ACTIONS(8393), + [aux_sym_type_of_expression_token1] = ACTIONS(8393), + [aux_sym_unary_expression_token1] = ACTIONS(8393), + [sym_string_literal] = ACTIONS(8395), + [sym_number_literal] = ACTIONS(8395), + [aux_sym_boolean_literal_token1] = ACTIONS(8393), + [aux_sym_boolean_literal_token2] = ACTIONS(8393), + [sym_nothing_literal] = ACTIONS(8393), + [sym_null_literal] = ACTIONS(8393), + [sym_empty_literal] = ACTIONS(8393), + [sym_date_literal] = ACTIONS(8395), + [anon_sym_POUND] = ACTIONS(8393), + }, + [STATE(5132)] = { + [aux_sym_input_statement_repeat1] = STATE(5132), + [sym_identifier] = ACTIONS(8401), + [sym_newline] = ACTIONS(8403), + [anon_sym_COLON] = ACTIONS(8403), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8401), + [aux_sym_frm_property_statement_token1] = ACTIONS(8401), + [anon_sym_DOT] = ACTIONS(8401), + [anon_sym_BANG] = ACTIONS(8403), + [aux_sym__attribute_identifier_token1] = ACTIONS(8401), + [aux_sym_option_statement_token3] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8401), + [aux_sym_preprocessor_const_token1] = ACTIONS(8401), + [sym_static_modifier] = ACTIONS(8401), + [sym__dim_keyword] = ACTIONS(8401), + [sym__redim_keyword] = ACTIONS(8401), + [aux_sym_get_accessor_token1] = ACTIONS(8401), + [aux_sym_set_accessor_token1] = ACTIONS(8401), + [anon_sym_COMMA] = ACTIONS(10452), + [aux_sym_const_declaration_token1] = ACTIONS(8401), + [anon_sym_LPAREN] = ACTIONS(8403), + [aux_sym_as_type_clause_token2] = ACTIONS(8401), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8401), + [aux_sym_visibility_token1] = ACTIONS(8401), + [aux_sym_visibility_token2] = ACTIONS(8401), + [aux_sym_elseif_fragment_token1] = ACTIONS(8401), + [aux_sym_else_fragment_token1] = ACTIONS(8401), + [aux_sym_select_statement_token1] = ACTIONS(8401), + [aux_sym__for_header_token1] = ACTIONS(8401), + [aux_sym_do_statement_token1] = ACTIONS(8401), + [aux_sym_do_condition_token1] = ACTIONS(8401), + [aux_sym_with_statement_token1] = ACTIONS(8401), + [aux_sym_exit_statement_token1] = ACTIONS(8401), + [sym_end_statement] = ACTIONS(8403), + [aux_sym_on_goto_statement_token1] = ACTIONS(8401), + [aux_sym_on_goto_statement_token2] = ACTIONS(8401), + [aux_sym_on_error_statement_token2] = ACTIONS(8401), + [sym__ambiguous_redim_statement] = ACTIONS(8403), + [aux_sym_erase_statement_token1] = ACTIONS(8401), + [aux_sym_open_statement_token1] = ACTIONS(8401), + [aux_sym_file_mode_token2] = ACTIONS(8401), + [aux_sym_file_access_token2] = ACTIONS(8401), + [aux_sym_file_lock_token2] = ACTIONS(8401), + [aux_sym_print_statement_token1] = ACTIONS(8401), + [anon_sym_PLUS] = ACTIONS(8403), + [anon_sym_DASH] = ACTIONS(8401), + [anon_sym_QMARK] = ACTIONS(8403), + [aux_sym_close_statement_token1] = ACTIONS(8401), + [aux_sym_put_statement_token1] = ACTIONS(8401), + [aux_sym_unlock_statement_token1] = ACTIONS(8401), + [aux_sym_seek_statement_token1] = ACTIONS(8401), + [sym_reset_statement] = ACTIONS(8401), + [aux_sym_raise_event_statement_token1] = ACTIONS(8401), + [sym_stop_statement] = ACTIONS(8401), + [sym_beep_statement] = ACTIONS(8401), + [aux_sym_unload_statement_token1] = ACTIONS(8401), + [aux_sym_def_type_statement_token1] = ACTIONS(8401), + [aux_sym_def_type_statement_token2] = ACTIONS(8401), + [aux_sym_def_type_statement_token3] = ACTIONS(8401), + [aux_sym_def_type_statement_token4] = ACTIONS(8401), + [aux_sym_def_type_statement_token5] = ACTIONS(8401), + [aux_sym_def_type_statement_token6] = ACTIONS(8401), + [aux_sym_def_type_statement_token7] = ACTIONS(8401), + [aux_sym_def_type_statement_token8] = ACTIONS(8401), + [aux_sym_def_type_statement_token9] = ACTIONS(8401), + [aux_sym_def_type_statement_token10] = ACTIONS(8401), + [aux_sym_def_type_statement_token11] = ACTIONS(8401), + [aux_sym_def_type_statement_token12] = ACTIONS(8401), + [aux_sym_def_type_statement_token13] = ACTIONS(8401), + [aux_sym_def_type_statement_token14] = ACTIONS(8401), + [aux_sym_call_statement_token1] = ACTIONS(8401), + [sym__ambiguous_call_statement] = ACTIONS(8401), + [aux_sym_addressof_expression_token1] = ACTIONS(8401), + [aux_sym_type_of_expression_token1] = ACTIONS(8401), + [aux_sym_unary_expression_token1] = ACTIONS(8401), + [sym_string_literal] = ACTIONS(8403), + [sym_number_literal] = ACTIONS(8403), + [aux_sym_boolean_literal_token1] = ACTIONS(8401), + [aux_sym_boolean_literal_token2] = ACTIONS(8401), + [sym_nothing_literal] = ACTIONS(8401), + [sym_null_literal] = ACTIONS(8401), + [sym_empty_literal] = ACTIONS(8401), + [sym_date_literal] = ACTIONS(8403), + [anon_sym_POUND] = ACTIONS(8401), + }, + [STATE(5133)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5268), + [sym_identifier] = ACTIONS(8231), + [sym_newline] = ACTIONS(8233), + [anon_sym_COLON] = ACTIONS(8233), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8231), + [aux_sym_frm_property_statement_token1] = ACTIONS(8231), + [anon_sym_DOT] = ACTIONS(8231), + [anon_sym_BANG] = ACTIONS(8233), + [aux_sym__attribute_identifier_token1] = ACTIONS(8231), + [aux_sym_option_statement_token3] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8231), + [aux_sym_preprocessor_const_token1] = ACTIONS(8231), + [sym_static_modifier] = ACTIONS(8231), + [sym__dim_keyword] = ACTIONS(8231), + [sym__redim_keyword] = ACTIONS(8231), + [aux_sym_get_accessor_token1] = ACTIONS(8231), + [aux_sym_set_accessor_token1] = ACTIONS(8231), + [anon_sym_COMMA] = ACTIONS(10439), + [aux_sym_const_declaration_token1] = ACTIONS(8231), + [anon_sym_LPAREN] = ACTIONS(8233), + [aux_sym_as_type_clause_token2] = ACTIONS(8231), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8231), + [aux_sym_visibility_token1] = ACTIONS(8231), + [aux_sym_visibility_token2] = ACTIONS(8231), + [aux_sym_elseif_fragment_token1] = ACTIONS(8231), + [aux_sym_else_fragment_token1] = ACTIONS(8231), + [aux_sym_select_statement_token1] = ACTIONS(8231), + [aux_sym__for_header_token1] = ACTIONS(8231), + [aux_sym_do_statement_token1] = ACTIONS(8231), + [aux_sym_do_condition_token1] = ACTIONS(8231), + [aux_sym_with_statement_token1] = ACTIONS(8231), + [aux_sym_exit_statement_token1] = ACTIONS(8231), + [sym_end_statement] = ACTIONS(8233), + [aux_sym_on_goto_statement_token1] = ACTIONS(8231), + [aux_sym_on_goto_statement_token2] = ACTIONS(8231), + [aux_sym_on_error_statement_token2] = ACTIONS(8231), + [sym__ambiguous_redim_statement] = ACTIONS(8233), + [aux_sym_erase_statement_token1] = ACTIONS(8231), + [aux_sym_open_statement_token1] = ACTIONS(8231), + [aux_sym_file_mode_token2] = ACTIONS(8231), + [aux_sym_file_access_token2] = ACTIONS(8231), + [aux_sym_file_lock_token2] = ACTIONS(8231), + [aux_sym_print_statement_token1] = ACTIONS(8231), + [anon_sym_PLUS] = ACTIONS(8233), + [anon_sym_DASH] = ACTIONS(8231), + [anon_sym_QMARK] = ACTIONS(8233), + [aux_sym_close_statement_token1] = ACTIONS(8231), + [aux_sym_put_statement_token1] = ACTIONS(8231), + [aux_sym_unlock_statement_token1] = ACTIONS(8231), + [aux_sym_seek_statement_token1] = ACTIONS(8231), + [sym_reset_statement] = ACTIONS(8231), + [aux_sym_raise_event_statement_token1] = ACTIONS(8231), + [sym_stop_statement] = ACTIONS(8231), + [sym_beep_statement] = ACTIONS(8231), + [aux_sym_unload_statement_token1] = ACTIONS(8231), + [aux_sym_def_type_statement_token1] = ACTIONS(8231), + [aux_sym_def_type_statement_token2] = ACTIONS(8231), + [aux_sym_def_type_statement_token3] = ACTIONS(8231), + [aux_sym_def_type_statement_token4] = ACTIONS(8231), + [aux_sym_def_type_statement_token5] = ACTIONS(8231), + [aux_sym_def_type_statement_token6] = ACTIONS(8231), + [aux_sym_def_type_statement_token7] = ACTIONS(8231), + [aux_sym_def_type_statement_token8] = ACTIONS(8231), + [aux_sym_def_type_statement_token9] = ACTIONS(8231), + [aux_sym_def_type_statement_token10] = ACTIONS(8231), + [aux_sym_def_type_statement_token11] = ACTIONS(8231), + [aux_sym_def_type_statement_token12] = ACTIONS(8231), + [aux_sym_def_type_statement_token13] = ACTIONS(8231), + [aux_sym_def_type_statement_token14] = ACTIONS(8231), + [aux_sym_call_statement_token1] = ACTIONS(8231), + [sym__ambiguous_call_statement] = ACTIONS(8231), + [aux_sym_addressof_expression_token1] = ACTIONS(8231), + [aux_sym_type_of_expression_token1] = ACTIONS(8231), + [aux_sym_unary_expression_token1] = ACTIONS(8231), + [sym_string_literal] = ACTIONS(8233), + [sym_number_literal] = ACTIONS(8233), + [aux_sym_boolean_literal_token1] = ACTIONS(8231), + [aux_sym_boolean_literal_token2] = ACTIONS(8231), + [sym_nothing_literal] = ACTIONS(8231), + [sym_null_literal] = ACTIONS(8231), + [sym_empty_literal] = ACTIONS(8231), + [sym_date_literal] = ACTIONS(8233), + [anon_sym_POUND] = ACTIONS(8231), + }, + [STATE(5134)] = { + [sym_identifier] = ACTIONS(6617), + [sym_newline] = ACTIONS(6619), + [anon_sym_COLON] = ACTIONS(6619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6617), + [aux_sym_frm_property_statement_token1] = ACTIONS(6617), + [anon_sym_DOT] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(6619), + [aux_sym__attribute_identifier_token1] = ACTIONS(6617), + [aux_sym_option_statement_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6617), + [aux_sym_preprocessor_const_token1] = ACTIONS(6617), + [sym_static_modifier] = ACTIONS(6617), + [sym__dim_keyword] = ACTIONS(6617), + [sym__redim_keyword] = ACTIONS(6617), + [aux_sym_get_accessor_token1] = ACTIONS(6617), + [aux_sym_set_accessor_token1] = ACTIONS(6617), + [aux_sym_const_declaration_token1] = ACTIONS(6617), + [anon_sym_LPAREN] = ACTIONS(6619), + [aux_sym_as_type_clause_token2] = ACTIONS(6617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6617), + [aux_sym_visibility_token1] = ACTIONS(6617), + [aux_sym_visibility_token2] = ACTIONS(6617), + [aux_sym_elseif_fragment_token1] = ACTIONS(6617), + [aux_sym_else_fragment_token1] = ACTIONS(6617), + [aux_sym_select_statement_token1] = ACTIONS(6617), + [aux_sym__for_header_token1] = ACTIONS(6617), + [aux_sym_do_statement_token1] = ACTIONS(6617), + [aux_sym_do_condition_token1] = ACTIONS(6617), + [aux_sym_while_statement_token1] = ACTIONS(6617), + [aux_sym_with_statement_token1] = ACTIONS(6617), + [aux_sym_exit_statement_token1] = ACTIONS(6617), + [sym_end_statement] = ACTIONS(6619), + [aux_sym_on_goto_statement_token1] = ACTIONS(6617), + [aux_sym_on_goto_statement_token2] = ACTIONS(6617), + [aux_sym_on_error_statement_token2] = ACTIONS(6617), + [sym__ambiguous_redim_statement] = ACTIONS(6619), + [aux_sym_erase_statement_token1] = ACTIONS(6617), + [aux_sym_open_statement_token1] = ACTIONS(6617), + [aux_sym_file_mode_token2] = ACTIONS(6617), + [aux_sym_file_access_token2] = ACTIONS(6617), + [aux_sym_file_lock_token2] = ACTIONS(6617), + [aux_sym_print_statement_token1] = ACTIONS(6617), + [anon_sym_PLUS] = ACTIONS(6619), + [anon_sym_DASH] = ACTIONS(6617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10177), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10179), + [anon_sym_QMARK] = ACTIONS(6619), + [aux_sym_close_statement_token1] = ACTIONS(6617), + [aux_sym_put_statement_token1] = ACTIONS(6617), + [aux_sym_unlock_statement_token1] = ACTIONS(6617), + [aux_sym_seek_statement_token1] = ACTIONS(6617), + [sym_reset_statement] = ACTIONS(6617), + [aux_sym_raise_event_statement_token1] = ACTIONS(6617), + [sym_stop_statement] = ACTIONS(6617), + [sym_beep_statement] = ACTIONS(6617), + [aux_sym_unload_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token2] = ACTIONS(6617), + [aux_sym_def_type_statement_token3] = ACTIONS(6617), + [aux_sym_def_type_statement_token4] = ACTIONS(6617), + [aux_sym_def_type_statement_token5] = ACTIONS(6617), + [aux_sym_def_type_statement_token6] = ACTIONS(6617), + [aux_sym_def_type_statement_token7] = ACTIONS(6617), + [aux_sym_def_type_statement_token8] = ACTIONS(6617), + [aux_sym_def_type_statement_token9] = ACTIONS(6617), + [aux_sym_def_type_statement_token10] = ACTIONS(6617), + [aux_sym_def_type_statement_token11] = ACTIONS(6617), + [aux_sym_def_type_statement_token12] = ACTIONS(6617), + [aux_sym_def_type_statement_token13] = ACTIONS(6617), + [aux_sym_def_type_statement_token14] = ACTIONS(6617), + [aux_sym_call_statement_token1] = ACTIONS(6617), + [sym__ambiguous_call_statement] = ACTIONS(6617), + [aux_sym_addressof_expression_token1] = ACTIONS(6617), + [aux_sym_type_of_expression_token1] = ACTIONS(6617), + [aux_sym_unary_expression_token1] = ACTIONS(6617), + [sym_string_literal] = ACTIONS(6619), + [sym_number_literal] = ACTIONS(6619), + [aux_sym_boolean_literal_token1] = ACTIONS(6617), + [aux_sym_boolean_literal_token2] = ACTIONS(6617), + [sym_nothing_literal] = ACTIONS(6617), + [sym_null_literal] = ACTIONS(6617), + [sym_empty_literal] = ACTIONS(6617), + [sym_date_literal] = ACTIONS(6619), + [anon_sym_POUND] = ACTIONS(6617), + }, + [STATE(5135)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5169), + [sym_identifier] = ACTIONS(8495), + [sym_newline] = ACTIONS(8497), + [anon_sym_COLON] = ACTIONS(8497), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8495), + [aux_sym_frm_property_statement_token1] = ACTIONS(8495), + [anon_sym_DOT] = ACTIONS(8495), + [anon_sym_BANG] = ACTIONS(8497), + [aux_sym__attribute_identifier_token1] = ACTIONS(8495), + [aux_sym_option_statement_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8495), + [aux_sym_preprocessor_const_token1] = ACTIONS(8495), + [sym_static_modifier] = ACTIONS(8495), + [sym__dim_keyword] = ACTIONS(8495), + [sym__redim_keyword] = ACTIONS(8495), + [aux_sym_get_accessor_token1] = ACTIONS(8495), + [aux_sym_set_accessor_token1] = ACTIONS(8495), + [anon_sym_COMMA] = ACTIONS(5162), + [aux_sym_const_declaration_token1] = ACTIONS(8495), + [anon_sym_LPAREN] = ACTIONS(8497), + [aux_sym_as_type_clause_token2] = ACTIONS(8495), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8495), + [aux_sym_visibility_token1] = ACTIONS(8495), + [aux_sym_visibility_token2] = ACTIONS(8495), + [aux_sym_elseif_fragment_token1] = ACTIONS(8495), + [aux_sym_else_fragment_token1] = ACTIONS(8495), + [aux_sym_select_statement_token1] = ACTIONS(8495), + [aux_sym__for_header_token1] = ACTIONS(8495), + [aux_sym_do_statement_token1] = ACTIONS(8495), + [aux_sym_do_condition_token1] = ACTIONS(8495), + [aux_sym_while_statement_token1] = ACTIONS(8495), + [aux_sym_with_statement_token1] = ACTIONS(8495), + [aux_sym_exit_statement_token1] = ACTIONS(8495), + [sym_end_statement] = ACTIONS(8497), + [aux_sym_on_goto_statement_token1] = ACTIONS(8495), + [aux_sym_on_goto_statement_token2] = ACTIONS(8495), + [aux_sym_on_error_statement_token2] = ACTIONS(8495), + [sym__ambiguous_redim_statement] = ACTIONS(8497), + [aux_sym_erase_statement_token1] = ACTIONS(8495), + [aux_sym_open_statement_token1] = ACTIONS(8495), + [aux_sym_file_mode_token2] = ACTIONS(8495), + [aux_sym_file_access_token2] = ACTIONS(8495), + [aux_sym_file_lock_token2] = ACTIONS(8495), + [aux_sym_print_statement_token1] = ACTIONS(8495), + [anon_sym_PLUS] = ACTIONS(8497), + [anon_sym_DASH] = ACTIONS(8495), + [anon_sym_QMARK] = ACTIONS(8497), + [aux_sym_close_statement_token1] = ACTIONS(8495), + [aux_sym_put_statement_token1] = ACTIONS(8495), + [aux_sym_unlock_statement_token1] = ACTIONS(8495), + [aux_sym_seek_statement_token1] = ACTIONS(8495), + [sym_reset_statement] = ACTIONS(8495), + [aux_sym_raise_event_statement_token1] = ACTIONS(8495), + [sym_stop_statement] = ACTIONS(8495), + [sym_beep_statement] = ACTIONS(8495), + [aux_sym_unload_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token2] = ACTIONS(8495), + [aux_sym_def_type_statement_token3] = ACTIONS(8495), + [aux_sym_def_type_statement_token4] = ACTIONS(8495), + [aux_sym_def_type_statement_token5] = ACTIONS(8495), + [aux_sym_def_type_statement_token6] = ACTIONS(8495), + [aux_sym_def_type_statement_token7] = ACTIONS(8495), + [aux_sym_def_type_statement_token8] = ACTIONS(8495), + [aux_sym_def_type_statement_token9] = ACTIONS(8495), + [aux_sym_def_type_statement_token10] = ACTIONS(8495), + [aux_sym_def_type_statement_token11] = ACTIONS(8495), + [aux_sym_def_type_statement_token12] = ACTIONS(8495), + [aux_sym_def_type_statement_token13] = ACTIONS(8495), + [aux_sym_def_type_statement_token14] = ACTIONS(8495), + [aux_sym_call_statement_token1] = ACTIONS(8495), + [sym__ambiguous_call_statement] = ACTIONS(8495), + [aux_sym_addressof_expression_token1] = ACTIONS(8495), + [aux_sym_type_of_expression_token1] = ACTIONS(8495), + [aux_sym_unary_expression_token1] = ACTIONS(8495), + [sym_string_literal] = ACTIONS(8497), + [sym_number_literal] = ACTIONS(8497), + [aux_sym_boolean_literal_token1] = ACTIONS(8495), + [aux_sym_boolean_literal_token2] = ACTIONS(8495), + [sym_nothing_literal] = ACTIONS(8495), + [sym_null_literal] = ACTIONS(8495), + [sym_empty_literal] = ACTIONS(8495), + [sym_date_literal] = ACTIONS(8497), + [anon_sym_POUND] = ACTIONS(8495), + }, + [STATE(5136)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5320), + [sym_identifier] = ACTIONS(8495), + [sym_newline] = ACTIONS(8497), + [anon_sym_COLON] = ACTIONS(8497), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8495), + [aux_sym_frm_property_statement_token1] = ACTIONS(8495), + [anon_sym_DOT] = ACTIONS(8495), + [anon_sym_BANG] = ACTIONS(8497), + [aux_sym__attribute_identifier_token1] = ACTIONS(8495), + [aux_sym_option_statement_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8495), + [aux_sym_preprocessor_const_token1] = ACTIONS(8495), + [sym_static_modifier] = ACTIONS(8495), + [sym__dim_keyword] = ACTIONS(8495), + [sym__redim_keyword] = ACTIONS(8495), + [aux_sym_get_accessor_token1] = ACTIONS(8495), + [aux_sym_set_accessor_token1] = ACTIONS(8495), + [anon_sym_COMMA] = ACTIONS(5162), + [aux_sym_const_declaration_token1] = ACTIONS(8495), + [anon_sym_LPAREN] = ACTIONS(8497), + [aux_sym_as_type_clause_token2] = ACTIONS(8495), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8495), + [aux_sym_visibility_token1] = ACTIONS(8495), + [aux_sym_visibility_token2] = ACTIONS(8495), + [aux_sym_elseif_fragment_token1] = ACTIONS(8495), + [aux_sym_else_fragment_token1] = ACTIONS(8495), + [aux_sym_select_statement_token1] = ACTIONS(8495), + [aux_sym__for_header_token1] = ACTIONS(8495), + [aux_sym_do_statement_token1] = ACTIONS(8495), + [aux_sym_do_condition_token1] = ACTIONS(8495), + [aux_sym_while_statement_token1] = ACTIONS(8495), + [aux_sym_with_statement_token1] = ACTIONS(8495), + [aux_sym_exit_statement_token1] = ACTIONS(8495), + [sym_end_statement] = ACTIONS(8497), + [aux_sym_on_goto_statement_token1] = ACTIONS(8495), + [aux_sym_on_goto_statement_token2] = ACTIONS(8495), + [aux_sym_on_error_statement_token2] = ACTIONS(8495), + [sym__ambiguous_redim_statement] = ACTIONS(8497), + [aux_sym_erase_statement_token1] = ACTIONS(8495), + [aux_sym_open_statement_token1] = ACTIONS(8495), + [aux_sym_file_mode_token2] = ACTIONS(8495), + [aux_sym_file_access_token2] = ACTIONS(8495), + [aux_sym_file_lock_token2] = ACTIONS(8495), + [aux_sym_print_statement_token1] = ACTIONS(8495), + [anon_sym_PLUS] = ACTIONS(8497), + [anon_sym_DASH] = ACTIONS(8495), + [anon_sym_QMARK] = ACTIONS(8497), + [aux_sym_close_statement_token1] = ACTIONS(8495), + [aux_sym_put_statement_token1] = ACTIONS(8495), + [aux_sym_unlock_statement_token1] = ACTIONS(8495), + [aux_sym_seek_statement_token1] = ACTIONS(8495), + [sym_reset_statement] = ACTIONS(8495), + [aux_sym_raise_event_statement_token1] = ACTIONS(8495), + [sym_stop_statement] = ACTIONS(8495), + [sym_beep_statement] = ACTIONS(8495), + [aux_sym_unload_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token2] = ACTIONS(8495), + [aux_sym_def_type_statement_token3] = ACTIONS(8495), + [aux_sym_def_type_statement_token4] = ACTIONS(8495), + [aux_sym_def_type_statement_token5] = ACTIONS(8495), + [aux_sym_def_type_statement_token6] = ACTIONS(8495), + [aux_sym_def_type_statement_token7] = ACTIONS(8495), + [aux_sym_def_type_statement_token8] = ACTIONS(8495), + [aux_sym_def_type_statement_token9] = ACTIONS(8495), + [aux_sym_def_type_statement_token10] = ACTIONS(8495), + [aux_sym_def_type_statement_token11] = ACTIONS(8495), + [aux_sym_def_type_statement_token12] = ACTIONS(8495), + [aux_sym_def_type_statement_token13] = ACTIONS(8495), + [aux_sym_def_type_statement_token14] = ACTIONS(8495), + [aux_sym_call_statement_token1] = ACTIONS(8495), + [sym__ambiguous_call_statement] = ACTIONS(8495), + [aux_sym_addressof_expression_token1] = ACTIONS(8495), + [aux_sym_type_of_expression_token1] = ACTIONS(8495), + [aux_sym_unary_expression_token1] = ACTIONS(8495), + [sym_string_literal] = ACTIONS(8497), + [sym_number_literal] = ACTIONS(8497), + [aux_sym_boolean_literal_token1] = ACTIONS(8495), + [aux_sym_boolean_literal_token2] = ACTIONS(8495), + [sym_nothing_literal] = ACTIONS(8495), + [sym_null_literal] = ACTIONS(8495), + [sym_empty_literal] = ACTIONS(8495), + [sym_date_literal] = ACTIONS(8497), + [anon_sym_POUND] = ACTIONS(8495), + }, + [STATE(5137)] = { + [aux_sym__argument_sequence_repeat1] = STATE(5355), + [sym_identifier] = ACTIONS(8549), + [sym_newline] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8549), + [aux_sym_frm_property_statement_token1] = ACTIONS(8549), + [anon_sym_DOT] = ACTIONS(8549), + [anon_sym_BANG] = ACTIONS(8551), + [aux_sym__attribute_identifier_token1] = ACTIONS(8549), + [aux_sym_option_statement_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8549), + [aux_sym_preprocessor_const_token1] = ACTIONS(8549), + [sym_static_modifier] = ACTIONS(8549), + [sym__dim_keyword] = ACTIONS(8549), + [sym__redim_keyword] = ACTIONS(8549), + [aux_sym_get_accessor_token1] = ACTIONS(8549), + [aux_sym_set_accessor_token1] = ACTIONS(8549), + [anon_sym_COMMA] = ACTIONS(10455), + [aux_sym_const_declaration_token1] = ACTIONS(8549), + [anon_sym_LPAREN] = ACTIONS(8551), + [aux_sym_as_type_clause_token2] = ACTIONS(8549), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8549), + [aux_sym_visibility_token1] = ACTIONS(8549), + [aux_sym_visibility_token2] = ACTIONS(8549), + [aux_sym_elseif_fragment_token1] = ACTIONS(8549), + [aux_sym_else_fragment_token1] = ACTIONS(8549), + [aux_sym_select_statement_token1] = ACTIONS(8549), + [aux_sym__for_header_token1] = ACTIONS(8549), + [aux_sym_do_statement_token1] = ACTIONS(8549), + [aux_sym_do_condition_token1] = ACTIONS(8549), + [aux_sym_while_statement_token1] = ACTIONS(8549), + [aux_sym_with_statement_token1] = ACTIONS(8549), + [aux_sym_exit_statement_token1] = ACTIONS(8549), + [sym_end_statement] = ACTIONS(8551), + [aux_sym_on_goto_statement_token1] = ACTIONS(8549), + [aux_sym_on_goto_statement_token2] = ACTIONS(8549), + [aux_sym_on_error_statement_token2] = ACTIONS(8549), + [sym__ambiguous_redim_statement] = ACTIONS(8551), + [aux_sym_erase_statement_token1] = ACTIONS(8549), + [aux_sym_open_statement_token1] = ACTIONS(8549), + [aux_sym_file_mode_token2] = ACTIONS(8549), + [aux_sym_file_access_token2] = ACTIONS(8549), + [aux_sym_file_lock_token2] = ACTIONS(8549), + [aux_sym_print_statement_token1] = ACTIONS(8549), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_DASH] = ACTIONS(8549), + [anon_sym_QMARK] = ACTIONS(8551), + [aux_sym_close_statement_token1] = ACTIONS(8549), + [aux_sym_put_statement_token1] = ACTIONS(8549), + [aux_sym_unlock_statement_token1] = ACTIONS(8549), + [aux_sym_seek_statement_token1] = ACTIONS(8549), + [sym_reset_statement] = ACTIONS(8549), + [aux_sym_raise_event_statement_token1] = ACTIONS(8549), + [sym_stop_statement] = ACTIONS(8549), + [sym_beep_statement] = ACTIONS(8549), + [aux_sym_unload_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token2] = ACTIONS(8549), + [aux_sym_def_type_statement_token3] = ACTIONS(8549), + [aux_sym_def_type_statement_token4] = ACTIONS(8549), + [aux_sym_def_type_statement_token5] = ACTIONS(8549), + [aux_sym_def_type_statement_token6] = ACTIONS(8549), + [aux_sym_def_type_statement_token7] = ACTIONS(8549), + [aux_sym_def_type_statement_token8] = ACTIONS(8549), + [aux_sym_def_type_statement_token9] = ACTIONS(8549), + [aux_sym_def_type_statement_token10] = ACTIONS(8549), + [aux_sym_def_type_statement_token11] = ACTIONS(8549), + [aux_sym_def_type_statement_token12] = ACTIONS(8549), + [aux_sym_def_type_statement_token13] = ACTIONS(8549), + [aux_sym_def_type_statement_token14] = ACTIONS(8549), + [aux_sym_call_statement_token1] = ACTIONS(8549), + [sym__ambiguous_call_statement] = ACTIONS(8549), + [aux_sym_addressof_expression_token1] = ACTIONS(8549), + [aux_sym_type_of_expression_token1] = ACTIONS(8549), + [aux_sym_unary_expression_token1] = ACTIONS(8549), + [sym_string_literal] = ACTIONS(8551), + [sym_number_literal] = ACTIONS(8551), + [aux_sym_boolean_literal_token1] = ACTIONS(8549), + [aux_sym_boolean_literal_token2] = ACTIONS(8549), + [sym_nothing_literal] = ACTIONS(8549), + [sym_null_literal] = ACTIONS(8549), + [sym_empty_literal] = ACTIONS(8549), + [sym_date_literal] = ACTIONS(8551), + [anon_sym_POUND] = ACTIONS(8549), + }, + [STATE(5138)] = { + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(5170), + [sym_identifier] = ACTIONS(8549), + [sym_newline] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8549), + [aux_sym_frm_property_statement_token1] = ACTIONS(8549), + [anon_sym_DOT] = ACTIONS(8549), + [anon_sym_BANG] = ACTIONS(8551), + [aux_sym__attribute_identifier_token1] = ACTIONS(8549), + [aux_sym_option_statement_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8549), + [aux_sym_preprocessor_const_token1] = ACTIONS(8549), + [sym_static_modifier] = ACTIONS(8549), + [sym__dim_keyword] = ACTIONS(8549), + [sym__redim_keyword] = ACTIONS(8549), + [aux_sym_get_accessor_token1] = ACTIONS(8549), + [aux_sym_set_accessor_token1] = ACTIONS(8549), + [aux_sym_const_declaration_token1] = ACTIONS(8549), + [anon_sym_LPAREN] = ACTIONS(8551), + [aux_sym_as_type_clause_token2] = ACTIONS(8549), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8549), + [aux_sym_visibility_token1] = ACTIONS(8549), + [aux_sym_visibility_token2] = ACTIONS(8549), + [aux_sym_elseif_fragment_token1] = ACTIONS(8549), + [aux_sym_else_fragment_token1] = ACTIONS(8549), + [aux_sym_select_statement_token1] = ACTIONS(8549), + [aux_sym__for_header_token1] = ACTIONS(8549), + [aux_sym_do_statement_token1] = ACTIONS(8549), + [aux_sym_do_condition_token1] = ACTIONS(8549), + [aux_sym_while_statement_token1] = ACTIONS(8549), + [aux_sym_with_statement_token1] = ACTIONS(8549), + [aux_sym_exit_statement_token1] = ACTIONS(8549), + [sym_end_statement] = ACTIONS(8551), + [aux_sym_on_goto_statement_token1] = ACTIONS(8549), + [aux_sym_on_goto_statement_token2] = ACTIONS(8549), + [aux_sym_on_error_statement_token2] = ACTIONS(8549), + [sym__ambiguous_redim_statement] = ACTIONS(8551), + [aux_sym_erase_statement_token1] = ACTIONS(8549), + [aux_sym_open_statement_token1] = ACTIONS(8549), + [aux_sym_file_mode_token2] = ACTIONS(8549), + [aux_sym_file_access_token2] = ACTIONS(8549), + [aux_sym_file_lock_token2] = ACTIONS(8549), + [aux_sym_print_statement_token1] = ACTIONS(8549), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_DASH] = ACTIONS(8549), + [anon_sym_SEMI] = ACTIONS(10185), + [anon_sym_QMARK] = ACTIONS(8551), + [aux_sym_close_statement_token1] = ACTIONS(8549), + [aux_sym_put_statement_token1] = ACTIONS(8549), + [aux_sym_unlock_statement_token1] = ACTIONS(8549), + [aux_sym_seek_statement_token1] = ACTIONS(8549), + [sym_reset_statement] = ACTIONS(8549), + [aux_sym_raise_event_statement_token1] = ACTIONS(8549), + [sym_stop_statement] = ACTIONS(8549), + [sym_beep_statement] = ACTIONS(8549), + [aux_sym_unload_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token2] = ACTIONS(8549), + [aux_sym_def_type_statement_token3] = ACTIONS(8549), + [aux_sym_def_type_statement_token4] = ACTIONS(8549), + [aux_sym_def_type_statement_token5] = ACTIONS(8549), + [aux_sym_def_type_statement_token6] = ACTIONS(8549), + [aux_sym_def_type_statement_token7] = ACTIONS(8549), + [aux_sym_def_type_statement_token8] = ACTIONS(8549), + [aux_sym_def_type_statement_token9] = ACTIONS(8549), + [aux_sym_def_type_statement_token10] = ACTIONS(8549), + [aux_sym_def_type_statement_token11] = ACTIONS(8549), + [aux_sym_def_type_statement_token12] = ACTIONS(8549), + [aux_sym_def_type_statement_token13] = ACTIONS(8549), + [aux_sym_def_type_statement_token14] = ACTIONS(8549), + [aux_sym_call_statement_token1] = ACTIONS(8549), + [sym__ambiguous_call_statement] = ACTIONS(8549), + [aux_sym_addressof_expression_token1] = ACTIONS(8549), + [aux_sym_type_of_expression_token1] = ACTIONS(8549), + [aux_sym_unary_expression_token1] = ACTIONS(8549), + [sym_string_literal] = ACTIONS(8551), + [sym_number_literal] = ACTIONS(8551), + [aux_sym_boolean_literal_token1] = ACTIONS(8549), + [aux_sym_boolean_literal_token2] = ACTIONS(8549), + [sym_nothing_literal] = ACTIONS(8549), + [sym_null_literal] = ACTIONS(8549), + [sym_empty_literal] = ACTIONS(8549), + [sym_date_literal] = ACTIONS(8551), + [anon_sym_POUND] = ACTIONS(8549), + }, + [STATE(5139)] = { + [sym_do_condition] = STATE(6800), + [sym_identifier] = ACTIONS(8475), + [sym_newline] = ACTIONS(8477), + [anon_sym_COLON] = ACTIONS(8477), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8475), + [aux_sym_frm_property_statement_token1] = ACTIONS(8475), + [anon_sym_DOT] = ACTIONS(8475), + [anon_sym_BANG] = ACTIONS(8477), + [aux_sym__attribute_identifier_token1] = ACTIONS(8475), + [aux_sym_option_statement_token3] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8475), + [aux_sym_preprocessor_const_token1] = ACTIONS(8475), + [sym_static_modifier] = ACTIONS(8475), + [sym__dim_keyword] = ACTIONS(8475), + [sym__redim_keyword] = ACTIONS(8475), + [aux_sym_get_accessor_token1] = ACTIONS(8475), + [aux_sym_set_accessor_token1] = ACTIONS(8475), + [aux_sym_const_declaration_token1] = ACTIONS(8475), + [anon_sym_LPAREN] = ACTIONS(8477), + [aux_sym_as_type_clause_token2] = ACTIONS(8475), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8475), + [aux_sym_visibility_token1] = ACTIONS(8475), + [aux_sym_visibility_token2] = ACTIONS(8475), + [aux_sym_elseif_fragment_token1] = ACTIONS(8475), + [aux_sym_else_fragment_token1] = ACTIONS(8475), + [aux_sym_select_statement_token1] = ACTIONS(8475), + [aux_sym_select_statement_token2] = ACTIONS(8475), + [aux_sym__for_header_token1] = ACTIONS(8475), + [aux_sym_do_statement_token1] = ACTIONS(8475), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8475), + [aux_sym_exit_statement_token1] = ACTIONS(8475), + [sym_end_statement] = ACTIONS(8477), + [aux_sym_on_goto_statement_token1] = ACTIONS(8475), + [aux_sym_on_goto_statement_token2] = ACTIONS(8475), + [aux_sym_on_error_statement_token2] = ACTIONS(8475), + [sym__ambiguous_redim_statement] = ACTIONS(8477), + [aux_sym_erase_statement_token1] = ACTIONS(8475), + [aux_sym_open_statement_token1] = ACTIONS(8475), + [aux_sym_file_mode_token2] = ACTIONS(8475), + [aux_sym_file_access_token2] = ACTIONS(8475), + [aux_sym_file_lock_token2] = ACTIONS(8475), + [aux_sym_print_statement_token1] = ACTIONS(8475), + [anon_sym_PLUS] = ACTIONS(8477), + [anon_sym_DASH] = ACTIONS(8475), + [anon_sym_QMARK] = ACTIONS(8477), + [aux_sym_close_statement_token1] = ACTIONS(8475), + [aux_sym_put_statement_token1] = ACTIONS(8475), + [aux_sym_unlock_statement_token1] = ACTIONS(8475), + [aux_sym_seek_statement_token1] = ACTIONS(8475), + [sym_reset_statement] = ACTIONS(8475), + [aux_sym_raise_event_statement_token1] = ACTIONS(8475), + [sym_stop_statement] = ACTIONS(8475), + [sym_beep_statement] = ACTIONS(8475), + [aux_sym_unload_statement_token1] = ACTIONS(8475), + [aux_sym_def_type_statement_token1] = ACTIONS(8475), + [aux_sym_def_type_statement_token2] = ACTIONS(8475), + [aux_sym_def_type_statement_token3] = ACTIONS(8475), + [aux_sym_def_type_statement_token4] = ACTIONS(8475), + [aux_sym_def_type_statement_token5] = ACTIONS(8475), + [aux_sym_def_type_statement_token6] = ACTIONS(8475), + [aux_sym_def_type_statement_token7] = ACTIONS(8475), + [aux_sym_def_type_statement_token8] = ACTIONS(8475), + [aux_sym_def_type_statement_token9] = ACTIONS(8475), + [aux_sym_def_type_statement_token10] = ACTIONS(8475), + [aux_sym_def_type_statement_token11] = ACTIONS(8475), + [aux_sym_def_type_statement_token12] = ACTIONS(8475), + [aux_sym_def_type_statement_token13] = ACTIONS(8475), + [aux_sym_def_type_statement_token14] = ACTIONS(8475), + [aux_sym_call_statement_token1] = ACTIONS(8475), + [sym__ambiguous_call_statement] = ACTIONS(8475), + [aux_sym_addressof_expression_token1] = ACTIONS(8475), + [aux_sym_type_of_expression_token1] = ACTIONS(8475), + [aux_sym_unary_expression_token1] = ACTIONS(8475), + [sym_string_literal] = ACTIONS(8477), + [sym_number_literal] = ACTIONS(8477), + [aux_sym_boolean_literal_token1] = ACTIONS(8475), + [aux_sym_boolean_literal_token2] = ACTIONS(8475), + [sym_nothing_literal] = ACTIONS(8475), + [sym_null_literal] = ACTIONS(8475), + [sym_empty_literal] = ACTIONS(8475), + [sym_date_literal] = ACTIONS(8477), + [anon_sym_POUND] = ACTIONS(8475), + }, + [STATE(5140)] = { + [aux_sym__argument_sequence_repeat1] = STATE(5140), + [sym_identifier] = ACTIONS(8533), + [sym_newline] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(8535), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8533), + [aux_sym_frm_property_statement_token1] = ACTIONS(8533), + [anon_sym_DOT] = ACTIONS(8533), + [anon_sym_BANG] = ACTIONS(8535), + [aux_sym__attribute_identifier_token1] = ACTIONS(8533), + [aux_sym_option_statement_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8533), + [aux_sym_preprocessor_const_token1] = ACTIONS(8533), + [sym_static_modifier] = ACTIONS(8533), + [sym__dim_keyword] = ACTIONS(8533), + [sym__redim_keyword] = ACTIONS(8533), + [aux_sym_get_accessor_token1] = ACTIONS(8533), + [aux_sym_set_accessor_token1] = ACTIONS(8533), + [anon_sym_COMMA] = ACTIONS(10457), + [aux_sym_const_declaration_token1] = ACTIONS(8533), + [anon_sym_LPAREN] = ACTIONS(8535), + [aux_sym_as_type_clause_token2] = ACTIONS(8533), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8533), + [aux_sym_visibility_token1] = ACTIONS(8533), + [aux_sym_visibility_token2] = ACTIONS(8533), + [aux_sym_elseif_fragment_token1] = ACTIONS(8533), + [aux_sym_else_fragment_token1] = ACTIONS(8533), + [aux_sym_select_statement_token1] = ACTIONS(8533), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8533), + [aux_sym__for_header_token1] = ACTIONS(8533), + [aux_sym_do_statement_token1] = ACTIONS(8533), + [aux_sym_do_condition_token1] = ACTIONS(8533), + [aux_sym_with_statement_token1] = ACTIONS(8533), + [aux_sym_exit_statement_token1] = ACTIONS(8533), + [sym_end_statement] = ACTIONS(8535), + [aux_sym_on_goto_statement_token1] = ACTIONS(8533), + [aux_sym_on_goto_statement_token2] = ACTIONS(8533), + [aux_sym_on_error_statement_token2] = ACTIONS(8533), + [sym__ambiguous_redim_statement] = ACTIONS(8535), + [aux_sym_erase_statement_token1] = ACTIONS(8533), + [aux_sym_open_statement_token1] = ACTIONS(8533), + [aux_sym_file_mode_token2] = ACTIONS(8533), + [aux_sym_file_access_token2] = ACTIONS(8533), + [aux_sym_file_lock_token2] = ACTIONS(8533), + [aux_sym_print_statement_token1] = ACTIONS(8533), + [anon_sym_PLUS] = ACTIONS(8535), + [anon_sym_DASH] = ACTIONS(8533), + [anon_sym_QMARK] = ACTIONS(8535), + [aux_sym_close_statement_token1] = ACTIONS(8533), + [aux_sym_put_statement_token1] = ACTIONS(8533), + [aux_sym_unlock_statement_token1] = ACTIONS(8533), + [aux_sym_seek_statement_token1] = ACTIONS(8533), + [sym_reset_statement] = ACTIONS(8533), + [aux_sym_raise_event_statement_token1] = ACTIONS(8533), + [sym_stop_statement] = ACTIONS(8533), + [sym_beep_statement] = ACTIONS(8533), + [aux_sym_unload_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token2] = ACTIONS(8533), + [aux_sym_def_type_statement_token3] = ACTIONS(8533), + [aux_sym_def_type_statement_token4] = ACTIONS(8533), + [aux_sym_def_type_statement_token5] = ACTIONS(8533), + [aux_sym_def_type_statement_token6] = ACTIONS(8533), + [aux_sym_def_type_statement_token7] = ACTIONS(8533), + [aux_sym_def_type_statement_token8] = ACTIONS(8533), + [aux_sym_def_type_statement_token9] = ACTIONS(8533), + [aux_sym_def_type_statement_token10] = ACTIONS(8533), + [aux_sym_def_type_statement_token11] = ACTIONS(8533), + [aux_sym_def_type_statement_token12] = ACTIONS(8533), + [aux_sym_def_type_statement_token13] = ACTIONS(8533), + [aux_sym_def_type_statement_token14] = ACTIONS(8533), + [aux_sym_call_statement_token1] = ACTIONS(8533), + [sym__ambiguous_call_statement] = ACTIONS(8533), + [aux_sym_addressof_expression_token1] = ACTIONS(8533), + [aux_sym_type_of_expression_token1] = ACTIONS(8533), + [aux_sym_unary_expression_token1] = ACTIONS(8533), + [sym_string_literal] = ACTIONS(8535), + [sym_number_literal] = ACTIONS(8535), + [aux_sym_boolean_literal_token1] = ACTIONS(8533), + [aux_sym_boolean_literal_token2] = ACTIONS(8533), + [sym_nothing_literal] = ACTIONS(8533), + [sym_null_literal] = ACTIONS(8533), + [sym_empty_literal] = ACTIONS(8533), + [sym_date_literal] = ACTIONS(8535), + [anon_sym_POUND] = ACTIONS(8533), + }, + [STATE(5141)] = { + [sym_identifier] = ACTIONS(8081), + [sym_newline] = ACTIONS(8083), + [anon_sym_COLON] = ACTIONS(8083), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8081), + [aux_sym_frm_property_statement_token1] = ACTIONS(8081), + [anon_sym_EQ] = ACTIONS(8083), + [anon_sym_DOT] = ACTIONS(8081), + [anon_sym_BANG] = ACTIONS(8083), + [aux_sym__attribute_identifier_token1] = ACTIONS(8081), + [aux_sym_option_statement_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8081), + [aux_sym_preprocessor_const_token1] = ACTIONS(8081), + [sym_static_modifier] = ACTIONS(8081), + [sym__dim_keyword] = ACTIONS(8081), + [sym__redim_keyword] = ACTIONS(8081), + [aux_sym_get_accessor_token1] = ACTIONS(8081), + [aux_sym_set_accessor_token1] = ACTIONS(8081), + [anon_sym_COMMA] = ACTIONS(8083), + [aux_sym_const_declaration_token1] = ACTIONS(8081), + [anon_sym_LPAREN] = ACTIONS(8083), + [aux_sym_as_type_clause_token2] = ACTIONS(8081), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8081), + [aux_sym_visibility_token1] = ACTIONS(8081), + [aux_sym_visibility_token2] = ACTIONS(8081), + [aux_sym_elseif_fragment_token1] = ACTIONS(8081), + [aux_sym_else_fragment_token1] = ACTIONS(8081), + [aux_sym_select_statement_token1] = ACTIONS(8081), + [aux_sym__for_header_token1] = ACTIONS(8081), + [aux_sym_do_statement_token1] = ACTIONS(8081), + [aux_sym_do_statement_token2] = ACTIONS(8081), + [aux_sym_do_condition_token1] = ACTIONS(8081), + [aux_sym_with_statement_token1] = ACTIONS(8081), + [aux_sym_exit_statement_token1] = ACTIONS(8081), + [sym_end_statement] = ACTIONS(8083), + [aux_sym_on_goto_statement_token1] = ACTIONS(8081), + [aux_sym_on_goto_statement_token2] = ACTIONS(8081), + [aux_sym_on_error_statement_token2] = ACTIONS(8081), + [sym__ambiguous_redim_statement] = ACTIONS(8083), + [aux_sym_erase_statement_token1] = ACTIONS(8081), + [aux_sym_open_statement_token1] = ACTIONS(8081), + [aux_sym_file_mode_token2] = ACTIONS(8081), + [aux_sym_file_access_token2] = ACTIONS(8081), + [aux_sym_file_lock_token2] = ACTIONS(8081), + [aux_sym_print_statement_token1] = ACTIONS(8081), + [anon_sym_PLUS] = ACTIONS(8083), + [anon_sym_DASH] = ACTIONS(8081), + [anon_sym_QMARK] = ACTIONS(8083), + [aux_sym_close_statement_token1] = ACTIONS(8081), + [aux_sym_put_statement_token1] = ACTIONS(8081), + [aux_sym_unlock_statement_token1] = ACTIONS(8081), + [aux_sym_seek_statement_token1] = ACTIONS(8081), + [sym_reset_statement] = ACTIONS(8081), + [aux_sym_raise_event_statement_token1] = ACTIONS(8081), + [sym_stop_statement] = ACTIONS(8081), + [sym_beep_statement] = ACTIONS(8081), + [aux_sym_unload_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token2] = ACTIONS(8081), + [aux_sym_def_type_statement_token3] = ACTIONS(8081), + [aux_sym_def_type_statement_token4] = ACTIONS(8081), + [aux_sym_def_type_statement_token5] = ACTIONS(8081), + [aux_sym_def_type_statement_token6] = ACTIONS(8081), + [aux_sym_def_type_statement_token7] = ACTIONS(8081), + [aux_sym_def_type_statement_token8] = ACTIONS(8081), + [aux_sym_def_type_statement_token9] = ACTIONS(8081), + [aux_sym_def_type_statement_token10] = ACTIONS(8081), + [aux_sym_def_type_statement_token11] = ACTIONS(8081), + [aux_sym_def_type_statement_token12] = ACTIONS(8081), + [aux_sym_def_type_statement_token13] = ACTIONS(8081), + [aux_sym_def_type_statement_token14] = ACTIONS(8081), + [aux_sym_call_statement_token1] = ACTIONS(8081), + [sym__ambiguous_call_statement] = ACTIONS(8081), + [aux_sym_addressof_expression_token1] = ACTIONS(8081), + [aux_sym_type_of_expression_token1] = ACTIONS(8081), + [aux_sym_unary_expression_token1] = ACTIONS(8081), + [sym_string_literal] = ACTIONS(8083), + [sym_number_literal] = ACTIONS(8083), + [aux_sym_boolean_literal_token1] = ACTIONS(8081), + [aux_sym_boolean_literal_token2] = ACTIONS(8081), + [sym_nothing_literal] = ACTIONS(8081), + [sym_null_literal] = ACTIONS(8081), + [sym_empty_literal] = ACTIONS(8081), + [sym_date_literal] = ACTIONS(8083), + [anon_sym_POUND] = ACTIONS(8081), + }, + [STATE(5142)] = { + [sym_identifier] = ACTIONS(8525), + [sym_newline] = ACTIONS(8527), + [anon_sym_COLON] = ACTIONS(8527), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8525), + [aux_sym_frm_property_statement_token1] = ACTIONS(8525), + [anon_sym_EQ] = ACTIONS(8527), + [anon_sym_DOT] = ACTIONS(8525), + [anon_sym_BANG] = ACTIONS(8527), + [aux_sym__attribute_identifier_token1] = ACTIONS(8525), + [aux_sym_option_statement_token3] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8525), + [aux_sym_preprocessor_const_token1] = ACTIONS(8525), + [sym_static_modifier] = ACTIONS(8525), + [sym__dim_keyword] = ACTIONS(8525), + [sym__redim_keyword] = ACTIONS(8525), + [aux_sym_get_accessor_token1] = ACTIONS(8525), + [aux_sym_set_accessor_token1] = ACTIONS(8525), + [anon_sym_COMMA] = ACTIONS(8527), + [aux_sym_const_declaration_token1] = ACTIONS(8525), + [anon_sym_LPAREN] = ACTIONS(8527), + [aux_sym_as_type_clause_token2] = ACTIONS(8525), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8525), + [aux_sym_visibility_token1] = ACTIONS(8525), + [aux_sym_visibility_token2] = ACTIONS(8525), + [aux_sym_elseif_fragment_token1] = ACTIONS(8525), + [aux_sym_else_fragment_token1] = ACTIONS(8525), + [aux_sym_select_statement_token1] = ACTIONS(8525), + [aux_sym__for_header_token1] = ACTIONS(8525), + [aux_sym_do_statement_token1] = ACTIONS(8525), + [aux_sym_do_statement_token2] = ACTIONS(8525), + [aux_sym_do_condition_token1] = ACTIONS(8525), + [aux_sym_with_statement_token1] = ACTIONS(8525), + [aux_sym_exit_statement_token1] = ACTIONS(8525), + [sym_end_statement] = ACTIONS(8527), + [aux_sym_on_goto_statement_token1] = ACTIONS(8525), + [aux_sym_on_goto_statement_token2] = ACTIONS(8525), + [aux_sym_on_error_statement_token2] = ACTIONS(8525), + [sym__ambiguous_redim_statement] = ACTIONS(8527), + [aux_sym_erase_statement_token1] = ACTIONS(8525), + [aux_sym_open_statement_token1] = ACTIONS(8525), + [aux_sym_file_mode_token2] = ACTIONS(8525), + [aux_sym_file_access_token2] = ACTIONS(8525), + [aux_sym_file_lock_token2] = ACTIONS(8525), + [aux_sym_print_statement_token1] = ACTIONS(8525), + [anon_sym_PLUS] = ACTIONS(8527), + [anon_sym_DASH] = ACTIONS(8525), + [anon_sym_QMARK] = ACTIONS(8527), + [aux_sym_close_statement_token1] = ACTIONS(8525), + [aux_sym_put_statement_token1] = ACTIONS(8525), + [aux_sym_unlock_statement_token1] = ACTIONS(8525), + [aux_sym_seek_statement_token1] = ACTIONS(8525), + [sym_reset_statement] = ACTIONS(8525), + [aux_sym_raise_event_statement_token1] = ACTIONS(8525), + [sym_stop_statement] = ACTIONS(8525), + [sym_beep_statement] = ACTIONS(8525), + [aux_sym_unload_statement_token1] = ACTIONS(8525), + [aux_sym_def_type_statement_token1] = ACTIONS(8525), + [aux_sym_def_type_statement_token2] = ACTIONS(8525), + [aux_sym_def_type_statement_token3] = ACTIONS(8525), + [aux_sym_def_type_statement_token4] = ACTIONS(8525), + [aux_sym_def_type_statement_token5] = ACTIONS(8525), + [aux_sym_def_type_statement_token6] = ACTIONS(8525), + [aux_sym_def_type_statement_token7] = ACTIONS(8525), + [aux_sym_def_type_statement_token8] = ACTIONS(8525), + [aux_sym_def_type_statement_token9] = ACTIONS(8525), + [aux_sym_def_type_statement_token10] = ACTIONS(8525), + [aux_sym_def_type_statement_token11] = ACTIONS(8525), + [aux_sym_def_type_statement_token12] = ACTIONS(8525), + [aux_sym_def_type_statement_token13] = ACTIONS(8525), + [aux_sym_def_type_statement_token14] = ACTIONS(8525), + [aux_sym_call_statement_token1] = ACTIONS(8525), + [sym__ambiguous_call_statement] = ACTIONS(8525), + [aux_sym_addressof_expression_token1] = ACTIONS(8525), + [aux_sym_type_of_expression_token1] = ACTIONS(8525), + [aux_sym_unary_expression_token1] = ACTIONS(8525), + [sym_string_literal] = ACTIONS(8527), + [sym_number_literal] = ACTIONS(8527), + [aux_sym_boolean_literal_token1] = ACTIONS(8525), + [aux_sym_boolean_literal_token2] = ACTIONS(8525), + [sym_nothing_literal] = ACTIONS(8525), + [sym_null_literal] = ACTIONS(8525), + [sym_empty_literal] = ACTIONS(8525), + [sym_date_literal] = ACTIONS(8527), + [anon_sym_POUND] = ACTIONS(8525), + }, + [STATE(5143)] = { + [aux_sym_redim_statement_repeat1] = STATE(5144), + [sym_identifier] = ACTIONS(8340), + [sym_newline] = ACTIONS(8342), + [anon_sym_COLON] = ACTIONS(8342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8340), + [aux_sym_frm_property_statement_token1] = ACTIONS(8340), + [anon_sym_DOT] = ACTIONS(8340), + [anon_sym_BANG] = ACTIONS(8342), + [aux_sym__attribute_identifier_token1] = ACTIONS(8340), + [aux_sym_option_statement_token3] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8340), + [aux_sym_preprocessor_const_token1] = ACTIONS(8340), + [sym_static_modifier] = ACTIONS(8340), + [sym__dim_keyword] = ACTIONS(8340), + [sym__redim_keyword] = ACTIONS(8340), + [aux_sym_get_accessor_token1] = ACTIONS(8340), + [aux_sym_set_accessor_token1] = ACTIONS(8340), + [anon_sym_COMMA] = ACTIONS(10431), + [aux_sym_const_declaration_token1] = ACTIONS(8340), + [anon_sym_LPAREN] = ACTIONS(8342), + [aux_sym_as_type_clause_token2] = ACTIONS(8340), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8340), + [aux_sym_visibility_token1] = ACTIONS(8340), + [aux_sym_visibility_token2] = ACTIONS(8340), + [aux_sym_elseif_fragment_token1] = ACTIONS(8340), + [aux_sym_else_fragment_token1] = ACTIONS(8340), + [aux_sym_select_statement_token1] = ACTIONS(8340), + [aux_sym__for_header_token1] = ACTIONS(8340), + [aux_sym_do_statement_token1] = ACTIONS(8340), + [aux_sym_do_condition_token1] = ACTIONS(8340), + [aux_sym_while_statement_token1] = ACTIONS(8340), + [aux_sym_with_statement_token1] = ACTIONS(8340), + [aux_sym_exit_statement_token1] = ACTIONS(8340), + [sym_end_statement] = ACTIONS(8342), + [aux_sym_on_goto_statement_token1] = ACTIONS(8340), + [aux_sym_on_goto_statement_token2] = ACTIONS(8340), + [aux_sym_on_error_statement_token2] = ACTIONS(8340), + [sym__ambiguous_redim_statement] = ACTIONS(8342), + [aux_sym_erase_statement_token1] = ACTIONS(8340), + [aux_sym_open_statement_token1] = ACTIONS(8340), + [aux_sym_file_mode_token2] = ACTIONS(8340), + [aux_sym_file_access_token2] = ACTIONS(8340), + [aux_sym_file_lock_token2] = ACTIONS(8340), + [aux_sym_print_statement_token1] = ACTIONS(8340), + [anon_sym_PLUS] = ACTIONS(8342), + [anon_sym_DASH] = ACTIONS(8340), + [anon_sym_QMARK] = ACTIONS(8342), + [aux_sym_close_statement_token1] = ACTIONS(8340), + [aux_sym_put_statement_token1] = ACTIONS(8340), + [aux_sym_unlock_statement_token1] = ACTIONS(8340), + [aux_sym_seek_statement_token1] = ACTIONS(8340), + [sym_reset_statement] = ACTIONS(8340), + [aux_sym_raise_event_statement_token1] = ACTIONS(8340), + [sym_stop_statement] = ACTIONS(8340), + [sym_beep_statement] = ACTIONS(8340), + [aux_sym_unload_statement_token1] = ACTIONS(8340), + [aux_sym_def_type_statement_token1] = ACTIONS(8340), + [aux_sym_def_type_statement_token2] = ACTIONS(8340), + [aux_sym_def_type_statement_token3] = ACTIONS(8340), + [aux_sym_def_type_statement_token4] = ACTIONS(8340), + [aux_sym_def_type_statement_token5] = ACTIONS(8340), + [aux_sym_def_type_statement_token6] = ACTIONS(8340), + [aux_sym_def_type_statement_token7] = ACTIONS(8340), + [aux_sym_def_type_statement_token8] = ACTIONS(8340), + [aux_sym_def_type_statement_token9] = ACTIONS(8340), + [aux_sym_def_type_statement_token10] = ACTIONS(8340), + [aux_sym_def_type_statement_token11] = ACTIONS(8340), + [aux_sym_def_type_statement_token12] = ACTIONS(8340), + [aux_sym_def_type_statement_token13] = ACTIONS(8340), + [aux_sym_def_type_statement_token14] = ACTIONS(8340), + [aux_sym_call_statement_token1] = ACTIONS(8340), + [sym__ambiguous_call_statement] = ACTIONS(8340), + [aux_sym_addressof_expression_token1] = ACTIONS(8340), + [aux_sym_type_of_expression_token1] = ACTIONS(8340), + [aux_sym_unary_expression_token1] = ACTIONS(8340), + [sym_string_literal] = ACTIONS(8342), + [sym_number_literal] = ACTIONS(8342), + [aux_sym_boolean_literal_token1] = ACTIONS(8340), + [aux_sym_boolean_literal_token2] = ACTIONS(8340), + [sym_nothing_literal] = ACTIONS(8340), + [sym_null_literal] = ACTIONS(8340), + [sym_empty_literal] = ACTIONS(8340), + [sym_date_literal] = ACTIONS(8342), + [anon_sym_POUND] = ACTIONS(8340), + }, + [STATE(5144)] = { + [aux_sym_redim_statement_repeat1] = STATE(5144), + [sym_identifier] = ACTIONS(8456), + [sym_newline] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8458), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8456), + [aux_sym_frm_property_statement_token1] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_BANG] = ACTIONS(8458), + [aux_sym__attribute_identifier_token1] = ACTIONS(8456), + [aux_sym_option_statement_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8456), + [aux_sym_preprocessor_const_token1] = ACTIONS(8456), + [sym_static_modifier] = ACTIONS(8456), + [sym__dim_keyword] = ACTIONS(8456), + [sym__redim_keyword] = ACTIONS(8456), + [aux_sym_get_accessor_token1] = ACTIONS(8456), + [aux_sym_set_accessor_token1] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(10460), + [aux_sym_const_declaration_token1] = ACTIONS(8456), + [anon_sym_LPAREN] = ACTIONS(8458), + [aux_sym_as_type_clause_token2] = ACTIONS(8456), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8456), + [aux_sym_visibility_token1] = ACTIONS(8456), + [aux_sym_visibility_token2] = ACTIONS(8456), + [aux_sym_elseif_fragment_token1] = ACTIONS(8456), + [aux_sym_else_fragment_token1] = ACTIONS(8456), + [aux_sym_select_statement_token1] = ACTIONS(8456), + [aux_sym__for_header_token1] = ACTIONS(8456), + [aux_sym_do_statement_token1] = ACTIONS(8456), + [aux_sym_do_condition_token1] = ACTIONS(8456), + [aux_sym_while_statement_token1] = ACTIONS(8456), + [aux_sym_with_statement_token1] = ACTIONS(8456), + [aux_sym_exit_statement_token1] = ACTIONS(8456), + [sym_end_statement] = ACTIONS(8458), + [aux_sym_on_goto_statement_token1] = ACTIONS(8456), + [aux_sym_on_goto_statement_token2] = ACTIONS(8456), + [aux_sym_on_error_statement_token2] = ACTIONS(8456), + [sym__ambiguous_redim_statement] = ACTIONS(8458), + [aux_sym_erase_statement_token1] = ACTIONS(8456), + [aux_sym_open_statement_token1] = ACTIONS(8456), + [aux_sym_file_mode_token2] = ACTIONS(8456), + [aux_sym_file_access_token2] = ACTIONS(8456), + [aux_sym_file_lock_token2] = ACTIONS(8456), + [aux_sym_print_statement_token1] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8458), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8458), + [aux_sym_close_statement_token1] = ACTIONS(8456), + [aux_sym_put_statement_token1] = ACTIONS(8456), + [aux_sym_unlock_statement_token1] = ACTIONS(8456), + [aux_sym_seek_statement_token1] = ACTIONS(8456), + [sym_reset_statement] = ACTIONS(8456), + [aux_sym_raise_event_statement_token1] = ACTIONS(8456), + [sym_stop_statement] = ACTIONS(8456), + [sym_beep_statement] = ACTIONS(8456), + [aux_sym_unload_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token2] = ACTIONS(8456), + [aux_sym_def_type_statement_token3] = ACTIONS(8456), + [aux_sym_def_type_statement_token4] = ACTIONS(8456), + [aux_sym_def_type_statement_token5] = ACTIONS(8456), + [aux_sym_def_type_statement_token6] = ACTIONS(8456), + [aux_sym_def_type_statement_token7] = ACTIONS(8456), + [aux_sym_def_type_statement_token8] = ACTIONS(8456), + [aux_sym_def_type_statement_token9] = ACTIONS(8456), + [aux_sym_def_type_statement_token10] = ACTIONS(8456), + [aux_sym_def_type_statement_token11] = ACTIONS(8456), + [aux_sym_def_type_statement_token12] = ACTIONS(8456), + [aux_sym_def_type_statement_token13] = ACTIONS(8456), + [aux_sym_def_type_statement_token14] = ACTIONS(8456), + [aux_sym_call_statement_token1] = ACTIONS(8456), + [sym__ambiguous_call_statement] = ACTIONS(8456), + [aux_sym_addressof_expression_token1] = ACTIONS(8456), + [aux_sym_type_of_expression_token1] = ACTIONS(8456), + [aux_sym_unary_expression_token1] = ACTIONS(8456), + [sym_string_literal] = ACTIONS(8458), + [sym_number_literal] = ACTIONS(8458), + [aux_sym_boolean_literal_token1] = ACTIONS(8456), + [aux_sym_boolean_literal_token2] = ACTIONS(8456), + [sym_nothing_literal] = ACTIONS(8456), + [sym_null_literal] = ACTIONS(8456), + [sym_empty_literal] = ACTIONS(8456), + [sym_date_literal] = ACTIONS(8458), + [anon_sym_POUND] = ACTIONS(8456), + }, + [STATE(5145)] = { + [sym_do_condition] = STATE(6934), + [sym_identifier] = ACTIONS(8475), + [sym_newline] = ACTIONS(8477), + [anon_sym_COLON] = ACTIONS(8477), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8475), + [aux_sym_frm_property_statement_token1] = ACTIONS(8475), + [anon_sym_DOT] = ACTIONS(8475), + [anon_sym_BANG] = ACTIONS(8477), + [aux_sym__attribute_identifier_token1] = ACTIONS(8475), + [aux_sym_option_statement_token3] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8475), + [aux_sym_preprocessor_const_token1] = ACTIONS(8475), + [sym_static_modifier] = ACTIONS(8475), + [sym__dim_keyword] = ACTIONS(8475), + [sym__redim_keyword] = ACTIONS(8475), + [aux_sym_get_accessor_token1] = ACTIONS(8475), + [aux_sym_set_accessor_token1] = ACTIONS(8475), + [aux_sym_const_declaration_token1] = ACTIONS(8475), + [anon_sym_LPAREN] = ACTIONS(8477), + [aux_sym_as_type_clause_token2] = ACTIONS(8475), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8475), + [aux_sym_visibility_token1] = ACTIONS(8475), + [aux_sym_visibility_token2] = ACTIONS(8475), + [aux_sym_elseif_fragment_token1] = ACTIONS(8475), + [aux_sym_else_fragment_token1] = ACTIONS(8475), + [aux_sym_select_statement_token1] = ACTIONS(8475), + [aux_sym__for_header_token1] = ACTIONS(8475), + [aux_sym_do_statement_token1] = ACTIONS(8475), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8475), + [aux_sym_with_statement_token1] = ACTIONS(8475), + [aux_sym_exit_statement_token1] = ACTIONS(8475), + [sym_end_statement] = ACTIONS(8477), + [aux_sym_on_goto_statement_token1] = ACTIONS(8475), + [aux_sym_on_goto_statement_token2] = ACTIONS(8475), + [aux_sym_on_error_statement_token2] = ACTIONS(8475), + [sym__ambiguous_redim_statement] = ACTIONS(8477), + [aux_sym_erase_statement_token1] = ACTIONS(8475), + [aux_sym_open_statement_token1] = ACTIONS(8475), + [aux_sym_file_mode_token2] = ACTIONS(8475), + [aux_sym_file_access_token2] = ACTIONS(8475), + [aux_sym_file_lock_token2] = ACTIONS(8475), + [aux_sym_print_statement_token1] = ACTIONS(8475), + [anon_sym_PLUS] = ACTIONS(8477), + [anon_sym_DASH] = ACTIONS(8475), + [anon_sym_QMARK] = ACTIONS(8477), + [aux_sym_close_statement_token1] = ACTIONS(8475), + [aux_sym_put_statement_token1] = ACTIONS(8475), + [aux_sym_unlock_statement_token1] = ACTIONS(8475), + [aux_sym_seek_statement_token1] = ACTIONS(8475), + [sym_reset_statement] = ACTIONS(8475), + [aux_sym_raise_event_statement_token1] = ACTIONS(8475), + [sym_stop_statement] = ACTIONS(8475), + [sym_beep_statement] = ACTIONS(8475), + [aux_sym_unload_statement_token1] = ACTIONS(8475), + [aux_sym_def_type_statement_token1] = ACTIONS(8475), + [aux_sym_def_type_statement_token2] = ACTIONS(8475), + [aux_sym_def_type_statement_token3] = ACTIONS(8475), + [aux_sym_def_type_statement_token4] = ACTIONS(8475), + [aux_sym_def_type_statement_token5] = ACTIONS(8475), + [aux_sym_def_type_statement_token6] = ACTIONS(8475), + [aux_sym_def_type_statement_token7] = ACTIONS(8475), + [aux_sym_def_type_statement_token8] = ACTIONS(8475), + [aux_sym_def_type_statement_token9] = ACTIONS(8475), + [aux_sym_def_type_statement_token10] = ACTIONS(8475), + [aux_sym_def_type_statement_token11] = ACTIONS(8475), + [aux_sym_def_type_statement_token12] = ACTIONS(8475), + [aux_sym_def_type_statement_token13] = ACTIONS(8475), + [aux_sym_def_type_statement_token14] = ACTIONS(8475), + [aux_sym_call_statement_token1] = ACTIONS(8475), + [sym__ambiguous_call_statement] = ACTIONS(8475), + [aux_sym_addressof_expression_token1] = ACTIONS(8475), + [aux_sym_type_of_expression_token1] = ACTIONS(8475), + [aux_sym_unary_expression_token1] = ACTIONS(8475), + [sym_string_literal] = ACTIONS(8477), + [sym_number_literal] = ACTIONS(8477), + [aux_sym_boolean_literal_token1] = ACTIONS(8475), + [aux_sym_boolean_literal_token2] = ACTIONS(8475), + [sym_nothing_literal] = ACTIONS(8475), + [sym_null_literal] = ACTIONS(8475), + [sym_empty_literal] = ACTIONS(8475), + [sym_date_literal] = ACTIONS(8477), + [anon_sym_POUND] = ACTIONS(8475), + }, + [STATE(5146)] = { + [sym_do_condition] = STATE(6936), + [sym_identifier] = ACTIONS(8491), + [sym_newline] = ACTIONS(8493), + [anon_sym_COLON] = ACTIONS(8493), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8491), + [aux_sym_frm_property_statement_token1] = ACTIONS(8491), + [anon_sym_DOT] = ACTIONS(8491), + [anon_sym_BANG] = ACTIONS(8493), + [aux_sym__attribute_identifier_token1] = ACTIONS(8491), + [aux_sym_option_statement_token3] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8491), + [aux_sym_preprocessor_const_token1] = ACTIONS(8491), + [sym_static_modifier] = ACTIONS(8491), + [sym__dim_keyword] = ACTIONS(8491), + [sym__redim_keyword] = ACTIONS(8491), + [aux_sym_get_accessor_token1] = ACTIONS(8491), + [aux_sym_set_accessor_token1] = ACTIONS(8491), + [aux_sym_const_declaration_token1] = ACTIONS(8491), + [anon_sym_LPAREN] = ACTIONS(8493), + [aux_sym_as_type_clause_token2] = ACTIONS(8491), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8491), + [aux_sym_visibility_token1] = ACTIONS(8491), + [aux_sym_visibility_token2] = ACTIONS(8491), + [aux_sym_elseif_fragment_token1] = ACTIONS(8491), + [aux_sym_else_fragment_token1] = ACTIONS(8491), + [aux_sym_select_statement_token1] = ACTIONS(8491), + [aux_sym__for_header_token1] = ACTIONS(8491), + [aux_sym_do_statement_token1] = ACTIONS(8491), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8491), + [aux_sym_with_statement_token1] = ACTIONS(8491), + [aux_sym_exit_statement_token1] = ACTIONS(8491), + [sym_end_statement] = ACTIONS(8493), + [aux_sym_on_goto_statement_token1] = ACTIONS(8491), + [aux_sym_on_goto_statement_token2] = ACTIONS(8491), + [aux_sym_on_error_statement_token2] = ACTIONS(8491), + [sym__ambiguous_redim_statement] = ACTIONS(8493), + [aux_sym_erase_statement_token1] = ACTIONS(8491), + [aux_sym_open_statement_token1] = ACTIONS(8491), + [aux_sym_file_mode_token2] = ACTIONS(8491), + [aux_sym_file_access_token2] = ACTIONS(8491), + [aux_sym_file_lock_token2] = ACTIONS(8491), + [aux_sym_print_statement_token1] = ACTIONS(8491), + [anon_sym_PLUS] = ACTIONS(8493), + [anon_sym_DASH] = ACTIONS(8491), + [anon_sym_QMARK] = ACTIONS(8493), + [aux_sym_close_statement_token1] = ACTIONS(8491), + [aux_sym_put_statement_token1] = ACTIONS(8491), + [aux_sym_unlock_statement_token1] = ACTIONS(8491), + [aux_sym_seek_statement_token1] = ACTIONS(8491), + [sym_reset_statement] = ACTIONS(8491), + [aux_sym_raise_event_statement_token1] = ACTIONS(8491), + [sym_stop_statement] = ACTIONS(8491), + [sym_beep_statement] = ACTIONS(8491), + [aux_sym_unload_statement_token1] = ACTIONS(8491), + [aux_sym_def_type_statement_token1] = ACTIONS(8491), + [aux_sym_def_type_statement_token2] = ACTIONS(8491), + [aux_sym_def_type_statement_token3] = ACTIONS(8491), + [aux_sym_def_type_statement_token4] = ACTIONS(8491), + [aux_sym_def_type_statement_token5] = ACTIONS(8491), + [aux_sym_def_type_statement_token6] = ACTIONS(8491), + [aux_sym_def_type_statement_token7] = ACTIONS(8491), + [aux_sym_def_type_statement_token8] = ACTIONS(8491), + [aux_sym_def_type_statement_token9] = ACTIONS(8491), + [aux_sym_def_type_statement_token10] = ACTIONS(8491), + [aux_sym_def_type_statement_token11] = ACTIONS(8491), + [aux_sym_def_type_statement_token12] = ACTIONS(8491), + [aux_sym_def_type_statement_token13] = ACTIONS(8491), + [aux_sym_def_type_statement_token14] = ACTIONS(8491), + [aux_sym_call_statement_token1] = ACTIONS(8491), + [sym__ambiguous_call_statement] = ACTIONS(8491), + [aux_sym_addressof_expression_token1] = ACTIONS(8491), + [aux_sym_type_of_expression_token1] = ACTIONS(8491), + [aux_sym_unary_expression_token1] = ACTIONS(8491), + [sym_string_literal] = ACTIONS(8493), + [sym_number_literal] = ACTIONS(8493), + [aux_sym_boolean_literal_token1] = ACTIONS(8491), + [aux_sym_boolean_literal_token2] = ACTIONS(8491), + [sym_nothing_literal] = ACTIONS(8491), + [sym_null_literal] = ACTIONS(8491), + [sym_empty_literal] = ACTIONS(8491), + [sym_date_literal] = ACTIONS(8493), + [anon_sym_POUND] = ACTIONS(8491), + }, + [STATE(5147)] = { + [sym_do_condition] = STATE(6937), + [sym_identifier] = ACTIONS(8501), + [sym_newline] = ACTIONS(8503), + [anon_sym_COLON] = ACTIONS(8503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8501), + [aux_sym_frm_property_statement_token1] = ACTIONS(8501), + [anon_sym_DOT] = ACTIONS(8501), + [anon_sym_BANG] = ACTIONS(8503), + [aux_sym__attribute_identifier_token1] = ACTIONS(8501), + [aux_sym_option_statement_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8501), + [aux_sym_preprocessor_const_token1] = ACTIONS(8501), + [sym_static_modifier] = ACTIONS(8501), + [sym__dim_keyword] = ACTIONS(8501), + [sym__redim_keyword] = ACTIONS(8501), + [aux_sym_get_accessor_token1] = ACTIONS(8501), + [aux_sym_set_accessor_token1] = ACTIONS(8501), + [aux_sym_const_declaration_token1] = ACTIONS(8501), + [anon_sym_LPAREN] = ACTIONS(8503), + [aux_sym_as_type_clause_token2] = ACTIONS(8501), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8501), + [aux_sym_visibility_token1] = ACTIONS(8501), + [aux_sym_visibility_token2] = ACTIONS(8501), + [aux_sym_elseif_fragment_token1] = ACTIONS(8501), + [aux_sym_else_fragment_token1] = ACTIONS(8501), + [aux_sym_select_statement_token1] = ACTIONS(8501), + [aux_sym__for_header_token1] = ACTIONS(8501), + [aux_sym_do_statement_token1] = ACTIONS(8501), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8501), + [aux_sym_with_statement_token1] = ACTIONS(8501), + [aux_sym_exit_statement_token1] = ACTIONS(8501), + [sym_end_statement] = ACTIONS(8503), + [aux_sym_on_goto_statement_token1] = ACTIONS(8501), + [aux_sym_on_goto_statement_token2] = ACTIONS(8501), + [aux_sym_on_error_statement_token2] = ACTIONS(8501), + [sym__ambiguous_redim_statement] = ACTIONS(8503), + [aux_sym_erase_statement_token1] = ACTIONS(8501), + [aux_sym_open_statement_token1] = ACTIONS(8501), + [aux_sym_file_mode_token2] = ACTIONS(8501), + [aux_sym_file_access_token2] = ACTIONS(8501), + [aux_sym_file_lock_token2] = ACTIONS(8501), + [aux_sym_print_statement_token1] = ACTIONS(8501), + [anon_sym_PLUS] = ACTIONS(8503), + [anon_sym_DASH] = ACTIONS(8501), + [anon_sym_QMARK] = ACTIONS(8503), + [aux_sym_close_statement_token1] = ACTIONS(8501), + [aux_sym_put_statement_token1] = ACTIONS(8501), + [aux_sym_unlock_statement_token1] = ACTIONS(8501), + [aux_sym_seek_statement_token1] = ACTIONS(8501), + [sym_reset_statement] = ACTIONS(8501), + [aux_sym_raise_event_statement_token1] = ACTIONS(8501), + [sym_stop_statement] = ACTIONS(8501), + [sym_beep_statement] = ACTIONS(8501), + [aux_sym_unload_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token2] = ACTIONS(8501), + [aux_sym_def_type_statement_token3] = ACTIONS(8501), + [aux_sym_def_type_statement_token4] = ACTIONS(8501), + [aux_sym_def_type_statement_token5] = ACTIONS(8501), + [aux_sym_def_type_statement_token6] = ACTIONS(8501), + [aux_sym_def_type_statement_token7] = ACTIONS(8501), + [aux_sym_def_type_statement_token8] = ACTIONS(8501), + [aux_sym_def_type_statement_token9] = ACTIONS(8501), + [aux_sym_def_type_statement_token10] = ACTIONS(8501), + [aux_sym_def_type_statement_token11] = ACTIONS(8501), + [aux_sym_def_type_statement_token12] = ACTIONS(8501), + [aux_sym_def_type_statement_token13] = ACTIONS(8501), + [aux_sym_def_type_statement_token14] = ACTIONS(8501), + [aux_sym_call_statement_token1] = ACTIONS(8501), + [sym__ambiguous_call_statement] = ACTIONS(8501), + [aux_sym_addressof_expression_token1] = ACTIONS(8501), + [aux_sym_type_of_expression_token1] = ACTIONS(8501), + [aux_sym_unary_expression_token1] = ACTIONS(8501), + [sym_string_literal] = ACTIONS(8503), + [sym_number_literal] = ACTIONS(8503), + [aux_sym_boolean_literal_token1] = ACTIONS(8501), + [aux_sym_boolean_literal_token2] = ACTIONS(8501), + [sym_nothing_literal] = ACTIONS(8501), + [sym_null_literal] = ACTIONS(8501), + [sym_empty_literal] = ACTIONS(8501), + [sym_date_literal] = ACTIONS(8503), + [anon_sym_POUND] = ACTIONS(8501), + }, + [STATE(5148)] = { + [sym_do_condition] = STATE(6939), + [sym_identifier] = ACTIONS(8509), + [sym_newline] = ACTIONS(8511), + [anon_sym_COLON] = ACTIONS(8511), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8509), + [aux_sym_frm_property_statement_token1] = ACTIONS(8509), + [anon_sym_DOT] = ACTIONS(8509), + [anon_sym_BANG] = ACTIONS(8511), + [aux_sym__attribute_identifier_token1] = ACTIONS(8509), + [aux_sym_option_statement_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8509), + [aux_sym_preprocessor_const_token1] = ACTIONS(8509), + [sym_static_modifier] = ACTIONS(8509), + [sym__dim_keyword] = ACTIONS(8509), + [sym__redim_keyword] = ACTIONS(8509), + [aux_sym_get_accessor_token1] = ACTIONS(8509), + [aux_sym_set_accessor_token1] = ACTIONS(8509), + [aux_sym_const_declaration_token1] = ACTIONS(8509), + [anon_sym_LPAREN] = ACTIONS(8511), + [aux_sym_as_type_clause_token2] = ACTIONS(8509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8509), + [aux_sym_visibility_token1] = ACTIONS(8509), + [aux_sym_visibility_token2] = ACTIONS(8509), + [aux_sym_elseif_fragment_token1] = ACTIONS(8509), + [aux_sym_else_fragment_token1] = ACTIONS(8509), + [aux_sym_select_statement_token1] = ACTIONS(8509), + [aux_sym__for_header_token1] = ACTIONS(8509), + [aux_sym_do_statement_token1] = ACTIONS(8509), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8509), + [aux_sym_with_statement_token1] = ACTIONS(8509), + [aux_sym_exit_statement_token1] = ACTIONS(8509), + [sym_end_statement] = ACTIONS(8511), + [aux_sym_on_goto_statement_token1] = ACTIONS(8509), + [aux_sym_on_goto_statement_token2] = ACTIONS(8509), + [aux_sym_on_error_statement_token2] = ACTIONS(8509), + [sym__ambiguous_redim_statement] = ACTIONS(8511), + [aux_sym_erase_statement_token1] = ACTIONS(8509), + [aux_sym_open_statement_token1] = ACTIONS(8509), + [aux_sym_file_mode_token2] = ACTIONS(8509), + [aux_sym_file_access_token2] = ACTIONS(8509), + [aux_sym_file_lock_token2] = ACTIONS(8509), + [aux_sym_print_statement_token1] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(8511), + [anon_sym_DASH] = ACTIONS(8509), + [anon_sym_QMARK] = ACTIONS(8511), + [aux_sym_close_statement_token1] = ACTIONS(8509), + [aux_sym_put_statement_token1] = ACTIONS(8509), + [aux_sym_unlock_statement_token1] = ACTIONS(8509), + [aux_sym_seek_statement_token1] = ACTIONS(8509), + [sym_reset_statement] = ACTIONS(8509), + [aux_sym_raise_event_statement_token1] = ACTIONS(8509), + [sym_stop_statement] = ACTIONS(8509), + [sym_beep_statement] = ACTIONS(8509), + [aux_sym_unload_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token2] = ACTIONS(8509), + [aux_sym_def_type_statement_token3] = ACTIONS(8509), + [aux_sym_def_type_statement_token4] = ACTIONS(8509), + [aux_sym_def_type_statement_token5] = ACTIONS(8509), + [aux_sym_def_type_statement_token6] = ACTIONS(8509), + [aux_sym_def_type_statement_token7] = ACTIONS(8509), + [aux_sym_def_type_statement_token8] = ACTIONS(8509), + [aux_sym_def_type_statement_token9] = ACTIONS(8509), + [aux_sym_def_type_statement_token10] = ACTIONS(8509), + [aux_sym_def_type_statement_token11] = ACTIONS(8509), + [aux_sym_def_type_statement_token12] = ACTIONS(8509), + [aux_sym_def_type_statement_token13] = ACTIONS(8509), + [aux_sym_def_type_statement_token14] = ACTIONS(8509), + [aux_sym_call_statement_token1] = ACTIONS(8509), + [sym__ambiguous_call_statement] = ACTIONS(8509), + [aux_sym_addressof_expression_token1] = ACTIONS(8509), + [aux_sym_type_of_expression_token1] = ACTIONS(8509), + [aux_sym_unary_expression_token1] = ACTIONS(8509), + [sym_string_literal] = ACTIONS(8511), + [sym_number_literal] = ACTIONS(8511), + [aux_sym_boolean_literal_token1] = ACTIONS(8509), + [aux_sym_boolean_literal_token2] = ACTIONS(8509), + [sym_nothing_literal] = ACTIONS(8509), + [sym_null_literal] = ACTIONS(8509), + [sym_empty_literal] = ACTIONS(8509), + [sym_date_literal] = ACTIONS(8511), + [anon_sym_POUND] = ACTIONS(8509), + }, + [STATE(5149)] = { + [sym_do_condition] = STATE(6940), + [sym_identifier] = ACTIONS(8513), + [sym_newline] = ACTIONS(8515), + [anon_sym_COLON] = ACTIONS(8515), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8513), + [aux_sym_frm_property_statement_token1] = ACTIONS(8513), + [anon_sym_DOT] = ACTIONS(8513), + [anon_sym_BANG] = ACTIONS(8515), + [aux_sym__attribute_identifier_token1] = ACTIONS(8513), + [aux_sym_option_statement_token3] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8513), + [aux_sym_preprocessor_const_token1] = ACTIONS(8513), + [sym_static_modifier] = ACTIONS(8513), + [sym__dim_keyword] = ACTIONS(8513), + [sym__redim_keyword] = ACTIONS(8513), + [aux_sym_get_accessor_token1] = ACTIONS(8513), + [aux_sym_set_accessor_token1] = ACTIONS(8513), + [aux_sym_const_declaration_token1] = ACTIONS(8513), + [anon_sym_LPAREN] = ACTIONS(8515), + [aux_sym_as_type_clause_token2] = ACTIONS(8513), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8513), + [aux_sym_visibility_token1] = ACTIONS(8513), + [aux_sym_visibility_token2] = ACTIONS(8513), + [aux_sym_elseif_fragment_token1] = ACTIONS(8513), + [aux_sym_else_fragment_token1] = ACTIONS(8513), + [aux_sym_select_statement_token1] = ACTIONS(8513), + [aux_sym__for_header_token1] = ACTIONS(8513), + [aux_sym_do_statement_token1] = ACTIONS(8513), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8513), + [aux_sym_with_statement_token1] = ACTIONS(8513), + [aux_sym_exit_statement_token1] = ACTIONS(8513), + [sym_end_statement] = ACTIONS(8515), + [aux_sym_on_goto_statement_token1] = ACTIONS(8513), + [aux_sym_on_goto_statement_token2] = ACTIONS(8513), + [aux_sym_on_error_statement_token2] = ACTIONS(8513), + [sym__ambiguous_redim_statement] = ACTIONS(8515), + [aux_sym_erase_statement_token1] = ACTIONS(8513), + [aux_sym_open_statement_token1] = ACTIONS(8513), + [aux_sym_file_mode_token2] = ACTIONS(8513), + [aux_sym_file_access_token2] = ACTIONS(8513), + [aux_sym_file_lock_token2] = ACTIONS(8513), + [aux_sym_print_statement_token1] = ACTIONS(8513), + [anon_sym_PLUS] = ACTIONS(8515), + [anon_sym_DASH] = ACTIONS(8513), + [anon_sym_QMARK] = ACTIONS(8515), + [aux_sym_close_statement_token1] = ACTIONS(8513), + [aux_sym_put_statement_token1] = ACTIONS(8513), + [aux_sym_unlock_statement_token1] = ACTIONS(8513), + [aux_sym_seek_statement_token1] = ACTIONS(8513), + [sym_reset_statement] = ACTIONS(8513), + [aux_sym_raise_event_statement_token1] = ACTIONS(8513), + [sym_stop_statement] = ACTIONS(8513), + [sym_beep_statement] = ACTIONS(8513), + [aux_sym_unload_statement_token1] = ACTIONS(8513), + [aux_sym_def_type_statement_token1] = ACTIONS(8513), + [aux_sym_def_type_statement_token2] = ACTIONS(8513), + [aux_sym_def_type_statement_token3] = ACTIONS(8513), + [aux_sym_def_type_statement_token4] = ACTIONS(8513), + [aux_sym_def_type_statement_token5] = ACTIONS(8513), + [aux_sym_def_type_statement_token6] = ACTIONS(8513), + [aux_sym_def_type_statement_token7] = ACTIONS(8513), + [aux_sym_def_type_statement_token8] = ACTIONS(8513), + [aux_sym_def_type_statement_token9] = ACTIONS(8513), + [aux_sym_def_type_statement_token10] = ACTIONS(8513), + [aux_sym_def_type_statement_token11] = ACTIONS(8513), + [aux_sym_def_type_statement_token12] = ACTIONS(8513), + [aux_sym_def_type_statement_token13] = ACTIONS(8513), + [aux_sym_def_type_statement_token14] = ACTIONS(8513), + [aux_sym_call_statement_token1] = ACTIONS(8513), + [sym__ambiguous_call_statement] = ACTIONS(8513), + [aux_sym_addressof_expression_token1] = ACTIONS(8513), + [aux_sym_type_of_expression_token1] = ACTIONS(8513), + [aux_sym_unary_expression_token1] = ACTIONS(8513), + [sym_string_literal] = ACTIONS(8515), + [sym_number_literal] = ACTIONS(8515), + [aux_sym_boolean_literal_token1] = ACTIONS(8513), + [aux_sym_boolean_literal_token2] = ACTIONS(8513), + [sym_nothing_literal] = ACTIONS(8513), + [sym_null_literal] = ACTIONS(8513), + [sym_empty_literal] = ACTIONS(8513), + [sym_date_literal] = ACTIONS(8515), + [anon_sym_POUND] = ACTIONS(8513), + }, + [STATE(5150)] = { + [sym_do_condition] = STATE(6941), + [sym_identifier] = ACTIONS(8517), + [sym_newline] = ACTIONS(8519), + [anon_sym_COLON] = ACTIONS(8519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8517), + [aux_sym_frm_property_statement_token1] = ACTIONS(8517), + [anon_sym_DOT] = ACTIONS(8517), + [anon_sym_BANG] = ACTIONS(8519), + [aux_sym__attribute_identifier_token1] = ACTIONS(8517), + [aux_sym_option_statement_token3] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8517), + [aux_sym_preprocessor_const_token1] = ACTIONS(8517), + [sym_static_modifier] = ACTIONS(8517), + [sym__dim_keyword] = ACTIONS(8517), + [sym__redim_keyword] = ACTIONS(8517), + [aux_sym_get_accessor_token1] = ACTIONS(8517), + [aux_sym_set_accessor_token1] = ACTIONS(8517), + [aux_sym_const_declaration_token1] = ACTIONS(8517), + [anon_sym_LPAREN] = ACTIONS(8519), + [aux_sym_as_type_clause_token2] = ACTIONS(8517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8517), + [aux_sym_visibility_token1] = ACTIONS(8517), + [aux_sym_visibility_token2] = ACTIONS(8517), + [aux_sym_elseif_fragment_token1] = ACTIONS(8517), + [aux_sym_else_fragment_token1] = ACTIONS(8517), + [aux_sym_select_statement_token1] = ACTIONS(8517), + [aux_sym__for_header_token1] = ACTIONS(8517), + [aux_sym_do_statement_token1] = ACTIONS(8517), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8517), + [aux_sym_with_statement_token1] = ACTIONS(8517), + [aux_sym_exit_statement_token1] = ACTIONS(8517), + [sym_end_statement] = ACTIONS(8519), + [aux_sym_on_goto_statement_token1] = ACTIONS(8517), + [aux_sym_on_goto_statement_token2] = ACTIONS(8517), + [aux_sym_on_error_statement_token2] = ACTIONS(8517), + [sym__ambiguous_redim_statement] = ACTIONS(8519), + [aux_sym_erase_statement_token1] = ACTIONS(8517), + [aux_sym_open_statement_token1] = ACTIONS(8517), + [aux_sym_file_mode_token2] = ACTIONS(8517), + [aux_sym_file_access_token2] = ACTIONS(8517), + [aux_sym_file_lock_token2] = ACTIONS(8517), + [aux_sym_print_statement_token1] = ACTIONS(8517), + [anon_sym_PLUS] = ACTIONS(8519), + [anon_sym_DASH] = ACTIONS(8517), + [anon_sym_QMARK] = ACTIONS(8519), + [aux_sym_close_statement_token1] = ACTIONS(8517), + [aux_sym_put_statement_token1] = ACTIONS(8517), + [aux_sym_unlock_statement_token1] = ACTIONS(8517), + [aux_sym_seek_statement_token1] = ACTIONS(8517), + [sym_reset_statement] = ACTIONS(8517), + [aux_sym_raise_event_statement_token1] = ACTIONS(8517), + [sym_stop_statement] = ACTIONS(8517), + [sym_beep_statement] = ACTIONS(8517), + [aux_sym_unload_statement_token1] = ACTIONS(8517), + [aux_sym_def_type_statement_token1] = ACTIONS(8517), + [aux_sym_def_type_statement_token2] = ACTIONS(8517), + [aux_sym_def_type_statement_token3] = ACTIONS(8517), + [aux_sym_def_type_statement_token4] = ACTIONS(8517), + [aux_sym_def_type_statement_token5] = ACTIONS(8517), + [aux_sym_def_type_statement_token6] = ACTIONS(8517), + [aux_sym_def_type_statement_token7] = ACTIONS(8517), + [aux_sym_def_type_statement_token8] = ACTIONS(8517), + [aux_sym_def_type_statement_token9] = ACTIONS(8517), + [aux_sym_def_type_statement_token10] = ACTIONS(8517), + [aux_sym_def_type_statement_token11] = ACTIONS(8517), + [aux_sym_def_type_statement_token12] = ACTIONS(8517), + [aux_sym_def_type_statement_token13] = ACTIONS(8517), + [aux_sym_def_type_statement_token14] = ACTIONS(8517), + [aux_sym_call_statement_token1] = ACTIONS(8517), + [sym__ambiguous_call_statement] = ACTIONS(8517), + [aux_sym_addressof_expression_token1] = ACTIONS(8517), + [aux_sym_type_of_expression_token1] = ACTIONS(8517), + [aux_sym_unary_expression_token1] = ACTIONS(8517), + [sym_string_literal] = ACTIONS(8519), + [sym_number_literal] = ACTIONS(8519), + [aux_sym_boolean_literal_token1] = ACTIONS(8517), + [aux_sym_boolean_literal_token2] = ACTIONS(8517), + [sym_nothing_literal] = ACTIONS(8517), + [sym_null_literal] = ACTIONS(8517), + [sym_empty_literal] = ACTIONS(8517), + [sym_date_literal] = ACTIONS(8519), + [anon_sym_POUND] = ACTIONS(8517), + }, + [STATE(5151)] = { + [aux_sym_input_statement_repeat1] = STATE(5301), + [sym_identifier] = ACTIONS(8237), + [sym_newline] = ACTIONS(8239), + [anon_sym_COLON] = ACTIONS(8239), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8237), + [aux_sym_frm_property_statement_token1] = ACTIONS(8237), + [anon_sym_DOT] = ACTIONS(8237), + [anon_sym_BANG] = ACTIONS(8239), + [aux_sym__attribute_identifier_token1] = ACTIONS(8237), + [aux_sym_option_statement_token3] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8237), + [aux_sym_preprocessor_const_token1] = ACTIONS(8237), + [sym_static_modifier] = ACTIONS(8237), + [sym__dim_keyword] = ACTIONS(8237), + [sym__redim_keyword] = ACTIONS(8237), + [aux_sym_get_accessor_token1] = ACTIONS(8237), + [aux_sym_set_accessor_token1] = ACTIONS(8237), + [anon_sym_COMMA] = ACTIONS(10394), + [aux_sym_const_declaration_token1] = ACTIONS(8237), + [anon_sym_LPAREN] = ACTIONS(8239), + [aux_sym_as_type_clause_token2] = ACTIONS(8237), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8237), + [aux_sym_visibility_token1] = ACTIONS(8237), + [aux_sym_visibility_token2] = ACTIONS(8237), + [aux_sym_elseif_fragment_token1] = ACTIONS(8237), + [aux_sym_else_fragment_token1] = ACTIONS(8237), + [aux_sym_select_statement_token1] = ACTIONS(8237), + [aux_sym_select_statement_token2] = ACTIONS(8237), + [aux_sym__for_header_token1] = ACTIONS(8237), + [aux_sym_do_statement_token1] = ACTIONS(8237), + [aux_sym_do_condition_token1] = ACTIONS(8237), + [aux_sym_with_statement_token1] = ACTIONS(8237), + [aux_sym_exit_statement_token1] = ACTIONS(8237), + [sym_end_statement] = ACTIONS(8239), + [aux_sym_on_goto_statement_token1] = ACTIONS(8237), + [aux_sym_on_goto_statement_token2] = ACTIONS(8237), + [aux_sym_on_error_statement_token2] = ACTIONS(8237), + [sym__ambiguous_redim_statement] = ACTIONS(8239), + [aux_sym_erase_statement_token1] = ACTIONS(8237), + [aux_sym_open_statement_token1] = ACTIONS(8237), + [aux_sym_file_mode_token2] = ACTIONS(8237), + [aux_sym_file_access_token2] = ACTIONS(8237), + [aux_sym_file_lock_token2] = ACTIONS(8237), + [aux_sym_print_statement_token1] = ACTIONS(8237), + [anon_sym_PLUS] = ACTIONS(8239), + [anon_sym_DASH] = ACTIONS(8237), + [anon_sym_QMARK] = ACTIONS(8239), + [aux_sym_close_statement_token1] = ACTIONS(8237), + [aux_sym_put_statement_token1] = ACTIONS(8237), + [aux_sym_unlock_statement_token1] = ACTIONS(8237), + [aux_sym_seek_statement_token1] = ACTIONS(8237), + [sym_reset_statement] = ACTIONS(8237), + [aux_sym_raise_event_statement_token1] = ACTIONS(8237), + [sym_stop_statement] = ACTIONS(8237), + [sym_beep_statement] = ACTIONS(8237), + [aux_sym_unload_statement_token1] = ACTIONS(8237), + [aux_sym_def_type_statement_token1] = ACTIONS(8237), + [aux_sym_def_type_statement_token2] = ACTIONS(8237), + [aux_sym_def_type_statement_token3] = ACTIONS(8237), + [aux_sym_def_type_statement_token4] = ACTIONS(8237), + [aux_sym_def_type_statement_token5] = ACTIONS(8237), + [aux_sym_def_type_statement_token6] = ACTIONS(8237), + [aux_sym_def_type_statement_token7] = ACTIONS(8237), + [aux_sym_def_type_statement_token8] = ACTIONS(8237), + [aux_sym_def_type_statement_token9] = ACTIONS(8237), + [aux_sym_def_type_statement_token10] = ACTIONS(8237), + [aux_sym_def_type_statement_token11] = ACTIONS(8237), + [aux_sym_def_type_statement_token12] = ACTIONS(8237), + [aux_sym_def_type_statement_token13] = ACTIONS(8237), + [aux_sym_def_type_statement_token14] = ACTIONS(8237), + [aux_sym_call_statement_token1] = ACTIONS(8237), + [sym__ambiguous_call_statement] = ACTIONS(8237), + [aux_sym_addressof_expression_token1] = ACTIONS(8237), + [aux_sym_type_of_expression_token1] = ACTIONS(8237), + [aux_sym_unary_expression_token1] = ACTIONS(8237), + [sym_string_literal] = ACTIONS(8239), + [sym_number_literal] = ACTIONS(8239), + [aux_sym_boolean_literal_token1] = ACTIONS(8237), + [aux_sym_boolean_literal_token2] = ACTIONS(8237), + [sym_nothing_literal] = ACTIONS(8237), + [sym_null_literal] = ACTIONS(8237), + [sym_empty_literal] = ACTIONS(8237), + [sym_date_literal] = ACTIONS(8239), + [anon_sym_POUND] = ACTIONS(8237), + }, + [STATE(5152)] = { + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(7951), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_statement_token2] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(5153)] = { + [aux_sym_erase_statement_repeat1] = STATE(5153), + [sym_identifier] = ACTIONS(8607), + [sym_newline] = ACTIONS(8609), + [anon_sym_COLON] = ACTIONS(8609), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8607), + [aux_sym_frm_property_statement_token1] = ACTIONS(8607), + [anon_sym_DOT] = ACTIONS(8607), + [anon_sym_BANG] = ACTIONS(8609), + [aux_sym__attribute_identifier_token1] = ACTIONS(8607), + [aux_sym_option_statement_token3] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8607), + [aux_sym_preprocessor_const_token1] = ACTIONS(8607), + [sym_static_modifier] = ACTIONS(8607), + [sym__dim_keyword] = ACTIONS(8607), + [sym__redim_keyword] = ACTIONS(8607), + [aux_sym_get_accessor_token1] = ACTIONS(8607), + [aux_sym_set_accessor_token1] = ACTIONS(8607), + [anon_sym_COMMA] = ACTIONS(10463), + [aux_sym_const_declaration_token1] = ACTIONS(8607), + [anon_sym_LPAREN] = ACTIONS(8609), + [aux_sym_as_type_clause_token2] = ACTIONS(8607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8607), + [aux_sym_visibility_token1] = ACTIONS(8607), + [aux_sym_visibility_token2] = ACTIONS(8607), + [aux_sym_elseif_fragment_token1] = ACTIONS(8607), + [aux_sym_else_fragment_token1] = ACTIONS(8607), + [aux_sym_select_statement_token1] = ACTIONS(8607), + [aux_sym__for_header_token1] = ACTIONS(8607), + [aux_sym_do_statement_token1] = ACTIONS(8607), + [aux_sym_do_condition_token1] = ACTIONS(8607), + [aux_sym_while_statement_token1] = ACTIONS(8607), + [aux_sym_with_statement_token1] = ACTIONS(8607), + [aux_sym_exit_statement_token1] = ACTIONS(8607), + [sym_end_statement] = ACTIONS(8609), + [aux_sym_on_goto_statement_token1] = ACTIONS(8607), + [aux_sym_on_goto_statement_token2] = ACTIONS(8607), + [aux_sym_on_error_statement_token2] = ACTIONS(8607), + [sym__ambiguous_redim_statement] = ACTIONS(8609), + [aux_sym_erase_statement_token1] = ACTIONS(8607), + [aux_sym_open_statement_token1] = ACTIONS(8607), + [aux_sym_file_mode_token2] = ACTIONS(8607), + [aux_sym_file_access_token2] = ACTIONS(8607), + [aux_sym_file_lock_token2] = ACTIONS(8607), + [aux_sym_print_statement_token1] = ACTIONS(8607), + [anon_sym_PLUS] = ACTIONS(8609), + [anon_sym_DASH] = ACTIONS(8607), + [anon_sym_QMARK] = ACTIONS(8609), + [aux_sym_close_statement_token1] = ACTIONS(8607), + [aux_sym_put_statement_token1] = ACTIONS(8607), + [aux_sym_unlock_statement_token1] = ACTIONS(8607), + [aux_sym_seek_statement_token1] = ACTIONS(8607), + [sym_reset_statement] = ACTIONS(8607), + [aux_sym_raise_event_statement_token1] = ACTIONS(8607), + [sym_stop_statement] = ACTIONS(8607), + [sym_beep_statement] = ACTIONS(8607), + [aux_sym_unload_statement_token1] = ACTIONS(8607), + [aux_sym_def_type_statement_token1] = ACTIONS(8607), + [aux_sym_def_type_statement_token2] = ACTIONS(8607), + [aux_sym_def_type_statement_token3] = ACTIONS(8607), + [aux_sym_def_type_statement_token4] = ACTIONS(8607), + [aux_sym_def_type_statement_token5] = ACTIONS(8607), + [aux_sym_def_type_statement_token6] = ACTIONS(8607), + [aux_sym_def_type_statement_token7] = ACTIONS(8607), + [aux_sym_def_type_statement_token8] = ACTIONS(8607), + [aux_sym_def_type_statement_token9] = ACTIONS(8607), + [aux_sym_def_type_statement_token10] = ACTIONS(8607), + [aux_sym_def_type_statement_token11] = ACTIONS(8607), + [aux_sym_def_type_statement_token12] = ACTIONS(8607), + [aux_sym_def_type_statement_token13] = ACTIONS(8607), + [aux_sym_def_type_statement_token14] = ACTIONS(8607), + [aux_sym_call_statement_token1] = ACTIONS(8607), + [sym__ambiguous_call_statement] = ACTIONS(8607), + [aux_sym_addressof_expression_token1] = ACTIONS(8607), + [aux_sym_type_of_expression_token1] = ACTIONS(8607), + [aux_sym_unary_expression_token1] = ACTIONS(8607), + [sym_string_literal] = ACTIONS(8609), + [sym_number_literal] = ACTIONS(8609), + [aux_sym_boolean_literal_token1] = ACTIONS(8607), + [aux_sym_boolean_literal_token2] = ACTIONS(8607), + [sym_nothing_literal] = ACTIONS(8607), + [sym_null_literal] = ACTIONS(8607), + [sym_empty_literal] = ACTIONS(8607), + [sym_date_literal] = ACTIONS(8609), + [anon_sym_POUND] = ACTIONS(8607), + }, + [STATE(5154)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5154), + [sym_identifier] = ACTIONS(8386), + [sym_newline] = ACTIONS(8388), + [anon_sym_COLON] = ACTIONS(8388), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8386), + [aux_sym_frm_property_statement_token1] = ACTIONS(8386), + [anon_sym_DOT] = ACTIONS(8386), + [anon_sym_BANG] = ACTIONS(8388), + [aux_sym__attribute_identifier_token1] = ACTIONS(8386), + [aux_sym_option_statement_token3] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8386), + [aux_sym_preprocessor_const_token1] = ACTIONS(8386), + [sym_static_modifier] = ACTIONS(8386), + [sym__dim_keyword] = ACTIONS(8386), + [sym__redim_keyword] = ACTIONS(8386), + [aux_sym_get_accessor_token1] = ACTIONS(8386), + [aux_sym_set_accessor_token1] = ACTIONS(8386), + [anon_sym_COMMA] = ACTIONS(10466), + [aux_sym_const_declaration_token1] = ACTIONS(8386), + [anon_sym_LPAREN] = ACTIONS(8388), + [aux_sym_as_type_clause_token2] = ACTIONS(8386), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8386), + [aux_sym_visibility_token1] = ACTIONS(8386), + [aux_sym_visibility_token2] = ACTIONS(8386), + [aux_sym_elseif_fragment_token1] = ACTIONS(8386), + [aux_sym_else_fragment_token1] = ACTIONS(8386), + [aux_sym_select_statement_token1] = ACTIONS(8386), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8386), + [aux_sym__for_header_token1] = ACTIONS(8386), + [aux_sym_do_statement_token1] = ACTIONS(8386), + [aux_sym_do_condition_token1] = ACTIONS(8386), + [aux_sym_with_statement_token1] = ACTIONS(8386), + [aux_sym_exit_statement_token1] = ACTIONS(8386), + [sym_end_statement] = ACTIONS(8388), + [aux_sym_on_goto_statement_token1] = ACTIONS(8386), + [aux_sym_on_goto_statement_token2] = ACTIONS(8386), + [aux_sym_on_error_statement_token2] = ACTIONS(8386), + [sym__ambiguous_redim_statement] = ACTIONS(8388), + [aux_sym_erase_statement_token1] = ACTIONS(8386), + [aux_sym_open_statement_token1] = ACTIONS(8386), + [aux_sym_file_mode_token2] = ACTIONS(8386), + [aux_sym_file_access_token2] = ACTIONS(8386), + [aux_sym_file_lock_token2] = ACTIONS(8386), + [aux_sym_print_statement_token1] = ACTIONS(8386), + [anon_sym_PLUS] = ACTIONS(8388), + [anon_sym_DASH] = ACTIONS(8386), + [anon_sym_QMARK] = ACTIONS(8388), + [aux_sym_close_statement_token1] = ACTIONS(8386), + [aux_sym_put_statement_token1] = ACTIONS(8386), + [aux_sym_unlock_statement_token1] = ACTIONS(8386), + [aux_sym_seek_statement_token1] = ACTIONS(8386), + [sym_reset_statement] = ACTIONS(8386), + [aux_sym_raise_event_statement_token1] = ACTIONS(8386), + [sym_stop_statement] = ACTIONS(8386), + [sym_beep_statement] = ACTIONS(8386), + [aux_sym_unload_statement_token1] = ACTIONS(8386), + [aux_sym_def_type_statement_token1] = ACTIONS(8386), + [aux_sym_def_type_statement_token2] = ACTIONS(8386), + [aux_sym_def_type_statement_token3] = ACTIONS(8386), + [aux_sym_def_type_statement_token4] = ACTIONS(8386), + [aux_sym_def_type_statement_token5] = ACTIONS(8386), + [aux_sym_def_type_statement_token6] = ACTIONS(8386), + [aux_sym_def_type_statement_token7] = ACTIONS(8386), + [aux_sym_def_type_statement_token8] = ACTIONS(8386), + [aux_sym_def_type_statement_token9] = ACTIONS(8386), + [aux_sym_def_type_statement_token10] = ACTIONS(8386), + [aux_sym_def_type_statement_token11] = ACTIONS(8386), + [aux_sym_def_type_statement_token12] = ACTIONS(8386), + [aux_sym_def_type_statement_token13] = ACTIONS(8386), + [aux_sym_def_type_statement_token14] = ACTIONS(8386), + [aux_sym_call_statement_token1] = ACTIONS(8386), + [sym__ambiguous_call_statement] = ACTIONS(8386), + [aux_sym_addressof_expression_token1] = ACTIONS(8386), + [aux_sym_type_of_expression_token1] = ACTIONS(8386), + [aux_sym_unary_expression_token1] = ACTIONS(8386), + [sym_string_literal] = ACTIONS(8388), + [sym_number_literal] = ACTIONS(8388), + [aux_sym_boolean_literal_token1] = ACTIONS(8386), + [aux_sym_boolean_literal_token2] = ACTIONS(8386), + [sym_nothing_literal] = ACTIONS(8386), + [sym_null_literal] = ACTIONS(8386), + [sym_empty_literal] = ACTIONS(8386), + [sym_date_literal] = ACTIONS(8388), + [anon_sym_POUND] = ACTIONS(8386), + }, + [STATE(5155)] = { + [sym_identifier] = ACTIONS(8162), + [sym_newline] = ACTIONS(8164), + [anon_sym_COLON] = ACTIONS(8164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8162), + [aux_sym_frm_property_statement_token1] = ACTIONS(8162), + [anon_sym_DOT] = ACTIONS(8162), + [anon_sym_BANG] = ACTIONS(8164), + [aux_sym__attribute_identifier_token1] = ACTIONS(8162), + [aux_sym_option_statement_token3] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8162), + [aux_sym_preprocessor_const_token1] = ACTIONS(8162), + [sym_static_modifier] = ACTIONS(8162), + [sym__dim_keyword] = ACTIONS(8162), + [sym__redim_keyword] = ACTIONS(8162), + [aux_sym_get_accessor_token1] = ACTIONS(8162), + [aux_sym_set_accessor_token1] = ACTIONS(8162), + [anon_sym_COMMA] = ACTIONS(8164), + [aux_sym_const_declaration_token1] = ACTIONS(8162), + [anon_sym_LPAREN] = ACTIONS(8164), + [aux_sym_as_type_clause_token2] = ACTIONS(8162), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8162), + [aux_sym_visibility_token1] = ACTIONS(8162), + [aux_sym_visibility_token2] = ACTIONS(8162), + [aux_sym_elseif_fragment_token1] = ACTIONS(8162), + [aux_sym_else_fragment_token1] = ACTIONS(8162), + [aux_sym_select_statement_token1] = ACTIONS(8162), + [aux_sym__for_header_token1] = ACTIONS(8162), + [aux_sym_do_statement_token1] = ACTIONS(8162), + [aux_sym_do_condition_token1] = ACTIONS(8162), + [aux_sym_while_statement_token1] = ACTIONS(8162), + [aux_sym_with_statement_token1] = ACTIONS(8162), + [aux_sym_exit_statement_token1] = ACTIONS(8162), + [sym_end_statement] = ACTIONS(8164), + [aux_sym_on_goto_statement_token1] = ACTIONS(8162), + [aux_sym_on_goto_statement_token2] = ACTIONS(8162), + [aux_sym_on_error_statement_token2] = ACTIONS(8162), + [sym__ambiguous_redim_statement] = ACTIONS(8164), + [aux_sym_erase_statement_token1] = ACTIONS(8162), + [aux_sym_open_statement_token1] = ACTIONS(8162), + [aux_sym_file_mode_token2] = ACTIONS(8162), + [aux_sym_file_access_token2] = ACTIONS(8162), + [aux_sym_file_lock_token2] = ACTIONS(8162), + [aux_sym_print_statement_token1] = ACTIONS(8162), + [anon_sym_PLUS] = ACTIONS(8164), + [anon_sym_DASH] = ACTIONS(8162), + [anon_sym_SEMI] = ACTIONS(8164), + [anon_sym_QMARK] = ACTIONS(8164), + [aux_sym_close_statement_token1] = ACTIONS(8162), + [aux_sym_put_statement_token1] = ACTIONS(8162), + [aux_sym_unlock_statement_token1] = ACTIONS(8162), + [aux_sym_seek_statement_token1] = ACTIONS(8162), + [sym_reset_statement] = ACTIONS(8162), + [aux_sym_raise_event_statement_token1] = ACTIONS(8162), + [sym_stop_statement] = ACTIONS(8162), + [sym_beep_statement] = ACTIONS(8162), + [aux_sym_unload_statement_token1] = ACTIONS(8162), + [aux_sym_def_type_statement_token1] = ACTIONS(8162), + [aux_sym_def_type_statement_token2] = ACTIONS(8162), + [aux_sym_def_type_statement_token3] = ACTIONS(8162), + [aux_sym_def_type_statement_token4] = ACTIONS(8162), + [aux_sym_def_type_statement_token5] = ACTIONS(8162), + [aux_sym_def_type_statement_token6] = ACTIONS(8162), + [aux_sym_def_type_statement_token7] = ACTIONS(8162), + [aux_sym_def_type_statement_token8] = ACTIONS(8162), + [aux_sym_def_type_statement_token9] = ACTIONS(8162), + [aux_sym_def_type_statement_token10] = ACTIONS(8162), + [aux_sym_def_type_statement_token11] = ACTIONS(8162), + [aux_sym_def_type_statement_token12] = ACTIONS(8162), + [aux_sym_def_type_statement_token13] = ACTIONS(8162), + [aux_sym_def_type_statement_token14] = ACTIONS(8162), + [aux_sym_call_statement_token1] = ACTIONS(8162), + [sym__ambiguous_call_statement] = ACTIONS(8162), + [aux_sym_addressof_expression_token1] = ACTIONS(8162), + [aux_sym_type_of_expression_token1] = ACTIONS(8162), + [aux_sym_unary_expression_token1] = ACTIONS(8162), + [sym_string_literal] = ACTIONS(8164), + [sym_number_literal] = ACTIONS(8164), + [aux_sym_boolean_literal_token1] = ACTIONS(8162), + [aux_sym_boolean_literal_token2] = ACTIONS(8162), + [sym_nothing_literal] = ACTIONS(8162), + [sym_null_literal] = ACTIONS(8162), + [sym_empty_literal] = ACTIONS(8162), + [sym_date_literal] = ACTIONS(8164), + [anon_sym_POUND] = ACTIONS(8162), + }, + [STATE(5156)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5503), + [sym_identifier] = ACTIONS(8154), + [sym_newline] = ACTIONS(8156), + [anon_sym_COLON] = ACTIONS(8156), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8154), + [aux_sym_frm_property_statement_token1] = ACTIONS(8154), + [anon_sym_DOT] = ACTIONS(8154), + [anon_sym_BANG] = ACTIONS(8156), + [aux_sym__attribute_identifier_token1] = ACTIONS(8154), + [aux_sym_option_statement_token3] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8154), + [aux_sym_preprocessor_const_token1] = ACTIONS(8154), + [sym_static_modifier] = ACTIONS(8154), + [sym__dim_keyword] = ACTIONS(8154), + [sym__redim_keyword] = ACTIONS(8154), + [aux_sym_get_accessor_token1] = ACTIONS(8154), + [aux_sym_set_accessor_token1] = ACTIONS(8154), + [anon_sym_COMMA] = ACTIONS(10469), + [aux_sym_const_declaration_token1] = ACTIONS(8154), + [anon_sym_LPAREN] = ACTIONS(8156), + [aux_sym_as_type_clause_token2] = ACTIONS(8154), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8154), + [aux_sym_visibility_token1] = ACTIONS(8154), + [aux_sym_visibility_token2] = ACTIONS(8154), + [aux_sym_elseif_fragment_token1] = ACTIONS(8154), + [aux_sym_else_fragment_token1] = ACTIONS(8154), + [aux_sym_select_statement_token1] = ACTIONS(8154), + [aux_sym_select_statement_token2] = ACTIONS(8154), + [aux_sym__for_header_token1] = ACTIONS(8154), + [aux_sym_do_statement_token1] = ACTIONS(8154), + [aux_sym_do_condition_token1] = ACTIONS(8154), + [aux_sym_with_statement_token1] = ACTIONS(8154), + [aux_sym_exit_statement_token1] = ACTIONS(8154), + [sym_end_statement] = ACTIONS(8156), + [aux_sym_on_goto_statement_token1] = ACTIONS(8154), + [aux_sym_on_goto_statement_token2] = ACTIONS(8154), + [aux_sym_on_error_statement_token2] = ACTIONS(8154), + [sym__ambiguous_redim_statement] = ACTIONS(8156), + [aux_sym_erase_statement_token1] = ACTIONS(8154), + [aux_sym_open_statement_token1] = ACTIONS(8154), + [aux_sym_file_mode_token2] = ACTIONS(8154), + [aux_sym_file_access_token2] = ACTIONS(8154), + [aux_sym_file_lock_token2] = ACTIONS(8154), + [aux_sym_print_statement_token1] = ACTIONS(8154), + [anon_sym_PLUS] = ACTIONS(8156), + [anon_sym_DASH] = ACTIONS(8154), + [anon_sym_QMARK] = ACTIONS(8156), + [aux_sym_close_statement_token1] = ACTIONS(8154), + [aux_sym_put_statement_token1] = ACTIONS(8154), + [aux_sym_unlock_statement_token1] = ACTIONS(8154), + [aux_sym_seek_statement_token1] = ACTIONS(8154), + [sym_reset_statement] = ACTIONS(8154), + [aux_sym_raise_event_statement_token1] = ACTIONS(8154), + [sym_stop_statement] = ACTIONS(8154), + [sym_beep_statement] = ACTIONS(8154), + [aux_sym_unload_statement_token1] = ACTIONS(8154), + [aux_sym_def_type_statement_token1] = ACTIONS(8154), + [aux_sym_def_type_statement_token2] = ACTIONS(8154), + [aux_sym_def_type_statement_token3] = ACTIONS(8154), + [aux_sym_def_type_statement_token4] = ACTIONS(8154), + [aux_sym_def_type_statement_token5] = ACTIONS(8154), + [aux_sym_def_type_statement_token6] = ACTIONS(8154), + [aux_sym_def_type_statement_token7] = ACTIONS(8154), + [aux_sym_def_type_statement_token8] = ACTIONS(8154), + [aux_sym_def_type_statement_token9] = ACTIONS(8154), + [aux_sym_def_type_statement_token10] = ACTIONS(8154), + [aux_sym_def_type_statement_token11] = ACTIONS(8154), + [aux_sym_def_type_statement_token12] = ACTIONS(8154), + [aux_sym_def_type_statement_token13] = ACTIONS(8154), + [aux_sym_def_type_statement_token14] = ACTIONS(8154), + [aux_sym_call_statement_token1] = ACTIONS(8154), + [sym__ambiguous_call_statement] = ACTIONS(8154), + [aux_sym_addressof_expression_token1] = ACTIONS(8154), + [aux_sym_type_of_expression_token1] = ACTIONS(8154), + [aux_sym_unary_expression_token1] = ACTIONS(8154), + [sym_string_literal] = ACTIONS(8156), + [sym_number_literal] = ACTIONS(8156), + [aux_sym_boolean_literal_token1] = ACTIONS(8154), + [aux_sym_boolean_literal_token2] = ACTIONS(8154), + [sym_nothing_literal] = ACTIONS(8154), + [sym_null_literal] = ACTIONS(8154), + [sym_empty_literal] = ACTIONS(8154), + [sym_date_literal] = ACTIONS(8156), + [anon_sym_POUND] = ACTIONS(8154), + }, + [STATE(5157)] = { + [sym_do_condition] = STATE(6376), + [sym_identifier] = ACTIONS(8411), + [sym_newline] = ACTIONS(8413), + [anon_sym_COLON] = ACTIONS(8413), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8411), + [aux_sym_frm_property_statement_token1] = ACTIONS(8411), + [anon_sym_DOT] = ACTIONS(8411), + [anon_sym_BANG] = ACTIONS(8413), + [aux_sym__attribute_identifier_token1] = ACTIONS(8411), + [aux_sym_option_statement_token3] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8411), + [aux_sym_preprocessor_const_token1] = ACTIONS(8411), + [sym_static_modifier] = ACTIONS(8411), + [sym__dim_keyword] = ACTIONS(8411), + [sym__redim_keyword] = ACTIONS(8411), + [aux_sym_get_accessor_token1] = ACTIONS(8411), + [aux_sym_set_accessor_token1] = ACTIONS(8411), + [aux_sym_const_declaration_token1] = ACTIONS(8411), + [anon_sym_LPAREN] = ACTIONS(8413), + [aux_sym_as_type_clause_token2] = ACTIONS(8411), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8411), + [aux_sym_visibility_token1] = ACTIONS(8411), + [aux_sym_visibility_token2] = ACTIONS(8411), + [aux_sym_elseif_fragment_token1] = ACTIONS(8411), + [aux_sym_else_fragment_token1] = ACTIONS(8411), + [aux_sym_select_statement_token1] = ACTIONS(8411), + [aux_sym__for_header_token1] = ACTIONS(8411), + [aux_sym_do_statement_token1] = ACTIONS(8411), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8411), + [aux_sym_exit_statement_token1] = ACTIONS(8411), + [sym_end_statement] = ACTIONS(8413), + [aux_sym_on_goto_statement_token1] = ACTIONS(8411), + [aux_sym_on_goto_statement_token2] = ACTIONS(8411), + [aux_sym_on_error_statement_token2] = ACTIONS(8411), + [sym__ambiguous_redim_statement] = ACTIONS(8413), + [aux_sym_erase_statement_token1] = ACTIONS(8411), + [aux_sym_open_statement_token1] = ACTIONS(8411), + [aux_sym_file_mode_token2] = ACTIONS(8411), + [aux_sym_file_access_token2] = ACTIONS(8411), + [aux_sym_file_lock_token2] = ACTIONS(8411), + [aux_sym_print_statement_token1] = ACTIONS(8411), + [anon_sym_PLUS] = ACTIONS(8413), + [anon_sym_DASH] = ACTIONS(8411), + [anon_sym_QMARK] = ACTIONS(8413), + [aux_sym_close_statement_token1] = ACTIONS(8411), + [aux_sym_put_statement_token1] = ACTIONS(8411), + [aux_sym_unlock_statement_token1] = ACTIONS(8411), + [aux_sym_seek_statement_token1] = ACTIONS(8411), + [sym_reset_statement] = ACTIONS(8411), + [aux_sym_raise_event_statement_token1] = ACTIONS(8411), + [sym_stop_statement] = ACTIONS(8411), + [sym_beep_statement] = ACTIONS(8411), + [aux_sym_unload_statement_token1] = ACTIONS(8411), + [aux_sym_def_type_statement_token1] = ACTIONS(8411), + [aux_sym_def_type_statement_token2] = ACTIONS(8411), + [aux_sym_def_type_statement_token3] = ACTIONS(8411), + [aux_sym_def_type_statement_token4] = ACTIONS(8411), + [aux_sym_def_type_statement_token5] = ACTIONS(8411), + [aux_sym_def_type_statement_token6] = ACTIONS(8411), + [aux_sym_def_type_statement_token7] = ACTIONS(8411), + [aux_sym_def_type_statement_token8] = ACTIONS(8411), + [aux_sym_def_type_statement_token9] = ACTIONS(8411), + [aux_sym_def_type_statement_token10] = ACTIONS(8411), + [aux_sym_def_type_statement_token11] = ACTIONS(8411), + [aux_sym_def_type_statement_token12] = ACTIONS(8411), + [aux_sym_def_type_statement_token13] = ACTIONS(8411), + [aux_sym_def_type_statement_token14] = ACTIONS(8411), + [aux_sym_call_statement_token1] = ACTIONS(8411), + [sym__ambiguous_call_statement] = ACTIONS(8411), + [aux_sym_addressof_expression_token1] = ACTIONS(8411), + [aux_sym_type_of_expression_token1] = ACTIONS(8411), + [aux_sym_unary_expression_token1] = ACTIONS(8411), + [sym_string_literal] = ACTIONS(8413), + [sym_number_literal] = ACTIONS(8413), + [aux_sym_boolean_literal_token1] = ACTIONS(8411), + [aux_sym_boolean_literal_token2] = ACTIONS(8411), + [sym_nothing_literal] = ACTIONS(8411), + [sym_null_literal] = ACTIONS(8411), + [sym_empty_literal] = ACTIONS(8411), + [sym_date_literal] = ACTIONS(8413), + [anon_sym_POUND] = ACTIONS(8411), + }, + [STATE(5158)] = { + [sym_do_condition] = STATE(6381), + [sym_identifier] = ACTIONS(8415), + [sym_newline] = ACTIONS(8417), + [anon_sym_COLON] = ACTIONS(8417), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8415), + [aux_sym_frm_property_statement_token1] = ACTIONS(8415), + [anon_sym_DOT] = ACTIONS(8415), + [anon_sym_BANG] = ACTIONS(8417), + [aux_sym__attribute_identifier_token1] = ACTIONS(8415), + [aux_sym_option_statement_token3] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8415), + [aux_sym_preprocessor_const_token1] = ACTIONS(8415), + [sym_static_modifier] = ACTIONS(8415), + [sym__dim_keyword] = ACTIONS(8415), + [sym__redim_keyword] = ACTIONS(8415), + [aux_sym_get_accessor_token1] = ACTIONS(8415), + [aux_sym_set_accessor_token1] = ACTIONS(8415), + [aux_sym_const_declaration_token1] = ACTIONS(8415), + [anon_sym_LPAREN] = ACTIONS(8417), + [aux_sym_as_type_clause_token2] = ACTIONS(8415), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8415), + [aux_sym_visibility_token1] = ACTIONS(8415), + [aux_sym_visibility_token2] = ACTIONS(8415), + [aux_sym_elseif_fragment_token1] = ACTIONS(8415), + [aux_sym_else_fragment_token1] = ACTIONS(8415), + [aux_sym_select_statement_token1] = ACTIONS(8415), + [aux_sym__for_header_token1] = ACTIONS(8415), + [aux_sym_do_statement_token1] = ACTIONS(8415), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8415), + [aux_sym_exit_statement_token1] = ACTIONS(8415), + [sym_end_statement] = ACTIONS(8417), + [aux_sym_on_goto_statement_token1] = ACTIONS(8415), + [aux_sym_on_goto_statement_token2] = ACTIONS(8415), + [aux_sym_on_error_statement_token2] = ACTIONS(8415), + [sym__ambiguous_redim_statement] = ACTIONS(8417), + [aux_sym_erase_statement_token1] = ACTIONS(8415), + [aux_sym_open_statement_token1] = ACTIONS(8415), + [aux_sym_file_mode_token2] = ACTIONS(8415), + [aux_sym_file_access_token2] = ACTIONS(8415), + [aux_sym_file_lock_token2] = ACTIONS(8415), + [aux_sym_print_statement_token1] = ACTIONS(8415), + [anon_sym_PLUS] = ACTIONS(8417), + [anon_sym_DASH] = ACTIONS(8415), + [anon_sym_QMARK] = ACTIONS(8417), + [aux_sym_close_statement_token1] = ACTIONS(8415), + [aux_sym_put_statement_token1] = ACTIONS(8415), + [aux_sym_unlock_statement_token1] = ACTIONS(8415), + [aux_sym_seek_statement_token1] = ACTIONS(8415), + [sym_reset_statement] = ACTIONS(8415), + [aux_sym_raise_event_statement_token1] = ACTIONS(8415), + [sym_stop_statement] = ACTIONS(8415), + [sym_beep_statement] = ACTIONS(8415), + [aux_sym_unload_statement_token1] = ACTIONS(8415), + [aux_sym_def_type_statement_token1] = ACTIONS(8415), + [aux_sym_def_type_statement_token2] = ACTIONS(8415), + [aux_sym_def_type_statement_token3] = ACTIONS(8415), + [aux_sym_def_type_statement_token4] = ACTIONS(8415), + [aux_sym_def_type_statement_token5] = ACTIONS(8415), + [aux_sym_def_type_statement_token6] = ACTIONS(8415), + [aux_sym_def_type_statement_token7] = ACTIONS(8415), + [aux_sym_def_type_statement_token8] = ACTIONS(8415), + [aux_sym_def_type_statement_token9] = ACTIONS(8415), + [aux_sym_def_type_statement_token10] = ACTIONS(8415), + [aux_sym_def_type_statement_token11] = ACTIONS(8415), + [aux_sym_def_type_statement_token12] = ACTIONS(8415), + [aux_sym_def_type_statement_token13] = ACTIONS(8415), + [aux_sym_def_type_statement_token14] = ACTIONS(8415), + [aux_sym_call_statement_token1] = ACTIONS(8415), + [sym__ambiguous_call_statement] = ACTIONS(8415), + [aux_sym_addressof_expression_token1] = ACTIONS(8415), + [aux_sym_type_of_expression_token1] = ACTIONS(8415), + [aux_sym_unary_expression_token1] = ACTIONS(8415), + [sym_string_literal] = ACTIONS(8417), + [sym_number_literal] = ACTIONS(8417), + [aux_sym_boolean_literal_token1] = ACTIONS(8415), + [aux_sym_boolean_literal_token2] = ACTIONS(8415), + [sym_nothing_literal] = ACTIONS(8415), + [sym_null_literal] = ACTIONS(8415), + [sym_empty_literal] = ACTIONS(8415), + [sym_date_literal] = ACTIONS(8417), + [anon_sym_POUND] = ACTIONS(8415), + }, + [STATE(5159)] = { + [aux_sym_close_statement_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(8443), + [sym_newline] = ACTIONS(8445), + [anon_sym_COLON] = ACTIONS(8445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8443), + [aux_sym_frm_property_statement_token1] = ACTIONS(8443), + [anon_sym_DOT] = ACTIONS(8443), + [anon_sym_BANG] = ACTIONS(8445), + [aux_sym__attribute_identifier_token1] = ACTIONS(8443), + [aux_sym_option_statement_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8443), + [aux_sym_preprocessor_const_token1] = ACTIONS(8443), + [sym_static_modifier] = ACTIONS(8443), + [sym__dim_keyword] = ACTIONS(8443), + [sym__redim_keyword] = ACTIONS(8443), + [aux_sym_get_accessor_token1] = ACTIONS(8443), + [aux_sym_set_accessor_token1] = ACTIONS(8443), + [anon_sym_COMMA] = ACTIONS(10471), + [aux_sym_const_declaration_token1] = ACTIONS(8443), + [anon_sym_LPAREN] = ACTIONS(8445), + [aux_sym_as_type_clause_token2] = ACTIONS(8443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8443), + [aux_sym_visibility_token1] = ACTIONS(8443), + [aux_sym_visibility_token2] = ACTIONS(8443), + [aux_sym_elseif_fragment_token1] = ACTIONS(8443), + [aux_sym_else_fragment_token1] = ACTIONS(8443), + [aux_sym_select_statement_token1] = ACTIONS(8443), + [aux_sym__for_header_token1] = ACTIONS(8443), + [aux_sym_do_statement_token1] = ACTIONS(8443), + [aux_sym_do_condition_token1] = ACTIONS(8443), + [aux_sym_while_statement_token1] = ACTIONS(8443), + [aux_sym_with_statement_token1] = ACTIONS(8443), + [aux_sym_exit_statement_token1] = ACTIONS(8443), + [sym_end_statement] = ACTIONS(8445), + [aux_sym_on_goto_statement_token1] = ACTIONS(8443), + [aux_sym_on_goto_statement_token2] = ACTIONS(8443), + [aux_sym_on_error_statement_token2] = ACTIONS(8443), + [sym__ambiguous_redim_statement] = ACTIONS(8445), + [aux_sym_erase_statement_token1] = ACTIONS(8443), + [aux_sym_open_statement_token1] = ACTIONS(8443), + [aux_sym_file_mode_token2] = ACTIONS(8443), + [aux_sym_file_access_token2] = ACTIONS(8443), + [aux_sym_file_lock_token2] = ACTIONS(8443), + [aux_sym_print_statement_token1] = ACTIONS(8443), + [anon_sym_PLUS] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8443), + [anon_sym_QMARK] = ACTIONS(8445), + [aux_sym_close_statement_token1] = ACTIONS(8443), + [aux_sym_put_statement_token1] = ACTIONS(8443), + [aux_sym_unlock_statement_token1] = ACTIONS(8443), + [aux_sym_seek_statement_token1] = ACTIONS(8443), + [sym_reset_statement] = ACTIONS(8443), + [aux_sym_raise_event_statement_token1] = ACTIONS(8443), + [sym_stop_statement] = ACTIONS(8443), + [sym_beep_statement] = ACTIONS(8443), + [aux_sym_unload_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token2] = ACTIONS(8443), + [aux_sym_def_type_statement_token3] = ACTIONS(8443), + [aux_sym_def_type_statement_token4] = ACTIONS(8443), + [aux_sym_def_type_statement_token5] = ACTIONS(8443), + [aux_sym_def_type_statement_token6] = ACTIONS(8443), + [aux_sym_def_type_statement_token7] = ACTIONS(8443), + [aux_sym_def_type_statement_token8] = ACTIONS(8443), + [aux_sym_def_type_statement_token9] = ACTIONS(8443), + [aux_sym_def_type_statement_token10] = ACTIONS(8443), + [aux_sym_def_type_statement_token11] = ACTIONS(8443), + [aux_sym_def_type_statement_token12] = ACTIONS(8443), + [aux_sym_def_type_statement_token13] = ACTIONS(8443), + [aux_sym_def_type_statement_token14] = ACTIONS(8443), + [aux_sym_call_statement_token1] = ACTIONS(8443), + [sym__ambiguous_call_statement] = ACTIONS(8443), + [aux_sym_addressof_expression_token1] = ACTIONS(8443), + [aux_sym_type_of_expression_token1] = ACTIONS(8443), + [aux_sym_unary_expression_token1] = ACTIONS(8443), + [sym_string_literal] = ACTIONS(8445), + [sym_number_literal] = ACTIONS(8445), + [aux_sym_boolean_literal_token1] = ACTIONS(8443), + [aux_sym_boolean_literal_token2] = ACTIONS(8443), + [sym_nothing_literal] = ACTIONS(8443), + [sym_null_literal] = ACTIONS(8443), + [sym_empty_literal] = ACTIONS(8443), + [sym_date_literal] = ACTIONS(8445), + [anon_sym_POUND] = ACTIONS(8443), + }, + [STATE(5160)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5179), + [sym_identifier] = ACTIONS(7939), + [sym_newline] = ACTIONS(7941), + [anon_sym_COLON] = ACTIONS(7941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7939), + [aux_sym_frm_property_statement_token1] = ACTIONS(7939), + [anon_sym_DOT] = ACTIONS(7939), + [anon_sym_BANG] = ACTIONS(7941), + [aux_sym__attribute_identifier_token1] = ACTIONS(7939), + [aux_sym_option_statement_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7939), + [aux_sym_preprocessor_const_token1] = ACTIONS(7939), + [sym_static_modifier] = ACTIONS(7939), + [sym__dim_keyword] = ACTIONS(7939), + [sym__redim_keyword] = ACTIONS(7939), + [aux_sym_get_accessor_token1] = ACTIONS(7939), + [aux_sym_set_accessor_token1] = ACTIONS(7939), + [anon_sym_COMMA] = ACTIONS(10474), + [aux_sym_const_declaration_token1] = ACTIONS(7939), + [anon_sym_LPAREN] = ACTIONS(7941), + [aux_sym_as_type_clause_token2] = ACTIONS(7939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7939), + [aux_sym_visibility_token1] = ACTIONS(7939), + [aux_sym_visibility_token2] = ACTIONS(7939), + [aux_sym_elseif_fragment_token1] = ACTIONS(7939), + [aux_sym_else_fragment_token1] = ACTIONS(7939), + [aux_sym_select_statement_token1] = ACTIONS(7939), + [aux_sym__for_header_token1] = ACTIONS(7939), + [aux_sym_do_statement_token1] = ACTIONS(7939), + [aux_sym_do_condition_token1] = ACTIONS(7939), + [aux_sym_while_statement_token1] = ACTIONS(7939), + [aux_sym_with_statement_token1] = ACTIONS(7939), + [aux_sym_exit_statement_token1] = ACTIONS(7939), + [sym_end_statement] = ACTIONS(7941), + [aux_sym_on_goto_statement_token1] = ACTIONS(7939), + [aux_sym_on_goto_statement_token2] = ACTIONS(7939), + [aux_sym_on_error_statement_token2] = ACTIONS(7939), + [sym__ambiguous_redim_statement] = ACTIONS(7941), + [aux_sym_erase_statement_token1] = ACTIONS(7939), + [aux_sym_open_statement_token1] = ACTIONS(7939), + [aux_sym_file_mode_token2] = ACTIONS(7939), + [aux_sym_file_access_token2] = ACTIONS(7939), + [aux_sym_file_lock_token2] = ACTIONS(7939), + [aux_sym_print_statement_token1] = ACTIONS(7939), + [anon_sym_PLUS] = ACTIONS(7941), + [anon_sym_DASH] = ACTIONS(7939), + [anon_sym_QMARK] = ACTIONS(7941), + [aux_sym_close_statement_token1] = ACTIONS(7939), + [aux_sym_put_statement_token1] = ACTIONS(7939), + [aux_sym_unlock_statement_token1] = ACTIONS(7939), + [aux_sym_seek_statement_token1] = ACTIONS(7939), + [sym_reset_statement] = ACTIONS(7939), + [aux_sym_raise_event_statement_token1] = ACTIONS(7939), + [sym_stop_statement] = ACTIONS(7939), + [sym_beep_statement] = ACTIONS(7939), + [aux_sym_unload_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token2] = ACTIONS(7939), + [aux_sym_def_type_statement_token3] = ACTIONS(7939), + [aux_sym_def_type_statement_token4] = ACTIONS(7939), + [aux_sym_def_type_statement_token5] = ACTIONS(7939), + [aux_sym_def_type_statement_token6] = ACTIONS(7939), + [aux_sym_def_type_statement_token7] = ACTIONS(7939), + [aux_sym_def_type_statement_token8] = ACTIONS(7939), + [aux_sym_def_type_statement_token9] = ACTIONS(7939), + [aux_sym_def_type_statement_token10] = ACTIONS(7939), + [aux_sym_def_type_statement_token11] = ACTIONS(7939), + [aux_sym_def_type_statement_token12] = ACTIONS(7939), + [aux_sym_def_type_statement_token13] = ACTIONS(7939), + [aux_sym_def_type_statement_token14] = ACTIONS(7939), + [aux_sym_call_statement_token1] = ACTIONS(7939), + [sym__ambiguous_call_statement] = ACTIONS(7939), + [aux_sym_addressof_expression_token1] = ACTIONS(7939), + [aux_sym_type_of_expression_token1] = ACTIONS(7939), + [aux_sym_unary_expression_token1] = ACTIONS(7939), + [sym_string_literal] = ACTIONS(7941), + [sym_number_literal] = ACTIONS(7941), + [aux_sym_boolean_literal_token1] = ACTIONS(7939), + [aux_sym_boolean_literal_token2] = ACTIONS(7939), + [sym_nothing_literal] = ACTIONS(7939), + [sym_null_literal] = ACTIONS(7939), + [sym_empty_literal] = ACTIONS(7939), + [sym_date_literal] = ACTIONS(7941), + [anon_sym_POUND] = ACTIONS(7939), + }, + [STATE(5161)] = { + [sym_do_condition] = STATE(6384), + [sym_identifier] = ACTIONS(8419), + [sym_newline] = ACTIONS(8421), + [anon_sym_COLON] = ACTIONS(8421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8419), + [aux_sym_frm_property_statement_token1] = ACTIONS(8419), + [anon_sym_DOT] = ACTIONS(8419), + [anon_sym_BANG] = ACTIONS(8421), + [aux_sym__attribute_identifier_token1] = ACTIONS(8419), + [aux_sym_option_statement_token3] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8419), + [aux_sym_preprocessor_const_token1] = ACTIONS(8419), + [sym_static_modifier] = ACTIONS(8419), + [sym__dim_keyword] = ACTIONS(8419), + [sym__redim_keyword] = ACTIONS(8419), + [aux_sym_get_accessor_token1] = ACTIONS(8419), + [aux_sym_set_accessor_token1] = ACTIONS(8419), + [aux_sym_const_declaration_token1] = ACTIONS(8419), + [anon_sym_LPAREN] = ACTIONS(8421), + [aux_sym_as_type_clause_token2] = ACTIONS(8419), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8419), + [aux_sym_visibility_token1] = ACTIONS(8419), + [aux_sym_visibility_token2] = ACTIONS(8419), + [aux_sym_elseif_fragment_token1] = ACTIONS(8419), + [aux_sym_else_fragment_token1] = ACTIONS(8419), + [aux_sym_select_statement_token1] = ACTIONS(8419), + [aux_sym__for_header_token1] = ACTIONS(8419), + [aux_sym_do_statement_token1] = ACTIONS(8419), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8419), + [aux_sym_exit_statement_token1] = ACTIONS(8419), + [sym_end_statement] = ACTIONS(8421), + [aux_sym_on_goto_statement_token1] = ACTIONS(8419), + [aux_sym_on_goto_statement_token2] = ACTIONS(8419), + [aux_sym_on_error_statement_token2] = ACTIONS(8419), + [sym__ambiguous_redim_statement] = ACTIONS(8421), + [aux_sym_erase_statement_token1] = ACTIONS(8419), + [aux_sym_open_statement_token1] = ACTIONS(8419), + [aux_sym_file_mode_token2] = ACTIONS(8419), + [aux_sym_file_access_token2] = ACTIONS(8419), + [aux_sym_file_lock_token2] = ACTIONS(8419), + [aux_sym_print_statement_token1] = ACTIONS(8419), + [anon_sym_PLUS] = ACTIONS(8421), + [anon_sym_DASH] = ACTIONS(8419), + [anon_sym_QMARK] = ACTIONS(8421), + [aux_sym_close_statement_token1] = ACTIONS(8419), + [aux_sym_put_statement_token1] = ACTIONS(8419), + [aux_sym_unlock_statement_token1] = ACTIONS(8419), + [aux_sym_seek_statement_token1] = ACTIONS(8419), + [sym_reset_statement] = ACTIONS(8419), + [aux_sym_raise_event_statement_token1] = ACTIONS(8419), + [sym_stop_statement] = ACTIONS(8419), + [sym_beep_statement] = ACTIONS(8419), + [aux_sym_unload_statement_token1] = ACTIONS(8419), + [aux_sym_def_type_statement_token1] = ACTIONS(8419), + [aux_sym_def_type_statement_token2] = ACTIONS(8419), + [aux_sym_def_type_statement_token3] = ACTIONS(8419), + [aux_sym_def_type_statement_token4] = ACTIONS(8419), + [aux_sym_def_type_statement_token5] = ACTIONS(8419), + [aux_sym_def_type_statement_token6] = ACTIONS(8419), + [aux_sym_def_type_statement_token7] = ACTIONS(8419), + [aux_sym_def_type_statement_token8] = ACTIONS(8419), + [aux_sym_def_type_statement_token9] = ACTIONS(8419), + [aux_sym_def_type_statement_token10] = ACTIONS(8419), + [aux_sym_def_type_statement_token11] = ACTIONS(8419), + [aux_sym_def_type_statement_token12] = ACTIONS(8419), + [aux_sym_def_type_statement_token13] = ACTIONS(8419), + [aux_sym_def_type_statement_token14] = ACTIONS(8419), + [aux_sym_call_statement_token1] = ACTIONS(8419), + [sym__ambiguous_call_statement] = ACTIONS(8419), + [aux_sym_addressof_expression_token1] = ACTIONS(8419), + [aux_sym_type_of_expression_token1] = ACTIONS(8419), + [aux_sym_unary_expression_token1] = ACTIONS(8419), + [sym_string_literal] = ACTIONS(8421), + [sym_number_literal] = ACTIONS(8421), + [aux_sym_boolean_literal_token1] = ACTIONS(8419), + [aux_sym_boolean_literal_token2] = ACTIONS(8419), + [sym_nothing_literal] = ACTIONS(8419), + [sym_null_literal] = ACTIONS(8419), + [sym_empty_literal] = ACTIONS(8419), + [sym_date_literal] = ACTIONS(8421), + [anon_sym_POUND] = ACTIONS(8419), + }, + [STATE(5162)] = { + [sym_do_condition] = STATE(6386), + [sym_identifier] = ACTIONS(8423), + [sym_newline] = ACTIONS(8425), + [anon_sym_COLON] = ACTIONS(8425), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8423), + [aux_sym_frm_property_statement_token1] = ACTIONS(8423), + [anon_sym_DOT] = ACTIONS(8423), + [anon_sym_BANG] = ACTIONS(8425), + [aux_sym__attribute_identifier_token1] = ACTIONS(8423), + [aux_sym_option_statement_token3] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8423), + [aux_sym_preprocessor_const_token1] = ACTIONS(8423), + [sym_static_modifier] = ACTIONS(8423), + [sym__dim_keyword] = ACTIONS(8423), + [sym__redim_keyword] = ACTIONS(8423), + [aux_sym_get_accessor_token1] = ACTIONS(8423), + [aux_sym_set_accessor_token1] = ACTIONS(8423), + [aux_sym_const_declaration_token1] = ACTIONS(8423), + [anon_sym_LPAREN] = ACTIONS(8425), + [aux_sym_as_type_clause_token2] = ACTIONS(8423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8423), + [aux_sym_visibility_token1] = ACTIONS(8423), + [aux_sym_visibility_token2] = ACTIONS(8423), + [aux_sym_elseif_fragment_token1] = ACTIONS(8423), + [aux_sym_else_fragment_token1] = ACTIONS(8423), + [aux_sym_select_statement_token1] = ACTIONS(8423), + [aux_sym__for_header_token1] = ACTIONS(8423), + [aux_sym_do_statement_token1] = ACTIONS(8423), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8423), + [aux_sym_exit_statement_token1] = ACTIONS(8423), + [sym_end_statement] = ACTIONS(8425), + [aux_sym_on_goto_statement_token1] = ACTIONS(8423), + [aux_sym_on_goto_statement_token2] = ACTIONS(8423), + [aux_sym_on_error_statement_token2] = ACTIONS(8423), + [sym__ambiguous_redim_statement] = ACTIONS(8425), + [aux_sym_erase_statement_token1] = ACTIONS(8423), + [aux_sym_open_statement_token1] = ACTIONS(8423), + [aux_sym_file_mode_token2] = ACTIONS(8423), + [aux_sym_file_access_token2] = ACTIONS(8423), + [aux_sym_file_lock_token2] = ACTIONS(8423), + [aux_sym_print_statement_token1] = ACTIONS(8423), + [anon_sym_PLUS] = ACTIONS(8425), + [anon_sym_DASH] = ACTIONS(8423), + [anon_sym_QMARK] = ACTIONS(8425), + [aux_sym_close_statement_token1] = ACTIONS(8423), + [aux_sym_put_statement_token1] = ACTIONS(8423), + [aux_sym_unlock_statement_token1] = ACTIONS(8423), + [aux_sym_seek_statement_token1] = ACTIONS(8423), + [sym_reset_statement] = ACTIONS(8423), + [aux_sym_raise_event_statement_token1] = ACTIONS(8423), + [sym_stop_statement] = ACTIONS(8423), + [sym_beep_statement] = ACTIONS(8423), + [aux_sym_unload_statement_token1] = ACTIONS(8423), + [aux_sym_def_type_statement_token1] = ACTIONS(8423), + [aux_sym_def_type_statement_token2] = ACTIONS(8423), + [aux_sym_def_type_statement_token3] = ACTIONS(8423), + [aux_sym_def_type_statement_token4] = ACTIONS(8423), + [aux_sym_def_type_statement_token5] = ACTIONS(8423), + [aux_sym_def_type_statement_token6] = ACTIONS(8423), + [aux_sym_def_type_statement_token7] = ACTIONS(8423), + [aux_sym_def_type_statement_token8] = ACTIONS(8423), + [aux_sym_def_type_statement_token9] = ACTIONS(8423), + [aux_sym_def_type_statement_token10] = ACTIONS(8423), + [aux_sym_def_type_statement_token11] = ACTIONS(8423), + [aux_sym_def_type_statement_token12] = ACTIONS(8423), + [aux_sym_def_type_statement_token13] = ACTIONS(8423), + [aux_sym_def_type_statement_token14] = ACTIONS(8423), + [aux_sym_call_statement_token1] = ACTIONS(8423), + [sym__ambiguous_call_statement] = ACTIONS(8423), + [aux_sym_addressof_expression_token1] = ACTIONS(8423), + [aux_sym_type_of_expression_token1] = ACTIONS(8423), + [aux_sym_unary_expression_token1] = ACTIONS(8423), + [sym_string_literal] = ACTIONS(8425), + [sym_number_literal] = ACTIONS(8425), + [aux_sym_boolean_literal_token1] = ACTIONS(8423), + [aux_sym_boolean_literal_token2] = ACTIONS(8423), + [sym_nothing_literal] = ACTIONS(8423), + [sym_null_literal] = ACTIONS(8423), + [sym_empty_literal] = ACTIONS(8423), + [sym_date_literal] = ACTIONS(8425), + [anon_sym_POUND] = ACTIONS(8423), + }, + [STATE(5163)] = { + [sym_do_condition] = STATE(6394), + [sym_identifier] = ACTIONS(8427), + [sym_newline] = ACTIONS(8429), + [anon_sym_COLON] = ACTIONS(8429), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8427), + [aux_sym_frm_property_statement_token1] = ACTIONS(8427), + [anon_sym_DOT] = ACTIONS(8427), + [anon_sym_BANG] = ACTIONS(8429), + [aux_sym__attribute_identifier_token1] = ACTIONS(8427), + [aux_sym_option_statement_token3] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8427), + [aux_sym_preprocessor_const_token1] = ACTIONS(8427), + [sym_static_modifier] = ACTIONS(8427), + [sym__dim_keyword] = ACTIONS(8427), + [sym__redim_keyword] = ACTIONS(8427), + [aux_sym_get_accessor_token1] = ACTIONS(8427), + [aux_sym_set_accessor_token1] = ACTIONS(8427), + [aux_sym_const_declaration_token1] = ACTIONS(8427), + [anon_sym_LPAREN] = ACTIONS(8429), + [aux_sym_as_type_clause_token2] = ACTIONS(8427), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8427), + [aux_sym_visibility_token1] = ACTIONS(8427), + [aux_sym_visibility_token2] = ACTIONS(8427), + [aux_sym_elseif_fragment_token1] = ACTIONS(8427), + [aux_sym_else_fragment_token1] = ACTIONS(8427), + [aux_sym_select_statement_token1] = ACTIONS(8427), + [aux_sym__for_header_token1] = ACTIONS(8427), + [aux_sym_do_statement_token1] = ACTIONS(8427), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8427), + [aux_sym_exit_statement_token1] = ACTIONS(8427), + [sym_end_statement] = ACTIONS(8429), + [aux_sym_on_goto_statement_token1] = ACTIONS(8427), + [aux_sym_on_goto_statement_token2] = ACTIONS(8427), + [aux_sym_on_error_statement_token2] = ACTIONS(8427), + [sym__ambiguous_redim_statement] = ACTIONS(8429), + [aux_sym_erase_statement_token1] = ACTIONS(8427), + [aux_sym_open_statement_token1] = ACTIONS(8427), + [aux_sym_file_mode_token2] = ACTIONS(8427), + [aux_sym_file_access_token2] = ACTIONS(8427), + [aux_sym_file_lock_token2] = ACTIONS(8427), + [aux_sym_print_statement_token1] = ACTIONS(8427), + [anon_sym_PLUS] = ACTIONS(8429), + [anon_sym_DASH] = ACTIONS(8427), + [anon_sym_QMARK] = ACTIONS(8429), + [aux_sym_close_statement_token1] = ACTIONS(8427), + [aux_sym_put_statement_token1] = ACTIONS(8427), + [aux_sym_unlock_statement_token1] = ACTIONS(8427), + [aux_sym_seek_statement_token1] = ACTIONS(8427), + [sym_reset_statement] = ACTIONS(8427), + [aux_sym_raise_event_statement_token1] = ACTIONS(8427), + [sym_stop_statement] = ACTIONS(8427), + [sym_beep_statement] = ACTIONS(8427), + [aux_sym_unload_statement_token1] = ACTIONS(8427), + [aux_sym_def_type_statement_token1] = ACTIONS(8427), + [aux_sym_def_type_statement_token2] = ACTIONS(8427), + [aux_sym_def_type_statement_token3] = ACTIONS(8427), + [aux_sym_def_type_statement_token4] = ACTIONS(8427), + [aux_sym_def_type_statement_token5] = ACTIONS(8427), + [aux_sym_def_type_statement_token6] = ACTIONS(8427), + [aux_sym_def_type_statement_token7] = ACTIONS(8427), + [aux_sym_def_type_statement_token8] = ACTIONS(8427), + [aux_sym_def_type_statement_token9] = ACTIONS(8427), + [aux_sym_def_type_statement_token10] = ACTIONS(8427), + [aux_sym_def_type_statement_token11] = ACTIONS(8427), + [aux_sym_def_type_statement_token12] = ACTIONS(8427), + [aux_sym_def_type_statement_token13] = ACTIONS(8427), + [aux_sym_def_type_statement_token14] = ACTIONS(8427), + [aux_sym_call_statement_token1] = ACTIONS(8427), + [sym__ambiguous_call_statement] = ACTIONS(8427), + [aux_sym_addressof_expression_token1] = ACTIONS(8427), + [aux_sym_type_of_expression_token1] = ACTIONS(8427), + [aux_sym_unary_expression_token1] = ACTIONS(8427), + [sym_string_literal] = ACTIONS(8429), + [sym_number_literal] = ACTIONS(8429), + [aux_sym_boolean_literal_token1] = ACTIONS(8427), + [aux_sym_boolean_literal_token2] = ACTIONS(8427), + [sym_nothing_literal] = ACTIONS(8427), + [sym_null_literal] = ACTIONS(8427), + [sym_empty_literal] = ACTIONS(8427), + [sym_date_literal] = ACTIONS(8429), + [anon_sym_POUND] = ACTIONS(8427), + }, + [STATE(5164)] = { + [sym_do_condition] = STATE(6395), + [sym_identifier] = ACTIONS(8431), + [sym_newline] = ACTIONS(8433), + [anon_sym_COLON] = ACTIONS(8433), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8431), + [aux_sym_frm_property_statement_token1] = ACTIONS(8431), + [anon_sym_DOT] = ACTIONS(8431), + [anon_sym_BANG] = ACTIONS(8433), + [aux_sym__attribute_identifier_token1] = ACTIONS(8431), + [aux_sym_option_statement_token3] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8431), + [aux_sym_preprocessor_const_token1] = ACTIONS(8431), + [sym_static_modifier] = ACTIONS(8431), + [sym__dim_keyword] = ACTIONS(8431), + [sym__redim_keyword] = ACTIONS(8431), + [aux_sym_get_accessor_token1] = ACTIONS(8431), + [aux_sym_set_accessor_token1] = ACTIONS(8431), + [aux_sym_const_declaration_token1] = ACTIONS(8431), + [anon_sym_LPAREN] = ACTIONS(8433), + [aux_sym_as_type_clause_token2] = ACTIONS(8431), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8431), + [aux_sym_visibility_token1] = ACTIONS(8431), + [aux_sym_visibility_token2] = ACTIONS(8431), + [aux_sym_elseif_fragment_token1] = ACTIONS(8431), + [aux_sym_else_fragment_token1] = ACTIONS(8431), + [aux_sym_select_statement_token1] = ACTIONS(8431), + [aux_sym__for_header_token1] = ACTIONS(8431), + [aux_sym_do_statement_token1] = ACTIONS(8431), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8431), + [aux_sym_exit_statement_token1] = ACTIONS(8431), + [sym_end_statement] = ACTIONS(8433), + [aux_sym_on_goto_statement_token1] = ACTIONS(8431), + [aux_sym_on_goto_statement_token2] = ACTIONS(8431), + [aux_sym_on_error_statement_token2] = ACTIONS(8431), + [sym__ambiguous_redim_statement] = ACTIONS(8433), + [aux_sym_erase_statement_token1] = ACTIONS(8431), + [aux_sym_open_statement_token1] = ACTIONS(8431), + [aux_sym_file_mode_token2] = ACTIONS(8431), + [aux_sym_file_access_token2] = ACTIONS(8431), + [aux_sym_file_lock_token2] = ACTIONS(8431), + [aux_sym_print_statement_token1] = ACTIONS(8431), + [anon_sym_PLUS] = ACTIONS(8433), + [anon_sym_DASH] = ACTIONS(8431), + [anon_sym_QMARK] = ACTIONS(8433), + [aux_sym_close_statement_token1] = ACTIONS(8431), + [aux_sym_put_statement_token1] = ACTIONS(8431), + [aux_sym_unlock_statement_token1] = ACTIONS(8431), + [aux_sym_seek_statement_token1] = ACTIONS(8431), + [sym_reset_statement] = ACTIONS(8431), + [aux_sym_raise_event_statement_token1] = ACTIONS(8431), + [sym_stop_statement] = ACTIONS(8431), + [sym_beep_statement] = ACTIONS(8431), + [aux_sym_unload_statement_token1] = ACTIONS(8431), + [aux_sym_def_type_statement_token1] = ACTIONS(8431), + [aux_sym_def_type_statement_token2] = ACTIONS(8431), + [aux_sym_def_type_statement_token3] = ACTIONS(8431), + [aux_sym_def_type_statement_token4] = ACTIONS(8431), + [aux_sym_def_type_statement_token5] = ACTIONS(8431), + [aux_sym_def_type_statement_token6] = ACTIONS(8431), + [aux_sym_def_type_statement_token7] = ACTIONS(8431), + [aux_sym_def_type_statement_token8] = ACTIONS(8431), + [aux_sym_def_type_statement_token9] = ACTIONS(8431), + [aux_sym_def_type_statement_token10] = ACTIONS(8431), + [aux_sym_def_type_statement_token11] = ACTIONS(8431), + [aux_sym_def_type_statement_token12] = ACTIONS(8431), + [aux_sym_def_type_statement_token13] = ACTIONS(8431), + [aux_sym_def_type_statement_token14] = ACTIONS(8431), + [aux_sym_call_statement_token1] = ACTIONS(8431), + [sym__ambiguous_call_statement] = ACTIONS(8431), + [aux_sym_addressof_expression_token1] = ACTIONS(8431), + [aux_sym_type_of_expression_token1] = ACTIONS(8431), + [aux_sym_unary_expression_token1] = ACTIONS(8431), + [sym_string_literal] = ACTIONS(8433), + [sym_number_literal] = ACTIONS(8433), + [aux_sym_boolean_literal_token1] = ACTIONS(8431), + [aux_sym_boolean_literal_token2] = ACTIONS(8431), + [sym_nothing_literal] = ACTIONS(8431), + [sym_null_literal] = ACTIONS(8431), + [sym_empty_literal] = ACTIONS(8431), + [sym_date_literal] = ACTIONS(8433), + [anon_sym_POUND] = ACTIONS(8431), + }, + [STATE(5165)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5361), + [sym_identifier] = ACTIONS(8435), + [sym_newline] = ACTIONS(8437), + [anon_sym_COLON] = ACTIONS(8437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8435), + [aux_sym_frm_property_statement_token1] = ACTIONS(8435), + [anon_sym_DOT] = ACTIONS(8435), + [anon_sym_BANG] = ACTIONS(8437), + [aux_sym__attribute_identifier_token1] = ACTIONS(8435), + [aux_sym_option_statement_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8435), + [aux_sym_preprocessor_const_token1] = ACTIONS(8435), + [sym_static_modifier] = ACTIONS(8435), + [sym__dim_keyword] = ACTIONS(8435), + [sym__redim_keyword] = ACTIONS(8435), + [aux_sym_get_accessor_token1] = ACTIONS(8435), + [aux_sym_set_accessor_token1] = ACTIONS(8435), + [anon_sym_COMMA] = ACTIONS(5154), + [aux_sym_const_declaration_token1] = ACTIONS(8435), + [anon_sym_LPAREN] = ACTIONS(8437), + [aux_sym_as_type_clause_token2] = ACTIONS(8435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8435), + [aux_sym_visibility_token1] = ACTIONS(8435), + [aux_sym_visibility_token2] = ACTIONS(8435), + [aux_sym_elseif_fragment_token1] = ACTIONS(8435), + [aux_sym_else_fragment_token1] = ACTIONS(8435), + [aux_sym_select_statement_token1] = ACTIONS(8435), + [aux_sym__for_header_token1] = ACTIONS(8435), + [aux_sym_do_statement_token1] = ACTIONS(8435), + [aux_sym_do_condition_token1] = ACTIONS(8435), + [aux_sym_with_statement_token1] = ACTIONS(8435), + [aux_sym_exit_statement_token1] = ACTIONS(8435), + [sym_end_statement] = ACTIONS(8437), + [aux_sym_on_goto_statement_token1] = ACTIONS(8435), + [aux_sym_on_goto_statement_token2] = ACTIONS(8435), + [aux_sym_on_error_statement_token2] = ACTIONS(8435), + [sym__ambiguous_redim_statement] = ACTIONS(8437), + [aux_sym_erase_statement_token1] = ACTIONS(8435), + [aux_sym_open_statement_token1] = ACTIONS(8435), + [aux_sym_file_mode_token2] = ACTIONS(8435), + [aux_sym_file_access_token2] = ACTIONS(8435), + [aux_sym_file_lock_token2] = ACTIONS(8435), + [aux_sym_print_statement_token1] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(8437), + [anon_sym_DASH] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8437), + [aux_sym_close_statement_token1] = ACTIONS(8435), + [aux_sym_put_statement_token1] = ACTIONS(8435), + [aux_sym_unlock_statement_token1] = ACTIONS(8435), + [aux_sym_seek_statement_token1] = ACTIONS(8435), + [sym_reset_statement] = ACTIONS(8435), + [aux_sym_raise_event_statement_token1] = ACTIONS(8435), + [sym_stop_statement] = ACTIONS(8435), + [sym_beep_statement] = ACTIONS(8435), + [aux_sym_unload_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token2] = ACTIONS(8435), + [aux_sym_def_type_statement_token3] = ACTIONS(8435), + [aux_sym_def_type_statement_token4] = ACTIONS(8435), + [aux_sym_def_type_statement_token5] = ACTIONS(8435), + [aux_sym_def_type_statement_token6] = ACTIONS(8435), + [aux_sym_def_type_statement_token7] = ACTIONS(8435), + [aux_sym_def_type_statement_token8] = ACTIONS(8435), + [aux_sym_def_type_statement_token9] = ACTIONS(8435), + [aux_sym_def_type_statement_token10] = ACTIONS(8435), + [aux_sym_def_type_statement_token11] = ACTIONS(8435), + [aux_sym_def_type_statement_token12] = ACTIONS(8435), + [aux_sym_def_type_statement_token13] = ACTIONS(8435), + [aux_sym_def_type_statement_token14] = ACTIONS(8435), + [aux_sym_call_statement_token1] = ACTIONS(8435), + [sym__ambiguous_call_statement] = ACTIONS(8435), + [aux_sym_addressof_expression_token1] = ACTIONS(8435), + [aux_sym_type_of_expression_token1] = ACTIONS(8435), + [aux_sym_unary_expression_token1] = ACTIONS(8435), + [sym_string_literal] = ACTIONS(8437), + [sym_number_literal] = ACTIONS(8437), + [aux_sym_boolean_literal_token1] = ACTIONS(8435), + [aux_sym_boolean_literal_token2] = ACTIONS(8435), + [sym_nothing_literal] = ACTIONS(8435), + [sym_null_literal] = ACTIONS(8435), + [sym_empty_literal] = ACTIONS(8435), + [sym_date_literal] = ACTIONS(8437), + [anon_sym_POUND] = ACTIONS(8435), + }, + [STATE(5166)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5190), + [sym_identifier] = ACTIONS(8435), + [sym_newline] = ACTIONS(8437), + [anon_sym_COLON] = ACTIONS(8437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8435), + [aux_sym_frm_property_statement_token1] = ACTIONS(8435), + [anon_sym_DOT] = ACTIONS(8435), + [anon_sym_BANG] = ACTIONS(8437), + [aux_sym__attribute_identifier_token1] = ACTIONS(8435), + [aux_sym_option_statement_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8435), + [aux_sym_preprocessor_const_token1] = ACTIONS(8435), + [sym_static_modifier] = ACTIONS(8435), + [sym__dim_keyword] = ACTIONS(8435), + [sym__redim_keyword] = ACTIONS(8435), + [aux_sym_get_accessor_token1] = ACTIONS(8435), + [aux_sym_set_accessor_token1] = ACTIONS(8435), + [anon_sym_COMMA] = ACTIONS(5154), + [aux_sym_const_declaration_token1] = ACTIONS(8435), + [anon_sym_LPAREN] = ACTIONS(8437), + [aux_sym_as_type_clause_token2] = ACTIONS(8435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8435), + [aux_sym_visibility_token1] = ACTIONS(8435), + [aux_sym_visibility_token2] = ACTIONS(8435), + [aux_sym_elseif_fragment_token1] = ACTIONS(8435), + [aux_sym_else_fragment_token1] = ACTIONS(8435), + [aux_sym_select_statement_token1] = ACTIONS(8435), + [aux_sym__for_header_token1] = ACTIONS(8435), + [aux_sym_do_statement_token1] = ACTIONS(8435), + [aux_sym_do_condition_token1] = ACTIONS(8435), + [aux_sym_with_statement_token1] = ACTIONS(8435), + [aux_sym_exit_statement_token1] = ACTIONS(8435), + [sym_end_statement] = ACTIONS(8437), + [aux_sym_on_goto_statement_token1] = ACTIONS(8435), + [aux_sym_on_goto_statement_token2] = ACTIONS(8435), + [aux_sym_on_error_statement_token2] = ACTIONS(8435), + [sym__ambiguous_redim_statement] = ACTIONS(8437), + [aux_sym_erase_statement_token1] = ACTIONS(8435), + [aux_sym_open_statement_token1] = ACTIONS(8435), + [aux_sym_file_mode_token2] = ACTIONS(8435), + [aux_sym_file_access_token2] = ACTIONS(8435), + [aux_sym_file_lock_token2] = ACTIONS(8435), + [aux_sym_print_statement_token1] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(8437), + [anon_sym_DASH] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8437), + [aux_sym_close_statement_token1] = ACTIONS(8435), + [aux_sym_put_statement_token1] = ACTIONS(8435), + [aux_sym_unlock_statement_token1] = ACTIONS(8435), + [aux_sym_seek_statement_token1] = ACTIONS(8435), + [sym_reset_statement] = ACTIONS(8435), + [aux_sym_raise_event_statement_token1] = ACTIONS(8435), + [sym_stop_statement] = ACTIONS(8435), + [sym_beep_statement] = ACTIONS(8435), + [aux_sym_unload_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token2] = ACTIONS(8435), + [aux_sym_def_type_statement_token3] = ACTIONS(8435), + [aux_sym_def_type_statement_token4] = ACTIONS(8435), + [aux_sym_def_type_statement_token5] = ACTIONS(8435), + [aux_sym_def_type_statement_token6] = ACTIONS(8435), + [aux_sym_def_type_statement_token7] = ACTIONS(8435), + [aux_sym_def_type_statement_token8] = ACTIONS(8435), + [aux_sym_def_type_statement_token9] = ACTIONS(8435), + [aux_sym_def_type_statement_token10] = ACTIONS(8435), + [aux_sym_def_type_statement_token11] = ACTIONS(8435), + [aux_sym_def_type_statement_token12] = ACTIONS(8435), + [aux_sym_def_type_statement_token13] = ACTIONS(8435), + [aux_sym_def_type_statement_token14] = ACTIONS(8435), + [aux_sym_call_statement_token1] = ACTIONS(8435), + [sym__ambiguous_call_statement] = ACTIONS(8435), + [aux_sym_addressof_expression_token1] = ACTIONS(8435), + [aux_sym_type_of_expression_token1] = ACTIONS(8435), + [aux_sym_unary_expression_token1] = ACTIONS(8435), + [sym_string_literal] = ACTIONS(8437), + [sym_number_literal] = ACTIONS(8437), + [aux_sym_boolean_literal_token1] = ACTIONS(8435), + [aux_sym_boolean_literal_token2] = ACTIONS(8435), + [sym_nothing_literal] = ACTIONS(8435), + [sym_null_literal] = ACTIONS(8435), + [sym_empty_literal] = ACTIONS(8435), + [sym_date_literal] = ACTIONS(8437), + [anon_sym_POUND] = ACTIONS(8435), + }, + [STATE(5167)] = { + [sym_do_condition] = STATE(6961), + [sym_identifier] = ACTIONS(8595), + [sym_newline] = ACTIONS(8597), + [anon_sym_COLON] = ACTIONS(8597), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8595), + [aux_sym_frm_property_statement_token1] = ACTIONS(8595), + [anon_sym_DOT] = ACTIONS(8595), + [anon_sym_BANG] = ACTIONS(8597), + [aux_sym__attribute_identifier_token1] = ACTIONS(8595), + [aux_sym_option_statement_token3] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8595), + [aux_sym_preprocessor_const_token1] = ACTIONS(8595), + [sym_static_modifier] = ACTIONS(8595), + [sym__dim_keyword] = ACTIONS(8595), + [sym__redim_keyword] = ACTIONS(8595), + [aux_sym_get_accessor_token1] = ACTIONS(8595), + [aux_sym_set_accessor_token1] = ACTIONS(8595), + [aux_sym_const_declaration_token1] = ACTIONS(8595), + [anon_sym_LPAREN] = ACTIONS(8597), + [aux_sym_as_type_clause_token2] = ACTIONS(8595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8595), + [aux_sym_visibility_token1] = ACTIONS(8595), + [aux_sym_visibility_token2] = ACTIONS(8595), + [aux_sym_elseif_fragment_token1] = ACTIONS(8595), + [aux_sym_else_fragment_token1] = ACTIONS(8595), + [aux_sym_select_statement_token1] = ACTIONS(8595), + [aux_sym__for_header_token1] = ACTIONS(8595), + [aux_sym_do_statement_token1] = ACTIONS(8595), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8595), + [aux_sym_with_statement_token1] = ACTIONS(8595), + [aux_sym_exit_statement_token1] = ACTIONS(8595), + [sym_end_statement] = ACTIONS(8597), + [aux_sym_on_goto_statement_token1] = ACTIONS(8595), + [aux_sym_on_goto_statement_token2] = ACTIONS(8595), + [aux_sym_on_error_statement_token2] = ACTIONS(8595), + [sym__ambiguous_redim_statement] = ACTIONS(8597), + [aux_sym_erase_statement_token1] = ACTIONS(8595), + [aux_sym_open_statement_token1] = ACTIONS(8595), + [aux_sym_file_mode_token2] = ACTIONS(8595), + [aux_sym_file_access_token2] = ACTIONS(8595), + [aux_sym_file_lock_token2] = ACTIONS(8595), + [aux_sym_print_statement_token1] = ACTIONS(8595), + [anon_sym_PLUS] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(8595), + [anon_sym_QMARK] = ACTIONS(8597), + [aux_sym_close_statement_token1] = ACTIONS(8595), + [aux_sym_put_statement_token1] = ACTIONS(8595), + [aux_sym_unlock_statement_token1] = ACTIONS(8595), + [aux_sym_seek_statement_token1] = ACTIONS(8595), + [sym_reset_statement] = ACTIONS(8595), + [aux_sym_raise_event_statement_token1] = ACTIONS(8595), + [sym_stop_statement] = ACTIONS(8595), + [sym_beep_statement] = ACTIONS(8595), + [aux_sym_unload_statement_token1] = ACTIONS(8595), + [aux_sym_def_type_statement_token1] = ACTIONS(8595), + [aux_sym_def_type_statement_token2] = ACTIONS(8595), + [aux_sym_def_type_statement_token3] = ACTIONS(8595), + [aux_sym_def_type_statement_token4] = ACTIONS(8595), + [aux_sym_def_type_statement_token5] = ACTIONS(8595), + [aux_sym_def_type_statement_token6] = ACTIONS(8595), + [aux_sym_def_type_statement_token7] = ACTIONS(8595), + [aux_sym_def_type_statement_token8] = ACTIONS(8595), + [aux_sym_def_type_statement_token9] = ACTIONS(8595), + [aux_sym_def_type_statement_token10] = ACTIONS(8595), + [aux_sym_def_type_statement_token11] = ACTIONS(8595), + [aux_sym_def_type_statement_token12] = ACTIONS(8595), + [aux_sym_def_type_statement_token13] = ACTIONS(8595), + [aux_sym_def_type_statement_token14] = ACTIONS(8595), + [aux_sym_call_statement_token1] = ACTIONS(8595), + [sym__ambiguous_call_statement] = ACTIONS(8595), + [aux_sym_addressof_expression_token1] = ACTIONS(8595), + [aux_sym_type_of_expression_token1] = ACTIONS(8595), + [aux_sym_unary_expression_token1] = ACTIONS(8595), + [sym_string_literal] = ACTIONS(8597), + [sym_number_literal] = ACTIONS(8597), + [aux_sym_boolean_literal_token1] = ACTIONS(8595), + [aux_sym_boolean_literal_token2] = ACTIONS(8595), + [sym_nothing_literal] = ACTIONS(8595), + [sym_null_literal] = ACTIONS(8595), + [sym_empty_literal] = ACTIONS(8595), + [sym_date_literal] = ACTIONS(8597), + [anon_sym_POUND] = ACTIONS(8595), + }, + [STATE(5168)] = { + [sym_do_condition] = STATE(6963), + [sym_identifier] = ACTIONS(8599), + [sym_newline] = ACTIONS(8601), + [anon_sym_COLON] = ACTIONS(8601), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8599), + [aux_sym_frm_property_statement_token1] = ACTIONS(8599), + [anon_sym_DOT] = ACTIONS(8599), + [anon_sym_BANG] = ACTIONS(8601), + [aux_sym__attribute_identifier_token1] = ACTIONS(8599), + [aux_sym_option_statement_token3] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8599), + [aux_sym_preprocessor_const_token1] = ACTIONS(8599), + [sym_static_modifier] = ACTIONS(8599), + [sym__dim_keyword] = ACTIONS(8599), + [sym__redim_keyword] = ACTIONS(8599), + [aux_sym_get_accessor_token1] = ACTIONS(8599), + [aux_sym_set_accessor_token1] = ACTIONS(8599), + [aux_sym_const_declaration_token1] = ACTIONS(8599), + [anon_sym_LPAREN] = ACTIONS(8601), + [aux_sym_as_type_clause_token2] = ACTIONS(8599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8599), + [aux_sym_visibility_token1] = ACTIONS(8599), + [aux_sym_visibility_token2] = ACTIONS(8599), + [aux_sym_elseif_fragment_token1] = ACTIONS(8599), + [aux_sym_else_fragment_token1] = ACTIONS(8599), + [aux_sym_select_statement_token1] = ACTIONS(8599), + [aux_sym__for_header_token1] = ACTIONS(8599), + [aux_sym_do_statement_token1] = ACTIONS(8599), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8599), + [aux_sym_with_statement_token1] = ACTIONS(8599), + [aux_sym_exit_statement_token1] = ACTIONS(8599), + [sym_end_statement] = ACTIONS(8601), + [aux_sym_on_goto_statement_token1] = ACTIONS(8599), + [aux_sym_on_goto_statement_token2] = ACTIONS(8599), + [aux_sym_on_error_statement_token2] = ACTIONS(8599), + [sym__ambiguous_redim_statement] = ACTIONS(8601), + [aux_sym_erase_statement_token1] = ACTIONS(8599), + [aux_sym_open_statement_token1] = ACTIONS(8599), + [aux_sym_file_mode_token2] = ACTIONS(8599), + [aux_sym_file_access_token2] = ACTIONS(8599), + [aux_sym_file_lock_token2] = ACTIONS(8599), + [aux_sym_print_statement_token1] = ACTIONS(8599), + [anon_sym_PLUS] = ACTIONS(8601), + [anon_sym_DASH] = ACTIONS(8599), + [anon_sym_QMARK] = ACTIONS(8601), + [aux_sym_close_statement_token1] = ACTIONS(8599), + [aux_sym_put_statement_token1] = ACTIONS(8599), + [aux_sym_unlock_statement_token1] = ACTIONS(8599), + [aux_sym_seek_statement_token1] = ACTIONS(8599), + [sym_reset_statement] = ACTIONS(8599), + [aux_sym_raise_event_statement_token1] = ACTIONS(8599), + [sym_stop_statement] = ACTIONS(8599), + [sym_beep_statement] = ACTIONS(8599), + [aux_sym_unload_statement_token1] = ACTIONS(8599), + [aux_sym_def_type_statement_token1] = ACTIONS(8599), + [aux_sym_def_type_statement_token2] = ACTIONS(8599), + [aux_sym_def_type_statement_token3] = ACTIONS(8599), + [aux_sym_def_type_statement_token4] = ACTIONS(8599), + [aux_sym_def_type_statement_token5] = ACTIONS(8599), + [aux_sym_def_type_statement_token6] = ACTIONS(8599), + [aux_sym_def_type_statement_token7] = ACTIONS(8599), + [aux_sym_def_type_statement_token8] = ACTIONS(8599), + [aux_sym_def_type_statement_token9] = ACTIONS(8599), + [aux_sym_def_type_statement_token10] = ACTIONS(8599), + [aux_sym_def_type_statement_token11] = ACTIONS(8599), + [aux_sym_def_type_statement_token12] = ACTIONS(8599), + [aux_sym_def_type_statement_token13] = ACTIONS(8599), + [aux_sym_def_type_statement_token14] = ACTIONS(8599), + [aux_sym_call_statement_token1] = ACTIONS(8599), + [sym__ambiguous_call_statement] = ACTIONS(8599), + [aux_sym_addressof_expression_token1] = ACTIONS(8599), + [aux_sym_type_of_expression_token1] = ACTIONS(8599), + [aux_sym_unary_expression_token1] = ACTIONS(8599), + [sym_string_literal] = ACTIONS(8601), + [sym_number_literal] = ACTIONS(8601), + [aux_sym_boolean_literal_token1] = ACTIONS(8599), + [aux_sym_boolean_literal_token2] = ACTIONS(8599), + [sym_nothing_literal] = ACTIONS(8599), + [sym_null_literal] = ACTIONS(8599), + [sym_empty_literal] = ACTIONS(8599), + [sym_date_literal] = ACTIONS(8601), + [anon_sym_POUND] = ACTIONS(8599), + }, + [STATE(5169)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5320), + [sym_identifier] = ACTIONS(4172), + [sym_newline] = ACTIONS(4170), + [anon_sym_COLON] = ACTIONS(4170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4172), + [aux_sym_frm_property_statement_token1] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [aux_sym__attribute_identifier_token1] = ACTIONS(4172), + [aux_sym_option_statement_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4172), + [aux_sym_preprocessor_const_token1] = ACTIONS(4172), + [sym_static_modifier] = ACTIONS(4172), + [sym__dim_keyword] = ACTIONS(4172), + [sym__redim_keyword] = ACTIONS(4172), + [aux_sym_get_accessor_token1] = ACTIONS(4172), + [aux_sym_set_accessor_token1] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(5162), + [aux_sym_const_declaration_token1] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4170), + [aux_sym_as_type_clause_token2] = ACTIONS(4172), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4172), + [aux_sym_visibility_token1] = ACTIONS(4172), + [aux_sym_visibility_token2] = ACTIONS(4172), + [aux_sym_elseif_fragment_token1] = ACTIONS(4172), + [aux_sym_else_fragment_token1] = ACTIONS(4172), + [aux_sym_select_statement_token1] = ACTIONS(4172), + [aux_sym__for_header_token1] = ACTIONS(4172), + [aux_sym_do_statement_token1] = ACTIONS(4172), + [aux_sym_do_condition_token1] = ACTIONS(4172), + [aux_sym_while_statement_token1] = ACTIONS(4172), + [aux_sym_with_statement_token1] = ACTIONS(4172), + [aux_sym_exit_statement_token1] = ACTIONS(4172), + [sym_end_statement] = ACTIONS(4170), + [aux_sym_on_goto_statement_token1] = ACTIONS(4172), + [aux_sym_on_goto_statement_token2] = ACTIONS(4172), + [aux_sym_on_error_statement_token2] = ACTIONS(4172), + [sym__ambiguous_redim_statement] = ACTIONS(4170), + [aux_sym_erase_statement_token1] = ACTIONS(4172), + [aux_sym_open_statement_token1] = ACTIONS(4172), + [aux_sym_file_mode_token2] = ACTIONS(4172), + [aux_sym_file_access_token2] = ACTIONS(4172), + [aux_sym_file_lock_token2] = ACTIONS(4172), + [aux_sym_print_statement_token1] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4172), + [anon_sym_QMARK] = ACTIONS(4170), + [aux_sym_close_statement_token1] = ACTIONS(4172), + [aux_sym_put_statement_token1] = ACTIONS(4172), + [aux_sym_unlock_statement_token1] = ACTIONS(4172), + [aux_sym_seek_statement_token1] = ACTIONS(4172), + [sym_reset_statement] = ACTIONS(4172), + [aux_sym_raise_event_statement_token1] = ACTIONS(4172), + [sym_stop_statement] = ACTIONS(4172), + [sym_beep_statement] = ACTIONS(4172), + [aux_sym_unload_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token2] = ACTIONS(4172), + [aux_sym_def_type_statement_token3] = ACTIONS(4172), + [aux_sym_def_type_statement_token4] = ACTIONS(4172), + [aux_sym_def_type_statement_token5] = ACTIONS(4172), + [aux_sym_def_type_statement_token6] = ACTIONS(4172), + [aux_sym_def_type_statement_token7] = ACTIONS(4172), + [aux_sym_def_type_statement_token8] = ACTIONS(4172), + [aux_sym_def_type_statement_token9] = ACTIONS(4172), + [aux_sym_def_type_statement_token10] = ACTIONS(4172), + [aux_sym_def_type_statement_token11] = ACTIONS(4172), + [aux_sym_def_type_statement_token12] = ACTIONS(4172), + [aux_sym_def_type_statement_token13] = ACTIONS(4172), + [aux_sym_def_type_statement_token14] = ACTIONS(4172), + [aux_sym_call_statement_token1] = ACTIONS(4172), + [sym__ambiguous_call_statement] = ACTIONS(4172), + [aux_sym_addressof_expression_token1] = ACTIONS(4172), + [aux_sym_type_of_expression_token1] = ACTIONS(4172), + [aux_sym_unary_expression_token1] = ACTIONS(4172), + [sym_string_literal] = ACTIONS(4170), + [sym_number_literal] = ACTIONS(4170), + [aux_sym_boolean_literal_token1] = ACTIONS(4172), + [aux_sym_boolean_literal_token2] = ACTIONS(4172), + [sym_nothing_literal] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4172), + [sym_empty_literal] = ACTIONS(4172), + [sym_date_literal] = ACTIONS(4170), + [anon_sym_POUND] = ACTIONS(4172), + }, + [STATE(5170)] = { + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(5170), + [sym_identifier] = ACTIONS(8109), + [sym_newline] = ACTIONS(8111), + [anon_sym_COLON] = ACTIONS(8111), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8109), + [aux_sym_frm_property_statement_token1] = ACTIONS(8109), + [anon_sym_DOT] = ACTIONS(8109), + [anon_sym_BANG] = ACTIONS(8111), + [aux_sym__attribute_identifier_token1] = ACTIONS(8109), + [aux_sym_option_statement_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8109), + [aux_sym_preprocessor_const_token1] = ACTIONS(8109), + [sym_static_modifier] = ACTIONS(8109), + [sym__dim_keyword] = ACTIONS(8109), + [sym__redim_keyword] = ACTIONS(8109), + [aux_sym_get_accessor_token1] = ACTIONS(8109), + [aux_sym_set_accessor_token1] = ACTIONS(8109), + [aux_sym_const_declaration_token1] = ACTIONS(8109), + [anon_sym_LPAREN] = ACTIONS(8111), + [aux_sym_as_type_clause_token2] = ACTIONS(8109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8109), + [aux_sym_visibility_token1] = ACTIONS(8109), + [aux_sym_visibility_token2] = ACTIONS(8109), + [aux_sym_elseif_fragment_token1] = ACTIONS(8109), + [aux_sym_else_fragment_token1] = ACTIONS(8109), + [aux_sym_select_statement_token1] = ACTIONS(8109), + [aux_sym__for_header_token1] = ACTIONS(8109), + [aux_sym_do_statement_token1] = ACTIONS(8109), + [aux_sym_do_condition_token1] = ACTIONS(8109), + [aux_sym_while_statement_token1] = ACTIONS(8109), + [aux_sym_with_statement_token1] = ACTIONS(8109), + [aux_sym_exit_statement_token1] = ACTIONS(8109), + [sym_end_statement] = ACTIONS(8111), + [aux_sym_on_goto_statement_token1] = ACTIONS(8109), + [aux_sym_on_goto_statement_token2] = ACTIONS(8109), + [aux_sym_on_error_statement_token2] = ACTIONS(8109), + [sym__ambiguous_redim_statement] = ACTIONS(8111), + [aux_sym_erase_statement_token1] = ACTIONS(8109), + [aux_sym_open_statement_token1] = ACTIONS(8109), + [aux_sym_file_mode_token2] = ACTIONS(8109), + [aux_sym_file_access_token2] = ACTIONS(8109), + [aux_sym_file_lock_token2] = ACTIONS(8109), + [aux_sym_print_statement_token1] = ACTIONS(8109), + [anon_sym_PLUS] = ACTIONS(8111), + [anon_sym_DASH] = ACTIONS(8109), + [anon_sym_SEMI] = ACTIONS(10476), + [anon_sym_QMARK] = ACTIONS(8111), + [aux_sym_close_statement_token1] = ACTIONS(8109), + [aux_sym_put_statement_token1] = ACTIONS(8109), + [aux_sym_unlock_statement_token1] = ACTIONS(8109), + [aux_sym_seek_statement_token1] = ACTIONS(8109), + [sym_reset_statement] = ACTIONS(8109), + [aux_sym_raise_event_statement_token1] = ACTIONS(8109), + [sym_stop_statement] = ACTIONS(8109), + [sym_beep_statement] = ACTIONS(8109), + [aux_sym_unload_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token2] = ACTIONS(8109), + [aux_sym_def_type_statement_token3] = ACTIONS(8109), + [aux_sym_def_type_statement_token4] = ACTIONS(8109), + [aux_sym_def_type_statement_token5] = ACTIONS(8109), + [aux_sym_def_type_statement_token6] = ACTIONS(8109), + [aux_sym_def_type_statement_token7] = ACTIONS(8109), + [aux_sym_def_type_statement_token8] = ACTIONS(8109), + [aux_sym_def_type_statement_token9] = ACTIONS(8109), + [aux_sym_def_type_statement_token10] = ACTIONS(8109), + [aux_sym_def_type_statement_token11] = ACTIONS(8109), + [aux_sym_def_type_statement_token12] = ACTIONS(8109), + [aux_sym_def_type_statement_token13] = ACTIONS(8109), + [aux_sym_def_type_statement_token14] = ACTIONS(8109), + [aux_sym_call_statement_token1] = ACTIONS(8109), + [sym__ambiguous_call_statement] = ACTIONS(8109), + [aux_sym_addressof_expression_token1] = ACTIONS(8109), + [aux_sym_type_of_expression_token1] = ACTIONS(8109), + [aux_sym_unary_expression_token1] = ACTIONS(8109), + [sym_string_literal] = ACTIONS(8111), + [sym_number_literal] = ACTIONS(8111), + [aux_sym_boolean_literal_token1] = ACTIONS(8109), + [aux_sym_boolean_literal_token2] = ACTIONS(8109), + [sym_nothing_literal] = ACTIONS(8109), + [sym_null_literal] = ACTIONS(8109), + [sym_empty_literal] = ACTIONS(8109), + [sym_date_literal] = ACTIONS(8111), + [anon_sym_POUND] = ACTIONS(8109), + }, + [STATE(5171)] = { + [sym_identifier] = ACTIONS(8620), + [sym_newline] = ACTIONS(8622), + [anon_sym_COLON] = ACTIONS(8622), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8620), + [aux_sym_frm_property_statement_token1] = ACTIONS(8620), + [anon_sym_EQ] = ACTIONS(8622), + [anon_sym_DOT] = ACTIONS(8620), + [anon_sym_BANG] = ACTIONS(8622), + [aux_sym__attribute_identifier_token1] = ACTIONS(8620), + [aux_sym_option_statement_token3] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8620), + [aux_sym_preprocessor_const_token1] = ACTIONS(8620), + [sym_static_modifier] = ACTIONS(8620), + [sym__dim_keyword] = ACTIONS(8620), + [sym__redim_keyword] = ACTIONS(8620), + [aux_sym_get_accessor_token1] = ACTIONS(8620), + [aux_sym_set_accessor_token1] = ACTIONS(8620), + [anon_sym_COMMA] = ACTIONS(8622), + [aux_sym_const_declaration_token1] = ACTIONS(8620), + [anon_sym_LPAREN] = ACTIONS(8622), + [aux_sym_as_type_clause_token2] = ACTIONS(8620), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8620), + [aux_sym_visibility_token1] = ACTIONS(8620), + [aux_sym_visibility_token2] = ACTIONS(8620), + [aux_sym_elseif_fragment_token1] = ACTIONS(8620), + [aux_sym_else_fragment_token1] = ACTIONS(8620), + [aux_sym_select_statement_token1] = ACTIONS(8620), + [aux_sym__for_header_token1] = ACTIONS(8620), + [aux_sym_do_statement_token1] = ACTIONS(8620), + [aux_sym_do_statement_token2] = ACTIONS(8620), + [aux_sym_do_condition_token1] = ACTIONS(8620), + [aux_sym_with_statement_token1] = ACTIONS(8620), + [aux_sym_exit_statement_token1] = ACTIONS(8620), + [sym_end_statement] = ACTIONS(8622), + [aux_sym_on_goto_statement_token1] = ACTIONS(8620), + [aux_sym_on_goto_statement_token2] = ACTIONS(8620), + [aux_sym_on_error_statement_token2] = ACTIONS(8620), + [sym__ambiguous_redim_statement] = ACTIONS(8622), + [aux_sym_erase_statement_token1] = ACTIONS(8620), + [aux_sym_open_statement_token1] = ACTIONS(8620), + [aux_sym_file_mode_token2] = ACTIONS(8620), + [aux_sym_file_access_token2] = ACTIONS(8620), + [aux_sym_file_lock_token2] = ACTIONS(8620), + [aux_sym_print_statement_token1] = ACTIONS(8620), + [anon_sym_PLUS] = ACTIONS(8622), + [anon_sym_DASH] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(8622), + [aux_sym_close_statement_token1] = ACTIONS(8620), + [aux_sym_put_statement_token1] = ACTIONS(8620), + [aux_sym_unlock_statement_token1] = ACTIONS(8620), + [aux_sym_seek_statement_token1] = ACTIONS(8620), + [sym_reset_statement] = ACTIONS(8620), + [aux_sym_raise_event_statement_token1] = ACTIONS(8620), + [sym_stop_statement] = ACTIONS(8620), + [sym_beep_statement] = ACTIONS(8620), + [aux_sym_unload_statement_token1] = ACTIONS(8620), + [aux_sym_def_type_statement_token1] = ACTIONS(8620), + [aux_sym_def_type_statement_token2] = ACTIONS(8620), + [aux_sym_def_type_statement_token3] = ACTIONS(8620), + [aux_sym_def_type_statement_token4] = ACTIONS(8620), + [aux_sym_def_type_statement_token5] = ACTIONS(8620), + [aux_sym_def_type_statement_token6] = ACTIONS(8620), + [aux_sym_def_type_statement_token7] = ACTIONS(8620), + [aux_sym_def_type_statement_token8] = ACTIONS(8620), + [aux_sym_def_type_statement_token9] = ACTIONS(8620), + [aux_sym_def_type_statement_token10] = ACTIONS(8620), + [aux_sym_def_type_statement_token11] = ACTIONS(8620), + [aux_sym_def_type_statement_token12] = ACTIONS(8620), + [aux_sym_def_type_statement_token13] = ACTIONS(8620), + [aux_sym_def_type_statement_token14] = ACTIONS(8620), + [aux_sym_call_statement_token1] = ACTIONS(8620), + [sym__ambiguous_call_statement] = ACTIONS(8620), + [aux_sym_addressof_expression_token1] = ACTIONS(8620), + [aux_sym_type_of_expression_token1] = ACTIONS(8620), + [aux_sym_unary_expression_token1] = ACTIONS(8620), + [sym_string_literal] = ACTIONS(8622), + [sym_number_literal] = ACTIONS(8622), + [aux_sym_boolean_literal_token1] = ACTIONS(8620), + [aux_sym_boolean_literal_token2] = ACTIONS(8620), + [sym_nothing_literal] = ACTIONS(8620), + [sym_null_literal] = ACTIONS(8620), + [sym_empty_literal] = ACTIONS(8620), + [sym_date_literal] = ACTIONS(8622), + [anon_sym_POUND] = ACTIONS(8620), + }, + [STATE(5172)] = { + [sym_do_condition] = STATE(6998), + [sym_identifier] = ACTIONS(8188), + [sym_newline] = ACTIONS(8190), + [anon_sym_COLON] = ACTIONS(8190), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8188), + [aux_sym_frm_property_statement_token1] = ACTIONS(8188), + [anon_sym_DOT] = ACTIONS(8188), + [anon_sym_BANG] = ACTIONS(8190), + [aux_sym__attribute_identifier_token1] = ACTIONS(8188), + [aux_sym_option_statement_token3] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8188), + [aux_sym_preprocessor_const_token1] = ACTIONS(8188), + [sym_static_modifier] = ACTIONS(8188), + [sym__dim_keyword] = ACTIONS(8188), + [sym__redim_keyword] = ACTIONS(8188), + [aux_sym_get_accessor_token1] = ACTIONS(8188), + [aux_sym_set_accessor_token1] = ACTIONS(8188), + [aux_sym_const_declaration_token1] = ACTIONS(8188), + [anon_sym_LPAREN] = ACTIONS(8190), + [aux_sym_as_type_clause_token2] = ACTIONS(8188), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8188), + [aux_sym_visibility_token1] = ACTIONS(8188), + [aux_sym_visibility_token2] = ACTIONS(8188), + [aux_sym_elseif_fragment_token1] = ACTIONS(8188), + [aux_sym_else_fragment_token1] = ACTIONS(8188), + [aux_sym_select_statement_token1] = ACTIONS(8188), + [aux_sym__for_header_token1] = ACTIONS(8188), + [aux_sym_do_statement_token1] = ACTIONS(8188), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8188), + [aux_sym_with_statement_token1] = ACTIONS(8188), + [aux_sym_exit_statement_token1] = ACTIONS(8188), + [sym_end_statement] = ACTIONS(8190), + [aux_sym_on_goto_statement_token1] = ACTIONS(8188), + [aux_sym_on_goto_statement_token2] = ACTIONS(8188), + [aux_sym_on_error_statement_token2] = ACTIONS(8188), + [sym__ambiguous_redim_statement] = ACTIONS(8190), + [aux_sym_erase_statement_token1] = ACTIONS(8188), + [aux_sym_open_statement_token1] = ACTIONS(8188), + [aux_sym_file_mode_token2] = ACTIONS(8188), + [aux_sym_file_access_token2] = ACTIONS(8188), + [aux_sym_file_lock_token2] = ACTIONS(8188), + [aux_sym_print_statement_token1] = ACTIONS(8188), + [anon_sym_PLUS] = ACTIONS(8190), + [anon_sym_DASH] = ACTIONS(8188), + [anon_sym_QMARK] = ACTIONS(8190), + [aux_sym_close_statement_token1] = ACTIONS(8188), + [aux_sym_put_statement_token1] = ACTIONS(8188), + [aux_sym_unlock_statement_token1] = ACTIONS(8188), + [aux_sym_seek_statement_token1] = ACTIONS(8188), + [sym_reset_statement] = ACTIONS(8188), + [aux_sym_raise_event_statement_token1] = ACTIONS(8188), + [sym_stop_statement] = ACTIONS(8188), + [sym_beep_statement] = ACTIONS(8188), + [aux_sym_unload_statement_token1] = ACTIONS(8188), + [aux_sym_def_type_statement_token1] = ACTIONS(8188), + [aux_sym_def_type_statement_token2] = ACTIONS(8188), + [aux_sym_def_type_statement_token3] = ACTIONS(8188), + [aux_sym_def_type_statement_token4] = ACTIONS(8188), + [aux_sym_def_type_statement_token5] = ACTIONS(8188), + [aux_sym_def_type_statement_token6] = ACTIONS(8188), + [aux_sym_def_type_statement_token7] = ACTIONS(8188), + [aux_sym_def_type_statement_token8] = ACTIONS(8188), + [aux_sym_def_type_statement_token9] = ACTIONS(8188), + [aux_sym_def_type_statement_token10] = ACTIONS(8188), + [aux_sym_def_type_statement_token11] = ACTIONS(8188), + [aux_sym_def_type_statement_token12] = ACTIONS(8188), + [aux_sym_def_type_statement_token13] = ACTIONS(8188), + [aux_sym_def_type_statement_token14] = ACTIONS(8188), + [aux_sym_call_statement_token1] = ACTIONS(8188), + [sym__ambiguous_call_statement] = ACTIONS(8188), + [aux_sym_addressof_expression_token1] = ACTIONS(8188), + [aux_sym_type_of_expression_token1] = ACTIONS(8188), + [aux_sym_unary_expression_token1] = ACTIONS(8188), + [sym_string_literal] = ACTIONS(8190), + [sym_number_literal] = ACTIONS(8190), + [aux_sym_boolean_literal_token1] = ACTIONS(8188), + [aux_sym_boolean_literal_token2] = ACTIONS(8188), + [sym_nothing_literal] = ACTIONS(8188), + [sym_null_literal] = ACTIONS(8188), + [sym_empty_literal] = ACTIONS(8188), + [sym_date_literal] = ACTIONS(8190), + [anon_sym_POUND] = ACTIONS(8188), + }, + [STATE(5173)] = { + [sym_do_condition] = STATE(6999), + [sym_identifier] = ACTIONS(8192), + [sym_newline] = ACTIONS(8194), + [anon_sym_COLON] = ACTIONS(8194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8192), + [aux_sym_frm_property_statement_token1] = ACTIONS(8192), + [anon_sym_DOT] = ACTIONS(8192), + [anon_sym_BANG] = ACTIONS(8194), + [aux_sym__attribute_identifier_token1] = ACTIONS(8192), + [aux_sym_option_statement_token3] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8192), + [aux_sym_preprocessor_const_token1] = ACTIONS(8192), + [sym_static_modifier] = ACTIONS(8192), + [sym__dim_keyword] = ACTIONS(8192), + [sym__redim_keyword] = ACTIONS(8192), + [aux_sym_get_accessor_token1] = ACTIONS(8192), + [aux_sym_set_accessor_token1] = ACTIONS(8192), + [aux_sym_const_declaration_token1] = ACTIONS(8192), + [anon_sym_LPAREN] = ACTIONS(8194), + [aux_sym_as_type_clause_token2] = ACTIONS(8192), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8192), + [aux_sym_visibility_token1] = ACTIONS(8192), + [aux_sym_visibility_token2] = ACTIONS(8192), + [aux_sym_elseif_fragment_token1] = ACTIONS(8192), + [aux_sym_else_fragment_token1] = ACTIONS(8192), + [aux_sym_select_statement_token1] = ACTIONS(8192), + [aux_sym__for_header_token1] = ACTIONS(8192), + [aux_sym_do_statement_token1] = ACTIONS(8192), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8192), + [aux_sym_with_statement_token1] = ACTIONS(8192), + [aux_sym_exit_statement_token1] = ACTIONS(8192), + [sym_end_statement] = ACTIONS(8194), + [aux_sym_on_goto_statement_token1] = ACTIONS(8192), + [aux_sym_on_goto_statement_token2] = ACTIONS(8192), + [aux_sym_on_error_statement_token2] = ACTIONS(8192), + [sym__ambiguous_redim_statement] = ACTIONS(8194), + [aux_sym_erase_statement_token1] = ACTIONS(8192), + [aux_sym_open_statement_token1] = ACTIONS(8192), + [aux_sym_file_mode_token2] = ACTIONS(8192), + [aux_sym_file_access_token2] = ACTIONS(8192), + [aux_sym_file_lock_token2] = ACTIONS(8192), + [aux_sym_print_statement_token1] = ACTIONS(8192), + [anon_sym_PLUS] = ACTIONS(8194), + [anon_sym_DASH] = ACTIONS(8192), + [anon_sym_QMARK] = ACTIONS(8194), + [aux_sym_close_statement_token1] = ACTIONS(8192), + [aux_sym_put_statement_token1] = ACTIONS(8192), + [aux_sym_unlock_statement_token1] = ACTIONS(8192), + [aux_sym_seek_statement_token1] = ACTIONS(8192), + [sym_reset_statement] = ACTIONS(8192), + [aux_sym_raise_event_statement_token1] = ACTIONS(8192), + [sym_stop_statement] = ACTIONS(8192), + [sym_beep_statement] = ACTIONS(8192), + [aux_sym_unload_statement_token1] = ACTIONS(8192), + [aux_sym_def_type_statement_token1] = ACTIONS(8192), + [aux_sym_def_type_statement_token2] = ACTIONS(8192), + [aux_sym_def_type_statement_token3] = ACTIONS(8192), + [aux_sym_def_type_statement_token4] = ACTIONS(8192), + [aux_sym_def_type_statement_token5] = ACTIONS(8192), + [aux_sym_def_type_statement_token6] = ACTIONS(8192), + [aux_sym_def_type_statement_token7] = ACTIONS(8192), + [aux_sym_def_type_statement_token8] = ACTIONS(8192), + [aux_sym_def_type_statement_token9] = ACTIONS(8192), + [aux_sym_def_type_statement_token10] = ACTIONS(8192), + [aux_sym_def_type_statement_token11] = ACTIONS(8192), + [aux_sym_def_type_statement_token12] = ACTIONS(8192), + [aux_sym_def_type_statement_token13] = ACTIONS(8192), + [aux_sym_def_type_statement_token14] = ACTIONS(8192), + [aux_sym_call_statement_token1] = ACTIONS(8192), + [sym__ambiguous_call_statement] = ACTIONS(8192), + [aux_sym_addressof_expression_token1] = ACTIONS(8192), + [aux_sym_type_of_expression_token1] = ACTIONS(8192), + [aux_sym_unary_expression_token1] = ACTIONS(8192), + [sym_string_literal] = ACTIONS(8194), + [sym_number_literal] = ACTIONS(8194), + [aux_sym_boolean_literal_token1] = ACTIONS(8192), + [aux_sym_boolean_literal_token2] = ACTIONS(8192), + [sym_nothing_literal] = ACTIONS(8192), + [sym_null_literal] = ACTIONS(8192), + [sym_empty_literal] = ACTIONS(8192), + [sym_date_literal] = ACTIONS(8194), + [anon_sym_POUND] = ACTIONS(8192), + }, + [STATE(5174)] = { + [sym_do_condition] = STATE(7001), + [sym_identifier] = ACTIONS(8203), + [sym_newline] = ACTIONS(8205), + [anon_sym_COLON] = ACTIONS(8205), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8203), + [aux_sym_frm_property_statement_token1] = ACTIONS(8203), + [anon_sym_DOT] = ACTIONS(8203), + [anon_sym_BANG] = ACTIONS(8205), + [aux_sym__attribute_identifier_token1] = ACTIONS(8203), + [aux_sym_option_statement_token3] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8203), + [aux_sym_preprocessor_const_token1] = ACTIONS(8203), + [sym_static_modifier] = ACTIONS(8203), + [sym__dim_keyword] = ACTIONS(8203), + [sym__redim_keyword] = ACTIONS(8203), + [aux_sym_get_accessor_token1] = ACTIONS(8203), + [aux_sym_set_accessor_token1] = ACTIONS(8203), + [aux_sym_const_declaration_token1] = ACTIONS(8203), + [anon_sym_LPAREN] = ACTIONS(8205), + [aux_sym_as_type_clause_token2] = ACTIONS(8203), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8203), + [aux_sym_visibility_token1] = ACTIONS(8203), + [aux_sym_visibility_token2] = ACTIONS(8203), + [aux_sym_elseif_fragment_token1] = ACTIONS(8203), + [aux_sym_else_fragment_token1] = ACTIONS(8203), + [aux_sym_select_statement_token1] = ACTIONS(8203), + [aux_sym__for_header_token1] = ACTIONS(8203), + [aux_sym_do_statement_token1] = ACTIONS(8203), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8203), + [aux_sym_with_statement_token1] = ACTIONS(8203), + [aux_sym_exit_statement_token1] = ACTIONS(8203), + [sym_end_statement] = ACTIONS(8205), + [aux_sym_on_goto_statement_token1] = ACTIONS(8203), + [aux_sym_on_goto_statement_token2] = ACTIONS(8203), + [aux_sym_on_error_statement_token2] = ACTIONS(8203), + [sym__ambiguous_redim_statement] = ACTIONS(8205), + [aux_sym_erase_statement_token1] = ACTIONS(8203), + [aux_sym_open_statement_token1] = ACTIONS(8203), + [aux_sym_file_mode_token2] = ACTIONS(8203), + [aux_sym_file_access_token2] = ACTIONS(8203), + [aux_sym_file_lock_token2] = ACTIONS(8203), + [aux_sym_print_statement_token1] = ACTIONS(8203), + [anon_sym_PLUS] = ACTIONS(8205), + [anon_sym_DASH] = ACTIONS(8203), + [anon_sym_QMARK] = ACTIONS(8205), + [aux_sym_close_statement_token1] = ACTIONS(8203), + [aux_sym_put_statement_token1] = ACTIONS(8203), + [aux_sym_unlock_statement_token1] = ACTIONS(8203), + [aux_sym_seek_statement_token1] = ACTIONS(8203), + [sym_reset_statement] = ACTIONS(8203), + [aux_sym_raise_event_statement_token1] = ACTIONS(8203), + [sym_stop_statement] = ACTIONS(8203), + [sym_beep_statement] = ACTIONS(8203), + [aux_sym_unload_statement_token1] = ACTIONS(8203), + [aux_sym_def_type_statement_token1] = ACTIONS(8203), + [aux_sym_def_type_statement_token2] = ACTIONS(8203), + [aux_sym_def_type_statement_token3] = ACTIONS(8203), + [aux_sym_def_type_statement_token4] = ACTIONS(8203), + [aux_sym_def_type_statement_token5] = ACTIONS(8203), + [aux_sym_def_type_statement_token6] = ACTIONS(8203), + [aux_sym_def_type_statement_token7] = ACTIONS(8203), + [aux_sym_def_type_statement_token8] = ACTIONS(8203), + [aux_sym_def_type_statement_token9] = ACTIONS(8203), + [aux_sym_def_type_statement_token10] = ACTIONS(8203), + [aux_sym_def_type_statement_token11] = ACTIONS(8203), + [aux_sym_def_type_statement_token12] = ACTIONS(8203), + [aux_sym_def_type_statement_token13] = ACTIONS(8203), + [aux_sym_def_type_statement_token14] = ACTIONS(8203), + [aux_sym_call_statement_token1] = ACTIONS(8203), + [sym__ambiguous_call_statement] = ACTIONS(8203), + [aux_sym_addressof_expression_token1] = ACTIONS(8203), + [aux_sym_type_of_expression_token1] = ACTIONS(8203), + [aux_sym_unary_expression_token1] = ACTIONS(8203), + [sym_string_literal] = ACTIONS(8205), + [sym_number_literal] = ACTIONS(8205), + [aux_sym_boolean_literal_token1] = ACTIONS(8203), + [aux_sym_boolean_literal_token2] = ACTIONS(8203), + [sym_nothing_literal] = ACTIONS(8203), + [sym_null_literal] = ACTIONS(8203), + [sym_empty_literal] = ACTIONS(8203), + [sym_date_literal] = ACTIONS(8205), + [anon_sym_POUND] = ACTIONS(8203), + }, + [STATE(5175)] = { + [sym_do_condition] = STATE(7003), + [sym_identifier] = ACTIONS(8213), + [sym_newline] = ACTIONS(8215), + [anon_sym_COLON] = ACTIONS(8215), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8213), + [aux_sym_frm_property_statement_token1] = ACTIONS(8213), + [anon_sym_DOT] = ACTIONS(8213), + [anon_sym_BANG] = ACTIONS(8215), + [aux_sym__attribute_identifier_token1] = ACTIONS(8213), + [aux_sym_option_statement_token3] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8213), + [aux_sym_preprocessor_const_token1] = ACTIONS(8213), + [sym_static_modifier] = ACTIONS(8213), + [sym__dim_keyword] = ACTIONS(8213), + [sym__redim_keyword] = ACTIONS(8213), + [aux_sym_get_accessor_token1] = ACTIONS(8213), + [aux_sym_set_accessor_token1] = ACTIONS(8213), + [aux_sym_const_declaration_token1] = ACTIONS(8213), + [anon_sym_LPAREN] = ACTIONS(8215), + [aux_sym_as_type_clause_token2] = ACTIONS(8213), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8213), + [aux_sym_visibility_token1] = ACTIONS(8213), + [aux_sym_visibility_token2] = ACTIONS(8213), + [aux_sym_elseif_fragment_token1] = ACTIONS(8213), + [aux_sym_else_fragment_token1] = ACTIONS(8213), + [aux_sym_select_statement_token1] = ACTIONS(8213), + [aux_sym__for_header_token1] = ACTIONS(8213), + [aux_sym_do_statement_token1] = ACTIONS(8213), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8213), + [aux_sym_with_statement_token1] = ACTIONS(8213), + [aux_sym_exit_statement_token1] = ACTIONS(8213), + [sym_end_statement] = ACTIONS(8215), + [aux_sym_on_goto_statement_token1] = ACTIONS(8213), + [aux_sym_on_goto_statement_token2] = ACTIONS(8213), + [aux_sym_on_error_statement_token2] = ACTIONS(8213), + [sym__ambiguous_redim_statement] = ACTIONS(8215), + [aux_sym_erase_statement_token1] = ACTIONS(8213), + [aux_sym_open_statement_token1] = ACTIONS(8213), + [aux_sym_file_mode_token2] = ACTIONS(8213), + [aux_sym_file_access_token2] = ACTIONS(8213), + [aux_sym_file_lock_token2] = ACTIONS(8213), + [aux_sym_print_statement_token1] = ACTIONS(8213), + [anon_sym_PLUS] = ACTIONS(8215), + [anon_sym_DASH] = ACTIONS(8213), + [anon_sym_QMARK] = ACTIONS(8215), + [aux_sym_close_statement_token1] = ACTIONS(8213), + [aux_sym_put_statement_token1] = ACTIONS(8213), + [aux_sym_unlock_statement_token1] = ACTIONS(8213), + [aux_sym_seek_statement_token1] = ACTIONS(8213), + [sym_reset_statement] = ACTIONS(8213), + [aux_sym_raise_event_statement_token1] = ACTIONS(8213), + [sym_stop_statement] = ACTIONS(8213), + [sym_beep_statement] = ACTIONS(8213), + [aux_sym_unload_statement_token1] = ACTIONS(8213), + [aux_sym_def_type_statement_token1] = ACTIONS(8213), + [aux_sym_def_type_statement_token2] = ACTIONS(8213), + [aux_sym_def_type_statement_token3] = ACTIONS(8213), + [aux_sym_def_type_statement_token4] = ACTIONS(8213), + [aux_sym_def_type_statement_token5] = ACTIONS(8213), + [aux_sym_def_type_statement_token6] = ACTIONS(8213), + [aux_sym_def_type_statement_token7] = ACTIONS(8213), + [aux_sym_def_type_statement_token8] = ACTIONS(8213), + [aux_sym_def_type_statement_token9] = ACTIONS(8213), + [aux_sym_def_type_statement_token10] = ACTIONS(8213), + [aux_sym_def_type_statement_token11] = ACTIONS(8213), + [aux_sym_def_type_statement_token12] = ACTIONS(8213), + [aux_sym_def_type_statement_token13] = ACTIONS(8213), + [aux_sym_def_type_statement_token14] = ACTIONS(8213), + [aux_sym_call_statement_token1] = ACTIONS(8213), + [sym__ambiguous_call_statement] = ACTIONS(8213), + [aux_sym_addressof_expression_token1] = ACTIONS(8213), + [aux_sym_type_of_expression_token1] = ACTIONS(8213), + [aux_sym_unary_expression_token1] = ACTIONS(8213), + [sym_string_literal] = ACTIONS(8215), + [sym_number_literal] = ACTIONS(8215), + [aux_sym_boolean_literal_token1] = ACTIONS(8213), + [aux_sym_boolean_literal_token2] = ACTIONS(8213), + [sym_nothing_literal] = ACTIONS(8213), + [sym_null_literal] = ACTIONS(8213), + [sym_empty_literal] = ACTIONS(8213), + [sym_date_literal] = ACTIONS(8215), + [anon_sym_POUND] = ACTIONS(8213), + }, + [STATE(5176)] = { + [sym_do_condition] = STATE(7004), + [sym_identifier] = ACTIONS(8217), + [sym_newline] = ACTIONS(8219), + [anon_sym_COLON] = ACTIONS(8219), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8217), + [aux_sym_frm_property_statement_token1] = ACTIONS(8217), + [anon_sym_DOT] = ACTIONS(8217), + [anon_sym_BANG] = ACTIONS(8219), + [aux_sym__attribute_identifier_token1] = ACTIONS(8217), + [aux_sym_option_statement_token3] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8217), + [aux_sym_preprocessor_const_token1] = ACTIONS(8217), + [sym_static_modifier] = ACTIONS(8217), + [sym__dim_keyword] = ACTIONS(8217), + [sym__redim_keyword] = ACTIONS(8217), + [aux_sym_get_accessor_token1] = ACTIONS(8217), + [aux_sym_set_accessor_token1] = ACTIONS(8217), + [aux_sym_const_declaration_token1] = ACTIONS(8217), + [anon_sym_LPAREN] = ACTIONS(8219), + [aux_sym_as_type_clause_token2] = ACTIONS(8217), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8217), + [aux_sym_visibility_token1] = ACTIONS(8217), + [aux_sym_visibility_token2] = ACTIONS(8217), + [aux_sym_elseif_fragment_token1] = ACTIONS(8217), + [aux_sym_else_fragment_token1] = ACTIONS(8217), + [aux_sym_select_statement_token1] = ACTIONS(8217), + [aux_sym__for_header_token1] = ACTIONS(8217), + [aux_sym_do_statement_token1] = ACTIONS(8217), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8217), + [aux_sym_with_statement_token1] = ACTIONS(8217), + [aux_sym_exit_statement_token1] = ACTIONS(8217), + [sym_end_statement] = ACTIONS(8219), + [aux_sym_on_goto_statement_token1] = ACTIONS(8217), + [aux_sym_on_goto_statement_token2] = ACTIONS(8217), + [aux_sym_on_error_statement_token2] = ACTIONS(8217), + [sym__ambiguous_redim_statement] = ACTIONS(8219), + [aux_sym_erase_statement_token1] = ACTIONS(8217), + [aux_sym_open_statement_token1] = ACTIONS(8217), + [aux_sym_file_mode_token2] = ACTIONS(8217), + [aux_sym_file_access_token2] = ACTIONS(8217), + [aux_sym_file_lock_token2] = ACTIONS(8217), + [aux_sym_print_statement_token1] = ACTIONS(8217), + [anon_sym_PLUS] = ACTIONS(8219), + [anon_sym_DASH] = ACTIONS(8217), + [anon_sym_QMARK] = ACTIONS(8219), + [aux_sym_close_statement_token1] = ACTIONS(8217), + [aux_sym_put_statement_token1] = ACTIONS(8217), + [aux_sym_unlock_statement_token1] = ACTIONS(8217), + [aux_sym_seek_statement_token1] = ACTIONS(8217), + [sym_reset_statement] = ACTIONS(8217), + [aux_sym_raise_event_statement_token1] = ACTIONS(8217), + [sym_stop_statement] = ACTIONS(8217), + [sym_beep_statement] = ACTIONS(8217), + [aux_sym_unload_statement_token1] = ACTIONS(8217), + [aux_sym_def_type_statement_token1] = ACTIONS(8217), + [aux_sym_def_type_statement_token2] = ACTIONS(8217), + [aux_sym_def_type_statement_token3] = ACTIONS(8217), + [aux_sym_def_type_statement_token4] = ACTIONS(8217), + [aux_sym_def_type_statement_token5] = ACTIONS(8217), + [aux_sym_def_type_statement_token6] = ACTIONS(8217), + [aux_sym_def_type_statement_token7] = ACTIONS(8217), + [aux_sym_def_type_statement_token8] = ACTIONS(8217), + [aux_sym_def_type_statement_token9] = ACTIONS(8217), + [aux_sym_def_type_statement_token10] = ACTIONS(8217), + [aux_sym_def_type_statement_token11] = ACTIONS(8217), + [aux_sym_def_type_statement_token12] = ACTIONS(8217), + [aux_sym_def_type_statement_token13] = ACTIONS(8217), + [aux_sym_def_type_statement_token14] = ACTIONS(8217), + [aux_sym_call_statement_token1] = ACTIONS(8217), + [sym__ambiguous_call_statement] = ACTIONS(8217), + [aux_sym_addressof_expression_token1] = ACTIONS(8217), + [aux_sym_type_of_expression_token1] = ACTIONS(8217), + [aux_sym_unary_expression_token1] = ACTIONS(8217), + [sym_string_literal] = ACTIONS(8219), + [sym_number_literal] = ACTIONS(8219), + [aux_sym_boolean_literal_token1] = ACTIONS(8217), + [aux_sym_boolean_literal_token2] = ACTIONS(8217), + [sym_nothing_literal] = ACTIONS(8217), + [sym_null_literal] = ACTIONS(8217), + [sym_empty_literal] = ACTIONS(8217), + [sym_date_literal] = ACTIONS(8219), + [anon_sym_POUND] = ACTIONS(8217), + }, + [STATE(5177)] = { + [sym_do_condition] = STATE(7005), + [sym_identifier] = ACTIONS(8221), + [sym_newline] = ACTIONS(8223), + [anon_sym_COLON] = ACTIONS(8223), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8221), + [aux_sym_frm_property_statement_token1] = ACTIONS(8221), + [anon_sym_DOT] = ACTIONS(8221), + [anon_sym_BANG] = ACTIONS(8223), + [aux_sym__attribute_identifier_token1] = ACTIONS(8221), + [aux_sym_option_statement_token3] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8221), + [aux_sym_preprocessor_const_token1] = ACTIONS(8221), + [sym_static_modifier] = ACTIONS(8221), + [sym__dim_keyword] = ACTIONS(8221), + [sym__redim_keyword] = ACTIONS(8221), + [aux_sym_get_accessor_token1] = ACTIONS(8221), + [aux_sym_set_accessor_token1] = ACTIONS(8221), + [aux_sym_const_declaration_token1] = ACTIONS(8221), + [anon_sym_LPAREN] = ACTIONS(8223), + [aux_sym_as_type_clause_token2] = ACTIONS(8221), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8221), + [aux_sym_visibility_token1] = ACTIONS(8221), + [aux_sym_visibility_token2] = ACTIONS(8221), + [aux_sym_elseif_fragment_token1] = ACTIONS(8221), + [aux_sym_else_fragment_token1] = ACTIONS(8221), + [aux_sym_select_statement_token1] = ACTIONS(8221), + [aux_sym__for_header_token1] = ACTIONS(8221), + [aux_sym_do_statement_token1] = ACTIONS(8221), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8221), + [aux_sym_with_statement_token1] = ACTIONS(8221), + [aux_sym_exit_statement_token1] = ACTIONS(8221), + [sym_end_statement] = ACTIONS(8223), + [aux_sym_on_goto_statement_token1] = ACTIONS(8221), + [aux_sym_on_goto_statement_token2] = ACTIONS(8221), + [aux_sym_on_error_statement_token2] = ACTIONS(8221), + [sym__ambiguous_redim_statement] = ACTIONS(8223), + [aux_sym_erase_statement_token1] = ACTIONS(8221), + [aux_sym_open_statement_token1] = ACTIONS(8221), + [aux_sym_file_mode_token2] = ACTIONS(8221), + [aux_sym_file_access_token2] = ACTIONS(8221), + [aux_sym_file_lock_token2] = ACTIONS(8221), + [aux_sym_print_statement_token1] = ACTIONS(8221), + [anon_sym_PLUS] = ACTIONS(8223), + [anon_sym_DASH] = ACTIONS(8221), + [anon_sym_QMARK] = ACTIONS(8223), + [aux_sym_close_statement_token1] = ACTIONS(8221), + [aux_sym_put_statement_token1] = ACTIONS(8221), + [aux_sym_unlock_statement_token1] = ACTIONS(8221), + [aux_sym_seek_statement_token1] = ACTIONS(8221), + [sym_reset_statement] = ACTIONS(8221), + [aux_sym_raise_event_statement_token1] = ACTIONS(8221), + [sym_stop_statement] = ACTIONS(8221), + [sym_beep_statement] = ACTIONS(8221), + [aux_sym_unload_statement_token1] = ACTIONS(8221), + [aux_sym_def_type_statement_token1] = ACTIONS(8221), + [aux_sym_def_type_statement_token2] = ACTIONS(8221), + [aux_sym_def_type_statement_token3] = ACTIONS(8221), + [aux_sym_def_type_statement_token4] = ACTIONS(8221), + [aux_sym_def_type_statement_token5] = ACTIONS(8221), + [aux_sym_def_type_statement_token6] = ACTIONS(8221), + [aux_sym_def_type_statement_token7] = ACTIONS(8221), + [aux_sym_def_type_statement_token8] = ACTIONS(8221), + [aux_sym_def_type_statement_token9] = ACTIONS(8221), + [aux_sym_def_type_statement_token10] = ACTIONS(8221), + [aux_sym_def_type_statement_token11] = ACTIONS(8221), + [aux_sym_def_type_statement_token12] = ACTIONS(8221), + [aux_sym_def_type_statement_token13] = ACTIONS(8221), + [aux_sym_def_type_statement_token14] = ACTIONS(8221), + [aux_sym_call_statement_token1] = ACTIONS(8221), + [sym__ambiguous_call_statement] = ACTIONS(8221), + [aux_sym_addressof_expression_token1] = ACTIONS(8221), + [aux_sym_type_of_expression_token1] = ACTIONS(8221), + [aux_sym_unary_expression_token1] = ACTIONS(8221), + [sym_string_literal] = ACTIONS(8223), + [sym_number_literal] = ACTIONS(8223), + [aux_sym_boolean_literal_token1] = ACTIONS(8221), + [aux_sym_boolean_literal_token2] = ACTIONS(8221), + [sym_nothing_literal] = ACTIONS(8221), + [sym_null_literal] = ACTIONS(8221), + [sym_empty_literal] = ACTIONS(8221), + [sym_date_literal] = ACTIONS(8223), + [anon_sym_POUND] = ACTIONS(8221), + }, + [STATE(5178)] = { + [aux_sym_input_statement_repeat1] = STATE(5200), + [sym_identifier] = ACTIONS(8237), + [sym_newline] = ACTIONS(8239), + [anon_sym_COLON] = ACTIONS(8239), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8237), + [aux_sym_frm_property_statement_token1] = ACTIONS(8237), + [anon_sym_DOT] = ACTIONS(8237), + [anon_sym_BANG] = ACTIONS(8239), + [aux_sym__attribute_identifier_token1] = ACTIONS(8237), + [aux_sym_option_statement_token3] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8237), + [aux_sym_preprocessor_const_token1] = ACTIONS(8237), + [sym_static_modifier] = ACTIONS(8237), + [sym__dim_keyword] = ACTIONS(8237), + [sym__redim_keyword] = ACTIONS(8237), + [aux_sym_get_accessor_token1] = ACTIONS(8237), + [aux_sym_set_accessor_token1] = ACTIONS(8237), + [anon_sym_COMMA] = ACTIONS(10396), + [aux_sym_const_declaration_token1] = ACTIONS(8237), + [anon_sym_LPAREN] = ACTIONS(8239), + [aux_sym_as_type_clause_token2] = ACTIONS(8237), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8237), + [aux_sym_visibility_token1] = ACTIONS(8237), + [aux_sym_visibility_token2] = ACTIONS(8237), + [aux_sym_elseif_fragment_token1] = ACTIONS(8237), + [aux_sym_else_fragment_token1] = ACTIONS(8237), + [aux_sym_select_statement_token1] = ACTIONS(8237), + [aux_sym__for_header_token1] = ACTIONS(8237), + [aux_sym_do_statement_token1] = ACTIONS(8237), + [aux_sym_do_condition_token1] = ACTIONS(8237), + [aux_sym_while_statement_token1] = ACTIONS(8237), + [aux_sym_with_statement_token1] = ACTIONS(8237), + [aux_sym_exit_statement_token1] = ACTIONS(8237), + [sym_end_statement] = ACTIONS(8239), + [aux_sym_on_goto_statement_token1] = ACTIONS(8237), + [aux_sym_on_goto_statement_token2] = ACTIONS(8237), + [aux_sym_on_error_statement_token2] = ACTIONS(8237), + [sym__ambiguous_redim_statement] = ACTIONS(8239), + [aux_sym_erase_statement_token1] = ACTIONS(8237), + [aux_sym_open_statement_token1] = ACTIONS(8237), + [aux_sym_file_mode_token2] = ACTIONS(8237), + [aux_sym_file_access_token2] = ACTIONS(8237), + [aux_sym_file_lock_token2] = ACTIONS(8237), + [aux_sym_print_statement_token1] = ACTIONS(8237), + [anon_sym_PLUS] = ACTIONS(8239), + [anon_sym_DASH] = ACTIONS(8237), + [anon_sym_QMARK] = ACTIONS(8239), + [aux_sym_close_statement_token1] = ACTIONS(8237), + [aux_sym_put_statement_token1] = ACTIONS(8237), + [aux_sym_unlock_statement_token1] = ACTIONS(8237), + [aux_sym_seek_statement_token1] = ACTIONS(8237), + [sym_reset_statement] = ACTIONS(8237), + [aux_sym_raise_event_statement_token1] = ACTIONS(8237), + [sym_stop_statement] = ACTIONS(8237), + [sym_beep_statement] = ACTIONS(8237), + [aux_sym_unload_statement_token1] = ACTIONS(8237), + [aux_sym_def_type_statement_token1] = ACTIONS(8237), + [aux_sym_def_type_statement_token2] = ACTIONS(8237), + [aux_sym_def_type_statement_token3] = ACTIONS(8237), + [aux_sym_def_type_statement_token4] = ACTIONS(8237), + [aux_sym_def_type_statement_token5] = ACTIONS(8237), + [aux_sym_def_type_statement_token6] = ACTIONS(8237), + [aux_sym_def_type_statement_token7] = ACTIONS(8237), + [aux_sym_def_type_statement_token8] = ACTIONS(8237), + [aux_sym_def_type_statement_token9] = ACTIONS(8237), + [aux_sym_def_type_statement_token10] = ACTIONS(8237), + [aux_sym_def_type_statement_token11] = ACTIONS(8237), + [aux_sym_def_type_statement_token12] = ACTIONS(8237), + [aux_sym_def_type_statement_token13] = ACTIONS(8237), + [aux_sym_def_type_statement_token14] = ACTIONS(8237), + [aux_sym_call_statement_token1] = ACTIONS(8237), + [sym__ambiguous_call_statement] = ACTIONS(8237), + [aux_sym_addressof_expression_token1] = ACTIONS(8237), + [aux_sym_type_of_expression_token1] = ACTIONS(8237), + [aux_sym_unary_expression_token1] = ACTIONS(8237), + [sym_string_literal] = ACTIONS(8239), + [sym_number_literal] = ACTIONS(8239), + [aux_sym_boolean_literal_token1] = ACTIONS(8237), + [aux_sym_boolean_literal_token2] = ACTIONS(8237), + [sym_nothing_literal] = ACTIONS(8237), + [sym_null_literal] = ACTIONS(8237), + [sym_empty_literal] = ACTIONS(8237), + [sym_date_literal] = ACTIONS(8239), + [anon_sym_POUND] = ACTIONS(8237), + }, + [STATE(5179)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5201), + [sym_identifier] = ACTIONS(7945), + [sym_newline] = ACTIONS(7947), + [anon_sym_COLON] = ACTIONS(7947), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7945), + [aux_sym_frm_property_statement_token1] = ACTIONS(7945), + [anon_sym_DOT] = ACTIONS(7945), + [anon_sym_BANG] = ACTIONS(7947), + [aux_sym__attribute_identifier_token1] = ACTIONS(7945), + [aux_sym_option_statement_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7945), + [aux_sym_preprocessor_const_token1] = ACTIONS(7945), + [sym_static_modifier] = ACTIONS(7945), + [sym__dim_keyword] = ACTIONS(7945), + [sym__redim_keyword] = ACTIONS(7945), + [aux_sym_get_accessor_token1] = ACTIONS(7945), + [aux_sym_set_accessor_token1] = ACTIONS(7945), + [anon_sym_COMMA] = ACTIONS(10474), + [aux_sym_const_declaration_token1] = ACTIONS(7945), + [anon_sym_LPAREN] = ACTIONS(7947), + [aux_sym_as_type_clause_token2] = ACTIONS(7945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7945), + [aux_sym_visibility_token1] = ACTIONS(7945), + [aux_sym_visibility_token2] = ACTIONS(7945), + [aux_sym_elseif_fragment_token1] = ACTIONS(7945), + [aux_sym_else_fragment_token1] = ACTIONS(7945), + [aux_sym_select_statement_token1] = ACTIONS(7945), + [aux_sym__for_header_token1] = ACTIONS(7945), + [aux_sym_do_statement_token1] = ACTIONS(7945), + [aux_sym_do_condition_token1] = ACTIONS(7945), + [aux_sym_while_statement_token1] = ACTIONS(7945), + [aux_sym_with_statement_token1] = ACTIONS(7945), + [aux_sym_exit_statement_token1] = ACTIONS(7945), + [sym_end_statement] = ACTIONS(7947), + [aux_sym_on_goto_statement_token1] = ACTIONS(7945), + [aux_sym_on_goto_statement_token2] = ACTIONS(7945), + [aux_sym_on_error_statement_token2] = ACTIONS(7945), + [sym__ambiguous_redim_statement] = ACTIONS(7947), + [aux_sym_erase_statement_token1] = ACTIONS(7945), + [aux_sym_open_statement_token1] = ACTIONS(7945), + [aux_sym_file_mode_token2] = ACTIONS(7945), + [aux_sym_file_access_token2] = ACTIONS(7945), + [aux_sym_file_lock_token2] = ACTIONS(7945), + [aux_sym_print_statement_token1] = ACTIONS(7945), + [anon_sym_PLUS] = ACTIONS(7947), + [anon_sym_DASH] = ACTIONS(7945), + [anon_sym_QMARK] = ACTIONS(7947), + [aux_sym_close_statement_token1] = ACTIONS(7945), + [aux_sym_put_statement_token1] = ACTIONS(7945), + [aux_sym_unlock_statement_token1] = ACTIONS(7945), + [aux_sym_seek_statement_token1] = ACTIONS(7945), + [sym_reset_statement] = ACTIONS(7945), + [aux_sym_raise_event_statement_token1] = ACTIONS(7945), + [sym_stop_statement] = ACTIONS(7945), + [sym_beep_statement] = ACTIONS(7945), + [aux_sym_unload_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token2] = ACTIONS(7945), + [aux_sym_def_type_statement_token3] = ACTIONS(7945), + [aux_sym_def_type_statement_token4] = ACTIONS(7945), + [aux_sym_def_type_statement_token5] = ACTIONS(7945), + [aux_sym_def_type_statement_token6] = ACTIONS(7945), + [aux_sym_def_type_statement_token7] = ACTIONS(7945), + [aux_sym_def_type_statement_token8] = ACTIONS(7945), + [aux_sym_def_type_statement_token9] = ACTIONS(7945), + [aux_sym_def_type_statement_token10] = ACTIONS(7945), + [aux_sym_def_type_statement_token11] = ACTIONS(7945), + [aux_sym_def_type_statement_token12] = ACTIONS(7945), + [aux_sym_def_type_statement_token13] = ACTIONS(7945), + [aux_sym_def_type_statement_token14] = ACTIONS(7945), + [aux_sym_call_statement_token1] = ACTIONS(7945), + [sym__ambiguous_call_statement] = ACTIONS(7945), + [aux_sym_addressof_expression_token1] = ACTIONS(7945), + [aux_sym_type_of_expression_token1] = ACTIONS(7945), + [aux_sym_unary_expression_token1] = ACTIONS(7945), + [sym_string_literal] = ACTIONS(7947), + [sym_number_literal] = ACTIONS(7947), + [aux_sym_boolean_literal_token1] = ACTIONS(7945), + [aux_sym_boolean_literal_token2] = ACTIONS(7945), + [sym_nothing_literal] = ACTIONS(7945), + [sym_null_literal] = ACTIONS(7945), + [sym_empty_literal] = ACTIONS(7945), + [sym_date_literal] = ACTIONS(7947), + [anon_sym_POUND] = ACTIONS(7945), + }, + [STATE(5180)] = { + [sym_do_condition] = STATE(7033), + [sym_identifier] = ACTIONS(8271), + [sym_newline] = ACTIONS(8273), + [anon_sym_COLON] = ACTIONS(8273), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8271), + [aux_sym_frm_property_statement_token1] = ACTIONS(8271), + [anon_sym_DOT] = ACTIONS(8271), + [anon_sym_BANG] = ACTIONS(8273), + [aux_sym__attribute_identifier_token1] = ACTIONS(8271), + [aux_sym_option_statement_token3] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8271), + [aux_sym_preprocessor_const_token1] = ACTIONS(8271), + [sym_static_modifier] = ACTIONS(8271), + [sym__dim_keyword] = ACTIONS(8271), + [sym__redim_keyword] = ACTIONS(8271), + [aux_sym_get_accessor_token1] = ACTIONS(8271), + [aux_sym_set_accessor_token1] = ACTIONS(8271), + [aux_sym_const_declaration_token1] = ACTIONS(8271), + [anon_sym_LPAREN] = ACTIONS(8273), + [aux_sym_as_type_clause_token2] = ACTIONS(8271), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8271), + [aux_sym_visibility_token1] = ACTIONS(8271), + [aux_sym_visibility_token2] = ACTIONS(8271), + [aux_sym_elseif_fragment_token1] = ACTIONS(8271), + [aux_sym_else_fragment_token1] = ACTIONS(8271), + [aux_sym_select_statement_token1] = ACTIONS(8271), + [aux_sym__for_header_token1] = ACTIONS(8271), + [aux_sym_do_statement_token1] = ACTIONS(8271), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8271), + [aux_sym_with_statement_token1] = ACTIONS(8271), + [aux_sym_exit_statement_token1] = ACTIONS(8271), + [sym_end_statement] = ACTIONS(8273), + [aux_sym_on_goto_statement_token1] = ACTIONS(8271), + [aux_sym_on_goto_statement_token2] = ACTIONS(8271), + [aux_sym_on_error_statement_token2] = ACTIONS(8271), + [sym__ambiguous_redim_statement] = ACTIONS(8273), + [aux_sym_erase_statement_token1] = ACTIONS(8271), + [aux_sym_open_statement_token1] = ACTIONS(8271), + [aux_sym_file_mode_token2] = ACTIONS(8271), + [aux_sym_file_access_token2] = ACTIONS(8271), + [aux_sym_file_lock_token2] = ACTIONS(8271), + [aux_sym_print_statement_token1] = ACTIONS(8271), + [anon_sym_PLUS] = ACTIONS(8273), + [anon_sym_DASH] = ACTIONS(8271), + [anon_sym_QMARK] = ACTIONS(8273), + [aux_sym_close_statement_token1] = ACTIONS(8271), + [aux_sym_put_statement_token1] = ACTIONS(8271), + [aux_sym_unlock_statement_token1] = ACTIONS(8271), + [aux_sym_seek_statement_token1] = ACTIONS(8271), + [sym_reset_statement] = ACTIONS(8271), + [aux_sym_raise_event_statement_token1] = ACTIONS(8271), + [sym_stop_statement] = ACTIONS(8271), + [sym_beep_statement] = ACTIONS(8271), + [aux_sym_unload_statement_token1] = ACTIONS(8271), + [aux_sym_def_type_statement_token1] = ACTIONS(8271), + [aux_sym_def_type_statement_token2] = ACTIONS(8271), + [aux_sym_def_type_statement_token3] = ACTIONS(8271), + [aux_sym_def_type_statement_token4] = ACTIONS(8271), + [aux_sym_def_type_statement_token5] = ACTIONS(8271), + [aux_sym_def_type_statement_token6] = ACTIONS(8271), + [aux_sym_def_type_statement_token7] = ACTIONS(8271), + [aux_sym_def_type_statement_token8] = ACTIONS(8271), + [aux_sym_def_type_statement_token9] = ACTIONS(8271), + [aux_sym_def_type_statement_token10] = ACTIONS(8271), + [aux_sym_def_type_statement_token11] = ACTIONS(8271), + [aux_sym_def_type_statement_token12] = ACTIONS(8271), + [aux_sym_def_type_statement_token13] = ACTIONS(8271), + [aux_sym_def_type_statement_token14] = ACTIONS(8271), + [aux_sym_call_statement_token1] = ACTIONS(8271), + [sym__ambiguous_call_statement] = ACTIONS(8271), + [aux_sym_addressof_expression_token1] = ACTIONS(8271), + [aux_sym_type_of_expression_token1] = ACTIONS(8271), + [aux_sym_unary_expression_token1] = ACTIONS(8271), + [sym_string_literal] = ACTIONS(8273), + [sym_number_literal] = ACTIONS(8273), + [aux_sym_boolean_literal_token1] = ACTIONS(8271), + [aux_sym_boolean_literal_token2] = ACTIONS(8271), + [sym_nothing_literal] = ACTIONS(8271), + [sym_null_literal] = ACTIONS(8271), + [sym_empty_literal] = ACTIONS(8271), + [sym_date_literal] = ACTIONS(8273), + [anon_sym_POUND] = ACTIONS(8271), + }, + [STATE(5181)] = { + [sym_do_condition] = STATE(7035), + [sym_identifier] = ACTIONS(8275), + [sym_newline] = ACTIONS(8277), + [anon_sym_COLON] = ACTIONS(8277), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8275), + [aux_sym_frm_property_statement_token1] = ACTIONS(8275), + [anon_sym_DOT] = ACTIONS(8275), + [anon_sym_BANG] = ACTIONS(8277), + [aux_sym__attribute_identifier_token1] = ACTIONS(8275), + [aux_sym_option_statement_token3] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8275), + [aux_sym_preprocessor_const_token1] = ACTIONS(8275), + [sym_static_modifier] = ACTIONS(8275), + [sym__dim_keyword] = ACTIONS(8275), + [sym__redim_keyword] = ACTIONS(8275), + [aux_sym_get_accessor_token1] = ACTIONS(8275), + [aux_sym_set_accessor_token1] = ACTIONS(8275), + [aux_sym_const_declaration_token1] = ACTIONS(8275), + [anon_sym_LPAREN] = ACTIONS(8277), + [aux_sym_as_type_clause_token2] = ACTIONS(8275), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8275), + [aux_sym_visibility_token1] = ACTIONS(8275), + [aux_sym_visibility_token2] = ACTIONS(8275), + [aux_sym_elseif_fragment_token1] = ACTIONS(8275), + [aux_sym_else_fragment_token1] = ACTIONS(8275), + [aux_sym_select_statement_token1] = ACTIONS(8275), + [aux_sym__for_header_token1] = ACTIONS(8275), + [aux_sym_do_statement_token1] = ACTIONS(8275), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8275), + [aux_sym_with_statement_token1] = ACTIONS(8275), + [aux_sym_exit_statement_token1] = ACTIONS(8275), + [sym_end_statement] = ACTIONS(8277), + [aux_sym_on_goto_statement_token1] = ACTIONS(8275), + [aux_sym_on_goto_statement_token2] = ACTIONS(8275), + [aux_sym_on_error_statement_token2] = ACTIONS(8275), + [sym__ambiguous_redim_statement] = ACTIONS(8277), + [aux_sym_erase_statement_token1] = ACTIONS(8275), + [aux_sym_open_statement_token1] = ACTIONS(8275), + [aux_sym_file_mode_token2] = ACTIONS(8275), + [aux_sym_file_access_token2] = ACTIONS(8275), + [aux_sym_file_lock_token2] = ACTIONS(8275), + [aux_sym_print_statement_token1] = ACTIONS(8275), + [anon_sym_PLUS] = ACTIONS(8277), + [anon_sym_DASH] = ACTIONS(8275), + [anon_sym_QMARK] = ACTIONS(8277), + [aux_sym_close_statement_token1] = ACTIONS(8275), + [aux_sym_put_statement_token1] = ACTIONS(8275), + [aux_sym_unlock_statement_token1] = ACTIONS(8275), + [aux_sym_seek_statement_token1] = ACTIONS(8275), + [sym_reset_statement] = ACTIONS(8275), + [aux_sym_raise_event_statement_token1] = ACTIONS(8275), + [sym_stop_statement] = ACTIONS(8275), + [sym_beep_statement] = ACTIONS(8275), + [aux_sym_unload_statement_token1] = ACTIONS(8275), + [aux_sym_def_type_statement_token1] = ACTIONS(8275), + [aux_sym_def_type_statement_token2] = ACTIONS(8275), + [aux_sym_def_type_statement_token3] = ACTIONS(8275), + [aux_sym_def_type_statement_token4] = ACTIONS(8275), + [aux_sym_def_type_statement_token5] = ACTIONS(8275), + [aux_sym_def_type_statement_token6] = ACTIONS(8275), + [aux_sym_def_type_statement_token7] = ACTIONS(8275), + [aux_sym_def_type_statement_token8] = ACTIONS(8275), + [aux_sym_def_type_statement_token9] = ACTIONS(8275), + [aux_sym_def_type_statement_token10] = ACTIONS(8275), + [aux_sym_def_type_statement_token11] = ACTIONS(8275), + [aux_sym_def_type_statement_token12] = ACTIONS(8275), + [aux_sym_def_type_statement_token13] = ACTIONS(8275), + [aux_sym_def_type_statement_token14] = ACTIONS(8275), + [aux_sym_call_statement_token1] = ACTIONS(8275), + [sym__ambiguous_call_statement] = ACTIONS(8275), + [aux_sym_addressof_expression_token1] = ACTIONS(8275), + [aux_sym_type_of_expression_token1] = ACTIONS(8275), + [aux_sym_unary_expression_token1] = ACTIONS(8275), + [sym_string_literal] = ACTIONS(8277), + [sym_number_literal] = ACTIONS(8277), + [aux_sym_boolean_literal_token1] = ACTIONS(8275), + [aux_sym_boolean_literal_token2] = ACTIONS(8275), + [sym_nothing_literal] = ACTIONS(8275), + [sym_null_literal] = ACTIONS(8275), + [sym_empty_literal] = ACTIONS(8275), + [sym_date_literal] = ACTIONS(8277), + [anon_sym_POUND] = ACTIONS(8275), + }, + [STATE(5182)] = { + [sym_do_condition] = STATE(7036), + [sym_identifier] = ACTIONS(8279), + [sym_newline] = ACTIONS(8281), + [anon_sym_COLON] = ACTIONS(8281), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8279), + [aux_sym_frm_property_statement_token1] = ACTIONS(8279), + [anon_sym_DOT] = ACTIONS(8279), + [anon_sym_BANG] = ACTIONS(8281), + [aux_sym__attribute_identifier_token1] = ACTIONS(8279), + [aux_sym_option_statement_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8279), + [aux_sym_preprocessor_const_token1] = ACTIONS(8279), + [sym_static_modifier] = ACTIONS(8279), + [sym__dim_keyword] = ACTIONS(8279), + [sym__redim_keyword] = ACTIONS(8279), + [aux_sym_get_accessor_token1] = ACTIONS(8279), + [aux_sym_set_accessor_token1] = ACTIONS(8279), + [aux_sym_const_declaration_token1] = ACTIONS(8279), + [anon_sym_LPAREN] = ACTIONS(8281), + [aux_sym_as_type_clause_token2] = ACTIONS(8279), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8279), + [aux_sym_visibility_token1] = ACTIONS(8279), + [aux_sym_visibility_token2] = ACTIONS(8279), + [aux_sym_elseif_fragment_token1] = ACTIONS(8279), + [aux_sym_else_fragment_token1] = ACTIONS(8279), + [aux_sym_select_statement_token1] = ACTIONS(8279), + [aux_sym__for_header_token1] = ACTIONS(8279), + [aux_sym_do_statement_token1] = ACTIONS(8279), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8279), + [aux_sym_with_statement_token1] = ACTIONS(8279), + [aux_sym_exit_statement_token1] = ACTIONS(8279), + [sym_end_statement] = ACTIONS(8281), + [aux_sym_on_goto_statement_token1] = ACTIONS(8279), + [aux_sym_on_goto_statement_token2] = ACTIONS(8279), + [aux_sym_on_error_statement_token2] = ACTIONS(8279), + [sym__ambiguous_redim_statement] = ACTIONS(8281), + [aux_sym_erase_statement_token1] = ACTIONS(8279), + [aux_sym_open_statement_token1] = ACTIONS(8279), + [aux_sym_file_mode_token2] = ACTIONS(8279), + [aux_sym_file_access_token2] = ACTIONS(8279), + [aux_sym_file_lock_token2] = ACTIONS(8279), + [aux_sym_print_statement_token1] = ACTIONS(8279), + [anon_sym_PLUS] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8279), + [anon_sym_QMARK] = ACTIONS(8281), + [aux_sym_close_statement_token1] = ACTIONS(8279), + [aux_sym_put_statement_token1] = ACTIONS(8279), + [aux_sym_unlock_statement_token1] = ACTIONS(8279), + [aux_sym_seek_statement_token1] = ACTIONS(8279), + [sym_reset_statement] = ACTIONS(8279), + [aux_sym_raise_event_statement_token1] = ACTIONS(8279), + [sym_stop_statement] = ACTIONS(8279), + [sym_beep_statement] = ACTIONS(8279), + [aux_sym_unload_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token2] = ACTIONS(8279), + [aux_sym_def_type_statement_token3] = ACTIONS(8279), + [aux_sym_def_type_statement_token4] = ACTIONS(8279), + [aux_sym_def_type_statement_token5] = ACTIONS(8279), + [aux_sym_def_type_statement_token6] = ACTIONS(8279), + [aux_sym_def_type_statement_token7] = ACTIONS(8279), + [aux_sym_def_type_statement_token8] = ACTIONS(8279), + [aux_sym_def_type_statement_token9] = ACTIONS(8279), + [aux_sym_def_type_statement_token10] = ACTIONS(8279), + [aux_sym_def_type_statement_token11] = ACTIONS(8279), + [aux_sym_def_type_statement_token12] = ACTIONS(8279), + [aux_sym_def_type_statement_token13] = ACTIONS(8279), + [aux_sym_def_type_statement_token14] = ACTIONS(8279), + [aux_sym_call_statement_token1] = ACTIONS(8279), + [sym__ambiguous_call_statement] = ACTIONS(8279), + [aux_sym_addressof_expression_token1] = ACTIONS(8279), + [aux_sym_type_of_expression_token1] = ACTIONS(8279), + [aux_sym_unary_expression_token1] = ACTIONS(8279), + [sym_string_literal] = ACTIONS(8281), + [sym_number_literal] = ACTIONS(8281), + [aux_sym_boolean_literal_token1] = ACTIONS(8279), + [aux_sym_boolean_literal_token2] = ACTIONS(8279), + [sym_nothing_literal] = ACTIONS(8279), + [sym_null_literal] = ACTIONS(8279), + [sym_empty_literal] = ACTIONS(8279), + [sym_date_literal] = ACTIONS(8281), + [anon_sym_POUND] = ACTIONS(8279), + }, + [STATE(5183)] = { + [sym_do_condition] = STATE(7038), + [sym_identifier] = ACTIONS(8283), + [sym_newline] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8283), + [aux_sym_frm_property_statement_token1] = ACTIONS(8283), + [anon_sym_DOT] = ACTIONS(8283), + [anon_sym_BANG] = ACTIONS(8285), + [aux_sym__attribute_identifier_token1] = ACTIONS(8283), + [aux_sym_option_statement_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8283), + [aux_sym_preprocessor_const_token1] = ACTIONS(8283), + [sym_static_modifier] = ACTIONS(8283), + [sym__dim_keyword] = ACTIONS(8283), + [sym__redim_keyword] = ACTIONS(8283), + [aux_sym_get_accessor_token1] = ACTIONS(8283), + [aux_sym_set_accessor_token1] = ACTIONS(8283), + [aux_sym_const_declaration_token1] = ACTIONS(8283), + [anon_sym_LPAREN] = ACTIONS(8285), + [aux_sym_as_type_clause_token2] = ACTIONS(8283), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8283), + [aux_sym_visibility_token1] = ACTIONS(8283), + [aux_sym_visibility_token2] = ACTIONS(8283), + [aux_sym_elseif_fragment_token1] = ACTIONS(8283), + [aux_sym_else_fragment_token1] = ACTIONS(8283), + [aux_sym_select_statement_token1] = ACTIONS(8283), + [aux_sym__for_header_token1] = ACTIONS(8283), + [aux_sym_do_statement_token1] = ACTIONS(8283), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8283), + [aux_sym_with_statement_token1] = ACTIONS(8283), + [aux_sym_exit_statement_token1] = ACTIONS(8283), + [sym_end_statement] = ACTIONS(8285), + [aux_sym_on_goto_statement_token1] = ACTIONS(8283), + [aux_sym_on_goto_statement_token2] = ACTIONS(8283), + [aux_sym_on_error_statement_token2] = ACTIONS(8283), + [sym__ambiguous_redim_statement] = ACTIONS(8285), + [aux_sym_erase_statement_token1] = ACTIONS(8283), + [aux_sym_open_statement_token1] = ACTIONS(8283), + [aux_sym_file_mode_token2] = ACTIONS(8283), + [aux_sym_file_access_token2] = ACTIONS(8283), + [aux_sym_file_lock_token2] = ACTIONS(8283), + [aux_sym_print_statement_token1] = ACTIONS(8283), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_DASH] = ACTIONS(8283), + [anon_sym_QMARK] = ACTIONS(8285), + [aux_sym_close_statement_token1] = ACTIONS(8283), + [aux_sym_put_statement_token1] = ACTIONS(8283), + [aux_sym_unlock_statement_token1] = ACTIONS(8283), + [aux_sym_seek_statement_token1] = ACTIONS(8283), + [sym_reset_statement] = ACTIONS(8283), + [aux_sym_raise_event_statement_token1] = ACTIONS(8283), + [sym_stop_statement] = ACTIONS(8283), + [sym_beep_statement] = ACTIONS(8283), + [aux_sym_unload_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token2] = ACTIONS(8283), + [aux_sym_def_type_statement_token3] = ACTIONS(8283), + [aux_sym_def_type_statement_token4] = ACTIONS(8283), + [aux_sym_def_type_statement_token5] = ACTIONS(8283), + [aux_sym_def_type_statement_token6] = ACTIONS(8283), + [aux_sym_def_type_statement_token7] = ACTIONS(8283), + [aux_sym_def_type_statement_token8] = ACTIONS(8283), + [aux_sym_def_type_statement_token9] = ACTIONS(8283), + [aux_sym_def_type_statement_token10] = ACTIONS(8283), + [aux_sym_def_type_statement_token11] = ACTIONS(8283), + [aux_sym_def_type_statement_token12] = ACTIONS(8283), + [aux_sym_def_type_statement_token13] = ACTIONS(8283), + [aux_sym_def_type_statement_token14] = ACTIONS(8283), + [aux_sym_call_statement_token1] = ACTIONS(8283), + [sym__ambiguous_call_statement] = ACTIONS(8283), + [aux_sym_addressof_expression_token1] = ACTIONS(8283), + [aux_sym_type_of_expression_token1] = ACTIONS(8283), + [aux_sym_unary_expression_token1] = ACTIONS(8283), + [sym_string_literal] = ACTIONS(8285), + [sym_number_literal] = ACTIONS(8285), + [aux_sym_boolean_literal_token1] = ACTIONS(8283), + [aux_sym_boolean_literal_token2] = ACTIONS(8283), + [sym_nothing_literal] = ACTIONS(8283), + [sym_null_literal] = ACTIONS(8283), + [sym_empty_literal] = ACTIONS(8283), + [sym_date_literal] = ACTIONS(8285), + [anon_sym_POUND] = ACTIONS(8283), + }, + [STATE(5184)] = { + [sym_do_condition] = STATE(7046), + [sym_identifier] = ACTIONS(8294), + [sym_newline] = ACTIONS(8296), + [anon_sym_COLON] = ACTIONS(8296), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8294), + [aux_sym_frm_property_statement_token1] = ACTIONS(8294), + [anon_sym_DOT] = ACTIONS(8294), + [anon_sym_BANG] = ACTIONS(8296), + [aux_sym__attribute_identifier_token1] = ACTIONS(8294), + [aux_sym_option_statement_token3] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8294), + [aux_sym_preprocessor_const_token1] = ACTIONS(8294), + [sym_static_modifier] = ACTIONS(8294), + [sym__dim_keyword] = ACTIONS(8294), + [sym__redim_keyword] = ACTIONS(8294), + [aux_sym_get_accessor_token1] = ACTIONS(8294), + [aux_sym_set_accessor_token1] = ACTIONS(8294), + [aux_sym_const_declaration_token1] = ACTIONS(8294), + [anon_sym_LPAREN] = ACTIONS(8296), + [aux_sym_as_type_clause_token2] = ACTIONS(8294), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8294), + [aux_sym_visibility_token1] = ACTIONS(8294), + [aux_sym_visibility_token2] = ACTIONS(8294), + [aux_sym_elseif_fragment_token1] = ACTIONS(8294), + [aux_sym_else_fragment_token1] = ACTIONS(8294), + [aux_sym_select_statement_token1] = ACTIONS(8294), + [aux_sym__for_header_token1] = ACTIONS(8294), + [aux_sym_do_statement_token1] = ACTIONS(8294), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8294), + [aux_sym_with_statement_token1] = ACTIONS(8294), + [aux_sym_exit_statement_token1] = ACTIONS(8294), + [sym_end_statement] = ACTIONS(8296), + [aux_sym_on_goto_statement_token1] = ACTIONS(8294), + [aux_sym_on_goto_statement_token2] = ACTIONS(8294), + [aux_sym_on_error_statement_token2] = ACTIONS(8294), + [sym__ambiguous_redim_statement] = ACTIONS(8296), + [aux_sym_erase_statement_token1] = ACTIONS(8294), + [aux_sym_open_statement_token1] = ACTIONS(8294), + [aux_sym_file_mode_token2] = ACTIONS(8294), + [aux_sym_file_access_token2] = ACTIONS(8294), + [aux_sym_file_lock_token2] = ACTIONS(8294), + [aux_sym_print_statement_token1] = ACTIONS(8294), + [anon_sym_PLUS] = ACTIONS(8296), + [anon_sym_DASH] = ACTIONS(8294), + [anon_sym_QMARK] = ACTIONS(8296), + [aux_sym_close_statement_token1] = ACTIONS(8294), + [aux_sym_put_statement_token1] = ACTIONS(8294), + [aux_sym_unlock_statement_token1] = ACTIONS(8294), + [aux_sym_seek_statement_token1] = ACTIONS(8294), + [sym_reset_statement] = ACTIONS(8294), + [aux_sym_raise_event_statement_token1] = ACTIONS(8294), + [sym_stop_statement] = ACTIONS(8294), + [sym_beep_statement] = ACTIONS(8294), + [aux_sym_unload_statement_token1] = ACTIONS(8294), + [aux_sym_def_type_statement_token1] = ACTIONS(8294), + [aux_sym_def_type_statement_token2] = ACTIONS(8294), + [aux_sym_def_type_statement_token3] = ACTIONS(8294), + [aux_sym_def_type_statement_token4] = ACTIONS(8294), + [aux_sym_def_type_statement_token5] = ACTIONS(8294), + [aux_sym_def_type_statement_token6] = ACTIONS(8294), + [aux_sym_def_type_statement_token7] = ACTIONS(8294), + [aux_sym_def_type_statement_token8] = ACTIONS(8294), + [aux_sym_def_type_statement_token9] = ACTIONS(8294), + [aux_sym_def_type_statement_token10] = ACTIONS(8294), + [aux_sym_def_type_statement_token11] = ACTIONS(8294), + [aux_sym_def_type_statement_token12] = ACTIONS(8294), + [aux_sym_def_type_statement_token13] = ACTIONS(8294), + [aux_sym_def_type_statement_token14] = ACTIONS(8294), + [aux_sym_call_statement_token1] = ACTIONS(8294), + [sym__ambiguous_call_statement] = ACTIONS(8294), + [aux_sym_addressof_expression_token1] = ACTIONS(8294), + [aux_sym_type_of_expression_token1] = ACTIONS(8294), + [aux_sym_unary_expression_token1] = ACTIONS(8294), + [sym_string_literal] = ACTIONS(8296), + [sym_number_literal] = ACTIONS(8296), + [aux_sym_boolean_literal_token1] = ACTIONS(8294), + [aux_sym_boolean_literal_token2] = ACTIONS(8294), + [sym_nothing_literal] = ACTIONS(8294), + [sym_null_literal] = ACTIONS(8294), + [sym_empty_literal] = ACTIONS(8294), + [sym_date_literal] = ACTIONS(8296), + [anon_sym_POUND] = ACTIONS(8294), + }, + [STATE(5185)] = { + [sym_do_condition] = STATE(7048), + [sym_identifier] = ACTIONS(8298), + [sym_newline] = ACTIONS(8300), + [anon_sym_COLON] = ACTIONS(8300), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8298), + [aux_sym_frm_property_statement_token1] = ACTIONS(8298), + [anon_sym_DOT] = ACTIONS(8298), + [anon_sym_BANG] = ACTIONS(8300), + [aux_sym__attribute_identifier_token1] = ACTIONS(8298), + [aux_sym_option_statement_token3] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8298), + [aux_sym_preprocessor_const_token1] = ACTIONS(8298), + [sym_static_modifier] = ACTIONS(8298), + [sym__dim_keyword] = ACTIONS(8298), + [sym__redim_keyword] = ACTIONS(8298), + [aux_sym_get_accessor_token1] = ACTIONS(8298), + [aux_sym_set_accessor_token1] = ACTIONS(8298), + [aux_sym_const_declaration_token1] = ACTIONS(8298), + [anon_sym_LPAREN] = ACTIONS(8300), + [aux_sym_as_type_clause_token2] = ACTIONS(8298), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8298), + [aux_sym_visibility_token1] = ACTIONS(8298), + [aux_sym_visibility_token2] = ACTIONS(8298), + [aux_sym_elseif_fragment_token1] = ACTIONS(8298), + [aux_sym_else_fragment_token1] = ACTIONS(8298), + [aux_sym_select_statement_token1] = ACTIONS(8298), + [aux_sym__for_header_token1] = ACTIONS(8298), + [aux_sym_do_statement_token1] = ACTIONS(8298), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8298), + [aux_sym_with_statement_token1] = ACTIONS(8298), + [aux_sym_exit_statement_token1] = ACTIONS(8298), + [sym_end_statement] = ACTIONS(8300), + [aux_sym_on_goto_statement_token1] = ACTIONS(8298), + [aux_sym_on_goto_statement_token2] = ACTIONS(8298), + [aux_sym_on_error_statement_token2] = ACTIONS(8298), + [sym__ambiguous_redim_statement] = ACTIONS(8300), + [aux_sym_erase_statement_token1] = ACTIONS(8298), + [aux_sym_open_statement_token1] = ACTIONS(8298), + [aux_sym_file_mode_token2] = ACTIONS(8298), + [aux_sym_file_access_token2] = ACTIONS(8298), + [aux_sym_file_lock_token2] = ACTIONS(8298), + [aux_sym_print_statement_token1] = ACTIONS(8298), + [anon_sym_PLUS] = ACTIONS(8300), + [anon_sym_DASH] = ACTIONS(8298), + [anon_sym_QMARK] = ACTIONS(8300), + [aux_sym_close_statement_token1] = ACTIONS(8298), + [aux_sym_put_statement_token1] = ACTIONS(8298), + [aux_sym_unlock_statement_token1] = ACTIONS(8298), + [aux_sym_seek_statement_token1] = ACTIONS(8298), + [sym_reset_statement] = ACTIONS(8298), + [aux_sym_raise_event_statement_token1] = ACTIONS(8298), + [sym_stop_statement] = ACTIONS(8298), + [sym_beep_statement] = ACTIONS(8298), + [aux_sym_unload_statement_token1] = ACTIONS(8298), + [aux_sym_def_type_statement_token1] = ACTIONS(8298), + [aux_sym_def_type_statement_token2] = ACTIONS(8298), + [aux_sym_def_type_statement_token3] = ACTIONS(8298), + [aux_sym_def_type_statement_token4] = ACTIONS(8298), + [aux_sym_def_type_statement_token5] = ACTIONS(8298), + [aux_sym_def_type_statement_token6] = ACTIONS(8298), + [aux_sym_def_type_statement_token7] = ACTIONS(8298), + [aux_sym_def_type_statement_token8] = ACTIONS(8298), + [aux_sym_def_type_statement_token9] = ACTIONS(8298), + [aux_sym_def_type_statement_token10] = ACTIONS(8298), + [aux_sym_def_type_statement_token11] = ACTIONS(8298), + [aux_sym_def_type_statement_token12] = ACTIONS(8298), + [aux_sym_def_type_statement_token13] = ACTIONS(8298), + [aux_sym_def_type_statement_token14] = ACTIONS(8298), + [aux_sym_call_statement_token1] = ACTIONS(8298), + [sym__ambiguous_call_statement] = ACTIONS(8298), + [aux_sym_addressof_expression_token1] = ACTIONS(8298), + [aux_sym_type_of_expression_token1] = ACTIONS(8298), + [aux_sym_unary_expression_token1] = ACTIONS(8298), + [sym_string_literal] = ACTIONS(8300), + [sym_number_literal] = ACTIONS(8300), + [aux_sym_boolean_literal_token1] = ACTIONS(8298), + [aux_sym_boolean_literal_token2] = ACTIONS(8298), + [sym_nothing_literal] = ACTIONS(8298), + [sym_null_literal] = ACTIONS(8298), + [sym_empty_literal] = ACTIONS(8298), + [sym_date_literal] = ACTIONS(8300), + [anon_sym_POUND] = ACTIONS(8298), + }, + [STATE(5186)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5209), + [sym_identifier] = ACTIONS(4166), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5162), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4164), + [aux_sym_as_type_clause_token2] = ACTIONS(4166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4166), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_while_statement_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4166), + [aux_sym_type_of_expression_token1] = ACTIONS(4166), + [aux_sym_unary_expression_token1] = ACTIONS(4166), + [sym_string_literal] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4164), + [aux_sym_boolean_literal_token1] = ACTIONS(4166), + [aux_sym_boolean_literal_token2] = ACTIONS(4166), + [sym_nothing_literal] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4166), + [sym_empty_literal] = ACTIONS(4166), + [sym_date_literal] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4166), + }, + [STATE(5187)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5320), + [sym_identifier] = ACTIONS(4166), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5162), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4164), + [aux_sym_as_type_clause_token2] = ACTIONS(4166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4166), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_while_statement_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4166), + [aux_sym_type_of_expression_token1] = ACTIONS(4166), + [aux_sym_unary_expression_token1] = ACTIONS(4166), + [sym_string_literal] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4164), + [aux_sym_boolean_literal_token1] = ACTIONS(4166), + [aux_sym_boolean_literal_token2] = ACTIONS(4166), + [sym_nothing_literal] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4166), + [sym_empty_literal] = ACTIONS(4166), + [sym_date_literal] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4166), + }, + [STATE(5188)] = { + [sym_do_condition] = STATE(6418), + [sym_identifier] = ACTIONS(8471), + [sym_newline] = ACTIONS(8473), + [anon_sym_COLON] = ACTIONS(8473), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8471), + [aux_sym_frm_property_statement_token1] = ACTIONS(8471), + [anon_sym_DOT] = ACTIONS(8471), + [anon_sym_BANG] = ACTIONS(8473), + [aux_sym__attribute_identifier_token1] = ACTIONS(8471), + [aux_sym_option_statement_token3] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8471), + [aux_sym_preprocessor_const_token1] = ACTIONS(8471), + [sym_static_modifier] = ACTIONS(8471), + [sym__dim_keyword] = ACTIONS(8471), + [sym__redim_keyword] = ACTIONS(8471), + [aux_sym_get_accessor_token1] = ACTIONS(8471), + [aux_sym_set_accessor_token1] = ACTIONS(8471), + [aux_sym_const_declaration_token1] = ACTIONS(8471), + [anon_sym_LPAREN] = ACTIONS(8473), + [aux_sym_as_type_clause_token2] = ACTIONS(8471), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8471), + [aux_sym_visibility_token1] = ACTIONS(8471), + [aux_sym_visibility_token2] = ACTIONS(8471), + [aux_sym_elseif_fragment_token1] = ACTIONS(8471), + [aux_sym_else_fragment_token1] = ACTIONS(8471), + [aux_sym_select_statement_token1] = ACTIONS(8471), + [aux_sym__for_header_token1] = ACTIONS(8471), + [aux_sym_do_statement_token1] = ACTIONS(8471), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8471), + [aux_sym_exit_statement_token1] = ACTIONS(8471), + [sym_end_statement] = ACTIONS(8473), + [aux_sym_on_goto_statement_token1] = ACTIONS(8471), + [aux_sym_on_goto_statement_token2] = ACTIONS(8471), + [aux_sym_on_error_statement_token2] = ACTIONS(8471), + [sym__ambiguous_redim_statement] = ACTIONS(8473), + [aux_sym_erase_statement_token1] = ACTIONS(8471), + [aux_sym_open_statement_token1] = ACTIONS(8471), + [aux_sym_file_mode_token2] = ACTIONS(8471), + [aux_sym_file_access_token2] = ACTIONS(8471), + [aux_sym_file_lock_token2] = ACTIONS(8471), + [aux_sym_print_statement_token1] = ACTIONS(8471), + [anon_sym_PLUS] = ACTIONS(8473), + [anon_sym_DASH] = ACTIONS(8471), + [anon_sym_QMARK] = ACTIONS(8473), + [aux_sym_close_statement_token1] = ACTIONS(8471), + [aux_sym_put_statement_token1] = ACTIONS(8471), + [aux_sym_unlock_statement_token1] = ACTIONS(8471), + [aux_sym_seek_statement_token1] = ACTIONS(8471), + [sym_reset_statement] = ACTIONS(8471), + [aux_sym_raise_event_statement_token1] = ACTIONS(8471), + [sym_stop_statement] = ACTIONS(8471), + [sym_beep_statement] = ACTIONS(8471), + [aux_sym_unload_statement_token1] = ACTIONS(8471), + [aux_sym_def_type_statement_token1] = ACTIONS(8471), + [aux_sym_def_type_statement_token2] = ACTIONS(8471), + [aux_sym_def_type_statement_token3] = ACTIONS(8471), + [aux_sym_def_type_statement_token4] = ACTIONS(8471), + [aux_sym_def_type_statement_token5] = ACTIONS(8471), + [aux_sym_def_type_statement_token6] = ACTIONS(8471), + [aux_sym_def_type_statement_token7] = ACTIONS(8471), + [aux_sym_def_type_statement_token8] = ACTIONS(8471), + [aux_sym_def_type_statement_token9] = ACTIONS(8471), + [aux_sym_def_type_statement_token10] = ACTIONS(8471), + [aux_sym_def_type_statement_token11] = ACTIONS(8471), + [aux_sym_def_type_statement_token12] = ACTIONS(8471), + [aux_sym_def_type_statement_token13] = ACTIONS(8471), + [aux_sym_def_type_statement_token14] = ACTIONS(8471), + [aux_sym_call_statement_token1] = ACTIONS(8471), + [sym__ambiguous_call_statement] = ACTIONS(8471), + [aux_sym_addressof_expression_token1] = ACTIONS(8471), + [aux_sym_type_of_expression_token1] = ACTIONS(8471), + [aux_sym_unary_expression_token1] = ACTIONS(8471), + [sym_string_literal] = ACTIONS(8473), + [sym_number_literal] = ACTIONS(8473), + [aux_sym_boolean_literal_token1] = ACTIONS(8471), + [aux_sym_boolean_literal_token2] = ACTIONS(8471), + [sym_nothing_literal] = ACTIONS(8471), + [sym_null_literal] = ACTIONS(8471), + [sym_empty_literal] = ACTIONS(8471), + [sym_date_literal] = ACTIONS(8473), + [anon_sym_POUND] = ACTIONS(8471), + }, + [STATE(5189)] = { + [sym_do_condition] = STATE(6419), + [sym_identifier] = ACTIONS(8479), + [sym_newline] = ACTIONS(8481), + [anon_sym_COLON] = ACTIONS(8481), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8479), + [aux_sym_frm_property_statement_token1] = ACTIONS(8479), + [anon_sym_DOT] = ACTIONS(8479), + [anon_sym_BANG] = ACTIONS(8481), + [aux_sym__attribute_identifier_token1] = ACTIONS(8479), + [aux_sym_option_statement_token3] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8479), + [aux_sym_preprocessor_const_token1] = ACTIONS(8479), + [sym_static_modifier] = ACTIONS(8479), + [sym__dim_keyword] = ACTIONS(8479), + [sym__redim_keyword] = ACTIONS(8479), + [aux_sym_get_accessor_token1] = ACTIONS(8479), + [aux_sym_set_accessor_token1] = ACTIONS(8479), + [aux_sym_const_declaration_token1] = ACTIONS(8479), + [anon_sym_LPAREN] = ACTIONS(8481), + [aux_sym_as_type_clause_token2] = ACTIONS(8479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8479), + [aux_sym_visibility_token1] = ACTIONS(8479), + [aux_sym_visibility_token2] = ACTIONS(8479), + [aux_sym_elseif_fragment_token1] = ACTIONS(8479), + [aux_sym_else_fragment_token1] = ACTIONS(8479), + [aux_sym_select_statement_token1] = ACTIONS(8479), + [aux_sym__for_header_token1] = ACTIONS(8479), + [aux_sym_do_statement_token1] = ACTIONS(8479), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8479), + [aux_sym_exit_statement_token1] = ACTIONS(8479), + [sym_end_statement] = ACTIONS(8481), + [aux_sym_on_goto_statement_token1] = ACTIONS(8479), + [aux_sym_on_goto_statement_token2] = ACTIONS(8479), + [aux_sym_on_error_statement_token2] = ACTIONS(8479), + [sym__ambiguous_redim_statement] = ACTIONS(8481), + [aux_sym_erase_statement_token1] = ACTIONS(8479), + [aux_sym_open_statement_token1] = ACTIONS(8479), + [aux_sym_file_mode_token2] = ACTIONS(8479), + [aux_sym_file_access_token2] = ACTIONS(8479), + [aux_sym_file_lock_token2] = ACTIONS(8479), + [aux_sym_print_statement_token1] = ACTIONS(8479), + [anon_sym_PLUS] = ACTIONS(8481), + [anon_sym_DASH] = ACTIONS(8479), + [anon_sym_QMARK] = ACTIONS(8481), + [aux_sym_close_statement_token1] = ACTIONS(8479), + [aux_sym_put_statement_token1] = ACTIONS(8479), + [aux_sym_unlock_statement_token1] = ACTIONS(8479), + [aux_sym_seek_statement_token1] = ACTIONS(8479), + [sym_reset_statement] = ACTIONS(8479), + [aux_sym_raise_event_statement_token1] = ACTIONS(8479), + [sym_stop_statement] = ACTIONS(8479), + [sym_beep_statement] = ACTIONS(8479), + [aux_sym_unload_statement_token1] = ACTIONS(8479), + [aux_sym_def_type_statement_token1] = ACTIONS(8479), + [aux_sym_def_type_statement_token2] = ACTIONS(8479), + [aux_sym_def_type_statement_token3] = ACTIONS(8479), + [aux_sym_def_type_statement_token4] = ACTIONS(8479), + [aux_sym_def_type_statement_token5] = ACTIONS(8479), + [aux_sym_def_type_statement_token6] = ACTIONS(8479), + [aux_sym_def_type_statement_token7] = ACTIONS(8479), + [aux_sym_def_type_statement_token8] = ACTIONS(8479), + [aux_sym_def_type_statement_token9] = ACTIONS(8479), + [aux_sym_def_type_statement_token10] = ACTIONS(8479), + [aux_sym_def_type_statement_token11] = ACTIONS(8479), + [aux_sym_def_type_statement_token12] = ACTIONS(8479), + [aux_sym_def_type_statement_token13] = ACTIONS(8479), + [aux_sym_def_type_statement_token14] = ACTIONS(8479), + [aux_sym_call_statement_token1] = ACTIONS(8479), + [sym__ambiguous_call_statement] = ACTIONS(8479), + [aux_sym_addressof_expression_token1] = ACTIONS(8479), + [aux_sym_type_of_expression_token1] = ACTIONS(8479), + [aux_sym_unary_expression_token1] = ACTIONS(8479), + [sym_string_literal] = ACTIONS(8481), + [sym_number_literal] = ACTIONS(8481), + [aux_sym_boolean_literal_token1] = ACTIONS(8479), + [aux_sym_boolean_literal_token2] = ACTIONS(8479), + [sym_nothing_literal] = ACTIONS(8479), + [sym_null_literal] = ACTIONS(8479), + [sym_empty_literal] = ACTIONS(8479), + [sym_date_literal] = ACTIONS(8481), + [anon_sym_POUND] = ACTIONS(8479), + }, + [STATE(5190)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5361), + [sym_identifier] = ACTIONS(8483), + [sym_newline] = ACTIONS(8485), + [anon_sym_COLON] = ACTIONS(8485), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8483), + [aux_sym_frm_property_statement_token1] = ACTIONS(8483), + [anon_sym_DOT] = ACTIONS(8483), + [anon_sym_BANG] = ACTIONS(8485), + [aux_sym__attribute_identifier_token1] = ACTIONS(8483), + [aux_sym_option_statement_token3] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8483), + [aux_sym_preprocessor_const_token1] = ACTIONS(8483), + [sym_static_modifier] = ACTIONS(8483), + [sym__dim_keyword] = ACTIONS(8483), + [sym__redim_keyword] = ACTIONS(8483), + [aux_sym_get_accessor_token1] = ACTIONS(8483), + [aux_sym_set_accessor_token1] = ACTIONS(8483), + [anon_sym_COMMA] = ACTIONS(5154), + [aux_sym_const_declaration_token1] = ACTIONS(8483), + [anon_sym_LPAREN] = ACTIONS(8485), + [aux_sym_as_type_clause_token2] = ACTIONS(8483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8483), + [aux_sym_visibility_token1] = ACTIONS(8483), + [aux_sym_visibility_token2] = ACTIONS(8483), + [aux_sym_elseif_fragment_token1] = ACTIONS(8483), + [aux_sym_else_fragment_token1] = ACTIONS(8483), + [aux_sym_select_statement_token1] = ACTIONS(8483), + [aux_sym__for_header_token1] = ACTIONS(8483), + [aux_sym_do_statement_token1] = ACTIONS(8483), + [aux_sym_do_condition_token1] = ACTIONS(8483), + [aux_sym_with_statement_token1] = ACTIONS(8483), + [aux_sym_exit_statement_token1] = ACTIONS(8483), + [sym_end_statement] = ACTIONS(8485), + [aux_sym_on_goto_statement_token1] = ACTIONS(8483), + [aux_sym_on_goto_statement_token2] = ACTIONS(8483), + [aux_sym_on_error_statement_token2] = ACTIONS(8483), + [sym__ambiguous_redim_statement] = ACTIONS(8485), + [aux_sym_erase_statement_token1] = ACTIONS(8483), + [aux_sym_open_statement_token1] = ACTIONS(8483), + [aux_sym_file_mode_token2] = ACTIONS(8483), + [aux_sym_file_access_token2] = ACTIONS(8483), + [aux_sym_file_lock_token2] = ACTIONS(8483), + [aux_sym_print_statement_token1] = ACTIONS(8483), + [anon_sym_PLUS] = ACTIONS(8485), + [anon_sym_DASH] = ACTIONS(8483), + [anon_sym_QMARK] = ACTIONS(8485), + [aux_sym_close_statement_token1] = ACTIONS(8483), + [aux_sym_put_statement_token1] = ACTIONS(8483), + [aux_sym_unlock_statement_token1] = ACTIONS(8483), + [aux_sym_seek_statement_token1] = ACTIONS(8483), + [sym_reset_statement] = ACTIONS(8483), + [aux_sym_raise_event_statement_token1] = ACTIONS(8483), + [sym_stop_statement] = ACTIONS(8483), + [sym_beep_statement] = ACTIONS(8483), + [aux_sym_unload_statement_token1] = ACTIONS(8483), + [aux_sym_def_type_statement_token1] = ACTIONS(8483), + [aux_sym_def_type_statement_token2] = ACTIONS(8483), + [aux_sym_def_type_statement_token3] = ACTIONS(8483), + [aux_sym_def_type_statement_token4] = ACTIONS(8483), + [aux_sym_def_type_statement_token5] = ACTIONS(8483), + [aux_sym_def_type_statement_token6] = ACTIONS(8483), + [aux_sym_def_type_statement_token7] = ACTIONS(8483), + [aux_sym_def_type_statement_token8] = ACTIONS(8483), + [aux_sym_def_type_statement_token9] = ACTIONS(8483), + [aux_sym_def_type_statement_token10] = ACTIONS(8483), + [aux_sym_def_type_statement_token11] = ACTIONS(8483), + [aux_sym_def_type_statement_token12] = ACTIONS(8483), + [aux_sym_def_type_statement_token13] = ACTIONS(8483), + [aux_sym_def_type_statement_token14] = ACTIONS(8483), + [aux_sym_call_statement_token1] = ACTIONS(8483), + [sym__ambiguous_call_statement] = ACTIONS(8483), + [aux_sym_addressof_expression_token1] = ACTIONS(8483), + [aux_sym_type_of_expression_token1] = ACTIONS(8483), + [aux_sym_unary_expression_token1] = ACTIONS(8483), + [sym_string_literal] = ACTIONS(8485), + [sym_number_literal] = ACTIONS(8485), + [aux_sym_boolean_literal_token1] = ACTIONS(8483), + [aux_sym_boolean_literal_token2] = ACTIONS(8483), + [sym_nothing_literal] = ACTIONS(8483), + [sym_null_literal] = ACTIONS(8483), + [sym_empty_literal] = ACTIONS(8483), + [sym_date_literal] = ACTIONS(8485), + [anon_sym_POUND] = ACTIONS(8483), + }, + [STATE(5191)] = { + [sym_do_condition] = STATE(7078), + [sym_identifier] = ACTIONS(8374), + [sym_newline] = ACTIONS(8376), + [anon_sym_COLON] = ACTIONS(8376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8374), + [aux_sym_frm_property_statement_token1] = ACTIONS(8374), + [anon_sym_DOT] = ACTIONS(8374), + [anon_sym_BANG] = ACTIONS(8376), + [aux_sym__attribute_identifier_token1] = ACTIONS(8374), + [aux_sym_option_statement_token3] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8374), + [aux_sym_preprocessor_const_token1] = ACTIONS(8374), + [sym_static_modifier] = ACTIONS(8374), + [sym__dim_keyword] = ACTIONS(8374), + [sym__redim_keyword] = ACTIONS(8374), + [aux_sym_get_accessor_token1] = ACTIONS(8374), + [aux_sym_set_accessor_token1] = ACTIONS(8374), + [aux_sym_const_declaration_token1] = ACTIONS(8374), + [anon_sym_LPAREN] = ACTIONS(8376), + [aux_sym_as_type_clause_token2] = ACTIONS(8374), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8374), + [aux_sym_visibility_token1] = ACTIONS(8374), + [aux_sym_visibility_token2] = ACTIONS(8374), + [aux_sym_elseif_fragment_token1] = ACTIONS(8374), + [aux_sym_else_fragment_token1] = ACTIONS(8374), + [aux_sym_select_statement_token1] = ACTIONS(8374), + [aux_sym__for_header_token1] = ACTIONS(8374), + [aux_sym_do_statement_token1] = ACTIONS(8374), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8374), + [aux_sym_with_statement_token1] = ACTIONS(8374), + [aux_sym_exit_statement_token1] = ACTIONS(8374), + [sym_end_statement] = ACTIONS(8376), + [aux_sym_on_goto_statement_token1] = ACTIONS(8374), + [aux_sym_on_goto_statement_token2] = ACTIONS(8374), + [aux_sym_on_error_statement_token2] = ACTIONS(8374), + [sym__ambiguous_redim_statement] = ACTIONS(8376), + [aux_sym_erase_statement_token1] = ACTIONS(8374), + [aux_sym_open_statement_token1] = ACTIONS(8374), + [aux_sym_file_mode_token2] = ACTIONS(8374), + [aux_sym_file_access_token2] = ACTIONS(8374), + [aux_sym_file_lock_token2] = ACTIONS(8374), + [aux_sym_print_statement_token1] = ACTIONS(8374), + [anon_sym_PLUS] = ACTIONS(8376), + [anon_sym_DASH] = ACTIONS(8374), + [anon_sym_QMARK] = ACTIONS(8376), + [aux_sym_close_statement_token1] = ACTIONS(8374), + [aux_sym_put_statement_token1] = ACTIONS(8374), + [aux_sym_unlock_statement_token1] = ACTIONS(8374), + [aux_sym_seek_statement_token1] = ACTIONS(8374), + [sym_reset_statement] = ACTIONS(8374), + [aux_sym_raise_event_statement_token1] = ACTIONS(8374), + [sym_stop_statement] = ACTIONS(8374), + [sym_beep_statement] = ACTIONS(8374), + [aux_sym_unload_statement_token1] = ACTIONS(8374), + [aux_sym_def_type_statement_token1] = ACTIONS(8374), + [aux_sym_def_type_statement_token2] = ACTIONS(8374), + [aux_sym_def_type_statement_token3] = ACTIONS(8374), + [aux_sym_def_type_statement_token4] = ACTIONS(8374), + [aux_sym_def_type_statement_token5] = ACTIONS(8374), + [aux_sym_def_type_statement_token6] = ACTIONS(8374), + [aux_sym_def_type_statement_token7] = ACTIONS(8374), + [aux_sym_def_type_statement_token8] = ACTIONS(8374), + [aux_sym_def_type_statement_token9] = ACTIONS(8374), + [aux_sym_def_type_statement_token10] = ACTIONS(8374), + [aux_sym_def_type_statement_token11] = ACTIONS(8374), + [aux_sym_def_type_statement_token12] = ACTIONS(8374), + [aux_sym_def_type_statement_token13] = ACTIONS(8374), + [aux_sym_def_type_statement_token14] = ACTIONS(8374), + [aux_sym_call_statement_token1] = ACTIONS(8374), + [sym__ambiguous_call_statement] = ACTIONS(8374), + [aux_sym_addressof_expression_token1] = ACTIONS(8374), + [aux_sym_type_of_expression_token1] = ACTIONS(8374), + [aux_sym_unary_expression_token1] = ACTIONS(8374), + [sym_string_literal] = ACTIONS(8376), + [sym_number_literal] = ACTIONS(8376), + [aux_sym_boolean_literal_token1] = ACTIONS(8374), + [aux_sym_boolean_literal_token2] = ACTIONS(8374), + [sym_nothing_literal] = ACTIONS(8374), + [sym_null_literal] = ACTIONS(8374), + [sym_empty_literal] = ACTIONS(8374), + [sym_date_literal] = ACTIONS(8376), + [anon_sym_POUND] = ACTIONS(8374), + }, + [STATE(5192)] = { + [sym_do_condition] = STATE(7081), + [sym_identifier] = ACTIONS(8378), + [sym_newline] = ACTIONS(8380), + [anon_sym_COLON] = ACTIONS(8380), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8378), + [aux_sym_frm_property_statement_token1] = ACTIONS(8378), + [anon_sym_DOT] = ACTIONS(8378), + [anon_sym_BANG] = ACTIONS(8380), + [aux_sym__attribute_identifier_token1] = ACTIONS(8378), + [aux_sym_option_statement_token3] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8378), + [aux_sym_preprocessor_const_token1] = ACTIONS(8378), + [sym_static_modifier] = ACTIONS(8378), + [sym__dim_keyword] = ACTIONS(8378), + [sym__redim_keyword] = ACTIONS(8378), + [aux_sym_get_accessor_token1] = ACTIONS(8378), + [aux_sym_set_accessor_token1] = ACTIONS(8378), + [aux_sym_const_declaration_token1] = ACTIONS(8378), + [anon_sym_LPAREN] = ACTIONS(8380), + [aux_sym_as_type_clause_token2] = ACTIONS(8378), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8378), + [aux_sym_visibility_token1] = ACTIONS(8378), + [aux_sym_visibility_token2] = ACTIONS(8378), + [aux_sym_elseif_fragment_token1] = ACTIONS(8378), + [aux_sym_else_fragment_token1] = ACTIONS(8378), + [aux_sym_select_statement_token1] = ACTIONS(8378), + [aux_sym__for_header_token1] = ACTIONS(8378), + [aux_sym_do_statement_token1] = ACTIONS(8378), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8378), + [aux_sym_with_statement_token1] = ACTIONS(8378), + [aux_sym_exit_statement_token1] = ACTIONS(8378), + [sym_end_statement] = ACTIONS(8380), + [aux_sym_on_goto_statement_token1] = ACTIONS(8378), + [aux_sym_on_goto_statement_token2] = ACTIONS(8378), + [aux_sym_on_error_statement_token2] = ACTIONS(8378), + [sym__ambiguous_redim_statement] = ACTIONS(8380), + [aux_sym_erase_statement_token1] = ACTIONS(8378), + [aux_sym_open_statement_token1] = ACTIONS(8378), + [aux_sym_file_mode_token2] = ACTIONS(8378), + [aux_sym_file_access_token2] = ACTIONS(8378), + [aux_sym_file_lock_token2] = ACTIONS(8378), + [aux_sym_print_statement_token1] = ACTIONS(8378), + [anon_sym_PLUS] = ACTIONS(8380), + [anon_sym_DASH] = ACTIONS(8378), + [anon_sym_QMARK] = ACTIONS(8380), + [aux_sym_close_statement_token1] = ACTIONS(8378), + [aux_sym_put_statement_token1] = ACTIONS(8378), + [aux_sym_unlock_statement_token1] = ACTIONS(8378), + [aux_sym_seek_statement_token1] = ACTIONS(8378), + [sym_reset_statement] = ACTIONS(8378), + [aux_sym_raise_event_statement_token1] = ACTIONS(8378), + [sym_stop_statement] = ACTIONS(8378), + [sym_beep_statement] = ACTIONS(8378), + [aux_sym_unload_statement_token1] = ACTIONS(8378), + [aux_sym_def_type_statement_token1] = ACTIONS(8378), + [aux_sym_def_type_statement_token2] = ACTIONS(8378), + [aux_sym_def_type_statement_token3] = ACTIONS(8378), + [aux_sym_def_type_statement_token4] = ACTIONS(8378), + [aux_sym_def_type_statement_token5] = ACTIONS(8378), + [aux_sym_def_type_statement_token6] = ACTIONS(8378), + [aux_sym_def_type_statement_token7] = ACTIONS(8378), + [aux_sym_def_type_statement_token8] = ACTIONS(8378), + [aux_sym_def_type_statement_token9] = ACTIONS(8378), + [aux_sym_def_type_statement_token10] = ACTIONS(8378), + [aux_sym_def_type_statement_token11] = ACTIONS(8378), + [aux_sym_def_type_statement_token12] = ACTIONS(8378), + [aux_sym_def_type_statement_token13] = ACTIONS(8378), + [aux_sym_def_type_statement_token14] = ACTIONS(8378), + [aux_sym_call_statement_token1] = ACTIONS(8378), + [sym__ambiguous_call_statement] = ACTIONS(8378), + [aux_sym_addressof_expression_token1] = ACTIONS(8378), + [aux_sym_type_of_expression_token1] = ACTIONS(8378), + [aux_sym_unary_expression_token1] = ACTIONS(8378), + [sym_string_literal] = ACTIONS(8380), + [sym_number_literal] = ACTIONS(8380), + [aux_sym_boolean_literal_token1] = ACTIONS(8378), + [aux_sym_boolean_literal_token2] = ACTIONS(8378), + [sym_nothing_literal] = ACTIONS(8378), + [sym_null_literal] = ACTIONS(8378), + [sym_empty_literal] = ACTIONS(8378), + [sym_date_literal] = ACTIONS(8380), + [anon_sym_POUND] = ACTIONS(8378), + }, + [STATE(5193)] = { + [sym_identifier] = ACTIONS(7968), + [sym_newline] = ACTIONS(7970), + [anon_sym_COLON] = ACTIONS(7970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7968), + [aux_sym_frm_property_statement_token1] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_BANG] = ACTIONS(7970), + [aux_sym__attribute_identifier_token1] = ACTIONS(7968), + [aux_sym_option_statement_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7968), + [aux_sym_preprocessor_const_token1] = ACTIONS(7968), + [sym_static_modifier] = ACTIONS(7968), + [sym__dim_keyword] = ACTIONS(7968), + [sym__redim_keyword] = ACTIONS(7968), + [aux_sym_get_accessor_token1] = ACTIONS(7968), + [aux_sym_set_accessor_token1] = ACTIONS(7968), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_const_declaration_token1] = ACTIONS(7968), + [anon_sym_LPAREN] = ACTIONS(7970), + [aux_sym_as_type_clause_token2] = ACTIONS(7968), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7968), + [aux_sym_visibility_token1] = ACTIONS(7968), + [aux_sym_visibility_token2] = ACTIONS(7968), + [aux_sym_elseif_fragment_token1] = ACTIONS(7968), + [aux_sym_else_fragment_token1] = ACTIONS(7968), + [aux_sym_select_statement_token1] = ACTIONS(7968), + [aux_sym_select_statement_token2] = ACTIONS(7968), + [aux_sym__for_header_token1] = ACTIONS(7968), + [aux_sym_do_statement_token1] = ACTIONS(7968), + [aux_sym_do_condition_token1] = ACTIONS(7968), + [aux_sym_with_statement_token1] = ACTIONS(7968), + [aux_sym_exit_statement_token1] = ACTIONS(7968), + [sym_end_statement] = ACTIONS(7970), + [aux_sym_on_goto_statement_token1] = ACTIONS(7968), + [aux_sym_on_goto_statement_token2] = ACTIONS(7968), + [aux_sym_on_error_statement_token2] = ACTIONS(7968), + [sym__ambiguous_redim_statement] = ACTIONS(7970), + [aux_sym_erase_statement_token1] = ACTIONS(7968), + [aux_sym_open_statement_token1] = ACTIONS(7968), + [aux_sym_file_mode_token2] = ACTIONS(7968), + [aux_sym_file_access_token2] = ACTIONS(7968), + [aux_sym_file_lock_token2] = ACTIONS(7968), + [aux_sym_print_statement_token1] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7970), + [aux_sym_close_statement_token1] = ACTIONS(7968), + [aux_sym_put_statement_token1] = ACTIONS(7968), + [aux_sym_unlock_statement_token1] = ACTIONS(7968), + [aux_sym_seek_statement_token1] = ACTIONS(7968), + [sym_reset_statement] = ACTIONS(7968), + [aux_sym_raise_event_statement_token1] = ACTIONS(7968), + [sym_stop_statement] = ACTIONS(7968), + [sym_beep_statement] = ACTIONS(7968), + [aux_sym_unload_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token2] = ACTIONS(7968), + [aux_sym_def_type_statement_token3] = ACTIONS(7968), + [aux_sym_def_type_statement_token4] = ACTIONS(7968), + [aux_sym_def_type_statement_token5] = ACTIONS(7968), + [aux_sym_def_type_statement_token6] = ACTIONS(7968), + [aux_sym_def_type_statement_token7] = ACTIONS(7968), + [aux_sym_def_type_statement_token8] = ACTIONS(7968), + [aux_sym_def_type_statement_token9] = ACTIONS(7968), + [aux_sym_def_type_statement_token10] = ACTIONS(7968), + [aux_sym_def_type_statement_token11] = ACTIONS(7968), + [aux_sym_def_type_statement_token12] = ACTIONS(7968), + [aux_sym_def_type_statement_token13] = ACTIONS(7968), + [aux_sym_def_type_statement_token14] = ACTIONS(7968), + [aux_sym_call_statement_token1] = ACTIONS(7968), + [sym__ambiguous_call_statement] = ACTIONS(7968), + [aux_sym_addressof_expression_token1] = ACTIONS(7968), + [aux_sym_type_of_expression_token1] = ACTIONS(7968), + [aux_sym_unary_expression_token1] = ACTIONS(7968), + [sym_string_literal] = ACTIONS(7970), + [sym_number_literal] = ACTIONS(7970), + [aux_sym_boolean_literal_token1] = ACTIONS(7968), + [aux_sym_boolean_literal_token2] = ACTIONS(7968), + [sym_nothing_literal] = ACTIONS(7968), + [sym_null_literal] = ACTIONS(7968), + [sym_empty_literal] = ACTIONS(7968), + [sym_date_literal] = ACTIONS(7970), + [anon_sym_POUND] = ACTIONS(7968), + }, + [STATE(5194)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5503), + [sym_identifier] = ACTIONS(8158), + [sym_newline] = ACTIONS(8160), + [anon_sym_COLON] = ACTIONS(8160), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8158), + [aux_sym_frm_property_statement_token1] = ACTIONS(8158), + [anon_sym_DOT] = ACTIONS(8158), + [anon_sym_BANG] = ACTIONS(8160), + [aux_sym__attribute_identifier_token1] = ACTIONS(8158), + [aux_sym_option_statement_token3] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8158), + [aux_sym_preprocessor_const_token1] = ACTIONS(8158), + [sym_static_modifier] = ACTIONS(8158), + [sym__dim_keyword] = ACTIONS(8158), + [sym__redim_keyword] = ACTIONS(8158), + [aux_sym_get_accessor_token1] = ACTIONS(8158), + [aux_sym_set_accessor_token1] = ACTIONS(8158), + [anon_sym_COMMA] = ACTIONS(10469), + [aux_sym_const_declaration_token1] = ACTIONS(8158), + [anon_sym_LPAREN] = ACTIONS(8160), + [aux_sym_as_type_clause_token2] = ACTIONS(8158), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8158), + [aux_sym_visibility_token1] = ACTIONS(8158), + [aux_sym_visibility_token2] = ACTIONS(8158), + [aux_sym_elseif_fragment_token1] = ACTIONS(8158), + [aux_sym_else_fragment_token1] = ACTIONS(8158), + [aux_sym_select_statement_token1] = ACTIONS(8158), + [aux_sym_select_statement_token2] = ACTIONS(8158), + [aux_sym__for_header_token1] = ACTIONS(8158), + [aux_sym_do_statement_token1] = ACTIONS(8158), + [aux_sym_do_condition_token1] = ACTIONS(8158), + [aux_sym_with_statement_token1] = ACTIONS(8158), + [aux_sym_exit_statement_token1] = ACTIONS(8158), + [sym_end_statement] = ACTIONS(8160), + [aux_sym_on_goto_statement_token1] = ACTIONS(8158), + [aux_sym_on_goto_statement_token2] = ACTIONS(8158), + [aux_sym_on_error_statement_token2] = ACTIONS(8158), + [sym__ambiguous_redim_statement] = ACTIONS(8160), + [aux_sym_erase_statement_token1] = ACTIONS(8158), + [aux_sym_open_statement_token1] = ACTIONS(8158), + [aux_sym_file_mode_token2] = ACTIONS(8158), + [aux_sym_file_access_token2] = ACTIONS(8158), + [aux_sym_file_lock_token2] = ACTIONS(8158), + [aux_sym_print_statement_token1] = ACTIONS(8158), + [anon_sym_PLUS] = ACTIONS(8160), + [anon_sym_DASH] = ACTIONS(8158), + [anon_sym_QMARK] = ACTIONS(8160), + [aux_sym_close_statement_token1] = ACTIONS(8158), + [aux_sym_put_statement_token1] = ACTIONS(8158), + [aux_sym_unlock_statement_token1] = ACTIONS(8158), + [aux_sym_seek_statement_token1] = ACTIONS(8158), + [sym_reset_statement] = ACTIONS(8158), + [aux_sym_raise_event_statement_token1] = ACTIONS(8158), + [sym_stop_statement] = ACTIONS(8158), + [sym_beep_statement] = ACTIONS(8158), + [aux_sym_unload_statement_token1] = ACTIONS(8158), + [aux_sym_def_type_statement_token1] = ACTIONS(8158), + [aux_sym_def_type_statement_token2] = ACTIONS(8158), + [aux_sym_def_type_statement_token3] = ACTIONS(8158), + [aux_sym_def_type_statement_token4] = ACTIONS(8158), + [aux_sym_def_type_statement_token5] = ACTIONS(8158), + [aux_sym_def_type_statement_token6] = ACTIONS(8158), + [aux_sym_def_type_statement_token7] = ACTIONS(8158), + [aux_sym_def_type_statement_token8] = ACTIONS(8158), + [aux_sym_def_type_statement_token9] = ACTIONS(8158), + [aux_sym_def_type_statement_token10] = ACTIONS(8158), + [aux_sym_def_type_statement_token11] = ACTIONS(8158), + [aux_sym_def_type_statement_token12] = ACTIONS(8158), + [aux_sym_def_type_statement_token13] = ACTIONS(8158), + [aux_sym_def_type_statement_token14] = ACTIONS(8158), + [aux_sym_call_statement_token1] = ACTIONS(8158), + [sym__ambiguous_call_statement] = ACTIONS(8158), + [aux_sym_addressof_expression_token1] = ACTIONS(8158), + [aux_sym_type_of_expression_token1] = ACTIONS(8158), + [aux_sym_unary_expression_token1] = ACTIONS(8158), + [sym_string_literal] = ACTIONS(8160), + [sym_number_literal] = ACTIONS(8160), + [aux_sym_boolean_literal_token1] = ACTIONS(8158), + [aux_sym_boolean_literal_token2] = ACTIONS(8158), + [sym_nothing_literal] = ACTIONS(8158), + [sym_null_literal] = ACTIONS(8158), + [sym_empty_literal] = ACTIONS(8158), + [sym_date_literal] = ACTIONS(8160), + [anon_sym_POUND] = ACTIONS(8158), + }, + [STATE(5195)] = { + [sym_identifier] = ACTIONS(7984), + [sym_newline] = ACTIONS(7986), + [anon_sym_COLON] = ACTIONS(7986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7984), + [aux_sym_frm_property_statement_token1] = ACTIONS(7984), + [anon_sym_EQ] = ACTIONS(7986), + [anon_sym_DOT] = ACTIONS(7984), + [anon_sym_BANG] = ACTIONS(7986), + [aux_sym__attribute_identifier_token1] = ACTIONS(7984), + [aux_sym_option_statement_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7984), + [aux_sym_preprocessor_const_token1] = ACTIONS(7984), + [sym_static_modifier] = ACTIONS(7984), + [sym__dim_keyword] = ACTIONS(7984), + [sym__redim_keyword] = ACTIONS(7984), + [aux_sym_get_accessor_token1] = ACTIONS(7984), + [aux_sym_set_accessor_token1] = ACTIONS(7984), + [anon_sym_COMMA] = ACTIONS(7986), + [aux_sym_const_declaration_token1] = ACTIONS(7984), + [anon_sym_LPAREN] = ACTIONS(7986), + [aux_sym_as_type_clause_token2] = ACTIONS(7984), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7984), + [aux_sym_visibility_token1] = ACTIONS(7984), + [aux_sym_visibility_token2] = ACTIONS(7984), + [aux_sym_elseif_fragment_token1] = ACTIONS(7984), + [aux_sym_else_fragment_token1] = ACTIONS(7984), + [aux_sym_select_statement_token1] = ACTIONS(7984), + [aux_sym_select_statement_token2] = ACTIONS(7984), + [aux_sym__for_header_token1] = ACTIONS(7984), + [aux_sym_do_statement_token1] = ACTIONS(7984), + [aux_sym_do_condition_token1] = ACTIONS(7984), + [aux_sym_with_statement_token1] = ACTIONS(7984), + [aux_sym_exit_statement_token1] = ACTIONS(7984), + [sym_end_statement] = ACTIONS(7986), + [aux_sym_on_goto_statement_token1] = ACTIONS(7984), + [aux_sym_on_goto_statement_token2] = ACTIONS(7984), + [aux_sym_on_error_statement_token2] = ACTIONS(7984), + [sym__ambiguous_redim_statement] = ACTIONS(7986), + [aux_sym_erase_statement_token1] = ACTIONS(7984), + [aux_sym_open_statement_token1] = ACTIONS(7984), + [aux_sym_file_mode_token2] = ACTIONS(7984), + [aux_sym_file_access_token2] = ACTIONS(7984), + [aux_sym_file_lock_token2] = ACTIONS(7984), + [aux_sym_print_statement_token1] = ACTIONS(7984), + [anon_sym_PLUS] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(7984), + [anon_sym_QMARK] = ACTIONS(7986), + [aux_sym_close_statement_token1] = ACTIONS(7984), + [aux_sym_put_statement_token1] = ACTIONS(7984), + [aux_sym_unlock_statement_token1] = ACTIONS(7984), + [aux_sym_seek_statement_token1] = ACTIONS(7984), + [sym_reset_statement] = ACTIONS(7984), + [aux_sym_raise_event_statement_token1] = ACTIONS(7984), + [sym_stop_statement] = ACTIONS(7984), + [sym_beep_statement] = ACTIONS(7984), + [aux_sym_unload_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token2] = ACTIONS(7984), + [aux_sym_def_type_statement_token3] = ACTIONS(7984), + [aux_sym_def_type_statement_token4] = ACTIONS(7984), + [aux_sym_def_type_statement_token5] = ACTIONS(7984), + [aux_sym_def_type_statement_token6] = ACTIONS(7984), + [aux_sym_def_type_statement_token7] = ACTIONS(7984), + [aux_sym_def_type_statement_token8] = ACTIONS(7984), + [aux_sym_def_type_statement_token9] = ACTIONS(7984), + [aux_sym_def_type_statement_token10] = ACTIONS(7984), + [aux_sym_def_type_statement_token11] = ACTIONS(7984), + [aux_sym_def_type_statement_token12] = ACTIONS(7984), + [aux_sym_def_type_statement_token13] = ACTIONS(7984), + [aux_sym_def_type_statement_token14] = ACTIONS(7984), + [aux_sym_call_statement_token1] = ACTIONS(7984), + [sym__ambiguous_call_statement] = ACTIONS(7984), + [aux_sym_addressof_expression_token1] = ACTIONS(7984), + [aux_sym_type_of_expression_token1] = ACTIONS(7984), + [aux_sym_unary_expression_token1] = ACTIONS(7984), + [sym_string_literal] = ACTIONS(7986), + [sym_number_literal] = ACTIONS(7986), + [aux_sym_boolean_literal_token1] = ACTIONS(7984), + [aux_sym_boolean_literal_token2] = ACTIONS(7984), + [sym_nothing_literal] = ACTIONS(7984), + [sym_null_literal] = ACTIONS(7984), + [sym_empty_literal] = ACTIONS(7984), + [sym_date_literal] = ACTIONS(7986), + [anon_sym_POUND] = ACTIONS(7984), + }, + [STATE(5196)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_statement_token2] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(5197)] = { + [sym_identifier] = ACTIONS(8022), + [sym_newline] = ACTIONS(8024), + [anon_sym_COLON] = ACTIONS(8024), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8022), + [aux_sym_frm_property_statement_token1] = ACTIONS(8022), + [anon_sym_EQ] = ACTIONS(8024), + [anon_sym_DOT] = ACTIONS(8022), + [anon_sym_BANG] = ACTIONS(8024), + [aux_sym__attribute_identifier_token1] = ACTIONS(8022), + [aux_sym_option_statement_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8022), + [aux_sym_preprocessor_const_token1] = ACTIONS(8022), + [sym_static_modifier] = ACTIONS(8022), + [sym__dim_keyword] = ACTIONS(8022), + [sym__redim_keyword] = ACTIONS(8022), + [aux_sym_get_accessor_token1] = ACTIONS(8022), + [aux_sym_set_accessor_token1] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8024), + [aux_sym_const_declaration_token1] = ACTIONS(8022), + [anon_sym_LPAREN] = ACTIONS(8024), + [aux_sym_as_type_clause_token2] = ACTIONS(8022), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8022), + [aux_sym_visibility_token1] = ACTIONS(8022), + [aux_sym_visibility_token2] = ACTIONS(8022), + [aux_sym_elseif_fragment_token1] = ACTIONS(8022), + [aux_sym_else_fragment_token1] = ACTIONS(8022), + [aux_sym_select_statement_token1] = ACTIONS(8022), + [aux_sym_select_statement_token2] = ACTIONS(8022), + [aux_sym__for_header_token1] = ACTIONS(8022), + [aux_sym_do_statement_token1] = ACTIONS(8022), + [aux_sym_do_condition_token1] = ACTIONS(8022), + [aux_sym_with_statement_token1] = ACTIONS(8022), + [aux_sym_exit_statement_token1] = ACTIONS(8022), + [sym_end_statement] = ACTIONS(8024), + [aux_sym_on_goto_statement_token1] = ACTIONS(8022), + [aux_sym_on_goto_statement_token2] = ACTIONS(8022), + [aux_sym_on_error_statement_token2] = ACTIONS(8022), + [sym__ambiguous_redim_statement] = ACTIONS(8024), + [aux_sym_erase_statement_token1] = ACTIONS(8022), + [aux_sym_open_statement_token1] = ACTIONS(8022), + [aux_sym_file_mode_token2] = ACTIONS(8022), + [aux_sym_file_access_token2] = ACTIONS(8022), + [aux_sym_file_lock_token2] = ACTIONS(8022), + [aux_sym_print_statement_token1] = ACTIONS(8022), + [anon_sym_PLUS] = ACTIONS(8024), + [anon_sym_DASH] = ACTIONS(8022), + [anon_sym_QMARK] = ACTIONS(8024), + [aux_sym_close_statement_token1] = ACTIONS(8022), + [aux_sym_put_statement_token1] = ACTIONS(8022), + [aux_sym_unlock_statement_token1] = ACTIONS(8022), + [aux_sym_seek_statement_token1] = ACTIONS(8022), + [sym_reset_statement] = ACTIONS(8022), + [aux_sym_raise_event_statement_token1] = ACTIONS(8022), + [sym_stop_statement] = ACTIONS(8022), + [sym_beep_statement] = ACTIONS(8022), + [aux_sym_unload_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token2] = ACTIONS(8022), + [aux_sym_def_type_statement_token3] = ACTIONS(8022), + [aux_sym_def_type_statement_token4] = ACTIONS(8022), + [aux_sym_def_type_statement_token5] = ACTIONS(8022), + [aux_sym_def_type_statement_token6] = ACTIONS(8022), + [aux_sym_def_type_statement_token7] = ACTIONS(8022), + [aux_sym_def_type_statement_token8] = ACTIONS(8022), + [aux_sym_def_type_statement_token9] = ACTIONS(8022), + [aux_sym_def_type_statement_token10] = ACTIONS(8022), + [aux_sym_def_type_statement_token11] = ACTIONS(8022), + [aux_sym_def_type_statement_token12] = ACTIONS(8022), + [aux_sym_def_type_statement_token13] = ACTIONS(8022), + [aux_sym_def_type_statement_token14] = ACTIONS(8022), + [aux_sym_call_statement_token1] = ACTIONS(8022), + [sym__ambiguous_call_statement] = ACTIONS(8022), + [aux_sym_addressof_expression_token1] = ACTIONS(8022), + [aux_sym_type_of_expression_token1] = ACTIONS(8022), + [aux_sym_unary_expression_token1] = ACTIONS(8022), + [sym_string_literal] = ACTIONS(8024), + [sym_number_literal] = ACTIONS(8024), + [aux_sym_boolean_literal_token1] = ACTIONS(8022), + [aux_sym_boolean_literal_token2] = ACTIONS(8022), + [sym_nothing_literal] = ACTIONS(8022), + [sym_null_literal] = ACTIONS(8022), + [sym_empty_literal] = ACTIONS(8022), + [sym_date_literal] = ACTIONS(8024), + [anon_sym_POUND] = ACTIONS(8022), + }, + [STATE(5198)] = { + [aux_sym_erase_statement_repeat1] = STATE(5431), + [sym_identifier] = ACTIONS(8320), + [sym_newline] = ACTIONS(8322), + [anon_sym_COLON] = ACTIONS(8322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8320), + [aux_sym_frm_property_statement_token1] = ACTIONS(8320), + [anon_sym_DOT] = ACTIONS(8320), + [anon_sym_BANG] = ACTIONS(8322), + [aux_sym__attribute_identifier_token1] = ACTIONS(8320), + [aux_sym_option_statement_token3] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8320), + [aux_sym_preprocessor_const_token1] = ACTIONS(8320), + [sym_static_modifier] = ACTIONS(8320), + [sym__dim_keyword] = ACTIONS(8320), + [sym__redim_keyword] = ACTIONS(8320), + [aux_sym_get_accessor_token1] = ACTIONS(8320), + [aux_sym_set_accessor_token1] = ACTIONS(8320), + [anon_sym_COMMA] = ACTIONS(10479), + [aux_sym_const_declaration_token1] = ACTIONS(8320), + [anon_sym_LPAREN] = ACTIONS(8322), + [aux_sym_as_type_clause_token2] = ACTIONS(8320), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8320), + [aux_sym_visibility_token1] = ACTIONS(8320), + [aux_sym_visibility_token2] = ACTIONS(8320), + [aux_sym_elseif_fragment_token1] = ACTIONS(8320), + [aux_sym_else_fragment_token1] = ACTIONS(8320), + [aux_sym_select_statement_token1] = ACTIONS(8320), + [aux_sym__for_header_token1] = ACTIONS(8320), + [aux_sym_do_statement_token1] = ACTIONS(8320), + [aux_sym_do_statement_token2] = ACTIONS(8320), + [aux_sym_do_condition_token1] = ACTIONS(8320), + [aux_sym_with_statement_token1] = ACTIONS(8320), + [aux_sym_exit_statement_token1] = ACTIONS(8320), + [sym_end_statement] = ACTIONS(8322), + [aux_sym_on_goto_statement_token1] = ACTIONS(8320), + [aux_sym_on_goto_statement_token2] = ACTIONS(8320), + [aux_sym_on_error_statement_token2] = ACTIONS(8320), + [sym__ambiguous_redim_statement] = ACTIONS(8322), + [aux_sym_erase_statement_token1] = ACTIONS(8320), + [aux_sym_open_statement_token1] = ACTIONS(8320), + [aux_sym_file_mode_token2] = ACTIONS(8320), + [aux_sym_file_access_token2] = ACTIONS(8320), + [aux_sym_file_lock_token2] = ACTIONS(8320), + [aux_sym_print_statement_token1] = ACTIONS(8320), + [anon_sym_PLUS] = ACTIONS(8322), + [anon_sym_DASH] = ACTIONS(8320), + [anon_sym_QMARK] = ACTIONS(8322), + [aux_sym_close_statement_token1] = ACTIONS(8320), + [aux_sym_put_statement_token1] = ACTIONS(8320), + [aux_sym_unlock_statement_token1] = ACTIONS(8320), + [aux_sym_seek_statement_token1] = ACTIONS(8320), + [sym_reset_statement] = ACTIONS(8320), + [aux_sym_raise_event_statement_token1] = ACTIONS(8320), + [sym_stop_statement] = ACTIONS(8320), + [sym_beep_statement] = ACTIONS(8320), + [aux_sym_unload_statement_token1] = ACTIONS(8320), + [aux_sym_def_type_statement_token1] = ACTIONS(8320), + [aux_sym_def_type_statement_token2] = ACTIONS(8320), + [aux_sym_def_type_statement_token3] = ACTIONS(8320), + [aux_sym_def_type_statement_token4] = ACTIONS(8320), + [aux_sym_def_type_statement_token5] = ACTIONS(8320), + [aux_sym_def_type_statement_token6] = ACTIONS(8320), + [aux_sym_def_type_statement_token7] = ACTIONS(8320), + [aux_sym_def_type_statement_token8] = ACTIONS(8320), + [aux_sym_def_type_statement_token9] = ACTIONS(8320), + [aux_sym_def_type_statement_token10] = ACTIONS(8320), + [aux_sym_def_type_statement_token11] = ACTIONS(8320), + [aux_sym_def_type_statement_token12] = ACTIONS(8320), + [aux_sym_def_type_statement_token13] = ACTIONS(8320), + [aux_sym_def_type_statement_token14] = ACTIONS(8320), + [aux_sym_call_statement_token1] = ACTIONS(8320), + [sym__ambiguous_call_statement] = ACTIONS(8320), + [aux_sym_addressof_expression_token1] = ACTIONS(8320), + [aux_sym_type_of_expression_token1] = ACTIONS(8320), + [aux_sym_unary_expression_token1] = ACTIONS(8320), + [sym_string_literal] = ACTIONS(8322), + [sym_number_literal] = ACTIONS(8322), + [aux_sym_boolean_literal_token1] = ACTIONS(8320), + [aux_sym_boolean_literal_token2] = ACTIONS(8320), + [sym_nothing_literal] = ACTIONS(8320), + [sym_null_literal] = ACTIONS(8320), + [sym_empty_literal] = ACTIONS(8320), + [sym_date_literal] = ACTIONS(8322), + [anon_sym_POUND] = ACTIONS(8320), + }, + [STATE(5199)] = { + [sym_argument_list] = STATE(10051), + [sym_identifier] = ACTIONS(8393), + [sym_newline] = ACTIONS(8395), + [anon_sym_COLON] = ACTIONS(8395), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8393), + [aux_sym_frm_property_statement_token1] = ACTIONS(8393), + [anon_sym_DOT] = ACTIONS(8393), + [anon_sym_BANG] = ACTIONS(8395), + [aux_sym__attribute_identifier_token1] = ACTIONS(8393), + [aux_sym_option_statement_token3] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8393), + [aux_sym_preprocessor_const_token1] = ACTIONS(8393), + [sym_static_modifier] = ACTIONS(8393), + [sym__dim_keyword] = ACTIONS(8393), + [sym__redim_keyword] = ACTIONS(8393), + [aux_sym_get_accessor_token1] = ACTIONS(8393), + [aux_sym_set_accessor_token1] = ACTIONS(8393), + [anon_sym_COMMA] = ACTIONS(8395), + [aux_sym_const_declaration_token1] = ACTIONS(8393), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(8393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8393), + [aux_sym_visibility_token1] = ACTIONS(8393), + [aux_sym_visibility_token2] = ACTIONS(8393), + [aux_sym_elseif_fragment_token1] = ACTIONS(8393), + [aux_sym_else_fragment_token1] = ACTIONS(8393), + [aux_sym_select_statement_token1] = ACTIONS(8393), + [aux_sym__for_header_token1] = ACTIONS(8393), + [aux_sym_do_statement_token1] = ACTIONS(8393), + [aux_sym_do_condition_token1] = ACTIONS(8393), + [aux_sym_while_statement_token1] = ACTIONS(8393), + [aux_sym_with_statement_token1] = ACTIONS(8393), + [aux_sym_exit_statement_token1] = ACTIONS(8393), + [sym_end_statement] = ACTIONS(8395), + [aux_sym_on_goto_statement_token1] = ACTIONS(8393), + [aux_sym_on_goto_statement_token2] = ACTIONS(8393), + [aux_sym_on_error_statement_token2] = ACTIONS(8393), + [sym__ambiguous_redim_statement] = ACTIONS(8395), + [aux_sym_erase_statement_token1] = ACTIONS(8393), + [aux_sym_open_statement_token1] = ACTIONS(8393), + [aux_sym_file_mode_token2] = ACTIONS(8393), + [aux_sym_file_access_token2] = ACTIONS(8393), + [aux_sym_file_lock_token2] = ACTIONS(8393), + [aux_sym_print_statement_token1] = ACTIONS(8393), + [anon_sym_PLUS] = ACTIONS(8395), + [anon_sym_DASH] = ACTIONS(8393), + [anon_sym_QMARK] = ACTIONS(8395), + [aux_sym_close_statement_token1] = ACTIONS(8393), + [aux_sym_put_statement_token1] = ACTIONS(8393), + [aux_sym_unlock_statement_token1] = ACTIONS(8393), + [aux_sym_seek_statement_token1] = ACTIONS(8393), + [sym_reset_statement] = ACTIONS(8393), + [aux_sym_raise_event_statement_token1] = ACTIONS(8393), + [sym_stop_statement] = ACTIONS(8393), + [sym_beep_statement] = ACTIONS(8393), + [aux_sym_unload_statement_token1] = ACTIONS(8393), + [aux_sym_def_type_statement_token1] = ACTIONS(8393), + [aux_sym_def_type_statement_token2] = ACTIONS(8393), + [aux_sym_def_type_statement_token3] = ACTIONS(8393), + [aux_sym_def_type_statement_token4] = ACTIONS(8393), + [aux_sym_def_type_statement_token5] = ACTIONS(8393), + [aux_sym_def_type_statement_token6] = ACTIONS(8393), + [aux_sym_def_type_statement_token7] = ACTIONS(8393), + [aux_sym_def_type_statement_token8] = ACTIONS(8393), + [aux_sym_def_type_statement_token9] = ACTIONS(8393), + [aux_sym_def_type_statement_token10] = ACTIONS(8393), + [aux_sym_def_type_statement_token11] = ACTIONS(8393), + [aux_sym_def_type_statement_token12] = ACTIONS(8393), + [aux_sym_def_type_statement_token13] = ACTIONS(8393), + [aux_sym_def_type_statement_token14] = ACTIONS(8393), + [aux_sym_call_statement_token1] = ACTIONS(8393), + [sym__ambiguous_call_statement] = ACTIONS(8393), + [aux_sym_addressof_expression_token1] = ACTIONS(8393), + [aux_sym_type_of_expression_token1] = ACTIONS(8393), + [aux_sym_unary_expression_token1] = ACTIONS(8393), + [sym_string_literal] = ACTIONS(8395), + [sym_number_literal] = ACTIONS(8395), + [aux_sym_boolean_literal_token1] = ACTIONS(8393), + [aux_sym_boolean_literal_token2] = ACTIONS(8393), + [sym_nothing_literal] = ACTIONS(8393), + [sym_null_literal] = ACTIONS(8393), + [sym_empty_literal] = ACTIONS(8393), + [sym_date_literal] = ACTIONS(8395), + [anon_sym_POUND] = ACTIONS(8393), + }, + [STATE(5200)] = { + [aux_sym_input_statement_repeat1] = STATE(5200), + [sym_identifier] = ACTIONS(8401), + [sym_newline] = ACTIONS(8403), + [anon_sym_COLON] = ACTIONS(8403), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8401), + [aux_sym_frm_property_statement_token1] = ACTIONS(8401), + [anon_sym_DOT] = ACTIONS(8401), + [anon_sym_BANG] = ACTIONS(8403), + [aux_sym__attribute_identifier_token1] = ACTIONS(8401), + [aux_sym_option_statement_token3] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8401), + [aux_sym_preprocessor_const_token1] = ACTIONS(8401), + [sym_static_modifier] = ACTIONS(8401), + [sym__dim_keyword] = ACTIONS(8401), + [sym__redim_keyword] = ACTIONS(8401), + [aux_sym_get_accessor_token1] = ACTIONS(8401), + [aux_sym_set_accessor_token1] = ACTIONS(8401), + [anon_sym_COMMA] = ACTIONS(10481), + [aux_sym_const_declaration_token1] = ACTIONS(8401), + [anon_sym_LPAREN] = ACTIONS(8403), + [aux_sym_as_type_clause_token2] = ACTIONS(8401), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8401), + [aux_sym_visibility_token1] = ACTIONS(8401), + [aux_sym_visibility_token2] = ACTIONS(8401), + [aux_sym_elseif_fragment_token1] = ACTIONS(8401), + [aux_sym_else_fragment_token1] = ACTIONS(8401), + [aux_sym_select_statement_token1] = ACTIONS(8401), + [aux_sym__for_header_token1] = ACTIONS(8401), + [aux_sym_do_statement_token1] = ACTIONS(8401), + [aux_sym_do_condition_token1] = ACTIONS(8401), + [aux_sym_while_statement_token1] = ACTIONS(8401), + [aux_sym_with_statement_token1] = ACTIONS(8401), + [aux_sym_exit_statement_token1] = ACTIONS(8401), + [sym_end_statement] = ACTIONS(8403), + [aux_sym_on_goto_statement_token1] = ACTIONS(8401), + [aux_sym_on_goto_statement_token2] = ACTIONS(8401), + [aux_sym_on_error_statement_token2] = ACTIONS(8401), + [sym__ambiguous_redim_statement] = ACTIONS(8403), + [aux_sym_erase_statement_token1] = ACTIONS(8401), + [aux_sym_open_statement_token1] = ACTIONS(8401), + [aux_sym_file_mode_token2] = ACTIONS(8401), + [aux_sym_file_access_token2] = ACTIONS(8401), + [aux_sym_file_lock_token2] = ACTIONS(8401), + [aux_sym_print_statement_token1] = ACTIONS(8401), + [anon_sym_PLUS] = ACTIONS(8403), + [anon_sym_DASH] = ACTIONS(8401), + [anon_sym_QMARK] = ACTIONS(8403), + [aux_sym_close_statement_token1] = ACTIONS(8401), + [aux_sym_put_statement_token1] = ACTIONS(8401), + [aux_sym_unlock_statement_token1] = ACTIONS(8401), + [aux_sym_seek_statement_token1] = ACTIONS(8401), + [sym_reset_statement] = ACTIONS(8401), + [aux_sym_raise_event_statement_token1] = ACTIONS(8401), + [sym_stop_statement] = ACTIONS(8401), + [sym_beep_statement] = ACTIONS(8401), + [aux_sym_unload_statement_token1] = ACTIONS(8401), + [aux_sym_def_type_statement_token1] = ACTIONS(8401), + [aux_sym_def_type_statement_token2] = ACTIONS(8401), + [aux_sym_def_type_statement_token3] = ACTIONS(8401), + [aux_sym_def_type_statement_token4] = ACTIONS(8401), + [aux_sym_def_type_statement_token5] = ACTIONS(8401), + [aux_sym_def_type_statement_token6] = ACTIONS(8401), + [aux_sym_def_type_statement_token7] = ACTIONS(8401), + [aux_sym_def_type_statement_token8] = ACTIONS(8401), + [aux_sym_def_type_statement_token9] = ACTIONS(8401), + [aux_sym_def_type_statement_token10] = ACTIONS(8401), + [aux_sym_def_type_statement_token11] = ACTIONS(8401), + [aux_sym_def_type_statement_token12] = ACTIONS(8401), + [aux_sym_def_type_statement_token13] = ACTIONS(8401), + [aux_sym_def_type_statement_token14] = ACTIONS(8401), + [aux_sym_call_statement_token1] = ACTIONS(8401), + [sym__ambiguous_call_statement] = ACTIONS(8401), + [aux_sym_addressof_expression_token1] = ACTIONS(8401), + [aux_sym_type_of_expression_token1] = ACTIONS(8401), + [aux_sym_unary_expression_token1] = ACTIONS(8401), + [sym_string_literal] = ACTIONS(8403), + [sym_number_literal] = ACTIONS(8403), + [aux_sym_boolean_literal_token1] = ACTIONS(8401), + [aux_sym_boolean_literal_token2] = ACTIONS(8401), + [sym_nothing_literal] = ACTIONS(8401), + [sym_null_literal] = ACTIONS(8401), + [sym_empty_literal] = ACTIONS(8401), + [sym_date_literal] = ACTIONS(8403), + [anon_sym_POUND] = ACTIONS(8401), + }, + [STATE(5201)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5201), + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(10484), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_while_statement_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(5202)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5503), + [sym_identifier] = ACTIONS(8166), + [sym_newline] = ACTIONS(8168), + [anon_sym_COLON] = ACTIONS(8168), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8166), + [aux_sym_frm_property_statement_token1] = ACTIONS(8166), + [anon_sym_DOT] = ACTIONS(8166), + [anon_sym_BANG] = ACTIONS(8168), + [aux_sym__attribute_identifier_token1] = ACTIONS(8166), + [aux_sym_option_statement_token3] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8166), + [aux_sym_preprocessor_const_token1] = ACTIONS(8166), + [sym_static_modifier] = ACTIONS(8166), + [sym__dim_keyword] = ACTIONS(8166), + [sym__redim_keyword] = ACTIONS(8166), + [aux_sym_get_accessor_token1] = ACTIONS(8166), + [aux_sym_set_accessor_token1] = ACTIONS(8166), + [anon_sym_COMMA] = ACTIONS(10469), + [aux_sym_const_declaration_token1] = ACTIONS(8166), + [anon_sym_LPAREN] = ACTIONS(8168), + [aux_sym_as_type_clause_token2] = ACTIONS(8166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8166), + [aux_sym_visibility_token1] = ACTIONS(8166), + [aux_sym_visibility_token2] = ACTIONS(8166), + [aux_sym_elseif_fragment_token1] = ACTIONS(8166), + [aux_sym_else_fragment_token1] = ACTIONS(8166), + [aux_sym_select_statement_token1] = ACTIONS(8166), + [aux_sym_select_statement_token2] = ACTIONS(8166), + [aux_sym__for_header_token1] = ACTIONS(8166), + [aux_sym_do_statement_token1] = ACTIONS(8166), + [aux_sym_do_condition_token1] = ACTIONS(8166), + [aux_sym_with_statement_token1] = ACTIONS(8166), + [aux_sym_exit_statement_token1] = ACTIONS(8166), + [sym_end_statement] = ACTIONS(8168), + [aux_sym_on_goto_statement_token1] = ACTIONS(8166), + [aux_sym_on_goto_statement_token2] = ACTIONS(8166), + [aux_sym_on_error_statement_token2] = ACTIONS(8166), + [sym__ambiguous_redim_statement] = ACTIONS(8168), + [aux_sym_erase_statement_token1] = ACTIONS(8166), + [aux_sym_open_statement_token1] = ACTIONS(8166), + [aux_sym_file_mode_token2] = ACTIONS(8166), + [aux_sym_file_access_token2] = ACTIONS(8166), + [aux_sym_file_lock_token2] = ACTIONS(8166), + [aux_sym_print_statement_token1] = ACTIONS(8166), + [anon_sym_PLUS] = ACTIONS(8168), + [anon_sym_DASH] = ACTIONS(8166), + [anon_sym_QMARK] = ACTIONS(8168), + [aux_sym_close_statement_token1] = ACTIONS(8166), + [aux_sym_put_statement_token1] = ACTIONS(8166), + [aux_sym_unlock_statement_token1] = ACTIONS(8166), + [aux_sym_seek_statement_token1] = ACTIONS(8166), + [sym_reset_statement] = ACTIONS(8166), + [aux_sym_raise_event_statement_token1] = ACTIONS(8166), + [sym_stop_statement] = ACTIONS(8166), + [sym_beep_statement] = ACTIONS(8166), + [aux_sym_unload_statement_token1] = ACTIONS(8166), + [aux_sym_def_type_statement_token1] = ACTIONS(8166), + [aux_sym_def_type_statement_token2] = ACTIONS(8166), + [aux_sym_def_type_statement_token3] = ACTIONS(8166), + [aux_sym_def_type_statement_token4] = ACTIONS(8166), + [aux_sym_def_type_statement_token5] = ACTIONS(8166), + [aux_sym_def_type_statement_token6] = ACTIONS(8166), + [aux_sym_def_type_statement_token7] = ACTIONS(8166), + [aux_sym_def_type_statement_token8] = ACTIONS(8166), + [aux_sym_def_type_statement_token9] = ACTIONS(8166), + [aux_sym_def_type_statement_token10] = ACTIONS(8166), + [aux_sym_def_type_statement_token11] = ACTIONS(8166), + [aux_sym_def_type_statement_token12] = ACTIONS(8166), + [aux_sym_def_type_statement_token13] = ACTIONS(8166), + [aux_sym_def_type_statement_token14] = ACTIONS(8166), + [aux_sym_call_statement_token1] = ACTIONS(8166), + [sym__ambiguous_call_statement] = ACTIONS(8166), + [aux_sym_addressof_expression_token1] = ACTIONS(8166), + [aux_sym_type_of_expression_token1] = ACTIONS(8166), + [aux_sym_unary_expression_token1] = ACTIONS(8166), + [sym_string_literal] = ACTIONS(8168), + [sym_number_literal] = ACTIONS(8168), + [aux_sym_boolean_literal_token1] = ACTIONS(8166), + [aux_sym_boolean_literal_token2] = ACTIONS(8166), + [sym_nothing_literal] = ACTIONS(8166), + [sym_null_literal] = ACTIONS(8166), + [sym_empty_literal] = ACTIONS(8166), + [sym_date_literal] = ACTIONS(8168), + [anon_sym_POUND] = ACTIONS(8166), + }, + [STATE(5203)] = { + [sym_do_condition] = STATE(7087), + [sym_identifier] = ACTIONS(8411), + [sym_newline] = ACTIONS(8413), + [anon_sym_COLON] = ACTIONS(8413), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8411), + [aux_sym_frm_property_statement_token1] = ACTIONS(8411), + [anon_sym_DOT] = ACTIONS(8411), + [anon_sym_BANG] = ACTIONS(8413), + [aux_sym__attribute_identifier_token1] = ACTIONS(8411), + [aux_sym_option_statement_token3] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8411), + [aux_sym_preprocessor_const_token1] = ACTIONS(8411), + [sym_static_modifier] = ACTIONS(8411), + [sym__dim_keyword] = ACTIONS(8411), + [sym__redim_keyword] = ACTIONS(8411), + [aux_sym_get_accessor_token1] = ACTIONS(8411), + [aux_sym_set_accessor_token1] = ACTIONS(8411), + [aux_sym_const_declaration_token1] = ACTIONS(8411), + [anon_sym_LPAREN] = ACTIONS(8413), + [aux_sym_as_type_clause_token2] = ACTIONS(8411), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8411), + [aux_sym_visibility_token1] = ACTIONS(8411), + [aux_sym_visibility_token2] = ACTIONS(8411), + [aux_sym_elseif_fragment_token1] = ACTIONS(8411), + [aux_sym_else_fragment_token1] = ACTIONS(8411), + [aux_sym_select_statement_token1] = ACTIONS(8411), + [aux_sym__for_header_token1] = ACTIONS(8411), + [aux_sym_do_statement_token1] = ACTIONS(8411), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8411), + [aux_sym_with_statement_token1] = ACTIONS(8411), + [aux_sym_exit_statement_token1] = ACTIONS(8411), + [sym_end_statement] = ACTIONS(8413), + [aux_sym_on_goto_statement_token1] = ACTIONS(8411), + [aux_sym_on_goto_statement_token2] = ACTIONS(8411), + [aux_sym_on_error_statement_token2] = ACTIONS(8411), + [sym__ambiguous_redim_statement] = ACTIONS(8413), + [aux_sym_erase_statement_token1] = ACTIONS(8411), + [aux_sym_open_statement_token1] = ACTIONS(8411), + [aux_sym_file_mode_token2] = ACTIONS(8411), + [aux_sym_file_access_token2] = ACTIONS(8411), + [aux_sym_file_lock_token2] = ACTIONS(8411), + [aux_sym_print_statement_token1] = ACTIONS(8411), + [anon_sym_PLUS] = ACTIONS(8413), + [anon_sym_DASH] = ACTIONS(8411), + [anon_sym_QMARK] = ACTIONS(8413), + [aux_sym_close_statement_token1] = ACTIONS(8411), + [aux_sym_put_statement_token1] = ACTIONS(8411), + [aux_sym_unlock_statement_token1] = ACTIONS(8411), + [aux_sym_seek_statement_token1] = ACTIONS(8411), + [sym_reset_statement] = ACTIONS(8411), + [aux_sym_raise_event_statement_token1] = ACTIONS(8411), + [sym_stop_statement] = ACTIONS(8411), + [sym_beep_statement] = ACTIONS(8411), + [aux_sym_unload_statement_token1] = ACTIONS(8411), + [aux_sym_def_type_statement_token1] = ACTIONS(8411), + [aux_sym_def_type_statement_token2] = ACTIONS(8411), + [aux_sym_def_type_statement_token3] = ACTIONS(8411), + [aux_sym_def_type_statement_token4] = ACTIONS(8411), + [aux_sym_def_type_statement_token5] = ACTIONS(8411), + [aux_sym_def_type_statement_token6] = ACTIONS(8411), + [aux_sym_def_type_statement_token7] = ACTIONS(8411), + [aux_sym_def_type_statement_token8] = ACTIONS(8411), + [aux_sym_def_type_statement_token9] = ACTIONS(8411), + [aux_sym_def_type_statement_token10] = ACTIONS(8411), + [aux_sym_def_type_statement_token11] = ACTIONS(8411), + [aux_sym_def_type_statement_token12] = ACTIONS(8411), + [aux_sym_def_type_statement_token13] = ACTIONS(8411), + [aux_sym_def_type_statement_token14] = ACTIONS(8411), + [aux_sym_call_statement_token1] = ACTIONS(8411), + [sym__ambiguous_call_statement] = ACTIONS(8411), + [aux_sym_addressof_expression_token1] = ACTIONS(8411), + [aux_sym_type_of_expression_token1] = ACTIONS(8411), + [aux_sym_unary_expression_token1] = ACTIONS(8411), + [sym_string_literal] = ACTIONS(8413), + [sym_number_literal] = ACTIONS(8413), + [aux_sym_boolean_literal_token1] = ACTIONS(8411), + [aux_sym_boolean_literal_token2] = ACTIONS(8411), + [sym_nothing_literal] = ACTIONS(8411), + [sym_null_literal] = ACTIONS(8411), + [sym_empty_literal] = ACTIONS(8411), + [sym_date_literal] = ACTIONS(8413), + [anon_sym_POUND] = ACTIONS(8411), + }, + [STATE(5204)] = { + [sym_do_condition] = STATE(7088), + [sym_identifier] = ACTIONS(8415), + [sym_newline] = ACTIONS(8417), + [anon_sym_COLON] = ACTIONS(8417), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8415), + [aux_sym_frm_property_statement_token1] = ACTIONS(8415), + [anon_sym_DOT] = ACTIONS(8415), + [anon_sym_BANG] = ACTIONS(8417), + [aux_sym__attribute_identifier_token1] = ACTIONS(8415), + [aux_sym_option_statement_token3] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8415), + [aux_sym_preprocessor_const_token1] = ACTIONS(8415), + [sym_static_modifier] = ACTIONS(8415), + [sym__dim_keyword] = ACTIONS(8415), + [sym__redim_keyword] = ACTIONS(8415), + [aux_sym_get_accessor_token1] = ACTIONS(8415), + [aux_sym_set_accessor_token1] = ACTIONS(8415), + [aux_sym_const_declaration_token1] = ACTIONS(8415), + [anon_sym_LPAREN] = ACTIONS(8417), + [aux_sym_as_type_clause_token2] = ACTIONS(8415), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8415), + [aux_sym_visibility_token1] = ACTIONS(8415), + [aux_sym_visibility_token2] = ACTIONS(8415), + [aux_sym_elseif_fragment_token1] = ACTIONS(8415), + [aux_sym_else_fragment_token1] = ACTIONS(8415), + [aux_sym_select_statement_token1] = ACTIONS(8415), + [aux_sym__for_header_token1] = ACTIONS(8415), + [aux_sym_do_statement_token1] = ACTIONS(8415), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8415), + [aux_sym_with_statement_token1] = ACTIONS(8415), + [aux_sym_exit_statement_token1] = ACTIONS(8415), + [sym_end_statement] = ACTIONS(8417), + [aux_sym_on_goto_statement_token1] = ACTIONS(8415), + [aux_sym_on_goto_statement_token2] = ACTIONS(8415), + [aux_sym_on_error_statement_token2] = ACTIONS(8415), + [sym__ambiguous_redim_statement] = ACTIONS(8417), + [aux_sym_erase_statement_token1] = ACTIONS(8415), + [aux_sym_open_statement_token1] = ACTIONS(8415), + [aux_sym_file_mode_token2] = ACTIONS(8415), + [aux_sym_file_access_token2] = ACTIONS(8415), + [aux_sym_file_lock_token2] = ACTIONS(8415), + [aux_sym_print_statement_token1] = ACTIONS(8415), + [anon_sym_PLUS] = ACTIONS(8417), + [anon_sym_DASH] = ACTIONS(8415), + [anon_sym_QMARK] = ACTIONS(8417), + [aux_sym_close_statement_token1] = ACTIONS(8415), + [aux_sym_put_statement_token1] = ACTIONS(8415), + [aux_sym_unlock_statement_token1] = ACTIONS(8415), + [aux_sym_seek_statement_token1] = ACTIONS(8415), + [sym_reset_statement] = ACTIONS(8415), + [aux_sym_raise_event_statement_token1] = ACTIONS(8415), + [sym_stop_statement] = ACTIONS(8415), + [sym_beep_statement] = ACTIONS(8415), + [aux_sym_unload_statement_token1] = ACTIONS(8415), + [aux_sym_def_type_statement_token1] = ACTIONS(8415), + [aux_sym_def_type_statement_token2] = ACTIONS(8415), + [aux_sym_def_type_statement_token3] = ACTIONS(8415), + [aux_sym_def_type_statement_token4] = ACTIONS(8415), + [aux_sym_def_type_statement_token5] = ACTIONS(8415), + [aux_sym_def_type_statement_token6] = ACTIONS(8415), + [aux_sym_def_type_statement_token7] = ACTIONS(8415), + [aux_sym_def_type_statement_token8] = ACTIONS(8415), + [aux_sym_def_type_statement_token9] = ACTIONS(8415), + [aux_sym_def_type_statement_token10] = ACTIONS(8415), + [aux_sym_def_type_statement_token11] = ACTIONS(8415), + [aux_sym_def_type_statement_token12] = ACTIONS(8415), + [aux_sym_def_type_statement_token13] = ACTIONS(8415), + [aux_sym_def_type_statement_token14] = ACTIONS(8415), + [aux_sym_call_statement_token1] = ACTIONS(8415), + [sym__ambiguous_call_statement] = ACTIONS(8415), + [aux_sym_addressof_expression_token1] = ACTIONS(8415), + [aux_sym_type_of_expression_token1] = ACTIONS(8415), + [aux_sym_unary_expression_token1] = ACTIONS(8415), + [sym_string_literal] = ACTIONS(8417), + [sym_number_literal] = ACTIONS(8417), + [aux_sym_boolean_literal_token1] = ACTIONS(8415), + [aux_sym_boolean_literal_token2] = ACTIONS(8415), + [sym_nothing_literal] = ACTIONS(8415), + [sym_null_literal] = ACTIONS(8415), + [sym_empty_literal] = ACTIONS(8415), + [sym_date_literal] = ACTIONS(8417), + [anon_sym_POUND] = ACTIONS(8415), + }, + [STATE(5205)] = { + [sym_do_condition] = STATE(7091), + [sym_identifier] = ACTIONS(8419), + [sym_newline] = ACTIONS(8421), + [anon_sym_COLON] = ACTIONS(8421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8419), + [aux_sym_frm_property_statement_token1] = ACTIONS(8419), + [anon_sym_DOT] = ACTIONS(8419), + [anon_sym_BANG] = ACTIONS(8421), + [aux_sym__attribute_identifier_token1] = ACTIONS(8419), + [aux_sym_option_statement_token3] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8419), + [aux_sym_preprocessor_const_token1] = ACTIONS(8419), + [sym_static_modifier] = ACTIONS(8419), + [sym__dim_keyword] = ACTIONS(8419), + [sym__redim_keyword] = ACTIONS(8419), + [aux_sym_get_accessor_token1] = ACTIONS(8419), + [aux_sym_set_accessor_token1] = ACTIONS(8419), + [aux_sym_const_declaration_token1] = ACTIONS(8419), + [anon_sym_LPAREN] = ACTIONS(8421), + [aux_sym_as_type_clause_token2] = ACTIONS(8419), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8419), + [aux_sym_visibility_token1] = ACTIONS(8419), + [aux_sym_visibility_token2] = ACTIONS(8419), + [aux_sym_elseif_fragment_token1] = ACTIONS(8419), + [aux_sym_else_fragment_token1] = ACTIONS(8419), + [aux_sym_select_statement_token1] = ACTIONS(8419), + [aux_sym__for_header_token1] = ACTIONS(8419), + [aux_sym_do_statement_token1] = ACTIONS(8419), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8419), + [aux_sym_with_statement_token1] = ACTIONS(8419), + [aux_sym_exit_statement_token1] = ACTIONS(8419), + [sym_end_statement] = ACTIONS(8421), + [aux_sym_on_goto_statement_token1] = ACTIONS(8419), + [aux_sym_on_goto_statement_token2] = ACTIONS(8419), + [aux_sym_on_error_statement_token2] = ACTIONS(8419), + [sym__ambiguous_redim_statement] = ACTIONS(8421), + [aux_sym_erase_statement_token1] = ACTIONS(8419), + [aux_sym_open_statement_token1] = ACTIONS(8419), + [aux_sym_file_mode_token2] = ACTIONS(8419), + [aux_sym_file_access_token2] = ACTIONS(8419), + [aux_sym_file_lock_token2] = ACTIONS(8419), + [aux_sym_print_statement_token1] = ACTIONS(8419), + [anon_sym_PLUS] = ACTIONS(8421), + [anon_sym_DASH] = ACTIONS(8419), + [anon_sym_QMARK] = ACTIONS(8421), + [aux_sym_close_statement_token1] = ACTIONS(8419), + [aux_sym_put_statement_token1] = ACTIONS(8419), + [aux_sym_unlock_statement_token1] = ACTIONS(8419), + [aux_sym_seek_statement_token1] = ACTIONS(8419), + [sym_reset_statement] = ACTIONS(8419), + [aux_sym_raise_event_statement_token1] = ACTIONS(8419), + [sym_stop_statement] = ACTIONS(8419), + [sym_beep_statement] = ACTIONS(8419), + [aux_sym_unload_statement_token1] = ACTIONS(8419), + [aux_sym_def_type_statement_token1] = ACTIONS(8419), + [aux_sym_def_type_statement_token2] = ACTIONS(8419), + [aux_sym_def_type_statement_token3] = ACTIONS(8419), + [aux_sym_def_type_statement_token4] = ACTIONS(8419), + [aux_sym_def_type_statement_token5] = ACTIONS(8419), + [aux_sym_def_type_statement_token6] = ACTIONS(8419), + [aux_sym_def_type_statement_token7] = ACTIONS(8419), + [aux_sym_def_type_statement_token8] = ACTIONS(8419), + [aux_sym_def_type_statement_token9] = ACTIONS(8419), + [aux_sym_def_type_statement_token10] = ACTIONS(8419), + [aux_sym_def_type_statement_token11] = ACTIONS(8419), + [aux_sym_def_type_statement_token12] = ACTIONS(8419), + [aux_sym_def_type_statement_token13] = ACTIONS(8419), + [aux_sym_def_type_statement_token14] = ACTIONS(8419), + [aux_sym_call_statement_token1] = ACTIONS(8419), + [sym__ambiguous_call_statement] = ACTIONS(8419), + [aux_sym_addressof_expression_token1] = ACTIONS(8419), + [aux_sym_type_of_expression_token1] = ACTIONS(8419), + [aux_sym_unary_expression_token1] = ACTIONS(8419), + [sym_string_literal] = ACTIONS(8421), + [sym_number_literal] = ACTIONS(8421), + [aux_sym_boolean_literal_token1] = ACTIONS(8419), + [aux_sym_boolean_literal_token2] = ACTIONS(8419), + [sym_nothing_literal] = ACTIONS(8419), + [sym_null_literal] = ACTIONS(8419), + [sym_empty_literal] = ACTIONS(8419), + [sym_date_literal] = ACTIONS(8421), + [anon_sym_POUND] = ACTIONS(8419), + }, + [STATE(5206)] = { + [sym_do_condition] = STATE(7092), + [sym_identifier] = ACTIONS(8423), + [sym_newline] = ACTIONS(8425), + [anon_sym_COLON] = ACTIONS(8425), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8423), + [aux_sym_frm_property_statement_token1] = ACTIONS(8423), + [anon_sym_DOT] = ACTIONS(8423), + [anon_sym_BANG] = ACTIONS(8425), + [aux_sym__attribute_identifier_token1] = ACTIONS(8423), + [aux_sym_option_statement_token3] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8423), + [aux_sym_preprocessor_const_token1] = ACTIONS(8423), + [sym_static_modifier] = ACTIONS(8423), + [sym__dim_keyword] = ACTIONS(8423), + [sym__redim_keyword] = ACTIONS(8423), + [aux_sym_get_accessor_token1] = ACTIONS(8423), + [aux_sym_set_accessor_token1] = ACTIONS(8423), + [aux_sym_const_declaration_token1] = ACTIONS(8423), + [anon_sym_LPAREN] = ACTIONS(8425), + [aux_sym_as_type_clause_token2] = ACTIONS(8423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8423), + [aux_sym_visibility_token1] = ACTIONS(8423), + [aux_sym_visibility_token2] = ACTIONS(8423), + [aux_sym_elseif_fragment_token1] = ACTIONS(8423), + [aux_sym_else_fragment_token1] = ACTIONS(8423), + [aux_sym_select_statement_token1] = ACTIONS(8423), + [aux_sym__for_header_token1] = ACTIONS(8423), + [aux_sym_do_statement_token1] = ACTIONS(8423), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8423), + [aux_sym_with_statement_token1] = ACTIONS(8423), + [aux_sym_exit_statement_token1] = ACTIONS(8423), + [sym_end_statement] = ACTIONS(8425), + [aux_sym_on_goto_statement_token1] = ACTIONS(8423), + [aux_sym_on_goto_statement_token2] = ACTIONS(8423), + [aux_sym_on_error_statement_token2] = ACTIONS(8423), + [sym__ambiguous_redim_statement] = ACTIONS(8425), + [aux_sym_erase_statement_token1] = ACTIONS(8423), + [aux_sym_open_statement_token1] = ACTIONS(8423), + [aux_sym_file_mode_token2] = ACTIONS(8423), + [aux_sym_file_access_token2] = ACTIONS(8423), + [aux_sym_file_lock_token2] = ACTIONS(8423), + [aux_sym_print_statement_token1] = ACTIONS(8423), + [anon_sym_PLUS] = ACTIONS(8425), + [anon_sym_DASH] = ACTIONS(8423), + [anon_sym_QMARK] = ACTIONS(8425), + [aux_sym_close_statement_token1] = ACTIONS(8423), + [aux_sym_put_statement_token1] = ACTIONS(8423), + [aux_sym_unlock_statement_token1] = ACTIONS(8423), + [aux_sym_seek_statement_token1] = ACTIONS(8423), + [sym_reset_statement] = ACTIONS(8423), + [aux_sym_raise_event_statement_token1] = ACTIONS(8423), + [sym_stop_statement] = ACTIONS(8423), + [sym_beep_statement] = ACTIONS(8423), + [aux_sym_unload_statement_token1] = ACTIONS(8423), + [aux_sym_def_type_statement_token1] = ACTIONS(8423), + [aux_sym_def_type_statement_token2] = ACTIONS(8423), + [aux_sym_def_type_statement_token3] = ACTIONS(8423), + [aux_sym_def_type_statement_token4] = ACTIONS(8423), + [aux_sym_def_type_statement_token5] = ACTIONS(8423), + [aux_sym_def_type_statement_token6] = ACTIONS(8423), + [aux_sym_def_type_statement_token7] = ACTIONS(8423), + [aux_sym_def_type_statement_token8] = ACTIONS(8423), + [aux_sym_def_type_statement_token9] = ACTIONS(8423), + [aux_sym_def_type_statement_token10] = ACTIONS(8423), + [aux_sym_def_type_statement_token11] = ACTIONS(8423), + [aux_sym_def_type_statement_token12] = ACTIONS(8423), + [aux_sym_def_type_statement_token13] = ACTIONS(8423), + [aux_sym_def_type_statement_token14] = ACTIONS(8423), + [aux_sym_call_statement_token1] = ACTIONS(8423), + [sym__ambiguous_call_statement] = ACTIONS(8423), + [aux_sym_addressof_expression_token1] = ACTIONS(8423), + [aux_sym_type_of_expression_token1] = ACTIONS(8423), + [aux_sym_unary_expression_token1] = ACTIONS(8423), + [sym_string_literal] = ACTIONS(8425), + [sym_number_literal] = ACTIONS(8425), + [aux_sym_boolean_literal_token1] = ACTIONS(8423), + [aux_sym_boolean_literal_token2] = ACTIONS(8423), + [sym_nothing_literal] = ACTIONS(8423), + [sym_null_literal] = ACTIONS(8423), + [sym_empty_literal] = ACTIONS(8423), + [sym_date_literal] = ACTIONS(8425), + [anon_sym_POUND] = ACTIONS(8423), + }, + [STATE(5207)] = { + [sym_do_condition] = STATE(7095), + [sym_identifier] = ACTIONS(8427), + [sym_newline] = ACTIONS(8429), + [anon_sym_COLON] = ACTIONS(8429), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8427), + [aux_sym_frm_property_statement_token1] = ACTIONS(8427), + [anon_sym_DOT] = ACTIONS(8427), + [anon_sym_BANG] = ACTIONS(8429), + [aux_sym__attribute_identifier_token1] = ACTIONS(8427), + [aux_sym_option_statement_token3] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8427), + [aux_sym_preprocessor_const_token1] = ACTIONS(8427), + [sym_static_modifier] = ACTIONS(8427), + [sym__dim_keyword] = ACTIONS(8427), + [sym__redim_keyword] = ACTIONS(8427), + [aux_sym_get_accessor_token1] = ACTIONS(8427), + [aux_sym_set_accessor_token1] = ACTIONS(8427), + [aux_sym_const_declaration_token1] = ACTIONS(8427), + [anon_sym_LPAREN] = ACTIONS(8429), + [aux_sym_as_type_clause_token2] = ACTIONS(8427), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8427), + [aux_sym_visibility_token1] = ACTIONS(8427), + [aux_sym_visibility_token2] = ACTIONS(8427), + [aux_sym_elseif_fragment_token1] = ACTIONS(8427), + [aux_sym_else_fragment_token1] = ACTIONS(8427), + [aux_sym_select_statement_token1] = ACTIONS(8427), + [aux_sym__for_header_token1] = ACTIONS(8427), + [aux_sym_do_statement_token1] = ACTIONS(8427), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8427), + [aux_sym_with_statement_token1] = ACTIONS(8427), + [aux_sym_exit_statement_token1] = ACTIONS(8427), + [sym_end_statement] = ACTIONS(8429), + [aux_sym_on_goto_statement_token1] = ACTIONS(8427), + [aux_sym_on_goto_statement_token2] = ACTIONS(8427), + [aux_sym_on_error_statement_token2] = ACTIONS(8427), + [sym__ambiguous_redim_statement] = ACTIONS(8429), + [aux_sym_erase_statement_token1] = ACTIONS(8427), + [aux_sym_open_statement_token1] = ACTIONS(8427), + [aux_sym_file_mode_token2] = ACTIONS(8427), + [aux_sym_file_access_token2] = ACTIONS(8427), + [aux_sym_file_lock_token2] = ACTIONS(8427), + [aux_sym_print_statement_token1] = ACTIONS(8427), + [anon_sym_PLUS] = ACTIONS(8429), + [anon_sym_DASH] = ACTIONS(8427), + [anon_sym_QMARK] = ACTIONS(8429), + [aux_sym_close_statement_token1] = ACTIONS(8427), + [aux_sym_put_statement_token1] = ACTIONS(8427), + [aux_sym_unlock_statement_token1] = ACTIONS(8427), + [aux_sym_seek_statement_token1] = ACTIONS(8427), + [sym_reset_statement] = ACTIONS(8427), + [aux_sym_raise_event_statement_token1] = ACTIONS(8427), + [sym_stop_statement] = ACTIONS(8427), + [sym_beep_statement] = ACTIONS(8427), + [aux_sym_unload_statement_token1] = ACTIONS(8427), + [aux_sym_def_type_statement_token1] = ACTIONS(8427), + [aux_sym_def_type_statement_token2] = ACTIONS(8427), + [aux_sym_def_type_statement_token3] = ACTIONS(8427), + [aux_sym_def_type_statement_token4] = ACTIONS(8427), + [aux_sym_def_type_statement_token5] = ACTIONS(8427), + [aux_sym_def_type_statement_token6] = ACTIONS(8427), + [aux_sym_def_type_statement_token7] = ACTIONS(8427), + [aux_sym_def_type_statement_token8] = ACTIONS(8427), + [aux_sym_def_type_statement_token9] = ACTIONS(8427), + [aux_sym_def_type_statement_token10] = ACTIONS(8427), + [aux_sym_def_type_statement_token11] = ACTIONS(8427), + [aux_sym_def_type_statement_token12] = ACTIONS(8427), + [aux_sym_def_type_statement_token13] = ACTIONS(8427), + [aux_sym_def_type_statement_token14] = ACTIONS(8427), + [aux_sym_call_statement_token1] = ACTIONS(8427), + [sym__ambiguous_call_statement] = ACTIONS(8427), + [aux_sym_addressof_expression_token1] = ACTIONS(8427), + [aux_sym_type_of_expression_token1] = ACTIONS(8427), + [aux_sym_unary_expression_token1] = ACTIONS(8427), + [sym_string_literal] = ACTIONS(8429), + [sym_number_literal] = ACTIONS(8429), + [aux_sym_boolean_literal_token1] = ACTIONS(8427), + [aux_sym_boolean_literal_token2] = ACTIONS(8427), + [sym_nothing_literal] = ACTIONS(8427), + [sym_null_literal] = ACTIONS(8427), + [sym_empty_literal] = ACTIONS(8427), + [sym_date_literal] = ACTIONS(8429), + [anon_sym_POUND] = ACTIONS(8427), + }, + [STATE(5208)] = { + [sym_do_condition] = STATE(7096), + [sym_identifier] = ACTIONS(8431), + [sym_newline] = ACTIONS(8433), + [anon_sym_COLON] = ACTIONS(8433), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8431), + [aux_sym_frm_property_statement_token1] = ACTIONS(8431), + [anon_sym_DOT] = ACTIONS(8431), + [anon_sym_BANG] = ACTIONS(8433), + [aux_sym__attribute_identifier_token1] = ACTIONS(8431), + [aux_sym_option_statement_token3] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8431), + [aux_sym_preprocessor_const_token1] = ACTIONS(8431), + [sym_static_modifier] = ACTIONS(8431), + [sym__dim_keyword] = ACTIONS(8431), + [sym__redim_keyword] = ACTIONS(8431), + [aux_sym_get_accessor_token1] = ACTIONS(8431), + [aux_sym_set_accessor_token1] = ACTIONS(8431), + [aux_sym_const_declaration_token1] = ACTIONS(8431), + [anon_sym_LPAREN] = ACTIONS(8433), + [aux_sym_as_type_clause_token2] = ACTIONS(8431), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8431), + [aux_sym_visibility_token1] = ACTIONS(8431), + [aux_sym_visibility_token2] = ACTIONS(8431), + [aux_sym_elseif_fragment_token1] = ACTIONS(8431), + [aux_sym_else_fragment_token1] = ACTIONS(8431), + [aux_sym_select_statement_token1] = ACTIONS(8431), + [aux_sym__for_header_token1] = ACTIONS(8431), + [aux_sym_do_statement_token1] = ACTIONS(8431), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8431), + [aux_sym_with_statement_token1] = ACTIONS(8431), + [aux_sym_exit_statement_token1] = ACTIONS(8431), + [sym_end_statement] = ACTIONS(8433), + [aux_sym_on_goto_statement_token1] = ACTIONS(8431), + [aux_sym_on_goto_statement_token2] = ACTIONS(8431), + [aux_sym_on_error_statement_token2] = ACTIONS(8431), + [sym__ambiguous_redim_statement] = ACTIONS(8433), + [aux_sym_erase_statement_token1] = ACTIONS(8431), + [aux_sym_open_statement_token1] = ACTIONS(8431), + [aux_sym_file_mode_token2] = ACTIONS(8431), + [aux_sym_file_access_token2] = ACTIONS(8431), + [aux_sym_file_lock_token2] = ACTIONS(8431), + [aux_sym_print_statement_token1] = ACTIONS(8431), + [anon_sym_PLUS] = ACTIONS(8433), + [anon_sym_DASH] = ACTIONS(8431), + [anon_sym_QMARK] = ACTIONS(8433), + [aux_sym_close_statement_token1] = ACTIONS(8431), + [aux_sym_put_statement_token1] = ACTIONS(8431), + [aux_sym_unlock_statement_token1] = ACTIONS(8431), + [aux_sym_seek_statement_token1] = ACTIONS(8431), + [sym_reset_statement] = ACTIONS(8431), + [aux_sym_raise_event_statement_token1] = ACTIONS(8431), + [sym_stop_statement] = ACTIONS(8431), + [sym_beep_statement] = ACTIONS(8431), + [aux_sym_unload_statement_token1] = ACTIONS(8431), + [aux_sym_def_type_statement_token1] = ACTIONS(8431), + [aux_sym_def_type_statement_token2] = ACTIONS(8431), + [aux_sym_def_type_statement_token3] = ACTIONS(8431), + [aux_sym_def_type_statement_token4] = ACTIONS(8431), + [aux_sym_def_type_statement_token5] = ACTIONS(8431), + [aux_sym_def_type_statement_token6] = ACTIONS(8431), + [aux_sym_def_type_statement_token7] = ACTIONS(8431), + [aux_sym_def_type_statement_token8] = ACTIONS(8431), + [aux_sym_def_type_statement_token9] = ACTIONS(8431), + [aux_sym_def_type_statement_token10] = ACTIONS(8431), + [aux_sym_def_type_statement_token11] = ACTIONS(8431), + [aux_sym_def_type_statement_token12] = ACTIONS(8431), + [aux_sym_def_type_statement_token13] = ACTIONS(8431), + [aux_sym_def_type_statement_token14] = ACTIONS(8431), + [aux_sym_call_statement_token1] = ACTIONS(8431), + [sym__ambiguous_call_statement] = ACTIONS(8431), + [aux_sym_addressof_expression_token1] = ACTIONS(8431), + [aux_sym_type_of_expression_token1] = ACTIONS(8431), + [aux_sym_unary_expression_token1] = ACTIONS(8431), + [sym_string_literal] = ACTIONS(8433), + [sym_number_literal] = ACTIONS(8433), + [aux_sym_boolean_literal_token1] = ACTIONS(8431), + [aux_sym_boolean_literal_token2] = ACTIONS(8431), + [sym_nothing_literal] = ACTIONS(8431), + [sym_null_literal] = ACTIONS(8431), + [sym_empty_literal] = ACTIONS(8431), + [sym_date_literal] = ACTIONS(8433), + [anon_sym_POUND] = ACTIONS(8431), + }, + [STATE(5209)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5320), + [sym_identifier] = ACTIONS(8435), + [sym_newline] = ACTIONS(8437), + [anon_sym_COLON] = ACTIONS(8437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8435), + [aux_sym_frm_property_statement_token1] = ACTIONS(8435), + [anon_sym_DOT] = ACTIONS(8435), + [anon_sym_BANG] = ACTIONS(8437), + [aux_sym__attribute_identifier_token1] = ACTIONS(8435), + [aux_sym_option_statement_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8435), + [aux_sym_preprocessor_const_token1] = ACTIONS(8435), + [sym_static_modifier] = ACTIONS(8435), + [sym__dim_keyword] = ACTIONS(8435), + [sym__redim_keyword] = ACTIONS(8435), + [aux_sym_get_accessor_token1] = ACTIONS(8435), + [aux_sym_set_accessor_token1] = ACTIONS(8435), + [anon_sym_COMMA] = ACTIONS(5162), + [aux_sym_const_declaration_token1] = ACTIONS(8435), + [anon_sym_LPAREN] = ACTIONS(8437), + [aux_sym_as_type_clause_token2] = ACTIONS(8435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8435), + [aux_sym_visibility_token1] = ACTIONS(8435), + [aux_sym_visibility_token2] = ACTIONS(8435), + [aux_sym_elseif_fragment_token1] = ACTIONS(8435), + [aux_sym_else_fragment_token1] = ACTIONS(8435), + [aux_sym_select_statement_token1] = ACTIONS(8435), + [aux_sym__for_header_token1] = ACTIONS(8435), + [aux_sym_do_statement_token1] = ACTIONS(8435), + [aux_sym_do_condition_token1] = ACTIONS(8435), + [aux_sym_while_statement_token1] = ACTIONS(8435), + [aux_sym_with_statement_token1] = ACTIONS(8435), + [aux_sym_exit_statement_token1] = ACTIONS(8435), + [sym_end_statement] = ACTIONS(8437), + [aux_sym_on_goto_statement_token1] = ACTIONS(8435), + [aux_sym_on_goto_statement_token2] = ACTIONS(8435), + [aux_sym_on_error_statement_token2] = ACTIONS(8435), + [sym__ambiguous_redim_statement] = ACTIONS(8437), + [aux_sym_erase_statement_token1] = ACTIONS(8435), + [aux_sym_open_statement_token1] = ACTIONS(8435), + [aux_sym_file_mode_token2] = ACTIONS(8435), + [aux_sym_file_access_token2] = ACTIONS(8435), + [aux_sym_file_lock_token2] = ACTIONS(8435), + [aux_sym_print_statement_token1] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(8437), + [anon_sym_DASH] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8437), + [aux_sym_close_statement_token1] = ACTIONS(8435), + [aux_sym_put_statement_token1] = ACTIONS(8435), + [aux_sym_unlock_statement_token1] = ACTIONS(8435), + [aux_sym_seek_statement_token1] = ACTIONS(8435), + [sym_reset_statement] = ACTIONS(8435), + [aux_sym_raise_event_statement_token1] = ACTIONS(8435), + [sym_stop_statement] = ACTIONS(8435), + [sym_beep_statement] = ACTIONS(8435), + [aux_sym_unload_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token2] = ACTIONS(8435), + [aux_sym_def_type_statement_token3] = ACTIONS(8435), + [aux_sym_def_type_statement_token4] = ACTIONS(8435), + [aux_sym_def_type_statement_token5] = ACTIONS(8435), + [aux_sym_def_type_statement_token6] = ACTIONS(8435), + [aux_sym_def_type_statement_token7] = ACTIONS(8435), + [aux_sym_def_type_statement_token8] = ACTIONS(8435), + [aux_sym_def_type_statement_token9] = ACTIONS(8435), + [aux_sym_def_type_statement_token10] = ACTIONS(8435), + [aux_sym_def_type_statement_token11] = ACTIONS(8435), + [aux_sym_def_type_statement_token12] = ACTIONS(8435), + [aux_sym_def_type_statement_token13] = ACTIONS(8435), + [aux_sym_def_type_statement_token14] = ACTIONS(8435), + [aux_sym_call_statement_token1] = ACTIONS(8435), + [sym__ambiguous_call_statement] = ACTIONS(8435), + [aux_sym_addressof_expression_token1] = ACTIONS(8435), + [aux_sym_type_of_expression_token1] = ACTIONS(8435), + [aux_sym_unary_expression_token1] = ACTIONS(8435), + [sym_string_literal] = ACTIONS(8437), + [sym_number_literal] = ACTIONS(8437), + [aux_sym_boolean_literal_token1] = ACTIONS(8435), + [aux_sym_boolean_literal_token2] = ACTIONS(8435), + [sym_nothing_literal] = ACTIONS(8435), + [sym_null_literal] = ACTIONS(8435), + [sym_empty_literal] = ACTIONS(8435), + [sym_date_literal] = ACTIONS(8437), + [anon_sym_POUND] = ACTIONS(8435), + }, + [STATE(5210)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5215), + [sym_identifier] = ACTIONS(8435), + [sym_newline] = ACTIONS(8437), + [anon_sym_COLON] = ACTIONS(8437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8435), + [aux_sym_frm_property_statement_token1] = ACTIONS(8435), + [anon_sym_DOT] = ACTIONS(8435), + [anon_sym_BANG] = ACTIONS(8437), + [aux_sym__attribute_identifier_token1] = ACTIONS(8435), + [aux_sym_option_statement_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8435), + [aux_sym_preprocessor_const_token1] = ACTIONS(8435), + [sym_static_modifier] = ACTIONS(8435), + [sym__dim_keyword] = ACTIONS(8435), + [sym__redim_keyword] = ACTIONS(8435), + [aux_sym_get_accessor_token1] = ACTIONS(8435), + [aux_sym_set_accessor_token1] = ACTIONS(8435), + [anon_sym_COMMA] = ACTIONS(5162), + [aux_sym_const_declaration_token1] = ACTIONS(8435), + [anon_sym_LPAREN] = ACTIONS(8437), + [aux_sym_as_type_clause_token2] = ACTIONS(8435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8435), + [aux_sym_visibility_token1] = ACTIONS(8435), + [aux_sym_visibility_token2] = ACTIONS(8435), + [aux_sym_elseif_fragment_token1] = ACTIONS(8435), + [aux_sym_else_fragment_token1] = ACTIONS(8435), + [aux_sym_select_statement_token1] = ACTIONS(8435), + [aux_sym__for_header_token1] = ACTIONS(8435), + [aux_sym_do_statement_token1] = ACTIONS(8435), + [aux_sym_do_condition_token1] = ACTIONS(8435), + [aux_sym_while_statement_token1] = ACTIONS(8435), + [aux_sym_with_statement_token1] = ACTIONS(8435), + [aux_sym_exit_statement_token1] = ACTIONS(8435), + [sym_end_statement] = ACTIONS(8437), + [aux_sym_on_goto_statement_token1] = ACTIONS(8435), + [aux_sym_on_goto_statement_token2] = ACTIONS(8435), + [aux_sym_on_error_statement_token2] = ACTIONS(8435), + [sym__ambiguous_redim_statement] = ACTIONS(8437), + [aux_sym_erase_statement_token1] = ACTIONS(8435), + [aux_sym_open_statement_token1] = ACTIONS(8435), + [aux_sym_file_mode_token2] = ACTIONS(8435), + [aux_sym_file_access_token2] = ACTIONS(8435), + [aux_sym_file_lock_token2] = ACTIONS(8435), + [aux_sym_print_statement_token1] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(8437), + [anon_sym_DASH] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8437), + [aux_sym_close_statement_token1] = ACTIONS(8435), + [aux_sym_put_statement_token1] = ACTIONS(8435), + [aux_sym_unlock_statement_token1] = ACTIONS(8435), + [aux_sym_seek_statement_token1] = ACTIONS(8435), + [sym_reset_statement] = ACTIONS(8435), + [aux_sym_raise_event_statement_token1] = ACTIONS(8435), + [sym_stop_statement] = ACTIONS(8435), + [sym_beep_statement] = ACTIONS(8435), + [aux_sym_unload_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token2] = ACTIONS(8435), + [aux_sym_def_type_statement_token3] = ACTIONS(8435), + [aux_sym_def_type_statement_token4] = ACTIONS(8435), + [aux_sym_def_type_statement_token5] = ACTIONS(8435), + [aux_sym_def_type_statement_token6] = ACTIONS(8435), + [aux_sym_def_type_statement_token7] = ACTIONS(8435), + [aux_sym_def_type_statement_token8] = ACTIONS(8435), + [aux_sym_def_type_statement_token9] = ACTIONS(8435), + [aux_sym_def_type_statement_token10] = ACTIONS(8435), + [aux_sym_def_type_statement_token11] = ACTIONS(8435), + [aux_sym_def_type_statement_token12] = ACTIONS(8435), + [aux_sym_def_type_statement_token13] = ACTIONS(8435), + [aux_sym_def_type_statement_token14] = ACTIONS(8435), + [aux_sym_call_statement_token1] = ACTIONS(8435), + [sym__ambiguous_call_statement] = ACTIONS(8435), + [aux_sym_addressof_expression_token1] = ACTIONS(8435), + [aux_sym_type_of_expression_token1] = ACTIONS(8435), + [aux_sym_unary_expression_token1] = ACTIONS(8435), + [sym_string_literal] = ACTIONS(8437), + [sym_number_literal] = ACTIONS(8437), + [aux_sym_boolean_literal_token1] = ACTIONS(8435), + [aux_sym_boolean_literal_token2] = ACTIONS(8435), + [sym_nothing_literal] = ACTIONS(8435), + [sym_null_literal] = ACTIONS(8435), + [sym_empty_literal] = ACTIONS(8435), + [sym_date_literal] = ACTIONS(8437), + [anon_sym_POUND] = ACTIONS(8435), + }, + [STATE(5211)] = { + [aux_sym_const_declaration_repeat1] = STATE(5558), + [sym_identifier] = ACTIONS(8174), + [sym_newline] = ACTIONS(8176), + [anon_sym_COLON] = ACTIONS(8176), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8174), + [aux_sym_frm_property_statement_token1] = ACTIONS(8174), + [anon_sym_DOT] = ACTIONS(8174), + [anon_sym_BANG] = ACTIONS(8176), + [aux_sym__attribute_identifier_token1] = ACTIONS(8174), + [aux_sym_option_statement_token3] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8174), + [aux_sym_preprocessor_const_token1] = ACTIONS(8174), + [sym_static_modifier] = ACTIONS(8174), + [sym__dim_keyword] = ACTIONS(8174), + [sym__redim_keyword] = ACTIONS(8174), + [aux_sym_get_accessor_token1] = ACTIONS(8174), + [aux_sym_set_accessor_token1] = ACTIONS(8174), + [anon_sym_COMMA] = ACTIONS(10487), + [aux_sym_const_declaration_token1] = ACTIONS(8174), + [anon_sym_LPAREN] = ACTIONS(8176), + [aux_sym_as_type_clause_token2] = ACTIONS(8174), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8174), + [aux_sym_visibility_token1] = ACTIONS(8174), + [aux_sym_visibility_token2] = ACTIONS(8174), + [aux_sym_elseif_fragment_token1] = ACTIONS(8174), + [aux_sym_else_fragment_token1] = ACTIONS(8174), + [aux_sym_select_statement_token1] = ACTIONS(8174), + [aux_sym_select_statement_token2] = ACTIONS(8174), + [aux_sym__for_header_token1] = ACTIONS(8174), + [aux_sym_do_statement_token1] = ACTIONS(8174), + [aux_sym_do_condition_token1] = ACTIONS(8174), + [aux_sym_with_statement_token1] = ACTIONS(8174), + [aux_sym_exit_statement_token1] = ACTIONS(8174), + [sym_end_statement] = ACTIONS(8176), + [aux_sym_on_goto_statement_token1] = ACTIONS(8174), + [aux_sym_on_goto_statement_token2] = ACTIONS(8174), + [aux_sym_on_error_statement_token2] = ACTIONS(8174), + [sym__ambiguous_redim_statement] = ACTIONS(8176), + [aux_sym_erase_statement_token1] = ACTIONS(8174), + [aux_sym_open_statement_token1] = ACTIONS(8174), + [aux_sym_file_mode_token2] = ACTIONS(8174), + [aux_sym_file_access_token2] = ACTIONS(8174), + [aux_sym_file_lock_token2] = ACTIONS(8174), + [aux_sym_print_statement_token1] = ACTIONS(8174), + [anon_sym_PLUS] = ACTIONS(8176), + [anon_sym_DASH] = ACTIONS(8174), + [anon_sym_QMARK] = ACTIONS(8176), + [aux_sym_close_statement_token1] = ACTIONS(8174), + [aux_sym_put_statement_token1] = ACTIONS(8174), + [aux_sym_unlock_statement_token1] = ACTIONS(8174), + [aux_sym_seek_statement_token1] = ACTIONS(8174), + [sym_reset_statement] = ACTIONS(8174), + [aux_sym_raise_event_statement_token1] = ACTIONS(8174), + [sym_stop_statement] = ACTIONS(8174), + [sym_beep_statement] = ACTIONS(8174), + [aux_sym_unload_statement_token1] = ACTIONS(8174), + [aux_sym_def_type_statement_token1] = ACTIONS(8174), + [aux_sym_def_type_statement_token2] = ACTIONS(8174), + [aux_sym_def_type_statement_token3] = ACTIONS(8174), + [aux_sym_def_type_statement_token4] = ACTIONS(8174), + [aux_sym_def_type_statement_token5] = ACTIONS(8174), + [aux_sym_def_type_statement_token6] = ACTIONS(8174), + [aux_sym_def_type_statement_token7] = ACTIONS(8174), + [aux_sym_def_type_statement_token8] = ACTIONS(8174), + [aux_sym_def_type_statement_token9] = ACTIONS(8174), + [aux_sym_def_type_statement_token10] = ACTIONS(8174), + [aux_sym_def_type_statement_token11] = ACTIONS(8174), + [aux_sym_def_type_statement_token12] = ACTIONS(8174), + [aux_sym_def_type_statement_token13] = ACTIONS(8174), + [aux_sym_def_type_statement_token14] = ACTIONS(8174), + [aux_sym_call_statement_token1] = ACTIONS(8174), + [sym__ambiguous_call_statement] = ACTIONS(8174), + [aux_sym_addressof_expression_token1] = ACTIONS(8174), + [aux_sym_type_of_expression_token1] = ACTIONS(8174), + [aux_sym_unary_expression_token1] = ACTIONS(8174), + [sym_string_literal] = ACTIONS(8176), + [sym_number_literal] = ACTIONS(8176), + [aux_sym_boolean_literal_token1] = ACTIONS(8174), + [aux_sym_boolean_literal_token2] = ACTIONS(8174), + [sym_nothing_literal] = ACTIONS(8174), + [sym_null_literal] = ACTIONS(8174), + [sym_empty_literal] = ACTIONS(8174), + [sym_date_literal] = ACTIONS(8176), + [anon_sym_POUND] = ACTIONS(8174), + }, + [STATE(5212)] = { + [sym_do_condition] = STATE(7118), + [sym_identifier] = ACTIONS(8471), + [sym_newline] = ACTIONS(8473), + [anon_sym_COLON] = ACTIONS(8473), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8471), + [aux_sym_frm_property_statement_token1] = ACTIONS(8471), + [anon_sym_DOT] = ACTIONS(8471), + [anon_sym_BANG] = ACTIONS(8473), + [aux_sym__attribute_identifier_token1] = ACTIONS(8471), + [aux_sym_option_statement_token3] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8471), + [aux_sym_preprocessor_const_token1] = ACTIONS(8471), + [sym_static_modifier] = ACTIONS(8471), + [sym__dim_keyword] = ACTIONS(8471), + [sym__redim_keyword] = ACTIONS(8471), + [aux_sym_get_accessor_token1] = ACTIONS(8471), + [aux_sym_set_accessor_token1] = ACTIONS(8471), + [aux_sym_const_declaration_token1] = ACTIONS(8471), + [anon_sym_LPAREN] = ACTIONS(8473), + [aux_sym_as_type_clause_token2] = ACTIONS(8471), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8471), + [aux_sym_visibility_token1] = ACTIONS(8471), + [aux_sym_visibility_token2] = ACTIONS(8471), + [aux_sym_elseif_fragment_token1] = ACTIONS(8471), + [aux_sym_else_fragment_token1] = ACTIONS(8471), + [aux_sym_select_statement_token1] = ACTIONS(8471), + [aux_sym__for_header_token1] = ACTIONS(8471), + [aux_sym_do_statement_token1] = ACTIONS(8471), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8471), + [aux_sym_with_statement_token1] = ACTIONS(8471), + [aux_sym_exit_statement_token1] = ACTIONS(8471), + [sym_end_statement] = ACTIONS(8473), + [aux_sym_on_goto_statement_token1] = ACTIONS(8471), + [aux_sym_on_goto_statement_token2] = ACTIONS(8471), + [aux_sym_on_error_statement_token2] = ACTIONS(8471), + [sym__ambiguous_redim_statement] = ACTIONS(8473), + [aux_sym_erase_statement_token1] = ACTIONS(8471), + [aux_sym_open_statement_token1] = ACTIONS(8471), + [aux_sym_file_mode_token2] = ACTIONS(8471), + [aux_sym_file_access_token2] = ACTIONS(8471), + [aux_sym_file_lock_token2] = ACTIONS(8471), + [aux_sym_print_statement_token1] = ACTIONS(8471), + [anon_sym_PLUS] = ACTIONS(8473), + [anon_sym_DASH] = ACTIONS(8471), + [anon_sym_QMARK] = ACTIONS(8473), + [aux_sym_close_statement_token1] = ACTIONS(8471), + [aux_sym_put_statement_token1] = ACTIONS(8471), + [aux_sym_unlock_statement_token1] = ACTIONS(8471), + [aux_sym_seek_statement_token1] = ACTIONS(8471), + [sym_reset_statement] = ACTIONS(8471), + [aux_sym_raise_event_statement_token1] = ACTIONS(8471), + [sym_stop_statement] = ACTIONS(8471), + [sym_beep_statement] = ACTIONS(8471), + [aux_sym_unload_statement_token1] = ACTIONS(8471), + [aux_sym_def_type_statement_token1] = ACTIONS(8471), + [aux_sym_def_type_statement_token2] = ACTIONS(8471), + [aux_sym_def_type_statement_token3] = ACTIONS(8471), + [aux_sym_def_type_statement_token4] = ACTIONS(8471), + [aux_sym_def_type_statement_token5] = ACTIONS(8471), + [aux_sym_def_type_statement_token6] = ACTIONS(8471), + [aux_sym_def_type_statement_token7] = ACTIONS(8471), + [aux_sym_def_type_statement_token8] = ACTIONS(8471), + [aux_sym_def_type_statement_token9] = ACTIONS(8471), + [aux_sym_def_type_statement_token10] = ACTIONS(8471), + [aux_sym_def_type_statement_token11] = ACTIONS(8471), + [aux_sym_def_type_statement_token12] = ACTIONS(8471), + [aux_sym_def_type_statement_token13] = ACTIONS(8471), + [aux_sym_def_type_statement_token14] = ACTIONS(8471), + [aux_sym_call_statement_token1] = ACTIONS(8471), + [sym__ambiguous_call_statement] = ACTIONS(8471), + [aux_sym_addressof_expression_token1] = ACTIONS(8471), + [aux_sym_type_of_expression_token1] = ACTIONS(8471), + [aux_sym_unary_expression_token1] = ACTIONS(8471), + [sym_string_literal] = ACTIONS(8473), + [sym_number_literal] = ACTIONS(8473), + [aux_sym_boolean_literal_token1] = ACTIONS(8471), + [aux_sym_boolean_literal_token2] = ACTIONS(8471), + [sym_nothing_literal] = ACTIONS(8471), + [sym_null_literal] = ACTIONS(8471), + [sym_empty_literal] = ACTIONS(8471), + [sym_date_literal] = ACTIONS(8473), + [anon_sym_POUND] = ACTIONS(8471), + }, + [STATE(5213)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_statement_token2] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(5214)] = { + [sym_do_condition] = STATE(7119), + [sym_identifier] = ACTIONS(8479), + [sym_newline] = ACTIONS(8481), + [anon_sym_COLON] = ACTIONS(8481), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8479), + [aux_sym_frm_property_statement_token1] = ACTIONS(8479), + [anon_sym_DOT] = ACTIONS(8479), + [anon_sym_BANG] = ACTIONS(8481), + [aux_sym__attribute_identifier_token1] = ACTIONS(8479), + [aux_sym_option_statement_token3] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8479), + [aux_sym_preprocessor_const_token1] = ACTIONS(8479), + [sym_static_modifier] = ACTIONS(8479), + [sym__dim_keyword] = ACTIONS(8479), + [sym__redim_keyword] = ACTIONS(8479), + [aux_sym_get_accessor_token1] = ACTIONS(8479), + [aux_sym_set_accessor_token1] = ACTIONS(8479), + [aux_sym_const_declaration_token1] = ACTIONS(8479), + [anon_sym_LPAREN] = ACTIONS(8481), + [aux_sym_as_type_clause_token2] = ACTIONS(8479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8479), + [aux_sym_visibility_token1] = ACTIONS(8479), + [aux_sym_visibility_token2] = ACTIONS(8479), + [aux_sym_elseif_fragment_token1] = ACTIONS(8479), + [aux_sym_else_fragment_token1] = ACTIONS(8479), + [aux_sym_select_statement_token1] = ACTIONS(8479), + [aux_sym__for_header_token1] = ACTIONS(8479), + [aux_sym_do_statement_token1] = ACTIONS(8479), + [aux_sym_do_condition_token1] = ACTIONS(10450), + [aux_sym_do_condition_token2] = ACTIONS(10450), + [aux_sym_while_statement_token1] = ACTIONS(8479), + [aux_sym_with_statement_token1] = ACTIONS(8479), + [aux_sym_exit_statement_token1] = ACTIONS(8479), + [sym_end_statement] = ACTIONS(8481), + [aux_sym_on_goto_statement_token1] = ACTIONS(8479), + [aux_sym_on_goto_statement_token2] = ACTIONS(8479), + [aux_sym_on_error_statement_token2] = ACTIONS(8479), + [sym__ambiguous_redim_statement] = ACTIONS(8481), + [aux_sym_erase_statement_token1] = ACTIONS(8479), + [aux_sym_open_statement_token1] = ACTIONS(8479), + [aux_sym_file_mode_token2] = ACTIONS(8479), + [aux_sym_file_access_token2] = ACTIONS(8479), + [aux_sym_file_lock_token2] = ACTIONS(8479), + [aux_sym_print_statement_token1] = ACTIONS(8479), + [anon_sym_PLUS] = ACTIONS(8481), + [anon_sym_DASH] = ACTIONS(8479), + [anon_sym_QMARK] = ACTIONS(8481), + [aux_sym_close_statement_token1] = ACTIONS(8479), + [aux_sym_put_statement_token1] = ACTIONS(8479), + [aux_sym_unlock_statement_token1] = ACTIONS(8479), + [aux_sym_seek_statement_token1] = ACTIONS(8479), + [sym_reset_statement] = ACTIONS(8479), + [aux_sym_raise_event_statement_token1] = ACTIONS(8479), + [sym_stop_statement] = ACTIONS(8479), + [sym_beep_statement] = ACTIONS(8479), + [aux_sym_unload_statement_token1] = ACTIONS(8479), + [aux_sym_def_type_statement_token1] = ACTIONS(8479), + [aux_sym_def_type_statement_token2] = ACTIONS(8479), + [aux_sym_def_type_statement_token3] = ACTIONS(8479), + [aux_sym_def_type_statement_token4] = ACTIONS(8479), + [aux_sym_def_type_statement_token5] = ACTIONS(8479), + [aux_sym_def_type_statement_token6] = ACTIONS(8479), + [aux_sym_def_type_statement_token7] = ACTIONS(8479), + [aux_sym_def_type_statement_token8] = ACTIONS(8479), + [aux_sym_def_type_statement_token9] = ACTIONS(8479), + [aux_sym_def_type_statement_token10] = ACTIONS(8479), + [aux_sym_def_type_statement_token11] = ACTIONS(8479), + [aux_sym_def_type_statement_token12] = ACTIONS(8479), + [aux_sym_def_type_statement_token13] = ACTIONS(8479), + [aux_sym_def_type_statement_token14] = ACTIONS(8479), + [aux_sym_call_statement_token1] = ACTIONS(8479), + [sym__ambiguous_call_statement] = ACTIONS(8479), + [aux_sym_addressof_expression_token1] = ACTIONS(8479), + [aux_sym_type_of_expression_token1] = ACTIONS(8479), + [aux_sym_unary_expression_token1] = ACTIONS(8479), + [sym_string_literal] = ACTIONS(8481), + [sym_number_literal] = ACTIONS(8481), + [aux_sym_boolean_literal_token1] = ACTIONS(8479), + [aux_sym_boolean_literal_token2] = ACTIONS(8479), + [sym_nothing_literal] = ACTIONS(8479), + [sym_null_literal] = ACTIONS(8479), + [sym_empty_literal] = ACTIONS(8479), + [sym_date_literal] = ACTIONS(8481), + [anon_sym_POUND] = ACTIONS(8479), + }, + [STATE(5215)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5320), + [sym_identifier] = ACTIONS(8483), + [sym_newline] = ACTIONS(8485), + [anon_sym_COLON] = ACTIONS(8485), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8483), + [aux_sym_frm_property_statement_token1] = ACTIONS(8483), + [anon_sym_DOT] = ACTIONS(8483), + [anon_sym_BANG] = ACTIONS(8485), + [aux_sym__attribute_identifier_token1] = ACTIONS(8483), + [aux_sym_option_statement_token3] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8483), + [aux_sym_preprocessor_const_token1] = ACTIONS(8483), + [sym_static_modifier] = ACTIONS(8483), + [sym__dim_keyword] = ACTIONS(8483), + [sym__redim_keyword] = ACTIONS(8483), + [aux_sym_get_accessor_token1] = ACTIONS(8483), + [aux_sym_set_accessor_token1] = ACTIONS(8483), + [anon_sym_COMMA] = ACTIONS(5162), + [aux_sym_const_declaration_token1] = ACTIONS(8483), + [anon_sym_LPAREN] = ACTIONS(8485), + [aux_sym_as_type_clause_token2] = ACTIONS(8483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8483), + [aux_sym_visibility_token1] = ACTIONS(8483), + [aux_sym_visibility_token2] = ACTIONS(8483), + [aux_sym_elseif_fragment_token1] = ACTIONS(8483), + [aux_sym_else_fragment_token1] = ACTIONS(8483), + [aux_sym_select_statement_token1] = ACTIONS(8483), + [aux_sym__for_header_token1] = ACTIONS(8483), + [aux_sym_do_statement_token1] = ACTIONS(8483), + [aux_sym_do_condition_token1] = ACTIONS(8483), + [aux_sym_while_statement_token1] = ACTIONS(8483), + [aux_sym_with_statement_token1] = ACTIONS(8483), + [aux_sym_exit_statement_token1] = ACTIONS(8483), + [sym_end_statement] = ACTIONS(8485), + [aux_sym_on_goto_statement_token1] = ACTIONS(8483), + [aux_sym_on_goto_statement_token2] = ACTIONS(8483), + [aux_sym_on_error_statement_token2] = ACTIONS(8483), + [sym__ambiguous_redim_statement] = ACTIONS(8485), + [aux_sym_erase_statement_token1] = ACTIONS(8483), + [aux_sym_open_statement_token1] = ACTIONS(8483), + [aux_sym_file_mode_token2] = ACTIONS(8483), + [aux_sym_file_access_token2] = ACTIONS(8483), + [aux_sym_file_lock_token2] = ACTIONS(8483), + [aux_sym_print_statement_token1] = ACTIONS(8483), + [anon_sym_PLUS] = ACTIONS(8485), + [anon_sym_DASH] = ACTIONS(8483), + [anon_sym_QMARK] = ACTIONS(8485), + [aux_sym_close_statement_token1] = ACTIONS(8483), + [aux_sym_put_statement_token1] = ACTIONS(8483), + [aux_sym_unlock_statement_token1] = ACTIONS(8483), + [aux_sym_seek_statement_token1] = ACTIONS(8483), + [sym_reset_statement] = ACTIONS(8483), + [aux_sym_raise_event_statement_token1] = ACTIONS(8483), + [sym_stop_statement] = ACTIONS(8483), + [sym_beep_statement] = ACTIONS(8483), + [aux_sym_unload_statement_token1] = ACTIONS(8483), + [aux_sym_def_type_statement_token1] = ACTIONS(8483), + [aux_sym_def_type_statement_token2] = ACTIONS(8483), + [aux_sym_def_type_statement_token3] = ACTIONS(8483), + [aux_sym_def_type_statement_token4] = ACTIONS(8483), + [aux_sym_def_type_statement_token5] = ACTIONS(8483), + [aux_sym_def_type_statement_token6] = ACTIONS(8483), + [aux_sym_def_type_statement_token7] = ACTIONS(8483), + [aux_sym_def_type_statement_token8] = ACTIONS(8483), + [aux_sym_def_type_statement_token9] = ACTIONS(8483), + [aux_sym_def_type_statement_token10] = ACTIONS(8483), + [aux_sym_def_type_statement_token11] = ACTIONS(8483), + [aux_sym_def_type_statement_token12] = ACTIONS(8483), + [aux_sym_def_type_statement_token13] = ACTIONS(8483), + [aux_sym_def_type_statement_token14] = ACTIONS(8483), + [aux_sym_call_statement_token1] = ACTIONS(8483), + [sym__ambiguous_call_statement] = ACTIONS(8483), + [aux_sym_addressof_expression_token1] = ACTIONS(8483), + [aux_sym_type_of_expression_token1] = ACTIONS(8483), + [aux_sym_unary_expression_token1] = ACTIONS(8483), + [sym_string_literal] = ACTIONS(8485), + [sym_number_literal] = ACTIONS(8485), + [aux_sym_boolean_literal_token1] = ACTIONS(8483), + [aux_sym_boolean_literal_token2] = ACTIONS(8483), + [sym_nothing_literal] = ACTIONS(8483), + [sym_null_literal] = ACTIONS(8483), + [sym_empty_literal] = ACTIONS(8483), + [sym_date_literal] = ACTIONS(8485), + [anon_sym_POUND] = ACTIONS(8483), + }, + [STATE(5216)] = { + [sym_identifier] = ACTIONS(5716), + [sym_newline] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5716), + [aux_sym_frm_property_statement_token1] = ACTIONS(5716), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_BANG] = ACTIONS(5718), + [aux_sym__attribute_identifier_token1] = ACTIONS(5716), + [aux_sym_option_statement_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5716), + [aux_sym_preprocessor_const_token1] = ACTIONS(5716), + [sym_static_modifier] = ACTIONS(5716), + [sym__dim_keyword] = ACTIONS(5716), + [sym__redim_keyword] = ACTIONS(5716), + [aux_sym_get_accessor_token1] = ACTIONS(5716), + [aux_sym_set_accessor_token1] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5718), + [aux_sym_const_declaration_token1] = ACTIONS(5716), + [anon_sym_LPAREN] = ACTIONS(5718), + [aux_sym_as_type_clause_token2] = ACTIONS(5716), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5716), + [aux_sym_visibility_token1] = ACTIONS(5716), + [aux_sym_visibility_token2] = ACTIONS(5716), + [aux_sym_elseif_fragment_token1] = ACTIONS(5716), + [aux_sym_else_fragment_token1] = ACTIONS(5716), + [aux_sym_select_statement_token1] = ACTIONS(5716), + [aux_sym__for_header_token1] = ACTIONS(5716), + [aux_sym_do_statement_token1] = ACTIONS(5716), + [aux_sym_do_condition_token1] = ACTIONS(5716), + [aux_sym_with_statement_token1] = ACTIONS(5716), + [aux_sym_exit_statement_token1] = ACTIONS(5716), + [sym_end_statement] = ACTIONS(5718), + [aux_sym_on_goto_statement_token1] = ACTIONS(5716), + [aux_sym_on_goto_statement_token2] = ACTIONS(5716), + [aux_sym_on_error_statement_token2] = ACTIONS(5716), + [sym__ambiguous_redim_statement] = ACTIONS(5718), + [aux_sym_erase_statement_token1] = ACTIONS(5716), + [aux_sym_open_statement_token1] = ACTIONS(5716), + [aux_sym_file_mode_token2] = ACTIONS(5716), + [aux_sym_file_access_token2] = ACTIONS(5716), + [aux_sym_file_lock_token2] = ACTIONS(5716), + [aux_sym_print_statement_token1] = ACTIONS(5716), + [anon_sym_PLUS] = ACTIONS(5718), + [anon_sym_DASH] = ACTIONS(5716), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [aux_sym_close_statement_token1] = ACTIONS(5716), + [aux_sym_put_statement_token1] = ACTIONS(5716), + [aux_sym_unlock_statement_token1] = ACTIONS(5716), + [aux_sym_seek_statement_token1] = ACTIONS(5716), + [sym_reset_statement] = ACTIONS(5716), + [aux_sym_raise_event_statement_token1] = ACTIONS(5716), + [sym_stop_statement] = ACTIONS(5716), + [sym_beep_statement] = ACTIONS(5716), + [aux_sym_unload_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token2] = ACTIONS(5716), + [aux_sym_def_type_statement_token3] = ACTIONS(5716), + [aux_sym_def_type_statement_token4] = ACTIONS(5716), + [aux_sym_def_type_statement_token5] = ACTIONS(5716), + [aux_sym_def_type_statement_token6] = ACTIONS(5716), + [aux_sym_def_type_statement_token7] = ACTIONS(5716), + [aux_sym_def_type_statement_token8] = ACTIONS(5716), + [aux_sym_def_type_statement_token9] = ACTIONS(5716), + [aux_sym_def_type_statement_token10] = ACTIONS(5716), + [aux_sym_def_type_statement_token11] = ACTIONS(5716), + [aux_sym_def_type_statement_token12] = ACTIONS(5716), + [aux_sym_def_type_statement_token13] = ACTIONS(5716), + [aux_sym_def_type_statement_token14] = ACTIONS(5716), + [aux_sym_call_statement_token1] = ACTIONS(5716), + [sym__ambiguous_call_statement] = ACTIONS(5716), + [aux_sym_addressof_expression_token1] = ACTIONS(5716), + [aux_sym_type_of_expression_token1] = ACTIONS(5716), + [aux_sym_unary_expression_token1] = ACTIONS(5716), + [sym_string_literal] = ACTIONS(5718), + [sym_number_literal] = ACTIONS(5718), + [aux_sym_boolean_literal_token1] = ACTIONS(5716), + [aux_sym_boolean_literal_token2] = ACTIONS(5716), + [sym_nothing_literal] = ACTIONS(5716), + [sym_null_literal] = ACTIONS(5716), + [sym_empty_literal] = ACTIONS(5716), + [sym_date_literal] = ACTIONS(5718), + [anon_sym_POUND] = ACTIONS(5716), + }, + [STATE(5217)] = { + [sym_do_condition] = STATE(6817), + [sym_identifier] = ACTIONS(8595), + [sym_newline] = ACTIONS(8597), + [anon_sym_COLON] = ACTIONS(8597), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8595), + [aux_sym_frm_property_statement_token1] = ACTIONS(8595), + [anon_sym_DOT] = ACTIONS(8595), + [anon_sym_BANG] = ACTIONS(8597), + [aux_sym__attribute_identifier_token1] = ACTIONS(8595), + [aux_sym_option_statement_token3] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8595), + [aux_sym_preprocessor_const_token1] = ACTIONS(8595), + [sym_static_modifier] = ACTIONS(8595), + [sym__dim_keyword] = ACTIONS(8595), + [sym__redim_keyword] = ACTIONS(8595), + [aux_sym_get_accessor_token1] = ACTIONS(8595), + [aux_sym_set_accessor_token1] = ACTIONS(8595), + [aux_sym_const_declaration_token1] = ACTIONS(8595), + [anon_sym_LPAREN] = ACTIONS(8597), + [aux_sym_as_type_clause_token2] = ACTIONS(8595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8595), + [aux_sym_visibility_token1] = ACTIONS(8595), + [aux_sym_visibility_token2] = ACTIONS(8595), + [aux_sym_elseif_fragment_token1] = ACTIONS(8595), + [aux_sym_else_fragment_token1] = ACTIONS(8595), + [aux_sym_select_statement_token1] = ACTIONS(8595), + [aux_sym__for_header_token1] = ACTIONS(8595), + [aux_sym_do_statement_token1] = ACTIONS(8595), + [aux_sym_do_statement_token2] = ACTIONS(8595), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8595), + [aux_sym_exit_statement_token1] = ACTIONS(8595), + [sym_end_statement] = ACTIONS(8597), + [aux_sym_on_goto_statement_token1] = ACTIONS(8595), + [aux_sym_on_goto_statement_token2] = ACTIONS(8595), + [aux_sym_on_error_statement_token2] = ACTIONS(8595), + [sym__ambiguous_redim_statement] = ACTIONS(8597), + [aux_sym_erase_statement_token1] = ACTIONS(8595), + [aux_sym_open_statement_token1] = ACTIONS(8595), + [aux_sym_file_mode_token2] = ACTIONS(8595), + [aux_sym_file_access_token2] = ACTIONS(8595), + [aux_sym_file_lock_token2] = ACTIONS(8595), + [aux_sym_print_statement_token1] = ACTIONS(8595), + [anon_sym_PLUS] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(8595), + [anon_sym_QMARK] = ACTIONS(8597), + [aux_sym_close_statement_token1] = ACTIONS(8595), + [aux_sym_put_statement_token1] = ACTIONS(8595), + [aux_sym_unlock_statement_token1] = ACTIONS(8595), + [aux_sym_seek_statement_token1] = ACTIONS(8595), + [sym_reset_statement] = ACTIONS(8595), + [aux_sym_raise_event_statement_token1] = ACTIONS(8595), + [sym_stop_statement] = ACTIONS(8595), + [sym_beep_statement] = ACTIONS(8595), + [aux_sym_unload_statement_token1] = ACTIONS(8595), + [aux_sym_def_type_statement_token1] = ACTIONS(8595), + [aux_sym_def_type_statement_token2] = ACTIONS(8595), + [aux_sym_def_type_statement_token3] = ACTIONS(8595), + [aux_sym_def_type_statement_token4] = ACTIONS(8595), + [aux_sym_def_type_statement_token5] = ACTIONS(8595), + [aux_sym_def_type_statement_token6] = ACTIONS(8595), + [aux_sym_def_type_statement_token7] = ACTIONS(8595), + [aux_sym_def_type_statement_token8] = ACTIONS(8595), + [aux_sym_def_type_statement_token9] = ACTIONS(8595), + [aux_sym_def_type_statement_token10] = ACTIONS(8595), + [aux_sym_def_type_statement_token11] = ACTIONS(8595), + [aux_sym_def_type_statement_token12] = ACTIONS(8595), + [aux_sym_def_type_statement_token13] = ACTIONS(8595), + [aux_sym_def_type_statement_token14] = ACTIONS(8595), + [aux_sym_call_statement_token1] = ACTIONS(8595), + [sym__ambiguous_call_statement] = ACTIONS(8595), + [aux_sym_addressof_expression_token1] = ACTIONS(8595), + [aux_sym_type_of_expression_token1] = ACTIONS(8595), + [aux_sym_unary_expression_token1] = ACTIONS(8595), + [sym_string_literal] = ACTIONS(8597), + [sym_number_literal] = ACTIONS(8597), + [aux_sym_boolean_literal_token1] = ACTIONS(8595), + [aux_sym_boolean_literal_token2] = ACTIONS(8595), + [sym_nothing_literal] = ACTIONS(8595), + [sym_null_literal] = ACTIONS(8595), + [sym_empty_literal] = ACTIONS(8595), + [sym_date_literal] = ACTIONS(8597), + [anon_sym_POUND] = ACTIONS(8595), + }, + [STATE(5218)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_statement_token2] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(5219)] = { + [sym_do_condition] = STATE(6830), + [sym_identifier] = ACTIONS(8599), + [sym_newline] = ACTIONS(8601), + [anon_sym_COLON] = ACTIONS(8601), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8599), + [aux_sym_frm_property_statement_token1] = ACTIONS(8599), + [anon_sym_DOT] = ACTIONS(8599), + [anon_sym_BANG] = ACTIONS(8601), + [aux_sym__attribute_identifier_token1] = ACTIONS(8599), + [aux_sym_option_statement_token3] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8599), + [aux_sym_preprocessor_const_token1] = ACTIONS(8599), + [sym_static_modifier] = ACTIONS(8599), + [sym__dim_keyword] = ACTIONS(8599), + [sym__redim_keyword] = ACTIONS(8599), + [aux_sym_get_accessor_token1] = ACTIONS(8599), + [aux_sym_set_accessor_token1] = ACTIONS(8599), + [aux_sym_const_declaration_token1] = ACTIONS(8599), + [anon_sym_LPAREN] = ACTIONS(8601), + [aux_sym_as_type_clause_token2] = ACTIONS(8599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8599), + [aux_sym_visibility_token1] = ACTIONS(8599), + [aux_sym_visibility_token2] = ACTIONS(8599), + [aux_sym_elseif_fragment_token1] = ACTIONS(8599), + [aux_sym_else_fragment_token1] = ACTIONS(8599), + [aux_sym_select_statement_token1] = ACTIONS(8599), + [aux_sym__for_header_token1] = ACTIONS(8599), + [aux_sym_do_statement_token1] = ACTIONS(8599), + [aux_sym_do_statement_token2] = ACTIONS(8599), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8599), + [aux_sym_exit_statement_token1] = ACTIONS(8599), + [sym_end_statement] = ACTIONS(8601), + [aux_sym_on_goto_statement_token1] = ACTIONS(8599), + [aux_sym_on_goto_statement_token2] = ACTIONS(8599), + [aux_sym_on_error_statement_token2] = ACTIONS(8599), + [sym__ambiguous_redim_statement] = ACTIONS(8601), + [aux_sym_erase_statement_token1] = ACTIONS(8599), + [aux_sym_open_statement_token1] = ACTIONS(8599), + [aux_sym_file_mode_token2] = ACTIONS(8599), + [aux_sym_file_access_token2] = ACTIONS(8599), + [aux_sym_file_lock_token2] = ACTIONS(8599), + [aux_sym_print_statement_token1] = ACTIONS(8599), + [anon_sym_PLUS] = ACTIONS(8601), + [anon_sym_DASH] = ACTIONS(8599), + [anon_sym_QMARK] = ACTIONS(8601), + [aux_sym_close_statement_token1] = ACTIONS(8599), + [aux_sym_put_statement_token1] = ACTIONS(8599), + [aux_sym_unlock_statement_token1] = ACTIONS(8599), + [aux_sym_seek_statement_token1] = ACTIONS(8599), + [sym_reset_statement] = ACTIONS(8599), + [aux_sym_raise_event_statement_token1] = ACTIONS(8599), + [sym_stop_statement] = ACTIONS(8599), + [sym_beep_statement] = ACTIONS(8599), + [aux_sym_unload_statement_token1] = ACTIONS(8599), + [aux_sym_def_type_statement_token1] = ACTIONS(8599), + [aux_sym_def_type_statement_token2] = ACTIONS(8599), + [aux_sym_def_type_statement_token3] = ACTIONS(8599), + [aux_sym_def_type_statement_token4] = ACTIONS(8599), + [aux_sym_def_type_statement_token5] = ACTIONS(8599), + [aux_sym_def_type_statement_token6] = ACTIONS(8599), + [aux_sym_def_type_statement_token7] = ACTIONS(8599), + [aux_sym_def_type_statement_token8] = ACTIONS(8599), + [aux_sym_def_type_statement_token9] = ACTIONS(8599), + [aux_sym_def_type_statement_token10] = ACTIONS(8599), + [aux_sym_def_type_statement_token11] = ACTIONS(8599), + [aux_sym_def_type_statement_token12] = ACTIONS(8599), + [aux_sym_def_type_statement_token13] = ACTIONS(8599), + [aux_sym_def_type_statement_token14] = ACTIONS(8599), + [aux_sym_call_statement_token1] = ACTIONS(8599), + [sym__ambiguous_call_statement] = ACTIONS(8599), + [aux_sym_addressof_expression_token1] = ACTIONS(8599), + [aux_sym_type_of_expression_token1] = ACTIONS(8599), + [aux_sym_unary_expression_token1] = ACTIONS(8599), + [sym_string_literal] = ACTIONS(8601), + [sym_number_literal] = ACTIONS(8601), + [aux_sym_boolean_literal_token1] = ACTIONS(8599), + [aux_sym_boolean_literal_token2] = ACTIONS(8599), + [sym_nothing_literal] = ACTIONS(8599), + [sym_null_literal] = ACTIONS(8599), + [sym_empty_literal] = ACTIONS(8599), + [sym_date_literal] = ACTIONS(8601), + [anon_sym_POUND] = ACTIONS(8599), + }, + [STATE(5220)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5416), + [sym_identifier] = ACTIONS(4172), + [sym_newline] = ACTIONS(4170), + [anon_sym_COLON] = ACTIONS(4170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4172), + [aux_sym_frm_property_statement_token1] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [aux_sym__attribute_identifier_token1] = ACTIONS(4172), + [aux_sym_option_statement_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4172), + [aux_sym_preprocessor_const_token1] = ACTIONS(4172), + [sym_static_modifier] = ACTIONS(4172), + [sym__dim_keyword] = ACTIONS(4172), + [sym__redim_keyword] = ACTIONS(4172), + [aux_sym_get_accessor_token1] = ACTIONS(4172), + [aux_sym_set_accessor_token1] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(5156), + [aux_sym_const_declaration_token1] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4170), + [aux_sym_as_type_clause_token2] = ACTIONS(4172), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4172), + [aux_sym_visibility_token1] = ACTIONS(4172), + [aux_sym_visibility_token2] = ACTIONS(4172), + [aux_sym_elseif_fragment_token1] = ACTIONS(4172), + [aux_sym_else_fragment_token1] = ACTIONS(4172), + [aux_sym_select_statement_token1] = ACTIONS(4172), + [aux_sym__for_header_token1] = ACTIONS(4172), + [aux_sym_do_statement_token1] = ACTIONS(4172), + [aux_sym_do_statement_token2] = ACTIONS(4172), + [aux_sym_do_condition_token1] = ACTIONS(4172), + [aux_sym_with_statement_token1] = ACTIONS(4172), + [aux_sym_exit_statement_token1] = ACTIONS(4172), + [sym_end_statement] = ACTIONS(4170), + [aux_sym_on_goto_statement_token1] = ACTIONS(4172), + [aux_sym_on_goto_statement_token2] = ACTIONS(4172), + [aux_sym_on_error_statement_token2] = ACTIONS(4172), + [sym__ambiguous_redim_statement] = ACTIONS(4170), + [aux_sym_erase_statement_token1] = ACTIONS(4172), + [aux_sym_open_statement_token1] = ACTIONS(4172), + [aux_sym_file_mode_token2] = ACTIONS(4172), + [aux_sym_file_access_token2] = ACTIONS(4172), + [aux_sym_file_lock_token2] = ACTIONS(4172), + [aux_sym_print_statement_token1] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4172), + [anon_sym_QMARK] = ACTIONS(4170), + [aux_sym_close_statement_token1] = ACTIONS(4172), + [aux_sym_put_statement_token1] = ACTIONS(4172), + [aux_sym_unlock_statement_token1] = ACTIONS(4172), + [aux_sym_seek_statement_token1] = ACTIONS(4172), + [sym_reset_statement] = ACTIONS(4172), + [aux_sym_raise_event_statement_token1] = ACTIONS(4172), + [sym_stop_statement] = ACTIONS(4172), + [sym_beep_statement] = ACTIONS(4172), + [aux_sym_unload_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token2] = ACTIONS(4172), + [aux_sym_def_type_statement_token3] = ACTIONS(4172), + [aux_sym_def_type_statement_token4] = ACTIONS(4172), + [aux_sym_def_type_statement_token5] = ACTIONS(4172), + [aux_sym_def_type_statement_token6] = ACTIONS(4172), + [aux_sym_def_type_statement_token7] = ACTIONS(4172), + [aux_sym_def_type_statement_token8] = ACTIONS(4172), + [aux_sym_def_type_statement_token9] = ACTIONS(4172), + [aux_sym_def_type_statement_token10] = ACTIONS(4172), + [aux_sym_def_type_statement_token11] = ACTIONS(4172), + [aux_sym_def_type_statement_token12] = ACTIONS(4172), + [aux_sym_def_type_statement_token13] = ACTIONS(4172), + [aux_sym_def_type_statement_token14] = ACTIONS(4172), + [aux_sym_call_statement_token1] = ACTIONS(4172), + [sym__ambiguous_call_statement] = ACTIONS(4172), + [aux_sym_addressof_expression_token1] = ACTIONS(4172), + [aux_sym_type_of_expression_token1] = ACTIONS(4172), + [aux_sym_unary_expression_token1] = ACTIONS(4172), + [sym_string_literal] = ACTIONS(4170), + [sym_number_literal] = ACTIONS(4170), + [aux_sym_boolean_literal_token1] = ACTIONS(4172), + [aux_sym_boolean_literal_token2] = ACTIONS(4172), + [sym_nothing_literal] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4172), + [sym_empty_literal] = ACTIONS(4172), + [sym_date_literal] = ACTIONS(4170), + [anon_sym_POUND] = ACTIONS(4172), + }, + [STATE(5221)] = { + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(5221), + [sym_identifier] = ACTIONS(8109), + [sym_newline] = ACTIONS(8111), + [anon_sym_COLON] = ACTIONS(8111), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8109), + [aux_sym_frm_property_statement_token1] = ACTIONS(8109), + [anon_sym_DOT] = ACTIONS(8109), + [anon_sym_BANG] = ACTIONS(8111), + [aux_sym__attribute_identifier_token1] = ACTIONS(8109), + [aux_sym_option_statement_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8109), + [aux_sym_preprocessor_const_token1] = ACTIONS(8109), + [sym_static_modifier] = ACTIONS(8109), + [sym__dim_keyword] = ACTIONS(8109), + [sym__redim_keyword] = ACTIONS(8109), + [aux_sym_get_accessor_token1] = ACTIONS(8109), + [aux_sym_set_accessor_token1] = ACTIONS(8109), + [aux_sym_const_declaration_token1] = ACTIONS(8109), + [anon_sym_LPAREN] = ACTIONS(8111), + [aux_sym_as_type_clause_token2] = ACTIONS(8109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8109), + [aux_sym_visibility_token1] = ACTIONS(8109), + [aux_sym_visibility_token2] = ACTIONS(8109), + [aux_sym_elseif_fragment_token1] = ACTIONS(8109), + [aux_sym_else_fragment_token1] = ACTIONS(8109), + [aux_sym_select_statement_token1] = ACTIONS(8109), + [aux_sym__for_header_token1] = ACTIONS(8109), + [aux_sym_do_statement_token1] = ACTIONS(8109), + [aux_sym_do_statement_token2] = ACTIONS(8109), + [aux_sym_do_condition_token1] = ACTIONS(8109), + [aux_sym_with_statement_token1] = ACTIONS(8109), + [aux_sym_exit_statement_token1] = ACTIONS(8109), + [sym_end_statement] = ACTIONS(8111), + [aux_sym_on_goto_statement_token1] = ACTIONS(8109), + [aux_sym_on_goto_statement_token2] = ACTIONS(8109), + [aux_sym_on_error_statement_token2] = ACTIONS(8109), + [sym__ambiguous_redim_statement] = ACTIONS(8111), + [aux_sym_erase_statement_token1] = ACTIONS(8109), + [aux_sym_open_statement_token1] = ACTIONS(8109), + [aux_sym_file_mode_token2] = ACTIONS(8109), + [aux_sym_file_access_token2] = ACTIONS(8109), + [aux_sym_file_lock_token2] = ACTIONS(8109), + [aux_sym_print_statement_token1] = ACTIONS(8109), + [anon_sym_PLUS] = ACTIONS(8111), + [anon_sym_DASH] = ACTIONS(8109), + [anon_sym_SEMI] = ACTIONS(10491), + [anon_sym_QMARK] = ACTIONS(8111), + [aux_sym_close_statement_token1] = ACTIONS(8109), + [aux_sym_put_statement_token1] = ACTIONS(8109), + [aux_sym_unlock_statement_token1] = ACTIONS(8109), + [aux_sym_seek_statement_token1] = ACTIONS(8109), + [sym_reset_statement] = ACTIONS(8109), + [aux_sym_raise_event_statement_token1] = ACTIONS(8109), + [sym_stop_statement] = ACTIONS(8109), + [sym_beep_statement] = ACTIONS(8109), + [aux_sym_unload_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token2] = ACTIONS(8109), + [aux_sym_def_type_statement_token3] = ACTIONS(8109), + [aux_sym_def_type_statement_token4] = ACTIONS(8109), + [aux_sym_def_type_statement_token5] = ACTIONS(8109), + [aux_sym_def_type_statement_token6] = ACTIONS(8109), + [aux_sym_def_type_statement_token7] = ACTIONS(8109), + [aux_sym_def_type_statement_token8] = ACTIONS(8109), + [aux_sym_def_type_statement_token9] = ACTIONS(8109), + [aux_sym_def_type_statement_token10] = ACTIONS(8109), + [aux_sym_def_type_statement_token11] = ACTIONS(8109), + [aux_sym_def_type_statement_token12] = ACTIONS(8109), + [aux_sym_def_type_statement_token13] = ACTIONS(8109), + [aux_sym_def_type_statement_token14] = ACTIONS(8109), + [aux_sym_call_statement_token1] = ACTIONS(8109), + [sym__ambiguous_call_statement] = ACTIONS(8109), + [aux_sym_addressof_expression_token1] = ACTIONS(8109), + [aux_sym_type_of_expression_token1] = ACTIONS(8109), + [aux_sym_unary_expression_token1] = ACTIONS(8109), + [sym_string_literal] = ACTIONS(8111), + [sym_number_literal] = ACTIONS(8111), + [aux_sym_boolean_literal_token1] = ACTIONS(8109), + [aux_sym_boolean_literal_token2] = ACTIONS(8109), + [sym_nothing_literal] = ACTIONS(8109), + [sym_null_literal] = ACTIONS(8109), + [sym_empty_literal] = ACTIONS(8109), + [sym_date_literal] = ACTIONS(8111), + [anon_sym_POUND] = ACTIONS(8109), + }, + [STATE(5222)] = { + [aux_sym_def_type_statement_repeat1] = STATE(5243), + [sym_identifier] = ACTIONS(8577), + [sym_newline] = ACTIONS(8579), + [anon_sym_COLON] = ACTIONS(8579), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8577), + [aux_sym_frm_property_statement_token1] = ACTIONS(8577), + [anon_sym_DOT] = ACTIONS(8577), + [anon_sym_BANG] = ACTIONS(8579), + [aux_sym__attribute_identifier_token1] = ACTIONS(8577), + [aux_sym_option_statement_token3] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8577), + [aux_sym_preprocessor_const_token1] = ACTIONS(8577), + [sym_static_modifier] = ACTIONS(8577), + [sym__dim_keyword] = ACTIONS(8577), + [sym__redim_keyword] = ACTIONS(8577), + [aux_sym_get_accessor_token1] = ACTIONS(8577), + [aux_sym_set_accessor_token1] = ACTIONS(8577), + [anon_sym_COMMA] = ACTIONS(10494), + [aux_sym_const_declaration_token1] = ACTIONS(8577), + [anon_sym_LPAREN] = ACTIONS(8579), + [aux_sym_as_type_clause_token2] = ACTIONS(8577), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8577), + [aux_sym_visibility_token1] = ACTIONS(8577), + [aux_sym_visibility_token2] = ACTIONS(8577), + [aux_sym_elseif_fragment_token1] = ACTIONS(8577), + [aux_sym_else_fragment_token1] = ACTIONS(8577), + [aux_sym_select_statement_token1] = ACTIONS(8577), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8577), + [aux_sym__for_header_token1] = ACTIONS(8577), + [aux_sym_do_statement_token1] = ACTIONS(8577), + [aux_sym_do_condition_token1] = ACTIONS(8577), + [aux_sym_with_statement_token1] = ACTIONS(8577), + [aux_sym_exit_statement_token1] = ACTIONS(8577), + [sym_end_statement] = ACTIONS(8579), + [aux_sym_on_goto_statement_token1] = ACTIONS(8577), + [aux_sym_on_goto_statement_token2] = ACTIONS(8577), + [aux_sym_on_error_statement_token2] = ACTIONS(8577), + [sym__ambiguous_redim_statement] = ACTIONS(8579), + [aux_sym_erase_statement_token1] = ACTIONS(8577), + [aux_sym_open_statement_token1] = ACTIONS(8577), + [aux_sym_file_mode_token2] = ACTIONS(8577), + [aux_sym_file_access_token2] = ACTIONS(8577), + [aux_sym_file_lock_token2] = ACTIONS(8577), + [aux_sym_print_statement_token1] = ACTIONS(8577), + [anon_sym_PLUS] = ACTIONS(8579), + [anon_sym_DASH] = ACTIONS(8577), + [anon_sym_QMARK] = ACTIONS(8579), + [aux_sym_close_statement_token1] = ACTIONS(8577), + [aux_sym_put_statement_token1] = ACTIONS(8577), + [aux_sym_unlock_statement_token1] = ACTIONS(8577), + [aux_sym_seek_statement_token1] = ACTIONS(8577), + [sym_reset_statement] = ACTIONS(8577), + [aux_sym_raise_event_statement_token1] = ACTIONS(8577), + [sym_stop_statement] = ACTIONS(8577), + [sym_beep_statement] = ACTIONS(8577), + [aux_sym_unload_statement_token1] = ACTIONS(8577), + [aux_sym_def_type_statement_token1] = ACTIONS(8577), + [aux_sym_def_type_statement_token2] = ACTIONS(8577), + [aux_sym_def_type_statement_token3] = ACTIONS(8577), + [aux_sym_def_type_statement_token4] = ACTIONS(8577), + [aux_sym_def_type_statement_token5] = ACTIONS(8577), + [aux_sym_def_type_statement_token6] = ACTIONS(8577), + [aux_sym_def_type_statement_token7] = ACTIONS(8577), + [aux_sym_def_type_statement_token8] = ACTIONS(8577), + [aux_sym_def_type_statement_token9] = ACTIONS(8577), + [aux_sym_def_type_statement_token10] = ACTIONS(8577), + [aux_sym_def_type_statement_token11] = ACTIONS(8577), + [aux_sym_def_type_statement_token12] = ACTIONS(8577), + [aux_sym_def_type_statement_token13] = ACTIONS(8577), + [aux_sym_def_type_statement_token14] = ACTIONS(8577), + [aux_sym_call_statement_token1] = ACTIONS(8577), + [sym__ambiguous_call_statement] = ACTIONS(8577), + [aux_sym_addressof_expression_token1] = ACTIONS(8577), + [aux_sym_type_of_expression_token1] = ACTIONS(8577), + [aux_sym_unary_expression_token1] = ACTIONS(8577), + [sym_string_literal] = ACTIONS(8579), + [sym_number_literal] = ACTIONS(8579), + [aux_sym_boolean_literal_token1] = ACTIONS(8577), + [aux_sym_boolean_literal_token2] = ACTIONS(8577), + [sym_nothing_literal] = ACTIONS(8577), + [sym_null_literal] = ACTIONS(8577), + [sym_empty_literal] = ACTIONS(8577), + [sym_date_literal] = ACTIONS(8579), + [anon_sym_POUND] = ACTIONS(8577), + }, + [STATE(5223)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5240), + [sym_identifier] = ACTIONS(8565), + [sym_newline] = ACTIONS(8567), + [anon_sym_COLON] = ACTIONS(8567), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8565), + [aux_sym_frm_property_statement_token1] = ACTIONS(8565), + [anon_sym_DOT] = ACTIONS(8565), + [anon_sym_BANG] = ACTIONS(8567), + [aux_sym__attribute_identifier_token1] = ACTIONS(8565), + [aux_sym_option_statement_token3] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8565), + [aux_sym_preprocessor_const_token1] = ACTIONS(8565), + [sym_static_modifier] = ACTIONS(8565), + [sym__dim_keyword] = ACTIONS(8565), + [sym__redim_keyword] = ACTIONS(8565), + [aux_sym_get_accessor_token1] = ACTIONS(8565), + [aux_sym_set_accessor_token1] = ACTIONS(8565), + [anon_sym_COMMA] = ACTIONS(10496), + [aux_sym_const_declaration_token1] = ACTIONS(8565), + [anon_sym_LPAREN] = ACTIONS(8567), + [aux_sym_as_type_clause_token2] = ACTIONS(8565), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8565), + [aux_sym_visibility_token1] = ACTIONS(8565), + [aux_sym_visibility_token2] = ACTIONS(8565), + [aux_sym_elseif_fragment_token1] = ACTIONS(8565), + [aux_sym_else_fragment_token1] = ACTIONS(8565), + [aux_sym_select_statement_token1] = ACTIONS(8565), + [aux_sym__for_header_token1] = ACTIONS(8565), + [aux_sym_do_statement_token1] = ACTIONS(8565), + [aux_sym_do_condition_token1] = ACTIONS(8565), + [aux_sym_with_statement_token1] = ACTIONS(8565), + [aux_sym_exit_statement_token1] = ACTIONS(8565), + [sym_end_statement] = ACTIONS(8567), + [aux_sym_on_goto_statement_token1] = ACTIONS(8565), + [aux_sym_on_goto_statement_token2] = ACTIONS(8565), + [aux_sym_on_error_statement_token2] = ACTIONS(8565), + [sym__ambiguous_redim_statement] = ACTIONS(8567), + [aux_sym_erase_statement_token1] = ACTIONS(8565), + [aux_sym_open_statement_token1] = ACTIONS(8565), + [aux_sym_file_mode_token2] = ACTIONS(8565), + [aux_sym_file_access_token2] = ACTIONS(8565), + [aux_sym_file_lock_token2] = ACTIONS(8565), + [aux_sym_print_statement_token1] = ACTIONS(8565), + [anon_sym_PLUS] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(8565), + [anon_sym_QMARK] = ACTIONS(8567), + [aux_sym_close_statement_token1] = ACTIONS(8565), + [aux_sym_put_statement_token1] = ACTIONS(8565), + [aux_sym_unlock_statement_token1] = ACTIONS(8565), + [aux_sym_seek_statement_token1] = ACTIONS(8565), + [sym_reset_statement] = ACTIONS(8565), + [aux_sym_raise_event_statement_token1] = ACTIONS(8565), + [sym_stop_statement] = ACTIONS(8565), + [sym_beep_statement] = ACTIONS(8565), + [aux_sym_unload_statement_token1] = ACTIONS(8565), + [aux_sym_def_type_statement_token1] = ACTIONS(8565), + [aux_sym_def_type_statement_token2] = ACTIONS(8565), + [aux_sym_def_type_statement_token3] = ACTIONS(8565), + [aux_sym_def_type_statement_token4] = ACTIONS(8565), + [aux_sym_def_type_statement_token5] = ACTIONS(8565), + [aux_sym_def_type_statement_token6] = ACTIONS(8565), + [aux_sym_def_type_statement_token7] = ACTIONS(8565), + [aux_sym_def_type_statement_token8] = ACTIONS(8565), + [aux_sym_def_type_statement_token9] = ACTIONS(8565), + [aux_sym_def_type_statement_token10] = ACTIONS(8565), + [aux_sym_def_type_statement_token11] = ACTIONS(8565), + [aux_sym_def_type_statement_token12] = ACTIONS(8565), + [aux_sym_def_type_statement_token13] = ACTIONS(8565), + [aux_sym_def_type_statement_token14] = ACTIONS(8565), + [aux_sym_call_statement_token1] = ACTIONS(8565), + [sym__ambiguous_call_statement] = ACTIONS(8565), + [aux_sym_addressof_expression_token1] = ACTIONS(8565), + [aux_sym_type_of_expression_token1] = ACTIONS(8565), + [aux_sym_unary_expression_token1] = ACTIONS(8565), + [sym_string_literal] = ACTIONS(8567), + [sym_number_literal] = ACTIONS(8567), + [aux_sym_boolean_literal_token1] = ACTIONS(8565), + [aux_sym_boolean_literal_token2] = ACTIONS(8565), + [sym_nothing_literal] = ACTIONS(8565), + [sym_null_literal] = ACTIONS(8565), + [sym_empty_literal] = ACTIONS(8565), + [sym_date_literal] = ACTIONS(8567), + [anon_sym_POUND] = ACTIONS(8565), + }, + [STATE(5224)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5241), + [sym_identifier] = ACTIONS(8569), + [sym_newline] = ACTIONS(8571), + [anon_sym_COLON] = ACTIONS(8571), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8569), + [aux_sym_frm_property_statement_token1] = ACTIONS(8569), + [anon_sym_DOT] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(8571), + [aux_sym__attribute_identifier_token1] = ACTIONS(8569), + [aux_sym_option_statement_token3] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8569), + [aux_sym_preprocessor_const_token1] = ACTIONS(8569), + [sym_static_modifier] = ACTIONS(8569), + [sym__dim_keyword] = ACTIONS(8569), + [sym__redim_keyword] = ACTIONS(8569), + [aux_sym_get_accessor_token1] = ACTIONS(8569), + [aux_sym_set_accessor_token1] = ACTIONS(8569), + [anon_sym_COMMA] = ACTIONS(10496), + [aux_sym_const_declaration_token1] = ACTIONS(8569), + [anon_sym_LPAREN] = ACTIONS(8571), + [aux_sym_as_type_clause_token2] = ACTIONS(8569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8569), + [aux_sym_visibility_token1] = ACTIONS(8569), + [aux_sym_visibility_token2] = ACTIONS(8569), + [aux_sym_elseif_fragment_token1] = ACTIONS(8569), + [aux_sym_else_fragment_token1] = ACTIONS(8569), + [aux_sym_select_statement_token1] = ACTIONS(8569), + [aux_sym__for_header_token1] = ACTIONS(8569), + [aux_sym_do_statement_token1] = ACTIONS(8569), + [aux_sym_do_condition_token1] = ACTIONS(8569), + [aux_sym_with_statement_token1] = ACTIONS(8569), + [aux_sym_exit_statement_token1] = ACTIONS(8569), + [sym_end_statement] = ACTIONS(8571), + [aux_sym_on_goto_statement_token1] = ACTIONS(8569), + [aux_sym_on_goto_statement_token2] = ACTIONS(8569), + [aux_sym_on_error_statement_token2] = ACTIONS(8569), + [sym__ambiguous_redim_statement] = ACTIONS(8571), + [aux_sym_erase_statement_token1] = ACTIONS(8569), + [aux_sym_open_statement_token1] = ACTIONS(8569), + [aux_sym_file_mode_token2] = ACTIONS(8569), + [aux_sym_file_access_token2] = ACTIONS(8569), + [aux_sym_file_lock_token2] = ACTIONS(8569), + [aux_sym_print_statement_token1] = ACTIONS(8569), + [anon_sym_PLUS] = ACTIONS(8571), + [anon_sym_DASH] = ACTIONS(8569), + [anon_sym_QMARK] = ACTIONS(8571), + [aux_sym_close_statement_token1] = ACTIONS(8569), + [aux_sym_put_statement_token1] = ACTIONS(8569), + [aux_sym_unlock_statement_token1] = ACTIONS(8569), + [aux_sym_seek_statement_token1] = ACTIONS(8569), + [sym_reset_statement] = ACTIONS(8569), + [aux_sym_raise_event_statement_token1] = ACTIONS(8569), + [sym_stop_statement] = ACTIONS(8569), + [sym_beep_statement] = ACTIONS(8569), + [aux_sym_unload_statement_token1] = ACTIONS(8569), + [aux_sym_def_type_statement_token1] = ACTIONS(8569), + [aux_sym_def_type_statement_token2] = ACTIONS(8569), + [aux_sym_def_type_statement_token3] = ACTIONS(8569), + [aux_sym_def_type_statement_token4] = ACTIONS(8569), + [aux_sym_def_type_statement_token5] = ACTIONS(8569), + [aux_sym_def_type_statement_token6] = ACTIONS(8569), + [aux_sym_def_type_statement_token7] = ACTIONS(8569), + [aux_sym_def_type_statement_token8] = ACTIONS(8569), + [aux_sym_def_type_statement_token9] = ACTIONS(8569), + [aux_sym_def_type_statement_token10] = ACTIONS(8569), + [aux_sym_def_type_statement_token11] = ACTIONS(8569), + [aux_sym_def_type_statement_token12] = ACTIONS(8569), + [aux_sym_def_type_statement_token13] = ACTIONS(8569), + [aux_sym_def_type_statement_token14] = ACTIONS(8569), + [aux_sym_call_statement_token1] = ACTIONS(8569), + [sym__ambiguous_call_statement] = ACTIONS(8569), + [aux_sym_addressof_expression_token1] = ACTIONS(8569), + [aux_sym_type_of_expression_token1] = ACTIONS(8569), + [aux_sym_unary_expression_token1] = ACTIONS(8569), + [sym_string_literal] = ACTIONS(8571), + [sym_number_literal] = ACTIONS(8571), + [aux_sym_boolean_literal_token1] = ACTIONS(8569), + [aux_sym_boolean_literal_token2] = ACTIONS(8569), + [sym_nothing_literal] = ACTIONS(8569), + [sym_null_literal] = ACTIONS(8569), + [sym_empty_literal] = ACTIONS(8569), + [sym_date_literal] = ACTIONS(8571), + [anon_sym_POUND] = ACTIONS(8569), + }, + [STATE(5225)] = { + [sym_do_condition] = STATE(6791), + [sym_identifier] = ACTIONS(8271), + [sym_newline] = ACTIONS(8273), + [anon_sym_COLON] = ACTIONS(8273), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8271), + [aux_sym_frm_property_statement_token1] = ACTIONS(8271), + [anon_sym_DOT] = ACTIONS(8271), + [anon_sym_BANG] = ACTIONS(8273), + [aux_sym__attribute_identifier_token1] = ACTIONS(8271), + [aux_sym_option_statement_token3] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8271), + [aux_sym_preprocessor_const_token1] = ACTIONS(8271), + [sym_static_modifier] = ACTIONS(8271), + [sym__dim_keyword] = ACTIONS(8271), + [sym__redim_keyword] = ACTIONS(8271), + [aux_sym_get_accessor_token1] = ACTIONS(8271), + [aux_sym_set_accessor_token1] = ACTIONS(8271), + [aux_sym_const_declaration_token1] = ACTIONS(8271), + [anon_sym_LPAREN] = ACTIONS(8273), + [aux_sym_as_type_clause_token2] = ACTIONS(8271), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8271), + [aux_sym_visibility_token1] = ACTIONS(8271), + [aux_sym_visibility_token2] = ACTIONS(8271), + [aux_sym_elseif_fragment_token1] = ACTIONS(8271), + [aux_sym_else_fragment_token1] = ACTIONS(8271), + [aux_sym_select_statement_token1] = ACTIONS(8271), + [aux_sym_select_statement_token2] = ACTIONS(8271), + [aux_sym__for_header_token1] = ACTIONS(8271), + [aux_sym_do_statement_token1] = ACTIONS(8271), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8271), + [aux_sym_exit_statement_token1] = ACTIONS(8271), + [sym_end_statement] = ACTIONS(8273), + [aux_sym_on_goto_statement_token1] = ACTIONS(8271), + [aux_sym_on_goto_statement_token2] = ACTIONS(8271), + [aux_sym_on_error_statement_token2] = ACTIONS(8271), + [sym__ambiguous_redim_statement] = ACTIONS(8273), + [aux_sym_erase_statement_token1] = ACTIONS(8271), + [aux_sym_open_statement_token1] = ACTIONS(8271), + [aux_sym_file_mode_token2] = ACTIONS(8271), + [aux_sym_file_access_token2] = ACTIONS(8271), + [aux_sym_file_lock_token2] = ACTIONS(8271), + [aux_sym_print_statement_token1] = ACTIONS(8271), + [anon_sym_PLUS] = ACTIONS(8273), + [anon_sym_DASH] = ACTIONS(8271), + [anon_sym_QMARK] = ACTIONS(8273), + [aux_sym_close_statement_token1] = ACTIONS(8271), + [aux_sym_put_statement_token1] = ACTIONS(8271), + [aux_sym_unlock_statement_token1] = ACTIONS(8271), + [aux_sym_seek_statement_token1] = ACTIONS(8271), + [sym_reset_statement] = ACTIONS(8271), + [aux_sym_raise_event_statement_token1] = ACTIONS(8271), + [sym_stop_statement] = ACTIONS(8271), + [sym_beep_statement] = ACTIONS(8271), + [aux_sym_unload_statement_token1] = ACTIONS(8271), + [aux_sym_def_type_statement_token1] = ACTIONS(8271), + [aux_sym_def_type_statement_token2] = ACTIONS(8271), + [aux_sym_def_type_statement_token3] = ACTIONS(8271), + [aux_sym_def_type_statement_token4] = ACTIONS(8271), + [aux_sym_def_type_statement_token5] = ACTIONS(8271), + [aux_sym_def_type_statement_token6] = ACTIONS(8271), + [aux_sym_def_type_statement_token7] = ACTIONS(8271), + [aux_sym_def_type_statement_token8] = ACTIONS(8271), + [aux_sym_def_type_statement_token9] = ACTIONS(8271), + [aux_sym_def_type_statement_token10] = ACTIONS(8271), + [aux_sym_def_type_statement_token11] = ACTIONS(8271), + [aux_sym_def_type_statement_token12] = ACTIONS(8271), + [aux_sym_def_type_statement_token13] = ACTIONS(8271), + [aux_sym_def_type_statement_token14] = ACTIONS(8271), + [aux_sym_call_statement_token1] = ACTIONS(8271), + [sym__ambiguous_call_statement] = ACTIONS(8271), + [aux_sym_addressof_expression_token1] = ACTIONS(8271), + [aux_sym_type_of_expression_token1] = ACTIONS(8271), + [aux_sym_unary_expression_token1] = ACTIONS(8271), + [sym_string_literal] = ACTIONS(8273), + [sym_number_literal] = ACTIONS(8273), + [aux_sym_boolean_literal_token1] = ACTIONS(8271), + [aux_sym_boolean_literal_token2] = ACTIONS(8271), + [sym_nothing_literal] = ACTIONS(8271), + [sym_null_literal] = ACTIONS(8271), + [sym_empty_literal] = ACTIONS(8271), + [sym_date_literal] = ACTIONS(8273), + [anon_sym_POUND] = ACTIONS(8271), + }, + [STATE(5226)] = { + [aux_sym_const_declaration_repeat1] = STATE(5245), + [sym_identifier] = ACTIONS(8573), + [sym_newline] = ACTIONS(8575), + [anon_sym_COLON] = ACTIONS(8575), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8573), + [aux_sym_frm_property_statement_token1] = ACTIONS(8573), + [anon_sym_DOT] = ACTIONS(8573), + [anon_sym_BANG] = ACTIONS(8575), + [aux_sym__attribute_identifier_token1] = ACTIONS(8573), + [aux_sym_option_statement_token3] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8573), + [aux_sym_preprocessor_const_token1] = ACTIONS(8573), + [sym_static_modifier] = ACTIONS(8573), + [sym__dim_keyword] = ACTIONS(8573), + [sym__redim_keyword] = ACTIONS(8573), + [aux_sym_get_accessor_token1] = ACTIONS(8573), + [aux_sym_set_accessor_token1] = ACTIONS(8573), + [anon_sym_COMMA] = ACTIONS(10498), + [aux_sym_const_declaration_token1] = ACTIONS(8573), + [anon_sym_LPAREN] = ACTIONS(8575), + [aux_sym_as_type_clause_token2] = ACTIONS(8573), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8573), + [aux_sym_visibility_token1] = ACTIONS(8573), + [aux_sym_visibility_token2] = ACTIONS(8573), + [aux_sym_elseif_fragment_token1] = ACTIONS(8573), + [aux_sym_else_fragment_token1] = ACTIONS(8573), + [aux_sym_select_statement_token1] = ACTIONS(8573), + [aux_sym__for_header_token1] = ACTIONS(8573), + [aux_sym_do_statement_token1] = ACTIONS(8573), + [aux_sym_do_condition_token1] = ACTIONS(8573), + [aux_sym_with_statement_token1] = ACTIONS(8573), + [aux_sym_exit_statement_token1] = ACTIONS(8573), + [sym_end_statement] = ACTIONS(8575), + [aux_sym_on_goto_statement_token1] = ACTIONS(8573), + [aux_sym_on_goto_statement_token2] = ACTIONS(8573), + [aux_sym_on_error_statement_token2] = ACTIONS(8573), + [sym__ambiguous_redim_statement] = ACTIONS(8575), + [aux_sym_erase_statement_token1] = ACTIONS(8573), + [aux_sym_open_statement_token1] = ACTIONS(8573), + [aux_sym_file_mode_token2] = ACTIONS(8573), + [aux_sym_file_access_token2] = ACTIONS(8573), + [aux_sym_file_lock_token2] = ACTIONS(8573), + [aux_sym_print_statement_token1] = ACTIONS(8573), + [anon_sym_PLUS] = ACTIONS(8575), + [anon_sym_DASH] = ACTIONS(8573), + [anon_sym_QMARK] = ACTIONS(8575), + [aux_sym_close_statement_token1] = ACTIONS(8573), + [aux_sym_put_statement_token1] = ACTIONS(8573), + [aux_sym_unlock_statement_token1] = ACTIONS(8573), + [aux_sym_seek_statement_token1] = ACTIONS(8573), + [sym_reset_statement] = ACTIONS(8573), + [aux_sym_raise_event_statement_token1] = ACTIONS(8573), + [sym_stop_statement] = ACTIONS(8573), + [sym_beep_statement] = ACTIONS(8573), + [aux_sym_unload_statement_token1] = ACTIONS(8573), + [aux_sym_def_type_statement_token1] = ACTIONS(8573), + [aux_sym_def_type_statement_token2] = ACTIONS(8573), + [aux_sym_def_type_statement_token3] = ACTIONS(8573), + [aux_sym_def_type_statement_token4] = ACTIONS(8573), + [aux_sym_def_type_statement_token5] = ACTIONS(8573), + [aux_sym_def_type_statement_token6] = ACTIONS(8573), + [aux_sym_def_type_statement_token7] = ACTIONS(8573), + [aux_sym_def_type_statement_token8] = ACTIONS(8573), + [aux_sym_def_type_statement_token9] = ACTIONS(8573), + [aux_sym_def_type_statement_token10] = ACTIONS(8573), + [aux_sym_def_type_statement_token11] = ACTIONS(8573), + [aux_sym_def_type_statement_token12] = ACTIONS(8573), + [aux_sym_def_type_statement_token13] = ACTIONS(8573), + [aux_sym_def_type_statement_token14] = ACTIONS(8573), + [aux_sym_call_statement_token1] = ACTIONS(8573), + [sym__ambiguous_call_statement] = ACTIONS(8573), + [aux_sym_addressof_expression_token1] = ACTIONS(8573), + [aux_sym_type_of_expression_token1] = ACTIONS(8573), + [aux_sym_unary_expression_token1] = ACTIONS(8573), + [sym_string_literal] = ACTIONS(8575), + [sym_number_literal] = ACTIONS(8575), + [aux_sym_boolean_literal_token1] = ACTIONS(8573), + [aux_sym_boolean_literal_token2] = ACTIONS(8573), + [sym_nothing_literal] = ACTIONS(8573), + [sym_null_literal] = ACTIONS(8573), + [sym_empty_literal] = ACTIONS(8573), + [sym_date_literal] = ACTIONS(8575), + [anon_sym_POUND] = ACTIONS(8573), + }, + [STATE(5227)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5236), + [sym_identifier] = ACTIONS(8565), + [sym_newline] = ACTIONS(8567), + [anon_sym_COLON] = ACTIONS(8567), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8565), + [aux_sym_frm_property_statement_token1] = ACTIONS(8565), + [anon_sym_DOT] = ACTIONS(8565), + [anon_sym_BANG] = ACTIONS(8567), + [aux_sym__attribute_identifier_token1] = ACTIONS(8565), + [aux_sym_option_statement_token3] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8565), + [aux_sym_preprocessor_const_token1] = ACTIONS(8565), + [sym_static_modifier] = ACTIONS(8565), + [sym__dim_keyword] = ACTIONS(8565), + [sym__redim_keyword] = ACTIONS(8565), + [aux_sym_get_accessor_token1] = ACTIONS(8565), + [aux_sym_set_accessor_token1] = ACTIONS(8565), + [anon_sym_COMMA] = ACTIONS(10500), + [aux_sym_const_declaration_token1] = ACTIONS(8565), + [anon_sym_LPAREN] = ACTIONS(8567), + [aux_sym_as_type_clause_token2] = ACTIONS(8565), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8565), + [aux_sym_visibility_token1] = ACTIONS(8565), + [aux_sym_visibility_token2] = ACTIONS(8565), + [aux_sym_elseif_fragment_token1] = ACTIONS(8565), + [aux_sym_else_fragment_token1] = ACTIONS(8565), + [aux_sym_select_statement_token1] = ACTIONS(8565), + [aux_sym__for_header_token1] = ACTIONS(8565), + [aux_sym_do_statement_token1] = ACTIONS(8565), + [aux_sym_do_condition_token1] = ACTIONS(8565), + [aux_sym_while_statement_token1] = ACTIONS(8565), + [aux_sym_with_statement_token1] = ACTIONS(8565), + [aux_sym_exit_statement_token1] = ACTIONS(8565), + [sym_end_statement] = ACTIONS(8567), + [aux_sym_on_goto_statement_token1] = ACTIONS(8565), + [aux_sym_on_goto_statement_token2] = ACTIONS(8565), + [aux_sym_on_error_statement_token2] = ACTIONS(8565), + [sym__ambiguous_redim_statement] = ACTIONS(8567), + [aux_sym_erase_statement_token1] = ACTIONS(8565), + [aux_sym_open_statement_token1] = ACTIONS(8565), + [aux_sym_file_mode_token2] = ACTIONS(8565), + [aux_sym_file_access_token2] = ACTIONS(8565), + [aux_sym_file_lock_token2] = ACTIONS(8565), + [aux_sym_print_statement_token1] = ACTIONS(8565), + [anon_sym_PLUS] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(8565), + [anon_sym_QMARK] = ACTIONS(8567), + [aux_sym_close_statement_token1] = ACTIONS(8565), + [aux_sym_put_statement_token1] = ACTIONS(8565), + [aux_sym_unlock_statement_token1] = ACTIONS(8565), + [aux_sym_seek_statement_token1] = ACTIONS(8565), + [sym_reset_statement] = ACTIONS(8565), + [aux_sym_raise_event_statement_token1] = ACTIONS(8565), + [sym_stop_statement] = ACTIONS(8565), + [sym_beep_statement] = ACTIONS(8565), + [aux_sym_unload_statement_token1] = ACTIONS(8565), + [aux_sym_def_type_statement_token1] = ACTIONS(8565), + [aux_sym_def_type_statement_token2] = ACTIONS(8565), + [aux_sym_def_type_statement_token3] = ACTIONS(8565), + [aux_sym_def_type_statement_token4] = ACTIONS(8565), + [aux_sym_def_type_statement_token5] = ACTIONS(8565), + [aux_sym_def_type_statement_token6] = ACTIONS(8565), + [aux_sym_def_type_statement_token7] = ACTIONS(8565), + [aux_sym_def_type_statement_token8] = ACTIONS(8565), + [aux_sym_def_type_statement_token9] = ACTIONS(8565), + [aux_sym_def_type_statement_token10] = ACTIONS(8565), + [aux_sym_def_type_statement_token11] = ACTIONS(8565), + [aux_sym_def_type_statement_token12] = ACTIONS(8565), + [aux_sym_def_type_statement_token13] = ACTIONS(8565), + [aux_sym_def_type_statement_token14] = ACTIONS(8565), + [aux_sym_call_statement_token1] = ACTIONS(8565), + [sym__ambiguous_call_statement] = ACTIONS(8565), + [aux_sym_addressof_expression_token1] = ACTIONS(8565), + [aux_sym_type_of_expression_token1] = ACTIONS(8565), + [aux_sym_unary_expression_token1] = ACTIONS(8565), + [sym_string_literal] = ACTIONS(8567), + [sym_number_literal] = ACTIONS(8567), + [aux_sym_boolean_literal_token1] = ACTIONS(8565), + [aux_sym_boolean_literal_token2] = ACTIONS(8565), + [sym_nothing_literal] = ACTIONS(8565), + [sym_null_literal] = ACTIONS(8565), + [sym_empty_literal] = ACTIONS(8565), + [sym_date_literal] = ACTIONS(8567), + [anon_sym_POUND] = ACTIONS(8565), + }, + [STATE(5228)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5237), + [sym_identifier] = ACTIONS(8569), + [sym_newline] = ACTIONS(8571), + [anon_sym_COLON] = ACTIONS(8571), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8569), + [aux_sym_frm_property_statement_token1] = ACTIONS(8569), + [anon_sym_DOT] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(8571), + [aux_sym__attribute_identifier_token1] = ACTIONS(8569), + [aux_sym_option_statement_token3] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8569), + [aux_sym_preprocessor_const_token1] = ACTIONS(8569), + [sym_static_modifier] = ACTIONS(8569), + [sym__dim_keyword] = ACTIONS(8569), + [sym__redim_keyword] = ACTIONS(8569), + [aux_sym_get_accessor_token1] = ACTIONS(8569), + [aux_sym_set_accessor_token1] = ACTIONS(8569), + [anon_sym_COMMA] = ACTIONS(10500), + [aux_sym_const_declaration_token1] = ACTIONS(8569), + [anon_sym_LPAREN] = ACTIONS(8571), + [aux_sym_as_type_clause_token2] = ACTIONS(8569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8569), + [aux_sym_visibility_token1] = ACTIONS(8569), + [aux_sym_visibility_token2] = ACTIONS(8569), + [aux_sym_elseif_fragment_token1] = ACTIONS(8569), + [aux_sym_else_fragment_token1] = ACTIONS(8569), + [aux_sym_select_statement_token1] = ACTIONS(8569), + [aux_sym__for_header_token1] = ACTIONS(8569), + [aux_sym_do_statement_token1] = ACTIONS(8569), + [aux_sym_do_condition_token1] = ACTIONS(8569), + [aux_sym_while_statement_token1] = ACTIONS(8569), + [aux_sym_with_statement_token1] = ACTIONS(8569), + [aux_sym_exit_statement_token1] = ACTIONS(8569), + [sym_end_statement] = ACTIONS(8571), + [aux_sym_on_goto_statement_token1] = ACTIONS(8569), + [aux_sym_on_goto_statement_token2] = ACTIONS(8569), + [aux_sym_on_error_statement_token2] = ACTIONS(8569), + [sym__ambiguous_redim_statement] = ACTIONS(8571), + [aux_sym_erase_statement_token1] = ACTIONS(8569), + [aux_sym_open_statement_token1] = ACTIONS(8569), + [aux_sym_file_mode_token2] = ACTIONS(8569), + [aux_sym_file_access_token2] = ACTIONS(8569), + [aux_sym_file_lock_token2] = ACTIONS(8569), + [aux_sym_print_statement_token1] = ACTIONS(8569), + [anon_sym_PLUS] = ACTIONS(8571), + [anon_sym_DASH] = ACTIONS(8569), + [anon_sym_QMARK] = ACTIONS(8571), + [aux_sym_close_statement_token1] = ACTIONS(8569), + [aux_sym_put_statement_token1] = ACTIONS(8569), + [aux_sym_unlock_statement_token1] = ACTIONS(8569), + [aux_sym_seek_statement_token1] = ACTIONS(8569), + [sym_reset_statement] = ACTIONS(8569), + [aux_sym_raise_event_statement_token1] = ACTIONS(8569), + [sym_stop_statement] = ACTIONS(8569), + [sym_beep_statement] = ACTIONS(8569), + [aux_sym_unload_statement_token1] = ACTIONS(8569), + [aux_sym_def_type_statement_token1] = ACTIONS(8569), + [aux_sym_def_type_statement_token2] = ACTIONS(8569), + [aux_sym_def_type_statement_token3] = ACTIONS(8569), + [aux_sym_def_type_statement_token4] = ACTIONS(8569), + [aux_sym_def_type_statement_token5] = ACTIONS(8569), + [aux_sym_def_type_statement_token6] = ACTIONS(8569), + [aux_sym_def_type_statement_token7] = ACTIONS(8569), + [aux_sym_def_type_statement_token8] = ACTIONS(8569), + [aux_sym_def_type_statement_token9] = ACTIONS(8569), + [aux_sym_def_type_statement_token10] = ACTIONS(8569), + [aux_sym_def_type_statement_token11] = ACTIONS(8569), + [aux_sym_def_type_statement_token12] = ACTIONS(8569), + [aux_sym_def_type_statement_token13] = ACTIONS(8569), + [aux_sym_def_type_statement_token14] = ACTIONS(8569), + [aux_sym_call_statement_token1] = ACTIONS(8569), + [sym__ambiguous_call_statement] = ACTIONS(8569), + [aux_sym_addressof_expression_token1] = ACTIONS(8569), + [aux_sym_type_of_expression_token1] = ACTIONS(8569), + [aux_sym_unary_expression_token1] = ACTIONS(8569), + [sym_string_literal] = ACTIONS(8571), + [sym_number_literal] = ACTIONS(8571), + [aux_sym_boolean_literal_token1] = ACTIONS(8569), + [aux_sym_boolean_literal_token2] = ACTIONS(8569), + [sym_nothing_literal] = ACTIONS(8569), + [sym_null_literal] = ACTIONS(8569), + [sym_empty_literal] = ACTIONS(8569), + [sym_date_literal] = ACTIONS(8571), + [anon_sym_POUND] = ACTIONS(8569), + }, + [STATE(5229)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5265), + [sym_identifier] = ACTIONS(8583), + [sym_newline] = ACTIONS(8585), + [anon_sym_COLON] = ACTIONS(8585), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8583), + [aux_sym_frm_property_statement_token1] = ACTIONS(8583), + [anon_sym_DOT] = ACTIONS(8583), + [anon_sym_BANG] = ACTIONS(8585), + [aux_sym__attribute_identifier_token1] = ACTIONS(8583), + [aux_sym_option_statement_token3] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8583), + [aux_sym_preprocessor_const_token1] = ACTIONS(8583), + [sym_static_modifier] = ACTIONS(8583), + [sym__dim_keyword] = ACTIONS(8583), + [sym__redim_keyword] = ACTIONS(8583), + [aux_sym_get_accessor_token1] = ACTIONS(8583), + [aux_sym_set_accessor_token1] = ACTIONS(8583), + [anon_sym_COMMA] = ACTIONS(10496), + [aux_sym_const_declaration_token1] = ACTIONS(8583), + [anon_sym_LPAREN] = ACTIONS(8585), + [aux_sym_as_type_clause_token2] = ACTIONS(8583), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8583), + [aux_sym_visibility_token1] = ACTIONS(8583), + [aux_sym_visibility_token2] = ACTIONS(8583), + [aux_sym_elseif_fragment_token1] = ACTIONS(8583), + [aux_sym_else_fragment_token1] = ACTIONS(8583), + [aux_sym_select_statement_token1] = ACTIONS(8583), + [aux_sym__for_header_token1] = ACTIONS(8583), + [aux_sym_do_statement_token1] = ACTIONS(8583), + [aux_sym_do_condition_token1] = ACTIONS(8583), + [aux_sym_with_statement_token1] = ACTIONS(8583), + [aux_sym_exit_statement_token1] = ACTIONS(8583), + [sym_end_statement] = ACTIONS(8585), + [aux_sym_on_goto_statement_token1] = ACTIONS(8583), + [aux_sym_on_goto_statement_token2] = ACTIONS(8583), + [aux_sym_on_error_statement_token2] = ACTIONS(8583), + [sym__ambiguous_redim_statement] = ACTIONS(8585), + [aux_sym_erase_statement_token1] = ACTIONS(8583), + [aux_sym_open_statement_token1] = ACTIONS(8583), + [aux_sym_file_mode_token2] = ACTIONS(8583), + [aux_sym_file_access_token2] = ACTIONS(8583), + [aux_sym_file_lock_token2] = ACTIONS(8583), + [aux_sym_print_statement_token1] = ACTIONS(8583), + [anon_sym_PLUS] = ACTIONS(8585), + [anon_sym_DASH] = ACTIONS(8583), + [anon_sym_QMARK] = ACTIONS(8585), + [aux_sym_close_statement_token1] = ACTIONS(8583), + [aux_sym_put_statement_token1] = ACTIONS(8583), + [aux_sym_unlock_statement_token1] = ACTIONS(8583), + [aux_sym_seek_statement_token1] = ACTIONS(8583), + [sym_reset_statement] = ACTIONS(8583), + [aux_sym_raise_event_statement_token1] = ACTIONS(8583), + [sym_stop_statement] = ACTIONS(8583), + [sym_beep_statement] = ACTIONS(8583), + [aux_sym_unload_statement_token1] = ACTIONS(8583), + [aux_sym_def_type_statement_token1] = ACTIONS(8583), + [aux_sym_def_type_statement_token2] = ACTIONS(8583), + [aux_sym_def_type_statement_token3] = ACTIONS(8583), + [aux_sym_def_type_statement_token4] = ACTIONS(8583), + [aux_sym_def_type_statement_token5] = ACTIONS(8583), + [aux_sym_def_type_statement_token6] = ACTIONS(8583), + [aux_sym_def_type_statement_token7] = ACTIONS(8583), + [aux_sym_def_type_statement_token8] = ACTIONS(8583), + [aux_sym_def_type_statement_token9] = ACTIONS(8583), + [aux_sym_def_type_statement_token10] = ACTIONS(8583), + [aux_sym_def_type_statement_token11] = ACTIONS(8583), + [aux_sym_def_type_statement_token12] = ACTIONS(8583), + [aux_sym_def_type_statement_token13] = ACTIONS(8583), + [aux_sym_def_type_statement_token14] = ACTIONS(8583), + [aux_sym_call_statement_token1] = ACTIONS(8583), + [sym__ambiguous_call_statement] = ACTIONS(8583), + [aux_sym_addressof_expression_token1] = ACTIONS(8583), + [aux_sym_type_of_expression_token1] = ACTIONS(8583), + [aux_sym_unary_expression_token1] = ACTIONS(8583), + [sym_string_literal] = ACTIONS(8585), + [sym_number_literal] = ACTIONS(8585), + [aux_sym_boolean_literal_token1] = ACTIONS(8583), + [aux_sym_boolean_literal_token2] = ACTIONS(8583), + [sym_nothing_literal] = ACTIONS(8583), + [sym_null_literal] = ACTIONS(8583), + [sym_empty_literal] = ACTIONS(8583), + [sym_date_literal] = ACTIONS(8585), + [anon_sym_POUND] = ACTIONS(8583), + }, + [STATE(5230)] = { + [aux_sym_const_declaration_repeat1] = STATE(5239), + [sym_identifier] = ACTIONS(8573), + [sym_newline] = ACTIONS(8575), + [anon_sym_COLON] = ACTIONS(8575), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8573), + [aux_sym_frm_property_statement_token1] = ACTIONS(8573), + [anon_sym_DOT] = ACTIONS(8573), + [anon_sym_BANG] = ACTIONS(8575), + [aux_sym__attribute_identifier_token1] = ACTIONS(8573), + [aux_sym_option_statement_token3] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8573), + [aux_sym_preprocessor_const_token1] = ACTIONS(8573), + [sym_static_modifier] = ACTIONS(8573), + [sym__dim_keyword] = ACTIONS(8573), + [sym__redim_keyword] = ACTIONS(8573), + [aux_sym_get_accessor_token1] = ACTIONS(8573), + [aux_sym_set_accessor_token1] = ACTIONS(8573), + [anon_sym_COMMA] = ACTIONS(10502), + [aux_sym_const_declaration_token1] = ACTIONS(8573), + [anon_sym_LPAREN] = ACTIONS(8575), + [aux_sym_as_type_clause_token2] = ACTIONS(8573), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8573), + [aux_sym_visibility_token1] = ACTIONS(8573), + [aux_sym_visibility_token2] = ACTIONS(8573), + [aux_sym_elseif_fragment_token1] = ACTIONS(8573), + [aux_sym_else_fragment_token1] = ACTIONS(8573), + [aux_sym_select_statement_token1] = ACTIONS(8573), + [aux_sym__for_header_token1] = ACTIONS(8573), + [aux_sym_do_statement_token1] = ACTIONS(8573), + [aux_sym_do_condition_token1] = ACTIONS(8573), + [aux_sym_while_statement_token1] = ACTIONS(8573), + [aux_sym_with_statement_token1] = ACTIONS(8573), + [aux_sym_exit_statement_token1] = ACTIONS(8573), + [sym_end_statement] = ACTIONS(8575), + [aux_sym_on_goto_statement_token1] = ACTIONS(8573), + [aux_sym_on_goto_statement_token2] = ACTIONS(8573), + [aux_sym_on_error_statement_token2] = ACTIONS(8573), + [sym__ambiguous_redim_statement] = ACTIONS(8575), + [aux_sym_erase_statement_token1] = ACTIONS(8573), + [aux_sym_open_statement_token1] = ACTIONS(8573), + [aux_sym_file_mode_token2] = ACTIONS(8573), + [aux_sym_file_access_token2] = ACTIONS(8573), + [aux_sym_file_lock_token2] = ACTIONS(8573), + [aux_sym_print_statement_token1] = ACTIONS(8573), + [anon_sym_PLUS] = ACTIONS(8575), + [anon_sym_DASH] = ACTIONS(8573), + [anon_sym_QMARK] = ACTIONS(8575), + [aux_sym_close_statement_token1] = ACTIONS(8573), + [aux_sym_put_statement_token1] = ACTIONS(8573), + [aux_sym_unlock_statement_token1] = ACTIONS(8573), + [aux_sym_seek_statement_token1] = ACTIONS(8573), + [sym_reset_statement] = ACTIONS(8573), + [aux_sym_raise_event_statement_token1] = ACTIONS(8573), + [sym_stop_statement] = ACTIONS(8573), + [sym_beep_statement] = ACTIONS(8573), + [aux_sym_unload_statement_token1] = ACTIONS(8573), + [aux_sym_def_type_statement_token1] = ACTIONS(8573), + [aux_sym_def_type_statement_token2] = ACTIONS(8573), + [aux_sym_def_type_statement_token3] = ACTIONS(8573), + [aux_sym_def_type_statement_token4] = ACTIONS(8573), + [aux_sym_def_type_statement_token5] = ACTIONS(8573), + [aux_sym_def_type_statement_token6] = ACTIONS(8573), + [aux_sym_def_type_statement_token7] = ACTIONS(8573), + [aux_sym_def_type_statement_token8] = ACTIONS(8573), + [aux_sym_def_type_statement_token9] = ACTIONS(8573), + [aux_sym_def_type_statement_token10] = ACTIONS(8573), + [aux_sym_def_type_statement_token11] = ACTIONS(8573), + [aux_sym_def_type_statement_token12] = ACTIONS(8573), + [aux_sym_def_type_statement_token13] = ACTIONS(8573), + [aux_sym_def_type_statement_token14] = ACTIONS(8573), + [aux_sym_call_statement_token1] = ACTIONS(8573), + [sym__ambiguous_call_statement] = ACTIONS(8573), + [aux_sym_addressof_expression_token1] = ACTIONS(8573), + [aux_sym_type_of_expression_token1] = ACTIONS(8573), + [aux_sym_unary_expression_token1] = ACTIONS(8573), + [sym_string_literal] = ACTIONS(8575), + [sym_number_literal] = ACTIONS(8575), + [aux_sym_boolean_literal_token1] = ACTIONS(8573), + [aux_sym_boolean_literal_token2] = ACTIONS(8573), + [sym_nothing_literal] = ACTIONS(8573), + [sym_null_literal] = ACTIONS(8573), + [sym_empty_literal] = ACTIONS(8573), + [sym_date_literal] = ACTIONS(8575), + [anon_sym_POUND] = ACTIONS(8573), + }, + [STATE(5231)] = { + [sym_do_condition] = STATE(6802), + [sym_identifier] = ACTIONS(8275), + [sym_newline] = ACTIONS(8277), + [anon_sym_COLON] = ACTIONS(8277), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8275), + [aux_sym_frm_property_statement_token1] = ACTIONS(8275), + [anon_sym_DOT] = ACTIONS(8275), + [anon_sym_BANG] = ACTIONS(8277), + [aux_sym__attribute_identifier_token1] = ACTIONS(8275), + [aux_sym_option_statement_token3] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8275), + [aux_sym_preprocessor_const_token1] = ACTIONS(8275), + [sym_static_modifier] = ACTIONS(8275), + [sym__dim_keyword] = ACTIONS(8275), + [sym__redim_keyword] = ACTIONS(8275), + [aux_sym_get_accessor_token1] = ACTIONS(8275), + [aux_sym_set_accessor_token1] = ACTIONS(8275), + [aux_sym_const_declaration_token1] = ACTIONS(8275), + [anon_sym_LPAREN] = ACTIONS(8277), + [aux_sym_as_type_clause_token2] = ACTIONS(8275), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8275), + [aux_sym_visibility_token1] = ACTIONS(8275), + [aux_sym_visibility_token2] = ACTIONS(8275), + [aux_sym_elseif_fragment_token1] = ACTIONS(8275), + [aux_sym_else_fragment_token1] = ACTIONS(8275), + [aux_sym_select_statement_token1] = ACTIONS(8275), + [aux_sym_select_statement_token2] = ACTIONS(8275), + [aux_sym__for_header_token1] = ACTIONS(8275), + [aux_sym_do_statement_token1] = ACTIONS(8275), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8275), + [aux_sym_exit_statement_token1] = ACTIONS(8275), + [sym_end_statement] = ACTIONS(8277), + [aux_sym_on_goto_statement_token1] = ACTIONS(8275), + [aux_sym_on_goto_statement_token2] = ACTIONS(8275), + [aux_sym_on_error_statement_token2] = ACTIONS(8275), + [sym__ambiguous_redim_statement] = ACTIONS(8277), + [aux_sym_erase_statement_token1] = ACTIONS(8275), + [aux_sym_open_statement_token1] = ACTIONS(8275), + [aux_sym_file_mode_token2] = ACTIONS(8275), + [aux_sym_file_access_token2] = ACTIONS(8275), + [aux_sym_file_lock_token2] = ACTIONS(8275), + [aux_sym_print_statement_token1] = ACTIONS(8275), + [anon_sym_PLUS] = ACTIONS(8277), + [anon_sym_DASH] = ACTIONS(8275), + [anon_sym_QMARK] = ACTIONS(8277), + [aux_sym_close_statement_token1] = ACTIONS(8275), + [aux_sym_put_statement_token1] = ACTIONS(8275), + [aux_sym_unlock_statement_token1] = ACTIONS(8275), + [aux_sym_seek_statement_token1] = ACTIONS(8275), + [sym_reset_statement] = ACTIONS(8275), + [aux_sym_raise_event_statement_token1] = ACTIONS(8275), + [sym_stop_statement] = ACTIONS(8275), + [sym_beep_statement] = ACTIONS(8275), + [aux_sym_unload_statement_token1] = ACTIONS(8275), + [aux_sym_def_type_statement_token1] = ACTIONS(8275), + [aux_sym_def_type_statement_token2] = ACTIONS(8275), + [aux_sym_def_type_statement_token3] = ACTIONS(8275), + [aux_sym_def_type_statement_token4] = ACTIONS(8275), + [aux_sym_def_type_statement_token5] = ACTIONS(8275), + [aux_sym_def_type_statement_token6] = ACTIONS(8275), + [aux_sym_def_type_statement_token7] = ACTIONS(8275), + [aux_sym_def_type_statement_token8] = ACTIONS(8275), + [aux_sym_def_type_statement_token9] = ACTIONS(8275), + [aux_sym_def_type_statement_token10] = ACTIONS(8275), + [aux_sym_def_type_statement_token11] = ACTIONS(8275), + [aux_sym_def_type_statement_token12] = ACTIONS(8275), + [aux_sym_def_type_statement_token13] = ACTIONS(8275), + [aux_sym_def_type_statement_token14] = ACTIONS(8275), + [aux_sym_call_statement_token1] = ACTIONS(8275), + [sym__ambiguous_call_statement] = ACTIONS(8275), + [aux_sym_addressof_expression_token1] = ACTIONS(8275), + [aux_sym_type_of_expression_token1] = ACTIONS(8275), + [aux_sym_unary_expression_token1] = ACTIONS(8275), + [sym_string_literal] = ACTIONS(8277), + [sym_number_literal] = ACTIONS(8277), + [aux_sym_boolean_literal_token1] = ACTIONS(8275), + [aux_sym_boolean_literal_token2] = ACTIONS(8275), + [sym_nothing_literal] = ACTIONS(8275), + [sym_null_literal] = ACTIONS(8275), + [sym_empty_literal] = ACTIONS(8275), + [sym_date_literal] = ACTIONS(8277), + [anon_sym_POUND] = ACTIONS(8275), + }, + [STATE(5232)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5259), + [sym_identifier] = ACTIONS(8583), + [sym_newline] = ACTIONS(8585), + [anon_sym_COLON] = ACTIONS(8585), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8583), + [aux_sym_frm_property_statement_token1] = ACTIONS(8583), + [anon_sym_DOT] = ACTIONS(8583), + [anon_sym_BANG] = ACTIONS(8585), + [aux_sym__attribute_identifier_token1] = ACTIONS(8583), + [aux_sym_option_statement_token3] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8583), + [aux_sym_preprocessor_const_token1] = ACTIONS(8583), + [sym_static_modifier] = ACTIONS(8583), + [sym__dim_keyword] = ACTIONS(8583), + [sym__redim_keyword] = ACTIONS(8583), + [aux_sym_get_accessor_token1] = ACTIONS(8583), + [aux_sym_set_accessor_token1] = ACTIONS(8583), + [anon_sym_COMMA] = ACTIONS(10500), + [aux_sym_const_declaration_token1] = ACTIONS(8583), + [anon_sym_LPAREN] = ACTIONS(8585), + [aux_sym_as_type_clause_token2] = ACTIONS(8583), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8583), + [aux_sym_visibility_token1] = ACTIONS(8583), + [aux_sym_visibility_token2] = ACTIONS(8583), + [aux_sym_elseif_fragment_token1] = ACTIONS(8583), + [aux_sym_else_fragment_token1] = ACTIONS(8583), + [aux_sym_select_statement_token1] = ACTIONS(8583), + [aux_sym__for_header_token1] = ACTIONS(8583), + [aux_sym_do_statement_token1] = ACTIONS(8583), + [aux_sym_do_condition_token1] = ACTIONS(8583), + [aux_sym_while_statement_token1] = ACTIONS(8583), + [aux_sym_with_statement_token1] = ACTIONS(8583), + [aux_sym_exit_statement_token1] = ACTIONS(8583), + [sym_end_statement] = ACTIONS(8585), + [aux_sym_on_goto_statement_token1] = ACTIONS(8583), + [aux_sym_on_goto_statement_token2] = ACTIONS(8583), + [aux_sym_on_error_statement_token2] = ACTIONS(8583), + [sym__ambiguous_redim_statement] = ACTIONS(8585), + [aux_sym_erase_statement_token1] = ACTIONS(8583), + [aux_sym_open_statement_token1] = ACTIONS(8583), + [aux_sym_file_mode_token2] = ACTIONS(8583), + [aux_sym_file_access_token2] = ACTIONS(8583), + [aux_sym_file_lock_token2] = ACTIONS(8583), + [aux_sym_print_statement_token1] = ACTIONS(8583), + [anon_sym_PLUS] = ACTIONS(8585), + [anon_sym_DASH] = ACTIONS(8583), + [anon_sym_QMARK] = ACTIONS(8585), + [aux_sym_close_statement_token1] = ACTIONS(8583), + [aux_sym_put_statement_token1] = ACTIONS(8583), + [aux_sym_unlock_statement_token1] = ACTIONS(8583), + [aux_sym_seek_statement_token1] = ACTIONS(8583), + [sym_reset_statement] = ACTIONS(8583), + [aux_sym_raise_event_statement_token1] = ACTIONS(8583), + [sym_stop_statement] = ACTIONS(8583), + [sym_beep_statement] = ACTIONS(8583), + [aux_sym_unload_statement_token1] = ACTIONS(8583), + [aux_sym_def_type_statement_token1] = ACTIONS(8583), + [aux_sym_def_type_statement_token2] = ACTIONS(8583), + [aux_sym_def_type_statement_token3] = ACTIONS(8583), + [aux_sym_def_type_statement_token4] = ACTIONS(8583), + [aux_sym_def_type_statement_token5] = ACTIONS(8583), + [aux_sym_def_type_statement_token6] = ACTIONS(8583), + [aux_sym_def_type_statement_token7] = ACTIONS(8583), + [aux_sym_def_type_statement_token8] = ACTIONS(8583), + [aux_sym_def_type_statement_token9] = ACTIONS(8583), + [aux_sym_def_type_statement_token10] = ACTIONS(8583), + [aux_sym_def_type_statement_token11] = ACTIONS(8583), + [aux_sym_def_type_statement_token12] = ACTIONS(8583), + [aux_sym_def_type_statement_token13] = ACTIONS(8583), + [aux_sym_def_type_statement_token14] = ACTIONS(8583), + [aux_sym_call_statement_token1] = ACTIONS(8583), + [sym__ambiguous_call_statement] = ACTIONS(8583), + [aux_sym_addressof_expression_token1] = ACTIONS(8583), + [aux_sym_type_of_expression_token1] = ACTIONS(8583), + [aux_sym_unary_expression_token1] = ACTIONS(8583), + [sym_string_literal] = ACTIONS(8585), + [sym_number_literal] = ACTIONS(8585), + [aux_sym_boolean_literal_token1] = ACTIONS(8583), + [aux_sym_boolean_literal_token2] = ACTIONS(8583), + [sym_nothing_literal] = ACTIONS(8583), + [sym_null_literal] = ACTIONS(8583), + [sym_empty_literal] = ACTIONS(8583), + [sym_date_literal] = ACTIONS(8585), + [anon_sym_POUND] = ACTIONS(8583), + }, + [STATE(5233)] = { + [sym_do_condition] = STATE(6805), + [sym_identifier] = ACTIONS(8279), + [sym_newline] = ACTIONS(8281), + [anon_sym_COLON] = ACTIONS(8281), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8279), + [aux_sym_frm_property_statement_token1] = ACTIONS(8279), + [anon_sym_DOT] = ACTIONS(8279), + [anon_sym_BANG] = ACTIONS(8281), + [aux_sym__attribute_identifier_token1] = ACTIONS(8279), + [aux_sym_option_statement_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8279), + [aux_sym_preprocessor_const_token1] = ACTIONS(8279), + [sym_static_modifier] = ACTIONS(8279), + [sym__dim_keyword] = ACTIONS(8279), + [sym__redim_keyword] = ACTIONS(8279), + [aux_sym_get_accessor_token1] = ACTIONS(8279), + [aux_sym_set_accessor_token1] = ACTIONS(8279), + [aux_sym_const_declaration_token1] = ACTIONS(8279), + [anon_sym_LPAREN] = ACTIONS(8281), + [aux_sym_as_type_clause_token2] = ACTIONS(8279), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8279), + [aux_sym_visibility_token1] = ACTIONS(8279), + [aux_sym_visibility_token2] = ACTIONS(8279), + [aux_sym_elseif_fragment_token1] = ACTIONS(8279), + [aux_sym_else_fragment_token1] = ACTIONS(8279), + [aux_sym_select_statement_token1] = ACTIONS(8279), + [aux_sym_select_statement_token2] = ACTIONS(8279), + [aux_sym__for_header_token1] = ACTIONS(8279), + [aux_sym_do_statement_token1] = ACTIONS(8279), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8279), + [aux_sym_exit_statement_token1] = ACTIONS(8279), + [sym_end_statement] = ACTIONS(8281), + [aux_sym_on_goto_statement_token1] = ACTIONS(8279), + [aux_sym_on_goto_statement_token2] = ACTIONS(8279), + [aux_sym_on_error_statement_token2] = ACTIONS(8279), + [sym__ambiguous_redim_statement] = ACTIONS(8281), + [aux_sym_erase_statement_token1] = ACTIONS(8279), + [aux_sym_open_statement_token1] = ACTIONS(8279), + [aux_sym_file_mode_token2] = ACTIONS(8279), + [aux_sym_file_access_token2] = ACTIONS(8279), + [aux_sym_file_lock_token2] = ACTIONS(8279), + [aux_sym_print_statement_token1] = ACTIONS(8279), + [anon_sym_PLUS] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8279), + [anon_sym_QMARK] = ACTIONS(8281), + [aux_sym_close_statement_token1] = ACTIONS(8279), + [aux_sym_put_statement_token1] = ACTIONS(8279), + [aux_sym_unlock_statement_token1] = ACTIONS(8279), + [aux_sym_seek_statement_token1] = ACTIONS(8279), + [sym_reset_statement] = ACTIONS(8279), + [aux_sym_raise_event_statement_token1] = ACTIONS(8279), + [sym_stop_statement] = ACTIONS(8279), + [sym_beep_statement] = ACTIONS(8279), + [aux_sym_unload_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token2] = ACTIONS(8279), + [aux_sym_def_type_statement_token3] = ACTIONS(8279), + [aux_sym_def_type_statement_token4] = ACTIONS(8279), + [aux_sym_def_type_statement_token5] = ACTIONS(8279), + [aux_sym_def_type_statement_token6] = ACTIONS(8279), + [aux_sym_def_type_statement_token7] = ACTIONS(8279), + [aux_sym_def_type_statement_token8] = ACTIONS(8279), + [aux_sym_def_type_statement_token9] = ACTIONS(8279), + [aux_sym_def_type_statement_token10] = ACTIONS(8279), + [aux_sym_def_type_statement_token11] = ACTIONS(8279), + [aux_sym_def_type_statement_token12] = ACTIONS(8279), + [aux_sym_def_type_statement_token13] = ACTIONS(8279), + [aux_sym_def_type_statement_token14] = ACTIONS(8279), + [aux_sym_call_statement_token1] = ACTIONS(8279), + [sym__ambiguous_call_statement] = ACTIONS(8279), + [aux_sym_addressof_expression_token1] = ACTIONS(8279), + [aux_sym_type_of_expression_token1] = ACTIONS(8279), + [aux_sym_unary_expression_token1] = ACTIONS(8279), + [sym_string_literal] = ACTIONS(8281), + [sym_number_literal] = ACTIONS(8281), + [aux_sym_boolean_literal_token1] = ACTIONS(8279), + [aux_sym_boolean_literal_token2] = ACTIONS(8279), + [sym_nothing_literal] = ACTIONS(8279), + [sym_null_literal] = ACTIONS(8279), + [sym_empty_literal] = ACTIONS(8279), + [sym_date_literal] = ACTIONS(8281), + [anon_sym_POUND] = ACTIONS(8279), + }, + [STATE(5234)] = { + [sym_do_condition] = STATE(6812), + [sym_identifier] = ACTIONS(8283), + [sym_newline] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8283), + [aux_sym_frm_property_statement_token1] = ACTIONS(8283), + [anon_sym_DOT] = ACTIONS(8283), + [anon_sym_BANG] = ACTIONS(8285), + [aux_sym__attribute_identifier_token1] = ACTIONS(8283), + [aux_sym_option_statement_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8283), + [aux_sym_preprocessor_const_token1] = ACTIONS(8283), + [sym_static_modifier] = ACTIONS(8283), + [sym__dim_keyword] = ACTIONS(8283), + [sym__redim_keyword] = ACTIONS(8283), + [aux_sym_get_accessor_token1] = ACTIONS(8283), + [aux_sym_set_accessor_token1] = ACTIONS(8283), + [aux_sym_const_declaration_token1] = ACTIONS(8283), + [anon_sym_LPAREN] = ACTIONS(8285), + [aux_sym_as_type_clause_token2] = ACTIONS(8283), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8283), + [aux_sym_visibility_token1] = ACTIONS(8283), + [aux_sym_visibility_token2] = ACTIONS(8283), + [aux_sym_elseif_fragment_token1] = ACTIONS(8283), + [aux_sym_else_fragment_token1] = ACTIONS(8283), + [aux_sym_select_statement_token1] = ACTIONS(8283), + [aux_sym_select_statement_token2] = ACTIONS(8283), + [aux_sym__for_header_token1] = ACTIONS(8283), + [aux_sym_do_statement_token1] = ACTIONS(8283), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8283), + [aux_sym_exit_statement_token1] = ACTIONS(8283), + [sym_end_statement] = ACTIONS(8285), + [aux_sym_on_goto_statement_token1] = ACTIONS(8283), + [aux_sym_on_goto_statement_token2] = ACTIONS(8283), + [aux_sym_on_error_statement_token2] = ACTIONS(8283), + [sym__ambiguous_redim_statement] = ACTIONS(8285), + [aux_sym_erase_statement_token1] = ACTIONS(8283), + [aux_sym_open_statement_token1] = ACTIONS(8283), + [aux_sym_file_mode_token2] = ACTIONS(8283), + [aux_sym_file_access_token2] = ACTIONS(8283), + [aux_sym_file_lock_token2] = ACTIONS(8283), + [aux_sym_print_statement_token1] = ACTIONS(8283), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_DASH] = ACTIONS(8283), + [anon_sym_QMARK] = ACTIONS(8285), + [aux_sym_close_statement_token1] = ACTIONS(8283), + [aux_sym_put_statement_token1] = ACTIONS(8283), + [aux_sym_unlock_statement_token1] = ACTIONS(8283), + [aux_sym_seek_statement_token1] = ACTIONS(8283), + [sym_reset_statement] = ACTIONS(8283), + [aux_sym_raise_event_statement_token1] = ACTIONS(8283), + [sym_stop_statement] = ACTIONS(8283), + [sym_beep_statement] = ACTIONS(8283), + [aux_sym_unload_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token2] = ACTIONS(8283), + [aux_sym_def_type_statement_token3] = ACTIONS(8283), + [aux_sym_def_type_statement_token4] = ACTIONS(8283), + [aux_sym_def_type_statement_token5] = ACTIONS(8283), + [aux_sym_def_type_statement_token6] = ACTIONS(8283), + [aux_sym_def_type_statement_token7] = ACTIONS(8283), + [aux_sym_def_type_statement_token8] = ACTIONS(8283), + [aux_sym_def_type_statement_token9] = ACTIONS(8283), + [aux_sym_def_type_statement_token10] = ACTIONS(8283), + [aux_sym_def_type_statement_token11] = ACTIONS(8283), + [aux_sym_def_type_statement_token12] = ACTIONS(8283), + [aux_sym_def_type_statement_token13] = ACTIONS(8283), + [aux_sym_def_type_statement_token14] = ACTIONS(8283), + [aux_sym_call_statement_token1] = ACTIONS(8283), + [sym__ambiguous_call_statement] = ACTIONS(8283), + [aux_sym_addressof_expression_token1] = ACTIONS(8283), + [aux_sym_type_of_expression_token1] = ACTIONS(8283), + [aux_sym_unary_expression_token1] = ACTIONS(8283), + [sym_string_literal] = ACTIONS(8285), + [sym_number_literal] = ACTIONS(8285), + [aux_sym_boolean_literal_token1] = ACTIONS(8283), + [aux_sym_boolean_literal_token2] = ACTIONS(8283), + [sym_nothing_literal] = ACTIONS(8283), + [sym_null_literal] = ACTIONS(8283), + [sym_empty_literal] = ACTIONS(8283), + [sym_date_literal] = ACTIONS(8285), + [anon_sym_POUND] = ACTIONS(8283), + }, + [STATE(5235)] = { + [sym_do_condition] = STATE(6831), + [sym_identifier] = ACTIONS(8294), + [sym_newline] = ACTIONS(8296), + [anon_sym_COLON] = ACTIONS(8296), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8294), + [aux_sym_frm_property_statement_token1] = ACTIONS(8294), + [anon_sym_DOT] = ACTIONS(8294), + [anon_sym_BANG] = ACTIONS(8296), + [aux_sym__attribute_identifier_token1] = ACTIONS(8294), + [aux_sym_option_statement_token3] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8294), + [aux_sym_preprocessor_const_token1] = ACTIONS(8294), + [sym_static_modifier] = ACTIONS(8294), + [sym__dim_keyword] = ACTIONS(8294), + [sym__redim_keyword] = ACTIONS(8294), + [aux_sym_get_accessor_token1] = ACTIONS(8294), + [aux_sym_set_accessor_token1] = ACTIONS(8294), + [aux_sym_const_declaration_token1] = ACTIONS(8294), + [anon_sym_LPAREN] = ACTIONS(8296), + [aux_sym_as_type_clause_token2] = ACTIONS(8294), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8294), + [aux_sym_visibility_token1] = ACTIONS(8294), + [aux_sym_visibility_token2] = ACTIONS(8294), + [aux_sym_elseif_fragment_token1] = ACTIONS(8294), + [aux_sym_else_fragment_token1] = ACTIONS(8294), + [aux_sym_select_statement_token1] = ACTIONS(8294), + [aux_sym_select_statement_token2] = ACTIONS(8294), + [aux_sym__for_header_token1] = ACTIONS(8294), + [aux_sym_do_statement_token1] = ACTIONS(8294), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8294), + [aux_sym_exit_statement_token1] = ACTIONS(8294), + [sym_end_statement] = ACTIONS(8296), + [aux_sym_on_goto_statement_token1] = ACTIONS(8294), + [aux_sym_on_goto_statement_token2] = ACTIONS(8294), + [aux_sym_on_error_statement_token2] = ACTIONS(8294), + [sym__ambiguous_redim_statement] = ACTIONS(8296), + [aux_sym_erase_statement_token1] = ACTIONS(8294), + [aux_sym_open_statement_token1] = ACTIONS(8294), + [aux_sym_file_mode_token2] = ACTIONS(8294), + [aux_sym_file_access_token2] = ACTIONS(8294), + [aux_sym_file_lock_token2] = ACTIONS(8294), + [aux_sym_print_statement_token1] = ACTIONS(8294), + [anon_sym_PLUS] = ACTIONS(8296), + [anon_sym_DASH] = ACTIONS(8294), + [anon_sym_QMARK] = ACTIONS(8296), + [aux_sym_close_statement_token1] = ACTIONS(8294), + [aux_sym_put_statement_token1] = ACTIONS(8294), + [aux_sym_unlock_statement_token1] = ACTIONS(8294), + [aux_sym_seek_statement_token1] = ACTIONS(8294), + [sym_reset_statement] = ACTIONS(8294), + [aux_sym_raise_event_statement_token1] = ACTIONS(8294), + [sym_stop_statement] = ACTIONS(8294), + [sym_beep_statement] = ACTIONS(8294), + [aux_sym_unload_statement_token1] = ACTIONS(8294), + [aux_sym_def_type_statement_token1] = ACTIONS(8294), + [aux_sym_def_type_statement_token2] = ACTIONS(8294), + [aux_sym_def_type_statement_token3] = ACTIONS(8294), + [aux_sym_def_type_statement_token4] = ACTIONS(8294), + [aux_sym_def_type_statement_token5] = ACTIONS(8294), + [aux_sym_def_type_statement_token6] = ACTIONS(8294), + [aux_sym_def_type_statement_token7] = ACTIONS(8294), + [aux_sym_def_type_statement_token8] = ACTIONS(8294), + [aux_sym_def_type_statement_token9] = ACTIONS(8294), + [aux_sym_def_type_statement_token10] = ACTIONS(8294), + [aux_sym_def_type_statement_token11] = ACTIONS(8294), + [aux_sym_def_type_statement_token12] = ACTIONS(8294), + [aux_sym_def_type_statement_token13] = ACTIONS(8294), + [aux_sym_def_type_statement_token14] = ACTIONS(8294), + [aux_sym_call_statement_token1] = ACTIONS(8294), + [sym__ambiguous_call_statement] = ACTIONS(8294), + [aux_sym_addressof_expression_token1] = ACTIONS(8294), + [aux_sym_type_of_expression_token1] = ACTIONS(8294), + [aux_sym_unary_expression_token1] = ACTIONS(8294), + [sym_string_literal] = ACTIONS(8296), + [sym_number_literal] = ACTIONS(8296), + [aux_sym_boolean_literal_token1] = ACTIONS(8294), + [aux_sym_boolean_literal_token2] = ACTIONS(8294), + [sym_nothing_literal] = ACTIONS(8294), + [sym_null_literal] = ACTIONS(8294), + [sym_empty_literal] = ACTIONS(8294), + [sym_date_literal] = ACTIONS(8296), + [anon_sym_POUND] = ACTIONS(8294), + }, + [STATE(5236)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5273), + [sym_identifier] = ACTIONS(8591), + [sym_newline] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(8593), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8591), + [aux_sym_frm_property_statement_token1] = ACTIONS(8591), + [anon_sym_DOT] = ACTIONS(8591), + [anon_sym_BANG] = ACTIONS(8593), + [aux_sym__attribute_identifier_token1] = ACTIONS(8591), + [aux_sym_option_statement_token3] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8591), + [aux_sym_preprocessor_const_token1] = ACTIONS(8591), + [sym_static_modifier] = ACTIONS(8591), + [sym__dim_keyword] = ACTIONS(8591), + [sym__redim_keyword] = ACTIONS(8591), + [aux_sym_get_accessor_token1] = ACTIONS(8591), + [aux_sym_set_accessor_token1] = ACTIONS(8591), + [anon_sym_COMMA] = ACTIONS(10500), + [aux_sym_const_declaration_token1] = ACTIONS(8591), + [anon_sym_LPAREN] = ACTIONS(8593), + [aux_sym_as_type_clause_token2] = ACTIONS(8591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8591), + [aux_sym_visibility_token1] = ACTIONS(8591), + [aux_sym_visibility_token2] = ACTIONS(8591), + [aux_sym_elseif_fragment_token1] = ACTIONS(8591), + [aux_sym_else_fragment_token1] = ACTIONS(8591), + [aux_sym_select_statement_token1] = ACTIONS(8591), + [aux_sym__for_header_token1] = ACTIONS(8591), + [aux_sym_do_statement_token1] = ACTIONS(8591), + [aux_sym_do_condition_token1] = ACTIONS(8591), + [aux_sym_while_statement_token1] = ACTIONS(8591), + [aux_sym_with_statement_token1] = ACTIONS(8591), + [aux_sym_exit_statement_token1] = ACTIONS(8591), + [sym_end_statement] = ACTIONS(8593), + [aux_sym_on_goto_statement_token1] = ACTIONS(8591), + [aux_sym_on_goto_statement_token2] = ACTIONS(8591), + [aux_sym_on_error_statement_token2] = ACTIONS(8591), + [sym__ambiguous_redim_statement] = ACTIONS(8593), + [aux_sym_erase_statement_token1] = ACTIONS(8591), + [aux_sym_open_statement_token1] = ACTIONS(8591), + [aux_sym_file_mode_token2] = ACTIONS(8591), + [aux_sym_file_access_token2] = ACTIONS(8591), + [aux_sym_file_lock_token2] = ACTIONS(8591), + [aux_sym_print_statement_token1] = ACTIONS(8591), + [anon_sym_PLUS] = ACTIONS(8593), + [anon_sym_DASH] = ACTIONS(8591), + [anon_sym_QMARK] = ACTIONS(8593), + [aux_sym_close_statement_token1] = ACTIONS(8591), + [aux_sym_put_statement_token1] = ACTIONS(8591), + [aux_sym_unlock_statement_token1] = ACTIONS(8591), + [aux_sym_seek_statement_token1] = ACTIONS(8591), + [sym_reset_statement] = ACTIONS(8591), + [aux_sym_raise_event_statement_token1] = ACTIONS(8591), + [sym_stop_statement] = ACTIONS(8591), + [sym_beep_statement] = ACTIONS(8591), + [aux_sym_unload_statement_token1] = ACTIONS(8591), + [aux_sym_def_type_statement_token1] = ACTIONS(8591), + [aux_sym_def_type_statement_token2] = ACTIONS(8591), + [aux_sym_def_type_statement_token3] = ACTIONS(8591), + [aux_sym_def_type_statement_token4] = ACTIONS(8591), + [aux_sym_def_type_statement_token5] = ACTIONS(8591), + [aux_sym_def_type_statement_token6] = ACTIONS(8591), + [aux_sym_def_type_statement_token7] = ACTIONS(8591), + [aux_sym_def_type_statement_token8] = ACTIONS(8591), + [aux_sym_def_type_statement_token9] = ACTIONS(8591), + [aux_sym_def_type_statement_token10] = ACTIONS(8591), + [aux_sym_def_type_statement_token11] = ACTIONS(8591), + [aux_sym_def_type_statement_token12] = ACTIONS(8591), + [aux_sym_def_type_statement_token13] = ACTIONS(8591), + [aux_sym_def_type_statement_token14] = ACTIONS(8591), + [aux_sym_call_statement_token1] = ACTIONS(8591), + [sym__ambiguous_call_statement] = ACTIONS(8591), + [aux_sym_addressof_expression_token1] = ACTIONS(8591), + [aux_sym_type_of_expression_token1] = ACTIONS(8591), + [aux_sym_unary_expression_token1] = ACTIONS(8591), + [sym_string_literal] = ACTIONS(8593), + [sym_number_literal] = ACTIONS(8593), + [aux_sym_boolean_literal_token1] = ACTIONS(8591), + [aux_sym_boolean_literal_token2] = ACTIONS(8591), + [sym_nothing_literal] = ACTIONS(8591), + [sym_null_literal] = ACTIONS(8591), + [sym_empty_literal] = ACTIONS(8591), + [sym_date_literal] = ACTIONS(8593), + [anon_sym_POUND] = ACTIONS(8591), + }, + [STATE(5237)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5273), + [sym_identifier] = ACTIONS(8095), + [sym_newline] = ACTIONS(8097), + [anon_sym_COLON] = ACTIONS(8097), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8095), + [aux_sym_frm_property_statement_token1] = ACTIONS(8095), + [anon_sym_DOT] = ACTIONS(8095), + [anon_sym_BANG] = ACTIONS(8097), + [aux_sym__attribute_identifier_token1] = ACTIONS(8095), + [aux_sym_option_statement_token3] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8095), + [aux_sym_preprocessor_const_token1] = ACTIONS(8095), + [sym_static_modifier] = ACTIONS(8095), + [sym__dim_keyword] = ACTIONS(8095), + [sym__redim_keyword] = ACTIONS(8095), + [aux_sym_get_accessor_token1] = ACTIONS(8095), + [aux_sym_set_accessor_token1] = ACTIONS(8095), + [anon_sym_COMMA] = ACTIONS(10500), + [aux_sym_const_declaration_token1] = ACTIONS(8095), + [anon_sym_LPAREN] = ACTIONS(8097), + [aux_sym_as_type_clause_token2] = ACTIONS(8095), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8095), + [aux_sym_visibility_token1] = ACTIONS(8095), + [aux_sym_visibility_token2] = ACTIONS(8095), + [aux_sym_elseif_fragment_token1] = ACTIONS(8095), + [aux_sym_else_fragment_token1] = ACTIONS(8095), + [aux_sym_select_statement_token1] = ACTIONS(8095), + [aux_sym__for_header_token1] = ACTIONS(8095), + [aux_sym_do_statement_token1] = ACTIONS(8095), + [aux_sym_do_condition_token1] = ACTIONS(8095), + [aux_sym_while_statement_token1] = ACTIONS(8095), + [aux_sym_with_statement_token1] = ACTIONS(8095), + [aux_sym_exit_statement_token1] = ACTIONS(8095), + [sym_end_statement] = ACTIONS(8097), + [aux_sym_on_goto_statement_token1] = ACTIONS(8095), + [aux_sym_on_goto_statement_token2] = ACTIONS(8095), + [aux_sym_on_error_statement_token2] = ACTIONS(8095), + [sym__ambiguous_redim_statement] = ACTIONS(8097), + [aux_sym_erase_statement_token1] = ACTIONS(8095), + [aux_sym_open_statement_token1] = ACTIONS(8095), + [aux_sym_file_mode_token2] = ACTIONS(8095), + [aux_sym_file_access_token2] = ACTIONS(8095), + [aux_sym_file_lock_token2] = ACTIONS(8095), + [aux_sym_print_statement_token1] = ACTIONS(8095), + [anon_sym_PLUS] = ACTIONS(8097), + [anon_sym_DASH] = ACTIONS(8095), + [anon_sym_QMARK] = ACTIONS(8097), + [aux_sym_close_statement_token1] = ACTIONS(8095), + [aux_sym_put_statement_token1] = ACTIONS(8095), + [aux_sym_unlock_statement_token1] = ACTIONS(8095), + [aux_sym_seek_statement_token1] = ACTIONS(8095), + [sym_reset_statement] = ACTIONS(8095), + [aux_sym_raise_event_statement_token1] = ACTIONS(8095), + [sym_stop_statement] = ACTIONS(8095), + [sym_beep_statement] = ACTIONS(8095), + [aux_sym_unload_statement_token1] = ACTIONS(8095), + [aux_sym_def_type_statement_token1] = ACTIONS(8095), + [aux_sym_def_type_statement_token2] = ACTIONS(8095), + [aux_sym_def_type_statement_token3] = ACTIONS(8095), + [aux_sym_def_type_statement_token4] = ACTIONS(8095), + [aux_sym_def_type_statement_token5] = ACTIONS(8095), + [aux_sym_def_type_statement_token6] = ACTIONS(8095), + [aux_sym_def_type_statement_token7] = ACTIONS(8095), + [aux_sym_def_type_statement_token8] = ACTIONS(8095), + [aux_sym_def_type_statement_token9] = ACTIONS(8095), + [aux_sym_def_type_statement_token10] = ACTIONS(8095), + [aux_sym_def_type_statement_token11] = ACTIONS(8095), + [aux_sym_def_type_statement_token12] = ACTIONS(8095), + [aux_sym_def_type_statement_token13] = ACTIONS(8095), + [aux_sym_def_type_statement_token14] = ACTIONS(8095), + [aux_sym_call_statement_token1] = ACTIONS(8095), + [sym__ambiguous_call_statement] = ACTIONS(8095), + [aux_sym_addressof_expression_token1] = ACTIONS(8095), + [aux_sym_type_of_expression_token1] = ACTIONS(8095), + [aux_sym_unary_expression_token1] = ACTIONS(8095), + [sym_string_literal] = ACTIONS(8097), + [sym_number_literal] = ACTIONS(8097), + [aux_sym_boolean_literal_token1] = ACTIONS(8095), + [aux_sym_boolean_literal_token2] = ACTIONS(8095), + [sym_nothing_literal] = ACTIONS(8095), + [sym_null_literal] = ACTIONS(8095), + [sym_empty_literal] = ACTIONS(8095), + [sym_date_literal] = ACTIONS(8097), + [anon_sym_POUND] = ACTIONS(8095), + }, + [STATE(5238)] = { + [sym_argument_list] = STATE(5969), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(10504), + [anon_sym_BANG] = ACTIONS(10506), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10508), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_statement_token2] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(5239)] = { + [aux_sym_const_declaration_repeat1] = STATE(5274), + [sym_identifier] = ACTIONS(8614), + [sym_newline] = ACTIONS(8616), + [anon_sym_COLON] = ACTIONS(8616), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8614), + [aux_sym_frm_property_statement_token1] = ACTIONS(8614), + [anon_sym_DOT] = ACTIONS(8614), + [anon_sym_BANG] = ACTIONS(8616), + [aux_sym__attribute_identifier_token1] = ACTIONS(8614), + [aux_sym_option_statement_token3] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8614), + [aux_sym_preprocessor_const_token1] = ACTIONS(8614), + [sym_static_modifier] = ACTIONS(8614), + [sym__dim_keyword] = ACTIONS(8614), + [sym__redim_keyword] = ACTIONS(8614), + [aux_sym_get_accessor_token1] = ACTIONS(8614), + [aux_sym_set_accessor_token1] = ACTIONS(8614), + [anon_sym_COMMA] = ACTIONS(10502), + [aux_sym_const_declaration_token1] = ACTIONS(8614), + [anon_sym_LPAREN] = ACTIONS(8616), + [aux_sym_as_type_clause_token2] = ACTIONS(8614), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8614), + [aux_sym_visibility_token1] = ACTIONS(8614), + [aux_sym_visibility_token2] = ACTIONS(8614), + [aux_sym_elseif_fragment_token1] = ACTIONS(8614), + [aux_sym_else_fragment_token1] = ACTIONS(8614), + [aux_sym_select_statement_token1] = ACTIONS(8614), + [aux_sym__for_header_token1] = ACTIONS(8614), + [aux_sym_do_statement_token1] = ACTIONS(8614), + [aux_sym_do_condition_token1] = ACTIONS(8614), + [aux_sym_while_statement_token1] = ACTIONS(8614), + [aux_sym_with_statement_token1] = ACTIONS(8614), + [aux_sym_exit_statement_token1] = ACTIONS(8614), + [sym_end_statement] = ACTIONS(8616), + [aux_sym_on_goto_statement_token1] = ACTIONS(8614), + [aux_sym_on_goto_statement_token2] = ACTIONS(8614), + [aux_sym_on_error_statement_token2] = ACTIONS(8614), + [sym__ambiguous_redim_statement] = ACTIONS(8616), + [aux_sym_erase_statement_token1] = ACTIONS(8614), + [aux_sym_open_statement_token1] = ACTIONS(8614), + [aux_sym_file_mode_token2] = ACTIONS(8614), + [aux_sym_file_access_token2] = ACTIONS(8614), + [aux_sym_file_lock_token2] = ACTIONS(8614), + [aux_sym_print_statement_token1] = ACTIONS(8614), + [anon_sym_PLUS] = ACTIONS(8616), + [anon_sym_DASH] = ACTIONS(8614), + [anon_sym_QMARK] = ACTIONS(8616), + [aux_sym_close_statement_token1] = ACTIONS(8614), + [aux_sym_put_statement_token1] = ACTIONS(8614), + [aux_sym_unlock_statement_token1] = ACTIONS(8614), + [aux_sym_seek_statement_token1] = ACTIONS(8614), + [sym_reset_statement] = ACTIONS(8614), + [aux_sym_raise_event_statement_token1] = ACTIONS(8614), + [sym_stop_statement] = ACTIONS(8614), + [sym_beep_statement] = ACTIONS(8614), + [aux_sym_unload_statement_token1] = ACTIONS(8614), + [aux_sym_def_type_statement_token1] = ACTIONS(8614), + [aux_sym_def_type_statement_token2] = ACTIONS(8614), + [aux_sym_def_type_statement_token3] = ACTIONS(8614), + [aux_sym_def_type_statement_token4] = ACTIONS(8614), + [aux_sym_def_type_statement_token5] = ACTIONS(8614), + [aux_sym_def_type_statement_token6] = ACTIONS(8614), + [aux_sym_def_type_statement_token7] = ACTIONS(8614), + [aux_sym_def_type_statement_token8] = ACTIONS(8614), + [aux_sym_def_type_statement_token9] = ACTIONS(8614), + [aux_sym_def_type_statement_token10] = ACTIONS(8614), + [aux_sym_def_type_statement_token11] = ACTIONS(8614), + [aux_sym_def_type_statement_token12] = ACTIONS(8614), + [aux_sym_def_type_statement_token13] = ACTIONS(8614), + [aux_sym_def_type_statement_token14] = ACTIONS(8614), + [aux_sym_call_statement_token1] = ACTIONS(8614), + [sym__ambiguous_call_statement] = ACTIONS(8614), + [aux_sym_addressof_expression_token1] = ACTIONS(8614), + [aux_sym_type_of_expression_token1] = ACTIONS(8614), + [aux_sym_unary_expression_token1] = ACTIONS(8614), + [sym_string_literal] = ACTIONS(8616), + [sym_number_literal] = ACTIONS(8616), + [aux_sym_boolean_literal_token1] = ACTIONS(8614), + [aux_sym_boolean_literal_token2] = ACTIONS(8614), + [sym_nothing_literal] = ACTIONS(8614), + [sym_null_literal] = ACTIONS(8614), + [sym_empty_literal] = ACTIONS(8614), + [sym_date_literal] = ACTIONS(8616), + [anon_sym_POUND] = ACTIONS(8614), + }, + [STATE(5240)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5276), + [sym_identifier] = ACTIONS(8591), + [sym_newline] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(8593), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8591), + [aux_sym_frm_property_statement_token1] = ACTIONS(8591), + [anon_sym_DOT] = ACTIONS(8591), + [anon_sym_BANG] = ACTIONS(8593), + [aux_sym__attribute_identifier_token1] = ACTIONS(8591), + [aux_sym_option_statement_token3] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8591), + [aux_sym_preprocessor_const_token1] = ACTIONS(8591), + [sym_static_modifier] = ACTIONS(8591), + [sym__dim_keyword] = ACTIONS(8591), + [sym__redim_keyword] = ACTIONS(8591), + [aux_sym_get_accessor_token1] = ACTIONS(8591), + [aux_sym_set_accessor_token1] = ACTIONS(8591), + [anon_sym_COMMA] = ACTIONS(10496), + [aux_sym_const_declaration_token1] = ACTIONS(8591), + [anon_sym_LPAREN] = ACTIONS(8593), + [aux_sym_as_type_clause_token2] = ACTIONS(8591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8591), + [aux_sym_visibility_token1] = ACTIONS(8591), + [aux_sym_visibility_token2] = ACTIONS(8591), + [aux_sym_elseif_fragment_token1] = ACTIONS(8591), + [aux_sym_else_fragment_token1] = ACTIONS(8591), + [aux_sym_select_statement_token1] = ACTIONS(8591), + [aux_sym__for_header_token1] = ACTIONS(8591), + [aux_sym_do_statement_token1] = ACTIONS(8591), + [aux_sym_do_condition_token1] = ACTIONS(8591), + [aux_sym_with_statement_token1] = ACTIONS(8591), + [aux_sym_exit_statement_token1] = ACTIONS(8591), + [sym_end_statement] = ACTIONS(8593), + [aux_sym_on_goto_statement_token1] = ACTIONS(8591), + [aux_sym_on_goto_statement_token2] = ACTIONS(8591), + [aux_sym_on_error_statement_token2] = ACTIONS(8591), + [sym__ambiguous_redim_statement] = ACTIONS(8593), + [aux_sym_erase_statement_token1] = ACTIONS(8591), + [aux_sym_open_statement_token1] = ACTIONS(8591), + [aux_sym_file_mode_token2] = ACTIONS(8591), + [aux_sym_file_access_token2] = ACTIONS(8591), + [aux_sym_file_lock_token2] = ACTIONS(8591), + [aux_sym_print_statement_token1] = ACTIONS(8591), + [anon_sym_PLUS] = ACTIONS(8593), + [anon_sym_DASH] = ACTIONS(8591), + [anon_sym_QMARK] = ACTIONS(8593), + [aux_sym_close_statement_token1] = ACTIONS(8591), + [aux_sym_put_statement_token1] = ACTIONS(8591), + [aux_sym_unlock_statement_token1] = ACTIONS(8591), + [aux_sym_seek_statement_token1] = ACTIONS(8591), + [sym_reset_statement] = ACTIONS(8591), + [aux_sym_raise_event_statement_token1] = ACTIONS(8591), + [sym_stop_statement] = ACTIONS(8591), + [sym_beep_statement] = ACTIONS(8591), + [aux_sym_unload_statement_token1] = ACTIONS(8591), + [aux_sym_def_type_statement_token1] = ACTIONS(8591), + [aux_sym_def_type_statement_token2] = ACTIONS(8591), + [aux_sym_def_type_statement_token3] = ACTIONS(8591), + [aux_sym_def_type_statement_token4] = ACTIONS(8591), + [aux_sym_def_type_statement_token5] = ACTIONS(8591), + [aux_sym_def_type_statement_token6] = ACTIONS(8591), + [aux_sym_def_type_statement_token7] = ACTIONS(8591), + [aux_sym_def_type_statement_token8] = ACTIONS(8591), + [aux_sym_def_type_statement_token9] = ACTIONS(8591), + [aux_sym_def_type_statement_token10] = ACTIONS(8591), + [aux_sym_def_type_statement_token11] = ACTIONS(8591), + [aux_sym_def_type_statement_token12] = ACTIONS(8591), + [aux_sym_def_type_statement_token13] = ACTIONS(8591), + [aux_sym_def_type_statement_token14] = ACTIONS(8591), + [aux_sym_call_statement_token1] = ACTIONS(8591), + [sym__ambiguous_call_statement] = ACTIONS(8591), + [aux_sym_addressof_expression_token1] = ACTIONS(8591), + [aux_sym_type_of_expression_token1] = ACTIONS(8591), + [aux_sym_unary_expression_token1] = ACTIONS(8591), + [sym_string_literal] = ACTIONS(8593), + [sym_number_literal] = ACTIONS(8593), + [aux_sym_boolean_literal_token1] = ACTIONS(8591), + [aux_sym_boolean_literal_token2] = ACTIONS(8591), + [sym_nothing_literal] = ACTIONS(8591), + [sym_null_literal] = ACTIONS(8591), + [sym_empty_literal] = ACTIONS(8591), + [sym_date_literal] = ACTIONS(8593), + [anon_sym_POUND] = ACTIONS(8591), + }, + [STATE(5241)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5276), + [sym_identifier] = ACTIONS(8095), + [sym_newline] = ACTIONS(8097), + [anon_sym_COLON] = ACTIONS(8097), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8095), + [aux_sym_frm_property_statement_token1] = ACTIONS(8095), + [anon_sym_DOT] = ACTIONS(8095), + [anon_sym_BANG] = ACTIONS(8097), + [aux_sym__attribute_identifier_token1] = ACTIONS(8095), + [aux_sym_option_statement_token3] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8095), + [aux_sym_preprocessor_const_token1] = ACTIONS(8095), + [sym_static_modifier] = ACTIONS(8095), + [sym__dim_keyword] = ACTIONS(8095), + [sym__redim_keyword] = ACTIONS(8095), + [aux_sym_get_accessor_token1] = ACTIONS(8095), + [aux_sym_set_accessor_token1] = ACTIONS(8095), + [anon_sym_COMMA] = ACTIONS(10496), + [aux_sym_const_declaration_token1] = ACTIONS(8095), + [anon_sym_LPAREN] = ACTIONS(8097), + [aux_sym_as_type_clause_token2] = ACTIONS(8095), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8095), + [aux_sym_visibility_token1] = ACTIONS(8095), + [aux_sym_visibility_token2] = ACTIONS(8095), + [aux_sym_elseif_fragment_token1] = ACTIONS(8095), + [aux_sym_else_fragment_token1] = ACTIONS(8095), + [aux_sym_select_statement_token1] = ACTIONS(8095), + [aux_sym__for_header_token1] = ACTIONS(8095), + [aux_sym_do_statement_token1] = ACTIONS(8095), + [aux_sym_do_condition_token1] = ACTIONS(8095), + [aux_sym_with_statement_token1] = ACTIONS(8095), + [aux_sym_exit_statement_token1] = ACTIONS(8095), + [sym_end_statement] = ACTIONS(8097), + [aux_sym_on_goto_statement_token1] = ACTIONS(8095), + [aux_sym_on_goto_statement_token2] = ACTIONS(8095), + [aux_sym_on_error_statement_token2] = ACTIONS(8095), + [sym__ambiguous_redim_statement] = ACTIONS(8097), + [aux_sym_erase_statement_token1] = ACTIONS(8095), + [aux_sym_open_statement_token1] = ACTIONS(8095), + [aux_sym_file_mode_token2] = ACTIONS(8095), + [aux_sym_file_access_token2] = ACTIONS(8095), + [aux_sym_file_lock_token2] = ACTIONS(8095), + [aux_sym_print_statement_token1] = ACTIONS(8095), + [anon_sym_PLUS] = ACTIONS(8097), + [anon_sym_DASH] = ACTIONS(8095), + [anon_sym_QMARK] = ACTIONS(8097), + [aux_sym_close_statement_token1] = ACTIONS(8095), + [aux_sym_put_statement_token1] = ACTIONS(8095), + [aux_sym_unlock_statement_token1] = ACTIONS(8095), + [aux_sym_seek_statement_token1] = ACTIONS(8095), + [sym_reset_statement] = ACTIONS(8095), + [aux_sym_raise_event_statement_token1] = ACTIONS(8095), + [sym_stop_statement] = ACTIONS(8095), + [sym_beep_statement] = ACTIONS(8095), + [aux_sym_unload_statement_token1] = ACTIONS(8095), + [aux_sym_def_type_statement_token1] = ACTIONS(8095), + [aux_sym_def_type_statement_token2] = ACTIONS(8095), + [aux_sym_def_type_statement_token3] = ACTIONS(8095), + [aux_sym_def_type_statement_token4] = ACTIONS(8095), + [aux_sym_def_type_statement_token5] = ACTIONS(8095), + [aux_sym_def_type_statement_token6] = ACTIONS(8095), + [aux_sym_def_type_statement_token7] = ACTIONS(8095), + [aux_sym_def_type_statement_token8] = ACTIONS(8095), + [aux_sym_def_type_statement_token9] = ACTIONS(8095), + [aux_sym_def_type_statement_token10] = ACTIONS(8095), + [aux_sym_def_type_statement_token11] = ACTIONS(8095), + [aux_sym_def_type_statement_token12] = ACTIONS(8095), + [aux_sym_def_type_statement_token13] = ACTIONS(8095), + [aux_sym_def_type_statement_token14] = ACTIONS(8095), + [aux_sym_call_statement_token1] = ACTIONS(8095), + [sym__ambiguous_call_statement] = ACTIONS(8095), + [aux_sym_addressof_expression_token1] = ACTIONS(8095), + [aux_sym_type_of_expression_token1] = ACTIONS(8095), + [aux_sym_unary_expression_token1] = ACTIONS(8095), + [sym_string_literal] = ACTIONS(8097), + [sym_number_literal] = ACTIONS(8097), + [aux_sym_boolean_literal_token1] = ACTIONS(8095), + [aux_sym_boolean_literal_token2] = ACTIONS(8095), + [sym_nothing_literal] = ACTIONS(8095), + [sym_null_literal] = ACTIONS(8095), + [sym_empty_literal] = ACTIONS(8095), + [sym_date_literal] = ACTIONS(8097), + [anon_sym_POUND] = ACTIONS(8095), + }, + [STATE(5242)] = { + [sym_identifier] = ACTIONS(9016), + [sym_newline] = ACTIONS(9018), + [anon_sym_COLON] = ACTIONS(9018), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9016), + [aux_sym_frm_property_statement_token1] = ACTIONS(9016), + [anon_sym_DOT] = ACTIONS(9016), + [anon_sym_BANG] = ACTIONS(9018), + [aux_sym__attribute_identifier_token1] = ACTIONS(9016), + [aux_sym_option_statement_token3] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9016), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9016), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9016), + [aux_sym_preprocessor_const_token1] = ACTIONS(9016), + [sym_static_modifier] = ACTIONS(9016), + [sym__dim_keyword] = ACTIONS(9016), + [sym__redim_keyword] = ACTIONS(9016), + [aux_sym_get_accessor_token1] = ACTIONS(9016), + [aux_sym_set_accessor_token1] = ACTIONS(9016), + [aux_sym_const_declaration_token1] = ACTIONS(9016), + [anon_sym_LPAREN] = ACTIONS(9018), + [aux_sym_as_type_clause_token2] = ACTIONS(9016), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9016), + [aux_sym_visibility_token1] = ACTIONS(9016), + [aux_sym_visibility_token2] = ACTIONS(9016), + [aux_sym_elseif_fragment_token1] = ACTIONS(9016), + [aux_sym_else_fragment_token1] = ACTIONS(9016), + [aux_sym_select_statement_token1] = ACTIONS(9016), + [aux_sym__for_header_token1] = ACTIONS(9016), + [aux_sym_do_statement_token1] = ACTIONS(9016), + [aux_sym_do_condition_token1] = ACTIONS(9016), + [aux_sym_with_statement_token1] = ACTIONS(9016), + [aux_sym_exit_statement_token1] = ACTIONS(9016), + [sym_end_statement] = ACTIONS(9018), + [aux_sym_on_goto_statement_token1] = ACTIONS(9016), + [aux_sym_on_goto_statement_token2] = ACTIONS(9016), + [aux_sym_on_error_statement_token2] = ACTIONS(9016), + [sym__ambiguous_redim_statement] = ACTIONS(9018), + [aux_sym_erase_statement_token1] = ACTIONS(9016), + [aux_sym_open_statement_token1] = ACTIONS(9016), + [aux_sym_file_mode_token2] = ACTIONS(9016), + [aux_sym_file_access_token2] = ACTIONS(9016), + [aux_sym_file_lock_token2] = ACTIONS(9016), + [aux_sym_print_statement_token1] = ACTIONS(9016), + [anon_sym_PLUS] = ACTIONS(9018), + [anon_sym_DASH] = ACTIONS(9016), + [anon_sym_QMARK] = ACTIONS(9018), + [aux_sym_close_statement_token1] = ACTIONS(9016), + [aux_sym_put_statement_token1] = ACTIONS(9016), + [aux_sym_unlock_statement_token1] = ACTIONS(9016), + [aux_sym_seek_statement_token1] = ACTIONS(9016), + [sym_reset_statement] = ACTIONS(9016), + [aux_sym_raise_event_statement_token1] = ACTIONS(9016), + [sym_stop_statement] = ACTIONS(9016), + [sym_beep_statement] = ACTIONS(9016), + [aux_sym_unload_statement_token1] = ACTIONS(9016), + [aux_sym_def_type_statement_token1] = ACTIONS(9016), + [aux_sym_def_type_statement_token2] = ACTIONS(9016), + [aux_sym_def_type_statement_token3] = ACTIONS(9016), + [aux_sym_def_type_statement_token4] = ACTIONS(9016), + [aux_sym_def_type_statement_token5] = ACTIONS(9016), + [aux_sym_def_type_statement_token6] = ACTIONS(9016), + [aux_sym_def_type_statement_token7] = ACTIONS(9016), + [aux_sym_def_type_statement_token8] = ACTIONS(9016), + [aux_sym_def_type_statement_token9] = ACTIONS(9016), + [aux_sym_def_type_statement_token10] = ACTIONS(9016), + [aux_sym_def_type_statement_token11] = ACTIONS(9016), + [aux_sym_def_type_statement_token12] = ACTIONS(9016), + [aux_sym_def_type_statement_token13] = ACTIONS(9016), + [aux_sym_def_type_statement_token14] = ACTIONS(9016), + [aux_sym_call_statement_token1] = ACTIONS(9016), + [sym__ambiguous_call_statement] = ACTIONS(9016), + [aux_sym_addressof_expression_token1] = ACTIONS(9016), + [aux_sym_type_of_expression_token1] = ACTIONS(9016), + [aux_sym_unary_expression_token1] = ACTIONS(9016), + [sym_string_literal] = ACTIONS(9018), + [sym_number_literal] = ACTIONS(9018), + [aux_sym_boolean_literal_token1] = ACTIONS(9016), + [aux_sym_boolean_literal_token2] = ACTIONS(9016), + [sym_nothing_literal] = ACTIONS(9016), + [sym_null_literal] = ACTIONS(9016), + [sym_empty_literal] = ACTIONS(9016), + [sym_date_literal] = ACTIONS(9018), + [anon_sym_POUND] = ACTIONS(9016), + }, + [STATE(5243)] = { + [aux_sym_def_type_statement_repeat1] = STATE(5379), + [sym_identifier] = ACTIONS(8603), + [sym_newline] = ACTIONS(8605), + [anon_sym_COLON] = ACTIONS(8605), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8603), + [aux_sym_frm_property_statement_token1] = ACTIONS(8603), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_BANG] = ACTIONS(8605), + [aux_sym__attribute_identifier_token1] = ACTIONS(8603), + [aux_sym_option_statement_token3] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8603), + [aux_sym_preprocessor_const_token1] = ACTIONS(8603), + [sym_static_modifier] = ACTIONS(8603), + [sym__dim_keyword] = ACTIONS(8603), + [sym__redim_keyword] = ACTIONS(8603), + [aux_sym_get_accessor_token1] = ACTIONS(8603), + [aux_sym_set_accessor_token1] = ACTIONS(8603), + [anon_sym_COMMA] = ACTIONS(10494), + [aux_sym_const_declaration_token1] = ACTIONS(8603), + [anon_sym_LPAREN] = ACTIONS(8605), + [aux_sym_as_type_clause_token2] = ACTIONS(8603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8603), + [aux_sym_visibility_token1] = ACTIONS(8603), + [aux_sym_visibility_token2] = ACTIONS(8603), + [aux_sym_elseif_fragment_token1] = ACTIONS(8603), + [aux_sym_else_fragment_token1] = ACTIONS(8603), + [aux_sym_select_statement_token1] = ACTIONS(8603), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8603), + [aux_sym__for_header_token1] = ACTIONS(8603), + [aux_sym_do_statement_token1] = ACTIONS(8603), + [aux_sym_do_condition_token1] = ACTIONS(8603), + [aux_sym_with_statement_token1] = ACTIONS(8603), + [aux_sym_exit_statement_token1] = ACTIONS(8603), + [sym_end_statement] = ACTIONS(8605), + [aux_sym_on_goto_statement_token1] = ACTIONS(8603), + [aux_sym_on_goto_statement_token2] = ACTIONS(8603), + [aux_sym_on_error_statement_token2] = ACTIONS(8603), + [sym__ambiguous_redim_statement] = ACTIONS(8605), + [aux_sym_erase_statement_token1] = ACTIONS(8603), + [aux_sym_open_statement_token1] = ACTIONS(8603), + [aux_sym_file_mode_token2] = ACTIONS(8603), + [aux_sym_file_access_token2] = ACTIONS(8603), + [aux_sym_file_lock_token2] = ACTIONS(8603), + [aux_sym_print_statement_token1] = ACTIONS(8603), + [anon_sym_PLUS] = ACTIONS(8605), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_QMARK] = ACTIONS(8605), + [aux_sym_close_statement_token1] = ACTIONS(8603), + [aux_sym_put_statement_token1] = ACTIONS(8603), + [aux_sym_unlock_statement_token1] = ACTIONS(8603), + [aux_sym_seek_statement_token1] = ACTIONS(8603), + [sym_reset_statement] = ACTIONS(8603), + [aux_sym_raise_event_statement_token1] = ACTIONS(8603), + [sym_stop_statement] = ACTIONS(8603), + [sym_beep_statement] = ACTIONS(8603), + [aux_sym_unload_statement_token1] = ACTIONS(8603), + [aux_sym_def_type_statement_token1] = ACTIONS(8603), + [aux_sym_def_type_statement_token2] = ACTIONS(8603), + [aux_sym_def_type_statement_token3] = ACTIONS(8603), + [aux_sym_def_type_statement_token4] = ACTIONS(8603), + [aux_sym_def_type_statement_token5] = ACTIONS(8603), + [aux_sym_def_type_statement_token6] = ACTIONS(8603), + [aux_sym_def_type_statement_token7] = ACTIONS(8603), + [aux_sym_def_type_statement_token8] = ACTIONS(8603), + [aux_sym_def_type_statement_token9] = ACTIONS(8603), + [aux_sym_def_type_statement_token10] = ACTIONS(8603), + [aux_sym_def_type_statement_token11] = ACTIONS(8603), + [aux_sym_def_type_statement_token12] = ACTIONS(8603), + [aux_sym_def_type_statement_token13] = ACTIONS(8603), + [aux_sym_def_type_statement_token14] = ACTIONS(8603), + [aux_sym_call_statement_token1] = ACTIONS(8603), + [sym__ambiguous_call_statement] = ACTIONS(8603), + [aux_sym_addressof_expression_token1] = ACTIONS(8603), + [aux_sym_type_of_expression_token1] = ACTIONS(8603), + [aux_sym_unary_expression_token1] = ACTIONS(8603), + [sym_string_literal] = ACTIONS(8605), + [sym_number_literal] = ACTIONS(8605), + [aux_sym_boolean_literal_token1] = ACTIONS(8603), + [aux_sym_boolean_literal_token2] = ACTIONS(8603), + [sym_nothing_literal] = ACTIONS(8603), + [sym_null_literal] = ACTIONS(8603), + [sym_empty_literal] = ACTIONS(8603), + [sym_date_literal] = ACTIONS(8605), + [anon_sym_POUND] = ACTIONS(8603), + }, + [STATE(5244)] = { + [sym_identifier] = ACTIONS(8587), + [sym_newline] = ACTIONS(8589), + [anon_sym_COLON] = ACTIONS(8589), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8587), + [aux_sym_frm_property_statement_token1] = ACTIONS(8587), + [anon_sym_DOT] = ACTIONS(8587), + [anon_sym_BANG] = ACTIONS(8589), + [aux_sym__attribute_identifier_token1] = ACTIONS(8587), + [aux_sym_option_statement_token3] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8587), + [aux_sym_preprocessor_const_token1] = ACTIONS(8587), + [sym_static_modifier] = ACTIONS(8587), + [sym__dim_keyword] = ACTIONS(8587), + [sym__redim_keyword] = ACTIONS(8587), + [aux_sym_get_accessor_token1] = ACTIONS(8587), + [aux_sym_set_accessor_token1] = ACTIONS(8587), + [anon_sym_COMMA] = ACTIONS(8589), + [aux_sym_const_declaration_token1] = ACTIONS(8587), + [anon_sym_LPAREN] = ACTIONS(8589), + [aux_sym_as_type_clause_token2] = ACTIONS(8587), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8587), + [aux_sym_visibility_token1] = ACTIONS(8587), + [aux_sym_visibility_token2] = ACTIONS(8587), + [aux_sym_elseif_fragment_token1] = ACTIONS(8587), + [aux_sym_else_fragment_token1] = ACTIONS(8587), + [aux_sym_select_statement_token1] = ACTIONS(8587), + [aux_sym__for_header_token1] = ACTIONS(8587), + [aux_sym_do_statement_token1] = ACTIONS(8587), + [aux_sym_do_condition_token1] = ACTIONS(8587), + [aux_sym_with_statement_token1] = ACTIONS(8587), + [aux_sym_exit_statement_token1] = ACTIONS(8587), + [sym_end_statement] = ACTIONS(8589), + [aux_sym_on_goto_statement_token1] = ACTIONS(8587), + [aux_sym_on_goto_statement_token2] = ACTIONS(8587), + [aux_sym_on_error_statement_token2] = ACTIONS(8587), + [sym__ambiguous_redim_statement] = ACTIONS(8589), + [aux_sym_erase_statement_token1] = ACTIONS(8587), + [aux_sym_open_statement_token1] = ACTIONS(8587), + [aux_sym_file_mode_token2] = ACTIONS(8587), + [aux_sym_file_access_token2] = ACTIONS(8587), + [aux_sym_file_lock_token2] = ACTIONS(8587), + [aux_sym_print_statement_token1] = ACTIONS(8587), + [anon_sym_PLUS] = ACTIONS(8589), + [anon_sym_DASH] = ACTIONS(8587), + [anon_sym_SEMI] = ACTIONS(8589), + [anon_sym_QMARK] = ACTIONS(8589), + [aux_sym_close_statement_token1] = ACTIONS(8587), + [aux_sym_put_statement_token1] = ACTIONS(8587), + [aux_sym_unlock_statement_token1] = ACTIONS(8587), + [aux_sym_seek_statement_token1] = ACTIONS(8587), + [sym_reset_statement] = ACTIONS(8587), + [aux_sym_raise_event_statement_token1] = ACTIONS(8587), + [sym_stop_statement] = ACTIONS(8587), + [sym_beep_statement] = ACTIONS(8587), + [aux_sym_unload_statement_token1] = ACTIONS(8587), + [aux_sym_def_type_statement_token1] = ACTIONS(8587), + [aux_sym_def_type_statement_token2] = ACTIONS(8587), + [aux_sym_def_type_statement_token3] = ACTIONS(8587), + [aux_sym_def_type_statement_token4] = ACTIONS(8587), + [aux_sym_def_type_statement_token5] = ACTIONS(8587), + [aux_sym_def_type_statement_token6] = ACTIONS(8587), + [aux_sym_def_type_statement_token7] = ACTIONS(8587), + [aux_sym_def_type_statement_token8] = ACTIONS(8587), + [aux_sym_def_type_statement_token9] = ACTIONS(8587), + [aux_sym_def_type_statement_token10] = ACTIONS(8587), + [aux_sym_def_type_statement_token11] = ACTIONS(8587), + [aux_sym_def_type_statement_token12] = ACTIONS(8587), + [aux_sym_def_type_statement_token13] = ACTIONS(8587), + [aux_sym_def_type_statement_token14] = ACTIONS(8587), + [aux_sym_call_statement_token1] = ACTIONS(8587), + [sym__ambiguous_call_statement] = ACTIONS(8587), + [aux_sym_addressof_expression_token1] = ACTIONS(8587), + [aux_sym_type_of_expression_token1] = ACTIONS(8587), + [aux_sym_unary_expression_token1] = ACTIONS(8587), + [sym_string_literal] = ACTIONS(8589), + [sym_number_literal] = ACTIONS(8589), + [aux_sym_boolean_literal_token1] = ACTIONS(8587), + [aux_sym_boolean_literal_token2] = ACTIONS(8587), + [sym_nothing_literal] = ACTIONS(8587), + [sym_null_literal] = ACTIONS(8587), + [sym_empty_literal] = ACTIONS(8587), + [sym_date_literal] = ACTIONS(8589), + [anon_sym_POUND] = ACTIONS(8587), + }, + [STATE(5245)] = { + [aux_sym_const_declaration_repeat1] = STATE(5277), + [sym_identifier] = ACTIONS(8614), + [sym_newline] = ACTIONS(8616), + [anon_sym_COLON] = ACTIONS(8616), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8614), + [aux_sym_frm_property_statement_token1] = ACTIONS(8614), + [anon_sym_DOT] = ACTIONS(8614), + [anon_sym_BANG] = ACTIONS(8616), + [aux_sym__attribute_identifier_token1] = ACTIONS(8614), + [aux_sym_option_statement_token3] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8614), + [aux_sym_preprocessor_const_token1] = ACTIONS(8614), + [sym_static_modifier] = ACTIONS(8614), + [sym__dim_keyword] = ACTIONS(8614), + [sym__redim_keyword] = ACTIONS(8614), + [aux_sym_get_accessor_token1] = ACTIONS(8614), + [aux_sym_set_accessor_token1] = ACTIONS(8614), + [anon_sym_COMMA] = ACTIONS(10498), + [aux_sym_const_declaration_token1] = ACTIONS(8614), + [anon_sym_LPAREN] = ACTIONS(8616), + [aux_sym_as_type_clause_token2] = ACTIONS(8614), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8614), + [aux_sym_visibility_token1] = ACTIONS(8614), + [aux_sym_visibility_token2] = ACTIONS(8614), + [aux_sym_elseif_fragment_token1] = ACTIONS(8614), + [aux_sym_else_fragment_token1] = ACTIONS(8614), + [aux_sym_select_statement_token1] = ACTIONS(8614), + [aux_sym__for_header_token1] = ACTIONS(8614), + [aux_sym_do_statement_token1] = ACTIONS(8614), + [aux_sym_do_condition_token1] = ACTIONS(8614), + [aux_sym_with_statement_token1] = ACTIONS(8614), + [aux_sym_exit_statement_token1] = ACTIONS(8614), + [sym_end_statement] = ACTIONS(8616), + [aux_sym_on_goto_statement_token1] = ACTIONS(8614), + [aux_sym_on_goto_statement_token2] = ACTIONS(8614), + [aux_sym_on_error_statement_token2] = ACTIONS(8614), + [sym__ambiguous_redim_statement] = ACTIONS(8616), + [aux_sym_erase_statement_token1] = ACTIONS(8614), + [aux_sym_open_statement_token1] = ACTIONS(8614), + [aux_sym_file_mode_token2] = ACTIONS(8614), + [aux_sym_file_access_token2] = ACTIONS(8614), + [aux_sym_file_lock_token2] = ACTIONS(8614), + [aux_sym_print_statement_token1] = ACTIONS(8614), + [anon_sym_PLUS] = ACTIONS(8616), + [anon_sym_DASH] = ACTIONS(8614), + [anon_sym_QMARK] = ACTIONS(8616), + [aux_sym_close_statement_token1] = ACTIONS(8614), + [aux_sym_put_statement_token1] = ACTIONS(8614), + [aux_sym_unlock_statement_token1] = ACTIONS(8614), + [aux_sym_seek_statement_token1] = ACTIONS(8614), + [sym_reset_statement] = ACTIONS(8614), + [aux_sym_raise_event_statement_token1] = ACTIONS(8614), + [sym_stop_statement] = ACTIONS(8614), + [sym_beep_statement] = ACTIONS(8614), + [aux_sym_unload_statement_token1] = ACTIONS(8614), + [aux_sym_def_type_statement_token1] = ACTIONS(8614), + [aux_sym_def_type_statement_token2] = ACTIONS(8614), + [aux_sym_def_type_statement_token3] = ACTIONS(8614), + [aux_sym_def_type_statement_token4] = ACTIONS(8614), + [aux_sym_def_type_statement_token5] = ACTIONS(8614), + [aux_sym_def_type_statement_token6] = ACTIONS(8614), + [aux_sym_def_type_statement_token7] = ACTIONS(8614), + [aux_sym_def_type_statement_token8] = ACTIONS(8614), + [aux_sym_def_type_statement_token9] = ACTIONS(8614), + [aux_sym_def_type_statement_token10] = ACTIONS(8614), + [aux_sym_def_type_statement_token11] = ACTIONS(8614), + [aux_sym_def_type_statement_token12] = ACTIONS(8614), + [aux_sym_def_type_statement_token13] = ACTIONS(8614), + [aux_sym_def_type_statement_token14] = ACTIONS(8614), + [aux_sym_call_statement_token1] = ACTIONS(8614), + [sym__ambiguous_call_statement] = ACTIONS(8614), + [aux_sym_addressof_expression_token1] = ACTIONS(8614), + [aux_sym_type_of_expression_token1] = ACTIONS(8614), + [aux_sym_unary_expression_token1] = ACTIONS(8614), + [sym_string_literal] = ACTIONS(8616), + [sym_number_literal] = ACTIONS(8616), + [aux_sym_boolean_literal_token1] = ACTIONS(8614), + [aux_sym_boolean_literal_token2] = ACTIONS(8614), + [sym_nothing_literal] = ACTIONS(8614), + [sym_null_literal] = ACTIONS(8614), + [sym_empty_literal] = ACTIONS(8614), + [sym_date_literal] = ACTIONS(8616), + [anon_sym_POUND] = ACTIONS(8614), + }, + [STATE(5246)] = { + [sym_do_condition] = STATE(6841), + [sym_identifier] = ACTIONS(8298), + [sym_newline] = ACTIONS(8300), + [anon_sym_COLON] = ACTIONS(8300), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8298), + [aux_sym_frm_property_statement_token1] = ACTIONS(8298), + [anon_sym_DOT] = ACTIONS(8298), + [anon_sym_BANG] = ACTIONS(8300), + [aux_sym__attribute_identifier_token1] = ACTIONS(8298), + [aux_sym_option_statement_token3] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8298), + [aux_sym_preprocessor_const_token1] = ACTIONS(8298), + [sym_static_modifier] = ACTIONS(8298), + [sym__dim_keyword] = ACTIONS(8298), + [sym__redim_keyword] = ACTIONS(8298), + [aux_sym_get_accessor_token1] = ACTIONS(8298), + [aux_sym_set_accessor_token1] = ACTIONS(8298), + [aux_sym_const_declaration_token1] = ACTIONS(8298), + [anon_sym_LPAREN] = ACTIONS(8300), + [aux_sym_as_type_clause_token2] = ACTIONS(8298), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8298), + [aux_sym_visibility_token1] = ACTIONS(8298), + [aux_sym_visibility_token2] = ACTIONS(8298), + [aux_sym_elseif_fragment_token1] = ACTIONS(8298), + [aux_sym_else_fragment_token1] = ACTIONS(8298), + [aux_sym_select_statement_token1] = ACTIONS(8298), + [aux_sym_select_statement_token2] = ACTIONS(8298), + [aux_sym__for_header_token1] = ACTIONS(8298), + [aux_sym_do_statement_token1] = ACTIONS(8298), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8298), + [aux_sym_exit_statement_token1] = ACTIONS(8298), + [sym_end_statement] = ACTIONS(8300), + [aux_sym_on_goto_statement_token1] = ACTIONS(8298), + [aux_sym_on_goto_statement_token2] = ACTIONS(8298), + [aux_sym_on_error_statement_token2] = ACTIONS(8298), + [sym__ambiguous_redim_statement] = ACTIONS(8300), + [aux_sym_erase_statement_token1] = ACTIONS(8298), + [aux_sym_open_statement_token1] = ACTIONS(8298), + [aux_sym_file_mode_token2] = ACTIONS(8298), + [aux_sym_file_access_token2] = ACTIONS(8298), + [aux_sym_file_lock_token2] = ACTIONS(8298), + [aux_sym_print_statement_token1] = ACTIONS(8298), + [anon_sym_PLUS] = ACTIONS(8300), + [anon_sym_DASH] = ACTIONS(8298), + [anon_sym_QMARK] = ACTIONS(8300), + [aux_sym_close_statement_token1] = ACTIONS(8298), + [aux_sym_put_statement_token1] = ACTIONS(8298), + [aux_sym_unlock_statement_token1] = ACTIONS(8298), + [aux_sym_seek_statement_token1] = ACTIONS(8298), + [sym_reset_statement] = ACTIONS(8298), + [aux_sym_raise_event_statement_token1] = ACTIONS(8298), + [sym_stop_statement] = ACTIONS(8298), + [sym_beep_statement] = ACTIONS(8298), + [aux_sym_unload_statement_token1] = ACTIONS(8298), + [aux_sym_def_type_statement_token1] = ACTIONS(8298), + [aux_sym_def_type_statement_token2] = ACTIONS(8298), + [aux_sym_def_type_statement_token3] = ACTIONS(8298), + [aux_sym_def_type_statement_token4] = ACTIONS(8298), + [aux_sym_def_type_statement_token5] = ACTIONS(8298), + [aux_sym_def_type_statement_token6] = ACTIONS(8298), + [aux_sym_def_type_statement_token7] = ACTIONS(8298), + [aux_sym_def_type_statement_token8] = ACTIONS(8298), + [aux_sym_def_type_statement_token9] = ACTIONS(8298), + [aux_sym_def_type_statement_token10] = ACTIONS(8298), + [aux_sym_def_type_statement_token11] = ACTIONS(8298), + [aux_sym_def_type_statement_token12] = ACTIONS(8298), + [aux_sym_def_type_statement_token13] = ACTIONS(8298), + [aux_sym_def_type_statement_token14] = ACTIONS(8298), + [aux_sym_call_statement_token1] = ACTIONS(8298), + [sym__ambiguous_call_statement] = ACTIONS(8298), + [aux_sym_addressof_expression_token1] = ACTIONS(8298), + [aux_sym_type_of_expression_token1] = ACTIONS(8298), + [aux_sym_unary_expression_token1] = ACTIONS(8298), + [sym_string_literal] = ACTIONS(8300), + [sym_number_literal] = ACTIONS(8300), + [aux_sym_boolean_literal_token1] = ACTIONS(8298), + [aux_sym_boolean_literal_token2] = ACTIONS(8298), + [sym_nothing_literal] = ACTIONS(8298), + [sym_null_literal] = ACTIONS(8298), + [sym_empty_literal] = ACTIONS(8298), + [sym_date_literal] = ACTIONS(8300), + [anon_sym_POUND] = ACTIONS(8298), + }, + [STATE(5247)] = { + [sym__required_file_number] = STATE(6101), + [sym_file_number_literal] = STATE(5859), + [sym_identifier] = ACTIONS(8312), + [sym_newline] = ACTIONS(8314), + [anon_sym_COLON] = ACTIONS(8314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8312), + [aux_sym_frm_property_statement_token1] = ACTIONS(8312), + [anon_sym_DOT] = ACTIONS(8312), + [anon_sym_BANG] = ACTIONS(8314), + [aux_sym__attribute_identifier_token1] = ACTIONS(8312), + [aux_sym_option_statement_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8312), + [aux_sym_preprocessor_const_token1] = ACTIONS(8312), + [sym_static_modifier] = ACTIONS(8312), + [sym__dim_keyword] = ACTIONS(8312), + [sym__redim_keyword] = ACTIONS(8312), + [aux_sym_get_accessor_token1] = ACTIONS(8312), + [aux_sym_set_accessor_token1] = ACTIONS(8312), + [aux_sym_const_declaration_token1] = ACTIONS(8312), + [anon_sym_LPAREN] = ACTIONS(8314), + [aux_sym_as_type_clause_token2] = ACTIONS(8312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8312), + [aux_sym_visibility_token1] = ACTIONS(8312), + [aux_sym_visibility_token2] = ACTIONS(8312), + [aux_sym_elseif_fragment_token1] = ACTIONS(8312), + [aux_sym_else_fragment_token1] = ACTIONS(8312), + [aux_sym_select_statement_token1] = ACTIONS(8312), + [aux_sym__for_header_token1] = ACTIONS(8312), + [aux_sym_do_statement_token1] = ACTIONS(8312), + [aux_sym_do_condition_token1] = ACTIONS(8312), + [aux_sym_with_statement_token1] = ACTIONS(8312), + [aux_sym_exit_statement_token1] = ACTIONS(8312), + [sym_end_statement] = ACTIONS(8314), + [aux_sym_on_goto_statement_token1] = ACTIONS(8312), + [aux_sym_on_goto_statement_token2] = ACTIONS(8312), + [aux_sym_on_error_statement_token2] = ACTIONS(8312), + [sym__ambiguous_redim_statement] = ACTIONS(8314), + [aux_sym_erase_statement_token1] = ACTIONS(8312), + [aux_sym_open_statement_token1] = ACTIONS(8312), + [aux_sym_file_mode_token2] = ACTIONS(8312), + [aux_sym_file_access_token2] = ACTIONS(8312), + [aux_sym_file_lock_token2] = ACTIONS(8312), + [aux_sym_print_statement_token1] = ACTIONS(8312), + [anon_sym_PLUS] = ACTIONS(8314), + [anon_sym_DASH] = ACTIONS(8312), + [anon_sym_QMARK] = ACTIONS(8314), + [aux_sym_close_statement_token1] = ACTIONS(8312), + [aux_sym_put_statement_token1] = ACTIONS(8312), + [aux_sym_unlock_statement_token1] = ACTIONS(8312), + [aux_sym_seek_statement_token1] = ACTIONS(8312), + [sym_reset_statement] = ACTIONS(8312), + [aux_sym_raise_event_statement_token1] = ACTIONS(8312), + [sym_stop_statement] = ACTIONS(8312), + [sym_beep_statement] = ACTIONS(8312), + [aux_sym_unload_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token2] = ACTIONS(8312), + [aux_sym_def_type_statement_token3] = ACTIONS(8312), + [aux_sym_def_type_statement_token4] = ACTIONS(8312), + [aux_sym_def_type_statement_token5] = ACTIONS(8312), + [aux_sym_def_type_statement_token6] = ACTIONS(8312), + [aux_sym_def_type_statement_token7] = ACTIONS(8312), + [aux_sym_def_type_statement_token8] = ACTIONS(8312), + [aux_sym_def_type_statement_token9] = ACTIONS(8312), + [aux_sym_def_type_statement_token10] = ACTIONS(8312), + [aux_sym_def_type_statement_token11] = ACTIONS(8312), + [aux_sym_def_type_statement_token12] = ACTIONS(8312), + [aux_sym_def_type_statement_token13] = ACTIONS(8312), + [aux_sym_def_type_statement_token14] = ACTIONS(8312), + [aux_sym_call_statement_token1] = ACTIONS(8312), + [sym__ambiguous_call_statement] = ACTIONS(8312), + [aux_sym_addressof_expression_token1] = ACTIONS(8312), + [aux_sym_type_of_expression_token1] = ACTIONS(8312), + [aux_sym_unary_expression_token1] = ACTIONS(8312), + [sym_string_literal] = ACTIONS(8314), + [sym_number_literal] = ACTIONS(8314), + [aux_sym_boolean_literal_token1] = ACTIONS(8312), + [aux_sym_boolean_literal_token2] = ACTIONS(8312), + [sym_nothing_literal] = ACTIONS(8312), + [sym_null_literal] = ACTIONS(8312), + [sym_empty_literal] = ACTIONS(8312), + [sym_date_literal] = ACTIONS(8314), + [anon_sym_POUND] = ACTIONS(2501), + }, + [STATE(5248)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5357), + [sym_identifier] = ACTIONS(4166), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5158), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4164), + [aux_sym_as_type_clause_token2] = ACTIONS(4166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4166), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym_select_statement_token2] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4166), + [aux_sym_type_of_expression_token1] = ACTIONS(4166), + [aux_sym_unary_expression_token1] = ACTIONS(4166), + [sym_string_literal] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4164), + [aux_sym_boolean_literal_token1] = ACTIONS(4166), + [aux_sym_boolean_literal_token2] = ACTIONS(4166), + [sym_nothing_literal] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4166), + [sym_empty_literal] = ACTIONS(4166), + [sym_date_literal] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4166), + }, + [STATE(5249)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5289), + [sym_identifier] = ACTIONS(4166), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5158), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4164), + [aux_sym_as_type_clause_token2] = ACTIONS(4166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4166), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym_select_statement_token2] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4166), + [aux_sym_type_of_expression_token1] = ACTIONS(4166), + [aux_sym_unary_expression_token1] = ACTIONS(4166), + [sym_string_literal] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4164), + [aux_sym_boolean_literal_token1] = ACTIONS(4166), + [aux_sym_boolean_literal_token2] = ACTIONS(4166), + [sym_nothing_literal] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4166), + [sym_empty_literal] = ACTIONS(4166), + [sym_date_literal] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4166), + }, + [STATE(5250)] = { + [sym_identifier] = ACTIONS(8986), + [sym_newline] = ACTIONS(9032), + [anon_sym_COLON] = ACTIONS(9032), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8986), + [aux_sym_frm_property_statement_token1] = ACTIONS(8986), + [anon_sym_DOT] = ACTIONS(8986), + [anon_sym_BANG] = ACTIONS(9032), + [aux_sym__attribute_identifier_token1] = ACTIONS(8986), + [aux_sym_option_statement_token3] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8986), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8986), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8986), + [aux_sym_preprocessor_const_token1] = ACTIONS(8986), + [sym_static_modifier] = ACTIONS(8986), + [sym__dim_keyword] = ACTIONS(8986), + [sym__redim_keyword] = ACTIONS(8986), + [aux_sym_get_accessor_token1] = ACTIONS(8986), + [aux_sym_set_accessor_token1] = ACTIONS(8986), + [aux_sym_const_declaration_token1] = ACTIONS(8986), + [anon_sym_LPAREN] = ACTIONS(9032), + [aux_sym_as_type_clause_token2] = ACTIONS(8986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8986), + [aux_sym_visibility_token1] = ACTIONS(8986), + [aux_sym_visibility_token2] = ACTIONS(8986), + [aux_sym_elseif_fragment_token1] = ACTIONS(8986), + [aux_sym_else_fragment_token1] = ACTIONS(8986), + [aux_sym_select_statement_token1] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8986), + [aux_sym_do_statement_token1] = ACTIONS(8986), + [aux_sym_do_condition_token1] = ACTIONS(8986), + [aux_sym_with_statement_token1] = ACTIONS(8986), + [aux_sym_exit_statement_token1] = ACTIONS(8986), + [sym_end_statement] = ACTIONS(9032), + [aux_sym_on_goto_statement_token1] = ACTIONS(8986), + [aux_sym_on_goto_statement_token2] = ACTIONS(8986), + [aux_sym_on_error_statement_token2] = ACTIONS(8986), + [sym__ambiguous_redim_statement] = ACTIONS(9032), + [aux_sym_erase_statement_token1] = ACTIONS(8986), + [aux_sym_open_statement_token1] = ACTIONS(8986), + [aux_sym_file_mode_token2] = ACTIONS(8986), + [aux_sym_file_access_token2] = ACTIONS(8986), + [aux_sym_file_lock_token2] = ACTIONS(8986), + [aux_sym_print_statement_token1] = ACTIONS(8986), + [anon_sym_PLUS] = ACTIONS(9032), + [anon_sym_DASH] = ACTIONS(8986), + [anon_sym_QMARK] = ACTIONS(9032), + [aux_sym_close_statement_token1] = ACTIONS(8986), + [aux_sym_put_statement_token1] = ACTIONS(8986), + [aux_sym_unlock_statement_token1] = ACTIONS(8986), + [aux_sym_seek_statement_token1] = ACTIONS(8986), + [sym_reset_statement] = ACTIONS(8986), + [aux_sym_raise_event_statement_token1] = ACTIONS(8986), + [sym_stop_statement] = ACTIONS(8986), + [sym_beep_statement] = ACTIONS(8986), + [aux_sym_unload_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token2] = ACTIONS(8986), + [aux_sym_def_type_statement_token3] = ACTIONS(8986), + [aux_sym_def_type_statement_token4] = ACTIONS(8986), + [aux_sym_def_type_statement_token5] = ACTIONS(8986), + [aux_sym_def_type_statement_token6] = ACTIONS(8986), + [aux_sym_def_type_statement_token7] = ACTIONS(8986), + [aux_sym_def_type_statement_token8] = ACTIONS(8986), + [aux_sym_def_type_statement_token9] = ACTIONS(8986), + [aux_sym_def_type_statement_token10] = ACTIONS(8986), + [aux_sym_def_type_statement_token11] = ACTIONS(8986), + [aux_sym_def_type_statement_token12] = ACTIONS(8986), + [aux_sym_def_type_statement_token13] = ACTIONS(8986), + [aux_sym_def_type_statement_token14] = ACTIONS(8986), + [aux_sym_call_statement_token1] = ACTIONS(8986), + [sym__ambiguous_call_statement] = ACTIONS(8986), + [aux_sym_addressof_expression_token1] = ACTIONS(8986), + [aux_sym_type_of_expression_token1] = ACTIONS(8986), + [aux_sym_unary_expression_token1] = ACTIONS(8986), + [sym_string_literal] = ACTIONS(9032), + [sym_number_literal] = ACTIONS(9032), + [aux_sym_boolean_literal_token1] = ACTIONS(8986), + [aux_sym_boolean_literal_token2] = ACTIONS(8986), + [sym_nothing_literal] = ACTIONS(8986), + [sym_null_literal] = ACTIONS(8986), + [sym_empty_literal] = ACTIONS(8986), + [sym_date_literal] = ACTIONS(9032), + [anon_sym_POUND] = ACTIONS(8986), + }, + [STATE(5251)] = { + [sym_identifier] = ACTIONS(8764), + [sym_newline] = ACTIONS(9034), + [anon_sym_COLON] = ACTIONS(9034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8764), + [aux_sym_frm_property_statement_token1] = ACTIONS(8764), + [anon_sym_DOT] = ACTIONS(8764), + [anon_sym_BANG] = ACTIONS(9034), + [aux_sym__attribute_identifier_token1] = ACTIONS(8764), + [aux_sym_option_statement_token3] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8764), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8764), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8764), + [aux_sym_preprocessor_const_token1] = ACTIONS(8764), + [sym_static_modifier] = ACTIONS(8764), + [sym__dim_keyword] = ACTIONS(8764), + [sym__redim_keyword] = ACTIONS(8764), + [aux_sym_get_accessor_token1] = ACTIONS(8764), + [aux_sym_set_accessor_token1] = ACTIONS(8764), + [aux_sym_const_declaration_token1] = ACTIONS(8764), + [anon_sym_LPAREN] = ACTIONS(9034), + [aux_sym_as_type_clause_token2] = ACTIONS(8764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8764), + [aux_sym_visibility_token1] = ACTIONS(8764), + [aux_sym_visibility_token2] = ACTIONS(8764), + [aux_sym_elseif_fragment_token1] = ACTIONS(8764), + [aux_sym_else_fragment_token1] = ACTIONS(8764), + [aux_sym_select_statement_token1] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8764), + [aux_sym_do_statement_token1] = ACTIONS(8764), + [aux_sym_do_condition_token1] = ACTIONS(8764), + [aux_sym_with_statement_token1] = ACTIONS(8764), + [aux_sym_exit_statement_token1] = ACTIONS(8764), + [sym_end_statement] = ACTIONS(9034), + [aux_sym_on_goto_statement_token1] = ACTIONS(8764), + [aux_sym_on_goto_statement_token2] = ACTIONS(8764), + [aux_sym_on_error_statement_token2] = ACTIONS(8764), + [sym__ambiguous_redim_statement] = ACTIONS(9034), + [aux_sym_erase_statement_token1] = ACTIONS(8764), + [aux_sym_open_statement_token1] = ACTIONS(8764), + [aux_sym_file_mode_token2] = ACTIONS(8764), + [aux_sym_file_access_token2] = ACTIONS(8764), + [aux_sym_file_lock_token2] = ACTIONS(8764), + [aux_sym_print_statement_token1] = ACTIONS(8764), + [anon_sym_PLUS] = ACTIONS(9034), + [anon_sym_DASH] = ACTIONS(8764), + [anon_sym_QMARK] = ACTIONS(9034), + [aux_sym_close_statement_token1] = ACTIONS(8764), + [aux_sym_put_statement_token1] = ACTIONS(8764), + [aux_sym_unlock_statement_token1] = ACTIONS(8764), + [aux_sym_seek_statement_token1] = ACTIONS(8764), + [sym_reset_statement] = ACTIONS(8764), + [aux_sym_raise_event_statement_token1] = ACTIONS(8764), + [sym_stop_statement] = ACTIONS(8764), + [sym_beep_statement] = ACTIONS(8764), + [aux_sym_unload_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token2] = ACTIONS(8764), + [aux_sym_def_type_statement_token3] = ACTIONS(8764), + [aux_sym_def_type_statement_token4] = ACTIONS(8764), + [aux_sym_def_type_statement_token5] = ACTIONS(8764), + [aux_sym_def_type_statement_token6] = ACTIONS(8764), + [aux_sym_def_type_statement_token7] = ACTIONS(8764), + [aux_sym_def_type_statement_token8] = ACTIONS(8764), + [aux_sym_def_type_statement_token9] = ACTIONS(8764), + [aux_sym_def_type_statement_token10] = ACTIONS(8764), + [aux_sym_def_type_statement_token11] = ACTIONS(8764), + [aux_sym_def_type_statement_token12] = ACTIONS(8764), + [aux_sym_def_type_statement_token13] = ACTIONS(8764), + [aux_sym_def_type_statement_token14] = ACTIONS(8764), + [aux_sym_call_statement_token1] = ACTIONS(8764), + [sym__ambiguous_call_statement] = ACTIONS(8764), + [aux_sym_addressof_expression_token1] = ACTIONS(8764), + [aux_sym_type_of_expression_token1] = ACTIONS(8764), + [aux_sym_unary_expression_token1] = ACTIONS(8764), + [sym_string_literal] = ACTIONS(9034), + [sym_number_literal] = ACTIONS(9034), + [aux_sym_boolean_literal_token1] = ACTIONS(8764), + [aux_sym_boolean_literal_token2] = ACTIONS(8764), + [sym_nothing_literal] = ACTIONS(8764), + [sym_null_literal] = ACTIONS(8764), + [sym_empty_literal] = ACTIONS(8764), + [sym_date_literal] = ACTIONS(9034), + [anon_sym_POUND] = ACTIONS(8764), + }, + [STATE(5252)] = { + [sym_identifier] = ACTIONS(9036), + [sym_newline] = ACTIONS(9038), + [anon_sym_COLON] = ACTIONS(9038), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9036), + [aux_sym_frm_property_statement_token1] = ACTIONS(9036), + [anon_sym_DOT] = ACTIONS(9036), + [anon_sym_BANG] = ACTIONS(9038), + [aux_sym__attribute_identifier_token1] = ACTIONS(9036), + [aux_sym_option_statement_token3] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9036), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9036), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9036), + [aux_sym_preprocessor_const_token1] = ACTIONS(9036), + [sym_static_modifier] = ACTIONS(9036), + [sym__dim_keyword] = ACTIONS(9036), + [sym__redim_keyword] = ACTIONS(9036), + [aux_sym_get_accessor_token1] = ACTIONS(9036), + [aux_sym_set_accessor_token1] = ACTIONS(9036), + [aux_sym_const_declaration_token1] = ACTIONS(9036), + [anon_sym_LPAREN] = ACTIONS(9038), + [aux_sym_as_type_clause_token2] = ACTIONS(9036), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9036), + [aux_sym_visibility_token1] = ACTIONS(9036), + [aux_sym_visibility_token2] = ACTIONS(9036), + [aux_sym_elseif_fragment_token1] = ACTIONS(9036), + [aux_sym_else_fragment_token1] = ACTIONS(9036), + [aux_sym_select_statement_token1] = ACTIONS(9036), + [aux_sym__for_header_token1] = ACTIONS(9036), + [aux_sym_do_statement_token1] = ACTIONS(9036), + [aux_sym_do_condition_token1] = ACTIONS(9036), + [aux_sym_with_statement_token1] = ACTIONS(9036), + [aux_sym_exit_statement_token1] = ACTIONS(9036), + [sym_end_statement] = ACTIONS(9038), + [aux_sym_on_goto_statement_token1] = ACTIONS(9036), + [aux_sym_on_goto_statement_token2] = ACTIONS(9036), + [aux_sym_on_error_statement_token2] = ACTIONS(9036), + [sym__ambiguous_redim_statement] = ACTIONS(9038), + [aux_sym_erase_statement_token1] = ACTIONS(9036), + [aux_sym_open_statement_token1] = ACTIONS(9036), + [aux_sym_file_mode_token2] = ACTIONS(9036), + [aux_sym_file_access_token2] = ACTIONS(9036), + [aux_sym_file_lock_token2] = ACTIONS(9036), + [aux_sym_print_statement_token1] = ACTIONS(9036), + [anon_sym_PLUS] = ACTIONS(9038), + [anon_sym_DASH] = ACTIONS(9036), + [anon_sym_QMARK] = ACTIONS(9038), + [aux_sym_close_statement_token1] = ACTIONS(9036), + [aux_sym_put_statement_token1] = ACTIONS(9036), + [aux_sym_unlock_statement_token1] = ACTIONS(9036), + [aux_sym_seek_statement_token1] = ACTIONS(9036), + [sym_reset_statement] = ACTIONS(9036), + [aux_sym_raise_event_statement_token1] = ACTIONS(9036), + [sym_stop_statement] = ACTIONS(9036), + [sym_beep_statement] = ACTIONS(9036), + [aux_sym_unload_statement_token1] = ACTIONS(9036), + [aux_sym_def_type_statement_token1] = ACTIONS(9036), + [aux_sym_def_type_statement_token2] = ACTIONS(9036), + [aux_sym_def_type_statement_token3] = ACTIONS(9036), + [aux_sym_def_type_statement_token4] = ACTIONS(9036), + [aux_sym_def_type_statement_token5] = ACTIONS(9036), + [aux_sym_def_type_statement_token6] = ACTIONS(9036), + [aux_sym_def_type_statement_token7] = ACTIONS(9036), + [aux_sym_def_type_statement_token8] = ACTIONS(9036), + [aux_sym_def_type_statement_token9] = ACTIONS(9036), + [aux_sym_def_type_statement_token10] = ACTIONS(9036), + [aux_sym_def_type_statement_token11] = ACTIONS(9036), + [aux_sym_def_type_statement_token12] = ACTIONS(9036), + [aux_sym_def_type_statement_token13] = ACTIONS(9036), + [aux_sym_def_type_statement_token14] = ACTIONS(9036), + [aux_sym_call_statement_token1] = ACTIONS(9036), + [sym__ambiguous_call_statement] = ACTIONS(9036), + [aux_sym_addressof_expression_token1] = ACTIONS(9036), + [aux_sym_type_of_expression_token1] = ACTIONS(9036), + [aux_sym_unary_expression_token1] = ACTIONS(9036), + [sym_string_literal] = ACTIONS(9038), + [sym_number_literal] = ACTIONS(9038), + [aux_sym_boolean_literal_token1] = ACTIONS(9036), + [aux_sym_boolean_literal_token2] = ACTIONS(9036), + [sym_nothing_literal] = ACTIONS(9036), + [sym_null_literal] = ACTIONS(9036), + [sym_empty_literal] = ACTIONS(9036), + [sym_date_literal] = ACTIONS(9038), + [anon_sym_POUND] = ACTIONS(9036), + }, + [STATE(5253)] = { + [sym_identifier] = ACTIONS(9040), + [sym_newline] = ACTIONS(9042), + [anon_sym_COLON] = ACTIONS(9042), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9040), + [aux_sym_frm_property_statement_token1] = ACTIONS(9040), + [anon_sym_DOT] = ACTIONS(9040), + [anon_sym_BANG] = ACTIONS(9042), + [aux_sym__attribute_identifier_token1] = ACTIONS(9040), + [aux_sym_option_statement_token3] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9040), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9040), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9040), + [aux_sym_preprocessor_const_token1] = ACTIONS(9040), + [sym_static_modifier] = ACTIONS(9040), + [sym__dim_keyword] = ACTIONS(9040), + [sym__redim_keyword] = ACTIONS(9040), + [aux_sym_get_accessor_token1] = ACTIONS(9040), + [aux_sym_set_accessor_token1] = ACTIONS(9040), + [aux_sym_const_declaration_token1] = ACTIONS(9040), + [anon_sym_LPAREN] = ACTIONS(9042), + [aux_sym_as_type_clause_token2] = ACTIONS(9040), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9040), + [aux_sym_visibility_token1] = ACTIONS(9040), + [aux_sym_visibility_token2] = ACTIONS(9040), + [aux_sym_elseif_fragment_token1] = ACTIONS(9040), + [aux_sym_else_fragment_token1] = ACTIONS(9040), + [aux_sym_select_statement_token1] = ACTIONS(9040), + [aux_sym__for_header_token1] = ACTIONS(9040), + [aux_sym_do_statement_token1] = ACTIONS(9040), + [aux_sym_do_condition_token1] = ACTIONS(9040), + [aux_sym_with_statement_token1] = ACTIONS(9040), + [aux_sym_exit_statement_token1] = ACTIONS(9040), + [sym_end_statement] = ACTIONS(9042), + [aux_sym_on_goto_statement_token1] = ACTIONS(9040), + [aux_sym_on_goto_statement_token2] = ACTIONS(9040), + [aux_sym_on_error_statement_token2] = ACTIONS(9040), + [sym__ambiguous_redim_statement] = ACTIONS(9042), + [aux_sym_erase_statement_token1] = ACTIONS(9040), + [aux_sym_open_statement_token1] = ACTIONS(9040), + [aux_sym_file_mode_token2] = ACTIONS(9040), + [aux_sym_file_access_token2] = ACTIONS(9040), + [aux_sym_file_lock_token2] = ACTIONS(9040), + [aux_sym_print_statement_token1] = ACTIONS(9040), + [anon_sym_PLUS] = ACTIONS(9042), + [anon_sym_DASH] = ACTIONS(9040), + [anon_sym_QMARK] = ACTIONS(9042), + [aux_sym_close_statement_token1] = ACTIONS(9040), + [aux_sym_put_statement_token1] = ACTIONS(9040), + [aux_sym_unlock_statement_token1] = ACTIONS(9040), + [aux_sym_seek_statement_token1] = ACTIONS(9040), + [sym_reset_statement] = ACTIONS(9040), + [aux_sym_raise_event_statement_token1] = ACTIONS(9040), + [sym_stop_statement] = ACTIONS(9040), + [sym_beep_statement] = ACTIONS(9040), + [aux_sym_unload_statement_token1] = ACTIONS(9040), + [aux_sym_def_type_statement_token1] = ACTIONS(9040), + [aux_sym_def_type_statement_token2] = ACTIONS(9040), + [aux_sym_def_type_statement_token3] = ACTIONS(9040), + [aux_sym_def_type_statement_token4] = ACTIONS(9040), + [aux_sym_def_type_statement_token5] = ACTIONS(9040), + [aux_sym_def_type_statement_token6] = ACTIONS(9040), + [aux_sym_def_type_statement_token7] = ACTIONS(9040), + [aux_sym_def_type_statement_token8] = ACTIONS(9040), + [aux_sym_def_type_statement_token9] = ACTIONS(9040), + [aux_sym_def_type_statement_token10] = ACTIONS(9040), + [aux_sym_def_type_statement_token11] = ACTIONS(9040), + [aux_sym_def_type_statement_token12] = ACTIONS(9040), + [aux_sym_def_type_statement_token13] = ACTIONS(9040), + [aux_sym_def_type_statement_token14] = ACTIONS(9040), + [aux_sym_call_statement_token1] = ACTIONS(9040), + [sym__ambiguous_call_statement] = ACTIONS(9040), + [aux_sym_addressof_expression_token1] = ACTIONS(9040), + [aux_sym_type_of_expression_token1] = ACTIONS(9040), + [aux_sym_unary_expression_token1] = ACTIONS(9040), + [sym_string_literal] = ACTIONS(9042), + [sym_number_literal] = ACTIONS(9042), + [aux_sym_boolean_literal_token1] = ACTIONS(9040), + [aux_sym_boolean_literal_token2] = ACTIONS(9040), + [sym_nothing_literal] = ACTIONS(9040), + [sym_null_literal] = ACTIONS(9040), + [sym_empty_literal] = ACTIONS(9040), + [sym_date_literal] = ACTIONS(9042), + [anon_sym_POUND] = ACTIONS(9040), + }, + [STATE(5254)] = { + [sym_identifier] = ACTIONS(9130), + [sym_newline] = ACTIONS(9132), + [anon_sym_COLON] = ACTIONS(9132), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9130), + [aux_sym_frm_property_statement_token1] = ACTIONS(9130), + [anon_sym_DOT] = ACTIONS(9130), + [anon_sym_BANG] = ACTIONS(9132), + [aux_sym__attribute_identifier_token1] = ACTIONS(9130), + [aux_sym_option_statement_token3] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9130), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9130), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9130), + [aux_sym_preprocessor_const_token1] = ACTIONS(9130), + [sym_static_modifier] = ACTIONS(9130), + [sym__dim_keyword] = ACTIONS(9130), + [sym__redim_keyword] = ACTIONS(9130), + [aux_sym_get_accessor_token1] = ACTIONS(9130), + [aux_sym_set_accessor_token1] = ACTIONS(9130), + [aux_sym_const_declaration_token1] = ACTIONS(9130), + [anon_sym_LPAREN] = ACTIONS(9132), + [aux_sym_as_type_clause_token2] = ACTIONS(9130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9130), + [aux_sym_visibility_token1] = ACTIONS(9130), + [aux_sym_visibility_token2] = ACTIONS(9130), + [aux_sym_elseif_fragment_token1] = ACTIONS(9130), + [aux_sym_else_fragment_token1] = ACTIONS(9130), + [aux_sym_select_statement_token1] = ACTIONS(9130), + [aux_sym__for_header_token1] = ACTIONS(9130), + [aux_sym_do_statement_token1] = ACTIONS(9130), + [aux_sym_do_condition_token1] = ACTIONS(9130), + [aux_sym_with_statement_token1] = ACTIONS(9130), + [aux_sym_exit_statement_token1] = ACTIONS(9130), + [sym_end_statement] = ACTIONS(9132), + [aux_sym_on_goto_statement_token1] = ACTIONS(9130), + [aux_sym_on_goto_statement_token2] = ACTIONS(9130), + [aux_sym_on_error_statement_token2] = ACTIONS(9130), + [sym__ambiguous_redim_statement] = ACTIONS(9132), + [aux_sym_erase_statement_token1] = ACTIONS(9130), + [aux_sym_open_statement_token1] = ACTIONS(9130), + [aux_sym_file_mode_token2] = ACTIONS(9130), + [aux_sym_file_access_token2] = ACTIONS(9130), + [aux_sym_file_lock_token2] = ACTIONS(9130), + [aux_sym_print_statement_token1] = ACTIONS(9130), + [anon_sym_PLUS] = ACTIONS(9132), + [anon_sym_DASH] = ACTIONS(9130), + [anon_sym_QMARK] = ACTIONS(9132), + [aux_sym_close_statement_token1] = ACTIONS(9130), + [aux_sym_put_statement_token1] = ACTIONS(9130), + [aux_sym_unlock_statement_token1] = ACTIONS(9130), + [aux_sym_seek_statement_token1] = ACTIONS(9130), + [sym_reset_statement] = ACTIONS(9130), + [aux_sym_raise_event_statement_token1] = ACTIONS(9130), + [sym_stop_statement] = ACTIONS(9130), + [sym_beep_statement] = ACTIONS(9130), + [aux_sym_unload_statement_token1] = ACTIONS(9130), + [aux_sym_def_type_statement_token1] = ACTIONS(9130), + [aux_sym_def_type_statement_token2] = ACTIONS(9130), + [aux_sym_def_type_statement_token3] = ACTIONS(9130), + [aux_sym_def_type_statement_token4] = ACTIONS(9130), + [aux_sym_def_type_statement_token5] = ACTIONS(9130), + [aux_sym_def_type_statement_token6] = ACTIONS(9130), + [aux_sym_def_type_statement_token7] = ACTIONS(9130), + [aux_sym_def_type_statement_token8] = ACTIONS(9130), + [aux_sym_def_type_statement_token9] = ACTIONS(9130), + [aux_sym_def_type_statement_token10] = ACTIONS(9130), + [aux_sym_def_type_statement_token11] = ACTIONS(9130), + [aux_sym_def_type_statement_token12] = ACTIONS(9130), + [aux_sym_def_type_statement_token13] = ACTIONS(9130), + [aux_sym_def_type_statement_token14] = ACTIONS(9130), + [aux_sym_call_statement_token1] = ACTIONS(9130), + [sym__ambiguous_call_statement] = ACTIONS(9130), + [aux_sym_addressof_expression_token1] = ACTIONS(9130), + [aux_sym_type_of_expression_token1] = ACTIONS(9130), + [aux_sym_unary_expression_token1] = ACTIONS(9130), + [sym_string_literal] = ACTIONS(9132), + [sym_number_literal] = ACTIONS(9132), + [aux_sym_boolean_literal_token1] = ACTIONS(9130), + [aux_sym_boolean_literal_token2] = ACTIONS(9130), + [sym_nothing_literal] = ACTIONS(9130), + [sym_null_literal] = ACTIONS(9130), + [sym_empty_literal] = ACTIONS(9130), + [sym_date_literal] = ACTIONS(9132), + [anon_sym_POUND] = ACTIONS(9130), + }, + [STATE(5255)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5309), + [sym_identifier] = ACTIONS(8308), + [sym_newline] = ACTIONS(8310), + [anon_sym_COLON] = ACTIONS(8310), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8308), + [aux_sym_frm_property_statement_token1] = ACTIONS(8308), + [anon_sym_DOT] = ACTIONS(8308), + [anon_sym_BANG] = ACTIONS(8310), + [aux_sym__attribute_identifier_token1] = ACTIONS(8308), + [aux_sym_option_statement_token3] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8308), + [aux_sym_preprocessor_const_token1] = ACTIONS(8308), + [sym_static_modifier] = ACTIONS(8308), + [sym__dim_keyword] = ACTIONS(8308), + [sym__redim_keyword] = ACTIONS(8308), + [aux_sym_get_accessor_token1] = ACTIONS(8308), + [aux_sym_set_accessor_token1] = ACTIONS(8308), + [anon_sym_COMMA] = ACTIONS(10500), + [aux_sym_const_declaration_token1] = ACTIONS(8308), + [anon_sym_LPAREN] = ACTIONS(8310), + [aux_sym_as_type_clause_token2] = ACTIONS(8308), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8308), + [aux_sym_visibility_token1] = ACTIONS(8308), + [aux_sym_visibility_token2] = ACTIONS(8308), + [aux_sym_elseif_fragment_token1] = ACTIONS(8308), + [aux_sym_else_fragment_token1] = ACTIONS(8308), + [aux_sym_select_statement_token1] = ACTIONS(8308), + [aux_sym__for_header_token1] = ACTIONS(8308), + [aux_sym_do_statement_token1] = ACTIONS(8308), + [aux_sym_do_condition_token1] = ACTIONS(8308), + [aux_sym_while_statement_token1] = ACTIONS(8308), + [aux_sym_with_statement_token1] = ACTIONS(8308), + [aux_sym_exit_statement_token1] = ACTIONS(8308), + [sym_end_statement] = ACTIONS(8310), + [aux_sym_on_goto_statement_token1] = ACTIONS(8308), + [aux_sym_on_goto_statement_token2] = ACTIONS(8308), + [aux_sym_on_error_statement_token2] = ACTIONS(8308), + [sym__ambiguous_redim_statement] = ACTIONS(8310), + [aux_sym_erase_statement_token1] = ACTIONS(8308), + [aux_sym_open_statement_token1] = ACTIONS(8308), + [aux_sym_file_mode_token2] = ACTIONS(8308), + [aux_sym_file_access_token2] = ACTIONS(8308), + [aux_sym_file_lock_token2] = ACTIONS(8308), + [aux_sym_print_statement_token1] = ACTIONS(8308), + [anon_sym_PLUS] = ACTIONS(8310), + [anon_sym_DASH] = ACTIONS(8308), + [anon_sym_QMARK] = ACTIONS(8310), + [aux_sym_close_statement_token1] = ACTIONS(8308), + [aux_sym_put_statement_token1] = ACTIONS(8308), + [aux_sym_unlock_statement_token1] = ACTIONS(8308), + [aux_sym_seek_statement_token1] = ACTIONS(8308), + [sym_reset_statement] = ACTIONS(8308), + [aux_sym_raise_event_statement_token1] = ACTIONS(8308), + [sym_stop_statement] = ACTIONS(8308), + [sym_beep_statement] = ACTIONS(8308), + [aux_sym_unload_statement_token1] = ACTIONS(8308), + [aux_sym_def_type_statement_token1] = ACTIONS(8308), + [aux_sym_def_type_statement_token2] = ACTIONS(8308), + [aux_sym_def_type_statement_token3] = ACTIONS(8308), + [aux_sym_def_type_statement_token4] = ACTIONS(8308), + [aux_sym_def_type_statement_token5] = ACTIONS(8308), + [aux_sym_def_type_statement_token6] = ACTIONS(8308), + [aux_sym_def_type_statement_token7] = ACTIONS(8308), + [aux_sym_def_type_statement_token8] = ACTIONS(8308), + [aux_sym_def_type_statement_token9] = ACTIONS(8308), + [aux_sym_def_type_statement_token10] = ACTIONS(8308), + [aux_sym_def_type_statement_token11] = ACTIONS(8308), + [aux_sym_def_type_statement_token12] = ACTIONS(8308), + [aux_sym_def_type_statement_token13] = ACTIONS(8308), + [aux_sym_def_type_statement_token14] = ACTIONS(8308), + [aux_sym_call_statement_token1] = ACTIONS(8308), + [sym__ambiguous_call_statement] = ACTIONS(8308), + [aux_sym_addressof_expression_token1] = ACTIONS(8308), + [aux_sym_type_of_expression_token1] = ACTIONS(8308), + [aux_sym_unary_expression_token1] = ACTIONS(8308), + [sym_string_literal] = ACTIONS(8310), + [sym_number_literal] = ACTIONS(8310), + [aux_sym_boolean_literal_token1] = ACTIONS(8308), + [aux_sym_boolean_literal_token2] = ACTIONS(8308), + [sym_nothing_literal] = ACTIONS(8308), + [sym_null_literal] = ACTIONS(8308), + [sym_empty_literal] = ACTIONS(8308), + [sym_date_literal] = ACTIONS(8310), + [anon_sym_POUND] = ACTIONS(8308), + }, + [STATE(5256)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5310), + [sym_identifier] = ACTIONS(8332), + [sym_newline] = ACTIONS(8334), + [anon_sym_COLON] = ACTIONS(8334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8332), + [aux_sym_frm_property_statement_token1] = ACTIONS(8332), + [anon_sym_DOT] = ACTIONS(8332), + [anon_sym_BANG] = ACTIONS(8334), + [aux_sym__attribute_identifier_token1] = ACTIONS(8332), + [aux_sym_option_statement_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8332), + [aux_sym_preprocessor_const_token1] = ACTIONS(8332), + [sym_static_modifier] = ACTIONS(8332), + [sym__dim_keyword] = ACTIONS(8332), + [sym__redim_keyword] = ACTIONS(8332), + [aux_sym_get_accessor_token1] = ACTIONS(8332), + [aux_sym_set_accessor_token1] = ACTIONS(8332), + [anon_sym_COMMA] = ACTIONS(10500), + [aux_sym_const_declaration_token1] = ACTIONS(8332), + [anon_sym_LPAREN] = ACTIONS(8334), + [aux_sym_as_type_clause_token2] = ACTIONS(8332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8332), + [aux_sym_visibility_token1] = ACTIONS(8332), + [aux_sym_visibility_token2] = ACTIONS(8332), + [aux_sym_elseif_fragment_token1] = ACTIONS(8332), + [aux_sym_else_fragment_token1] = ACTIONS(8332), + [aux_sym_select_statement_token1] = ACTIONS(8332), + [aux_sym__for_header_token1] = ACTIONS(8332), + [aux_sym_do_statement_token1] = ACTIONS(8332), + [aux_sym_do_condition_token1] = ACTIONS(8332), + [aux_sym_while_statement_token1] = ACTIONS(8332), + [aux_sym_with_statement_token1] = ACTIONS(8332), + [aux_sym_exit_statement_token1] = ACTIONS(8332), + [sym_end_statement] = ACTIONS(8334), + [aux_sym_on_goto_statement_token1] = ACTIONS(8332), + [aux_sym_on_goto_statement_token2] = ACTIONS(8332), + [aux_sym_on_error_statement_token2] = ACTIONS(8332), + [sym__ambiguous_redim_statement] = ACTIONS(8334), + [aux_sym_erase_statement_token1] = ACTIONS(8332), + [aux_sym_open_statement_token1] = ACTIONS(8332), + [aux_sym_file_mode_token2] = ACTIONS(8332), + [aux_sym_file_access_token2] = ACTIONS(8332), + [aux_sym_file_lock_token2] = ACTIONS(8332), + [aux_sym_print_statement_token1] = ACTIONS(8332), + [anon_sym_PLUS] = ACTIONS(8334), + [anon_sym_DASH] = ACTIONS(8332), + [anon_sym_QMARK] = ACTIONS(8334), + [aux_sym_close_statement_token1] = ACTIONS(8332), + [aux_sym_put_statement_token1] = ACTIONS(8332), + [aux_sym_unlock_statement_token1] = ACTIONS(8332), + [aux_sym_seek_statement_token1] = ACTIONS(8332), + [sym_reset_statement] = ACTIONS(8332), + [aux_sym_raise_event_statement_token1] = ACTIONS(8332), + [sym_stop_statement] = ACTIONS(8332), + [sym_beep_statement] = ACTIONS(8332), + [aux_sym_unload_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token2] = ACTIONS(8332), + [aux_sym_def_type_statement_token3] = ACTIONS(8332), + [aux_sym_def_type_statement_token4] = ACTIONS(8332), + [aux_sym_def_type_statement_token5] = ACTIONS(8332), + [aux_sym_def_type_statement_token6] = ACTIONS(8332), + [aux_sym_def_type_statement_token7] = ACTIONS(8332), + [aux_sym_def_type_statement_token8] = ACTIONS(8332), + [aux_sym_def_type_statement_token9] = ACTIONS(8332), + [aux_sym_def_type_statement_token10] = ACTIONS(8332), + [aux_sym_def_type_statement_token11] = ACTIONS(8332), + [aux_sym_def_type_statement_token12] = ACTIONS(8332), + [aux_sym_def_type_statement_token13] = ACTIONS(8332), + [aux_sym_def_type_statement_token14] = ACTIONS(8332), + [aux_sym_call_statement_token1] = ACTIONS(8332), + [sym__ambiguous_call_statement] = ACTIONS(8332), + [aux_sym_addressof_expression_token1] = ACTIONS(8332), + [aux_sym_type_of_expression_token1] = ACTIONS(8332), + [aux_sym_unary_expression_token1] = ACTIONS(8332), + [sym_string_literal] = ACTIONS(8334), + [sym_number_literal] = ACTIONS(8334), + [aux_sym_boolean_literal_token1] = ACTIONS(8332), + [aux_sym_boolean_literal_token2] = ACTIONS(8332), + [sym_nothing_literal] = ACTIONS(8332), + [sym_null_literal] = ACTIONS(8332), + [sym_empty_literal] = ACTIONS(8332), + [sym_date_literal] = ACTIONS(8334), + [anon_sym_POUND] = ACTIONS(8332), + }, + [STATE(5257)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5311), + [sym_identifier] = ACTIONS(8336), + [sym_newline] = ACTIONS(8338), + [anon_sym_COLON] = ACTIONS(8338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8336), + [aux_sym_frm_property_statement_token1] = ACTIONS(8336), + [anon_sym_DOT] = ACTIONS(8336), + [anon_sym_BANG] = ACTIONS(8338), + [aux_sym__attribute_identifier_token1] = ACTIONS(8336), + [aux_sym_option_statement_token3] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8336), + [aux_sym_preprocessor_const_token1] = ACTIONS(8336), + [sym_static_modifier] = ACTIONS(8336), + [sym__dim_keyword] = ACTIONS(8336), + [sym__redim_keyword] = ACTIONS(8336), + [aux_sym_get_accessor_token1] = ACTIONS(8336), + [aux_sym_set_accessor_token1] = ACTIONS(8336), + [anon_sym_COMMA] = ACTIONS(10500), + [aux_sym_const_declaration_token1] = ACTIONS(8336), + [anon_sym_LPAREN] = ACTIONS(8338), + [aux_sym_as_type_clause_token2] = ACTIONS(8336), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8336), + [aux_sym_visibility_token1] = ACTIONS(8336), + [aux_sym_visibility_token2] = ACTIONS(8336), + [aux_sym_elseif_fragment_token1] = ACTIONS(8336), + [aux_sym_else_fragment_token1] = ACTIONS(8336), + [aux_sym_select_statement_token1] = ACTIONS(8336), + [aux_sym__for_header_token1] = ACTIONS(8336), + [aux_sym_do_statement_token1] = ACTIONS(8336), + [aux_sym_do_condition_token1] = ACTIONS(8336), + [aux_sym_while_statement_token1] = ACTIONS(8336), + [aux_sym_with_statement_token1] = ACTIONS(8336), + [aux_sym_exit_statement_token1] = ACTIONS(8336), + [sym_end_statement] = ACTIONS(8338), + [aux_sym_on_goto_statement_token1] = ACTIONS(8336), + [aux_sym_on_goto_statement_token2] = ACTIONS(8336), + [aux_sym_on_error_statement_token2] = ACTIONS(8336), + [sym__ambiguous_redim_statement] = ACTIONS(8338), + [aux_sym_erase_statement_token1] = ACTIONS(8336), + [aux_sym_open_statement_token1] = ACTIONS(8336), + [aux_sym_file_mode_token2] = ACTIONS(8336), + [aux_sym_file_access_token2] = ACTIONS(8336), + [aux_sym_file_lock_token2] = ACTIONS(8336), + [aux_sym_print_statement_token1] = ACTIONS(8336), + [anon_sym_PLUS] = ACTIONS(8338), + [anon_sym_DASH] = ACTIONS(8336), + [anon_sym_QMARK] = ACTIONS(8338), + [aux_sym_close_statement_token1] = ACTIONS(8336), + [aux_sym_put_statement_token1] = ACTIONS(8336), + [aux_sym_unlock_statement_token1] = ACTIONS(8336), + [aux_sym_seek_statement_token1] = ACTIONS(8336), + [sym_reset_statement] = ACTIONS(8336), + [aux_sym_raise_event_statement_token1] = ACTIONS(8336), + [sym_stop_statement] = ACTIONS(8336), + [sym_beep_statement] = ACTIONS(8336), + [aux_sym_unload_statement_token1] = ACTIONS(8336), + [aux_sym_def_type_statement_token1] = ACTIONS(8336), + [aux_sym_def_type_statement_token2] = ACTIONS(8336), + [aux_sym_def_type_statement_token3] = ACTIONS(8336), + [aux_sym_def_type_statement_token4] = ACTIONS(8336), + [aux_sym_def_type_statement_token5] = ACTIONS(8336), + [aux_sym_def_type_statement_token6] = ACTIONS(8336), + [aux_sym_def_type_statement_token7] = ACTIONS(8336), + [aux_sym_def_type_statement_token8] = ACTIONS(8336), + [aux_sym_def_type_statement_token9] = ACTIONS(8336), + [aux_sym_def_type_statement_token10] = ACTIONS(8336), + [aux_sym_def_type_statement_token11] = ACTIONS(8336), + [aux_sym_def_type_statement_token12] = ACTIONS(8336), + [aux_sym_def_type_statement_token13] = ACTIONS(8336), + [aux_sym_def_type_statement_token14] = ACTIONS(8336), + [aux_sym_call_statement_token1] = ACTIONS(8336), + [sym__ambiguous_call_statement] = ACTIONS(8336), + [aux_sym_addressof_expression_token1] = ACTIONS(8336), + [aux_sym_type_of_expression_token1] = ACTIONS(8336), + [aux_sym_unary_expression_token1] = ACTIONS(8336), + [sym_string_literal] = ACTIONS(8338), + [sym_number_literal] = ACTIONS(8338), + [aux_sym_boolean_literal_token1] = ACTIONS(8336), + [aux_sym_boolean_literal_token2] = ACTIONS(8336), + [sym_nothing_literal] = ACTIONS(8336), + [sym_null_literal] = ACTIONS(8336), + [sym_empty_literal] = ACTIONS(8336), + [sym_date_literal] = ACTIONS(8338), + [anon_sym_POUND] = ACTIONS(8336), + }, + [STATE(5258)] = { + [aux_sym_const_declaration_repeat1] = STATE(5312), + [sym_identifier] = ACTIONS(8346), + [sym_newline] = ACTIONS(8348), + [anon_sym_COLON] = ACTIONS(8348), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8346), + [aux_sym_frm_property_statement_token1] = ACTIONS(8346), + [anon_sym_DOT] = ACTIONS(8346), + [anon_sym_BANG] = ACTIONS(8348), + [aux_sym__attribute_identifier_token1] = ACTIONS(8346), + [aux_sym_option_statement_token3] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8346), + [aux_sym_preprocessor_const_token1] = ACTIONS(8346), + [sym_static_modifier] = ACTIONS(8346), + [sym__dim_keyword] = ACTIONS(8346), + [sym__redim_keyword] = ACTIONS(8346), + [aux_sym_get_accessor_token1] = ACTIONS(8346), + [aux_sym_set_accessor_token1] = ACTIONS(8346), + [anon_sym_COMMA] = ACTIONS(10502), + [aux_sym_const_declaration_token1] = ACTIONS(8346), + [anon_sym_LPAREN] = ACTIONS(8348), + [aux_sym_as_type_clause_token2] = ACTIONS(8346), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8346), + [aux_sym_visibility_token1] = ACTIONS(8346), + [aux_sym_visibility_token2] = ACTIONS(8346), + [aux_sym_elseif_fragment_token1] = ACTIONS(8346), + [aux_sym_else_fragment_token1] = ACTIONS(8346), + [aux_sym_select_statement_token1] = ACTIONS(8346), + [aux_sym__for_header_token1] = ACTIONS(8346), + [aux_sym_do_statement_token1] = ACTIONS(8346), + [aux_sym_do_condition_token1] = ACTIONS(8346), + [aux_sym_while_statement_token1] = ACTIONS(8346), + [aux_sym_with_statement_token1] = ACTIONS(8346), + [aux_sym_exit_statement_token1] = ACTIONS(8346), + [sym_end_statement] = ACTIONS(8348), + [aux_sym_on_goto_statement_token1] = ACTIONS(8346), + [aux_sym_on_goto_statement_token2] = ACTIONS(8346), + [aux_sym_on_error_statement_token2] = ACTIONS(8346), + [sym__ambiguous_redim_statement] = ACTIONS(8348), + [aux_sym_erase_statement_token1] = ACTIONS(8346), + [aux_sym_open_statement_token1] = ACTIONS(8346), + [aux_sym_file_mode_token2] = ACTIONS(8346), + [aux_sym_file_access_token2] = ACTIONS(8346), + [aux_sym_file_lock_token2] = ACTIONS(8346), + [aux_sym_print_statement_token1] = ACTIONS(8346), + [anon_sym_PLUS] = ACTIONS(8348), + [anon_sym_DASH] = ACTIONS(8346), + [anon_sym_QMARK] = ACTIONS(8348), + [aux_sym_close_statement_token1] = ACTIONS(8346), + [aux_sym_put_statement_token1] = ACTIONS(8346), + [aux_sym_unlock_statement_token1] = ACTIONS(8346), + [aux_sym_seek_statement_token1] = ACTIONS(8346), + [sym_reset_statement] = ACTIONS(8346), + [aux_sym_raise_event_statement_token1] = ACTIONS(8346), + [sym_stop_statement] = ACTIONS(8346), + [sym_beep_statement] = ACTIONS(8346), + [aux_sym_unload_statement_token1] = ACTIONS(8346), + [aux_sym_def_type_statement_token1] = ACTIONS(8346), + [aux_sym_def_type_statement_token2] = ACTIONS(8346), + [aux_sym_def_type_statement_token3] = ACTIONS(8346), + [aux_sym_def_type_statement_token4] = ACTIONS(8346), + [aux_sym_def_type_statement_token5] = ACTIONS(8346), + [aux_sym_def_type_statement_token6] = ACTIONS(8346), + [aux_sym_def_type_statement_token7] = ACTIONS(8346), + [aux_sym_def_type_statement_token8] = ACTIONS(8346), + [aux_sym_def_type_statement_token9] = ACTIONS(8346), + [aux_sym_def_type_statement_token10] = ACTIONS(8346), + [aux_sym_def_type_statement_token11] = ACTIONS(8346), + [aux_sym_def_type_statement_token12] = ACTIONS(8346), + [aux_sym_def_type_statement_token13] = ACTIONS(8346), + [aux_sym_def_type_statement_token14] = ACTIONS(8346), + [aux_sym_call_statement_token1] = ACTIONS(8346), + [sym__ambiguous_call_statement] = ACTIONS(8346), + [aux_sym_addressof_expression_token1] = ACTIONS(8346), + [aux_sym_type_of_expression_token1] = ACTIONS(8346), + [aux_sym_unary_expression_token1] = ACTIONS(8346), + [sym_string_literal] = ACTIONS(8348), + [sym_number_literal] = ACTIONS(8348), + [aux_sym_boolean_literal_token1] = ACTIONS(8346), + [aux_sym_boolean_literal_token2] = ACTIONS(8346), + [sym_nothing_literal] = ACTIONS(8346), + [sym_null_literal] = ACTIONS(8346), + [sym_empty_literal] = ACTIONS(8346), + [sym_date_literal] = ACTIONS(8348), + [anon_sym_POUND] = ACTIONS(8346), + }, + [STATE(5259)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5273), + [sym_identifier] = ACTIONS(8332), + [sym_newline] = ACTIONS(8334), + [anon_sym_COLON] = ACTIONS(8334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8332), + [aux_sym_frm_property_statement_token1] = ACTIONS(8332), + [anon_sym_DOT] = ACTIONS(8332), + [anon_sym_BANG] = ACTIONS(8334), + [aux_sym__attribute_identifier_token1] = ACTIONS(8332), + [aux_sym_option_statement_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8332), + [aux_sym_preprocessor_const_token1] = ACTIONS(8332), + [sym_static_modifier] = ACTIONS(8332), + [sym__dim_keyword] = ACTIONS(8332), + [sym__redim_keyword] = ACTIONS(8332), + [aux_sym_get_accessor_token1] = ACTIONS(8332), + [aux_sym_set_accessor_token1] = ACTIONS(8332), + [anon_sym_COMMA] = ACTIONS(10500), + [aux_sym_const_declaration_token1] = ACTIONS(8332), + [anon_sym_LPAREN] = ACTIONS(8334), + [aux_sym_as_type_clause_token2] = ACTIONS(8332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8332), + [aux_sym_visibility_token1] = ACTIONS(8332), + [aux_sym_visibility_token2] = ACTIONS(8332), + [aux_sym_elseif_fragment_token1] = ACTIONS(8332), + [aux_sym_else_fragment_token1] = ACTIONS(8332), + [aux_sym_select_statement_token1] = ACTIONS(8332), + [aux_sym__for_header_token1] = ACTIONS(8332), + [aux_sym_do_statement_token1] = ACTIONS(8332), + [aux_sym_do_condition_token1] = ACTIONS(8332), + [aux_sym_while_statement_token1] = ACTIONS(8332), + [aux_sym_with_statement_token1] = ACTIONS(8332), + [aux_sym_exit_statement_token1] = ACTIONS(8332), + [sym_end_statement] = ACTIONS(8334), + [aux_sym_on_goto_statement_token1] = ACTIONS(8332), + [aux_sym_on_goto_statement_token2] = ACTIONS(8332), + [aux_sym_on_error_statement_token2] = ACTIONS(8332), + [sym__ambiguous_redim_statement] = ACTIONS(8334), + [aux_sym_erase_statement_token1] = ACTIONS(8332), + [aux_sym_open_statement_token1] = ACTIONS(8332), + [aux_sym_file_mode_token2] = ACTIONS(8332), + [aux_sym_file_access_token2] = ACTIONS(8332), + [aux_sym_file_lock_token2] = ACTIONS(8332), + [aux_sym_print_statement_token1] = ACTIONS(8332), + [anon_sym_PLUS] = ACTIONS(8334), + [anon_sym_DASH] = ACTIONS(8332), + [anon_sym_QMARK] = ACTIONS(8334), + [aux_sym_close_statement_token1] = ACTIONS(8332), + [aux_sym_put_statement_token1] = ACTIONS(8332), + [aux_sym_unlock_statement_token1] = ACTIONS(8332), + [aux_sym_seek_statement_token1] = ACTIONS(8332), + [sym_reset_statement] = ACTIONS(8332), + [aux_sym_raise_event_statement_token1] = ACTIONS(8332), + [sym_stop_statement] = ACTIONS(8332), + [sym_beep_statement] = ACTIONS(8332), + [aux_sym_unload_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token2] = ACTIONS(8332), + [aux_sym_def_type_statement_token3] = ACTIONS(8332), + [aux_sym_def_type_statement_token4] = ACTIONS(8332), + [aux_sym_def_type_statement_token5] = ACTIONS(8332), + [aux_sym_def_type_statement_token6] = ACTIONS(8332), + [aux_sym_def_type_statement_token7] = ACTIONS(8332), + [aux_sym_def_type_statement_token8] = ACTIONS(8332), + [aux_sym_def_type_statement_token9] = ACTIONS(8332), + [aux_sym_def_type_statement_token10] = ACTIONS(8332), + [aux_sym_def_type_statement_token11] = ACTIONS(8332), + [aux_sym_def_type_statement_token12] = ACTIONS(8332), + [aux_sym_def_type_statement_token13] = ACTIONS(8332), + [aux_sym_def_type_statement_token14] = ACTIONS(8332), + [aux_sym_call_statement_token1] = ACTIONS(8332), + [sym__ambiguous_call_statement] = ACTIONS(8332), + [aux_sym_addressof_expression_token1] = ACTIONS(8332), + [aux_sym_type_of_expression_token1] = ACTIONS(8332), + [aux_sym_unary_expression_token1] = ACTIONS(8332), + [sym_string_literal] = ACTIONS(8334), + [sym_number_literal] = ACTIONS(8334), + [aux_sym_boolean_literal_token1] = ACTIONS(8332), + [aux_sym_boolean_literal_token2] = ACTIONS(8332), + [sym_nothing_literal] = ACTIONS(8332), + [sym_null_literal] = ACTIONS(8332), + [sym_empty_literal] = ACTIONS(8332), + [sym_date_literal] = ACTIONS(8334), + [anon_sym_POUND] = ACTIONS(8332), + }, + [STATE(5260)] = { + [sym_identifier] = ACTIONS(9134), + [sym_newline] = ACTIONS(9136), + [anon_sym_COLON] = ACTIONS(9136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9134), + [aux_sym_frm_property_statement_token1] = ACTIONS(9134), + [anon_sym_DOT] = ACTIONS(9134), + [anon_sym_BANG] = ACTIONS(9136), + [aux_sym__attribute_identifier_token1] = ACTIONS(9134), + [aux_sym_option_statement_token3] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9134), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9134), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9134), + [aux_sym_preprocessor_const_token1] = ACTIONS(9134), + [sym_static_modifier] = ACTIONS(9134), + [sym__dim_keyword] = ACTIONS(9134), + [sym__redim_keyword] = ACTIONS(9134), + [aux_sym_get_accessor_token1] = ACTIONS(9134), + [aux_sym_set_accessor_token1] = ACTIONS(9134), + [aux_sym_const_declaration_token1] = ACTIONS(9134), + [anon_sym_LPAREN] = ACTIONS(9136), + [aux_sym_as_type_clause_token2] = ACTIONS(9134), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9134), + [aux_sym_visibility_token1] = ACTIONS(9134), + [aux_sym_visibility_token2] = ACTIONS(9134), + [aux_sym_elseif_fragment_token1] = ACTIONS(9134), + [aux_sym_else_fragment_token1] = ACTIONS(9134), + [aux_sym_select_statement_token1] = ACTIONS(9134), + [aux_sym__for_header_token1] = ACTIONS(9134), + [aux_sym_do_statement_token1] = ACTIONS(9134), + [aux_sym_do_condition_token1] = ACTIONS(9134), + [aux_sym_with_statement_token1] = ACTIONS(9134), + [aux_sym_exit_statement_token1] = ACTIONS(9134), + [sym_end_statement] = ACTIONS(9136), + [aux_sym_on_goto_statement_token1] = ACTIONS(9134), + [aux_sym_on_goto_statement_token2] = ACTIONS(9134), + [aux_sym_on_error_statement_token2] = ACTIONS(9134), + [sym__ambiguous_redim_statement] = ACTIONS(9136), + [aux_sym_erase_statement_token1] = ACTIONS(9134), + [aux_sym_open_statement_token1] = ACTIONS(9134), + [aux_sym_file_mode_token2] = ACTIONS(9134), + [aux_sym_file_access_token2] = ACTIONS(9134), + [aux_sym_file_lock_token2] = ACTIONS(9134), + [aux_sym_print_statement_token1] = ACTIONS(9134), + [anon_sym_PLUS] = ACTIONS(9136), + [anon_sym_DASH] = ACTIONS(9134), + [anon_sym_QMARK] = ACTIONS(9136), + [aux_sym_close_statement_token1] = ACTIONS(9134), + [aux_sym_put_statement_token1] = ACTIONS(9134), + [aux_sym_unlock_statement_token1] = ACTIONS(9134), + [aux_sym_seek_statement_token1] = ACTIONS(9134), + [sym_reset_statement] = ACTIONS(9134), + [aux_sym_raise_event_statement_token1] = ACTIONS(9134), + [sym_stop_statement] = ACTIONS(9134), + [sym_beep_statement] = ACTIONS(9134), + [aux_sym_unload_statement_token1] = ACTIONS(9134), + [aux_sym_def_type_statement_token1] = ACTIONS(9134), + [aux_sym_def_type_statement_token2] = ACTIONS(9134), + [aux_sym_def_type_statement_token3] = ACTIONS(9134), + [aux_sym_def_type_statement_token4] = ACTIONS(9134), + [aux_sym_def_type_statement_token5] = ACTIONS(9134), + [aux_sym_def_type_statement_token6] = ACTIONS(9134), + [aux_sym_def_type_statement_token7] = ACTIONS(9134), + [aux_sym_def_type_statement_token8] = ACTIONS(9134), + [aux_sym_def_type_statement_token9] = ACTIONS(9134), + [aux_sym_def_type_statement_token10] = ACTIONS(9134), + [aux_sym_def_type_statement_token11] = ACTIONS(9134), + [aux_sym_def_type_statement_token12] = ACTIONS(9134), + [aux_sym_def_type_statement_token13] = ACTIONS(9134), + [aux_sym_def_type_statement_token14] = ACTIONS(9134), + [aux_sym_call_statement_token1] = ACTIONS(9134), + [sym__ambiguous_call_statement] = ACTIONS(9134), + [aux_sym_addressof_expression_token1] = ACTIONS(9134), + [aux_sym_type_of_expression_token1] = ACTIONS(9134), + [aux_sym_unary_expression_token1] = ACTIONS(9134), + [sym_string_literal] = ACTIONS(9136), + [sym_number_literal] = ACTIONS(9136), + [aux_sym_boolean_literal_token1] = ACTIONS(9134), + [aux_sym_boolean_literal_token2] = ACTIONS(9134), + [sym_nothing_literal] = ACTIONS(9134), + [sym_null_literal] = ACTIONS(9134), + [sym_empty_literal] = ACTIONS(9134), + [sym_date_literal] = ACTIONS(9136), + [anon_sym_POUND] = ACTIONS(9134), + }, + [STATE(5261)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5284), + [sym_identifier] = ACTIONS(8308), + [sym_newline] = ACTIONS(8310), + [anon_sym_COLON] = ACTIONS(8310), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8308), + [aux_sym_frm_property_statement_token1] = ACTIONS(8308), + [anon_sym_DOT] = ACTIONS(8308), + [anon_sym_BANG] = ACTIONS(8310), + [aux_sym__attribute_identifier_token1] = ACTIONS(8308), + [aux_sym_option_statement_token3] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8308), + [aux_sym_preprocessor_const_token1] = ACTIONS(8308), + [sym_static_modifier] = ACTIONS(8308), + [sym__dim_keyword] = ACTIONS(8308), + [sym__redim_keyword] = ACTIONS(8308), + [aux_sym_get_accessor_token1] = ACTIONS(8308), + [aux_sym_set_accessor_token1] = ACTIONS(8308), + [anon_sym_COMMA] = ACTIONS(10496), + [aux_sym_const_declaration_token1] = ACTIONS(8308), + [anon_sym_LPAREN] = ACTIONS(8310), + [aux_sym_as_type_clause_token2] = ACTIONS(8308), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8308), + [aux_sym_visibility_token1] = ACTIONS(8308), + [aux_sym_visibility_token2] = ACTIONS(8308), + [aux_sym_elseif_fragment_token1] = ACTIONS(8308), + [aux_sym_else_fragment_token1] = ACTIONS(8308), + [aux_sym_select_statement_token1] = ACTIONS(8308), + [aux_sym__for_header_token1] = ACTIONS(8308), + [aux_sym_do_statement_token1] = ACTIONS(8308), + [aux_sym_do_condition_token1] = ACTIONS(8308), + [aux_sym_with_statement_token1] = ACTIONS(8308), + [aux_sym_exit_statement_token1] = ACTIONS(8308), + [sym_end_statement] = ACTIONS(8310), + [aux_sym_on_goto_statement_token1] = ACTIONS(8308), + [aux_sym_on_goto_statement_token2] = ACTIONS(8308), + [aux_sym_on_error_statement_token2] = ACTIONS(8308), + [sym__ambiguous_redim_statement] = ACTIONS(8310), + [aux_sym_erase_statement_token1] = ACTIONS(8308), + [aux_sym_open_statement_token1] = ACTIONS(8308), + [aux_sym_file_mode_token2] = ACTIONS(8308), + [aux_sym_file_access_token2] = ACTIONS(8308), + [aux_sym_file_lock_token2] = ACTIONS(8308), + [aux_sym_print_statement_token1] = ACTIONS(8308), + [anon_sym_PLUS] = ACTIONS(8310), + [anon_sym_DASH] = ACTIONS(8308), + [anon_sym_QMARK] = ACTIONS(8310), + [aux_sym_close_statement_token1] = ACTIONS(8308), + [aux_sym_put_statement_token1] = ACTIONS(8308), + [aux_sym_unlock_statement_token1] = ACTIONS(8308), + [aux_sym_seek_statement_token1] = ACTIONS(8308), + [sym_reset_statement] = ACTIONS(8308), + [aux_sym_raise_event_statement_token1] = ACTIONS(8308), + [sym_stop_statement] = ACTIONS(8308), + [sym_beep_statement] = ACTIONS(8308), + [aux_sym_unload_statement_token1] = ACTIONS(8308), + [aux_sym_def_type_statement_token1] = ACTIONS(8308), + [aux_sym_def_type_statement_token2] = ACTIONS(8308), + [aux_sym_def_type_statement_token3] = ACTIONS(8308), + [aux_sym_def_type_statement_token4] = ACTIONS(8308), + [aux_sym_def_type_statement_token5] = ACTIONS(8308), + [aux_sym_def_type_statement_token6] = ACTIONS(8308), + [aux_sym_def_type_statement_token7] = ACTIONS(8308), + [aux_sym_def_type_statement_token8] = ACTIONS(8308), + [aux_sym_def_type_statement_token9] = ACTIONS(8308), + [aux_sym_def_type_statement_token10] = ACTIONS(8308), + [aux_sym_def_type_statement_token11] = ACTIONS(8308), + [aux_sym_def_type_statement_token12] = ACTIONS(8308), + [aux_sym_def_type_statement_token13] = ACTIONS(8308), + [aux_sym_def_type_statement_token14] = ACTIONS(8308), + [aux_sym_call_statement_token1] = ACTIONS(8308), + [sym__ambiguous_call_statement] = ACTIONS(8308), + [aux_sym_addressof_expression_token1] = ACTIONS(8308), + [aux_sym_type_of_expression_token1] = ACTIONS(8308), + [aux_sym_unary_expression_token1] = ACTIONS(8308), + [sym_string_literal] = ACTIONS(8310), + [sym_number_literal] = ACTIONS(8310), + [aux_sym_boolean_literal_token1] = ACTIONS(8308), + [aux_sym_boolean_literal_token2] = ACTIONS(8308), + [sym_nothing_literal] = ACTIONS(8308), + [sym_null_literal] = ACTIONS(8308), + [sym_empty_literal] = ACTIONS(8308), + [sym_date_literal] = ACTIONS(8310), + [anon_sym_POUND] = ACTIONS(8308), + }, + [STATE(5262)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5285), + [sym_identifier] = ACTIONS(8332), + [sym_newline] = ACTIONS(8334), + [anon_sym_COLON] = ACTIONS(8334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8332), + [aux_sym_frm_property_statement_token1] = ACTIONS(8332), + [anon_sym_DOT] = ACTIONS(8332), + [anon_sym_BANG] = ACTIONS(8334), + [aux_sym__attribute_identifier_token1] = ACTIONS(8332), + [aux_sym_option_statement_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8332), + [aux_sym_preprocessor_const_token1] = ACTIONS(8332), + [sym_static_modifier] = ACTIONS(8332), + [sym__dim_keyword] = ACTIONS(8332), + [sym__redim_keyword] = ACTIONS(8332), + [aux_sym_get_accessor_token1] = ACTIONS(8332), + [aux_sym_set_accessor_token1] = ACTIONS(8332), + [anon_sym_COMMA] = ACTIONS(10496), + [aux_sym_const_declaration_token1] = ACTIONS(8332), + [anon_sym_LPAREN] = ACTIONS(8334), + [aux_sym_as_type_clause_token2] = ACTIONS(8332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8332), + [aux_sym_visibility_token1] = ACTIONS(8332), + [aux_sym_visibility_token2] = ACTIONS(8332), + [aux_sym_elseif_fragment_token1] = ACTIONS(8332), + [aux_sym_else_fragment_token1] = ACTIONS(8332), + [aux_sym_select_statement_token1] = ACTIONS(8332), + [aux_sym__for_header_token1] = ACTIONS(8332), + [aux_sym_do_statement_token1] = ACTIONS(8332), + [aux_sym_do_condition_token1] = ACTIONS(8332), + [aux_sym_with_statement_token1] = ACTIONS(8332), + [aux_sym_exit_statement_token1] = ACTIONS(8332), + [sym_end_statement] = ACTIONS(8334), + [aux_sym_on_goto_statement_token1] = ACTIONS(8332), + [aux_sym_on_goto_statement_token2] = ACTIONS(8332), + [aux_sym_on_error_statement_token2] = ACTIONS(8332), + [sym__ambiguous_redim_statement] = ACTIONS(8334), + [aux_sym_erase_statement_token1] = ACTIONS(8332), + [aux_sym_open_statement_token1] = ACTIONS(8332), + [aux_sym_file_mode_token2] = ACTIONS(8332), + [aux_sym_file_access_token2] = ACTIONS(8332), + [aux_sym_file_lock_token2] = ACTIONS(8332), + [aux_sym_print_statement_token1] = ACTIONS(8332), + [anon_sym_PLUS] = ACTIONS(8334), + [anon_sym_DASH] = ACTIONS(8332), + [anon_sym_QMARK] = ACTIONS(8334), + [aux_sym_close_statement_token1] = ACTIONS(8332), + [aux_sym_put_statement_token1] = ACTIONS(8332), + [aux_sym_unlock_statement_token1] = ACTIONS(8332), + [aux_sym_seek_statement_token1] = ACTIONS(8332), + [sym_reset_statement] = ACTIONS(8332), + [aux_sym_raise_event_statement_token1] = ACTIONS(8332), + [sym_stop_statement] = ACTIONS(8332), + [sym_beep_statement] = ACTIONS(8332), + [aux_sym_unload_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token2] = ACTIONS(8332), + [aux_sym_def_type_statement_token3] = ACTIONS(8332), + [aux_sym_def_type_statement_token4] = ACTIONS(8332), + [aux_sym_def_type_statement_token5] = ACTIONS(8332), + [aux_sym_def_type_statement_token6] = ACTIONS(8332), + [aux_sym_def_type_statement_token7] = ACTIONS(8332), + [aux_sym_def_type_statement_token8] = ACTIONS(8332), + [aux_sym_def_type_statement_token9] = ACTIONS(8332), + [aux_sym_def_type_statement_token10] = ACTIONS(8332), + [aux_sym_def_type_statement_token11] = ACTIONS(8332), + [aux_sym_def_type_statement_token12] = ACTIONS(8332), + [aux_sym_def_type_statement_token13] = ACTIONS(8332), + [aux_sym_def_type_statement_token14] = ACTIONS(8332), + [aux_sym_call_statement_token1] = ACTIONS(8332), + [sym__ambiguous_call_statement] = ACTIONS(8332), + [aux_sym_addressof_expression_token1] = ACTIONS(8332), + [aux_sym_type_of_expression_token1] = ACTIONS(8332), + [aux_sym_unary_expression_token1] = ACTIONS(8332), + [sym_string_literal] = ACTIONS(8334), + [sym_number_literal] = ACTIONS(8334), + [aux_sym_boolean_literal_token1] = ACTIONS(8332), + [aux_sym_boolean_literal_token2] = ACTIONS(8332), + [sym_nothing_literal] = ACTIONS(8332), + [sym_null_literal] = ACTIONS(8332), + [sym_empty_literal] = ACTIONS(8332), + [sym_date_literal] = ACTIONS(8334), + [anon_sym_POUND] = ACTIONS(8332), + }, + [STATE(5263)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5286), + [sym_identifier] = ACTIONS(8336), + [sym_newline] = ACTIONS(8338), + [anon_sym_COLON] = ACTIONS(8338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8336), + [aux_sym_frm_property_statement_token1] = ACTIONS(8336), + [anon_sym_DOT] = ACTIONS(8336), + [anon_sym_BANG] = ACTIONS(8338), + [aux_sym__attribute_identifier_token1] = ACTIONS(8336), + [aux_sym_option_statement_token3] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8336), + [aux_sym_preprocessor_const_token1] = ACTIONS(8336), + [sym_static_modifier] = ACTIONS(8336), + [sym__dim_keyword] = ACTIONS(8336), + [sym__redim_keyword] = ACTIONS(8336), + [aux_sym_get_accessor_token1] = ACTIONS(8336), + [aux_sym_set_accessor_token1] = ACTIONS(8336), + [anon_sym_COMMA] = ACTIONS(10496), + [aux_sym_const_declaration_token1] = ACTIONS(8336), + [anon_sym_LPAREN] = ACTIONS(8338), + [aux_sym_as_type_clause_token2] = ACTIONS(8336), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8336), + [aux_sym_visibility_token1] = ACTIONS(8336), + [aux_sym_visibility_token2] = ACTIONS(8336), + [aux_sym_elseif_fragment_token1] = ACTIONS(8336), + [aux_sym_else_fragment_token1] = ACTIONS(8336), + [aux_sym_select_statement_token1] = ACTIONS(8336), + [aux_sym__for_header_token1] = ACTIONS(8336), + [aux_sym_do_statement_token1] = ACTIONS(8336), + [aux_sym_do_condition_token1] = ACTIONS(8336), + [aux_sym_with_statement_token1] = ACTIONS(8336), + [aux_sym_exit_statement_token1] = ACTIONS(8336), + [sym_end_statement] = ACTIONS(8338), + [aux_sym_on_goto_statement_token1] = ACTIONS(8336), + [aux_sym_on_goto_statement_token2] = ACTIONS(8336), + [aux_sym_on_error_statement_token2] = ACTIONS(8336), + [sym__ambiguous_redim_statement] = ACTIONS(8338), + [aux_sym_erase_statement_token1] = ACTIONS(8336), + [aux_sym_open_statement_token1] = ACTIONS(8336), + [aux_sym_file_mode_token2] = ACTIONS(8336), + [aux_sym_file_access_token2] = ACTIONS(8336), + [aux_sym_file_lock_token2] = ACTIONS(8336), + [aux_sym_print_statement_token1] = ACTIONS(8336), + [anon_sym_PLUS] = ACTIONS(8338), + [anon_sym_DASH] = ACTIONS(8336), + [anon_sym_QMARK] = ACTIONS(8338), + [aux_sym_close_statement_token1] = ACTIONS(8336), + [aux_sym_put_statement_token1] = ACTIONS(8336), + [aux_sym_unlock_statement_token1] = ACTIONS(8336), + [aux_sym_seek_statement_token1] = ACTIONS(8336), + [sym_reset_statement] = ACTIONS(8336), + [aux_sym_raise_event_statement_token1] = ACTIONS(8336), + [sym_stop_statement] = ACTIONS(8336), + [sym_beep_statement] = ACTIONS(8336), + [aux_sym_unload_statement_token1] = ACTIONS(8336), + [aux_sym_def_type_statement_token1] = ACTIONS(8336), + [aux_sym_def_type_statement_token2] = ACTIONS(8336), + [aux_sym_def_type_statement_token3] = ACTIONS(8336), + [aux_sym_def_type_statement_token4] = ACTIONS(8336), + [aux_sym_def_type_statement_token5] = ACTIONS(8336), + [aux_sym_def_type_statement_token6] = ACTIONS(8336), + [aux_sym_def_type_statement_token7] = ACTIONS(8336), + [aux_sym_def_type_statement_token8] = ACTIONS(8336), + [aux_sym_def_type_statement_token9] = ACTIONS(8336), + [aux_sym_def_type_statement_token10] = ACTIONS(8336), + [aux_sym_def_type_statement_token11] = ACTIONS(8336), + [aux_sym_def_type_statement_token12] = ACTIONS(8336), + [aux_sym_def_type_statement_token13] = ACTIONS(8336), + [aux_sym_def_type_statement_token14] = ACTIONS(8336), + [aux_sym_call_statement_token1] = ACTIONS(8336), + [sym__ambiguous_call_statement] = ACTIONS(8336), + [aux_sym_addressof_expression_token1] = ACTIONS(8336), + [aux_sym_type_of_expression_token1] = ACTIONS(8336), + [aux_sym_unary_expression_token1] = ACTIONS(8336), + [sym_string_literal] = ACTIONS(8338), + [sym_number_literal] = ACTIONS(8338), + [aux_sym_boolean_literal_token1] = ACTIONS(8336), + [aux_sym_boolean_literal_token2] = ACTIONS(8336), + [sym_nothing_literal] = ACTIONS(8336), + [sym_null_literal] = ACTIONS(8336), + [sym_empty_literal] = ACTIONS(8336), + [sym_date_literal] = ACTIONS(8338), + [anon_sym_POUND] = ACTIONS(8336), + }, + [STATE(5264)] = { + [aux_sym_const_declaration_repeat1] = STATE(5287), + [sym_identifier] = ACTIONS(8346), + [sym_newline] = ACTIONS(8348), + [anon_sym_COLON] = ACTIONS(8348), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8346), + [aux_sym_frm_property_statement_token1] = ACTIONS(8346), + [anon_sym_DOT] = ACTIONS(8346), + [anon_sym_BANG] = ACTIONS(8348), + [aux_sym__attribute_identifier_token1] = ACTIONS(8346), + [aux_sym_option_statement_token3] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8346), + [aux_sym_preprocessor_const_token1] = ACTIONS(8346), + [sym_static_modifier] = ACTIONS(8346), + [sym__dim_keyword] = ACTIONS(8346), + [sym__redim_keyword] = ACTIONS(8346), + [aux_sym_get_accessor_token1] = ACTIONS(8346), + [aux_sym_set_accessor_token1] = ACTIONS(8346), + [anon_sym_COMMA] = ACTIONS(10498), + [aux_sym_const_declaration_token1] = ACTIONS(8346), + [anon_sym_LPAREN] = ACTIONS(8348), + [aux_sym_as_type_clause_token2] = ACTIONS(8346), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8346), + [aux_sym_visibility_token1] = ACTIONS(8346), + [aux_sym_visibility_token2] = ACTIONS(8346), + [aux_sym_elseif_fragment_token1] = ACTIONS(8346), + [aux_sym_else_fragment_token1] = ACTIONS(8346), + [aux_sym_select_statement_token1] = ACTIONS(8346), + [aux_sym__for_header_token1] = ACTIONS(8346), + [aux_sym_do_statement_token1] = ACTIONS(8346), + [aux_sym_do_condition_token1] = ACTIONS(8346), + [aux_sym_with_statement_token1] = ACTIONS(8346), + [aux_sym_exit_statement_token1] = ACTIONS(8346), + [sym_end_statement] = ACTIONS(8348), + [aux_sym_on_goto_statement_token1] = ACTIONS(8346), + [aux_sym_on_goto_statement_token2] = ACTIONS(8346), + [aux_sym_on_error_statement_token2] = ACTIONS(8346), + [sym__ambiguous_redim_statement] = ACTIONS(8348), + [aux_sym_erase_statement_token1] = ACTIONS(8346), + [aux_sym_open_statement_token1] = ACTIONS(8346), + [aux_sym_file_mode_token2] = ACTIONS(8346), + [aux_sym_file_access_token2] = ACTIONS(8346), + [aux_sym_file_lock_token2] = ACTIONS(8346), + [aux_sym_print_statement_token1] = ACTIONS(8346), + [anon_sym_PLUS] = ACTIONS(8348), + [anon_sym_DASH] = ACTIONS(8346), + [anon_sym_QMARK] = ACTIONS(8348), + [aux_sym_close_statement_token1] = ACTIONS(8346), + [aux_sym_put_statement_token1] = ACTIONS(8346), + [aux_sym_unlock_statement_token1] = ACTIONS(8346), + [aux_sym_seek_statement_token1] = ACTIONS(8346), + [sym_reset_statement] = ACTIONS(8346), + [aux_sym_raise_event_statement_token1] = ACTIONS(8346), + [sym_stop_statement] = ACTIONS(8346), + [sym_beep_statement] = ACTIONS(8346), + [aux_sym_unload_statement_token1] = ACTIONS(8346), + [aux_sym_def_type_statement_token1] = ACTIONS(8346), + [aux_sym_def_type_statement_token2] = ACTIONS(8346), + [aux_sym_def_type_statement_token3] = ACTIONS(8346), + [aux_sym_def_type_statement_token4] = ACTIONS(8346), + [aux_sym_def_type_statement_token5] = ACTIONS(8346), + [aux_sym_def_type_statement_token6] = ACTIONS(8346), + [aux_sym_def_type_statement_token7] = ACTIONS(8346), + [aux_sym_def_type_statement_token8] = ACTIONS(8346), + [aux_sym_def_type_statement_token9] = ACTIONS(8346), + [aux_sym_def_type_statement_token10] = ACTIONS(8346), + [aux_sym_def_type_statement_token11] = ACTIONS(8346), + [aux_sym_def_type_statement_token12] = ACTIONS(8346), + [aux_sym_def_type_statement_token13] = ACTIONS(8346), + [aux_sym_def_type_statement_token14] = ACTIONS(8346), + [aux_sym_call_statement_token1] = ACTIONS(8346), + [sym__ambiguous_call_statement] = ACTIONS(8346), + [aux_sym_addressof_expression_token1] = ACTIONS(8346), + [aux_sym_type_of_expression_token1] = ACTIONS(8346), + [aux_sym_unary_expression_token1] = ACTIONS(8346), + [sym_string_literal] = ACTIONS(8348), + [sym_number_literal] = ACTIONS(8348), + [aux_sym_boolean_literal_token1] = ACTIONS(8346), + [aux_sym_boolean_literal_token2] = ACTIONS(8346), + [sym_nothing_literal] = ACTIONS(8346), + [sym_null_literal] = ACTIONS(8346), + [sym_empty_literal] = ACTIONS(8346), + [sym_date_literal] = ACTIONS(8348), + [anon_sym_POUND] = ACTIONS(8346), + }, + [STATE(5265)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5276), + [sym_identifier] = ACTIONS(8332), + [sym_newline] = ACTIONS(8334), + [anon_sym_COLON] = ACTIONS(8334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8332), + [aux_sym_frm_property_statement_token1] = ACTIONS(8332), + [anon_sym_DOT] = ACTIONS(8332), + [anon_sym_BANG] = ACTIONS(8334), + [aux_sym__attribute_identifier_token1] = ACTIONS(8332), + [aux_sym_option_statement_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8332), + [aux_sym_preprocessor_const_token1] = ACTIONS(8332), + [sym_static_modifier] = ACTIONS(8332), + [sym__dim_keyword] = ACTIONS(8332), + [sym__redim_keyword] = ACTIONS(8332), + [aux_sym_get_accessor_token1] = ACTIONS(8332), + [aux_sym_set_accessor_token1] = ACTIONS(8332), + [anon_sym_COMMA] = ACTIONS(10496), + [aux_sym_const_declaration_token1] = ACTIONS(8332), + [anon_sym_LPAREN] = ACTIONS(8334), + [aux_sym_as_type_clause_token2] = ACTIONS(8332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8332), + [aux_sym_visibility_token1] = ACTIONS(8332), + [aux_sym_visibility_token2] = ACTIONS(8332), + [aux_sym_elseif_fragment_token1] = ACTIONS(8332), + [aux_sym_else_fragment_token1] = ACTIONS(8332), + [aux_sym_select_statement_token1] = ACTIONS(8332), + [aux_sym__for_header_token1] = ACTIONS(8332), + [aux_sym_do_statement_token1] = ACTIONS(8332), + [aux_sym_do_condition_token1] = ACTIONS(8332), + [aux_sym_with_statement_token1] = ACTIONS(8332), + [aux_sym_exit_statement_token1] = ACTIONS(8332), + [sym_end_statement] = ACTIONS(8334), + [aux_sym_on_goto_statement_token1] = ACTIONS(8332), + [aux_sym_on_goto_statement_token2] = ACTIONS(8332), + [aux_sym_on_error_statement_token2] = ACTIONS(8332), + [sym__ambiguous_redim_statement] = ACTIONS(8334), + [aux_sym_erase_statement_token1] = ACTIONS(8332), + [aux_sym_open_statement_token1] = ACTIONS(8332), + [aux_sym_file_mode_token2] = ACTIONS(8332), + [aux_sym_file_access_token2] = ACTIONS(8332), + [aux_sym_file_lock_token2] = ACTIONS(8332), + [aux_sym_print_statement_token1] = ACTIONS(8332), + [anon_sym_PLUS] = ACTIONS(8334), + [anon_sym_DASH] = ACTIONS(8332), + [anon_sym_QMARK] = ACTIONS(8334), + [aux_sym_close_statement_token1] = ACTIONS(8332), + [aux_sym_put_statement_token1] = ACTIONS(8332), + [aux_sym_unlock_statement_token1] = ACTIONS(8332), + [aux_sym_seek_statement_token1] = ACTIONS(8332), + [sym_reset_statement] = ACTIONS(8332), + [aux_sym_raise_event_statement_token1] = ACTIONS(8332), + [sym_stop_statement] = ACTIONS(8332), + [sym_beep_statement] = ACTIONS(8332), + [aux_sym_unload_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token2] = ACTIONS(8332), + [aux_sym_def_type_statement_token3] = ACTIONS(8332), + [aux_sym_def_type_statement_token4] = ACTIONS(8332), + [aux_sym_def_type_statement_token5] = ACTIONS(8332), + [aux_sym_def_type_statement_token6] = ACTIONS(8332), + [aux_sym_def_type_statement_token7] = ACTIONS(8332), + [aux_sym_def_type_statement_token8] = ACTIONS(8332), + [aux_sym_def_type_statement_token9] = ACTIONS(8332), + [aux_sym_def_type_statement_token10] = ACTIONS(8332), + [aux_sym_def_type_statement_token11] = ACTIONS(8332), + [aux_sym_def_type_statement_token12] = ACTIONS(8332), + [aux_sym_def_type_statement_token13] = ACTIONS(8332), + [aux_sym_def_type_statement_token14] = ACTIONS(8332), + [aux_sym_call_statement_token1] = ACTIONS(8332), + [sym__ambiguous_call_statement] = ACTIONS(8332), + [aux_sym_addressof_expression_token1] = ACTIONS(8332), + [aux_sym_type_of_expression_token1] = ACTIONS(8332), + [aux_sym_unary_expression_token1] = ACTIONS(8332), + [sym_string_literal] = ACTIONS(8334), + [sym_number_literal] = ACTIONS(8334), + [aux_sym_boolean_literal_token1] = ACTIONS(8332), + [aux_sym_boolean_literal_token2] = ACTIONS(8332), + [sym_nothing_literal] = ACTIONS(8332), + [sym_null_literal] = ACTIONS(8332), + [sym_empty_literal] = ACTIONS(8332), + [sym_date_literal] = ACTIONS(8334), + [anon_sym_POUND] = ACTIONS(8332), + }, + [STATE(5266)] = { + [sym_do_condition] = STATE(6907), + [sym_identifier] = ACTIONS(8374), + [sym_newline] = ACTIONS(8376), + [anon_sym_COLON] = ACTIONS(8376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8374), + [aux_sym_frm_property_statement_token1] = ACTIONS(8374), + [anon_sym_DOT] = ACTIONS(8374), + [anon_sym_BANG] = ACTIONS(8376), + [aux_sym__attribute_identifier_token1] = ACTIONS(8374), + [aux_sym_option_statement_token3] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8374), + [aux_sym_preprocessor_const_token1] = ACTIONS(8374), + [sym_static_modifier] = ACTIONS(8374), + [sym__dim_keyword] = ACTIONS(8374), + [sym__redim_keyword] = ACTIONS(8374), + [aux_sym_get_accessor_token1] = ACTIONS(8374), + [aux_sym_set_accessor_token1] = ACTIONS(8374), + [aux_sym_const_declaration_token1] = ACTIONS(8374), + [anon_sym_LPAREN] = ACTIONS(8376), + [aux_sym_as_type_clause_token2] = ACTIONS(8374), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8374), + [aux_sym_visibility_token1] = ACTIONS(8374), + [aux_sym_visibility_token2] = ACTIONS(8374), + [aux_sym_elseif_fragment_token1] = ACTIONS(8374), + [aux_sym_else_fragment_token1] = ACTIONS(8374), + [aux_sym_select_statement_token1] = ACTIONS(8374), + [aux_sym_select_statement_token2] = ACTIONS(8374), + [aux_sym__for_header_token1] = ACTIONS(8374), + [aux_sym_do_statement_token1] = ACTIONS(8374), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8374), + [aux_sym_exit_statement_token1] = ACTIONS(8374), + [sym_end_statement] = ACTIONS(8376), + [aux_sym_on_goto_statement_token1] = ACTIONS(8374), + [aux_sym_on_goto_statement_token2] = ACTIONS(8374), + [aux_sym_on_error_statement_token2] = ACTIONS(8374), + [sym__ambiguous_redim_statement] = ACTIONS(8376), + [aux_sym_erase_statement_token1] = ACTIONS(8374), + [aux_sym_open_statement_token1] = ACTIONS(8374), + [aux_sym_file_mode_token2] = ACTIONS(8374), + [aux_sym_file_access_token2] = ACTIONS(8374), + [aux_sym_file_lock_token2] = ACTIONS(8374), + [aux_sym_print_statement_token1] = ACTIONS(8374), + [anon_sym_PLUS] = ACTIONS(8376), + [anon_sym_DASH] = ACTIONS(8374), + [anon_sym_QMARK] = ACTIONS(8376), + [aux_sym_close_statement_token1] = ACTIONS(8374), + [aux_sym_put_statement_token1] = ACTIONS(8374), + [aux_sym_unlock_statement_token1] = ACTIONS(8374), + [aux_sym_seek_statement_token1] = ACTIONS(8374), + [sym_reset_statement] = ACTIONS(8374), + [aux_sym_raise_event_statement_token1] = ACTIONS(8374), + [sym_stop_statement] = ACTIONS(8374), + [sym_beep_statement] = ACTIONS(8374), + [aux_sym_unload_statement_token1] = ACTIONS(8374), + [aux_sym_def_type_statement_token1] = ACTIONS(8374), + [aux_sym_def_type_statement_token2] = ACTIONS(8374), + [aux_sym_def_type_statement_token3] = ACTIONS(8374), + [aux_sym_def_type_statement_token4] = ACTIONS(8374), + [aux_sym_def_type_statement_token5] = ACTIONS(8374), + [aux_sym_def_type_statement_token6] = ACTIONS(8374), + [aux_sym_def_type_statement_token7] = ACTIONS(8374), + [aux_sym_def_type_statement_token8] = ACTIONS(8374), + [aux_sym_def_type_statement_token9] = ACTIONS(8374), + [aux_sym_def_type_statement_token10] = ACTIONS(8374), + [aux_sym_def_type_statement_token11] = ACTIONS(8374), + [aux_sym_def_type_statement_token12] = ACTIONS(8374), + [aux_sym_def_type_statement_token13] = ACTIONS(8374), + [aux_sym_def_type_statement_token14] = ACTIONS(8374), + [aux_sym_call_statement_token1] = ACTIONS(8374), + [sym__ambiguous_call_statement] = ACTIONS(8374), + [aux_sym_addressof_expression_token1] = ACTIONS(8374), + [aux_sym_type_of_expression_token1] = ACTIONS(8374), + [aux_sym_unary_expression_token1] = ACTIONS(8374), + [sym_string_literal] = ACTIONS(8376), + [sym_number_literal] = ACTIONS(8376), + [aux_sym_boolean_literal_token1] = ACTIONS(8374), + [aux_sym_boolean_literal_token2] = ACTIONS(8374), + [sym_nothing_literal] = ACTIONS(8374), + [sym_null_literal] = ACTIONS(8374), + [sym_empty_literal] = ACTIONS(8374), + [sym_date_literal] = ACTIONS(8376), + [anon_sym_POUND] = ACTIONS(8374), + }, + [STATE(5267)] = { + [sym_do_condition] = STATE(6910), + [sym_identifier] = ACTIONS(8378), + [sym_newline] = ACTIONS(8380), + [anon_sym_COLON] = ACTIONS(8380), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8378), + [aux_sym_frm_property_statement_token1] = ACTIONS(8378), + [anon_sym_DOT] = ACTIONS(8378), + [anon_sym_BANG] = ACTIONS(8380), + [aux_sym__attribute_identifier_token1] = ACTIONS(8378), + [aux_sym_option_statement_token3] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8378), + [aux_sym_preprocessor_const_token1] = ACTIONS(8378), + [sym_static_modifier] = ACTIONS(8378), + [sym__dim_keyword] = ACTIONS(8378), + [sym__redim_keyword] = ACTIONS(8378), + [aux_sym_get_accessor_token1] = ACTIONS(8378), + [aux_sym_set_accessor_token1] = ACTIONS(8378), + [aux_sym_const_declaration_token1] = ACTIONS(8378), + [anon_sym_LPAREN] = ACTIONS(8380), + [aux_sym_as_type_clause_token2] = ACTIONS(8378), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8378), + [aux_sym_visibility_token1] = ACTIONS(8378), + [aux_sym_visibility_token2] = ACTIONS(8378), + [aux_sym_elseif_fragment_token1] = ACTIONS(8378), + [aux_sym_else_fragment_token1] = ACTIONS(8378), + [aux_sym_select_statement_token1] = ACTIONS(8378), + [aux_sym_select_statement_token2] = ACTIONS(8378), + [aux_sym__for_header_token1] = ACTIONS(8378), + [aux_sym_do_statement_token1] = ACTIONS(8378), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8378), + [aux_sym_exit_statement_token1] = ACTIONS(8378), + [sym_end_statement] = ACTIONS(8380), + [aux_sym_on_goto_statement_token1] = ACTIONS(8378), + [aux_sym_on_goto_statement_token2] = ACTIONS(8378), + [aux_sym_on_error_statement_token2] = ACTIONS(8378), + [sym__ambiguous_redim_statement] = ACTIONS(8380), + [aux_sym_erase_statement_token1] = ACTIONS(8378), + [aux_sym_open_statement_token1] = ACTIONS(8378), + [aux_sym_file_mode_token2] = ACTIONS(8378), + [aux_sym_file_access_token2] = ACTIONS(8378), + [aux_sym_file_lock_token2] = ACTIONS(8378), + [aux_sym_print_statement_token1] = ACTIONS(8378), + [anon_sym_PLUS] = ACTIONS(8380), + [anon_sym_DASH] = ACTIONS(8378), + [anon_sym_QMARK] = ACTIONS(8380), + [aux_sym_close_statement_token1] = ACTIONS(8378), + [aux_sym_put_statement_token1] = ACTIONS(8378), + [aux_sym_unlock_statement_token1] = ACTIONS(8378), + [aux_sym_seek_statement_token1] = ACTIONS(8378), + [sym_reset_statement] = ACTIONS(8378), + [aux_sym_raise_event_statement_token1] = ACTIONS(8378), + [sym_stop_statement] = ACTIONS(8378), + [sym_beep_statement] = ACTIONS(8378), + [aux_sym_unload_statement_token1] = ACTIONS(8378), + [aux_sym_def_type_statement_token1] = ACTIONS(8378), + [aux_sym_def_type_statement_token2] = ACTIONS(8378), + [aux_sym_def_type_statement_token3] = ACTIONS(8378), + [aux_sym_def_type_statement_token4] = ACTIONS(8378), + [aux_sym_def_type_statement_token5] = ACTIONS(8378), + [aux_sym_def_type_statement_token6] = ACTIONS(8378), + [aux_sym_def_type_statement_token7] = ACTIONS(8378), + [aux_sym_def_type_statement_token8] = ACTIONS(8378), + [aux_sym_def_type_statement_token9] = ACTIONS(8378), + [aux_sym_def_type_statement_token10] = ACTIONS(8378), + [aux_sym_def_type_statement_token11] = ACTIONS(8378), + [aux_sym_def_type_statement_token12] = ACTIONS(8378), + [aux_sym_def_type_statement_token13] = ACTIONS(8378), + [aux_sym_def_type_statement_token14] = ACTIONS(8378), + [aux_sym_call_statement_token1] = ACTIONS(8378), + [sym__ambiguous_call_statement] = ACTIONS(8378), + [aux_sym_addressof_expression_token1] = ACTIONS(8378), + [aux_sym_type_of_expression_token1] = ACTIONS(8378), + [aux_sym_unary_expression_token1] = ACTIONS(8378), + [sym_string_literal] = ACTIONS(8380), + [sym_number_literal] = ACTIONS(8380), + [aux_sym_boolean_literal_token1] = ACTIONS(8378), + [aux_sym_boolean_literal_token2] = ACTIONS(8378), + [sym_nothing_literal] = ACTIONS(8378), + [sym_null_literal] = ACTIONS(8378), + [sym_empty_literal] = ACTIONS(8378), + [sym_date_literal] = ACTIONS(8380), + [anon_sym_POUND] = ACTIONS(8378), + }, + [STATE(5268)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5268), + [sym_identifier] = ACTIONS(8386), + [sym_newline] = ACTIONS(8388), + [anon_sym_COLON] = ACTIONS(8388), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8386), + [aux_sym_frm_property_statement_token1] = ACTIONS(8386), + [anon_sym_DOT] = ACTIONS(8386), + [anon_sym_BANG] = ACTIONS(8388), + [aux_sym__attribute_identifier_token1] = ACTIONS(8386), + [aux_sym_option_statement_token3] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8386), + [aux_sym_preprocessor_const_token1] = ACTIONS(8386), + [sym_static_modifier] = ACTIONS(8386), + [sym__dim_keyword] = ACTIONS(8386), + [sym__redim_keyword] = ACTIONS(8386), + [aux_sym_get_accessor_token1] = ACTIONS(8386), + [aux_sym_set_accessor_token1] = ACTIONS(8386), + [anon_sym_COMMA] = ACTIONS(10510), + [aux_sym_const_declaration_token1] = ACTIONS(8386), + [anon_sym_LPAREN] = ACTIONS(8388), + [aux_sym_as_type_clause_token2] = ACTIONS(8386), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8386), + [aux_sym_visibility_token1] = ACTIONS(8386), + [aux_sym_visibility_token2] = ACTIONS(8386), + [aux_sym_elseif_fragment_token1] = ACTIONS(8386), + [aux_sym_else_fragment_token1] = ACTIONS(8386), + [aux_sym_select_statement_token1] = ACTIONS(8386), + [aux_sym__for_header_token1] = ACTIONS(8386), + [aux_sym_do_statement_token1] = ACTIONS(8386), + [aux_sym_do_condition_token1] = ACTIONS(8386), + [aux_sym_with_statement_token1] = ACTIONS(8386), + [aux_sym_exit_statement_token1] = ACTIONS(8386), + [sym_end_statement] = ACTIONS(8388), + [aux_sym_on_goto_statement_token1] = ACTIONS(8386), + [aux_sym_on_goto_statement_token2] = ACTIONS(8386), + [aux_sym_on_error_statement_token2] = ACTIONS(8386), + [sym__ambiguous_redim_statement] = ACTIONS(8388), + [aux_sym_erase_statement_token1] = ACTIONS(8386), + [aux_sym_open_statement_token1] = ACTIONS(8386), + [aux_sym_file_mode_token2] = ACTIONS(8386), + [aux_sym_file_access_token2] = ACTIONS(8386), + [aux_sym_file_lock_token2] = ACTIONS(8386), + [aux_sym_print_statement_token1] = ACTIONS(8386), + [anon_sym_PLUS] = ACTIONS(8388), + [anon_sym_DASH] = ACTIONS(8386), + [anon_sym_QMARK] = ACTIONS(8388), + [aux_sym_close_statement_token1] = ACTIONS(8386), + [aux_sym_put_statement_token1] = ACTIONS(8386), + [aux_sym_unlock_statement_token1] = ACTIONS(8386), + [aux_sym_seek_statement_token1] = ACTIONS(8386), + [sym_reset_statement] = ACTIONS(8386), + [aux_sym_raise_event_statement_token1] = ACTIONS(8386), + [sym_stop_statement] = ACTIONS(8386), + [sym_beep_statement] = ACTIONS(8386), + [aux_sym_unload_statement_token1] = ACTIONS(8386), + [aux_sym_def_type_statement_token1] = ACTIONS(8386), + [aux_sym_def_type_statement_token2] = ACTIONS(8386), + [aux_sym_def_type_statement_token3] = ACTIONS(8386), + [aux_sym_def_type_statement_token4] = ACTIONS(8386), + [aux_sym_def_type_statement_token5] = ACTIONS(8386), + [aux_sym_def_type_statement_token6] = ACTIONS(8386), + [aux_sym_def_type_statement_token7] = ACTIONS(8386), + [aux_sym_def_type_statement_token8] = ACTIONS(8386), + [aux_sym_def_type_statement_token9] = ACTIONS(8386), + [aux_sym_def_type_statement_token10] = ACTIONS(8386), + [aux_sym_def_type_statement_token11] = ACTIONS(8386), + [aux_sym_def_type_statement_token12] = ACTIONS(8386), + [aux_sym_def_type_statement_token13] = ACTIONS(8386), + [aux_sym_def_type_statement_token14] = ACTIONS(8386), + [aux_sym_call_statement_token1] = ACTIONS(8386), + [sym__ambiguous_call_statement] = ACTIONS(8386), + [aux_sym_addressof_expression_token1] = ACTIONS(8386), + [aux_sym_type_of_expression_token1] = ACTIONS(8386), + [aux_sym_unary_expression_token1] = ACTIONS(8386), + [sym_string_literal] = ACTIONS(8388), + [sym_number_literal] = ACTIONS(8388), + [aux_sym_boolean_literal_token1] = ACTIONS(8386), + [aux_sym_boolean_literal_token2] = ACTIONS(8386), + [sym_nothing_literal] = ACTIONS(8386), + [sym_null_literal] = ACTIONS(8386), + [sym_empty_literal] = ACTIONS(8386), + [sym_date_literal] = ACTIONS(8388), + [anon_sym_POUND] = ACTIONS(8386), + }, + [STATE(5269)] = { + [sym_do_condition] = STATE(7089), + [sym_identifier] = ACTIONS(8188), + [sym_newline] = ACTIONS(8190), + [anon_sym_COLON] = ACTIONS(8190), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8188), + [aux_sym_frm_property_statement_token1] = ACTIONS(8188), + [anon_sym_DOT] = ACTIONS(8188), + [anon_sym_BANG] = ACTIONS(8190), + [aux_sym__attribute_identifier_token1] = ACTIONS(8188), + [aux_sym_option_statement_token3] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8188), + [aux_sym_preprocessor_const_token1] = ACTIONS(8188), + [sym_static_modifier] = ACTIONS(8188), + [sym__dim_keyword] = ACTIONS(8188), + [sym__redim_keyword] = ACTIONS(8188), + [aux_sym_get_accessor_token1] = ACTIONS(8188), + [aux_sym_set_accessor_token1] = ACTIONS(8188), + [aux_sym_const_declaration_token1] = ACTIONS(8188), + [anon_sym_LPAREN] = ACTIONS(8190), + [aux_sym_as_type_clause_token2] = ACTIONS(8188), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8188), + [aux_sym_visibility_token1] = ACTIONS(8188), + [aux_sym_visibility_token2] = ACTIONS(8188), + [aux_sym_elseif_fragment_token1] = ACTIONS(8188), + [aux_sym_else_fragment_token1] = ACTIONS(8188), + [aux_sym_select_statement_token1] = ACTIONS(8188), + [aux_sym__for_header_token1] = ACTIONS(8188), + [aux_sym_do_statement_token1] = ACTIONS(8188), + [aux_sym_do_statement_token2] = ACTIONS(8188), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8188), + [aux_sym_exit_statement_token1] = ACTIONS(8188), + [sym_end_statement] = ACTIONS(8190), + [aux_sym_on_goto_statement_token1] = ACTIONS(8188), + [aux_sym_on_goto_statement_token2] = ACTIONS(8188), + [aux_sym_on_error_statement_token2] = ACTIONS(8188), + [sym__ambiguous_redim_statement] = ACTIONS(8190), + [aux_sym_erase_statement_token1] = ACTIONS(8188), + [aux_sym_open_statement_token1] = ACTIONS(8188), + [aux_sym_file_mode_token2] = ACTIONS(8188), + [aux_sym_file_access_token2] = ACTIONS(8188), + [aux_sym_file_lock_token2] = ACTIONS(8188), + [aux_sym_print_statement_token1] = ACTIONS(8188), + [anon_sym_PLUS] = ACTIONS(8190), + [anon_sym_DASH] = ACTIONS(8188), + [anon_sym_QMARK] = ACTIONS(8190), + [aux_sym_close_statement_token1] = ACTIONS(8188), + [aux_sym_put_statement_token1] = ACTIONS(8188), + [aux_sym_unlock_statement_token1] = ACTIONS(8188), + [aux_sym_seek_statement_token1] = ACTIONS(8188), + [sym_reset_statement] = ACTIONS(8188), + [aux_sym_raise_event_statement_token1] = ACTIONS(8188), + [sym_stop_statement] = ACTIONS(8188), + [sym_beep_statement] = ACTIONS(8188), + [aux_sym_unload_statement_token1] = ACTIONS(8188), + [aux_sym_def_type_statement_token1] = ACTIONS(8188), + [aux_sym_def_type_statement_token2] = ACTIONS(8188), + [aux_sym_def_type_statement_token3] = ACTIONS(8188), + [aux_sym_def_type_statement_token4] = ACTIONS(8188), + [aux_sym_def_type_statement_token5] = ACTIONS(8188), + [aux_sym_def_type_statement_token6] = ACTIONS(8188), + [aux_sym_def_type_statement_token7] = ACTIONS(8188), + [aux_sym_def_type_statement_token8] = ACTIONS(8188), + [aux_sym_def_type_statement_token9] = ACTIONS(8188), + [aux_sym_def_type_statement_token10] = ACTIONS(8188), + [aux_sym_def_type_statement_token11] = ACTIONS(8188), + [aux_sym_def_type_statement_token12] = ACTIONS(8188), + [aux_sym_def_type_statement_token13] = ACTIONS(8188), + [aux_sym_def_type_statement_token14] = ACTIONS(8188), + [aux_sym_call_statement_token1] = ACTIONS(8188), + [sym__ambiguous_call_statement] = ACTIONS(8188), + [aux_sym_addressof_expression_token1] = ACTIONS(8188), + [aux_sym_type_of_expression_token1] = ACTIONS(8188), + [aux_sym_unary_expression_token1] = ACTIONS(8188), + [sym_string_literal] = ACTIONS(8190), + [sym_number_literal] = ACTIONS(8190), + [aux_sym_boolean_literal_token1] = ACTIONS(8188), + [aux_sym_boolean_literal_token2] = ACTIONS(8188), + [sym_nothing_literal] = ACTIONS(8188), + [sym_null_literal] = ACTIONS(8188), + [sym_empty_literal] = ACTIONS(8188), + [sym_date_literal] = ACTIONS(8190), + [anon_sym_POUND] = ACTIONS(8188), + }, + [STATE(5270)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_statement_token2] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(5271)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_statement_token2] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(5272)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_statement_token2] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(5273)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5273), + [sym_identifier] = ACTIONS(8287), + [sym_newline] = ACTIONS(8289), + [anon_sym_COLON] = ACTIONS(8289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8287), + [aux_sym_frm_property_statement_token1] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8287), + [anon_sym_BANG] = ACTIONS(8289), + [aux_sym__attribute_identifier_token1] = ACTIONS(8287), + [aux_sym_option_statement_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8287), + [aux_sym_preprocessor_const_token1] = ACTIONS(8287), + [sym_static_modifier] = ACTIONS(8287), + [sym__dim_keyword] = ACTIONS(8287), + [sym__redim_keyword] = ACTIONS(8287), + [aux_sym_get_accessor_token1] = ACTIONS(8287), + [aux_sym_set_accessor_token1] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(10513), + [aux_sym_const_declaration_token1] = ACTIONS(8287), + [anon_sym_LPAREN] = ACTIONS(8289), + [aux_sym_as_type_clause_token2] = ACTIONS(8287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8287), + [aux_sym_visibility_token1] = ACTIONS(8287), + [aux_sym_visibility_token2] = ACTIONS(8287), + [aux_sym_elseif_fragment_token1] = ACTIONS(8287), + [aux_sym_else_fragment_token1] = ACTIONS(8287), + [aux_sym_select_statement_token1] = ACTIONS(8287), + [aux_sym__for_header_token1] = ACTIONS(8287), + [aux_sym_do_statement_token1] = ACTIONS(8287), + [aux_sym_do_condition_token1] = ACTIONS(8287), + [aux_sym_while_statement_token1] = ACTIONS(8287), + [aux_sym_with_statement_token1] = ACTIONS(8287), + [aux_sym_exit_statement_token1] = ACTIONS(8287), + [sym_end_statement] = ACTIONS(8289), + [aux_sym_on_goto_statement_token1] = ACTIONS(8287), + [aux_sym_on_goto_statement_token2] = ACTIONS(8287), + [aux_sym_on_error_statement_token2] = ACTIONS(8287), + [sym__ambiguous_redim_statement] = ACTIONS(8289), + [aux_sym_erase_statement_token1] = ACTIONS(8287), + [aux_sym_open_statement_token1] = ACTIONS(8287), + [aux_sym_file_mode_token2] = ACTIONS(8287), + [aux_sym_file_access_token2] = ACTIONS(8287), + [aux_sym_file_lock_token2] = ACTIONS(8287), + [aux_sym_print_statement_token1] = ACTIONS(8287), + [anon_sym_PLUS] = ACTIONS(8289), + [anon_sym_DASH] = ACTIONS(8287), + [anon_sym_QMARK] = ACTIONS(8289), + [aux_sym_close_statement_token1] = ACTIONS(8287), + [aux_sym_put_statement_token1] = ACTIONS(8287), + [aux_sym_unlock_statement_token1] = ACTIONS(8287), + [aux_sym_seek_statement_token1] = ACTIONS(8287), + [sym_reset_statement] = ACTIONS(8287), + [aux_sym_raise_event_statement_token1] = ACTIONS(8287), + [sym_stop_statement] = ACTIONS(8287), + [sym_beep_statement] = ACTIONS(8287), + [aux_sym_unload_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token2] = ACTIONS(8287), + [aux_sym_def_type_statement_token3] = ACTIONS(8287), + [aux_sym_def_type_statement_token4] = ACTIONS(8287), + [aux_sym_def_type_statement_token5] = ACTIONS(8287), + [aux_sym_def_type_statement_token6] = ACTIONS(8287), + [aux_sym_def_type_statement_token7] = ACTIONS(8287), + [aux_sym_def_type_statement_token8] = ACTIONS(8287), + [aux_sym_def_type_statement_token9] = ACTIONS(8287), + [aux_sym_def_type_statement_token10] = ACTIONS(8287), + [aux_sym_def_type_statement_token11] = ACTIONS(8287), + [aux_sym_def_type_statement_token12] = ACTIONS(8287), + [aux_sym_def_type_statement_token13] = ACTIONS(8287), + [aux_sym_def_type_statement_token14] = ACTIONS(8287), + [aux_sym_call_statement_token1] = ACTIONS(8287), + [sym__ambiguous_call_statement] = ACTIONS(8287), + [aux_sym_addressof_expression_token1] = ACTIONS(8287), + [aux_sym_type_of_expression_token1] = ACTIONS(8287), + [aux_sym_unary_expression_token1] = ACTIONS(8287), + [sym_string_literal] = ACTIONS(8289), + [sym_number_literal] = ACTIONS(8289), + [aux_sym_boolean_literal_token1] = ACTIONS(8287), + [aux_sym_boolean_literal_token2] = ACTIONS(8287), + [sym_nothing_literal] = ACTIONS(8287), + [sym_null_literal] = ACTIONS(8287), + [sym_empty_literal] = ACTIONS(8287), + [sym_date_literal] = ACTIONS(8289), + [anon_sym_POUND] = ACTIONS(8287), + }, + [STATE(5274)] = { + [aux_sym_const_declaration_repeat1] = STATE(5274), + [sym_identifier] = ACTIONS(8350), + [sym_newline] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8350), + [aux_sym_frm_property_statement_token1] = ACTIONS(8350), + [anon_sym_DOT] = ACTIONS(8350), + [anon_sym_BANG] = ACTIONS(8352), + [aux_sym__attribute_identifier_token1] = ACTIONS(8350), + [aux_sym_option_statement_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8350), + [aux_sym_preprocessor_const_token1] = ACTIONS(8350), + [sym_static_modifier] = ACTIONS(8350), + [sym__dim_keyword] = ACTIONS(8350), + [sym__redim_keyword] = ACTIONS(8350), + [aux_sym_get_accessor_token1] = ACTIONS(8350), + [aux_sym_set_accessor_token1] = ACTIONS(8350), + [anon_sym_COMMA] = ACTIONS(10516), + [aux_sym_const_declaration_token1] = ACTIONS(8350), + [anon_sym_LPAREN] = ACTIONS(8352), + [aux_sym_as_type_clause_token2] = ACTIONS(8350), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8350), + [aux_sym_visibility_token1] = ACTIONS(8350), + [aux_sym_visibility_token2] = ACTIONS(8350), + [aux_sym_elseif_fragment_token1] = ACTIONS(8350), + [aux_sym_else_fragment_token1] = ACTIONS(8350), + [aux_sym_select_statement_token1] = ACTIONS(8350), + [aux_sym__for_header_token1] = ACTIONS(8350), + [aux_sym_do_statement_token1] = ACTIONS(8350), + [aux_sym_do_condition_token1] = ACTIONS(8350), + [aux_sym_while_statement_token1] = ACTIONS(8350), + [aux_sym_with_statement_token1] = ACTIONS(8350), + [aux_sym_exit_statement_token1] = ACTIONS(8350), + [sym_end_statement] = ACTIONS(8352), + [aux_sym_on_goto_statement_token1] = ACTIONS(8350), + [aux_sym_on_goto_statement_token2] = ACTIONS(8350), + [aux_sym_on_error_statement_token2] = ACTIONS(8350), + [sym__ambiguous_redim_statement] = ACTIONS(8352), + [aux_sym_erase_statement_token1] = ACTIONS(8350), + [aux_sym_open_statement_token1] = ACTIONS(8350), + [aux_sym_file_mode_token2] = ACTIONS(8350), + [aux_sym_file_access_token2] = ACTIONS(8350), + [aux_sym_file_lock_token2] = ACTIONS(8350), + [aux_sym_print_statement_token1] = ACTIONS(8350), + [anon_sym_PLUS] = ACTIONS(8352), + [anon_sym_DASH] = ACTIONS(8350), + [anon_sym_QMARK] = ACTIONS(8352), + [aux_sym_close_statement_token1] = ACTIONS(8350), + [aux_sym_put_statement_token1] = ACTIONS(8350), + [aux_sym_unlock_statement_token1] = ACTIONS(8350), + [aux_sym_seek_statement_token1] = ACTIONS(8350), + [sym_reset_statement] = ACTIONS(8350), + [aux_sym_raise_event_statement_token1] = ACTIONS(8350), + [sym_stop_statement] = ACTIONS(8350), + [sym_beep_statement] = ACTIONS(8350), + [aux_sym_unload_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token2] = ACTIONS(8350), + [aux_sym_def_type_statement_token3] = ACTIONS(8350), + [aux_sym_def_type_statement_token4] = ACTIONS(8350), + [aux_sym_def_type_statement_token5] = ACTIONS(8350), + [aux_sym_def_type_statement_token6] = ACTIONS(8350), + [aux_sym_def_type_statement_token7] = ACTIONS(8350), + [aux_sym_def_type_statement_token8] = ACTIONS(8350), + [aux_sym_def_type_statement_token9] = ACTIONS(8350), + [aux_sym_def_type_statement_token10] = ACTIONS(8350), + [aux_sym_def_type_statement_token11] = ACTIONS(8350), + [aux_sym_def_type_statement_token12] = ACTIONS(8350), + [aux_sym_def_type_statement_token13] = ACTIONS(8350), + [aux_sym_def_type_statement_token14] = ACTIONS(8350), + [aux_sym_call_statement_token1] = ACTIONS(8350), + [sym__ambiguous_call_statement] = ACTIONS(8350), + [aux_sym_addressof_expression_token1] = ACTIONS(8350), + [aux_sym_type_of_expression_token1] = ACTIONS(8350), + [aux_sym_unary_expression_token1] = ACTIONS(8350), + [sym_string_literal] = ACTIONS(8352), + [sym_number_literal] = ACTIONS(8352), + [aux_sym_boolean_literal_token1] = ACTIONS(8350), + [aux_sym_boolean_literal_token2] = ACTIONS(8350), + [sym_nothing_literal] = ACTIONS(8350), + [sym_null_literal] = ACTIONS(8350), + [sym_empty_literal] = ACTIONS(8350), + [sym_date_literal] = ACTIONS(8352), + [anon_sym_POUND] = ACTIONS(8350), + }, + [STATE(5275)] = { + [sym_identifier] = ACTIONS(9072), + [sym_newline] = ACTIONS(9074), + [anon_sym_COLON] = ACTIONS(9074), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9072), + [aux_sym_frm_property_statement_token1] = ACTIONS(9072), + [anon_sym_DOT] = ACTIONS(9072), + [anon_sym_BANG] = ACTIONS(9074), + [aux_sym__attribute_identifier_token1] = ACTIONS(9072), + [aux_sym_option_statement_token3] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9072), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9072), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9072), + [aux_sym_preprocessor_const_token1] = ACTIONS(9072), + [sym_static_modifier] = ACTIONS(9072), + [sym__dim_keyword] = ACTIONS(9072), + [sym__redim_keyword] = ACTIONS(9072), + [aux_sym_get_accessor_token1] = ACTIONS(9072), + [aux_sym_set_accessor_token1] = ACTIONS(9072), + [aux_sym_const_declaration_token1] = ACTIONS(9072), + [anon_sym_LPAREN] = ACTIONS(9074), + [aux_sym_as_type_clause_token2] = ACTIONS(9072), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9072), + [aux_sym_visibility_token1] = ACTIONS(9072), + [aux_sym_visibility_token2] = ACTIONS(9072), + [aux_sym_elseif_fragment_token1] = ACTIONS(9072), + [aux_sym_else_fragment_token1] = ACTIONS(9072), + [aux_sym_select_statement_token1] = ACTIONS(9072), + [aux_sym__for_header_token1] = ACTIONS(9072), + [aux_sym_do_statement_token1] = ACTIONS(9072), + [aux_sym_do_condition_token1] = ACTIONS(9072), + [aux_sym_with_statement_token1] = ACTIONS(9072), + [aux_sym_exit_statement_token1] = ACTIONS(9072), + [sym_end_statement] = ACTIONS(9074), + [aux_sym_on_goto_statement_token1] = ACTIONS(9072), + [aux_sym_on_goto_statement_token2] = ACTIONS(9072), + [aux_sym_on_error_statement_token2] = ACTIONS(9072), + [sym__ambiguous_redim_statement] = ACTIONS(9074), + [aux_sym_erase_statement_token1] = ACTIONS(9072), + [aux_sym_open_statement_token1] = ACTIONS(9072), + [aux_sym_file_mode_token2] = ACTIONS(9072), + [aux_sym_file_access_token2] = ACTIONS(9072), + [aux_sym_file_lock_token2] = ACTIONS(9072), + [aux_sym_print_statement_token1] = ACTIONS(9072), + [anon_sym_PLUS] = ACTIONS(9074), + [anon_sym_DASH] = ACTIONS(9072), + [anon_sym_QMARK] = ACTIONS(9074), + [aux_sym_close_statement_token1] = ACTIONS(9072), + [aux_sym_put_statement_token1] = ACTIONS(9072), + [aux_sym_unlock_statement_token1] = ACTIONS(9072), + [aux_sym_seek_statement_token1] = ACTIONS(9072), + [sym_reset_statement] = ACTIONS(9072), + [aux_sym_raise_event_statement_token1] = ACTIONS(9072), + [sym_stop_statement] = ACTIONS(9072), + [sym_beep_statement] = ACTIONS(9072), + [aux_sym_unload_statement_token1] = ACTIONS(9072), + [aux_sym_def_type_statement_token1] = ACTIONS(9072), + [aux_sym_def_type_statement_token2] = ACTIONS(9072), + [aux_sym_def_type_statement_token3] = ACTIONS(9072), + [aux_sym_def_type_statement_token4] = ACTIONS(9072), + [aux_sym_def_type_statement_token5] = ACTIONS(9072), + [aux_sym_def_type_statement_token6] = ACTIONS(9072), + [aux_sym_def_type_statement_token7] = ACTIONS(9072), + [aux_sym_def_type_statement_token8] = ACTIONS(9072), + [aux_sym_def_type_statement_token9] = ACTIONS(9072), + [aux_sym_def_type_statement_token10] = ACTIONS(9072), + [aux_sym_def_type_statement_token11] = ACTIONS(9072), + [aux_sym_def_type_statement_token12] = ACTIONS(9072), + [aux_sym_def_type_statement_token13] = ACTIONS(9072), + [aux_sym_def_type_statement_token14] = ACTIONS(9072), + [aux_sym_call_statement_token1] = ACTIONS(9072), + [sym__ambiguous_call_statement] = ACTIONS(9072), + [aux_sym_addressof_expression_token1] = ACTIONS(9072), + [aux_sym_type_of_expression_token1] = ACTIONS(9072), + [aux_sym_unary_expression_token1] = ACTIONS(9072), + [sym_string_literal] = ACTIONS(9074), + [sym_number_literal] = ACTIONS(9074), + [aux_sym_boolean_literal_token1] = ACTIONS(9072), + [aux_sym_boolean_literal_token2] = ACTIONS(9072), + [sym_nothing_literal] = ACTIONS(9072), + [sym_null_literal] = ACTIONS(9072), + [sym_empty_literal] = ACTIONS(9072), + [sym_date_literal] = ACTIONS(9074), + [anon_sym_POUND] = ACTIONS(9072), + }, + [STATE(5276)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5276), + [sym_identifier] = ACTIONS(8287), + [sym_newline] = ACTIONS(8289), + [anon_sym_COLON] = ACTIONS(8289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8287), + [aux_sym_frm_property_statement_token1] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8287), + [anon_sym_BANG] = ACTIONS(8289), + [aux_sym__attribute_identifier_token1] = ACTIONS(8287), + [aux_sym_option_statement_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8287), + [aux_sym_preprocessor_const_token1] = ACTIONS(8287), + [sym_static_modifier] = ACTIONS(8287), + [sym__dim_keyword] = ACTIONS(8287), + [sym__redim_keyword] = ACTIONS(8287), + [aux_sym_get_accessor_token1] = ACTIONS(8287), + [aux_sym_set_accessor_token1] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(10519), + [aux_sym_const_declaration_token1] = ACTIONS(8287), + [anon_sym_LPAREN] = ACTIONS(8289), + [aux_sym_as_type_clause_token2] = ACTIONS(8287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8287), + [aux_sym_visibility_token1] = ACTIONS(8287), + [aux_sym_visibility_token2] = ACTIONS(8287), + [aux_sym_elseif_fragment_token1] = ACTIONS(8287), + [aux_sym_else_fragment_token1] = ACTIONS(8287), + [aux_sym_select_statement_token1] = ACTIONS(8287), + [aux_sym__for_header_token1] = ACTIONS(8287), + [aux_sym_do_statement_token1] = ACTIONS(8287), + [aux_sym_do_condition_token1] = ACTIONS(8287), + [aux_sym_with_statement_token1] = ACTIONS(8287), + [aux_sym_exit_statement_token1] = ACTIONS(8287), + [sym_end_statement] = ACTIONS(8289), + [aux_sym_on_goto_statement_token1] = ACTIONS(8287), + [aux_sym_on_goto_statement_token2] = ACTIONS(8287), + [aux_sym_on_error_statement_token2] = ACTIONS(8287), + [sym__ambiguous_redim_statement] = ACTIONS(8289), + [aux_sym_erase_statement_token1] = ACTIONS(8287), + [aux_sym_open_statement_token1] = ACTIONS(8287), + [aux_sym_file_mode_token2] = ACTIONS(8287), + [aux_sym_file_access_token2] = ACTIONS(8287), + [aux_sym_file_lock_token2] = ACTIONS(8287), + [aux_sym_print_statement_token1] = ACTIONS(8287), + [anon_sym_PLUS] = ACTIONS(8289), + [anon_sym_DASH] = ACTIONS(8287), + [anon_sym_QMARK] = ACTIONS(8289), + [aux_sym_close_statement_token1] = ACTIONS(8287), + [aux_sym_put_statement_token1] = ACTIONS(8287), + [aux_sym_unlock_statement_token1] = ACTIONS(8287), + [aux_sym_seek_statement_token1] = ACTIONS(8287), + [sym_reset_statement] = ACTIONS(8287), + [aux_sym_raise_event_statement_token1] = ACTIONS(8287), + [sym_stop_statement] = ACTIONS(8287), + [sym_beep_statement] = ACTIONS(8287), + [aux_sym_unload_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token2] = ACTIONS(8287), + [aux_sym_def_type_statement_token3] = ACTIONS(8287), + [aux_sym_def_type_statement_token4] = ACTIONS(8287), + [aux_sym_def_type_statement_token5] = ACTIONS(8287), + [aux_sym_def_type_statement_token6] = ACTIONS(8287), + [aux_sym_def_type_statement_token7] = ACTIONS(8287), + [aux_sym_def_type_statement_token8] = ACTIONS(8287), + [aux_sym_def_type_statement_token9] = ACTIONS(8287), + [aux_sym_def_type_statement_token10] = ACTIONS(8287), + [aux_sym_def_type_statement_token11] = ACTIONS(8287), + [aux_sym_def_type_statement_token12] = ACTIONS(8287), + [aux_sym_def_type_statement_token13] = ACTIONS(8287), + [aux_sym_def_type_statement_token14] = ACTIONS(8287), + [aux_sym_call_statement_token1] = ACTIONS(8287), + [sym__ambiguous_call_statement] = ACTIONS(8287), + [aux_sym_addressof_expression_token1] = ACTIONS(8287), + [aux_sym_type_of_expression_token1] = ACTIONS(8287), + [aux_sym_unary_expression_token1] = ACTIONS(8287), + [sym_string_literal] = ACTIONS(8289), + [sym_number_literal] = ACTIONS(8289), + [aux_sym_boolean_literal_token1] = ACTIONS(8287), + [aux_sym_boolean_literal_token2] = ACTIONS(8287), + [sym_nothing_literal] = ACTIONS(8287), + [sym_null_literal] = ACTIONS(8287), + [sym_empty_literal] = ACTIONS(8287), + [sym_date_literal] = ACTIONS(8289), + [anon_sym_POUND] = ACTIONS(8287), + }, + [STATE(5277)] = { + [aux_sym_const_declaration_repeat1] = STATE(5277), + [sym_identifier] = ACTIONS(8350), + [sym_newline] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8350), + [aux_sym_frm_property_statement_token1] = ACTIONS(8350), + [anon_sym_DOT] = ACTIONS(8350), + [anon_sym_BANG] = ACTIONS(8352), + [aux_sym__attribute_identifier_token1] = ACTIONS(8350), + [aux_sym_option_statement_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8350), + [aux_sym_preprocessor_const_token1] = ACTIONS(8350), + [sym_static_modifier] = ACTIONS(8350), + [sym__dim_keyword] = ACTIONS(8350), + [sym__redim_keyword] = ACTIONS(8350), + [aux_sym_get_accessor_token1] = ACTIONS(8350), + [aux_sym_set_accessor_token1] = ACTIONS(8350), + [anon_sym_COMMA] = ACTIONS(10522), + [aux_sym_const_declaration_token1] = ACTIONS(8350), + [anon_sym_LPAREN] = ACTIONS(8352), + [aux_sym_as_type_clause_token2] = ACTIONS(8350), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8350), + [aux_sym_visibility_token1] = ACTIONS(8350), + [aux_sym_visibility_token2] = ACTIONS(8350), + [aux_sym_elseif_fragment_token1] = ACTIONS(8350), + [aux_sym_else_fragment_token1] = ACTIONS(8350), + [aux_sym_select_statement_token1] = ACTIONS(8350), + [aux_sym__for_header_token1] = ACTIONS(8350), + [aux_sym_do_statement_token1] = ACTIONS(8350), + [aux_sym_do_condition_token1] = ACTIONS(8350), + [aux_sym_with_statement_token1] = ACTIONS(8350), + [aux_sym_exit_statement_token1] = ACTIONS(8350), + [sym_end_statement] = ACTIONS(8352), + [aux_sym_on_goto_statement_token1] = ACTIONS(8350), + [aux_sym_on_goto_statement_token2] = ACTIONS(8350), + [aux_sym_on_error_statement_token2] = ACTIONS(8350), + [sym__ambiguous_redim_statement] = ACTIONS(8352), + [aux_sym_erase_statement_token1] = ACTIONS(8350), + [aux_sym_open_statement_token1] = ACTIONS(8350), + [aux_sym_file_mode_token2] = ACTIONS(8350), + [aux_sym_file_access_token2] = ACTIONS(8350), + [aux_sym_file_lock_token2] = ACTIONS(8350), + [aux_sym_print_statement_token1] = ACTIONS(8350), + [anon_sym_PLUS] = ACTIONS(8352), + [anon_sym_DASH] = ACTIONS(8350), + [anon_sym_QMARK] = ACTIONS(8352), + [aux_sym_close_statement_token1] = ACTIONS(8350), + [aux_sym_put_statement_token1] = ACTIONS(8350), + [aux_sym_unlock_statement_token1] = ACTIONS(8350), + [aux_sym_seek_statement_token1] = ACTIONS(8350), + [sym_reset_statement] = ACTIONS(8350), + [aux_sym_raise_event_statement_token1] = ACTIONS(8350), + [sym_stop_statement] = ACTIONS(8350), + [sym_beep_statement] = ACTIONS(8350), + [aux_sym_unload_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token2] = ACTIONS(8350), + [aux_sym_def_type_statement_token3] = ACTIONS(8350), + [aux_sym_def_type_statement_token4] = ACTIONS(8350), + [aux_sym_def_type_statement_token5] = ACTIONS(8350), + [aux_sym_def_type_statement_token6] = ACTIONS(8350), + [aux_sym_def_type_statement_token7] = ACTIONS(8350), + [aux_sym_def_type_statement_token8] = ACTIONS(8350), + [aux_sym_def_type_statement_token9] = ACTIONS(8350), + [aux_sym_def_type_statement_token10] = ACTIONS(8350), + [aux_sym_def_type_statement_token11] = ACTIONS(8350), + [aux_sym_def_type_statement_token12] = ACTIONS(8350), + [aux_sym_def_type_statement_token13] = ACTIONS(8350), + [aux_sym_def_type_statement_token14] = ACTIONS(8350), + [aux_sym_call_statement_token1] = ACTIONS(8350), + [sym__ambiguous_call_statement] = ACTIONS(8350), + [aux_sym_addressof_expression_token1] = ACTIONS(8350), + [aux_sym_type_of_expression_token1] = ACTIONS(8350), + [aux_sym_unary_expression_token1] = ACTIONS(8350), + [sym_string_literal] = ACTIONS(8352), + [sym_number_literal] = ACTIONS(8352), + [aux_sym_boolean_literal_token1] = ACTIONS(8350), + [aux_sym_boolean_literal_token2] = ACTIONS(8350), + [sym_nothing_literal] = ACTIONS(8350), + [sym_null_literal] = ACTIONS(8350), + [sym_empty_literal] = ACTIONS(8350), + [sym_date_literal] = ACTIONS(8352), + [anon_sym_POUND] = ACTIONS(8350), + }, + [STATE(5278)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_statement_token2] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(5279)] = { + [sym_argument_list] = STATE(6083), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(10525), + [anon_sym_BANG] = ACTIONS(10527), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10423), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_while_statement_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(5280)] = { + [sym_identifier] = ACTIONS(5562), + [sym_newline] = ACTIONS(5558), + [anon_sym_COLON] = ACTIONS(5558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5562), + [aux_sym_frm_property_statement_token1] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(10322), + [anon_sym_BANG] = ACTIONS(10324), + [aux_sym__attribute_identifier_token1] = ACTIONS(5562), + [aux_sym_option_statement_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5562), + [aux_sym_preprocessor_const_token1] = ACTIONS(5562), + [sym_static_modifier] = ACTIONS(5562), + [sym__dim_keyword] = ACTIONS(5562), + [sym__redim_keyword] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5562), + [aux_sym_set_accessor_token1] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5558), + [aux_sym_as_type_clause_token2] = ACTIONS(5562), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5562), + [aux_sym_visibility_token1] = ACTIONS(5562), + [aux_sym_visibility_token2] = ACTIONS(5562), + [aux_sym_elseif_fragment_token1] = ACTIONS(5562), + [aux_sym_else_fragment_token1] = ACTIONS(5562), + [aux_sym_select_statement_token1] = ACTIONS(5562), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5562), + [aux_sym__for_header_token1] = ACTIONS(5562), + [aux_sym_do_statement_token1] = ACTIONS(5562), + [aux_sym_do_statement_token2] = ACTIONS(5562), + [aux_sym_do_condition_token1] = ACTIONS(5562), + [aux_sym_with_statement_token1] = ACTIONS(5562), + [aux_sym_exit_statement_token1] = ACTIONS(5562), + [sym_end_statement] = ACTIONS(5558), + [aux_sym_on_goto_statement_token1] = ACTIONS(5562), + [aux_sym_on_goto_statement_token2] = ACTIONS(5562), + [aux_sym_on_error_statement_token2] = ACTIONS(5562), + [sym__ambiguous_redim_statement] = ACTIONS(5558), + [aux_sym_erase_statement_token1] = ACTIONS(5562), + [aux_sym_open_statement_token1] = ACTIONS(5562), + [aux_sym_file_mode_token2] = ACTIONS(5562), + [aux_sym_file_access_token2] = ACTIONS(5562), + [aux_sym_file_lock_token2] = ACTIONS(5562), + [aux_sym_print_statement_token1] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5558), + [aux_sym_close_statement_token1] = ACTIONS(5562), + [aux_sym_put_statement_token1] = ACTIONS(5562), + [aux_sym_unlock_statement_token1] = ACTIONS(5562), + [aux_sym_seek_statement_token1] = ACTIONS(5562), + [sym_reset_statement] = ACTIONS(5562), + [aux_sym_raise_event_statement_token1] = ACTIONS(5562), + [sym_stop_statement] = ACTIONS(5562), + [sym_beep_statement] = ACTIONS(5562), + [aux_sym_unload_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token2] = ACTIONS(5562), + [aux_sym_def_type_statement_token3] = ACTIONS(5562), + [aux_sym_def_type_statement_token4] = ACTIONS(5562), + [aux_sym_def_type_statement_token5] = ACTIONS(5562), + [aux_sym_def_type_statement_token6] = ACTIONS(5562), + [aux_sym_def_type_statement_token7] = ACTIONS(5562), + [aux_sym_def_type_statement_token8] = ACTIONS(5562), + [aux_sym_def_type_statement_token9] = ACTIONS(5562), + [aux_sym_def_type_statement_token10] = ACTIONS(5562), + [aux_sym_def_type_statement_token11] = ACTIONS(5562), + [aux_sym_def_type_statement_token12] = ACTIONS(5562), + [aux_sym_def_type_statement_token13] = ACTIONS(5562), + [aux_sym_def_type_statement_token14] = ACTIONS(5562), + [aux_sym_call_statement_token1] = ACTIONS(5562), + [sym__ambiguous_call_statement] = ACTIONS(5562), + [aux_sym_addressof_expression_token1] = ACTIONS(5562), + [aux_sym_type_of_expression_token1] = ACTIONS(5562), + [aux_sym_unary_expression_token1] = ACTIONS(5562), + [sym_string_literal] = ACTIONS(5558), + [sym_number_literal] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5562), + [aux_sym_boolean_literal_token2] = ACTIONS(5562), + [sym_nothing_literal] = ACTIONS(5562), + [sym_null_literal] = ACTIONS(5562), + [sym_empty_literal] = ACTIONS(5562), + [sym_date_literal] = ACTIONS(5558), + [anon_sym_POUND] = ACTIONS(5562), + }, + [STATE(5281)] = { + [sym_argument_list] = STATE(6181), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7836), + [anon_sym_BANG] = ACTIONS(4034), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10529), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym_select_statement_token2] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(5282)] = { + [sym__required_file_number] = STATE(6005), + [sym_file_number_literal] = STATE(6000), + [sym_identifier] = ACTIONS(8312), + [sym_newline] = ACTIONS(8314), + [anon_sym_COLON] = ACTIONS(8314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8312), + [aux_sym_frm_property_statement_token1] = ACTIONS(8312), + [anon_sym_DOT] = ACTIONS(8312), + [anon_sym_BANG] = ACTIONS(8314), + [aux_sym__attribute_identifier_token1] = ACTIONS(8312), + [aux_sym_option_statement_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8312), + [aux_sym_preprocessor_const_token1] = ACTIONS(8312), + [sym_static_modifier] = ACTIONS(8312), + [sym__dim_keyword] = ACTIONS(8312), + [sym__redim_keyword] = ACTIONS(8312), + [aux_sym_get_accessor_token1] = ACTIONS(8312), + [aux_sym_set_accessor_token1] = ACTIONS(8312), + [aux_sym_const_declaration_token1] = ACTIONS(8312), + [anon_sym_LPAREN] = ACTIONS(8314), + [aux_sym_as_type_clause_token2] = ACTIONS(8312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8312), + [aux_sym_visibility_token1] = ACTIONS(8312), + [aux_sym_visibility_token2] = ACTIONS(8312), + [aux_sym_elseif_fragment_token1] = ACTIONS(8312), + [aux_sym_else_fragment_token1] = ACTIONS(8312), + [aux_sym_select_statement_token1] = ACTIONS(8312), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8312), + [aux_sym__for_header_token1] = ACTIONS(8312), + [aux_sym_do_statement_token1] = ACTIONS(8312), + [aux_sym_do_condition_token1] = ACTIONS(8312), + [aux_sym_with_statement_token1] = ACTIONS(8312), + [aux_sym_exit_statement_token1] = ACTIONS(8312), + [sym_end_statement] = ACTIONS(8314), + [aux_sym_on_goto_statement_token1] = ACTIONS(8312), + [aux_sym_on_goto_statement_token2] = ACTIONS(8312), + [aux_sym_on_error_statement_token2] = ACTIONS(8312), + [sym__ambiguous_redim_statement] = ACTIONS(8314), + [aux_sym_erase_statement_token1] = ACTIONS(8312), + [aux_sym_open_statement_token1] = ACTIONS(8312), + [aux_sym_file_mode_token2] = ACTIONS(8312), + [aux_sym_file_access_token2] = ACTIONS(8312), + [aux_sym_file_lock_token2] = ACTIONS(8312), + [aux_sym_print_statement_token1] = ACTIONS(8312), + [anon_sym_PLUS] = ACTIONS(8314), + [anon_sym_DASH] = ACTIONS(8312), + [anon_sym_QMARK] = ACTIONS(8314), + [aux_sym_close_statement_token1] = ACTIONS(8312), + [aux_sym_put_statement_token1] = ACTIONS(8312), + [aux_sym_unlock_statement_token1] = ACTIONS(8312), + [aux_sym_seek_statement_token1] = ACTIONS(8312), + [sym_reset_statement] = ACTIONS(8312), + [aux_sym_raise_event_statement_token1] = ACTIONS(8312), + [sym_stop_statement] = ACTIONS(8312), + [sym_beep_statement] = ACTIONS(8312), + [aux_sym_unload_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token2] = ACTIONS(8312), + [aux_sym_def_type_statement_token3] = ACTIONS(8312), + [aux_sym_def_type_statement_token4] = ACTIONS(8312), + [aux_sym_def_type_statement_token5] = ACTIONS(8312), + [aux_sym_def_type_statement_token6] = ACTIONS(8312), + [aux_sym_def_type_statement_token7] = ACTIONS(8312), + [aux_sym_def_type_statement_token8] = ACTIONS(8312), + [aux_sym_def_type_statement_token9] = ACTIONS(8312), + [aux_sym_def_type_statement_token10] = ACTIONS(8312), + [aux_sym_def_type_statement_token11] = ACTIONS(8312), + [aux_sym_def_type_statement_token12] = ACTIONS(8312), + [aux_sym_def_type_statement_token13] = ACTIONS(8312), + [aux_sym_def_type_statement_token14] = ACTIONS(8312), + [aux_sym_call_statement_token1] = ACTIONS(8312), + [sym__ambiguous_call_statement] = ACTIONS(8312), + [aux_sym_addressof_expression_token1] = ACTIONS(8312), + [aux_sym_type_of_expression_token1] = ACTIONS(8312), + [aux_sym_unary_expression_token1] = ACTIONS(8312), + [sym_string_literal] = ACTIONS(8314), + [sym_number_literal] = ACTIONS(8314), + [aux_sym_boolean_literal_token1] = ACTIONS(8312), + [aux_sym_boolean_literal_token2] = ACTIONS(8312), + [sym_nothing_literal] = ACTIONS(8312), + [sym_null_literal] = ACTIONS(8312), + [sym_empty_literal] = ACTIONS(8312), + [sym_date_literal] = ACTIONS(8314), + [anon_sym_POUND] = ACTIONS(1472), + }, + [STATE(5283)] = { + [sym_do_condition] = STATE(7090), + [sym_identifier] = ACTIONS(8192), + [sym_newline] = ACTIONS(8194), + [anon_sym_COLON] = ACTIONS(8194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8192), + [aux_sym_frm_property_statement_token1] = ACTIONS(8192), + [anon_sym_DOT] = ACTIONS(8192), + [anon_sym_BANG] = ACTIONS(8194), + [aux_sym__attribute_identifier_token1] = ACTIONS(8192), + [aux_sym_option_statement_token3] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8192), + [aux_sym_preprocessor_const_token1] = ACTIONS(8192), + [sym_static_modifier] = ACTIONS(8192), + [sym__dim_keyword] = ACTIONS(8192), + [sym__redim_keyword] = ACTIONS(8192), + [aux_sym_get_accessor_token1] = ACTIONS(8192), + [aux_sym_set_accessor_token1] = ACTIONS(8192), + [aux_sym_const_declaration_token1] = ACTIONS(8192), + [anon_sym_LPAREN] = ACTIONS(8194), + [aux_sym_as_type_clause_token2] = ACTIONS(8192), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8192), + [aux_sym_visibility_token1] = ACTIONS(8192), + [aux_sym_visibility_token2] = ACTIONS(8192), + [aux_sym_elseif_fragment_token1] = ACTIONS(8192), + [aux_sym_else_fragment_token1] = ACTIONS(8192), + [aux_sym_select_statement_token1] = ACTIONS(8192), + [aux_sym__for_header_token1] = ACTIONS(8192), + [aux_sym_do_statement_token1] = ACTIONS(8192), + [aux_sym_do_statement_token2] = ACTIONS(8192), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8192), + [aux_sym_exit_statement_token1] = ACTIONS(8192), + [sym_end_statement] = ACTIONS(8194), + [aux_sym_on_goto_statement_token1] = ACTIONS(8192), + [aux_sym_on_goto_statement_token2] = ACTIONS(8192), + [aux_sym_on_error_statement_token2] = ACTIONS(8192), + [sym__ambiguous_redim_statement] = ACTIONS(8194), + [aux_sym_erase_statement_token1] = ACTIONS(8192), + [aux_sym_open_statement_token1] = ACTIONS(8192), + [aux_sym_file_mode_token2] = ACTIONS(8192), + [aux_sym_file_access_token2] = ACTIONS(8192), + [aux_sym_file_lock_token2] = ACTIONS(8192), + [aux_sym_print_statement_token1] = ACTIONS(8192), + [anon_sym_PLUS] = ACTIONS(8194), + [anon_sym_DASH] = ACTIONS(8192), + [anon_sym_QMARK] = ACTIONS(8194), + [aux_sym_close_statement_token1] = ACTIONS(8192), + [aux_sym_put_statement_token1] = ACTIONS(8192), + [aux_sym_unlock_statement_token1] = ACTIONS(8192), + [aux_sym_seek_statement_token1] = ACTIONS(8192), + [sym_reset_statement] = ACTIONS(8192), + [aux_sym_raise_event_statement_token1] = ACTIONS(8192), + [sym_stop_statement] = ACTIONS(8192), + [sym_beep_statement] = ACTIONS(8192), + [aux_sym_unload_statement_token1] = ACTIONS(8192), + [aux_sym_def_type_statement_token1] = ACTIONS(8192), + [aux_sym_def_type_statement_token2] = ACTIONS(8192), + [aux_sym_def_type_statement_token3] = ACTIONS(8192), + [aux_sym_def_type_statement_token4] = ACTIONS(8192), + [aux_sym_def_type_statement_token5] = ACTIONS(8192), + [aux_sym_def_type_statement_token6] = ACTIONS(8192), + [aux_sym_def_type_statement_token7] = ACTIONS(8192), + [aux_sym_def_type_statement_token8] = ACTIONS(8192), + [aux_sym_def_type_statement_token9] = ACTIONS(8192), + [aux_sym_def_type_statement_token10] = ACTIONS(8192), + [aux_sym_def_type_statement_token11] = ACTIONS(8192), + [aux_sym_def_type_statement_token12] = ACTIONS(8192), + [aux_sym_def_type_statement_token13] = ACTIONS(8192), + [aux_sym_def_type_statement_token14] = ACTIONS(8192), + [aux_sym_call_statement_token1] = ACTIONS(8192), + [sym__ambiguous_call_statement] = ACTIONS(8192), + [aux_sym_addressof_expression_token1] = ACTIONS(8192), + [aux_sym_type_of_expression_token1] = ACTIONS(8192), + [aux_sym_unary_expression_token1] = ACTIONS(8192), + [sym_string_literal] = ACTIONS(8194), + [sym_number_literal] = ACTIONS(8194), + [aux_sym_boolean_literal_token1] = ACTIONS(8192), + [aux_sym_boolean_literal_token2] = ACTIONS(8192), + [sym_nothing_literal] = ACTIONS(8192), + [sym_null_literal] = ACTIONS(8192), + [sym_empty_literal] = ACTIONS(8192), + [sym_date_literal] = ACTIONS(8194), + [anon_sym_POUND] = ACTIONS(8192), + }, + [STATE(5284)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5276), + [sym_identifier] = ACTIONS(8154), + [sym_newline] = ACTIONS(8156), + [anon_sym_COLON] = ACTIONS(8156), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8154), + [aux_sym_frm_property_statement_token1] = ACTIONS(8154), + [anon_sym_DOT] = ACTIONS(8154), + [anon_sym_BANG] = ACTIONS(8156), + [aux_sym__attribute_identifier_token1] = ACTIONS(8154), + [aux_sym_option_statement_token3] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8154), + [aux_sym_preprocessor_const_token1] = ACTIONS(8154), + [sym_static_modifier] = ACTIONS(8154), + [sym__dim_keyword] = ACTIONS(8154), + [sym__redim_keyword] = ACTIONS(8154), + [aux_sym_get_accessor_token1] = ACTIONS(8154), + [aux_sym_set_accessor_token1] = ACTIONS(8154), + [anon_sym_COMMA] = ACTIONS(10496), + [aux_sym_const_declaration_token1] = ACTIONS(8154), + [anon_sym_LPAREN] = ACTIONS(8156), + [aux_sym_as_type_clause_token2] = ACTIONS(8154), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8154), + [aux_sym_visibility_token1] = ACTIONS(8154), + [aux_sym_visibility_token2] = ACTIONS(8154), + [aux_sym_elseif_fragment_token1] = ACTIONS(8154), + [aux_sym_else_fragment_token1] = ACTIONS(8154), + [aux_sym_select_statement_token1] = ACTIONS(8154), + [aux_sym__for_header_token1] = ACTIONS(8154), + [aux_sym_do_statement_token1] = ACTIONS(8154), + [aux_sym_do_condition_token1] = ACTIONS(8154), + [aux_sym_with_statement_token1] = ACTIONS(8154), + [aux_sym_exit_statement_token1] = ACTIONS(8154), + [sym_end_statement] = ACTIONS(8156), + [aux_sym_on_goto_statement_token1] = ACTIONS(8154), + [aux_sym_on_goto_statement_token2] = ACTIONS(8154), + [aux_sym_on_error_statement_token2] = ACTIONS(8154), + [sym__ambiguous_redim_statement] = ACTIONS(8156), + [aux_sym_erase_statement_token1] = ACTIONS(8154), + [aux_sym_open_statement_token1] = ACTIONS(8154), + [aux_sym_file_mode_token2] = ACTIONS(8154), + [aux_sym_file_access_token2] = ACTIONS(8154), + [aux_sym_file_lock_token2] = ACTIONS(8154), + [aux_sym_print_statement_token1] = ACTIONS(8154), + [anon_sym_PLUS] = ACTIONS(8156), + [anon_sym_DASH] = ACTIONS(8154), + [anon_sym_QMARK] = ACTIONS(8156), + [aux_sym_close_statement_token1] = ACTIONS(8154), + [aux_sym_put_statement_token1] = ACTIONS(8154), + [aux_sym_unlock_statement_token1] = ACTIONS(8154), + [aux_sym_seek_statement_token1] = ACTIONS(8154), + [sym_reset_statement] = ACTIONS(8154), + [aux_sym_raise_event_statement_token1] = ACTIONS(8154), + [sym_stop_statement] = ACTIONS(8154), + [sym_beep_statement] = ACTIONS(8154), + [aux_sym_unload_statement_token1] = ACTIONS(8154), + [aux_sym_def_type_statement_token1] = ACTIONS(8154), + [aux_sym_def_type_statement_token2] = ACTIONS(8154), + [aux_sym_def_type_statement_token3] = ACTIONS(8154), + [aux_sym_def_type_statement_token4] = ACTIONS(8154), + [aux_sym_def_type_statement_token5] = ACTIONS(8154), + [aux_sym_def_type_statement_token6] = ACTIONS(8154), + [aux_sym_def_type_statement_token7] = ACTIONS(8154), + [aux_sym_def_type_statement_token8] = ACTIONS(8154), + [aux_sym_def_type_statement_token9] = ACTIONS(8154), + [aux_sym_def_type_statement_token10] = ACTIONS(8154), + [aux_sym_def_type_statement_token11] = ACTIONS(8154), + [aux_sym_def_type_statement_token12] = ACTIONS(8154), + [aux_sym_def_type_statement_token13] = ACTIONS(8154), + [aux_sym_def_type_statement_token14] = ACTIONS(8154), + [aux_sym_call_statement_token1] = ACTIONS(8154), + [sym__ambiguous_call_statement] = ACTIONS(8154), + [aux_sym_addressof_expression_token1] = ACTIONS(8154), + [aux_sym_type_of_expression_token1] = ACTIONS(8154), + [aux_sym_unary_expression_token1] = ACTIONS(8154), + [sym_string_literal] = ACTIONS(8156), + [sym_number_literal] = ACTIONS(8156), + [aux_sym_boolean_literal_token1] = ACTIONS(8154), + [aux_sym_boolean_literal_token2] = ACTIONS(8154), + [sym_nothing_literal] = ACTIONS(8154), + [sym_null_literal] = ACTIONS(8154), + [sym_empty_literal] = ACTIONS(8154), + [sym_date_literal] = ACTIONS(8156), + [anon_sym_POUND] = ACTIONS(8154), + }, + [STATE(5285)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5276), + [sym_identifier] = ACTIONS(8158), + [sym_newline] = ACTIONS(8160), + [anon_sym_COLON] = ACTIONS(8160), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8158), + [aux_sym_frm_property_statement_token1] = ACTIONS(8158), + [anon_sym_DOT] = ACTIONS(8158), + [anon_sym_BANG] = ACTIONS(8160), + [aux_sym__attribute_identifier_token1] = ACTIONS(8158), + [aux_sym_option_statement_token3] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8158), + [aux_sym_preprocessor_const_token1] = ACTIONS(8158), + [sym_static_modifier] = ACTIONS(8158), + [sym__dim_keyword] = ACTIONS(8158), + [sym__redim_keyword] = ACTIONS(8158), + [aux_sym_get_accessor_token1] = ACTIONS(8158), + [aux_sym_set_accessor_token1] = ACTIONS(8158), + [anon_sym_COMMA] = ACTIONS(10496), + [aux_sym_const_declaration_token1] = ACTIONS(8158), + [anon_sym_LPAREN] = ACTIONS(8160), + [aux_sym_as_type_clause_token2] = ACTIONS(8158), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8158), + [aux_sym_visibility_token1] = ACTIONS(8158), + [aux_sym_visibility_token2] = ACTIONS(8158), + [aux_sym_elseif_fragment_token1] = ACTIONS(8158), + [aux_sym_else_fragment_token1] = ACTIONS(8158), + [aux_sym_select_statement_token1] = ACTIONS(8158), + [aux_sym__for_header_token1] = ACTIONS(8158), + [aux_sym_do_statement_token1] = ACTIONS(8158), + [aux_sym_do_condition_token1] = ACTIONS(8158), + [aux_sym_with_statement_token1] = ACTIONS(8158), + [aux_sym_exit_statement_token1] = ACTIONS(8158), + [sym_end_statement] = ACTIONS(8160), + [aux_sym_on_goto_statement_token1] = ACTIONS(8158), + [aux_sym_on_goto_statement_token2] = ACTIONS(8158), + [aux_sym_on_error_statement_token2] = ACTIONS(8158), + [sym__ambiguous_redim_statement] = ACTIONS(8160), + [aux_sym_erase_statement_token1] = ACTIONS(8158), + [aux_sym_open_statement_token1] = ACTIONS(8158), + [aux_sym_file_mode_token2] = ACTIONS(8158), + [aux_sym_file_access_token2] = ACTIONS(8158), + [aux_sym_file_lock_token2] = ACTIONS(8158), + [aux_sym_print_statement_token1] = ACTIONS(8158), + [anon_sym_PLUS] = ACTIONS(8160), + [anon_sym_DASH] = ACTIONS(8158), + [anon_sym_QMARK] = ACTIONS(8160), + [aux_sym_close_statement_token1] = ACTIONS(8158), + [aux_sym_put_statement_token1] = ACTIONS(8158), + [aux_sym_unlock_statement_token1] = ACTIONS(8158), + [aux_sym_seek_statement_token1] = ACTIONS(8158), + [sym_reset_statement] = ACTIONS(8158), + [aux_sym_raise_event_statement_token1] = ACTIONS(8158), + [sym_stop_statement] = ACTIONS(8158), + [sym_beep_statement] = ACTIONS(8158), + [aux_sym_unload_statement_token1] = ACTIONS(8158), + [aux_sym_def_type_statement_token1] = ACTIONS(8158), + [aux_sym_def_type_statement_token2] = ACTIONS(8158), + [aux_sym_def_type_statement_token3] = ACTIONS(8158), + [aux_sym_def_type_statement_token4] = ACTIONS(8158), + [aux_sym_def_type_statement_token5] = ACTIONS(8158), + [aux_sym_def_type_statement_token6] = ACTIONS(8158), + [aux_sym_def_type_statement_token7] = ACTIONS(8158), + [aux_sym_def_type_statement_token8] = ACTIONS(8158), + [aux_sym_def_type_statement_token9] = ACTIONS(8158), + [aux_sym_def_type_statement_token10] = ACTIONS(8158), + [aux_sym_def_type_statement_token11] = ACTIONS(8158), + [aux_sym_def_type_statement_token12] = ACTIONS(8158), + [aux_sym_def_type_statement_token13] = ACTIONS(8158), + [aux_sym_def_type_statement_token14] = ACTIONS(8158), + [aux_sym_call_statement_token1] = ACTIONS(8158), + [sym__ambiguous_call_statement] = ACTIONS(8158), + [aux_sym_addressof_expression_token1] = ACTIONS(8158), + [aux_sym_type_of_expression_token1] = ACTIONS(8158), + [aux_sym_unary_expression_token1] = ACTIONS(8158), + [sym_string_literal] = ACTIONS(8160), + [sym_number_literal] = ACTIONS(8160), + [aux_sym_boolean_literal_token1] = ACTIONS(8158), + [aux_sym_boolean_literal_token2] = ACTIONS(8158), + [sym_nothing_literal] = ACTIONS(8158), + [sym_null_literal] = ACTIONS(8158), + [sym_empty_literal] = ACTIONS(8158), + [sym_date_literal] = ACTIONS(8160), + [anon_sym_POUND] = ACTIONS(8158), + }, + [STATE(5286)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5276), + [sym_identifier] = ACTIONS(8166), + [sym_newline] = ACTIONS(8168), + [anon_sym_COLON] = ACTIONS(8168), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8166), + [aux_sym_frm_property_statement_token1] = ACTIONS(8166), + [anon_sym_DOT] = ACTIONS(8166), + [anon_sym_BANG] = ACTIONS(8168), + [aux_sym__attribute_identifier_token1] = ACTIONS(8166), + [aux_sym_option_statement_token3] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8166), + [aux_sym_preprocessor_const_token1] = ACTIONS(8166), + [sym_static_modifier] = ACTIONS(8166), + [sym__dim_keyword] = ACTIONS(8166), + [sym__redim_keyword] = ACTIONS(8166), + [aux_sym_get_accessor_token1] = ACTIONS(8166), + [aux_sym_set_accessor_token1] = ACTIONS(8166), + [anon_sym_COMMA] = ACTIONS(10496), + [aux_sym_const_declaration_token1] = ACTIONS(8166), + [anon_sym_LPAREN] = ACTIONS(8168), + [aux_sym_as_type_clause_token2] = ACTIONS(8166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8166), + [aux_sym_visibility_token1] = ACTIONS(8166), + [aux_sym_visibility_token2] = ACTIONS(8166), + [aux_sym_elseif_fragment_token1] = ACTIONS(8166), + [aux_sym_else_fragment_token1] = ACTIONS(8166), + [aux_sym_select_statement_token1] = ACTIONS(8166), + [aux_sym__for_header_token1] = ACTIONS(8166), + [aux_sym_do_statement_token1] = ACTIONS(8166), + [aux_sym_do_condition_token1] = ACTIONS(8166), + [aux_sym_with_statement_token1] = ACTIONS(8166), + [aux_sym_exit_statement_token1] = ACTIONS(8166), + [sym_end_statement] = ACTIONS(8168), + [aux_sym_on_goto_statement_token1] = ACTIONS(8166), + [aux_sym_on_goto_statement_token2] = ACTIONS(8166), + [aux_sym_on_error_statement_token2] = ACTIONS(8166), + [sym__ambiguous_redim_statement] = ACTIONS(8168), + [aux_sym_erase_statement_token1] = ACTIONS(8166), + [aux_sym_open_statement_token1] = ACTIONS(8166), + [aux_sym_file_mode_token2] = ACTIONS(8166), + [aux_sym_file_access_token2] = ACTIONS(8166), + [aux_sym_file_lock_token2] = ACTIONS(8166), + [aux_sym_print_statement_token1] = ACTIONS(8166), + [anon_sym_PLUS] = ACTIONS(8168), + [anon_sym_DASH] = ACTIONS(8166), + [anon_sym_QMARK] = ACTIONS(8168), + [aux_sym_close_statement_token1] = ACTIONS(8166), + [aux_sym_put_statement_token1] = ACTIONS(8166), + [aux_sym_unlock_statement_token1] = ACTIONS(8166), + [aux_sym_seek_statement_token1] = ACTIONS(8166), + [sym_reset_statement] = ACTIONS(8166), + [aux_sym_raise_event_statement_token1] = ACTIONS(8166), + [sym_stop_statement] = ACTIONS(8166), + [sym_beep_statement] = ACTIONS(8166), + [aux_sym_unload_statement_token1] = ACTIONS(8166), + [aux_sym_def_type_statement_token1] = ACTIONS(8166), + [aux_sym_def_type_statement_token2] = ACTIONS(8166), + [aux_sym_def_type_statement_token3] = ACTIONS(8166), + [aux_sym_def_type_statement_token4] = ACTIONS(8166), + [aux_sym_def_type_statement_token5] = ACTIONS(8166), + [aux_sym_def_type_statement_token6] = ACTIONS(8166), + [aux_sym_def_type_statement_token7] = ACTIONS(8166), + [aux_sym_def_type_statement_token8] = ACTIONS(8166), + [aux_sym_def_type_statement_token9] = ACTIONS(8166), + [aux_sym_def_type_statement_token10] = ACTIONS(8166), + [aux_sym_def_type_statement_token11] = ACTIONS(8166), + [aux_sym_def_type_statement_token12] = ACTIONS(8166), + [aux_sym_def_type_statement_token13] = ACTIONS(8166), + [aux_sym_def_type_statement_token14] = ACTIONS(8166), + [aux_sym_call_statement_token1] = ACTIONS(8166), + [sym__ambiguous_call_statement] = ACTIONS(8166), + [aux_sym_addressof_expression_token1] = ACTIONS(8166), + [aux_sym_type_of_expression_token1] = ACTIONS(8166), + [aux_sym_unary_expression_token1] = ACTIONS(8166), + [sym_string_literal] = ACTIONS(8168), + [sym_number_literal] = ACTIONS(8168), + [aux_sym_boolean_literal_token1] = ACTIONS(8166), + [aux_sym_boolean_literal_token2] = ACTIONS(8166), + [sym_nothing_literal] = ACTIONS(8166), + [sym_null_literal] = ACTIONS(8166), + [sym_empty_literal] = ACTIONS(8166), + [sym_date_literal] = ACTIONS(8168), + [anon_sym_POUND] = ACTIONS(8166), + }, + [STATE(5287)] = { + [aux_sym_const_declaration_repeat1] = STATE(5277), + [sym_identifier] = ACTIONS(8174), + [sym_newline] = ACTIONS(8176), + [anon_sym_COLON] = ACTIONS(8176), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8174), + [aux_sym_frm_property_statement_token1] = ACTIONS(8174), + [anon_sym_DOT] = ACTIONS(8174), + [anon_sym_BANG] = ACTIONS(8176), + [aux_sym__attribute_identifier_token1] = ACTIONS(8174), + [aux_sym_option_statement_token3] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8174), + [aux_sym_preprocessor_const_token1] = ACTIONS(8174), + [sym_static_modifier] = ACTIONS(8174), + [sym__dim_keyword] = ACTIONS(8174), + [sym__redim_keyword] = ACTIONS(8174), + [aux_sym_get_accessor_token1] = ACTIONS(8174), + [aux_sym_set_accessor_token1] = ACTIONS(8174), + [anon_sym_COMMA] = ACTIONS(10498), + [aux_sym_const_declaration_token1] = ACTIONS(8174), + [anon_sym_LPAREN] = ACTIONS(8176), + [aux_sym_as_type_clause_token2] = ACTIONS(8174), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8174), + [aux_sym_visibility_token1] = ACTIONS(8174), + [aux_sym_visibility_token2] = ACTIONS(8174), + [aux_sym_elseif_fragment_token1] = ACTIONS(8174), + [aux_sym_else_fragment_token1] = ACTIONS(8174), + [aux_sym_select_statement_token1] = ACTIONS(8174), + [aux_sym__for_header_token1] = ACTIONS(8174), + [aux_sym_do_statement_token1] = ACTIONS(8174), + [aux_sym_do_condition_token1] = ACTIONS(8174), + [aux_sym_with_statement_token1] = ACTIONS(8174), + [aux_sym_exit_statement_token1] = ACTIONS(8174), + [sym_end_statement] = ACTIONS(8176), + [aux_sym_on_goto_statement_token1] = ACTIONS(8174), + [aux_sym_on_goto_statement_token2] = ACTIONS(8174), + [aux_sym_on_error_statement_token2] = ACTIONS(8174), + [sym__ambiguous_redim_statement] = ACTIONS(8176), + [aux_sym_erase_statement_token1] = ACTIONS(8174), + [aux_sym_open_statement_token1] = ACTIONS(8174), + [aux_sym_file_mode_token2] = ACTIONS(8174), + [aux_sym_file_access_token2] = ACTIONS(8174), + [aux_sym_file_lock_token2] = ACTIONS(8174), + [aux_sym_print_statement_token1] = ACTIONS(8174), + [anon_sym_PLUS] = ACTIONS(8176), + [anon_sym_DASH] = ACTIONS(8174), + [anon_sym_QMARK] = ACTIONS(8176), + [aux_sym_close_statement_token1] = ACTIONS(8174), + [aux_sym_put_statement_token1] = ACTIONS(8174), + [aux_sym_unlock_statement_token1] = ACTIONS(8174), + [aux_sym_seek_statement_token1] = ACTIONS(8174), + [sym_reset_statement] = ACTIONS(8174), + [aux_sym_raise_event_statement_token1] = ACTIONS(8174), + [sym_stop_statement] = ACTIONS(8174), + [sym_beep_statement] = ACTIONS(8174), + [aux_sym_unload_statement_token1] = ACTIONS(8174), + [aux_sym_def_type_statement_token1] = ACTIONS(8174), + [aux_sym_def_type_statement_token2] = ACTIONS(8174), + [aux_sym_def_type_statement_token3] = ACTIONS(8174), + [aux_sym_def_type_statement_token4] = ACTIONS(8174), + [aux_sym_def_type_statement_token5] = ACTIONS(8174), + [aux_sym_def_type_statement_token6] = ACTIONS(8174), + [aux_sym_def_type_statement_token7] = ACTIONS(8174), + [aux_sym_def_type_statement_token8] = ACTIONS(8174), + [aux_sym_def_type_statement_token9] = ACTIONS(8174), + [aux_sym_def_type_statement_token10] = ACTIONS(8174), + [aux_sym_def_type_statement_token11] = ACTIONS(8174), + [aux_sym_def_type_statement_token12] = ACTIONS(8174), + [aux_sym_def_type_statement_token13] = ACTIONS(8174), + [aux_sym_def_type_statement_token14] = ACTIONS(8174), + [aux_sym_call_statement_token1] = ACTIONS(8174), + [sym__ambiguous_call_statement] = ACTIONS(8174), + [aux_sym_addressof_expression_token1] = ACTIONS(8174), + [aux_sym_type_of_expression_token1] = ACTIONS(8174), + [aux_sym_unary_expression_token1] = ACTIONS(8174), + [sym_string_literal] = ACTIONS(8176), + [sym_number_literal] = ACTIONS(8176), + [aux_sym_boolean_literal_token1] = ACTIONS(8174), + [aux_sym_boolean_literal_token2] = ACTIONS(8174), + [sym_nothing_literal] = ACTIONS(8174), + [sym_null_literal] = ACTIONS(8174), + [sym_empty_literal] = ACTIONS(8174), + [sym_date_literal] = ACTIONS(8176), + [anon_sym_POUND] = ACTIONS(8174), + }, + [STATE(5288)] = { + [sym_do_condition] = STATE(7109), + [sym_identifier] = ACTIONS(8203), + [sym_newline] = ACTIONS(8205), + [anon_sym_COLON] = ACTIONS(8205), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8203), + [aux_sym_frm_property_statement_token1] = ACTIONS(8203), + [anon_sym_DOT] = ACTIONS(8203), + [anon_sym_BANG] = ACTIONS(8205), + [aux_sym__attribute_identifier_token1] = ACTIONS(8203), + [aux_sym_option_statement_token3] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8203), + [aux_sym_preprocessor_const_token1] = ACTIONS(8203), + [sym_static_modifier] = ACTIONS(8203), + [sym__dim_keyword] = ACTIONS(8203), + [sym__redim_keyword] = ACTIONS(8203), + [aux_sym_get_accessor_token1] = ACTIONS(8203), + [aux_sym_set_accessor_token1] = ACTIONS(8203), + [aux_sym_const_declaration_token1] = ACTIONS(8203), + [anon_sym_LPAREN] = ACTIONS(8205), + [aux_sym_as_type_clause_token2] = ACTIONS(8203), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8203), + [aux_sym_visibility_token1] = ACTIONS(8203), + [aux_sym_visibility_token2] = ACTIONS(8203), + [aux_sym_elseif_fragment_token1] = ACTIONS(8203), + [aux_sym_else_fragment_token1] = ACTIONS(8203), + [aux_sym_select_statement_token1] = ACTIONS(8203), + [aux_sym__for_header_token1] = ACTIONS(8203), + [aux_sym_do_statement_token1] = ACTIONS(8203), + [aux_sym_do_statement_token2] = ACTIONS(8203), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8203), + [aux_sym_exit_statement_token1] = ACTIONS(8203), + [sym_end_statement] = ACTIONS(8205), + [aux_sym_on_goto_statement_token1] = ACTIONS(8203), + [aux_sym_on_goto_statement_token2] = ACTIONS(8203), + [aux_sym_on_error_statement_token2] = ACTIONS(8203), + [sym__ambiguous_redim_statement] = ACTIONS(8205), + [aux_sym_erase_statement_token1] = ACTIONS(8203), + [aux_sym_open_statement_token1] = ACTIONS(8203), + [aux_sym_file_mode_token2] = ACTIONS(8203), + [aux_sym_file_access_token2] = ACTIONS(8203), + [aux_sym_file_lock_token2] = ACTIONS(8203), + [aux_sym_print_statement_token1] = ACTIONS(8203), + [anon_sym_PLUS] = ACTIONS(8205), + [anon_sym_DASH] = ACTIONS(8203), + [anon_sym_QMARK] = ACTIONS(8205), + [aux_sym_close_statement_token1] = ACTIONS(8203), + [aux_sym_put_statement_token1] = ACTIONS(8203), + [aux_sym_unlock_statement_token1] = ACTIONS(8203), + [aux_sym_seek_statement_token1] = ACTIONS(8203), + [sym_reset_statement] = ACTIONS(8203), + [aux_sym_raise_event_statement_token1] = ACTIONS(8203), + [sym_stop_statement] = ACTIONS(8203), + [sym_beep_statement] = ACTIONS(8203), + [aux_sym_unload_statement_token1] = ACTIONS(8203), + [aux_sym_def_type_statement_token1] = ACTIONS(8203), + [aux_sym_def_type_statement_token2] = ACTIONS(8203), + [aux_sym_def_type_statement_token3] = ACTIONS(8203), + [aux_sym_def_type_statement_token4] = ACTIONS(8203), + [aux_sym_def_type_statement_token5] = ACTIONS(8203), + [aux_sym_def_type_statement_token6] = ACTIONS(8203), + [aux_sym_def_type_statement_token7] = ACTIONS(8203), + [aux_sym_def_type_statement_token8] = ACTIONS(8203), + [aux_sym_def_type_statement_token9] = ACTIONS(8203), + [aux_sym_def_type_statement_token10] = ACTIONS(8203), + [aux_sym_def_type_statement_token11] = ACTIONS(8203), + [aux_sym_def_type_statement_token12] = ACTIONS(8203), + [aux_sym_def_type_statement_token13] = ACTIONS(8203), + [aux_sym_def_type_statement_token14] = ACTIONS(8203), + [aux_sym_call_statement_token1] = ACTIONS(8203), + [sym__ambiguous_call_statement] = ACTIONS(8203), + [aux_sym_addressof_expression_token1] = ACTIONS(8203), + [aux_sym_type_of_expression_token1] = ACTIONS(8203), + [aux_sym_unary_expression_token1] = ACTIONS(8203), + [sym_string_literal] = ACTIONS(8205), + [sym_number_literal] = ACTIONS(8205), + [aux_sym_boolean_literal_token1] = ACTIONS(8203), + [aux_sym_boolean_literal_token2] = ACTIONS(8203), + [sym_nothing_literal] = ACTIONS(8203), + [sym_null_literal] = ACTIONS(8203), + [sym_empty_literal] = ACTIONS(8203), + [sym_date_literal] = ACTIONS(8205), + [anon_sym_POUND] = ACTIONS(8203), + }, + [STATE(5289)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5289), + [sym_identifier] = ACTIONS(8196), + [sym_newline] = ACTIONS(8198), + [anon_sym_COLON] = ACTIONS(8198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8196), + [aux_sym_frm_property_statement_token1] = ACTIONS(8196), + [anon_sym_DOT] = ACTIONS(8196), + [anon_sym_BANG] = ACTIONS(8198), + [aux_sym__attribute_identifier_token1] = ACTIONS(8196), + [aux_sym_option_statement_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8196), + [aux_sym_preprocessor_const_token1] = ACTIONS(8196), + [sym_static_modifier] = ACTIONS(8196), + [sym__dim_keyword] = ACTIONS(8196), + [sym__redim_keyword] = ACTIONS(8196), + [aux_sym_get_accessor_token1] = ACTIONS(8196), + [aux_sym_set_accessor_token1] = ACTIONS(8196), + [anon_sym_COMMA] = ACTIONS(10531), + [aux_sym_const_declaration_token1] = ACTIONS(8196), + [anon_sym_LPAREN] = ACTIONS(8198), + [aux_sym_as_type_clause_token2] = ACTIONS(8196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8196), + [aux_sym_visibility_token1] = ACTIONS(8196), + [aux_sym_visibility_token2] = ACTIONS(8196), + [aux_sym_elseif_fragment_token1] = ACTIONS(8196), + [aux_sym_else_fragment_token1] = ACTIONS(8196), + [aux_sym_select_statement_token1] = ACTIONS(8196), + [aux_sym_select_statement_token2] = ACTIONS(8196), + [aux_sym__for_header_token1] = ACTIONS(8196), + [aux_sym_do_statement_token1] = ACTIONS(8196), + [aux_sym_do_condition_token1] = ACTIONS(8196), + [aux_sym_with_statement_token1] = ACTIONS(8196), + [aux_sym_exit_statement_token1] = ACTIONS(8196), + [sym_end_statement] = ACTIONS(8198), + [aux_sym_on_goto_statement_token1] = ACTIONS(8196), + [aux_sym_on_goto_statement_token2] = ACTIONS(8196), + [aux_sym_on_error_statement_token2] = ACTIONS(8196), + [sym__ambiguous_redim_statement] = ACTIONS(8198), + [aux_sym_erase_statement_token1] = ACTIONS(8196), + [aux_sym_open_statement_token1] = ACTIONS(8196), + [aux_sym_file_mode_token2] = ACTIONS(8196), + [aux_sym_file_access_token2] = ACTIONS(8196), + [aux_sym_file_lock_token2] = ACTIONS(8196), + [aux_sym_print_statement_token1] = ACTIONS(8196), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(8196), + [anon_sym_QMARK] = ACTIONS(8198), + [aux_sym_close_statement_token1] = ACTIONS(8196), + [aux_sym_put_statement_token1] = ACTIONS(8196), + [aux_sym_unlock_statement_token1] = ACTIONS(8196), + [aux_sym_seek_statement_token1] = ACTIONS(8196), + [sym_reset_statement] = ACTIONS(8196), + [aux_sym_raise_event_statement_token1] = ACTIONS(8196), + [sym_stop_statement] = ACTIONS(8196), + [sym_beep_statement] = ACTIONS(8196), + [aux_sym_unload_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token2] = ACTIONS(8196), + [aux_sym_def_type_statement_token3] = ACTIONS(8196), + [aux_sym_def_type_statement_token4] = ACTIONS(8196), + [aux_sym_def_type_statement_token5] = ACTIONS(8196), + [aux_sym_def_type_statement_token6] = ACTIONS(8196), + [aux_sym_def_type_statement_token7] = ACTIONS(8196), + [aux_sym_def_type_statement_token8] = ACTIONS(8196), + [aux_sym_def_type_statement_token9] = ACTIONS(8196), + [aux_sym_def_type_statement_token10] = ACTIONS(8196), + [aux_sym_def_type_statement_token11] = ACTIONS(8196), + [aux_sym_def_type_statement_token12] = ACTIONS(8196), + [aux_sym_def_type_statement_token13] = ACTIONS(8196), + [aux_sym_def_type_statement_token14] = ACTIONS(8196), + [aux_sym_call_statement_token1] = ACTIONS(8196), + [sym__ambiguous_call_statement] = ACTIONS(8196), + [aux_sym_addressof_expression_token1] = ACTIONS(8196), + [aux_sym_type_of_expression_token1] = ACTIONS(8196), + [aux_sym_unary_expression_token1] = ACTIONS(8196), + [sym_string_literal] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8198), + [aux_sym_boolean_literal_token1] = ACTIONS(8196), + [aux_sym_boolean_literal_token2] = ACTIONS(8196), + [sym_nothing_literal] = ACTIONS(8196), + [sym_null_literal] = ACTIONS(8196), + [sym_empty_literal] = ACTIONS(8196), + [sym_date_literal] = ACTIONS(8198), + [anon_sym_POUND] = ACTIONS(8196), + }, + [STATE(5290)] = { + [sym_argument_list] = STATE(10051), + [sym_identifier] = ACTIONS(8393), + [sym_newline] = ACTIONS(8395), + [anon_sym_COLON] = ACTIONS(8395), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8393), + [aux_sym_frm_property_statement_token1] = ACTIONS(8393), + [anon_sym_DOT] = ACTIONS(8393), + [anon_sym_BANG] = ACTIONS(8395), + [aux_sym__attribute_identifier_token1] = ACTIONS(8393), + [aux_sym_option_statement_token3] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8393), + [aux_sym_preprocessor_const_token1] = ACTIONS(8393), + [sym_static_modifier] = ACTIONS(8393), + [sym__dim_keyword] = ACTIONS(8393), + [sym__redim_keyword] = ACTIONS(8393), + [aux_sym_get_accessor_token1] = ACTIONS(8393), + [aux_sym_set_accessor_token1] = ACTIONS(8393), + [anon_sym_COMMA] = ACTIONS(8395), + [aux_sym_const_declaration_token1] = ACTIONS(8393), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(8393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8393), + [aux_sym_visibility_token1] = ACTIONS(8393), + [aux_sym_visibility_token2] = ACTIONS(8393), + [aux_sym_elseif_fragment_token1] = ACTIONS(8393), + [aux_sym_else_fragment_token1] = ACTIONS(8393), + [aux_sym_select_statement_token1] = ACTIONS(8393), + [aux_sym_select_statement_token2] = ACTIONS(8393), + [aux_sym__for_header_token1] = ACTIONS(8393), + [aux_sym_do_statement_token1] = ACTIONS(8393), + [aux_sym_do_condition_token1] = ACTIONS(8393), + [aux_sym_with_statement_token1] = ACTIONS(8393), + [aux_sym_exit_statement_token1] = ACTIONS(8393), + [sym_end_statement] = ACTIONS(8395), + [aux_sym_on_goto_statement_token1] = ACTIONS(8393), + [aux_sym_on_goto_statement_token2] = ACTIONS(8393), + [aux_sym_on_error_statement_token2] = ACTIONS(8393), + [sym__ambiguous_redim_statement] = ACTIONS(8395), + [aux_sym_erase_statement_token1] = ACTIONS(8393), + [aux_sym_open_statement_token1] = ACTIONS(8393), + [aux_sym_file_mode_token2] = ACTIONS(8393), + [aux_sym_file_access_token2] = ACTIONS(8393), + [aux_sym_file_lock_token2] = ACTIONS(8393), + [aux_sym_print_statement_token1] = ACTIONS(8393), + [anon_sym_PLUS] = ACTIONS(8395), + [anon_sym_DASH] = ACTIONS(8393), + [anon_sym_QMARK] = ACTIONS(8395), + [aux_sym_close_statement_token1] = ACTIONS(8393), + [aux_sym_put_statement_token1] = ACTIONS(8393), + [aux_sym_unlock_statement_token1] = ACTIONS(8393), + [aux_sym_seek_statement_token1] = ACTIONS(8393), + [sym_reset_statement] = ACTIONS(8393), + [aux_sym_raise_event_statement_token1] = ACTIONS(8393), + [sym_stop_statement] = ACTIONS(8393), + [sym_beep_statement] = ACTIONS(8393), + [aux_sym_unload_statement_token1] = ACTIONS(8393), + [aux_sym_def_type_statement_token1] = ACTIONS(8393), + [aux_sym_def_type_statement_token2] = ACTIONS(8393), + [aux_sym_def_type_statement_token3] = ACTIONS(8393), + [aux_sym_def_type_statement_token4] = ACTIONS(8393), + [aux_sym_def_type_statement_token5] = ACTIONS(8393), + [aux_sym_def_type_statement_token6] = ACTIONS(8393), + [aux_sym_def_type_statement_token7] = ACTIONS(8393), + [aux_sym_def_type_statement_token8] = ACTIONS(8393), + [aux_sym_def_type_statement_token9] = ACTIONS(8393), + [aux_sym_def_type_statement_token10] = ACTIONS(8393), + [aux_sym_def_type_statement_token11] = ACTIONS(8393), + [aux_sym_def_type_statement_token12] = ACTIONS(8393), + [aux_sym_def_type_statement_token13] = ACTIONS(8393), + [aux_sym_def_type_statement_token14] = ACTIONS(8393), + [aux_sym_call_statement_token1] = ACTIONS(8393), + [sym__ambiguous_call_statement] = ACTIONS(8393), + [aux_sym_addressof_expression_token1] = ACTIONS(8393), + [aux_sym_type_of_expression_token1] = ACTIONS(8393), + [aux_sym_unary_expression_token1] = ACTIONS(8393), + [sym_string_literal] = ACTIONS(8395), + [sym_number_literal] = ACTIONS(8395), + [aux_sym_boolean_literal_token1] = ACTIONS(8393), + [aux_sym_boolean_literal_token2] = ACTIONS(8393), + [sym_nothing_literal] = ACTIONS(8393), + [sym_null_literal] = ACTIONS(8393), + [sym_empty_literal] = ACTIONS(8393), + [sym_date_literal] = ACTIONS(8395), + [anon_sym_POUND] = ACTIONS(8393), + }, + [STATE(5291)] = { + [sym_do_condition] = STATE(7115), + [sym_identifier] = ACTIONS(8213), + [sym_newline] = ACTIONS(8215), + [anon_sym_COLON] = ACTIONS(8215), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8213), + [aux_sym_frm_property_statement_token1] = ACTIONS(8213), + [anon_sym_DOT] = ACTIONS(8213), + [anon_sym_BANG] = ACTIONS(8215), + [aux_sym__attribute_identifier_token1] = ACTIONS(8213), + [aux_sym_option_statement_token3] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8213), + [aux_sym_preprocessor_const_token1] = ACTIONS(8213), + [sym_static_modifier] = ACTIONS(8213), + [sym__dim_keyword] = ACTIONS(8213), + [sym__redim_keyword] = ACTIONS(8213), + [aux_sym_get_accessor_token1] = ACTIONS(8213), + [aux_sym_set_accessor_token1] = ACTIONS(8213), + [aux_sym_const_declaration_token1] = ACTIONS(8213), + [anon_sym_LPAREN] = ACTIONS(8215), + [aux_sym_as_type_clause_token2] = ACTIONS(8213), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8213), + [aux_sym_visibility_token1] = ACTIONS(8213), + [aux_sym_visibility_token2] = ACTIONS(8213), + [aux_sym_elseif_fragment_token1] = ACTIONS(8213), + [aux_sym_else_fragment_token1] = ACTIONS(8213), + [aux_sym_select_statement_token1] = ACTIONS(8213), + [aux_sym__for_header_token1] = ACTIONS(8213), + [aux_sym_do_statement_token1] = ACTIONS(8213), + [aux_sym_do_statement_token2] = ACTIONS(8213), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8213), + [aux_sym_exit_statement_token1] = ACTIONS(8213), + [sym_end_statement] = ACTIONS(8215), + [aux_sym_on_goto_statement_token1] = ACTIONS(8213), + [aux_sym_on_goto_statement_token2] = ACTIONS(8213), + [aux_sym_on_error_statement_token2] = ACTIONS(8213), + [sym__ambiguous_redim_statement] = ACTIONS(8215), + [aux_sym_erase_statement_token1] = ACTIONS(8213), + [aux_sym_open_statement_token1] = ACTIONS(8213), + [aux_sym_file_mode_token2] = ACTIONS(8213), + [aux_sym_file_access_token2] = ACTIONS(8213), + [aux_sym_file_lock_token2] = ACTIONS(8213), + [aux_sym_print_statement_token1] = ACTIONS(8213), + [anon_sym_PLUS] = ACTIONS(8215), + [anon_sym_DASH] = ACTIONS(8213), + [anon_sym_QMARK] = ACTIONS(8215), + [aux_sym_close_statement_token1] = ACTIONS(8213), + [aux_sym_put_statement_token1] = ACTIONS(8213), + [aux_sym_unlock_statement_token1] = ACTIONS(8213), + [aux_sym_seek_statement_token1] = ACTIONS(8213), + [sym_reset_statement] = ACTIONS(8213), + [aux_sym_raise_event_statement_token1] = ACTIONS(8213), + [sym_stop_statement] = ACTIONS(8213), + [sym_beep_statement] = ACTIONS(8213), + [aux_sym_unload_statement_token1] = ACTIONS(8213), + [aux_sym_def_type_statement_token1] = ACTIONS(8213), + [aux_sym_def_type_statement_token2] = ACTIONS(8213), + [aux_sym_def_type_statement_token3] = ACTIONS(8213), + [aux_sym_def_type_statement_token4] = ACTIONS(8213), + [aux_sym_def_type_statement_token5] = ACTIONS(8213), + [aux_sym_def_type_statement_token6] = ACTIONS(8213), + [aux_sym_def_type_statement_token7] = ACTIONS(8213), + [aux_sym_def_type_statement_token8] = ACTIONS(8213), + [aux_sym_def_type_statement_token9] = ACTIONS(8213), + [aux_sym_def_type_statement_token10] = ACTIONS(8213), + [aux_sym_def_type_statement_token11] = ACTIONS(8213), + [aux_sym_def_type_statement_token12] = ACTIONS(8213), + [aux_sym_def_type_statement_token13] = ACTIONS(8213), + [aux_sym_def_type_statement_token14] = ACTIONS(8213), + [aux_sym_call_statement_token1] = ACTIONS(8213), + [sym__ambiguous_call_statement] = ACTIONS(8213), + [aux_sym_addressof_expression_token1] = ACTIONS(8213), + [aux_sym_type_of_expression_token1] = ACTIONS(8213), + [aux_sym_unary_expression_token1] = ACTIONS(8213), + [sym_string_literal] = ACTIONS(8215), + [sym_number_literal] = ACTIONS(8215), + [aux_sym_boolean_literal_token1] = ACTIONS(8213), + [aux_sym_boolean_literal_token2] = ACTIONS(8213), + [sym_nothing_literal] = ACTIONS(8213), + [sym_null_literal] = ACTIONS(8213), + [sym_empty_literal] = ACTIONS(8213), + [sym_date_literal] = ACTIONS(8215), + [anon_sym_POUND] = ACTIONS(8213), + }, + [STATE(5292)] = { + [sym_do_condition] = STATE(6291), + [sym_identifier] = ACTIONS(8217), + [sym_newline] = ACTIONS(8219), + [anon_sym_COLON] = ACTIONS(8219), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8217), + [aux_sym_frm_property_statement_token1] = ACTIONS(8217), + [anon_sym_DOT] = ACTIONS(8217), + [anon_sym_BANG] = ACTIONS(8219), + [aux_sym__attribute_identifier_token1] = ACTIONS(8217), + [aux_sym_option_statement_token3] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8217), + [aux_sym_preprocessor_const_token1] = ACTIONS(8217), + [sym_static_modifier] = ACTIONS(8217), + [sym__dim_keyword] = ACTIONS(8217), + [sym__redim_keyword] = ACTIONS(8217), + [aux_sym_get_accessor_token1] = ACTIONS(8217), + [aux_sym_set_accessor_token1] = ACTIONS(8217), + [aux_sym_const_declaration_token1] = ACTIONS(8217), + [anon_sym_LPAREN] = ACTIONS(8219), + [aux_sym_as_type_clause_token2] = ACTIONS(8217), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8217), + [aux_sym_visibility_token1] = ACTIONS(8217), + [aux_sym_visibility_token2] = ACTIONS(8217), + [aux_sym_elseif_fragment_token1] = ACTIONS(8217), + [aux_sym_else_fragment_token1] = ACTIONS(8217), + [aux_sym_select_statement_token1] = ACTIONS(8217), + [aux_sym__for_header_token1] = ACTIONS(8217), + [aux_sym_do_statement_token1] = ACTIONS(8217), + [aux_sym_do_statement_token2] = ACTIONS(8217), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8217), + [aux_sym_exit_statement_token1] = ACTIONS(8217), + [sym_end_statement] = ACTIONS(8219), + [aux_sym_on_goto_statement_token1] = ACTIONS(8217), + [aux_sym_on_goto_statement_token2] = ACTIONS(8217), + [aux_sym_on_error_statement_token2] = ACTIONS(8217), + [sym__ambiguous_redim_statement] = ACTIONS(8219), + [aux_sym_erase_statement_token1] = ACTIONS(8217), + [aux_sym_open_statement_token1] = ACTIONS(8217), + [aux_sym_file_mode_token2] = ACTIONS(8217), + [aux_sym_file_access_token2] = ACTIONS(8217), + [aux_sym_file_lock_token2] = ACTIONS(8217), + [aux_sym_print_statement_token1] = ACTIONS(8217), + [anon_sym_PLUS] = ACTIONS(8219), + [anon_sym_DASH] = ACTIONS(8217), + [anon_sym_QMARK] = ACTIONS(8219), + [aux_sym_close_statement_token1] = ACTIONS(8217), + [aux_sym_put_statement_token1] = ACTIONS(8217), + [aux_sym_unlock_statement_token1] = ACTIONS(8217), + [aux_sym_seek_statement_token1] = ACTIONS(8217), + [sym_reset_statement] = ACTIONS(8217), + [aux_sym_raise_event_statement_token1] = ACTIONS(8217), + [sym_stop_statement] = ACTIONS(8217), + [sym_beep_statement] = ACTIONS(8217), + [aux_sym_unload_statement_token1] = ACTIONS(8217), + [aux_sym_def_type_statement_token1] = ACTIONS(8217), + [aux_sym_def_type_statement_token2] = ACTIONS(8217), + [aux_sym_def_type_statement_token3] = ACTIONS(8217), + [aux_sym_def_type_statement_token4] = ACTIONS(8217), + [aux_sym_def_type_statement_token5] = ACTIONS(8217), + [aux_sym_def_type_statement_token6] = ACTIONS(8217), + [aux_sym_def_type_statement_token7] = ACTIONS(8217), + [aux_sym_def_type_statement_token8] = ACTIONS(8217), + [aux_sym_def_type_statement_token9] = ACTIONS(8217), + [aux_sym_def_type_statement_token10] = ACTIONS(8217), + [aux_sym_def_type_statement_token11] = ACTIONS(8217), + [aux_sym_def_type_statement_token12] = ACTIONS(8217), + [aux_sym_def_type_statement_token13] = ACTIONS(8217), + [aux_sym_def_type_statement_token14] = ACTIONS(8217), + [aux_sym_call_statement_token1] = ACTIONS(8217), + [sym__ambiguous_call_statement] = ACTIONS(8217), + [aux_sym_addressof_expression_token1] = ACTIONS(8217), + [aux_sym_type_of_expression_token1] = ACTIONS(8217), + [aux_sym_unary_expression_token1] = ACTIONS(8217), + [sym_string_literal] = ACTIONS(8219), + [sym_number_literal] = ACTIONS(8219), + [aux_sym_boolean_literal_token1] = ACTIONS(8217), + [aux_sym_boolean_literal_token2] = ACTIONS(8217), + [sym_nothing_literal] = ACTIONS(8217), + [sym_null_literal] = ACTIONS(8217), + [sym_empty_literal] = ACTIONS(8217), + [sym_date_literal] = ACTIONS(8219), + [anon_sym_POUND] = ACTIONS(8217), + }, + [STATE(5293)] = { + [sym_identifier] = ACTIONS(8312), + [sym_newline] = ACTIONS(8314), + [anon_sym_COLON] = ACTIONS(8314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8312), + [aux_sym_frm_property_statement_token1] = ACTIONS(8312), + [anon_sym_DOT] = ACTIONS(8312), + [anon_sym_BANG] = ACTIONS(8314), + [aux_sym__attribute_identifier_token1] = ACTIONS(8312), + [aux_sym_option_statement_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8312), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8312), + [aux_sym_preprocessor_const_token1] = ACTIONS(8312), + [sym_static_modifier] = ACTIONS(8312), + [sym__dim_keyword] = ACTIONS(8312), + [sym__redim_keyword] = ACTIONS(8312), + [aux_sym_get_accessor_token1] = ACTIONS(8312), + [aux_sym_set_accessor_token1] = ACTIONS(8312), + [aux_sym_const_declaration_token1] = ACTIONS(8312), + [anon_sym_LPAREN] = ACTIONS(8314), + [aux_sym_as_type_clause_token2] = ACTIONS(8312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8312), + [aux_sym_visibility_token1] = ACTIONS(8312), + [aux_sym_visibility_token2] = ACTIONS(8312), + [aux_sym_elseif_fragment_token1] = ACTIONS(8312), + [aux_sym_else_fragment_token1] = ACTIONS(8312), + [aux_sym_select_statement_token1] = ACTIONS(8312), + [aux_sym__for_header_token1] = ACTIONS(8312), + [aux_sym_do_statement_token1] = ACTIONS(8312), + [aux_sym_do_condition_token1] = ACTIONS(8312), + [aux_sym_with_statement_token1] = ACTIONS(8312), + [aux_sym_exit_statement_token1] = ACTIONS(8312), + [sym_end_statement] = ACTIONS(8314), + [aux_sym_on_goto_statement_token1] = ACTIONS(8312), + [aux_sym_on_goto_statement_token2] = ACTIONS(8312), + [aux_sym_on_error_statement_token2] = ACTIONS(8312), + [sym__ambiguous_redim_statement] = ACTIONS(8314), + [aux_sym_erase_statement_token1] = ACTIONS(8312), + [aux_sym_open_statement_token1] = ACTIONS(8312), + [aux_sym_file_mode_token2] = ACTIONS(8312), + [aux_sym_file_access_token2] = ACTIONS(8312), + [aux_sym_file_lock_token2] = ACTIONS(8312), + [aux_sym_print_statement_token1] = ACTIONS(8312), + [anon_sym_PLUS] = ACTIONS(8314), + [anon_sym_DASH] = ACTIONS(8312), + [anon_sym_QMARK] = ACTIONS(8314), + [aux_sym_close_statement_token1] = ACTIONS(8312), + [aux_sym_put_statement_token1] = ACTIONS(8312), + [aux_sym_unlock_statement_token1] = ACTIONS(8312), + [aux_sym_seek_statement_token1] = ACTIONS(8312), + [sym_reset_statement] = ACTIONS(8312), + [aux_sym_raise_event_statement_token1] = ACTIONS(8312), + [sym_stop_statement] = ACTIONS(8312), + [sym_beep_statement] = ACTIONS(8312), + [aux_sym_unload_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token2] = ACTIONS(8312), + [aux_sym_def_type_statement_token3] = ACTIONS(8312), + [aux_sym_def_type_statement_token4] = ACTIONS(8312), + [aux_sym_def_type_statement_token5] = ACTIONS(8312), + [aux_sym_def_type_statement_token6] = ACTIONS(8312), + [aux_sym_def_type_statement_token7] = ACTIONS(8312), + [aux_sym_def_type_statement_token8] = ACTIONS(8312), + [aux_sym_def_type_statement_token9] = ACTIONS(8312), + [aux_sym_def_type_statement_token10] = ACTIONS(8312), + [aux_sym_def_type_statement_token11] = ACTIONS(8312), + [aux_sym_def_type_statement_token12] = ACTIONS(8312), + [aux_sym_def_type_statement_token13] = ACTIONS(8312), + [aux_sym_def_type_statement_token14] = ACTIONS(8312), + [aux_sym_call_statement_token1] = ACTIONS(8312), + [sym__ambiguous_call_statement] = ACTIONS(8312), + [aux_sym_addressof_expression_token1] = ACTIONS(8312), + [aux_sym_type_of_expression_token1] = ACTIONS(8312), + [aux_sym_unary_expression_token1] = ACTIONS(8312), + [sym_string_literal] = ACTIONS(8314), + [sym_number_literal] = ACTIONS(8314), + [aux_sym_boolean_literal_token1] = ACTIONS(8312), + [aux_sym_boolean_literal_token2] = ACTIONS(8312), + [sym_nothing_literal] = ACTIONS(8312), + [sym_null_literal] = ACTIONS(8312), + [sym_empty_literal] = ACTIONS(8312), + [sym_date_literal] = ACTIONS(8314), + [anon_sym_POUND] = ACTIONS(8312), + }, + [STATE(5294)] = { + [sym_identifier] = ACTIONS(9156), + [sym_newline] = ACTIONS(9158), + [anon_sym_COLON] = ACTIONS(9158), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9156), + [aux_sym_frm_property_statement_token1] = ACTIONS(9156), + [anon_sym_DOT] = ACTIONS(9156), + [anon_sym_BANG] = ACTIONS(9158), + [aux_sym__attribute_identifier_token1] = ACTIONS(9156), + [aux_sym_option_statement_token3] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9156), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9156), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9156), + [aux_sym_preprocessor_const_token1] = ACTIONS(9156), + [sym_static_modifier] = ACTIONS(9156), + [sym__dim_keyword] = ACTIONS(9156), + [sym__redim_keyword] = ACTIONS(9156), + [aux_sym_get_accessor_token1] = ACTIONS(9156), + [aux_sym_set_accessor_token1] = ACTIONS(9156), + [aux_sym_const_declaration_token1] = ACTIONS(9156), + [anon_sym_LPAREN] = ACTIONS(9158), + [aux_sym_as_type_clause_token2] = ACTIONS(9156), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9156), + [aux_sym_visibility_token1] = ACTIONS(9156), + [aux_sym_visibility_token2] = ACTIONS(9156), + [aux_sym_elseif_fragment_token1] = ACTIONS(9156), + [aux_sym_else_fragment_token1] = ACTIONS(9156), + [aux_sym_select_statement_token1] = ACTIONS(9156), + [aux_sym__for_header_token1] = ACTIONS(9156), + [aux_sym_do_statement_token1] = ACTIONS(9156), + [aux_sym_do_condition_token1] = ACTIONS(9156), + [aux_sym_with_statement_token1] = ACTIONS(9156), + [aux_sym_exit_statement_token1] = ACTIONS(9156), + [sym_end_statement] = ACTIONS(9158), + [aux_sym_on_goto_statement_token1] = ACTIONS(9156), + [aux_sym_on_goto_statement_token2] = ACTIONS(9156), + [aux_sym_on_error_statement_token2] = ACTIONS(9156), + [sym__ambiguous_redim_statement] = ACTIONS(9158), + [aux_sym_erase_statement_token1] = ACTIONS(9156), + [aux_sym_open_statement_token1] = ACTIONS(9156), + [aux_sym_file_mode_token2] = ACTIONS(9156), + [aux_sym_file_access_token2] = ACTIONS(9156), + [aux_sym_file_lock_token2] = ACTIONS(9156), + [aux_sym_print_statement_token1] = ACTIONS(9156), + [anon_sym_PLUS] = ACTIONS(9158), + [anon_sym_DASH] = ACTIONS(9156), + [anon_sym_QMARK] = ACTIONS(9158), + [aux_sym_close_statement_token1] = ACTIONS(9156), + [aux_sym_put_statement_token1] = ACTIONS(9156), + [aux_sym_unlock_statement_token1] = ACTIONS(9156), + [aux_sym_seek_statement_token1] = ACTIONS(9156), + [sym_reset_statement] = ACTIONS(9156), + [aux_sym_raise_event_statement_token1] = ACTIONS(9156), + [sym_stop_statement] = ACTIONS(9156), + [sym_beep_statement] = ACTIONS(9156), + [aux_sym_unload_statement_token1] = ACTIONS(9156), + [aux_sym_def_type_statement_token1] = ACTIONS(9156), + [aux_sym_def_type_statement_token2] = ACTIONS(9156), + [aux_sym_def_type_statement_token3] = ACTIONS(9156), + [aux_sym_def_type_statement_token4] = ACTIONS(9156), + [aux_sym_def_type_statement_token5] = ACTIONS(9156), + [aux_sym_def_type_statement_token6] = ACTIONS(9156), + [aux_sym_def_type_statement_token7] = ACTIONS(9156), + [aux_sym_def_type_statement_token8] = ACTIONS(9156), + [aux_sym_def_type_statement_token9] = ACTIONS(9156), + [aux_sym_def_type_statement_token10] = ACTIONS(9156), + [aux_sym_def_type_statement_token11] = ACTIONS(9156), + [aux_sym_def_type_statement_token12] = ACTIONS(9156), + [aux_sym_def_type_statement_token13] = ACTIONS(9156), + [aux_sym_def_type_statement_token14] = ACTIONS(9156), + [aux_sym_call_statement_token1] = ACTIONS(9156), + [sym__ambiguous_call_statement] = ACTIONS(9156), + [aux_sym_addressof_expression_token1] = ACTIONS(9156), + [aux_sym_type_of_expression_token1] = ACTIONS(9156), + [aux_sym_unary_expression_token1] = ACTIONS(9156), + [sym_string_literal] = ACTIONS(9158), + [sym_number_literal] = ACTIONS(9158), + [aux_sym_boolean_literal_token1] = ACTIONS(9156), + [aux_sym_boolean_literal_token2] = ACTIONS(9156), + [sym_nothing_literal] = ACTIONS(9156), + [sym_null_literal] = ACTIONS(9156), + [sym_empty_literal] = ACTIONS(9156), + [sym_date_literal] = ACTIONS(9158), + [anon_sym_POUND] = ACTIONS(9156), + }, + [STATE(5295)] = { + [sym_identifier] = ACTIONS(9160), + [sym_newline] = ACTIONS(9162), + [anon_sym_COLON] = ACTIONS(9162), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9160), + [aux_sym_frm_property_statement_token1] = ACTIONS(9160), + [anon_sym_DOT] = ACTIONS(9160), + [anon_sym_BANG] = ACTIONS(9162), + [aux_sym__attribute_identifier_token1] = ACTIONS(9160), + [aux_sym_option_statement_token3] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9160), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9160), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9160), + [aux_sym_preprocessor_const_token1] = ACTIONS(9160), + [sym_static_modifier] = ACTIONS(9160), + [sym__dim_keyword] = ACTIONS(9160), + [sym__redim_keyword] = ACTIONS(9160), + [aux_sym_get_accessor_token1] = ACTIONS(9160), + [aux_sym_set_accessor_token1] = ACTIONS(9160), + [aux_sym_const_declaration_token1] = ACTIONS(9160), + [anon_sym_LPAREN] = ACTIONS(9162), + [aux_sym_as_type_clause_token2] = ACTIONS(9160), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9160), + [aux_sym_visibility_token1] = ACTIONS(9160), + [aux_sym_visibility_token2] = ACTIONS(9160), + [aux_sym_elseif_fragment_token1] = ACTIONS(9160), + [aux_sym_else_fragment_token1] = ACTIONS(9160), + [aux_sym_select_statement_token1] = ACTIONS(9160), + [aux_sym__for_header_token1] = ACTIONS(9160), + [aux_sym_do_statement_token1] = ACTIONS(9160), + [aux_sym_do_condition_token1] = ACTIONS(9160), + [aux_sym_with_statement_token1] = ACTIONS(9160), + [aux_sym_exit_statement_token1] = ACTIONS(9160), + [sym_end_statement] = ACTIONS(9162), + [aux_sym_on_goto_statement_token1] = ACTIONS(9160), + [aux_sym_on_goto_statement_token2] = ACTIONS(9160), + [aux_sym_on_error_statement_token2] = ACTIONS(9160), + [sym__ambiguous_redim_statement] = ACTIONS(9162), + [aux_sym_erase_statement_token1] = ACTIONS(9160), + [aux_sym_open_statement_token1] = ACTIONS(9160), + [aux_sym_file_mode_token2] = ACTIONS(9160), + [aux_sym_file_access_token2] = ACTIONS(9160), + [aux_sym_file_lock_token2] = ACTIONS(9160), + [aux_sym_print_statement_token1] = ACTIONS(9160), + [anon_sym_PLUS] = ACTIONS(9162), + [anon_sym_DASH] = ACTIONS(9160), + [anon_sym_QMARK] = ACTIONS(9162), + [aux_sym_close_statement_token1] = ACTIONS(9160), + [aux_sym_put_statement_token1] = ACTIONS(9160), + [aux_sym_unlock_statement_token1] = ACTIONS(9160), + [aux_sym_seek_statement_token1] = ACTIONS(9160), + [sym_reset_statement] = ACTIONS(9160), + [aux_sym_raise_event_statement_token1] = ACTIONS(9160), + [sym_stop_statement] = ACTIONS(9160), + [sym_beep_statement] = ACTIONS(9160), + [aux_sym_unload_statement_token1] = ACTIONS(9160), + [aux_sym_def_type_statement_token1] = ACTIONS(9160), + [aux_sym_def_type_statement_token2] = ACTIONS(9160), + [aux_sym_def_type_statement_token3] = ACTIONS(9160), + [aux_sym_def_type_statement_token4] = ACTIONS(9160), + [aux_sym_def_type_statement_token5] = ACTIONS(9160), + [aux_sym_def_type_statement_token6] = ACTIONS(9160), + [aux_sym_def_type_statement_token7] = ACTIONS(9160), + [aux_sym_def_type_statement_token8] = ACTIONS(9160), + [aux_sym_def_type_statement_token9] = ACTIONS(9160), + [aux_sym_def_type_statement_token10] = ACTIONS(9160), + [aux_sym_def_type_statement_token11] = ACTIONS(9160), + [aux_sym_def_type_statement_token12] = ACTIONS(9160), + [aux_sym_def_type_statement_token13] = ACTIONS(9160), + [aux_sym_def_type_statement_token14] = ACTIONS(9160), + [aux_sym_call_statement_token1] = ACTIONS(9160), + [sym__ambiguous_call_statement] = ACTIONS(9160), + [aux_sym_addressof_expression_token1] = ACTIONS(9160), + [aux_sym_type_of_expression_token1] = ACTIONS(9160), + [aux_sym_unary_expression_token1] = ACTIONS(9160), + [sym_string_literal] = ACTIONS(9162), + [sym_number_literal] = ACTIONS(9162), + [aux_sym_boolean_literal_token1] = ACTIONS(9160), + [aux_sym_boolean_literal_token2] = ACTIONS(9160), + [sym_nothing_literal] = ACTIONS(9160), + [sym_null_literal] = ACTIONS(9160), + [sym_empty_literal] = ACTIONS(9160), + [sym_date_literal] = ACTIONS(9162), + [anon_sym_POUND] = ACTIONS(9160), + }, + [STATE(5296)] = { + [sym_do_condition] = STATE(6292), + [sym_identifier] = ACTIONS(8221), + [sym_newline] = ACTIONS(8223), + [anon_sym_COLON] = ACTIONS(8223), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8221), + [aux_sym_frm_property_statement_token1] = ACTIONS(8221), + [anon_sym_DOT] = ACTIONS(8221), + [anon_sym_BANG] = ACTIONS(8223), + [aux_sym__attribute_identifier_token1] = ACTIONS(8221), + [aux_sym_option_statement_token3] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8221), + [aux_sym_preprocessor_const_token1] = ACTIONS(8221), + [sym_static_modifier] = ACTIONS(8221), + [sym__dim_keyword] = ACTIONS(8221), + [sym__redim_keyword] = ACTIONS(8221), + [aux_sym_get_accessor_token1] = ACTIONS(8221), + [aux_sym_set_accessor_token1] = ACTIONS(8221), + [aux_sym_const_declaration_token1] = ACTIONS(8221), + [anon_sym_LPAREN] = ACTIONS(8223), + [aux_sym_as_type_clause_token2] = ACTIONS(8221), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8221), + [aux_sym_visibility_token1] = ACTIONS(8221), + [aux_sym_visibility_token2] = ACTIONS(8221), + [aux_sym_elseif_fragment_token1] = ACTIONS(8221), + [aux_sym_else_fragment_token1] = ACTIONS(8221), + [aux_sym_select_statement_token1] = ACTIONS(8221), + [aux_sym__for_header_token1] = ACTIONS(8221), + [aux_sym_do_statement_token1] = ACTIONS(8221), + [aux_sym_do_statement_token2] = ACTIONS(8221), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8221), + [aux_sym_exit_statement_token1] = ACTIONS(8221), + [sym_end_statement] = ACTIONS(8223), + [aux_sym_on_goto_statement_token1] = ACTIONS(8221), + [aux_sym_on_goto_statement_token2] = ACTIONS(8221), + [aux_sym_on_error_statement_token2] = ACTIONS(8221), + [sym__ambiguous_redim_statement] = ACTIONS(8223), + [aux_sym_erase_statement_token1] = ACTIONS(8221), + [aux_sym_open_statement_token1] = ACTIONS(8221), + [aux_sym_file_mode_token2] = ACTIONS(8221), + [aux_sym_file_access_token2] = ACTIONS(8221), + [aux_sym_file_lock_token2] = ACTIONS(8221), + [aux_sym_print_statement_token1] = ACTIONS(8221), + [anon_sym_PLUS] = ACTIONS(8223), + [anon_sym_DASH] = ACTIONS(8221), + [anon_sym_QMARK] = ACTIONS(8223), + [aux_sym_close_statement_token1] = ACTIONS(8221), + [aux_sym_put_statement_token1] = ACTIONS(8221), + [aux_sym_unlock_statement_token1] = ACTIONS(8221), + [aux_sym_seek_statement_token1] = ACTIONS(8221), + [sym_reset_statement] = ACTIONS(8221), + [aux_sym_raise_event_statement_token1] = ACTIONS(8221), + [sym_stop_statement] = ACTIONS(8221), + [sym_beep_statement] = ACTIONS(8221), + [aux_sym_unload_statement_token1] = ACTIONS(8221), + [aux_sym_def_type_statement_token1] = ACTIONS(8221), + [aux_sym_def_type_statement_token2] = ACTIONS(8221), + [aux_sym_def_type_statement_token3] = ACTIONS(8221), + [aux_sym_def_type_statement_token4] = ACTIONS(8221), + [aux_sym_def_type_statement_token5] = ACTIONS(8221), + [aux_sym_def_type_statement_token6] = ACTIONS(8221), + [aux_sym_def_type_statement_token7] = ACTIONS(8221), + [aux_sym_def_type_statement_token8] = ACTIONS(8221), + [aux_sym_def_type_statement_token9] = ACTIONS(8221), + [aux_sym_def_type_statement_token10] = ACTIONS(8221), + [aux_sym_def_type_statement_token11] = ACTIONS(8221), + [aux_sym_def_type_statement_token12] = ACTIONS(8221), + [aux_sym_def_type_statement_token13] = ACTIONS(8221), + [aux_sym_def_type_statement_token14] = ACTIONS(8221), + [aux_sym_call_statement_token1] = ACTIONS(8221), + [sym__ambiguous_call_statement] = ACTIONS(8221), + [aux_sym_addressof_expression_token1] = ACTIONS(8221), + [aux_sym_type_of_expression_token1] = ACTIONS(8221), + [aux_sym_unary_expression_token1] = ACTIONS(8221), + [sym_string_literal] = ACTIONS(8223), + [sym_number_literal] = ACTIONS(8223), + [aux_sym_boolean_literal_token1] = ACTIONS(8221), + [aux_sym_boolean_literal_token2] = ACTIONS(8221), + [sym_nothing_literal] = ACTIONS(8221), + [sym_null_literal] = ACTIONS(8221), + [sym_empty_literal] = ACTIONS(8221), + [sym_date_literal] = ACTIONS(8223), + [anon_sym_POUND] = ACTIONS(8221), + }, + [STATE(5297)] = { + [sym_do_condition] = STATE(6674), + [sym_identifier] = ACTIONS(8475), + [sym_newline] = ACTIONS(8477), + [anon_sym_COLON] = ACTIONS(8477), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8475), + [aux_sym_frm_property_statement_token1] = ACTIONS(8475), + [anon_sym_DOT] = ACTIONS(8475), + [anon_sym_BANG] = ACTIONS(8477), + [aux_sym__attribute_identifier_token1] = ACTIONS(8475), + [aux_sym_option_statement_token3] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8475), + [aux_sym_preprocessor_const_token1] = ACTIONS(8475), + [sym_static_modifier] = ACTIONS(8475), + [sym__dim_keyword] = ACTIONS(8475), + [sym__redim_keyword] = ACTIONS(8475), + [aux_sym_get_accessor_token1] = ACTIONS(8475), + [aux_sym_set_accessor_token1] = ACTIONS(8475), + [aux_sym_const_declaration_token1] = ACTIONS(8475), + [anon_sym_LPAREN] = ACTIONS(8477), + [aux_sym_as_type_clause_token2] = ACTIONS(8475), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8475), + [aux_sym_visibility_token1] = ACTIONS(8475), + [aux_sym_visibility_token2] = ACTIONS(8475), + [aux_sym_elseif_fragment_token1] = ACTIONS(8475), + [aux_sym_else_fragment_token1] = ACTIONS(8475), + [aux_sym_select_statement_token1] = ACTIONS(8475), + [aux_sym__for_header_token1] = ACTIONS(8475), + [aux_sym_do_statement_token1] = ACTIONS(8475), + [aux_sym_do_statement_token2] = ACTIONS(8475), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8475), + [aux_sym_exit_statement_token1] = ACTIONS(8475), + [sym_end_statement] = ACTIONS(8477), + [aux_sym_on_goto_statement_token1] = ACTIONS(8475), + [aux_sym_on_goto_statement_token2] = ACTIONS(8475), + [aux_sym_on_error_statement_token2] = ACTIONS(8475), + [sym__ambiguous_redim_statement] = ACTIONS(8477), + [aux_sym_erase_statement_token1] = ACTIONS(8475), + [aux_sym_open_statement_token1] = ACTIONS(8475), + [aux_sym_file_mode_token2] = ACTIONS(8475), + [aux_sym_file_access_token2] = ACTIONS(8475), + [aux_sym_file_lock_token2] = ACTIONS(8475), + [aux_sym_print_statement_token1] = ACTIONS(8475), + [anon_sym_PLUS] = ACTIONS(8477), + [anon_sym_DASH] = ACTIONS(8475), + [anon_sym_QMARK] = ACTIONS(8477), + [aux_sym_close_statement_token1] = ACTIONS(8475), + [aux_sym_put_statement_token1] = ACTIONS(8475), + [aux_sym_unlock_statement_token1] = ACTIONS(8475), + [aux_sym_seek_statement_token1] = ACTIONS(8475), + [sym_reset_statement] = ACTIONS(8475), + [aux_sym_raise_event_statement_token1] = ACTIONS(8475), + [sym_stop_statement] = ACTIONS(8475), + [sym_beep_statement] = ACTIONS(8475), + [aux_sym_unload_statement_token1] = ACTIONS(8475), + [aux_sym_def_type_statement_token1] = ACTIONS(8475), + [aux_sym_def_type_statement_token2] = ACTIONS(8475), + [aux_sym_def_type_statement_token3] = ACTIONS(8475), + [aux_sym_def_type_statement_token4] = ACTIONS(8475), + [aux_sym_def_type_statement_token5] = ACTIONS(8475), + [aux_sym_def_type_statement_token6] = ACTIONS(8475), + [aux_sym_def_type_statement_token7] = ACTIONS(8475), + [aux_sym_def_type_statement_token8] = ACTIONS(8475), + [aux_sym_def_type_statement_token9] = ACTIONS(8475), + [aux_sym_def_type_statement_token10] = ACTIONS(8475), + [aux_sym_def_type_statement_token11] = ACTIONS(8475), + [aux_sym_def_type_statement_token12] = ACTIONS(8475), + [aux_sym_def_type_statement_token13] = ACTIONS(8475), + [aux_sym_def_type_statement_token14] = ACTIONS(8475), + [aux_sym_call_statement_token1] = ACTIONS(8475), + [sym__ambiguous_call_statement] = ACTIONS(8475), + [aux_sym_addressof_expression_token1] = ACTIONS(8475), + [aux_sym_type_of_expression_token1] = ACTIONS(8475), + [aux_sym_unary_expression_token1] = ACTIONS(8475), + [sym_string_literal] = ACTIONS(8477), + [sym_number_literal] = ACTIONS(8477), + [aux_sym_boolean_literal_token1] = ACTIONS(8475), + [aux_sym_boolean_literal_token2] = ACTIONS(8475), + [sym_nothing_literal] = ACTIONS(8475), + [sym_null_literal] = ACTIONS(8475), + [sym_empty_literal] = ACTIONS(8475), + [sym_date_literal] = ACTIONS(8477), + [anon_sym_POUND] = ACTIONS(8475), + }, + [STATE(5298)] = { + [aux_sym_def_type_statement_repeat1] = STATE(5298), + [sym_identifier] = ACTIONS(8357), + [sym_newline] = ACTIONS(8359), + [anon_sym_COLON] = ACTIONS(8359), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8357), + [aux_sym_frm_property_statement_token1] = ACTIONS(8357), + [anon_sym_DOT] = ACTIONS(8357), + [anon_sym_BANG] = ACTIONS(8359), + [aux_sym__attribute_identifier_token1] = ACTIONS(8357), + [aux_sym_option_statement_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8357), + [aux_sym_preprocessor_const_token1] = ACTIONS(8357), + [sym_static_modifier] = ACTIONS(8357), + [sym__dim_keyword] = ACTIONS(8357), + [sym__redim_keyword] = ACTIONS(8357), + [aux_sym_get_accessor_token1] = ACTIONS(8357), + [aux_sym_set_accessor_token1] = ACTIONS(8357), + [anon_sym_COMMA] = ACTIONS(10534), + [aux_sym_const_declaration_token1] = ACTIONS(8357), + [anon_sym_LPAREN] = ACTIONS(8359), + [aux_sym_as_type_clause_token2] = ACTIONS(8357), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8357), + [aux_sym_visibility_token1] = ACTIONS(8357), + [aux_sym_visibility_token2] = ACTIONS(8357), + [aux_sym_elseif_fragment_token1] = ACTIONS(8357), + [aux_sym_else_fragment_token1] = ACTIONS(8357), + [aux_sym_select_statement_token1] = ACTIONS(8357), + [aux_sym__for_header_token1] = ACTIONS(8357), + [aux_sym_do_statement_token1] = ACTIONS(8357), + [aux_sym_do_statement_token2] = ACTIONS(8357), + [aux_sym_do_condition_token1] = ACTIONS(8357), + [aux_sym_with_statement_token1] = ACTIONS(8357), + [aux_sym_exit_statement_token1] = ACTIONS(8357), + [sym_end_statement] = ACTIONS(8359), + [aux_sym_on_goto_statement_token1] = ACTIONS(8357), + [aux_sym_on_goto_statement_token2] = ACTIONS(8357), + [aux_sym_on_error_statement_token2] = ACTIONS(8357), + [sym__ambiguous_redim_statement] = ACTIONS(8359), + [aux_sym_erase_statement_token1] = ACTIONS(8357), + [aux_sym_open_statement_token1] = ACTIONS(8357), + [aux_sym_file_mode_token2] = ACTIONS(8357), + [aux_sym_file_access_token2] = ACTIONS(8357), + [aux_sym_file_lock_token2] = ACTIONS(8357), + [aux_sym_print_statement_token1] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_QMARK] = ACTIONS(8359), + [aux_sym_close_statement_token1] = ACTIONS(8357), + [aux_sym_put_statement_token1] = ACTIONS(8357), + [aux_sym_unlock_statement_token1] = ACTIONS(8357), + [aux_sym_seek_statement_token1] = ACTIONS(8357), + [sym_reset_statement] = ACTIONS(8357), + [aux_sym_raise_event_statement_token1] = ACTIONS(8357), + [sym_stop_statement] = ACTIONS(8357), + [sym_beep_statement] = ACTIONS(8357), + [aux_sym_unload_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token2] = ACTIONS(8357), + [aux_sym_def_type_statement_token3] = ACTIONS(8357), + [aux_sym_def_type_statement_token4] = ACTIONS(8357), + [aux_sym_def_type_statement_token5] = ACTIONS(8357), + [aux_sym_def_type_statement_token6] = ACTIONS(8357), + [aux_sym_def_type_statement_token7] = ACTIONS(8357), + [aux_sym_def_type_statement_token8] = ACTIONS(8357), + [aux_sym_def_type_statement_token9] = ACTIONS(8357), + [aux_sym_def_type_statement_token10] = ACTIONS(8357), + [aux_sym_def_type_statement_token11] = ACTIONS(8357), + [aux_sym_def_type_statement_token12] = ACTIONS(8357), + [aux_sym_def_type_statement_token13] = ACTIONS(8357), + [aux_sym_def_type_statement_token14] = ACTIONS(8357), + [aux_sym_call_statement_token1] = ACTIONS(8357), + [sym__ambiguous_call_statement] = ACTIONS(8357), + [aux_sym_addressof_expression_token1] = ACTIONS(8357), + [aux_sym_type_of_expression_token1] = ACTIONS(8357), + [aux_sym_unary_expression_token1] = ACTIONS(8357), + [sym_string_literal] = ACTIONS(8359), + [sym_number_literal] = ACTIONS(8359), + [aux_sym_boolean_literal_token1] = ACTIONS(8357), + [aux_sym_boolean_literal_token2] = ACTIONS(8357), + [sym_nothing_literal] = ACTIONS(8357), + [sym_null_literal] = ACTIONS(8357), + [sym_empty_literal] = ACTIONS(8357), + [sym_date_literal] = ACTIONS(8359), + [anon_sym_POUND] = ACTIONS(8357), + }, + [STATE(5299)] = { + [aux_sym__argument_sequence_repeat1] = STATE(5299), + [sym_identifier] = ACTIONS(8533), + [sym_newline] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(8535), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8533), + [aux_sym_frm_property_statement_token1] = ACTIONS(8533), + [anon_sym_DOT] = ACTIONS(8533), + [anon_sym_BANG] = ACTIONS(8535), + [aux_sym__attribute_identifier_token1] = ACTIONS(8533), + [aux_sym_option_statement_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8533), + [aux_sym_preprocessor_const_token1] = ACTIONS(8533), + [sym_static_modifier] = ACTIONS(8533), + [sym__dim_keyword] = ACTIONS(8533), + [sym__redim_keyword] = ACTIONS(8533), + [aux_sym_get_accessor_token1] = ACTIONS(8533), + [aux_sym_set_accessor_token1] = ACTIONS(8533), + [anon_sym_COMMA] = ACTIONS(10537), + [aux_sym_const_declaration_token1] = ACTIONS(8533), + [anon_sym_LPAREN] = ACTIONS(8535), + [aux_sym_as_type_clause_token2] = ACTIONS(8533), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8533), + [aux_sym_visibility_token1] = ACTIONS(8533), + [aux_sym_visibility_token2] = ACTIONS(8533), + [aux_sym_elseif_fragment_token1] = ACTIONS(8533), + [aux_sym_else_fragment_token1] = ACTIONS(8533), + [aux_sym_select_statement_token1] = ACTIONS(8533), + [aux_sym__for_header_token1] = ACTIONS(8533), + [aux_sym_do_statement_token1] = ACTIONS(8533), + [aux_sym_do_condition_token1] = ACTIONS(8533), + [aux_sym_with_statement_token1] = ACTIONS(8533), + [aux_sym_exit_statement_token1] = ACTIONS(8533), + [sym_end_statement] = ACTIONS(8535), + [aux_sym_on_goto_statement_token1] = ACTIONS(8533), + [aux_sym_on_goto_statement_token2] = ACTIONS(8533), + [aux_sym_on_error_statement_token2] = ACTIONS(8533), + [sym__ambiguous_redim_statement] = ACTIONS(8535), + [aux_sym_erase_statement_token1] = ACTIONS(8533), + [aux_sym_open_statement_token1] = ACTIONS(8533), + [aux_sym_file_mode_token2] = ACTIONS(8533), + [aux_sym_file_access_token2] = ACTIONS(8533), + [aux_sym_file_lock_token2] = ACTIONS(8533), + [aux_sym_print_statement_token1] = ACTIONS(8533), + [anon_sym_PLUS] = ACTIONS(8535), + [anon_sym_DASH] = ACTIONS(8533), + [anon_sym_QMARK] = ACTIONS(8535), + [aux_sym_close_statement_token1] = ACTIONS(8533), + [aux_sym_put_statement_token1] = ACTIONS(8533), + [aux_sym_unlock_statement_token1] = ACTIONS(8533), + [aux_sym_seek_statement_token1] = ACTIONS(8533), + [sym_reset_statement] = ACTIONS(8533), + [aux_sym_raise_event_statement_token1] = ACTIONS(8533), + [sym_stop_statement] = ACTIONS(8533), + [sym_beep_statement] = ACTIONS(8533), + [aux_sym_unload_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token2] = ACTIONS(8533), + [aux_sym_def_type_statement_token3] = ACTIONS(8533), + [aux_sym_def_type_statement_token4] = ACTIONS(8533), + [aux_sym_def_type_statement_token5] = ACTIONS(8533), + [aux_sym_def_type_statement_token6] = ACTIONS(8533), + [aux_sym_def_type_statement_token7] = ACTIONS(8533), + [aux_sym_def_type_statement_token8] = ACTIONS(8533), + [aux_sym_def_type_statement_token9] = ACTIONS(8533), + [aux_sym_def_type_statement_token10] = ACTIONS(8533), + [aux_sym_def_type_statement_token11] = ACTIONS(8533), + [aux_sym_def_type_statement_token12] = ACTIONS(8533), + [aux_sym_def_type_statement_token13] = ACTIONS(8533), + [aux_sym_def_type_statement_token14] = ACTIONS(8533), + [aux_sym_call_statement_token1] = ACTIONS(8533), + [sym__ambiguous_call_statement] = ACTIONS(8533), + [aux_sym_addressof_expression_token1] = ACTIONS(8533), + [aux_sym_type_of_expression_token1] = ACTIONS(8533), + [aux_sym_unary_expression_token1] = ACTIONS(8533), + [sym_string_literal] = ACTIONS(8535), + [sym_number_literal] = ACTIONS(8535), + [aux_sym_boolean_literal_token1] = ACTIONS(8533), + [aux_sym_boolean_literal_token2] = ACTIONS(8533), + [sym_nothing_literal] = ACTIONS(8533), + [sym_null_literal] = ACTIONS(8533), + [sym_empty_literal] = ACTIONS(8533), + [sym_date_literal] = ACTIONS(8535), + [anon_sym_POUND] = ACTIONS(8533), + }, + [STATE(5300)] = { + [sym_identifier] = ACTIONS(9172), + [sym_newline] = ACTIONS(9174), + [anon_sym_COLON] = ACTIONS(9174), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9172), + [aux_sym_frm_property_statement_token1] = ACTIONS(9172), + [anon_sym_DOT] = ACTIONS(9172), + [anon_sym_BANG] = ACTIONS(9174), + [aux_sym__attribute_identifier_token1] = ACTIONS(9172), + [aux_sym_option_statement_token3] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9172), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9172), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9172), + [aux_sym_preprocessor_const_token1] = ACTIONS(9172), + [sym_static_modifier] = ACTIONS(9172), + [sym__dim_keyword] = ACTIONS(9172), + [sym__redim_keyword] = ACTIONS(9172), + [aux_sym_get_accessor_token1] = ACTIONS(9172), + [aux_sym_set_accessor_token1] = ACTIONS(9172), + [aux_sym_const_declaration_token1] = ACTIONS(9172), + [anon_sym_LPAREN] = ACTIONS(9174), + [aux_sym_as_type_clause_token2] = ACTIONS(9172), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9172), + [aux_sym_visibility_token1] = ACTIONS(9172), + [aux_sym_visibility_token2] = ACTIONS(9172), + [aux_sym_elseif_fragment_token1] = ACTIONS(9172), + [aux_sym_else_fragment_token1] = ACTIONS(9172), + [aux_sym_select_statement_token1] = ACTIONS(9172), + [aux_sym__for_header_token1] = ACTIONS(9172), + [aux_sym_do_statement_token1] = ACTIONS(9172), + [aux_sym_do_condition_token1] = ACTIONS(9172), + [aux_sym_with_statement_token1] = ACTIONS(9172), + [aux_sym_exit_statement_token1] = ACTIONS(9172), + [sym_end_statement] = ACTIONS(9174), + [aux_sym_on_goto_statement_token1] = ACTIONS(9172), + [aux_sym_on_goto_statement_token2] = ACTIONS(9172), + [aux_sym_on_error_statement_token2] = ACTIONS(9172), + [sym__ambiguous_redim_statement] = ACTIONS(9174), + [aux_sym_erase_statement_token1] = ACTIONS(9172), + [aux_sym_open_statement_token1] = ACTIONS(9172), + [aux_sym_file_mode_token2] = ACTIONS(9172), + [aux_sym_file_access_token2] = ACTIONS(9172), + [aux_sym_file_lock_token2] = ACTIONS(9172), + [aux_sym_print_statement_token1] = ACTIONS(9172), + [anon_sym_PLUS] = ACTIONS(9174), + [anon_sym_DASH] = ACTIONS(9172), + [anon_sym_QMARK] = ACTIONS(9174), + [aux_sym_close_statement_token1] = ACTIONS(9172), + [aux_sym_put_statement_token1] = ACTIONS(9172), + [aux_sym_unlock_statement_token1] = ACTIONS(9172), + [aux_sym_seek_statement_token1] = ACTIONS(9172), + [sym_reset_statement] = ACTIONS(9172), + [aux_sym_raise_event_statement_token1] = ACTIONS(9172), + [sym_stop_statement] = ACTIONS(9172), + [sym_beep_statement] = ACTIONS(9172), + [aux_sym_unload_statement_token1] = ACTIONS(9172), + [aux_sym_def_type_statement_token1] = ACTIONS(9172), + [aux_sym_def_type_statement_token2] = ACTIONS(9172), + [aux_sym_def_type_statement_token3] = ACTIONS(9172), + [aux_sym_def_type_statement_token4] = ACTIONS(9172), + [aux_sym_def_type_statement_token5] = ACTIONS(9172), + [aux_sym_def_type_statement_token6] = ACTIONS(9172), + [aux_sym_def_type_statement_token7] = ACTIONS(9172), + [aux_sym_def_type_statement_token8] = ACTIONS(9172), + [aux_sym_def_type_statement_token9] = ACTIONS(9172), + [aux_sym_def_type_statement_token10] = ACTIONS(9172), + [aux_sym_def_type_statement_token11] = ACTIONS(9172), + [aux_sym_def_type_statement_token12] = ACTIONS(9172), + [aux_sym_def_type_statement_token13] = ACTIONS(9172), + [aux_sym_def_type_statement_token14] = ACTIONS(9172), + [aux_sym_call_statement_token1] = ACTIONS(9172), + [sym__ambiguous_call_statement] = ACTIONS(9172), + [aux_sym_addressof_expression_token1] = ACTIONS(9172), + [aux_sym_type_of_expression_token1] = ACTIONS(9172), + [aux_sym_unary_expression_token1] = ACTIONS(9172), + [sym_string_literal] = ACTIONS(9174), + [sym_number_literal] = ACTIONS(9174), + [aux_sym_boolean_literal_token1] = ACTIONS(9172), + [aux_sym_boolean_literal_token2] = ACTIONS(9172), + [sym_nothing_literal] = ACTIONS(9172), + [sym_null_literal] = ACTIONS(9172), + [sym_empty_literal] = ACTIONS(9172), + [sym_date_literal] = ACTIONS(9174), + [anon_sym_POUND] = ACTIONS(9172), + }, + [STATE(5301)] = { + [aux_sym_input_statement_repeat1] = STATE(5301), + [sym_identifier] = ACTIONS(8401), + [sym_newline] = ACTIONS(8403), + [anon_sym_COLON] = ACTIONS(8403), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8401), + [aux_sym_frm_property_statement_token1] = ACTIONS(8401), + [anon_sym_DOT] = ACTIONS(8401), + [anon_sym_BANG] = ACTIONS(8403), + [aux_sym__attribute_identifier_token1] = ACTIONS(8401), + [aux_sym_option_statement_token3] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8401), + [aux_sym_preprocessor_const_token1] = ACTIONS(8401), + [sym_static_modifier] = ACTIONS(8401), + [sym__dim_keyword] = ACTIONS(8401), + [sym__redim_keyword] = ACTIONS(8401), + [aux_sym_get_accessor_token1] = ACTIONS(8401), + [aux_sym_set_accessor_token1] = ACTIONS(8401), + [anon_sym_COMMA] = ACTIONS(10540), + [aux_sym_const_declaration_token1] = ACTIONS(8401), + [anon_sym_LPAREN] = ACTIONS(8403), + [aux_sym_as_type_clause_token2] = ACTIONS(8401), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8401), + [aux_sym_visibility_token1] = ACTIONS(8401), + [aux_sym_visibility_token2] = ACTIONS(8401), + [aux_sym_elseif_fragment_token1] = ACTIONS(8401), + [aux_sym_else_fragment_token1] = ACTIONS(8401), + [aux_sym_select_statement_token1] = ACTIONS(8401), + [aux_sym_select_statement_token2] = ACTIONS(8401), + [aux_sym__for_header_token1] = ACTIONS(8401), + [aux_sym_do_statement_token1] = ACTIONS(8401), + [aux_sym_do_condition_token1] = ACTIONS(8401), + [aux_sym_with_statement_token1] = ACTIONS(8401), + [aux_sym_exit_statement_token1] = ACTIONS(8401), + [sym_end_statement] = ACTIONS(8403), + [aux_sym_on_goto_statement_token1] = ACTIONS(8401), + [aux_sym_on_goto_statement_token2] = ACTIONS(8401), + [aux_sym_on_error_statement_token2] = ACTIONS(8401), + [sym__ambiguous_redim_statement] = ACTIONS(8403), + [aux_sym_erase_statement_token1] = ACTIONS(8401), + [aux_sym_open_statement_token1] = ACTIONS(8401), + [aux_sym_file_mode_token2] = ACTIONS(8401), + [aux_sym_file_access_token2] = ACTIONS(8401), + [aux_sym_file_lock_token2] = ACTIONS(8401), + [aux_sym_print_statement_token1] = ACTIONS(8401), + [anon_sym_PLUS] = ACTIONS(8403), + [anon_sym_DASH] = ACTIONS(8401), + [anon_sym_QMARK] = ACTIONS(8403), + [aux_sym_close_statement_token1] = ACTIONS(8401), + [aux_sym_put_statement_token1] = ACTIONS(8401), + [aux_sym_unlock_statement_token1] = ACTIONS(8401), + [aux_sym_seek_statement_token1] = ACTIONS(8401), + [sym_reset_statement] = ACTIONS(8401), + [aux_sym_raise_event_statement_token1] = ACTIONS(8401), + [sym_stop_statement] = ACTIONS(8401), + [sym_beep_statement] = ACTIONS(8401), + [aux_sym_unload_statement_token1] = ACTIONS(8401), + [aux_sym_def_type_statement_token1] = ACTIONS(8401), + [aux_sym_def_type_statement_token2] = ACTIONS(8401), + [aux_sym_def_type_statement_token3] = ACTIONS(8401), + [aux_sym_def_type_statement_token4] = ACTIONS(8401), + [aux_sym_def_type_statement_token5] = ACTIONS(8401), + [aux_sym_def_type_statement_token6] = ACTIONS(8401), + [aux_sym_def_type_statement_token7] = ACTIONS(8401), + [aux_sym_def_type_statement_token8] = ACTIONS(8401), + [aux_sym_def_type_statement_token9] = ACTIONS(8401), + [aux_sym_def_type_statement_token10] = ACTIONS(8401), + [aux_sym_def_type_statement_token11] = ACTIONS(8401), + [aux_sym_def_type_statement_token12] = ACTIONS(8401), + [aux_sym_def_type_statement_token13] = ACTIONS(8401), + [aux_sym_def_type_statement_token14] = ACTIONS(8401), + [aux_sym_call_statement_token1] = ACTIONS(8401), + [sym__ambiguous_call_statement] = ACTIONS(8401), + [aux_sym_addressof_expression_token1] = ACTIONS(8401), + [aux_sym_type_of_expression_token1] = ACTIONS(8401), + [aux_sym_unary_expression_token1] = ACTIONS(8401), + [sym_string_literal] = ACTIONS(8403), + [sym_number_literal] = ACTIONS(8403), + [aux_sym_boolean_literal_token1] = ACTIONS(8401), + [aux_sym_boolean_literal_token2] = ACTIONS(8401), + [sym_nothing_literal] = ACTIONS(8401), + [sym_null_literal] = ACTIONS(8401), + [sym_empty_literal] = ACTIONS(8401), + [sym_date_literal] = ACTIONS(8403), + [anon_sym_POUND] = ACTIONS(8401), + }, + [STATE(5302)] = { + [sym_do_condition] = STATE(6695), + [sym_identifier] = ACTIONS(8491), + [sym_newline] = ACTIONS(8493), + [anon_sym_COLON] = ACTIONS(8493), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8491), + [aux_sym_frm_property_statement_token1] = ACTIONS(8491), + [anon_sym_DOT] = ACTIONS(8491), + [anon_sym_BANG] = ACTIONS(8493), + [aux_sym__attribute_identifier_token1] = ACTIONS(8491), + [aux_sym_option_statement_token3] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8491), + [aux_sym_preprocessor_const_token1] = ACTIONS(8491), + [sym_static_modifier] = ACTIONS(8491), + [sym__dim_keyword] = ACTIONS(8491), + [sym__redim_keyword] = ACTIONS(8491), + [aux_sym_get_accessor_token1] = ACTIONS(8491), + [aux_sym_set_accessor_token1] = ACTIONS(8491), + [aux_sym_const_declaration_token1] = ACTIONS(8491), + [anon_sym_LPAREN] = ACTIONS(8493), + [aux_sym_as_type_clause_token2] = ACTIONS(8491), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8491), + [aux_sym_visibility_token1] = ACTIONS(8491), + [aux_sym_visibility_token2] = ACTIONS(8491), + [aux_sym_elseif_fragment_token1] = ACTIONS(8491), + [aux_sym_else_fragment_token1] = ACTIONS(8491), + [aux_sym_select_statement_token1] = ACTIONS(8491), + [aux_sym__for_header_token1] = ACTIONS(8491), + [aux_sym_do_statement_token1] = ACTIONS(8491), + [aux_sym_do_statement_token2] = ACTIONS(8491), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8491), + [aux_sym_exit_statement_token1] = ACTIONS(8491), + [sym_end_statement] = ACTIONS(8493), + [aux_sym_on_goto_statement_token1] = ACTIONS(8491), + [aux_sym_on_goto_statement_token2] = ACTIONS(8491), + [aux_sym_on_error_statement_token2] = ACTIONS(8491), + [sym__ambiguous_redim_statement] = ACTIONS(8493), + [aux_sym_erase_statement_token1] = ACTIONS(8491), + [aux_sym_open_statement_token1] = ACTIONS(8491), + [aux_sym_file_mode_token2] = ACTIONS(8491), + [aux_sym_file_access_token2] = ACTIONS(8491), + [aux_sym_file_lock_token2] = ACTIONS(8491), + [aux_sym_print_statement_token1] = ACTIONS(8491), + [anon_sym_PLUS] = ACTIONS(8493), + [anon_sym_DASH] = ACTIONS(8491), + [anon_sym_QMARK] = ACTIONS(8493), + [aux_sym_close_statement_token1] = ACTIONS(8491), + [aux_sym_put_statement_token1] = ACTIONS(8491), + [aux_sym_unlock_statement_token1] = ACTIONS(8491), + [aux_sym_seek_statement_token1] = ACTIONS(8491), + [sym_reset_statement] = ACTIONS(8491), + [aux_sym_raise_event_statement_token1] = ACTIONS(8491), + [sym_stop_statement] = ACTIONS(8491), + [sym_beep_statement] = ACTIONS(8491), + [aux_sym_unload_statement_token1] = ACTIONS(8491), + [aux_sym_def_type_statement_token1] = ACTIONS(8491), + [aux_sym_def_type_statement_token2] = ACTIONS(8491), + [aux_sym_def_type_statement_token3] = ACTIONS(8491), + [aux_sym_def_type_statement_token4] = ACTIONS(8491), + [aux_sym_def_type_statement_token5] = ACTIONS(8491), + [aux_sym_def_type_statement_token6] = ACTIONS(8491), + [aux_sym_def_type_statement_token7] = ACTIONS(8491), + [aux_sym_def_type_statement_token8] = ACTIONS(8491), + [aux_sym_def_type_statement_token9] = ACTIONS(8491), + [aux_sym_def_type_statement_token10] = ACTIONS(8491), + [aux_sym_def_type_statement_token11] = ACTIONS(8491), + [aux_sym_def_type_statement_token12] = ACTIONS(8491), + [aux_sym_def_type_statement_token13] = ACTIONS(8491), + [aux_sym_def_type_statement_token14] = ACTIONS(8491), + [aux_sym_call_statement_token1] = ACTIONS(8491), + [sym__ambiguous_call_statement] = ACTIONS(8491), + [aux_sym_addressof_expression_token1] = ACTIONS(8491), + [aux_sym_type_of_expression_token1] = ACTIONS(8491), + [aux_sym_unary_expression_token1] = ACTIONS(8491), + [sym_string_literal] = ACTIONS(8493), + [sym_number_literal] = ACTIONS(8493), + [aux_sym_boolean_literal_token1] = ACTIONS(8491), + [aux_sym_boolean_literal_token2] = ACTIONS(8491), + [sym_nothing_literal] = ACTIONS(8491), + [sym_null_literal] = ACTIONS(8491), + [sym_empty_literal] = ACTIONS(8491), + [sym_date_literal] = ACTIONS(8493), + [anon_sym_POUND] = ACTIONS(8491), + }, + [STATE(5303)] = { + [sym_do_condition] = STATE(6810), + [sym_identifier] = ACTIONS(8491), + [sym_newline] = ACTIONS(8493), + [anon_sym_COLON] = ACTIONS(8493), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8491), + [aux_sym_frm_property_statement_token1] = ACTIONS(8491), + [anon_sym_DOT] = ACTIONS(8491), + [anon_sym_BANG] = ACTIONS(8493), + [aux_sym__attribute_identifier_token1] = ACTIONS(8491), + [aux_sym_option_statement_token3] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8491), + [aux_sym_preprocessor_const_token1] = ACTIONS(8491), + [sym_static_modifier] = ACTIONS(8491), + [sym__dim_keyword] = ACTIONS(8491), + [sym__redim_keyword] = ACTIONS(8491), + [aux_sym_get_accessor_token1] = ACTIONS(8491), + [aux_sym_set_accessor_token1] = ACTIONS(8491), + [aux_sym_const_declaration_token1] = ACTIONS(8491), + [anon_sym_LPAREN] = ACTIONS(8493), + [aux_sym_as_type_clause_token2] = ACTIONS(8491), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8491), + [aux_sym_visibility_token1] = ACTIONS(8491), + [aux_sym_visibility_token2] = ACTIONS(8491), + [aux_sym_elseif_fragment_token1] = ACTIONS(8491), + [aux_sym_else_fragment_token1] = ACTIONS(8491), + [aux_sym_select_statement_token1] = ACTIONS(8491), + [aux_sym_select_statement_token2] = ACTIONS(8491), + [aux_sym__for_header_token1] = ACTIONS(8491), + [aux_sym_do_statement_token1] = ACTIONS(8491), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8491), + [aux_sym_exit_statement_token1] = ACTIONS(8491), + [sym_end_statement] = ACTIONS(8493), + [aux_sym_on_goto_statement_token1] = ACTIONS(8491), + [aux_sym_on_goto_statement_token2] = ACTIONS(8491), + [aux_sym_on_error_statement_token2] = ACTIONS(8491), + [sym__ambiguous_redim_statement] = ACTIONS(8493), + [aux_sym_erase_statement_token1] = ACTIONS(8491), + [aux_sym_open_statement_token1] = ACTIONS(8491), + [aux_sym_file_mode_token2] = ACTIONS(8491), + [aux_sym_file_access_token2] = ACTIONS(8491), + [aux_sym_file_lock_token2] = ACTIONS(8491), + [aux_sym_print_statement_token1] = ACTIONS(8491), + [anon_sym_PLUS] = ACTIONS(8493), + [anon_sym_DASH] = ACTIONS(8491), + [anon_sym_QMARK] = ACTIONS(8493), + [aux_sym_close_statement_token1] = ACTIONS(8491), + [aux_sym_put_statement_token1] = ACTIONS(8491), + [aux_sym_unlock_statement_token1] = ACTIONS(8491), + [aux_sym_seek_statement_token1] = ACTIONS(8491), + [sym_reset_statement] = ACTIONS(8491), + [aux_sym_raise_event_statement_token1] = ACTIONS(8491), + [sym_stop_statement] = ACTIONS(8491), + [sym_beep_statement] = ACTIONS(8491), + [aux_sym_unload_statement_token1] = ACTIONS(8491), + [aux_sym_def_type_statement_token1] = ACTIONS(8491), + [aux_sym_def_type_statement_token2] = ACTIONS(8491), + [aux_sym_def_type_statement_token3] = ACTIONS(8491), + [aux_sym_def_type_statement_token4] = ACTIONS(8491), + [aux_sym_def_type_statement_token5] = ACTIONS(8491), + [aux_sym_def_type_statement_token6] = ACTIONS(8491), + [aux_sym_def_type_statement_token7] = ACTIONS(8491), + [aux_sym_def_type_statement_token8] = ACTIONS(8491), + [aux_sym_def_type_statement_token9] = ACTIONS(8491), + [aux_sym_def_type_statement_token10] = ACTIONS(8491), + [aux_sym_def_type_statement_token11] = ACTIONS(8491), + [aux_sym_def_type_statement_token12] = ACTIONS(8491), + [aux_sym_def_type_statement_token13] = ACTIONS(8491), + [aux_sym_def_type_statement_token14] = ACTIONS(8491), + [aux_sym_call_statement_token1] = ACTIONS(8491), + [sym__ambiguous_call_statement] = ACTIONS(8491), + [aux_sym_addressof_expression_token1] = ACTIONS(8491), + [aux_sym_type_of_expression_token1] = ACTIONS(8491), + [aux_sym_unary_expression_token1] = ACTIONS(8491), + [sym_string_literal] = ACTIONS(8493), + [sym_number_literal] = ACTIONS(8493), + [aux_sym_boolean_literal_token1] = ACTIONS(8491), + [aux_sym_boolean_literal_token2] = ACTIONS(8491), + [sym_nothing_literal] = ACTIONS(8491), + [sym_null_literal] = ACTIONS(8491), + [sym_empty_literal] = ACTIONS(8491), + [sym_date_literal] = ACTIONS(8493), + [anon_sym_POUND] = ACTIONS(8491), + }, + [STATE(5304)] = { + [sym_identifier] = ACTIONS(7984), + [sym_newline] = ACTIONS(7986), + [anon_sym_COLON] = ACTIONS(7986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7984), + [aux_sym_frm_property_statement_token1] = ACTIONS(7984), + [anon_sym_EQ] = ACTIONS(7986), + [anon_sym_DOT] = ACTIONS(7984), + [anon_sym_BANG] = ACTIONS(7986), + [aux_sym__attribute_identifier_token1] = ACTIONS(7984), + [aux_sym_option_statement_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7984), + [aux_sym_preprocessor_const_token1] = ACTIONS(7984), + [sym_static_modifier] = ACTIONS(7984), + [sym__dim_keyword] = ACTIONS(7984), + [sym__redim_keyword] = ACTIONS(7984), + [aux_sym_get_accessor_token1] = ACTIONS(7984), + [aux_sym_set_accessor_token1] = ACTIONS(7984), + [anon_sym_COMMA] = ACTIONS(7986), + [aux_sym_const_declaration_token1] = ACTIONS(7984), + [anon_sym_LPAREN] = ACTIONS(7986), + [aux_sym_as_type_clause_token2] = ACTIONS(7984), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7984), + [aux_sym_visibility_token1] = ACTIONS(7984), + [aux_sym_visibility_token2] = ACTIONS(7984), + [aux_sym_elseif_fragment_token1] = ACTIONS(7984), + [aux_sym_else_fragment_token1] = ACTIONS(7984), + [aux_sym_select_statement_token1] = ACTIONS(7984), + [aux_sym__for_header_token1] = ACTIONS(7984), + [aux_sym_do_statement_token1] = ACTIONS(7984), + [aux_sym_do_statement_token2] = ACTIONS(7984), + [aux_sym_do_condition_token1] = ACTIONS(7984), + [aux_sym_with_statement_token1] = ACTIONS(7984), + [aux_sym_exit_statement_token1] = ACTIONS(7984), + [sym_end_statement] = ACTIONS(7986), + [aux_sym_on_goto_statement_token1] = ACTIONS(7984), + [aux_sym_on_goto_statement_token2] = ACTIONS(7984), + [aux_sym_on_error_statement_token2] = ACTIONS(7984), + [sym__ambiguous_redim_statement] = ACTIONS(7986), + [aux_sym_erase_statement_token1] = ACTIONS(7984), + [aux_sym_open_statement_token1] = ACTIONS(7984), + [aux_sym_file_mode_token2] = ACTIONS(7984), + [aux_sym_file_access_token2] = ACTIONS(7984), + [aux_sym_file_lock_token2] = ACTIONS(7984), + [aux_sym_print_statement_token1] = ACTIONS(7984), + [anon_sym_PLUS] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(7984), + [anon_sym_QMARK] = ACTIONS(7986), + [aux_sym_close_statement_token1] = ACTIONS(7984), + [aux_sym_put_statement_token1] = ACTIONS(7984), + [aux_sym_unlock_statement_token1] = ACTIONS(7984), + [aux_sym_seek_statement_token1] = ACTIONS(7984), + [sym_reset_statement] = ACTIONS(7984), + [aux_sym_raise_event_statement_token1] = ACTIONS(7984), + [sym_stop_statement] = ACTIONS(7984), + [sym_beep_statement] = ACTIONS(7984), + [aux_sym_unload_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token2] = ACTIONS(7984), + [aux_sym_def_type_statement_token3] = ACTIONS(7984), + [aux_sym_def_type_statement_token4] = ACTIONS(7984), + [aux_sym_def_type_statement_token5] = ACTIONS(7984), + [aux_sym_def_type_statement_token6] = ACTIONS(7984), + [aux_sym_def_type_statement_token7] = ACTIONS(7984), + [aux_sym_def_type_statement_token8] = ACTIONS(7984), + [aux_sym_def_type_statement_token9] = ACTIONS(7984), + [aux_sym_def_type_statement_token10] = ACTIONS(7984), + [aux_sym_def_type_statement_token11] = ACTIONS(7984), + [aux_sym_def_type_statement_token12] = ACTIONS(7984), + [aux_sym_def_type_statement_token13] = ACTIONS(7984), + [aux_sym_def_type_statement_token14] = ACTIONS(7984), + [aux_sym_call_statement_token1] = ACTIONS(7984), + [sym__ambiguous_call_statement] = ACTIONS(7984), + [aux_sym_addressof_expression_token1] = ACTIONS(7984), + [aux_sym_type_of_expression_token1] = ACTIONS(7984), + [aux_sym_unary_expression_token1] = ACTIONS(7984), + [sym_string_literal] = ACTIONS(7986), + [sym_number_literal] = ACTIONS(7986), + [aux_sym_boolean_literal_token1] = ACTIONS(7984), + [aux_sym_boolean_literal_token2] = ACTIONS(7984), + [sym_nothing_literal] = ACTIONS(7984), + [sym_null_literal] = ACTIONS(7984), + [sym_empty_literal] = ACTIONS(7984), + [sym_date_literal] = ACTIONS(7986), + [anon_sym_POUND] = ACTIONS(7984), + }, + [STATE(5305)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5802), + [sym_identifier] = ACTIONS(8154), + [sym_newline] = ACTIONS(8156), + [anon_sym_COLON] = ACTIONS(8156), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8154), + [aux_sym_frm_property_statement_token1] = ACTIONS(8154), + [anon_sym_DOT] = ACTIONS(8154), + [anon_sym_BANG] = ACTIONS(8156), + [aux_sym__attribute_identifier_token1] = ACTIONS(8154), + [aux_sym_option_statement_token3] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8154), + [aux_sym_preprocessor_const_token1] = ACTIONS(8154), + [sym_static_modifier] = ACTIONS(8154), + [sym__dim_keyword] = ACTIONS(8154), + [sym__redim_keyword] = ACTIONS(8154), + [aux_sym_get_accessor_token1] = ACTIONS(8154), + [aux_sym_set_accessor_token1] = ACTIONS(8154), + [anon_sym_COMMA] = ACTIONS(10543), + [aux_sym_const_declaration_token1] = ACTIONS(8154), + [anon_sym_LPAREN] = ACTIONS(8156), + [aux_sym_as_type_clause_token2] = ACTIONS(8154), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8154), + [aux_sym_visibility_token1] = ACTIONS(8154), + [aux_sym_visibility_token2] = ACTIONS(8154), + [aux_sym_elseif_fragment_token1] = ACTIONS(8154), + [aux_sym_else_fragment_token1] = ACTIONS(8154), + [aux_sym_select_statement_token1] = ACTIONS(8154), + [aux_sym__for_header_token1] = ACTIONS(8154), + [aux_sym_do_statement_token1] = ACTIONS(8154), + [aux_sym_do_statement_token2] = ACTIONS(8154), + [aux_sym_do_condition_token1] = ACTIONS(8154), + [aux_sym_with_statement_token1] = ACTIONS(8154), + [aux_sym_exit_statement_token1] = ACTIONS(8154), + [sym_end_statement] = ACTIONS(8156), + [aux_sym_on_goto_statement_token1] = ACTIONS(8154), + [aux_sym_on_goto_statement_token2] = ACTIONS(8154), + [aux_sym_on_error_statement_token2] = ACTIONS(8154), + [sym__ambiguous_redim_statement] = ACTIONS(8156), + [aux_sym_erase_statement_token1] = ACTIONS(8154), + [aux_sym_open_statement_token1] = ACTIONS(8154), + [aux_sym_file_mode_token2] = ACTIONS(8154), + [aux_sym_file_access_token2] = ACTIONS(8154), + [aux_sym_file_lock_token2] = ACTIONS(8154), + [aux_sym_print_statement_token1] = ACTIONS(8154), + [anon_sym_PLUS] = ACTIONS(8156), + [anon_sym_DASH] = ACTIONS(8154), + [anon_sym_QMARK] = ACTIONS(8156), + [aux_sym_close_statement_token1] = ACTIONS(8154), + [aux_sym_put_statement_token1] = ACTIONS(8154), + [aux_sym_unlock_statement_token1] = ACTIONS(8154), + [aux_sym_seek_statement_token1] = ACTIONS(8154), + [sym_reset_statement] = ACTIONS(8154), + [aux_sym_raise_event_statement_token1] = ACTIONS(8154), + [sym_stop_statement] = ACTIONS(8154), + [sym_beep_statement] = ACTIONS(8154), + [aux_sym_unload_statement_token1] = ACTIONS(8154), + [aux_sym_def_type_statement_token1] = ACTIONS(8154), + [aux_sym_def_type_statement_token2] = ACTIONS(8154), + [aux_sym_def_type_statement_token3] = ACTIONS(8154), + [aux_sym_def_type_statement_token4] = ACTIONS(8154), + [aux_sym_def_type_statement_token5] = ACTIONS(8154), + [aux_sym_def_type_statement_token6] = ACTIONS(8154), + [aux_sym_def_type_statement_token7] = ACTIONS(8154), + [aux_sym_def_type_statement_token8] = ACTIONS(8154), + [aux_sym_def_type_statement_token9] = ACTIONS(8154), + [aux_sym_def_type_statement_token10] = ACTIONS(8154), + [aux_sym_def_type_statement_token11] = ACTIONS(8154), + [aux_sym_def_type_statement_token12] = ACTIONS(8154), + [aux_sym_def_type_statement_token13] = ACTIONS(8154), + [aux_sym_def_type_statement_token14] = ACTIONS(8154), + [aux_sym_call_statement_token1] = ACTIONS(8154), + [sym__ambiguous_call_statement] = ACTIONS(8154), + [aux_sym_addressof_expression_token1] = ACTIONS(8154), + [aux_sym_type_of_expression_token1] = ACTIONS(8154), + [aux_sym_unary_expression_token1] = ACTIONS(8154), + [sym_string_literal] = ACTIONS(8156), + [sym_number_literal] = ACTIONS(8156), + [aux_sym_boolean_literal_token1] = ACTIONS(8154), + [aux_sym_boolean_literal_token2] = ACTIONS(8154), + [sym_nothing_literal] = ACTIONS(8154), + [sym_null_literal] = ACTIONS(8154), + [sym_empty_literal] = ACTIONS(8154), + [sym_date_literal] = ACTIONS(8156), + [anon_sym_POUND] = ACTIONS(8154), + }, + [STATE(5306)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5400), + [sym_identifier] = ACTIONS(8225), + [sym_newline] = ACTIONS(8227), + [anon_sym_COLON] = ACTIONS(8227), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8225), + [aux_sym_frm_property_statement_token1] = ACTIONS(8225), + [anon_sym_DOT] = ACTIONS(8225), + [anon_sym_BANG] = ACTIONS(8227), + [aux_sym__attribute_identifier_token1] = ACTIONS(8225), + [aux_sym_option_statement_token3] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8225), + [aux_sym_preprocessor_const_token1] = ACTIONS(8225), + [sym_static_modifier] = ACTIONS(8225), + [sym__dim_keyword] = ACTIONS(8225), + [sym__redim_keyword] = ACTIONS(8225), + [aux_sym_get_accessor_token1] = ACTIONS(8225), + [aux_sym_set_accessor_token1] = ACTIONS(8225), + [anon_sym_COMMA] = ACTIONS(10545), + [aux_sym_const_declaration_token1] = ACTIONS(8225), + [anon_sym_LPAREN] = ACTIONS(8227), + [aux_sym_as_type_clause_token2] = ACTIONS(8225), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8225), + [aux_sym_visibility_token1] = ACTIONS(8225), + [aux_sym_visibility_token2] = ACTIONS(8225), + [aux_sym_elseif_fragment_token1] = ACTIONS(8225), + [aux_sym_else_fragment_token1] = ACTIONS(8225), + [aux_sym_select_statement_token1] = ACTIONS(8225), + [aux_sym__for_header_token1] = ACTIONS(8225), + [aux_sym_do_statement_token1] = ACTIONS(8225), + [aux_sym_do_statement_token2] = ACTIONS(8225), + [aux_sym_do_condition_token1] = ACTIONS(8225), + [aux_sym_with_statement_token1] = ACTIONS(8225), + [aux_sym_exit_statement_token1] = ACTIONS(8225), + [sym_end_statement] = ACTIONS(8227), + [aux_sym_on_goto_statement_token1] = ACTIONS(8225), + [aux_sym_on_goto_statement_token2] = ACTIONS(8225), + [aux_sym_on_error_statement_token2] = ACTIONS(8225), + [sym__ambiguous_redim_statement] = ACTIONS(8227), + [aux_sym_erase_statement_token1] = ACTIONS(8225), + [aux_sym_open_statement_token1] = ACTIONS(8225), + [aux_sym_file_mode_token2] = ACTIONS(8225), + [aux_sym_file_access_token2] = ACTIONS(8225), + [aux_sym_file_lock_token2] = ACTIONS(8225), + [aux_sym_print_statement_token1] = ACTIONS(8225), + [anon_sym_PLUS] = ACTIONS(8227), + [anon_sym_DASH] = ACTIONS(8225), + [anon_sym_QMARK] = ACTIONS(8227), + [aux_sym_close_statement_token1] = ACTIONS(8225), + [aux_sym_put_statement_token1] = ACTIONS(8225), + [aux_sym_unlock_statement_token1] = ACTIONS(8225), + [aux_sym_seek_statement_token1] = ACTIONS(8225), + [sym_reset_statement] = ACTIONS(8225), + [aux_sym_raise_event_statement_token1] = ACTIONS(8225), + [sym_stop_statement] = ACTIONS(8225), + [sym_beep_statement] = ACTIONS(8225), + [aux_sym_unload_statement_token1] = ACTIONS(8225), + [aux_sym_def_type_statement_token1] = ACTIONS(8225), + [aux_sym_def_type_statement_token2] = ACTIONS(8225), + [aux_sym_def_type_statement_token3] = ACTIONS(8225), + [aux_sym_def_type_statement_token4] = ACTIONS(8225), + [aux_sym_def_type_statement_token5] = ACTIONS(8225), + [aux_sym_def_type_statement_token6] = ACTIONS(8225), + [aux_sym_def_type_statement_token7] = ACTIONS(8225), + [aux_sym_def_type_statement_token8] = ACTIONS(8225), + [aux_sym_def_type_statement_token9] = ACTIONS(8225), + [aux_sym_def_type_statement_token10] = ACTIONS(8225), + [aux_sym_def_type_statement_token11] = ACTIONS(8225), + [aux_sym_def_type_statement_token12] = ACTIONS(8225), + [aux_sym_def_type_statement_token13] = ACTIONS(8225), + [aux_sym_def_type_statement_token14] = ACTIONS(8225), + [aux_sym_call_statement_token1] = ACTIONS(8225), + [sym__ambiguous_call_statement] = ACTIONS(8225), + [aux_sym_addressof_expression_token1] = ACTIONS(8225), + [aux_sym_type_of_expression_token1] = ACTIONS(8225), + [aux_sym_unary_expression_token1] = ACTIONS(8225), + [sym_string_literal] = ACTIONS(8227), + [sym_number_literal] = ACTIONS(8227), + [aux_sym_boolean_literal_token1] = ACTIONS(8225), + [aux_sym_boolean_literal_token2] = ACTIONS(8225), + [sym_nothing_literal] = ACTIONS(8225), + [sym_null_literal] = ACTIONS(8225), + [sym_empty_literal] = ACTIONS(8225), + [sym_date_literal] = ACTIONS(8227), + [anon_sym_POUND] = ACTIONS(8225), + }, + [STATE(5307)] = { + [aux_sym_redim_statement_repeat1] = STATE(5498), + [sym_identifier] = ACTIONS(8561), + [sym_newline] = ACTIONS(8563), + [anon_sym_COLON] = ACTIONS(8563), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8561), + [aux_sym_frm_property_statement_token1] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8561), + [anon_sym_BANG] = ACTIONS(8563), + [aux_sym__attribute_identifier_token1] = ACTIONS(8561), + [aux_sym_option_statement_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8561), + [aux_sym_preprocessor_const_token1] = ACTIONS(8561), + [sym_static_modifier] = ACTIONS(8561), + [sym__dim_keyword] = ACTIONS(8561), + [sym__redim_keyword] = ACTIONS(8561), + [aux_sym_get_accessor_token1] = ACTIONS(8561), + [aux_sym_set_accessor_token1] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(10547), + [aux_sym_const_declaration_token1] = ACTIONS(8561), + [anon_sym_LPAREN] = ACTIONS(8563), + [aux_sym_as_type_clause_token2] = ACTIONS(8561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8561), + [aux_sym_visibility_token1] = ACTIONS(8561), + [aux_sym_visibility_token2] = ACTIONS(8561), + [aux_sym_elseif_fragment_token1] = ACTIONS(8561), + [aux_sym_else_fragment_token1] = ACTIONS(8561), + [aux_sym_select_statement_token1] = ACTIONS(8561), + [aux_sym__for_header_token1] = ACTIONS(8561), + [aux_sym_do_statement_token1] = ACTIONS(8561), + [aux_sym_do_condition_token1] = ACTIONS(8561), + [aux_sym_with_statement_token1] = ACTIONS(8561), + [aux_sym_exit_statement_token1] = ACTIONS(8561), + [sym_end_statement] = ACTIONS(8563), + [aux_sym_on_goto_statement_token1] = ACTIONS(8561), + [aux_sym_on_goto_statement_token2] = ACTIONS(8561), + [aux_sym_on_error_statement_token2] = ACTIONS(8561), + [sym__ambiguous_redim_statement] = ACTIONS(8563), + [aux_sym_erase_statement_token1] = ACTIONS(8561), + [aux_sym_open_statement_token1] = ACTIONS(8561), + [aux_sym_file_mode_token2] = ACTIONS(8561), + [aux_sym_file_access_token2] = ACTIONS(8561), + [aux_sym_file_lock_token2] = ACTIONS(8561), + [aux_sym_print_statement_token1] = ACTIONS(8561), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(8561), + [anon_sym_QMARK] = ACTIONS(8563), + [aux_sym_close_statement_token1] = ACTIONS(8561), + [aux_sym_put_statement_token1] = ACTIONS(8561), + [aux_sym_unlock_statement_token1] = ACTIONS(8561), + [aux_sym_seek_statement_token1] = ACTIONS(8561), + [sym_reset_statement] = ACTIONS(8561), + [aux_sym_raise_event_statement_token1] = ACTIONS(8561), + [sym_stop_statement] = ACTIONS(8561), + [sym_beep_statement] = ACTIONS(8561), + [aux_sym_unload_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token2] = ACTIONS(8561), + [aux_sym_def_type_statement_token3] = ACTIONS(8561), + [aux_sym_def_type_statement_token4] = ACTIONS(8561), + [aux_sym_def_type_statement_token5] = ACTIONS(8561), + [aux_sym_def_type_statement_token6] = ACTIONS(8561), + [aux_sym_def_type_statement_token7] = ACTIONS(8561), + [aux_sym_def_type_statement_token8] = ACTIONS(8561), + [aux_sym_def_type_statement_token9] = ACTIONS(8561), + [aux_sym_def_type_statement_token10] = ACTIONS(8561), + [aux_sym_def_type_statement_token11] = ACTIONS(8561), + [aux_sym_def_type_statement_token12] = ACTIONS(8561), + [aux_sym_def_type_statement_token13] = ACTIONS(8561), + [aux_sym_def_type_statement_token14] = ACTIONS(8561), + [aux_sym_call_statement_token1] = ACTIONS(8561), + [sym__ambiguous_call_statement] = ACTIONS(8561), + [aux_sym_addressof_expression_token1] = ACTIONS(8561), + [aux_sym_type_of_expression_token1] = ACTIONS(8561), + [aux_sym_unary_expression_token1] = ACTIONS(8561), + [sym_string_literal] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8563), + [aux_sym_boolean_literal_token1] = ACTIONS(8561), + [aux_sym_boolean_literal_token2] = ACTIONS(8561), + [sym_nothing_literal] = ACTIONS(8561), + [sym_null_literal] = ACTIONS(8561), + [sym_empty_literal] = ACTIONS(8561), + [sym_date_literal] = ACTIONS(8563), + [anon_sym_POUND] = ACTIONS(8561), + }, + [STATE(5308)] = { + [aux_sym_redim_statement_repeat1] = STATE(5507), + [sym_identifier] = ACTIONS(8561), + [sym_newline] = ACTIONS(8563), + [anon_sym_COLON] = ACTIONS(8563), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8561), + [aux_sym_frm_property_statement_token1] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8561), + [anon_sym_BANG] = ACTIONS(8563), + [aux_sym__attribute_identifier_token1] = ACTIONS(8561), + [aux_sym_option_statement_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8561), + [aux_sym_preprocessor_const_token1] = ACTIONS(8561), + [sym_static_modifier] = ACTIONS(8561), + [sym__dim_keyword] = ACTIONS(8561), + [sym__redim_keyword] = ACTIONS(8561), + [aux_sym_get_accessor_token1] = ACTIONS(8561), + [aux_sym_set_accessor_token1] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(10547), + [aux_sym_const_declaration_token1] = ACTIONS(8561), + [anon_sym_LPAREN] = ACTIONS(8563), + [aux_sym_as_type_clause_token2] = ACTIONS(8561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8561), + [aux_sym_visibility_token1] = ACTIONS(8561), + [aux_sym_visibility_token2] = ACTIONS(8561), + [aux_sym_elseif_fragment_token1] = ACTIONS(8561), + [aux_sym_else_fragment_token1] = ACTIONS(8561), + [aux_sym_select_statement_token1] = ACTIONS(8561), + [aux_sym__for_header_token1] = ACTIONS(8561), + [aux_sym_do_statement_token1] = ACTIONS(8561), + [aux_sym_do_condition_token1] = ACTIONS(8561), + [aux_sym_with_statement_token1] = ACTIONS(8561), + [aux_sym_exit_statement_token1] = ACTIONS(8561), + [sym_end_statement] = ACTIONS(8563), + [aux_sym_on_goto_statement_token1] = ACTIONS(8561), + [aux_sym_on_goto_statement_token2] = ACTIONS(8561), + [aux_sym_on_error_statement_token2] = ACTIONS(8561), + [sym__ambiguous_redim_statement] = ACTIONS(8563), + [aux_sym_erase_statement_token1] = ACTIONS(8561), + [aux_sym_open_statement_token1] = ACTIONS(8561), + [aux_sym_file_mode_token2] = ACTIONS(8561), + [aux_sym_file_access_token2] = ACTIONS(8561), + [aux_sym_file_lock_token2] = ACTIONS(8561), + [aux_sym_print_statement_token1] = ACTIONS(8561), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(8561), + [anon_sym_QMARK] = ACTIONS(8563), + [aux_sym_close_statement_token1] = ACTIONS(8561), + [aux_sym_put_statement_token1] = ACTIONS(8561), + [aux_sym_unlock_statement_token1] = ACTIONS(8561), + [aux_sym_seek_statement_token1] = ACTIONS(8561), + [sym_reset_statement] = ACTIONS(8561), + [aux_sym_raise_event_statement_token1] = ACTIONS(8561), + [sym_stop_statement] = ACTIONS(8561), + [sym_beep_statement] = ACTIONS(8561), + [aux_sym_unload_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token2] = ACTIONS(8561), + [aux_sym_def_type_statement_token3] = ACTIONS(8561), + [aux_sym_def_type_statement_token4] = ACTIONS(8561), + [aux_sym_def_type_statement_token5] = ACTIONS(8561), + [aux_sym_def_type_statement_token6] = ACTIONS(8561), + [aux_sym_def_type_statement_token7] = ACTIONS(8561), + [aux_sym_def_type_statement_token8] = ACTIONS(8561), + [aux_sym_def_type_statement_token9] = ACTIONS(8561), + [aux_sym_def_type_statement_token10] = ACTIONS(8561), + [aux_sym_def_type_statement_token11] = ACTIONS(8561), + [aux_sym_def_type_statement_token12] = ACTIONS(8561), + [aux_sym_def_type_statement_token13] = ACTIONS(8561), + [aux_sym_def_type_statement_token14] = ACTIONS(8561), + [aux_sym_call_statement_token1] = ACTIONS(8561), + [sym__ambiguous_call_statement] = ACTIONS(8561), + [aux_sym_addressof_expression_token1] = ACTIONS(8561), + [aux_sym_type_of_expression_token1] = ACTIONS(8561), + [aux_sym_unary_expression_token1] = ACTIONS(8561), + [sym_string_literal] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8563), + [aux_sym_boolean_literal_token1] = ACTIONS(8561), + [aux_sym_boolean_literal_token2] = ACTIONS(8561), + [sym_nothing_literal] = ACTIONS(8561), + [sym_null_literal] = ACTIONS(8561), + [sym_empty_literal] = ACTIONS(8561), + [sym_date_literal] = ACTIONS(8563), + [anon_sym_POUND] = ACTIONS(8561), + }, + [STATE(5309)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5273), + [sym_identifier] = ACTIONS(8154), + [sym_newline] = ACTIONS(8156), + [anon_sym_COLON] = ACTIONS(8156), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8154), + [aux_sym_frm_property_statement_token1] = ACTIONS(8154), + [anon_sym_DOT] = ACTIONS(8154), + [anon_sym_BANG] = ACTIONS(8156), + [aux_sym__attribute_identifier_token1] = ACTIONS(8154), + [aux_sym_option_statement_token3] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8154), + [aux_sym_preprocessor_const_token1] = ACTIONS(8154), + [sym_static_modifier] = ACTIONS(8154), + [sym__dim_keyword] = ACTIONS(8154), + [sym__redim_keyword] = ACTIONS(8154), + [aux_sym_get_accessor_token1] = ACTIONS(8154), + [aux_sym_set_accessor_token1] = ACTIONS(8154), + [anon_sym_COMMA] = ACTIONS(10500), + [aux_sym_const_declaration_token1] = ACTIONS(8154), + [anon_sym_LPAREN] = ACTIONS(8156), + [aux_sym_as_type_clause_token2] = ACTIONS(8154), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8154), + [aux_sym_visibility_token1] = ACTIONS(8154), + [aux_sym_visibility_token2] = ACTIONS(8154), + [aux_sym_elseif_fragment_token1] = ACTIONS(8154), + [aux_sym_else_fragment_token1] = ACTIONS(8154), + [aux_sym_select_statement_token1] = ACTIONS(8154), + [aux_sym__for_header_token1] = ACTIONS(8154), + [aux_sym_do_statement_token1] = ACTIONS(8154), + [aux_sym_do_condition_token1] = ACTIONS(8154), + [aux_sym_while_statement_token1] = ACTIONS(8154), + [aux_sym_with_statement_token1] = ACTIONS(8154), + [aux_sym_exit_statement_token1] = ACTIONS(8154), + [sym_end_statement] = ACTIONS(8156), + [aux_sym_on_goto_statement_token1] = ACTIONS(8154), + [aux_sym_on_goto_statement_token2] = ACTIONS(8154), + [aux_sym_on_error_statement_token2] = ACTIONS(8154), + [sym__ambiguous_redim_statement] = ACTIONS(8156), + [aux_sym_erase_statement_token1] = ACTIONS(8154), + [aux_sym_open_statement_token1] = ACTIONS(8154), + [aux_sym_file_mode_token2] = ACTIONS(8154), + [aux_sym_file_access_token2] = ACTIONS(8154), + [aux_sym_file_lock_token2] = ACTIONS(8154), + [aux_sym_print_statement_token1] = ACTIONS(8154), + [anon_sym_PLUS] = ACTIONS(8156), + [anon_sym_DASH] = ACTIONS(8154), + [anon_sym_QMARK] = ACTIONS(8156), + [aux_sym_close_statement_token1] = ACTIONS(8154), + [aux_sym_put_statement_token1] = ACTIONS(8154), + [aux_sym_unlock_statement_token1] = ACTIONS(8154), + [aux_sym_seek_statement_token1] = ACTIONS(8154), + [sym_reset_statement] = ACTIONS(8154), + [aux_sym_raise_event_statement_token1] = ACTIONS(8154), + [sym_stop_statement] = ACTIONS(8154), + [sym_beep_statement] = ACTIONS(8154), + [aux_sym_unload_statement_token1] = ACTIONS(8154), + [aux_sym_def_type_statement_token1] = ACTIONS(8154), + [aux_sym_def_type_statement_token2] = ACTIONS(8154), + [aux_sym_def_type_statement_token3] = ACTIONS(8154), + [aux_sym_def_type_statement_token4] = ACTIONS(8154), + [aux_sym_def_type_statement_token5] = ACTIONS(8154), + [aux_sym_def_type_statement_token6] = ACTIONS(8154), + [aux_sym_def_type_statement_token7] = ACTIONS(8154), + [aux_sym_def_type_statement_token8] = ACTIONS(8154), + [aux_sym_def_type_statement_token9] = ACTIONS(8154), + [aux_sym_def_type_statement_token10] = ACTIONS(8154), + [aux_sym_def_type_statement_token11] = ACTIONS(8154), + [aux_sym_def_type_statement_token12] = ACTIONS(8154), + [aux_sym_def_type_statement_token13] = ACTIONS(8154), + [aux_sym_def_type_statement_token14] = ACTIONS(8154), + [aux_sym_call_statement_token1] = ACTIONS(8154), + [sym__ambiguous_call_statement] = ACTIONS(8154), + [aux_sym_addressof_expression_token1] = ACTIONS(8154), + [aux_sym_type_of_expression_token1] = ACTIONS(8154), + [aux_sym_unary_expression_token1] = ACTIONS(8154), + [sym_string_literal] = ACTIONS(8156), + [sym_number_literal] = ACTIONS(8156), + [aux_sym_boolean_literal_token1] = ACTIONS(8154), + [aux_sym_boolean_literal_token2] = ACTIONS(8154), + [sym_nothing_literal] = ACTIONS(8154), + [sym_null_literal] = ACTIONS(8154), + [sym_empty_literal] = ACTIONS(8154), + [sym_date_literal] = ACTIONS(8156), + [anon_sym_POUND] = ACTIONS(8154), + }, + [STATE(5310)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5273), + [sym_identifier] = ACTIONS(8158), + [sym_newline] = ACTIONS(8160), + [anon_sym_COLON] = ACTIONS(8160), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8158), + [aux_sym_frm_property_statement_token1] = ACTIONS(8158), + [anon_sym_DOT] = ACTIONS(8158), + [anon_sym_BANG] = ACTIONS(8160), + [aux_sym__attribute_identifier_token1] = ACTIONS(8158), + [aux_sym_option_statement_token3] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8158), + [aux_sym_preprocessor_const_token1] = ACTIONS(8158), + [sym_static_modifier] = ACTIONS(8158), + [sym__dim_keyword] = ACTIONS(8158), + [sym__redim_keyword] = ACTIONS(8158), + [aux_sym_get_accessor_token1] = ACTIONS(8158), + [aux_sym_set_accessor_token1] = ACTIONS(8158), + [anon_sym_COMMA] = ACTIONS(10500), + [aux_sym_const_declaration_token1] = ACTIONS(8158), + [anon_sym_LPAREN] = ACTIONS(8160), + [aux_sym_as_type_clause_token2] = ACTIONS(8158), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8158), + [aux_sym_visibility_token1] = ACTIONS(8158), + [aux_sym_visibility_token2] = ACTIONS(8158), + [aux_sym_elseif_fragment_token1] = ACTIONS(8158), + [aux_sym_else_fragment_token1] = ACTIONS(8158), + [aux_sym_select_statement_token1] = ACTIONS(8158), + [aux_sym__for_header_token1] = ACTIONS(8158), + [aux_sym_do_statement_token1] = ACTIONS(8158), + [aux_sym_do_condition_token1] = ACTIONS(8158), + [aux_sym_while_statement_token1] = ACTIONS(8158), + [aux_sym_with_statement_token1] = ACTIONS(8158), + [aux_sym_exit_statement_token1] = ACTIONS(8158), + [sym_end_statement] = ACTIONS(8160), + [aux_sym_on_goto_statement_token1] = ACTIONS(8158), + [aux_sym_on_goto_statement_token2] = ACTIONS(8158), + [aux_sym_on_error_statement_token2] = ACTIONS(8158), + [sym__ambiguous_redim_statement] = ACTIONS(8160), + [aux_sym_erase_statement_token1] = ACTIONS(8158), + [aux_sym_open_statement_token1] = ACTIONS(8158), + [aux_sym_file_mode_token2] = ACTIONS(8158), + [aux_sym_file_access_token2] = ACTIONS(8158), + [aux_sym_file_lock_token2] = ACTIONS(8158), + [aux_sym_print_statement_token1] = ACTIONS(8158), + [anon_sym_PLUS] = ACTIONS(8160), + [anon_sym_DASH] = ACTIONS(8158), + [anon_sym_QMARK] = ACTIONS(8160), + [aux_sym_close_statement_token1] = ACTIONS(8158), + [aux_sym_put_statement_token1] = ACTIONS(8158), + [aux_sym_unlock_statement_token1] = ACTIONS(8158), + [aux_sym_seek_statement_token1] = ACTIONS(8158), + [sym_reset_statement] = ACTIONS(8158), + [aux_sym_raise_event_statement_token1] = ACTIONS(8158), + [sym_stop_statement] = ACTIONS(8158), + [sym_beep_statement] = ACTIONS(8158), + [aux_sym_unload_statement_token1] = ACTIONS(8158), + [aux_sym_def_type_statement_token1] = ACTIONS(8158), + [aux_sym_def_type_statement_token2] = ACTIONS(8158), + [aux_sym_def_type_statement_token3] = ACTIONS(8158), + [aux_sym_def_type_statement_token4] = ACTIONS(8158), + [aux_sym_def_type_statement_token5] = ACTIONS(8158), + [aux_sym_def_type_statement_token6] = ACTIONS(8158), + [aux_sym_def_type_statement_token7] = ACTIONS(8158), + [aux_sym_def_type_statement_token8] = ACTIONS(8158), + [aux_sym_def_type_statement_token9] = ACTIONS(8158), + [aux_sym_def_type_statement_token10] = ACTIONS(8158), + [aux_sym_def_type_statement_token11] = ACTIONS(8158), + [aux_sym_def_type_statement_token12] = ACTIONS(8158), + [aux_sym_def_type_statement_token13] = ACTIONS(8158), + [aux_sym_def_type_statement_token14] = ACTIONS(8158), + [aux_sym_call_statement_token1] = ACTIONS(8158), + [sym__ambiguous_call_statement] = ACTIONS(8158), + [aux_sym_addressof_expression_token1] = ACTIONS(8158), + [aux_sym_type_of_expression_token1] = ACTIONS(8158), + [aux_sym_unary_expression_token1] = ACTIONS(8158), + [sym_string_literal] = ACTIONS(8160), + [sym_number_literal] = ACTIONS(8160), + [aux_sym_boolean_literal_token1] = ACTIONS(8158), + [aux_sym_boolean_literal_token2] = ACTIONS(8158), + [sym_nothing_literal] = ACTIONS(8158), + [sym_null_literal] = ACTIONS(8158), + [sym_empty_literal] = ACTIONS(8158), + [sym_date_literal] = ACTIONS(8160), + [anon_sym_POUND] = ACTIONS(8158), + }, + [STATE(5311)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5273), + [sym_identifier] = ACTIONS(8166), + [sym_newline] = ACTIONS(8168), + [anon_sym_COLON] = ACTIONS(8168), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8166), + [aux_sym_frm_property_statement_token1] = ACTIONS(8166), + [anon_sym_DOT] = ACTIONS(8166), + [anon_sym_BANG] = ACTIONS(8168), + [aux_sym__attribute_identifier_token1] = ACTIONS(8166), + [aux_sym_option_statement_token3] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8166), + [aux_sym_preprocessor_const_token1] = ACTIONS(8166), + [sym_static_modifier] = ACTIONS(8166), + [sym__dim_keyword] = ACTIONS(8166), + [sym__redim_keyword] = ACTIONS(8166), + [aux_sym_get_accessor_token1] = ACTIONS(8166), + [aux_sym_set_accessor_token1] = ACTIONS(8166), + [anon_sym_COMMA] = ACTIONS(10500), + [aux_sym_const_declaration_token1] = ACTIONS(8166), + [anon_sym_LPAREN] = ACTIONS(8168), + [aux_sym_as_type_clause_token2] = ACTIONS(8166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8166), + [aux_sym_visibility_token1] = ACTIONS(8166), + [aux_sym_visibility_token2] = ACTIONS(8166), + [aux_sym_elseif_fragment_token1] = ACTIONS(8166), + [aux_sym_else_fragment_token1] = ACTIONS(8166), + [aux_sym_select_statement_token1] = ACTIONS(8166), + [aux_sym__for_header_token1] = ACTIONS(8166), + [aux_sym_do_statement_token1] = ACTIONS(8166), + [aux_sym_do_condition_token1] = ACTIONS(8166), + [aux_sym_while_statement_token1] = ACTIONS(8166), + [aux_sym_with_statement_token1] = ACTIONS(8166), + [aux_sym_exit_statement_token1] = ACTIONS(8166), + [sym_end_statement] = ACTIONS(8168), + [aux_sym_on_goto_statement_token1] = ACTIONS(8166), + [aux_sym_on_goto_statement_token2] = ACTIONS(8166), + [aux_sym_on_error_statement_token2] = ACTIONS(8166), + [sym__ambiguous_redim_statement] = ACTIONS(8168), + [aux_sym_erase_statement_token1] = ACTIONS(8166), + [aux_sym_open_statement_token1] = ACTIONS(8166), + [aux_sym_file_mode_token2] = ACTIONS(8166), + [aux_sym_file_access_token2] = ACTIONS(8166), + [aux_sym_file_lock_token2] = ACTIONS(8166), + [aux_sym_print_statement_token1] = ACTIONS(8166), + [anon_sym_PLUS] = ACTIONS(8168), + [anon_sym_DASH] = ACTIONS(8166), + [anon_sym_QMARK] = ACTIONS(8168), + [aux_sym_close_statement_token1] = ACTIONS(8166), + [aux_sym_put_statement_token1] = ACTIONS(8166), + [aux_sym_unlock_statement_token1] = ACTIONS(8166), + [aux_sym_seek_statement_token1] = ACTIONS(8166), + [sym_reset_statement] = ACTIONS(8166), + [aux_sym_raise_event_statement_token1] = ACTIONS(8166), + [sym_stop_statement] = ACTIONS(8166), + [sym_beep_statement] = ACTIONS(8166), + [aux_sym_unload_statement_token1] = ACTIONS(8166), + [aux_sym_def_type_statement_token1] = ACTIONS(8166), + [aux_sym_def_type_statement_token2] = ACTIONS(8166), + [aux_sym_def_type_statement_token3] = ACTIONS(8166), + [aux_sym_def_type_statement_token4] = ACTIONS(8166), + [aux_sym_def_type_statement_token5] = ACTIONS(8166), + [aux_sym_def_type_statement_token6] = ACTIONS(8166), + [aux_sym_def_type_statement_token7] = ACTIONS(8166), + [aux_sym_def_type_statement_token8] = ACTIONS(8166), + [aux_sym_def_type_statement_token9] = ACTIONS(8166), + [aux_sym_def_type_statement_token10] = ACTIONS(8166), + [aux_sym_def_type_statement_token11] = ACTIONS(8166), + [aux_sym_def_type_statement_token12] = ACTIONS(8166), + [aux_sym_def_type_statement_token13] = ACTIONS(8166), + [aux_sym_def_type_statement_token14] = ACTIONS(8166), + [aux_sym_call_statement_token1] = ACTIONS(8166), + [sym__ambiguous_call_statement] = ACTIONS(8166), + [aux_sym_addressof_expression_token1] = ACTIONS(8166), + [aux_sym_type_of_expression_token1] = ACTIONS(8166), + [aux_sym_unary_expression_token1] = ACTIONS(8166), + [sym_string_literal] = ACTIONS(8168), + [sym_number_literal] = ACTIONS(8168), + [aux_sym_boolean_literal_token1] = ACTIONS(8166), + [aux_sym_boolean_literal_token2] = ACTIONS(8166), + [sym_nothing_literal] = ACTIONS(8166), + [sym_null_literal] = ACTIONS(8166), + [sym_empty_literal] = ACTIONS(8166), + [sym_date_literal] = ACTIONS(8168), + [anon_sym_POUND] = ACTIONS(8166), + }, + [STATE(5312)] = { + [aux_sym_const_declaration_repeat1] = STATE(5274), + [sym_identifier] = ACTIONS(8174), + [sym_newline] = ACTIONS(8176), + [anon_sym_COLON] = ACTIONS(8176), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8174), + [aux_sym_frm_property_statement_token1] = ACTIONS(8174), + [anon_sym_DOT] = ACTIONS(8174), + [anon_sym_BANG] = ACTIONS(8176), + [aux_sym__attribute_identifier_token1] = ACTIONS(8174), + [aux_sym_option_statement_token3] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8174), + [aux_sym_preprocessor_const_token1] = ACTIONS(8174), + [sym_static_modifier] = ACTIONS(8174), + [sym__dim_keyword] = ACTIONS(8174), + [sym__redim_keyword] = ACTIONS(8174), + [aux_sym_get_accessor_token1] = ACTIONS(8174), + [aux_sym_set_accessor_token1] = ACTIONS(8174), + [anon_sym_COMMA] = ACTIONS(10502), + [aux_sym_const_declaration_token1] = ACTIONS(8174), + [anon_sym_LPAREN] = ACTIONS(8176), + [aux_sym_as_type_clause_token2] = ACTIONS(8174), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8174), + [aux_sym_visibility_token1] = ACTIONS(8174), + [aux_sym_visibility_token2] = ACTIONS(8174), + [aux_sym_elseif_fragment_token1] = ACTIONS(8174), + [aux_sym_else_fragment_token1] = ACTIONS(8174), + [aux_sym_select_statement_token1] = ACTIONS(8174), + [aux_sym__for_header_token1] = ACTIONS(8174), + [aux_sym_do_statement_token1] = ACTIONS(8174), + [aux_sym_do_condition_token1] = ACTIONS(8174), + [aux_sym_while_statement_token1] = ACTIONS(8174), + [aux_sym_with_statement_token1] = ACTIONS(8174), + [aux_sym_exit_statement_token1] = ACTIONS(8174), + [sym_end_statement] = ACTIONS(8176), + [aux_sym_on_goto_statement_token1] = ACTIONS(8174), + [aux_sym_on_goto_statement_token2] = ACTIONS(8174), + [aux_sym_on_error_statement_token2] = ACTIONS(8174), + [sym__ambiguous_redim_statement] = ACTIONS(8176), + [aux_sym_erase_statement_token1] = ACTIONS(8174), + [aux_sym_open_statement_token1] = ACTIONS(8174), + [aux_sym_file_mode_token2] = ACTIONS(8174), + [aux_sym_file_access_token2] = ACTIONS(8174), + [aux_sym_file_lock_token2] = ACTIONS(8174), + [aux_sym_print_statement_token1] = ACTIONS(8174), + [anon_sym_PLUS] = ACTIONS(8176), + [anon_sym_DASH] = ACTIONS(8174), + [anon_sym_QMARK] = ACTIONS(8176), + [aux_sym_close_statement_token1] = ACTIONS(8174), + [aux_sym_put_statement_token1] = ACTIONS(8174), + [aux_sym_unlock_statement_token1] = ACTIONS(8174), + [aux_sym_seek_statement_token1] = ACTIONS(8174), + [sym_reset_statement] = ACTIONS(8174), + [aux_sym_raise_event_statement_token1] = ACTIONS(8174), + [sym_stop_statement] = ACTIONS(8174), + [sym_beep_statement] = ACTIONS(8174), + [aux_sym_unload_statement_token1] = ACTIONS(8174), + [aux_sym_def_type_statement_token1] = ACTIONS(8174), + [aux_sym_def_type_statement_token2] = ACTIONS(8174), + [aux_sym_def_type_statement_token3] = ACTIONS(8174), + [aux_sym_def_type_statement_token4] = ACTIONS(8174), + [aux_sym_def_type_statement_token5] = ACTIONS(8174), + [aux_sym_def_type_statement_token6] = ACTIONS(8174), + [aux_sym_def_type_statement_token7] = ACTIONS(8174), + [aux_sym_def_type_statement_token8] = ACTIONS(8174), + [aux_sym_def_type_statement_token9] = ACTIONS(8174), + [aux_sym_def_type_statement_token10] = ACTIONS(8174), + [aux_sym_def_type_statement_token11] = ACTIONS(8174), + [aux_sym_def_type_statement_token12] = ACTIONS(8174), + [aux_sym_def_type_statement_token13] = ACTIONS(8174), + [aux_sym_def_type_statement_token14] = ACTIONS(8174), + [aux_sym_call_statement_token1] = ACTIONS(8174), + [sym__ambiguous_call_statement] = ACTIONS(8174), + [aux_sym_addressof_expression_token1] = ACTIONS(8174), + [aux_sym_type_of_expression_token1] = ACTIONS(8174), + [aux_sym_unary_expression_token1] = ACTIONS(8174), + [sym_string_literal] = ACTIONS(8176), + [sym_number_literal] = ACTIONS(8176), + [aux_sym_boolean_literal_token1] = ACTIONS(8174), + [aux_sym_boolean_literal_token2] = ACTIONS(8174), + [sym_nothing_literal] = ACTIONS(8174), + [sym_null_literal] = ACTIONS(8174), + [sym_empty_literal] = ACTIONS(8174), + [sym_date_literal] = ACTIONS(8176), + [anon_sym_POUND] = ACTIONS(8174), + }, + [STATE(5313)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5400), + [sym_identifier] = ACTIONS(8231), + [sym_newline] = ACTIONS(8233), + [anon_sym_COLON] = ACTIONS(8233), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8231), + [aux_sym_frm_property_statement_token1] = ACTIONS(8231), + [anon_sym_DOT] = ACTIONS(8231), + [anon_sym_BANG] = ACTIONS(8233), + [aux_sym__attribute_identifier_token1] = ACTIONS(8231), + [aux_sym_option_statement_token3] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8231), + [aux_sym_preprocessor_const_token1] = ACTIONS(8231), + [sym_static_modifier] = ACTIONS(8231), + [sym__dim_keyword] = ACTIONS(8231), + [sym__redim_keyword] = ACTIONS(8231), + [aux_sym_get_accessor_token1] = ACTIONS(8231), + [aux_sym_set_accessor_token1] = ACTIONS(8231), + [anon_sym_COMMA] = ACTIONS(10545), + [aux_sym_const_declaration_token1] = ACTIONS(8231), + [anon_sym_LPAREN] = ACTIONS(8233), + [aux_sym_as_type_clause_token2] = ACTIONS(8231), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8231), + [aux_sym_visibility_token1] = ACTIONS(8231), + [aux_sym_visibility_token2] = ACTIONS(8231), + [aux_sym_elseif_fragment_token1] = ACTIONS(8231), + [aux_sym_else_fragment_token1] = ACTIONS(8231), + [aux_sym_select_statement_token1] = ACTIONS(8231), + [aux_sym__for_header_token1] = ACTIONS(8231), + [aux_sym_do_statement_token1] = ACTIONS(8231), + [aux_sym_do_statement_token2] = ACTIONS(8231), + [aux_sym_do_condition_token1] = ACTIONS(8231), + [aux_sym_with_statement_token1] = ACTIONS(8231), + [aux_sym_exit_statement_token1] = ACTIONS(8231), + [sym_end_statement] = ACTIONS(8233), + [aux_sym_on_goto_statement_token1] = ACTIONS(8231), + [aux_sym_on_goto_statement_token2] = ACTIONS(8231), + [aux_sym_on_error_statement_token2] = ACTIONS(8231), + [sym__ambiguous_redim_statement] = ACTIONS(8233), + [aux_sym_erase_statement_token1] = ACTIONS(8231), + [aux_sym_open_statement_token1] = ACTIONS(8231), + [aux_sym_file_mode_token2] = ACTIONS(8231), + [aux_sym_file_access_token2] = ACTIONS(8231), + [aux_sym_file_lock_token2] = ACTIONS(8231), + [aux_sym_print_statement_token1] = ACTIONS(8231), + [anon_sym_PLUS] = ACTIONS(8233), + [anon_sym_DASH] = ACTIONS(8231), + [anon_sym_QMARK] = ACTIONS(8233), + [aux_sym_close_statement_token1] = ACTIONS(8231), + [aux_sym_put_statement_token1] = ACTIONS(8231), + [aux_sym_unlock_statement_token1] = ACTIONS(8231), + [aux_sym_seek_statement_token1] = ACTIONS(8231), + [sym_reset_statement] = ACTIONS(8231), + [aux_sym_raise_event_statement_token1] = ACTIONS(8231), + [sym_stop_statement] = ACTIONS(8231), + [sym_beep_statement] = ACTIONS(8231), + [aux_sym_unload_statement_token1] = ACTIONS(8231), + [aux_sym_def_type_statement_token1] = ACTIONS(8231), + [aux_sym_def_type_statement_token2] = ACTIONS(8231), + [aux_sym_def_type_statement_token3] = ACTIONS(8231), + [aux_sym_def_type_statement_token4] = ACTIONS(8231), + [aux_sym_def_type_statement_token5] = ACTIONS(8231), + [aux_sym_def_type_statement_token6] = ACTIONS(8231), + [aux_sym_def_type_statement_token7] = ACTIONS(8231), + [aux_sym_def_type_statement_token8] = ACTIONS(8231), + [aux_sym_def_type_statement_token9] = ACTIONS(8231), + [aux_sym_def_type_statement_token10] = ACTIONS(8231), + [aux_sym_def_type_statement_token11] = ACTIONS(8231), + [aux_sym_def_type_statement_token12] = ACTIONS(8231), + [aux_sym_def_type_statement_token13] = ACTIONS(8231), + [aux_sym_def_type_statement_token14] = ACTIONS(8231), + [aux_sym_call_statement_token1] = ACTIONS(8231), + [sym__ambiguous_call_statement] = ACTIONS(8231), + [aux_sym_addressof_expression_token1] = ACTIONS(8231), + [aux_sym_type_of_expression_token1] = ACTIONS(8231), + [aux_sym_unary_expression_token1] = ACTIONS(8231), + [sym_string_literal] = ACTIONS(8233), + [sym_number_literal] = ACTIONS(8233), + [aux_sym_boolean_literal_token1] = ACTIONS(8231), + [aux_sym_boolean_literal_token2] = ACTIONS(8231), + [sym_nothing_literal] = ACTIONS(8231), + [sym_null_literal] = ACTIONS(8231), + [sym_empty_literal] = ACTIONS(8231), + [sym_date_literal] = ACTIONS(8233), + [anon_sym_POUND] = ACTIONS(8231), + }, + [STATE(5314)] = { + [aux_sym_input_statement_repeat1] = STATE(5413), + [sym_identifier] = ACTIONS(8237), + [sym_newline] = ACTIONS(8239), + [anon_sym_COLON] = ACTIONS(8239), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8237), + [aux_sym_frm_property_statement_token1] = ACTIONS(8237), + [anon_sym_DOT] = ACTIONS(8237), + [anon_sym_BANG] = ACTIONS(8239), + [aux_sym__attribute_identifier_token1] = ACTIONS(8237), + [aux_sym_option_statement_token3] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8237), + [aux_sym_preprocessor_const_token1] = ACTIONS(8237), + [sym_static_modifier] = ACTIONS(8237), + [sym__dim_keyword] = ACTIONS(8237), + [sym__redim_keyword] = ACTIONS(8237), + [aux_sym_get_accessor_token1] = ACTIONS(8237), + [aux_sym_set_accessor_token1] = ACTIONS(8237), + [anon_sym_COMMA] = ACTIONS(10356), + [aux_sym_const_declaration_token1] = ACTIONS(8237), + [anon_sym_LPAREN] = ACTIONS(8239), + [aux_sym_as_type_clause_token2] = ACTIONS(8237), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8237), + [aux_sym_visibility_token1] = ACTIONS(8237), + [aux_sym_visibility_token2] = ACTIONS(8237), + [aux_sym_elseif_fragment_token1] = ACTIONS(8237), + [aux_sym_else_fragment_token1] = ACTIONS(8237), + [aux_sym_select_statement_token1] = ACTIONS(8237), + [aux_sym__for_header_token1] = ACTIONS(8237), + [aux_sym_do_statement_token1] = ACTIONS(8237), + [aux_sym_do_statement_token2] = ACTIONS(8237), + [aux_sym_do_condition_token1] = ACTIONS(8237), + [aux_sym_with_statement_token1] = ACTIONS(8237), + [aux_sym_exit_statement_token1] = ACTIONS(8237), + [sym_end_statement] = ACTIONS(8239), + [aux_sym_on_goto_statement_token1] = ACTIONS(8237), + [aux_sym_on_goto_statement_token2] = ACTIONS(8237), + [aux_sym_on_error_statement_token2] = ACTIONS(8237), + [sym__ambiguous_redim_statement] = ACTIONS(8239), + [aux_sym_erase_statement_token1] = ACTIONS(8237), + [aux_sym_open_statement_token1] = ACTIONS(8237), + [aux_sym_file_mode_token2] = ACTIONS(8237), + [aux_sym_file_access_token2] = ACTIONS(8237), + [aux_sym_file_lock_token2] = ACTIONS(8237), + [aux_sym_print_statement_token1] = ACTIONS(8237), + [anon_sym_PLUS] = ACTIONS(8239), + [anon_sym_DASH] = ACTIONS(8237), + [anon_sym_QMARK] = ACTIONS(8239), + [aux_sym_close_statement_token1] = ACTIONS(8237), + [aux_sym_put_statement_token1] = ACTIONS(8237), + [aux_sym_unlock_statement_token1] = ACTIONS(8237), + [aux_sym_seek_statement_token1] = ACTIONS(8237), + [sym_reset_statement] = ACTIONS(8237), + [aux_sym_raise_event_statement_token1] = ACTIONS(8237), + [sym_stop_statement] = ACTIONS(8237), + [sym_beep_statement] = ACTIONS(8237), + [aux_sym_unload_statement_token1] = ACTIONS(8237), + [aux_sym_def_type_statement_token1] = ACTIONS(8237), + [aux_sym_def_type_statement_token2] = ACTIONS(8237), + [aux_sym_def_type_statement_token3] = ACTIONS(8237), + [aux_sym_def_type_statement_token4] = ACTIONS(8237), + [aux_sym_def_type_statement_token5] = ACTIONS(8237), + [aux_sym_def_type_statement_token6] = ACTIONS(8237), + [aux_sym_def_type_statement_token7] = ACTIONS(8237), + [aux_sym_def_type_statement_token8] = ACTIONS(8237), + [aux_sym_def_type_statement_token9] = ACTIONS(8237), + [aux_sym_def_type_statement_token10] = ACTIONS(8237), + [aux_sym_def_type_statement_token11] = ACTIONS(8237), + [aux_sym_def_type_statement_token12] = ACTIONS(8237), + [aux_sym_def_type_statement_token13] = ACTIONS(8237), + [aux_sym_def_type_statement_token14] = ACTIONS(8237), + [aux_sym_call_statement_token1] = ACTIONS(8237), + [sym__ambiguous_call_statement] = ACTIONS(8237), + [aux_sym_addressof_expression_token1] = ACTIONS(8237), + [aux_sym_type_of_expression_token1] = ACTIONS(8237), + [aux_sym_unary_expression_token1] = ACTIONS(8237), + [sym_string_literal] = ACTIONS(8239), + [sym_number_literal] = ACTIONS(8239), + [aux_sym_boolean_literal_token1] = ACTIONS(8237), + [aux_sym_boolean_literal_token2] = ACTIONS(8237), + [sym_nothing_literal] = ACTIONS(8237), + [sym_null_literal] = ACTIONS(8237), + [sym_empty_literal] = ACTIONS(8237), + [sym_date_literal] = ACTIONS(8239), + [anon_sym_POUND] = ACTIONS(8237), + }, + [STATE(5315)] = { + [sym_do_condition] = STATE(6713), + [sym_identifier] = ACTIONS(8170), + [sym_newline] = ACTIONS(8172), + [anon_sym_COLON] = ACTIONS(8172), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8170), + [aux_sym_frm_property_statement_token1] = ACTIONS(8170), + [anon_sym_DOT] = ACTIONS(8170), + [anon_sym_BANG] = ACTIONS(8172), + [aux_sym__attribute_identifier_token1] = ACTIONS(8170), + [aux_sym_option_statement_token3] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8170), + [aux_sym_preprocessor_const_token1] = ACTIONS(8170), + [sym_static_modifier] = ACTIONS(8170), + [sym__dim_keyword] = ACTIONS(8170), + [sym__redim_keyword] = ACTIONS(8170), + [aux_sym_get_accessor_token1] = ACTIONS(8170), + [aux_sym_set_accessor_token1] = ACTIONS(8170), + [aux_sym_const_declaration_token1] = ACTIONS(8170), + [anon_sym_LPAREN] = ACTIONS(8172), + [aux_sym_as_type_clause_token2] = ACTIONS(8170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8170), + [aux_sym_visibility_token1] = ACTIONS(8170), + [aux_sym_visibility_token2] = ACTIONS(8170), + [aux_sym_elseif_fragment_token1] = ACTIONS(8170), + [aux_sym_else_fragment_token1] = ACTIONS(8170), + [aux_sym_select_statement_token1] = ACTIONS(8170), + [aux_sym__for_header_token1] = ACTIONS(8170), + [aux_sym_do_statement_token1] = ACTIONS(8170), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8170), + [aux_sym_exit_statement_token1] = ACTIONS(8170), + [sym_end_statement] = ACTIONS(8172), + [aux_sym_on_goto_statement_token1] = ACTIONS(8170), + [aux_sym_on_goto_statement_token2] = ACTIONS(8170), + [aux_sym_on_error_statement_token2] = ACTIONS(8170), + [sym__ambiguous_redim_statement] = ACTIONS(8172), + [aux_sym_erase_statement_token1] = ACTIONS(8170), + [aux_sym_open_statement_token1] = ACTIONS(8170), + [aux_sym_file_mode_token2] = ACTIONS(8170), + [aux_sym_file_access_token2] = ACTIONS(8170), + [aux_sym_file_lock_token2] = ACTIONS(8170), + [aux_sym_print_statement_token1] = ACTIONS(8170), + [anon_sym_PLUS] = ACTIONS(8172), + [anon_sym_DASH] = ACTIONS(8170), + [anon_sym_QMARK] = ACTIONS(8172), + [aux_sym_close_statement_token1] = ACTIONS(8170), + [aux_sym_put_statement_token1] = ACTIONS(8170), + [aux_sym_unlock_statement_token1] = ACTIONS(8170), + [aux_sym_seek_statement_token1] = ACTIONS(8170), + [sym_reset_statement] = ACTIONS(8170), + [aux_sym_raise_event_statement_token1] = ACTIONS(8170), + [sym_stop_statement] = ACTIONS(8170), + [sym_beep_statement] = ACTIONS(8170), + [aux_sym_unload_statement_token1] = ACTIONS(8170), + [aux_sym_def_type_statement_token1] = ACTIONS(8170), + [aux_sym_def_type_statement_token2] = ACTIONS(8170), + [aux_sym_def_type_statement_token3] = ACTIONS(8170), + [aux_sym_def_type_statement_token4] = ACTIONS(8170), + [aux_sym_def_type_statement_token5] = ACTIONS(8170), + [aux_sym_def_type_statement_token6] = ACTIONS(8170), + [aux_sym_def_type_statement_token7] = ACTIONS(8170), + [aux_sym_def_type_statement_token8] = ACTIONS(8170), + [aux_sym_def_type_statement_token9] = ACTIONS(8170), + [aux_sym_def_type_statement_token10] = ACTIONS(8170), + [aux_sym_def_type_statement_token11] = ACTIONS(8170), + [aux_sym_def_type_statement_token12] = ACTIONS(8170), + [aux_sym_def_type_statement_token13] = ACTIONS(8170), + [aux_sym_def_type_statement_token14] = ACTIONS(8170), + [aux_sym_call_statement_token1] = ACTIONS(8170), + [sym__ambiguous_call_statement] = ACTIONS(8170), + [aux_sym_addressof_expression_token1] = ACTIONS(8170), + [aux_sym_type_of_expression_token1] = ACTIONS(8170), + [aux_sym_unary_expression_token1] = ACTIONS(8170), + [sym_string_literal] = ACTIONS(8172), + [sym_number_literal] = ACTIONS(8172), + [aux_sym_boolean_literal_token1] = ACTIONS(8170), + [aux_sym_boolean_literal_token2] = ACTIONS(8170), + [sym_nothing_literal] = ACTIONS(8170), + [sym_null_literal] = ACTIONS(8170), + [sym_empty_literal] = ACTIONS(8170), + [sym_date_literal] = ACTIONS(8172), + [anon_sym_POUND] = ACTIONS(8170), + }, + [STATE(5316)] = { + [sym_do_condition] = STATE(6715), + [sym_identifier] = ACTIONS(8140), + [sym_newline] = ACTIONS(8142), + [anon_sym_COLON] = ACTIONS(8142), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8140), + [aux_sym_frm_property_statement_token1] = ACTIONS(8140), + [anon_sym_DOT] = ACTIONS(8140), + [anon_sym_BANG] = ACTIONS(8142), + [aux_sym__attribute_identifier_token1] = ACTIONS(8140), + [aux_sym_option_statement_token3] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8140), + [aux_sym_preprocessor_const_token1] = ACTIONS(8140), + [sym_static_modifier] = ACTIONS(8140), + [sym__dim_keyword] = ACTIONS(8140), + [sym__redim_keyword] = ACTIONS(8140), + [aux_sym_get_accessor_token1] = ACTIONS(8140), + [aux_sym_set_accessor_token1] = ACTIONS(8140), + [aux_sym_const_declaration_token1] = ACTIONS(8140), + [anon_sym_LPAREN] = ACTIONS(8142), + [aux_sym_as_type_clause_token2] = ACTIONS(8140), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8140), + [aux_sym_visibility_token1] = ACTIONS(8140), + [aux_sym_visibility_token2] = ACTIONS(8140), + [aux_sym_elseif_fragment_token1] = ACTIONS(8140), + [aux_sym_else_fragment_token1] = ACTIONS(8140), + [aux_sym_select_statement_token1] = ACTIONS(8140), + [aux_sym__for_header_token1] = ACTIONS(8140), + [aux_sym_do_statement_token1] = ACTIONS(8140), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8140), + [aux_sym_exit_statement_token1] = ACTIONS(8140), + [sym_end_statement] = ACTIONS(8142), + [aux_sym_on_goto_statement_token1] = ACTIONS(8140), + [aux_sym_on_goto_statement_token2] = ACTIONS(8140), + [aux_sym_on_error_statement_token2] = ACTIONS(8140), + [sym__ambiguous_redim_statement] = ACTIONS(8142), + [aux_sym_erase_statement_token1] = ACTIONS(8140), + [aux_sym_open_statement_token1] = ACTIONS(8140), + [aux_sym_file_mode_token2] = ACTIONS(8140), + [aux_sym_file_access_token2] = ACTIONS(8140), + [aux_sym_file_lock_token2] = ACTIONS(8140), + [aux_sym_print_statement_token1] = ACTIONS(8140), + [anon_sym_PLUS] = ACTIONS(8142), + [anon_sym_DASH] = ACTIONS(8140), + [anon_sym_QMARK] = ACTIONS(8142), + [aux_sym_close_statement_token1] = ACTIONS(8140), + [aux_sym_put_statement_token1] = ACTIONS(8140), + [aux_sym_unlock_statement_token1] = ACTIONS(8140), + [aux_sym_seek_statement_token1] = ACTIONS(8140), + [sym_reset_statement] = ACTIONS(8140), + [aux_sym_raise_event_statement_token1] = ACTIONS(8140), + [sym_stop_statement] = ACTIONS(8140), + [sym_beep_statement] = ACTIONS(8140), + [aux_sym_unload_statement_token1] = ACTIONS(8140), + [aux_sym_def_type_statement_token1] = ACTIONS(8140), + [aux_sym_def_type_statement_token2] = ACTIONS(8140), + [aux_sym_def_type_statement_token3] = ACTIONS(8140), + [aux_sym_def_type_statement_token4] = ACTIONS(8140), + [aux_sym_def_type_statement_token5] = ACTIONS(8140), + [aux_sym_def_type_statement_token6] = ACTIONS(8140), + [aux_sym_def_type_statement_token7] = ACTIONS(8140), + [aux_sym_def_type_statement_token8] = ACTIONS(8140), + [aux_sym_def_type_statement_token9] = ACTIONS(8140), + [aux_sym_def_type_statement_token10] = ACTIONS(8140), + [aux_sym_def_type_statement_token11] = ACTIONS(8140), + [aux_sym_def_type_statement_token12] = ACTIONS(8140), + [aux_sym_def_type_statement_token13] = ACTIONS(8140), + [aux_sym_def_type_statement_token14] = ACTIONS(8140), + [aux_sym_call_statement_token1] = ACTIONS(8140), + [sym__ambiguous_call_statement] = ACTIONS(8140), + [aux_sym_addressof_expression_token1] = ACTIONS(8140), + [aux_sym_type_of_expression_token1] = ACTIONS(8140), + [aux_sym_unary_expression_token1] = ACTIONS(8140), + [sym_string_literal] = ACTIONS(8142), + [sym_number_literal] = ACTIONS(8142), + [aux_sym_boolean_literal_token1] = ACTIONS(8140), + [aux_sym_boolean_literal_token2] = ACTIONS(8140), + [sym_nothing_literal] = ACTIONS(8140), + [sym_null_literal] = ACTIONS(8140), + [sym_empty_literal] = ACTIONS(8140), + [sym_date_literal] = ACTIONS(8142), + [anon_sym_POUND] = ACTIONS(8140), + }, + [STATE(5317)] = { + [sym_do_condition] = STATE(6696), + [sym_identifier] = ACTIONS(8501), + [sym_newline] = ACTIONS(8503), + [anon_sym_COLON] = ACTIONS(8503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8501), + [aux_sym_frm_property_statement_token1] = ACTIONS(8501), + [anon_sym_DOT] = ACTIONS(8501), + [anon_sym_BANG] = ACTIONS(8503), + [aux_sym__attribute_identifier_token1] = ACTIONS(8501), + [aux_sym_option_statement_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8501), + [aux_sym_preprocessor_const_token1] = ACTIONS(8501), + [sym_static_modifier] = ACTIONS(8501), + [sym__dim_keyword] = ACTIONS(8501), + [sym__redim_keyword] = ACTIONS(8501), + [aux_sym_get_accessor_token1] = ACTIONS(8501), + [aux_sym_set_accessor_token1] = ACTIONS(8501), + [aux_sym_const_declaration_token1] = ACTIONS(8501), + [anon_sym_LPAREN] = ACTIONS(8503), + [aux_sym_as_type_clause_token2] = ACTIONS(8501), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8501), + [aux_sym_visibility_token1] = ACTIONS(8501), + [aux_sym_visibility_token2] = ACTIONS(8501), + [aux_sym_elseif_fragment_token1] = ACTIONS(8501), + [aux_sym_else_fragment_token1] = ACTIONS(8501), + [aux_sym_select_statement_token1] = ACTIONS(8501), + [aux_sym__for_header_token1] = ACTIONS(8501), + [aux_sym_do_statement_token1] = ACTIONS(8501), + [aux_sym_do_statement_token2] = ACTIONS(8501), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8501), + [aux_sym_exit_statement_token1] = ACTIONS(8501), + [sym_end_statement] = ACTIONS(8503), + [aux_sym_on_goto_statement_token1] = ACTIONS(8501), + [aux_sym_on_goto_statement_token2] = ACTIONS(8501), + [aux_sym_on_error_statement_token2] = ACTIONS(8501), + [sym__ambiguous_redim_statement] = ACTIONS(8503), + [aux_sym_erase_statement_token1] = ACTIONS(8501), + [aux_sym_open_statement_token1] = ACTIONS(8501), + [aux_sym_file_mode_token2] = ACTIONS(8501), + [aux_sym_file_access_token2] = ACTIONS(8501), + [aux_sym_file_lock_token2] = ACTIONS(8501), + [aux_sym_print_statement_token1] = ACTIONS(8501), + [anon_sym_PLUS] = ACTIONS(8503), + [anon_sym_DASH] = ACTIONS(8501), + [anon_sym_QMARK] = ACTIONS(8503), + [aux_sym_close_statement_token1] = ACTIONS(8501), + [aux_sym_put_statement_token1] = ACTIONS(8501), + [aux_sym_unlock_statement_token1] = ACTIONS(8501), + [aux_sym_seek_statement_token1] = ACTIONS(8501), + [sym_reset_statement] = ACTIONS(8501), + [aux_sym_raise_event_statement_token1] = ACTIONS(8501), + [sym_stop_statement] = ACTIONS(8501), + [sym_beep_statement] = ACTIONS(8501), + [aux_sym_unload_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token2] = ACTIONS(8501), + [aux_sym_def_type_statement_token3] = ACTIONS(8501), + [aux_sym_def_type_statement_token4] = ACTIONS(8501), + [aux_sym_def_type_statement_token5] = ACTIONS(8501), + [aux_sym_def_type_statement_token6] = ACTIONS(8501), + [aux_sym_def_type_statement_token7] = ACTIONS(8501), + [aux_sym_def_type_statement_token8] = ACTIONS(8501), + [aux_sym_def_type_statement_token9] = ACTIONS(8501), + [aux_sym_def_type_statement_token10] = ACTIONS(8501), + [aux_sym_def_type_statement_token11] = ACTIONS(8501), + [aux_sym_def_type_statement_token12] = ACTIONS(8501), + [aux_sym_def_type_statement_token13] = ACTIONS(8501), + [aux_sym_def_type_statement_token14] = ACTIONS(8501), + [aux_sym_call_statement_token1] = ACTIONS(8501), + [sym__ambiguous_call_statement] = ACTIONS(8501), + [aux_sym_addressof_expression_token1] = ACTIONS(8501), + [aux_sym_type_of_expression_token1] = ACTIONS(8501), + [aux_sym_unary_expression_token1] = ACTIONS(8501), + [sym_string_literal] = ACTIONS(8503), + [sym_number_literal] = ACTIONS(8503), + [aux_sym_boolean_literal_token1] = ACTIONS(8501), + [aux_sym_boolean_literal_token2] = ACTIONS(8501), + [sym_nothing_literal] = ACTIONS(8501), + [sym_null_literal] = ACTIONS(8501), + [sym_empty_literal] = ACTIONS(8501), + [sym_date_literal] = ACTIONS(8503), + [anon_sym_POUND] = ACTIONS(8501), + }, + [STATE(5318)] = { + [sym_do_condition] = STATE(6813), + [sym_identifier] = ACTIONS(8501), + [sym_newline] = ACTIONS(8503), + [anon_sym_COLON] = ACTIONS(8503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8501), + [aux_sym_frm_property_statement_token1] = ACTIONS(8501), + [anon_sym_DOT] = ACTIONS(8501), + [anon_sym_BANG] = ACTIONS(8503), + [aux_sym__attribute_identifier_token1] = ACTIONS(8501), + [aux_sym_option_statement_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8501), + [aux_sym_preprocessor_const_token1] = ACTIONS(8501), + [sym_static_modifier] = ACTIONS(8501), + [sym__dim_keyword] = ACTIONS(8501), + [sym__redim_keyword] = ACTIONS(8501), + [aux_sym_get_accessor_token1] = ACTIONS(8501), + [aux_sym_set_accessor_token1] = ACTIONS(8501), + [aux_sym_const_declaration_token1] = ACTIONS(8501), + [anon_sym_LPAREN] = ACTIONS(8503), + [aux_sym_as_type_clause_token2] = ACTIONS(8501), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8501), + [aux_sym_visibility_token1] = ACTIONS(8501), + [aux_sym_visibility_token2] = ACTIONS(8501), + [aux_sym_elseif_fragment_token1] = ACTIONS(8501), + [aux_sym_else_fragment_token1] = ACTIONS(8501), + [aux_sym_select_statement_token1] = ACTIONS(8501), + [aux_sym_select_statement_token2] = ACTIONS(8501), + [aux_sym__for_header_token1] = ACTIONS(8501), + [aux_sym_do_statement_token1] = ACTIONS(8501), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8501), + [aux_sym_exit_statement_token1] = ACTIONS(8501), + [sym_end_statement] = ACTIONS(8503), + [aux_sym_on_goto_statement_token1] = ACTIONS(8501), + [aux_sym_on_goto_statement_token2] = ACTIONS(8501), + [aux_sym_on_error_statement_token2] = ACTIONS(8501), + [sym__ambiguous_redim_statement] = ACTIONS(8503), + [aux_sym_erase_statement_token1] = ACTIONS(8501), + [aux_sym_open_statement_token1] = ACTIONS(8501), + [aux_sym_file_mode_token2] = ACTIONS(8501), + [aux_sym_file_access_token2] = ACTIONS(8501), + [aux_sym_file_lock_token2] = ACTIONS(8501), + [aux_sym_print_statement_token1] = ACTIONS(8501), + [anon_sym_PLUS] = ACTIONS(8503), + [anon_sym_DASH] = ACTIONS(8501), + [anon_sym_QMARK] = ACTIONS(8503), + [aux_sym_close_statement_token1] = ACTIONS(8501), + [aux_sym_put_statement_token1] = ACTIONS(8501), + [aux_sym_unlock_statement_token1] = ACTIONS(8501), + [aux_sym_seek_statement_token1] = ACTIONS(8501), + [sym_reset_statement] = ACTIONS(8501), + [aux_sym_raise_event_statement_token1] = ACTIONS(8501), + [sym_stop_statement] = ACTIONS(8501), + [sym_beep_statement] = ACTIONS(8501), + [aux_sym_unload_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token2] = ACTIONS(8501), + [aux_sym_def_type_statement_token3] = ACTIONS(8501), + [aux_sym_def_type_statement_token4] = ACTIONS(8501), + [aux_sym_def_type_statement_token5] = ACTIONS(8501), + [aux_sym_def_type_statement_token6] = ACTIONS(8501), + [aux_sym_def_type_statement_token7] = ACTIONS(8501), + [aux_sym_def_type_statement_token8] = ACTIONS(8501), + [aux_sym_def_type_statement_token9] = ACTIONS(8501), + [aux_sym_def_type_statement_token10] = ACTIONS(8501), + [aux_sym_def_type_statement_token11] = ACTIONS(8501), + [aux_sym_def_type_statement_token12] = ACTIONS(8501), + [aux_sym_def_type_statement_token13] = ACTIONS(8501), + [aux_sym_def_type_statement_token14] = ACTIONS(8501), + [aux_sym_call_statement_token1] = ACTIONS(8501), + [sym__ambiguous_call_statement] = ACTIONS(8501), + [aux_sym_addressof_expression_token1] = ACTIONS(8501), + [aux_sym_type_of_expression_token1] = ACTIONS(8501), + [aux_sym_unary_expression_token1] = ACTIONS(8501), + [sym_string_literal] = ACTIONS(8503), + [sym_number_literal] = ACTIONS(8503), + [aux_sym_boolean_literal_token1] = ACTIONS(8501), + [aux_sym_boolean_literal_token2] = ACTIONS(8501), + [sym_nothing_literal] = ACTIONS(8501), + [sym_null_literal] = ACTIONS(8501), + [sym_empty_literal] = ACTIONS(8501), + [sym_date_literal] = ACTIONS(8503), + [anon_sym_POUND] = ACTIONS(8501), + }, + [STATE(5319)] = { + [sym_do_condition] = STATE(6721), + [sym_identifier] = ACTIONS(8509), + [sym_newline] = ACTIONS(8511), + [anon_sym_COLON] = ACTIONS(8511), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8509), + [aux_sym_frm_property_statement_token1] = ACTIONS(8509), + [anon_sym_DOT] = ACTIONS(8509), + [anon_sym_BANG] = ACTIONS(8511), + [aux_sym__attribute_identifier_token1] = ACTIONS(8509), + [aux_sym_option_statement_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8509), + [aux_sym_preprocessor_const_token1] = ACTIONS(8509), + [sym_static_modifier] = ACTIONS(8509), + [sym__dim_keyword] = ACTIONS(8509), + [sym__redim_keyword] = ACTIONS(8509), + [aux_sym_get_accessor_token1] = ACTIONS(8509), + [aux_sym_set_accessor_token1] = ACTIONS(8509), + [aux_sym_const_declaration_token1] = ACTIONS(8509), + [anon_sym_LPAREN] = ACTIONS(8511), + [aux_sym_as_type_clause_token2] = ACTIONS(8509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8509), + [aux_sym_visibility_token1] = ACTIONS(8509), + [aux_sym_visibility_token2] = ACTIONS(8509), + [aux_sym_elseif_fragment_token1] = ACTIONS(8509), + [aux_sym_else_fragment_token1] = ACTIONS(8509), + [aux_sym_select_statement_token1] = ACTIONS(8509), + [aux_sym__for_header_token1] = ACTIONS(8509), + [aux_sym_do_statement_token1] = ACTIONS(8509), + [aux_sym_do_statement_token2] = ACTIONS(8509), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8509), + [aux_sym_exit_statement_token1] = ACTIONS(8509), + [sym_end_statement] = ACTIONS(8511), + [aux_sym_on_goto_statement_token1] = ACTIONS(8509), + [aux_sym_on_goto_statement_token2] = ACTIONS(8509), + [aux_sym_on_error_statement_token2] = ACTIONS(8509), + [sym__ambiguous_redim_statement] = ACTIONS(8511), + [aux_sym_erase_statement_token1] = ACTIONS(8509), + [aux_sym_open_statement_token1] = ACTIONS(8509), + [aux_sym_file_mode_token2] = ACTIONS(8509), + [aux_sym_file_access_token2] = ACTIONS(8509), + [aux_sym_file_lock_token2] = ACTIONS(8509), + [aux_sym_print_statement_token1] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(8511), + [anon_sym_DASH] = ACTIONS(8509), + [anon_sym_QMARK] = ACTIONS(8511), + [aux_sym_close_statement_token1] = ACTIONS(8509), + [aux_sym_put_statement_token1] = ACTIONS(8509), + [aux_sym_unlock_statement_token1] = ACTIONS(8509), + [aux_sym_seek_statement_token1] = ACTIONS(8509), + [sym_reset_statement] = ACTIONS(8509), + [aux_sym_raise_event_statement_token1] = ACTIONS(8509), + [sym_stop_statement] = ACTIONS(8509), + [sym_beep_statement] = ACTIONS(8509), + [aux_sym_unload_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token2] = ACTIONS(8509), + [aux_sym_def_type_statement_token3] = ACTIONS(8509), + [aux_sym_def_type_statement_token4] = ACTIONS(8509), + [aux_sym_def_type_statement_token5] = ACTIONS(8509), + [aux_sym_def_type_statement_token6] = ACTIONS(8509), + [aux_sym_def_type_statement_token7] = ACTIONS(8509), + [aux_sym_def_type_statement_token8] = ACTIONS(8509), + [aux_sym_def_type_statement_token9] = ACTIONS(8509), + [aux_sym_def_type_statement_token10] = ACTIONS(8509), + [aux_sym_def_type_statement_token11] = ACTIONS(8509), + [aux_sym_def_type_statement_token12] = ACTIONS(8509), + [aux_sym_def_type_statement_token13] = ACTIONS(8509), + [aux_sym_def_type_statement_token14] = ACTIONS(8509), + [aux_sym_call_statement_token1] = ACTIONS(8509), + [sym__ambiguous_call_statement] = ACTIONS(8509), + [aux_sym_addressof_expression_token1] = ACTIONS(8509), + [aux_sym_type_of_expression_token1] = ACTIONS(8509), + [aux_sym_unary_expression_token1] = ACTIONS(8509), + [sym_string_literal] = ACTIONS(8511), + [sym_number_literal] = ACTIONS(8511), + [aux_sym_boolean_literal_token1] = ACTIONS(8509), + [aux_sym_boolean_literal_token2] = ACTIONS(8509), + [sym_nothing_literal] = ACTIONS(8509), + [sym_null_literal] = ACTIONS(8509), + [sym_empty_literal] = ACTIONS(8509), + [sym_date_literal] = ACTIONS(8511), + [anon_sym_POUND] = ACTIONS(8509), + }, + [STATE(5320)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5320), + [sym_identifier] = ACTIONS(8196), + [sym_newline] = ACTIONS(8198), + [anon_sym_COLON] = ACTIONS(8198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8196), + [aux_sym_frm_property_statement_token1] = ACTIONS(8196), + [anon_sym_DOT] = ACTIONS(8196), + [anon_sym_BANG] = ACTIONS(8198), + [aux_sym__attribute_identifier_token1] = ACTIONS(8196), + [aux_sym_option_statement_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8196), + [aux_sym_preprocessor_const_token1] = ACTIONS(8196), + [sym_static_modifier] = ACTIONS(8196), + [sym__dim_keyword] = ACTIONS(8196), + [sym__redim_keyword] = ACTIONS(8196), + [aux_sym_get_accessor_token1] = ACTIONS(8196), + [aux_sym_set_accessor_token1] = ACTIONS(8196), + [anon_sym_COMMA] = ACTIONS(10549), + [aux_sym_const_declaration_token1] = ACTIONS(8196), + [anon_sym_LPAREN] = ACTIONS(8198), + [aux_sym_as_type_clause_token2] = ACTIONS(8196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8196), + [aux_sym_visibility_token1] = ACTIONS(8196), + [aux_sym_visibility_token2] = ACTIONS(8196), + [aux_sym_elseif_fragment_token1] = ACTIONS(8196), + [aux_sym_else_fragment_token1] = ACTIONS(8196), + [aux_sym_select_statement_token1] = ACTIONS(8196), + [aux_sym__for_header_token1] = ACTIONS(8196), + [aux_sym_do_statement_token1] = ACTIONS(8196), + [aux_sym_do_condition_token1] = ACTIONS(8196), + [aux_sym_while_statement_token1] = ACTIONS(8196), + [aux_sym_with_statement_token1] = ACTIONS(8196), + [aux_sym_exit_statement_token1] = ACTIONS(8196), + [sym_end_statement] = ACTIONS(8198), + [aux_sym_on_goto_statement_token1] = ACTIONS(8196), + [aux_sym_on_goto_statement_token2] = ACTIONS(8196), + [aux_sym_on_error_statement_token2] = ACTIONS(8196), + [sym__ambiguous_redim_statement] = ACTIONS(8198), + [aux_sym_erase_statement_token1] = ACTIONS(8196), + [aux_sym_open_statement_token1] = ACTIONS(8196), + [aux_sym_file_mode_token2] = ACTIONS(8196), + [aux_sym_file_access_token2] = ACTIONS(8196), + [aux_sym_file_lock_token2] = ACTIONS(8196), + [aux_sym_print_statement_token1] = ACTIONS(8196), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(8196), + [anon_sym_QMARK] = ACTIONS(8198), + [aux_sym_close_statement_token1] = ACTIONS(8196), + [aux_sym_put_statement_token1] = ACTIONS(8196), + [aux_sym_unlock_statement_token1] = ACTIONS(8196), + [aux_sym_seek_statement_token1] = ACTIONS(8196), + [sym_reset_statement] = ACTIONS(8196), + [aux_sym_raise_event_statement_token1] = ACTIONS(8196), + [sym_stop_statement] = ACTIONS(8196), + [sym_beep_statement] = ACTIONS(8196), + [aux_sym_unload_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token2] = ACTIONS(8196), + [aux_sym_def_type_statement_token3] = ACTIONS(8196), + [aux_sym_def_type_statement_token4] = ACTIONS(8196), + [aux_sym_def_type_statement_token5] = ACTIONS(8196), + [aux_sym_def_type_statement_token6] = ACTIONS(8196), + [aux_sym_def_type_statement_token7] = ACTIONS(8196), + [aux_sym_def_type_statement_token8] = ACTIONS(8196), + [aux_sym_def_type_statement_token9] = ACTIONS(8196), + [aux_sym_def_type_statement_token10] = ACTIONS(8196), + [aux_sym_def_type_statement_token11] = ACTIONS(8196), + [aux_sym_def_type_statement_token12] = ACTIONS(8196), + [aux_sym_def_type_statement_token13] = ACTIONS(8196), + [aux_sym_def_type_statement_token14] = ACTIONS(8196), + [aux_sym_call_statement_token1] = ACTIONS(8196), + [sym__ambiguous_call_statement] = ACTIONS(8196), + [aux_sym_addressof_expression_token1] = ACTIONS(8196), + [aux_sym_type_of_expression_token1] = ACTIONS(8196), + [aux_sym_unary_expression_token1] = ACTIONS(8196), + [sym_string_literal] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8198), + [aux_sym_boolean_literal_token1] = ACTIONS(8196), + [aux_sym_boolean_literal_token2] = ACTIONS(8196), + [sym_nothing_literal] = ACTIONS(8196), + [sym_null_literal] = ACTIONS(8196), + [sym_empty_literal] = ACTIONS(8196), + [sym_date_literal] = ACTIONS(8198), + [anon_sym_POUND] = ACTIONS(8196), + }, + [STATE(5321)] = { + [sym_identifier] = ACTIONS(8070), + [sym_newline] = ACTIONS(8072), + [anon_sym_COLON] = ACTIONS(8072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8070), + [aux_sym_frm_property_statement_token1] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(8072), + [anon_sym_DOT] = ACTIONS(8070), + [anon_sym_BANG] = ACTIONS(8072), + [aux_sym__attribute_identifier_token1] = ACTIONS(8070), + [aux_sym_option_statement_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8070), + [aux_sym_preprocessor_const_token1] = ACTIONS(8070), + [sym_static_modifier] = ACTIONS(8070), + [sym__dim_keyword] = ACTIONS(8070), + [sym__redim_keyword] = ACTIONS(8070), + [aux_sym_get_accessor_token1] = ACTIONS(8070), + [aux_sym_set_accessor_token1] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [aux_sym_const_declaration_token1] = ACTIONS(8070), + [anon_sym_LPAREN] = ACTIONS(8072), + [aux_sym_as_type_clause_token2] = ACTIONS(8070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8070), + [aux_sym_visibility_token1] = ACTIONS(8070), + [aux_sym_visibility_token2] = ACTIONS(8070), + [aux_sym_elseif_fragment_token1] = ACTIONS(8070), + [aux_sym_else_fragment_token1] = ACTIONS(8070), + [aux_sym_select_statement_token1] = ACTIONS(8070), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8070), + [aux_sym__for_header_token1] = ACTIONS(8070), + [aux_sym_do_statement_token1] = ACTIONS(8070), + [aux_sym_do_condition_token1] = ACTIONS(8070), + [aux_sym_with_statement_token1] = ACTIONS(8070), + [aux_sym_exit_statement_token1] = ACTIONS(8070), + [sym_end_statement] = ACTIONS(8072), + [aux_sym_on_goto_statement_token1] = ACTIONS(8070), + [aux_sym_on_goto_statement_token2] = ACTIONS(8070), + [aux_sym_on_error_statement_token2] = ACTIONS(8070), + [sym__ambiguous_redim_statement] = ACTIONS(8072), + [aux_sym_erase_statement_token1] = ACTIONS(8070), + [aux_sym_open_statement_token1] = ACTIONS(8070), + [aux_sym_file_mode_token2] = ACTIONS(8070), + [aux_sym_file_access_token2] = ACTIONS(8070), + [aux_sym_file_lock_token2] = ACTIONS(8070), + [aux_sym_print_statement_token1] = ACTIONS(8070), + [anon_sym_PLUS] = ACTIONS(8072), + [anon_sym_DASH] = ACTIONS(8070), + [anon_sym_QMARK] = ACTIONS(8072), + [aux_sym_close_statement_token1] = ACTIONS(8070), + [aux_sym_put_statement_token1] = ACTIONS(8070), + [aux_sym_unlock_statement_token1] = ACTIONS(8070), + [aux_sym_seek_statement_token1] = ACTIONS(8070), + [sym_reset_statement] = ACTIONS(8070), + [aux_sym_raise_event_statement_token1] = ACTIONS(8070), + [sym_stop_statement] = ACTIONS(8070), + [sym_beep_statement] = ACTIONS(8070), + [aux_sym_unload_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token2] = ACTIONS(8070), + [aux_sym_def_type_statement_token3] = ACTIONS(8070), + [aux_sym_def_type_statement_token4] = ACTIONS(8070), + [aux_sym_def_type_statement_token5] = ACTIONS(8070), + [aux_sym_def_type_statement_token6] = ACTIONS(8070), + [aux_sym_def_type_statement_token7] = ACTIONS(8070), + [aux_sym_def_type_statement_token8] = ACTIONS(8070), + [aux_sym_def_type_statement_token9] = ACTIONS(8070), + [aux_sym_def_type_statement_token10] = ACTIONS(8070), + [aux_sym_def_type_statement_token11] = ACTIONS(8070), + [aux_sym_def_type_statement_token12] = ACTIONS(8070), + [aux_sym_def_type_statement_token13] = ACTIONS(8070), + [aux_sym_def_type_statement_token14] = ACTIONS(8070), + [aux_sym_call_statement_token1] = ACTIONS(8070), + [sym__ambiguous_call_statement] = ACTIONS(8070), + [aux_sym_addressof_expression_token1] = ACTIONS(8070), + [aux_sym_type_of_expression_token1] = ACTIONS(8070), + [aux_sym_unary_expression_token1] = ACTIONS(8070), + [sym_string_literal] = ACTIONS(8072), + [sym_number_literal] = ACTIONS(8072), + [aux_sym_boolean_literal_token1] = ACTIONS(8070), + [aux_sym_boolean_literal_token2] = ACTIONS(8070), + [sym_nothing_literal] = ACTIONS(8070), + [sym_null_literal] = ACTIONS(8070), + [sym_empty_literal] = ACTIONS(8070), + [sym_date_literal] = ACTIONS(8072), + [anon_sym_POUND] = ACTIONS(8070), + }, + [STATE(5322)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5418), + [sym_identifier] = ACTIONS(7945), + [sym_newline] = ACTIONS(7947), + [anon_sym_COLON] = ACTIONS(7947), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7945), + [aux_sym_frm_property_statement_token1] = ACTIONS(7945), + [anon_sym_DOT] = ACTIONS(7945), + [anon_sym_BANG] = ACTIONS(7947), + [aux_sym__attribute_identifier_token1] = ACTIONS(7945), + [aux_sym_option_statement_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7945), + [aux_sym_preprocessor_const_token1] = ACTIONS(7945), + [sym_static_modifier] = ACTIONS(7945), + [sym__dim_keyword] = ACTIONS(7945), + [sym__redim_keyword] = ACTIONS(7945), + [aux_sym_get_accessor_token1] = ACTIONS(7945), + [aux_sym_set_accessor_token1] = ACTIONS(7945), + [anon_sym_COMMA] = ACTIONS(10552), + [aux_sym_const_declaration_token1] = ACTIONS(7945), + [anon_sym_LPAREN] = ACTIONS(7947), + [aux_sym_as_type_clause_token2] = ACTIONS(7945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7945), + [aux_sym_visibility_token1] = ACTIONS(7945), + [aux_sym_visibility_token2] = ACTIONS(7945), + [aux_sym_elseif_fragment_token1] = ACTIONS(7945), + [aux_sym_else_fragment_token1] = ACTIONS(7945), + [aux_sym_select_statement_token1] = ACTIONS(7945), + [aux_sym__for_header_token1] = ACTIONS(7945), + [aux_sym_do_statement_token1] = ACTIONS(7945), + [aux_sym_do_statement_token2] = ACTIONS(7945), + [aux_sym_do_condition_token1] = ACTIONS(7945), + [aux_sym_with_statement_token1] = ACTIONS(7945), + [aux_sym_exit_statement_token1] = ACTIONS(7945), + [sym_end_statement] = ACTIONS(7947), + [aux_sym_on_goto_statement_token1] = ACTIONS(7945), + [aux_sym_on_goto_statement_token2] = ACTIONS(7945), + [aux_sym_on_error_statement_token2] = ACTIONS(7945), + [sym__ambiguous_redim_statement] = ACTIONS(7947), + [aux_sym_erase_statement_token1] = ACTIONS(7945), + [aux_sym_open_statement_token1] = ACTIONS(7945), + [aux_sym_file_mode_token2] = ACTIONS(7945), + [aux_sym_file_access_token2] = ACTIONS(7945), + [aux_sym_file_lock_token2] = ACTIONS(7945), + [aux_sym_print_statement_token1] = ACTIONS(7945), + [anon_sym_PLUS] = ACTIONS(7947), + [anon_sym_DASH] = ACTIONS(7945), + [anon_sym_QMARK] = ACTIONS(7947), + [aux_sym_close_statement_token1] = ACTIONS(7945), + [aux_sym_put_statement_token1] = ACTIONS(7945), + [aux_sym_unlock_statement_token1] = ACTIONS(7945), + [aux_sym_seek_statement_token1] = ACTIONS(7945), + [sym_reset_statement] = ACTIONS(7945), + [aux_sym_raise_event_statement_token1] = ACTIONS(7945), + [sym_stop_statement] = ACTIONS(7945), + [sym_beep_statement] = ACTIONS(7945), + [aux_sym_unload_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token2] = ACTIONS(7945), + [aux_sym_def_type_statement_token3] = ACTIONS(7945), + [aux_sym_def_type_statement_token4] = ACTIONS(7945), + [aux_sym_def_type_statement_token5] = ACTIONS(7945), + [aux_sym_def_type_statement_token6] = ACTIONS(7945), + [aux_sym_def_type_statement_token7] = ACTIONS(7945), + [aux_sym_def_type_statement_token8] = ACTIONS(7945), + [aux_sym_def_type_statement_token9] = ACTIONS(7945), + [aux_sym_def_type_statement_token10] = ACTIONS(7945), + [aux_sym_def_type_statement_token11] = ACTIONS(7945), + [aux_sym_def_type_statement_token12] = ACTIONS(7945), + [aux_sym_def_type_statement_token13] = ACTIONS(7945), + [aux_sym_def_type_statement_token14] = ACTIONS(7945), + [aux_sym_call_statement_token1] = ACTIONS(7945), + [sym__ambiguous_call_statement] = ACTIONS(7945), + [aux_sym_addressof_expression_token1] = ACTIONS(7945), + [aux_sym_type_of_expression_token1] = ACTIONS(7945), + [aux_sym_unary_expression_token1] = ACTIONS(7945), + [sym_string_literal] = ACTIONS(7947), + [sym_number_literal] = ACTIONS(7947), + [aux_sym_boolean_literal_token1] = ACTIONS(7945), + [aux_sym_boolean_literal_token2] = ACTIONS(7945), + [sym_nothing_literal] = ACTIONS(7945), + [sym_null_literal] = ACTIONS(7945), + [sym_empty_literal] = ACTIONS(7945), + [sym_date_literal] = ACTIONS(7947), + [anon_sym_POUND] = ACTIONS(7945), + }, + [STATE(5323)] = { + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(7951), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_while_statement_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(5324)] = { + [sym_identifier] = ACTIONS(7968), + [sym_newline] = ACTIONS(7970), + [anon_sym_COLON] = ACTIONS(7970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7968), + [aux_sym_frm_property_statement_token1] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_BANG] = ACTIONS(7970), + [aux_sym__attribute_identifier_token1] = ACTIONS(7968), + [aux_sym_option_statement_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7968), + [aux_sym_preprocessor_const_token1] = ACTIONS(7968), + [sym_static_modifier] = ACTIONS(7968), + [sym__dim_keyword] = ACTIONS(7968), + [sym__redim_keyword] = ACTIONS(7968), + [aux_sym_get_accessor_token1] = ACTIONS(7968), + [aux_sym_set_accessor_token1] = ACTIONS(7968), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_const_declaration_token1] = ACTIONS(7968), + [anon_sym_LPAREN] = ACTIONS(7970), + [aux_sym_as_type_clause_token2] = ACTIONS(7968), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7968), + [aux_sym_visibility_token1] = ACTIONS(7968), + [aux_sym_visibility_token2] = ACTIONS(7968), + [aux_sym_elseif_fragment_token1] = ACTIONS(7968), + [aux_sym_else_fragment_token1] = ACTIONS(7968), + [aux_sym_select_statement_token1] = ACTIONS(7968), + [aux_sym__for_header_token1] = ACTIONS(7968), + [aux_sym_do_statement_token1] = ACTIONS(7968), + [aux_sym_do_condition_token1] = ACTIONS(7968), + [aux_sym_with_statement_token1] = ACTIONS(7968), + [aux_sym_exit_statement_token1] = ACTIONS(7968), + [sym_end_statement] = ACTIONS(7970), + [aux_sym_on_goto_statement_token1] = ACTIONS(7968), + [aux_sym_on_goto_statement_token2] = ACTIONS(7968), + [aux_sym_on_error_statement_token2] = ACTIONS(7968), + [sym__ambiguous_redim_statement] = ACTIONS(7970), + [aux_sym_erase_statement_token1] = ACTIONS(7968), + [aux_sym_open_statement_token1] = ACTIONS(7968), + [aux_sym_file_mode_token2] = ACTIONS(7968), + [aux_sym_file_access_token2] = ACTIONS(7968), + [aux_sym_file_lock_token2] = ACTIONS(7968), + [aux_sym_print_statement_token1] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7970), + [aux_sym_close_statement_token1] = ACTIONS(7968), + [aux_sym_put_statement_token1] = ACTIONS(7968), + [aux_sym_unlock_statement_token1] = ACTIONS(7968), + [aux_sym_seek_statement_token1] = ACTIONS(7968), + [sym_reset_statement] = ACTIONS(7968), + [aux_sym_raise_event_statement_token1] = ACTIONS(7968), + [sym_stop_statement] = ACTIONS(7968), + [sym_beep_statement] = ACTIONS(7968), + [aux_sym_unload_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token2] = ACTIONS(7968), + [aux_sym_def_type_statement_token3] = ACTIONS(7968), + [aux_sym_def_type_statement_token4] = ACTIONS(7968), + [aux_sym_def_type_statement_token5] = ACTIONS(7968), + [aux_sym_def_type_statement_token6] = ACTIONS(7968), + [aux_sym_def_type_statement_token7] = ACTIONS(7968), + [aux_sym_def_type_statement_token8] = ACTIONS(7968), + [aux_sym_def_type_statement_token9] = ACTIONS(7968), + [aux_sym_def_type_statement_token10] = ACTIONS(7968), + [aux_sym_def_type_statement_token11] = ACTIONS(7968), + [aux_sym_def_type_statement_token12] = ACTIONS(7968), + [aux_sym_def_type_statement_token13] = ACTIONS(7968), + [aux_sym_def_type_statement_token14] = ACTIONS(7968), + [aux_sym_call_statement_token1] = ACTIONS(7968), + [sym__ambiguous_call_statement] = ACTIONS(7968), + [aux_sym_addressof_expression_token1] = ACTIONS(7968), + [aux_sym_type_of_expression_token1] = ACTIONS(7968), + [aux_sym_unary_expression_token1] = ACTIONS(7968), + [sym_string_literal] = ACTIONS(7970), + [sym_number_literal] = ACTIONS(7970), + [aux_sym_boolean_literal_token1] = ACTIONS(7968), + [aux_sym_boolean_literal_token2] = ACTIONS(7968), + [sym_nothing_literal] = ACTIONS(7968), + [sym_null_literal] = ACTIONS(7968), + [sym_empty_literal] = ACTIONS(7968), + [sym_date_literal] = ACTIONS(7970), + [anon_sym_POUND] = ACTIONS(7968), + }, + [STATE(5325)] = { + [sym_identifier] = ACTIONS(9260), + [sym_newline] = ACTIONS(9262), + [anon_sym_COLON] = ACTIONS(9262), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9260), + [aux_sym_frm_property_statement_token1] = ACTIONS(9260), + [anon_sym_DOT] = ACTIONS(9260), + [anon_sym_BANG] = ACTIONS(9262), + [aux_sym__attribute_identifier_token1] = ACTIONS(9260), + [aux_sym_option_statement_token3] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9260), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9260), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9260), + [aux_sym_preprocessor_const_token1] = ACTIONS(9260), + [sym_static_modifier] = ACTIONS(9260), + [sym__dim_keyword] = ACTIONS(9260), + [sym__redim_keyword] = ACTIONS(9260), + [aux_sym_get_accessor_token1] = ACTIONS(9260), + [aux_sym_set_accessor_token1] = ACTIONS(9260), + [aux_sym_const_declaration_token1] = ACTIONS(9260), + [anon_sym_LPAREN] = ACTIONS(9262), + [aux_sym_as_type_clause_token2] = ACTIONS(9260), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9260), + [aux_sym_visibility_token1] = ACTIONS(9260), + [aux_sym_visibility_token2] = ACTIONS(9260), + [aux_sym_elseif_fragment_token1] = ACTIONS(9260), + [aux_sym_else_fragment_token1] = ACTIONS(9260), + [aux_sym_select_statement_token1] = ACTIONS(9260), + [aux_sym__for_header_token1] = ACTIONS(9260), + [aux_sym_do_statement_token1] = ACTIONS(9260), + [aux_sym_do_condition_token1] = ACTIONS(9260), + [aux_sym_with_statement_token1] = ACTIONS(9260), + [aux_sym_exit_statement_token1] = ACTIONS(9260), + [sym_end_statement] = ACTIONS(9262), + [aux_sym_on_goto_statement_token1] = ACTIONS(9260), + [aux_sym_on_goto_statement_token2] = ACTIONS(9260), + [aux_sym_on_error_statement_token2] = ACTIONS(9260), + [sym__ambiguous_redim_statement] = ACTIONS(9262), + [aux_sym_erase_statement_token1] = ACTIONS(9260), + [aux_sym_open_statement_token1] = ACTIONS(9260), + [aux_sym_file_mode_token2] = ACTIONS(9260), + [aux_sym_file_access_token2] = ACTIONS(9260), + [aux_sym_file_lock_token2] = ACTIONS(9260), + [aux_sym_print_statement_token1] = ACTIONS(9260), + [anon_sym_PLUS] = ACTIONS(9262), + [anon_sym_DASH] = ACTIONS(9260), + [anon_sym_QMARK] = ACTIONS(9262), + [aux_sym_close_statement_token1] = ACTIONS(9260), + [aux_sym_put_statement_token1] = ACTIONS(9260), + [aux_sym_unlock_statement_token1] = ACTIONS(9260), + [aux_sym_seek_statement_token1] = ACTIONS(9260), + [sym_reset_statement] = ACTIONS(9260), + [aux_sym_raise_event_statement_token1] = ACTIONS(9260), + [sym_stop_statement] = ACTIONS(9260), + [sym_beep_statement] = ACTIONS(9260), + [aux_sym_unload_statement_token1] = ACTIONS(9260), + [aux_sym_def_type_statement_token1] = ACTIONS(9260), + [aux_sym_def_type_statement_token2] = ACTIONS(9260), + [aux_sym_def_type_statement_token3] = ACTIONS(9260), + [aux_sym_def_type_statement_token4] = ACTIONS(9260), + [aux_sym_def_type_statement_token5] = ACTIONS(9260), + [aux_sym_def_type_statement_token6] = ACTIONS(9260), + [aux_sym_def_type_statement_token7] = ACTIONS(9260), + [aux_sym_def_type_statement_token8] = ACTIONS(9260), + [aux_sym_def_type_statement_token9] = ACTIONS(9260), + [aux_sym_def_type_statement_token10] = ACTIONS(9260), + [aux_sym_def_type_statement_token11] = ACTIONS(9260), + [aux_sym_def_type_statement_token12] = ACTIONS(9260), + [aux_sym_def_type_statement_token13] = ACTIONS(9260), + [aux_sym_def_type_statement_token14] = ACTIONS(9260), + [aux_sym_call_statement_token1] = ACTIONS(9260), + [sym__ambiguous_call_statement] = ACTIONS(9260), + [aux_sym_addressof_expression_token1] = ACTIONS(9260), + [aux_sym_type_of_expression_token1] = ACTIONS(9260), + [aux_sym_unary_expression_token1] = ACTIONS(9260), + [sym_string_literal] = ACTIONS(9262), + [sym_number_literal] = ACTIONS(9262), + [aux_sym_boolean_literal_token1] = ACTIONS(9260), + [aux_sym_boolean_literal_token2] = ACTIONS(9260), + [sym_nothing_literal] = ACTIONS(9260), + [sym_null_literal] = ACTIONS(9260), + [sym_empty_literal] = ACTIONS(9260), + [sym_date_literal] = ACTIONS(9262), + [anon_sym_POUND] = ACTIONS(9260), + }, + [STATE(5326)] = { + [sym_identifier] = ACTIONS(3996), + [sym_newline] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3996), + [aux_sym_frm_property_statement_token1] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3994), + [aux_sym__attribute_identifier_token1] = ACTIONS(3996), + [aux_sym_option_statement_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3996), + [aux_sym_preprocessor_const_token1] = ACTIONS(3996), + [sym_static_modifier] = ACTIONS(3996), + [sym__dim_keyword] = ACTIONS(3996), + [sym__redim_keyword] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3996), + [aux_sym_set_accessor_token1] = ACTIONS(3996), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3994), + [aux_sym_as_type_clause_token2] = ACTIONS(3996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3996), + [aux_sym_visibility_token1] = ACTIONS(3996), + [aux_sym_visibility_token2] = ACTIONS(3996), + [aux_sym_elseif_fragment_token1] = ACTIONS(3996), + [aux_sym_else_fragment_token1] = ACTIONS(3996), + [aux_sym_select_statement_token1] = ACTIONS(3996), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3996), + [aux_sym__for_header_token1] = ACTIONS(3996), + [aux_sym_do_statement_token1] = ACTIONS(3996), + [aux_sym_do_condition_token1] = ACTIONS(3996), + [aux_sym_while_statement_token1] = ACTIONS(3996), + [aux_sym_with_statement_token1] = ACTIONS(3996), + [aux_sym_exit_statement_token1] = ACTIONS(3996), + [sym_end_statement] = ACTIONS(3994), + [aux_sym_on_goto_statement_token1] = ACTIONS(3996), + [aux_sym_on_goto_statement_token2] = ACTIONS(3996), + [aux_sym_on_error_statement_token2] = ACTIONS(3996), + [sym__ambiguous_redim_statement] = ACTIONS(3994), + [aux_sym_erase_statement_token1] = ACTIONS(3996), + [aux_sym_open_statement_token1] = ACTIONS(3996), + [aux_sym_file_mode_token2] = ACTIONS(3996), + [aux_sym_file_access_token2] = ACTIONS(3996), + [aux_sym_file_lock_token2] = ACTIONS(3996), + [aux_sym_print_statement_token1] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3994), + [aux_sym_close_statement_token1] = ACTIONS(3996), + [aux_sym_put_statement_token1] = ACTIONS(3996), + [aux_sym_unlock_statement_token1] = ACTIONS(3996), + [aux_sym_seek_statement_token1] = ACTIONS(3996), + [sym_reset_statement] = ACTIONS(3996), + [aux_sym_raise_event_statement_token1] = ACTIONS(3996), + [sym_stop_statement] = ACTIONS(3996), + [sym_beep_statement] = ACTIONS(3996), + [aux_sym_unload_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token2] = ACTIONS(3996), + [aux_sym_def_type_statement_token3] = ACTIONS(3996), + [aux_sym_def_type_statement_token4] = ACTIONS(3996), + [aux_sym_def_type_statement_token5] = ACTIONS(3996), + [aux_sym_def_type_statement_token6] = ACTIONS(3996), + [aux_sym_def_type_statement_token7] = ACTIONS(3996), + [aux_sym_def_type_statement_token8] = ACTIONS(3996), + [aux_sym_def_type_statement_token9] = ACTIONS(3996), + [aux_sym_def_type_statement_token10] = ACTIONS(3996), + [aux_sym_def_type_statement_token11] = ACTIONS(3996), + [aux_sym_def_type_statement_token12] = ACTIONS(3996), + [aux_sym_def_type_statement_token13] = ACTIONS(3996), + [aux_sym_def_type_statement_token14] = ACTIONS(3996), + [aux_sym_call_statement_token1] = ACTIONS(3996), + [sym__ambiguous_call_statement] = ACTIONS(3996), + [aux_sym_addressof_expression_token1] = ACTIONS(3996), + [aux_sym_type_of_expression_token1] = ACTIONS(3996), + [aux_sym_unary_expression_token1] = ACTIONS(3996), + [sym_string_literal] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3994), + [aux_sym_boolean_literal_token1] = ACTIONS(3996), + [aux_sym_boolean_literal_token2] = ACTIONS(3996), + [sym_nothing_literal] = ACTIONS(3996), + [sym_null_literal] = ACTIONS(3996), + [sym_empty_literal] = ACTIONS(3996), + [sym_date_literal] = ACTIONS(3994), + [anon_sym_POUND] = ACTIONS(3996), + }, + [STATE(5327)] = { + [aux_sym_close_statement_repeat1] = STATE(5783), + [sym_identifier] = ACTIONS(8521), + [sym_newline] = ACTIONS(8523), + [anon_sym_COLON] = ACTIONS(8523), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8521), + [aux_sym_frm_property_statement_token1] = ACTIONS(8521), + [anon_sym_DOT] = ACTIONS(8521), + [anon_sym_BANG] = ACTIONS(8523), + [aux_sym__attribute_identifier_token1] = ACTIONS(8521), + [aux_sym_option_statement_token3] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8521), + [aux_sym_preprocessor_const_token1] = ACTIONS(8521), + [sym_static_modifier] = ACTIONS(8521), + [sym__dim_keyword] = ACTIONS(8521), + [sym__redim_keyword] = ACTIONS(8521), + [aux_sym_get_accessor_token1] = ACTIONS(8521), + [aux_sym_set_accessor_token1] = ACTIONS(8521), + [anon_sym_COMMA] = ACTIONS(10554), + [aux_sym_const_declaration_token1] = ACTIONS(8521), + [anon_sym_LPAREN] = ACTIONS(8523), + [aux_sym_as_type_clause_token2] = ACTIONS(8521), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8521), + [aux_sym_visibility_token1] = ACTIONS(8521), + [aux_sym_visibility_token2] = ACTIONS(8521), + [aux_sym_elseif_fragment_token1] = ACTIONS(8521), + [aux_sym_else_fragment_token1] = ACTIONS(8521), + [aux_sym_select_statement_token1] = ACTIONS(8521), + [aux_sym__for_header_token1] = ACTIONS(8521), + [aux_sym_do_statement_token1] = ACTIONS(8521), + [aux_sym_do_statement_token2] = ACTIONS(8521), + [aux_sym_do_condition_token1] = ACTIONS(8521), + [aux_sym_with_statement_token1] = ACTIONS(8521), + [aux_sym_exit_statement_token1] = ACTIONS(8521), + [sym_end_statement] = ACTIONS(8523), + [aux_sym_on_goto_statement_token1] = ACTIONS(8521), + [aux_sym_on_goto_statement_token2] = ACTIONS(8521), + [aux_sym_on_error_statement_token2] = ACTIONS(8521), + [sym__ambiguous_redim_statement] = ACTIONS(8523), + [aux_sym_erase_statement_token1] = ACTIONS(8521), + [aux_sym_open_statement_token1] = ACTIONS(8521), + [aux_sym_file_mode_token2] = ACTIONS(8521), + [aux_sym_file_access_token2] = ACTIONS(8521), + [aux_sym_file_lock_token2] = ACTIONS(8521), + [aux_sym_print_statement_token1] = ACTIONS(8521), + [anon_sym_PLUS] = ACTIONS(8523), + [anon_sym_DASH] = ACTIONS(8521), + [anon_sym_QMARK] = ACTIONS(8523), + [aux_sym_close_statement_token1] = ACTIONS(8521), + [aux_sym_put_statement_token1] = ACTIONS(8521), + [aux_sym_unlock_statement_token1] = ACTIONS(8521), + [aux_sym_seek_statement_token1] = ACTIONS(8521), + [sym_reset_statement] = ACTIONS(8521), + [aux_sym_raise_event_statement_token1] = ACTIONS(8521), + [sym_stop_statement] = ACTIONS(8521), + [sym_beep_statement] = ACTIONS(8521), + [aux_sym_unload_statement_token1] = ACTIONS(8521), + [aux_sym_def_type_statement_token1] = ACTIONS(8521), + [aux_sym_def_type_statement_token2] = ACTIONS(8521), + [aux_sym_def_type_statement_token3] = ACTIONS(8521), + [aux_sym_def_type_statement_token4] = ACTIONS(8521), + [aux_sym_def_type_statement_token5] = ACTIONS(8521), + [aux_sym_def_type_statement_token6] = ACTIONS(8521), + [aux_sym_def_type_statement_token7] = ACTIONS(8521), + [aux_sym_def_type_statement_token8] = ACTIONS(8521), + [aux_sym_def_type_statement_token9] = ACTIONS(8521), + [aux_sym_def_type_statement_token10] = ACTIONS(8521), + [aux_sym_def_type_statement_token11] = ACTIONS(8521), + [aux_sym_def_type_statement_token12] = ACTIONS(8521), + [aux_sym_def_type_statement_token13] = ACTIONS(8521), + [aux_sym_def_type_statement_token14] = ACTIONS(8521), + [aux_sym_call_statement_token1] = ACTIONS(8521), + [sym__ambiguous_call_statement] = ACTIONS(8521), + [aux_sym_addressof_expression_token1] = ACTIONS(8521), + [aux_sym_type_of_expression_token1] = ACTIONS(8521), + [aux_sym_unary_expression_token1] = ACTIONS(8521), + [sym_string_literal] = ACTIONS(8523), + [sym_number_literal] = ACTIONS(8523), + [aux_sym_boolean_literal_token1] = ACTIONS(8521), + [aux_sym_boolean_literal_token2] = ACTIONS(8521), + [sym_nothing_literal] = ACTIONS(8521), + [sym_null_literal] = ACTIONS(8521), + [sym_empty_literal] = ACTIONS(8521), + [sym_date_literal] = ACTIONS(8523), + [anon_sym_POUND] = ACTIONS(8521), + }, + [STATE(5328)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5802), + [sym_identifier] = ACTIONS(8158), + [sym_newline] = ACTIONS(8160), + [anon_sym_COLON] = ACTIONS(8160), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8158), + [aux_sym_frm_property_statement_token1] = ACTIONS(8158), + [anon_sym_DOT] = ACTIONS(8158), + [anon_sym_BANG] = ACTIONS(8160), + [aux_sym__attribute_identifier_token1] = ACTIONS(8158), + [aux_sym_option_statement_token3] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8158), + [aux_sym_preprocessor_const_token1] = ACTIONS(8158), + [sym_static_modifier] = ACTIONS(8158), + [sym__dim_keyword] = ACTIONS(8158), + [sym__redim_keyword] = ACTIONS(8158), + [aux_sym_get_accessor_token1] = ACTIONS(8158), + [aux_sym_set_accessor_token1] = ACTIONS(8158), + [anon_sym_COMMA] = ACTIONS(10543), + [aux_sym_const_declaration_token1] = ACTIONS(8158), + [anon_sym_LPAREN] = ACTIONS(8160), + [aux_sym_as_type_clause_token2] = ACTIONS(8158), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8158), + [aux_sym_visibility_token1] = ACTIONS(8158), + [aux_sym_visibility_token2] = ACTIONS(8158), + [aux_sym_elseif_fragment_token1] = ACTIONS(8158), + [aux_sym_else_fragment_token1] = ACTIONS(8158), + [aux_sym_select_statement_token1] = ACTIONS(8158), + [aux_sym__for_header_token1] = ACTIONS(8158), + [aux_sym_do_statement_token1] = ACTIONS(8158), + [aux_sym_do_statement_token2] = ACTIONS(8158), + [aux_sym_do_condition_token1] = ACTIONS(8158), + [aux_sym_with_statement_token1] = ACTIONS(8158), + [aux_sym_exit_statement_token1] = ACTIONS(8158), + [sym_end_statement] = ACTIONS(8160), + [aux_sym_on_goto_statement_token1] = ACTIONS(8158), + [aux_sym_on_goto_statement_token2] = ACTIONS(8158), + [aux_sym_on_error_statement_token2] = ACTIONS(8158), + [sym__ambiguous_redim_statement] = ACTIONS(8160), + [aux_sym_erase_statement_token1] = ACTIONS(8158), + [aux_sym_open_statement_token1] = ACTIONS(8158), + [aux_sym_file_mode_token2] = ACTIONS(8158), + [aux_sym_file_access_token2] = ACTIONS(8158), + [aux_sym_file_lock_token2] = ACTIONS(8158), + [aux_sym_print_statement_token1] = ACTIONS(8158), + [anon_sym_PLUS] = ACTIONS(8160), + [anon_sym_DASH] = ACTIONS(8158), + [anon_sym_QMARK] = ACTIONS(8160), + [aux_sym_close_statement_token1] = ACTIONS(8158), + [aux_sym_put_statement_token1] = ACTIONS(8158), + [aux_sym_unlock_statement_token1] = ACTIONS(8158), + [aux_sym_seek_statement_token1] = ACTIONS(8158), + [sym_reset_statement] = ACTIONS(8158), + [aux_sym_raise_event_statement_token1] = ACTIONS(8158), + [sym_stop_statement] = ACTIONS(8158), + [sym_beep_statement] = ACTIONS(8158), + [aux_sym_unload_statement_token1] = ACTIONS(8158), + [aux_sym_def_type_statement_token1] = ACTIONS(8158), + [aux_sym_def_type_statement_token2] = ACTIONS(8158), + [aux_sym_def_type_statement_token3] = ACTIONS(8158), + [aux_sym_def_type_statement_token4] = ACTIONS(8158), + [aux_sym_def_type_statement_token5] = ACTIONS(8158), + [aux_sym_def_type_statement_token6] = ACTIONS(8158), + [aux_sym_def_type_statement_token7] = ACTIONS(8158), + [aux_sym_def_type_statement_token8] = ACTIONS(8158), + [aux_sym_def_type_statement_token9] = ACTIONS(8158), + [aux_sym_def_type_statement_token10] = ACTIONS(8158), + [aux_sym_def_type_statement_token11] = ACTIONS(8158), + [aux_sym_def_type_statement_token12] = ACTIONS(8158), + [aux_sym_def_type_statement_token13] = ACTIONS(8158), + [aux_sym_def_type_statement_token14] = ACTIONS(8158), + [aux_sym_call_statement_token1] = ACTIONS(8158), + [sym__ambiguous_call_statement] = ACTIONS(8158), + [aux_sym_addressof_expression_token1] = ACTIONS(8158), + [aux_sym_type_of_expression_token1] = ACTIONS(8158), + [aux_sym_unary_expression_token1] = ACTIONS(8158), + [sym_string_literal] = ACTIONS(8160), + [sym_number_literal] = ACTIONS(8160), + [aux_sym_boolean_literal_token1] = ACTIONS(8158), + [aux_sym_boolean_literal_token2] = ACTIONS(8158), + [sym_nothing_literal] = ACTIONS(8158), + [sym_null_literal] = ACTIONS(8158), + [sym_empty_literal] = ACTIONS(8158), + [sym_date_literal] = ACTIONS(8160), + [anon_sym_POUND] = ACTIONS(8158), + }, + [STATE(5329)] = { + [aux_sym_erase_statement_repeat1] = STATE(5584), + [sym_identifier] = ACTIONS(8320), + [sym_newline] = ACTIONS(8322), + [anon_sym_COLON] = ACTIONS(8322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8320), + [aux_sym_frm_property_statement_token1] = ACTIONS(8320), + [anon_sym_DOT] = ACTIONS(8320), + [anon_sym_BANG] = ACTIONS(8322), + [aux_sym__attribute_identifier_token1] = ACTIONS(8320), + [aux_sym_option_statement_token3] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8320), + [aux_sym_preprocessor_const_token1] = ACTIONS(8320), + [sym_static_modifier] = ACTIONS(8320), + [sym__dim_keyword] = ACTIONS(8320), + [sym__redim_keyword] = ACTIONS(8320), + [aux_sym_get_accessor_token1] = ACTIONS(8320), + [aux_sym_set_accessor_token1] = ACTIONS(8320), + [anon_sym_COMMA] = ACTIONS(10556), + [aux_sym_const_declaration_token1] = ACTIONS(8320), + [anon_sym_LPAREN] = ACTIONS(8322), + [aux_sym_as_type_clause_token2] = ACTIONS(8320), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8320), + [aux_sym_visibility_token1] = ACTIONS(8320), + [aux_sym_visibility_token2] = ACTIONS(8320), + [aux_sym_elseif_fragment_token1] = ACTIONS(8320), + [aux_sym_else_fragment_token1] = ACTIONS(8320), + [aux_sym_select_statement_token1] = ACTIONS(8320), + [aux_sym__for_header_token1] = ACTIONS(8320), + [aux_sym_do_statement_token1] = ACTIONS(8320), + [aux_sym_do_condition_token1] = ACTIONS(8320), + [aux_sym_with_statement_token1] = ACTIONS(8320), + [aux_sym_exit_statement_token1] = ACTIONS(8320), + [sym_end_statement] = ACTIONS(8322), + [aux_sym_on_goto_statement_token1] = ACTIONS(8320), + [aux_sym_on_goto_statement_token2] = ACTIONS(8320), + [aux_sym_on_error_statement_token2] = ACTIONS(8320), + [sym__ambiguous_redim_statement] = ACTIONS(8322), + [aux_sym_erase_statement_token1] = ACTIONS(8320), + [aux_sym_open_statement_token1] = ACTIONS(8320), + [aux_sym_file_mode_token2] = ACTIONS(8320), + [aux_sym_file_access_token2] = ACTIONS(8320), + [aux_sym_file_lock_token2] = ACTIONS(8320), + [aux_sym_print_statement_token1] = ACTIONS(8320), + [anon_sym_PLUS] = ACTIONS(8322), + [anon_sym_DASH] = ACTIONS(8320), + [anon_sym_QMARK] = ACTIONS(8322), + [aux_sym_close_statement_token1] = ACTIONS(8320), + [aux_sym_put_statement_token1] = ACTIONS(8320), + [aux_sym_unlock_statement_token1] = ACTIONS(8320), + [aux_sym_seek_statement_token1] = ACTIONS(8320), + [sym_reset_statement] = ACTIONS(8320), + [aux_sym_raise_event_statement_token1] = ACTIONS(8320), + [sym_stop_statement] = ACTIONS(8320), + [sym_beep_statement] = ACTIONS(8320), + [aux_sym_unload_statement_token1] = ACTIONS(8320), + [aux_sym_def_type_statement_token1] = ACTIONS(8320), + [aux_sym_def_type_statement_token2] = ACTIONS(8320), + [aux_sym_def_type_statement_token3] = ACTIONS(8320), + [aux_sym_def_type_statement_token4] = ACTIONS(8320), + [aux_sym_def_type_statement_token5] = ACTIONS(8320), + [aux_sym_def_type_statement_token6] = ACTIONS(8320), + [aux_sym_def_type_statement_token7] = ACTIONS(8320), + [aux_sym_def_type_statement_token8] = ACTIONS(8320), + [aux_sym_def_type_statement_token9] = ACTIONS(8320), + [aux_sym_def_type_statement_token10] = ACTIONS(8320), + [aux_sym_def_type_statement_token11] = ACTIONS(8320), + [aux_sym_def_type_statement_token12] = ACTIONS(8320), + [aux_sym_def_type_statement_token13] = ACTIONS(8320), + [aux_sym_def_type_statement_token14] = ACTIONS(8320), + [aux_sym_call_statement_token1] = ACTIONS(8320), + [sym__ambiguous_call_statement] = ACTIONS(8320), + [aux_sym_addressof_expression_token1] = ACTIONS(8320), + [aux_sym_type_of_expression_token1] = ACTIONS(8320), + [aux_sym_unary_expression_token1] = ACTIONS(8320), + [sym_string_literal] = ACTIONS(8322), + [sym_number_literal] = ACTIONS(8322), + [aux_sym_boolean_literal_token1] = ACTIONS(8320), + [aux_sym_boolean_literal_token2] = ACTIONS(8320), + [sym_nothing_literal] = ACTIONS(8320), + [sym_null_literal] = ACTIONS(8320), + [sym_empty_literal] = ACTIONS(8320), + [sym_date_literal] = ACTIONS(8322), + [anon_sym_POUND] = ACTIONS(8320), + }, + [STATE(5330)] = { + [sym_do_condition] = STATE(6850), + [sym_identifier] = ACTIONS(8509), + [sym_newline] = ACTIONS(8511), + [anon_sym_COLON] = ACTIONS(8511), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8509), + [aux_sym_frm_property_statement_token1] = ACTIONS(8509), + [anon_sym_DOT] = ACTIONS(8509), + [anon_sym_BANG] = ACTIONS(8511), + [aux_sym__attribute_identifier_token1] = ACTIONS(8509), + [aux_sym_option_statement_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8509), + [aux_sym_preprocessor_const_token1] = ACTIONS(8509), + [sym_static_modifier] = ACTIONS(8509), + [sym__dim_keyword] = ACTIONS(8509), + [sym__redim_keyword] = ACTIONS(8509), + [aux_sym_get_accessor_token1] = ACTIONS(8509), + [aux_sym_set_accessor_token1] = ACTIONS(8509), + [aux_sym_const_declaration_token1] = ACTIONS(8509), + [anon_sym_LPAREN] = ACTIONS(8511), + [aux_sym_as_type_clause_token2] = ACTIONS(8509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8509), + [aux_sym_visibility_token1] = ACTIONS(8509), + [aux_sym_visibility_token2] = ACTIONS(8509), + [aux_sym_elseif_fragment_token1] = ACTIONS(8509), + [aux_sym_else_fragment_token1] = ACTIONS(8509), + [aux_sym_select_statement_token1] = ACTIONS(8509), + [aux_sym_select_statement_token2] = ACTIONS(8509), + [aux_sym__for_header_token1] = ACTIONS(8509), + [aux_sym_do_statement_token1] = ACTIONS(8509), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8509), + [aux_sym_exit_statement_token1] = ACTIONS(8509), + [sym_end_statement] = ACTIONS(8511), + [aux_sym_on_goto_statement_token1] = ACTIONS(8509), + [aux_sym_on_goto_statement_token2] = ACTIONS(8509), + [aux_sym_on_error_statement_token2] = ACTIONS(8509), + [sym__ambiguous_redim_statement] = ACTIONS(8511), + [aux_sym_erase_statement_token1] = ACTIONS(8509), + [aux_sym_open_statement_token1] = ACTIONS(8509), + [aux_sym_file_mode_token2] = ACTIONS(8509), + [aux_sym_file_access_token2] = ACTIONS(8509), + [aux_sym_file_lock_token2] = ACTIONS(8509), + [aux_sym_print_statement_token1] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(8511), + [anon_sym_DASH] = ACTIONS(8509), + [anon_sym_QMARK] = ACTIONS(8511), + [aux_sym_close_statement_token1] = ACTIONS(8509), + [aux_sym_put_statement_token1] = ACTIONS(8509), + [aux_sym_unlock_statement_token1] = ACTIONS(8509), + [aux_sym_seek_statement_token1] = ACTIONS(8509), + [sym_reset_statement] = ACTIONS(8509), + [aux_sym_raise_event_statement_token1] = ACTIONS(8509), + [sym_stop_statement] = ACTIONS(8509), + [sym_beep_statement] = ACTIONS(8509), + [aux_sym_unload_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token2] = ACTIONS(8509), + [aux_sym_def_type_statement_token3] = ACTIONS(8509), + [aux_sym_def_type_statement_token4] = ACTIONS(8509), + [aux_sym_def_type_statement_token5] = ACTIONS(8509), + [aux_sym_def_type_statement_token6] = ACTIONS(8509), + [aux_sym_def_type_statement_token7] = ACTIONS(8509), + [aux_sym_def_type_statement_token8] = ACTIONS(8509), + [aux_sym_def_type_statement_token9] = ACTIONS(8509), + [aux_sym_def_type_statement_token10] = ACTIONS(8509), + [aux_sym_def_type_statement_token11] = ACTIONS(8509), + [aux_sym_def_type_statement_token12] = ACTIONS(8509), + [aux_sym_def_type_statement_token13] = ACTIONS(8509), + [aux_sym_def_type_statement_token14] = ACTIONS(8509), + [aux_sym_call_statement_token1] = ACTIONS(8509), + [sym__ambiguous_call_statement] = ACTIONS(8509), + [aux_sym_addressof_expression_token1] = ACTIONS(8509), + [aux_sym_type_of_expression_token1] = ACTIONS(8509), + [aux_sym_unary_expression_token1] = ACTIONS(8509), + [sym_string_literal] = ACTIONS(8511), + [sym_number_literal] = ACTIONS(8511), + [aux_sym_boolean_literal_token1] = ACTIONS(8509), + [aux_sym_boolean_literal_token2] = ACTIONS(8509), + [sym_nothing_literal] = ACTIONS(8509), + [sym_null_literal] = ACTIONS(8509), + [sym_empty_literal] = ACTIONS(8509), + [sym_date_literal] = ACTIONS(8511), + [anon_sym_POUND] = ACTIONS(8509), + }, + [STATE(5331)] = { + [sym_do_condition] = STATE(6375), + [sym_identifier] = ACTIONS(8271), + [sym_newline] = ACTIONS(8273), + [anon_sym_COLON] = ACTIONS(8273), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8271), + [aux_sym_frm_property_statement_token1] = ACTIONS(8271), + [anon_sym_DOT] = ACTIONS(8271), + [anon_sym_BANG] = ACTIONS(8273), + [aux_sym__attribute_identifier_token1] = ACTIONS(8271), + [aux_sym_option_statement_token3] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8271), + [aux_sym_preprocessor_const_token1] = ACTIONS(8271), + [sym_static_modifier] = ACTIONS(8271), + [sym__dim_keyword] = ACTIONS(8271), + [sym__redim_keyword] = ACTIONS(8271), + [aux_sym_get_accessor_token1] = ACTIONS(8271), + [aux_sym_set_accessor_token1] = ACTIONS(8271), + [aux_sym_const_declaration_token1] = ACTIONS(8271), + [anon_sym_LPAREN] = ACTIONS(8273), + [aux_sym_as_type_clause_token2] = ACTIONS(8271), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8271), + [aux_sym_visibility_token1] = ACTIONS(8271), + [aux_sym_visibility_token2] = ACTIONS(8271), + [aux_sym_elseif_fragment_token1] = ACTIONS(8271), + [aux_sym_else_fragment_token1] = ACTIONS(8271), + [aux_sym_select_statement_token1] = ACTIONS(8271), + [aux_sym__for_header_token1] = ACTIONS(8271), + [aux_sym_do_statement_token1] = ACTIONS(8271), + [aux_sym_do_statement_token2] = ACTIONS(8271), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8271), + [aux_sym_exit_statement_token1] = ACTIONS(8271), + [sym_end_statement] = ACTIONS(8273), + [aux_sym_on_goto_statement_token1] = ACTIONS(8271), + [aux_sym_on_goto_statement_token2] = ACTIONS(8271), + [aux_sym_on_error_statement_token2] = ACTIONS(8271), + [sym__ambiguous_redim_statement] = ACTIONS(8273), + [aux_sym_erase_statement_token1] = ACTIONS(8271), + [aux_sym_open_statement_token1] = ACTIONS(8271), + [aux_sym_file_mode_token2] = ACTIONS(8271), + [aux_sym_file_access_token2] = ACTIONS(8271), + [aux_sym_file_lock_token2] = ACTIONS(8271), + [aux_sym_print_statement_token1] = ACTIONS(8271), + [anon_sym_PLUS] = ACTIONS(8273), + [anon_sym_DASH] = ACTIONS(8271), + [anon_sym_QMARK] = ACTIONS(8273), + [aux_sym_close_statement_token1] = ACTIONS(8271), + [aux_sym_put_statement_token1] = ACTIONS(8271), + [aux_sym_unlock_statement_token1] = ACTIONS(8271), + [aux_sym_seek_statement_token1] = ACTIONS(8271), + [sym_reset_statement] = ACTIONS(8271), + [aux_sym_raise_event_statement_token1] = ACTIONS(8271), + [sym_stop_statement] = ACTIONS(8271), + [sym_beep_statement] = ACTIONS(8271), + [aux_sym_unload_statement_token1] = ACTIONS(8271), + [aux_sym_def_type_statement_token1] = ACTIONS(8271), + [aux_sym_def_type_statement_token2] = ACTIONS(8271), + [aux_sym_def_type_statement_token3] = ACTIONS(8271), + [aux_sym_def_type_statement_token4] = ACTIONS(8271), + [aux_sym_def_type_statement_token5] = ACTIONS(8271), + [aux_sym_def_type_statement_token6] = ACTIONS(8271), + [aux_sym_def_type_statement_token7] = ACTIONS(8271), + [aux_sym_def_type_statement_token8] = ACTIONS(8271), + [aux_sym_def_type_statement_token9] = ACTIONS(8271), + [aux_sym_def_type_statement_token10] = ACTIONS(8271), + [aux_sym_def_type_statement_token11] = ACTIONS(8271), + [aux_sym_def_type_statement_token12] = ACTIONS(8271), + [aux_sym_def_type_statement_token13] = ACTIONS(8271), + [aux_sym_def_type_statement_token14] = ACTIONS(8271), + [aux_sym_call_statement_token1] = ACTIONS(8271), + [sym__ambiguous_call_statement] = ACTIONS(8271), + [aux_sym_addressof_expression_token1] = ACTIONS(8271), + [aux_sym_type_of_expression_token1] = ACTIONS(8271), + [aux_sym_unary_expression_token1] = ACTIONS(8271), + [sym_string_literal] = ACTIONS(8273), + [sym_number_literal] = ACTIONS(8273), + [aux_sym_boolean_literal_token1] = ACTIONS(8271), + [aux_sym_boolean_literal_token2] = ACTIONS(8271), + [sym_nothing_literal] = ACTIONS(8271), + [sym_null_literal] = ACTIONS(8271), + [sym_empty_literal] = ACTIONS(8271), + [sym_date_literal] = ACTIONS(8273), + [anon_sym_POUND] = ACTIONS(8271), + }, + [STATE(5332)] = { + [sym_identifier] = ACTIONS(7984), + [sym_newline] = ACTIONS(7986), + [anon_sym_COLON] = ACTIONS(7986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7984), + [aux_sym_frm_property_statement_token1] = ACTIONS(7984), + [anon_sym_EQ] = ACTIONS(7986), + [anon_sym_DOT] = ACTIONS(7984), + [anon_sym_BANG] = ACTIONS(7986), + [aux_sym__attribute_identifier_token1] = ACTIONS(7984), + [aux_sym_option_statement_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7984), + [aux_sym_preprocessor_const_token1] = ACTIONS(7984), + [sym_static_modifier] = ACTIONS(7984), + [sym__dim_keyword] = ACTIONS(7984), + [sym__redim_keyword] = ACTIONS(7984), + [aux_sym_get_accessor_token1] = ACTIONS(7984), + [aux_sym_set_accessor_token1] = ACTIONS(7984), + [anon_sym_COMMA] = ACTIONS(7986), + [aux_sym_const_declaration_token1] = ACTIONS(7984), + [anon_sym_LPAREN] = ACTIONS(7986), + [aux_sym_as_type_clause_token2] = ACTIONS(7984), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7984), + [aux_sym_visibility_token1] = ACTIONS(7984), + [aux_sym_visibility_token2] = ACTIONS(7984), + [aux_sym_elseif_fragment_token1] = ACTIONS(7984), + [aux_sym_else_fragment_token1] = ACTIONS(7984), + [aux_sym_select_statement_token1] = ACTIONS(7984), + [aux_sym__for_header_token1] = ACTIONS(7984), + [aux_sym_do_statement_token1] = ACTIONS(7984), + [aux_sym_do_condition_token1] = ACTIONS(7984), + [aux_sym_with_statement_token1] = ACTIONS(7984), + [aux_sym_exit_statement_token1] = ACTIONS(7984), + [sym_end_statement] = ACTIONS(7986), + [aux_sym_on_goto_statement_token1] = ACTIONS(7984), + [aux_sym_on_goto_statement_token2] = ACTIONS(7984), + [aux_sym_on_error_statement_token2] = ACTIONS(7984), + [sym__ambiguous_redim_statement] = ACTIONS(7986), + [aux_sym_erase_statement_token1] = ACTIONS(7984), + [aux_sym_open_statement_token1] = ACTIONS(7984), + [aux_sym_file_mode_token2] = ACTIONS(7984), + [aux_sym_file_access_token2] = ACTIONS(7984), + [aux_sym_file_lock_token2] = ACTIONS(7984), + [aux_sym_print_statement_token1] = ACTIONS(7984), + [anon_sym_PLUS] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(7984), + [anon_sym_QMARK] = ACTIONS(7986), + [aux_sym_close_statement_token1] = ACTIONS(7984), + [aux_sym_put_statement_token1] = ACTIONS(7984), + [aux_sym_unlock_statement_token1] = ACTIONS(7984), + [aux_sym_seek_statement_token1] = ACTIONS(7984), + [sym_reset_statement] = ACTIONS(7984), + [aux_sym_raise_event_statement_token1] = ACTIONS(7984), + [sym_stop_statement] = ACTIONS(7984), + [sym_beep_statement] = ACTIONS(7984), + [aux_sym_unload_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token2] = ACTIONS(7984), + [aux_sym_def_type_statement_token3] = ACTIONS(7984), + [aux_sym_def_type_statement_token4] = ACTIONS(7984), + [aux_sym_def_type_statement_token5] = ACTIONS(7984), + [aux_sym_def_type_statement_token6] = ACTIONS(7984), + [aux_sym_def_type_statement_token7] = ACTIONS(7984), + [aux_sym_def_type_statement_token8] = ACTIONS(7984), + [aux_sym_def_type_statement_token9] = ACTIONS(7984), + [aux_sym_def_type_statement_token10] = ACTIONS(7984), + [aux_sym_def_type_statement_token11] = ACTIONS(7984), + [aux_sym_def_type_statement_token12] = ACTIONS(7984), + [aux_sym_def_type_statement_token13] = ACTIONS(7984), + [aux_sym_def_type_statement_token14] = ACTIONS(7984), + [aux_sym_call_statement_token1] = ACTIONS(7984), + [sym__ambiguous_call_statement] = ACTIONS(7984), + [aux_sym_addressof_expression_token1] = ACTIONS(7984), + [aux_sym_type_of_expression_token1] = ACTIONS(7984), + [aux_sym_unary_expression_token1] = ACTIONS(7984), + [sym_string_literal] = ACTIONS(7986), + [sym_number_literal] = ACTIONS(7986), + [aux_sym_boolean_literal_token1] = ACTIONS(7984), + [aux_sym_boolean_literal_token2] = ACTIONS(7984), + [sym_nothing_literal] = ACTIONS(7984), + [sym_null_literal] = ACTIONS(7984), + [sym_empty_literal] = ACTIONS(7984), + [sym_date_literal] = ACTIONS(7986), + [anon_sym_POUND] = ACTIONS(7984), + }, + [STATE(5333)] = { + [sym_do_condition] = STATE(6379), + [sym_identifier] = ACTIONS(8275), + [sym_newline] = ACTIONS(8277), + [anon_sym_COLON] = ACTIONS(8277), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8275), + [aux_sym_frm_property_statement_token1] = ACTIONS(8275), + [anon_sym_DOT] = ACTIONS(8275), + [anon_sym_BANG] = ACTIONS(8277), + [aux_sym__attribute_identifier_token1] = ACTIONS(8275), + [aux_sym_option_statement_token3] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8275), + [aux_sym_preprocessor_const_token1] = ACTIONS(8275), + [sym_static_modifier] = ACTIONS(8275), + [sym__dim_keyword] = ACTIONS(8275), + [sym__redim_keyword] = ACTIONS(8275), + [aux_sym_get_accessor_token1] = ACTIONS(8275), + [aux_sym_set_accessor_token1] = ACTIONS(8275), + [aux_sym_const_declaration_token1] = ACTIONS(8275), + [anon_sym_LPAREN] = ACTIONS(8277), + [aux_sym_as_type_clause_token2] = ACTIONS(8275), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8275), + [aux_sym_visibility_token1] = ACTIONS(8275), + [aux_sym_visibility_token2] = ACTIONS(8275), + [aux_sym_elseif_fragment_token1] = ACTIONS(8275), + [aux_sym_else_fragment_token1] = ACTIONS(8275), + [aux_sym_select_statement_token1] = ACTIONS(8275), + [aux_sym__for_header_token1] = ACTIONS(8275), + [aux_sym_do_statement_token1] = ACTIONS(8275), + [aux_sym_do_statement_token2] = ACTIONS(8275), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8275), + [aux_sym_exit_statement_token1] = ACTIONS(8275), + [sym_end_statement] = ACTIONS(8277), + [aux_sym_on_goto_statement_token1] = ACTIONS(8275), + [aux_sym_on_goto_statement_token2] = ACTIONS(8275), + [aux_sym_on_error_statement_token2] = ACTIONS(8275), + [sym__ambiguous_redim_statement] = ACTIONS(8277), + [aux_sym_erase_statement_token1] = ACTIONS(8275), + [aux_sym_open_statement_token1] = ACTIONS(8275), + [aux_sym_file_mode_token2] = ACTIONS(8275), + [aux_sym_file_access_token2] = ACTIONS(8275), + [aux_sym_file_lock_token2] = ACTIONS(8275), + [aux_sym_print_statement_token1] = ACTIONS(8275), + [anon_sym_PLUS] = ACTIONS(8277), + [anon_sym_DASH] = ACTIONS(8275), + [anon_sym_QMARK] = ACTIONS(8277), + [aux_sym_close_statement_token1] = ACTIONS(8275), + [aux_sym_put_statement_token1] = ACTIONS(8275), + [aux_sym_unlock_statement_token1] = ACTIONS(8275), + [aux_sym_seek_statement_token1] = ACTIONS(8275), + [sym_reset_statement] = ACTIONS(8275), + [aux_sym_raise_event_statement_token1] = ACTIONS(8275), + [sym_stop_statement] = ACTIONS(8275), + [sym_beep_statement] = ACTIONS(8275), + [aux_sym_unload_statement_token1] = ACTIONS(8275), + [aux_sym_def_type_statement_token1] = ACTIONS(8275), + [aux_sym_def_type_statement_token2] = ACTIONS(8275), + [aux_sym_def_type_statement_token3] = ACTIONS(8275), + [aux_sym_def_type_statement_token4] = ACTIONS(8275), + [aux_sym_def_type_statement_token5] = ACTIONS(8275), + [aux_sym_def_type_statement_token6] = ACTIONS(8275), + [aux_sym_def_type_statement_token7] = ACTIONS(8275), + [aux_sym_def_type_statement_token8] = ACTIONS(8275), + [aux_sym_def_type_statement_token9] = ACTIONS(8275), + [aux_sym_def_type_statement_token10] = ACTIONS(8275), + [aux_sym_def_type_statement_token11] = ACTIONS(8275), + [aux_sym_def_type_statement_token12] = ACTIONS(8275), + [aux_sym_def_type_statement_token13] = ACTIONS(8275), + [aux_sym_def_type_statement_token14] = ACTIONS(8275), + [aux_sym_call_statement_token1] = ACTIONS(8275), + [sym__ambiguous_call_statement] = ACTIONS(8275), + [aux_sym_addressof_expression_token1] = ACTIONS(8275), + [aux_sym_type_of_expression_token1] = ACTIONS(8275), + [aux_sym_unary_expression_token1] = ACTIONS(8275), + [sym_string_literal] = ACTIONS(8277), + [sym_number_literal] = ACTIONS(8277), + [aux_sym_boolean_literal_token1] = ACTIONS(8275), + [aux_sym_boolean_literal_token2] = ACTIONS(8275), + [sym_nothing_literal] = ACTIONS(8275), + [sym_null_literal] = ACTIONS(8275), + [sym_empty_literal] = ACTIONS(8275), + [sym_date_literal] = ACTIONS(8277), + [anon_sym_POUND] = ACTIONS(8275), + }, + [STATE(5334)] = { + [sym_do_condition] = STATE(6380), + [sym_identifier] = ACTIONS(8279), + [sym_newline] = ACTIONS(8281), + [anon_sym_COLON] = ACTIONS(8281), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8279), + [aux_sym_frm_property_statement_token1] = ACTIONS(8279), + [anon_sym_DOT] = ACTIONS(8279), + [anon_sym_BANG] = ACTIONS(8281), + [aux_sym__attribute_identifier_token1] = ACTIONS(8279), + [aux_sym_option_statement_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8279), + [aux_sym_preprocessor_const_token1] = ACTIONS(8279), + [sym_static_modifier] = ACTIONS(8279), + [sym__dim_keyword] = ACTIONS(8279), + [sym__redim_keyword] = ACTIONS(8279), + [aux_sym_get_accessor_token1] = ACTIONS(8279), + [aux_sym_set_accessor_token1] = ACTIONS(8279), + [aux_sym_const_declaration_token1] = ACTIONS(8279), + [anon_sym_LPAREN] = ACTIONS(8281), + [aux_sym_as_type_clause_token2] = ACTIONS(8279), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8279), + [aux_sym_visibility_token1] = ACTIONS(8279), + [aux_sym_visibility_token2] = ACTIONS(8279), + [aux_sym_elseif_fragment_token1] = ACTIONS(8279), + [aux_sym_else_fragment_token1] = ACTIONS(8279), + [aux_sym_select_statement_token1] = ACTIONS(8279), + [aux_sym__for_header_token1] = ACTIONS(8279), + [aux_sym_do_statement_token1] = ACTIONS(8279), + [aux_sym_do_statement_token2] = ACTIONS(8279), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8279), + [aux_sym_exit_statement_token1] = ACTIONS(8279), + [sym_end_statement] = ACTIONS(8281), + [aux_sym_on_goto_statement_token1] = ACTIONS(8279), + [aux_sym_on_goto_statement_token2] = ACTIONS(8279), + [aux_sym_on_error_statement_token2] = ACTIONS(8279), + [sym__ambiguous_redim_statement] = ACTIONS(8281), + [aux_sym_erase_statement_token1] = ACTIONS(8279), + [aux_sym_open_statement_token1] = ACTIONS(8279), + [aux_sym_file_mode_token2] = ACTIONS(8279), + [aux_sym_file_access_token2] = ACTIONS(8279), + [aux_sym_file_lock_token2] = ACTIONS(8279), + [aux_sym_print_statement_token1] = ACTIONS(8279), + [anon_sym_PLUS] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8279), + [anon_sym_QMARK] = ACTIONS(8281), + [aux_sym_close_statement_token1] = ACTIONS(8279), + [aux_sym_put_statement_token1] = ACTIONS(8279), + [aux_sym_unlock_statement_token1] = ACTIONS(8279), + [aux_sym_seek_statement_token1] = ACTIONS(8279), + [sym_reset_statement] = ACTIONS(8279), + [aux_sym_raise_event_statement_token1] = ACTIONS(8279), + [sym_stop_statement] = ACTIONS(8279), + [sym_beep_statement] = ACTIONS(8279), + [aux_sym_unload_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token2] = ACTIONS(8279), + [aux_sym_def_type_statement_token3] = ACTIONS(8279), + [aux_sym_def_type_statement_token4] = ACTIONS(8279), + [aux_sym_def_type_statement_token5] = ACTIONS(8279), + [aux_sym_def_type_statement_token6] = ACTIONS(8279), + [aux_sym_def_type_statement_token7] = ACTIONS(8279), + [aux_sym_def_type_statement_token8] = ACTIONS(8279), + [aux_sym_def_type_statement_token9] = ACTIONS(8279), + [aux_sym_def_type_statement_token10] = ACTIONS(8279), + [aux_sym_def_type_statement_token11] = ACTIONS(8279), + [aux_sym_def_type_statement_token12] = ACTIONS(8279), + [aux_sym_def_type_statement_token13] = ACTIONS(8279), + [aux_sym_def_type_statement_token14] = ACTIONS(8279), + [aux_sym_call_statement_token1] = ACTIONS(8279), + [sym__ambiguous_call_statement] = ACTIONS(8279), + [aux_sym_addressof_expression_token1] = ACTIONS(8279), + [aux_sym_type_of_expression_token1] = ACTIONS(8279), + [aux_sym_unary_expression_token1] = ACTIONS(8279), + [sym_string_literal] = ACTIONS(8281), + [sym_number_literal] = ACTIONS(8281), + [aux_sym_boolean_literal_token1] = ACTIONS(8279), + [aux_sym_boolean_literal_token2] = ACTIONS(8279), + [sym_nothing_literal] = ACTIONS(8279), + [sym_null_literal] = ACTIONS(8279), + [sym_empty_literal] = ACTIONS(8279), + [sym_date_literal] = ACTIONS(8281), + [anon_sym_POUND] = ACTIONS(8279), + }, + [STATE(5335)] = { + [sym_do_condition] = STATE(6383), + [sym_identifier] = ACTIONS(8283), + [sym_newline] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8283), + [aux_sym_frm_property_statement_token1] = ACTIONS(8283), + [anon_sym_DOT] = ACTIONS(8283), + [anon_sym_BANG] = ACTIONS(8285), + [aux_sym__attribute_identifier_token1] = ACTIONS(8283), + [aux_sym_option_statement_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8283), + [aux_sym_preprocessor_const_token1] = ACTIONS(8283), + [sym_static_modifier] = ACTIONS(8283), + [sym__dim_keyword] = ACTIONS(8283), + [sym__redim_keyword] = ACTIONS(8283), + [aux_sym_get_accessor_token1] = ACTIONS(8283), + [aux_sym_set_accessor_token1] = ACTIONS(8283), + [aux_sym_const_declaration_token1] = ACTIONS(8283), + [anon_sym_LPAREN] = ACTIONS(8285), + [aux_sym_as_type_clause_token2] = ACTIONS(8283), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8283), + [aux_sym_visibility_token1] = ACTIONS(8283), + [aux_sym_visibility_token2] = ACTIONS(8283), + [aux_sym_elseif_fragment_token1] = ACTIONS(8283), + [aux_sym_else_fragment_token1] = ACTIONS(8283), + [aux_sym_select_statement_token1] = ACTIONS(8283), + [aux_sym__for_header_token1] = ACTIONS(8283), + [aux_sym_do_statement_token1] = ACTIONS(8283), + [aux_sym_do_statement_token2] = ACTIONS(8283), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8283), + [aux_sym_exit_statement_token1] = ACTIONS(8283), + [sym_end_statement] = ACTIONS(8285), + [aux_sym_on_goto_statement_token1] = ACTIONS(8283), + [aux_sym_on_goto_statement_token2] = ACTIONS(8283), + [aux_sym_on_error_statement_token2] = ACTIONS(8283), + [sym__ambiguous_redim_statement] = ACTIONS(8285), + [aux_sym_erase_statement_token1] = ACTIONS(8283), + [aux_sym_open_statement_token1] = ACTIONS(8283), + [aux_sym_file_mode_token2] = ACTIONS(8283), + [aux_sym_file_access_token2] = ACTIONS(8283), + [aux_sym_file_lock_token2] = ACTIONS(8283), + [aux_sym_print_statement_token1] = ACTIONS(8283), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_DASH] = ACTIONS(8283), + [anon_sym_QMARK] = ACTIONS(8285), + [aux_sym_close_statement_token1] = ACTIONS(8283), + [aux_sym_put_statement_token1] = ACTIONS(8283), + [aux_sym_unlock_statement_token1] = ACTIONS(8283), + [aux_sym_seek_statement_token1] = ACTIONS(8283), + [sym_reset_statement] = ACTIONS(8283), + [aux_sym_raise_event_statement_token1] = ACTIONS(8283), + [sym_stop_statement] = ACTIONS(8283), + [sym_beep_statement] = ACTIONS(8283), + [aux_sym_unload_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token2] = ACTIONS(8283), + [aux_sym_def_type_statement_token3] = ACTIONS(8283), + [aux_sym_def_type_statement_token4] = ACTIONS(8283), + [aux_sym_def_type_statement_token5] = ACTIONS(8283), + [aux_sym_def_type_statement_token6] = ACTIONS(8283), + [aux_sym_def_type_statement_token7] = ACTIONS(8283), + [aux_sym_def_type_statement_token8] = ACTIONS(8283), + [aux_sym_def_type_statement_token9] = ACTIONS(8283), + [aux_sym_def_type_statement_token10] = ACTIONS(8283), + [aux_sym_def_type_statement_token11] = ACTIONS(8283), + [aux_sym_def_type_statement_token12] = ACTIONS(8283), + [aux_sym_def_type_statement_token13] = ACTIONS(8283), + [aux_sym_def_type_statement_token14] = ACTIONS(8283), + [aux_sym_call_statement_token1] = ACTIONS(8283), + [sym__ambiguous_call_statement] = ACTIONS(8283), + [aux_sym_addressof_expression_token1] = ACTIONS(8283), + [aux_sym_type_of_expression_token1] = ACTIONS(8283), + [aux_sym_unary_expression_token1] = ACTIONS(8283), + [sym_string_literal] = ACTIONS(8285), + [sym_number_literal] = ACTIONS(8285), + [aux_sym_boolean_literal_token1] = ACTIONS(8283), + [aux_sym_boolean_literal_token2] = ACTIONS(8283), + [sym_nothing_literal] = ACTIONS(8283), + [sym_null_literal] = ACTIONS(8283), + [sym_empty_literal] = ACTIONS(8283), + [sym_date_literal] = ACTIONS(8285), + [anon_sym_POUND] = ACTIONS(8283), + }, + [STATE(5336)] = { + [sym_do_condition] = STATE(6387), + [sym_identifier] = ACTIONS(8294), + [sym_newline] = ACTIONS(8296), + [anon_sym_COLON] = ACTIONS(8296), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8294), + [aux_sym_frm_property_statement_token1] = ACTIONS(8294), + [anon_sym_DOT] = ACTIONS(8294), + [anon_sym_BANG] = ACTIONS(8296), + [aux_sym__attribute_identifier_token1] = ACTIONS(8294), + [aux_sym_option_statement_token3] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8294), + [aux_sym_preprocessor_const_token1] = ACTIONS(8294), + [sym_static_modifier] = ACTIONS(8294), + [sym__dim_keyword] = ACTIONS(8294), + [sym__redim_keyword] = ACTIONS(8294), + [aux_sym_get_accessor_token1] = ACTIONS(8294), + [aux_sym_set_accessor_token1] = ACTIONS(8294), + [aux_sym_const_declaration_token1] = ACTIONS(8294), + [anon_sym_LPAREN] = ACTIONS(8296), + [aux_sym_as_type_clause_token2] = ACTIONS(8294), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8294), + [aux_sym_visibility_token1] = ACTIONS(8294), + [aux_sym_visibility_token2] = ACTIONS(8294), + [aux_sym_elseif_fragment_token1] = ACTIONS(8294), + [aux_sym_else_fragment_token1] = ACTIONS(8294), + [aux_sym_select_statement_token1] = ACTIONS(8294), + [aux_sym__for_header_token1] = ACTIONS(8294), + [aux_sym_do_statement_token1] = ACTIONS(8294), + [aux_sym_do_statement_token2] = ACTIONS(8294), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8294), + [aux_sym_exit_statement_token1] = ACTIONS(8294), + [sym_end_statement] = ACTIONS(8296), + [aux_sym_on_goto_statement_token1] = ACTIONS(8294), + [aux_sym_on_goto_statement_token2] = ACTIONS(8294), + [aux_sym_on_error_statement_token2] = ACTIONS(8294), + [sym__ambiguous_redim_statement] = ACTIONS(8296), + [aux_sym_erase_statement_token1] = ACTIONS(8294), + [aux_sym_open_statement_token1] = ACTIONS(8294), + [aux_sym_file_mode_token2] = ACTIONS(8294), + [aux_sym_file_access_token2] = ACTIONS(8294), + [aux_sym_file_lock_token2] = ACTIONS(8294), + [aux_sym_print_statement_token1] = ACTIONS(8294), + [anon_sym_PLUS] = ACTIONS(8296), + [anon_sym_DASH] = ACTIONS(8294), + [anon_sym_QMARK] = ACTIONS(8296), + [aux_sym_close_statement_token1] = ACTIONS(8294), + [aux_sym_put_statement_token1] = ACTIONS(8294), + [aux_sym_unlock_statement_token1] = ACTIONS(8294), + [aux_sym_seek_statement_token1] = ACTIONS(8294), + [sym_reset_statement] = ACTIONS(8294), + [aux_sym_raise_event_statement_token1] = ACTIONS(8294), + [sym_stop_statement] = ACTIONS(8294), + [sym_beep_statement] = ACTIONS(8294), + [aux_sym_unload_statement_token1] = ACTIONS(8294), + [aux_sym_def_type_statement_token1] = ACTIONS(8294), + [aux_sym_def_type_statement_token2] = ACTIONS(8294), + [aux_sym_def_type_statement_token3] = ACTIONS(8294), + [aux_sym_def_type_statement_token4] = ACTIONS(8294), + [aux_sym_def_type_statement_token5] = ACTIONS(8294), + [aux_sym_def_type_statement_token6] = ACTIONS(8294), + [aux_sym_def_type_statement_token7] = ACTIONS(8294), + [aux_sym_def_type_statement_token8] = ACTIONS(8294), + [aux_sym_def_type_statement_token9] = ACTIONS(8294), + [aux_sym_def_type_statement_token10] = ACTIONS(8294), + [aux_sym_def_type_statement_token11] = ACTIONS(8294), + [aux_sym_def_type_statement_token12] = ACTIONS(8294), + [aux_sym_def_type_statement_token13] = ACTIONS(8294), + [aux_sym_def_type_statement_token14] = ACTIONS(8294), + [aux_sym_call_statement_token1] = ACTIONS(8294), + [sym__ambiguous_call_statement] = ACTIONS(8294), + [aux_sym_addressof_expression_token1] = ACTIONS(8294), + [aux_sym_type_of_expression_token1] = ACTIONS(8294), + [aux_sym_unary_expression_token1] = ACTIONS(8294), + [sym_string_literal] = ACTIONS(8296), + [sym_number_literal] = ACTIONS(8296), + [aux_sym_boolean_literal_token1] = ACTIONS(8294), + [aux_sym_boolean_literal_token2] = ACTIONS(8294), + [sym_nothing_literal] = ACTIONS(8294), + [sym_null_literal] = ACTIONS(8294), + [sym_empty_literal] = ACTIONS(8294), + [sym_date_literal] = ACTIONS(8296), + [anon_sym_POUND] = ACTIONS(8294), + }, + [STATE(5337)] = { + [sym_do_condition] = STATE(6389), + [sym_identifier] = ACTIONS(8298), + [sym_newline] = ACTIONS(8300), + [anon_sym_COLON] = ACTIONS(8300), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8298), + [aux_sym_frm_property_statement_token1] = ACTIONS(8298), + [anon_sym_DOT] = ACTIONS(8298), + [anon_sym_BANG] = ACTIONS(8300), + [aux_sym__attribute_identifier_token1] = ACTIONS(8298), + [aux_sym_option_statement_token3] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8298), + [aux_sym_preprocessor_const_token1] = ACTIONS(8298), + [sym_static_modifier] = ACTIONS(8298), + [sym__dim_keyword] = ACTIONS(8298), + [sym__redim_keyword] = ACTIONS(8298), + [aux_sym_get_accessor_token1] = ACTIONS(8298), + [aux_sym_set_accessor_token1] = ACTIONS(8298), + [aux_sym_const_declaration_token1] = ACTIONS(8298), + [anon_sym_LPAREN] = ACTIONS(8300), + [aux_sym_as_type_clause_token2] = ACTIONS(8298), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8298), + [aux_sym_visibility_token1] = ACTIONS(8298), + [aux_sym_visibility_token2] = ACTIONS(8298), + [aux_sym_elseif_fragment_token1] = ACTIONS(8298), + [aux_sym_else_fragment_token1] = ACTIONS(8298), + [aux_sym_select_statement_token1] = ACTIONS(8298), + [aux_sym__for_header_token1] = ACTIONS(8298), + [aux_sym_do_statement_token1] = ACTIONS(8298), + [aux_sym_do_statement_token2] = ACTIONS(8298), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8298), + [aux_sym_exit_statement_token1] = ACTIONS(8298), + [sym_end_statement] = ACTIONS(8300), + [aux_sym_on_goto_statement_token1] = ACTIONS(8298), + [aux_sym_on_goto_statement_token2] = ACTIONS(8298), + [aux_sym_on_error_statement_token2] = ACTIONS(8298), + [sym__ambiguous_redim_statement] = ACTIONS(8300), + [aux_sym_erase_statement_token1] = ACTIONS(8298), + [aux_sym_open_statement_token1] = ACTIONS(8298), + [aux_sym_file_mode_token2] = ACTIONS(8298), + [aux_sym_file_access_token2] = ACTIONS(8298), + [aux_sym_file_lock_token2] = ACTIONS(8298), + [aux_sym_print_statement_token1] = ACTIONS(8298), + [anon_sym_PLUS] = ACTIONS(8300), + [anon_sym_DASH] = ACTIONS(8298), + [anon_sym_QMARK] = ACTIONS(8300), + [aux_sym_close_statement_token1] = ACTIONS(8298), + [aux_sym_put_statement_token1] = ACTIONS(8298), + [aux_sym_unlock_statement_token1] = ACTIONS(8298), + [aux_sym_seek_statement_token1] = ACTIONS(8298), + [sym_reset_statement] = ACTIONS(8298), + [aux_sym_raise_event_statement_token1] = ACTIONS(8298), + [sym_stop_statement] = ACTIONS(8298), + [sym_beep_statement] = ACTIONS(8298), + [aux_sym_unload_statement_token1] = ACTIONS(8298), + [aux_sym_def_type_statement_token1] = ACTIONS(8298), + [aux_sym_def_type_statement_token2] = ACTIONS(8298), + [aux_sym_def_type_statement_token3] = ACTIONS(8298), + [aux_sym_def_type_statement_token4] = ACTIONS(8298), + [aux_sym_def_type_statement_token5] = ACTIONS(8298), + [aux_sym_def_type_statement_token6] = ACTIONS(8298), + [aux_sym_def_type_statement_token7] = ACTIONS(8298), + [aux_sym_def_type_statement_token8] = ACTIONS(8298), + [aux_sym_def_type_statement_token9] = ACTIONS(8298), + [aux_sym_def_type_statement_token10] = ACTIONS(8298), + [aux_sym_def_type_statement_token11] = ACTIONS(8298), + [aux_sym_def_type_statement_token12] = ACTIONS(8298), + [aux_sym_def_type_statement_token13] = ACTIONS(8298), + [aux_sym_def_type_statement_token14] = ACTIONS(8298), + [aux_sym_call_statement_token1] = ACTIONS(8298), + [sym__ambiguous_call_statement] = ACTIONS(8298), + [aux_sym_addressof_expression_token1] = ACTIONS(8298), + [aux_sym_type_of_expression_token1] = ACTIONS(8298), + [aux_sym_unary_expression_token1] = ACTIONS(8298), + [sym_string_literal] = ACTIONS(8300), + [sym_number_literal] = ACTIONS(8300), + [aux_sym_boolean_literal_token1] = ACTIONS(8298), + [aux_sym_boolean_literal_token2] = ACTIONS(8298), + [sym_nothing_literal] = ACTIONS(8298), + [sym_null_literal] = ACTIONS(8298), + [sym_empty_literal] = ACTIONS(8298), + [sym_date_literal] = ACTIONS(8300), + [anon_sym_POUND] = ACTIONS(8298), + }, + [STATE(5338)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5428), + [sym_identifier] = ACTIONS(4166), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5156), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4164), + [aux_sym_as_type_clause_token2] = ACTIONS(4166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4166), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_statement_token2] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4166), + [aux_sym_type_of_expression_token1] = ACTIONS(4166), + [aux_sym_unary_expression_token1] = ACTIONS(4166), + [sym_string_literal] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4164), + [aux_sym_boolean_literal_token1] = ACTIONS(4166), + [aux_sym_boolean_literal_token2] = ACTIONS(4166), + [sym_nothing_literal] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4166), + [sym_empty_literal] = ACTIONS(4166), + [sym_date_literal] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4166), + }, + [STATE(5339)] = { + [sym_identifier] = ACTIONS(8022), + [sym_newline] = ACTIONS(8024), + [anon_sym_COLON] = ACTIONS(8024), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8022), + [aux_sym_frm_property_statement_token1] = ACTIONS(8022), + [anon_sym_EQ] = ACTIONS(8024), + [anon_sym_DOT] = ACTIONS(8022), + [anon_sym_BANG] = ACTIONS(8024), + [aux_sym__attribute_identifier_token1] = ACTIONS(8022), + [aux_sym_option_statement_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8022), + [aux_sym_preprocessor_const_token1] = ACTIONS(8022), + [sym_static_modifier] = ACTIONS(8022), + [sym__dim_keyword] = ACTIONS(8022), + [sym__redim_keyword] = ACTIONS(8022), + [aux_sym_get_accessor_token1] = ACTIONS(8022), + [aux_sym_set_accessor_token1] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8024), + [aux_sym_const_declaration_token1] = ACTIONS(8022), + [anon_sym_LPAREN] = ACTIONS(8024), + [aux_sym_as_type_clause_token2] = ACTIONS(8022), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8022), + [aux_sym_visibility_token1] = ACTIONS(8022), + [aux_sym_visibility_token2] = ACTIONS(8022), + [aux_sym_elseif_fragment_token1] = ACTIONS(8022), + [aux_sym_else_fragment_token1] = ACTIONS(8022), + [aux_sym_select_statement_token1] = ACTIONS(8022), + [aux_sym__for_header_token1] = ACTIONS(8022), + [aux_sym_do_statement_token1] = ACTIONS(8022), + [aux_sym_do_condition_token1] = ACTIONS(8022), + [aux_sym_with_statement_token1] = ACTIONS(8022), + [aux_sym_exit_statement_token1] = ACTIONS(8022), + [sym_end_statement] = ACTIONS(8024), + [aux_sym_on_goto_statement_token1] = ACTIONS(8022), + [aux_sym_on_goto_statement_token2] = ACTIONS(8022), + [aux_sym_on_error_statement_token2] = ACTIONS(8022), + [sym__ambiguous_redim_statement] = ACTIONS(8024), + [aux_sym_erase_statement_token1] = ACTIONS(8022), + [aux_sym_open_statement_token1] = ACTIONS(8022), + [aux_sym_file_mode_token2] = ACTIONS(8022), + [aux_sym_file_access_token2] = ACTIONS(8022), + [aux_sym_file_lock_token2] = ACTIONS(8022), + [aux_sym_print_statement_token1] = ACTIONS(8022), + [anon_sym_PLUS] = ACTIONS(8024), + [anon_sym_DASH] = ACTIONS(8022), + [anon_sym_QMARK] = ACTIONS(8024), + [aux_sym_close_statement_token1] = ACTIONS(8022), + [aux_sym_put_statement_token1] = ACTIONS(8022), + [aux_sym_unlock_statement_token1] = ACTIONS(8022), + [aux_sym_seek_statement_token1] = ACTIONS(8022), + [sym_reset_statement] = ACTIONS(8022), + [aux_sym_raise_event_statement_token1] = ACTIONS(8022), + [sym_stop_statement] = ACTIONS(8022), + [sym_beep_statement] = ACTIONS(8022), + [aux_sym_unload_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token2] = ACTIONS(8022), + [aux_sym_def_type_statement_token3] = ACTIONS(8022), + [aux_sym_def_type_statement_token4] = ACTIONS(8022), + [aux_sym_def_type_statement_token5] = ACTIONS(8022), + [aux_sym_def_type_statement_token6] = ACTIONS(8022), + [aux_sym_def_type_statement_token7] = ACTIONS(8022), + [aux_sym_def_type_statement_token8] = ACTIONS(8022), + [aux_sym_def_type_statement_token9] = ACTIONS(8022), + [aux_sym_def_type_statement_token10] = ACTIONS(8022), + [aux_sym_def_type_statement_token11] = ACTIONS(8022), + [aux_sym_def_type_statement_token12] = ACTIONS(8022), + [aux_sym_def_type_statement_token13] = ACTIONS(8022), + [aux_sym_def_type_statement_token14] = ACTIONS(8022), + [aux_sym_call_statement_token1] = ACTIONS(8022), + [sym__ambiguous_call_statement] = ACTIONS(8022), + [aux_sym_addressof_expression_token1] = ACTIONS(8022), + [aux_sym_type_of_expression_token1] = ACTIONS(8022), + [aux_sym_unary_expression_token1] = ACTIONS(8022), + [sym_string_literal] = ACTIONS(8024), + [sym_number_literal] = ACTIONS(8024), + [aux_sym_boolean_literal_token1] = ACTIONS(8022), + [aux_sym_boolean_literal_token2] = ACTIONS(8022), + [sym_nothing_literal] = ACTIONS(8022), + [sym_null_literal] = ACTIONS(8022), + [sym_empty_literal] = ACTIONS(8022), + [sym_date_literal] = ACTIONS(8024), + [anon_sym_POUND] = ACTIONS(8022), + }, + [STATE(5340)] = { + [sym_do_condition] = STATE(6727), + [sym_identifier] = ACTIONS(8513), + [sym_newline] = ACTIONS(8515), + [anon_sym_COLON] = ACTIONS(8515), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8513), + [aux_sym_frm_property_statement_token1] = ACTIONS(8513), + [anon_sym_DOT] = ACTIONS(8513), + [anon_sym_BANG] = ACTIONS(8515), + [aux_sym__attribute_identifier_token1] = ACTIONS(8513), + [aux_sym_option_statement_token3] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8513), + [aux_sym_preprocessor_const_token1] = ACTIONS(8513), + [sym_static_modifier] = ACTIONS(8513), + [sym__dim_keyword] = ACTIONS(8513), + [sym__redim_keyword] = ACTIONS(8513), + [aux_sym_get_accessor_token1] = ACTIONS(8513), + [aux_sym_set_accessor_token1] = ACTIONS(8513), + [aux_sym_const_declaration_token1] = ACTIONS(8513), + [anon_sym_LPAREN] = ACTIONS(8515), + [aux_sym_as_type_clause_token2] = ACTIONS(8513), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8513), + [aux_sym_visibility_token1] = ACTIONS(8513), + [aux_sym_visibility_token2] = ACTIONS(8513), + [aux_sym_elseif_fragment_token1] = ACTIONS(8513), + [aux_sym_else_fragment_token1] = ACTIONS(8513), + [aux_sym_select_statement_token1] = ACTIONS(8513), + [aux_sym__for_header_token1] = ACTIONS(8513), + [aux_sym_do_statement_token1] = ACTIONS(8513), + [aux_sym_do_statement_token2] = ACTIONS(8513), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8513), + [aux_sym_exit_statement_token1] = ACTIONS(8513), + [sym_end_statement] = ACTIONS(8515), + [aux_sym_on_goto_statement_token1] = ACTIONS(8513), + [aux_sym_on_goto_statement_token2] = ACTIONS(8513), + [aux_sym_on_error_statement_token2] = ACTIONS(8513), + [sym__ambiguous_redim_statement] = ACTIONS(8515), + [aux_sym_erase_statement_token1] = ACTIONS(8513), + [aux_sym_open_statement_token1] = ACTIONS(8513), + [aux_sym_file_mode_token2] = ACTIONS(8513), + [aux_sym_file_access_token2] = ACTIONS(8513), + [aux_sym_file_lock_token2] = ACTIONS(8513), + [aux_sym_print_statement_token1] = ACTIONS(8513), + [anon_sym_PLUS] = ACTIONS(8515), + [anon_sym_DASH] = ACTIONS(8513), + [anon_sym_QMARK] = ACTIONS(8515), + [aux_sym_close_statement_token1] = ACTIONS(8513), + [aux_sym_put_statement_token1] = ACTIONS(8513), + [aux_sym_unlock_statement_token1] = ACTIONS(8513), + [aux_sym_seek_statement_token1] = ACTIONS(8513), + [sym_reset_statement] = ACTIONS(8513), + [aux_sym_raise_event_statement_token1] = ACTIONS(8513), + [sym_stop_statement] = ACTIONS(8513), + [sym_beep_statement] = ACTIONS(8513), + [aux_sym_unload_statement_token1] = ACTIONS(8513), + [aux_sym_def_type_statement_token1] = ACTIONS(8513), + [aux_sym_def_type_statement_token2] = ACTIONS(8513), + [aux_sym_def_type_statement_token3] = ACTIONS(8513), + [aux_sym_def_type_statement_token4] = ACTIONS(8513), + [aux_sym_def_type_statement_token5] = ACTIONS(8513), + [aux_sym_def_type_statement_token6] = ACTIONS(8513), + [aux_sym_def_type_statement_token7] = ACTIONS(8513), + [aux_sym_def_type_statement_token8] = ACTIONS(8513), + [aux_sym_def_type_statement_token9] = ACTIONS(8513), + [aux_sym_def_type_statement_token10] = ACTIONS(8513), + [aux_sym_def_type_statement_token11] = ACTIONS(8513), + [aux_sym_def_type_statement_token12] = ACTIONS(8513), + [aux_sym_def_type_statement_token13] = ACTIONS(8513), + [aux_sym_def_type_statement_token14] = ACTIONS(8513), + [aux_sym_call_statement_token1] = ACTIONS(8513), + [sym__ambiguous_call_statement] = ACTIONS(8513), + [aux_sym_addressof_expression_token1] = ACTIONS(8513), + [aux_sym_type_of_expression_token1] = ACTIONS(8513), + [aux_sym_unary_expression_token1] = ACTIONS(8513), + [sym_string_literal] = ACTIONS(8515), + [sym_number_literal] = ACTIONS(8515), + [aux_sym_boolean_literal_token1] = ACTIONS(8513), + [aux_sym_boolean_literal_token2] = ACTIONS(8513), + [sym_nothing_literal] = ACTIONS(8513), + [sym_null_literal] = ACTIONS(8513), + [sym_empty_literal] = ACTIONS(8513), + [sym_date_literal] = ACTIONS(8515), + [anon_sym_POUND] = ACTIONS(8513), + }, + [STATE(5341)] = { + [sym_do_condition] = STATE(6752), + [sym_identifier] = ACTIONS(8517), + [sym_newline] = ACTIONS(8519), + [anon_sym_COLON] = ACTIONS(8519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8517), + [aux_sym_frm_property_statement_token1] = ACTIONS(8517), + [anon_sym_DOT] = ACTIONS(8517), + [anon_sym_BANG] = ACTIONS(8519), + [aux_sym__attribute_identifier_token1] = ACTIONS(8517), + [aux_sym_option_statement_token3] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8517), + [aux_sym_preprocessor_const_token1] = ACTIONS(8517), + [sym_static_modifier] = ACTIONS(8517), + [sym__dim_keyword] = ACTIONS(8517), + [sym__redim_keyword] = ACTIONS(8517), + [aux_sym_get_accessor_token1] = ACTIONS(8517), + [aux_sym_set_accessor_token1] = ACTIONS(8517), + [aux_sym_const_declaration_token1] = ACTIONS(8517), + [anon_sym_LPAREN] = ACTIONS(8519), + [aux_sym_as_type_clause_token2] = ACTIONS(8517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8517), + [aux_sym_visibility_token1] = ACTIONS(8517), + [aux_sym_visibility_token2] = ACTIONS(8517), + [aux_sym_elseif_fragment_token1] = ACTIONS(8517), + [aux_sym_else_fragment_token1] = ACTIONS(8517), + [aux_sym_select_statement_token1] = ACTIONS(8517), + [aux_sym__for_header_token1] = ACTIONS(8517), + [aux_sym_do_statement_token1] = ACTIONS(8517), + [aux_sym_do_statement_token2] = ACTIONS(8517), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8517), + [aux_sym_exit_statement_token1] = ACTIONS(8517), + [sym_end_statement] = ACTIONS(8519), + [aux_sym_on_goto_statement_token1] = ACTIONS(8517), + [aux_sym_on_goto_statement_token2] = ACTIONS(8517), + [aux_sym_on_error_statement_token2] = ACTIONS(8517), + [sym__ambiguous_redim_statement] = ACTIONS(8519), + [aux_sym_erase_statement_token1] = ACTIONS(8517), + [aux_sym_open_statement_token1] = ACTIONS(8517), + [aux_sym_file_mode_token2] = ACTIONS(8517), + [aux_sym_file_access_token2] = ACTIONS(8517), + [aux_sym_file_lock_token2] = ACTIONS(8517), + [aux_sym_print_statement_token1] = ACTIONS(8517), + [anon_sym_PLUS] = ACTIONS(8519), + [anon_sym_DASH] = ACTIONS(8517), + [anon_sym_QMARK] = ACTIONS(8519), + [aux_sym_close_statement_token1] = ACTIONS(8517), + [aux_sym_put_statement_token1] = ACTIONS(8517), + [aux_sym_unlock_statement_token1] = ACTIONS(8517), + [aux_sym_seek_statement_token1] = ACTIONS(8517), + [sym_reset_statement] = ACTIONS(8517), + [aux_sym_raise_event_statement_token1] = ACTIONS(8517), + [sym_stop_statement] = ACTIONS(8517), + [sym_beep_statement] = ACTIONS(8517), + [aux_sym_unload_statement_token1] = ACTIONS(8517), + [aux_sym_def_type_statement_token1] = ACTIONS(8517), + [aux_sym_def_type_statement_token2] = ACTIONS(8517), + [aux_sym_def_type_statement_token3] = ACTIONS(8517), + [aux_sym_def_type_statement_token4] = ACTIONS(8517), + [aux_sym_def_type_statement_token5] = ACTIONS(8517), + [aux_sym_def_type_statement_token6] = ACTIONS(8517), + [aux_sym_def_type_statement_token7] = ACTIONS(8517), + [aux_sym_def_type_statement_token8] = ACTIONS(8517), + [aux_sym_def_type_statement_token9] = ACTIONS(8517), + [aux_sym_def_type_statement_token10] = ACTIONS(8517), + [aux_sym_def_type_statement_token11] = ACTIONS(8517), + [aux_sym_def_type_statement_token12] = ACTIONS(8517), + [aux_sym_def_type_statement_token13] = ACTIONS(8517), + [aux_sym_def_type_statement_token14] = ACTIONS(8517), + [aux_sym_call_statement_token1] = ACTIONS(8517), + [sym__ambiguous_call_statement] = ACTIONS(8517), + [aux_sym_addressof_expression_token1] = ACTIONS(8517), + [aux_sym_type_of_expression_token1] = ACTIONS(8517), + [aux_sym_unary_expression_token1] = ACTIONS(8517), + [sym_string_literal] = ACTIONS(8519), + [sym_number_literal] = ACTIONS(8519), + [aux_sym_boolean_literal_token1] = ACTIONS(8517), + [aux_sym_boolean_literal_token2] = ACTIONS(8517), + [sym_nothing_literal] = ACTIONS(8517), + [sym_null_literal] = ACTIONS(8517), + [sym_empty_literal] = ACTIONS(8517), + [sym_date_literal] = ACTIONS(8519), + [anon_sym_POUND] = ACTIONS(8517), + }, + [STATE(5342)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5416), + [sym_identifier] = ACTIONS(4166), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5156), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4164), + [aux_sym_as_type_clause_token2] = ACTIONS(4166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4166), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_statement_token2] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4166), + [aux_sym_type_of_expression_token1] = ACTIONS(4166), + [aux_sym_unary_expression_token1] = ACTIONS(4166), + [sym_string_literal] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4164), + [aux_sym_boolean_literal_token1] = ACTIONS(4166), + [aux_sym_boolean_literal_token2] = ACTIONS(4166), + [sym_nothing_literal] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4166), + [sym_empty_literal] = ACTIONS(4166), + [sym_date_literal] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4166), + }, + [STATE(5343)] = { + [sym_do_condition] = STATE(6975), + [sym_identifier] = ACTIONS(8411), + [sym_newline] = ACTIONS(8413), + [anon_sym_COLON] = ACTIONS(8413), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8411), + [aux_sym_frm_property_statement_token1] = ACTIONS(8411), + [anon_sym_DOT] = ACTIONS(8411), + [anon_sym_BANG] = ACTIONS(8413), + [aux_sym__attribute_identifier_token1] = ACTIONS(8411), + [aux_sym_option_statement_token3] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8411), + [aux_sym_preprocessor_const_token1] = ACTIONS(8411), + [sym_static_modifier] = ACTIONS(8411), + [sym__dim_keyword] = ACTIONS(8411), + [sym__redim_keyword] = ACTIONS(8411), + [aux_sym_get_accessor_token1] = ACTIONS(8411), + [aux_sym_set_accessor_token1] = ACTIONS(8411), + [aux_sym_const_declaration_token1] = ACTIONS(8411), + [anon_sym_LPAREN] = ACTIONS(8413), + [aux_sym_as_type_clause_token2] = ACTIONS(8411), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8411), + [aux_sym_visibility_token1] = ACTIONS(8411), + [aux_sym_visibility_token2] = ACTIONS(8411), + [aux_sym_elseif_fragment_token1] = ACTIONS(8411), + [aux_sym_else_fragment_token1] = ACTIONS(8411), + [aux_sym_select_statement_token1] = ACTIONS(8411), + [aux_sym_select_statement_token2] = ACTIONS(8411), + [aux_sym__for_header_token1] = ACTIONS(8411), + [aux_sym_do_statement_token1] = ACTIONS(8411), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8411), + [aux_sym_exit_statement_token1] = ACTIONS(8411), + [sym_end_statement] = ACTIONS(8413), + [aux_sym_on_goto_statement_token1] = ACTIONS(8411), + [aux_sym_on_goto_statement_token2] = ACTIONS(8411), + [aux_sym_on_error_statement_token2] = ACTIONS(8411), + [sym__ambiguous_redim_statement] = ACTIONS(8413), + [aux_sym_erase_statement_token1] = ACTIONS(8411), + [aux_sym_open_statement_token1] = ACTIONS(8411), + [aux_sym_file_mode_token2] = ACTIONS(8411), + [aux_sym_file_access_token2] = ACTIONS(8411), + [aux_sym_file_lock_token2] = ACTIONS(8411), + [aux_sym_print_statement_token1] = ACTIONS(8411), + [anon_sym_PLUS] = ACTIONS(8413), + [anon_sym_DASH] = ACTIONS(8411), + [anon_sym_QMARK] = ACTIONS(8413), + [aux_sym_close_statement_token1] = ACTIONS(8411), + [aux_sym_put_statement_token1] = ACTIONS(8411), + [aux_sym_unlock_statement_token1] = ACTIONS(8411), + [aux_sym_seek_statement_token1] = ACTIONS(8411), + [sym_reset_statement] = ACTIONS(8411), + [aux_sym_raise_event_statement_token1] = ACTIONS(8411), + [sym_stop_statement] = ACTIONS(8411), + [sym_beep_statement] = ACTIONS(8411), + [aux_sym_unload_statement_token1] = ACTIONS(8411), + [aux_sym_def_type_statement_token1] = ACTIONS(8411), + [aux_sym_def_type_statement_token2] = ACTIONS(8411), + [aux_sym_def_type_statement_token3] = ACTIONS(8411), + [aux_sym_def_type_statement_token4] = ACTIONS(8411), + [aux_sym_def_type_statement_token5] = ACTIONS(8411), + [aux_sym_def_type_statement_token6] = ACTIONS(8411), + [aux_sym_def_type_statement_token7] = ACTIONS(8411), + [aux_sym_def_type_statement_token8] = ACTIONS(8411), + [aux_sym_def_type_statement_token9] = ACTIONS(8411), + [aux_sym_def_type_statement_token10] = ACTIONS(8411), + [aux_sym_def_type_statement_token11] = ACTIONS(8411), + [aux_sym_def_type_statement_token12] = ACTIONS(8411), + [aux_sym_def_type_statement_token13] = ACTIONS(8411), + [aux_sym_def_type_statement_token14] = ACTIONS(8411), + [aux_sym_call_statement_token1] = ACTIONS(8411), + [sym__ambiguous_call_statement] = ACTIONS(8411), + [aux_sym_addressof_expression_token1] = ACTIONS(8411), + [aux_sym_type_of_expression_token1] = ACTIONS(8411), + [aux_sym_unary_expression_token1] = ACTIONS(8411), + [sym_string_literal] = ACTIONS(8413), + [sym_number_literal] = ACTIONS(8413), + [aux_sym_boolean_literal_token1] = ACTIONS(8411), + [aux_sym_boolean_literal_token2] = ACTIONS(8411), + [sym_nothing_literal] = ACTIONS(8411), + [sym_null_literal] = ACTIONS(8411), + [sym_empty_literal] = ACTIONS(8411), + [sym_date_literal] = ACTIONS(8413), + [anon_sym_POUND] = ACTIONS(8411), + }, + [STATE(5344)] = { + [sym_identifier] = ACTIONS(7968), + [sym_newline] = ACTIONS(7970), + [anon_sym_COLON] = ACTIONS(7970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7968), + [aux_sym_frm_property_statement_token1] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_BANG] = ACTIONS(7970), + [aux_sym__attribute_identifier_token1] = ACTIONS(7968), + [aux_sym_option_statement_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7968), + [aux_sym_preprocessor_const_token1] = ACTIONS(7968), + [sym_static_modifier] = ACTIONS(7968), + [sym__dim_keyword] = ACTIONS(7968), + [sym__redim_keyword] = ACTIONS(7968), + [aux_sym_get_accessor_token1] = ACTIONS(7968), + [aux_sym_set_accessor_token1] = ACTIONS(7968), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_const_declaration_token1] = ACTIONS(7968), + [anon_sym_LPAREN] = ACTIONS(7970), + [aux_sym_as_type_clause_token2] = ACTIONS(7968), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7968), + [aux_sym_visibility_token1] = ACTIONS(7968), + [aux_sym_visibility_token2] = ACTIONS(7968), + [aux_sym_elseif_fragment_token1] = ACTIONS(7968), + [aux_sym_else_fragment_token1] = ACTIONS(7968), + [aux_sym_select_statement_token1] = ACTIONS(7968), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7968), + [aux_sym__for_header_token1] = ACTIONS(7968), + [aux_sym_do_statement_token1] = ACTIONS(7968), + [aux_sym_do_condition_token1] = ACTIONS(7968), + [aux_sym_with_statement_token1] = ACTIONS(7968), + [aux_sym_exit_statement_token1] = ACTIONS(7968), + [sym_end_statement] = ACTIONS(7970), + [aux_sym_on_goto_statement_token1] = ACTIONS(7968), + [aux_sym_on_goto_statement_token2] = ACTIONS(7968), + [aux_sym_on_error_statement_token2] = ACTIONS(7968), + [sym__ambiguous_redim_statement] = ACTIONS(7970), + [aux_sym_erase_statement_token1] = ACTIONS(7968), + [aux_sym_open_statement_token1] = ACTIONS(7968), + [aux_sym_file_mode_token2] = ACTIONS(7968), + [aux_sym_file_access_token2] = ACTIONS(7968), + [aux_sym_file_lock_token2] = ACTIONS(7968), + [aux_sym_print_statement_token1] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7970), + [aux_sym_close_statement_token1] = ACTIONS(7968), + [aux_sym_put_statement_token1] = ACTIONS(7968), + [aux_sym_unlock_statement_token1] = ACTIONS(7968), + [aux_sym_seek_statement_token1] = ACTIONS(7968), + [sym_reset_statement] = ACTIONS(7968), + [aux_sym_raise_event_statement_token1] = ACTIONS(7968), + [sym_stop_statement] = ACTIONS(7968), + [sym_beep_statement] = ACTIONS(7968), + [aux_sym_unload_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token2] = ACTIONS(7968), + [aux_sym_def_type_statement_token3] = ACTIONS(7968), + [aux_sym_def_type_statement_token4] = ACTIONS(7968), + [aux_sym_def_type_statement_token5] = ACTIONS(7968), + [aux_sym_def_type_statement_token6] = ACTIONS(7968), + [aux_sym_def_type_statement_token7] = ACTIONS(7968), + [aux_sym_def_type_statement_token8] = ACTIONS(7968), + [aux_sym_def_type_statement_token9] = ACTIONS(7968), + [aux_sym_def_type_statement_token10] = ACTIONS(7968), + [aux_sym_def_type_statement_token11] = ACTIONS(7968), + [aux_sym_def_type_statement_token12] = ACTIONS(7968), + [aux_sym_def_type_statement_token13] = ACTIONS(7968), + [aux_sym_def_type_statement_token14] = ACTIONS(7968), + [aux_sym_call_statement_token1] = ACTIONS(7968), + [sym__ambiguous_call_statement] = ACTIONS(7968), + [aux_sym_addressof_expression_token1] = ACTIONS(7968), + [aux_sym_type_of_expression_token1] = ACTIONS(7968), + [aux_sym_unary_expression_token1] = ACTIONS(7968), + [sym_string_literal] = ACTIONS(7970), + [sym_number_literal] = ACTIONS(7970), + [aux_sym_boolean_literal_token1] = ACTIONS(7968), + [aux_sym_boolean_literal_token2] = ACTIONS(7968), + [sym_nothing_literal] = ACTIONS(7968), + [sym_null_literal] = ACTIONS(7968), + [sym_empty_literal] = ACTIONS(7968), + [sym_date_literal] = ACTIONS(7970), + [anon_sym_POUND] = ACTIONS(7968), + }, + [STATE(5345)] = { + [sym_identifier] = ACTIONS(8467), + [sym_newline] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8467), + [aux_sym_frm_property_statement_token1] = ACTIONS(8467), + [anon_sym_DOT] = ACTIONS(8467), + [anon_sym_BANG] = ACTIONS(6089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8467), + [aux_sym_option_statement_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8467), + [aux_sym_preprocessor_const_token1] = ACTIONS(8467), + [sym_static_modifier] = ACTIONS(8467), + [sym__dim_keyword] = ACTIONS(8467), + [sym__redim_keyword] = ACTIONS(8467), + [aux_sym_get_accessor_token1] = ACTIONS(8467), + [aux_sym_set_accessor_token1] = ACTIONS(8467), + [anon_sym_COMMA] = ACTIONS(6089), + [aux_sym_const_declaration_token1] = ACTIONS(8467), + [anon_sym_LPAREN] = ACTIONS(6089), + [aux_sym_as_type_clause_token2] = ACTIONS(8467), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8467), + [aux_sym_visibility_token1] = ACTIONS(8467), + [aux_sym_visibility_token2] = ACTIONS(8467), + [aux_sym_elseif_fragment_token1] = ACTIONS(8467), + [aux_sym_else_fragment_token1] = ACTIONS(8467), + [aux_sym_select_statement_token1] = ACTIONS(8467), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8467), + [aux_sym__for_header_token1] = ACTIONS(8467), + [aux_sym_do_statement_token1] = ACTIONS(8467), + [aux_sym_do_condition_token1] = ACTIONS(8467), + [aux_sym_while_statement_token1] = ACTIONS(8467), + [aux_sym_with_statement_token1] = ACTIONS(8467), + [aux_sym_exit_statement_token1] = ACTIONS(8467), + [sym_end_statement] = ACTIONS(6089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8467), + [aux_sym_on_goto_statement_token2] = ACTIONS(8467), + [aux_sym_on_error_statement_token2] = ACTIONS(8467), + [sym__ambiguous_redim_statement] = ACTIONS(6089), + [aux_sym_erase_statement_token1] = ACTIONS(8467), + [aux_sym_open_statement_token1] = ACTIONS(8467), + [aux_sym_file_mode_token2] = ACTIONS(8467), + [aux_sym_file_access_token2] = ACTIONS(8467), + [aux_sym_file_lock_token2] = ACTIONS(8467), + [aux_sym_print_statement_token1] = ACTIONS(8467), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(8467), + [anon_sym_QMARK] = ACTIONS(6089), + [aux_sym_close_statement_token1] = ACTIONS(8467), + [aux_sym_put_statement_token1] = ACTIONS(8467), + [aux_sym_unlock_statement_token1] = ACTIONS(8467), + [aux_sym_seek_statement_token1] = ACTIONS(8467), + [sym_reset_statement] = ACTIONS(8467), + [aux_sym_raise_event_statement_token1] = ACTIONS(8467), + [sym_stop_statement] = ACTIONS(8467), + [sym_beep_statement] = ACTIONS(8467), + [aux_sym_unload_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token2] = ACTIONS(8467), + [aux_sym_def_type_statement_token3] = ACTIONS(8467), + [aux_sym_def_type_statement_token4] = ACTIONS(8467), + [aux_sym_def_type_statement_token5] = ACTIONS(8467), + [aux_sym_def_type_statement_token6] = ACTIONS(8467), + [aux_sym_def_type_statement_token7] = ACTIONS(8467), + [aux_sym_def_type_statement_token8] = ACTIONS(8467), + [aux_sym_def_type_statement_token9] = ACTIONS(8467), + [aux_sym_def_type_statement_token10] = ACTIONS(8467), + [aux_sym_def_type_statement_token11] = ACTIONS(8467), + [aux_sym_def_type_statement_token12] = ACTIONS(8467), + [aux_sym_def_type_statement_token13] = ACTIONS(8467), + [aux_sym_def_type_statement_token14] = ACTIONS(8467), + [aux_sym_call_statement_token1] = ACTIONS(8467), + [sym__ambiguous_call_statement] = ACTIONS(8467), + [aux_sym_addressof_expression_token1] = ACTIONS(8467), + [aux_sym_type_of_expression_token1] = ACTIONS(8467), + [aux_sym_unary_expression_token1] = ACTIONS(8467), + [sym_string_literal] = ACTIONS(6089), + [sym_number_literal] = ACTIONS(6089), + [aux_sym_boolean_literal_token1] = ACTIONS(8467), + [aux_sym_boolean_literal_token2] = ACTIONS(8467), + [sym_nothing_literal] = ACTIONS(8467), + [sym_null_literal] = ACTIONS(8467), + [sym_empty_literal] = ACTIONS(8467), + [sym_date_literal] = ACTIONS(6089), + [anon_sym_POUND] = ACTIONS(8467), + }, + [STATE(5346)] = { + [sym_identifier] = ACTIONS(9284), + [sym_newline] = ACTIONS(9286), + [anon_sym_COLON] = ACTIONS(9286), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9284), + [aux_sym_frm_property_statement_token1] = ACTIONS(9284), + [anon_sym_DOT] = ACTIONS(9284), + [anon_sym_BANG] = ACTIONS(9286), + [aux_sym__attribute_identifier_token1] = ACTIONS(9284), + [aux_sym_option_statement_token3] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9284), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9284), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9284), + [aux_sym_preprocessor_const_token1] = ACTIONS(9284), + [sym_static_modifier] = ACTIONS(9284), + [sym__dim_keyword] = ACTIONS(9284), + [sym__redim_keyword] = ACTIONS(9284), + [aux_sym_get_accessor_token1] = ACTIONS(9284), + [aux_sym_set_accessor_token1] = ACTIONS(9284), + [aux_sym_const_declaration_token1] = ACTIONS(9284), + [anon_sym_LPAREN] = ACTIONS(9286), + [aux_sym_as_type_clause_token2] = ACTIONS(9284), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9284), + [aux_sym_visibility_token1] = ACTIONS(9284), + [aux_sym_visibility_token2] = ACTIONS(9284), + [aux_sym_elseif_fragment_token1] = ACTIONS(9284), + [aux_sym_else_fragment_token1] = ACTIONS(9284), + [aux_sym_select_statement_token1] = ACTIONS(9284), + [aux_sym__for_header_token1] = ACTIONS(9284), + [aux_sym_do_statement_token1] = ACTIONS(9284), + [aux_sym_do_condition_token1] = ACTIONS(9284), + [aux_sym_with_statement_token1] = ACTIONS(9284), + [aux_sym_exit_statement_token1] = ACTIONS(9284), + [sym_end_statement] = ACTIONS(9286), + [aux_sym_on_goto_statement_token1] = ACTIONS(9284), + [aux_sym_on_goto_statement_token2] = ACTIONS(9284), + [aux_sym_on_error_statement_token2] = ACTIONS(9284), + [sym__ambiguous_redim_statement] = ACTIONS(9286), + [aux_sym_erase_statement_token1] = ACTIONS(9284), + [aux_sym_open_statement_token1] = ACTIONS(9284), + [aux_sym_file_mode_token2] = ACTIONS(9284), + [aux_sym_file_access_token2] = ACTIONS(9284), + [aux_sym_file_lock_token2] = ACTIONS(9284), + [aux_sym_print_statement_token1] = ACTIONS(9284), + [anon_sym_PLUS] = ACTIONS(9286), + [anon_sym_DASH] = ACTIONS(9284), + [anon_sym_QMARK] = ACTIONS(9286), + [aux_sym_close_statement_token1] = ACTIONS(9284), + [aux_sym_put_statement_token1] = ACTIONS(9284), + [aux_sym_unlock_statement_token1] = ACTIONS(9284), + [aux_sym_seek_statement_token1] = ACTIONS(9284), + [sym_reset_statement] = ACTIONS(9284), + [aux_sym_raise_event_statement_token1] = ACTIONS(9284), + [sym_stop_statement] = ACTIONS(9284), + [sym_beep_statement] = ACTIONS(9284), + [aux_sym_unload_statement_token1] = ACTIONS(9284), + [aux_sym_def_type_statement_token1] = ACTIONS(9284), + [aux_sym_def_type_statement_token2] = ACTIONS(9284), + [aux_sym_def_type_statement_token3] = ACTIONS(9284), + [aux_sym_def_type_statement_token4] = ACTIONS(9284), + [aux_sym_def_type_statement_token5] = ACTIONS(9284), + [aux_sym_def_type_statement_token6] = ACTIONS(9284), + [aux_sym_def_type_statement_token7] = ACTIONS(9284), + [aux_sym_def_type_statement_token8] = ACTIONS(9284), + [aux_sym_def_type_statement_token9] = ACTIONS(9284), + [aux_sym_def_type_statement_token10] = ACTIONS(9284), + [aux_sym_def_type_statement_token11] = ACTIONS(9284), + [aux_sym_def_type_statement_token12] = ACTIONS(9284), + [aux_sym_def_type_statement_token13] = ACTIONS(9284), + [aux_sym_def_type_statement_token14] = ACTIONS(9284), + [aux_sym_call_statement_token1] = ACTIONS(9284), + [sym__ambiguous_call_statement] = ACTIONS(9284), + [aux_sym_addressof_expression_token1] = ACTIONS(9284), + [aux_sym_type_of_expression_token1] = ACTIONS(9284), + [aux_sym_unary_expression_token1] = ACTIONS(9284), + [sym_string_literal] = ACTIONS(9286), + [sym_number_literal] = ACTIONS(9286), + [aux_sym_boolean_literal_token1] = ACTIONS(9284), + [aux_sym_boolean_literal_token2] = ACTIONS(9284), + [sym_nothing_literal] = ACTIONS(9284), + [sym_null_literal] = ACTIONS(9284), + [sym_empty_literal] = ACTIONS(9284), + [sym_date_literal] = ACTIONS(9286), + [anon_sym_POUND] = ACTIONS(9284), + }, + [STATE(5347)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5802), + [sym_identifier] = ACTIONS(8166), + [sym_newline] = ACTIONS(8168), + [anon_sym_COLON] = ACTIONS(8168), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8166), + [aux_sym_frm_property_statement_token1] = ACTIONS(8166), + [anon_sym_DOT] = ACTIONS(8166), + [anon_sym_BANG] = ACTIONS(8168), + [aux_sym__attribute_identifier_token1] = ACTIONS(8166), + [aux_sym_option_statement_token3] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8166), + [aux_sym_preprocessor_const_token1] = ACTIONS(8166), + [sym_static_modifier] = ACTIONS(8166), + [sym__dim_keyword] = ACTIONS(8166), + [sym__redim_keyword] = ACTIONS(8166), + [aux_sym_get_accessor_token1] = ACTIONS(8166), + [aux_sym_set_accessor_token1] = ACTIONS(8166), + [anon_sym_COMMA] = ACTIONS(10543), + [aux_sym_const_declaration_token1] = ACTIONS(8166), + [anon_sym_LPAREN] = ACTIONS(8168), + [aux_sym_as_type_clause_token2] = ACTIONS(8166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8166), + [aux_sym_visibility_token1] = ACTIONS(8166), + [aux_sym_visibility_token2] = ACTIONS(8166), + [aux_sym_elseif_fragment_token1] = ACTIONS(8166), + [aux_sym_else_fragment_token1] = ACTIONS(8166), + [aux_sym_select_statement_token1] = ACTIONS(8166), + [aux_sym__for_header_token1] = ACTIONS(8166), + [aux_sym_do_statement_token1] = ACTIONS(8166), + [aux_sym_do_statement_token2] = ACTIONS(8166), + [aux_sym_do_condition_token1] = ACTIONS(8166), + [aux_sym_with_statement_token1] = ACTIONS(8166), + [aux_sym_exit_statement_token1] = ACTIONS(8166), + [sym_end_statement] = ACTIONS(8168), + [aux_sym_on_goto_statement_token1] = ACTIONS(8166), + [aux_sym_on_goto_statement_token2] = ACTIONS(8166), + [aux_sym_on_error_statement_token2] = ACTIONS(8166), + [sym__ambiguous_redim_statement] = ACTIONS(8168), + [aux_sym_erase_statement_token1] = ACTIONS(8166), + [aux_sym_open_statement_token1] = ACTIONS(8166), + [aux_sym_file_mode_token2] = ACTIONS(8166), + [aux_sym_file_access_token2] = ACTIONS(8166), + [aux_sym_file_lock_token2] = ACTIONS(8166), + [aux_sym_print_statement_token1] = ACTIONS(8166), + [anon_sym_PLUS] = ACTIONS(8168), + [anon_sym_DASH] = ACTIONS(8166), + [anon_sym_QMARK] = ACTIONS(8168), + [aux_sym_close_statement_token1] = ACTIONS(8166), + [aux_sym_put_statement_token1] = ACTIONS(8166), + [aux_sym_unlock_statement_token1] = ACTIONS(8166), + [aux_sym_seek_statement_token1] = ACTIONS(8166), + [sym_reset_statement] = ACTIONS(8166), + [aux_sym_raise_event_statement_token1] = ACTIONS(8166), + [sym_stop_statement] = ACTIONS(8166), + [sym_beep_statement] = ACTIONS(8166), + [aux_sym_unload_statement_token1] = ACTIONS(8166), + [aux_sym_def_type_statement_token1] = ACTIONS(8166), + [aux_sym_def_type_statement_token2] = ACTIONS(8166), + [aux_sym_def_type_statement_token3] = ACTIONS(8166), + [aux_sym_def_type_statement_token4] = ACTIONS(8166), + [aux_sym_def_type_statement_token5] = ACTIONS(8166), + [aux_sym_def_type_statement_token6] = ACTIONS(8166), + [aux_sym_def_type_statement_token7] = ACTIONS(8166), + [aux_sym_def_type_statement_token8] = ACTIONS(8166), + [aux_sym_def_type_statement_token9] = ACTIONS(8166), + [aux_sym_def_type_statement_token10] = ACTIONS(8166), + [aux_sym_def_type_statement_token11] = ACTIONS(8166), + [aux_sym_def_type_statement_token12] = ACTIONS(8166), + [aux_sym_def_type_statement_token13] = ACTIONS(8166), + [aux_sym_def_type_statement_token14] = ACTIONS(8166), + [aux_sym_call_statement_token1] = ACTIONS(8166), + [sym__ambiguous_call_statement] = ACTIONS(8166), + [aux_sym_addressof_expression_token1] = ACTIONS(8166), + [aux_sym_type_of_expression_token1] = ACTIONS(8166), + [aux_sym_unary_expression_token1] = ACTIONS(8166), + [sym_string_literal] = ACTIONS(8168), + [sym_number_literal] = ACTIONS(8168), + [aux_sym_boolean_literal_token1] = ACTIONS(8166), + [aux_sym_boolean_literal_token2] = ACTIONS(8166), + [sym_nothing_literal] = ACTIONS(8166), + [sym_null_literal] = ACTIONS(8166), + [sym_empty_literal] = ACTIONS(8166), + [sym_date_literal] = ACTIONS(8168), + [anon_sym_POUND] = ACTIONS(8166), + }, + [STATE(5348)] = { + [sym_argument_list] = STATE(6181), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(10558), + [anon_sym_BANG] = ACTIONS(10560), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10529), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym_select_statement_token2] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(5349)] = { + [sym_do_condition] = STATE(6976), + [sym_identifier] = ACTIONS(8415), + [sym_newline] = ACTIONS(8417), + [anon_sym_COLON] = ACTIONS(8417), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8415), + [aux_sym_frm_property_statement_token1] = ACTIONS(8415), + [anon_sym_DOT] = ACTIONS(8415), + [anon_sym_BANG] = ACTIONS(8417), + [aux_sym__attribute_identifier_token1] = ACTIONS(8415), + [aux_sym_option_statement_token3] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8415), + [aux_sym_preprocessor_const_token1] = ACTIONS(8415), + [sym_static_modifier] = ACTIONS(8415), + [sym__dim_keyword] = ACTIONS(8415), + [sym__redim_keyword] = ACTIONS(8415), + [aux_sym_get_accessor_token1] = ACTIONS(8415), + [aux_sym_set_accessor_token1] = ACTIONS(8415), + [aux_sym_const_declaration_token1] = ACTIONS(8415), + [anon_sym_LPAREN] = ACTIONS(8417), + [aux_sym_as_type_clause_token2] = ACTIONS(8415), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8415), + [aux_sym_visibility_token1] = ACTIONS(8415), + [aux_sym_visibility_token2] = ACTIONS(8415), + [aux_sym_elseif_fragment_token1] = ACTIONS(8415), + [aux_sym_else_fragment_token1] = ACTIONS(8415), + [aux_sym_select_statement_token1] = ACTIONS(8415), + [aux_sym_select_statement_token2] = ACTIONS(8415), + [aux_sym__for_header_token1] = ACTIONS(8415), + [aux_sym_do_statement_token1] = ACTIONS(8415), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8415), + [aux_sym_exit_statement_token1] = ACTIONS(8415), + [sym_end_statement] = ACTIONS(8417), + [aux_sym_on_goto_statement_token1] = ACTIONS(8415), + [aux_sym_on_goto_statement_token2] = ACTIONS(8415), + [aux_sym_on_error_statement_token2] = ACTIONS(8415), + [sym__ambiguous_redim_statement] = ACTIONS(8417), + [aux_sym_erase_statement_token1] = ACTIONS(8415), + [aux_sym_open_statement_token1] = ACTIONS(8415), + [aux_sym_file_mode_token2] = ACTIONS(8415), + [aux_sym_file_access_token2] = ACTIONS(8415), + [aux_sym_file_lock_token2] = ACTIONS(8415), + [aux_sym_print_statement_token1] = ACTIONS(8415), + [anon_sym_PLUS] = ACTIONS(8417), + [anon_sym_DASH] = ACTIONS(8415), + [anon_sym_QMARK] = ACTIONS(8417), + [aux_sym_close_statement_token1] = ACTIONS(8415), + [aux_sym_put_statement_token1] = ACTIONS(8415), + [aux_sym_unlock_statement_token1] = ACTIONS(8415), + [aux_sym_seek_statement_token1] = ACTIONS(8415), + [sym_reset_statement] = ACTIONS(8415), + [aux_sym_raise_event_statement_token1] = ACTIONS(8415), + [sym_stop_statement] = ACTIONS(8415), + [sym_beep_statement] = ACTIONS(8415), + [aux_sym_unload_statement_token1] = ACTIONS(8415), + [aux_sym_def_type_statement_token1] = ACTIONS(8415), + [aux_sym_def_type_statement_token2] = ACTIONS(8415), + [aux_sym_def_type_statement_token3] = ACTIONS(8415), + [aux_sym_def_type_statement_token4] = ACTIONS(8415), + [aux_sym_def_type_statement_token5] = ACTIONS(8415), + [aux_sym_def_type_statement_token6] = ACTIONS(8415), + [aux_sym_def_type_statement_token7] = ACTIONS(8415), + [aux_sym_def_type_statement_token8] = ACTIONS(8415), + [aux_sym_def_type_statement_token9] = ACTIONS(8415), + [aux_sym_def_type_statement_token10] = ACTIONS(8415), + [aux_sym_def_type_statement_token11] = ACTIONS(8415), + [aux_sym_def_type_statement_token12] = ACTIONS(8415), + [aux_sym_def_type_statement_token13] = ACTIONS(8415), + [aux_sym_def_type_statement_token14] = ACTIONS(8415), + [aux_sym_call_statement_token1] = ACTIONS(8415), + [sym__ambiguous_call_statement] = ACTIONS(8415), + [aux_sym_addressof_expression_token1] = ACTIONS(8415), + [aux_sym_type_of_expression_token1] = ACTIONS(8415), + [aux_sym_unary_expression_token1] = ACTIONS(8415), + [sym_string_literal] = ACTIONS(8417), + [sym_number_literal] = ACTIONS(8417), + [aux_sym_boolean_literal_token1] = ACTIONS(8415), + [aux_sym_boolean_literal_token2] = ACTIONS(8415), + [sym_nothing_literal] = ACTIONS(8415), + [sym_null_literal] = ACTIONS(8415), + [sym_empty_literal] = ACTIONS(8415), + [sym_date_literal] = ACTIONS(8417), + [anon_sym_POUND] = ACTIONS(8415), + }, + [STATE(5350)] = { + [sym_do_condition] = STATE(6997), + [sym_identifier] = ACTIONS(8419), + [sym_newline] = ACTIONS(8421), + [anon_sym_COLON] = ACTIONS(8421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8419), + [aux_sym_frm_property_statement_token1] = ACTIONS(8419), + [anon_sym_DOT] = ACTIONS(8419), + [anon_sym_BANG] = ACTIONS(8421), + [aux_sym__attribute_identifier_token1] = ACTIONS(8419), + [aux_sym_option_statement_token3] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8419), + [aux_sym_preprocessor_const_token1] = ACTIONS(8419), + [sym_static_modifier] = ACTIONS(8419), + [sym__dim_keyword] = ACTIONS(8419), + [sym__redim_keyword] = ACTIONS(8419), + [aux_sym_get_accessor_token1] = ACTIONS(8419), + [aux_sym_set_accessor_token1] = ACTIONS(8419), + [aux_sym_const_declaration_token1] = ACTIONS(8419), + [anon_sym_LPAREN] = ACTIONS(8421), + [aux_sym_as_type_clause_token2] = ACTIONS(8419), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8419), + [aux_sym_visibility_token1] = ACTIONS(8419), + [aux_sym_visibility_token2] = ACTIONS(8419), + [aux_sym_elseif_fragment_token1] = ACTIONS(8419), + [aux_sym_else_fragment_token1] = ACTIONS(8419), + [aux_sym_select_statement_token1] = ACTIONS(8419), + [aux_sym_select_statement_token2] = ACTIONS(8419), + [aux_sym__for_header_token1] = ACTIONS(8419), + [aux_sym_do_statement_token1] = ACTIONS(8419), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8419), + [aux_sym_exit_statement_token1] = ACTIONS(8419), + [sym_end_statement] = ACTIONS(8421), + [aux_sym_on_goto_statement_token1] = ACTIONS(8419), + [aux_sym_on_goto_statement_token2] = ACTIONS(8419), + [aux_sym_on_error_statement_token2] = ACTIONS(8419), + [sym__ambiguous_redim_statement] = ACTIONS(8421), + [aux_sym_erase_statement_token1] = ACTIONS(8419), + [aux_sym_open_statement_token1] = ACTIONS(8419), + [aux_sym_file_mode_token2] = ACTIONS(8419), + [aux_sym_file_access_token2] = ACTIONS(8419), + [aux_sym_file_lock_token2] = ACTIONS(8419), + [aux_sym_print_statement_token1] = ACTIONS(8419), + [anon_sym_PLUS] = ACTIONS(8421), + [anon_sym_DASH] = ACTIONS(8419), + [anon_sym_QMARK] = ACTIONS(8421), + [aux_sym_close_statement_token1] = ACTIONS(8419), + [aux_sym_put_statement_token1] = ACTIONS(8419), + [aux_sym_unlock_statement_token1] = ACTIONS(8419), + [aux_sym_seek_statement_token1] = ACTIONS(8419), + [sym_reset_statement] = ACTIONS(8419), + [aux_sym_raise_event_statement_token1] = ACTIONS(8419), + [sym_stop_statement] = ACTIONS(8419), + [sym_beep_statement] = ACTIONS(8419), + [aux_sym_unload_statement_token1] = ACTIONS(8419), + [aux_sym_def_type_statement_token1] = ACTIONS(8419), + [aux_sym_def_type_statement_token2] = ACTIONS(8419), + [aux_sym_def_type_statement_token3] = ACTIONS(8419), + [aux_sym_def_type_statement_token4] = ACTIONS(8419), + [aux_sym_def_type_statement_token5] = ACTIONS(8419), + [aux_sym_def_type_statement_token6] = ACTIONS(8419), + [aux_sym_def_type_statement_token7] = ACTIONS(8419), + [aux_sym_def_type_statement_token8] = ACTIONS(8419), + [aux_sym_def_type_statement_token9] = ACTIONS(8419), + [aux_sym_def_type_statement_token10] = ACTIONS(8419), + [aux_sym_def_type_statement_token11] = ACTIONS(8419), + [aux_sym_def_type_statement_token12] = ACTIONS(8419), + [aux_sym_def_type_statement_token13] = ACTIONS(8419), + [aux_sym_def_type_statement_token14] = ACTIONS(8419), + [aux_sym_call_statement_token1] = ACTIONS(8419), + [sym__ambiguous_call_statement] = ACTIONS(8419), + [aux_sym_addressof_expression_token1] = ACTIONS(8419), + [aux_sym_type_of_expression_token1] = ACTIONS(8419), + [aux_sym_unary_expression_token1] = ACTIONS(8419), + [sym_string_literal] = ACTIONS(8421), + [sym_number_literal] = ACTIONS(8421), + [aux_sym_boolean_literal_token1] = ACTIONS(8419), + [aux_sym_boolean_literal_token2] = ACTIONS(8419), + [sym_nothing_literal] = ACTIONS(8419), + [sym_null_literal] = ACTIONS(8419), + [sym_empty_literal] = ACTIONS(8419), + [sym_date_literal] = ACTIONS(8421), + [anon_sym_POUND] = ACTIONS(8419), + }, + [STATE(5351)] = { + [sym_do_condition] = STATE(7002), + [sym_identifier] = ACTIONS(8423), + [sym_newline] = ACTIONS(8425), + [anon_sym_COLON] = ACTIONS(8425), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8423), + [aux_sym_frm_property_statement_token1] = ACTIONS(8423), + [anon_sym_DOT] = ACTIONS(8423), + [anon_sym_BANG] = ACTIONS(8425), + [aux_sym__attribute_identifier_token1] = ACTIONS(8423), + [aux_sym_option_statement_token3] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8423), + [aux_sym_preprocessor_const_token1] = ACTIONS(8423), + [sym_static_modifier] = ACTIONS(8423), + [sym__dim_keyword] = ACTIONS(8423), + [sym__redim_keyword] = ACTIONS(8423), + [aux_sym_get_accessor_token1] = ACTIONS(8423), + [aux_sym_set_accessor_token1] = ACTIONS(8423), + [aux_sym_const_declaration_token1] = ACTIONS(8423), + [anon_sym_LPAREN] = ACTIONS(8425), + [aux_sym_as_type_clause_token2] = ACTIONS(8423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8423), + [aux_sym_visibility_token1] = ACTIONS(8423), + [aux_sym_visibility_token2] = ACTIONS(8423), + [aux_sym_elseif_fragment_token1] = ACTIONS(8423), + [aux_sym_else_fragment_token1] = ACTIONS(8423), + [aux_sym_select_statement_token1] = ACTIONS(8423), + [aux_sym_select_statement_token2] = ACTIONS(8423), + [aux_sym__for_header_token1] = ACTIONS(8423), + [aux_sym_do_statement_token1] = ACTIONS(8423), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8423), + [aux_sym_exit_statement_token1] = ACTIONS(8423), + [sym_end_statement] = ACTIONS(8425), + [aux_sym_on_goto_statement_token1] = ACTIONS(8423), + [aux_sym_on_goto_statement_token2] = ACTIONS(8423), + [aux_sym_on_error_statement_token2] = ACTIONS(8423), + [sym__ambiguous_redim_statement] = ACTIONS(8425), + [aux_sym_erase_statement_token1] = ACTIONS(8423), + [aux_sym_open_statement_token1] = ACTIONS(8423), + [aux_sym_file_mode_token2] = ACTIONS(8423), + [aux_sym_file_access_token2] = ACTIONS(8423), + [aux_sym_file_lock_token2] = ACTIONS(8423), + [aux_sym_print_statement_token1] = ACTIONS(8423), + [anon_sym_PLUS] = ACTIONS(8425), + [anon_sym_DASH] = ACTIONS(8423), + [anon_sym_QMARK] = ACTIONS(8425), + [aux_sym_close_statement_token1] = ACTIONS(8423), + [aux_sym_put_statement_token1] = ACTIONS(8423), + [aux_sym_unlock_statement_token1] = ACTIONS(8423), + [aux_sym_seek_statement_token1] = ACTIONS(8423), + [sym_reset_statement] = ACTIONS(8423), + [aux_sym_raise_event_statement_token1] = ACTIONS(8423), + [sym_stop_statement] = ACTIONS(8423), + [sym_beep_statement] = ACTIONS(8423), + [aux_sym_unload_statement_token1] = ACTIONS(8423), + [aux_sym_def_type_statement_token1] = ACTIONS(8423), + [aux_sym_def_type_statement_token2] = ACTIONS(8423), + [aux_sym_def_type_statement_token3] = ACTIONS(8423), + [aux_sym_def_type_statement_token4] = ACTIONS(8423), + [aux_sym_def_type_statement_token5] = ACTIONS(8423), + [aux_sym_def_type_statement_token6] = ACTIONS(8423), + [aux_sym_def_type_statement_token7] = ACTIONS(8423), + [aux_sym_def_type_statement_token8] = ACTIONS(8423), + [aux_sym_def_type_statement_token9] = ACTIONS(8423), + [aux_sym_def_type_statement_token10] = ACTIONS(8423), + [aux_sym_def_type_statement_token11] = ACTIONS(8423), + [aux_sym_def_type_statement_token12] = ACTIONS(8423), + [aux_sym_def_type_statement_token13] = ACTIONS(8423), + [aux_sym_def_type_statement_token14] = ACTIONS(8423), + [aux_sym_call_statement_token1] = ACTIONS(8423), + [sym__ambiguous_call_statement] = ACTIONS(8423), + [aux_sym_addressof_expression_token1] = ACTIONS(8423), + [aux_sym_type_of_expression_token1] = ACTIONS(8423), + [aux_sym_unary_expression_token1] = ACTIONS(8423), + [sym_string_literal] = ACTIONS(8425), + [sym_number_literal] = ACTIONS(8425), + [aux_sym_boolean_literal_token1] = ACTIONS(8423), + [aux_sym_boolean_literal_token2] = ACTIONS(8423), + [sym_nothing_literal] = ACTIONS(8423), + [sym_null_literal] = ACTIONS(8423), + [sym_empty_literal] = ACTIONS(8423), + [sym_date_literal] = ACTIONS(8425), + [anon_sym_POUND] = ACTIONS(8423), + }, + [STATE(5352)] = { + [aux_sym_close_statement_repeat1] = STATE(5748), + [sym_identifier] = ACTIONS(8521), + [sym_newline] = ACTIONS(8523), + [anon_sym_COLON] = ACTIONS(8523), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8521), + [aux_sym_frm_property_statement_token1] = ACTIONS(8521), + [anon_sym_DOT] = ACTIONS(8521), + [anon_sym_BANG] = ACTIONS(8523), + [aux_sym__attribute_identifier_token1] = ACTIONS(8521), + [aux_sym_option_statement_token3] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8521), + [aux_sym_preprocessor_const_token1] = ACTIONS(8521), + [sym_static_modifier] = ACTIONS(8521), + [sym__dim_keyword] = ACTIONS(8521), + [sym__redim_keyword] = ACTIONS(8521), + [aux_sym_get_accessor_token1] = ACTIONS(8521), + [aux_sym_set_accessor_token1] = ACTIONS(8521), + [anon_sym_COMMA] = ACTIONS(10562), + [aux_sym_const_declaration_token1] = ACTIONS(8521), + [anon_sym_LPAREN] = ACTIONS(8523), + [aux_sym_as_type_clause_token2] = ACTIONS(8521), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8521), + [aux_sym_visibility_token1] = ACTIONS(8521), + [aux_sym_visibility_token2] = ACTIONS(8521), + [aux_sym_elseif_fragment_token1] = ACTIONS(8521), + [aux_sym_else_fragment_token1] = ACTIONS(8521), + [aux_sym_select_statement_token1] = ACTIONS(8521), + [aux_sym__for_header_token1] = ACTIONS(8521), + [aux_sym_do_statement_token1] = ACTIONS(8521), + [aux_sym_do_condition_token1] = ACTIONS(8521), + [aux_sym_with_statement_token1] = ACTIONS(8521), + [aux_sym_exit_statement_token1] = ACTIONS(8521), + [sym_end_statement] = ACTIONS(8523), + [aux_sym_on_goto_statement_token1] = ACTIONS(8521), + [aux_sym_on_goto_statement_token2] = ACTIONS(8521), + [aux_sym_on_error_statement_token2] = ACTIONS(8521), + [sym__ambiguous_redim_statement] = ACTIONS(8523), + [aux_sym_erase_statement_token1] = ACTIONS(8521), + [aux_sym_open_statement_token1] = ACTIONS(8521), + [aux_sym_file_mode_token2] = ACTIONS(8521), + [aux_sym_file_access_token2] = ACTIONS(8521), + [aux_sym_file_lock_token2] = ACTIONS(8521), + [aux_sym_print_statement_token1] = ACTIONS(8521), + [anon_sym_PLUS] = ACTIONS(8523), + [anon_sym_DASH] = ACTIONS(8521), + [anon_sym_QMARK] = ACTIONS(8523), + [aux_sym_close_statement_token1] = ACTIONS(8521), + [aux_sym_put_statement_token1] = ACTIONS(8521), + [aux_sym_unlock_statement_token1] = ACTIONS(8521), + [aux_sym_seek_statement_token1] = ACTIONS(8521), + [sym_reset_statement] = ACTIONS(8521), + [aux_sym_raise_event_statement_token1] = ACTIONS(8521), + [sym_stop_statement] = ACTIONS(8521), + [sym_beep_statement] = ACTIONS(8521), + [aux_sym_unload_statement_token1] = ACTIONS(8521), + [aux_sym_def_type_statement_token1] = ACTIONS(8521), + [aux_sym_def_type_statement_token2] = ACTIONS(8521), + [aux_sym_def_type_statement_token3] = ACTIONS(8521), + [aux_sym_def_type_statement_token4] = ACTIONS(8521), + [aux_sym_def_type_statement_token5] = ACTIONS(8521), + [aux_sym_def_type_statement_token6] = ACTIONS(8521), + [aux_sym_def_type_statement_token7] = ACTIONS(8521), + [aux_sym_def_type_statement_token8] = ACTIONS(8521), + [aux_sym_def_type_statement_token9] = ACTIONS(8521), + [aux_sym_def_type_statement_token10] = ACTIONS(8521), + [aux_sym_def_type_statement_token11] = ACTIONS(8521), + [aux_sym_def_type_statement_token12] = ACTIONS(8521), + [aux_sym_def_type_statement_token13] = ACTIONS(8521), + [aux_sym_def_type_statement_token14] = ACTIONS(8521), + [aux_sym_call_statement_token1] = ACTIONS(8521), + [sym__ambiguous_call_statement] = ACTIONS(8521), + [aux_sym_addressof_expression_token1] = ACTIONS(8521), + [aux_sym_type_of_expression_token1] = ACTIONS(8521), + [aux_sym_unary_expression_token1] = ACTIONS(8521), + [sym_string_literal] = ACTIONS(8523), + [sym_number_literal] = ACTIONS(8523), + [aux_sym_boolean_literal_token1] = ACTIONS(8521), + [aux_sym_boolean_literal_token2] = ACTIONS(8521), + [sym_nothing_literal] = ACTIONS(8521), + [sym_null_literal] = ACTIONS(8521), + [sym_empty_literal] = ACTIONS(8521), + [sym_date_literal] = ACTIONS(8523), + [anon_sym_POUND] = ACTIONS(8521), + }, + [STATE(5353)] = { + [sym_do_condition] = STATE(7020), + [sym_identifier] = ACTIONS(8427), + [sym_newline] = ACTIONS(8429), + [anon_sym_COLON] = ACTIONS(8429), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8427), + [aux_sym_frm_property_statement_token1] = ACTIONS(8427), + [anon_sym_DOT] = ACTIONS(8427), + [anon_sym_BANG] = ACTIONS(8429), + [aux_sym__attribute_identifier_token1] = ACTIONS(8427), + [aux_sym_option_statement_token3] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8427), + [aux_sym_preprocessor_const_token1] = ACTIONS(8427), + [sym_static_modifier] = ACTIONS(8427), + [sym__dim_keyword] = ACTIONS(8427), + [sym__redim_keyword] = ACTIONS(8427), + [aux_sym_get_accessor_token1] = ACTIONS(8427), + [aux_sym_set_accessor_token1] = ACTIONS(8427), + [aux_sym_const_declaration_token1] = ACTIONS(8427), + [anon_sym_LPAREN] = ACTIONS(8429), + [aux_sym_as_type_clause_token2] = ACTIONS(8427), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8427), + [aux_sym_visibility_token1] = ACTIONS(8427), + [aux_sym_visibility_token2] = ACTIONS(8427), + [aux_sym_elseif_fragment_token1] = ACTIONS(8427), + [aux_sym_else_fragment_token1] = ACTIONS(8427), + [aux_sym_select_statement_token1] = ACTIONS(8427), + [aux_sym_select_statement_token2] = ACTIONS(8427), + [aux_sym__for_header_token1] = ACTIONS(8427), + [aux_sym_do_statement_token1] = ACTIONS(8427), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8427), + [aux_sym_exit_statement_token1] = ACTIONS(8427), + [sym_end_statement] = ACTIONS(8429), + [aux_sym_on_goto_statement_token1] = ACTIONS(8427), + [aux_sym_on_goto_statement_token2] = ACTIONS(8427), + [aux_sym_on_error_statement_token2] = ACTIONS(8427), + [sym__ambiguous_redim_statement] = ACTIONS(8429), + [aux_sym_erase_statement_token1] = ACTIONS(8427), + [aux_sym_open_statement_token1] = ACTIONS(8427), + [aux_sym_file_mode_token2] = ACTIONS(8427), + [aux_sym_file_access_token2] = ACTIONS(8427), + [aux_sym_file_lock_token2] = ACTIONS(8427), + [aux_sym_print_statement_token1] = ACTIONS(8427), + [anon_sym_PLUS] = ACTIONS(8429), + [anon_sym_DASH] = ACTIONS(8427), + [anon_sym_QMARK] = ACTIONS(8429), + [aux_sym_close_statement_token1] = ACTIONS(8427), + [aux_sym_put_statement_token1] = ACTIONS(8427), + [aux_sym_unlock_statement_token1] = ACTIONS(8427), + [aux_sym_seek_statement_token1] = ACTIONS(8427), + [sym_reset_statement] = ACTIONS(8427), + [aux_sym_raise_event_statement_token1] = ACTIONS(8427), + [sym_stop_statement] = ACTIONS(8427), + [sym_beep_statement] = ACTIONS(8427), + [aux_sym_unload_statement_token1] = ACTIONS(8427), + [aux_sym_def_type_statement_token1] = ACTIONS(8427), + [aux_sym_def_type_statement_token2] = ACTIONS(8427), + [aux_sym_def_type_statement_token3] = ACTIONS(8427), + [aux_sym_def_type_statement_token4] = ACTIONS(8427), + [aux_sym_def_type_statement_token5] = ACTIONS(8427), + [aux_sym_def_type_statement_token6] = ACTIONS(8427), + [aux_sym_def_type_statement_token7] = ACTIONS(8427), + [aux_sym_def_type_statement_token8] = ACTIONS(8427), + [aux_sym_def_type_statement_token9] = ACTIONS(8427), + [aux_sym_def_type_statement_token10] = ACTIONS(8427), + [aux_sym_def_type_statement_token11] = ACTIONS(8427), + [aux_sym_def_type_statement_token12] = ACTIONS(8427), + [aux_sym_def_type_statement_token13] = ACTIONS(8427), + [aux_sym_def_type_statement_token14] = ACTIONS(8427), + [aux_sym_call_statement_token1] = ACTIONS(8427), + [sym__ambiguous_call_statement] = ACTIONS(8427), + [aux_sym_addressof_expression_token1] = ACTIONS(8427), + [aux_sym_type_of_expression_token1] = ACTIONS(8427), + [aux_sym_unary_expression_token1] = ACTIONS(8427), + [sym_string_literal] = ACTIONS(8429), + [sym_number_literal] = ACTIONS(8429), + [aux_sym_boolean_literal_token1] = ACTIONS(8427), + [aux_sym_boolean_literal_token2] = ACTIONS(8427), + [sym_nothing_literal] = ACTIONS(8427), + [sym_null_literal] = ACTIONS(8427), + [sym_empty_literal] = ACTIONS(8427), + [sym_date_literal] = ACTIONS(8429), + [anon_sym_POUND] = ACTIONS(8427), + }, + [STATE(5354)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5306), + [sym_identifier] = ACTIONS(8529), + [sym_newline] = ACTIONS(8531), + [anon_sym_COLON] = ACTIONS(8531), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8529), + [aux_sym_frm_property_statement_token1] = ACTIONS(8529), + [anon_sym_DOT] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(8531), + [aux_sym__attribute_identifier_token1] = ACTIONS(8529), + [aux_sym_option_statement_token3] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8529), + [aux_sym_preprocessor_const_token1] = ACTIONS(8529), + [sym_static_modifier] = ACTIONS(8529), + [sym__dim_keyword] = ACTIONS(8529), + [sym__redim_keyword] = ACTIONS(8529), + [aux_sym_get_accessor_token1] = ACTIONS(8529), + [aux_sym_set_accessor_token1] = ACTIONS(8529), + [anon_sym_COMMA] = ACTIONS(10545), + [aux_sym_const_declaration_token1] = ACTIONS(8529), + [anon_sym_LPAREN] = ACTIONS(8531), + [aux_sym_as_type_clause_token2] = ACTIONS(8529), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8529), + [aux_sym_visibility_token1] = ACTIONS(8529), + [aux_sym_visibility_token2] = ACTIONS(8529), + [aux_sym_elseif_fragment_token1] = ACTIONS(8529), + [aux_sym_else_fragment_token1] = ACTIONS(8529), + [aux_sym_select_statement_token1] = ACTIONS(8529), + [aux_sym__for_header_token1] = ACTIONS(8529), + [aux_sym_do_statement_token1] = ACTIONS(8529), + [aux_sym_do_statement_token2] = ACTIONS(8529), + [aux_sym_do_condition_token1] = ACTIONS(8529), + [aux_sym_with_statement_token1] = ACTIONS(8529), + [aux_sym_exit_statement_token1] = ACTIONS(8529), + [sym_end_statement] = ACTIONS(8531), + [aux_sym_on_goto_statement_token1] = ACTIONS(8529), + [aux_sym_on_goto_statement_token2] = ACTIONS(8529), + [aux_sym_on_error_statement_token2] = ACTIONS(8529), + [sym__ambiguous_redim_statement] = ACTIONS(8531), + [aux_sym_erase_statement_token1] = ACTIONS(8529), + [aux_sym_open_statement_token1] = ACTIONS(8529), + [aux_sym_file_mode_token2] = ACTIONS(8529), + [aux_sym_file_access_token2] = ACTIONS(8529), + [aux_sym_file_lock_token2] = ACTIONS(8529), + [aux_sym_print_statement_token1] = ACTIONS(8529), + [anon_sym_PLUS] = ACTIONS(8531), + [anon_sym_DASH] = ACTIONS(8529), + [anon_sym_QMARK] = ACTIONS(8531), + [aux_sym_close_statement_token1] = ACTIONS(8529), + [aux_sym_put_statement_token1] = ACTIONS(8529), + [aux_sym_unlock_statement_token1] = ACTIONS(8529), + [aux_sym_seek_statement_token1] = ACTIONS(8529), + [sym_reset_statement] = ACTIONS(8529), + [aux_sym_raise_event_statement_token1] = ACTIONS(8529), + [sym_stop_statement] = ACTIONS(8529), + [sym_beep_statement] = ACTIONS(8529), + [aux_sym_unload_statement_token1] = ACTIONS(8529), + [aux_sym_def_type_statement_token1] = ACTIONS(8529), + [aux_sym_def_type_statement_token2] = ACTIONS(8529), + [aux_sym_def_type_statement_token3] = ACTIONS(8529), + [aux_sym_def_type_statement_token4] = ACTIONS(8529), + [aux_sym_def_type_statement_token5] = ACTIONS(8529), + [aux_sym_def_type_statement_token6] = ACTIONS(8529), + [aux_sym_def_type_statement_token7] = ACTIONS(8529), + [aux_sym_def_type_statement_token8] = ACTIONS(8529), + [aux_sym_def_type_statement_token9] = ACTIONS(8529), + [aux_sym_def_type_statement_token10] = ACTIONS(8529), + [aux_sym_def_type_statement_token11] = ACTIONS(8529), + [aux_sym_def_type_statement_token12] = ACTIONS(8529), + [aux_sym_def_type_statement_token13] = ACTIONS(8529), + [aux_sym_def_type_statement_token14] = ACTIONS(8529), + [aux_sym_call_statement_token1] = ACTIONS(8529), + [sym__ambiguous_call_statement] = ACTIONS(8529), + [aux_sym_addressof_expression_token1] = ACTIONS(8529), + [aux_sym_type_of_expression_token1] = ACTIONS(8529), + [aux_sym_unary_expression_token1] = ACTIONS(8529), + [sym_string_literal] = ACTIONS(8531), + [sym_number_literal] = ACTIONS(8531), + [aux_sym_boolean_literal_token1] = ACTIONS(8529), + [aux_sym_boolean_literal_token2] = ACTIONS(8529), + [sym_nothing_literal] = ACTIONS(8529), + [sym_null_literal] = ACTIONS(8529), + [sym_empty_literal] = ACTIONS(8529), + [sym_date_literal] = ACTIONS(8531), + [anon_sym_POUND] = ACTIONS(8529), + }, + [STATE(5355)] = { + [aux_sym__argument_sequence_repeat1] = STATE(5355), + [sym_identifier] = ACTIONS(8533), + [sym_newline] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(8535), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8533), + [aux_sym_frm_property_statement_token1] = ACTIONS(8533), + [anon_sym_DOT] = ACTIONS(8533), + [anon_sym_BANG] = ACTIONS(8535), + [aux_sym__attribute_identifier_token1] = ACTIONS(8533), + [aux_sym_option_statement_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8533), + [aux_sym_preprocessor_const_token1] = ACTIONS(8533), + [sym_static_modifier] = ACTIONS(8533), + [sym__dim_keyword] = ACTIONS(8533), + [sym__redim_keyword] = ACTIONS(8533), + [aux_sym_get_accessor_token1] = ACTIONS(8533), + [aux_sym_set_accessor_token1] = ACTIONS(8533), + [anon_sym_COMMA] = ACTIONS(10564), + [aux_sym_const_declaration_token1] = ACTIONS(8533), + [anon_sym_LPAREN] = ACTIONS(8535), + [aux_sym_as_type_clause_token2] = ACTIONS(8533), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8533), + [aux_sym_visibility_token1] = ACTIONS(8533), + [aux_sym_visibility_token2] = ACTIONS(8533), + [aux_sym_elseif_fragment_token1] = ACTIONS(8533), + [aux_sym_else_fragment_token1] = ACTIONS(8533), + [aux_sym_select_statement_token1] = ACTIONS(8533), + [aux_sym__for_header_token1] = ACTIONS(8533), + [aux_sym_do_statement_token1] = ACTIONS(8533), + [aux_sym_do_condition_token1] = ACTIONS(8533), + [aux_sym_while_statement_token1] = ACTIONS(8533), + [aux_sym_with_statement_token1] = ACTIONS(8533), + [aux_sym_exit_statement_token1] = ACTIONS(8533), + [sym_end_statement] = ACTIONS(8535), + [aux_sym_on_goto_statement_token1] = ACTIONS(8533), + [aux_sym_on_goto_statement_token2] = ACTIONS(8533), + [aux_sym_on_error_statement_token2] = ACTIONS(8533), + [sym__ambiguous_redim_statement] = ACTIONS(8535), + [aux_sym_erase_statement_token1] = ACTIONS(8533), + [aux_sym_open_statement_token1] = ACTIONS(8533), + [aux_sym_file_mode_token2] = ACTIONS(8533), + [aux_sym_file_access_token2] = ACTIONS(8533), + [aux_sym_file_lock_token2] = ACTIONS(8533), + [aux_sym_print_statement_token1] = ACTIONS(8533), + [anon_sym_PLUS] = ACTIONS(8535), + [anon_sym_DASH] = ACTIONS(8533), + [anon_sym_QMARK] = ACTIONS(8535), + [aux_sym_close_statement_token1] = ACTIONS(8533), + [aux_sym_put_statement_token1] = ACTIONS(8533), + [aux_sym_unlock_statement_token1] = ACTIONS(8533), + [aux_sym_seek_statement_token1] = ACTIONS(8533), + [sym_reset_statement] = ACTIONS(8533), + [aux_sym_raise_event_statement_token1] = ACTIONS(8533), + [sym_stop_statement] = ACTIONS(8533), + [sym_beep_statement] = ACTIONS(8533), + [aux_sym_unload_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token2] = ACTIONS(8533), + [aux_sym_def_type_statement_token3] = ACTIONS(8533), + [aux_sym_def_type_statement_token4] = ACTIONS(8533), + [aux_sym_def_type_statement_token5] = ACTIONS(8533), + [aux_sym_def_type_statement_token6] = ACTIONS(8533), + [aux_sym_def_type_statement_token7] = ACTIONS(8533), + [aux_sym_def_type_statement_token8] = ACTIONS(8533), + [aux_sym_def_type_statement_token9] = ACTIONS(8533), + [aux_sym_def_type_statement_token10] = ACTIONS(8533), + [aux_sym_def_type_statement_token11] = ACTIONS(8533), + [aux_sym_def_type_statement_token12] = ACTIONS(8533), + [aux_sym_def_type_statement_token13] = ACTIONS(8533), + [aux_sym_def_type_statement_token14] = ACTIONS(8533), + [aux_sym_call_statement_token1] = ACTIONS(8533), + [sym__ambiguous_call_statement] = ACTIONS(8533), + [aux_sym_addressof_expression_token1] = ACTIONS(8533), + [aux_sym_type_of_expression_token1] = ACTIONS(8533), + [aux_sym_unary_expression_token1] = ACTIONS(8533), + [sym_string_literal] = ACTIONS(8535), + [sym_number_literal] = ACTIONS(8535), + [aux_sym_boolean_literal_token1] = ACTIONS(8533), + [aux_sym_boolean_literal_token2] = ACTIONS(8533), + [sym_nothing_literal] = ACTIONS(8533), + [sym_null_literal] = ACTIONS(8533), + [sym_empty_literal] = ACTIONS(8533), + [sym_date_literal] = ACTIONS(8535), + [anon_sym_POUND] = ACTIONS(8533), + }, + [STATE(5356)] = { + [sym_do_condition] = STATE(7021), + [sym_identifier] = ACTIONS(8431), + [sym_newline] = ACTIONS(8433), + [anon_sym_COLON] = ACTIONS(8433), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8431), + [aux_sym_frm_property_statement_token1] = ACTIONS(8431), + [anon_sym_DOT] = ACTIONS(8431), + [anon_sym_BANG] = ACTIONS(8433), + [aux_sym__attribute_identifier_token1] = ACTIONS(8431), + [aux_sym_option_statement_token3] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8431), + [aux_sym_preprocessor_const_token1] = ACTIONS(8431), + [sym_static_modifier] = ACTIONS(8431), + [sym__dim_keyword] = ACTIONS(8431), + [sym__redim_keyword] = ACTIONS(8431), + [aux_sym_get_accessor_token1] = ACTIONS(8431), + [aux_sym_set_accessor_token1] = ACTIONS(8431), + [aux_sym_const_declaration_token1] = ACTIONS(8431), + [anon_sym_LPAREN] = ACTIONS(8433), + [aux_sym_as_type_clause_token2] = ACTIONS(8431), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8431), + [aux_sym_visibility_token1] = ACTIONS(8431), + [aux_sym_visibility_token2] = ACTIONS(8431), + [aux_sym_elseif_fragment_token1] = ACTIONS(8431), + [aux_sym_else_fragment_token1] = ACTIONS(8431), + [aux_sym_select_statement_token1] = ACTIONS(8431), + [aux_sym_select_statement_token2] = ACTIONS(8431), + [aux_sym__for_header_token1] = ACTIONS(8431), + [aux_sym_do_statement_token1] = ACTIONS(8431), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8431), + [aux_sym_exit_statement_token1] = ACTIONS(8431), + [sym_end_statement] = ACTIONS(8433), + [aux_sym_on_goto_statement_token1] = ACTIONS(8431), + [aux_sym_on_goto_statement_token2] = ACTIONS(8431), + [aux_sym_on_error_statement_token2] = ACTIONS(8431), + [sym__ambiguous_redim_statement] = ACTIONS(8433), + [aux_sym_erase_statement_token1] = ACTIONS(8431), + [aux_sym_open_statement_token1] = ACTIONS(8431), + [aux_sym_file_mode_token2] = ACTIONS(8431), + [aux_sym_file_access_token2] = ACTIONS(8431), + [aux_sym_file_lock_token2] = ACTIONS(8431), + [aux_sym_print_statement_token1] = ACTIONS(8431), + [anon_sym_PLUS] = ACTIONS(8433), + [anon_sym_DASH] = ACTIONS(8431), + [anon_sym_QMARK] = ACTIONS(8433), + [aux_sym_close_statement_token1] = ACTIONS(8431), + [aux_sym_put_statement_token1] = ACTIONS(8431), + [aux_sym_unlock_statement_token1] = ACTIONS(8431), + [aux_sym_seek_statement_token1] = ACTIONS(8431), + [sym_reset_statement] = ACTIONS(8431), + [aux_sym_raise_event_statement_token1] = ACTIONS(8431), + [sym_stop_statement] = ACTIONS(8431), + [sym_beep_statement] = ACTIONS(8431), + [aux_sym_unload_statement_token1] = ACTIONS(8431), + [aux_sym_def_type_statement_token1] = ACTIONS(8431), + [aux_sym_def_type_statement_token2] = ACTIONS(8431), + [aux_sym_def_type_statement_token3] = ACTIONS(8431), + [aux_sym_def_type_statement_token4] = ACTIONS(8431), + [aux_sym_def_type_statement_token5] = ACTIONS(8431), + [aux_sym_def_type_statement_token6] = ACTIONS(8431), + [aux_sym_def_type_statement_token7] = ACTIONS(8431), + [aux_sym_def_type_statement_token8] = ACTIONS(8431), + [aux_sym_def_type_statement_token9] = ACTIONS(8431), + [aux_sym_def_type_statement_token10] = ACTIONS(8431), + [aux_sym_def_type_statement_token11] = ACTIONS(8431), + [aux_sym_def_type_statement_token12] = ACTIONS(8431), + [aux_sym_def_type_statement_token13] = ACTIONS(8431), + [aux_sym_def_type_statement_token14] = ACTIONS(8431), + [aux_sym_call_statement_token1] = ACTIONS(8431), + [sym__ambiguous_call_statement] = ACTIONS(8431), + [aux_sym_addressof_expression_token1] = ACTIONS(8431), + [aux_sym_type_of_expression_token1] = ACTIONS(8431), + [aux_sym_unary_expression_token1] = ACTIONS(8431), + [sym_string_literal] = ACTIONS(8433), + [sym_number_literal] = ACTIONS(8433), + [aux_sym_boolean_literal_token1] = ACTIONS(8431), + [aux_sym_boolean_literal_token2] = ACTIONS(8431), + [sym_nothing_literal] = ACTIONS(8431), + [sym_null_literal] = ACTIONS(8431), + [sym_empty_literal] = ACTIONS(8431), + [sym_date_literal] = ACTIONS(8433), + [anon_sym_POUND] = ACTIONS(8431), + }, + [STATE(5357)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5289), + [sym_identifier] = ACTIONS(8435), + [sym_newline] = ACTIONS(8437), + [anon_sym_COLON] = ACTIONS(8437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8435), + [aux_sym_frm_property_statement_token1] = ACTIONS(8435), + [anon_sym_DOT] = ACTIONS(8435), + [anon_sym_BANG] = ACTIONS(8437), + [aux_sym__attribute_identifier_token1] = ACTIONS(8435), + [aux_sym_option_statement_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8435), + [aux_sym_preprocessor_const_token1] = ACTIONS(8435), + [sym_static_modifier] = ACTIONS(8435), + [sym__dim_keyword] = ACTIONS(8435), + [sym__redim_keyword] = ACTIONS(8435), + [aux_sym_get_accessor_token1] = ACTIONS(8435), + [aux_sym_set_accessor_token1] = ACTIONS(8435), + [anon_sym_COMMA] = ACTIONS(5158), + [aux_sym_const_declaration_token1] = ACTIONS(8435), + [anon_sym_LPAREN] = ACTIONS(8437), + [aux_sym_as_type_clause_token2] = ACTIONS(8435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8435), + [aux_sym_visibility_token1] = ACTIONS(8435), + [aux_sym_visibility_token2] = ACTIONS(8435), + [aux_sym_elseif_fragment_token1] = ACTIONS(8435), + [aux_sym_else_fragment_token1] = ACTIONS(8435), + [aux_sym_select_statement_token1] = ACTIONS(8435), + [aux_sym_select_statement_token2] = ACTIONS(8435), + [aux_sym__for_header_token1] = ACTIONS(8435), + [aux_sym_do_statement_token1] = ACTIONS(8435), + [aux_sym_do_condition_token1] = ACTIONS(8435), + [aux_sym_with_statement_token1] = ACTIONS(8435), + [aux_sym_exit_statement_token1] = ACTIONS(8435), + [sym_end_statement] = ACTIONS(8437), + [aux_sym_on_goto_statement_token1] = ACTIONS(8435), + [aux_sym_on_goto_statement_token2] = ACTIONS(8435), + [aux_sym_on_error_statement_token2] = ACTIONS(8435), + [sym__ambiguous_redim_statement] = ACTIONS(8437), + [aux_sym_erase_statement_token1] = ACTIONS(8435), + [aux_sym_open_statement_token1] = ACTIONS(8435), + [aux_sym_file_mode_token2] = ACTIONS(8435), + [aux_sym_file_access_token2] = ACTIONS(8435), + [aux_sym_file_lock_token2] = ACTIONS(8435), + [aux_sym_print_statement_token1] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(8437), + [anon_sym_DASH] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8437), + [aux_sym_close_statement_token1] = ACTIONS(8435), + [aux_sym_put_statement_token1] = ACTIONS(8435), + [aux_sym_unlock_statement_token1] = ACTIONS(8435), + [aux_sym_seek_statement_token1] = ACTIONS(8435), + [sym_reset_statement] = ACTIONS(8435), + [aux_sym_raise_event_statement_token1] = ACTIONS(8435), + [sym_stop_statement] = ACTIONS(8435), + [sym_beep_statement] = ACTIONS(8435), + [aux_sym_unload_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token2] = ACTIONS(8435), + [aux_sym_def_type_statement_token3] = ACTIONS(8435), + [aux_sym_def_type_statement_token4] = ACTIONS(8435), + [aux_sym_def_type_statement_token5] = ACTIONS(8435), + [aux_sym_def_type_statement_token6] = ACTIONS(8435), + [aux_sym_def_type_statement_token7] = ACTIONS(8435), + [aux_sym_def_type_statement_token8] = ACTIONS(8435), + [aux_sym_def_type_statement_token9] = ACTIONS(8435), + [aux_sym_def_type_statement_token10] = ACTIONS(8435), + [aux_sym_def_type_statement_token11] = ACTIONS(8435), + [aux_sym_def_type_statement_token12] = ACTIONS(8435), + [aux_sym_def_type_statement_token13] = ACTIONS(8435), + [aux_sym_def_type_statement_token14] = ACTIONS(8435), + [aux_sym_call_statement_token1] = ACTIONS(8435), + [sym__ambiguous_call_statement] = ACTIONS(8435), + [aux_sym_addressof_expression_token1] = ACTIONS(8435), + [aux_sym_type_of_expression_token1] = ACTIONS(8435), + [aux_sym_unary_expression_token1] = ACTIONS(8435), + [sym_string_literal] = ACTIONS(8437), + [sym_number_literal] = ACTIONS(8437), + [aux_sym_boolean_literal_token1] = ACTIONS(8435), + [aux_sym_boolean_literal_token2] = ACTIONS(8435), + [sym_nothing_literal] = ACTIONS(8435), + [sym_null_literal] = ACTIONS(8435), + [sym_empty_literal] = ACTIONS(8435), + [sym_date_literal] = ACTIONS(8437), + [anon_sym_POUND] = ACTIONS(8435), + }, + [STATE(5358)] = { + [aux_sym_const_declaration_repeat1] = STATE(5808), + [sym_identifier] = ACTIONS(8174), + [sym_newline] = ACTIONS(8176), + [anon_sym_COLON] = ACTIONS(8176), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8174), + [aux_sym_frm_property_statement_token1] = ACTIONS(8174), + [anon_sym_DOT] = ACTIONS(8174), + [anon_sym_BANG] = ACTIONS(8176), + [aux_sym__attribute_identifier_token1] = ACTIONS(8174), + [aux_sym_option_statement_token3] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8174), + [aux_sym_preprocessor_const_token1] = ACTIONS(8174), + [sym_static_modifier] = ACTIONS(8174), + [sym__dim_keyword] = ACTIONS(8174), + [sym__redim_keyword] = ACTIONS(8174), + [aux_sym_get_accessor_token1] = ACTIONS(8174), + [aux_sym_set_accessor_token1] = ACTIONS(8174), + [anon_sym_COMMA] = ACTIONS(10567), + [aux_sym_const_declaration_token1] = ACTIONS(8174), + [anon_sym_LPAREN] = ACTIONS(8176), + [aux_sym_as_type_clause_token2] = ACTIONS(8174), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8174), + [aux_sym_visibility_token1] = ACTIONS(8174), + [aux_sym_visibility_token2] = ACTIONS(8174), + [aux_sym_elseif_fragment_token1] = ACTIONS(8174), + [aux_sym_else_fragment_token1] = ACTIONS(8174), + [aux_sym_select_statement_token1] = ACTIONS(8174), + [aux_sym__for_header_token1] = ACTIONS(8174), + [aux_sym_do_statement_token1] = ACTIONS(8174), + [aux_sym_do_statement_token2] = ACTIONS(8174), + [aux_sym_do_condition_token1] = ACTIONS(8174), + [aux_sym_with_statement_token1] = ACTIONS(8174), + [aux_sym_exit_statement_token1] = ACTIONS(8174), + [sym_end_statement] = ACTIONS(8176), + [aux_sym_on_goto_statement_token1] = ACTIONS(8174), + [aux_sym_on_goto_statement_token2] = ACTIONS(8174), + [aux_sym_on_error_statement_token2] = ACTIONS(8174), + [sym__ambiguous_redim_statement] = ACTIONS(8176), + [aux_sym_erase_statement_token1] = ACTIONS(8174), + [aux_sym_open_statement_token1] = ACTIONS(8174), + [aux_sym_file_mode_token2] = ACTIONS(8174), + [aux_sym_file_access_token2] = ACTIONS(8174), + [aux_sym_file_lock_token2] = ACTIONS(8174), + [aux_sym_print_statement_token1] = ACTIONS(8174), + [anon_sym_PLUS] = ACTIONS(8176), + [anon_sym_DASH] = ACTIONS(8174), + [anon_sym_QMARK] = ACTIONS(8176), + [aux_sym_close_statement_token1] = ACTIONS(8174), + [aux_sym_put_statement_token1] = ACTIONS(8174), + [aux_sym_unlock_statement_token1] = ACTIONS(8174), + [aux_sym_seek_statement_token1] = ACTIONS(8174), + [sym_reset_statement] = ACTIONS(8174), + [aux_sym_raise_event_statement_token1] = ACTIONS(8174), + [sym_stop_statement] = ACTIONS(8174), + [sym_beep_statement] = ACTIONS(8174), + [aux_sym_unload_statement_token1] = ACTIONS(8174), + [aux_sym_def_type_statement_token1] = ACTIONS(8174), + [aux_sym_def_type_statement_token2] = ACTIONS(8174), + [aux_sym_def_type_statement_token3] = ACTIONS(8174), + [aux_sym_def_type_statement_token4] = ACTIONS(8174), + [aux_sym_def_type_statement_token5] = ACTIONS(8174), + [aux_sym_def_type_statement_token6] = ACTIONS(8174), + [aux_sym_def_type_statement_token7] = ACTIONS(8174), + [aux_sym_def_type_statement_token8] = ACTIONS(8174), + [aux_sym_def_type_statement_token9] = ACTIONS(8174), + [aux_sym_def_type_statement_token10] = ACTIONS(8174), + [aux_sym_def_type_statement_token11] = ACTIONS(8174), + [aux_sym_def_type_statement_token12] = ACTIONS(8174), + [aux_sym_def_type_statement_token13] = ACTIONS(8174), + [aux_sym_def_type_statement_token14] = ACTIONS(8174), + [aux_sym_call_statement_token1] = ACTIONS(8174), + [sym__ambiguous_call_statement] = ACTIONS(8174), + [aux_sym_addressof_expression_token1] = ACTIONS(8174), + [aux_sym_type_of_expression_token1] = ACTIONS(8174), + [aux_sym_unary_expression_token1] = ACTIONS(8174), + [sym_string_literal] = ACTIONS(8176), + [sym_number_literal] = ACTIONS(8176), + [aux_sym_boolean_literal_token1] = ACTIONS(8174), + [aux_sym_boolean_literal_token2] = ACTIONS(8174), + [sym_nothing_literal] = ACTIONS(8174), + [sym_null_literal] = ACTIONS(8174), + [sym_empty_literal] = ACTIONS(8174), + [sym_date_literal] = ACTIONS(8176), + [anon_sym_POUND] = ACTIONS(8174), + }, + [STATE(5359)] = { + [sym_identifier] = ACTIONS(8081), + [sym_newline] = ACTIONS(8083), + [anon_sym_COLON] = ACTIONS(8083), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8081), + [aux_sym_frm_property_statement_token1] = ACTIONS(8081), + [anon_sym_EQ] = ACTIONS(8083), + [anon_sym_DOT] = ACTIONS(8081), + [anon_sym_BANG] = ACTIONS(8083), + [aux_sym__attribute_identifier_token1] = ACTIONS(8081), + [aux_sym_option_statement_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8081), + [aux_sym_preprocessor_const_token1] = ACTIONS(8081), + [sym_static_modifier] = ACTIONS(8081), + [sym__dim_keyword] = ACTIONS(8081), + [sym__redim_keyword] = ACTIONS(8081), + [aux_sym_get_accessor_token1] = ACTIONS(8081), + [aux_sym_set_accessor_token1] = ACTIONS(8081), + [anon_sym_COMMA] = ACTIONS(8083), + [aux_sym_const_declaration_token1] = ACTIONS(8081), + [anon_sym_LPAREN] = ACTIONS(8083), + [aux_sym_as_type_clause_token2] = ACTIONS(8081), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8081), + [aux_sym_visibility_token1] = ACTIONS(8081), + [aux_sym_visibility_token2] = ACTIONS(8081), + [aux_sym_elseif_fragment_token1] = ACTIONS(8081), + [aux_sym_else_fragment_token1] = ACTIONS(8081), + [aux_sym_select_statement_token1] = ACTIONS(8081), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8081), + [aux_sym__for_header_token1] = ACTIONS(8081), + [aux_sym_do_statement_token1] = ACTIONS(8081), + [aux_sym_do_condition_token1] = ACTIONS(8081), + [aux_sym_with_statement_token1] = ACTIONS(8081), + [aux_sym_exit_statement_token1] = ACTIONS(8081), + [sym_end_statement] = ACTIONS(8083), + [aux_sym_on_goto_statement_token1] = ACTIONS(8081), + [aux_sym_on_goto_statement_token2] = ACTIONS(8081), + [aux_sym_on_error_statement_token2] = ACTIONS(8081), + [sym__ambiguous_redim_statement] = ACTIONS(8083), + [aux_sym_erase_statement_token1] = ACTIONS(8081), + [aux_sym_open_statement_token1] = ACTIONS(8081), + [aux_sym_file_mode_token2] = ACTIONS(8081), + [aux_sym_file_access_token2] = ACTIONS(8081), + [aux_sym_file_lock_token2] = ACTIONS(8081), + [aux_sym_print_statement_token1] = ACTIONS(8081), + [anon_sym_PLUS] = ACTIONS(8083), + [anon_sym_DASH] = ACTIONS(8081), + [anon_sym_QMARK] = ACTIONS(8083), + [aux_sym_close_statement_token1] = ACTIONS(8081), + [aux_sym_put_statement_token1] = ACTIONS(8081), + [aux_sym_unlock_statement_token1] = ACTIONS(8081), + [aux_sym_seek_statement_token1] = ACTIONS(8081), + [sym_reset_statement] = ACTIONS(8081), + [aux_sym_raise_event_statement_token1] = ACTIONS(8081), + [sym_stop_statement] = ACTIONS(8081), + [sym_beep_statement] = ACTIONS(8081), + [aux_sym_unload_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token2] = ACTIONS(8081), + [aux_sym_def_type_statement_token3] = ACTIONS(8081), + [aux_sym_def_type_statement_token4] = ACTIONS(8081), + [aux_sym_def_type_statement_token5] = ACTIONS(8081), + [aux_sym_def_type_statement_token6] = ACTIONS(8081), + [aux_sym_def_type_statement_token7] = ACTIONS(8081), + [aux_sym_def_type_statement_token8] = ACTIONS(8081), + [aux_sym_def_type_statement_token9] = ACTIONS(8081), + [aux_sym_def_type_statement_token10] = ACTIONS(8081), + [aux_sym_def_type_statement_token11] = ACTIONS(8081), + [aux_sym_def_type_statement_token12] = ACTIONS(8081), + [aux_sym_def_type_statement_token13] = ACTIONS(8081), + [aux_sym_def_type_statement_token14] = ACTIONS(8081), + [aux_sym_call_statement_token1] = ACTIONS(8081), + [sym__ambiguous_call_statement] = ACTIONS(8081), + [aux_sym_addressof_expression_token1] = ACTIONS(8081), + [aux_sym_type_of_expression_token1] = ACTIONS(8081), + [aux_sym_unary_expression_token1] = ACTIONS(8081), + [sym_string_literal] = ACTIONS(8083), + [sym_number_literal] = ACTIONS(8083), + [aux_sym_boolean_literal_token1] = ACTIONS(8081), + [aux_sym_boolean_literal_token2] = ACTIONS(8081), + [sym_nothing_literal] = ACTIONS(8081), + [sym_null_literal] = ACTIONS(8081), + [sym_empty_literal] = ACTIONS(8081), + [sym_date_literal] = ACTIONS(8083), + [anon_sym_POUND] = ACTIONS(8081), + }, + [STATE(5360)] = { + [sym_identifier] = ACTIONS(8525), + [sym_newline] = ACTIONS(8527), + [anon_sym_COLON] = ACTIONS(8527), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8525), + [aux_sym_frm_property_statement_token1] = ACTIONS(8525), + [anon_sym_EQ] = ACTIONS(8527), + [anon_sym_DOT] = ACTIONS(8525), + [anon_sym_BANG] = ACTIONS(8527), + [aux_sym__attribute_identifier_token1] = ACTIONS(8525), + [aux_sym_option_statement_token3] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8525), + [aux_sym_preprocessor_const_token1] = ACTIONS(8525), + [sym_static_modifier] = ACTIONS(8525), + [sym__dim_keyword] = ACTIONS(8525), + [sym__redim_keyword] = ACTIONS(8525), + [aux_sym_get_accessor_token1] = ACTIONS(8525), + [aux_sym_set_accessor_token1] = ACTIONS(8525), + [anon_sym_COMMA] = ACTIONS(8527), + [aux_sym_const_declaration_token1] = ACTIONS(8525), + [anon_sym_LPAREN] = ACTIONS(8527), + [aux_sym_as_type_clause_token2] = ACTIONS(8525), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8525), + [aux_sym_visibility_token1] = ACTIONS(8525), + [aux_sym_visibility_token2] = ACTIONS(8525), + [aux_sym_elseif_fragment_token1] = ACTIONS(8525), + [aux_sym_else_fragment_token1] = ACTIONS(8525), + [aux_sym_select_statement_token1] = ACTIONS(8525), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8525), + [aux_sym__for_header_token1] = ACTIONS(8525), + [aux_sym_do_statement_token1] = ACTIONS(8525), + [aux_sym_do_condition_token1] = ACTIONS(8525), + [aux_sym_with_statement_token1] = ACTIONS(8525), + [aux_sym_exit_statement_token1] = ACTIONS(8525), + [sym_end_statement] = ACTIONS(8527), + [aux_sym_on_goto_statement_token1] = ACTIONS(8525), + [aux_sym_on_goto_statement_token2] = ACTIONS(8525), + [aux_sym_on_error_statement_token2] = ACTIONS(8525), + [sym__ambiguous_redim_statement] = ACTIONS(8527), + [aux_sym_erase_statement_token1] = ACTIONS(8525), + [aux_sym_open_statement_token1] = ACTIONS(8525), + [aux_sym_file_mode_token2] = ACTIONS(8525), + [aux_sym_file_access_token2] = ACTIONS(8525), + [aux_sym_file_lock_token2] = ACTIONS(8525), + [aux_sym_print_statement_token1] = ACTIONS(8525), + [anon_sym_PLUS] = ACTIONS(8527), + [anon_sym_DASH] = ACTIONS(8525), + [anon_sym_QMARK] = ACTIONS(8527), + [aux_sym_close_statement_token1] = ACTIONS(8525), + [aux_sym_put_statement_token1] = ACTIONS(8525), + [aux_sym_unlock_statement_token1] = ACTIONS(8525), + [aux_sym_seek_statement_token1] = ACTIONS(8525), + [sym_reset_statement] = ACTIONS(8525), + [aux_sym_raise_event_statement_token1] = ACTIONS(8525), + [sym_stop_statement] = ACTIONS(8525), + [sym_beep_statement] = ACTIONS(8525), + [aux_sym_unload_statement_token1] = ACTIONS(8525), + [aux_sym_def_type_statement_token1] = ACTIONS(8525), + [aux_sym_def_type_statement_token2] = ACTIONS(8525), + [aux_sym_def_type_statement_token3] = ACTIONS(8525), + [aux_sym_def_type_statement_token4] = ACTIONS(8525), + [aux_sym_def_type_statement_token5] = ACTIONS(8525), + [aux_sym_def_type_statement_token6] = ACTIONS(8525), + [aux_sym_def_type_statement_token7] = ACTIONS(8525), + [aux_sym_def_type_statement_token8] = ACTIONS(8525), + [aux_sym_def_type_statement_token9] = ACTIONS(8525), + [aux_sym_def_type_statement_token10] = ACTIONS(8525), + [aux_sym_def_type_statement_token11] = ACTIONS(8525), + [aux_sym_def_type_statement_token12] = ACTIONS(8525), + [aux_sym_def_type_statement_token13] = ACTIONS(8525), + [aux_sym_def_type_statement_token14] = ACTIONS(8525), + [aux_sym_call_statement_token1] = ACTIONS(8525), + [sym__ambiguous_call_statement] = ACTIONS(8525), + [aux_sym_addressof_expression_token1] = ACTIONS(8525), + [aux_sym_type_of_expression_token1] = ACTIONS(8525), + [aux_sym_unary_expression_token1] = ACTIONS(8525), + [sym_string_literal] = ACTIONS(8527), + [sym_number_literal] = ACTIONS(8527), + [aux_sym_boolean_literal_token1] = ACTIONS(8525), + [aux_sym_boolean_literal_token2] = ACTIONS(8525), + [sym_nothing_literal] = ACTIONS(8525), + [sym_null_literal] = ACTIONS(8525), + [sym_empty_literal] = ACTIONS(8525), + [sym_date_literal] = ACTIONS(8527), + [anon_sym_POUND] = ACTIONS(8525), + }, + [STATE(5361)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5361), + [sym_identifier] = ACTIONS(8196), + [sym_newline] = ACTIONS(8198), + [anon_sym_COLON] = ACTIONS(8198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8196), + [aux_sym_frm_property_statement_token1] = ACTIONS(8196), + [anon_sym_DOT] = ACTIONS(8196), + [anon_sym_BANG] = ACTIONS(8198), + [aux_sym__attribute_identifier_token1] = ACTIONS(8196), + [aux_sym_option_statement_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8196), + [aux_sym_preprocessor_const_token1] = ACTIONS(8196), + [sym_static_modifier] = ACTIONS(8196), + [sym__dim_keyword] = ACTIONS(8196), + [sym__redim_keyword] = ACTIONS(8196), + [aux_sym_get_accessor_token1] = ACTIONS(8196), + [aux_sym_set_accessor_token1] = ACTIONS(8196), + [anon_sym_COMMA] = ACTIONS(10569), + [aux_sym_const_declaration_token1] = ACTIONS(8196), + [anon_sym_LPAREN] = ACTIONS(8198), + [aux_sym_as_type_clause_token2] = ACTIONS(8196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8196), + [aux_sym_visibility_token1] = ACTIONS(8196), + [aux_sym_visibility_token2] = ACTIONS(8196), + [aux_sym_elseif_fragment_token1] = ACTIONS(8196), + [aux_sym_else_fragment_token1] = ACTIONS(8196), + [aux_sym_select_statement_token1] = ACTIONS(8196), + [aux_sym__for_header_token1] = ACTIONS(8196), + [aux_sym_do_statement_token1] = ACTIONS(8196), + [aux_sym_do_condition_token1] = ACTIONS(8196), + [aux_sym_with_statement_token1] = ACTIONS(8196), + [aux_sym_exit_statement_token1] = ACTIONS(8196), + [sym_end_statement] = ACTIONS(8198), + [aux_sym_on_goto_statement_token1] = ACTIONS(8196), + [aux_sym_on_goto_statement_token2] = ACTIONS(8196), + [aux_sym_on_error_statement_token2] = ACTIONS(8196), + [sym__ambiguous_redim_statement] = ACTIONS(8198), + [aux_sym_erase_statement_token1] = ACTIONS(8196), + [aux_sym_open_statement_token1] = ACTIONS(8196), + [aux_sym_file_mode_token2] = ACTIONS(8196), + [aux_sym_file_access_token2] = ACTIONS(8196), + [aux_sym_file_lock_token2] = ACTIONS(8196), + [aux_sym_print_statement_token1] = ACTIONS(8196), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(8196), + [anon_sym_QMARK] = ACTIONS(8198), + [aux_sym_close_statement_token1] = ACTIONS(8196), + [aux_sym_put_statement_token1] = ACTIONS(8196), + [aux_sym_unlock_statement_token1] = ACTIONS(8196), + [aux_sym_seek_statement_token1] = ACTIONS(8196), + [sym_reset_statement] = ACTIONS(8196), + [aux_sym_raise_event_statement_token1] = ACTIONS(8196), + [sym_stop_statement] = ACTIONS(8196), + [sym_beep_statement] = ACTIONS(8196), + [aux_sym_unload_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token2] = ACTIONS(8196), + [aux_sym_def_type_statement_token3] = ACTIONS(8196), + [aux_sym_def_type_statement_token4] = ACTIONS(8196), + [aux_sym_def_type_statement_token5] = ACTIONS(8196), + [aux_sym_def_type_statement_token6] = ACTIONS(8196), + [aux_sym_def_type_statement_token7] = ACTIONS(8196), + [aux_sym_def_type_statement_token8] = ACTIONS(8196), + [aux_sym_def_type_statement_token9] = ACTIONS(8196), + [aux_sym_def_type_statement_token10] = ACTIONS(8196), + [aux_sym_def_type_statement_token11] = ACTIONS(8196), + [aux_sym_def_type_statement_token12] = ACTIONS(8196), + [aux_sym_def_type_statement_token13] = ACTIONS(8196), + [aux_sym_def_type_statement_token14] = ACTIONS(8196), + [aux_sym_call_statement_token1] = ACTIONS(8196), + [sym__ambiguous_call_statement] = ACTIONS(8196), + [aux_sym_addressof_expression_token1] = ACTIONS(8196), + [aux_sym_type_of_expression_token1] = ACTIONS(8196), + [aux_sym_unary_expression_token1] = ACTIONS(8196), + [sym_string_literal] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8198), + [aux_sym_boolean_literal_token1] = ACTIONS(8196), + [aux_sym_boolean_literal_token2] = ACTIONS(8196), + [sym_nothing_literal] = ACTIONS(8196), + [sym_null_literal] = ACTIONS(8196), + [sym_empty_literal] = ACTIONS(8196), + [sym_date_literal] = ACTIONS(8198), + [anon_sym_POUND] = ACTIONS(8196), + }, + [STATE(5362)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5372), + [sym_identifier] = ACTIONS(8435), + [sym_newline] = ACTIONS(8437), + [anon_sym_COLON] = ACTIONS(8437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8435), + [aux_sym_frm_property_statement_token1] = ACTIONS(8435), + [anon_sym_DOT] = ACTIONS(8435), + [anon_sym_BANG] = ACTIONS(8437), + [aux_sym__attribute_identifier_token1] = ACTIONS(8435), + [aux_sym_option_statement_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8435), + [aux_sym_preprocessor_const_token1] = ACTIONS(8435), + [sym_static_modifier] = ACTIONS(8435), + [sym__dim_keyword] = ACTIONS(8435), + [sym__redim_keyword] = ACTIONS(8435), + [aux_sym_get_accessor_token1] = ACTIONS(8435), + [aux_sym_set_accessor_token1] = ACTIONS(8435), + [anon_sym_COMMA] = ACTIONS(5158), + [aux_sym_const_declaration_token1] = ACTIONS(8435), + [anon_sym_LPAREN] = ACTIONS(8437), + [aux_sym_as_type_clause_token2] = ACTIONS(8435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8435), + [aux_sym_visibility_token1] = ACTIONS(8435), + [aux_sym_visibility_token2] = ACTIONS(8435), + [aux_sym_elseif_fragment_token1] = ACTIONS(8435), + [aux_sym_else_fragment_token1] = ACTIONS(8435), + [aux_sym_select_statement_token1] = ACTIONS(8435), + [aux_sym_select_statement_token2] = ACTIONS(8435), + [aux_sym__for_header_token1] = ACTIONS(8435), + [aux_sym_do_statement_token1] = ACTIONS(8435), + [aux_sym_do_condition_token1] = ACTIONS(8435), + [aux_sym_with_statement_token1] = ACTIONS(8435), + [aux_sym_exit_statement_token1] = ACTIONS(8435), + [sym_end_statement] = ACTIONS(8437), + [aux_sym_on_goto_statement_token1] = ACTIONS(8435), + [aux_sym_on_goto_statement_token2] = ACTIONS(8435), + [aux_sym_on_error_statement_token2] = ACTIONS(8435), + [sym__ambiguous_redim_statement] = ACTIONS(8437), + [aux_sym_erase_statement_token1] = ACTIONS(8435), + [aux_sym_open_statement_token1] = ACTIONS(8435), + [aux_sym_file_mode_token2] = ACTIONS(8435), + [aux_sym_file_access_token2] = ACTIONS(8435), + [aux_sym_file_lock_token2] = ACTIONS(8435), + [aux_sym_print_statement_token1] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(8437), + [anon_sym_DASH] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8437), + [aux_sym_close_statement_token1] = ACTIONS(8435), + [aux_sym_put_statement_token1] = ACTIONS(8435), + [aux_sym_unlock_statement_token1] = ACTIONS(8435), + [aux_sym_seek_statement_token1] = ACTIONS(8435), + [sym_reset_statement] = ACTIONS(8435), + [aux_sym_raise_event_statement_token1] = ACTIONS(8435), + [sym_stop_statement] = ACTIONS(8435), + [sym_beep_statement] = ACTIONS(8435), + [aux_sym_unload_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token2] = ACTIONS(8435), + [aux_sym_def_type_statement_token3] = ACTIONS(8435), + [aux_sym_def_type_statement_token4] = ACTIONS(8435), + [aux_sym_def_type_statement_token5] = ACTIONS(8435), + [aux_sym_def_type_statement_token6] = ACTIONS(8435), + [aux_sym_def_type_statement_token7] = ACTIONS(8435), + [aux_sym_def_type_statement_token8] = ACTIONS(8435), + [aux_sym_def_type_statement_token9] = ACTIONS(8435), + [aux_sym_def_type_statement_token10] = ACTIONS(8435), + [aux_sym_def_type_statement_token11] = ACTIONS(8435), + [aux_sym_def_type_statement_token12] = ACTIONS(8435), + [aux_sym_def_type_statement_token13] = ACTIONS(8435), + [aux_sym_def_type_statement_token14] = ACTIONS(8435), + [aux_sym_call_statement_token1] = ACTIONS(8435), + [sym__ambiguous_call_statement] = ACTIONS(8435), + [aux_sym_addressof_expression_token1] = ACTIONS(8435), + [aux_sym_type_of_expression_token1] = ACTIONS(8435), + [aux_sym_unary_expression_token1] = ACTIONS(8435), + [sym_string_literal] = ACTIONS(8437), + [sym_number_literal] = ACTIONS(8437), + [aux_sym_boolean_literal_token1] = ACTIONS(8435), + [aux_sym_boolean_literal_token2] = ACTIONS(8435), + [sym_nothing_literal] = ACTIONS(8435), + [sym_null_literal] = ACTIONS(8435), + [sym_empty_literal] = ACTIONS(8435), + [sym_date_literal] = ACTIONS(8437), + [anon_sym_POUND] = ACTIONS(8435), + }, + [STATE(5363)] = { + [sym_identifier] = ACTIONS(8070), + [sym_newline] = ACTIONS(8072), + [anon_sym_COLON] = ACTIONS(8072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8070), + [aux_sym_frm_property_statement_token1] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(8072), + [anon_sym_DOT] = ACTIONS(8070), + [anon_sym_BANG] = ACTIONS(8072), + [aux_sym__attribute_identifier_token1] = ACTIONS(8070), + [aux_sym_option_statement_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8070), + [aux_sym_preprocessor_const_token1] = ACTIONS(8070), + [sym_static_modifier] = ACTIONS(8070), + [sym__dim_keyword] = ACTIONS(8070), + [sym__redim_keyword] = ACTIONS(8070), + [aux_sym_get_accessor_token1] = ACTIONS(8070), + [aux_sym_set_accessor_token1] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [aux_sym_const_declaration_token1] = ACTIONS(8070), + [anon_sym_LPAREN] = ACTIONS(8072), + [aux_sym_as_type_clause_token2] = ACTIONS(8070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8070), + [aux_sym_visibility_token1] = ACTIONS(8070), + [aux_sym_visibility_token2] = ACTIONS(8070), + [aux_sym_elseif_fragment_token1] = ACTIONS(8070), + [aux_sym_else_fragment_token1] = ACTIONS(8070), + [aux_sym_select_statement_token1] = ACTIONS(8070), + [aux_sym_select_statement_token2] = ACTIONS(8070), + [aux_sym__for_header_token1] = ACTIONS(8070), + [aux_sym_do_statement_token1] = ACTIONS(8070), + [aux_sym_do_condition_token1] = ACTIONS(8070), + [aux_sym_with_statement_token1] = ACTIONS(8070), + [aux_sym_exit_statement_token1] = ACTIONS(8070), + [sym_end_statement] = ACTIONS(8072), + [aux_sym_on_goto_statement_token1] = ACTIONS(8070), + [aux_sym_on_goto_statement_token2] = ACTIONS(8070), + [aux_sym_on_error_statement_token2] = ACTIONS(8070), + [sym__ambiguous_redim_statement] = ACTIONS(8072), + [aux_sym_erase_statement_token1] = ACTIONS(8070), + [aux_sym_open_statement_token1] = ACTIONS(8070), + [aux_sym_file_mode_token2] = ACTIONS(8070), + [aux_sym_file_access_token2] = ACTIONS(8070), + [aux_sym_file_lock_token2] = ACTIONS(8070), + [aux_sym_print_statement_token1] = ACTIONS(8070), + [anon_sym_PLUS] = ACTIONS(8072), + [anon_sym_DASH] = ACTIONS(8070), + [anon_sym_QMARK] = ACTIONS(8072), + [aux_sym_close_statement_token1] = ACTIONS(8070), + [aux_sym_put_statement_token1] = ACTIONS(8070), + [aux_sym_unlock_statement_token1] = ACTIONS(8070), + [aux_sym_seek_statement_token1] = ACTIONS(8070), + [sym_reset_statement] = ACTIONS(8070), + [aux_sym_raise_event_statement_token1] = ACTIONS(8070), + [sym_stop_statement] = ACTIONS(8070), + [sym_beep_statement] = ACTIONS(8070), + [aux_sym_unload_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token2] = ACTIONS(8070), + [aux_sym_def_type_statement_token3] = ACTIONS(8070), + [aux_sym_def_type_statement_token4] = ACTIONS(8070), + [aux_sym_def_type_statement_token5] = ACTIONS(8070), + [aux_sym_def_type_statement_token6] = ACTIONS(8070), + [aux_sym_def_type_statement_token7] = ACTIONS(8070), + [aux_sym_def_type_statement_token8] = ACTIONS(8070), + [aux_sym_def_type_statement_token9] = ACTIONS(8070), + [aux_sym_def_type_statement_token10] = ACTIONS(8070), + [aux_sym_def_type_statement_token11] = ACTIONS(8070), + [aux_sym_def_type_statement_token12] = ACTIONS(8070), + [aux_sym_def_type_statement_token13] = ACTIONS(8070), + [aux_sym_def_type_statement_token14] = ACTIONS(8070), + [aux_sym_call_statement_token1] = ACTIONS(8070), + [sym__ambiguous_call_statement] = ACTIONS(8070), + [aux_sym_addressof_expression_token1] = ACTIONS(8070), + [aux_sym_type_of_expression_token1] = ACTIONS(8070), + [aux_sym_unary_expression_token1] = ACTIONS(8070), + [sym_string_literal] = ACTIONS(8072), + [sym_number_literal] = ACTIONS(8072), + [aux_sym_boolean_literal_token1] = ACTIONS(8070), + [aux_sym_boolean_literal_token2] = ACTIONS(8070), + [sym_nothing_literal] = ACTIONS(8070), + [sym_null_literal] = ACTIONS(8070), + [sym_empty_literal] = ACTIONS(8070), + [sym_date_literal] = ACTIONS(8072), + [anon_sym_POUND] = ACTIONS(8070), + }, + [STATE(5364)] = { + [sym_identifier] = ACTIONS(7984), + [sym_newline] = ACTIONS(7986), + [anon_sym_COLON] = ACTIONS(7986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7984), + [aux_sym_frm_property_statement_token1] = ACTIONS(7984), + [anon_sym_EQ] = ACTIONS(7986), + [anon_sym_DOT] = ACTIONS(7984), + [anon_sym_BANG] = ACTIONS(7986), + [aux_sym__attribute_identifier_token1] = ACTIONS(7984), + [aux_sym_option_statement_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7984), + [aux_sym_preprocessor_const_token1] = ACTIONS(7984), + [sym_static_modifier] = ACTIONS(7984), + [sym__dim_keyword] = ACTIONS(7984), + [sym__redim_keyword] = ACTIONS(7984), + [aux_sym_get_accessor_token1] = ACTIONS(7984), + [aux_sym_set_accessor_token1] = ACTIONS(7984), + [anon_sym_COMMA] = ACTIONS(7986), + [aux_sym_const_declaration_token1] = ACTIONS(7984), + [anon_sym_LPAREN] = ACTIONS(7986), + [aux_sym_as_type_clause_token2] = ACTIONS(7984), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7984), + [aux_sym_visibility_token1] = ACTIONS(7984), + [aux_sym_visibility_token2] = ACTIONS(7984), + [aux_sym_elseif_fragment_token1] = ACTIONS(7984), + [aux_sym_else_fragment_token1] = ACTIONS(7984), + [aux_sym_select_statement_token1] = ACTIONS(7984), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7984), + [aux_sym__for_header_token1] = ACTIONS(7984), + [aux_sym_do_statement_token1] = ACTIONS(7984), + [aux_sym_do_condition_token1] = ACTIONS(7984), + [aux_sym_with_statement_token1] = ACTIONS(7984), + [aux_sym_exit_statement_token1] = ACTIONS(7984), + [sym_end_statement] = ACTIONS(7986), + [aux_sym_on_goto_statement_token1] = ACTIONS(7984), + [aux_sym_on_goto_statement_token2] = ACTIONS(7984), + [aux_sym_on_error_statement_token2] = ACTIONS(7984), + [sym__ambiguous_redim_statement] = ACTIONS(7986), + [aux_sym_erase_statement_token1] = ACTIONS(7984), + [aux_sym_open_statement_token1] = ACTIONS(7984), + [aux_sym_file_mode_token2] = ACTIONS(7984), + [aux_sym_file_access_token2] = ACTIONS(7984), + [aux_sym_file_lock_token2] = ACTIONS(7984), + [aux_sym_print_statement_token1] = ACTIONS(7984), + [anon_sym_PLUS] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(7984), + [anon_sym_QMARK] = ACTIONS(7986), + [aux_sym_close_statement_token1] = ACTIONS(7984), + [aux_sym_put_statement_token1] = ACTIONS(7984), + [aux_sym_unlock_statement_token1] = ACTIONS(7984), + [aux_sym_seek_statement_token1] = ACTIONS(7984), + [sym_reset_statement] = ACTIONS(7984), + [aux_sym_raise_event_statement_token1] = ACTIONS(7984), + [sym_stop_statement] = ACTIONS(7984), + [sym_beep_statement] = ACTIONS(7984), + [aux_sym_unload_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token2] = ACTIONS(7984), + [aux_sym_def_type_statement_token3] = ACTIONS(7984), + [aux_sym_def_type_statement_token4] = ACTIONS(7984), + [aux_sym_def_type_statement_token5] = ACTIONS(7984), + [aux_sym_def_type_statement_token6] = ACTIONS(7984), + [aux_sym_def_type_statement_token7] = ACTIONS(7984), + [aux_sym_def_type_statement_token8] = ACTIONS(7984), + [aux_sym_def_type_statement_token9] = ACTIONS(7984), + [aux_sym_def_type_statement_token10] = ACTIONS(7984), + [aux_sym_def_type_statement_token11] = ACTIONS(7984), + [aux_sym_def_type_statement_token12] = ACTIONS(7984), + [aux_sym_def_type_statement_token13] = ACTIONS(7984), + [aux_sym_def_type_statement_token14] = ACTIONS(7984), + [aux_sym_call_statement_token1] = ACTIONS(7984), + [sym__ambiguous_call_statement] = ACTIONS(7984), + [aux_sym_addressof_expression_token1] = ACTIONS(7984), + [aux_sym_type_of_expression_token1] = ACTIONS(7984), + [aux_sym_unary_expression_token1] = ACTIONS(7984), + [sym_string_literal] = ACTIONS(7986), + [sym_number_literal] = ACTIONS(7986), + [aux_sym_boolean_literal_token1] = ACTIONS(7984), + [aux_sym_boolean_literal_token2] = ACTIONS(7984), + [sym_nothing_literal] = ACTIONS(7984), + [sym_null_literal] = ACTIONS(7984), + [sym_empty_literal] = ACTIONS(7984), + [sym_date_literal] = ACTIONS(7986), + [anon_sym_POUND] = ACTIONS(7984), + }, + [STATE(5365)] = { + [sym_do_condition] = STATE(6854), + [sym_identifier] = ACTIONS(8513), + [sym_newline] = ACTIONS(8515), + [anon_sym_COLON] = ACTIONS(8515), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8513), + [aux_sym_frm_property_statement_token1] = ACTIONS(8513), + [anon_sym_DOT] = ACTIONS(8513), + [anon_sym_BANG] = ACTIONS(8515), + [aux_sym__attribute_identifier_token1] = ACTIONS(8513), + [aux_sym_option_statement_token3] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8513), + [aux_sym_preprocessor_const_token1] = ACTIONS(8513), + [sym_static_modifier] = ACTIONS(8513), + [sym__dim_keyword] = ACTIONS(8513), + [sym__redim_keyword] = ACTIONS(8513), + [aux_sym_get_accessor_token1] = ACTIONS(8513), + [aux_sym_set_accessor_token1] = ACTIONS(8513), + [aux_sym_const_declaration_token1] = ACTIONS(8513), + [anon_sym_LPAREN] = ACTIONS(8515), + [aux_sym_as_type_clause_token2] = ACTIONS(8513), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8513), + [aux_sym_visibility_token1] = ACTIONS(8513), + [aux_sym_visibility_token2] = ACTIONS(8513), + [aux_sym_elseif_fragment_token1] = ACTIONS(8513), + [aux_sym_else_fragment_token1] = ACTIONS(8513), + [aux_sym_select_statement_token1] = ACTIONS(8513), + [aux_sym_select_statement_token2] = ACTIONS(8513), + [aux_sym__for_header_token1] = ACTIONS(8513), + [aux_sym_do_statement_token1] = ACTIONS(8513), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8513), + [aux_sym_exit_statement_token1] = ACTIONS(8513), + [sym_end_statement] = ACTIONS(8515), + [aux_sym_on_goto_statement_token1] = ACTIONS(8513), + [aux_sym_on_goto_statement_token2] = ACTIONS(8513), + [aux_sym_on_error_statement_token2] = ACTIONS(8513), + [sym__ambiguous_redim_statement] = ACTIONS(8515), + [aux_sym_erase_statement_token1] = ACTIONS(8513), + [aux_sym_open_statement_token1] = ACTIONS(8513), + [aux_sym_file_mode_token2] = ACTIONS(8513), + [aux_sym_file_access_token2] = ACTIONS(8513), + [aux_sym_file_lock_token2] = ACTIONS(8513), + [aux_sym_print_statement_token1] = ACTIONS(8513), + [anon_sym_PLUS] = ACTIONS(8515), + [anon_sym_DASH] = ACTIONS(8513), + [anon_sym_QMARK] = ACTIONS(8515), + [aux_sym_close_statement_token1] = ACTIONS(8513), + [aux_sym_put_statement_token1] = ACTIONS(8513), + [aux_sym_unlock_statement_token1] = ACTIONS(8513), + [aux_sym_seek_statement_token1] = ACTIONS(8513), + [sym_reset_statement] = ACTIONS(8513), + [aux_sym_raise_event_statement_token1] = ACTIONS(8513), + [sym_stop_statement] = ACTIONS(8513), + [sym_beep_statement] = ACTIONS(8513), + [aux_sym_unload_statement_token1] = ACTIONS(8513), + [aux_sym_def_type_statement_token1] = ACTIONS(8513), + [aux_sym_def_type_statement_token2] = ACTIONS(8513), + [aux_sym_def_type_statement_token3] = ACTIONS(8513), + [aux_sym_def_type_statement_token4] = ACTIONS(8513), + [aux_sym_def_type_statement_token5] = ACTIONS(8513), + [aux_sym_def_type_statement_token6] = ACTIONS(8513), + [aux_sym_def_type_statement_token7] = ACTIONS(8513), + [aux_sym_def_type_statement_token8] = ACTIONS(8513), + [aux_sym_def_type_statement_token9] = ACTIONS(8513), + [aux_sym_def_type_statement_token10] = ACTIONS(8513), + [aux_sym_def_type_statement_token11] = ACTIONS(8513), + [aux_sym_def_type_statement_token12] = ACTIONS(8513), + [aux_sym_def_type_statement_token13] = ACTIONS(8513), + [aux_sym_def_type_statement_token14] = ACTIONS(8513), + [aux_sym_call_statement_token1] = ACTIONS(8513), + [sym__ambiguous_call_statement] = ACTIONS(8513), + [aux_sym_addressof_expression_token1] = ACTIONS(8513), + [aux_sym_type_of_expression_token1] = ACTIONS(8513), + [aux_sym_unary_expression_token1] = ACTIONS(8513), + [sym_string_literal] = ACTIONS(8515), + [sym_number_literal] = ACTIONS(8515), + [aux_sym_boolean_literal_token1] = ACTIONS(8513), + [aux_sym_boolean_literal_token2] = ACTIONS(8513), + [sym_nothing_literal] = ACTIONS(8513), + [sym_null_literal] = ACTIONS(8513), + [sym_empty_literal] = ACTIONS(8513), + [sym_date_literal] = ACTIONS(8515), + [anon_sym_POUND] = ACTIONS(8513), + }, + [STATE(5366)] = { + [sym_identifier] = ACTIONS(9138), + [sym_newline] = ACTIONS(9140), + [anon_sym_COLON] = ACTIONS(9140), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9138), + [aux_sym_frm_property_statement_token1] = ACTIONS(9138), + [anon_sym_DOT] = ACTIONS(9138), + [anon_sym_BANG] = ACTIONS(9140), + [aux_sym__attribute_identifier_token1] = ACTIONS(9138), + [aux_sym_option_statement_token3] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9138), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9138), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9138), + [aux_sym_preprocessor_const_token1] = ACTIONS(9138), + [sym_static_modifier] = ACTIONS(9138), + [sym__dim_keyword] = ACTIONS(9138), + [sym__redim_keyword] = ACTIONS(9138), + [aux_sym_get_accessor_token1] = ACTIONS(9138), + [aux_sym_set_accessor_token1] = ACTIONS(9138), + [aux_sym_const_declaration_token1] = ACTIONS(9138), + [anon_sym_LPAREN] = ACTIONS(9140), + [aux_sym_as_type_clause_token2] = ACTIONS(9138), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9138), + [aux_sym_visibility_token1] = ACTIONS(9138), + [aux_sym_visibility_token2] = ACTIONS(9138), + [aux_sym_elseif_fragment_token1] = ACTIONS(9138), + [aux_sym_else_fragment_token1] = ACTIONS(9138), + [aux_sym_select_statement_token1] = ACTIONS(9138), + [aux_sym__for_header_token1] = ACTIONS(9138), + [aux_sym_do_statement_token1] = ACTIONS(9138), + [aux_sym_do_condition_token1] = ACTIONS(9138), + [aux_sym_with_statement_token1] = ACTIONS(9138), + [aux_sym_exit_statement_token1] = ACTIONS(9138), + [sym_end_statement] = ACTIONS(9140), + [aux_sym_on_goto_statement_token1] = ACTIONS(9138), + [aux_sym_on_goto_statement_token2] = ACTIONS(9138), + [aux_sym_on_error_statement_token2] = ACTIONS(9138), + [sym__ambiguous_redim_statement] = ACTIONS(9140), + [aux_sym_erase_statement_token1] = ACTIONS(9138), + [aux_sym_open_statement_token1] = ACTIONS(9138), + [aux_sym_file_mode_token2] = ACTIONS(9138), + [aux_sym_file_access_token2] = ACTIONS(9138), + [aux_sym_file_lock_token2] = ACTIONS(9138), + [aux_sym_print_statement_token1] = ACTIONS(9138), + [anon_sym_PLUS] = ACTIONS(9140), + [anon_sym_DASH] = ACTIONS(9138), + [anon_sym_QMARK] = ACTIONS(9140), + [aux_sym_close_statement_token1] = ACTIONS(9138), + [aux_sym_put_statement_token1] = ACTIONS(9138), + [aux_sym_unlock_statement_token1] = ACTIONS(9138), + [aux_sym_seek_statement_token1] = ACTIONS(9138), + [sym_reset_statement] = ACTIONS(9138), + [aux_sym_raise_event_statement_token1] = ACTIONS(9138), + [sym_stop_statement] = ACTIONS(9138), + [sym_beep_statement] = ACTIONS(9138), + [aux_sym_unload_statement_token1] = ACTIONS(9138), + [aux_sym_def_type_statement_token1] = ACTIONS(9138), + [aux_sym_def_type_statement_token2] = ACTIONS(9138), + [aux_sym_def_type_statement_token3] = ACTIONS(9138), + [aux_sym_def_type_statement_token4] = ACTIONS(9138), + [aux_sym_def_type_statement_token5] = ACTIONS(9138), + [aux_sym_def_type_statement_token6] = ACTIONS(9138), + [aux_sym_def_type_statement_token7] = ACTIONS(9138), + [aux_sym_def_type_statement_token8] = ACTIONS(9138), + [aux_sym_def_type_statement_token9] = ACTIONS(9138), + [aux_sym_def_type_statement_token10] = ACTIONS(9138), + [aux_sym_def_type_statement_token11] = ACTIONS(9138), + [aux_sym_def_type_statement_token12] = ACTIONS(9138), + [aux_sym_def_type_statement_token13] = ACTIONS(9138), + [aux_sym_def_type_statement_token14] = ACTIONS(9138), + [aux_sym_call_statement_token1] = ACTIONS(9138), + [sym__ambiguous_call_statement] = ACTIONS(9138), + [aux_sym_addressof_expression_token1] = ACTIONS(9138), + [aux_sym_type_of_expression_token1] = ACTIONS(9138), + [aux_sym_unary_expression_token1] = ACTIONS(9138), + [sym_string_literal] = ACTIONS(9140), + [sym_number_literal] = ACTIONS(9140), + [aux_sym_boolean_literal_token1] = ACTIONS(9138), + [aux_sym_boolean_literal_token2] = ACTIONS(9138), + [sym_nothing_literal] = ACTIONS(9138), + [sym_null_literal] = ACTIONS(9138), + [sym_empty_literal] = ACTIONS(9138), + [sym_date_literal] = ACTIONS(9140), + [anon_sym_POUND] = ACTIONS(9138), + }, + [STATE(5367)] = { + [sym_identifier] = ACTIONS(8081), + [sym_newline] = ACTIONS(8083), + [anon_sym_COLON] = ACTIONS(8083), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8081), + [aux_sym_frm_property_statement_token1] = ACTIONS(8081), + [anon_sym_EQ] = ACTIONS(8083), + [anon_sym_DOT] = ACTIONS(8081), + [anon_sym_BANG] = ACTIONS(8083), + [aux_sym__attribute_identifier_token1] = ACTIONS(8081), + [aux_sym_option_statement_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8081), + [aux_sym_preprocessor_const_token1] = ACTIONS(8081), + [sym_static_modifier] = ACTIONS(8081), + [sym__dim_keyword] = ACTIONS(8081), + [sym__redim_keyword] = ACTIONS(8081), + [aux_sym_get_accessor_token1] = ACTIONS(8081), + [aux_sym_set_accessor_token1] = ACTIONS(8081), + [anon_sym_COMMA] = ACTIONS(8083), + [aux_sym_const_declaration_token1] = ACTIONS(8081), + [anon_sym_LPAREN] = ACTIONS(8083), + [aux_sym_as_type_clause_token2] = ACTIONS(8081), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8081), + [aux_sym_visibility_token1] = ACTIONS(8081), + [aux_sym_visibility_token2] = ACTIONS(8081), + [aux_sym_elseif_fragment_token1] = ACTIONS(8081), + [aux_sym_else_fragment_token1] = ACTIONS(8081), + [aux_sym_select_statement_token1] = ACTIONS(8081), + [aux_sym_select_statement_token2] = ACTIONS(8081), + [aux_sym__for_header_token1] = ACTIONS(8081), + [aux_sym_do_statement_token1] = ACTIONS(8081), + [aux_sym_do_condition_token1] = ACTIONS(8081), + [aux_sym_with_statement_token1] = ACTIONS(8081), + [aux_sym_exit_statement_token1] = ACTIONS(8081), + [sym_end_statement] = ACTIONS(8083), + [aux_sym_on_goto_statement_token1] = ACTIONS(8081), + [aux_sym_on_goto_statement_token2] = ACTIONS(8081), + [aux_sym_on_error_statement_token2] = ACTIONS(8081), + [sym__ambiguous_redim_statement] = ACTIONS(8083), + [aux_sym_erase_statement_token1] = ACTIONS(8081), + [aux_sym_open_statement_token1] = ACTIONS(8081), + [aux_sym_file_mode_token2] = ACTIONS(8081), + [aux_sym_file_access_token2] = ACTIONS(8081), + [aux_sym_file_lock_token2] = ACTIONS(8081), + [aux_sym_print_statement_token1] = ACTIONS(8081), + [anon_sym_PLUS] = ACTIONS(8083), + [anon_sym_DASH] = ACTIONS(8081), + [anon_sym_QMARK] = ACTIONS(8083), + [aux_sym_close_statement_token1] = ACTIONS(8081), + [aux_sym_put_statement_token1] = ACTIONS(8081), + [aux_sym_unlock_statement_token1] = ACTIONS(8081), + [aux_sym_seek_statement_token1] = ACTIONS(8081), + [sym_reset_statement] = ACTIONS(8081), + [aux_sym_raise_event_statement_token1] = ACTIONS(8081), + [sym_stop_statement] = ACTIONS(8081), + [sym_beep_statement] = ACTIONS(8081), + [aux_sym_unload_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token2] = ACTIONS(8081), + [aux_sym_def_type_statement_token3] = ACTIONS(8081), + [aux_sym_def_type_statement_token4] = ACTIONS(8081), + [aux_sym_def_type_statement_token5] = ACTIONS(8081), + [aux_sym_def_type_statement_token6] = ACTIONS(8081), + [aux_sym_def_type_statement_token7] = ACTIONS(8081), + [aux_sym_def_type_statement_token8] = ACTIONS(8081), + [aux_sym_def_type_statement_token9] = ACTIONS(8081), + [aux_sym_def_type_statement_token10] = ACTIONS(8081), + [aux_sym_def_type_statement_token11] = ACTIONS(8081), + [aux_sym_def_type_statement_token12] = ACTIONS(8081), + [aux_sym_def_type_statement_token13] = ACTIONS(8081), + [aux_sym_def_type_statement_token14] = ACTIONS(8081), + [aux_sym_call_statement_token1] = ACTIONS(8081), + [sym__ambiguous_call_statement] = ACTIONS(8081), + [aux_sym_addressof_expression_token1] = ACTIONS(8081), + [aux_sym_type_of_expression_token1] = ACTIONS(8081), + [aux_sym_unary_expression_token1] = ACTIONS(8081), + [sym_string_literal] = ACTIONS(8083), + [sym_number_literal] = ACTIONS(8083), + [aux_sym_boolean_literal_token1] = ACTIONS(8081), + [aux_sym_boolean_literal_token2] = ACTIONS(8081), + [sym_nothing_literal] = ACTIONS(8081), + [sym_null_literal] = ACTIONS(8081), + [sym_empty_literal] = ACTIONS(8081), + [sym_date_literal] = ACTIONS(8083), + [anon_sym_POUND] = ACTIONS(8081), + }, + [STATE(5368)] = { + [sym_do_condition] = STATE(6341), + [sym_identifier] = ACTIONS(8471), + [sym_newline] = ACTIONS(8473), + [anon_sym_COLON] = ACTIONS(8473), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8471), + [aux_sym_frm_property_statement_token1] = ACTIONS(8471), + [anon_sym_DOT] = ACTIONS(8471), + [anon_sym_BANG] = ACTIONS(8473), + [aux_sym__attribute_identifier_token1] = ACTIONS(8471), + [aux_sym_option_statement_token3] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8471), + [aux_sym_preprocessor_const_token1] = ACTIONS(8471), + [sym_static_modifier] = ACTIONS(8471), + [sym__dim_keyword] = ACTIONS(8471), + [sym__redim_keyword] = ACTIONS(8471), + [aux_sym_get_accessor_token1] = ACTIONS(8471), + [aux_sym_set_accessor_token1] = ACTIONS(8471), + [aux_sym_const_declaration_token1] = ACTIONS(8471), + [anon_sym_LPAREN] = ACTIONS(8473), + [aux_sym_as_type_clause_token2] = ACTIONS(8471), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8471), + [aux_sym_visibility_token1] = ACTIONS(8471), + [aux_sym_visibility_token2] = ACTIONS(8471), + [aux_sym_elseif_fragment_token1] = ACTIONS(8471), + [aux_sym_else_fragment_token1] = ACTIONS(8471), + [aux_sym_select_statement_token1] = ACTIONS(8471), + [aux_sym_select_statement_token2] = ACTIONS(8471), + [aux_sym__for_header_token1] = ACTIONS(8471), + [aux_sym_do_statement_token1] = ACTIONS(8471), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8471), + [aux_sym_exit_statement_token1] = ACTIONS(8471), + [sym_end_statement] = ACTIONS(8473), + [aux_sym_on_goto_statement_token1] = ACTIONS(8471), + [aux_sym_on_goto_statement_token2] = ACTIONS(8471), + [aux_sym_on_error_statement_token2] = ACTIONS(8471), + [sym__ambiguous_redim_statement] = ACTIONS(8473), + [aux_sym_erase_statement_token1] = ACTIONS(8471), + [aux_sym_open_statement_token1] = ACTIONS(8471), + [aux_sym_file_mode_token2] = ACTIONS(8471), + [aux_sym_file_access_token2] = ACTIONS(8471), + [aux_sym_file_lock_token2] = ACTIONS(8471), + [aux_sym_print_statement_token1] = ACTIONS(8471), + [anon_sym_PLUS] = ACTIONS(8473), + [anon_sym_DASH] = ACTIONS(8471), + [anon_sym_QMARK] = ACTIONS(8473), + [aux_sym_close_statement_token1] = ACTIONS(8471), + [aux_sym_put_statement_token1] = ACTIONS(8471), + [aux_sym_unlock_statement_token1] = ACTIONS(8471), + [aux_sym_seek_statement_token1] = ACTIONS(8471), + [sym_reset_statement] = ACTIONS(8471), + [aux_sym_raise_event_statement_token1] = ACTIONS(8471), + [sym_stop_statement] = ACTIONS(8471), + [sym_beep_statement] = ACTIONS(8471), + [aux_sym_unload_statement_token1] = ACTIONS(8471), + [aux_sym_def_type_statement_token1] = ACTIONS(8471), + [aux_sym_def_type_statement_token2] = ACTIONS(8471), + [aux_sym_def_type_statement_token3] = ACTIONS(8471), + [aux_sym_def_type_statement_token4] = ACTIONS(8471), + [aux_sym_def_type_statement_token5] = ACTIONS(8471), + [aux_sym_def_type_statement_token6] = ACTIONS(8471), + [aux_sym_def_type_statement_token7] = ACTIONS(8471), + [aux_sym_def_type_statement_token8] = ACTIONS(8471), + [aux_sym_def_type_statement_token9] = ACTIONS(8471), + [aux_sym_def_type_statement_token10] = ACTIONS(8471), + [aux_sym_def_type_statement_token11] = ACTIONS(8471), + [aux_sym_def_type_statement_token12] = ACTIONS(8471), + [aux_sym_def_type_statement_token13] = ACTIONS(8471), + [aux_sym_def_type_statement_token14] = ACTIONS(8471), + [aux_sym_call_statement_token1] = ACTIONS(8471), + [sym__ambiguous_call_statement] = ACTIONS(8471), + [aux_sym_addressof_expression_token1] = ACTIONS(8471), + [aux_sym_type_of_expression_token1] = ACTIONS(8471), + [aux_sym_unary_expression_token1] = ACTIONS(8471), + [sym_string_literal] = ACTIONS(8473), + [sym_number_literal] = ACTIONS(8473), + [aux_sym_boolean_literal_token1] = ACTIONS(8471), + [aux_sym_boolean_literal_token2] = ACTIONS(8471), + [sym_nothing_literal] = ACTIONS(8471), + [sym_null_literal] = ACTIONS(8471), + [sym_empty_literal] = ACTIONS(8471), + [sym_date_literal] = ACTIONS(8473), + [anon_sym_POUND] = ACTIONS(8471), + }, + [STATE(5369)] = { + [sym_identifier] = ACTIONS(8525), + [sym_newline] = ACTIONS(8527), + [anon_sym_COLON] = ACTIONS(8527), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8525), + [aux_sym_frm_property_statement_token1] = ACTIONS(8525), + [anon_sym_EQ] = ACTIONS(8527), + [anon_sym_DOT] = ACTIONS(8525), + [anon_sym_BANG] = ACTIONS(8527), + [aux_sym__attribute_identifier_token1] = ACTIONS(8525), + [aux_sym_option_statement_token3] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8525), + [aux_sym_preprocessor_const_token1] = ACTIONS(8525), + [sym_static_modifier] = ACTIONS(8525), + [sym__dim_keyword] = ACTIONS(8525), + [sym__redim_keyword] = ACTIONS(8525), + [aux_sym_get_accessor_token1] = ACTIONS(8525), + [aux_sym_set_accessor_token1] = ACTIONS(8525), + [anon_sym_COMMA] = ACTIONS(8527), + [aux_sym_const_declaration_token1] = ACTIONS(8525), + [anon_sym_LPAREN] = ACTIONS(8527), + [aux_sym_as_type_clause_token2] = ACTIONS(8525), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8525), + [aux_sym_visibility_token1] = ACTIONS(8525), + [aux_sym_visibility_token2] = ACTIONS(8525), + [aux_sym_elseif_fragment_token1] = ACTIONS(8525), + [aux_sym_else_fragment_token1] = ACTIONS(8525), + [aux_sym_select_statement_token1] = ACTIONS(8525), + [aux_sym_select_statement_token2] = ACTIONS(8525), + [aux_sym__for_header_token1] = ACTIONS(8525), + [aux_sym_do_statement_token1] = ACTIONS(8525), + [aux_sym_do_condition_token1] = ACTIONS(8525), + [aux_sym_with_statement_token1] = ACTIONS(8525), + [aux_sym_exit_statement_token1] = ACTIONS(8525), + [sym_end_statement] = ACTIONS(8527), + [aux_sym_on_goto_statement_token1] = ACTIONS(8525), + [aux_sym_on_goto_statement_token2] = ACTIONS(8525), + [aux_sym_on_error_statement_token2] = ACTIONS(8525), + [sym__ambiguous_redim_statement] = ACTIONS(8527), + [aux_sym_erase_statement_token1] = ACTIONS(8525), + [aux_sym_open_statement_token1] = ACTIONS(8525), + [aux_sym_file_mode_token2] = ACTIONS(8525), + [aux_sym_file_access_token2] = ACTIONS(8525), + [aux_sym_file_lock_token2] = ACTIONS(8525), + [aux_sym_print_statement_token1] = ACTIONS(8525), + [anon_sym_PLUS] = ACTIONS(8527), + [anon_sym_DASH] = ACTIONS(8525), + [anon_sym_QMARK] = ACTIONS(8527), + [aux_sym_close_statement_token1] = ACTIONS(8525), + [aux_sym_put_statement_token1] = ACTIONS(8525), + [aux_sym_unlock_statement_token1] = ACTIONS(8525), + [aux_sym_seek_statement_token1] = ACTIONS(8525), + [sym_reset_statement] = ACTIONS(8525), + [aux_sym_raise_event_statement_token1] = ACTIONS(8525), + [sym_stop_statement] = ACTIONS(8525), + [sym_beep_statement] = ACTIONS(8525), + [aux_sym_unload_statement_token1] = ACTIONS(8525), + [aux_sym_def_type_statement_token1] = ACTIONS(8525), + [aux_sym_def_type_statement_token2] = ACTIONS(8525), + [aux_sym_def_type_statement_token3] = ACTIONS(8525), + [aux_sym_def_type_statement_token4] = ACTIONS(8525), + [aux_sym_def_type_statement_token5] = ACTIONS(8525), + [aux_sym_def_type_statement_token6] = ACTIONS(8525), + [aux_sym_def_type_statement_token7] = ACTIONS(8525), + [aux_sym_def_type_statement_token8] = ACTIONS(8525), + [aux_sym_def_type_statement_token9] = ACTIONS(8525), + [aux_sym_def_type_statement_token10] = ACTIONS(8525), + [aux_sym_def_type_statement_token11] = ACTIONS(8525), + [aux_sym_def_type_statement_token12] = ACTIONS(8525), + [aux_sym_def_type_statement_token13] = ACTIONS(8525), + [aux_sym_def_type_statement_token14] = ACTIONS(8525), + [aux_sym_call_statement_token1] = ACTIONS(8525), + [sym__ambiguous_call_statement] = ACTIONS(8525), + [aux_sym_addressof_expression_token1] = ACTIONS(8525), + [aux_sym_type_of_expression_token1] = ACTIONS(8525), + [aux_sym_unary_expression_token1] = ACTIONS(8525), + [sym_string_literal] = ACTIONS(8527), + [sym_number_literal] = ACTIONS(8527), + [aux_sym_boolean_literal_token1] = ACTIONS(8525), + [aux_sym_boolean_literal_token2] = ACTIONS(8525), + [sym_nothing_literal] = ACTIONS(8525), + [sym_null_literal] = ACTIONS(8525), + [sym_empty_literal] = ACTIONS(8525), + [sym_date_literal] = ACTIONS(8527), + [anon_sym_POUND] = ACTIONS(8525), + }, + [STATE(5370)] = { + [sym_identifier] = ACTIONS(8022), + [sym_newline] = ACTIONS(8024), + [anon_sym_COLON] = ACTIONS(8024), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8022), + [aux_sym_frm_property_statement_token1] = ACTIONS(8022), + [anon_sym_EQ] = ACTIONS(8024), + [anon_sym_DOT] = ACTIONS(8022), + [anon_sym_BANG] = ACTIONS(8024), + [aux_sym__attribute_identifier_token1] = ACTIONS(8022), + [aux_sym_option_statement_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8022), + [aux_sym_preprocessor_const_token1] = ACTIONS(8022), + [sym_static_modifier] = ACTIONS(8022), + [sym__dim_keyword] = ACTIONS(8022), + [sym__redim_keyword] = ACTIONS(8022), + [aux_sym_get_accessor_token1] = ACTIONS(8022), + [aux_sym_set_accessor_token1] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8024), + [aux_sym_const_declaration_token1] = ACTIONS(8022), + [anon_sym_LPAREN] = ACTIONS(8024), + [aux_sym_as_type_clause_token2] = ACTIONS(8022), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8022), + [aux_sym_visibility_token1] = ACTIONS(8022), + [aux_sym_visibility_token2] = ACTIONS(8022), + [aux_sym_elseif_fragment_token1] = ACTIONS(8022), + [aux_sym_else_fragment_token1] = ACTIONS(8022), + [aux_sym_select_statement_token1] = ACTIONS(8022), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8022), + [aux_sym__for_header_token1] = ACTIONS(8022), + [aux_sym_do_statement_token1] = ACTIONS(8022), + [aux_sym_do_condition_token1] = ACTIONS(8022), + [aux_sym_with_statement_token1] = ACTIONS(8022), + [aux_sym_exit_statement_token1] = ACTIONS(8022), + [sym_end_statement] = ACTIONS(8024), + [aux_sym_on_goto_statement_token1] = ACTIONS(8022), + [aux_sym_on_goto_statement_token2] = ACTIONS(8022), + [aux_sym_on_error_statement_token2] = ACTIONS(8022), + [sym__ambiguous_redim_statement] = ACTIONS(8024), + [aux_sym_erase_statement_token1] = ACTIONS(8022), + [aux_sym_open_statement_token1] = ACTIONS(8022), + [aux_sym_file_mode_token2] = ACTIONS(8022), + [aux_sym_file_access_token2] = ACTIONS(8022), + [aux_sym_file_lock_token2] = ACTIONS(8022), + [aux_sym_print_statement_token1] = ACTIONS(8022), + [anon_sym_PLUS] = ACTIONS(8024), + [anon_sym_DASH] = ACTIONS(8022), + [anon_sym_QMARK] = ACTIONS(8024), + [aux_sym_close_statement_token1] = ACTIONS(8022), + [aux_sym_put_statement_token1] = ACTIONS(8022), + [aux_sym_unlock_statement_token1] = ACTIONS(8022), + [aux_sym_seek_statement_token1] = ACTIONS(8022), + [sym_reset_statement] = ACTIONS(8022), + [aux_sym_raise_event_statement_token1] = ACTIONS(8022), + [sym_stop_statement] = ACTIONS(8022), + [sym_beep_statement] = ACTIONS(8022), + [aux_sym_unload_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token2] = ACTIONS(8022), + [aux_sym_def_type_statement_token3] = ACTIONS(8022), + [aux_sym_def_type_statement_token4] = ACTIONS(8022), + [aux_sym_def_type_statement_token5] = ACTIONS(8022), + [aux_sym_def_type_statement_token6] = ACTIONS(8022), + [aux_sym_def_type_statement_token7] = ACTIONS(8022), + [aux_sym_def_type_statement_token8] = ACTIONS(8022), + [aux_sym_def_type_statement_token9] = ACTIONS(8022), + [aux_sym_def_type_statement_token10] = ACTIONS(8022), + [aux_sym_def_type_statement_token11] = ACTIONS(8022), + [aux_sym_def_type_statement_token12] = ACTIONS(8022), + [aux_sym_def_type_statement_token13] = ACTIONS(8022), + [aux_sym_def_type_statement_token14] = ACTIONS(8022), + [aux_sym_call_statement_token1] = ACTIONS(8022), + [sym__ambiguous_call_statement] = ACTIONS(8022), + [aux_sym_addressof_expression_token1] = ACTIONS(8022), + [aux_sym_type_of_expression_token1] = ACTIONS(8022), + [aux_sym_unary_expression_token1] = ACTIONS(8022), + [sym_string_literal] = ACTIONS(8024), + [sym_number_literal] = ACTIONS(8024), + [aux_sym_boolean_literal_token1] = ACTIONS(8022), + [aux_sym_boolean_literal_token2] = ACTIONS(8022), + [sym_nothing_literal] = ACTIONS(8022), + [sym_null_literal] = ACTIONS(8022), + [sym_empty_literal] = ACTIONS(8022), + [sym_date_literal] = ACTIONS(8024), + [anon_sym_POUND] = ACTIONS(8022), + }, + [STATE(5371)] = { + [sym_do_condition] = STATE(6342), + [sym_identifier] = ACTIONS(8479), + [sym_newline] = ACTIONS(8481), + [anon_sym_COLON] = ACTIONS(8481), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8479), + [aux_sym_frm_property_statement_token1] = ACTIONS(8479), + [anon_sym_DOT] = ACTIONS(8479), + [anon_sym_BANG] = ACTIONS(8481), + [aux_sym__attribute_identifier_token1] = ACTIONS(8479), + [aux_sym_option_statement_token3] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8479), + [aux_sym_preprocessor_const_token1] = ACTIONS(8479), + [sym_static_modifier] = ACTIONS(8479), + [sym__dim_keyword] = ACTIONS(8479), + [sym__redim_keyword] = ACTIONS(8479), + [aux_sym_get_accessor_token1] = ACTIONS(8479), + [aux_sym_set_accessor_token1] = ACTIONS(8479), + [aux_sym_const_declaration_token1] = ACTIONS(8479), + [anon_sym_LPAREN] = ACTIONS(8481), + [aux_sym_as_type_clause_token2] = ACTIONS(8479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8479), + [aux_sym_visibility_token1] = ACTIONS(8479), + [aux_sym_visibility_token2] = ACTIONS(8479), + [aux_sym_elseif_fragment_token1] = ACTIONS(8479), + [aux_sym_else_fragment_token1] = ACTIONS(8479), + [aux_sym_select_statement_token1] = ACTIONS(8479), + [aux_sym_select_statement_token2] = ACTIONS(8479), + [aux_sym__for_header_token1] = ACTIONS(8479), + [aux_sym_do_statement_token1] = ACTIONS(8479), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8479), + [aux_sym_exit_statement_token1] = ACTIONS(8479), + [sym_end_statement] = ACTIONS(8481), + [aux_sym_on_goto_statement_token1] = ACTIONS(8479), + [aux_sym_on_goto_statement_token2] = ACTIONS(8479), + [aux_sym_on_error_statement_token2] = ACTIONS(8479), + [sym__ambiguous_redim_statement] = ACTIONS(8481), + [aux_sym_erase_statement_token1] = ACTIONS(8479), + [aux_sym_open_statement_token1] = ACTIONS(8479), + [aux_sym_file_mode_token2] = ACTIONS(8479), + [aux_sym_file_access_token2] = ACTIONS(8479), + [aux_sym_file_lock_token2] = ACTIONS(8479), + [aux_sym_print_statement_token1] = ACTIONS(8479), + [anon_sym_PLUS] = ACTIONS(8481), + [anon_sym_DASH] = ACTIONS(8479), + [anon_sym_QMARK] = ACTIONS(8481), + [aux_sym_close_statement_token1] = ACTIONS(8479), + [aux_sym_put_statement_token1] = ACTIONS(8479), + [aux_sym_unlock_statement_token1] = ACTIONS(8479), + [aux_sym_seek_statement_token1] = ACTIONS(8479), + [sym_reset_statement] = ACTIONS(8479), + [aux_sym_raise_event_statement_token1] = ACTIONS(8479), + [sym_stop_statement] = ACTIONS(8479), + [sym_beep_statement] = ACTIONS(8479), + [aux_sym_unload_statement_token1] = ACTIONS(8479), + [aux_sym_def_type_statement_token1] = ACTIONS(8479), + [aux_sym_def_type_statement_token2] = ACTIONS(8479), + [aux_sym_def_type_statement_token3] = ACTIONS(8479), + [aux_sym_def_type_statement_token4] = ACTIONS(8479), + [aux_sym_def_type_statement_token5] = ACTIONS(8479), + [aux_sym_def_type_statement_token6] = ACTIONS(8479), + [aux_sym_def_type_statement_token7] = ACTIONS(8479), + [aux_sym_def_type_statement_token8] = ACTIONS(8479), + [aux_sym_def_type_statement_token9] = ACTIONS(8479), + [aux_sym_def_type_statement_token10] = ACTIONS(8479), + [aux_sym_def_type_statement_token11] = ACTIONS(8479), + [aux_sym_def_type_statement_token12] = ACTIONS(8479), + [aux_sym_def_type_statement_token13] = ACTIONS(8479), + [aux_sym_def_type_statement_token14] = ACTIONS(8479), + [aux_sym_call_statement_token1] = ACTIONS(8479), + [sym__ambiguous_call_statement] = ACTIONS(8479), + [aux_sym_addressof_expression_token1] = ACTIONS(8479), + [aux_sym_type_of_expression_token1] = ACTIONS(8479), + [aux_sym_unary_expression_token1] = ACTIONS(8479), + [sym_string_literal] = ACTIONS(8481), + [sym_number_literal] = ACTIONS(8481), + [aux_sym_boolean_literal_token1] = ACTIONS(8479), + [aux_sym_boolean_literal_token2] = ACTIONS(8479), + [sym_nothing_literal] = ACTIONS(8479), + [sym_null_literal] = ACTIONS(8479), + [sym_empty_literal] = ACTIONS(8479), + [sym_date_literal] = ACTIONS(8481), + [anon_sym_POUND] = ACTIONS(8479), + }, + [STATE(5372)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5289), + [sym_identifier] = ACTIONS(8483), + [sym_newline] = ACTIONS(8485), + [anon_sym_COLON] = ACTIONS(8485), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8483), + [aux_sym_frm_property_statement_token1] = ACTIONS(8483), + [anon_sym_DOT] = ACTIONS(8483), + [anon_sym_BANG] = ACTIONS(8485), + [aux_sym__attribute_identifier_token1] = ACTIONS(8483), + [aux_sym_option_statement_token3] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8483), + [aux_sym_preprocessor_const_token1] = ACTIONS(8483), + [sym_static_modifier] = ACTIONS(8483), + [sym__dim_keyword] = ACTIONS(8483), + [sym__redim_keyword] = ACTIONS(8483), + [aux_sym_get_accessor_token1] = ACTIONS(8483), + [aux_sym_set_accessor_token1] = ACTIONS(8483), + [anon_sym_COMMA] = ACTIONS(5158), + [aux_sym_const_declaration_token1] = ACTIONS(8483), + [anon_sym_LPAREN] = ACTIONS(8485), + [aux_sym_as_type_clause_token2] = ACTIONS(8483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8483), + [aux_sym_visibility_token1] = ACTIONS(8483), + [aux_sym_visibility_token2] = ACTIONS(8483), + [aux_sym_elseif_fragment_token1] = ACTIONS(8483), + [aux_sym_else_fragment_token1] = ACTIONS(8483), + [aux_sym_select_statement_token1] = ACTIONS(8483), + [aux_sym_select_statement_token2] = ACTIONS(8483), + [aux_sym__for_header_token1] = ACTIONS(8483), + [aux_sym_do_statement_token1] = ACTIONS(8483), + [aux_sym_do_condition_token1] = ACTIONS(8483), + [aux_sym_with_statement_token1] = ACTIONS(8483), + [aux_sym_exit_statement_token1] = ACTIONS(8483), + [sym_end_statement] = ACTIONS(8485), + [aux_sym_on_goto_statement_token1] = ACTIONS(8483), + [aux_sym_on_goto_statement_token2] = ACTIONS(8483), + [aux_sym_on_error_statement_token2] = ACTIONS(8483), + [sym__ambiguous_redim_statement] = ACTIONS(8485), + [aux_sym_erase_statement_token1] = ACTIONS(8483), + [aux_sym_open_statement_token1] = ACTIONS(8483), + [aux_sym_file_mode_token2] = ACTIONS(8483), + [aux_sym_file_access_token2] = ACTIONS(8483), + [aux_sym_file_lock_token2] = ACTIONS(8483), + [aux_sym_print_statement_token1] = ACTIONS(8483), + [anon_sym_PLUS] = ACTIONS(8485), + [anon_sym_DASH] = ACTIONS(8483), + [anon_sym_QMARK] = ACTIONS(8485), + [aux_sym_close_statement_token1] = ACTIONS(8483), + [aux_sym_put_statement_token1] = ACTIONS(8483), + [aux_sym_unlock_statement_token1] = ACTIONS(8483), + [aux_sym_seek_statement_token1] = ACTIONS(8483), + [sym_reset_statement] = ACTIONS(8483), + [aux_sym_raise_event_statement_token1] = ACTIONS(8483), + [sym_stop_statement] = ACTIONS(8483), + [sym_beep_statement] = ACTIONS(8483), + [aux_sym_unload_statement_token1] = ACTIONS(8483), + [aux_sym_def_type_statement_token1] = ACTIONS(8483), + [aux_sym_def_type_statement_token2] = ACTIONS(8483), + [aux_sym_def_type_statement_token3] = ACTIONS(8483), + [aux_sym_def_type_statement_token4] = ACTIONS(8483), + [aux_sym_def_type_statement_token5] = ACTIONS(8483), + [aux_sym_def_type_statement_token6] = ACTIONS(8483), + [aux_sym_def_type_statement_token7] = ACTIONS(8483), + [aux_sym_def_type_statement_token8] = ACTIONS(8483), + [aux_sym_def_type_statement_token9] = ACTIONS(8483), + [aux_sym_def_type_statement_token10] = ACTIONS(8483), + [aux_sym_def_type_statement_token11] = ACTIONS(8483), + [aux_sym_def_type_statement_token12] = ACTIONS(8483), + [aux_sym_def_type_statement_token13] = ACTIONS(8483), + [aux_sym_def_type_statement_token14] = ACTIONS(8483), + [aux_sym_call_statement_token1] = ACTIONS(8483), + [sym__ambiguous_call_statement] = ACTIONS(8483), + [aux_sym_addressof_expression_token1] = ACTIONS(8483), + [aux_sym_type_of_expression_token1] = ACTIONS(8483), + [aux_sym_unary_expression_token1] = ACTIONS(8483), + [sym_string_literal] = ACTIONS(8485), + [sym_number_literal] = ACTIONS(8485), + [aux_sym_boolean_literal_token1] = ACTIONS(8483), + [aux_sym_boolean_literal_token2] = ACTIONS(8483), + [sym_nothing_literal] = ACTIONS(8483), + [sym_null_literal] = ACTIONS(8483), + [sym_empty_literal] = ACTIONS(8483), + [sym_date_literal] = ACTIONS(8485), + [anon_sym_POUND] = ACTIONS(8483), + }, + [STATE(5373)] = { + [sym_identifier] = ACTIONS(8620), + [sym_newline] = ACTIONS(8622), + [anon_sym_COLON] = ACTIONS(8622), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8620), + [aux_sym_frm_property_statement_token1] = ACTIONS(8620), + [anon_sym_EQ] = ACTIONS(8622), + [anon_sym_DOT] = ACTIONS(8620), + [anon_sym_BANG] = ACTIONS(8622), + [aux_sym__attribute_identifier_token1] = ACTIONS(8620), + [aux_sym_option_statement_token3] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8620), + [aux_sym_preprocessor_const_token1] = ACTIONS(8620), + [sym_static_modifier] = ACTIONS(8620), + [sym__dim_keyword] = ACTIONS(8620), + [sym__redim_keyword] = ACTIONS(8620), + [aux_sym_get_accessor_token1] = ACTIONS(8620), + [aux_sym_set_accessor_token1] = ACTIONS(8620), + [anon_sym_COMMA] = ACTIONS(8622), + [aux_sym_const_declaration_token1] = ACTIONS(8620), + [anon_sym_LPAREN] = ACTIONS(8622), + [aux_sym_as_type_clause_token2] = ACTIONS(8620), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8620), + [aux_sym_visibility_token1] = ACTIONS(8620), + [aux_sym_visibility_token2] = ACTIONS(8620), + [aux_sym_elseif_fragment_token1] = ACTIONS(8620), + [aux_sym_else_fragment_token1] = ACTIONS(8620), + [aux_sym_select_statement_token1] = ACTIONS(8620), + [aux_sym_select_statement_token2] = ACTIONS(8620), + [aux_sym__for_header_token1] = ACTIONS(8620), + [aux_sym_do_statement_token1] = ACTIONS(8620), + [aux_sym_do_condition_token1] = ACTIONS(8620), + [aux_sym_with_statement_token1] = ACTIONS(8620), + [aux_sym_exit_statement_token1] = ACTIONS(8620), + [sym_end_statement] = ACTIONS(8622), + [aux_sym_on_goto_statement_token1] = ACTIONS(8620), + [aux_sym_on_goto_statement_token2] = ACTIONS(8620), + [aux_sym_on_error_statement_token2] = ACTIONS(8620), + [sym__ambiguous_redim_statement] = ACTIONS(8622), + [aux_sym_erase_statement_token1] = ACTIONS(8620), + [aux_sym_open_statement_token1] = ACTIONS(8620), + [aux_sym_file_mode_token2] = ACTIONS(8620), + [aux_sym_file_access_token2] = ACTIONS(8620), + [aux_sym_file_lock_token2] = ACTIONS(8620), + [aux_sym_print_statement_token1] = ACTIONS(8620), + [anon_sym_PLUS] = ACTIONS(8622), + [anon_sym_DASH] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(8622), + [aux_sym_close_statement_token1] = ACTIONS(8620), + [aux_sym_put_statement_token1] = ACTIONS(8620), + [aux_sym_unlock_statement_token1] = ACTIONS(8620), + [aux_sym_seek_statement_token1] = ACTIONS(8620), + [sym_reset_statement] = ACTIONS(8620), + [aux_sym_raise_event_statement_token1] = ACTIONS(8620), + [sym_stop_statement] = ACTIONS(8620), + [sym_beep_statement] = ACTIONS(8620), + [aux_sym_unload_statement_token1] = ACTIONS(8620), + [aux_sym_def_type_statement_token1] = ACTIONS(8620), + [aux_sym_def_type_statement_token2] = ACTIONS(8620), + [aux_sym_def_type_statement_token3] = ACTIONS(8620), + [aux_sym_def_type_statement_token4] = ACTIONS(8620), + [aux_sym_def_type_statement_token5] = ACTIONS(8620), + [aux_sym_def_type_statement_token6] = ACTIONS(8620), + [aux_sym_def_type_statement_token7] = ACTIONS(8620), + [aux_sym_def_type_statement_token8] = ACTIONS(8620), + [aux_sym_def_type_statement_token9] = ACTIONS(8620), + [aux_sym_def_type_statement_token10] = ACTIONS(8620), + [aux_sym_def_type_statement_token11] = ACTIONS(8620), + [aux_sym_def_type_statement_token12] = ACTIONS(8620), + [aux_sym_def_type_statement_token13] = ACTIONS(8620), + [aux_sym_def_type_statement_token14] = ACTIONS(8620), + [aux_sym_call_statement_token1] = ACTIONS(8620), + [sym__ambiguous_call_statement] = ACTIONS(8620), + [aux_sym_addressof_expression_token1] = ACTIONS(8620), + [aux_sym_type_of_expression_token1] = ACTIONS(8620), + [aux_sym_unary_expression_token1] = ACTIONS(8620), + [sym_string_literal] = ACTIONS(8622), + [sym_number_literal] = ACTIONS(8622), + [aux_sym_boolean_literal_token1] = ACTIONS(8620), + [aux_sym_boolean_literal_token2] = ACTIONS(8620), + [sym_nothing_literal] = ACTIONS(8620), + [sym_null_literal] = ACTIONS(8620), + [sym_empty_literal] = ACTIONS(8620), + [sym_date_literal] = ACTIONS(8622), + [anon_sym_POUND] = ACTIONS(8620), + }, + [STATE(5374)] = { + [sym_do_condition] = STATE(6867), + [sym_identifier] = ACTIONS(8517), + [sym_newline] = ACTIONS(8519), + [anon_sym_COLON] = ACTIONS(8519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8517), + [aux_sym_frm_property_statement_token1] = ACTIONS(8517), + [anon_sym_DOT] = ACTIONS(8517), + [anon_sym_BANG] = ACTIONS(8519), + [aux_sym__attribute_identifier_token1] = ACTIONS(8517), + [aux_sym_option_statement_token3] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8517), + [aux_sym_preprocessor_const_token1] = ACTIONS(8517), + [sym_static_modifier] = ACTIONS(8517), + [sym__dim_keyword] = ACTIONS(8517), + [sym__redim_keyword] = ACTIONS(8517), + [aux_sym_get_accessor_token1] = ACTIONS(8517), + [aux_sym_set_accessor_token1] = ACTIONS(8517), + [aux_sym_const_declaration_token1] = ACTIONS(8517), + [anon_sym_LPAREN] = ACTIONS(8519), + [aux_sym_as_type_clause_token2] = ACTIONS(8517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8517), + [aux_sym_visibility_token1] = ACTIONS(8517), + [aux_sym_visibility_token2] = ACTIONS(8517), + [aux_sym_elseif_fragment_token1] = ACTIONS(8517), + [aux_sym_else_fragment_token1] = ACTIONS(8517), + [aux_sym_select_statement_token1] = ACTIONS(8517), + [aux_sym_select_statement_token2] = ACTIONS(8517), + [aux_sym__for_header_token1] = ACTIONS(8517), + [aux_sym_do_statement_token1] = ACTIONS(8517), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8517), + [aux_sym_exit_statement_token1] = ACTIONS(8517), + [sym_end_statement] = ACTIONS(8519), + [aux_sym_on_goto_statement_token1] = ACTIONS(8517), + [aux_sym_on_goto_statement_token2] = ACTIONS(8517), + [aux_sym_on_error_statement_token2] = ACTIONS(8517), + [sym__ambiguous_redim_statement] = ACTIONS(8519), + [aux_sym_erase_statement_token1] = ACTIONS(8517), + [aux_sym_open_statement_token1] = ACTIONS(8517), + [aux_sym_file_mode_token2] = ACTIONS(8517), + [aux_sym_file_access_token2] = ACTIONS(8517), + [aux_sym_file_lock_token2] = ACTIONS(8517), + [aux_sym_print_statement_token1] = ACTIONS(8517), + [anon_sym_PLUS] = ACTIONS(8519), + [anon_sym_DASH] = ACTIONS(8517), + [anon_sym_QMARK] = ACTIONS(8519), + [aux_sym_close_statement_token1] = ACTIONS(8517), + [aux_sym_put_statement_token1] = ACTIONS(8517), + [aux_sym_unlock_statement_token1] = ACTIONS(8517), + [aux_sym_seek_statement_token1] = ACTIONS(8517), + [sym_reset_statement] = ACTIONS(8517), + [aux_sym_raise_event_statement_token1] = ACTIONS(8517), + [sym_stop_statement] = ACTIONS(8517), + [sym_beep_statement] = ACTIONS(8517), + [aux_sym_unload_statement_token1] = ACTIONS(8517), + [aux_sym_def_type_statement_token1] = ACTIONS(8517), + [aux_sym_def_type_statement_token2] = ACTIONS(8517), + [aux_sym_def_type_statement_token3] = ACTIONS(8517), + [aux_sym_def_type_statement_token4] = ACTIONS(8517), + [aux_sym_def_type_statement_token5] = ACTIONS(8517), + [aux_sym_def_type_statement_token6] = ACTIONS(8517), + [aux_sym_def_type_statement_token7] = ACTIONS(8517), + [aux_sym_def_type_statement_token8] = ACTIONS(8517), + [aux_sym_def_type_statement_token9] = ACTIONS(8517), + [aux_sym_def_type_statement_token10] = ACTIONS(8517), + [aux_sym_def_type_statement_token11] = ACTIONS(8517), + [aux_sym_def_type_statement_token12] = ACTIONS(8517), + [aux_sym_def_type_statement_token13] = ACTIONS(8517), + [aux_sym_def_type_statement_token14] = ACTIONS(8517), + [aux_sym_call_statement_token1] = ACTIONS(8517), + [sym__ambiguous_call_statement] = ACTIONS(8517), + [aux_sym_addressof_expression_token1] = ACTIONS(8517), + [aux_sym_type_of_expression_token1] = ACTIONS(8517), + [aux_sym_unary_expression_token1] = ACTIONS(8517), + [sym_string_literal] = ACTIONS(8519), + [sym_number_literal] = ACTIONS(8519), + [aux_sym_boolean_literal_token1] = ACTIONS(8517), + [aux_sym_boolean_literal_token2] = ACTIONS(8517), + [sym_nothing_literal] = ACTIONS(8517), + [sym_null_literal] = ACTIONS(8517), + [sym_empty_literal] = ACTIONS(8517), + [sym_date_literal] = ACTIONS(8519), + [anon_sym_POUND] = ACTIONS(8517), + }, + [STATE(5375)] = { + [sym_identifier] = ACTIONS(3996), + [sym_newline] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3996), + [aux_sym_frm_property_statement_token1] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3994), + [aux_sym__attribute_identifier_token1] = ACTIONS(3996), + [aux_sym_option_statement_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3996), + [aux_sym_preprocessor_const_token1] = ACTIONS(3996), + [sym_static_modifier] = ACTIONS(3996), + [sym__dim_keyword] = ACTIONS(3996), + [sym__redim_keyword] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3996), + [aux_sym_set_accessor_token1] = ACTIONS(3996), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3994), + [aux_sym_as_type_clause_token2] = ACTIONS(3996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3996), + [aux_sym_visibility_token1] = ACTIONS(3996), + [aux_sym_visibility_token2] = ACTIONS(3996), + [aux_sym_elseif_fragment_token1] = ACTIONS(3996), + [aux_sym_else_fragment_token1] = ACTIONS(3996), + [aux_sym_select_statement_token1] = ACTIONS(3996), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3996), + [aux_sym__for_header_token1] = ACTIONS(3996), + [aux_sym_do_statement_token1] = ACTIONS(3996), + [aux_sym_do_statement_token2] = ACTIONS(3996), + [aux_sym_do_condition_token1] = ACTIONS(3996), + [aux_sym_with_statement_token1] = ACTIONS(3996), + [aux_sym_exit_statement_token1] = ACTIONS(3996), + [sym_end_statement] = ACTIONS(3994), + [aux_sym_on_goto_statement_token1] = ACTIONS(3996), + [aux_sym_on_goto_statement_token2] = ACTIONS(3996), + [aux_sym_on_error_statement_token2] = ACTIONS(3996), + [sym__ambiguous_redim_statement] = ACTIONS(3994), + [aux_sym_erase_statement_token1] = ACTIONS(3996), + [aux_sym_open_statement_token1] = ACTIONS(3996), + [aux_sym_file_mode_token2] = ACTIONS(3996), + [aux_sym_file_access_token2] = ACTIONS(3996), + [aux_sym_file_lock_token2] = ACTIONS(3996), + [aux_sym_print_statement_token1] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3994), + [aux_sym_close_statement_token1] = ACTIONS(3996), + [aux_sym_put_statement_token1] = ACTIONS(3996), + [aux_sym_unlock_statement_token1] = ACTIONS(3996), + [aux_sym_seek_statement_token1] = ACTIONS(3996), + [sym_reset_statement] = ACTIONS(3996), + [aux_sym_raise_event_statement_token1] = ACTIONS(3996), + [sym_stop_statement] = ACTIONS(3996), + [sym_beep_statement] = ACTIONS(3996), + [aux_sym_unload_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token2] = ACTIONS(3996), + [aux_sym_def_type_statement_token3] = ACTIONS(3996), + [aux_sym_def_type_statement_token4] = ACTIONS(3996), + [aux_sym_def_type_statement_token5] = ACTIONS(3996), + [aux_sym_def_type_statement_token6] = ACTIONS(3996), + [aux_sym_def_type_statement_token7] = ACTIONS(3996), + [aux_sym_def_type_statement_token8] = ACTIONS(3996), + [aux_sym_def_type_statement_token9] = ACTIONS(3996), + [aux_sym_def_type_statement_token10] = ACTIONS(3996), + [aux_sym_def_type_statement_token11] = ACTIONS(3996), + [aux_sym_def_type_statement_token12] = ACTIONS(3996), + [aux_sym_def_type_statement_token13] = ACTIONS(3996), + [aux_sym_def_type_statement_token14] = ACTIONS(3996), + [aux_sym_call_statement_token1] = ACTIONS(3996), + [sym__ambiguous_call_statement] = ACTIONS(3996), + [aux_sym_addressof_expression_token1] = ACTIONS(3996), + [aux_sym_type_of_expression_token1] = ACTIONS(3996), + [aux_sym_unary_expression_token1] = ACTIONS(3996), + [sym_string_literal] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3994), + [aux_sym_boolean_literal_token1] = ACTIONS(3996), + [aux_sym_boolean_literal_token2] = ACTIONS(3996), + [sym_nothing_literal] = ACTIONS(3996), + [sym_null_literal] = ACTIONS(3996), + [sym_empty_literal] = ACTIONS(3996), + [sym_date_literal] = ACTIONS(3994), + [anon_sym_POUND] = ACTIONS(3996), + }, + [STATE(5376)] = { + [sym_identifier] = ACTIONS(6617), + [sym_newline] = ACTIONS(6619), + [anon_sym_COLON] = ACTIONS(6619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6617), + [aux_sym_frm_property_statement_token1] = ACTIONS(6617), + [anon_sym_DOT] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(6619), + [aux_sym__attribute_identifier_token1] = ACTIONS(6617), + [aux_sym_option_statement_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6617), + [aux_sym_preprocessor_const_token1] = ACTIONS(6617), + [sym_static_modifier] = ACTIONS(6617), + [sym__dim_keyword] = ACTIONS(6617), + [sym__redim_keyword] = ACTIONS(6617), + [aux_sym_get_accessor_token1] = ACTIONS(6617), + [aux_sym_set_accessor_token1] = ACTIONS(6617), + [aux_sym_const_declaration_token1] = ACTIONS(6617), + [anon_sym_LPAREN] = ACTIONS(6619), + [aux_sym_as_type_clause_token2] = ACTIONS(6617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6617), + [aux_sym_visibility_token1] = ACTIONS(6617), + [aux_sym_visibility_token2] = ACTIONS(6617), + [aux_sym_elseif_fragment_token1] = ACTIONS(6617), + [aux_sym_else_fragment_token1] = ACTIONS(6617), + [aux_sym_select_statement_token1] = ACTIONS(6617), + [aux_sym__for_header_token1] = ACTIONS(6617), + [aux_sym_do_statement_token1] = ACTIONS(6617), + [aux_sym_do_statement_token2] = ACTIONS(6617), + [aux_sym_do_condition_token1] = ACTIONS(6617), + [aux_sym_with_statement_token1] = ACTIONS(6617), + [aux_sym_exit_statement_token1] = ACTIONS(6617), + [sym_end_statement] = ACTIONS(6619), + [aux_sym_on_goto_statement_token1] = ACTIONS(6617), + [aux_sym_on_goto_statement_token2] = ACTIONS(6617), + [aux_sym_on_error_statement_token2] = ACTIONS(6617), + [sym__ambiguous_redim_statement] = ACTIONS(6619), + [aux_sym_erase_statement_token1] = ACTIONS(6617), + [aux_sym_open_statement_token1] = ACTIONS(6617), + [aux_sym_file_mode_token2] = ACTIONS(6617), + [aux_sym_file_access_token2] = ACTIONS(6617), + [aux_sym_file_lock_token2] = ACTIONS(6617), + [aux_sym_print_statement_token1] = ACTIONS(6617), + [anon_sym_PLUS] = ACTIONS(6619), + [anon_sym_DASH] = ACTIONS(6617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10144), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10146), + [anon_sym_QMARK] = ACTIONS(6619), + [aux_sym_close_statement_token1] = ACTIONS(6617), + [aux_sym_put_statement_token1] = ACTIONS(6617), + [aux_sym_unlock_statement_token1] = ACTIONS(6617), + [aux_sym_seek_statement_token1] = ACTIONS(6617), + [sym_reset_statement] = ACTIONS(6617), + [aux_sym_raise_event_statement_token1] = ACTIONS(6617), + [sym_stop_statement] = ACTIONS(6617), + [sym_beep_statement] = ACTIONS(6617), + [aux_sym_unload_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token2] = ACTIONS(6617), + [aux_sym_def_type_statement_token3] = ACTIONS(6617), + [aux_sym_def_type_statement_token4] = ACTIONS(6617), + [aux_sym_def_type_statement_token5] = ACTIONS(6617), + [aux_sym_def_type_statement_token6] = ACTIONS(6617), + [aux_sym_def_type_statement_token7] = ACTIONS(6617), + [aux_sym_def_type_statement_token8] = ACTIONS(6617), + [aux_sym_def_type_statement_token9] = ACTIONS(6617), + [aux_sym_def_type_statement_token10] = ACTIONS(6617), + [aux_sym_def_type_statement_token11] = ACTIONS(6617), + [aux_sym_def_type_statement_token12] = ACTIONS(6617), + [aux_sym_def_type_statement_token13] = ACTIONS(6617), + [aux_sym_def_type_statement_token14] = ACTIONS(6617), + [aux_sym_call_statement_token1] = ACTIONS(6617), + [sym__ambiguous_call_statement] = ACTIONS(6617), + [aux_sym_addressof_expression_token1] = ACTIONS(6617), + [aux_sym_type_of_expression_token1] = ACTIONS(6617), + [aux_sym_unary_expression_token1] = ACTIONS(6617), + [sym_string_literal] = ACTIONS(6619), + [sym_number_literal] = ACTIONS(6619), + [aux_sym_boolean_literal_token1] = ACTIONS(6617), + [aux_sym_boolean_literal_token2] = ACTIONS(6617), + [sym_nothing_literal] = ACTIONS(6617), + [sym_null_literal] = ACTIONS(6617), + [sym_empty_literal] = ACTIONS(6617), + [sym_date_literal] = ACTIONS(6619), + [anon_sym_POUND] = ACTIONS(6617), + }, + [STATE(5377)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5220), + [sym_identifier] = ACTIONS(8495), + [sym_newline] = ACTIONS(8497), + [anon_sym_COLON] = ACTIONS(8497), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8495), + [aux_sym_frm_property_statement_token1] = ACTIONS(8495), + [anon_sym_DOT] = ACTIONS(8495), + [anon_sym_BANG] = ACTIONS(8497), + [aux_sym__attribute_identifier_token1] = ACTIONS(8495), + [aux_sym_option_statement_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8495), + [aux_sym_preprocessor_const_token1] = ACTIONS(8495), + [sym_static_modifier] = ACTIONS(8495), + [sym__dim_keyword] = ACTIONS(8495), + [sym__redim_keyword] = ACTIONS(8495), + [aux_sym_get_accessor_token1] = ACTIONS(8495), + [aux_sym_set_accessor_token1] = ACTIONS(8495), + [anon_sym_COMMA] = ACTIONS(5156), + [aux_sym_const_declaration_token1] = ACTIONS(8495), + [anon_sym_LPAREN] = ACTIONS(8497), + [aux_sym_as_type_clause_token2] = ACTIONS(8495), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8495), + [aux_sym_visibility_token1] = ACTIONS(8495), + [aux_sym_visibility_token2] = ACTIONS(8495), + [aux_sym_elseif_fragment_token1] = ACTIONS(8495), + [aux_sym_else_fragment_token1] = ACTIONS(8495), + [aux_sym_select_statement_token1] = ACTIONS(8495), + [aux_sym__for_header_token1] = ACTIONS(8495), + [aux_sym_do_statement_token1] = ACTIONS(8495), + [aux_sym_do_statement_token2] = ACTIONS(8495), + [aux_sym_do_condition_token1] = ACTIONS(8495), + [aux_sym_with_statement_token1] = ACTIONS(8495), + [aux_sym_exit_statement_token1] = ACTIONS(8495), + [sym_end_statement] = ACTIONS(8497), + [aux_sym_on_goto_statement_token1] = ACTIONS(8495), + [aux_sym_on_goto_statement_token2] = ACTIONS(8495), + [aux_sym_on_error_statement_token2] = ACTIONS(8495), + [sym__ambiguous_redim_statement] = ACTIONS(8497), + [aux_sym_erase_statement_token1] = ACTIONS(8495), + [aux_sym_open_statement_token1] = ACTIONS(8495), + [aux_sym_file_mode_token2] = ACTIONS(8495), + [aux_sym_file_access_token2] = ACTIONS(8495), + [aux_sym_file_lock_token2] = ACTIONS(8495), + [aux_sym_print_statement_token1] = ACTIONS(8495), + [anon_sym_PLUS] = ACTIONS(8497), + [anon_sym_DASH] = ACTIONS(8495), + [anon_sym_QMARK] = ACTIONS(8497), + [aux_sym_close_statement_token1] = ACTIONS(8495), + [aux_sym_put_statement_token1] = ACTIONS(8495), + [aux_sym_unlock_statement_token1] = ACTIONS(8495), + [aux_sym_seek_statement_token1] = ACTIONS(8495), + [sym_reset_statement] = ACTIONS(8495), + [aux_sym_raise_event_statement_token1] = ACTIONS(8495), + [sym_stop_statement] = ACTIONS(8495), + [sym_beep_statement] = ACTIONS(8495), + [aux_sym_unload_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token2] = ACTIONS(8495), + [aux_sym_def_type_statement_token3] = ACTIONS(8495), + [aux_sym_def_type_statement_token4] = ACTIONS(8495), + [aux_sym_def_type_statement_token5] = ACTIONS(8495), + [aux_sym_def_type_statement_token6] = ACTIONS(8495), + [aux_sym_def_type_statement_token7] = ACTIONS(8495), + [aux_sym_def_type_statement_token8] = ACTIONS(8495), + [aux_sym_def_type_statement_token9] = ACTIONS(8495), + [aux_sym_def_type_statement_token10] = ACTIONS(8495), + [aux_sym_def_type_statement_token11] = ACTIONS(8495), + [aux_sym_def_type_statement_token12] = ACTIONS(8495), + [aux_sym_def_type_statement_token13] = ACTIONS(8495), + [aux_sym_def_type_statement_token14] = ACTIONS(8495), + [aux_sym_call_statement_token1] = ACTIONS(8495), + [sym__ambiguous_call_statement] = ACTIONS(8495), + [aux_sym_addressof_expression_token1] = ACTIONS(8495), + [aux_sym_type_of_expression_token1] = ACTIONS(8495), + [aux_sym_unary_expression_token1] = ACTIONS(8495), + [sym_string_literal] = ACTIONS(8497), + [sym_number_literal] = ACTIONS(8497), + [aux_sym_boolean_literal_token1] = ACTIONS(8495), + [aux_sym_boolean_literal_token2] = ACTIONS(8495), + [sym_nothing_literal] = ACTIONS(8495), + [sym_null_literal] = ACTIONS(8495), + [sym_empty_literal] = ACTIONS(8495), + [sym_date_literal] = ACTIONS(8497), + [anon_sym_POUND] = ACTIONS(8495), + }, + [STATE(5378)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5416), + [sym_identifier] = ACTIONS(8495), + [sym_newline] = ACTIONS(8497), + [anon_sym_COLON] = ACTIONS(8497), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8495), + [aux_sym_frm_property_statement_token1] = ACTIONS(8495), + [anon_sym_DOT] = ACTIONS(8495), + [anon_sym_BANG] = ACTIONS(8497), + [aux_sym__attribute_identifier_token1] = ACTIONS(8495), + [aux_sym_option_statement_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8495), + [aux_sym_preprocessor_const_token1] = ACTIONS(8495), + [sym_static_modifier] = ACTIONS(8495), + [sym__dim_keyword] = ACTIONS(8495), + [sym__redim_keyword] = ACTIONS(8495), + [aux_sym_get_accessor_token1] = ACTIONS(8495), + [aux_sym_set_accessor_token1] = ACTIONS(8495), + [anon_sym_COMMA] = ACTIONS(5156), + [aux_sym_const_declaration_token1] = ACTIONS(8495), + [anon_sym_LPAREN] = ACTIONS(8497), + [aux_sym_as_type_clause_token2] = ACTIONS(8495), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8495), + [aux_sym_visibility_token1] = ACTIONS(8495), + [aux_sym_visibility_token2] = ACTIONS(8495), + [aux_sym_elseif_fragment_token1] = ACTIONS(8495), + [aux_sym_else_fragment_token1] = ACTIONS(8495), + [aux_sym_select_statement_token1] = ACTIONS(8495), + [aux_sym__for_header_token1] = ACTIONS(8495), + [aux_sym_do_statement_token1] = ACTIONS(8495), + [aux_sym_do_statement_token2] = ACTIONS(8495), + [aux_sym_do_condition_token1] = ACTIONS(8495), + [aux_sym_with_statement_token1] = ACTIONS(8495), + [aux_sym_exit_statement_token1] = ACTIONS(8495), + [sym_end_statement] = ACTIONS(8497), + [aux_sym_on_goto_statement_token1] = ACTIONS(8495), + [aux_sym_on_goto_statement_token2] = ACTIONS(8495), + [aux_sym_on_error_statement_token2] = ACTIONS(8495), + [sym__ambiguous_redim_statement] = ACTIONS(8497), + [aux_sym_erase_statement_token1] = ACTIONS(8495), + [aux_sym_open_statement_token1] = ACTIONS(8495), + [aux_sym_file_mode_token2] = ACTIONS(8495), + [aux_sym_file_access_token2] = ACTIONS(8495), + [aux_sym_file_lock_token2] = ACTIONS(8495), + [aux_sym_print_statement_token1] = ACTIONS(8495), + [anon_sym_PLUS] = ACTIONS(8497), + [anon_sym_DASH] = ACTIONS(8495), + [anon_sym_QMARK] = ACTIONS(8497), + [aux_sym_close_statement_token1] = ACTIONS(8495), + [aux_sym_put_statement_token1] = ACTIONS(8495), + [aux_sym_unlock_statement_token1] = ACTIONS(8495), + [aux_sym_seek_statement_token1] = ACTIONS(8495), + [sym_reset_statement] = ACTIONS(8495), + [aux_sym_raise_event_statement_token1] = ACTIONS(8495), + [sym_stop_statement] = ACTIONS(8495), + [sym_beep_statement] = ACTIONS(8495), + [aux_sym_unload_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token2] = ACTIONS(8495), + [aux_sym_def_type_statement_token3] = ACTIONS(8495), + [aux_sym_def_type_statement_token4] = ACTIONS(8495), + [aux_sym_def_type_statement_token5] = ACTIONS(8495), + [aux_sym_def_type_statement_token6] = ACTIONS(8495), + [aux_sym_def_type_statement_token7] = ACTIONS(8495), + [aux_sym_def_type_statement_token8] = ACTIONS(8495), + [aux_sym_def_type_statement_token9] = ACTIONS(8495), + [aux_sym_def_type_statement_token10] = ACTIONS(8495), + [aux_sym_def_type_statement_token11] = ACTIONS(8495), + [aux_sym_def_type_statement_token12] = ACTIONS(8495), + [aux_sym_def_type_statement_token13] = ACTIONS(8495), + [aux_sym_def_type_statement_token14] = ACTIONS(8495), + [aux_sym_call_statement_token1] = ACTIONS(8495), + [sym__ambiguous_call_statement] = ACTIONS(8495), + [aux_sym_addressof_expression_token1] = ACTIONS(8495), + [aux_sym_type_of_expression_token1] = ACTIONS(8495), + [aux_sym_unary_expression_token1] = ACTIONS(8495), + [sym_string_literal] = ACTIONS(8497), + [sym_number_literal] = ACTIONS(8497), + [aux_sym_boolean_literal_token1] = ACTIONS(8495), + [aux_sym_boolean_literal_token2] = ACTIONS(8495), + [sym_nothing_literal] = ACTIONS(8495), + [sym_null_literal] = ACTIONS(8495), + [sym_empty_literal] = ACTIONS(8495), + [sym_date_literal] = ACTIONS(8497), + [anon_sym_POUND] = ACTIONS(8495), + }, + [STATE(5379)] = { + [aux_sym_def_type_statement_repeat1] = STATE(5379), + [sym_identifier] = ACTIONS(8357), + [sym_newline] = ACTIONS(8359), + [anon_sym_COLON] = ACTIONS(8359), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8357), + [aux_sym_frm_property_statement_token1] = ACTIONS(8357), + [anon_sym_DOT] = ACTIONS(8357), + [anon_sym_BANG] = ACTIONS(8359), + [aux_sym__attribute_identifier_token1] = ACTIONS(8357), + [aux_sym_option_statement_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8357), + [aux_sym_preprocessor_const_token1] = ACTIONS(8357), + [sym_static_modifier] = ACTIONS(8357), + [sym__dim_keyword] = ACTIONS(8357), + [sym__redim_keyword] = ACTIONS(8357), + [aux_sym_get_accessor_token1] = ACTIONS(8357), + [aux_sym_set_accessor_token1] = ACTIONS(8357), + [anon_sym_COMMA] = ACTIONS(10572), + [aux_sym_const_declaration_token1] = ACTIONS(8357), + [anon_sym_LPAREN] = ACTIONS(8359), + [aux_sym_as_type_clause_token2] = ACTIONS(8357), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8357), + [aux_sym_visibility_token1] = ACTIONS(8357), + [aux_sym_visibility_token2] = ACTIONS(8357), + [aux_sym_elseif_fragment_token1] = ACTIONS(8357), + [aux_sym_else_fragment_token1] = ACTIONS(8357), + [aux_sym_select_statement_token1] = ACTIONS(8357), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8357), + [aux_sym__for_header_token1] = ACTIONS(8357), + [aux_sym_do_statement_token1] = ACTIONS(8357), + [aux_sym_do_condition_token1] = ACTIONS(8357), + [aux_sym_with_statement_token1] = ACTIONS(8357), + [aux_sym_exit_statement_token1] = ACTIONS(8357), + [sym_end_statement] = ACTIONS(8359), + [aux_sym_on_goto_statement_token1] = ACTIONS(8357), + [aux_sym_on_goto_statement_token2] = ACTIONS(8357), + [aux_sym_on_error_statement_token2] = ACTIONS(8357), + [sym__ambiguous_redim_statement] = ACTIONS(8359), + [aux_sym_erase_statement_token1] = ACTIONS(8357), + [aux_sym_open_statement_token1] = ACTIONS(8357), + [aux_sym_file_mode_token2] = ACTIONS(8357), + [aux_sym_file_access_token2] = ACTIONS(8357), + [aux_sym_file_lock_token2] = ACTIONS(8357), + [aux_sym_print_statement_token1] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_QMARK] = ACTIONS(8359), + [aux_sym_close_statement_token1] = ACTIONS(8357), + [aux_sym_put_statement_token1] = ACTIONS(8357), + [aux_sym_unlock_statement_token1] = ACTIONS(8357), + [aux_sym_seek_statement_token1] = ACTIONS(8357), + [sym_reset_statement] = ACTIONS(8357), + [aux_sym_raise_event_statement_token1] = ACTIONS(8357), + [sym_stop_statement] = ACTIONS(8357), + [sym_beep_statement] = ACTIONS(8357), + [aux_sym_unload_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token2] = ACTIONS(8357), + [aux_sym_def_type_statement_token3] = ACTIONS(8357), + [aux_sym_def_type_statement_token4] = ACTIONS(8357), + [aux_sym_def_type_statement_token5] = ACTIONS(8357), + [aux_sym_def_type_statement_token6] = ACTIONS(8357), + [aux_sym_def_type_statement_token7] = ACTIONS(8357), + [aux_sym_def_type_statement_token8] = ACTIONS(8357), + [aux_sym_def_type_statement_token9] = ACTIONS(8357), + [aux_sym_def_type_statement_token10] = ACTIONS(8357), + [aux_sym_def_type_statement_token11] = ACTIONS(8357), + [aux_sym_def_type_statement_token12] = ACTIONS(8357), + [aux_sym_def_type_statement_token13] = ACTIONS(8357), + [aux_sym_def_type_statement_token14] = ACTIONS(8357), + [aux_sym_call_statement_token1] = ACTIONS(8357), + [sym__ambiguous_call_statement] = ACTIONS(8357), + [aux_sym_addressof_expression_token1] = ACTIONS(8357), + [aux_sym_type_of_expression_token1] = ACTIONS(8357), + [aux_sym_unary_expression_token1] = ACTIONS(8357), + [sym_string_literal] = ACTIONS(8359), + [sym_number_literal] = ACTIONS(8359), + [aux_sym_boolean_literal_token1] = ACTIONS(8357), + [aux_sym_boolean_literal_token2] = ACTIONS(8357), + [sym_nothing_literal] = ACTIONS(8357), + [sym_null_literal] = ACTIONS(8357), + [sym_empty_literal] = ACTIONS(8357), + [sym_date_literal] = ACTIONS(8359), + [anon_sym_POUND] = ACTIONS(8357), + }, + [STATE(5380)] = { + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(5221), + [sym_identifier] = ACTIONS(8549), + [sym_newline] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8549), + [aux_sym_frm_property_statement_token1] = ACTIONS(8549), + [anon_sym_DOT] = ACTIONS(8549), + [anon_sym_BANG] = ACTIONS(8551), + [aux_sym__attribute_identifier_token1] = ACTIONS(8549), + [aux_sym_option_statement_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8549), + [aux_sym_preprocessor_const_token1] = ACTIONS(8549), + [sym_static_modifier] = ACTIONS(8549), + [sym__dim_keyword] = ACTIONS(8549), + [sym__redim_keyword] = ACTIONS(8549), + [aux_sym_get_accessor_token1] = ACTIONS(8549), + [aux_sym_set_accessor_token1] = ACTIONS(8549), + [aux_sym_const_declaration_token1] = ACTIONS(8549), + [anon_sym_LPAREN] = ACTIONS(8551), + [aux_sym_as_type_clause_token2] = ACTIONS(8549), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8549), + [aux_sym_visibility_token1] = ACTIONS(8549), + [aux_sym_visibility_token2] = ACTIONS(8549), + [aux_sym_elseif_fragment_token1] = ACTIONS(8549), + [aux_sym_else_fragment_token1] = ACTIONS(8549), + [aux_sym_select_statement_token1] = ACTIONS(8549), + [aux_sym__for_header_token1] = ACTIONS(8549), + [aux_sym_do_statement_token1] = ACTIONS(8549), + [aux_sym_do_statement_token2] = ACTIONS(8549), + [aux_sym_do_condition_token1] = ACTIONS(8549), + [aux_sym_with_statement_token1] = ACTIONS(8549), + [aux_sym_exit_statement_token1] = ACTIONS(8549), + [sym_end_statement] = ACTIONS(8551), + [aux_sym_on_goto_statement_token1] = ACTIONS(8549), + [aux_sym_on_goto_statement_token2] = ACTIONS(8549), + [aux_sym_on_error_statement_token2] = ACTIONS(8549), + [sym__ambiguous_redim_statement] = ACTIONS(8551), + [aux_sym_erase_statement_token1] = ACTIONS(8549), + [aux_sym_open_statement_token1] = ACTIONS(8549), + [aux_sym_file_mode_token2] = ACTIONS(8549), + [aux_sym_file_access_token2] = ACTIONS(8549), + [aux_sym_file_lock_token2] = ACTIONS(8549), + [aux_sym_print_statement_token1] = ACTIONS(8549), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_DASH] = ACTIONS(8549), + [anon_sym_SEMI] = ACTIONS(10276), + [anon_sym_QMARK] = ACTIONS(8551), + [aux_sym_close_statement_token1] = ACTIONS(8549), + [aux_sym_put_statement_token1] = ACTIONS(8549), + [aux_sym_unlock_statement_token1] = ACTIONS(8549), + [aux_sym_seek_statement_token1] = ACTIONS(8549), + [sym_reset_statement] = ACTIONS(8549), + [aux_sym_raise_event_statement_token1] = ACTIONS(8549), + [sym_stop_statement] = ACTIONS(8549), + [sym_beep_statement] = ACTIONS(8549), + [aux_sym_unload_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token2] = ACTIONS(8549), + [aux_sym_def_type_statement_token3] = ACTIONS(8549), + [aux_sym_def_type_statement_token4] = ACTIONS(8549), + [aux_sym_def_type_statement_token5] = ACTIONS(8549), + [aux_sym_def_type_statement_token6] = ACTIONS(8549), + [aux_sym_def_type_statement_token7] = ACTIONS(8549), + [aux_sym_def_type_statement_token8] = ACTIONS(8549), + [aux_sym_def_type_statement_token9] = ACTIONS(8549), + [aux_sym_def_type_statement_token10] = ACTIONS(8549), + [aux_sym_def_type_statement_token11] = ACTIONS(8549), + [aux_sym_def_type_statement_token12] = ACTIONS(8549), + [aux_sym_def_type_statement_token13] = ACTIONS(8549), + [aux_sym_def_type_statement_token14] = ACTIONS(8549), + [aux_sym_call_statement_token1] = ACTIONS(8549), + [sym__ambiguous_call_statement] = ACTIONS(8549), + [aux_sym_addressof_expression_token1] = ACTIONS(8549), + [aux_sym_type_of_expression_token1] = ACTIONS(8549), + [aux_sym_unary_expression_token1] = ACTIONS(8549), + [sym_string_literal] = ACTIONS(8551), + [sym_number_literal] = ACTIONS(8551), + [aux_sym_boolean_literal_token1] = ACTIONS(8549), + [aux_sym_boolean_literal_token2] = ACTIONS(8549), + [sym_nothing_literal] = ACTIONS(8549), + [sym_null_literal] = ACTIONS(8549), + [sym_empty_literal] = ACTIONS(8549), + [sym_date_literal] = ACTIONS(8551), + [anon_sym_POUND] = ACTIONS(8549), + }, + [STATE(5381)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5105), + [sym_identifier] = ACTIONS(8529), + [sym_newline] = ACTIONS(8531), + [anon_sym_COLON] = ACTIONS(8531), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8529), + [aux_sym_frm_property_statement_token1] = ACTIONS(8529), + [anon_sym_DOT] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(8531), + [aux_sym__attribute_identifier_token1] = ACTIONS(8529), + [aux_sym_option_statement_token3] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8529), + [aux_sym_preprocessor_const_token1] = ACTIONS(8529), + [sym_static_modifier] = ACTIONS(8529), + [sym__dim_keyword] = ACTIONS(8529), + [sym__redim_keyword] = ACTIONS(8529), + [aux_sym_get_accessor_token1] = ACTIONS(8529), + [aux_sym_set_accessor_token1] = ACTIONS(8529), + [anon_sym_COMMA] = ACTIONS(10439), + [aux_sym_const_declaration_token1] = ACTIONS(8529), + [anon_sym_LPAREN] = ACTIONS(8531), + [aux_sym_as_type_clause_token2] = ACTIONS(8529), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8529), + [aux_sym_visibility_token1] = ACTIONS(8529), + [aux_sym_visibility_token2] = ACTIONS(8529), + [aux_sym_elseif_fragment_token1] = ACTIONS(8529), + [aux_sym_else_fragment_token1] = ACTIONS(8529), + [aux_sym_select_statement_token1] = ACTIONS(8529), + [aux_sym__for_header_token1] = ACTIONS(8529), + [aux_sym_do_statement_token1] = ACTIONS(8529), + [aux_sym_do_condition_token1] = ACTIONS(8529), + [aux_sym_with_statement_token1] = ACTIONS(8529), + [aux_sym_exit_statement_token1] = ACTIONS(8529), + [sym_end_statement] = ACTIONS(8531), + [aux_sym_on_goto_statement_token1] = ACTIONS(8529), + [aux_sym_on_goto_statement_token2] = ACTIONS(8529), + [aux_sym_on_error_statement_token2] = ACTIONS(8529), + [sym__ambiguous_redim_statement] = ACTIONS(8531), + [aux_sym_erase_statement_token1] = ACTIONS(8529), + [aux_sym_open_statement_token1] = ACTIONS(8529), + [aux_sym_file_mode_token2] = ACTIONS(8529), + [aux_sym_file_access_token2] = ACTIONS(8529), + [aux_sym_file_lock_token2] = ACTIONS(8529), + [aux_sym_print_statement_token1] = ACTIONS(8529), + [anon_sym_PLUS] = ACTIONS(8531), + [anon_sym_DASH] = ACTIONS(8529), + [anon_sym_QMARK] = ACTIONS(8531), + [aux_sym_close_statement_token1] = ACTIONS(8529), + [aux_sym_put_statement_token1] = ACTIONS(8529), + [aux_sym_unlock_statement_token1] = ACTIONS(8529), + [aux_sym_seek_statement_token1] = ACTIONS(8529), + [sym_reset_statement] = ACTIONS(8529), + [aux_sym_raise_event_statement_token1] = ACTIONS(8529), + [sym_stop_statement] = ACTIONS(8529), + [sym_beep_statement] = ACTIONS(8529), + [aux_sym_unload_statement_token1] = ACTIONS(8529), + [aux_sym_def_type_statement_token1] = ACTIONS(8529), + [aux_sym_def_type_statement_token2] = ACTIONS(8529), + [aux_sym_def_type_statement_token3] = ACTIONS(8529), + [aux_sym_def_type_statement_token4] = ACTIONS(8529), + [aux_sym_def_type_statement_token5] = ACTIONS(8529), + [aux_sym_def_type_statement_token6] = ACTIONS(8529), + [aux_sym_def_type_statement_token7] = ACTIONS(8529), + [aux_sym_def_type_statement_token8] = ACTIONS(8529), + [aux_sym_def_type_statement_token9] = ACTIONS(8529), + [aux_sym_def_type_statement_token10] = ACTIONS(8529), + [aux_sym_def_type_statement_token11] = ACTIONS(8529), + [aux_sym_def_type_statement_token12] = ACTIONS(8529), + [aux_sym_def_type_statement_token13] = ACTIONS(8529), + [aux_sym_def_type_statement_token14] = ACTIONS(8529), + [aux_sym_call_statement_token1] = ACTIONS(8529), + [sym__ambiguous_call_statement] = ACTIONS(8529), + [aux_sym_addressof_expression_token1] = ACTIONS(8529), + [aux_sym_type_of_expression_token1] = ACTIONS(8529), + [aux_sym_unary_expression_token1] = ACTIONS(8529), + [sym_string_literal] = ACTIONS(8531), + [sym_number_literal] = ACTIONS(8531), + [aux_sym_boolean_literal_token1] = ACTIONS(8529), + [aux_sym_boolean_literal_token2] = ACTIONS(8529), + [sym_nothing_literal] = ACTIONS(8529), + [sym_null_literal] = ACTIONS(8529), + [sym_empty_literal] = ACTIONS(8529), + [sym_date_literal] = ACTIONS(8531), + [anon_sym_POUND] = ACTIONS(8529), + }, + [STATE(5382)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5415), + [sym_identifier] = ACTIONS(8565), + [sym_newline] = ACTIONS(8567), + [anon_sym_COLON] = ACTIONS(8567), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8565), + [aux_sym_frm_property_statement_token1] = ACTIONS(8565), + [anon_sym_DOT] = ACTIONS(8565), + [anon_sym_BANG] = ACTIONS(8567), + [aux_sym__attribute_identifier_token1] = ACTIONS(8565), + [aux_sym_option_statement_token3] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8565), + [aux_sym_preprocessor_const_token1] = ACTIONS(8565), + [sym_static_modifier] = ACTIONS(8565), + [sym__dim_keyword] = ACTIONS(8565), + [sym__redim_keyword] = ACTIONS(8565), + [aux_sym_get_accessor_token1] = ACTIONS(8565), + [aux_sym_set_accessor_token1] = ACTIONS(8565), + [anon_sym_COMMA] = ACTIONS(10469), + [aux_sym_const_declaration_token1] = ACTIONS(8565), + [anon_sym_LPAREN] = ACTIONS(8567), + [aux_sym_as_type_clause_token2] = ACTIONS(8565), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8565), + [aux_sym_visibility_token1] = ACTIONS(8565), + [aux_sym_visibility_token2] = ACTIONS(8565), + [aux_sym_elseif_fragment_token1] = ACTIONS(8565), + [aux_sym_else_fragment_token1] = ACTIONS(8565), + [aux_sym_select_statement_token1] = ACTIONS(8565), + [aux_sym_select_statement_token2] = ACTIONS(8565), + [aux_sym__for_header_token1] = ACTIONS(8565), + [aux_sym_do_statement_token1] = ACTIONS(8565), + [aux_sym_do_condition_token1] = ACTIONS(8565), + [aux_sym_with_statement_token1] = ACTIONS(8565), + [aux_sym_exit_statement_token1] = ACTIONS(8565), + [sym_end_statement] = ACTIONS(8567), + [aux_sym_on_goto_statement_token1] = ACTIONS(8565), + [aux_sym_on_goto_statement_token2] = ACTIONS(8565), + [aux_sym_on_error_statement_token2] = ACTIONS(8565), + [sym__ambiguous_redim_statement] = ACTIONS(8567), + [aux_sym_erase_statement_token1] = ACTIONS(8565), + [aux_sym_open_statement_token1] = ACTIONS(8565), + [aux_sym_file_mode_token2] = ACTIONS(8565), + [aux_sym_file_access_token2] = ACTIONS(8565), + [aux_sym_file_lock_token2] = ACTIONS(8565), + [aux_sym_print_statement_token1] = ACTIONS(8565), + [anon_sym_PLUS] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(8565), + [anon_sym_QMARK] = ACTIONS(8567), + [aux_sym_close_statement_token1] = ACTIONS(8565), + [aux_sym_put_statement_token1] = ACTIONS(8565), + [aux_sym_unlock_statement_token1] = ACTIONS(8565), + [aux_sym_seek_statement_token1] = ACTIONS(8565), + [sym_reset_statement] = ACTIONS(8565), + [aux_sym_raise_event_statement_token1] = ACTIONS(8565), + [sym_stop_statement] = ACTIONS(8565), + [sym_beep_statement] = ACTIONS(8565), + [aux_sym_unload_statement_token1] = ACTIONS(8565), + [aux_sym_def_type_statement_token1] = ACTIONS(8565), + [aux_sym_def_type_statement_token2] = ACTIONS(8565), + [aux_sym_def_type_statement_token3] = ACTIONS(8565), + [aux_sym_def_type_statement_token4] = ACTIONS(8565), + [aux_sym_def_type_statement_token5] = ACTIONS(8565), + [aux_sym_def_type_statement_token6] = ACTIONS(8565), + [aux_sym_def_type_statement_token7] = ACTIONS(8565), + [aux_sym_def_type_statement_token8] = ACTIONS(8565), + [aux_sym_def_type_statement_token9] = ACTIONS(8565), + [aux_sym_def_type_statement_token10] = ACTIONS(8565), + [aux_sym_def_type_statement_token11] = ACTIONS(8565), + [aux_sym_def_type_statement_token12] = ACTIONS(8565), + [aux_sym_def_type_statement_token13] = ACTIONS(8565), + [aux_sym_def_type_statement_token14] = ACTIONS(8565), + [aux_sym_call_statement_token1] = ACTIONS(8565), + [sym__ambiguous_call_statement] = ACTIONS(8565), + [aux_sym_addressof_expression_token1] = ACTIONS(8565), + [aux_sym_type_of_expression_token1] = ACTIONS(8565), + [aux_sym_unary_expression_token1] = ACTIONS(8565), + [sym_string_literal] = ACTIONS(8567), + [sym_number_literal] = ACTIONS(8567), + [aux_sym_boolean_literal_token1] = ACTIONS(8565), + [aux_sym_boolean_literal_token2] = ACTIONS(8565), + [sym_nothing_literal] = ACTIONS(8565), + [sym_null_literal] = ACTIONS(8565), + [sym_empty_literal] = ACTIONS(8565), + [sym_date_literal] = ACTIONS(8567), + [anon_sym_POUND] = ACTIONS(8565), + }, + [STATE(5383)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5420), + [sym_identifier] = ACTIONS(8569), + [sym_newline] = ACTIONS(8571), + [anon_sym_COLON] = ACTIONS(8571), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8569), + [aux_sym_frm_property_statement_token1] = ACTIONS(8569), + [anon_sym_DOT] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(8571), + [aux_sym__attribute_identifier_token1] = ACTIONS(8569), + [aux_sym_option_statement_token3] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8569), + [aux_sym_preprocessor_const_token1] = ACTIONS(8569), + [sym_static_modifier] = ACTIONS(8569), + [sym__dim_keyword] = ACTIONS(8569), + [sym__redim_keyword] = ACTIONS(8569), + [aux_sym_get_accessor_token1] = ACTIONS(8569), + [aux_sym_set_accessor_token1] = ACTIONS(8569), + [anon_sym_COMMA] = ACTIONS(10469), + [aux_sym_const_declaration_token1] = ACTIONS(8569), + [anon_sym_LPAREN] = ACTIONS(8571), + [aux_sym_as_type_clause_token2] = ACTIONS(8569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8569), + [aux_sym_visibility_token1] = ACTIONS(8569), + [aux_sym_visibility_token2] = ACTIONS(8569), + [aux_sym_elseif_fragment_token1] = ACTIONS(8569), + [aux_sym_else_fragment_token1] = ACTIONS(8569), + [aux_sym_select_statement_token1] = ACTIONS(8569), + [aux_sym_select_statement_token2] = ACTIONS(8569), + [aux_sym__for_header_token1] = ACTIONS(8569), + [aux_sym_do_statement_token1] = ACTIONS(8569), + [aux_sym_do_condition_token1] = ACTIONS(8569), + [aux_sym_with_statement_token1] = ACTIONS(8569), + [aux_sym_exit_statement_token1] = ACTIONS(8569), + [sym_end_statement] = ACTIONS(8571), + [aux_sym_on_goto_statement_token1] = ACTIONS(8569), + [aux_sym_on_goto_statement_token2] = ACTIONS(8569), + [aux_sym_on_error_statement_token2] = ACTIONS(8569), + [sym__ambiguous_redim_statement] = ACTIONS(8571), + [aux_sym_erase_statement_token1] = ACTIONS(8569), + [aux_sym_open_statement_token1] = ACTIONS(8569), + [aux_sym_file_mode_token2] = ACTIONS(8569), + [aux_sym_file_access_token2] = ACTIONS(8569), + [aux_sym_file_lock_token2] = ACTIONS(8569), + [aux_sym_print_statement_token1] = ACTIONS(8569), + [anon_sym_PLUS] = ACTIONS(8571), + [anon_sym_DASH] = ACTIONS(8569), + [anon_sym_QMARK] = ACTIONS(8571), + [aux_sym_close_statement_token1] = ACTIONS(8569), + [aux_sym_put_statement_token1] = ACTIONS(8569), + [aux_sym_unlock_statement_token1] = ACTIONS(8569), + [aux_sym_seek_statement_token1] = ACTIONS(8569), + [sym_reset_statement] = ACTIONS(8569), + [aux_sym_raise_event_statement_token1] = ACTIONS(8569), + [sym_stop_statement] = ACTIONS(8569), + [sym_beep_statement] = ACTIONS(8569), + [aux_sym_unload_statement_token1] = ACTIONS(8569), + [aux_sym_def_type_statement_token1] = ACTIONS(8569), + [aux_sym_def_type_statement_token2] = ACTIONS(8569), + [aux_sym_def_type_statement_token3] = ACTIONS(8569), + [aux_sym_def_type_statement_token4] = ACTIONS(8569), + [aux_sym_def_type_statement_token5] = ACTIONS(8569), + [aux_sym_def_type_statement_token6] = ACTIONS(8569), + [aux_sym_def_type_statement_token7] = ACTIONS(8569), + [aux_sym_def_type_statement_token8] = ACTIONS(8569), + [aux_sym_def_type_statement_token9] = ACTIONS(8569), + [aux_sym_def_type_statement_token10] = ACTIONS(8569), + [aux_sym_def_type_statement_token11] = ACTIONS(8569), + [aux_sym_def_type_statement_token12] = ACTIONS(8569), + [aux_sym_def_type_statement_token13] = ACTIONS(8569), + [aux_sym_def_type_statement_token14] = ACTIONS(8569), + [aux_sym_call_statement_token1] = ACTIONS(8569), + [sym__ambiguous_call_statement] = ACTIONS(8569), + [aux_sym_addressof_expression_token1] = ACTIONS(8569), + [aux_sym_type_of_expression_token1] = ACTIONS(8569), + [aux_sym_unary_expression_token1] = ACTIONS(8569), + [sym_string_literal] = ACTIONS(8571), + [sym_number_literal] = ACTIONS(8571), + [aux_sym_boolean_literal_token1] = ACTIONS(8569), + [aux_sym_boolean_literal_token2] = ACTIONS(8569), + [sym_nothing_literal] = ACTIONS(8569), + [sym_null_literal] = ACTIONS(8569), + [sym_empty_literal] = ACTIONS(8569), + [sym_date_literal] = ACTIONS(8571), + [anon_sym_POUND] = ACTIONS(8569), + }, + [STATE(5384)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5133), + [sym_identifier] = ACTIONS(8540), + [sym_newline] = ACTIONS(8542), + [anon_sym_COLON] = ACTIONS(8542), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8540), + [aux_sym_frm_property_statement_token1] = ACTIONS(8540), + [anon_sym_DOT] = ACTIONS(8540), + [anon_sym_BANG] = ACTIONS(8542), + [aux_sym__attribute_identifier_token1] = ACTIONS(8540), + [aux_sym_option_statement_token3] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8540), + [aux_sym_preprocessor_const_token1] = ACTIONS(8540), + [sym_static_modifier] = ACTIONS(8540), + [sym__dim_keyword] = ACTIONS(8540), + [sym__redim_keyword] = ACTIONS(8540), + [aux_sym_get_accessor_token1] = ACTIONS(8540), + [aux_sym_set_accessor_token1] = ACTIONS(8540), + [anon_sym_COMMA] = ACTIONS(10439), + [aux_sym_const_declaration_token1] = ACTIONS(8540), + [anon_sym_LPAREN] = ACTIONS(8542), + [aux_sym_as_type_clause_token2] = ACTIONS(8540), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8540), + [aux_sym_visibility_token1] = ACTIONS(8540), + [aux_sym_visibility_token2] = ACTIONS(8540), + [aux_sym_elseif_fragment_token1] = ACTIONS(8540), + [aux_sym_else_fragment_token1] = ACTIONS(8540), + [aux_sym_select_statement_token1] = ACTIONS(8540), + [aux_sym__for_header_token1] = ACTIONS(8540), + [aux_sym_do_statement_token1] = ACTIONS(8540), + [aux_sym_do_condition_token1] = ACTIONS(8540), + [aux_sym_with_statement_token1] = ACTIONS(8540), + [aux_sym_exit_statement_token1] = ACTIONS(8540), + [sym_end_statement] = ACTIONS(8542), + [aux_sym_on_goto_statement_token1] = ACTIONS(8540), + [aux_sym_on_goto_statement_token2] = ACTIONS(8540), + [aux_sym_on_error_statement_token2] = ACTIONS(8540), + [sym__ambiguous_redim_statement] = ACTIONS(8542), + [aux_sym_erase_statement_token1] = ACTIONS(8540), + [aux_sym_open_statement_token1] = ACTIONS(8540), + [aux_sym_file_mode_token2] = ACTIONS(8540), + [aux_sym_file_access_token2] = ACTIONS(8540), + [aux_sym_file_lock_token2] = ACTIONS(8540), + [aux_sym_print_statement_token1] = ACTIONS(8540), + [anon_sym_PLUS] = ACTIONS(8542), + [anon_sym_DASH] = ACTIONS(8540), + [anon_sym_QMARK] = ACTIONS(8542), + [aux_sym_close_statement_token1] = ACTIONS(8540), + [aux_sym_put_statement_token1] = ACTIONS(8540), + [aux_sym_unlock_statement_token1] = ACTIONS(8540), + [aux_sym_seek_statement_token1] = ACTIONS(8540), + [sym_reset_statement] = ACTIONS(8540), + [aux_sym_raise_event_statement_token1] = ACTIONS(8540), + [sym_stop_statement] = ACTIONS(8540), + [sym_beep_statement] = ACTIONS(8540), + [aux_sym_unload_statement_token1] = ACTIONS(8540), + [aux_sym_def_type_statement_token1] = ACTIONS(8540), + [aux_sym_def_type_statement_token2] = ACTIONS(8540), + [aux_sym_def_type_statement_token3] = ACTIONS(8540), + [aux_sym_def_type_statement_token4] = ACTIONS(8540), + [aux_sym_def_type_statement_token5] = ACTIONS(8540), + [aux_sym_def_type_statement_token6] = ACTIONS(8540), + [aux_sym_def_type_statement_token7] = ACTIONS(8540), + [aux_sym_def_type_statement_token8] = ACTIONS(8540), + [aux_sym_def_type_statement_token9] = ACTIONS(8540), + [aux_sym_def_type_statement_token10] = ACTIONS(8540), + [aux_sym_def_type_statement_token11] = ACTIONS(8540), + [aux_sym_def_type_statement_token12] = ACTIONS(8540), + [aux_sym_def_type_statement_token13] = ACTIONS(8540), + [aux_sym_def_type_statement_token14] = ACTIONS(8540), + [aux_sym_call_statement_token1] = ACTIONS(8540), + [sym__ambiguous_call_statement] = ACTIONS(8540), + [aux_sym_addressof_expression_token1] = ACTIONS(8540), + [aux_sym_type_of_expression_token1] = ACTIONS(8540), + [aux_sym_unary_expression_token1] = ACTIONS(8540), + [sym_string_literal] = ACTIONS(8542), + [sym_number_literal] = ACTIONS(8542), + [aux_sym_boolean_literal_token1] = ACTIONS(8540), + [aux_sym_boolean_literal_token2] = ACTIONS(8540), + [sym_nothing_literal] = ACTIONS(8540), + [sym_null_literal] = ACTIONS(8540), + [sym_empty_literal] = ACTIONS(8540), + [sym_date_literal] = ACTIONS(8542), + [anon_sym_POUND] = ACTIONS(8540), + }, + [STATE(5385)] = { + [aux_sym_const_declaration_repeat1] = STATE(5432), + [sym_identifier] = ACTIONS(8573), + [sym_newline] = ACTIONS(8575), + [anon_sym_COLON] = ACTIONS(8575), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8573), + [aux_sym_frm_property_statement_token1] = ACTIONS(8573), + [anon_sym_DOT] = ACTIONS(8573), + [anon_sym_BANG] = ACTIONS(8575), + [aux_sym__attribute_identifier_token1] = ACTIONS(8573), + [aux_sym_option_statement_token3] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8573), + [aux_sym_preprocessor_const_token1] = ACTIONS(8573), + [sym_static_modifier] = ACTIONS(8573), + [sym__dim_keyword] = ACTIONS(8573), + [sym__redim_keyword] = ACTIONS(8573), + [aux_sym_get_accessor_token1] = ACTIONS(8573), + [aux_sym_set_accessor_token1] = ACTIONS(8573), + [anon_sym_COMMA] = ACTIONS(10487), + [aux_sym_const_declaration_token1] = ACTIONS(8573), + [anon_sym_LPAREN] = ACTIONS(8575), + [aux_sym_as_type_clause_token2] = ACTIONS(8573), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8573), + [aux_sym_visibility_token1] = ACTIONS(8573), + [aux_sym_visibility_token2] = ACTIONS(8573), + [aux_sym_elseif_fragment_token1] = ACTIONS(8573), + [aux_sym_else_fragment_token1] = ACTIONS(8573), + [aux_sym_select_statement_token1] = ACTIONS(8573), + [aux_sym_select_statement_token2] = ACTIONS(8573), + [aux_sym__for_header_token1] = ACTIONS(8573), + [aux_sym_do_statement_token1] = ACTIONS(8573), + [aux_sym_do_condition_token1] = ACTIONS(8573), + [aux_sym_with_statement_token1] = ACTIONS(8573), + [aux_sym_exit_statement_token1] = ACTIONS(8573), + [sym_end_statement] = ACTIONS(8575), + [aux_sym_on_goto_statement_token1] = ACTIONS(8573), + [aux_sym_on_goto_statement_token2] = ACTIONS(8573), + [aux_sym_on_error_statement_token2] = ACTIONS(8573), + [sym__ambiguous_redim_statement] = ACTIONS(8575), + [aux_sym_erase_statement_token1] = ACTIONS(8573), + [aux_sym_open_statement_token1] = ACTIONS(8573), + [aux_sym_file_mode_token2] = ACTIONS(8573), + [aux_sym_file_access_token2] = ACTIONS(8573), + [aux_sym_file_lock_token2] = ACTIONS(8573), + [aux_sym_print_statement_token1] = ACTIONS(8573), + [anon_sym_PLUS] = ACTIONS(8575), + [anon_sym_DASH] = ACTIONS(8573), + [anon_sym_QMARK] = ACTIONS(8575), + [aux_sym_close_statement_token1] = ACTIONS(8573), + [aux_sym_put_statement_token1] = ACTIONS(8573), + [aux_sym_unlock_statement_token1] = ACTIONS(8573), + [aux_sym_seek_statement_token1] = ACTIONS(8573), + [sym_reset_statement] = ACTIONS(8573), + [aux_sym_raise_event_statement_token1] = ACTIONS(8573), + [sym_stop_statement] = ACTIONS(8573), + [sym_beep_statement] = ACTIONS(8573), + [aux_sym_unload_statement_token1] = ACTIONS(8573), + [aux_sym_def_type_statement_token1] = ACTIONS(8573), + [aux_sym_def_type_statement_token2] = ACTIONS(8573), + [aux_sym_def_type_statement_token3] = ACTIONS(8573), + [aux_sym_def_type_statement_token4] = ACTIONS(8573), + [aux_sym_def_type_statement_token5] = ACTIONS(8573), + [aux_sym_def_type_statement_token6] = ACTIONS(8573), + [aux_sym_def_type_statement_token7] = ACTIONS(8573), + [aux_sym_def_type_statement_token8] = ACTIONS(8573), + [aux_sym_def_type_statement_token9] = ACTIONS(8573), + [aux_sym_def_type_statement_token10] = ACTIONS(8573), + [aux_sym_def_type_statement_token11] = ACTIONS(8573), + [aux_sym_def_type_statement_token12] = ACTIONS(8573), + [aux_sym_def_type_statement_token13] = ACTIONS(8573), + [aux_sym_def_type_statement_token14] = ACTIONS(8573), + [aux_sym_call_statement_token1] = ACTIONS(8573), + [sym__ambiguous_call_statement] = ACTIONS(8573), + [aux_sym_addressof_expression_token1] = ACTIONS(8573), + [aux_sym_type_of_expression_token1] = ACTIONS(8573), + [aux_sym_unary_expression_token1] = ACTIONS(8573), + [sym_string_literal] = ACTIONS(8575), + [sym_number_literal] = ACTIONS(8575), + [aux_sym_boolean_literal_token1] = ACTIONS(8573), + [aux_sym_boolean_literal_token2] = ACTIONS(8573), + [sym_nothing_literal] = ACTIONS(8573), + [sym_null_literal] = ACTIONS(8573), + [sym_empty_literal] = ACTIONS(8573), + [sym_date_literal] = ACTIONS(8575), + [anon_sym_POUND] = ACTIONS(8573), + }, + [STATE(5386)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_while_statement_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(5387)] = { + [sym_do_condition] = STATE(6439), + [sym_identifier] = ACTIONS(8374), + [sym_newline] = ACTIONS(8376), + [anon_sym_COLON] = ACTIONS(8376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8374), + [aux_sym_frm_property_statement_token1] = ACTIONS(8374), + [anon_sym_DOT] = ACTIONS(8374), + [anon_sym_BANG] = ACTIONS(8376), + [aux_sym__attribute_identifier_token1] = ACTIONS(8374), + [aux_sym_option_statement_token3] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8374), + [aux_sym_preprocessor_const_token1] = ACTIONS(8374), + [sym_static_modifier] = ACTIONS(8374), + [sym__dim_keyword] = ACTIONS(8374), + [sym__redim_keyword] = ACTIONS(8374), + [aux_sym_get_accessor_token1] = ACTIONS(8374), + [aux_sym_set_accessor_token1] = ACTIONS(8374), + [aux_sym_const_declaration_token1] = ACTIONS(8374), + [anon_sym_LPAREN] = ACTIONS(8376), + [aux_sym_as_type_clause_token2] = ACTIONS(8374), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8374), + [aux_sym_visibility_token1] = ACTIONS(8374), + [aux_sym_visibility_token2] = ACTIONS(8374), + [aux_sym_elseif_fragment_token1] = ACTIONS(8374), + [aux_sym_else_fragment_token1] = ACTIONS(8374), + [aux_sym_select_statement_token1] = ACTIONS(8374), + [aux_sym__for_header_token1] = ACTIONS(8374), + [aux_sym_do_statement_token1] = ACTIONS(8374), + [aux_sym_do_statement_token2] = ACTIONS(8374), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8374), + [aux_sym_exit_statement_token1] = ACTIONS(8374), + [sym_end_statement] = ACTIONS(8376), + [aux_sym_on_goto_statement_token1] = ACTIONS(8374), + [aux_sym_on_goto_statement_token2] = ACTIONS(8374), + [aux_sym_on_error_statement_token2] = ACTIONS(8374), + [sym__ambiguous_redim_statement] = ACTIONS(8376), + [aux_sym_erase_statement_token1] = ACTIONS(8374), + [aux_sym_open_statement_token1] = ACTIONS(8374), + [aux_sym_file_mode_token2] = ACTIONS(8374), + [aux_sym_file_access_token2] = ACTIONS(8374), + [aux_sym_file_lock_token2] = ACTIONS(8374), + [aux_sym_print_statement_token1] = ACTIONS(8374), + [anon_sym_PLUS] = ACTIONS(8376), + [anon_sym_DASH] = ACTIONS(8374), + [anon_sym_QMARK] = ACTIONS(8376), + [aux_sym_close_statement_token1] = ACTIONS(8374), + [aux_sym_put_statement_token1] = ACTIONS(8374), + [aux_sym_unlock_statement_token1] = ACTIONS(8374), + [aux_sym_seek_statement_token1] = ACTIONS(8374), + [sym_reset_statement] = ACTIONS(8374), + [aux_sym_raise_event_statement_token1] = ACTIONS(8374), + [sym_stop_statement] = ACTIONS(8374), + [sym_beep_statement] = ACTIONS(8374), + [aux_sym_unload_statement_token1] = ACTIONS(8374), + [aux_sym_def_type_statement_token1] = ACTIONS(8374), + [aux_sym_def_type_statement_token2] = ACTIONS(8374), + [aux_sym_def_type_statement_token3] = ACTIONS(8374), + [aux_sym_def_type_statement_token4] = ACTIONS(8374), + [aux_sym_def_type_statement_token5] = ACTIONS(8374), + [aux_sym_def_type_statement_token6] = ACTIONS(8374), + [aux_sym_def_type_statement_token7] = ACTIONS(8374), + [aux_sym_def_type_statement_token8] = ACTIONS(8374), + [aux_sym_def_type_statement_token9] = ACTIONS(8374), + [aux_sym_def_type_statement_token10] = ACTIONS(8374), + [aux_sym_def_type_statement_token11] = ACTIONS(8374), + [aux_sym_def_type_statement_token12] = ACTIONS(8374), + [aux_sym_def_type_statement_token13] = ACTIONS(8374), + [aux_sym_def_type_statement_token14] = ACTIONS(8374), + [aux_sym_call_statement_token1] = ACTIONS(8374), + [sym__ambiguous_call_statement] = ACTIONS(8374), + [aux_sym_addressof_expression_token1] = ACTIONS(8374), + [aux_sym_type_of_expression_token1] = ACTIONS(8374), + [aux_sym_unary_expression_token1] = ACTIONS(8374), + [sym_string_literal] = ACTIONS(8376), + [sym_number_literal] = ACTIONS(8376), + [aux_sym_boolean_literal_token1] = ACTIONS(8374), + [aux_sym_boolean_literal_token2] = ACTIONS(8374), + [sym_nothing_literal] = ACTIONS(8374), + [sym_null_literal] = ACTIONS(8374), + [sym_empty_literal] = ACTIONS(8374), + [sym_date_literal] = ACTIONS(8376), + [anon_sym_POUND] = ACTIONS(8374), + }, + [STATE(5388)] = { + [sym_identifier] = ACTIONS(9374), + [sym_newline] = ACTIONS(9376), + [anon_sym_COLON] = ACTIONS(9376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9374), + [aux_sym_frm_property_statement_token1] = ACTIONS(9374), + [anon_sym_DOT] = ACTIONS(9374), + [anon_sym_BANG] = ACTIONS(9376), + [aux_sym__attribute_identifier_token1] = ACTIONS(9374), + [aux_sym_option_statement_token3] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9374), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9374), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9374), + [aux_sym_preprocessor_const_token1] = ACTIONS(9374), + [sym_static_modifier] = ACTIONS(9374), + [sym__dim_keyword] = ACTIONS(9374), + [sym__redim_keyword] = ACTIONS(9374), + [aux_sym_get_accessor_token1] = ACTIONS(9374), + [aux_sym_set_accessor_token1] = ACTIONS(9374), + [aux_sym_const_declaration_token1] = ACTIONS(9374), + [anon_sym_LPAREN] = ACTIONS(9376), + [aux_sym_as_type_clause_token2] = ACTIONS(9374), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9374), + [aux_sym_visibility_token1] = ACTIONS(9374), + [aux_sym_visibility_token2] = ACTIONS(9374), + [aux_sym_elseif_fragment_token1] = ACTIONS(9374), + [aux_sym_else_fragment_token1] = ACTIONS(9374), + [aux_sym_select_statement_token1] = ACTIONS(9374), + [aux_sym__for_header_token1] = ACTIONS(9374), + [aux_sym_do_statement_token1] = ACTIONS(9374), + [aux_sym_do_condition_token1] = ACTIONS(9374), + [aux_sym_with_statement_token1] = ACTIONS(9374), + [aux_sym_exit_statement_token1] = ACTIONS(9374), + [sym_end_statement] = ACTIONS(9376), + [aux_sym_on_goto_statement_token1] = ACTIONS(9374), + [aux_sym_on_goto_statement_token2] = ACTIONS(9374), + [aux_sym_on_error_statement_token2] = ACTIONS(9374), + [sym__ambiguous_redim_statement] = ACTIONS(9376), + [aux_sym_erase_statement_token1] = ACTIONS(9374), + [aux_sym_open_statement_token1] = ACTIONS(9374), + [aux_sym_file_mode_token2] = ACTIONS(9374), + [aux_sym_file_access_token2] = ACTIONS(9374), + [aux_sym_file_lock_token2] = ACTIONS(9374), + [aux_sym_print_statement_token1] = ACTIONS(9374), + [anon_sym_PLUS] = ACTIONS(9376), + [anon_sym_DASH] = ACTIONS(9374), + [anon_sym_QMARK] = ACTIONS(9376), + [aux_sym_close_statement_token1] = ACTIONS(9374), + [aux_sym_put_statement_token1] = ACTIONS(9374), + [aux_sym_unlock_statement_token1] = ACTIONS(9374), + [aux_sym_seek_statement_token1] = ACTIONS(9374), + [sym_reset_statement] = ACTIONS(9374), + [aux_sym_raise_event_statement_token1] = ACTIONS(9374), + [sym_stop_statement] = ACTIONS(9374), + [sym_beep_statement] = ACTIONS(9374), + [aux_sym_unload_statement_token1] = ACTIONS(9374), + [aux_sym_def_type_statement_token1] = ACTIONS(9374), + [aux_sym_def_type_statement_token2] = ACTIONS(9374), + [aux_sym_def_type_statement_token3] = ACTIONS(9374), + [aux_sym_def_type_statement_token4] = ACTIONS(9374), + [aux_sym_def_type_statement_token5] = ACTIONS(9374), + [aux_sym_def_type_statement_token6] = ACTIONS(9374), + [aux_sym_def_type_statement_token7] = ACTIONS(9374), + [aux_sym_def_type_statement_token8] = ACTIONS(9374), + [aux_sym_def_type_statement_token9] = ACTIONS(9374), + [aux_sym_def_type_statement_token10] = ACTIONS(9374), + [aux_sym_def_type_statement_token11] = ACTIONS(9374), + [aux_sym_def_type_statement_token12] = ACTIONS(9374), + [aux_sym_def_type_statement_token13] = ACTIONS(9374), + [aux_sym_def_type_statement_token14] = ACTIONS(9374), + [aux_sym_call_statement_token1] = ACTIONS(9374), + [sym__ambiguous_call_statement] = ACTIONS(9374), + [aux_sym_addressof_expression_token1] = ACTIONS(9374), + [aux_sym_type_of_expression_token1] = ACTIONS(9374), + [aux_sym_unary_expression_token1] = ACTIONS(9374), + [sym_string_literal] = ACTIONS(9376), + [sym_number_literal] = ACTIONS(9376), + [aux_sym_boolean_literal_token1] = ACTIONS(9374), + [aux_sym_boolean_literal_token2] = ACTIONS(9374), + [sym_nothing_literal] = ACTIONS(9374), + [sym_null_literal] = ACTIONS(9374), + [sym_empty_literal] = ACTIONS(9374), + [sym_date_literal] = ACTIONS(9376), + [anon_sym_POUND] = ACTIONS(9374), + }, + [STATE(5389)] = { + [sym_identifier] = ACTIONS(9378), + [sym_newline] = ACTIONS(9380), + [anon_sym_COLON] = ACTIONS(9380), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9378), + [aux_sym_frm_property_statement_token1] = ACTIONS(9378), + [anon_sym_DOT] = ACTIONS(9378), + [anon_sym_BANG] = ACTIONS(9380), + [aux_sym__attribute_identifier_token1] = ACTIONS(9378), + [aux_sym_option_statement_token3] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9378), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9378), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9378), + [aux_sym_preprocessor_const_token1] = ACTIONS(9378), + [sym_static_modifier] = ACTIONS(9378), + [sym__dim_keyword] = ACTIONS(9378), + [sym__redim_keyword] = ACTIONS(9378), + [aux_sym_get_accessor_token1] = ACTIONS(9378), + [aux_sym_set_accessor_token1] = ACTIONS(9378), + [aux_sym_const_declaration_token1] = ACTIONS(9378), + [anon_sym_LPAREN] = ACTIONS(9380), + [aux_sym_as_type_clause_token2] = ACTIONS(9378), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9378), + [aux_sym_visibility_token1] = ACTIONS(9378), + [aux_sym_visibility_token2] = ACTIONS(9378), + [aux_sym_elseif_fragment_token1] = ACTIONS(9378), + [aux_sym_else_fragment_token1] = ACTIONS(9378), + [aux_sym_select_statement_token1] = ACTIONS(9378), + [aux_sym__for_header_token1] = ACTIONS(9378), + [aux_sym_do_statement_token1] = ACTIONS(9378), + [aux_sym_do_condition_token1] = ACTIONS(9378), + [aux_sym_with_statement_token1] = ACTIONS(9378), + [aux_sym_exit_statement_token1] = ACTIONS(9378), + [sym_end_statement] = ACTIONS(9380), + [aux_sym_on_goto_statement_token1] = ACTIONS(9378), + [aux_sym_on_goto_statement_token2] = ACTIONS(9378), + [aux_sym_on_error_statement_token2] = ACTIONS(9378), + [sym__ambiguous_redim_statement] = ACTIONS(9380), + [aux_sym_erase_statement_token1] = ACTIONS(9378), + [aux_sym_open_statement_token1] = ACTIONS(9378), + [aux_sym_file_mode_token2] = ACTIONS(9378), + [aux_sym_file_access_token2] = ACTIONS(9378), + [aux_sym_file_lock_token2] = ACTIONS(9378), + [aux_sym_print_statement_token1] = ACTIONS(9378), + [anon_sym_PLUS] = ACTIONS(9380), + [anon_sym_DASH] = ACTIONS(9378), + [anon_sym_QMARK] = ACTIONS(9380), + [aux_sym_close_statement_token1] = ACTIONS(9378), + [aux_sym_put_statement_token1] = ACTIONS(9378), + [aux_sym_unlock_statement_token1] = ACTIONS(9378), + [aux_sym_seek_statement_token1] = ACTIONS(9378), + [sym_reset_statement] = ACTIONS(9378), + [aux_sym_raise_event_statement_token1] = ACTIONS(9378), + [sym_stop_statement] = ACTIONS(9378), + [sym_beep_statement] = ACTIONS(9378), + [aux_sym_unload_statement_token1] = ACTIONS(9378), + [aux_sym_def_type_statement_token1] = ACTIONS(9378), + [aux_sym_def_type_statement_token2] = ACTIONS(9378), + [aux_sym_def_type_statement_token3] = ACTIONS(9378), + [aux_sym_def_type_statement_token4] = ACTIONS(9378), + [aux_sym_def_type_statement_token5] = ACTIONS(9378), + [aux_sym_def_type_statement_token6] = ACTIONS(9378), + [aux_sym_def_type_statement_token7] = ACTIONS(9378), + [aux_sym_def_type_statement_token8] = ACTIONS(9378), + [aux_sym_def_type_statement_token9] = ACTIONS(9378), + [aux_sym_def_type_statement_token10] = ACTIONS(9378), + [aux_sym_def_type_statement_token11] = ACTIONS(9378), + [aux_sym_def_type_statement_token12] = ACTIONS(9378), + [aux_sym_def_type_statement_token13] = ACTIONS(9378), + [aux_sym_def_type_statement_token14] = ACTIONS(9378), + [aux_sym_call_statement_token1] = ACTIONS(9378), + [sym__ambiguous_call_statement] = ACTIONS(9378), + [aux_sym_addressof_expression_token1] = ACTIONS(9378), + [aux_sym_type_of_expression_token1] = ACTIONS(9378), + [aux_sym_unary_expression_token1] = ACTIONS(9378), + [sym_string_literal] = ACTIONS(9380), + [sym_number_literal] = ACTIONS(9380), + [aux_sym_boolean_literal_token1] = ACTIONS(9378), + [aux_sym_boolean_literal_token2] = ACTIONS(9378), + [sym_nothing_literal] = ACTIONS(9378), + [sym_null_literal] = ACTIONS(9378), + [sym_empty_literal] = ACTIONS(9378), + [sym_date_literal] = ACTIONS(9380), + [anon_sym_POUND] = ACTIONS(9378), + }, + [STATE(5390)] = { + [sym_do_condition] = STATE(6441), + [sym_identifier] = ACTIONS(8378), + [sym_newline] = ACTIONS(8380), + [anon_sym_COLON] = ACTIONS(8380), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8378), + [aux_sym_frm_property_statement_token1] = ACTIONS(8378), + [anon_sym_DOT] = ACTIONS(8378), + [anon_sym_BANG] = ACTIONS(8380), + [aux_sym__attribute_identifier_token1] = ACTIONS(8378), + [aux_sym_option_statement_token3] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8378), + [aux_sym_preprocessor_const_token1] = ACTIONS(8378), + [sym_static_modifier] = ACTIONS(8378), + [sym__dim_keyword] = ACTIONS(8378), + [sym__redim_keyword] = ACTIONS(8378), + [aux_sym_get_accessor_token1] = ACTIONS(8378), + [aux_sym_set_accessor_token1] = ACTIONS(8378), + [aux_sym_const_declaration_token1] = ACTIONS(8378), + [anon_sym_LPAREN] = ACTIONS(8380), + [aux_sym_as_type_clause_token2] = ACTIONS(8378), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8378), + [aux_sym_visibility_token1] = ACTIONS(8378), + [aux_sym_visibility_token2] = ACTIONS(8378), + [aux_sym_elseif_fragment_token1] = ACTIONS(8378), + [aux_sym_else_fragment_token1] = ACTIONS(8378), + [aux_sym_select_statement_token1] = ACTIONS(8378), + [aux_sym__for_header_token1] = ACTIONS(8378), + [aux_sym_do_statement_token1] = ACTIONS(8378), + [aux_sym_do_statement_token2] = ACTIONS(8378), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8378), + [aux_sym_exit_statement_token1] = ACTIONS(8378), + [sym_end_statement] = ACTIONS(8380), + [aux_sym_on_goto_statement_token1] = ACTIONS(8378), + [aux_sym_on_goto_statement_token2] = ACTIONS(8378), + [aux_sym_on_error_statement_token2] = ACTIONS(8378), + [sym__ambiguous_redim_statement] = ACTIONS(8380), + [aux_sym_erase_statement_token1] = ACTIONS(8378), + [aux_sym_open_statement_token1] = ACTIONS(8378), + [aux_sym_file_mode_token2] = ACTIONS(8378), + [aux_sym_file_access_token2] = ACTIONS(8378), + [aux_sym_file_lock_token2] = ACTIONS(8378), + [aux_sym_print_statement_token1] = ACTIONS(8378), + [anon_sym_PLUS] = ACTIONS(8380), + [anon_sym_DASH] = ACTIONS(8378), + [anon_sym_QMARK] = ACTIONS(8380), + [aux_sym_close_statement_token1] = ACTIONS(8378), + [aux_sym_put_statement_token1] = ACTIONS(8378), + [aux_sym_unlock_statement_token1] = ACTIONS(8378), + [aux_sym_seek_statement_token1] = ACTIONS(8378), + [sym_reset_statement] = ACTIONS(8378), + [aux_sym_raise_event_statement_token1] = ACTIONS(8378), + [sym_stop_statement] = ACTIONS(8378), + [sym_beep_statement] = ACTIONS(8378), + [aux_sym_unload_statement_token1] = ACTIONS(8378), + [aux_sym_def_type_statement_token1] = ACTIONS(8378), + [aux_sym_def_type_statement_token2] = ACTIONS(8378), + [aux_sym_def_type_statement_token3] = ACTIONS(8378), + [aux_sym_def_type_statement_token4] = ACTIONS(8378), + [aux_sym_def_type_statement_token5] = ACTIONS(8378), + [aux_sym_def_type_statement_token6] = ACTIONS(8378), + [aux_sym_def_type_statement_token7] = ACTIONS(8378), + [aux_sym_def_type_statement_token8] = ACTIONS(8378), + [aux_sym_def_type_statement_token9] = ACTIONS(8378), + [aux_sym_def_type_statement_token10] = ACTIONS(8378), + [aux_sym_def_type_statement_token11] = ACTIONS(8378), + [aux_sym_def_type_statement_token12] = ACTIONS(8378), + [aux_sym_def_type_statement_token13] = ACTIONS(8378), + [aux_sym_def_type_statement_token14] = ACTIONS(8378), + [aux_sym_call_statement_token1] = ACTIONS(8378), + [sym__ambiguous_call_statement] = ACTIONS(8378), + [aux_sym_addressof_expression_token1] = ACTIONS(8378), + [aux_sym_type_of_expression_token1] = ACTIONS(8378), + [aux_sym_unary_expression_token1] = ACTIONS(8378), + [sym_string_literal] = ACTIONS(8380), + [sym_number_literal] = ACTIONS(8380), + [aux_sym_boolean_literal_token1] = ACTIONS(8378), + [aux_sym_boolean_literal_token2] = ACTIONS(8378), + [sym_nothing_literal] = ACTIONS(8378), + [sym_null_literal] = ACTIONS(8378), + [sym_empty_literal] = ACTIONS(8378), + [sym_date_literal] = ACTIONS(8380), + [anon_sym_POUND] = ACTIONS(8378), + }, + [STATE(5391)] = { + [aux_sym_def_type_statement_repeat1] = STATE(5433), + [sym_identifier] = ACTIONS(8577), + [sym_newline] = ACTIONS(8579), + [anon_sym_COLON] = ACTIONS(8579), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8577), + [aux_sym_frm_property_statement_token1] = ACTIONS(8577), + [anon_sym_DOT] = ACTIONS(8577), + [anon_sym_BANG] = ACTIONS(8579), + [aux_sym__attribute_identifier_token1] = ACTIONS(8577), + [aux_sym_option_statement_token3] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8577), + [aux_sym_preprocessor_const_token1] = ACTIONS(8577), + [sym_static_modifier] = ACTIONS(8577), + [sym__dim_keyword] = ACTIONS(8577), + [sym__redim_keyword] = ACTIONS(8577), + [aux_sym_get_accessor_token1] = ACTIONS(8577), + [aux_sym_set_accessor_token1] = ACTIONS(8577), + [anon_sym_COMMA] = ACTIONS(10575), + [aux_sym_const_declaration_token1] = ACTIONS(8577), + [anon_sym_LPAREN] = ACTIONS(8579), + [aux_sym_as_type_clause_token2] = ACTIONS(8577), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8577), + [aux_sym_visibility_token1] = ACTIONS(8577), + [aux_sym_visibility_token2] = ACTIONS(8577), + [aux_sym_elseif_fragment_token1] = ACTIONS(8577), + [aux_sym_else_fragment_token1] = ACTIONS(8577), + [aux_sym_select_statement_token1] = ACTIONS(8577), + [aux_sym__for_header_token1] = ACTIONS(8577), + [aux_sym_do_statement_token1] = ACTIONS(8577), + [aux_sym_do_condition_token1] = ACTIONS(8577), + [aux_sym_with_statement_token1] = ACTIONS(8577), + [aux_sym_exit_statement_token1] = ACTIONS(8577), + [sym_end_statement] = ACTIONS(8579), + [aux_sym_on_goto_statement_token1] = ACTIONS(8577), + [aux_sym_on_goto_statement_token2] = ACTIONS(8577), + [aux_sym_on_error_statement_token2] = ACTIONS(8577), + [sym__ambiguous_redim_statement] = ACTIONS(8579), + [aux_sym_erase_statement_token1] = ACTIONS(8577), + [aux_sym_open_statement_token1] = ACTIONS(8577), + [aux_sym_file_mode_token2] = ACTIONS(8577), + [aux_sym_file_access_token2] = ACTIONS(8577), + [aux_sym_file_lock_token2] = ACTIONS(8577), + [aux_sym_print_statement_token1] = ACTIONS(8577), + [anon_sym_PLUS] = ACTIONS(8579), + [anon_sym_DASH] = ACTIONS(8577), + [anon_sym_QMARK] = ACTIONS(8579), + [aux_sym_close_statement_token1] = ACTIONS(8577), + [aux_sym_put_statement_token1] = ACTIONS(8577), + [aux_sym_unlock_statement_token1] = ACTIONS(8577), + [aux_sym_seek_statement_token1] = ACTIONS(8577), + [sym_reset_statement] = ACTIONS(8577), + [aux_sym_raise_event_statement_token1] = ACTIONS(8577), + [sym_stop_statement] = ACTIONS(8577), + [sym_beep_statement] = ACTIONS(8577), + [aux_sym_unload_statement_token1] = ACTIONS(8577), + [aux_sym_def_type_statement_token1] = ACTIONS(8577), + [aux_sym_def_type_statement_token2] = ACTIONS(8577), + [aux_sym_def_type_statement_token3] = ACTIONS(8577), + [aux_sym_def_type_statement_token4] = ACTIONS(8577), + [aux_sym_def_type_statement_token5] = ACTIONS(8577), + [aux_sym_def_type_statement_token6] = ACTIONS(8577), + [aux_sym_def_type_statement_token7] = ACTIONS(8577), + [aux_sym_def_type_statement_token8] = ACTIONS(8577), + [aux_sym_def_type_statement_token9] = ACTIONS(8577), + [aux_sym_def_type_statement_token10] = ACTIONS(8577), + [aux_sym_def_type_statement_token11] = ACTIONS(8577), + [aux_sym_def_type_statement_token12] = ACTIONS(8577), + [aux_sym_def_type_statement_token13] = ACTIONS(8577), + [aux_sym_def_type_statement_token14] = ACTIONS(8577), + [aux_sym_call_statement_token1] = ACTIONS(8577), + [sym__ambiguous_call_statement] = ACTIONS(8577), + [aux_sym_addressof_expression_token1] = ACTIONS(8577), + [aux_sym_type_of_expression_token1] = ACTIONS(8577), + [aux_sym_unary_expression_token1] = ACTIONS(8577), + [sym_string_literal] = ACTIONS(8579), + [sym_number_literal] = ACTIONS(8579), + [aux_sym_boolean_literal_token1] = ACTIONS(8577), + [aux_sym_boolean_literal_token2] = ACTIONS(8577), + [sym_nothing_literal] = ACTIONS(8577), + [sym_null_literal] = ACTIONS(8577), + [sym_empty_literal] = ACTIONS(8577), + [sym_date_literal] = ACTIONS(8579), + [anon_sym_POUND] = ACTIONS(8577), + }, + [STATE(5392)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5461), + [sym_identifier] = ACTIONS(8583), + [sym_newline] = ACTIONS(8585), + [anon_sym_COLON] = ACTIONS(8585), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8583), + [aux_sym_frm_property_statement_token1] = ACTIONS(8583), + [anon_sym_DOT] = ACTIONS(8583), + [anon_sym_BANG] = ACTIONS(8585), + [aux_sym__attribute_identifier_token1] = ACTIONS(8583), + [aux_sym_option_statement_token3] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8583), + [aux_sym_preprocessor_const_token1] = ACTIONS(8583), + [sym_static_modifier] = ACTIONS(8583), + [sym__dim_keyword] = ACTIONS(8583), + [sym__redim_keyword] = ACTIONS(8583), + [aux_sym_get_accessor_token1] = ACTIONS(8583), + [aux_sym_set_accessor_token1] = ACTIONS(8583), + [anon_sym_COMMA] = ACTIONS(10469), + [aux_sym_const_declaration_token1] = ACTIONS(8583), + [anon_sym_LPAREN] = ACTIONS(8585), + [aux_sym_as_type_clause_token2] = ACTIONS(8583), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8583), + [aux_sym_visibility_token1] = ACTIONS(8583), + [aux_sym_visibility_token2] = ACTIONS(8583), + [aux_sym_elseif_fragment_token1] = ACTIONS(8583), + [aux_sym_else_fragment_token1] = ACTIONS(8583), + [aux_sym_select_statement_token1] = ACTIONS(8583), + [aux_sym_select_statement_token2] = ACTIONS(8583), + [aux_sym__for_header_token1] = ACTIONS(8583), + [aux_sym_do_statement_token1] = ACTIONS(8583), + [aux_sym_do_condition_token1] = ACTIONS(8583), + [aux_sym_with_statement_token1] = ACTIONS(8583), + [aux_sym_exit_statement_token1] = ACTIONS(8583), + [sym_end_statement] = ACTIONS(8585), + [aux_sym_on_goto_statement_token1] = ACTIONS(8583), + [aux_sym_on_goto_statement_token2] = ACTIONS(8583), + [aux_sym_on_error_statement_token2] = ACTIONS(8583), + [sym__ambiguous_redim_statement] = ACTIONS(8585), + [aux_sym_erase_statement_token1] = ACTIONS(8583), + [aux_sym_open_statement_token1] = ACTIONS(8583), + [aux_sym_file_mode_token2] = ACTIONS(8583), + [aux_sym_file_access_token2] = ACTIONS(8583), + [aux_sym_file_lock_token2] = ACTIONS(8583), + [aux_sym_print_statement_token1] = ACTIONS(8583), + [anon_sym_PLUS] = ACTIONS(8585), + [anon_sym_DASH] = ACTIONS(8583), + [anon_sym_QMARK] = ACTIONS(8585), + [aux_sym_close_statement_token1] = ACTIONS(8583), + [aux_sym_put_statement_token1] = ACTIONS(8583), + [aux_sym_unlock_statement_token1] = ACTIONS(8583), + [aux_sym_seek_statement_token1] = ACTIONS(8583), + [sym_reset_statement] = ACTIONS(8583), + [aux_sym_raise_event_statement_token1] = ACTIONS(8583), + [sym_stop_statement] = ACTIONS(8583), + [sym_beep_statement] = ACTIONS(8583), + [aux_sym_unload_statement_token1] = ACTIONS(8583), + [aux_sym_def_type_statement_token1] = ACTIONS(8583), + [aux_sym_def_type_statement_token2] = ACTIONS(8583), + [aux_sym_def_type_statement_token3] = ACTIONS(8583), + [aux_sym_def_type_statement_token4] = ACTIONS(8583), + [aux_sym_def_type_statement_token5] = ACTIONS(8583), + [aux_sym_def_type_statement_token6] = ACTIONS(8583), + [aux_sym_def_type_statement_token7] = ACTIONS(8583), + [aux_sym_def_type_statement_token8] = ACTIONS(8583), + [aux_sym_def_type_statement_token9] = ACTIONS(8583), + [aux_sym_def_type_statement_token10] = ACTIONS(8583), + [aux_sym_def_type_statement_token11] = ACTIONS(8583), + [aux_sym_def_type_statement_token12] = ACTIONS(8583), + [aux_sym_def_type_statement_token13] = ACTIONS(8583), + [aux_sym_def_type_statement_token14] = ACTIONS(8583), + [aux_sym_call_statement_token1] = ACTIONS(8583), + [sym__ambiguous_call_statement] = ACTIONS(8583), + [aux_sym_addressof_expression_token1] = ACTIONS(8583), + [aux_sym_type_of_expression_token1] = ACTIONS(8583), + [aux_sym_unary_expression_token1] = ACTIONS(8583), + [sym_string_literal] = ACTIONS(8585), + [sym_number_literal] = ACTIONS(8585), + [aux_sym_boolean_literal_token1] = ACTIONS(8583), + [aux_sym_boolean_literal_token2] = ACTIONS(8583), + [sym_nothing_literal] = ACTIONS(8583), + [sym_null_literal] = ACTIONS(8583), + [sym_empty_literal] = ACTIONS(8583), + [sym_date_literal] = ACTIONS(8585), + [anon_sym_POUND] = ACTIONS(8583), + }, + [STATE(5393)] = { + [sym_identifier] = ACTIONS(5562), + [sym_newline] = ACTIONS(5558), + [anon_sym_COLON] = ACTIONS(5558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5562), + [aux_sym_frm_property_statement_token1] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(10281), + [anon_sym_BANG] = ACTIONS(10283), + [aux_sym__attribute_identifier_token1] = ACTIONS(5562), + [aux_sym_option_statement_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5562), + [aux_sym_preprocessor_const_token1] = ACTIONS(5562), + [sym_static_modifier] = ACTIONS(5562), + [sym__dim_keyword] = ACTIONS(5562), + [sym__redim_keyword] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5562), + [aux_sym_set_accessor_token1] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5558), + [aux_sym_as_type_clause_token2] = ACTIONS(5562), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5562), + [aux_sym_visibility_token1] = ACTIONS(5562), + [aux_sym_visibility_token2] = ACTIONS(5562), + [aux_sym_elseif_fragment_token1] = ACTIONS(5562), + [aux_sym_else_fragment_token1] = ACTIONS(5562), + [aux_sym_select_statement_token1] = ACTIONS(5562), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5562), + [aux_sym__for_header_token1] = ACTIONS(5562), + [aux_sym_do_statement_token1] = ACTIONS(5562), + [aux_sym_do_condition_token1] = ACTIONS(5562), + [aux_sym_while_statement_token1] = ACTIONS(5562), + [aux_sym_with_statement_token1] = ACTIONS(5562), + [aux_sym_exit_statement_token1] = ACTIONS(5562), + [sym_end_statement] = ACTIONS(5558), + [aux_sym_on_goto_statement_token1] = ACTIONS(5562), + [aux_sym_on_goto_statement_token2] = ACTIONS(5562), + [aux_sym_on_error_statement_token2] = ACTIONS(5562), + [sym__ambiguous_redim_statement] = ACTIONS(5558), + [aux_sym_erase_statement_token1] = ACTIONS(5562), + [aux_sym_open_statement_token1] = ACTIONS(5562), + [aux_sym_file_mode_token2] = ACTIONS(5562), + [aux_sym_file_access_token2] = ACTIONS(5562), + [aux_sym_file_lock_token2] = ACTIONS(5562), + [aux_sym_print_statement_token1] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5558), + [aux_sym_close_statement_token1] = ACTIONS(5562), + [aux_sym_put_statement_token1] = ACTIONS(5562), + [aux_sym_unlock_statement_token1] = ACTIONS(5562), + [aux_sym_seek_statement_token1] = ACTIONS(5562), + [sym_reset_statement] = ACTIONS(5562), + [aux_sym_raise_event_statement_token1] = ACTIONS(5562), + [sym_stop_statement] = ACTIONS(5562), + [sym_beep_statement] = ACTIONS(5562), + [aux_sym_unload_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token2] = ACTIONS(5562), + [aux_sym_def_type_statement_token3] = ACTIONS(5562), + [aux_sym_def_type_statement_token4] = ACTIONS(5562), + [aux_sym_def_type_statement_token5] = ACTIONS(5562), + [aux_sym_def_type_statement_token6] = ACTIONS(5562), + [aux_sym_def_type_statement_token7] = ACTIONS(5562), + [aux_sym_def_type_statement_token8] = ACTIONS(5562), + [aux_sym_def_type_statement_token9] = ACTIONS(5562), + [aux_sym_def_type_statement_token10] = ACTIONS(5562), + [aux_sym_def_type_statement_token11] = ACTIONS(5562), + [aux_sym_def_type_statement_token12] = ACTIONS(5562), + [aux_sym_def_type_statement_token13] = ACTIONS(5562), + [aux_sym_def_type_statement_token14] = ACTIONS(5562), + [aux_sym_call_statement_token1] = ACTIONS(5562), + [sym__ambiguous_call_statement] = ACTIONS(5562), + [aux_sym_addressof_expression_token1] = ACTIONS(5562), + [aux_sym_type_of_expression_token1] = ACTIONS(5562), + [aux_sym_unary_expression_token1] = ACTIONS(5562), + [sym_string_literal] = ACTIONS(5558), + [sym_number_literal] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5562), + [aux_sym_boolean_literal_token2] = ACTIONS(5562), + [sym_nothing_literal] = ACTIONS(5562), + [sym_null_literal] = ACTIONS(5562), + [sym_empty_literal] = ACTIONS(5562), + [sym_date_literal] = ACTIONS(5558), + [anon_sym_POUND] = ACTIONS(5562), + }, + [STATE(5394)] = { + [sym_argument_list] = STATE(5868), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7836), + [anon_sym_BANG] = ACTIONS(4034), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10429), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(5395)] = { + [aux_sym_redim_statement_repeat1] = STATE(5486), + [sym_identifier] = ACTIONS(8368), + [sym_newline] = ACTIONS(8370), + [anon_sym_COLON] = ACTIONS(8370), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8368), + [aux_sym_frm_property_statement_token1] = ACTIONS(8368), + [anon_sym_DOT] = ACTIONS(8368), + [anon_sym_BANG] = ACTIONS(8370), + [aux_sym__attribute_identifier_token1] = ACTIONS(8368), + [aux_sym_option_statement_token3] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8368), + [aux_sym_preprocessor_const_token1] = ACTIONS(8368), + [sym_static_modifier] = ACTIONS(8368), + [sym__dim_keyword] = ACTIONS(8368), + [sym__redim_keyword] = ACTIONS(8368), + [aux_sym_get_accessor_token1] = ACTIONS(8368), + [aux_sym_set_accessor_token1] = ACTIONS(8368), + [anon_sym_COMMA] = ACTIONS(10577), + [aux_sym_const_declaration_token1] = ACTIONS(8368), + [anon_sym_LPAREN] = ACTIONS(8370), + [aux_sym_as_type_clause_token2] = ACTIONS(8368), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8368), + [aux_sym_visibility_token1] = ACTIONS(8368), + [aux_sym_visibility_token2] = ACTIONS(8368), + [aux_sym_elseif_fragment_token1] = ACTIONS(8368), + [aux_sym_else_fragment_token1] = ACTIONS(8368), + [aux_sym_select_statement_token1] = ACTIONS(8368), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8368), + [aux_sym__for_header_token1] = ACTIONS(8368), + [aux_sym_do_statement_token1] = ACTIONS(8368), + [aux_sym_do_condition_token1] = ACTIONS(8368), + [aux_sym_with_statement_token1] = ACTIONS(8368), + [aux_sym_exit_statement_token1] = ACTIONS(8368), + [sym_end_statement] = ACTIONS(8370), + [aux_sym_on_goto_statement_token1] = ACTIONS(8368), + [aux_sym_on_goto_statement_token2] = ACTIONS(8368), + [aux_sym_on_error_statement_token2] = ACTIONS(8368), + [sym__ambiguous_redim_statement] = ACTIONS(8370), + [aux_sym_erase_statement_token1] = ACTIONS(8368), + [aux_sym_open_statement_token1] = ACTIONS(8368), + [aux_sym_file_mode_token2] = ACTIONS(8368), + [aux_sym_file_access_token2] = ACTIONS(8368), + [aux_sym_file_lock_token2] = ACTIONS(8368), + [aux_sym_print_statement_token1] = ACTIONS(8368), + [anon_sym_PLUS] = ACTIONS(8370), + [anon_sym_DASH] = ACTIONS(8368), + [anon_sym_QMARK] = ACTIONS(8370), + [aux_sym_close_statement_token1] = ACTIONS(8368), + [aux_sym_put_statement_token1] = ACTIONS(8368), + [aux_sym_unlock_statement_token1] = ACTIONS(8368), + [aux_sym_seek_statement_token1] = ACTIONS(8368), + [sym_reset_statement] = ACTIONS(8368), + [aux_sym_raise_event_statement_token1] = ACTIONS(8368), + [sym_stop_statement] = ACTIONS(8368), + [sym_beep_statement] = ACTIONS(8368), + [aux_sym_unload_statement_token1] = ACTIONS(8368), + [aux_sym_def_type_statement_token1] = ACTIONS(8368), + [aux_sym_def_type_statement_token2] = ACTIONS(8368), + [aux_sym_def_type_statement_token3] = ACTIONS(8368), + [aux_sym_def_type_statement_token4] = ACTIONS(8368), + [aux_sym_def_type_statement_token5] = ACTIONS(8368), + [aux_sym_def_type_statement_token6] = ACTIONS(8368), + [aux_sym_def_type_statement_token7] = ACTIONS(8368), + [aux_sym_def_type_statement_token8] = ACTIONS(8368), + [aux_sym_def_type_statement_token9] = ACTIONS(8368), + [aux_sym_def_type_statement_token10] = ACTIONS(8368), + [aux_sym_def_type_statement_token11] = ACTIONS(8368), + [aux_sym_def_type_statement_token12] = ACTIONS(8368), + [aux_sym_def_type_statement_token13] = ACTIONS(8368), + [aux_sym_def_type_statement_token14] = ACTIONS(8368), + [aux_sym_call_statement_token1] = ACTIONS(8368), + [sym__ambiguous_call_statement] = ACTIONS(8368), + [aux_sym_addressof_expression_token1] = ACTIONS(8368), + [aux_sym_type_of_expression_token1] = ACTIONS(8368), + [aux_sym_unary_expression_token1] = ACTIONS(8368), + [sym_string_literal] = ACTIONS(8370), + [sym_number_literal] = ACTIONS(8370), + [aux_sym_boolean_literal_token1] = ACTIONS(8368), + [aux_sym_boolean_literal_token2] = ACTIONS(8368), + [sym_nothing_literal] = ACTIONS(8368), + [sym_null_literal] = ACTIONS(8368), + [sym_empty_literal] = ACTIONS(8368), + [sym_date_literal] = ACTIONS(8370), + [anon_sym_POUND] = ACTIONS(8368), + }, + [STATE(5396)] = { + [sym_identifier] = ACTIONS(8620), + [sym_newline] = ACTIONS(8622), + [anon_sym_COLON] = ACTIONS(8622), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8620), + [aux_sym_frm_property_statement_token1] = ACTIONS(8620), + [anon_sym_EQ] = ACTIONS(8622), + [anon_sym_DOT] = ACTIONS(8620), + [anon_sym_BANG] = ACTIONS(8622), + [aux_sym__attribute_identifier_token1] = ACTIONS(8620), + [aux_sym_option_statement_token3] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8620), + [aux_sym_preprocessor_const_token1] = ACTIONS(8620), + [sym_static_modifier] = ACTIONS(8620), + [sym__dim_keyword] = ACTIONS(8620), + [sym__redim_keyword] = ACTIONS(8620), + [aux_sym_get_accessor_token1] = ACTIONS(8620), + [aux_sym_set_accessor_token1] = ACTIONS(8620), + [anon_sym_COMMA] = ACTIONS(8622), + [aux_sym_const_declaration_token1] = ACTIONS(8620), + [anon_sym_LPAREN] = ACTIONS(8622), + [aux_sym_as_type_clause_token2] = ACTIONS(8620), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8620), + [aux_sym_visibility_token1] = ACTIONS(8620), + [aux_sym_visibility_token2] = ACTIONS(8620), + [aux_sym_elseif_fragment_token1] = ACTIONS(8620), + [aux_sym_else_fragment_token1] = ACTIONS(8620), + [aux_sym_select_statement_token1] = ACTIONS(8620), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8620), + [aux_sym__for_header_token1] = ACTIONS(8620), + [aux_sym_do_statement_token1] = ACTIONS(8620), + [aux_sym_do_condition_token1] = ACTIONS(8620), + [aux_sym_with_statement_token1] = ACTIONS(8620), + [aux_sym_exit_statement_token1] = ACTIONS(8620), + [sym_end_statement] = ACTIONS(8622), + [aux_sym_on_goto_statement_token1] = ACTIONS(8620), + [aux_sym_on_goto_statement_token2] = ACTIONS(8620), + [aux_sym_on_error_statement_token2] = ACTIONS(8620), + [sym__ambiguous_redim_statement] = ACTIONS(8622), + [aux_sym_erase_statement_token1] = ACTIONS(8620), + [aux_sym_open_statement_token1] = ACTIONS(8620), + [aux_sym_file_mode_token2] = ACTIONS(8620), + [aux_sym_file_access_token2] = ACTIONS(8620), + [aux_sym_file_lock_token2] = ACTIONS(8620), + [aux_sym_print_statement_token1] = ACTIONS(8620), + [anon_sym_PLUS] = ACTIONS(8622), + [anon_sym_DASH] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(8622), + [aux_sym_close_statement_token1] = ACTIONS(8620), + [aux_sym_put_statement_token1] = ACTIONS(8620), + [aux_sym_unlock_statement_token1] = ACTIONS(8620), + [aux_sym_seek_statement_token1] = ACTIONS(8620), + [sym_reset_statement] = ACTIONS(8620), + [aux_sym_raise_event_statement_token1] = ACTIONS(8620), + [sym_stop_statement] = ACTIONS(8620), + [sym_beep_statement] = ACTIONS(8620), + [aux_sym_unload_statement_token1] = ACTIONS(8620), + [aux_sym_def_type_statement_token1] = ACTIONS(8620), + [aux_sym_def_type_statement_token2] = ACTIONS(8620), + [aux_sym_def_type_statement_token3] = ACTIONS(8620), + [aux_sym_def_type_statement_token4] = ACTIONS(8620), + [aux_sym_def_type_statement_token5] = ACTIONS(8620), + [aux_sym_def_type_statement_token6] = ACTIONS(8620), + [aux_sym_def_type_statement_token7] = ACTIONS(8620), + [aux_sym_def_type_statement_token8] = ACTIONS(8620), + [aux_sym_def_type_statement_token9] = ACTIONS(8620), + [aux_sym_def_type_statement_token10] = ACTIONS(8620), + [aux_sym_def_type_statement_token11] = ACTIONS(8620), + [aux_sym_def_type_statement_token12] = ACTIONS(8620), + [aux_sym_def_type_statement_token13] = ACTIONS(8620), + [aux_sym_def_type_statement_token14] = ACTIONS(8620), + [aux_sym_call_statement_token1] = ACTIONS(8620), + [sym__ambiguous_call_statement] = ACTIONS(8620), + [aux_sym_addressof_expression_token1] = ACTIONS(8620), + [aux_sym_type_of_expression_token1] = ACTIONS(8620), + [aux_sym_unary_expression_token1] = ACTIONS(8620), + [sym_string_literal] = ACTIONS(8622), + [sym_number_literal] = ACTIONS(8622), + [aux_sym_boolean_literal_token1] = ACTIONS(8620), + [aux_sym_boolean_literal_token2] = ACTIONS(8620), + [sym_nothing_literal] = ACTIONS(8620), + [sym_null_literal] = ACTIONS(8620), + [sym_empty_literal] = ACTIONS(8620), + [sym_date_literal] = ACTIONS(8622), + [anon_sym_POUND] = ACTIONS(8620), + }, + [STATE(5397)] = { + [aux_sym_erase_statement_repeat1] = STATE(5496), + [sym_identifier] = ACTIONS(8397), + [sym_newline] = ACTIONS(8399), + [anon_sym_COLON] = ACTIONS(8399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8397), + [aux_sym_frm_property_statement_token1] = ACTIONS(8397), + [anon_sym_DOT] = ACTIONS(8397), + [anon_sym_BANG] = ACTIONS(8399), + [aux_sym__attribute_identifier_token1] = ACTIONS(8397), + [aux_sym_option_statement_token3] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8397), + [aux_sym_preprocessor_const_token1] = ACTIONS(8397), + [sym_static_modifier] = ACTIONS(8397), + [sym__dim_keyword] = ACTIONS(8397), + [sym__redim_keyword] = ACTIONS(8397), + [aux_sym_get_accessor_token1] = ACTIONS(8397), + [aux_sym_set_accessor_token1] = ACTIONS(8397), + [anon_sym_COMMA] = ACTIONS(10579), + [aux_sym_const_declaration_token1] = ACTIONS(8397), + [anon_sym_LPAREN] = ACTIONS(8399), + [aux_sym_as_type_clause_token2] = ACTIONS(8397), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8397), + [aux_sym_visibility_token1] = ACTIONS(8397), + [aux_sym_visibility_token2] = ACTIONS(8397), + [aux_sym_elseif_fragment_token1] = ACTIONS(8397), + [aux_sym_else_fragment_token1] = ACTIONS(8397), + [aux_sym_select_statement_token1] = ACTIONS(8397), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8397), + [aux_sym__for_header_token1] = ACTIONS(8397), + [aux_sym_do_statement_token1] = ACTIONS(8397), + [aux_sym_do_condition_token1] = ACTIONS(8397), + [aux_sym_with_statement_token1] = ACTIONS(8397), + [aux_sym_exit_statement_token1] = ACTIONS(8397), + [sym_end_statement] = ACTIONS(8399), + [aux_sym_on_goto_statement_token1] = ACTIONS(8397), + [aux_sym_on_goto_statement_token2] = ACTIONS(8397), + [aux_sym_on_error_statement_token2] = ACTIONS(8397), + [sym__ambiguous_redim_statement] = ACTIONS(8399), + [aux_sym_erase_statement_token1] = ACTIONS(8397), + [aux_sym_open_statement_token1] = ACTIONS(8397), + [aux_sym_file_mode_token2] = ACTIONS(8397), + [aux_sym_file_access_token2] = ACTIONS(8397), + [aux_sym_file_lock_token2] = ACTIONS(8397), + [aux_sym_print_statement_token1] = ACTIONS(8397), + [anon_sym_PLUS] = ACTIONS(8399), + [anon_sym_DASH] = ACTIONS(8397), + [anon_sym_QMARK] = ACTIONS(8399), + [aux_sym_close_statement_token1] = ACTIONS(8397), + [aux_sym_put_statement_token1] = ACTIONS(8397), + [aux_sym_unlock_statement_token1] = ACTIONS(8397), + [aux_sym_seek_statement_token1] = ACTIONS(8397), + [sym_reset_statement] = ACTIONS(8397), + [aux_sym_raise_event_statement_token1] = ACTIONS(8397), + [sym_stop_statement] = ACTIONS(8397), + [sym_beep_statement] = ACTIONS(8397), + [aux_sym_unload_statement_token1] = ACTIONS(8397), + [aux_sym_def_type_statement_token1] = ACTIONS(8397), + [aux_sym_def_type_statement_token2] = ACTIONS(8397), + [aux_sym_def_type_statement_token3] = ACTIONS(8397), + [aux_sym_def_type_statement_token4] = ACTIONS(8397), + [aux_sym_def_type_statement_token5] = ACTIONS(8397), + [aux_sym_def_type_statement_token6] = ACTIONS(8397), + [aux_sym_def_type_statement_token7] = ACTIONS(8397), + [aux_sym_def_type_statement_token8] = ACTIONS(8397), + [aux_sym_def_type_statement_token9] = ACTIONS(8397), + [aux_sym_def_type_statement_token10] = ACTIONS(8397), + [aux_sym_def_type_statement_token11] = ACTIONS(8397), + [aux_sym_def_type_statement_token12] = ACTIONS(8397), + [aux_sym_def_type_statement_token13] = ACTIONS(8397), + [aux_sym_def_type_statement_token14] = ACTIONS(8397), + [aux_sym_call_statement_token1] = ACTIONS(8397), + [sym__ambiguous_call_statement] = ACTIONS(8397), + [aux_sym_addressof_expression_token1] = ACTIONS(8397), + [aux_sym_type_of_expression_token1] = ACTIONS(8397), + [aux_sym_unary_expression_token1] = ACTIONS(8397), + [sym_string_literal] = ACTIONS(8399), + [sym_number_literal] = ACTIONS(8399), + [aux_sym_boolean_literal_token1] = ACTIONS(8397), + [aux_sym_boolean_literal_token2] = ACTIONS(8397), + [sym_nothing_literal] = ACTIONS(8397), + [sym_null_literal] = ACTIONS(8397), + [sym_empty_literal] = ACTIONS(8397), + [sym_date_literal] = ACTIONS(8399), + [anon_sym_POUND] = ACTIONS(8397), + }, + [STATE(5398)] = { + [sym_identifier] = ACTIONS(8070), + [sym_newline] = ACTIONS(8072), + [anon_sym_COLON] = ACTIONS(8072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8070), + [aux_sym_frm_property_statement_token1] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(8072), + [anon_sym_DOT] = ACTIONS(8070), + [anon_sym_BANG] = ACTIONS(8072), + [aux_sym__attribute_identifier_token1] = ACTIONS(8070), + [aux_sym_option_statement_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8070), + [aux_sym_preprocessor_const_token1] = ACTIONS(8070), + [sym_static_modifier] = ACTIONS(8070), + [sym__dim_keyword] = ACTIONS(8070), + [sym__redim_keyword] = ACTIONS(8070), + [aux_sym_get_accessor_token1] = ACTIONS(8070), + [aux_sym_set_accessor_token1] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [aux_sym_const_declaration_token1] = ACTIONS(8070), + [anon_sym_LPAREN] = ACTIONS(8072), + [aux_sym_as_type_clause_token2] = ACTIONS(8070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8070), + [aux_sym_visibility_token1] = ACTIONS(8070), + [aux_sym_visibility_token2] = ACTIONS(8070), + [aux_sym_elseif_fragment_token1] = ACTIONS(8070), + [aux_sym_else_fragment_token1] = ACTIONS(8070), + [aux_sym_select_statement_token1] = ACTIONS(8070), + [aux_sym__for_header_token1] = ACTIONS(8070), + [aux_sym_do_statement_token1] = ACTIONS(8070), + [aux_sym_do_condition_token1] = ACTIONS(8070), + [aux_sym_with_statement_token1] = ACTIONS(8070), + [aux_sym_exit_statement_token1] = ACTIONS(8070), + [sym_end_statement] = ACTIONS(8072), + [aux_sym_on_goto_statement_token1] = ACTIONS(8070), + [aux_sym_on_goto_statement_token2] = ACTIONS(8070), + [aux_sym_on_error_statement_token2] = ACTIONS(8070), + [sym__ambiguous_redim_statement] = ACTIONS(8072), + [aux_sym_erase_statement_token1] = ACTIONS(8070), + [aux_sym_open_statement_token1] = ACTIONS(8070), + [aux_sym_file_mode_token2] = ACTIONS(8070), + [aux_sym_file_access_token2] = ACTIONS(8070), + [aux_sym_file_lock_token2] = ACTIONS(8070), + [aux_sym_print_statement_token1] = ACTIONS(8070), + [anon_sym_PLUS] = ACTIONS(8072), + [anon_sym_DASH] = ACTIONS(8070), + [anon_sym_QMARK] = ACTIONS(8072), + [aux_sym_close_statement_token1] = ACTIONS(8070), + [aux_sym_put_statement_token1] = ACTIONS(8070), + [aux_sym_unlock_statement_token1] = ACTIONS(8070), + [aux_sym_seek_statement_token1] = ACTIONS(8070), + [sym_reset_statement] = ACTIONS(8070), + [aux_sym_raise_event_statement_token1] = ACTIONS(8070), + [sym_stop_statement] = ACTIONS(8070), + [sym_beep_statement] = ACTIONS(8070), + [aux_sym_unload_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token2] = ACTIONS(8070), + [aux_sym_def_type_statement_token3] = ACTIONS(8070), + [aux_sym_def_type_statement_token4] = ACTIONS(8070), + [aux_sym_def_type_statement_token5] = ACTIONS(8070), + [aux_sym_def_type_statement_token6] = ACTIONS(8070), + [aux_sym_def_type_statement_token7] = ACTIONS(8070), + [aux_sym_def_type_statement_token8] = ACTIONS(8070), + [aux_sym_def_type_statement_token9] = ACTIONS(8070), + [aux_sym_def_type_statement_token10] = ACTIONS(8070), + [aux_sym_def_type_statement_token11] = ACTIONS(8070), + [aux_sym_def_type_statement_token12] = ACTIONS(8070), + [aux_sym_def_type_statement_token13] = ACTIONS(8070), + [aux_sym_def_type_statement_token14] = ACTIONS(8070), + [aux_sym_call_statement_token1] = ACTIONS(8070), + [sym__ambiguous_call_statement] = ACTIONS(8070), + [aux_sym_addressof_expression_token1] = ACTIONS(8070), + [aux_sym_type_of_expression_token1] = ACTIONS(8070), + [aux_sym_unary_expression_token1] = ACTIONS(8070), + [sym_string_literal] = ACTIONS(8072), + [sym_number_literal] = ACTIONS(8072), + [aux_sym_boolean_literal_token1] = ACTIONS(8070), + [aux_sym_boolean_literal_token2] = ACTIONS(8070), + [sym_nothing_literal] = ACTIONS(8070), + [sym_null_literal] = ACTIONS(8070), + [sym_empty_literal] = ACTIONS(8070), + [sym_date_literal] = ACTIONS(8072), + [anon_sym_POUND] = ACTIONS(8070), + }, + [STATE(5399)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5313), + [sym_identifier] = ACTIONS(8540), + [sym_newline] = ACTIONS(8542), + [anon_sym_COLON] = ACTIONS(8542), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8540), + [aux_sym_frm_property_statement_token1] = ACTIONS(8540), + [anon_sym_DOT] = ACTIONS(8540), + [anon_sym_BANG] = ACTIONS(8542), + [aux_sym__attribute_identifier_token1] = ACTIONS(8540), + [aux_sym_option_statement_token3] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8540), + [aux_sym_preprocessor_const_token1] = ACTIONS(8540), + [sym_static_modifier] = ACTIONS(8540), + [sym__dim_keyword] = ACTIONS(8540), + [sym__redim_keyword] = ACTIONS(8540), + [aux_sym_get_accessor_token1] = ACTIONS(8540), + [aux_sym_set_accessor_token1] = ACTIONS(8540), + [anon_sym_COMMA] = ACTIONS(10545), + [aux_sym_const_declaration_token1] = ACTIONS(8540), + [anon_sym_LPAREN] = ACTIONS(8542), + [aux_sym_as_type_clause_token2] = ACTIONS(8540), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8540), + [aux_sym_visibility_token1] = ACTIONS(8540), + [aux_sym_visibility_token2] = ACTIONS(8540), + [aux_sym_elseif_fragment_token1] = ACTIONS(8540), + [aux_sym_else_fragment_token1] = ACTIONS(8540), + [aux_sym_select_statement_token1] = ACTIONS(8540), + [aux_sym__for_header_token1] = ACTIONS(8540), + [aux_sym_do_statement_token1] = ACTIONS(8540), + [aux_sym_do_statement_token2] = ACTIONS(8540), + [aux_sym_do_condition_token1] = ACTIONS(8540), + [aux_sym_with_statement_token1] = ACTIONS(8540), + [aux_sym_exit_statement_token1] = ACTIONS(8540), + [sym_end_statement] = ACTIONS(8542), + [aux_sym_on_goto_statement_token1] = ACTIONS(8540), + [aux_sym_on_goto_statement_token2] = ACTIONS(8540), + [aux_sym_on_error_statement_token2] = ACTIONS(8540), + [sym__ambiguous_redim_statement] = ACTIONS(8542), + [aux_sym_erase_statement_token1] = ACTIONS(8540), + [aux_sym_open_statement_token1] = ACTIONS(8540), + [aux_sym_file_mode_token2] = ACTIONS(8540), + [aux_sym_file_access_token2] = ACTIONS(8540), + [aux_sym_file_lock_token2] = ACTIONS(8540), + [aux_sym_print_statement_token1] = ACTIONS(8540), + [anon_sym_PLUS] = ACTIONS(8542), + [anon_sym_DASH] = ACTIONS(8540), + [anon_sym_QMARK] = ACTIONS(8542), + [aux_sym_close_statement_token1] = ACTIONS(8540), + [aux_sym_put_statement_token1] = ACTIONS(8540), + [aux_sym_unlock_statement_token1] = ACTIONS(8540), + [aux_sym_seek_statement_token1] = ACTIONS(8540), + [sym_reset_statement] = ACTIONS(8540), + [aux_sym_raise_event_statement_token1] = ACTIONS(8540), + [sym_stop_statement] = ACTIONS(8540), + [sym_beep_statement] = ACTIONS(8540), + [aux_sym_unload_statement_token1] = ACTIONS(8540), + [aux_sym_def_type_statement_token1] = ACTIONS(8540), + [aux_sym_def_type_statement_token2] = ACTIONS(8540), + [aux_sym_def_type_statement_token3] = ACTIONS(8540), + [aux_sym_def_type_statement_token4] = ACTIONS(8540), + [aux_sym_def_type_statement_token5] = ACTIONS(8540), + [aux_sym_def_type_statement_token6] = ACTIONS(8540), + [aux_sym_def_type_statement_token7] = ACTIONS(8540), + [aux_sym_def_type_statement_token8] = ACTIONS(8540), + [aux_sym_def_type_statement_token9] = ACTIONS(8540), + [aux_sym_def_type_statement_token10] = ACTIONS(8540), + [aux_sym_def_type_statement_token11] = ACTIONS(8540), + [aux_sym_def_type_statement_token12] = ACTIONS(8540), + [aux_sym_def_type_statement_token13] = ACTIONS(8540), + [aux_sym_def_type_statement_token14] = ACTIONS(8540), + [aux_sym_call_statement_token1] = ACTIONS(8540), + [sym__ambiguous_call_statement] = ACTIONS(8540), + [aux_sym_addressof_expression_token1] = ACTIONS(8540), + [aux_sym_type_of_expression_token1] = ACTIONS(8540), + [aux_sym_unary_expression_token1] = ACTIONS(8540), + [sym_string_literal] = ACTIONS(8542), + [sym_number_literal] = ACTIONS(8542), + [aux_sym_boolean_literal_token1] = ACTIONS(8540), + [aux_sym_boolean_literal_token2] = ACTIONS(8540), + [sym_nothing_literal] = ACTIONS(8540), + [sym_null_literal] = ACTIONS(8540), + [sym_empty_literal] = ACTIONS(8540), + [sym_date_literal] = ACTIONS(8542), + [anon_sym_POUND] = ACTIONS(8540), + }, + [STATE(5400)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5400), + [sym_identifier] = ACTIONS(8386), + [sym_newline] = ACTIONS(8388), + [anon_sym_COLON] = ACTIONS(8388), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8386), + [aux_sym_frm_property_statement_token1] = ACTIONS(8386), + [anon_sym_DOT] = ACTIONS(8386), + [anon_sym_BANG] = ACTIONS(8388), + [aux_sym__attribute_identifier_token1] = ACTIONS(8386), + [aux_sym_option_statement_token3] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8386), + [aux_sym_preprocessor_const_token1] = ACTIONS(8386), + [sym_static_modifier] = ACTIONS(8386), + [sym__dim_keyword] = ACTIONS(8386), + [sym__redim_keyword] = ACTIONS(8386), + [aux_sym_get_accessor_token1] = ACTIONS(8386), + [aux_sym_set_accessor_token1] = ACTIONS(8386), + [anon_sym_COMMA] = ACTIONS(10581), + [aux_sym_const_declaration_token1] = ACTIONS(8386), + [anon_sym_LPAREN] = ACTIONS(8388), + [aux_sym_as_type_clause_token2] = ACTIONS(8386), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8386), + [aux_sym_visibility_token1] = ACTIONS(8386), + [aux_sym_visibility_token2] = ACTIONS(8386), + [aux_sym_elseif_fragment_token1] = ACTIONS(8386), + [aux_sym_else_fragment_token1] = ACTIONS(8386), + [aux_sym_select_statement_token1] = ACTIONS(8386), + [aux_sym__for_header_token1] = ACTIONS(8386), + [aux_sym_do_statement_token1] = ACTIONS(8386), + [aux_sym_do_statement_token2] = ACTIONS(8386), + [aux_sym_do_condition_token1] = ACTIONS(8386), + [aux_sym_with_statement_token1] = ACTIONS(8386), + [aux_sym_exit_statement_token1] = ACTIONS(8386), + [sym_end_statement] = ACTIONS(8388), + [aux_sym_on_goto_statement_token1] = ACTIONS(8386), + [aux_sym_on_goto_statement_token2] = ACTIONS(8386), + [aux_sym_on_error_statement_token2] = ACTIONS(8386), + [sym__ambiguous_redim_statement] = ACTIONS(8388), + [aux_sym_erase_statement_token1] = ACTIONS(8386), + [aux_sym_open_statement_token1] = ACTIONS(8386), + [aux_sym_file_mode_token2] = ACTIONS(8386), + [aux_sym_file_access_token2] = ACTIONS(8386), + [aux_sym_file_lock_token2] = ACTIONS(8386), + [aux_sym_print_statement_token1] = ACTIONS(8386), + [anon_sym_PLUS] = ACTIONS(8388), + [anon_sym_DASH] = ACTIONS(8386), + [anon_sym_QMARK] = ACTIONS(8388), + [aux_sym_close_statement_token1] = ACTIONS(8386), + [aux_sym_put_statement_token1] = ACTIONS(8386), + [aux_sym_unlock_statement_token1] = ACTIONS(8386), + [aux_sym_seek_statement_token1] = ACTIONS(8386), + [sym_reset_statement] = ACTIONS(8386), + [aux_sym_raise_event_statement_token1] = ACTIONS(8386), + [sym_stop_statement] = ACTIONS(8386), + [sym_beep_statement] = ACTIONS(8386), + [aux_sym_unload_statement_token1] = ACTIONS(8386), + [aux_sym_def_type_statement_token1] = ACTIONS(8386), + [aux_sym_def_type_statement_token2] = ACTIONS(8386), + [aux_sym_def_type_statement_token3] = ACTIONS(8386), + [aux_sym_def_type_statement_token4] = ACTIONS(8386), + [aux_sym_def_type_statement_token5] = ACTIONS(8386), + [aux_sym_def_type_statement_token6] = ACTIONS(8386), + [aux_sym_def_type_statement_token7] = ACTIONS(8386), + [aux_sym_def_type_statement_token8] = ACTIONS(8386), + [aux_sym_def_type_statement_token9] = ACTIONS(8386), + [aux_sym_def_type_statement_token10] = ACTIONS(8386), + [aux_sym_def_type_statement_token11] = ACTIONS(8386), + [aux_sym_def_type_statement_token12] = ACTIONS(8386), + [aux_sym_def_type_statement_token13] = ACTIONS(8386), + [aux_sym_def_type_statement_token14] = ACTIONS(8386), + [aux_sym_call_statement_token1] = ACTIONS(8386), + [sym__ambiguous_call_statement] = ACTIONS(8386), + [aux_sym_addressof_expression_token1] = ACTIONS(8386), + [aux_sym_type_of_expression_token1] = ACTIONS(8386), + [aux_sym_unary_expression_token1] = ACTIONS(8386), + [sym_string_literal] = ACTIONS(8388), + [sym_number_literal] = ACTIONS(8388), + [aux_sym_boolean_literal_token1] = ACTIONS(8386), + [aux_sym_boolean_literal_token2] = ACTIONS(8386), + [sym_nothing_literal] = ACTIONS(8386), + [sym_null_literal] = ACTIONS(8386), + [sym_empty_literal] = ACTIONS(8386), + [sym_date_literal] = ACTIONS(8388), + [anon_sym_POUND] = ACTIONS(8386), + }, + [STATE(5401)] = { + [sym_identifier] = ACTIONS(6617), + [sym_newline] = ACTIONS(6619), + [anon_sym_COLON] = ACTIONS(6619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6617), + [aux_sym_frm_property_statement_token1] = ACTIONS(6617), + [anon_sym_DOT] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(6619), + [aux_sym__attribute_identifier_token1] = ACTIONS(6617), + [aux_sym_option_statement_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6617), + [aux_sym_preprocessor_const_token1] = ACTIONS(6617), + [sym_static_modifier] = ACTIONS(6617), + [sym__dim_keyword] = ACTIONS(6617), + [sym__redim_keyword] = ACTIONS(6617), + [aux_sym_get_accessor_token1] = ACTIONS(6617), + [aux_sym_set_accessor_token1] = ACTIONS(6617), + [aux_sym_const_declaration_token1] = ACTIONS(6617), + [anon_sym_LPAREN] = ACTIONS(6619), + [aux_sym_as_type_clause_token2] = ACTIONS(6617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6617), + [aux_sym_visibility_token1] = ACTIONS(6617), + [aux_sym_visibility_token2] = ACTIONS(6617), + [aux_sym_elseif_fragment_token1] = ACTIONS(6617), + [aux_sym_else_fragment_token1] = ACTIONS(6617), + [aux_sym_select_statement_token1] = ACTIONS(6617), + [aux_sym__for_header_token1] = ACTIONS(6617), + [aux_sym_do_statement_token1] = ACTIONS(6617), + [aux_sym_do_condition_token1] = ACTIONS(6617), + [aux_sym_with_statement_token1] = ACTIONS(6617), + [aux_sym_exit_statement_token1] = ACTIONS(6617), + [sym_end_statement] = ACTIONS(6619), + [aux_sym_on_goto_statement_token1] = ACTIONS(6617), + [aux_sym_on_goto_statement_token2] = ACTIONS(6617), + [aux_sym_on_error_statement_token2] = ACTIONS(6617), + [sym__ambiguous_redim_statement] = ACTIONS(6619), + [aux_sym_erase_statement_token1] = ACTIONS(6617), + [aux_sym_open_statement_token1] = ACTIONS(6617), + [aux_sym_file_mode_token2] = ACTIONS(6617), + [aux_sym_file_access_token2] = ACTIONS(6617), + [aux_sym_file_lock_token2] = ACTIONS(6617), + [aux_sym_print_statement_token1] = ACTIONS(6617), + [anon_sym_PLUS] = ACTIONS(6619), + [anon_sym_DASH] = ACTIONS(6617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10136), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10138), + [anon_sym_QMARK] = ACTIONS(6619), + [aux_sym_close_statement_token1] = ACTIONS(6617), + [aux_sym_put_statement_token1] = ACTIONS(6617), + [aux_sym_unlock_statement_token1] = ACTIONS(6617), + [aux_sym_seek_statement_token1] = ACTIONS(6617), + [sym_reset_statement] = ACTIONS(6617), + [aux_sym_raise_event_statement_token1] = ACTIONS(6617), + [sym_stop_statement] = ACTIONS(6617), + [sym_beep_statement] = ACTIONS(6617), + [aux_sym_unload_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token2] = ACTIONS(6617), + [aux_sym_def_type_statement_token3] = ACTIONS(6617), + [aux_sym_def_type_statement_token4] = ACTIONS(6617), + [aux_sym_def_type_statement_token5] = ACTIONS(6617), + [aux_sym_def_type_statement_token6] = ACTIONS(6617), + [aux_sym_def_type_statement_token7] = ACTIONS(6617), + [aux_sym_def_type_statement_token8] = ACTIONS(6617), + [aux_sym_def_type_statement_token9] = ACTIONS(6617), + [aux_sym_def_type_statement_token10] = ACTIONS(6617), + [aux_sym_def_type_statement_token11] = ACTIONS(6617), + [aux_sym_def_type_statement_token12] = ACTIONS(6617), + [aux_sym_def_type_statement_token13] = ACTIONS(6617), + [aux_sym_def_type_statement_token14] = ACTIONS(6617), + [aux_sym_call_statement_token1] = ACTIONS(6617), + [sym__ambiguous_call_statement] = ACTIONS(6617), + [aux_sym_addressof_expression_token1] = ACTIONS(6617), + [aux_sym_type_of_expression_token1] = ACTIONS(6617), + [aux_sym_unary_expression_token1] = ACTIONS(6617), + [sym_string_literal] = ACTIONS(6619), + [sym_number_literal] = ACTIONS(6619), + [aux_sym_boolean_literal_token1] = ACTIONS(6617), + [aux_sym_boolean_literal_token2] = ACTIONS(6617), + [sym_nothing_literal] = ACTIONS(6617), + [sym_null_literal] = ACTIONS(6617), + [sym_empty_literal] = ACTIONS(6617), + [sym_date_literal] = ACTIONS(6619), + [anon_sym_POUND] = ACTIONS(6617), + }, + [STATE(5402)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5782), + [sym_identifier] = ACTIONS(8495), + [sym_newline] = ACTIONS(8497), + [anon_sym_COLON] = ACTIONS(8497), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8495), + [aux_sym_frm_property_statement_token1] = ACTIONS(8495), + [anon_sym_DOT] = ACTIONS(8495), + [anon_sym_BANG] = ACTIONS(8497), + [aux_sym__attribute_identifier_token1] = ACTIONS(8495), + [aux_sym_option_statement_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8495), + [aux_sym_preprocessor_const_token1] = ACTIONS(8495), + [sym_static_modifier] = ACTIONS(8495), + [sym__dim_keyword] = ACTIONS(8495), + [sym__redim_keyword] = ACTIONS(8495), + [aux_sym_get_accessor_token1] = ACTIONS(8495), + [aux_sym_set_accessor_token1] = ACTIONS(8495), + [anon_sym_COMMA] = ACTIONS(5154), + [aux_sym_const_declaration_token1] = ACTIONS(8495), + [anon_sym_LPAREN] = ACTIONS(8497), + [aux_sym_as_type_clause_token2] = ACTIONS(8495), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8495), + [aux_sym_visibility_token1] = ACTIONS(8495), + [aux_sym_visibility_token2] = ACTIONS(8495), + [aux_sym_elseif_fragment_token1] = ACTIONS(8495), + [aux_sym_else_fragment_token1] = ACTIONS(8495), + [aux_sym_select_statement_token1] = ACTIONS(8495), + [aux_sym__for_header_token1] = ACTIONS(8495), + [aux_sym_do_statement_token1] = ACTIONS(8495), + [aux_sym_do_condition_token1] = ACTIONS(8495), + [aux_sym_with_statement_token1] = ACTIONS(8495), + [aux_sym_exit_statement_token1] = ACTIONS(8495), + [sym_end_statement] = ACTIONS(8497), + [aux_sym_on_goto_statement_token1] = ACTIONS(8495), + [aux_sym_on_goto_statement_token2] = ACTIONS(8495), + [aux_sym_on_error_statement_token2] = ACTIONS(8495), + [sym__ambiguous_redim_statement] = ACTIONS(8497), + [aux_sym_erase_statement_token1] = ACTIONS(8495), + [aux_sym_open_statement_token1] = ACTIONS(8495), + [aux_sym_file_mode_token2] = ACTIONS(8495), + [aux_sym_file_access_token2] = ACTIONS(8495), + [aux_sym_file_lock_token2] = ACTIONS(8495), + [aux_sym_print_statement_token1] = ACTIONS(8495), + [anon_sym_PLUS] = ACTIONS(8497), + [anon_sym_DASH] = ACTIONS(8495), + [anon_sym_QMARK] = ACTIONS(8497), + [aux_sym_close_statement_token1] = ACTIONS(8495), + [aux_sym_put_statement_token1] = ACTIONS(8495), + [aux_sym_unlock_statement_token1] = ACTIONS(8495), + [aux_sym_seek_statement_token1] = ACTIONS(8495), + [sym_reset_statement] = ACTIONS(8495), + [aux_sym_raise_event_statement_token1] = ACTIONS(8495), + [sym_stop_statement] = ACTIONS(8495), + [sym_beep_statement] = ACTIONS(8495), + [aux_sym_unload_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token2] = ACTIONS(8495), + [aux_sym_def_type_statement_token3] = ACTIONS(8495), + [aux_sym_def_type_statement_token4] = ACTIONS(8495), + [aux_sym_def_type_statement_token5] = ACTIONS(8495), + [aux_sym_def_type_statement_token6] = ACTIONS(8495), + [aux_sym_def_type_statement_token7] = ACTIONS(8495), + [aux_sym_def_type_statement_token8] = ACTIONS(8495), + [aux_sym_def_type_statement_token9] = ACTIONS(8495), + [aux_sym_def_type_statement_token10] = ACTIONS(8495), + [aux_sym_def_type_statement_token11] = ACTIONS(8495), + [aux_sym_def_type_statement_token12] = ACTIONS(8495), + [aux_sym_def_type_statement_token13] = ACTIONS(8495), + [aux_sym_def_type_statement_token14] = ACTIONS(8495), + [aux_sym_call_statement_token1] = ACTIONS(8495), + [sym__ambiguous_call_statement] = ACTIONS(8495), + [aux_sym_addressof_expression_token1] = ACTIONS(8495), + [aux_sym_type_of_expression_token1] = ACTIONS(8495), + [aux_sym_unary_expression_token1] = ACTIONS(8495), + [sym_string_literal] = ACTIONS(8497), + [sym_number_literal] = ACTIONS(8497), + [aux_sym_boolean_literal_token1] = ACTIONS(8495), + [aux_sym_boolean_literal_token2] = ACTIONS(8495), + [sym_nothing_literal] = ACTIONS(8495), + [sym_null_literal] = ACTIONS(8495), + [sym_empty_literal] = ACTIONS(8495), + [sym_date_literal] = ACTIONS(8497), + [anon_sym_POUND] = ACTIONS(8495), + }, + [STATE(5403)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5361), + [sym_identifier] = ACTIONS(8495), + [sym_newline] = ACTIONS(8497), + [anon_sym_COLON] = ACTIONS(8497), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8495), + [aux_sym_frm_property_statement_token1] = ACTIONS(8495), + [anon_sym_DOT] = ACTIONS(8495), + [anon_sym_BANG] = ACTIONS(8497), + [aux_sym__attribute_identifier_token1] = ACTIONS(8495), + [aux_sym_option_statement_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8495), + [aux_sym_preprocessor_const_token1] = ACTIONS(8495), + [sym_static_modifier] = ACTIONS(8495), + [sym__dim_keyword] = ACTIONS(8495), + [sym__redim_keyword] = ACTIONS(8495), + [aux_sym_get_accessor_token1] = ACTIONS(8495), + [aux_sym_set_accessor_token1] = ACTIONS(8495), + [anon_sym_COMMA] = ACTIONS(5154), + [aux_sym_const_declaration_token1] = ACTIONS(8495), + [anon_sym_LPAREN] = ACTIONS(8497), + [aux_sym_as_type_clause_token2] = ACTIONS(8495), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8495), + [aux_sym_visibility_token1] = ACTIONS(8495), + [aux_sym_visibility_token2] = ACTIONS(8495), + [aux_sym_elseif_fragment_token1] = ACTIONS(8495), + [aux_sym_else_fragment_token1] = ACTIONS(8495), + [aux_sym_select_statement_token1] = ACTIONS(8495), + [aux_sym__for_header_token1] = ACTIONS(8495), + [aux_sym_do_statement_token1] = ACTIONS(8495), + [aux_sym_do_condition_token1] = ACTIONS(8495), + [aux_sym_with_statement_token1] = ACTIONS(8495), + [aux_sym_exit_statement_token1] = ACTIONS(8495), + [sym_end_statement] = ACTIONS(8497), + [aux_sym_on_goto_statement_token1] = ACTIONS(8495), + [aux_sym_on_goto_statement_token2] = ACTIONS(8495), + [aux_sym_on_error_statement_token2] = ACTIONS(8495), + [sym__ambiguous_redim_statement] = ACTIONS(8497), + [aux_sym_erase_statement_token1] = ACTIONS(8495), + [aux_sym_open_statement_token1] = ACTIONS(8495), + [aux_sym_file_mode_token2] = ACTIONS(8495), + [aux_sym_file_access_token2] = ACTIONS(8495), + [aux_sym_file_lock_token2] = ACTIONS(8495), + [aux_sym_print_statement_token1] = ACTIONS(8495), + [anon_sym_PLUS] = ACTIONS(8497), + [anon_sym_DASH] = ACTIONS(8495), + [anon_sym_QMARK] = ACTIONS(8497), + [aux_sym_close_statement_token1] = ACTIONS(8495), + [aux_sym_put_statement_token1] = ACTIONS(8495), + [aux_sym_unlock_statement_token1] = ACTIONS(8495), + [aux_sym_seek_statement_token1] = ACTIONS(8495), + [sym_reset_statement] = ACTIONS(8495), + [aux_sym_raise_event_statement_token1] = ACTIONS(8495), + [sym_stop_statement] = ACTIONS(8495), + [sym_beep_statement] = ACTIONS(8495), + [aux_sym_unload_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token2] = ACTIONS(8495), + [aux_sym_def_type_statement_token3] = ACTIONS(8495), + [aux_sym_def_type_statement_token4] = ACTIONS(8495), + [aux_sym_def_type_statement_token5] = ACTIONS(8495), + [aux_sym_def_type_statement_token6] = ACTIONS(8495), + [aux_sym_def_type_statement_token7] = ACTIONS(8495), + [aux_sym_def_type_statement_token8] = ACTIONS(8495), + [aux_sym_def_type_statement_token9] = ACTIONS(8495), + [aux_sym_def_type_statement_token10] = ACTIONS(8495), + [aux_sym_def_type_statement_token11] = ACTIONS(8495), + [aux_sym_def_type_statement_token12] = ACTIONS(8495), + [aux_sym_def_type_statement_token13] = ACTIONS(8495), + [aux_sym_def_type_statement_token14] = ACTIONS(8495), + [aux_sym_call_statement_token1] = ACTIONS(8495), + [sym__ambiguous_call_statement] = ACTIONS(8495), + [aux_sym_addressof_expression_token1] = ACTIONS(8495), + [aux_sym_type_of_expression_token1] = ACTIONS(8495), + [aux_sym_unary_expression_token1] = ACTIONS(8495), + [sym_string_literal] = ACTIONS(8497), + [sym_number_literal] = ACTIONS(8497), + [aux_sym_boolean_literal_token1] = ACTIONS(8495), + [aux_sym_boolean_literal_token2] = ACTIONS(8495), + [sym_nothing_literal] = ACTIONS(8495), + [sym_null_literal] = ACTIONS(8495), + [sym_empty_literal] = ACTIONS(8495), + [sym_date_literal] = ACTIONS(8497), + [anon_sym_POUND] = ACTIONS(8495), + }, + [STATE(5404)] = { + [aux_sym__argument_sequence_repeat1] = STATE(5299), + [sym_identifier] = ACTIONS(8549), + [sym_newline] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8549), + [aux_sym_frm_property_statement_token1] = ACTIONS(8549), + [anon_sym_DOT] = ACTIONS(8549), + [anon_sym_BANG] = ACTIONS(8551), + [aux_sym__attribute_identifier_token1] = ACTIONS(8549), + [aux_sym_option_statement_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8549), + [aux_sym_preprocessor_const_token1] = ACTIONS(8549), + [sym_static_modifier] = ACTIONS(8549), + [sym__dim_keyword] = ACTIONS(8549), + [sym__redim_keyword] = ACTIONS(8549), + [aux_sym_get_accessor_token1] = ACTIONS(8549), + [aux_sym_set_accessor_token1] = ACTIONS(8549), + [anon_sym_COMMA] = ACTIONS(10584), + [aux_sym_const_declaration_token1] = ACTIONS(8549), + [anon_sym_LPAREN] = ACTIONS(8551), + [aux_sym_as_type_clause_token2] = ACTIONS(8549), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8549), + [aux_sym_visibility_token1] = ACTIONS(8549), + [aux_sym_visibility_token2] = ACTIONS(8549), + [aux_sym_elseif_fragment_token1] = ACTIONS(8549), + [aux_sym_else_fragment_token1] = ACTIONS(8549), + [aux_sym_select_statement_token1] = ACTIONS(8549), + [aux_sym__for_header_token1] = ACTIONS(8549), + [aux_sym_do_statement_token1] = ACTIONS(8549), + [aux_sym_do_condition_token1] = ACTIONS(8549), + [aux_sym_with_statement_token1] = ACTIONS(8549), + [aux_sym_exit_statement_token1] = ACTIONS(8549), + [sym_end_statement] = ACTIONS(8551), + [aux_sym_on_goto_statement_token1] = ACTIONS(8549), + [aux_sym_on_goto_statement_token2] = ACTIONS(8549), + [aux_sym_on_error_statement_token2] = ACTIONS(8549), + [sym__ambiguous_redim_statement] = ACTIONS(8551), + [aux_sym_erase_statement_token1] = ACTIONS(8549), + [aux_sym_open_statement_token1] = ACTIONS(8549), + [aux_sym_file_mode_token2] = ACTIONS(8549), + [aux_sym_file_access_token2] = ACTIONS(8549), + [aux_sym_file_lock_token2] = ACTIONS(8549), + [aux_sym_print_statement_token1] = ACTIONS(8549), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_DASH] = ACTIONS(8549), + [anon_sym_QMARK] = ACTIONS(8551), + [aux_sym_close_statement_token1] = ACTIONS(8549), + [aux_sym_put_statement_token1] = ACTIONS(8549), + [aux_sym_unlock_statement_token1] = ACTIONS(8549), + [aux_sym_seek_statement_token1] = ACTIONS(8549), + [sym_reset_statement] = ACTIONS(8549), + [aux_sym_raise_event_statement_token1] = ACTIONS(8549), + [sym_stop_statement] = ACTIONS(8549), + [sym_beep_statement] = ACTIONS(8549), + [aux_sym_unload_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token2] = ACTIONS(8549), + [aux_sym_def_type_statement_token3] = ACTIONS(8549), + [aux_sym_def_type_statement_token4] = ACTIONS(8549), + [aux_sym_def_type_statement_token5] = ACTIONS(8549), + [aux_sym_def_type_statement_token6] = ACTIONS(8549), + [aux_sym_def_type_statement_token7] = ACTIONS(8549), + [aux_sym_def_type_statement_token8] = ACTIONS(8549), + [aux_sym_def_type_statement_token9] = ACTIONS(8549), + [aux_sym_def_type_statement_token10] = ACTIONS(8549), + [aux_sym_def_type_statement_token11] = ACTIONS(8549), + [aux_sym_def_type_statement_token12] = ACTIONS(8549), + [aux_sym_def_type_statement_token13] = ACTIONS(8549), + [aux_sym_def_type_statement_token14] = ACTIONS(8549), + [aux_sym_call_statement_token1] = ACTIONS(8549), + [sym__ambiguous_call_statement] = ACTIONS(8549), + [aux_sym_addressof_expression_token1] = ACTIONS(8549), + [aux_sym_type_of_expression_token1] = ACTIONS(8549), + [aux_sym_unary_expression_token1] = ACTIONS(8549), + [sym_string_literal] = ACTIONS(8551), + [sym_number_literal] = ACTIONS(8551), + [aux_sym_boolean_literal_token1] = ACTIONS(8549), + [aux_sym_boolean_literal_token2] = ACTIONS(8549), + [sym_nothing_literal] = ACTIONS(8549), + [sym_null_literal] = ACTIONS(8549), + [sym_empty_literal] = ACTIONS(8549), + [sym_date_literal] = ACTIONS(8551), + [anon_sym_POUND] = ACTIONS(8549), + }, + [STATE(5405)] = { + [sym_identifier] = ACTIONS(8081), + [sym_newline] = ACTIONS(8083), + [anon_sym_COLON] = ACTIONS(8083), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8081), + [aux_sym_frm_property_statement_token1] = ACTIONS(8081), + [anon_sym_EQ] = ACTIONS(8083), + [anon_sym_DOT] = ACTIONS(8081), + [anon_sym_BANG] = ACTIONS(8083), + [aux_sym__attribute_identifier_token1] = ACTIONS(8081), + [aux_sym_option_statement_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8081), + [aux_sym_preprocessor_const_token1] = ACTIONS(8081), + [sym_static_modifier] = ACTIONS(8081), + [sym__dim_keyword] = ACTIONS(8081), + [sym__redim_keyword] = ACTIONS(8081), + [aux_sym_get_accessor_token1] = ACTIONS(8081), + [aux_sym_set_accessor_token1] = ACTIONS(8081), + [anon_sym_COMMA] = ACTIONS(8083), + [aux_sym_const_declaration_token1] = ACTIONS(8081), + [anon_sym_LPAREN] = ACTIONS(8083), + [aux_sym_as_type_clause_token2] = ACTIONS(8081), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8081), + [aux_sym_visibility_token1] = ACTIONS(8081), + [aux_sym_visibility_token2] = ACTIONS(8081), + [aux_sym_elseif_fragment_token1] = ACTIONS(8081), + [aux_sym_else_fragment_token1] = ACTIONS(8081), + [aux_sym_select_statement_token1] = ACTIONS(8081), + [aux_sym__for_header_token1] = ACTIONS(8081), + [aux_sym_do_statement_token1] = ACTIONS(8081), + [aux_sym_do_condition_token1] = ACTIONS(8081), + [aux_sym_with_statement_token1] = ACTIONS(8081), + [aux_sym_exit_statement_token1] = ACTIONS(8081), + [sym_end_statement] = ACTIONS(8083), + [aux_sym_on_goto_statement_token1] = ACTIONS(8081), + [aux_sym_on_goto_statement_token2] = ACTIONS(8081), + [aux_sym_on_error_statement_token2] = ACTIONS(8081), + [sym__ambiguous_redim_statement] = ACTIONS(8083), + [aux_sym_erase_statement_token1] = ACTIONS(8081), + [aux_sym_open_statement_token1] = ACTIONS(8081), + [aux_sym_file_mode_token2] = ACTIONS(8081), + [aux_sym_file_access_token2] = ACTIONS(8081), + [aux_sym_file_lock_token2] = ACTIONS(8081), + [aux_sym_print_statement_token1] = ACTIONS(8081), + [anon_sym_PLUS] = ACTIONS(8083), + [anon_sym_DASH] = ACTIONS(8081), + [anon_sym_QMARK] = ACTIONS(8083), + [aux_sym_close_statement_token1] = ACTIONS(8081), + [aux_sym_put_statement_token1] = ACTIONS(8081), + [aux_sym_unlock_statement_token1] = ACTIONS(8081), + [aux_sym_seek_statement_token1] = ACTIONS(8081), + [sym_reset_statement] = ACTIONS(8081), + [aux_sym_raise_event_statement_token1] = ACTIONS(8081), + [sym_stop_statement] = ACTIONS(8081), + [sym_beep_statement] = ACTIONS(8081), + [aux_sym_unload_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token2] = ACTIONS(8081), + [aux_sym_def_type_statement_token3] = ACTIONS(8081), + [aux_sym_def_type_statement_token4] = ACTIONS(8081), + [aux_sym_def_type_statement_token5] = ACTIONS(8081), + [aux_sym_def_type_statement_token6] = ACTIONS(8081), + [aux_sym_def_type_statement_token7] = ACTIONS(8081), + [aux_sym_def_type_statement_token8] = ACTIONS(8081), + [aux_sym_def_type_statement_token9] = ACTIONS(8081), + [aux_sym_def_type_statement_token10] = ACTIONS(8081), + [aux_sym_def_type_statement_token11] = ACTIONS(8081), + [aux_sym_def_type_statement_token12] = ACTIONS(8081), + [aux_sym_def_type_statement_token13] = ACTIONS(8081), + [aux_sym_def_type_statement_token14] = ACTIONS(8081), + [aux_sym_call_statement_token1] = ACTIONS(8081), + [sym__ambiguous_call_statement] = ACTIONS(8081), + [aux_sym_addressof_expression_token1] = ACTIONS(8081), + [aux_sym_type_of_expression_token1] = ACTIONS(8081), + [aux_sym_unary_expression_token1] = ACTIONS(8081), + [sym_string_literal] = ACTIONS(8083), + [sym_number_literal] = ACTIONS(8083), + [aux_sym_boolean_literal_token1] = ACTIONS(8081), + [aux_sym_boolean_literal_token2] = ACTIONS(8081), + [sym_nothing_literal] = ACTIONS(8081), + [sym_null_literal] = ACTIONS(8081), + [sym_empty_literal] = ACTIONS(8081), + [sym_date_literal] = ACTIONS(8083), + [anon_sym_POUND] = ACTIONS(8081), + }, + [STATE(5406)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_while_statement_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(5407)] = { + [sym_identifier] = ACTIONS(8525), + [sym_newline] = ACTIONS(8527), + [anon_sym_COLON] = ACTIONS(8527), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8525), + [aux_sym_frm_property_statement_token1] = ACTIONS(8525), + [anon_sym_EQ] = ACTIONS(8527), + [anon_sym_DOT] = ACTIONS(8525), + [anon_sym_BANG] = ACTIONS(8527), + [aux_sym__attribute_identifier_token1] = ACTIONS(8525), + [aux_sym_option_statement_token3] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8525), + [aux_sym_preprocessor_const_token1] = ACTIONS(8525), + [sym_static_modifier] = ACTIONS(8525), + [sym__dim_keyword] = ACTIONS(8525), + [sym__redim_keyword] = ACTIONS(8525), + [aux_sym_get_accessor_token1] = ACTIONS(8525), + [aux_sym_set_accessor_token1] = ACTIONS(8525), + [anon_sym_COMMA] = ACTIONS(8527), + [aux_sym_const_declaration_token1] = ACTIONS(8525), + [anon_sym_LPAREN] = ACTIONS(8527), + [aux_sym_as_type_clause_token2] = ACTIONS(8525), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8525), + [aux_sym_visibility_token1] = ACTIONS(8525), + [aux_sym_visibility_token2] = ACTIONS(8525), + [aux_sym_elseif_fragment_token1] = ACTIONS(8525), + [aux_sym_else_fragment_token1] = ACTIONS(8525), + [aux_sym_select_statement_token1] = ACTIONS(8525), + [aux_sym__for_header_token1] = ACTIONS(8525), + [aux_sym_do_statement_token1] = ACTIONS(8525), + [aux_sym_do_condition_token1] = ACTIONS(8525), + [aux_sym_with_statement_token1] = ACTIONS(8525), + [aux_sym_exit_statement_token1] = ACTIONS(8525), + [sym_end_statement] = ACTIONS(8527), + [aux_sym_on_goto_statement_token1] = ACTIONS(8525), + [aux_sym_on_goto_statement_token2] = ACTIONS(8525), + [aux_sym_on_error_statement_token2] = ACTIONS(8525), + [sym__ambiguous_redim_statement] = ACTIONS(8527), + [aux_sym_erase_statement_token1] = ACTIONS(8525), + [aux_sym_open_statement_token1] = ACTIONS(8525), + [aux_sym_file_mode_token2] = ACTIONS(8525), + [aux_sym_file_access_token2] = ACTIONS(8525), + [aux_sym_file_lock_token2] = ACTIONS(8525), + [aux_sym_print_statement_token1] = ACTIONS(8525), + [anon_sym_PLUS] = ACTIONS(8527), + [anon_sym_DASH] = ACTIONS(8525), + [anon_sym_QMARK] = ACTIONS(8527), + [aux_sym_close_statement_token1] = ACTIONS(8525), + [aux_sym_put_statement_token1] = ACTIONS(8525), + [aux_sym_unlock_statement_token1] = ACTIONS(8525), + [aux_sym_seek_statement_token1] = ACTIONS(8525), + [sym_reset_statement] = ACTIONS(8525), + [aux_sym_raise_event_statement_token1] = ACTIONS(8525), + [sym_stop_statement] = ACTIONS(8525), + [sym_beep_statement] = ACTIONS(8525), + [aux_sym_unload_statement_token1] = ACTIONS(8525), + [aux_sym_def_type_statement_token1] = ACTIONS(8525), + [aux_sym_def_type_statement_token2] = ACTIONS(8525), + [aux_sym_def_type_statement_token3] = ACTIONS(8525), + [aux_sym_def_type_statement_token4] = ACTIONS(8525), + [aux_sym_def_type_statement_token5] = ACTIONS(8525), + [aux_sym_def_type_statement_token6] = ACTIONS(8525), + [aux_sym_def_type_statement_token7] = ACTIONS(8525), + [aux_sym_def_type_statement_token8] = ACTIONS(8525), + [aux_sym_def_type_statement_token9] = ACTIONS(8525), + [aux_sym_def_type_statement_token10] = ACTIONS(8525), + [aux_sym_def_type_statement_token11] = ACTIONS(8525), + [aux_sym_def_type_statement_token12] = ACTIONS(8525), + [aux_sym_def_type_statement_token13] = ACTIONS(8525), + [aux_sym_def_type_statement_token14] = ACTIONS(8525), + [aux_sym_call_statement_token1] = ACTIONS(8525), + [sym__ambiguous_call_statement] = ACTIONS(8525), + [aux_sym_addressof_expression_token1] = ACTIONS(8525), + [aux_sym_type_of_expression_token1] = ACTIONS(8525), + [aux_sym_unary_expression_token1] = ACTIONS(8525), + [sym_string_literal] = ACTIONS(8527), + [sym_number_literal] = ACTIONS(8527), + [aux_sym_boolean_literal_token1] = ACTIONS(8525), + [aux_sym_boolean_literal_token2] = ACTIONS(8525), + [sym_nothing_literal] = ACTIONS(8525), + [sym_null_literal] = ACTIONS(8525), + [sym_empty_literal] = ACTIONS(8525), + [sym_date_literal] = ACTIONS(8527), + [anon_sym_POUND] = ACTIONS(8525), + }, + [STATE(5408)] = { + [sym_identifier] = ACTIONS(5562), + [sym_newline] = ACTIONS(5558), + [anon_sym_COLON] = ACTIONS(5558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5562), + [aux_sym_frm_property_statement_token1] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(10377), + [anon_sym_BANG] = ACTIONS(10379), + [aux_sym__attribute_identifier_token1] = ACTIONS(5562), + [aux_sym_option_statement_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5562), + [aux_sym_preprocessor_const_token1] = ACTIONS(5562), + [sym_static_modifier] = ACTIONS(5562), + [sym__dim_keyword] = ACTIONS(5562), + [sym__redim_keyword] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5562), + [aux_sym_set_accessor_token1] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5558), + [aux_sym_as_type_clause_token2] = ACTIONS(5562), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5562), + [aux_sym_visibility_token1] = ACTIONS(5562), + [aux_sym_visibility_token2] = ACTIONS(5562), + [aux_sym_elseif_fragment_token1] = ACTIONS(5562), + [aux_sym_else_fragment_token1] = ACTIONS(5562), + [aux_sym_select_statement_token1] = ACTIONS(5562), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5562), + [aux_sym__for_header_token1] = ACTIONS(5562), + [aux_sym_do_statement_token1] = ACTIONS(5562), + [aux_sym_do_condition_token1] = ACTIONS(5562), + [aux_sym_with_statement_token1] = ACTIONS(5562), + [aux_sym_exit_statement_token1] = ACTIONS(5562), + [sym_end_statement] = ACTIONS(5558), + [aux_sym_on_goto_statement_token1] = ACTIONS(5562), + [aux_sym_on_goto_statement_token2] = ACTIONS(5562), + [aux_sym_on_error_statement_token2] = ACTIONS(5562), + [sym__ambiguous_redim_statement] = ACTIONS(5558), + [aux_sym_erase_statement_token1] = ACTIONS(5562), + [aux_sym_open_statement_token1] = ACTIONS(5562), + [aux_sym_file_mode_token2] = ACTIONS(5562), + [aux_sym_file_access_token2] = ACTIONS(5562), + [aux_sym_file_lock_token2] = ACTIONS(5562), + [aux_sym_print_statement_token1] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5558), + [aux_sym_close_statement_token1] = ACTIONS(5562), + [aux_sym_put_statement_token1] = ACTIONS(5562), + [aux_sym_unlock_statement_token1] = ACTIONS(5562), + [aux_sym_seek_statement_token1] = ACTIONS(5562), + [sym_reset_statement] = ACTIONS(5562), + [aux_sym_raise_event_statement_token1] = ACTIONS(5562), + [sym_stop_statement] = ACTIONS(5562), + [sym_beep_statement] = ACTIONS(5562), + [aux_sym_unload_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token2] = ACTIONS(5562), + [aux_sym_def_type_statement_token3] = ACTIONS(5562), + [aux_sym_def_type_statement_token4] = ACTIONS(5562), + [aux_sym_def_type_statement_token5] = ACTIONS(5562), + [aux_sym_def_type_statement_token6] = ACTIONS(5562), + [aux_sym_def_type_statement_token7] = ACTIONS(5562), + [aux_sym_def_type_statement_token8] = ACTIONS(5562), + [aux_sym_def_type_statement_token9] = ACTIONS(5562), + [aux_sym_def_type_statement_token10] = ACTIONS(5562), + [aux_sym_def_type_statement_token11] = ACTIONS(5562), + [aux_sym_def_type_statement_token12] = ACTIONS(5562), + [aux_sym_def_type_statement_token13] = ACTIONS(5562), + [aux_sym_def_type_statement_token14] = ACTIONS(5562), + [aux_sym_call_statement_token1] = ACTIONS(5562), + [sym__ambiguous_call_statement] = ACTIONS(5562), + [aux_sym_addressof_expression_token1] = ACTIONS(5562), + [aux_sym_type_of_expression_token1] = ACTIONS(5562), + [aux_sym_unary_expression_token1] = ACTIONS(5562), + [sym_string_literal] = ACTIONS(5558), + [sym_number_literal] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5562), + [aux_sym_boolean_literal_token2] = ACTIONS(5562), + [sym_nothing_literal] = ACTIONS(5562), + [sym_null_literal] = ACTIONS(5562), + [sym_empty_literal] = ACTIONS(5562), + [sym_date_literal] = ACTIONS(5558), + [anon_sym_POUND] = ACTIONS(5562), + }, + [STATE(5409)] = { + [sym_identifier] = ACTIONS(8587), + [sym_newline] = ACTIONS(8589), + [anon_sym_COLON] = ACTIONS(8589), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8587), + [aux_sym_frm_property_statement_token1] = ACTIONS(8587), + [anon_sym_DOT] = ACTIONS(8587), + [anon_sym_BANG] = ACTIONS(8589), + [aux_sym__attribute_identifier_token1] = ACTIONS(8587), + [aux_sym_option_statement_token3] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8587), + [aux_sym_preprocessor_const_token1] = ACTIONS(8587), + [sym_static_modifier] = ACTIONS(8587), + [sym__dim_keyword] = ACTIONS(8587), + [sym__redim_keyword] = ACTIONS(8587), + [aux_sym_get_accessor_token1] = ACTIONS(8587), + [aux_sym_set_accessor_token1] = ACTIONS(8587), + [anon_sym_COMMA] = ACTIONS(8589), + [aux_sym_const_declaration_token1] = ACTIONS(8587), + [anon_sym_LPAREN] = ACTIONS(8589), + [aux_sym_as_type_clause_token2] = ACTIONS(8587), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8587), + [aux_sym_visibility_token1] = ACTIONS(8587), + [aux_sym_visibility_token2] = ACTIONS(8587), + [aux_sym_elseif_fragment_token1] = ACTIONS(8587), + [aux_sym_else_fragment_token1] = ACTIONS(8587), + [aux_sym_select_statement_token1] = ACTIONS(8587), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8587), + [aux_sym__for_header_token1] = ACTIONS(8587), + [aux_sym_do_statement_token1] = ACTIONS(8587), + [aux_sym_do_condition_token1] = ACTIONS(8587), + [aux_sym_with_statement_token1] = ACTIONS(8587), + [aux_sym_exit_statement_token1] = ACTIONS(8587), + [sym_end_statement] = ACTIONS(8589), + [aux_sym_on_goto_statement_token1] = ACTIONS(8587), + [aux_sym_on_goto_statement_token2] = ACTIONS(8587), + [aux_sym_on_error_statement_token2] = ACTIONS(8587), + [sym__ambiguous_redim_statement] = ACTIONS(8589), + [aux_sym_erase_statement_token1] = ACTIONS(8587), + [aux_sym_open_statement_token1] = ACTIONS(8587), + [aux_sym_file_mode_token2] = ACTIONS(8587), + [aux_sym_file_access_token2] = ACTIONS(8587), + [aux_sym_file_lock_token2] = ACTIONS(8587), + [aux_sym_print_statement_token1] = ACTIONS(8587), + [anon_sym_PLUS] = ACTIONS(8589), + [anon_sym_DASH] = ACTIONS(8587), + [anon_sym_SEMI] = ACTIONS(8589), + [anon_sym_QMARK] = ACTIONS(8589), + [aux_sym_close_statement_token1] = ACTIONS(8587), + [aux_sym_put_statement_token1] = ACTIONS(8587), + [aux_sym_unlock_statement_token1] = ACTIONS(8587), + [aux_sym_seek_statement_token1] = ACTIONS(8587), + [sym_reset_statement] = ACTIONS(8587), + [aux_sym_raise_event_statement_token1] = ACTIONS(8587), + [sym_stop_statement] = ACTIONS(8587), + [sym_beep_statement] = ACTIONS(8587), + [aux_sym_unload_statement_token1] = ACTIONS(8587), + [aux_sym_def_type_statement_token1] = ACTIONS(8587), + [aux_sym_def_type_statement_token2] = ACTIONS(8587), + [aux_sym_def_type_statement_token3] = ACTIONS(8587), + [aux_sym_def_type_statement_token4] = ACTIONS(8587), + [aux_sym_def_type_statement_token5] = ACTIONS(8587), + [aux_sym_def_type_statement_token6] = ACTIONS(8587), + [aux_sym_def_type_statement_token7] = ACTIONS(8587), + [aux_sym_def_type_statement_token8] = ACTIONS(8587), + [aux_sym_def_type_statement_token9] = ACTIONS(8587), + [aux_sym_def_type_statement_token10] = ACTIONS(8587), + [aux_sym_def_type_statement_token11] = ACTIONS(8587), + [aux_sym_def_type_statement_token12] = ACTIONS(8587), + [aux_sym_def_type_statement_token13] = ACTIONS(8587), + [aux_sym_def_type_statement_token14] = ACTIONS(8587), + [aux_sym_call_statement_token1] = ACTIONS(8587), + [sym__ambiguous_call_statement] = ACTIONS(8587), + [aux_sym_addressof_expression_token1] = ACTIONS(8587), + [aux_sym_type_of_expression_token1] = ACTIONS(8587), + [aux_sym_unary_expression_token1] = ACTIONS(8587), + [sym_string_literal] = ACTIONS(8589), + [sym_number_literal] = ACTIONS(8589), + [aux_sym_boolean_literal_token1] = ACTIONS(8587), + [aux_sym_boolean_literal_token2] = ACTIONS(8587), + [sym_nothing_literal] = ACTIONS(8587), + [sym_null_literal] = ACTIONS(8587), + [sym_empty_literal] = ACTIONS(8587), + [sym_date_literal] = ACTIONS(8589), + [anon_sym_POUND] = ACTIONS(8587), + }, + [STATE(5410)] = { + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(5796), + [sym_identifier] = ACTIONS(8549), + [sym_newline] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8549), + [aux_sym_frm_property_statement_token1] = ACTIONS(8549), + [anon_sym_DOT] = ACTIONS(8549), + [anon_sym_BANG] = ACTIONS(8551), + [aux_sym__attribute_identifier_token1] = ACTIONS(8549), + [aux_sym_option_statement_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8549), + [aux_sym_preprocessor_const_token1] = ACTIONS(8549), + [sym_static_modifier] = ACTIONS(8549), + [sym__dim_keyword] = ACTIONS(8549), + [sym__redim_keyword] = ACTIONS(8549), + [aux_sym_get_accessor_token1] = ACTIONS(8549), + [aux_sym_set_accessor_token1] = ACTIONS(8549), + [aux_sym_const_declaration_token1] = ACTIONS(8549), + [anon_sym_LPAREN] = ACTIONS(8551), + [aux_sym_as_type_clause_token2] = ACTIONS(8549), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8549), + [aux_sym_visibility_token1] = ACTIONS(8549), + [aux_sym_visibility_token2] = ACTIONS(8549), + [aux_sym_elseif_fragment_token1] = ACTIONS(8549), + [aux_sym_else_fragment_token1] = ACTIONS(8549), + [aux_sym_select_statement_token1] = ACTIONS(8549), + [aux_sym__for_header_token1] = ACTIONS(8549), + [aux_sym_do_statement_token1] = ACTIONS(8549), + [aux_sym_do_condition_token1] = ACTIONS(8549), + [aux_sym_with_statement_token1] = ACTIONS(8549), + [aux_sym_exit_statement_token1] = ACTIONS(8549), + [sym_end_statement] = ACTIONS(8551), + [aux_sym_on_goto_statement_token1] = ACTIONS(8549), + [aux_sym_on_goto_statement_token2] = ACTIONS(8549), + [aux_sym_on_error_statement_token2] = ACTIONS(8549), + [sym__ambiguous_redim_statement] = ACTIONS(8551), + [aux_sym_erase_statement_token1] = ACTIONS(8549), + [aux_sym_open_statement_token1] = ACTIONS(8549), + [aux_sym_file_mode_token2] = ACTIONS(8549), + [aux_sym_file_access_token2] = ACTIONS(8549), + [aux_sym_file_lock_token2] = ACTIONS(8549), + [aux_sym_print_statement_token1] = ACTIONS(8549), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_DASH] = ACTIONS(8549), + [anon_sym_SEMI] = ACTIONS(10150), + [anon_sym_QMARK] = ACTIONS(8551), + [aux_sym_close_statement_token1] = ACTIONS(8549), + [aux_sym_put_statement_token1] = ACTIONS(8549), + [aux_sym_unlock_statement_token1] = ACTIONS(8549), + [aux_sym_seek_statement_token1] = ACTIONS(8549), + [sym_reset_statement] = ACTIONS(8549), + [aux_sym_raise_event_statement_token1] = ACTIONS(8549), + [sym_stop_statement] = ACTIONS(8549), + [sym_beep_statement] = ACTIONS(8549), + [aux_sym_unload_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token2] = ACTIONS(8549), + [aux_sym_def_type_statement_token3] = ACTIONS(8549), + [aux_sym_def_type_statement_token4] = ACTIONS(8549), + [aux_sym_def_type_statement_token5] = ACTIONS(8549), + [aux_sym_def_type_statement_token6] = ACTIONS(8549), + [aux_sym_def_type_statement_token7] = ACTIONS(8549), + [aux_sym_def_type_statement_token8] = ACTIONS(8549), + [aux_sym_def_type_statement_token9] = ACTIONS(8549), + [aux_sym_def_type_statement_token10] = ACTIONS(8549), + [aux_sym_def_type_statement_token11] = ACTIONS(8549), + [aux_sym_def_type_statement_token12] = ACTIONS(8549), + [aux_sym_def_type_statement_token13] = ACTIONS(8549), + [aux_sym_def_type_statement_token14] = ACTIONS(8549), + [aux_sym_call_statement_token1] = ACTIONS(8549), + [sym__ambiguous_call_statement] = ACTIONS(8549), + [aux_sym_addressof_expression_token1] = ACTIONS(8549), + [aux_sym_type_of_expression_token1] = ACTIONS(8549), + [aux_sym_unary_expression_token1] = ACTIONS(8549), + [sym_string_literal] = ACTIONS(8551), + [sym_number_literal] = ACTIONS(8551), + [aux_sym_boolean_literal_token1] = ACTIONS(8549), + [aux_sym_boolean_literal_token2] = ACTIONS(8549), + [sym_nothing_literal] = ACTIONS(8549), + [sym_null_literal] = ACTIONS(8549), + [sym_empty_literal] = ACTIONS(8549), + [sym_date_literal] = ACTIONS(8551), + [anon_sym_POUND] = ACTIONS(8549), + }, + [STATE(5411)] = { + [sym_identifier] = ACTIONS(5716), + [sym_newline] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5716), + [aux_sym_frm_property_statement_token1] = ACTIONS(5716), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_BANG] = ACTIONS(5718), + [aux_sym__attribute_identifier_token1] = ACTIONS(5716), + [aux_sym_option_statement_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5716), + [aux_sym_preprocessor_const_token1] = ACTIONS(5716), + [sym_static_modifier] = ACTIONS(5716), + [sym__dim_keyword] = ACTIONS(5716), + [sym__redim_keyword] = ACTIONS(5716), + [aux_sym_get_accessor_token1] = ACTIONS(5716), + [aux_sym_set_accessor_token1] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5718), + [aux_sym_const_declaration_token1] = ACTIONS(5716), + [anon_sym_LPAREN] = ACTIONS(5718), + [aux_sym_as_type_clause_token2] = ACTIONS(5716), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5716), + [aux_sym_visibility_token1] = ACTIONS(5716), + [aux_sym_visibility_token2] = ACTIONS(5716), + [aux_sym_elseif_fragment_token1] = ACTIONS(5716), + [aux_sym_else_fragment_token1] = ACTIONS(5716), + [aux_sym_select_statement_token1] = ACTIONS(5716), + [aux_sym__for_header_token1] = ACTIONS(5716), + [aux_sym_do_statement_token1] = ACTIONS(5716), + [aux_sym_do_statement_token2] = ACTIONS(5716), + [aux_sym_do_condition_token1] = ACTIONS(5716), + [aux_sym_with_statement_token1] = ACTIONS(5716), + [aux_sym_exit_statement_token1] = ACTIONS(5716), + [sym_end_statement] = ACTIONS(5718), + [aux_sym_on_goto_statement_token1] = ACTIONS(5716), + [aux_sym_on_goto_statement_token2] = ACTIONS(5716), + [aux_sym_on_error_statement_token2] = ACTIONS(5716), + [sym__ambiguous_redim_statement] = ACTIONS(5718), + [aux_sym_erase_statement_token1] = ACTIONS(5716), + [aux_sym_open_statement_token1] = ACTIONS(5716), + [aux_sym_file_mode_token2] = ACTIONS(5716), + [aux_sym_file_access_token2] = ACTIONS(5716), + [aux_sym_file_lock_token2] = ACTIONS(5716), + [aux_sym_print_statement_token1] = ACTIONS(5716), + [anon_sym_PLUS] = ACTIONS(5718), + [anon_sym_DASH] = ACTIONS(5716), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [aux_sym_close_statement_token1] = ACTIONS(5716), + [aux_sym_put_statement_token1] = ACTIONS(5716), + [aux_sym_unlock_statement_token1] = ACTIONS(5716), + [aux_sym_seek_statement_token1] = ACTIONS(5716), + [sym_reset_statement] = ACTIONS(5716), + [aux_sym_raise_event_statement_token1] = ACTIONS(5716), + [sym_stop_statement] = ACTIONS(5716), + [sym_beep_statement] = ACTIONS(5716), + [aux_sym_unload_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token2] = ACTIONS(5716), + [aux_sym_def_type_statement_token3] = ACTIONS(5716), + [aux_sym_def_type_statement_token4] = ACTIONS(5716), + [aux_sym_def_type_statement_token5] = ACTIONS(5716), + [aux_sym_def_type_statement_token6] = ACTIONS(5716), + [aux_sym_def_type_statement_token7] = ACTIONS(5716), + [aux_sym_def_type_statement_token8] = ACTIONS(5716), + [aux_sym_def_type_statement_token9] = ACTIONS(5716), + [aux_sym_def_type_statement_token10] = ACTIONS(5716), + [aux_sym_def_type_statement_token11] = ACTIONS(5716), + [aux_sym_def_type_statement_token12] = ACTIONS(5716), + [aux_sym_def_type_statement_token13] = ACTIONS(5716), + [aux_sym_def_type_statement_token14] = ACTIONS(5716), + [aux_sym_call_statement_token1] = ACTIONS(5716), + [sym__ambiguous_call_statement] = ACTIONS(5716), + [aux_sym_addressof_expression_token1] = ACTIONS(5716), + [aux_sym_type_of_expression_token1] = ACTIONS(5716), + [aux_sym_unary_expression_token1] = ACTIONS(5716), + [sym_string_literal] = ACTIONS(5718), + [sym_number_literal] = ACTIONS(5718), + [aux_sym_boolean_literal_token1] = ACTIONS(5716), + [aux_sym_boolean_literal_token2] = ACTIONS(5716), + [sym_nothing_literal] = ACTIONS(5716), + [sym_null_literal] = ACTIONS(5716), + [sym_empty_literal] = ACTIONS(5716), + [sym_date_literal] = ACTIONS(5718), + [anon_sym_POUND] = ACTIONS(5716), + }, + [STATE(5412)] = { + [sym_argument_list] = STATE(10051), + [sym_identifier] = ACTIONS(8393), + [sym_newline] = ACTIONS(8395), + [anon_sym_COLON] = ACTIONS(8395), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8393), + [aux_sym_frm_property_statement_token1] = ACTIONS(8393), + [anon_sym_DOT] = ACTIONS(8393), + [anon_sym_BANG] = ACTIONS(8395), + [aux_sym__attribute_identifier_token1] = ACTIONS(8393), + [aux_sym_option_statement_token3] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8393), + [aux_sym_preprocessor_const_token1] = ACTIONS(8393), + [sym_static_modifier] = ACTIONS(8393), + [sym__dim_keyword] = ACTIONS(8393), + [sym__redim_keyword] = ACTIONS(8393), + [aux_sym_get_accessor_token1] = ACTIONS(8393), + [aux_sym_set_accessor_token1] = ACTIONS(8393), + [anon_sym_COMMA] = ACTIONS(8395), + [aux_sym_const_declaration_token1] = ACTIONS(8393), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(8393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8393), + [aux_sym_visibility_token1] = ACTIONS(8393), + [aux_sym_visibility_token2] = ACTIONS(8393), + [aux_sym_elseif_fragment_token1] = ACTIONS(8393), + [aux_sym_else_fragment_token1] = ACTIONS(8393), + [aux_sym_select_statement_token1] = ACTIONS(8393), + [aux_sym__for_header_token1] = ACTIONS(8393), + [aux_sym_do_statement_token1] = ACTIONS(8393), + [aux_sym_do_statement_token2] = ACTIONS(8393), + [aux_sym_do_condition_token1] = ACTIONS(8393), + [aux_sym_with_statement_token1] = ACTIONS(8393), + [aux_sym_exit_statement_token1] = ACTIONS(8393), + [sym_end_statement] = ACTIONS(8395), + [aux_sym_on_goto_statement_token1] = ACTIONS(8393), + [aux_sym_on_goto_statement_token2] = ACTIONS(8393), + [aux_sym_on_error_statement_token2] = ACTIONS(8393), + [sym__ambiguous_redim_statement] = ACTIONS(8395), + [aux_sym_erase_statement_token1] = ACTIONS(8393), + [aux_sym_open_statement_token1] = ACTIONS(8393), + [aux_sym_file_mode_token2] = ACTIONS(8393), + [aux_sym_file_access_token2] = ACTIONS(8393), + [aux_sym_file_lock_token2] = ACTIONS(8393), + [aux_sym_print_statement_token1] = ACTIONS(8393), + [anon_sym_PLUS] = ACTIONS(8395), + [anon_sym_DASH] = ACTIONS(8393), + [anon_sym_QMARK] = ACTIONS(8395), + [aux_sym_close_statement_token1] = ACTIONS(8393), + [aux_sym_put_statement_token1] = ACTIONS(8393), + [aux_sym_unlock_statement_token1] = ACTIONS(8393), + [aux_sym_seek_statement_token1] = ACTIONS(8393), + [sym_reset_statement] = ACTIONS(8393), + [aux_sym_raise_event_statement_token1] = ACTIONS(8393), + [sym_stop_statement] = ACTIONS(8393), + [sym_beep_statement] = ACTIONS(8393), + [aux_sym_unload_statement_token1] = ACTIONS(8393), + [aux_sym_def_type_statement_token1] = ACTIONS(8393), + [aux_sym_def_type_statement_token2] = ACTIONS(8393), + [aux_sym_def_type_statement_token3] = ACTIONS(8393), + [aux_sym_def_type_statement_token4] = ACTIONS(8393), + [aux_sym_def_type_statement_token5] = ACTIONS(8393), + [aux_sym_def_type_statement_token6] = ACTIONS(8393), + [aux_sym_def_type_statement_token7] = ACTIONS(8393), + [aux_sym_def_type_statement_token8] = ACTIONS(8393), + [aux_sym_def_type_statement_token9] = ACTIONS(8393), + [aux_sym_def_type_statement_token10] = ACTIONS(8393), + [aux_sym_def_type_statement_token11] = ACTIONS(8393), + [aux_sym_def_type_statement_token12] = ACTIONS(8393), + [aux_sym_def_type_statement_token13] = ACTIONS(8393), + [aux_sym_def_type_statement_token14] = ACTIONS(8393), + [aux_sym_call_statement_token1] = ACTIONS(8393), + [sym__ambiguous_call_statement] = ACTIONS(8393), + [aux_sym_addressof_expression_token1] = ACTIONS(8393), + [aux_sym_type_of_expression_token1] = ACTIONS(8393), + [aux_sym_unary_expression_token1] = ACTIONS(8393), + [sym_string_literal] = ACTIONS(8395), + [sym_number_literal] = ACTIONS(8395), + [aux_sym_boolean_literal_token1] = ACTIONS(8393), + [aux_sym_boolean_literal_token2] = ACTIONS(8393), + [sym_nothing_literal] = ACTIONS(8393), + [sym_null_literal] = ACTIONS(8393), + [sym_empty_literal] = ACTIONS(8393), + [sym_date_literal] = ACTIONS(8395), + [anon_sym_POUND] = ACTIONS(8393), + }, + [STATE(5413)] = { + [aux_sym_input_statement_repeat1] = STATE(5413), + [sym_identifier] = ACTIONS(8401), + [sym_newline] = ACTIONS(8403), + [anon_sym_COLON] = ACTIONS(8403), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8401), + [aux_sym_frm_property_statement_token1] = ACTIONS(8401), + [anon_sym_DOT] = ACTIONS(8401), + [anon_sym_BANG] = ACTIONS(8403), + [aux_sym__attribute_identifier_token1] = ACTIONS(8401), + [aux_sym_option_statement_token3] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8401), + [aux_sym_preprocessor_const_token1] = ACTIONS(8401), + [sym_static_modifier] = ACTIONS(8401), + [sym__dim_keyword] = ACTIONS(8401), + [sym__redim_keyword] = ACTIONS(8401), + [aux_sym_get_accessor_token1] = ACTIONS(8401), + [aux_sym_set_accessor_token1] = ACTIONS(8401), + [anon_sym_COMMA] = ACTIONS(10586), + [aux_sym_const_declaration_token1] = ACTIONS(8401), + [anon_sym_LPAREN] = ACTIONS(8403), + [aux_sym_as_type_clause_token2] = ACTIONS(8401), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8401), + [aux_sym_visibility_token1] = ACTIONS(8401), + [aux_sym_visibility_token2] = ACTIONS(8401), + [aux_sym_elseif_fragment_token1] = ACTIONS(8401), + [aux_sym_else_fragment_token1] = ACTIONS(8401), + [aux_sym_select_statement_token1] = ACTIONS(8401), + [aux_sym__for_header_token1] = ACTIONS(8401), + [aux_sym_do_statement_token1] = ACTIONS(8401), + [aux_sym_do_statement_token2] = ACTIONS(8401), + [aux_sym_do_condition_token1] = ACTIONS(8401), + [aux_sym_with_statement_token1] = ACTIONS(8401), + [aux_sym_exit_statement_token1] = ACTIONS(8401), + [sym_end_statement] = ACTIONS(8403), + [aux_sym_on_goto_statement_token1] = ACTIONS(8401), + [aux_sym_on_goto_statement_token2] = ACTIONS(8401), + [aux_sym_on_error_statement_token2] = ACTIONS(8401), + [sym__ambiguous_redim_statement] = ACTIONS(8403), + [aux_sym_erase_statement_token1] = ACTIONS(8401), + [aux_sym_open_statement_token1] = ACTIONS(8401), + [aux_sym_file_mode_token2] = ACTIONS(8401), + [aux_sym_file_access_token2] = ACTIONS(8401), + [aux_sym_file_lock_token2] = ACTIONS(8401), + [aux_sym_print_statement_token1] = ACTIONS(8401), + [anon_sym_PLUS] = ACTIONS(8403), + [anon_sym_DASH] = ACTIONS(8401), + [anon_sym_QMARK] = ACTIONS(8403), + [aux_sym_close_statement_token1] = ACTIONS(8401), + [aux_sym_put_statement_token1] = ACTIONS(8401), + [aux_sym_unlock_statement_token1] = ACTIONS(8401), + [aux_sym_seek_statement_token1] = ACTIONS(8401), + [sym_reset_statement] = ACTIONS(8401), + [aux_sym_raise_event_statement_token1] = ACTIONS(8401), + [sym_stop_statement] = ACTIONS(8401), + [sym_beep_statement] = ACTIONS(8401), + [aux_sym_unload_statement_token1] = ACTIONS(8401), + [aux_sym_def_type_statement_token1] = ACTIONS(8401), + [aux_sym_def_type_statement_token2] = ACTIONS(8401), + [aux_sym_def_type_statement_token3] = ACTIONS(8401), + [aux_sym_def_type_statement_token4] = ACTIONS(8401), + [aux_sym_def_type_statement_token5] = ACTIONS(8401), + [aux_sym_def_type_statement_token6] = ACTIONS(8401), + [aux_sym_def_type_statement_token7] = ACTIONS(8401), + [aux_sym_def_type_statement_token8] = ACTIONS(8401), + [aux_sym_def_type_statement_token9] = ACTIONS(8401), + [aux_sym_def_type_statement_token10] = ACTIONS(8401), + [aux_sym_def_type_statement_token11] = ACTIONS(8401), + [aux_sym_def_type_statement_token12] = ACTIONS(8401), + [aux_sym_def_type_statement_token13] = ACTIONS(8401), + [aux_sym_def_type_statement_token14] = ACTIONS(8401), + [aux_sym_call_statement_token1] = ACTIONS(8401), + [sym__ambiguous_call_statement] = ACTIONS(8401), + [aux_sym_addressof_expression_token1] = ACTIONS(8401), + [aux_sym_type_of_expression_token1] = ACTIONS(8401), + [aux_sym_unary_expression_token1] = ACTIONS(8401), + [sym_string_literal] = ACTIONS(8403), + [sym_number_literal] = ACTIONS(8403), + [aux_sym_boolean_literal_token1] = ACTIONS(8401), + [aux_sym_boolean_literal_token2] = ACTIONS(8401), + [sym_nothing_literal] = ACTIONS(8401), + [sym_null_literal] = ACTIONS(8401), + [sym_empty_literal] = ACTIONS(8401), + [sym_date_literal] = ACTIONS(8403), + [anon_sym_POUND] = ACTIONS(8401), + }, + [STATE(5414)] = { + [sym_identifier] = ACTIONS(8620), + [sym_newline] = ACTIONS(8622), + [anon_sym_COLON] = ACTIONS(8622), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8620), + [aux_sym_frm_property_statement_token1] = ACTIONS(8620), + [anon_sym_EQ] = ACTIONS(8622), + [anon_sym_DOT] = ACTIONS(8620), + [anon_sym_BANG] = ACTIONS(8622), + [aux_sym__attribute_identifier_token1] = ACTIONS(8620), + [aux_sym_option_statement_token3] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8620), + [aux_sym_preprocessor_const_token1] = ACTIONS(8620), + [sym_static_modifier] = ACTIONS(8620), + [sym__dim_keyword] = ACTIONS(8620), + [sym__redim_keyword] = ACTIONS(8620), + [aux_sym_get_accessor_token1] = ACTIONS(8620), + [aux_sym_set_accessor_token1] = ACTIONS(8620), + [anon_sym_COMMA] = ACTIONS(8622), + [aux_sym_const_declaration_token1] = ACTIONS(8620), + [anon_sym_LPAREN] = ACTIONS(8622), + [aux_sym_as_type_clause_token2] = ACTIONS(8620), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8620), + [aux_sym_visibility_token1] = ACTIONS(8620), + [aux_sym_visibility_token2] = ACTIONS(8620), + [aux_sym_elseif_fragment_token1] = ACTIONS(8620), + [aux_sym_else_fragment_token1] = ACTIONS(8620), + [aux_sym_select_statement_token1] = ACTIONS(8620), + [aux_sym__for_header_token1] = ACTIONS(8620), + [aux_sym_do_statement_token1] = ACTIONS(8620), + [aux_sym_do_condition_token1] = ACTIONS(8620), + [aux_sym_with_statement_token1] = ACTIONS(8620), + [aux_sym_exit_statement_token1] = ACTIONS(8620), + [sym_end_statement] = ACTIONS(8622), + [aux_sym_on_goto_statement_token1] = ACTIONS(8620), + [aux_sym_on_goto_statement_token2] = ACTIONS(8620), + [aux_sym_on_error_statement_token2] = ACTIONS(8620), + [sym__ambiguous_redim_statement] = ACTIONS(8622), + [aux_sym_erase_statement_token1] = ACTIONS(8620), + [aux_sym_open_statement_token1] = ACTIONS(8620), + [aux_sym_file_mode_token2] = ACTIONS(8620), + [aux_sym_file_access_token2] = ACTIONS(8620), + [aux_sym_file_lock_token2] = ACTIONS(8620), + [aux_sym_print_statement_token1] = ACTIONS(8620), + [anon_sym_PLUS] = ACTIONS(8622), + [anon_sym_DASH] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(8622), + [aux_sym_close_statement_token1] = ACTIONS(8620), + [aux_sym_put_statement_token1] = ACTIONS(8620), + [aux_sym_unlock_statement_token1] = ACTIONS(8620), + [aux_sym_seek_statement_token1] = ACTIONS(8620), + [sym_reset_statement] = ACTIONS(8620), + [aux_sym_raise_event_statement_token1] = ACTIONS(8620), + [sym_stop_statement] = ACTIONS(8620), + [sym_beep_statement] = ACTIONS(8620), + [aux_sym_unload_statement_token1] = ACTIONS(8620), + [aux_sym_def_type_statement_token1] = ACTIONS(8620), + [aux_sym_def_type_statement_token2] = ACTIONS(8620), + [aux_sym_def_type_statement_token3] = ACTIONS(8620), + [aux_sym_def_type_statement_token4] = ACTIONS(8620), + [aux_sym_def_type_statement_token5] = ACTIONS(8620), + [aux_sym_def_type_statement_token6] = ACTIONS(8620), + [aux_sym_def_type_statement_token7] = ACTIONS(8620), + [aux_sym_def_type_statement_token8] = ACTIONS(8620), + [aux_sym_def_type_statement_token9] = ACTIONS(8620), + [aux_sym_def_type_statement_token10] = ACTIONS(8620), + [aux_sym_def_type_statement_token11] = ACTIONS(8620), + [aux_sym_def_type_statement_token12] = ACTIONS(8620), + [aux_sym_def_type_statement_token13] = ACTIONS(8620), + [aux_sym_def_type_statement_token14] = ACTIONS(8620), + [aux_sym_call_statement_token1] = ACTIONS(8620), + [sym__ambiguous_call_statement] = ACTIONS(8620), + [aux_sym_addressof_expression_token1] = ACTIONS(8620), + [aux_sym_type_of_expression_token1] = ACTIONS(8620), + [aux_sym_unary_expression_token1] = ACTIONS(8620), + [sym_string_literal] = ACTIONS(8622), + [sym_number_literal] = ACTIONS(8622), + [aux_sym_boolean_literal_token1] = ACTIONS(8620), + [aux_sym_boolean_literal_token2] = ACTIONS(8620), + [sym_nothing_literal] = ACTIONS(8620), + [sym_null_literal] = ACTIONS(8620), + [sym_empty_literal] = ACTIONS(8620), + [sym_date_literal] = ACTIONS(8622), + [anon_sym_POUND] = ACTIONS(8620), + }, + [STATE(5415)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5503), + [sym_identifier] = ACTIONS(8591), + [sym_newline] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(8593), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8591), + [aux_sym_frm_property_statement_token1] = ACTIONS(8591), + [anon_sym_DOT] = ACTIONS(8591), + [anon_sym_BANG] = ACTIONS(8593), + [aux_sym__attribute_identifier_token1] = ACTIONS(8591), + [aux_sym_option_statement_token3] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8591), + [aux_sym_preprocessor_const_token1] = ACTIONS(8591), + [sym_static_modifier] = ACTIONS(8591), + [sym__dim_keyword] = ACTIONS(8591), + [sym__redim_keyword] = ACTIONS(8591), + [aux_sym_get_accessor_token1] = ACTIONS(8591), + [aux_sym_set_accessor_token1] = ACTIONS(8591), + [anon_sym_COMMA] = ACTIONS(10469), + [aux_sym_const_declaration_token1] = ACTIONS(8591), + [anon_sym_LPAREN] = ACTIONS(8593), + [aux_sym_as_type_clause_token2] = ACTIONS(8591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8591), + [aux_sym_visibility_token1] = ACTIONS(8591), + [aux_sym_visibility_token2] = ACTIONS(8591), + [aux_sym_elseif_fragment_token1] = ACTIONS(8591), + [aux_sym_else_fragment_token1] = ACTIONS(8591), + [aux_sym_select_statement_token1] = ACTIONS(8591), + [aux_sym_select_statement_token2] = ACTIONS(8591), + [aux_sym__for_header_token1] = ACTIONS(8591), + [aux_sym_do_statement_token1] = ACTIONS(8591), + [aux_sym_do_condition_token1] = ACTIONS(8591), + [aux_sym_with_statement_token1] = ACTIONS(8591), + [aux_sym_exit_statement_token1] = ACTIONS(8591), + [sym_end_statement] = ACTIONS(8593), + [aux_sym_on_goto_statement_token1] = ACTIONS(8591), + [aux_sym_on_goto_statement_token2] = ACTIONS(8591), + [aux_sym_on_error_statement_token2] = ACTIONS(8591), + [sym__ambiguous_redim_statement] = ACTIONS(8593), + [aux_sym_erase_statement_token1] = ACTIONS(8591), + [aux_sym_open_statement_token1] = ACTIONS(8591), + [aux_sym_file_mode_token2] = ACTIONS(8591), + [aux_sym_file_access_token2] = ACTIONS(8591), + [aux_sym_file_lock_token2] = ACTIONS(8591), + [aux_sym_print_statement_token1] = ACTIONS(8591), + [anon_sym_PLUS] = ACTIONS(8593), + [anon_sym_DASH] = ACTIONS(8591), + [anon_sym_QMARK] = ACTIONS(8593), + [aux_sym_close_statement_token1] = ACTIONS(8591), + [aux_sym_put_statement_token1] = ACTIONS(8591), + [aux_sym_unlock_statement_token1] = ACTIONS(8591), + [aux_sym_seek_statement_token1] = ACTIONS(8591), + [sym_reset_statement] = ACTIONS(8591), + [aux_sym_raise_event_statement_token1] = ACTIONS(8591), + [sym_stop_statement] = ACTIONS(8591), + [sym_beep_statement] = ACTIONS(8591), + [aux_sym_unload_statement_token1] = ACTIONS(8591), + [aux_sym_def_type_statement_token1] = ACTIONS(8591), + [aux_sym_def_type_statement_token2] = ACTIONS(8591), + [aux_sym_def_type_statement_token3] = ACTIONS(8591), + [aux_sym_def_type_statement_token4] = ACTIONS(8591), + [aux_sym_def_type_statement_token5] = ACTIONS(8591), + [aux_sym_def_type_statement_token6] = ACTIONS(8591), + [aux_sym_def_type_statement_token7] = ACTIONS(8591), + [aux_sym_def_type_statement_token8] = ACTIONS(8591), + [aux_sym_def_type_statement_token9] = ACTIONS(8591), + [aux_sym_def_type_statement_token10] = ACTIONS(8591), + [aux_sym_def_type_statement_token11] = ACTIONS(8591), + [aux_sym_def_type_statement_token12] = ACTIONS(8591), + [aux_sym_def_type_statement_token13] = ACTIONS(8591), + [aux_sym_def_type_statement_token14] = ACTIONS(8591), + [aux_sym_call_statement_token1] = ACTIONS(8591), + [sym__ambiguous_call_statement] = ACTIONS(8591), + [aux_sym_addressof_expression_token1] = ACTIONS(8591), + [aux_sym_type_of_expression_token1] = ACTIONS(8591), + [aux_sym_unary_expression_token1] = ACTIONS(8591), + [sym_string_literal] = ACTIONS(8593), + [sym_number_literal] = ACTIONS(8593), + [aux_sym_boolean_literal_token1] = ACTIONS(8591), + [aux_sym_boolean_literal_token2] = ACTIONS(8591), + [sym_nothing_literal] = ACTIONS(8591), + [sym_null_literal] = ACTIONS(8591), + [sym_empty_literal] = ACTIONS(8591), + [sym_date_literal] = ACTIONS(8593), + [anon_sym_POUND] = ACTIONS(8591), + }, + [STATE(5416)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5416), + [sym_identifier] = ACTIONS(8196), + [sym_newline] = ACTIONS(8198), + [anon_sym_COLON] = ACTIONS(8198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8196), + [aux_sym_frm_property_statement_token1] = ACTIONS(8196), + [anon_sym_DOT] = ACTIONS(8196), + [anon_sym_BANG] = ACTIONS(8198), + [aux_sym__attribute_identifier_token1] = ACTIONS(8196), + [aux_sym_option_statement_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8196), + [aux_sym_preprocessor_const_token1] = ACTIONS(8196), + [sym_static_modifier] = ACTIONS(8196), + [sym__dim_keyword] = ACTIONS(8196), + [sym__redim_keyword] = ACTIONS(8196), + [aux_sym_get_accessor_token1] = ACTIONS(8196), + [aux_sym_set_accessor_token1] = ACTIONS(8196), + [anon_sym_COMMA] = ACTIONS(10589), + [aux_sym_const_declaration_token1] = ACTIONS(8196), + [anon_sym_LPAREN] = ACTIONS(8198), + [aux_sym_as_type_clause_token2] = ACTIONS(8196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8196), + [aux_sym_visibility_token1] = ACTIONS(8196), + [aux_sym_visibility_token2] = ACTIONS(8196), + [aux_sym_elseif_fragment_token1] = ACTIONS(8196), + [aux_sym_else_fragment_token1] = ACTIONS(8196), + [aux_sym_select_statement_token1] = ACTIONS(8196), + [aux_sym__for_header_token1] = ACTIONS(8196), + [aux_sym_do_statement_token1] = ACTIONS(8196), + [aux_sym_do_statement_token2] = ACTIONS(8196), + [aux_sym_do_condition_token1] = ACTIONS(8196), + [aux_sym_with_statement_token1] = ACTIONS(8196), + [aux_sym_exit_statement_token1] = ACTIONS(8196), + [sym_end_statement] = ACTIONS(8198), + [aux_sym_on_goto_statement_token1] = ACTIONS(8196), + [aux_sym_on_goto_statement_token2] = ACTIONS(8196), + [aux_sym_on_error_statement_token2] = ACTIONS(8196), + [sym__ambiguous_redim_statement] = ACTIONS(8198), + [aux_sym_erase_statement_token1] = ACTIONS(8196), + [aux_sym_open_statement_token1] = ACTIONS(8196), + [aux_sym_file_mode_token2] = ACTIONS(8196), + [aux_sym_file_access_token2] = ACTIONS(8196), + [aux_sym_file_lock_token2] = ACTIONS(8196), + [aux_sym_print_statement_token1] = ACTIONS(8196), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(8196), + [anon_sym_QMARK] = ACTIONS(8198), + [aux_sym_close_statement_token1] = ACTIONS(8196), + [aux_sym_put_statement_token1] = ACTIONS(8196), + [aux_sym_unlock_statement_token1] = ACTIONS(8196), + [aux_sym_seek_statement_token1] = ACTIONS(8196), + [sym_reset_statement] = ACTIONS(8196), + [aux_sym_raise_event_statement_token1] = ACTIONS(8196), + [sym_stop_statement] = ACTIONS(8196), + [sym_beep_statement] = ACTIONS(8196), + [aux_sym_unload_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token2] = ACTIONS(8196), + [aux_sym_def_type_statement_token3] = ACTIONS(8196), + [aux_sym_def_type_statement_token4] = ACTIONS(8196), + [aux_sym_def_type_statement_token5] = ACTIONS(8196), + [aux_sym_def_type_statement_token6] = ACTIONS(8196), + [aux_sym_def_type_statement_token7] = ACTIONS(8196), + [aux_sym_def_type_statement_token8] = ACTIONS(8196), + [aux_sym_def_type_statement_token9] = ACTIONS(8196), + [aux_sym_def_type_statement_token10] = ACTIONS(8196), + [aux_sym_def_type_statement_token11] = ACTIONS(8196), + [aux_sym_def_type_statement_token12] = ACTIONS(8196), + [aux_sym_def_type_statement_token13] = ACTIONS(8196), + [aux_sym_def_type_statement_token14] = ACTIONS(8196), + [aux_sym_call_statement_token1] = ACTIONS(8196), + [sym__ambiguous_call_statement] = ACTIONS(8196), + [aux_sym_addressof_expression_token1] = ACTIONS(8196), + [aux_sym_type_of_expression_token1] = ACTIONS(8196), + [aux_sym_unary_expression_token1] = ACTIONS(8196), + [sym_string_literal] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8198), + [aux_sym_boolean_literal_token1] = ACTIONS(8196), + [aux_sym_boolean_literal_token2] = ACTIONS(8196), + [sym_nothing_literal] = ACTIONS(8196), + [sym_null_literal] = ACTIONS(8196), + [sym_empty_literal] = ACTIONS(8196), + [sym_date_literal] = ACTIONS(8198), + [anon_sym_POUND] = ACTIONS(8196), + }, + [STATE(5417)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_while_statement_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(5418)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5418), + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(10592), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_statement_token2] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(5419)] = { + [aux_sym__argument_sequence_repeat1] = STATE(5419), + [sym_identifier] = ACTIONS(8533), + [sym_newline] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(8535), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8533), + [aux_sym_frm_property_statement_token1] = ACTIONS(8533), + [anon_sym_DOT] = ACTIONS(8533), + [anon_sym_BANG] = ACTIONS(8535), + [aux_sym__attribute_identifier_token1] = ACTIONS(8533), + [aux_sym_option_statement_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8533), + [aux_sym_preprocessor_const_token1] = ACTIONS(8533), + [sym_static_modifier] = ACTIONS(8533), + [sym__dim_keyword] = ACTIONS(8533), + [sym__redim_keyword] = ACTIONS(8533), + [aux_sym_get_accessor_token1] = ACTIONS(8533), + [aux_sym_set_accessor_token1] = ACTIONS(8533), + [anon_sym_COMMA] = ACTIONS(10595), + [aux_sym_const_declaration_token1] = ACTIONS(8533), + [anon_sym_LPAREN] = ACTIONS(8535), + [aux_sym_as_type_clause_token2] = ACTIONS(8533), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8533), + [aux_sym_visibility_token1] = ACTIONS(8533), + [aux_sym_visibility_token2] = ACTIONS(8533), + [aux_sym_elseif_fragment_token1] = ACTIONS(8533), + [aux_sym_else_fragment_token1] = ACTIONS(8533), + [aux_sym_select_statement_token1] = ACTIONS(8533), + [aux_sym_select_statement_token2] = ACTIONS(8533), + [aux_sym__for_header_token1] = ACTIONS(8533), + [aux_sym_do_statement_token1] = ACTIONS(8533), + [aux_sym_do_condition_token1] = ACTIONS(8533), + [aux_sym_with_statement_token1] = ACTIONS(8533), + [aux_sym_exit_statement_token1] = ACTIONS(8533), + [sym_end_statement] = ACTIONS(8535), + [aux_sym_on_goto_statement_token1] = ACTIONS(8533), + [aux_sym_on_goto_statement_token2] = ACTIONS(8533), + [aux_sym_on_error_statement_token2] = ACTIONS(8533), + [sym__ambiguous_redim_statement] = ACTIONS(8535), + [aux_sym_erase_statement_token1] = ACTIONS(8533), + [aux_sym_open_statement_token1] = ACTIONS(8533), + [aux_sym_file_mode_token2] = ACTIONS(8533), + [aux_sym_file_access_token2] = ACTIONS(8533), + [aux_sym_file_lock_token2] = ACTIONS(8533), + [aux_sym_print_statement_token1] = ACTIONS(8533), + [anon_sym_PLUS] = ACTIONS(8535), + [anon_sym_DASH] = ACTIONS(8533), + [anon_sym_QMARK] = ACTIONS(8535), + [aux_sym_close_statement_token1] = ACTIONS(8533), + [aux_sym_put_statement_token1] = ACTIONS(8533), + [aux_sym_unlock_statement_token1] = ACTIONS(8533), + [aux_sym_seek_statement_token1] = ACTIONS(8533), + [sym_reset_statement] = ACTIONS(8533), + [aux_sym_raise_event_statement_token1] = ACTIONS(8533), + [sym_stop_statement] = ACTIONS(8533), + [sym_beep_statement] = ACTIONS(8533), + [aux_sym_unload_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token2] = ACTIONS(8533), + [aux_sym_def_type_statement_token3] = ACTIONS(8533), + [aux_sym_def_type_statement_token4] = ACTIONS(8533), + [aux_sym_def_type_statement_token5] = ACTIONS(8533), + [aux_sym_def_type_statement_token6] = ACTIONS(8533), + [aux_sym_def_type_statement_token7] = ACTIONS(8533), + [aux_sym_def_type_statement_token8] = ACTIONS(8533), + [aux_sym_def_type_statement_token9] = ACTIONS(8533), + [aux_sym_def_type_statement_token10] = ACTIONS(8533), + [aux_sym_def_type_statement_token11] = ACTIONS(8533), + [aux_sym_def_type_statement_token12] = ACTIONS(8533), + [aux_sym_def_type_statement_token13] = ACTIONS(8533), + [aux_sym_def_type_statement_token14] = ACTIONS(8533), + [aux_sym_call_statement_token1] = ACTIONS(8533), + [sym__ambiguous_call_statement] = ACTIONS(8533), + [aux_sym_addressof_expression_token1] = ACTIONS(8533), + [aux_sym_type_of_expression_token1] = ACTIONS(8533), + [aux_sym_unary_expression_token1] = ACTIONS(8533), + [sym_string_literal] = ACTIONS(8535), + [sym_number_literal] = ACTIONS(8535), + [aux_sym_boolean_literal_token1] = ACTIONS(8533), + [aux_sym_boolean_literal_token2] = ACTIONS(8533), + [sym_nothing_literal] = ACTIONS(8533), + [sym_null_literal] = ACTIONS(8533), + [sym_empty_literal] = ACTIONS(8533), + [sym_date_literal] = ACTIONS(8535), + [anon_sym_POUND] = ACTIONS(8533), + }, + [STATE(5420)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5503), + [sym_identifier] = ACTIONS(8095), + [sym_newline] = ACTIONS(8097), + [anon_sym_COLON] = ACTIONS(8097), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8095), + [aux_sym_frm_property_statement_token1] = ACTIONS(8095), + [anon_sym_DOT] = ACTIONS(8095), + [anon_sym_BANG] = ACTIONS(8097), + [aux_sym__attribute_identifier_token1] = ACTIONS(8095), + [aux_sym_option_statement_token3] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8095), + [aux_sym_preprocessor_const_token1] = ACTIONS(8095), + [sym_static_modifier] = ACTIONS(8095), + [sym__dim_keyword] = ACTIONS(8095), + [sym__redim_keyword] = ACTIONS(8095), + [aux_sym_get_accessor_token1] = ACTIONS(8095), + [aux_sym_set_accessor_token1] = ACTIONS(8095), + [anon_sym_COMMA] = ACTIONS(10469), + [aux_sym_const_declaration_token1] = ACTIONS(8095), + [anon_sym_LPAREN] = ACTIONS(8097), + [aux_sym_as_type_clause_token2] = ACTIONS(8095), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8095), + [aux_sym_visibility_token1] = ACTIONS(8095), + [aux_sym_visibility_token2] = ACTIONS(8095), + [aux_sym_elseif_fragment_token1] = ACTIONS(8095), + [aux_sym_else_fragment_token1] = ACTIONS(8095), + [aux_sym_select_statement_token1] = ACTIONS(8095), + [aux_sym_select_statement_token2] = ACTIONS(8095), + [aux_sym__for_header_token1] = ACTIONS(8095), + [aux_sym_do_statement_token1] = ACTIONS(8095), + [aux_sym_do_condition_token1] = ACTIONS(8095), + [aux_sym_with_statement_token1] = ACTIONS(8095), + [aux_sym_exit_statement_token1] = ACTIONS(8095), + [sym_end_statement] = ACTIONS(8097), + [aux_sym_on_goto_statement_token1] = ACTIONS(8095), + [aux_sym_on_goto_statement_token2] = ACTIONS(8095), + [aux_sym_on_error_statement_token2] = ACTIONS(8095), + [sym__ambiguous_redim_statement] = ACTIONS(8097), + [aux_sym_erase_statement_token1] = ACTIONS(8095), + [aux_sym_open_statement_token1] = ACTIONS(8095), + [aux_sym_file_mode_token2] = ACTIONS(8095), + [aux_sym_file_access_token2] = ACTIONS(8095), + [aux_sym_file_lock_token2] = ACTIONS(8095), + [aux_sym_print_statement_token1] = ACTIONS(8095), + [anon_sym_PLUS] = ACTIONS(8097), + [anon_sym_DASH] = ACTIONS(8095), + [anon_sym_QMARK] = ACTIONS(8097), + [aux_sym_close_statement_token1] = ACTIONS(8095), + [aux_sym_put_statement_token1] = ACTIONS(8095), + [aux_sym_unlock_statement_token1] = ACTIONS(8095), + [aux_sym_seek_statement_token1] = ACTIONS(8095), + [sym_reset_statement] = ACTIONS(8095), + [aux_sym_raise_event_statement_token1] = ACTIONS(8095), + [sym_stop_statement] = ACTIONS(8095), + [sym_beep_statement] = ACTIONS(8095), + [aux_sym_unload_statement_token1] = ACTIONS(8095), + [aux_sym_def_type_statement_token1] = ACTIONS(8095), + [aux_sym_def_type_statement_token2] = ACTIONS(8095), + [aux_sym_def_type_statement_token3] = ACTIONS(8095), + [aux_sym_def_type_statement_token4] = ACTIONS(8095), + [aux_sym_def_type_statement_token5] = ACTIONS(8095), + [aux_sym_def_type_statement_token6] = ACTIONS(8095), + [aux_sym_def_type_statement_token7] = ACTIONS(8095), + [aux_sym_def_type_statement_token8] = ACTIONS(8095), + [aux_sym_def_type_statement_token9] = ACTIONS(8095), + [aux_sym_def_type_statement_token10] = ACTIONS(8095), + [aux_sym_def_type_statement_token11] = ACTIONS(8095), + [aux_sym_def_type_statement_token12] = ACTIONS(8095), + [aux_sym_def_type_statement_token13] = ACTIONS(8095), + [aux_sym_def_type_statement_token14] = ACTIONS(8095), + [aux_sym_call_statement_token1] = ACTIONS(8095), + [sym__ambiguous_call_statement] = ACTIONS(8095), + [aux_sym_addressof_expression_token1] = ACTIONS(8095), + [aux_sym_type_of_expression_token1] = ACTIONS(8095), + [aux_sym_unary_expression_token1] = ACTIONS(8095), + [sym_string_literal] = ACTIONS(8097), + [sym_number_literal] = ACTIONS(8097), + [aux_sym_boolean_literal_token1] = ACTIONS(8095), + [aux_sym_boolean_literal_token2] = ACTIONS(8095), + [sym_nothing_literal] = ACTIONS(8095), + [sym_null_literal] = ACTIONS(8095), + [sym_empty_literal] = ACTIONS(8095), + [sym_date_literal] = ACTIONS(8097), + [anon_sym_POUND] = ACTIONS(8095), + }, + [STATE(5421)] = { + [sym_array_bounds] = STATE(6186), + [sym_identifier] = ACTIONS(8070), + [sym_newline] = ACTIONS(8072), + [anon_sym_COLON] = ACTIONS(8072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8070), + [aux_sym_frm_property_statement_token1] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(8072), + [anon_sym_DOT] = ACTIONS(8070), + [anon_sym_BANG] = ACTIONS(8072), + [aux_sym__attribute_identifier_token1] = ACTIONS(8070), + [aux_sym_option_statement_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8070), + [aux_sym_preprocessor_const_token1] = ACTIONS(8070), + [sym_static_modifier] = ACTIONS(8070), + [sym__dim_keyword] = ACTIONS(8070), + [sym__redim_keyword] = ACTIONS(8070), + [aux_sym_get_accessor_token1] = ACTIONS(8070), + [aux_sym_set_accessor_token1] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [aux_sym_const_declaration_token1] = ACTIONS(8070), + [anon_sym_LPAREN] = ACTIONS(10140), + [aux_sym_as_type_clause_token2] = ACTIONS(8070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8070), + [aux_sym_visibility_token1] = ACTIONS(8070), + [aux_sym_visibility_token2] = ACTIONS(8070), + [aux_sym_elseif_fragment_token1] = ACTIONS(8070), + [aux_sym_else_fragment_token1] = ACTIONS(8070), + [aux_sym_select_statement_token1] = ACTIONS(8070), + [aux_sym__for_header_token1] = ACTIONS(8070), + [aux_sym_do_statement_token1] = ACTIONS(8070), + [aux_sym_do_condition_token1] = ACTIONS(8070), + [aux_sym_with_statement_token1] = ACTIONS(8070), + [aux_sym_exit_statement_token1] = ACTIONS(8070), + [sym_end_statement] = ACTIONS(8072), + [aux_sym_on_goto_statement_token1] = ACTIONS(8070), + [aux_sym_on_goto_statement_token2] = ACTIONS(8070), + [aux_sym_on_error_statement_token2] = ACTIONS(8070), + [sym__ambiguous_redim_statement] = ACTIONS(8072), + [aux_sym_erase_statement_token1] = ACTIONS(8070), + [aux_sym_open_statement_token1] = ACTIONS(8070), + [aux_sym_file_mode_token2] = ACTIONS(8070), + [aux_sym_file_access_token2] = ACTIONS(8070), + [aux_sym_file_lock_token2] = ACTIONS(8070), + [aux_sym_print_statement_token1] = ACTIONS(8070), + [anon_sym_PLUS] = ACTIONS(8072), + [anon_sym_DASH] = ACTIONS(8070), + [anon_sym_QMARK] = ACTIONS(8072), + [aux_sym_close_statement_token1] = ACTIONS(8070), + [aux_sym_put_statement_token1] = ACTIONS(8070), + [aux_sym_unlock_statement_token1] = ACTIONS(8070), + [aux_sym_seek_statement_token1] = ACTIONS(8070), + [sym_reset_statement] = ACTIONS(8070), + [aux_sym_raise_event_statement_token1] = ACTIONS(8070), + [sym_stop_statement] = ACTIONS(8070), + [sym_beep_statement] = ACTIONS(8070), + [aux_sym_unload_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token2] = ACTIONS(8070), + [aux_sym_def_type_statement_token3] = ACTIONS(8070), + [aux_sym_def_type_statement_token4] = ACTIONS(8070), + [aux_sym_def_type_statement_token5] = ACTIONS(8070), + [aux_sym_def_type_statement_token6] = ACTIONS(8070), + [aux_sym_def_type_statement_token7] = ACTIONS(8070), + [aux_sym_def_type_statement_token8] = ACTIONS(8070), + [aux_sym_def_type_statement_token9] = ACTIONS(8070), + [aux_sym_def_type_statement_token10] = ACTIONS(8070), + [aux_sym_def_type_statement_token11] = ACTIONS(8070), + [aux_sym_def_type_statement_token12] = ACTIONS(8070), + [aux_sym_def_type_statement_token13] = ACTIONS(8070), + [aux_sym_def_type_statement_token14] = ACTIONS(8070), + [aux_sym_call_statement_token1] = ACTIONS(8070), + [sym__ambiguous_call_statement] = ACTIONS(8070), + [aux_sym_addressof_expression_token1] = ACTIONS(8070), + [aux_sym_type_of_expression_token1] = ACTIONS(8070), + [aux_sym_unary_expression_token1] = ACTIONS(8070), + [sym_string_literal] = ACTIONS(8072), + [sym_number_literal] = ACTIONS(8072), + [aux_sym_boolean_literal_token1] = ACTIONS(8070), + [aux_sym_boolean_literal_token2] = ACTIONS(8070), + [sym_nothing_literal] = ACTIONS(8070), + [sym_null_literal] = ACTIONS(8070), + [sym_empty_literal] = ACTIONS(8070), + [sym_date_literal] = ACTIONS(8072), + [anon_sym_POUND] = ACTIONS(8070), + }, + [STATE(5422)] = { + [sym_do_condition] = STATE(6474), + [sym_identifier] = ACTIONS(8411), + [sym_newline] = ACTIONS(8413), + [anon_sym_COLON] = ACTIONS(8413), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8411), + [aux_sym_frm_property_statement_token1] = ACTIONS(8411), + [anon_sym_DOT] = ACTIONS(8411), + [anon_sym_BANG] = ACTIONS(8413), + [aux_sym__attribute_identifier_token1] = ACTIONS(8411), + [aux_sym_option_statement_token3] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8411), + [aux_sym_preprocessor_const_token1] = ACTIONS(8411), + [sym_static_modifier] = ACTIONS(8411), + [sym__dim_keyword] = ACTIONS(8411), + [sym__redim_keyword] = ACTIONS(8411), + [aux_sym_get_accessor_token1] = ACTIONS(8411), + [aux_sym_set_accessor_token1] = ACTIONS(8411), + [aux_sym_const_declaration_token1] = ACTIONS(8411), + [anon_sym_LPAREN] = ACTIONS(8413), + [aux_sym_as_type_clause_token2] = ACTIONS(8411), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8411), + [aux_sym_visibility_token1] = ACTIONS(8411), + [aux_sym_visibility_token2] = ACTIONS(8411), + [aux_sym_elseif_fragment_token1] = ACTIONS(8411), + [aux_sym_else_fragment_token1] = ACTIONS(8411), + [aux_sym_select_statement_token1] = ACTIONS(8411), + [aux_sym__for_header_token1] = ACTIONS(8411), + [aux_sym_do_statement_token1] = ACTIONS(8411), + [aux_sym_do_statement_token2] = ACTIONS(8411), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8411), + [aux_sym_exit_statement_token1] = ACTIONS(8411), + [sym_end_statement] = ACTIONS(8413), + [aux_sym_on_goto_statement_token1] = ACTIONS(8411), + [aux_sym_on_goto_statement_token2] = ACTIONS(8411), + [aux_sym_on_error_statement_token2] = ACTIONS(8411), + [sym__ambiguous_redim_statement] = ACTIONS(8413), + [aux_sym_erase_statement_token1] = ACTIONS(8411), + [aux_sym_open_statement_token1] = ACTIONS(8411), + [aux_sym_file_mode_token2] = ACTIONS(8411), + [aux_sym_file_access_token2] = ACTIONS(8411), + [aux_sym_file_lock_token2] = ACTIONS(8411), + [aux_sym_print_statement_token1] = ACTIONS(8411), + [anon_sym_PLUS] = ACTIONS(8413), + [anon_sym_DASH] = ACTIONS(8411), + [anon_sym_QMARK] = ACTIONS(8413), + [aux_sym_close_statement_token1] = ACTIONS(8411), + [aux_sym_put_statement_token1] = ACTIONS(8411), + [aux_sym_unlock_statement_token1] = ACTIONS(8411), + [aux_sym_seek_statement_token1] = ACTIONS(8411), + [sym_reset_statement] = ACTIONS(8411), + [aux_sym_raise_event_statement_token1] = ACTIONS(8411), + [sym_stop_statement] = ACTIONS(8411), + [sym_beep_statement] = ACTIONS(8411), + [aux_sym_unload_statement_token1] = ACTIONS(8411), + [aux_sym_def_type_statement_token1] = ACTIONS(8411), + [aux_sym_def_type_statement_token2] = ACTIONS(8411), + [aux_sym_def_type_statement_token3] = ACTIONS(8411), + [aux_sym_def_type_statement_token4] = ACTIONS(8411), + [aux_sym_def_type_statement_token5] = ACTIONS(8411), + [aux_sym_def_type_statement_token6] = ACTIONS(8411), + [aux_sym_def_type_statement_token7] = ACTIONS(8411), + [aux_sym_def_type_statement_token8] = ACTIONS(8411), + [aux_sym_def_type_statement_token9] = ACTIONS(8411), + [aux_sym_def_type_statement_token10] = ACTIONS(8411), + [aux_sym_def_type_statement_token11] = ACTIONS(8411), + [aux_sym_def_type_statement_token12] = ACTIONS(8411), + [aux_sym_def_type_statement_token13] = ACTIONS(8411), + [aux_sym_def_type_statement_token14] = ACTIONS(8411), + [aux_sym_call_statement_token1] = ACTIONS(8411), + [sym__ambiguous_call_statement] = ACTIONS(8411), + [aux_sym_addressof_expression_token1] = ACTIONS(8411), + [aux_sym_type_of_expression_token1] = ACTIONS(8411), + [aux_sym_unary_expression_token1] = ACTIONS(8411), + [sym_string_literal] = ACTIONS(8413), + [sym_number_literal] = ACTIONS(8413), + [aux_sym_boolean_literal_token1] = ACTIONS(8411), + [aux_sym_boolean_literal_token2] = ACTIONS(8411), + [sym_nothing_literal] = ACTIONS(8411), + [sym_null_literal] = ACTIONS(8411), + [sym_empty_literal] = ACTIONS(8411), + [sym_date_literal] = ACTIONS(8413), + [anon_sym_POUND] = ACTIONS(8411), + }, + [STATE(5423)] = { + [sym_do_condition] = STATE(6475), + [sym_identifier] = ACTIONS(8415), + [sym_newline] = ACTIONS(8417), + [anon_sym_COLON] = ACTIONS(8417), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8415), + [aux_sym_frm_property_statement_token1] = ACTIONS(8415), + [anon_sym_DOT] = ACTIONS(8415), + [anon_sym_BANG] = ACTIONS(8417), + [aux_sym__attribute_identifier_token1] = ACTIONS(8415), + [aux_sym_option_statement_token3] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8415), + [aux_sym_preprocessor_const_token1] = ACTIONS(8415), + [sym_static_modifier] = ACTIONS(8415), + [sym__dim_keyword] = ACTIONS(8415), + [sym__redim_keyword] = ACTIONS(8415), + [aux_sym_get_accessor_token1] = ACTIONS(8415), + [aux_sym_set_accessor_token1] = ACTIONS(8415), + [aux_sym_const_declaration_token1] = ACTIONS(8415), + [anon_sym_LPAREN] = ACTIONS(8417), + [aux_sym_as_type_clause_token2] = ACTIONS(8415), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8415), + [aux_sym_visibility_token1] = ACTIONS(8415), + [aux_sym_visibility_token2] = ACTIONS(8415), + [aux_sym_elseif_fragment_token1] = ACTIONS(8415), + [aux_sym_else_fragment_token1] = ACTIONS(8415), + [aux_sym_select_statement_token1] = ACTIONS(8415), + [aux_sym__for_header_token1] = ACTIONS(8415), + [aux_sym_do_statement_token1] = ACTIONS(8415), + [aux_sym_do_statement_token2] = ACTIONS(8415), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8415), + [aux_sym_exit_statement_token1] = ACTIONS(8415), + [sym_end_statement] = ACTIONS(8417), + [aux_sym_on_goto_statement_token1] = ACTIONS(8415), + [aux_sym_on_goto_statement_token2] = ACTIONS(8415), + [aux_sym_on_error_statement_token2] = ACTIONS(8415), + [sym__ambiguous_redim_statement] = ACTIONS(8417), + [aux_sym_erase_statement_token1] = ACTIONS(8415), + [aux_sym_open_statement_token1] = ACTIONS(8415), + [aux_sym_file_mode_token2] = ACTIONS(8415), + [aux_sym_file_access_token2] = ACTIONS(8415), + [aux_sym_file_lock_token2] = ACTIONS(8415), + [aux_sym_print_statement_token1] = ACTIONS(8415), + [anon_sym_PLUS] = ACTIONS(8417), + [anon_sym_DASH] = ACTIONS(8415), + [anon_sym_QMARK] = ACTIONS(8417), + [aux_sym_close_statement_token1] = ACTIONS(8415), + [aux_sym_put_statement_token1] = ACTIONS(8415), + [aux_sym_unlock_statement_token1] = ACTIONS(8415), + [aux_sym_seek_statement_token1] = ACTIONS(8415), + [sym_reset_statement] = ACTIONS(8415), + [aux_sym_raise_event_statement_token1] = ACTIONS(8415), + [sym_stop_statement] = ACTIONS(8415), + [sym_beep_statement] = ACTIONS(8415), + [aux_sym_unload_statement_token1] = ACTIONS(8415), + [aux_sym_def_type_statement_token1] = ACTIONS(8415), + [aux_sym_def_type_statement_token2] = ACTIONS(8415), + [aux_sym_def_type_statement_token3] = ACTIONS(8415), + [aux_sym_def_type_statement_token4] = ACTIONS(8415), + [aux_sym_def_type_statement_token5] = ACTIONS(8415), + [aux_sym_def_type_statement_token6] = ACTIONS(8415), + [aux_sym_def_type_statement_token7] = ACTIONS(8415), + [aux_sym_def_type_statement_token8] = ACTIONS(8415), + [aux_sym_def_type_statement_token9] = ACTIONS(8415), + [aux_sym_def_type_statement_token10] = ACTIONS(8415), + [aux_sym_def_type_statement_token11] = ACTIONS(8415), + [aux_sym_def_type_statement_token12] = ACTIONS(8415), + [aux_sym_def_type_statement_token13] = ACTIONS(8415), + [aux_sym_def_type_statement_token14] = ACTIONS(8415), + [aux_sym_call_statement_token1] = ACTIONS(8415), + [sym__ambiguous_call_statement] = ACTIONS(8415), + [aux_sym_addressof_expression_token1] = ACTIONS(8415), + [aux_sym_type_of_expression_token1] = ACTIONS(8415), + [aux_sym_unary_expression_token1] = ACTIONS(8415), + [sym_string_literal] = ACTIONS(8417), + [sym_number_literal] = ACTIONS(8417), + [aux_sym_boolean_literal_token1] = ACTIONS(8415), + [aux_sym_boolean_literal_token2] = ACTIONS(8415), + [sym_nothing_literal] = ACTIONS(8415), + [sym_null_literal] = ACTIONS(8415), + [sym_empty_literal] = ACTIONS(8415), + [sym_date_literal] = ACTIONS(8417), + [anon_sym_POUND] = ACTIONS(8415), + }, + [STATE(5424)] = { + [sym_do_condition] = STATE(6482), + [sym_identifier] = ACTIONS(8419), + [sym_newline] = ACTIONS(8421), + [anon_sym_COLON] = ACTIONS(8421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8419), + [aux_sym_frm_property_statement_token1] = ACTIONS(8419), + [anon_sym_DOT] = ACTIONS(8419), + [anon_sym_BANG] = ACTIONS(8421), + [aux_sym__attribute_identifier_token1] = ACTIONS(8419), + [aux_sym_option_statement_token3] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8419), + [aux_sym_preprocessor_const_token1] = ACTIONS(8419), + [sym_static_modifier] = ACTIONS(8419), + [sym__dim_keyword] = ACTIONS(8419), + [sym__redim_keyword] = ACTIONS(8419), + [aux_sym_get_accessor_token1] = ACTIONS(8419), + [aux_sym_set_accessor_token1] = ACTIONS(8419), + [aux_sym_const_declaration_token1] = ACTIONS(8419), + [anon_sym_LPAREN] = ACTIONS(8421), + [aux_sym_as_type_clause_token2] = ACTIONS(8419), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8419), + [aux_sym_visibility_token1] = ACTIONS(8419), + [aux_sym_visibility_token2] = ACTIONS(8419), + [aux_sym_elseif_fragment_token1] = ACTIONS(8419), + [aux_sym_else_fragment_token1] = ACTIONS(8419), + [aux_sym_select_statement_token1] = ACTIONS(8419), + [aux_sym__for_header_token1] = ACTIONS(8419), + [aux_sym_do_statement_token1] = ACTIONS(8419), + [aux_sym_do_statement_token2] = ACTIONS(8419), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8419), + [aux_sym_exit_statement_token1] = ACTIONS(8419), + [sym_end_statement] = ACTIONS(8421), + [aux_sym_on_goto_statement_token1] = ACTIONS(8419), + [aux_sym_on_goto_statement_token2] = ACTIONS(8419), + [aux_sym_on_error_statement_token2] = ACTIONS(8419), + [sym__ambiguous_redim_statement] = ACTIONS(8421), + [aux_sym_erase_statement_token1] = ACTIONS(8419), + [aux_sym_open_statement_token1] = ACTIONS(8419), + [aux_sym_file_mode_token2] = ACTIONS(8419), + [aux_sym_file_access_token2] = ACTIONS(8419), + [aux_sym_file_lock_token2] = ACTIONS(8419), + [aux_sym_print_statement_token1] = ACTIONS(8419), + [anon_sym_PLUS] = ACTIONS(8421), + [anon_sym_DASH] = ACTIONS(8419), + [anon_sym_QMARK] = ACTIONS(8421), + [aux_sym_close_statement_token1] = ACTIONS(8419), + [aux_sym_put_statement_token1] = ACTIONS(8419), + [aux_sym_unlock_statement_token1] = ACTIONS(8419), + [aux_sym_seek_statement_token1] = ACTIONS(8419), + [sym_reset_statement] = ACTIONS(8419), + [aux_sym_raise_event_statement_token1] = ACTIONS(8419), + [sym_stop_statement] = ACTIONS(8419), + [sym_beep_statement] = ACTIONS(8419), + [aux_sym_unload_statement_token1] = ACTIONS(8419), + [aux_sym_def_type_statement_token1] = ACTIONS(8419), + [aux_sym_def_type_statement_token2] = ACTIONS(8419), + [aux_sym_def_type_statement_token3] = ACTIONS(8419), + [aux_sym_def_type_statement_token4] = ACTIONS(8419), + [aux_sym_def_type_statement_token5] = ACTIONS(8419), + [aux_sym_def_type_statement_token6] = ACTIONS(8419), + [aux_sym_def_type_statement_token7] = ACTIONS(8419), + [aux_sym_def_type_statement_token8] = ACTIONS(8419), + [aux_sym_def_type_statement_token9] = ACTIONS(8419), + [aux_sym_def_type_statement_token10] = ACTIONS(8419), + [aux_sym_def_type_statement_token11] = ACTIONS(8419), + [aux_sym_def_type_statement_token12] = ACTIONS(8419), + [aux_sym_def_type_statement_token13] = ACTIONS(8419), + [aux_sym_def_type_statement_token14] = ACTIONS(8419), + [aux_sym_call_statement_token1] = ACTIONS(8419), + [sym__ambiguous_call_statement] = ACTIONS(8419), + [aux_sym_addressof_expression_token1] = ACTIONS(8419), + [aux_sym_type_of_expression_token1] = ACTIONS(8419), + [aux_sym_unary_expression_token1] = ACTIONS(8419), + [sym_string_literal] = ACTIONS(8421), + [sym_number_literal] = ACTIONS(8421), + [aux_sym_boolean_literal_token1] = ACTIONS(8419), + [aux_sym_boolean_literal_token2] = ACTIONS(8419), + [sym_nothing_literal] = ACTIONS(8419), + [sym_null_literal] = ACTIONS(8419), + [sym_empty_literal] = ACTIONS(8419), + [sym_date_literal] = ACTIONS(8421), + [anon_sym_POUND] = ACTIONS(8419), + }, + [STATE(5425)] = { + [sym_do_condition] = STATE(6492), + [sym_identifier] = ACTIONS(8423), + [sym_newline] = ACTIONS(8425), + [anon_sym_COLON] = ACTIONS(8425), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8423), + [aux_sym_frm_property_statement_token1] = ACTIONS(8423), + [anon_sym_DOT] = ACTIONS(8423), + [anon_sym_BANG] = ACTIONS(8425), + [aux_sym__attribute_identifier_token1] = ACTIONS(8423), + [aux_sym_option_statement_token3] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8423), + [aux_sym_preprocessor_const_token1] = ACTIONS(8423), + [sym_static_modifier] = ACTIONS(8423), + [sym__dim_keyword] = ACTIONS(8423), + [sym__redim_keyword] = ACTIONS(8423), + [aux_sym_get_accessor_token1] = ACTIONS(8423), + [aux_sym_set_accessor_token1] = ACTIONS(8423), + [aux_sym_const_declaration_token1] = ACTIONS(8423), + [anon_sym_LPAREN] = ACTIONS(8425), + [aux_sym_as_type_clause_token2] = ACTIONS(8423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8423), + [aux_sym_visibility_token1] = ACTIONS(8423), + [aux_sym_visibility_token2] = ACTIONS(8423), + [aux_sym_elseif_fragment_token1] = ACTIONS(8423), + [aux_sym_else_fragment_token1] = ACTIONS(8423), + [aux_sym_select_statement_token1] = ACTIONS(8423), + [aux_sym__for_header_token1] = ACTIONS(8423), + [aux_sym_do_statement_token1] = ACTIONS(8423), + [aux_sym_do_statement_token2] = ACTIONS(8423), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8423), + [aux_sym_exit_statement_token1] = ACTIONS(8423), + [sym_end_statement] = ACTIONS(8425), + [aux_sym_on_goto_statement_token1] = ACTIONS(8423), + [aux_sym_on_goto_statement_token2] = ACTIONS(8423), + [aux_sym_on_error_statement_token2] = ACTIONS(8423), + [sym__ambiguous_redim_statement] = ACTIONS(8425), + [aux_sym_erase_statement_token1] = ACTIONS(8423), + [aux_sym_open_statement_token1] = ACTIONS(8423), + [aux_sym_file_mode_token2] = ACTIONS(8423), + [aux_sym_file_access_token2] = ACTIONS(8423), + [aux_sym_file_lock_token2] = ACTIONS(8423), + [aux_sym_print_statement_token1] = ACTIONS(8423), + [anon_sym_PLUS] = ACTIONS(8425), + [anon_sym_DASH] = ACTIONS(8423), + [anon_sym_QMARK] = ACTIONS(8425), + [aux_sym_close_statement_token1] = ACTIONS(8423), + [aux_sym_put_statement_token1] = ACTIONS(8423), + [aux_sym_unlock_statement_token1] = ACTIONS(8423), + [aux_sym_seek_statement_token1] = ACTIONS(8423), + [sym_reset_statement] = ACTIONS(8423), + [aux_sym_raise_event_statement_token1] = ACTIONS(8423), + [sym_stop_statement] = ACTIONS(8423), + [sym_beep_statement] = ACTIONS(8423), + [aux_sym_unload_statement_token1] = ACTIONS(8423), + [aux_sym_def_type_statement_token1] = ACTIONS(8423), + [aux_sym_def_type_statement_token2] = ACTIONS(8423), + [aux_sym_def_type_statement_token3] = ACTIONS(8423), + [aux_sym_def_type_statement_token4] = ACTIONS(8423), + [aux_sym_def_type_statement_token5] = ACTIONS(8423), + [aux_sym_def_type_statement_token6] = ACTIONS(8423), + [aux_sym_def_type_statement_token7] = ACTIONS(8423), + [aux_sym_def_type_statement_token8] = ACTIONS(8423), + [aux_sym_def_type_statement_token9] = ACTIONS(8423), + [aux_sym_def_type_statement_token10] = ACTIONS(8423), + [aux_sym_def_type_statement_token11] = ACTIONS(8423), + [aux_sym_def_type_statement_token12] = ACTIONS(8423), + [aux_sym_def_type_statement_token13] = ACTIONS(8423), + [aux_sym_def_type_statement_token14] = ACTIONS(8423), + [aux_sym_call_statement_token1] = ACTIONS(8423), + [sym__ambiguous_call_statement] = ACTIONS(8423), + [aux_sym_addressof_expression_token1] = ACTIONS(8423), + [aux_sym_type_of_expression_token1] = ACTIONS(8423), + [aux_sym_unary_expression_token1] = ACTIONS(8423), + [sym_string_literal] = ACTIONS(8425), + [sym_number_literal] = ACTIONS(8425), + [aux_sym_boolean_literal_token1] = ACTIONS(8423), + [aux_sym_boolean_literal_token2] = ACTIONS(8423), + [sym_nothing_literal] = ACTIONS(8423), + [sym_null_literal] = ACTIONS(8423), + [sym_empty_literal] = ACTIONS(8423), + [sym_date_literal] = ACTIONS(8425), + [anon_sym_POUND] = ACTIONS(8423), + }, + [STATE(5426)] = { + [sym_do_condition] = STATE(6493), + [sym_identifier] = ACTIONS(8427), + [sym_newline] = ACTIONS(8429), + [anon_sym_COLON] = ACTIONS(8429), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8427), + [aux_sym_frm_property_statement_token1] = ACTIONS(8427), + [anon_sym_DOT] = ACTIONS(8427), + [anon_sym_BANG] = ACTIONS(8429), + [aux_sym__attribute_identifier_token1] = ACTIONS(8427), + [aux_sym_option_statement_token3] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8427), + [aux_sym_preprocessor_const_token1] = ACTIONS(8427), + [sym_static_modifier] = ACTIONS(8427), + [sym__dim_keyword] = ACTIONS(8427), + [sym__redim_keyword] = ACTIONS(8427), + [aux_sym_get_accessor_token1] = ACTIONS(8427), + [aux_sym_set_accessor_token1] = ACTIONS(8427), + [aux_sym_const_declaration_token1] = ACTIONS(8427), + [anon_sym_LPAREN] = ACTIONS(8429), + [aux_sym_as_type_clause_token2] = ACTIONS(8427), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8427), + [aux_sym_visibility_token1] = ACTIONS(8427), + [aux_sym_visibility_token2] = ACTIONS(8427), + [aux_sym_elseif_fragment_token1] = ACTIONS(8427), + [aux_sym_else_fragment_token1] = ACTIONS(8427), + [aux_sym_select_statement_token1] = ACTIONS(8427), + [aux_sym__for_header_token1] = ACTIONS(8427), + [aux_sym_do_statement_token1] = ACTIONS(8427), + [aux_sym_do_statement_token2] = ACTIONS(8427), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8427), + [aux_sym_exit_statement_token1] = ACTIONS(8427), + [sym_end_statement] = ACTIONS(8429), + [aux_sym_on_goto_statement_token1] = ACTIONS(8427), + [aux_sym_on_goto_statement_token2] = ACTIONS(8427), + [aux_sym_on_error_statement_token2] = ACTIONS(8427), + [sym__ambiguous_redim_statement] = ACTIONS(8429), + [aux_sym_erase_statement_token1] = ACTIONS(8427), + [aux_sym_open_statement_token1] = ACTIONS(8427), + [aux_sym_file_mode_token2] = ACTIONS(8427), + [aux_sym_file_access_token2] = ACTIONS(8427), + [aux_sym_file_lock_token2] = ACTIONS(8427), + [aux_sym_print_statement_token1] = ACTIONS(8427), + [anon_sym_PLUS] = ACTIONS(8429), + [anon_sym_DASH] = ACTIONS(8427), + [anon_sym_QMARK] = ACTIONS(8429), + [aux_sym_close_statement_token1] = ACTIONS(8427), + [aux_sym_put_statement_token1] = ACTIONS(8427), + [aux_sym_unlock_statement_token1] = ACTIONS(8427), + [aux_sym_seek_statement_token1] = ACTIONS(8427), + [sym_reset_statement] = ACTIONS(8427), + [aux_sym_raise_event_statement_token1] = ACTIONS(8427), + [sym_stop_statement] = ACTIONS(8427), + [sym_beep_statement] = ACTIONS(8427), + [aux_sym_unload_statement_token1] = ACTIONS(8427), + [aux_sym_def_type_statement_token1] = ACTIONS(8427), + [aux_sym_def_type_statement_token2] = ACTIONS(8427), + [aux_sym_def_type_statement_token3] = ACTIONS(8427), + [aux_sym_def_type_statement_token4] = ACTIONS(8427), + [aux_sym_def_type_statement_token5] = ACTIONS(8427), + [aux_sym_def_type_statement_token6] = ACTIONS(8427), + [aux_sym_def_type_statement_token7] = ACTIONS(8427), + [aux_sym_def_type_statement_token8] = ACTIONS(8427), + [aux_sym_def_type_statement_token9] = ACTIONS(8427), + [aux_sym_def_type_statement_token10] = ACTIONS(8427), + [aux_sym_def_type_statement_token11] = ACTIONS(8427), + [aux_sym_def_type_statement_token12] = ACTIONS(8427), + [aux_sym_def_type_statement_token13] = ACTIONS(8427), + [aux_sym_def_type_statement_token14] = ACTIONS(8427), + [aux_sym_call_statement_token1] = ACTIONS(8427), + [sym__ambiguous_call_statement] = ACTIONS(8427), + [aux_sym_addressof_expression_token1] = ACTIONS(8427), + [aux_sym_type_of_expression_token1] = ACTIONS(8427), + [aux_sym_unary_expression_token1] = ACTIONS(8427), + [sym_string_literal] = ACTIONS(8429), + [sym_number_literal] = ACTIONS(8429), + [aux_sym_boolean_literal_token1] = ACTIONS(8427), + [aux_sym_boolean_literal_token2] = ACTIONS(8427), + [sym_nothing_literal] = ACTIONS(8427), + [sym_null_literal] = ACTIONS(8427), + [sym_empty_literal] = ACTIONS(8427), + [sym_date_literal] = ACTIONS(8429), + [anon_sym_POUND] = ACTIONS(8427), + }, + [STATE(5427)] = { + [sym_do_condition] = STATE(6494), + [sym_identifier] = ACTIONS(8431), + [sym_newline] = ACTIONS(8433), + [anon_sym_COLON] = ACTIONS(8433), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8431), + [aux_sym_frm_property_statement_token1] = ACTIONS(8431), + [anon_sym_DOT] = ACTIONS(8431), + [anon_sym_BANG] = ACTIONS(8433), + [aux_sym__attribute_identifier_token1] = ACTIONS(8431), + [aux_sym_option_statement_token3] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8431), + [aux_sym_preprocessor_const_token1] = ACTIONS(8431), + [sym_static_modifier] = ACTIONS(8431), + [sym__dim_keyword] = ACTIONS(8431), + [sym__redim_keyword] = ACTIONS(8431), + [aux_sym_get_accessor_token1] = ACTIONS(8431), + [aux_sym_set_accessor_token1] = ACTIONS(8431), + [aux_sym_const_declaration_token1] = ACTIONS(8431), + [anon_sym_LPAREN] = ACTIONS(8433), + [aux_sym_as_type_clause_token2] = ACTIONS(8431), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8431), + [aux_sym_visibility_token1] = ACTIONS(8431), + [aux_sym_visibility_token2] = ACTIONS(8431), + [aux_sym_elseif_fragment_token1] = ACTIONS(8431), + [aux_sym_else_fragment_token1] = ACTIONS(8431), + [aux_sym_select_statement_token1] = ACTIONS(8431), + [aux_sym__for_header_token1] = ACTIONS(8431), + [aux_sym_do_statement_token1] = ACTIONS(8431), + [aux_sym_do_statement_token2] = ACTIONS(8431), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8431), + [aux_sym_exit_statement_token1] = ACTIONS(8431), + [sym_end_statement] = ACTIONS(8433), + [aux_sym_on_goto_statement_token1] = ACTIONS(8431), + [aux_sym_on_goto_statement_token2] = ACTIONS(8431), + [aux_sym_on_error_statement_token2] = ACTIONS(8431), + [sym__ambiguous_redim_statement] = ACTIONS(8433), + [aux_sym_erase_statement_token1] = ACTIONS(8431), + [aux_sym_open_statement_token1] = ACTIONS(8431), + [aux_sym_file_mode_token2] = ACTIONS(8431), + [aux_sym_file_access_token2] = ACTIONS(8431), + [aux_sym_file_lock_token2] = ACTIONS(8431), + [aux_sym_print_statement_token1] = ACTIONS(8431), + [anon_sym_PLUS] = ACTIONS(8433), + [anon_sym_DASH] = ACTIONS(8431), + [anon_sym_QMARK] = ACTIONS(8433), + [aux_sym_close_statement_token1] = ACTIONS(8431), + [aux_sym_put_statement_token1] = ACTIONS(8431), + [aux_sym_unlock_statement_token1] = ACTIONS(8431), + [aux_sym_seek_statement_token1] = ACTIONS(8431), + [sym_reset_statement] = ACTIONS(8431), + [aux_sym_raise_event_statement_token1] = ACTIONS(8431), + [sym_stop_statement] = ACTIONS(8431), + [sym_beep_statement] = ACTIONS(8431), + [aux_sym_unload_statement_token1] = ACTIONS(8431), + [aux_sym_def_type_statement_token1] = ACTIONS(8431), + [aux_sym_def_type_statement_token2] = ACTIONS(8431), + [aux_sym_def_type_statement_token3] = ACTIONS(8431), + [aux_sym_def_type_statement_token4] = ACTIONS(8431), + [aux_sym_def_type_statement_token5] = ACTIONS(8431), + [aux_sym_def_type_statement_token6] = ACTIONS(8431), + [aux_sym_def_type_statement_token7] = ACTIONS(8431), + [aux_sym_def_type_statement_token8] = ACTIONS(8431), + [aux_sym_def_type_statement_token9] = ACTIONS(8431), + [aux_sym_def_type_statement_token10] = ACTIONS(8431), + [aux_sym_def_type_statement_token11] = ACTIONS(8431), + [aux_sym_def_type_statement_token12] = ACTIONS(8431), + [aux_sym_def_type_statement_token13] = ACTIONS(8431), + [aux_sym_def_type_statement_token14] = ACTIONS(8431), + [aux_sym_call_statement_token1] = ACTIONS(8431), + [sym__ambiguous_call_statement] = ACTIONS(8431), + [aux_sym_addressof_expression_token1] = ACTIONS(8431), + [aux_sym_type_of_expression_token1] = ACTIONS(8431), + [aux_sym_unary_expression_token1] = ACTIONS(8431), + [sym_string_literal] = ACTIONS(8433), + [sym_number_literal] = ACTIONS(8433), + [aux_sym_boolean_literal_token1] = ACTIONS(8431), + [aux_sym_boolean_literal_token2] = ACTIONS(8431), + [sym_nothing_literal] = ACTIONS(8431), + [sym_null_literal] = ACTIONS(8431), + [sym_empty_literal] = ACTIONS(8431), + [sym_date_literal] = ACTIONS(8433), + [anon_sym_POUND] = ACTIONS(8431), + }, + [STATE(5428)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5416), + [sym_identifier] = ACTIONS(8435), + [sym_newline] = ACTIONS(8437), + [anon_sym_COLON] = ACTIONS(8437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8435), + [aux_sym_frm_property_statement_token1] = ACTIONS(8435), + [anon_sym_DOT] = ACTIONS(8435), + [anon_sym_BANG] = ACTIONS(8437), + [aux_sym__attribute_identifier_token1] = ACTIONS(8435), + [aux_sym_option_statement_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8435), + [aux_sym_preprocessor_const_token1] = ACTIONS(8435), + [sym_static_modifier] = ACTIONS(8435), + [sym__dim_keyword] = ACTIONS(8435), + [sym__redim_keyword] = ACTIONS(8435), + [aux_sym_get_accessor_token1] = ACTIONS(8435), + [aux_sym_set_accessor_token1] = ACTIONS(8435), + [anon_sym_COMMA] = ACTIONS(5156), + [aux_sym_const_declaration_token1] = ACTIONS(8435), + [anon_sym_LPAREN] = ACTIONS(8437), + [aux_sym_as_type_clause_token2] = ACTIONS(8435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8435), + [aux_sym_visibility_token1] = ACTIONS(8435), + [aux_sym_visibility_token2] = ACTIONS(8435), + [aux_sym_elseif_fragment_token1] = ACTIONS(8435), + [aux_sym_else_fragment_token1] = ACTIONS(8435), + [aux_sym_select_statement_token1] = ACTIONS(8435), + [aux_sym__for_header_token1] = ACTIONS(8435), + [aux_sym_do_statement_token1] = ACTIONS(8435), + [aux_sym_do_statement_token2] = ACTIONS(8435), + [aux_sym_do_condition_token1] = ACTIONS(8435), + [aux_sym_with_statement_token1] = ACTIONS(8435), + [aux_sym_exit_statement_token1] = ACTIONS(8435), + [sym_end_statement] = ACTIONS(8437), + [aux_sym_on_goto_statement_token1] = ACTIONS(8435), + [aux_sym_on_goto_statement_token2] = ACTIONS(8435), + [aux_sym_on_error_statement_token2] = ACTIONS(8435), + [sym__ambiguous_redim_statement] = ACTIONS(8437), + [aux_sym_erase_statement_token1] = ACTIONS(8435), + [aux_sym_open_statement_token1] = ACTIONS(8435), + [aux_sym_file_mode_token2] = ACTIONS(8435), + [aux_sym_file_access_token2] = ACTIONS(8435), + [aux_sym_file_lock_token2] = ACTIONS(8435), + [aux_sym_print_statement_token1] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(8437), + [anon_sym_DASH] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8437), + [aux_sym_close_statement_token1] = ACTIONS(8435), + [aux_sym_put_statement_token1] = ACTIONS(8435), + [aux_sym_unlock_statement_token1] = ACTIONS(8435), + [aux_sym_seek_statement_token1] = ACTIONS(8435), + [sym_reset_statement] = ACTIONS(8435), + [aux_sym_raise_event_statement_token1] = ACTIONS(8435), + [sym_stop_statement] = ACTIONS(8435), + [sym_beep_statement] = ACTIONS(8435), + [aux_sym_unload_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token2] = ACTIONS(8435), + [aux_sym_def_type_statement_token3] = ACTIONS(8435), + [aux_sym_def_type_statement_token4] = ACTIONS(8435), + [aux_sym_def_type_statement_token5] = ACTIONS(8435), + [aux_sym_def_type_statement_token6] = ACTIONS(8435), + [aux_sym_def_type_statement_token7] = ACTIONS(8435), + [aux_sym_def_type_statement_token8] = ACTIONS(8435), + [aux_sym_def_type_statement_token9] = ACTIONS(8435), + [aux_sym_def_type_statement_token10] = ACTIONS(8435), + [aux_sym_def_type_statement_token11] = ACTIONS(8435), + [aux_sym_def_type_statement_token12] = ACTIONS(8435), + [aux_sym_def_type_statement_token13] = ACTIONS(8435), + [aux_sym_def_type_statement_token14] = ACTIONS(8435), + [aux_sym_call_statement_token1] = ACTIONS(8435), + [sym__ambiguous_call_statement] = ACTIONS(8435), + [aux_sym_addressof_expression_token1] = ACTIONS(8435), + [aux_sym_type_of_expression_token1] = ACTIONS(8435), + [aux_sym_unary_expression_token1] = ACTIONS(8435), + [sym_string_literal] = ACTIONS(8437), + [sym_number_literal] = ACTIONS(8437), + [aux_sym_boolean_literal_token1] = ACTIONS(8435), + [aux_sym_boolean_literal_token2] = ACTIONS(8435), + [sym_nothing_literal] = ACTIONS(8435), + [sym_null_literal] = ACTIONS(8435), + [sym_empty_literal] = ACTIONS(8435), + [sym_date_literal] = ACTIONS(8437), + [anon_sym_POUND] = ACTIONS(8435), + }, + [STATE(5429)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5449), + [sym_identifier] = ACTIONS(8435), + [sym_newline] = ACTIONS(8437), + [anon_sym_COLON] = ACTIONS(8437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8435), + [aux_sym_frm_property_statement_token1] = ACTIONS(8435), + [anon_sym_DOT] = ACTIONS(8435), + [anon_sym_BANG] = ACTIONS(8437), + [aux_sym__attribute_identifier_token1] = ACTIONS(8435), + [aux_sym_option_statement_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8435), + [aux_sym_preprocessor_const_token1] = ACTIONS(8435), + [sym_static_modifier] = ACTIONS(8435), + [sym__dim_keyword] = ACTIONS(8435), + [sym__redim_keyword] = ACTIONS(8435), + [aux_sym_get_accessor_token1] = ACTIONS(8435), + [aux_sym_set_accessor_token1] = ACTIONS(8435), + [anon_sym_COMMA] = ACTIONS(5156), + [aux_sym_const_declaration_token1] = ACTIONS(8435), + [anon_sym_LPAREN] = ACTIONS(8437), + [aux_sym_as_type_clause_token2] = ACTIONS(8435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8435), + [aux_sym_visibility_token1] = ACTIONS(8435), + [aux_sym_visibility_token2] = ACTIONS(8435), + [aux_sym_elseif_fragment_token1] = ACTIONS(8435), + [aux_sym_else_fragment_token1] = ACTIONS(8435), + [aux_sym_select_statement_token1] = ACTIONS(8435), + [aux_sym__for_header_token1] = ACTIONS(8435), + [aux_sym_do_statement_token1] = ACTIONS(8435), + [aux_sym_do_statement_token2] = ACTIONS(8435), + [aux_sym_do_condition_token1] = ACTIONS(8435), + [aux_sym_with_statement_token1] = ACTIONS(8435), + [aux_sym_exit_statement_token1] = ACTIONS(8435), + [sym_end_statement] = ACTIONS(8437), + [aux_sym_on_goto_statement_token1] = ACTIONS(8435), + [aux_sym_on_goto_statement_token2] = ACTIONS(8435), + [aux_sym_on_error_statement_token2] = ACTIONS(8435), + [sym__ambiguous_redim_statement] = ACTIONS(8437), + [aux_sym_erase_statement_token1] = ACTIONS(8435), + [aux_sym_open_statement_token1] = ACTIONS(8435), + [aux_sym_file_mode_token2] = ACTIONS(8435), + [aux_sym_file_access_token2] = ACTIONS(8435), + [aux_sym_file_lock_token2] = ACTIONS(8435), + [aux_sym_print_statement_token1] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(8437), + [anon_sym_DASH] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8437), + [aux_sym_close_statement_token1] = ACTIONS(8435), + [aux_sym_put_statement_token1] = ACTIONS(8435), + [aux_sym_unlock_statement_token1] = ACTIONS(8435), + [aux_sym_seek_statement_token1] = ACTIONS(8435), + [sym_reset_statement] = ACTIONS(8435), + [aux_sym_raise_event_statement_token1] = ACTIONS(8435), + [sym_stop_statement] = ACTIONS(8435), + [sym_beep_statement] = ACTIONS(8435), + [aux_sym_unload_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token2] = ACTIONS(8435), + [aux_sym_def_type_statement_token3] = ACTIONS(8435), + [aux_sym_def_type_statement_token4] = ACTIONS(8435), + [aux_sym_def_type_statement_token5] = ACTIONS(8435), + [aux_sym_def_type_statement_token6] = ACTIONS(8435), + [aux_sym_def_type_statement_token7] = ACTIONS(8435), + [aux_sym_def_type_statement_token8] = ACTIONS(8435), + [aux_sym_def_type_statement_token9] = ACTIONS(8435), + [aux_sym_def_type_statement_token10] = ACTIONS(8435), + [aux_sym_def_type_statement_token11] = ACTIONS(8435), + [aux_sym_def_type_statement_token12] = ACTIONS(8435), + [aux_sym_def_type_statement_token13] = ACTIONS(8435), + [aux_sym_def_type_statement_token14] = ACTIONS(8435), + [aux_sym_call_statement_token1] = ACTIONS(8435), + [sym__ambiguous_call_statement] = ACTIONS(8435), + [aux_sym_addressof_expression_token1] = ACTIONS(8435), + [aux_sym_type_of_expression_token1] = ACTIONS(8435), + [aux_sym_unary_expression_token1] = ACTIONS(8435), + [sym_string_literal] = ACTIONS(8437), + [sym_number_literal] = ACTIONS(8437), + [aux_sym_boolean_literal_token1] = ACTIONS(8435), + [aux_sym_boolean_literal_token2] = ACTIONS(8435), + [sym_nothing_literal] = ACTIONS(8435), + [sym_null_literal] = ACTIONS(8435), + [sym_empty_literal] = ACTIONS(8435), + [sym_date_literal] = ACTIONS(8437), + [anon_sym_POUND] = ACTIONS(8435), + }, + [STATE(5430)] = { + [sym_identifier] = ACTIONS(9500), + [sym_newline] = ACTIONS(9502), + [anon_sym_COLON] = ACTIONS(9502), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9500), + [aux_sym_frm_property_statement_token1] = ACTIONS(9500), + [anon_sym_DOT] = ACTIONS(9500), + [anon_sym_BANG] = ACTIONS(9502), + [aux_sym__attribute_identifier_token1] = ACTIONS(9500), + [aux_sym_option_statement_token3] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9500), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9500), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9500), + [aux_sym_preprocessor_const_token1] = ACTIONS(9500), + [sym_static_modifier] = ACTIONS(9500), + [sym__dim_keyword] = ACTIONS(9500), + [sym__redim_keyword] = ACTIONS(9500), + [aux_sym_get_accessor_token1] = ACTIONS(9500), + [aux_sym_set_accessor_token1] = ACTIONS(9500), + [aux_sym_const_declaration_token1] = ACTIONS(9500), + [anon_sym_LPAREN] = ACTIONS(9502), + [aux_sym_as_type_clause_token2] = ACTIONS(9500), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9500), + [aux_sym_visibility_token1] = ACTIONS(9500), + [aux_sym_visibility_token2] = ACTIONS(9500), + [aux_sym_elseif_fragment_token1] = ACTIONS(9500), + [aux_sym_else_fragment_token1] = ACTIONS(9500), + [aux_sym_select_statement_token1] = ACTIONS(9500), + [aux_sym__for_header_token1] = ACTIONS(9500), + [aux_sym_do_statement_token1] = ACTIONS(9500), + [aux_sym_do_condition_token1] = ACTIONS(9500), + [aux_sym_with_statement_token1] = ACTIONS(9500), + [aux_sym_exit_statement_token1] = ACTIONS(9500), + [sym_end_statement] = ACTIONS(9502), + [aux_sym_on_goto_statement_token1] = ACTIONS(9500), + [aux_sym_on_goto_statement_token2] = ACTIONS(9500), + [aux_sym_on_error_statement_token2] = ACTIONS(9500), + [sym__ambiguous_redim_statement] = ACTIONS(9502), + [aux_sym_erase_statement_token1] = ACTIONS(9500), + [aux_sym_open_statement_token1] = ACTIONS(9500), + [aux_sym_file_mode_token2] = ACTIONS(9500), + [aux_sym_file_access_token2] = ACTIONS(9500), + [aux_sym_file_lock_token2] = ACTIONS(9500), + [aux_sym_print_statement_token1] = ACTIONS(9500), + [anon_sym_PLUS] = ACTIONS(9502), + [anon_sym_DASH] = ACTIONS(9500), + [anon_sym_QMARK] = ACTIONS(9502), + [aux_sym_close_statement_token1] = ACTIONS(9500), + [aux_sym_put_statement_token1] = ACTIONS(9500), + [aux_sym_unlock_statement_token1] = ACTIONS(9500), + [aux_sym_seek_statement_token1] = ACTIONS(9500), + [sym_reset_statement] = ACTIONS(9500), + [aux_sym_raise_event_statement_token1] = ACTIONS(9500), + [sym_stop_statement] = ACTIONS(9500), + [sym_beep_statement] = ACTIONS(9500), + [aux_sym_unload_statement_token1] = ACTIONS(9500), + [aux_sym_def_type_statement_token1] = ACTIONS(9500), + [aux_sym_def_type_statement_token2] = ACTIONS(9500), + [aux_sym_def_type_statement_token3] = ACTIONS(9500), + [aux_sym_def_type_statement_token4] = ACTIONS(9500), + [aux_sym_def_type_statement_token5] = ACTIONS(9500), + [aux_sym_def_type_statement_token6] = ACTIONS(9500), + [aux_sym_def_type_statement_token7] = ACTIONS(9500), + [aux_sym_def_type_statement_token8] = ACTIONS(9500), + [aux_sym_def_type_statement_token9] = ACTIONS(9500), + [aux_sym_def_type_statement_token10] = ACTIONS(9500), + [aux_sym_def_type_statement_token11] = ACTIONS(9500), + [aux_sym_def_type_statement_token12] = ACTIONS(9500), + [aux_sym_def_type_statement_token13] = ACTIONS(9500), + [aux_sym_def_type_statement_token14] = ACTIONS(9500), + [aux_sym_call_statement_token1] = ACTIONS(9500), + [sym__ambiguous_call_statement] = ACTIONS(9500), + [aux_sym_addressof_expression_token1] = ACTIONS(9500), + [aux_sym_type_of_expression_token1] = ACTIONS(9500), + [aux_sym_unary_expression_token1] = ACTIONS(9500), + [sym_string_literal] = ACTIONS(9502), + [sym_number_literal] = ACTIONS(9502), + [aux_sym_boolean_literal_token1] = ACTIONS(9500), + [aux_sym_boolean_literal_token2] = ACTIONS(9500), + [sym_nothing_literal] = ACTIONS(9500), + [sym_null_literal] = ACTIONS(9500), + [sym_empty_literal] = ACTIONS(9500), + [sym_date_literal] = ACTIONS(9502), + [anon_sym_POUND] = ACTIONS(9500), + }, + [STATE(5431)] = { + [aux_sym_erase_statement_repeat1] = STATE(5431), + [sym_identifier] = ACTIONS(8607), + [sym_newline] = ACTIONS(8609), + [anon_sym_COLON] = ACTIONS(8609), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8607), + [aux_sym_frm_property_statement_token1] = ACTIONS(8607), + [anon_sym_DOT] = ACTIONS(8607), + [anon_sym_BANG] = ACTIONS(8609), + [aux_sym__attribute_identifier_token1] = ACTIONS(8607), + [aux_sym_option_statement_token3] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8607), + [aux_sym_preprocessor_const_token1] = ACTIONS(8607), + [sym_static_modifier] = ACTIONS(8607), + [sym__dim_keyword] = ACTIONS(8607), + [sym__redim_keyword] = ACTIONS(8607), + [aux_sym_get_accessor_token1] = ACTIONS(8607), + [aux_sym_set_accessor_token1] = ACTIONS(8607), + [anon_sym_COMMA] = ACTIONS(10598), + [aux_sym_const_declaration_token1] = ACTIONS(8607), + [anon_sym_LPAREN] = ACTIONS(8609), + [aux_sym_as_type_clause_token2] = ACTIONS(8607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8607), + [aux_sym_visibility_token1] = ACTIONS(8607), + [aux_sym_visibility_token2] = ACTIONS(8607), + [aux_sym_elseif_fragment_token1] = ACTIONS(8607), + [aux_sym_else_fragment_token1] = ACTIONS(8607), + [aux_sym_select_statement_token1] = ACTIONS(8607), + [aux_sym__for_header_token1] = ACTIONS(8607), + [aux_sym_do_statement_token1] = ACTIONS(8607), + [aux_sym_do_statement_token2] = ACTIONS(8607), + [aux_sym_do_condition_token1] = ACTIONS(8607), + [aux_sym_with_statement_token1] = ACTIONS(8607), + [aux_sym_exit_statement_token1] = ACTIONS(8607), + [sym_end_statement] = ACTIONS(8609), + [aux_sym_on_goto_statement_token1] = ACTIONS(8607), + [aux_sym_on_goto_statement_token2] = ACTIONS(8607), + [aux_sym_on_error_statement_token2] = ACTIONS(8607), + [sym__ambiguous_redim_statement] = ACTIONS(8609), + [aux_sym_erase_statement_token1] = ACTIONS(8607), + [aux_sym_open_statement_token1] = ACTIONS(8607), + [aux_sym_file_mode_token2] = ACTIONS(8607), + [aux_sym_file_access_token2] = ACTIONS(8607), + [aux_sym_file_lock_token2] = ACTIONS(8607), + [aux_sym_print_statement_token1] = ACTIONS(8607), + [anon_sym_PLUS] = ACTIONS(8609), + [anon_sym_DASH] = ACTIONS(8607), + [anon_sym_QMARK] = ACTIONS(8609), + [aux_sym_close_statement_token1] = ACTIONS(8607), + [aux_sym_put_statement_token1] = ACTIONS(8607), + [aux_sym_unlock_statement_token1] = ACTIONS(8607), + [aux_sym_seek_statement_token1] = ACTIONS(8607), + [sym_reset_statement] = ACTIONS(8607), + [aux_sym_raise_event_statement_token1] = ACTIONS(8607), + [sym_stop_statement] = ACTIONS(8607), + [sym_beep_statement] = ACTIONS(8607), + [aux_sym_unload_statement_token1] = ACTIONS(8607), + [aux_sym_def_type_statement_token1] = ACTIONS(8607), + [aux_sym_def_type_statement_token2] = ACTIONS(8607), + [aux_sym_def_type_statement_token3] = ACTIONS(8607), + [aux_sym_def_type_statement_token4] = ACTIONS(8607), + [aux_sym_def_type_statement_token5] = ACTIONS(8607), + [aux_sym_def_type_statement_token6] = ACTIONS(8607), + [aux_sym_def_type_statement_token7] = ACTIONS(8607), + [aux_sym_def_type_statement_token8] = ACTIONS(8607), + [aux_sym_def_type_statement_token9] = ACTIONS(8607), + [aux_sym_def_type_statement_token10] = ACTIONS(8607), + [aux_sym_def_type_statement_token11] = ACTIONS(8607), + [aux_sym_def_type_statement_token12] = ACTIONS(8607), + [aux_sym_def_type_statement_token13] = ACTIONS(8607), + [aux_sym_def_type_statement_token14] = ACTIONS(8607), + [aux_sym_call_statement_token1] = ACTIONS(8607), + [sym__ambiguous_call_statement] = ACTIONS(8607), + [aux_sym_addressof_expression_token1] = ACTIONS(8607), + [aux_sym_type_of_expression_token1] = ACTIONS(8607), + [aux_sym_unary_expression_token1] = ACTIONS(8607), + [sym_string_literal] = ACTIONS(8609), + [sym_number_literal] = ACTIONS(8609), + [aux_sym_boolean_literal_token1] = ACTIONS(8607), + [aux_sym_boolean_literal_token2] = ACTIONS(8607), + [sym_nothing_literal] = ACTIONS(8607), + [sym_null_literal] = ACTIONS(8607), + [sym_empty_literal] = ACTIONS(8607), + [sym_date_literal] = ACTIONS(8609), + [anon_sym_POUND] = ACTIONS(8607), + }, + [STATE(5432)] = { + [aux_sym_const_declaration_repeat1] = STATE(5558), + [sym_identifier] = ACTIONS(8614), + [sym_newline] = ACTIONS(8616), + [anon_sym_COLON] = ACTIONS(8616), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8614), + [aux_sym_frm_property_statement_token1] = ACTIONS(8614), + [anon_sym_DOT] = ACTIONS(8614), + [anon_sym_BANG] = ACTIONS(8616), + [aux_sym__attribute_identifier_token1] = ACTIONS(8614), + [aux_sym_option_statement_token3] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8614), + [aux_sym_preprocessor_const_token1] = ACTIONS(8614), + [sym_static_modifier] = ACTIONS(8614), + [sym__dim_keyword] = ACTIONS(8614), + [sym__redim_keyword] = ACTIONS(8614), + [aux_sym_get_accessor_token1] = ACTIONS(8614), + [aux_sym_set_accessor_token1] = ACTIONS(8614), + [anon_sym_COMMA] = ACTIONS(10487), + [aux_sym_const_declaration_token1] = ACTIONS(8614), + [anon_sym_LPAREN] = ACTIONS(8616), + [aux_sym_as_type_clause_token2] = ACTIONS(8614), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8614), + [aux_sym_visibility_token1] = ACTIONS(8614), + [aux_sym_visibility_token2] = ACTIONS(8614), + [aux_sym_elseif_fragment_token1] = ACTIONS(8614), + [aux_sym_else_fragment_token1] = ACTIONS(8614), + [aux_sym_select_statement_token1] = ACTIONS(8614), + [aux_sym_select_statement_token2] = ACTIONS(8614), + [aux_sym__for_header_token1] = ACTIONS(8614), + [aux_sym_do_statement_token1] = ACTIONS(8614), + [aux_sym_do_condition_token1] = ACTIONS(8614), + [aux_sym_with_statement_token1] = ACTIONS(8614), + [aux_sym_exit_statement_token1] = ACTIONS(8614), + [sym_end_statement] = ACTIONS(8616), + [aux_sym_on_goto_statement_token1] = ACTIONS(8614), + [aux_sym_on_goto_statement_token2] = ACTIONS(8614), + [aux_sym_on_error_statement_token2] = ACTIONS(8614), + [sym__ambiguous_redim_statement] = ACTIONS(8616), + [aux_sym_erase_statement_token1] = ACTIONS(8614), + [aux_sym_open_statement_token1] = ACTIONS(8614), + [aux_sym_file_mode_token2] = ACTIONS(8614), + [aux_sym_file_access_token2] = ACTIONS(8614), + [aux_sym_file_lock_token2] = ACTIONS(8614), + [aux_sym_print_statement_token1] = ACTIONS(8614), + [anon_sym_PLUS] = ACTIONS(8616), + [anon_sym_DASH] = ACTIONS(8614), + [anon_sym_QMARK] = ACTIONS(8616), + [aux_sym_close_statement_token1] = ACTIONS(8614), + [aux_sym_put_statement_token1] = ACTIONS(8614), + [aux_sym_unlock_statement_token1] = ACTIONS(8614), + [aux_sym_seek_statement_token1] = ACTIONS(8614), + [sym_reset_statement] = ACTIONS(8614), + [aux_sym_raise_event_statement_token1] = ACTIONS(8614), + [sym_stop_statement] = ACTIONS(8614), + [sym_beep_statement] = ACTIONS(8614), + [aux_sym_unload_statement_token1] = ACTIONS(8614), + [aux_sym_def_type_statement_token1] = ACTIONS(8614), + [aux_sym_def_type_statement_token2] = ACTIONS(8614), + [aux_sym_def_type_statement_token3] = ACTIONS(8614), + [aux_sym_def_type_statement_token4] = ACTIONS(8614), + [aux_sym_def_type_statement_token5] = ACTIONS(8614), + [aux_sym_def_type_statement_token6] = ACTIONS(8614), + [aux_sym_def_type_statement_token7] = ACTIONS(8614), + [aux_sym_def_type_statement_token8] = ACTIONS(8614), + [aux_sym_def_type_statement_token9] = ACTIONS(8614), + [aux_sym_def_type_statement_token10] = ACTIONS(8614), + [aux_sym_def_type_statement_token11] = ACTIONS(8614), + [aux_sym_def_type_statement_token12] = ACTIONS(8614), + [aux_sym_def_type_statement_token13] = ACTIONS(8614), + [aux_sym_def_type_statement_token14] = ACTIONS(8614), + [aux_sym_call_statement_token1] = ACTIONS(8614), + [sym__ambiguous_call_statement] = ACTIONS(8614), + [aux_sym_addressof_expression_token1] = ACTIONS(8614), + [aux_sym_type_of_expression_token1] = ACTIONS(8614), + [aux_sym_unary_expression_token1] = ACTIONS(8614), + [sym_string_literal] = ACTIONS(8616), + [sym_number_literal] = ACTIONS(8616), + [aux_sym_boolean_literal_token1] = ACTIONS(8614), + [aux_sym_boolean_literal_token2] = ACTIONS(8614), + [sym_nothing_literal] = ACTIONS(8614), + [sym_null_literal] = ACTIONS(8614), + [sym_empty_literal] = ACTIONS(8614), + [sym_date_literal] = ACTIONS(8616), + [anon_sym_POUND] = ACTIONS(8614), + }, + [STATE(5433)] = { + [aux_sym_def_type_statement_repeat1] = STATE(5588), + [sym_identifier] = ACTIONS(8603), + [sym_newline] = ACTIONS(8605), + [anon_sym_COLON] = ACTIONS(8605), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8603), + [aux_sym_frm_property_statement_token1] = ACTIONS(8603), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_BANG] = ACTIONS(8605), + [aux_sym__attribute_identifier_token1] = ACTIONS(8603), + [aux_sym_option_statement_token3] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8603), + [aux_sym_preprocessor_const_token1] = ACTIONS(8603), + [sym_static_modifier] = ACTIONS(8603), + [sym__dim_keyword] = ACTIONS(8603), + [sym__redim_keyword] = ACTIONS(8603), + [aux_sym_get_accessor_token1] = ACTIONS(8603), + [aux_sym_set_accessor_token1] = ACTIONS(8603), + [anon_sym_COMMA] = ACTIONS(10575), + [aux_sym_const_declaration_token1] = ACTIONS(8603), + [anon_sym_LPAREN] = ACTIONS(8605), + [aux_sym_as_type_clause_token2] = ACTIONS(8603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8603), + [aux_sym_visibility_token1] = ACTIONS(8603), + [aux_sym_visibility_token2] = ACTIONS(8603), + [aux_sym_elseif_fragment_token1] = ACTIONS(8603), + [aux_sym_else_fragment_token1] = ACTIONS(8603), + [aux_sym_select_statement_token1] = ACTIONS(8603), + [aux_sym__for_header_token1] = ACTIONS(8603), + [aux_sym_do_statement_token1] = ACTIONS(8603), + [aux_sym_do_condition_token1] = ACTIONS(8603), + [aux_sym_with_statement_token1] = ACTIONS(8603), + [aux_sym_exit_statement_token1] = ACTIONS(8603), + [sym_end_statement] = ACTIONS(8605), + [aux_sym_on_goto_statement_token1] = ACTIONS(8603), + [aux_sym_on_goto_statement_token2] = ACTIONS(8603), + [aux_sym_on_error_statement_token2] = ACTIONS(8603), + [sym__ambiguous_redim_statement] = ACTIONS(8605), + [aux_sym_erase_statement_token1] = ACTIONS(8603), + [aux_sym_open_statement_token1] = ACTIONS(8603), + [aux_sym_file_mode_token2] = ACTIONS(8603), + [aux_sym_file_access_token2] = ACTIONS(8603), + [aux_sym_file_lock_token2] = ACTIONS(8603), + [aux_sym_print_statement_token1] = ACTIONS(8603), + [anon_sym_PLUS] = ACTIONS(8605), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_QMARK] = ACTIONS(8605), + [aux_sym_close_statement_token1] = ACTIONS(8603), + [aux_sym_put_statement_token1] = ACTIONS(8603), + [aux_sym_unlock_statement_token1] = ACTIONS(8603), + [aux_sym_seek_statement_token1] = ACTIONS(8603), + [sym_reset_statement] = ACTIONS(8603), + [aux_sym_raise_event_statement_token1] = ACTIONS(8603), + [sym_stop_statement] = ACTIONS(8603), + [sym_beep_statement] = ACTIONS(8603), + [aux_sym_unload_statement_token1] = ACTIONS(8603), + [aux_sym_def_type_statement_token1] = ACTIONS(8603), + [aux_sym_def_type_statement_token2] = ACTIONS(8603), + [aux_sym_def_type_statement_token3] = ACTIONS(8603), + [aux_sym_def_type_statement_token4] = ACTIONS(8603), + [aux_sym_def_type_statement_token5] = ACTIONS(8603), + [aux_sym_def_type_statement_token6] = ACTIONS(8603), + [aux_sym_def_type_statement_token7] = ACTIONS(8603), + [aux_sym_def_type_statement_token8] = ACTIONS(8603), + [aux_sym_def_type_statement_token9] = ACTIONS(8603), + [aux_sym_def_type_statement_token10] = ACTIONS(8603), + [aux_sym_def_type_statement_token11] = ACTIONS(8603), + [aux_sym_def_type_statement_token12] = ACTIONS(8603), + [aux_sym_def_type_statement_token13] = ACTIONS(8603), + [aux_sym_def_type_statement_token14] = ACTIONS(8603), + [aux_sym_call_statement_token1] = ACTIONS(8603), + [sym__ambiguous_call_statement] = ACTIONS(8603), + [aux_sym_addressof_expression_token1] = ACTIONS(8603), + [aux_sym_type_of_expression_token1] = ACTIONS(8603), + [aux_sym_unary_expression_token1] = ACTIONS(8603), + [sym_string_literal] = ACTIONS(8605), + [sym_number_literal] = ACTIONS(8605), + [aux_sym_boolean_literal_token1] = ACTIONS(8603), + [aux_sym_boolean_literal_token2] = ACTIONS(8603), + [sym_nothing_literal] = ACTIONS(8603), + [sym_null_literal] = ACTIONS(8603), + [sym_empty_literal] = ACTIONS(8603), + [sym_date_literal] = ACTIONS(8605), + [anon_sym_POUND] = ACTIONS(8603), + }, + [STATE(5434)] = { + [sym_identifier] = ACTIONS(7984), + [sym_newline] = ACTIONS(7986), + [anon_sym_COLON] = ACTIONS(7986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7984), + [aux_sym_frm_property_statement_token1] = ACTIONS(7984), + [anon_sym_EQ] = ACTIONS(7986), + [anon_sym_DOT] = ACTIONS(7984), + [anon_sym_BANG] = ACTIONS(7986), + [aux_sym__attribute_identifier_token1] = ACTIONS(7984), + [aux_sym_option_statement_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7984), + [aux_sym_preprocessor_const_token1] = ACTIONS(7984), + [sym_static_modifier] = ACTIONS(7984), + [sym__dim_keyword] = ACTIONS(7984), + [sym__redim_keyword] = ACTIONS(7984), + [aux_sym_get_accessor_token1] = ACTIONS(7984), + [aux_sym_set_accessor_token1] = ACTIONS(7984), + [anon_sym_COMMA] = ACTIONS(7986), + [aux_sym_const_declaration_token1] = ACTIONS(7984), + [anon_sym_LPAREN] = ACTIONS(7986), + [aux_sym_as_type_clause_token1] = ACTIONS(7984), + [aux_sym_as_type_clause_token2] = ACTIONS(7984), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7984), + [aux_sym_visibility_token1] = ACTIONS(7984), + [aux_sym_visibility_token2] = ACTIONS(7984), + [aux_sym_elseif_fragment_token1] = ACTIONS(7984), + [aux_sym_else_fragment_token1] = ACTIONS(7984), + [aux_sym_select_statement_token1] = ACTIONS(7984), + [aux_sym__for_header_token1] = ACTIONS(7984), + [aux_sym_do_statement_token1] = ACTIONS(7984), + [aux_sym_do_condition_token1] = ACTIONS(7984), + [aux_sym_with_statement_token1] = ACTIONS(7984), + [aux_sym_exit_statement_token1] = ACTIONS(7984), + [sym_end_statement] = ACTIONS(7986), + [aux_sym_on_goto_statement_token1] = ACTIONS(7984), + [aux_sym_on_goto_statement_token2] = ACTIONS(7984), + [aux_sym_on_error_statement_token2] = ACTIONS(7984), + [sym__ambiguous_redim_statement] = ACTIONS(7986), + [aux_sym_erase_statement_token1] = ACTIONS(7984), + [aux_sym_open_statement_token1] = ACTIONS(7984), + [aux_sym_file_mode_token2] = ACTIONS(7984), + [aux_sym_file_access_token2] = ACTIONS(7984), + [aux_sym_file_lock_token2] = ACTIONS(7984), + [aux_sym_print_statement_token1] = ACTIONS(7984), + [anon_sym_PLUS] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(7984), + [anon_sym_QMARK] = ACTIONS(7986), + [aux_sym_close_statement_token1] = ACTIONS(7984), + [aux_sym_put_statement_token1] = ACTIONS(7984), + [aux_sym_unlock_statement_token1] = ACTIONS(7984), + [aux_sym_seek_statement_token1] = ACTIONS(7984), + [sym_reset_statement] = ACTIONS(7984), + [aux_sym_raise_event_statement_token1] = ACTIONS(7984), + [sym_stop_statement] = ACTIONS(7984), + [sym_beep_statement] = ACTIONS(7984), + [aux_sym_unload_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token2] = ACTIONS(7984), + [aux_sym_def_type_statement_token3] = ACTIONS(7984), + [aux_sym_def_type_statement_token4] = ACTIONS(7984), + [aux_sym_def_type_statement_token5] = ACTIONS(7984), + [aux_sym_def_type_statement_token6] = ACTIONS(7984), + [aux_sym_def_type_statement_token7] = ACTIONS(7984), + [aux_sym_def_type_statement_token8] = ACTIONS(7984), + [aux_sym_def_type_statement_token9] = ACTIONS(7984), + [aux_sym_def_type_statement_token10] = ACTIONS(7984), + [aux_sym_def_type_statement_token11] = ACTIONS(7984), + [aux_sym_def_type_statement_token12] = ACTIONS(7984), + [aux_sym_def_type_statement_token13] = ACTIONS(7984), + [aux_sym_def_type_statement_token14] = ACTIONS(7984), + [aux_sym_call_statement_token1] = ACTIONS(7984), + [sym__ambiguous_call_statement] = ACTIONS(7984), + [aux_sym_addressof_expression_token1] = ACTIONS(7984), + [aux_sym_type_of_expression_token1] = ACTIONS(7984), + [aux_sym_unary_expression_token1] = ACTIONS(7984), + [sym_string_literal] = ACTIONS(7986), + [sym_number_literal] = ACTIONS(7986), + [aux_sym_boolean_literal_token1] = ACTIONS(7984), + [aux_sym_boolean_literal_token2] = ACTIONS(7984), + [sym_nothing_literal] = ACTIONS(7984), + [sym_null_literal] = ACTIONS(7984), + [sym_empty_literal] = ACTIONS(7984), + [sym_date_literal] = ACTIONS(7986), + [anon_sym_POUND] = ACTIONS(7984), + }, + [STATE(5435)] = { + [aux_sym_erase_statement_repeat1] = STATE(5435), + [sym_identifier] = ACTIONS(8607), + [sym_newline] = ACTIONS(8609), + [anon_sym_COLON] = ACTIONS(8609), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8607), + [aux_sym_frm_property_statement_token1] = ACTIONS(8607), + [anon_sym_DOT] = ACTIONS(8607), + [anon_sym_BANG] = ACTIONS(8609), + [aux_sym__attribute_identifier_token1] = ACTIONS(8607), + [aux_sym_option_statement_token3] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8607), + [aux_sym_preprocessor_const_token1] = ACTIONS(8607), + [sym_static_modifier] = ACTIONS(8607), + [sym__dim_keyword] = ACTIONS(8607), + [sym__redim_keyword] = ACTIONS(8607), + [aux_sym_get_accessor_token1] = ACTIONS(8607), + [aux_sym_set_accessor_token1] = ACTIONS(8607), + [anon_sym_COMMA] = ACTIONS(10601), + [aux_sym_const_declaration_token1] = ACTIONS(8607), + [anon_sym_LPAREN] = ACTIONS(8609), + [aux_sym_as_type_clause_token2] = ACTIONS(8607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8607), + [aux_sym_visibility_token1] = ACTIONS(8607), + [aux_sym_visibility_token2] = ACTIONS(8607), + [aux_sym_elseif_fragment_token1] = ACTIONS(8607), + [aux_sym_else_fragment_token1] = ACTIONS(8607), + [aux_sym_select_statement_token1] = ACTIONS(8607), + [aux_sym_select_statement_token2] = ACTIONS(8607), + [aux_sym__for_header_token1] = ACTIONS(8607), + [aux_sym_do_statement_token1] = ACTIONS(8607), + [aux_sym_do_condition_token1] = ACTIONS(8607), + [aux_sym_with_statement_token1] = ACTIONS(8607), + [aux_sym_exit_statement_token1] = ACTIONS(8607), + [sym_end_statement] = ACTIONS(8609), + [aux_sym_on_goto_statement_token1] = ACTIONS(8607), + [aux_sym_on_goto_statement_token2] = ACTIONS(8607), + [aux_sym_on_error_statement_token2] = ACTIONS(8607), + [sym__ambiguous_redim_statement] = ACTIONS(8609), + [aux_sym_erase_statement_token1] = ACTIONS(8607), + [aux_sym_open_statement_token1] = ACTIONS(8607), + [aux_sym_file_mode_token2] = ACTIONS(8607), + [aux_sym_file_access_token2] = ACTIONS(8607), + [aux_sym_file_lock_token2] = ACTIONS(8607), + [aux_sym_print_statement_token1] = ACTIONS(8607), + [anon_sym_PLUS] = ACTIONS(8609), + [anon_sym_DASH] = ACTIONS(8607), + [anon_sym_QMARK] = ACTIONS(8609), + [aux_sym_close_statement_token1] = ACTIONS(8607), + [aux_sym_put_statement_token1] = ACTIONS(8607), + [aux_sym_unlock_statement_token1] = ACTIONS(8607), + [aux_sym_seek_statement_token1] = ACTIONS(8607), + [sym_reset_statement] = ACTIONS(8607), + [aux_sym_raise_event_statement_token1] = ACTIONS(8607), + [sym_stop_statement] = ACTIONS(8607), + [sym_beep_statement] = ACTIONS(8607), + [aux_sym_unload_statement_token1] = ACTIONS(8607), + [aux_sym_def_type_statement_token1] = ACTIONS(8607), + [aux_sym_def_type_statement_token2] = ACTIONS(8607), + [aux_sym_def_type_statement_token3] = ACTIONS(8607), + [aux_sym_def_type_statement_token4] = ACTIONS(8607), + [aux_sym_def_type_statement_token5] = ACTIONS(8607), + [aux_sym_def_type_statement_token6] = ACTIONS(8607), + [aux_sym_def_type_statement_token7] = ACTIONS(8607), + [aux_sym_def_type_statement_token8] = ACTIONS(8607), + [aux_sym_def_type_statement_token9] = ACTIONS(8607), + [aux_sym_def_type_statement_token10] = ACTIONS(8607), + [aux_sym_def_type_statement_token11] = ACTIONS(8607), + [aux_sym_def_type_statement_token12] = ACTIONS(8607), + [aux_sym_def_type_statement_token13] = ACTIONS(8607), + [aux_sym_def_type_statement_token14] = ACTIONS(8607), + [aux_sym_call_statement_token1] = ACTIONS(8607), + [sym__ambiguous_call_statement] = ACTIONS(8607), + [aux_sym_addressof_expression_token1] = ACTIONS(8607), + [aux_sym_type_of_expression_token1] = ACTIONS(8607), + [aux_sym_unary_expression_token1] = ACTIONS(8607), + [sym_string_literal] = ACTIONS(8609), + [sym_number_literal] = ACTIONS(8609), + [aux_sym_boolean_literal_token1] = ACTIONS(8607), + [aux_sym_boolean_literal_token2] = ACTIONS(8607), + [sym_nothing_literal] = ACTIONS(8607), + [sym_null_literal] = ACTIONS(8607), + [sym_empty_literal] = ACTIONS(8607), + [sym_date_literal] = ACTIONS(8609), + [anon_sym_POUND] = ACTIONS(8607), + }, + [STATE(5436)] = { + [aux_sym_close_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(8265), + [sym_newline] = ACTIONS(8267), + [anon_sym_COLON] = ACTIONS(8267), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8265), + [aux_sym_frm_property_statement_token1] = ACTIONS(8265), + [anon_sym_DOT] = ACTIONS(8265), + [anon_sym_BANG] = ACTIONS(8267), + [aux_sym__attribute_identifier_token1] = ACTIONS(8265), + [aux_sym_option_statement_token3] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8265), + [aux_sym_preprocessor_const_token1] = ACTIONS(8265), + [sym_static_modifier] = ACTIONS(8265), + [sym__dim_keyword] = ACTIONS(8265), + [sym__redim_keyword] = ACTIONS(8265), + [aux_sym_get_accessor_token1] = ACTIONS(8265), + [aux_sym_set_accessor_token1] = ACTIONS(8265), + [anon_sym_COMMA] = ACTIONS(10604), + [aux_sym_const_declaration_token1] = ACTIONS(8265), + [anon_sym_LPAREN] = ACTIONS(8267), + [aux_sym_as_type_clause_token2] = ACTIONS(8265), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8265), + [aux_sym_visibility_token1] = ACTIONS(8265), + [aux_sym_visibility_token2] = ACTIONS(8265), + [aux_sym_elseif_fragment_token1] = ACTIONS(8265), + [aux_sym_else_fragment_token1] = ACTIONS(8265), + [aux_sym_select_statement_token1] = ACTIONS(8265), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8265), + [aux_sym__for_header_token1] = ACTIONS(8265), + [aux_sym_do_statement_token1] = ACTIONS(8265), + [aux_sym_do_condition_token1] = ACTIONS(8265), + [aux_sym_with_statement_token1] = ACTIONS(8265), + [aux_sym_exit_statement_token1] = ACTIONS(8265), + [sym_end_statement] = ACTIONS(8267), + [aux_sym_on_goto_statement_token1] = ACTIONS(8265), + [aux_sym_on_goto_statement_token2] = ACTIONS(8265), + [aux_sym_on_error_statement_token2] = ACTIONS(8265), + [sym__ambiguous_redim_statement] = ACTIONS(8267), + [aux_sym_erase_statement_token1] = ACTIONS(8265), + [aux_sym_open_statement_token1] = ACTIONS(8265), + [aux_sym_file_mode_token2] = ACTIONS(8265), + [aux_sym_file_access_token2] = ACTIONS(8265), + [aux_sym_file_lock_token2] = ACTIONS(8265), + [aux_sym_print_statement_token1] = ACTIONS(8265), + [anon_sym_PLUS] = ACTIONS(8267), + [anon_sym_DASH] = ACTIONS(8265), + [anon_sym_QMARK] = ACTIONS(8267), + [aux_sym_close_statement_token1] = ACTIONS(8265), + [aux_sym_put_statement_token1] = ACTIONS(8265), + [aux_sym_unlock_statement_token1] = ACTIONS(8265), + [aux_sym_seek_statement_token1] = ACTIONS(8265), + [sym_reset_statement] = ACTIONS(8265), + [aux_sym_raise_event_statement_token1] = ACTIONS(8265), + [sym_stop_statement] = ACTIONS(8265), + [sym_beep_statement] = ACTIONS(8265), + [aux_sym_unload_statement_token1] = ACTIONS(8265), + [aux_sym_def_type_statement_token1] = ACTIONS(8265), + [aux_sym_def_type_statement_token2] = ACTIONS(8265), + [aux_sym_def_type_statement_token3] = ACTIONS(8265), + [aux_sym_def_type_statement_token4] = ACTIONS(8265), + [aux_sym_def_type_statement_token5] = ACTIONS(8265), + [aux_sym_def_type_statement_token6] = ACTIONS(8265), + [aux_sym_def_type_statement_token7] = ACTIONS(8265), + [aux_sym_def_type_statement_token8] = ACTIONS(8265), + [aux_sym_def_type_statement_token9] = ACTIONS(8265), + [aux_sym_def_type_statement_token10] = ACTIONS(8265), + [aux_sym_def_type_statement_token11] = ACTIONS(8265), + [aux_sym_def_type_statement_token12] = ACTIONS(8265), + [aux_sym_def_type_statement_token13] = ACTIONS(8265), + [aux_sym_def_type_statement_token14] = ACTIONS(8265), + [aux_sym_call_statement_token1] = ACTIONS(8265), + [sym__ambiguous_call_statement] = ACTIONS(8265), + [aux_sym_addressof_expression_token1] = ACTIONS(8265), + [aux_sym_type_of_expression_token1] = ACTIONS(8265), + [aux_sym_unary_expression_token1] = ACTIONS(8265), + [sym_string_literal] = ACTIONS(8267), + [sym_number_literal] = ACTIONS(8267), + [aux_sym_boolean_literal_token1] = ACTIONS(8265), + [aux_sym_boolean_literal_token2] = ACTIONS(8265), + [sym_nothing_literal] = ACTIONS(8265), + [sym_null_literal] = ACTIONS(8265), + [sym_empty_literal] = ACTIONS(8265), + [sym_date_literal] = ACTIONS(8267), + [anon_sym_POUND] = ACTIONS(8265), + }, + [STATE(5437)] = { + [sym__required_file_number] = STATE(6230), + [sym_file_number_literal] = STATE(6228), + [sym_identifier] = ACTIONS(8312), + [sym_newline] = ACTIONS(8314), + [anon_sym_COLON] = ACTIONS(8314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8312), + [aux_sym_frm_property_statement_token1] = ACTIONS(8312), + [anon_sym_DOT] = ACTIONS(8312), + [anon_sym_BANG] = ACTIONS(8314), + [aux_sym__attribute_identifier_token1] = ACTIONS(8312), + [aux_sym_option_statement_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8312), + [aux_sym_preprocessor_const_token1] = ACTIONS(8312), + [sym_static_modifier] = ACTIONS(8312), + [sym__dim_keyword] = ACTIONS(8312), + [sym__redim_keyword] = ACTIONS(8312), + [aux_sym_get_accessor_token1] = ACTIONS(8312), + [aux_sym_set_accessor_token1] = ACTIONS(8312), + [aux_sym_const_declaration_token1] = ACTIONS(8312), + [anon_sym_LPAREN] = ACTIONS(8314), + [aux_sym_as_type_clause_token2] = ACTIONS(8312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8312), + [aux_sym_visibility_token1] = ACTIONS(8312), + [aux_sym_visibility_token2] = ACTIONS(8312), + [aux_sym_elseif_fragment_token1] = ACTIONS(8312), + [aux_sym_else_fragment_token1] = ACTIONS(8312), + [aux_sym_select_statement_token1] = ACTIONS(8312), + [aux_sym_select_statement_token2] = ACTIONS(8312), + [aux_sym__for_header_token1] = ACTIONS(8312), + [aux_sym_do_statement_token1] = ACTIONS(8312), + [aux_sym_do_condition_token1] = ACTIONS(8312), + [aux_sym_with_statement_token1] = ACTIONS(8312), + [aux_sym_exit_statement_token1] = ACTIONS(8312), + [sym_end_statement] = ACTIONS(8314), + [aux_sym_on_goto_statement_token1] = ACTIONS(8312), + [aux_sym_on_goto_statement_token2] = ACTIONS(8312), + [aux_sym_on_error_statement_token2] = ACTIONS(8312), + [sym__ambiguous_redim_statement] = ACTIONS(8314), + [aux_sym_erase_statement_token1] = ACTIONS(8312), + [aux_sym_open_statement_token1] = ACTIONS(8312), + [aux_sym_file_mode_token2] = ACTIONS(8312), + [aux_sym_file_access_token2] = ACTIONS(8312), + [aux_sym_file_lock_token2] = ACTIONS(8312), + [aux_sym_print_statement_token1] = ACTIONS(8312), + [anon_sym_PLUS] = ACTIONS(8314), + [anon_sym_DASH] = ACTIONS(8312), + [anon_sym_QMARK] = ACTIONS(8314), + [aux_sym_close_statement_token1] = ACTIONS(8312), + [aux_sym_put_statement_token1] = ACTIONS(8312), + [aux_sym_unlock_statement_token1] = ACTIONS(8312), + [aux_sym_seek_statement_token1] = ACTIONS(8312), + [sym_reset_statement] = ACTIONS(8312), + [aux_sym_raise_event_statement_token1] = ACTIONS(8312), + [sym_stop_statement] = ACTIONS(8312), + [sym_beep_statement] = ACTIONS(8312), + [aux_sym_unload_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token2] = ACTIONS(8312), + [aux_sym_def_type_statement_token3] = ACTIONS(8312), + [aux_sym_def_type_statement_token4] = ACTIONS(8312), + [aux_sym_def_type_statement_token5] = ACTIONS(8312), + [aux_sym_def_type_statement_token6] = ACTIONS(8312), + [aux_sym_def_type_statement_token7] = ACTIONS(8312), + [aux_sym_def_type_statement_token8] = ACTIONS(8312), + [aux_sym_def_type_statement_token9] = ACTIONS(8312), + [aux_sym_def_type_statement_token10] = ACTIONS(8312), + [aux_sym_def_type_statement_token11] = ACTIONS(8312), + [aux_sym_def_type_statement_token12] = ACTIONS(8312), + [aux_sym_def_type_statement_token13] = ACTIONS(8312), + [aux_sym_def_type_statement_token14] = ACTIONS(8312), + [aux_sym_call_statement_token1] = ACTIONS(8312), + [sym__ambiguous_call_statement] = ACTIONS(8312), + [aux_sym_addressof_expression_token1] = ACTIONS(8312), + [aux_sym_type_of_expression_token1] = ACTIONS(8312), + [aux_sym_unary_expression_token1] = ACTIONS(8312), + [sym_string_literal] = ACTIONS(8314), + [sym_number_literal] = ACTIONS(8314), + [aux_sym_boolean_literal_token1] = ACTIONS(8312), + [aux_sym_boolean_literal_token2] = ACTIONS(8312), + [sym_nothing_literal] = ACTIONS(8312), + [sym_null_literal] = ACTIONS(8312), + [sym_empty_literal] = ACTIONS(8312), + [sym_date_literal] = ACTIONS(8314), + [anon_sym_POUND] = ACTIONS(1595), + }, + [STATE(5438)] = { + [sym_identifier] = ACTIONS(7968), + [sym_newline] = ACTIONS(7970), + [anon_sym_COLON] = ACTIONS(7970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7968), + [aux_sym_frm_property_statement_token1] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_BANG] = ACTIONS(7970), + [aux_sym__attribute_identifier_token1] = ACTIONS(7968), + [aux_sym_option_statement_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7968), + [aux_sym_preprocessor_const_token1] = ACTIONS(7968), + [sym_static_modifier] = ACTIONS(7968), + [sym__dim_keyword] = ACTIONS(7968), + [sym__redim_keyword] = ACTIONS(7968), + [aux_sym_get_accessor_token1] = ACTIONS(7968), + [aux_sym_set_accessor_token1] = ACTIONS(7968), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_const_declaration_token1] = ACTIONS(7968), + [anon_sym_LPAREN] = ACTIONS(7970), + [aux_sym_as_type_clause_token2] = ACTIONS(7968), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7968), + [aux_sym_visibility_token1] = ACTIONS(7968), + [aux_sym_visibility_token2] = ACTIONS(7968), + [aux_sym_elseif_fragment_token1] = ACTIONS(7968), + [aux_sym_else_fragment_token1] = ACTIONS(7968), + [aux_sym_select_statement_token1] = ACTIONS(7968), + [aux_sym__for_header_token1] = ACTIONS(7968), + [aux_sym_do_statement_token1] = ACTIONS(7968), + [aux_sym_do_condition_token1] = ACTIONS(7968), + [aux_sym_while_statement_token1] = ACTIONS(7968), + [aux_sym_with_statement_token1] = ACTIONS(7968), + [aux_sym_exit_statement_token1] = ACTIONS(7968), + [sym_end_statement] = ACTIONS(7970), + [aux_sym_on_goto_statement_token1] = ACTIONS(7968), + [aux_sym_on_goto_statement_token2] = ACTIONS(7968), + [aux_sym_on_error_statement_token2] = ACTIONS(7968), + [sym__ambiguous_redim_statement] = ACTIONS(7970), + [aux_sym_erase_statement_token1] = ACTIONS(7968), + [aux_sym_open_statement_token1] = ACTIONS(7968), + [aux_sym_file_mode_token2] = ACTIONS(7968), + [aux_sym_file_access_token2] = ACTIONS(7968), + [aux_sym_file_lock_token2] = ACTIONS(7968), + [aux_sym_print_statement_token1] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7970), + [aux_sym_close_statement_token1] = ACTIONS(7968), + [aux_sym_put_statement_token1] = ACTIONS(7968), + [aux_sym_unlock_statement_token1] = ACTIONS(7968), + [aux_sym_seek_statement_token1] = ACTIONS(7968), + [sym_reset_statement] = ACTIONS(7968), + [aux_sym_raise_event_statement_token1] = ACTIONS(7968), + [sym_stop_statement] = ACTIONS(7968), + [sym_beep_statement] = ACTIONS(7968), + [aux_sym_unload_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token2] = ACTIONS(7968), + [aux_sym_def_type_statement_token3] = ACTIONS(7968), + [aux_sym_def_type_statement_token4] = ACTIONS(7968), + [aux_sym_def_type_statement_token5] = ACTIONS(7968), + [aux_sym_def_type_statement_token6] = ACTIONS(7968), + [aux_sym_def_type_statement_token7] = ACTIONS(7968), + [aux_sym_def_type_statement_token8] = ACTIONS(7968), + [aux_sym_def_type_statement_token9] = ACTIONS(7968), + [aux_sym_def_type_statement_token10] = ACTIONS(7968), + [aux_sym_def_type_statement_token11] = ACTIONS(7968), + [aux_sym_def_type_statement_token12] = ACTIONS(7968), + [aux_sym_def_type_statement_token13] = ACTIONS(7968), + [aux_sym_def_type_statement_token14] = ACTIONS(7968), + [aux_sym_call_statement_token1] = ACTIONS(7968), + [sym__ambiguous_call_statement] = ACTIONS(7968), + [aux_sym_addressof_expression_token1] = ACTIONS(7968), + [aux_sym_type_of_expression_token1] = ACTIONS(7968), + [aux_sym_unary_expression_token1] = ACTIONS(7968), + [sym_string_literal] = ACTIONS(7970), + [sym_number_literal] = ACTIONS(7970), + [aux_sym_boolean_literal_token1] = ACTIONS(7968), + [aux_sym_boolean_literal_token2] = ACTIONS(7968), + [sym_nothing_literal] = ACTIONS(7968), + [sym_null_literal] = ACTIONS(7968), + [sym_empty_literal] = ACTIONS(7968), + [sym_date_literal] = ACTIONS(7970), + [anon_sym_POUND] = ACTIONS(7968), + }, + [STATE(5439)] = { + [sym_identifier] = ACTIONS(8162), + [sym_newline] = ACTIONS(8164), + [anon_sym_COLON] = ACTIONS(8164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8162), + [aux_sym_frm_property_statement_token1] = ACTIONS(8162), + [anon_sym_DOT] = ACTIONS(8162), + [anon_sym_BANG] = ACTIONS(8164), + [aux_sym__attribute_identifier_token1] = ACTIONS(8162), + [aux_sym_option_statement_token3] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8162), + [aux_sym_preprocessor_const_token1] = ACTIONS(8162), + [sym_static_modifier] = ACTIONS(8162), + [sym__dim_keyword] = ACTIONS(8162), + [sym__redim_keyword] = ACTIONS(8162), + [aux_sym_get_accessor_token1] = ACTIONS(8162), + [aux_sym_set_accessor_token1] = ACTIONS(8162), + [anon_sym_COMMA] = ACTIONS(8164), + [aux_sym_const_declaration_token1] = ACTIONS(8162), + [anon_sym_LPAREN] = ACTIONS(8164), + [aux_sym_as_type_clause_token2] = ACTIONS(8162), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8162), + [aux_sym_visibility_token1] = ACTIONS(8162), + [aux_sym_visibility_token2] = ACTIONS(8162), + [aux_sym_elseif_fragment_token1] = ACTIONS(8162), + [aux_sym_else_fragment_token1] = ACTIONS(8162), + [aux_sym_select_statement_token1] = ACTIONS(8162), + [aux_sym_select_statement_token2] = ACTIONS(8162), + [aux_sym__for_header_token1] = ACTIONS(8162), + [aux_sym_do_statement_token1] = ACTIONS(8162), + [aux_sym_do_condition_token1] = ACTIONS(8162), + [aux_sym_with_statement_token1] = ACTIONS(8162), + [aux_sym_exit_statement_token1] = ACTIONS(8162), + [sym_end_statement] = ACTIONS(8164), + [aux_sym_on_goto_statement_token1] = ACTIONS(8162), + [aux_sym_on_goto_statement_token2] = ACTIONS(8162), + [aux_sym_on_error_statement_token2] = ACTIONS(8162), + [sym__ambiguous_redim_statement] = ACTIONS(8164), + [aux_sym_erase_statement_token1] = ACTIONS(8162), + [aux_sym_open_statement_token1] = ACTIONS(8162), + [aux_sym_file_mode_token2] = ACTIONS(8162), + [aux_sym_file_access_token2] = ACTIONS(8162), + [aux_sym_file_lock_token2] = ACTIONS(8162), + [aux_sym_print_statement_token1] = ACTIONS(8162), + [anon_sym_PLUS] = ACTIONS(8164), + [anon_sym_DASH] = ACTIONS(8162), + [anon_sym_SEMI] = ACTIONS(8164), + [anon_sym_QMARK] = ACTIONS(8164), + [aux_sym_close_statement_token1] = ACTIONS(8162), + [aux_sym_put_statement_token1] = ACTIONS(8162), + [aux_sym_unlock_statement_token1] = ACTIONS(8162), + [aux_sym_seek_statement_token1] = ACTIONS(8162), + [sym_reset_statement] = ACTIONS(8162), + [aux_sym_raise_event_statement_token1] = ACTIONS(8162), + [sym_stop_statement] = ACTIONS(8162), + [sym_beep_statement] = ACTIONS(8162), + [aux_sym_unload_statement_token1] = ACTIONS(8162), + [aux_sym_def_type_statement_token1] = ACTIONS(8162), + [aux_sym_def_type_statement_token2] = ACTIONS(8162), + [aux_sym_def_type_statement_token3] = ACTIONS(8162), + [aux_sym_def_type_statement_token4] = ACTIONS(8162), + [aux_sym_def_type_statement_token5] = ACTIONS(8162), + [aux_sym_def_type_statement_token6] = ACTIONS(8162), + [aux_sym_def_type_statement_token7] = ACTIONS(8162), + [aux_sym_def_type_statement_token8] = ACTIONS(8162), + [aux_sym_def_type_statement_token9] = ACTIONS(8162), + [aux_sym_def_type_statement_token10] = ACTIONS(8162), + [aux_sym_def_type_statement_token11] = ACTIONS(8162), + [aux_sym_def_type_statement_token12] = ACTIONS(8162), + [aux_sym_def_type_statement_token13] = ACTIONS(8162), + [aux_sym_def_type_statement_token14] = ACTIONS(8162), + [aux_sym_call_statement_token1] = ACTIONS(8162), + [sym__ambiguous_call_statement] = ACTIONS(8162), + [aux_sym_addressof_expression_token1] = ACTIONS(8162), + [aux_sym_type_of_expression_token1] = ACTIONS(8162), + [aux_sym_unary_expression_token1] = ACTIONS(8162), + [sym_string_literal] = ACTIONS(8164), + [sym_number_literal] = ACTIONS(8164), + [aux_sym_boolean_literal_token1] = ACTIONS(8162), + [aux_sym_boolean_literal_token2] = ACTIONS(8162), + [sym_nothing_literal] = ACTIONS(8162), + [sym_null_literal] = ACTIONS(8162), + [sym_empty_literal] = ACTIONS(8162), + [sym_date_literal] = ACTIONS(8164), + [anon_sym_POUND] = ACTIONS(8162), + }, + [STATE(5440)] = { + [sym_argument_list] = STATE(6211), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7836), + [anon_sym_BANG] = ACTIONS(4034), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10606), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(5441)] = { + [sym_identifier] = ACTIONS(7984), + [sym_newline] = ACTIONS(7986), + [anon_sym_COLON] = ACTIONS(7986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7984), + [aux_sym_frm_property_statement_token1] = ACTIONS(7984), + [anon_sym_EQ] = ACTIONS(7986), + [anon_sym_DOT] = ACTIONS(7984), + [anon_sym_BANG] = ACTIONS(7986), + [aux_sym__attribute_identifier_token1] = ACTIONS(7984), + [aux_sym_option_statement_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7984), + [aux_sym_preprocessor_const_token1] = ACTIONS(7984), + [sym_static_modifier] = ACTIONS(7984), + [sym__dim_keyword] = ACTIONS(7984), + [sym__redim_keyword] = ACTIONS(7984), + [aux_sym_get_accessor_token1] = ACTIONS(7984), + [aux_sym_set_accessor_token1] = ACTIONS(7984), + [anon_sym_COMMA] = ACTIONS(7986), + [aux_sym_const_declaration_token1] = ACTIONS(7984), + [anon_sym_LPAREN] = ACTIONS(7986), + [aux_sym_as_type_clause_token2] = ACTIONS(7984), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7984), + [aux_sym_visibility_token1] = ACTIONS(7984), + [aux_sym_visibility_token2] = ACTIONS(7984), + [aux_sym_elseif_fragment_token1] = ACTIONS(7984), + [aux_sym_else_fragment_token1] = ACTIONS(7984), + [aux_sym_select_statement_token1] = ACTIONS(7984), + [aux_sym__for_header_token1] = ACTIONS(7984), + [aux_sym_do_statement_token1] = ACTIONS(7984), + [aux_sym_do_condition_token1] = ACTIONS(7984), + [aux_sym_while_statement_token1] = ACTIONS(7984), + [aux_sym_with_statement_token1] = ACTIONS(7984), + [aux_sym_exit_statement_token1] = ACTIONS(7984), + [sym_end_statement] = ACTIONS(7986), + [aux_sym_on_goto_statement_token1] = ACTIONS(7984), + [aux_sym_on_goto_statement_token2] = ACTIONS(7984), + [aux_sym_on_error_statement_token2] = ACTIONS(7984), + [sym__ambiguous_redim_statement] = ACTIONS(7986), + [aux_sym_erase_statement_token1] = ACTIONS(7984), + [aux_sym_open_statement_token1] = ACTIONS(7984), + [aux_sym_file_mode_token2] = ACTIONS(7984), + [aux_sym_file_access_token2] = ACTIONS(7984), + [aux_sym_file_lock_token2] = ACTIONS(7984), + [aux_sym_print_statement_token1] = ACTIONS(7984), + [anon_sym_PLUS] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(7984), + [anon_sym_QMARK] = ACTIONS(7986), + [aux_sym_close_statement_token1] = ACTIONS(7984), + [aux_sym_put_statement_token1] = ACTIONS(7984), + [aux_sym_unlock_statement_token1] = ACTIONS(7984), + [aux_sym_seek_statement_token1] = ACTIONS(7984), + [sym_reset_statement] = ACTIONS(7984), + [aux_sym_raise_event_statement_token1] = ACTIONS(7984), + [sym_stop_statement] = ACTIONS(7984), + [sym_beep_statement] = ACTIONS(7984), + [aux_sym_unload_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token2] = ACTIONS(7984), + [aux_sym_def_type_statement_token3] = ACTIONS(7984), + [aux_sym_def_type_statement_token4] = ACTIONS(7984), + [aux_sym_def_type_statement_token5] = ACTIONS(7984), + [aux_sym_def_type_statement_token6] = ACTIONS(7984), + [aux_sym_def_type_statement_token7] = ACTIONS(7984), + [aux_sym_def_type_statement_token8] = ACTIONS(7984), + [aux_sym_def_type_statement_token9] = ACTIONS(7984), + [aux_sym_def_type_statement_token10] = ACTIONS(7984), + [aux_sym_def_type_statement_token11] = ACTIONS(7984), + [aux_sym_def_type_statement_token12] = ACTIONS(7984), + [aux_sym_def_type_statement_token13] = ACTIONS(7984), + [aux_sym_def_type_statement_token14] = ACTIONS(7984), + [aux_sym_call_statement_token1] = ACTIONS(7984), + [sym__ambiguous_call_statement] = ACTIONS(7984), + [aux_sym_addressof_expression_token1] = ACTIONS(7984), + [aux_sym_type_of_expression_token1] = ACTIONS(7984), + [aux_sym_unary_expression_token1] = ACTIONS(7984), + [sym_string_literal] = ACTIONS(7986), + [sym_number_literal] = ACTIONS(7986), + [aux_sym_boolean_literal_token1] = ACTIONS(7984), + [aux_sym_boolean_literal_token2] = ACTIONS(7984), + [sym_nothing_literal] = ACTIONS(7984), + [sym_null_literal] = ACTIONS(7984), + [sym_empty_literal] = ACTIONS(7984), + [sym_date_literal] = ACTIONS(7986), + [anon_sym_POUND] = ACTIONS(7984), + }, + [STATE(5442)] = { + [sym_do_condition] = STATE(6519), + [sym_identifier] = ACTIONS(8595), + [sym_newline] = ACTIONS(8597), + [anon_sym_COLON] = ACTIONS(8597), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8595), + [aux_sym_frm_property_statement_token1] = ACTIONS(8595), + [anon_sym_DOT] = ACTIONS(8595), + [anon_sym_BANG] = ACTIONS(8597), + [aux_sym__attribute_identifier_token1] = ACTIONS(8595), + [aux_sym_option_statement_token3] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8595), + [aux_sym_preprocessor_const_token1] = ACTIONS(8595), + [sym_static_modifier] = ACTIONS(8595), + [sym__dim_keyword] = ACTIONS(8595), + [sym__redim_keyword] = ACTIONS(8595), + [aux_sym_get_accessor_token1] = ACTIONS(8595), + [aux_sym_set_accessor_token1] = ACTIONS(8595), + [aux_sym_const_declaration_token1] = ACTIONS(8595), + [anon_sym_LPAREN] = ACTIONS(8597), + [aux_sym_as_type_clause_token2] = ACTIONS(8595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8595), + [aux_sym_visibility_token1] = ACTIONS(8595), + [aux_sym_visibility_token2] = ACTIONS(8595), + [aux_sym_elseif_fragment_token1] = ACTIONS(8595), + [aux_sym_else_fragment_token1] = ACTIONS(8595), + [aux_sym_select_statement_token1] = ACTIONS(8595), + [aux_sym_select_statement_token2] = ACTIONS(8595), + [aux_sym__for_header_token1] = ACTIONS(8595), + [aux_sym_do_statement_token1] = ACTIONS(8595), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8595), + [aux_sym_exit_statement_token1] = ACTIONS(8595), + [sym_end_statement] = ACTIONS(8597), + [aux_sym_on_goto_statement_token1] = ACTIONS(8595), + [aux_sym_on_goto_statement_token2] = ACTIONS(8595), + [aux_sym_on_error_statement_token2] = ACTIONS(8595), + [sym__ambiguous_redim_statement] = ACTIONS(8597), + [aux_sym_erase_statement_token1] = ACTIONS(8595), + [aux_sym_open_statement_token1] = ACTIONS(8595), + [aux_sym_file_mode_token2] = ACTIONS(8595), + [aux_sym_file_access_token2] = ACTIONS(8595), + [aux_sym_file_lock_token2] = ACTIONS(8595), + [aux_sym_print_statement_token1] = ACTIONS(8595), + [anon_sym_PLUS] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(8595), + [anon_sym_QMARK] = ACTIONS(8597), + [aux_sym_close_statement_token1] = ACTIONS(8595), + [aux_sym_put_statement_token1] = ACTIONS(8595), + [aux_sym_unlock_statement_token1] = ACTIONS(8595), + [aux_sym_seek_statement_token1] = ACTIONS(8595), + [sym_reset_statement] = ACTIONS(8595), + [aux_sym_raise_event_statement_token1] = ACTIONS(8595), + [sym_stop_statement] = ACTIONS(8595), + [sym_beep_statement] = ACTIONS(8595), + [aux_sym_unload_statement_token1] = ACTIONS(8595), + [aux_sym_def_type_statement_token1] = ACTIONS(8595), + [aux_sym_def_type_statement_token2] = ACTIONS(8595), + [aux_sym_def_type_statement_token3] = ACTIONS(8595), + [aux_sym_def_type_statement_token4] = ACTIONS(8595), + [aux_sym_def_type_statement_token5] = ACTIONS(8595), + [aux_sym_def_type_statement_token6] = ACTIONS(8595), + [aux_sym_def_type_statement_token7] = ACTIONS(8595), + [aux_sym_def_type_statement_token8] = ACTIONS(8595), + [aux_sym_def_type_statement_token9] = ACTIONS(8595), + [aux_sym_def_type_statement_token10] = ACTIONS(8595), + [aux_sym_def_type_statement_token11] = ACTIONS(8595), + [aux_sym_def_type_statement_token12] = ACTIONS(8595), + [aux_sym_def_type_statement_token13] = ACTIONS(8595), + [aux_sym_def_type_statement_token14] = ACTIONS(8595), + [aux_sym_call_statement_token1] = ACTIONS(8595), + [sym__ambiguous_call_statement] = ACTIONS(8595), + [aux_sym_addressof_expression_token1] = ACTIONS(8595), + [aux_sym_type_of_expression_token1] = ACTIONS(8595), + [aux_sym_unary_expression_token1] = ACTIONS(8595), + [sym_string_literal] = ACTIONS(8597), + [sym_number_literal] = ACTIONS(8597), + [aux_sym_boolean_literal_token1] = ACTIONS(8595), + [aux_sym_boolean_literal_token2] = ACTIONS(8595), + [sym_nothing_literal] = ACTIONS(8595), + [sym_null_literal] = ACTIONS(8595), + [sym_empty_literal] = ACTIONS(8595), + [sym_date_literal] = ACTIONS(8597), + [anon_sym_POUND] = ACTIONS(8595), + }, + [STATE(5443)] = { + [sym_identifier] = ACTIONS(8022), + [sym_newline] = ACTIONS(8024), + [anon_sym_COLON] = ACTIONS(8024), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8022), + [aux_sym_frm_property_statement_token1] = ACTIONS(8022), + [anon_sym_EQ] = ACTIONS(8024), + [anon_sym_DOT] = ACTIONS(8022), + [anon_sym_BANG] = ACTIONS(8024), + [aux_sym__attribute_identifier_token1] = ACTIONS(8022), + [aux_sym_option_statement_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8022), + [aux_sym_preprocessor_const_token1] = ACTIONS(8022), + [sym_static_modifier] = ACTIONS(8022), + [sym__dim_keyword] = ACTIONS(8022), + [sym__redim_keyword] = ACTIONS(8022), + [aux_sym_get_accessor_token1] = ACTIONS(8022), + [aux_sym_set_accessor_token1] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8024), + [aux_sym_const_declaration_token1] = ACTIONS(8022), + [anon_sym_LPAREN] = ACTIONS(8024), + [aux_sym_as_type_clause_token2] = ACTIONS(8022), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8022), + [aux_sym_visibility_token1] = ACTIONS(8022), + [aux_sym_visibility_token2] = ACTIONS(8022), + [aux_sym_elseif_fragment_token1] = ACTIONS(8022), + [aux_sym_else_fragment_token1] = ACTIONS(8022), + [aux_sym_select_statement_token1] = ACTIONS(8022), + [aux_sym__for_header_token1] = ACTIONS(8022), + [aux_sym_do_statement_token1] = ACTIONS(8022), + [aux_sym_do_condition_token1] = ACTIONS(8022), + [aux_sym_while_statement_token1] = ACTIONS(8022), + [aux_sym_with_statement_token1] = ACTIONS(8022), + [aux_sym_exit_statement_token1] = ACTIONS(8022), + [sym_end_statement] = ACTIONS(8024), + [aux_sym_on_goto_statement_token1] = ACTIONS(8022), + [aux_sym_on_goto_statement_token2] = ACTIONS(8022), + [aux_sym_on_error_statement_token2] = ACTIONS(8022), + [sym__ambiguous_redim_statement] = ACTIONS(8024), + [aux_sym_erase_statement_token1] = ACTIONS(8022), + [aux_sym_open_statement_token1] = ACTIONS(8022), + [aux_sym_file_mode_token2] = ACTIONS(8022), + [aux_sym_file_access_token2] = ACTIONS(8022), + [aux_sym_file_lock_token2] = ACTIONS(8022), + [aux_sym_print_statement_token1] = ACTIONS(8022), + [anon_sym_PLUS] = ACTIONS(8024), + [anon_sym_DASH] = ACTIONS(8022), + [anon_sym_QMARK] = ACTIONS(8024), + [aux_sym_close_statement_token1] = ACTIONS(8022), + [aux_sym_put_statement_token1] = ACTIONS(8022), + [aux_sym_unlock_statement_token1] = ACTIONS(8022), + [aux_sym_seek_statement_token1] = ACTIONS(8022), + [sym_reset_statement] = ACTIONS(8022), + [aux_sym_raise_event_statement_token1] = ACTIONS(8022), + [sym_stop_statement] = ACTIONS(8022), + [sym_beep_statement] = ACTIONS(8022), + [aux_sym_unload_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token2] = ACTIONS(8022), + [aux_sym_def_type_statement_token3] = ACTIONS(8022), + [aux_sym_def_type_statement_token4] = ACTIONS(8022), + [aux_sym_def_type_statement_token5] = ACTIONS(8022), + [aux_sym_def_type_statement_token6] = ACTIONS(8022), + [aux_sym_def_type_statement_token7] = ACTIONS(8022), + [aux_sym_def_type_statement_token8] = ACTIONS(8022), + [aux_sym_def_type_statement_token9] = ACTIONS(8022), + [aux_sym_def_type_statement_token10] = ACTIONS(8022), + [aux_sym_def_type_statement_token11] = ACTIONS(8022), + [aux_sym_def_type_statement_token12] = ACTIONS(8022), + [aux_sym_def_type_statement_token13] = ACTIONS(8022), + [aux_sym_def_type_statement_token14] = ACTIONS(8022), + [aux_sym_call_statement_token1] = ACTIONS(8022), + [sym__ambiguous_call_statement] = ACTIONS(8022), + [aux_sym_addressof_expression_token1] = ACTIONS(8022), + [aux_sym_type_of_expression_token1] = ACTIONS(8022), + [aux_sym_unary_expression_token1] = ACTIONS(8022), + [sym_string_literal] = ACTIONS(8024), + [sym_number_literal] = ACTIONS(8024), + [aux_sym_boolean_literal_token1] = ACTIONS(8022), + [aux_sym_boolean_literal_token2] = ACTIONS(8022), + [sym_nothing_literal] = ACTIONS(8022), + [sym_null_literal] = ACTIONS(8022), + [sym_empty_literal] = ACTIONS(8022), + [sym_date_literal] = ACTIONS(8024), + [anon_sym_POUND] = ACTIONS(8022), + }, + [STATE(5444)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5445), + [sym_identifier] = ACTIONS(7939), + [sym_newline] = ACTIONS(7941), + [anon_sym_COLON] = ACTIONS(7941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7939), + [aux_sym_frm_property_statement_token1] = ACTIONS(7939), + [anon_sym_DOT] = ACTIONS(7939), + [anon_sym_BANG] = ACTIONS(7941), + [aux_sym__attribute_identifier_token1] = ACTIONS(7939), + [aux_sym_option_statement_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7939), + [aux_sym_preprocessor_const_token1] = ACTIONS(7939), + [sym_static_modifier] = ACTIONS(7939), + [sym__dim_keyword] = ACTIONS(7939), + [sym__redim_keyword] = ACTIONS(7939), + [aux_sym_get_accessor_token1] = ACTIONS(7939), + [aux_sym_set_accessor_token1] = ACTIONS(7939), + [anon_sym_COMMA] = ACTIONS(10608), + [aux_sym_const_declaration_token1] = ACTIONS(7939), + [anon_sym_LPAREN] = ACTIONS(7941), + [aux_sym_as_type_clause_token2] = ACTIONS(7939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7939), + [aux_sym_visibility_token1] = ACTIONS(7939), + [aux_sym_visibility_token2] = ACTIONS(7939), + [aux_sym_elseif_fragment_token1] = ACTIONS(7939), + [aux_sym_else_fragment_token1] = ACTIONS(7939), + [aux_sym_select_statement_token1] = ACTIONS(7939), + [aux_sym_select_statement_token2] = ACTIONS(7939), + [aux_sym__for_header_token1] = ACTIONS(7939), + [aux_sym_do_statement_token1] = ACTIONS(7939), + [aux_sym_do_condition_token1] = ACTIONS(7939), + [aux_sym_with_statement_token1] = ACTIONS(7939), + [aux_sym_exit_statement_token1] = ACTIONS(7939), + [sym_end_statement] = ACTIONS(7941), + [aux_sym_on_goto_statement_token1] = ACTIONS(7939), + [aux_sym_on_goto_statement_token2] = ACTIONS(7939), + [aux_sym_on_error_statement_token2] = ACTIONS(7939), + [sym__ambiguous_redim_statement] = ACTIONS(7941), + [aux_sym_erase_statement_token1] = ACTIONS(7939), + [aux_sym_open_statement_token1] = ACTIONS(7939), + [aux_sym_file_mode_token2] = ACTIONS(7939), + [aux_sym_file_access_token2] = ACTIONS(7939), + [aux_sym_file_lock_token2] = ACTIONS(7939), + [aux_sym_print_statement_token1] = ACTIONS(7939), + [anon_sym_PLUS] = ACTIONS(7941), + [anon_sym_DASH] = ACTIONS(7939), + [anon_sym_QMARK] = ACTIONS(7941), + [aux_sym_close_statement_token1] = ACTIONS(7939), + [aux_sym_put_statement_token1] = ACTIONS(7939), + [aux_sym_unlock_statement_token1] = ACTIONS(7939), + [aux_sym_seek_statement_token1] = ACTIONS(7939), + [sym_reset_statement] = ACTIONS(7939), + [aux_sym_raise_event_statement_token1] = ACTIONS(7939), + [sym_stop_statement] = ACTIONS(7939), + [sym_beep_statement] = ACTIONS(7939), + [aux_sym_unload_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token2] = ACTIONS(7939), + [aux_sym_def_type_statement_token3] = ACTIONS(7939), + [aux_sym_def_type_statement_token4] = ACTIONS(7939), + [aux_sym_def_type_statement_token5] = ACTIONS(7939), + [aux_sym_def_type_statement_token6] = ACTIONS(7939), + [aux_sym_def_type_statement_token7] = ACTIONS(7939), + [aux_sym_def_type_statement_token8] = ACTIONS(7939), + [aux_sym_def_type_statement_token9] = ACTIONS(7939), + [aux_sym_def_type_statement_token10] = ACTIONS(7939), + [aux_sym_def_type_statement_token11] = ACTIONS(7939), + [aux_sym_def_type_statement_token12] = ACTIONS(7939), + [aux_sym_def_type_statement_token13] = ACTIONS(7939), + [aux_sym_def_type_statement_token14] = ACTIONS(7939), + [aux_sym_call_statement_token1] = ACTIONS(7939), + [sym__ambiguous_call_statement] = ACTIONS(7939), + [aux_sym_addressof_expression_token1] = ACTIONS(7939), + [aux_sym_type_of_expression_token1] = ACTIONS(7939), + [aux_sym_unary_expression_token1] = ACTIONS(7939), + [sym_string_literal] = ACTIONS(7941), + [sym_number_literal] = ACTIONS(7941), + [aux_sym_boolean_literal_token1] = ACTIONS(7939), + [aux_sym_boolean_literal_token2] = ACTIONS(7939), + [sym_nothing_literal] = ACTIONS(7939), + [sym_null_literal] = ACTIONS(7939), + [sym_empty_literal] = ACTIONS(7939), + [sym_date_literal] = ACTIONS(7941), + [anon_sym_POUND] = ACTIONS(7939), + }, + [STATE(5445)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(7945), + [sym_newline] = ACTIONS(7947), + [anon_sym_COLON] = ACTIONS(7947), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7945), + [aux_sym_frm_property_statement_token1] = ACTIONS(7945), + [anon_sym_DOT] = ACTIONS(7945), + [anon_sym_BANG] = ACTIONS(7947), + [aux_sym__attribute_identifier_token1] = ACTIONS(7945), + [aux_sym_option_statement_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7945), + [aux_sym_preprocessor_const_token1] = ACTIONS(7945), + [sym_static_modifier] = ACTIONS(7945), + [sym__dim_keyword] = ACTIONS(7945), + [sym__redim_keyword] = ACTIONS(7945), + [aux_sym_get_accessor_token1] = ACTIONS(7945), + [aux_sym_set_accessor_token1] = ACTIONS(7945), + [anon_sym_COMMA] = ACTIONS(10608), + [aux_sym_const_declaration_token1] = ACTIONS(7945), + [anon_sym_LPAREN] = ACTIONS(7947), + [aux_sym_as_type_clause_token2] = ACTIONS(7945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7945), + [aux_sym_visibility_token1] = ACTIONS(7945), + [aux_sym_visibility_token2] = ACTIONS(7945), + [aux_sym_elseif_fragment_token1] = ACTIONS(7945), + [aux_sym_else_fragment_token1] = ACTIONS(7945), + [aux_sym_select_statement_token1] = ACTIONS(7945), + [aux_sym_select_statement_token2] = ACTIONS(7945), + [aux_sym__for_header_token1] = ACTIONS(7945), + [aux_sym_do_statement_token1] = ACTIONS(7945), + [aux_sym_do_condition_token1] = ACTIONS(7945), + [aux_sym_with_statement_token1] = ACTIONS(7945), + [aux_sym_exit_statement_token1] = ACTIONS(7945), + [sym_end_statement] = ACTIONS(7947), + [aux_sym_on_goto_statement_token1] = ACTIONS(7945), + [aux_sym_on_goto_statement_token2] = ACTIONS(7945), + [aux_sym_on_error_statement_token2] = ACTIONS(7945), + [sym__ambiguous_redim_statement] = ACTIONS(7947), + [aux_sym_erase_statement_token1] = ACTIONS(7945), + [aux_sym_open_statement_token1] = ACTIONS(7945), + [aux_sym_file_mode_token2] = ACTIONS(7945), + [aux_sym_file_access_token2] = ACTIONS(7945), + [aux_sym_file_lock_token2] = ACTIONS(7945), + [aux_sym_print_statement_token1] = ACTIONS(7945), + [anon_sym_PLUS] = ACTIONS(7947), + [anon_sym_DASH] = ACTIONS(7945), + [anon_sym_QMARK] = ACTIONS(7947), + [aux_sym_close_statement_token1] = ACTIONS(7945), + [aux_sym_put_statement_token1] = ACTIONS(7945), + [aux_sym_unlock_statement_token1] = ACTIONS(7945), + [aux_sym_seek_statement_token1] = ACTIONS(7945), + [sym_reset_statement] = ACTIONS(7945), + [aux_sym_raise_event_statement_token1] = ACTIONS(7945), + [sym_stop_statement] = ACTIONS(7945), + [sym_beep_statement] = ACTIONS(7945), + [aux_sym_unload_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token2] = ACTIONS(7945), + [aux_sym_def_type_statement_token3] = ACTIONS(7945), + [aux_sym_def_type_statement_token4] = ACTIONS(7945), + [aux_sym_def_type_statement_token5] = ACTIONS(7945), + [aux_sym_def_type_statement_token6] = ACTIONS(7945), + [aux_sym_def_type_statement_token7] = ACTIONS(7945), + [aux_sym_def_type_statement_token8] = ACTIONS(7945), + [aux_sym_def_type_statement_token9] = ACTIONS(7945), + [aux_sym_def_type_statement_token10] = ACTIONS(7945), + [aux_sym_def_type_statement_token11] = ACTIONS(7945), + [aux_sym_def_type_statement_token12] = ACTIONS(7945), + [aux_sym_def_type_statement_token13] = ACTIONS(7945), + [aux_sym_def_type_statement_token14] = ACTIONS(7945), + [aux_sym_call_statement_token1] = ACTIONS(7945), + [sym__ambiguous_call_statement] = ACTIONS(7945), + [aux_sym_addressof_expression_token1] = ACTIONS(7945), + [aux_sym_type_of_expression_token1] = ACTIONS(7945), + [aux_sym_unary_expression_token1] = ACTIONS(7945), + [sym_string_literal] = ACTIONS(7947), + [sym_number_literal] = ACTIONS(7947), + [aux_sym_boolean_literal_token1] = ACTIONS(7945), + [aux_sym_boolean_literal_token2] = ACTIONS(7945), + [sym_nothing_literal] = ACTIONS(7945), + [sym_null_literal] = ACTIONS(7945), + [sym_empty_literal] = ACTIONS(7945), + [sym_date_literal] = ACTIONS(7947), + [anon_sym_POUND] = ACTIONS(7945), + }, + [STATE(5446)] = { + [sym_do_condition] = STATE(6525), + [sym_identifier] = ACTIONS(8471), + [sym_newline] = ACTIONS(8473), + [anon_sym_COLON] = ACTIONS(8473), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8471), + [aux_sym_frm_property_statement_token1] = ACTIONS(8471), + [anon_sym_DOT] = ACTIONS(8471), + [anon_sym_BANG] = ACTIONS(8473), + [aux_sym__attribute_identifier_token1] = ACTIONS(8471), + [aux_sym_option_statement_token3] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8471), + [aux_sym_preprocessor_const_token1] = ACTIONS(8471), + [sym_static_modifier] = ACTIONS(8471), + [sym__dim_keyword] = ACTIONS(8471), + [sym__redim_keyword] = ACTIONS(8471), + [aux_sym_get_accessor_token1] = ACTIONS(8471), + [aux_sym_set_accessor_token1] = ACTIONS(8471), + [aux_sym_const_declaration_token1] = ACTIONS(8471), + [anon_sym_LPAREN] = ACTIONS(8473), + [aux_sym_as_type_clause_token2] = ACTIONS(8471), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8471), + [aux_sym_visibility_token1] = ACTIONS(8471), + [aux_sym_visibility_token2] = ACTIONS(8471), + [aux_sym_elseif_fragment_token1] = ACTIONS(8471), + [aux_sym_else_fragment_token1] = ACTIONS(8471), + [aux_sym_select_statement_token1] = ACTIONS(8471), + [aux_sym__for_header_token1] = ACTIONS(8471), + [aux_sym_do_statement_token1] = ACTIONS(8471), + [aux_sym_do_statement_token2] = ACTIONS(8471), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8471), + [aux_sym_exit_statement_token1] = ACTIONS(8471), + [sym_end_statement] = ACTIONS(8473), + [aux_sym_on_goto_statement_token1] = ACTIONS(8471), + [aux_sym_on_goto_statement_token2] = ACTIONS(8471), + [aux_sym_on_error_statement_token2] = ACTIONS(8471), + [sym__ambiguous_redim_statement] = ACTIONS(8473), + [aux_sym_erase_statement_token1] = ACTIONS(8471), + [aux_sym_open_statement_token1] = ACTIONS(8471), + [aux_sym_file_mode_token2] = ACTIONS(8471), + [aux_sym_file_access_token2] = ACTIONS(8471), + [aux_sym_file_lock_token2] = ACTIONS(8471), + [aux_sym_print_statement_token1] = ACTIONS(8471), + [anon_sym_PLUS] = ACTIONS(8473), + [anon_sym_DASH] = ACTIONS(8471), + [anon_sym_QMARK] = ACTIONS(8473), + [aux_sym_close_statement_token1] = ACTIONS(8471), + [aux_sym_put_statement_token1] = ACTIONS(8471), + [aux_sym_unlock_statement_token1] = ACTIONS(8471), + [aux_sym_seek_statement_token1] = ACTIONS(8471), + [sym_reset_statement] = ACTIONS(8471), + [aux_sym_raise_event_statement_token1] = ACTIONS(8471), + [sym_stop_statement] = ACTIONS(8471), + [sym_beep_statement] = ACTIONS(8471), + [aux_sym_unload_statement_token1] = ACTIONS(8471), + [aux_sym_def_type_statement_token1] = ACTIONS(8471), + [aux_sym_def_type_statement_token2] = ACTIONS(8471), + [aux_sym_def_type_statement_token3] = ACTIONS(8471), + [aux_sym_def_type_statement_token4] = ACTIONS(8471), + [aux_sym_def_type_statement_token5] = ACTIONS(8471), + [aux_sym_def_type_statement_token6] = ACTIONS(8471), + [aux_sym_def_type_statement_token7] = ACTIONS(8471), + [aux_sym_def_type_statement_token8] = ACTIONS(8471), + [aux_sym_def_type_statement_token9] = ACTIONS(8471), + [aux_sym_def_type_statement_token10] = ACTIONS(8471), + [aux_sym_def_type_statement_token11] = ACTIONS(8471), + [aux_sym_def_type_statement_token12] = ACTIONS(8471), + [aux_sym_def_type_statement_token13] = ACTIONS(8471), + [aux_sym_def_type_statement_token14] = ACTIONS(8471), + [aux_sym_call_statement_token1] = ACTIONS(8471), + [sym__ambiguous_call_statement] = ACTIONS(8471), + [aux_sym_addressof_expression_token1] = ACTIONS(8471), + [aux_sym_type_of_expression_token1] = ACTIONS(8471), + [aux_sym_unary_expression_token1] = ACTIONS(8471), + [sym_string_literal] = ACTIONS(8473), + [sym_number_literal] = ACTIONS(8473), + [aux_sym_boolean_literal_token1] = ACTIONS(8471), + [aux_sym_boolean_literal_token2] = ACTIONS(8471), + [sym_nothing_literal] = ACTIONS(8471), + [sym_null_literal] = ACTIONS(8471), + [sym_empty_literal] = ACTIONS(8471), + [sym_date_literal] = ACTIONS(8473), + [anon_sym_POUND] = ACTIONS(8471), + }, + [STATE(5447)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5447), + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(10610), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym_select_statement_token2] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(5448)] = { + [sym_do_condition] = STATE(6526), + [sym_identifier] = ACTIONS(8479), + [sym_newline] = ACTIONS(8481), + [anon_sym_COLON] = ACTIONS(8481), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8479), + [aux_sym_frm_property_statement_token1] = ACTIONS(8479), + [anon_sym_DOT] = ACTIONS(8479), + [anon_sym_BANG] = ACTIONS(8481), + [aux_sym__attribute_identifier_token1] = ACTIONS(8479), + [aux_sym_option_statement_token3] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8479), + [aux_sym_preprocessor_const_token1] = ACTIONS(8479), + [sym_static_modifier] = ACTIONS(8479), + [sym__dim_keyword] = ACTIONS(8479), + [sym__redim_keyword] = ACTIONS(8479), + [aux_sym_get_accessor_token1] = ACTIONS(8479), + [aux_sym_set_accessor_token1] = ACTIONS(8479), + [aux_sym_const_declaration_token1] = ACTIONS(8479), + [anon_sym_LPAREN] = ACTIONS(8481), + [aux_sym_as_type_clause_token2] = ACTIONS(8479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8479), + [aux_sym_visibility_token1] = ACTIONS(8479), + [aux_sym_visibility_token2] = ACTIONS(8479), + [aux_sym_elseif_fragment_token1] = ACTIONS(8479), + [aux_sym_else_fragment_token1] = ACTIONS(8479), + [aux_sym_select_statement_token1] = ACTIONS(8479), + [aux_sym__for_header_token1] = ACTIONS(8479), + [aux_sym_do_statement_token1] = ACTIONS(8479), + [aux_sym_do_statement_token2] = ACTIONS(8479), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8479), + [aux_sym_exit_statement_token1] = ACTIONS(8479), + [sym_end_statement] = ACTIONS(8481), + [aux_sym_on_goto_statement_token1] = ACTIONS(8479), + [aux_sym_on_goto_statement_token2] = ACTIONS(8479), + [aux_sym_on_error_statement_token2] = ACTIONS(8479), + [sym__ambiguous_redim_statement] = ACTIONS(8481), + [aux_sym_erase_statement_token1] = ACTIONS(8479), + [aux_sym_open_statement_token1] = ACTIONS(8479), + [aux_sym_file_mode_token2] = ACTIONS(8479), + [aux_sym_file_access_token2] = ACTIONS(8479), + [aux_sym_file_lock_token2] = ACTIONS(8479), + [aux_sym_print_statement_token1] = ACTIONS(8479), + [anon_sym_PLUS] = ACTIONS(8481), + [anon_sym_DASH] = ACTIONS(8479), + [anon_sym_QMARK] = ACTIONS(8481), + [aux_sym_close_statement_token1] = ACTIONS(8479), + [aux_sym_put_statement_token1] = ACTIONS(8479), + [aux_sym_unlock_statement_token1] = ACTIONS(8479), + [aux_sym_seek_statement_token1] = ACTIONS(8479), + [sym_reset_statement] = ACTIONS(8479), + [aux_sym_raise_event_statement_token1] = ACTIONS(8479), + [sym_stop_statement] = ACTIONS(8479), + [sym_beep_statement] = ACTIONS(8479), + [aux_sym_unload_statement_token1] = ACTIONS(8479), + [aux_sym_def_type_statement_token1] = ACTIONS(8479), + [aux_sym_def_type_statement_token2] = ACTIONS(8479), + [aux_sym_def_type_statement_token3] = ACTIONS(8479), + [aux_sym_def_type_statement_token4] = ACTIONS(8479), + [aux_sym_def_type_statement_token5] = ACTIONS(8479), + [aux_sym_def_type_statement_token6] = ACTIONS(8479), + [aux_sym_def_type_statement_token7] = ACTIONS(8479), + [aux_sym_def_type_statement_token8] = ACTIONS(8479), + [aux_sym_def_type_statement_token9] = ACTIONS(8479), + [aux_sym_def_type_statement_token10] = ACTIONS(8479), + [aux_sym_def_type_statement_token11] = ACTIONS(8479), + [aux_sym_def_type_statement_token12] = ACTIONS(8479), + [aux_sym_def_type_statement_token13] = ACTIONS(8479), + [aux_sym_def_type_statement_token14] = ACTIONS(8479), + [aux_sym_call_statement_token1] = ACTIONS(8479), + [sym__ambiguous_call_statement] = ACTIONS(8479), + [aux_sym_addressof_expression_token1] = ACTIONS(8479), + [aux_sym_type_of_expression_token1] = ACTIONS(8479), + [aux_sym_unary_expression_token1] = ACTIONS(8479), + [sym_string_literal] = ACTIONS(8481), + [sym_number_literal] = ACTIONS(8481), + [aux_sym_boolean_literal_token1] = ACTIONS(8479), + [aux_sym_boolean_literal_token2] = ACTIONS(8479), + [sym_nothing_literal] = ACTIONS(8479), + [sym_null_literal] = ACTIONS(8479), + [sym_empty_literal] = ACTIONS(8479), + [sym_date_literal] = ACTIONS(8481), + [anon_sym_POUND] = ACTIONS(8479), + }, + [STATE(5449)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5416), + [sym_identifier] = ACTIONS(8483), + [sym_newline] = ACTIONS(8485), + [anon_sym_COLON] = ACTIONS(8485), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8483), + [aux_sym_frm_property_statement_token1] = ACTIONS(8483), + [anon_sym_DOT] = ACTIONS(8483), + [anon_sym_BANG] = ACTIONS(8485), + [aux_sym__attribute_identifier_token1] = ACTIONS(8483), + [aux_sym_option_statement_token3] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8483), + [aux_sym_preprocessor_const_token1] = ACTIONS(8483), + [sym_static_modifier] = ACTIONS(8483), + [sym__dim_keyword] = ACTIONS(8483), + [sym__redim_keyword] = ACTIONS(8483), + [aux_sym_get_accessor_token1] = ACTIONS(8483), + [aux_sym_set_accessor_token1] = ACTIONS(8483), + [anon_sym_COMMA] = ACTIONS(5156), + [aux_sym_const_declaration_token1] = ACTIONS(8483), + [anon_sym_LPAREN] = ACTIONS(8485), + [aux_sym_as_type_clause_token2] = ACTIONS(8483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8483), + [aux_sym_visibility_token1] = ACTIONS(8483), + [aux_sym_visibility_token2] = ACTIONS(8483), + [aux_sym_elseif_fragment_token1] = ACTIONS(8483), + [aux_sym_else_fragment_token1] = ACTIONS(8483), + [aux_sym_select_statement_token1] = ACTIONS(8483), + [aux_sym__for_header_token1] = ACTIONS(8483), + [aux_sym_do_statement_token1] = ACTIONS(8483), + [aux_sym_do_statement_token2] = ACTIONS(8483), + [aux_sym_do_condition_token1] = ACTIONS(8483), + [aux_sym_with_statement_token1] = ACTIONS(8483), + [aux_sym_exit_statement_token1] = ACTIONS(8483), + [sym_end_statement] = ACTIONS(8485), + [aux_sym_on_goto_statement_token1] = ACTIONS(8483), + [aux_sym_on_goto_statement_token2] = ACTIONS(8483), + [aux_sym_on_error_statement_token2] = ACTIONS(8483), + [sym__ambiguous_redim_statement] = ACTIONS(8485), + [aux_sym_erase_statement_token1] = ACTIONS(8483), + [aux_sym_open_statement_token1] = ACTIONS(8483), + [aux_sym_file_mode_token2] = ACTIONS(8483), + [aux_sym_file_access_token2] = ACTIONS(8483), + [aux_sym_file_lock_token2] = ACTIONS(8483), + [aux_sym_print_statement_token1] = ACTIONS(8483), + [anon_sym_PLUS] = ACTIONS(8485), + [anon_sym_DASH] = ACTIONS(8483), + [anon_sym_QMARK] = ACTIONS(8485), + [aux_sym_close_statement_token1] = ACTIONS(8483), + [aux_sym_put_statement_token1] = ACTIONS(8483), + [aux_sym_unlock_statement_token1] = ACTIONS(8483), + [aux_sym_seek_statement_token1] = ACTIONS(8483), + [sym_reset_statement] = ACTIONS(8483), + [aux_sym_raise_event_statement_token1] = ACTIONS(8483), + [sym_stop_statement] = ACTIONS(8483), + [sym_beep_statement] = ACTIONS(8483), + [aux_sym_unload_statement_token1] = ACTIONS(8483), + [aux_sym_def_type_statement_token1] = ACTIONS(8483), + [aux_sym_def_type_statement_token2] = ACTIONS(8483), + [aux_sym_def_type_statement_token3] = ACTIONS(8483), + [aux_sym_def_type_statement_token4] = ACTIONS(8483), + [aux_sym_def_type_statement_token5] = ACTIONS(8483), + [aux_sym_def_type_statement_token6] = ACTIONS(8483), + [aux_sym_def_type_statement_token7] = ACTIONS(8483), + [aux_sym_def_type_statement_token8] = ACTIONS(8483), + [aux_sym_def_type_statement_token9] = ACTIONS(8483), + [aux_sym_def_type_statement_token10] = ACTIONS(8483), + [aux_sym_def_type_statement_token11] = ACTIONS(8483), + [aux_sym_def_type_statement_token12] = ACTIONS(8483), + [aux_sym_def_type_statement_token13] = ACTIONS(8483), + [aux_sym_def_type_statement_token14] = ACTIONS(8483), + [aux_sym_call_statement_token1] = ACTIONS(8483), + [sym__ambiguous_call_statement] = ACTIONS(8483), + [aux_sym_addressof_expression_token1] = ACTIONS(8483), + [aux_sym_type_of_expression_token1] = ACTIONS(8483), + [aux_sym_unary_expression_token1] = ACTIONS(8483), + [sym_string_literal] = ACTIONS(8485), + [sym_number_literal] = ACTIONS(8485), + [aux_sym_boolean_literal_token1] = ACTIONS(8483), + [aux_sym_boolean_literal_token2] = ACTIONS(8483), + [sym_nothing_literal] = ACTIONS(8483), + [sym_null_literal] = ACTIONS(8483), + [sym_empty_literal] = ACTIONS(8483), + [sym_date_literal] = ACTIONS(8485), + [anon_sym_POUND] = ACTIONS(8483), + }, + [STATE(5450)] = { + [sym_do_condition] = STATE(6548), + [sym_identifier] = ACTIONS(8599), + [sym_newline] = ACTIONS(8601), + [anon_sym_COLON] = ACTIONS(8601), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8599), + [aux_sym_frm_property_statement_token1] = ACTIONS(8599), + [anon_sym_DOT] = ACTIONS(8599), + [anon_sym_BANG] = ACTIONS(8601), + [aux_sym__attribute_identifier_token1] = ACTIONS(8599), + [aux_sym_option_statement_token3] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8599), + [aux_sym_preprocessor_const_token1] = ACTIONS(8599), + [sym_static_modifier] = ACTIONS(8599), + [sym__dim_keyword] = ACTIONS(8599), + [sym__redim_keyword] = ACTIONS(8599), + [aux_sym_get_accessor_token1] = ACTIONS(8599), + [aux_sym_set_accessor_token1] = ACTIONS(8599), + [aux_sym_const_declaration_token1] = ACTIONS(8599), + [anon_sym_LPAREN] = ACTIONS(8601), + [aux_sym_as_type_clause_token2] = ACTIONS(8599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8599), + [aux_sym_visibility_token1] = ACTIONS(8599), + [aux_sym_visibility_token2] = ACTIONS(8599), + [aux_sym_elseif_fragment_token1] = ACTIONS(8599), + [aux_sym_else_fragment_token1] = ACTIONS(8599), + [aux_sym_select_statement_token1] = ACTIONS(8599), + [aux_sym_select_statement_token2] = ACTIONS(8599), + [aux_sym__for_header_token1] = ACTIONS(8599), + [aux_sym_do_statement_token1] = ACTIONS(8599), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8599), + [aux_sym_exit_statement_token1] = ACTIONS(8599), + [sym_end_statement] = ACTIONS(8601), + [aux_sym_on_goto_statement_token1] = ACTIONS(8599), + [aux_sym_on_goto_statement_token2] = ACTIONS(8599), + [aux_sym_on_error_statement_token2] = ACTIONS(8599), + [sym__ambiguous_redim_statement] = ACTIONS(8601), + [aux_sym_erase_statement_token1] = ACTIONS(8599), + [aux_sym_open_statement_token1] = ACTIONS(8599), + [aux_sym_file_mode_token2] = ACTIONS(8599), + [aux_sym_file_access_token2] = ACTIONS(8599), + [aux_sym_file_lock_token2] = ACTIONS(8599), + [aux_sym_print_statement_token1] = ACTIONS(8599), + [anon_sym_PLUS] = ACTIONS(8601), + [anon_sym_DASH] = ACTIONS(8599), + [anon_sym_QMARK] = ACTIONS(8601), + [aux_sym_close_statement_token1] = ACTIONS(8599), + [aux_sym_put_statement_token1] = ACTIONS(8599), + [aux_sym_unlock_statement_token1] = ACTIONS(8599), + [aux_sym_seek_statement_token1] = ACTIONS(8599), + [sym_reset_statement] = ACTIONS(8599), + [aux_sym_raise_event_statement_token1] = ACTIONS(8599), + [sym_stop_statement] = ACTIONS(8599), + [sym_beep_statement] = ACTIONS(8599), + [aux_sym_unload_statement_token1] = ACTIONS(8599), + [aux_sym_def_type_statement_token1] = ACTIONS(8599), + [aux_sym_def_type_statement_token2] = ACTIONS(8599), + [aux_sym_def_type_statement_token3] = ACTIONS(8599), + [aux_sym_def_type_statement_token4] = ACTIONS(8599), + [aux_sym_def_type_statement_token5] = ACTIONS(8599), + [aux_sym_def_type_statement_token6] = ACTIONS(8599), + [aux_sym_def_type_statement_token7] = ACTIONS(8599), + [aux_sym_def_type_statement_token8] = ACTIONS(8599), + [aux_sym_def_type_statement_token9] = ACTIONS(8599), + [aux_sym_def_type_statement_token10] = ACTIONS(8599), + [aux_sym_def_type_statement_token11] = ACTIONS(8599), + [aux_sym_def_type_statement_token12] = ACTIONS(8599), + [aux_sym_def_type_statement_token13] = ACTIONS(8599), + [aux_sym_def_type_statement_token14] = ACTIONS(8599), + [aux_sym_call_statement_token1] = ACTIONS(8599), + [sym__ambiguous_call_statement] = ACTIONS(8599), + [aux_sym_addressof_expression_token1] = ACTIONS(8599), + [aux_sym_type_of_expression_token1] = ACTIONS(8599), + [aux_sym_unary_expression_token1] = ACTIONS(8599), + [sym_string_literal] = ACTIONS(8601), + [sym_number_literal] = ACTIONS(8601), + [aux_sym_boolean_literal_token1] = ACTIONS(8599), + [aux_sym_boolean_literal_token2] = ACTIONS(8599), + [sym_nothing_literal] = ACTIONS(8599), + [sym_null_literal] = ACTIONS(8599), + [sym_empty_literal] = ACTIONS(8599), + [sym_date_literal] = ACTIONS(8601), + [anon_sym_POUND] = ACTIONS(8599), + }, + [STATE(5451)] = { + [sym_identifier] = ACTIONS(9106), + [sym_newline] = ACTIONS(9108), + [anon_sym_COLON] = ACTIONS(9108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9106), + [aux_sym_frm_property_statement_token1] = ACTIONS(9106), + [anon_sym_DOT] = ACTIONS(9106), + [anon_sym_BANG] = ACTIONS(9108), + [aux_sym__attribute_identifier_token1] = ACTIONS(9106), + [aux_sym_option_statement_token3] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9106), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9106), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9106), + [aux_sym_preprocessor_const_token1] = ACTIONS(9106), + [sym_static_modifier] = ACTIONS(9106), + [sym__dim_keyword] = ACTIONS(9106), + [sym__redim_keyword] = ACTIONS(9106), + [aux_sym_get_accessor_token1] = ACTIONS(9106), + [aux_sym_set_accessor_token1] = ACTIONS(9106), + [aux_sym_const_declaration_token1] = ACTIONS(9106), + [anon_sym_LPAREN] = ACTIONS(9108), + [aux_sym_as_type_clause_token2] = ACTIONS(9106), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9106), + [aux_sym_visibility_token1] = ACTIONS(9106), + [aux_sym_visibility_token2] = ACTIONS(9106), + [aux_sym_elseif_fragment_token1] = ACTIONS(9106), + [aux_sym_else_fragment_token1] = ACTIONS(9106), + [aux_sym_select_statement_token1] = ACTIONS(9106), + [aux_sym__for_header_token1] = ACTIONS(9106), + [aux_sym_do_statement_token1] = ACTIONS(9106), + [aux_sym_do_condition_token1] = ACTIONS(9106), + [aux_sym_with_statement_token1] = ACTIONS(9106), + [aux_sym_exit_statement_token1] = ACTIONS(9106), + [sym_end_statement] = ACTIONS(9108), + [aux_sym_on_goto_statement_token1] = ACTIONS(9106), + [aux_sym_on_goto_statement_token2] = ACTIONS(9106), + [aux_sym_on_error_statement_token2] = ACTIONS(9106), + [sym__ambiguous_redim_statement] = ACTIONS(9108), + [aux_sym_erase_statement_token1] = ACTIONS(9106), + [aux_sym_open_statement_token1] = ACTIONS(9106), + [aux_sym_file_mode_token2] = ACTIONS(9106), + [aux_sym_file_access_token2] = ACTIONS(9106), + [aux_sym_file_lock_token2] = ACTIONS(9106), + [aux_sym_print_statement_token1] = ACTIONS(9106), + [anon_sym_PLUS] = ACTIONS(9108), + [anon_sym_DASH] = ACTIONS(9106), + [anon_sym_QMARK] = ACTIONS(9108), + [aux_sym_close_statement_token1] = ACTIONS(9106), + [aux_sym_put_statement_token1] = ACTIONS(9106), + [aux_sym_unlock_statement_token1] = ACTIONS(9106), + [aux_sym_seek_statement_token1] = ACTIONS(9106), + [sym_reset_statement] = ACTIONS(9106), + [aux_sym_raise_event_statement_token1] = ACTIONS(9106), + [sym_stop_statement] = ACTIONS(9106), + [sym_beep_statement] = ACTIONS(9106), + [aux_sym_unload_statement_token1] = ACTIONS(9106), + [aux_sym_def_type_statement_token1] = ACTIONS(9106), + [aux_sym_def_type_statement_token2] = ACTIONS(9106), + [aux_sym_def_type_statement_token3] = ACTIONS(9106), + [aux_sym_def_type_statement_token4] = ACTIONS(9106), + [aux_sym_def_type_statement_token5] = ACTIONS(9106), + [aux_sym_def_type_statement_token6] = ACTIONS(9106), + [aux_sym_def_type_statement_token7] = ACTIONS(9106), + [aux_sym_def_type_statement_token8] = ACTIONS(9106), + [aux_sym_def_type_statement_token9] = ACTIONS(9106), + [aux_sym_def_type_statement_token10] = ACTIONS(9106), + [aux_sym_def_type_statement_token11] = ACTIONS(9106), + [aux_sym_def_type_statement_token12] = ACTIONS(9106), + [aux_sym_def_type_statement_token13] = ACTIONS(9106), + [aux_sym_def_type_statement_token14] = ACTIONS(9106), + [aux_sym_call_statement_token1] = ACTIONS(9106), + [sym__ambiguous_call_statement] = ACTIONS(9106), + [aux_sym_addressof_expression_token1] = ACTIONS(9106), + [aux_sym_type_of_expression_token1] = ACTIONS(9106), + [aux_sym_unary_expression_token1] = ACTIONS(9106), + [sym_string_literal] = ACTIONS(9108), + [sym_number_literal] = ACTIONS(9108), + [aux_sym_boolean_literal_token1] = ACTIONS(9106), + [aux_sym_boolean_literal_token2] = ACTIONS(9106), + [sym_nothing_literal] = ACTIONS(9106), + [sym_null_literal] = ACTIONS(9106), + [sym_empty_literal] = ACTIONS(9106), + [sym_date_literal] = ACTIONS(9108), + [anon_sym_POUND] = ACTIONS(9106), + }, + [STATE(5452)] = { + [aux_sym_redim_statement_repeat1] = STATE(5746), + [sym_identifier] = ACTIONS(8340), + [sym_newline] = ACTIONS(8342), + [anon_sym_COLON] = ACTIONS(8342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8340), + [aux_sym_frm_property_statement_token1] = ACTIONS(8340), + [anon_sym_DOT] = ACTIONS(8340), + [anon_sym_BANG] = ACTIONS(8342), + [aux_sym__attribute_identifier_token1] = ACTIONS(8340), + [aux_sym_option_statement_token3] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8340), + [aux_sym_preprocessor_const_token1] = ACTIONS(8340), + [sym_static_modifier] = ACTIONS(8340), + [sym__dim_keyword] = ACTIONS(8340), + [sym__redim_keyword] = ACTIONS(8340), + [aux_sym_get_accessor_token1] = ACTIONS(8340), + [aux_sym_set_accessor_token1] = ACTIONS(8340), + [anon_sym_COMMA] = ACTIONS(10613), + [aux_sym_const_declaration_token1] = ACTIONS(8340), + [anon_sym_LPAREN] = ACTIONS(8342), + [aux_sym_as_type_clause_token2] = ACTIONS(8340), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8340), + [aux_sym_visibility_token1] = ACTIONS(8340), + [aux_sym_visibility_token2] = ACTIONS(8340), + [aux_sym_elseif_fragment_token1] = ACTIONS(8340), + [aux_sym_else_fragment_token1] = ACTIONS(8340), + [aux_sym_select_statement_token1] = ACTIONS(8340), + [aux_sym_select_statement_token2] = ACTIONS(8340), + [aux_sym__for_header_token1] = ACTIONS(8340), + [aux_sym_do_statement_token1] = ACTIONS(8340), + [aux_sym_do_condition_token1] = ACTIONS(8340), + [aux_sym_with_statement_token1] = ACTIONS(8340), + [aux_sym_exit_statement_token1] = ACTIONS(8340), + [sym_end_statement] = ACTIONS(8342), + [aux_sym_on_goto_statement_token1] = ACTIONS(8340), + [aux_sym_on_goto_statement_token2] = ACTIONS(8340), + [aux_sym_on_error_statement_token2] = ACTIONS(8340), + [sym__ambiguous_redim_statement] = ACTIONS(8342), + [aux_sym_erase_statement_token1] = ACTIONS(8340), + [aux_sym_open_statement_token1] = ACTIONS(8340), + [aux_sym_file_mode_token2] = ACTIONS(8340), + [aux_sym_file_access_token2] = ACTIONS(8340), + [aux_sym_file_lock_token2] = ACTIONS(8340), + [aux_sym_print_statement_token1] = ACTIONS(8340), + [anon_sym_PLUS] = ACTIONS(8342), + [anon_sym_DASH] = ACTIONS(8340), + [anon_sym_QMARK] = ACTIONS(8342), + [aux_sym_close_statement_token1] = ACTIONS(8340), + [aux_sym_put_statement_token1] = ACTIONS(8340), + [aux_sym_unlock_statement_token1] = ACTIONS(8340), + [aux_sym_seek_statement_token1] = ACTIONS(8340), + [sym_reset_statement] = ACTIONS(8340), + [aux_sym_raise_event_statement_token1] = ACTIONS(8340), + [sym_stop_statement] = ACTIONS(8340), + [sym_beep_statement] = ACTIONS(8340), + [aux_sym_unload_statement_token1] = ACTIONS(8340), + [aux_sym_def_type_statement_token1] = ACTIONS(8340), + [aux_sym_def_type_statement_token2] = ACTIONS(8340), + [aux_sym_def_type_statement_token3] = ACTIONS(8340), + [aux_sym_def_type_statement_token4] = ACTIONS(8340), + [aux_sym_def_type_statement_token5] = ACTIONS(8340), + [aux_sym_def_type_statement_token6] = ACTIONS(8340), + [aux_sym_def_type_statement_token7] = ACTIONS(8340), + [aux_sym_def_type_statement_token8] = ACTIONS(8340), + [aux_sym_def_type_statement_token9] = ACTIONS(8340), + [aux_sym_def_type_statement_token10] = ACTIONS(8340), + [aux_sym_def_type_statement_token11] = ACTIONS(8340), + [aux_sym_def_type_statement_token12] = ACTIONS(8340), + [aux_sym_def_type_statement_token13] = ACTIONS(8340), + [aux_sym_def_type_statement_token14] = ACTIONS(8340), + [aux_sym_call_statement_token1] = ACTIONS(8340), + [sym__ambiguous_call_statement] = ACTIONS(8340), + [aux_sym_addressof_expression_token1] = ACTIONS(8340), + [aux_sym_type_of_expression_token1] = ACTIONS(8340), + [aux_sym_unary_expression_token1] = ACTIONS(8340), + [sym_string_literal] = ACTIONS(8342), + [sym_number_literal] = ACTIONS(8342), + [aux_sym_boolean_literal_token1] = ACTIONS(8340), + [aux_sym_boolean_literal_token2] = ACTIONS(8340), + [sym_nothing_literal] = ACTIONS(8340), + [sym_null_literal] = ACTIONS(8340), + [sym_empty_literal] = ACTIONS(8340), + [sym_date_literal] = ACTIONS(8342), + [anon_sym_POUND] = ACTIONS(8340), + }, + [STATE(5453)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5156), + [sym_identifier] = ACTIONS(8308), + [sym_newline] = ACTIONS(8310), + [anon_sym_COLON] = ACTIONS(8310), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8308), + [aux_sym_frm_property_statement_token1] = ACTIONS(8308), + [anon_sym_DOT] = ACTIONS(8308), + [anon_sym_BANG] = ACTIONS(8310), + [aux_sym__attribute_identifier_token1] = ACTIONS(8308), + [aux_sym_option_statement_token3] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8308), + [aux_sym_preprocessor_const_token1] = ACTIONS(8308), + [sym_static_modifier] = ACTIONS(8308), + [sym__dim_keyword] = ACTIONS(8308), + [sym__redim_keyword] = ACTIONS(8308), + [aux_sym_get_accessor_token1] = ACTIONS(8308), + [aux_sym_set_accessor_token1] = ACTIONS(8308), + [anon_sym_COMMA] = ACTIONS(10469), + [aux_sym_const_declaration_token1] = ACTIONS(8308), + [anon_sym_LPAREN] = ACTIONS(8310), + [aux_sym_as_type_clause_token2] = ACTIONS(8308), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8308), + [aux_sym_visibility_token1] = ACTIONS(8308), + [aux_sym_visibility_token2] = ACTIONS(8308), + [aux_sym_elseif_fragment_token1] = ACTIONS(8308), + [aux_sym_else_fragment_token1] = ACTIONS(8308), + [aux_sym_select_statement_token1] = ACTIONS(8308), + [aux_sym_select_statement_token2] = ACTIONS(8308), + [aux_sym__for_header_token1] = ACTIONS(8308), + [aux_sym_do_statement_token1] = ACTIONS(8308), + [aux_sym_do_condition_token1] = ACTIONS(8308), + [aux_sym_with_statement_token1] = ACTIONS(8308), + [aux_sym_exit_statement_token1] = ACTIONS(8308), + [sym_end_statement] = ACTIONS(8310), + [aux_sym_on_goto_statement_token1] = ACTIONS(8308), + [aux_sym_on_goto_statement_token2] = ACTIONS(8308), + [aux_sym_on_error_statement_token2] = ACTIONS(8308), + [sym__ambiguous_redim_statement] = ACTIONS(8310), + [aux_sym_erase_statement_token1] = ACTIONS(8308), + [aux_sym_open_statement_token1] = ACTIONS(8308), + [aux_sym_file_mode_token2] = ACTIONS(8308), + [aux_sym_file_access_token2] = ACTIONS(8308), + [aux_sym_file_lock_token2] = ACTIONS(8308), + [aux_sym_print_statement_token1] = ACTIONS(8308), + [anon_sym_PLUS] = ACTIONS(8310), + [anon_sym_DASH] = ACTIONS(8308), + [anon_sym_QMARK] = ACTIONS(8310), + [aux_sym_close_statement_token1] = ACTIONS(8308), + [aux_sym_put_statement_token1] = ACTIONS(8308), + [aux_sym_unlock_statement_token1] = ACTIONS(8308), + [aux_sym_seek_statement_token1] = ACTIONS(8308), + [sym_reset_statement] = ACTIONS(8308), + [aux_sym_raise_event_statement_token1] = ACTIONS(8308), + [sym_stop_statement] = ACTIONS(8308), + [sym_beep_statement] = ACTIONS(8308), + [aux_sym_unload_statement_token1] = ACTIONS(8308), + [aux_sym_def_type_statement_token1] = ACTIONS(8308), + [aux_sym_def_type_statement_token2] = ACTIONS(8308), + [aux_sym_def_type_statement_token3] = ACTIONS(8308), + [aux_sym_def_type_statement_token4] = ACTIONS(8308), + [aux_sym_def_type_statement_token5] = ACTIONS(8308), + [aux_sym_def_type_statement_token6] = ACTIONS(8308), + [aux_sym_def_type_statement_token7] = ACTIONS(8308), + [aux_sym_def_type_statement_token8] = ACTIONS(8308), + [aux_sym_def_type_statement_token9] = ACTIONS(8308), + [aux_sym_def_type_statement_token10] = ACTIONS(8308), + [aux_sym_def_type_statement_token11] = ACTIONS(8308), + [aux_sym_def_type_statement_token12] = ACTIONS(8308), + [aux_sym_def_type_statement_token13] = ACTIONS(8308), + [aux_sym_def_type_statement_token14] = ACTIONS(8308), + [aux_sym_call_statement_token1] = ACTIONS(8308), + [sym__ambiguous_call_statement] = ACTIONS(8308), + [aux_sym_addressof_expression_token1] = ACTIONS(8308), + [aux_sym_type_of_expression_token1] = ACTIONS(8308), + [aux_sym_unary_expression_token1] = ACTIONS(8308), + [sym_string_literal] = ACTIONS(8310), + [sym_number_literal] = ACTIONS(8310), + [aux_sym_boolean_literal_token1] = ACTIONS(8308), + [aux_sym_boolean_literal_token2] = ACTIONS(8308), + [sym_nothing_literal] = ACTIONS(8308), + [sym_null_literal] = ACTIONS(8308), + [sym_empty_literal] = ACTIONS(8308), + [sym_date_literal] = ACTIONS(8310), + [anon_sym_POUND] = ACTIONS(8308), + }, + [STATE(5454)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5194), + [sym_identifier] = ACTIONS(8332), + [sym_newline] = ACTIONS(8334), + [anon_sym_COLON] = ACTIONS(8334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8332), + [aux_sym_frm_property_statement_token1] = ACTIONS(8332), + [anon_sym_DOT] = ACTIONS(8332), + [anon_sym_BANG] = ACTIONS(8334), + [aux_sym__attribute_identifier_token1] = ACTIONS(8332), + [aux_sym_option_statement_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8332), + [aux_sym_preprocessor_const_token1] = ACTIONS(8332), + [sym_static_modifier] = ACTIONS(8332), + [sym__dim_keyword] = ACTIONS(8332), + [sym__redim_keyword] = ACTIONS(8332), + [aux_sym_get_accessor_token1] = ACTIONS(8332), + [aux_sym_set_accessor_token1] = ACTIONS(8332), + [anon_sym_COMMA] = ACTIONS(10469), + [aux_sym_const_declaration_token1] = ACTIONS(8332), + [anon_sym_LPAREN] = ACTIONS(8334), + [aux_sym_as_type_clause_token2] = ACTIONS(8332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8332), + [aux_sym_visibility_token1] = ACTIONS(8332), + [aux_sym_visibility_token2] = ACTIONS(8332), + [aux_sym_elseif_fragment_token1] = ACTIONS(8332), + [aux_sym_else_fragment_token1] = ACTIONS(8332), + [aux_sym_select_statement_token1] = ACTIONS(8332), + [aux_sym_select_statement_token2] = ACTIONS(8332), + [aux_sym__for_header_token1] = ACTIONS(8332), + [aux_sym_do_statement_token1] = ACTIONS(8332), + [aux_sym_do_condition_token1] = ACTIONS(8332), + [aux_sym_with_statement_token1] = ACTIONS(8332), + [aux_sym_exit_statement_token1] = ACTIONS(8332), + [sym_end_statement] = ACTIONS(8334), + [aux_sym_on_goto_statement_token1] = ACTIONS(8332), + [aux_sym_on_goto_statement_token2] = ACTIONS(8332), + [aux_sym_on_error_statement_token2] = ACTIONS(8332), + [sym__ambiguous_redim_statement] = ACTIONS(8334), + [aux_sym_erase_statement_token1] = ACTIONS(8332), + [aux_sym_open_statement_token1] = ACTIONS(8332), + [aux_sym_file_mode_token2] = ACTIONS(8332), + [aux_sym_file_access_token2] = ACTIONS(8332), + [aux_sym_file_lock_token2] = ACTIONS(8332), + [aux_sym_print_statement_token1] = ACTIONS(8332), + [anon_sym_PLUS] = ACTIONS(8334), + [anon_sym_DASH] = ACTIONS(8332), + [anon_sym_QMARK] = ACTIONS(8334), + [aux_sym_close_statement_token1] = ACTIONS(8332), + [aux_sym_put_statement_token1] = ACTIONS(8332), + [aux_sym_unlock_statement_token1] = ACTIONS(8332), + [aux_sym_seek_statement_token1] = ACTIONS(8332), + [sym_reset_statement] = ACTIONS(8332), + [aux_sym_raise_event_statement_token1] = ACTIONS(8332), + [sym_stop_statement] = ACTIONS(8332), + [sym_beep_statement] = ACTIONS(8332), + [aux_sym_unload_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token2] = ACTIONS(8332), + [aux_sym_def_type_statement_token3] = ACTIONS(8332), + [aux_sym_def_type_statement_token4] = ACTIONS(8332), + [aux_sym_def_type_statement_token5] = ACTIONS(8332), + [aux_sym_def_type_statement_token6] = ACTIONS(8332), + [aux_sym_def_type_statement_token7] = ACTIONS(8332), + [aux_sym_def_type_statement_token8] = ACTIONS(8332), + [aux_sym_def_type_statement_token9] = ACTIONS(8332), + [aux_sym_def_type_statement_token10] = ACTIONS(8332), + [aux_sym_def_type_statement_token11] = ACTIONS(8332), + [aux_sym_def_type_statement_token12] = ACTIONS(8332), + [aux_sym_def_type_statement_token13] = ACTIONS(8332), + [aux_sym_def_type_statement_token14] = ACTIONS(8332), + [aux_sym_call_statement_token1] = ACTIONS(8332), + [sym__ambiguous_call_statement] = ACTIONS(8332), + [aux_sym_addressof_expression_token1] = ACTIONS(8332), + [aux_sym_type_of_expression_token1] = ACTIONS(8332), + [aux_sym_unary_expression_token1] = ACTIONS(8332), + [sym_string_literal] = ACTIONS(8334), + [sym_number_literal] = ACTIONS(8334), + [aux_sym_boolean_literal_token1] = ACTIONS(8332), + [aux_sym_boolean_literal_token2] = ACTIONS(8332), + [sym_nothing_literal] = ACTIONS(8332), + [sym_null_literal] = ACTIONS(8332), + [sym_empty_literal] = ACTIONS(8332), + [sym_date_literal] = ACTIONS(8334), + [anon_sym_POUND] = ACTIONS(8332), + }, + [STATE(5455)] = { + [sym_argument_list] = STATE(6211), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(10615), + [anon_sym_BANG] = ACTIONS(10617), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10606), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(5456)] = { + [sym_identifier] = ACTIONS(9631), + [sym_newline] = ACTIONS(9633), + [anon_sym_COLON] = ACTIONS(9633), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9631), + [aux_sym_frm_property_statement_token1] = ACTIONS(9631), + [anon_sym_DOT] = ACTIONS(9631), + [anon_sym_BANG] = ACTIONS(9633), + [aux_sym__attribute_identifier_token1] = ACTIONS(9631), + [aux_sym_option_statement_token3] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9631), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9631), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9631), + [aux_sym_preprocessor_const_token1] = ACTIONS(9631), + [sym_static_modifier] = ACTIONS(9631), + [sym__dim_keyword] = ACTIONS(9631), + [sym__redim_keyword] = ACTIONS(9631), + [aux_sym_get_accessor_token1] = ACTIONS(9631), + [aux_sym_set_accessor_token1] = ACTIONS(9631), + [aux_sym_const_declaration_token1] = ACTIONS(9631), + [anon_sym_LPAREN] = ACTIONS(9633), + [aux_sym_as_type_clause_token2] = ACTIONS(9631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9631), + [aux_sym_visibility_token1] = ACTIONS(9631), + [aux_sym_visibility_token2] = ACTIONS(9631), + [aux_sym_elseif_fragment_token1] = ACTIONS(9631), + [aux_sym_else_fragment_token1] = ACTIONS(9631), + [aux_sym_select_statement_token1] = ACTIONS(9631), + [aux_sym__for_header_token1] = ACTIONS(9631), + [aux_sym_do_statement_token1] = ACTIONS(9631), + [aux_sym_do_condition_token1] = ACTIONS(9631), + [aux_sym_with_statement_token1] = ACTIONS(9631), + [aux_sym_exit_statement_token1] = ACTIONS(9631), + [sym_end_statement] = ACTIONS(9633), + [aux_sym_on_goto_statement_token1] = ACTIONS(9631), + [aux_sym_on_goto_statement_token2] = ACTIONS(9631), + [aux_sym_on_error_statement_token2] = ACTIONS(9631), + [sym__ambiguous_redim_statement] = ACTIONS(9633), + [aux_sym_erase_statement_token1] = ACTIONS(9631), + [aux_sym_open_statement_token1] = ACTIONS(9631), + [aux_sym_file_mode_token2] = ACTIONS(9631), + [aux_sym_file_access_token2] = ACTIONS(9631), + [aux_sym_file_lock_token2] = ACTIONS(9631), + [aux_sym_print_statement_token1] = ACTIONS(9631), + [anon_sym_PLUS] = ACTIONS(9633), + [anon_sym_DASH] = ACTIONS(9631), + [anon_sym_QMARK] = ACTIONS(9633), + [aux_sym_close_statement_token1] = ACTIONS(9631), + [aux_sym_put_statement_token1] = ACTIONS(9631), + [aux_sym_unlock_statement_token1] = ACTIONS(9631), + [aux_sym_seek_statement_token1] = ACTIONS(9631), + [sym_reset_statement] = ACTIONS(9631), + [aux_sym_raise_event_statement_token1] = ACTIONS(9631), + [sym_stop_statement] = ACTIONS(9631), + [sym_beep_statement] = ACTIONS(9631), + [aux_sym_unload_statement_token1] = ACTIONS(9631), + [aux_sym_def_type_statement_token1] = ACTIONS(9631), + [aux_sym_def_type_statement_token2] = ACTIONS(9631), + [aux_sym_def_type_statement_token3] = ACTIONS(9631), + [aux_sym_def_type_statement_token4] = ACTIONS(9631), + [aux_sym_def_type_statement_token5] = ACTIONS(9631), + [aux_sym_def_type_statement_token6] = ACTIONS(9631), + [aux_sym_def_type_statement_token7] = ACTIONS(9631), + [aux_sym_def_type_statement_token8] = ACTIONS(9631), + [aux_sym_def_type_statement_token9] = ACTIONS(9631), + [aux_sym_def_type_statement_token10] = ACTIONS(9631), + [aux_sym_def_type_statement_token11] = ACTIONS(9631), + [aux_sym_def_type_statement_token12] = ACTIONS(9631), + [aux_sym_def_type_statement_token13] = ACTIONS(9631), + [aux_sym_def_type_statement_token14] = ACTIONS(9631), + [aux_sym_call_statement_token1] = ACTIONS(9631), + [sym__ambiguous_call_statement] = ACTIONS(9631), + [aux_sym_addressof_expression_token1] = ACTIONS(9631), + [aux_sym_type_of_expression_token1] = ACTIONS(9631), + [aux_sym_unary_expression_token1] = ACTIONS(9631), + [sym_string_literal] = ACTIONS(9633), + [sym_number_literal] = ACTIONS(9633), + [aux_sym_boolean_literal_token1] = ACTIONS(9631), + [aux_sym_boolean_literal_token2] = ACTIONS(9631), + [sym_nothing_literal] = ACTIONS(9631), + [sym_null_literal] = ACTIONS(9631), + [sym_empty_literal] = ACTIONS(9631), + [sym_date_literal] = ACTIONS(9633), + [anon_sym_POUND] = ACTIONS(9631), + }, + [STATE(5457)] = { + [sym_identifier] = ACTIONS(9635), + [sym_newline] = ACTIONS(9637), + [anon_sym_COLON] = ACTIONS(9637), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9635), + [aux_sym_frm_property_statement_token1] = ACTIONS(9635), + [anon_sym_DOT] = ACTIONS(9635), + [anon_sym_BANG] = ACTIONS(9637), + [aux_sym__attribute_identifier_token1] = ACTIONS(9635), + [aux_sym_option_statement_token3] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9635), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9635), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9635), + [aux_sym_preprocessor_const_token1] = ACTIONS(9635), + [sym_static_modifier] = ACTIONS(9635), + [sym__dim_keyword] = ACTIONS(9635), + [sym__redim_keyword] = ACTIONS(9635), + [aux_sym_get_accessor_token1] = ACTIONS(9635), + [aux_sym_set_accessor_token1] = ACTIONS(9635), + [aux_sym_const_declaration_token1] = ACTIONS(9635), + [anon_sym_LPAREN] = ACTIONS(9637), + [aux_sym_as_type_clause_token2] = ACTIONS(9635), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9635), + [aux_sym_visibility_token1] = ACTIONS(9635), + [aux_sym_visibility_token2] = ACTIONS(9635), + [aux_sym_elseif_fragment_token1] = ACTIONS(9635), + [aux_sym_else_fragment_token1] = ACTIONS(9635), + [aux_sym_select_statement_token1] = ACTIONS(9635), + [aux_sym__for_header_token1] = ACTIONS(9635), + [aux_sym_do_statement_token1] = ACTIONS(9635), + [aux_sym_do_condition_token1] = ACTIONS(9635), + [aux_sym_with_statement_token1] = ACTIONS(9635), + [aux_sym_exit_statement_token1] = ACTIONS(9635), + [sym_end_statement] = ACTIONS(9637), + [aux_sym_on_goto_statement_token1] = ACTIONS(9635), + [aux_sym_on_goto_statement_token2] = ACTIONS(9635), + [aux_sym_on_error_statement_token2] = ACTIONS(9635), + [sym__ambiguous_redim_statement] = ACTIONS(9637), + [aux_sym_erase_statement_token1] = ACTIONS(9635), + [aux_sym_open_statement_token1] = ACTIONS(9635), + [aux_sym_file_mode_token2] = ACTIONS(9635), + [aux_sym_file_access_token2] = ACTIONS(9635), + [aux_sym_file_lock_token2] = ACTIONS(9635), + [aux_sym_print_statement_token1] = ACTIONS(9635), + [anon_sym_PLUS] = ACTIONS(9637), + [anon_sym_DASH] = ACTIONS(9635), + [anon_sym_QMARK] = ACTIONS(9637), + [aux_sym_close_statement_token1] = ACTIONS(9635), + [aux_sym_put_statement_token1] = ACTIONS(9635), + [aux_sym_unlock_statement_token1] = ACTIONS(9635), + [aux_sym_seek_statement_token1] = ACTIONS(9635), + [sym_reset_statement] = ACTIONS(9635), + [aux_sym_raise_event_statement_token1] = ACTIONS(9635), + [sym_stop_statement] = ACTIONS(9635), + [sym_beep_statement] = ACTIONS(9635), + [aux_sym_unload_statement_token1] = ACTIONS(9635), + [aux_sym_def_type_statement_token1] = ACTIONS(9635), + [aux_sym_def_type_statement_token2] = ACTIONS(9635), + [aux_sym_def_type_statement_token3] = ACTIONS(9635), + [aux_sym_def_type_statement_token4] = ACTIONS(9635), + [aux_sym_def_type_statement_token5] = ACTIONS(9635), + [aux_sym_def_type_statement_token6] = ACTIONS(9635), + [aux_sym_def_type_statement_token7] = ACTIONS(9635), + [aux_sym_def_type_statement_token8] = ACTIONS(9635), + [aux_sym_def_type_statement_token9] = ACTIONS(9635), + [aux_sym_def_type_statement_token10] = ACTIONS(9635), + [aux_sym_def_type_statement_token11] = ACTIONS(9635), + [aux_sym_def_type_statement_token12] = ACTIONS(9635), + [aux_sym_def_type_statement_token13] = ACTIONS(9635), + [aux_sym_def_type_statement_token14] = ACTIONS(9635), + [aux_sym_call_statement_token1] = ACTIONS(9635), + [sym__ambiguous_call_statement] = ACTIONS(9635), + [aux_sym_addressof_expression_token1] = ACTIONS(9635), + [aux_sym_type_of_expression_token1] = ACTIONS(9635), + [aux_sym_unary_expression_token1] = ACTIONS(9635), + [sym_string_literal] = ACTIONS(9637), + [sym_number_literal] = ACTIONS(9637), + [aux_sym_boolean_literal_token1] = ACTIONS(9635), + [aux_sym_boolean_literal_token2] = ACTIONS(9635), + [sym_nothing_literal] = ACTIONS(9635), + [sym_null_literal] = ACTIONS(9635), + [sym_empty_literal] = ACTIONS(9635), + [sym_date_literal] = ACTIONS(9637), + [anon_sym_POUND] = ACTIONS(9635), + }, + [STATE(5458)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5202), + [sym_identifier] = ACTIONS(8336), + [sym_newline] = ACTIONS(8338), + [anon_sym_COLON] = ACTIONS(8338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8336), + [aux_sym_frm_property_statement_token1] = ACTIONS(8336), + [anon_sym_DOT] = ACTIONS(8336), + [anon_sym_BANG] = ACTIONS(8338), + [aux_sym__attribute_identifier_token1] = ACTIONS(8336), + [aux_sym_option_statement_token3] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8336), + [aux_sym_preprocessor_const_token1] = ACTIONS(8336), + [sym_static_modifier] = ACTIONS(8336), + [sym__dim_keyword] = ACTIONS(8336), + [sym__redim_keyword] = ACTIONS(8336), + [aux_sym_get_accessor_token1] = ACTIONS(8336), + [aux_sym_set_accessor_token1] = ACTIONS(8336), + [anon_sym_COMMA] = ACTIONS(10469), + [aux_sym_const_declaration_token1] = ACTIONS(8336), + [anon_sym_LPAREN] = ACTIONS(8338), + [aux_sym_as_type_clause_token2] = ACTIONS(8336), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8336), + [aux_sym_visibility_token1] = ACTIONS(8336), + [aux_sym_visibility_token2] = ACTIONS(8336), + [aux_sym_elseif_fragment_token1] = ACTIONS(8336), + [aux_sym_else_fragment_token1] = ACTIONS(8336), + [aux_sym_select_statement_token1] = ACTIONS(8336), + [aux_sym_select_statement_token2] = ACTIONS(8336), + [aux_sym__for_header_token1] = ACTIONS(8336), + [aux_sym_do_statement_token1] = ACTIONS(8336), + [aux_sym_do_condition_token1] = ACTIONS(8336), + [aux_sym_with_statement_token1] = ACTIONS(8336), + [aux_sym_exit_statement_token1] = ACTIONS(8336), + [sym_end_statement] = ACTIONS(8338), + [aux_sym_on_goto_statement_token1] = ACTIONS(8336), + [aux_sym_on_goto_statement_token2] = ACTIONS(8336), + [aux_sym_on_error_statement_token2] = ACTIONS(8336), + [sym__ambiguous_redim_statement] = ACTIONS(8338), + [aux_sym_erase_statement_token1] = ACTIONS(8336), + [aux_sym_open_statement_token1] = ACTIONS(8336), + [aux_sym_file_mode_token2] = ACTIONS(8336), + [aux_sym_file_access_token2] = ACTIONS(8336), + [aux_sym_file_lock_token2] = ACTIONS(8336), + [aux_sym_print_statement_token1] = ACTIONS(8336), + [anon_sym_PLUS] = ACTIONS(8338), + [anon_sym_DASH] = ACTIONS(8336), + [anon_sym_QMARK] = ACTIONS(8338), + [aux_sym_close_statement_token1] = ACTIONS(8336), + [aux_sym_put_statement_token1] = ACTIONS(8336), + [aux_sym_unlock_statement_token1] = ACTIONS(8336), + [aux_sym_seek_statement_token1] = ACTIONS(8336), + [sym_reset_statement] = ACTIONS(8336), + [aux_sym_raise_event_statement_token1] = ACTIONS(8336), + [sym_stop_statement] = ACTIONS(8336), + [sym_beep_statement] = ACTIONS(8336), + [aux_sym_unload_statement_token1] = ACTIONS(8336), + [aux_sym_def_type_statement_token1] = ACTIONS(8336), + [aux_sym_def_type_statement_token2] = ACTIONS(8336), + [aux_sym_def_type_statement_token3] = ACTIONS(8336), + [aux_sym_def_type_statement_token4] = ACTIONS(8336), + [aux_sym_def_type_statement_token5] = ACTIONS(8336), + [aux_sym_def_type_statement_token6] = ACTIONS(8336), + [aux_sym_def_type_statement_token7] = ACTIONS(8336), + [aux_sym_def_type_statement_token8] = ACTIONS(8336), + [aux_sym_def_type_statement_token9] = ACTIONS(8336), + [aux_sym_def_type_statement_token10] = ACTIONS(8336), + [aux_sym_def_type_statement_token11] = ACTIONS(8336), + [aux_sym_def_type_statement_token12] = ACTIONS(8336), + [aux_sym_def_type_statement_token13] = ACTIONS(8336), + [aux_sym_def_type_statement_token14] = ACTIONS(8336), + [aux_sym_call_statement_token1] = ACTIONS(8336), + [sym__ambiguous_call_statement] = ACTIONS(8336), + [aux_sym_addressof_expression_token1] = ACTIONS(8336), + [aux_sym_type_of_expression_token1] = ACTIONS(8336), + [aux_sym_unary_expression_token1] = ACTIONS(8336), + [sym_string_literal] = ACTIONS(8338), + [sym_number_literal] = ACTIONS(8338), + [aux_sym_boolean_literal_token1] = ACTIONS(8336), + [aux_sym_boolean_literal_token2] = ACTIONS(8336), + [sym_nothing_literal] = ACTIONS(8336), + [sym_null_literal] = ACTIONS(8336), + [sym_empty_literal] = ACTIONS(8336), + [sym_date_literal] = ACTIONS(8338), + [anon_sym_POUND] = ACTIONS(8336), + }, + [STATE(5459)] = { + [aux_sym_const_declaration_repeat1] = STATE(5211), + [sym_identifier] = ACTIONS(8346), + [sym_newline] = ACTIONS(8348), + [anon_sym_COLON] = ACTIONS(8348), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8346), + [aux_sym_frm_property_statement_token1] = ACTIONS(8346), + [anon_sym_DOT] = ACTIONS(8346), + [anon_sym_BANG] = ACTIONS(8348), + [aux_sym__attribute_identifier_token1] = ACTIONS(8346), + [aux_sym_option_statement_token3] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8346), + [aux_sym_preprocessor_const_token1] = ACTIONS(8346), + [sym_static_modifier] = ACTIONS(8346), + [sym__dim_keyword] = ACTIONS(8346), + [sym__redim_keyword] = ACTIONS(8346), + [aux_sym_get_accessor_token1] = ACTIONS(8346), + [aux_sym_set_accessor_token1] = ACTIONS(8346), + [anon_sym_COMMA] = ACTIONS(10487), + [aux_sym_const_declaration_token1] = ACTIONS(8346), + [anon_sym_LPAREN] = ACTIONS(8348), + [aux_sym_as_type_clause_token2] = ACTIONS(8346), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8346), + [aux_sym_visibility_token1] = ACTIONS(8346), + [aux_sym_visibility_token2] = ACTIONS(8346), + [aux_sym_elseif_fragment_token1] = ACTIONS(8346), + [aux_sym_else_fragment_token1] = ACTIONS(8346), + [aux_sym_select_statement_token1] = ACTIONS(8346), + [aux_sym_select_statement_token2] = ACTIONS(8346), + [aux_sym__for_header_token1] = ACTIONS(8346), + [aux_sym_do_statement_token1] = ACTIONS(8346), + [aux_sym_do_condition_token1] = ACTIONS(8346), + [aux_sym_with_statement_token1] = ACTIONS(8346), + [aux_sym_exit_statement_token1] = ACTIONS(8346), + [sym_end_statement] = ACTIONS(8348), + [aux_sym_on_goto_statement_token1] = ACTIONS(8346), + [aux_sym_on_goto_statement_token2] = ACTIONS(8346), + [aux_sym_on_error_statement_token2] = ACTIONS(8346), + [sym__ambiguous_redim_statement] = ACTIONS(8348), + [aux_sym_erase_statement_token1] = ACTIONS(8346), + [aux_sym_open_statement_token1] = ACTIONS(8346), + [aux_sym_file_mode_token2] = ACTIONS(8346), + [aux_sym_file_access_token2] = ACTIONS(8346), + [aux_sym_file_lock_token2] = ACTIONS(8346), + [aux_sym_print_statement_token1] = ACTIONS(8346), + [anon_sym_PLUS] = ACTIONS(8348), + [anon_sym_DASH] = ACTIONS(8346), + [anon_sym_QMARK] = ACTIONS(8348), + [aux_sym_close_statement_token1] = ACTIONS(8346), + [aux_sym_put_statement_token1] = ACTIONS(8346), + [aux_sym_unlock_statement_token1] = ACTIONS(8346), + [aux_sym_seek_statement_token1] = ACTIONS(8346), + [sym_reset_statement] = ACTIONS(8346), + [aux_sym_raise_event_statement_token1] = ACTIONS(8346), + [sym_stop_statement] = ACTIONS(8346), + [sym_beep_statement] = ACTIONS(8346), + [aux_sym_unload_statement_token1] = ACTIONS(8346), + [aux_sym_def_type_statement_token1] = ACTIONS(8346), + [aux_sym_def_type_statement_token2] = ACTIONS(8346), + [aux_sym_def_type_statement_token3] = ACTIONS(8346), + [aux_sym_def_type_statement_token4] = ACTIONS(8346), + [aux_sym_def_type_statement_token5] = ACTIONS(8346), + [aux_sym_def_type_statement_token6] = ACTIONS(8346), + [aux_sym_def_type_statement_token7] = ACTIONS(8346), + [aux_sym_def_type_statement_token8] = ACTIONS(8346), + [aux_sym_def_type_statement_token9] = ACTIONS(8346), + [aux_sym_def_type_statement_token10] = ACTIONS(8346), + [aux_sym_def_type_statement_token11] = ACTIONS(8346), + [aux_sym_def_type_statement_token12] = ACTIONS(8346), + [aux_sym_def_type_statement_token13] = ACTIONS(8346), + [aux_sym_def_type_statement_token14] = ACTIONS(8346), + [aux_sym_call_statement_token1] = ACTIONS(8346), + [sym__ambiguous_call_statement] = ACTIONS(8346), + [aux_sym_addressof_expression_token1] = ACTIONS(8346), + [aux_sym_type_of_expression_token1] = ACTIONS(8346), + [aux_sym_unary_expression_token1] = ACTIONS(8346), + [sym_string_literal] = ACTIONS(8348), + [sym_number_literal] = ACTIONS(8348), + [aux_sym_boolean_literal_token1] = ACTIONS(8346), + [aux_sym_boolean_literal_token2] = ACTIONS(8346), + [sym_nothing_literal] = ACTIONS(8346), + [sym_null_literal] = ACTIONS(8346), + [sym_empty_literal] = ACTIONS(8346), + [sym_date_literal] = ACTIONS(8348), + [anon_sym_POUND] = ACTIONS(8346), + }, + [STATE(5460)] = { + [sym_identifier] = ACTIONS(9658), + [sym_newline] = ACTIONS(9660), + [anon_sym_COLON] = ACTIONS(9660), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9658), + [aux_sym_frm_property_statement_token1] = ACTIONS(9658), + [anon_sym_DOT] = ACTIONS(9658), + [anon_sym_BANG] = ACTIONS(9660), + [aux_sym__attribute_identifier_token1] = ACTIONS(9658), + [aux_sym_option_statement_token3] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9658), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9658), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9658), + [aux_sym_preprocessor_const_token1] = ACTIONS(9658), + [sym_static_modifier] = ACTIONS(9658), + [sym__dim_keyword] = ACTIONS(9658), + [sym__redim_keyword] = ACTIONS(9658), + [aux_sym_get_accessor_token1] = ACTIONS(9658), + [aux_sym_set_accessor_token1] = ACTIONS(9658), + [aux_sym_const_declaration_token1] = ACTIONS(9658), + [anon_sym_LPAREN] = ACTIONS(9660), + [aux_sym_as_type_clause_token2] = ACTIONS(9658), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9658), + [aux_sym_visibility_token1] = ACTIONS(9658), + [aux_sym_visibility_token2] = ACTIONS(9658), + [aux_sym_elseif_fragment_token1] = ACTIONS(9658), + [aux_sym_else_fragment_token1] = ACTIONS(9658), + [aux_sym_select_statement_token1] = ACTIONS(9658), + [aux_sym__for_header_token1] = ACTIONS(9658), + [aux_sym_do_statement_token1] = ACTIONS(9658), + [aux_sym_do_condition_token1] = ACTIONS(9658), + [aux_sym_with_statement_token1] = ACTIONS(9658), + [aux_sym_exit_statement_token1] = ACTIONS(9658), + [sym_end_statement] = ACTIONS(9660), + [aux_sym_on_goto_statement_token1] = ACTIONS(9658), + [aux_sym_on_goto_statement_token2] = ACTIONS(9658), + [aux_sym_on_error_statement_token2] = ACTIONS(9658), + [sym__ambiguous_redim_statement] = ACTIONS(9660), + [aux_sym_erase_statement_token1] = ACTIONS(9658), + [aux_sym_open_statement_token1] = ACTIONS(9658), + [aux_sym_file_mode_token2] = ACTIONS(9658), + [aux_sym_file_access_token2] = ACTIONS(9658), + [aux_sym_file_lock_token2] = ACTIONS(9658), + [aux_sym_print_statement_token1] = ACTIONS(9658), + [anon_sym_PLUS] = ACTIONS(9660), + [anon_sym_DASH] = ACTIONS(9658), + [anon_sym_QMARK] = ACTIONS(9660), + [aux_sym_close_statement_token1] = ACTIONS(9658), + [aux_sym_put_statement_token1] = ACTIONS(9658), + [aux_sym_unlock_statement_token1] = ACTIONS(9658), + [aux_sym_seek_statement_token1] = ACTIONS(9658), + [sym_reset_statement] = ACTIONS(9658), + [aux_sym_raise_event_statement_token1] = ACTIONS(9658), + [sym_stop_statement] = ACTIONS(9658), + [sym_beep_statement] = ACTIONS(9658), + [aux_sym_unload_statement_token1] = ACTIONS(9658), + [aux_sym_def_type_statement_token1] = ACTIONS(9658), + [aux_sym_def_type_statement_token2] = ACTIONS(9658), + [aux_sym_def_type_statement_token3] = ACTIONS(9658), + [aux_sym_def_type_statement_token4] = ACTIONS(9658), + [aux_sym_def_type_statement_token5] = ACTIONS(9658), + [aux_sym_def_type_statement_token6] = ACTIONS(9658), + [aux_sym_def_type_statement_token7] = ACTIONS(9658), + [aux_sym_def_type_statement_token8] = ACTIONS(9658), + [aux_sym_def_type_statement_token9] = ACTIONS(9658), + [aux_sym_def_type_statement_token10] = ACTIONS(9658), + [aux_sym_def_type_statement_token11] = ACTIONS(9658), + [aux_sym_def_type_statement_token12] = ACTIONS(9658), + [aux_sym_def_type_statement_token13] = ACTIONS(9658), + [aux_sym_def_type_statement_token14] = ACTIONS(9658), + [aux_sym_call_statement_token1] = ACTIONS(9658), + [sym__ambiguous_call_statement] = ACTIONS(9658), + [aux_sym_addressof_expression_token1] = ACTIONS(9658), + [aux_sym_type_of_expression_token1] = ACTIONS(9658), + [aux_sym_unary_expression_token1] = ACTIONS(9658), + [sym_string_literal] = ACTIONS(9660), + [sym_number_literal] = ACTIONS(9660), + [aux_sym_boolean_literal_token1] = ACTIONS(9658), + [aux_sym_boolean_literal_token2] = ACTIONS(9658), + [sym_nothing_literal] = ACTIONS(9658), + [sym_null_literal] = ACTIONS(9658), + [sym_empty_literal] = ACTIONS(9658), + [sym_date_literal] = ACTIONS(9660), + [anon_sym_POUND] = ACTIONS(9658), + }, + [STATE(5461)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5503), + [sym_identifier] = ACTIONS(8332), + [sym_newline] = ACTIONS(8334), + [anon_sym_COLON] = ACTIONS(8334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8332), + [aux_sym_frm_property_statement_token1] = ACTIONS(8332), + [anon_sym_DOT] = ACTIONS(8332), + [anon_sym_BANG] = ACTIONS(8334), + [aux_sym__attribute_identifier_token1] = ACTIONS(8332), + [aux_sym_option_statement_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8332), + [aux_sym_preprocessor_const_token1] = ACTIONS(8332), + [sym_static_modifier] = ACTIONS(8332), + [sym__dim_keyword] = ACTIONS(8332), + [sym__redim_keyword] = ACTIONS(8332), + [aux_sym_get_accessor_token1] = ACTIONS(8332), + [aux_sym_set_accessor_token1] = ACTIONS(8332), + [anon_sym_COMMA] = ACTIONS(10469), + [aux_sym_const_declaration_token1] = ACTIONS(8332), + [anon_sym_LPAREN] = ACTIONS(8334), + [aux_sym_as_type_clause_token2] = ACTIONS(8332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8332), + [aux_sym_visibility_token1] = ACTIONS(8332), + [aux_sym_visibility_token2] = ACTIONS(8332), + [aux_sym_elseif_fragment_token1] = ACTIONS(8332), + [aux_sym_else_fragment_token1] = ACTIONS(8332), + [aux_sym_select_statement_token1] = ACTIONS(8332), + [aux_sym_select_statement_token2] = ACTIONS(8332), + [aux_sym__for_header_token1] = ACTIONS(8332), + [aux_sym_do_statement_token1] = ACTIONS(8332), + [aux_sym_do_condition_token1] = ACTIONS(8332), + [aux_sym_with_statement_token1] = ACTIONS(8332), + [aux_sym_exit_statement_token1] = ACTIONS(8332), + [sym_end_statement] = ACTIONS(8334), + [aux_sym_on_goto_statement_token1] = ACTIONS(8332), + [aux_sym_on_goto_statement_token2] = ACTIONS(8332), + [aux_sym_on_error_statement_token2] = ACTIONS(8332), + [sym__ambiguous_redim_statement] = ACTIONS(8334), + [aux_sym_erase_statement_token1] = ACTIONS(8332), + [aux_sym_open_statement_token1] = ACTIONS(8332), + [aux_sym_file_mode_token2] = ACTIONS(8332), + [aux_sym_file_access_token2] = ACTIONS(8332), + [aux_sym_file_lock_token2] = ACTIONS(8332), + [aux_sym_print_statement_token1] = ACTIONS(8332), + [anon_sym_PLUS] = ACTIONS(8334), + [anon_sym_DASH] = ACTIONS(8332), + [anon_sym_QMARK] = ACTIONS(8334), + [aux_sym_close_statement_token1] = ACTIONS(8332), + [aux_sym_put_statement_token1] = ACTIONS(8332), + [aux_sym_unlock_statement_token1] = ACTIONS(8332), + [aux_sym_seek_statement_token1] = ACTIONS(8332), + [sym_reset_statement] = ACTIONS(8332), + [aux_sym_raise_event_statement_token1] = ACTIONS(8332), + [sym_stop_statement] = ACTIONS(8332), + [sym_beep_statement] = ACTIONS(8332), + [aux_sym_unload_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token2] = ACTIONS(8332), + [aux_sym_def_type_statement_token3] = ACTIONS(8332), + [aux_sym_def_type_statement_token4] = ACTIONS(8332), + [aux_sym_def_type_statement_token5] = ACTIONS(8332), + [aux_sym_def_type_statement_token6] = ACTIONS(8332), + [aux_sym_def_type_statement_token7] = ACTIONS(8332), + [aux_sym_def_type_statement_token8] = ACTIONS(8332), + [aux_sym_def_type_statement_token9] = ACTIONS(8332), + [aux_sym_def_type_statement_token10] = ACTIONS(8332), + [aux_sym_def_type_statement_token11] = ACTIONS(8332), + [aux_sym_def_type_statement_token12] = ACTIONS(8332), + [aux_sym_def_type_statement_token13] = ACTIONS(8332), + [aux_sym_def_type_statement_token14] = ACTIONS(8332), + [aux_sym_call_statement_token1] = ACTIONS(8332), + [sym__ambiguous_call_statement] = ACTIONS(8332), + [aux_sym_addressof_expression_token1] = ACTIONS(8332), + [aux_sym_type_of_expression_token1] = ACTIONS(8332), + [aux_sym_unary_expression_token1] = ACTIONS(8332), + [sym_string_literal] = ACTIONS(8334), + [sym_number_literal] = ACTIONS(8334), + [aux_sym_boolean_literal_token1] = ACTIONS(8332), + [aux_sym_boolean_literal_token2] = ACTIONS(8332), + [sym_nothing_literal] = ACTIONS(8332), + [sym_null_literal] = ACTIONS(8332), + [sym_empty_literal] = ACTIONS(8332), + [sym_date_literal] = ACTIONS(8334), + [anon_sym_POUND] = ACTIONS(8332), + }, + [STATE(5462)] = { + [sym_initializer] = STATE(6820), + [sym_identifier] = ACTIONS(8087), + [sym_newline] = ACTIONS(8089), + [anon_sym_COLON] = ACTIONS(8089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8087), + [aux_sym_frm_property_statement_token1] = ACTIONS(8087), + [anon_sym_EQ] = ACTIONS(10124), + [anon_sym_DOT] = ACTIONS(8087), + [anon_sym_BANG] = ACTIONS(8089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8087), + [aux_sym_option_statement_token3] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8087), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8087), + [aux_sym_preprocessor_const_token1] = ACTIONS(8087), + [sym_static_modifier] = ACTIONS(8087), + [sym__dim_keyword] = ACTIONS(8087), + [sym__redim_keyword] = ACTIONS(8087), + [aux_sym_get_accessor_token1] = ACTIONS(8087), + [aux_sym_set_accessor_token1] = ACTIONS(8087), + [anon_sym_COMMA] = ACTIONS(8089), + [aux_sym_const_declaration_token1] = ACTIONS(8087), + [anon_sym_LPAREN] = ACTIONS(8089), + [aux_sym_as_type_clause_token2] = ACTIONS(8087), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8087), + [aux_sym_visibility_token1] = ACTIONS(8087), + [aux_sym_visibility_token2] = ACTIONS(8087), + [aux_sym_elseif_fragment_token1] = ACTIONS(8087), + [aux_sym_else_fragment_token1] = ACTIONS(8087), + [aux_sym_select_statement_token1] = ACTIONS(8087), + [aux_sym__for_header_token1] = ACTIONS(8087), + [aux_sym_do_statement_token1] = ACTIONS(8087), + [aux_sym_do_condition_token1] = ACTIONS(8087), + [aux_sym_with_statement_token1] = ACTIONS(8087), + [aux_sym_exit_statement_token1] = ACTIONS(8087), + [sym_end_statement] = ACTIONS(8089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8087), + [aux_sym_on_goto_statement_token2] = ACTIONS(8087), + [aux_sym_on_error_statement_token2] = ACTIONS(8087), + [sym__ambiguous_redim_statement] = ACTIONS(8089), + [aux_sym_erase_statement_token1] = ACTIONS(8087), + [aux_sym_open_statement_token1] = ACTIONS(8087), + [aux_sym_file_mode_token2] = ACTIONS(8087), + [aux_sym_file_access_token2] = ACTIONS(8087), + [aux_sym_file_lock_token2] = ACTIONS(8087), + [aux_sym_print_statement_token1] = ACTIONS(8087), + [anon_sym_PLUS] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8087), + [anon_sym_QMARK] = ACTIONS(8089), + [aux_sym_close_statement_token1] = ACTIONS(8087), + [aux_sym_put_statement_token1] = ACTIONS(8087), + [aux_sym_unlock_statement_token1] = ACTIONS(8087), + [aux_sym_seek_statement_token1] = ACTIONS(8087), + [sym_reset_statement] = ACTIONS(8087), + [aux_sym_raise_event_statement_token1] = ACTIONS(8087), + [sym_stop_statement] = ACTIONS(8087), + [sym_beep_statement] = ACTIONS(8087), + [aux_sym_unload_statement_token1] = ACTIONS(8087), + [aux_sym_def_type_statement_token1] = ACTIONS(8087), + [aux_sym_def_type_statement_token2] = ACTIONS(8087), + [aux_sym_def_type_statement_token3] = ACTIONS(8087), + [aux_sym_def_type_statement_token4] = ACTIONS(8087), + [aux_sym_def_type_statement_token5] = ACTIONS(8087), + [aux_sym_def_type_statement_token6] = ACTIONS(8087), + [aux_sym_def_type_statement_token7] = ACTIONS(8087), + [aux_sym_def_type_statement_token8] = ACTIONS(8087), + [aux_sym_def_type_statement_token9] = ACTIONS(8087), + [aux_sym_def_type_statement_token10] = ACTIONS(8087), + [aux_sym_def_type_statement_token11] = ACTIONS(8087), + [aux_sym_def_type_statement_token12] = ACTIONS(8087), + [aux_sym_def_type_statement_token13] = ACTIONS(8087), + [aux_sym_def_type_statement_token14] = ACTIONS(8087), + [aux_sym_call_statement_token1] = ACTIONS(8087), + [sym__ambiguous_call_statement] = ACTIONS(8087), + [aux_sym_addressof_expression_token1] = ACTIONS(8087), + [aux_sym_type_of_expression_token1] = ACTIONS(8087), + [aux_sym_unary_expression_token1] = ACTIONS(8087), + [sym_string_literal] = ACTIONS(8089), + [sym_number_literal] = ACTIONS(8089), + [aux_sym_boolean_literal_token1] = ACTIONS(8087), + [aux_sym_boolean_literal_token2] = ACTIONS(8087), + [sym_nothing_literal] = ACTIONS(8087), + [sym_null_literal] = ACTIONS(8087), + [sym_empty_literal] = ACTIONS(8087), + [sym_date_literal] = ACTIONS(8089), + [anon_sym_POUND] = ACTIONS(8087), + }, + [STATE(5463)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5465), + [sym_identifier] = ACTIONS(7939), + [sym_newline] = ACTIONS(7941), + [anon_sym_COLON] = ACTIONS(7941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7939), + [aux_sym_frm_property_statement_token1] = ACTIONS(7939), + [anon_sym_DOT] = ACTIONS(7939), + [anon_sym_BANG] = ACTIONS(7941), + [aux_sym__attribute_identifier_token1] = ACTIONS(7939), + [aux_sym_option_statement_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7939), + [aux_sym_preprocessor_const_token1] = ACTIONS(7939), + [sym_static_modifier] = ACTIONS(7939), + [sym__dim_keyword] = ACTIONS(7939), + [sym__redim_keyword] = ACTIONS(7939), + [aux_sym_get_accessor_token1] = ACTIONS(7939), + [aux_sym_set_accessor_token1] = ACTIONS(7939), + [anon_sym_COMMA] = ACTIONS(10619), + [aux_sym_const_declaration_token1] = ACTIONS(7939), + [anon_sym_LPAREN] = ACTIONS(7941), + [aux_sym_as_type_clause_token2] = ACTIONS(7939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7939), + [aux_sym_visibility_token1] = ACTIONS(7939), + [aux_sym_visibility_token2] = ACTIONS(7939), + [aux_sym_elseif_fragment_token1] = ACTIONS(7939), + [aux_sym_else_fragment_token1] = ACTIONS(7939), + [aux_sym_select_statement_token1] = ACTIONS(7939), + [aux_sym__for_header_token1] = ACTIONS(7939), + [aux_sym_do_statement_token1] = ACTIONS(7939), + [aux_sym_do_condition_token1] = ACTIONS(7939), + [aux_sym_with_statement_token1] = ACTIONS(7939), + [aux_sym_exit_statement_token1] = ACTIONS(7939), + [sym_end_statement] = ACTIONS(7941), + [aux_sym_on_goto_statement_token1] = ACTIONS(7939), + [aux_sym_on_goto_statement_token2] = ACTIONS(7939), + [aux_sym_on_error_statement_token2] = ACTIONS(7939), + [sym__ambiguous_redim_statement] = ACTIONS(7941), + [aux_sym_erase_statement_token1] = ACTIONS(7939), + [aux_sym_open_statement_token1] = ACTIONS(7939), + [aux_sym_file_mode_token2] = ACTIONS(7939), + [aux_sym_file_access_token2] = ACTIONS(7939), + [aux_sym_file_lock_token2] = ACTIONS(7939), + [aux_sym_print_statement_token1] = ACTIONS(7939), + [anon_sym_PLUS] = ACTIONS(7941), + [anon_sym_DASH] = ACTIONS(7939), + [anon_sym_QMARK] = ACTIONS(7941), + [aux_sym_close_statement_token1] = ACTIONS(7939), + [aux_sym_put_statement_token1] = ACTIONS(7939), + [aux_sym_unlock_statement_token1] = ACTIONS(7939), + [aux_sym_seek_statement_token1] = ACTIONS(7939), + [sym_reset_statement] = ACTIONS(7939), + [aux_sym_raise_event_statement_token1] = ACTIONS(7939), + [sym_stop_statement] = ACTIONS(7939), + [sym_beep_statement] = ACTIONS(7939), + [aux_sym_unload_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token2] = ACTIONS(7939), + [aux_sym_def_type_statement_token3] = ACTIONS(7939), + [aux_sym_def_type_statement_token4] = ACTIONS(7939), + [aux_sym_def_type_statement_token5] = ACTIONS(7939), + [aux_sym_def_type_statement_token6] = ACTIONS(7939), + [aux_sym_def_type_statement_token7] = ACTIONS(7939), + [aux_sym_def_type_statement_token8] = ACTIONS(7939), + [aux_sym_def_type_statement_token9] = ACTIONS(7939), + [aux_sym_def_type_statement_token10] = ACTIONS(7939), + [aux_sym_def_type_statement_token11] = ACTIONS(7939), + [aux_sym_def_type_statement_token12] = ACTIONS(7939), + [aux_sym_def_type_statement_token13] = ACTIONS(7939), + [aux_sym_def_type_statement_token14] = ACTIONS(7939), + [aux_sym_call_statement_token1] = ACTIONS(7939), + [sym__ambiguous_call_statement] = ACTIONS(7939), + [aux_sym_addressof_expression_token1] = ACTIONS(7939), + [aux_sym_type_of_expression_token1] = ACTIONS(7939), + [aux_sym_unary_expression_token1] = ACTIONS(7939), + [sym_string_literal] = ACTIONS(7941), + [sym_number_literal] = ACTIONS(7941), + [aux_sym_boolean_literal_token1] = ACTIONS(7939), + [aux_sym_boolean_literal_token2] = ACTIONS(7939), + [sym_nothing_literal] = ACTIONS(7939), + [sym_null_literal] = ACTIONS(7939), + [sym_empty_literal] = ACTIONS(7939), + [sym_date_literal] = ACTIONS(7941), + [anon_sym_POUND] = ACTIONS(7939), + }, + [STATE(5464)] = { + [sym_identifier] = ACTIONS(5716), + [sym_newline] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5716), + [aux_sym_frm_property_statement_token1] = ACTIONS(5716), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_BANG] = ACTIONS(5718), + [aux_sym__attribute_identifier_token1] = ACTIONS(5716), + [aux_sym_option_statement_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5716), + [aux_sym_preprocessor_const_token1] = ACTIONS(5716), + [sym_static_modifier] = ACTIONS(5716), + [sym__dim_keyword] = ACTIONS(5716), + [sym__redim_keyword] = ACTIONS(5716), + [aux_sym_get_accessor_token1] = ACTIONS(5716), + [aux_sym_set_accessor_token1] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5718), + [aux_sym_const_declaration_token1] = ACTIONS(5716), + [anon_sym_LPAREN] = ACTIONS(5718), + [aux_sym_as_type_clause_token2] = ACTIONS(5716), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5716), + [aux_sym_visibility_token1] = ACTIONS(5716), + [aux_sym_visibility_token2] = ACTIONS(5716), + [aux_sym_elseif_fragment_token1] = ACTIONS(5716), + [aux_sym_else_fragment_token1] = ACTIONS(5716), + [aux_sym_select_statement_token1] = ACTIONS(5716), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5716), + [aux_sym__for_header_token1] = ACTIONS(5716), + [aux_sym_do_statement_token1] = ACTIONS(5716), + [aux_sym_do_condition_token1] = ACTIONS(5716), + [aux_sym_with_statement_token1] = ACTIONS(5716), + [aux_sym_exit_statement_token1] = ACTIONS(5716), + [sym_end_statement] = ACTIONS(5718), + [aux_sym_on_goto_statement_token1] = ACTIONS(5716), + [aux_sym_on_goto_statement_token2] = ACTIONS(5716), + [aux_sym_on_error_statement_token2] = ACTIONS(5716), + [sym__ambiguous_redim_statement] = ACTIONS(5718), + [aux_sym_erase_statement_token1] = ACTIONS(5716), + [aux_sym_open_statement_token1] = ACTIONS(5716), + [aux_sym_file_mode_token2] = ACTIONS(5716), + [aux_sym_file_access_token2] = ACTIONS(5716), + [aux_sym_file_lock_token2] = ACTIONS(5716), + [aux_sym_print_statement_token1] = ACTIONS(5716), + [anon_sym_PLUS] = ACTIONS(5718), + [anon_sym_DASH] = ACTIONS(5716), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [aux_sym_close_statement_token1] = ACTIONS(5716), + [aux_sym_put_statement_token1] = ACTIONS(5716), + [aux_sym_unlock_statement_token1] = ACTIONS(5716), + [aux_sym_seek_statement_token1] = ACTIONS(5716), + [sym_reset_statement] = ACTIONS(5716), + [aux_sym_raise_event_statement_token1] = ACTIONS(5716), + [sym_stop_statement] = ACTIONS(5716), + [sym_beep_statement] = ACTIONS(5716), + [aux_sym_unload_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token2] = ACTIONS(5716), + [aux_sym_def_type_statement_token3] = ACTIONS(5716), + [aux_sym_def_type_statement_token4] = ACTIONS(5716), + [aux_sym_def_type_statement_token5] = ACTIONS(5716), + [aux_sym_def_type_statement_token6] = ACTIONS(5716), + [aux_sym_def_type_statement_token7] = ACTIONS(5716), + [aux_sym_def_type_statement_token8] = ACTIONS(5716), + [aux_sym_def_type_statement_token9] = ACTIONS(5716), + [aux_sym_def_type_statement_token10] = ACTIONS(5716), + [aux_sym_def_type_statement_token11] = ACTIONS(5716), + [aux_sym_def_type_statement_token12] = ACTIONS(5716), + [aux_sym_def_type_statement_token13] = ACTIONS(5716), + [aux_sym_def_type_statement_token14] = ACTIONS(5716), + [aux_sym_call_statement_token1] = ACTIONS(5716), + [sym__ambiguous_call_statement] = ACTIONS(5716), + [aux_sym_addressof_expression_token1] = ACTIONS(5716), + [aux_sym_type_of_expression_token1] = ACTIONS(5716), + [aux_sym_unary_expression_token1] = ACTIONS(5716), + [sym_string_literal] = ACTIONS(5718), + [sym_number_literal] = ACTIONS(5718), + [aux_sym_boolean_literal_token1] = ACTIONS(5716), + [aux_sym_boolean_literal_token2] = ACTIONS(5716), + [sym_nothing_literal] = ACTIONS(5716), + [sym_null_literal] = ACTIONS(5716), + [sym_empty_literal] = ACTIONS(5716), + [sym_date_literal] = ACTIONS(5718), + [anon_sym_POUND] = ACTIONS(5716), + }, + [STATE(5465)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5466), + [sym_identifier] = ACTIONS(7945), + [sym_newline] = ACTIONS(7947), + [anon_sym_COLON] = ACTIONS(7947), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7945), + [aux_sym_frm_property_statement_token1] = ACTIONS(7945), + [anon_sym_DOT] = ACTIONS(7945), + [anon_sym_BANG] = ACTIONS(7947), + [aux_sym__attribute_identifier_token1] = ACTIONS(7945), + [aux_sym_option_statement_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7945), + [aux_sym_preprocessor_const_token1] = ACTIONS(7945), + [sym_static_modifier] = ACTIONS(7945), + [sym__dim_keyword] = ACTIONS(7945), + [sym__redim_keyword] = ACTIONS(7945), + [aux_sym_get_accessor_token1] = ACTIONS(7945), + [aux_sym_set_accessor_token1] = ACTIONS(7945), + [anon_sym_COMMA] = ACTIONS(10619), + [aux_sym_const_declaration_token1] = ACTIONS(7945), + [anon_sym_LPAREN] = ACTIONS(7947), + [aux_sym_as_type_clause_token2] = ACTIONS(7945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7945), + [aux_sym_visibility_token1] = ACTIONS(7945), + [aux_sym_visibility_token2] = ACTIONS(7945), + [aux_sym_elseif_fragment_token1] = ACTIONS(7945), + [aux_sym_else_fragment_token1] = ACTIONS(7945), + [aux_sym_select_statement_token1] = ACTIONS(7945), + [aux_sym__for_header_token1] = ACTIONS(7945), + [aux_sym_do_statement_token1] = ACTIONS(7945), + [aux_sym_do_condition_token1] = ACTIONS(7945), + [aux_sym_with_statement_token1] = ACTIONS(7945), + [aux_sym_exit_statement_token1] = ACTIONS(7945), + [sym_end_statement] = ACTIONS(7947), + [aux_sym_on_goto_statement_token1] = ACTIONS(7945), + [aux_sym_on_goto_statement_token2] = ACTIONS(7945), + [aux_sym_on_error_statement_token2] = ACTIONS(7945), + [sym__ambiguous_redim_statement] = ACTIONS(7947), + [aux_sym_erase_statement_token1] = ACTIONS(7945), + [aux_sym_open_statement_token1] = ACTIONS(7945), + [aux_sym_file_mode_token2] = ACTIONS(7945), + [aux_sym_file_access_token2] = ACTIONS(7945), + [aux_sym_file_lock_token2] = ACTIONS(7945), + [aux_sym_print_statement_token1] = ACTIONS(7945), + [anon_sym_PLUS] = ACTIONS(7947), + [anon_sym_DASH] = ACTIONS(7945), + [anon_sym_QMARK] = ACTIONS(7947), + [aux_sym_close_statement_token1] = ACTIONS(7945), + [aux_sym_put_statement_token1] = ACTIONS(7945), + [aux_sym_unlock_statement_token1] = ACTIONS(7945), + [aux_sym_seek_statement_token1] = ACTIONS(7945), + [sym_reset_statement] = ACTIONS(7945), + [aux_sym_raise_event_statement_token1] = ACTIONS(7945), + [sym_stop_statement] = ACTIONS(7945), + [sym_beep_statement] = ACTIONS(7945), + [aux_sym_unload_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token2] = ACTIONS(7945), + [aux_sym_def_type_statement_token3] = ACTIONS(7945), + [aux_sym_def_type_statement_token4] = ACTIONS(7945), + [aux_sym_def_type_statement_token5] = ACTIONS(7945), + [aux_sym_def_type_statement_token6] = ACTIONS(7945), + [aux_sym_def_type_statement_token7] = ACTIONS(7945), + [aux_sym_def_type_statement_token8] = ACTIONS(7945), + [aux_sym_def_type_statement_token9] = ACTIONS(7945), + [aux_sym_def_type_statement_token10] = ACTIONS(7945), + [aux_sym_def_type_statement_token11] = ACTIONS(7945), + [aux_sym_def_type_statement_token12] = ACTIONS(7945), + [aux_sym_def_type_statement_token13] = ACTIONS(7945), + [aux_sym_def_type_statement_token14] = ACTIONS(7945), + [aux_sym_call_statement_token1] = ACTIONS(7945), + [sym__ambiguous_call_statement] = ACTIONS(7945), + [aux_sym_addressof_expression_token1] = ACTIONS(7945), + [aux_sym_type_of_expression_token1] = ACTIONS(7945), + [aux_sym_unary_expression_token1] = ACTIONS(7945), + [sym_string_literal] = ACTIONS(7947), + [sym_number_literal] = ACTIONS(7947), + [aux_sym_boolean_literal_token1] = ACTIONS(7945), + [aux_sym_boolean_literal_token2] = ACTIONS(7945), + [sym_nothing_literal] = ACTIONS(7945), + [sym_null_literal] = ACTIONS(7945), + [sym_empty_literal] = ACTIONS(7945), + [sym_date_literal] = ACTIONS(7947), + [anon_sym_POUND] = ACTIONS(7945), + }, + [STATE(5466)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5466), + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(10621), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(5467)] = { + [sym_identifier] = ACTIONS(3996), + [sym_newline] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3996), + [aux_sym_frm_property_statement_token1] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3994), + [aux_sym__attribute_identifier_token1] = ACTIONS(3996), + [aux_sym_option_statement_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3996), + [aux_sym_preprocessor_const_token1] = ACTIONS(3996), + [sym_static_modifier] = ACTIONS(3996), + [sym__dim_keyword] = ACTIONS(3996), + [sym__redim_keyword] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3996), + [aux_sym_set_accessor_token1] = ACTIONS(3996), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3994), + [aux_sym_as_type_clause_token2] = ACTIONS(3996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3996), + [aux_sym_visibility_token1] = ACTIONS(3996), + [aux_sym_visibility_token2] = ACTIONS(3996), + [aux_sym_elseif_fragment_token1] = ACTIONS(3996), + [aux_sym_else_fragment_token1] = ACTIONS(3996), + [aux_sym_select_statement_token1] = ACTIONS(3996), + [aux_sym_select_statement_token2] = ACTIONS(3996), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3996), + [aux_sym__for_header_token1] = ACTIONS(3996), + [aux_sym_do_statement_token1] = ACTIONS(3996), + [aux_sym_do_condition_token1] = ACTIONS(3996), + [aux_sym_with_statement_token1] = ACTIONS(3996), + [aux_sym_exit_statement_token1] = ACTIONS(3996), + [sym_end_statement] = ACTIONS(3994), + [aux_sym_on_goto_statement_token1] = ACTIONS(3996), + [aux_sym_on_goto_statement_token2] = ACTIONS(3996), + [aux_sym_on_error_statement_token2] = ACTIONS(3996), + [sym__ambiguous_redim_statement] = ACTIONS(3994), + [aux_sym_erase_statement_token1] = ACTIONS(3996), + [aux_sym_open_statement_token1] = ACTIONS(3996), + [aux_sym_file_mode_token2] = ACTIONS(3996), + [aux_sym_file_access_token2] = ACTIONS(3996), + [aux_sym_file_lock_token2] = ACTIONS(3996), + [aux_sym_print_statement_token1] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3994), + [aux_sym_close_statement_token1] = ACTIONS(3996), + [aux_sym_put_statement_token1] = ACTIONS(3996), + [aux_sym_unlock_statement_token1] = ACTIONS(3996), + [aux_sym_seek_statement_token1] = ACTIONS(3996), + [sym_reset_statement] = ACTIONS(3996), + [aux_sym_raise_event_statement_token1] = ACTIONS(3996), + [sym_stop_statement] = ACTIONS(3996), + [sym_beep_statement] = ACTIONS(3996), + [aux_sym_unload_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token2] = ACTIONS(3996), + [aux_sym_def_type_statement_token3] = ACTIONS(3996), + [aux_sym_def_type_statement_token4] = ACTIONS(3996), + [aux_sym_def_type_statement_token5] = ACTIONS(3996), + [aux_sym_def_type_statement_token6] = ACTIONS(3996), + [aux_sym_def_type_statement_token7] = ACTIONS(3996), + [aux_sym_def_type_statement_token8] = ACTIONS(3996), + [aux_sym_def_type_statement_token9] = ACTIONS(3996), + [aux_sym_def_type_statement_token10] = ACTIONS(3996), + [aux_sym_def_type_statement_token11] = ACTIONS(3996), + [aux_sym_def_type_statement_token12] = ACTIONS(3996), + [aux_sym_def_type_statement_token13] = ACTIONS(3996), + [aux_sym_def_type_statement_token14] = ACTIONS(3996), + [aux_sym_call_statement_token1] = ACTIONS(3996), + [sym__ambiguous_call_statement] = ACTIONS(3996), + [aux_sym_addressof_expression_token1] = ACTIONS(3996), + [aux_sym_type_of_expression_token1] = ACTIONS(3996), + [aux_sym_unary_expression_token1] = ACTIONS(3996), + [sym_string_literal] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3994), + [aux_sym_boolean_literal_token1] = ACTIONS(3996), + [aux_sym_boolean_literal_token2] = ACTIONS(3996), + [sym_nothing_literal] = ACTIONS(3996), + [sym_null_literal] = ACTIONS(3996), + [sym_empty_literal] = ACTIONS(3996), + [sym_date_literal] = ACTIONS(3994), + [anon_sym_POUND] = ACTIONS(3996), + }, + [STATE(5468)] = { + [aux_sym_redim_statement_repeat1] = STATE(5502), + [sym_identifier] = ACTIONS(8561), + [sym_newline] = ACTIONS(8563), + [anon_sym_COLON] = ACTIONS(8563), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8561), + [aux_sym_frm_property_statement_token1] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8561), + [anon_sym_BANG] = ACTIONS(8563), + [aux_sym__attribute_identifier_token1] = ACTIONS(8561), + [aux_sym_option_statement_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8561), + [aux_sym_preprocessor_const_token1] = ACTIONS(8561), + [sym_static_modifier] = ACTIONS(8561), + [sym__dim_keyword] = ACTIONS(8561), + [sym__redim_keyword] = ACTIONS(8561), + [aux_sym_get_accessor_token1] = ACTIONS(8561), + [aux_sym_set_accessor_token1] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(10624), + [aux_sym_const_declaration_token1] = ACTIONS(8561), + [anon_sym_LPAREN] = ACTIONS(8563), + [aux_sym_as_type_clause_token2] = ACTIONS(8561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8561), + [aux_sym_visibility_token1] = ACTIONS(8561), + [aux_sym_visibility_token2] = ACTIONS(8561), + [aux_sym_elseif_fragment_token1] = ACTIONS(8561), + [aux_sym_else_fragment_token1] = ACTIONS(8561), + [aux_sym_select_statement_token1] = ACTIONS(8561), + [aux_sym__for_header_token1] = ACTIONS(8561), + [aux_sym_do_statement_token1] = ACTIONS(8561), + [aux_sym_do_statement_token2] = ACTIONS(8561), + [aux_sym_do_condition_token1] = ACTIONS(8561), + [aux_sym_with_statement_token1] = ACTIONS(8561), + [aux_sym_exit_statement_token1] = ACTIONS(8561), + [sym_end_statement] = ACTIONS(8563), + [aux_sym_on_goto_statement_token1] = ACTIONS(8561), + [aux_sym_on_goto_statement_token2] = ACTIONS(8561), + [aux_sym_on_error_statement_token2] = ACTIONS(8561), + [sym__ambiguous_redim_statement] = ACTIONS(8563), + [aux_sym_erase_statement_token1] = ACTIONS(8561), + [aux_sym_open_statement_token1] = ACTIONS(8561), + [aux_sym_file_mode_token2] = ACTIONS(8561), + [aux_sym_file_access_token2] = ACTIONS(8561), + [aux_sym_file_lock_token2] = ACTIONS(8561), + [aux_sym_print_statement_token1] = ACTIONS(8561), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(8561), + [anon_sym_QMARK] = ACTIONS(8563), + [aux_sym_close_statement_token1] = ACTIONS(8561), + [aux_sym_put_statement_token1] = ACTIONS(8561), + [aux_sym_unlock_statement_token1] = ACTIONS(8561), + [aux_sym_seek_statement_token1] = ACTIONS(8561), + [sym_reset_statement] = ACTIONS(8561), + [aux_sym_raise_event_statement_token1] = ACTIONS(8561), + [sym_stop_statement] = ACTIONS(8561), + [sym_beep_statement] = ACTIONS(8561), + [aux_sym_unload_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token2] = ACTIONS(8561), + [aux_sym_def_type_statement_token3] = ACTIONS(8561), + [aux_sym_def_type_statement_token4] = ACTIONS(8561), + [aux_sym_def_type_statement_token5] = ACTIONS(8561), + [aux_sym_def_type_statement_token6] = ACTIONS(8561), + [aux_sym_def_type_statement_token7] = ACTIONS(8561), + [aux_sym_def_type_statement_token8] = ACTIONS(8561), + [aux_sym_def_type_statement_token9] = ACTIONS(8561), + [aux_sym_def_type_statement_token10] = ACTIONS(8561), + [aux_sym_def_type_statement_token11] = ACTIONS(8561), + [aux_sym_def_type_statement_token12] = ACTIONS(8561), + [aux_sym_def_type_statement_token13] = ACTIONS(8561), + [aux_sym_def_type_statement_token14] = ACTIONS(8561), + [aux_sym_call_statement_token1] = ACTIONS(8561), + [sym__ambiguous_call_statement] = ACTIONS(8561), + [aux_sym_addressof_expression_token1] = ACTIONS(8561), + [aux_sym_type_of_expression_token1] = ACTIONS(8561), + [aux_sym_unary_expression_token1] = ACTIONS(8561), + [sym_string_literal] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8563), + [aux_sym_boolean_literal_token1] = ACTIONS(8561), + [aux_sym_boolean_literal_token2] = ACTIONS(8561), + [sym_nothing_literal] = ACTIONS(8561), + [sym_null_literal] = ACTIONS(8561), + [sym_empty_literal] = ACTIONS(8561), + [sym_date_literal] = ACTIONS(8563), + [anon_sym_POUND] = ACTIONS(8561), + }, + [STATE(5469)] = { + [sym_identifier] = ACTIONS(8022), + [sym_newline] = ACTIONS(8024), + [anon_sym_COLON] = ACTIONS(8024), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8022), + [aux_sym_frm_property_statement_token1] = ACTIONS(8022), + [anon_sym_EQ] = ACTIONS(8024), + [anon_sym_DOT] = ACTIONS(8022), + [anon_sym_BANG] = ACTIONS(8024), + [aux_sym__attribute_identifier_token1] = ACTIONS(8022), + [aux_sym_option_statement_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8022), + [aux_sym_preprocessor_const_token1] = ACTIONS(8022), + [sym_static_modifier] = ACTIONS(8022), + [sym__dim_keyword] = ACTIONS(8022), + [sym__redim_keyword] = ACTIONS(8022), + [aux_sym_get_accessor_token1] = ACTIONS(8022), + [aux_sym_set_accessor_token1] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8024), + [aux_sym_const_declaration_token1] = ACTIONS(8022), + [anon_sym_LPAREN] = ACTIONS(8024), + [aux_sym_as_type_clause_token2] = ACTIONS(8022), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8022), + [aux_sym_visibility_token1] = ACTIONS(8022), + [aux_sym_visibility_token2] = ACTIONS(8022), + [aux_sym_elseif_fragment_token1] = ACTIONS(8022), + [aux_sym_else_fragment_token1] = ACTIONS(8022), + [aux_sym_select_statement_token1] = ACTIONS(8022), + [aux_sym__for_header_token1] = ACTIONS(8022), + [aux_sym_do_statement_token1] = ACTIONS(8022), + [aux_sym_do_statement_token2] = ACTIONS(8022), + [aux_sym_do_condition_token1] = ACTIONS(8022), + [aux_sym_with_statement_token1] = ACTIONS(8022), + [aux_sym_exit_statement_token1] = ACTIONS(8022), + [sym_end_statement] = ACTIONS(8024), + [aux_sym_on_goto_statement_token1] = ACTIONS(8022), + [aux_sym_on_goto_statement_token2] = ACTIONS(8022), + [aux_sym_on_error_statement_token2] = ACTIONS(8022), + [sym__ambiguous_redim_statement] = ACTIONS(8024), + [aux_sym_erase_statement_token1] = ACTIONS(8022), + [aux_sym_open_statement_token1] = ACTIONS(8022), + [aux_sym_file_mode_token2] = ACTIONS(8022), + [aux_sym_file_access_token2] = ACTIONS(8022), + [aux_sym_file_lock_token2] = ACTIONS(8022), + [aux_sym_print_statement_token1] = ACTIONS(8022), + [anon_sym_PLUS] = ACTIONS(8024), + [anon_sym_DASH] = ACTIONS(8022), + [anon_sym_QMARK] = ACTIONS(8024), + [aux_sym_close_statement_token1] = ACTIONS(8022), + [aux_sym_put_statement_token1] = ACTIONS(8022), + [aux_sym_unlock_statement_token1] = ACTIONS(8022), + [aux_sym_seek_statement_token1] = ACTIONS(8022), + [sym_reset_statement] = ACTIONS(8022), + [aux_sym_raise_event_statement_token1] = ACTIONS(8022), + [sym_stop_statement] = ACTIONS(8022), + [sym_beep_statement] = ACTIONS(8022), + [aux_sym_unload_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token2] = ACTIONS(8022), + [aux_sym_def_type_statement_token3] = ACTIONS(8022), + [aux_sym_def_type_statement_token4] = ACTIONS(8022), + [aux_sym_def_type_statement_token5] = ACTIONS(8022), + [aux_sym_def_type_statement_token6] = ACTIONS(8022), + [aux_sym_def_type_statement_token7] = ACTIONS(8022), + [aux_sym_def_type_statement_token8] = ACTIONS(8022), + [aux_sym_def_type_statement_token9] = ACTIONS(8022), + [aux_sym_def_type_statement_token10] = ACTIONS(8022), + [aux_sym_def_type_statement_token11] = ACTIONS(8022), + [aux_sym_def_type_statement_token12] = ACTIONS(8022), + [aux_sym_def_type_statement_token13] = ACTIONS(8022), + [aux_sym_def_type_statement_token14] = ACTIONS(8022), + [aux_sym_call_statement_token1] = ACTIONS(8022), + [sym__ambiguous_call_statement] = ACTIONS(8022), + [aux_sym_addressof_expression_token1] = ACTIONS(8022), + [aux_sym_type_of_expression_token1] = ACTIONS(8022), + [aux_sym_unary_expression_token1] = ACTIONS(8022), + [sym_string_literal] = ACTIONS(8024), + [sym_number_literal] = ACTIONS(8024), + [aux_sym_boolean_literal_token1] = ACTIONS(8022), + [aux_sym_boolean_literal_token2] = ACTIONS(8022), + [sym_nothing_literal] = ACTIONS(8022), + [sym_null_literal] = ACTIONS(8022), + [sym_empty_literal] = ACTIONS(8022), + [sym_date_literal] = ACTIONS(8024), + [anon_sym_POUND] = ACTIONS(8022), + }, + [STATE(5470)] = { + [sym_identifier] = ACTIONS(9740), + [sym_newline] = ACTIONS(9742), + [anon_sym_COLON] = ACTIONS(9742), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9740), + [aux_sym_frm_property_statement_token1] = ACTIONS(9740), + [anon_sym_DOT] = ACTIONS(9740), + [anon_sym_BANG] = ACTIONS(9742), + [aux_sym__attribute_identifier_token1] = ACTIONS(9740), + [aux_sym_option_statement_token3] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9740), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9740), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9740), + [aux_sym_preprocessor_const_token1] = ACTIONS(9740), + [sym_static_modifier] = ACTIONS(9740), + [sym__dim_keyword] = ACTIONS(9740), + [sym__redim_keyword] = ACTIONS(9740), + [aux_sym_get_accessor_token1] = ACTIONS(9740), + [aux_sym_set_accessor_token1] = ACTIONS(9740), + [aux_sym_const_declaration_token1] = ACTIONS(9740), + [anon_sym_LPAREN] = ACTIONS(9742), + [aux_sym_as_type_clause_token2] = ACTIONS(9740), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9740), + [aux_sym_visibility_token1] = ACTIONS(9740), + [aux_sym_visibility_token2] = ACTIONS(9740), + [aux_sym_elseif_fragment_token1] = ACTIONS(9740), + [aux_sym_else_fragment_token1] = ACTIONS(9740), + [aux_sym_select_statement_token1] = ACTIONS(9740), + [aux_sym__for_header_token1] = ACTIONS(9740), + [aux_sym_do_statement_token1] = ACTIONS(9740), + [aux_sym_do_condition_token1] = ACTIONS(9740), + [aux_sym_with_statement_token1] = ACTIONS(9740), + [aux_sym_exit_statement_token1] = ACTIONS(9740), + [sym_end_statement] = ACTIONS(9742), + [aux_sym_on_goto_statement_token1] = ACTIONS(9740), + [aux_sym_on_goto_statement_token2] = ACTIONS(9740), + [aux_sym_on_error_statement_token2] = ACTIONS(9740), + [sym__ambiguous_redim_statement] = ACTIONS(9742), + [aux_sym_erase_statement_token1] = ACTIONS(9740), + [aux_sym_open_statement_token1] = ACTIONS(9740), + [aux_sym_file_mode_token2] = ACTIONS(9740), + [aux_sym_file_access_token2] = ACTIONS(9740), + [aux_sym_file_lock_token2] = ACTIONS(9740), + [aux_sym_print_statement_token1] = ACTIONS(9740), + [anon_sym_PLUS] = ACTIONS(9742), + [anon_sym_DASH] = ACTIONS(9740), + [anon_sym_QMARK] = ACTIONS(9742), + [aux_sym_close_statement_token1] = ACTIONS(9740), + [aux_sym_put_statement_token1] = ACTIONS(9740), + [aux_sym_unlock_statement_token1] = ACTIONS(9740), + [aux_sym_seek_statement_token1] = ACTIONS(9740), + [sym_reset_statement] = ACTIONS(9740), + [aux_sym_raise_event_statement_token1] = ACTIONS(9740), + [sym_stop_statement] = ACTIONS(9740), + [sym_beep_statement] = ACTIONS(9740), + [aux_sym_unload_statement_token1] = ACTIONS(9740), + [aux_sym_def_type_statement_token1] = ACTIONS(9740), + [aux_sym_def_type_statement_token2] = ACTIONS(9740), + [aux_sym_def_type_statement_token3] = ACTIONS(9740), + [aux_sym_def_type_statement_token4] = ACTIONS(9740), + [aux_sym_def_type_statement_token5] = ACTIONS(9740), + [aux_sym_def_type_statement_token6] = ACTIONS(9740), + [aux_sym_def_type_statement_token7] = ACTIONS(9740), + [aux_sym_def_type_statement_token8] = ACTIONS(9740), + [aux_sym_def_type_statement_token9] = ACTIONS(9740), + [aux_sym_def_type_statement_token10] = ACTIONS(9740), + [aux_sym_def_type_statement_token11] = ACTIONS(9740), + [aux_sym_def_type_statement_token12] = ACTIONS(9740), + [aux_sym_def_type_statement_token13] = ACTIONS(9740), + [aux_sym_def_type_statement_token14] = ACTIONS(9740), + [aux_sym_call_statement_token1] = ACTIONS(9740), + [sym__ambiguous_call_statement] = ACTIONS(9740), + [aux_sym_addressof_expression_token1] = ACTIONS(9740), + [aux_sym_type_of_expression_token1] = ACTIONS(9740), + [aux_sym_unary_expression_token1] = ACTIONS(9740), + [sym_string_literal] = ACTIONS(9742), + [sym_number_literal] = ACTIONS(9742), + [aux_sym_boolean_literal_token1] = ACTIONS(9740), + [aux_sym_boolean_literal_token2] = ACTIONS(9740), + [sym_nothing_literal] = ACTIONS(9740), + [sym_null_literal] = ACTIONS(9740), + [sym_empty_literal] = ACTIONS(9740), + [sym_date_literal] = ACTIONS(9742), + [anon_sym_POUND] = ACTIONS(9740), + }, + [STATE(5471)] = { + [sym_identifier] = ACTIONS(9744), + [sym_newline] = ACTIONS(9746), + [anon_sym_COLON] = ACTIONS(9746), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9744), + [aux_sym_frm_property_statement_token1] = ACTIONS(9744), + [anon_sym_DOT] = ACTIONS(9744), + [anon_sym_BANG] = ACTIONS(9746), + [aux_sym__attribute_identifier_token1] = ACTIONS(9744), + [aux_sym_option_statement_token3] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9744), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9744), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9744), + [aux_sym_preprocessor_const_token1] = ACTIONS(9744), + [sym_static_modifier] = ACTIONS(9744), + [sym__dim_keyword] = ACTIONS(9744), + [sym__redim_keyword] = ACTIONS(9744), + [aux_sym_get_accessor_token1] = ACTIONS(9744), + [aux_sym_set_accessor_token1] = ACTIONS(9744), + [aux_sym_const_declaration_token1] = ACTIONS(9744), + [anon_sym_LPAREN] = ACTIONS(9746), + [aux_sym_as_type_clause_token2] = ACTIONS(9744), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9744), + [aux_sym_visibility_token1] = ACTIONS(9744), + [aux_sym_visibility_token2] = ACTIONS(9744), + [aux_sym_elseif_fragment_token1] = ACTIONS(9744), + [aux_sym_else_fragment_token1] = ACTIONS(9744), + [aux_sym_select_statement_token1] = ACTIONS(9744), + [aux_sym__for_header_token1] = ACTIONS(9744), + [aux_sym_do_statement_token1] = ACTIONS(9744), + [aux_sym_do_condition_token1] = ACTIONS(9744), + [aux_sym_with_statement_token1] = ACTIONS(9744), + [aux_sym_exit_statement_token1] = ACTIONS(9744), + [sym_end_statement] = ACTIONS(9746), + [aux_sym_on_goto_statement_token1] = ACTIONS(9744), + [aux_sym_on_goto_statement_token2] = ACTIONS(9744), + [aux_sym_on_error_statement_token2] = ACTIONS(9744), + [sym__ambiguous_redim_statement] = ACTIONS(9746), + [aux_sym_erase_statement_token1] = ACTIONS(9744), + [aux_sym_open_statement_token1] = ACTIONS(9744), + [aux_sym_file_mode_token2] = ACTIONS(9744), + [aux_sym_file_access_token2] = ACTIONS(9744), + [aux_sym_file_lock_token2] = ACTIONS(9744), + [aux_sym_print_statement_token1] = ACTIONS(9744), + [anon_sym_PLUS] = ACTIONS(9746), + [anon_sym_DASH] = ACTIONS(9744), + [anon_sym_QMARK] = ACTIONS(9746), + [aux_sym_close_statement_token1] = ACTIONS(9744), + [aux_sym_put_statement_token1] = ACTIONS(9744), + [aux_sym_unlock_statement_token1] = ACTIONS(9744), + [aux_sym_seek_statement_token1] = ACTIONS(9744), + [sym_reset_statement] = ACTIONS(9744), + [aux_sym_raise_event_statement_token1] = ACTIONS(9744), + [sym_stop_statement] = ACTIONS(9744), + [sym_beep_statement] = ACTIONS(9744), + [aux_sym_unload_statement_token1] = ACTIONS(9744), + [aux_sym_def_type_statement_token1] = ACTIONS(9744), + [aux_sym_def_type_statement_token2] = ACTIONS(9744), + [aux_sym_def_type_statement_token3] = ACTIONS(9744), + [aux_sym_def_type_statement_token4] = ACTIONS(9744), + [aux_sym_def_type_statement_token5] = ACTIONS(9744), + [aux_sym_def_type_statement_token6] = ACTIONS(9744), + [aux_sym_def_type_statement_token7] = ACTIONS(9744), + [aux_sym_def_type_statement_token8] = ACTIONS(9744), + [aux_sym_def_type_statement_token9] = ACTIONS(9744), + [aux_sym_def_type_statement_token10] = ACTIONS(9744), + [aux_sym_def_type_statement_token11] = ACTIONS(9744), + [aux_sym_def_type_statement_token12] = ACTIONS(9744), + [aux_sym_def_type_statement_token13] = ACTIONS(9744), + [aux_sym_def_type_statement_token14] = ACTIONS(9744), + [aux_sym_call_statement_token1] = ACTIONS(9744), + [sym__ambiguous_call_statement] = ACTIONS(9744), + [aux_sym_addressof_expression_token1] = ACTIONS(9744), + [aux_sym_type_of_expression_token1] = ACTIONS(9744), + [aux_sym_unary_expression_token1] = ACTIONS(9744), + [sym_string_literal] = ACTIONS(9746), + [sym_number_literal] = ACTIONS(9746), + [aux_sym_boolean_literal_token1] = ACTIONS(9744), + [aux_sym_boolean_literal_token2] = ACTIONS(9744), + [sym_nothing_literal] = ACTIONS(9744), + [sym_null_literal] = ACTIONS(9744), + [sym_empty_literal] = ACTIONS(9744), + [sym_date_literal] = ACTIONS(9746), + [anon_sym_POUND] = ACTIONS(9744), + }, + [STATE(5472)] = { + [sym_identifier] = ACTIONS(9748), + [sym_newline] = ACTIONS(9750), + [anon_sym_COLON] = ACTIONS(9750), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9748), + [aux_sym_frm_property_statement_token1] = ACTIONS(9748), + [anon_sym_DOT] = ACTIONS(9748), + [anon_sym_BANG] = ACTIONS(9750), + [aux_sym__attribute_identifier_token1] = ACTIONS(9748), + [aux_sym_option_statement_token3] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9748), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9748), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9748), + [aux_sym_preprocessor_const_token1] = ACTIONS(9748), + [sym_static_modifier] = ACTIONS(9748), + [sym__dim_keyword] = ACTIONS(9748), + [sym__redim_keyword] = ACTIONS(9748), + [aux_sym_get_accessor_token1] = ACTIONS(9748), + [aux_sym_set_accessor_token1] = ACTIONS(9748), + [aux_sym_const_declaration_token1] = ACTIONS(9748), + [anon_sym_LPAREN] = ACTIONS(9750), + [aux_sym_as_type_clause_token2] = ACTIONS(9748), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9748), + [aux_sym_visibility_token1] = ACTIONS(9748), + [aux_sym_visibility_token2] = ACTIONS(9748), + [aux_sym_elseif_fragment_token1] = ACTIONS(9748), + [aux_sym_else_fragment_token1] = ACTIONS(9748), + [aux_sym_select_statement_token1] = ACTIONS(9748), + [aux_sym__for_header_token1] = ACTIONS(9748), + [aux_sym_do_statement_token1] = ACTIONS(9748), + [aux_sym_do_condition_token1] = ACTIONS(9748), + [aux_sym_with_statement_token1] = ACTIONS(9748), + [aux_sym_exit_statement_token1] = ACTIONS(9748), + [sym_end_statement] = ACTIONS(9750), + [aux_sym_on_goto_statement_token1] = ACTIONS(9748), + [aux_sym_on_goto_statement_token2] = ACTIONS(9748), + [aux_sym_on_error_statement_token2] = ACTIONS(9748), + [sym__ambiguous_redim_statement] = ACTIONS(9750), + [aux_sym_erase_statement_token1] = ACTIONS(9748), + [aux_sym_open_statement_token1] = ACTIONS(9748), + [aux_sym_file_mode_token2] = ACTIONS(9748), + [aux_sym_file_access_token2] = ACTIONS(9748), + [aux_sym_file_lock_token2] = ACTIONS(9748), + [aux_sym_print_statement_token1] = ACTIONS(9748), + [anon_sym_PLUS] = ACTIONS(9750), + [anon_sym_DASH] = ACTIONS(9748), + [anon_sym_QMARK] = ACTIONS(9750), + [aux_sym_close_statement_token1] = ACTIONS(9748), + [aux_sym_put_statement_token1] = ACTIONS(9748), + [aux_sym_unlock_statement_token1] = ACTIONS(9748), + [aux_sym_seek_statement_token1] = ACTIONS(9748), + [sym_reset_statement] = ACTIONS(9748), + [aux_sym_raise_event_statement_token1] = ACTIONS(9748), + [sym_stop_statement] = ACTIONS(9748), + [sym_beep_statement] = ACTIONS(9748), + [aux_sym_unload_statement_token1] = ACTIONS(9748), + [aux_sym_def_type_statement_token1] = ACTIONS(9748), + [aux_sym_def_type_statement_token2] = ACTIONS(9748), + [aux_sym_def_type_statement_token3] = ACTIONS(9748), + [aux_sym_def_type_statement_token4] = ACTIONS(9748), + [aux_sym_def_type_statement_token5] = ACTIONS(9748), + [aux_sym_def_type_statement_token6] = ACTIONS(9748), + [aux_sym_def_type_statement_token7] = ACTIONS(9748), + [aux_sym_def_type_statement_token8] = ACTIONS(9748), + [aux_sym_def_type_statement_token9] = ACTIONS(9748), + [aux_sym_def_type_statement_token10] = ACTIONS(9748), + [aux_sym_def_type_statement_token11] = ACTIONS(9748), + [aux_sym_def_type_statement_token12] = ACTIONS(9748), + [aux_sym_def_type_statement_token13] = ACTIONS(9748), + [aux_sym_def_type_statement_token14] = ACTIONS(9748), + [aux_sym_call_statement_token1] = ACTIONS(9748), + [sym__ambiguous_call_statement] = ACTIONS(9748), + [aux_sym_addressof_expression_token1] = ACTIONS(9748), + [aux_sym_type_of_expression_token1] = ACTIONS(9748), + [aux_sym_unary_expression_token1] = ACTIONS(9748), + [sym_string_literal] = ACTIONS(9750), + [sym_number_literal] = ACTIONS(9750), + [aux_sym_boolean_literal_token1] = ACTIONS(9748), + [aux_sym_boolean_literal_token2] = ACTIONS(9748), + [sym_nothing_literal] = ACTIONS(9748), + [sym_null_literal] = ACTIONS(9748), + [sym_empty_literal] = ACTIONS(9748), + [sym_date_literal] = ACTIONS(9750), + [anon_sym_POUND] = ACTIONS(9748), + }, + [STATE(5473)] = { + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [anon_sym_COLON] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym__attribute_identifier_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [sym__redim_keyword] = ACTIONS(4369), + [aux_sym_get_accessor_token1] = ACTIONS(4369), + [aux_sym_set_accessor_token1] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [aux_sym_as_type_clause_token2] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4369), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_elseif_fragment_token1] = ACTIONS(4369), + [aux_sym_else_fragment_token1] = ACTIONS(4369), + [aux_sym_select_statement_token1] = ACTIONS(4369), + [aux_sym__for_header_token1] = ACTIONS(4369), + [aux_sym_do_statement_token1] = ACTIONS(4369), + [aux_sym_do_condition_token1] = ACTIONS(4369), + [aux_sym_with_statement_token1] = ACTIONS(4369), + [aux_sym_exit_statement_token1] = ACTIONS(4369), + [sym_end_statement] = ACTIONS(4371), + [aux_sym_on_goto_statement_token1] = ACTIONS(4369), + [aux_sym_on_goto_statement_token2] = ACTIONS(4369), + [aux_sym_on_error_statement_token2] = ACTIONS(4369), + [sym__ambiguous_redim_statement] = ACTIONS(4371), + [aux_sym_erase_statement_token1] = ACTIONS(4369), + [aux_sym_open_statement_token1] = ACTIONS(4369), + [aux_sym_file_mode_token2] = ACTIONS(4369), + [aux_sym_file_access_token2] = ACTIONS(4369), + [aux_sym_file_lock_token2] = ACTIONS(4369), + [aux_sym_print_statement_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4371), + [aux_sym_close_statement_token1] = ACTIONS(4369), + [aux_sym_put_statement_token1] = ACTIONS(4369), + [aux_sym_unlock_statement_token1] = ACTIONS(4369), + [aux_sym_seek_statement_token1] = ACTIONS(4369), + [sym_reset_statement] = ACTIONS(4369), + [aux_sym_raise_event_statement_token1] = ACTIONS(4369), + [sym_stop_statement] = ACTIONS(4369), + [sym_beep_statement] = ACTIONS(4369), + [aux_sym_unload_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_call_statement_token1] = ACTIONS(4369), + [sym__ambiguous_call_statement] = ACTIONS(4369), + [aux_sym_addressof_expression_token1] = ACTIONS(4369), + [aux_sym_type_of_expression_token1] = ACTIONS(4369), + [aux_sym_unary_expression_token1] = ACTIONS(4369), + [sym_string_literal] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4371), + [aux_sym_boolean_literal_token1] = ACTIONS(4369), + [aux_sym_boolean_literal_token2] = ACTIONS(4369), + [sym_nothing_literal] = ACTIONS(4369), + [sym_null_literal] = ACTIONS(4369), + [sym_empty_literal] = ACTIONS(4369), + [sym_date_literal] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4369), + }, + [STATE(5474)] = { + [aux_sym_redim_statement_repeat1] = STATE(5563), + [sym_identifier] = ACTIONS(8561), + [sym_newline] = ACTIONS(8563), + [anon_sym_COLON] = ACTIONS(8563), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8561), + [aux_sym_frm_property_statement_token1] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8561), + [anon_sym_BANG] = ACTIONS(8563), + [aux_sym__attribute_identifier_token1] = ACTIONS(8561), + [aux_sym_option_statement_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8561), + [aux_sym_preprocessor_const_token1] = ACTIONS(8561), + [sym_static_modifier] = ACTIONS(8561), + [sym__dim_keyword] = ACTIONS(8561), + [sym__redim_keyword] = ACTIONS(8561), + [aux_sym_get_accessor_token1] = ACTIONS(8561), + [aux_sym_set_accessor_token1] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(10624), + [aux_sym_const_declaration_token1] = ACTIONS(8561), + [anon_sym_LPAREN] = ACTIONS(8563), + [aux_sym_as_type_clause_token2] = ACTIONS(8561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8561), + [aux_sym_visibility_token1] = ACTIONS(8561), + [aux_sym_visibility_token2] = ACTIONS(8561), + [aux_sym_elseif_fragment_token1] = ACTIONS(8561), + [aux_sym_else_fragment_token1] = ACTIONS(8561), + [aux_sym_select_statement_token1] = ACTIONS(8561), + [aux_sym__for_header_token1] = ACTIONS(8561), + [aux_sym_do_statement_token1] = ACTIONS(8561), + [aux_sym_do_statement_token2] = ACTIONS(8561), + [aux_sym_do_condition_token1] = ACTIONS(8561), + [aux_sym_with_statement_token1] = ACTIONS(8561), + [aux_sym_exit_statement_token1] = ACTIONS(8561), + [sym_end_statement] = ACTIONS(8563), + [aux_sym_on_goto_statement_token1] = ACTIONS(8561), + [aux_sym_on_goto_statement_token2] = ACTIONS(8561), + [aux_sym_on_error_statement_token2] = ACTIONS(8561), + [sym__ambiguous_redim_statement] = ACTIONS(8563), + [aux_sym_erase_statement_token1] = ACTIONS(8561), + [aux_sym_open_statement_token1] = ACTIONS(8561), + [aux_sym_file_mode_token2] = ACTIONS(8561), + [aux_sym_file_access_token2] = ACTIONS(8561), + [aux_sym_file_lock_token2] = ACTIONS(8561), + [aux_sym_print_statement_token1] = ACTIONS(8561), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(8561), + [anon_sym_QMARK] = ACTIONS(8563), + [aux_sym_close_statement_token1] = ACTIONS(8561), + [aux_sym_put_statement_token1] = ACTIONS(8561), + [aux_sym_unlock_statement_token1] = ACTIONS(8561), + [aux_sym_seek_statement_token1] = ACTIONS(8561), + [sym_reset_statement] = ACTIONS(8561), + [aux_sym_raise_event_statement_token1] = ACTIONS(8561), + [sym_stop_statement] = ACTIONS(8561), + [sym_beep_statement] = ACTIONS(8561), + [aux_sym_unload_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token2] = ACTIONS(8561), + [aux_sym_def_type_statement_token3] = ACTIONS(8561), + [aux_sym_def_type_statement_token4] = ACTIONS(8561), + [aux_sym_def_type_statement_token5] = ACTIONS(8561), + [aux_sym_def_type_statement_token6] = ACTIONS(8561), + [aux_sym_def_type_statement_token7] = ACTIONS(8561), + [aux_sym_def_type_statement_token8] = ACTIONS(8561), + [aux_sym_def_type_statement_token9] = ACTIONS(8561), + [aux_sym_def_type_statement_token10] = ACTIONS(8561), + [aux_sym_def_type_statement_token11] = ACTIONS(8561), + [aux_sym_def_type_statement_token12] = ACTIONS(8561), + [aux_sym_def_type_statement_token13] = ACTIONS(8561), + [aux_sym_def_type_statement_token14] = ACTIONS(8561), + [aux_sym_call_statement_token1] = ACTIONS(8561), + [sym__ambiguous_call_statement] = ACTIONS(8561), + [aux_sym_addressof_expression_token1] = ACTIONS(8561), + [aux_sym_type_of_expression_token1] = ACTIONS(8561), + [aux_sym_unary_expression_token1] = ACTIONS(8561), + [sym_string_literal] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8563), + [aux_sym_boolean_literal_token1] = ACTIONS(8561), + [aux_sym_boolean_literal_token2] = ACTIONS(8561), + [sym_nothing_literal] = ACTIONS(8561), + [sym_null_literal] = ACTIONS(8561), + [sym_empty_literal] = ACTIONS(8561), + [sym_date_literal] = ACTIONS(8563), + [anon_sym_POUND] = ACTIONS(8561), + }, + [STATE(5475)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5509), + [sym_identifier] = ACTIONS(8565), + [sym_newline] = ACTIONS(8567), + [anon_sym_COLON] = ACTIONS(8567), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8565), + [aux_sym_frm_property_statement_token1] = ACTIONS(8565), + [anon_sym_DOT] = ACTIONS(8565), + [anon_sym_BANG] = ACTIONS(8567), + [aux_sym__attribute_identifier_token1] = ACTIONS(8565), + [aux_sym_option_statement_token3] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8565), + [aux_sym_preprocessor_const_token1] = ACTIONS(8565), + [sym_static_modifier] = ACTIONS(8565), + [sym__dim_keyword] = ACTIONS(8565), + [sym__redim_keyword] = ACTIONS(8565), + [aux_sym_get_accessor_token1] = ACTIONS(8565), + [aux_sym_set_accessor_token1] = ACTIONS(8565), + [anon_sym_COMMA] = ACTIONS(10543), + [aux_sym_const_declaration_token1] = ACTIONS(8565), + [anon_sym_LPAREN] = ACTIONS(8567), + [aux_sym_as_type_clause_token2] = ACTIONS(8565), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8565), + [aux_sym_visibility_token1] = ACTIONS(8565), + [aux_sym_visibility_token2] = ACTIONS(8565), + [aux_sym_elseif_fragment_token1] = ACTIONS(8565), + [aux_sym_else_fragment_token1] = ACTIONS(8565), + [aux_sym_select_statement_token1] = ACTIONS(8565), + [aux_sym__for_header_token1] = ACTIONS(8565), + [aux_sym_do_statement_token1] = ACTIONS(8565), + [aux_sym_do_statement_token2] = ACTIONS(8565), + [aux_sym_do_condition_token1] = ACTIONS(8565), + [aux_sym_with_statement_token1] = ACTIONS(8565), + [aux_sym_exit_statement_token1] = ACTIONS(8565), + [sym_end_statement] = ACTIONS(8567), + [aux_sym_on_goto_statement_token1] = ACTIONS(8565), + [aux_sym_on_goto_statement_token2] = ACTIONS(8565), + [aux_sym_on_error_statement_token2] = ACTIONS(8565), + [sym__ambiguous_redim_statement] = ACTIONS(8567), + [aux_sym_erase_statement_token1] = ACTIONS(8565), + [aux_sym_open_statement_token1] = ACTIONS(8565), + [aux_sym_file_mode_token2] = ACTIONS(8565), + [aux_sym_file_access_token2] = ACTIONS(8565), + [aux_sym_file_lock_token2] = ACTIONS(8565), + [aux_sym_print_statement_token1] = ACTIONS(8565), + [anon_sym_PLUS] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(8565), + [anon_sym_QMARK] = ACTIONS(8567), + [aux_sym_close_statement_token1] = ACTIONS(8565), + [aux_sym_put_statement_token1] = ACTIONS(8565), + [aux_sym_unlock_statement_token1] = ACTIONS(8565), + [aux_sym_seek_statement_token1] = ACTIONS(8565), + [sym_reset_statement] = ACTIONS(8565), + [aux_sym_raise_event_statement_token1] = ACTIONS(8565), + [sym_stop_statement] = ACTIONS(8565), + [sym_beep_statement] = ACTIONS(8565), + [aux_sym_unload_statement_token1] = ACTIONS(8565), + [aux_sym_def_type_statement_token1] = ACTIONS(8565), + [aux_sym_def_type_statement_token2] = ACTIONS(8565), + [aux_sym_def_type_statement_token3] = ACTIONS(8565), + [aux_sym_def_type_statement_token4] = ACTIONS(8565), + [aux_sym_def_type_statement_token5] = ACTIONS(8565), + [aux_sym_def_type_statement_token6] = ACTIONS(8565), + [aux_sym_def_type_statement_token7] = ACTIONS(8565), + [aux_sym_def_type_statement_token8] = ACTIONS(8565), + [aux_sym_def_type_statement_token9] = ACTIONS(8565), + [aux_sym_def_type_statement_token10] = ACTIONS(8565), + [aux_sym_def_type_statement_token11] = ACTIONS(8565), + [aux_sym_def_type_statement_token12] = ACTIONS(8565), + [aux_sym_def_type_statement_token13] = ACTIONS(8565), + [aux_sym_def_type_statement_token14] = ACTIONS(8565), + [aux_sym_call_statement_token1] = ACTIONS(8565), + [sym__ambiguous_call_statement] = ACTIONS(8565), + [aux_sym_addressof_expression_token1] = ACTIONS(8565), + [aux_sym_type_of_expression_token1] = ACTIONS(8565), + [aux_sym_unary_expression_token1] = ACTIONS(8565), + [sym_string_literal] = ACTIONS(8567), + [sym_number_literal] = ACTIONS(8567), + [aux_sym_boolean_literal_token1] = ACTIONS(8565), + [aux_sym_boolean_literal_token2] = ACTIONS(8565), + [sym_nothing_literal] = ACTIONS(8565), + [sym_null_literal] = ACTIONS(8565), + [sym_empty_literal] = ACTIONS(8565), + [sym_date_literal] = ACTIONS(8567), + [anon_sym_POUND] = ACTIONS(8565), + }, + [STATE(5476)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5515), + [sym_identifier] = ACTIONS(8569), + [sym_newline] = ACTIONS(8571), + [anon_sym_COLON] = ACTIONS(8571), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8569), + [aux_sym_frm_property_statement_token1] = ACTIONS(8569), + [anon_sym_DOT] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(8571), + [aux_sym__attribute_identifier_token1] = ACTIONS(8569), + [aux_sym_option_statement_token3] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8569), + [aux_sym_preprocessor_const_token1] = ACTIONS(8569), + [sym_static_modifier] = ACTIONS(8569), + [sym__dim_keyword] = ACTIONS(8569), + [sym__redim_keyword] = ACTIONS(8569), + [aux_sym_get_accessor_token1] = ACTIONS(8569), + [aux_sym_set_accessor_token1] = ACTIONS(8569), + [anon_sym_COMMA] = ACTIONS(10543), + [aux_sym_const_declaration_token1] = ACTIONS(8569), + [anon_sym_LPAREN] = ACTIONS(8571), + [aux_sym_as_type_clause_token2] = ACTIONS(8569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8569), + [aux_sym_visibility_token1] = ACTIONS(8569), + [aux_sym_visibility_token2] = ACTIONS(8569), + [aux_sym_elseif_fragment_token1] = ACTIONS(8569), + [aux_sym_else_fragment_token1] = ACTIONS(8569), + [aux_sym_select_statement_token1] = ACTIONS(8569), + [aux_sym__for_header_token1] = ACTIONS(8569), + [aux_sym_do_statement_token1] = ACTIONS(8569), + [aux_sym_do_statement_token2] = ACTIONS(8569), + [aux_sym_do_condition_token1] = ACTIONS(8569), + [aux_sym_with_statement_token1] = ACTIONS(8569), + [aux_sym_exit_statement_token1] = ACTIONS(8569), + [sym_end_statement] = ACTIONS(8571), + [aux_sym_on_goto_statement_token1] = ACTIONS(8569), + [aux_sym_on_goto_statement_token2] = ACTIONS(8569), + [aux_sym_on_error_statement_token2] = ACTIONS(8569), + [sym__ambiguous_redim_statement] = ACTIONS(8571), + [aux_sym_erase_statement_token1] = ACTIONS(8569), + [aux_sym_open_statement_token1] = ACTIONS(8569), + [aux_sym_file_mode_token2] = ACTIONS(8569), + [aux_sym_file_access_token2] = ACTIONS(8569), + [aux_sym_file_lock_token2] = ACTIONS(8569), + [aux_sym_print_statement_token1] = ACTIONS(8569), + [anon_sym_PLUS] = ACTIONS(8571), + [anon_sym_DASH] = ACTIONS(8569), + [anon_sym_QMARK] = ACTIONS(8571), + [aux_sym_close_statement_token1] = ACTIONS(8569), + [aux_sym_put_statement_token1] = ACTIONS(8569), + [aux_sym_unlock_statement_token1] = ACTIONS(8569), + [aux_sym_seek_statement_token1] = ACTIONS(8569), + [sym_reset_statement] = ACTIONS(8569), + [aux_sym_raise_event_statement_token1] = ACTIONS(8569), + [sym_stop_statement] = ACTIONS(8569), + [sym_beep_statement] = ACTIONS(8569), + [aux_sym_unload_statement_token1] = ACTIONS(8569), + [aux_sym_def_type_statement_token1] = ACTIONS(8569), + [aux_sym_def_type_statement_token2] = ACTIONS(8569), + [aux_sym_def_type_statement_token3] = ACTIONS(8569), + [aux_sym_def_type_statement_token4] = ACTIONS(8569), + [aux_sym_def_type_statement_token5] = ACTIONS(8569), + [aux_sym_def_type_statement_token6] = ACTIONS(8569), + [aux_sym_def_type_statement_token7] = ACTIONS(8569), + [aux_sym_def_type_statement_token8] = ACTIONS(8569), + [aux_sym_def_type_statement_token9] = ACTIONS(8569), + [aux_sym_def_type_statement_token10] = ACTIONS(8569), + [aux_sym_def_type_statement_token11] = ACTIONS(8569), + [aux_sym_def_type_statement_token12] = ACTIONS(8569), + [aux_sym_def_type_statement_token13] = ACTIONS(8569), + [aux_sym_def_type_statement_token14] = ACTIONS(8569), + [aux_sym_call_statement_token1] = ACTIONS(8569), + [sym__ambiguous_call_statement] = ACTIONS(8569), + [aux_sym_addressof_expression_token1] = ACTIONS(8569), + [aux_sym_type_of_expression_token1] = ACTIONS(8569), + [aux_sym_unary_expression_token1] = ACTIONS(8569), + [sym_string_literal] = ACTIONS(8571), + [sym_number_literal] = ACTIONS(8571), + [aux_sym_boolean_literal_token1] = ACTIONS(8569), + [aux_sym_boolean_literal_token2] = ACTIONS(8569), + [sym_nothing_literal] = ACTIONS(8569), + [sym_null_literal] = ACTIONS(8569), + [sym_empty_literal] = ACTIONS(8569), + [sym_date_literal] = ACTIONS(8571), + [anon_sym_POUND] = ACTIONS(8569), + }, + [STATE(5477)] = { + [sym_do_condition] = STATE(6448), + [sym_identifier] = ACTIONS(8170), + [sym_newline] = ACTIONS(8172), + [anon_sym_COLON] = ACTIONS(8172), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8170), + [aux_sym_frm_property_statement_token1] = ACTIONS(8170), + [anon_sym_DOT] = ACTIONS(8170), + [anon_sym_BANG] = ACTIONS(8172), + [aux_sym__attribute_identifier_token1] = ACTIONS(8170), + [aux_sym_option_statement_token3] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8170), + [aux_sym_preprocessor_const_token1] = ACTIONS(8170), + [sym_static_modifier] = ACTIONS(8170), + [sym__dim_keyword] = ACTIONS(8170), + [sym__redim_keyword] = ACTIONS(8170), + [aux_sym_get_accessor_token1] = ACTIONS(8170), + [aux_sym_set_accessor_token1] = ACTIONS(8170), + [aux_sym_const_declaration_token1] = ACTIONS(8170), + [anon_sym_LPAREN] = ACTIONS(8172), + [aux_sym_as_type_clause_token2] = ACTIONS(8170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8170), + [aux_sym_visibility_token1] = ACTIONS(8170), + [aux_sym_visibility_token2] = ACTIONS(8170), + [aux_sym_elseif_fragment_token1] = ACTIONS(8170), + [aux_sym_else_fragment_token1] = ACTIONS(8170), + [aux_sym_select_statement_token1] = ACTIONS(8170), + [aux_sym__for_header_token1] = ACTIONS(8170), + [aux_sym_do_statement_token1] = ACTIONS(8170), + [aux_sym_do_statement_token2] = ACTIONS(8170), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8170), + [aux_sym_exit_statement_token1] = ACTIONS(8170), + [sym_end_statement] = ACTIONS(8172), + [aux_sym_on_goto_statement_token1] = ACTIONS(8170), + [aux_sym_on_goto_statement_token2] = ACTIONS(8170), + [aux_sym_on_error_statement_token2] = ACTIONS(8170), + [sym__ambiguous_redim_statement] = ACTIONS(8172), + [aux_sym_erase_statement_token1] = ACTIONS(8170), + [aux_sym_open_statement_token1] = ACTIONS(8170), + [aux_sym_file_mode_token2] = ACTIONS(8170), + [aux_sym_file_access_token2] = ACTIONS(8170), + [aux_sym_file_lock_token2] = ACTIONS(8170), + [aux_sym_print_statement_token1] = ACTIONS(8170), + [anon_sym_PLUS] = ACTIONS(8172), + [anon_sym_DASH] = ACTIONS(8170), + [anon_sym_QMARK] = ACTIONS(8172), + [aux_sym_close_statement_token1] = ACTIONS(8170), + [aux_sym_put_statement_token1] = ACTIONS(8170), + [aux_sym_unlock_statement_token1] = ACTIONS(8170), + [aux_sym_seek_statement_token1] = ACTIONS(8170), + [sym_reset_statement] = ACTIONS(8170), + [aux_sym_raise_event_statement_token1] = ACTIONS(8170), + [sym_stop_statement] = ACTIONS(8170), + [sym_beep_statement] = ACTIONS(8170), + [aux_sym_unload_statement_token1] = ACTIONS(8170), + [aux_sym_def_type_statement_token1] = ACTIONS(8170), + [aux_sym_def_type_statement_token2] = ACTIONS(8170), + [aux_sym_def_type_statement_token3] = ACTIONS(8170), + [aux_sym_def_type_statement_token4] = ACTIONS(8170), + [aux_sym_def_type_statement_token5] = ACTIONS(8170), + [aux_sym_def_type_statement_token6] = ACTIONS(8170), + [aux_sym_def_type_statement_token7] = ACTIONS(8170), + [aux_sym_def_type_statement_token8] = ACTIONS(8170), + [aux_sym_def_type_statement_token9] = ACTIONS(8170), + [aux_sym_def_type_statement_token10] = ACTIONS(8170), + [aux_sym_def_type_statement_token11] = ACTIONS(8170), + [aux_sym_def_type_statement_token12] = ACTIONS(8170), + [aux_sym_def_type_statement_token13] = ACTIONS(8170), + [aux_sym_def_type_statement_token14] = ACTIONS(8170), + [aux_sym_call_statement_token1] = ACTIONS(8170), + [sym__ambiguous_call_statement] = ACTIONS(8170), + [aux_sym_addressof_expression_token1] = ACTIONS(8170), + [aux_sym_type_of_expression_token1] = ACTIONS(8170), + [aux_sym_unary_expression_token1] = ACTIONS(8170), + [sym_string_literal] = ACTIONS(8172), + [sym_number_literal] = ACTIONS(8172), + [aux_sym_boolean_literal_token1] = ACTIONS(8170), + [aux_sym_boolean_literal_token2] = ACTIONS(8170), + [sym_nothing_literal] = ACTIONS(8170), + [sym_null_literal] = ACTIONS(8170), + [sym_empty_literal] = ACTIONS(8170), + [sym_date_literal] = ACTIONS(8172), + [anon_sym_POUND] = ACTIONS(8170), + }, + [STATE(5478)] = { + [sym_identifier] = ACTIONS(9784), + [sym_newline] = ACTIONS(9786), + [anon_sym_COLON] = ACTIONS(9786), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9784), + [aux_sym_frm_property_statement_token1] = ACTIONS(9784), + [anon_sym_DOT] = ACTIONS(9784), + [anon_sym_BANG] = ACTIONS(9786), + [aux_sym__attribute_identifier_token1] = ACTIONS(9784), + [aux_sym_option_statement_token3] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9784), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9784), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9784), + [aux_sym_preprocessor_const_token1] = ACTIONS(9784), + [sym_static_modifier] = ACTIONS(9784), + [sym__dim_keyword] = ACTIONS(9784), + [sym__redim_keyword] = ACTIONS(9784), + [aux_sym_get_accessor_token1] = ACTIONS(9784), + [aux_sym_set_accessor_token1] = ACTIONS(9784), + [aux_sym_const_declaration_token1] = ACTIONS(9784), + [anon_sym_LPAREN] = ACTIONS(9786), + [aux_sym_as_type_clause_token2] = ACTIONS(9784), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9784), + [aux_sym_visibility_token1] = ACTIONS(9784), + [aux_sym_visibility_token2] = ACTIONS(9784), + [aux_sym_elseif_fragment_token1] = ACTIONS(9784), + [aux_sym_else_fragment_token1] = ACTIONS(9784), + [aux_sym_select_statement_token1] = ACTIONS(9784), + [aux_sym__for_header_token1] = ACTIONS(9784), + [aux_sym_do_statement_token1] = ACTIONS(9784), + [aux_sym_do_condition_token1] = ACTIONS(9784), + [aux_sym_with_statement_token1] = ACTIONS(9784), + [aux_sym_exit_statement_token1] = ACTIONS(9784), + [sym_end_statement] = ACTIONS(9786), + [aux_sym_on_goto_statement_token1] = ACTIONS(9784), + [aux_sym_on_goto_statement_token2] = ACTIONS(9784), + [aux_sym_on_error_statement_token2] = ACTIONS(9784), + [sym__ambiguous_redim_statement] = ACTIONS(9786), + [aux_sym_erase_statement_token1] = ACTIONS(9784), + [aux_sym_open_statement_token1] = ACTIONS(9784), + [aux_sym_file_mode_token2] = ACTIONS(9784), + [aux_sym_file_access_token2] = ACTIONS(9784), + [aux_sym_file_lock_token2] = ACTIONS(9784), + [aux_sym_print_statement_token1] = ACTIONS(9784), + [anon_sym_PLUS] = ACTIONS(9786), + [anon_sym_DASH] = ACTIONS(9784), + [anon_sym_QMARK] = ACTIONS(9786), + [aux_sym_close_statement_token1] = ACTIONS(9784), + [aux_sym_put_statement_token1] = ACTIONS(9784), + [aux_sym_unlock_statement_token1] = ACTIONS(9784), + [aux_sym_seek_statement_token1] = ACTIONS(9784), + [sym_reset_statement] = ACTIONS(9784), + [aux_sym_raise_event_statement_token1] = ACTIONS(9784), + [sym_stop_statement] = ACTIONS(9784), + [sym_beep_statement] = ACTIONS(9784), + [aux_sym_unload_statement_token1] = ACTIONS(9784), + [aux_sym_def_type_statement_token1] = ACTIONS(9784), + [aux_sym_def_type_statement_token2] = ACTIONS(9784), + [aux_sym_def_type_statement_token3] = ACTIONS(9784), + [aux_sym_def_type_statement_token4] = ACTIONS(9784), + [aux_sym_def_type_statement_token5] = ACTIONS(9784), + [aux_sym_def_type_statement_token6] = ACTIONS(9784), + [aux_sym_def_type_statement_token7] = ACTIONS(9784), + [aux_sym_def_type_statement_token8] = ACTIONS(9784), + [aux_sym_def_type_statement_token9] = ACTIONS(9784), + [aux_sym_def_type_statement_token10] = ACTIONS(9784), + [aux_sym_def_type_statement_token11] = ACTIONS(9784), + [aux_sym_def_type_statement_token12] = ACTIONS(9784), + [aux_sym_def_type_statement_token13] = ACTIONS(9784), + [aux_sym_def_type_statement_token14] = ACTIONS(9784), + [aux_sym_call_statement_token1] = ACTIONS(9784), + [sym__ambiguous_call_statement] = ACTIONS(9784), + [aux_sym_addressof_expression_token1] = ACTIONS(9784), + [aux_sym_type_of_expression_token1] = ACTIONS(9784), + [aux_sym_unary_expression_token1] = ACTIONS(9784), + [sym_string_literal] = ACTIONS(9786), + [sym_number_literal] = ACTIONS(9786), + [aux_sym_boolean_literal_token1] = ACTIONS(9784), + [aux_sym_boolean_literal_token2] = ACTIONS(9784), + [sym_nothing_literal] = ACTIONS(9784), + [sym_null_literal] = ACTIONS(9784), + [sym_empty_literal] = ACTIONS(9784), + [sym_date_literal] = ACTIONS(9786), + [anon_sym_POUND] = ACTIONS(9784), + }, + [STATE(5479)] = { + [aux_sym_const_declaration_repeat1] = STATE(5528), + [sym_identifier] = ACTIONS(8573), + [sym_newline] = ACTIONS(8575), + [anon_sym_COLON] = ACTIONS(8575), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8573), + [aux_sym_frm_property_statement_token1] = ACTIONS(8573), + [anon_sym_DOT] = ACTIONS(8573), + [anon_sym_BANG] = ACTIONS(8575), + [aux_sym__attribute_identifier_token1] = ACTIONS(8573), + [aux_sym_option_statement_token3] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8573), + [aux_sym_preprocessor_const_token1] = ACTIONS(8573), + [sym_static_modifier] = ACTIONS(8573), + [sym__dim_keyword] = ACTIONS(8573), + [sym__redim_keyword] = ACTIONS(8573), + [aux_sym_get_accessor_token1] = ACTIONS(8573), + [aux_sym_set_accessor_token1] = ACTIONS(8573), + [anon_sym_COMMA] = ACTIONS(10567), + [aux_sym_const_declaration_token1] = ACTIONS(8573), + [anon_sym_LPAREN] = ACTIONS(8575), + [aux_sym_as_type_clause_token2] = ACTIONS(8573), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8573), + [aux_sym_visibility_token1] = ACTIONS(8573), + [aux_sym_visibility_token2] = ACTIONS(8573), + [aux_sym_elseif_fragment_token1] = ACTIONS(8573), + [aux_sym_else_fragment_token1] = ACTIONS(8573), + [aux_sym_select_statement_token1] = ACTIONS(8573), + [aux_sym__for_header_token1] = ACTIONS(8573), + [aux_sym_do_statement_token1] = ACTIONS(8573), + [aux_sym_do_statement_token2] = ACTIONS(8573), + [aux_sym_do_condition_token1] = ACTIONS(8573), + [aux_sym_with_statement_token1] = ACTIONS(8573), + [aux_sym_exit_statement_token1] = ACTIONS(8573), + [sym_end_statement] = ACTIONS(8575), + [aux_sym_on_goto_statement_token1] = ACTIONS(8573), + [aux_sym_on_goto_statement_token2] = ACTIONS(8573), + [aux_sym_on_error_statement_token2] = ACTIONS(8573), + [sym__ambiguous_redim_statement] = ACTIONS(8575), + [aux_sym_erase_statement_token1] = ACTIONS(8573), + [aux_sym_open_statement_token1] = ACTIONS(8573), + [aux_sym_file_mode_token2] = ACTIONS(8573), + [aux_sym_file_access_token2] = ACTIONS(8573), + [aux_sym_file_lock_token2] = ACTIONS(8573), + [aux_sym_print_statement_token1] = ACTIONS(8573), + [anon_sym_PLUS] = ACTIONS(8575), + [anon_sym_DASH] = ACTIONS(8573), + [anon_sym_QMARK] = ACTIONS(8575), + [aux_sym_close_statement_token1] = ACTIONS(8573), + [aux_sym_put_statement_token1] = ACTIONS(8573), + [aux_sym_unlock_statement_token1] = ACTIONS(8573), + [aux_sym_seek_statement_token1] = ACTIONS(8573), + [sym_reset_statement] = ACTIONS(8573), + [aux_sym_raise_event_statement_token1] = ACTIONS(8573), + [sym_stop_statement] = ACTIONS(8573), + [sym_beep_statement] = ACTIONS(8573), + [aux_sym_unload_statement_token1] = ACTIONS(8573), + [aux_sym_def_type_statement_token1] = ACTIONS(8573), + [aux_sym_def_type_statement_token2] = ACTIONS(8573), + [aux_sym_def_type_statement_token3] = ACTIONS(8573), + [aux_sym_def_type_statement_token4] = ACTIONS(8573), + [aux_sym_def_type_statement_token5] = ACTIONS(8573), + [aux_sym_def_type_statement_token6] = ACTIONS(8573), + [aux_sym_def_type_statement_token7] = ACTIONS(8573), + [aux_sym_def_type_statement_token8] = ACTIONS(8573), + [aux_sym_def_type_statement_token9] = ACTIONS(8573), + [aux_sym_def_type_statement_token10] = ACTIONS(8573), + [aux_sym_def_type_statement_token11] = ACTIONS(8573), + [aux_sym_def_type_statement_token12] = ACTIONS(8573), + [aux_sym_def_type_statement_token13] = ACTIONS(8573), + [aux_sym_def_type_statement_token14] = ACTIONS(8573), + [aux_sym_call_statement_token1] = ACTIONS(8573), + [sym__ambiguous_call_statement] = ACTIONS(8573), + [aux_sym_addressof_expression_token1] = ACTIONS(8573), + [aux_sym_type_of_expression_token1] = ACTIONS(8573), + [aux_sym_unary_expression_token1] = ACTIONS(8573), + [sym_string_literal] = ACTIONS(8575), + [sym_number_literal] = ACTIONS(8575), + [aux_sym_boolean_literal_token1] = ACTIONS(8573), + [aux_sym_boolean_literal_token2] = ACTIONS(8573), + [sym_nothing_literal] = ACTIONS(8573), + [sym_null_literal] = ACTIONS(8573), + [sym_empty_literal] = ACTIONS(8573), + [sym_date_literal] = ACTIONS(8575), + [anon_sym_POUND] = ACTIONS(8573), + }, + [STATE(5480)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_while_statement_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(5481)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_while_statement_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(5482)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_while_statement_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(5483)] = { + [aux_sym_redim_statement_repeat1] = STATE(5527), + [sym_identifier] = ACTIONS(8561), + [sym_newline] = ACTIONS(8563), + [anon_sym_COLON] = ACTIONS(8563), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8561), + [aux_sym_frm_property_statement_token1] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8561), + [anon_sym_BANG] = ACTIONS(8563), + [aux_sym__attribute_identifier_token1] = ACTIONS(8561), + [aux_sym_option_statement_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8561), + [aux_sym_preprocessor_const_token1] = ACTIONS(8561), + [sym_static_modifier] = ACTIONS(8561), + [sym__dim_keyword] = ACTIONS(8561), + [sym__redim_keyword] = ACTIONS(8561), + [aux_sym_get_accessor_token1] = ACTIONS(8561), + [aux_sym_set_accessor_token1] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(10577), + [aux_sym_const_declaration_token1] = ACTIONS(8561), + [anon_sym_LPAREN] = ACTIONS(8563), + [aux_sym_as_type_clause_token2] = ACTIONS(8561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8561), + [aux_sym_visibility_token1] = ACTIONS(8561), + [aux_sym_visibility_token2] = ACTIONS(8561), + [aux_sym_elseif_fragment_token1] = ACTIONS(8561), + [aux_sym_else_fragment_token1] = ACTIONS(8561), + [aux_sym_select_statement_token1] = ACTIONS(8561), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8561), + [aux_sym__for_header_token1] = ACTIONS(8561), + [aux_sym_do_statement_token1] = ACTIONS(8561), + [aux_sym_do_condition_token1] = ACTIONS(8561), + [aux_sym_with_statement_token1] = ACTIONS(8561), + [aux_sym_exit_statement_token1] = ACTIONS(8561), + [sym_end_statement] = ACTIONS(8563), + [aux_sym_on_goto_statement_token1] = ACTIONS(8561), + [aux_sym_on_goto_statement_token2] = ACTIONS(8561), + [aux_sym_on_error_statement_token2] = ACTIONS(8561), + [sym__ambiguous_redim_statement] = ACTIONS(8563), + [aux_sym_erase_statement_token1] = ACTIONS(8561), + [aux_sym_open_statement_token1] = ACTIONS(8561), + [aux_sym_file_mode_token2] = ACTIONS(8561), + [aux_sym_file_access_token2] = ACTIONS(8561), + [aux_sym_file_lock_token2] = ACTIONS(8561), + [aux_sym_print_statement_token1] = ACTIONS(8561), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(8561), + [anon_sym_QMARK] = ACTIONS(8563), + [aux_sym_close_statement_token1] = ACTIONS(8561), + [aux_sym_put_statement_token1] = ACTIONS(8561), + [aux_sym_unlock_statement_token1] = ACTIONS(8561), + [aux_sym_seek_statement_token1] = ACTIONS(8561), + [sym_reset_statement] = ACTIONS(8561), + [aux_sym_raise_event_statement_token1] = ACTIONS(8561), + [sym_stop_statement] = ACTIONS(8561), + [sym_beep_statement] = ACTIONS(8561), + [aux_sym_unload_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token2] = ACTIONS(8561), + [aux_sym_def_type_statement_token3] = ACTIONS(8561), + [aux_sym_def_type_statement_token4] = ACTIONS(8561), + [aux_sym_def_type_statement_token5] = ACTIONS(8561), + [aux_sym_def_type_statement_token6] = ACTIONS(8561), + [aux_sym_def_type_statement_token7] = ACTIONS(8561), + [aux_sym_def_type_statement_token8] = ACTIONS(8561), + [aux_sym_def_type_statement_token9] = ACTIONS(8561), + [aux_sym_def_type_statement_token10] = ACTIONS(8561), + [aux_sym_def_type_statement_token11] = ACTIONS(8561), + [aux_sym_def_type_statement_token12] = ACTIONS(8561), + [aux_sym_def_type_statement_token13] = ACTIONS(8561), + [aux_sym_def_type_statement_token14] = ACTIONS(8561), + [aux_sym_call_statement_token1] = ACTIONS(8561), + [sym__ambiguous_call_statement] = ACTIONS(8561), + [aux_sym_addressof_expression_token1] = ACTIONS(8561), + [aux_sym_type_of_expression_token1] = ACTIONS(8561), + [aux_sym_unary_expression_token1] = ACTIONS(8561), + [sym_string_literal] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8563), + [aux_sym_boolean_literal_token1] = ACTIONS(8561), + [aux_sym_boolean_literal_token2] = ACTIONS(8561), + [sym_nothing_literal] = ACTIONS(8561), + [sym_null_literal] = ACTIONS(8561), + [sym_empty_literal] = ACTIONS(8561), + [sym_date_literal] = ACTIONS(8563), + [anon_sym_POUND] = ACTIONS(8561), + }, + [STATE(5484)] = { + [aux_sym_def_type_statement_repeat1] = STATE(5530), + [sym_identifier] = ACTIONS(8577), + [sym_newline] = ACTIONS(8579), + [anon_sym_COLON] = ACTIONS(8579), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8577), + [aux_sym_frm_property_statement_token1] = ACTIONS(8577), + [anon_sym_DOT] = ACTIONS(8577), + [anon_sym_BANG] = ACTIONS(8579), + [aux_sym__attribute_identifier_token1] = ACTIONS(8577), + [aux_sym_option_statement_token3] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8577), + [aux_sym_preprocessor_const_token1] = ACTIONS(8577), + [sym_static_modifier] = ACTIONS(8577), + [sym__dim_keyword] = ACTIONS(8577), + [sym__redim_keyword] = ACTIONS(8577), + [aux_sym_get_accessor_token1] = ACTIONS(8577), + [aux_sym_set_accessor_token1] = ACTIONS(8577), + [anon_sym_COMMA] = ACTIONS(10626), + [aux_sym_const_declaration_token1] = ACTIONS(8577), + [anon_sym_LPAREN] = ACTIONS(8579), + [aux_sym_as_type_clause_token2] = ACTIONS(8577), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8577), + [aux_sym_visibility_token1] = ACTIONS(8577), + [aux_sym_visibility_token2] = ACTIONS(8577), + [aux_sym_elseif_fragment_token1] = ACTIONS(8577), + [aux_sym_else_fragment_token1] = ACTIONS(8577), + [aux_sym_select_statement_token1] = ACTIONS(8577), + [aux_sym__for_header_token1] = ACTIONS(8577), + [aux_sym_do_statement_token1] = ACTIONS(8577), + [aux_sym_do_statement_token2] = ACTIONS(8577), + [aux_sym_do_condition_token1] = ACTIONS(8577), + [aux_sym_with_statement_token1] = ACTIONS(8577), + [aux_sym_exit_statement_token1] = ACTIONS(8577), + [sym_end_statement] = ACTIONS(8579), + [aux_sym_on_goto_statement_token1] = ACTIONS(8577), + [aux_sym_on_goto_statement_token2] = ACTIONS(8577), + [aux_sym_on_error_statement_token2] = ACTIONS(8577), + [sym__ambiguous_redim_statement] = ACTIONS(8579), + [aux_sym_erase_statement_token1] = ACTIONS(8577), + [aux_sym_open_statement_token1] = ACTIONS(8577), + [aux_sym_file_mode_token2] = ACTIONS(8577), + [aux_sym_file_access_token2] = ACTIONS(8577), + [aux_sym_file_lock_token2] = ACTIONS(8577), + [aux_sym_print_statement_token1] = ACTIONS(8577), + [anon_sym_PLUS] = ACTIONS(8579), + [anon_sym_DASH] = ACTIONS(8577), + [anon_sym_QMARK] = ACTIONS(8579), + [aux_sym_close_statement_token1] = ACTIONS(8577), + [aux_sym_put_statement_token1] = ACTIONS(8577), + [aux_sym_unlock_statement_token1] = ACTIONS(8577), + [aux_sym_seek_statement_token1] = ACTIONS(8577), + [sym_reset_statement] = ACTIONS(8577), + [aux_sym_raise_event_statement_token1] = ACTIONS(8577), + [sym_stop_statement] = ACTIONS(8577), + [sym_beep_statement] = ACTIONS(8577), + [aux_sym_unload_statement_token1] = ACTIONS(8577), + [aux_sym_def_type_statement_token1] = ACTIONS(8577), + [aux_sym_def_type_statement_token2] = ACTIONS(8577), + [aux_sym_def_type_statement_token3] = ACTIONS(8577), + [aux_sym_def_type_statement_token4] = ACTIONS(8577), + [aux_sym_def_type_statement_token5] = ACTIONS(8577), + [aux_sym_def_type_statement_token6] = ACTIONS(8577), + [aux_sym_def_type_statement_token7] = ACTIONS(8577), + [aux_sym_def_type_statement_token8] = ACTIONS(8577), + [aux_sym_def_type_statement_token9] = ACTIONS(8577), + [aux_sym_def_type_statement_token10] = ACTIONS(8577), + [aux_sym_def_type_statement_token11] = ACTIONS(8577), + [aux_sym_def_type_statement_token12] = ACTIONS(8577), + [aux_sym_def_type_statement_token13] = ACTIONS(8577), + [aux_sym_def_type_statement_token14] = ACTIONS(8577), + [aux_sym_call_statement_token1] = ACTIONS(8577), + [sym__ambiguous_call_statement] = ACTIONS(8577), + [aux_sym_addressof_expression_token1] = ACTIONS(8577), + [aux_sym_type_of_expression_token1] = ACTIONS(8577), + [aux_sym_unary_expression_token1] = ACTIONS(8577), + [sym_string_literal] = ACTIONS(8579), + [sym_number_literal] = ACTIONS(8579), + [aux_sym_boolean_literal_token1] = ACTIONS(8577), + [aux_sym_boolean_literal_token2] = ACTIONS(8577), + [sym_nothing_literal] = ACTIONS(8577), + [sym_null_literal] = ACTIONS(8577), + [sym_empty_literal] = ACTIONS(8577), + [sym_date_literal] = ACTIONS(8579), + [anon_sym_POUND] = ACTIONS(8577), + }, + [STATE(5485)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5554), + [sym_identifier] = ACTIONS(8583), + [sym_newline] = ACTIONS(8585), + [anon_sym_COLON] = ACTIONS(8585), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8583), + [aux_sym_frm_property_statement_token1] = ACTIONS(8583), + [anon_sym_DOT] = ACTIONS(8583), + [anon_sym_BANG] = ACTIONS(8585), + [aux_sym__attribute_identifier_token1] = ACTIONS(8583), + [aux_sym_option_statement_token3] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8583), + [aux_sym_preprocessor_const_token1] = ACTIONS(8583), + [sym_static_modifier] = ACTIONS(8583), + [sym__dim_keyword] = ACTIONS(8583), + [sym__redim_keyword] = ACTIONS(8583), + [aux_sym_get_accessor_token1] = ACTIONS(8583), + [aux_sym_set_accessor_token1] = ACTIONS(8583), + [anon_sym_COMMA] = ACTIONS(10543), + [aux_sym_const_declaration_token1] = ACTIONS(8583), + [anon_sym_LPAREN] = ACTIONS(8585), + [aux_sym_as_type_clause_token2] = ACTIONS(8583), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8583), + [aux_sym_visibility_token1] = ACTIONS(8583), + [aux_sym_visibility_token2] = ACTIONS(8583), + [aux_sym_elseif_fragment_token1] = ACTIONS(8583), + [aux_sym_else_fragment_token1] = ACTIONS(8583), + [aux_sym_select_statement_token1] = ACTIONS(8583), + [aux_sym__for_header_token1] = ACTIONS(8583), + [aux_sym_do_statement_token1] = ACTIONS(8583), + [aux_sym_do_statement_token2] = ACTIONS(8583), + [aux_sym_do_condition_token1] = ACTIONS(8583), + [aux_sym_with_statement_token1] = ACTIONS(8583), + [aux_sym_exit_statement_token1] = ACTIONS(8583), + [sym_end_statement] = ACTIONS(8585), + [aux_sym_on_goto_statement_token1] = ACTIONS(8583), + [aux_sym_on_goto_statement_token2] = ACTIONS(8583), + [aux_sym_on_error_statement_token2] = ACTIONS(8583), + [sym__ambiguous_redim_statement] = ACTIONS(8585), + [aux_sym_erase_statement_token1] = ACTIONS(8583), + [aux_sym_open_statement_token1] = ACTIONS(8583), + [aux_sym_file_mode_token2] = ACTIONS(8583), + [aux_sym_file_access_token2] = ACTIONS(8583), + [aux_sym_file_lock_token2] = ACTIONS(8583), + [aux_sym_print_statement_token1] = ACTIONS(8583), + [anon_sym_PLUS] = ACTIONS(8585), + [anon_sym_DASH] = ACTIONS(8583), + [anon_sym_QMARK] = ACTIONS(8585), + [aux_sym_close_statement_token1] = ACTIONS(8583), + [aux_sym_put_statement_token1] = ACTIONS(8583), + [aux_sym_unlock_statement_token1] = ACTIONS(8583), + [aux_sym_seek_statement_token1] = ACTIONS(8583), + [sym_reset_statement] = ACTIONS(8583), + [aux_sym_raise_event_statement_token1] = ACTIONS(8583), + [sym_stop_statement] = ACTIONS(8583), + [sym_beep_statement] = ACTIONS(8583), + [aux_sym_unload_statement_token1] = ACTIONS(8583), + [aux_sym_def_type_statement_token1] = ACTIONS(8583), + [aux_sym_def_type_statement_token2] = ACTIONS(8583), + [aux_sym_def_type_statement_token3] = ACTIONS(8583), + [aux_sym_def_type_statement_token4] = ACTIONS(8583), + [aux_sym_def_type_statement_token5] = ACTIONS(8583), + [aux_sym_def_type_statement_token6] = ACTIONS(8583), + [aux_sym_def_type_statement_token7] = ACTIONS(8583), + [aux_sym_def_type_statement_token8] = ACTIONS(8583), + [aux_sym_def_type_statement_token9] = ACTIONS(8583), + [aux_sym_def_type_statement_token10] = ACTIONS(8583), + [aux_sym_def_type_statement_token11] = ACTIONS(8583), + [aux_sym_def_type_statement_token12] = ACTIONS(8583), + [aux_sym_def_type_statement_token13] = ACTIONS(8583), + [aux_sym_def_type_statement_token14] = ACTIONS(8583), + [aux_sym_call_statement_token1] = ACTIONS(8583), + [sym__ambiguous_call_statement] = ACTIONS(8583), + [aux_sym_addressof_expression_token1] = ACTIONS(8583), + [aux_sym_type_of_expression_token1] = ACTIONS(8583), + [aux_sym_unary_expression_token1] = ACTIONS(8583), + [sym_string_literal] = ACTIONS(8585), + [sym_number_literal] = ACTIONS(8585), + [aux_sym_boolean_literal_token1] = ACTIONS(8583), + [aux_sym_boolean_literal_token2] = ACTIONS(8583), + [sym_nothing_literal] = ACTIONS(8583), + [sym_null_literal] = ACTIONS(8583), + [sym_empty_literal] = ACTIONS(8583), + [sym_date_literal] = ACTIONS(8585), + [anon_sym_POUND] = ACTIONS(8583), + }, + [STATE(5486)] = { + [aux_sym_redim_statement_repeat1] = STATE(5529), + [sym_identifier] = ACTIONS(8561), + [sym_newline] = ACTIONS(8563), + [anon_sym_COLON] = ACTIONS(8563), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8561), + [aux_sym_frm_property_statement_token1] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8561), + [anon_sym_BANG] = ACTIONS(8563), + [aux_sym__attribute_identifier_token1] = ACTIONS(8561), + [aux_sym_option_statement_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8561), + [aux_sym_preprocessor_const_token1] = ACTIONS(8561), + [sym_static_modifier] = ACTIONS(8561), + [sym__dim_keyword] = ACTIONS(8561), + [sym__redim_keyword] = ACTIONS(8561), + [aux_sym_get_accessor_token1] = ACTIONS(8561), + [aux_sym_set_accessor_token1] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(10577), + [aux_sym_const_declaration_token1] = ACTIONS(8561), + [anon_sym_LPAREN] = ACTIONS(8563), + [aux_sym_as_type_clause_token2] = ACTIONS(8561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8561), + [aux_sym_visibility_token1] = ACTIONS(8561), + [aux_sym_visibility_token2] = ACTIONS(8561), + [aux_sym_elseif_fragment_token1] = ACTIONS(8561), + [aux_sym_else_fragment_token1] = ACTIONS(8561), + [aux_sym_select_statement_token1] = ACTIONS(8561), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8561), + [aux_sym__for_header_token1] = ACTIONS(8561), + [aux_sym_do_statement_token1] = ACTIONS(8561), + [aux_sym_do_condition_token1] = ACTIONS(8561), + [aux_sym_with_statement_token1] = ACTIONS(8561), + [aux_sym_exit_statement_token1] = ACTIONS(8561), + [sym_end_statement] = ACTIONS(8563), + [aux_sym_on_goto_statement_token1] = ACTIONS(8561), + [aux_sym_on_goto_statement_token2] = ACTIONS(8561), + [aux_sym_on_error_statement_token2] = ACTIONS(8561), + [sym__ambiguous_redim_statement] = ACTIONS(8563), + [aux_sym_erase_statement_token1] = ACTIONS(8561), + [aux_sym_open_statement_token1] = ACTIONS(8561), + [aux_sym_file_mode_token2] = ACTIONS(8561), + [aux_sym_file_access_token2] = ACTIONS(8561), + [aux_sym_file_lock_token2] = ACTIONS(8561), + [aux_sym_print_statement_token1] = ACTIONS(8561), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(8561), + [anon_sym_QMARK] = ACTIONS(8563), + [aux_sym_close_statement_token1] = ACTIONS(8561), + [aux_sym_put_statement_token1] = ACTIONS(8561), + [aux_sym_unlock_statement_token1] = ACTIONS(8561), + [aux_sym_seek_statement_token1] = ACTIONS(8561), + [sym_reset_statement] = ACTIONS(8561), + [aux_sym_raise_event_statement_token1] = ACTIONS(8561), + [sym_stop_statement] = ACTIONS(8561), + [sym_beep_statement] = ACTIONS(8561), + [aux_sym_unload_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token2] = ACTIONS(8561), + [aux_sym_def_type_statement_token3] = ACTIONS(8561), + [aux_sym_def_type_statement_token4] = ACTIONS(8561), + [aux_sym_def_type_statement_token5] = ACTIONS(8561), + [aux_sym_def_type_statement_token6] = ACTIONS(8561), + [aux_sym_def_type_statement_token7] = ACTIONS(8561), + [aux_sym_def_type_statement_token8] = ACTIONS(8561), + [aux_sym_def_type_statement_token9] = ACTIONS(8561), + [aux_sym_def_type_statement_token10] = ACTIONS(8561), + [aux_sym_def_type_statement_token11] = ACTIONS(8561), + [aux_sym_def_type_statement_token12] = ACTIONS(8561), + [aux_sym_def_type_statement_token13] = ACTIONS(8561), + [aux_sym_def_type_statement_token14] = ACTIONS(8561), + [aux_sym_call_statement_token1] = ACTIONS(8561), + [sym__ambiguous_call_statement] = ACTIONS(8561), + [aux_sym_addressof_expression_token1] = ACTIONS(8561), + [aux_sym_type_of_expression_token1] = ACTIONS(8561), + [aux_sym_unary_expression_token1] = ACTIONS(8561), + [sym_string_literal] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8563), + [aux_sym_boolean_literal_token1] = ACTIONS(8561), + [aux_sym_boolean_literal_token2] = ACTIONS(8561), + [sym_nothing_literal] = ACTIONS(8561), + [sym_null_literal] = ACTIONS(8561), + [sym_empty_literal] = ACTIONS(8561), + [sym_date_literal] = ACTIONS(8563), + [anon_sym_POUND] = ACTIONS(8561), + }, + [STATE(5487)] = { + [sym_identifier] = ACTIONS(8467), + [sym_newline] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8467), + [aux_sym_frm_property_statement_token1] = ACTIONS(8467), + [anon_sym_DOT] = ACTIONS(8467), + [anon_sym_BANG] = ACTIONS(6089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8467), + [aux_sym_option_statement_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8467), + [aux_sym_preprocessor_const_token1] = ACTIONS(8467), + [sym_static_modifier] = ACTIONS(8467), + [sym__dim_keyword] = ACTIONS(8467), + [sym__redim_keyword] = ACTIONS(8467), + [aux_sym_get_accessor_token1] = ACTIONS(8467), + [aux_sym_set_accessor_token1] = ACTIONS(8467), + [anon_sym_COMMA] = ACTIONS(6089), + [aux_sym_const_declaration_token1] = ACTIONS(8467), + [anon_sym_LPAREN] = ACTIONS(6089), + [aux_sym_as_type_clause_token2] = ACTIONS(8467), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8467), + [aux_sym_visibility_token1] = ACTIONS(8467), + [aux_sym_visibility_token2] = ACTIONS(8467), + [aux_sym_elseif_fragment_token1] = ACTIONS(8467), + [aux_sym_else_fragment_token1] = ACTIONS(8467), + [aux_sym_select_statement_token1] = ACTIONS(8467), + [aux_sym_select_statement_token2] = ACTIONS(8467), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8467), + [aux_sym__for_header_token1] = ACTIONS(8467), + [aux_sym_do_statement_token1] = ACTIONS(8467), + [aux_sym_do_condition_token1] = ACTIONS(8467), + [aux_sym_with_statement_token1] = ACTIONS(8467), + [aux_sym_exit_statement_token1] = ACTIONS(8467), + [sym_end_statement] = ACTIONS(6089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8467), + [aux_sym_on_goto_statement_token2] = ACTIONS(8467), + [aux_sym_on_error_statement_token2] = ACTIONS(8467), + [sym__ambiguous_redim_statement] = ACTIONS(6089), + [aux_sym_erase_statement_token1] = ACTIONS(8467), + [aux_sym_open_statement_token1] = ACTIONS(8467), + [aux_sym_file_mode_token2] = ACTIONS(8467), + [aux_sym_file_access_token2] = ACTIONS(8467), + [aux_sym_file_lock_token2] = ACTIONS(8467), + [aux_sym_print_statement_token1] = ACTIONS(8467), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(8467), + [anon_sym_QMARK] = ACTIONS(6089), + [aux_sym_close_statement_token1] = ACTIONS(8467), + [aux_sym_put_statement_token1] = ACTIONS(8467), + [aux_sym_unlock_statement_token1] = ACTIONS(8467), + [aux_sym_seek_statement_token1] = ACTIONS(8467), + [sym_reset_statement] = ACTIONS(8467), + [aux_sym_raise_event_statement_token1] = ACTIONS(8467), + [sym_stop_statement] = ACTIONS(8467), + [sym_beep_statement] = ACTIONS(8467), + [aux_sym_unload_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token2] = ACTIONS(8467), + [aux_sym_def_type_statement_token3] = ACTIONS(8467), + [aux_sym_def_type_statement_token4] = ACTIONS(8467), + [aux_sym_def_type_statement_token5] = ACTIONS(8467), + [aux_sym_def_type_statement_token6] = ACTIONS(8467), + [aux_sym_def_type_statement_token7] = ACTIONS(8467), + [aux_sym_def_type_statement_token8] = ACTIONS(8467), + [aux_sym_def_type_statement_token9] = ACTIONS(8467), + [aux_sym_def_type_statement_token10] = ACTIONS(8467), + [aux_sym_def_type_statement_token11] = ACTIONS(8467), + [aux_sym_def_type_statement_token12] = ACTIONS(8467), + [aux_sym_def_type_statement_token13] = ACTIONS(8467), + [aux_sym_def_type_statement_token14] = ACTIONS(8467), + [aux_sym_call_statement_token1] = ACTIONS(8467), + [sym__ambiguous_call_statement] = ACTIONS(8467), + [aux_sym_addressof_expression_token1] = ACTIONS(8467), + [aux_sym_type_of_expression_token1] = ACTIONS(8467), + [aux_sym_unary_expression_token1] = ACTIONS(8467), + [sym_string_literal] = ACTIONS(6089), + [sym_number_literal] = ACTIONS(6089), + [aux_sym_boolean_literal_token1] = ACTIONS(8467), + [aux_sym_boolean_literal_token2] = ACTIONS(8467), + [sym_nothing_literal] = ACTIONS(8467), + [sym_null_literal] = ACTIONS(8467), + [sym_empty_literal] = ACTIONS(8467), + [sym_date_literal] = ACTIONS(6089), + [anon_sym_POUND] = ACTIONS(8467), + }, + [STATE(5488)] = { + [sym_do_condition] = STATE(6488), + [sym_identifier] = ACTIONS(8170), + [sym_newline] = ACTIONS(8172), + [anon_sym_COLON] = ACTIONS(8172), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8170), + [aux_sym_frm_property_statement_token1] = ACTIONS(8170), + [anon_sym_DOT] = ACTIONS(8170), + [anon_sym_BANG] = ACTIONS(8172), + [aux_sym__attribute_identifier_token1] = ACTIONS(8170), + [aux_sym_option_statement_token3] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8170), + [aux_sym_preprocessor_const_token1] = ACTIONS(8170), + [sym_static_modifier] = ACTIONS(8170), + [sym__dim_keyword] = ACTIONS(8170), + [sym__redim_keyword] = ACTIONS(8170), + [aux_sym_get_accessor_token1] = ACTIONS(8170), + [aux_sym_set_accessor_token1] = ACTIONS(8170), + [aux_sym_const_declaration_token1] = ACTIONS(8170), + [anon_sym_LPAREN] = ACTIONS(8172), + [aux_sym_as_type_clause_token2] = ACTIONS(8170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8170), + [aux_sym_visibility_token1] = ACTIONS(8170), + [aux_sym_visibility_token2] = ACTIONS(8170), + [aux_sym_elseif_fragment_token1] = ACTIONS(8170), + [aux_sym_else_fragment_token1] = ACTIONS(8170), + [aux_sym_select_statement_token1] = ACTIONS(8170), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8170), + [aux_sym__for_header_token1] = ACTIONS(8170), + [aux_sym_do_statement_token1] = ACTIONS(8170), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8170), + [aux_sym_exit_statement_token1] = ACTIONS(8170), + [sym_end_statement] = ACTIONS(8172), + [aux_sym_on_goto_statement_token1] = ACTIONS(8170), + [aux_sym_on_goto_statement_token2] = ACTIONS(8170), + [aux_sym_on_error_statement_token2] = ACTIONS(8170), + [sym__ambiguous_redim_statement] = ACTIONS(8172), + [aux_sym_erase_statement_token1] = ACTIONS(8170), + [aux_sym_open_statement_token1] = ACTIONS(8170), + [aux_sym_file_mode_token2] = ACTIONS(8170), + [aux_sym_file_access_token2] = ACTIONS(8170), + [aux_sym_file_lock_token2] = ACTIONS(8170), + [aux_sym_print_statement_token1] = ACTIONS(8170), + [anon_sym_PLUS] = ACTIONS(8172), + [anon_sym_DASH] = ACTIONS(8170), + [anon_sym_QMARK] = ACTIONS(8172), + [aux_sym_close_statement_token1] = ACTIONS(8170), + [aux_sym_put_statement_token1] = ACTIONS(8170), + [aux_sym_unlock_statement_token1] = ACTIONS(8170), + [aux_sym_seek_statement_token1] = ACTIONS(8170), + [sym_reset_statement] = ACTIONS(8170), + [aux_sym_raise_event_statement_token1] = ACTIONS(8170), + [sym_stop_statement] = ACTIONS(8170), + [sym_beep_statement] = ACTIONS(8170), + [aux_sym_unload_statement_token1] = ACTIONS(8170), + [aux_sym_def_type_statement_token1] = ACTIONS(8170), + [aux_sym_def_type_statement_token2] = ACTIONS(8170), + [aux_sym_def_type_statement_token3] = ACTIONS(8170), + [aux_sym_def_type_statement_token4] = ACTIONS(8170), + [aux_sym_def_type_statement_token5] = ACTIONS(8170), + [aux_sym_def_type_statement_token6] = ACTIONS(8170), + [aux_sym_def_type_statement_token7] = ACTIONS(8170), + [aux_sym_def_type_statement_token8] = ACTIONS(8170), + [aux_sym_def_type_statement_token9] = ACTIONS(8170), + [aux_sym_def_type_statement_token10] = ACTIONS(8170), + [aux_sym_def_type_statement_token11] = ACTIONS(8170), + [aux_sym_def_type_statement_token12] = ACTIONS(8170), + [aux_sym_def_type_statement_token13] = ACTIONS(8170), + [aux_sym_def_type_statement_token14] = ACTIONS(8170), + [aux_sym_call_statement_token1] = ACTIONS(8170), + [sym__ambiguous_call_statement] = ACTIONS(8170), + [aux_sym_addressof_expression_token1] = ACTIONS(8170), + [aux_sym_type_of_expression_token1] = ACTIONS(8170), + [aux_sym_unary_expression_token1] = ACTIONS(8170), + [sym_string_literal] = ACTIONS(8172), + [sym_number_literal] = ACTIONS(8172), + [aux_sym_boolean_literal_token1] = ACTIONS(8170), + [aux_sym_boolean_literal_token2] = ACTIONS(8170), + [sym_nothing_literal] = ACTIONS(8170), + [sym_null_literal] = ACTIONS(8170), + [sym_empty_literal] = ACTIONS(8170), + [sym_date_literal] = ACTIONS(8172), + [anon_sym_POUND] = ACTIONS(8170), + }, + [STATE(5489)] = { + [sym_do_condition] = STATE(6491), + [sym_identifier] = ACTIONS(8140), + [sym_newline] = ACTIONS(8142), + [anon_sym_COLON] = ACTIONS(8142), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8140), + [aux_sym_frm_property_statement_token1] = ACTIONS(8140), + [anon_sym_DOT] = ACTIONS(8140), + [anon_sym_BANG] = ACTIONS(8142), + [aux_sym__attribute_identifier_token1] = ACTIONS(8140), + [aux_sym_option_statement_token3] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8140), + [aux_sym_preprocessor_const_token1] = ACTIONS(8140), + [sym_static_modifier] = ACTIONS(8140), + [sym__dim_keyword] = ACTIONS(8140), + [sym__redim_keyword] = ACTIONS(8140), + [aux_sym_get_accessor_token1] = ACTIONS(8140), + [aux_sym_set_accessor_token1] = ACTIONS(8140), + [aux_sym_const_declaration_token1] = ACTIONS(8140), + [anon_sym_LPAREN] = ACTIONS(8142), + [aux_sym_as_type_clause_token2] = ACTIONS(8140), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8140), + [aux_sym_visibility_token1] = ACTIONS(8140), + [aux_sym_visibility_token2] = ACTIONS(8140), + [aux_sym_elseif_fragment_token1] = ACTIONS(8140), + [aux_sym_else_fragment_token1] = ACTIONS(8140), + [aux_sym_select_statement_token1] = ACTIONS(8140), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8140), + [aux_sym__for_header_token1] = ACTIONS(8140), + [aux_sym_do_statement_token1] = ACTIONS(8140), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8140), + [aux_sym_exit_statement_token1] = ACTIONS(8140), + [sym_end_statement] = ACTIONS(8142), + [aux_sym_on_goto_statement_token1] = ACTIONS(8140), + [aux_sym_on_goto_statement_token2] = ACTIONS(8140), + [aux_sym_on_error_statement_token2] = ACTIONS(8140), + [sym__ambiguous_redim_statement] = ACTIONS(8142), + [aux_sym_erase_statement_token1] = ACTIONS(8140), + [aux_sym_open_statement_token1] = ACTIONS(8140), + [aux_sym_file_mode_token2] = ACTIONS(8140), + [aux_sym_file_access_token2] = ACTIONS(8140), + [aux_sym_file_lock_token2] = ACTIONS(8140), + [aux_sym_print_statement_token1] = ACTIONS(8140), + [anon_sym_PLUS] = ACTIONS(8142), + [anon_sym_DASH] = ACTIONS(8140), + [anon_sym_QMARK] = ACTIONS(8142), + [aux_sym_close_statement_token1] = ACTIONS(8140), + [aux_sym_put_statement_token1] = ACTIONS(8140), + [aux_sym_unlock_statement_token1] = ACTIONS(8140), + [aux_sym_seek_statement_token1] = ACTIONS(8140), + [sym_reset_statement] = ACTIONS(8140), + [aux_sym_raise_event_statement_token1] = ACTIONS(8140), + [sym_stop_statement] = ACTIONS(8140), + [sym_beep_statement] = ACTIONS(8140), + [aux_sym_unload_statement_token1] = ACTIONS(8140), + [aux_sym_def_type_statement_token1] = ACTIONS(8140), + [aux_sym_def_type_statement_token2] = ACTIONS(8140), + [aux_sym_def_type_statement_token3] = ACTIONS(8140), + [aux_sym_def_type_statement_token4] = ACTIONS(8140), + [aux_sym_def_type_statement_token5] = ACTIONS(8140), + [aux_sym_def_type_statement_token6] = ACTIONS(8140), + [aux_sym_def_type_statement_token7] = ACTIONS(8140), + [aux_sym_def_type_statement_token8] = ACTIONS(8140), + [aux_sym_def_type_statement_token9] = ACTIONS(8140), + [aux_sym_def_type_statement_token10] = ACTIONS(8140), + [aux_sym_def_type_statement_token11] = ACTIONS(8140), + [aux_sym_def_type_statement_token12] = ACTIONS(8140), + [aux_sym_def_type_statement_token13] = ACTIONS(8140), + [aux_sym_def_type_statement_token14] = ACTIONS(8140), + [aux_sym_call_statement_token1] = ACTIONS(8140), + [sym__ambiguous_call_statement] = ACTIONS(8140), + [aux_sym_addressof_expression_token1] = ACTIONS(8140), + [aux_sym_type_of_expression_token1] = ACTIONS(8140), + [aux_sym_unary_expression_token1] = ACTIONS(8140), + [sym_string_literal] = ACTIONS(8142), + [sym_number_literal] = ACTIONS(8142), + [aux_sym_boolean_literal_token1] = ACTIONS(8140), + [aux_sym_boolean_literal_token2] = ACTIONS(8140), + [sym_nothing_literal] = ACTIONS(8140), + [sym_null_literal] = ACTIONS(8140), + [sym_empty_literal] = ACTIONS(8140), + [sym_date_literal] = ACTIONS(8142), + [anon_sym_POUND] = ACTIONS(8140), + }, + [STATE(5490)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5289), + [sym_identifier] = ACTIONS(4172), + [sym_newline] = ACTIONS(4170), + [anon_sym_COLON] = ACTIONS(4170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4172), + [aux_sym_frm_property_statement_token1] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [aux_sym__attribute_identifier_token1] = ACTIONS(4172), + [aux_sym_option_statement_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4172), + [aux_sym_preprocessor_const_token1] = ACTIONS(4172), + [sym_static_modifier] = ACTIONS(4172), + [sym__dim_keyword] = ACTIONS(4172), + [sym__redim_keyword] = ACTIONS(4172), + [aux_sym_get_accessor_token1] = ACTIONS(4172), + [aux_sym_set_accessor_token1] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(5158), + [aux_sym_const_declaration_token1] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4170), + [aux_sym_as_type_clause_token2] = ACTIONS(4172), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4172), + [aux_sym_visibility_token1] = ACTIONS(4172), + [aux_sym_visibility_token2] = ACTIONS(4172), + [aux_sym_elseif_fragment_token1] = ACTIONS(4172), + [aux_sym_else_fragment_token1] = ACTIONS(4172), + [aux_sym_select_statement_token1] = ACTIONS(4172), + [aux_sym_select_statement_token2] = ACTIONS(4172), + [aux_sym__for_header_token1] = ACTIONS(4172), + [aux_sym_do_statement_token1] = ACTIONS(4172), + [aux_sym_do_condition_token1] = ACTIONS(4172), + [aux_sym_with_statement_token1] = ACTIONS(4172), + [aux_sym_exit_statement_token1] = ACTIONS(4172), + [sym_end_statement] = ACTIONS(4170), + [aux_sym_on_goto_statement_token1] = ACTIONS(4172), + [aux_sym_on_goto_statement_token2] = ACTIONS(4172), + [aux_sym_on_error_statement_token2] = ACTIONS(4172), + [sym__ambiguous_redim_statement] = ACTIONS(4170), + [aux_sym_erase_statement_token1] = ACTIONS(4172), + [aux_sym_open_statement_token1] = ACTIONS(4172), + [aux_sym_file_mode_token2] = ACTIONS(4172), + [aux_sym_file_access_token2] = ACTIONS(4172), + [aux_sym_file_lock_token2] = ACTIONS(4172), + [aux_sym_print_statement_token1] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4172), + [anon_sym_QMARK] = ACTIONS(4170), + [aux_sym_close_statement_token1] = ACTIONS(4172), + [aux_sym_put_statement_token1] = ACTIONS(4172), + [aux_sym_unlock_statement_token1] = ACTIONS(4172), + [aux_sym_seek_statement_token1] = ACTIONS(4172), + [sym_reset_statement] = ACTIONS(4172), + [aux_sym_raise_event_statement_token1] = ACTIONS(4172), + [sym_stop_statement] = ACTIONS(4172), + [sym_beep_statement] = ACTIONS(4172), + [aux_sym_unload_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token2] = ACTIONS(4172), + [aux_sym_def_type_statement_token3] = ACTIONS(4172), + [aux_sym_def_type_statement_token4] = ACTIONS(4172), + [aux_sym_def_type_statement_token5] = ACTIONS(4172), + [aux_sym_def_type_statement_token6] = ACTIONS(4172), + [aux_sym_def_type_statement_token7] = ACTIONS(4172), + [aux_sym_def_type_statement_token8] = ACTIONS(4172), + [aux_sym_def_type_statement_token9] = ACTIONS(4172), + [aux_sym_def_type_statement_token10] = ACTIONS(4172), + [aux_sym_def_type_statement_token11] = ACTIONS(4172), + [aux_sym_def_type_statement_token12] = ACTIONS(4172), + [aux_sym_def_type_statement_token13] = ACTIONS(4172), + [aux_sym_def_type_statement_token14] = ACTIONS(4172), + [aux_sym_call_statement_token1] = ACTIONS(4172), + [sym__ambiguous_call_statement] = ACTIONS(4172), + [aux_sym_addressof_expression_token1] = ACTIONS(4172), + [aux_sym_type_of_expression_token1] = ACTIONS(4172), + [aux_sym_unary_expression_token1] = ACTIONS(4172), + [sym_string_literal] = ACTIONS(4170), + [sym_number_literal] = ACTIONS(4170), + [aux_sym_boolean_literal_token1] = ACTIONS(4172), + [aux_sym_boolean_literal_token2] = ACTIONS(4172), + [sym_nothing_literal] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4172), + [sym_empty_literal] = ACTIONS(4172), + [sym_date_literal] = ACTIONS(4170), + [anon_sym_POUND] = ACTIONS(4172), + }, + [STATE(5491)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_while_statement_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(5492)] = { + [sym_initializer] = STATE(6834), + [sym_identifier] = ACTIONS(8091), + [sym_newline] = ACTIONS(8093), + [anon_sym_COLON] = ACTIONS(8093), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8091), + [aux_sym_frm_property_statement_token1] = ACTIONS(8091), + [anon_sym_EQ] = ACTIONS(10124), + [anon_sym_DOT] = ACTIONS(8091), + [anon_sym_BANG] = ACTIONS(8093), + [aux_sym__attribute_identifier_token1] = ACTIONS(8091), + [aux_sym_option_statement_token3] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8091), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8091), + [aux_sym_preprocessor_const_token1] = ACTIONS(8091), + [sym_static_modifier] = ACTIONS(8091), + [sym__dim_keyword] = ACTIONS(8091), + [sym__redim_keyword] = ACTIONS(8091), + [aux_sym_get_accessor_token1] = ACTIONS(8091), + [aux_sym_set_accessor_token1] = ACTIONS(8091), + [anon_sym_COMMA] = ACTIONS(8093), + [aux_sym_const_declaration_token1] = ACTIONS(8091), + [anon_sym_LPAREN] = ACTIONS(8093), + [aux_sym_as_type_clause_token2] = ACTIONS(8091), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8091), + [aux_sym_visibility_token1] = ACTIONS(8091), + [aux_sym_visibility_token2] = ACTIONS(8091), + [aux_sym_elseif_fragment_token1] = ACTIONS(8091), + [aux_sym_else_fragment_token1] = ACTIONS(8091), + [aux_sym_select_statement_token1] = ACTIONS(8091), + [aux_sym__for_header_token1] = ACTIONS(8091), + [aux_sym_do_statement_token1] = ACTIONS(8091), + [aux_sym_do_condition_token1] = ACTIONS(8091), + [aux_sym_with_statement_token1] = ACTIONS(8091), + [aux_sym_exit_statement_token1] = ACTIONS(8091), + [sym_end_statement] = ACTIONS(8093), + [aux_sym_on_goto_statement_token1] = ACTIONS(8091), + [aux_sym_on_goto_statement_token2] = ACTIONS(8091), + [aux_sym_on_error_statement_token2] = ACTIONS(8091), + [sym__ambiguous_redim_statement] = ACTIONS(8093), + [aux_sym_erase_statement_token1] = ACTIONS(8091), + [aux_sym_open_statement_token1] = ACTIONS(8091), + [aux_sym_file_mode_token2] = ACTIONS(8091), + [aux_sym_file_access_token2] = ACTIONS(8091), + [aux_sym_file_lock_token2] = ACTIONS(8091), + [aux_sym_print_statement_token1] = ACTIONS(8091), + [anon_sym_PLUS] = ACTIONS(8093), + [anon_sym_DASH] = ACTIONS(8091), + [anon_sym_QMARK] = ACTIONS(8093), + [aux_sym_close_statement_token1] = ACTIONS(8091), + [aux_sym_put_statement_token1] = ACTIONS(8091), + [aux_sym_unlock_statement_token1] = ACTIONS(8091), + [aux_sym_seek_statement_token1] = ACTIONS(8091), + [sym_reset_statement] = ACTIONS(8091), + [aux_sym_raise_event_statement_token1] = ACTIONS(8091), + [sym_stop_statement] = ACTIONS(8091), + [sym_beep_statement] = ACTIONS(8091), + [aux_sym_unload_statement_token1] = ACTIONS(8091), + [aux_sym_def_type_statement_token1] = ACTIONS(8091), + [aux_sym_def_type_statement_token2] = ACTIONS(8091), + [aux_sym_def_type_statement_token3] = ACTIONS(8091), + [aux_sym_def_type_statement_token4] = ACTIONS(8091), + [aux_sym_def_type_statement_token5] = ACTIONS(8091), + [aux_sym_def_type_statement_token6] = ACTIONS(8091), + [aux_sym_def_type_statement_token7] = ACTIONS(8091), + [aux_sym_def_type_statement_token8] = ACTIONS(8091), + [aux_sym_def_type_statement_token9] = ACTIONS(8091), + [aux_sym_def_type_statement_token10] = ACTIONS(8091), + [aux_sym_def_type_statement_token11] = ACTIONS(8091), + [aux_sym_def_type_statement_token12] = ACTIONS(8091), + [aux_sym_def_type_statement_token13] = ACTIONS(8091), + [aux_sym_def_type_statement_token14] = ACTIONS(8091), + [aux_sym_call_statement_token1] = ACTIONS(8091), + [sym__ambiguous_call_statement] = ACTIONS(8091), + [aux_sym_addressof_expression_token1] = ACTIONS(8091), + [aux_sym_type_of_expression_token1] = ACTIONS(8091), + [aux_sym_unary_expression_token1] = ACTIONS(8091), + [sym_string_literal] = ACTIONS(8093), + [sym_number_literal] = ACTIONS(8093), + [aux_sym_boolean_literal_token1] = ACTIONS(8091), + [aux_sym_boolean_literal_token2] = ACTIONS(8091), + [sym_nothing_literal] = ACTIONS(8091), + [sym_null_literal] = ACTIONS(8091), + [sym_empty_literal] = ACTIONS(8091), + [sym_date_literal] = ACTIONS(8093), + [anon_sym_POUND] = ACTIONS(8091), + }, + [STATE(5493)] = { + [aux_sym_close_statement_repeat1] = STATE(5493), + [sym_identifier] = ACTIONS(8443), + [sym_newline] = ACTIONS(8445), + [anon_sym_COLON] = ACTIONS(8445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8443), + [aux_sym_frm_property_statement_token1] = ACTIONS(8443), + [anon_sym_DOT] = ACTIONS(8443), + [anon_sym_BANG] = ACTIONS(8445), + [aux_sym__attribute_identifier_token1] = ACTIONS(8443), + [aux_sym_option_statement_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8443), + [aux_sym_preprocessor_const_token1] = ACTIONS(8443), + [sym_static_modifier] = ACTIONS(8443), + [sym__dim_keyword] = ACTIONS(8443), + [sym__redim_keyword] = ACTIONS(8443), + [aux_sym_get_accessor_token1] = ACTIONS(8443), + [aux_sym_set_accessor_token1] = ACTIONS(8443), + [anon_sym_COMMA] = ACTIONS(10630), + [aux_sym_const_declaration_token1] = ACTIONS(8443), + [anon_sym_LPAREN] = ACTIONS(8445), + [aux_sym_as_type_clause_token2] = ACTIONS(8443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8443), + [aux_sym_visibility_token1] = ACTIONS(8443), + [aux_sym_visibility_token2] = ACTIONS(8443), + [aux_sym_elseif_fragment_token1] = ACTIONS(8443), + [aux_sym_else_fragment_token1] = ACTIONS(8443), + [aux_sym_select_statement_token1] = ACTIONS(8443), + [aux_sym_select_statement_token2] = ACTIONS(8443), + [aux_sym__for_header_token1] = ACTIONS(8443), + [aux_sym_do_statement_token1] = ACTIONS(8443), + [aux_sym_do_condition_token1] = ACTIONS(8443), + [aux_sym_with_statement_token1] = ACTIONS(8443), + [aux_sym_exit_statement_token1] = ACTIONS(8443), + [sym_end_statement] = ACTIONS(8445), + [aux_sym_on_goto_statement_token1] = ACTIONS(8443), + [aux_sym_on_goto_statement_token2] = ACTIONS(8443), + [aux_sym_on_error_statement_token2] = ACTIONS(8443), + [sym__ambiguous_redim_statement] = ACTIONS(8445), + [aux_sym_erase_statement_token1] = ACTIONS(8443), + [aux_sym_open_statement_token1] = ACTIONS(8443), + [aux_sym_file_mode_token2] = ACTIONS(8443), + [aux_sym_file_access_token2] = ACTIONS(8443), + [aux_sym_file_lock_token2] = ACTIONS(8443), + [aux_sym_print_statement_token1] = ACTIONS(8443), + [anon_sym_PLUS] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8443), + [anon_sym_QMARK] = ACTIONS(8445), + [aux_sym_close_statement_token1] = ACTIONS(8443), + [aux_sym_put_statement_token1] = ACTIONS(8443), + [aux_sym_unlock_statement_token1] = ACTIONS(8443), + [aux_sym_seek_statement_token1] = ACTIONS(8443), + [sym_reset_statement] = ACTIONS(8443), + [aux_sym_raise_event_statement_token1] = ACTIONS(8443), + [sym_stop_statement] = ACTIONS(8443), + [sym_beep_statement] = ACTIONS(8443), + [aux_sym_unload_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token2] = ACTIONS(8443), + [aux_sym_def_type_statement_token3] = ACTIONS(8443), + [aux_sym_def_type_statement_token4] = ACTIONS(8443), + [aux_sym_def_type_statement_token5] = ACTIONS(8443), + [aux_sym_def_type_statement_token6] = ACTIONS(8443), + [aux_sym_def_type_statement_token7] = ACTIONS(8443), + [aux_sym_def_type_statement_token8] = ACTIONS(8443), + [aux_sym_def_type_statement_token9] = ACTIONS(8443), + [aux_sym_def_type_statement_token10] = ACTIONS(8443), + [aux_sym_def_type_statement_token11] = ACTIONS(8443), + [aux_sym_def_type_statement_token12] = ACTIONS(8443), + [aux_sym_def_type_statement_token13] = ACTIONS(8443), + [aux_sym_def_type_statement_token14] = ACTIONS(8443), + [aux_sym_call_statement_token1] = ACTIONS(8443), + [sym__ambiguous_call_statement] = ACTIONS(8443), + [aux_sym_addressof_expression_token1] = ACTIONS(8443), + [aux_sym_type_of_expression_token1] = ACTIONS(8443), + [aux_sym_unary_expression_token1] = ACTIONS(8443), + [sym_string_literal] = ACTIONS(8445), + [sym_number_literal] = ACTIONS(8445), + [aux_sym_boolean_literal_token1] = ACTIONS(8443), + [aux_sym_boolean_literal_token2] = ACTIONS(8443), + [sym_nothing_literal] = ACTIONS(8443), + [sym_null_literal] = ACTIONS(8443), + [sym_empty_literal] = ACTIONS(8443), + [sym_date_literal] = ACTIONS(8445), + [anon_sym_POUND] = ACTIONS(8443), + }, + [STATE(5494)] = { + [sym_identifier] = ACTIONS(7968), + [sym_newline] = ACTIONS(7970), + [anon_sym_COLON] = ACTIONS(7970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7968), + [aux_sym_frm_property_statement_token1] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_BANG] = ACTIONS(7970), + [aux_sym__attribute_identifier_token1] = ACTIONS(7968), + [aux_sym_option_statement_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7968), + [aux_sym_preprocessor_const_token1] = ACTIONS(7968), + [sym_static_modifier] = ACTIONS(7968), + [sym__dim_keyword] = ACTIONS(7968), + [sym__redim_keyword] = ACTIONS(7968), + [aux_sym_get_accessor_token1] = ACTIONS(7968), + [aux_sym_set_accessor_token1] = ACTIONS(7968), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_const_declaration_token1] = ACTIONS(7968), + [anon_sym_LPAREN] = ACTIONS(7970), + [aux_sym_as_type_clause_token2] = ACTIONS(7968), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7968), + [aux_sym_visibility_token1] = ACTIONS(7968), + [aux_sym_visibility_token2] = ACTIONS(7968), + [aux_sym_elseif_fragment_token1] = ACTIONS(7968), + [aux_sym_else_fragment_token1] = ACTIONS(7968), + [aux_sym_select_statement_token1] = ACTIONS(7968), + [aux_sym__for_header_token1] = ACTIONS(7968), + [aux_sym_do_statement_token1] = ACTIONS(7968), + [aux_sym_do_statement_token2] = ACTIONS(7968), + [aux_sym_do_condition_token1] = ACTIONS(7968), + [aux_sym_with_statement_token1] = ACTIONS(7968), + [aux_sym_exit_statement_token1] = ACTIONS(7968), + [sym_end_statement] = ACTIONS(7970), + [aux_sym_on_goto_statement_token1] = ACTIONS(7968), + [aux_sym_on_goto_statement_token2] = ACTIONS(7968), + [aux_sym_on_error_statement_token2] = ACTIONS(7968), + [sym__ambiguous_redim_statement] = ACTIONS(7970), + [aux_sym_erase_statement_token1] = ACTIONS(7968), + [aux_sym_open_statement_token1] = ACTIONS(7968), + [aux_sym_file_mode_token2] = ACTIONS(7968), + [aux_sym_file_access_token2] = ACTIONS(7968), + [aux_sym_file_lock_token2] = ACTIONS(7968), + [aux_sym_print_statement_token1] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7970), + [aux_sym_close_statement_token1] = ACTIONS(7968), + [aux_sym_put_statement_token1] = ACTIONS(7968), + [aux_sym_unlock_statement_token1] = ACTIONS(7968), + [aux_sym_seek_statement_token1] = ACTIONS(7968), + [sym_reset_statement] = ACTIONS(7968), + [aux_sym_raise_event_statement_token1] = ACTIONS(7968), + [sym_stop_statement] = ACTIONS(7968), + [sym_beep_statement] = ACTIONS(7968), + [aux_sym_unload_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token2] = ACTIONS(7968), + [aux_sym_def_type_statement_token3] = ACTIONS(7968), + [aux_sym_def_type_statement_token4] = ACTIONS(7968), + [aux_sym_def_type_statement_token5] = ACTIONS(7968), + [aux_sym_def_type_statement_token6] = ACTIONS(7968), + [aux_sym_def_type_statement_token7] = ACTIONS(7968), + [aux_sym_def_type_statement_token8] = ACTIONS(7968), + [aux_sym_def_type_statement_token9] = ACTIONS(7968), + [aux_sym_def_type_statement_token10] = ACTIONS(7968), + [aux_sym_def_type_statement_token11] = ACTIONS(7968), + [aux_sym_def_type_statement_token12] = ACTIONS(7968), + [aux_sym_def_type_statement_token13] = ACTIONS(7968), + [aux_sym_def_type_statement_token14] = ACTIONS(7968), + [aux_sym_call_statement_token1] = ACTIONS(7968), + [sym__ambiguous_call_statement] = ACTIONS(7968), + [aux_sym_addressof_expression_token1] = ACTIONS(7968), + [aux_sym_type_of_expression_token1] = ACTIONS(7968), + [aux_sym_unary_expression_token1] = ACTIONS(7968), + [sym_string_literal] = ACTIONS(7970), + [sym_number_literal] = ACTIONS(7970), + [aux_sym_boolean_literal_token1] = ACTIONS(7968), + [aux_sym_boolean_literal_token2] = ACTIONS(7968), + [sym_nothing_literal] = ACTIONS(7968), + [sym_null_literal] = ACTIONS(7968), + [sym_empty_literal] = ACTIONS(7968), + [sym_date_literal] = ACTIONS(7970), + [anon_sym_POUND] = ACTIONS(7968), + }, + [STATE(5495)] = { + [sym_identifier] = ACTIONS(9020), + [sym_newline] = ACTIONS(9022), + [anon_sym_COLON] = ACTIONS(9022), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9020), + [aux_sym_frm_property_statement_token1] = ACTIONS(9020), + [anon_sym_DOT] = ACTIONS(9020), + [anon_sym_BANG] = ACTIONS(9022), + [aux_sym__attribute_identifier_token1] = ACTIONS(9020), + [aux_sym_option_statement_token3] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9020), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9020), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9020), + [aux_sym_preprocessor_const_token1] = ACTIONS(9020), + [sym_static_modifier] = ACTIONS(9020), + [sym__dim_keyword] = ACTIONS(9020), + [sym__redim_keyword] = ACTIONS(9020), + [aux_sym_get_accessor_token1] = ACTIONS(9020), + [aux_sym_set_accessor_token1] = ACTIONS(9020), + [aux_sym_const_declaration_token1] = ACTIONS(9020), + [anon_sym_LPAREN] = ACTIONS(9022), + [aux_sym_as_type_clause_token2] = ACTIONS(9020), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9020), + [aux_sym_visibility_token1] = ACTIONS(9020), + [aux_sym_visibility_token2] = ACTIONS(9020), + [aux_sym_elseif_fragment_token1] = ACTIONS(9020), + [aux_sym_else_fragment_token1] = ACTIONS(9020), + [aux_sym_select_statement_token1] = ACTIONS(9020), + [aux_sym__for_header_token1] = ACTIONS(9020), + [aux_sym_do_statement_token1] = ACTIONS(9020), + [aux_sym_do_condition_token1] = ACTIONS(9020), + [aux_sym_with_statement_token1] = ACTIONS(9020), + [aux_sym_exit_statement_token1] = ACTIONS(9020), + [sym_end_statement] = ACTIONS(9022), + [aux_sym_on_goto_statement_token1] = ACTIONS(9020), + [aux_sym_on_goto_statement_token2] = ACTIONS(9020), + [aux_sym_on_error_statement_token2] = ACTIONS(9020), + [sym__ambiguous_redim_statement] = ACTIONS(9022), + [aux_sym_erase_statement_token1] = ACTIONS(9020), + [aux_sym_open_statement_token1] = ACTIONS(9020), + [aux_sym_file_mode_token2] = ACTIONS(9020), + [aux_sym_file_access_token2] = ACTIONS(9020), + [aux_sym_file_lock_token2] = ACTIONS(9020), + [aux_sym_print_statement_token1] = ACTIONS(9020), + [anon_sym_PLUS] = ACTIONS(9022), + [anon_sym_DASH] = ACTIONS(9020), + [anon_sym_QMARK] = ACTIONS(9022), + [aux_sym_close_statement_token1] = ACTIONS(9020), + [aux_sym_put_statement_token1] = ACTIONS(9020), + [aux_sym_unlock_statement_token1] = ACTIONS(9020), + [aux_sym_seek_statement_token1] = ACTIONS(9020), + [sym_reset_statement] = ACTIONS(9020), + [aux_sym_raise_event_statement_token1] = ACTIONS(9020), + [sym_stop_statement] = ACTIONS(9020), + [sym_beep_statement] = ACTIONS(9020), + [aux_sym_unload_statement_token1] = ACTIONS(9020), + [aux_sym_def_type_statement_token1] = ACTIONS(9020), + [aux_sym_def_type_statement_token2] = ACTIONS(9020), + [aux_sym_def_type_statement_token3] = ACTIONS(9020), + [aux_sym_def_type_statement_token4] = ACTIONS(9020), + [aux_sym_def_type_statement_token5] = ACTIONS(9020), + [aux_sym_def_type_statement_token6] = ACTIONS(9020), + [aux_sym_def_type_statement_token7] = ACTIONS(9020), + [aux_sym_def_type_statement_token8] = ACTIONS(9020), + [aux_sym_def_type_statement_token9] = ACTIONS(9020), + [aux_sym_def_type_statement_token10] = ACTIONS(9020), + [aux_sym_def_type_statement_token11] = ACTIONS(9020), + [aux_sym_def_type_statement_token12] = ACTIONS(9020), + [aux_sym_def_type_statement_token13] = ACTIONS(9020), + [aux_sym_def_type_statement_token14] = ACTIONS(9020), + [aux_sym_call_statement_token1] = ACTIONS(9020), + [sym__ambiguous_call_statement] = ACTIONS(9020), + [aux_sym_addressof_expression_token1] = ACTIONS(9020), + [aux_sym_type_of_expression_token1] = ACTIONS(9020), + [aux_sym_unary_expression_token1] = ACTIONS(9020), + [sym_string_literal] = ACTIONS(9022), + [sym_number_literal] = ACTIONS(9022), + [aux_sym_boolean_literal_token1] = ACTIONS(9020), + [aux_sym_boolean_literal_token2] = ACTIONS(9020), + [sym_nothing_literal] = ACTIONS(9020), + [sym_null_literal] = ACTIONS(9020), + [sym_empty_literal] = ACTIONS(9020), + [sym_date_literal] = ACTIONS(9022), + [anon_sym_POUND] = ACTIONS(9020), + }, + [STATE(5496)] = { + [aux_sym_erase_statement_repeat1] = STATE(5559), + [sym_identifier] = ACTIONS(8320), + [sym_newline] = ACTIONS(8322), + [anon_sym_COLON] = ACTIONS(8322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8320), + [aux_sym_frm_property_statement_token1] = ACTIONS(8320), + [anon_sym_DOT] = ACTIONS(8320), + [anon_sym_BANG] = ACTIONS(8322), + [aux_sym__attribute_identifier_token1] = ACTIONS(8320), + [aux_sym_option_statement_token3] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8320), + [aux_sym_preprocessor_const_token1] = ACTIONS(8320), + [sym_static_modifier] = ACTIONS(8320), + [sym__dim_keyword] = ACTIONS(8320), + [sym__redim_keyword] = ACTIONS(8320), + [aux_sym_get_accessor_token1] = ACTIONS(8320), + [aux_sym_set_accessor_token1] = ACTIONS(8320), + [anon_sym_COMMA] = ACTIONS(10579), + [aux_sym_const_declaration_token1] = ACTIONS(8320), + [anon_sym_LPAREN] = ACTIONS(8322), + [aux_sym_as_type_clause_token2] = ACTIONS(8320), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8320), + [aux_sym_visibility_token1] = ACTIONS(8320), + [aux_sym_visibility_token2] = ACTIONS(8320), + [aux_sym_elseif_fragment_token1] = ACTIONS(8320), + [aux_sym_else_fragment_token1] = ACTIONS(8320), + [aux_sym_select_statement_token1] = ACTIONS(8320), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8320), + [aux_sym__for_header_token1] = ACTIONS(8320), + [aux_sym_do_statement_token1] = ACTIONS(8320), + [aux_sym_do_condition_token1] = ACTIONS(8320), + [aux_sym_with_statement_token1] = ACTIONS(8320), + [aux_sym_exit_statement_token1] = ACTIONS(8320), + [sym_end_statement] = ACTIONS(8322), + [aux_sym_on_goto_statement_token1] = ACTIONS(8320), + [aux_sym_on_goto_statement_token2] = ACTIONS(8320), + [aux_sym_on_error_statement_token2] = ACTIONS(8320), + [sym__ambiguous_redim_statement] = ACTIONS(8322), + [aux_sym_erase_statement_token1] = ACTIONS(8320), + [aux_sym_open_statement_token1] = ACTIONS(8320), + [aux_sym_file_mode_token2] = ACTIONS(8320), + [aux_sym_file_access_token2] = ACTIONS(8320), + [aux_sym_file_lock_token2] = ACTIONS(8320), + [aux_sym_print_statement_token1] = ACTIONS(8320), + [anon_sym_PLUS] = ACTIONS(8322), + [anon_sym_DASH] = ACTIONS(8320), + [anon_sym_QMARK] = ACTIONS(8322), + [aux_sym_close_statement_token1] = ACTIONS(8320), + [aux_sym_put_statement_token1] = ACTIONS(8320), + [aux_sym_unlock_statement_token1] = ACTIONS(8320), + [aux_sym_seek_statement_token1] = ACTIONS(8320), + [sym_reset_statement] = ACTIONS(8320), + [aux_sym_raise_event_statement_token1] = ACTIONS(8320), + [sym_stop_statement] = ACTIONS(8320), + [sym_beep_statement] = ACTIONS(8320), + [aux_sym_unload_statement_token1] = ACTIONS(8320), + [aux_sym_def_type_statement_token1] = ACTIONS(8320), + [aux_sym_def_type_statement_token2] = ACTIONS(8320), + [aux_sym_def_type_statement_token3] = ACTIONS(8320), + [aux_sym_def_type_statement_token4] = ACTIONS(8320), + [aux_sym_def_type_statement_token5] = ACTIONS(8320), + [aux_sym_def_type_statement_token6] = ACTIONS(8320), + [aux_sym_def_type_statement_token7] = ACTIONS(8320), + [aux_sym_def_type_statement_token8] = ACTIONS(8320), + [aux_sym_def_type_statement_token9] = ACTIONS(8320), + [aux_sym_def_type_statement_token10] = ACTIONS(8320), + [aux_sym_def_type_statement_token11] = ACTIONS(8320), + [aux_sym_def_type_statement_token12] = ACTIONS(8320), + [aux_sym_def_type_statement_token13] = ACTIONS(8320), + [aux_sym_def_type_statement_token14] = ACTIONS(8320), + [aux_sym_call_statement_token1] = ACTIONS(8320), + [sym__ambiguous_call_statement] = ACTIONS(8320), + [aux_sym_addressof_expression_token1] = ACTIONS(8320), + [aux_sym_type_of_expression_token1] = ACTIONS(8320), + [aux_sym_unary_expression_token1] = ACTIONS(8320), + [sym_string_literal] = ACTIONS(8322), + [sym_number_literal] = ACTIONS(8322), + [aux_sym_boolean_literal_token1] = ACTIONS(8320), + [aux_sym_boolean_literal_token2] = ACTIONS(8320), + [sym_nothing_literal] = ACTIONS(8320), + [sym_null_literal] = ACTIONS(8320), + [sym_empty_literal] = ACTIONS(8320), + [sym_date_literal] = ACTIONS(8322), + [anon_sym_POUND] = ACTIONS(8320), + }, + [STATE(5497)] = { + [sym_identifier] = ACTIONS(9024), + [sym_newline] = ACTIONS(9026), + [anon_sym_COLON] = ACTIONS(9026), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9024), + [aux_sym_frm_property_statement_token1] = ACTIONS(9024), + [anon_sym_DOT] = ACTIONS(9024), + [anon_sym_BANG] = ACTIONS(9026), + [aux_sym__attribute_identifier_token1] = ACTIONS(9024), + [aux_sym_option_statement_token3] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9024), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9024), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9024), + [aux_sym_preprocessor_const_token1] = ACTIONS(9024), + [sym_static_modifier] = ACTIONS(9024), + [sym__dim_keyword] = ACTIONS(9024), + [sym__redim_keyword] = ACTIONS(9024), + [aux_sym_get_accessor_token1] = ACTIONS(9024), + [aux_sym_set_accessor_token1] = ACTIONS(9024), + [aux_sym_const_declaration_token1] = ACTIONS(9024), + [anon_sym_LPAREN] = ACTIONS(9026), + [aux_sym_as_type_clause_token2] = ACTIONS(9024), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9024), + [aux_sym_visibility_token1] = ACTIONS(9024), + [aux_sym_visibility_token2] = ACTIONS(9024), + [aux_sym_elseif_fragment_token1] = ACTIONS(9024), + [aux_sym_else_fragment_token1] = ACTIONS(9024), + [aux_sym_select_statement_token1] = ACTIONS(9024), + [aux_sym__for_header_token1] = ACTIONS(9024), + [aux_sym_do_statement_token1] = ACTIONS(9024), + [aux_sym_do_condition_token1] = ACTIONS(9024), + [aux_sym_with_statement_token1] = ACTIONS(9024), + [aux_sym_exit_statement_token1] = ACTIONS(9024), + [sym_end_statement] = ACTIONS(9026), + [aux_sym_on_goto_statement_token1] = ACTIONS(9024), + [aux_sym_on_goto_statement_token2] = ACTIONS(9024), + [aux_sym_on_error_statement_token2] = ACTIONS(9024), + [sym__ambiguous_redim_statement] = ACTIONS(9026), + [aux_sym_erase_statement_token1] = ACTIONS(9024), + [aux_sym_open_statement_token1] = ACTIONS(9024), + [aux_sym_file_mode_token2] = ACTIONS(9024), + [aux_sym_file_access_token2] = ACTIONS(9024), + [aux_sym_file_lock_token2] = ACTIONS(9024), + [aux_sym_print_statement_token1] = ACTIONS(9024), + [anon_sym_PLUS] = ACTIONS(9026), + [anon_sym_DASH] = ACTIONS(9024), + [anon_sym_QMARK] = ACTIONS(9026), + [aux_sym_close_statement_token1] = ACTIONS(9024), + [aux_sym_put_statement_token1] = ACTIONS(9024), + [aux_sym_unlock_statement_token1] = ACTIONS(9024), + [aux_sym_seek_statement_token1] = ACTIONS(9024), + [sym_reset_statement] = ACTIONS(9024), + [aux_sym_raise_event_statement_token1] = ACTIONS(9024), + [sym_stop_statement] = ACTIONS(9024), + [sym_beep_statement] = ACTIONS(9024), + [aux_sym_unload_statement_token1] = ACTIONS(9024), + [aux_sym_def_type_statement_token1] = ACTIONS(9024), + [aux_sym_def_type_statement_token2] = ACTIONS(9024), + [aux_sym_def_type_statement_token3] = ACTIONS(9024), + [aux_sym_def_type_statement_token4] = ACTIONS(9024), + [aux_sym_def_type_statement_token5] = ACTIONS(9024), + [aux_sym_def_type_statement_token6] = ACTIONS(9024), + [aux_sym_def_type_statement_token7] = ACTIONS(9024), + [aux_sym_def_type_statement_token8] = ACTIONS(9024), + [aux_sym_def_type_statement_token9] = ACTIONS(9024), + [aux_sym_def_type_statement_token10] = ACTIONS(9024), + [aux_sym_def_type_statement_token11] = ACTIONS(9024), + [aux_sym_def_type_statement_token12] = ACTIONS(9024), + [aux_sym_def_type_statement_token13] = ACTIONS(9024), + [aux_sym_def_type_statement_token14] = ACTIONS(9024), + [aux_sym_call_statement_token1] = ACTIONS(9024), + [sym__ambiguous_call_statement] = ACTIONS(9024), + [aux_sym_addressof_expression_token1] = ACTIONS(9024), + [aux_sym_type_of_expression_token1] = ACTIONS(9024), + [aux_sym_unary_expression_token1] = ACTIONS(9024), + [sym_string_literal] = ACTIONS(9026), + [sym_number_literal] = ACTIONS(9026), + [aux_sym_boolean_literal_token1] = ACTIONS(9024), + [aux_sym_boolean_literal_token2] = ACTIONS(9024), + [sym_nothing_literal] = ACTIONS(9024), + [sym_null_literal] = ACTIONS(9024), + [sym_empty_literal] = ACTIONS(9024), + [sym_date_literal] = ACTIONS(9026), + [anon_sym_POUND] = ACTIONS(9024), + }, + [STATE(5498)] = { + [aux_sym_redim_statement_repeat1] = STATE(5507), + [sym_identifier] = ACTIONS(8340), + [sym_newline] = ACTIONS(8342), + [anon_sym_COLON] = ACTIONS(8342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8340), + [aux_sym_frm_property_statement_token1] = ACTIONS(8340), + [anon_sym_DOT] = ACTIONS(8340), + [anon_sym_BANG] = ACTIONS(8342), + [aux_sym__attribute_identifier_token1] = ACTIONS(8340), + [aux_sym_option_statement_token3] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8340), + [aux_sym_preprocessor_const_token1] = ACTIONS(8340), + [sym_static_modifier] = ACTIONS(8340), + [sym__dim_keyword] = ACTIONS(8340), + [sym__redim_keyword] = ACTIONS(8340), + [aux_sym_get_accessor_token1] = ACTIONS(8340), + [aux_sym_set_accessor_token1] = ACTIONS(8340), + [anon_sym_COMMA] = ACTIONS(10547), + [aux_sym_const_declaration_token1] = ACTIONS(8340), + [anon_sym_LPAREN] = ACTIONS(8342), + [aux_sym_as_type_clause_token2] = ACTIONS(8340), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8340), + [aux_sym_visibility_token1] = ACTIONS(8340), + [aux_sym_visibility_token2] = ACTIONS(8340), + [aux_sym_elseif_fragment_token1] = ACTIONS(8340), + [aux_sym_else_fragment_token1] = ACTIONS(8340), + [aux_sym_select_statement_token1] = ACTIONS(8340), + [aux_sym__for_header_token1] = ACTIONS(8340), + [aux_sym_do_statement_token1] = ACTIONS(8340), + [aux_sym_do_condition_token1] = ACTIONS(8340), + [aux_sym_with_statement_token1] = ACTIONS(8340), + [aux_sym_exit_statement_token1] = ACTIONS(8340), + [sym_end_statement] = ACTIONS(8342), + [aux_sym_on_goto_statement_token1] = ACTIONS(8340), + [aux_sym_on_goto_statement_token2] = ACTIONS(8340), + [aux_sym_on_error_statement_token2] = ACTIONS(8340), + [sym__ambiguous_redim_statement] = ACTIONS(8342), + [aux_sym_erase_statement_token1] = ACTIONS(8340), + [aux_sym_open_statement_token1] = ACTIONS(8340), + [aux_sym_file_mode_token2] = ACTIONS(8340), + [aux_sym_file_access_token2] = ACTIONS(8340), + [aux_sym_file_lock_token2] = ACTIONS(8340), + [aux_sym_print_statement_token1] = ACTIONS(8340), + [anon_sym_PLUS] = ACTIONS(8342), + [anon_sym_DASH] = ACTIONS(8340), + [anon_sym_QMARK] = ACTIONS(8342), + [aux_sym_close_statement_token1] = ACTIONS(8340), + [aux_sym_put_statement_token1] = ACTIONS(8340), + [aux_sym_unlock_statement_token1] = ACTIONS(8340), + [aux_sym_seek_statement_token1] = ACTIONS(8340), + [sym_reset_statement] = ACTIONS(8340), + [aux_sym_raise_event_statement_token1] = ACTIONS(8340), + [sym_stop_statement] = ACTIONS(8340), + [sym_beep_statement] = ACTIONS(8340), + [aux_sym_unload_statement_token1] = ACTIONS(8340), + [aux_sym_def_type_statement_token1] = ACTIONS(8340), + [aux_sym_def_type_statement_token2] = ACTIONS(8340), + [aux_sym_def_type_statement_token3] = ACTIONS(8340), + [aux_sym_def_type_statement_token4] = ACTIONS(8340), + [aux_sym_def_type_statement_token5] = ACTIONS(8340), + [aux_sym_def_type_statement_token6] = ACTIONS(8340), + [aux_sym_def_type_statement_token7] = ACTIONS(8340), + [aux_sym_def_type_statement_token8] = ACTIONS(8340), + [aux_sym_def_type_statement_token9] = ACTIONS(8340), + [aux_sym_def_type_statement_token10] = ACTIONS(8340), + [aux_sym_def_type_statement_token11] = ACTIONS(8340), + [aux_sym_def_type_statement_token12] = ACTIONS(8340), + [aux_sym_def_type_statement_token13] = ACTIONS(8340), + [aux_sym_def_type_statement_token14] = ACTIONS(8340), + [aux_sym_call_statement_token1] = ACTIONS(8340), + [sym__ambiguous_call_statement] = ACTIONS(8340), + [aux_sym_addressof_expression_token1] = ACTIONS(8340), + [aux_sym_type_of_expression_token1] = ACTIONS(8340), + [aux_sym_unary_expression_token1] = ACTIONS(8340), + [sym_string_literal] = ACTIONS(8342), + [sym_number_literal] = ACTIONS(8342), + [aux_sym_boolean_literal_token1] = ACTIONS(8340), + [aux_sym_boolean_literal_token2] = ACTIONS(8340), + [sym_nothing_literal] = ACTIONS(8340), + [sym_null_literal] = ACTIONS(8340), + [sym_empty_literal] = ACTIONS(8340), + [sym_date_literal] = ACTIONS(8342), + [anon_sym_POUND] = ACTIONS(8340), + }, + [STATE(5499)] = { + [sym_identifier] = ACTIONS(9044), + [sym_newline] = ACTIONS(9046), + [anon_sym_COLON] = ACTIONS(9046), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9044), + [aux_sym_frm_property_statement_token1] = ACTIONS(9044), + [anon_sym_DOT] = ACTIONS(9044), + [anon_sym_BANG] = ACTIONS(9046), + [aux_sym__attribute_identifier_token1] = ACTIONS(9044), + [aux_sym_option_statement_token3] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9044), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9044), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9044), + [aux_sym_preprocessor_const_token1] = ACTIONS(9044), + [sym_static_modifier] = ACTIONS(9044), + [sym__dim_keyword] = ACTIONS(9044), + [sym__redim_keyword] = ACTIONS(9044), + [aux_sym_get_accessor_token1] = ACTIONS(9044), + [aux_sym_set_accessor_token1] = ACTIONS(9044), + [aux_sym_const_declaration_token1] = ACTIONS(9044), + [anon_sym_LPAREN] = ACTIONS(9046), + [aux_sym_as_type_clause_token2] = ACTIONS(9044), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9044), + [aux_sym_visibility_token1] = ACTIONS(9044), + [aux_sym_visibility_token2] = ACTIONS(9044), + [aux_sym_elseif_fragment_token1] = ACTIONS(9044), + [aux_sym_else_fragment_token1] = ACTIONS(9044), + [aux_sym_select_statement_token1] = ACTIONS(9044), + [aux_sym__for_header_token1] = ACTIONS(9044), + [aux_sym_do_statement_token1] = ACTIONS(9044), + [aux_sym_do_condition_token1] = ACTIONS(9044), + [aux_sym_with_statement_token1] = ACTIONS(9044), + [aux_sym_exit_statement_token1] = ACTIONS(9044), + [sym_end_statement] = ACTIONS(9046), + [aux_sym_on_goto_statement_token1] = ACTIONS(9044), + [aux_sym_on_goto_statement_token2] = ACTIONS(9044), + [aux_sym_on_error_statement_token2] = ACTIONS(9044), + [sym__ambiguous_redim_statement] = ACTIONS(9046), + [aux_sym_erase_statement_token1] = ACTIONS(9044), + [aux_sym_open_statement_token1] = ACTIONS(9044), + [aux_sym_file_mode_token2] = ACTIONS(9044), + [aux_sym_file_access_token2] = ACTIONS(9044), + [aux_sym_file_lock_token2] = ACTIONS(9044), + [aux_sym_print_statement_token1] = ACTIONS(9044), + [anon_sym_PLUS] = ACTIONS(9046), + [anon_sym_DASH] = ACTIONS(9044), + [anon_sym_QMARK] = ACTIONS(9046), + [aux_sym_close_statement_token1] = ACTIONS(9044), + [aux_sym_put_statement_token1] = ACTIONS(9044), + [aux_sym_unlock_statement_token1] = ACTIONS(9044), + [aux_sym_seek_statement_token1] = ACTIONS(9044), + [sym_reset_statement] = ACTIONS(9044), + [aux_sym_raise_event_statement_token1] = ACTIONS(9044), + [sym_stop_statement] = ACTIONS(9044), + [sym_beep_statement] = ACTIONS(9044), + [aux_sym_unload_statement_token1] = ACTIONS(9044), + [aux_sym_def_type_statement_token1] = ACTIONS(9044), + [aux_sym_def_type_statement_token2] = ACTIONS(9044), + [aux_sym_def_type_statement_token3] = ACTIONS(9044), + [aux_sym_def_type_statement_token4] = ACTIONS(9044), + [aux_sym_def_type_statement_token5] = ACTIONS(9044), + [aux_sym_def_type_statement_token6] = ACTIONS(9044), + [aux_sym_def_type_statement_token7] = ACTIONS(9044), + [aux_sym_def_type_statement_token8] = ACTIONS(9044), + [aux_sym_def_type_statement_token9] = ACTIONS(9044), + [aux_sym_def_type_statement_token10] = ACTIONS(9044), + [aux_sym_def_type_statement_token11] = ACTIONS(9044), + [aux_sym_def_type_statement_token12] = ACTIONS(9044), + [aux_sym_def_type_statement_token13] = ACTIONS(9044), + [aux_sym_def_type_statement_token14] = ACTIONS(9044), + [aux_sym_call_statement_token1] = ACTIONS(9044), + [sym__ambiguous_call_statement] = ACTIONS(9044), + [aux_sym_addressof_expression_token1] = ACTIONS(9044), + [aux_sym_type_of_expression_token1] = ACTIONS(9044), + [aux_sym_unary_expression_token1] = ACTIONS(9044), + [sym_string_literal] = ACTIONS(9046), + [sym_number_literal] = ACTIONS(9046), + [aux_sym_boolean_literal_token1] = ACTIONS(9044), + [aux_sym_boolean_literal_token2] = ACTIONS(9044), + [sym_nothing_literal] = ACTIONS(9044), + [sym_null_literal] = ACTIONS(9044), + [sym_empty_literal] = ACTIONS(9044), + [sym_date_literal] = ACTIONS(9046), + [anon_sym_POUND] = ACTIONS(9044), + }, + [STATE(5500)] = { + [sym_identifier] = ACTIONS(9048), + [sym_newline] = ACTIONS(9050), + [anon_sym_COLON] = ACTIONS(9050), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9048), + [aux_sym_frm_property_statement_token1] = ACTIONS(9048), + [anon_sym_DOT] = ACTIONS(9048), + [anon_sym_BANG] = ACTIONS(9050), + [aux_sym__attribute_identifier_token1] = ACTIONS(9048), + [aux_sym_option_statement_token3] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9048), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9048), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9048), + [aux_sym_preprocessor_const_token1] = ACTIONS(9048), + [sym_static_modifier] = ACTIONS(9048), + [sym__dim_keyword] = ACTIONS(9048), + [sym__redim_keyword] = ACTIONS(9048), + [aux_sym_get_accessor_token1] = ACTIONS(9048), + [aux_sym_set_accessor_token1] = ACTIONS(9048), + [aux_sym_const_declaration_token1] = ACTIONS(9048), + [anon_sym_LPAREN] = ACTIONS(9050), + [aux_sym_as_type_clause_token2] = ACTIONS(9048), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9048), + [aux_sym_visibility_token1] = ACTIONS(9048), + [aux_sym_visibility_token2] = ACTIONS(9048), + [aux_sym_elseif_fragment_token1] = ACTIONS(9048), + [aux_sym_else_fragment_token1] = ACTIONS(9048), + [aux_sym_select_statement_token1] = ACTIONS(9048), + [aux_sym__for_header_token1] = ACTIONS(9048), + [aux_sym_do_statement_token1] = ACTIONS(9048), + [aux_sym_do_condition_token1] = ACTIONS(9048), + [aux_sym_with_statement_token1] = ACTIONS(9048), + [aux_sym_exit_statement_token1] = ACTIONS(9048), + [sym_end_statement] = ACTIONS(9050), + [aux_sym_on_goto_statement_token1] = ACTIONS(9048), + [aux_sym_on_goto_statement_token2] = ACTIONS(9048), + [aux_sym_on_error_statement_token2] = ACTIONS(9048), + [sym__ambiguous_redim_statement] = ACTIONS(9050), + [aux_sym_erase_statement_token1] = ACTIONS(9048), + [aux_sym_open_statement_token1] = ACTIONS(9048), + [aux_sym_file_mode_token2] = ACTIONS(9048), + [aux_sym_file_access_token2] = ACTIONS(9048), + [aux_sym_file_lock_token2] = ACTIONS(9048), + [aux_sym_print_statement_token1] = ACTIONS(9048), + [anon_sym_PLUS] = ACTIONS(9050), + [anon_sym_DASH] = ACTIONS(9048), + [anon_sym_QMARK] = ACTIONS(9050), + [aux_sym_close_statement_token1] = ACTIONS(9048), + [aux_sym_put_statement_token1] = ACTIONS(9048), + [aux_sym_unlock_statement_token1] = ACTIONS(9048), + [aux_sym_seek_statement_token1] = ACTIONS(9048), + [sym_reset_statement] = ACTIONS(9048), + [aux_sym_raise_event_statement_token1] = ACTIONS(9048), + [sym_stop_statement] = ACTIONS(9048), + [sym_beep_statement] = ACTIONS(9048), + [aux_sym_unload_statement_token1] = ACTIONS(9048), + [aux_sym_def_type_statement_token1] = ACTIONS(9048), + [aux_sym_def_type_statement_token2] = ACTIONS(9048), + [aux_sym_def_type_statement_token3] = ACTIONS(9048), + [aux_sym_def_type_statement_token4] = ACTIONS(9048), + [aux_sym_def_type_statement_token5] = ACTIONS(9048), + [aux_sym_def_type_statement_token6] = ACTIONS(9048), + [aux_sym_def_type_statement_token7] = ACTIONS(9048), + [aux_sym_def_type_statement_token8] = ACTIONS(9048), + [aux_sym_def_type_statement_token9] = ACTIONS(9048), + [aux_sym_def_type_statement_token10] = ACTIONS(9048), + [aux_sym_def_type_statement_token11] = ACTIONS(9048), + [aux_sym_def_type_statement_token12] = ACTIONS(9048), + [aux_sym_def_type_statement_token13] = ACTIONS(9048), + [aux_sym_def_type_statement_token14] = ACTIONS(9048), + [aux_sym_call_statement_token1] = ACTIONS(9048), + [sym__ambiguous_call_statement] = ACTIONS(9048), + [aux_sym_addressof_expression_token1] = ACTIONS(9048), + [aux_sym_type_of_expression_token1] = ACTIONS(9048), + [aux_sym_unary_expression_token1] = ACTIONS(9048), + [sym_string_literal] = ACTIONS(9050), + [sym_number_literal] = ACTIONS(9050), + [aux_sym_boolean_literal_token1] = ACTIONS(9048), + [aux_sym_boolean_literal_token2] = ACTIONS(9048), + [sym_nothing_literal] = ACTIONS(9048), + [sym_null_literal] = ACTIONS(9048), + [sym_empty_literal] = ACTIONS(9048), + [sym_date_literal] = ACTIONS(9050), + [anon_sym_POUND] = ACTIONS(9048), + }, + [STATE(5501)] = { + [sym_identifier] = ACTIONS(8988), + [sym_newline] = ACTIONS(8990), + [anon_sym_COLON] = ACTIONS(8990), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8988), + [aux_sym_frm_property_statement_token1] = ACTIONS(8988), + [anon_sym_DOT] = ACTIONS(8988), + [anon_sym_BANG] = ACTIONS(8990), + [aux_sym__attribute_identifier_token1] = ACTIONS(8988), + [aux_sym_option_statement_token3] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8988), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8988), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8988), + [aux_sym_preprocessor_const_token1] = ACTIONS(8988), + [sym_static_modifier] = ACTIONS(8988), + [sym__dim_keyword] = ACTIONS(8988), + [sym__redim_keyword] = ACTIONS(8988), + [aux_sym_get_accessor_token1] = ACTIONS(8988), + [aux_sym_set_accessor_token1] = ACTIONS(8988), + [aux_sym_const_declaration_token1] = ACTIONS(8988), + [anon_sym_LPAREN] = ACTIONS(8990), + [aux_sym_as_type_clause_token2] = ACTIONS(8988), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8988), + [aux_sym_visibility_token1] = ACTIONS(8988), + [aux_sym_visibility_token2] = ACTIONS(8988), + [aux_sym_elseif_fragment_token1] = ACTIONS(8988), + [aux_sym_else_fragment_token1] = ACTIONS(8988), + [aux_sym_select_statement_token1] = ACTIONS(8988), + [aux_sym__for_header_token1] = ACTIONS(8988), + [aux_sym_do_statement_token1] = ACTIONS(8988), + [aux_sym_do_condition_token1] = ACTIONS(8988), + [aux_sym_with_statement_token1] = ACTIONS(8988), + [aux_sym_exit_statement_token1] = ACTIONS(8988), + [sym_end_statement] = ACTIONS(8990), + [aux_sym_on_goto_statement_token1] = ACTIONS(8988), + [aux_sym_on_goto_statement_token2] = ACTIONS(8988), + [aux_sym_on_error_statement_token2] = ACTIONS(8988), + [sym__ambiguous_redim_statement] = ACTIONS(8990), + [aux_sym_erase_statement_token1] = ACTIONS(8988), + [aux_sym_open_statement_token1] = ACTIONS(8988), + [aux_sym_file_mode_token2] = ACTIONS(8988), + [aux_sym_file_access_token2] = ACTIONS(8988), + [aux_sym_file_lock_token2] = ACTIONS(8988), + [aux_sym_print_statement_token1] = ACTIONS(8988), + [anon_sym_PLUS] = ACTIONS(8990), + [anon_sym_DASH] = ACTIONS(8988), + [anon_sym_QMARK] = ACTIONS(8990), + [aux_sym_close_statement_token1] = ACTIONS(8988), + [aux_sym_put_statement_token1] = ACTIONS(8988), + [aux_sym_unlock_statement_token1] = ACTIONS(8988), + [aux_sym_seek_statement_token1] = ACTIONS(8988), + [sym_reset_statement] = ACTIONS(8988), + [aux_sym_raise_event_statement_token1] = ACTIONS(8988), + [sym_stop_statement] = ACTIONS(8988), + [sym_beep_statement] = ACTIONS(8988), + [aux_sym_unload_statement_token1] = ACTIONS(8988), + [aux_sym_def_type_statement_token1] = ACTIONS(8988), + [aux_sym_def_type_statement_token2] = ACTIONS(8988), + [aux_sym_def_type_statement_token3] = ACTIONS(8988), + [aux_sym_def_type_statement_token4] = ACTIONS(8988), + [aux_sym_def_type_statement_token5] = ACTIONS(8988), + [aux_sym_def_type_statement_token6] = ACTIONS(8988), + [aux_sym_def_type_statement_token7] = ACTIONS(8988), + [aux_sym_def_type_statement_token8] = ACTIONS(8988), + [aux_sym_def_type_statement_token9] = ACTIONS(8988), + [aux_sym_def_type_statement_token10] = ACTIONS(8988), + [aux_sym_def_type_statement_token11] = ACTIONS(8988), + [aux_sym_def_type_statement_token12] = ACTIONS(8988), + [aux_sym_def_type_statement_token13] = ACTIONS(8988), + [aux_sym_def_type_statement_token14] = ACTIONS(8988), + [aux_sym_call_statement_token1] = ACTIONS(8988), + [sym__ambiguous_call_statement] = ACTIONS(8988), + [aux_sym_addressof_expression_token1] = ACTIONS(8988), + [aux_sym_type_of_expression_token1] = ACTIONS(8988), + [aux_sym_unary_expression_token1] = ACTIONS(8988), + [sym_string_literal] = ACTIONS(8990), + [sym_number_literal] = ACTIONS(8990), + [aux_sym_boolean_literal_token1] = ACTIONS(8988), + [aux_sym_boolean_literal_token2] = ACTIONS(8988), + [sym_nothing_literal] = ACTIONS(8988), + [sym_null_literal] = ACTIONS(8988), + [sym_empty_literal] = ACTIONS(8988), + [sym_date_literal] = ACTIONS(8990), + [anon_sym_POUND] = ACTIONS(8988), + }, + [STATE(5502)] = { + [aux_sym_redim_statement_repeat1] = STATE(5563), + [sym_identifier] = ACTIONS(8340), + [sym_newline] = ACTIONS(8342), + [anon_sym_COLON] = ACTIONS(8342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8340), + [aux_sym_frm_property_statement_token1] = ACTIONS(8340), + [anon_sym_DOT] = ACTIONS(8340), + [anon_sym_BANG] = ACTIONS(8342), + [aux_sym__attribute_identifier_token1] = ACTIONS(8340), + [aux_sym_option_statement_token3] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8340), + [aux_sym_preprocessor_const_token1] = ACTIONS(8340), + [sym_static_modifier] = ACTIONS(8340), + [sym__dim_keyword] = ACTIONS(8340), + [sym__redim_keyword] = ACTIONS(8340), + [aux_sym_get_accessor_token1] = ACTIONS(8340), + [aux_sym_set_accessor_token1] = ACTIONS(8340), + [anon_sym_COMMA] = ACTIONS(10624), + [aux_sym_const_declaration_token1] = ACTIONS(8340), + [anon_sym_LPAREN] = ACTIONS(8342), + [aux_sym_as_type_clause_token2] = ACTIONS(8340), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8340), + [aux_sym_visibility_token1] = ACTIONS(8340), + [aux_sym_visibility_token2] = ACTIONS(8340), + [aux_sym_elseif_fragment_token1] = ACTIONS(8340), + [aux_sym_else_fragment_token1] = ACTIONS(8340), + [aux_sym_select_statement_token1] = ACTIONS(8340), + [aux_sym__for_header_token1] = ACTIONS(8340), + [aux_sym_do_statement_token1] = ACTIONS(8340), + [aux_sym_do_statement_token2] = ACTIONS(8340), + [aux_sym_do_condition_token1] = ACTIONS(8340), + [aux_sym_with_statement_token1] = ACTIONS(8340), + [aux_sym_exit_statement_token1] = ACTIONS(8340), + [sym_end_statement] = ACTIONS(8342), + [aux_sym_on_goto_statement_token1] = ACTIONS(8340), + [aux_sym_on_goto_statement_token2] = ACTIONS(8340), + [aux_sym_on_error_statement_token2] = ACTIONS(8340), + [sym__ambiguous_redim_statement] = ACTIONS(8342), + [aux_sym_erase_statement_token1] = ACTIONS(8340), + [aux_sym_open_statement_token1] = ACTIONS(8340), + [aux_sym_file_mode_token2] = ACTIONS(8340), + [aux_sym_file_access_token2] = ACTIONS(8340), + [aux_sym_file_lock_token2] = ACTIONS(8340), + [aux_sym_print_statement_token1] = ACTIONS(8340), + [anon_sym_PLUS] = ACTIONS(8342), + [anon_sym_DASH] = ACTIONS(8340), + [anon_sym_QMARK] = ACTIONS(8342), + [aux_sym_close_statement_token1] = ACTIONS(8340), + [aux_sym_put_statement_token1] = ACTIONS(8340), + [aux_sym_unlock_statement_token1] = ACTIONS(8340), + [aux_sym_seek_statement_token1] = ACTIONS(8340), + [sym_reset_statement] = ACTIONS(8340), + [aux_sym_raise_event_statement_token1] = ACTIONS(8340), + [sym_stop_statement] = ACTIONS(8340), + [sym_beep_statement] = ACTIONS(8340), + [aux_sym_unload_statement_token1] = ACTIONS(8340), + [aux_sym_def_type_statement_token1] = ACTIONS(8340), + [aux_sym_def_type_statement_token2] = ACTIONS(8340), + [aux_sym_def_type_statement_token3] = ACTIONS(8340), + [aux_sym_def_type_statement_token4] = ACTIONS(8340), + [aux_sym_def_type_statement_token5] = ACTIONS(8340), + [aux_sym_def_type_statement_token6] = ACTIONS(8340), + [aux_sym_def_type_statement_token7] = ACTIONS(8340), + [aux_sym_def_type_statement_token8] = ACTIONS(8340), + [aux_sym_def_type_statement_token9] = ACTIONS(8340), + [aux_sym_def_type_statement_token10] = ACTIONS(8340), + [aux_sym_def_type_statement_token11] = ACTIONS(8340), + [aux_sym_def_type_statement_token12] = ACTIONS(8340), + [aux_sym_def_type_statement_token13] = ACTIONS(8340), + [aux_sym_def_type_statement_token14] = ACTIONS(8340), + [aux_sym_call_statement_token1] = ACTIONS(8340), + [sym__ambiguous_call_statement] = ACTIONS(8340), + [aux_sym_addressof_expression_token1] = ACTIONS(8340), + [aux_sym_type_of_expression_token1] = ACTIONS(8340), + [aux_sym_unary_expression_token1] = ACTIONS(8340), + [sym_string_literal] = ACTIONS(8342), + [sym_number_literal] = ACTIONS(8342), + [aux_sym_boolean_literal_token1] = ACTIONS(8340), + [aux_sym_boolean_literal_token2] = ACTIONS(8340), + [sym_nothing_literal] = ACTIONS(8340), + [sym_null_literal] = ACTIONS(8340), + [sym_empty_literal] = ACTIONS(8340), + [sym_date_literal] = ACTIONS(8342), + [anon_sym_POUND] = ACTIONS(8340), + }, + [STATE(5503)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5503), + [sym_identifier] = ACTIONS(8287), + [sym_newline] = ACTIONS(8289), + [anon_sym_COLON] = ACTIONS(8289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8287), + [aux_sym_frm_property_statement_token1] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8287), + [anon_sym_BANG] = ACTIONS(8289), + [aux_sym__attribute_identifier_token1] = ACTIONS(8287), + [aux_sym_option_statement_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8287), + [aux_sym_preprocessor_const_token1] = ACTIONS(8287), + [sym_static_modifier] = ACTIONS(8287), + [sym__dim_keyword] = ACTIONS(8287), + [sym__redim_keyword] = ACTIONS(8287), + [aux_sym_get_accessor_token1] = ACTIONS(8287), + [aux_sym_set_accessor_token1] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(10633), + [aux_sym_const_declaration_token1] = ACTIONS(8287), + [anon_sym_LPAREN] = ACTIONS(8289), + [aux_sym_as_type_clause_token2] = ACTIONS(8287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8287), + [aux_sym_visibility_token1] = ACTIONS(8287), + [aux_sym_visibility_token2] = ACTIONS(8287), + [aux_sym_elseif_fragment_token1] = ACTIONS(8287), + [aux_sym_else_fragment_token1] = ACTIONS(8287), + [aux_sym_select_statement_token1] = ACTIONS(8287), + [aux_sym_select_statement_token2] = ACTIONS(8287), + [aux_sym__for_header_token1] = ACTIONS(8287), + [aux_sym_do_statement_token1] = ACTIONS(8287), + [aux_sym_do_condition_token1] = ACTIONS(8287), + [aux_sym_with_statement_token1] = ACTIONS(8287), + [aux_sym_exit_statement_token1] = ACTIONS(8287), + [sym_end_statement] = ACTIONS(8289), + [aux_sym_on_goto_statement_token1] = ACTIONS(8287), + [aux_sym_on_goto_statement_token2] = ACTIONS(8287), + [aux_sym_on_error_statement_token2] = ACTIONS(8287), + [sym__ambiguous_redim_statement] = ACTIONS(8289), + [aux_sym_erase_statement_token1] = ACTIONS(8287), + [aux_sym_open_statement_token1] = ACTIONS(8287), + [aux_sym_file_mode_token2] = ACTIONS(8287), + [aux_sym_file_access_token2] = ACTIONS(8287), + [aux_sym_file_lock_token2] = ACTIONS(8287), + [aux_sym_print_statement_token1] = ACTIONS(8287), + [anon_sym_PLUS] = ACTIONS(8289), + [anon_sym_DASH] = ACTIONS(8287), + [anon_sym_QMARK] = ACTIONS(8289), + [aux_sym_close_statement_token1] = ACTIONS(8287), + [aux_sym_put_statement_token1] = ACTIONS(8287), + [aux_sym_unlock_statement_token1] = ACTIONS(8287), + [aux_sym_seek_statement_token1] = ACTIONS(8287), + [sym_reset_statement] = ACTIONS(8287), + [aux_sym_raise_event_statement_token1] = ACTIONS(8287), + [sym_stop_statement] = ACTIONS(8287), + [sym_beep_statement] = ACTIONS(8287), + [aux_sym_unload_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token2] = ACTIONS(8287), + [aux_sym_def_type_statement_token3] = ACTIONS(8287), + [aux_sym_def_type_statement_token4] = ACTIONS(8287), + [aux_sym_def_type_statement_token5] = ACTIONS(8287), + [aux_sym_def_type_statement_token6] = ACTIONS(8287), + [aux_sym_def_type_statement_token7] = ACTIONS(8287), + [aux_sym_def_type_statement_token8] = ACTIONS(8287), + [aux_sym_def_type_statement_token9] = ACTIONS(8287), + [aux_sym_def_type_statement_token10] = ACTIONS(8287), + [aux_sym_def_type_statement_token11] = ACTIONS(8287), + [aux_sym_def_type_statement_token12] = ACTIONS(8287), + [aux_sym_def_type_statement_token13] = ACTIONS(8287), + [aux_sym_def_type_statement_token14] = ACTIONS(8287), + [aux_sym_call_statement_token1] = ACTIONS(8287), + [sym__ambiguous_call_statement] = ACTIONS(8287), + [aux_sym_addressof_expression_token1] = ACTIONS(8287), + [aux_sym_type_of_expression_token1] = ACTIONS(8287), + [aux_sym_unary_expression_token1] = ACTIONS(8287), + [sym_string_literal] = ACTIONS(8289), + [sym_number_literal] = ACTIONS(8289), + [aux_sym_boolean_literal_token1] = ACTIONS(8287), + [aux_sym_boolean_literal_token2] = ACTIONS(8287), + [sym_nothing_literal] = ACTIONS(8287), + [sym_null_literal] = ACTIONS(8287), + [sym_empty_literal] = ACTIONS(8287), + [sym_date_literal] = ACTIONS(8289), + [anon_sym_POUND] = ACTIONS(8287), + }, + [STATE(5504)] = { + [aux_sym_close_statement_repeat1] = STATE(5583), + [sym_identifier] = ACTIONS(8521), + [sym_newline] = ACTIONS(8523), + [anon_sym_COLON] = ACTIONS(8523), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8521), + [aux_sym_frm_property_statement_token1] = ACTIONS(8521), + [anon_sym_DOT] = ACTIONS(8521), + [anon_sym_BANG] = ACTIONS(8523), + [aux_sym__attribute_identifier_token1] = ACTIONS(8521), + [aux_sym_option_statement_token3] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8521), + [aux_sym_preprocessor_const_token1] = ACTIONS(8521), + [sym_static_modifier] = ACTIONS(8521), + [sym__dim_keyword] = ACTIONS(8521), + [sym__redim_keyword] = ACTIONS(8521), + [aux_sym_get_accessor_token1] = ACTIONS(8521), + [aux_sym_set_accessor_token1] = ACTIONS(8521), + [anon_sym_COMMA] = ACTIONS(10604), + [aux_sym_const_declaration_token1] = ACTIONS(8521), + [anon_sym_LPAREN] = ACTIONS(8523), + [aux_sym_as_type_clause_token2] = ACTIONS(8521), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8521), + [aux_sym_visibility_token1] = ACTIONS(8521), + [aux_sym_visibility_token2] = ACTIONS(8521), + [aux_sym_elseif_fragment_token1] = ACTIONS(8521), + [aux_sym_else_fragment_token1] = ACTIONS(8521), + [aux_sym_select_statement_token1] = ACTIONS(8521), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8521), + [aux_sym__for_header_token1] = ACTIONS(8521), + [aux_sym_do_statement_token1] = ACTIONS(8521), + [aux_sym_do_condition_token1] = ACTIONS(8521), + [aux_sym_with_statement_token1] = ACTIONS(8521), + [aux_sym_exit_statement_token1] = ACTIONS(8521), + [sym_end_statement] = ACTIONS(8523), + [aux_sym_on_goto_statement_token1] = ACTIONS(8521), + [aux_sym_on_goto_statement_token2] = ACTIONS(8521), + [aux_sym_on_error_statement_token2] = ACTIONS(8521), + [sym__ambiguous_redim_statement] = ACTIONS(8523), + [aux_sym_erase_statement_token1] = ACTIONS(8521), + [aux_sym_open_statement_token1] = ACTIONS(8521), + [aux_sym_file_mode_token2] = ACTIONS(8521), + [aux_sym_file_access_token2] = ACTIONS(8521), + [aux_sym_file_lock_token2] = ACTIONS(8521), + [aux_sym_print_statement_token1] = ACTIONS(8521), + [anon_sym_PLUS] = ACTIONS(8523), + [anon_sym_DASH] = ACTIONS(8521), + [anon_sym_QMARK] = ACTIONS(8523), + [aux_sym_close_statement_token1] = ACTIONS(8521), + [aux_sym_put_statement_token1] = ACTIONS(8521), + [aux_sym_unlock_statement_token1] = ACTIONS(8521), + [aux_sym_seek_statement_token1] = ACTIONS(8521), + [sym_reset_statement] = ACTIONS(8521), + [aux_sym_raise_event_statement_token1] = ACTIONS(8521), + [sym_stop_statement] = ACTIONS(8521), + [sym_beep_statement] = ACTIONS(8521), + [aux_sym_unload_statement_token1] = ACTIONS(8521), + [aux_sym_def_type_statement_token1] = ACTIONS(8521), + [aux_sym_def_type_statement_token2] = ACTIONS(8521), + [aux_sym_def_type_statement_token3] = ACTIONS(8521), + [aux_sym_def_type_statement_token4] = ACTIONS(8521), + [aux_sym_def_type_statement_token5] = ACTIONS(8521), + [aux_sym_def_type_statement_token6] = ACTIONS(8521), + [aux_sym_def_type_statement_token7] = ACTIONS(8521), + [aux_sym_def_type_statement_token8] = ACTIONS(8521), + [aux_sym_def_type_statement_token9] = ACTIONS(8521), + [aux_sym_def_type_statement_token10] = ACTIONS(8521), + [aux_sym_def_type_statement_token11] = ACTIONS(8521), + [aux_sym_def_type_statement_token12] = ACTIONS(8521), + [aux_sym_def_type_statement_token13] = ACTIONS(8521), + [aux_sym_def_type_statement_token14] = ACTIONS(8521), + [aux_sym_call_statement_token1] = ACTIONS(8521), + [sym__ambiguous_call_statement] = ACTIONS(8521), + [aux_sym_addressof_expression_token1] = ACTIONS(8521), + [aux_sym_type_of_expression_token1] = ACTIONS(8521), + [aux_sym_unary_expression_token1] = ACTIONS(8521), + [sym_string_literal] = ACTIONS(8523), + [sym_number_literal] = ACTIONS(8523), + [aux_sym_boolean_literal_token1] = ACTIONS(8521), + [aux_sym_boolean_literal_token2] = ACTIONS(8521), + [sym_nothing_literal] = ACTIONS(8521), + [sym_null_literal] = ACTIONS(8521), + [sym_empty_literal] = ACTIONS(8521), + [sym_date_literal] = ACTIONS(8523), + [anon_sym_POUND] = ACTIONS(8521), + }, + [STATE(5505)] = { + [sym_identifier] = ACTIONS(6621), + [sym_newline] = ACTIONS(6623), + [anon_sym_COLON] = ACTIONS(6623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6621), + [aux_sym_frm_property_statement_token1] = ACTIONS(6621), + [anon_sym_DOT] = ACTIONS(6621), + [anon_sym_BANG] = ACTIONS(6623), + [aux_sym__attribute_identifier_token1] = ACTIONS(6621), + [aux_sym_option_statement_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6621), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6621), + [aux_sym_preprocessor_const_token1] = ACTIONS(6621), + [sym_static_modifier] = ACTIONS(6621), + [sym__dim_keyword] = ACTIONS(6621), + [sym__redim_keyword] = ACTIONS(6621), + [aux_sym_get_accessor_token1] = ACTIONS(6621), + [aux_sym_set_accessor_token1] = ACTIONS(6621), + [aux_sym_const_declaration_token1] = ACTIONS(6621), + [anon_sym_LPAREN] = ACTIONS(6623), + [aux_sym_as_type_clause_token2] = ACTIONS(6621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6621), + [aux_sym_visibility_token1] = ACTIONS(6621), + [aux_sym_visibility_token2] = ACTIONS(6621), + [aux_sym_elseif_fragment_token1] = ACTIONS(6621), + [aux_sym_else_fragment_token1] = ACTIONS(6621), + [aux_sym_select_statement_token1] = ACTIONS(6621), + [aux_sym__for_header_token1] = ACTIONS(6621), + [aux_sym_do_statement_token1] = ACTIONS(6621), + [aux_sym_do_condition_token1] = ACTIONS(6621), + [aux_sym_with_statement_token1] = ACTIONS(6621), + [aux_sym_exit_statement_token1] = ACTIONS(6621), + [sym_end_statement] = ACTIONS(6623), + [aux_sym_on_goto_statement_token1] = ACTIONS(6621), + [aux_sym_on_goto_statement_token2] = ACTIONS(6621), + [aux_sym_on_error_statement_token2] = ACTIONS(6621), + [sym__ambiguous_redim_statement] = ACTIONS(6623), + [aux_sym_erase_statement_token1] = ACTIONS(6621), + [aux_sym_open_statement_token1] = ACTIONS(6621), + [aux_sym_file_mode_token2] = ACTIONS(6621), + [aux_sym_file_access_token2] = ACTIONS(6621), + [aux_sym_file_lock_token2] = ACTIONS(6621), + [aux_sym_print_statement_token1] = ACTIONS(6621), + [anon_sym_PLUS] = ACTIONS(6623), + [anon_sym_DASH] = ACTIONS(6621), + [anon_sym_QMARK] = ACTIONS(6623), + [aux_sym_close_statement_token1] = ACTIONS(6621), + [aux_sym_put_statement_token1] = ACTIONS(6621), + [aux_sym_unlock_statement_token1] = ACTIONS(6621), + [aux_sym_seek_statement_token1] = ACTIONS(6621), + [sym_reset_statement] = ACTIONS(6621), + [aux_sym_raise_event_statement_token1] = ACTIONS(6621), + [sym_stop_statement] = ACTIONS(6621), + [sym_beep_statement] = ACTIONS(6621), + [aux_sym_unload_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token2] = ACTIONS(6621), + [aux_sym_def_type_statement_token3] = ACTIONS(6621), + [aux_sym_def_type_statement_token4] = ACTIONS(6621), + [aux_sym_def_type_statement_token5] = ACTIONS(6621), + [aux_sym_def_type_statement_token6] = ACTIONS(6621), + [aux_sym_def_type_statement_token7] = ACTIONS(6621), + [aux_sym_def_type_statement_token8] = ACTIONS(6621), + [aux_sym_def_type_statement_token9] = ACTIONS(6621), + [aux_sym_def_type_statement_token10] = ACTIONS(6621), + [aux_sym_def_type_statement_token11] = ACTIONS(6621), + [aux_sym_def_type_statement_token12] = ACTIONS(6621), + [aux_sym_def_type_statement_token13] = ACTIONS(6621), + [aux_sym_def_type_statement_token14] = ACTIONS(6621), + [aux_sym_call_statement_token1] = ACTIONS(6621), + [sym__ambiguous_call_statement] = ACTIONS(6621), + [aux_sym_addressof_expression_token1] = ACTIONS(6621), + [aux_sym_type_of_expression_token1] = ACTIONS(6621), + [aux_sym_unary_expression_token1] = ACTIONS(6621), + [sym_string_literal] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [aux_sym_boolean_literal_token1] = ACTIONS(6621), + [aux_sym_boolean_literal_token2] = ACTIONS(6621), + [sym_nothing_literal] = ACTIONS(6621), + [sym_null_literal] = ACTIONS(6621), + [sym_empty_literal] = ACTIONS(6621), + [sym_date_literal] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6621), + }, + [STATE(5506)] = { + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(7951), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym_select_statement_token2] = ACTIONS(7949), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(5507)] = { + [aux_sym_redim_statement_repeat1] = STATE(5507), + [sym_identifier] = ACTIONS(8456), + [sym_newline] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8458), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8456), + [aux_sym_frm_property_statement_token1] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_BANG] = ACTIONS(8458), + [aux_sym__attribute_identifier_token1] = ACTIONS(8456), + [aux_sym_option_statement_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8456), + [aux_sym_preprocessor_const_token1] = ACTIONS(8456), + [sym_static_modifier] = ACTIONS(8456), + [sym__dim_keyword] = ACTIONS(8456), + [sym__redim_keyword] = ACTIONS(8456), + [aux_sym_get_accessor_token1] = ACTIONS(8456), + [aux_sym_set_accessor_token1] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(10636), + [aux_sym_const_declaration_token1] = ACTIONS(8456), + [anon_sym_LPAREN] = ACTIONS(8458), + [aux_sym_as_type_clause_token2] = ACTIONS(8456), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8456), + [aux_sym_visibility_token1] = ACTIONS(8456), + [aux_sym_visibility_token2] = ACTIONS(8456), + [aux_sym_elseif_fragment_token1] = ACTIONS(8456), + [aux_sym_else_fragment_token1] = ACTIONS(8456), + [aux_sym_select_statement_token1] = ACTIONS(8456), + [aux_sym__for_header_token1] = ACTIONS(8456), + [aux_sym_do_statement_token1] = ACTIONS(8456), + [aux_sym_do_condition_token1] = ACTIONS(8456), + [aux_sym_with_statement_token1] = ACTIONS(8456), + [aux_sym_exit_statement_token1] = ACTIONS(8456), + [sym_end_statement] = ACTIONS(8458), + [aux_sym_on_goto_statement_token1] = ACTIONS(8456), + [aux_sym_on_goto_statement_token2] = ACTIONS(8456), + [aux_sym_on_error_statement_token2] = ACTIONS(8456), + [sym__ambiguous_redim_statement] = ACTIONS(8458), + [aux_sym_erase_statement_token1] = ACTIONS(8456), + [aux_sym_open_statement_token1] = ACTIONS(8456), + [aux_sym_file_mode_token2] = ACTIONS(8456), + [aux_sym_file_access_token2] = ACTIONS(8456), + [aux_sym_file_lock_token2] = ACTIONS(8456), + [aux_sym_print_statement_token1] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8458), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8458), + [aux_sym_close_statement_token1] = ACTIONS(8456), + [aux_sym_put_statement_token1] = ACTIONS(8456), + [aux_sym_unlock_statement_token1] = ACTIONS(8456), + [aux_sym_seek_statement_token1] = ACTIONS(8456), + [sym_reset_statement] = ACTIONS(8456), + [aux_sym_raise_event_statement_token1] = ACTIONS(8456), + [sym_stop_statement] = ACTIONS(8456), + [sym_beep_statement] = ACTIONS(8456), + [aux_sym_unload_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token2] = ACTIONS(8456), + [aux_sym_def_type_statement_token3] = ACTIONS(8456), + [aux_sym_def_type_statement_token4] = ACTIONS(8456), + [aux_sym_def_type_statement_token5] = ACTIONS(8456), + [aux_sym_def_type_statement_token6] = ACTIONS(8456), + [aux_sym_def_type_statement_token7] = ACTIONS(8456), + [aux_sym_def_type_statement_token8] = ACTIONS(8456), + [aux_sym_def_type_statement_token9] = ACTIONS(8456), + [aux_sym_def_type_statement_token10] = ACTIONS(8456), + [aux_sym_def_type_statement_token11] = ACTIONS(8456), + [aux_sym_def_type_statement_token12] = ACTIONS(8456), + [aux_sym_def_type_statement_token13] = ACTIONS(8456), + [aux_sym_def_type_statement_token14] = ACTIONS(8456), + [aux_sym_call_statement_token1] = ACTIONS(8456), + [sym__ambiguous_call_statement] = ACTIONS(8456), + [aux_sym_addressof_expression_token1] = ACTIONS(8456), + [aux_sym_type_of_expression_token1] = ACTIONS(8456), + [aux_sym_unary_expression_token1] = ACTIONS(8456), + [sym_string_literal] = ACTIONS(8458), + [sym_number_literal] = ACTIONS(8458), + [aux_sym_boolean_literal_token1] = ACTIONS(8456), + [aux_sym_boolean_literal_token2] = ACTIONS(8456), + [sym_nothing_literal] = ACTIONS(8456), + [sym_null_literal] = ACTIONS(8456), + [sym_empty_literal] = ACTIONS(8456), + [sym_date_literal] = ACTIONS(8458), + [anon_sym_POUND] = ACTIONS(8456), + }, + [STATE(5508)] = { + [sym_identifier] = ACTIONS(3996), + [sym_newline] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3996), + [aux_sym_frm_property_statement_token1] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3994), + [aux_sym__attribute_identifier_token1] = ACTIONS(3996), + [aux_sym_option_statement_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3996), + [aux_sym_preprocessor_const_token1] = ACTIONS(3996), + [sym_static_modifier] = ACTIONS(3996), + [sym__dim_keyword] = ACTIONS(3996), + [sym__redim_keyword] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3996), + [aux_sym_set_accessor_token1] = ACTIONS(3996), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3994), + [aux_sym_as_type_clause_token2] = ACTIONS(3996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3996), + [aux_sym_visibility_token1] = ACTIONS(3996), + [aux_sym_visibility_token2] = ACTIONS(3996), + [aux_sym_elseif_fragment_token1] = ACTIONS(3996), + [aux_sym_else_fragment_token1] = ACTIONS(3996), + [aux_sym_select_statement_token1] = ACTIONS(3996), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3996), + [aux_sym__for_header_token1] = ACTIONS(3996), + [aux_sym_do_statement_token1] = ACTIONS(3996), + [aux_sym_do_condition_token1] = ACTIONS(3996), + [aux_sym_with_statement_token1] = ACTIONS(3996), + [aux_sym_exit_statement_token1] = ACTIONS(3996), + [sym_end_statement] = ACTIONS(3994), + [aux_sym_on_goto_statement_token1] = ACTIONS(3996), + [aux_sym_on_goto_statement_token2] = ACTIONS(3996), + [aux_sym_on_error_statement_token2] = ACTIONS(3996), + [sym__ambiguous_redim_statement] = ACTIONS(3994), + [aux_sym_erase_statement_token1] = ACTIONS(3996), + [aux_sym_open_statement_token1] = ACTIONS(3996), + [aux_sym_file_mode_token2] = ACTIONS(3996), + [aux_sym_file_access_token2] = ACTIONS(3996), + [aux_sym_file_lock_token2] = ACTIONS(3996), + [aux_sym_print_statement_token1] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3994), + [aux_sym_close_statement_token1] = ACTIONS(3996), + [aux_sym_put_statement_token1] = ACTIONS(3996), + [aux_sym_unlock_statement_token1] = ACTIONS(3996), + [aux_sym_seek_statement_token1] = ACTIONS(3996), + [sym_reset_statement] = ACTIONS(3996), + [aux_sym_raise_event_statement_token1] = ACTIONS(3996), + [sym_stop_statement] = ACTIONS(3996), + [sym_beep_statement] = ACTIONS(3996), + [aux_sym_unload_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token2] = ACTIONS(3996), + [aux_sym_def_type_statement_token3] = ACTIONS(3996), + [aux_sym_def_type_statement_token4] = ACTIONS(3996), + [aux_sym_def_type_statement_token5] = ACTIONS(3996), + [aux_sym_def_type_statement_token6] = ACTIONS(3996), + [aux_sym_def_type_statement_token7] = ACTIONS(3996), + [aux_sym_def_type_statement_token8] = ACTIONS(3996), + [aux_sym_def_type_statement_token9] = ACTIONS(3996), + [aux_sym_def_type_statement_token10] = ACTIONS(3996), + [aux_sym_def_type_statement_token11] = ACTIONS(3996), + [aux_sym_def_type_statement_token12] = ACTIONS(3996), + [aux_sym_def_type_statement_token13] = ACTIONS(3996), + [aux_sym_def_type_statement_token14] = ACTIONS(3996), + [aux_sym_call_statement_token1] = ACTIONS(3996), + [sym__ambiguous_call_statement] = ACTIONS(3996), + [aux_sym_addressof_expression_token1] = ACTIONS(3996), + [aux_sym_type_of_expression_token1] = ACTIONS(3996), + [aux_sym_unary_expression_token1] = ACTIONS(3996), + [sym_string_literal] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3994), + [aux_sym_boolean_literal_token1] = ACTIONS(3996), + [aux_sym_boolean_literal_token2] = ACTIONS(3996), + [sym_nothing_literal] = ACTIONS(3996), + [sym_null_literal] = ACTIONS(3996), + [sym_empty_literal] = ACTIONS(3996), + [sym_date_literal] = ACTIONS(3994), + [anon_sym_POUND] = ACTIONS(3996), + }, + [STATE(5509)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5802), + [sym_identifier] = ACTIONS(8591), + [sym_newline] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(8593), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8591), + [aux_sym_frm_property_statement_token1] = ACTIONS(8591), + [anon_sym_DOT] = ACTIONS(8591), + [anon_sym_BANG] = ACTIONS(8593), + [aux_sym__attribute_identifier_token1] = ACTIONS(8591), + [aux_sym_option_statement_token3] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8591), + [aux_sym_preprocessor_const_token1] = ACTIONS(8591), + [sym_static_modifier] = ACTIONS(8591), + [sym__dim_keyword] = ACTIONS(8591), + [sym__redim_keyword] = ACTIONS(8591), + [aux_sym_get_accessor_token1] = ACTIONS(8591), + [aux_sym_set_accessor_token1] = ACTIONS(8591), + [anon_sym_COMMA] = ACTIONS(10543), + [aux_sym_const_declaration_token1] = ACTIONS(8591), + [anon_sym_LPAREN] = ACTIONS(8593), + [aux_sym_as_type_clause_token2] = ACTIONS(8591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8591), + [aux_sym_visibility_token1] = ACTIONS(8591), + [aux_sym_visibility_token2] = ACTIONS(8591), + [aux_sym_elseif_fragment_token1] = ACTIONS(8591), + [aux_sym_else_fragment_token1] = ACTIONS(8591), + [aux_sym_select_statement_token1] = ACTIONS(8591), + [aux_sym__for_header_token1] = ACTIONS(8591), + [aux_sym_do_statement_token1] = ACTIONS(8591), + [aux_sym_do_statement_token2] = ACTIONS(8591), + [aux_sym_do_condition_token1] = ACTIONS(8591), + [aux_sym_with_statement_token1] = ACTIONS(8591), + [aux_sym_exit_statement_token1] = ACTIONS(8591), + [sym_end_statement] = ACTIONS(8593), + [aux_sym_on_goto_statement_token1] = ACTIONS(8591), + [aux_sym_on_goto_statement_token2] = ACTIONS(8591), + [aux_sym_on_error_statement_token2] = ACTIONS(8591), + [sym__ambiguous_redim_statement] = ACTIONS(8593), + [aux_sym_erase_statement_token1] = ACTIONS(8591), + [aux_sym_open_statement_token1] = ACTIONS(8591), + [aux_sym_file_mode_token2] = ACTIONS(8591), + [aux_sym_file_access_token2] = ACTIONS(8591), + [aux_sym_file_lock_token2] = ACTIONS(8591), + [aux_sym_print_statement_token1] = ACTIONS(8591), + [anon_sym_PLUS] = ACTIONS(8593), + [anon_sym_DASH] = ACTIONS(8591), + [anon_sym_QMARK] = ACTIONS(8593), + [aux_sym_close_statement_token1] = ACTIONS(8591), + [aux_sym_put_statement_token1] = ACTIONS(8591), + [aux_sym_unlock_statement_token1] = ACTIONS(8591), + [aux_sym_seek_statement_token1] = ACTIONS(8591), + [sym_reset_statement] = ACTIONS(8591), + [aux_sym_raise_event_statement_token1] = ACTIONS(8591), + [sym_stop_statement] = ACTIONS(8591), + [sym_beep_statement] = ACTIONS(8591), + [aux_sym_unload_statement_token1] = ACTIONS(8591), + [aux_sym_def_type_statement_token1] = ACTIONS(8591), + [aux_sym_def_type_statement_token2] = ACTIONS(8591), + [aux_sym_def_type_statement_token3] = ACTIONS(8591), + [aux_sym_def_type_statement_token4] = ACTIONS(8591), + [aux_sym_def_type_statement_token5] = ACTIONS(8591), + [aux_sym_def_type_statement_token6] = ACTIONS(8591), + [aux_sym_def_type_statement_token7] = ACTIONS(8591), + [aux_sym_def_type_statement_token8] = ACTIONS(8591), + [aux_sym_def_type_statement_token9] = ACTIONS(8591), + [aux_sym_def_type_statement_token10] = ACTIONS(8591), + [aux_sym_def_type_statement_token11] = ACTIONS(8591), + [aux_sym_def_type_statement_token12] = ACTIONS(8591), + [aux_sym_def_type_statement_token13] = ACTIONS(8591), + [aux_sym_def_type_statement_token14] = ACTIONS(8591), + [aux_sym_call_statement_token1] = ACTIONS(8591), + [sym__ambiguous_call_statement] = ACTIONS(8591), + [aux_sym_addressof_expression_token1] = ACTIONS(8591), + [aux_sym_type_of_expression_token1] = ACTIONS(8591), + [aux_sym_unary_expression_token1] = ACTIONS(8591), + [sym_string_literal] = ACTIONS(8593), + [sym_number_literal] = ACTIONS(8593), + [aux_sym_boolean_literal_token1] = ACTIONS(8591), + [aux_sym_boolean_literal_token2] = ACTIONS(8591), + [sym_nothing_literal] = ACTIONS(8591), + [sym_null_literal] = ACTIONS(8591), + [sym_empty_literal] = ACTIONS(8591), + [sym_date_literal] = ACTIONS(8593), + [anon_sym_POUND] = ACTIONS(8591), + }, + [STATE(5510)] = { + [sym_identifier] = ACTIONS(6617), + [sym_newline] = ACTIONS(6619), + [anon_sym_COLON] = ACTIONS(6619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6617), + [aux_sym_frm_property_statement_token1] = ACTIONS(6617), + [anon_sym_DOT] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(6619), + [aux_sym__attribute_identifier_token1] = ACTIONS(6617), + [aux_sym_option_statement_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6617), + [aux_sym_preprocessor_const_token1] = ACTIONS(6617), + [sym_static_modifier] = ACTIONS(6617), + [sym__dim_keyword] = ACTIONS(6617), + [sym__redim_keyword] = ACTIONS(6617), + [aux_sym_get_accessor_token1] = ACTIONS(6617), + [aux_sym_set_accessor_token1] = ACTIONS(6617), + [aux_sym_const_declaration_token1] = ACTIONS(6617), + [anon_sym_LPAREN] = ACTIONS(6619), + [aux_sym_as_type_clause_token2] = ACTIONS(6617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6617), + [aux_sym_visibility_token1] = ACTIONS(6617), + [aux_sym_visibility_token2] = ACTIONS(6617), + [aux_sym_elseif_fragment_token1] = ACTIONS(6617), + [aux_sym_else_fragment_token1] = ACTIONS(6617), + [aux_sym_select_statement_token1] = ACTIONS(6617), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6617), + [aux_sym__for_header_token1] = ACTIONS(6617), + [aux_sym_do_statement_token1] = ACTIONS(6617), + [aux_sym_do_condition_token1] = ACTIONS(6617), + [aux_sym_with_statement_token1] = ACTIONS(6617), + [aux_sym_exit_statement_token1] = ACTIONS(6617), + [sym_end_statement] = ACTIONS(6619), + [aux_sym_on_goto_statement_token1] = ACTIONS(6617), + [aux_sym_on_goto_statement_token2] = ACTIONS(6617), + [aux_sym_on_error_statement_token2] = ACTIONS(6617), + [sym__ambiguous_redim_statement] = ACTIONS(6619), + [aux_sym_erase_statement_token1] = ACTIONS(6617), + [aux_sym_open_statement_token1] = ACTIONS(6617), + [aux_sym_file_mode_token2] = ACTIONS(6617), + [aux_sym_file_access_token2] = ACTIONS(6617), + [aux_sym_file_lock_token2] = ACTIONS(6617), + [aux_sym_print_statement_token1] = ACTIONS(6617), + [anon_sym_PLUS] = ACTIONS(6619), + [anon_sym_DASH] = ACTIONS(6617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10159), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10161), + [anon_sym_QMARK] = ACTIONS(6619), + [aux_sym_close_statement_token1] = ACTIONS(6617), + [aux_sym_put_statement_token1] = ACTIONS(6617), + [aux_sym_unlock_statement_token1] = ACTIONS(6617), + [aux_sym_seek_statement_token1] = ACTIONS(6617), + [sym_reset_statement] = ACTIONS(6617), + [aux_sym_raise_event_statement_token1] = ACTIONS(6617), + [sym_stop_statement] = ACTIONS(6617), + [sym_beep_statement] = ACTIONS(6617), + [aux_sym_unload_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token2] = ACTIONS(6617), + [aux_sym_def_type_statement_token3] = ACTIONS(6617), + [aux_sym_def_type_statement_token4] = ACTIONS(6617), + [aux_sym_def_type_statement_token5] = ACTIONS(6617), + [aux_sym_def_type_statement_token6] = ACTIONS(6617), + [aux_sym_def_type_statement_token7] = ACTIONS(6617), + [aux_sym_def_type_statement_token8] = ACTIONS(6617), + [aux_sym_def_type_statement_token9] = ACTIONS(6617), + [aux_sym_def_type_statement_token10] = ACTIONS(6617), + [aux_sym_def_type_statement_token11] = ACTIONS(6617), + [aux_sym_def_type_statement_token12] = ACTIONS(6617), + [aux_sym_def_type_statement_token13] = ACTIONS(6617), + [aux_sym_def_type_statement_token14] = ACTIONS(6617), + [aux_sym_call_statement_token1] = ACTIONS(6617), + [sym__ambiguous_call_statement] = ACTIONS(6617), + [aux_sym_addressof_expression_token1] = ACTIONS(6617), + [aux_sym_type_of_expression_token1] = ACTIONS(6617), + [aux_sym_unary_expression_token1] = ACTIONS(6617), + [sym_string_literal] = ACTIONS(6619), + [sym_number_literal] = ACTIONS(6619), + [aux_sym_boolean_literal_token1] = ACTIONS(6617), + [aux_sym_boolean_literal_token2] = ACTIONS(6617), + [sym_nothing_literal] = ACTIONS(6617), + [sym_null_literal] = ACTIONS(6617), + [sym_empty_literal] = ACTIONS(6617), + [sym_date_literal] = ACTIONS(6619), + [anon_sym_POUND] = ACTIONS(6617), + }, + [STATE(5511)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5594), + [sym_identifier] = ACTIONS(8495), + [sym_newline] = ACTIONS(8497), + [anon_sym_COLON] = ACTIONS(8497), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8495), + [aux_sym_frm_property_statement_token1] = ACTIONS(8495), + [anon_sym_DOT] = ACTIONS(8495), + [anon_sym_BANG] = ACTIONS(8497), + [aux_sym__attribute_identifier_token1] = ACTIONS(8495), + [aux_sym_option_statement_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8495), + [aux_sym_preprocessor_const_token1] = ACTIONS(8495), + [sym_static_modifier] = ACTIONS(8495), + [sym__dim_keyword] = ACTIONS(8495), + [sym__redim_keyword] = ACTIONS(8495), + [aux_sym_get_accessor_token1] = ACTIONS(8495), + [aux_sym_set_accessor_token1] = ACTIONS(8495), + [anon_sym_COMMA] = ACTIONS(5160), + [aux_sym_const_declaration_token1] = ACTIONS(8495), + [anon_sym_LPAREN] = ACTIONS(8497), + [aux_sym_as_type_clause_token2] = ACTIONS(8495), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8495), + [aux_sym_visibility_token1] = ACTIONS(8495), + [aux_sym_visibility_token2] = ACTIONS(8495), + [aux_sym_elseif_fragment_token1] = ACTIONS(8495), + [aux_sym_else_fragment_token1] = ACTIONS(8495), + [aux_sym_select_statement_token1] = ACTIONS(8495), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8495), + [aux_sym__for_header_token1] = ACTIONS(8495), + [aux_sym_do_statement_token1] = ACTIONS(8495), + [aux_sym_do_condition_token1] = ACTIONS(8495), + [aux_sym_with_statement_token1] = ACTIONS(8495), + [aux_sym_exit_statement_token1] = ACTIONS(8495), + [sym_end_statement] = ACTIONS(8497), + [aux_sym_on_goto_statement_token1] = ACTIONS(8495), + [aux_sym_on_goto_statement_token2] = ACTIONS(8495), + [aux_sym_on_error_statement_token2] = ACTIONS(8495), + [sym__ambiguous_redim_statement] = ACTIONS(8497), + [aux_sym_erase_statement_token1] = ACTIONS(8495), + [aux_sym_open_statement_token1] = ACTIONS(8495), + [aux_sym_file_mode_token2] = ACTIONS(8495), + [aux_sym_file_access_token2] = ACTIONS(8495), + [aux_sym_file_lock_token2] = ACTIONS(8495), + [aux_sym_print_statement_token1] = ACTIONS(8495), + [anon_sym_PLUS] = ACTIONS(8497), + [anon_sym_DASH] = ACTIONS(8495), + [anon_sym_QMARK] = ACTIONS(8497), + [aux_sym_close_statement_token1] = ACTIONS(8495), + [aux_sym_put_statement_token1] = ACTIONS(8495), + [aux_sym_unlock_statement_token1] = ACTIONS(8495), + [aux_sym_seek_statement_token1] = ACTIONS(8495), + [sym_reset_statement] = ACTIONS(8495), + [aux_sym_raise_event_statement_token1] = ACTIONS(8495), + [sym_stop_statement] = ACTIONS(8495), + [sym_beep_statement] = ACTIONS(8495), + [aux_sym_unload_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token2] = ACTIONS(8495), + [aux_sym_def_type_statement_token3] = ACTIONS(8495), + [aux_sym_def_type_statement_token4] = ACTIONS(8495), + [aux_sym_def_type_statement_token5] = ACTIONS(8495), + [aux_sym_def_type_statement_token6] = ACTIONS(8495), + [aux_sym_def_type_statement_token7] = ACTIONS(8495), + [aux_sym_def_type_statement_token8] = ACTIONS(8495), + [aux_sym_def_type_statement_token9] = ACTIONS(8495), + [aux_sym_def_type_statement_token10] = ACTIONS(8495), + [aux_sym_def_type_statement_token11] = ACTIONS(8495), + [aux_sym_def_type_statement_token12] = ACTIONS(8495), + [aux_sym_def_type_statement_token13] = ACTIONS(8495), + [aux_sym_def_type_statement_token14] = ACTIONS(8495), + [aux_sym_call_statement_token1] = ACTIONS(8495), + [sym__ambiguous_call_statement] = ACTIONS(8495), + [aux_sym_addressof_expression_token1] = ACTIONS(8495), + [aux_sym_type_of_expression_token1] = ACTIONS(8495), + [aux_sym_unary_expression_token1] = ACTIONS(8495), + [sym_string_literal] = ACTIONS(8497), + [sym_number_literal] = ACTIONS(8497), + [aux_sym_boolean_literal_token1] = ACTIONS(8495), + [aux_sym_boolean_literal_token2] = ACTIONS(8495), + [sym_nothing_literal] = ACTIONS(8495), + [sym_null_literal] = ACTIONS(8495), + [sym_empty_literal] = ACTIONS(8495), + [sym_date_literal] = ACTIONS(8497), + [anon_sym_POUND] = ACTIONS(8495), + }, + [STATE(5512)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5116), + [sym_identifier] = ACTIONS(8495), + [sym_newline] = ACTIONS(8497), + [anon_sym_COLON] = ACTIONS(8497), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8495), + [aux_sym_frm_property_statement_token1] = ACTIONS(8495), + [anon_sym_DOT] = ACTIONS(8495), + [anon_sym_BANG] = ACTIONS(8497), + [aux_sym__attribute_identifier_token1] = ACTIONS(8495), + [aux_sym_option_statement_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8495), + [aux_sym_preprocessor_const_token1] = ACTIONS(8495), + [sym_static_modifier] = ACTIONS(8495), + [sym__dim_keyword] = ACTIONS(8495), + [sym__redim_keyword] = ACTIONS(8495), + [aux_sym_get_accessor_token1] = ACTIONS(8495), + [aux_sym_set_accessor_token1] = ACTIONS(8495), + [anon_sym_COMMA] = ACTIONS(5160), + [aux_sym_const_declaration_token1] = ACTIONS(8495), + [anon_sym_LPAREN] = ACTIONS(8497), + [aux_sym_as_type_clause_token2] = ACTIONS(8495), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8495), + [aux_sym_visibility_token1] = ACTIONS(8495), + [aux_sym_visibility_token2] = ACTIONS(8495), + [aux_sym_elseif_fragment_token1] = ACTIONS(8495), + [aux_sym_else_fragment_token1] = ACTIONS(8495), + [aux_sym_select_statement_token1] = ACTIONS(8495), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8495), + [aux_sym__for_header_token1] = ACTIONS(8495), + [aux_sym_do_statement_token1] = ACTIONS(8495), + [aux_sym_do_condition_token1] = ACTIONS(8495), + [aux_sym_with_statement_token1] = ACTIONS(8495), + [aux_sym_exit_statement_token1] = ACTIONS(8495), + [sym_end_statement] = ACTIONS(8497), + [aux_sym_on_goto_statement_token1] = ACTIONS(8495), + [aux_sym_on_goto_statement_token2] = ACTIONS(8495), + [aux_sym_on_error_statement_token2] = ACTIONS(8495), + [sym__ambiguous_redim_statement] = ACTIONS(8497), + [aux_sym_erase_statement_token1] = ACTIONS(8495), + [aux_sym_open_statement_token1] = ACTIONS(8495), + [aux_sym_file_mode_token2] = ACTIONS(8495), + [aux_sym_file_access_token2] = ACTIONS(8495), + [aux_sym_file_lock_token2] = ACTIONS(8495), + [aux_sym_print_statement_token1] = ACTIONS(8495), + [anon_sym_PLUS] = ACTIONS(8497), + [anon_sym_DASH] = ACTIONS(8495), + [anon_sym_QMARK] = ACTIONS(8497), + [aux_sym_close_statement_token1] = ACTIONS(8495), + [aux_sym_put_statement_token1] = ACTIONS(8495), + [aux_sym_unlock_statement_token1] = ACTIONS(8495), + [aux_sym_seek_statement_token1] = ACTIONS(8495), + [sym_reset_statement] = ACTIONS(8495), + [aux_sym_raise_event_statement_token1] = ACTIONS(8495), + [sym_stop_statement] = ACTIONS(8495), + [sym_beep_statement] = ACTIONS(8495), + [aux_sym_unload_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token2] = ACTIONS(8495), + [aux_sym_def_type_statement_token3] = ACTIONS(8495), + [aux_sym_def_type_statement_token4] = ACTIONS(8495), + [aux_sym_def_type_statement_token5] = ACTIONS(8495), + [aux_sym_def_type_statement_token6] = ACTIONS(8495), + [aux_sym_def_type_statement_token7] = ACTIONS(8495), + [aux_sym_def_type_statement_token8] = ACTIONS(8495), + [aux_sym_def_type_statement_token9] = ACTIONS(8495), + [aux_sym_def_type_statement_token10] = ACTIONS(8495), + [aux_sym_def_type_statement_token11] = ACTIONS(8495), + [aux_sym_def_type_statement_token12] = ACTIONS(8495), + [aux_sym_def_type_statement_token13] = ACTIONS(8495), + [aux_sym_def_type_statement_token14] = ACTIONS(8495), + [aux_sym_call_statement_token1] = ACTIONS(8495), + [sym__ambiguous_call_statement] = ACTIONS(8495), + [aux_sym_addressof_expression_token1] = ACTIONS(8495), + [aux_sym_type_of_expression_token1] = ACTIONS(8495), + [aux_sym_unary_expression_token1] = ACTIONS(8495), + [sym_string_literal] = ACTIONS(8497), + [sym_number_literal] = ACTIONS(8497), + [aux_sym_boolean_literal_token1] = ACTIONS(8495), + [aux_sym_boolean_literal_token2] = ACTIONS(8495), + [sym_nothing_literal] = ACTIONS(8495), + [sym_null_literal] = ACTIONS(8495), + [sym_empty_literal] = ACTIONS(8495), + [sym_date_literal] = ACTIONS(8497), + [anon_sym_POUND] = ACTIONS(8495), + }, + [STATE(5513)] = { + [sym_identifier] = ACTIONS(9080), + [sym_newline] = ACTIONS(9082), + [anon_sym_COLON] = ACTIONS(9082), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9080), + [aux_sym_frm_property_statement_token1] = ACTIONS(9080), + [anon_sym_DOT] = ACTIONS(9080), + [anon_sym_BANG] = ACTIONS(9082), + [aux_sym__attribute_identifier_token1] = ACTIONS(9080), + [aux_sym_option_statement_token3] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9080), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9080), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9080), + [aux_sym_preprocessor_const_token1] = ACTIONS(9080), + [sym_static_modifier] = ACTIONS(9080), + [sym__dim_keyword] = ACTIONS(9080), + [sym__redim_keyword] = ACTIONS(9080), + [aux_sym_get_accessor_token1] = ACTIONS(9080), + [aux_sym_set_accessor_token1] = ACTIONS(9080), + [aux_sym_const_declaration_token1] = ACTIONS(9080), + [anon_sym_LPAREN] = ACTIONS(9082), + [aux_sym_as_type_clause_token2] = ACTIONS(9080), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9080), + [aux_sym_visibility_token1] = ACTIONS(9080), + [aux_sym_visibility_token2] = ACTIONS(9080), + [aux_sym_elseif_fragment_token1] = ACTIONS(9080), + [aux_sym_else_fragment_token1] = ACTIONS(9080), + [aux_sym_select_statement_token1] = ACTIONS(9080), + [aux_sym__for_header_token1] = ACTIONS(9080), + [aux_sym_do_statement_token1] = ACTIONS(9080), + [aux_sym_do_condition_token1] = ACTIONS(9080), + [aux_sym_with_statement_token1] = ACTIONS(9080), + [aux_sym_exit_statement_token1] = ACTIONS(9080), + [sym_end_statement] = ACTIONS(9082), + [aux_sym_on_goto_statement_token1] = ACTIONS(9080), + [aux_sym_on_goto_statement_token2] = ACTIONS(9080), + [aux_sym_on_error_statement_token2] = ACTIONS(9080), + [sym__ambiguous_redim_statement] = ACTIONS(9082), + [aux_sym_erase_statement_token1] = ACTIONS(9080), + [aux_sym_open_statement_token1] = ACTIONS(9080), + [aux_sym_file_mode_token2] = ACTIONS(9080), + [aux_sym_file_access_token2] = ACTIONS(9080), + [aux_sym_file_lock_token2] = ACTIONS(9080), + [aux_sym_print_statement_token1] = ACTIONS(9080), + [anon_sym_PLUS] = ACTIONS(9082), + [anon_sym_DASH] = ACTIONS(9080), + [anon_sym_QMARK] = ACTIONS(9082), + [aux_sym_close_statement_token1] = ACTIONS(9080), + [aux_sym_put_statement_token1] = ACTIONS(9080), + [aux_sym_unlock_statement_token1] = ACTIONS(9080), + [aux_sym_seek_statement_token1] = ACTIONS(9080), + [sym_reset_statement] = ACTIONS(9080), + [aux_sym_raise_event_statement_token1] = ACTIONS(9080), + [sym_stop_statement] = ACTIONS(9080), + [sym_beep_statement] = ACTIONS(9080), + [aux_sym_unload_statement_token1] = ACTIONS(9080), + [aux_sym_def_type_statement_token1] = ACTIONS(9080), + [aux_sym_def_type_statement_token2] = ACTIONS(9080), + [aux_sym_def_type_statement_token3] = ACTIONS(9080), + [aux_sym_def_type_statement_token4] = ACTIONS(9080), + [aux_sym_def_type_statement_token5] = ACTIONS(9080), + [aux_sym_def_type_statement_token6] = ACTIONS(9080), + [aux_sym_def_type_statement_token7] = ACTIONS(9080), + [aux_sym_def_type_statement_token8] = ACTIONS(9080), + [aux_sym_def_type_statement_token9] = ACTIONS(9080), + [aux_sym_def_type_statement_token10] = ACTIONS(9080), + [aux_sym_def_type_statement_token11] = ACTIONS(9080), + [aux_sym_def_type_statement_token12] = ACTIONS(9080), + [aux_sym_def_type_statement_token13] = ACTIONS(9080), + [aux_sym_def_type_statement_token14] = ACTIONS(9080), + [aux_sym_call_statement_token1] = ACTIONS(9080), + [sym__ambiguous_call_statement] = ACTIONS(9080), + [aux_sym_addressof_expression_token1] = ACTIONS(9080), + [aux_sym_type_of_expression_token1] = ACTIONS(9080), + [aux_sym_unary_expression_token1] = ACTIONS(9080), + [sym_string_literal] = ACTIONS(9082), + [sym_number_literal] = ACTIONS(9082), + [aux_sym_boolean_literal_token1] = ACTIONS(9080), + [aux_sym_boolean_literal_token2] = ACTIONS(9080), + [sym_nothing_literal] = ACTIONS(9080), + [sym_null_literal] = ACTIONS(9080), + [sym_empty_literal] = ACTIONS(9080), + [sym_date_literal] = ACTIONS(9082), + [anon_sym_POUND] = ACTIONS(9080), + }, + [STATE(5514)] = { + [aux_sym__argument_sequence_repeat1] = STATE(5140), + [sym_identifier] = ACTIONS(8549), + [sym_newline] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8549), + [aux_sym_frm_property_statement_token1] = ACTIONS(8549), + [anon_sym_DOT] = ACTIONS(8549), + [anon_sym_BANG] = ACTIONS(8551), + [aux_sym__attribute_identifier_token1] = ACTIONS(8549), + [aux_sym_option_statement_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8549), + [aux_sym_preprocessor_const_token1] = ACTIONS(8549), + [sym_static_modifier] = ACTIONS(8549), + [sym__dim_keyword] = ACTIONS(8549), + [sym__redim_keyword] = ACTIONS(8549), + [aux_sym_get_accessor_token1] = ACTIONS(8549), + [aux_sym_set_accessor_token1] = ACTIONS(8549), + [anon_sym_COMMA] = ACTIONS(10639), + [aux_sym_const_declaration_token1] = ACTIONS(8549), + [anon_sym_LPAREN] = ACTIONS(8551), + [aux_sym_as_type_clause_token2] = ACTIONS(8549), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8549), + [aux_sym_visibility_token1] = ACTIONS(8549), + [aux_sym_visibility_token2] = ACTIONS(8549), + [aux_sym_elseif_fragment_token1] = ACTIONS(8549), + [aux_sym_else_fragment_token1] = ACTIONS(8549), + [aux_sym_select_statement_token1] = ACTIONS(8549), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8549), + [aux_sym__for_header_token1] = ACTIONS(8549), + [aux_sym_do_statement_token1] = ACTIONS(8549), + [aux_sym_do_condition_token1] = ACTIONS(8549), + [aux_sym_with_statement_token1] = ACTIONS(8549), + [aux_sym_exit_statement_token1] = ACTIONS(8549), + [sym_end_statement] = ACTIONS(8551), + [aux_sym_on_goto_statement_token1] = ACTIONS(8549), + [aux_sym_on_goto_statement_token2] = ACTIONS(8549), + [aux_sym_on_error_statement_token2] = ACTIONS(8549), + [sym__ambiguous_redim_statement] = ACTIONS(8551), + [aux_sym_erase_statement_token1] = ACTIONS(8549), + [aux_sym_open_statement_token1] = ACTIONS(8549), + [aux_sym_file_mode_token2] = ACTIONS(8549), + [aux_sym_file_access_token2] = ACTIONS(8549), + [aux_sym_file_lock_token2] = ACTIONS(8549), + [aux_sym_print_statement_token1] = ACTIONS(8549), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_DASH] = ACTIONS(8549), + [anon_sym_QMARK] = ACTIONS(8551), + [aux_sym_close_statement_token1] = ACTIONS(8549), + [aux_sym_put_statement_token1] = ACTIONS(8549), + [aux_sym_unlock_statement_token1] = ACTIONS(8549), + [aux_sym_seek_statement_token1] = ACTIONS(8549), + [sym_reset_statement] = ACTIONS(8549), + [aux_sym_raise_event_statement_token1] = ACTIONS(8549), + [sym_stop_statement] = ACTIONS(8549), + [sym_beep_statement] = ACTIONS(8549), + [aux_sym_unload_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token2] = ACTIONS(8549), + [aux_sym_def_type_statement_token3] = ACTIONS(8549), + [aux_sym_def_type_statement_token4] = ACTIONS(8549), + [aux_sym_def_type_statement_token5] = ACTIONS(8549), + [aux_sym_def_type_statement_token6] = ACTIONS(8549), + [aux_sym_def_type_statement_token7] = ACTIONS(8549), + [aux_sym_def_type_statement_token8] = ACTIONS(8549), + [aux_sym_def_type_statement_token9] = ACTIONS(8549), + [aux_sym_def_type_statement_token10] = ACTIONS(8549), + [aux_sym_def_type_statement_token11] = ACTIONS(8549), + [aux_sym_def_type_statement_token12] = ACTIONS(8549), + [aux_sym_def_type_statement_token13] = ACTIONS(8549), + [aux_sym_def_type_statement_token14] = ACTIONS(8549), + [aux_sym_call_statement_token1] = ACTIONS(8549), + [sym__ambiguous_call_statement] = ACTIONS(8549), + [aux_sym_addressof_expression_token1] = ACTIONS(8549), + [aux_sym_type_of_expression_token1] = ACTIONS(8549), + [aux_sym_unary_expression_token1] = ACTIONS(8549), + [sym_string_literal] = ACTIONS(8551), + [sym_number_literal] = ACTIONS(8551), + [aux_sym_boolean_literal_token1] = ACTIONS(8549), + [aux_sym_boolean_literal_token2] = ACTIONS(8549), + [sym_nothing_literal] = ACTIONS(8549), + [sym_null_literal] = ACTIONS(8549), + [sym_empty_literal] = ACTIONS(8549), + [sym_date_literal] = ACTIONS(8551), + [anon_sym_POUND] = ACTIONS(8549), + }, + [STATE(5515)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5802), + [sym_identifier] = ACTIONS(8095), + [sym_newline] = ACTIONS(8097), + [anon_sym_COLON] = ACTIONS(8097), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8095), + [aux_sym_frm_property_statement_token1] = ACTIONS(8095), + [anon_sym_DOT] = ACTIONS(8095), + [anon_sym_BANG] = ACTIONS(8097), + [aux_sym__attribute_identifier_token1] = ACTIONS(8095), + [aux_sym_option_statement_token3] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8095), + [aux_sym_preprocessor_const_token1] = ACTIONS(8095), + [sym_static_modifier] = ACTIONS(8095), + [sym__dim_keyword] = ACTIONS(8095), + [sym__redim_keyword] = ACTIONS(8095), + [aux_sym_get_accessor_token1] = ACTIONS(8095), + [aux_sym_set_accessor_token1] = ACTIONS(8095), + [anon_sym_COMMA] = ACTIONS(10543), + [aux_sym_const_declaration_token1] = ACTIONS(8095), + [anon_sym_LPAREN] = ACTIONS(8097), + [aux_sym_as_type_clause_token2] = ACTIONS(8095), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8095), + [aux_sym_visibility_token1] = ACTIONS(8095), + [aux_sym_visibility_token2] = ACTIONS(8095), + [aux_sym_elseif_fragment_token1] = ACTIONS(8095), + [aux_sym_else_fragment_token1] = ACTIONS(8095), + [aux_sym_select_statement_token1] = ACTIONS(8095), + [aux_sym__for_header_token1] = ACTIONS(8095), + [aux_sym_do_statement_token1] = ACTIONS(8095), + [aux_sym_do_statement_token2] = ACTIONS(8095), + [aux_sym_do_condition_token1] = ACTIONS(8095), + [aux_sym_with_statement_token1] = ACTIONS(8095), + [aux_sym_exit_statement_token1] = ACTIONS(8095), + [sym_end_statement] = ACTIONS(8097), + [aux_sym_on_goto_statement_token1] = ACTIONS(8095), + [aux_sym_on_goto_statement_token2] = ACTIONS(8095), + [aux_sym_on_error_statement_token2] = ACTIONS(8095), + [sym__ambiguous_redim_statement] = ACTIONS(8097), + [aux_sym_erase_statement_token1] = ACTIONS(8095), + [aux_sym_open_statement_token1] = ACTIONS(8095), + [aux_sym_file_mode_token2] = ACTIONS(8095), + [aux_sym_file_access_token2] = ACTIONS(8095), + [aux_sym_file_lock_token2] = ACTIONS(8095), + [aux_sym_print_statement_token1] = ACTIONS(8095), + [anon_sym_PLUS] = ACTIONS(8097), + [anon_sym_DASH] = ACTIONS(8095), + [anon_sym_QMARK] = ACTIONS(8097), + [aux_sym_close_statement_token1] = ACTIONS(8095), + [aux_sym_put_statement_token1] = ACTIONS(8095), + [aux_sym_unlock_statement_token1] = ACTIONS(8095), + [aux_sym_seek_statement_token1] = ACTIONS(8095), + [sym_reset_statement] = ACTIONS(8095), + [aux_sym_raise_event_statement_token1] = ACTIONS(8095), + [sym_stop_statement] = ACTIONS(8095), + [sym_beep_statement] = ACTIONS(8095), + [aux_sym_unload_statement_token1] = ACTIONS(8095), + [aux_sym_def_type_statement_token1] = ACTIONS(8095), + [aux_sym_def_type_statement_token2] = ACTIONS(8095), + [aux_sym_def_type_statement_token3] = ACTIONS(8095), + [aux_sym_def_type_statement_token4] = ACTIONS(8095), + [aux_sym_def_type_statement_token5] = ACTIONS(8095), + [aux_sym_def_type_statement_token6] = ACTIONS(8095), + [aux_sym_def_type_statement_token7] = ACTIONS(8095), + [aux_sym_def_type_statement_token8] = ACTIONS(8095), + [aux_sym_def_type_statement_token9] = ACTIONS(8095), + [aux_sym_def_type_statement_token10] = ACTIONS(8095), + [aux_sym_def_type_statement_token11] = ACTIONS(8095), + [aux_sym_def_type_statement_token12] = ACTIONS(8095), + [aux_sym_def_type_statement_token13] = ACTIONS(8095), + [aux_sym_def_type_statement_token14] = ACTIONS(8095), + [aux_sym_call_statement_token1] = ACTIONS(8095), + [sym__ambiguous_call_statement] = ACTIONS(8095), + [aux_sym_addressof_expression_token1] = ACTIONS(8095), + [aux_sym_type_of_expression_token1] = ACTIONS(8095), + [aux_sym_unary_expression_token1] = ACTIONS(8095), + [sym_string_literal] = ACTIONS(8097), + [sym_number_literal] = ACTIONS(8097), + [aux_sym_boolean_literal_token1] = ACTIONS(8095), + [aux_sym_boolean_literal_token2] = ACTIONS(8095), + [sym_nothing_literal] = ACTIONS(8095), + [sym_null_literal] = ACTIONS(8095), + [sym_empty_literal] = ACTIONS(8095), + [sym_date_literal] = ACTIONS(8097), + [anon_sym_POUND] = ACTIONS(8095), + }, + [STATE(5516)] = { + [sym_identifier] = ACTIONS(9084), + [sym_newline] = ACTIONS(9086), + [anon_sym_COLON] = ACTIONS(9086), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9084), + [aux_sym_frm_property_statement_token1] = ACTIONS(9084), + [anon_sym_DOT] = ACTIONS(9084), + [anon_sym_BANG] = ACTIONS(9086), + [aux_sym__attribute_identifier_token1] = ACTIONS(9084), + [aux_sym_option_statement_token3] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9084), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9084), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9084), + [aux_sym_preprocessor_const_token1] = ACTIONS(9084), + [sym_static_modifier] = ACTIONS(9084), + [sym__dim_keyword] = ACTIONS(9084), + [sym__redim_keyword] = ACTIONS(9084), + [aux_sym_get_accessor_token1] = ACTIONS(9084), + [aux_sym_set_accessor_token1] = ACTIONS(9084), + [aux_sym_const_declaration_token1] = ACTIONS(9084), + [anon_sym_LPAREN] = ACTIONS(9086), + [aux_sym_as_type_clause_token2] = ACTIONS(9084), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9084), + [aux_sym_visibility_token1] = ACTIONS(9084), + [aux_sym_visibility_token2] = ACTIONS(9084), + [aux_sym_elseif_fragment_token1] = ACTIONS(9084), + [aux_sym_else_fragment_token1] = ACTIONS(9084), + [aux_sym_select_statement_token1] = ACTIONS(9084), + [aux_sym__for_header_token1] = ACTIONS(9084), + [aux_sym_do_statement_token1] = ACTIONS(9084), + [aux_sym_do_condition_token1] = ACTIONS(9084), + [aux_sym_with_statement_token1] = ACTIONS(9084), + [aux_sym_exit_statement_token1] = ACTIONS(9084), + [sym_end_statement] = ACTIONS(9086), + [aux_sym_on_goto_statement_token1] = ACTIONS(9084), + [aux_sym_on_goto_statement_token2] = ACTIONS(9084), + [aux_sym_on_error_statement_token2] = ACTIONS(9084), + [sym__ambiguous_redim_statement] = ACTIONS(9086), + [aux_sym_erase_statement_token1] = ACTIONS(9084), + [aux_sym_open_statement_token1] = ACTIONS(9084), + [aux_sym_file_mode_token2] = ACTIONS(9084), + [aux_sym_file_access_token2] = ACTIONS(9084), + [aux_sym_file_lock_token2] = ACTIONS(9084), + [aux_sym_print_statement_token1] = ACTIONS(9084), + [anon_sym_PLUS] = ACTIONS(9086), + [anon_sym_DASH] = ACTIONS(9084), + [anon_sym_QMARK] = ACTIONS(9086), + [aux_sym_close_statement_token1] = ACTIONS(9084), + [aux_sym_put_statement_token1] = ACTIONS(9084), + [aux_sym_unlock_statement_token1] = ACTIONS(9084), + [aux_sym_seek_statement_token1] = ACTIONS(9084), + [sym_reset_statement] = ACTIONS(9084), + [aux_sym_raise_event_statement_token1] = ACTIONS(9084), + [sym_stop_statement] = ACTIONS(9084), + [sym_beep_statement] = ACTIONS(9084), + [aux_sym_unload_statement_token1] = ACTIONS(9084), + [aux_sym_def_type_statement_token1] = ACTIONS(9084), + [aux_sym_def_type_statement_token2] = ACTIONS(9084), + [aux_sym_def_type_statement_token3] = ACTIONS(9084), + [aux_sym_def_type_statement_token4] = ACTIONS(9084), + [aux_sym_def_type_statement_token5] = ACTIONS(9084), + [aux_sym_def_type_statement_token6] = ACTIONS(9084), + [aux_sym_def_type_statement_token7] = ACTIONS(9084), + [aux_sym_def_type_statement_token8] = ACTIONS(9084), + [aux_sym_def_type_statement_token9] = ACTIONS(9084), + [aux_sym_def_type_statement_token10] = ACTIONS(9084), + [aux_sym_def_type_statement_token11] = ACTIONS(9084), + [aux_sym_def_type_statement_token12] = ACTIONS(9084), + [aux_sym_def_type_statement_token13] = ACTIONS(9084), + [aux_sym_def_type_statement_token14] = ACTIONS(9084), + [aux_sym_call_statement_token1] = ACTIONS(9084), + [sym__ambiguous_call_statement] = ACTIONS(9084), + [aux_sym_addressof_expression_token1] = ACTIONS(9084), + [aux_sym_type_of_expression_token1] = ACTIONS(9084), + [aux_sym_unary_expression_token1] = ACTIONS(9084), + [sym_string_literal] = ACTIONS(9086), + [sym_number_literal] = ACTIONS(9086), + [aux_sym_boolean_literal_token1] = ACTIONS(9084), + [aux_sym_boolean_literal_token2] = ACTIONS(9084), + [sym_nothing_literal] = ACTIONS(9084), + [sym_null_literal] = ACTIONS(9084), + [sym_empty_literal] = ACTIONS(9084), + [sym_date_literal] = ACTIONS(9086), + [anon_sym_POUND] = ACTIONS(9084), + }, + [STATE(5517)] = { + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(8549), + [sym_newline] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8549), + [aux_sym_frm_property_statement_token1] = ACTIONS(8549), + [anon_sym_DOT] = ACTIONS(8549), + [anon_sym_BANG] = ACTIONS(8551), + [aux_sym__attribute_identifier_token1] = ACTIONS(8549), + [aux_sym_option_statement_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8549), + [aux_sym_preprocessor_const_token1] = ACTIONS(8549), + [sym_static_modifier] = ACTIONS(8549), + [sym__dim_keyword] = ACTIONS(8549), + [sym__redim_keyword] = ACTIONS(8549), + [aux_sym_get_accessor_token1] = ACTIONS(8549), + [aux_sym_set_accessor_token1] = ACTIONS(8549), + [aux_sym_const_declaration_token1] = ACTIONS(8549), + [anon_sym_LPAREN] = ACTIONS(8551), + [aux_sym_as_type_clause_token2] = ACTIONS(8549), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8549), + [aux_sym_visibility_token1] = ACTIONS(8549), + [aux_sym_visibility_token2] = ACTIONS(8549), + [aux_sym_elseif_fragment_token1] = ACTIONS(8549), + [aux_sym_else_fragment_token1] = ACTIONS(8549), + [aux_sym_select_statement_token1] = ACTIONS(8549), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8549), + [aux_sym__for_header_token1] = ACTIONS(8549), + [aux_sym_do_statement_token1] = ACTIONS(8549), + [aux_sym_do_condition_token1] = ACTIONS(8549), + [aux_sym_with_statement_token1] = ACTIONS(8549), + [aux_sym_exit_statement_token1] = ACTIONS(8549), + [sym_end_statement] = ACTIONS(8551), + [aux_sym_on_goto_statement_token1] = ACTIONS(8549), + [aux_sym_on_goto_statement_token2] = ACTIONS(8549), + [aux_sym_on_error_statement_token2] = ACTIONS(8549), + [sym__ambiguous_redim_statement] = ACTIONS(8551), + [aux_sym_erase_statement_token1] = ACTIONS(8549), + [aux_sym_open_statement_token1] = ACTIONS(8549), + [aux_sym_file_mode_token2] = ACTIONS(8549), + [aux_sym_file_access_token2] = ACTIONS(8549), + [aux_sym_file_lock_token2] = ACTIONS(8549), + [aux_sym_print_statement_token1] = ACTIONS(8549), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_DASH] = ACTIONS(8549), + [anon_sym_SEMI] = ACTIONS(10165), + [anon_sym_QMARK] = ACTIONS(8551), + [aux_sym_close_statement_token1] = ACTIONS(8549), + [aux_sym_put_statement_token1] = ACTIONS(8549), + [aux_sym_unlock_statement_token1] = ACTIONS(8549), + [aux_sym_seek_statement_token1] = ACTIONS(8549), + [sym_reset_statement] = ACTIONS(8549), + [aux_sym_raise_event_statement_token1] = ACTIONS(8549), + [sym_stop_statement] = ACTIONS(8549), + [sym_beep_statement] = ACTIONS(8549), + [aux_sym_unload_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token2] = ACTIONS(8549), + [aux_sym_def_type_statement_token3] = ACTIONS(8549), + [aux_sym_def_type_statement_token4] = ACTIONS(8549), + [aux_sym_def_type_statement_token5] = ACTIONS(8549), + [aux_sym_def_type_statement_token6] = ACTIONS(8549), + [aux_sym_def_type_statement_token7] = ACTIONS(8549), + [aux_sym_def_type_statement_token8] = ACTIONS(8549), + [aux_sym_def_type_statement_token9] = ACTIONS(8549), + [aux_sym_def_type_statement_token10] = ACTIONS(8549), + [aux_sym_def_type_statement_token11] = ACTIONS(8549), + [aux_sym_def_type_statement_token12] = ACTIONS(8549), + [aux_sym_def_type_statement_token13] = ACTIONS(8549), + [aux_sym_def_type_statement_token14] = ACTIONS(8549), + [aux_sym_call_statement_token1] = ACTIONS(8549), + [sym__ambiguous_call_statement] = ACTIONS(8549), + [aux_sym_addressof_expression_token1] = ACTIONS(8549), + [aux_sym_type_of_expression_token1] = ACTIONS(8549), + [aux_sym_unary_expression_token1] = ACTIONS(8549), + [sym_string_literal] = ACTIONS(8551), + [sym_number_literal] = ACTIONS(8551), + [aux_sym_boolean_literal_token1] = ACTIONS(8549), + [aux_sym_boolean_literal_token2] = ACTIONS(8549), + [sym_nothing_literal] = ACTIONS(8549), + [sym_null_literal] = ACTIONS(8549), + [sym_empty_literal] = ACTIONS(8549), + [sym_date_literal] = ACTIONS(8551), + [anon_sym_POUND] = ACTIONS(8549), + }, + [STATE(5518)] = { + [sym_identifier] = ACTIONS(9088), + [sym_newline] = ACTIONS(9090), + [anon_sym_COLON] = ACTIONS(9090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9088), + [aux_sym_frm_property_statement_token1] = ACTIONS(9088), + [anon_sym_DOT] = ACTIONS(9088), + [anon_sym_BANG] = ACTIONS(9090), + [aux_sym__attribute_identifier_token1] = ACTIONS(9088), + [aux_sym_option_statement_token3] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9088), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9088), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9088), + [aux_sym_preprocessor_const_token1] = ACTIONS(9088), + [sym_static_modifier] = ACTIONS(9088), + [sym__dim_keyword] = ACTIONS(9088), + [sym__redim_keyword] = ACTIONS(9088), + [aux_sym_get_accessor_token1] = ACTIONS(9088), + [aux_sym_set_accessor_token1] = ACTIONS(9088), + [aux_sym_const_declaration_token1] = ACTIONS(9088), + [anon_sym_LPAREN] = ACTIONS(9090), + [aux_sym_as_type_clause_token2] = ACTIONS(9088), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9088), + [aux_sym_visibility_token1] = ACTIONS(9088), + [aux_sym_visibility_token2] = ACTIONS(9088), + [aux_sym_elseif_fragment_token1] = ACTIONS(9088), + [aux_sym_else_fragment_token1] = ACTIONS(9088), + [aux_sym_select_statement_token1] = ACTIONS(9088), + [aux_sym__for_header_token1] = ACTIONS(9088), + [aux_sym_do_statement_token1] = ACTIONS(9088), + [aux_sym_do_condition_token1] = ACTIONS(9088), + [aux_sym_with_statement_token1] = ACTIONS(9088), + [aux_sym_exit_statement_token1] = ACTIONS(9088), + [sym_end_statement] = ACTIONS(9090), + [aux_sym_on_goto_statement_token1] = ACTIONS(9088), + [aux_sym_on_goto_statement_token2] = ACTIONS(9088), + [aux_sym_on_error_statement_token2] = ACTIONS(9088), + [sym__ambiguous_redim_statement] = ACTIONS(9090), + [aux_sym_erase_statement_token1] = ACTIONS(9088), + [aux_sym_open_statement_token1] = ACTIONS(9088), + [aux_sym_file_mode_token2] = ACTIONS(9088), + [aux_sym_file_access_token2] = ACTIONS(9088), + [aux_sym_file_lock_token2] = ACTIONS(9088), + [aux_sym_print_statement_token1] = ACTIONS(9088), + [anon_sym_PLUS] = ACTIONS(9090), + [anon_sym_DASH] = ACTIONS(9088), + [anon_sym_QMARK] = ACTIONS(9090), + [aux_sym_close_statement_token1] = ACTIONS(9088), + [aux_sym_put_statement_token1] = ACTIONS(9088), + [aux_sym_unlock_statement_token1] = ACTIONS(9088), + [aux_sym_seek_statement_token1] = ACTIONS(9088), + [sym_reset_statement] = ACTIONS(9088), + [aux_sym_raise_event_statement_token1] = ACTIONS(9088), + [sym_stop_statement] = ACTIONS(9088), + [sym_beep_statement] = ACTIONS(9088), + [aux_sym_unload_statement_token1] = ACTIONS(9088), + [aux_sym_def_type_statement_token1] = ACTIONS(9088), + [aux_sym_def_type_statement_token2] = ACTIONS(9088), + [aux_sym_def_type_statement_token3] = ACTIONS(9088), + [aux_sym_def_type_statement_token4] = ACTIONS(9088), + [aux_sym_def_type_statement_token5] = ACTIONS(9088), + [aux_sym_def_type_statement_token6] = ACTIONS(9088), + [aux_sym_def_type_statement_token7] = ACTIONS(9088), + [aux_sym_def_type_statement_token8] = ACTIONS(9088), + [aux_sym_def_type_statement_token9] = ACTIONS(9088), + [aux_sym_def_type_statement_token10] = ACTIONS(9088), + [aux_sym_def_type_statement_token11] = ACTIONS(9088), + [aux_sym_def_type_statement_token12] = ACTIONS(9088), + [aux_sym_def_type_statement_token13] = ACTIONS(9088), + [aux_sym_def_type_statement_token14] = ACTIONS(9088), + [aux_sym_call_statement_token1] = ACTIONS(9088), + [sym__ambiguous_call_statement] = ACTIONS(9088), + [aux_sym_addressof_expression_token1] = ACTIONS(9088), + [aux_sym_type_of_expression_token1] = ACTIONS(9088), + [aux_sym_unary_expression_token1] = ACTIONS(9088), + [sym_string_literal] = ACTIONS(9090), + [sym_number_literal] = ACTIONS(9090), + [aux_sym_boolean_literal_token1] = ACTIONS(9088), + [aux_sym_boolean_literal_token2] = ACTIONS(9088), + [sym_nothing_literal] = ACTIONS(9088), + [sym_null_literal] = ACTIONS(9088), + [sym_empty_literal] = ACTIONS(9088), + [sym_date_literal] = ACTIONS(9090), + [anon_sym_POUND] = ACTIONS(9088), + }, + [STATE(5519)] = { + [sym_identifier] = ACTIONS(9092), + [sym_newline] = ACTIONS(9094), + [anon_sym_COLON] = ACTIONS(10641), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9092), + [aux_sym_frm_property_statement_token1] = ACTIONS(9092), + [anon_sym_DOT] = ACTIONS(9092), + [anon_sym_BANG] = ACTIONS(9094), + [aux_sym__attribute_identifier_token1] = ACTIONS(9092), + [aux_sym_option_statement_token3] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9092), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9092), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9092), + [aux_sym_preprocessor_const_token1] = ACTIONS(9092), + [sym_static_modifier] = ACTIONS(9092), + [sym__dim_keyword] = ACTIONS(9092), + [sym__redim_keyword] = ACTIONS(9092), + [aux_sym_get_accessor_token1] = ACTIONS(9092), + [aux_sym_set_accessor_token1] = ACTIONS(9092), + [aux_sym_const_declaration_token1] = ACTIONS(9092), + [anon_sym_LPAREN] = ACTIONS(9094), + [aux_sym_as_type_clause_token2] = ACTIONS(9092), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9092), + [aux_sym_visibility_token1] = ACTIONS(9092), + [aux_sym_visibility_token2] = ACTIONS(9092), + [aux_sym_elseif_fragment_token1] = ACTIONS(9092), + [aux_sym_else_fragment_token1] = ACTIONS(9092), + [aux_sym_select_statement_token1] = ACTIONS(9092), + [aux_sym__for_header_token1] = ACTIONS(9092), + [aux_sym_do_statement_token1] = ACTIONS(9092), + [aux_sym_do_condition_token1] = ACTIONS(9092), + [aux_sym_with_statement_token1] = ACTIONS(9092), + [aux_sym_exit_statement_token1] = ACTIONS(9092), + [sym_end_statement] = ACTIONS(9094), + [aux_sym_on_goto_statement_token1] = ACTIONS(9092), + [aux_sym_on_goto_statement_token2] = ACTIONS(9092), + [aux_sym_on_error_statement_token2] = ACTIONS(9092), + [sym__ambiguous_redim_statement] = ACTIONS(9094), + [aux_sym_erase_statement_token1] = ACTIONS(9092), + [aux_sym_open_statement_token1] = ACTIONS(9092), + [aux_sym_file_mode_token2] = ACTIONS(9092), + [aux_sym_file_access_token2] = ACTIONS(9092), + [aux_sym_file_lock_token2] = ACTIONS(9092), + [aux_sym_print_statement_token1] = ACTIONS(9092), + [anon_sym_PLUS] = ACTIONS(9094), + [anon_sym_DASH] = ACTIONS(9092), + [anon_sym_QMARK] = ACTIONS(9094), + [aux_sym_close_statement_token1] = ACTIONS(9092), + [aux_sym_put_statement_token1] = ACTIONS(9092), + [aux_sym_unlock_statement_token1] = ACTIONS(9092), + [aux_sym_seek_statement_token1] = ACTIONS(9092), + [sym_reset_statement] = ACTIONS(9092), + [aux_sym_raise_event_statement_token1] = ACTIONS(9092), + [sym_stop_statement] = ACTIONS(9092), + [sym_beep_statement] = ACTIONS(9092), + [aux_sym_unload_statement_token1] = ACTIONS(9092), + [aux_sym_def_type_statement_token1] = ACTIONS(9092), + [aux_sym_def_type_statement_token2] = ACTIONS(9092), + [aux_sym_def_type_statement_token3] = ACTIONS(9092), + [aux_sym_def_type_statement_token4] = ACTIONS(9092), + [aux_sym_def_type_statement_token5] = ACTIONS(9092), + [aux_sym_def_type_statement_token6] = ACTIONS(9092), + [aux_sym_def_type_statement_token7] = ACTIONS(9092), + [aux_sym_def_type_statement_token8] = ACTIONS(9092), + [aux_sym_def_type_statement_token9] = ACTIONS(9092), + [aux_sym_def_type_statement_token10] = ACTIONS(9092), + [aux_sym_def_type_statement_token11] = ACTIONS(9092), + [aux_sym_def_type_statement_token12] = ACTIONS(9092), + [aux_sym_def_type_statement_token13] = ACTIONS(9092), + [aux_sym_def_type_statement_token14] = ACTIONS(9092), + [aux_sym_call_statement_token1] = ACTIONS(9092), + [sym__ambiguous_call_statement] = ACTIONS(9092), + [aux_sym_addressof_expression_token1] = ACTIONS(9092), + [aux_sym_type_of_expression_token1] = ACTIONS(9092), + [aux_sym_unary_expression_token1] = ACTIONS(9092), + [sym_string_literal] = ACTIONS(9094), + [sym_number_literal] = ACTIONS(9094), + [aux_sym_boolean_literal_token1] = ACTIONS(9092), + [aux_sym_boolean_literal_token2] = ACTIONS(9092), + [sym_nothing_literal] = ACTIONS(9092), + [sym_null_literal] = ACTIONS(9092), + [sym_empty_literal] = ACTIONS(9092), + [sym_date_literal] = ACTIONS(9094), + [anon_sym_POUND] = ACTIONS(9092), + }, + [STATE(5520)] = { + [sym_identifier] = ACTIONS(9099), + [sym_newline] = ACTIONS(9101), + [anon_sym_COLON] = ACTIONS(10644), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9099), + [aux_sym_frm_property_statement_token1] = ACTIONS(9099), + [anon_sym_DOT] = ACTIONS(9099), + [anon_sym_BANG] = ACTIONS(9101), + [aux_sym__attribute_identifier_token1] = ACTIONS(9099), + [aux_sym_option_statement_token3] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9099), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9099), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9099), + [aux_sym_preprocessor_const_token1] = ACTIONS(9099), + [sym_static_modifier] = ACTIONS(9099), + [sym__dim_keyword] = ACTIONS(9099), + [sym__redim_keyword] = ACTIONS(9099), + [aux_sym_get_accessor_token1] = ACTIONS(9099), + [aux_sym_set_accessor_token1] = ACTIONS(9099), + [aux_sym_const_declaration_token1] = ACTIONS(9099), + [anon_sym_LPAREN] = ACTIONS(9101), + [aux_sym_as_type_clause_token2] = ACTIONS(9099), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9099), + [aux_sym_visibility_token1] = ACTIONS(9099), + [aux_sym_visibility_token2] = ACTIONS(9099), + [aux_sym_elseif_fragment_token1] = ACTIONS(9099), + [aux_sym_else_fragment_token1] = ACTIONS(9099), + [aux_sym_select_statement_token1] = ACTIONS(9099), + [aux_sym__for_header_token1] = ACTIONS(9099), + [aux_sym_do_statement_token1] = ACTIONS(9099), + [aux_sym_do_condition_token1] = ACTIONS(9099), + [aux_sym_with_statement_token1] = ACTIONS(9099), + [aux_sym_exit_statement_token1] = ACTIONS(9099), + [sym_end_statement] = ACTIONS(9101), + [aux_sym_on_goto_statement_token1] = ACTIONS(9099), + [aux_sym_on_goto_statement_token2] = ACTIONS(9099), + [aux_sym_on_error_statement_token2] = ACTIONS(9099), + [sym__ambiguous_redim_statement] = ACTIONS(9101), + [aux_sym_erase_statement_token1] = ACTIONS(9099), + [aux_sym_open_statement_token1] = ACTIONS(9099), + [aux_sym_file_mode_token2] = ACTIONS(9099), + [aux_sym_file_access_token2] = ACTIONS(9099), + [aux_sym_file_lock_token2] = ACTIONS(9099), + [aux_sym_print_statement_token1] = ACTIONS(9099), + [anon_sym_PLUS] = ACTIONS(9101), + [anon_sym_DASH] = ACTIONS(9099), + [anon_sym_QMARK] = ACTIONS(9101), + [aux_sym_close_statement_token1] = ACTIONS(9099), + [aux_sym_put_statement_token1] = ACTIONS(9099), + [aux_sym_unlock_statement_token1] = ACTIONS(9099), + [aux_sym_seek_statement_token1] = ACTIONS(9099), + [sym_reset_statement] = ACTIONS(9099), + [aux_sym_raise_event_statement_token1] = ACTIONS(9099), + [sym_stop_statement] = ACTIONS(9099), + [sym_beep_statement] = ACTIONS(9099), + [aux_sym_unload_statement_token1] = ACTIONS(9099), + [aux_sym_def_type_statement_token1] = ACTIONS(9099), + [aux_sym_def_type_statement_token2] = ACTIONS(9099), + [aux_sym_def_type_statement_token3] = ACTIONS(9099), + [aux_sym_def_type_statement_token4] = ACTIONS(9099), + [aux_sym_def_type_statement_token5] = ACTIONS(9099), + [aux_sym_def_type_statement_token6] = ACTIONS(9099), + [aux_sym_def_type_statement_token7] = ACTIONS(9099), + [aux_sym_def_type_statement_token8] = ACTIONS(9099), + [aux_sym_def_type_statement_token9] = ACTIONS(9099), + [aux_sym_def_type_statement_token10] = ACTIONS(9099), + [aux_sym_def_type_statement_token11] = ACTIONS(9099), + [aux_sym_def_type_statement_token12] = ACTIONS(9099), + [aux_sym_def_type_statement_token13] = ACTIONS(9099), + [aux_sym_def_type_statement_token14] = ACTIONS(9099), + [aux_sym_call_statement_token1] = ACTIONS(9099), + [sym__ambiguous_call_statement] = ACTIONS(9099), + [aux_sym_addressof_expression_token1] = ACTIONS(9099), + [aux_sym_type_of_expression_token1] = ACTIONS(9099), + [aux_sym_unary_expression_token1] = ACTIONS(9099), + [sym_string_literal] = ACTIONS(9101), + [sym_number_literal] = ACTIONS(9101), + [aux_sym_boolean_literal_token1] = ACTIONS(9099), + [aux_sym_boolean_literal_token2] = ACTIONS(9099), + [sym_nothing_literal] = ACTIONS(9099), + [sym_null_literal] = ACTIONS(9099), + [sym_empty_literal] = ACTIONS(9099), + [sym_date_literal] = ACTIONS(9101), + [anon_sym_POUND] = ACTIONS(9099), + }, + [STATE(5521)] = { + [sym_identifier] = ACTIONS(9110), + [sym_newline] = ACTIONS(9112), + [anon_sym_COLON] = ACTIONS(9112), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9110), + [aux_sym_frm_property_statement_token1] = ACTIONS(9110), + [anon_sym_DOT] = ACTIONS(9110), + [anon_sym_BANG] = ACTIONS(9112), + [aux_sym__attribute_identifier_token1] = ACTIONS(9110), + [aux_sym_option_statement_token3] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9110), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9110), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9110), + [aux_sym_preprocessor_const_token1] = ACTIONS(9110), + [sym_static_modifier] = ACTIONS(9110), + [sym__dim_keyword] = ACTIONS(9110), + [sym__redim_keyword] = ACTIONS(9110), + [aux_sym_get_accessor_token1] = ACTIONS(9110), + [aux_sym_set_accessor_token1] = ACTIONS(9110), + [aux_sym_const_declaration_token1] = ACTIONS(9110), + [anon_sym_LPAREN] = ACTIONS(9112), + [aux_sym_as_type_clause_token2] = ACTIONS(9110), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9110), + [aux_sym_visibility_token1] = ACTIONS(9110), + [aux_sym_visibility_token2] = ACTIONS(9110), + [aux_sym_elseif_fragment_token1] = ACTIONS(9110), + [aux_sym_else_fragment_token1] = ACTIONS(9110), + [aux_sym_select_statement_token1] = ACTIONS(9110), + [aux_sym__for_header_token1] = ACTIONS(9110), + [aux_sym_do_statement_token1] = ACTIONS(9110), + [aux_sym_do_condition_token1] = ACTIONS(9110), + [aux_sym_with_statement_token1] = ACTIONS(9110), + [aux_sym_exit_statement_token1] = ACTIONS(9110), + [sym_end_statement] = ACTIONS(9112), + [aux_sym_on_goto_statement_token1] = ACTIONS(9110), + [aux_sym_on_goto_statement_token2] = ACTIONS(9110), + [aux_sym_on_error_statement_token2] = ACTIONS(9110), + [sym__ambiguous_redim_statement] = ACTIONS(9112), + [aux_sym_erase_statement_token1] = ACTIONS(9110), + [aux_sym_open_statement_token1] = ACTIONS(9110), + [aux_sym_file_mode_token2] = ACTIONS(9110), + [aux_sym_file_access_token2] = ACTIONS(9110), + [aux_sym_file_lock_token2] = ACTIONS(9110), + [aux_sym_print_statement_token1] = ACTIONS(9110), + [anon_sym_PLUS] = ACTIONS(9112), + [anon_sym_DASH] = ACTIONS(9110), + [anon_sym_QMARK] = ACTIONS(9112), + [aux_sym_close_statement_token1] = ACTIONS(9110), + [aux_sym_put_statement_token1] = ACTIONS(9110), + [aux_sym_unlock_statement_token1] = ACTIONS(9110), + [aux_sym_seek_statement_token1] = ACTIONS(9110), + [sym_reset_statement] = ACTIONS(9110), + [aux_sym_raise_event_statement_token1] = ACTIONS(9110), + [sym_stop_statement] = ACTIONS(9110), + [sym_beep_statement] = ACTIONS(9110), + [aux_sym_unload_statement_token1] = ACTIONS(9110), + [aux_sym_def_type_statement_token1] = ACTIONS(9110), + [aux_sym_def_type_statement_token2] = ACTIONS(9110), + [aux_sym_def_type_statement_token3] = ACTIONS(9110), + [aux_sym_def_type_statement_token4] = ACTIONS(9110), + [aux_sym_def_type_statement_token5] = ACTIONS(9110), + [aux_sym_def_type_statement_token6] = ACTIONS(9110), + [aux_sym_def_type_statement_token7] = ACTIONS(9110), + [aux_sym_def_type_statement_token8] = ACTIONS(9110), + [aux_sym_def_type_statement_token9] = ACTIONS(9110), + [aux_sym_def_type_statement_token10] = ACTIONS(9110), + [aux_sym_def_type_statement_token11] = ACTIONS(9110), + [aux_sym_def_type_statement_token12] = ACTIONS(9110), + [aux_sym_def_type_statement_token13] = ACTIONS(9110), + [aux_sym_def_type_statement_token14] = ACTIONS(9110), + [aux_sym_call_statement_token1] = ACTIONS(9110), + [sym__ambiguous_call_statement] = ACTIONS(9110), + [aux_sym_addressof_expression_token1] = ACTIONS(9110), + [aux_sym_type_of_expression_token1] = ACTIONS(9110), + [aux_sym_unary_expression_token1] = ACTIONS(9110), + [sym_string_literal] = ACTIONS(9112), + [sym_number_literal] = ACTIONS(9112), + [aux_sym_boolean_literal_token1] = ACTIONS(9110), + [aux_sym_boolean_literal_token2] = ACTIONS(9110), + [sym_nothing_literal] = ACTIONS(9110), + [sym_null_literal] = ACTIONS(9110), + [sym_empty_literal] = ACTIONS(9110), + [sym_date_literal] = ACTIONS(9112), + [anon_sym_POUND] = ACTIONS(9110), + }, + [STATE(5522)] = { + [sym_identifier] = ACTIONS(9114), + [sym_newline] = ACTIONS(9116), + [anon_sym_COLON] = ACTIONS(9116), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9114), + [aux_sym_frm_property_statement_token1] = ACTIONS(9114), + [anon_sym_DOT] = ACTIONS(9114), + [anon_sym_BANG] = ACTIONS(9116), + [aux_sym__attribute_identifier_token1] = ACTIONS(9114), + [aux_sym_option_statement_token3] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9114), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9114), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9114), + [aux_sym_preprocessor_const_token1] = ACTIONS(9114), + [sym_static_modifier] = ACTIONS(9114), + [sym__dim_keyword] = ACTIONS(9114), + [sym__redim_keyword] = ACTIONS(9114), + [aux_sym_get_accessor_token1] = ACTIONS(9114), + [aux_sym_set_accessor_token1] = ACTIONS(9114), + [aux_sym_const_declaration_token1] = ACTIONS(9114), + [anon_sym_LPAREN] = ACTIONS(9116), + [aux_sym_as_type_clause_token2] = ACTIONS(9114), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9114), + [aux_sym_visibility_token1] = ACTIONS(9114), + [aux_sym_visibility_token2] = ACTIONS(9114), + [aux_sym_elseif_fragment_token1] = ACTIONS(9114), + [aux_sym_else_fragment_token1] = ACTIONS(9114), + [aux_sym_select_statement_token1] = ACTIONS(9114), + [aux_sym__for_header_token1] = ACTIONS(9114), + [aux_sym_do_statement_token1] = ACTIONS(9114), + [aux_sym_do_condition_token1] = ACTIONS(9114), + [aux_sym_with_statement_token1] = ACTIONS(9114), + [aux_sym_exit_statement_token1] = ACTIONS(9114), + [sym_end_statement] = ACTIONS(9116), + [aux_sym_on_goto_statement_token1] = ACTIONS(9114), + [aux_sym_on_goto_statement_token2] = ACTIONS(9114), + [aux_sym_on_error_statement_token2] = ACTIONS(9114), + [sym__ambiguous_redim_statement] = ACTIONS(9116), + [aux_sym_erase_statement_token1] = ACTIONS(9114), + [aux_sym_open_statement_token1] = ACTIONS(9114), + [aux_sym_file_mode_token2] = ACTIONS(9114), + [aux_sym_file_access_token2] = ACTIONS(9114), + [aux_sym_file_lock_token2] = ACTIONS(9114), + [aux_sym_print_statement_token1] = ACTIONS(9114), + [anon_sym_PLUS] = ACTIONS(9116), + [anon_sym_DASH] = ACTIONS(9114), + [anon_sym_QMARK] = ACTIONS(9116), + [aux_sym_close_statement_token1] = ACTIONS(9114), + [aux_sym_put_statement_token1] = ACTIONS(9114), + [aux_sym_unlock_statement_token1] = ACTIONS(9114), + [aux_sym_seek_statement_token1] = ACTIONS(9114), + [sym_reset_statement] = ACTIONS(9114), + [aux_sym_raise_event_statement_token1] = ACTIONS(9114), + [sym_stop_statement] = ACTIONS(9114), + [sym_beep_statement] = ACTIONS(9114), + [aux_sym_unload_statement_token1] = ACTIONS(9114), + [aux_sym_def_type_statement_token1] = ACTIONS(9114), + [aux_sym_def_type_statement_token2] = ACTIONS(9114), + [aux_sym_def_type_statement_token3] = ACTIONS(9114), + [aux_sym_def_type_statement_token4] = ACTIONS(9114), + [aux_sym_def_type_statement_token5] = ACTIONS(9114), + [aux_sym_def_type_statement_token6] = ACTIONS(9114), + [aux_sym_def_type_statement_token7] = ACTIONS(9114), + [aux_sym_def_type_statement_token8] = ACTIONS(9114), + [aux_sym_def_type_statement_token9] = ACTIONS(9114), + [aux_sym_def_type_statement_token10] = ACTIONS(9114), + [aux_sym_def_type_statement_token11] = ACTIONS(9114), + [aux_sym_def_type_statement_token12] = ACTIONS(9114), + [aux_sym_def_type_statement_token13] = ACTIONS(9114), + [aux_sym_def_type_statement_token14] = ACTIONS(9114), + [aux_sym_call_statement_token1] = ACTIONS(9114), + [sym__ambiguous_call_statement] = ACTIONS(9114), + [aux_sym_addressof_expression_token1] = ACTIONS(9114), + [aux_sym_type_of_expression_token1] = ACTIONS(9114), + [aux_sym_unary_expression_token1] = ACTIONS(9114), + [sym_string_literal] = ACTIONS(9116), + [sym_number_literal] = ACTIONS(9116), + [aux_sym_boolean_literal_token1] = ACTIONS(9114), + [aux_sym_boolean_literal_token2] = ACTIONS(9114), + [sym_nothing_literal] = ACTIONS(9114), + [sym_null_literal] = ACTIONS(9114), + [sym_empty_literal] = ACTIONS(9114), + [sym_date_literal] = ACTIONS(9116), + [anon_sym_POUND] = ACTIONS(9114), + }, + [STATE(5523)] = { + [sym_identifier] = ACTIONS(9118), + [sym_newline] = ACTIONS(9120), + [anon_sym_COLON] = ACTIONS(9120), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9118), + [aux_sym_frm_property_statement_token1] = ACTIONS(9118), + [anon_sym_DOT] = ACTIONS(9118), + [anon_sym_BANG] = ACTIONS(9120), + [aux_sym__attribute_identifier_token1] = ACTIONS(9118), + [aux_sym_option_statement_token3] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9118), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9118), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9118), + [aux_sym_preprocessor_const_token1] = ACTIONS(9118), + [sym_static_modifier] = ACTIONS(9118), + [sym__dim_keyword] = ACTIONS(9118), + [sym__redim_keyword] = ACTIONS(9118), + [aux_sym_get_accessor_token1] = ACTIONS(9118), + [aux_sym_set_accessor_token1] = ACTIONS(9118), + [aux_sym_const_declaration_token1] = ACTIONS(9118), + [anon_sym_LPAREN] = ACTIONS(9120), + [aux_sym_as_type_clause_token2] = ACTIONS(9118), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9118), + [aux_sym_visibility_token1] = ACTIONS(9118), + [aux_sym_visibility_token2] = ACTIONS(9118), + [aux_sym_elseif_fragment_token1] = ACTIONS(9118), + [aux_sym_else_fragment_token1] = ACTIONS(9118), + [aux_sym_select_statement_token1] = ACTIONS(9118), + [aux_sym__for_header_token1] = ACTIONS(9118), + [aux_sym_do_statement_token1] = ACTIONS(9118), + [aux_sym_do_condition_token1] = ACTIONS(9118), + [aux_sym_with_statement_token1] = ACTIONS(9118), + [aux_sym_exit_statement_token1] = ACTIONS(9118), + [sym_end_statement] = ACTIONS(9120), + [aux_sym_on_goto_statement_token1] = ACTIONS(9118), + [aux_sym_on_goto_statement_token2] = ACTIONS(9118), + [aux_sym_on_error_statement_token2] = ACTIONS(9118), + [sym__ambiguous_redim_statement] = ACTIONS(9120), + [aux_sym_erase_statement_token1] = ACTIONS(9118), + [aux_sym_open_statement_token1] = ACTIONS(9118), + [aux_sym_file_mode_token2] = ACTIONS(9118), + [aux_sym_file_access_token2] = ACTIONS(9118), + [aux_sym_file_lock_token2] = ACTIONS(9118), + [aux_sym_print_statement_token1] = ACTIONS(9118), + [anon_sym_PLUS] = ACTIONS(9120), + [anon_sym_DASH] = ACTIONS(9118), + [anon_sym_QMARK] = ACTIONS(9120), + [aux_sym_close_statement_token1] = ACTIONS(9118), + [aux_sym_put_statement_token1] = ACTIONS(9118), + [aux_sym_unlock_statement_token1] = ACTIONS(9118), + [aux_sym_seek_statement_token1] = ACTIONS(9118), + [sym_reset_statement] = ACTIONS(9118), + [aux_sym_raise_event_statement_token1] = ACTIONS(9118), + [sym_stop_statement] = ACTIONS(9118), + [sym_beep_statement] = ACTIONS(9118), + [aux_sym_unload_statement_token1] = ACTIONS(9118), + [aux_sym_def_type_statement_token1] = ACTIONS(9118), + [aux_sym_def_type_statement_token2] = ACTIONS(9118), + [aux_sym_def_type_statement_token3] = ACTIONS(9118), + [aux_sym_def_type_statement_token4] = ACTIONS(9118), + [aux_sym_def_type_statement_token5] = ACTIONS(9118), + [aux_sym_def_type_statement_token6] = ACTIONS(9118), + [aux_sym_def_type_statement_token7] = ACTIONS(9118), + [aux_sym_def_type_statement_token8] = ACTIONS(9118), + [aux_sym_def_type_statement_token9] = ACTIONS(9118), + [aux_sym_def_type_statement_token10] = ACTIONS(9118), + [aux_sym_def_type_statement_token11] = ACTIONS(9118), + [aux_sym_def_type_statement_token12] = ACTIONS(9118), + [aux_sym_def_type_statement_token13] = ACTIONS(9118), + [aux_sym_def_type_statement_token14] = ACTIONS(9118), + [aux_sym_call_statement_token1] = ACTIONS(9118), + [sym__ambiguous_call_statement] = ACTIONS(9118), + [aux_sym_addressof_expression_token1] = ACTIONS(9118), + [aux_sym_type_of_expression_token1] = ACTIONS(9118), + [aux_sym_unary_expression_token1] = ACTIONS(9118), + [sym_string_literal] = ACTIONS(9120), + [sym_number_literal] = ACTIONS(9120), + [aux_sym_boolean_literal_token1] = ACTIONS(9118), + [aux_sym_boolean_literal_token2] = ACTIONS(9118), + [sym_nothing_literal] = ACTIONS(9118), + [sym_null_literal] = ACTIONS(9118), + [sym_empty_literal] = ACTIONS(9118), + [sym_date_literal] = ACTIONS(9120), + [anon_sym_POUND] = ACTIONS(9118), + }, + [STATE(5524)] = { + [sym_do_condition] = STATE(6898), + [sym_identifier] = ACTIONS(8475), + [sym_newline] = ACTIONS(8477), + [anon_sym_COLON] = ACTIONS(8477), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8475), + [aux_sym_frm_property_statement_token1] = ACTIONS(8475), + [anon_sym_DOT] = ACTIONS(8475), + [anon_sym_BANG] = ACTIONS(8477), + [aux_sym__attribute_identifier_token1] = ACTIONS(8475), + [aux_sym_option_statement_token3] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8475), + [aux_sym_preprocessor_const_token1] = ACTIONS(8475), + [sym_static_modifier] = ACTIONS(8475), + [sym__dim_keyword] = ACTIONS(8475), + [sym__redim_keyword] = ACTIONS(8475), + [aux_sym_get_accessor_token1] = ACTIONS(8475), + [aux_sym_set_accessor_token1] = ACTIONS(8475), + [aux_sym_const_declaration_token1] = ACTIONS(8475), + [anon_sym_LPAREN] = ACTIONS(8477), + [aux_sym_as_type_clause_token2] = ACTIONS(8475), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8475), + [aux_sym_visibility_token1] = ACTIONS(8475), + [aux_sym_visibility_token2] = ACTIONS(8475), + [aux_sym_elseif_fragment_token1] = ACTIONS(8475), + [aux_sym_else_fragment_token1] = ACTIONS(8475), + [aux_sym_select_statement_token1] = ACTIONS(8475), + [aux_sym__for_header_token1] = ACTIONS(8475), + [aux_sym_do_statement_token1] = ACTIONS(8475), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8475), + [aux_sym_exit_statement_token1] = ACTIONS(8475), + [sym_end_statement] = ACTIONS(8477), + [aux_sym_on_goto_statement_token1] = ACTIONS(8475), + [aux_sym_on_goto_statement_token2] = ACTIONS(8475), + [aux_sym_on_error_statement_token2] = ACTIONS(8475), + [sym__ambiguous_redim_statement] = ACTIONS(8477), + [aux_sym_erase_statement_token1] = ACTIONS(8475), + [aux_sym_open_statement_token1] = ACTIONS(8475), + [aux_sym_file_mode_token2] = ACTIONS(8475), + [aux_sym_file_access_token2] = ACTIONS(8475), + [aux_sym_file_lock_token2] = ACTIONS(8475), + [aux_sym_print_statement_token1] = ACTIONS(8475), + [anon_sym_PLUS] = ACTIONS(8477), + [anon_sym_DASH] = ACTIONS(8475), + [anon_sym_QMARK] = ACTIONS(8477), + [aux_sym_close_statement_token1] = ACTIONS(8475), + [aux_sym_put_statement_token1] = ACTIONS(8475), + [aux_sym_unlock_statement_token1] = ACTIONS(8475), + [aux_sym_seek_statement_token1] = ACTIONS(8475), + [sym_reset_statement] = ACTIONS(8475), + [aux_sym_raise_event_statement_token1] = ACTIONS(8475), + [sym_stop_statement] = ACTIONS(8475), + [sym_beep_statement] = ACTIONS(8475), + [aux_sym_unload_statement_token1] = ACTIONS(8475), + [aux_sym_def_type_statement_token1] = ACTIONS(8475), + [aux_sym_def_type_statement_token2] = ACTIONS(8475), + [aux_sym_def_type_statement_token3] = ACTIONS(8475), + [aux_sym_def_type_statement_token4] = ACTIONS(8475), + [aux_sym_def_type_statement_token5] = ACTIONS(8475), + [aux_sym_def_type_statement_token6] = ACTIONS(8475), + [aux_sym_def_type_statement_token7] = ACTIONS(8475), + [aux_sym_def_type_statement_token8] = ACTIONS(8475), + [aux_sym_def_type_statement_token9] = ACTIONS(8475), + [aux_sym_def_type_statement_token10] = ACTIONS(8475), + [aux_sym_def_type_statement_token11] = ACTIONS(8475), + [aux_sym_def_type_statement_token12] = ACTIONS(8475), + [aux_sym_def_type_statement_token13] = ACTIONS(8475), + [aux_sym_def_type_statement_token14] = ACTIONS(8475), + [aux_sym_call_statement_token1] = ACTIONS(8475), + [sym__ambiguous_call_statement] = ACTIONS(8475), + [aux_sym_addressof_expression_token1] = ACTIONS(8475), + [aux_sym_type_of_expression_token1] = ACTIONS(8475), + [aux_sym_unary_expression_token1] = ACTIONS(8475), + [sym_string_literal] = ACTIONS(8477), + [sym_number_literal] = ACTIONS(8477), + [aux_sym_boolean_literal_token1] = ACTIONS(8475), + [aux_sym_boolean_literal_token2] = ACTIONS(8475), + [sym_nothing_literal] = ACTIONS(8475), + [sym_null_literal] = ACTIONS(8475), + [sym_empty_literal] = ACTIONS(8475), + [sym_date_literal] = ACTIONS(8477), + [anon_sym_POUND] = ACTIONS(8475), + }, + [STATE(5525)] = { + [sym_do_condition] = STATE(6901), + [sym_identifier] = ACTIONS(8491), + [sym_newline] = ACTIONS(8493), + [anon_sym_COLON] = ACTIONS(8493), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8491), + [aux_sym_frm_property_statement_token1] = ACTIONS(8491), + [anon_sym_DOT] = ACTIONS(8491), + [anon_sym_BANG] = ACTIONS(8493), + [aux_sym__attribute_identifier_token1] = ACTIONS(8491), + [aux_sym_option_statement_token3] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8491), + [aux_sym_preprocessor_const_token1] = ACTIONS(8491), + [sym_static_modifier] = ACTIONS(8491), + [sym__dim_keyword] = ACTIONS(8491), + [sym__redim_keyword] = ACTIONS(8491), + [aux_sym_get_accessor_token1] = ACTIONS(8491), + [aux_sym_set_accessor_token1] = ACTIONS(8491), + [aux_sym_const_declaration_token1] = ACTIONS(8491), + [anon_sym_LPAREN] = ACTIONS(8493), + [aux_sym_as_type_clause_token2] = ACTIONS(8491), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8491), + [aux_sym_visibility_token1] = ACTIONS(8491), + [aux_sym_visibility_token2] = ACTIONS(8491), + [aux_sym_elseif_fragment_token1] = ACTIONS(8491), + [aux_sym_else_fragment_token1] = ACTIONS(8491), + [aux_sym_select_statement_token1] = ACTIONS(8491), + [aux_sym__for_header_token1] = ACTIONS(8491), + [aux_sym_do_statement_token1] = ACTIONS(8491), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8491), + [aux_sym_exit_statement_token1] = ACTIONS(8491), + [sym_end_statement] = ACTIONS(8493), + [aux_sym_on_goto_statement_token1] = ACTIONS(8491), + [aux_sym_on_goto_statement_token2] = ACTIONS(8491), + [aux_sym_on_error_statement_token2] = ACTIONS(8491), + [sym__ambiguous_redim_statement] = ACTIONS(8493), + [aux_sym_erase_statement_token1] = ACTIONS(8491), + [aux_sym_open_statement_token1] = ACTIONS(8491), + [aux_sym_file_mode_token2] = ACTIONS(8491), + [aux_sym_file_access_token2] = ACTIONS(8491), + [aux_sym_file_lock_token2] = ACTIONS(8491), + [aux_sym_print_statement_token1] = ACTIONS(8491), + [anon_sym_PLUS] = ACTIONS(8493), + [anon_sym_DASH] = ACTIONS(8491), + [anon_sym_QMARK] = ACTIONS(8493), + [aux_sym_close_statement_token1] = ACTIONS(8491), + [aux_sym_put_statement_token1] = ACTIONS(8491), + [aux_sym_unlock_statement_token1] = ACTIONS(8491), + [aux_sym_seek_statement_token1] = ACTIONS(8491), + [sym_reset_statement] = ACTIONS(8491), + [aux_sym_raise_event_statement_token1] = ACTIONS(8491), + [sym_stop_statement] = ACTIONS(8491), + [sym_beep_statement] = ACTIONS(8491), + [aux_sym_unload_statement_token1] = ACTIONS(8491), + [aux_sym_def_type_statement_token1] = ACTIONS(8491), + [aux_sym_def_type_statement_token2] = ACTIONS(8491), + [aux_sym_def_type_statement_token3] = ACTIONS(8491), + [aux_sym_def_type_statement_token4] = ACTIONS(8491), + [aux_sym_def_type_statement_token5] = ACTIONS(8491), + [aux_sym_def_type_statement_token6] = ACTIONS(8491), + [aux_sym_def_type_statement_token7] = ACTIONS(8491), + [aux_sym_def_type_statement_token8] = ACTIONS(8491), + [aux_sym_def_type_statement_token9] = ACTIONS(8491), + [aux_sym_def_type_statement_token10] = ACTIONS(8491), + [aux_sym_def_type_statement_token11] = ACTIONS(8491), + [aux_sym_def_type_statement_token12] = ACTIONS(8491), + [aux_sym_def_type_statement_token13] = ACTIONS(8491), + [aux_sym_def_type_statement_token14] = ACTIONS(8491), + [aux_sym_call_statement_token1] = ACTIONS(8491), + [sym__ambiguous_call_statement] = ACTIONS(8491), + [aux_sym_addressof_expression_token1] = ACTIONS(8491), + [aux_sym_type_of_expression_token1] = ACTIONS(8491), + [aux_sym_unary_expression_token1] = ACTIONS(8491), + [sym_string_literal] = ACTIONS(8493), + [sym_number_literal] = ACTIONS(8493), + [aux_sym_boolean_literal_token1] = ACTIONS(8491), + [aux_sym_boolean_literal_token2] = ACTIONS(8491), + [sym_nothing_literal] = ACTIONS(8491), + [sym_null_literal] = ACTIONS(8491), + [sym_empty_literal] = ACTIONS(8491), + [sym_date_literal] = ACTIONS(8493), + [anon_sym_POUND] = ACTIONS(8491), + }, + [STATE(5526)] = { + [sym_identifier] = ACTIONS(9142), + [sym_newline] = ACTIONS(9144), + [anon_sym_COLON] = ACTIONS(9144), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9142), + [aux_sym_frm_property_statement_token1] = ACTIONS(9142), + [anon_sym_DOT] = ACTIONS(9142), + [anon_sym_BANG] = ACTIONS(9144), + [aux_sym__attribute_identifier_token1] = ACTIONS(9142), + [aux_sym_option_statement_token3] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9142), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9142), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9142), + [aux_sym_preprocessor_const_token1] = ACTIONS(9142), + [sym_static_modifier] = ACTIONS(9142), + [sym__dim_keyword] = ACTIONS(9142), + [sym__redim_keyword] = ACTIONS(9142), + [aux_sym_get_accessor_token1] = ACTIONS(9142), + [aux_sym_set_accessor_token1] = ACTIONS(9142), + [aux_sym_const_declaration_token1] = ACTIONS(9142), + [anon_sym_LPAREN] = ACTIONS(9144), + [aux_sym_as_type_clause_token2] = ACTIONS(9142), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9142), + [aux_sym_visibility_token1] = ACTIONS(9142), + [aux_sym_visibility_token2] = ACTIONS(9142), + [aux_sym_elseif_fragment_token1] = ACTIONS(9142), + [aux_sym_else_fragment_token1] = ACTIONS(9142), + [aux_sym_select_statement_token1] = ACTIONS(9142), + [aux_sym__for_header_token1] = ACTIONS(9142), + [aux_sym_do_statement_token1] = ACTIONS(9142), + [aux_sym_do_condition_token1] = ACTIONS(9142), + [aux_sym_with_statement_token1] = ACTIONS(9142), + [aux_sym_exit_statement_token1] = ACTIONS(9142), + [sym_end_statement] = ACTIONS(9144), + [aux_sym_on_goto_statement_token1] = ACTIONS(9142), + [aux_sym_on_goto_statement_token2] = ACTIONS(9142), + [aux_sym_on_error_statement_token2] = ACTIONS(9142), + [sym__ambiguous_redim_statement] = ACTIONS(9144), + [aux_sym_erase_statement_token1] = ACTIONS(9142), + [aux_sym_open_statement_token1] = ACTIONS(9142), + [aux_sym_file_mode_token2] = ACTIONS(9142), + [aux_sym_file_access_token2] = ACTIONS(9142), + [aux_sym_file_lock_token2] = ACTIONS(9142), + [aux_sym_print_statement_token1] = ACTIONS(9142), + [anon_sym_PLUS] = ACTIONS(9144), + [anon_sym_DASH] = ACTIONS(9142), + [anon_sym_QMARK] = ACTIONS(9144), + [aux_sym_close_statement_token1] = ACTIONS(9142), + [aux_sym_put_statement_token1] = ACTIONS(9142), + [aux_sym_unlock_statement_token1] = ACTIONS(9142), + [aux_sym_seek_statement_token1] = ACTIONS(9142), + [sym_reset_statement] = ACTIONS(9142), + [aux_sym_raise_event_statement_token1] = ACTIONS(9142), + [sym_stop_statement] = ACTIONS(9142), + [sym_beep_statement] = ACTIONS(9142), + [aux_sym_unload_statement_token1] = ACTIONS(9142), + [aux_sym_def_type_statement_token1] = ACTIONS(9142), + [aux_sym_def_type_statement_token2] = ACTIONS(9142), + [aux_sym_def_type_statement_token3] = ACTIONS(9142), + [aux_sym_def_type_statement_token4] = ACTIONS(9142), + [aux_sym_def_type_statement_token5] = ACTIONS(9142), + [aux_sym_def_type_statement_token6] = ACTIONS(9142), + [aux_sym_def_type_statement_token7] = ACTIONS(9142), + [aux_sym_def_type_statement_token8] = ACTIONS(9142), + [aux_sym_def_type_statement_token9] = ACTIONS(9142), + [aux_sym_def_type_statement_token10] = ACTIONS(9142), + [aux_sym_def_type_statement_token11] = ACTIONS(9142), + [aux_sym_def_type_statement_token12] = ACTIONS(9142), + [aux_sym_def_type_statement_token13] = ACTIONS(9142), + [aux_sym_def_type_statement_token14] = ACTIONS(9142), + [aux_sym_call_statement_token1] = ACTIONS(9142), + [sym__ambiguous_call_statement] = ACTIONS(9142), + [aux_sym_addressof_expression_token1] = ACTIONS(9142), + [aux_sym_type_of_expression_token1] = ACTIONS(9142), + [aux_sym_unary_expression_token1] = ACTIONS(9142), + [sym_string_literal] = ACTIONS(9144), + [sym_number_literal] = ACTIONS(9144), + [aux_sym_boolean_literal_token1] = ACTIONS(9142), + [aux_sym_boolean_literal_token2] = ACTIONS(9142), + [sym_nothing_literal] = ACTIONS(9142), + [sym_null_literal] = ACTIONS(9142), + [sym_empty_literal] = ACTIONS(9142), + [sym_date_literal] = ACTIONS(9144), + [anon_sym_POUND] = ACTIONS(9142), + }, + [STATE(5527)] = { + [aux_sym_redim_statement_repeat1] = STATE(5529), + [sym_identifier] = ACTIONS(8340), + [sym_newline] = ACTIONS(8342), + [anon_sym_COLON] = ACTIONS(8342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8340), + [aux_sym_frm_property_statement_token1] = ACTIONS(8340), + [anon_sym_DOT] = ACTIONS(8340), + [anon_sym_BANG] = ACTIONS(8342), + [aux_sym__attribute_identifier_token1] = ACTIONS(8340), + [aux_sym_option_statement_token3] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8340), + [aux_sym_preprocessor_const_token1] = ACTIONS(8340), + [sym_static_modifier] = ACTIONS(8340), + [sym__dim_keyword] = ACTIONS(8340), + [sym__redim_keyword] = ACTIONS(8340), + [aux_sym_get_accessor_token1] = ACTIONS(8340), + [aux_sym_set_accessor_token1] = ACTIONS(8340), + [anon_sym_COMMA] = ACTIONS(10577), + [aux_sym_const_declaration_token1] = ACTIONS(8340), + [anon_sym_LPAREN] = ACTIONS(8342), + [aux_sym_as_type_clause_token2] = ACTIONS(8340), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8340), + [aux_sym_visibility_token1] = ACTIONS(8340), + [aux_sym_visibility_token2] = ACTIONS(8340), + [aux_sym_elseif_fragment_token1] = ACTIONS(8340), + [aux_sym_else_fragment_token1] = ACTIONS(8340), + [aux_sym_select_statement_token1] = ACTIONS(8340), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8340), + [aux_sym__for_header_token1] = ACTIONS(8340), + [aux_sym_do_statement_token1] = ACTIONS(8340), + [aux_sym_do_condition_token1] = ACTIONS(8340), + [aux_sym_with_statement_token1] = ACTIONS(8340), + [aux_sym_exit_statement_token1] = ACTIONS(8340), + [sym_end_statement] = ACTIONS(8342), + [aux_sym_on_goto_statement_token1] = ACTIONS(8340), + [aux_sym_on_goto_statement_token2] = ACTIONS(8340), + [aux_sym_on_error_statement_token2] = ACTIONS(8340), + [sym__ambiguous_redim_statement] = ACTIONS(8342), + [aux_sym_erase_statement_token1] = ACTIONS(8340), + [aux_sym_open_statement_token1] = ACTIONS(8340), + [aux_sym_file_mode_token2] = ACTIONS(8340), + [aux_sym_file_access_token2] = ACTIONS(8340), + [aux_sym_file_lock_token2] = ACTIONS(8340), + [aux_sym_print_statement_token1] = ACTIONS(8340), + [anon_sym_PLUS] = ACTIONS(8342), + [anon_sym_DASH] = ACTIONS(8340), + [anon_sym_QMARK] = ACTIONS(8342), + [aux_sym_close_statement_token1] = ACTIONS(8340), + [aux_sym_put_statement_token1] = ACTIONS(8340), + [aux_sym_unlock_statement_token1] = ACTIONS(8340), + [aux_sym_seek_statement_token1] = ACTIONS(8340), + [sym_reset_statement] = ACTIONS(8340), + [aux_sym_raise_event_statement_token1] = ACTIONS(8340), + [sym_stop_statement] = ACTIONS(8340), + [sym_beep_statement] = ACTIONS(8340), + [aux_sym_unload_statement_token1] = ACTIONS(8340), + [aux_sym_def_type_statement_token1] = ACTIONS(8340), + [aux_sym_def_type_statement_token2] = ACTIONS(8340), + [aux_sym_def_type_statement_token3] = ACTIONS(8340), + [aux_sym_def_type_statement_token4] = ACTIONS(8340), + [aux_sym_def_type_statement_token5] = ACTIONS(8340), + [aux_sym_def_type_statement_token6] = ACTIONS(8340), + [aux_sym_def_type_statement_token7] = ACTIONS(8340), + [aux_sym_def_type_statement_token8] = ACTIONS(8340), + [aux_sym_def_type_statement_token9] = ACTIONS(8340), + [aux_sym_def_type_statement_token10] = ACTIONS(8340), + [aux_sym_def_type_statement_token11] = ACTIONS(8340), + [aux_sym_def_type_statement_token12] = ACTIONS(8340), + [aux_sym_def_type_statement_token13] = ACTIONS(8340), + [aux_sym_def_type_statement_token14] = ACTIONS(8340), + [aux_sym_call_statement_token1] = ACTIONS(8340), + [sym__ambiguous_call_statement] = ACTIONS(8340), + [aux_sym_addressof_expression_token1] = ACTIONS(8340), + [aux_sym_type_of_expression_token1] = ACTIONS(8340), + [aux_sym_unary_expression_token1] = ACTIONS(8340), + [sym_string_literal] = ACTIONS(8342), + [sym_number_literal] = ACTIONS(8342), + [aux_sym_boolean_literal_token1] = ACTIONS(8340), + [aux_sym_boolean_literal_token2] = ACTIONS(8340), + [sym_nothing_literal] = ACTIONS(8340), + [sym_null_literal] = ACTIONS(8340), + [sym_empty_literal] = ACTIONS(8340), + [sym_date_literal] = ACTIONS(8342), + [anon_sym_POUND] = ACTIONS(8340), + }, + [STATE(5528)] = { + [aux_sym_const_declaration_repeat1] = STATE(5808), + [sym_identifier] = ACTIONS(8614), + [sym_newline] = ACTIONS(8616), + [anon_sym_COLON] = ACTIONS(8616), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8614), + [aux_sym_frm_property_statement_token1] = ACTIONS(8614), + [anon_sym_DOT] = ACTIONS(8614), + [anon_sym_BANG] = ACTIONS(8616), + [aux_sym__attribute_identifier_token1] = ACTIONS(8614), + [aux_sym_option_statement_token3] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8614), + [aux_sym_preprocessor_const_token1] = ACTIONS(8614), + [sym_static_modifier] = ACTIONS(8614), + [sym__dim_keyword] = ACTIONS(8614), + [sym__redim_keyword] = ACTIONS(8614), + [aux_sym_get_accessor_token1] = ACTIONS(8614), + [aux_sym_set_accessor_token1] = ACTIONS(8614), + [anon_sym_COMMA] = ACTIONS(10567), + [aux_sym_const_declaration_token1] = ACTIONS(8614), + [anon_sym_LPAREN] = ACTIONS(8616), + [aux_sym_as_type_clause_token2] = ACTIONS(8614), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8614), + [aux_sym_visibility_token1] = ACTIONS(8614), + [aux_sym_visibility_token2] = ACTIONS(8614), + [aux_sym_elseif_fragment_token1] = ACTIONS(8614), + [aux_sym_else_fragment_token1] = ACTIONS(8614), + [aux_sym_select_statement_token1] = ACTIONS(8614), + [aux_sym__for_header_token1] = ACTIONS(8614), + [aux_sym_do_statement_token1] = ACTIONS(8614), + [aux_sym_do_statement_token2] = ACTIONS(8614), + [aux_sym_do_condition_token1] = ACTIONS(8614), + [aux_sym_with_statement_token1] = ACTIONS(8614), + [aux_sym_exit_statement_token1] = ACTIONS(8614), + [sym_end_statement] = ACTIONS(8616), + [aux_sym_on_goto_statement_token1] = ACTIONS(8614), + [aux_sym_on_goto_statement_token2] = ACTIONS(8614), + [aux_sym_on_error_statement_token2] = ACTIONS(8614), + [sym__ambiguous_redim_statement] = ACTIONS(8616), + [aux_sym_erase_statement_token1] = ACTIONS(8614), + [aux_sym_open_statement_token1] = ACTIONS(8614), + [aux_sym_file_mode_token2] = ACTIONS(8614), + [aux_sym_file_access_token2] = ACTIONS(8614), + [aux_sym_file_lock_token2] = ACTIONS(8614), + [aux_sym_print_statement_token1] = ACTIONS(8614), + [anon_sym_PLUS] = ACTIONS(8616), + [anon_sym_DASH] = ACTIONS(8614), + [anon_sym_QMARK] = ACTIONS(8616), + [aux_sym_close_statement_token1] = ACTIONS(8614), + [aux_sym_put_statement_token1] = ACTIONS(8614), + [aux_sym_unlock_statement_token1] = ACTIONS(8614), + [aux_sym_seek_statement_token1] = ACTIONS(8614), + [sym_reset_statement] = ACTIONS(8614), + [aux_sym_raise_event_statement_token1] = ACTIONS(8614), + [sym_stop_statement] = ACTIONS(8614), + [sym_beep_statement] = ACTIONS(8614), + [aux_sym_unload_statement_token1] = ACTIONS(8614), + [aux_sym_def_type_statement_token1] = ACTIONS(8614), + [aux_sym_def_type_statement_token2] = ACTIONS(8614), + [aux_sym_def_type_statement_token3] = ACTIONS(8614), + [aux_sym_def_type_statement_token4] = ACTIONS(8614), + [aux_sym_def_type_statement_token5] = ACTIONS(8614), + [aux_sym_def_type_statement_token6] = ACTIONS(8614), + [aux_sym_def_type_statement_token7] = ACTIONS(8614), + [aux_sym_def_type_statement_token8] = ACTIONS(8614), + [aux_sym_def_type_statement_token9] = ACTIONS(8614), + [aux_sym_def_type_statement_token10] = ACTIONS(8614), + [aux_sym_def_type_statement_token11] = ACTIONS(8614), + [aux_sym_def_type_statement_token12] = ACTIONS(8614), + [aux_sym_def_type_statement_token13] = ACTIONS(8614), + [aux_sym_def_type_statement_token14] = ACTIONS(8614), + [aux_sym_call_statement_token1] = ACTIONS(8614), + [sym__ambiguous_call_statement] = ACTIONS(8614), + [aux_sym_addressof_expression_token1] = ACTIONS(8614), + [aux_sym_type_of_expression_token1] = ACTIONS(8614), + [aux_sym_unary_expression_token1] = ACTIONS(8614), + [sym_string_literal] = ACTIONS(8616), + [sym_number_literal] = ACTIONS(8616), + [aux_sym_boolean_literal_token1] = ACTIONS(8614), + [aux_sym_boolean_literal_token2] = ACTIONS(8614), + [sym_nothing_literal] = ACTIONS(8614), + [sym_null_literal] = ACTIONS(8614), + [sym_empty_literal] = ACTIONS(8614), + [sym_date_literal] = ACTIONS(8616), + [anon_sym_POUND] = ACTIONS(8614), + }, + [STATE(5529)] = { + [aux_sym_redim_statement_repeat1] = STATE(5529), + [sym_identifier] = ACTIONS(8456), + [sym_newline] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8458), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8456), + [aux_sym_frm_property_statement_token1] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_BANG] = ACTIONS(8458), + [aux_sym__attribute_identifier_token1] = ACTIONS(8456), + [aux_sym_option_statement_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8456), + [aux_sym_preprocessor_const_token1] = ACTIONS(8456), + [sym_static_modifier] = ACTIONS(8456), + [sym__dim_keyword] = ACTIONS(8456), + [sym__redim_keyword] = ACTIONS(8456), + [aux_sym_get_accessor_token1] = ACTIONS(8456), + [aux_sym_set_accessor_token1] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(10647), + [aux_sym_const_declaration_token1] = ACTIONS(8456), + [anon_sym_LPAREN] = ACTIONS(8458), + [aux_sym_as_type_clause_token2] = ACTIONS(8456), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8456), + [aux_sym_visibility_token1] = ACTIONS(8456), + [aux_sym_visibility_token2] = ACTIONS(8456), + [aux_sym_elseif_fragment_token1] = ACTIONS(8456), + [aux_sym_else_fragment_token1] = ACTIONS(8456), + [aux_sym_select_statement_token1] = ACTIONS(8456), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8456), + [aux_sym__for_header_token1] = ACTIONS(8456), + [aux_sym_do_statement_token1] = ACTIONS(8456), + [aux_sym_do_condition_token1] = ACTIONS(8456), + [aux_sym_with_statement_token1] = ACTIONS(8456), + [aux_sym_exit_statement_token1] = ACTIONS(8456), + [sym_end_statement] = ACTIONS(8458), + [aux_sym_on_goto_statement_token1] = ACTIONS(8456), + [aux_sym_on_goto_statement_token2] = ACTIONS(8456), + [aux_sym_on_error_statement_token2] = ACTIONS(8456), + [sym__ambiguous_redim_statement] = ACTIONS(8458), + [aux_sym_erase_statement_token1] = ACTIONS(8456), + [aux_sym_open_statement_token1] = ACTIONS(8456), + [aux_sym_file_mode_token2] = ACTIONS(8456), + [aux_sym_file_access_token2] = ACTIONS(8456), + [aux_sym_file_lock_token2] = ACTIONS(8456), + [aux_sym_print_statement_token1] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8458), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8458), + [aux_sym_close_statement_token1] = ACTIONS(8456), + [aux_sym_put_statement_token1] = ACTIONS(8456), + [aux_sym_unlock_statement_token1] = ACTIONS(8456), + [aux_sym_seek_statement_token1] = ACTIONS(8456), + [sym_reset_statement] = ACTIONS(8456), + [aux_sym_raise_event_statement_token1] = ACTIONS(8456), + [sym_stop_statement] = ACTIONS(8456), + [sym_beep_statement] = ACTIONS(8456), + [aux_sym_unload_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token2] = ACTIONS(8456), + [aux_sym_def_type_statement_token3] = ACTIONS(8456), + [aux_sym_def_type_statement_token4] = ACTIONS(8456), + [aux_sym_def_type_statement_token5] = ACTIONS(8456), + [aux_sym_def_type_statement_token6] = ACTIONS(8456), + [aux_sym_def_type_statement_token7] = ACTIONS(8456), + [aux_sym_def_type_statement_token8] = ACTIONS(8456), + [aux_sym_def_type_statement_token9] = ACTIONS(8456), + [aux_sym_def_type_statement_token10] = ACTIONS(8456), + [aux_sym_def_type_statement_token11] = ACTIONS(8456), + [aux_sym_def_type_statement_token12] = ACTIONS(8456), + [aux_sym_def_type_statement_token13] = ACTIONS(8456), + [aux_sym_def_type_statement_token14] = ACTIONS(8456), + [aux_sym_call_statement_token1] = ACTIONS(8456), + [sym__ambiguous_call_statement] = ACTIONS(8456), + [aux_sym_addressof_expression_token1] = ACTIONS(8456), + [aux_sym_type_of_expression_token1] = ACTIONS(8456), + [aux_sym_unary_expression_token1] = ACTIONS(8456), + [sym_string_literal] = ACTIONS(8458), + [sym_number_literal] = ACTIONS(8458), + [aux_sym_boolean_literal_token1] = ACTIONS(8456), + [aux_sym_boolean_literal_token2] = ACTIONS(8456), + [sym_nothing_literal] = ACTIONS(8456), + [sym_null_literal] = ACTIONS(8456), + [sym_empty_literal] = ACTIONS(8456), + [sym_date_literal] = ACTIONS(8458), + [anon_sym_POUND] = ACTIONS(8456), + }, + [STATE(5530)] = { + [aux_sym_def_type_statement_repeat1] = STATE(5298), + [sym_identifier] = ACTIONS(8603), + [sym_newline] = ACTIONS(8605), + [anon_sym_COLON] = ACTIONS(8605), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8603), + [aux_sym_frm_property_statement_token1] = ACTIONS(8603), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_BANG] = ACTIONS(8605), + [aux_sym__attribute_identifier_token1] = ACTIONS(8603), + [aux_sym_option_statement_token3] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8603), + [aux_sym_preprocessor_const_token1] = ACTIONS(8603), + [sym_static_modifier] = ACTIONS(8603), + [sym__dim_keyword] = ACTIONS(8603), + [sym__redim_keyword] = ACTIONS(8603), + [aux_sym_get_accessor_token1] = ACTIONS(8603), + [aux_sym_set_accessor_token1] = ACTIONS(8603), + [anon_sym_COMMA] = ACTIONS(10626), + [aux_sym_const_declaration_token1] = ACTIONS(8603), + [anon_sym_LPAREN] = ACTIONS(8605), + [aux_sym_as_type_clause_token2] = ACTIONS(8603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8603), + [aux_sym_visibility_token1] = ACTIONS(8603), + [aux_sym_visibility_token2] = ACTIONS(8603), + [aux_sym_elseif_fragment_token1] = ACTIONS(8603), + [aux_sym_else_fragment_token1] = ACTIONS(8603), + [aux_sym_select_statement_token1] = ACTIONS(8603), + [aux_sym__for_header_token1] = ACTIONS(8603), + [aux_sym_do_statement_token1] = ACTIONS(8603), + [aux_sym_do_statement_token2] = ACTIONS(8603), + [aux_sym_do_condition_token1] = ACTIONS(8603), + [aux_sym_with_statement_token1] = ACTIONS(8603), + [aux_sym_exit_statement_token1] = ACTIONS(8603), + [sym_end_statement] = ACTIONS(8605), + [aux_sym_on_goto_statement_token1] = ACTIONS(8603), + [aux_sym_on_goto_statement_token2] = ACTIONS(8603), + [aux_sym_on_error_statement_token2] = ACTIONS(8603), + [sym__ambiguous_redim_statement] = ACTIONS(8605), + [aux_sym_erase_statement_token1] = ACTIONS(8603), + [aux_sym_open_statement_token1] = ACTIONS(8603), + [aux_sym_file_mode_token2] = ACTIONS(8603), + [aux_sym_file_access_token2] = ACTIONS(8603), + [aux_sym_file_lock_token2] = ACTIONS(8603), + [aux_sym_print_statement_token1] = ACTIONS(8603), + [anon_sym_PLUS] = ACTIONS(8605), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_QMARK] = ACTIONS(8605), + [aux_sym_close_statement_token1] = ACTIONS(8603), + [aux_sym_put_statement_token1] = ACTIONS(8603), + [aux_sym_unlock_statement_token1] = ACTIONS(8603), + [aux_sym_seek_statement_token1] = ACTIONS(8603), + [sym_reset_statement] = ACTIONS(8603), + [aux_sym_raise_event_statement_token1] = ACTIONS(8603), + [sym_stop_statement] = ACTIONS(8603), + [sym_beep_statement] = ACTIONS(8603), + [aux_sym_unload_statement_token1] = ACTIONS(8603), + [aux_sym_def_type_statement_token1] = ACTIONS(8603), + [aux_sym_def_type_statement_token2] = ACTIONS(8603), + [aux_sym_def_type_statement_token3] = ACTIONS(8603), + [aux_sym_def_type_statement_token4] = ACTIONS(8603), + [aux_sym_def_type_statement_token5] = ACTIONS(8603), + [aux_sym_def_type_statement_token6] = ACTIONS(8603), + [aux_sym_def_type_statement_token7] = ACTIONS(8603), + [aux_sym_def_type_statement_token8] = ACTIONS(8603), + [aux_sym_def_type_statement_token9] = ACTIONS(8603), + [aux_sym_def_type_statement_token10] = ACTIONS(8603), + [aux_sym_def_type_statement_token11] = ACTIONS(8603), + [aux_sym_def_type_statement_token12] = ACTIONS(8603), + [aux_sym_def_type_statement_token13] = ACTIONS(8603), + [aux_sym_def_type_statement_token14] = ACTIONS(8603), + [aux_sym_call_statement_token1] = ACTIONS(8603), + [sym__ambiguous_call_statement] = ACTIONS(8603), + [aux_sym_addressof_expression_token1] = ACTIONS(8603), + [aux_sym_type_of_expression_token1] = ACTIONS(8603), + [aux_sym_unary_expression_token1] = ACTIONS(8603), + [sym_string_literal] = ACTIONS(8605), + [sym_number_literal] = ACTIONS(8605), + [aux_sym_boolean_literal_token1] = ACTIONS(8603), + [aux_sym_boolean_literal_token2] = ACTIONS(8603), + [sym_nothing_literal] = ACTIONS(8603), + [sym_null_literal] = ACTIONS(8603), + [sym_empty_literal] = ACTIONS(8603), + [sym_date_literal] = ACTIONS(8605), + [anon_sym_POUND] = ACTIONS(8603), + }, + [STATE(5531)] = { + [sym__top_level_item] = STATE(5531), + [sym_frm_version_statement] = STATE(5531), + [sym_frm_begin_block] = STATE(5531), + [sym_frm_begin_property_block] = STATE(5531), + [sym_frm_property_statement] = STATE(5531), + [sym_attribute_statement] = STATE(5531), + [sym_option_statement] = STATE(5531), + [sym_implements_statement] = STATE(5531), + [sym_type_declaration] = STATE(5531), + [sym_enum_declaration] = STATE(5531), + [sym_declare_sub_statement] = STATE(5531), + [sym_declare_function_statement] = STATE(5531), + [sym_preprocessor_const] = STATE(5531), + [sym_preprocessor_if] = STATE(5531), + [sym_sub_declaration] = STATE(5531), + [sym_function_declaration] = STATE(5531), + [sym_property_get_declaration] = STATE(5531), + [sym_property_let_declaration] = STATE(5531), + [sym_property_set_declaration] = STATE(5531), + [sym__sub_header] = STATE(12617), + [sym__function_header] = STATE(13075), + [sym__property_get_header] = STATE(13077), + [sym__property_let_header] = STATE(12766), + [sym__property_set_header] = STATE(12889), + [sym_conditional_sub_declaration] = STATE(5531), + [sym_conditional_function_declaration] = STATE(5531), + [sym_conditional_property_declaration] = STATE(5531), + [sym__conditional_sub_headers] = STATE(13971), + [sym__conditional_function_headers] = STATE(14070), + [sym__conditional_property_headers] = STATE(14592), + [sym_event_declaration] = STATE(5531), + [sym__procedure_modifier] = STATE(13006), + [sym_variable_declaration] = STATE(5531), + [sym_const_declaration] = STATE(5531), + [sym_visibility] = STATE(10985), + [sym_line_number_top_level_item] = STATE(5531), + [sym_def_type_statement] = STATE(5531), + [sym__callable_expression] = STATE(13480), + [sym_call_expression] = STATE(12245), + [sym_member_expression] = STATE(12224), + [sym_qualified_member_expression] = STATE(10049), + [sym_implicit_member_expression] = STATE(10049), + [aux_sym_source_file_repeat1] = STATE(5531), + [ts_builtin_sym_end] = ACTIONS(10650), + [sym_identifier] = ACTIONS(10652), + [sym_newline] = ACTIONS(10655), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(10658), + [aux_sym_frm_begin_block_token1] = ACTIONS(10661), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(10664), + [aux_sym_frm_property_statement_token1] = ACTIONS(10667), + [aux_sym_attribute_statement_token1] = ACTIONS(10670), + [anon_sym_DOT] = ACTIONS(10673), + [anon_sym_BANG] = ACTIONS(10676), + [aux_sym_option_statement_token1] = ACTIONS(10679), + [aux_sym_option_statement_token3] = ACTIONS(10682), + [aux_sym_implements_statement_token1] = ACTIONS(10685), + [aux_sym_type_declaration_token1] = ACTIONS(10688), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(10691), + [aux_sym_enum_declaration_token1] = ACTIONS(10694), + [aux_sym_declare_sub_statement_token1] = ACTIONS(10697), + [aux_sym_declare_sub_statement_token2] = ACTIONS(10700), + [aux_sym_declare_function_statement_token1] = ACTIONS(10703), + [aux_sym_preprocessor_const_token1] = ACTIONS(10706), + [aux_sym__property_get_header_token1] = ACTIONS(10709), + [aux_sym_event_declaration_token1] = ACTIONS(10712), + [sym_static_modifier] = ACTIONS(10715), + [sym__dim_keyword] = ACTIONS(10718), + [aux_sym_const_declaration_token1] = ACTIONS(10721), + [aux_sym_visibility_token1] = ACTIONS(10682), + [aux_sym_visibility_token2] = ACTIONS(10682), + [aux_sym_def_type_statement_token1] = ACTIONS(10724), + [aux_sym_def_type_statement_token2] = ACTIONS(10724), + [aux_sym_def_type_statement_token3] = ACTIONS(10724), + [aux_sym_def_type_statement_token4] = ACTIONS(10724), + [aux_sym_def_type_statement_token5] = ACTIONS(10724), + [aux_sym_def_type_statement_token6] = ACTIONS(10724), + [aux_sym_def_type_statement_token7] = ACTIONS(10724), + [aux_sym_def_type_statement_token8] = ACTIONS(10724), + [aux_sym_def_type_statement_token9] = ACTIONS(10724), + [aux_sym_def_type_statement_token10] = ACTIONS(10724), + [aux_sym_def_type_statement_token11] = ACTIONS(10724), + [aux_sym_def_type_statement_token12] = ACTIONS(10724), + [aux_sym_def_type_statement_token13] = ACTIONS(10724), + [aux_sym_def_type_statement_token14] = ACTIONS(10724), + [sym_number_literal] = ACTIONS(10727), + }, + [STATE(5532)] = { + [sym_do_condition] = STATE(6552), + [sym_identifier] = ACTIONS(8475), + [sym_newline] = ACTIONS(8477), + [anon_sym_COLON] = ACTIONS(8477), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8475), + [aux_sym_frm_property_statement_token1] = ACTIONS(8475), + [anon_sym_DOT] = ACTIONS(8475), + [anon_sym_BANG] = ACTIONS(8477), + [aux_sym__attribute_identifier_token1] = ACTIONS(8475), + [aux_sym_option_statement_token3] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8475), + [aux_sym_preprocessor_const_token1] = ACTIONS(8475), + [sym_static_modifier] = ACTIONS(8475), + [sym__dim_keyword] = ACTIONS(8475), + [sym__redim_keyword] = ACTIONS(8475), + [aux_sym_get_accessor_token1] = ACTIONS(8475), + [aux_sym_set_accessor_token1] = ACTIONS(8475), + [aux_sym_const_declaration_token1] = ACTIONS(8475), + [anon_sym_LPAREN] = ACTIONS(8477), + [aux_sym_as_type_clause_token2] = ACTIONS(8475), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8475), + [aux_sym_visibility_token1] = ACTIONS(8475), + [aux_sym_visibility_token2] = ACTIONS(8475), + [aux_sym_elseif_fragment_token1] = ACTIONS(8475), + [aux_sym_else_fragment_token1] = ACTIONS(8475), + [aux_sym_select_statement_token1] = ACTIONS(8475), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8475), + [aux_sym__for_header_token1] = ACTIONS(8475), + [aux_sym_do_statement_token1] = ACTIONS(8475), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8475), + [aux_sym_exit_statement_token1] = ACTIONS(8475), + [sym_end_statement] = ACTIONS(8477), + [aux_sym_on_goto_statement_token1] = ACTIONS(8475), + [aux_sym_on_goto_statement_token2] = ACTIONS(8475), + [aux_sym_on_error_statement_token2] = ACTIONS(8475), + [sym__ambiguous_redim_statement] = ACTIONS(8477), + [aux_sym_erase_statement_token1] = ACTIONS(8475), + [aux_sym_open_statement_token1] = ACTIONS(8475), + [aux_sym_file_mode_token2] = ACTIONS(8475), + [aux_sym_file_access_token2] = ACTIONS(8475), + [aux_sym_file_lock_token2] = ACTIONS(8475), + [aux_sym_print_statement_token1] = ACTIONS(8475), + [anon_sym_PLUS] = ACTIONS(8477), + [anon_sym_DASH] = ACTIONS(8475), + [anon_sym_QMARK] = ACTIONS(8477), + [aux_sym_close_statement_token1] = ACTIONS(8475), + [aux_sym_put_statement_token1] = ACTIONS(8475), + [aux_sym_unlock_statement_token1] = ACTIONS(8475), + [aux_sym_seek_statement_token1] = ACTIONS(8475), + [sym_reset_statement] = ACTIONS(8475), + [aux_sym_raise_event_statement_token1] = ACTIONS(8475), + [sym_stop_statement] = ACTIONS(8475), + [sym_beep_statement] = ACTIONS(8475), + [aux_sym_unload_statement_token1] = ACTIONS(8475), + [aux_sym_def_type_statement_token1] = ACTIONS(8475), + [aux_sym_def_type_statement_token2] = ACTIONS(8475), + [aux_sym_def_type_statement_token3] = ACTIONS(8475), + [aux_sym_def_type_statement_token4] = ACTIONS(8475), + [aux_sym_def_type_statement_token5] = ACTIONS(8475), + [aux_sym_def_type_statement_token6] = ACTIONS(8475), + [aux_sym_def_type_statement_token7] = ACTIONS(8475), + [aux_sym_def_type_statement_token8] = ACTIONS(8475), + [aux_sym_def_type_statement_token9] = ACTIONS(8475), + [aux_sym_def_type_statement_token10] = ACTIONS(8475), + [aux_sym_def_type_statement_token11] = ACTIONS(8475), + [aux_sym_def_type_statement_token12] = ACTIONS(8475), + [aux_sym_def_type_statement_token13] = ACTIONS(8475), + [aux_sym_def_type_statement_token14] = ACTIONS(8475), + [aux_sym_call_statement_token1] = ACTIONS(8475), + [sym__ambiguous_call_statement] = ACTIONS(8475), + [aux_sym_addressof_expression_token1] = ACTIONS(8475), + [aux_sym_type_of_expression_token1] = ACTIONS(8475), + [aux_sym_unary_expression_token1] = ACTIONS(8475), + [sym_string_literal] = ACTIONS(8477), + [sym_number_literal] = ACTIONS(8477), + [aux_sym_boolean_literal_token1] = ACTIONS(8475), + [aux_sym_boolean_literal_token2] = ACTIONS(8475), + [sym_nothing_literal] = ACTIONS(8475), + [sym_null_literal] = ACTIONS(8475), + [sym_empty_literal] = ACTIONS(8475), + [sym_date_literal] = ACTIONS(8477), + [anon_sym_POUND] = ACTIONS(8475), + }, + [STATE(5533)] = { + [sym_do_condition] = STATE(6554), + [sym_identifier] = ACTIONS(8491), + [sym_newline] = ACTIONS(8493), + [anon_sym_COLON] = ACTIONS(8493), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8491), + [aux_sym_frm_property_statement_token1] = ACTIONS(8491), + [anon_sym_DOT] = ACTIONS(8491), + [anon_sym_BANG] = ACTIONS(8493), + [aux_sym__attribute_identifier_token1] = ACTIONS(8491), + [aux_sym_option_statement_token3] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8491), + [aux_sym_preprocessor_const_token1] = ACTIONS(8491), + [sym_static_modifier] = ACTIONS(8491), + [sym__dim_keyword] = ACTIONS(8491), + [sym__redim_keyword] = ACTIONS(8491), + [aux_sym_get_accessor_token1] = ACTIONS(8491), + [aux_sym_set_accessor_token1] = ACTIONS(8491), + [aux_sym_const_declaration_token1] = ACTIONS(8491), + [anon_sym_LPAREN] = ACTIONS(8493), + [aux_sym_as_type_clause_token2] = ACTIONS(8491), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8491), + [aux_sym_visibility_token1] = ACTIONS(8491), + [aux_sym_visibility_token2] = ACTIONS(8491), + [aux_sym_elseif_fragment_token1] = ACTIONS(8491), + [aux_sym_else_fragment_token1] = ACTIONS(8491), + [aux_sym_select_statement_token1] = ACTIONS(8491), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8491), + [aux_sym__for_header_token1] = ACTIONS(8491), + [aux_sym_do_statement_token1] = ACTIONS(8491), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8491), + [aux_sym_exit_statement_token1] = ACTIONS(8491), + [sym_end_statement] = ACTIONS(8493), + [aux_sym_on_goto_statement_token1] = ACTIONS(8491), + [aux_sym_on_goto_statement_token2] = ACTIONS(8491), + [aux_sym_on_error_statement_token2] = ACTIONS(8491), + [sym__ambiguous_redim_statement] = ACTIONS(8493), + [aux_sym_erase_statement_token1] = ACTIONS(8491), + [aux_sym_open_statement_token1] = ACTIONS(8491), + [aux_sym_file_mode_token2] = ACTIONS(8491), + [aux_sym_file_access_token2] = ACTIONS(8491), + [aux_sym_file_lock_token2] = ACTIONS(8491), + [aux_sym_print_statement_token1] = ACTIONS(8491), + [anon_sym_PLUS] = ACTIONS(8493), + [anon_sym_DASH] = ACTIONS(8491), + [anon_sym_QMARK] = ACTIONS(8493), + [aux_sym_close_statement_token1] = ACTIONS(8491), + [aux_sym_put_statement_token1] = ACTIONS(8491), + [aux_sym_unlock_statement_token1] = ACTIONS(8491), + [aux_sym_seek_statement_token1] = ACTIONS(8491), + [sym_reset_statement] = ACTIONS(8491), + [aux_sym_raise_event_statement_token1] = ACTIONS(8491), + [sym_stop_statement] = ACTIONS(8491), + [sym_beep_statement] = ACTIONS(8491), + [aux_sym_unload_statement_token1] = ACTIONS(8491), + [aux_sym_def_type_statement_token1] = ACTIONS(8491), + [aux_sym_def_type_statement_token2] = ACTIONS(8491), + [aux_sym_def_type_statement_token3] = ACTIONS(8491), + [aux_sym_def_type_statement_token4] = ACTIONS(8491), + [aux_sym_def_type_statement_token5] = ACTIONS(8491), + [aux_sym_def_type_statement_token6] = ACTIONS(8491), + [aux_sym_def_type_statement_token7] = ACTIONS(8491), + [aux_sym_def_type_statement_token8] = ACTIONS(8491), + [aux_sym_def_type_statement_token9] = ACTIONS(8491), + [aux_sym_def_type_statement_token10] = ACTIONS(8491), + [aux_sym_def_type_statement_token11] = ACTIONS(8491), + [aux_sym_def_type_statement_token12] = ACTIONS(8491), + [aux_sym_def_type_statement_token13] = ACTIONS(8491), + [aux_sym_def_type_statement_token14] = ACTIONS(8491), + [aux_sym_call_statement_token1] = ACTIONS(8491), + [sym__ambiguous_call_statement] = ACTIONS(8491), + [aux_sym_addressof_expression_token1] = ACTIONS(8491), + [aux_sym_type_of_expression_token1] = ACTIONS(8491), + [aux_sym_unary_expression_token1] = ACTIONS(8491), + [sym_string_literal] = ACTIONS(8493), + [sym_number_literal] = ACTIONS(8493), + [aux_sym_boolean_literal_token1] = ACTIONS(8491), + [aux_sym_boolean_literal_token2] = ACTIONS(8491), + [sym_nothing_literal] = ACTIONS(8491), + [sym_null_literal] = ACTIONS(8491), + [sym_empty_literal] = ACTIONS(8491), + [sym_date_literal] = ACTIONS(8493), + [anon_sym_POUND] = ACTIONS(8491), + }, + [STATE(5534)] = { + [sym_do_condition] = STATE(6555), + [sym_identifier] = ACTIONS(8501), + [sym_newline] = ACTIONS(8503), + [anon_sym_COLON] = ACTIONS(8503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8501), + [aux_sym_frm_property_statement_token1] = ACTIONS(8501), + [anon_sym_DOT] = ACTIONS(8501), + [anon_sym_BANG] = ACTIONS(8503), + [aux_sym__attribute_identifier_token1] = ACTIONS(8501), + [aux_sym_option_statement_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8501), + [aux_sym_preprocessor_const_token1] = ACTIONS(8501), + [sym_static_modifier] = ACTIONS(8501), + [sym__dim_keyword] = ACTIONS(8501), + [sym__redim_keyword] = ACTIONS(8501), + [aux_sym_get_accessor_token1] = ACTIONS(8501), + [aux_sym_set_accessor_token1] = ACTIONS(8501), + [aux_sym_const_declaration_token1] = ACTIONS(8501), + [anon_sym_LPAREN] = ACTIONS(8503), + [aux_sym_as_type_clause_token2] = ACTIONS(8501), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8501), + [aux_sym_visibility_token1] = ACTIONS(8501), + [aux_sym_visibility_token2] = ACTIONS(8501), + [aux_sym_elseif_fragment_token1] = ACTIONS(8501), + [aux_sym_else_fragment_token1] = ACTIONS(8501), + [aux_sym_select_statement_token1] = ACTIONS(8501), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8501), + [aux_sym__for_header_token1] = ACTIONS(8501), + [aux_sym_do_statement_token1] = ACTIONS(8501), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8501), + [aux_sym_exit_statement_token1] = ACTIONS(8501), + [sym_end_statement] = ACTIONS(8503), + [aux_sym_on_goto_statement_token1] = ACTIONS(8501), + [aux_sym_on_goto_statement_token2] = ACTIONS(8501), + [aux_sym_on_error_statement_token2] = ACTIONS(8501), + [sym__ambiguous_redim_statement] = ACTIONS(8503), + [aux_sym_erase_statement_token1] = ACTIONS(8501), + [aux_sym_open_statement_token1] = ACTIONS(8501), + [aux_sym_file_mode_token2] = ACTIONS(8501), + [aux_sym_file_access_token2] = ACTIONS(8501), + [aux_sym_file_lock_token2] = ACTIONS(8501), + [aux_sym_print_statement_token1] = ACTIONS(8501), + [anon_sym_PLUS] = ACTIONS(8503), + [anon_sym_DASH] = ACTIONS(8501), + [anon_sym_QMARK] = ACTIONS(8503), + [aux_sym_close_statement_token1] = ACTIONS(8501), + [aux_sym_put_statement_token1] = ACTIONS(8501), + [aux_sym_unlock_statement_token1] = ACTIONS(8501), + [aux_sym_seek_statement_token1] = ACTIONS(8501), + [sym_reset_statement] = ACTIONS(8501), + [aux_sym_raise_event_statement_token1] = ACTIONS(8501), + [sym_stop_statement] = ACTIONS(8501), + [sym_beep_statement] = ACTIONS(8501), + [aux_sym_unload_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token2] = ACTIONS(8501), + [aux_sym_def_type_statement_token3] = ACTIONS(8501), + [aux_sym_def_type_statement_token4] = ACTIONS(8501), + [aux_sym_def_type_statement_token5] = ACTIONS(8501), + [aux_sym_def_type_statement_token6] = ACTIONS(8501), + [aux_sym_def_type_statement_token7] = ACTIONS(8501), + [aux_sym_def_type_statement_token8] = ACTIONS(8501), + [aux_sym_def_type_statement_token9] = ACTIONS(8501), + [aux_sym_def_type_statement_token10] = ACTIONS(8501), + [aux_sym_def_type_statement_token11] = ACTIONS(8501), + [aux_sym_def_type_statement_token12] = ACTIONS(8501), + [aux_sym_def_type_statement_token13] = ACTIONS(8501), + [aux_sym_def_type_statement_token14] = ACTIONS(8501), + [aux_sym_call_statement_token1] = ACTIONS(8501), + [sym__ambiguous_call_statement] = ACTIONS(8501), + [aux_sym_addressof_expression_token1] = ACTIONS(8501), + [aux_sym_type_of_expression_token1] = ACTIONS(8501), + [aux_sym_unary_expression_token1] = ACTIONS(8501), + [sym_string_literal] = ACTIONS(8503), + [sym_number_literal] = ACTIONS(8503), + [aux_sym_boolean_literal_token1] = ACTIONS(8501), + [aux_sym_boolean_literal_token2] = ACTIONS(8501), + [sym_nothing_literal] = ACTIONS(8501), + [sym_null_literal] = ACTIONS(8501), + [sym_empty_literal] = ACTIONS(8501), + [sym_date_literal] = ACTIONS(8503), + [anon_sym_POUND] = ACTIONS(8501), + }, + [STATE(5535)] = { + [sym_do_condition] = STATE(6558), + [sym_identifier] = ACTIONS(8509), + [sym_newline] = ACTIONS(8511), + [anon_sym_COLON] = ACTIONS(8511), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8509), + [aux_sym_frm_property_statement_token1] = ACTIONS(8509), + [anon_sym_DOT] = ACTIONS(8509), + [anon_sym_BANG] = ACTIONS(8511), + [aux_sym__attribute_identifier_token1] = ACTIONS(8509), + [aux_sym_option_statement_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8509), + [aux_sym_preprocessor_const_token1] = ACTIONS(8509), + [sym_static_modifier] = ACTIONS(8509), + [sym__dim_keyword] = ACTIONS(8509), + [sym__redim_keyword] = ACTIONS(8509), + [aux_sym_get_accessor_token1] = ACTIONS(8509), + [aux_sym_set_accessor_token1] = ACTIONS(8509), + [aux_sym_const_declaration_token1] = ACTIONS(8509), + [anon_sym_LPAREN] = ACTIONS(8511), + [aux_sym_as_type_clause_token2] = ACTIONS(8509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8509), + [aux_sym_visibility_token1] = ACTIONS(8509), + [aux_sym_visibility_token2] = ACTIONS(8509), + [aux_sym_elseif_fragment_token1] = ACTIONS(8509), + [aux_sym_else_fragment_token1] = ACTIONS(8509), + [aux_sym_select_statement_token1] = ACTIONS(8509), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8509), + [aux_sym__for_header_token1] = ACTIONS(8509), + [aux_sym_do_statement_token1] = ACTIONS(8509), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8509), + [aux_sym_exit_statement_token1] = ACTIONS(8509), + [sym_end_statement] = ACTIONS(8511), + [aux_sym_on_goto_statement_token1] = ACTIONS(8509), + [aux_sym_on_goto_statement_token2] = ACTIONS(8509), + [aux_sym_on_error_statement_token2] = ACTIONS(8509), + [sym__ambiguous_redim_statement] = ACTIONS(8511), + [aux_sym_erase_statement_token1] = ACTIONS(8509), + [aux_sym_open_statement_token1] = ACTIONS(8509), + [aux_sym_file_mode_token2] = ACTIONS(8509), + [aux_sym_file_access_token2] = ACTIONS(8509), + [aux_sym_file_lock_token2] = ACTIONS(8509), + [aux_sym_print_statement_token1] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(8511), + [anon_sym_DASH] = ACTIONS(8509), + [anon_sym_QMARK] = ACTIONS(8511), + [aux_sym_close_statement_token1] = ACTIONS(8509), + [aux_sym_put_statement_token1] = ACTIONS(8509), + [aux_sym_unlock_statement_token1] = ACTIONS(8509), + [aux_sym_seek_statement_token1] = ACTIONS(8509), + [sym_reset_statement] = ACTIONS(8509), + [aux_sym_raise_event_statement_token1] = ACTIONS(8509), + [sym_stop_statement] = ACTIONS(8509), + [sym_beep_statement] = ACTIONS(8509), + [aux_sym_unload_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token2] = ACTIONS(8509), + [aux_sym_def_type_statement_token3] = ACTIONS(8509), + [aux_sym_def_type_statement_token4] = ACTIONS(8509), + [aux_sym_def_type_statement_token5] = ACTIONS(8509), + [aux_sym_def_type_statement_token6] = ACTIONS(8509), + [aux_sym_def_type_statement_token7] = ACTIONS(8509), + [aux_sym_def_type_statement_token8] = ACTIONS(8509), + [aux_sym_def_type_statement_token9] = ACTIONS(8509), + [aux_sym_def_type_statement_token10] = ACTIONS(8509), + [aux_sym_def_type_statement_token11] = ACTIONS(8509), + [aux_sym_def_type_statement_token12] = ACTIONS(8509), + [aux_sym_def_type_statement_token13] = ACTIONS(8509), + [aux_sym_def_type_statement_token14] = ACTIONS(8509), + [aux_sym_call_statement_token1] = ACTIONS(8509), + [sym__ambiguous_call_statement] = ACTIONS(8509), + [aux_sym_addressof_expression_token1] = ACTIONS(8509), + [aux_sym_type_of_expression_token1] = ACTIONS(8509), + [aux_sym_unary_expression_token1] = ACTIONS(8509), + [sym_string_literal] = ACTIONS(8511), + [sym_number_literal] = ACTIONS(8511), + [aux_sym_boolean_literal_token1] = ACTIONS(8509), + [aux_sym_boolean_literal_token2] = ACTIONS(8509), + [sym_nothing_literal] = ACTIONS(8509), + [sym_null_literal] = ACTIONS(8509), + [sym_empty_literal] = ACTIONS(8509), + [sym_date_literal] = ACTIONS(8511), + [anon_sym_POUND] = ACTIONS(8509), + }, + [STATE(5536)] = { + [sym_identifier] = ACTIONS(9146), + [sym_newline] = ACTIONS(9148), + [anon_sym_COLON] = ACTIONS(9148), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9146), + [aux_sym_frm_property_statement_token1] = ACTIONS(9146), + [anon_sym_DOT] = ACTIONS(9146), + [anon_sym_BANG] = ACTIONS(9148), + [aux_sym__attribute_identifier_token1] = ACTIONS(9146), + [aux_sym_option_statement_token3] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9146), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9146), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9146), + [aux_sym_preprocessor_const_token1] = ACTIONS(9146), + [sym_static_modifier] = ACTIONS(9146), + [sym__dim_keyword] = ACTIONS(9146), + [sym__redim_keyword] = ACTIONS(9146), + [aux_sym_get_accessor_token1] = ACTIONS(9146), + [aux_sym_set_accessor_token1] = ACTIONS(9146), + [aux_sym_const_declaration_token1] = ACTIONS(9146), + [anon_sym_LPAREN] = ACTIONS(9148), + [aux_sym_as_type_clause_token2] = ACTIONS(9146), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9146), + [aux_sym_visibility_token1] = ACTIONS(9146), + [aux_sym_visibility_token2] = ACTIONS(9146), + [aux_sym_elseif_fragment_token1] = ACTIONS(9146), + [aux_sym_else_fragment_token1] = ACTIONS(9146), + [aux_sym_select_statement_token1] = ACTIONS(9146), + [aux_sym__for_header_token1] = ACTIONS(9146), + [aux_sym_do_statement_token1] = ACTIONS(9146), + [aux_sym_do_condition_token1] = ACTIONS(9146), + [aux_sym_with_statement_token1] = ACTIONS(9146), + [aux_sym_exit_statement_token1] = ACTIONS(9146), + [sym_end_statement] = ACTIONS(9148), + [aux_sym_on_goto_statement_token1] = ACTIONS(9146), + [aux_sym_on_goto_statement_token2] = ACTIONS(9146), + [aux_sym_on_error_statement_token2] = ACTIONS(9146), + [sym__ambiguous_redim_statement] = ACTIONS(9148), + [aux_sym_erase_statement_token1] = ACTIONS(9146), + [aux_sym_open_statement_token1] = ACTIONS(9146), + [aux_sym_file_mode_token2] = ACTIONS(9146), + [aux_sym_file_access_token2] = ACTIONS(9146), + [aux_sym_file_lock_token2] = ACTIONS(9146), + [aux_sym_print_statement_token1] = ACTIONS(9146), + [anon_sym_PLUS] = ACTIONS(9148), + [anon_sym_DASH] = ACTIONS(9146), + [anon_sym_QMARK] = ACTIONS(9148), + [aux_sym_close_statement_token1] = ACTIONS(9146), + [aux_sym_put_statement_token1] = ACTIONS(9146), + [aux_sym_unlock_statement_token1] = ACTIONS(9146), + [aux_sym_seek_statement_token1] = ACTIONS(9146), + [sym_reset_statement] = ACTIONS(9146), + [aux_sym_raise_event_statement_token1] = ACTIONS(9146), + [sym_stop_statement] = ACTIONS(9146), + [sym_beep_statement] = ACTIONS(9146), + [aux_sym_unload_statement_token1] = ACTIONS(9146), + [aux_sym_def_type_statement_token1] = ACTIONS(9146), + [aux_sym_def_type_statement_token2] = ACTIONS(9146), + [aux_sym_def_type_statement_token3] = ACTIONS(9146), + [aux_sym_def_type_statement_token4] = ACTIONS(9146), + [aux_sym_def_type_statement_token5] = ACTIONS(9146), + [aux_sym_def_type_statement_token6] = ACTIONS(9146), + [aux_sym_def_type_statement_token7] = ACTIONS(9146), + [aux_sym_def_type_statement_token8] = ACTIONS(9146), + [aux_sym_def_type_statement_token9] = ACTIONS(9146), + [aux_sym_def_type_statement_token10] = ACTIONS(9146), + [aux_sym_def_type_statement_token11] = ACTIONS(9146), + [aux_sym_def_type_statement_token12] = ACTIONS(9146), + [aux_sym_def_type_statement_token13] = ACTIONS(9146), + [aux_sym_def_type_statement_token14] = ACTIONS(9146), + [aux_sym_call_statement_token1] = ACTIONS(9146), + [sym__ambiguous_call_statement] = ACTIONS(9146), + [aux_sym_addressof_expression_token1] = ACTIONS(9146), + [aux_sym_type_of_expression_token1] = ACTIONS(9146), + [aux_sym_unary_expression_token1] = ACTIONS(9146), + [sym_string_literal] = ACTIONS(9148), + [sym_number_literal] = ACTIONS(9148), + [aux_sym_boolean_literal_token1] = ACTIONS(9146), + [aux_sym_boolean_literal_token2] = ACTIONS(9146), + [sym_nothing_literal] = ACTIONS(9146), + [sym_null_literal] = ACTIONS(9146), + [sym_empty_literal] = ACTIONS(9146), + [sym_date_literal] = ACTIONS(9148), + [anon_sym_POUND] = ACTIONS(9146), + }, + [STATE(5537)] = { + [sym_do_condition] = STATE(6561), + [sym_identifier] = ACTIONS(8513), + [sym_newline] = ACTIONS(8515), + [anon_sym_COLON] = ACTIONS(8515), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8513), + [aux_sym_frm_property_statement_token1] = ACTIONS(8513), + [anon_sym_DOT] = ACTIONS(8513), + [anon_sym_BANG] = ACTIONS(8515), + [aux_sym__attribute_identifier_token1] = ACTIONS(8513), + [aux_sym_option_statement_token3] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8513), + [aux_sym_preprocessor_const_token1] = ACTIONS(8513), + [sym_static_modifier] = ACTIONS(8513), + [sym__dim_keyword] = ACTIONS(8513), + [sym__redim_keyword] = ACTIONS(8513), + [aux_sym_get_accessor_token1] = ACTIONS(8513), + [aux_sym_set_accessor_token1] = ACTIONS(8513), + [aux_sym_const_declaration_token1] = ACTIONS(8513), + [anon_sym_LPAREN] = ACTIONS(8515), + [aux_sym_as_type_clause_token2] = ACTIONS(8513), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8513), + [aux_sym_visibility_token1] = ACTIONS(8513), + [aux_sym_visibility_token2] = ACTIONS(8513), + [aux_sym_elseif_fragment_token1] = ACTIONS(8513), + [aux_sym_else_fragment_token1] = ACTIONS(8513), + [aux_sym_select_statement_token1] = ACTIONS(8513), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8513), + [aux_sym__for_header_token1] = ACTIONS(8513), + [aux_sym_do_statement_token1] = ACTIONS(8513), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8513), + [aux_sym_exit_statement_token1] = ACTIONS(8513), + [sym_end_statement] = ACTIONS(8515), + [aux_sym_on_goto_statement_token1] = ACTIONS(8513), + [aux_sym_on_goto_statement_token2] = ACTIONS(8513), + [aux_sym_on_error_statement_token2] = ACTIONS(8513), + [sym__ambiguous_redim_statement] = ACTIONS(8515), + [aux_sym_erase_statement_token1] = ACTIONS(8513), + [aux_sym_open_statement_token1] = ACTIONS(8513), + [aux_sym_file_mode_token2] = ACTIONS(8513), + [aux_sym_file_access_token2] = ACTIONS(8513), + [aux_sym_file_lock_token2] = ACTIONS(8513), + [aux_sym_print_statement_token1] = ACTIONS(8513), + [anon_sym_PLUS] = ACTIONS(8515), + [anon_sym_DASH] = ACTIONS(8513), + [anon_sym_QMARK] = ACTIONS(8515), + [aux_sym_close_statement_token1] = ACTIONS(8513), + [aux_sym_put_statement_token1] = ACTIONS(8513), + [aux_sym_unlock_statement_token1] = ACTIONS(8513), + [aux_sym_seek_statement_token1] = ACTIONS(8513), + [sym_reset_statement] = ACTIONS(8513), + [aux_sym_raise_event_statement_token1] = ACTIONS(8513), + [sym_stop_statement] = ACTIONS(8513), + [sym_beep_statement] = ACTIONS(8513), + [aux_sym_unload_statement_token1] = ACTIONS(8513), + [aux_sym_def_type_statement_token1] = ACTIONS(8513), + [aux_sym_def_type_statement_token2] = ACTIONS(8513), + [aux_sym_def_type_statement_token3] = ACTIONS(8513), + [aux_sym_def_type_statement_token4] = ACTIONS(8513), + [aux_sym_def_type_statement_token5] = ACTIONS(8513), + [aux_sym_def_type_statement_token6] = ACTIONS(8513), + [aux_sym_def_type_statement_token7] = ACTIONS(8513), + [aux_sym_def_type_statement_token8] = ACTIONS(8513), + [aux_sym_def_type_statement_token9] = ACTIONS(8513), + [aux_sym_def_type_statement_token10] = ACTIONS(8513), + [aux_sym_def_type_statement_token11] = ACTIONS(8513), + [aux_sym_def_type_statement_token12] = ACTIONS(8513), + [aux_sym_def_type_statement_token13] = ACTIONS(8513), + [aux_sym_def_type_statement_token14] = ACTIONS(8513), + [aux_sym_call_statement_token1] = ACTIONS(8513), + [sym__ambiguous_call_statement] = ACTIONS(8513), + [aux_sym_addressof_expression_token1] = ACTIONS(8513), + [aux_sym_type_of_expression_token1] = ACTIONS(8513), + [aux_sym_unary_expression_token1] = ACTIONS(8513), + [sym_string_literal] = ACTIONS(8515), + [sym_number_literal] = ACTIONS(8515), + [aux_sym_boolean_literal_token1] = ACTIONS(8513), + [aux_sym_boolean_literal_token2] = ACTIONS(8513), + [sym_nothing_literal] = ACTIONS(8513), + [sym_null_literal] = ACTIONS(8513), + [sym_empty_literal] = ACTIONS(8513), + [sym_date_literal] = ACTIONS(8515), + [anon_sym_POUND] = ACTIONS(8513), + }, + [STATE(5538)] = { + [sym_do_condition] = STATE(6563), + [sym_identifier] = ACTIONS(8517), + [sym_newline] = ACTIONS(8519), + [anon_sym_COLON] = ACTIONS(8519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8517), + [aux_sym_frm_property_statement_token1] = ACTIONS(8517), + [anon_sym_DOT] = ACTIONS(8517), + [anon_sym_BANG] = ACTIONS(8519), + [aux_sym__attribute_identifier_token1] = ACTIONS(8517), + [aux_sym_option_statement_token3] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8517), + [aux_sym_preprocessor_const_token1] = ACTIONS(8517), + [sym_static_modifier] = ACTIONS(8517), + [sym__dim_keyword] = ACTIONS(8517), + [sym__redim_keyword] = ACTIONS(8517), + [aux_sym_get_accessor_token1] = ACTIONS(8517), + [aux_sym_set_accessor_token1] = ACTIONS(8517), + [aux_sym_const_declaration_token1] = ACTIONS(8517), + [anon_sym_LPAREN] = ACTIONS(8519), + [aux_sym_as_type_clause_token2] = ACTIONS(8517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8517), + [aux_sym_visibility_token1] = ACTIONS(8517), + [aux_sym_visibility_token2] = ACTIONS(8517), + [aux_sym_elseif_fragment_token1] = ACTIONS(8517), + [aux_sym_else_fragment_token1] = ACTIONS(8517), + [aux_sym_select_statement_token1] = ACTIONS(8517), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8517), + [aux_sym__for_header_token1] = ACTIONS(8517), + [aux_sym_do_statement_token1] = ACTIONS(8517), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8517), + [aux_sym_exit_statement_token1] = ACTIONS(8517), + [sym_end_statement] = ACTIONS(8519), + [aux_sym_on_goto_statement_token1] = ACTIONS(8517), + [aux_sym_on_goto_statement_token2] = ACTIONS(8517), + [aux_sym_on_error_statement_token2] = ACTIONS(8517), + [sym__ambiguous_redim_statement] = ACTIONS(8519), + [aux_sym_erase_statement_token1] = ACTIONS(8517), + [aux_sym_open_statement_token1] = ACTIONS(8517), + [aux_sym_file_mode_token2] = ACTIONS(8517), + [aux_sym_file_access_token2] = ACTIONS(8517), + [aux_sym_file_lock_token2] = ACTIONS(8517), + [aux_sym_print_statement_token1] = ACTIONS(8517), + [anon_sym_PLUS] = ACTIONS(8519), + [anon_sym_DASH] = ACTIONS(8517), + [anon_sym_QMARK] = ACTIONS(8519), + [aux_sym_close_statement_token1] = ACTIONS(8517), + [aux_sym_put_statement_token1] = ACTIONS(8517), + [aux_sym_unlock_statement_token1] = ACTIONS(8517), + [aux_sym_seek_statement_token1] = ACTIONS(8517), + [sym_reset_statement] = ACTIONS(8517), + [aux_sym_raise_event_statement_token1] = ACTIONS(8517), + [sym_stop_statement] = ACTIONS(8517), + [sym_beep_statement] = ACTIONS(8517), + [aux_sym_unload_statement_token1] = ACTIONS(8517), + [aux_sym_def_type_statement_token1] = ACTIONS(8517), + [aux_sym_def_type_statement_token2] = ACTIONS(8517), + [aux_sym_def_type_statement_token3] = ACTIONS(8517), + [aux_sym_def_type_statement_token4] = ACTIONS(8517), + [aux_sym_def_type_statement_token5] = ACTIONS(8517), + [aux_sym_def_type_statement_token6] = ACTIONS(8517), + [aux_sym_def_type_statement_token7] = ACTIONS(8517), + [aux_sym_def_type_statement_token8] = ACTIONS(8517), + [aux_sym_def_type_statement_token9] = ACTIONS(8517), + [aux_sym_def_type_statement_token10] = ACTIONS(8517), + [aux_sym_def_type_statement_token11] = ACTIONS(8517), + [aux_sym_def_type_statement_token12] = ACTIONS(8517), + [aux_sym_def_type_statement_token13] = ACTIONS(8517), + [aux_sym_def_type_statement_token14] = ACTIONS(8517), + [aux_sym_call_statement_token1] = ACTIONS(8517), + [sym__ambiguous_call_statement] = ACTIONS(8517), + [aux_sym_addressof_expression_token1] = ACTIONS(8517), + [aux_sym_type_of_expression_token1] = ACTIONS(8517), + [aux_sym_unary_expression_token1] = ACTIONS(8517), + [sym_string_literal] = ACTIONS(8519), + [sym_number_literal] = ACTIONS(8519), + [aux_sym_boolean_literal_token1] = ACTIONS(8517), + [aux_sym_boolean_literal_token2] = ACTIONS(8517), + [sym_nothing_literal] = ACTIONS(8517), + [sym_null_literal] = ACTIONS(8517), + [sym_empty_literal] = ACTIONS(8517), + [sym_date_literal] = ACTIONS(8519), + [anon_sym_POUND] = ACTIONS(8517), + }, + [STATE(5539)] = { + [sym_identifier] = ACTIONS(8809), + [sym_newline] = ACTIONS(8811), + [anon_sym_COLON] = ACTIONS(8811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8809), + [aux_sym_frm_property_statement_token1] = ACTIONS(8809), + [anon_sym_DOT] = ACTIONS(8809), + [anon_sym_BANG] = ACTIONS(8811), + [aux_sym__attribute_identifier_token1] = ACTIONS(8809), + [aux_sym_option_statement_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8809), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8809), + [aux_sym_preprocessor_const_token1] = ACTIONS(8809), + [sym_static_modifier] = ACTIONS(8809), + [sym__dim_keyword] = ACTIONS(8809), + [sym__redim_keyword] = ACTIONS(8809), + [aux_sym_get_accessor_token1] = ACTIONS(8809), + [aux_sym_set_accessor_token1] = ACTIONS(8809), + [aux_sym_const_declaration_token1] = ACTIONS(8809), + [anon_sym_LPAREN] = ACTIONS(8811), + [aux_sym_as_type_clause_token2] = ACTIONS(8809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8809), + [aux_sym_visibility_token1] = ACTIONS(8809), + [aux_sym_visibility_token2] = ACTIONS(8809), + [aux_sym_elseif_fragment_token1] = ACTIONS(8809), + [aux_sym_else_fragment_token1] = ACTIONS(8809), + [aux_sym_select_statement_token1] = ACTIONS(8809), + [aux_sym__for_header_token1] = ACTIONS(8809), + [aux_sym_do_statement_token1] = ACTIONS(8809), + [aux_sym_do_condition_token1] = ACTIONS(8809), + [aux_sym_with_statement_token1] = ACTIONS(8809), + [aux_sym_exit_statement_token1] = ACTIONS(8809), + [sym_end_statement] = ACTIONS(8811), + [aux_sym_on_goto_statement_token1] = ACTIONS(8809), + [aux_sym_on_goto_statement_token2] = ACTIONS(8809), + [aux_sym_on_error_statement_token2] = ACTIONS(8809), + [sym__ambiguous_redim_statement] = ACTIONS(8811), + [aux_sym_erase_statement_token1] = ACTIONS(8809), + [aux_sym_open_statement_token1] = ACTIONS(8809), + [aux_sym_file_mode_token2] = ACTIONS(8809), + [aux_sym_file_access_token2] = ACTIONS(8809), + [aux_sym_file_lock_token2] = ACTIONS(8809), + [aux_sym_print_statement_token1] = ACTIONS(8809), + [anon_sym_PLUS] = ACTIONS(8811), + [anon_sym_DASH] = ACTIONS(8809), + [anon_sym_QMARK] = ACTIONS(8811), + [aux_sym_close_statement_token1] = ACTIONS(8809), + [aux_sym_put_statement_token1] = ACTIONS(8809), + [aux_sym_unlock_statement_token1] = ACTIONS(8809), + [aux_sym_seek_statement_token1] = ACTIONS(8809), + [sym_reset_statement] = ACTIONS(8809), + [aux_sym_raise_event_statement_token1] = ACTIONS(8809), + [sym_stop_statement] = ACTIONS(8809), + [sym_beep_statement] = ACTIONS(8809), + [aux_sym_unload_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token2] = ACTIONS(8809), + [aux_sym_def_type_statement_token3] = ACTIONS(8809), + [aux_sym_def_type_statement_token4] = ACTIONS(8809), + [aux_sym_def_type_statement_token5] = ACTIONS(8809), + [aux_sym_def_type_statement_token6] = ACTIONS(8809), + [aux_sym_def_type_statement_token7] = ACTIONS(8809), + [aux_sym_def_type_statement_token8] = ACTIONS(8809), + [aux_sym_def_type_statement_token9] = ACTIONS(8809), + [aux_sym_def_type_statement_token10] = ACTIONS(8809), + [aux_sym_def_type_statement_token11] = ACTIONS(8809), + [aux_sym_def_type_statement_token12] = ACTIONS(8809), + [aux_sym_def_type_statement_token13] = ACTIONS(8809), + [aux_sym_def_type_statement_token14] = ACTIONS(8809), + [aux_sym_call_statement_token1] = ACTIONS(8809), + [sym__ambiguous_call_statement] = ACTIONS(8809), + [aux_sym_addressof_expression_token1] = ACTIONS(8809), + [aux_sym_type_of_expression_token1] = ACTIONS(8809), + [aux_sym_unary_expression_token1] = ACTIONS(8809), + [sym_string_literal] = ACTIONS(8811), + [sym_number_literal] = ACTIONS(8811), + [aux_sym_boolean_literal_token1] = ACTIONS(8809), + [aux_sym_boolean_literal_token2] = ACTIONS(8809), + [sym_nothing_literal] = ACTIONS(8809), + [sym_null_literal] = ACTIONS(8809), + [sym_empty_literal] = ACTIONS(8809), + [sym_date_literal] = ACTIONS(8811), + [anon_sym_POUND] = ACTIONS(8809), + }, + [STATE(5540)] = { + [sym_identifier] = ACTIONS(8877), + [sym_newline] = ACTIONS(8879), + [anon_sym_COLON] = ACTIONS(8879), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8877), + [aux_sym_frm_property_statement_token1] = ACTIONS(8877), + [anon_sym_DOT] = ACTIONS(8877), + [anon_sym_BANG] = ACTIONS(8879), + [aux_sym__attribute_identifier_token1] = ACTIONS(8877), + [aux_sym_option_statement_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8877), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8877), + [aux_sym_preprocessor_const_token1] = ACTIONS(8877), + [sym_static_modifier] = ACTIONS(8877), + [sym__dim_keyword] = ACTIONS(8877), + [sym__redim_keyword] = ACTIONS(8877), + [aux_sym_get_accessor_token1] = ACTIONS(8877), + [aux_sym_set_accessor_token1] = ACTIONS(8877), + [aux_sym_const_declaration_token1] = ACTIONS(8877), + [anon_sym_LPAREN] = ACTIONS(8879), + [aux_sym_as_type_clause_token2] = ACTIONS(8877), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8877), + [aux_sym_visibility_token1] = ACTIONS(8877), + [aux_sym_visibility_token2] = ACTIONS(8877), + [aux_sym_elseif_fragment_token1] = ACTIONS(8877), + [aux_sym_else_fragment_token1] = ACTIONS(8877), + [aux_sym_select_statement_token1] = ACTIONS(8877), + [aux_sym__for_header_token1] = ACTIONS(8877), + [aux_sym_do_statement_token1] = ACTIONS(8877), + [aux_sym_do_condition_token1] = ACTIONS(8877), + [aux_sym_with_statement_token1] = ACTIONS(8877), + [aux_sym_exit_statement_token1] = ACTIONS(8877), + [sym_end_statement] = ACTIONS(8879), + [aux_sym_on_goto_statement_token1] = ACTIONS(8877), + [aux_sym_on_goto_statement_token2] = ACTIONS(8877), + [aux_sym_on_error_statement_token2] = ACTIONS(8877), + [sym__ambiguous_redim_statement] = ACTIONS(8879), + [aux_sym_erase_statement_token1] = ACTIONS(8877), + [aux_sym_open_statement_token1] = ACTIONS(8877), + [aux_sym_file_mode_token2] = ACTIONS(8877), + [aux_sym_file_access_token2] = ACTIONS(8877), + [aux_sym_file_lock_token2] = ACTIONS(8877), + [aux_sym_print_statement_token1] = ACTIONS(8877), + [anon_sym_PLUS] = ACTIONS(8879), + [anon_sym_DASH] = ACTIONS(8877), + [anon_sym_QMARK] = ACTIONS(8879), + [aux_sym_close_statement_token1] = ACTIONS(8877), + [aux_sym_put_statement_token1] = ACTIONS(8877), + [aux_sym_unlock_statement_token1] = ACTIONS(8877), + [aux_sym_seek_statement_token1] = ACTIONS(8877), + [sym_reset_statement] = ACTIONS(8877), + [aux_sym_raise_event_statement_token1] = ACTIONS(8877), + [sym_stop_statement] = ACTIONS(8877), + [sym_beep_statement] = ACTIONS(8877), + [aux_sym_unload_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token2] = ACTIONS(8877), + [aux_sym_def_type_statement_token3] = ACTIONS(8877), + [aux_sym_def_type_statement_token4] = ACTIONS(8877), + [aux_sym_def_type_statement_token5] = ACTIONS(8877), + [aux_sym_def_type_statement_token6] = ACTIONS(8877), + [aux_sym_def_type_statement_token7] = ACTIONS(8877), + [aux_sym_def_type_statement_token8] = ACTIONS(8877), + [aux_sym_def_type_statement_token9] = ACTIONS(8877), + [aux_sym_def_type_statement_token10] = ACTIONS(8877), + [aux_sym_def_type_statement_token11] = ACTIONS(8877), + [aux_sym_def_type_statement_token12] = ACTIONS(8877), + [aux_sym_def_type_statement_token13] = ACTIONS(8877), + [aux_sym_def_type_statement_token14] = ACTIONS(8877), + [aux_sym_call_statement_token1] = ACTIONS(8877), + [sym__ambiguous_call_statement] = ACTIONS(8877), + [aux_sym_addressof_expression_token1] = ACTIONS(8877), + [aux_sym_type_of_expression_token1] = ACTIONS(8877), + [aux_sym_unary_expression_token1] = ACTIONS(8877), + [sym_string_literal] = ACTIONS(8879), + [sym_number_literal] = ACTIONS(8879), + [aux_sym_boolean_literal_token1] = ACTIONS(8877), + [aux_sym_boolean_literal_token2] = ACTIONS(8877), + [sym_nothing_literal] = ACTIONS(8877), + [sym_null_literal] = ACTIONS(8877), + [sym_empty_literal] = ACTIONS(8877), + [sym_date_literal] = ACTIONS(8879), + [anon_sym_POUND] = ACTIONS(8877), + }, + [STATE(5541)] = { + [sym_identifier] = ACTIONS(8907), + [sym_newline] = ACTIONS(8909), + [anon_sym_COLON] = ACTIONS(8909), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8907), + [aux_sym_frm_property_statement_token1] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8907), + [anon_sym_BANG] = ACTIONS(8909), + [aux_sym__attribute_identifier_token1] = ACTIONS(8907), + [aux_sym_option_statement_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8907), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8907), + [aux_sym_preprocessor_const_token1] = ACTIONS(8907), + [sym_static_modifier] = ACTIONS(8907), + [sym__dim_keyword] = ACTIONS(8907), + [sym__redim_keyword] = ACTIONS(8907), + [aux_sym_get_accessor_token1] = ACTIONS(8907), + [aux_sym_set_accessor_token1] = ACTIONS(8907), + [aux_sym_const_declaration_token1] = ACTIONS(8907), + [anon_sym_LPAREN] = ACTIONS(8909), + [aux_sym_as_type_clause_token2] = ACTIONS(8907), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8907), + [aux_sym_visibility_token1] = ACTIONS(8907), + [aux_sym_visibility_token2] = ACTIONS(8907), + [aux_sym_elseif_fragment_token1] = ACTIONS(8907), + [aux_sym_else_fragment_token1] = ACTIONS(8907), + [aux_sym_select_statement_token1] = ACTIONS(8907), + [aux_sym__for_header_token1] = ACTIONS(8907), + [aux_sym_do_statement_token1] = ACTIONS(8907), + [aux_sym_do_condition_token1] = ACTIONS(8907), + [aux_sym_with_statement_token1] = ACTIONS(8907), + [aux_sym_exit_statement_token1] = ACTIONS(8907), + [sym_end_statement] = ACTIONS(8909), + [aux_sym_on_goto_statement_token1] = ACTIONS(8907), + [aux_sym_on_goto_statement_token2] = ACTIONS(8907), + [aux_sym_on_error_statement_token2] = ACTIONS(8907), + [sym__ambiguous_redim_statement] = ACTIONS(8909), + [aux_sym_erase_statement_token1] = ACTIONS(8907), + [aux_sym_open_statement_token1] = ACTIONS(8907), + [aux_sym_file_mode_token2] = ACTIONS(8907), + [aux_sym_file_access_token2] = ACTIONS(8907), + [aux_sym_file_lock_token2] = ACTIONS(8907), + [aux_sym_print_statement_token1] = ACTIONS(8907), + [anon_sym_PLUS] = ACTIONS(8909), + [anon_sym_DASH] = ACTIONS(8907), + [anon_sym_QMARK] = ACTIONS(8909), + [aux_sym_close_statement_token1] = ACTIONS(8907), + [aux_sym_put_statement_token1] = ACTIONS(8907), + [aux_sym_unlock_statement_token1] = ACTIONS(8907), + [aux_sym_seek_statement_token1] = ACTIONS(8907), + [sym_reset_statement] = ACTIONS(8907), + [aux_sym_raise_event_statement_token1] = ACTIONS(8907), + [sym_stop_statement] = ACTIONS(8907), + [sym_beep_statement] = ACTIONS(8907), + [aux_sym_unload_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token2] = ACTIONS(8907), + [aux_sym_def_type_statement_token3] = ACTIONS(8907), + [aux_sym_def_type_statement_token4] = ACTIONS(8907), + [aux_sym_def_type_statement_token5] = ACTIONS(8907), + [aux_sym_def_type_statement_token6] = ACTIONS(8907), + [aux_sym_def_type_statement_token7] = ACTIONS(8907), + [aux_sym_def_type_statement_token8] = ACTIONS(8907), + [aux_sym_def_type_statement_token9] = ACTIONS(8907), + [aux_sym_def_type_statement_token10] = ACTIONS(8907), + [aux_sym_def_type_statement_token11] = ACTIONS(8907), + [aux_sym_def_type_statement_token12] = ACTIONS(8907), + [aux_sym_def_type_statement_token13] = ACTIONS(8907), + [aux_sym_def_type_statement_token14] = ACTIONS(8907), + [aux_sym_call_statement_token1] = ACTIONS(8907), + [sym__ambiguous_call_statement] = ACTIONS(8907), + [aux_sym_addressof_expression_token1] = ACTIONS(8907), + [aux_sym_type_of_expression_token1] = ACTIONS(8907), + [aux_sym_unary_expression_token1] = ACTIONS(8907), + [sym_string_literal] = ACTIONS(8909), + [sym_number_literal] = ACTIONS(8909), + [aux_sym_boolean_literal_token1] = ACTIONS(8907), + [aux_sym_boolean_literal_token2] = ACTIONS(8907), + [sym_nothing_literal] = ACTIONS(8907), + [sym_null_literal] = ACTIONS(8907), + [sym_empty_literal] = ACTIONS(8907), + [sym_date_literal] = ACTIONS(8909), + [anon_sym_POUND] = ACTIONS(8907), + }, + [STATE(5542)] = { + [sym_identifier] = ACTIONS(8927), + [sym_newline] = ACTIONS(8929), + [anon_sym_COLON] = ACTIONS(8929), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8927), + [aux_sym_frm_property_statement_token1] = ACTIONS(8927), + [anon_sym_DOT] = ACTIONS(8927), + [anon_sym_BANG] = ACTIONS(8929), + [aux_sym__attribute_identifier_token1] = ACTIONS(8927), + [aux_sym_option_statement_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8927), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8927), + [aux_sym_preprocessor_const_token1] = ACTIONS(8927), + [sym_static_modifier] = ACTIONS(8927), + [sym__dim_keyword] = ACTIONS(8927), + [sym__redim_keyword] = ACTIONS(8927), + [aux_sym_get_accessor_token1] = ACTIONS(8927), + [aux_sym_set_accessor_token1] = ACTIONS(8927), + [aux_sym_const_declaration_token1] = ACTIONS(8927), + [anon_sym_LPAREN] = ACTIONS(8929), + [aux_sym_as_type_clause_token2] = ACTIONS(8927), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8927), + [aux_sym_visibility_token1] = ACTIONS(8927), + [aux_sym_visibility_token2] = ACTIONS(8927), + [aux_sym_elseif_fragment_token1] = ACTIONS(8927), + [aux_sym_else_fragment_token1] = ACTIONS(8927), + [aux_sym_select_statement_token1] = ACTIONS(8927), + [aux_sym__for_header_token1] = ACTIONS(8927), + [aux_sym_do_statement_token1] = ACTIONS(8927), + [aux_sym_do_condition_token1] = ACTIONS(8927), + [aux_sym_with_statement_token1] = ACTIONS(8927), + [aux_sym_exit_statement_token1] = ACTIONS(8927), + [sym_end_statement] = ACTIONS(8929), + [aux_sym_on_goto_statement_token1] = ACTIONS(8927), + [aux_sym_on_goto_statement_token2] = ACTIONS(8927), + [aux_sym_on_error_statement_token2] = ACTIONS(8927), + [sym__ambiguous_redim_statement] = ACTIONS(8929), + [aux_sym_erase_statement_token1] = ACTIONS(8927), + [aux_sym_open_statement_token1] = ACTIONS(8927), + [aux_sym_file_mode_token2] = ACTIONS(8927), + [aux_sym_file_access_token2] = ACTIONS(8927), + [aux_sym_file_lock_token2] = ACTIONS(8927), + [aux_sym_print_statement_token1] = ACTIONS(8927), + [anon_sym_PLUS] = ACTIONS(8929), + [anon_sym_DASH] = ACTIONS(8927), + [anon_sym_QMARK] = ACTIONS(8929), + [aux_sym_close_statement_token1] = ACTIONS(8927), + [aux_sym_put_statement_token1] = ACTIONS(8927), + [aux_sym_unlock_statement_token1] = ACTIONS(8927), + [aux_sym_seek_statement_token1] = ACTIONS(8927), + [sym_reset_statement] = ACTIONS(8927), + [aux_sym_raise_event_statement_token1] = ACTIONS(8927), + [sym_stop_statement] = ACTIONS(8927), + [sym_beep_statement] = ACTIONS(8927), + [aux_sym_unload_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token2] = ACTIONS(8927), + [aux_sym_def_type_statement_token3] = ACTIONS(8927), + [aux_sym_def_type_statement_token4] = ACTIONS(8927), + [aux_sym_def_type_statement_token5] = ACTIONS(8927), + [aux_sym_def_type_statement_token6] = ACTIONS(8927), + [aux_sym_def_type_statement_token7] = ACTIONS(8927), + [aux_sym_def_type_statement_token8] = ACTIONS(8927), + [aux_sym_def_type_statement_token9] = ACTIONS(8927), + [aux_sym_def_type_statement_token10] = ACTIONS(8927), + [aux_sym_def_type_statement_token11] = ACTIONS(8927), + [aux_sym_def_type_statement_token12] = ACTIONS(8927), + [aux_sym_def_type_statement_token13] = ACTIONS(8927), + [aux_sym_def_type_statement_token14] = ACTIONS(8927), + [aux_sym_call_statement_token1] = ACTIONS(8927), + [sym__ambiguous_call_statement] = ACTIONS(8927), + [aux_sym_addressof_expression_token1] = ACTIONS(8927), + [aux_sym_type_of_expression_token1] = ACTIONS(8927), + [aux_sym_unary_expression_token1] = ACTIONS(8927), + [sym_string_literal] = ACTIONS(8929), + [sym_number_literal] = ACTIONS(8929), + [aux_sym_boolean_literal_token1] = ACTIONS(8927), + [aux_sym_boolean_literal_token2] = ACTIONS(8927), + [sym_nothing_literal] = ACTIONS(8927), + [sym_null_literal] = ACTIONS(8927), + [sym_empty_literal] = ACTIONS(8927), + [sym_date_literal] = ACTIONS(8929), + [anon_sym_POUND] = ACTIONS(8927), + }, + [STATE(5543)] = { + [sym_identifier] = ACTIONS(8931), + [sym_newline] = ACTIONS(8933), + [anon_sym_COLON] = ACTIONS(8933), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8931), + [aux_sym_frm_property_statement_token1] = ACTIONS(8931), + [anon_sym_DOT] = ACTIONS(8931), + [anon_sym_BANG] = ACTIONS(8933), + [aux_sym__attribute_identifier_token1] = ACTIONS(8931), + [aux_sym_option_statement_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8931), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8931), + [aux_sym_preprocessor_const_token1] = ACTIONS(8931), + [sym_static_modifier] = ACTIONS(8931), + [sym__dim_keyword] = ACTIONS(8931), + [sym__redim_keyword] = ACTIONS(8931), + [aux_sym_get_accessor_token1] = ACTIONS(8931), + [aux_sym_set_accessor_token1] = ACTIONS(8931), + [aux_sym_const_declaration_token1] = ACTIONS(8931), + [anon_sym_LPAREN] = ACTIONS(8933), + [aux_sym_as_type_clause_token2] = ACTIONS(8931), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8931), + [aux_sym_visibility_token1] = ACTIONS(8931), + [aux_sym_visibility_token2] = ACTIONS(8931), + [aux_sym_elseif_fragment_token1] = ACTIONS(8931), + [aux_sym_else_fragment_token1] = ACTIONS(8931), + [aux_sym_select_statement_token1] = ACTIONS(8931), + [aux_sym__for_header_token1] = ACTIONS(8931), + [aux_sym_do_statement_token1] = ACTIONS(8931), + [aux_sym_do_condition_token1] = ACTIONS(8931), + [aux_sym_with_statement_token1] = ACTIONS(8931), + [aux_sym_exit_statement_token1] = ACTIONS(8931), + [sym_end_statement] = ACTIONS(8933), + [aux_sym_on_goto_statement_token1] = ACTIONS(8931), + [aux_sym_on_goto_statement_token2] = ACTIONS(8931), + [aux_sym_on_error_statement_token2] = ACTIONS(8931), + [sym__ambiguous_redim_statement] = ACTIONS(8933), + [aux_sym_erase_statement_token1] = ACTIONS(8931), + [aux_sym_open_statement_token1] = ACTIONS(8931), + [aux_sym_file_mode_token2] = ACTIONS(8931), + [aux_sym_file_access_token2] = ACTIONS(8931), + [aux_sym_file_lock_token2] = ACTIONS(8931), + [aux_sym_print_statement_token1] = ACTIONS(8931), + [anon_sym_PLUS] = ACTIONS(8933), + [anon_sym_DASH] = ACTIONS(8931), + [anon_sym_QMARK] = ACTIONS(8933), + [aux_sym_close_statement_token1] = ACTIONS(8931), + [aux_sym_put_statement_token1] = ACTIONS(8931), + [aux_sym_unlock_statement_token1] = ACTIONS(8931), + [aux_sym_seek_statement_token1] = ACTIONS(8931), + [sym_reset_statement] = ACTIONS(8931), + [aux_sym_raise_event_statement_token1] = ACTIONS(8931), + [sym_stop_statement] = ACTIONS(8931), + [sym_beep_statement] = ACTIONS(8931), + [aux_sym_unload_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token2] = ACTIONS(8931), + [aux_sym_def_type_statement_token3] = ACTIONS(8931), + [aux_sym_def_type_statement_token4] = ACTIONS(8931), + [aux_sym_def_type_statement_token5] = ACTIONS(8931), + [aux_sym_def_type_statement_token6] = ACTIONS(8931), + [aux_sym_def_type_statement_token7] = ACTIONS(8931), + [aux_sym_def_type_statement_token8] = ACTIONS(8931), + [aux_sym_def_type_statement_token9] = ACTIONS(8931), + [aux_sym_def_type_statement_token10] = ACTIONS(8931), + [aux_sym_def_type_statement_token11] = ACTIONS(8931), + [aux_sym_def_type_statement_token12] = ACTIONS(8931), + [aux_sym_def_type_statement_token13] = ACTIONS(8931), + [aux_sym_def_type_statement_token14] = ACTIONS(8931), + [aux_sym_call_statement_token1] = ACTIONS(8931), + [sym__ambiguous_call_statement] = ACTIONS(8931), + [aux_sym_addressof_expression_token1] = ACTIONS(8931), + [aux_sym_type_of_expression_token1] = ACTIONS(8931), + [aux_sym_unary_expression_token1] = ACTIONS(8931), + [sym_string_literal] = ACTIONS(8933), + [sym_number_literal] = ACTIONS(8933), + [aux_sym_boolean_literal_token1] = ACTIONS(8931), + [aux_sym_boolean_literal_token2] = ACTIONS(8931), + [sym_nothing_literal] = ACTIONS(8931), + [sym_null_literal] = ACTIONS(8931), + [sym_empty_literal] = ACTIONS(8931), + [sym_date_literal] = ACTIONS(8933), + [anon_sym_POUND] = ACTIONS(8931), + }, + [STATE(5544)] = { + [sym__required_file_number] = STATE(6194), + [sym_file_number_literal] = STATE(6191), + [sym_identifier] = ACTIONS(8312), + [sym_newline] = ACTIONS(8314), + [anon_sym_COLON] = ACTIONS(8314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8312), + [aux_sym_frm_property_statement_token1] = ACTIONS(8312), + [anon_sym_DOT] = ACTIONS(8312), + [anon_sym_BANG] = ACTIONS(8314), + [aux_sym__attribute_identifier_token1] = ACTIONS(8312), + [aux_sym_option_statement_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8312), + [aux_sym_preprocessor_const_token1] = ACTIONS(8312), + [sym_static_modifier] = ACTIONS(8312), + [sym__dim_keyword] = ACTIONS(8312), + [sym__redim_keyword] = ACTIONS(8312), + [aux_sym_get_accessor_token1] = ACTIONS(8312), + [aux_sym_set_accessor_token1] = ACTIONS(8312), + [aux_sym_const_declaration_token1] = ACTIONS(8312), + [anon_sym_LPAREN] = ACTIONS(8314), + [aux_sym_as_type_clause_token2] = ACTIONS(8312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8312), + [aux_sym_visibility_token1] = ACTIONS(8312), + [aux_sym_visibility_token2] = ACTIONS(8312), + [aux_sym_elseif_fragment_token1] = ACTIONS(8312), + [aux_sym_else_fragment_token1] = ACTIONS(8312), + [aux_sym_select_statement_token1] = ACTIONS(8312), + [aux_sym__for_header_token1] = ACTIONS(8312), + [aux_sym_do_statement_token1] = ACTIONS(8312), + [aux_sym_do_statement_token2] = ACTIONS(8312), + [aux_sym_do_condition_token1] = ACTIONS(8312), + [aux_sym_with_statement_token1] = ACTIONS(8312), + [aux_sym_exit_statement_token1] = ACTIONS(8312), + [sym_end_statement] = ACTIONS(8314), + [aux_sym_on_goto_statement_token1] = ACTIONS(8312), + [aux_sym_on_goto_statement_token2] = ACTIONS(8312), + [aux_sym_on_error_statement_token2] = ACTIONS(8312), + [sym__ambiguous_redim_statement] = ACTIONS(8314), + [aux_sym_erase_statement_token1] = ACTIONS(8312), + [aux_sym_open_statement_token1] = ACTIONS(8312), + [aux_sym_file_mode_token2] = ACTIONS(8312), + [aux_sym_file_access_token2] = ACTIONS(8312), + [aux_sym_file_lock_token2] = ACTIONS(8312), + [aux_sym_print_statement_token1] = ACTIONS(8312), + [anon_sym_PLUS] = ACTIONS(8314), + [anon_sym_DASH] = ACTIONS(8312), + [anon_sym_QMARK] = ACTIONS(8314), + [aux_sym_close_statement_token1] = ACTIONS(8312), + [aux_sym_put_statement_token1] = ACTIONS(8312), + [aux_sym_unlock_statement_token1] = ACTIONS(8312), + [aux_sym_seek_statement_token1] = ACTIONS(8312), + [sym_reset_statement] = ACTIONS(8312), + [aux_sym_raise_event_statement_token1] = ACTIONS(8312), + [sym_stop_statement] = ACTIONS(8312), + [sym_beep_statement] = ACTIONS(8312), + [aux_sym_unload_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token2] = ACTIONS(8312), + [aux_sym_def_type_statement_token3] = ACTIONS(8312), + [aux_sym_def_type_statement_token4] = ACTIONS(8312), + [aux_sym_def_type_statement_token5] = ACTIONS(8312), + [aux_sym_def_type_statement_token6] = ACTIONS(8312), + [aux_sym_def_type_statement_token7] = ACTIONS(8312), + [aux_sym_def_type_statement_token8] = ACTIONS(8312), + [aux_sym_def_type_statement_token9] = ACTIONS(8312), + [aux_sym_def_type_statement_token10] = ACTIONS(8312), + [aux_sym_def_type_statement_token11] = ACTIONS(8312), + [aux_sym_def_type_statement_token12] = ACTIONS(8312), + [aux_sym_def_type_statement_token13] = ACTIONS(8312), + [aux_sym_def_type_statement_token14] = ACTIONS(8312), + [aux_sym_call_statement_token1] = ACTIONS(8312), + [sym__ambiguous_call_statement] = ACTIONS(8312), + [aux_sym_addressof_expression_token1] = ACTIONS(8312), + [aux_sym_type_of_expression_token1] = ACTIONS(8312), + [aux_sym_unary_expression_token1] = ACTIONS(8312), + [sym_string_literal] = ACTIONS(8314), + [sym_number_literal] = ACTIONS(8314), + [aux_sym_boolean_literal_token1] = ACTIONS(8312), + [aux_sym_boolean_literal_token2] = ACTIONS(8312), + [sym_nothing_literal] = ACTIONS(8312), + [sym_null_literal] = ACTIONS(8312), + [sym_empty_literal] = ACTIONS(8312), + [sym_date_literal] = ACTIONS(8314), + [anon_sym_POUND] = ACTIONS(1711), + }, + [STATE(5545)] = { + [sym_identifier] = ACTIONS(9176), + [sym_newline] = ACTIONS(9178), + [anon_sym_COLON] = ACTIONS(9178), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9176), + [aux_sym_frm_property_statement_token1] = ACTIONS(9176), + [anon_sym_DOT] = ACTIONS(9176), + [anon_sym_BANG] = ACTIONS(9178), + [aux_sym__attribute_identifier_token1] = ACTIONS(9176), + [aux_sym_option_statement_token3] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9176), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9176), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9176), + [aux_sym_preprocessor_const_token1] = ACTIONS(9176), + [sym_static_modifier] = ACTIONS(9176), + [sym__dim_keyword] = ACTIONS(9176), + [sym__redim_keyword] = ACTIONS(9176), + [aux_sym_get_accessor_token1] = ACTIONS(9176), + [aux_sym_set_accessor_token1] = ACTIONS(9176), + [aux_sym_const_declaration_token1] = ACTIONS(9176), + [anon_sym_LPAREN] = ACTIONS(9178), + [aux_sym_as_type_clause_token2] = ACTIONS(9176), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9176), + [aux_sym_visibility_token1] = ACTIONS(9176), + [aux_sym_visibility_token2] = ACTIONS(9176), + [aux_sym_elseif_fragment_token1] = ACTIONS(9176), + [aux_sym_else_fragment_token1] = ACTIONS(9176), + [aux_sym_select_statement_token1] = ACTIONS(9176), + [aux_sym__for_header_token1] = ACTIONS(9176), + [aux_sym_do_statement_token1] = ACTIONS(9176), + [aux_sym_do_condition_token1] = ACTIONS(9176), + [aux_sym_with_statement_token1] = ACTIONS(9176), + [aux_sym_exit_statement_token1] = ACTIONS(9176), + [sym_end_statement] = ACTIONS(9178), + [aux_sym_on_goto_statement_token1] = ACTIONS(9176), + [aux_sym_on_goto_statement_token2] = ACTIONS(9176), + [aux_sym_on_error_statement_token2] = ACTIONS(9176), + [sym__ambiguous_redim_statement] = ACTIONS(9178), + [aux_sym_erase_statement_token1] = ACTIONS(9176), + [aux_sym_open_statement_token1] = ACTIONS(9176), + [aux_sym_file_mode_token2] = ACTIONS(9176), + [aux_sym_file_access_token2] = ACTIONS(9176), + [aux_sym_file_lock_token2] = ACTIONS(9176), + [aux_sym_print_statement_token1] = ACTIONS(9176), + [anon_sym_PLUS] = ACTIONS(9178), + [anon_sym_DASH] = ACTIONS(9176), + [anon_sym_QMARK] = ACTIONS(9178), + [aux_sym_close_statement_token1] = ACTIONS(9176), + [aux_sym_put_statement_token1] = ACTIONS(9176), + [aux_sym_unlock_statement_token1] = ACTIONS(9176), + [aux_sym_seek_statement_token1] = ACTIONS(9176), + [sym_reset_statement] = ACTIONS(9176), + [aux_sym_raise_event_statement_token1] = ACTIONS(9176), + [sym_stop_statement] = ACTIONS(9176), + [sym_beep_statement] = ACTIONS(9176), + [aux_sym_unload_statement_token1] = ACTIONS(9176), + [aux_sym_def_type_statement_token1] = ACTIONS(9176), + [aux_sym_def_type_statement_token2] = ACTIONS(9176), + [aux_sym_def_type_statement_token3] = ACTIONS(9176), + [aux_sym_def_type_statement_token4] = ACTIONS(9176), + [aux_sym_def_type_statement_token5] = ACTIONS(9176), + [aux_sym_def_type_statement_token6] = ACTIONS(9176), + [aux_sym_def_type_statement_token7] = ACTIONS(9176), + [aux_sym_def_type_statement_token8] = ACTIONS(9176), + [aux_sym_def_type_statement_token9] = ACTIONS(9176), + [aux_sym_def_type_statement_token10] = ACTIONS(9176), + [aux_sym_def_type_statement_token11] = ACTIONS(9176), + [aux_sym_def_type_statement_token12] = ACTIONS(9176), + [aux_sym_def_type_statement_token13] = ACTIONS(9176), + [aux_sym_def_type_statement_token14] = ACTIONS(9176), + [aux_sym_call_statement_token1] = ACTIONS(9176), + [sym__ambiguous_call_statement] = ACTIONS(9176), + [aux_sym_addressof_expression_token1] = ACTIONS(9176), + [aux_sym_type_of_expression_token1] = ACTIONS(9176), + [aux_sym_unary_expression_token1] = ACTIONS(9176), + [sym_string_literal] = ACTIONS(9178), + [sym_number_literal] = ACTIONS(9178), + [aux_sym_boolean_literal_token1] = ACTIONS(9176), + [aux_sym_boolean_literal_token2] = ACTIONS(9176), + [sym_nothing_literal] = ACTIONS(9176), + [sym_null_literal] = ACTIONS(9176), + [sym_empty_literal] = ACTIONS(9176), + [sym_date_literal] = ACTIONS(9178), + [anon_sym_POUND] = ACTIONS(9176), + }, + [STATE(5546)] = { + [sym_identifier] = ACTIONS(9180), + [sym_newline] = ACTIONS(9182), + [anon_sym_COLON] = ACTIONS(9182), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9180), + [aux_sym_frm_property_statement_token1] = ACTIONS(9180), + [anon_sym_DOT] = ACTIONS(9180), + [anon_sym_BANG] = ACTIONS(9182), + [aux_sym__attribute_identifier_token1] = ACTIONS(9180), + [aux_sym_option_statement_token3] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9180), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9180), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9180), + [aux_sym_preprocessor_const_token1] = ACTIONS(9180), + [sym_static_modifier] = ACTIONS(9180), + [sym__dim_keyword] = ACTIONS(9180), + [sym__redim_keyword] = ACTIONS(9180), + [aux_sym_get_accessor_token1] = ACTIONS(9180), + [aux_sym_set_accessor_token1] = ACTIONS(9180), + [aux_sym_const_declaration_token1] = ACTIONS(9180), + [anon_sym_LPAREN] = ACTIONS(9182), + [aux_sym_as_type_clause_token2] = ACTIONS(9180), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9180), + [aux_sym_visibility_token1] = ACTIONS(9180), + [aux_sym_visibility_token2] = ACTIONS(9180), + [aux_sym_elseif_fragment_token1] = ACTIONS(9180), + [aux_sym_else_fragment_token1] = ACTIONS(9180), + [aux_sym_select_statement_token1] = ACTIONS(9180), + [aux_sym__for_header_token1] = ACTIONS(9180), + [aux_sym_do_statement_token1] = ACTIONS(9180), + [aux_sym_do_condition_token1] = ACTIONS(9180), + [aux_sym_with_statement_token1] = ACTIONS(9180), + [aux_sym_exit_statement_token1] = ACTIONS(9180), + [sym_end_statement] = ACTIONS(9182), + [aux_sym_on_goto_statement_token1] = ACTIONS(9180), + [aux_sym_on_goto_statement_token2] = ACTIONS(9180), + [aux_sym_on_error_statement_token2] = ACTIONS(9180), + [sym__ambiguous_redim_statement] = ACTIONS(9182), + [aux_sym_erase_statement_token1] = ACTIONS(9180), + [aux_sym_open_statement_token1] = ACTIONS(9180), + [aux_sym_file_mode_token2] = ACTIONS(9180), + [aux_sym_file_access_token2] = ACTIONS(9180), + [aux_sym_file_lock_token2] = ACTIONS(9180), + [aux_sym_print_statement_token1] = ACTIONS(9180), + [anon_sym_PLUS] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9180), + [anon_sym_QMARK] = ACTIONS(9182), + [aux_sym_close_statement_token1] = ACTIONS(9180), + [aux_sym_put_statement_token1] = ACTIONS(9180), + [aux_sym_unlock_statement_token1] = ACTIONS(9180), + [aux_sym_seek_statement_token1] = ACTIONS(9180), + [sym_reset_statement] = ACTIONS(9180), + [aux_sym_raise_event_statement_token1] = ACTIONS(9180), + [sym_stop_statement] = ACTIONS(9180), + [sym_beep_statement] = ACTIONS(9180), + [aux_sym_unload_statement_token1] = ACTIONS(9180), + [aux_sym_def_type_statement_token1] = ACTIONS(9180), + [aux_sym_def_type_statement_token2] = ACTIONS(9180), + [aux_sym_def_type_statement_token3] = ACTIONS(9180), + [aux_sym_def_type_statement_token4] = ACTIONS(9180), + [aux_sym_def_type_statement_token5] = ACTIONS(9180), + [aux_sym_def_type_statement_token6] = ACTIONS(9180), + [aux_sym_def_type_statement_token7] = ACTIONS(9180), + [aux_sym_def_type_statement_token8] = ACTIONS(9180), + [aux_sym_def_type_statement_token9] = ACTIONS(9180), + [aux_sym_def_type_statement_token10] = ACTIONS(9180), + [aux_sym_def_type_statement_token11] = ACTIONS(9180), + [aux_sym_def_type_statement_token12] = ACTIONS(9180), + [aux_sym_def_type_statement_token13] = ACTIONS(9180), + [aux_sym_def_type_statement_token14] = ACTIONS(9180), + [aux_sym_call_statement_token1] = ACTIONS(9180), + [sym__ambiguous_call_statement] = ACTIONS(9180), + [aux_sym_addressof_expression_token1] = ACTIONS(9180), + [aux_sym_type_of_expression_token1] = ACTIONS(9180), + [aux_sym_unary_expression_token1] = ACTIONS(9180), + [sym_string_literal] = ACTIONS(9182), + [sym_number_literal] = ACTIONS(9182), + [aux_sym_boolean_literal_token1] = ACTIONS(9180), + [aux_sym_boolean_literal_token2] = ACTIONS(9180), + [sym_nothing_literal] = ACTIONS(9180), + [sym_null_literal] = ACTIONS(9180), + [sym_empty_literal] = ACTIONS(9180), + [sym_date_literal] = ACTIONS(9182), + [anon_sym_POUND] = ACTIONS(9180), + }, + [STATE(5547)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5305), + [sym_identifier] = ACTIONS(8308), + [sym_newline] = ACTIONS(8310), + [anon_sym_COLON] = ACTIONS(8310), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8308), + [aux_sym_frm_property_statement_token1] = ACTIONS(8308), + [anon_sym_DOT] = ACTIONS(8308), + [anon_sym_BANG] = ACTIONS(8310), + [aux_sym__attribute_identifier_token1] = ACTIONS(8308), + [aux_sym_option_statement_token3] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8308), + [aux_sym_preprocessor_const_token1] = ACTIONS(8308), + [sym_static_modifier] = ACTIONS(8308), + [sym__dim_keyword] = ACTIONS(8308), + [sym__redim_keyword] = ACTIONS(8308), + [aux_sym_get_accessor_token1] = ACTIONS(8308), + [aux_sym_set_accessor_token1] = ACTIONS(8308), + [anon_sym_COMMA] = ACTIONS(10543), + [aux_sym_const_declaration_token1] = ACTIONS(8308), + [anon_sym_LPAREN] = ACTIONS(8310), + [aux_sym_as_type_clause_token2] = ACTIONS(8308), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8308), + [aux_sym_visibility_token1] = ACTIONS(8308), + [aux_sym_visibility_token2] = ACTIONS(8308), + [aux_sym_elseif_fragment_token1] = ACTIONS(8308), + [aux_sym_else_fragment_token1] = ACTIONS(8308), + [aux_sym_select_statement_token1] = ACTIONS(8308), + [aux_sym__for_header_token1] = ACTIONS(8308), + [aux_sym_do_statement_token1] = ACTIONS(8308), + [aux_sym_do_statement_token2] = ACTIONS(8308), + [aux_sym_do_condition_token1] = ACTIONS(8308), + [aux_sym_with_statement_token1] = ACTIONS(8308), + [aux_sym_exit_statement_token1] = ACTIONS(8308), + [sym_end_statement] = ACTIONS(8310), + [aux_sym_on_goto_statement_token1] = ACTIONS(8308), + [aux_sym_on_goto_statement_token2] = ACTIONS(8308), + [aux_sym_on_error_statement_token2] = ACTIONS(8308), + [sym__ambiguous_redim_statement] = ACTIONS(8310), + [aux_sym_erase_statement_token1] = ACTIONS(8308), + [aux_sym_open_statement_token1] = ACTIONS(8308), + [aux_sym_file_mode_token2] = ACTIONS(8308), + [aux_sym_file_access_token2] = ACTIONS(8308), + [aux_sym_file_lock_token2] = ACTIONS(8308), + [aux_sym_print_statement_token1] = ACTIONS(8308), + [anon_sym_PLUS] = ACTIONS(8310), + [anon_sym_DASH] = ACTIONS(8308), + [anon_sym_QMARK] = ACTIONS(8310), + [aux_sym_close_statement_token1] = ACTIONS(8308), + [aux_sym_put_statement_token1] = ACTIONS(8308), + [aux_sym_unlock_statement_token1] = ACTIONS(8308), + [aux_sym_seek_statement_token1] = ACTIONS(8308), + [sym_reset_statement] = ACTIONS(8308), + [aux_sym_raise_event_statement_token1] = ACTIONS(8308), + [sym_stop_statement] = ACTIONS(8308), + [sym_beep_statement] = ACTIONS(8308), + [aux_sym_unload_statement_token1] = ACTIONS(8308), + [aux_sym_def_type_statement_token1] = ACTIONS(8308), + [aux_sym_def_type_statement_token2] = ACTIONS(8308), + [aux_sym_def_type_statement_token3] = ACTIONS(8308), + [aux_sym_def_type_statement_token4] = ACTIONS(8308), + [aux_sym_def_type_statement_token5] = ACTIONS(8308), + [aux_sym_def_type_statement_token6] = ACTIONS(8308), + [aux_sym_def_type_statement_token7] = ACTIONS(8308), + [aux_sym_def_type_statement_token8] = ACTIONS(8308), + [aux_sym_def_type_statement_token9] = ACTIONS(8308), + [aux_sym_def_type_statement_token10] = ACTIONS(8308), + [aux_sym_def_type_statement_token11] = ACTIONS(8308), + [aux_sym_def_type_statement_token12] = ACTIONS(8308), + [aux_sym_def_type_statement_token13] = ACTIONS(8308), + [aux_sym_def_type_statement_token14] = ACTIONS(8308), + [aux_sym_call_statement_token1] = ACTIONS(8308), + [sym__ambiguous_call_statement] = ACTIONS(8308), + [aux_sym_addressof_expression_token1] = ACTIONS(8308), + [aux_sym_type_of_expression_token1] = ACTIONS(8308), + [aux_sym_unary_expression_token1] = ACTIONS(8308), + [sym_string_literal] = ACTIONS(8310), + [sym_number_literal] = ACTIONS(8310), + [aux_sym_boolean_literal_token1] = ACTIONS(8308), + [aux_sym_boolean_literal_token2] = ACTIONS(8308), + [sym_nothing_literal] = ACTIONS(8308), + [sym_null_literal] = ACTIONS(8308), + [sym_empty_literal] = ACTIONS(8308), + [sym_date_literal] = ACTIONS(8310), + [anon_sym_POUND] = ACTIONS(8308), + }, + [STATE(5548)] = { + [sym_identifier] = ACTIONS(9184), + [sym_newline] = ACTIONS(9186), + [anon_sym_COLON] = ACTIONS(9186), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9184), + [aux_sym_frm_property_statement_token1] = ACTIONS(9184), + [anon_sym_DOT] = ACTIONS(9184), + [anon_sym_BANG] = ACTIONS(9186), + [aux_sym__attribute_identifier_token1] = ACTIONS(9184), + [aux_sym_option_statement_token3] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9184), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9184), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9184), + [aux_sym_preprocessor_const_token1] = ACTIONS(9184), + [sym_static_modifier] = ACTIONS(9184), + [sym__dim_keyword] = ACTIONS(9184), + [sym__redim_keyword] = ACTIONS(9184), + [aux_sym_get_accessor_token1] = ACTIONS(9184), + [aux_sym_set_accessor_token1] = ACTIONS(9184), + [aux_sym_const_declaration_token1] = ACTIONS(9184), + [anon_sym_LPAREN] = ACTIONS(9186), + [aux_sym_as_type_clause_token2] = ACTIONS(9184), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9184), + [aux_sym_visibility_token1] = ACTIONS(9184), + [aux_sym_visibility_token2] = ACTIONS(9184), + [aux_sym_elseif_fragment_token1] = ACTIONS(9184), + [aux_sym_else_fragment_token1] = ACTIONS(9184), + [aux_sym_select_statement_token1] = ACTIONS(9184), + [aux_sym__for_header_token1] = ACTIONS(9184), + [aux_sym_do_statement_token1] = ACTIONS(9184), + [aux_sym_do_condition_token1] = ACTIONS(9184), + [aux_sym_with_statement_token1] = ACTIONS(9184), + [aux_sym_exit_statement_token1] = ACTIONS(9184), + [sym_end_statement] = ACTIONS(9186), + [aux_sym_on_goto_statement_token1] = ACTIONS(9184), + [aux_sym_on_goto_statement_token2] = ACTIONS(9184), + [aux_sym_on_error_statement_token2] = ACTIONS(9184), + [sym__ambiguous_redim_statement] = ACTIONS(9186), + [aux_sym_erase_statement_token1] = ACTIONS(9184), + [aux_sym_open_statement_token1] = ACTIONS(9184), + [aux_sym_file_mode_token2] = ACTIONS(9184), + [aux_sym_file_access_token2] = ACTIONS(9184), + [aux_sym_file_lock_token2] = ACTIONS(9184), + [aux_sym_print_statement_token1] = ACTIONS(9184), + [anon_sym_PLUS] = ACTIONS(9186), + [anon_sym_DASH] = ACTIONS(9184), + [anon_sym_QMARK] = ACTIONS(9186), + [aux_sym_close_statement_token1] = ACTIONS(9184), + [aux_sym_put_statement_token1] = ACTIONS(9184), + [aux_sym_unlock_statement_token1] = ACTIONS(9184), + [aux_sym_seek_statement_token1] = ACTIONS(9184), + [sym_reset_statement] = ACTIONS(9184), + [aux_sym_raise_event_statement_token1] = ACTIONS(9184), + [sym_stop_statement] = ACTIONS(9184), + [sym_beep_statement] = ACTIONS(9184), + [aux_sym_unload_statement_token1] = ACTIONS(9184), + [aux_sym_def_type_statement_token1] = ACTIONS(9184), + [aux_sym_def_type_statement_token2] = ACTIONS(9184), + [aux_sym_def_type_statement_token3] = ACTIONS(9184), + [aux_sym_def_type_statement_token4] = ACTIONS(9184), + [aux_sym_def_type_statement_token5] = ACTIONS(9184), + [aux_sym_def_type_statement_token6] = ACTIONS(9184), + [aux_sym_def_type_statement_token7] = ACTIONS(9184), + [aux_sym_def_type_statement_token8] = ACTIONS(9184), + [aux_sym_def_type_statement_token9] = ACTIONS(9184), + [aux_sym_def_type_statement_token10] = ACTIONS(9184), + [aux_sym_def_type_statement_token11] = ACTIONS(9184), + [aux_sym_def_type_statement_token12] = ACTIONS(9184), + [aux_sym_def_type_statement_token13] = ACTIONS(9184), + [aux_sym_def_type_statement_token14] = ACTIONS(9184), + [aux_sym_call_statement_token1] = ACTIONS(9184), + [sym__ambiguous_call_statement] = ACTIONS(9184), + [aux_sym_addressof_expression_token1] = ACTIONS(9184), + [aux_sym_type_of_expression_token1] = ACTIONS(9184), + [aux_sym_unary_expression_token1] = ACTIONS(9184), + [sym_string_literal] = ACTIONS(9186), + [sym_number_literal] = ACTIONS(9186), + [aux_sym_boolean_literal_token1] = ACTIONS(9184), + [aux_sym_boolean_literal_token2] = ACTIONS(9184), + [sym_nothing_literal] = ACTIONS(9184), + [sym_null_literal] = ACTIONS(9184), + [sym_empty_literal] = ACTIONS(9184), + [sym_date_literal] = ACTIONS(9186), + [anon_sym_POUND] = ACTIONS(9184), + }, + [STATE(5549)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5328), + [sym_identifier] = ACTIONS(8332), + [sym_newline] = ACTIONS(8334), + [anon_sym_COLON] = ACTIONS(8334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8332), + [aux_sym_frm_property_statement_token1] = ACTIONS(8332), + [anon_sym_DOT] = ACTIONS(8332), + [anon_sym_BANG] = ACTIONS(8334), + [aux_sym__attribute_identifier_token1] = ACTIONS(8332), + [aux_sym_option_statement_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8332), + [aux_sym_preprocessor_const_token1] = ACTIONS(8332), + [sym_static_modifier] = ACTIONS(8332), + [sym__dim_keyword] = ACTIONS(8332), + [sym__redim_keyword] = ACTIONS(8332), + [aux_sym_get_accessor_token1] = ACTIONS(8332), + [aux_sym_set_accessor_token1] = ACTIONS(8332), + [anon_sym_COMMA] = ACTIONS(10543), + [aux_sym_const_declaration_token1] = ACTIONS(8332), + [anon_sym_LPAREN] = ACTIONS(8334), + [aux_sym_as_type_clause_token2] = ACTIONS(8332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8332), + [aux_sym_visibility_token1] = ACTIONS(8332), + [aux_sym_visibility_token2] = ACTIONS(8332), + [aux_sym_elseif_fragment_token1] = ACTIONS(8332), + [aux_sym_else_fragment_token1] = ACTIONS(8332), + [aux_sym_select_statement_token1] = ACTIONS(8332), + [aux_sym__for_header_token1] = ACTIONS(8332), + [aux_sym_do_statement_token1] = ACTIONS(8332), + [aux_sym_do_statement_token2] = ACTIONS(8332), + [aux_sym_do_condition_token1] = ACTIONS(8332), + [aux_sym_with_statement_token1] = ACTIONS(8332), + [aux_sym_exit_statement_token1] = ACTIONS(8332), + [sym_end_statement] = ACTIONS(8334), + [aux_sym_on_goto_statement_token1] = ACTIONS(8332), + [aux_sym_on_goto_statement_token2] = ACTIONS(8332), + [aux_sym_on_error_statement_token2] = ACTIONS(8332), + [sym__ambiguous_redim_statement] = ACTIONS(8334), + [aux_sym_erase_statement_token1] = ACTIONS(8332), + [aux_sym_open_statement_token1] = ACTIONS(8332), + [aux_sym_file_mode_token2] = ACTIONS(8332), + [aux_sym_file_access_token2] = ACTIONS(8332), + [aux_sym_file_lock_token2] = ACTIONS(8332), + [aux_sym_print_statement_token1] = ACTIONS(8332), + [anon_sym_PLUS] = ACTIONS(8334), + [anon_sym_DASH] = ACTIONS(8332), + [anon_sym_QMARK] = ACTIONS(8334), + [aux_sym_close_statement_token1] = ACTIONS(8332), + [aux_sym_put_statement_token1] = ACTIONS(8332), + [aux_sym_unlock_statement_token1] = ACTIONS(8332), + [aux_sym_seek_statement_token1] = ACTIONS(8332), + [sym_reset_statement] = ACTIONS(8332), + [aux_sym_raise_event_statement_token1] = ACTIONS(8332), + [sym_stop_statement] = ACTIONS(8332), + [sym_beep_statement] = ACTIONS(8332), + [aux_sym_unload_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token2] = ACTIONS(8332), + [aux_sym_def_type_statement_token3] = ACTIONS(8332), + [aux_sym_def_type_statement_token4] = ACTIONS(8332), + [aux_sym_def_type_statement_token5] = ACTIONS(8332), + [aux_sym_def_type_statement_token6] = ACTIONS(8332), + [aux_sym_def_type_statement_token7] = ACTIONS(8332), + [aux_sym_def_type_statement_token8] = ACTIONS(8332), + [aux_sym_def_type_statement_token9] = ACTIONS(8332), + [aux_sym_def_type_statement_token10] = ACTIONS(8332), + [aux_sym_def_type_statement_token11] = ACTIONS(8332), + [aux_sym_def_type_statement_token12] = ACTIONS(8332), + [aux_sym_def_type_statement_token13] = ACTIONS(8332), + [aux_sym_def_type_statement_token14] = ACTIONS(8332), + [aux_sym_call_statement_token1] = ACTIONS(8332), + [sym__ambiguous_call_statement] = ACTIONS(8332), + [aux_sym_addressof_expression_token1] = ACTIONS(8332), + [aux_sym_type_of_expression_token1] = ACTIONS(8332), + [aux_sym_unary_expression_token1] = ACTIONS(8332), + [sym_string_literal] = ACTIONS(8334), + [sym_number_literal] = ACTIONS(8334), + [aux_sym_boolean_literal_token1] = ACTIONS(8332), + [aux_sym_boolean_literal_token2] = ACTIONS(8332), + [sym_nothing_literal] = ACTIONS(8332), + [sym_null_literal] = ACTIONS(8332), + [sym_empty_literal] = ACTIONS(8332), + [sym_date_literal] = ACTIONS(8334), + [anon_sym_POUND] = ACTIONS(8332), + }, + [STATE(5550)] = { + [sym_identifier] = ACTIONS(9188), + [sym_newline] = ACTIONS(9190), + [anon_sym_COLON] = ACTIONS(9190), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9188), + [aux_sym_frm_property_statement_token1] = ACTIONS(9188), + [anon_sym_DOT] = ACTIONS(9188), + [anon_sym_BANG] = ACTIONS(9190), + [aux_sym__attribute_identifier_token1] = ACTIONS(9188), + [aux_sym_option_statement_token3] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9188), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9188), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9188), + [aux_sym_preprocessor_const_token1] = ACTIONS(9188), + [sym_static_modifier] = ACTIONS(9188), + [sym__dim_keyword] = ACTIONS(9188), + [sym__redim_keyword] = ACTIONS(9188), + [aux_sym_get_accessor_token1] = ACTIONS(9188), + [aux_sym_set_accessor_token1] = ACTIONS(9188), + [aux_sym_const_declaration_token1] = ACTIONS(9188), + [anon_sym_LPAREN] = ACTIONS(9190), + [aux_sym_as_type_clause_token2] = ACTIONS(9188), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9188), + [aux_sym_visibility_token1] = ACTIONS(9188), + [aux_sym_visibility_token2] = ACTIONS(9188), + [aux_sym_elseif_fragment_token1] = ACTIONS(9188), + [aux_sym_else_fragment_token1] = ACTIONS(9188), + [aux_sym_select_statement_token1] = ACTIONS(9188), + [aux_sym__for_header_token1] = ACTIONS(9188), + [aux_sym_do_statement_token1] = ACTIONS(9188), + [aux_sym_do_condition_token1] = ACTIONS(9188), + [aux_sym_with_statement_token1] = ACTIONS(9188), + [aux_sym_exit_statement_token1] = ACTIONS(9188), + [sym_end_statement] = ACTIONS(9190), + [aux_sym_on_goto_statement_token1] = ACTIONS(9188), + [aux_sym_on_goto_statement_token2] = ACTIONS(9188), + [aux_sym_on_error_statement_token2] = ACTIONS(9188), + [sym__ambiguous_redim_statement] = ACTIONS(9190), + [aux_sym_erase_statement_token1] = ACTIONS(9188), + [aux_sym_open_statement_token1] = ACTIONS(9188), + [aux_sym_file_mode_token2] = ACTIONS(9188), + [aux_sym_file_access_token2] = ACTIONS(9188), + [aux_sym_file_lock_token2] = ACTIONS(9188), + [aux_sym_print_statement_token1] = ACTIONS(9188), + [anon_sym_PLUS] = ACTIONS(9190), + [anon_sym_DASH] = ACTIONS(9188), + [anon_sym_QMARK] = ACTIONS(9190), + [aux_sym_close_statement_token1] = ACTIONS(9188), + [aux_sym_put_statement_token1] = ACTIONS(9188), + [aux_sym_unlock_statement_token1] = ACTIONS(9188), + [aux_sym_seek_statement_token1] = ACTIONS(9188), + [sym_reset_statement] = ACTIONS(9188), + [aux_sym_raise_event_statement_token1] = ACTIONS(9188), + [sym_stop_statement] = ACTIONS(9188), + [sym_beep_statement] = ACTIONS(9188), + [aux_sym_unload_statement_token1] = ACTIONS(9188), + [aux_sym_def_type_statement_token1] = ACTIONS(9188), + [aux_sym_def_type_statement_token2] = ACTIONS(9188), + [aux_sym_def_type_statement_token3] = ACTIONS(9188), + [aux_sym_def_type_statement_token4] = ACTIONS(9188), + [aux_sym_def_type_statement_token5] = ACTIONS(9188), + [aux_sym_def_type_statement_token6] = ACTIONS(9188), + [aux_sym_def_type_statement_token7] = ACTIONS(9188), + [aux_sym_def_type_statement_token8] = ACTIONS(9188), + [aux_sym_def_type_statement_token9] = ACTIONS(9188), + [aux_sym_def_type_statement_token10] = ACTIONS(9188), + [aux_sym_def_type_statement_token11] = ACTIONS(9188), + [aux_sym_def_type_statement_token12] = ACTIONS(9188), + [aux_sym_def_type_statement_token13] = ACTIONS(9188), + [aux_sym_def_type_statement_token14] = ACTIONS(9188), + [aux_sym_call_statement_token1] = ACTIONS(9188), + [sym__ambiguous_call_statement] = ACTIONS(9188), + [aux_sym_addressof_expression_token1] = ACTIONS(9188), + [aux_sym_type_of_expression_token1] = ACTIONS(9188), + [aux_sym_unary_expression_token1] = ACTIONS(9188), + [sym_string_literal] = ACTIONS(9190), + [sym_number_literal] = ACTIONS(9190), + [aux_sym_boolean_literal_token1] = ACTIONS(9188), + [aux_sym_boolean_literal_token2] = ACTIONS(9188), + [sym_nothing_literal] = ACTIONS(9188), + [sym_null_literal] = ACTIONS(9188), + [sym_empty_literal] = ACTIONS(9188), + [sym_date_literal] = ACTIONS(9190), + [anon_sym_POUND] = ACTIONS(9188), + }, + [STATE(5551)] = { + [sym_identifier] = ACTIONS(9192), + [sym_newline] = ACTIONS(9194), + [anon_sym_COLON] = ACTIONS(9194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9192), + [aux_sym_frm_property_statement_token1] = ACTIONS(9192), + [anon_sym_DOT] = ACTIONS(9192), + [anon_sym_BANG] = ACTIONS(9194), + [aux_sym__attribute_identifier_token1] = ACTIONS(9192), + [aux_sym_option_statement_token3] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9192), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9192), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9192), + [aux_sym_preprocessor_const_token1] = ACTIONS(9192), + [sym_static_modifier] = ACTIONS(9192), + [sym__dim_keyword] = ACTIONS(9192), + [sym__redim_keyword] = ACTIONS(9192), + [aux_sym_get_accessor_token1] = ACTIONS(9192), + [aux_sym_set_accessor_token1] = ACTIONS(9192), + [aux_sym_const_declaration_token1] = ACTIONS(9192), + [anon_sym_LPAREN] = ACTIONS(9194), + [aux_sym_as_type_clause_token2] = ACTIONS(9192), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9192), + [aux_sym_visibility_token1] = ACTIONS(9192), + [aux_sym_visibility_token2] = ACTIONS(9192), + [aux_sym_elseif_fragment_token1] = ACTIONS(9192), + [aux_sym_else_fragment_token1] = ACTIONS(9192), + [aux_sym_select_statement_token1] = ACTIONS(9192), + [aux_sym__for_header_token1] = ACTIONS(9192), + [aux_sym_do_statement_token1] = ACTIONS(9192), + [aux_sym_do_condition_token1] = ACTIONS(9192), + [aux_sym_with_statement_token1] = ACTIONS(9192), + [aux_sym_exit_statement_token1] = ACTIONS(9192), + [sym_end_statement] = ACTIONS(9194), + [aux_sym_on_goto_statement_token1] = ACTIONS(9192), + [aux_sym_on_goto_statement_token2] = ACTIONS(9192), + [aux_sym_on_error_statement_token2] = ACTIONS(9192), + [sym__ambiguous_redim_statement] = ACTIONS(9194), + [aux_sym_erase_statement_token1] = ACTIONS(9192), + [aux_sym_open_statement_token1] = ACTIONS(9192), + [aux_sym_file_mode_token2] = ACTIONS(9192), + [aux_sym_file_access_token2] = ACTIONS(9192), + [aux_sym_file_lock_token2] = ACTIONS(9192), + [aux_sym_print_statement_token1] = ACTIONS(9192), + [anon_sym_PLUS] = ACTIONS(9194), + [anon_sym_DASH] = ACTIONS(9192), + [anon_sym_QMARK] = ACTIONS(9194), + [aux_sym_close_statement_token1] = ACTIONS(9192), + [aux_sym_put_statement_token1] = ACTIONS(9192), + [aux_sym_unlock_statement_token1] = ACTIONS(9192), + [aux_sym_seek_statement_token1] = ACTIONS(9192), + [sym_reset_statement] = ACTIONS(9192), + [aux_sym_raise_event_statement_token1] = ACTIONS(9192), + [sym_stop_statement] = ACTIONS(9192), + [sym_beep_statement] = ACTIONS(9192), + [aux_sym_unload_statement_token1] = ACTIONS(9192), + [aux_sym_def_type_statement_token1] = ACTIONS(9192), + [aux_sym_def_type_statement_token2] = ACTIONS(9192), + [aux_sym_def_type_statement_token3] = ACTIONS(9192), + [aux_sym_def_type_statement_token4] = ACTIONS(9192), + [aux_sym_def_type_statement_token5] = ACTIONS(9192), + [aux_sym_def_type_statement_token6] = ACTIONS(9192), + [aux_sym_def_type_statement_token7] = ACTIONS(9192), + [aux_sym_def_type_statement_token8] = ACTIONS(9192), + [aux_sym_def_type_statement_token9] = ACTIONS(9192), + [aux_sym_def_type_statement_token10] = ACTIONS(9192), + [aux_sym_def_type_statement_token11] = ACTIONS(9192), + [aux_sym_def_type_statement_token12] = ACTIONS(9192), + [aux_sym_def_type_statement_token13] = ACTIONS(9192), + [aux_sym_def_type_statement_token14] = ACTIONS(9192), + [aux_sym_call_statement_token1] = ACTIONS(9192), + [sym__ambiguous_call_statement] = ACTIONS(9192), + [aux_sym_addressof_expression_token1] = ACTIONS(9192), + [aux_sym_type_of_expression_token1] = ACTIONS(9192), + [aux_sym_unary_expression_token1] = ACTIONS(9192), + [sym_string_literal] = ACTIONS(9194), + [sym_number_literal] = ACTIONS(9194), + [aux_sym_boolean_literal_token1] = ACTIONS(9192), + [aux_sym_boolean_literal_token2] = ACTIONS(9192), + [sym_nothing_literal] = ACTIONS(9192), + [sym_null_literal] = ACTIONS(9192), + [sym_empty_literal] = ACTIONS(9192), + [sym_date_literal] = ACTIONS(9194), + [anon_sym_POUND] = ACTIONS(9192), + }, + [STATE(5552)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5347), + [sym_identifier] = ACTIONS(8336), + [sym_newline] = ACTIONS(8338), + [anon_sym_COLON] = ACTIONS(8338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8336), + [aux_sym_frm_property_statement_token1] = ACTIONS(8336), + [anon_sym_DOT] = ACTIONS(8336), + [anon_sym_BANG] = ACTIONS(8338), + [aux_sym__attribute_identifier_token1] = ACTIONS(8336), + [aux_sym_option_statement_token3] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8336), + [aux_sym_preprocessor_const_token1] = ACTIONS(8336), + [sym_static_modifier] = ACTIONS(8336), + [sym__dim_keyword] = ACTIONS(8336), + [sym__redim_keyword] = ACTIONS(8336), + [aux_sym_get_accessor_token1] = ACTIONS(8336), + [aux_sym_set_accessor_token1] = ACTIONS(8336), + [anon_sym_COMMA] = ACTIONS(10543), + [aux_sym_const_declaration_token1] = ACTIONS(8336), + [anon_sym_LPAREN] = ACTIONS(8338), + [aux_sym_as_type_clause_token2] = ACTIONS(8336), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8336), + [aux_sym_visibility_token1] = ACTIONS(8336), + [aux_sym_visibility_token2] = ACTIONS(8336), + [aux_sym_elseif_fragment_token1] = ACTIONS(8336), + [aux_sym_else_fragment_token1] = ACTIONS(8336), + [aux_sym_select_statement_token1] = ACTIONS(8336), + [aux_sym__for_header_token1] = ACTIONS(8336), + [aux_sym_do_statement_token1] = ACTIONS(8336), + [aux_sym_do_statement_token2] = ACTIONS(8336), + [aux_sym_do_condition_token1] = ACTIONS(8336), + [aux_sym_with_statement_token1] = ACTIONS(8336), + [aux_sym_exit_statement_token1] = ACTIONS(8336), + [sym_end_statement] = ACTIONS(8338), + [aux_sym_on_goto_statement_token1] = ACTIONS(8336), + [aux_sym_on_goto_statement_token2] = ACTIONS(8336), + [aux_sym_on_error_statement_token2] = ACTIONS(8336), + [sym__ambiguous_redim_statement] = ACTIONS(8338), + [aux_sym_erase_statement_token1] = ACTIONS(8336), + [aux_sym_open_statement_token1] = ACTIONS(8336), + [aux_sym_file_mode_token2] = ACTIONS(8336), + [aux_sym_file_access_token2] = ACTIONS(8336), + [aux_sym_file_lock_token2] = ACTIONS(8336), + [aux_sym_print_statement_token1] = ACTIONS(8336), + [anon_sym_PLUS] = ACTIONS(8338), + [anon_sym_DASH] = ACTIONS(8336), + [anon_sym_QMARK] = ACTIONS(8338), + [aux_sym_close_statement_token1] = ACTIONS(8336), + [aux_sym_put_statement_token1] = ACTIONS(8336), + [aux_sym_unlock_statement_token1] = ACTIONS(8336), + [aux_sym_seek_statement_token1] = ACTIONS(8336), + [sym_reset_statement] = ACTIONS(8336), + [aux_sym_raise_event_statement_token1] = ACTIONS(8336), + [sym_stop_statement] = ACTIONS(8336), + [sym_beep_statement] = ACTIONS(8336), + [aux_sym_unload_statement_token1] = ACTIONS(8336), + [aux_sym_def_type_statement_token1] = ACTIONS(8336), + [aux_sym_def_type_statement_token2] = ACTIONS(8336), + [aux_sym_def_type_statement_token3] = ACTIONS(8336), + [aux_sym_def_type_statement_token4] = ACTIONS(8336), + [aux_sym_def_type_statement_token5] = ACTIONS(8336), + [aux_sym_def_type_statement_token6] = ACTIONS(8336), + [aux_sym_def_type_statement_token7] = ACTIONS(8336), + [aux_sym_def_type_statement_token8] = ACTIONS(8336), + [aux_sym_def_type_statement_token9] = ACTIONS(8336), + [aux_sym_def_type_statement_token10] = ACTIONS(8336), + [aux_sym_def_type_statement_token11] = ACTIONS(8336), + [aux_sym_def_type_statement_token12] = ACTIONS(8336), + [aux_sym_def_type_statement_token13] = ACTIONS(8336), + [aux_sym_def_type_statement_token14] = ACTIONS(8336), + [aux_sym_call_statement_token1] = ACTIONS(8336), + [sym__ambiguous_call_statement] = ACTIONS(8336), + [aux_sym_addressof_expression_token1] = ACTIONS(8336), + [aux_sym_type_of_expression_token1] = ACTIONS(8336), + [aux_sym_unary_expression_token1] = ACTIONS(8336), + [sym_string_literal] = ACTIONS(8338), + [sym_number_literal] = ACTIONS(8338), + [aux_sym_boolean_literal_token1] = ACTIONS(8336), + [aux_sym_boolean_literal_token2] = ACTIONS(8336), + [sym_nothing_literal] = ACTIONS(8336), + [sym_null_literal] = ACTIONS(8336), + [sym_empty_literal] = ACTIONS(8336), + [sym_date_literal] = ACTIONS(8338), + [anon_sym_POUND] = ACTIONS(8336), + }, + [STATE(5553)] = { + [aux_sym_const_declaration_repeat1] = STATE(5358), + [sym_identifier] = ACTIONS(8346), + [sym_newline] = ACTIONS(8348), + [anon_sym_COLON] = ACTIONS(8348), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8346), + [aux_sym_frm_property_statement_token1] = ACTIONS(8346), + [anon_sym_DOT] = ACTIONS(8346), + [anon_sym_BANG] = ACTIONS(8348), + [aux_sym__attribute_identifier_token1] = ACTIONS(8346), + [aux_sym_option_statement_token3] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8346), + [aux_sym_preprocessor_const_token1] = ACTIONS(8346), + [sym_static_modifier] = ACTIONS(8346), + [sym__dim_keyword] = ACTIONS(8346), + [sym__redim_keyword] = ACTIONS(8346), + [aux_sym_get_accessor_token1] = ACTIONS(8346), + [aux_sym_set_accessor_token1] = ACTIONS(8346), + [anon_sym_COMMA] = ACTIONS(10567), + [aux_sym_const_declaration_token1] = ACTIONS(8346), + [anon_sym_LPAREN] = ACTIONS(8348), + [aux_sym_as_type_clause_token2] = ACTIONS(8346), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8346), + [aux_sym_visibility_token1] = ACTIONS(8346), + [aux_sym_visibility_token2] = ACTIONS(8346), + [aux_sym_elseif_fragment_token1] = ACTIONS(8346), + [aux_sym_else_fragment_token1] = ACTIONS(8346), + [aux_sym_select_statement_token1] = ACTIONS(8346), + [aux_sym__for_header_token1] = ACTIONS(8346), + [aux_sym_do_statement_token1] = ACTIONS(8346), + [aux_sym_do_statement_token2] = ACTIONS(8346), + [aux_sym_do_condition_token1] = ACTIONS(8346), + [aux_sym_with_statement_token1] = ACTIONS(8346), + [aux_sym_exit_statement_token1] = ACTIONS(8346), + [sym_end_statement] = ACTIONS(8348), + [aux_sym_on_goto_statement_token1] = ACTIONS(8346), + [aux_sym_on_goto_statement_token2] = ACTIONS(8346), + [aux_sym_on_error_statement_token2] = ACTIONS(8346), + [sym__ambiguous_redim_statement] = ACTIONS(8348), + [aux_sym_erase_statement_token1] = ACTIONS(8346), + [aux_sym_open_statement_token1] = ACTIONS(8346), + [aux_sym_file_mode_token2] = ACTIONS(8346), + [aux_sym_file_access_token2] = ACTIONS(8346), + [aux_sym_file_lock_token2] = ACTIONS(8346), + [aux_sym_print_statement_token1] = ACTIONS(8346), + [anon_sym_PLUS] = ACTIONS(8348), + [anon_sym_DASH] = ACTIONS(8346), + [anon_sym_QMARK] = ACTIONS(8348), + [aux_sym_close_statement_token1] = ACTIONS(8346), + [aux_sym_put_statement_token1] = ACTIONS(8346), + [aux_sym_unlock_statement_token1] = ACTIONS(8346), + [aux_sym_seek_statement_token1] = ACTIONS(8346), + [sym_reset_statement] = ACTIONS(8346), + [aux_sym_raise_event_statement_token1] = ACTIONS(8346), + [sym_stop_statement] = ACTIONS(8346), + [sym_beep_statement] = ACTIONS(8346), + [aux_sym_unload_statement_token1] = ACTIONS(8346), + [aux_sym_def_type_statement_token1] = ACTIONS(8346), + [aux_sym_def_type_statement_token2] = ACTIONS(8346), + [aux_sym_def_type_statement_token3] = ACTIONS(8346), + [aux_sym_def_type_statement_token4] = ACTIONS(8346), + [aux_sym_def_type_statement_token5] = ACTIONS(8346), + [aux_sym_def_type_statement_token6] = ACTIONS(8346), + [aux_sym_def_type_statement_token7] = ACTIONS(8346), + [aux_sym_def_type_statement_token8] = ACTIONS(8346), + [aux_sym_def_type_statement_token9] = ACTIONS(8346), + [aux_sym_def_type_statement_token10] = ACTIONS(8346), + [aux_sym_def_type_statement_token11] = ACTIONS(8346), + [aux_sym_def_type_statement_token12] = ACTIONS(8346), + [aux_sym_def_type_statement_token13] = ACTIONS(8346), + [aux_sym_def_type_statement_token14] = ACTIONS(8346), + [aux_sym_call_statement_token1] = ACTIONS(8346), + [sym__ambiguous_call_statement] = ACTIONS(8346), + [aux_sym_addressof_expression_token1] = ACTIONS(8346), + [aux_sym_type_of_expression_token1] = ACTIONS(8346), + [aux_sym_unary_expression_token1] = ACTIONS(8346), + [sym_string_literal] = ACTIONS(8348), + [sym_number_literal] = ACTIONS(8348), + [aux_sym_boolean_literal_token1] = ACTIONS(8346), + [aux_sym_boolean_literal_token2] = ACTIONS(8346), + [sym_nothing_literal] = ACTIONS(8346), + [sym_null_literal] = ACTIONS(8346), + [sym_empty_literal] = ACTIONS(8346), + [sym_date_literal] = ACTIONS(8348), + [anon_sym_POUND] = ACTIONS(8346), + }, + [STATE(5554)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5802), + [sym_identifier] = ACTIONS(8332), + [sym_newline] = ACTIONS(8334), + [anon_sym_COLON] = ACTIONS(8334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8332), + [aux_sym_frm_property_statement_token1] = ACTIONS(8332), + [anon_sym_DOT] = ACTIONS(8332), + [anon_sym_BANG] = ACTIONS(8334), + [aux_sym__attribute_identifier_token1] = ACTIONS(8332), + [aux_sym_option_statement_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8332), + [aux_sym_preprocessor_const_token1] = ACTIONS(8332), + [sym_static_modifier] = ACTIONS(8332), + [sym__dim_keyword] = ACTIONS(8332), + [sym__redim_keyword] = ACTIONS(8332), + [aux_sym_get_accessor_token1] = ACTIONS(8332), + [aux_sym_set_accessor_token1] = ACTIONS(8332), + [anon_sym_COMMA] = ACTIONS(10543), + [aux_sym_const_declaration_token1] = ACTIONS(8332), + [anon_sym_LPAREN] = ACTIONS(8334), + [aux_sym_as_type_clause_token2] = ACTIONS(8332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8332), + [aux_sym_visibility_token1] = ACTIONS(8332), + [aux_sym_visibility_token2] = ACTIONS(8332), + [aux_sym_elseif_fragment_token1] = ACTIONS(8332), + [aux_sym_else_fragment_token1] = ACTIONS(8332), + [aux_sym_select_statement_token1] = ACTIONS(8332), + [aux_sym__for_header_token1] = ACTIONS(8332), + [aux_sym_do_statement_token1] = ACTIONS(8332), + [aux_sym_do_statement_token2] = ACTIONS(8332), + [aux_sym_do_condition_token1] = ACTIONS(8332), + [aux_sym_with_statement_token1] = ACTIONS(8332), + [aux_sym_exit_statement_token1] = ACTIONS(8332), + [sym_end_statement] = ACTIONS(8334), + [aux_sym_on_goto_statement_token1] = ACTIONS(8332), + [aux_sym_on_goto_statement_token2] = ACTIONS(8332), + [aux_sym_on_error_statement_token2] = ACTIONS(8332), + [sym__ambiguous_redim_statement] = ACTIONS(8334), + [aux_sym_erase_statement_token1] = ACTIONS(8332), + [aux_sym_open_statement_token1] = ACTIONS(8332), + [aux_sym_file_mode_token2] = ACTIONS(8332), + [aux_sym_file_access_token2] = ACTIONS(8332), + [aux_sym_file_lock_token2] = ACTIONS(8332), + [aux_sym_print_statement_token1] = ACTIONS(8332), + [anon_sym_PLUS] = ACTIONS(8334), + [anon_sym_DASH] = ACTIONS(8332), + [anon_sym_QMARK] = ACTIONS(8334), + [aux_sym_close_statement_token1] = ACTIONS(8332), + [aux_sym_put_statement_token1] = ACTIONS(8332), + [aux_sym_unlock_statement_token1] = ACTIONS(8332), + [aux_sym_seek_statement_token1] = ACTIONS(8332), + [sym_reset_statement] = ACTIONS(8332), + [aux_sym_raise_event_statement_token1] = ACTIONS(8332), + [sym_stop_statement] = ACTIONS(8332), + [sym_beep_statement] = ACTIONS(8332), + [aux_sym_unload_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token2] = ACTIONS(8332), + [aux_sym_def_type_statement_token3] = ACTIONS(8332), + [aux_sym_def_type_statement_token4] = ACTIONS(8332), + [aux_sym_def_type_statement_token5] = ACTIONS(8332), + [aux_sym_def_type_statement_token6] = ACTIONS(8332), + [aux_sym_def_type_statement_token7] = ACTIONS(8332), + [aux_sym_def_type_statement_token8] = ACTIONS(8332), + [aux_sym_def_type_statement_token9] = ACTIONS(8332), + [aux_sym_def_type_statement_token10] = ACTIONS(8332), + [aux_sym_def_type_statement_token11] = ACTIONS(8332), + [aux_sym_def_type_statement_token12] = ACTIONS(8332), + [aux_sym_def_type_statement_token13] = ACTIONS(8332), + [aux_sym_def_type_statement_token14] = ACTIONS(8332), + [aux_sym_call_statement_token1] = ACTIONS(8332), + [sym__ambiguous_call_statement] = ACTIONS(8332), + [aux_sym_addressof_expression_token1] = ACTIONS(8332), + [aux_sym_type_of_expression_token1] = ACTIONS(8332), + [aux_sym_unary_expression_token1] = ACTIONS(8332), + [sym_string_literal] = ACTIONS(8334), + [sym_number_literal] = ACTIONS(8334), + [aux_sym_boolean_literal_token1] = ACTIONS(8332), + [aux_sym_boolean_literal_token2] = ACTIONS(8332), + [sym_nothing_literal] = ACTIONS(8332), + [sym_null_literal] = ACTIONS(8332), + [sym_empty_literal] = ACTIONS(8332), + [sym_date_literal] = ACTIONS(8334), + [anon_sym_POUND] = ACTIONS(8332), + }, + [STATE(5555)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5621), + [sym_identifier] = ACTIONS(8529), + [sym_newline] = ACTIONS(8531), + [anon_sym_COLON] = ACTIONS(8531), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8529), + [aux_sym_frm_property_statement_token1] = ACTIONS(8529), + [anon_sym_DOT] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(8531), + [aux_sym__attribute_identifier_token1] = ACTIONS(8529), + [aux_sym_option_statement_token3] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8529), + [aux_sym_preprocessor_const_token1] = ACTIONS(8529), + [sym_static_modifier] = ACTIONS(8529), + [sym__dim_keyword] = ACTIONS(8529), + [sym__redim_keyword] = ACTIONS(8529), + [aux_sym_get_accessor_token1] = ACTIONS(8529), + [aux_sym_set_accessor_token1] = ACTIONS(8529), + [anon_sym_COMMA] = ACTIONS(10730), + [aux_sym_const_declaration_token1] = ACTIONS(8529), + [anon_sym_LPAREN] = ACTIONS(8531), + [aux_sym_as_type_clause_token2] = ACTIONS(8529), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8529), + [aux_sym_visibility_token1] = ACTIONS(8529), + [aux_sym_visibility_token2] = ACTIONS(8529), + [aux_sym_elseif_fragment_token1] = ACTIONS(8529), + [aux_sym_else_fragment_token1] = ACTIONS(8529), + [aux_sym_select_statement_token1] = ACTIONS(8529), + [aux_sym__for_header_token1] = ACTIONS(8529), + [aux_sym_do_statement_token1] = ACTIONS(8529), + [aux_sym_do_condition_token1] = ACTIONS(8529), + [aux_sym_while_statement_token1] = ACTIONS(8529), + [aux_sym_with_statement_token1] = ACTIONS(8529), + [aux_sym_exit_statement_token1] = ACTIONS(8529), + [sym_end_statement] = ACTIONS(8531), + [aux_sym_on_goto_statement_token1] = ACTIONS(8529), + [aux_sym_on_goto_statement_token2] = ACTIONS(8529), + [aux_sym_on_error_statement_token2] = ACTIONS(8529), + [sym__ambiguous_redim_statement] = ACTIONS(8531), + [aux_sym_erase_statement_token1] = ACTIONS(8529), + [aux_sym_open_statement_token1] = ACTIONS(8529), + [aux_sym_file_mode_token2] = ACTIONS(8529), + [aux_sym_file_access_token2] = ACTIONS(8529), + [aux_sym_file_lock_token2] = ACTIONS(8529), + [aux_sym_print_statement_token1] = ACTIONS(8529), + [anon_sym_PLUS] = ACTIONS(8531), + [anon_sym_DASH] = ACTIONS(8529), + [anon_sym_QMARK] = ACTIONS(8531), + [aux_sym_close_statement_token1] = ACTIONS(8529), + [aux_sym_put_statement_token1] = ACTIONS(8529), + [aux_sym_unlock_statement_token1] = ACTIONS(8529), + [aux_sym_seek_statement_token1] = ACTIONS(8529), + [sym_reset_statement] = ACTIONS(8529), + [aux_sym_raise_event_statement_token1] = ACTIONS(8529), + [sym_stop_statement] = ACTIONS(8529), + [sym_beep_statement] = ACTIONS(8529), + [aux_sym_unload_statement_token1] = ACTIONS(8529), + [aux_sym_def_type_statement_token1] = ACTIONS(8529), + [aux_sym_def_type_statement_token2] = ACTIONS(8529), + [aux_sym_def_type_statement_token3] = ACTIONS(8529), + [aux_sym_def_type_statement_token4] = ACTIONS(8529), + [aux_sym_def_type_statement_token5] = ACTIONS(8529), + [aux_sym_def_type_statement_token6] = ACTIONS(8529), + [aux_sym_def_type_statement_token7] = ACTIONS(8529), + [aux_sym_def_type_statement_token8] = ACTIONS(8529), + [aux_sym_def_type_statement_token9] = ACTIONS(8529), + [aux_sym_def_type_statement_token10] = ACTIONS(8529), + [aux_sym_def_type_statement_token11] = ACTIONS(8529), + [aux_sym_def_type_statement_token12] = ACTIONS(8529), + [aux_sym_def_type_statement_token13] = ACTIONS(8529), + [aux_sym_def_type_statement_token14] = ACTIONS(8529), + [aux_sym_call_statement_token1] = ACTIONS(8529), + [sym__ambiguous_call_statement] = ACTIONS(8529), + [aux_sym_addressof_expression_token1] = ACTIONS(8529), + [aux_sym_type_of_expression_token1] = ACTIONS(8529), + [aux_sym_unary_expression_token1] = ACTIONS(8529), + [sym_string_literal] = ACTIONS(8531), + [sym_number_literal] = ACTIONS(8531), + [aux_sym_boolean_literal_token1] = ACTIONS(8529), + [aux_sym_boolean_literal_token2] = ACTIONS(8529), + [sym_nothing_literal] = ACTIONS(8529), + [sym_null_literal] = ACTIONS(8529), + [sym_empty_literal] = ACTIONS(8529), + [sym_date_literal] = ACTIONS(8531), + [anon_sym_POUND] = ACTIONS(8529), + }, + [STATE(5556)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5626), + [sym_identifier] = ACTIONS(8540), + [sym_newline] = ACTIONS(8542), + [anon_sym_COLON] = ACTIONS(8542), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8540), + [aux_sym_frm_property_statement_token1] = ACTIONS(8540), + [anon_sym_DOT] = ACTIONS(8540), + [anon_sym_BANG] = ACTIONS(8542), + [aux_sym__attribute_identifier_token1] = ACTIONS(8540), + [aux_sym_option_statement_token3] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8540), + [aux_sym_preprocessor_const_token1] = ACTIONS(8540), + [sym_static_modifier] = ACTIONS(8540), + [sym__dim_keyword] = ACTIONS(8540), + [sym__redim_keyword] = ACTIONS(8540), + [aux_sym_get_accessor_token1] = ACTIONS(8540), + [aux_sym_set_accessor_token1] = ACTIONS(8540), + [anon_sym_COMMA] = ACTIONS(10730), + [aux_sym_const_declaration_token1] = ACTIONS(8540), + [anon_sym_LPAREN] = ACTIONS(8542), + [aux_sym_as_type_clause_token2] = ACTIONS(8540), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8540), + [aux_sym_visibility_token1] = ACTIONS(8540), + [aux_sym_visibility_token2] = ACTIONS(8540), + [aux_sym_elseif_fragment_token1] = ACTIONS(8540), + [aux_sym_else_fragment_token1] = ACTIONS(8540), + [aux_sym_select_statement_token1] = ACTIONS(8540), + [aux_sym__for_header_token1] = ACTIONS(8540), + [aux_sym_do_statement_token1] = ACTIONS(8540), + [aux_sym_do_condition_token1] = ACTIONS(8540), + [aux_sym_while_statement_token1] = ACTIONS(8540), + [aux_sym_with_statement_token1] = ACTIONS(8540), + [aux_sym_exit_statement_token1] = ACTIONS(8540), + [sym_end_statement] = ACTIONS(8542), + [aux_sym_on_goto_statement_token1] = ACTIONS(8540), + [aux_sym_on_goto_statement_token2] = ACTIONS(8540), + [aux_sym_on_error_statement_token2] = ACTIONS(8540), + [sym__ambiguous_redim_statement] = ACTIONS(8542), + [aux_sym_erase_statement_token1] = ACTIONS(8540), + [aux_sym_open_statement_token1] = ACTIONS(8540), + [aux_sym_file_mode_token2] = ACTIONS(8540), + [aux_sym_file_access_token2] = ACTIONS(8540), + [aux_sym_file_lock_token2] = ACTIONS(8540), + [aux_sym_print_statement_token1] = ACTIONS(8540), + [anon_sym_PLUS] = ACTIONS(8542), + [anon_sym_DASH] = ACTIONS(8540), + [anon_sym_QMARK] = ACTIONS(8542), + [aux_sym_close_statement_token1] = ACTIONS(8540), + [aux_sym_put_statement_token1] = ACTIONS(8540), + [aux_sym_unlock_statement_token1] = ACTIONS(8540), + [aux_sym_seek_statement_token1] = ACTIONS(8540), + [sym_reset_statement] = ACTIONS(8540), + [aux_sym_raise_event_statement_token1] = ACTIONS(8540), + [sym_stop_statement] = ACTIONS(8540), + [sym_beep_statement] = ACTIONS(8540), + [aux_sym_unload_statement_token1] = ACTIONS(8540), + [aux_sym_def_type_statement_token1] = ACTIONS(8540), + [aux_sym_def_type_statement_token2] = ACTIONS(8540), + [aux_sym_def_type_statement_token3] = ACTIONS(8540), + [aux_sym_def_type_statement_token4] = ACTIONS(8540), + [aux_sym_def_type_statement_token5] = ACTIONS(8540), + [aux_sym_def_type_statement_token6] = ACTIONS(8540), + [aux_sym_def_type_statement_token7] = ACTIONS(8540), + [aux_sym_def_type_statement_token8] = ACTIONS(8540), + [aux_sym_def_type_statement_token9] = ACTIONS(8540), + [aux_sym_def_type_statement_token10] = ACTIONS(8540), + [aux_sym_def_type_statement_token11] = ACTIONS(8540), + [aux_sym_def_type_statement_token12] = ACTIONS(8540), + [aux_sym_def_type_statement_token13] = ACTIONS(8540), + [aux_sym_def_type_statement_token14] = ACTIONS(8540), + [aux_sym_call_statement_token1] = ACTIONS(8540), + [sym__ambiguous_call_statement] = ACTIONS(8540), + [aux_sym_addressof_expression_token1] = ACTIONS(8540), + [aux_sym_type_of_expression_token1] = ACTIONS(8540), + [aux_sym_unary_expression_token1] = ACTIONS(8540), + [sym_string_literal] = ACTIONS(8542), + [sym_number_literal] = ACTIONS(8542), + [aux_sym_boolean_literal_token1] = ACTIONS(8540), + [aux_sym_boolean_literal_token2] = ACTIONS(8540), + [sym_nothing_literal] = ACTIONS(8540), + [sym_null_literal] = ACTIONS(8540), + [sym_empty_literal] = ACTIONS(8540), + [sym_date_literal] = ACTIONS(8542), + [anon_sym_POUND] = ACTIONS(8540), + }, + [STATE(5557)] = { + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym__attribute_identifier_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [sym__redim_keyword] = ACTIONS(4625), + [aux_sym_get_accessor_token1] = ACTIONS(4625), + [aux_sym_set_accessor_token1] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [aux_sym_as_type_clause_token2] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4625), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_elseif_fragment_token1] = ACTIONS(4625), + [aux_sym_else_fragment_token1] = ACTIONS(4625), + [aux_sym_select_statement_token1] = ACTIONS(4625), + [aux_sym__for_header_token1] = ACTIONS(4625), + [aux_sym_do_statement_token1] = ACTIONS(4625), + [aux_sym_do_condition_token1] = ACTIONS(4625), + [aux_sym_with_statement_token1] = ACTIONS(4625), + [aux_sym_exit_statement_token1] = ACTIONS(4625), + [sym_end_statement] = ACTIONS(4627), + [aux_sym_on_goto_statement_token1] = ACTIONS(4625), + [aux_sym_on_goto_statement_token2] = ACTIONS(4625), + [aux_sym_on_error_statement_token2] = ACTIONS(4625), + [sym__ambiguous_redim_statement] = ACTIONS(4627), + [aux_sym_erase_statement_token1] = ACTIONS(4625), + [aux_sym_open_statement_token1] = ACTIONS(4625), + [aux_sym_file_mode_token2] = ACTIONS(4625), + [aux_sym_file_access_token2] = ACTIONS(4625), + [aux_sym_file_lock_token2] = ACTIONS(4625), + [aux_sym_print_statement_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4627), + [aux_sym_close_statement_token1] = ACTIONS(4625), + [aux_sym_put_statement_token1] = ACTIONS(4625), + [aux_sym_unlock_statement_token1] = ACTIONS(4625), + [aux_sym_seek_statement_token1] = ACTIONS(4625), + [sym_reset_statement] = ACTIONS(4625), + [aux_sym_raise_event_statement_token1] = ACTIONS(4625), + [sym_stop_statement] = ACTIONS(4625), + [sym_beep_statement] = ACTIONS(4625), + [aux_sym_unload_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_call_statement_token1] = ACTIONS(4625), + [sym__ambiguous_call_statement] = ACTIONS(4625), + [aux_sym_addressof_expression_token1] = ACTIONS(4625), + [aux_sym_type_of_expression_token1] = ACTIONS(4625), + [aux_sym_unary_expression_token1] = ACTIONS(4625), + [sym_string_literal] = ACTIONS(4627), + [sym_number_literal] = ACTIONS(4627), + [aux_sym_boolean_literal_token1] = ACTIONS(4625), + [aux_sym_boolean_literal_token2] = ACTIONS(4625), + [sym_nothing_literal] = ACTIONS(4625), + [sym_null_literal] = ACTIONS(4625), + [sym_empty_literal] = ACTIONS(4625), + [sym_date_literal] = ACTIONS(4627), + [anon_sym_POUND] = ACTIONS(4625), + }, + [STATE(5558)] = { + [aux_sym_const_declaration_repeat1] = STATE(5558), + [sym_identifier] = ACTIONS(8350), + [sym_newline] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8350), + [aux_sym_frm_property_statement_token1] = ACTIONS(8350), + [anon_sym_DOT] = ACTIONS(8350), + [anon_sym_BANG] = ACTIONS(8352), + [aux_sym__attribute_identifier_token1] = ACTIONS(8350), + [aux_sym_option_statement_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8350), + [aux_sym_preprocessor_const_token1] = ACTIONS(8350), + [sym_static_modifier] = ACTIONS(8350), + [sym__dim_keyword] = ACTIONS(8350), + [sym__redim_keyword] = ACTIONS(8350), + [aux_sym_get_accessor_token1] = ACTIONS(8350), + [aux_sym_set_accessor_token1] = ACTIONS(8350), + [anon_sym_COMMA] = ACTIONS(10732), + [aux_sym_const_declaration_token1] = ACTIONS(8350), + [anon_sym_LPAREN] = ACTIONS(8352), + [aux_sym_as_type_clause_token2] = ACTIONS(8350), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8350), + [aux_sym_visibility_token1] = ACTIONS(8350), + [aux_sym_visibility_token2] = ACTIONS(8350), + [aux_sym_elseif_fragment_token1] = ACTIONS(8350), + [aux_sym_else_fragment_token1] = ACTIONS(8350), + [aux_sym_select_statement_token1] = ACTIONS(8350), + [aux_sym_select_statement_token2] = ACTIONS(8350), + [aux_sym__for_header_token1] = ACTIONS(8350), + [aux_sym_do_statement_token1] = ACTIONS(8350), + [aux_sym_do_condition_token1] = ACTIONS(8350), + [aux_sym_with_statement_token1] = ACTIONS(8350), + [aux_sym_exit_statement_token1] = ACTIONS(8350), + [sym_end_statement] = ACTIONS(8352), + [aux_sym_on_goto_statement_token1] = ACTIONS(8350), + [aux_sym_on_goto_statement_token2] = ACTIONS(8350), + [aux_sym_on_error_statement_token2] = ACTIONS(8350), + [sym__ambiguous_redim_statement] = ACTIONS(8352), + [aux_sym_erase_statement_token1] = ACTIONS(8350), + [aux_sym_open_statement_token1] = ACTIONS(8350), + [aux_sym_file_mode_token2] = ACTIONS(8350), + [aux_sym_file_access_token2] = ACTIONS(8350), + [aux_sym_file_lock_token2] = ACTIONS(8350), + [aux_sym_print_statement_token1] = ACTIONS(8350), + [anon_sym_PLUS] = ACTIONS(8352), + [anon_sym_DASH] = ACTIONS(8350), + [anon_sym_QMARK] = ACTIONS(8352), + [aux_sym_close_statement_token1] = ACTIONS(8350), + [aux_sym_put_statement_token1] = ACTIONS(8350), + [aux_sym_unlock_statement_token1] = ACTIONS(8350), + [aux_sym_seek_statement_token1] = ACTIONS(8350), + [sym_reset_statement] = ACTIONS(8350), + [aux_sym_raise_event_statement_token1] = ACTIONS(8350), + [sym_stop_statement] = ACTIONS(8350), + [sym_beep_statement] = ACTIONS(8350), + [aux_sym_unload_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token2] = ACTIONS(8350), + [aux_sym_def_type_statement_token3] = ACTIONS(8350), + [aux_sym_def_type_statement_token4] = ACTIONS(8350), + [aux_sym_def_type_statement_token5] = ACTIONS(8350), + [aux_sym_def_type_statement_token6] = ACTIONS(8350), + [aux_sym_def_type_statement_token7] = ACTIONS(8350), + [aux_sym_def_type_statement_token8] = ACTIONS(8350), + [aux_sym_def_type_statement_token9] = ACTIONS(8350), + [aux_sym_def_type_statement_token10] = ACTIONS(8350), + [aux_sym_def_type_statement_token11] = ACTIONS(8350), + [aux_sym_def_type_statement_token12] = ACTIONS(8350), + [aux_sym_def_type_statement_token13] = ACTIONS(8350), + [aux_sym_def_type_statement_token14] = ACTIONS(8350), + [aux_sym_call_statement_token1] = ACTIONS(8350), + [sym__ambiguous_call_statement] = ACTIONS(8350), + [aux_sym_addressof_expression_token1] = ACTIONS(8350), + [aux_sym_type_of_expression_token1] = ACTIONS(8350), + [aux_sym_unary_expression_token1] = ACTIONS(8350), + [sym_string_literal] = ACTIONS(8352), + [sym_number_literal] = ACTIONS(8352), + [aux_sym_boolean_literal_token1] = ACTIONS(8350), + [aux_sym_boolean_literal_token2] = ACTIONS(8350), + [sym_nothing_literal] = ACTIONS(8350), + [sym_null_literal] = ACTIONS(8350), + [sym_empty_literal] = ACTIONS(8350), + [sym_date_literal] = ACTIONS(8352), + [anon_sym_POUND] = ACTIONS(8350), + }, + [STATE(5559)] = { + [aux_sym_erase_statement_repeat1] = STATE(5559), + [sym_identifier] = ACTIONS(8607), + [sym_newline] = ACTIONS(8609), + [anon_sym_COLON] = ACTIONS(8609), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8607), + [aux_sym_frm_property_statement_token1] = ACTIONS(8607), + [anon_sym_DOT] = ACTIONS(8607), + [anon_sym_BANG] = ACTIONS(8609), + [aux_sym__attribute_identifier_token1] = ACTIONS(8607), + [aux_sym_option_statement_token3] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8607), + [aux_sym_preprocessor_const_token1] = ACTIONS(8607), + [sym_static_modifier] = ACTIONS(8607), + [sym__dim_keyword] = ACTIONS(8607), + [sym__redim_keyword] = ACTIONS(8607), + [aux_sym_get_accessor_token1] = ACTIONS(8607), + [aux_sym_set_accessor_token1] = ACTIONS(8607), + [anon_sym_COMMA] = ACTIONS(10735), + [aux_sym_const_declaration_token1] = ACTIONS(8607), + [anon_sym_LPAREN] = ACTIONS(8609), + [aux_sym_as_type_clause_token2] = ACTIONS(8607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8607), + [aux_sym_visibility_token1] = ACTIONS(8607), + [aux_sym_visibility_token2] = ACTIONS(8607), + [aux_sym_elseif_fragment_token1] = ACTIONS(8607), + [aux_sym_else_fragment_token1] = ACTIONS(8607), + [aux_sym_select_statement_token1] = ACTIONS(8607), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8607), + [aux_sym__for_header_token1] = ACTIONS(8607), + [aux_sym_do_statement_token1] = ACTIONS(8607), + [aux_sym_do_condition_token1] = ACTIONS(8607), + [aux_sym_with_statement_token1] = ACTIONS(8607), + [aux_sym_exit_statement_token1] = ACTIONS(8607), + [sym_end_statement] = ACTIONS(8609), + [aux_sym_on_goto_statement_token1] = ACTIONS(8607), + [aux_sym_on_goto_statement_token2] = ACTIONS(8607), + [aux_sym_on_error_statement_token2] = ACTIONS(8607), + [sym__ambiguous_redim_statement] = ACTIONS(8609), + [aux_sym_erase_statement_token1] = ACTIONS(8607), + [aux_sym_open_statement_token1] = ACTIONS(8607), + [aux_sym_file_mode_token2] = ACTIONS(8607), + [aux_sym_file_access_token2] = ACTIONS(8607), + [aux_sym_file_lock_token2] = ACTIONS(8607), + [aux_sym_print_statement_token1] = ACTIONS(8607), + [anon_sym_PLUS] = ACTIONS(8609), + [anon_sym_DASH] = ACTIONS(8607), + [anon_sym_QMARK] = ACTIONS(8609), + [aux_sym_close_statement_token1] = ACTIONS(8607), + [aux_sym_put_statement_token1] = ACTIONS(8607), + [aux_sym_unlock_statement_token1] = ACTIONS(8607), + [aux_sym_seek_statement_token1] = ACTIONS(8607), + [sym_reset_statement] = ACTIONS(8607), + [aux_sym_raise_event_statement_token1] = ACTIONS(8607), + [sym_stop_statement] = ACTIONS(8607), + [sym_beep_statement] = ACTIONS(8607), + [aux_sym_unload_statement_token1] = ACTIONS(8607), + [aux_sym_def_type_statement_token1] = ACTIONS(8607), + [aux_sym_def_type_statement_token2] = ACTIONS(8607), + [aux_sym_def_type_statement_token3] = ACTIONS(8607), + [aux_sym_def_type_statement_token4] = ACTIONS(8607), + [aux_sym_def_type_statement_token5] = ACTIONS(8607), + [aux_sym_def_type_statement_token6] = ACTIONS(8607), + [aux_sym_def_type_statement_token7] = ACTIONS(8607), + [aux_sym_def_type_statement_token8] = ACTIONS(8607), + [aux_sym_def_type_statement_token9] = ACTIONS(8607), + [aux_sym_def_type_statement_token10] = ACTIONS(8607), + [aux_sym_def_type_statement_token11] = ACTIONS(8607), + [aux_sym_def_type_statement_token12] = ACTIONS(8607), + [aux_sym_def_type_statement_token13] = ACTIONS(8607), + [aux_sym_def_type_statement_token14] = ACTIONS(8607), + [aux_sym_call_statement_token1] = ACTIONS(8607), + [sym__ambiguous_call_statement] = ACTIONS(8607), + [aux_sym_addressof_expression_token1] = ACTIONS(8607), + [aux_sym_type_of_expression_token1] = ACTIONS(8607), + [aux_sym_unary_expression_token1] = ACTIONS(8607), + [sym_string_literal] = ACTIONS(8609), + [sym_number_literal] = ACTIONS(8609), + [aux_sym_boolean_literal_token1] = ACTIONS(8607), + [aux_sym_boolean_literal_token2] = ACTIONS(8607), + [sym_nothing_literal] = ACTIONS(8607), + [sym_null_literal] = ACTIONS(8607), + [sym_empty_literal] = ACTIONS(8607), + [sym_date_literal] = ACTIONS(8609), + [anon_sym_POUND] = ACTIONS(8607), + }, + [STATE(5560)] = { + [sym_identifier] = ACTIONS(8070), + [sym_newline] = ACTIONS(8072), + [anon_sym_COLON] = ACTIONS(8072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8070), + [aux_sym_frm_property_statement_token1] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(8072), + [anon_sym_DOT] = ACTIONS(8070), + [anon_sym_BANG] = ACTIONS(8072), + [aux_sym__attribute_identifier_token1] = ACTIONS(8070), + [aux_sym_option_statement_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8070), + [aux_sym_preprocessor_const_token1] = ACTIONS(8070), + [sym_static_modifier] = ACTIONS(8070), + [sym__dim_keyword] = ACTIONS(8070), + [sym__redim_keyword] = ACTIONS(8070), + [aux_sym_get_accessor_token1] = ACTIONS(8070), + [aux_sym_set_accessor_token1] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [aux_sym_const_declaration_token1] = ACTIONS(8070), + [anon_sym_LPAREN] = ACTIONS(8072), + [aux_sym_as_type_clause_token2] = ACTIONS(8070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8070), + [aux_sym_visibility_token1] = ACTIONS(8070), + [aux_sym_visibility_token2] = ACTIONS(8070), + [aux_sym_elseif_fragment_token1] = ACTIONS(8070), + [aux_sym_else_fragment_token1] = ACTIONS(8070), + [aux_sym_select_statement_token1] = ACTIONS(8070), + [aux_sym__for_header_token1] = ACTIONS(8070), + [aux_sym_do_statement_token1] = ACTIONS(8070), + [aux_sym_do_condition_token1] = ACTIONS(8070), + [aux_sym_while_statement_token1] = ACTIONS(8070), + [aux_sym_with_statement_token1] = ACTIONS(8070), + [aux_sym_exit_statement_token1] = ACTIONS(8070), + [sym_end_statement] = ACTIONS(8072), + [aux_sym_on_goto_statement_token1] = ACTIONS(8070), + [aux_sym_on_goto_statement_token2] = ACTIONS(8070), + [aux_sym_on_error_statement_token2] = ACTIONS(8070), + [sym__ambiguous_redim_statement] = ACTIONS(8072), + [aux_sym_erase_statement_token1] = ACTIONS(8070), + [aux_sym_open_statement_token1] = ACTIONS(8070), + [aux_sym_file_mode_token2] = ACTIONS(8070), + [aux_sym_file_access_token2] = ACTIONS(8070), + [aux_sym_file_lock_token2] = ACTIONS(8070), + [aux_sym_print_statement_token1] = ACTIONS(8070), + [anon_sym_PLUS] = ACTIONS(8072), + [anon_sym_DASH] = ACTIONS(8070), + [anon_sym_QMARK] = ACTIONS(8072), + [aux_sym_close_statement_token1] = ACTIONS(8070), + [aux_sym_put_statement_token1] = ACTIONS(8070), + [aux_sym_unlock_statement_token1] = ACTIONS(8070), + [aux_sym_seek_statement_token1] = ACTIONS(8070), + [sym_reset_statement] = ACTIONS(8070), + [aux_sym_raise_event_statement_token1] = ACTIONS(8070), + [sym_stop_statement] = ACTIONS(8070), + [sym_beep_statement] = ACTIONS(8070), + [aux_sym_unload_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token2] = ACTIONS(8070), + [aux_sym_def_type_statement_token3] = ACTIONS(8070), + [aux_sym_def_type_statement_token4] = ACTIONS(8070), + [aux_sym_def_type_statement_token5] = ACTIONS(8070), + [aux_sym_def_type_statement_token6] = ACTIONS(8070), + [aux_sym_def_type_statement_token7] = ACTIONS(8070), + [aux_sym_def_type_statement_token8] = ACTIONS(8070), + [aux_sym_def_type_statement_token9] = ACTIONS(8070), + [aux_sym_def_type_statement_token10] = ACTIONS(8070), + [aux_sym_def_type_statement_token11] = ACTIONS(8070), + [aux_sym_def_type_statement_token12] = ACTIONS(8070), + [aux_sym_def_type_statement_token13] = ACTIONS(8070), + [aux_sym_def_type_statement_token14] = ACTIONS(8070), + [aux_sym_call_statement_token1] = ACTIONS(8070), + [sym__ambiguous_call_statement] = ACTIONS(8070), + [aux_sym_addressof_expression_token1] = ACTIONS(8070), + [aux_sym_type_of_expression_token1] = ACTIONS(8070), + [aux_sym_unary_expression_token1] = ACTIONS(8070), + [sym_string_literal] = ACTIONS(8072), + [sym_number_literal] = ACTIONS(8072), + [aux_sym_boolean_literal_token1] = ACTIONS(8070), + [aux_sym_boolean_literal_token2] = ACTIONS(8070), + [sym_nothing_literal] = ACTIONS(8070), + [sym_null_literal] = ACTIONS(8070), + [sym_empty_literal] = ACTIONS(8070), + [sym_date_literal] = ACTIONS(8072), + [anon_sym_POUND] = ACTIONS(8070), + }, + [STATE(5561)] = { + [sym_identifier] = ACTIONS(8467), + [sym_newline] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8467), + [aux_sym_frm_property_statement_token1] = ACTIONS(8467), + [anon_sym_DOT] = ACTIONS(8467), + [anon_sym_BANG] = ACTIONS(6089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8467), + [aux_sym_option_statement_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8467), + [aux_sym_preprocessor_const_token1] = ACTIONS(8467), + [sym_static_modifier] = ACTIONS(8467), + [sym__dim_keyword] = ACTIONS(8467), + [sym__redim_keyword] = ACTIONS(8467), + [aux_sym_get_accessor_token1] = ACTIONS(8467), + [aux_sym_set_accessor_token1] = ACTIONS(8467), + [anon_sym_COMMA] = ACTIONS(6089), + [aux_sym_const_declaration_token1] = ACTIONS(8467), + [anon_sym_LPAREN] = ACTIONS(6089), + [aux_sym_as_type_clause_token2] = ACTIONS(8467), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8467), + [aux_sym_visibility_token1] = ACTIONS(8467), + [aux_sym_visibility_token2] = ACTIONS(8467), + [aux_sym_elseif_fragment_token1] = ACTIONS(8467), + [aux_sym_else_fragment_token1] = ACTIONS(8467), + [aux_sym_select_statement_token1] = ACTIONS(8467), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8467), + [aux_sym__for_header_token1] = ACTIONS(8467), + [aux_sym_do_statement_token1] = ACTIONS(8467), + [aux_sym_do_condition_token1] = ACTIONS(8467), + [aux_sym_with_statement_token1] = ACTIONS(8467), + [aux_sym_exit_statement_token1] = ACTIONS(8467), + [sym_end_statement] = ACTIONS(6089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8467), + [aux_sym_on_goto_statement_token2] = ACTIONS(8467), + [aux_sym_on_error_statement_token2] = ACTIONS(8467), + [sym__ambiguous_redim_statement] = ACTIONS(6089), + [aux_sym_erase_statement_token1] = ACTIONS(8467), + [aux_sym_open_statement_token1] = ACTIONS(8467), + [aux_sym_file_mode_token2] = ACTIONS(8467), + [aux_sym_file_access_token2] = ACTIONS(8467), + [aux_sym_file_lock_token2] = ACTIONS(8467), + [aux_sym_print_statement_token1] = ACTIONS(8467), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(8467), + [anon_sym_QMARK] = ACTIONS(6089), + [aux_sym_close_statement_token1] = ACTIONS(8467), + [aux_sym_put_statement_token1] = ACTIONS(8467), + [aux_sym_unlock_statement_token1] = ACTIONS(8467), + [aux_sym_seek_statement_token1] = ACTIONS(8467), + [sym_reset_statement] = ACTIONS(8467), + [aux_sym_raise_event_statement_token1] = ACTIONS(8467), + [sym_stop_statement] = ACTIONS(8467), + [sym_beep_statement] = ACTIONS(8467), + [aux_sym_unload_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token2] = ACTIONS(8467), + [aux_sym_def_type_statement_token3] = ACTIONS(8467), + [aux_sym_def_type_statement_token4] = ACTIONS(8467), + [aux_sym_def_type_statement_token5] = ACTIONS(8467), + [aux_sym_def_type_statement_token6] = ACTIONS(8467), + [aux_sym_def_type_statement_token7] = ACTIONS(8467), + [aux_sym_def_type_statement_token8] = ACTIONS(8467), + [aux_sym_def_type_statement_token9] = ACTIONS(8467), + [aux_sym_def_type_statement_token10] = ACTIONS(8467), + [aux_sym_def_type_statement_token11] = ACTIONS(8467), + [aux_sym_def_type_statement_token12] = ACTIONS(8467), + [aux_sym_def_type_statement_token13] = ACTIONS(8467), + [aux_sym_def_type_statement_token14] = ACTIONS(8467), + [aux_sym_call_statement_token1] = ACTIONS(8467), + [sym__ambiguous_call_statement] = ACTIONS(8467), + [aux_sym_addressof_expression_token1] = ACTIONS(8467), + [aux_sym_type_of_expression_token1] = ACTIONS(8467), + [aux_sym_unary_expression_token1] = ACTIONS(8467), + [sym_string_literal] = ACTIONS(6089), + [sym_number_literal] = ACTIONS(6089), + [aux_sym_boolean_literal_token1] = ACTIONS(8467), + [aux_sym_boolean_literal_token2] = ACTIONS(8467), + [sym_nothing_literal] = ACTIONS(8467), + [sym_null_literal] = ACTIONS(8467), + [sym_empty_literal] = ACTIONS(8467), + [sym_date_literal] = ACTIONS(6089), + [anon_sym_POUND] = ACTIONS(8467), + }, + [STATE(5562)] = { + [sym_identifier] = ACTIONS(5562), + [sym_newline] = ACTIONS(5558), + [anon_sym_COLON] = ACTIONS(5558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5562), + [aux_sym_frm_property_statement_token1] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(10333), + [anon_sym_BANG] = ACTIONS(10335), + [aux_sym__attribute_identifier_token1] = ACTIONS(5562), + [aux_sym_option_statement_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5562), + [aux_sym_preprocessor_const_token1] = ACTIONS(5562), + [sym_static_modifier] = ACTIONS(5562), + [sym__dim_keyword] = ACTIONS(5562), + [sym__redim_keyword] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5562), + [aux_sym_set_accessor_token1] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5558), + [aux_sym_as_type_clause_token2] = ACTIONS(5562), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5562), + [aux_sym_visibility_token1] = ACTIONS(5562), + [aux_sym_visibility_token2] = ACTIONS(5562), + [aux_sym_elseif_fragment_token1] = ACTIONS(5562), + [aux_sym_else_fragment_token1] = ACTIONS(5562), + [aux_sym_select_statement_token1] = ACTIONS(5562), + [aux_sym_select_statement_token2] = ACTIONS(5562), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5562), + [aux_sym__for_header_token1] = ACTIONS(5562), + [aux_sym_do_statement_token1] = ACTIONS(5562), + [aux_sym_do_condition_token1] = ACTIONS(5562), + [aux_sym_with_statement_token1] = ACTIONS(5562), + [aux_sym_exit_statement_token1] = ACTIONS(5562), + [sym_end_statement] = ACTIONS(5558), + [aux_sym_on_goto_statement_token1] = ACTIONS(5562), + [aux_sym_on_goto_statement_token2] = ACTIONS(5562), + [aux_sym_on_error_statement_token2] = ACTIONS(5562), + [sym__ambiguous_redim_statement] = ACTIONS(5558), + [aux_sym_erase_statement_token1] = ACTIONS(5562), + [aux_sym_open_statement_token1] = ACTIONS(5562), + [aux_sym_file_mode_token2] = ACTIONS(5562), + [aux_sym_file_access_token2] = ACTIONS(5562), + [aux_sym_file_lock_token2] = ACTIONS(5562), + [aux_sym_print_statement_token1] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5558), + [aux_sym_close_statement_token1] = ACTIONS(5562), + [aux_sym_put_statement_token1] = ACTIONS(5562), + [aux_sym_unlock_statement_token1] = ACTIONS(5562), + [aux_sym_seek_statement_token1] = ACTIONS(5562), + [sym_reset_statement] = ACTIONS(5562), + [aux_sym_raise_event_statement_token1] = ACTIONS(5562), + [sym_stop_statement] = ACTIONS(5562), + [sym_beep_statement] = ACTIONS(5562), + [aux_sym_unload_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token2] = ACTIONS(5562), + [aux_sym_def_type_statement_token3] = ACTIONS(5562), + [aux_sym_def_type_statement_token4] = ACTIONS(5562), + [aux_sym_def_type_statement_token5] = ACTIONS(5562), + [aux_sym_def_type_statement_token6] = ACTIONS(5562), + [aux_sym_def_type_statement_token7] = ACTIONS(5562), + [aux_sym_def_type_statement_token8] = ACTIONS(5562), + [aux_sym_def_type_statement_token9] = ACTIONS(5562), + [aux_sym_def_type_statement_token10] = ACTIONS(5562), + [aux_sym_def_type_statement_token11] = ACTIONS(5562), + [aux_sym_def_type_statement_token12] = ACTIONS(5562), + [aux_sym_def_type_statement_token13] = ACTIONS(5562), + [aux_sym_def_type_statement_token14] = ACTIONS(5562), + [aux_sym_call_statement_token1] = ACTIONS(5562), + [sym__ambiguous_call_statement] = ACTIONS(5562), + [aux_sym_addressof_expression_token1] = ACTIONS(5562), + [aux_sym_type_of_expression_token1] = ACTIONS(5562), + [aux_sym_unary_expression_token1] = ACTIONS(5562), + [sym_string_literal] = ACTIONS(5558), + [sym_number_literal] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5562), + [aux_sym_boolean_literal_token2] = ACTIONS(5562), + [sym_nothing_literal] = ACTIONS(5562), + [sym_null_literal] = ACTIONS(5562), + [sym_empty_literal] = ACTIONS(5562), + [sym_date_literal] = ACTIONS(5558), + [anon_sym_POUND] = ACTIONS(5562), + }, + [STATE(5563)] = { + [aux_sym_redim_statement_repeat1] = STATE(5563), + [sym_identifier] = ACTIONS(8456), + [sym_newline] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8458), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8456), + [aux_sym_frm_property_statement_token1] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_BANG] = ACTIONS(8458), + [aux_sym__attribute_identifier_token1] = ACTIONS(8456), + [aux_sym_option_statement_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8456), + [aux_sym_preprocessor_const_token1] = ACTIONS(8456), + [sym_static_modifier] = ACTIONS(8456), + [sym__dim_keyword] = ACTIONS(8456), + [sym__redim_keyword] = ACTIONS(8456), + [aux_sym_get_accessor_token1] = ACTIONS(8456), + [aux_sym_set_accessor_token1] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(10738), + [aux_sym_const_declaration_token1] = ACTIONS(8456), + [anon_sym_LPAREN] = ACTIONS(8458), + [aux_sym_as_type_clause_token2] = ACTIONS(8456), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8456), + [aux_sym_visibility_token1] = ACTIONS(8456), + [aux_sym_visibility_token2] = ACTIONS(8456), + [aux_sym_elseif_fragment_token1] = ACTIONS(8456), + [aux_sym_else_fragment_token1] = ACTIONS(8456), + [aux_sym_select_statement_token1] = ACTIONS(8456), + [aux_sym__for_header_token1] = ACTIONS(8456), + [aux_sym_do_statement_token1] = ACTIONS(8456), + [aux_sym_do_statement_token2] = ACTIONS(8456), + [aux_sym_do_condition_token1] = ACTIONS(8456), + [aux_sym_with_statement_token1] = ACTIONS(8456), + [aux_sym_exit_statement_token1] = ACTIONS(8456), + [sym_end_statement] = ACTIONS(8458), + [aux_sym_on_goto_statement_token1] = ACTIONS(8456), + [aux_sym_on_goto_statement_token2] = ACTIONS(8456), + [aux_sym_on_error_statement_token2] = ACTIONS(8456), + [sym__ambiguous_redim_statement] = ACTIONS(8458), + [aux_sym_erase_statement_token1] = ACTIONS(8456), + [aux_sym_open_statement_token1] = ACTIONS(8456), + [aux_sym_file_mode_token2] = ACTIONS(8456), + [aux_sym_file_access_token2] = ACTIONS(8456), + [aux_sym_file_lock_token2] = ACTIONS(8456), + [aux_sym_print_statement_token1] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8458), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8458), + [aux_sym_close_statement_token1] = ACTIONS(8456), + [aux_sym_put_statement_token1] = ACTIONS(8456), + [aux_sym_unlock_statement_token1] = ACTIONS(8456), + [aux_sym_seek_statement_token1] = ACTIONS(8456), + [sym_reset_statement] = ACTIONS(8456), + [aux_sym_raise_event_statement_token1] = ACTIONS(8456), + [sym_stop_statement] = ACTIONS(8456), + [sym_beep_statement] = ACTIONS(8456), + [aux_sym_unload_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token2] = ACTIONS(8456), + [aux_sym_def_type_statement_token3] = ACTIONS(8456), + [aux_sym_def_type_statement_token4] = ACTIONS(8456), + [aux_sym_def_type_statement_token5] = ACTIONS(8456), + [aux_sym_def_type_statement_token6] = ACTIONS(8456), + [aux_sym_def_type_statement_token7] = ACTIONS(8456), + [aux_sym_def_type_statement_token8] = ACTIONS(8456), + [aux_sym_def_type_statement_token9] = ACTIONS(8456), + [aux_sym_def_type_statement_token10] = ACTIONS(8456), + [aux_sym_def_type_statement_token11] = ACTIONS(8456), + [aux_sym_def_type_statement_token12] = ACTIONS(8456), + [aux_sym_def_type_statement_token13] = ACTIONS(8456), + [aux_sym_def_type_statement_token14] = ACTIONS(8456), + [aux_sym_call_statement_token1] = ACTIONS(8456), + [sym__ambiguous_call_statement] = ACTIONS(8456), + [aux_sym_addressof_expression_token1] = ACTIONS(8456), + [aux_sym_type_of_expression_token1] = ACTIONS(8456), + [aux_sym_unary_expression_token1] = ACTIONS(8456), + [sym_string_literal] = ACTIONS(8458), + [sym_number_literal] = ACTIONS(8458), + [aux_sym_boolean_literal_token1] = ACTIONS(8456), + [aux_sym_boolean_literal_token2] = ACTIONS(8456), + [sym_nothing_literal] = ACTIONS(8456), + [sym_null_literal] = ACTIONS(8456), + [sym_empty_literal] = ACTIONS(8456), + [sym_date_literal] = ACTIONS(8458), + [anon_sym_POUND] = ACTIONS(8456), + }, + [STATE(5564)] = { + [sym_do_condition] = STATE(6902), + [sym_identifier] = ACTIONS(8501), + [sym_newline] = ACTIONS(8503), + [anon_sym_COLON] = ACTIONS(8503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8501), + [aux_sym_frm_property_statement_token1] = ACTIONS(8501), + [anon_sym_DOT] = ACTIONS(8501), + [anon_sym_BANG] = ACTIONS(8503), + [aux_sym__attribute_identifier_token1] = ACTIONS(8501), + [aux_sym_option_statement_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8501), + [aux_sym_preprocessor_const_token1] = ACTIONS(8501), + [sym_static_modifier] = ACTIONS(8501), + [sym__dim_keyword] = ACTIONS(8501), + [sym__redim_keyword] = ACTIONS(8501), + [aux_sym_get_accessor_token1] = ACTIONS(8501), + [aux_sym_set_accessor_token1] = ACTIONS(8501), + [aux_sym_const_declaration_token1] = ACTIONS(8501), + [anon_sym_LPAREN] = ACTIONS(8503), + [aux_sym_as_type_clause_token2] = ACTIONS(8501), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8501), + [aux_sym_visibility_token1] = ACTIONS(8501), + [aux_sym_visibility_token2] = ACTIONS(8501), + [aux_sym_elseif_fragment_token1] = ACTIONS(8501), + [aux_sym_else_fragment_token1] = ACTIONS(8501), + [aux_sym_select_statement_token1] = ACTIONS(8501), + [aux_sym__for_header_token1] = ACTIONS(8501), + [aux_sym_do_statement_token1] = ACTIONS(8501), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8501), + [aux_sym_exit_statement_token1] = ACTIONS(8501), + [sym_end_statement] = ACTIONS(8503), + [aux_sym_on_goto_statement_token1] = ACTIONS(8501), + [aux_sym_on_goto_statement_token2] = ACTIONS(8501), + [aux_sym_on_error_statement_token2] = ACTIONS(8501), + [sym__ambiguous_redim_statement] = ACTIONS(8503), + [aux_sym_erase_statement_token1] = ACTIONS(8501), + [aux_sym_open_statement_token1] = ACTIONS(8501), + [aux_sym_file_mode_token2] = ACTIONS(8501), + [aux_sym_file_access_token2] = ACTIONS(8501), + [aux_sym_file_lock_token2] = ACTIONS(8501), + [aux_sym_print_statement_token1] = ACTIONS(8501), + [anon_sym_PLUS] = ACTIONS(8503), + [anon_sym_DASH] = ACTIONS(8501), + [anon_sym_QMARK] = ACTIONS(8503), + [aux_sym_close_statement_token1] = ACTIONS(8501), + [aux_sym_put_statement_token1] = ACTIONS(8501), + [aux_sym_unlock_statement_token1] = ACTIONS(8501), + [aux_sym_seek_statement_token1] = ACTIONS(8501), + [sym_reset_statement] = ACTIONS(8501), + [aux_sym_raise_event_statement_token1] = ACTIONS(8501), + [sym_stop_statement] = ACTIONS(8501), + [sym_beep_statement] = ACTIONS(8501), + [aux_sym_unload_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token2] = ACTIONS(8501), + [aux_sym_def_type_statement_token3] = ACTIONS(8501), + [aux_sym_def_type_statement_token4] = ACTIONS(8501), + [aux_sym_def_type_statement_token5] = ACTIONS(8501), + [aux_sym_def_type_statement_token6] = ACTIONS(8501), + [aux_sym_def_type_statement_token7] = ACTIONS(8501), + [aux_sym_def_type_statement_token8] = ACTIONS(8501), + [aux_sym_def_type_statement_token9] = ACTIONS(8501), + [aux_sym_def_type_statement_token10] = ACTIONS(8501), + [aux_sym_def_type_statement_token11] = ACTIONS(8501), + [aux_sym_def_type_statement_token12] = ACTIONS(8501), + [aux_sym_def_type_statement_token13] = ACTIONS(8501), + [aux_sym_def_type_statement_token14] = ACTIONS(8501), + [aux_sym_call_statement_token1] = ACTIONS(8501), + [sym__ambiguous_call_statement] = ACTIONS(8501), + [aux_sym_addressof_expression_token1] = ACTIONS(8501), + [aux_sym_type_of_expression_token1] = ACTIONS(8501), + [aux_sym_unary_expression_token1] = ACTIONS(8501), + [sym_string_literal] = ACTIONS(8503), + [sym_number_literal] = ACTIONS(8503), + [aux_sym_boolean_literal_token1] = ACTIONS(8501), + [aux_sym_boolean_literal_token2] = ACTIONS(8501), + [sym_nothing_literal] = ACTIONS(8501), + [sym_null_literal] = ACTIONS(8501), + [sym_empty_literal] = ACTIONS(8501), + [sym_date_literal] = ACTIONS(8503), + [anon_sym_POUND] = ACTIONS(8501), + }, + [STATE(5565)] = { + [sym_do_condition] = STATE(6908), + [sym_identifier] = ACTIONS(8509), + [sym_newline] = ACTIONS(8511), + [anon_sym_COLON] = ACTIONS(8511), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8509), + [aux_sym_frm_property_statement_token1] = ACTIONS(8509), + [anon_sym_DOT] = ACTIONS(8509), + [anon_sym_BANG] = ACTIONS(8511), + [aux_sym__attribute_identifier_token1] = ACTIONS(8509), + [aux_sym_option_statement_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8509), + [aux_sym_preprocessor_const_token1] = ACTIONS(8509), + [sym_static_modifier] = ACTIONS(8509), + [sym__dim_keyword] = ACTIONS(8509), + [sym__redim_keyword] = ACTIONS(8509), + [aux_sym_get_accessor_token1] = ACTIONS(8509), + [aux_sym_set_accessor_token1] = ACTIONS(8509), + [aux_sym_const_declaration_token1] = ACTIONS(8509), + [anon_sym_LPAREN] = ACTIONS(8511), + [aux_sym_as_type_clause_token2] = ACTIONS(8509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8509), + [aux_sym_visibility_token1] = ACTIONS(8509), + [aux_sym_visibility_token2] = ACTIONS(8509), + [aux_sym_elseif_fragment_token1] = ACTIONS(8509), + [aux_sym_else_fragment_token1] = ACTIONS(8509), + [aux_sym_select_statement_token1] = ACTIONS(8509), + [aux_sym__for_header_token1] = ACTIONS(8509), + [aux_sym_do_statement_token1] = ACTIONS(8509), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8509), + [aux_sym_exit_statement_token1] = ACTIONS(8509), + [sym_end_statement] = ACTIONS(8511), + [aux_sym_on_goto_statement_token1] = ACTIONS(8509), + [aux_sym_on_goto_statement_token2] = ACTIONS(8509), + [aux_sym_on_error_statement_token2] = ACTIONS(8509), + [sym__ambiguous_redim_statement] = ACTIONS(8511), + [aux_sym_erase_statement_token1] = ACTIONS(8509), + [aux_sym_open_statement_token1] = ACTIONS(8509), + [aux_sym_file_mode_token2] = ACTIONS(8509), + [aux_sym_file_access_token2] = ACTIONS(8509), + [aux_sym_file_lock_token2] = ACTIONS(8509), + [aux_sym_print_statement_token1] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(8511), + [anon_sym_DASH] = ACTIONS(8509), + [anon_sym_QMARK] = ACTIONS(8511), + [aux_sym_close_statement_token1] = ACTIONS(8509), + [aux_sym_put_statement_token1] = ACTIONS(8509), + [aux_sym_unlock_statement_token1] = ACTIONS(8509), + [aux_sym_seek_statement_token1] = ACTIONS(8509), + [sym_reset_statement] = ACTIONS(8509), + [aux_sym_raise_event_statement_token1] = ACTIONS(8509), + [sym_stop_statement] = ACTIONS(8509), + [sym_beep_statement] = ACTIONS(8509), + [aux_sym_unload_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token2] = ACTIONS(8509), + [aux_sym_def_type_statement_token3] = ACTIONS(8509), + [aux_sym_def_type_statement_token4] = ACTIONS(8509), + [aux_sym_def_type_statement_token5] = ACTIONS(8509), + [aux_sym_def_type_statement_token6] = ACTIONS(8509), + [aux_sym_def_type_statement_token7] = ACTIONS(8509), + [aux_sym_def_type_statement_token8] = ACTIONS(8509), + [aux_sym_def_type_statement_token9] = ACTIONS(8509), + [aux_sym_def_type_statement_token10] = ACTIONS(8509), + [aux_sym_def_type_statement_token11] = ACTIONS(8509), + [aux_sym_def_type_statement_token12] = ACTIONS(8509), + [aux_sym_def_type_statement_token13] = ACTIONS(8509), + [aux_sym_def_type_statement_token14] = ACTIONS(8509), + [aux_sym_call_statement_token1] = ACTIONS(8509), + [sym__ambiguous_call_statement] = ACTIONS(8509), + [aux_sym_addressof_expression_token1] = ACTIONS(8509), + [aux_sym_type_of_expression_token1] = ACTIONS(8509), + [aux_sym_unary_expression_token1] = ACTIONS(8509), + [sym_string_literal] = ACTIONS(8511), + [sym_number_literal] = ACTIONS(8511), + [aux_sym_boolean_literal_token1] = ACTIONS(8509), + [aux_sym_boolean_literal_token2] = ACTIONS(8509), + [sym_nothing_literal] = ACTIONS(8509), + [sym_null_literal] = ACTIONS(8509), + [sym_empty_literal] = ACTIONS(8509), + [sym_date_literal] = ACTIONS(8511), + [anon_sym_POUND] = ACTIONS(8509), + }, + [STATE(5566)] = { + [sym_do_condition] = STATE(6912), + [sym_identifier] = ACTIONS(8513), + [sym_newline] = ACTIONS(8515), + [anon_sym_COLON] = ACTIONS(8515), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8513), + [aux_sym_frm_property_statement_token1] = ACTIONS(8513), + [anon_sym_DOT] = ACTIONS(8513), + [anon_sym_BANG] = ACTIONS(8515), + [aux_sym__attribute_identifier_token1] = ACTIONS(8513), + [aux_sym_option_statement_token3] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8513), + [aux_sym_preprocessor_const_token1] = ACTIONS(8513), + [sym_static_modifier] = ACTIONS(8513), + [sym__dim_keyword] = ACTIONS(8513), + [sym__redim_keyword] = ACTIONS(8513), + [aux_sym_get_accessor_token1] = ACTIONS(8513), + [aux_sym_set_accessor_token1] = ACTIONS(8513), + [aux_sym_const_declaration_token1] = ACTIONS(8513), + [anon_sym_LPAREN] = ACTIONS(8515), + [aux_sym_as_type_clause_token2] = ACTIONS(8513), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8513), + [aux_sym_visibility_token1] = ACTIONS(8513), + [aux_sym_visibility_token2] = ACTIONS(8513), + [aux_sym_elseif_fragment_token1] = ACTIONS(8513), + [aux_sym_else_fragment_token1] = ACTIONS(8513), + [aux_sym_select_statement_token1] = ACTIONS(8513), + [aux_sym__for_header_token1] = ACTIONS(8513), + [aux_sym_do_statement_token1] = ACTIONS(8513), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8513), + [aux_sym_exit_statement_token1] = ACTIONS(8513), + [sym_end_statement] = ACTIONS(8515), + [aux_sym_on_goto_statement_token1] = ACTIONS(8513), + [aux_sym_on_goto_statement_token2] = ACTIONS(8513), + [aux_sym_on_error_statement_token2] = ACTIONS(8513), + [sym__ambiguous_redim_statement] = ACTIONS(8515), + [aux_sym_erase_statement_token1] = ACTIONS(8513), + [aux_sym_open_statement_token1] = ACTIONS(8513), + [aux_sym_file_mode_token2] = ACTIONS(8513), + [aux_sym_file_access_token2] = ACTIONS(8513), + [aux_sym_file_lock_token2] = ACTIONS(8513), + [aux_sym_print_statement_token1] = ACTIONS(8513), + [anon_sym_PLUS] = ACTIONS(8515), + [anon_sym_DASH] = ACTIONS(8513), + [anon_sym_QMARK] = ACTIONS(8515), + [aux_sym_close_statement_token1] = ACTIONS(8513), + [aux_sym_put_statement_token1] = ACTIONS(8513), + [aux_sym_unlock_statement_token1] = ACTIONS(8513), + [aux_sym_seek_statement_token1] = ACTIONS(8513), + [sym_reset_statement] = ACTIONS(8513), + [aux_sym_raise_event_statement_token1] = ACTIONS(8513), + [sym_stop_statement] = ACTIONS(8513), + [sym_beep_statement] = ACTIONS(8513), + [aux_sym_unload_statement_token1] = ACTIONS(8513), + [aux_sym_def_type_statement_token1] = ACTIONS(8513), + [aux_sym_def_type_statement_token2] = ACTIONS(8513), + [aux_sym_def_type_statement_token3] = ACTIONS(8513), + [aux_sym_def_type_statement_token4] = ACTIONS(8513), + [aux_sym_def_type_statement_token5] = ACTIONS(8513), + [aux_sym_def_type_statement_token6] = ACTIONS(8513), + [aux_sym_def_type_statement_token7] = ACTIONS(8513), + [aux_sym_def_type_statement_token8] = ACTIONS(8513), + [aux_sym_def_type_statement_token9] = ACTIONS(8513), + [aux_sym_def_type_statement_token10] = ACTIONS(8513), + [aux_sym_def_type_statement_token11] = ACTIONS(8513), + [aux_sym_def_type_statement_token12] = ACTIONS(8513), + [aux_sym_def_type_statement_token13] = ACTIONS(8513), + [aux_sym_def_type_statement_token14] = ACTIONS(8513), + [aux_sym_call_statement_token1] = ACTIONS(8513), + [sym__ambiguous_call_statement] = ACTIONS(8513), + [aux_sym_addressof_expression_token1] = ACTIONS(8513), + [aux_sym_type_of_expression_token1] = ACTIONS(8513), + [aux_sym_unary_expression_token1] = ACTIONS(8513), + [sym_string_literal] = ACTIONS(8515), + [sym_number_literal] = ACTIONS(8515), + [aux_sym_boolean_literal_token1] = ACTIONS(8513), + [aux_sym_boolean_literal_token2] = ACTIONS(8513), + [sym_nothing_literal] = ACTIONS(8513), + [sym_null_literal] = ACTIONS(8513), + [sym_empty_literal] = ACTIONS(8513), + [sym_date_literal] = ACTIONS(8515), + [anon_sym_POUND] = ACTIONS(8513), + }, + [STATE(5567)] = { + [sym_identifier] = ACTIONS(8702), + [sym_newline] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(8704), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8702), + [aux_sym_frm_property_statement_token1] = ACTIONS(8702), + [anon_sym_DOT] = ACTIONS(8702), + [anon_sym_BANG] = ACTIONS(8704), + [aux_sym__attribute_identifier_token1] = ACTIONS(8702), + [aux_sym_option_statement_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8702), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8702), + [aux_sym_preprocessor_const_token1] = ACTIONS(8702), + [sym_static_modifier] = ACTIONS(8702), + [sym__dim_keyword] = ACTIONS(8702), + [sym__redim_keyword] = ACTIONS(8702), + [aux_sym_get_accessor_token1] = ACTIONS(8702), + [aux_sym_set_accessor_token1] = ACTIONS(8702), + [aux_sym_const_declaration_token1] = ACTIONS(8702), + [anon_sym_LPAREN] = ACTIONS(8704), + [aux_sym_as_type_clause_token2] = ACTIONS(8702), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8702), + [aux_sym_visibility_token1] = ACTIONS(8702), + [aux_sym_visibility_token2] = ACTIONS(8702), + [aux_sym_elseif_fragment_token1] = ACTIONS(8702), + [aux_sym_else_fragment_token1] = ACTIONS(8702), + [aux_sym_select_statement_token1] = ACTIONS(8702), + [aux_sym__for_header_token1] = ACTIONS(8702), + [aux_sym_do_statement_token1] = ACTIONS(8702), + [aux_sym_do_condition_token1] = ACTIONS(8702), + [aux_sym_with_statement_token1] = ACTIONS(8702), + [aux_sym_exit_statement_token1] = ACTIONS(8702), + [sym_end_statement] = ACTIONS(8704), + [aux_sym_on_goto_statement_token1] = ACTIONS(8702), + [aux_sym_on_goto_statement_token2] = ACTIONS(8702), + [aux_sym_on_error_statement_token2] = ACTIONS(8702), + [sym__ambiguous_redim_statement] = ACTIONS(8704), + [aux_sym_erase_statement_token1] = ACTIONS(8702), + [aux_sym_open_statement_token1] = ACTIONS(8702), + [aux_sym_file_mode_token2] = ACTIONS(8702), + [aux_sym_file_access_token2] = ACTIONS(8702), + [aux_sym_file_lock_token2] = ACTIONS(8702), + [aux_sym_print_statement_token1] = ACTIONS(8702), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_DASH] = ACTIONS(8702), + [anon_sym_QMARK] = ACTIONS(8704), + [aux_sym_close_statement_token1] = ACTIONS(8702), + [aux_sym_put_statement_token1] = ACTIONS(8702), + [aux_sym_unlock_statement_token1] = ACTIONS(8702), + [aux_sym_seek_statement_token1] = ACTIONS(8702), + [sym_reset_statement] = ACTIONS(8702), + [aux_sym_raise_event_statement_token1] = ACTIONS(8702), + [sym_stop_statement] = ACTIONS(8702), + [sym_beep_statement] = ACTIONS(8702), + [aux_sym_unload_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token2] = ACTIONS(8702), + [aux_sym_def_type_statement_token3] = ACTIONS(8702), + [aux_sym_def_type_statement_token4] = ACTIONS(8702), + [aux_sym_def_type_statement_token5] = ACTIONS(8702), + [aux_sym_def_type_statement_token6] = ACTIONS(8702), + [aux_sym_def_type_statement_token7] = ACTIONS(8702), + [aux_sym_def_type_statement_token8] = ACTIONS(8702), + [aux_sym_def_type_statement_token9] = ACTIONS(8702), + [aux_sym_def_type_statement_token10] = ACTIONS(8702), + [aux_sym_def_type_statement_token11] = ACTIONS(8702), + [aux_sym_def_type_statement_token12] = ACTIONS(8702), + [aux_sym_def_type_statement_token13] = ACTIONS(8702), + [aux_sym_def_type_statement_token14] = ACTIONS(8702), + [aux_sym_call_statement_token1] = ACTIONS(8702), + [sym__ambiguous_call_statement] = ACTIONS(8702), + [aux_sym_addressof_expression_token1] = ACTIONS(8702), + [aux_sym_type_of_expression_token1] = ACTIONS(8702), + [aux_sym_unary_expression_token1] = ACTIONS(8702), + [sym_string_literal] = ACTIONS(8704), + [sym_number_literal] = ACTIONS(8704), + [aux_sym_boolean_literal_token1] = ACTIONS(8702), + [aux_sym_boolean_literal_token2] = ACTIONS(8702), + [sym_nothing_literal] = ACTIONS(8702), + [sym_null_literal] = ACTIONS(8702), + [sym_empty_literal] = ACTIONS(8702), + [sym_date_literal] = ACTIONS(8704), + [anon_sym_POUND] = ACTIONS(8702), + }, + [STATE(5568)] = { + [sym_identifier] = ACTIONS(8992), + [sym_newline] = ACTIONS(8994), + [anon_sym_COLON] = ACTIONS(8994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8992), + [aux_sym_frm_property_statement_token1] = ACTIONS(8992), + [anon_sym_DOT] = ACTIONS(8992), + [anon_sym_BANG] = ACTIONS(8994), + [aux_sym__attribute_identifier_token1] = ACTIONS(8992), + [aux_sym_option_statement_token3] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8992), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8992), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8992), + [aux_sym_preprocessor_const_token1] = ACTIONS(8992), + [sym_static_modifier] = ACTIONS(8992), + [sym__dim_keyword] = ACTIONS(8992), + [sym__redim_keyword] = ACTIONS(8992), + [aux_sym_get_accessor_token1] = ACTIONS(8992), + [aux_sym_set_accessor_token1] = ACTIONS(8992), + [aux_sym_const_declaration_token1] = ACTIONS(8992), + [anon_sym_LPAREN] = ACTIONS(8994), + [aux_sym_as_type_clause_token2] = ACTIONS(8992), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8992), + [aux_sym_visibility_token1] = ACTIONS(8992), + [aux_sym_visibility_token2] = ACTIONS(8992), + [aux_sym_elseif_fragment_token1] = ACTIONS(8992), + [aux_sym_else_fragment_token1] = ACTIONS(8992), + [aux_sym_select_statement_token1] = ACTIONS(8992), + [aux_sym__for_header_token1] = ACTIONS(8992), + [aux_sym_do_statement_token1] = ACTIONS(8992), + [aux_sym_do_condition_token1] = ACTIONS(8992), + [aux_sym_with_statement_token1] = ACTIONS(8992), + [aux_sym_exit_statement_token1] = ACTIONS(8992), + [sym_end_statement] = ACTIONS(8994), + [aux_sym_on_goto_statement_token1] = ACTIONS(8992), + [aux_sym_on_goto_statement_token2] = ACTIONS(8992), + [aux_sym_on_error_statement_token2] = ACTIONS(8992), + [sym__ambiguous_redim_statement] = ACTIONS(8994), + [aux_sym_erase_statement_token1] = ACTIONS(8992), + [aux_sym_open_statement_token1] = ACTIONS(8992), + [aux_sym_file_mode_token2] = ACTIONS(8992), + [aux_sym_file_access_token2] = ACTIONS(8992), + [aux_sym_file_lock_token2] = ACTIONS(8992), + [aux_sym_print_statement_token1] = ACTIONS(8992), + [anon_sym_PLUS] = ACTIONS(8994), + [anon_sym_DASH] = ACTIONS(8992), + [anon_sym_QMARK] = ACTIONS(8994), + [aux_sym_close_statement_token1] = ACTIONS(8992), + [aux_sym_put_statement_token1] = ACTIONS(8992), + [aux_sym_unlock_statement_token1] = ACTIONS(8992), + [aux_sym_seek_statement_token1] = ACTIONS(8992), + [sym_reset_statement] = ACTIONS(8992), + [aux_sym_raise_event_statement_token1] = ACTIONS(8992), + [sym_stop_statement] = ACTIONS(8992), + [sym_beep_statement] = ACTIONS(8992), + [aux_sym_unload_statement_token1] = ACTIONS(8992), + [aux_sym_def_type_statement_token1] = ACTIONS(8992), + [aux_sym_def_type_statement_token2] = ACTIONS(8992), + [aux_sym_def_type_statement_token3] = ACTIONS(8992), + [aux_sym_def_type_statement_token4] = ACTIONS(8992), + [aux_sym_def_type_statement_token5] = ACTIONS(8992), + [aux_sym_def_type_statement_token6] = ACTIONS(8992), + [aux_sym_def_type_statement_token7] = ACTIONS(8992), + [aux_sym_def_type_statement_token8] = ACTIONS(8992), + [aux_sym_def_type_statement_token9] = ACTIONS(8992), + [aux_sym_def_type_statement_token10] = ACTIONS(8992), + [aux_sym_def_type_statement_token11] = ACTIONS(8992), + [aux_sym_def_type_statement_token12] = ACTIONS(8992), + [aux_sym_def_type_statement_token13] = ACTIONS(8992), + [aux_sym_def_type_statement_token14] = ACTIONS(8992), + [aux_sym_call_statement_token1] = ACTIONS(8992), + [sym__ambiguous_call_statement] = ACTIONS(8992), + [aux_sym_addressof_expression_token1] = ACTIONS(8992), + [aux_sym_type_of_expression_token1] = ACTIONS(8992), + [aux_sym_unary_expression_token1] = ACTIONS(8992), + [sym_string_literal] = ACTIONS(8994), + [sym_number_literal] = ACTIONS(8994), + [aux_sym_boolean_literal_token1] = ACTIONS(8992), + [aux_sym_boolean_literal_token2] = ACTIONS(8992), + [sym_nothing_literal] = ACTIONS(8992), + [sym_null_literal] = ACTIONS(8992), + [sym_empty_literal] = ACTIONS(8992), + [sym_date_literal] = ACTIONS(8994), + [anon_sym_POUND] = ACTIONS(8992), + }, + [STATE(5569)] = { + [sym_identifier] = ACTIONS(8996), + [sym_newline] = ACTIONS(8998), + [anon_sym_COLON] = ACTIONS(8998), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8996), + [aux_sym_frm_property_statement_token1] = ACTIONS(8996), + [anon_sym_DOT] = ACTIONS(8996), + [anon_sym_BANG] = ACTIONS(8998), + [aux_sym__attribute_identifier_token1] = ACTIONS(8996), + [aux_sym_option_statement_token3] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8996), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8996), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8996), + [aux_sym_preprocessor_const_token1] = ACTIONS(8996), + [sym_static_modifier] = ACTIONS(8996), + [sym__dim_keyword] = ACTIONS(8996), + [sym__redim_keyword] = ACTIONS(8996), + [aux_sym_get_accessor_token1] = ACTIONS(8996), + [aux_sym_set_accessor_token1] = ACTIONS(8996), + [aux_sym_const_declaration_token1] = ACTIONS(8996), + [anon_sym_LPAREN] = ACTIONS(8998), + [aux_sym_as_type_clause_token2] = ACTIONS(8996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8996), + [aux_sym_visibility_token1] = ACTIONS(8996), + [aux_sym_visibility_token2] = ACTIONS(8996), + [aux_sym_elseif_fragment_token1] = ACTIONS(8996), + [aux_sym_else_fragment_token1] = ACTIONS(8996), + [aux_sym_select_statement_token1] = ACTIONS(8996), + [aux_sym__for_header_token1] = ACTIONS(8996), + [aux_sym_do_statement_token1] = ACTIONS(8996), + [aux_sym_do_condition_token1] = ACTIONS(8996), + [aux_sym_with_statement_token1] = ACTIONS(8996), + [aux_sym_exit_statement_token1] = ACTIONS(8996), + [sym_end_statement] = ACTIONS(8998), + [aux_sym_on_goto_statement_token1] = ACTIONS(8996), + [aux_sym_on_goto_statement_token2] = ACTIONS(8996), + [aux_sym_on_error_statement_token2] = ACTIONS(8996), + [sym__ambiguous_redim_statement] = ACTIONS(8998), + [aux_sym_erase_statement_token1] = ACTIONS(8996), + [aux_sym_open_statement_token1] = ACTIONS(8996), + [aux_sym_file_mode_token2] = ACTIONS(8996), + [aux_sym_file_access_token2] = ACTIONS(8996), + [aux_sym_file_lock_token2] = ACTIONS(8996), + [aux_sym_print_statement_token1] = ACTIONS(8996), + [anon_sym_PLUS] = ACTIONS(8998), + [anon_sym_DASH] = ACTIONS(8996), + [anon_sym_QMARK] = ACTIONS(8998), + [aux_sym_close_statement_token1] = ACTIONS(8996), + [aux_sym_put_statement_token1] = ACTIONS(8996), + [aux_sym_unlock_statement_token1] = ACTIONS(8996), + [aux_sym_seek_statement_token1] = ACTIONS(8996), + [sym_reset_statement] = ACTIONS(8996), + [aux_sym_raise_event_statement_token1] = ACTIONS(8996), + [sym_stop_statement] = ACTIONS(8996), + [sym_beep_statement] = ACTIONS(8996), + [aux_sym_unload_statement_token1] = ACTIONS(8996), + [aux_sym_def_type_statement_token1] = ACTIONS(8996), + [aux_sym_def_type_statement_token2] = ACTIONS(8996), + [aux_sym_def_type_statement_token3] = ACTIONS(8996), + [aux_sym_def_type_statement_token4] = ACTIONS(8996), + [aux_sym_def_type_statement_token5] = ACTIONS(8996), + [aux_sym_def_type_statement_token6] = ACTIONS(8996), + [aux_sym_def_type_statement_token7] = ACTIONS(8996), + [aux_sym_def_type_statement_token8] = ACTIONS(8996), + [aux_sym_def_type_statement_token9] = ACTIONS(8996), + [aux_sym_def_type_statement_token10] = ACTIONS(8996), + [aux_sym_def_type_statement_token11] = ACTIONS(8996), + [aux_sym_def_type_statement_token12] = ACTIONS(8996), + [aux_sym_def_type_statement_token13] = ACTIONS(8996), + [aux_sym_def_type_statement_token14] = ACTIONS(8996), + [aux_sym_call_statement_token1] = ACTIONS(8996), + [sym__ambiguous_call_statement] = ACTIONS(8996), + [aux_sym_addressof_expression_token1] = ACTIONS(8996), + [aux_sym_type_of_expression_token1] = ACTIONS(8996), + [aux_sym_unary_expression_token1] = ACTIONS(8996), + [sym_string_literal] = ACTIONS(8998), + [sym_number_literal] = ACTIONS(8998), + [aux_sym_boolean_literal_token1] = ACTIONS(8996), + [aux_sym_boolean_literal_token2] = ACTIONS(8996), + [sym_nothing_literal] = ACTIONS(8996), + [sym_null_literal] = ACTIONS(8996), + [sym_empty_literal] = ACTIONS(8996), + [sym_date_literal] = ACTIONS(8998), + [anon_sym_POUND] = ACTIONS(8996), + }, + [STATE(5570)] = { + [sym_identifier] = ACTIONS(9000), + [sym_newline] = ACTIONS(9002), + [anon_sym_COLON] = ACTIONS(9002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9000), + [aux_sym_frm_property_statement_token1] = ACTIONS(9000), + [anon_sym_DOT] = ACTIONS(9000), + [anon_sym_BANG] = ACTIONS(9002), + [aux_sym__attribute_identifier_token1] = ACTIONS(9000), + [aux_sym_option_statement_token3] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9000), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9000), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9000), + [aux_sym_preprocessor_const_token1] = ACTIONS(9000), + [sym_static_modifier] = ACTIONS(9000), + [sym__dim_keyword] = ACTIONS(9000), + [sym__redim_keyword] = ACTIONS(9000), + [aux_sym_get_accessor_token1] = ACTIONS(9000), + [aux_sym_set_accessor_token1] = ACTIONS(9000), + [aux_sym_const_declaration_token1] = ACTIONS(9000), + [anon_sym_LPAREN] = ACTIONS(9002), + [aux_sym_as_type_clause_token2] = ACTIONS(9000), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9000), + [aux_sym_visibility_token1] = ACTIONS(9000), + [aux_sym_visibility_token2] = ACTIONS(9000), + [aux_sym_elseif_fragment_token1] = ACTIONS(9000), + [aux_sym_else_fragment_token1] = ACTIONS(9000), + [aux_sym_select_statement_token1] = ACTIONS(9000), + [aux_sym__for_header_token1] = ACTIONS(9000), + [aux_sym_do_statement_token1] = ACTIONS(9000), + [aux_sym_do_condition_token1] = ACTIONS(9000), + [aux_sym_with_statement_token1] = ACTIONS(9000), + [aux_sym_exit_statement_token1] = ACTIONS(9000), + [sym_end_statement] = ACTIONS(9002), + [aux_sym_on_goto_statement_token1] = ACTIONS(9000), + [aux_sym_on_goto_statement_token2] = ACTIONS(9000), + [aux_sym_on_error_statement_token2] = ACTIONS(9000), + [sym__ambiguous_redim_statement] = ACTIONS(9002), + [aux_sym_erase_statement_token1] = ACTIONS(9000), + [aux_sym_open_statement_token1] = ACTIONS(9000), + [aux_sym_file_mode_token2] = ACTIONS(9000), + [aux_sym_file_access_token2] = ACTIONS(9000), + [aux_sym_file_lock_token2] = ACTIONS(9000), + [aux_sym_print_statement_token1] = ACTIONS(9000), + [anon_sym_PLUS] = ACTIONS(9002), + [anon_sym_DASH] = ACTIONS(9000), + [anon_sym_QMARK] = ACTIONS(9002), + [aux_sym_close_statement_token1] = ACTIONS(9000), + [aux_sym_put_statement_token1] = ACTIONS(9000), + [aux_sym_unlock_statement_token1] = ACTIONS(9000), + [aux_sym_seek_statement_token1] = ACTIONS(9000), + [sym_reset_statement] = ACTIONS(9000), + [aux_sym_raise_event_statement_token1] = ACTIONS(9000), + [sym_stop_statement] = ACTIONS(9000), + [sym_beep_statement] = ACTIONS(9000), + [aux_sym_unload_statement_token1] = ACTIONS(9000), + [aux_sym_def_type_statement_token1] = ACTIONS(9000), + [aux_sym_def_type_statement_token2] = ACTIONS(9000), + [aux_sym_def_type_statement_token3] = ACTIONS(9000), + [aux_sym_def_type_statement_token4] = ACTIONS(9000), + [aux_sym_def_type_statement_token5] = ACTIONS(9000), + [aux_sym_def_type_statement_token6] = ACTIONS(9000), + [aux_sym_def_type_statement_token7] = ACTIONS(9000), + [aux_sym_def_type_statement_token8] = ACTIONS(9000), + [aux_sym_def_type_statement_token9] = ACTIONS(9000), + [aux_sym_def_type_statement_token10] = ACTIONS(9000), + [aux_sym_def_type_statement_token11] = ACTIONS(9000), + [aux_sym_def_type_statement_token12] = ACTIONS(9000), + [aux_sym_def_type_statement_token13] = ACTIONS(9000), + [aux_sym_def_type_statement_token14] = ACTIONS(9000), + [aux_sym_call_statement_token1] = ACTIONS(9000), + [sym__ambiguous_call_statement] = ACTIONS(9000), + [aux_sym_addressof_expression_token1] = ACTIONS(9000), + [aux_sym_type_of_expression_token1] = ACTIONS(9000), + [aux_sym_unary_expression_token1] = ACTIONS(9000), + [sym_string_literal] = ACTIONS(9002), + [sym_number_literal] = ACTIONS(9002), + [aux_sym_boolean_literal_token1] = ACTIONS(9000), + [aux_sym_boolean_literal_token2] = ACTIONS(9000), + [sym_nothing_literal] = ACTIONS(9000), + [sym_null_literal] = ACTIONS(9000), + [sym_empty_literal] = ACTIONS(9000), + [sym_date_literal] = ACTIONS(9002), + [anon_sym_POUND] = ACTIONS(9000), + }, + [STATE(5571)] = { + [sym_identifier] = ACTIONS(9004), + [sym_newline] = ACTIONS(9006), + [anon_sym_COLON] = ACTIONS(9006), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9004), + [aux_sym_frm_property_statement_token1] = ACTIONS(9004), + [anon_sym_DOT] = ACTIONS(9004), + [anon_sym_BANG] = ACTIONS(9006), + [aux_sym__attribute_identifier_token1] = ACTIONS(9004), + [aux_sym_option_statement_token3] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9004), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9004), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9004), + [aux_sym_preprocessor_const_token1] = ACTIONS(9004), + [sym_static_modifier] = ACTIONS(9004), + [sym__dim_keyword] = ACTIONS(9004), + [sym__redim_keyword] = ACTIONS(9004), + [aux_sym_get_accessor_token1] = ACTIONS(9004), + [aux_sym_set_accessor_token1] = ACTIONS(9004), + [aux_sym_const_declaration_token1] = ACTIONS(9004), + [anon_sym_LPAREN] = ACTIONS(9006), + [aux_sym_as_type_clause_token2] = ACTIONS(9004), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9004), + [aux_sym_visibility_token1] = ACTIONS(9004), + [aux_sym_visibility_token2] = ACTIONS(9004), + [aux_sym_elseif_fragment_token1] = ACTIONS(9004), + [aux_sym_else_fragment_token1] = ACTIONS(9004), + [aux_sym_select_statement_token1] = ACTIONS(9004), + [aux_sym__for_header_token1] = ACTIONS(9004), + [aux_sym_do_statement_token1] = ACTIONS(9004), + [aux_sym_do_condition_token1] = ACTIONS(9004), + [aux_sym_with_statement_token1] = ACTIONS(9004), + [aux_sym_exit_statement_token1] = ACTIONS(9004), + [sym_end_statement] = ACTIONS(9006), + [aux_sym_on_goto_statement_token1] = ACTIONS(9004), + [aux_sym_on_goto_statement_token2] = ACTIONS(9004), + [aux_sym_on_error_statement_token2] = ACTIONS(9004), + [sym__ambiguous_redim_statement] = ACTIONS(9006), + [aux_sym_erase_statement_token1] = ACTIONS(9004), + [aux_sym_open_statement_token1] = ACTIONS(9004), + [aux_sym_file_mode_token2] = ACTIONS(9004), + [aux_sym_file_access_token2] = ACTIONS(9004), + [aux_sym_file_lock_token2] = ACTIONS(9004), + [aux_sym_print_statement_token1] = ACTIONS(9004), + [anon_sym_PLUS] = ACTIONS(9006), + [anon_sym_DASH] = ACTIONS(9004), + [anon_sym_QMARK] = ACTIONS(9006), + [aux_sym_close_statement_token1] = ACTIONS(9004), + [aux_sym_put_statement_token1] = ACTIONS(9004), + [aux_sym_unlock_statement_token1] = ACTIONS(9004), + [aux_sym_seek_statement_token1] = ACTIONS(9004), + [sym_reset_statement] = ACTIONS(9004), + [aux_sym_raise_event_statement_token1] = ACTIONS(9004), + [sym_stop_statement] = ACTIONS(9004), + [sym_beep_statement] = ACTIONS(9004), + [aux_sym_unload_statement_token1] = ACTIONS(9004), + [aux_sym_def_type_statement_token1] = ACTIONS(9004), + [aux_sym_def_type_statement_token2] = ACTIONS(9004), + [aux_sym_def_type_statement_token3] = ACTIONS(9004), + [aux_sym_def_type_statement_token4] = ACTIONS(9004), + [aux_sym_def_type_statement_token5] = ACTIONS(9004), + [aux_sym_def_type_statement_token6] = ACTIONS(9004), + [aux_sym_def_type_statement_token7] = ACTIONS(9004), + [aux_sym_def_type_statement_token8] = ACTIONS(9004), + [aux_sym_def_type_statement_token9] = ACTIONS(9004), + [aux_sym_def_type_statement_token10] = ACTIONS(9004), + [aux_sym_def_type_statement_token11] = ACTIONS(9004), + [aux_sym_def_type_statement_token12] = ACTIONS(9004), + [aux_sym_def_type_statement_token13] = ACTIONS(9004), + [aux_sym_def_type_statement_token14] = ACTIONS(9004), + [aux_sym_call_statement_token1] = ACTIONS(9004), + [sym__ambiguous_call_statement] = ACTIONS(9004), + [aux_sym_addressof_expression_token1] = ACTIONS(9004), + [aux_sym_type_of_expression_token1] = ACTIONS(9004), + [aux_sym_unary_expression_token1] = ACTIONS(9004), + [sym_string_literal] = ACTIONS(9006), + [sym_number_literal] = ACTIONS(9006), + [aux_sym_boolean_literal_token1] = ACTIONS(9004), + [aux_sym_boolean_literal_token2] = ACTIONS(9004), + [sym_nothing_literal] = ACTIONS(9004), + [sym_null_literal] = ACTIONS(9004), + [sym_empty_literal] = ACTIONS(9004), + [sym_date_literal] = ACTIONS(9006), + [anon_sym_POUND] = ACTIONS(9004), + }, + [STATE(5572)] = { + [sym_identifier] = ACTIONS(8162), + [sym_newline] = ACTIONS(8164), + [anon_sym_COLON] = ACTIONS(8164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8162), + [aux_sym_frm_property_statement_token1] = ACTIONS(8162), + [anon_sym_DOT] = ACTIONS(8162), + [anon_sym_BANG] = ACTIONS(8164), + [aux_sym__attribute_identifier_token1] = ACTIONS(8162), + [aux_sym_option_statement_token3] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8162), + [aux_sym_preprocessor_const_token1] = ACTIONS(8162), + [sym_static_modifier] = ACTIONS(8162), + [sym__dim_keyword] = ACTIONS(8162), + [sym__redim_keyword] = ACTIONS(8162), + [aux_sym_get_accessor_token1] = ACTIONS(8162), + [aux_sym_set_accessor_token1] = ACTIONS(8162), + [anon_sym_COMMA] = ACTIONS(8164), + [aux_sym_const_declaration_token1] = ACTIONS(8162), + [anon_sym_LPAREN] = ACTIONS(8164), + [aux_sym_as_type_clause_token2] = ACTIONS(8162), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8162), + [aux_sym_visibility_token1] = ACTIONS(8162), + [aux_sym_visibility_token2] = ACTIONS(8162), + [aux_sym_elseif_fragment_token1] = ACTIONS(8162), + [aux_sym_else_fragment_token1] = ACTIONS(8162), + [aux_sym_select_statement_token1] = ACTIONS(8162), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8162), + [aux_sym__for_header_token1] = ACTIONS(8162), + [aux_sym_do_statement_token1] = ACTIONS(8162), + [aux_sym_do_condition_token1] = ACTIONS(8162), + [aux_sym_with_statement_token1] = ACTIONS(8162), + [aux_sym_exit_statement_token1] = ACTIONS(8162), + [sym_end_statement] = ACTIONS(8164), + [aux_sym_on_goto_statement_token1] = ACTIONS(8162), + [aux_sym_on_goto_statement_token2] = ACTIONS(8162), + [aux_sym_on_error_statement_token2] = ACTIONS(8162), + [sym__ambiguous_redim_statement] = ACTIONS(8164), + [aux_sym_erase_statement_token1] = ACTIONS(8162), + [aux_sym_open_statement_token1] = ACTIONS(8162), + [aux_sym_file_mode_token2] = ACTIONS(8162), + [aux_sym_file_access_token2] = ACTIONS(8162), + [aux_sym_file_lock_token2] = ACTIONS(8162), + [aux_sym_print_statement_token1] = ACTIONS(8162), + [anon_sym_PLUS] = ACTIONS(8164), + [anon_sym_DASH] = ACTIONS(8162), + [anon_sym_SEMI] = ACTIONS(8164), + [anon_sym_QMARK] = ACTIONS(8164), + [aux_sym_close_statement_token1] = ACTIONS(8162), + [aux_sym_put_statement_token1] = ACTIONS(8162), + [aux_sym_unlock_statement_token1] = ACTIONS(8162), + [aux_sym_seek_statement_token1] = ACTIONS(8162), + [sym_reset_statement] = ACTIONS(8162), + [aux_sym_raise_event_statement_token1] = ACTIONS(8162), + [sym_stop_statement] = ACTIONS(8162), + [sym_beep_statement] = ACTIONS(8162), + [aux_sym_unload_statement_token1] = ACTIONS(8162), + [aux_sym_def_type_statement_token1] = ACTIONS(8162), + [aux_sym_def_type_statement_token2] = ACTIONS(8162), + [aux_sym_def_type_statement_token3] = ACTIONS(8162), + [aux_sym_def_type_statement_token4] = ACTIONS(8162), + [aux_sym_def_type_statement_token5] = ACTIONS(8162), + [aux_sym_def_type_statement_token6] = ACTIONS(8162), + [aux_sym_def_type_statement_token7] = ACTIONS(8162), + [aux_sym_def_type_statement_token8] = ACTIONS(8162), + [aux_sym_def_type_statement_token9] = ACTIONS(8162), + [aux_sym_def_type_statement_token10] = ACTIONS(8162), + [aux_sym_def_type_statement_token11] = ACTIONS(8162), + [aux_sym_def_type_statement_token12] = ACTIONS(8162), + [aux_sym_def_type_statement_token13] = ACTIONS(8162), + [aux_sym_def_type_statement_token14] = ACTIONS(8162), + [aux_sym_call_statement_token1] = ACTIONS(8162), + [sym__ambiguous_call_statement] = ACTIONS(8162), + [aux_sym_addressof_expression_token1] = ACTIONS(8162), + [aux_sym_type_of_expression_token1] = ACTIONS(8162), + [aux_sym_unary_expression_token1] = ACTIONS(8162), + [sym_string_literal] = ACTIONS(8164), + [sym_number_literal] = ACTIONS(8164), + [aux_sym_boolean_literal_token1] = ACTIONS(8162), + [aux_sym_boolean_literal_token2] = ACTIONS(8162), + [sym_nothing_literal] = ACTIONS(8162), + [sym_null_literal] = ACTIONS(8162), + [sym_empty_literal] = ACTIONS(8162), + [sym_date_literal] = ACTIONS(8164), + [anon_sym_POUND] = ACTIONS(8162), + }, + [STATE(5573)] = { + [aux_sym__argument_sequence_repeat1] = STATE(5573), + [sym_identifier] = ACTIONS(8533), + [sym_newline] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(8535), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8533), + [aux_sym_frm_property_statement_token1] = ACTIONS(8533), + [anon_sym_DOT] = ACTIONS(8533), + [anon_sym_BANG] = ACTIONS(8535), + [aux_sym__attribute_identifier_token1] = ACTIONS(8533), + [aux_sym_option_statement_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8533), + [aux_sym_preprocessor_const_token1] = ACTIONS(8533), + [sym_static_modifier] = ACTIONS(8533), + [sym__dim_keyword] = ACTIONS(8533), + [sym__redim_keyword] = ACTIONS(8533), + [aux_sym_get_accessor_token1] = ACTIONS(8533), + [aux_sym_set_accessor_token1] = ACTIONS(8533), + [anon_sym_COMMA] = ACTIONS(10741), + [aux_sym_const_declaration_token1] = ACTIONS(8533), + [anon_sym_LPAREN] = ACTIONS(8535), + [aux_sym_as_type_clause_token2] = ACTIONS(8533), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8533), + [aux_sym_visibility_token1] = ACTIONS(8533), + [aux_sym_visibility_token2] = ACTIONS(8533), + [aux_sym_elseif_fragment_token1] = ACTIONS(8533), + [aux_sym_else_fragment_token1] = ACTIONS(8533), + [aux_sym_select_statement_token1] = ACTIONS(8533), + [aux_sym__for_header_token1] = ACTIONS(8533), + [aux_sym_do_statement_token1] = ACTIONS(8533), + [aux_sym_do_statement_token2] = ACTIONS(8533), + [aux_sym_do_condition_token1] = ACTIONS(8533), + [aux_sym_with_statement_token1] = ACTIONS(8533), + [aux_sym_exit_statement_token1] = ACTIONS(8533), + [sym_end_statement] = ACTIONS(8535), + [aux_sym_on_goto_statement_token1] = ACTIONS(8533), + [aux_sym_on_goto_statement_token2] = ACTIONS(8533), + [aux_sym_on_error_statement_token2] = ACTIONS(8533), + [sym__ambiguous_redim_statement] = ACTIONS(8535), + [aux_sym_erase_statement_token1] = ACTIONS(8533), + [aux_sym_open_statement_token1] = ACTIONS(8533), + [aux_sym_file_mode_token2] = ACTIONS(8533), + [aux_sym_file_access_token2] = ACTIONS(8533), + [aux_sym_file_lock_token2] = ACTIONS(8533), + [aux_sym_print_statement_token1] = ACTIONS(8533), + [anon_sym_PLUS] = ACTIONS(8535), + [anon_sym_DASH] = ACTIONS(8533), + [anon_sym_QMARK] = ACTIONS(8535), + [aux_sym_close_statement_token1] = ACTIONS(8533), + [aux_sym_put_statement_token1] = ACTIONS(8533), + [aux_sym_unlock_statement_token1] = ACTIONS(8533), + [aux_sym_seek_statement_token1] = ACTIONS(8533), + [sym_reset_statement] = ACTIONS(8533), + [aux_sym_raise_event_statement_token1] = ACTIONS(8533), + [sym_stop_statement] = ACTIONS(8533), + [sym_beep_statement] = ACTIONS(8533), + [aux_sym_unload_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token2] = ACTIONS(8533), + [aux_sym_def_type_statement_token3] = ACTIONS(8533), + [aux_sym_def_type_statement_token4] = ACTIONS(8533), + [aux_sym_def_type_statement_token5] = ACTIONS(8533), + [aux_sym_def_type_statement_token6] = ACTIONS(8533), + [aux_sym_def_type_statement_token7] = ACTIONS(8533), + [aux_sym_def_type_statement_token8] = ACTIONS(8533), + [aux_sym_def_type_statement_token9] = ACTIONS(8533), + [aux_sym_def_type_statement_token10] = ACTIONS(8533), + [aux_sym_def_type_statement_token11] = ACTIONS(8533), + [aux_sym_def_type_statement_token12] = ACTIONS(8533), + [aux_sym_def_type_statement_token13] = ACTIONS(8533), + [aux_sym_def_type_statement_token14] = ACTIONS(8533), + [aux_sym_call_statement_token1] = ACTIONS(8533), + [sym__ambiguous_call_statement] = ACTIONS(8533), + [aux_sym_addressof_expression_token1] = ACTIONS(8533), + [aux_sym_type_of_expression_token1] = ACTIONS(8533), + [aux_sym_unary_expression_token1] = ACTIONS(8533), + [sym_string_literal] = ACTIONS(8535), + [sym_number_literal] = ACTIONS(8535), + [aux_sym_boolean_literal_token1] = ACTIONS(8533), + [aux_sym_boolean_literal_token2] = ACTIONS(8533), + [sym_nothing_literal] = ACTIONS(8533), + [sym_null_literal] = ACTIONS(8533), + [sym_empty_literal] = ACTIONS(8533), + [sym_date_literal] = ACTIONS(8535), + [anon_sym_POUND] = ACTIONS(8533), + }, + [STATE(5574)] = { + [sym_identifier] = ACTIONS(9264), + [sym_newline] = ACTIONS(9266), + [anon_sym_COLON] = ACTIONS(9266), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9264), + [aux_sym_frm_property_statement_token1] = ACTIONS(9264), + [anon_sym_DOT] = ACTIONS(9264), + [anon_sym_BANG] = ACTIONS(9266), + [aux_sym__attribute_identifier_token1] = ACTIONS(9264), + [aux_sym_option_statement_token3] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9264), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9264), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9264), + [aux_sym_preprocessor_const_token1] = ACTIONS(9264), + [sym_static_modifier] = ACTIONS(9264), + [sym__dim_keyword] = ACTIONS(9264), + [sym__redim_keyword] = ACTIONS(9264), + [aux_sym_get_accessor_token1] = ACTIONS(9264), + [aux_sym_set_accessor_token1] = ACTIONS(9264), + [aux_sym_const_declaration_token1] = ACTIONS(9264), + [anon_sym_LPAREN] = ACTIONS(9266), + [aux_sym_as_type_clause_token2] = ACTIONS(9264), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9264), + [aux_sym_visibility_token1] = ACTIONS(9264), + [aux_sym_visibility_token2] = ACTIONS(9264), + [aux_sym_elseif_fragment_token1] = ACTIONS(9264), + [aux_sym_else_fragment_token1] = ACTIONS(9264), + [aux_sym_select_statement_token1] = ACTIONS(9264), + [aux_sym__for_header_token1] = ACTIONS(9264), + [aux_sym_do_statement_token1] = ACTIONS(9264), + [aux_sym_do_condition_token1] = ACTIONS(9264), + [aux_sym_with_statement_token1] = ACTIONS(9264), + [aux_sym_exit_statement_token1] = ACTIONS(9264), + [sym_end_statement] = ACTIONS(9266), + [aux_sym_on_goto_statement_token1] = ACTIONS(9264), + [aux_sym_on_goto_statement_token2] = ACTIONS(9264), + [aux_sym_on_error_statement_token2] = ACTIONS(9264), + [sym__ambiguous_redim_statement] = ACTIONS(9266), + [aux_sym_erase_statement_token1] = ACTIONS(9264), + [aux_sym_open_statement_token1] = ACTIONS(9264), + [aux_sym_file_mode_token2] = ACTIONS(9264), + [aux_sym_file_access_token2] = ACTIONS(9264), + [aux_sym_file_lock_token2] = ACTIONS(9264), + [aux_sym_print_statement_token1] = ACTIONS(9264), + [anon_sym_PLUS] = ACTIONS(9266), + [anon_sym_DASH] = ACTIONS(9264), + [anon_sym_QMARK] = ACTIONS(9266), + [aux_sym_close_statement_token1] = ACTIONS(9264), + [aux_sym_put_statement_token1] = ACTIONS(9264), + [aux_sym_unlock_statement_token1] = ACTIONS(9264), + [aux_sym_seek_statement_token1] = ACTIONS(9264), + [sym_reset_statement] = ACTIONS(9264), + [aux_sym_raise_event_statement_token1] = ACTIONS(9264), + [sym_stop_statement] = ACTIONS(9264), + [sym_beep_statement] = ACTIONS(9264), + [aux_sym_unload_statement_token1] = ACTIONS(9264), + [aux_sym_def_type_statement_token1] = ACTIONS(9264), + [aux_sym_def_type_statement_token2] = ACTIONS(9264), + [aux_sym_def_type_statement_token3] = ACTIONS(9264), + [aux_sym_def_type_statement_token4] = ACTIONS(9264), + [aux_sym_def_type_statement_token5] = ACTIONS(9264), + [aux_sym_def_type_statement_token6] = ACTIONS(9264), + [aux_sym_def_type_statement_token7] = ACTIONS(9264), + [aux_sym_def_type_statement_token8] = ACTIONS(9264), + [aux_sym_def_type_statement_token9] = ACTIONS(9264), + [aux_sym_def_type_statement_token10] = ACTIONS(9264), + [aux_sym_def_type_statement_token11] = ACTIONS(9264), + [aux_sym_def_type_statement_token12] = ACTIONS(9264), + [aux_sym_def_type_statement_token13] = ACTIONS(9264), + [aux_sym_def_type_statement_token14] = ACTIONS(9264), + [aux_sym_call_statement_token1] = ACTIONS(9264), + [sym__ambiguous_call_statement] = ACTIONS(9264), + [aux_sym_addressof_expression_token1] = ACTIONS(9264), + [aux_sym_type_of_expression_token1] = ACTIONS(9264), + [aux_sym_unary_expression_token1] = ACTIONS(9264), + [sym_string_literal] = ACTIONS(9266), + [sym_number_literal] = ACTIONS(9266), + [aux_sym_boolean_literal_token1] = ACTIONS(9264), + [aux_sym_boolean_literal_token2] = ACTIONS(9264), + [sym_nothing_literal] = ACTIONS(9264), + [sym_null_literal] = ACTIONS(9264), + [sym_empty_literal] = ACTIONS(9264), + [sym_date_literal] = ACTIONS(9266), + [anon_sym_POUND] = ACTIONS(9264), + }, + [STATE(5575)] = { + [sym_do_condition] = STATE(6914), + [sym_identifier] = ACTIONS(8517), + [sym_newline] = ACTIONS(8519), + [anon_sym_COLON] = ACTIONS(8519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8517), + [aux_sym_frm_property_statement_token1] = ACTIONS(8517), + [anon_sym_DOT] = ACTIONS(8517), + [anon_sym_BANG] = ACTIONS(8519), + [aux_sym__attribute_identifier_token1] = ACTIONS(8517), + [aux_sym_option_statement_token3] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8517), + [aux_sym_preprocessor_const_token1] = ACTIONS(8517), + [sym_static_modifier] = ACTIONS(8517), + [sym__dim_keyword] = ACTIONS(8517), + [sym__redim_keyword] = ACTIONS(8517), + [aux_sym_get_accessor_token1] = ACTIONS(8517), + [aux_sym_set_accessor_token1] = ACTIONS(8517), + [aux_sym_const_declaration_token1] = ACTIONS(8517), + [anon_sym_LPAREN] = ACTIONS(8519), + [aux_sym_as_type_clause_token2] = ACTIONS(8517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8517), + [aux_sym_visibility_token1] = ACTIONS(8517), + [aux_sym_visibility_token2] = ACTIONS(8517), + [aux_sym_elseif_fragment_token1] = ACTIONS(8517), + [aux_sym_else_fragment_token1] = ACTIONS(8517), + [aux_sym_select_statement_token1] = ACTIONS(8517), + [aux_sym__for_header_token1] = ACTIONS(8517), + [aux_sym_do_statement_token1] = ACTIONS(8517), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8517), + [aux_sym_exit_statement_token1] = ACTIONS(8517), + [sym_end_statement] = ACTIONS(8519), + [aux_sym_on_goto_statement_token1] = ACTIONS(8517), + [aux_sym_on_goto_statement_token2] = ACTIONS(8517), + [aux_sym_on_error_statement_token2] = ACTIONS(8517), + [sym__ambiguous_redim_statement] = ACTIONS(8519), + [aux_sym_erase_statement_token1] = ACTIONS(8517), + [aux_sym_open_statement_token1] = ACTIONS(8517), + [aux_sym_file_mode_token2] = ACTIONS(8517), + [aux_sym_file_access_token2] = ACTIONS(8517), + [aux_sym_file_lock_token2] = ACTIONS(8517), + [aux_sym_print_statement_token1] = ACTIONS(8517), + [anon_sym_PLUS] = ACTIONS(8519), + [anon_sym_DASH] = ACTIONS(8517), + [anon_sym_QMARK] = ACTIONS(8519), + [aux_sym_close_statement_token1] = ACTIONS(8517), + [aux_sym_put_statement_token1] = ACTIONS(8517), + [aux_sym_unlock_statement_token1] = ACTIONS(8517), + [aux_sym_seek_statement_token1] = ACTIONS(8517), + [sym_reset_statement] = ACTIONS(8517), + [aux_sym_raise_event_statement_token1] = ACTIONS(8517), + [sym_stop_statement] = ACTIONS(8517), + [sym_beep_statement] = ACTIONS(8517), + [aux_sym_unload_statement_token1] = ACTIONS(8517), + [aux_sym_def_type_statement_token1] = ACTIONS(8517), + [aux_sym_def_type_statement_token2] = ACTIONS(8517), + [aux_sym_def_type_statement_token3] = ACTIONS(8517), + [aux_sym_def_type_statement_token4] = ACTIONS(8517), + [aux_sym_def_type_statement_token5] = ACTIONS(8517), + [aux_sym_def_type_statement_token6] = ACTIONS(8517), + [aux_sym_def_type_statement_token7] = ACTIONS(8517), + [aux_sym_def_type_statement_token8] = ACTIONS(8517), + [aux_sym_def_type_statement_token9] = ACTIONS(8517), + [aux_sym_def_type_statement_token10] = ACTIONS(8517), + [aux_sym_def_type_statement_token11] = ACTIONS(8517), + [aux_sym_def_type_statement_token12] = ACTIONS(8517), + [aux_sym_def_type_statement_token13] = ACTIONS(8517), + [aux_sym_def_type_statement_token14] = ACTIONS(8517), + [aux_sym_call_statement_token1] = ACTIONS(8517), + [sym__ambiguous_call_statement] = ACTIONS(8517), + [aux_sym_addressof_expression_token1] = ACTIONS(8517), + [aux_sym_type_of_expression_token1] = ACTIONS(8517), + [aux_sym_unary_expression_token1] = ACTIONS(8517), + [sym_string_literal] = ACTIONS(8519), + [sym_number_literal] = ACTIONS(8519), + [aux_sym_boolean_literal_token1] = ACTIONS(8517), + [aux_sym_boolean_literal_token2] = ACTIONS(8517), + [sym_nothing_literal] = ACTIONS(8517), + [sym_null_literal] = ACTIONS(8517), + [sym_empty_literal] = ACTIONS(8517), + [sym_date_literal] = ACTIONS(8519), + [anon_sym_POUND] = ACTIONS(8517), + }, + [STATE(5576)] = { + [sym_identifier] = ACTIONS(9268), + [sym_newline] = ACTIONS(9270), + [anon_sym_COLON] = ACTIONS(9270), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9268), + [aux_sym_frm_property_statement_token1] = ACTIONS(9268), + [anon_sym_DOT] = ACTIONS(9268), + [anon_sym_BANG] = ACTIONS(9270), + [aux_sym__attribute_identifier_token1] = ACTIONS(9268), + [aux_sym_option_statement_token3] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9268), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9268), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9268), + [aux_sym_preprocessor_const_token1] = ACTIONS(9268), + [sym_static_modifier] = ACTIONS(9268), + [sym__dim_keyword] = ACTIONS(9268), + [sym__redim_keyword] = ACTIONS(9268), + [aux_sym_get_accessor_token1] = ACTIONS(9268), + [aux_sym_set_accessor_token1] = ACTIONS(9268), + [aux_sym_const_declaration_token1] = ACTIONS(9268), + [anon_sym_LPAREN] = ACTIONS(9270), + [aux_sym_as_type_clause_token2] = ACTIONS(9268), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9268), + [aux_sym_visibility_token1] = ACTIONS(9268), + [aux_sym_visibility_token2] = ACTIONS(9268), + [aux_sym_elseif_fragment_token1] = ACTIONS(9268), + [aux_sym_else_fragment_token1] = ACTIONS(9268), + [aux_sym_select_statement_token1] = ACTIONS(9268), + [aux_sym__for_header_token1] = ACTIONS(9268), + [aux_sym_do_statement_token1] = ACTIONS(9268), + [aux_sym_do_condition_token1] = ACTIONS(9268), + [aux_sym_with_statement_token1] = ACTIONS(9268), + [aux_sym_exit_statement_token1] = ACTIONS(9268), + [sym_end_statement] = ACTIONS(9270), + [aux_sym_on_goto_statement_token1] = ACTIONS(9268), + [aux_sym_on_goto_statement_token2] = ACTIONS(9268), + [aux_sym_on_error_statement_token2] = ACTIONS(9268), + [sym__ambiguous_redim_statement] = ACTIONS(9270), + [aux_sym_erase_statement_token1] = ACTIONS(9268), + [aux_sym_open_statement_token1] = ACTIONS(9268), + [aux_sym_file_mode_token2] = ACTIONS(9268), + [aux_sym_file_access_token2] = ACTIONS(9268), + [aux_sym_file_lock_token2] = ACTIONS(9268), + [aux_sym_print_statement_token1] = ACTIONS(9268), + [anon_sym_PLUS] = ACTIONS(9270), + [anon_sym_DASH] = ACTIONS(9268), + [anon_sym_QMARK] = ACTIONS(9270), + [aux_sym_close_statement_token1] = ACTIONS(9268), + [aux_sym_put_statement_token1] = ACTIONS(9268), + [aux_sym_unlock_statement_token1] = ACTIONS(9268), + [aux_sym_seek_statement_token1] = ACTIONS(9268), + [sym_reset_statement] = ACTIONS(9268), + [aux_sym_raise_event_statement_token1] = ACTIONS(9268), + [sym_stop_statement] = ACTIONS(9268), + [sym_beep_statement] = ACTIONS(9268), + [aux_sym_unload_statement_token1] = ACTIONS(9268), + [aux_sym_def_type_statement_token1] = ACTIONS(9268), + [aux_sym_def_type_statement_token2] = ACTIONS(9268), + [aux_sym_def_type_statement_token3] = ACTIONS(9268), + [aux_sym_def_type_statement_token4] = ACTIONS(9268), + [aux_sym_def_type_statement_token5] = ACTIONS(9268), + [aux_sym_def_type_statement_token6] = ACTIONS(9268), + [aux_sym_def_type_statement_token7] = ACTIONS(9268), + [aux_sym_def_type_statement_token8] = ACTIONS(9268), + [aux_sym_def_type_statement_token9] = ACTIONS(9268), + [aux_sym_def_type_statement_token10] = ACTIONS(9268), + [aux_sym_def_type_statement_token11] = ACTIONS(9268), + [aux_sym_def_type_statement_token12] = ACTIONS(9268), + [aux_sym_def_type_statement_token13] = ACTIONS(9268), + [aux_sym_def_type_statement_token14] = ACTIONS(9268), + [aux_sym_call_statement_token1] = ACTIONS(9268), + [sym__ambiguous_call_statement] = ACTIONS(9268), + [aux_sym_addressof_expression_token1] = ACTIONS(9268), + [aux_sym_type_of_expression_token1] = ACTIONS(9268), + [aux_sym_unary_expression_token1] = ACTIONS(9268), + [sym_string_literal] = ACTIONS(9270), + [sym_number_literal] = ACTIONS(9270), + [aux_sym_boolean_literal_token1] = ACTIONS(9268), + [aux_sym_boolean_literal_token2] = ACTIONS(9268), + [sym_nothing_literal] = ACTIONS(9268), + [sym_null_literal] = ACTIONS(9268), + [sym_empty_literal] = ACTIONS(9268), + [sym_date_literal] = ACTIONS(9270), + [anon_sym_POUND] = ACTIONS(9268), + }, + [STATE(5577)] = { + [sym_identifier] = ACTIONS(9272), + [sym_newline] = ACTIONS(9274), + [anon_sym_COLON] = ACTIONS(9274), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9272), + [aux_sym_frm_property_statement_token1] = ACTIONS(9272), + [anon_sym_DOT] = ACTIONS(9272), + [anon_sym_BANG] = ACTIONS(9274), + [aux_sym__attribute_identifier_token1] = ACTIONS(9272), + [aux_sym_option_statement_token3] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9272), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9272), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9272), + [aux_sym_preprocessor_const_token1] = ACTIONS(9272), + [sym_static_modifier] = ACTIONS(9272), + [sym__dim_keyword] = ACTIONS(9272), + [sym__redim_keyword] = ACTIONS(9272), + [aux_sym_get_accessor_token1] = ACTIONS(9272), + [aux_sym_set_accessor_token1] = ACTIONS(9272), + [aux_sym_const_declaration_token1] = ACTIONS(9272), + [anon_sym_LPAREN] = ACTIONS(9274), + [aux_sym_as_type_clause_token2] = ACTIONS(9272), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9272), + [aux_sym_visibility_token1] = ACTIONS(9272), + [aux_sym_visibility_token2] = ACTIONS(9272), + [aux_sym_elseif_fragment_token1] = ACTIONS(9272), + [aux_sym_else_fragment_token1] = ACTIONS(9272), + [aux_sym_select_statement_token1] = ACTIONS(9272), + [aux_sym__for_header_token1] = ACTIONS(9272), + [aux_sym_do_statement_token1] = ACTIONS(9272), + [aux_sym_do_condition_token1] = ACTIONS(9272), + [aux_sym_with_statement_token1] = ACTIONS(9272), + [aux_sym_exit_statement_token1] = ACTIONS(9272), + [sym_end_statement] = ACTIONS(9274), + [aux_sym_on_goto_statement_token1] = ACTIONS(9272), + [aux_sym_on_goto_statement_token2] = ACTIONS(9272), + [aux_sym_on_error_statement_token2] = ACTIONS(9272), + [sym__ambiguous_redim_statement] = ACTIONS(9274), + [aux_sym_erase_statement_token1] = ACTIONS(9272), + [aux_sym_open_statement_token1] = ACTIONS(9272), + [aux_sym_file_mode_token2] = ACTIONS(9272), + [aux_sym_file_access_token2] = ACTIONS(9272), + [aux_sym_file_lock_token2] = ACTIONS(9272), + [aux_sym_print_statement_token1] = ACTIONS(9272), + [anon_sym_PLUS] = ACTIONS(9274), + [anon_sym_DASH] = ACTIONS(9272), + [anon_sym_QMARK] = ACTIONS(9274), + [aux_sym_close_statement_token1] = ACTIONS(9272), + [aux_sym_put_statement_token1] = ACTIONS(9272), + [aux_sym_unlock_statement_token1] = ACTIONS(9272), + [aux_sym_seek_statement_token1] = ACTIONS(9272), + [sym_reset_statement] = ACTIONS(9272), + [aux_sym_raise_event_statement_token1] = ACTIONS(9272), + [sym_stop_statement] = ACTIONS(9272), + [sym_beep_statement] = ACTIONS(9272), + [aux_sym_unload_statement_token1] = ACTIONS(9272), + [aux_sym_def_type_statement_token1] = ACTIONS(9272), + [aux_sym_def_type_statement_token2] = ACTIONS(9272), + [aux_sym_def_type_statement_token3] = ACTIONS(9272), + [aux_sym_def_type_statement_token4] = ACTIONS(9272), + [aux_sym_def_type_statement_token5] = ACTIONS(9272), + [aux_sym_def_type_statement_token6] = ACTIONS(9272), + [aux_sym_def_type_statement_token7] = ACTIONS(9272), + [aux_sym_def_type_statement_token8] = ACTIONS(9272), + [aux_sym_def_type_statement_token9] = ACTIONS(9272), + [aux_sym_def_type_statement_token10] = ACTIONS(9272), + [aux_sym_def_type_statement_token11] = ACTIONS(9272), + [aux_sym_def_type_statement_token12] = ACTIONS(9272), + [aux_sym_def_type_statement_token13] = ACTIONS(9272), + [aux_sym_def_type_statement_token14] = ACTIONS(9272), + [aux_sym_call_statement_token1] = ACTIONS(9272), + [sym__ambiguous_call_statement] = ACTIONS(9272), + [aux_sym_addressof_expression_token1] = ACTIONS(9272), + [aux_sym_type_of_expression_token1] = ACTIONS(9272), + [aux_sym_unary_expression_token1] = ACTIONS(9272), + [sym_string_literal] = ACTIONS(9274), + [sym_number_literal] = ACTIONS(9274), + [aux_sym_boolean_literal_token1] = ACTIONS(9272), + [aux_sym_boolean_literal_token2] = ACTIONS(9272), + [sym_nothing_literal] = ACTIONS(9272), + [sym_null_literal] = ACTIONS(9272), + [sym_empty_literal] = ACTIONS(9272), + [sym_date_literal] = ACTIONS(9274), + [anon_sym_POUND] = ACTIONS(9272), + }, + [STATE(5578)] = { + [sym_identifier] = ACTIONS(9276), + [sym_newline] = ACTIONS(9278), + [anon_sym_COLON] = ACTIONS(9278), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9276), + [aux_sym_frm_property_statement_token1] = ACTIONS(9276), + [anon_sym_DOT] = ACTIONS(9276), + [anon_sym_BANG] = ACTIONS(9278), + [aux_sym__attribute_identifier_token1] = ACTIONS(9276), + [aux_sym_option_statement_token3] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9276), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9276), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9276), + [aux_sym_preprocessor_const_token1] = ACTIONS(9276), + [sym_static_modifier] = ACTIONS(9276), + [sym__dim_keyword] = ACTIONS(9276), + [sym__redim_keyword] = ACTIONS(9276), + [aux_sym_get_accessor_token1] = ACTIONS(9276), + [aux_sym_set_accessor_token1] = ACTIONS(9276), + [aux_sym_const_declaration_token1] = ACTIONS(9276), + [anon_sym_LPAREN] = ACTIONS(9278), + [aux_sym_as_type_clause_token2] = ACTIONS(9276), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9276), + [aux_sym_visibility_token1] = ACTIONS(9276), + [aux_sym_visibility_token2] = ACTIONS(9276), + [aux_sym_elseif_fragment_token1] = ACTIONS(9276), + [aux_sym_else_fragment_token1] = ACTIONS(9276), + [aux_sym_select_statement_token1] = ACTIONS(9276), + [aux_sym__for_header_token1] = ACTIONS(9276), + [aux_sym_do_statement_token1] = ACTIONS(9276), + [aux_sym_do_condition_token1] = ACTIONS(9276), + [aux_sym_with_statement_token1] = ACTIONS(9276), + [aux_sym_exit_statement_token1] = ACTIONS(9276), + [sym_end_statement] = ACTIONS(9278), + [aux_sym_on_goto_statement_token1] = ACTIONS(9276), + [aux_sym_on_goto_statement_token2] = ACTIONS(9276), + [aux_sym_on_error_statement_token2] = ACTIONS(9276), + [sym__ambiguous_redim_statement] = ACTIONS(9278), + [aux_sym_erase_statement_token1] = ACTIONS(9276), + [aux_sym_open_statement_token1] = ACTIONS(9276), + [aux_sym_file_mode_token2] = ACTIONS(9276), + [aux_sym_file_access_token2] = ACTIONS(9276), + [aux_sym_file_lock_token2] = ACTIONS(9276), + [aux_sym_print_statement_token1] = ACTIONS(9276), + [anon_sym_PLUS] = ACTIONS(9278), + [anon_sym_DASH] = ACTIONS(9276), + [anon_sym_QMARK] = ACTIONS(9278), + [aux_sym_close_statement_token1] = ACTIONS(9276), + [aux_sym_put_statement_token1] = ACTIONS(9276), + [aux_sym_unlock_statement_token1] = ACTIONS(9276), + [aux_sym_seek_statement_token1] = ACTIONS(9276), + [sym_reset_statement] = ACTIONS(9276), + [aux_sym_raise_event_statement_token1] = ACTIONS(9276), + [sym_stop_statement] = ACTIONS(9276), + [sym_beep_statement] = ACTIONS(9276), + [aux_sym_unload_statement_token1] = ACTIONS(9276), + [aux_sym_def_type_statement_token1] = ACTIONS(9276), + [aux_sym_def_type_statement_token2] = ACTIONS(9276), + [aux_sym_def_type_statement_token3] = ACTIONS(9276), + [aux_sym_def_type_statement_token4] = ACTIONS(9276), + [aux_sym_def_type_statement_token5] = ACTIONS(9276), + [aux_sym_def_type_statement_token6] = ACTIONS(9276), + [aux_sym_def_type_statement_token7] = ACTIONS(9276), + [aux_sym_def_type_statement_token8] = ACTIONS(9276), + [aux_sym_def_type_statement_token9] = ACTIONS(9276), + [aux_sym_def_type_statement_token10] = ACTIONS(9276), + [aux_sym_def_type_statement_token11] = ACTIONS(9276), + [aux_sym_def_type_statement_token12] = ACTIONS(9276), + [aux_sym_def_type_statement_token13] = ACTIONS(9276), + [aux_sym_def_type_statement_token14] = ACTIONS(9276), + [aux_sym_call_statement_token1] = ACTIONS(9276), + [sym__ambiguous_call_statement] = ACTIONS(9276), + [aux_sym_addressof_expression_token1] = ACTIONS(9276), + [aux_sym_type_of_expression_token1] = ACTIONS(9276), + [aux_sym_unary_expression_token1] = ACTIONS(9276), + [sym_string_literal] = ACTIONS(9278), + [sym_number_literal] = ACTIONS(9278), + [aux_sym_boolean_literal_token1] = ACTIONS(9276), + [aux_sym_boolean_literal_token2] = ACTIONS(9276), + [sym_nothing_literal] = ACTIONS(9276), + [sym_null_literal] = ACTIONS(9276), + [sym_empty_literal] = ACTIONS(9276), + [sym_date_literal] = ACTIONS(9278), + [anon_sym_POUND] = ACTIONS(9276), + }, + [STATE(5579)] = { + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym__attribute_identifier_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [sym__redim_keyword] = ACTIONS(4362), + [aux_sym_get_accessor_token1] = ACTIONS(4362), + [aux_sym_set_accessor_token1] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [aux_sym_as_type_clause_token2] = ACTIONS(4362), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4362), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_elseif_fragment_token1] = ACTIONS(4362), + [aux_sym_else_fragment_token1] = ACTIONS(4362), + [aux_sym_select_statement_token1] = ACTIONS(4362), + [aux_sym__for_header_token1] = ACTIONS(4362), + [aux_sym_do_statement_token1] = ACTIONS(4362), + [aux_sym_do_condition_token1] = ACTIONS(4362), + [aux_sym_with_statement_token1] = ACTIONS(4362), + [aux_sym_exit_statement_token1] = ACTIONS(4362), + [sym_end_statement] = ACTIONS(4364), + [aux_sym_on_goto_statement_token1] = ACTIONS(4362), + [aux_sym_on_goto_statement_token2] = ACTIONS(4362), + [aux_sym_on_error_statement_token2] = ACTIONS(4362), + [sym__ambiguous_redim_statement] = ACTIONS(4364), + [aux_sym_erase_statement_token1] = ACTIONS(4362), + [aux_sym_open_statement_token1] = ACTIONS(4362), + [aux_sym_file_mode_token2] = ACTIONS(4362), + [aux_sym_file_access_token2] = ACTIONS(4362), + [aux_sym_file_lock_token2] = ACTIONS(4362), + [aux_sym_print_statement_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_QMARK] = ACTIONS(4364), + [aux_sym_close_statement_token1] = ACTIONS(4362), + [aux_sym_put_statement_token1] = ACTIONS(4362), + [aux_sym_unlock_statement_token1] = ACTIONS(4362), + [aux_sym_seek_statement_token1] = ACTIONS(4362), + [sym_reset_statement] = ACTIONS(4362), + [aux_sym_raise_event_statement_token1] = ACTIONS(4362), + [sym_stop_statement] = ACTIONS(4362), + [sym_beep_statement] = ACTIONS(4362), + [aux_sym_unload_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_call_statement_token1] = ACTIONS(4362), + [sym__ambiguous_call_statement] = ACTIONS(4362), + [aux_sym_addressof_expression_token1] = ACTIONS(4362), + [aux_sym_type_of_expression_token1] = ACTIONS(4362), + [aux_sym_unary_expression_token1] = ACTIONS(4362), + [sym_string_literal] = ACTIONS(4364), + [sym_number_literal] = ACTIONS(4364), + [aux_sym_boolean_literal_token1] = ACTIONS(4362), + [aux_sym_boolean_literal_token2] = ACTIONS(4362), + [sym_nothing_literal] = ACTIONS(4362), + [sym_null_literal] = ACTIONS(4362), + [sym_empty_literal] = ACTIONS(4362), + [sym_date_literal] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4362), + }, + [STATE(5580)] = { + [sym_identifier] = ACTIONS(8951), + [sym_newline] = ACTIONS(8953), + [anon_sym_COLON] = ACTIONS(8955), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8951), + [aux_sym_frm_property_statement_token1] = ACTIONS(8951), + [anon_sym_DOT] = ACTIONS(8951), + [anon_sym_BANG] = ACTIONS(8953), + [aux_sym__attribute_identifier_token1] = ACTIONS(8951), + [aux_sym_option_statement_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8951), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8951), + [aux_sym_preprocessor_const_token1] = ACTIONS(8951), + [sym_static_modifier] = ACTIONS(8951), + [sym__dim_keyword] = ACTIONS(8951), + [sym__redim_keyword] = ACTIONS(8951), + [aux_sym_get_accessor_token1] = ACTIONS(8951), + [aux_sym_set_accessor_token1] = ACTIONS(8951), + [aux_sym_const_declaration_token1] = ACTIONS(8951), + [anon_sym_LPAREN] = ACTIONS(8953), + [aux_sym_as_type_clause_token2] = ACTIONS(8951), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8951), + [aux_sym_visibility_token1] = ACTIONS(8951), + [aux_sym_visibility_token2] = ACTIONS(8951), + [aux_sym_elseif_fragment_token1] = ACTIONS(8951), + [aux_sym_else_fragment_token1] = ACTIONS(8951), + [aux_sym_select_statement_token1] = ACTIONS(8951), + [aux_sym__for_header_token1] = ACTIONS(8951), + [aux_sym_do_statement_token1] = ACTIONS(8951), + [aux_sym_do_condition_token1] = ACTIONS(8951), + [aux_sym_with_statement_token1] = ACTIONS(8951), + [aux_sym_exit_statement_token1] = ACTIONS(8951), + [sym_end_statement] = ACTIONS(8953), + [aux_sym_on_goto_statement_token1] = ACTIONS(8951), + [aux_sym_on_goto_statement_token2] = ACTIONS(8951), + [aux_sym_on_error_statement_token2] = ACTIONS(8951), + [sym__ambiguous_redim_statement] = ACTIONS(8953), + [aux_sym_erase_statement_token1] = ACTIONS(8951), + [aux_sym_open_statement_token1] = ACTIONS(8951), + [aux_sym_file_mode_token2] = ACTIONS(8951), + [aux_sym_file_access_token2] = ACTIONS(8951), + [aux_sym_file_lock_token2] = ACTIONS(8951), + [aux_sym_print_statement_token1] = ACTIONS(8951), + [anon_sym_PLUS] = ACTIONS(8953), + [anon_sym_DASH] = ACTIONS(8951), + [anon_sym_QMARK] = ACTIONS(8953), + [aux_sym_close_statement_token1] = ACTIONS(8951), + [aux_sym_put_statement_token1] = ACTIONS(8951), + [aux_sym_unlock_statement_token1] = ACTIONS(8951), + [aux_sym_seek_statement_token1] = ACTIONS(8951), + [sym_reset_statement] = ACTIONS(8951), + [aux_sym_raise_event_statement_token1] = ACTIONS(8951), + [sym_stop_statement] = ACTIONS(8951), + [sym_beep_statement] = ACTIONS(8951), + [aux_sym_unload_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token2] = ACTIONS(8951), + [aux_sym_def_type_statement_token3] = ACTIONS(8951), + [aux_sym_def_type_statement_token4] = ACTIONS(8951), + [aux_sym_def_type_statement_token5] = ACTIONS(8951), + [aux_sym_def_type_statement_token6] = ACTIONS(8951), + [aux_sym_def_type_statement_token7] = ACTIONS(8951), + [aux_sym_def_type_statement_token8] = ACTIONS(8951), + [aux_sym_def_type_statement_token9] = ACTIONS(8951), + [aux_sym_def_type_statement_token10] = ACTIONS(8951), + [aux_sym_def_type_statement_token11] = ACTIONS(8951), + [aux_sym_def_type_statement_token12] = ACTIONS(8951), + [aux_sym_def_type_statement_token13] = ACTIONS(8951), + [aux_sym_def_type_statement_token14] = ACTIONS(8951), + [aux_sym_call_statement_token1] = ACTIONS(8951), + [sym__ambiguous_call_statement] = ACTIONS(8951), + [aux_sym_addressof_expression_token1] = ACTIONS(8951), + [aux_sym_type_of_expression_token1] = ACTIONS(8951), + [aux_sym_unary_expression_token1] = ACTIONS(8951), + [sym_string_literal] = ACTIONS(8953), + [sym_number_literal] = ACTIONS(8955), + [aux_sym_boolean_literal_token1] = ACTIONS(8951), + [aux_sym_boolean_literal_token2] = ACTIONS(8951), + [sym_nothing_literal] = ACTIONS(8951), + [sym_null_literal] = ACTIONS(8951), + [sym_empty_literal] = ACTIONS(8951), + [sym_date_literal] = ACTIONS(8953), + [anon_sym_POUND] = ACTIONS(8951), + }, + [STATE(5581)] = { + [sym_identifier] = ACTIONS(8645), + [sym_newline] = ACTIONS(8647), + [anon_sym_COLON] = ACTIONS(8649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8645), + [aux_sym_frm_property_statement_token1] = ACTIONS(8645), + [anon_sym_DOT] = ACTIONS(8645), + [anon_sym_BANG] = ACTIONS(8647), + [aux_sym__attribute_identifier_token1] = ACTIONS(8645), + [aux_sym_option_statement_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8645), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8645), + [aux_sym_preprocessor_const_token1] = ACTIONS(8645), + [sym_static_modifier] = ACTIONS(8645), + [sym__dim_keyword] = ACTIONS(8645), + [sym__redim_keyword] = ACTIONS(8645), + [aux_sym_get_accessor_token1] = ACTIONS(8645), + [aux_sym_set_accessor_token1] = ACTIONS(8645), + [aux_sym_const_declaration_token1] = ACTIONS(8645), + [anon_sym_LPAREN] = ACTIONS(8647), + [aux_sym_as_type_clause_token2] = ACTIONS(8645), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8645), + [aux_sym_visibility_token1] = ACTIONS(8645), + [aux_sym_visibility_token2] = ACTIONS(8645), + [aux_sym_elseif_fragment_token1] = ACTIONS(8645), + [aux_sym_else_fragment_token1] = ACTIONS(8645), + [aux_sym_select_statement_token1] = ACTIONS(8645), + [aux_sym__for_header_token1] = ACTIONS(8645), + [aux_sym_do_statement_token1] = ACTIONS(8645), + [aux_sym_do_condition_token1] = ACTIONS(8645), + [aux_sym_with_statement_token1] = ACTIONS(8645), + [aux_sym_exit_statement_token1] = ACTIONS(8645), + [sym_end_statement] = ACTIONS(8647), + [aux_sym_on_goto_statement_token1] = ACTIONS(8645), + [aux_sym_on_goto_statement_token2] = ACTIONS(8645), + [aux_sym_on_error_statement_token2] = ACTIONS(8645), + [sym__ambiguous_redim_statement] = ACTIONS(8647), + [aux_sym_erase_statement_token1] = ACTIONS(8645), + [aux_sym_open_statement_token1] = ACTIONS(8645), + [aux_sym_file_mode_token2] = ACTIONS(8645), + [aux_sym_file_access_token2] = ACTIONS(8645), + [aux_sym_file_lock_token2] = ACTIONS(8645), + [aux_sym_print_statement_token1] = ACTIONS(8645), + [anon_sym_PLUS] = ACTIONS(8647), + [anon_sym_DASH] = ACTIONS(8645), + [anon_sym_QMARK] = ACTIONS(8647), + [aux_sym_close_statement_token1] = ACTIONS(8645), + [aux_sym_put_statement_token1] = ACTIONS(8645), + [aux_sym_unlock_statement_token1] = ACTIONS(8645), + [aux_sym_seek_statement_token1] = ACTIONS(8645), + [sym_reset_statement] = ACTIONS(8645), + [aux_sym_raise_event_statement_token1] = ACTIONS(8645), + [sym_stop_statement] = ACTIONS(8645), + [sym_beep_statement] = ACTIONS(8645), + [aux_sym_unload_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token2] = ACTIONS(8645), + [aux_sym_def_type_statement_token3] = ACTIONS(8645), + [aux_sym_def_type_statement_token4] = ACTIONS(8645), + [aux_sym_def_type_statement_token5] = ACTIONS(8645), + [aux_sym_def_type_statement_token6] = ACTIONS(8645), + [aux_sym_def_type_statement_token7] = ACTIONS(8645), + [aux_sym_def_type_statement_token8] = ACTIONS(8645), + [aux_sym_def_type_statement_token9] = ACTIONS(8645), + [aux_sym_def_type_statement_token10] = ACTIONS(8645), + [aux_sym_def_type_statement_token11] = ACTIONS(8645), + [aux_sym_def_type_statement_token12] = ACTIONS(8645), + [aux_sym_def_type_statement_token13] = ACTIONS(8645), + [aux_sym_def_type_statement_token14] = ACTIONS(8645), + [aux_sym_call_statement_token1] = ACTIONS(8645), + [sym__ambiguous_call_statement] = ACTIONS(8645), + [aux_sym_addressof_expression_token1] = ACTIONS(8645), + [aux_sym_type_of_expression_token1] = ACTIONS(8645), + [aux_sym_unary_expression_token1] = ACTIONS(8645), + [sym_string_literal] = ACTIONS(8647), + [sym_number_literal] = ACTIONS(8649), + [aux_sym_boolean_literal_token1] = ACTIONS(8645), + [aux_sym_boolean_literal_token2] = ACTIONS(8645), + [sym_nothing_literal] = ACTIONS(8645), + [sym_null_literal] = ACTIONS(8645), + [sym_empty_literal] = ACTIONS(8645), + [sym_date_literal] = ACTIONS(8647), + [anon_sym_POUND] = ACTIONS(8645), + }, + [STATE(5582)] = { + [sym_identifier] = ACTIONS(8749), + [sym_newline] = ACTIONS(8751), + [anon_sym_COLON] = ACTIONS(8753), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8749), + [aux_sym_frm_property_statement_token1] = ACTIONS(8749), + [anon_sym_DOT] = ACTIONS(8749), + [anon_sym_BANG] = ACTIONS(8751), + [aux_sym__attribute_identifier_token1] = ACTIONS(8749), + [aux_sym_option_statement_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8749), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8749), + [aux_sym_preprocessor_const_token1] = ACTIONS(8749), + [sym_static_modifier] = ACTIONS(8749), + [sym__dim_keyword] = ACTIONS(8749), + [sym__redim_keyword] = ACTIONS(8749), + [aux_sym_get_accessor_token1] = ACTIONS(8749), + [aux_sym_set_accessor_token1] = ACTIONS(8749), + [aux_sym_const_declaration_token1] = ACTIONS(8749), + [anon_sym_LPAREN] = ACTIONS(8751), + [aux_sym_as_type_clause_token2] = ACTIONS(8749), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8749), + [aux_sym_visibility_token1] = ACTIONS(8749), + [aux_sym_visibility_token2] = ACTIONS(8749), + [aux_sym_elseif_fragment_token1] = ACTIONS(8749), + [aux_sym_else_fragment_token1] = ACTIONS(8749), + [aux_sym_select_statement_token1] = ACTIONS(8749), + [aux_sym__for_header_token1] = ACTIONS(8749), + [aux_sym_do_statement_token1] = ACTIONS(8749), + [aux_sym_do_condition_token1] = ACTIONS(8749), + [aux_sym_with_statement_token1] = ACTIONS(8749), + [aux_sym_exit_statement_token1] = ACTIONS(8749), + [sym_end_statement] = ACTIONS(8751), + [aux_sym_on_goto_statement_token1] = ACTIONS(8749), + [aux_sym_on_goto_statement_token2] = ACTIONS(8749), + [aux_sym_on_error_statement_token2] = ACTIONS(8749), + [sym__ambiguous_redim_statement] = ACTIONS(8751), + [aux_sym_erase_statement_token1] = ACTIONS(8749), + [aux_sym_open_statement_token1] = ACTIONS(8749), + [aux_sym_file_mode_token2] = ACTIONS(8749), + [aux_sym_file_access_token2] = ACTIONS(8749), + [aux_sym_file_lock_token2] = ACTIONS(8749), + [aux_sym_print_statement_token1] = ACTIONS(8749), + [anon_sym_PLUS] = ACTIONS(8751), + [anon_sym_DASH] = ACTIONS(8749), + [anon_sym_QMARK] = ACTIONS(8751), + [aux_sym_close_statement_token1] = ACTIONS(8749), + [aux_sym_put_statement_token1] = ACTIONS(8749), + [aux_sym_unlock_statement_token1] = ACTIONS(8749), + [aux_sym_seek_statement_token1] = ACTIONS(8749), + [sym_reset_statement] = ACTIONS(8749), + [aux_sym_raise_event_statement_token1] = ACTIONS(8749), + [sym_stop_statement] = ACTIONS(8749), + [sym_beep_statement] = ACTIONS(8749), + [aux_sym_unload_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token2] = ACTIONS(8749), + [aux_sym_def_type_statement_token3] = ACTIONS(8749), + [aux_sym_def_type_statement_token4] = ACTIONS(8749), + [aux_sym_def_type_statement_token5] = ACTIONS(8749), + [aux_sym_def_type_statement_token6] = ACTIONS(8749), + [aux_sym_def_type_statement_token7] = ACTIONS(8749), + [aux_sym_def_type_statement_token8] = ACTIONS(8749), + [aux_sym_def_type_statement_token9] = ACTIONS(8749), + [aux_sym_def_type_statement_token10] = ACTIONS(8749), + [aux_sym_def_type_statement_token11] = ACTIONS(8749), + [aux_sym_def_type_statement_token12] = ACTIONS(8749), + [aux_sym_def_type_statement_token13] = ACTIONS(8749), + [aux_sym_def_type_statement_token14] = ACTIONS(8749), + [aux_sym_call_statement_token1] = ACTIONS(8749), + [sym__ambiguous_call_statement] = ACTIONS(8749), + [aux_sym_addressof_expression_token1] = ACTIONS(8749), + [aux_sym_type_of_expression_token1] = ACTIONS(8749), + [aux_sym_unary_expression_token1] = ACTIONS(8749), + [sym_string_literal] = ACTIONS(8751), + [sym_number_literal] = ACTIONS(8753), + [aux_sym_boolean_literal_token1] = ACTIONS(8749), + [aux_sym_boolean_literal_token2] = ACTIONS(8749), + [sym_nothing_literal] = ACTIONS(8749), + [sym_null_literal] = ACTIONS(8749), + [sym_empty_literal] = ACTIONS(8749), + [sym_date_literal] = ACTIONS(8751), + [anon_sym_POUND] = ACTIONS(8749), + }, + [STATE(5583)] = { + [aux_sym_close_statement_repeat1] = STATE(5583), + [sym_identifier] = ACTIONS(8443), + [sym_newline] = ACTIONS(8445), + [anon_sym_COLON] = ACTIONS(8445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8443), + [aux_sym_frm_property_statement_token1] = ACTIONS(8443), + [anon_sym_DOT] = ACTIONS(8443), + [anon_sym_BANG] = ACTIONS(8445), + [aux_sym__attribute_identifier_token1] = ACTIONS(8443), + [aux_sym_option_statement_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8443), + [aux_sym_preprocessor_const_token1] = ACTIONS(8443), + [sym_static_modifier] = ACTIONS(8443), + [sym__dim_keyword] = ACTIONS(8443), + [sym__redim_keyword] = ACTIONS(8443), + [aux_sym_get_accessor_token1] = ACTIONS(8443), + [aux_sym_set_accessor_token1] = ACTIONS(8443), + [anon_sym_COMMA] = ACTIONS(10744), + [aux_sym_const_declaration_token1] = ACTIONS(8443), + [anon_sym_LPAREN] = ACTIONS(8445), + [aux_sym_as_type_clause_token2] = ACTIONS(8443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8443), + [aux_sym_visibility_token1] = ACTIONS(8443), + [aux_sym_visibility_token2] = ACTIONS(8443), + [aux_sym_elseif_fragment_token1] = ACTIONS(8443), + [aux_sym_else_fragment_token1] = ACTIONS(8443), + [aux_sym_select_statement_token1] = ACTIONS(8443), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8443), + [aux_sym__for_header_token1] = ACTIONS(8443), + [aux_sym_do_statement_token1] = ACTIONS(8443), + [aux_sym_do_condition_token1] = ACTIONS(8443), + [aux_sym_with_statement_token1] = ACTIONS(8443), + [aux_sym_exit_statement_token1] = ACTIONS(8443), + [sym_end_statement] = ACTIONS(8445), + [aux_sym_on_goto_statement_token1] = ACTIONS(8443), + [aux_sym_on_goto_statement_token2] = ACTIONS(8443), + [aux_sym_on_error_statement_token2] = ACTIONS(8443), + [sym__ambiguous_redim_statement] = ACTIONS(8445), + [aux_sym_erase_statement_token1] = ACTIONS(8443), + [aux_sym_open_statement_token1] = ACTIONS(8443), + [aux_sym_file_mode_token2] = ACTIONS(8443), + [aux_sym_file_access_token2] = ACTIONS(8443), + [aux_sym_file_lock_token2] = ACTIONS(8443), + [aux_sym_print_statement_token1] = ACTIONS(8443), + [anon_sym_PLUS] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8443), + [anon_sym_QMARK] = ACTIONS(8445), + [aux_sym_close_statement_token1] = ACTIONS(8443), + [aux_sym_put_statement_token1] = ACTIONS(8443), + [aux_sym_unlock_statement_token1] = ACTIONS(8443), + [aux_sym_seek_statement_token1] = ACTIONS(8443), + [sym_reset_statement] = ACTIONS(8443), + [aux_sym_raise_event_statement_token1] = ACTIONS(8443), + [sym_stop_statement] = ACTIONS(8443), + [sym_beep_statement] = ACTIONS(8443), + [aux_sym_unload_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token2] = ACTIONS(8443), + [aux_sym_def_type_statement_token3] = ACTIONS(8443), + [aux_sym_def_type_statement_token4] = ACTIONS(8443), + [aux_sym_def_type_statement_token5] = ACTIONS(8443), + [aux_sym_def_type_statement_token6] = ACTIONS(8443), + [aux_sym_def_type_statement_token7] = ACTIONS(8443), + [aux_sym_def_type_statement_token8] = ACTIONS(8443), + [aux_sym_def_type_statement_token9] = ACTIONS(8443), + [aux_sym_def_type_statement_token10] = ACTIONS(8443), + [aux_sym_def_type_statement_token11] = ACTIONS(8443), + [aux_sym_def_type_statement_token12] = ACTIONS(8443), + [aux_sym_def_type_statement_token13] = ACTIONS(8443), + [aux_sym_def_type_statement_token14] = ACTIONS(8443), + [aux_sym_call_statement_token1] = ACTIONS(8443), + [sym__ambiguous_call_statement] = ACTIONS(8443), + [aux_sym_addressof_expression_token1] = ACTIONS(8443), + [aux_sym_type_of_expression_token1] = ACTIONS(8443), + [aux_sym_unary_expression_token1] = ACTIONS(8443), + [sym_string_literal] = ACTIONS(8445), + [sym_number_literal] = ACTIONS(8445), + [aux_sym_boolean_literal_token1] = ACTIONS(8443), + [aux_sym_boolean_literal_token2] = ACTIONS(8443), + [sym_nothing_literal] = ACTIONS(8443), + [sym_null_literal] = ACTIONS(8443), + [sym_empty_literal] = ACTIONS(8443), + [sym_date_literal] = ACTIONS(8445), + [anon_sym_POUND] = ACTIONS(8443), + }, + [STATE(5584)] = { + [aux_sym_erase_statement_repeat1] = STATE(5584), + [sym_identifier] = ACTIONS(8607), + [sym_newline] = ACTIONS(8609), + [anon_sym_COLON] = ACTIONS(8609), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8607), + [aux_sym_frm_property_statement_token1] = ACTIONS(8607), + [anon_sym_DOT] = ACTIONS(8607), + [anon_sym_BANG] = ACTIONS(8609), + [aux_sym__attribute_identifier_token1] = ACTIONS(8607), + [aux_sym_option_statement_token3] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8607), + [aux_sym_preprocessor_const_token1] = ACTIONS(8607), + [sym_static_modifier] = ACTIONS(8607), + [sym__dim_keyword] = ACTIONS(8607), + [sym__redim_keyword] = ACTIONS(8607), + [aux_sym_get_accessor_token1] = ACTIONS(8607), + [aux_sym_set_accessor_token1] = ACTIONS(8607), + [anon_sym_COMMA] = ACTIONS(10747), + [aux_sym_const_declaration_token1] = ACTIONS(8607), + [anon_sym_LPAREN] = ACTIONS(8609), + [aux_sym_as_type_clause_token2] = ACTIONS(8607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8607), + [aux_sym_visibility_token1] = ACTIONS(8607), + [aux_sym_visibility_token2] = ACTIONS(8607), + [aux_sym_elseif_fragment_token1] = ACTIONS(8607), + [aux_sym_else_fragment_token1] = ACTIONS(8607), + [aux_sym_select_statement_token1] = ACTIONS(8607), + [aux_sym__for_header_token1] = ACTIONS(8607), + [aux_sym_do_statement_token1] = ACTIONS(8607), + [aux_sym_do_condition_token1] = ACTIONS(8607), + [aux_sym_with_statement_token1] = ACTIONS(8607), + [aux_sym_exit_statement_token1] = ACTIONS(8607), + [sym_end_statement] = ACTIONS(8609), + [aux_sym_on_goto_statement_token1] = ACTIONS(8607), + [aux_sym_on_goto_statement_token2] = ACTIONS(8607), + [aux_sym_on_error_statement_token2] = ACTIONS(8607), + [sym__ambiguous_redim_statement] = ACTIONS(8609), + [aux_sym_erase_statement_token1] = ACTIONS(8607), + [aux_sym_open_statement_token1] = ACTIONS(8607), + [aux_sym_file_mode_token2] = ACTIONS(8607), + [aux_sym_file_access_token2] = ACTIONS(8607), + [aux_sym_file_lock_token2] = ACTIONS(8607), + [aux_sym_print_statement_token1] = ACTIONS(8607), + [anon_sym_PLUS] = ACTIONS(8609), + [anon_sym_DASH] = ACTIONS(8607), + [anon_sym_QMARK] = ACTIONS(8609), + [aux_sym_close_statement_token1] = ACTIONS(8607), + [aux_sym_put_statement_token1] = ACTIONS(8607), + [aux_sym_unlock_statement_token1] = ACTIONS(8607), + [aux_sym_seek_statement_token1] = ACTIONS(8607), + [sym_reset_statement] = ACTIONS(8607), + [aux_sym_raise_event_statement_token1] = ACTIONS(8607), + [sym_stop_statement] = ACTIONS(8607), + [sym_beep_statement] = ACTIONS(8607), + [aux_sym_unload_statement_token1] = ACTIONS(8607), + [aux_sym_def_type_statement_token1] = ACTIONS(8607), + [aux_sym_def_type_statement_token2] = ACTIONS(8607), + [aux_sym_def_type_statement_token3] = ACTIONS(8607), + [aux_sym_def_type_statement_token4] = ACTIONS(8607), + [aux_sym_def_type_statement_token5] = ACTIONS(8607), + [aux_sym_def_type_statement_token6] = ACTIONS(8607), + [aux_sym_def_type_statement_token7] = ACTIONS(8607), + [aux_sym_def_type_statement_token8] = ACTIONS(8607), + [aux_sym_def_type_statement_token9] = ACTIONS(8607), + [aux_sym_def_type_statement_token10] = ACTIONS(8607), + [aux_sym_def_type_statement_token11] = ACTIONS(8607), + [aux_sym_def_type_statement_token12] = ACTIONS(8607), + [aux_sym_def_type_statement_token13] = ACTIONS(8607), + [aux_sym_def_type_statement_token14] = ACTIONS(8607), + [aux_sym_call_statement_token1] = ACTIONS(8607), + [sym__ambiguous_call_statement] = ACTIONS(8607), + [aux_sym_addressof_expression_token1] = ACTIONS(8607), + [aux_sym_type_of_expression_token1] = ACTIONS(8607), + [aux_sym_unary_expression_token1] = ACTIONS(8607), + [sym_string_literal] = ACTIONS(8609), + [sym_number_literal] = ACTIONS(8609), + [aux_sym_boolean_literal_token1] = ACTIONS(8607), + [aux_sym_boolean_literal_token2] = ACTIONS(8607), + [sym_nothing_literal] = ACTIONS(8607), + [sym_null_literal] = ACTIONS(8607), + [sym_empty_literal] = ACTIONS(8607), + [sym_date_literal] = ACTIONS(8609), + [anon_sym_POUND] = ACTIONS(8607), + }, + [STATE(5585)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5628), + [sym_identifier] = ACTIONS(7939), + [sym_newline] = ACTIONS(7941), + [anon_sym_COLON] = ACTIONS(7941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7939), + [aux_sym_frm_property_statement_token1] = ACTIONS(7939), + [anon_sym_DOT] = ACTIONS(7939), + [anon_sym_BANG] = ACTIONS(7941), + [aux_sym__attribute_identifier_token1] = ACTIONS(7939), + [aux_sym_option_statement_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7939), + [aux_sym_preprocessor_const_token1] = ACTIONS(7939), + [sym_static_modifier] = ACTIONS(7939), + [sym__dim_keyword] = ACTIONS(7939), + [sym__redim_keyword] = ACTIONS(7939), + [aux_sym_get_accessor_token1] = ACTIONS(7939), + [aux_sym_set_accessor_token1] = ACTIONS(7939), + [anon_sym_COMMA] = ACTIONS(10750), + [aux_sym_const_declaration_token1] = ACTIONS(7939), + [anon_sym_LPAREN] = ACTIONS(7941), + [aux_sym_as_type_clause_token2] = ACTIONS(7939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7939), + [aux_sym_visibility_token1] = ACTIONS(7939), + [aux_sym_visibility_token2] = ACTIONS(7939), + [aux_sym_elseif_fragment_token1] = ACTIONS(7939), + [aux_sym_else_fragment_token1] = ACTIONS(7939), + [aux_sym_select_statement_token1] = ACTIONS(7939), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7939), + [aux_sym__for_header_token1] = ACTIONS(7939), + [aux_sym_do_statement_token1] = ACTIONS(7939), + [aux_sym_do_condition_token1] = ACTIONS(7939), + [aux_sym_with_statement_token1] = ACTIONS(7939), + [aux_sym_exit_statement_token1] = ACTIONS(7939), + [sym_end_statement] = ACTIONS(7941), + [aux_sym_on_goto_statement_token1] = ACTIONS(7939), + [aux_sym_on_goto_statement_token2] = ACTIONS(7939), + [aux_sym_on_error_statement_token2] = ACTIONS(7939), + [sym__ambiguous_redim_statement] = ACTIONS(7941), + [aux_sym_erase_statement_token1] = ACTIONS(7939), + [aux_sym_open_statement_token1] = ACTIONS(7939), + [aux_sym_file_mode_token2] = ACTIONS(7939), + [aux_sym_file_access_token2] = ACTIONS(7939), + [aux_sym_file_lock_token2] = ACTIONS(7939), + [aux_sym_print_statement_token1] = ACTIONS(7939), + [anon_sym_PLUS] = ACTIONS(7941), + [anon_sym_DASH] = ACTIONS(7939), + [anon_sym_QMARK] = ACTIONS(7941), + [aux_sym_close_statement_token1] = ACTIONS(7939), + [aux_sym_put_statement_token1] = ACTIONS(7939), + [aux_sym_unlock_statement_token1] = ACTIONS(7939), + [aux_sym_seek_statement_token1] = ACTIONS(7939), + [sym_reset_statement] = ACTIONS(7939), + [aux_sym_raise_event_statement_token1] = ACTIONS(7939), + [sym_stop_statement] = ACTIONS(7939), + [sym_beep_statement] = ACTIONS(7939), + [aux_sym_unload_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token2] = ACTIONS(7939), + [aux_sym_def_type_statement_token3] = ACTIONS(7939), + [aux_sym_def_type_statement_token4] = ACTIONS(7939), + [aux_sym_def_type_statement_token5] = ACTIONS(7939), + [aux_sym_def_type_statement_token6] = ACTIONS(7939), + [aux_sym_def_type_statement_token7] = ACTIONS(7939), + [aux_sym_def_type_statement_token8] = ACTIONS(7939), + [aux_sym_def_type_statement_token9] = ACTIONS(7939), + [aux_sym_def_type_statement_token10] = ACTIONS(7939), + [aux_sym_def_type_statement_token11] = ACTIONS(7939), + [aux_sym_def_type_statement_token12] = ACTIONS(7939), + [aux_sym_def_type_statement_token13] = ACTIONS(7939), + [aux_sym_def_type_statement_token14] = ACTIONS(7939), + [aux_sym_call_statement_token1] = ACTIONS(7939), + [sym__ambiguous_call_statement] = ACTIONS(7939), + [aux_sym_addressof_expression_token1] = ACTIONS(7939), + [aux_sym_type_of_expression_token1] = ACTIONS(7939), + [aux_sym_unary_expression_token1] = ACTIONS(7939), + [sym_string_literal] = ACTIONS(7941), + [sym_number_literal] = ACTIONS(7941), + [aux_sym_boolean_literal_token1] = ACTIONS(7939), + [aux_sym_boolean_literal_token2] = ACTIONS(7939), + [sym_nothing_literal] = ACTIONS(7939), + [sym_null_literal] = ACTIONS(7939), + [sym_empty_literal] = ACTIONS(7939), + [sym_date_literal] = ACTIONS(7941), + [anon_sym_POUND] = ACTIONS(7939), + }, + [STATE(5586)] = { + [sym_identifier] = ACTIONS(8162), + [sym_newline] = ACTIONS(8164), + [anon_sym_COLON] = ACTIONS(8164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8162), + [aux_sym_frm_property_statement_token1] = ACTIONS(8162), + [anon_sym_DOT] = ACTIONS(8162), + [anon_sym_BANG] = ACTIONS(8164), + [aux_sym__attribute_identifier_token1] = ACTIONS(8162), + [aux_sym_option_statement_token3] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8162), + [aux_sym_preprocessor_const_token1] = ACTIONS(8162), + [sym_static_modifier] = ACTIONS(8162), + [sym__dim_keyword] = ACTIONS(8162), + [sym__redim_keyword] = ACTIONS(8162), + [aux_sym_get_accessor_token1] = ACTIONS(8162), + [aux_sym_set_accessor_token1] = ACTIONS(8162), + [anon_sym_COMMA] = ACTIONS(8164), + [aux_sym_const_declaration_token1] = ACTIONS(8162), + [anon_sym_LPAREN] = ACTIONS(8164), + [aux_sym_as_type_clause_token2] = ACTIONS(8162), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8162), + [aux_sym_visibility_token1] = ACTIONS(8162), + [aux_sym_visibility_token2] = ACTIONS(8162), + [aux_sym_elseif_fragment_token1] = ACTIONS(8162), + [aux_sym_else_fragment_token1] = ACTIONS(8162), + [aux_sym_select_statement_token1] = ACTIONS(8162), + [aux_sym__for_header_token1] = ACTIONS(8162), + [aux_sym_do_statement_token1] = ACTIONS(8162), + [aux_sym_do_statement_token2] = ACTIONS(8162), + [aux_sym_do_condition_token1] = ACTIONS(8162), + [aux_sym_with_statement_token1] = ACTIONS(8162), + [aux_sym_exit_statement_token1] = ACTIONS(8162), + [sym_end_statement] = ACTIONS(8164), + [aux_sym_on_goto_statement_token1] = ACTIONS(8162), + [aux_sym_on_goto_statement_token2] = ACTIONS(8162), + [aux_sym_on_error_statement_token2] = ACTIONS(8162), + [sym__ambiguous_redim_statement] = ACTIONS(8164), + [aux_sym_erase_statement_token1] = ACTIONS(8162), + [aux_sym_open_statement_token1] = ACTIONS(8162), + [aux_sym_file_mode_token2] = ACTIONS(8162), + [aux_sym_file_access_token2] = ACTIONS(8162), + [aux_sym_file_lock_token2] = ACTIONS(8162), + [aux_sym_print_statement_token1] = ACTIONS(8162), + [anon_sym_PLUS] = ACTIONS(8164), + [anon_sym_DASH] = ACTIONS(8162), + [anon_sym_SEMI] = ACTIONS(8164), + [anon_sym_QMARK] = ACTIONS(8164), + [aux_sym_close_statement_token1] = ACTIONS(8162), + [aux_sym_put_statement_token1] = ACTIONS(8162), + [aux_sym_unlock_statement_token1] = ACTIONS(8162), + [aux_sym_seek_statement_token1] = ACTIONS(8162), + [sym_reset_statement] = ACTIONS(8162), + [aux_sym_raise_event_statement_token1] = ACTIONS(8162), + [sym_stop_statement] = ACTIONS(8162), + [sym_beep_statement] = ACTIONS(8162), + [aux_sym_unload_statement_token1] = ACTIONS(8162), + [aux_sym_def_type_statement_token1] = ACTIONS(8162), + [aux_sym_def_type_statement_token2] = ACTIONS(8162), + [aux_sym_def_type_statement_token3] = ACTIONS(8162), + [aux_sym_def_type_statement_token4] = ACTIONS(8162), + [aux_sym_def_type_statement_token5] = ACTIONS(8162), + [aux_sym_def_type_statement_token6] = ACTIONS(8162), + [aux_sym_def_type_statement_token7] = ACTIONS(8162), + [aux_sym_def_type_statement_token8] = ACTIONS(8162), + [aux_sym_def_type_statement_token9] = ACTIONS(8162), + [aux_sym_def_type_statement_token10] = ACTIONS(8162), + [aux_sym_def_type_statement_token11] = ACTIONS(8162), + [aux_sym_def_type_statement_token12] = ACTIONS(8162), + [aux_sym_def_type_statement_token13] = ACTIONS(8162), + [aux_sym_def_type_statement_token14] = ACTIONS(8162), + [aux_sym_call_statement_token1] = ACTIONS(8162), + [sym__ambiguous_call_statement] = ACTIONS(8162), + [aux_sym_addressof_expression_token1] = ACTIONS(8162), + [aux_sym_type_of_expression_token1] = ACTIONS(8162), + [aux_sym_unary_expression_token1] = ACTIONS(8162), + [sym_string_literal] = ACTIONS(8164), + [sym_number_literal] = ACTIONS(8164), + [aux_sym_boolean_literal_token1] = ACTIONS(8162), + [aux_sym_boolean_literal_token2] = ACTIONS(8162), + [sym_nothing_literal] = ACTIONS(8162), + [sym_null_literal] = ACTIONS(8162), + [sym_empty_literal] = ACTIONS(8162), + [sym_date_literal] = ACTIONS(8164), + [anon_sym_POUND] = ACTIONS(8162), + }, + [STATE(5587)] = { + [sym_identifier] = ACTIONS(8162), + [sym_newline] = ACTIONS(8164), + [anon_sym_COLON] = ACTIONS(8164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8162), + [aux_sym_frm_property_statement_token1] = ACTIONS(8162), + [anon_sym_DOT] = ACTIONS(8162), + [anon_sym_BANG] = ACTIONS(8164), + [aux_sym__attribute_identifier_token1] = ACTIONS(8162), + [aux_sym_option_statement_token3] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8162), + [aux_sym_preprocessor_const_token1] = ACTIONS(8162), + [sym_static_modifier] = ACTIONS(8162), + [sym__dim_keyword] = ACTIONS(8162), + [sym__redim_keyword] = ACTIONS(8162), + [aux_sym_get_accessor_token1] = ACTIONS(8162), + [aux_sym_set_accessor_token1] = ACTIONS(8162), + [anon_sym_COMMA] = ACTIONS(8164), + [aux_sym_const_declaration_token1] = ACTIONS(8162), + [anon_sym_LPAREN] = ACTIONS(8164), + [aux_sym_as_type_clause_token2] = ACTIONS(8162), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8162), + [aux_sym_visibility_token1] = ACTIONS(8162), + [aux_sym_visibility_token2] = ACTIONS(8162), + [aux_sym_elseif_fragment_token1] = ACTIONS(8162), + [aux_sym_else_fragment_token1] = ACTIONS(8162), + [aux_sym_select_statement_token1] = ACTIONS(8162), + [aux_sym__for_header_token1] = ACTIONS(8162), + [aux_sym_do_statement_token1] = ACTIONS(8162), + [aux_sym_do_condition_token1] = ACTIONS(8162), + [aux_sym_with_statement_token1] = ACTIONS(8162), + [aux_sym_exit_statement_token1] = ACTIONS(8162), + [sym_end_statement] = ACTIONS(8164), + [aux_sym_on_goto_statement_token1] = ACTIONS(8162), + [aux_sym_on_goto_statement_token2] = ACTIONS(8162), + [aux_sym_on_error_statement_token2] = ACTIONS(8162), + [sym__ambiguous_redim_statement] = ACTIONS(8164), + [aux_sym_erase_statement_token1] = ACTIONS(8162), + [aux_sym_open_statement_token1] = ACTIONS(8162), + [aux_sym_file_mode_token2] = ACTIONS(8162), + [aux_sym_file_access_token2] = ACTIONS(8162), + [aux_sym_file_lock_token2] = ACTIONS(8162), + [aux_sym_print_statement_token1] = ACTIONS(8162), + [anon_sym_PLUS] = ACTIONS(8164), + [anon_sym_DASH] = ACTIONS(8162), + [anon_sym_SEMI] = ACTIONS(8164), + [anon_sym_QMARK] = ACTIONS(8164), + [aux_sym_close_statement_token1] = ACTIONS(8162), + [aux_sym_put_statement_token1] = ACTIONS(8162), + [aux_sym_unlock_statement_token1] = ACTIONS(8162), + [aux_sym_seek_statement_token1] = ACTIONS(8162), + [sym_reset_statement] = ACTIONS(8162), + [aux_sym_raise_event_statement_token1] = ACTIONS(8162), + [sym_stop_statement] = ACTIONS(8162), + [sym_beep_statement] = ACTIONS(8162), + [aux_sym_unload_statement_token1] = ACTIONS(8162), + [aux_sym_def_type_statement_token1] = ACTIONS(8162), + [aux_sym_def_type_statement_token2] = ACTIONS(8162), + [aux_sym_def_type_statement_token3] = ACTIONS(8162), + [aux_sym_def_type_statement_token4] = ACTIONS(8162), + [aux_sym_def_type_statement_token5] = ACTIONS(8162), + [aux_sym_def_type_statement_token6] = ACTIONS(8162), + [aux_sym_def_type_statement_token7] = ACTIONS(8162), + [aux_sym_def_type_statement_token8] = ACTIONS(8162), + [aux_sym_def_type_statement_token9] = ACTIONS(8162), + [aux_sym_def_type_statement_token10] = ACTIONS(8162), + [aux_sym_def_type_statement_token11] = ACTIONS(8162), + [aux_sym_def_type_statement_token12] = ACTIONS(8162), + [aux_sym_def_type_statement_token13] = ACTIONS(8162), + [aux_sym_def_type_statement_token14] = ACTIONS(8162), + [aux_sym_call_statement_token1] = ACTIONS(8162), + [sym__ambiguous_call_statement] = ACTIONS(8162), + [aux_sym_addressof_expression_token1] = ACTIONS(8162), + [aux_sym_type_of_expression_token1] = ACTIONS(8162), + [aux_sym_unary_expression_token1] = ACTIONS(8162), + [sym_string_literal] = ACTIONS(8164), + [sym_number_literal] = ACTIONS(8164), + [aux_sym_boolean_literal_token1] = ACTIONS(8162), + [aux_sym_boolean_literal_token2] = ACTIONS(8162), + [sym_nothing_literal] = ACTIONS(8162), + [sym_null_literal] = ACTIONS(8162), + [sym_empty_literal] = ACTIONS(8162), + [sym_date_literal] = ACTIONS(8164), + [anon_sym_POUND] = ACTIONS(8162), + }, + [STATE(5588)] = { + [aux_sym_def_type_statement_repeat1] = STATE(5588), + [sym_identifier] = ACTIONS(8357), + [sym_newline] = ACTIONS(8359), + [anon_sym_COLON] = ACTIONS(8359), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8357), + [aux_sym_frm_property_statement_token1] = ACTIONS(8357), + [anon_sym_DOT] = ACTIONS(8357), + [anon_sym_BANG] = ACTIONS(8359), + [aux_sym__attribute_identifier_token1] = ACTIONS(8357), + [aux_sym_option_statement_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8357), + [aux_sym_preprocessor_const_token1] = ACTIONS(8357), + [sym_static_modifier] = ACTIONS(8357), + [sym__dim_keyword] = ACTIONS(8357), + [sym__redim_keyword] = ACTIONS(8357), + [aux_sym_get_accessor_token1] = ACTIONS(8357), + [aux_sym_set_accessor_token1] = ACTIONS(8357), + [anon_sym_COMMA] = ACTIONS(10752), + [aux_sym_const_declaration_token1] = ACTIONS(8357), + [anon_sym_LPAREN] = ACTIONS(8359), + [aux_sym_as_type_clause_token2] = ACTIONS(8357), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8357), + [aux_sym_visibility_token1] = ACTIONS(8357), + [aux_sym_visibility_token2] = ACTIONS(8357), + [aux_sym_elseif_fragment_token1] = ACTIONS(8357), + [aux_sym_else_fragment_token1] = ACTIONS(8357), + [aux_sym_select_statement_token1] = ACTIONS(8357), + [aux_sym__for_header_token1] = ACTIONS(8357), + [aux_sym_do_statement_token1] = ACTIONS(8357), + [aux_sym_do_condition_token1] = ACTIONS(8357), + [aux_sym_with_statement_token1] = ACTIONS(8357), + [aux_sym_exit_statement_token1] = ACTIONS(8357), + [sym_end_statement] = ACTIONS(8359), + [aux_sym_on_goto_statement_token1] = ACTIONS(8357), + [aux_sym_on_goto_statement_token2] = ACTIONS(8357), + [aux_sym_on_error_statement_token2] = ACTIONS(8357), + [sym__ambiguous_redim_statement] = ACTIONS(8359), + [aux_sym_erase_statement_token1] = ACTIONS(8357), + [aux_sym_open_statement_token1] = ACTIONS(8357), + [aux_sym_file_mode_token2] = ACTIONS(8357), + [aux_sym_file_access_token2] = ACTIONS(8357), + [aux_sym_file_lock_token2] = ACTIONS(8357), + [aux_sym_print_statement_token1] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_QMARK] = ACTIONS(8359), + [aux_sym_close_statement_token1] = ACTIONS(8357), + [aux_sym_put_statement_token1] = ACTIONS(8357), + [aux_sym_unlock_statement_token1] = ACTIONS(8357), + [aux_sym_seek_statement_token1] = ACTIONS(8357), + [sym_reset_statement] = ACTIONS(8357), + [aux_sym_raise_event_statement_token1] = ACTIONS(8357), + [sym_stop_statement] = ACTIONS(8357), + [sym_beep_statement] = ACTIONS(8357), + [aux_sym_unload_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token2] = ACTIONS(8357), + [aux_sym_def_type_statement_token3] = ACTIONS(8357), + [aux_sym_def_type_statement_token4] = ACTIONS(8357), + [aux_sym_def_type_statement_token5] = ACTIONS(8357), + [aux_sym_def_type_statement_token6] = ACTIONS(8357), + [aux_sym_def_type_statement_token7] = ACTIONS(8357), + [aux_sym_def_type_statement_token8] = ACTIONS(8357), + [aux_sym_def_type_statement_token9] = ACTIONS(8357), + [aux_sym_def_type_statement_token10] = ACTIONS(8357), + [aux_sym_def_type_statement_token11] = ACTIONS(8357), + [aux_sym_def_type_statement_token12] = ACTIONS(8357), + [aux_sym_def_type_statement_token13] = ACTIONS(8357), + [aux_sym_def_type_statement_token14] = ACTIONS(8357), + [aux_sym_call_statement_token1] = ACTIONS(8357), + [sym__ambiguous_call_statement] = ACTIONS(8357), + [aux_sym_addressof_expression_token1] = ACTIONS(8357), + [aux_sym_type_of_expression_token1] = ACTIONS(8357), + [aux_sym_unary_expression_token1] = ACTIONS(8357), + [sym_string_literal] = ACTIONS(8359), + [sym_number_literal] = ACTIONS(8359), + [aux_sym_boolean_literal_token1] = ACTIONS(8357), + [aux_sym_boolean_literal_token2] = ACTIONS(8357), + [sym_nothing_literal] = ACTIONS(8357), + [sym_null_literal] = ACTIONS(8357), + [sym_empty_literal] = ACTIONS(8357), + [sym_date_literal] = ACTIONS(8359), + [anon_sym_POUND] = ACTIONS(8357), + }, + [STATE(5589)] = { + [sym_identifier] = ACTIONS(8081), + [sym_newline] = ACTIONS(8083), + [anon_sym_COLON] = ACTIONS(8083), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8081), + [aux_sym_frm_property_statement_token1] = ACTIONS(8081), + [anon_sym_EQ] = ACTIONS(8083), + [anon_sym_DOT] = ACTIONS(8081), + [anon_sym_BANG] = ACTIONS(8083), + [aux_sym__attribute_identifier_token1] = ACTIONS(8081), + [aux_sym_option_statement_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8081), + [aux_sym_preprocessor_const_token1] = ACTIONS(8081), + [sym_static_modifier] = ACTIONS(8081), + [sym__dim_keyword] = ACTIONS(8081), + [sym__redim_keyword] = ACTIONS(8081), + [aux_sym_get_accessor_token1] = ACTIONS(8081), + [aux_sym_set_accessor_token1] = ACTIONS(8081), + [anon_sym_COMMA] = ACTIONS(8083), + [aux_sym_const_declaration_token1] = ACTIONS(8081), + [anon_sym_LPAREN] = ACTIONS(8083), + [aux_sym_as_type_clause_token2] = ACTIONS(8081), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8081), + [aux_sym_visibility_token1] = ACTIONS(8081), + [aux_sym_visibility_token2] = ACTIONS(8081), + [aux_sym_elseif_fragment_token1] = ACTIONS(8081), + [aux_sym_else_fragment_token1] = ACTIONS(8081), + [aux_sym_select_statement_token1] = ACTIONS(8081), + [aux_sym__for_header_token1] = ACTIONS(8081), + [aux_sym_do_statement_token1] = ACTIONS(8081), + [aux_sym_do_condition_token1] = ACTIONS(8081), + [aux_sym_while_statement_token1] = ACTIONS(8081), + [aux_sym_with_statement_token1] = ACTIONS(8081), + [aux_sym_exit_statement_token1] = ACTIONS(8081), + [sym_end_statement] = ACTIONS(8083), + [aux_sym_on_goto_statement_token1] = ACTIONS(8081), + [aux_sym_on_goto_statement_token2] = ACTIONS(8081), + [aux_sym_on_error_statement_token2] = ACTIONS(8081), + [sym__ambiguous_redim_statement] = ACTIONS(8083), + [aux_sym_erase_statement_token1] = ACTIONS(8081), + [aux_sym_open_statement_token1] = ACTIONS(8081), + [aux_sym_file_mode_token2] = ACTIONS(8081), + [aux_sym_file_access_token2] = ACTIONS(8081), + [aux_sym_file_lock_token2] = ACTIONS(8081), + [aux_sym_print_statement_token1] = ACTIONS(8081), + [anon_sym_PLUS] = ACTIONS(8083), + [anon_sym_DASH] = ACTIONS(8081), + [anon_sym_QMARK] = ACTIONS(8083), + [aux_sym_close_statement_token1] = ACTIONS(8081), + [aux_sym_put_statement_token1] = ACTIONS(8081), + [aux_sym_unlock_statement_token1] = ACTIONS(8081), + [aux_sym_seek_statement_token1] = ACTIONS(8081), + [sym_reset_statement] = ACTIONS(8081), + [aux_sym_raise_event_statement_token1] = ACTIONS(8081), + [sym_stop_statement] = ACTIONS(8081), + [sym_beep_statement] = ACTIONS(8081), + [aux_sym_unload_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token2] = ACTIONS(8081), + [aux_sym_def_type_statement_token3] = ACTIONS(8081), + [aux_sym_def_type_statement_token4] = ACTIONS(8081), + [aux_sym_def_type_statement_token5] = ACTIONS(8081), + [aux_sym_def_type_statement_token6] = ACTIONS(8081), + [aux_sym_def_type_statement_token7] = ACTIONS(8081), + [aux_sym_def_type_statement_token8] = ACTIONS(8081), + [aux_sym_def_type_statement_token9] = ACTIONS(8081), + [aux_sym_def_type_statement_token10] = ACTIONS(8081), + [aux_sym_def_type_statement_token11] = ACTIONS(8081), + [aux_sym_def_type_statement_token12] = ACTIONS(8081), + [aux_sym_def_type_statement_token13] = ACTIONS(8081), + [aux_sym_def_type_statement_token14] = ACTIONS(8081), + [aux_sym_call_statement_token1] = ACTIONS(8081), + [sym__ambiguous_call_statement] = ACTIONS(8081), + [aux_sym_addressof_expression_token1] = ACTIONS(8081), + [aux_sym_type_of_expression_token1] = ACTIONS(8081), + [aux_sym_unary_expression_token1] = ACTIONS(8081), + [sym_string_literal] = ACTIONS(8083), + [sym_number_literal] = ACTIONS(8083), + [aux_sym_boolean_literal_token1] = ACTIONS(8081), + [aux_sym_boolean_literal_token2] = ACTIONS(8081), + [sym_nothing_literal] = ACTIONS(8081), + [sym_null_literal] = ACTIONS(8081), + [sym_empty_literal] = ACTIONS(8081), + [sym_date_literal] = ACTIONS(8083), + [anon_sym_POUND] = ACTIONS(8081), + }, + [STATE(5590)] = { + [sym_identifier] = ACTIONS(8525), + [sym_newline] = ACTIONS(8527), + [anon_sym_COLON] = ACTIONS(8527), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8525), + [aux_sym_frm_property_statement_token1] = ACTIONS(8525), + [anon_sym_EQ] = ACTIONS(8527), + [anon_sym_DOT] = ACTIONS(8525), + [anon_sym_BANG] = ACTIONS(8527), + [aux_sym__attribute_identifier_token1] = ACTIONS(8525), + [aux_sym_option_statement_token3] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8525), + [aux_sym_preprocessor_const_token1] = ACTIONS(8525), + [sym_static_modifier] = ACTIONS(8525), + [sym__dim_keyword] = ACTIONS(8525), + [sym__redim_keyword] = ACTIONS(8525), + [aux_sym_get_accessor_token1] = ACTIONS(8525), + [aux_sym_set_accessor_token1] = ACTIONS(8525), + [anon_sym_COMMA] = ACTIONS(8527), + [aux_sym_const_declaration_token1] = ACTIONS(8525), + [anon_sym_LPAREN] = ACTIONS(8527), + [aux_sym_as_type_clause_token2] = ACTIONS(8525), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8525), + [aux_sym_visibility_token1] = ACTIONS(8525), + [aux_sym_visibility_token2] = ACTIONS(8525), + [aux_sym_elseif_fragment_token1] = ACTIONS(8525), + [aux_sym_else_fragment_token1] = ACTIONS(8525), + [aux_sym_select_statement_token1] = ACTIONS(8525), + [aux_sym__for_header_token1] = ACTIONS(8525), + [aux_sym_do_statement_token1] = ACTIONS(8525), + [aux_sym_do_condition_token1] = ACTIONS(8525), + [aux_sym_while_statement_token1] = ACTIONS(8525), + [aux_sym_with_statement_token1] = ACTIONS(8525), + [aux_sym_exit_statement_token1] = ACTIONS(8525), + [sym_end_statement] = ACTIONS(8527), + [aux_sym_on_goto_statement_token1] = ACTIONS(8525), + [aux_sym_on_goto_statement_token2] = ACTIONS(8525), + [aux_sym_on_error_statement_token2] = ACTIONS(8525), + [sym__ambiguous_redim_statement] = ACTIONS(8527), + [aux_sym_erase_statement_token1] = ACTIONS(8525), + [aux_sym_open_statement_token1] = ACTIONS(8525), + [aux_sym_file_mode_token2] = ACTIONS(8525), + [aux_sym_file_access_token2] = ACTIONS(8525), + [aux_sym_file_lock_token2] = ACTIONS(8525), + [aux_sym_print_statement_token1] = ACTIONS(8525), + [anon_sym_PLUS] = ACTIONS(8527), + [anon_sym_DASH] = ACTIONS(8525), + [anon_sym_QMARK] = ACTIONS(8527), + [aux_sym_close_statement_token1] = ACTIONS(8525), + [aux_sym_put_statement_token1] = ACTIONS(8525), + [aux_sym_unlock_statement_token1] = ACTIONS(8525), + [aux_sym_seek_statement_token1] = ACTIONS(8525), + [sym_reset_statement] = ACTIONS(8525), + [aux_sym_raise_event_statement_token1] = ACTIONS(8525), + [sym_stop_statement] = ACTIONS(8525), + [sym_beep_statement] = ACTIONS(8525), + [aux_sym_unload_statement_token1] = ACTIONS(8525), + [aux_sym_def_type_statement_token1] = ACTIONS(8525), + [aux_sym_def_type_statement_token2] = ACTIONS(8525), + [aux_sym_def_type_statement_token3] = ACTIONS(8525), + [aux_sym_def_type_statement_token4] = ACTIONS(8525), + [aux_sym_def_type_statement_token5] = ACTIONS(8525), + [aux_sym_def_type_statement_token6] = ACTIONS(8525), + [aux_sym_def_type_statement_token7] = ACTIONS(8525), + [aux_sym_def_type_statement_token8] = ACTIONS(8525), + [aux_sym_def_type_statement_token9] = ACTIONS(8525), + [aux_sym_def_type_statement_token10] = ACTIONS(8525), + [aux_sym_def_type_statement_token11] = ACTIONS(8525), + [aux_sym_def_type_statement_token12] = ACTIONS(8525), + [aux_sym_def_type_statement_token13] = ACTIONS(8525), + [aux_sym_def_type_statement_token14] = ACTIONS(8525), + [aux_sym_call_statement_token1] = ACTIONS(8525), + [sym__ambiguous_call_statement] = ACTIONS(8525), + [aux_sym_addressof_expression_token1] = ACTIONS(8525), + [aux_sym_type_of_expression_token1] = ACTIONS(8525), + [aux_sym_unary_expression_token1] = ACTIONS(8525), + [sym_string_literal] = ACTIONS(8527), + [sym_number_literal] = ACTIONS(8527), + [aux_sym_boolean_literal_token1] = ACTIONS(8525), + [aux_sym_boolean_literal_token2] = ACTIONS(8525), + [sym_nothing_literal] = ACTIONS(8525), + [sym_null_literal] = ACTIONS(8525), + [sym_empty_literal] = ACTIONS(8525), + [sym_date_literal] = ACTIONS(8527), + [anon_sym_POUND] = ACTIONS(8525), + }, + [STATE(5591)] = { + [sym_identifier] = ACTIONS(8733), + [sym_newline] = ACTIONS(8735), + [anon_sym_COLON] = ACTIONS(8735), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8733), + [aux_sym_frm_property_statement_token1] = ACTIONS(8733), + [anon_sym_DOT] = ACTIONS(8733), + [anon_sym_BANG] = ACTIONS(8735), + [aux_sym__attribute_identifier_token1] = ACTIONS(8733), + [aux_sym_option_statement_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8733), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8733), + [aux_sym_preprocessor_const_token1] = ACTIONS(8733), + [sym_static_modifier] = ACTIONS(8733), + [sym__dim_keyword] = ACTIONS(8733), + [sym__redim_keyword] = ACTIONS(8733), + [aux_sym_get_accessor_token1] = ACTIONS(8733), + [aux_sym_set_accessor_token1] = ACTIONS(8733), + [aux_sym_const_declaration_token1] = ACTIONS(8733), + [anon_sym_LPAREN] = ACTIONS(8735), + [aux_sym_as_type_clause_token2] = ACTIONS(8733), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8733), + [aux_sym_visibility_token1] = ACTIONS(8733), + [aux_sym_visibility_token2] = ACTIONS(8733), + [aux_sym_elseif_fragment_token1] = ACTIONS(8733), + [aux_sym_else_fragment_token1] = ACTIONS(10351), + [aux_sym_select_statement_token1] = ACTIONS(8733), + [aux_sym__for_header_token1] = ACTIONS(8733), + [aux_sym_do_statement_token1] = ACTIONS(8733), + [aux_sym_do_condition_token1] = ACTIONS(8733), + [aux_sym_with_statement_token1] = ACTIONS(8733), + [aux_sym_exit_statement_token1] = ACTIONS(8733), + [sym_end_statement] = ACTIONS(8735), + [aux_sym_on_goto_statement_token1] = ACTIONS(8733), + [aux_sym_on_goto_statement_token2] = ACTIONS(8733), + [aux_sym_on_error_statement_token2] = ACTIONS(8733), + [sym__ambiguous_redim_statement] = ACTIONS(8735), + [aux_sym_erase_statement_token1] = ACTIONS(8733), + [aux_sym_open_statement_token1] = ACTIONS(8733), + [aux_sym_file_mode_token2] = ACTIONS(8733), + [aux_sym_file_access_token2] = ACTIONS(8733), + [aux_sym_file_lock_token2] = ACTIONS(8733), + [aux_sym_print_statement_token1] = ACTIONS(8733), + [anon_sym_PLUS] = ACTIONS(8735), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_QMARK] = ACTIONS(8735), + [aux_sym_close_statement_token1] = ACTIONS(8733), + [aux_sym_put_statement_token1] = ACTIONS(8733), + [aux_sym_unlock_statement_token1] = ACTIONS(8733), + [aux_sym_seek_statement_token1] = ACTIONS(8733), + [sym_reset_statement] = ACTIONS(8733), + [aux_sym_raise_event_statement_token1] = ACTIONS(8733), + [sym_stop_statement] = ACTIONS(8733), + [sym_beep_statement] = ACTIONS(8733), + [aux_sym_unload_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token2] = ACTIONS(8733), + [aux_sym_def_type_statement_token3] = ACTIONS(8733), + [aux_sym_def_type_statement_token4] = ACTIONS(8733), + [aux_sym_def_type_statement_token5] = ACTIONS(8733), + [aux_sym_def_type_statement_token6] = ACTIONS(8733), + [aux_sym_def_type_statement_token7] = ACTIONS(8733), + [aux_sym_def_type_statement_token8] = ACTIONS(8733), + [aux_sym_def_type_statement_token9] = ACTIONS(8733), + [aux_sym_def_type_statement_token10] = ACTIONS(8733), + [aux_sym_def_type_statement_token11] = ACTIONS(8733), + [aux_sym_def_type_statement_token12] = ACTIONS(8733), + [aux_sym_def_type_statement_token13] = ACTIONS(8733), + [aux_sym_def_type_statement_token14] = ACTIONS(8733), + [aux_sym_call_statement_token1] = ACTIONS(8733), + [sym__ambiguous_call_statement] = ACTIONS(8733), + [aux_sym_addressof_expression_token1] = ACTIONS(8733), + [aux_sym_type_of_expression_token1] = ACTIONS(8733), + [aux_sym_unary_expression_token1] = ACTIONS(8733), + [sym_string_literal] = ACTIONS(8735), + [sym_number_literal] = ACTIONS(8735), + [aux_sym_boolean_literal_token1] = ACTIONS(8733), + [aux_sym_boolean_literal_token2] = ACTIONS(8733), + [sym_nothing_literal] = ACTIONS(8733), + [sym_null_literal] = ACTIONS(8733), + [sym_empty_literal] = ACTIONS(8733), + [sym_date_literal] = ACTIONS(8735), + [anon_sym_POUND] = ACTIONS(8733), + }, + [STATE(5592)] = { + [sym_do_condition] = STATE(6579), + [sym_identifier] = ACTIONS(8595), + [sym_newline] = ACTIONS(8597), + [anon_sym_COLON] = ACTIONS(8597), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8595), + [aux_sym_frm_property_statement_token1] = ACTIONS(8595), + [anon_sym_DOT] = ACTIONS(8595), + [anon_sym_BANG] = ACTIONS(8597), + [aux_sym__attribute_identifier_token1] = ACTIONS(8595), + [aux_sym_option_statement_token3] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8595), + [aux_sym_preprocessor_const_token1] = ACTIONS(8595), + [sym_static_modifier] = ACTIONS(8595), + [sym__dim_keyword] = ACTIONS(8595), + [sym__redim_keyword] = ACTIONS(8595), + [aux_sym_get_accessor_token1] = ACTIONS(8595), + [aux_sym_set_accessor_token1] = ACTIONS(8595), + [aux_sym_const_declaration_token1] = ACTIONS(8595), + [anon_sym_LPAREN] = ACTIONS(8597), + [aux_sym_as_type_clause_token2] = ACTIONS(8595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8595), + [aux_sym_visibility_token1] = ACTIONS(8595), + [aux_sym_visibility_token2] = ACTIONS(8595), + [aux_sym_elseif_fragment_token1] = ACTIONS(8595), + [aux_sym_else_fragment_token1] = ACTIONS(8595), + [aux_sym_select_statement_token1] = ACTIONS(8595), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8595), + [aux_sym__for_header_token1] = ACTIONS(8595), + [aux_sym_do_statement_token1] = ACTIONS(8595), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8595), + [aux_sym_exit_statement_token1] = ACTIONS(8595), + [sym_end_statement] = ACTIONS(8597), + [aux_sym_on_goto_statement_token1] = ACTIONS(8595), + [aux_sym_on_goto_statement_token2] = ACTIONS(8595), + [aux_sym_on_error_statement_token2] = ACTIONS(8595), + [sym__ambiguous_redim_statement] = ACTIONS(8597), + [aux_sym_erase_statement_token1] = ACTIONS(8595), + [aux_sym_open_statement_token1] = ACTIONS(8595), + [aux_sym_file_mode_token2] = ACTIONS(8595), + [aux_sym_file_access_token2] = ACTIONS(8595), + [aux_sym_file_lock_token2] = ACTIONS(8595), + [aux_sym_print_statement_token1] = ACTIONS(8595), + [anon_sym_PLUS] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(8595), + [anon_sym_QMARK] = ACTIONS(8597), + [aux_sym_close_statement_token1] = ACTIONS(8595), + [aux_sym_put_statement_token1] = ACTIONS(8595), + [aux_sym_unlock_statement_token1] = ACTIONS(8595), + [aux_sym_seek_statement_token1] = ACTIONS(8595), + [sym_reset_statement] = ACTIONS(8595), + [aux_sym_raise_event_statement_token1] = ACTIONS(8595), + [sym_stop_statement] = ACTIONS(8595), + [sym_beep_statement] = ACTIONS(8595), + [aux_sym_unload_statement_token1] = ACTIONS(8595), + [aux_sym_def_type_statement_token1] = ACTIONS(8595), + [aux_sym_def_type_statement_token2] = ACTIONS(8595), + [aux_sym_def_type_statement_token3] = ACTIONS(8595), + [aux_sym_def_type_statement_token4] = ACTIONS(8595), + [aux_sym_def_type_statement_token5] = ACTIONS(8595), + [aux_sym_def_type_statement_token6] = ACTIONS(8595), + [aux_sym_def_type_statement_token7] = ACTIONS(8595), + [aux_sym_def_type_statement_token8] = ACTIONS(8595), + [aux_sym_def_type_statement_token9] = ACTIONS(8595), + [aux_sym_def_type_statement_token10] = ACTIONS(8595), + [aux_sym_def_type_statement_token11] = ACTIONS(8595), + [aux_sym_def_type_statement_token12] = ACTIONS(8595), + [aux_sym_def_type_statement_token13] = ACTIONS(8595), + [aux_sym_def_type_statement_token14] = ACTIONS(8595), + [aux_sym_call_statement_token1] = ACTIONS(8595), + [sym__ambiguous_call_statement] = ACTIONS(8595), + [aux_sym_addressof_expression_token1] = ACTIONS(8595), + [aux_sym_type_of_expression_token1] = ACTIONS(8595), + [aux_sym_unary_expression_token1] = ACTIONS(8595), + [sym_string_literal] = ACTIONS(8597), + [sym_number_literal] = ACTIONS(8597), + [aux_sym_boolean_literal_token1] = ACTIONS(8595), + [aux_sym_boolean_literal_token2] = ACTIONS(8595), + [sym_nothing_literal] = ACTIONS(8595), + [sym_null_literal] = ACTIONS(8595), + [sym_empty_literal] = ACTIONS(8595), + [sym_date_literal] = ACTIONS(8597), + [anon_sym_POUND] = ACTIONS(8595), + }, + [STATE(5593)] = { + [sym_do_condition] = STATE(6582), + [sym_identifier] = ACTIONS(8599), + [sym_newline] = ACTIONS(8601), + [anon_sym_COLON] = ACTIONS(8601), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8599), + [aux_sym_frm_property_statement_token1] = ACTIONS(8599), + [anon_sym_DOT] = ACTIONS(8599), + [anon_sym_BANG] = ACTIONS(8601), + [aux_sym__attribute_identifier_token1] = ACTIONS(8599), + [aux_sym_option_statement_token3] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8599), + [aux_sym_preprocessor_const_token1] = ACTIONS(8599), + [sym_static_modifier] = ACTIONS(8599), + [sym__dim_keyword] = ACTIONS(8599), + [sym__redim_keyword] = ACTIONS(8599), + [aux_sym_get_accessor_token1] = ACTIONS(8599), + [aux_sym_set_accessor_token1] = ACTIONS(8599), + [aux_sym_const_declaration_token1] = ACTIONS(8599), + [anon_sym_LPAREN] = ACTIONS(8601), + [aux_sym_as_type_clause_token2] = ACTIONS(8599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8599), + [aux_sym_visibility_token1] = ACTIONS(8599), + [aux_sym_visibility_token2] = ACTIONS(8599), + [aux_sym_elseif_fragment_token1] = ACTIONS(8599), + [aux_sym_else_fragment_token1] = ACTIONS(8599), + [aux_sym_select_statement_token1] = ACTIONS(8599), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8599), + [aux_sym__for_header_token1] = ACTIONS(8599), + [aux_sym_do_statement_token1] = ACTIONS(8599), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8599), + [aux_sym_exit_statement_token1] = ACTIONS(8599), + [sym_end_statement] = ACTIONS(8601), + [aux_sym_on_goto_statement_token1] = ACTIONS(8599), + [aux_sym_on_goto_statement_token2] = ACTIONS(8599), + [aux_sym_on_error_statement_token2] = ACTIONS(8599), + [sym__ambiguous_redim_statement] = ACTIONS(8601), + [aux_sym_erase_statement_token1] = ACTIONS(8599), + [aux_sym_open_statement_token1] = ACTIONS(8599), + [aux_sym_file_mode_token2] = ACTIONS(8599), + [aux_sym_file_access_token2] = ACTIONS(8599), + [aux_sym_file_lock_token2] = ACTIONS(8599), + [aux_sym_print_statement_token1] = ACTIONS(8599), + [anon_sym_PLUS] = ACTIONS(8601), + [anon_sym_DASH] = ACTIONS(8599), + [anon_sym_QMARK] = ACTIONS(8601), + [aux_sym_close_statement_token1] = ACTIONS(8599), + [aux_sym_put_statement_token1] = ACTIONS(8599), + [aux_sym_unlock_statement_token1] = ACTIONS(8599), + [aux_sym_seek_statement_token1] = ACTIONS(8599), + [sym_reset_statement] = ACTIONS(8599), + [aux_sym_raise_event_statement_token1] = ACTIONS(8599), + [sym_stop_statement] = ACTIONS(8599), + [sym_beep_statement] = ACTIONS(8599), + [aux_sym_unload_statement_token1] = ACTIONS(8599), + [aux_sym_def_type_statement_token1] = ACTIONS(8599), + [aux_sym_def_type_statement_token2] = ACTIONS(8599), + [aux_sym_def_type_statement_token3] = ACTIONS(8599), + [aux_sym_def_type_statement_token4] = ACTIONS(8599), + [aux_sym_def_type_statement_token5] = ACTIONS(8599), + [aux_sym_def_type_statement_token6] = ACTIONS(8599), + [aux_sym_def_type_statement_token7] = ACTIONS(8599), + [aux_sym_def_type_statement_token8] = ACTIONS(8599), + [aux_sym_def_type_statement_token9] = ACTIONS(8599), + [aux_sym_def_type_statement_token10] = ACTIONS(8599), + [aux_sym_def_type_statement_token11] = ACTIONS(8599), + [aux_sym_def_type_statement_token12] = ACTIONS(8599), + [aux_sym_def_type_statement_token13] = ACTIONS(8599), + [aux_sym_def_type_statement_token14] = ACTIONS(8599), + [aux_sym_call_statement_token1] = ACTIONS(8599), + [sym__ambiguous_call_statement] = ACTIONS(8599), + [aux_sym_addressof_expression_token1] = ACTIONS(8599), + [aux_sym_type_of_expression_token1] = ACTIONS(8599), + [aux_sym_unary_expression_token1] = ACTIONS(8599), + [sym_string_literal] = ACTIONS(8601), + [sym_number_literal] = ACTIONS(8601), + [aux_sym_boolean_literal_token1] = ACTIONS(8599), + [aux_sym_boolean_literal_token2] = ACTIONS(8599), + [sym_nothing_literal] = ACTIONS(8599), + [sym_null_literal] = ACTIONS(8599), + [sym_empty_literal] = ACTIONS(8599), + [sym_date_literal] = ACTIONS(8601), + [anon_sym_POUND] = ACTIONS(8599), + }, + [STATE(5594)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5116), + [sym_identifier] = ACTIONS(4172), + [sym_newline] = ACTIONS(4170), + [anon_sym_COLON] = ACTIONS(4170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4172), + [aux_sym_frm_property_statement_token1] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [aux_sym__attribute_identifier_token1] = ACTIONS(4172), + [aux_sym_option_statement_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4172), + [aux_sym_preprocessor_const_token1] = ACTIONS(4172), + [sym_static_modifier] = ACTIONS(4172), + [sym__dim_keyword] = ACTIONS(4172), + [sym__redim_keyword] = ACTIONS(4172), + [aux_sym_get_accessor_token1] = ACTIONS(4172), + [aux_sym_set_accessor_token1] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(5160), + [aux_sym_const_declaration_token1] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4170), + [aux_sym_as_type_clause_token2] = ACTIONS(4172), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4172), + [aux_sym_visibility_token1] = ACTIONS(4172), + [aux_sym_visibility_token2] = ACTIONS(4172), + [aux_sym_elseif_fragment_token1] = ACTIONS(4172), + [aux_sym_else_fragment_token1] = ACTIONS(4172), + [aux_sym_select_statement_token1] = ACTIONS(4172), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4172), + [aux_sym__for_header_token1] = ACTIONS(4172), + [aux_sym_do_statement_token1] = ACTIONS(4172), + [aux_sym_do_condition_token1] = ACTIONS(4172), + [aux_sym_with_statement_token1] = ACTIONS(4172), + [aux_sym_exit_statement_token1] = ACTIONS(4172), + [sym_end_statement] = ACTIONS(4170), + [aux_sym_on_goto_statement_token1] = ACTIONS(4172), + [aux_sym_on_goto_statement_token2] = ACTIONS(4172), + [aux_sym_on_error_statement_token2] = ACTIONS(4172), + [sym__ambiguous_redim_statement] = ACTIONS(4170), + [aux_sym_erase_statement_token1] = ACTIONS(4172), + [aux_sym_open_statement_token1] = ACTIONS(4172), + [aux_sym_file_mode_token2] = ACTIONS(4172), + [aux_sym_file_access_token2] = ACTIONS(4172), + [aux_sym_file_lock_token2] = ACTIONS(4172), + [aux_sym_print_statement_token1] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4172), + [anon_sym_QMARK] = ACTIONS(4170), + [aux_sym_close_statement_token1] = ACTIONS(4172), + [aux_sym_put_statement_token1] = ACTIONS(4172), + [aux_sym_unlock_statement_token1] = ACTIONS(4172), + [aux_sym_seek_statement_token1] = ACTIONS(4172), + [sym_reset_statement] = ACTIONS(4172), + [aux_sym_raise_event_statement_token1] = ACTIONS(4172), + [sym_stop_statement] = ACTIONS(4172), + [sym_beep_statement] = ACTIONS(4172), + [aux_sym_unload_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token2] = ACTIONS(4172), + [aux_sym_def_type_statement_token3] = ACTIONS(4172), + [aux_sym_def_type_statement_token4] = ACTIONS(4172), + [aux_sym_def_type_statement_token5] = ACTIONS(4172), + [aux_sym_def_type_statement_token6] = ACTIONS(4172), + [aux_sym_def_type_statement_token7] = ACTIONS(4172), + [aux_sym_def_type_statement_token8] = ACTIONS(4172), + [aux_sym_def_type_statement_token9] = ACTIONS(4172), + [aux_sym_def_type_statement_token10] = ACTIONS(4172), + [aux_sym_def_type_statement_token11] = ACTIONS(4172), + [aux_sym_def_type_statement_token12] = ACTIONS(4172), + [aux_sym_def_type_statement_token13] = ACTIONS(4172), + [aux_sym_def_type_statement_token14] = ACTIONS(4172), + [aux_sym_call_statement_token1] = ACTIONS(4172), + [sym__ambiguous_call_statement] = ACTIONS(4172), + [aux_sym_addressof_expression_token1] = ACTIONS(4172), + [aux_sym_type_of_expression_token1] = ACTIONS(4172), + [aux_sym_unary_expression_token1] = ACTIONS(4172), + [sym_string_literal] = ACTIONS(4170), + [sym_number_literal] = ACTIONS(4170), + [aux_sym_boolean_literal_token1] = ACTIONS(4172), + [aux_sym_boolean_literal_token2] = ACTIONS(4172), + [sym_nothing_literal] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4172), + [sym_empty_literal] = ACTIONS(4172), + [sym_date_literal] = ACTIONS(4170), + [anon_sym_POUND] = ACTIONS(4172), + }, + [STATE(5595)] = { + [sym_identifier] = ACTIONS(6629), + [sym_newline] = ACTIONS(6631), + [anon_sym_COLON] = ACTIONS(6631), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6629), + [aux_sym_frm_property_statement_token1] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6631), + [aux_sym__attribute_identifier_token1] = ACTIONS(6629), + [aux_sym_option_statement_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6629), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(6629), + [aux_sym_preprocessor_const_token1] = ACTIONS(6629), + [sym_static_modifier] = ACTIONS(6629), + [sym__dim_keyword] = ACTIONS(6629), + [sym__redim_keyword] = ACTIONS(6629), + [aux_sym_get_accessor_token1] = ACTIONS(6629), + [aux_sym_set_accessor_token1] = ACTIONS(6629), + [aux_sym_const_declaration_token1] = ACTIONS(6629), + [anon_sym_LPAREN] = ACTIONS(6631), + [aux_sym_as_type_clause_token2] = ACTIONS(6629), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6629), + [aux_sym_visibility_token1] = ACTIONS(6629), + [aux_sym_visibility_token2] = ACTIONS(6629), + [aux_sym_elseif_fragment_token1] = ACTIONS(6629), + [aux_sym_else_fragment_token1] = ACTIONS(6629), + [aux_sym_select_statement_token1] = ACTIONS(6629), + [aux_sym__for_header_token1] = ACTIONS(6629), + [aux_sym_do_statement_token1] = ACTIONS(6629), + [aux_sym_do_condition_token1] = ACTIONS(6629), + [aux_sym_with_statement_token1] = ACTIONS(6629), + [aux_sym_exit_statement_token1] = ACTIONS(6629), + [sym_end_statement] = ACTIONS(6631), + [aux_sym_on_goto_statement_token1] = ACTIONS(6629), + [aux_sym_on_goto_statement_token2] = ACTIONS(6629), + [aux_sym_on_error_statement_token2] = ACTIONS(6629), + [sym__ambiguous_redim_statement] = ACTIONS(6631), + [aux_sym_erase_statement_token1] = ACTIONS(6629), + [aux_sym_open_statement_token1] = ACTIONS(6629), + [aux_sym_file_mode_token2] = ACTIONS(6629), + [aux_sym_file_access_token2] = ACTIONS(6629), + [aux_sym_file_lock_token2] = ACTIONS(6629), + [aux_sym_print_statement_token1] = ACTIONS(6629), + [anon_sym_PLUS] = ACTIONS(6631), + [anon_sym_DASH] = ACTIONS(6629), + [anon_sym_QMARK] = ACTIONS(6631), + [aux_sym_close_statement_token1] = ACTIONS(6629), + [aux_sym_put_statement_token1] = ACTIONS(6629), + [aux_sym_unlock_statement_token1] = ACTIONS(6629), + [aux_sym_seek_statement_token1] = ACTIONS(6629), + [sym_reset_statement] = ACTIONS(6629), + [aux_sym_raise_event_statement_token1] = ACTIONS(6629), + [sym_stop_statement] = ACTIONS(6629), + [sym_beep_statement] = ACTIONS(6629), + [aux_sym_unload_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token2] = ACTIONS(6629), + [aux_sym_def_type_statement_token3] = ACTIONS(6629), + [aux_sym_def_type_statement_token4] = ACTIONS(6629), + [aux_sym_def_type_statement_token5] = ACTIONS(6629), + [aux_sym_def_type_statement_token6] = ACTIONS(6629), + [aux_sym_def_type_statement_token7] = ACTIONS(6629), + [aux_sym_def_type_statement_token8] = ACTIONS(6629), + [aux_sym_def_type_statement_token9] = ACTIONS(6629), + [aux_sym_def_type_statement_token10] = ACTIONS(6629), + [aux_sym_def_type_statement_token11] = ACTIONS(6629), + [aux_sym_def_type_statement_token12] = ACTIONS(6629), + [aux_sym_def_type_statement_token13] = ACTIONS(6629), + [aux_sym_def_type_statement_token14] = ACTIONS(6629), + [aux_sym_call_statement_token1] = ACTIONS(6629), + [sym__ambiguous_call_statement] = ACTIONS(6629), + [aux_sym_addressof_expression_token1] = ACTIONS(6629), + [aux_sym_type_of_expression_token1] = ACTIONS(6629), + [aux_sym_unary_expression_token1] = ACTIONS(6629), + [sym_string_literal] = ACTIONS(6631), + [sym_number_literal] = ACTIONS(6631), + [aux_sym_boolean_literal_token1] = ACTIONS(6629), + [aux_sym_boolean_literal_token2] = ACTIONS(6629), + [sym_nothing_literal] = ACTIONS(6629), + [sym_null_literal] = ACTIONS(6629), + [sym_empty_literal] = ACTIONS(6629), + [sym_date_literal] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6629), + }, + [STATE(5596)] = { + [sym_identifier] = ACTIONS(8501), + [sym_newline] = ACTIONS(8503), + [anon_sym_COLON] = ACTIONS(8503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8501), + [aux_sym_frm_property_statement_token1] = ACTIONS(8501), + [anon_sym_DOT] = ACTIONS(8501), + [anon_sym_BANG] = ACTIONS(8503), + [aux_sym__attribute_identifier_token1] = ACTIONS(8501), + [aux_sym_option_statement_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8501), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8501), + [aux_sym_preprocessor_const_token1] = ACTIONS(8501), + [sym_static_modifier] = ACTIONS(8501), + [sym__dim_keyword] = ACTIONS(8501), + [sym__redim_keyword] = ACTIONS(8501), + [aux_sym_get_accessor_token1] = ACTIONS(8501), + [aux_sym_set_accessor_token1] = ACTIONS(8501), + [aux_sym_const_declaration_token1] = ACTIONS(8501), + [anon_sym_LPAREN] = ACTIONS(8503), + [aux_sym_as_type_clause_token2] = ACTIONS(8501), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8501), + [aux_sym_visibility_token1] = ACTIONS(8501), + [aux_sym_visibility_token2] = ACTIONS(8501), + [aux_sym_elseif_fragment_token1] = ACTIONS(8501), + [aux_sym_else_fragment_token1] = ACTIONS(8501), + [aux_sym_select_statement_token1] = ACTIONS(8501), + [aux_sym__for_header_token1] = ACTIONS(8501), + [aux_sym_do_statement_token1] = ACTIONS(8501), + [aux_sym_do_condition_token1] = ACTIONS(8501), + [aux_sym_with_statement_token1] = ACTIONS(8501), + [aux_sym_exit_statement_token1] = ACTIONS(8501), + [sym_end_statement] = ACTIONS(8503), + [aux_sym_on_goto_statement_token1] = ACTIONS(8501), + [aux_sym_on_goto_statement_token2] = ACTIONS(8501), + [aux_sym_on_error_statement_token2] = ACTIONS(8501), + [sym__ambiguous_redim_statement] = ACTIONS(8503), + [aux_sym_erase_statement_token1] = ACTIONS(8501), + [aux_sym_open_statement_token1] = ACTIONS(8501), + [aux_sym_file_mode_token2] = ACTIONS(8501), + [aux_sym_file_access_token2] = ACTIONS(8501), + [aux_sym_file_lock_token2] = ACTIONS(8501), + [aux_sym_print_statement_token1] = ACTIONS(8501), + [anon_sym_PLUS] = ACTIONS(8503), + [anon_sym_DASH] = ACTIONS(8501), + [anon_sym_QMARK] = ACTIONS(8503), + [aux_sym_close_statement_token1] = ACTIONS(8501), + [aux_sym_put_statement_token1] = ACTIONS(8501), + [aux_sym_unlock_statement_token1] = ACTIONS(8501), + [aux_sym_seek_statement_token1] = ACTIONS(8501), + [sym_reset_statement] = ACTIONS(8501), + [aux_sym_raise_event_statement_token1] = ACTIONS(8501), + [sym_stop_statement] = ACTIONS(8501), + [sym_beep_statement] = ACTIONS(8501), + [aux_sym_unload_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token2] = ACTIONS(8501), + [aux_sym_def_type_statement_token3] = ACTIONS(8501), + [aux_sym_def_type_statement_token4] = ACTIONS(8501), + [aux_sym_def_type_statement_token5] = ACTIONS(8501), + [aux_sym_def_type_statement_token6] = ACTIONS(8501), + [aux_sym_def_type_statement_token7] = ACTIONS(8501), + [aux_sym_def_type_statement_token8] = ACTIONS(8501), + [aux_sym_def_type_statement_token9] = ACTIONS(8501), + [aux_sym_def_type_statement_token10] = ACTIONS(8501), + [aux_sym_def_type_statement_token11] = ACTIONS(8501), + [aux_sym_def_type_statement_token12] = ACTIONS(8501), + [aux_sym_def_type_statement_token13] = ACTIONS(8501), + [aux_sym_def_type_statement_token14] = ACTIONS(8501), + [aux_sym_call_statement_token1] = ACTIONS(8501), + [sym__ambiguous_call_statement] = ACTIONS(8501), + [aux_sym_addressof_expression_token1] = ACTIONS(8501), + [aux_sym_type_of_expression_token1] = ACTIONS(8501), + [aux_sym_unary_expression_token1] = ACTIONS(8501), + [sym_string_literal] = ACTIONS(8503), + [sym_number_literal] = ACTIONS(8503), + [aux_sym_boolean_literal_token1] = ACTIONS(8501), + [aux_sym_boolean_literal_token2] = ACTIONS(8501), + [sym_nothing_literal] = ACTIONS(8501), + [sym_null_literal] = ACTIONS(8501), + [sym_empty_literal] = ACTIONS(8501), + [sym_date_literal] = ACTIONS(8503), + [anon_sym_POUND] = ACTIONS(8501), + }, + [STATE(5597)] = { + [sym_identifier] = ACTIONS(8509), + [sym_newline] = ACTIONS(8511), + [anon_sym_COLON] = ACTIONS(8511), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8509), + [aux_sym_frm_property_statement_token1] = ACTIONS(8509), + [anon_sym_DOT] = ACTIONS(8509), + [anon_sym_BANG] = ACTIONS(8511), + [aux_sym__attribute_identifier_token1] = ACTIONS(8509), + [aux_sym_option_statement_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8509), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8509), + [aux_sym_preprocessor_const_token1] = ACTIONS(8509), + [sym_static_modifier] = ACTIONS(8509), + [sym__dim_keyword] = ACTIONS(8509), + [sym__redim_keyword] = ACTIONS(8509), + [aux_sym_get_accessor_token1] = ACTIONS(8509), + [aux_sym_set_accessor_token1] = ACTIONS(8509), + [aux_sym_const_declaration_token1] = ACTIONS(8509), + [anon_sym_LPAREN] = ACTIONS(8511), + [aux_sym_as_type_clause_token2] = ACTIONS(8509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8509), + [aux_sym_visibility_token1] = ACTIONS(8509), + [aux_sym_visibility_token2] = ACTIONS(8509), + [aux_sym_elseif_fragment_token1] = ACTIONS(8509), + [aux_sym_else_fragment_token1] = ACTIONS(8509), + [aux_sym_select_statement_token1] = ACTIONS(8509), + [aux_sym__for_header_token1] = ACTIONS(8509), + [aux_sym_do_statement_token1] = ACTIONS(8509), + [aux_sym_do_condition_token1] = ACTIONS(8509), + [aux_sym_with_statement_token1] = ACTIONS(8509), + [aux_sym_exit_statement_token1] = ACTIONS(8509), + [sym_end_statement] = ACTIONS(8511), + [aux_sym_on_goto_statement_token1] = ACTIONS(8509), + [aux_sym_on_goto_statement_token2] = ACTIONS(8509), + [aux_sym_on_error_statement_token2] = ACTIONS(8509), + [sym__ambiguous_redim_statement] = ACTIONS(8511), + [aux_sym_erase_statement_token1] = ACTIONS(8509), + [aux_sym_open_statement_token1] = ACTIONS(8509), + [aux_sym_file_mode_token2] = ACTIONS(8509), + [aux_sym_file_access_token2] = ACTIONS(8509), + [aux_sym_file_lock_token2] = ACTIONS(8509), + [aux_sym_print_statement_token1] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(8511), + [anon_sym_DASH] = ACTIONS(8509), + [anon_sym_QMARK] = ACTIONS(8511), + [aux_sym_close_statement_token1] = ACTIONS(8509), + [aux_sym_put_statement_token1] = ACTIONS(8509), + [aux_sym_unlock_statement_token1] = ACTIONS(8509), + [aux_sym_seek_statement_token1] = ACTIONS(8509), + [sym_reset_statement] = ACTIONS(8509), + [aux_sym_raise_event_statement_token1] = ACTIONS(8509), + [sym_stop_statement] = ACTIONS(8509), + [sym_beep_statement] = ACTIONS(8509), + [aux_sym_unload_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token2] = ACTIONS(8509), + [aux_sym_def_type_statement_token3] = ACTIONS(8509), + [aux_sym_def_type_statement_token4] = ACTIONS(8509), + [aux_sym_def_type_statement_token5] = ACTIONS(8509), + [aux_sym_def_type_statement_token6] = ACTIONS(8509), + [aux_sym_def_type_statement_token7] = ACTIONS(8509), + [aux_sym_def_type_statement_token8] = ACTIONS(8509), + [aux_sym_def_type_statement_token9] = ACTIONS(8509), + [aux_sym_def_type_statement_token10] = ACTIONS(8509), + [aux_sym_def_type_statement_token11] = ACTIONS(8509), + [aux_sym_def_type_statement_token12] = ACTIONS(8509), + [aux_sym_def_type_statement_token13] = ACTIONS(8509), + [aux_sym_def_type_statement_token14] = ACTIONS(8509), + [aux_sym_call_statement_token1] = ACTIONS(8509), + [sym__ambiguous_call_statement] = ACTIONS(8509), + [aux_sym_addressof_expression_token1] = ACTIONS(8509), + [aux_sym_type_of_expression_token1] = ACTIONS(8509), + [aux_sym_unary_expression_token1] = ACTIONS(8509), + [sym_string_literal] = ACTIONS(8511), + [sym_number_literal] = ACTIONS(8511), + [aux_sym_boolean_literal_token1] = ACTIONS(8509), + [aux_sym_boolean_literal_token2] = ACTIONS(8509), + [sym_nothing_literal] = ACTIONS(8509), + [sym_null_literal] = ACTIONS(8509), + [sym_empty_literal] = ACTIONS(8509), + [sym_date_literal] = ACTIONS(8511), + [anon_sym_POUND] = ACTIONS(8509), + }, + [STATE(5598)] = { + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(5598), + [sym_identifier] = ACTIONS(8109), + [sym_newline] = ACTIONS(8111), + [anon_sym_COLON] = ACTIONS(8111), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8109), + [aux_sym_frm_property_statement_token1] = ACTIONS(8109), + [anon_sym_DOT] = ACTIONS(8109), + [anon_sym_BANG] = ACTIONS(8111), + [aux_sym__attribute_identifier_token1] = ACTIONS(8109), + [aux_sym_option_statement_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8109), + [aux_sym_preprocessor_const_token1] = ACTIONS(8109), + [sym_static_modifier] = ACTIONS(8109), + [sym__dim_keyword] = ACTIONS(8109), + [sym__redim_keyword] = ACTIONS(8109), + [aux_sym_get_accessor_token1] = ACTIONS(8109), + [aux_sym_set_accessor_token1] = ACTIONS(8109), + [aux_sym_const_declaration_token1] = ACTIONS(8109), + [anon_sym_LPAREN] = ACTIONS(8111), + [aux_sym_as_type_clause_token2] = ACTIONS(8109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8109), + [aux_sym_visibility_token1] = ACTIONS(8109), + [aux_sym_visibility_token2] = ACTIONS(8109), + [aux_sym_elseif_fragment_token1] = ACTIONS(8109), + [aux_sym_else_fragment_token1] = ACTIONS(8109), + [aux_sym_select_statement_token1] = ACTIONS(8109), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8109), + [aux_sym__for_header_token1] = ACTIONS(8109), + [aux_sym_do_statement_token1] = ACTIONS(8109), + [aux_sym_do_condition_token1] = ACTIONS(8109), + [aux_sym_with_statement_token1] = ACTIONS(8109), + [aux_sym_exit_statement_token1] = ACTIONS(8109), + [sym_end_statement] = ACTIONS(8111), + [aux_sym_on_goto_statement_token1] = ACTIONS(8109), + [aux_sym_on_goto_statement_token2] = ACTIONS(8109), + [aux_sym_on_error_statement_token2] = ACTIONS(8109), + [sym__ambiguous_redim_statement] = ACTIONS(8111), + [aux_sym_erase_statement_token1] = ACTIONS(8109), + [aux_sym_open_statement_token1] = ACTIONS(8109), + [aux_sym_file_mode_token2] = ACTIONS(8109), + [aux_sym_file_access_token2] = ACTIONS(8109), + [aux_sym_file_lock_token2] = ACTIONS(8109), + [aux_sym_print_statement_token1] = ACTIONS(8109), + [anon_sym_PLUS] = ACTIONS(8111), + [anon_sym_DASH] = ACTIONS(8109), + [anon_sym_SEMI] = ACTIONS(10755), + [anon_sym_QMARK] = ACTIONS(8111), + [aux_sym_close_statement_token1] = ACTIONS(8109), + [aux_sym_put_statement_token1] = ACTIONS(8109), + [aux_sym_unlock_statement_token1] = ACTIONS(8109), + [aux_sym_seek_statement_token1] = ACTIONS(8109), + [sym_reset_statement] = ACTIONS(8109), + [aux_sym_raise_event_statement_token1] = ACTIONS(8109), + [sym_stop_statement] = ACTIONS(8109), + [sym_beep_statement] = ACTIONS(8109), + [aux_sym_unload_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token2] = ACTIONS(8109), + [aux_sym_def_type_statement_token3] = ACTIONS(8109), + [aux_sym_def_type_statement_token4] = ACTIONS(8109), + [aux_sym_def_type_statement_token5] = ACTIONS(8109), + [aux_sym_def_type_statement_token6] = ACTIONS(8109), + [aux_sym_def_type_statement_token7] = ACTIONS(8109), + [aux_sym_def_type_statement_token8] = ACTIONS(8109), + [aux_sym_def_type_statement_token9] = ACTIONS(8109), + [aux_sym_def_type_statement_token10] = ACTIONS(8109), + [aux_sym_def_type_statement_token11] = ACTIONS(8109), + [aux_sym_def_type_statement_token12] = ACTIONS(8109), + [aux_sym_def_type_statement_token13] = ACTIONS(8109), + [aux_sym_def_type_statement_token14] = ACTIONS(8109), + [aux_sym_call_statement_token1] = ACTIONS(8109), + [sym__ambiguous_call_statement] = ACTIONS(8109), + [aux_sym_addressof_expression_token1] = ACTIONS(8109), + [aux_sym_type_of_expression_token1] = ACTIONS(8109), + [aux_sym_unary_expression_token1] = ACTIONS(8109), + [sym_string_literal] = ACTIONS(8111), + [sym_number_literal] = ACTIONS(8111), + [aux_sym_boolean_literal_token1] = ACTIONS(8109), + [aux_sym_boolean_literal_token2] = ACTIONS(8109), + [sym_nothing_literal] = ACTIONS(8109), + [sym_null_literal] = ACTIONS(8109), + [sym_empty_literal] = ACTIONS(8109), + [sym_date_literal] = ACTIONS(8111), + [anon_sym_POUND] = ACTIONS(8109), + }, + [STATE(5599)] = { + [aux_sym_close_statement_repeat1] = STATE(5352), + [sym_identifier] = ACTIONS(8265), + [sym_newline] = ACTIONS(8267), + [anon_sym_COLON] = ACTIONS(8267), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8265), + [aux_sym_frm_property_statement_token1] = ACTIONS(8265), + [anon_sym_DOT] = ACTIONS(8265), + [anon_sym_BANG] = ACTIONS(8267), + [aux_sym__attribute_identifier_token1] = ACTIONS(8265), + [aux_sym_option_statement_token3] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8265), + [aux_sym_preprocessor_const_token1] = ACTIONS(8265), + [sym_static_modifier] = ACTIONS(8265), + [sym__dim_keyword] = ACTIONS(8265), + [sym__redim_keyword] = ACTIONS(8265), + [aux_sym_get_accessor_token1] = ACTIONS(8265), + [aux_sym_set_accessor_token1] = ACTIONS(8265), + [anon_sym_COMMA] = ACTIONS(10562), + [aux_sym_const_declaration_token1] = ACTIONS(8265), + [anon_sym_LPAREN] = ACTIONS(8267), + [aux_sym_as_type_clause_token2] = ACTIONS(8265), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8265), + [aux_sym_visibility_token1] = ACTIONS(8265), + [aux_sym_visibility_token2] = ACTIONS(8265), + [aux_sym_elseif_fragment_token1] = ACTIONS(8265), + [aux_sym_else_fragment_token1] = ACTIONS(8265), + [aux_sym_select_statement_token1] = ACTIONS(8265), + [aux_sym__for_header_token1] = ACTIONS(8265), + [aux_sym_do_statement_token1] = ACTIONS(8265), + [aux_sym_do_condition_token1] = ACTIONS(8265), + [aux_sym_with_statement_token1] = ACTIONS(8265), + [aux_sym_exit_statement_token1] = ACTIONS(8265), + [sym_end_statement] = ACTIONS(8267), + [aux_sym_on_goto_statement_token1] = ACTIONS(8265), + [aux_sym_on_goto_statement_token2] = ACTIONS(8265), + [aux_sym_on_error_statement_token2] = ACTIONS(8265), + [sym__ambiguous_redim_statement] = ACTIONS(8267), + [aux_sym_erase_statement_token1] = ACTIONS(8265), + [aux_sym_open_statement_token1] = ACTIONS(8265), + [aux_sym_file_mode_token2] = ACTIONS(8265), + [aux_sym_file_access_token2] = ACTIONS(8265), + [aux_sym_file_lock_token2] = ACTIONS(8265), + [aux_sym_print_statement_token1] = ACTIONS(8265), + [anon_sym_PLUS] = ACTIONS(8267), + [anon_sym_DASH] = ACTIONS(8265), + [anon_sym_QMARK] = ACTIONS(8267), + [aux_sym_close_statement_token1] = ACTIONS(8265), + [aux_sym_put_statement_token1] = ACTIONS(8265), + [aux_sym_unlock_statement_token1] = ACTIONS(8265), + [aux_sym_seek_statement_token1] = ACTIONS(8265), + [sym_reset_statement] = ACTIONS(8265), + [aux_sym_raise_event_statement_token1] = ACTIONS(8265), + [sym_stop_statement] = ACTIONS(8265), + [sym_beep_statement] = ACTIONS(8265), + [aux_sym_unload_statement_token1] = ACTIONS(8265), + [aux_sym_def_type_statement_token1] = ACTIONS(8265), + [aux_sym_def_type_statement_token2] = ACTIONS(8265), + [aux_sym_def_type_statement_token3] = ACTIONS(8265), + [aux_sym_def_type_statement_token4] = ACTIONS(8265), + [aux_sym_def_type_statement_token5] = ACTIONS(8265), + [aux_sym_def_type_statement_token6] = ACTIONS(8265), + [aux_sym_def_type_statement_token7] = ACTIONS(8265), + [aux_sym_def_type_statement_token8] = ACTIONS(8265), + [aux_sym_def_type_statement_token9] = ACTIONS(8265), + [aux_sym_def_type_statement_token10] = ACTIONS(8265), + [aux_sym_def_type_statement_token11] = ACTIONS(8265), + [aux_sym_def_type_statement_token12] = ACTIONS(8265), + [aux_sym_def_type_statement_token13] = ACTIONS(8265), + [aux_sym_def_type_statement_token14] = ACTIONS(8265), + [aux_sym_call_statement_token1] = ACTIONS(8265), + [sym__ambiguous_call_statement] = ACTIONS(8265), + [aux_sym_addressof_expression_token1] = ACTIONS(8265), + [aux_sym_type_of_expression_token1] = ACTIONS(8265), + [aux_sym_unary_expression_token1] = ACTIONS(8265), + [sym_string_literal] = ACTIONS(8267), + [sym_number_literal] = ACTIONS(8267), + [aux_sym_boolean_literal_token1] = ACTIONS(8265), + [aux_sym_boolean_literal_token2] = ACTIONS(8265), + [sym_nothing_literal] = ACTIONS(8265), + [sym_null_literal] = ACTIONS(8265), + [sym_empty_literal] = ACTIONS(8265), + [sym_date_literal] = ACTIONS(8267), + [anon_sym_POUND] = ACTIONS(8265), + }, + [STATE(5600)] = { + [sym_identifier] = ACTIONS(9332), + [sym_newline] = ACTIONS(9334), + [anon_sym_COLON] = ACTIONS(9334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9332), + [aux_sym_frm_property_statement_token1] = ACTIONS(9332), + [anon_sym_DOT] = ACTIONS(9332), + [anon_sym_BANG] = ACTIONS(9334), + [aux_sym__attribute_identifier_token1] = ACTIONS(9332), + [aux_sym_option_statement_token3] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9332), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9332), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9332), + [aux_sym_preprocessor_const_token1] = ACTIONS(9332), + [sym_static_modifier] = ACTIONS(9332), + [sym__dim_keyword] = ACTIONS(9332), + [sym__redim_keyword] = ACTIONS(9332), + [aux_sym_get_accessor_token1] = ACTIONS(9332), + [aux_sym_set_accessor_token1] = ACTIONS(9332), + [aux_sym_const_declaration_token1] = ACTIONS(9332), + [anon_sym_LPAREN] = ACTIONS(9334), + [aux_sym_as_type_clause_token2] = ACTIONS(9332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9332), + [aux_sym_visibility_token1] = ACTIONS(9332), + [aux_sym_visibility_token2] = ACTIONS(9332), + [aux_sym_elseif_fragment_token1] = ACTIONS(9332), + [aux_sym_else_fragment_token1] = ACTIONS(9332), + [aux_sym_select_statement_token1] = ACTIONS(9332), + [aux_sym__for_header_token1] = ACTIONS(9332), + [aux_sym_do_statement_token1] = ACTIONS(9332), + [aux_sym_do_condition_token1] = ACTIONS(9332), + [aux_sym_with_statement_token1] = ACTIONS(9332), + [aux_sym_exit_statement_token1] = ACTIONS(9332), + [sym_end_statement] = ACTIONS(9334), + [aux_sym_on_goto_statement_token1] = ACTIONS(9332), + [aux_sym_on_goto_statement_token2] = ACTIONS(9332), + [aux_sym_on_error_statement_token2] = ACTIONS(9332), + [sym__ambiguous_redim_statement] = ACTIONS(9334), + [aux_sym_erase_statement_token1] = ACTIONS(9332), + [aux_sym_open_statement_token1] = ACTIONS(9332), + [aux_sym_file_mode_token2] = ACTIONS(9332), + [aux_sym_file_access_token2] = ACTIONS(9332), + [aux_sym_file_lock_token2] = ACTIONS(9332), + [aux_sym_print_statement_token1] = ACTIONS(9332), + [anon_sym_PLUS] = ACTIONS(9334), + [anon_sym_DASH] = ACTIONS(9332), + [anon_sym_QMARK] = ACTIONS(9334), + [aux_sym_close_statement_token1] = ACTIONS(9332), + [aux_sym_put_statement_token1] = ACTIONS(9332), + [aux_sym_unlock_statement_token1] = ACTIONS(9332), + [aux_sym_seek_statement_token1] = ACTIONS(9332), + [sym_reset_statement] = ACTIONS(9332), + [aux_sym_raise_event_statement_token1] = ACTIONS(9332), + [sym_stop_statement] = ACTIONS(9332), + [sym_beep_statement] = ACTIONS(9332), + [aux_sym_unload_statement_token1] = ACTIONS(9332), + [aux_sym_def_type_statement_token1] = ACTIONS(9332), + [aux_sym_def_type_statement_token2] = ACTIONS(9332), + [aux_sym_def_type_statement_token3] = ACTIONS(9332), + [aux_sym_def_type_statement_token4] = ACTIONS(9332), + [aux_sym_def_type_statement_token5] = ACTIONS(9332), + [aux_sym_def_type_statement_token6] = ACTIONS(9332), + [aux_sym_def_type_statement_token7] = ACTIONS(9332), + [aux_sym_def_type_statement_token8] = ACTIONS(9332), + [aux_sym_def_type_statement_token9] = ACTIONS(9332), + [aux_sym_def_type_statement_token10] = ACTIONS(9332), + [aux_sym_def_type_statement_token11] = ACTIONS(9332), + [aux_sym_def_type_statement_token12] = ACTIONS(9332), + [aux_sym_def_type_statement_token13] = ACTIONS(9332), + [aux_sym_def_type_statement_token14] = ACTIONS(9332), + [aux_sym_call_statement_token1] = ACTIONS(9332), + [sym__ambiguous_call_statement] = ACTIONS(9332), + [aux_sym_addressof_expression_token1] = ACTIONS(9332), + [aux_sym_type_of_expression_token1] = ACTIONS(9332), + [aux_sym_unary_expression_token1] = ACTIONS(9332), + [sym_string_literal] = ACTIONS(9334), + [sym_number_literal] = ACTIONS(9334), + [aux_sym_boolean_literal_token1] = ACTIONS(9332), + [aux_sym_boolean_literal_token2] = ACTIONS(9332), + [sym_nothing_literal] = ACTIONS(9332), + [sym_null_literal] = ACTIONS(9332), + [sym_empty_literal] = ACTIONS(9332), + [sym_date_literal] = ACTIONS(9334), + [anon_sym_POUND] = ACTIONS(9332), + }, + [STATE(5601)] = { + [sym_identifier] = ACTIONS(9336), + [sym_newline] = ACTIONS(9338), + [anon_sym_COLON] = ACTIONS(9338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9336), + [aux_sym_frm_property_statement_token1] = ACTIONS(9336), + [anon_sym_DOT] = ACTIONS(9336), + [anon_sym_BANG] = ACTIONS(9338), + [aux_sym__attribute_identifier_token1] = ACTIONS(9336), + [aux_sym_option_statement_token3] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9336), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9336), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9336), + [aux_sym_preprocessor_const_token1] = ACTIONS(9336), + [sym_static_modifier] = ACTIONS(9336), + [sym__dim_keyword] = ACTIONS(9336), + [sym__redim_keyword] = ACTIONS(9336), + [aux_sym_get_accessor_token1] = ACTIONS(9336), + [aux_sym_set_accessor_token1] = ACTIONS(9336), + [aux_sym_const_declaration_token1] = ACTIONS(9336), + [anon_sym_LPAREN] = ACTIONS(9338), + [aux_sym_as_type_clause_token2] = ACTIONS(9336), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9336), + [aux_sym_visibility_token1] = ACTIONS(9336), + [aux_sym_visibility_token2] = ACTIONS(9336), + [aux_sym_elseif_fragment_token1] = ACTIONS(9336), + [aux_sym_else_fragment_token1] = ACTIONS(9336), + [aux_sym_select_statement_token1] = ACTIONS(9336), + [aux_sym__for_header_token1] = ACTIONS(9336), + [aux_sym_do_statement_token1] = ACTIONS(9336), + [aux_sym_do_condition_token1] = ACTIONS(9336), + [aux_sym_with_statement_token1] = ACTIONS(9336), + [aux_sym_exit_statement_token1] = ACTIONS(9336), + [sym_end_statement] = ACTIONS(9338), + [aux_sym_on_goto_statement_token1] = ACTIONS(9336), + [aux_sym_on_goto_statement_token2] = ACTIONS(9336), + [aux_sym_on_error_statement_token2] = ACTIONS(9336), + [sym__ambiguous_redim_statement] = ACTIONS(9338), + [aux_sym_erase_statement_token1] = ACTIONS(9336), + [aux_sym_open_statement_token1] = ACTIONS(9336), + [aux_sym_file_mode_token2] = ACTIONS(9336), + [aux_sym_file_access_token2] = ACTIONS(9336), + [aux_sym_file_lock_token2] = ACTIONS(9336), + [aux_sym_print_statement_token1] = ACTIONS(9336), + [anon_sym_PLUS] = ACTIONS(9338), + [anon_sym_DASH] = ACTIONS(9336), + [anon_sym_QMARK] = ACTIONS(9338), + [aux_sym_close_statement_token1] = ACTIONS(9336), + [aux_sym_put_statement_token1] = ACTIONS(9336), + [aux_sym_unlock_statement_token1] = ACTIONS(9336), + [aux_sym_seek_statement_token1] = ACTIONS(9336), + [sym_reset_statement] = ACTIONS(9336), + [aux_sym_raise_event_statement_token1] = ACTIONS(9336), + [sym_stop_statement] = ACTIONS(9336), + [sym_beep_statement] = ACTIONS(9336), + [aux_sym_unload_statement_token1] = ACTIONS(9336), + [aux_sym_def_type_statement_token1] = ACTIONS(9336), + [aux_sym_def_type_statement_token2] = ACTIONS(9336), + [aux_sym_def_type_statement_token3] = ACTIONS(9336), + [aux_sym_def_type_statement_token4] = ACTIONS(9336), + [aux_sym_def_type_statement_token5] = ACTIONS(9336), + [aux_sym_def_type_statement_token6] = ACTIONS(9336), + [aux_sym_def_type_statement_token7] = ACTIONS(9336), + [aux_sym_def_type_statement_token8] = ACTIONS(9336), + [aux_sym_def_type_statement_token9] = ACTIONS(9336), + [aux_sym_def_type_statement_token10] = ACTIONS(9336), + [aux_sym_def_type_statement_token11] = ACTIONS(9336), + [aux_sym_def_type_statement_token12] = ACTIONS(9336), + [aux_sym_def_type_statement_token13] = ACTIONS(9336), + [aux_sym_def_type_statement_token14] = ACTIONS(9336), + [aux_sym_call_statement_token1] = ACTIONS(9336), + [sym__ambiguous_call_statement] = ACTIONS(9336), + [aux_sym_addressof_expression_token1] = ACTIONS(9336), + [aux_sym_type_of_expression_token1] = ACTIONS(9336), + [aux_sym_unary_expression_token1] = ACTIONS(9336), + [sym_string_literal] = ACTIONS(9338), + [sym_number_literal] = ACTIONS(9338), + [aux_sym_boolean_literal_token1] = ACTIONS(9336), + [aux_sym_boolean_literal_token2] = ACTIONS(9336), + [sym_nothing_literal] = ACTIONS(9336), + [sym_null_literal] = ACTIONS(9336), + [sym_empty_literal] = ACTIONS(9336), + [sym_date_literal] = ACTIONS(9338), + [anon_sym_POUND] = ACTIONS(9336), + }, + [STATE(5602)] = { + [sym_identifier] = ACTIONS(9340), + [sym_newline] = ACTIONS(9342), + [anon_sym_COLON] = ACTIONS(9342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9340), + [aux_sym_frm_property_statement_token1] = ACTIONS(9340), + [anon_sym_DOT] = ACTIONS(9340), + [anon_sym_BANG] = ACTIONS(9342), + [aux_sym__attribute_identifier_token1] = ACTIONS(9340), + [aux_sym_option_statement_token3] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9340), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9340), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9340), + [aux_sym_preprocessor_const_token1] = ACTIONS(9340), + [sym_static_modifier] = ACTIONS(9340), + [sym__dim_keyword] = ACTIONS(9340), + [sym__redim_keyword] = ACTIONS(9340), + [aux_sym_get_accessor_token1] = ACTIONS(9340), + [aux_sym_set_accessor_token1] = ACTIONS(9340), + [aux_sym_const_declaration_token1] = ACTIONS(9340), + [anon_sym_LPAREN] = ACTIONS(9342), + [aux_sym_as_type_clause_token2] = ACTIONS(9340), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9340), + [aux_sym_visibility_token1] = ACTIONS(9340), + [aux_sym_visibility_token2] = ACTIONS(9340), + [aux_sym_elseif_fragment_token1] = ACTIONS(9340), + [aux_sym_else_fragment_token1] = ACTIONS(9340), + [aux_sym_select_statement_token1] = ACTIONS(9340), + [aux_sym__for_header_token1] = ACTIONS(9340), + [aux_sym_do_statement_token1] = ACTIONS(9340), + [aux_sym_do_condition_token1] = ACTIONS(9340), + [aux_sym_with_statement_token1] = ACTIONS(9340), + [aux_sym_exit_statement_token1] = ACTIONS(9340), + [sym_end_statement] = ACTIONS(9342), + [aux_sym_on_goto_statement_token1] = ACTIONS(9340), + [aux_sym_on_goto_statement_token2] = ACTIONS(9340), + [aux_sym_on_error_statement_token2] = ACTIONS(9340), + [sym__ambiguous_redim_statement] = ACTIONS(9342), + [aux_sym_erase_statement_token1] = ACTIONS(9340), + [aux_sym_open_statement_token1] = ACTIONS(9340), + [aux_sym_file_mode_token2] = ACTIONS(9340), + [aux_sym_file_access_token2] = ACTIONS(9340), + [aux_sym_file_lock_token2] = ACTIONS(9340), + [aux_sym_print_statement_token1] = ACTIONS(9340), + [anon_sym_PLUS] = ACTIONS(9342), + [anon_sym_DASH] = ACTIONS(9340), + [anon_sym_QMARK] = ACTIONS(9342), + [aux_sym_close_statement_token1] = ACTIONS(9340), + [aux_sym_put_statement_token1] = ACTIONS(9340), + [aux_sym_unlock_statement_token1] = ACTIONS(9340), + [aux_sym_seek_statement_token1] = ACTIONS(9340), + [sym_reset_statement] = ACTIONS(9340), + [aux_sym_raise_event_statement_token1] = ACTIONS(9340), + [sym_stop_statement] = ACTIONS(9340), + [sym_beep_statement] = ACTIONS(9340), + [aux_sym_unload_statement_token1] = ACTIONS(9340), + [aux_sym_def_type_statement_token1] = ACTIONS(9340), + [aux_sym_def_type_statement_token2] = ACTIONS(9340), + [aux_sym_def_type_statement_token3] = ACTIONS(9340), + [aux_sym_def_type_statement_token4] = ACTIONS(9340), + [aux_sym_def_type_statement_token5] = ACTIONS(9340), + [aux_sym_def_type_statement_token6] = ACTIONS(9340), + [aux_sym_def_type_statement_token7] = ACTIONS(9340), + [aux_sym_def_type_statement_token8] = ACTIONS(9340), + [aux_sym_def_type_statement_token9] = ACTIONS(9340), + [aux_sym_def_type_statement_token10] = ACTIONS(9340), + [aux_sym_def_type_statement_token11] = ACTIONS(9340), + [aux_sym_def_type_statement_token12] = ACTIONS(9340), + [aux_sym_def_type_statement_token13] = ACTIONS(9340), + [aux_sym_def_type_statement_token14] = ACTIONS(9340), + [aux_sym_call_statement_token1] = ACTIONS(9340), + [sym__ambiguous_call_statement] = ACTIONS(9340), + [aux_sym_addressof_expression_token1] = ACTIONS(9340), + [aux_sym_type_of_expression_token1] = ACTIONS(9340), + [aux_sym_unary_expression_token1] = ACTIONS(9340), + [sym_string_literal] = ACTIONS(9342), + [sym_number_literal] = ACTIONS(9342), + [aux_sym_boolean_literal_token1] = ACTIONS(9340), + [aux_sym_boolean_literal_token2] = ACTIONS(9340), + [sym_nothing_literal] = ACTIONS(9340), + [sym_null_literal] = ACTIONS(9340), + [sym_empty_literal] = ACTIONS(9340), + [sym_date_literal] = ACTIONS(9342), + [anon_sym_POUND] = ACTIONS(9340), + }, + [STATE(5603)] = { + [sym_identifier] = ACTIONS(9344), + [sym_newline] = ACTIONS(9346), + [anon_sym_COLON] = ACTIONS(9346), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9344), + [aux_sym_frm_property_statement_token1] = ACTIONS(9344), + [anon_sym_DOT] = ACTIONS(9344), + [anon_sym_BANG] = ACTIONS(9346), + [aux_sym__attribute_identifier_token1] = ACTIONS(9344), + [aux_sym_option_statement_token3] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9344), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9344), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9344), + [aux_sym_preprocessor_const_token1] = ACTIONS(9344), + [sym_static_modifier] = ACTIONS(9344), + [sym__dim_keyword] = ACTIONS(9344), + [sym__redim_keyword] = ACTIONS(9344), + [aux_sym_get_accessor_token1] = ACTIONS(9344), + [aux_sym_set_accessor_token1] = ACTIONS(9344), + [aux_sym_const_declaration_token1] = ACTIONS(9344), + [anon_sym_LPAREN] = ACTIONS(9346), + [aux_sym_as_type_clause_token2] = ACTIONS(9344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9344), + [aux_sym_visibility_token1] = ACTIONS(9344), + [aux_sym_visibility_token2] = ACTIONS(9344), + [aux_sym_elseif_fragment_token1] = ACTIONS(9344), + [aux_sym_else_fragment_token1] = ACTIONS(9344), + [aux_sym_select_statement_token1] = ACTIONS(9344), + [aux_sym__for_header_token1] = ACTIONS(9344), + [aux_sym_do_statement_token1] = ACTIONS(9344), + [aux_sym_do_condition_token1] = ACTIONS(9344), + [aux_sym_with_statement_token1] = ACTIONS(9344), + [aux_sym_exit_statement_token1] = ACTIONS(9344), + [sym_end_statement] = ACTIONS(9346), + [aux_sym_on_goto_statement_token1] = ACTIONS(9344), + [aux_sym_on_goto_statement_token2] = ACTIONS(9344), + [aux_sym_on_error_statement_token2] = ACTIONS(9344), + [sym__ambiguous_redim_statement] = ACTIONS(9346), + [aux_sym_erase_statement_token1] = ACTIONS(9344), + [aux_sym_open_statement_token1] = ACTIONS(9344), + [aux_sym_file_mode_token2] = ACTIONS(9344), + [aux_sym_file_access_token2] = ACTIONS(9344), + [aux_sym_file_lock_token2] = ACTIONS(9344), + [aux_sym_print_statement_token1] = ACTIONS(9344), + [anon_sym_PLUS] = ACTIONS(9346), + [anon_sym_DASH] = ACTIONS(9344), + [anon_sym_QMARK] = ACTIONS(9346), + [aux_sym_close_statement_token1] = ACTIONS(9344), + [aux_sym_put_statement_token1] = ACTIONS(9344), + [aux_sym_unlock_statement_token1] = ACTIONS(9344), + [aux_sym_seek_statement_token1] = ACTIONS(9344), + [sym_reset_statement] = ACTIONS(9344), + [aux_sym_raise_event_statement_token1] = ACTIONS(9344), + [sym_stop_statement] = ACTIONS(9344), + [sym_beep_statement] = ACTIONS(9344), + [aux_sym_unload_statement_token1] = ACTIONS(9344), + [aux_sym_def_type_statement_token1] = ACTIONS(9344), + [aux_sym_def_type_statement_token2] = ACTIONS(9344), + [aux_sym_def_type_statement_token3] = ACTIONS(9344), + [aux_sym_def_type_statement_token4] = ACTIONS(9344), + [aux_sym_def_type_statement_token5] = ACTIONS(9344), + [aux_sym_def_type_statement_token6] = ACTIONS(9344), + [aux_sym_def_type_statement_token7] = ACTIONS(9344), + [aux_sym_def_type_statement_token8] = ACTIONS(9344), + [aux_sym_def_type_statement_token9] = ACTIONS(9344), + [aux_sym_def_type_statement_token10] = ACTIONS(9344), + [aux_sym_def_type_statement_token11] = ACTIONS(9344), + [aux_sym_def_type_statement_token12] = ACTIONS(9344), + [aux_sym_def_type_statement_token13] = ACTIONS(9344), + [aux_sym_def_type_statement_token14] = ACTIONS(9344), + [aux_sym_call_statement_token1] = ACTIONS(9344), + [sym__ambiguous_call_statement] = ACTIONS(9344), + [aux_sym_addressof_expression_token1] = ACTIONS(9344), + [aux_sym_type_of_expression_token1] = ACTIONS(9344), + [aux_sym_unary_expression_token1] = ACTIONS(9344), + [sym_string_literal] = ACTIONS(9346), + [sym_number_literal] = ACTIONS(9346), + [aux_sym_boolean_literal_token1] = ACTIONS(9344), + [aux_sym_boolean_literal_token2] = ACTIONS(9344), + [sym_nothing_literal] = ACTIONS(9344), + [sym_null_literal] = ACTIONS(9344), + [sym_empty_literal] = ACTIONS(9344), + [sym_date_literal] = ACTIONS(9346), + [anon_sym_POUND] = ACTIONS(9344), + }, + [STATE(5604)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5660), + [sym_identifier] = ACTIONS(8529), + [sym_newline] = ACTIONS(8531), + [anon_sym_COLON] = ACTIONS(8531), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8529), + [aux_sym_frm_property_statement_token1] = ACTIONS(8529), + [anon_sym_DOT] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(8531), + [aux_sym__attribute_identifier_token1] = ACTIONS(8529), + [aux_sym_option_statement_token3] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8529), + [aux_sym_preprocessor_const_token1] = ACTIONS(8529), + [sym_static_modifier] = ACTIONS(8529), + [sym__dim_keyword] = ACTIONS(8529), + [sym__redim_keyword] = ACTIONS(8529), + [aux_sym_get_accessor_token1] = ACTIONS(8529), + [aux_sym_set_accessor_token1] = ACTIONS(8529), + [anon_sym_COMMA] = ACTIONS(10758), + [aux_sym_const_declaration_token1] = ACTIONS(8529), + [anon_sym_LPAREN] = ACTIONS(8531), + [aux_sym_as_type_clause_token2] = ACTIONS(8529), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8529), + [aux_sym_visibility_token1] = ACTIONS(8529), + [aux_sym_visibility_token2] = ACTIONS(8529), + [aux_sym_elseif_fragment_token1] = ACTIONS(8529), + [aux_sym_else_fragment_token1] = ACTIONS(8529), + [aux_sym_select_statement_token1] = ACTIONS(8529), + [aux_sym_select_statement_token2] = ACTIONS(8529), + [aux_sym__for_header_token1] = ACTIONS(8529), + [aux_sym_do_statement_token1] = ACTIONS(8529), + [aux_sym_do_condition_token1] = ACTIONS(8529), + [aux_sym_with_statement_token1] = ACTIONS(8529), + [aux_sym_exit_statement_token1] = ACTIONS(8529), + [sym_end_statement] = ACTIONS(8531), + [aux_sym_on_goto_statement_token1] = ACTIONS(8529), + [aux_sym_on_goto_statement_token2] = ACTIONS(8529), + [aux_sym_on_error_statement_token2] = ACTIONS(8529), + [sym__ambiguous_redim_statement] = ACTIONS(8531), + [aux_sym_erase_statement_token1] = ACTIONS(8529), + [aux_sym_open_statement_token1] = ACTIONS(8529), + [aux_sym_file_mode_token2] = ACTIONS(8529), + [aux_sym_file_access_token2] = ACTIONS(8529), + [aux_sym_file_lock_token2] = ACTIONS(8529), + [aux_sym_print_statement_token1] = ACTIONS(8529), + [anon_sym_PLUS] = ACTIONS(8531), + [anon_sym_DASH] = ACTIONS(8529), + [anon_sym_QMARK] = ACTIONS(8531), + [aux_sym_close_statement_token1] = ACTIONS(8529), + [aux_sym_put_statement_token1] = ACTIONS(8529), + [aux_sym_unlock_statement_token1] = ACTIONS(8529), + [aux_sym_seek_statement_token1] = ACTIONS(8529), + [sym_reset_statement] = ACTIONS(8529), + [aux_sym_raise_event_statement_token1] = ACTIONS(8529), + [sym_stop_statement] = ACTIONS(8529), + [sym_beep_statement] = ACTIONS(8529), + [aux_sym_unload_statement_token1] = ACTIONS(8529), + [aux_sym_def_type_statement_token1] = ACTIONS(8529), + [aux_sym_def_type_statement_token2] = ACTIONS(8529), + [aux_sym_def_type_statement_token3] = ACTIONS(8529), + [aux_sym_def_type_statement_token4] = ACTIONS(8529), + [aux_sym_def_type_statement_token5] = ACTIONS(8529), + [aux_sym_def_type_statement_token6] = ACTIONS(8529), + [aux_sym_def_type_statement_token7] = ACTIONS(8529), + [aux_sym_def_type_statement_token8] = ACTIONS(8529), + [aux_sym_def_type_statement_token9] = ACTIONS(8529), + [aux_sym_def_type_statement_token10] = ACTIONS(8529), + [aux_sym_def_type_statement_token11] = ACTIONS(8529), + [aux_sym_def_type_statement_token12] = ACTIONS(8529), + [aux_sym_def_type_statement_token13] = ACTIONS(8529), + [aux_sym_def_type_statement_token14] = ACTIONS(8529), + [aux_sym_call_statement_token1] = ACTIONS(8529), + [sym__ambiguous_call_statement] = ACTIONS(8529), + [aux_sym_addressof_expression_token1] = ACTIONS(8529), + [aux_sym_type_of_expression_token1] = ACTIONS(8529), + [aux_sym_unary_expression_token1] = ACTIONS(8529), + [sym_string_literal] = ACTIONS(8531), + [sym_number_literal] = ACTIONS(8531), + [aux_sym_boolean_literal_token1] = ACTIONS(8529), + [aux_sym_boolean_literal_token2] = ACTIONS(8529), + [sym_nothing_literal] = ACTIONS(8529), + [sym_null_literal] = ACTIONS(8529), + [sym_empty_literal] = ACTIONS(8529), + [sym_date_literal] = ACTIONS(8531), + [anon_sym_POUND] = ACTIONS(8529), + }, + [STATE(5605)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5661), + [sym_identifier] = ACTIONS(8540), + [sym_newline] = ACTIONS(8542), + [anon_sym_COLON] = ACTIONS(8542), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8540), + [aux_sym_frm_property_statement_token1] = ACTIONS(8540), + [anon_sym_DOT] = ACTIONS(8540), + [anon_sym_BANG] = ACTIONS(8542), + [aux_sym__attribute_identifier_token1] = ACTIONS(8540), + [aux_sym_option_statement_token3] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8540), + [aux_sym_preprocessor_const_token1] = ACTIONS(8540), + [sym_static_modifier] = ACTIONS(8540), + [sym__dim_keyword] = ACTIONS(8540), + [sym__redim_keyword] = ACTIONS(8540), + [aux_sym_get_accessor_token1] = ACTIONS(8540), + [aux_sym_set_accessor_token1] = ACTIONS(8540), + [anon_sym_COMMA] = ACTIONS(10758), + [aux_sym_const_declaration_token1] = ACTIONS(8540), + [anon_sym_LPAREN] = ACTIONS(8542), + [aux_sym_as_type_clause_token2] = ACTIONS(8540), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8540), + [aux_sym_visibility_token1] = ACTIONS(8540), + [aux_sym_visibility_token2] = ACTIONS(8540), + [aux_sym_elseif_fragment_token1] = ACTIONS(8540), + [aux_sym_else_fragment_token1] = ACTIONS(8540), + [aux_sym_select_statement_token1] = ACTIONS(8540), + [aux_sym_select_statement_token2] = ACTIONS(8540), + [aux_sym__for_header_token1] = ACTIONS(8540), + [aux_sym_do_statement_token1] = ACTIONS(8540), + [aux_sym_do_condition_token1] = ACTIONS(8540), + [aux_sym_with_statement_token1] = ACTIONS(8540), + [aux_sym_exit_statement_token1] = ACTIONS(8540), + [sym_end_statement] = ACTIONS(8542), + [aux_sym_on_goto_statement_token1] = ACTIONS(8540), + [aux_sym_on_goto_statement_token2] = ACTIONS(8540), + [aux_sym_on_error_statement_token2] = ACTIONS(8540), + [sym__ambiguous_redim_statement] = ACTIONS(8542), + [aux_sym_erase_statement_token1] = ACTIONS(8540), + [aux_sym_open_statement_token1] = ACTIONS(8540), + [aux_sym_file_mode_token2] = ACTIONS(8540), + [aux_sym_file_access_token2] = ACTIONS(8540), + [aux_sym_file_lock_token2] = ACTIONS(8540), + [aux_sym_print_statement_token1] = ACTIONS(8540), + [anon_sym_PLUS] = ACTIONS(8542), + [anon_sym_DASH] = ACTIONS(8540), + [anon_sym_QMARK] = ACTIONS(8542), + [aux_sym_close_statement_token1] = ACTIONS(8540), + [aux_sym_put_statement_token1] = ACTIONS(8540), + [aux_sym_unlock_statement_token1] = ACTIONS(8540), + [aux_sym_seek_statement_token1] = ACTIONS(8540), + [sym_reset_statement] = ACTIONS(8540), + [aux_sym_raise_event_statement_token1] = ACTIONS(8540), + [sym_stop_statement] = ACTIONS(8540), + [sym_beep_statement] = ACTIONS(8540), + [aux_sym_unload_statement_token1] = ACTIONS(8540), + [aux_sym_def_type_statement_token1] = ACTIONS(8540), + [aux_sym_def_type_statement_token2] = ACTIONS(8540), + [aux_sym_def_type_statement_token3] = ACTIONS(8540), + [aux_sym_def_type_statement_token4] = ACTIONS(8540), + [aux_sym_def_type_statement_token5] = ACTIONS(8540), + [aux_sym_def_type_statement_token6] = ACTIONS(8540), + [aux_sym_def_type_statement_token7] = ACTIONS(8540), + [aux_sym_def_type_statement_token8] = ACTIONS(8540), + [aux_sym_def_type_statement_token9] = ACTIONS(8540), + [aux_sym_def_type_statement_token10] = ACTIONS(8540), + [aux_sym_def_type_statement_token11] = ACTIONS(8540), + [aux_sym_def_type_statement_token12] = ACTIONS(8540), + [aux_sym_def_type_statement_token13] = ACTIONS(8540), + [aux_sym_def_type_statement_token14] = ACTIONS(8540), + [aux_sym_call_statement_token1] = ACTIONS(8540), + [sym__ambiguous_call_statement] = ACTIONS(8540), + [aux_sym_addressof_expression_token1] = ACTIONS(8540), + [aux_sym_type_of_expression_token1] = ACTIONS(8540), + [aux_sym_unary_expression_token1] = ACTIONS(8540), + [sym_string_literal] = ACTIONS(8542), + [sym_number_literal] = ACTIONS(8542), + [aux_sym_boolean_literal_token1] = ACTIONS(8540), + [aux_sym_boolean_literal_token2] = ACTIONS(8540), + [sym_nothing_literal] = ACTIONS(8540), + [sym_null_literal] = ACTIONS(8540), + [sym_empty_literal] = ACTIONS(8540), + [sym_date_literal] = ACTIONS(8542), + [anon_sym_POUND] = ACTIONS(8540), + }, + [STATE(5606)] = { + [sym_identifier] = ACTIONS(9348), + [sym_newline] = ACTIONS(9350), + [anon_sym_COLON] = ACTIONS(9350), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9348), + [aux_sym_frm_property_statement_token1] = ACTIONS(9348), + [anon_sym_DOT] = ACTIONS(9348), + [anon_sym_BANG] = ACTIONS(9350), + [aux_sym__attribute_identifier_token1] = ACTIONS(9348), + [aux_sym_option_statement_token3] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9348), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9348), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9348), + [aux_sym_preprocessor_const_token1] = ACTIONS(9348), + [sym_static_modifier] = ACTIONS(9348), + [sym__dim_keyword] = ACTIONS(9348), + [sym__redim_keyword] = ACTIONS(9348), + [aux_sym_get_accessor_token1] = ACTIONS(9348), + [aux_sym_set_accessor_token1] = ACTIONS(9348), + [aux_sym_const_declaration_token1] = ACTIONS(9348), + [anon_sym_LPAREN] = ACTIONS(9350), + [aux_sym_as_type_clause_token2] = ACTIONS(9348), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9348), + [aux_sym_visibility_token1] = ACTIONS(9348), + [aux_sym_visibility_token2] = ACTIONS(9348), + [aux_sym_elseif_fragment_token1] = ACTIONS(9348), + [aux_sym_else_fragment_token1] = ACTIONS(9348), + [aux_sym_select_statement_token1] = ACTIONS(9348), + [aux_sym__for_header_token1] = ACTIONS(9348), + [aux_sym_do_statement_token1] = ACTIONS(9348), + [aux_sym_do_condition_token1] = ACTIONS(9348), + [aux_sym_with_statement_token1] = ACTIONS(9348), + [aux_sym_exit_statement_token1] = ACTIONS(9348), + [sym_end_statement] = ACTIONS(9350), + [aux_sym_on_goto_statement_token1] = ACTIONS(9348), + [aux_sym_on_goto_statement_token2] = ACTIONS(9348), + [aux_sym_on_error_statement_token2] = ACTIONS(9348), + [sym__ambiguous_redim_statement] = ACTIONS(9350), + [aux_sym_erase_statement_token1] = ACTIONS(9348), + [aux_sym_open_statement_token1] = ACTIONS(9348), + [aux_sym_file_mode_token2] = ACTIONS(9348), + [aux_sym_file_access_token2] = ACTIONS(9348), + [aux_sym_file_lock_token2] = ACTIONS(9348), + [aux_sym_print_statement_token1] = ACTIONS(9348), + [anon_sym_PLUS] = ACTIONS(9350), + [anon_sym_DASH] = ACTIONS(9348), + [anon_sym_QMARK] = ACTIONS(9350), + [aux_sym_close_statement_token1] = ACTIONS(9348), + [aux_sym_put_statement_token1] = ACTIONS(9348), + [aux_sym_unlock_statement_token1] = ACTIONS(9348), + [aux_sym_seek_statement_token1] = ACTIONS(9348), + [sym_reset_statement] = ACTIONS(9348), + [aux_sym_raise_event_statement_token1] = ACTIONS(9348), + [sym_stop_statement] = ACTIONS(9348), + [sym_beep_statement] = ACTIONS(9348), + [aux_sym_unload_statement_token1] = ACTIONS(9348), + [aux_sym_def_type_statement_token1] = ACTIONS(9348), + [aux_sym_def_type_statement_token2] = ACTIONS(9348), + [aux_sym_def_type_statement_token3] = ACTIONS(9348), + [aux_sym_def_type_statement_token4] = ACTIONS(9348), + [aux_sym_def_type_statement_token5] = ACTIONS(9348), + [aux_sym_def_type_statement_token6] = ACTIONS(9348), + [aux_sym_def_type_statement_token7] = ACTIONS(9348), + [aux_sym_def_type_statement_token8] = ACTIONS(9348), + [aux_sym_def_type_statement_token9] = ACTIONS(9348), + [aux_sym_def_type_statement_token10] = ACTIONS(9348), + [aux_sym_def_type_statement_token11] = ACTIONS(9348), + [aux_sym_def_type_statement_token12] = ACTIONS(9348), + [aux_sym_def_type_statement_token13] = ACTIONS(9348), + [aux_sym_def_type_statement_token14] = ACTIONS(9348), + [aux_sym_call_statement_token1] = ACTIONS(9348), + [sym__ambiguous_call_statement] = ACTIONS(9348), + [aux_sym_addressof_expression_token1] = ACTIONS(9348), + [aux_sym_type_of_expression_token1] = ACTIONS(9348), + [aux_sym_unary_expression_token1] = ACTIONS(9348), + [sym_string_literal] = ACTIONS(9350), + [sym_number_literal] = ACTIONS(9350), + [aux_sym_boolean_literal_token1] = ACTIONS(9348), + [aux_sym_boolean_literal_token2] = ACTIONS(9348), + [sym_nothing_literal] = ACTIONS(9348), + [sym_null_literal] = ACTIONS(9348), + [sym_empty_literal] = ACTIONS(9348), + [sym_date_literal] = ACTIONS(9350), + [anon_sym_POUND] = ACTIONS(9348), + }, + [STATE(5607)] = { + [sym_identifier] = ACTIONS(9352), + [sym_newline] = ACTIONS(9354), + [anon_sym_COLON] = ACTIONS(9354), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9352), + [aux_sym_frm_property_statement_token1] = ACTIONS(9352), + [anon_sym_DOT] = ACTIONS(9352), + [anon_sym_BANG] = ACTIONS(9354), + [aux_sym__attribute_identifier_token1] = ACTIONS(9352), + [aux_sym_option_statement_token3] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9352), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9352), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9352), + [aux_sym_preprocessor_const_token1] = ACTIONS(9352), + [sym_static_modifier] = ACTIONS(9352), + [sym__dim_keyword] = ACTIONS(9352), + [sym__redim_keyword] = ACTIONS(9352), + [aux_sym_get_accessor_token1] = ACTIONS(9352), + [aux_sym_set_accessor_token1] = ACTIONS(9352), + [aux_sym_const_declaration_token1] = ACTIONS(9352), + [anon_sym_LPAREN] = ACTIONS(9354), + [aux_sym_as_type_clause_token2] = ACTIONS(9352), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9352), + [aux_sym_visibility_token1] = ACTIONS(9352), + [aux_sym_visibility_token2] = ACTIONS(9352), + [aux_sym_elseif_fragment_token1] = ACTIONS(9352), + [aux_sym_else_fragment_token1] = ACTIONS(9352), + [aux_sym_select_statement_token1] = ACTIONS(9352), + [aux_sym__for_header_token1] = ACTIONS(9352), + [aux_sym_do_statement_token1] = ACTIONS(9352), + [aux_sym_do_condition_token1] = ACTIONS(9352), + [aux_sym_with_statement_token1] = ACTIONS(9352), + [aux_sym_exit_statement_token1] = ACTIONS(9352), + [sym_end_statement] = ACTIONS(9354), + [aux_sym_on_goto_statement_token1] = ACTIONS(9352), + [aux_sym_on_goto_statement_token2] = ACTIONS(9352), + [aux_sym_on_error_statement_token2] = ACTIONS(9352), + [sym__ambiguous_redim_statement] = ACTIONS(9354), + [aux_sym_erase_statement_token1] = ACTIONS(9352), + [aux_sym_open_statement_token1] = ACTIONS(9352), + [aux_sym_file_mode_token2] = ACTIONS(9352), + [aux_sym_file_access_token2] = ACTIONS(9352), + [aux_sym_file_lock_token2] = ACTIONS(9352), + [aux_sym_print_statement_token1] = ACTIONS(9352), + [anon_sym_PLUS] = ACTIONS(9354), + [anon_sym_DASH] = ACTIONS(9352), + [anon_sym_QMARK] = ACTIONS(9354), + [aux_sym_close_statement_token1] = ACTIONS(9352), + [aux_sym_put_statement_token1] = ACTIONS(9352), + [aux_sym_unlock_statement_token1] = ACTIONS(9352), + [aux_sym_seek_statement_token1] = ACTIONS(9352), + [sym_reset_statement] = ACTIONS(9352), + [aux_sym_raise_event_statement_token1] = ACTIONS(9352), + [sym_stop_statement] = ACTIONS(9352), + [sym_beep_statement] = ACTIONS(9352), + [aux_sym_unload_statement_token1] = ACTIONS(9352), + [aux_sym_def_type_statement_token1] = ACTIONS(9352), + [aux_sym_def_type_statement_token2] = ACTIONS(9352), + [aux_sym_def_type_statement_token3] = ACTIONS(9352), + [aux_sym_def_type_statement_token4] = ACTIONS(9352), + [aux_sym_def_type_statement_token5] = ACTIONS(9352), + [aux_sym_def_type_statement_token6] = ACTIONS(9352), + [aux_sym_def_type_statement_token7] = ACTIONS(9352), + [aux_sym_def_type_statement_token8] = ACTIONS(9352), + [aux_sym_def_type_statement_token9] = ACTIONS(9352), + [aux_sym_def_type_statement_token10] = ACTIONS(9352), + [aux_sym_def_type_statement_token11] = ACTIONS(9352), + [aux_sym_def_type_statement_token12] = ACTIONS(9352), + [aux_sym_def_type_statement_token13] = ACTIONS(9352), + [aux_sym_def_type_statement_token14] = ACTIONS(9352), + [aux_sym_call_statement_token1] = ACTIONS(9352), + [sym__ambiguous_call_statement] = ACTIONS(9352), + [aux_sym_addressof_expression_token1] = ACTIONS(9352), + [aux_sym_type_of_expression_token1] = ACTIONS(9352), + [aux_sym_unary_expression_token1] = ACTIONS(9352), + [sym_string_literal] = ACTIONS(9354), + [sym_number_literal] = ACTIONS(9354), + [aux_sym_boolean_literal_token1] = ACTIONS(9352), + [aux_sym_boolean_literal_token2] = ACTIONS(9352), + [sym_nothing_literal] = ACTIONS(9352), + [sym_null_literal] = ACTIONS(9352), + [sym_empty_literal] = ACTIONS(9352), + [sym_date_literal] = ACTIONS(9354), + [anon_sym_POUND] = ACTIONS(9352), + }, + [STATE(5608)] = { + [sym_identifier] = ACTIONS(9356), + [sym_newline] = ACTIONS(9358), + [anon_sym_COLON] = ACTIONS(9358), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9356), + [aux_sym_frm_property_statement_token1] = ACTIONS(9356), + [anon_sym_DOT] = ACTIONS(9356), + [anon_sym_BANG] = ACTIONS(9358), + [aux_sym__attribute_identifier_token1] = ACTIONS(9356), + [aux_sym_option_statement_token3] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9356), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9356), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9356), + [aux_sym_preprocessor_const_token1] = ACTIONS(9356), + [sym_static_modifier] = ACTIONS(9356), + [sym__dim_keyword] = ACTIONS(9356), + [sym__redim_keyword] = ACTIONS(9356), + [aux_sym_get_accessor_token1] = ACTIONS(9356), + [aux_sym_set_accessor_token1] = ACTIONS(9356), + [aux_sym_const_declaration_token1] = ACTIONS(9356), + [anon_sym_LPAREN] = ACTIONS(9358), + [aux_sym_as_type_clause_token2] = ACTIONS(9356), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9356), + [aux_sym_visibility_token1] = ACTIONS(9356), + [aux_sym_visibility_token2] = ACTIONS(9356), + [aux_sym_elseif_fragment_token1] = ACTIONS(9356), + [aux_sym_else_fragment_token1] = ACTIONS(9356), + [aux_sym_select_statement_token1] = ACTIONS(9356), + [aux_sym__for_header_token1] = ACTIONS(9356), + [aux_sym_do_statement_token1] = ACTIONS(9356), + [aux_sym_do_condition_token1] = ACTIONS(9356), + [aux_sym_with_statement_token1] = ACTIONS(9356), + [aux_sym_exit_statement_token1] = ACTIONS(9356), + [sym_end_statement] = ACTIONS(9358), + [aux_sym_on_goto_statement_token1] = ACTIONS(9356), + [aux_sym_on_goto_statement_token2] = ACTIONS(9356), + [aux_sym_on_error_statement_token2] = ACTIONS(9356), + [sym__ambiguous_redim_statement] = ACTIONS(9358), + [aux_sym_erase_statement_token1] = ACTIONS(9356), + [aux_sym_open_statement_token1] = ACTIONS(9356), + [aux_sym_file_mode_token2] = ACTIONS(9356), + [aux_sym_file_access_token2] = ACTIONS(9356), + [aux_sym_file_lock_token2] = ACTIONS(9356), + [aux_sym_print_statement_token1] = ACTIONS(9356), + [anon_sym_PLUS] = ACTIONS(9358), + [anon_sym_DASH] = ACTIONS(9356), + [anon_sym_QMARK] = ACTIONS(9358), + [aux_sym_close_statement_token1] = ACTIONS(9356), + [aux_sym_put_statement_token1] = ACTIONS(9356), + [aux_sym_unlock_statement_token1] = ACTIONS(9356), + [aux_sym_seek_statement_token1] = ACTIONS(9356), + [sym_reset_statement] = ACTIONS(9356), + [aux_sym_raise_event_statement_token1] = ACTIONS(9356), + [sym_stop_statement] = ACTIONS(9356), + [sym_beep_statement] = ACTIONS(9356), + [aux_sym_unload_statement_token1] = ACTIONS(9356), + [aux_sym_def_type_statement_token1] = ACTIONS(9356), + [aux_sym_def_type_statement_token2] = ACTIONS(9356), + [aux_sym_def_type_statement_token3] = ACTIONS(9356), + [aux_sym_def_type_statement_token4] = ACTIONS(9356), + [aux_sym_def_type_statement_token5] = ACTIONS(9356), + [aux_sym_def_type_statement_token6] = ACTIONS(9356), + [aux_sym_def_type_statement_token7] = ACTIONS(9356), + [aux_sym_def_type_statement_token8] = ACTIONS(9356), + [aux_sym_def_type_statement_token9] = ACTIONS(9356), + [aux_sym_def_type_statement_token10] = ACTIONS(9356), + [aux_sym_def_type_statement_token11] = ACTIONS(9356), + [aux_sym_def_type_statement_token12] = ACTIONS(9356), + [aux_sym_def_type_statement_token13] = ACTIONS(9356), + [aux_sym_def_type_statement_token14] = ACTIONS(9356), + [aux_sym_call_statement_token1] = ACTIONS(9356), + [sym__ambiguous_call_statement] = ACTIONS(9356), + [aux_sym_addressof_expression_token1] = ACTIONS(9356), + [aux_sym_type_of_expression_token1] = ACTIONS(9356), + [aux_sym_unary_expression_token1] = ACTIONS(9356), + [sym_string_literal] = ACTIONS(9358), + [sym_number_literal] = ACTIONS(9358), + [aux_sym_boolean_literal_token1] = ACTIONS(9356), + [aux_sym_boolean_literal_token2] = ACTIONS(9356), + [sym_nothing_literal] = ACTIONS(9356), + [sym_null_literal] = ACTIONS(9356), + [sym_empty_literal] = ACTIONS(9356), + [sym_date_literal] = ACTIONS(9358), + [anon_sym_POUND] = ACTIONS(9356), + }, + [STATE(5609)] = { + [sym_identifier] = ACTIONS(9360), + [sym_newline] = ACTIONS(9362), + [anon_sym_COLON] = ACTIONS(9362), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9360), + [aux_sym_frm_property_statement_token1] = ACTIONS(9360), + [anon_sym_DOT] = ACTIONS(9360), + [anon_sym_BANG] = ACTIONS(9362), + [aux_sym__attribute_identifier_token1] = ACTIONS(9360), + [aux_sym_option_statement_token3] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9360), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9360), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9360), + [aux_sym_preprocessor_const_token1] = ACTIONS(9360), + [sym_static_modifier] = ACTIONS(9360), + [sym__dim_keyword] = ACTIONS(9360), + [sym__redim_keyword] = ACTIONS(9360), + [aux_sym_get_accessor_token1] = ACTIONS(9360), + [aux_sym_set_accessor_token1] = ACTIONS(9360), + [aux_sym_const_declaration_token1] = ACTIONS(9360), + [anon_sym_LPAREN] = ACTIONS(9362), + [aux_sym_as_type_clause_token2] = ACTIONS(9360), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9360), + [aux_sym_visibility_token1] = ACTIONS(9360), + [aux_sym_visibility_token2] = ACTIONS(9360), + [aux_sym_elseif_fragment_token1] = ACTIONS(9360), + [aux_sym_else_fragment_token1] = ACTIONS(9360), + [aux_sym_select_statement_token1] = ACTIONS(9360), + [aux_sym__for_header_token1] = ACTIONS(9360), + [aux_sym_do_statement_token1] = ACTIONS(9360), + [aux_sym_do_condition_token1] = ACTIONS(9360), + [aux_sym_with_statement_token1] = ACTIONS(9360), + [aux_sym_exit_statement_token1] = ACTIONS(9360), + [sym_end_statement] = ACTIONS(9362), + [aux_sym_on_goto_statement_token1] = ACTIONS(9360), + [aux_sym_on_goto_statement_token2] = ACTIONS(9360), + [aux_sym_on_error_statement_token2] = ACTIONS(9360), + [sym__ambiguous_redim_statement] = ACTIONS(9362), + [aux_sym_erase_statement_token1] = ACTIONS(9360), + [aux_sym_open_statement_token1] = ACTIONS(9360), + [aux_sym_file_mode_token2] = ACTIONS(9360), + [aux_sym_file_access_token2] = ACTIONS(9360), + [aux_sym_file_lock_token2] = ACTIONS(9360), + [aux_sym_print_statement_token1] = ACTIONS(9360), + [anon_sym_PLUS] = ACTIONS(9362), + [anon_sym_DASH] = ACTIONS(9360), + [anon_sym_QMARK] = ACTIONS(9362), + [aux_sym_close_statement_token1] = ACTIONS(9360), + [aux_sym_put_statement_token1] = ACTIONS(9360), + [aux_sym_unlock_statement_token1] = ACTIONS(9360), + [aux_sym_seek_statement_token1] = ACTIONS(9360), + [sym_reset_statement] = ACTIONS(9360), + [aux_sym_raise_event_statement_token1] = ACTIONS(9360), + [sym_stop_statement] = ACTIONS(9360), + [sym_beep_statement] = ACTIONS(9360), + [aux_sym_unload_statement_token1] = ACTIONS(9360), + [aux_sym_def_type_statement_token1] = ACTIONS(9360), + [aux_sym_def_type_statement_token2] = ACTIONS(9360), + [aux_sym_def_type_statement_token3] = ACTIONS(9360), + [aux_sym_def_type_statement_token4] = ACTIONS(9360), + [aux_sym_def_type_statement_token5] = ACTIONS(9360), + [aux_sym_def_type_statement_token6] = ACTIONS(9360), + [aux_sym_def_type_statement_token7] = ACTIONS(9360), + [aux_sym_def_type_statement_token8] = ACTIONS(9360), + [aux_sym_def_type_statement_token9] = ACTIONS(9360), + [aux_sym_def_type_statement_token10] = ACTIONS(9360), + [aux_sym_def_type_statement_token11] = ACTIONS(9360), + [aux_sym_def_type_statement_token12] = ACTIONS(9360), + [aux_sym_def_type_statement_token13] = ACTIONS(9360), + [aux_sym_def_type_statement_token14] = ACTIONS(9360), + [aux_sym_call_statement_token1] = ACTIONS(9360), + [sym__ambiguous_call_statement] = ACTIONS(9360), + [aux_sym_addressof_expression_token1] = ACTIONS(9360), + [aux_sym_type_of_expression_token1] = ACTIONS(9360), + [aux_sym_unary_expression_token1] = ACTIONS(9360), + [sym_string_literal] = ACTIONS(9362), + [sym_number_literal] = ACTIONS(9362), + [aux_sym_boolean_literal_token1] = ACTIONS(9360), + [aux_sym_boolean_literal_token2] = ACTIONS(9360), + [sym_nothing_literal] = ACTIONS(9360), + [sym_null_literal] = ACTIONS(9360), + [sym_empty_literal] = ACTIONS(9360), + [sym_date_literal] = ACTIONS(9362), + [anon_sym_POUND] = ACTIONS(9360), + }, + [STATE(5610)] = { + [sym_identifier] = ACTIONS(9364), + [sym_newline] = ACTIONS(9366), + [anon_sym_COLON] = ACTIONS(9366), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9364), + [aux_sym_frm_property_statement_token1] = ACTIONS(9364), + [anon_sym_DOT] = ACTIONS(9364), + [anon_sym_BANG] = ACTIONS(9366), + [aux_sym__attribute_identifier_token1] = ACTIONS(9364), + [aux_sym_option_statement_token3] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9364), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9364), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9364), + [aux_sym_preprocessor_const_token1] = ACTIONS(9364), + [sym_static_modifier] = ACTIONS(9364), + [sym__dim_keyword] = ACTIONS(9364), + [sym__redim_keyword] = ACTIONS(9364), + [aux_sym_get_accessor_token1] = ACTIONS(9364), + [aux_sym_set_accessor_token1] = ACTIONS(9364), + [aux_sym_const_declaration_token1] = ACTIONS(9364), + [anon_sym_LPAREN] = ACTIONS(9366), + [aux_sym_as_type_clause_token2] = ACTIONS(9364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9364), + [aux_sym_visibility_token1] = ACTIONS(9364), + [aux_sym_visibility_token2] = ACTIONS(9364), + [aux_sym_elseif_fragment_token1] = ACTIONS(9364), + [aux_sym_else_fragment_token1] = ACTIONS(9364), + [aux_sym_select_statement_token1] = ACTIONS(9364), + [aux_sym__for_header_token1] = ACTIONS(9364), + [aux_sym_do_statement_token1] = ACTIONS(9364), + [aux_sym_do_condition_token1] = ACTIONS(9364), + [aux_sym_with_statement_token1] = ACTIONS(9364), + [aux_sym_exit_statement_token1] = ACTIONS(9364), + [sym_end_statement] = ACTIONS(9366), + [aux_sym_on_goto_statement_token1] = ACTIONS(9364), + [aux_sym_on_goto_statement_token2] = ACTIONS(9364), + [aux_sym_on_error_statement_token2] = ACTIONS(9364), + [sym__ambiguous_redim_statement] = ACTIONS(9366), + [aux_sym_erase_statement_token1] = ACTIONS(9364), + [aux_sym_open_statement_token1] = ACTIONS(9364), + [aux_sym_file_mode_token2] = ACTIONS(9364), + [aux_sym_file_access_token2] = ACTIONS(9364), + [aux_sym_file_lock_token2] = ACTIONS(9364), + [aux_sym_print_statement_token1] = ACTIONS(9364), + [anon_sym_PLUS] = ACTIONS(9366), + [anon_sym_DASH] = ACTIONS(9364), + [anon_sym_QMARK] = ACTIONS(9366), + [aux_sym_close_statement_token1] = ACTIONS(9364), + [aux_sym_put_statement_token1] = ACTIONS(9364), + [aux_sym_unlock_statement_token1] = ACTIONS(9364), + [aux_sym_seek_statement_token1] = ACTIONS(9364), + [sym_reset_statement] = ACTIONS(9364), + [aux_sym_raise_event_statement_token1] = ACTIONS(9364), + [sym_stop_statement] = ACTIONS(9364), + [sym_beep_statement] = ACTIONS(9364), + [aux_sym_unload_statement_token1] = ACTIONS(9364), + [aux_sym_def_type_statement_token1] = ACTIONS(9364), + [aux_sym_def_type_statement_token2] = ACTIONS(9364), + [aux_sym_def_type_statement_token3] = ACTIONS(9364), + [aux_sym_def_type_statement_token4] = ACTIONS(9364), + [aux_sym_def_type_statement_token5] = ACTIONS(9364), + [aux_sym_def_type_statement_token6] = ACTIONS(9364), + [aux_sym_def_type_statement_token7] = ACTIONS(9364), + [aux_sym_def_type_statement_token8] = ACTIONS(9364), + [aux_sym_def_type_statement_token9] = ACTIONS(9364), + [aux_sym_def_type_statement_token10] = ACTIONS(9364), + [aux_sym_def_type_statement_token11] = ACTIONS(9364), + [aux_sym_def_type_statement_token12] = ACTIONS(9364), + [aux_sym_def_type_statement_token13] = ACTIONS(9364), + [aux_sym_def_type_statement_token14] = ACTIONS(9364), + [aux_sym_call_statement_token1] = ACTIONS(9364), + [sym__ambiguous_call_statement] = ACTIONS(9364), + [aux_sym_addressof_expression_token1] = ACTIONS(9364), + [aux_sym_type_of_expression_token1] = ACTIONS(9364), + [aux_sym_unary_expression_token1] = ACTIONS(9364), + [sym_string_literal] = ACTIONS(9366), + [sym_number_literal] = ACTIONS(9366), + [aux_sym_boolean_literal_token1] = ACTIONS(9364), + [aux_sym_boolean_literal_token2] = ACTIONS(9364), + [sym_nothing_literal] = ACTIONS(9364), + [sym_null_literal] = ACTIONS(9364), + [sym_empty_literal] = ACTIONS(9364), + [sym_date_literal] = ACTIONS(9366), + [anon_sym_POUND] = ACTIONS(9364), + }, + [STATE(5611)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(5749), + [sym_identifier] = ACTIONS(8066), + [sym_newline] = ACTIONS(8068), + [anon_sym_COLON] = ACTIONS(8068), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8066), + [aux_sym_frm_property_statement_token1] = ACTIONS(8066), + [anon_sym_DOT] = ACTIONS(8066), + [anon_sym_BANG] = ACTIONS(8068), + [aux_sym__attribute_identifier_token1] = ACTIONS(8066), + [aux_sym_option_statement_token3] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8066), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8066), + [aux_sym_preprocessor_const_token1] = ACTIONS(8066), + [sym_static_modifier] = ACTIONS(8066), + [sym__dim_keyword] = ACTIONS(8066), + [sym__redim_keyword] = ACTIONS(8066), + [aux_sym_get_accessor_token1] = ACTIONS(8066), + [aux_sym_set_accessor_token1] = ACTIONS(8066), + [anon_sym_COMMA] = ACTIONS(7565), + [aux_sym_const_declaration_token1] = ACTIONS(8066), + [anon_sym_LPAREN] = ACTIONS(8068), + [aux_sym_as_type_clause_token2] = ACTIONS(8066), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8066), + [aux_sym_visibility_token1] = ACTIONS(8066), + [aux_sym_visibility_token2] = ACTIONS(8066), + [aux_sym_elseif_fragment_token1] = ACTIONS(8066), + [aux_sym_else_fragment_token1] = ACTIONS(8066), + [aux_sym_select_statement_token1] = ACTIONS(8066), + [aux_sym__for_header_token1] = ACTIONS(8066), + [aux_sym_do_statement_token1] = ACTIONS(8066), + [aux_sym_do_condition_token1] = ACTIONS(8066), + [aux_sym_with_statement_token1] = ACTIONS(8066), + [aux_sym_exit_statement_token1] = ACTIONS(8066), + [sym_end_statement] = ACTIONS(8068), + [aux_sym_on_goto_statement_token1] = ACTIONS(8066), + [aux_sym_on_goto_statement_token2] = ACTIONS(8066), + [aux_sym_on_error_statement_token2] = ACTIONS(8066), + [sym__ambiguous_redim_statement] = ACTIONS(8068), + [aux_sym_erase_statement_token1] = ACTIONS(8066), + [aux_sym_open_statement_token1] = ACTIONS(8066), + [aux_sym_file_mode_token2] = ACTIONS(8066), + [aux_sym_file_access_token2] = ACTIONS(8066), + [aux_sym_file_lock_token2] = ACTIONS(8066), + [aux_sym_print_statement_token1] = ACTIONS(8066), + [anon_sym_PLUS] = ACTIONS(8068), + [anon_sym_DASH] = ACTIONS(8066), + [anon_sym_SEMI] = ACTIONS(7565), + [anon_sym_QMARK] = ACTIONS(8068), + [aux_sym_close_statement_token1] = ACTIONS(8066), + [aux_sym_put_statement_token1] = ACTIONS(8066), + [aux_sym_unlock_statement_token1] = ACTIONS(8066), + [aux_sym_seek_statement_token1] = ACTIONS(8066), + [sym_reset_statement] = ACTIONS(8066), + [aux_sym_raise_event_statement_token1] = ACTIONS(8066), + [sym_stop_statement] = ACTIONS(8066), + [sym_beep_statement] = ACTIONS(8066), + [aux_sym_unload_statement_token1] = ACTIONS(8066), + [aux_sym_def_type_statement_token1] = ACTIONS(8066), + [aux_sym_def_type_statement_token2] = ACTIONS(8066), + [aux_sym_def_type_statement_token3] = ACTIONS(8066), + [aux_sym_def_type_statement_token4] = ACTIONS(8066), + [aux_sym_def_type_statement_token5] = ACTIONS(8066), + [aux_sym_def_type_statement_token6] = ACTIONS(8066), + [aux_sym_def_type_statement_token7] = ACTIONS(8066), + [aux_sym_def_type_statement_token8] = ACTIONS(8066), + [aux_sym_def_type_statement_token9] = ACTIONS(8066), + [aux_sym_def_type_statement_token10] = ACTIONS(8066), + [aux_sym_def_type_statement_token11] = ACTIONS(8066), + [aux_sym_def_type_statement_token12] = ACTIONS(8066), + [aux_sym_def_type_statement_token13] = ACTIONS(8066), + [aux_sym_def_type_statement_token14] = ACTIONS(8066), + [aux_sym_call_statement_token1] = ACTIONS(8066), + [sym__ambiguous_call_statement] = ACTIONS(8066), + [aux_sym_addressof_expression_token1] = ACTIONS(8066), + [aux_sym_type_of_expression_token1] = ACTIONS(8066), + [aux_sym_unary_expression_token1] = ACTIONS(8066), + [sym_string_literal] = ACTIONS(8068), + [sym_number_literal] = ACTIONS(8068), + [aux_sym_boolean_literal_token1] = ACTIONS(8066), + [aux_sym_boolean_literal_token2] = ACTIONS(8066), + [sym_nothing_literal] = ACTIONS(8066), + [sym_null_literal] = ACTIONS(8066), + [sym_empty_literal] = ACTIONS(8066), + [sym_date_literal] = ACTIONS(8068), + [anon_sym_POUND] = ACTIONS(8066), + }, + [STATE(5612)] = { + [sym_do_condition] = STATE(6598), + [sym_identifier] = ACTIONS(8188), + [sym_newline] = ACTIONS(8190), + [anon_sym_COLON] = ACTIONS(8190), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8188), + [aux_sym_frm_property_statement_token1] = ACTIONS(8188), + [anon_sym_DOT] = ACTIONS(8188), + [anon_sym_BANG] = ACTIONS(8190), + [aux_sym__attribute_identifier_token1] = ACTIONS(8188), + [aux_sym_option_statement_token3] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8188), + [aux_sym_preprocessor_const_token1] = ACTIONS(8188), + [sym_static_modifier] = ACTIONS(8188), + [sym__dim_keyword] = ACTIONS(8188), + [sym__redim_keyword] = ACTIONS(8188), + [aux_sym_get_accessor_token1] = ACTIONS(8188), + [aux_sym_set_accessor_token1] = ACTIONS(8188), + [aux_sym_const_declaration_token1] = ACTIONS(8188), + [anon_sym_LPAREN] = ACTIONS(8190), + [aux_sym_as_type_clause_token2] = ACTIONS(8188), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8188), + [aux_sym_visibility_token1] = ACTIONS(8188), + [aux_sym_visibility_token2] = ACTIONS(8188), + [aux_sym_elseif_fragment_token1] = ACTIONS(8188), + [aux_sym_else_fragment_token1] = ACTIONS(8188), + [aux_sym_select_statement_token1] = ACTIONS(8188), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8188), + [aux_sym__for_header_token1] = ACTIONS(8188), + [aux_sym_do_statement_token1] = ACTIONS(8188), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8188), + [aux_sym_exit_statement_token1] = ACTIONS(8188), + [sym_end_statement] = ACTIONS(8190), + [aux_sym_on_goto_statement_token1] = ACTIONS(8188), + [aux_sym_on_goto_statement_token2] = ACTIONS(8188), + [aux_sym_on_error_statement_token2] = ACTIONS(8188), + [sym__ambiguous_redim_statement] = ACTIONS(8190), + [aux_sym_erase_statement_token1] = ACTIONS(8188), + [aux_sym_open_statement_token1] = ACTIONS(8188), + [aux_sym_file_mode_token2] = ACTIONS(8188), + [aux_sym_file_access_token2] = ACTIONS(8188), + [aux_sym_file_lock_token2] = ACTIONS(8188), + [aux_sym_print_statement_token1] = ACTIONS(8188), + [anon_sym_PLUS] = ACTIONS(8190), + [anon_sym_DASH] = ACTIONS(8188), + [anon_sym_QMARK] = ACTIONS(8190), + [aux_sym_close_statement_token1] = ACTIONS(8188), + [aux_sym_put_statement_token1] = ACTIONS(8188), + [aux_sym_unlock_statement_token1] = ACTIONS(8188), + [aux_sym_seek_statement_token1] = ACTIONS(8188), + [sym_reset_statement] = ACTIONS(8188), + [aux_sym_raise_event_statement_token1] = ACTIONS(8188), + [sym_stop_statement] = ACTIONS(8188), + [sym_beep_statement] = ACTIONS(8188), + [aux_sym_unload_statement_token1] = ACTIONS(8188), + [aux_sym_def_type_statement_token1] = ACTIONS(8188), + [aux_sym_def_type_statement_token2] = ACTIONS(8188), + [aux_sym_def_type_statement_token3] = ACTIONS(8188), + [aux_sym_def_type_statement_token4] = ACTIONS(8188), + [aux_sym_def_type_statement_token5] = ACTIONS(8188), + [aux_sym_def_type_statement_token6] = ACTIONS(8188), + [aux_sym_def_type_statement_token7] = ACTIONS(8188), + [aux_sym_def_type_statement_token8] = ACTIONS(8188), + [aux_sym_def_type_statement_token9] = ACTIONS(8188), + [aux_sym_def_type_statement_token10] = ACTIONS(8188), + [aux_sym_def_type_statement_token11] = ACTIONS(8188), + [aux_sym_def_type_statement_token12] = ACTIONS(8188), + [aux_sym_def_type_statement_token13] = ACTIONS(8188), + [aux_sym_def_type_statement_token14] = ACTIONS(8188), + [aux_sym_call_statement_token1] = ACTIONS(8188), + [sym__ambiguous_call_statement] = ACTIONS(8188), + [aux_sym_addressof_expression_token1] = ACTIONS(8188), + [aux_sym_type_of_expression_token1] = ACTIONS(8188), + [aux_sym_unary_expression_token1] = ACTIONS(8188), + [sym_string_literal] = ACTIONS(8190), + [sym_number_literal] = ACTIONS(8190), + [aux_sym_boolean_literal_token1] = ACTIONS(8188), + [aux_sym_boolean_literal_token2] = ACTIONS(8188), + [sym_nothing_literal] = ACTIONS(8188), + [sym_null_literal] = ACTIONS(8188), + [sym_empty_literal] = ACTIONS(8188), + [sym_date_literal] = ACTIONS(8190), + [anon_sym_POUND] = ACTIONS(8188), + }, + [STATE(5613)] = { + [sym_do_condition] = STATE(6599), + [sym_identifier] = ACTIONS(8192), + [sym_newline] = ACTIONS(8194), + [anon_sym_COLON] = ACTIONS(8194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8192), + [aux_sym_frm_property_statement_token1] = ACTIONS(8192), + [anon_sym_DOT] = ACTIONS(8192), + [anon_sym_BANG] = ACTIONS(8194), + [aux_sym__attribute_identifier_token1] = ACTIONS(8192), + [aux_sym_option_statement_token3] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8192), + [aux_sym_preprocessor_const_token1] = ACTIONS(8192), + [sym_static_modifier] = ACTIONS(8192), + [sym__dim_keyword] = ACTIONS(8192), + [sym__redim_keyword] = ACTIONS(8192), + [aux_sym_get_accessor_token1] = ACTIONS(8192), + [aux_sym_set_accessor_token1] = ACTIONS(8192), + [aux_sym_const_declaration_token1] = ACTIONS(8192), + [anon_sym_LPAREN] = ACTIONS(8194), + [aux_sym_as_type_clause_token2] = ACTIONS(8192), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8192), + [aux_sym_visibility_token1] = ACTIONS(8192), + [aux_sym_visibility_token2] = ACTIONS(8192), + [aux_sym_elseif_fragment_token1] = ACTIONS(8192), + [aux_sym_else_fragment_token1] = ACTIONS(8192), + [aux_sym_select_statement_token1] = ACTIONS(8192), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8192), + [aux_sym__for_header_token1] = ACTIONS(8192), + [aux_sym_do_statement_token1] = ACTIONS(8192), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8192), + [aux_sym_exit_statement_token1] = ACTIONS(8192), + [sym_end_statement] = ACTIONS(8194), + [aux_sym_on_goto_statement_token1] = ACTIONS(8192), + [aux_sym_on_goto_statement_token2] = ACTIONS(8192), + [aux_sym_on_error_statement_token2] = ACTIONS(8192), + [sym__ambiguous_redim_statement] = ACTIONS(8194), + [aux_sym_erase_statement_token1] = ACTIONS(8192), + [aux_sym_open_statement_token1] = ACTIONS(8192), + [aux_sym_file_mode_token2] = ACTIONS(8192), + [aux_sym_file_access_token2] = ACTIONS(8192), + [aux_sym_file_lock_token2] = ACTIONS(8192), + [aux_sym_print_statement_token1] = ACTIONS(8192), + [anon_sym_PLUS] = ACTIONS(8194), + [anon_sym_DASH] = ACTIONS(8192), + [anon_sym_QMARK] = ACTIONS(8194), + [aux_sym_close_statement_token1] = ACTIONS(8192), + [aux_sym_put_statement_token1] = ACTIONS(8192), + [aux_sym_unlock_statement_token1] = ACTIONS(8192), + [aux_sym_seek_statement_token1] = ACTIONS(8192), + [sym_reset_statement] = ACTIONS(8192), + [aux_sym_raise_event_statement_token1] = ACTIONS(8192), + [sym_stop_statement] = ACTIONS(8192), + [sym_beep_statement] = ACTIONS(8192), + [aux_sym_unload_statement_token1] = ACTIONS(8192), + [aux_sym_def_type_statement_token1] = ACTIONS(8192), + [aux_sym_def_type_statement_token2] = ACTIONS(8192), + [aux_sym_def_type_statement_token3] = ACTIONS(8192), + [aux_sym_def_type_statement_token4] = ACTIONS(8192), + [aux_sym_def_type_statement_token5] = ACTIONS(8192), + [aux_sym_def_type_statement_token6] = ACTIONS(8192), + [aux_sym_def_type_statement_token7] = ACTIONS(8192), + [aux_sym_def_type_statement_token8] = ACTIONS(8192), + [aux_sym_def_type_statement_token9] = ACTIONS(8192), + [aux_sym_def_type_statement_token10] = ACTIONS(8192), + [aux_sym_def_type_statement_token11] = ACTIONS(8192), + [aux_sym_def_type_statement_token12] = ACTIONS(8192), + [aux_sym_def_type_statement_token13] = ACTIONS(8192), + [aux_sym_def_type_statement_token14] = ACTIONS(8192), + [aux_sym_call_statement_token1] = ACTIONS(8192), + [sym__ambiguous_call_statement] = ACTIONS(8192), + [aux_sym_addressof_expression_token1] = ACTIONS(8192), + [aux_sym_type_of_expression_token1] = ACTIONS(8192), + [aux_sym_unary_expression_token1] = ACTIONS(8192), + [sym_string_literal] = ACTIONS(8194), + [sym_number_literal] = ACTIONS(8194), + [aux_sym_boolean_literal_token1] = ACTIONS(8192), + [aux_sym_boolean_literal_token2] = ACTIONS(8192), + [sym_nothing_literal] = ACTIONS(8192), + [sym_null_literal] = ACTIONS(8192), + [sym_empty_literal] = ACTIONS(8192), + [sym_date_literal] = ACTIONS(8194), + [anon_sym_POUND] = ACTIONS(8192), + }, + [STATE(5614)] = { + [sym_do_condition] = STATE(6601), + [sym_identifier] = ACTIONS(8203), + [sym_newline] = ACTIONS(8205), + [anon_sym_COLON] = ACTIONS(8205), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8203), + [aux_sym_frm_property_statement_token1] = ACTIONS(8203), + [anon_sym_DOT] = ACTIONS(8203), + [anon_sym_BANG] = ACTIONS(8205), + [aux_sym__attribute_identifier_token1] = ACTIONS(8203), + [aux_sym_option_statement_token3] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8203), + [aux_sym_preprocessor_const_token1] = ACTIONS(8203), + [sym_static_modifier] = ACTIONS(8203), + [sym__dim_keyword] = ACTIONS(8203), + [sym__redim_keyword] = ACTIONS(8203), + [aux_sym_get_accessor_token1] = ACTIONS(8203), + [aux_sym_set_accessor_token1] = ACTIONS(8203), + [aux_sym_const_declaration_token1] = ACTIONS(8203), + [anon_sym_LPAREN] = ACTIONS(8205), + [aux_sym_as_type_clause_token2] = ACTIONS(8203), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8203), + [aux_sym_visibility_token1] = ACTIONS(8203), + [aux_sym_visibility_token2] = ACTIONS(8203), + [aux_sym_elseif_fragment_token1] = ACTIONS(8203), + [aux_sym_else_fragment_token1] = ACTIONS(8203), + [aux_sym_select_statement_token1] = ACTIONS(8203), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8203), + [aux_sym__for_header_token1] = ACTIONS(8203), + [aux_sym_do_statement_token1] = ACTIONS(8203), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8203), + [aux_sym_exit_statement_token1] = ACTIONS(8203), + [sym_end_statement] = ACTIONS(8205), + [aux_sym_on_goto_statement_token1] = ACTIONS(8203), + [aux_sym_on_goto_statement_token2] = ACTIONS(8203), + [aux_sym_on_error_statement_token2] = ACTIONS(8203), + [sym__ambiguous_redim_statement] = ACTIONS(8205), + [aux_sym_erase_statement_token1] = ACTIONS(8203), + [aux_sym_open_statement_token1] = ACTIONS(8203), + [aux_sym_file_mode_token2] = ACTIONS(8203), + [aux_sym_file_access_token2] = ACTIONS(8203), + [aux_sym_file_lock_token2] = ACTIONS(8203), + [aux_sym_print_statement_token1] = ACTIONS(8203), + [anon_sym_PLUS] = ACTIONS(8205), + [anon_sym_DASH] = ACTIONS(8203), + [anon_sym_QMARK] = ACTIONS(8205), + [aux_sym_close_statement_token1] = ACTIONS(8203), + [aux_sym_put_statement_token1] = ACTIONS(8203), + [aux_sym_unlock_statement_token1] = ACTIONS(8203), + [aux_sym_seek_statement_token1] = ACTIONS(8203), + [sym_reset_statement] = ACTIONS(8203), + [aux_sym_raise_event_statement_token1] = ACTIONS(8203), + [sym_stop_statement] = ACTIONS(8203), + [sym_beep_statement] = ACTIONS(8203), + [aux_sym_unload_statement_token1] = ACTIONS(8203), + [aux_sym_def_type_statement_token1] = ACTIONS(8203), + [aux_sym_def_type_statement_token2] = ACTIONS(8203), + [aux_sym_def_type_statement_token3] = ACTIONS(8203), + [aux_sym_def_type_statement_token4] = ACTIONS(8203), + [aux_sym_def_type_statement_token5] = ACTIONS(8203), + [aux_sym_def_type_statement_token6] = ACTIONS(8203), + [aux_sym_def_type_statement_token7] = ACTIONS(8203), + [aux_sym_def_type_statement_token8] = ACTIONS(8203), + [aux_sym_def_type_statement_token9] = ACTIONS(8203), + [aux_sym_def_type_statement_token10] = ACTIONS(8203), + [aux_sym_def_type_statement_token11] = ACTIONS(8203), + [aux_sym_def_type_statement_token12] = ACTIONS(8203), + [aux_sym_def_type_statement_token13] = ACTIONS(8203), + [aux_sym_def_type_statement_token14] = ACTIONS(8203), + [aux_sym_call_statement_token1] = ACTIONS(8203), + [sym__ambiguous_call_statement] = ACTIONS(8203), + [aux_sym_addressof_expression_token1] = ACTIONS(8203), + [aux_sym_type_of_expression_token1] = ACTIONS(8203), + [aux_sym_unary_expression_token1] = ACTIONS(8203), + [sym_string_literal] = ACTIONS(8205), + [sym_number_literal] = ACTIONS(8205), + [aux_sym_boolean_literal_token1] = ACTIONS(8203), + [aux_sym_boolean_literal_token2] = ACTIONS(8203), + [sym_nothing_literal] = ACTIONS(8203), + [sym_null_literal] = ACTIONS(8203), + [sym_empty_literal] = ACTIONS(8203), + [sym_date_literal] = ACTIONS(8205), + [anon_sym_POUND] = ACTIONS(8203), + }, + [STATE(5615)] = { + [sym_do_condition] = STATE(6602), + [sym_identifier] = ACTIONS(8213), + [sym_newline] = ACTIONS(8215), + [anon_sym_COLON] = ACTIONS(8215), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8213), + [aux_sym_frm_property_statement_token1] = ACTIONS(8213), + [anon_sym_DOT] = ACTIONS(8213), + [anon_sym_BANG] = ACTIONS(8215), + [aux_sym__attribute_identifier_token1] = ACTIONS(8213), + [aux_sym_option_statement_token3] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8213), + [aux_sym_preprocessor_const_token1] = ACTIONS(8213), + [sym_static_modifier] = ACTIONS(8213), + [sym__dim_keyword] = ACTIONS(8213), + [sym__redim_keyword] = ACTIONS(8213), + [aux_sym_get_accessor_token1] = ACTIONS(8213), + [aux_sym_set_accessor_token1] = ACTIONS(8213), + [aux_sym_const_declaration_token1] = ACTIONS(8213), + [anon_sym_LPAREN] = ACTIONS(8215), + [aux_sym_as_type_clause_token2] = ACTIONS(8213), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8213), + [aux_sym_visibility_token1] = ACTIONS(8213), + [aux_sym_visibility_token2] = ACTIONS(8213), + [aux_sym_elseif_fragment_token1] = ACTIONS(8213), + [aux_sym_else_fragment_token1] = ACTIONS(8213), + [aux_sym_select_statement_token1] = ACTIONS(8213), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8213), + [aux_sym__for_header_token1] = ACTIONS(8213), + [aux_sym_do_statement_token1] = ACTIONS(8213), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8213), + [aux_sym_exit_statement_token1] = ACTIONS(8213), + [sym_end_statement] = ACTIONS(8215), + [aux_sym_on_goto_statement_token1] = ACTIONS(8213), + [aux_sym_on_goto_statement_token2] = ACTIONS(8213), + [aux_sym_on_error_statement_token2] = ACTIONS(8213), + [sym__ambiguous_redim_statement] = ACTIONS(8215), + [aux_sym_erase_statement_token1] = ACTIONS(8213), + [aux_sym_open_statement_token1] = ACTIONS(8213), + [aux_sym_file_mode_token2] = ACTIONS(8213), + [aux_sym_file_access_token2] = ACTIONS(8213), + [aux_sym_file_lock_token2] = ACTIONS(8213), + [aux_sym_print_statement_token1] = ACTIONS(8213), + [anon_sym_PLUS] = ACTIONS(8215), + [anon_sym_DASH] = ACTIONS(8213), + [anon_sym_QMARK] = ACTIONS(8215), + [aux_sym_close_statement_token1] = ACTIONS(8213), + [aux_sym_put_statement_token1] = ACTIONS(8213), + [aux_sym_unlock_statement_token1] = ACTIONS(8213), + [aux_sym_seek_statement_token1] = ACTIONS(8213), + [sym_reset_statement] = ACTIONS(8213), + [aux_sym_raise_event_statement_token1] = ACTIONS(8213), + [sym_stop_statement] = ACTIONS(8213), + [sym_beep_statement] = ACTIONS(8213), + [aux_sym_unload_statement_token1] = ACTIONS(8213), + [aux_sym_def_type_statement_token1] = ACTIONS(8213), + [aux_sym_def_type_statement_token2] = ACTIONS(8213), + [aux_sym_def_type_statement_token3] = ACTIONS(8213), + [aux_sym_def_type_statement_token4] = ACTIONS(8213), + [aux_sym_def_type_statement_token5] = ACTIONS(8213), + [aux_sym_def_type_statement_token6] = ACTIONS(8213), + [aux_sym_def_type_statement_token7] = ACTIONS(8213), + [aux_sym_def_type_statement_token8] = ACTIONS(8213), + [aux_sym_def_type_statement_token9] = ACTIONS(8213), + [aux_sym_def_type_statement_token10] = ACTIONS(8213), + [aux_sym_def_type_statement_token11] = ACTIONS(8213), + [aux_sym_def_type_statement_token12] = ACTIONS(8213), + [aux_sym_def_type_statement_token13] = ACTIONS(8213), + [aux_sym_def_type_statement_token14] = ACTIONS(8213), + [aux_sym_call_statement_token1] = ACTIONS(8213), + [sym__ambiguous_call_statement] = ACTIONS(8213), + [aux_sym_addressof_expression_token1] = ACTIONS(8213), + [aux_sym_type_of_expression_token1] = ACTIONS(8213), + [aux_sym_unary_expression_token1] = ACTIONS(8213), + [sym_string_literal] = ACTIONS(8215), + [sym_number_literal] = ACTIONS(8215), + [aux_sym_boolean_literal_token1] = ACTIONS(8213), + [aux_sym_boolean_literal_token2] = ACTIONS(8213), + [sym_nothing_literal] = ACTIONS(8213), + [sym_null_literal] = ACTIONS(8213), + [sym_empty_literal] = ACTIONS(8213), + [sym_date_literal] = ACTIONS(8215), + [anon_sym_POUND] = ACTIONS(8213), + }, + [STATE(5616)] = { + [sym_do_condition] = STATE(6603), + [sym_identifier] = ACTIONS(8217), + [sym_newline] = ACTIONS(8219), + [anon_sym_COLON] = ACTIONS(8219), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8217), + [aux_sym_frm_property_statement_token1] = ACTIONS(8217), + [anon_sym_DOT] = ACTIONS(8217), + [anon_sym_BANG] = ACTIONS(8219), + [aux_sym__attribute_identifier_token1] = ACTIONS(8217), + [aux_sym_option_statement_token3] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8217), + [aux_sym_preprocessor_const_token1] = ACTIONS(8217), + [sym_static_modifier] = ACTIONS(8217), + [sym__dim_keyword] = ACTIONS(8217), + [sym__redim_keyword] = ACTIONS(8217), + [aux_sym_get_accessor_token1] = ACTIONS(8217), + [aux_sym_set_accessor_token1] = ACTIONS(8217), + [aux_sym_const_declaration_token1] = ACTIONS(8217), + [anon_sym_LPAREN] = ACTIONS(8219), + [aux_sym_as_type_clause_token2] = ACTIONS(8217), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8217), + [aux_sym_visibility_token1] = ACTIONS(8217), + [aux_sym_visibility_token2] = ACTIONS(8217), + [aux_sym_elseif_fragment_token1] = ACTIONS(8217), + [aux_sym_else_fragment_token1] = ACTIONS(8217), + [aux_sym_select_statement_token1] = ACTIONS(8217), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8217), + [aux_sym__for_header_token1] = ACTIONS(8217), + [aux_sym_do_statement_token1] = ACTIONS(8217), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8217), + [aux_sym_exit_statement_token1] = ACTIONS(8217), + [sym_end_statement] = ACTIONS(8219), + [aux_sym_on_goto_statement_token1] = ACTIONS(8217), + [aux_sym_on_goto_statement_token2] = ACTIONS(8217), + [aux_sym_on_error_statement_token2] = ACTIONS(8217), + [sym__ambiguous_redim_statement] = ACTIONS(8219), + [aux_sym_erase_statement_token1] = ACTIONS(8217), + [aux_sym_open_statement_token1] = ACTIONS(8217), + [aux_sym_file_mode_token2] = ACTIONS(8217), + [aux_sym_file_access_token2] = ACTIONS(8217), + [aux_sym_file_lock_token2] = ACTIONS(8217), + [aux_sym_print_statement_token1] = ACTIONS(8217), + [anon_sym_PLUS] = ACTIONS(8219), + [anon_sym_DASH] = ACTIONS(8217), + [anon_sym_QMARK] = ACTIONS(8219), + [aux_sym_close_statement_token1] = ACTIONS(8217), + [aux_sym_put_statement_token1] = ACTIONS(8217), + [aux_sym_unlock_statement_token1] = ACTIONS(8217), + [aux_sym_seek_statement_token1] = ACTIONS(8217), + [sym_reset_statement] = ACTIONS(8217), + [aux_sym_raise_event_statement_token1] = ACTIONS(8217), + [sym_stop_statement] = ACTIONS(8217), + [sym_beep_statement] = ACTIONS(8217), + [aux_sym_unload_statement_token1] = ACTIONS(8217), + [aux_sym_def_type_statement_token1] = ACTIONS(8217), + [aux_sym_def_type_statement_token2] = ACTIONS(8217), + [aux_sym_def_type_statement_token3] = ACTIONS(8217), + [aux_sym_def_type_statement_token4] = ACTIONS(8217), + [aux_sym_def_type_statement_token5] = ACTIONS(8217), + [aux_sym_def_type_statement_token6] = ACTIONS(8217), + [aux_sym_def_type_statement_token7] = ACTIONS(8217), + [aux_sym_def_type_statement_token8] = ACTIONS(8217), + [aux_sym_def_type_statement_token9] = ACTIONS(8217), + [aux_sym_def_type_statement_token10] = ACTIONS(8217), + [aux_sym_def_type_statement_token11] = ACTIONS(8217), + [aux_sym_def_type_statement_token12] = ACTIONS(8217), + [aux_sym_def_type_statement_token13] = ACTIONS(8217), + [aux_sym_def_type_statement_token14] = ACTIONS(8217), + [aux_sym_call_statement_token1] = ACTIONS(8217), + [sym__ambiguous_call_statement] = ACTIONS(8217), + [aux_sym_addressof_expression_token1] = ACTIONS(8217), + [aux_sym_type_of_expression_token1] = ACTIONS(8217), + [aux_sym_unary_expression_token1] = ACTIONS(8217), + [sym_string_literal] = ACTIONS(8219), + [sym_number_literal] = ACTIONS(8219), + [aux_sym_boolean_literal_token1] = ACTIONS(8217), + [aux_sym_boolean_literal_token2] = ACTIONS(8217), + [sym_nothing_literal] = ACTIONS(8217), + [sym_null_literal] = ACTIONS(8217), + [sym_empty_literal] = ACTIONS(8217), + [sym_date_literal] = ACTIONS(8219), + [anon_sym_POUND] = ACTIONS(8217), + }, + [STATE(5617)] = { + [sym_do_condition] = STATE(6604), + [sym_identifier] = ACTIONS(8221), + [sym_newline] = ACTIONS(8223), + [anon_sym_COLON] = ACTIONS(8223), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8221), + [aux_sym_frm_property_statement_token1] = ACTIONS(8221), + [anon_sym_DOT] = ACTIONS(8221), + [anon_sym_BANG] = ACTIONS(8223), + [aux_sym__attribute_identifier_token1] = ACTIONS(8221), + [aux_sym_option_statement_token3] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8221), + [aux_sym_preprocessor_const_token1] = ACTIONS(8221), + [sym_static_modifier] = ACTIONS(8221), + [sym__dim_keyword] = ACTIONS(8221), + [sym__redim_keyword] = ACTIONS(8221), + [aux_sym_get_accessor_token1] = ACTIONS(8221), + [aux_sym_set_accessor_token1] = ACTIONS(8221), + [aux_sym_const_declaration_token1] = ACTIONS(8221), + [anon_sym_LPAREN] = ACTIONS(8223), + [aux_sym_as_type_clause_token2] = ACTIONS(8221), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8221), + [aux_sym_visibility_token1] = ACTIONS(8221), + [aux_sym_visibility_token2] = ACTIONS(8221), + [aux_sym_elseif_fragment_token1] = ACTIONS(8221), + [aux_sym_else_fragment_token1] = ACTIONS(8221), + [aux_sym_select_statement_token1] = ACTIONS(8221), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8221), + [aux_sym__for_header_token1] = ACTIONS(8221), + [aux_sym_do_statement_token1] = ACTIONS(8221), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8221), + [aux_sym_exit_statement_token1] = ACTIONS(8221), + [sym_end_statement] = ACTIONS(8223), + [aux_sym_on_goto_statement_token1] = ACTIONS(8221), + [aux_sym_on_goto_statement_token2] = ACTIONS(8221), + [aux_sym_on_error_statement_token2] = ACTIONS(8221), + [sym__ambiguous_redim_statement] = ACTIONS(8223), + [aux_sym_erase_statement_token1] = ACTIONS(8221), + [aux_sym_open_statement_token1] = ACTIONS(8221), + [aux_sym_file_mode_token2] = ACTIONS(8221), + [aux_sym_file_access_token2] = ACTIONS(8221), + [aux_sym_file_lock_token2] = ACTIONS(8221), + [aux_sym_print_statement_token1] = ACTIONS(8221), + [anon_sym_PLUS] = ACTIONS(8223), + [anon_sym_DASH] = ACTIONS(8221), + [anon_sym_QMARK] = ACTIONS(8223), + [aux_sym_close_statement_token1] = ACTIONS(8221), + [aux_sym_put_statement_token1] = ACTIONS(8221), + [aux_sym_unlock_statement_token1] = ACTIONS(8221), + [aux_sym_seek_statement_token1] = ACTIONS(8221), + [sym_reset_statement] = ACTIONS(8221), + [aux_sym_raise_event_statement_token1] = ACTIONS(8221), + [sym_stop_statement] = ACTIONS(8221), + [sym_beep_statement] = ACTIONS(8221), + [aux_sym_unload_statement_token1] = ACTIONS(8221), + [aux_sym_def_type_statement_token1] = ACTIONS(8221), + [aux_sym_def_type_statement_token2] = ACTIONS(8221), + [aux_sym_def_type_statement_token3] = ACTIONS(8221), + [aux_sym_def_type_statement_token4] = ACTIONS(8221), + [aux_sym_def_type_statement_token5] = ACTIONS(8221), + [aux_sym_def_type_statement_token6] = ACTIONS(8221), + [aux_sym_def_type_statement_token7] = ACTIONS(8221), + [aux_sym_def_type_statement_token8] = ACTIONS(8221), + [aux_sym_def_type_statement_token9] = ACTIONS(8221), + [aux_sym_def_type_statement_token10] = ACTIONS(8221), + [aux_sym_def_type_statement_token11] = ACTIONS(8221), + [aux_sym_def_type_statement_token12] = ACTIONS(8221), + [aux_sym_def_type_statement_token13] = ACTIONS(8221), + [aux_sym_def_type_statement_token14] = ACTIONS(8221), + [aux_sym_call_statement_token1] = ACTIONS(8221), + [sym__ambiguous_call_statement] = ACTIONS(8221), + [aux_sym_addressof_expression_token1] = ACTIONS(8221), + [aux_sym_type_of_expression_token1] = ACTIONS(8221), + [aux_sym_unary_expression_token1] = ACTIONS(8221), + [sym_string_literal] = ACTIONS(8223), + [sym_number_literal] = ACTIONS(8223), + [aux_sym_boolean_literal_token1] = ACTIONS(8221), + [aux_sym_boolean_literal_token2] = ACTIONS(8221), + [sym_nothing_literal] = ACTIONS(8221), + [sym_null_literal] = ACTIONS(8221), + [sym_empty_literal] = ACTIONS(8221), + [sym_date_literal] = ACTIONS(8223), + [anon_sym_POUND] = ACTIONS(8221), + }, + [STATE(5618)] = { + [sym_identifier] = ACTIONS(9370), + [sym_newline] = ACTIONS(9372), + [anon_sym_COLON] = ACTIONS(9372), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9370), + [aux_sym_frm_property_statement_token1] = ACTIONS(9370), + [anon_sym_DOT] = ACTIONS(9370), + [anon_sym_BANG] = ACTIONS(9372), + [aux_sym__attribute_identifier_token1] = ACTIONS(9370), + [aux_sym_option_statement_token3] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9370), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9370), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9370), + [aux_sym_preprocessor_const_token1] = ACTIONS(9370), + [sym_static_modifier] = ACTIONS(9370), + [sym__dim_keyword] = ACTIONS(9370), + [sym__redim_keyword] = ACTIONS(9370), + [aux_sym_get_accessor_token1] = ACTIONS(9370), + [aux_sym_set_accessor_token1] = ACTIONS(9370), + [aux_sym_const_declaration_token1] = ACTIONS(9370), + [anon_sym_LPAREN] = ACTIONS(9372), + [aux_sym_as_type_clause_token2] = ACTIONS(9370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9370), + [aux_sym_visibility_token1] = ACTIONS(9370), + [aux_sym_visibility_token2] = ACTIONS(9370), + [aux_sym_elseif_fragment_token1] = ACTIONS(9370), + [aux_sym_else_fragment_token1] = ACTIONS(9370), + [aux_sym_select_statement_token1] = ACTIONS(9370), + [aux_sym__for_header_token1] = ACTIONS(9370), + [aux_sym_do_statement_token1] = ACTIONS(9370), + [aux_sym_do_condition_token1] = ACTIONS(9370), + [aux_sym_with_statement_token1] = ACTIONS(9370), + [aux_sym_exit_statement_token1] = ACTIONS(9370), + [sym_end_statement] = ACTIONS(9372), + [aux_sym_on_goto_statement_token1] = ACTIONS(9370), + [aux_sym_on_goto_statement_token2] = ACTIONS(9370), + [aux_sym_on_error_statement_token2] = ACTIONS(9370), + [sym__ambiguous_redim_statement] = ACTIONS(9372), + [aux_sym_erase_statement_token1] = ACTIONS(9370), + [aux_sym_open_statement_token1] = ACTIONS(9370), + [aux_sym_file_mode_token2] = ACTIONS(9370), + [aux_sym_file_access_token2] = ACTIONS(9370), + [aux_sym_file_lock_token2] = ACTIONS(9370), + [aux_sym_print_statement_token1] = ACTIONS(9370), + [anon_sym_PLUS] = ACTIONS(9372), + [anon_sym_DASH] = ACTIONS(9370), + [anon_sym_QMARK] = ACTIONS(9372), + [aux_sym_close_statement_token1] = ACTIONS(9370), + [aux_sym_put_statement_token1] = ACTIONS(9370), + [aux_sym_unlock_statement_token1] = ACTIONS(9370), + [aux_sym_seek_statement_token1] = ACTIONS(9370), + [sym_reset_statement] = ACTIONS(9370), + [aux_sym_raise_event_statement_token1] = ACTIONS(9370), + [sym_stop_statement] = ACTIONS(9370), + [sym_beep_statement] = ACTIONS(9370), + [aux_sym_unload_statement_token1] = ACTIONS(9370), + [aux_sym_def_type_statement_token1] = ACTIONS(9370), + [aux_sym_def_type_statement_token2] = ACTIONS(9370), + [aux_sym_def_type_statement_token3] = ACTIONS(9370), + [aux_sym_def_type_statement_token4] = ACTIONS(9370), + [aux_sym_def_type_statement_token5] = ACTIONS(9370), + [aux_sym_def_type_statement_token6] = ACTIONS(9370), + [aux_sym_def_type_statement_token7] = ACTIONS(9370), + [aux_sym_def_type_statement_token8] = ACTIONS(9370), + [aux_sym_def_type_statement_token9] = ACTIONS(9370), + [aux_sym_def_type_statement_token10] = ACTIONS(9370), + [aux_sym_def_type_statement_token11] = ACTIONS(9370), + [aux_sym_def_type_statement_token12] = ACTIONS(9370), + [aux_sym_def_type_statement_token13] = ACTIONS(9370), + [aux_sym_def_type_statement_token14] = ACTIONS(9370), + [aux_sym_call_statement_token1] = ACTIONS(9370), + [sym__ambiguous_call_statement] = ACTIONS(9370), + [aux_sym_addressof_expression_token1] = ACTIONS(9370), + [aux_sym_type_of_expression_token1] = ACTIONS(9370), + [aux_sym_unary_expression_token1] = ACTIONS(9370), + [sym_string_literal] = ACTIONS(9372), + [sym_number_literal] = ACTIONS(9372), + [aux_sym_boolean_literal_token1] = ACTIONS(9370), + [aux_sym_boolean_literal_token2] = ACTIONS(9370), + [sym_nothing_literal] = ACTIONS(9370), + [sym_null_literal] = ACTIONS(9370), + [sym_empty_literal] = ACTIONS(9370), + [sym_date_literal] = ACTIONS(9372), + [anon_sym_POUND] = ACTIONS(9370), + }, + [STATE(5619)] = { + [sym_identifier] = ACTIONS(8729), + [sym_newline] = ACTIONS(8731), + [anon_sym_COLON] = ACTIONS(8731), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8729), + [aux_sym_frm_property_statement_token1] = ACTIONS(8729), + [anon_sym_DOT] = ACTIONS(8729), + [anon_sym_BANG] = ACTIONS(8731), + [aux_sym__attribute_identifier_token1] = ACTIONS(8729), + [aux_sym_option_statement_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8729), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8729), + [aux_sym_preprocessor_const_token1] = ACTIONS(8729), + [sym_static_modifier] = ACTIONS(8729), + [sym__dim_keyword] = ACTIONS(8729), + [sym__redim_keyword] = ACTIONS(8729), + [aux_sym_get_accessor_token1] = ACTIONS(8729), + [aux_sym_set_accessor_token1] = ACTIONS(8729), + [aux_sym_const_declaration_token1] = ACTIONS(8729), + [anon_sym_LPAREN] = ACTIONS(8731), + [aux_sym_as_type_clause_token2] = ACTIONS(8729), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8729), + [aux_sym_visibility_token1] = ACTIONS(8729), + [aux_sym_visibility_token2] = ACTIONS(8729), + [aux_sym_elseif_fragment_token1] = ACTIONS(8729), + [aux_sym_else_fragment_token1] = ACTIONS(8729), + [aux_sym_select_statement_token1] = ACTIONS(8729), + [aux_sym__for_header_token1] = ACTIONS(8729), + [aux_sym_do_statement_token1] = ACTIONS(8729), + [aux_sym_do_condition_token1] = ACTIONS(8729), + [aux_sym_with_statement_token1] = ACTIONS(8729), + [aux_sym_exit_statement_token1] = ACTIONS(8729), + [sym_end_statement] = ACTIONS(8731), + [aux_sym_on_goto_statement_token1] = ACTIONS(8729), + [aux_sym_on_goto_statement_token2] = ACTIONS(8729), + [aux_sym_on_error_statement_token2] = ACTIONS(8729), + [sym__ambiguous_redim_statement] = ACTIONS(8731), + [aux_sym_erase_statement_token1] = ACTIONS(8729), + [aux_sym_open_statement_token1] = ACTIONS(8729), + [aux_sym_file_mode_token2] = ACTIONS(8729), + [aux_sym_file_access_token2] = ACTIONS(8729), + [aux_sym_file_lock_token2] = ACTIONS(8729), + [aux_sym_print_statement_token1] = ACTIONS(8729), + [anon_sym_PLUS] = ACTIONS(8731), + [anon_sym_DASH] = ACTIONS(8729), + [anon_sym_QMARK] = ACTIONS(8731), + [aux_sym_close_statement_token1] = ACTIONS(8729), + [aux_sym_put_statement_token1] = ACTIONS(8729), + [aux_sym_unlock_statement_token1] = ACTIONS(8729), + [aux_sym_seek_statement_token1] = ACTIONS(8729), + [sym_reset_statement] = ACTIONS(8729), + [aux_sym_raise_event_statement_token1] = ACTIONS(8729), + [sym_stop_statement] = ACTIONS(8729), + [sym_beep_statement] = ACTIONS(8729), + [aux_sym_unload_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token2] = ACTIONS(8729), + [aux_sym_def_type_statement_token3] = ACTIONS(8729), + [aux_sym_def_type_statement_token4] = ACTIONS(8729), + [aux_sym_def_type_statement_token5] = ACTIONS(8729), + [aux_sym_def_type_statement_token6] = ACTIONS(8729), + [aux_sym_def_type_statement_token7] = ACTIONS(8729), + [aux_sym_def_type_statement_token8] = ACTIONS(8729), + [aux_sym_def_type_statement_token9] = ACTIONS(8729), + [aux_sym_def_type_statement_token10] = ACTIONS(8729), + [aux_sym_def_type_statement_token11] = ACTIONS(8729), + [aux_sym_def_type_statement_token12] = ACTIONS(8729), + [aux_sym_def_type_statement_token13] = ACTIONS(8729), + [aux_sym_def_type_statement_token14] = ACTIONS(8729), + [aux_sym_call_statement_token1] = ACTIONS(8729), + [sym__ambiguous_call_statement] = ACTIONS(8729), + [aux_sym_addressof_expression_token1] = ACTIONS(8729), + [aux_sym_type_of_expression_token1] = ACTIONS(8729), + [aux_sym_unary_expression_token1] = ACTIONS(8729), + [sym_string_literal] = ACTIONS(8731), + [sym_number_literal] = ACTIONS(8731), + [aux_sym_boolean_literal_token1] = ACTIONS(8729), + [aux_sym_boolean_literal_token2] = ACTIONS(8729), + [sym_nothing_literal] = ACTIONS(8729), + [sym_null_literal] = ACTIONS(8729), + [sym_empty_literal] = ACTIONS(8729), + [sym_date_literal] = ACTIONS(8731), + [anon_sym_POUND] = ACTIONS(8729), + }, + [STATE(5620)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_select_statement_token2] = ACTIONS(4517), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(5621)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5674), + [sym_identifier] = ACTIONS(8225), + [sym_newline] = ACTIONS(8227), + [anon_sym_COLON] = ACTIONS(8227), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8225), + [aux_sym_frm_property_statement_token1] = ACTIONS(8225), + [anon_sym_DOT] = ACTIONS(8225), + [anon_sym_BANG] = ACTIONS(8227), + [aux_sym__attribute_identifier_token1] = ACTIONS(8225), + [aux_sym_option_statement_token3] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8225), + [aux_sym_preprocessor_const_token1] = ACTIONS(8225), + [sym_static_modifier] = ACTIONS(8225), + [sym__dim_keyword] = ACTIONS(8225), + [sym__redim_keyword] = ACTIONS(8225), + [aux_sym_get_accessor_token1] = ACTIONS(8225), + [aux_sym_set_accessor_token1] = ACTIONS(8225), + [anon_sym_COMMA] = ACTIONS(10730), + [aux_sym_const_declaration_token1] = ACTIONS(8225), + [anon_sym_LPAREN] = ACTIONS(8227), + [aux_sym_as_type_clause_token2] = ACTIONS(8225), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8225), + [aux_sym_visibility_token1] = ACTIONS(8225), + [aux_sym_visibility_token2] = ACTIONS(8225), + [aux_sym_elseif_fragment_token1] = ACTIONS(8225), + [aux_sym_else_fragment_token1] = ACTIONS(8225), + [aux_sym_select_statement_token1] = ACTIONS(8225), + [aux_sym__for_header_token1] = ACTIONS(8225), + [aux_sym_do_statement_token1] = ACTIONS(8225), + [aux_sym_do_condition_token1] = ACTIONS(8225), + [aux_sym_while_statement_token1] = ACTIONS(8225), + [aux_sym_with_statement_token1] = ACTIONS(8225), + [aux_sym_exit_statement_token1] = ACTIONS(8225), + [sym_end_statement] = ACTIONS(8227), + [aux_sym_on_goto_statement_token1] = ACTIONS(8225), + [aux_sym_on_goto_statement_token2] = ACTIONS(8225), + [aux_sym_on_error_statement_token2] = ACTIONS(8225), + [sym__ambiguous_redim_statement] = ACTIONS(8227), + [aux_sym_erase_statement_token1] = ACTIONS(8225), + [aux_sym_open_statement_token1] = ACTIONS(8225), + [aux_sym_file_mode_token2] = ACTIONS(8225), + [aux_sym_file_access_token2] = ACTIONS(8225), + [aux_sym_file_lock_token2] = ACTIONS(8225), + [aux_sym_print_statement_token1] = ACTIONS(8225), + [anon_sym_PLUS] = ACTIONS(8227), + [anon_sym_DASH] = ACTIONS(8225), + [anon_sym_QMARK] = ACTIONS(8227), + [aux_sym_close_statement_token1] = ACTIONS(8225), + [aux_sym_put_statement_token1] = ACTIONS(8225), + [aux_sym_unlock_statement_token1] = ACTIONS(8225), + [aux_sym_seek_statement_token1] = ACTIONS(8225), + [sym_reset_statement] = ACTIONS(8225), + [aux_sym_raise_event_statement_token1] = ACTIONS(8225), + [sym_stop_statement] = ACTIONS(8225), + [sym_beep_statement] = ACTIONS(8225), + [aux_sym_unload_statement_token1] = ACTIONS(8225), + [aux_sym_def_type_statement_token1] = ACTIONS(8225), + [aux_sym_def_type_statement_token2] = ACTIONS(8225), + [aux_sym_def_type_statement_token3] = ACTIONS(8225), + [aux_sym_def_type_statement_token4] = ACTIONS(8225), + [aux_sym_def_type_statement_token5] = ACTIONS(8225), + [aux_sym_def_type_statement_token6] = ACTIONS(8225), + [aux_sym_def_type_statement_token7] = ACTIONS(8225), + [aux_sym_def_type_statement_token8] = ACTIONS(8225), + [aux_sym_def_type_statement_token9] = ACTIONS(8225), + [aux_sym_def_type_statement_token10] = ACTIONS(8225), + [aux_sym_def_type_statement_token11] = ACTIONS(8225), + [aux_sym_def_type_statement_token12] = ACTIONS(8225), + [aux_sym_def_type_statement_token13] = ACTIONS(8225), + [aux_sym_def_type_statement_token14] = ACTIONS(8225), + [aux_sym_call_statement_token1] = ACTIONS(8225), + [sym__ambiguous_call_statement] = ACTIONS(8225), + [aux_sym_addressof_expression_token1] = ACTIONS(8225), + [aux_sym_type_of_expression_token1] = ACTIONS(8225), + [aux_sym_unary_expression_token1] = ACTIONS(8225), + [sym_string_literal] = ACTIONS(8227), + [sym_number_literal] = ACTIONS(8227), + [aux_sym_boolean_literal_token1] = ACTIONS(8225), + [aux_sym_boolean_literal_token2] = ACTIONS(8225), + [sym_nothing_literal] = ACTIONS(8225), + [sym_null_literal] = ACTIONS(8225), + [sym_empty_literal] = ACTIONS(8225), + [sym_date_literal] = ACTIONS(8227), + [anon_sym_POUND] = ACTIONS(8225), + }, + [STATE(5622)] = { + [sym_identifier] = ACTIONS(8467), + [sym_newline] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8467), + [aux_sym_frm_property_statement_token1] = ACTIONS(8467), + [anon_sym_DOT] = ACTIONS(8467), + [anon_sym_BANG] = ACTIONS(6089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8467), + [aux_sym_option_statement_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8467), + [aux_sym_preprocessor_const_token1] = ACTIONS(8467), + [sym_static_modifier] = ACTIONS(8467), + [sym__dim_keyword] = ACTIONS(8467), + [sym__redim_keyword] = ACTIONS(8467), + [aux_sym_get_accessor_token1] = ACTIONS(8467), + [aux_sym_set_accessor_token1] = ACTIONS(8467), + [anon_sym_COMMA] = ACTIONS(6089), + [aux_sym_const_declaration_token1] = ACTIONS(8467), + [anon_sym_LPAREN] = ACTIONS(6089), + [aux_sym_as_type_clause_token2] = ACTIONS(8467), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8467), + [aux_sym_visibility_token1] = ACTIONS(8467), + [aux_sym_visibility_token2] = ACTIONS(8467), + [aux_sym_elseif_fragment_token1] = ACTIONS(8467), + [aux_sym_else_fragment_token1] = ACTIONS(8467), + [aux_sym_select_statement_token1] = ACTIONS(8467), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8467), + [aux_sym__for_header_token1] = ACTIONS(8467), + [aux_sym_do_statement_token1] = ACTIONS(8467), + [aux_sym_do_statement_token2] = ACTIONS(8467), + [aux_sym_do_condition_token1] = ACTIONS(8467), + [aux_sym_with_statement_token1] = ACTIONS(8467), + [aux_sym_exit_statement_token1] = ACTIONS(8467), + [sym_end_statement] = ACTIONS(6089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8467), + [aux_sym_on_goto_statement_token2] = ACTIONS(8467), + [aux_sym_on_error_statement_token2] = ACTIONS(8467), + [sym__ambiguous_redim_statement] = ACTIONS(6089), + [aux_sym_erase_statement_token1] = ACTIONS(8467), + [aux_sym_open_statement_token1] = ACTIONS(8467), + [aux_sym_file_mode_token2] = ACTIONS(8467), + [aux_sym_file_access_token2] = ACTIONS(8467), + [aux_sym_file_lock_token2] = ACTIONS(8467), + [aux_sym_print_statement_token1] = ACTIONS(8467), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(8467), + [anon_sym_QMARK] = ACTIONS(6089), + [aux_sym_close_statement_token1] = ACTIONS(8467), + [aux_sym_put_statement_token1] = ACTIONS(8467), + [aux_sym_unlock_statement_token1] = ACTIONS(8467), + [aux_sym_seek_statement_token1] = ACTIONS(8467), + [sym_reset_statement] = ACTIONS(8467), + [aux_sym_raise_event_statement_token1] = ACTIONS(8467), + [sym_stop_statement] = ACTIONS(8467), + [sym_beep_statement] = ACTIONS(8467), + [aux_sym_unload_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token2] = ACTIONS(8467), + [aux_sym_def_type_statement_token3] = ACTIONS(8467), + [aux_sym_def_type_statement_token4] = ACTIONS(8467), + [aux_sym_def_type_statement_token5] = ACTIONS(8467), + [aux_sym_def_type_statement_token6] = ACTIONS(8467), + [aux_sym_def_type_statement_token7] = ACTIONS(8467), + [aux_sym_def_type_statement_token8] = ACTIONS(8467), + [aux_sym_def_type_statement_token9] = ACTIONS(8467), + [aux_sym_def_type_statement_token10] = ACTIONS(8467), + [aux_sym_def_type_statement_token11] = ACTIONS(8467), + [aux_sym_def_type_statement_token12] = ACTIONS(8467), + [aux_sym_def_type_statement_token13] = ACTIONS(8467), + [aux_sym_def_type_statement_token14] = ACTIONS(8467), + [aux_sym_call_statement_token1] = ACTIONS(8467), + [sym__ambiguous_call_statement] = ACTIONS(8467), + [aux_sym_addressof_expression_token1] = ACTIONS(8467), + [aux_sym_type_of_expression_token1] = ACTIONS(8467), + [aux_sym_unary_expression_token1] = ACTIONS(8467), + [sym_string_literal] = ACTIONS(6089), + [sym_number_literal] = ACTIONS(6089), + [aux_sym_boolean_literal_token1] = ACTIONS(8467), + [aux_sym_boolean_literal_token2] = ACTIONS(8467), + [sym_nothing_literal] = ACTIONS(8467), + [sym_null_literal] = ACTIONS(8467), + [sym_empty_literal] = ACTIONS(8467), + [sym_date_literal] = ACTIONS(6089), + [anon_sym_POUND] = ACTIONS(8467), + }, + [STATE(5623)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_select_statement_token2] = ACTIONS(4593), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(5624)] = { + [sym_identifier] = ACTIONS(8745), + [sym_newline] = ACTIONS(8747), + [anon_sym_COLON] = ACTIONS(8747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8745), + [aux_sym_frm_property_statement_token1] = ACTIONS(8745), + [anon_sym_DOT] = ACTIONS(8745), + [anon_sym_BANG] = ACTIONS(8747), + [aux_sym__attribute_identifier_token1] = ACTIONS(8745), + [aux_sym_option_statement_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8745), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8745), + [aux_sym_preprocessor_const_token1] = ACTIONS(8745), + [sym_static_modifier] = ACTIONS(8745), + [sym__dim_keyword] = ACTIONS(8745), + [sym__redim_keyword] = ACTIONS(8745), + [aux_sym_get_accessor_token1] = ACTIONS(8745), + [aux_sym_set_accessor_token1] = ACTIONS(8745), + [aux_sym_const_declaration_token1] = ACTIONS(8745), + [anon_sym_LPAREN] = ACTIONS(8747), + [aux_sym_as_type_clause_token2] = ACTIONS(8745), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8745), + [aux_sym_visibility_token1] = ACTIONS(8745), + [aux_sym_visibility_token2] = ACTIONS(8745), + [aux_sym_elseif_fragment_token1] = ACTIONS(8745), + [aux_sym_else_fragment_token1] = ACTIONS(8745), + [aux_sym_select_statement_token1] = ACTIONS(8745), + [aux_sym__for_header_token1] = ACTIONS(8745), + [aux_sym_do_statement_token1] = ACTIONS(8745), + [aux_sym_do_condition_token1] = ACTIONS(8745), + [aux_sym_with_statement_token1] = ACTIONS(8745), + [aux_sym_exit_statement_token1] = ACTIONS(8745), + [sym_end_statement] = ACTIONS(8747), + [aux_sym_on_goto_statement_token1] = ACTIONS(8745), + [aux_sym_on_goto_statement_token2] = ACTIONS(8745), + [aux_sym_on_error_statement_token2] = ACTIONS(8745), + [sym__ambiguous_redim_statement] = ACTIONS(8747), + [aux_sym_erase_statement_token1] = ACTIONS(8745), + [aux_sym_open_statement_token1] = ACTIONS(8745), + [aux_sym_file_mode_token2] = ACTIONS(8745), + [aux_sym_file_access_token2] = ACTIONS(8745), + [aux_sym_file_lock_token2] = ACTIONS(8745), + [aux_sym_print_statement_token1] = ACTIONS(8745), + [anon_sym_PLUS] = ACTIONS(8747), + [anon_sym_DASH] = ACTIONS(8745), + [anon_sym_QMARK] = ACTIONS(8747), + [aux_sym_close_statement_token1] = ACTIONS(8745), + [aux_sym_put_statement_token1] = ACTIONS(8745), + [aux_sym_unlock_statement_token1] = ACTIONS(8745), + [aux_sym_seek_statement_token1] = ACTIONS(8745), + [sym_reset_statement] = ACTIONS(8745), + [aux_sym_raise_event_statement_token1] = ACTIONS(8745), + [sym_stop_statement] = ACTIONS(8745), + [sym_beep_statement] = ACTIONS(8745), + [aux_sym_unload_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token2] = ACTIONS(8745), + [aux_sym_def_type_statement_token3] = ACTIONS(8745), + [aux_sym_def_type_statement_token4] = ACTIONS(8745), + [aux_sym_def_type_statement_token5] = ACTIONS(8745), + [aux_sym_def_type_statement_token6] = ACTIONS(8745), + [aux_sym_def_type_statement_token7] = ACTIONS(8745), + [aux_sym_def_type_statement_token8] = ACTIONS(8745), + [aux_sym_def_type_statement_token9] = ACTIONS(8745), + [aux_sym_def_type_statement_token10] = ACTIONS(8745), + [aux_sym_def_type_statement_token11] = ACTIONS(8745), + [aux_sym_def_type_statement_token12] = ACTIONS(8745), + [aux_sym_def_type_statement_token13] = ACTIONS(8745), + [aux_sym_def_type_statement_token14] = ACTIONS(8745), + [aux_sym_call_statement_token1] = ACTIONS(8745), + [sym__ambiguous_call_statement] = ACTIONS(8745), + [aux_sym_addressof_expression_token1] = ACTIONS(8745), + [aux_sym_type_of_expression_token1] = ACTIONS(8745), + [aux_sym_unary_expression_token1] = ACTIONS(8745), + [sym_string_literal] = ACTIONS(8747), + [sym_number_literal] = ACTIONS(8747), + [aux_sym_boolean_literal_token1] = ACTIONS(8745), + [aux_sym_boolean_literal_token2] = ACTIONS(8745), + [sym_nothing_literal] = ACTIONS(8745), + [sym_null_literal] = ACTIONS(8745), + [sym_empty_literal] = ACTIONS(8745), + [sym_date_literal] = ACTIONS(8747), + [anon_sym_POUND] = ACTIONS(8745), + }, + [STATE(5625)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_select_statement_token2] = ACTIONS(4597), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(5626)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5674), + [sym_identifier] = ACTIONS(8231), + [sym_newline] = ACTIONS(8233), + [anon_sym_COLON] = ACTIONS(8233), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8231), + [aux_sym_frm_property_statement_token1] = ACTIONS(8231), + [anon_sym_DOT] = ACTIONS(8231), + [anon_sym_BANG] = ACTIONS(8233), + [aux_sym__attribute_identifier_token1] = ACTIONS(8231), + [aux_sym_option_statement_token3] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8231), + [aux_sym_preprocessor_const_token1] = ACTIONS(8231), + [sym_static_modifier] = ACTIONS(8231), + [sym__dim_keyword] = ACTIONS(8231), + [sym__redim_keyword] = ACTIONS(8231), + [aux_sym_get_accessor_token1] = ACTIONS(8231), + [aux_sym_set_accessor_token1] = ACTIONS(8231), + [anon_sym_COMMA] = ACTIONS(10730), + [aux_sym_const_declaration_token1] = ACTIONS(8231), + [anon_sym_LPAREN] = ACTIONS(8233), + [aux_sym_as_type_clause_token2] = ACTIONS(8231), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8231), + [aux_sym_visibility_token1] = ACTIONS(8231), + [aux_sym_visibility_token2] = ACTIONS(8231), + [aux_sym_elseif_fragment_token1] = ACTIONS(8231), + [aux_sym_else_fragment_token1] = ACTIONS(8231), + [aux_sym_select_statement_token1] = ACTIONS(8231), + [aux_sym__for_header_token1] = ACTIONS(8231), + [aux_sym_do_statement_token1] = ACTIONS(8231), + [aux_sym_do_condition_token1] = ACTIONS(8231), + [aux_sym_while_statement_token1] = ACTIONS(8231), + [aux_sym_with_statement_token1] = ACTIONS(8231), + [aux_sym_exit_statement_token1] = ACTIONS(8231), + [sym_end_statement] = ACTIONS(8233), + [aux_sym_on_goto_statement_token1] = ACTIONS(8231), + [aux_sym_on_goto_statement_token2] = ACTIONS(8231), + [aux_sym_on_error_statement_token2] = ACTIONS(8231), + [sym__ambiguous_redim_statement] = ACTIONS(8233), + [aux_sym_erase_statement_token1] = ACTIONS(8231), + [aux_sym_open_statement_token1] = ACTIONS(8231), + [aux_sym_file_mode_token2] = ACTIONS(8231), + [aux_sym_file_access_token2] = ACTIONS(8231), + [aux_sym_file_lock_token2] = ACTIONS(8231), + [aux_sym_print_statement_token1] = ACTIONS(8231), + [anon_sym_PLUS] = ACTIONS(8233), + [anon_sym_DASH] = ACTIONS(8231), + [anon_sym_QMARK] = ACTIONS(8233), + [aux_sym_close_statement_token1] = ACTIONS(8231), + [aux_sym_put_statement_token1] = ACTIONS(8231), + [aux_sym_unlock_statement_token1] = ACTIONS(8231), + [aux_sym_seek_statement_token1] = ACTIONS(8231), + [sym_reset_statement] = ACTIONS(8231), + [aux_sym_raise_event_statement_token1] = ACTIONS(8231), + [sym_stop_statement] = ACTIONS(8231), + [sym_beep_statement] = ACTIONS(8231), + [aux_sym_unload_statement_token1] = ACTIONS(8231), + [aux_sym_def_type_statement_token1] = ACTIONS(8231), + [aux_sym_def_type_statement_token2] = ACTIONS(8231), + [aux_sym_def_type_statement_token3] = ACTIONS(8231), + [aux_sym_def_type_statement_token4] = ACTIONS(8231), + [aux_sym_def_type_statement_token5] = ACTIONS(8231), + [aux_sym_def_type_statement_token6] = ACTIONS(8231), + [aux_sym_def_type_statement_token7] = ACTIONS(8231), + [aux_sym_def_type_statement_token8] = ACTIONS(8231), + [aux_sym_def_type_statement_token9] = ACTIONS(8231), + [aux_sym_def_type_statement_token10] = ACTIONS(8231), + [aux_sym_def_type_statement_token11] = ACTIONS(8231), + [aux_sym_def_type_statement_token12] = ACTIONS(8231), + [aux_sym_def_type_statement_token13] = ACTIONS(8231), + [aux_sym_def_type_statement_token14] = ACTIONS(8231), + [aux_sym_call_statement_token1] = ACTIONS(8231), + [sym__ambiguous_call_statement] = ACTIONS(8231), + [aux_sym_addressof_expression_token1] = ACTIONS(8231), + [aux_sym_type_of_expression_token1] = ACTIONS(8231), + [aux_sym_unary_expression_token1] = ACTIONS(8231), + [sym_string_literal] = ACTIONS(8233), + [sym_number_literal] = ACTIONS(8233), + [aux_sym_boolean_literal_token1] = ACTIONS(8231), + [aux_sym_boolean_literal_token2] = ACTIONS(8231), + [sym_nothing_literal] = ACTIONS(8231), + [sym_null_literal] = ACTIONS(8231), + [sym_empty_literal] = ACTIONS(8231), + [sym_date_literal] = ACTIONS(8233), + [anon_sym_POUND] = ACTIONS(8231), + }, + [STATE(5627)] = { + [aux_sym_input_statement_repeat1] = STATE(5677), + [sym_identifier] = ACTIONS(8237), + [sym_newline] = ACTIONS(8239), + [anon_sym_COLON] = ACTIONS(8239), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8237), + [aux_sym_frm_property_statement_token1] = ACTIONS(8237), + [anon_sym_DOT] = ACTIONS(8237), + [anon_sym_BANG] = ACTIONS(8239), + [aux_sym__attribute_identifier_token1] = ACTIONS(8237), + [aux_sym_option_statement_token3] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8237), + [aux_sym_preprocessor_const_token1] = ACTIONS(8237), + [sym_static_modifier] = ACTIONS(8237), + [sym__dim_keyword] = ACTIONS(8237), + [sym__redim_keyword] = ACTIONS(8237), + [aux_sym_get_accessor_token1] = ACTIONS(8237), + [aux_sym_set_accessor_token1] = ACTIONS(8237), + [anon_sym_COMMA] = ACTIONS(10389), + [aux_sym_const_declaration_token1] = ACTIONS(8237), + [anon_sym_LPAREN] = ACTIONS(8239), + [aux_sym_as_type_clause_token2] = ACTIONS(8237), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8237), + [aux_sym_visibility_token1] = ACTIONS(8237), + [aux_sym_visibility_token2] = ACTIONS(8237), + [aux_sym_elseif_fragment_token1] = ACTIONS(8237), + [aux_sym_else_fragment_token1] = ACTIONS(8237), + [aux_sym_select_statement_token1] = ACTIONS(8237), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8237), + [aux_sym__for_header_token1] = ACTIONS(8237), + [aux_sym_do_statement_token1] = ACTIONS(8237), + [aux_sym_do_condition_token1] = ACTIONS(8237), + [aux_sym_with_statement_token1] = ACTIONS(8237), + [aux_sym_exit_statement_token1] = ACTIONS(8237), + [sym_end_statement] = ACTIONS(8239), + [aux_sym_on_goto_statement_token1] = ACTIONS(8237), + [aux_sym_on_goto_statement_token2] = ACTIONS(8237), + [aux_sym_on_error_statement_token2] = ACTIONS(8237), + [sym__ambiguous_redim_statement] = ACTIONS(8239), + [aux_sym_erase_statement_token1] = ACTIONS(8237), + [aux_sym_open_statement_token1] = ACTIONS(8237), + [aux_sym_file_mode_token2] = ACTIONS(8237), + [aux_sym_file_access_token2] = ACTIONS(8237), + [aux_sym_file_lock_token2] = ACTIONS(8237), + [aux_sym_print_statement_token1] = ACTIONS(8237), + [anon_sym_PLUS] = ACTIONS(8239), + [anon_sym_DASH] = ACTIONS(8237), + [anon_sym_QMARK] = ACTIONS(8239), + [aux_sym_close_statement_token1] = ACTIONS(8237), + [aux_sym_put_statement_token1] = ACTIONS(8237), + [aux_sym_unlock_statement_token1] = ACTIONS(8237), + [aux_sym_seek_statement_token1] = ACTIONS(8237), + [sym_reset_statement] = ACTIONS(8237), + [aux_sym_raise_event_statement_token1] = ACTIONS(8237), + [sym_stop_statement] = ACTIONS(8237), + [sym_beep_statement] = ACTIONS(8237), + [aux_sym_unload_statement_token1] = ACTIONS(8237), + [aux_sym_def_type_statement_token1] = ACTIONS(8237), + [aux_sym_def_type_statement_token2] = ACTIONS(8237), + [aux_sym_def_type_statement_token3] = ACTIONS(8237), + [aux_sym_def_type_statement_token4] = ACTIONS(8237), + [aux_sym_def_type_statement_token5] = ACTIONS(8237), + [aux_sym_def_type_statement_token6] = ACTIONS(8237), + [aux_sym_def_type_statement_token7] = ACTIONS(8237), + [aux_sym_def_type_statement_token8] = ACTIONS(8237), + [aux_sym_def_type_statement_token9] = ACTIONS(8237), + [aux_sym_def_type_statement_token10] = ACTIONS(8237), + [aux_sym_def_type_statement_token11] = ACTIONS(8237), + [aux_sym_def_type_statement_token12] = ACTIONS(8237), + [aux_sym_def_type_statement_token13] = ACTIONS(8237), + [aux_sym_def_type_statement_token14] = ACTIONS(8237), + [aux_sym_call_statement_token1] = ACTIONS(8237), + [sym__ambiguous_call_statement] = ACTIONS(8237), + [aux_sym_addressof_expression_token1] = ACTIONS(8237), + [aux_sym_type_of_expression_token1] = ACTIONS(8237), + [aux_sym_unary_expression_token1] = ACTIONS(8237), + [sym_string_literal] = ACTIONS(8239), + [sym_number_literal] = ACTIONS(8239), + [aux_sym_boolean_literal_token1] = ACTIONS(8237), + [aux_sym_boolean_literal_token2] = ACTIONS(8237), + [sym_nothing_literal] = ACTIONS(8237), + [sym_null_literal] = ACTIONS(8237), + [sym_empty_literal] = ACTIONS(8237), + [sym_date_literal] = ACTIONS(8239), + [anon_sym_POUND] = ACTIONS(8237), + }, + [STATE(5628)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5683), + [sym_identifier] = ACTIONS(7945), + [sym_newline] = ACTIONS(7947), + [anon_sym_COLON] = ACTIONS(7947), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7945), + [aux_sym_frm_property_statement_token1] = ACTIONS(7945), + [anon_sym_DOT] = ACTIONS(7945), + [anon_sym_BANG] = ACTIONS(7947), + [aux_sym__attribute_identifier_token1] = ACTIONS(7945), + [aux_sym_option_statement_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7945), + [aux_sym_preprocessor_const_token1] = ACTIONS(7945), + [sym_static_modifier] = ACTIONS(7945), + [sym__dim_keyword] = ACTIONS(7945), + [sym__redim_keyword] = ACTIONS(7945), + [aux_sym_get_accessor_token1] = ACTIONS(7945), + [aux_sym_set_accessor_token1] = ACTIONS(7945), + [anon_sym_COMMA] = ACTIONS(10750), + [aux_sym_const_declaration_token1] = ACTIONS(7945), + [anon_sym_LPAREN] = ACTIONS(7947), + [aux_sym_as_type_clause_token2] = ACTIONS(7945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7945), + [aux_sym_visibility_token1] = ACTIONS(7945), + [aux_sym_visibility_token2] = ACTIONS(7945), + [aux_sym_elseif_fragment_token1] = ACTIONS(7945), + [aux_sym_else_fragment_token1] = ACTIONS(7945), + [aux_sym_select_statement_token1] = ACTIONS(7945), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7945), + [aux_sym__for_header_token1] = ACTIONS(7945), + [aux_sym_do_statement_token1] = ACTIONS(7945), + [aux_sym_do_condition_token1] = ACTIONS(7945), + [aux_sym_with_statement_token1] = ACTIONS(7945), + [aux_sym_exit_statement_token1] = ACTIONS(7945), + [sym_end_statement] = ACTIONS(7947), + [aux_sym_on_goto_statement_token1] = ACTIONS(7945), + [aux_sym_on_goto_statement_token2] = ACTIONS(7945), + [aux_sym_on_error_statement_token2] = ACTIONS(7945), + [sym__ambiguous_redim_statement] = ACTIONS(7947), + [aux_sym_erase_statement_token1] = ACTIONS(7945), + [aux_sym_open_statement_token1] = ACTIONS(7945), + [aux_sym_file_mode_token2] = ACTIONS(7945), + [aux_sym_file_access_token2] = ACTIONS(7945), + [aux_sym_file_lock_token2] = ACTIONS(7945), + [aux_sym_print_statement_token1] = ACTIONS(7945), + [anon_sym_PLUS] = ACTIONS(7947), + [anon_sym_DASH] = ACTIONS(7945), + [anon_sym_QMARK] = ACTIONS(7947), + [aux_sym_close_statement_token1] = ACTIONS(7945), + [aux_sym_put_statement_token1] = ACTIONS(7945), + [aux_sym_unlock_statement_token1] = ACTIONS(7945), + [aux_sym_seek_statement_token1] = ACTIONS(7945), + [sym_reset_statement] = ACTIONS(7945), + [aux_sym_raise_event_statement_token1] = ACTIONS(7945), + [sym_stop_statement] = ACTIONS(7945), + [sym_beep_statement] = ACTIONS(7945), + [aux_sym_unload_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token2] = ACTIONS(7945), + [aux_sym_def_type_statement_token3] = ACTIONS(7945), + [aux_sym_def_type_statement_token4] = ACTIONS(7945), + [aux_sym_def_type_statement_token5] = ACTIONS(7945), + [aux_sym_def_type_statement_token6] = ACTIONS(7945), + [aux_sym_def_type_statement_token7] = ACTIONS(7945), + [aux_sym_def_type_statement_token8] = ACTIONS(7945), + [aux_sym_def_type_statement_token9] = ACTIONS(7945), + [aux_sym_def_type_statement_token10] = ACTIONS(7945), + [aux_sym_def_type_statement_token11] = ACTIONS(7945), + [aux_sym_def_type_statement_token12] = ACTIONS(7945), + [aux_sym_def_type_statement_token13] = ACTIONS(7945), + [aux_sym_def_type_statement_token14] = ACTIONS(7945), + [aux_sym_call_statement_token1] = ACTIONS(7945), + [sym__ambiguous_call_statement] = ACTIONS(7945), + [aux_sym_addressof_expression_token1] = ACTIONS(7945), + [aux_sym_type_of_expression_token1] = ACTIONS(7945), + [aux_sym_unary_expression_token1] = ACTIONS(7945), + [sym_string_literal] = ACTIONS(7947), + [sym_number_literal] = ACTIONS(7947), + [aux_sym_boolean_literal_token1] = ACTIONS(7945), + [aux_sym_boolean_literal_token2] = ACTIONS(7945), + [sym_nothing_literal] = ACTIONS(7945), + [sym_null_literal] = ACTIONS(7945), + [sym_empty_literal] = ACTIONS(7945), + [sym_date_literal] = ACTIONS(7947), + [anon_sym_POUND] = ACTIONS(7945), + }, + [STATE(5629)] = { + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(5629), + [sym_identifier] = ACTIONS(8109), + [sym_newline] = ACTIONS(8111), + [anon_sym_COLON] = ACTIONS(8111), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8109), + [aux_sym_frm_property_statement_token1] = ACTIONS(8109), + [anon_sym_DOT] = ACTIONS(8109), + [anon_sym_BANG] = ACTIONS(8111), + [aux_sym__attribute_identifier_token1] = ACTIONS(8109), + [aux_sym_option_statement_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8109), + [aux_sym_preprocessor_const_token1] = ACTIONS(8109), + [sym_static_modifier] = ACTIONS(8109), + [sym__dim_keyword] = ACTIONS(8109), + [sym__redim_keyword] = ACTIONS(8109), + [aux_sym_get_accessor_token1] = ACTIONS(8109), + [aux_sym_set_accessor_token1] = ACTIONS(8109), + [aux_sym_const_declaration_token1] = ACTIONS(8109), + [anon_sym_LPAREN] = ACTIONS(8111), + [aux_sym_as_type_clause_token2] = ACTIONS(8109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8109), + [aux_sym_visibility_token1] = ACTIONS(8109), + [aux_sym_visibility_token2] = ACTIONS(8109), + [aux_sym_elseif_fragment_token1] = ACTIONS(8109), + [aux_sym_else_fragment_token1] = ACTIONS(8109), + [aux_sym_select_statement_token1] = ACTIONS(8109), + [aux_sym_select_statement_token2] = ACTIONS(8109), + [aux_sym__for_header_token1] = ACTIONS(8109), + [aux_sym_do_statement_token1] = ACTIONS(8109), + [aux_sym_do_condition_token1] = ACTIONS(8109), + [aux_sym_with_statement_token1] = ACTIONS(8109), + [aux_sym_exit_statement_token1] = ACTIONS(8109), + [sym_end_statement] = ACTIONS(8111), + [aux_sym_on_goto_statement_token1] = ACTIONS(8109), + [aux_sym_on_goto_statement_token2] = ACTIONS(8109), + [aux_sym_on_error_statement_token2] = ACTIONS(8109), + [sym__ambiguous_redim_statement] = ACTIONS(8111), + [aux_sym_erase_statement_token1] = ACTIONS(8109), + [aux_sym_open_statement_token1] = ACTIONS(8109), + [aux_sym_file_mode_token2] = ACTIONS(8109), + [aux_sym_file_access_token2] = ACTIONS(8109), + [aux_sym_file_lock_token2] = ACTIONS(8109), + [aux_sym_print_statement_token1] = ACTIONS(8109), + [anon_sym_PLUS] = ACTIONS(8111), + [anon_sym_DASH] = ACTIONS(8109), + [anon_sym_SEMI] = ACTIONS(10760), + [anon_sym_QMARK] = ACTIONS(8111), + [aux_sym_close_statement_token1] = ACTIONS(8109), + [aux_sym_put_statement_token1] = ACTIONS(8109), + [aux_sym_unlock_statement_token1] = ACTIONS(8109), + [aux_sym_seek_statement_token1] = ACTIONS(8109), + [sym_reset_statement] = ACTIONS(8109), + [aux_sym_raise_event_statement_token1] = ACTIONS(8109), + [sym_stop_statement] = ACTIONS(8109), + [sym_beep_statement] = ACTIONS(8109), + [aux_sym_unload_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token2] = ACTIONS(8109), + [aux_sym_def_type_statement_token3] = ACTIONS(8109), + [aux_sym_def_type_statement_token4] = ACTIONS(8109), + [aux_sym_def_type_statement_token5] = ACTIONS(8109), + [aux_sym_def_type_statement_token6] = ACTIONS(8109), + [aux_sym_def_type_statement_token7] = ACTIONS(8109), + [aux_sym_def_type_statement_token8] = ACTIONS(8109), + [aux_sym_def_type_statement_token9] = ACTIONS(8109), + [aux_sym_def_type_statement_token10] = ACTIONS(8109), + [aux_sym_def_type_statement_token11] = ACTIONS(8109), + [aux_sym_def_type_statement_token12] = ACTIONS(8109), + [aux_sym_def_type_statement_token13] = ACTIONS(8109), + [aux_sym_def_type_statement_token14] = ACTIONS(8109), + [aux_sym_call_statement_token1] = ACTIONS(8109), + [sym__ambiguous_call_statement] = ACTIONS(8109), + [aux_sym_addressof_expression_token1] = ACTIONS(8109), + [aux_sym_type_of_expression_token1] = ACTIONS(8109), + [aux_sym_unary_expression_token1] = ACTIONS(8109), + [sym_string_literal] = ACTIONS(8111), + [sym_number_literal] = ACTIONS(8111), + [aux_sym_boolean_literal_token1] = ACTIONS(8109), + [aux_sym_boolean_literal_token2] = ACTIONS(8109), + [sym_nothing_literal] = ACTIONS(8109), + [sym_null_literal] = ACTIONS(8109), + [sym_empty_literal] = ACTIONS(8109), + [sym_date_literal] = ACTIONS(8111), + [anon_sym_POUND] = ACTIONS(8109), + }, + [STATE(5630)] = { + [sym_do_condition] = STATE(6617), + [sym_identifier] = ACTIONS(8271), + [sym_newline] = ACTIONS(8273), + [anon_sym_COLON] = ACTIONS(8273), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8271), + [aux_sym_frm_property_statement_token1] = ACTIONS(8271), + [anon_sym_DOT] = ACTIONS(8271), + [anon_sym_BANG] = ACTIONS(8273), + [aux_sym__attribute_identifier_token1] = ACTIONS(8271), + [aux_sym_option_statement_token3] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8271), + [aux_sym_preprocessor_const_token1] = ACTIONS(8271), + [sym_static_modifier] = ACTIONS(8271), + [sym__dim_keyword] = ACTIONS(8271), + [sym__redim_keyword] = ACTIONS(8271), + [aux_sym_get_accessor_token1] = ACTIONS(8271), + [aux_sym_set_accessor_token1] = ACTIONS(8271), + [aux_sym_const_declaration_token1] = ACTIONS(8271), + [anon_sym_LPAREN] = ACTIONS(8273), + [aux_sym_as_type_clause_token2] = ACTIONS(8271), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8271), + [aux_sym_visibility_token1] = ACTIONS(8271), + [aux_sym_visibility_token2] = ACTIONS(8271), + [aux_sym_elseif_fragment_token1] = ACTIONS(8271), + [aux_sym_else_fragment_token1] = ACTIONS(8271), + [aux_sym_select_statement_token1] = ACTIONS(8271), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8271), + [aux_sym__for_header_token1] = ACTIONS(8271), + [aux_sym_do_statement_token1] = ACTIONS(8271), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8271), + [aux_sym_exit_statement_token1] = ACTIONS(8271), + [sym_end_statement] = ACTIONS(8273), + [aux_sym_on_goto_statement_token1] = ACTIONS(8271), + [aux_sym_on_goto_statement_token2] = ACTIONS(8271), + [aux_sym_on_error_statement_token2] = ACTIONS(8271), + [sym__ambiguous_redim_statement] = ACTIONS(8273), + [aux_sym_erase_statement_token1] = ACTIONS(8271), + [aux_sym_open_statement_token1] = ACTIONS(8271), + [aux_sym_file_mode_token2] = ACTIONS(8271), + [aux_sym_file_access_token2] = ACTIONS(8271), + [aux_sym_file_lock_token2] = ACTIONS(8271), + [aux_sym_print_statement_token1] = ACTIONS(8271), + [anon_sym_PLUS] = ACTIONS(8273), + [anon_sym_DASH] = ACTIONS(8271), + [anon_sym_QMARK] = ACTIONS(8273), + [aux_sym_close_statement_token1] = ACTIONS(8271), + [aux_sym_put_statement_token1] = ACTIONS(8271), + [aux_sym_unlock_statement_token1] = ACTIONS(8271), + [aux_sym_seek_statement_token1] = ACTIONS(8271), + [sym_reset_statement] = ACTIONS(8271), + [aux_sym_raise_event_statement_token1] = ACTIONS(8271), + [sym_stop_statement] = ACTIONS(8271), + [sym_beep_statement] = ACTIONS(8271), + [aux_sym_unload_statement_token1] = ACTIONS(8271), + [aux_sym_def_type_statement_token1] = ACTIONS(8271), + [aux_sym_def_type_statement_token2] = ACTIONS(8271), + [aux_sym_def_type_statement_token3] = ACTIONS(8271), + [aux_sym_def_type_statement_token4] = ACTIONS(8271), + [aux_sym_def_type_statement_token5] = ACTIONS(8271), + [aux_sym_def_type_statement_token6] = ACTIONS(8271), + [aux_sym_def_type_statement_token7] = ACTIONS(8271), + [aux_sym_def_type_statement_token8] = ACTIONS(8271), + [aux_sym_def_type_statement_token9] = ACTIONS(8271), + [aux_sym_def_type_statement_token10] = ACTIONS(8271), + [aux_sym_def_type_statement_token11] = ACTIONS(8271), + [aux_sym_def_type_statement_token12] = ACTIONS(8271), + [aux_sym_def_type_statement_token13] = ACTIONS(8271), + [aux_sym_def_type_statement_token14] = ACTIONS(8271), + [aux_sym_call_statement_token1] = ACTIONS(8271), + [sym__ambiguous_call_statement] = ACTIONS(8271), + [aux_sym_addressof_expression_token1] = ACTIONS(8271), + [aux_sym_type_of_expression_token1] = ACTIONS(8271), + [aux_sym_unary_expression_token1] = ACTIONS(8271), + [sym_string_literal] = ACTIONS(8273), + [sym_number_literal] = ACTIONS(8273), + [aux_sym_boolean_literal_token1] = ACTIONS(8271), + [aux_sym_boolean_literal_token2] = ACTIONS(8271), + [sym_nothing_literal] = ACTIONS(8271), + [sym_null_literal] = ACTIONS(8271), + [sym_empty_literal] = ACTIONS(8271), + [sym_date_literal] = ACTIONS(8273), + [anon_sym_POUND] = ACTIONS(8271), + }, + [STATE(5631)] = { + [sym_do_condition] = STATE(6618), + [sym_identifier] = ACTIONS(8275), + [sym_newline] = ACTIONS(8277), + [anon_sym_COLON] = ACTIONS(8277), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8275), + [aux_sym_frm_property_statement_token1] = ACTIONS(8275), + [anon_sym_DOT] = ACTIONS(8275), + [anon_sym_BANG] = ACTIONS(8277), + [aux_sym__attribute_identifier_token1] = ACTIONS(8275), + [aux_sym_option_statement_token3] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8275), + [aux_sym_preprocessor_const_token1] = ACTIONS(8275), + [sym_static_modifier] = ACTIONS(8275), + [sym__dim_keyword] = ACTIONS(8275), + [sym__redim_keyword] = ACTIONS(8275), + [aux_sym_get_accessor_token1] = ACTIONS(8275), + [aux_sym_set_accessor_token1] = ACTIONS(8275), + [aux_sym_const_declaration_token1] = ACTIONS(8275), + [anon_sym_LPAREN] = ACTIONS(8277), + [aux_sym_as_type_clause_token2] = ACTIONS(8275), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8275), + [aux_sym_visibility_token1] = ACTIONS(8275), + [aux_sym_visibility_token2] = ACTIONS(8275), + [aux_sym_elseif_fragment_token1] = ACTIONS(8275), + [aux_sym_else_fragment_token1] = ACTIONS(8275), + [aux_sym_select_statement_token1] = ACTIONS(8275), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8275), + [aux_sym__for_header_token1] = ACTIONS(8275), + [aux_sym_do_statement_token1] = ACTIONS(8275), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8275), + [aux_sym_exit_statement_token1] = ACTIONS(8275), + [sym_end_statement] = ACTIONS(8277), + [aux_sym_on_goto_statement_token1] = ACTIONS(8275), + [aux_sym_on_goto_statement_token2] = ACTIONS(8275), + [aux_sym_on_error_statement_token2] = ACTIONS(8275), + [sym__ambiguous_redim_statement] = ACTIONS(8277), + [aux_sym_erase_statement_token1] = ACTIONS(8275), + [aux_sym_open_statement_token1] = ACTIONS(8275), + [aux_sym_file_mode_token2] = ACTIONS(8275), + [aux_sym_file_access_token2] = ACTIONS(8275), + [aux_sym_file_lock_token2] = ACTIONS(8275), + [aux_sym_print_statement_token1] = ACTIONS(8275), + [anon_sym_PLUS] = ACTIONS(8277), + [anon_sym_DASH] = ACTIONS(8275), + [anon_sym_QMARK] = ACTIONS(8277), + [aux_sym_close_statement_token1] = ACTIONS(8275), + [aux_sym_put_statement_token1] = ACTIONS(8275), + [aux_sym_unlock_statement_token1] = ACTIONS(8275), + [aux_sym_seek_statement_token1] = ACTIONS(8275), + [sym_reset_statement] = ACTIONS(8275), + [aux_sym_raise_event_statement_token1] = ACTIONS(8275), + [sym_stop_statement] = ACTIONS(8275), + [sym_beep_statement] = ACTIONS(8275), + [aux_sym_unload_statement_token1] = ACTIONS(8275), + [aux_sym_def_type_statement_token1] = ACTIONS(8275), + [aux_sym_def_type_statement_token2] = ACTIONS(8275), + [aux_sym_def_type_statement_token3] = ACTIONS(8275), + [aux_sym_def_type_statement_token4] = ACTIONS(8275), + [aux_sym_def_type_statement_token5] = ACTIONS(8275), + [aux_sym_def_type_statement_token6] = ACTIONS(8275), + [aux_sym_def_type_statement_token7] = ACTIONS(8275), + [aux_sym_def_type_statement_token8] = ACTIONS(8275), + [aux_sym_def_type_statement_token9] = ACTIONS(8275), + [aux_sym_def_type_statement_token10] = ACTIONS(8275), + [aux_sym_def_type_statement_token11] = ACTIONS(8275), + [aux_sym_def_type_statement_token12] = ACTIONS(8275), + [aux_sym_def_type_statement_token13] = ACTIONS(8275), + [aux_sym_def_type_statement_token14] = ACTIONS(8275), + [aux_sym_call_statement_token1] = ACTIONS(8275), + [sym__ambiguous_call_statement] = ACTIONS(8275), + [aux_sym_addressof_expression_token1] = ACTIONS(8275), + [aux_sym_type_of_expression_token1] = ACTIONS(8275), + [aux_sym_unary_expression_token1] = ACTIONS(8275), + [sym_string_literal] = ACTIONS(8277), + [sym_number_literal] = ACTIONS(8277), + [aux_sym_boolean_literal_token1] = ACTIONS(8275), + [aux_sym_boolean_literal_token2] = ACTIONS(8275), + [sym_nothing_literal] = ACTIONS(8275), + [sym_null_literal] = ACTIONS(8275), + [sym_empty_literal] = ACTIONS(8275), + [sym_date_literal] = ACTIONS(8277), + [anon_sym_POUND] = ACTIONS(8275), + }, + [STATE(5632)] = { + [sym_do_condition] = STATE(6490), + [sym_identifier] = ACTIONS(8140), + [sym_newline] = ACTIONS(8142), + [anon_sym_COLON] = ACTIONS(8142), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8140), + [aux_sym_frm_property_statement_token1] = ACTIONS(8140), + [anon_sym_DOT] = ACTIONS(8140), + [anon_sym_BANG] = ACTIONS(8142), + [aux_sym__attribute_identifier_token1] = ACTIONS(8140), + [aux_sym_option_statement_token3] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8140), + [aux_sym_preprocessor_const_token1] = ACTIONS(8140), + [sym_static_modifier] = ACTIONS(8140), + [sym__dim_keyword] = ACTIONS(8140), + [sym__redim_keyword] = ACTIONS(8140), + [aux_sym_get_accessor_token1] = ACTIONS(8140), + [aux_sym_set_accessor_token1] = ACTIONS(8140), + [aux_sym_const_declaration_token1] = ACTIONS(8140), + [anon_sym_LPAREN] = ACTIONS(8142), + [aux_sym_as_type_clause_token2] = ACTIONS(8140), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8140), + [aux_sym_visibility_token1] = ACTIONS(8140), + [aux_sym_visibility_token2] = ACTIONS(8140), + [aux_sym_elseif_fragment_token1] = ACTIONS(8140), + [aux_sym_else_fragment_token1] = ACTIONS(8140), + [aux_sym_select_statement_token1] = ACTIONS(8140), + [aux_sym__for_header_token1] = ACTIONS(8140), + [aux_sym_do_statement_token1] = ACTIONS(8140), + [aux_sym_do_statement_token2] = ACTIONS(8140), + [aux_sym_do_condition_token1] = ACTIONS(10489), + [aux_sym_do_condition_token2] = ACTIONS(10489), + [aux_sym_with_statement_token1] = ACTIONS(8140), + [aux_sym_exit_statement_token1] = ACTIONS(8140), + [sym_end_statement] = ACTIONS(8142), + [aux_sym_on_goto_statement_token1] = ACTIONS(8140), + [aux_sym_on_goto_statement_token2] = ACTIONS(8140), + [aux_sym_on_error_statement_token2] = ACTIONS(8140), + [sym__ambiguous_redim_statement] = ACTIONS(8142), + [aux_sym_erase_statement_token1] = ACTIONS(8140), + [aux_sym_open_statement_token1] = ACTIONS(8140), + [aux_sym_file_mode_token2] = ACTIONS(8140), + [aux_sym_file_access_token2] = ACTIONS(8140), + [aux_sym_file_lock_token2] = ACTIONS(8140), + [aux_sym_print_statement_token1] = ACTIONS(8140), + [anon_sym_PLUS] = ACTIONS(8142), + [anon_sym_DASH] = ACTIONS(8140), + [anon_sym_QMARK] = ACTIONS(8142), + [aux_sym_close_statement_token1] = ACTIONS(8140), + [aux_sym_put_statement_token1] = ACTIONS(8140), + [aux_sym_unlock_statement_token1] = ACTIONS(8140), + [aux_sym_seek_statement_token1] = ACTIONS(8140), + [sym_reset_statement] = ACTIONS(8140), + [aux_sym_raise_event_statement_token1] = ACTIONS(8140), + [sym_stop_statement] = ACTIONS(8140), + [sym_beep_statement] = ACTIONS(8140), + [aux_sym_unload_statement_token1] = ACTIONS(8140), + [aux_sym_def_type_statement_token1] = ACTIONS(8140), + [aux_sym_def_type_statement_token2] = ACTIONS(8140), + [aux_sym_def_type_statement_token3] = ACTIONS(8140), + [aux_sym_def_type_statement_token4] = ACTIONS(8140), + [aux_sym_def_type_statement_token5] = ACTIONS(8140), + [aux_sym_def_type_statement_token6] = ACTIONS(8140), + [aux_sym_def_type_statement_token7] = ACTIONS(8140), + [aux_sym_def_type_statement_token8] = ACTIONS(8140), + [aux_sym_def_type_statement_token9] = ACTIONS(8140), + [aux_sym_def_type_statement_token10] = ACTIONS(8140), + [aux_sym_def_type_statement_token11] = ACTIONS(8140), + [aux_sym_def_type_statement_token12] = ACTIONS(8140), + [aux_sym_def_type_statement_token13] = ACTIONS(8140), + [aux_sym_def_type_statement_token14] = ACTIONS(8140), + [aux_sym_call_statement_token1] = ACTIONS(8140), + [sym__ambiguous_call_statement] = ACTIONS(8140), + [aux_sym_addressof_expression_token1] = ACTIONS(8140), + [aux_sym_type_of_expression_token1] = ACTIONS(8140), + [aux_sym_unary_expression_token1] = ACTIONS(8140), + [sym_string_literal] = ACTIONS(8142), + [sym_number_literal] = ACTIONS(8142), + [aux_sym_boolean_literal_token1] = ACTIONS(8140), + [aux_sym_boolean_literal_token2] = ACTIONS(8140), + [sym_nothing_literal] = ACTIONS(8140), + [sym_null_literal] = ACTIONS(8140), + [sym_empty_literal] = ACTIONS(8140), + [sym_date_literal] = ACTIONS(8142), + [anon_sym_POUND] = ACTIONS(8140), + }, + [STATE(5633)] = { + [sym_identifier] = ACTIONS(8620), + [sym_newline] = ACTIONS(8622), + [anon_sym_COLON] = ACTIONS(8622), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8620), + [aux_sym_frm_property_statement_token1] = ACTIONS(8620), + [anon_sym_EQ] = ACTIONS(8622), + [anon_sym_DOT] = ACTIONS(8620), + [anon_sym_BANG] = ACTIONS(8622), + [aux_sym__attribute_identifier_token1] = ACTIONS(8620), + [aux_sym_option_statement_token3] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8620), + [aux_sym_preprocessor_const_token1] = ACTIONS(8620), + [sym_static_modifier] = ACTIONS(8620), + [sym__dim_keyword] = ACTIONS(8620), + [sym__redim_keyword] = ACTIONS(8620), + [aux_sym_get_accessor_token1] = ACTIONS(8620), + [aux_sym_set_accessor_token1] = ACTIONS(8620), + [anon_sym_COMMA] = ACTIONS(8622), + [aux_sym_const_declaration_token1] = ACTIONS(8620), + [anon_sym_LPAREN] = ACTIONS(8622), + [aux_sym_as_type_clause_token2] = ACTIONS(8620), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8620), + [aux_sym_visibility_token1] = ACTIONS(8620), + [aux_sym_visibility_token2] = ACTIONS(8620), + [aux_sym_elseif_fragment_token1] = ACTIONS(8620), + [aux_sym_else_fragment_token1] = ACTIONS(8620), + [aux_sym_select_statement_token1] = ACTIONS(8620), + [aux_sym__for_header_token1] = ACTIONS(8620), + [aux_sym_do_statement_token1] = ACTIONS(8620), + [aux_sym_do_condition_token1] = ACTIONS(8620), + [aux_sym_while_statement_token1] = ACTIONS(8620), + [aux_sym_with_statement_token1] = ACTIONS(8620), + [aux_sym_exit_statement_token1] = ACTIONS(8620), + [sym_end_statement] = ACTIONS(8622), + [aux_sym_on_goto_statement_token1] = ACTIONS(8620), + [aux_sym_on_goto_statement_token2] = ACTIONS(8620), + [aux_sym_on_error_statement_token2] = ACTIONS(8620), + [sym__ambiguous_redim_statement] = ACTIONS(8622), + [aux_sym_erase_statement_token1] = ACTIONS(8620), + [aux_sym_open_statement_token1] = ACTIONS(8620), + [aux_sym_file_mode_token2] = ACTIONS(8620), + [aux_sym_file_access_token2] = ACTIONS(8620), + [aux_sym_file_lock_token2] = ACTIONS(8620), + [aux_sym_print_statement_token1] = ACTIONS(8620), + [anon_sym_PLUS] = ACTIONS(8622), + [anon_sym_DASH] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(8622), + [aux_sym_close_statement_token1] = ACTIONS(8620), + [aux_sym_put_statement_token1] = ACTIONS(8620), + [aux_sym_unlock_statement_token1] = ACTIONS(8620), + [aux_sym_seek_statement_token1] = ACTIONS(8620), + [sym_reset_statement] = ACTIONS(8620), + [aux_sym_raise_event_statement_token1] = ACTIONS(8620), + [sym_stop_statement] = ACTIONS(8620), + [sym_beep_statement] = ACTIONS(8620), + [aux_sym_unload_statement_token1] = ACTIONS(8620), + [aux_sym_def_type_statement_token1] = ACTIONS(8620), + [aux_sym_def_type_statement_token2] = ACTIONS(8620), + [aux_sym_def_type_statement_token3] = ACTIONS(8620), + [aux_sym_def_type_statement_token4] = ACTIONS(8620), + [aux_sym_def_type_statement_token5] = ACTIONS(8620), + [aux_sym_def_type_statement_token6] = ACTIONS(8620), + [aux_sym_def_type_statement_token7] = ACTIONS(8620), + [aux_sym_def_type_statement_token8] = ACTIONS(8620), + [aux_sym_def_type_statement_token9] = ACTIONS(8620), + [aux_sym_def_type_statement_token10] = ACTIONS(8620), + [aux_sym_def_type_statement_token11] = ACTIONS(8620), + [aux_sym_def_type_statement_token12] = ACTIONS(8620), + [aux_sym_def_type_statement_token13] = ACTIONS(8620), + [aux_sym_def_type_statement_token14] = ACTIONS(8620), + [aux_sym_call_statement_token1] = ACTIONS(8620), + [sym__ambiguous_call_statement] = ACTIONS(8620), + [aux_sym_addressof_expression_token1] = ACTIONS(8620), + [aux_sym_type_of_expression_token1] = ACTIONS(8620), + [aux_sym_unary_expression_token1] = ACTIONS(8620), + [sym_string_literal] = ACTIONS(8622), + [sym_number_literal] = ACTIONS(8622), + [aux_sym_boolean_literal_token1] = ACTIONS(8620), + [aux_sym_boolean_literal_token2] = ACTIONS(8620), + [sym_nothing_literal] = ACTIONS(8620), + [sym_null_literal] = ACTIONS(8620), + [sym_empty_literal] = ACTIONS(8620), + [sym_date_literal] = ACTIONS(8622), + [anon_sym_POUND] = ACTIONS(8620), + }, + [STATE(5634)] = { + [sym_identifier] = ACTIONS(8692), + [sym_newline] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(8694), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8692), + [aux_sym_frm_property_statement_token1] = ACTIONS(8692), + [anon_sym_DOT] = ACTIONS(8692), + [anon_sym_BANG] = ACTIONS(8694), + [aux_sym__attribute_identifier_token1] = ACTIONS(8692), + [aux_sym_option_statement_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8692), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8692), + [aux_sym_preprocessor_const_token1] = ACTIONS(8692), + [sym_static_modifier] = ACTIONS(8692), + [sym__dim_keyword] = ACTIONS(8692), + [sym__redim_keyword] = ACTIONS(8692), + [aux_sym_get_accessor_token1] = ACTIONS(8692), + [aux_sym_set_accessor_token1] = ACTIONS(8692), + [aux_sym_const_declaration_token1] = ACTIONS(8692), + [anon_sym_LPAREN] = ACTIONS(8694), + [aux_sym_as_type_clause_token2] = ACTIONS(8692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8692), + [aux_sym_visibility_token1] = ACTIONS(8692), + [aux_sym_visibility_token2] = ACTIONS(8692), + [aux_sym_elseif_fragment_token1] = ACTIONS(8692), + [aux_sym_else_fragment_token1] = ACTIONS(10360), + [aux_sym_select_statement_token1] = ACTIONS(8692), + [aux_sym__for_header_token1] = ACTIONS(8692), + [aux_sym_do_statement_token1] = ACTIONS(8692), + [aux_sym_do_condition_token1] = ACTIONS(8692), + [aux_sym_with_statement_token1] = ACTIONS(8692), + [aux_sym_exit_statement_token1] = ACTIONS(8692), + [sym_end_statement] = ACTIONS(8694), + [aux_sym_on_goto_statement_token1] = ACTIONS(8692), + [aux_sym_on_goto_statement_token2] = ACTIONS(8692), + [aux_sym_on_error_statement_token2] = ACTIONS(8692), + [sym__ambiguous_redim_statement] = ACTIONS(8694), + [aux_sym_erase_statement_token1] = ACTIONS(8692), + [aux_sym_open_statement_token1] = ACTIONS(8692), + [aux_sym_file_mode_token2] = ACTIONS(8692), + [aux_sym_file_access_token2] = ACTIONS(8692), + [aux_sym_file_lock_token2] = ACTIONS(8692), + [aux_sym_print_statement_token1] = ACTIONS(8692), + [anon_sym_PLUS] = ACTIONS(8694), + [anon_sym_DASH] = ACTIONS(8692), + [anon_sym_QMARK] = ACTIONS(8694), + [aux_sym_close_statement_token1] = ACTIONS(8692), + [aux_sym_put_statement_token1] = ACTIONS(8692), + [aux_sym_unlock_statement_token1] = ACTIONS(8692), + [aux_sym_seek_statement_token1] = ACTIONS(8692), + [sym_reset_statement] = ACTIONS(8692), + [aux_sym_raise_event_statement_token1] = ACTIONS(8692), + [sym_stop_statement] = ACTIONS(8692), + [sym_beep_statement] = ACTIONS(8692), + [aux_sym_unload_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token2] = ACTIONS(8692), + [aux_sym_def_type_statement_token3] = ACTIONS(8692), + [aux_sym_def_type_statement_token4] = ACTIONS(8692), + [aux_sym_def_type_statement_token5] = ACTIONS(8692), + [aux_sym_def_type_statement_token6] = ACTIONS(8692), + [aux_sym_def_type_statement_token7] = ACTIONS(8692), + [aux_sym_def_type_statement_token8] = ACTIONS(8692), + [aux_sym_def_type_statement_token9] = ACTIONS(8692), + [aux_sym_def_type_statement_token10] = ACTIONS(8692), + [aux_sym_def_type_statement_token11] = ACTIONS(8692), + [aux_sym_def_type_statement_token12] = ACTIONS(8692), + [aux_sym_def_type_statement_token13] = ACTIONS(8692), + [aux_sym_def_type_statement_token14] = ACTIONS(8692), + [aux_sym_call_statement_token1] = ACTIONS(8692), + [sym__ambiguous_call_statement] = ACTIONS(8692), + [aux_sym_addressof_expression_token1] = ACTIONS(8692), + [aux_sym_type_of_expression_token1] = ACTIONS(8692), + [aux_sym_unary_expression_token1] = ACTIONS(8692), + [sym_string_literal] = ACTIONS(8694), + [sym_number_literal] = ACTIONS(8694), + [aux_sym_boolean_literal_token1] = ACTIONS(8692), + [aux_sym_boolean_literal_token2] = ACTIONS(8692), + [sym_nothing_literal] = ACTIONS(8692), + [sym_null_literal] = ACTIONS(8692), + [sym_empty_literal] = ACTIONS(8692), + [sym_date_literal] = ACTIONS(8694), + [anon_sym_POUND] = ACTIONS(8692), + }, + [STATE(5635)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(5636)] = { + [sym_do_condition] = STATE(6619), + [sym_identifier] = ACTIONS(8279), + [sym_newline] = ACTIONS(8281), + [anon_sym_COLON] = ACTIONS(8281), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8279), + [aux_sym_frm_property_statement_token1] = ACTIONS(8279), + [anon_sym_DOT] = ACTIONS(8279), + [anon_sym_BANG] = ACTIONS(8281), + [aux_sym__attribute_identifier_token1] = ACTIONS(8279), + [aux_sym_option_statement_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8279), + [aux_sym_preprocessor_const_token1] = ACTIONS(8279), + [sym_static_modifier] = ACTIONS(8279), + [sym__dim_keyword] = ACTIONS(8279), + [sym__redim_keyword] = ACTIONS(8279), + [aux_sym_get_accessor_token1] = ACTIONS(8279), + [aux_sym_set_accessor_token1] = ACTIONS(8279), + [aux_sym_const_declaration_token1] = ACTIONS(8279), + [anon_sym_LPAREN] = ACTIONS(8281), + [aux_sym_as_type_clause_token2] = ACTIONS(8279), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8279), + [aux_sym_visibility_token1] = ACTIONS(8279), + [aux_sym_visibility_token2] = ACTIONS(8279), + [aux_sym_elseif_fragment_token1] = ACTIONS(8279), + [aux_sym_else_fragment_token1] = ACTIONS(8279), + [aux_sym_select_statement_token1] = ACTIONS(8279), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8279), + [aux_sym__for_header_token1] = ACTIONS(8279), + [aux_sym_do_statement_token1] = ACTIONS(8279), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8279), + [aux_sym_exit_statement_token1] = ACTIONS(8279), + [sym_end_statement] = ACTIONS(8281), + [aux_sym_on_goto_statement_token1] = ACTIONS(8279), + [aux_sym_on_goto_statement_token2] = ACTIONS(8279), + [aux_sym_on_error_statement_token2] = ACTIONS(8279), + [sym__ambiguous_redim_statement] = ACTIONS(8281), + [aux_sym_erase_statement_token1] = ACTIONS(8279), + [aux_sym_open_statement_token1] = ACTIONS(8279), + [aux_sym_file_mode_token2] = ACTIONS(8279), + [aux_sym_file_access_token2] = ACTIONS(8279), + [aux_sym_file_lock_token2] = ACTIONS(8279), + [aux_sym_print_statement_token1] = ACTIONS(8279), + [anon_sym_PLUS] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8279), + [anon_sym_QMARK] = ACTIONS(8281), + [aux_sym_close_statement_token1] = ACTIONS(8279), + [aux_sym_put_statement_token1] = ACTIONS(8279), + [aux_sym_unlock_statement_token1] = ACTIONS(8279), + [aux_sym_seek_statement_token1] = ACTIONS(8279), + [sym_reset_statement] = ACTIONS(8279), + [aux_sym_raise_event_statement_token1] = ACTIONS(8279), + [sym_stop_statement] = ACTIONS(8279), + [sym_beep_statement] = ACTIONS(8279), + [aux_sym_unload_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token2] = ACTIONS(8279), + [aux_sym_def_type_statement_token3] = ACTIONS(8279), + [aux_sym_def_type_statement_token4] = ACTIONS(8279), + [aux_sym_def_type_statement_token5] = ACTIONS(8279), + [aux_sym_def_type_statement_token6] = ACTIONS(8279), + [aux_sym_def_type_statement_token7] = ACTIONS(8279), + [aux_sym_def_type_statement_token8] = ACTIONS(8279), + [aux_sym_def_type_statement_token9] = ACTIONS(8279), + [aux_sym_def_type_statement_token10] = ACTIONS(8279), + [aux_sym_def_type_statement_token11] = ACTIONS(8279), + [aux_sym_def_type_statement_token12] = ACTIONS(8279), + [aux_sym_def_type_statement_token13] = ACTIONS(8279), + [aux_sym_def_type_statement_token14] = ACTIONS(8279), + [aux_sym_call_statement_token1] = ACTIONS(8279), + [sym__ambiguous_call_statement] = ACTIONS(8279), + [aux_sym_addressof_expression_token1] = ACTIONS(8279), + [aux_sym_type_of_expression_token1] = ACTIONS(8279), + [aux_sym_unary_expression_token1] = ACTIONS(8279), + [sym_string_literal] = ACTIONS(8281), + [sym_number_literal] = ACTIONS(8281), + [aux_sym_boolean_literal_token1] = ACTIONS(8279), + [aux_sym_boolean_literal_token2] = ACTIONS(8279), + [sym_nothing_literal] = ACTIONS(8279), + [sym_null_literal] = ACTIONS(8279), + [sym_empty_literal] = ACTIONS(8279), + [sym_date_literal] = ACTIONS(8281), + [anon_sym_POUND] = ACTIONS(8279), + }, + [STATE(5637)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(5638)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(5639)] = { + [sym_do_condition] = STATE(6621), + [sym_identifier] = ACTIONS(8283), + [sym_newline] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8283), + [aux_sym_frm_property_statement_token1] = ACTIONS(8283), + [anon_sym_DOT] = ACTIONS(8283), + [anon_sym_BANG] = ACTIONS(8285), + [aux_sym__attribute_identifier_token1] = ACTIONS(8283), + [aux_sym_option_statement_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8283), + [aux_sym_preprocessor_const_token1] = ACTIONS(8283), + [sym_static_modifier] = ACTIONS(8283), + [sym__dim_keyword] = ACTIONS(8283), + [sym__redim_keyword] = ACTIONS(8283), + [aux_sym_get_accessor_token1] = ACTIONS(8283), + [aux_sym_set_accessor_token1] = ACTIONS(8283), + [aux_sym_const_declaration_token1] = ACTIONS(8283), + [anon_sym_LPAREN] = ACTIONS(8285), + [aux_sym_as_type_clause_token2] = ACTIONS(8283), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8283), + [aux_sym_visibility_token1] = ACTIONS(8283), + [aux_sym_visibility_token2] = ACTIONS(8283), + [aux_sym_elseif_fragment_token1] = ACTIONS(8283), + [aux_sym_else_fragment_token1] = ACTIONS(8283), + [aux_sym_select_statement_token1] = ACTIONS(8283), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8283), + [aux_sym__for_header_token1] = ACTIONS(8283), + [aux_sym_do_statement_token1] = ACTIONS(8283), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8283), + [aux_sym_exit_statement_token1] = ACTIONS(8283), + [sym_end_statement] = ACTIONS(8285), + [aux_sym_on_goto_statement_token1] = ACTIONS(8283), + [aux_sym_on_goto_statement_token2] = ACTIONS(8283), + [aux_sym_on_error_statement_token2] = ACTIONS(8283), + [sym__ambiguous_redim_statement] = ACTIONS(8285), + [aux_sym_erase_statement_token1] = ACTIONS(8283), + [aux_sym_open_statement_token1] = ACTIONS(8283), + [aux_sym_file_mode_token2] = ACTIONS(8283), + [aux_sym_file_access_token2] = ACTIONS(8283), + [aux_sym_file_lock_token2] = ACTIONS(8283), + [aux_sym_print_statement_token1] = ACTIONS(8283), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_DASH] = ACTIONS(8283), + [anon_sym_QMARK] = ACTIONS(8285), + [aux_sym_close_statement_token1] = ACTIONS(8283), + [aux_sym_put_statement_token1] = ACTIONS(8283), + [aux_sym_unlock_statement_token1] = ACTIONS(8283), + [aux_sym_seek_statement_token1] = ACTIONS(8283), + [sym_reset_statement] = ACTIONS(8283), + [aux_sym_raise_event_statement_token1] = ACTIONS(8283), + [sym_stop_statement] = ACTIONS(8283), + [sym_beep_statement] = ACTIONS(8283), + [aux_sym_unload_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token2] = ACTIONS(8283), + [aux_sym_def_type_statement_token3] = ACTIONS(8283), + [aux_sym_def_type_statement_token4] = ACTIONS(8283), + [aux_sym_def_type_statement_token5] = ACTIONS(8283), + [aux_sym_def_type_statement_token6] = ACTIONS(8283), + [aux_sym_def_type_statement_token7] = ACTIONS(8283), + [aux_sym_def_type_statement_token8] = ACTIONS(8283), + [aux_sym_def_type_statement_token9] = ACTIONS(8283), + [aux_sym_def_type_statement_token10] = ACTIONS(8283), + [aux_sym_def_type_statement_token11] = ACTIONS(8283), + [aux_sym_def_type_statement_token12] = ACTIONS(8283), + [aux_sym_def_type_statement_token13] = ACTIONS(8283), + [aux_sym_def_type_statement_token14] = ACTIONS(8283), + [aux_sym_call_statement_token1] = ACTIONS(8283), + [sym__ambiguous_call_statement] = ACTIONS(8283), + [aux_sym_addressof_expression_token1] = ACTIONS(8283), + [aux_sym_type_of_expression_token1] = ACTIONS(8283), + [aux_sym_unary_expression_token1] = ACTIONS(8283), + [sym_string_literal] = ACTIONS(8285), + [sym_number_literal] = ACTIONS(8285), + [aux_sym_boolean_literal_token1] = ACTIONS(8283), + [aux_sym_boolean_literal_token2] = ACTIONS(8283), + [sym_nothing_literal] = ACTIONS(8283), + [sym_null_literal] = ACTIONS(8283), + [sym_empty_literal] = ACTIONS(8283), + [sym_date_literal] = ACTIONS(8285), + [anon_sym_POUND] = ACTIONS(8283), + }, + [STATE(5640)] = { + [sym_identifier] = ACTIONS(9405), + [sym_newline] = ACTIONS(9407), + [anon_sym_COLON] = ACTIONS(9407), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9405), + [aux_sym_frm_property_statement_token1] = ACTIONS(9405), + [anon_sym_DOT] = ACTIONS(9405), + [anon_sym_BANG] = ACTIONS(9407), + [aux_sym__attribute_identifier_token1] = ACTIONS(9405), + [aux_sym_option_statement_token3] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9405), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9405), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9405), + [aux_sym_preprocessor_const_token1] = ACTIONS(9405), + [sym_static_modifier] = ACTIONS(9405), + [sym__dim_keyword] = ACTIONS(9405), + [sym__redim_keyword] = ACTIONS(9405), + [aux_sym_get_accessor_token1] = ACTIONS(9405), + [aux_sym_set_accessor_token1] = ACTIONS(9405), + [aux_sym_const_declaration_token1] = ACTIONS(9405), + [anon_sym_LPAREN] = ACTIONS(9407), + [aux_sym_as_type_clause_token2] = ACTIONS(9405), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9405), + [aux_sym_visibility_token1] = ACTIONS(9405), + [aux_sym_visibility_token2] = ACTIONS(9405), + [aux_sym_elseif_fragment_token1] = ACTIONS(9405), + [aux_sym_else_fragment_token1] = ACTIONS(9405), + [aux_sym_select_statement_token1] = ACTIONS(9405), + [aux_sym__for_header_token1] = ACTIONS(9405), + [aux_sym_do_statement_token1] = ACTIONS(9405), + [aux_sym_do_condition_token1] = ACTIONS(9405), + [aux_sym_with_statement_token1] = ACTIONS(9405), + [aux_sym_exit_statement_token1] = ACTIONS(9405), + [sym_end_statement] = ACTIONS(9407), + [aux_sym_on_goto_statement_token1] = ACTIONS(9405), + [aux_sym_on_goto_statement_token2] = ACTIONS(9405), + [aux_sym_on_error_statement_token2] = ACTIONS(9405), + [sym__ambiguous_redim_statement] = ACTIONS(9407), + [aux_sym_erase_statement_token1] = ACTIONS(9405), + [aux_sym_open_statement_token1] = ACTIONS(9405), + [aux_sym_file_mode_token2] = ACTIONS(9405), + [aux_sym_file_access_token2] = ACTIONS(9405), + [aux_sym_file_lock_token2] = ACTIONS(9405), + [aux_sym_print_statement_token1] = ACTIONS(9405), + [anon_sym_PLUS] = ACTIONS(9407), + [anon_sym_DASH] = ACTIONS(9405), + [anon_sym_QMARK] = ACTIONS(9407), + [aux_sym_close_statement_token1] = ACTIONS(9405), + [aux_sym_put_statement_token1] = ACTIONS(9405), + [aux_sym_unlock_statement_token1] = ACTIONS(9405), + [aux_sym_seek_statement_token1] = ACTIONS(9405), + [sym_reset_statement] = ACTIONS(9405), + [aux_sym_raise_event_statement_token1] = ACTIONS(9405), + [sym_stop_statement] = ACTIONS(9405), + [sym_beep_statement] = ACTIONS(9405), + [aux_sym_unload_statement_token1] = ACTIONS(9405), + [aux_sym_def_type_statement_token1] = ACTIONS(9405), + [aux_sym_def_type_statement_token2] = ACTIONS(9405), + [aux_sym_def_type_statement_token3] = ACTIONS(9405), + [aux_sym_def_type_statement_token4] = ACTIONS(9405), + [aux_sym_def_type_statement_token5] = ACTIONS(9405), + [aux_sym_def_type_statement_token6] = ACTIONS(9405), + [aux_sym_def_type_statement_token7] = ACTIONS(9405), + [aux_sym_def_type_statement_token8] = ACTIONS(9405), + [aux_sym_def_type_statement_token9] = ACTIONS(9405), + [aux_sym_def_type_statement_token10] = ACTIONS(9405), + [aux_sym_def_type_statement_token11] = ACTIONS(9405), + [aux_sym_def_type_statement_token12] = ACTIONS(9405), + [aux_sym_def_type_statement_token13] = ACTIONS(9405), + [aux_sym_def_type_statement_token14] = ACTIONS(9405), + [aux_sym_call_statement_token1] = ACTIONS(9405), + [sym__ambiguous_call_statement] = ACTIONS(9405), + [aux_sym_addressof_expression_token1] = ACTIONS(9405), + [aux_sym_type_of_expression_token1] = ACTIONS(9405), + [aux_sym_unary_expression_token1] = ACTIONS(9405), + [sym_string_literal] = ACTIONS(9407), + [sym_number_literal] = ACTIONS(9407), + [aux_sym_boolean_literal_token1] = ACTIONS(9405), + [aux_sym_boolean_literal_token2] = ACTIONS(9405), + [sym_nothing_literal] = ACTIONS(9405), + [sym_null_literal] = ACTIONS(9405), + [sym_empty_literal] = ACTIONS(9405), + [sym_date_literal] = ACTIONS(9407), + [anon_sym_POUND] = ACTIONS(9405), + }, + [STATE(5641)] = { + [sym_identifier] = ACTIONS(9409), + [sym_newline] = ACTIONS(9411), + [anon_sym_COLON] = ACTIONS(9411), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9409), + [aux_sym_frm_property_statement_token1] = ACTIONS(9409), + [anon_sym_DOT] = ACTIONS(9409), + [anon_sym_BANG] = ACTIONS(9411), + [aux_sym__attribute_identifier_token1] = ACTIONS(9409), + [aux_sym_option_statement_token3] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9409), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9409), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9409), + [aux_sym_preprocessor_const_token1] = ACTIONS(9409), + [sym_static_modifier] = ACTIONS(9409), + [sym__dim_keyword] = ACTIONS(9409), + [sym__redim_keyword] = ACTIONS(9409), + [aux_sym_get_accessor_token1] = ACTIONS(9409), + [aux_sym_set_accessor_token1] = ACTIONS(9409), + [aux_sym_const_declaration_token1] = ACTIONS(9409), + [anon_sym_LPAREN] = ACTIONS(9411), + [aux_sym_as_type_clause_token2] = ACTIONS(9409), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9409), + [aux_sym_visibility_token1] = ACTIONS(9409), + [aux_sym_visibility_token2] = ACTIONS(9409), + [aux_sym_elseif_fragment_token1] = ACTIONS(9409), + [aux_sym_else_fragment_token1] = ACTIONS(9409), + [aux_sym_select_statement_token1] = ACTIONS(9409), + [aux_sym__for_header_token1] = ACTIONS(9409), + [aux_sym_do_statement_token1] = ACTIONS(9409), + [aux_sym_do_condition_token1] = ACTIONS(9409), + [aux_sym_with_statement_token1] = ACTIONS(9409), + [aux_sym_exit_statement_token1] = ACTIONS(9409), + [sym_end_statement] = ACTIONS(9411), + [aux_sym_on_goto_statement_token1] = ACTIONS(9409), + [aux_sym_on_goto_statement_token2] = ACTIONS(9409), + [aux_sym_on_error_statement_token2] = ACTIONS(9409), + [sym__ambiguous_redim_statement] = ACTIONS(9411), + [aux_sym_erase_statement_token1] = ACTIONS(9409), + [aux_sym_open_statement_token1] = ACTIONS(9409), + [aux_sym_file_mode_token2] = ACTIONS(9409), + [aux_sym_file_access_token2] = ACTIONS(9409), + [aux_sym_file_lock_token2] = ACTIONS(9409), + [aux_sym_print_statement_token1] = ACTIONS(9409), + [anon_sym_PLUS] = ACTIONS(9411), + [anon_sym_DASH] = ACTIONS(9409), + [anon_sym_QMARK] = ACTIONS(9411), + [aux_sym_close_statement_token1] = ACTIONS(9409), + [aux_sym_put_statement_token1] = ACTIONS(9409), + [aux_sym_unlock_statement_token1] = ACTIONS(9409), + [aux_sym_seek_statement_token1] = ACTIONS(9409), + [sym_reset_statement] = ACTIONS(9409), + [aux_sym_raise_event_statement_token1] = ACTIONS(9409), + [sym_stop_statement] = ACTIONS(9409), + [sym_beep_statement] = ACTIONS(9409), + [aux_sym_unload_statement_token1] = ACTIONS(9409), + [aux_sym_def_type_statement_token1] = ACTIONS(9409), + [aux_sym_def_type_statement_token2] = ACTIONS(9409), + [aux_sym_def_type_statement_token3] = ACTIONS(9409), + [aux_sym_def_type_statement_token4] = ACTIONS(9409), + [aux_sym_def_type_statement_token5] = ACTIONS(9409), + [aux_sym_def_type_statement_token6] = ACTIONS(9409), + [aux_sym_def_type_statement_token7] = ACTIONS(9409), + [aux_sym_def_type_statement_token8] = ACTIONS(9409), + [aux_sym_def_type_statement_token9] = ACTIONS(9409), + [aux_sym_def_type_statement_token10] = ACTIONS(9409), + [aux_sym_def_type_statement_token11] = ACTIONS(9409), + [aux_sym_def_type_statement_token12] = ACTIONS(9409), + [aux_sym_def_type_statement_token13] = ACTIONS(9409), + [aux_sym_def_type_statement_token14] = ACTIONS(9409), + [aux_sym_call_statement_token1] = ACTIONS(9409), + [sym__ambiguous_call_statement] = ACTIONS(9409), + [aux_sym_addressof_expression_token1] = ACTIONS(9409), + [aux_sym_type_of_expression_token1] = ACTIONS(9409), + [aux_sym_unary_expression_token1] = ACTIONS(9409), + [sym_string_literal] = ACTIONS(9411), + [sym_number_literal] = ACTIONS(9411), + [aux_sym_boolean_literal_token1] = ACTIONS(9409), + [aux_sym_boolean_literal_token2] = ACTIONS(9409), + [sym_nothing_literal] = ACTIONS(9409), + [sym_null_literal] = ACTIONS(9409), + [sym_empty_literal] = ACTIONS(9409), + [sym_date_literal] = ACTIONS(9411), + [anon_sym_POUND] = ACTIONS(9409), + }, + [STATE(5642)] = { + [sym_do_condition] = STATE(6622), + [sym_identifier] = ACTIONS(8294), + [sym_newline] = ACTIONS(8296), + [anon_sym_COLON] = ACTIONS(8296), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8294), + [aux_sym_frm_property_statement_token1] = ACTIONS(8294), + [anon_sym_DOT] = ACTIONS(8294), + [anon_sym_BANG] = ACTIONS(8296), + [aux_sym__attribute_identifier_token1] = ACTIONS(8294), + [aux_sym_option_statement_token3] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8294), + [aux_sym_preprocessor_const_token1] = ACTIONS(8294), + [sym_static_modifier] = ACTIONS(8294), + [sym__dim_keyword] = ACTIONS(8294), + [sym__redim_keyword] = ACTIONS(8294), + [aux_sym_get_accessor_token1] = ACTIONS(8294), + [aux_sym_set_accessor_token1] = ACTIONS(8294), + [aux_sym_const_declaration_token1] = ACTIONS(8294), + [anon_sym_LPAREN] = ACTIONS(8296), + [aux_sym_as_type_clause_token2] = ACTIONS(8294), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8294), + [aux_sym_visibility_token1] = ACTIONS(8294), + [aux_sym_visibility_token2] = ACTIONS(8294), + [aux_sym_elseif_fragment_token1] = ACTIONS(8294), + [aux_sym_else_fragment_token1] = ACTIONS(8294), + [aux_sym_select_statement_token1] = ACTIONS(8294), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8294), + [aux_sym__for_header_token1] = ACTIONS(8294), + [aux_sym_do_statement_token1] = ACTIONS(8294), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8294), + [aux_sym_exit_statement_token1] = ACTIONS(8294), + [sym_end_statement] = ACTIONS(8296), + [aux_sym_on_goto_statement_token1] = ACTIONS(8294), + [aux_sym_on_goto_statement_token2] = ACTIONS(8294), + [aux_sym_on_error_statement_token2] = ACTIONS(8294), + [sym__ambiguous_redim_statement] = ACTIONS(8296), + [aux_sym_erase_statement_token1] = ACTIONS(8294), + [aux_sym_open_statement_token1] = ACTIONS(8294), + [aux_sym_file_mode_token2] = ACTIONS(8294), + [aux_sym_file_access_token2] = ACTIONS(8294), + [aux_sym_file_lock_token2] = ACTIONS(8294), + [aux_sym_print_statement_token1] = ACTIONS(8294), + [anon_sym_PLUS] = ACTIONS(8296), + [anon_sym_DASH] = ACTIONS(8294), + [anon_sym_QMARK] = ACTIONS(8296), + [aux_sym_close_statement_token1] = ACTIONS(8294), + [aux_sym_put_statement_token1] = ACTIONS(8294), + [aux_sym_unlock_statement_token1] = ACTIONS(8294), + [aux_sym_seek_statement_token1] = ACTIONS(8294), + [sym_reset_statement] = ACTIONS(8294), + [aux_sym_raise_event_statement_token1] = ACTIONS(8294), + [sym_stop_statement] = ACTIONS(8294), + [sym_beep_statement] = ACTIONS(8294), + [aux_sym_unload_statement_token1] = ACTIONS(8294), + [aux_sym_def_type_statement_token1] = ACTIONS(8294), + [aux_sym_def_type_statement_token2] = ACTIONS(8294), + [aux_sym_def_type_statement_token3] = ACTIONS(8294), + [aux_sym_def_type_statement_token4] = ACTIONS(8294), + [aux_sym_def_type_statement_token5] = ACTIONS(8294), + [aux_sym_def_type_statement_token6] = ACTIONS(8294), + [aux_sym_def_type_statement_token7] = ACTIONS(8294), + [aux_sym_def_type_statement_token8] = ACTIONS(8294), + [aux_sym_def_type_statement_token9] = ACTIONS(8294), + [aux_sym_def_type_statement_token10] = ACTIONS(8294), + [aux_sym_def_type_statement_token11] = ACTIONS(8294), + [aux_sym_def_type_statement_token12] = ACTIONS(8294), + [aux_sym_def_type_statement_token13] = ACTIONS(8294), + [aux_sym_def_type_statement_token14] = ACTIONS(8294), + [aux_sym_call_statement_token1] = ACTIONS(8294), + [sym__ambiguous_call_statement] = ACTIONS(8294), + [aux_sym_addressof_expression_token1] = ACTIONS(8294), + [aux_sym_type_of_expression_token1] = ACTIONS(8294), + [aux_sym_unary_expression_token1] = ACTIONS(8294), + [sym_string_literal] = ACTIONS(8296), + [sym_number_literal] = ACTIONS(8296), + [aux_sym_boolean_literal_token1] = ACTIONS(8294), + [aux_sym_boolean_literal_token2] = ACTIONS(8294), + [sym_nothing_literal] = ACTIONS(8294), + [sym_null_literal] = ACTIONS(8294), + [sym_empty_literal] = ACTIONS(8294), + [sym_date_literal] = ACTIONS(8296), + [anon_sym_POUND] = ACTIONS(8294), + }, + [STATE(5643)] = { + [sym_identifier] = ACTIONS(9413), + [sym_newline] = ACTIONS(9415), + [anon_sym_COLON] = ACTIONS(9415), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9413), + [aux_sym_frm_property_statement_token1] = ACTIONS(9413), + [anon_sym_DOT] = ACTIONS(9413), + [anon_sym_BANG] = ACTIONS(9415), + [aux_sym__attribute_identifier_token1] = ACTIONS(9413), + [aux_sym_option_statement_token3] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9413), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9413), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9413), + [aux_sym_preprocessor_const_token1] = ACTIONS(9413), + [sym_static_modifier] = ACTIONS(9413), + [sym__dim_keyword] = ACTIONS(9413), + [sym__redim_keyword] = ACTIONS(9413), + [aux_sym_get_accessor_token1] = ACTIONS(9413), + [aux_sym_set_accessor_token1] = ACTIONS(9413), + [aux_sym_const_declaration_token1] = ACTIONS(9413), + [anon_sym_LPAREN] = ACTIONS(9415), + [aux_sym_as_type_clause_token2] = ACTIONS(9413), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9413), + [aux_sym_visibility_token1] = ACTIONS(9413), + [aux_sym_visibility_token2] = ACTIONS(9413), + [aux_sym_elseif_fragment_token1] = ACTIONS(9413), + [aux_sym_else_fragment_token1] = ACTIONS(9413), + [aux_sym_select_statement_token1] = ACTIONS(9413), + [aux_sym__for_header_token1] = ACTIONS(9413), + [aux_sym_do_statement_token1] = ACTIONS(9413), + [aux_sym_do_condition_token1] = ACTIONS(9413), + [aux_sym_with_statement_token1] = ACTIONS(9413), + [aux_sym_exit_statement_token1] = ACTIONS(9413), + [sym_end_statement] = ACTIONS(9415), + [aux_sym_on_goto_statement_token1] = ACTIONS(9413), + [aux_sym_on_goto_statement_token2] = ACTIONS(9413), + [aux_sym_on_error_statement_token2] = ACTIONS(9413), + [sym__ambiguous_redim_statement] = ACTIONS(9415), + [aux_sym_erase_statement_token1] = ACTIONS(9413), + [aux_sym_open_statement_token1] = ACTIONS(9413), + [aux_sym_file_mode_token2] = ACTIONS(9413), + [aux_sym_file_access_token2] = ACTIONS(9413), + [aux_sym_file_lock_token2] = ACTIONS(9413), + [aux_sym_print_statement_token1] = ACTIONS(9413), + [anon_sym_PLUS] = ACTIONS(9415), + [anon_sym_DASH] = ACTIONS(9413), + [anon_sym_QMARK] = ACTIONS(9415), + [aux_sym_close_statement_token1] = ACTIONS(9413), + [aux_sym_put_statement_token1] = ACTIONS(9413), + [aux_sym_unlock_statement_token1] = ACTIONS(9413), + [aux_sym_seek_statement_token1] = ACTIONS(9413), + [sym_reset_statement] = ACTIONS(9413), + [aux_sym_raise_event_statement_token1] = ACTIONS(9413), + [sym_stop_statement] = ACTIONS(9413), + [sym_beep_statement] = ACTIONS(9413), + [aux_sym_unload_statement_token1] = ACTIONS(9413), + [aux_sym_def_type_statement_token1] = ACTIONS(9413), + [aux_sym_def_type_statement_token2] = ACTIONS(9413), + [aux_sym_def_type_statement_token3] = ACTIONS(9413), + [aux_sym_def_type_statement_token4] = ACTIONS(9413), + [aux_sym_def_type_statement_token5] = ACTIONS(9413), + [aux_sym_def_type_statement_token6] = ACTIONS(9413), + [aux_sym_def_type_statement_token7] = ACTIONS(9413), + [aux_sym_def_type_statement_token8] = ACTIONS(9413), + [aux_sym_def_type_statement_token9] = ACTIONS(9413), + [aux_sym_def_type_statement_token10] = ACTIONS(9413), + [aux_sym_def_type_statement_token11] = ACTIONS(9413), + [aux_sym_def_type_statement_token12] = ACTIONS(9413), + [aux_sym_def_type_statement_token13] = ACTIONS(9413), + [aux_sym_def_type_statement_token14] = ACTIONS(9413), + [aux_sym_call_statement_token1] = ACTIONS(9413), + [sym__ambiguous_call_statement] = ACTIONS(9413), + [aux_sym_addressof_expression_token1] = ACTIONS(9413), + [aux_sym_type_of_expression_token1] = ACTIONS(9413), + [aux_sym_unary_expression_token1] = ACTIONS(9413), + [sym_string_literal] = ACTIONS(9415), + [sym_number_literal] = ACTIONS(9415), + [aux_sym_boolean_literal_token1] = ACTIONS(9413), + [aux_sym_boolean_literal_token2] = ACTIONS(9413), + [sym_nothing_literal] = ACTIONS(9413), + [sym_null_literal] = ACTIONS(9413), + [sym_empty_literal] = ACTIONS(9413), + [sym_date_literal] = ACTIONS(9415), + [anon_sym_POUND] = ACTIONS(9413), + }, + [STATE(5644)] = { + [sym_do_condition] = STATE(6623), + [sym_identifier] = ACTIONS(8298), + [sym_newline] = ACTIONS(8300), + [anon_sym_COLON] = ACTIONS(8300), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8298), + [aux_sym_frm_property_statement_token1] = ACTIONS(8298), + [anon_sym_DOT] = ACTIONS(8298), + [anon_sym_BANG] = ACTIONS(8300), + [aux_sym__attribute_identifier_token1] = ACTIONS(8298), + [aux_sym_option_statement_token3] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8298), + [aux_sym_preprocessor_const_token1] = ACTIONS(8298), + [sym_static_modifier] = ACTIONS(8298), + [sym__dim_keyword] = ACTIONS(8298), + [sym__redim_keyword] = ACTIONS(8298), + [aux_sym_get_accessor_token1] = ACTIONS(8298), + [aux_sym_set_accessor_token1] = ACTIONS(8298), + [aux_sym_const_declaration_token1] = ACTIONS(8298), + [anon_sym_LPAREN] = ACTIONS(8300), + [aux_sym_as_type_clause_token2] = ACTIONS(8298), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8298), + [aux_sym_visibility_token1] = ACTIONS(8298), + [aux_sym_visibility_token2] = ACTIONS(8298), + [aux_sym_elseif_fragment_token1] = ACTIONS(8298), + [aux_sym_else_fragment_token1] = ACTIONS(8298), + [aux_sym_select_statement_token1] = ACTIONS(8298), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8298), + [aux_sym__for_header_token1] = ACTIONS(8298), + [aux_sym_do_statement_token1] = ACTIONS(8298), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8298), + [aux_sym_exit_statement_token1] = ACTIONS(8298), + [sym_end_statement] = ACTIONS(8300), + [aux_sym_on_goto_statement_token1] = ACTIONS(8298), + [aux_sym_on_goto_statement_token2] = ACTIONS(8298), + [aux_sym_on_error_statement_token2] = ACTIONS(8298), + [sym__ambiguous_redim_statement] = ACTIONS(8300), + [aux_sym_erase_statement_token1] = ACTIONS(8298), + [aux_sym_open_statement_token1] = ACTIONS(8298), + [aux_sym_file_mode_token2] = ACTIONS(8298), + [aux_sym_file_access_token2] = ACTIONS(8298), + [aux_sym_file_lock_token2] = ACTIONS(8298), + [aux_sym_print_statement_token1] = ACTIONS(8298), + [anon_sym_PLUS] = ACTIONS(8300), + [anon_sym_DASH] = ACTIONS(8298), + [anon_sym_QMARK] = ACTIONS(8300), + [aux_sym_close_statement_token1] = ACTIONS(8298), + [aux_sym_put_statement_token1] = ACTIONS(8298), + [aux_sym_unlock_statement_token1] = ACTIONS(8298), + [aux_sym_seek_statement_token1] = ACTIONS(8298), + [sym_reset_statement] = ACTIONS(8298), + [aux_sym_raise_event_statement_token1] = ACTIONS(8298), + [sym_stop_statement] = ACTIONS(8298), + [sym_beep_statement] = ACTIONS(8298), + [aux_sym_unload_statement_token1] = ACTIONS(8298), + [aux_sym_def_type_statement_token1] = ACTIONS(8298), + [aux_sym_def_type_statement_token2] = ACTIONS(8298), + [aux_sym_def_type_statement_token3] = ACTIONS(8298), + [aux_sym_def_type_statement_token4] = ACTIONS(8298), + [aux_sym_def_type_statement_token5] = ACTIONS(8298), + [aux_sym_def_type_statement_token6] = ACTIONS(8298), + [aux_sym_def_type_statement_token7] = ACTIONS(8298), + [aux_sym_def_type_statement_token8] = ACTIONS(8298), + [aux_sym_def_type_statement_token9] = ACTIONS(8298), + [aux_sym_def_type_statement_token10] = ACTIONS(8298), + [aux_sym_def_type_statement_token11] = ACTIONS(8298), + [aux_sym_def_type_statement_token12] = ACTIONS(8298), + [aux_sym_def_type_statement_token13] = ACTIONS(8298), + [aux_sym_def_type_statement_token14] = ACTIONS(8298), + [aux_sym_call_statement_token1] = ACTIONS(8298), + [sym__ambiguous_call_statement] = ACTIONS(8298), + [aux_sym_addressof_expression_token1] = ACTIONS(8298), + [aux_sym_type_of_expression_token1] = ACTIONS(8298), + [aux_sym_unary_expression_token1] = ACTIONS(8298), + [sym_string_literal] = ACTIONS(8300), + [sym_number_literal] = ACTIONS(8300), + [aux_sym_boolean_literal_token1] = ACTIONS(8298), + [aux_sym_boolean_literal_token2] = ACTIONS(8298), + [sym_nothing_literal] = ACTIONS(8298), + [sym_null_literal] = ACTIONS(8298), + [sym_empty_literal] = ACTIONS(8298), + [sym_date_literal] = ACTIONS(8300), + [anon_sym_POUND] = ACTIONS(8298), + }, + [STATE(5645)] = { + [sym_identifier] = ACTIONS(9419), + [sym_newline] = ACTIONS(9421), + [anon_sym_COLON] = ACTIONS(9421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9419), + [aux_sym_frm_property_statement_token1] = ACTIONS(9419), + [anon_sym_DOT] = ACTIONS(9419), + [anon_sym_BANG] = ACTIONS(9421), + [aux_sym__attribute_identifier_token1] = ACTIONS(9419), + [aux_sym_option_statement_token3] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9419), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9419), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9419), + [aux_sym_preprocessor_const_token1] = ACTIONS(9419), + [sym_static_modifier] = ACTIONS(9419), + [sym__dim_keyword] = ACTIONS(9419), + [sym__redim_keyword] = ACTIONS(9419), + [aux_sym_get_accessor_token1] = ACTIONS(9419), + [aux_sym_set_accessor_token1] = ACTIONS(9419), + [aux_sym_const_declaration_token1] = ACTIONS(9419), + [anon_sym_LPAREN] = ACTIONS(9421), + [aux_sym_as_type_clause_token2] = ACTIONS(9419), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9419), + [aux_sym_visibility_token1] = ACTIONS(9419), + [aux_sym_visibility_token2] = ACTIONS(9419), + [aux_sym_elseif_fragment_token1] = ACTIONS(9419), + [aux_sym_else_fragment_token1] = ACTIONS(9419), + [aux_sym_select_statement_token1] = ACTIONS(9419), + [aux_sym__for_header_token1] = ACTIONS(9419), + [aux_sym_do_statement_token1] = ACTIONS(9419), + [aux_sym_do_condition_token1] = ACTIONS(9419), + [aux_sym_with_statement_token1] = ACTIONS(9419), + [aux_sym_exit_statement_token1] = ACTIONS(9419), + [sym_end_statement] = ACTIONS(9421), + [aux_sym_on_goto_statement_token1] = ACTIONS(9419), + [aux_sym_on_goto_statement_token2] = ACTIONS(9419), + [aux_sym_on_error_statement_token2] = ACTIONS(9419), + [sym__ambiguous_redim_statement] = ACTIONS(9421), + [aux_sym_erase_statement_token1] = ACTIONS(9419), + [aux_sym_open_statement_token1] = ACTIONS(9419), + [aux_sym_file_mode_token2] = ACTIONS(9419), + [aux_sym_file_access_token2] = ACTIONS(9419), + [aux_sym_file_lock_token2] = ACTIONS(9419), + [aux_sym_print_statement_token1] = ACTIONS(9419), + [anon_sym_PLUS] = ACTIONS(9421), + [anon_sym_DASH] = ACTIONS(9419), + [anon_sym_QMARK] = ACTIONS(9421), + [aux_sym_close_statement_token1] = ACTIONS(9419), + [aux_sym_put_statement_token1] = ACTIONS(9419), + [aux_sym_unlock_statement_token1] = ACTIONS(9419), + [aux_sym_seek_statement_token1] = ACTIONS(9419), + [sym_reset_statement] = ACTIONS(9419), + [aux_sym_raise_event_statement_token1] = ACTIONS(9419), + [sym_stop_statement] = ACTIONS(9419), + [sym_beep_statement] = ACTIONS(9419), + [aux_sym_unload_statement_token1] = ACTIONS(9419), + [aux_sym_def_type_statement_token1] = ACTIONS(9419), + [aux_sym_def_type_statement_token2] = ACTIONS(9419), + [aux_sym_def_type_statement_token3] = ACTIONS(9419), + [aux_sym_def_type_statement_token4] = ACTIONS(9419), + [aux_sym_def_type_statement_token5] = ACTIONS(9419), + [aux_sym_def_type_statement_token6] = ACTIONS(9419), + [aux_sym_def_type_statement_token7] = ACTIONS(9419), + [aux_sym_def_type_statement_token8] = ACTIONS(9419), + [aux_sym_def_type_statement_token9] = ACTIONS(9419), + [aux_sym_def_type_statement_token10] = ACTIONS(9419), + [aux_sym_def_type_statement_token11] = ACTIONS(9419), + [aux_sym_def_type_statement_token12] = ACTIONS(9419), + [aux_sym_def_type_statement_token13] = ACTIONS(9419), + [aux_sym_def_type_statement_token14] = ACTIONS(9419), + [aux_sym_call_statement_token1] = ACTIONS(9419), + [sym__ambiguous_call_statement] = ACTIONS(9419), + [aux_sym_addressof_expression_token1] = ACTIONS(9419), + [aux_sym_type_of_expression_token1] = ACTIONS(9419), + [aux_sym_unary_expression_token1] = ACTIONS(9419), + [sym_string_literal] = ACTIONS(9421), + [sym_number_literal] = ACTIONS(9421), + [aux_sym_boolean_literal_token1] = ACTIONS(9419), + [aux_sym_boolean_literal_token2] = ACTIONS(9419), + [sym_nothing_literal] = ACTIONS(9419), + [sym_null_literal] = ACTIONS(9419), + [sym_empty_literal] = ACTIONS(9419), + [sym_date_literal] = ACTIONS(9421), + [anon_sym_POUND] = ACTIONS(9419), + }, + [STATE(5646)] = { + [sym_identifier] = ACTIONS(9423), + [sym_newline] = ACTIONS(9425), + [anon_sym_COLON] = ACTIONS(9425), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9423), + [aux_sym_frm_property_statement_token1] = ACTIONS(9423), + [anon_sym_DOT] = ACTIONS(9423), + [anon_sym_BANG] = ACTIONS(9425), + [aux_sym__attribute_identifier_token1] = ACTIONS(9423), + [aux_sym_option_statement_token3] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9423), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9423), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9423), + [aux_sym_preprocessor_const_token1] = ACTIONS(9423), + [sym_static_modifier] = ACTIONS(9423), + [sym__dim_keyword] = ACTIONS(9423), + [sym__redim_keyword] = ACTIONS(9423), + [aux_sym_get_accessor_token1] = ACTIONS(9423), + [aux_sym_set_accessor_token1] = ACTIONS(9423), + [aux_sym_const_declaration_token1] = ACTIONS(9423), + [anon_sym_LPAREN] = ACTIONS(9425), + [aux_sym_as_type_clause_token2] = ACTIONS(9423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9423), + [aux_sym_visibility_token1] = ACTIONS(9423), + [aux_sym_visibility_token2] = ACTIONS(9423), + [aux_sym_elseif_fragment_token1] = ACTIONS(9423), + [aux_sym_else_fragment_token1] = ACTIONS(9423), + [aux_sym_select_statement_token1] = ACTIONS(9423), + [aux_sym__for_header_token1] = ACTIONS(9423), + [aux_sym_do_statement_token1] = ACTIONS(9423), + [aux_sym_do_condition_token1] = ACTIONS(9423), + [aux_sym_with_statement_token1] = ACTIONS(9423), + [aux_sym_exit_statement_token1] = ACTIONS(9423), + [sym_end_statement] = ACTIONS(9425), + [aux_sym_on_goto_statement_token1] = ACTIONS(9423), + [aux_sym_on_goto_statement_token2] = ACTIONS(9423), + [aux_sym_on_error_statement_token2] = ACTIONS(9423), + [sym__ambiguous_redim_statement] = ACTIONS(9425), + [aux_sym_erase_statement_token1] = ACTIONS(9423), + [aux_sym_open_statement_token1] = ACTIONS(9423), + [aux_sym_file_mode_token2] = ACTIONS(9423), + [aux_sym_file_access_token2] = ACTIONS(9423), + [aux_sym_file_lock_token2] = ACTIONS(9423), + [aux_sym_print_statement_token1] = ACTIONS(9423), + [anon_sym_PLUS] = ACTIONS(9425), + [anon_sym_DASH] = ACTIONS(9423), + [anon_sym_QMARK] = ACTIONS(9425), + [aux_sym_close_statement_token1] = ACTIONS(9423), + [aux_sym_put_statement_token1] = ACTIONS(9423), + [aux_sym_unlock_statement_token1] = ACTIONS(9423), + [aux_sym_seek_statement_token1] = ACTIONS(9423), + [sym_reset_statement] = ACTIONS(9423), + [aux_sym_raise_event_statement_token1] = ACTIONS(9423), + [sym_stop_statement] = ACTIONS(9423), + [sym_beep_statement] = ACTIONS(9423), + [aux_sym_unload_statement_token1] = ACTIONS(9423), + [aux_sym_def_type_statement_token1] = ACTIONS(9423), + [aux_sym_def_type_statement_token2] = ACTIONS(9423), + [aux_sym_def_type_statement_token3] = ACTIONS(9423), + [aux_sym_def_type_statement_token4] = ACTIONS(9423), + [aux_sym_def_type_statement_token5] = ACTIONS(9423), + [aux_sym_def_type_statement_token6] = ACTIONS(9423), + [aux_sym_def_type_statement_token7] = ACTIONS(9423), + [aux_sym_def_type_statement_token8] = ACTIONS(9423), + [aux_sym_def_type_statement_token9] = ACTIONS(9423), + [aux_sym_def_type_statement_token10] = ACTIONS(9423), + [aux_sym_def_type_statement_token11] = ACTIONS(9423), + [aux_sym_def_type_statement_token12] = ACTIONS(9423), + [aux_sym_def_type_statement_token13] = ACTIONS(9423), + [aux_sym_def_type_statement_token14] = ACTIONS(9423), + [aux_sym_call_statement_token1] = ACTIONS(9423), + [sym__ambiguous_call_statement] = ACTIONS(9423), + [aux_sym_addressof_expression_token1] = ACTIONS(9423), + [aux_sym_type_of_expression_token1] = ACTIONS(9423), + [aux_sym_unary_expression_token1] = ACTIONS(9423), + [sym_string_literal] = ACTIONS(9425), + [sym_number_literal] = ACTIONS(9425), + [aux_sym_boolean_literal_token1] = ACTIONS(9423), + [aux_sym_boolean_literal_token2] = ACTIONS(9423), + [sym_nothing_literal] = ACTIONS(9423), + [sym_null_literal] = ACTIONS(9423), + [sym_empty_literal] = ACTIONS(9423), + [sym_date_literal] = ACTIONS(9425), + [anon_sym_POUND] = ACTIONS(9423), + }, + [STATE(5647)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5707), + [sym_identifier] = ACTIONS(4166), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5160), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4164), + [aux_sym_as_type_clause_token2] = ACTIONS(4166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4166), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4166), + [aux_sym_type_of_expression_token1] = ACTIONS(4166), + [aux_sym_unary_expression_token1] = ACTIONS(4166), + [sym_string_literal] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4164), + [aux_sym_boolean_literal_token1] = ACTIONS(4166), + [aux_sym_boolean_literal_token2] = ACTIONS(4166), + [sym_nothing_literal] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4166), + [sym_empty_literal] = ACTIONS(4166), + [sym_date_literal] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4166), + }, + [STATE(5648)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5116), + [sym_identifier] = ACTIONS(4166), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5160), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4164), + [aux_sym_as_type_clause_token2] = ACTIONS(4166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4166), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4166), + [aux_sym_type_of_expression_token1] = ACTIONS(4166), + [aux_sym_unary_expression_token1] = ACTIONS(4166), + [sym_string_literal] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4164), + [aux_sym_boolean_literal_token1] = ACTIONS(4166), + [aux_sym_boolean_literal_token2] = ACTIONS(4166), + [sym_nothing_literal] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4166), + [sym_empty_literal] = ACTIONS(4166), + [sym_date_literal] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4166), + }, + [STATE(5649)] = { + [sym_identifier] = ACTIONS(9427), + [sym_newline] = ACTIONS(9429), + [anon_sym_COLON] = ACTIONS(9429), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9427), + [aux_sym_frm_property_statement_token1] = ACTIONS(9427), + [anon_sym_DOT] = ACTIONS(9427), + [anon_sym_BANG] = ACTIONS(9429), + [aux_sym__attribute_identifier_token1] = ACTIONS(9427), + [aux_sym_option_statement_token3] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9427), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9427), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9427), + [aux_sym_preprocessor_const_token1] = ACTIONS(9427), + [sym_static_modifier] = ACTIONS(9427), + [sym__dim_keyword] = ACTIONS(9427), + [sym__redim_keyword] = ACTIONS(9427), + [aux_sym_get_accessor_token1] = ACTIONS(9427), + [aux_sym_set_accessor_token1] = ACTIONS(9427), + [aux_sym_const_declaration_token1] = ACTIONS(9427), + [anon_sym_LPAREN] = ACTIONS(9429), + [aux_sym_as_type_clause_token2] = ACTIONS(9427), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9427), + [aux_sym_visibility_token1] = ACTIONS(9427), + [aux_sym_visibility_token2] = ACTIONS(9427), + [aux_sym_elseif_fragment_token1] = ACTIONS(9427), + [aux_sym_else_fragment_token1] = ACTIONS(9427), + [aux_sym_select_statement_token1] = ACTIONS(9427), + [aux_sym__for_header_token1] = ACTIONS(9427), + [aux_sym_do_statement_token1] = ACTIONS(9427), + [aux_sym_do_condition_token1] = ACTIONS(9427), + [aux_sym_with_statement_token1] = ACTIONS(9427), + [aux_sym_exit_statement_token1] = ACTIONS(9427), + [sym_end_statement] = ACTIONS(9429), + [aux_sym_on_goto_statement_token1] = ACTIONS(9427), + [aux_sym_on_goto_statement_token2] = ACTIONS(9427), + [aux_sym_on_error_statement_token2] = ACTIONS(9427), + [sym__ambiguous_redim_statement] = ACTIONS(9429), + [aux_sym_erase_statement_token1] = ACTIONS(9427), + [aux_sym_open_statement_token1] = ACTIONS(9427), + [aux_sym_file_mode_token2] = ACTIONS(9427), + [aux_sym_file_access_token2] = ACTIONS(9427), + [aux_sym_file_lock_token2] = ACTIONS(9427), + [aux_sym_print_statement_token1] = ACTIONS(9427), + [anon_sym_PLUS] = ACTIONS(9429), + [anon_sym_DASH] = ACTIONS(9427), + [anon_sym_QMARK] = ACTIONS(9429), + [aux_sym_close_statement_token1] = ACTIONS(9427), + [aux_sym_put_statement_token1] = ACTIONS(9427), + [aux_sym_unlock_statement_token1] = ACTIONS(9427), + [aux_sym_seek_statement_token1] = ACTIONS(9427), + [sym_reset_statement] = ACTIONS(9427), + [aux_sym_raise_event_statement_token1] = ACTIONS(9427), + [sym_stop_statement] = ACTIONS(9427), + [sym_beep_statement] = ACTIONS(9427), + [aux_sym_unload_statement_token1] = ACTIONS(9427), + [aux_sym_def_type_statement_token1] = ACTIONS(9427), + [aux_sym_def_type_statement_token2] = ACTIONS(9427), + [aux_sym_def_type_statement_token3] = ACTIONS(9427), + [aux_sym_def_type_statement_token4] = ACTIONS(9427), + [aux_sym_def_type_statement_token5] = ACTIONS(9427), + [aux_sym_def_type_statement_token6] = ACTIONS(9427), + [aux_sym_def_type_statement_token7] = ACTIONS(9427), + [aux_sym_def_type_statement_token8] = ACTIONS(9427), + [aux_sym_def_type_statement_token9] = ACTIONS(9427), + [aux_sym_def_type_statement_token10] = ACTIONS(9427), + [aux_sym_def_type_statement_token11] = ACTIONS(9427), + [aux_sym_def_type_statement_token12] = ACTIONS(9427), + [aux_sym_def_type_statement_token13] = ACTIONS(9427), + [aux_sym_def_type_statement_token14] = ACTIONS(9427), + [aux_sym_call_statement_token1] = ACTIONS(9427), + [sym__ambiguous_call_statement] = ACTIONS(9427), + [aux_sym_addressof_expression_token1] = ACTIONS(9427), + [aux_sym_type_of_expression_token1] = ACTIONS(9427), + [aux_sym_unary_expression_token1] = ACTIONS(9427), + [sym_string_literal] = ACTIONS(9429), + [sym_number_literal] = ACTIONS(9429), + [aux_sym_boolean_literal_token1] = ACTIONS(9427), + [aux_sym_boolean_literal_token2] = ACTIONS(9427), + [sym_nothing_literal] = ACTIONS(9427), + [sym_null_literal] = ACTIONS(9427), + [sym_empty_literal] = ACTIONS(9427), + [sym_date_literal] = ACTIONS(9429), + [anon_sym_POUND] = ACTIONS(9427), + }, + [STATE(5650)] = { + [sym_identifier] = ACTIONS(9431), + [sym_newline] = ACTIONS(9433), + [anon_sym_COLON] = ACTIONS(9433), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9431), + [aux_sym_frm_property_statement_token1] = ACTIONS(9431), + [anon_sym_DOT] = ACTIONS(9431), + [anon_sym_BANG] = ACTIONS(9433), + [aux_sym__attribute_identifier_token1] = ACTIONS(9431), + [aux_sym_option_statement_token3] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9431), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9431), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9431), + [aux_sym_preprocessor_const_token1] = ACTIONS(9431), + [sym_static_modifier] = ACTIONS(9431), + [sym__dim_keyword] = ACTIONS(9431), + [sym__redim_keyword] = ACTIONS(9431), + [aux_sym_get_accessor_token1] = ACTIONS(9431), + [aux_sym_set_accessor_token1] = ACTIONS(9431), + [aux_sym_const_declaration_token1] = ACTIONS(9431), + [anon_sym_LPAREN] = ACTIONS(9433), + [aux_sym_as_type_clause_token2] = ACTIONS(9431), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9431), + [aux_sym_visibility_token1] = ACTIONS(9431), + [aux_sym_visibility_token2] = ACTIONS(9431), + [aux_sym_elseif_fragment_token1] = ACTIONS(9431), + [aux_sym_else_fragment_token1] = ACTIONS(9431), + [aux_sym_select_statement_token1] = ACTIONS(9431), + [aux_sym__for_header_token1] = ACTIONS(9431), + [aux_sym_do_statement_token1] = ACTIONS(9431), + [aux_sym_do_condition_token1] = ACTIONS(9431), + [aux_sym_with_statement_token1] = ACTIONS(9431), + [aux_sym_exit_statement_token1] = ACTIONS(9431), + [sym_end_statement] = ACTIONS(9433), + [aux_sym_on_goto_statement_token1] = ACTIONS(9431), + [aux_sym_on_goto_statement_token2] = ACTIONS(9431), + [aux_sym_on_error_statement_token2] = ACTIONS(9431), + [sym__ambiguous_redim_statement] = ACTIONS(9433), + [aux_sym_erase_statement_token1] = ACTIONS(9431), + [aux_sym_open_statement_token1] = ACTIONS(9431), + [aux_sym_file_mode_token2] = ACTIONS(9431), + [aux_sym_file_access_token2] = ACTIONS(9431), + [aux_sym_file_lock_token2] = ACTIONS(9431), + [aux_sym_print_statement_token1] = ACTIONS(9431), + [anon_sym_PLUS] = ACTIONS(9433), + [anon_sym_DASH] = ACTIONS(9431), + [anon_sym_QMARK] = ACTIONS(9433), + [aux_sym_close_statement_token1] = ACTIONS(9431), + [aux_sym_put_statement_token1] = ACTIONS(9431), + [aux_sym_unlock_statement_token1] = ACTIONS(9431), + [aux_sym_seek_statement_token1] = ACTIONS(9431), + [sym_reset_statement] = ACTIONS(9431), + [aux_sym_raise_event_statement_token1] = ACTIONS(9431), + [sym_stop_statement] = ACTIONS(9431), + [sym_beep_statement] = ACTIONS(9431), + [aux_sym_unload_statement_token1] = ACTIONS(9431), + [aux_sym_def_type_statement_token1] = ACTIONS(9431), + [aux_sym_def_type_statement_token2] = ACTIONS(9431), + [aux_sym_def_type_statement_token3] = ACTIONS(9431), + [aux_sym_def_type_statement_token4] = ACTIONS(9431), + [aux_sym_def_type_statement_token5] = ACTIONS(9431), + [aux_sym_def_type_statement_token6] = ACTIONS(9431), + [aux_sym_def_type_statement_token7] = ACTIONS(9431), + [aux_sym_def_type_statement_token8] = ACTIONS(9431), + [aux_sym_def_type_statement_token9] = ACTIONS(9431), + [aux_sym_def_type_statement_token10] = ACTIONS(9431), + [aux_sym_def_type_statement_token11] = ACTIONS(9431), + [aux_sym_def_type_statement_token12] = ACTIONS(9431), + [aux_sym_def_type_statement_token13] = ACTIONS(9431), + [aux_sym_def_type_statement_token14] = ACTIONS(9431), + [aux_sym_call_statement_token1] = ACTIONS(9431), + [sym__ambiguous_call_statement] = ACTIONS(9431), + [aux_sym_addressof_expression_token1] = ACTIONS(9431), + [aux_sym_type_of_expression_token1] = ACTIONS(9431), + [aux_sym_unary_expression_token1] = ACTIONS(9431), + [sym_string_literal] = ACTIONS(9433), + [sym_number_literal] = ACTIONS(9433), + [aux_sym_boolean_literal_token1] = ACTIONS(9431), + [aux_sym_boolean_literal_token2] = ACTIONS(9431), + [sym_nothing_literal] = ACTIONS(9431), + [sym_null_literal] = ACTIONS(9431), + [sym_empty_literal] = ACTIONS(9431), + [sym_date_literal] = ACTIONS(9433), + [anon_sym_POUND] = ACTIONS(9431), + }, + [STATE(5651)] = { + [sym_identifier] = ACTIONS(9435), + [sym_newline] = ACTIONS(9437), + [anon_sym_COLON] = ACTIONS(9437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9435), + [aux_sym_frm_property_statement_token1] = ACTIONS(9435), + [anon_sym_DOT] = ACTIONS(9435), + [anon_sym_BANG] = ACTIONS(9437), + [aux_sym__attribute_identifier_token1] = ACTIONS(9435), + [aux_sym_option_statement_token3] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9435), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9435), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9435), + [aux_sym_preprocessor_const_token1] = ACTIONS(9435), + [sym_static_modifier] = ACTIONS(9435), + [sym__dim_keyword] = ACTIONS(9435), + [sym__redim_keyword] = ACTIONS(9435), + [aux_sym_get_accessor_token1] = ACTIONS(9435), + [aux_sym_set_accessor_token1] = ACTIONS(9435), + [aux_sym_const_declaration_token1] = ACTIONS(9435), + [anon_sym_LPAREN] = ACTIONS(9437), + [aux_sym_as_type_clause_token2] = ACTIONS(9435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9435), + [aux_sym_visibility_token1] = ACTIONS(9435), + [aux_sym_visibility_token2] = ACTIONS(9435), + [aux_sym_elseif_fragment_token1] = ACTIONS(9435), + [aux_sym_else_fragment_token1] = ACTIONS(9435), + [aux_sym_select_statement_token1] = ACTIONS(9435), + [aux_sym__for_header_token1] = ACTIONS(9435), + [aux_sym_do_statement_token1] = ACTIONS(9435), + [aux_sym_do_condition_token1] = ACTIONS(9435), + [aux_sym_with_statement_token1] = ACTIONS(9435), + [aux_sym_exit_statement_token1] = ACTIONS(9435), + [sym_end_statement] = ACTIONS(9437), + [aux_sym_on_goto_statement_token1] = ACTIONS(9435), + [aux_sym_on_goto_statement_token2] = ACTIONS(9435), + [aux_sym_on_error_statement_token2] = ACTIONS(9435), + [sym__ambiguous_redim_statement] = ACTIONS(9437), + [aux_sym_erase_statement_token1] = ACTIONS(9435), + [aux_sym_open_statement_token1] = ACTIONS(9435), + [aux_sym_file_mode_token2] = ACTIONS(9435), + [aux_sym_file_access_token2] = ACTIONS(9435), + [aux_sym_file_lock_token2] = ACTIONS(9435), + [aux_sym_print_statement_token1] = ACTIONS(9435), + [anon_sym_PLUS] = ACTIONS(9437), + [anon_sym_DASH] = ACTIONS(9435), + [anon_sym_QMARK] = ACTIONS(9437), + [aux_sym_close_statement_token1] = ACTIONS(9435), + [aux_sym_put_statement_token1] = ACTIONS(9435), + [aux_sym_unlock_statement_token1] = ACTIONS(9435), + [aux_sym_seek_statement_token1] = ACTIONS(9435), + [sym_reset_statement] = ACTIONS(9435), + [aux_sym_raise_event_statement_token1] = ACTIONS(9435), + [sym_stop_statement] = ACTIONS(9435), + [sym_beep_statement] = ACTIONS(9435), + [aux_sym_unload_statement_token1] = ACTIONS(9435), + [aux_sym_def_type_statement_token1] = ACTIONS(9435), + [aux_sym_def_type_statement_token2] = ACTIONS(9435), + [aux_sym_def_type_statement_token3] = ACTIONS(9435), + [aux_sym_def_type_statement_token4] = ACTIONS(9435), + [aux_sym_def_type_statement_token5] = ACTIONS(9435), + [aux_sym_def_type_statement_token6] = ACTIONS(9435), + [aux_sym_def_type_statement_token7] = ACTIONS(9435), + [aux_sym_def_type_statement_token8] = ACTIONS(9435), + [aux_sym_def_type_statement_token9] = ACTIONS(9435), + [aux_sym_def_type_statement_token10] = ACTIONS(9435), + [aux_sym_def_type_statement_token11] = ACTIONS(9435), + [aux_sym_def_type_statement_token12] = ACTIONS(9435), + [aux_sym_def_type_statement_token13] = ACTIONS(9435), + [aux_sym_def_type_statement_token14] = ACTIONS(9435), + [aux_sym_call_statement_token1] = ACTIONS(9435), + [sym__ambiguous_call_statement] = ACTIONS(9435), + [aux_sym_addressof_expression_token1] = ACTIONS(9435), + [aux_sym_type_of_expression_token1] = ACTIONS(9435), + [aux_sym_unary_expression_token1] = ACTIONS(9435), + [sym_string_literal] = ACTIONS(9437), + [sym_number_literal] = ACTIONS(9437), + [aux_sym_boolean_literal_token1] = ACTIONS(9435), + [aux_sym_boolean_literal_token2] = ACTIONS(9435), + [sym_nothing_literal] = ACTIONS(9435), + [sym_null_literal] = ACTIONS(9435), + [sym_empty_literal] = ACTIONS(9435), + [sym_date_literal] = ACTIONS(9437), + [anon_sym_POUND] = ACTIONS(9435), + }, + [STATE(5652)] = { + [sym_identifier] = ACTIONS(9439), + [sym_newline] = ACTIONS(9441), + [anon_sym_COLON] = ACTIONS(9441), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9439), + [aux_sym_frm_property_statement_token1] = ACTIONS(9439), + [anon_sym_DOT] = ACTIONS(9439), + [anon_sym_BANG] = ACTIONS(9441), + [aux_sym__attribute_identifier_token1] = ACTIONS(9439), + [aux_sym_option_statement_token3] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9439), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9439), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9439), + [aux_sym_preprocessor_const_token1] = ACTIONS(9439), + [sym_static_modifier] = ACTIONS(9439), + [sym__dim_keyword] = ACTIONS(9439), + [sym__redim_keyword] = ACTIONS(9439), + [aux_sym_get_accessor_token1] = ACTIONS(9439), + [aux_sym_set_accessor_token1] = ACTIONS(9439), + [aux_sym_const_declaration_token1] = ACTIONS(9439), + [anon_sym_LPAREN] = ACTIONS(9441), + [aux_sym_as_type_clause_token2] = ACTIONS(9439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9439), + [aux_sym_visibility_token1] = ACTIONS(9439), + [aux_sym_visibility_token2] = ACTIONS(9439), + [aux_sym_elseif_fragment_token1] = ACTIONS(9439), + [aux_sym_else_fragment_token1] = ACTIONS(9439), + [aux_sym_select_statement_token1] = ACTIONS(9439), + [aux_sym__for_header_token1] = ACTIONS(9439), + [aux_sym_do_statement_token1] = ACTIONS(9439), + [aux_sym_do_condition_token1] = ACTIONS(9439), + [aux_sym_with_statement_token1] = ACTIONS(9439), + [aux_sym_exit_statement_token1] = ACTIONS(9439), + [sym_end_statement] = ACTIONS(9441), + [aux_sym_on_goto_statement_token1] = ACTIONS(9439), + [aux_sym_on_goto_statement_token2] = ACTIONS(9439), + [aux_sym_on_error_statement_token2] = ACTIONS(9439), + [sym__ambiguous_redim_statement] = ACTIONS(9441), + [aux_sym_erase_statement_token1] = ACTIONS(9439), + [aux_sym_open_statement_token1] = ACTIONS(9439), + [aux_sym_file_mode_token2] = ACTIONS(9439), + [aux_sym_file_access_token2] = ACTIONS(9439), + [aux_sym_file_lock_token2] = ACTIONS(9439), + [aux_sym_print_statement_token1] = ACTIONS(9439), + [anon_sym_PLUS] = ACTIONS(9441), + [anon_sym_DASH] = ACTIONS(9439), + [anon_sym_QMARK] = ACTIONS(9441), + [aux_sym_close_statement_token1] = ACTIONS(9439), + [aux_sym_put_statement_token1] = ACTIONS(9439), + [aux_sym_unlock_statement_token1] = ACTIONS(9439), + [aux_sym_seek_statement_token1] = ACTIONS(9439), + [sym_reset_statement] = ACTIONS(9439), + [aux_sym_raise_event_statement_token1] = ACTIONS(9439), + [sym_stop_statement] = ACTIONS(9439), + [sym_beep_statement] = ACTIONS(9439), + [aux_sym_unload_statement_token1] = ACTIONS(9439), + [aux_sym_def_type_statement_token1] = ACTIONS(9439), + [aux_sym_def_type_statement_token2] = ACTIONS(9439), + [aux_sym_def_type_statement_token3] = ACTIONS(9439), + [aux_sym_def_type_statement_token4] = ACTIONS(9439), + [aux_sym_def_type_statement_token5] = ACTIONS(9439), + [aux_sym_def_type_statement_token6] = ACTIONS(9439), + [aux_sym_def_type_statement_token7] = ACTIONS(9439), + [aux_sym_def_type_statement_token8] = ACTIONS(9439), + [aux_sym_def_type_statement_token9] = ACTIONS(9439), + [aux_sym_def_type_statement_token10] = ACTIONS(9439), + [aux_sym_def_type_statement_token11] = ACTIONS(9439), + [aux_sym_def_type_statement_token12] = ACTIONS(9439), + [aux_sym_def_type_statement_token13] = ACTIONS(9439), + [aux_sym_def_type_statement_token14] = ACTIONS(9439), + [aux_sym_call_statement_token1] = ACTIONS(9439), + [sym__ambiguous_call_statement] = ACTIONS(9439), + [aux_sym_addressof_expression_token1] = ACTIONS(9439), + [aux_sym_type_of_expression_token1] = ACTIONS(9439), + [aux_sym_unary_expression_token1] = ACTIONS(9439), + [sym_string_literal] = ACTIONS(9441), + [sym_number_literal] = ACTIONS(9441), + [aux_sym_boolean_literal_token1] = ACTIONS(9439), + [aux_sym_boolean_literal_token2] = ACTIONS(9439), + [sym_nothing_literal] = ACTIONS(9439), + [sym_null_literal] = ACTIONS(9439), + [sym_empty_literal] = ACTIONS(9439), + [sym_date_literal] = ACTIONS(9441), + [anon_sym_POUND] = ACTIONS(9439), + }, + [STATE(5653)] = { + [sym_identifier] = ACTIONS(9443), + [sym_newline] = ACTIONS(9445), + [anon_sym_COLON] = ACTIONS(9445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9443), + [aux_sym_frm_property_statement_token1] = ACTIONS(9443), + [anon_sym_DOT] = ACTIONS(9443), + [anon_sym_BANG] = ACTIONS(9445), + [aux_sym__attribute_identifier_token1] = ACTIONS(9443), + [aux_sym_option_statement_token3] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9443), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9443), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9443), + [aux_sym_preprocessor_const_token1] = ACTIONS(9443), + [sym_static_modifier] = ACTIONS(9443), + [sym__dim_keyword] = ACTIONS(9443), + [sym__redim_keyword] = ACTIONS(9443), + [aux_sym_get_accessor_token1] = ACTIONS(9443), + [aux_sym_set_accessor_token1] = ACTIONS(9443), + [aux_sym_const_declaration_token1] = ACTIONS(9443), + [anon_sym_LPAREN] = ACTIONS(9445), + [aux_sym_as_type_clause_token2] = ACTIONS(9443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9443), + [aux_sym_visibility_token1] = ACTIONS(9443), + [aux_sym_visibility_token2] = ACTIONS(9443), + [aux_sym_elseif_fragment_token1] = ACTIONS(9443), + [aux_sym_else_fragment_token1] = ACTIONS(9443), + [aux_sym_select_statement_token1] = ACTIONS(9443), + [aux_sym__for_header_token1] = ACTIONS(9443), + [aux_sym_do_statement_token1] = ACTIONS(9443), + [aux_sym_do_condition_token1] = ACTIONS(9443), + [aux_sym_with_statement_token1] = ACTIONS(9443), + [aux_sym_exit_statement_token1] = ACTIONS(9443), + [sym_end_statement] = ACTIONS(9445), + [aux_sym_on_goto_statement_token1] = ACTIONS(9443), + [aux_sym_on_goto_statement_token2] = ACTIONS(9443), + [aux_sym_on_error_statement_token2] = ACTIONS(9443), + [sym__ambiguous_redim_statement] = ACTIONS(9445), + [aux_sym_erase_statement_token1] = ACTIONS(9443), + [aux_sym_open_statement_token1] = ACTIONS(9443), + [aux_sym_file_mode_token2] = ACTIONS(9443), + [aux_sym_file_access_token2] = ACTIONS(9443), + [aux_sym_file_lock_token2] = ACTIONS(9443), + [aux_sym_print_statement_token1] = ACTIONS(9443), + [anon_sym_PLUS] = ACTIONS(9445), + [anon_sym_DASH] = ACTIONS(9443), + [anon_sym_QMARK] = ACTIONS(9445), + [aux_sym_close_statement_token1] = ACTIONS(9443), + [aux_sym_put_statement_token1] = ACTIONS(9443), + [aux_sym_unlock_statement_token1] = ACTIONS(9443), + [aux_sym_seek_statement_token1] = ACTIONS(9443), + [sym_reset_statement] = ACTIONS(9443), + [aux_sym_raise_event_statement_token1] = ACTIONS(9443), + [sym_stop_statement] = ACTIONS(9443), + [sym_beep_statement] = ACTIONS(9443), + [aux_sym_unload_statement_token1] = ACTIONS(9443), + [aux_sym_def_type_statement_token1] = ACTIONS(9443), + [aux_sym_def_type_statement_token2] = ACTIONS(9443), + [aux_sym_def_type_statement_token3] = ACTIONS(9443), + [aux_sym_def_type_statement_token4] = ACTIONS(9443), + [aux_sym_def_type_statement_token5] = ACTIONS(9443), + [aux_sym_def_type_statement_token6] = ACTIONS(9443), + [aux_sym_def_type_statement_token7] = ACTIONS(9443), + [aux_sym_def_type_statement_token8] = ACTIONS(9443), + [aux_sym_def_type_statement_token9] = ACTIONS(9443), + [aux_sym_def_type_statement_token10] = ACTIONS(9443), + [aux_sym_def_type_statement_token11] = ACTIONS(9443), + [aux_sym_def_type_statement_token12] = ACTIONS(9443), + [aux_sym_def_type_statement_token13] = ACTIONS(9443), + [aux_sym_def_type_statement_token14] = ACTIONS(9443), + [aux_sym_call_statement_token1] = ACTIONS(9443), + [sym__ambiguous_call_statement] = ACTIONS(9443), + [aux_sym_addressof_expression_token1] = ACTIONS(9443), + [aux_sym_type_of_expression_token1] = ACTIONS(9443), + [aux_sym_unary_expression_token1] = ACTIONS(9443), + [sym_string_literal] = ACTIONS(9445), + [sym_number_literal] = ACTIONS(9445), + [aux_sym_boolean_literal_token1] = ACTIONS(9443), + [aux_sym_boolean_literal_token2] = ACTIONS(9443), + [sym_nothing_literal] = ACTIONS(9443), + [sym_null_literal] = ACTIONS(9443), + [sym_empty_literal] = ACTIONS(9443), + [sym_date_literal] = ACTIONS(9445), + [anon_sym_POUND] = ACTIONS(9443), + }, + [STATE(5654)] = { + [sym_identifier] = ACTIONS(9447), + [sym_newline] = ACTIONS(9449), + [anon_sym_COLON] = ACTIONS(9449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9447), + [aux_sym_frm_property_statement_token1] = ACTIONS(9447), + [anon_sym_DOT] = ACTIONS(9447), + [anon_sym_BANG] = ACTIONS(9449), + [aux_sym__attribute_identifier_token1] = ACTIONS(9447), + [aux_sym_option_statement_token3] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9447), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9447), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9447), + [aux_sym_preprocessor_const_token1] = ACTIONS(9447), + [sym_static_modifier] = ACTIONS(9447), + [sym__dim_keyword] = ACTIONS(9447), + [sym__redim_keyword] = ACTIONS(9447), + [aux_sym_get_accessor_token1] = ACTIONS(9447), + [aux_sym_set_accessor_token1] = ACTIONS(9447), + [aux_sym_const_declaration_token1] = ACTIONS(9447), + [anon_sym_LPAREN] = ACTIONS(9449), + [aux_sym_as_type_clause_token2] = ACTIONS(9447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9447), + [aux_sym_visibility_token1] = ACTIONS(9447), + [aux_sym_visibility_token2] = ACTIONS(9447), + [aux_sym_elseif_fragment_token1] = ACTIONS(9447), + [aux_sym_else_fragment_token1] = ACTIONS(9447), + [aux_sym_select_statement_token1] = ACTIONS(9447), + [aux_sym__for_header_token1] = ACTIONS(9447), + [aux_sym_do_statement_token1] = ACTIONS(9447), + [aux_sym_do_condition_token1] = ACTIONS(9447), + [aux_sym_with_statement_token1] = ACTIONS(9447), + [aux_sym_exit_statement_token1] = ACTIONS(9447), + [sym_end_statement] = ACTIONS(9449), + [aux_sym_on_goto_statement_token1] = ACTIONS(9447), + [aux_sym_on_goto_statement_token2] = ACTIONS(9447), + [aux_sym_on_error_statement_token2] = ACTIONS(9447), + [sym__ambiguous_redim_statement] = ACTIONS(9449), + [aux_sym_erase_statement_token1] = ACTIONS(9447), + [aux_sym_open_statement_token1] = ACTIONS(9447), + [aux_sym_file_mode_token2] = ACTIONS(9447), + [aux_sym_file_access_token2] = ACTIONS(9447), + [aux_sym_file_lock_token2] = ACTIONS(9447), + [aux_sym_print_statement_token1] = ACTIONS(9447), + [anon_sym_PLUS] = ACTIONS(9449), + [anon_sym_DASH] = ACTIONS(9447), + [anon_sym_QMARK] = ACTIONS(9449), + [aux_sym_close_statement_token1] = ACTIONS(9447), + [aux_sym_put_statement_token1] = ACTIONS(9447), + [aux_sym_unlock_statement_token1] = ACTIONS(9447), + [aux_sym_seek_statement_token1] = ACTIONS(9447), + [sym_reset_statement] = ACTIONS(9447), + [aux_sym_raise_event_statement_token1] = ACTIONS(9447), + [sym_stop_statement] = ACTIONS(9447), + [sym_beep_statement] = ACTIONS(9447), + [aux_sym_unload_statement_token1] = ACTIONS(9447), + [aux_sym_def_type_statement_token1] = ACTIONS(9447), + [aux_sym_def_type_statement_token2] = ACTIONS(9447), + [aux_sym_def_type_statement_token3] = ACTIONS(9447), + [aux_sym_def_type_statement_token4] = ACTIONS(9447), + [aux_sym_def_type_statement_token5] = ACTIONS(9447), + [aux_sym_def_type_statement_token6] = ACTIONS(9447), + [aux_sym_def_type_statement_token7] = ACTIONS(9447), + [aux_sym_def_type_statement_token8] = ACTIONS(9447), + [aux_sym_def_type_statement_token9] = ACTIONS(9447), + [aux_sym_def_type_statement_token10] = ACTIONS(9447), + [aux_sym_def_type_statement_token11] = ACTIONS(9447), + [aux_sym_def_type_statement_token12] = ACTIONS(9447), + [aux_sym_def_type_statement_token13] = ACTIONS(9447), + [aux_sym_def_type_statement_token14] = ACTIONS(9447), + [aux_sym_call_statement_token1] = ACTIONS(9447), + [sym__ambiguous_call_statement] = ACTIONS(9447), + [aux_sym_addressof_expression_token1] = ACTIONS(9447), + [aux_sym_type_of_expression_token1] = ACTIONS(9447), + [aux_sym_unary_expression_token1] = ACTIONS(9447), + [sym_string_literal] = ACTIONS(9449), + [sym_number_literal] = ACTIONS(9449), + [aux_sym_boolean_literal_token1] = ACTIONS(9447), + [aux_sym_boolean_literal_token2] = ACTIONS(9447), + [sym_nothing_literal] = ACTIONS(9447), + [sym_null_literal] = ACTIONS(9447), + [sym_empty_literal] = ACTIONS(9447), + [sym_date_literal] = ACTIONS(9449), + [anon_sym_POUND] = ACTIONS(9447), + }, + [STATE(5655)] = { + [sym_identifier] = ACTIONS(9451), + [sym_newline] = ACTIONS(9453), + [anon_sym_COLON] = ACTIONS(9453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9451), + [aux_sym_frm_property_statement_token1] = ACTIONS(9451), + [anon_sym_DOT] = ACTIONS(9451), + [anon_sym_BANG] = ACTIONS(9453), + [aux_sym__attribute_identifier_token1] = ACTIONS(9451), + [aux_sym_option_statement_token3] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9451), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9451), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9451), + [aux_sym_preprocessor_const_token1] = ACTIONS(9451), + [sym_static_modifier] = ACTIONS(9451), + [sym__dim_keyword] = ACTIONS(9451), + [sym__redim_keyword] = ACTIONS(9451), + [aux_sym_get_accessor_token1] = ACTIONS(9451), + [aux_sym_set_accessor_token1] = ACTIONS(9451), + [aux_sym_const_declaration_token1] = ACTIONS(9451), + [anon_sym_LPAREN] = ACTIONS(9453), + [aux_sym_as_type_clause_token2] = ACTIONS(9451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9451), + [aux_sym_visibility_token1] = ACTIONS(9451), + [aux_sym_visibility_token2] = ACTIONS(9451), + [aux_sym_elseif_fragment_token1] = ACTIONS(9451), + [aux_sym_else_fragment_token1] = ACTIONS(9451), + [aux_sym_select_statement_token1] = ACTIONS(9451), + [aux_sym__for_header_token1] = ACTIONS(9451), + [aux_sym_do_statement_token1] = ACTIONS(9451), + [aux_sym_do_condition_token1] = ACTIONS(9451), + [aux_sym_with_statement_token1] = ACTIONS(9451), + [aux_sym_exit_statement_token1] = ACTIONS(9451), + [sym_end_statement] = ACTIONS(9453), + [aux_sym_on_goto_statement_token1] = ACTIONS(9451), + [aux_sym_on_goto_statement_token2] = ACTIONS(9451), + [aux_sym_on_error_statement_token2] = ACTIONS(9451), + [sym__ambiguous_redim_statement] = ACTIONS(9453), + [aux_sym_erase_statement_token1] = ACTIONS(9451), + [aux_sym_open_statement_token1] = ACTIONS(9451), + [aux_sym_file_mode_token2] = ACTIONS(9451), + [aux_sym_file_access_token2] = ACTIONS(9451), + [aux_sym_file_lock_token2] = ACTIONS(9451), + [aux_sym_print_statement_token1] = ACTIONS(9451), + [anon_sym_PLUS] = ACTIONS(9453), + [anon_sym_DASH] = ACTIONS(9451), + [anon_sym_QMARK] = ACTIONS(9453), + [aux_sym_close_statement_token1] = ACTIONS(9451), + [aux_sym_put_statement_token1] = ACTIONS(9451), + [aux_sym_unlock_statement_token1] = ACTIONS(9451), + [aux_sym_seek_statement_token1] = ACTIONS(9451), + [sym_reset_statement] = ACTIONS(9451), + [aux_sym_raise_event_statement_token1] = ACTIONS(9451), + [sym_stop_statement] = ACTIONS(9451), + [sym_beep_statement] = ACTIONS(9451), + [aux_sym_unload_statement_token1] = ACTIONS(9451), + [aux_sym_def_type_statement_token1] = ACTIONS(9451), + [aux_sym_def_type_statement_token2] = ACTIONS(9451), + [aux_sym_def_type_statement_token3] = ACTIONS(9451), + [aux_sym_def_type_statement_token4] = ACTIONS(9451), + [aux_sym_def_type_statement_token5] = ACTIONS(9451), + [aux_sym_def_type_statement_token6] = ACTIONS(9451), + [aux_sym_def_type_statement_token7] = ACTIONS(9451), + [aux_sym_def_type_statement_token8] = ACTIONS(9451), + [aux_sym_def_type_statement_token9] = ACTIONS(9451), + [aux_sym_def_type_statement_token10] = ACTIONS(9451), + [aux_sym_def_type_statement_token11] = ACTIONS(9451), + [aux_sym_def_type_statement_token12] = ACTIONS(9451), + [aux_sym_def_type_statement_token13] = ACTIONS(9451), + [aux_sym_def_type_statement_token14] = ACTIONS(9451), + [aux_sym_call_statement_token1] = ACTIONS(9451), + [sym__ambiguous_call_statement] = ACTIONS(9451), + [aux_sym_addressof_expression_token1] = ACTIONS(9451), + [aux_sym_type_of_expression_token1] = ACTIONS(9451), + [aux_sym_unary_expression_token1] = ACTIONS(9451), + [sym_string_literal] = ACTIONS(9453), + [sym_number_literal] = ACTIONS(9453), + [aux_sym_boolean_literal_token1] = ACTIONS(9451), + [aux_sym_boolean_literal_token2] = ACTIONS(9451), + [sym_nothing_literal] = ACTIONS(9451), + [sym_null_literal] = ACTIONS(9451), + [sym_empty_literal] = ACTIONS(9451), + [sym_date_literal] = ACTIONS(9453), + [anon_sym_POUND] = ACTIONS(9451), + }, + [STATE(5656)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_select_statement_token2] = ACTIONS(4601), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(5657)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_select_statement_token2] = ACTIONS(4605), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(5658)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_select_statement_token2] = ACTIONS(4609), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(5659)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_select_statement_token2] = ACTIONS(4621), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(5660)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5694), + [sym_identifier] = ACTIONS(8225), + [sym_newline] = ACTIONS(8227), + [anon_sym_COLON] = ACTIONS(8227), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8225), + [aux_sym_frm_property_statement_token1] = ACTIONS(8225), + [anon_sym_DOT] = ACTIONS(8225), + [anon_sym_BANG] = ACTIONS(8227), + [aux_sym__attribute_identifier_token1] = ACTIONS(8225), + [aux_sym_option_statement_token3] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8225), + [aux_sym_preprocessor_const_token1] = ACTIONS(8225), + [sym_static_modifier] = ACTIONS(8225), + [sym__dim_keyword] = ACTIONS(8225), + [sym__redim_keyword] = ACTIONS(8225), + [aux_sym_get_accessor_token1] = ACTIONS(8225), + [aux_sym_set_accessor_token1] = ACTIONS(8225), + [anon_sym_COMMA] = ACTIONS(10758), + [aux_sym_const_declaration_token1] = ACTIONS(8225), + [anon_sym_LPAREN] = ACTIONS(8227), + [aux_sym_as_type_clause_token2] = ACTIONS(8225), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8225), + [aux_sym_visibility_token1] = ACTIONS(8225), + [aux_sym_visibility_token2] = ACTIONS(8225), + [aux_sym_elseif_fragment_token1] = ACTIONS(8225), + [aux_sym_else_fragment_token1] = ACTIONS(8225), + [aux_sym_select_statement_token1] = ACTIONS(8225), + [aux_sym_select_statement_token2] = ACTIONS(8225), + [aux_sym__for_header_token1] = ACTIONS(8225), + [aux_sym_do_statement_token1] = ACTIONS(8225), + [aux_sym_do_condition_token1] = ACTIONS(8225), + [aux_sym_with_statement_token1] = ACTIONS(8225), + [aux_sym_exit_statement_token1] = ACTIONS(8225), + [sym_end_statement] = ACTIONS(8227), + [aux_sym_on_goto_statement_token1] = ACTIONS(8225), + [aux_sym_on_goto_statement_token2] = ACTIONS(8225), + [aux_sym_on_error_statement_token2] = ACTIONS(8225), + [sym__ambiguous_redim_statement] = ACTIONS(8227), + [aux_sym_erase_statement_token1] = ACTIONS(8225), + [aux_sym_open_statement_token1] = ACTIONS(8225), + [aux_sym_file_mode_token2] = ACTIONS(8225), + [aux_sym_file_access_token2] = ACTIONS(8225), + [aux_sym_file_lock_token2] = ACTIONS(8225), + [aux_sym_print_statement_token1] = ACTIONS(8225), + [anon_sym_PLUS] = ACTIONS(8227), + [anon_sym_DASH] = ACTIONS(8225), + [anon_sym_QMARK] = ACTIONS(8227), + [aux_sym_close_statement_token1] = ACTIONS(8225), + [aux_sym_put_statement_token1] = ACTIONS(8225), + [aux_sym_unlock_statement_token1] = ACTIONS(8225), + [aux_sym_seek_statement_token1] = ACTIONS(8225), + [sym_reset_statement] = ACTIONS(8225), + [aux_sym_raise_event_statement_token1] = ACTIONS(8225), + [sym_stop_statement] = ACTIONS(8225), + [sym_beep_statement] = ACTIONS(8225), + [aux_sym_unload_statement_token1] = ACTIONS(8225), + [aux_sym_def_type_statement_token1] = ACTIONS(8225), + [aux_sym_def_type_statement_token2] = ACTIONS(8225), + [aux_sym_def_type_statement_token3] = ACTIONS(8225), + [aux_sym_def_type_statement_token4] = ACTIONS(8225), + [aux_sym_def_type_statement_token5] = ACTIONS(8225), + [aux_sym_def_type_statement_token6] = ACTIONS(8225), + [aux_sym_def_type_statement_token7] = ACTIONS(8225), + [aux_sym_def_type_statement_token8] = ACTIONS(8225), + [aux_sym_def_type_statement_token9] = ACTIONS(8225), + [aux_sym_def_type_statement_token10] = ACTIONS(8225), + [aux_sym_def_type_statement_token11] = ACTIONS(8225), + [aux_sym_def_type_statement_token12] = ACTIONS(8225), + [aux_sym_def_type_statement_token13] = ACTIONS(8225), + [aux_sym_def_type_statement_token14] = ACTIONS(8225), + [aux_sym_call_statement_token1] = ACTIONS(8225), + [sym__ambiguous_call_statement] = ACTIONS(8225), + [aux_sym_addressof_expression_token1] = ACTIONS(8225), + [aux_sym_type_of_expression_token1] = ACTIONS(8225), + [aux_sym_unary_expression_token1] = ACTIONS(8225), + [sym_string_literal] = ACTIONS(8227), + [sym_number_literal] = ACTIONS(8227), + [aux_sym_boolean_literal_token1] = ACTIONS(8225), + [aux_sym_boolean_literal_token2] = ACTIONS(8225), + [sym_nothing_literal] = ACTIONS(8225), + [sym_null_literal] = ACTIONS(8225), + [sym_empty_literal] = ACTIONS(8225), + [sym_date_literal] = ACTIONS(8227), + [anon_sym_POUND] = ACTIONS(8225), + }, + [STATE(5661)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5694), + [sym_identifier] = ACTIONS(8231), + [sym_newline] = ACTIONS(8233), + [anon_sym_COLON] = ACTIONS(8233), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8231), + [aux_sym_frm_property_statement_token1] = ACTIONS(8231), + [anon_sym_DOT] = ACTIONS(8231), + [anon_sym_BANG] = ACTIONS(8233), + [aux_sym__attribute_identifier_token1] = ACTIONS(8231), + [aux_sym_option_statement_token3] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8231), + [aux_sym_preprocessor_const_token1] = ACTIONS(8231), + [sym_static_modifier] = ACTIONS(8231), + [sym__dim_keyword] = ACTIONS(8231), + [sym__redim_keyword] = ACTIONS(8231), + [aux_sym_get_accessor_token1] = ACTIONS(8231), + [aux_sym_set_accessor_token1] = ACTIONS(8231), + [anon_sym_COMMA] = ACTIONS(10758), + [aux_sym_const_declaration_token1] = ACTIONS(8231), + [anon_sym_LPAREN] = ACTIONS(8233), + [aux_sym_as_type_clause_token2] = ACTIONS(8231), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8231), + [aux_sym_visibility_token1] = ACTIONS(8231), + [aux_sym_visibility_token2] = ACTIONS(8231), + [aux_sym_elseif_fragment_token1] = ACTIONS(8231), + [aux_sym_else_fragment_token1] = ACTIONS(8231), + [aux_sym_select_statement_token1] = ACTIONS(8231), + [aux_sym_select_statement_token2] = ACTIONS(8231), + [aux_sym__for_header_token1] = ACTIONS(8231), + [aux_sym_do_statement_token1] = ACTIONS(8231), + [aux_sym_do_condition_token1] = ACTIONS(8231), + [aux_sym_with_statement_token1] = ACTIONS(8231), + [aux_sym_exit_statement_token1] = ACTIONS(8231), + [sym_end_statement] = ACTIONS(8233), + [aux_sym_on_goto_statement_token1] = ACTIONS(8231), + [aux_sym_on_goto_statement_token2] = ACTIONS(8231), + [aux_sym_on_error_statement_token2] = ACTIONS(8231), + [sym__ambiguous_redim_statement] = ACTIONS(8233), + [aux_sym_erase_statement_token1] = ACTIONS(8231), + [aux_sym_open_statement_token1] = ACTIONS(8231), + [aux_sym_file_mode_token2] = ACTIONS(8231), + [aux_sym_file_access_token2] = ACTIONS(8231), + [aux_sym_file_lock_token2] = ACTIONS(8231), + [aux_sym_print_statement_token1] = ACTIONS(8231), + [anon_sym_PLUS] = ACTIONS(8233), + [anon_sym_DASH] = ACTIONS(8231), + [anon_sym_QMARK] = ACTIONS(8233), + [aux_sym_close_statement_token1] = ACTIONS(8231), + [aux_sym_put_statement_token1] = ACTIONS(8231), + [aux_sym_unlock_statement_token1] = ACTIONS(8231), + [aux_sym_seek_statement_token1] = ACTIONS(8231), + [sym_reset_statement] = ACTIONS(8231), + [aux_sym_raise_event_statement_token1] = ACTIONS(8231), + [sym_stop_statement] = ACTIONS(8231), + [sym_beep_statement] = ACTIONS(8231), + [aux_sym_unload_statement_token1] = ACTIONS(8231), + [aux_sym_def_type_statement_token1] = ACTIONS(8231), + [aux_sym_def_type_statement_token2] = ACTIONS(8231), + [aux_sym_def_type_statement_token3] = ACTIONS(8231), + [aux_sym_def_type_statement_token4] = ACTIONS(8231), + [aux_sym_def_type_statement_token5] = ACTIONS(8231), + [aux_sym_def_type_statement_token6] = ACTIONS(8231), + [aux_sym_def_type_statement_token7] = ACTIONS(8231), + [aux_sym_def_type_statement_token8] = ACTIONS(8231), + [aux_sym_def_type_statement_token9] = ACTIONS(8231), + [aux_sym_def_type_statement_token10] = ACTIONS(8231), + [aux_sym_def_type_statement_token11] = ACTIONS(8231), + [aux_sym_def_type_statement_token12] = ACTIONS(8231), + [aux_sym_def_type_statement_token13] = ACTIONS(8231), + [aux_sym_def_type_statement_token14] = ACTIONS(8231), + [aux_sym_call_statement_token1] = ACTIONS(8231), + [sym__ambiguous_call_statement] = ACTIONS(8231), + [aux_sym_addressof_expression_token1] = ACTIONS(8231), + [aux_sym_type_of_expression_token1] = ACTIONS(8231), + [aux_sym_unary_expression_token1] = ACTIONS(8231), + [sym_string_literal] = ACTIONS(8233), + [sym_number_literal] = ACTIONS(8233), + [aux_sym_boolean_literal_token1] = ACTIONS(8231), + [aux_sym_boolean_literal_token2] = ACTIONS(8231), + [sym_nothing_literal] = ACTIONS(8231), + [sym_null_literal] = ACTIONS(8231), + [sym_empty_literal] = ACTIONS(8231), + [sym_date_literal] = ACTIONS(8233), + [anon_sym_POUND] = ACTIONS(8231), + }, + [STATE(5662)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(5663)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(5664)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(5665)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(5666)] = { + [sym_do_condition] = STATE(6633), + [sym_identifier] = ACTIONS(8374), + [sym_newline] = ACTIONS(8376), + [anon_sym_COLON] = ACTIONS(8376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8374), + [aux_sym_frm_property_statement_token1] = ACTIONS(8374), + [anon_sym_DOT] = ACTIONS(8374), + [anon_sym_BANG] = ACTIONS(8376), + [aux_sym__attribute_identifier_token1] = ACTIONS(8374), + [aux_sym_option_statement_token3] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8374), + [aux_sym_preprocessor_const_token1] = ACTIONS(8374), + [sym_static_modifier] = ACTIONS(8374), + [sym__dim_keyword] = ACTIONS(8374), + [sym__redim_keyword] = ACTIONS(8374), + [aux_sym_get_accessor_token1] = ACTIONS(8374), + [aux_sym_set_accessor_token1] = ACTIONS(8374), + [aux_sym_const_declaration_token1] = ACTIONS(8374), + [anon_sym_LPAREN] = ACTIONS(8376), + [aux_sym_as_type_clause_token2] = ACTIONS(8374), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8374), + [aux_sym_visibility_token1] = ACTIONS(8374), + [aux_sym_visibility_token2] = ACTIONS(8374), + [aux_sym_elseif_fragment_token1] = ACTIONS(8374), + [aux_sym_else_fragment_token1] = ACTIONS(8374), + [aux_sym_select_statement_token1] = ACTIONS(8374), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8374), + [aux_sym__for_header_token1] = ACTIONS(8374), + [aux_sym_do_statement_token1] = ACTIONS(8374), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8374), + [aux_sym_exit_statement_token1] = ACTIONS(8374), + [sym_end_statement] = ACTIONS(8376), + [aux_sym_on_goto_statement_token1] = ACTIONS(8374), + [aux_sym_on_goto_statement_token2] = ACTIONS(8374), + [aux_sym_on_error_statement_token2] = ACTIONS(8374), + [sym__ambiguous_redim_statement] = ACTIONS(8376), + [aux_sym_erase_statement_token1] = ACTIONS(8374), + [aux_sym_open_statement_token1] = ACTIONS(8374), + [aux_sym_file_mode_token2] = ACTIONS(8374), + [aux_sym_file_access_token2] = ACTIONS(8374), + [aux_sym_file_lock_token2] = ACTIONS(8374), + [aux_sym_print_statement_token1] = ACTIONS(8374), + [anon_sym_PLUS] = ACTIONS(8376), + [anon_sym_DASH] = ACTIONS(8374), + [anon_sym_QMARK] = ACTIONS(8376), + [aux_sym_close_statement_token1] = ACTIONS(8374), + [aux_sym_put_statement_token1] = ACTIONS(8374), + [aux_sym_unlock_statement_token1] = ACTIONS(8374), + [aux_sym_seek_statement_token1] = ACTIONS(8374), + [sym_reset_statement] = ACTIONS(8374), + [aux_sym_raise_event_statement_token1] = ACTIONS(8374), + [sym_stop_statement] = ACTIONS(8374), + [sym_beep_statement] = ACTIONS(8374), + [aux_sym_unload_statement_token1] = ACTIONS(8374), + [aux_sym_def_type_statement_token1] = ACTIONS(8374), + [aux_sym_def_type_statement_token2] = ACTIONS(8374), + [aux_sym_def_type_statement_token3] = ACTIONS(8374), + [aux_sym_def_type_statement_token4] = ACTIONS(8374), + [aux_sym_def_type_statement_token5] = ACTIONS(8374), + [aux_sym_def_type_statement_token6] = ACTIONS(8374), + [aux_sym_def_type_statement_token7] = ACTIONS(8374), + [aux_sym_def_type_statement_token8] = ACTIONS(8374), + [aux_sym_def_type_statement_token9] = ACTIONS(8374), + [aux_sym_def_type_statement_token10] = ACTIONS(8374), + [aux_sym_def_type_statement_token11] = ACTIONS(8374), + [aux_sym_def_type_statement_token12] = ACTIONS(8374), + [aux_sym_def_type_statement_token13] = ACTIONS(8374), + [aux_sym_def_type_statement_token14] = ACTIONS(8374), + [aux_sym_call_statement_token1] = ACTIONS(8374), + [sym__ambiguous_call_statement] = ACTIONS(8374), + [aux_sym_addressof_expression_token1] = ACTIONS(8374), + [aux_sym_type_of_expression_token1] = ACTIONS(8374), + [aux_sym_unary_expression_token1] = ACTIONS(8374), + [sym_string_literal] = ACTIONS(8376), + [sym_number_literal] = ACTIONS(8376), + [aux_sym_boolean_literal_token1] = ACTIONS(8374), + [aux_sym_boolean_literal_token2] = ACTIONS(8374), + [sym_nothing_literal] = ACTIONS(8374), + [sym_null_literal] = ACTIONS(8374), + [sym_empty_literal] = ACTIONS(8374), + [sym_date_literal] = ACTIONS(8376), + [anon_sym_POUND] = ACTIONS(8374), + }, + [STATE(5667)] = { + [sym_identifier] = ACTIONS(8839), + [sym_newline] = ACTIONS(8841), + [anon_sym_COLON] = ACTIONS(8841), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8839), + [aux_sym_frm_property_statement_token1] = ACTIONS(8839), + [anon_sym_DOT] = ACTIONS(8839), + [anon_sym_BANG] = ACTIONS(8841), + [aux_sym__attribute_identifier_token1] = ACTIONS(8839), + [aux_sym_option_statement_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8839), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8839), + [aux_sym_preprocessor_const_token1] = ACTIONS(8839), + [sym_static_modifier] = ACTIONS(8839), + [sym__dim_keyword] = ACTIONS(8839), + [sym__redim_keyword] = ACTIONS(8839), + [aux_sym_get_accessor_token1] = ACTIONS(8839), + [aux_sym_set_accessor_token1] = ACTIONS(8839), + [aux_sym_const_declaration_token1] = ACTIONS(8839), + [anon_sym_LPAREN] = ACTIONS(8841), + [aux_sym_as_type_clause_token2] = ACTIONS(8839), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8839), + [aux_sym_visibility_token1] = ACTIONS(8839), + [aux_sym_visibility_token2] = ACTIONS(8839), + [aux_sym_elseif_fragment_token1] = ACTIONS(8839), + [aux_sym_else_fragment_token1] = ACTIONS(8839), + [aux_sym_select_statement_token1] = ACTIONS(8839), + [aux_sym__for_header_token1] = ACTIONS(8839), + [aux_sym_do_statement_token1] = ACTIONS(8839), + [aux_sym_do_condition_token1] = ACTIONS(8839), + [aux_sym_with_statement_token1] = ACTIONS(8839), + [aux_sym_exit_statement_token1] = ACTIONS(8839), + [sym_end_statement] = ACTIONS(8841), + [aux_sym_on_goto_statement_token1] = ACTIONS(8839), + [aux_sym_on_goto_statement_token2] = ACTIONS(8839), + [aux_sym_on_error_statement_token2] = ACTIONS(8839), + [sym__ambiguous_redim_statement] = ACTIONS(8841), + [aux_sym_erase_statement_token1] = ACTIONS(8839), + [aux_sym_open_statement_token1] = ACTIONS(8839), + [aux_sym_file_mode_token2] = ACTIONS(8839), + [aux_sym_file_access_token2] = ACTIONS(8839), + [aux_sym_file_lock_token2] = ACTIONS(8839), + [aux_sym_print_statement_token1] = ACTIONS(8839), + [anon_sym_PLUS] = ACTIONS(8841), + [anon_sym_DASH] = ACTIONS(8839), + [anon_sym_QMARK] = ACTIONS(8841), + [aux_sym_close_statement_token1] = ACTIONS(8839), + [aux_sym_put_statement_token1] = ACTIONS(8839), + [aux_sym_unlock_statement_token1] = ACTIONS(8839), + [aux_sym_seek_statement_token1] = ACTIONS(8839), + [sym_reset_statement] = ACTIONS(8839), + [aux_sym_raise_event_statement_token1] = ACTIONS(8839), + [sym_stop_statement] = ACTIONS(8839), + [sym_beep_statement] = ACTIONS(8839), + [aux_sym_unload_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token2] = ACTIONS(8839), + [aux_sym_def_type_statement_token3] = ACTIONS(8839), + [aux_sym_def_type_statement_token4] = ACTIONS(8839), + [aux_sym_def_type_statement_token5] = ACTIONS(8839), + [aux_sym_def_type_statement_token6] = ACTIONS(8839), + [aux_sym_def_type_statement_token7] = ACTIONS(8839), + [aux_sym_def_type_statement_token8] = ACTIONS(8839), + [aux_sym_def_type_statement_token9] = ACTIONS(8839), + [aux_sym_def_type_statement_token10] = ACTIONS(8839), + [aux_sym_def_type_statement_token11] = ACTIONS(8839), + [aux_sym_def_type_statement_token12] = ACTIONS(8839), + [aux_sym_def_type_statement_token13] = ACTIONS(8839), + [aux_sym_def_type_statement_token14] = ACTIONS(8839), + [aux_sym_call_statement_token1] = ACTIONS(8839), + [sym__ambiguous_call_statement] = ACTIONS(8839), + [aux_sym_addressof_expression_token1] = ACTIONS(8839), + [aux_sym_type_of_expression_token1] = ACTIONS(8839), + [aux_sym_unary_expression_token1] = ACTIONS(8839), + [sym_string_literal] = ACTIONS(8841), + [sym_number_literal] = ACTIONS(8841), + [aux_sym_boolean_literal_token1] = ACTIONS(8839), + [aux_sym_boolean_literal_token2] = ACTIONS(8839), + [sym_nothing_literal] = ACTIONS(8839), + [sym_null_literal] = ACTIONS(8839), + [sym_empty_literal] = ACTIONS(8839), + [sym_date_literal] = ACTIONS(8841), + [anon_sym_POUND] = ACTIONS(8839), + }, + [STATE(5668)] = { + [sym_do_condition] = STATE(6634), + [sym_identifier] = ACTIONS(8378), + [sym_newline] = ACTIONS(8380), + [anon_sym_COLON] = ACTIONS(8380), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8378), + [aux_sym_frm_property_statement_token1] = ACTIONS(8378), + [anon_sym_DOT] = ACTIONS(8378), + [anon_sym_BANG] = ACTIONS(8380), + [aux_sym__attribute_identifier_token1] = ACTIONS(8378), + [aux_sym_option_statement_token3] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8378), + [aux_sym_preprocessor_const_token1] = ACTIONS(8378), + [sym_static_modifier] = ACTIONS(8378), + [sym__dim_keyword] = ACTIONS(8378), + [sym__redim_keyword] = ACTIONS(8378), + [aux_sym_get_accessor_token1] = ACTIONS(8378), + [aux_sym_set_accessor_token1] = ACTIONS(8378), + [aux_sym_const_declaration_token1] = ACTIONS(8378), + [anon_sym_LPAREN] = ACTIONS(8380), + [aux_sym_as_type_clause_token2] = ACTIONS(8378), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8378), + [aux_sym_visibility_token1] = ACTIONS(8378), + [aux_sym_visibility_token2] = ACTIONS(8378), + [aux_sym_elseif_fragment_token1] = ACTIONS(8378), + [aux_sym_else_fragment_token1] = ACTIONS(8378), + [aux_sym_select_statement_token1] = ACTIONS(8378), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8378), + [aux_sym__for_header_token1] = ACTIONS(8378), + [aux_sym_do_statement_token1] = ACTIONS(8378), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8378), + [aux_sym_exit_statement_token1] = ACTIONS(8378), + [sym_end_statement] = ACTIONS(8380), + [aux_sym_on_goto_statement_token1] = ACTIONS(8378), + [aux_sym_on_goto_statement_token2] = ACTIONS(8378), + [aux_sym_on_error_statement_token2] = ACTIONS(8378), + [sym__ambiguous_redim_statement] = ACTIONS(8380), + [aux_sym_erase_statement_token1] = ACTIONS(8378), + [aux_sym_open_statement_token1] = ACTIONS(8378), + [aux_sym_file_mode_token2] = ACTIONS(8378), + [aux_sym_file_access_token2] = ACTIONS(8378), + [aux_sym_file_lock_token2] = ACTIONS(8378), + [aux_sym_print_statement_token1] = ACTIONS(8378), + [anon_sym_PLUS] = ACTIONS(8380), + [anon_sym_DASH] = ACTIONS(8378), + [anon_sym_QMARK] = ACTIONS(8380), + [aux_sym_close_statement_token1] = ACTIONS(8378), + [aux_sym_put_statement_token1] = ACTIONS(8378), + [aux_sym_unlock_statement_token1] = ACTIONS(8378), + [aux_sym_seek_statement_token1] = ACTIONS(8378), + [sym_reset_statement] = ACTIONS(8378), + [aux_sym_raise_event_statement_token1] = ACTIONS(8378), + [sym_stop_statement] = ACTIONS(8378), + [sym_beep_statement] = ACTIONS(8378), + [aux_sym_unload_statement_token1] = ACTIONS(8378), + [aux_sym_def_type_statement_token1] = ACTIONS(8378), + [aux_sym_def_type_statement_token2] = ACTIONS(8378), + [aux_sym_def_type_statement_token3] = ACTIONS(8378), + [aux_sym_def_type_statement_token4] = ACTIONS(8378), + [aux_sym_def_type_statement_token5] = ACTIONS(8378), + [aux_sym_def_type_statement_token6] = ACTIONS(8378), + [aux_sym_def_type_statement_token7] = ACTIONS(8378), + [aux_sym_def_type_statement_token8] = ACTIONS(8378), + [aux_sym_def_type_statement_token9] = ACTIONS(8378), + [aux_sym_def_type_statement_token10] = ACTIONS(8378), + [aux_sym_def_type_statement_token11] = ACTIONS(8378), + [aux_sym_def_type_statement_token12] = ACTIONS(8378), + [aux_sym_def_type_statement_token13] = ACTIONS(8378), + [aux_sym_def_type_statement_token14] = ACTIONS(8378), + [aux_sym_call_statement_token1] = ACTIONS(8378), + [sym__ambiguous_call_statement] = ACTIONS(8378), + [aux_sym_addressof_expression_token1] = ACTIONS(8378), + [aux_sym_type_of_expression_token1] = ACTIONS(8378), + [aux_sym_unary_expression_token1] = ACTIONS(8378), + [sym_string_literal] = ACTIONS(8380), + [sym_number_literal] = ACTIONS(8380), + [aux_sym_boolean_literal_token1] = ACTIONS(8378), + [aux_sym_boolean_literal_token2] = ACTIONS(8378), + [sym_nothing_literal] = ACTIONS(8378), + [sym_null_literal] = ACTIONS(8378), + [sym_empty_literal] = ACTIONS(8378), + [sym_date_literal] = ACTIONS(8380), + [anon_sym_POUND] = ACTIONS(8378), + }, + [STATE(5669)] = { + [sym_identifier] = ACTIONS(8853), + [sym_newline] = ACTIONS(8855), + [anon_sym_COLON] = ACTIONS(8855), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8853), + [aux_sym_frm_property_statement_token1] = ACTIONS(8853), + [anon_sym_DOT] = ACTIONS(8853), + [anon_sym_BANG] = ACTIONS(8855), + [aux_sym__attribute_identifier_token1] = ACTIONS(8853), + [aux_sym_option_statement_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8853), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8853), + [aux_sym_preprocessor_const_token1] = ACTIONS(8853), + [sym_static_modifier] = ACTIONS(8853), + [sym__dim_keyword] = ACTIONS(8853), + [sym__redim_keyword] = ACTIONS(8853), + [aux_sym_get_accessor_token1] = ACTIONS(8853), + [aux_sym_set_accessor_token1] = ACTIONS(8853), + [aux_sym_const_declaration_token1] = ACTIONS(8853), + [anon_sym_LPAREN] = ACTIONS(8855), + [aux_sym_as_type_clause_token2] = ACTIONS(8853), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8853), + [aux_sym_visibility_token1] = ACTIONS(8853), + [aux_sym_visibility_token2] = ACTIONS(8853), + [aux_sym_elseif_fragment_token1] = ACTIONS(8853), + [aux_sym_else_fragment_token1] = ACTIONS(8853), + [aux_sym_select_statement_token1] = ACTIONS(8853), + [aux_sym__for_header_token1] = ACTIONS(8853), + [aux_sym_do_statement_token1] = ACTIONS(8853), + [aux_sym_do_condition_token1] = ACTIONS(8853), + [aux_sym_with_statement_token1] = ACTIONS(8853), + [aux_sym_exit_statement_token1] = ACTIONS(8853), + [sym_end_statement] = ACTIONS(8855), + [aux_sym_on_goto_statement_token1] = ACTIONS(8853), + [aux_sym_on_goto_statement_token2] = ACTIONS(8853), + [aux_sym_on_error_statement_token2] = ACTIONS(8853), + [sym__ambiguous_redim_statement] = ACTIONS(8855), + [aux_sym_erase_statement_token1] = ACTIONS(8853), + [aux_sym_open_statement_token1] = ACTIONS(8853), + [aux_sym_file_mode_token2] = ACTIONS(8853), + [aux_sym_file_access_token2] = ACTIONS(8853), + [aux_sym_file_lock_token2] = ACTIONS(8853), + [aux_sym_print_statement_token1] = ACTIONS(8853), + [anon_sym_PLUS] = ACTIONS(8855), + [anon_sym_DASH] = ACTIONS(8853), + [anon_sym_QMARK] = ACTIONS(8855), + [aux_sym_close_statement_token1] = ACTIONS(8853), + [aux_sym_put_statement_token1] = ACTIONS(8853), + [aux_sym_unlock_statement_token1] = ACTIONS(8853), + [aux_sym_seek_statement_token1] = ACTIONS(8853), + [sym_reset_statement] = ACTIONS(8853), + [aux_sym_raise_event_statement_token1] = ACTIONS(8853), + [sym_stop_statement] = ACTIONS(8853), + [sym_beep_statement] = ACTIONS(8853), + [aux_sym_unload_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token2] = ACTIONS(8853), + [aux_sym_def_type_statement_token3] = ACTIONS(8853), + [aux_sym_def_type_statement_token4] = ACTIONS(8853), + [aux_sym_def_type_statement_token5] = ACTIONS(8853), + [aux_sym_def_type_statement_token6] = ACTIONS(8853), + [aux_sym_def_type_statement_token7] = ACTIONS(8853), + [aux_sym_def_type_statement_token8] = ACTIONS(8853), + [aux_sym_def_type_statement_token9] = ACTIONS(8853), + [aux_sym_def_type_statement_token10] = ACTIONS(8853), + [aux_sym_def_type_statement_token11] = ACTIONS(8853), + [aux_sym_def_type_statement_token12] = ACTIONS(8853), + [aux_sym_def_type_statement_token13] = ACTIONS(8853), + [aux_sym_def_type_statement_token14] = ACTIONS(8853), + [aux_sym_call_statement_token1] = ACTIONS(8853), + [sym__ambiguous_call_statement] = ACTIONS(8853), + [aux_sym_addressof_expression_token1] = ACTIONS(8853), + [aux_sym_type_of_expression_token1] = ACTIONS(8853), + [aux_sym_unary_expression_token1] = ACTIONS(8853), + [sym_string_literal] = ACTIONS(8855), + [sym_number_literal] = ACTIONS(8855), + [aux_sym_boolean_literal_token1] = ACTIONS(8853), + [aux_sym_boolean_literal_token2] = ACTIONS(8853), + [sym_nothing_literal] = ACTIONS(8853), + [sym_null_literal] = ACTIONS(8853), + [sym_empty_literal] = ACTIONS(8853), + [sym_date_literal] = ACTIONS(8855), + [anon_sym_POUND] = ACTIONS(8853), + }, + [STATE(5670)] = { + [sym_identifier] = ACTIONS(8857), + [sym_newline] = ACTIONS(8859), + [anon_sym_COLON] = ACTIONS(8859), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8857), + [aux_sym_frm_property_statement_token1] = ACTIONS(8857), + [anon_sym_DOT] = ACTIONS(8857), + [anon_sym_BANG] = ACTIONS(8859), + [aux_sym__attribute_identifier_token1] = ACTIONS(8857), + [aux_sym_option_statement_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8857), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8857), + [aux_sym_preprocessor_const_token1] = ACTIONS(8857), + [sym_static_modifier] = ACTIONS(8857), + [sym__dim_keyword] = ACTIONS(8857), + [sym__redim_keyword] = ACTIONS(8857), + [aux_sym_get_accessor_token1] = ACTIONS(8857), + [aux_sym_set_accessor_token1] = ACTIONS(8857), + [aux_sym_const_declaration_token1] = ACTIONS(8857), + [anon_sym_LPAREN] = ACTIONS(8859), + [aux_sym_as_type_clause_token2] = ACTIONS(8857), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8857), + [aux_sym_visibility_token1] = ACTIONS(8857), + [aux_sym_visibility_token2] = ACTIONS(8857), + [aux_sym_elseif_fragment_token1] = ACTIONS(8857), + [aux_sym_else_fragment_token1] = ACTIONS(8857), + [aux_sym_select_statement_token1] = ACTIONS(8857), + [aux_sym__for_header_token1] = ACTIONS(8857), + [aux_sym_do_statement_token1] = ACTIONS(8857), + [aux_sym_do_condition_token1] = ACTIONS(8857), + [aux_sym_with_statement_token1] = ACTIONS(8857), + [aux_sym_exit_statement_token1] = ACTIONS(8857), + [sym_end_statement] = ACTIONS(8859), + [aux_sym_on_goto_statement_token1] = ACTIONS(8857), + [aux_sym_on_goto_statement_token2] = ACTIONS(8857), + [aux_sym_on_error_statement_token2] = ACTIONS(8857), + [sym__ambiguous_redim_statement] = ACTIONS(8859), + [aux_sym_erase_statement_token1] = ACTIONS(8857), + [aux_sym_open_statement_token1] = ACTIONS(8857), + [aux_sym_file_mode_token2] = ACTIONS(8857), + [aux_sym_file_access_token2] = ACTIONS(8857), + [aux_sym_file_lock_token2] = ACTIONS(8857), + [aux_sym_print_statement_token1] = ACTIONS(8857), + [anon_sym_PLUS] = ACTIONS(8859), + [anon_sym_DASH] = ACTIONS(8857), + [anon_sym_QMARK] = ACTIONS(8859), + [aux_sym_close_statement_token1] = ACTIONS(8857), + [aux_sym_put_statement_token1] = ACTIONS(8857), + [aux_sym_unlock_statement_token1] = ACTIONS(8857), + [aux_sym_seek_statement_token1] = ACTIONS(8857), + [sym_reset_statement] = ACTIONS(8857), + [aux_sym_raise_event_statement_token1] = ACTIONS(8857), + [sym_stop_statement] = ACTIONS(8857), + [sym_beep_statement] = ACTIONS(8857), + [aux_sym_unload_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token2] = ACTIONS(8857), + [aux_sym_def_type_statement_token3] = ACTIONS(8857), + [aux_sym_def_type_statement_token4] = ACTIONS(8857), + [aux_sym_def_type_statement_token5] = ACTIONS(8857), + [aux_sym_def_type_statement_token6] = ACTIONS(8857), + [aux_sym_def_type_statement_token7] = ACTIONS(8857), + [aux_sym_def_type_statement_token8] = ACTIONS(8857), + [aux_sym_def_type_statement_token9] = ACTIONS(8857), + [aux_sym_def_type_statement_token10] = ACTIONS(8857), + [aux_sym_def_type_statement_token11] = ACTIONS(8857), + [aux_sym_def_type_statement_token12] = ACTIONS(8857), + [aux_sym_def_type_statement_token13] = ACTIONS(8857), + [aux_sym_def_type_statement_token14] = ACTIONS(8857), + [aux_sym_call_statement_token1] = ACTIONS(8857), + [sym__ambiguous_call_statement] = ACTIONS(8857), + [aux_sym_addressof_expression_token1] = ACTIONS(8857), + [aux_sym_type_of_expression_token1] = ACTIONS(8857), + [aux_sym_unary_expression_token1] = ACTIONS(8857), + [sym_string_literal] = ACTIONS(8859), + [sym_number_literal] = ACTIONS(8859), + [aux_sym_boolean_literal_token1] = ACTIONS(8857), + [aux_sym_boolean_literal_token2] = ACTIONS(8857), + [sym_nothing_literal] = ACTIONS(8857), + [sym_null_literal] = ACTIONS(8857), + [sym_empty_literal] = ACTIONS(8857), + [sym_date_literal] = ACTIONS(8859), + [anon_sym_POUND] = ACTIONS(8857), + }, + [STATE(5671)] = { + [sym_identifier] = ACTIONS(8861), + [sym_newline] = ACTIONS(8863), + [anon_sym_COLON] = ACTIONS(8863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8861), + [aux_sym_frm_property_statement_token1] = ACTIONS(8861), + [anon_sym_DOT] = ACTIONS(8861), + [anon_sym_BANG] = ACTIONS(8863), + [aux_sym__attribute_identifier_token1] = ACTIONS(8861), + [aux_sym_option_statement_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8861), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8861), + [aux_sym_preprocessor_const_token1] = ACTIONS(8861), + [sym_static_modifier] = ACTIONS(8861), + [sym__dim_keyword] = ACTIONS(8861), + [sym__redim_keyword] = ACTIONS(8861), + [aux_sym_get_accessor_token1] = ACTIONS(8861), + [aux_sym_set_accessor_token1] = ACTIONS(8861), + [aux_sym_const_declaration_token1] = ACTIONS(8861), + [anon_sym_LPAREN] = ACTIONS(8863), + [aux_sym_as_type_clause_token2] = ACTIONS(8861), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8861), + [aux_sym_visibility_token1] = ACTIONS(8861), + [aux_sym_visibility_token2] = ACTIONS(8861), + [aux_sym_elseif_fragment_token1] = ACTIONS(8861), + [aux_sym_else_fragment_token1] = ACTIONS(8861), + [aux_sym_select_statement_token1] = ACTIONS(8861), + [aux_sym__for_header_token1] = ACTIONS(8861), + [aux_sym_do_statement_token1] = ACTIONS(8861), + [aux_sym_do_condition_token1] = ACTIONS(8861), + [aux_sym_with_statement_token1] = ACTIONS(8861), + [aux_sym_exit_statement_token1] = ACTIONS(8861), + [sym_end_statement] = ACTIONS(8863), + [aux_sym_on_goto_statement_token1] = ACTIONS(8861), + [aux_sym_on_goto_statement_token2] = ACTIONS(8861), + [aux_sym_on_error_statement_token2] = ACTIONS(8861), + [sym__ambiguous_redim_statement] = ACTIONS(8863), + [aux_sym_erase_statement_token1] = ACTIONS(8861), + [aux_sym_open_statement_token1] = ACTIONS(8861), + [aux_sym_file_mode_token2] = ACTIONS(8861), + [aux_sym_file_access_token2] = ACTIONS(8861), + [aux_sym_file_lock_token2] = ACTIONS(8861), + [aux_sym_print_statement_token1] = ACTIONS(8861), + [anon_sym_PLUS] = ACTIONS(8863), + [anon_sym_DASH] = ACTIONS(8861), + [anon_sym_QMARK] = ACTIONS(8863), + [aux_sym_close_statement_token1] = ACTIONS(8861), + [aux_sym_put_statement_token1] = ACTIONS(8861), + [aux_sym_unlock_statement_token1] = ACTIONS(8861), + [aux_sym_seek_statement_token1] = ACTIONS(8861), + [sym_reset_statement] = ACTIONS(8861), + [aux_sym_raise_event_statement_token1] = ACTIONS(8861), + [sym_stop_statement] = ACTIONS(8861), + [sym_beep_statement] = ACTIONS(8861), + [aux_sym_unload_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token2] = ACTIONS(8861), + [aux_sym_def_type_statement_token3] = ACTIONS(8861), + [aux_sym_def_type_statement_token4] = ACTIONS(8861), + [aux_sym_def_type_statement_token5] = ACTIONS(8861), + [aux_sym_def_type_statement_token6] = ACTIONS(8861), + [aux_sym_def_type_statement_token7] = ACTIONS(8861), + [aux_sym_def_type_statement_token8] = ACTIONS(8861), + [aux_sym_def_type_statement_token9] = ACTIONS(8861), + [aux_sym_def_type_statement_token10] = ACTIONS(8861), + [aux_sym_def_type_statement_token11] = ACTIONS(8861), + [aux_sym_def_type_statement_token12] = ACTIONS(8861), + [aux_sym_def_type_statement_token13] = ACTIONS(8861), + [aux_sym_def_type_statement_token14] = ACTIONS(8861), + [aux_sym_call_statement_token1] = ACTIONS(8861), + [sym__ambiguous_call_statement] = ACTIONS(8861), + [aux_sym_addressof_expression_token1] = ACTIONS(8861), + [aux_sym_type_of_expression_token1] = ACTIONS(8861), + [aux_sym_unary_expression_token1] = ACTIONS(8861), + [sym_string_literal] = ACTIONS(8863), + [sym_number_literal] = ACTIONS(8863), + [aux_sym_boolean_literal_token1] = ACTIONS(8861), + [aux_sym_boolean_literal_token2] = ACTIONS(8861), + [sym_nothing_literal] = ACTIONS(8861), + [sym_null_literal] = ACTIONS(8861), + [sym_empty_literal] = ACTIONS(8861), + [sym_date_literal] = ACTIONS(8863), + [anon_sym_POUND] = ACTIONS(8861), + }, + [STATE(5672)] = { + [sym_identifier] = ACTIONS(8279), + [sym_newline] = ACTIONS(8281), + [anon_sym_COLON] = ACTIONS(8281), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8279), + [aux_sym_frm_property_statement_token1] = ACTIONS(8279), + [anon_sym_DOT] = ACTIONS(8279), + [anon_sym_BANG] = ACTIONS(8281), + [aux_sym__attribute_identifier_token1] = ACTIONS(8279), + [aux_sym_option_statement_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8279), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8279), + [aux_sym_preprocessor_const_token1] = ACTIONS(8279), + [sym_static_modifier] = ACTIONS(8279), + [sym__dim_keyword] = ACTIONS(8279), + [sym__redim_keyword] = ACTIONS(8279), + [aux_sym_get_accessor_token1] = ACTIONS(8279), + [aux_sym_set_accessor_token1] = ACTIONS(8279), + [aux_sym_const_declaration_token1] = ACTIONS(8279), + [anon_sym_LPAREN] = ACTIONS(8281), + [aux_sym_as_type_clause_token2] = ACTIONS(8279), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8279), + [aux_sym_visibility_token1] = ACTIONS(8279), + [aux_sym_visibility_token2] = ACTIONS(8279), + [aux_sym_elseif_fragment_token1] = ACTIONS(8279), + [aux_sym_else_fragment_token1] = ACTIONS(8279), + [aux_sym_select_statement_token1] = ACTIONS(8279), + [aux_sym__for_header_token1] = ACTIONS(8279), + [aux_sym_do_statement_token1] = ACTIONS(8279), + [aux_sym_do_condition_token1] = ACTIONS(8279), + [aux_sym_with_statement_token1] = ACTIONS(8279), + [aux_sym_exit_statement_token1] = ACTIONS(8279), + [sym_end_statement] = ACTIONS(8281), + [aux_sym_on_goto_statement_token1] = ACTIONS(8279), + [aux_sym_on_goto_statement_token2] = ACTIONS(8279), + [aux_sym_on_error_statement_token2] = ACTIONS(8279), + [sym__ambiguous_redim_statement] = ACTIONS(8281), + [aux_sym_erase_statement_token1] = ACTIONS(8279), + [aux_sym_open_statement_token1] = ACTIONS(8279), + [aux_sym_file_mode_token2] = ACTIONS(8279), + [aux_sym_file_access_token2] = ACTIONS(8279), + [aux_sym_file_lock_token2] = ACTIONS(8279), + [aux_sym_print_statement_token1] = ACTIONS(8279), + [anon_sym_PLUS] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8279), + [anon_sym_QMARK] = ACTIONS(8281), + [aux_sym_close_statement_token1] = ACTIONS(8279), + [aux_sym_put_statement_token1] = ACTIONS(8279), + [aux_sym_unlock_statement_token1] = ACTIONS(8279), + [aux_sym_seek_statement_token1] = ACTIONS(8279), + [sym_reset_statement] = ACTIONS(8279), + [aux_sym_raise_event_statement_token1] = ACTIONS(8279), + [sym_stop_statement] = ACTIONS(8279), + [sym_beep_statement] = ACTIONS(8279), + [aux_sym_unload_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token2] = ACTIONS(8279), + [aux_sym_def_type_statement_token3] = ACTIONS(8279), + [aux_sym_def_type_statement_token4] = ACTIONS(8279), + [aux_sym_def_type_statement_token5] = ACTIONS(8279), + [aux_sym_def_type_statement_token6] = ACTIONS(8279), + [aux_sym_def_type_statement_token7] = ACTIONS(8279), + [aux_sym_def_type_statement_token8] = ACTIONS(8279), + [aux_sym_def_type_statement_token9] = ACTIONS(8279), + [aux_sym_def_type_statement_token10] = ACTIONS(8279), + [aux_sym_def_type_statement_token11] = ACTIONS(8279), + [aux_sym_def_type_statement_token12] = ACTIONS(8279), + [aux_sym_def_type_statement_token13] = ACTIONS(8279), + [aux_sym_def_type_statement_token14] = ACTIONS(8279), + [aux_sym_call_statement_token1] = ACTIONS(8279), + [sym__ambiguous_call_statement] = ACTIONS(8279), + [aux_sym_addressof_expression_token1] = ACTIONS(8279), + [aux_sym_type_of_expression_token1] = ACTIONS(8279), + [aux_sym_unary_expression_token1] = ACTIONS(8279), + [sym_string_literal] = ACTIONS(8281), + [sym_number_literal] = ACTIONS(8281), + [aux_sym_boolean_literal_token1] = ACTIONS(8279), + [aux_sym_boolean_literal_token2] = ACTIONS(8279), + [sym_nothing_literal] = ACTIONS(8279), + [sym_null_literal] = ACTIONS(8279), + [sym_empty_literal] = ACTIONS(8279), + [sym_date_literal] = ACTIONS(8281), + [anon_sym_POUND] = ACTIONS(8279), + }, + [STATE(5673)] = { + [sym_identifier] = ACTIONS(8283), + [sym_newline] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8283), + [aux_sym_frm_property_statement_token1] = ACTIONS(8283), + [anon_sym_DOT] = ACTIONS(8283), + [anon_sym_BANG] = ACTIONS(8285), + [aux_sym__attribute_identifier_token1] = ACTIONS(8283), + [aux_sym_option_statement_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8283), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8283), + [aux_sym_preprocessor_const_token1] = ACTIONS(8283), + [sym_static_modifier] = ACTIONS(8283), + [sym__dim_keyword] = ACTIONS(8283), + [sym__redim_keyword] = ACTIONS(8283), + [aux_sym_get_accessor_token1] = ACTIONS(8283), + [aux_sym_set_accessor_token1] = ACTIONS(8283), + [aux_sym_const_declaration_token1] = ACTIONS(8283), + [anon_sym_LPAREN] = ACTIONS(8285), + [aux_sym_as_type_clause_token2] = ACTIONS(8283), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8283), + [aux_sym_visibility_token1] = ACTIONS(8283), + [aux_sym_visibility_token2] = ACTIONS(8283), + [aux_sym_elseif_fragment_token1] = ACTIONS(8283), + [aux_sym_else_fragment_token1] = ACTIONS(8283), + [aux_sym_select_statement_token1] = ACTIONS(8283), + [aux_sym__for_header_token1] = ACTIONS(8283), + [aux_sym_do_statement_token1] = ACTIONS(8283), + [aux_sym_do_condition_token1] = ACTIONS(8283), + [aux_sym_with_statement_token1] = ACTIONS(8283), + [aux_sym_exit_statement_token1] = ACTIONS(8283), + [sym_end_statement] = ACTIONS(8285), + [aux_sym_on_goto_statement_token1] = ACTIONS(8283), + [aux_sym_on_goto_statement_token2] = ACTIONS(8283), + [aux_sym_on_error_statement_token2] = ACTIONS(8283), + [sym__ambiguous_redim_statement] = ACTIONS(8285), + [aux_sym_erase_statement_token1] = ACTIONS(8283), + [aux_sym_open_statement_token1] = ACTIONS(8283), + [aux_sym_file_mode_token2] = ACTIONS(8283), + [aux_sym_file_access_token2] = ACTIONS(8283), + [aux_sym_file_lock_token2] = ACTIONS(8283), + [aux_sym_print_statement_token1] = ACTIONS(8283), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_DASH] = ACTIONS(8283), + [anon_sym_QMARK] = ACTIONS(8285), + [aux_sym_close_statement_token1] = ACTIONS(8283), + [aux_sym_put_statement_token1] = ACTIONS(8283), + [aux_sym_unlock_statement_token1] = ACTIONS(8283), + [aux_sym_seek_statement_token1] = ACTIONS(8283), + [sym_reset_statement] = ACTIONS(8283), + [aux_sym_raise_event_statement_token1] = ACTIONS(8283), + [sym_stop_statement] = ACTIONS(8283), + [sym_beep_statement] = ACTIONS(8283), + [aux_sym_unload_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token2] = ACTIONS(8283), + [aux_sym_def_type_statement_token3] = ACTIONS(8283), + [aux_sym_def_type_statement_token4] = ACTIONS(8283), + [aux_sym_def_type_statement_token5] = ACTIONS(8283), + [aux_sym_def_type_statement_token6] = ACTIONS(8283), + [aux_sym_def_type_statement_token7] = ACTIONS(8283), + [aux_sym_def_type_statement_token8] = ACTIONS(8283), + [aux_sym_def_type_statement_token9] = ACTIONS(8283), + [aux_sym_def_type_statement_token10] = ACTIONS(8283), + [aux_sym_def_type_statement_token11] = ACTIONS(8283), + [aux_sym_def_type_statement_token12] = ACTIONS(8283), + [aux_sym_def_type_statement_token13] = ACTIONS(8283), + [aux_sym_def_type_statement_token14] = ACTIONS(8283), + [aux_sym_call_statement_token1] = ACTIONS(8283), + [sym__ambiguous_call_statement] = ACTIONS(8283), + [aux_sym_addressof_expression_token1] = ACTIONS(8283), + [aux_sym_type_of_expression_token1] = ACTIONS(8283), + [aux_sym_unary_expression_token1] = ACTIONS(8283), + [sym_string_literal] = ACTIONS(8285), + [sym_number_literal] = ACTIONS(8285), + [aux_sym_boolean_literal_token1] = ACTIONS(8283), + [aux_sym_boolean_literal_token2] = ACTIONS(8283), + [sym_nothing_literal] = ACTIONS(8283), + [sym_null_literal] = ACTIONS(8283), + [sym_empty_literal] = ACTIONS(8283), + [sym_date_literal] = ACTIONS(8285), + [anon_sym_POUND] = ACTIONS(8283), + }, + [STATE(5674)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5674), + [sym_identifier] = ACTIONS(8386), + [sym_newline] = ACTIONS(8388), + [anon_sym_COLON] = ACTIONS(8388), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8386), + [aux_sym_frm_property_statement_token1] = ACTIONS(8386), + [anon_sym_DOT] = ACTIONS(8386), + [anon_sym_BANG] = ACTIONS(8388), + [aux_sym__attribute_identifier_token1] = ACTIONS(8386), + [aux_sym_option_statement_token3] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8386), + [aux_sym_preprocessor_const_token1] = ACTIONS(8386), + [sym_static_modifier] = ACTIONS(8386), + [sym__dim_keyword] = ACTIONS(8386), + [sym__redim_keyword] = ACTIONS(8386), + [aux_sym_get_accessor_token1] = ACTIONS(8386), + [aux_sym_set_accessor_token1] = ACTIONS(8386), + [anon_sym_COMMA] = ACTIONS(10763), + [aux_sym_const_declaration_token1] = ACTIONS(8386), + [anon_sym_LPAREN] = ACTIONS(8388), + [aux_sym_as_type_clause_token2] = ACTIONS(8386), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8386), + [aux_sym_visibility_token1] = ACTIONS(8386), + [aux_sym_visibility_token2] = ACTIONS(8386), + [aux_sym_elseif_fragment_token1] = ACTIONS(8386), + [aux_sym_else_fragment_token1] = ACTIONS(8386), + [aux_sym_select_statement_token1] = ACTIONS(8386), + [aux_sym__for_header_token1] = ACTIONS(8386), + [aux_sym_do_statement_token1] = ACTIONS(8386), + [aux_sym_do_condition_token1] = ACTIONS(8386), + [aux_sym_while_statement_token1] = ACTIONS(8386), + [aux_sym_with_statement_token1] = ACTIONS(8386), + [aux_sym_exit_statement_token1] = ACTIONS(8386), + [sym_end_statement] = ACTIONS(8388), + [aux_sym_on_goto_statement_token1] = ACTIONS(8386), + [aux_sym_on_goto_statement_token2] = ACTIONS(8386), + [aux_sym_on_error_statement_token2] = ACTIONS(8386), + [sym__ambiguous_redim_statement] = ACTIONS(8388), + [aux_sym_erase_statement_token1] = ACTIONS(8386), + [aux_sym_open_statement_token1] = ACTIONS(8386), + [aux_sym_file_mode_token2] = ACTIONS(8386), + [aux_sym_file_access_token2] = ACTIONS(8386), + [aux_sym_file_lock_token2] = ACTIONS(8386), + [aux_sym_print_statement_token1] = ACTIONS(8386), + [anon_sym_PLUS] = ACTIONS(8388), + [anon_sym_DASH] = ACTIONS(8386), + [anon_sym_QMARK] = ACTIONS(8388), + [aux_sym_close_statement_token1] = ACTIONS(8386), + [aux_sym_put_statement_token1] = ACTIONS(8386), + [aux_sym_unlock_statement_token1] = ACTIONS(8386), + [aux_sym_seek_statement_token1] = ACTIONS(8386), + [sym_reset_statement] = ACTIONS(8386), + [aux_sym_raise_event_statement_token1] = ACTIONS(8386), + [sym_stop_statement] = ACTIONS(8386), + [sym_beep_statement] = ACTIONS(8386), + [aux_sym_unload_statement_token1] = ACTIONS(8386), + [aux_sym_def_type_statement_token1] = ACTIONS(8386), + [aux_sym_def_type_statement_token2] = ACTIONS(8386), + [aux_sym_def_type_statement_token3] = ACTIONS(8386), + [aux_sym_def_type_statement_token4] = ACTIONS(8386), + [aux_sym_def_type_statement_token5] = ACTIONS(8386), + [aux_sym_def_type_statement_token6] = ACTIONS(8386), + [aux_sym_def_type_statement_token7] = ACTIONS(8386), + [aux_sym_def_type_statement_token8] = ACTIONS(8386), + [aux_sym_def_type_statement_token9] = ACTIONS(8386), + [aux_sym_def_type_statement_token10] = ACTIONS(8386), + [aux_sym_def_type_statement_token11] = ACTIONS(8386), + [aux_sym_def_type_statement_token12] = ACTIONS(8386), + [aux_sym_def_type_statement_token13] = ACTIONS(8386), + [aux_sym_def_type_statement_token14] = ACTIONS(8386), + [aux_sym_call_statement_token1] = ACTIONS(8386), + [sym__ambiguous_call_statement] = ACTIONS(8386), + [aux_sym_addressof_expression_token1] = ACTIONS(8386), + [aux_sym_type_of_expression_token1] = ACTIONS(8386), + [aux_sym_unary_expression_token1] = ACTIONS(8386), + [sym_string_literal] = ACTIONS(8388), + [sym_number_literal] = ACTIONS(8388), + [aux_sym_boolean_literal_token1] = ACTIONS(8386), + [aux_sym_boolean_literal_token2] = ACTIONS(8386), + [sym_nothing_literal] = ACTIONS(8386), + [sym_null_literal] = ACTIONS(8386), + [sym_empty_literal] = ACTIONS(8386), + [sym_date_literal] = ACTIONS(8388), + [anon_sym_POUND] = ACTIONS(8386), + }, + [STATE(5675)] = { + [sym_identifier] = ACTIONS(9455), + [sym_newline] = ACTIONS(9457), + [anon_sym_COLON] = ACTIONS(9457), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9455), + [aux_sym_frm_property_statement_token1] = ACTIONS(9455), + [anon_sym_DOT] = ACTIONS(9455), + [anon_sym_BANG] = ACTIONS(9457), + [aux_sym__attribute_identifier_token1] = ACTIONS(9455), + [aux_sym_option_statement_token3] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9455), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9455), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9455), + [aux_sym_preprocessor_const_token1] = ACTIONS(9455), + [sym_static_modifier] = ACTIONS(9455), + [sym__dim_keyword] = ACTIONS(9455), + [sym__redim_keyword] = ACTIONS(9455), + [aux_sym_get_accessor_token1] = ACTIONS(9455), + [aux_sym_set_accessor_token1] = ACTIONS(9455), + [aux_sym_const_declaration_token1] = ACTIONS(9455), + [anon_sym_LPAREN] = ACTIONS(9457), + [aux_sym_as_type_clause_token2] = ACTIONS(9455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9455), + [aux_sym_visibility_token1] = ACTIONS(9455), + [aux_sym_visibility_token2] = ACTIONS(9455), + [aux_sym_elseif_fragment_token1] = ACTIONS(9455), + [aux_sym_else_fragment_token1] = ACTIONS(9455), + [aux_sym_select_statement_token1] = ACTIONS(9455), + [aux_sym__for_header_token1] = ACTIONS(9455), + [aux_sym_do_statement_token1] = ACTIONS(9455), + [aux_sym_do_condition_token1] = ACTIONS(9455), + [aux_sym_with_statement_token1] = ACTIONS(9455), + [aux_sym_exit_statement_token1] = ACTIONS(9455), + [sym_end_statement] = ACTIONS(9457), + [aux_sym_on_goto_statement_token1] = ACTIONS(9455), + [aux_sym_on_goto_statement_token2] = ACTIONS(9455), + [aux_sym_on_error_statement_token2] = ACTIONS(9455), + [sym__ambiguous_redim_statement] = ACTIONS(9457), + [aux_sym_erase_statement_token1] = ACTIONS(9455), + [aux_sym_open_statement_token1] = ACTIONS(9455), + [aux_sym_file_mode_token2] = ACTIONS(9455), + [aux_sym_file_access_token2] = ACTIONS(9455), + [aux_sym_file_lock_token2] = ACTIONS(9455), + [aux_sym_print_statement_token1] = ACTIONS(9455), + [anon_sym_PLUS] = ACTIONS(9457), + [anon_sym_DASH] = ACTIONS(9455), + [anon_sym_QMARK] = ACTIONS(9457), + [aux_sym_close_statement_token1] = ACTIONS(9455), + [aux_sym_put_statement_token1] = ACTIONS(9455), + [aux_sym_unlock_statement_token1] = ACTIONS(9455), + [aux_sym_seek_statement_token1] = ACTIONS(9455), + [sym_reset_statement] = ACTIONS(9455), + [aux_sym_raise_event_statement_token1] = ACTIONS(9455), + [sym_stop_statement] = ACTIONS(9455), + [sym_beep_statement] = ACTIONS(9455), + [aux_sym_unload_statement_token1] = ACTIONS(9455), + [aux_sym_def_type_statement_token1] = ACTIONS(9455), + [aux_sym_def_type_statement_token2] = ACTIONS(9455), + [aux_sym_def_type_statement_token3] = ACTIONS(9455), + [aux_sym_def_type_statement_token4] = ACTIONS(9455), + [aux_sym_def_type_statement_token5] = ACTIONS(9455), + [aux_sym_def_type_statement_token6] = ACTIONS(9455), + [aux_sym_def_type_statement_token7] = ACTIONS(9455), + [aux_sym_def_type_statement_token8] = ACTIONS(9455), + [aux_sym_def_type_statement_token9] = ACTIONS(9455), + [aux_sym_def_type_statement_token10] = ACTIONS(9455), + [aux_sym_def_type_statement_token11] = ACTIONS(9455), + [aux_sym_def_type_statement_token12] = ACTIONS(9455), + [aux_sym_def_type_statement_token13] = ACTIONS(9455), + [aux_sym_def_type_statement_token14] = ACTIONS(9455), + [aux_sym_call_statement_token1] = ACTIONS(9455), + [sym__ambiguous_call_statement] = ACTIONS(9455), + [aux_sym_addressof_expression_token1] = ACTIONS(9455), + [aux_sym_type_of_expression_token1] = ACTIONS(9455), + [aux_sym_unary_expression_token1] = ACTIONS(9455), + [sym_string_literal] = ACTIONS(9457), + [sym_number_literal] = ACTIONS(9457), + [aux_sym_boolean_literal_token1] = ACTIONS(9455), + [aux_sym_boolean_literal_token2] = ACTIONS(9455), + [sym_nothing_literal] = ACTIONS(9455), + [sym_null_literal] = ACTIONS(9455), + [sym_empty_literal] = ACTIONS(9455), + [sym_date_literal] = ACTIONS(9457), + [anon_sym_POUND] = ACTIONS(9455), + }, + [STATE(5676)] = { + [sym_argument_list] = STATE(10051), + [sym_identifier] = ACTIONS(8393), + [sym_newline] = ACTIONS(8395), + [anon_sym_COLON] = ACTIONS(8395), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8393), + [aux_sym_frm_property_statement_token1] = ACTIONS(8393), + [anon_sym_DOT] = ACTIONS(8393), + [anon_sym_BANG] = ACTIONS(8395), + [aux_sym__attribute_identifier_token1] = ACTIONS(8393), + [aux_sym_option_statement_token3] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8393), + [aux_sym_preprocessor_const_token1] = ACTIONS(8393), + [sym_static_modifier] = ACTIONS(8393), + [sym__dim_keyword] = ACTIONS(8393), + [sym__redim_keyword] = ACTIONS(8393), + [aux_sym_get_accessor_token1] = ACTIONS(8393), + [aux_sym_set_accessor_token1] = ACTIONS(8393), + [anon_sym_COMMA] = ACTIONS(8395), + [aux_sym_const_declaration_token1] = ACTIONS(8393), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(8393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8393), + [aux_sym_visibility_token1] = ACTIONS(8393), + [aux_sym_visibility_token2] = ACTIONS(8393), + [aux_sym_elseif_fragment_token1] = ACTIONS(8393), + [aux_sym_else_fragment_token1] = ACTIONS(8393), + [aux_sym_select_statement_token1] = ACTIONS(8393), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8393), + [aux_sym__for_header_token1] = ACTIONS(8393), + [aux_sym_do_statement_token1] = ACTIONS(8393), + [aux_sym_do_condition_token1] = ACTIONS(8393), + [aux_sym_with_statement_token1] = ACTIONS(8393), + [aux_sym_exit_statement_token1] = ACTIONS(8393), + [sym_end_statement] = ACTIONS(8395), + [aux_sym_on_goto_statement_token1] = ACTIONS(8393), + [aux_sym_on_goto_statement_token2] = ACTIONS(8393), + [aux_sym_on_error_statement_token2] = ACTIONS(8393), + [sym__ambiguous_redim_statement] = ACTIONS(8395), + [aux_sym_erase_statement_token1] = ACTIONS(8393), + [aux_sym_open_statement_token1] = ACTIONS(8393), + [aux_sym_file_mode_token2] = ACTIONS(8393), + [aux_sym_file_access_token2] = ACTIONS(8393), + [aux_sym_file_lock_token2] = ACTIONS(8393), + [aux_sym_print_statement_token1] = ACTIONS(8393), + [anon_sym_PLUS] = ACTIONS(8395), + [anon_sym_DASH] = ACTIONS(8393), + [anon_sym_QMARK] = ACTIONS(8395), + [aux_sym_close_statement_token1] = ACTIONS(8393), + [aux_sym_put_statement_token1] = ACTIONS(8393), + [aux_sym_unlock_statement_token1] = ACTIONS(8393), + [aux_sym_seek_statement_token1] = ACTIONS(8393), + [sym_reset_statement] = ACTIONS(8393), + [aux_sym_raise_event_statement_token1] = ACTIONS(8393), + [sym_stop_statement] = ACTIONS(8393), + [sym_beep_statement] = ACTIONS(8393), + [aux_sym_unload_statement_token1] = ACTIONS(8393), + [aux_sym_def_type_statement_token1] = ACTIONS(8393), + [aux_sym_def_type_statement_token2] = ACTIONS(8393), + [aux_sym_def_type_statement_token3] = ACTIONS(8393), + [aux_sym_def_type_statement_token4] = ACTIONS(8393), + [aux_sym_def_type_statement_token5] = ACTIONS(8393), + [aux_sym_def_type_statement_token6] = ACTIONS(8393), + [aux_sym_def_type_statement_token7] = ACTIONS(8393), + [aux_sym_def_type_statement_token8] = ACTIONS(8393), + [aux_sym_def_type_statement_token9] = ACTIONS(8393), + [aux_sym_def_type_statement_token10] = ACTIONS(8393), + [aux_sym_def_type_statement_token11] = ACTIONS(8393), + [aux_sym_def_type_statement_token12] = ACTIONS(8393), + [aux_sym_def_type_statement_token13] = ACTIONS(8393), + [aux_sym_def_type_statement_token14] = ACTIONS(8393), + [aux_sym_call_statement_token1] = ACTIONS(8393), + [sym__ambiguous_call_statement] = ACTIONS(8393), + [aux_sym_addressof_expression_token1] = ACTIONS(8393), + [aux_sym_type_of_expression_token1] = ACTIONS(8393), + [aux_sym_unary_expression_token1] = ACTIONS(8393), + [sym_string_literal] = ACTIONS(8395), + [sym_number_literal] = ACTIONS(8395), + [aux_sym_boolean_literal_token1] = ACTIONS(8393), + [aux_sym_boolean_literal_token2] = ACTIONS(8393), + [sym_nothing_literal] = ACTIONS(8393), + [sym_null_literal] = ACTIONS(8393), + [sym_empty_literal] = ACTIONS(8393), + [sym_date_literal] = ACTIONS(8395), + [anon_sym_POUND] = ACTIONS(8393), + }, + [STATE(5677)] = { + [aux_sym_input_statement_repeat1] = STATE(5677), + [sym_identifier] = ACTIONS(8401), + [sym_newline] = ACTIONS(8403), + [anon_sym_COLON] = ACTIONS(8403), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8401), + [aux_sym_frm_property_statement_token1] = ACTIONS(8401), + [anon_sym_DOT] = ACTIONS(8401), + [anon_sym_BANG] = ACTIONS(8403), + [aux_sym__attribute_identifier_token1] = ACTIONS(8401), + [aux_sym_option_statement_token3] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8401), + [aux_sym_preprocessor_const_token1] = ACTIONS(8401), + [sym_static_modifier] = ACTIONS(8401), + [sym__dim_keyword] = ACTIONS(8401), + [sym__redim_keyword] = ACTIONS(8401), + [aux_sym_get_accessor_token1] = ACTIONS(8401), + [aux_sym_set_accessor_token1] = ACTIONS(8401), + [anon_sym_COMMA] = ACTIONS(10766), + [aux_sym_const_declaration_token1] = ACTIONS(8401), + [anon_sym_LPAREN] = ACTIONS(8403), + [aux_sym_as_type_clause_token2] = ACTIONS(8401), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8401), + [aux_sym_visibility_token1] = ACTIONS(8401), + [aux_sym_visibility_token2] = ACTIONS(8401), + [aux_sym_elseif_fragment_token1] = ACTIONS(8401), + [aux_sym_else_fragment_token1] = ACTIONS(8401), + [aux_sym_select_statement_token1] = ACTIONS(8401), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8401), + [aux_sym__for_header_token1] = ACTIONS(8401), + [aux_sym_do_statement_token1] = ACTIONS(8401), + [aux_sym_do_condition_token1] = ACTIONS(8401), + [aux_sym_with_statement_token1] = ACTIONS(8401), + [aux_sym_exit_statement_token1] = ACTIONS(8401), + [sym_end_statement] = ACTIONS(8403), + [aux_sym_on_goto_statement_token1] = ACTIONS(8401), + [aux_sym_on_goto_statement_token2] = ACTIONS(8401), + [aux_sym_on_error_statement_token2] = ACTIONS(8401), + [sym__ambiguous_redim_statement] = ACTIONS(8403), + [aux_sym_erase_statement_token1] = ACTIONS(8401), + [aux_sym_open_statement_token1] = ACTIONS(8401), + [aux_sym_file_mode_token2] = ACTIONS(8401), + [aux_sym_file_access_token2] = ACTIONS(8401), + [aux_sym_file_lock_token2] = ACTIONS(8401), + [aux_sym_print_statement_token1] = ACTIONS(8401), + [anon_sym_PLUS] = ACTIONS(8403), + [anon_sym_DASH] = ACTIONS(8401), + [anon_sym_QMARK] = ACTIONS(8403), + [aux_sym_close_statement_token1] = ACTIONS(8401), + [aux_sym_put_statement_token1] = ACTIONS(8401), + [aux_sym_unlock_statement_token1] = ACTIONS(8401), + [aux_sym_seek_statement_token1] = ACTIONS(8401), + [sym_reset_statement] = ACTIONS(8401), + [aux_sym_raise_event_statement_token1] = ACTIONS(8401), + [sym_stop_statement] = ACTIONS(8401), + [sym_beep_statement] = ACTIONS(8401), + [aux_sym_unload_statement_token1] = ACTIONS(8401), + [aux_sym_def_type_statement_token1] = ACTIONS(8401), + [aux_sym_def_type_statement_token2] = ACTIONS(8401), + [aux_sym_def_type_statement_token3] = ACTIONS(8401), + [aux_sym_def_type_statement_token4] = ACTIONS(8401), + [aux_sym_def_type_statement_token5] = ACTIONS(8401), + [aux_sym_def_type_statement_token6] = ACTIONS(8401), + [aux_sym_def_type_statement_token7] = ACTIONS(8401), + [aux_sym_def_type_statement_token8] = ACTIONS(8401), + [aux_sym_def_type_statement_token9] = ACTIONS(8401), + [aux_sym_def_type_statement_token10] = ACTIONS(8401), + [aux_sym_def_type_statement_token11] = ACTIONS(8401), + [aux_sym_def_type_statement_token12] = ACTIONS(8401), + [aux_sym_def_type_statement_token13] = ACTIONS(8401), + [aux_sym_def_type_statement_token14] = ACTIONS(8401), + [aux_sym_call_statement_token1] = ACTIONS(8401), + [sym__ambiguous_call_statement] = ACTIONS(8401), + [aux_sym_addressof_expression_token1] = ACTIONS(8401), + [aux_sym_type_of_expression_token1] = ACTIONS(8401), + [aux_sym_unary_expression_token1] = ACTIONS(8401), + [sym_string_literal] = ACTIONS(8403), + [sym_number_literal] = ACTIONS(8403), + [aux_sym_boolean_literal_token1] = ACTIONS(8401), + [aux_sym_boolean_literal_token2] = ACTIONS(8401), + [sym_nothing_literal] = ACTIONS(8401), + [sym_null_literal] = ACTIONS(8401), + [sym_empty_literal] = ACTIONS(8401), + [sym_date_literal] = ACTIONS(8403), + [anon_sym_POUND] = ACTIONS(8401), + }, + [STATE(5678)] = { + [sym_identifier] = ACTIONS(9122), + [sym_newline] = ACTIONS(9124), + [anon_sym_COLON] = ACTIONS(9124), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9122), + [aux_sym_frm_property_statement_token1] = ACTIONS(9122), + [anon_sym_DOT] = ACTIONS(9122), + [anon_sym_BANG] = ACTIONS(9124), + [aux_sym__attribute_identifier_token1] = ACTIONS(9122), + [aux_sym_option_statement_token3] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9122), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9122), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9122), + [aux_sym_preprocessor_const_token1] = ACTIONS(9122), + [sym_static_modifier] = ACTIONS(9122), + [sym__dim_keyword] = ACTIONS(9122), + [sym__redim_keyword] = ACTIONS(9122), + [aux_sym_get_accessor_token1] = ACTIONS(9122), + [aux_sym_set_accessor_token1] = ACTIONS(9122), + [aux_sym_const_declaration_token1] = ACTIONS(9122), + [anon_sym_LPAREN] = ACTIONS(9124), + [aux_sym_as_type_clause_token2] = ACTIONS(9122), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9122), + [aux_sym_visibility_token1] = ACTIONS(9122), + [aux_sym_visibility_token2] = ACTIONS(9122), + [aux_sym_elseif_fragment_token1] = ACTIONS(9122), + [aux_sym_else_fragment_token1] = ACTIONS(9122), + [aux_sym_select_statement_token1] = ACTIONS(9122), + [aux_sym__for_header_token1] = ACTIONS(9122), + [aux_sym_do_statement_token1] = ACTIONS(9122), + [aux_sym_do_condition_token1] = ACTIONS(9122), + [aux_sym_with_statement_token1] = ACTIONS(9122), + [aux_sym_exit_statement_token1] = ACTIONS(9122), + [sym_end_statement] = ACTIONS(9124), + [aux_sym_on_goto_statement_token1] = ACTIONS(9122), + [aux_sym_on_goto_statement_token2] = ACTIONS(9122), + [aux_sym_on_error_statement_token2] = ACTIONS(9122), + [sym__ambiguous_redim_statement] = ACTIONS(9124), + [aux_sym_erase_statement_token1] = ACTIONS(9122), + [aux_sym_open_statement_token1] = ACTIONS(9122), + [aux_sym_file_mode_token2] = ACTIONS(9122), + [aux_sym_file_access_token2] = ACTIONS(9122), + [aux_sym_file_lock_token2] = ACTIONS(9122), + [aux_sym_print_statement_token1] = ACTIONS(9122), + [anon_sym_PLUS] = ACTIONS(9124), + [anon_sym_DASH] = ACTIONS(9122), + [anon_sym_QMARK] = ACTIONS(9124), + [aux_sym_close_statement_token1] = ACTIONS(9122), + [aux_sym_put_statement_token1] = ACTIONS(9122), + [aux_sym_unlock_statement_token1] = ACTIONS(9122), + [aux_sym_seek_statement_token1] = ACTIONS(9122), + [sym_reset_statement] = ACTIONS(9122), + [aux_sym_raise_event_statement_token1] = ACTIONS(9122), + [sym_stop_statement] = ACTIONS(9122), + [sym_beep_statement] = ACTIONS(9122), + [aux_sym_unload_statement_token1] = ACTIONS(9122), + [aux_sym_def_type_statement_token1] = ACTIONS(9122), + [aux_sym_def_type_statement_token2] = ACTIONS(9122), + [aux_sym_def_type_statement_token3] = ACTIONS(9122), + [aux_sym_def_type_statement_token4] = ACTIONS(9122), + [aux_sym_def_type_statement_token5] = ACTIONS(9122), + [aux_sym_def_type_statement_token6] = ACTIONS(9122), + [aux_sym_def_type_statement_token7] = ACTIONS(9122), + [aux_sym_def_type_statement_token8] = ACTIONS(9122), + [aux_sym_def_type_statement_token9] = ACTIONS(9122), + [aux_sym_def_type_statement_token10] = ACTIONS(9122), + [aux_sym_def_type_statement_token11] = ACTIONS(9122), + [aux_sym_def_type_statement_token12] = ACTIONS(9122), + [aux_sym_def_type_statement_token13] = ACTIONS(9122), + [aux_sym_def_type_statement_token14] = ACTIONS(9122), + [aux_sym_call_statement_token1] = ACTIONS(9122), + [sym__ambiguous_call_statement] = ACTIONS(9122), + [aux_sym_addressof_expression_token1] = ACTIONS(9122), + [aux_sym_type_of_expression_token1] = ACTIONS(9122), + [aux_sym_unary_expression_token1] = ACTIONS(9122), + [sym_string_literal] = ACTIONS(9124), + [sym_number_literal] = ACTIONS(9124), + [aux_sym_boolean_literal_token1] = ACTIONS(9122), + [aux_sym_boolean_literal_token2] = ACTIONS(9122), + [sym_nothing_literal] = ACTIONS(9122), + [sym_null_literal] = ACTIONS(9122), + [sym_empty_literal] = ACTIONS(9122), + [sym_date_literal] = ACTIONS(9124), + [anon_sym_POUND] = ACTIONS(9122), + }, + [STATE(5679)] = { + [sym_identifier] = ACTIONS(8935), + [sym_newline] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(8937), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8935), + [aux_sym_frm_property_statement_token1] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_BANG] = ACTIONS(8937), + [aux_sym__attribute_identifier_token1] = ACTIONS(8935), + [aux_sym_option_statement_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8935), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8935), + [aux_sym_preprocessor_const_token1] = ACTIONS(8935), + [sym_static_modifier] = ACTIONS(8935), + [sym__dim_keyword] = ACTIONS(8935), + [sym__redim_keyword] = ACTIONS(8935), + [aux_sym_get_accessor_token1] = ACTIONS(8935), + [aux_sym_set_accessor_token1] = ACTIONS(8935), + [aux_sym_const_declaration_token1] = ACTIONS(8935), + [anon_sym_LPAREN] = ACTIONS(8937), + [aux_sym_as_type_clause_token2] = ACTIONS(8935), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8935), + [aux_sym_visibility_token1] = ACTIONS(8935), + [aux_sym_visibility_token2] = ACTIONS(8935), + [aux_sym_elseif_fragment_token1] = ACTIONS(8935), + [aux_sym_else_fragment_token1] = ACTIONS(8935), + [aux_sym_select_statement_token1] = ACTIONS(8935), + [aux_sym__for_header_token1] = ACTIONS(8935), + [aux_sym_do_statement_token1] = ACTIONS(8935), + [aux_sym_do_condition_token1] = ACTIONS(8935), + [aux_sym_with_statement_token1] = ACTIONS(8935), + [aux_sym_exit_statement_token1] = ACTIONS(8935), + [sym_end_statement] = ACTIONS(8937), + [aux_sym_on_goto_statement_token1] = ACTIONS(8935), + [aux_sym_on_goto_statement_token2] = ACTIONS(8935), + [aux_sym_on_error_statement_token2] = ACTIONS(8935), + [sym__ambiguous_redim_statement] = ACTIONS(8937), + [aux_sym_erase_statement_token1] = ACTIONS(8935), + [aux_sym_open_statement_token1] = ACTIONS(8935), + [aux_sym_file_mode_token2] = ACTIONS(8935), + [aux_sym_file_access_token2] = ACTIONS(8935), + [aux_sym_file_lock_token2] = ACTIONS(8935), + [aux_sym_print_statement_token1] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [aux_sym_close_statement_token1] = ACTIONS(8935), + [aux_sym_put_statement_token1] = ACTIONS(8935), + [aux_sym_unlock_statement_token1] = ACTIONS(8935), + [aux_sym_seek_statement_token1] = ACTIONS(8935), + [sym_reset_statement] = ACTIONS(8935), + [aux_sym_raise_event_statement_token1] = ACTIONS(8935), + [sym_stop_statement] = ACTIONS(8935), + [sym_beep_statement] = ACTIONS(8935), + [aux_sym_unload_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token2] = ACTIONS(8935), + [aux_sym_def_type_statement_token3] = ACTIONS(8935), + [aux_sym_def_type_statement_token4] = ACTIONS(8935), + [aux_sym_def_type_statement_token5] = ACTIONS(8935), + [aux_sym_def_type_statement_token6] = ACTIONS(8935), + [aux_sym_def_type_statement_token7] = ACTIONS(8935), + [aux_sym_def_type_statement_token8] = ACTIONS(8935), + [aux_sym_def_type_statement_token9] = ACTIONS(8935), + [aux_sym_def_type_statement_token10] = ACTIONS(8935), + [aux_sym_def_type_statement_token11] = ACTIONS(8935), + [aux_sym_def_type_statement_token12] = ACTIONS(8935), + [aux_sym_def_type_statement_token13] = ACTIONS(8935), + [aux_sym_def_type_statement_token14] = ACTIONS(8935), + [aux_sym_call_statement_token1] = ACTIONS(8935), + [sym__ambiguous_call_statement] = ACTIONS(8935), + [aux_sym_addressof_expression_token1] = ACTIONS(8935), + [aux_sym_type_of_expression_token1] = ACTIONS(8935), + [aux_sym_unary_expression_token1] = ACTIONS(8935), + [sym_string_literal] = ACTIONS(8937), + [sym_number_literal] = ACTIONS(8937), + [aux_sym_boolean_literal_token1] = ACTIONS(8935), + [aux_sym_boolean_literal_token2] = ACTIONS(8935), + [sym_nothing_literal] = ACTIONS(8935), + [sym_null_literal] = ACTIONS(8935), + [sym_empty_literal] = ACTIONS(8935), + [sym_date_literal] = ACTIONS(8937), + [anon_sym_POUND] = ACTIONS(8935), + }, + [STATE(5680)] = { + [sym_identifier] = ACTIONS(9496), + [sym_newline] = ACTIONS(9498), + [anon_sym_COLON] = ACTIONS(9498), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9496), + [aux_sym_frm_property_statement_token1] = ACTIONS(9496), + [anon_sym_DOT] = ACTIONS(9496), + [anon_sym_BANG] = ACTIONS(9498), + [aux_sym__attribute_identifier_token1] = ACTIONS(9496), + [aux_sym_option_statement_token3] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9496), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9496), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9496), + [aux_sym_preprocessor_const_token1] = ACTIONS(9496), + [sym_static_modifier] = ACTIONS(9496), + [sym__dim_keyword] = ACTIONS(9496), + [sym__redim_keyword] = ACTIONS(9496), + [aux_sym_get_accessor_token1] = ACTIONS(9496), + [aux_sym_set_accessor_token1] = ACTIONS(9496), + [aux_sym_const_declaration_token1] = ACTIONS(9496), + [anon_sym_LPAREN] = ACTIONS(9498), + [aux_sym_as_type_clause_token2] = ACTIONS(9496), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9496), + [aux_sym_visibility_token1] = ACTIONS(9496), + [aux_sym_visibility_token2] = ACTIONS(9496), + [aux_sym_elseif_fragment_token1] = ACTIONS(9496), + [aux_sym_else_fragment_token1] = ACTIONS(9496), + [aux_sym_select_statement_token1] = ACTIONS(9496), + [aux_sym__for_header_token1] = ACTIONS(9496), + [aux_sym_do_statement_token1] = ACTIONS(9496), + [aux_sym_do_condition_token1] = ACTIONS(9496), + [aux_sym_with_statement_token1] = ACTIONS(9496), + [aux_sym_exit_statement_token1] = ACTIONS(9496), + [sym_end_statement] = ACTIONS(9498), + [aux_sym_on_goto_statement_token1] = ACTIONS(9496), + [aux_sym_on_goto_statement_token2] = ACTIONS(9496), + [aux_sym_on_error_statement_token2] = ACTIONS(9496), + [sym__ambiguous_redim_statement] = ACTIONS(9498), + [aux_sym_erase_statement_token1] = ACTIONS(9496), + [aux_sym_open_statement_token1] = ACTIONS(9496), + [aux_sym_file_mode_token2] = ACTIONS(9496), + [aux_sym_file_access_token2] = ACTIONS(9496), + [aux_sym_file_lock_token2] = ACTIONS(9496), + [aux_sym_print_statement_token1] = ACTIONS(9496), + [anon_sym_PLUS] = ACTIONS(9498), + [anon_sym_DASH] = ACTIONS(9496), + [anon_sym_QMARK] = ACTIONS(9498), + [aux_sym_close_statement_token1] = ACTIONS(9496), + [aux_sym_put_statement_token1] = ACTIONS(9496), + [aux_sym_unlock_statement_token1] = ACTIONS(9496), + [aux_sym_seek_statement_token1] = ACTIONS(9496), + [sym_reset_statement] = ACTIONS(9496), + [aux_sym_raise_event_statement_token1] = ACTIONS(9496), + [sym_stop_statement] = ACTIONS(9496), + [sym_beep_statement] = ACTIONS(9496), + [aux_sym_unload_statement_token1] = ACTIONS(9496), + [aux_sym_def_type_statement_token1] = ACTIONS(9496), + [aux_sym_def_type_statement_token2] = ACTIONS(9496), + [aux_sym_def_type_statement_token3] = ACTIONS(9496), + [aux_sym_def_type_statement_token4] = ACTIONS(9496), + [aux_sym_def_type_statement_token5] = ACTIONS(9496), + [aux_sym_def_type_statement_token6] = ACTIONS(9496), + [aux_sym_def_type_statement_token7] = ACTIONS(9496), + [aux_sym_def_type_statement_token8] = ACTIONS(9496), + [aux_sym_def_type_statement_token9] = ACTIONS(9496), + [aux_sym_def_type_statement_token10] = ACTIONS(9496), + [aux_sym_def_type_statement_token11] = ACTIONS(9496), + [aux_sym_def_type_statement_token12] = ACTIONS(9496), + [aux_sym_def_type_statement_token13] = ACTIONS(9496), + [aux_sym_def_type_statement_token14] = ACTIONS(9496), + [aux_sym_call_statement_token1] = ACTIONS(9496), + [sym__ambiguous_call_statement] = ACTIONS(9496), + [aux_sym_addressof_expression_token1] = ACTIONS(9496), + [aux_sym_type_of_expression_token1] = ACTIONS(9496), + [aux_sym_unary_expression_token1] = ACTIONS(9496), + [sym_string_literal] = ACTIONS(9498), + [sym_number_literal] = ACTIONS(9498), + [aux_sym_boolean_literal_token1] = ACTIONS(9496), + [aux_sym_boolean_literal_token2] = ACTIONS(9496), + [sym_nothing_literal] = ACTIONS(9496), + [sym_null_literal] = ACTIONS(9496), + [sym_empty_literal] = ACTIONS(9496), + [sym_date_literal] = ACTIONS(9498), + [anon_sym_POUND] = ACTIONS(9496), + }, + [STATE(5681)] = { + [sym_identifier] = ACTIONS(9506), + [sym_newline] = ACTIONS(9508), + [anon_sym_COLON] = ACTIONS(9508), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9506), + [aux_sym_frm_property_statement_token1] = ACTIONS(9506), + [anon_sym_DOT] = ACTIONS(9506), + [anon_sym_BANG] = ACTIONS(9508), + [aux_sym__attribute_identifier_token1] = ACTIONS(9506), + [aux_sym_option_statement_token3] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9506), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9506), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9506), + [aux_sym_preprocessor_const_token1] = ACTIONS(9506), + [sym_static_modifier] = ACTIONS(9506), + [sym__dim_keyword] = ACTIONS(9506), + [sym__redim_keyword] = ACTIONS(9506), + [aux_sym_get_accessor_token1] = ACTIONS(9506), + [aux_sym_set_accessor_token1] = ACTIONS(9506), + [aux_sym_const_declaration_token1] = ACTIONS(9506), + [anon_sym_LPAREN] = ACTIONS(9508), + [aux_sym_as_type_clause_token2] = ACTIONS(9506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9506), + [aux_sym_visibility_token1] = ACTIONS(9506), + [aux_sym_visibility_token2] = ACTIONS(9506), + [aux_sym_elseif_fragment_token1] = ACTIONS(9506), + [aux_sym_else_fragment_token1] = ACTIONS(9506), + [aux_sym_select_statement_token1] = ACTIONS(9506), + [aux_sym__for_header_token1] = ACTIONS(9506), + [aux_sym_do_statement_token1] = ACTIONS(9506), + [aux_sym_do_condition_token1] = ACTIONS(9506), + [aux_sym_with_statement_token1] = ACTIONS(9506), + [aux_sym_exit_statement_token1] = ACTIONS(9506), + [sym_end_statement] = ACTIONS(9508), + [aux_sym_on_goto_statement_token1] = ACTIONS(9506), + [aux_sym_on_goto_statement_token2] = ACTIONS(9506), + [aux_sym_on_error_statement_token2] = ACTIONS(9506), + [sym__ambiguous_redim_statement] = ACTIONS(9508), + [aux_sym_erase_statement_token1] = ACTIONS(9506), + [aux_sym_open_statement_token1] = ACTIONS(9506), + [aux_sym_file_mode_token2] = ACTIONS(9506), + [aux_sym_file_access_token2] = ACTIONS(9506), + [aux_sym_file_lock_token2] = ACTIONS(9506), + [aux_sym_print_statement_token1] = ACTIONS(9506), + [anon_sym_PLUS] = ACTIONS(9508), + [anon_sym_DASH] = ACTIONS(9506), + [anon_sym_QMARK] = ACTIONS(9508), + [aux_sym_close_statement_token1] = ACTIONS(9506), + [aux_sym_put_statement_token1] = ACTIONS(9506), + [aux_sym_unlock_statement_token1] = ACTIONS(9506), + [aux_sym_seek_statement_token1] = ACTIONS(9506), + [sym_reset_statement] = ACTIONS(9506), + [aux_sym_raise_event_statement_token1] = ACTIONS(9506), + [sym_stop_statement] = ACTIONS(9506), + [sym_beep_statement] = ACTIONS(9506), + [aux_sym_unload_statement_token1] = ACTIONS(9506), + [aux_sym_def_type_statement_token1] = ACTIONS(9506), + [aux_sym_def_type_statement_token2] = ACTIONS(9506), + [aux_sym_def_type_statement_token3] = ACTIONS(9506), + [aux_sym_def_type_statement_token4] = ACTIONS(9506), + [aux_sym_def_type_statement_token5] = ACTIONS(9506), + [aux_sym_def_type_statement_token6] = ACTIONS(9506), + [aux_sym_def_type_statement_token7] = ACTIONS(9506), + [aux_sym_def_type_statement_token8] = ACTIONS(9506), + [aux_sym_def_type_statement_token9] = ACTIONS(9506), + [aux_sym_def_type_statement_token10] = ACTIONS(9506), + [aux_sym_def_type_statement_token11] = ACTIONS(9506), + [aux_sym_def_type_statement_token12] = ACTIONS(9506), + [aux_sym_def_type_statement_token13] = ACTIONS(9506), + [aux_sym_def_type_statement_token14] = ACTIONS(9506), + [aux_sym_call_statement_token1] = ACTIONS(9506), + [sym__ambiguous_call_statement] = ACTIONS(9506), + [aux_sym_addressof_expression_token1] = ACTIONS(9506), + [aux_sym_type_of_expression_token1] = ACTIONS(9506), + [aux_sym_unary_expression_token1] = ACTIONS(9506), + [sym_string_literal] = ACTIONS(9508), + [sym_number_literal] = ACTIONS(9508), + [aux_sym_boolean_literal_token1] = ACTIONS(9506), + [aux_sym_boolean_literal_token2] = ACTIONS(9506), + [sym_nothing_literal] = ACTIONS(9506), + [sym_null_literal] = ACTIONS(9506), + [sym_empty_literal] = ACTIONS(9506), + [sym_date_literal] = ACTIONS(9508), + [anon_sym_POUND] = ACTIONS(9506), + }, + [STATE(5682)] = { + [sym_identifier] = ACTIONS(9510), + [sym_newline] = ACTIONS(9512), + [anon_sym_COLON] = ACTIONS(9512), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9510), + [aux_sym_frm_property_statement_token1] = ACTIONS(9510), + [anon_sym_DOT] = ACTIONS(9510), + [anon_sym_BANG] = ACTIONS(9512), + [aux_sym__attribute_identifier_token1] = ACTIONS(9510), + [aux_sym_option_statement_token3] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9510), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9510), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9510), + [aux_sym_preprocessor_const_token1] = ACTIONS(9510), + [sym_static_modifier] = ACTIONS(9510), + [sym__dim_keyword] = ACTIONS(9510), + [sym__redim_keyword] = ACTIONS(9510), + [aux_sym_get_accessor_token1] = ACTIONS(9510), + [aux_sym_set_accessor_token1] = ACTIONS(9510), + [aux_sym_const_declaration_token1] = ACTIONS(9510), + [anon_sym_LPAREN] = ACTIONS(9512), + [aux_sym_as_type_clause_token2] = ACTIONS(9510), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9510), + [aux_sym_visibility_token1] = ACTIONS(9510), + [aux_sym_visibility_token2] = ACTIONS(9510), + [aux_sym_elseif_fragment_token1] = ACTIONS(9510), + [aux_sym_else_fragment_token1] = ACTIONS(9510), + [aux_sym_select_statement_token1] = ACTIONS(9510), + [aux_sym__for_header_token1] = ACTIONS(9510), + [aux_sym_do_statement_token1] = ACTIONS(9510), + [aux_sym_do_condition_token1] = ACTIONS(9510), + [aux_sym_with_statement_token1] = ACTIONS(9510), + [aux_sym_exit_statement_token1] = ACTIONS(9510), + [sym_end_statement] = ACTIONS(9512), + [aux_sym_on_goto_statement_token1] = ACTIONS(9510), + [aux_sym_on_goto_statement_token2] = ACTIONS(9510), + [aux_sym_on_error_statement_token2] = ACTIONS(9510), + [sym__ambiguous_redim_statement] = ACTIONS(9512), + [aux_sym_erase_statement_token1] = ACTIONS(9510), + [aux_sym_open_statement_token1] = ACTIONS(9510), + [aux_sym_file_mode_token2] = ACTIONS(9510), + [aux_sym_file_access_token2] = ACTIONS(9510), + [aux_sym_file_lock_token2] = ACTIONS(9510), + [aux_sym_print_statement_token1] = ACTIONS(9510), + [anon_sym_PLUS] = ACTIONS(9512), + [anon_sym_DASH] = ACTIONS(9510), + [anon_sym_QMARK] = ACTIONS(9512), + [aux_sym_close_statement_token1] = ACTIONS(9510), + [aux_sym_put_statement_token1] = ACTIONS(9510), + [aux_sym_unlock_statement_token1] = ACTIONS(9510), + [aux_sym_seek_statement_token1] = ACTIONS(9510), + [sym_reset_statement] = ACTIONS(9510), + [aux_sym_raise_event_statement_token1] = ACTIONS(9510), + [sym_stop_statement] = ACTIONS(9510), + [sym_beep_statement] = ACTIONS(9510), + [aux_sym_unload_statement_token1] = ACTIONS(9510), + [aux_sym_def_type_statement_token1] = ACTIONS(9510), + [aux_sym_def_type_statement_token2] = ACTIONS(9510), + [aux_sym_def_type_statement_token3] = ACTIONS(9510), + [aux_sym_def_type_statement_token4] = ACTIONS(9510), + [aux_sym_def_type_statement_token5] = ACTIONS(9510), + [aux_sym_def_type_statement_token6] = ACTIONS(9510), + [aux_sym_def_type_statement_token7] = ACTIONS(9510), + [aux_sym_def_type_statement_token8] = ACTIONS(9510), + [aux_sym_def_type_statement_token9] = ACTIONS(9510), + [aux_sym_def_type_statement_token10] = ACTIONS(9510), + [aux_sym_def_type_statement_token11] = ACTIONS(9510), + [aux_sym_def_type_statement_token12] = ACTIONS(9510), + [aux_sym_def_type_statement_token13] = ACTIONS(9510), + [aux_sym_def_type_statement_token14] = ACTIONS(9510), + [aux_sym_call_statement_token1] = ACTIONS(9510), + [sym__ambiguous_call_statement] = ACTIONS(9510), + [aux_sym_addressof_expression_token1] = ACTIONS(9510), + [aux_sym_type_of_expression_token1] = ACTIONS(9510), + [aux_sym_unary_expression_token1] = ACTIONS(9510), + [sym_string_literal] = ACTIONS(9512), + [sym_number_literal] = ACTIONS(9512), + [aux_sym_boolean_literal_token1] = ACTIONS(9510), + [aux_sym_boolean_literal_token2] = ACTIONS(9510), + [sym_nothing_literal] = ACTIONS(9510), + [sym_null_literal] = ACTIONS(9510), + [sym_empty_literal] = ACTIONS(9510), + [sym_date_literal] = ACTIONS(9512), + [anon_sym_POUND] = ACTIONS(9510), + }, + [STATE(5683)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5683), + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(10769), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(5684)] = { + [sym_identifier] = ACTIONS(9514), + [sym_newline] = ACTIONS(9516), + [anon_sym_COLON] = ACTIONS(9516), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9514), + [aux_sym_frm_property_statement_token1] = ACTIONS(9514), + [anon_sym_DOT] = ACTIONS(9514), + [anon_sym_BANG] = ACTIONS(9516), + [aux_sym__attribute_identifier_token1] = ACTIONS(9514), + [aux_sym_option_statement_token3] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9514), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9514), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9514), + [aux_sym_preprocessor_const_token1] = ACTIONS(9514), + [sym_static_modifier] = ACTIONS(9514), + [sym__dim_keyword] = ACTIONS(9514), + [sym__redim_keyword] = ACTIONS(9514), + [aux_sym_get_accessor_token1] = ACTIONS(9514), + [aux_sym_set_accessor_token1] = ACTIONS(9514), + [aux_sym_const_declaration_token1] = ACTIONS(9514), + [anon_sym_LPAREN] = ACTIONS(9516), + [aux_sym_as_type_clause_token2] = ACTIONS(9514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9514), + [aux_sym_visibility_token1] = ACTIONS(9514), + [aux_sym_visibility_token2] = ACTIONS(9514), + [aux_sym_elseif_fragment_token1] = ACTIONS(9514), + [aux_sym_else_fragment_token1] = ACTIONS(9514), + [aux_sym_select_statement_token1] = ACTIONS(9514), + [aux_sym__for_header_token1] = ACTIONS(9514), + [aux_sym_do_statement_token1] = ACTIONS(9514), + [aux_sym_do_condition_token1] = ACTIONS(9514), + [aux_sym_with_statement_token1] = ACTIONS(9514), + [aux_sym_exit_statement_token1] = ACTIONS(9514), + [sym_end_statement] = ACTIONS(9516), + [aux_sym_on_goto_statement_token1] = ACTIONS(9514), + [aux_sym_on_goto_statement_token2] = ACTIONS(9514), + [aux_sym_on_error_statement_token2] = ACTIONS(9514), + [sym__ambiguous_redim_statement] = ACTIONS(9516), + [aux_sym_erase_statement_token1] = ACTIONS(9514), + [aux_sym_open_statement_token1] = ACTIONS(9514), + [aux_sym_file_mode_token2] = ACTIONS(9514), + [aux_sym_file_access_token2] = ACTIONS(9514), + [aux_sym_file_lock_token2] = ACTIONS(9514), + [aux_sym_print_statement_token1] = ACTIONS(9514), + [anon_sym_PLUS] = ACTIONS(9516), + [anon_sym_DASH] = ACTIONS(9514), + [anon_sym_QMARK] = ACTIONS(9516), + [aux_sym_close_statement_token1] = ACTIONS(9514), + [aux_sym_put_statement_token1] = ACTIONS(9514), + [aux_sym_unlock_statement_token1] = ACTIONS(9514), + [aux_sym_seek_statement_token1] = ACTIONS(9514), + [sym_reset_statement] = ACTIONS(9514), + [aux_sym_raise_event_statement_token1] = ACTIONS(9514), + [sym_stop_statement] = ACTIONS(9514), + [sym_beep_statement] = ACTIONS(9514), + [aux_sym_unload_statement_token1] = ACTIONS(9514), + [aux_sym_def_type_statement_token1] = ACTIONS(9514), + [aux_sym_def_type_statement_token2] = ACTIONS(9514), + [aux_sym_def_type_statement_token3] = ACTIONS(9514), + [aux_sym_def_type_statement_token4] = ACTIONS(9514), + [aux_sym_def_type_statement_token5] = ACTIONS(9514), + [aux_sym_def_type_statement_token6] = ACTIONS(9514), + [aux_sym_def_type_statement_token7] = ACTIONS(9514), + [aux_sym_def_type_statement_token8] = ACTIONS(9514), + [aux_sym_def_type_statement_token9] = ACTIONS(9514), + [aux_sym_def_type_statement_token10] = ACTIONS(9514), + [aux_sym_def_type_statement_token11] = ACTIONS(9514), + [aux_sym_def_type_statement_token12] = ACTIONS(9514), + [aux_sym_def_type_statement_token13] = ACTIONS(9514), + [aux_sym_def_type_statement_token14] = ACTIONS(9514), + [aux_sym_call_statement_token1] = ACTIONS(9514), + [sym__ambiguous_call_statement] = ACTIONS(9514), + [aux_sym_addressof_expression_token1] = ACTIONS(9514), + [aux_sym_type_of_expression_token1] = ACTIONS(9514), + [aux_sym_unary_expression_token1] = ACTIONS(9514), + [sym_string_literal] = ACTIONS(9516), + [sym_number_literal] = ACTIONS(9516), + [aux_sym_boolean_literal_token1] = ACTIONS(9514), + [aux_sym_boolean_literal_token2] = ACTIONS(9514), + [sym_nothing_literal] = ACTIONS(9514), + [sym_null_literal] = ACTIONS(9514), + [sym_empty_literal] = ACTIONS(9514), + [sym_date_literal] = ACTIONS(9516), + [anon_sym_POUND] = ACTIONS(9514), + }, + [STATE(5685)] = { + [sym_identifier] = ACTIONS(9518), + [sym_newline] = ACTIONS(9520), + [anon_sym_COLON] = ACTIONS(9520), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9518), + [aux_sym_frm_property_statement_token1] = ACTIONS(9518), + [anon_sym_DOT] = ACTIONS(9518), + [anon_sym_BANG] = ACTIONS(9520), + [aux_sym__attribute_identifier_token1] = ACTIONS(9518), + [aux_sym_option_statement_token3] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9518), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9518), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9518), + [aux_sym_preprocessor_const_token1] = ACTIONS(9518), + [sym_static_modifier] = ACTIONS(9518), + [sym__dim_keyword] = ACTIONS(9518), + [sym__redim_keyword] = ACTIONS(9518), + [aux_sym_get_accessor_token1] = ACTIONS(9518), + [aux_sym_set_accessor_token1] = ACTIONS(9518), + [aux_sym_const_declaration_token1] = ACTIONS(9518), + [anon_sym_LPAREN] = ACTIONS(9520), + [aux_sym_as_type_clause_token2] = ACTIONS(9518), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9518), + [aux_sym_visibility_token1] = ACTIONS(9518), + [aux_sym_visibility_token2] = ACTIONS(9518), + [aux_sym_elseif_fragment_token1] = ACTIONS(9518), + [aux_sym_else_fragment_token1] = ACTIONS(9518), + [aux_sym_select_statement_token1] = ACTIONS(9518), + [aux_sym__for_header_token1] = ACTIONS(9518), + [aux_sym_do_statement_token1] = ACTIONS(9518), + [aux_sym_do_condition_token1] = ACTIONS(9518), + [aux_sym_with_statement_token1] = ACTIONS(9518), + [aux_sym_exit_statement_token1] = ACTIONS(9518), + [sym_end_statement] = ACTIONS(9520), + [aux_sym_on_goto_statement_token1] = ACTIONS(9518), + [aux_sym_on_goto_statement_token2] = ACTIONS(9518), + [aux_sym_on_error_statement_token2] = ACTIONS(9518), + [sym__ambiguous_redim_statement] = ACTIONS(9520), + [aux_sym_erase_statement_token1] = ACTIONS(9518), + [aux_sym_open_statement_token1] = ACTIONS(9518), + [aux_sym_file_mode_token2] = ACTIONS(9518), + [aux_sym_file_access_token2] = ACTIONS(9518), + [aux_sym_file_lock_token2] = ACTIONS(9518), + [aux_sym_print_statement_token1] = ACTIONS(9518), + [anon_sym_PLUS] = ACTIONS(9520), + [anon_sym_DASH] = ACTIONS(9518), + [anon_sym_QMARK] = ACTIONS(9520), + [aux_sym_close_statement_token1] = ACTIONS(9518), + [aux_sym_put_statement_token1] = ACTIONS(9518), + [aux_sym_unlock_statement_token1] = ACTIONS(9518), + [aux_sym_seek_statement_token1] = ACTIONS(9518), + [sym_reset_statement] = ACTIONS(9518), + [aux_sym_raise_event_statement_token1] = ACTIONS(9518), + [sym_stop_statement] = ACTIONS(9518), + [sym_beep_statement] = ACTIONS(9518), + [aux_sym_unload_statement_token1] = ACTIONS(9518), + [aux_sym_def_type_statement_token1] = ACTIONS(9518), + [aux_sym_def_type_statement_token2] = ACTIONS(9518), + [aux_sym_def_type_statement_token3] = ACTIONS(9518), + [aux_sym_def_type_statement_token4] = ACTIONS(9518), + [aux_sym_def_type_statement_token5] = ACTIONS(9518), + [aux_sym_def_type_statement_token6] = ACTIONS(9518), + [aux_sym_def_type_statement_token7] = ACTIONS(9518), + [aux_sym_def_type_statement_token8] = ACTIONS(9518), + [aux_sym_def_type_statement_token9] = ACTIONS(9518), + [aux_sym_def_type_statement_token10] = ACTIONS(9518), + [aux_sym_def_type_statement_token11] = ACTIONS(9518), + [aux_sym_def_type_statement_token12] = ACTIONS(9518), + [aux_sym_def_type_statement_token13] = ACTIONS(9518), + [aux_sym_def_type_statement_token14] = ACTIONS(9518), + [aux_sym_call_statement_token1] = ACTIONS(9518), + [sym__ambiguous_call_statement] = ACTIONS(9518), + [aux_sym_addressof_expression_token1] = ACTIONS(9518), + [aux_sym_type_of_expression_token1] = ACTIONS(9518), + [aux_sym_unary_expression_token1] = ACTIONS(9518), + [sym_string_literal] = ACTIONS(9520), + [sym_number_literal] = ACTIONS(9520), + [aux_sym_boolean_literal_token1] = ACTIONS(9518), + [aux_sym_boolean_literal_token2] = ACTIONS(9518), + [sym_nothing_literal] = ACTIONS(9518), + [sym_null_literal] = ACTIONS(9518), + [sym_empty_literal] = ACTIONS(9518), + [sym_date_literal] = ACTIONS(9520), + [anon_sym_POUND] = ACTIONS(9518), + }, + [STATE(5686)] = { + [sym_do_condition] = STATE(6639), + [sym_identifier] = ACTIONS(8411), + [sym_newline] = ACTIONS(8413), + [anon_sym_COLON] = ACTIONS(8413), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8411), + [aux_sym_frm_property_statement_token1] = ACTIONS(8411), + [anon_sym_DOT] = ACTIONS(8411), + [anon_sym_BANG] = ACTIONS(8413), + [aux_sym__attribute_identifier_token1] = ACTIONS(8411), + [aux_sym_option_statement_token3] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8411), + [aux_sym_preprocessor_const_token1] = ACTIONS(8411), + [sym_static_modifier] = ACTIONS(8411), + [sym__dim_keyword] = ACTIONS(8411), + [sym__redim_keyword] = ACTIONS(8411), + [aux_sym_get_accessor_token1] = ACTIONS(8411), + [aux_sym_set_accessor_token1] = ACTIONS(8411), + [aux_sym_const_declaration_token1] = ACTIONS(8411), + [anon_sym_LPAREN] = ACTIONS(8413), + [aux_sym_as_type_clause_token2] = ACTIONS(8411), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8411), + [aux_sym_visibility_token1] = ACTIONS(8411), + [aux_sym_visibility_token2] = ACTIONS(8411), + [aux_sym_elseif_fragment_token1] = ACTIONS(8411), + [aux_sym_else_fragment_token1] = ACTIONS(8411), + [aux_sym_select_statement_token1] = ACTIONS(8411), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8411), + [aux_sym__for_header_token1] = ACTIONS(8411), + [aux_sym_do_statement_token1] = ACTIONS(8411), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8411), + [aux_sym_exit_statement_token1] = ACTIONS(8411), + [sym_end_statement] = ACTIONS(8413), + [aux_sym_on_goto_statement_token1] = ACTIONS(8411), + [aux_sym_on_goto_statement_token2] = ACTIONS(8411), + [aux_sym_on_error_statement_token2] = ACTIONS(8411), + [sym__ambiguous_redim_statement] = ACTIONS(8413), + [aux_sym_erase_statement_token1] = ACTIONS(8411), + [aux_sym_open_statement_token1] = ACTIONS(8411), + [aux_sym_file_mode_token2] = ACTIONS(8411), + [aux_sym_file_access_token2] = ACTIONS(8411), + [aux_sym_file_lock_token2] = ACTIONS(8411), + [aux_sym_print_statement_token1] = ACTIONS(8411), + [anon_sym_PLUS] = ACTIONS(8413), + [anon_sym_DASH] = ACTIONS(8411), + [anon_sym_QMARK] = ACTIONS(8413), + [aux_sym_close_statement_token1] = ACTIONS(8411), + [aux_sym_put_statement_token1] = ACTIONS(8411), + [aux_sym_unlock_statement_token1] = ACTIONS(8411), + [aux_sym_seek_statement_token1] = ACTIONS(8411), + [sym_reset_statement] = ACTIONS(8411), + [aux_sym_raise_event_statement_token1] = ACTIONS(8411), + [sym_stop_statement] = ACTIONS(8411), + [sym_beep_statement] = ACTIONS(8411), + [aux_sym_unload_statement_token1] = ACTIONS(8411), + [aux_sym_def_type_statement_token1] = ACTIONS(8411), + [aux_sym_def_type_statement_token2] = ACTIONS(8411), + [aux_sym_def_type_statement_token3] = ACTIONS(8411), + [aux_sym_def_type_statement_token4] = ACTIONS(8411), + [aux_sym_def_type_statement_token5] = ACTIONS(8411), + [aux_sym_def_type_statement_token6] = ACTIONS(8411), + [aux_sym_def_type_statement_token7] = ACTIONS(8411), + [aux_sym_def_type_statement_token8] = ACTIONS(8411), + [aux_sym_def_type_statement_token9] = ACTIONS(8411), + [aux_sym_def_type_statement_token10] = ACTIONS(8411), + [aux_sym_def_type_statement_token11] = ACTIONS(8411), + [aux_sym_def_type_statement_token12] = ACTIONS(8411), + [aux_sym_def_type_statement_token13] = ACTIONS(8411), + [aux_sym_def_type_statement_token14] = ACTIONS(8411), + [aux_sym_call_statement_token1] = ACTIONS(8411), + [sym__ambiguous_call_statement] = ACTIONS(8411), + [aux_sym_addressof_expression_token1] = ACTIONS(8411), + [aux_sym_type_of_expression_token1] = ACTIONS(8411), + [aux_sym_unary_expression_token1] = ACTIONS(8411), + [sym_string_literal] = ACTIONS(8413), + [sym_number_literal] = ACTIONS(8413), + [aux_sym_boolean_literal_token1] = ACTIONS(8411), + [aux_sym_boolean_literal_token2] = ACTIONS(8411), + [sym_nothing_literal] = ACTIONS(8411), + [sym_null_literal] = ACTIONS(8411), + [sym_empty_literal] = ACTIONS(8411), + [sym_date_literal] = ACTIONS(8413), + [anon_sym_POUND] = ACTIONS(8411), + }, + [STATE(5687)] = { + [sym_identifier] = ACTIONS(9522), + [sym_newline] = ACTIONS(9524), + [anon_sym_COLON] = ACTIONS(9524), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9522), + [aux_sym_frm_property_statement_token1] = ACTIONS(9522), + [anon_sym_DOT] = ACTIONS(9522), + [anon_sym_BANG] = ACTIONS(9524), + [aux_sym__attribute_identifier_token1] = ACTIONS(9522), + [aux_sym_option_statement_token3] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9522), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9522), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9522), + [aux_sym_preprocessor_const_token1] = ACTIONS(9522), + [sym_static_modifier] = ACTIONS(9522), + [sym__dim_keyword] = ACTIONS(9522), + [sym__redim_keyword] = ACTIONS(9522), + [aux_sym_get_accessor_token1] = ACTIONS(9522), + [aux_sym_set_accessor_token1] = ACTIONS(9522), + [aux_sym_const_declaration_token1] = ACTIONS(9522), + [anon_sym_LPAREN] = ACTIONS(9524), + [aux_sym_as_type_clause_token2] = ACTIONS(9522), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9522), + [aux_sym_visibility_token1] = ACTIONS(9522), + [aux_sym_visibility_token2] = ACTIONS(9522), + [aux_sym_elseif_fragment_token1] = ACTIONS(9522), + [aux_sym_else_fragment_token1] = ACTIONS(9522), + [aux_sym_select_statement_token1] = ACTIONS(9522), + [aux_sym__for_header_token1] = ACTIONS(9522), + [aux_sym_do_statement_token1] = ACTIONS(9522), + [aux_sym_do_condition_token1] = ACTIONS(9522), + [aux_sym_with_statement_token1] = ACTIONS(9522), + [aux_sym_exit_statement_token1] = ACTIONS(9522), + [sym_end_statement] = ACTIONS(9524), + [aux_sym_on_goto_statement_token1] = ACTIONS(9522), + [aux_sym_on_goto_statement_token2] = ACTIONS(9522), + [aux_sym_on_error_statement_token2] = ACTIONS(9522), + [sym__ambiguous_redim_statement] = ACTIONS(9524), + [aux_sym_erase_statement_token1] = ACTIONS(9522), + [aux_sym_open_statement_token1] = ACTIONS(9522), + [aux_sym_file_mode_token2] = ACTIONS(9522), + [aux_sym_file_access_token2] = ACTIONS(9522), + [aux_sym_file_lock_token2] = ACTIONS(9522), + [aux_sym_print_statement_token1] = ACTIONS(9522), + [anon_sym_PLUS] = ACTIONS(9524), + [anon_sym_DASH] = ACTIONS(9522), + [anon_sym_QMARK] = ACTIONS(9524), + [aux_sym_close_statement_token1] = ACTIONS(9522), + [aux_sym_put_statement_token1] = ACTIONS(9522), + [aux_sym_unlock_statement_token1] = ACTIONS(9522), + [aux_sym_seek_statement_token1] = ACTIONS(9522), + [sym_reset_statement] = ACTIONS(9522), + [aux_sym_raise_event_statement_token1] = ACTIONS(9522), + [sym_stop_statement] = ACTIONS(9522), + [sym_beep_statement] = ACTIONS(9522), + [aux_sym_unload_statement_token1] = ACTIONS(9522), + [aux_sym_def_type_statement_token1] = ACTIONS(9522), + [aux_sym_def_type_statement_token2] = ACTIONS(9522), + [aux_sym_def_type_statement_token3] = ACTIONS(9522), + [aux_sym_def_type_statement_token4] = ACTIONS(9522), + [aux_sym_def_type_statement_token5] = ACTIONS(9522), + [aux_sym_def_type_statement_token6] = ACTIONS(9522), + [aux_sym_def_type_statement_token7] = ACTIONS(9522), + [aux_sym_def_type_statement_token8] = ACTIONS(9522), + [aux_sym_def_type_statement_token9] = ACTIONS(9522), + [aux_sym_def_type_statement_token10] = ACTIONS(9522), + [aux_sym_def_type_statement_token11] = ACTIONS(9522), + [aux_sym_def_type_statement_token12] = ACTIONS(9522), + [aux_sym_def_type_statement_token13] = ACTIONS(9522), + [aux_sym_def_type_statement_token14] = ACTIONS(9522), + [aux_sym_call_statement_token1] = ACTIONS(9522), + [sym__ambiguous_call_statement] = ACTIONS(9522), + [aux_sym_addressof_expression_token1] = ACTIONS(9522), + [aux_sym_type_of_expression_token1] = ACTIONS(9522), + [aux_sym_unary_expression_token1] = ACTIONS(9522), + [sym_string_literal] = ACTIONS(9524), + [sym_number_literal] = ACTIONS(9524), + [aux_sym_boolean_literal_token1] = ACTIONS(9522), + [aux_sym_boolean_literal_token2] = ACTIONS(9522), + [sym_nothing_literal] = ACTIONS(9522), + [sym_null_literal] = ACTIONS(9522), + [sym_empty_literal] = ACTIONS(9522), + [sym_date_literal] = ACTIONS(9524), + [anon_sym_POUND] = ACTIONS(9522), + }, + [STATE(5688)] = { + [sym_identifier] = ACTIONS(9526), + [sym_newline] = ACTIONS(9528), + [anon_sym_COLON] = ACTIONS(9528), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9526), + [aux_sym_frm_property_statement_token1] = ACTIONS(9526), + [anon_sym_DOT] = ACTIONS(9526), + [anon_sym_BANG] = ACTIONS(9528), + [aux_sym__attribute_identifier_token1] = ACTIONS(9526), + [aux_sym_option_statement_token3] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9526), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9526), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9526), + [aux_sym_preprocessor_const_token1] = ACTIONS(9526), + [sym_static_modifier] = ACTIONS(9526), + [sym__dim_keyword] = ACTIONS(9526), + [sym__redim_keyword] = ACTIONS(9526), + [aux_sym_get_accessor_token1] = ACTIONS(9526), + [aux_sym_set_accessor_token1] = ACTIONS(9526), + [aux_sym_const_declaration_token1] = ACTIONS(9526), + [anon_sym_LPAREN] = ACTIONS(9528), + [aux_sym_as_type_clause_token2] = ACTIONS(9526), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9526), + [aux_sym_visibility_token1] = ACTIONS(9526), + [aux_sym_visibility_token2] = ACTIONS(9526), + [aux_sym_elseif_fragment_token1] = ACTIONS(9526), + [aux_sym_else_fragment_token1] = ACTIONS(9526), + [aux_sym_select_statement_token1] = ACTIONS(9526), + [aux_sym__for_header_token1] = ACTIONS(9526), + [aux_sym_do_statement_token1] = ACTIONS(9526), + [aux_sym_do_condition_token1] = ACTIONS(9526), + [aux_sym_with_statement_token1] = ACTIONS(9526), + [aux_sym_exit_statement_token1] = ACTIONS(9526), + [sym_end_statement] = ACTIONS(9528), + [aux_sym_on_goto_statement_token1] = ACTIONS(9526), + [aux_sym_on_goto_statement_token2] = ACTIONS(9526), + [aux_sym_on_error_statement_token2] = ACTIONS(9526), + [sym__ambiguous_redim_statement] = ACTIONS(9528), + [aux_sym_erase_statement_token1] = ACTIONS(9526), + [aux_sym_open_statement_token1] = ACTIONS(9526), + [aux_sym_file_mode_token2] = ACTIONS(9526), + [aux_sym_file_access_token2] = ACTIONS(9526), + [aux_sym_file_lock_token2] = ACTIONS(9526), + [aux_sym_print_statement_token1] = ACTIONS(9526), + [anon_sym_PLUS] = ACTIONS(9528), + [anon_sym_DASH] = ACTIONS(9526), + [anon_sym_QMARK] = ACTIONS(9528), + [aux_sym_close_statement_token1] = ACTIONS(9526), + [aux_sym_put_statement_token1] = ACTIONS(9526), + [aux_sym_unlock_statement_token1] = ACTIONS(9526), + [aux_sym_seek_statement_token1] = ACTIONS(9526), + [sym_reset_statement] = ACTIONS(9526), + [aux_sym_raise_event_statement_token1] = ACTIONS(9526), + [sym_stop_statement] = ACTIONS(9526), + [sym_beep_statement] = ACTIONS(9526), + [aux_sym_unload_statement_token1] = ACTIONS(9526), + [aux_sym_def_type_statement_token1] = ACTIONS(9526), + [aux_sym_def_type_statement_token2] = ACTIONS(9526), + [aux_sym_def_type_statement_token3] = ACTIONS(9526), + [aux_sym_def_type_statement_token4] = ACTIONS(9526), + [aux_sym_def_type_statement_token5] = ACTIONS(9526), + [aux_sym_def_type_statement_token6] = ACTIONS(9526), + [aux_sym_def_type_statement_token7] = ACTIONS(9526), + [aux_sym_def_type_statement_token8] = ACTIONS(9526), + [aux_sym_def_type_statement_token9] = ACTIONS(9526), + [aux_sym_def_type_statement_token10] = ACTIONS(9526), + [aux_sym_def_type_statement_token11] = ACTIONS(9526), + [aux_sym_def_type_statement_token12] = ACTIONS(9526), + [aux_sym_def_type_statement_token13] = ACTIONS(9526), + [aux_sym_def_type_statement_token14] = ACTIONS(9526), + [aux_sym_call_statement_token1] = ACTIONS(9526), + [sym__ambiguous_call_statement] = ACTIONS(9526), + [aux_sym_addressof_expression_token1] = ACTIONS(9526), + [aux_sym_type_of_expression_token1] = ACTIONS(9526), + [aux_sym_unary_expression_token1] = ACTIONS(9526), + [sym_string_literal] = ACTIONS(9528), + [sym_number_literal] = ACTIONS(9528), + [aux_sym_boolean_literal_token1] = ACTIONS(9526), + [aux_sym_boolean_literal_token2] = ACTIONS(9526), + [sym_nothing_literal] = ACTIONS(9526), + [sym_null_literal] = ACTIONS(9526), + [sym_empty_literal] = ACTIONS(9526), + [sym_date_literal] = ACTIONS(9528), + [anon_sym_POUND] = ACTIONS(9526), + }, + [STATE(5689)] = { + [sym_identifier] = ACTIONS(9818), + [sym_newline] = ACTIONS(9820), + [anon_sym_COLON] = ACTIONS(9820), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9818), + [aux_sym_frm_property_statement_token1] = ACTIONS(9818), + [anon_sym_DOT] = ACTIONS(9818), + [anon_sym_BANG] = ACTIONS(9820), + [aux_sym__attribute_identifier_token1] = ACTIONS(9818), + [aux_sym_option_statement_token3] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9818), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9818), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9818), + [aux_sym_preprocessor_const_token1] = ACTIONS(9818), + [sym_static_modifier] = ACTIONS(9818), + [sym__dim_keyword] = ACTIONS(9818), + [sym__redim_keyword] = ACTIONS(9818), + [aux_sym_get_accessor_token1] = ACTIONS(9818), + [aux_sym_set_accessor_token1] = ACTIONS(9818), + [aux_sym_const_declaration_token1] = ACTIONS(9818), + [anon_sym_LPAREN] = ACTIONS(9820), + [aux_sym_as_type_clause_token2] = ACTIONS(9818), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9818), + [aux_sym_visibility_token1] = ACTIONS(9818), + [aux_sym_visibility_token2] = ACTIONS(9818), + [aux_sym_elseif_fragment_token1] = ACTIONS(9818), + [aux_sym_else_fragment_token1] = ACTIONS(9818), + [aux_sym_select_statement_token1] = ACTIONS(9818), + [aux_sym__for_header_token1] = ACTIONS(9818), + [aux_sym_do_statement_token1] = ACTIONS(9818), + [aux_sym_do_condition_token1] = ACTIONS(9818), + [aux_sym_with_statement_token1] = ACTIONS(9818), + [aux_sym_exit_statement_token1] = ACTIONS(9818), + [sym_end_statement] = ACTIONS(9820), + [aux_sym_on_goto_statement_token1] = ACTIONS(9818), + [aux_sym_on_goto_statement_token2] = ACTIONS(9818), + [aux_sym_on_error_statement_token2] = ACTIONS(9818), + [sym__ambiguous_redim_statement] = ACTIONS(9820), + [aux_sym_erase_statement_token1] = ACTIONS(9818), + [aux_sym_open_statement_token1] = ACTIONS(9818), + [aux_sym_file_mode_token2] = ACTIONS(9818), + [aux_sym_file_access_token2] = ACTIONS(9818), + [aux_sym_file_lock_token2] = ACTIONS(9818), + [aux_sym_print_statement_token1] = ACTIONS(9818), + [anon_sym_PLUS] = ACTIONS(9820), + [anon_sym_DASH] = ACTIONS(9818), + [anon_sym_QMARK] = ACTIONS(9820), + [aux_sym_close_statement_token1] = ACTIONS(9818), + [aux_sym_put_statement_token1] = ACTIONS(9818), + [aux_sym_unlock_statement_token1] = ACTIONS(9818), + [aux_sym_seek_statement_token1] = ACTIONS(9818), + [sym_reset_statement] = ACTIONS(9818), + [aux_sym_raise_event_statement_token1] = ACTIONS(9818), + [sym_stop_statement] = ACTIONS(9818), + [sym_beep_statement] = ACTIONS(9818), + [aux_sym_unload_statement_token1] = ACTIONS(9818), + [aux_sym_def_type_statement_token1] = ACTIONS(9818), + [aux_sym_def_type_statement_token2] = ACTIONS(9818), + [aux_sym_def_type_statement_token3] = ACTIONS(9818), + [aux_sym_def_type_statement_token4] = ACTIONS(9818), + [aux_sym_def_type_statement_token5] = ACTIONS(9818), + [aux_sym_def_type_statement_token6] = ACTIONS(9818), + [aux_sym_def_type_statement_token7] = ACTIONS(9818), + [aux_sym_def_type_statement_token8] = ACTIONS(9818), + [aux_sym_def_type_statement_token9] = ACTIONS(9818), + [aux_sym_def_type_statement_token10] = ACTIONS(9818), + [aux_sym_def_type_statement_token11] = ACTIONS(9818), + [aux_sym_def_type_statement_token12] = ACTIONS(9818), + [aux_sym_def_type_statement_token13] = ACTIONS(9818), + [aux_sym_def_type_statement_token14] = ACTIONS(9818), + [aux_sym_call_statement_token1] = ACTIONS(9818), + [sym__ambiguous_call_statement] = ACTIONS(9818), + [aux_sym_addressof_expression_token1] = ACTIONS(9818), + [aux_sym_type_of_expression_token1] = ACTIONS(9818), + [aux_sym_unary_expression_token1] = ACTIONS(9818), + [sym_string_literal] = ACTIONS(9820), + [sym_number_literal] = ACTIONS(9820), + [aux_sym_boolean_literal_token1] = ACTIONS(9818), + [aux_sym_boolean_literal_token2] = ACTIONS(9818), + [sym_nothing_literal] = ACTIONS(9818), + [sym_null_literal] = ACTIONS(9818), + [sym_empty_literal] = ACTIONS(9818), + [sym_date_literal] = ACTIONS(9820), + [anon_sym_POUND] = ACTIONS(9818), + }, + [STATE(5690)] = { + [sym_identifier] = ACTIONS(9532), + [sym_newline] = ACTIONS(9534), + [anon_sym_COLON] = ACTIONS(9534), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9532), + [aux_sym_frm_property_statement_token1] = ACTIONS(9532), + [anon_sym_DOT] = ACTIONS(9532), + [anon_sym_BANG] = ACTIONS(9534), + [aux_sym__attribute_identifier_token1] = ACTIONS(9532), + [aux_sym_option_statement_token3] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9532), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9532), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9532), + [aux_sym_preprocessor_const_token1] = ACTIONS(9532), + [sym_static_modifier] = ACTIONS(9532), + [sym__dim_keyword] = ACTIONS(9532), + [sym__redim_keyword] = ACTIONS(9532), + [aux_sym_get_accessor_token1] = ACTIONS(9532), + [aux_sym_set_accessor_token1] = ACTIONS(9532), + [aux_sym_const_declaration_token1] = ACTIONS(9532), + [anon_sym_LPAREN] = ACTIONS(9534), + [aux_sym_as_type_clause_token2] = ACTIONS(9532), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9532), + [aux_sym_visibility_token1] = ACTIONS(9532), + [aux_sym_visibility_token2] = ACTIONS(9532), + [aux_sym_elseif_fragment_token1] = ACTIONS(9532), + [aux_sym_else_fragment_token1] = ACTIONS(9532), + [aux_sym_select_statement_token1] = ACTIONS(9532), + [aux_sym__for_header_token1] = ACTIONS(9532), + [aux_sym_do_statement_token1] = ACTIONS(9532), + [aux_sym_do_condition_token1] = ACTIONS(9532), + [aux_sym_with_statement_token1] = ACTIONS(9532), + [aux_sym_exit_statement_token1] = ACTIONS(9532), + [sym_end_statement] = ACTIONS(9534), + [aux_sym_on_goto_statement_token1] = ACTIONS(9532), + [aux_sym_on_goto_statement_token2] = ACTIONS(9532), + [aux_sym_on_error_statement_token2] = ACTIONS(9532), + [sym__ambiguous_redim_statement] = ACTIONS(9534), + [aux_sym_erase_statement_token1] = ACTIONS(9532), + [aux_sym_open_statement_token1] = ACTIONS(9532), + [aux_sym_file_mode_token2] = ACTIONS(9532), + [aux_sym_file_access_token2] = ACTIONS(9532), + [aux_sym_file_lock_token2] = ACTIONS(9532), + [aux_sym_print_statement_token1] = ACTIONS(9532), + [anon_sym_PLUS] = ACTIONS(9534), + [anon_sym_DASH] = ACTIONS(9532), + [anon_sym_QMARK] = ACTIONS(9534), + [aux_sym_close_statement_token1] = ACTIONS(9532), + [aux_sym_put_statement_token1] = ACTIONS(9532), + [aux_sym_unlock_statement_token1] = ACTIONS(9532), + [aux_sym_seek_statement_token1] = ACTIONS(9532), + [sym_reset_statement] = ACTIONS(9532), + [aux_sym_raise_event_statement_token1] = ACTIONS(9532), + [sym_stop_statement] = ACTIONS(9532), + [sym_beep_statement] = ACTIONS(9532), + [aux_sym_unload_statement_token1] = ACTIONS(9532), + [aux_sym_def_type_statement_token1] = ACTIONS(9532), + [aux_sym_def_type_statement_token2] = ACTIONS(9532), + [aux_sym_def_type_statement_token3] = ACTIONS(9532), + [aux_sym_def_type_statement_token4] = ACTIONS(9532), + [aux_sym_def_type_statement_token5] = ACTIONS(9532), + [aux_sym_def_type_statement_token6] = ACTIONS(9532), + [aux_sym_def_type_statement_token7] = ACTIONS(9532), + [aux_sym_def_type_statement_token8] = ACTIONS(9532), + [aux_sym_def_type_statement_token9] = ACTIONS(9532), + [aux_sym_def_type_statement_token10] = ACTIONS(9532), + [aux_sym_def_type_statement_token11] = ACTIONS(9532), + [aux_sym_def_type_statement_token12] = ACTIONS(9532), + [aux_sym_def_type_statement_token13] = ACTIONS(9532), + [aux_sym_def_type_statement_token14] = ACTIONS(9532), + [aux_sym_call_statement_token1] = ACTIONS(9532), + [sym__ambiguous_call_statement] = ACTIONS(9532), + [aux_sym_addressof_expression_token1] = ACTIONS(9532), + [aux_sym_type_of_expression_token1] = ACTIONS(9532), + [aux_sym_unary_expression_token1] = ACTIONS(9532), + [sym_string_literal] = ACTIONS(9534), + [sym_number_literal] = ACTIONS(9534), + [aux_sym_boolean_literal_token1] = ACTIONS(9532), + [aux_sym_boolean_literal_token2] = ACTIONS(9532), + [sym_nothing_literal] = ACTIONS(9532), + [sym_null_literal] = ACTIONS(9532), + [sym_empty_literal] = ACTIONS(9532), + [sym_date_literal] = ACTIONS(9534), + [anon_sym_POUND] = ACTIONS(9532), + }, + [STATE(5691)] = { + [sym_identifier] = ACTIONS(9536), + [sym_newline] = ACTIONS(9538), + [anon_sym_COLON] = ACTIONS(9538), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9536), + [aux_sym_frm_property_statement_token1] = ACTIONS(9536), + [anon_sym_DOT] = ACTIONS(9536), + [anon_sym_BANG] = ACTIONS(9538), + [aux_sym__attribute_identifier_token1] = ACTIONS(9536), + [aux_sym_option_statement_token3] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9536), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9536), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9536), + [aux_sym_preprocessor_const_token1] = ACTIONS(9536), + [sym_static_modifier] = ACTIONS(9536), + [sym__dim_keyword] = ACTIONS(9536), + [sym__redim_keyword] = ACTIONS(9536), + [aux_sym_get_accessor_token1] = ACTIONS(9536), + [aux_sym_set_accessor_token1] = ACTIONS(9536), + [aux_sym_const_declaration_token1] = ACTIONS(9536), + [anon_sym_LPAREN] = ACTIONS(9538), + [aux_sym_as_type_clause_token2] = ACTIONS(9536), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9536), + [aux_sym_visibility_token1] = ACTIONS(9536), + [aux_sym_visibility_token2] = ACTIONS(9536), + [aux_sym_elseif_fragment_token1] = ACTIONS(9536), + [aux_sym_else_fragment_token1] = ACTIONS(9536), + [aux_sym_select_statement_token1] = ACTIONS(9536), + [aux_sym__for_header_token1] = ACTIONS(9536), + [aux_sym_do_statement_token1] = ACTIONS(9536), + [aux_sym_do_condition_token1] = ACTIONS(9536), + [aux_sym_with_statement_token1] = ACTIONS(9536), + [aux_sym_exit_statement_token1] = ACTIONS(9536), + [sym_end_statement] = ACTIONS(9538), + [aux_sym_on_goto_statement_token1] = ACTIONS(9536), + [aux_sym_on_goto_statement_token2] = ACTIONS(9536), + [aux_sym_on_error_statement_token2] = ACTIONS(9536), + [sym__ambiguous_redim_statement] = ACTIONS(9538), + [aux_sym_erase_statement_token1] = ACTIONS(9536), + [aux_sym_open_statement_token1] = ACTIONS(9536), + [aux_sym_file_mode_token2] = ACTIONS(9536), + [aux_sym_file_access_token2] = ACTIONS(9536), + [aux_sym_file_lock_token2] = ACTIONS(9536), + [aux_sym_print_statement_token1] = ACTIONS(9536), + [anon_sym_PLUS] = ACTIONS(9538), + [anon_sym_DASH] = ACTIONS(9536), + [anon_sym_QMARK] = ACTIONS(9538), + [aux_sym_close_statement_token1] = ACTIONS(9536), + [aux_sym_put_statement_token1] = ACTIONS(9536), + [aux_sym_unlock_statement_token1] = ACTIONS(9536), + [aux_sym_seek_statement_token1] = ACTIONS(9536), + [sym_reset_statement] = ACTIONS(9536), + [aux_sym_raise_event_statement_token1] = ACTIONS(9536), + [sym_stop_statement] = ACTIONS(9536), + [sym_beep_statement] = ACTIONS(9536), + [aux_sym_unload_statement_token1] = ACTIONS(9536), + [aux_sym_def_type_statement_token1] = ACTIONS(9536), + [aux_sym_def_type_statement_token2] = ACTIONS(9536), + [aux_sym_def_type_statement_token3] = ACTIONS(9536), + [aux_sym_def_type_statement_token4] = ACTIONS(9536), + [aux_sym_def_type_statement_token5] = ACTIONS(9536), + [aux_sym_def_type_statement_token6] = ACTIONS(9536), + [aux_sym_def_type_statement_token7] = ACTIONS(9536), + [aux_sym_def_type_statement_token8] = ACTIONS(9536), + [aux_sym_def_type_statement_token9] = ACTIONS(9536), + [aux_sym_def_type_statement_token10] = ACTIONS(9536), + [aux_sym_def_type_statement_token11] = ACTIONS(9536), + [aux_sym_def_type_statement_token12] = ACTIONS(9536), + [aux_sym_def_type_statement_token13] = ACTIONS(9536), + [aux_sym_def_type_statement_token14] = ACTIONS(9536), + [aux_sym_call_statement_token1] = ACTIONS(9536), + [sym__ambiguous_call_statement] = ACTIONS(9536), + [aux_sym_addressof_expression_token1] = ACTIONS(9536), + [aux_sym_type_of_expression_token1] = ACTIONS(9536), + [aux_sym_unary_expression_token1] = ACTIONS(9536), + [sym_string_literal] = ACTIONS(9538), + [sym_number_literal] = ACTIONS(9538), + [aux_sym_boolean_literal_token1] = ACTIONS(9536), + [aux_sym_boolean_literal_token2] = ACTIONS(9536), + [sym_nothing_literal] = ACTIONS(9536), + [sym_null_literal] = ACTIONS(9536), + [sym_empty_literal] = ACTIONS(9536), + [sym_date_literal] = ACTIONS(9538), + [anon_sym_POUND] = ACTIONS(9536), + }, + [STATE(5692)] = { + [sym_identifier] = ACTIONS(9542), + [sym_newline] = ACTIONS(9544), + [anon_sym_COLON] = ACTIONS(9544), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9542), + [aux_sym_frm_property_statement_token1] = ACTIONS(9542), + [anon_sym_DOT] = ACTIONS(9542), + [anon_sym_BANG] = ACTIONS(9544), + [aux_sym__attribute_identifier_token1] = ACTIONS(9542), + [aux_sym_option_statement_token3] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9542), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9542), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9542), + [aux_sym_preprocessor_const_token1] = ACTIONS(9542), + [sym_static_modifier] = ACTIONS(9542), + [sym__dim_keyword] = ACTIONS(9542), + [sym__redim_keyword] = ACTIONS(9542), + [aux_sym_get_accessor_token1] = ACTIONS(9542), + [aux_sym_set_accessor_token1] = ACTIONS(9542), + [aux_sym_const_declaration_token1] = ACTIONS(9542), + [anon_sym_LPAREN] = ACTIONS(9544), + [aux_sym_as_type_clause_token2] = ACTIONS(9542), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9542), + [aux_sym_visibility_token1] = ACTIONS(9542), + [aux_sym_visibility_token2] = ACTIONS(9542), + [aux_sym_elseif_fragment_token1] = ACTIONS(9542), + [aux_sym_else_fragment_token1] = ACTIONS(9542), + [aux_sym_select_statement_token1] = ACTIONS(9542), + [aux_sym__for_header_token1] = ACTIONS(9542), + [aux_sym_do_statement_token1] = ACTIONS(9542), + [aux_sym_do_condition_token1] = ACTIONS(9542), + [aux_sym_with_statement_token1] = ACTIONS(9542), + [aux_sym_exit_statement_token1] = ACTIONS(9542), + [sym_end_statement] = ACTIONS(9544), + [aux_sym_on_goto_statement_token1] = ACTIONS(9542), + [aux_sym_on_goto_statement_token2] = ACTIONS(9542), + [aux_sym_on_error_statement_token2] = ACTIONS(9542), + [sym__ambiguous_redim_statement] = ACTIONS(9544), + [aux_sym_erase_statement_token1] = ACTIONS(9542), + [aux_sym_open_statement_token1] = ACTIONS(9542), + [aux_sym_file_mode_token2] = ACTIONS(9542), + [aux_sym_file_access_token2] = ACTIONS(9542), + [aux_sym_file_lock_token2] = ACTIONS(9542), + [aux_sym_print_statement_token1] = ACTIONS(9542), + [anon_sym_PLUS] = ACTIONS(9544), + [anon_sym_DASH] = ACTIONS(9542), + [anon_sym_QMARK] = ACTIONS(9544), + [aux_sym_close_statement_token1] = ACTIONS(9542), + [aux_sym_put_statement_token1] = ACTIONS(9542), + [aux_sym_unlock_statement_token1] = ACTIONS(9542), + [aux_sym_seek_statement_token1] = ACTIONS(9542), + [sym_reset_statement] = ACTIONS(9542), + [aux_sym_raise_event_statement_token1] = ACTIONS(9542), + [sym_stop_statement] = ACTIONS(9542), + [sym_beep_statement] = ACTIONS(9542), + [aux_sym_unload_statement_token1] = ACTIONS(9542), + [aux_sym_def_type_statement_token1] = ACTIONS(9542), + [aux_sym_def_type_statement_token2] = ACTIONS(9542), + [aux_sym_def_type_statement_token3] = ACTIONS(9542), + [aux_sym_def_type_statement_token4] = ACTIONS(9542), + [aux_sym_def_type_statement_token5] = ACTIONS(9542), + [aux_sym_def_type_statement_token6] = ACTIONS(9542), + [aux_sym_def_type_statement_token7] = ACTIONS(9542), + [aux_sym_def_type_statement_token8] = ACTIONS(9542), + [aux_sym_def_type_statement_token9] = ACTIONS(9542), + [aux_sym_def_type_statement_token10] = ACTIONS(9542), + [aux_sym_def_type_statement_token11] = ACTIONS(9542), + [aux_sym_def_type_statement_token12] = ACTIONS(9542), + [aux_sym_def_type_statement_token13] = ACTIONS(9542), + [aux_sym_def_type_statement_token14] = ACTIONS(9542), + [aux_sym_call_statement_token1] = ACTIONS(9542), + [sym__ambiguous_call_statement] = ACTIONS(9542), + [aux_sym_addressof_expression_token1] = ACTIONS(9542), + [aux_sym_type_of_expression_token1] = ACTIONS(9542), + [aux_sym_unary_expression_token1] = ACTIONS(9542), + [sym_string_literal] = ACTIONS(9544), + [sym_number_literal] = ACTIONS(9544), + [aux_sym_boolean_literal_token1] = ACTIONS(9542), + [aux_sym_boolean_literal_token2] = ACTIONS(9542), + [sym_nothing_literal] = ACTIONS(9542), + [sym_null_literal] = ACTIONS(9542), + [sym_empty_literal] = ACTIONS(9542), + [sym_date_literal] = ACTIONS(9544), + [anon_sym_POUND] = ACTIONS(9542), + }, + [STATE(5693)] = { + [sym_identifier] = ACTIONS(9546), + [sym_newline] = ACTIONS(9548), + [anon_sym_COLON] = ACTIONS(9548), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9546), + [aux_sym_frm_property_statement_token1] = ACTIONS(9546), + [anon_sym_DOT] = ACTIONS(9546), + [anon_sym_BANG] = ACTIONS(9548), + [aux_sym__attribute_identifier_token1] = ACTIONS(9546), + [aux_sym_option_statement_token3] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9546), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9546), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9546), + [aux_sym_preprocessor_const_token1] = ACTIONS(9546), + [sym_static_modifier] = ACTIONS(9546), + [sym__dim_keyword] = ACTIONS(9546), + [sym__redim_keyword] = ACTIONS(9546), + [aux_sym_get_accessor_token1] = ACTIONS(9546), + [aux_sym_set_accessor_token1] = ACTIONS(9546), + [aux_sym_const_declaration_token1] = ACTIONS(9546), + [anon_sym_LPAREN] = ACTIONS(9548), + [aux_sym_as_type_clause_token2] = ACTIONS(9546), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9546), + [aux_sym_visibility_token1] = ACTIONS(9546), + [aux_sym_visibility_token2] = ACTIONS(9546), + [aux_sym_elseif_fragment_token1] = ACTIONS(9546), + [aux_sym_else_fragment_token1] = ACTIONS(9546), + [aux_sym_select_statement_token1] = ACTIONS(9546), + [aux_sym__for_header_token1] = ACTIONS(9546), + [aux_sym_do_statement_token1] = ACTIONS(9546), + [aux_sym_do_condition_token1] = ACTIONS(9546), + [aux_sym_with_statement_token1] = ACTIONS(9546), + [aux_sym_exit_statement_token1] = ACTIONS(9546), + [sym_end_statement] = ACTIONS(9548), + [aux_sym_on_goto_statement_token1] = ACTIONS(9546), + [aux_sym_on_goto_statement_token2] = ACTIONS(9546), + [aux_sym_on_error_statement_token2] = ACTIONS(9546), + [sym__ambiguous_redim_statement] = ACTIONS(9548), + [aux_sym_erase_statement_token1] = ACTIONS(9546), + [aux_sym_open_statement_token1] = ACTIONS(9546), + [aux_sym_file_mode_token2] = ACTIONS(9546), + [aux_sym_file_access_token2] = ACTIONS(9546), + [aux_sym_file_lock_token2] = ACTIONS(9546), + [aux_sym_print_statement_token1] = ACTIONS(9546), + [anon_sym_PLUS] = ACTIONS(9548), + [anon_sym_DASH] = ACTIONS(9546), + [anon_sym_QMARK] = ACTIONS(9548), + [aux_sym_close_statement_token1] = ACTIONS(9546), + [aux_sym_put_statement_token1] = ACTIONS(9546), + [aux_sym_unlock_statement_token1] = ACTIONS(9546), + [aux_sym_seek_statement_token1] = ACTIONS(9546), + [sym_reset_statement] = ACTIONS(9546), + [aux_sym_raise_event_statement_token1] = ACTIONS(9546), + [sym_stop_statement] = ACTIONS(9546), + [sym_beep_statement] = ACTIONS(9546), + [aux_sym_unload_statement_token1] = ACTIONS(9546), + [aux_sym_def_type_statement_token1] = ACTIONS(9546), + [aux_sym_def_type_statement_token2] = ACTIONS(9546), + [aux_sym_def_type_statement_token3] = ACTIONS(9546), + [aux_sym_def_type_statement_token4] = ACTIONS(9546), + [aux_sym_def_type_statement_token5] = ACTIONS(9546), + [aux_sym_def_type_statement_token6] = ACTIONS(9546), + [aux_sym_def_type_statement_token7] = ACTIONS(9546), + [aux_sym_def_type_statement_token8] = ACTIONS(9546), + [aux_sym_def_type_statement_token9] = ACTIONS(9546), + [aux_sym_def_type_statement_token10] = ACTIONS(9546), + [aux_sym_def_type_statement_token11] = ACTIONS(9546), + [aux_sym_def_type_statement_token12] = ACTIONS(9546), + [aux_sym_def_type_statement_token13] = ACTIONS(9546), + [aux_sym_def_type_statement_token14] = ACTIONS(9546), + [aux_sym_call_statement_token1] = ACTIONS(9546), + [sym__ambiguous_call_statement] = ACTIONS(9546), + [aux_sym_addressof_expression_token1] = ACTIONS(9546), + [aux_sym_type_of_expression_token1] = ACTIONS(9546), + [aux_sym_unary_expression_token1] = ACTIONS(9546), + [sym_string_literal] = ACTIONS(9548), + [sym_number_literal] = ACTIONS(9548), + [aux_sym_boolean_literal_token1] = ACTIONS(9546), + [aux_sym_boolean_literal_token2] = ACTIONS(9546), + [sym_nothing_literal] = ACTIONS(9546), + [sym_null_literal] = ACTIONS(9546), + [sym_empty_literal] = ACTIONS(9546), + [sym_date_literal] = ACTIONS(9548), + [anon_sym_POUND] = ACTIONS(9546), + }, + [STATE(5694)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5694), + [sym_identifier] = ACTIONS(8386), + [sym_newline] = ACTIONS(8388), + [anon_sym_COLON] = ACTIONS(8388), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8386), + [aux_sym_frm_property_statement_token1] = ACTIONS(8386), + [anon_sym_DOT] = ACTIONS(8386), + [anon_sym_BANG] = ACTIONS(8388), + [aux_sym__attribute_identifier_token1] = ACTIONS(8386), + [aux_sym_option_statement_token3] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8386), + [aux_sym_preprocessor_const_token1] = ACTIONS(8386), + [sym_static_modifier] = ACTIONS(8386), + [sym__dim_keyword] = ACTIONS(8386), + [sym__redim_keyword] = ACTIONS(8386), + [aux_sym_get_accessor_token1] = ACTIONS(8386), + [aux_sym_set_accessor_token1] = ACTIONS(8386), + [anon_sym_COMMA] = ACTIONS(10772), + [aux_sym_const_declaration_token1] = ACTIONS(8386), + [anon_sym_LPAREN] = ACTIONS(8388), + [aux_sym_as_type_clause_token2] = ACTIONS(8386), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8386), + [aux_sym_visibility_token1] = ACTIONS(8386), + [aux_sym_visibility_token2] = ACTIONS(8386), + [aux_sym_elseif_fragment_token1] = ACTIONS(8386), + [aux_sym_else_fragment_token1] = ACTIONS(8386), + [aux_sym_select_statement_token1] = ACTIONS(8386), + [aux_sym_select_statement_token2] = ACTIONS(8386), + [aux_sym__for_header_token1] = ACTIONS(8386), + [aux_sym_do_statement_token1] = ACTIONS(8386), + [aux_sym_do_condition_token1] = ACTIONS(8386), + [aux_sym_with_statement_token1] = ACTIONS(8386), + [aux_sym_exit_statement_token1] = ACTIONS(8386), + [sym_end_statement] = ACTIONS(8388), + [aux_sym_on_goto_statement_token1] = ACTIONS(8386), + [aux_sym_on_goto_statement_token2] = ACTIONS(8386), + [aux_sym_on_error_statement_token2] = ACTIONS(8386), + [sym__ambiguous_redim_statement] = ACTIONS(8388), + [aux_sym_erase_statement_token1] = ACTIONS(8386), + [aux_sym_open_statement_token1] = ACTIONS(8386), + [aux_sym_file_mode_token2] = ACTIONS(8386), + [aux_sym_file_access_token2] = ACTIONS(8386), + [aux_sym_file_lock_token2] = ACTIONS(8386), + [aux_sym_print_statement_token1] = ACTIONS(8386), + [anon_sym_PLUS] = ACTIONS(8388), + [anon_sym_DASH] = ACTIONS(8386), + [anon_sym_QMARK] = ACTIONS(8388), + [aux_sym_close_statement_token1] = ACTIONS(8386), + [aux_sym_put_statement_token1] = ACTIONS(8386), + [aux_sym_unlock_statement_token1] = ACTIONS(8386), + [aux_sym_seek_statement_token1] = ACTIONS(8386), + [sym_reset_statement] = ACTIONS(8386), + [aux_sym_raise_event_statement_token1] = ACTIONS(8386), + [sym_stop_statement] = ACTIONS(8386), + [sym_beep_statement] = ACTIONS(8386), + [aux_sym_unload_statement_token1] = ACTIONS(8386), + [aux_sym_def_type_statement_token1] = ACTIONS(8386), + [aux_sym_def_type_statement_token2] = ACTIONS(8386), + [aux_sym_def_type_statement_token3] = ACTIONS(8386), + [aux_sym_def_type_statement_token4] = ACTIONS(8386), + [aux_sym_def_type_statement_token5] = ACTIONS(8386), + [aux_sym_def_type_statement_token6] = ACTIONS(8386), + [aux_sym_def_type_statement_token7] = ACTIONS(8386), + [aux_sym_def_type_statement_token8] = ACTIONS(8386), + [aux_sym_def_type_statement_token9] = ACTIONS(8386), + [aux_sym_def_type_statement_token10] = ACTIONS(8386), + [aux_sym_def_type_statement_token11] = ACTIONS(8386), + [aux_sym_def_type_statement_token12] = ACTIONS(8386), + [aux_sym_def_type_statement_token13] = ACTIONS(8386), + [aux_sym_def_type_statement_token14] = ACTIONS(8386), + [aux_sym_call_statement_token1] = ACTIONS(8386), + [sym__ambiguous_call_statement] = ACTIONS(8386), + [aux_sym_addressof_expression_token1] = ACTIONS(8386), + [aux_sym_type_of_expression_token1] = ACTIONS(8386), + [aux_sym_unary_expression_token1] = ACTIONS(8386), + [sym_string_literal] = ACTIONS(8388), + [sym_number_literal] = ACTIONS(8388), + [aux_sym_boolean_literal_token1] = ACTIONS(8386), + [aux_sym_boolean_literal_token2] = ACTIONS(8386), + [sym_nothing_literal] = ACTIONS(8386), + [sym_null_literal] = ACTIONS(8386), + [sym_empty_literal] = ACTIONS(8386), + [sym_date_literal] = ACTIONS(8388), + [anon_sym_POUND] = ACTIONS(8386), + }, + [STATE(5695)] = { + [sym_array_bounds] = STATE(6049), + [sym_identifier] = ACTIONS(8081), + [sym_newline] = ACTIONS(8083), + [anon_sym_COLON] = ACTIONS(8083), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8081), + [aux_sym_frm_property_statement_token1] = ACTIONS(8081), + [anon_sym_EQ] = ACTIONS(8083), + [anon_sym_DOT] = ACTIONS(8081), + [anon_sym_BANG] = ACTIONS(8083), + [aux_sym__attribute_identifier_token1] = ACTIONS(8081), + [aux_sym_option_statement_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8081), + [aux_sym_preprocessor_const_token1] = ACTIONS(8081), + [sym_static_modifier] = ACTIONS(8081), + [sym__dim_keyword] = ACTIONS(8081), + [sym__redim_keyword] = ACTIONS(8081), + [aux_sym_get_accessor_token1] = ACTIONS(8081), + [aux_sym_set_accessor_token1] = ACTIONS(8081), + [anon_sym_COMMA] = ACTIONS(8083), + [aux_sym_const_declaration_token1] = ACTIONS(8081), + [anon_sym_LPAREN] = ACTIONS(10140), + [aux_sym_as_type_clause_token2] = ACTIONS(8081), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8081), + [aux_sym_visibility_token1] = ACTIONS(8081), + [aux_sym_visibility_token2] = ACTIONS(8081), + [aux_sym_elseif_fragment_token1] = ACTIONS(8081), + [aux_sym_else_fragment_token1] = ACTIONS(8081), + [aux_sym_select_statement_token1] = ACTIONS(8081), + [aux_sym__for_header_token1] = ACTIONS(8081), + [aux_sym_do_statement_token1] = ACTIONS(8081), + [aux_sym_do_condition_token1] = ACTIONS(8081), + [aux_sym_with_statement_token1] = ACTIONS(8081), + [aux_sym_exit_statement_token1] = ACTIONS(8081), + [sym_end_statement] = ACTIONS(8083), + [aux_sym_on_goto_statement_token1] = ACTIONS(8081), + [aux_sym_on_goto_statement_token2] = ACTIONS(8081), + [aux_sym_on_error_statement_token2] = ACTIONS(8081), + [sym__ambiguous_redim_statement] = ACTIONS(8083), + [aux_sym_erase_statement_token1] = ACTIONS(8081), + [aux_sym_open_statement_token1] = ACTIONS(8081), + [aux_sym_file_mode_token2] = ACTIONS(8081), + [aux_sym_file_access_token2] = ACTIONS(8081), + [aux_sym_file_lock_token2] = ACTIONS(8081), + [aux_sym_print_statement_token1] = ACTIONS(8081), + [anon_sym_PLUS] = ACTIONS(8083), + [anon_sym_DASH] = ACTIONS(8081), + [anon_sym_QMARK] = ACTIONS(8083), + [aux_sym_close_statement_token1] = ACTIONS(8081), + [aux_sym_put_statement_token1] = ACTIONS(8081), + [aux_sym_unlock_statement_token1] = ACTIONS(8081), + [aux_sym_seek_statement_token1] = ACTIONS(8081), + [sym_reset_statement] = ACTIONS(8081), + [aux_sym_raise_event_statement_token1] = ACTIONS(8081), + [sym_stop_statement] = ACTIONS(8081), + [sym_beep_statement] = ACTIONS(8081), + [aux_sym_unload_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token2] = ACTIONS(8081), + [aux_sym_def_type_statement_token3] = ACTIONS(8081), + [aux_sym_def_type_statement_token4] = ACTIONS(8081), + [aux_sym_def_type_statement_token5] = ACTIONS(8081), + [aux_sym_def_type_statement_token6] = ACTIONS(8081), + [aux_sym_def_type_statement_token7] = ACTIONS(8081), + [aux_sym_def_type_statement_token8] = ACTIONS(8081), + [aux_sym_def_type_statement_token9] = ACTIONS(8081), + [aux_sym_def_type_statement_token10] = ACTIONS(8081), + [aux_sym_def_type_statement_token11] = ACTIONS(8081), + [aux_sym_def_type_statement_token12] = ACTIONS(8081), + [aux_sym_def_type_statement_token13] = ACTIONS(8081), + [aux_sym_def_type_statement_token14] = ACTIONS(8081), + [aux_sym_call_statement_token1] = ACTIONS(8081), + [sym__ambiguous_call_statement] = ACTIONS(8081), + [aux_sym_addressof_expression_token1] = ACTIONS(8081), + [aux_sym_type_of_expression_token1] = ACTIONS(8081), + [aux_sym_unary_expression_token1] = ACTIONS(8081), + [sym_string_literal] = ACTIONS(8083), + [sym_number_literal] = ACTIONS(8083), + [aux_sym_boolean_literal_token1] = ACTIONS(8081), + [aux_sym_boolean_literal_token2] = ACTIONS(8081), + [sym_nothing_literal] = ACTIONS(8081), + [sym_null_literal] = ACTIONS(8081), + [sym_empty_literal] = ACTIONS(8081), + [sym_date_literal] = ACTIONS(8083), + [anon_sym_POUND] = ACTIONS(8081), + }, + [STATE(5696)] = { + [sym_do_condition] = STATE(6640), + [sym_identifier] = ACTIONS(8415), + [sym_newline] = ACTIONS(8417), + [anon_sym_COLON] = ACTIONS(8417), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8415), + [aux_sym_frm_property_statement_token1] = ACTIONS(8415), + [anon_sym_DOT] = ACTIONS(8415), + [anon_sym_BANG] = ACTIONS(8417), + [aux_sym__attribute_identifier_token1] = ACTIONS(8415), + [aux_sym_option_statement_token3] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8415), + [aux_sym_preprocessor_const_token1] = ACTIONS(8415), + [sym_static_modifier] = ACTIONS(8415), + [sym__dim_keyword] = ACTIONS(8415), + [sym__redim_keyword] = ACTIONS(8415), + [aux_sym_get_accessor_token1] = ACTIONS(8415), + [aux_sym_set_accessor_token1] = ACTIONS(8415), + [aux_sym_const_declaration_token1] = ACTIONS(8415), + [anon_sym_LPAREN] = ACTIONS(8417), + [aux_sym_as_type_clause_token2] = ACTIONS(8415), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8415), + [aux_sym_visibility_token1] = ACTIONS(8415), + [aux_sym_visibility_token2] = ACTIONS(8415), + [aux_sym_elseif_fragment_token1] = ACTIONS(8415), + [aux_sym_else_fragment_token1] = ACTIONS(8415), + [aux_sym_select_statement_token1] = ACTIONS(8415), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8415), + [aux_sym__for_header_token1] = ACTIONS(8415), + [aux_sym_do_statement_token1] = ACTIONS(8415), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8415), + [aux_sym_exit_statement_token1] = ACTIONS(8415), + [sym_end_statement] = ACTIONS(8417), + [aux_sym_on_goto_statement_token1] = ACTIONS(8415), + [aux_sym_on_goto_statement_token2] = ACTIONS(8415), + [aux_sym_on_error_statement_token2] = ACTIONS(8415), + [sym__ambiguous_redim_statement] = ACTIONS(8417), + [aux_sym_erase_statement_token1] = ACTIONS(8415), + [aux_sym_open_statement_token1] = ACTIONS(8415), + [aux_sym_file_mode_token2] = ACTIONS(8415), + [aux_sym_file_access_token2] = ACTIONS(8415), + [aux_sym_file_lock_token2] = ACTIONS(8415), + [aux_sym_print_statement_token1] = ACTIONS(8415), + [anon_sym_PLUS] = ACTIONS(8417), + [anon_sym_DASH] = ACTIONS(8415), + [anon_sym_QMARK] = ACTIONS(8417), + [aux_sym_close_statement_token1] = ACTIONS(8415), + [aux_sym_put_statement_token1] = ACTIONS(8415), + [aux_sym_unlock_statement_token1] = ACTIONS(8415), + [aux_sym_seek_statement_token1] = ACTIONS(8415), + [sym_reset_statement] = ACTIONS(8415), + [aux_sym_raise_event_statement_token1] = ACTIONS(8415), + [sym_stop_statement] = ACTIONS(8415), + [sym_beep_statement] = ACTIONS(8415), + [aux_sym_unload_statement_token1] = ACTIONS(8415), + [aux_sym_def_type_statement_token1] = ACTIONS(8415), + [aux_sym_def_type_statement_token2] = ACTIONS(8415), + [aux_sym_def_type_statement_token3] = ACTIONS(8415), + [aux_sym_def_type_statement_token4] = ACTIONS(8415), + [aux_sym_def_type_statement_token5] = ACTIONS(8415), + [aux_sym_def_type_statement_token6] = ACTIONS(8415), + [aux_sym_def_type_statement_token7] = ACTIONS(8415), + [aux_sym_def_type_statement_token8] = ACTIONS(8415), + [aux_sym_def_type_statement_token9] = ACTIONS(8415), + [aux_sym_def_type_statement_token10] = ACTIONS(8415), + [aux_sym_def_type_statement_token11] = ACTIONS(8415), + [aux_sym_def_type_statement_token12] = ACTIONS(8415), + [aux_sym_def_type_statement_token13] = ACTIONS(8415), + [aux_sym_def_type_statement_token14] = ACTIONS(8415), + [aux_sym_call_statement_token1] = ACTIONS(8415), + [sym__ambiguous_call_statement] = ACTIONS(8415), + [aux_sym_addressof_expression_token1] = ACTIONS(8415), + [aux_sym_type_of_expression_token1] = ACTIONS(8415), + [aux_sym_unary_expression_token1] = ACTIONS(8415), + [sym_string_literal] = ACTIONS(8417), + [sym_number_literal] = ACTIONS(8417), + [aux_sym_boolean_literal_token1] = ACTIONS(8415), + [aux_sym_boolean_literal_token2] = ACTIONS(8415), + [sym_nothing_literal] = ACTIONS(8415), + [sym_null_literal] = ACTIONS(8415), + [sym_empty_literal] = ACTIONS(8415), + [sym_date_literal] = ACTIONS(8417), + [anon_sym_POUND] = ACTIONS(8415), + }, + [STATE(5697)] = { + [sym_do_condition] = STATE(6642), + [sym_identifier] = ACTIONS(8419), + [sym_newline] = ACTIONS(8421), + [anon_sym_COLON] = ACTIONS(8421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8419), + [aux_sym_frm_property_statement_token1] = ACTIONS(8419), + [anon_sym_DOT] = ACTIONS(8419), + [anon_sym_BANG] = ACTIONS(8421), + [aux_sym__attribute_identifier_token1] = ACTIONS(8419), + [aux_sym_option_statement_token3] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8419), + [aux_sym_preprocessor_const_token1] = ACTIONS(8419), + [sym_static_modifier] = ACTIONS(8419), + [sym__dim_keyword] = ACTIONS(8419), + [sym__redim_keyword] = ACTIONS(8419), + [aux_sym_get_accessor_token1] = ACTIONS(8419), + [aux_sym_set_accessor_token1] = ACTIONS(8419), + [aux_sym_const_declaration_token1] = ACTIONS(8419), + [anon_sym_LPAREN] = ACTIONS(8421), + [aux_sym_as_type_clause_token2] = ACTIONS(8419), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8419), + [aux_sym_visibility_token1] = ACTIONS(8419), + [aux_sym_visibility_token2] = ACTIONS(8419), + [aux_sym_elseif_fragment_token1] = ACTIONS(8419), + [aux_sym_else_fragment_token1] = ACTIONS(8419), + [aux_sym_select_statement_token1] = ACTIONS(8419), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8419), + [aux_sym__for_header_token1] = ACTIONS(8419), + [aux_sym_do_statement_token1] = ACTIONS(8419), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8419), + [aux_sym_exit_statement_token1] = ACTIONS(8419), + [sym_end_statement] = ACTIONS(8421), + [aux_sym_on_goto_statement_token1] = ACTIONS(8419), + [aux_sym_on_goto_statement_token2] = ACTIONS(8419), + [aux_sym_on_error_statement_token2] = ACTIONS(8419), + [sym__ambiguous_redim_statement] = ACTIONS(8421), + [aux_sym_erase_statement_token1] = ACTIONS(8419), + [aux_sym_open_statement_token1] = ACTIONS(8419), + [aux_sym_file_mode_token2] = ACTIONS(8419), + [aux_sym_file_access_token2] = ACTIONS(8419), + [aux_sym_file_lock_token2] = ACTIONS(8419), + [aux_sym_print_statement_token1] = ACTIONS(8419), + [anon_sym_PLUS] = ACTIONS(8421), + [anon_sym_DASH] = ACTIONS(8419), + [anon_sym_QMARK] = ACTIONS(8421), + [aux_sym_close_statement_token1] = ACTIONS(8419), + [aux_sym_put_statement_token1] = ACTIONS(8419), + [aux_sym_unlock_statement_token1] = ACTIONS(8419), + [aux_sym_seek_statement_token1] = ACTIONS(8419), + [sym_reset_statement] = ACTIONS(8419), + [aux_sym_raise_event_statement_token1] = ACTIONS(8419), + [sym_stop_statement] = ACTIONS(8419), + [sym_beep_statement] = ACTIONS(8419), + [aux_sym_unload_statement_token1] = ACTIONS(8419), + [aux_sym_def_type_statement_token1] = ACTIONS(8419), + [aux_sym_def_type_statement_token2] = ACTIONS(8419), + [aux_sym_def_type_statement_token3] = ACTIONS(8419), + [aux_sym_def_type_statement_token4] = ACTIONS(8419), + [aux_sym_def_type_statement_token5] = ACTIONS(8419), + [aux_sym_def_type_statement_token6] = ACTIONS(8419), + [aux_sym_def_type_statement_token7] = ACTIONS(8419), + [aux_sym_def_type_statement_token8] = ACTIONS(8419), + [aux_sym_def_type_statement_token9] = ACTIONS(8419), + [aux_sym_def_type_statement_token10] = ACTIONS(8419), + [aux_sym_def_type_statement_token11] = ACTIONS(8419), + [aux_sym_def_type_statement_token12] = ACTIONS(8419), + [aux_sym_def_type_statement_token13] = ACTIONS(8419), + [aux_sym_def_type_statement_token14] = ACTIONS(8419), + [aux_sym_call_statement_token1] = ACTIONS(8419), + [sym__ambiguous_call_statement] = ACTIONS(8419), + [aux_sym_addressof_expression_token1] = ACTIONS(8419), + [aux_sym_type_of_expression_token1] = ACTIONS(8419), + [aux_sym_unary_expression_token1] = ACTIONS(8419), + [sym_string_literal] = ACTIONS(8421), + [sym_number_literal] = ACTIONS(8421), + [aux_sym_boolean_literal_token1] = ACTIONS(8419), + [aux_sym_boolean_literal_token2] = ACTIONS(8419), + [sym_nothing_literal] = ACTIONS(8419), + [sym_null_literal] = ACTIONS(8419), + [sym_empty_literal] = ACTIONS(8419), + [sym_date_literal] = ACTIONS(8421), + [anon_sym_POUND] = ACTIONS(8419), + }, + [STATE(5698)] = { + [aux_sym_redim_statement_repeat1] = STATE(5308), + [sym_identifier] = ACTIONS(8368), + [sym_newline] = ACTIONS(8370), + [anon_sym_COLON] = ACTIONS(8370), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8368), + [aux_sym_frm_property_statement_token1] = ACTIONS(8368), + [anon_sym_DOT] = ACTIONS(8368), + [anon_sym_BANG] = ACTIONS(8370), + [aux_sym__attribute_identifier_token1] = ACTIONS(8368), + [aux_sym_option_statement_token3] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8368), + [aux_sym_preprocessor_const_token1] = ACTIONS(8368), + [sym_static_modifier] = ACTIONS(8368), + [sym__dim_keyword] = ACTIONS(8368), + [sym__redim_keyword] = ACTIONS(8368), + [aux_sym_get_accessor_token1] = ACTIONS(8368), + [aux_sym_set_accessor_token1] = ACTIONS(8368), + [anon_sym_COMMA] = ACTIONS(10547), + [aux_sym_const_declaration_token1] = ACTIONS(8368), + [anon_sym_LPAREN] = ACTIONS(8370), + [aux_sym_as_type_clause_token2] = ACTIONS(8368), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8368), + [aux_sym_visibility_token1] = ACTIONS(8368), + [aux_sym_visibility_token2] = ACTIONS(8368), + [aux_sym_elseif_fragment_token1] = ACTIONS(8368), + [aux_sym_else_fragment_token1] = ACTIONS(8368), + [aux_sym_select_statement_token1] = ACTIONS(8368), + [aux_sym__for_header_token1] = ACTIONS(8368), + [aux_sym_do_statement_token1] = ACTIONS(8368), + [aux_sym_do_condition_token1] = ACTIONS(8368), + [aux_sym_with_statement_token1] = ACTIONS(8368), + [aux_sym_exit_statement_token1] = ACTIONS(8368), + [sym_end_statement] = ACTIONS(8370), + [aux_sym_on_goto_statement_token1] = ACTIONS(8368), + [aux_sym_on_goto_statement_token2] = ACTIONS(8368), + [aux_sym_on_error_statement_token2] = ACTIONS(8368), + [sym__ambiguous_redim_statement] = ACTIONS(8370), + [aux_sym_erase_statement_token1] = ACTIONS(8368), + [aux_sym_open_statement_token1] = ACTIONS(8368), + [aux_sym_file_mode_token2] = ACTIONS(8368), + [aux_sym_file_access_token2] = ACTIONS(8368), + [aux_sym_file_lock_token2] = ACTIONS(8368), + [aux_sym_print_statement_token1] = ACTIONS(8368), + [anon_sym_PLUS] = ACTIONS(8370), + [anon_sym_DASH] = ACTIONS(8368), + [anon_sym_QMARK] = ACTIONS(8370), + [aux_sym_close_statement_token1] = ACTIONS(8368), + [aux_sym_put_statement_token1] = ACTIONS(8368), + [aux_sym_unlock_statement_token1] = ACTIONS(8368), + [aux_sym_seek_statement_token1] = ACTIONS(8368), + [sym_reset_statement] = ACTIONS(8368), + [aux_sym_raise_event_statement_token1] = ACTIONS(8368), + [sym_stop_statement] = ACTIONS(8368), + [sym_beep_statement] = ACTIONS(8368), + [aux_sym_unload_statement_token1] = ACTIONS(8368), + [aux_sym_def_type_statement_token1] = ACTIONS(8368), + [aux_sym_def_type_statement_token2] = ACTIONS(8368), + [aux_sym_def_type_statement_token3] = ACTIONS(8368), + [aux_sym_def_type_statement_token4] = ACTIONS(8368), + [aux_sym_def_type_statement_token5] = ACTIONS(8368), + [aux_sym_def_type_statement_token6] = ACTIONS(8368), + [aux_sym_def_type_statement_token7] = ACTIONS(8368), + [aux_sym_def_type_statement_token8] = ACTIONS(8368), + [aux_sym_def_type_statement_token9] = ACTIONS(8368), + [aux_sym_def_type_statement_token10] = ACTIONS(8368), + [aux_sym_def_type_statement_token11] = ACTIONS(8368), + [aux_sym_def_type_statement_token12] = ACTIONS(8368), + [aux_sym_def_type_statement_token13] = ACTIONS(8368), + [aux_sym_def_type_statement_token14] = ACTIONS(8368), + [aux_sym_call_statement_token1] = ACTIONS(8368), + [sym__ambiguous_call_statement] = ACTIONS(8368), + [aux_sym_addressof_expression_token1] = ACTIONS(8368), + [aux_sym_type_of_expression_token1] = ACTIONS(8368), + [aux_sym_unary_expression_token1] = ACTIONS(8368), + [sym_string_literal] = ACTIONS(8370), + [sym_number_literal] = ACTIONS(8370), + [aux_sym_boolean_literal_token1] = ACTIONS(8368), + [aux_sym_boolean_literal_token2] = ACTIONS(8368), + [sym_nothing_literal] = ACTIONS(8368), + [sym_null_literal] = ACTIONS(8368), + [sym_empty_literal] = ACTIONS(8368), + [sym_date_literal] = ACTIONS(8370), + [anon_sym_POUND] = ACTIONS(8368), + }, + [STATE(5699)] = { + [sym_do_condition] = STATE(6643), + [sym_identifier] = ACTIONS(8423), + [sym_newline] = ACTIONS(8425), + [anon_sym_COLON] = ACTIONS(8425), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8423), + [aux_sym_frm_property_statement_token1] = ACTIONS(8423), + [anon_sym_DOT] = ACTIONS(8423), + [anon_sym_BANG] = ACTIONS(8425), + [aux_sym__attribute_identifier_token1] = ACTIONS(8423), + [aux_sym_option_statement_token3] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8423), + [aux_sym_preprocessor_const_token1] = ACTIONS(8423), + [sym_static_modifier] = ACTIONS(8423), + [sym__dim_keyword] = ACTIONS(8423), + [sym__redim_keyword] = ACTIONS(8423), + [aux_sym_get_accessor_token1] = ACTIONS(8423), + [aux_sym_set_accessor_token1] = ACTIONS(8423), + [aux_sym_const_declaration_token1] = ACTIONS(8423), + [anon_sym_LPAREN] = ACTIONS(8425), + [aux_sym_as_type_clause_token2] = ACTIONS(8423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8423), + [aux_sym_visibility_token1] = ACTIONS(8423), + [aux_sym_visibility_token2] = ACTIONS(8423), + [aux_sym_elseif_fragment_token1] = ACTIONS(8423), + [aux_sym_else_fragment_token1] = ACTIONS(8423), + [aux_sym_select_statement_token1] = ACTIONS(8423), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8423), + [aux_sym__for_header_token1] = ACTIONS(8423), + [aux_sym_do_statement_token1] = ACTIONS(8423), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8423), + [aux_sym_exit_statement_token1] = ACTIONS(8423), + [sym_end_statement] = ACTIONS(8425), + [aux_sym_on_goto_statement_token1] = ACTIONS(8423), + [aux_sym_on_goto_statement_token2] = ACTIONS(8423), + [aux_sym_on_error_statement_token2] = ACTIONS(8423), + [sym__ambiguous_redim_statement] = ACTIONS(8425), + [aux_sym_erase_statement_token1] = ACTIONS(8423), + [aux_sym_open_statement_token1] = ACTIONS(8423), + [aux_sym_file_mode_token2] = ACTIONS(8423), + [aux_sym_file_access_token2] = ACTIONS(8423), + [aux_sym_file_lock_token2] = ACTIONS(8423), + [aux_sym_print_statement_token1] = ACTIONS(8423), + [anon_sym_PLUS] = ACTIONS(8425), + [anon_sym_DASH] = ACTIONS(8423), + [anon_sym_QMARK] = ACTIONS(8425), + [aux_sym_close_statement_token1] = ACTIONS(8423), + [aux_sym_put_statement_token1] = ACTIONS(8423), + [aux_sym_unlock_statement_token1] = ACTIONS(8423), + [aux_sym_seek_statement_token1] = ACTIONS(8423), + [sym_reset_statement] = ACTIONS(8423), + [aux_sym_raise_event_statement_token1] = ACTIONS(8423), + [sym_stop_statement] = ACTIONS(8423), + [sym_beep_statement] = ACTIONS(8423), + [aux_sym_unload_statement_token1] = ACTIONS(8423), + [aux_sym_def_type_statement_token1] = ACTIONS(8423), + [aux_sym_def_type_statement_token2] = ACTIONS(8423), + [aux_sym_def_type_statement_token3] = ACTIONS(8423), + [aux_sym_def_type_statement_token4] = ACTIONS(8423), + [aux_sym_def_type_statement_token5] = ACTIONS(8423), + [aux_sym_def_type_statement_token6] = ACTIONS(8423), + [aux_sym_def_type_statement_token7] = ACTIONS(8423), + [aux_sym_def_type_statement_token8] = ACTIONS(8423), + [aux_sym_def_type_statement_token9] = ACTIONS(8423), + [aux_sym_def_type_statement_token10] = ACTIONS(8423), + [aux_sym_def_type_statement_token11] = ACTIONS(8423), + [aux_sym_def_type_statement_token12] = ACTIONS(8423), + [aux_sym_def_type_statement_token13] = ACTIONS(8423), + [aux_sym_def_type_statement_token14] = ACTIONS(8423), + [aux_sym_call_statement_token1] = ACTIONS(8423), + [sym__ambiguous_call_statement] = ACTIONS(8423), + [aux_sym_addressof_expression_token1] = ACTIONS(8423), + [aux_sym_type_of_expression_token1] = ACTIONS(8423), + [aux_sym_unary_expression_token1] = ACTIONS(8423), + [sym_string_literal] = ACTIONS(8425), + [sym_number_literal] = ACTIONS(8425), + [aux_sym_boolean_literal_token1] = ACTIONS(8423), + [aux_sym_boolean_literal_token2] = ACTIONS(8423), + [sym_nothing_literal] = ACTIONS(8423), + [sym_null_literal] = ACTIONS(8423), + [sym_empty_literal] = ACTIONS(8423), + [sym_date_literal] = ACTIONS(8425), + [anon_sym_POUND] = ACTIONS(8423), + }, + [STATE(5700)] = { + [sym_do_condition] = STATE(6645), + [sym_identifier] = ACTIONS(8427), + [sym_newline] = ACTIONS(8429), + [anon_sym_COLON] = ACTIONS(8429), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8427), + [aux_sym_frm_property_statement_token1] = ACTIONS(8427), + [anon_sym_DOT] = ACTIONS(8427), + [anon_sym_BANG] = ACTIONS(8429), + [aux_sym__attribute_identifier_token1] = ACTIONS(8427), + [aux_sym_option_statement_token3] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8427), + [aux_sym_preprocessor_const_token1] = ACTIONS(8427), + [sym_static_modifier] = ACTIONS(8427), + [sym__dim_keyword] = ACTIONS(8427), + [sym__redim_keyword] = ACTIONS(8427), + [aux_sym_get_accessor_token1] = ACTIONS(8427), + [aux_sym_set_accessor_token1] = ACTIONS(8427), + [aux_sym_const_declaration_token1] = ACTIONS(8427), + [anon_sym_LPAREN] = ACTIONS(8429), + [aux_sym_as_type_clause_token2] = ACTIONS(8427), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8427), + [aux_sym_visibility_token1] = ACTIONS(8427), + [aux_sym_visibility_token2] = ACTIONS(8427), + [aux_sym_elseif_fragment_token1] = ACTIONS(8427), + [aux_sym_else_fragment_token1] = ACTIONS(8427), + [aux_sym_select_statement_token1] = ACTIONS(8427), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8427), + [aux_sym__for_header_token1] = ACTIONS(8427), + [aux_sym_do_statement_token1] = ACTIONS(8427), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8427), + [aux_sym_exit_statement_token1] = ACTIONS(8427), + [sym_end_statement] = ACTIONS(8429), + [aux_sym_on_goto_statement_token1] = ACTIONS(8427), + [aux_sym_on_goto_statement_token2] = ACTIONS(8427), + [aux_sym_on_error_statement_token2] = ACTIONS(8427), + [sym__ambiguous_redim_statement] = ACTIONS(8429), + [aux_sym_erase_statement_token1] = ACTIONS(8427), + [aux_sym_open_statement_token1] = ACTIONS(8427), + [aux_sym_file_mode_token2] = ACTIONS(8427), + [aux_sym_file_access_token2] = ACTIONS(8427), + [aux_sym_file_lock_token2] = ACTIONS(8427), + [aux_sym_print_statement_token1] = ACTIONS(8427), + [anon_sym_PLUS] = ACTIONS(8429), + [anon_sym_DASH] = ACTIONS(8427), + [anon_sym_QMARK] = ACTIONS(8429), + [aux_sym_close_statement_token1] = ACTIONS(8427), + [aux_sym_put_statement_token1] = ACTIONS(8427), + [aux_sym_unlock_statement_token1] = ACTIONS(8427), + [aux_sym_seek_statement_token1] = ACTIONS(8427), + [sym_reset_statement] = ACTIONS(8427), + [aux_sym_raise_event_statement_token1] = ACTIONS(8427), + [sym_stop_statement] = ACTIONS(8427), + [sym_beep_statement] = ACTIONS(8427), + [aux_sym_unload_statement_token1] = ACTIONS(8427), + [aux_sym_def_type_statement_token1] = ACTIONS(8427), + [aux_sym_def_type_statement_token2] = ACTIONS(8427), + [aux_sym_def_type_statement_token3] = ACTIONS(8427), + [aux_sym_def_type_statement_token4] = ACTIONS(8427), + [aux_sym_def_type_statement_token5] = ACTIONS(8427), + [aux_sym_def_type_statement_token6] = ACTIONS(8427), + [aux_sym_def_type_statement_token7] = ACTIONS(8427), + [aux_sym_def_type_statement_token8] = ACTIONS(8427), + [aux_sym_def_type_statement_token9] = ACTIONS(8427), + [aux_sym_def_type_statement_token10] = ACTIONS(8427), + [aux_sym_def_type_statement_token11] = ACTIONS(8427), + [aux_sym_def_type_statement_token12] = ACTIONS(8427), + [aux_sym_def_type_statement_token13] = ACTIONS(8427), + [aux_sym_def_type_statement_token14] = ACTIONS(8427), + [aux_sym_call_statement_token1] = ACTIONS(8427), + [sym__ambiguous_call_statement] = ACTIONS(8427), + [aux_sym_addressof_expression_token1] = ACTIONS(8427), + [aux_sym_type_of_expression_token1] = ACTIONS(8427), + [aux_sym_unary_expression_token1] = ACTIONS(8427), + [sym_string_literal] = ACTIONS(8429), + [sym_number_literal] = ACTIONS(8429), + [aux_sym_boolean_literal_token1] = ACTIONS(8427), + [aux_sym_boolean_literal_token2] = ACTIONS(8427), + [sym_nothing_literal] = ACTIONS(8427), + [sym_null_literal] = ACTIONS(8427), + [sym_empty_literal] = ACTIONS(8427), + [sym_date_literal] = ACTIONS(8429), + [anon_sym_POUND] = ACTIONS(8427), + }, + [STATE(5701)] = { + [sym_identifier] = ACTIONS(8903), + [sym_newline] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8903), + [aux_sym_frm_property_statement_token1] = ACTIONS(8903), + [anon_sym_DOT] = ACTIONS(8903), + [anon_sym_BANG] = ACTIONS(8905), + [aux_sym__attribute_identifier_token1] = ACTIONS(8903), + [aux_sym_option_statement_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8903), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8903), + [aux_sym_preprocessor_const_token1] = ACTIONS(8903), + [sym_static_modifier] = ACTIONS(8903), + [sym__dim_keyword] = ACTIONS(8903), + [sym__redim_keyword] = ACTIONS(8903), + [aux_sym_get_accessor_token1] = ACTIONS(8903), + [aux_sym_set_accessor_token1] = ACTIONS(8903), + [aux_sym_const_declaration_token1] = ACTIONS(8903), + [anon_sym_LPAREN] = ACTIONS(8905), + [aux_sym_as_type_clause_token2] = ACTIONS(8903), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8903), + [aux_sym_visibility_token1] = ACTIONS(8903), + [aux_sym_visibility_token2] = ACTIONS(8903), + [aux_sym_elseif_fragment_token1] = ACTIONS(8903), + [aux_sym_else_fragment_token1] = ACTIONS(8903), + [aux_sym_select_statement_token1] = ACTIONS(8903), + [aux_sym__for_header_token1] = ACTIONS(8903), + [aux_sym_do_statement_token1] = ACTIONS(8903), + [aux_sym_do_condition_token1] = ACTIONS(8903), + [aux_sym_with_statement_token1] = ACTIONS(8903), + [aux_sym_exit_statement_token1] = ACTIONS(8903), + [sym_end_statement] = ACTIONS(8905), + [aux_sym_on_goto_statement_token1] = ACTIONS(8903), + [aux_sym_on_goto_statement_token2] = ACTIONS(8903), + [aux_sym_on_error_statement_token2] = ACTIONS(8903), + [sym__ambiguous_redim_statement] = ACTIONS(8905), + [aux_sym_erase_statement_token1] = ACTIONS(8903), + [aux_sym_open_statement_token1] = ACTIONS(8903), + [aux_sym_file_mode_token2] = ACTIONS(8903), + [aux_sym_file_access_token2] = ACTIONS(8903), + [aux_sym_file_lock_token2] = ACTIONS(8903), + [aux_sym_print_statement_token1] = ACTIONS(8903), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_DASH] = ACTIONS(8903), + [anon_sym_QMARK] = ACTIONS(8905), + [aux_sym_close_statement_token1] = ACTIONS(8903), + [aux_sym_put_statement_token1] = ACTIONS(8903), + [aux_sym_unlock_statement_token1] = ACTIONS(8903), + [aux_sym_seek_statement_token1] = ACTIONS(8903), + [sym_reset_statement] = ACTIONS(8903), + [aux_sym_raise_event_statement_token1] = ACTIONS(8903), + [sym_stop_statement] = ACTIONS(8903), + [sym_beep_statement] = ACTIONS(8903), + [aux_sym_unload_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token2] = ACTIONS(8903), + [aux_sym_def_type_statement_token3] = ACTIONS(8903), + [aux_sym_def_type_statement_token4] = ACTIONS(8903), + [aux_sym_def_type_statement_token5] = ACTIONS(8903), + [aux_sym_def_type_statement_token6] = ACTIONS(8903), + [aux_sym_def_type_statement_token7] = ACTIONS(8903), + [aux_sym_def_type_statement_token8] = ACTIONS(8903), + [aux_sym_def_type_statement_token9] = ACTIONS(8903), + [aux_sym_def_type_statement_token10] = ACTIONS(8903), + [aux_sym_def_type_statement_token11] = ACTIONS(8903), + [aux_sym_def_type_statement_token12] = ACTIONS(8903), + [aux_sym_def_type_statement_token13] = ACTIONS(8903), + [aux_sym_def_type_statement_token14] = ACTIONS(8903), + [aux_sym_call_statement_token1] = ACTIONS(8903), + [sym__ambiguous_call_statement] = ACTIONS(8903), + [aux_sym_addressof_expression_token1] = ACTIONS(8903), + [aux_sym_type_of_expression_token1] = ACTIONS(8903), + [aux_sym_unary_expression_token1] = ACTIONS(8903), + [sym_string_literal] = ACTIONS(8905), + [sym_number_literal] = ACTIONS(8905), + [aux_sym_boolean_literal_token1] = ACTIONS(8903), + [aux_sym_boolean_literal_token2] = ACTIONS(8903), + [sym_nothing_literal] = ACTIONS(8903), + [sym_null_literal] = ACTIONS(8903), + [sym_empty_literal] = ACTIONS(8903), + [sym_date_literal] = ACTIONS(8905), + [anon_sym_POUND] = ACTIONS(8903), + }, + [STATE(5702)] = { + [sym_identifier] = ACTIONS(8911), + [sym_newline] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8911), + [aux_sym_frm_property_statement_token1] = ACTIONS(8911), + [anon_sym_DOT] = ACTIONS(8911), + [anon_sym_BANG] = ACTIONS(8913), + [aux_sym__attribute_identifier_token1] = ACTIONS(8911), + [aux_sym_option_statement_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8911), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8911), + [aux_sym_preprocessor_const_token1] = ACTIONS(8911), + [sym_static_modifier] = ACTIONS(8911), + [sym__dim_keyword] = ACTIONS(8911), + [sym__redim_keyword] = ACTIONS(8911), + [aux_sym_get_accessor_token1] = ACTIONS(8911), + [aux_sym_set_accessor_token1] = ACTIONS(8911), + [aux_sym_const_declaration_token1] = ACTIONS(8911), + [anon_sym_LPAREN] = ACTIONS(8913), + [aux_sym_as_type_clause_token2] = ACTIONS(8911), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8911), + [aux_sym_visibility_token1] = ACTIONS(8911), + [aux_sym_visibility_token2] = ACTIONS(8911), + [aux_sym_elseif_fragment_token1] = ACTIONS(8911), + [aux_sym_else_fragment_token1] = ACTIONS(8911), + [aux_sym_select_statement_token1] = ACTIONS(8911), + [aux_sym__for_header_token1] = ACTIONS(8911), + [aux_sym_do_statement_token1] = ACTIONS(8911), + [aux_sym_do_condition_token1] = ACTIONS(8911), + [aux_sym_with_statement_token1] = ACTIONS(8911), + [aux_sym_exit_statement_token1] = ACTIONS(8911), + [sym_end_statement] = ACTIONS(8913), + [aux_sym_on_goto_statement_token1] = ACTIONS(8911), + [aux_sym_on_goto_statement_token2] = ACTIONS(8911), + [aux_sym_on_error_statement_token2] = ACTIONS(8911), + [sym__ambiguous_redim_statement] = ACTIONS(8913), + [aux_sym_erase_statement_token1] = ACTIONS(8911), + [aux_sym_open_statement_token1] = ACTIONS(8911), + [aux_sym_file_mode_token2] = ACTIONS(8911), + [aux_sym_file_access_token2] = ACTIONS(8911), + [aux_sym_file_lock_token2] = ACTIONS(8911), + [aux_sym_print_statement_token1] = ACTIONS(8911), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_DASH] = ACTIONS(8911), + [anon_sym_QMARK] = ACTIONS(8913), + [aux_sym_close_statement_token1] = ACTIONS(8911), + [aux_sym_put_statement_token1] = ACTIONS(8911), + [aux_sym_unlock_statement_token1] = ACTIONS(8911), + [aux_sym_seek_statement_token1] = ACTIONS(8911), + [sym_reset_statement] = ACTIONS(8911), + [aux_sym_raise_event_statement_token1] = ACTIONS(8911), + [sym_stop_statement] = ACTIONS(8911), + [sym_beep_statement] = ACTIONS(8911), + [aux_sym_unload_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token2] = ACTIONS(8911), + [aux_sym_def_type_statement_token3] = ACTIONS(8911), + [aux_sym_def_type_statement_token4] = ACTIONS(8911), + [aux_sym_def_type_statement_token5] = ACTIONS(8911), + [aux_sym_def_type_statement_token6] = ACTIONS(8911), + [aux_sym_def_type_statement_token7] = ACTIONS(8911), + [aux_sym_def_type_statement_token8] = ACTIONS(8911), + [aux_sym_def_type_statement_token9] = ACTIONS(8911), + [aux_sym_def_type_statement_token10] = ACTIONS(8911), + [aux_sym_def_type_statement_token11] = ACTIONS(8911), + [aux_sym_def_type_statement_token12] = ACTIONS(8911), + [aux_sym_def_type_statement_token13] = ACTIONS(8911), + [aux_sym_def_type_statement_token14] = ACTIONS(8911), + [aux_sym_call_statement_token1] = ACTIONS(8911), + [sym__ambiguous_call_statement] = ACTIONS(8911), + [aux_sym_addressof_expression_token1] = ACTIONS(8911), + [aux_sym_type_of_expression_token1] = ACTIONS(8911), + [aux_sym_unary_expression_token1] = ACTIONS(8911), + [sym_string_literal] = ACTIONS(8913), + [sym_number_literal] = ACTIONS(8913), + [aux_sym_boolean_literal_token1] = ACTIONS(8911), + [aux_sym_boolean_literal_token2] = ACTIONS(8911), + [sym_nothing_literal] = ACTIONS(8911), + [sym_null_literal] = ACTIONS(8911), + [sym_empty_literal] = ACTIONS(8911), + [sym_date_literal] = ACTIONS(8913), + [anon_sym_POUND] = ACTIONS(8911), + }, + [STATE(5703)] = { + [sym_identifier] = ACTIONS(9552), + [sym_newline] = ACTIONS(9554), + [anon_sym_COLON] = ACTIONS(9554), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9552), + [aux_sym_frm_property_statement_token1] = ACTIONS(9552), + [anon_sym_DOT] = ACTIONS(9552), + [anon_sym_BANG] = ACTIONS(9554), + [aux_sym__attribute_identifier_token1] = ACTIONS(9552), + [aux_sym_option_statement_token3] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9552), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9552), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9552), + [aux_sym_preprocessor_const_token1] = ACTIONS(9552), + [sym_static_modifier] = ACTIONS(9552), + [sym__dim_keyword] = ACTIONS(9552), + [sym__redim_keyword] = ACTIONS(9552), + [aux_sym_get_accessor_token1] = ACTIONS(9552), + [aux_sym_set_accessor_token1] = ACTIONS(9552), + [aux_sym_const_declaration_token1] = ACTIONS(9552), + [anon_sym_LPAREN] = ACTIONS(9554), + [aux_sym_as_type_clause_token2] = ACTIONS(9552), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9552), + [aux_sym_visibility_token1] = ACTIONS(9552), + [aux_sym_visibility_token2] = ACTIONS(9552), + [aux_sym_elseif_fragment_token1] = ACTIONS(9552), + [aux_sym_else_fragment_token1] = ACTIONS(9552), + [aux_sym_select_statement_token1] = ACTIONS(9552), + [aux_sym__for_header_token1] = ACTIONS(9552), + [aux_sym_do_statement_token1] = ACTIONS(9552), + [aux_sym_do_condition_token1] = ACTIONS(9552), + [aux_sym_with_statement_token1] = ACTIONS(9552), + [aux_sym_exit_statement_token1] = ACTIONS(9552), + [sym_end_statement] = ACTIONS(9554), + [aux_sym_on_goto_statement_token1] = ACTIONS(9552), + [aux_sym_on_goto_statement_token2] = ACTIONS(9552), + [aux_sym_on_error_statement_token2] = ACTIONS(9552), + [sym__ambiguous_redim_statement] = ACTIONS(9554), + [aux_sym_erase_statement_token1] = ACTIONS(9552), + [aux_sym_open_statement_token1] = ACTIONS(9552), + [aux_sym_file_mode_token2] = ACTIONS(9552), + [aux_sym_file_access_token2] = ACTIONS(9552), + [aux_sym_file_lock_token2] = ACTIONS(9552), + [aux_sym_print_statement_token1] = ACTIONS(9552), + [anon_sym_PLUS] = ACTIONS(9554), + [anon_sym_DASH] = ACTIONS(9552), + [anon_sym_QMARK] = ACTIONS(9554), + [aux_sym_close_statement_token1] = ACTIONS(9552), + [aux_sym_put_statement_token1] = ACTIONS(9552), + [aux_sym_unlock_statement_token1] = ACTIONS(9552), + [aux_sym_seek_statement_token1] = ACTIONS(9552), + [sym_reset_statement] = ACTIONS(9552), + [aux_sym_raise_event_statement_token1] = ACTIONS(9552), + [sym_stop_statement] = ACTIONS(9552), + [sym_beep_statement] = ACTIONS(9552), + [aux_sym_unload_statement_token1] = ACTIONS(9552), + [aux_sym_def_type_statement_token1] = ACTIONS(9552), + [aux_sym_def_type_statement_token2] = ACTIONS(9552), + [aux_sym_def_type_statement_token3] = ACTIONS(9552), + [aux_sym_def_type_statement_token4] = ACTIONS(9552), + [aux_sym_def_type_statement_token5] = ACTIONS(9552), + [aux_sym_def_type_statement_token6] = ACTIONS(9552), + [aux_sym_def_type_statement_token7] = ACTIONS(9552), + [aux_sym_def_type_statement_token8] = ACTIONS(9552), + [aux_sym_def_type_statement_token9] = ACTIONS(9552), + [aux_sym_def_type_statement_token10] = ACTIONS(9552), + [aux_sym_def_type_statement_token11] = ACTIONS(9552), + [aux_sym_def_type_statement_token12] = ACTIONS(9552), + [aux_sym_def_type_statement_token13] = ACTIONS(9552), + [aux_sym_def_type_statement_token14] = ACTIONS(9552), + [aux_sym_call_statement_token1] = ACTIONS(9552), + [sym__ambiguous_call_statement] = ACTIONS(9552), + [aux_sym_addressof_expression_token1] = ACTIONS(9552), + [aux_sym_type_of_expression_token1] = ACTIONS(9552), + [aux_sym_unary_expression_token1] = ACTIONS(9552), + [sym_string_literal] = ACTIONS(9554), + [sym_number_literal] = ACTIONS(9554), + [aux_sym_boolean_literal_token1] = ACTIONS(9552), + [aux_sym_boolean_literal_token2] = ACTIONS(9552), + [sym_nothing_literal] = ACTIONS(9552), + [sym_null_literal] = ACTIONS(9552), + [sym_empty_literal] = ACTIONS(9552), + [sym_date_literal] = ACTIONS(9554), + [anon_sym_POUND] = ACTIONS(9552), + }, + [STATE(5704)] = { + [sym_do_condition] = STATE(6646), + [sym_identifier] = ACTIONS(8431), + [sym_newline] = ACTIONS(8433), + [anon_sym_COLON] = ACTIONS(8433), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8431), + [aux_sym_frm_property_statement_token1] = ACTIONS(8431), + [anon_sym_DOT] = ACTIONS(8431), + [anon_sym_BANG] = ACTIONS(8433), + [aux_sym__attribute_identifier_token1] = ACTIONS(8431), + [aux_sym_option_statement_token3] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8431), + [aux_sym_preprocessor_const_token1] = ACTIONS(8431), + [sym_static_modifier] = ACTIONS(8431), + [sym__dim_keyword] = ACTIONS(8431), + [sym__redim_keyword] = ACTIONS(8431), + [aux_sym_get_accessor_token1] = ACTIONS(8431), + [aux_sym_set_accessor_token1] = ACTIONS(8431), + [aux_sym_const_declaration_token1] = ACTIONS(8431), + [anon_sym_LPAREN] = ACTIONS(8433), + [aux_sym_as_type_clause_token2] = ACTIONS(8431), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8431), + [aux_sym_visibility_token1] = ACTIONS(8431), + [aux_sym_visibility_token2] = ACTIONS(8431), + [aux_sym_elseif_fragment_token1] = ACTIONS(8431), + [aux_sym_else_fragment_token1] = ACTIONS(8431), + [aux_sym_select_statement_token1] = ACTIONS(8431), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8431), + [aux_sym__for_header_token1] = ACTIONS(8431), + [aux_sym_do_statement_token1] = ACTIONS(8431), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8431), + [aux_sym_exit_statement_token1] = ACTIONS(8431), + [sym_end_statement] = ACTIONS(8433), + [aux_sym_on_goto_statement_token1] = ACTIONS(8431), + [aux_sym_on_goto_statement_token2] = ACTIONS(8431), + [aux_sym_on_error_statement_token2] = ACTIONS(8431), + [sym__ambiguous_redim_statement] = ACTIONS(8433), + [aux_sym_erase_statement_token1] = ACTIONS(8431), + [aux_sym_open_statement_token1] = ACTIONS(8431), + [aux_sym_file_mode_token2] = ACTIONS(8431), + [aux_sym_file_access_token2] = ACTIONS(8431), + [aux_sym_file_lock_token2] = ACTIONS(8431), + [aux_sym_print_statement_token1] = ACTIONS(8431), + [anon_sym_PLUS] = ACTIONS(8433), + [anon_sym_DASH] = ACTIONS(8431), + [anon_sym_QMARK] = ACTIONS(8433), + [aux_sym_close_statement_token1] = ACTIONS(8431), + [aux_sym_put_statement_token1] = ACTIONS(8431), + [aux_sym_unlock_statement_token1] = ACTIONS(8431), + [aux_sym_seek_statement_token1] = ACTIONS(8431), + [sym_reset_statement] = ACTIONS(8431), + [aux_sym_raise_event_statement_token1] = ACTIONS(8431), + [sym_stop_statement] = ACTIONS(8431), + [sym_beep_statement] = ACTIONS(8431), + [aux_sym_unload_statement_token1] = ACTIONS(8431), + [aux_sym_def_type_statement_token1] = ACTIONS(8431), + [aux_sym_def_type_statement_token2] = ACTIONS(8431), + [aux_sym_def_type_statement_token3] = ACTIONS(8431), + [aux_sym_def_type_statement_token4] = ACTIONS(8431), + [aux_sym_def_type_statement_token5] = ACTIONS(8431), + [aux_sym_def_type_statement_token6] = ACTIONS(8431), + [aux_sym_def_type_statement_token7] = ACTIONS(8431), + [aux_sym_def_type_statement_token8] = ACTIONS(8431), + [aux_sym_def_type_statement_token9] = ACTIONS(8431), + [aux_sym_def_type_statement_token10] = ACTIONS(8431), + [aux_sym_def_type_statement_token11] = ACTIONS(8431), + [aux_sym_def_type_statement_token12] = ACTIONS(8431), + [aux_sym_def_type_statement_token13] = ACTIONS(8431), + [aux_sym_def_type_statement_token14] = ACTIONS(8431), + [aux_sym_call_statement_token1] = ACTIONS(8431), + [sym__ambiguous_call_statement] = ACTIONS(8431), + [aux_sym_addressof_expression_token1] = ACTIONS(8431), + [aux_sym_type_of_expression_token1] = ACTIONS(8431), + [aux_sym_unary_expression_token1] = ACTIONS(8431), + [sym_string_literal] = ACTIONS(8433), + [sym_number_literal] = ACTIONS(8433), + [aux_sym_boolean_literal_token1] = ACTIONS(8431), + [aux_sym_boolean_literal_token2] = ACTIONS(8431), + [sym_nothing_literal] = ACTIONS(8431), + [sym_null_literal] = ACTIONS(8431), + [sym_empty_literal] = ACTIONS(8431), + [sym_date_literal] = ACTIONS(8433), + [anon_sym_POUND] = ACTIONS(8431), + }, + [STATE(5705)] = { + [sym_identifier] = ACTIONS(9556), + [sym_newline] = ACTIONS(9558), + [anon_sym_COLON] = ACTIONS(9558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9556), + [aux_sym_frm_property_statement_token1] = ACTIONS(9556), + [anon_sym_DOT] = ACTIONS(9556), + [anon_sym_BANG] = ACTIONS(9558), + [aux_sym__attribute_identifier_token1] = ACTIONS(9556), + [aux_sym_option_statement_token3] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9556), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9556), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9556), + [aux_sym_preprocessor_const_token1] = ACTIONS(9556), + [sym_static_modifier] = ACTIONS(9556), + [sym__dim_keyword] = ACTIONS(9556), + [sym__redim_keyword] = ACTIONS(9556), + [aux_sym_get_accessor_token1] = ACTIONS(9556), + [aux_sym_set_accessor_token1] = ACTIONS(9556), + [aux_sym_const_declaration_token1] = ACTIONS(9556), + [anon_sym_LPAREN] = ACTIONS(9558), + [aux_sym_as_type_clause_token2] = ACTIONS(9556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9556), + [aux_sym_visibility_token1] = ACTIONS(9556), + [aux_sym_visibility_token2] = ACTIONS(9556), + [aux_sym_elseif_fragment_token1] = ACTIONS(9556), + [aux_sym_else_fragment_token1] = ACTIONS(9556), + [aux_sym_select_statement_token1] = ACTIONS(9556), + [aux_sym__for_header_token1] = ACTIONS(9556), + [aux_sym_do_statement_token1] = ACTIONS(9556), + [aux_sym_do_condition_token1] = ACTIONS(9556), + [aux_sym_with_statement_token1] = ACTIONS(9556), + [aux_sym_exit_statement_token1] = ACTIONS(9556), + [sym_end_statement] = ACTIONS(9558), + [aux_sym_on_goto_statement_token1] = ACTIONS(9556), + [aux_sym_on_goto_statement_token2] = ACTIONS(9556), + [aux_sym_on_error_statement_token2] = ACTIONS(9556), + [sym__ambiguous_redim_statement] = ACTIONS(9558), + [aux_sym_erase_statement_token1] = ACTIONS(9556), + [aux_sym_open_statement_token1] = ACTIONS(9556), + [aux_sym_file_mode_token2] = ACTIONS(9556), + [aux_sym_file_access_token2] = ACTIONS(9556), + [aux_sym_file_lock_token2] = ACTIONS(9556), + [aux_sym_print_statement_token1] = ACTIONS(9556), + [anon_sym_PLUS] = ACTIONS(9558), + [anon_sym_DASH] = ACTIONS(9556), + [anon_sym_QMARK] = ACTIONS(9558), + [aux_sym_close_statement_token1] = ACTIONS(9556), + [aux_sym_put_statement_token1] = ACTIONS(9556), + [aux_sym_unlock_statement_token1] = ACTIONS(9556), + [aux_sym_seek_statement_token1] = ACTIONS(9556), + [sym_reset_statement] = ACTIONS(9556), + [aux_sym_raise_event_statement_token1] = ACTIONS(9556), + [sym_stop_statement] = ACTIONS(9556), + [sym_beep_statement] = ACTIONS(9556), + [aux_sym_unload_statement_token1] = ACTIONS(9556), + [aux_sym_def_type_statement_token1] = ACTIONS(9556), + [aux_sym_def_type_statement_token2] = ACTIONS(9556), + [aux_sym_def_type_statement_token3] = ACTIONS(9556), + [aux_sym_def_type_statement_token4] = ACTIONS(9556), + [aux_sym_def_type_statement_token5] = ACTIONS(9556), + [aux_sym_def_type_statement_token6] = ACTIONS(9556), + [aux_sym_def_type_statement_token7] = ACTIONS(9556), + [aux_sym_def_type_statement_token8] = ACTIONS(9556), + [aux_sym_def_type_statement_token9] = ACTIONS(9556), + [aux_sym_def_type_statement_token10] = ACTIONS(9556), + [aux_sym_def_type_statement_token11] = ACTIONS(9556), + [aux_sym_def_type_statement_token12] = ACTIONS(9556), + [aux_sym_def_type_statement_token13] = ACTIONS(9556), + [aux_sym_def_type_statement_token14] = ACTIONS(9556), + [aux_sym_call_statement_token1] = ACTIONS(9556), + [sym__ambiguous_call_statement] = ACTIONS(9556), + [aux_sym_addressof_expression_token1] = ACTIONS(9556), + [aux_sym_type_of_expression_token1] = ACTIONS(9556), + [aux_sym_unary_expression_token1] = ACTIONS(9556), + [sym_string_literal] = ACTIONS(9558), + [sym_number_literal] = ACTIONS(9558), + [aux_sym_boolean_literal_token1] = ACTIONS(9556), + [aux_sym_boolean_literal_token2] = ACTIONS(9556), + [sym_nothing_literal] = ACTIONS(9556), + [sym_null_literal] = ACTIONS(9556), + [sym_empty_literal] = ACTIONS(9556), + [sym_date_literal] = ACTIONS(9558), + [anon_sym_POUND] = ACTIONS(9556), + }, + [STATE(5706)] = { + [sym_identifier] = ACTIONS(9560), + [sym_newline] = ACTIONS(9562), + [anon_sym_COLON] = ACTIONS(9562), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9560), + [aux_sym_frm_property_statement_token1] = ACTIONS(9560), + [anon_sym_DOT] = ACTIONS(9560), + [anon_sym_BANG] = ACTIONS(9562), + [aux_sym__attribute_identifier_token1] = ACTIONS(9560), + [aux_sym_option_statement_token3] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9560), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9560), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9560), + [aux_sym_preprocessor_const_token1] = ACTIONS(9560), + [sym_static_modifier] = ACTIONS(9560), + [sym__dim_keyword] = ACTIONS(9560), + [sym__redim_keyword] = ACTIONS(9560), + [aux_sym_get_accessor_token1] = ACTIONS(9560), + [aux_sym_set_accessor_token1] = ACTIONS(9560), + [aux_sym_const_declaration_token1] = ACTIONS(9560), + [anon_sym_LPAREN] = ACTIONS(9562), + [aux_sym_as_type_clause_token2] = ACTIONS(9560), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9560), + [aux_sym_visibility_token1] = ACTIONS(9560), + [aux_sym_visibility_token2] = ACTIONS(9560), + [aux_sym_elseif_fragment_token1] = ACTIONS(9560), + [aux_sym_else_fragment_token1] = ACTIONS(9560), + [aux_sym_select_statement_token1] = ACTIONS(9560), + [aux_sym__for_header_token1] = ACTIONS(9560), + [aux_sym_do_statement_token1] = ACTIONS(9560), + [aux_sym_do_condition_token1] = ACTIONS(9560), + [aux_sym_with_statement_token1] = ACTIONS(9560), + [aux_sym_exit_statement_token1] = ACTIONS(9560), + [sym_end_statement] = ACTIONS(9562), + [aux_sym_on_goto_statement_token1] = ACTIONS(9560), + [aux_sym_on_goto_statement_token2] = ACTIONS(9560), + [aux_sym_on_error_statement_token2] = ACTIONS(9560), + [sym__ambiguous_redim_statement] = ACTIONS(9562), + [aux_sym_erase_statement_token1] = ACTIONS(9560), + [aux_sym_open_statement_token1] = ACTIONS(9560), + [aux_sym_file_mode_token2] = ACTIONS(9560), + [aux_sym_file_access_token2] = ACTIONS(9560), + [aux_sym_file_lock_token2] = ACTIONS(9560), + [aux_sym_print_statement_token1] = ACTIONS(9560), + [anon_sym_PLUS] = ACTIONS(9562), + [anon_sym_DASH] = ACTIONS(9560), + [anon_sym_QMARK] = ACTIONS(9562), + [aux_sym_close_statement_token1] = ACTIONS(9560), + [aux_sym_put_statement_token1] = ACTIONS(9560), + [aux_sym_unlock_statement_token1] = ACTIONS(9560), + [aux_sym_seek_statement_token1] = ACTIONS(9560), + [sym_reset_statement] = ACTIONS(9560), + [aux_sym_raise_event_statement_token1] = ACTIONS(9560), + [sym_stop_statement] = ACTIONS(9560), + [sym_beep_statement] = ACTIONS(9560), + [aux_sym_unload_statement_token1] = ACTIONS(9560), + [aux_sym_def_type_statement_token1] = ACTIONS(9560), + [aux_sym_def_type_statement_token2] = ACTIONS(9560), + [aux_sym_def_type_statement_token3] = ACTIONS(9560), + [aux_sym_def_type_statement_token4] = ACTIONS(9560), + [aux_sym_def_type_statement_token5] = ACTIONS(9560), + [aux_sym_def_type_statement_token6] = ACTIONS(9560), + [aux_sym_def_type_statement_token7] = ACTIONS(9560), + [aux_sym_def_type_statement_token8] = ACTIONS(9560), + [aux_sym_def_type_statement_token9] = ACTIONS(9560), + [aux_sym_def_type_statement_token10] = ACTIONS(9560), + [aux_sym_def_type_statement_token11] = ACTIONS(9560), + [aux_sym_def_type_statement_token12] = ACTIONS(9560), + [aux_sym_def_type_statement_token13] = ACTIONS(9560), + [aux_sym_def_type_statement_token14] = ACTIONS(9560), + [aux_sym_call_statement_token1] = ACTIONS(9560), + [sym__ambiguous_call_statement] = ACTIONS(9560), + [aux_sym_addressof_expression_token1] = ACTIONS(9560), + [aux_sym_type_of_expression_token1] = ACTIONS(9560), + [aux_sym_unary_expression_token1] = ACTIONS(9560), + [sym_string_literal] = ACTIONS(9562), + [sym_number_literal] = ACTIONS(9562), + [aux_sym_boolean_literal_token1] = ACTIONS(9560), + [aux_sym_boolean_literal_token2] = ACTIONS(9560), + [sym_nothing_literal] = ACTIONS(9560), + [sym_null_literal] = ACTIONS(9560), + [sym_empty_literal] = ACTIONS(9560), + [sym_date_literal] = ACTIONS(9562), + [anon_sym_POUND] = ACTIONS(9560), + }, + [STATE(5707)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5116), + [sym_identifier] = ACTIONS(8435), + [sym_newline] = ACTIONS(8437), + [anon_sym_COLON] = ACTIONS(8437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8435), + [aux_sym_frm_property_statement_token1] = ACTIONS(8435), + [anon_sym_DOT] = ACTIONS(8435), + [anon_sym_BANG] = ACTIONS(8437), + [aux_sym__attribute_identifier_token1] = ACTIONS(8435), + [aux_sym_option_statement_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8435), + [aux_sym_preprocessor_const_token1] = ACTIONS(8435), + [sym_static_modifier] = ACTIONS(8435), + [sym__dim_keyword] = ACTIONS(8435), + [sym__redim_keyword] = ACTIONS(8435), + [aux_sym_get_accessor_token1] = ACTIONS(8435), + [aux_sym_set_accessor_token1] = ACTIONS(8435), + [anon_sym_COMMA] = ACTIONS(5160), + [aux_sym_const_declaration_token1] = ACTIONS(8435), + [anon_sym_LPAREN] = ACTIONS(8437), + [aux_sym_as_type_clause_token2] = ACTIONS(8435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8435), + [aux_sym_visibility_token1] = ACTIONS(8435), + [aux_sym_visibility_token2] = ACTIONS(8435), + [aux_sym_elseif_fragment_token1] = ACTIONS(8435), + [aux_sym_else_fragment_token1] = ACTIONS(8435), + [aux_sym_select_statement_token1] = ACTIONS(8435), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8435), + [aux_sym__for_header_token1] = ACTIONS(8435), + [aux_sym_do_statement_token1] = ACTIONS(8435), + [aux_sym_do_condition_token1] = ACTIONS(8435), + [aux_sym_with_statement_token1] = ACTIONS(8435), + [aux_sym_exit_statement_token1] = ACTIONS(8435), + [sym_end_statement] = ACTIONS(8437), + [aux_sym_on_goto_statement_token1] = ACTIONS(8435), + [aux_sym_on_goto_statement_token2] = ACTIONS(8435), + [aux_sym_on_error_statement_token2] = ACTIONS(8435), + [sym__ambiguous_redim_statement] = ACTIONS(8437), + [aux_sym_erase_statement_token1] = ACTIONS(8435), + [aux_sym_open_statement_token1] = ACTIONS(8435), + [aux_sym_file_mode_token2] = ACTIONS(8435), + [aux_sym_file_access_token2] = ACTIONS(8435), + [aux_sym_file_lock_token2] = ACTIONS(8435), + [aux_sym_print_statement_token1] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(8437), + [anon_sym_DASH] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8437), + [aux_sym_close_statement_token1] = ACTIONS(8435), + [aux_sym_put_statement_token1] = ACTIONS(8435), + [aux_sym_unlock_statement_token1] = ACTIONS(8435), + [aux_sym_seek_statement_token1] = ACTIONS(8435), + [sym_reset_statement] = ACTIONS(8435), + [aux_sym_raise_event_statement_token1] = ACTIONS(8435), + [sym_stop_statement] = ACTIONS(8435), + [sym_beep_statement] = ACTIONS(8435), + [aux_sym_unload_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token2] = ACTIONS(8435), + [aux_sym_def_type_statement_token3] = ACTIONS(8435), + [aux_sym_def_type_statement_token4] = ACTIONS(8435), + [aux_sym_def_type_statement_token5] = ACTIONS(8435), + [aux_sym_def_type_statement_token6] = ACTIONS(8435), + [aux_sym_def_type_statement_token7] = ACTIONS(8435), + [aux_sym_def_type_statement_token8] = ACTIONS(8435), + [aux_sym_def_type_statement_token9] = ACTIONS(8435), + [aux_sym_def_type_statement_token10] = ACTIONS(8435), + [aux_sym_def_type_statement_token11] = ACTIONS(8435), + [aux_sym_def_type_statement_token12] = ACTIONS(8435), + [aux_sym_def_type_statement_token13] = ACTIONS(8435), + [aux_sym_def_type_statement_token14] = ACTIONS(8435), + [aux_sym_call_statement_token1] = ACTIONS(8435), + [sym__ambiguous_call_statement] = ACTIONS(8435), + [aux_sym_addressof_expression_token1] = ACTIONS(8435), + [aux_sym_type_of_expression_token1] = ACTIONS(8435), + [aux_sym_unary_expression_token1] = ACTIONS(8435), + [sym_string_literal] = ACTIONS(8437), + [sym_number_literal] = ACTIONS(8437), + [aux_sym_boolean_literal_token1] = ACTIONS(8435), + [aux_sym_boolean_literal_token2] = ACTIONS(8435), + [sym_nothing_literal] = ACTIONS(8435), + [sym_null_literal] = ACTIONS(8435), + [sym_empty_literal] = ACTIONS(8435), + [sym_date_literal] = ACTIONS(8437), + [anon_sym_POUND] = ACTIONS(8435), + }, + [STATE(5708)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5720), + [sym_identifier] = ACTIONS(8435), + [sym_newline] = ACTIONS(8437), + [anon_sym_COLON] = ACTIONS(8437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8435), + [aux_sym_frm_property_statement_token1] = ACTIONS(8435), + [anon_sym_DOT] = ACTIONS(8435), + [anon_sym_BANG] = ACTIONS(8437), + [aux_sym__attribute_identifier_token1] = ACTIONS(8435), + [aux_sym_option_statement_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8435), + [aux_sym_preprocessor_const_token1] = ACTIONS(8435), + [sym_static_modifier] = ACTIONS(8435), + [sym__dim_keyword] = ACTIONS(8435), + [sym__redim_keyword] = ACTIONS(8435), + [aux_sym_get_accessor_token1] = ACTIONS(8435), + [aux_sym_set_accessor_token1] = ACTIONS(8435), + [anon_sym_COMMA] = ACTIONS(5160), + [aux_sym_const_declaration_token1] = ACTIONS(8435), + [anon_sym_LPAREN] = ACTIONS(8437), + [aux_sym_as_type_clause_token2] = ACTIONS(8435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8435), + [aux_sym_visibility_token1] = ACTIONS(8435), + [aux_sym_visibility_token2] = ACTIONS(8435), + [aux_sym_elseif_fragment_token1] = ACTIONS(8435), + [aux_sym_else_fragment_token1] = ACTIONS(8435), + [aux_sym_select_statement_token1] = ACTIONS(8435), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8435), + [aux_sym__for_header_token1] = ACTIONS(8435), + [aux_sym_do_statement_token1] = ACTIONS(8435), + [aux_sym_do_condition_token1] = ACTIONS(8435), + [aux_sym_with_statement_token1] = ACTIONS(8435), + [aux_sym_exit_statement_token1] = ACTIONS(8435), + [sym_end_statement] = ACTIONS(8437), + [aux_sym_on_goto_statement_token1] = ACTIONS(8435), + [aux_sym_on_goto_statement_token2] = ACTIONS(8435), + [aux_sym_on_error_statement_token2] = ACTIONS(8435), + [sym__ambiguous_redim_statement] = ACTIONS(8437), + [aux_sym_erase_statement_token1] = ACTIONS(8435), + [aux_sym_open_statement_token1] = ACTIONS(8435), + [aux_sym_file_mode_token2] = ACTIONS(8435), + [aux_sym_file_access_token2] = ACTIONS(8435), + [aux_sym_file_lock_token2] = ACTIONS(8435), + [aux_sym_print_statement_token1] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(8437), + [anon_sym_DASH] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8437), + [aux_sym_close_statement_token1] = ACTIONS(8435), + [aux_sym_put_statement_token1] = ACTIONS(8435), + [aux_sym_unlock_statement_token1] = ACTIONS(8435), + [aux_sym_seek_statement_token1] = ACTIONS(8435), + [sym_reset_statement] = ACTIONS(8435), + [aux_sym_raise_event_statement_token1] = ACTIONS(8435), + [sym_stop_statement] = ACTIONS(8435), + [sym_beep_statement] = ACTIONS(8435), + [aux_sym_unload_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token2] = ACTIONS(8435), + [aux_sym_def_type_statement_token3] = ACTIONS(8435), + [aux_sym_def_type_statement_token4] = ACTIONS(8435), + [aux_sym_def_type_statement_token5] = ACTIONS(8435), + [aux_sym_def_type_statement_token6] = ACTIONS(8435), + [aux_sym_def_type_statement_token7] = ACTIONS(8435), + [aux_sym_def_type_statement_token8] = ACTIONS(8435), + [aux_sym_def_type_statement_token9] = ACTIONS(8435), + [aux_sym_def_type_statement_token10] = ACTIONS(8435), + [aux_sym_def_type_statement_token11] = ACTIONS(8435), + [aux_sym_def_type_statement_token12] = ACTIONS(8435), + [aux_sym_def_type_statement_token13] = ACTIONS(8435), + [aux_sym_def_type_statement_token14] = ACTIONS(8435), + [aux_sym_call_statement_token1] = ACTIONS(8435), + [sym__ambiguous_call_statement] = ACTIONS(8435), + [aux_sym_addressof_expression_token1] = ACTIONS(8435), + [aux_sym_type_of_expression_token1] = ACTIONS(8435), + [aux_sym_unary_expression_token1] = ACTIONS(8435), + [sym_string_literal] = ACTIONS(8437), + [sym_number_literal] = ACTIONS(8437), + [aux_sym_boolean_literal_token1] = ACTIONS(8435), + [aux_sym_boolean_literal_token2] = ACTIONS(8435), + [sym_nothing_literal] = ACTIONS(8435), + [sym_null_literal] = ACTIONS(8435), + [sym_empty_literal] = ACTIONS(8435), + [sym_date_literal] = ACTIONS(8437), + [anon_sym_POUND] = ACTIONS(8435), + }, + [STATE(5709)] = { + [sym_identifier] = ACTIONS(9564), + [sym_newline] = ACTIONS(9566), + [anon_sym_COLON] = ACTIONS(9566), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9564), + [aux_sym_frm_property_statement_token1] = ACTIONS(9564), + [anon_sym_DOT] = ACTIONS(9564), + [anon_sym_BANG] = ACTIONS(9566), + [aux_sym__attribute_identifier_token1] = ACTIONS(9564), + [aux_sym_option_statement_token3] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9564), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9564), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9564), + [aux_sym_preprocessor_const_token1] = ACTIONS(9564), + [sym_static_modifier] = ACTIONS(9564), + [sym__dim_keyword] = ACTIONS(9564), + [sym__redim_keyword] = ACTIONS(9564), + [aux_sym_get_accessor_token1] = ACTIONS(9564), + [aux_sym_set_accessor_token1] = ACTIONS(9564), + [aux_sym_const_declaration_token1] = ACTIONS(9564), + [anon_sym_LPAREN] = ACTIONS(9566), + [aux_sym_as_type_clause_token2] = ACTIONS(9564), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9564), + [aux_sym_visibility_token1] = ACTIONS(9564), + [aux_sym_visibility_token2] = ACTIONS(9564), + [aux_sym_elseif_fragment_token1] = ACTIONS(9564), + [aux_sym_else_fragment_token1] = ACTIONS(9564), + [aux_sym_select_statement_token1] = ACTIONS(9564), + [aux_sym__for_header_token1] = ACTIONS(9564), + [aux_sym_do_statement_token1] = ACTIONS(9564), + [aux_sym_do_condition_token1] = ACTIONS(9564), + [aux_sym_with_statement_token1] = ACTIONS(9564), + [aux_sym_exit_statement_token1] = ACTIONS(9564), + [sym_end_statement] = ACTIONS(9566), + [aux_sym_on_goto_statement_token1] = ACTIONS(9564), + [aux_sym_on_goto_statement_token2] = ACTIONS(9564), + [aux_sym_on_error_statement_token2] = ACTIONS(9564), + [sym__ambiguous_redim_statement] = ACTIONS(9566), + [aux_sym_erase_statement_token1] = ACTIONS(9564), + [aux_sym_open_statement_token1] = ACTIONS(9564), + [aux_sym_file_mode_token2] = ACTIONS(9564), + [aux_sym_file_access_token2] = ACTIONS(9564), + [aux_sym_file_lock_token2] = ACTIONS(9564), + [aux_sym_print_statement_token1] = ACTIONS(9564), + [anon_sym_PLUS] = ACTIONS(9566), + [anon_sym_DASH] = ACTIONS(9564), + [anon_sym_QMARK] = ACTIONS(9566), + [aux_sym_close_statement_token1] = ACTIONS(9564), + [aux_sym_put_statement_token1] = ACTIONS(9564), + [aux_sym_unlock_statement_token1] = ACTIONS(9564), + [aux_sym_seek_statement_token1] = ACTIONS(9564), + [sym_reset_statement] = ACTIONS(9564), + [aux_sym_raise_event_statement_token1] = ACTIONS(9564), + [sym_stop_statement] = ACTIONS(9564), + [sym_beep_statement] = ACTIONS(9564), + [aux_sym_unload_statement_token1] = ACTIONS(9564), + [aux_sym_def_type_statement_token1] = ACTIONS(9564), + [aux_sym_def_type_statement_token2] = ACTIONS(9564), + [aux_sym_def_type_statement_token3] = ACTIONS(9564), + [aux_sym_def_type_statement_token4] = ACTIONS(9564), + [aux_sym_def_type_statement_token5] = ACTIONS(9564), + [aux_sym_def_type_statement_token6] = ACTIONS(9564), + [aux_sym_def_type_statement_token7] = ACTIONS(9564), + [aux_sym_def_type_statement_token8] = ACTIONS(9564), + [aux_sym_def_type_statement_token9] = ACTIONS(9564), + [aux_sym_def_type_statement_token10] = ACTIONS(9564), + [aux_sym_def_type_statement_token11] = ACTIONS(9564), + [aux_sym_def_type_statement_token12] = ACTIONS(9564), + [aux_sym_def_type_statement_token13] = ACTIONS(9564), + [aux_sym_def_type_statement_token14] = ACTIONS(9564), + [aux_sym_call_statement_token1] = ACTIONS(9564), + [sym__ambiguous_call_statement] = ACTIONS(9564), + [aux_sym_addressof_expression_token1] = ACTIONS(9564), + [aux_sym_type_of_expression_token1] = ACTIONS(9564), + [aux_sym_unary_expression_token1] = ACTIONS(9564), + [sym_string_literal] = ACTIONS(9566), + [sym_number_literal] = ACTIONS(9566), + [aux_sym_boolean_literal_token1] = ACTIONS(9564), + [aux_sym_boolean_literal_token2] = ACTIONS(9564), + [sym_nothing_literal] = ACTIONS(9564), + [sym_null_literal] = ACTIONS(9564), + [sym_empty_literal] = ACTIONS(9564), + [sym_date_literal] = ACTIONS(9566), + [anon_sym_POUND] = ACTIONS(9564), + }, + [STATE(5710)] = { + [sym_identifier] = ACTIONS(9126), + [sym_newline] = ACTIONS(9128), + [anon_sym_COLON] = ACTIONS(9128), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9126), + [aux_sym_frm_property_statement_token1] = ACTIONS(9126), + [anon_sym_DOT] = ACTIONS(9126), + [anon_sym_BANG] = ACTIONS(9128), + [aux_sym__attribute_identifier_token1] = ACTIONS(9126), + [aux_sym_option_statement_token3] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9126), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9126), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9126), + [aux_sym_preprocessor_const_token1] = ACTIONS(9126), + [sym_static_modifier] = ACTIONS(9126), + [sym__dim_keyword] = ACTIONS(9126), + [sym__redim_keyword] = ACTIONS(9126), + [aux_sym_get_accessor_token1] = ACTIONS(9126), + [aux_sym_set_accessor_token1] = ACTIONS(9126), + [aux_sym_const_declaration_token1] = ACTIONS(9126), + [anon_sym_LPAREN] = ACTIONS(9128), + [aux_sym_as_type_clause_token2] = ACTIONS(9126), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9126), + [aux_sym_visibility_token1] = ACTIONS(9126), + [aux_sym_visibility_token2] = ACTIONS(9126), + [aux_sym_elseif_fragment_token1] = ACTIONS(9126), + [aux_sym_else_fragment_token1] = ACTIONS(9126), + [aux_sym_select_statement_token1] = ACTIONS(9126), + [aux_sym__for_header_token1] = ACTIONS(9126), + [aux_sym_do_statement_token1] = ACTIONS(9126), + [aux_sym_do_condition_token1] = ACTIONS(9126), + [aux_sym_with_statement_token1] = ACTIONS(9126), + [aux_sym_exit_statement_token1] = ACTIONS(9126), + [sym_end_statement] = ACTIONS(9128), + [aux_sym_on_goto_statement_token1] = ACTIONS(9126), + [aux_sym_on_goto_statement_token2] = ACTIONS(9126), + [aux_sym_on_error_statement_token2] = ACTIONS(9126), + [sym__ambiguous_redim_statement] = ACTIONS(9128), + [aux_sym_erase_statement_token1] = ACTIONS(9126), + [aux_sym_open_statement_token1] = ACTIONS(9126), + [aux_sym_file_mode_token2] = ACTIONS(9126), + [aux_sym_file_access_token2] = ACTIONS(9126), + [aux_sym_file_lock_token2] = ACTIONS(9126), + [aux_sym_print_statement_token1] = ACTIONS(9126), + [anon_sym_PLUS] = ACTIONS(9128), + [anon_sym_DASH] = ACTIONS(9126), + [anon_sym_QMARK] = ACTIONS(9128), + [aux_sym_close_statement_token1] = ACTIONS(9126), + [aux_sym_put_statement_token1] = ACTIONS(9126), + [aux_sym_unlock_statement_token1] = ACTIONS(9126), + [aux_sym_seek_statement_token1] = ACTIONS(9126), + [sym_reset_statement] = ACTIONS(9126), + [aux_sym_raise_event_statement_token1] = ACTIONS(9126), + [sym_stop_statement] = ACTIONS(9126), + [sym_beep_statement] = ACTIONS(9126), + [aux_sym_unload_statement_token1] = ACTIONS(9126), + [aux_sym_def_type_statement_token1] = ACTIONS(9126), + [aux_sym_def_type_statement_token2] = ACTIONS(9126), + [aux_sym_def_type_statement_token3] = ACTIONS(9126), + [aux_sym_def_type_statement_token4] = ACTIONS(9126), + [aux_sym_def_type_statement_token5] = ACTIONS(9126), + [aux_sym_def_type_statement_token6] = ACTIONS(9126), + [aux_sym_def_type_statement_token7] = ACTIONS(9126), + [aux_sym_def_type_statement_token8] = ACTIONS(9126), + [aux_sym_def_type_statement_token9] = ACTIONS(9126), + [aux_sym_def_type_statement_token10] = ACTIONS(9126), + [aux_sym_def_type_statement_token11] = ACTIONS(9126), + [aux_sym_def_type_statement_token12] = ACTIONS(9126), + [aux_sym_def_type_statement_token13] = ACTIONS(9126), + [aux_sym_def_type_statement_token14] = ACTIONS(9126), + [aux_sym_call_statement_token1] = ACTIONS(9126), + [sym__ambiguous_call_statement] = ACTIONS(9126), + [aux_sym_addressof_expression_token1] = ACTIONS(9126), + [aux_sym_type_of_expression_token1] = ACTIONS(9126), + [aux_sym_unary_expression_token1] = ACTIONS(9126), + [sym_string_literal] = ACTIONS(9128), + [sym_number_literal] = ACTIONS(9128), + [aux_sym_boolean_literal_token1] = ACTIONS(9126), + [aux_sym_boolean_literal_token2] = ACTIONS(9126), + [sym_nothing_literal] = ACTIONS(9126), + [sym_null_literal] = ACTIONS(9126), + [sym_empty_literal] = ACTIONS(9126), + [sym_date_literal] = ACTIONS(9128), + [anon_sym_POUND] = ACTIONS(9126), + }, + [STATE(5711)] = { + [sym_identifier] = ACTIONS(9568), + [sym_newline] = ACTIONS(9570), + [anon_sym_COLON] = ACTIONS(9570), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9568), + [aux_sym_frm_property_statement_token1] = ACTIONS(9568), + [anon_sym_DOT] = ACTIONS(9568), + [anon_sym_BANG] = ACTIONS(9570), + [aux_sym__attribute_identifier_token1] = ACTIONS(9568), + [aux_sym_option_statement_token3] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9568), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9568), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9568), + [aux_sym_preprocessor_const_token1] = ACTIONS(9568), + [sym_static_modifier] = ACTIONS(9568), + [sym__dim_keyword] = ACTIONS(9568), + [sym__redim_keyword] = ACTIONS(9568), + [aux_sym_get_accessor_token1] = ACTIONS(9568), + [aux_sym_set_accessor_token1] = ACTIONS(9568), + [aux_sym_const_declaration_token1] = ACTIONS(9568), + [anon_sym_LPAREN] = ACTIONS(9570), + [aux_sym_as_type_clause_token2] = ACTIONS(9568), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9568), + [aux_sym_visibility_token1] = ACTIONS(9568), + [aux_sym_visibility_token2] = ACTIONS(9568), + [aux_sym_elseif_fragment_token1] = ACTIONS(9568), + [aux_sym_else_fragment_token1] = ACTIONS(9568), + [aux_sym_select_statement_token1] = ACTIONS(9568), + [aux_sym__for_header_token1] = ACTIONS(9568), + [aux_sym_do_statement_token1] = ACTIONS(9568), + [aux_sym_do_condition_token1] = ACTIONS(9568), + [aux_sym_with_statement_token1] = ACTIONS(9568), + [aux_sym_exit_statement_token1] = ACTIONS(9568), + [sym_end_statement] = ACTIONS(9570), + [aux_sym_on_goto_statement_token1] = ACTIONS(9568), + [aux_sym_on_goto_statement_token2] = ACTIONS(9568), + [aux_sym_on_error_statement_token2] = ACTIONS(9568), + [sym__ambiguous_redim_statement] = ACTIONS(9570), + [aux_sym_erase_statement_token1] = ACTIONS(9568), + [aux_sym_open_statement_token1] = ACTIONS(9568), + [aux_sym_file_mode_token2] = ACTIONS(9568), + [aux_sym_file_access_token2] = ACTIONS(9568), + [aux_sym_file_lock_token2] = ACTIONS(9568), + [aux_sym_print_statement_token1] = ACTIONS(9568), + [anon_sym_PLUS] = ACTIONS(9570), + [anon_sym_DASH] = ACTIONS(9568), + [anon_sym_QMARK] = ACTIONS(9570), + [aux_sym_close_statement_token1] = ACTIONS(9568), + [aux_sym_put_statement_token1] = ACTIONS(9568), + [aux_sym_unlock_statement_token1] = ACTIONS(9568), + [aux_sym_seek_statement_token1] = ACTIONS(9568), + [sym_reset_statement] = ACTIONS(9568), + [aux_sym_raise_event_statement_token1] = ACTIONS(9568), + [sym_stop_statement] = ACTIONS(9568), + [sym_beep_statement] = ACTIONS(9568), + [aux_sym_unload_statement_token1] = ACTIONS(9568), + [aux_sym_def_type_statement_token1] = ACTIONS(9568), + [aux_sym_def_type_statement_token2] = ACTIONS(9568), + [aux_sym_def_type_statement_token3] = ACTIONS(9568), + [aux_sym_def_type_statement_token4] = ACTIONS(9568), + [aux_sym_def_type_statement_token5] = ACTIONS(9568), + [aux_sym_def_type_statement_token6] = ACTIONS(9568), + [aux_sym_def_type_statement_token7] = ACTIONS(9568), + [aux_sym_def_type_statement_token8] = ACTIONS(9568), + [aux_sym_def_type_statement_token9] = ACTIONS(9568), + [aux_sym_def_type_statement_token10] = ACTIONS(9568), + [aux_sym_def_type_statement_token11] = ACTIONS(9568), + [aux_sym_def_type_statement_token12] = ACTIONS(9568), + [aux_sym_def_type_statement_token13] = ACTIONS(9568), + [aux_sym_def_type_statement_token14] = ACTIONS(9568), + [aux_sym_call_statement_token1] = ACTIONS(9568), + [sym__ambiguous_call_statement] = ACTIONS(9568), + [aux_sym_addressof_expression_token1] = ACTIONS(9568), + [aux_sym_type_of_expression_token1] = ACTIONS(9568), + [aux_sym_unary_expression_token1] = ACTIONS(9568), + [sym_string_literal] = ACTIONS(9570), + [sym_number_literal] = ACTIONS(9570), + [aux_sym_boolean_literal_token1] = ACTIONS(9568), + [aux_sym_boolean_literal_token2] = ACTIONS(9568), + [sym_nothing_literal] = ACTIONS(9568), + [sym_null_literal] = ACTIONS(9568), + [sym_empty_literal] = ACTIONS(9568), + [sym_date_literal] = ACTIONS(9570), + [anon_sym_POUND] = ACTIONS(9568), + }, + [STATE(5712)] = { + [sym_identifier] = ACTIONS(9575), + [sym_newline] = ACTIONS(9577), + [anon_sym_COLON] = ACTIONS(9577), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9575), + [aux_sym_frm_property_statement_token1] = ACTIONS(9575), + [anon_sym_DOT] = ACTIONS(9575), + [anon_sym_BANG] = ACTIONS(9577), + [aux_sym__attribute_identifier_token1] = ACTIONS(9575), + [aux_sym_option_statement_token3] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9575), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9575), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9575), + [aux_sym_preprocessor_const_token1] = ACTIONS(9575), + [sym_static_modifier] = ACTIONS(9575), + [sym__dim_keyword] = ACTIONS(9575), + [sym__redim_keyword] = ACTIONS(9575), + [aux_sym_get_accessor_token1] = ACTIONS(9575), + [aux_sym_set_accessor_token1] = ACTIONS(9575), + [aux_sym_const_declaration_token1] = ACTIONS(9575), + [anon_sym_LPAREN] = ACTIONS(9577), + [aux_sym_as_type_clause_token2] = ACTIONS(9575), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9575), + [aux_sym_visibility_token1] = ACTIONS(9575), + [aux_sym_visibility_token2] = ACTIONS(9575), + [aux_sym_elseif_fragment_token1] = ACTIONS(9575), + [aux_sym_else_fragment_token1] = ACTIONS(9575), + [aux_sym_select_statement_token1] = ACTIONS(9575), + [aux_sym__for_header_token1] = ACTIONS(9575), + [aux_sym_do_statement_token1] = ACTIONS(9575), + [aux_sym_do_condition_token1] = ACTIONS(9575), + [aux_sym_with_statement_token1] = ACTIONS(9575), + [aux_sym_exit_statement_token1] = ACTIONS(9575), + [sym_end_statement] = ACTIONS(9577), + [aux_sym_on_goto_statement_token1] = ACTIONS(9575), + [aux_sym_on_goto_statement_token2] = ACTIONS(9575), + [aux_sym_on_error_statement_token2] = ACTIONS(9575), + [sym__ambiguous_redim_statement] = ACTIONS(9577), + [aux_sym_erase_statement_token1] = ACTIONS(9575), + [aux_sym_open_statement_token1] = ACTIONS(9575), + [aux_sym_file_mode_token2] = ACTIONS(9575), + [aux_sym_file_access_token2] = ACTIONS(9575), + [aux_sym_file_lock_token2] = ACTIONS(9575), + [aux_sym_print_statement_token1] = ACTIONS(9575), + [anon_sym_PLUS] = ACTIONS(9577), + [anon_sym_DASH] = ACTIONS(9575), + [anon_sym_QMARK] = ACTIONS(9577), + [aux_sym_close_statement_token1] = ACTIONS(9575), + [aux_sym_put_statement_token1] = ACTIONS(9575), + [aux_sym_unlock_statement_token1] = ACTIONS(9575), + [aux_sym_seek_statement_token1] = ACTIONS(9575), + [sym_reset_statement] = ACTIONS(9575), + [aux_sym_raise_event_statement_token1] = ACTIONS(9575), + [sym_stop_statement] = ACTIONS(9575), + [sym_beep_statement] = ACTIONS(9575), + [aux_sym_unload_statement_token1] = ACTIONS(9575), + [aux_sym_def_type_statement_token1] = ACTIONS(9575), + [aux_sym_def_type_statement_token2] = ACTIONS(9575), + [aux_sym_def_type_statement_token3] = ACTIONS(9575), + [aux_sym_def_type_statement_token4] = ACTIONS(9575), + [aux_sym_def_type_statement_token5] = ACTIONS(9575), + [aux_sym_def_type_statement_token6] = ACTIONS(9575), + [aux_sym_def_type_statement_token7] = ACTIONS(9575), + [aux_sym_def_type_statement_token8] = ACTIONS(9575), + [aux_sym_def_type_statement_token9] = ACTIONS(9575), + [aux_sym_def_type_statement_token10] = ACTIONS(9575), + [aux_sym_def_type_statement_token11] = ACTIONS(9575), + [aux_sym_def_type_statement_token12] = ACTIONS(9575), + [aux_sym_def_type_statement_token13] = ACTIONS(9575), + [aux_sym_def_type_statement_token14] = ACTIONS(9575), + [aux_sym_call_statement_token1] = ACTIONS(9575), + [sym__ambiguous_call_statement] = ACTIONS(9575), + [aux_sym_addressof_expression_token1] = ACTIONS(9575), + [aux_sym_type_of_expression_token1] = ACTIONS(9575), + [aux_sym_unary_expression_token1] = ACTIONS(9575), + [sym_string_literal] = ACTIONS(9577), + [sym_number_literal] = ACTIONS(9577), + [aux_sym_boolean_literal_token1] = ACTIONS(9575), + [aux_sym_boolean_literal_token2] = ACTIONS(9575), + [sym_nothing_literal] = ACTIONS(9575), + [sym_null_literal] = ACTIONS(9575), + [sym_empty_literal] = ACTIONS(9575), + [sym_date_literal] = ACTIONS(9577), + [anon_sym_POUND] = ACTIONS(9575), + }, + [STATE(5713)] = { + [sym_identifier] = ACTIONS(9582), + [sym_newline] = ACTIONS(9584), + [anon_sym_COLON] = ACTIONS(9584), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9582), + [aux_sym_frm_property_statement_token1] = ACTIONS(9582), + [anon_sym_DOT] = ACTIONS(9582), + [anon_sym_BANG] = ACTIONS(9584), + [aux_sym__attribute_identifier_token1] = ACTIONS(9582), + [aux_sym_option_statement_token3] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9582), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9582), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9582), + [aux_sym_preprocessor_const_token1] = ACTIONS(9582), + [sym_static_modifier] = ACTIONS(9582), + [sym__dim_keyword] = ACTIONS(9582), + [sym__redim_keyword] = ACTIONS(9582), + [aux_sym_get_accessor_token1] = ACTIONS(9582), + [aux_sym_set_accessor_token1] = ACTIONS(9582), + [aux_sym_const_declaration_token1] = ACTIONS(9582), + [anon_sym_LPAREN] = ACTIONS(9584), + [aux_sym_as_type_clause_token2] = ACTIONS(9582), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9582), + [aux_sym_visibility_token1] = ACTIONS(9582), + [aux_sym_visibility_token2] = ACTIONS(9582), + [aux_sym_elseif_fragment_token1] = ACTIONS(9582), + [aux_sym_else_fragment_token1] = ACTIONS(9582), + [aux_sym_select_statement_token1] = ACTIONS(9582), + [aux_sym__for_header_token1] = ACTIONS(9582), + [aux_sym_do_statement_token1] = ACTIONS(9582), + [aux_sym_do_condition_token1] = ACTIONS(9582), + [aux_sym_with_statement_token1] = ACTIONS(9582), + [aux_sym_exit_statement_token1] = ACTIONS(9582), + [sym_end_statement] = ACTIONS(9584), + [aux_sym_on_goto_statement_token1] = ACTIONS(9582), + [aux_sym_on_goto_statement_token2] = ACTIONS(9582), + [aux_sym_on_error_statement_token2] = ACTIONS(9582), + [sym__ambiguous_redim_statement] = ACTIONS(9584), + [aux_sym_erase_statement_token1] = ACTIONS(9582), + [aux_sym_open_statement_token1] = ACTIONS(9582), + [aux_sym_file_mode_token2] = ACTIONS(9582), + [aux_sym_file_access_token2] = ACTIONS(9582), + [aux_sym_file_lock_token2] = ACTIONS(9582), + [aux_sym_print_statement_token1] = ACTIONS(9582), + [anon_sym_PLUS] = ACTIONS(9584), + [anon_sym_DASH] = ACTIONS(9582), + [anon_sym_QMARK] = ACTIONS(9584), + [aux_sym_close_statement_token1] = ACTIONS(9582), + [aux_sym_put_statement_token1] = ACTIONS(9582), + [aux_sym_unlock_statement_token1] = ACTIONS(9582), + [aux_sym_seek_statement_token1] = ACTIONS(9582), + [sym_reset_statement] = ACTIONS(9582), + [aux_sym_raise_event_statement_token1] = ACTIONS(9582), + [sym_stop_statement] = ACTIONS(9582), + [sym_beep_statement] = ACTIONS(9582), + [aux_sym_unload_statement_token1] = ACTIONS(9582), + [aux_sym_def_type_statement_token1] = ACTIONS(9582), + [aux_sym_def_type_statement_token2] = ACTIONS(9582), + [aux_sym_def_type_statement_token3] = ACTIONS(9582), + [aux_sym_def_type_statement_token4] = ACTIONS(9582), + [aux_sym_def_type_statement_token5] = ACTIONS(9582), + [aux_sym_def_type_statement_token6] = ACTIONS(9582), + [aux_sym_def_type_statement_token7] = ACTIONS(9582), + [aux_sym_def_type_statement_token8] = ACTIONS(9582), + [aux_sym_def_type_statement_token9] = ACTIONS(9582), + [aux_sym_def_type_statement_token10] = ACTIONS(9582), + [aux_sym_def_type_statement_token11] = ACTIONS(9582), + [aux_sym_def_type_statement_token12] = ACTIONS(9582), + [aux_sym_def_type_statement_token13] = ACTIONS(9582), + [aux_sym_def_type_statement_token14] = ACTIONS(9582), + [aux_sym_call_statement_token1] = ACTIONS(9582), + [sym__ambiguous_call_statement] = ACTIONS(9582), + [aux_sym_addressof_expression_token1] = ACTIONS(9582), + [aux_sym_type_of_expression_token1] = ACTIONS(9582), + [aux_sym_unary_expression_token1] = ACTIONS(9582), + [sym_string_literal] = ACTIONS(9584), + [sym_number_literal] = ACTIONS(9584), + [aux_sym_boolean_literal_token1] = ACTIONS(9582), + [aux_sym_boolean_literal_token2] = ACTIONS(9582), + [sym_nothing_literal] = ACTIONS(9582), + [sym_null_literal] = ACTIONS(9582), + [sym_empty_literal] = ACTIONS(9582), + [sym_date_literal] = ACTIONS(9584), + [anon_sym_POUND] = ACTIONS(9582), + }, + [STATE(5714)] = { + [sym_identifier] = ACTIONS(9586), + [sym_newline] = ACTIONS(9588), + [anon_sym_COLON] = ACTIONS(9588), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9586), + [aux_sym_frm_property_statement_token1] = ACTIONS(9586), + [anon_sym_DOT] = ACTIONS(9586), + [anon_sym_BANG] = ACTIONS(9588), + [aux_sym__attribute_identifier_token1] = ACTIONS(9586), + [aux_sym_option_statement_token3] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9586), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9586), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9586), + [aux_sym_preprocessor_const_token1] = ACTIONS(9586), + [sym_static_modifier] = ACTIONS(9586), + [sym__dim_keyword] = ACTIONS(9586), + [sym__redim_keyword] = ACTIONS(9586), + [aux_sym_get_accessor_token1] = ACTIONS(9586), + [aux_sym_set_accessor_token1] = ACTIONS(9586), + [aux_sym_const_declaration_token1] = ACTIONS(9586), + [anon_sym_LPAREN] = ACTIONS(9588), + [aux_sym_as_type_clause_token2] = ACTIONS(9586), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9586), + [aux_sym_visibility_token1] = ACTIONS(9586), + [aux_sym_visibility_token2] = ACTIONS(9586), + [aux_sym_elseif_fragment_token1] = ACTIONS(9586), + [aux_sym_else_fragment_token1] = ACTIONS(9586), + [aux_sym_select_statement_token1] = ACTIONS(9586), + [aux_sym__for_header_token1] = ACTIONS(9586), + [aux_sym_do_statement_token1] = ACTIONS(9586), + [aux_sym_do_condition_token1] = ACTIONS(9586), + [aux_sym_with_statement_token1] = ACTIONS(9586), + [aux_sym_exit_statement_token1] = ACTIONS(9586), + [sym_end_statement] = ACTIONS(9588), + [aux_sym_on_goto_statement_token1] = ACTIONS(9586), + [aux_sym_on_goto_statement_token2] = ACTIONS(9586), + [aux_sym_on_error_statement_token2] = ACTIONS(9586), + [sym__ambiguous_redim_statement] = ACTIONS(9588), + [aux_sym_erase_statement_token1] = ACTIONS(9586), + [aux_sym_open_statement_token1] = ACTIONS(9586), + [aux_sym_file_mode_token2] = ACTIONS(9586), + [aux_sym_file_access_token2] = ACTIONS(9586), + [aux_sym_file_lock_token2] = ACTIONS(9586), + [aux_sym_print_statement_token1] = ACTIONS(9586), + [anon_sym_PLUS] = ACTIONS(9588), + [anon_sym_DASH] = ACTIONS(9586), + [anon_sym_QMARK] = ACTIONS(9588), + [aux_sym_close_statement_token1] = ACTIONS(9586), + [aux_sym_put_statement_token1] = ACTIONS(9586), + [aux_sym_unlock_statement_token1] = ACTIONS(9586), + [aux_sym_seek_statement_token1] = ACTIONS(9586), + [sym_reset_statement] = ACTIONS(9586), + [aux_sym_raise_event_statement_token1] = ACTIONS(9586), + [sym_stop_statement] = ACTIONS(9586), + [sym_beep_statement] = ACTIONS(9586), + [aux_sym_unload_statement_token1] = ACTIONS(9586), + [aux_sym_def_type_statement_token1] = ACTIONS(9586), + [aux_sym_def_type_statement_token2] = ACTIONS(9586), + [aux_sym_def_type_statement_token3] = ACTIONS(9586), + [aux_sym_def_type_statement_token4] = ACTIONS(9586), + [aux_sym_def_type_statement_token5] = ACTIONS(9586), + [aux_sym_def_type_statement_token6] = ACTIONS(9586), + [aux_sym_def_type_statement_token7] = ACTIONS(9586), + [aux_sym_def_type_statement_token8] = ACTIONS(9586), + [aux_sym_def_type_statement_token9] = ACTIONS(9586), + [aux_sym_def_type_statement_token10] = ACTIONS(9586), + [aux_sym_def_type_statement_token11] = ACTIONS(9586), + [aux_sym_def_type_statement_token12] = ACTIONS(9586), + [aux_sym_def_type_statement_token13] = ACTIONS(9586), + [aux_sym_def_type_statement_token14] = ACTIONS(9586), + [aux_sym_call_statement_token1] = ACTIONS(9586), + [sym__ambiguous_call_statement] = ACTIONS(9586), + [aux_sym_addressof_expression_token1] = ACTIONS(9586), + [aux_sym_type_of_expression_token1] = ACTIONS(9586), + [aux_sym_unary_expression_token1] = ACTIONS(9586), + [sym_string_literal] = ACTIONS(9588), + [sym_number_literal] = ACTIONS(9588), + [aux_sym_boolean_literal_token1] = ACTIONS(9586), + [aux_sym_boolean_literal_token2] = ACTIONS(9586), + [sym_nothing_literal] = ACTIONS(9586), + [sym_null_literal] = ACTIONS(9586), + [sym_empty_literal] = ACTIONS(9586), + [sym_date_literal] = ACTIONS(9588), + [anon_sym_POUND] = ACTIONS(9586), + }, + [STATE(5715)] = { + [sym_identifier] = ACTIONS(9590), + [sym_newline] = ACTIONS(9592), + [anon_sym_COLON] = ACTIONS(9592), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9590), + [aux_sym_frm_property_statement_token1] = ACTIONS(9590), + [anon_sym_DOT] = ACTIONS(9590), + [anon_sym_BANG] = ACTIONS(9592), + [aux_sym__attribute_identifier_token1] = ACTIONS(9590), + [aux_sym_option_statement_token3] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9590), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9590), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9590), + [aux_sym_preprocessor_const_token1] = ACTIONS(9590), + [sym_static_modifier] = ACTIONS(9590), + [sym__dim_keyword] = ACTIONS(9590), + [sym__redim_keyword] = ACTIONS(9590), + [aux_sym_get_accessor_token1] = ACTIONS(9590), + [aux_sym_set_accessor_token1] = ACTIONS(9590), + [aux_sym_const_declaration_token1] = ACTIONS(9590), + [anon_sym_LPAREN] = ACTIONS(9592), + [aux_sym_as_type_clause_token2] = ACTIONS(9590), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9590), + [aux_sym_visibility_token1] = ACTIONS(9590), + [aux_sym_visibility_token2] = ACTIONS(9590), + [aux_sym_elseif_fragment_token1] = ACTIONS(9590), + [aux_sym_else_fragment_token1] = ACTIONS(9590), + [aux_sym_select_statement_token1] = ACTIONS(9590), + [aux_sym__for_header_token1] = ACTIONS(9590), + [aux_sym_do_statement_token1] = ACTIONS(9590), + [aux_sym_do_condition_token1] = ACTIONS(9590), + [aux_sym_with_statement_token1] = ACTIONS(9590), + [aux_sym_exit_statement_token1] = ACTIONS(9590), + [sym_end_statement] = ACTIONS(9592), + [aux_sym_on_goto_statement_token1] = ACTIONS(9590), + [aux_sym_on_goto_statement_token2] = ACTIONS(9590), + [aux_sym_on_error_statement_token2] = ACTIONS(9590), + [sym__ambiguous_redim_statement] = ACTIONS(9592), + [aux_sym_erase_statement_token1] = ACTIONS(9590), + [aux_sym_open_statement_token1] = ACTIONS(9590), + [aux_sym_file_mode_token2] = ACTIONS(9590), + [aux_sym_file_access_token2] = ACTIONS(9590), + [aux_sym_file_lock_token2] = ACTIONS(9590), + [aux_sym_print_statement_token1] = ACTIONS(9590), + [anon_sym_PLUS] = ACTIONS(9592), + [anon_sym_DASH] = ACTIONS(9590), + [anon_sym_QMARK] = ACTIONS(9592), + [aux_sym_close_statement_token1] = ACTIONS(9590), + [aux_sym_put_statement_token1] = ACTIONS(9590), + [aux_sym_unlock_statement_token1] = ACTIONS(9590), + [aux_sym_seek_statement_token1] = ACTIONS(9590), + [sym_reset_statement] = ACTIONS(9590), + [aux_sym_raise_event_statement_token1] = ACTIONS(9590), + [sym_stop_statement] = ACTIONS(9590), + [sym_beep_statement] = ACTIONS(9590), + [aux_sym_unload_statement_token1] = ACTIONS(9590), + [aux_sym_def_type_statement_token1] = ACTIONS(9590), + [aux_sym_def_type_statement_token2] = ACTIONS(9590), + [aux_sym_def_type_statement_token3] = ACTIONS(9590), + [aux_sym_def_type_statement_token4] = ACTIONS(9590), + [aux_sym_def_type_statement_token5] = ACTIONS(9590), + [aux_sym_def_type_statement_token6] = ACTIONS(9590), + [aux_sym_def_type_statement_token7] = ACTIONS(9590), + [aux_sym_def_type_statement_token8] = ACTIONS(9590), + [aux_sym_def_type_statement_token9] = ACTIONS(9590), + [aux_sym_def_type_statement_token10] = ACTIONS(9590), + [aux_sym_def_type_statement_token11] = ACTIONS(9590), + [aux_sym_def_type_statement_token12] = ACTIONS(9590), + [aux_sym_def_type_statement_token13] = ACTIONS(9590), + [aux_sym_def_type_statement_token14] = ACTIONS(9590), + [aux_sym_call_statement_token1] = ACTIONS(9590), + [sym__ambiguous_call_statement] = ACTIONS(9590), + [aux_sym_addressof_expression_token1] = ACTIONS(9590), + [aux_sym_type_of_expression_token1] = ACTIONS(9590), + [aux_sym_unary_expression_token1] = ACTIONS(9590), + [sym_string_literal] = ACTIONS(9592), + [sym_number_literal] = ACTIONS(9592), + [aux_sym_boolean_literal_token1] = ACTIONS(9590), + [aux_sym_boolean_literal_token2] = ACTIONS(9590), + [sym_nothing_literal] = ACTIONS(9590), + [sym_null_literal] = ACTIONS(9590), + [sym_empty_literal] = ACTIONS(9590), + [sym_date_literal] = ACTIONS(9592), + [anon_sym_POUND] = ACTIONS(9590), + }, + [STATE(5716)] = { + [sym_identifier] = ACTIONS(9594), + [sym_newline] = ACTIONS(9596), + [anon_sym_COLON] = ACTIONS(9596), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9594), + [aux_sym_frm_property_statement_token1] = ACTIONS(9594), + [anon_sym_DOT] = ACTIONS(9594), + [anon_sym_BANG] = ACTIONS(9596), + [aux_sym__attribute_identifier_token1] = ACTIONS(9594), + [aux_sym_option_statement_token3] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9594), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9594), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9594), + [aux_sym_preprocessor_const_token1] = ACTIONS(9594), + [sym_static_modifier] = ACTIONS(9594), + [sym__dim_keyword] = ACTIONS(9594), + [sym__redim_keyword] = ACTIONS(9594), + [aux_sym_get_accessor_token1] = ACTIONS(9594), + [aux_sym_set_accessor_token1] = ACTIONS(9594), + [aux_sym_const_declaration_token1] = ACTIONS(9594), + [anon_sym_LPAREN] = ACTIONS(9596), + [aux_sym_as_type_clause_token2] = ACTIONS(9594), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9594), + [aux_sym_visibility_token1] = ACTIONS(9594), + [aux_sym_visibility_token2] = ACTIONS(9594), + [aux_sym_elseif_fragment_token1] = ACTIONS(9594), + [aux_sym_else_fragment_token1] = ACTIONS(9594), + [aux_sym_select_statement_token1] = ACTIONS(9594), + [aux_sym__for_header_token1] = ACTIONS(9594), + [aux_sym_do_statement_token1] = ACTIONS(9594), + [aux_sym_do_condition_token1] = ACTIONS(9594), + [aux_sym_with_statement_token1] = ACTIONS(9594), + [aux_sym_exit_statement_token1] = ACTIONS(9594), + [sym_end_statement] = ACTIONS(9596), + [aux_sym_on_goto_statement_token1] = ACTIONS(9594), + [aux_sym_on_goto_statement_token2] = ACTIONS(9594), + [aux_sym_on_error_statement_token2] = ACTIONS(9594), + [sym__ambiguous_redim_statement] = ACTIONS(9596), + [aux_sym_erase_statement_token1] = ACTIONS(9594), + [aux_sym_open_statement_token1] = ACTIONS(9594), + [aux_sym_file_mode_token2] = ACTIONS(9594), + [aux_sym_file_access_token2] = ACTIONS(9594), + [aux_sym_file_lock_token2] = ACTIONS(9594), + [aux_sym_print_statement_token1] = ACTIONS(9594), + [anon_sym_PLUS] = ACTIONS(9596), + [anon_sym_DASH] = ACTIONS(9594), + [anon_sym_QMARK] = ACTIONS(9596), + [aux_sym_close_statement_token1] = ACTIONS(9594), + [aux_sym_put_statement_token1] = ACTIONS(9594), + [aux_sym_unlock_statement_token1] = ACTIONS(9594), + [aux_sym_seek_statement_token1] = ACTIONS(9594), + [sym_reset_statement] = ACTIONS(9594), + [aux_sym_raise_event_statement_token1] = ACTIONS(9594), + [sym_stop_statement] = ACTIONS(9594), + [sym_beep_statement] = ACTIONS(9594), + [aux_sym_unload_statement_token1] = ACTIONS(9594), + [aux_sym_def_type_statement_token1] = ACTIONS(9594), + [aux_sym_def_type_statement_token2] = ACTIONS(9594), + [aux_sym_def_type_statement_token3] = ACTIONS(9594), + [aux_sym_def_type_statement_token4] = ACTIONS(9594), + [aux_sym_def_type_statement_token5] = ACTIONS(9594), + [aux_sym_def_type_statement_token6] = ACTIONS(9594), + [aux_sym_def_type_statement_token7] = ACTIONS(9594), + [aux_sym_def_type_statement_token8] = ACTIONS(9594), + [aux_sym_def_type_statement_token9] = ACTIONS(9594), + [aux_sym_def_type_statement_token10] = ACTIONS(9594), + [aux_sym_def_type_statement_token11] = ACTIONS(9594), + [aux_sym_def_type_statement_token12] = ACTIONS(9594), + [aux_sym_def_type_statement_token13] = ACTIONS(9594), + [aux_sym_def_type_statement_token14] = ACTIONS(9594), + [aux_sym_call_statement_token1] = ACTIONS(9594), + [sym__ambiguous_call_statement] = ACTIONS(9594), + [aux_sym_addressof_expression_token1] = ACTIONS(9594), + [aux_sym_type_of_expression_token1] = ACTIONS(9594), + [aux_sym_unary_expression_token1] = ACTIONS(9594), + [sym_string_literal] = ACTIONS(9596), + [sym_number_literal] = ACTIONS(9596), + [aux_sym_boolean_literal_token1] = ACTIONS(9594), + [aux_sym_boolean_literal_token2] = ACTIONS(9594), + [sym_nothing_literal] = ACTIONS(9594), + [sym_null_literal] = ACTIONS(9594), + [sym_empty_literal] = ACTIONS(9594), + [sym_date_literal] = ACTIONS(9596), + [anon_sym_POUND] = ACTIONS(9594), + }, + [STATE(5717)] = { + [sym_do_condition] = STATE(6659), + [sym_identifier] = ACTIONS(8471), + [sym_newline] = ACTIONS(8473), + [anon_sym_COLON] = ACTIONS(8473), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8471), + [aux_sym_frm_property_statement_token1] = ACTIONS(8471), + [anon_sym_DOT] = ACTIONS(8471), + [anon_sym_BANG] = ACTIONS(8473), + [aux_sym__attribute_identifier_token1] = ACTIONS(8471), + [aux_sym_option_statement_token3] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8471), + [aux_sym_preprocessor_const_token1] = ACTIONS(8471), + [sym_static_modifier] = ACTIONS(8471), + [sym__dim_keyword] = ACTIONS(8471), + [sym__redim_keyword] = ACTIONS(8471), + [aux_sym_get_accessor_token1] = ACTIONS(8471), + [aux_sym_set_accessor_token1] = ACTIONS(8471), + [aux_sym_const_declaration_token1] = ACTIONS(8471), + [anon_sym_LPAREN] = ACTIONS(8473), + [aux_sym_as_type_clause_token2] = ACTIONS(8471), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8471), + [aux_sym_visibility_token1] = ACTIONS(8471), + [aux_sym_visibility_token2] = ACTIONS(8471), + [aux_sym_elseif_fragment_token1] = ACTIONS(8471), + [aux_sym_else_fragment_token1] = ACTIONS(8471), + [aux_sym_select_statement_token1] = ACTIONS(8471), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8471), + [aux_sym__for_header_token1] = ACTIONS(8471), + [aux_sym_do_statement_token1] = ACTIONS(8471), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8471), + [aux_sym_exit_statement_token1] = ACTIONS(8471), + [sym_end_statement] = ACTIONS(8473), + [aux_sym_on_goto_statement_token1] = ACTIONS(8471), + [aux_sym_on_goto_statement_token2] = ACTIONS(8471), + [aux_sym_on_error_statement_token2] = ACTIONS(8471), + [sym__ambiguous_redim_statement] = ACTIONS(8473), + [aux_sym_erase_statement_token1] = ACTIONS(8471), + [aux_sym_open_statement_token1] = ACTIONS(8471), + [aux_sym_file_mode_token2] = ACTIONS(8471), + [aux_sym_file_access_token2] = ACTIONS(8471), + [aux_sym_file_lock_token2] = ACTIONS(8471), + [aux_sym_print_statement_token1] = ACTIONS(8471), + [anon_sym_PLUS] = ACTIONS(8473), + [anon_sym_DASH] = ACTIONS(8471), + [anon_sym_QMARK] = ACTIONS(8473), + [aux_sym_close_statement_token1] = ACTIONS(8471), + [aux_sym_put_statement_token1] = ACTIONS(8471), + [aux_sym_unlock_statement_token1] = ACTIONS(8471), + [aux_sym_seek_statement_token1] = ACTIONS(8471), + [sym_reset_statement] = ACTIONS(8471), + [aux_sym_raise_event_statement_token1] = ACTIONS(8471), + [sym_stop_statement] = ACTIONS(8471), + [sym_beep_statement] = ACTIONS(8471), + [aux_sym_unload_statement_token1] = ACTIONS(8471), + [aux_sym_def_type_statement_token1] = ACTIONS(8471), + [aux_sym_def_type_statement_token2] = ACTIONS(8471), + [aux_sym_def_type_statement_token3] = ACTIONS(8471), + [aux_sym_def_type_statement_token4] = ACTIONS(8471), + [aux_sym_def_type_statement_token5] = ACTIONS(8471), + [aux_sym_def_type_statement_token6] = ACTIONS(8471), + [aux_sym_def_type_statement_token7] = ACTIONS(8471), + [aux_sym_def_type_statement_token8] = ACTIONS(8471), + [aux_sym_def_type_statement_token9] = ACTIONS(8471), + [aux_sym_def_type_statement_token10] = ACTIONS(8471), + [aux_sym_def_type_statement_token11] = ACTIONS(8471), + [aux_sym_def_type_statement_token12] = ACTIONS(8471), + [aux_sym_def_type_statement_token13] = ACTIONS(8471), + [aux_sym_def_type_statement_token14] = ACTIONS(8471), + [aux_sym_call_statement_token1] = ACTIONS(8471), + [sym__ambiguous_call_statement] = ACTIONS(8471), + [aux_sym_addressof_expression_token1] = ACTIONS(8471), + [aux_sym_type_of_expression_token1] = ACTIONS(8471), + [aux_sym_unary_expression_token1] = ACTIONS(8471), + [sym_string_literal] = ACTIONS(8473), + [sym_number_literal] = ACTIONS(8473), + [aux_sym_boolean_literal_token1] = ACTIONS(8471), + [aux_sym_boolean_literal_token2] = ACTIONS(8471), + [sym_nothing_literal] = ACTIONS(8471), + [sym_null_literal] = ACTIONS(8471), + [sym_empty_literal] = ACTIONS(8471), + [sym_date_literal] = ACTIONS(8473), + [anon_sym_POUND] = ACTIONS(8471), + }, + [STATE(5718)] = { + [sym_do_condition] = STATE(6660), + [sym_identifier] = ACTIONS(8479), + [sym_newline] = ACTIONS(8481), + [anon_sym_COLON] = ACTIONS(8481), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8479), + [aux_sym_frm_property_statement_token1] = ACTIONS(8479), + [anon_sym_DOT] = ACTIONS(8479), + [anon_sym_BANG] = ACTIONS(8481), + [aux_sym__attribute_identifier_token1] = ACTIONS(8479), + [aux_sym_option_statement_token3] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8479), + [aux_sym_preprocessor_const_token1] = ACTIONS(8479), + [sym_static_modifier] = ACTIONS(8479), + [sym__dim_keyword] = ACTIONS(8479), + [sym__redim_keyword] = ACTIONS(8479), + [aux_sym_get_accessor_token1] = ACTIONS(8479), + [aux_sym_set_accessor_token1] = ACTIONS(8479), + [aux_sym_const_declaration_token1] = ACTIONS(8479), + [anon_sym_LPAREN] = ACTIONS(8481), + [aux_sym_as_type_clause_token2] = ACTIONS(8479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8479), + [aux_sym_visibility_token1] = ACTIONS(8479), + [aux_sym_visibility_token2] = ACTIONS(8479), + [aux_sym_elseif_fragment_token1] = ACTIONS(8479), + [aux_sym_else_fragment_token1] = ACTIONS(8479), + [aux_sym_select_statement_token1] = ACTIONS(8479), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8479), + [aux_sym__for_header_token1] = ACTIONS(8479), + [aux_sym_do_statement_token1] = ACTIONS(8479), + [aux_sym_do_condition_token1] = ACTIONS(10628), + [aux_sym_do_condition_token2] = ACTIONS(10628), + [aux_sym_with_statement_token1] = ACTIONS(8479), + [aux_sym_exit_statement_token1] = ACTIONS(8479), + [sym_end_statement] = ACTIONS(8481), + [aux_sym_on_goto_statement_token1] = ACTIONS(8479), + [aux_sym_on_goto_statement_token2] = ACTIONS(8479), + [aux_sym_on_error_statement_token2] = ACTIONS(8479), + [sym__ambiguous_redim_statement] = ACTIONS(8481), + [aux_sym_erase_statement_token1] = ACTIONS(8479), + [aux_sym_open_statement_token1] = ACTIONS(8479), + [aux_sym_file_mode_token2] = ACTIONS(8479), + [aux_sym_file_access_token2] = ACTIONS(8479), + [aux_sym_file_lock_token2] = ACTIONS(8479), + [aux_sym_print_statement_token1] = ACTIONS(8479), + [anon_sym_PLUS] = ACTIONS(8481), + [anon_sym_DASH] = ACTIONS(8479), + [anon_sym_QMARK] = ACTIONS(8481), + [aux_sym_close_statement_token1] = ACTIONS(8479), + [aux_sym_put_statement_token1] = ACTIONS(8479), + [aux_sym_unlock_statement_token1] = ACTIONS(8479), + [aux_sym_seek_statement_token1] = ACTIONS(8479), + [sym_reset_statement] = ACTIONS(8479), + [aux_sym_raise_event_statement_token1] = ACTIONS(8479), + [sym_stop_statement] = ACTIONS(8479), + [sym_beep_statement] = ACTIONS(8479), + [aux_sym_unload_statement_token1] = ACTIONS(8479), + [aux_sym_def_type_statement_token1] = ACTIONS(8479), + [aux_sym_def_type_statement_token2] = ACTIONS(8479), + [aux_sym_def_type_statement_token3] = ACTIONS(8479), + [aux_sym_def_type_statement_token4] = ACTIONS(8479), + [aux_sym_def_type_statement_token5] = ACTIONS(8479), + [aux_sym_def_type_statement_token6] = ACTIONS(8479), + [aux_sym_def_type_statement_token7] = ACTIONS(8479), + [aux_sym_def_type_statement_token8] = ACTIONS(8479), + [aux_sym_def_type_statement_token9] = ACTIONS(8479), + [aux_sym_def_type_statement_token10] = ACTIONS(8479), + [aux_sym_def_type_statement_token11] = ACTIONS(8479), + [aux_sym_def_type_statement_token12] = ACTIONS(8479), + [aux_sym_def_type_statement_token13] = ACTIONS(8479), + [aux_sym_def_type_statement_token14] = ACTIONS(8479), + [aux_sym_call_statement_token1] = ACTIONS(8479), + [sym__ambiguous_call_statement] = ACTIONS(8479), + [aux_sym_addressof_expression_token1] = ACTIONS(8479), + [aux_sym_type_of_expression_token1] = ACTIONS(8479), + [aux_sym_unary_expression_token1] = ACTIONS(8479), + [sym_string_literal] = ACTIONS(8481), + [sym_number_literal] = ACTIONS(8481), + [aux_sym_boolean_literal_token1] = ACTIONS(8479), + [aux_sym_boolean_literal_token2] = ACTIONS(8479), + [sym_nothing_literal] = ACTIONS(8479), + [sym_null_literal] = ACTIONS(8479), + [sym_empty_literal] = ACTIONS(8479), + [sym_date_literal] = ACTIONS(8481), + [anon_sym_POUND] = ACTIONS(8479), + }, + [STATE(5719)] = { + [sym_identifier] = ACTIONS(9598), + [sym_newline] = ACTIONS(9600), + [anon_sym_COLON] = ACTIONS(9600), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9598), + [aux_sym_frm_property_statement_token1] = ACTIONS(9598), + [anon_sym_DOT] = ACTIONS(9598), + [anon_sym_BANG] = ACTIONS(9600), + [aux_sym__attribute_identifier_token1] = ACTIONS(9598), + [aux_sym_option_statement_token3] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9598), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9598), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9598), + [aux_sym_preprocessor_const_token1] = ACTIONS(9598), + [sym_static_modifier] = ACTIONS(9598), + [sym__dim_keyword] = ACTIONS(9598), + [sym__redim_keyword] = ACTIONS(9598), + [aux_sym_get_accessor_token1] = ACTIONS(9598), + [aux_sym_set_accessor_token1] = ACTIONS(9598), + [aux_sym_const_declaration_token1] = ACTIONS(9598), + [anon_sym_LPAREN] = ACTIONS(9600), + [aux_sym_as_type_clause_token2] = ACTIONS(9598), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9598), + [aux_sym_visibility_token1] = ACTIONS(9598), + [aux_sym_visibility_token2] = ACTIONS(9598), + [aux_sym_elseif_fragment_token1] = ACTIONS(9598), + [aux_sym_else_fragment_token1] = ACTIONS(9598), + [aux_sym_select_statement_token1] = ACTIONS(9598), + [aux_sym__for_header_token1] = ACTIONS(9598), + [aux_sym_do_statement_token1] = ACTIONS(9598), + [aux_sym_do_condition_token1] = ACTIONS(9598), + [aux_sym_with_statement_token1] = ACTIONS(9598), + [aux_sym_exit_statement_token1] = ACTIONS(9598), + [sym_end_statement] = ACTIONS(9600), + [aux_sym_on_goto_statement_token1] = ACTIONS(9598), + [aux_sym_on_goto_statement_token2] = ACTIONS(9598), + [aux_sym_on_error_statement_token2] = ACTIONS(9598), + [sym__ambiguous_redim_statement] = ACTIONS(9600), + [aux_sym_erase_statement_token1] = ACTIONS(9598), + [aux_sym_open_statement_token1] = ACTIONS(9598), + [aux_sym_file_mode_token2] = ACTIONS(9598), + [aux_sym_file_access_token2] = ACTIONS(9598), + [aux_sym_file_lock_token2] = ACTIONS(9598), + [aux_sym_print_statement_token1] = ACTIONS(9598), + [anon_sym_PLUS] = ACTIONS(9600), + [anon_sym_DASH] = ACTIONS(9598), + [anon_sym_QMARK] = ACTIONS(9600), + [aux_sym_close_statement_token1] = ACTIONS(9598), + [aux_sym_put_statement_token1] = ACTIONS(9598), + [aux_sym_unlock_statement_token1] = ACTIONS(9598), + [aux_sym_seek_statement_token1] = ACTIONS(9598), + [sym_reset_statement] = ACTIONS(9598), + [aux_sym_raise_event_statement_token1] = ACTIONS(9598), + [sym_stop_statement] = ACTIONS(9598), + [sym_beep_statement] = ACTIONS(9598), + [aux_sym_unload_statement_token1] = ACTIONS(9598), + [aux_sym_def_type_statement_token1] = ACTIONS(9598), + [aux_sym_def_type_statement_token2] = ACTIONS(9598), + [aux_sym_def_type_statement_token3] = ACTIONS(9598), + [aux_sym_def_type_statement_token4] = ACTIONS(9598), + [aux_sym_def_type_statement_token5] = ACTIONS(9598), + [aux_sym_def_type_statement_token6] = ACTIONS(9598), + [aux_sym_def_type_statement_token7] = ACTIONS(9598), + [aux_sym_def_type_statement_token8] = ACTIONS(9598), + [aux_sym_def_type_statement_token9] = ACTIONS(9598), + [aux_sym_def_type_statement_token10] = ACTIONS(9598), + [aux_sym_def_type_statement_token11] = ACTIONS(9598), + [aux_sym_def_type_statement_token12] = ACTIONS(9598), + [aux_sym_def_type_statement_token13] = ACTIONS(9598), + [aux_sym_def_type_statement_token14] = ACTIONS(9598), + [aux_sym_call_statement_token1] = ACTIONS(9598), + [sym__ambiguous_call_statement] = ACTIONS(9598), + [aux_sym_addressof_expression_token1] = ACTIONS(9598), + [aux_sym_type_of_expression_token1] = ACTIONS(9598), + [aux_sym_unary_expression_token1] = ACTIONS(9598), + [sym_string_literal] = ACTIONS(9600), + [sym_number_literal] = ACTIONS(9600), + [aux_sym_boolean_literal_token1] = ACTIONS(9598), + [aux_sym_boolean_literal_token2] = ACTIONS(9598), + [sym_nothing_literal] = ACTIONS(9598), + [sym_null_literal] = ACTIONS(9598), + [sym_empty_literal] = ACTIONS(9598), + [sym_date_literal] = ACTIONS(9600), + [anon_sym_POUND] = ACTIONS(9598), + }, + [STATE(5720)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5116), + [sym_identifier] = ACTIONS(8483), + [sym_newline] = ACTIONS(8485), + [anon_sym_COLON] = ACTIONS(8485), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8483), + [aux_sym_frm_property_statement_token1] = ACTIONS(8483), + [anon_sym_DOT] = ACTIONS(8483), + [anon_sym_BANG] = ACTIONS(8485), + [aux_sym__attribute_identifier_token1] = ACTIONS(8483), + [aux_sym_option_statement_token3] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8483), + [aux_sym_preprocessor_const_token1] = ACTIONS(8483), + [sym_static_modifier] = ACTIONS(8483), + [sym__dim_keyword] = ACTIONS(8483), + [sym__redim_keyword] = ACTIONS(8483), + [aux_sym_get_accessor_token1] = ACTIONS(8483), + [aux_sym_set_accessor_token1] = ACTIONS(8483), + [anon_sym_COMMA] = ACTIONS(5160), + [aux_sym_const_declaration_token1] = ACTIONS(8483), + [anon_sym_LPAREN] = ACTIONS(8485), + [aux_sym_as_type_clause_token2] = ACTIONS(8483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8483), + [aux_sym_visibility_token1] = ACTIONS(8483), + [aux_sym_visibility_token2] = ACTIONS(8483), + [aux_sym_elseif_fragment_token1] = ACTIONS(8483), + [aux_sym_else_fragment_token1] = ACTIONS(8483), + [aux_sym_select_statement_token1] = ACTIONS(8483), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8483), + [aux_sym__for_header_token1] = ACTIONS(8483), + [aux_sym_do_statement_token1] = ACTIONS(8483), + [aux_sym_do_condition_token1] = ACTIONS(8483), + [aux_sym_with_statement_token1] = ACTIONS(8483), + [aux_sym_exit_statement_token1] = ACTIONS(8483), + [sym_end_statement] = ACTIONS(8485), + [aux_sym_on_goto_statement_token1] = ACTIONS(8483), + [aux_sym_on_goto_statement_token2] = ACTIONS(8483), + [aux_sym_on_error_statement_token2] = ACTIONS(8483), + [sym__ambiguous_redim_statement] = ACTIONS(8485), + [aux_sym_erase_statement_token1] = ACTIONS(8483), + [aux_sym_open_statement_token1] = ACTIONS(8483), + [aux_sym_file_mode_token2] = ACTIONS(8483), + [aux_sym_file_access_token2] = ACTIONS(8483), + [aux_sym_file_lock_token2] = ACTIONS(8483), + [aux_sym_print_statement_token1] = ACTIONS(8483), + [anon_sym_PLUS] = ACTIONS(8485), + [anon_sym_DASH] = ACTIONS(8483), + [anon_sym_QMARK] = ACTIONS(8485), + [aux_sym_close_statement_token1] = ACTIONS(8483), + [aux_sym_put_statement_token1] = ACTIONS(8483), + [aux_sym_unlock_statement_token1] = ACTIONS(8483), + [aux_sym_seek_statement_token1] = ACTIONS(8483), + [sym_reset_statement] = ACTIONS(8483), + [aux_sym_raise_event_statement_token1] = ACTIONS(8483), + [sym_stop_statement] = ACTIONS(8483), + [sym_beep_statement] = ACTIONS(8483), + [aux_sym_unload_statement_token1] = ACTIONS(8483), + [aux_sym_def_type_statement_token1] = ACTIONS(8483), + [aux_sym_def_type_statement_token2] = ACTIONS(8483), + [aux_sym_def_type_statement_token3] = ACTIONS(8483), + [aux_sym_def_type_statement_token4] = ACTIONS(8483), + [aux_sym_def_type_statement_token5] = ACTIONS(8483), + [aux_sym_def_type_statement_token6] = ACTIONS(8483), + [aux_sym_def_type_statement_token7] = ACTIONS(8483), + [aux_sym_def_type_statement_token8] = ACTIONS(8483), + [aux_sym_def_type_statement_token9] = ACTIONS(8483), + [aux_sym_def_type_statement_token10] = ACTIONS(8483), + [aux_sym_def_type_statement_token11] = ACTIONS(8483), + [aux_sym_def_type_statement_token12] = ACTIONS(8483), + [aux_sym_def_type_statement_token13] = ACTIONS(8483), + [aux_sym_def_type_statement_token14] = ACTIONS(8483), + [aux_sym_call_statement_token1] = ACTIONS(8483), + [sym__ambiguous_call_statement] = ACTIONS(8483), + [aux_sym_addressof_expression_token1] = ACTIONS(8483), + [aux_sym_type_of_expression_token1] = ACTIONS(8483), + [aux_sym_unary_expression_token1] = ACTIONS(8483), + [sym_string_literal] = ACTIONS(8485), + [sym_number_literal] = ACTIONS(8485), + [aux_sym_boolean_literal_token1] = ACTIONS(8483), + [aux_sym_boolean_literal_token2] = ACTIONS(8483), + [sym_nothing_literal] = ACTIONS(8483), + [sym_null_literal] = ACTIONS(8483), + [sym_empty_literal] = ACTIONS(8483), + [sym_date_literal] = ACTIONS(8485), + [anon_sym_POUND] = ACTIONS(8483), + }, + [STATE(5721)] = { + [sym_identifier] = ACTIONS(8813), + [sym_newline] = ACTIONS(8815), + [anon_sym_COLON] = ACTIONS(8815), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8813), + [aux_sym_frm_property_statement_token1] = ACTIONS(8813), + [anon_sym_DOT] = ACTIONS(8813), + [anon_sym_BANG] = ACTIONS(8815), + [aux_sym__attribute_identifier_token1] = ACTIONS(8813), + [aux_sym_option_statement_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8813), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(8813), + [aux_sym_preprocessor_const_token1] = ACTIONS(8813), + [sym_static_modifier] = ACTIONS(8813), + [sym__dim_keyword] = ACTIONS(8813), + [sym__redim_keyword] = ACTIONS(8813), + [aux_sym_get_accessor_token1] = ACTIONS(8813), + [aux_sym_set_accessor_token1] = ACTIONS(8813), + [aux_sym_const_declaration_token1] = ACTIONS(8813), + [anon_sym_LPAREN] = ACTIONS(8815), + [aux_sym_as_type_clause_token2] = ACTIONS(8813), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8813), + [aux_sym_visibility_token1] = ACTIONS(8813), + [aux_sym_visibility_token2] = ACTIONS(8813), + [aux_sym_elseif_fragment_token1] = ACTIONS(8813), + [aux_sym_else_fragment_token1] = ACTIONS(8813), + [aux_sym_select_statement_token1] = ACTIONS(8813), + [aux_sym__for_header_token1] = ACTIONS(8813), + [aux_sym_do_statement_token1] = ACTIONS(8813), + [aux_sym_do_condition_token1] = ACTIONS(8813), + [aux_sym_with_statement_token1] = ACTIONS(8813), + [aux_sym_exit_statement_token1] = ACTIONS(8813), + [sym_end_statement] = ACTIONS(8815), + [aux_sym_on_goto_statement_token1] = ACTIONS(8813), + [aux_sym_on_goto_statement_token2] = ACTIONS(8813), + [aux_sym_on_error_statement_token2] = ACTIONS(8813), + [sym__ambiguous_redim_statement] = ACTIONS(8815), + [aux_sym_erase_statement_token1] = ACTIONS(8813), + [aux_sym_open_statement_token1] = ACTIONS(8813), + [aux_sym_file_mode_token2] = ACTIONS(8813), + [aux_sym_file_access_token2] = ACTIONS(8813), + [aux_sym_file_lock_token2] = ACTIONS(8813), + [aux_sym_print_statement_token1] = ACTIONS(8813), + [anon_sym_PLUS] = ACTIONS(8815), + [anon_sym_DASH] = ACTIONS(8813), + [anon_sym_QMARK] = ACTIONS(8815), + [aux_sym_close_statement_token1] = ACTIONS(8813), + [aux_sym_put_statement_token1] = ACTIONS(8813), + [aux_sym_unlock_statement_token1] = ACTIONS(8813), + [aux_sym_seek_statement_token1] = ACTIONS(8813), + [sym_reset_statement] = ACTIONS(8813), + [aux_sym_raise_event_statement_token1] = ACTIONS(8813), + [sym_stop_statement] = ACTIONS(8813), + [sym_beep_statement] = ACTIONS(8813), + [aux_sym_unload_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token2] = ACTIONS(8813), + [aux_sym_def_type_statement_token3] = ACTIONS(8813), + [aux_sym_def_type_statement_token4] = ACTIONS(8813), + [aux_sym_def_type_statement_token5] = ACTIONS(8813), + [aux_sym_def_type_statement_token6] = ACTIONS(8813), + [aux_sym_def_type_statement_token7] = ACTIONS(8813), + [aux_sym_def_type_statement_token8] = ACTIONS(8813), + [aux_sym_def_type_statement_token9] = ACTIONS(8813), + [aux_sym_def_type_statement_token10] = ACTIONS(8813), + [aux_sym_def_type_statement_token11] = ACTIONS(8813), + [aux_sym_def_type_statement_token12] = ACTIONS(8813), + [aux_sym_def_type_statement_token13] = ACTIONS(8813), + [aux_sym_def_type_statement_token14] = ACTIONS(8813), + [aux_sym_call_statement_token1] = ACTIONS(8813), + [sym__ambiguous_call_statement] = ACTIONS(8813), + [aux_sym_addressof_expression_token1] = ACTIONS(8813), + [aux_sym_type_of_expression_token1] = ACTIONS(8813), + [aux_sym_unary_expression_token1] = ACTIONS(8813), + [sym_string_literal] = ACTIONS(8815), + [sym_number_literal] = ACTIONS(8815), + [aux_sym_boolean_literal_token1] = ACTIONS(8813), + [aux_sym_boolean_literal_token2] = ACTIONS(8813), + [sym_nothing_literal] = ACTIONS(8813), + [sym_null_literal] = ACTIONS(8813), + [sym_empty_literal] = ACTIONS(8813), + [sym_date_literal] = ACTIONS(8815), + [anon_sym_POUND] = ACTIONS(8813), + }, + [STATE(5722)] = { + [sym_identifier] = ACTIONS(9639), + [sym_newline] = ACTIONS(9641), + [anon_sym_COLON] = ACTIONS(9641), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9639), + [aux_sym_frm_property_statement_token1] = ACTIONS(9639), + [anon_sym_DOT] = ACTIONS(9639), + [anon_sym_BANG] = ACTIONS(9641), + [aux_sym__attribute_identifier_token1] = ACTIONS(9639), + [aux_sym_option_statement_token3] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9639), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9639), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9639), + [aux_sym_preprocessor_const_token1] = ACTIONS(9639), + [sym_static_modifier] = ACTIONS(9639), + [sym__dim_keyword] = ACTIONS(9639), + [sym__redim_keyword] = ACTIONS(9639), + [aux_sym_get_accessor_token1] = ACTIONS(9639), + [aux_sym_set_accessor_token1] = ACTIONS(9639), + [aux_sym_const_declaration_token1] = ACTIONS(9639), + [anon_sym_LPAREN] = ACTIONS(9641), + [aux_sym_as_type_clause_token2] = ACTIONS(9639), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9639), + [aux_sym_visibility_token1] = ACTIONS(9639), + [aux_sym_visibility_token2] = ACTIONS(9639), + [aux_sym_elseif_fragment_token1] = ACTIONS(9639), + [aux_sym_else_fragment_token1] = ACTIONS(9639), + [aux_sym_select_statement_token1] = ACTIONS(9639), + [aux_sym__for_header_token1] = ACTIONS(9639), + [aux_sym_do_statement_token1] = ACTIONS(9639), + [aux_sym_do_condition_token1] = ACTIONS(9639), + [aux_sym_with_statement_token1] = ACTIONS(9639), + [aux_sym_exit_statement_token1] = ACTIONS(9639), + [sym_end_statement] = ACTIONS(9641), + [aux_sym_on_goto_statement_token1] = ACTIONS(9639), + [aux_sym_on_goto_statement_token2] = ACTIONS(9639), + [aux_sym_on_error_statement_token2] = ACTIONS(9639), + [sym__ambiguous_redim_statement] = ACTIONS(9641), + [aux_sym_erase_statement_token1] = ACTIONS(9639), + [aux_sym_open_statement_token1] = ACTIONS(9639), + [aux_sym_file_mode_token2] = ACTIONS(9639), + [aux_sym_file_access_token2] = ACTIONS(9639), + [aux_sym_file_lock_token2] = ACTIONS(9639), + [aux_sym_print_statement_token1] = ACTIONS(9639), + [anon_sym_PLUS] = ACTIONS(9641), + [anon_sym_DASH] = ACTIONS(9639), + [anon_sym_QMARK] = ACTIONS(9641), + [aux_sym_close_statement_token1] = ACTIONS(9639), + [aux_sym_put_statement_token1] = ACTIONS(9639), + [aux_sym_unlock_statement_token1] = ACTIONS(9639), + [aux_sym_seek_statement_token1] = ACTIONS(9639), + [sym_reset_statement] = ACTIONS(9639), + [aux_sym_raise_event_statement_token1] = ACTIONS(9639), + [sym_stop_statement] = ACTIONS(9639), + [sym_beep_statement] = ACTIONS(9639), + [aux_sym_unload_statement_token1] = ACTIONS(9639), + [aux_sym_def_type_statement_token1] = ACTIONS(9639), + [aux_sym_def_type_statement_token2] = ACTIONS(9639), + [aux_sym_def_type_statement_token3] = ACTIONS(9639), + [aux_sym_def_type_statement_token4] = ACTIONS(9639), + [aux_sym_def_type_statement_token5] = ACTIONS(9639), + [aux_sym_def_type_statement_token6] = ACTIONS(9639), + [aux_sym_def_type_statement_token7] = ACTIONS(9639), + [aux_sym_def_type_statement_token8] = ACTIONS(9639), + [aux_sym_def_type_statement_token9] = ACTIONS(9639), + [aux_sym_def_type_statement_token10] = ACTIONS(9639), + [aux_sym_def_type_statement_token11] = ACTIONS(9639), + [aux_sym_def_type_statement_token12] = ACTIONS(9639), + [aux_sym_def_type_statement_token13] = ACTIONS(9639), + [aux_sym_def_type_statement_token14] = ACTIONS(9639), + [aux_sym_call_statement_token1] = ACTIONS(9639), + [sym__ambiguous_call_statement] = ACTIONS(9639), + [aux_sym_addressof_expression_token1] = ACTIONS(9639), + [aux_sym_type_of_expression_token1] = ACTIONS(9639), + [aux_sym_unary_expression_token1] = ACTIONS(9639), + [sym_string_literal] = ACTIONS(9641), + [sym_number_literal] = ACTIONS(9641), + [aux_sym_boolean_literal_token1] = ACTIONS(9639), + [aux_sym_boolean_literal_token2] = ACTIONS(9639), + [sym_nothing_literal] = ACTIONS(9639), + [sym_null_literal] = ACTIONS(9639), + [sym_empty_literal] = ACTIONS(9639), + [sym_date_literal] = ACTIONS(9641), + [anon_sym_POUND] = ACTIONS(9639), + }, + [STATE(5723)] = { + [sym_identifier] = ACTIONS(9643), + [sym_newline] = ACTIONS(9645), + [anon_sym_COLON] = ACTIONS(9645), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9643), + [aux_sym_frm_property_statement_token1] = ACTIONS(9643), + [anon_sym_DOT] = ACTIONS(9643), + [anon_sym_BANG] = ACTIONS(9645), + [aux_sym__attribute_identifier_token1] = ACTIONS(9643), + [aux_sym_option_statement_token3] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9643), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9643), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9643), + [aux_sym_preprocessor_const_token1] = ACTIONS(9643), + [sym_static_modifier] = ACTIONS(9643), + [sym__dim_keyword] = ACTIONS(9643), + [sym__redim_keyword] = ACTIONS(9643), + [aux_sym_get_accessor_token1] = ACTIONS(9643), + [aux_sym_set_accessor_token1] = ACTIONS(9643), + [aux_sym_const_declaration_token1] = ACTIONS(9643), + [anon_sym_LPAREN] = ACTIONS(9645), + [aux_sym_as_type_clause_token2] = ACTIONS(9643), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9643), + [aux_sym_visibility_token1] = ACTIONS(9643), + [aux_sym_visibility_token2] = ACTIONS(9643), + [aux_sym_elseif_fragment_token1] = ACTIONS(9643), + [aux_sym_else_fragment_token1] = ACTIONS(9643), + [aux_sym_select_statement_token1] = ACTIONS(9643), + [aux_sym__for_header_token1] = ACTIONS(9643), + [aux_sym_do_statement_token1] = ACTIONS(9643), + [aux_sym_do_condition_token1] = ACTIONS(9643), + [aux_sym_with_statement_token1] = ACTIONS(9643), + [aux_sym_exit_statement_token1] = ACTIONS(9643), + [sym_end_statement] = ACTIONS(9645), + [aux_sym_on_goto_statement_token1] = ACTIONS(9643), + [aux_sym_on_goto_statement_token2] = ACTIONS(9643), + [aux_sym_on_error_statement_token2] = ACTIONS(9643), + [sym__ambiguous_redim_statement] = ACTIONS(9645), + [aux_sym_erase_statement_token1] = ACTIONS(9643), + [aux_sym_open_statement_token1] = ACTIONS(9643), + [aux_sym_file_mode_token2] = ACTIONS(9643), + [aux_sym_file_access_token2] = ACTIONS(9643), + [aux_sym_file_lock_token2] = ACTIONS(9643), + [aux_sym_print_statement_token1] = ACTIONS(9643), + [anon_sym_PLUS] = ACTIONS(9645), + [anon_sym_DASH] = ACTIONS(9643), + [anon_sym_QMARK] = ACTIONS(9645), + [aux_sym_close_statement_token1] = ACTIONS(9643), + [aux_sym_put_statement_token1] = ACTIONS(9643), + [aux_sym_unlock_statement_token1] = ACTIONS(9643), + [aux_sym_seek_statement_token1] = ACTIONS(9643), + [sym_reset_statement] = ACTIONS(9643), + [aux_sym_raise_event_statement_token1] = ACTIONS(9643), + [sym_stop_statement] = ACTIONS(9643), + [sym_beep_statement] = ACTIONS(9643), + [aux_sym_unload_statement_token1] = ACTIONS(9643), + [aux_sym_def_type_statement_token1] = ACTIONS(9643), + [aux_sym_def_type_statement_token2] = ACTIONS(9643), + [aux_sym_def_type_statement_token3] = ACTIONS(9643), + [aux_sym_def_type_statement_token4] = ACTIONS(9643), + [aux_sym_def_type_statement_token5] = ACTIONS(9643), + [aux_sym_def_type_statement_token6] = ACTIONS(9643), + [aux_sym_def_type_statement_token7] = ACTIONS(9643), + [aux_sym_def_type_statement_token8] = ACTIONS(9643), + [aux_sym_def_type_statement_token9] = ACTIONS(9643), + [aux_sym_def_type_statement_token10] = ACTIONS(9643), + [aux_sym_def_type_statement_token11] = ACTIONS(9643), + [aux_sym_def_type_statement_token12] = ACTIONS(9643), + [aux_sym_def_type_statement_token13] = ACTIONS(9643), + [aux_sym_def_type_statement_token14] = ACTIONS(9643), + [aux_sym_call_statement_token1] = ACTIONS(9643), + [sym__ambiguous_call_statement] = ACTIONS(9643), + [aux_sym_addressof_expression_token1] = ACTIONS(9643), + [aux_sym_type_of_expression_token1] = ACTIONS(9643), + [aux_sym_unary_expression_token1] = ACTIONS(9643), + [sym_string_literal] = ACTIONS(9645), + [sym_number_literal] = ACTIONS(9645), + [aux_sym_boolean_literal_token1] = ACTIONS(9643), + [aux_sym_boolean_literal_token2] = ACTIONS(9643), + [sym_nothing_literal] = ACTIONS(9643), + [sym_null_literal] = ACTIONS(9643), + [sym_empty_literal] = ACTIONS(9643), + [sym_date_literal] = ACTIONS(9645), + [anon_sym_POUND] = ACTIONS(9643), + }, + [STATE(5724)] = { + [sym_identifier] = ACTIONS(9647), + [sym_newline] = ACTIONS(9649), + [anon_sym_COLON] = ACTIONS(9649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9647), + [aux_sym_frm_property_statement_token1] = ACTIONS(9647), + [anon_sym_DOT] = ACTIONS(9647), + [anon_sym_BANG] = ACTIONS(9649), + [aux_sym__attribute_identifier_token1] = ACTIONS(9647), + [aux_sym_option_statement_token3] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9647), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9647), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9647), + [aux_sym_preprocessor_const_token1] = ACTIONS(9647), + [sym_static_modifier] = ACTIONS(9647), + [sym__dim_keyword] = ACTIONS(9647), + [sym__redim_keyword] = ACTIONS(9647), + [aux_sym_get_accessor_token1] = ACTIONS(9647), + [aux_sym_set_accessor_token1] = ACTIONS(9647), + [aux_sym_const_declaration_token1] = ACTIONS(9647), + [anon_sym_LPAREN] = ACTIONS(9649), + [aux_sym_as_type_clause_token2] = ACTIONS(9647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9647), + [aux_sym_visibility_token1] = ACTIONS(9647), + [aux_sym_visibility_token2] = ACTIONS(9647), + [aux_sym_elseif_fragment_token1] = ACTIONS(9647), + [aux_sym_else_fragment_token1] = ACTIONS(9647), + [aux_sym_select_statement_token1] = ACTIONS(9647), + [aux_sym__for_header_token1] = ACTIONS(9647), + [aux_sym_do_statement_token1] = ACTIONS(9647), + [aux_sym_do_condition_token1] = ACTIONS(9647), + [aux_sym_with_statement_token1] = ACTIONS(9647), + [aux_sym_exit_statement_token1] = ACTIONS(9647), + [sym_end_statement] = ACTIONS(9649), + [aux_sym_on_goto_statement_token1] = ACTIONS(9647), + [aux_sym_on_goto_statement_token2] = ACTIONS(9647), + [aux_sym_on_error_statement_token2] = ACTIONS(9647), + [sym__ambiguous_redim_statement] = ACTIONS(9649), + [aux_sym_erase_statement_token1] = ACTIONS(9647), + [aux_sym_open_statement_token1] = ACTIONS(9647), + [aux_sym_file_mode_token2] = ACTIONS(9647), + [aux_sym_file_access_token2] = ACTIONS(9647), + [aux_sym_file_lock_token2] = ACTIONS(9647), + [aux_sym_print_statement_token1] = ACTIONS(9647), + [anon_sym_PLUS] = ACTIONS(9649), + [anon_sym_DASH] = ACTIONS(9647), + [anon_sym_QMARK] = ACTIONS(9649), + [aux_sym_close_statement_token1] = ACTIONS(9647), + [aux_sym_put_statement_token1] = ACTIONS(9647), + [aux_sym_unlock_statement_token1] = ACTIONS(9647), + [aux_sym_seek_statement_token1] = ACTIONS(9647), + [sym_reset_statement] = ACTIONS(9647), + [aux_sym_raise_event_statement_token1] = ACTIONS(9647), + [sym_stop_statement] = ACTIONS(9647), + [sym_beep_statement] = ACTIONS(9647), + [aux_sym_unload_statement_token1] = ACTIONS(9647), + [aux_sym_def_type_statement_token1] = ACTIONS(9647), + [aux_sym_def_type_statement_token2] = ACTIONS(9647), + [aux_sym_def_type_statement_token3] = ACTIONS(9647), + [aux_sym_def_type_statement_token4] = ACTIONS(9647), + [aux_sym_def_type_statement_token5] = ACTIONS(9647), + [aux_sym_def_type_statement_token6] = ACTIONS(9647), + [aux_sym_def_type_statement_token7] = ACTIONS(9647), + [aux_sym_def_type_statement_token8] = ACTIONS(9647), + [aux_sym_def_type_statement_token9] = ACTIONS(9647), + [aux_sym_def_type_statement_token10] = ACTIONS(9647), + [aux_sym_def_type_statement_token11] = ACTIONS(9647), + [aux_sym_def_type_statement_token12] = ACTIONS(9647), + [aux_sym_def_type_statement_token13] = ACTIONS(9647), + [aux_sym_def_type_statement_token14] = ACTIONS(9647), + [aux_sym_call_statement_token1] = ACTIONS(9647), + [sym__ambiguous_call_statement] = ACTIONS(9647), + [aux_sym_addressof_expression_token1] = ACTIONS(9647), + [aux_sym_type_of_expression_token1] = ACTIONS(9647), + [aux_sym_unary_expression_token1] = ACTIONS(9647), + [sym_string_literal] = ACTIONS(9649), + [sym_number_literal] = ACTIONS(9649), + [aux_sym_boolean_literal_token1] = ACTIONS(9647), + [aux_sym_boolean_literal_token2] = ACTIONS(9647), + [sym_nothing_literal] = ACTIONS(9647), + [sym_null_literal] = ACTIONS(9647), + [sym_empty_literal] = ACTIONS(9647), + [sym_date_literal] = ACTIONS(9649), + [anon_sym_POUND] = ACTIONS(9647), + }, + [STATE(5725)] = { + [sym_identifier] = ACTIONS(9654), + [sym_newline] = ACTIONS(9656), + [anon_sym_COLON] = ACTIONS(9656), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9654), + [aux_sym_frm_property_statement_token1] = ACTIONS(9654), + [anon_sym_DOT] = ACTIONS(9654), + [anon_sym_BANG] = ACTIONS(9656), + [aux_sym__attribute_identifier_token1] = ACTIONS(9654), + [aux_sym_option_statement_token3] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9654), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9654), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9654), + [aux_sym_preprocessor_const_token1] = ACTIONS(9654), + [sym_static_modifier] = ACTIONS(9654), + [sym__dim_keyword] = ACTIONS(9654), + [sym__redim_keyword] = ACTIONS(9654), + [aux_sym_get_accessor_token1] = ACTIONS(9654), + [aux_sym_set_accessor_token1] = ACTIONS(9654), + [aux_sym_const_declaration_token1] = ACTIONS(9654), + [anon_sym_LPAREN] = ACTIONS(9656), + [aux_sym_as_type_clause_token2] = ACTIONS(9654), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9654), + [aux_sym_visibility_token1] = ACTIONS(9654), + [aux_sym_visibility_token2] = ACTIONS(9654), + [aux_sym_elseif_fragment_token1] = ACTIONS(9654), + [aux_sym_else_fragment_token1] = ACTIONS(9654), + [aux_sym_select_statement_token1] = ACTIONS(9654), + [aux_sym__for_header_token1] = ACTIONS(9654), + [aux_sym_do_statement_token1] = ACTIONS(9654), + [aux_sym_do_condition_token1] = ACTIONS(9654), + [aux_sym_with_statement_token1] = ACTIONS(9654), + [aux_sym_exit_statement_token1] = ACTIONS(9654), + [sym_end_statement] = ACTIONS(9656), + [aux_sym_on_goto_statement_token1] = ACTIONS(9654), + [aux_sym_on_goto_statement_token2] = ACTIONS(9654), + [aux_sym_on_error_statement_token2] = ACTIONS(9654), + [sym__ambiguous_redim_statement] = ACTIONS(9656), + [aux_sym_erase_statement_token1] = ACTIONS(9654), + [aux_sym_open_statement_token1] = ACTIONS(9654), + [aux_sym_file_mode_token2] = ACTIONS(9654), + [aux_sym_file_access_token2] = ACTIONS(9654), + [aux_sym_file_lock_token2] = ACTIONS(9654), + [aux_sym_print_statement_token1] = ACTIONS(9654), + [anon_sym_PLUS] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(9654), + [anon_sym_QMARK] = ACTIONS(9656), + [aux_sym_close_statement_token1] = ACTIONS(9654), + [aux_sym_put_statement_token1] = ACTIONS(9654), + [aux_sym_unlock_statement_token1] = ACTIONS(9654), + [aux_sym_seek_statement_token1] = ACTIONS(9654), + [sym_reset_statement] = ACTIONS(9654), + [aux_sym_raise_event_statement_token1] = ACTIONS(9654), + [sym_stop_statement] = ACTIONS(9654), + [sym_beep_statement] = ACTIONS(9654), + [aux_sym_unload_statement_token1] = ACTIONS(9654), + [aux_sym_def_type_statement_token1] = ACTIONS(9654), + [aux_sym_def_type_statement_token2] = ACTIONS(9654), + [aux_sym_def_type_statement_token3] = ACTIONS(9654), + [aux_sym_def_type_statement_token4] = ACTIONS(9654), + [aux_sym_def_type_statement_token5] = ACTIONS(9654), + [aux_sym_def_type_statement_token6] = ACTIONS(9654), + [aux_sym_def_type_statement_token7] = ACTIONS(9654), + [aux_sym_def_type_statement_token8] = ACTIONS(9654), + [aux_sym_def_type_statement_token9] = ACTIONS(9654), + [aux_sym_def_type_statement_token10] = ACTIONS(9654), + [aux_sym_def_type_statement_token11] = ACTIONS(9654), + [aux_sym_def_type_statement_token12] = ACTIONS(9654), + [aux_sym_def_type_statement_token13] = ACTIONS(9654), + [aux_sym_def_type_statement_token14] = ACTIONS(9654), + [aux_sym_call_statement_token1] = ACTIONS(9654), + [sym__ambiguous_call_statement] = ACTIONS(9654), + [aux_sym_addressof_expression_token1] = ACTIONS(9654), + [aux_sym_type_of_expression_token1] = ACTIONS(9654), + [aux_sym_unary_expression_token1] = ACTIONS(9654), + [sym_string_literal] = ACTIONS(9656), + [sym_number_literal] = ACTIONS(9656), + [aux_sym_boolean_literal_token1] = ACTIONS(9654), + [aux_sym_boolean_literal_token2] = ACTIONS(9654), + [sym_nothing_literal] = ACTIONS(9654), + [sym_null_literal] = ACTIONS(9654), + [sym_empty_literal] = ACTIONS(9654), + [sym_date_literal] = ACTIONS(9656), + [anon_sym_POUND] = ACTIONS(9654), + }, + [STATE(5726)] = { + [sym_identifier] = ACTIONS(9662), + [sym_newline] = ACTIONS(9664), + [anon_sym_COLON] = ACTIONS(9664), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9662), + [aux_sym_frm_property_statement_token1] = ACTIONS(9662), + [anon_sym_DOT] = ACTIONS(9662), + [anon_sym_BANG] = ACTIONS(9664), + [aux_sym__attribute_identifier_token1] = ACTIONS(9662), + [aux_sym_option_statement_token3] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9662), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9662), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9662), + [aux_sym_preprocessor_const_token1] = ACTIONS(9662), + [sym_static_modifier] = ACTIONS(9662), + [sym__dim_keyword] = ACTIONS(9662), + [sym__redim_keyword] = ACTIONS(9662), + [aux_sym_get_accessor_token1] = ACTIONS(9662), + [aux_sym_set_accessor_token1] = ACTIONS(9662), + [aux_sym_const_declaration_token1] = ACTIONS(9662), + [anon_sym_LPAREN] = ACTIONS(9664), + [aux_sym_as_type_clause_token2] = ACTIONS(9662), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9662), + [aux_sym_visibility_token1] = ACTIONS(9662), + [aux_sym_visibility_token2] = ACTIONS(9662), + [aux_sym_elseif_fragment_token1] = ACTIONS(9662), + [aux_sym_else_fragment_token1] = ACTIONS(9662), + [aux_sym_select_statement_token1] = ACTIONS(9662), + [aux_sym__for_header_token1] = ACTIONS(9662), + [aux_sym_do_statement_token1] = ACTIONS(9662), + [aux_sym_do_condition_token1] = ACTIONS(9662), + [aux_sym_with_statement_token1] = ACTIONS(9662), + [aux_sym_exit_statement_token1] = ACTIONS(9662), + [sym_end_statement] = ACTIONS(9664), + [aux_sym_on_goto_statement_token1] = ACTIONS(9662), + [aux_sym_on_goto_statement_token2] = ACTIONS(9662), + [aux_sym_on_error_statement_token2] = ACTIONS(9662), + [sym__ambiguous_redim_statement] = ACTIONS(9664), + [aux_sym_erase_statement_token1] = ACTIONS(9662), + [aux_sym_open_statement_token1] = ACTIONS(9662), + [aux_sym_file_mode_token2] = ACTIONS(9662), + [aux_sym_file_access_token2] = ACTIONS(9662), + [aux_sym_file_lock_token2] = ACTIONS(9662), + [aux_sym_print_statement_token1] = ACTIONS(9662), + [anon_sym_PLUS] = ACTIONS(9664), + [anon_sym_DASH] = ACTIONS(9662), + [anon_sym_QMARK] = ACTIONS(9664), + [aux_sym_close_statement_token1] = ACTIONS(9662), + [aux_sym_put_statement_token1] = ACTIONS(9662), + [aux_sym_unlock_statement_token1] = ACTIONS(9662), + [aux_sym_seek_statement_token1] = ACTIONS(9662), + [sym_reset_statement] = ACTIONS(9662), + [aux_sym_raise_event_statement_token1] = ACTIONS(9662), + [sym_stop_statement] = ACTIONS(9662), + [sym_beep_statement] = ACTIONS(9662), + [aux_sym_unload_statement_token1] = ACTIONS(9662), + [aux_sym_def_type_statement_token1] = ACTIONS(9662), + [aux_sym_def_type_statement_token2] = ACTIONS(9662), + [aux_sym_def_type_statement_token3] = ACTIONS(9662), + [aux_sym_def_type_statement_token4] = ACTIONS(9662), + [aux_sym_def_type_statement_token5] = ACTIONS(9662), + [aux_sym_def_type_statement_token6] = ACTIONS(9662), + [aux_sym_def_type_statement_token7] = ACTIONS(9662), + [aux_sym_def_type_statement_token8] = ACTIONS(9662), + [aux_sym_def_type_statement_token9] = ACTIONS(9662), + [aux_sym_def_type_statement_token10] = ACTIONS(9662), + [aux_sym_def_type_statement_token11] = ACTIONS(9662), + [aux_sym_def_type_statement_token12] = ACTIONS(9662), + [aux_sym_def_type_statement_token13] = ACTIONS(9662), + [aux_sym_def_type_statement_token14] = ACTIONS(9662), + [aux_sym_call_statement_token1] = ACTIONS(9662), + [sym__ambiguous_call_statement] = ACTIONS(9662), + [aux_sym_addressof_expression_token1] = ACTIONS(9662), + [aux_sym_type_of_expression_token1] = ACTIONS(9662), + [aux_sym_unary_expression_token1] = ACTIONS(9662), + [sym_string_literal] = ACTIONS(9664), + [sym_number_literal] = ACTIONS(9664), + [aux_sym_boolean_literal_token1] = ACTIONS(9662), + [aux_sym_boolean_literal_token2] = ACTIONS(9662), + [sym_nothing_literal] = ACTIONS(9662), + [sym_null_literal] = ACTIONS(9662), + [sym_empty_literal] = ACTIONS(9662), + [sym_date_literal] = ACTIONS(9664), + [anon_sym_POUND] = ACTIONS(9662), + }, + [STATE(5727)] = { + [sym_identifier] = ACTIONS(9666), + [sym_newline] = ACTIONS(9668), + [anon_sym_COLON] = ACTIONS(9668), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9666), + [aux_sym_frm_property_statement_token1] = ACTIONS(9666), + [anon_sym_DOT] = ACTIONS(9666), + [anon_sym_BANG] = ACTIONS(9668), + [aux_sym__attribute_identifier_token1] = ACTIONS(9666), + [aux_sym_option_statement_token3] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9666), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9666), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9666), + [aux_sym_preprocessor_const_token1] = ACTIONS(9666), + [sym_static_modifier] = ACTIONS(9666), + [sym__dim_keyword] = ACTIONS(9666), + [sym__redim_keyword] = ACTIONS(9666), + [aux_sym_get_accessor_token1] = ACTIONS(9666), + [aux_sym_set_accessor_token1] = ACTIONS(9666), + [aux_sym_const_declaration_token1] = ACTIONS(9666), + [anon_sym_LPAREN] = ACTIONS(9668), + [aux_sym_as_type_clause_token2] = ACTIONS(9666), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9666), + [aux_sym_visibility_token1] = ACTIONS(9666), + [aux_sym_visibility_token2] = ACTIONS(9666), + [aux_sym_elseif_fragment_token1] = ACTIONS(9666), + [aux_sym_else_fragment_token1] = ACTIONS(9666), + [aux_sym_select_statement_token1] = ACTIONS(9666), + [aux_sym__for_header_token1] = ACTIONS(9666), + [aux_sym_do_statement_token1] = ACTIONS(9666), + [aux_sym_do_condition_token1] = ACTIONS(9666), + [aux_sym_with_statement_token1] = ACTIONS(9666), + [aux_sym_exit_statement_token1] = ACTIONS(9666), + [sym_end_statement] = ACTIONS(9668), + [aux_sym_on_goto_statement_token1] = ACTIONS(9666), + [aux_sym_on_goto_statement_token2] = ACTIONS(9666), + [aux_sym_on_error_statement_token2] = ACTIONS(9666), + [sym__ambiguous_redim_statement] = ACTIONS(9668), + [aux_sym_erase_statement_token1] = ACTIONS(9666), + [aux_sym_open_statement_token1] = ACTIONS(9666), + [aux_sym_file_mode_token2] = ACTIONS(9666), + [aux_sym_file_access_token2] = ACTIONS(9666), + [aux_sym_file_lock_token2] = ACTIONS(9666), + [aux_sym_print_statement_token1] = ACTIONS(9666), + [anon_sym_PLUS] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(9666), + [anon_sym_QMARK] = ACTIONS(9668), + [aux_sym_close_statement_token1] = ACTIONS(9666), + [aux_sym_put_statement_token1] = ACTIONS(9666), + [aux_sym_unlock_statement_token1] = ACTIONS(9666), + [aux_sym_seek_statement_token1] = ACTIONS(9666), + [sym_reset_statement] = ACTIONS(9666), + [aux_sym_raise_event_statement_token1] = ACTIONS(9666), + [sym_stop_statement] = ACTIONS(9666), + [sym_beep_statement] = ACTIONS(9666), + [aux_sym_unload_statement_token1] = ACTIONS(9666), + [aux_sym_def_type_statement_token1] = ACTIONS(9666), + [aux_sym_def_type_statement_token2] = ACTIONS(9666), + [aux_sym_def_type_statement_token3] = ACTIONS(9666), + [aux_sym_def_type_statement_token4] = ACTIONS(9666), + [aux_sym_def_type_statement_token5] = ACTIONS(9666), + [aux_sym_def_type_statement_token6] = ACTIONS(9666), + [aux_sym_def_type_statement_token7] = ACTIONS(9666), + [aux_sym_def_type_statement_token8] = ACTIONS(9666), + [aux_sym_def_type_statement_token9] = ACTIONS(9666), + [aux_sym_def_type_statement_token10] = ACTIONS(9666), + [aux_sym_def_type_statement_token11] = ACTIONS(9666), + [aux_sym_def_type_statement_token12] = ACTIONS(9666), + [aux_sym_def_type_statement_token13] = ACTIONS(9666), + [aux_sym_def_type_statement_token14] = ACTIONS(9666), + [aux_sym_call_statement_token1] = ACTIONS(9666), + [sym__ambiguous_call_statement] = ACTIONS(9666), + [aux_sym_addressof_expression_token1] = ACTIONS(9666), + [aux_sym_type_of_expression_token1] = ACTIONS(9666), + [aux_sym_unary_expression_token1] = ACTIONS(9666), + [sym_string_literal] = ACTIONS(9668), + [sym_number_literal] = ACTIONS(9668), + [aux_sym_boolean_literal_token1] = ACTIONS(9666), + [aux_sym_boolean_literal_token2] = ACTIONS(9666), + [sym_nothing_literal] = ACTIONS(9666), + [sym_null_literal] = ACTIONS(9666), + [sym_empty_literal] = ACTIONS(9666), + [sym_date_literal] = ACTIONS(9668), + [anon_sym_POUND] = ACTIONS(9666), + }, + [STATE(5728)] = { + [sym_identifier] = ACTIONS(9670), + [sym_newline] = ACTIONS(9672), + [anon_sym_COLON] = ACTIONS(9672), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9670), + [aux_sym_frm_property_statement_token1] = ACTIONS(9670), + [anon_sym_DOT] = ACTIONS(9670), + [anon_sym_BANG] = ACTIONS(9672), + [aux_sym__attribute_identifier_token1] = ACTIONS(9670), + [aux_sym_option_statement_token3] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9670), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9670), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9670), + [aux_sym_preprocessor_const_token1] = ACTIONS(9670), + [sym_static_modifier] = ACTIONS(9670), + [sym__dim_keyword] = ACTIONS(9670), + [sym__redim_keyword] = ACTIONS(9670), + [aux_sym_get_accessor_token1] = ACTIONS(9670), + [aux_sym_set_accessor_token1] = ACTIONS(9670), + [aux_sym_const_declaration_token1] = ACTIONS(9670), + [anon_sym_LPAREN] = ACTIONS(9672), + [aux_sym_as_type_clause_token2] = ACTIONS(9670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9670), + [aux_sym_visibility_token1] = ACTIONS(9670), + [aux_sym_visibility_token2] = ACTIONS(9670), + [aux_sym_elseif_fragment_token1] = ACTIONS(9670), + [aux_sym_else_fragment_token1] = ACTIONS(9670), + [aux_sym_select_statement_token1] = ACTIONS(9670), + [aux_sym__for_header_token1] = ACTIONS(9670), + [aux_sym_do_statement_token1] = ACTIONS(9670), + [aux_sym_do_condition_token1] = ACTIONS(9670), + [aux_sym_with_statement_token1] = ACTIONS(9670), + [aux_sym_exit_statement_token1] = ACTIONS(9670), + [sym_end_statement] = ACTIONS(9672), + [aux_sym_on_goto_statement_token1] = ACTIONS(9670), + [aux_sym_on_goto_statement_token2] = ACTIONS(9670), + [aux_sym_on_error_statement_token2] = ACTIONS(9670), + [sym__ambiguous_redim_statement] = ACTIONS(9672), + [aux_sym_erase_statement_token1] = ACTIONS(9670), + [aux_sym_open_statement_token1] = ACTIONS(9670), + [aux_sym_file_mode_token2] = ACTIONS(9670), + [aux_sym_file_access_token2] = ACTIONS(9670), + [aux_sym_file_lock_token2] = ACTIONS(9670), + [aux_sym_print_statement_token1] = ACTIONS(9670), + [anon_sym_PLUS] = ACTIONS(9672), + [anon_sym_DASH] = ACTIONS(9670), + [anon_sym_QMARK] = ACTIONS(9672), + [aux_sym_close_statement_token1] = ACTIONS(9670), + [aux_sym_put_statement_token1] = ACTIONS(9670), + [aux_sym_unlock_statement_token1] = ACTIONS(9670), + [aux_sym_seek_statement_token1] = ACTIONS(9670), + [sym_reset_statement] = ACTIONS(9670), + [aux_sym_raise_event_statement_token1] = ACTIONS(9670), + [sym_stop_statement] = ACTIONS(9670), + [sym_beep_statement] = ACTIONS(9670), + [aux_sym_unload_statement_token1] = ACTIONS(9670), + [aux_sym_def_type_statement_token1] = ACTIONS(9670), + [aux_sym_def_type_statement_token2] = ACTIONS(9670), + [aux_sym_def_type_statement_token3] = ACTIONS(9670), + [aux_sym_def_type_statement_token4] = ACTIONS(9670), + [aux_sym_def_type_statement_token5] = ACTIONS(9670), + [aux_sym_def_type_statement_token6] = ACTIONS(9670), + [aux_sym_def_type_statement_token7] = ACTIONS(9670), + [aux_sym_def_type_statement_token8] = ACTIONS(9670), + [aux_sym_def_type_statement_token9] = ACTIONS(9670), + [aux_sym_def_type_statement_token10] = ACTIONS(9670), + [aux_sym_def_type_statement_token11] = ACTIONS(9670), + [aux_sym_def_type_statement_token12] = ACTIONS(9670), + [aux_sym_def_type_statement_token13] = ACTIONS(9670), + [aux_sym_def_type_statement_token14] = ACTIONS(9670), + [aux_sym_call_statement_token1] = ACTIONS(9670), + [sym__ambiguous_call_statement] = ACTIONS(9670), + [aux_sym_addressof_expression_token1] = ACTIONS(9670), + [aux_sym_type_of_expression_token1] = ACTIONS(9670), + [aux_sym_unary_expression_token1] = ACTIONS(9670), + [sym_string_literal] = ACTIONS(9672), + [sym_number_literal] = ACTIONS(9672), + [aux_sym_boolean_literal_token1] = ACTIONS(9670), + [aux_sym_boolean_literal_token2] = ACTIONS(9670), + [sym_nothing_literal] = ACTIONS(9670), + [sym_null_literal] = ACTIONS(9670), + [sym_empty_literal] = ACTIONS(9670), + [sym_date_literal] = ACTIONS(9672), + [anon_sym_POUND] = ACTIONS(9670), + }, + [STATE(5729)] = { + [sym_identifier] = ACTIONS(9677), + [sym_newline] = ACTIONS(9679), + [anon_sym_COLON] = ACTIONS(9679), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9677), + [aux_sym_frm_property_statement_token1] = ACTIONS(9677), + [anon_sym_DOT] = ACTIONS(9677), + [anon_sym_BANG] = ACTIONS(9679), + [aux_sym__attribute_identifier_token1] = ACTIONS(9677), + [aux_sym_option_statement_token3] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9677), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9677), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9677), + [aux_sym_preprocessor_const_token1] = ACTIONS(9677), + [sym_static_modifier] = ACTIONS(9677), + [sym__dim_keyword] = ACTIONS(9677), + [sym__redim_keyword] = ACTIONS(9677), + [aux_sym_get_accessor_token1] = ACTIONS(9677), + [aux_sym_set_accessor_token1] = ACTIONS(9677), + [aux_sym_const_declaration_token1] = ACTIONS(9677), + [anon_sym_LPAREN] = ACTIONS(9679), + [aux_sym_as_type_clause_token2] = ACTIONS(9677), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9677), + [aux_sym_visibility_token1] = ACTIONS(9677), + [aux_sym_visibility_token2] = ACTIONS(9677), + [aux_sym_elseif_fragment_token1] = ACTIONS(9677), + [aux_sym_else_fragment_token1] = ACTIONS(9677), + [aux_sym_select_statement_token1] = ACTIONS(9677), + [aux_sym__for_header_token1] = ACTIONS(9677), + [aux_sym_do_statement_token1] = ACTIONS(9677), + [aux_sym_do_condition_token1] = ACTIONS(9677), + [aux_sym_with_statement_token1] = ACTIONS(9677), + [aux_sym_exit_statement_token1] = ACTIONS(9677), + [sym_end_statement] = ACTIONS(9679), + [aux_sym_on_goto_statement_token1] = ACTIONS(9677), + [aux_sym_on_goto_statement_token2] = ACTIONS(9677), + [aux_sym_on_error_statement_token2] = ACTIONS(9677), + [sym__ambiguous_redim_statement] = ACTIONS(9679), + [aux_sym_erase_statement_token1] = ACTIONS(9677), + [aux_sym_open_statement_token1] = ACTIONS(9677), + [aux_sym_file_mode_token2] = ACTIONS(9677), + [aux_sym_file_access_token2] = ACTIONS(9677), + [aux_sym_file_lock_token2] = ACTIONS(9677), + [aux_sym_print_statement_token1] = ACTIONS(9677), + [anon_sym_PLUS] = ACTIONS(9679), + [anon_sym_DASH] = ACTIONS(9677), + [anon_sym_QMARK] = ACTIONS(9679), + [aux_sym_close_statement_token1] = ACTIONS(9677), + [aux_sym_put_statement_token1] = ACTIONS(9677), + [aux_sym_unlock_statement_token1] = ACTIONS(9677), + [aux_sym_seek_statement_token1] = ACTIONS(9677), + [sym_reset_statement] = ACTIONS(9677), + [aux_sym_raise_event_statement_token1] = ACTIONS(9677), + [sym_stop_statement] = ACTIONS(9677), + [sym_beep_statement] = ACTIONS(9677), + [aux_sym_unload_statement_token1] = ACTIONS(9677), + [aux_sym_def_type_statement_token1] = ACTIONS(9677), + [aux_sym_def_type_statement_token2] = ACTIONS(9677), + [aux_sym_def_type_statement_token3] = ACTIONS(9677), + [aux_sym_def_type_statement_token4] = ACTIONS(9677), + [aux_sym_def_type_statement_token5] = ACTIONS(9677), + [aux_sym_def_type_statement_token6] = ACTIONS(9677), + [aux_sym_def_type_statement_token7] = ACTIONS(9677), + [aux_sym_def_type_statement_token8] = ACTIONS(9677), + [aux_sym_def_type_statement_token9] = ACTIONS(9677), + [aux_sym_def_type_statement_token10] = ACTIONS(9677), + [aux_sym_def_type_statement_token11] = ACTIONS(9677), + [aux_sym_def_type_statement_token12] = ACTIONS(9677), + [aux_sym_def_type_statement_token13] = ACTIONS(9677), + [aux_sym_def_type_statement_token14] = ACTIONS(9677), + [aux_sym_call_statement_token1] = ACTIONS(9677), + [sym__ambiguous_call_statement] = ACTIONS(9677), + [aux_sym_addressof_expression_token1] = ACTIONS(9677), + [aux_sym_type_of_expression_token1] = ACTIONS(9677), + [aux_sym_unary_expression_token1] = ACTIONS(9677), + [sym_string_literal] = ACTIONS(9679), + [sym_number_literal] = ACTIONS(9679), + [aux_sym_boolean_literal_token1] = ACTIONS(9677), + [aux_sym_boolean_literal_token2] = ACTIONS(9677), + [sym_nothing_literal] = ACTIONS(9677), + [sym_null_literal] = ACTIONS(9677), + [sym_empty_literal] = ACTIONS(9677), + [sym_date_literal] = ACTIONS(9679), + [anon_sym_POUND] = ACTIONS(9677), + }, + [STATE(5730)] = { + [sym_identifier] = ACTIONS(9684), + [sym_newline] = ACTIONS(9686), + [anon_sym_COLON] = ACTIONS(9686), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9684), + [aux_sym_frm_property_statement_token1] = ACTIONS(9684), + [anon_sym_DOT] = ACTIONS(9684), + [anon_sym_BANG] = ACTIONS(9686), + [aux_sym__attribute_identifier_token1] = ACTIONS(9684), + [aux_sym_option_statement_token3] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9684), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9684), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9684), + [aux_sym_preprocessor_const_token1] = ACTIONS(9684), + [sym_static_modifier] = ACTIONS(9684), + [sym__dim_keyword] = ACTIONS(9684), + [sym__redim_keyword] = ACTIONS(9684), + [aux_sym_get_accessor_token1] = ACTIONS(9684), + [aux_sym_set_accessor_token1] = ACTIONS(9684), + [aux_sym_const_declaration_token1] = ACTIONS(9684), + [anon_sym_LPAREN] = ACTIONS(9686), + [aux_sym_as_type_clause_token2] = ACTIONS(9684), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9684), + [aux_sym_visibility_token1] = ACTIONS(9684), + [aux_sym_visibility_token2] = ACTIONS(9684), + [aux_sym_elseif_fragment_token1] = ACTIONS(9684), + [aux_sym_else_fragment_token1] = ACTIONS(9684), + [aux_sym_select_statement_token1] = ACTIONS(9684), + [aux_sym__for_header_token1] = ACTIONS(9684), + [aux_sym_do_statement_token1] = ACTIONS(9684), + [aux_sym_do_condition_token1] = ACTIONS(9684), + [aux_sym_with_statement_token1] = ACTIONS(9684), + [aux_sym_exit_statement_token1] = ACTIONS(9684), + [sym_end_statement] = ACTIONS(9686), + [aux_sym_on_goto_statement_token1] = ACTIONS(9684), + [aux_sym_on_goto_statement_token2] = ACTIONS(9684), + [aux_sym_on_error_statement_token2] = ACTIONS(9684), + [sym__ambiguous_redim_statement] = ACTIONS(9686), + [aux_sym_erase_statement_token1] = ACTIONS(9684), + [aux_sym_open_statement_token1] = ACTIONS(9684), + [aux_sym_file_mode_token2] = ACTIONS(9684), + [aux_sym_file_access_token2] = ACTIONS(9684), + [aux_sym_file_lock_token2] = ACTIONS(9684), + [aux_sym_print_statement_token1] = ACTIONS(9684), + [anon_sym_PLUS] = ACTIONS(9686), + [anon_sym_DASH] = ACTIONS(9684), + [anon_sym_QMARK] = ACTIONS(9686), + [aux_sym_close_statement_token1] = ACTIONS(9684), + [aux_sym_put_statement_token1] = ACTIONS(9684), + [aux_sym_unlock_statement_token1] = ACTIONS(9684), + [aux_sym_seek_statement_token1] = ACTIONS(9684), + [sym_reset_statement] = ACTIONS(9684), + [aux_sym_raise_event_statement_token1] = ACTIONS(9684), + [sym_stop_statement] = ACTIONS(9684), + [sym_beep_statement] = ACTIONS(9684), + [aux_sym_unload_statement_token1] = ACTIONS(9684), + [aux_sym_def_type_statement_token1] = ACTIONS(9684), + [aux_sym_def_type_statement_token2] = ACTIONS(9684), + [aux_sym_def_type_statement_token3] = ACTIONS(9684), + [aux_sym_def_type_statement_token4] = ACTIONS(9684), + [aux_sym_def_type_statement_token5] = ACTIONS(9684), + [aux_sym_def_type_statement_token6] = ACTIONS(9684), + [aux_sym_def_type_statement_token7] = ACTIONS(9684), + [aux_sym_def_type_statement_token8] = ACTIONS(9684), + [aux_sym_def_type_statement_token9] = ACTIONS(9684), + [aux_sym_def_type_statement_token10] = ACTIONS(9684), + [aux_sym_def_type_statement_token11] = ACTIONS(9684), + [aux_sym_def_type_statement_token12] = ACTIONS(9684), + [aux_sym_def_type_statement_token13] = ACTIONS(9684), + [aux_sym_def_type_statement_token14] = ACTIONS(9684), + [aux_sym_call_statement_token1] = ACTIONS(9684), + [sym__ambiguous_call_statement] = ACTIONS(9684), + [aux_sym_addressof_expression_token1] = ACTIONS(9684), + [aux_sym_type_of_expression_token1] = ACTIONS(9684), + [aux_sym_unary_expression_token1] = ACTIONS(9684), + [sym_string_literal] = ACTIONS(9686), + [sym_number_literal] = ACTIONS(9686), + [aux_sym_boolean_literal_token1] = ACTIONS(9684), + [aux_sym_boolean_literal_token2] = ACTIONS(9684), + [sym_nothing_literal] = ACTIONS(9684), + [sym_null_literal] = ACTIONS(9684), + [sym_empty_literal] = ACTIONS(9684), + [sym_date_literal] = ACTIONS(9686), + [anon_sym_POUND] = ACTIONS(9684), + }, + [STATE(5731)] = { + [sym_identifier] = ACTIONS(9688), + [sym_newline] = ACTIONS(9690), + [anon_sym_COLON] = ACTIONS(9690), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9688), + [aux_sym_frm_property_statement_token1] = ACTIONS(9688), + [anon_sym_DOT] = ACTIONS(9688), + [anon_sym_BANG] = ACTIONS(9690), + [aux_sym__attribute_identifier_token1] = ACTIONS(9688), + [aux_sym_option_statement_token3] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9688), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9688), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9688), + [aux_sym_preprocessor_const_token1] = ACTIONS(9688), + [sym_static_modifier] = ACTIONS(9688), + [sym__dim_keyword] = ACTIONS(9688), + [sym__redim_keyword] = ACTIONS(9688), + [aux_sym_get_accessor_token1] = ACTIONS(9688), + [aux_sym_set_accessor_token1] = ACTIONS(9688), + [aux_sym_const_declaration_token1] = ACTIONS(9688), + [anon_sym_LPAREN] = ACTIONS(9690), + [aux_sym_as_type_clause_token2] = ACTIONS(9688), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9688), + [aux_sym_visibility_token1] = ACTIONS(9688), + [aux_sym_visibility_token2] = ACTIONS(9688), + [aux_sym_elseif_fragment_token1] = ACTIONS(9688), + [aux_sym_else_fragment_token1] = ACTIONS(9688), + [aux_sym_select_statement_token1] = ACTIONS(9688), + [aux_sym__for_header_token1] = ACTIONS(9688), + [aux_sym_do_statement_token1] = ACTIONS(9688), + [aux_sym_do_condition_token1] = ACTIONS(9688), + [aux_sym_with_statement_token1] = ACTIONS(9688), + [aux_sym_exit_statement_token1] = ACTIONS(9688), + [sym_end_statement] = ACTIONS(9690), + [aux_sym_on_goto_statement_token1] = ACTIONS(9688), + [aux_sym_on_goto_statement_token2] = ACTIONS(9688), + [aux_sym_on_error_statement_token2] = ACTIONS(9688), + [sym__ambiguous_redim_statement] = ACTIONS(9690), + [aux_sym_erase_statement_token1] = ACTIONS(9688), + [aux_sym_open_statement_token1] = ACTIONS(9688), + [aux_sym_file_mode_token2] = ACTIONS(9688), + [aux_sym_file_access_token2] = ACTIONS(9688), + [aux_sym_file_lock_token2] = ACTIONS(9688), + [aux_sym_print_statement_token1] = ACTIONS(9688), + [anon_sym_PLUS] = ACTIONS(9690), + [anon_sym_DASH] = ACTIONS(9688), + [anon_sym_QMARK] = ACTIONS(9690), + [aux_sym_close_statement_token1] = ACTIONS(9688), + [aux_sym_put_statement_token1] = ACTIONS(9688), + [aux_sym_unlock_statement_token1] = ACTIONS(9688), + [aux_sym_seek_statement_token1] = ACTIONS(9688), + [sym_reset_statement] = ACTIONS(9688), + [aux_sym_raise_event_statement_token1] = ACTIONS(9688), + [sym_stop_statement] = ACTIONS(9688), + [sym_beep_statement] = ACTIONS(9688), + [aux_sym_unload_statement_token1] = ACTIONS(9688), + [aux_sym_def_type_statement_token1] = ACTIONS(9688), + [aux_sym_def_type_statement_token2] = ACTIONS(9688), + [aux_sym_def_type_statement_token3] = ACTIONS(9688), + [aux_sym_def_type_statement_token4] = ACTIONS(9688), + [aux_sym_def_type_statement_token5] = ACTIONS(9688), + [aux_sym_def_type_statement_token6] = ACTIONS(9688), + [aux_sym_def_type_statement_token7] = ACTIONS(9688), + [aux_sym_def_type_statement_token8] = ACTIONS(9688), + [aux_sym_def_type_statement_token9] = ACTIONS(9688), + [aux_sym_def_type_statement_token10] = ACTIONS(9688), + [aux_sym_def_type_statement_token11] = ACTIONS(9688), + [aux_sym_def_type_statement_token12] = ACTIONS(9688), + [aux_sym_def_type_statement_token13] = ACTIONS(9688), + [aux_sym_def_type_statement_token14] = ACTIONS(9688), + [aux_sym_call_statement_token1] = ACTIONS(9688), + [sym__ambiguous_call_statement] = ACTIONS(9688), + [aux_sym_addressof_expression_token1] = ACTIONS(9688), + [aux_sym_type_of_expression_token1] = ACTIONS(9688), + [aux_sym_unary_expression_token1] = ACTIONS(9688), + [sym_string_literal] = ACTIONS(9690), + [sym_number_literal] = ACTIONS(9690), + [aux_sym_boolean_literal_token1] = ACTIONS(9688), + [aux_sym_boolean_literal_token2] = ACTIONS(9688), + [sym_nothing_literal] = ACTIONS(9688), + [sym_null_literal] = ACTIONS(9688), + [sym_empty_literal] = ACTIONS(9688), + [sym_date_literal] = ACTIONS(9690), + [anon_sym_POUND] = ACTIONS(9688), + }, + [STATE(5732)] = { + [sym_identifier] = ACTIONS(9692), + [sym_newline] = ACTIONS(9694), + [anon_sym_COLON] = ACTIONS(9694), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9692), + [aux_sym_frm_property_statement_token1] = ACTIONS(9692), + [anon_sym_DOT] = ACTIONS(9692), + [anon_sym_BANG] = ACTIONS(9694), + [aux_sym__attribute_identifier_token1] = ACTIONS(9692), + [aux_sym_option_statement_token3] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9692), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9692), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9692), + [aux_sym_preprocessor_const_token1] = ACTIONS(9692), + [sym_static_modifier] = ACTIONS(9692), + [sym__dim_keyword] = ACTIONS(9692), + [sym__redim_keyword] = ACTIONS(9692), + [aux_sym_get_accessor_token1] = ACTIONS(9692), + [aux_sym_set_accessor_token1] = ACTIONS(9692), + [aux_sym_const_declaration_token1] = ACTIONS(9692), + [anon_sym_LPAREN] = ACTIONS(9694), + [aux_sym_as_type_clause_token2] = ACTIONS(9692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9692), + [aux_sym_visibility_token1] = ACTIONS(9692), + [aux_sym_visibility_token2] = ACTIONS(9692), + [aux_sym_elseif_fragment_token1] = ACTIONS(9692), + [aux_sym_else_fragment_token1] = ACTIONS(9692), + [aux_sym_select_statement_token1] = ACTIONS(9692), + [aux_sym__for_header_token1] = ACTIONS(9692), + [aux_sym_do_statement_token1] = ACTIONS(9692), + [aux_sym_do_condition_token1] = ACTIONS(9692), + [aux_sym_with_statement_token1] = ACTIONS(9692), + [aux_sym_exit_statement_token1] = ACTIONS(9692), + [sym_end_statement] = ACTIONS(9694), + [aux_sym_on_goto_statement_token1] = ACTIONS(9692), + [aux_sym_on_goto_statement_token2] = ACTIONS(9692), + [aux_sym_on_error_statement_token2] = ACTIONS(9692), + [sym__ambiguous_redim_statement] = ACTIONS(9694), + [aux_sym_erase_statement_token1] = ACTIONS(9692), + [aux_sym_open_statement_token1] = ACTIONS(9692), + [aux_sym_file_mode_token2] = ACTIONS(9692), + [aux_sym_file_access_token2] = ACTIONS(9692), + [aux_sym_file_lock_token2] = ACTIONS(9692), + [aux_sym_print_statement_token1] = ACTIONS(9692), + [anon_sym_PLUS] = ACTIONS(9694), + [anon_sym_DASH] = ACTIONS(9692), + [anon_sym_QMARK] = ACTIONS(9694), + [aux_sym_close_statement_token1] = ACTIONS(9692), + [aux_sym_put_statement_token1] = ACTIONS(9692), + [aux_sym_unlock_statement_token1] = ACTIONS(9692), + [aux_sym_seek_statement_token1] = ACTIONS(9692), + [sym_reset_statement] = ACTIONS(9692), + [aux_sym_raise_event_statement_token1] = ACTIONS(9692), + [sym_stop_statement] = ACTIONS(9692), + [sym_beep_statement] = ACTIONS(9692), + [aux_sym_unload_statement_token1] = ACTIONS(9692), + [aux_sym_def_type_statement_token1] = ACTIONS(9692), + [aux_sym_def_type_statement_token2] = ACTIONS(9692), + [aux_sym_def_type_statement_token3] = ACTIONS(9692), + [aux_sym_def_type_statement_token4] = ACTIONS(9692), + [aux_sym_def_type_statement_token5] = ACTIONS(9692), + [aux_sym_def_type_statement_token6] = ACTIONS(9692), + [aux_sym_def_type_statement_token7] = ACTIONS(9692), + [aux_sym_def_type_statement_token8] = ACTIONS(9692), + [aux_sym_def_type_statement_token9] = ACTIONS(9692), + [aux_sym_def_type_statement_token10] = ACTIONS(9692), + [aux_sym_def_type_statement_token11] = ACTIONS(9692), + [aux_sym_def_type_statement_token12] = ACTIONS(9692), + [aux_sym_def_type_statement_token13] = ACTIONS(9692), + [aux_sym_def_type_statement_token14] = ACTIONS(9692), + [aux_sym_call_statement_token1] = ACTIONS(9692), + [sym__ambiguous_call_statement] = ACTIONS(9692), + [aux_sym_addressof_expression_token1] = ACTIONS(9692), + [aux_sym_type_of_expression_token1] = ACTIONS(9692), + [aux_sym_unary_expression_token1] = ACTIONS(9692), + [sym_string_literal] = ACTIONS(9694), + [sym_number_literal] = ACTIONS(9694), + [aux_sym_boolean_literal_token1] = ACTIONS(9692), + [aux_sym_boolean_literal_token2] = ACTIONS(9692), + [sym_nothing_literal] = ACTIONS(9692), + [sym_null_literal] = ACTIONS(9692), + [sym_empty_literal] = ACTIONS(9692), + [sym_date_literal] = ACTIONS(9694), + [anon_sym_POUND] = ACTIONS(9692), + }, + [STATE(5733)] = { + [sym_identifier] = ACTIONS(9696), + [sym_newline] = ACTIONS(9698), + [anon_sym_COLON] = ACTIONS(9698), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9696), + [aux_sym_frm_property_statement_token1] = ACTIONS(9696), + [anon_sym_DOT] = ACTIONS(9696), + [anon_sym_BANG] = ACTIONS(9698), + [aux_sym__attribute_identifier_token1] = ACTIONS(9696), + [aux_sym_option_statement_token3] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9696), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9696), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9696), + [aux_sym_preprocessor_const_token1] = ACTIONS(9696), + [sym_static_modifier] = ACTIONS(9696), + [sym__dim_keyword] = ACTIONS(9696), + [sym__redim_keyword] = ACTIONS(9696), + [aux_sym_get_accessor_token1] = ACTIONS(9696), + [aux_sym_set_accessor_token1] = ACTIONS(9696), + [aux_sym_const_declaration_token1] = ACTIONS(9696), + [anon_sym_LPAREN] = ACTIONS(9698), + [aux_sym_as_type_clause_token2] = ACTIONS(9696), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9696), + [aux_sym_visibility_token1] = ACTIONS(9696), + [aux_sym_visibility_token2] = ACTIONS(9696), + [aux_sym_elseif_fragment_token1] = ACTIONS(9696), + [aux_sym_else_fragment_token1] = ACTIONS(9696), + [aux_sym_select_statement_token1] = ACTIONS(9696), + [aux_sym__for_header_token1] = ACTIONS(9696), + [aux_sym_do_statement_token1] = ACTIONS(9696), + [aux_sym_do_condition_token1] = ACTIONS(9696), + [aux_sym_with_statement_token1] = ACTIONS(9696), + [aux_sym_exit_statement_token1] = ACTIONS(9696), + [sym_end_statement] = ACTIONS(9698), + [aux_sym_on_goto_statement_token1] = ACTIONS(9696), + [aux_sym_on_goto_statement_token2] = ACTIONS(9696), + [aux_sym_on_error_statement_token2] = ACTIONS(9696), + [sym__ambiguous_redim_statement] = ACTIONS(9698), + [aux_sym_erase_statement_token1] = ACTIONS(9696), + [aux_sym_open_statement_token1] = ACTIONS(9696), + [aux_sym_file_mode_token2] = ACTIONS(9696), + [aux_sym_file_access_token2] = ACTIONS(9696), + [aux_sym_file_lock_token2] = ACTIONS(9696), + [aux_sym_print_statement_token1] = ACTIONS(9696), + [anon_sym_PLUS] = ACTIONS(9698), + [anon_sym_DASH] = ACTIONS(9696), + [anon_sym_QMARK] = ACTIONS(9698), + [aux_sym_close_statement_token1] = ACTIONS(9696), + [aux_sym_put_statement_token1] = ACTIONS(9696), + [aux_sym_unlock_statement_token1] = ACTIONS(9696), + [aux_sym_seek_statement_token1] = ACTIONS(9696), + [sym_reset_statement] = ACTIONS(9696), + [aux_sym_raise_event_statement_token1] = ACTIONS(9696), + [sym_stop_statement] = ACTIONS(9696), + [sym_beep_statement] = ACTIONS(9696), + [aux_sym_unload_statement_token1] = ACTIONS(9696), + [aux_sym_def_type_statement_token1] = ACTIONS(9696), + [aux_sym_def_type_statement_token2] = ACTIONS(9696), + [aux_sym_def_type_statement_token3] = ACTIONS(9696), + [aux_sym_def_type_statement_token4] = ACTIONS(9696), + [aux_sym_def_type_statement_token5] = ACTIONS(9696), + [aux_sym_def_type_statement_token6] = ACTIONS(9696), + [aux_sym_def_type_statement_token7] = ACTIONS(9696), + [aux_sym_def_type_statement_token8] = ACTIONS(9696), + [aux_sym_def_type_statement_token9] = ACTIONS(9696), + [aux_sym_def_type_statement_token10] = ACTIONS(9696), + [aux_sym_def_type_statement_token11] = ACTIONS(9696), + [aux_sym_def_type_statement_token12] = ACTIONS(9696), + [aux_sym_def_type_statement_token13] = ACTIONS(9696), + [aux_sym_def_type_statement_token14] = ACTIONS(9696), + [aux_sym_call_statement_token1] = ACTIONS(9696), + [sym__ambiguous_call_statement] = ACTIONS(9696), + [aux_sym_addressof_expression_token1] = ACTIONS(9696), + [aux_sym_type_of_expression_token1] = ACTIONS(9696), + [aux_sym_unary_expression_token1] = ACTIONS(9696), + [sym_string_literal] = ACTIONS(9698), + [sym_number_literal] = ACTIONS(9698), + [aux_sym_boolean_literal_token1] = ACTIONS(9696), + [aux_sym_boolean_literal_token2] = ACTIONS(9696), + [sym_nothing_literal] = ACTIONS(9696), + [sym_null_literal] = ACTIONS(9696), + [sym_empty_literal] = ACTIONS(9696), + [sym_date_literal] = ACTIONS(9698), + [anon_sym_POUND] = ACTIONS(9696), + }, + [STATE(5734)] = { + [sym_identifier] = ACTIONS(9700), + [sym_newline] = ACTIONS(9702), + [anon_sym_COLON] = ACTIONS(9702), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9700), + [aux_sym_frm_property_statement_token1] = ACTIONS(9700), + [anon_sym_DOT] = ACTIONS(9700), + [anon_sym_BANG] = ACTIONS(9702), + [aux_sym__attribute_identifier_token1] = ACTIONS(9700), + [aux_sym_option_statement_token3] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9700), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9700), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9700), + [aux_sym_preprocessor_const_token1] = ACTIONS(9700), + [sym_static_modifier] = ACTIONS(9700), + [sym__dim_keyword] = ACTIONS(9700), + [sym__redim_keyword] = ACTIONS(9700), + [aux_sym_get_accessor_token1] = ACTIONS(9700), + [aux_sym_set_accessor_token1] = ACTIONS(9700), + [aux_sym_const_declaration_token1] = ACTIONS(9700), + [anon_sym_LPAREN] = ACTIONS(9702), + [aux_sym_as_type_clause_token2] = ACTIONS(9700), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9700), + [aux_sym_visibility_token1] = ACTIONS(9700), + [aux_sym_visibility_token2] = ACTIONS(9700), + [aux_sym_elseif_fragment_token1] = ACTIONS(9700), + [aux_sym_else_fragment_token1] = ACTIONS(9700), + [aux_sym_select_statement_token1] = ACTIONS(9700), + [aux_sym__for_header_token1] = ACTIONS(9700), + [aux_sym_do_statement_token1] = ACTIONS(9700), + [aux_sym_do_condition_token1] = ACTIONS(9700), + [aux_sym_with_statement_token1] = ACTIONS(9700), + [aux_sym_exit_statement_token1] = ACTIONS(9700), + [sym_end_statement] = ACTIONS(9702), + [aux_sym_on_goto_statement_token1] = ACTIONS(9700), + [aux_sym_on_goto_statement_token2] = ACTIONS(9700), + [aux_sym_on_error_statement_token2] = ACTIONS(9700), + [sym__ambiguous_redim_statement] = ACTIONS(9702), + [aux_sym_erase_statement_token1] = ACTIONS(9700), + [aux_sym_open_statement_token1] = ACTIONS(9700), + [aux_sym_file_mode_token2] = ACTIONS(9700), + [aux_sym_file_access_token2] = ACTIONS(9700), + [aux_sym_file_lock_token2] = ACTIONS(9700), + [aux_sym_print_statement_token1] = ACTIONS(9700), + [anon_sym_PLUS] = ACTIONS(9702), + [anon_sym_DASH] = ACTIONS(9700), + [anon_sym_QMARK] = ACTIONS(9702), + [aux_sym_close_statement_token1] = ACTIONS(9700), + [aux_sym_put_statement_token1] = ACTIONS(9700), + [aux_sym_unlock_statement_token1] = ACTIONS(9700), + [aux_sym_seek_statement_token1] = ACTIONS(9700), + [sym_reset_statement] = ACTIONS(9700), + [aux_sym_raise_event_statement_token1] = ACTIONS(9700), + [sym_stop_statement] = ACTIONS(9700), + [sym_beep_statement] = ACTIONS(9700), + [aux_sym_unload_statement_token1] = ACTIONS(9700), + [aux_sym_def_type_statement_token1] = ACTIONS(9700), + [aux_sym_def_type_statement_token2] = ACTIONS(9700), + [aux_sym_def_type_statement_token3] = ACTIONS(9700), + [aux_sym_def_type_statement_token4] = ACTIONS(9700), + [aux_sym_def_type_statement_token5] = ACTIONS(9700), + [aux_sym_def_type_statement_token6] = ACTIONS(9700), + [aux_sym_def_type_statement_token7] = ACTIONS(9700), + [aux_sym_def_type_statement_token8] = ACTIONS(9700), + [aux_sym_def_type_statement_token9] = ACTIONS(9700), + [aux_sym_def_type_statement_token10] = ACTIONS(9700), + [aux_sym_def_type_statement_token11] = ACTIONS(9700), + [aux_sym_def_type_statement_token12] = ACTIONS(9700), + [aux_sym_def_type_statement_token13] = ACTIONS(9700), + [aux_sym_def_type_statement_token14] = ACTIONS(9700), + [aux_sym_call_statement_token1] = ACTIONS(9700), + [sym__ambiguous_call_statement] = ACTIONS(9700), + [aux_sym_addressof_expression_token1] = ACTIONS(9700), + [aux_sym_type_of_expression_token1] = ACTIONS(9700), + [aux_sym_unary_expression_token1] = ACTIONS(9700), + [sym_string_literal] = ACTIONS(9702), + [sym_number_literal] = ACTIONS(9702), + [aux_sym_boolean_literal_token1] = ACTIONS(9700), + [aux_sym_boolean_literal_token2] = ACTIONS(9700), + [sym_nothing_literal] = ACTIONS(9700), + [sym_null_literal] = ACTIONS(9700), + [sym_empty_literal] = ACTIONS(9700), + [sym_date_literal] = ACTIONS(9702), + [anon_sym_POUND] = ACTIONS(9700), + }, + [STATE(5735)] = { + [sym_identifier] = ACTIONS(9704), + [sym_newline] = ACTIONS(9706), + [anon_sym_COLON] = ACTIONS(9706), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9704), + [aux_sym_frm_property_statement_token1] = ACTIONS(9704), + [anon_sym_DOT] = ACTIONS(9704), + [anon_sym_BANG] = ACTIONS(9706), + [aux_sym__attribute_identifier_token1] = ACTIONS(9704), + [aux_sym_option_statement_token3] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9704), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9704), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9704), + [aux_sym_preprocessor_const_token1] = ACTIONS(9704), + [sym_static_modifier] = ACTIONS(9704), + [sym__dim_keyword] = ACTIONS(9704), + [sym__redim_keyword] = ACTIONS(9704), + [aux_sym_get_accessor_token1] = ACTIONS(9704), + [aux_sym_set_accessor_token1] = ACTIONS(9704), + [aux_sym_const_declaration_token1] = ACTIONS(9704), + [anon_sym_LPAREN] = ACTIONS(9706), + [aux_sym_as_type_clause_token2] = ACTIONS(9704), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9704), + [aux_sym_visibility_token1] = ACTIONS(9704), + [aux_sym_visibility_token2] = ACTIONS(9704), + [aux_sym_elseif_fragment_token1] = ACTIONS(9704), + [aux_sym_else_fragment_token1] = ACTIONS(9704), + [aux_sym_select_statement_token1] = ACTIONS(9704), + [aux_sym__for_header_token1] = ACTIONS(9704), + [aux_sym_do_statement_token1] = ACTIONS(9704), + [aux_sym_do_condition_token1] = ACTIONS(9704), + [aux_sym_with_statement_token1] = ACTIONS(9704), + [aux_sym_exit_statement_token1] = ACTIONS(9704), + [sym_end_statement] = ACTIONS(9706), + [aux_sym_on_goto_statement_token1] = ACTIONS(9704), + [aux_sym_on_goto_statement_token2] = ACTIONS(9704), + [aux_sym_on_error_statement_token2] = ACTIONS(9704), + [sym__ambiguous_redim_statement] = ACTIONS(9706), + [aux_sym_erase_statement_token1] = ACTIONS(9704), + [aux_sym_open_statement_token1] = ACTIONS(9704), + [aux_sym_file_mode_token2] = ACTIONS(9704), + [aux_sym_file_access_token2] = ACTIONS(9704), + [aux_sym_file_lock_token2] = ACTIONS(9704), + [aux_sym_print_statement_token1] = ACTIONS(9704), + [anon_sym_PLUS] = ACTIONS(9706), + [anon_sym_DASH] = ACTIONS(9704), + [anon_sym_QMARK] = ACTIONS(9706), + [aux_sym_close_statement_token1] = ACTIONS(9704), + [aux_sym_put_statement_token1] = ACTIONS(9704), + [aux_sym_unlock_statement_token1] = ACTIONS(9704), + [aux_sym_seek_statement_token1] = ACTIONS(9704), + [sym_reset_statement] = ACTIONS(9704), + [aux_sym_raise_event_statement_token1] = ACTIONS(9704), + [sym_stop_statement] = ACTIONS(9704), + [sym_beep_statement] = ACTIONS(9704), + [aux_sym_unload_statement_token1] = ACTIONS(9704), + [aux_sym_def_type_statement_token1] = ACTIONS(9704), + [aux_sym_def_type_statement_token2] = ACTIONS(9704), + [aux_sym_def_type_statement_token3] = ACTIONS(9704), + [aux_sym_def_type_statement_token4] = ACTIONS(9704), + [aux_sym_def_type_statement_token5] = ACTIONS(9704), + [aux_sym_def_type_statement_token6] = ACTIONS(9704), + [aux_sym_def_type_statement_token7] = ACTIONS(9704), + [aux_sym_def_type_statement_token8] = ACTIONS(9704), + [aux_sym_def_type_statement_token9] = ACTIONS(9704), + [aux_sym_def_type_statement_token10] = ACTIONS(9704), + [aux_sym_def_type_statement_token11] = ACTIONS(9704), + [aux_sym_def_type_statement_token12] = ACTIONS(9704), + [aux_sym_def_type_statement_token13] = ACTIONS(9704), + [aux_sym_def_type_statement_token14] = ACTIONS(9704), + [aux_sym_call_statement_token1] = ACTIONS(9704), + [sym__ambiguous_call_statement] = ACTIONS(9704), + [aux_sym_addressof_expression_token1] = ACTIONS(9704), + [aux_sym_type_of_expression_token1] = ACTIONS(9704), + [aux_sym_unary_expression_token1] = ACTIONS(9704), + [sym_string_literal] = ACTIONS(9706), + [sym_number_literal] = ACTIONS(9706), + [aux_sym_boolean_literal_token1] = ACTIONS(9704), + [aux_sym_boolean_literal_token2] = ACTIONS(9704), + [sym_nothing_literal] = ACTIONS(9704), + [sym_null_literal] = ACTIONS(9704), + [sym_empty_literal] = ACTIONS(9704), + [sym_date_literal] = ACTIONS(9706), + [anon_sym_POUND] = ACTIONS(9704), + }, + [STATE(5736)] = { + [sym_identifier] = ACTIONS(9708), + [sym_newline] = ACTIONS(9710), + [anon_sym_COLON] = ACTIONS(9710), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9708), + [aux_sym_frm_property_statement_token1] = ACTIONS(9708), + [anon_sym_DOT] = ACTIONS(9708), + [anon_sym_BANG] = ACTIONS(9710), + [aux_sym__attribute_identifier_token1] = ACTIONS(9708), + [aux_sym_option_statement_token3] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9708), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9708), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9708), + [aux_sym_preprocessor_const_token1] = ACTIONS(9708), + [sym_static_modifier] = ACTIONS(9708), + [sym__dim_keyword] = ACTIONS(9708), + [sym__redim_keyword] = ACTIONS(9708), + [aux_sym_get_accessor_token1] = ACTIONS(9708), + [aux_sym_set_accessor_token1] = ACTIONS(9708), + [aux_sym_const_declaration_token1] = ACTIONS(9708), + [anon_sym_LPAREN] = ACTIONS(9710), + [aux_sym_as_type_clause_token2] = ACTIONS(9708), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9708), + [aux_sym_visibility_token1] = ACTIONS(9708), + [aux_sym_visibility_token2] = ACTIONS(9708), + [aux_sym_elseif_fragment_token1] = ACTIONS(9708), + [aux_sym_else_fragment_token1] = ACTIONS(9708), + [aux_sym_select_statement_token1] = ACTIONS(9708), + [aux_sym__for_header_token1] = ACTIONS(9708), + [aux_sym_do_statement_token1] = ACTIONS(9708), + [aux_sym_do_condition_token1] = ACTIONS(9708), + [aux_sym_with_statement_token1] = ACTIONS(9708), + [aux_sym_exit_statement_token1] = ACTIONS(9708), + [sym_end_statement] = ACTIONS(9710), + [aux_sym_on_goto_statement_token1] = ACTIONS(9708), + [aux_sym_on_goto_statement_token2] = ACTIONS(9708), + [aux_sym_on_error_statement_token2] = ACTIONS(9708), + [sym__ambiguous_redim_statement] = ACTIONS(9710), + [aux_sym_erase_statement_token1] = ACTIONS(9708), + [aux_sym_open_statement_token1] = ACTIONS(9708), + [aux_sym_file_mode_token2] = ACTIONS(9708), + [aux_sym_file_access_token2] = ACTIONS(9708), + [aux_sym_file_lock_token2] = ACTIONS(9708), + [aux_sym_print_statement_token1] = ACTIONS(9708), + [anon_sym_PLUS] = ACTIONS(9710), + [anon_sym_DASH] = ACTIONS(9708), + [anon_sym_QMARK] = ACTIONS(9710), + [aux_sym_close_statement_token1] = ACTIONS(9708), + [aux_sym_put_statement_token1] = ACTIONS(9708), + [aux_sym_unlock_statement_token1] = ACTIONS(9708), + [aux_sym_seek_statement_token1] = ACTIONS(9708), + [sym_reset_statement] = ACTIONS(9708), + [aux_sym_raise_event_statement_token1] = ACTIONS(9708), + [sym_stop_statement] = ACTIONS(9708), + [sym_beep_statement] = ACTIONS(9708), + [aux_sym_unload_statement_token1] = ACTIONS(9708), + [aux_sym_def_type_statement_token1] = ACTIONS(9708), + [aux_sym_def_type_statement_token2] = ACTIONS(9708), + [aux_sym_def_type_statement_token3] = ACTIONS(9708), + [aux_sym_def_type_statement_token4] = ACTIONS(9708), + [aux_sym_def_type_statement_token5] = ACTIONS(9708), + [aux_sym_def_type_statement_token6] = ACTIONS(9708), + [aux_sym_def_type_statement_token7] = ACTIONS(9708), + [aux_sym_def_type_statement_token8] = ACTIONS(9708), + [aux_sym_def_type_statement_token9] = ACTIONS(9708), + [aux_sym_def_type_statement_token10] = ACTIONS(9708), + [aux_sym_def_type_statement_token11] = ACTIONS(9708), + [aux_sym_def_type_statement_token12] = ACTIONS(9708), + [aux_sym_def_type_statement_token13] = ACTIONS(9708), + [aux_sym_def_type_statement_token14] = ACTIONS(9708), + [aux_sym_call_statement_token1] = ACTIONS(9708), + [sym__ambiguous_call_statement] = ACTIONS(9708), + [aux_sym_addressof_expression_token1] = ACTIONS(9708), + [aux_sym_type_of_expression_token1] = ACTIONS(9708), + [aux_sym_unary_expression_token1] = ACTIONS(9708), + [sym_string_literal] = ACTIONS(9710), + [sym_number_literal] = ACTIONS(9710), + [aux_sym_boolean_literal_token1] = ACTIONS(9708), + [aux_sym_boolean_literal_token2] = ACTIONS(9708), + [sym_nothing_literal] = ACTIONS(9708), + [sym_null_literal] = ACTIONS(9708), + [sym_empty_literal] = ACTIONS(9708), + [sym_date_literal] = ACTIONS(9710), + [anon_sym_POUND] = ACTIONS(9708), + }, + [STATE(5737)] = { + [sym_identifier] = ACTIONS(9712), + [sym_newline] = ACTIONS(9714), + [anon_sym_COLON] = ACTIONS(9714), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9712), + [aux_sym_frm_property_statement_token1] = ACTIONS(9712), + [anon_sym_DOT] = ACTIONS(9712), + [anon_sym_BANG] = ACTIONS(9714), + [aux_sym__attribute_identifier_token1] = ACTIONS(9712), + [aux_sym_option_statement_token3] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9712), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9712), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9712), + [aux_sym_preprocessor_const_token1] = ACTIONS(9712), + [sym_static_modifier] = ACTIONS(9712), + [sym__dim_keyword] = ACTIONS(9712), + [sym__redim_keyword] = ACTIONS(9712), + [aux_sym_get_accessor_token1] = ACTIONS(9712), + [aux_sym_set_accessor_token1] = ACTIONS(9712), + [aux_sym_const_declaration_token1] = ACTIONS(9712), + [anon_sym_LPAREN] = ACTIONS(9714), + [aux_sym_as_type_clause_token2] = ACTIONS(9712), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9712), + [aux_sym_visibility_token1] = ACTIONS(9712), + [aux_sym_visibility_token2] = ACTIONS(9712), + [aux_sym_elseif_fragment_token1] = ACTIONS(9712), + [aux_sym_else_fragment_token1] = ACTIONS(9712), + [aux_sym_select_statement_token1] = ACTIONS(9712), + [aux_sym__for_header_token1] = ACTIONS(9712), + [aux_sym_do_statement_token1] = ACTIONS(9712), + [aux_sym_do_condition_token1] = ACTIONS(9712), + [aux_sym_with_statement_token1] = ACTIONS(9712), + [aux_sym_exit_statement_token1] = ACTIONS(9712), + [sym_end_statement] = ACTIONS(9714), + [aux_sym_on_goto_statement_token1] = ACTIONS(9712), + [aux_sym_on_goto_statement_token2] = ACTIONS(9712), + [aux_sym_on_error_statement_token2] = ACTIONS(9712), + [sym__ambiguous_redim_statement] = ACTIONS(9714), + [aux_sym_erase_statement_token1] = ACTIONS(9712), + [aux_sym_open_statement_token1] = ACTIONS(9712), + [aux_sym_file_mode_token2] = ACTIONS(9712), + [aux_sym_file_access_token2] = ACTIONS(9712), + [aux_sym_file_lock_token2] = ACTIONS(9712), + [aux_sym_print_statement_token1] = ACTIONS(9712), + [anon_sym_PLUS] = ACTIONS(9714), + [anon_sym_DASH] = ACTIONS(9712), + [anon_sym_QMARK] = ACTIONS(9714), + [aux_sym_close_statement_token1] = ACTIONS(9712), + [aux_sym_put_statement_token1] = ACTIONS(9712), + [aux_sym_unlock_statement_token1] = ACTIONS(9712), + [aux_sym_seek_statement_token1] = ACTIONS(9712), + [sym_reset_statement] = ACTIONS(9712), + [aux_sym_raise_event_statement_token1] = ACTIONS(9712), + [sym_stop_statement] = ACTIONS(9712), + [sym_beep_statement] = ACTIONS(9712), + [aux_sym_unload_statement_token1] = ACTIONS(9712), + [aux_sym_def_type_statement_token1] = ACTIONS(9712), + [aux_sym_def_type_statement_token2] = ACTIONS(9712), + [aux_sym_def_type_statement_token3] = ACTIONS(9712), + [aux_sym_def_type_statement_token4] = ACTIONS(9712), + [aux_sym_def_type_statement_token5] = ACTIONS(9712), + [aux_sym_def_type_statement_token6] = ACTIONS(9712), + [aux_sym_def_type_statement_token7] = ACTIONS(9712), + [aux_sym_def_type_statement_token8] = ACTIONS(9712), + [aux_sym_def_type_statement_token9] = ACTIONS(9712), + [aux_sym_def_type_statement_token10] = ACTIONS(9712), + [aux_sym_def_type_statement_token11] = ACTIONS(9712), + [aux_sym_def_type_statement_token12] = ACTIONS(9712), + [aux_sym_def_type_statement_token13] = ACTIONS(9712), + [aux_sym_def_type_statement_token14] = ACTIONS(9712), + [aux_sym_call_statement_token1] = ACTIONS(9712), + [sym__ambiguous_call_statement] = ACTIONS(9712), + [aux_sym_addressof_expression_token1] = ACTIONS(9712), + [aux_sym_type_of_expression_token1] = ACTIONS(9712), + [aux_sym_unary_expression_token1] = ACTIONS(9712), + [sym_string_literal] = ACTIONS(9714), + [sym_number_literal] = ACTIONS(9714), + [aux_sym_boolean_literal_token1] = ACTIONS(9712), + [aux_sym_boolean_literal_token2] = ACTIONS(9712), + [sym_nothing_literal] = ACTIONS(9712), + [sym_null_literal] = ACTIONS(9712), + [sym_empty_literal] = ACTIONS(9712), + [sym_date_literal] = ACTIONS(9714), + [anon_sym_POUND] = ACTIONS(9712), + }, + [STATE(5738)] = { + [sym_identifier] = ACTIONS(9716), + [sym_newline] = ACTIONS(9718), + [anon_sym_COLON] = ACTIONS(9718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9716), + [aux_sym_frm_property_statement_token1] = ACTIONS(9716), + [anon_sym_DOT] = ACTIONS(9716), + [anon_sym_BANG] = ACTIONS(9718), + [aux_sym__attribute_identifier_token1] = ACTIONS(9716), + [aux_sym_option_statement_token3] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9716), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9716), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9716), + [aux_sym_preprocessor_const_token1] = ACTIONS(9716), + [sym_static_modifier] = ACTIONS(9716), + [sym__dim_keyword] = ACTIONS(9716), + [sym__redim_keyword] = ACTIONS(9716), + [aux_sym_get_accessor_token1] = ACTIONS(9716), + [aux_sym_set_accessor_token1] = ACTIONS(9716), + [aux_sym_const_declaration_token1] = ACTIONS(9716), + [anon_sym_LPAREN] = ACTIONS(9718), + [aux_sym_as_type_clause_token2] = ACTIONS(9716), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9716), + [aux_sym_visibility_token1] = ACTIONS(9716), + [aux_sym_visibility_token2] = ACTIONS(9716), + [aux_sym_elseif_fragment_token1] = ACTIONS(9716), + [aux_sym_else_fragment_token1] = ACTIONS(9716), + [aux_sym_select_statement_token1] = ACTIONS(9716), + [aux_sym__for_header_token1] = ACTIONS(9716), + [aux_sym_do_statement_token1] = ACTIONS(9716), + [aux_sym_do_condition_token1] = ACTIONS(9716), + [aux_sym_with_statement_token1] = ACTIONS(9716), + [aux_sym_exit_statement_token1] = ACTIONS(9716), + [sym_end_statement] = ACTIONS(9718), + [aux_sym_on_goto_statement_token1] = ACTIONS(9716), + [aux_sym_on_goto_statement_token2] = ACTIONS(9716), + [aux_sym_on_error_statement_token2] = ACTIONS(9716), + [sym__ambiguous_redim_statement] = ACTIONS(9718), + [aux_sym_erase_statement_token1] = ACTIONS(9716), + [aux_sym_open_statement_token1] = ACTIONS(9716), + [aux_sym_file_mode_token2] = ACTIONS(9716), + [aux_sym_file_access_token2] = ACTIONS(9716), + [aux_sym_file_lock_token2] = ACTIONS(9716), + [aux_sym_print_statement_token1] = ACTIONS(9716), + [anon_sym_PLUS] = ACTIONS(9718), + [anon_sym_DASH] = ACTIONS(9716), + [anon_sym_QMARK] = ACTIONS(9718), + [aux_sym_close_statement_token1] = ACTIONS(9716), + [aux_sym_put_statement_token1] = ACTIONS(9716), + [aux_sym_unlock_statement_token1] = ACTIONS(9716), + [aux_sym_seek_statement_token1] = ACTIONS(9716), + [sym_reset_statement] = ACTIONS(9716), + [aux_sym_raise_event_statement_token1] = ACTIONS(9716), + [sym_stop_statement] = ACTIONS(9716), + [sym_beep_statement] = ACTIONS(9716), + [aux_sym_unload_statement_token1] = ACTIONS(9716), + [aux_sym_def_type_statement_token1] = ACTIONS(9716), + [aux_sym_def_type_statement_token2] = ACTIONS(9716), + [aux_sym_def_type_statement_token3] = ACTIONS(9716), + [aux_sym_def_type_statement_token4] = ACTIONS(9716), + [aux_sym_def_type_statement_token5] = ACTIONS(9716), + [aux_sym_def_type_statement_token6] = ACTIONS(9716), + [aux_sym_def_type_statement_token7] = ACTIONS(9716), + [aux_sym_def_type_statement_token8] = ACTIONS(9716), + [aux_sym_def_type_statement_token9] = ACTIONS(9716), + [aux_sym_def_type_statement_token10] = ACTIONS(9716), + [aux_sym_def_type_statement_token11] = ACTIONS(9716), + [aux_sym_def_type_statement_token12] = ACTIONS(9716), + [aux_sym_def_type_statement_token13] = ACTIONS(9716), + [aux_sym_def_type_statement_token14] = ACTIONS(9716), + [aux_sym_call_statement_token1] = ACTIONS(9716), + [sym__ambiguous_call_statement] = ACTIONS(9716), + [aux_sym_addressof_expression_token1] = ACTIONS(9716), + [aux_sym_type_of_expression_token1] = ACTIONS(9716), + [aux_sym_unary_expression_token1] = ACTIONS(9716), + [sym_string_literal] = ACTIONS(9718), + [sym_number_literal] = ACTIONS(9718), + [aux_sym_boolean_literal_token1] = ACTIONS(9716), + [aux_sym_boolean_literal_token2] = ACTIONS(9716), + [sym_nothing_literal] = ACTIONS(9716), + [sym_null_literal] = ACTIONS(9716), + [sym_empty_literal] = ACTIONS(9716), + [sym_date_literal] = ACTIONS(9718), + [anon_sym_POUND] = ACTIONS(9716), + }, + [STATE(5739)] = { + [sym_identifier] = ACTIONS(9752), + [sym_newline] = ACTIONS(9754), + [anon_sym_COLON] = ACTIONS(9754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9752), + [aux_sym_frm_property_statement_token1] = ACTIONS(9752), + [anon_sym_DOT] = ACTIONS(9752), + [anon_sym_BANG] = ACTIONS(9754), + [aux_sym__attribute_identifier_token1] = ACTIONS(9752), + [aux_sym_option_statement_token3] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9752), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9752), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9752), + [aux_sym_preprocessor_const_token1] = ACTIONS(9752), + [sym_static_modifier] = ACTIONS(9752), + [sym__dim_keyword] = ACTIONS(9752), + [sym__redim_keyword] = ACTIONS(9752), + [aux_sym_get_accessor_token1] = ACTIONS(9752), + [aux_sym_set_accessor_token1] = ACTIONS(9752), + [aux_sym_const_declaration_token1] = ACTIONS(9752), + [anon_sym_LPAREN] = ACTIONS(9754), + [aux_sym_as_type_clause_token2] = ACTIONS(9752), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9752), + [aux_sym_visibility_token1] = ACTIONS(9752), + [aux_sym_visibility_token2] = ACTIONS(9752), + [aux_sym_elseif_fragment_token1] = ACTIONS(9752), + [aux_sym_else_fragment_token1] = ACTIONS(9752), + [aux_sym_select_statement_token1] = ACTIONS(9752), + [aux_sym__for_header_token1] = ACTIONS(9752), + [aux_sym_do_statement_token1] = ACTIONS(9752), + [aux_sym_do_condition_token1] = ACTIONS(9752), + [aux_sym_with_statement_token1] = ACTIONS(9752), + [aux_sym_exit_statement_token1] = ACTIONS(9752), + [sym_end_statement] = ACTIONS(9754), + [aux_sym_on_goto_statement_token1] = ACTIONS(9752), + [aux_sym_on_goto_statement_token2] = ACTIONS(9752), + [aux_sym_on_error_statement_token2] = ACTIONS(9752), + [sym__ambiguous_redim_statement] = ACTIONS(9754), + [aux_sym_erase_statement_token1] = ACTIONS(9752), + [aux_sym_open_statement_token1] = ACTIONS(9752), + [aux_sym_file_mode_token2] = ACTIONS(9752), + [aux_sym_file_access_token2] = ACTIONS(9752), + [aux_sym_file_lock_token2] = ACTIONS(9752), + [aux_sym_print_statement_token1] = ACTIONS(9752), + [anon_sym_PLUS] = ACTIONS(9754), + [anon_sym_DASH] = ACTIONS(9752), + [anon_sym_QMARK] = ACTIONS(9754), + [aux_sym_close_statement_token1] = ACTIONS(9752), + [aux_sym_put_statement_token1] = ACTIONS(9752), + [aux_sym_unlock_statement_token1] = ACTIONS(9752), + [aux_sym_seek_statement_token1] = ACTIONS(9752), + [sym_reset_statement] = ACTIONS(9752), + [aux_sym_raise_event_statement_token1] = ACTIONS(9752), + [sym_stop_statement] = ACTIONS(9752), + [sym_beep_statement] = ACTIONS(9752), + [aux_sym_unload_statement_token1] = ACTIONS(9752), + [aux_sym_def_type_statement_token1] = ACTIONS(9752), + [aux_sym_def_type_statement_token2] = ACTIONS(9752), + [aux_sym_def_type_statement_token3] = ACTIONS(9752), + [aux_sym_def_type_statement_token4] = ACTIONS(9752), + [aux_sym_def_type_statement_token5] = ACTIONS(9752), + [aux_sym_def_type_statement_token6] = ACTIONS(9752), + [aux_sym_def_type_statement_token7] = ACTIONS(9752), + [aux_sym_def_type_statement_token8] = ACTIONS(9752), + [aux_sym_def_type_statement_token9] = ACTIONS(9752), + [aux_sym_def_type_statement_token10] = ACTIONS(9752), + [aux_sym_def_type_statement_token11] = ACTIONS(9752), + [aux_sym_def_type_statement_token12] = ACTIONS(9752), + [aux_sym_def_type_statement_token13] = ACTIONS(9752), + [aux_sym_def_type_statement_token14] = ACTIONS(9752), + [aux_sym_call_statement_token1] = ACTIONS(9752), + [sym__ambiguous_call_statement] = ACTIONS(9752), + [aux_sym_addressof_expression_token1] = ACTIONS(9752), + [aux_sym_type_of_expression_token1] = ACTIONS(9752), + [aux_sym_unary_expression_token1] = ACTIONS(9752), + [sym_string_literal] = ACTIONS(9754), + [sym_number_literal] = ACTIONS(9754), + [aux_sym_boolean_literal_token1] = ACTIONS(9752), + [aux_sym_boolean_literal_token2] = ACTIONS(9752), + [sym_nothing_literal] = ACTIONS(9752), + [sym_null_literal] = ACTIONS(9752), + [sym_empty_literal] = ACTIONS(9752), + [sym_date_literal] = ACTIONS(9754), + [anon_sym_POUND] = ACTIONS(9752), + }, + [STATE(5740)] = { + [sym_identifier] = ACTIONS(9756), + [sym_newline] = ACTIONS(9758), + [anon_sym_COLON] = ACTIONS(9758), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9756), + [aux_sym_frm_property_statement_token1] = ACTIONS(9756), + [anon_sym_DOT] = ACTIONS(9756), + [anon_sym_BANG] = ACTIONS(9758), + [aux_sym__attribute_identifier_token1] = ACTIONS(9756), + [aux_sym_option_statement_token3] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9756), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9756), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9756), + [aux_sym_preprocessor_const_token1] = ACTIONS(9756), + [sym_static_modifier] = ACTIONS(9756), + [sym__dim_keyword] = ACTIONS(9756), + [sym__redim_keyword] = ACTIONS(9756), + [aux_sym_get_accessor_token1] = ACTIONS(9756), + [aux_sym_set_accessor_token1] = ACTIONS(9756), + [aux_sym_const_declaration_token1] = ACTIONS(9756), + [anon_sym_LPAREN] = ACTIONS(9758), + [aux_sym_as_type_clause_token2] = ACTIONS(9756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9756), + [aux_sym_visibility_token1] = ACTIONS(9756), + [aux_sym_visibility_token2] = ACTIONS(9756), + [aux_sym_elseif_fragment_token1] = ACTIONS(9756), + [aux_sym_else_fragment_token1] = ACTIONS(9756), + [aux_sym_select_statement_token1] = ACTIONS(9756), + [aux_sym__for_header_token1] = ACTIONS(9756), + [aux_sym_do_statement_token1] = ACTIONS(9756), + [aux_sym_do_condition_token1] = ACTIONS(9756), + [aux_sym_with_statement_token1] = ACTIONS(9756), + [aux_sym_exit_statement_token1] = ACTIONS(9756), + [sym_end_statement] = ACTIONS(9758), + [aux_sym_on_goto_statement_token1] = ACTIONS(9756), + [aux_sym_on_goto_statement_token2] = ACTIONS(9756), + [aux_sym_on_error_statement_token2] = ACTIONS(9756), + [sym__ambiguous_redim_statement] = ACTIONS(9758), + [aux_sym_erase_statement_token1] = ACTIONS(9756), + [aux_sym_open_statement_token1] = ACTIONS(9756), + [aux_sym_file_mode_token2] = ACTIONS(9756), + [aux_sym_file_access_token2] = ACTIONS(9756), + [aux_sym_file_lock_token2] = ACTIONS(9756), + [aux_sym_print_statement_token1] = ACTIONS(9756), + [anon_sym_PLUS] = ACTIONS(9758), + [anon_sym_DASH] = ACTIONS(9756), + [anon_sym_QMARK] = ACTIONS(9758), + [aux_sym_close_statement_token1] = ACTIONS(9756), + [aux_sym_put_statement_token1] = ACTIONS(9756), + [aux_sym_unlock_statement_token1] = ACTIONS(9756), + [aux_sym_seek_statement_token1] = ACTIONS(9756), + [sym_reset_statement] = ACTIONS(9756), + [aux_sym_raise_event_statement_token1] = ACTIONS(9756), + [sym_stop_statement] = ACTIONS(9756), + [sym_beep_statement] = ACTIONS(9756), + [aux_sym_unload_statement_token1] = ACTIONS(9756), + [aux_sym_def_type_statement_token1] = ACTIONS(9756), + [aux_sym_def_type_statement_token2] = ACTIONS(9756), + [aux_sym_def_type_statement_token3] = ACTIONS(9756), + [aux_sym_def_type_statement_token4] = ACTIONS(9756), + [aux_sym_def_type_statement_token5] = ACTIONS(9756), + [aux_sym_def_type_statement_token6] = ACTIONS(9756), + [aux_sym_def_type_statement_token7] = ACTIONS(9756), + [aux_sym_def_type_statement_token8] = ACTIONS(9756), + [aux_sym_def_type_statement_token9] = ACTIONS(9756), + [aux_sym_def_type_statement_token10] = ACTIONS(9756), + [aux_sym_def_type_statement_token11] = ACTIONS(9756), + [aux_sym_def_type_statement_token12] = ACTIONS(9756), + [aux_sym_def_type_statement_token13] = ACTIONS(9756), + [aux_sym_def_type_statement_token14] = ACTIONS(9756), + [aux_sym_call_statement_token1] = ACTIONS(9756), + [sym__ambiguous_call_statement] = ACTIONS(9756), + [aux_sym_addressof_expression_token1] = ACTIONS(9756), + [aux_sym_type_of_expression_token1] = ACTIONS(9756), + [aux_sym_unary_expression_token1] = ACTIONS(9756), + [sym_string_literal] = ACTIONS(9758), + [sym_number_literal] = ACTIONS(9758), + [aux_sym_boolean_literal_token1] = ACTIONS(9756), + [aux_sym_boolean_literal_token2] = ACTIONS(9756), + [sym_nothing_literal] = ACTIONS(9756), + [sym_null_literal] = ACTIONS(9756), + [sym_empty_literal] = ACTIONS(9756), + [sym_date_literal] = ACTIONS(9758), + [anon_sym_POUND] = ACTIONS(9756), + }, + [STATE(5741)] = { + [sym_identifier] = ACTIONS(9760), + [sym_newline] = ACTIONS(9762), + [anon_sym_COLON] = ACTIONS(9762), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9760), + [aux_sym_frm_property_statement_token1] = ACTIONS(9760), + [anon_sym_DOT] = ACTIONS(9760), + [anon_sym_BANG] = ACTIONS(9762), + [aux_sym__attribute_identifier_token1] = ACTIONS(9760), + [aux_sym_option_statement_token3] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9760), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9760), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9760), + [aux_sym_preprocessor_const_token1] = ACTIONS(9760), + [sym_static_modifier] = ACTIONS(9760), + [sym__dim_keyword] = ACTIONS(9760), + [sym__redim_keyword] = ACTIONS(9760), + [aux_sym_get_accessor_token1] = ACTIONS(9760), + [aux_sym_set_accessor_token1] = ACTIONS(9760), + [aux_sym_const_declaration_token1] = ACTIONS(9760), + [anon_sym_LPAREN] = ACTIONS(9762), + [aux_sym_as_type_clause_token2] = ACTIONS(9760), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9760), + [aux_sym_visibility_token1] = ACTIONS(9760), + [aux_sym_visibility_token2] = ACTIONS(9760), + [aux_sym_elseif_fragment_token1] = ACTIONS(9760), + [aux_sym_else_fragment_token1] = ACTIONS(9760), + [aux_sym_select_statement_token1] = ACTIONS(9760), + [aux_sym__for_header_token1] = ACTIONS(9760), + [aux_sym_do_statement_token1] = ACTIONS(9760), + [aux_sym_do_condition_token1] = ACTIONS(9760), + [aux_sym_with_statement_token1] = ACTIONS(9760), + [aux_sym_exit_statement_token1] = ACTIONS(9760), + [sym_end_statement] = ACTIONS(9762), + [aux_sym_on_goto_statement_token1] = ACTIONS(9760), + [aux_sym_on_goto_statement_token2] = ACTIONS(9760), + [aux_sym_on_error_statement_token2] = ACTIONS(9760), + [sym__ambiguous_redim_statement] = ACTIONS(9762), + [aux_sym_erase_statement_token1] = ACTIONS(9760), + [aux_sym_open_statement_token1] = ACTIONS(9760), + [aux_sym_file_mode_token2] = ACTIONS(9760), + [aux_sym_file_access_token2] = ACTIONS(9760), + [aux_sym_file_lock_token2] = ACTIONS(9760), + [aux_sym_print_statement_token1] = ACTIONS(9760), + [anon_sym_PLUS] = ACTIONS(9762), + [anon_sym_DASH] = ACTIONS(9760), + [anon_sym_QMARK] = ACTIONS(9762), + [aux_sym_close_statement_token1] = ACTIONS(9760), + [aux_sym_put_statement_token1] = ACTIONS(9760), + [aux_sym_unlock_statement_token1] = ACTIONS(9760), + [aux_sym_seek_statement_token1] = ACTIONS(9760), + [sym_reset_statement] = ACTIONS(9760), + [aux_sym_raise_event_statement_token1] = ACTIONS(9760), + [sym_stop_statement] = ACTIONS(9760), + [sym_beep_statement] = ACTIONS(9760), + [aux_sym_unload_statement_token1] = ACTIONS(9760), + [aux_sym_def_type_statement_token1] = ACTIONS(9760), + [aux_sym_def_type_statement_token2] = ACTIONS(9760), + [aux_sym_def_type_statement_token3] = ACTIONS(9760), + [aux_sym_def_type_statement_token4] = ACTIONS(9760), + [aux_sym_def_type_statement_token5] = ACTIONS(9760), + [aux_sym_def_type_statement_token6] = ACTIONS(9760), + [aux_sym_def_type_statement_token7] = ACTIONS(9760), + [aux_sym_def_type_statement_token8] = ACTIONS(9760), + [aux_sym_def_type_statement_token9] = ACTIONS(9760), + [aux_sym_def_type_statement_token10] = ACTIONS(9760), + [aux_sym_def_type_statement_token11] = ACTIONS(9760), + [aux_sym_def_type_statement_token12] = ACTIONS(9760), + [aux_sym_def_type_statement_token13] = ACTIONS(9760), + [aux_sym_def_type_statement_token14] = ACTIONS(9760), + [aux_sym_call_statement_token1] = ACTIONS(9760), + [sym__ambiguous_call_statement] = ACTIONS(9760), + [aux_sym_addressof_expression_token1] = ACTIONS(9760), + [aux_sym_type_of_expression_token1] = ACTIONS(9760), + [aux_sym_unary_expression_token1] = ACTIONS(9760), + [sym_string_literal] = ACTIONS(9762), + [sym_number_literal] = ACTIONS(9762), + [aux_sym_boolean_literal_token1] = ACTIONS(9760), + [aux_sym_boolean_literal_token2] = ACTIONS(9760), + [sym_nothing_literal] = ACTIONS(9760), + [sym_null_literal] = ACTIONS(9760), + [sym_empty_literal] = ACTIONS(9760), + [sym_date_literal] = ACTIONS(9762), + [anon_sym_POUND] = ACTIONS(9760), + }, + [STATE(5742)] = { + [sym_identifier] = ACTIONS(9764), + [sym_newline] = ACTIONS(9766), + [anon_sym_COLON] = ACTIONS(9766), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9764), + [aux_sym_frm_property_statement_token1] = ACTIONS(9764), + [anon_sym_DOT] = ACTIONS(9764), + [anon_sym_BANG] = ACTIONS(9766), + [aux_sym__attribute_identifier_token1] = ACTIONS(9764), + [aux_sym_option_statement_token3] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9764), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9764), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9764), + [aux_sym_preprocessor_const_token1] = ACTIONS(9764), + [sym_static_modifier] = ACTIONS(9764), + [sym__dim_keyword] = ACTIONS(9764), + [sym__redim_keyword] = ACTIONS(9764), + [aux_sym_get_accessor_token1] = ACTIONS(9764), + [aux_sym_set_accessor_token1] = ACTIONS(9764), + [aux_sym_const_declaration_token1] = ACTIONS(9764), + [anon_sym_LPAREN] = ACTIONS(9766), + [aux_sym_as_type_clause_token2] = ACTIONS(9764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9764), + [aux_sym_visibility_token1] = ACTIONS(9764), + [aux_sym_visibility_token2] = ACTIONS(9764), + [aux_sym_elseif_fragment_token1] = ACTIONS(9764), + [aux_sym_else_fragment_token1] = ACTIONS(9764), + [aux_sym_select_statement_token1] = ACTIONS(9764), + [aux_sym__for_header_token1] = ACTIONS(9764), + [aux_sym_do_statement_token1] = ACTIONS(9764), + [aux_sym_do_condition_token1] = ACTIONS(9764), + [aux_sym_with_statement_token1] = ACTIONS(9764), + [aux_sym_exit_statement_token1] = ACTIONS(9764), + [sym_end_statement] = ACTIONS(9766), + [aux_sym_on_goto_statement_token1] = ACTIONS(9764), + [aux_sym_on_goto_statement_token2] = ACTIONS(9764), + [aux_sym_on_error_statement_token2] = ACTIONS(9764), + [sym__ambiguous_redim_statement] = ACTIONS(9766), + [aux_sym_erase_statement_token1] = ACTIONS(9764), + [aux_sym_open_statement_token1] = ACTIONS(9764), + [aux_sym_file_mode_token2] = ACTIONS(9764), + [aux_sym_file_access_token2] = ACTIONS(9764), + [aux_sym_file_lock_token2] = ACTIONS(9764), + [aux_sym_print_statement_token1] = ACTIONS(9764), + [anon_sym_PLUS] = ACTIONS(9766), + [anon_sym_DASH] = ACTIONS(9764), + [anon_sym_QMARK] = ACTIONS(9766), + [aux_sym_close_statement_token1] = ACTIONS(9764), + [aux_sym_put_statement_token1] = ACTIONS(9764), + [aux_sym_unlock_statement_token1] = ACTIONS(9764), + [aux_sym_seek_statement_token1] = ACTIONS(9764), + [sym_reset_statement] = ACTIONS(9764), + [aux_sym_raise_event_statement_token1] = ACTIONS(9764), + [sym_stop_statement] = ACTIONS(9764), + [sym_beep_statement] = ACTIONS(9764), + [aux_sym_unload_statement_token1] = ACTIONS(9764), + [aux_sym_def_type_statement_token1] = ACTIONS(9764), + [aux_sym_def_type_statement_token2] = ACTIONS(9764), + [aux_sym_def_type_statement_token3] = ACTIONS(9764), + [aux_sym_def_type_statement_token4] = ACTIONS(9764), + [aux_sym_def_type_statement_token5] = ACTIONS(9764), + [aux_sym_def_type_statement_token6] = ACTIONS(9764), + [aux_sym_def_type_statement_token7] = ACTIONS(9764), + [aux_sym_def_type_statement_token8] = ACTIONS(9764), + [aux_sym_def_type_statement_token9] = ACTIONS(9764), + [aux_sym_def_type_statement_token10] = ACTIONS(9764), + [aux_sym_def_type_statement_token11] = ACTIONS(9764), + [aux_sym_def_type_statement_token12] = ACTIONS(9764), + [aux_sym_def_type_statement_token13] = ACTIONS(9764), + [aux_sym_def_type_statement_token14] = ACTIONS(9764), + [aux_sym_call_statement_token1] = ACTIONS(9764), + [sym__ambiguous_call_statement] = ACTIONS(9764), + [aux_sym_addressof_expression_token1] = ACTIONS(9764), + [aux_sym_type_of_expression_token1] = ACTIONS(9764), + [aux_sym_unary_expression_token1] = ACTIONS(9764), + [sym_string_literal] = ACTIONS(9766), + [sym_number_literal] = ACTIONS(9766), + [aux_sym_boolean_literal_token1] = ACTIONS(9764), + [aux_sym_boolean_literal_token2] = ACTIONS(9764), + [sym_nothing_literal] = ACTIONS(9764), + [sym_null_literal] = ACTIONS(9764), + [sym_empty_literal] = ACTIONS(9764), + [sym_date_literal] = ACTIONS(9766), + [anon_sym_POUND] = ACTIONS(9764), + }, + [STATE(5743)] = { + [sym_identifier] = ACTIONS(9768), + [sym_newline] = ACTIONS(9770), + [anon_sym_COLON] = ACTIONS(9770), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9768), + [aux_sym_frm_property_statement_token1] = ACTIONS(9768), + [anon_sym_DOT] = ACTIONS(9768), + [anon_sym_BANG] = ACTIONS(9770), + [aux_sym__attribute_identifier_token1] = ACTIONS(9768), + [aux_sym_option_statement_token3] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9768), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9768), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9768), + [aux_sym_preprocessor_const_token1] = ACTIONS(9768), + [sym_static_modifier] = ACTIONS(9768), + [sym__dim_keyword] = ACTIONS(9768), + [sym__redim_keyword] = ACTIONS(9768), + [aux_sym_get_accessor_token1] = ACTIONS(9768), + [aux_sym_set_accessor_token1] = ACTIONS(9768), + [aux_sym_const_declaration_token1] = ACTIONS(9768), + [anon_sym_LPAREN] = ACTIONS(9770), + [aux_sym_as_type_clause_token2] = ACTIONS(9768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9768), + [aux_sym_visibility_token1] = ACTIONS(9768), + [aux_sym_visibility_token2] = ACTIONS(9768), + [aux_sym_elseif_fragment_token1] = ACTIONS(9768), + [aux_sym_else_fragment_token1] = ACTIONS(9768), + [aux_sym_select_statement_token1] = ACTIONS(9768), + [aux_sym__for_header_token1] = ACTIONS(9768), + [aux_sym_do_statement_token1] = ACTIONS(9768), + [aux_sym_do_condition_token1] = ACTIONS(9768), + [aux_sym_with_statement_token1] = ACTIONS(9768), + [aux_sym_exit_statement_token1] = ACTIONS(9768), + [sym_end_statement] = ACTIONS(9770), + [aux_sym_on_goto_statement_token1] = ACTIONS(9768), + [aux_sym_on_goto_statement_token2] = ACTIONS(9768), + [aux_sym_on_error_statement_token2] = ACTIONS(9768), + [sym__ambiguous_redim_statement] = ACTIONS(9770), + [aux_sym_erase_statement_token1] = ACTIONS(9768), + [aux_sym_open_statement_token1] = ACTIONS(9768), + [aux_sym_file_mode_token2] = ACTIONS(9768), + [aux_sym_file_access_token2] = ACTIONS(9768), + [aux_sym_file_lock_token2] = ACTIONS(9768), + [aux_sym_print_statement_token1] = ACTIONS(9768), + [anon_sym_PLUS] = ACTIONS(9770), + [anon_sym_DASH] = ACTIONS(9768), + [anon_sym_QMARK] = ACTIONS(9770), + [aux_sym_close_statement_token1] = ACTIONS(9768), + [aux_sym_put_statement_token1] = ACTIONS(9768), + [aux_sym_unlock_statement_token1] = ACTIONS(9768), + [aux_sym_seek_statement_token1] = ACTIONS(9768), + [sym_reset_statement] = ACTIONS(9768), + [aux_sym_raise_event_statement_token1] = ACTIONS(9768), + [sym_stop_statement] = ACTIONS(9768), + [sym_beep_statement] = ACTIONS(9768), + [aux_sym_unload_statement_token1] = ACTIONS(9768), + [aux_sym_def_type_statement_token1] = ACTIONS(9768), + [aux_sym_def_type_statement_token2] = ACTIONS(9768), + [aux_sym_def_type_statement_token3] = ACTIONS(9768), + [aux_sym_def_type_statement_token4] = ACTIONS(9768), + [aux_sym_def_type_statement_token5] = ACTIONS(9768), + [aux_sym_def_type_statement_token6] = ACTIONS(9768), + [aux_sym_def_type_statement_token7] = ACTIONS(9768), + [aux_sym_def_type_statement_token8] = ACTIONS(9768), + [aux_sym_def_type_statement_token9] = ACTIONS(9768), + [aux_sym_def_type_statement_token10] = ACTIONS(9768), + [aux_sym_def_type_statement_token11] = ACTIONS(9768), + [aux_sym_def_type_statement_token12] = ACTIONS(9768), + [aux_sym_def_type_statement_token13] = ACTIONS(9768), + [aux_sym_def_type_statement_token14] = ACTIONS(9768), + [aux_sym_call_statement_token1] = ACTIONS(9768), + [sym__ambiguous_call_statement] = ACTIONS(9768), + [aux_sym_addressof_expression_token1] = ACTIONS(9768), + [aux_sym_type_of_expression_token1] = ACTIONS(9768), + [aux_sym_unary_expression_token1] = ACTIONS(9768), + [sym_string_literal] = ACTIONS(9770), + [sym_number_literal] = ACTIONS(9770), + [aux_sym_boolean_literal_token1] = ACTIONS(9768), + [aux_sym_boolean_literal_token2] = ACTIONS(9768), + [sym_nothing_literal] = ACTIONS(9768), + [sym_null_literal] = ACTIONS(9768), + [sym_empty_literal] = ACTIONS(9768), + [sym_date_literal] = ACTIONS(9770), + [anon_sym_POUND] = ACTIONS(9768), + }, + [STATE(5744)] = { + [sym__top_level_item] = STATE(5531), + [sym_frm_version_statement] = STATE(5531), + [sym_frm_begin_block] = STATE(5531), + [sym_frm_begin_property_block] = STATE(5531), + [sym_frm_property_statement] = STATE(5531), + [sym_attribute_statement] = STATE(5531), + [sym_option_statement] = STATE(5531), + [sym_implements_statement] = STATE(5531), + [sym_type_declaration] = STATE(5531), + [sym_enum_declaration] = STATE(5531), + [sym_declare_sub_statement] = STATE(5531), + [sym_declare_function_statement] = STATE(5531), + [sym_preprocessor_const] = STATE(5531), + [sym_preprocessor_if] = STATE(5531), + [sym_sub_declaration] = STATE(5531), + [sym_function_declaration] = STATE(5531), + [sym_property_get_declaration] = STATE(5531), + [sym_property_let_declaration] = STATE(5531), + [sym_property_set_declaration] = STATE(5531), + [sym__sub_header] = STATE(12617), + [sym__function_header] = STATE(13075), + [sym__property_get_header] = STATE(13077), + [sym__property_let_header] = STATE(12766), + [sym__property_set_header] = STATE(12889), + [sym_conditional_sub_declaration] = STATE(5531), + [sym_conditional_function_declaration] = STATE(5531), + [sym_conditional_property_declaration] = STATE(5531), + [sym__conditional_sub_headers] = STATE(13971), + [sym__conditional_function_headers] = STATE(14070), + [sym__conditional_property_headers] = STATE(14592), + [sym_event_declaration] = STATE(5531), + [sym__procedure_modifier] = STATE(13006), + [sym_variable_declaration] = STATE(5531), + [sym_const_declaration] = STATE(5531), + [sym_visibility] = STATE(10985), + [sym_line_number_top_level_item] = STATE(5531), + [sym_def_type_statement] = STATE(5531), + [sym__callable_expression] = STATE(13480), + [sym_call_expression] = STATE(12245), + [sym_member_expression] = STATE(12224), + [sym_qualified_member_expression] = STATE(10049), + [sym_implicit_member_expression] = STATE(10049), + [aux_sym_source_file_repeat1] = STATE(5531), + [ts_builtin_sym_end] = ACTIONS(10775), + [sym_identifier] = ACTIONS(9), + [sym_newline] = ACTIONS(10777), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(13), + [aux_sym_frm_begin_block_token1] = ACTIONS(15), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(17), + [aux_sym_frm_property_statement_token1] = ACTIONS(19), + [aux_sym_attribute_statement_token1] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [aux_sym_option_statement_token1] = ACTIONS(27), + [aux_sym_option_statement_token3] = ACTIONS(29), + [aux_sym_implements_statement_token1] = ACTIONS(31), + [aux_sym_type_declaration_token1] = ACTIONS(33), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(35), + [aux_sym_enum_declaration_token1] = ACTIONS(37), + [aux_sym_declare_sub_statement_token1] = ACTIONS(39), + [aux_sym_declare_sub_statement_token2] = ACTIONS(41), + [aux_sym_declare_function_statement_token1] = ACTIONS(43), + [aux_sym_preprocessor_const_token1] = ACTIONS(45), + [aux_sym__property_get_header_token1] = ACTIONS(47), + [aux_sym_event_declaration_token1] = ACTIONS(49), + [sym_static_modifier] = ACTIONS(51), + [sym__dim_keyword] = ACTIONS(53), + [aux_sym_const_declaration_token1] = ACTIONS(55), + [aux_sym_visibility_token1] = ACTIONS(29), + [aux_sym_visibility_token2] = ACTIONS(29), + [aux_sym_def_type_statement_token1] = ACTIONS(57), + [aux_sym_def_type_statement_token2] = ACTIONS(57), + [aux_sym_def_type_statement_token3] = ACTIONS(57), + [aux_sym_def_type_statement_token4] = ACTIONS(57), + [aux_sym_def_type_statement_token5] = ACTIONS(57), + [aux_sym_def_type_statement_token6] = ACTIONS(57), + [aux_sym_def_type_statement_token7] = ACTIONS(57), + [aux_sym_def_type_statement_token8] = ACTIONS(57), + [aux_sym_def_type_statement_token9] = ACTIONS(57), + [aux_sym_def_type_statement_token10] = ACTIONS(57), + [aux_sym_def_type_statement_token11] = ACTIONS(57), + [aux_sym_def_type_statement_token12] = ACTIONS(57), + [aux_sym_def_type_statement_token13] = ACTIONS(57), + [aux_sym_def_type_statement_token14] = ACTIONS(57), + [sym_number_literal] = ACTIONS(59), + }, + [STATE(5745)] = { + [sym_argument_list] = STATE(10051), + [aux_sym_input_statement_repeat1] = STATE(5904), + [sym_identifier] = ACTIONS(7864), + [sym_newline] = ACTIONS(7866), + [anon_sym_COLON] = ACTIONS(7866), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7864), + [aux_sym_frm_property_statement_token1] = ACTIONS(7864), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_BANG] = ACTIONS(7866), + [aux_sym__attribute_identifier_token1] = ACTIONS(7864), + [aux_sym_option_statement_token3] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7864), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7864), + [aux_sym_preprocessor_const_token1] = ACTIONS(7864), + [sym_static_modifier] = ACTIONS(7864), + [sym__dim_keyword] = ACTIONS(7864), + [sym__redim_keyword] = ACTIONS(7864), + [aux_sym_get_accessor_token1] = ACTIONS(7864), + [aux_sym_set_accessor_token1] = ACTIONS(7864), + [anon_sym_COMMA] = ACTIONS(10779), + [aux_sym_const_declaration_token1] = ACTIONS(7864), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(7864), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7864), + [aux_sym_visibility_token1] = ACTIONS(7864), + [aux_sym_visibility_token2] = ACTIONS(7864), + [aux_sym_elseif_fragment_token1] = ACTIONS(7864), + [aux_sym_else_fragment_token1] = ACTIONS(7864), + [aux_sym_select_statement_token1] = ACTIONS(7864), + [aux_sym__for_header_token1] = ACTIONS(7864), + [aux_sym_do_statement_token1] = ACTIONS(7864), + [aux_sym_do_condition_token1] = ACTIONS(7864), + [aux_sym_with_statement_token1] = ACTIONS(7864), + [aux_sym_exit_statement_token1] = ACTIONS(7864), + [sym_end_statement] = ACTIONS(7866), + [aux_sym_on_goto_statement_token1] = ACTIONS(7864), + [aux_sym_on_goto_statement_token2] = ACTIONS(7864), + [aux_sym_on_error_statement_token2] = ACTIONS(7864), + [sym__ambiguous_redim_statement] = ACTIONS(7866), + [aux_sym_erase_statement_token1] = ACTIONS(7864), + [aux_sym_open_statement_token1] = ACTIONS(7864), + [aux_sym_file_mode_token2] = ACTIONS(7864), + [aux_sym_file_access_token2] = ACTIONS(7864), + [aux_sym_file_lock_token2] = ACTIONS(7864), + [aux_sym_print_statement_token1] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7866), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7866), + [aux_sym_close_statement_token1] = ACTIONS(7864), + [aux_sym_put_statement_token1] = ACTIONS(7864), + [aux_sym_unlock_statement_token1] = ACTIONS(7864), + [aux_sym_seek_statement_token1] = ACTIONS(7864), + [sym_reset_statement] = ACTIONS(7864), + [aux_sym_raise_event_statement_token1] = ACTIONS(7864), + [sym_stop_statement] = ACTIONS(7864), + [sym_beep_statement] = ACTIONS(7864), + [aux_sym_unload_statement_token1] = ACTIONS(7864), + [aux_sym_def_type_statement_token1] = ACTIONS(7864), + [aux_sym_def_type_statement_token2] = ACTIONS(7864), + [aux_sym_def_type_statement_token3] = ACTIONS(7864), + [aux_sym_def_type_statement_token4] = ACTIONS(7864), + [aux_sym_def_type_statement_token5] = ACTIONS(7864), + [aux_sym_def_type_statement_token6] = ACTIONS(7864), + [aux_sym_def_type_statement_token7] = ACTIONS(7864), + [aux_sym_def_type_statement_token8] = ACTIONS(7864), + [aux_sym_def_type_statement_token9] = ACTIONS(7864), + [aux_sym_def_type_statement_token10] = ACTIONS(7864), + [aux_sym_def_type_statement_token11] = ACTIONS(7864), + [aux_sym_def_type_statement_token12] = ACTIONS(7864), + [aux_sym_def_type_statement_token13] = ACTIONS(7864), + [aux_sym_def_type_statement_token14] = ACTIONS(7864), + [aux_sym_call_statement_token1] = ACTIONS(7864), + [sym__ambiguous_call_statement] = ACTIONS(7864), + [aux_sym_addressof_expression_token1] = ACTIONS(7864), + [aux_sym_type_of_expression_token1] = ACTIONS(7864), + [aux_sym_unary_expression_token1] = ACTIONS(7864), + [sym_string_literal] = ACTIONS(7866), + [sym_number_literal] = ACTIONS(7866), + [aux_sym_boolean_literal_token1] = ACTIONS(7864), + [aux_sym_boolean_literal_token2] = ACTIONS(7864), + [sym_nothing_literal] = ACTIONS(7864), + [sym_null_literal] = ACTIONS(7864), + [sym_empty_literal] = ACTIONS(7864), + [sym_date_literal] = ACTIONS(7866), + [anon_sym_POUND] = ACTIONS(7864), + }, + [STATE(5746)] = { + [aux_sym_redim_statement_repeat1] = STATE(5746), + [sym_identifier] = ACTIONS(8456), + [sym_newline] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8458), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8456), + [aux_sym_frm_property_statement_token1] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_BANG] = ACTIONS(8458), + [aux_sym__attribute_identifier_token1] = ACTIONS(8456), + [aux_sym_option_statement_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8456), + [aux_sym_preprocessor_const_token1] = ACTIONS(8456), + [sym_static_modifier] = ACTIONS(8456), + [sym__dim_keyword] = ACTIONS(8456), + [sym__redim_keyword] = ACTIONS(8456), + [aux_sym_get_accessor_token1] = ACTIONS(8456), + [aux_sym_set_accessor_token1] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(10781), + [aux_sym_const_declaration_token1] = ACTIONS(8456), + [anon_sym_LPAREN] = ACTIONS(8458), + [aux_sym_as_type_clause_token2] = ACTIONS(8456), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8456), + [aux_sym_visibility_token1] = ACTIONS(8456), + [aux_sym_visibility_token2] = ACTIONS(8456), + [aux_sym_elseif_fragment_token1] = ACTIONS(8456), + [aux_sym_else_fragment_token1] = ACTIONS(8456), + [aux_sym_select_statement_token1] = ACTIONS(8456), + [aux_sym_select_statement_token2] = ACTIONS(8456), + [aux_sym__for_header_token1] = ACTIONS(8456), + [aux_sym_do_statement_token1] = ACTIONS(8456), + [aux_sym_do_condition_token1] = ACTIONS(8456), + [aux_sym_with_statement_token1] = ACTIONS(8456), + [aux_sym_exit_statement_token1] = ACTIONS(8456), + [sym_end_statement] = ACTIONS(8458), + [aux_sym_on_goto_statement_token1] = ACTIONS(8456), + [aux_sym_on_goto_statement_token2] = ACTIONS(8456), + [aux_sym_on_error_statement_token2] = ACTIONS(8456), + [sym__ambiguous_redim_statement] = ACTIONS(8458), + [aux_sym_erase_statement_token1] = ACTIONS(8456), + [aux_sym_open_statement_token1] = ACTIONS(8456), + [aux_sym_file_mode_token2] = ACTIONS(8456), + [aux_sym_file_access_token2] = ACTIONS(8456), + [aux_sym_file_lock_token2] = ACTIONS(8456), + [aux_sym_print_statement_token1] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8458), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8458), + [aux_sym_close_statement_token1] = ACTIONS(8456), + [aux_sym_put_statement_token1] = ACTIONS(8456), + [aux_sym_unlock_statement_token1] = ACTIONS(8456), + [aux_sym_seek_statement_token1] = ACTIONS(8456), + [sym_reset_statement] = ACTIONS(8456), + [aux_sym_raise_event_statement_token1] = ACTIONS(8456), + [sym_stop_statement] = ACTIONS(8456), + [sym_beep_statement] = ACTIONS(8456), + [aux_sym_unload_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token2] = ACTIONS(8456), + [aux_sym_def_type_statement_token3] = ACTIONS(8456), + [aux_sym_def_type_statement_token4] = ACTIONS(8456), + [aux_sym_def_type_statement_token5] = ACTIONS(8456), + [aux_sym_def_type_statement_token6] = ACTIONS(8456), + [aux_sym_def_type_statement_token7] = ACTIONS(8456), + [aux_sym_def_type_statement_token8] = ACTIONS(8456), + [aux_sym_def_type_statement_token9] = ACTIONS(8456), + [aux_sym_def_type_statement_token10] = ACTIONS(8456), + [aux_sym_def_type_statement_token11] = ACTIONS(8456), + [aux_sym_def_type_statement_token12] = ACTIONS(8456), + [aux_sym_def_type_statement_token13] = ACTIONS(8456), + [aux_sym_def_type_statement_token14] = ACTIONS(8456), + [aux_sym_call_statement_token1] = ACTIONS(8456), + [sym__ambiguous_call_statement] = ACTIONS(8456), + [aux_sym_addressof_expression_token1] = ACTIONS(8456), + [aux_sym_type_of_expression_token1] = ACTIONS(8456), + [aux_sym_unary_expression_token1] = ACTIONS(8456), + [sym_string_literal] = ACTIONS(8458), + [sym_number_literal] = ACTIONS(8458), + [aux_sym_boolean_literal_token1] = ACTIONS(8456), + [aux_sym_boolean_literal_token2] = ACTIONS(8456), + [sym_nothing_literal] = ACTIONS(8456), + [sym_null_literal] = ACTIONS(8456), + [sym_empty_literal] = ACTIONS(8456), + [sym_date_literal] = ACTIONS(8458), + [anon_sym_POUND] = ACTIONS(8456), + }, + [STATE(5747)] = { + [aux_sym_def_type_statement_repeat1] = STATE(5756), + [sym_identifier] = ACTIONS(8577), + [sym_newline] = ACTIONS(8579), + [anon_sym_COLON] = ACTIONS(8579), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8577), + [aux_sym_frm_property_statement_token1] = ACTIONS(8577), + [anon_sym_DOT] = ACTIONS(8577), + [anon_sym_BANG] = ACTIONS(8579), + [aux_sym__attribute_identifier_token1] = ACTIONS(8577), + [aux_sym_option_statement_token3] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8577), + [aux_sym_preprocessor_const_token1] = ACTIONS(8577), + [sym_static_modifier] = ACTIONS(8577), + [sym__dim_keyword] = ACTIONS(8577), + [sym__redim_keyword] = ACTIONS(8577), + [aux_sym_get_accessor_token1] = ACTIONS(8577), + [aux_sym_set_accessor_token1] = ACTIONS(8577), + [anon_sym_COMMA] = ACTIONS(10784), + [aux_sym_const_declaration_token1] = ACTIONS(8577), + [anon_sym_LPAREN] = ACTIONS(8579), + [aux_sym_as_type_clause_token2] = ACTIONS(8577), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8577), + [aux_sym_visibility_token1] = ACTIONS(8577), + [aux_sym_visibility_token2] = ACTIONS(8577), + [aux_sym_elseif_fragment_token1] = ACTIONS(8577), + [aux_sym_else_fragment_token1] = ACTIONS(8577), + [aux_sym_select_statement_token1] = ACTIONS(8577), + [aux_sym_select_statement_token2] = ACTIONS(8577), + [aux_sym__for_header_token1] = ACTIONS(8577), + [aux_sym_do_statement_token1] = ACTIONS(8577), + [aux_sym_do_condition_token1] = ACTIONS(8577), + [aux_sym_with_statement_token1] = ACTIONS(8577), + [aux_sym_exit_statement_token1] = ACTIONS(8577), + [sym_end_statement] = ACTIONS(8579), + [aux_sym_on_goto_statement_token1] = ACTIONS(8577), + [aux_sym_on_goto_statement_token2] = ACTIONS(8577), + [aux_sym_on_error_statement_token2] = ACTIONS(8577), + [sym__ambiguous_redim_statement] = ACTIONS(8579), + [aux_sym_erase_statement_token1] = ACTIONS(8577), + [aux_sym_open_statement_token1] = ACTIONS(8577), + [aux_sym_file_mode_token2] = ACTIONS(8577), + [aux_sym_file_access_token2] = ACTIONS(8577), + [aux_sym_file_lock_token2] = ACTIONS(8577), + [aux_sym_print_statement_token1] = ACTIONS(8577), + [anon_sym_PLUS] = ACTIONS(8579), + [anon_sym_DASH] = ACTIONS(8577), + [anon_sym_QMARK] = ACTIONS(8579), + [aux_sym_close_statement_token1] = ACTIONS(8577), + [aux_sym_put_statement_token1] = ACTIONS(8577), + [aux_sym_unlock_statement_token1] = ACTIONS(8577), + [aux_sym_seek_statement_token1] = ACTIONS(8577), + [sym_reset_statement] = ACTIONS(8577), + [aux_sym_raise_event_statement_token1] = ACTIONS(8577), + [sym_stop_statement] = ACTIONS(8577), + [sym_beep_statement] = ACTIONS(8577), + [aux_sym_unload_statement_token1] = ACTIONS(8577), + [aux_sym_def_type_statement_token1] = ACTIONS(8577), + [aux_sym_def_type_statement_token2] = ACTIONS(8577), + [aux_sym_def_type_statement_token3] = ACTIONS(8577), + [aux_sym_def_type_statement_token4] = ACTIONS(8577), + [aux_sym_def_type_statement_token5] = ACTIONS(8577), + [aux_sym_def_type_statement_token6] = ACTIONS(8577), + [aux_sym_def_type_statement_token7] = ACTIONS(8577), + [aux_sym_def_type_statement_token8] = ACTIONS(8577), + [aux_sym_def_type_statement_token9] = ACTIONS(8577), + [aux_sym_def_type_statement_token10] = ACTIONS(8577), + [aux_sym_def_type_statement_token11] = ACTIONS(8577), + [aux_sym_def_type_statement_token12] = ACTIONS(8577), + [aux_sym_def_type_statement_token13] = ACTIONS(8577), + [aux_sym_def_type_statement_token14] = ACTIONS(8577), + [aux_sym_call_statement_token1] = ACTIONS(8577), + [sym__ambiguous_call_statement] = ACTIONS(8577), + [aux_sym_addressof_expression_token1] = ACTIONS(8577), + [aux_sym_type_of_expression_token1] = ACTIONS(8577), + [aux_sym_unary_expression_token1] = ACTIONS(8577), + [sym_string_literal] = ACTIONS(8579), + [sym_number_literal] = ACTIONS(8579), + [aux_sym_boolean_literal_token1] = ACTIONS(8577), + [aux_sym_boolean_literal_token2] = ACTIONS(8577), + [sym_nothing_literal] = ACTIONS(8577), + [sym_null_literal] = ACTIONS(8577), + [sym_empty_literal] = ACTIONS(8577), + [sym_date_literal] = ACTIONS(8579), + [anon_sym_POUND] = ACTIONS(8577), + }, + [STATE(5748)] = { + [aux_sym_close_statement_repeat1] = STATE(5748), + [sym_identifier] = ACTIONS(8443), + [sym_newline] = ACTIONS(8445), + [anon_sym_COLON] = ACTIONS(8445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8443), + [aux_sym_frm_property_statement_token1] = ACTIONS(8443), + [anon_sym_DOT] = ACTIONS(8443), + [anon_sym_BANG] = ACTIONS(8445), + [aux_sym__attribute_identifier_token1] = ACTIONS(8443), + [aux_sym_option_statement_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8443), + [aux_sym_preprocessor_const_token1] = ACTIONS(8443), + [sym_static_modifier] = ACTIONS(8443), + [sym__dim_keyword] = ACTIONS(8443), + [sym__redim_keyword] = ACTIONS(8443), + [aux_sym_get_accessor_token1] = ACTIONS(8443), + [aux_sym_set_accessor_token1] = ACTIONS(8443), + [anon_sym_COMMA] = ACTIONS(10786), + [aux_sym_const_declaration_token1] = ACTIONS(8443), + [anon_sym_LPAREN] = ACTIONS(8445), + [aux_sym_as_type_clause_token2] = ACTIONS(8443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8443), + [aux_sym_visibility_token1] = ACTIONS(8443), + [aux_sym_visibility_token2] = ACTIONS(8443), + [aux_sym_elseif_fragment_token1] = ACTIONS(8443), + [aux_sym_else_fragment_token1] = ACTIONS(8443), + [aux_sym_select_statement_token1] = ACTIONS(8443), + [aux_sym__for_header_token1] = ACTIONS(8443), + [aux_sym_do_statement_token1] = ACTIONS(8443), + [aux_sym_do_condition_token1] = ACTIONS(8443), + [aux_sym_with_statement_token1] = ACTIONS(8443), + [aux_sym_exit_statement_token1] = ACTIONS(8443), + [sym_end_statement] = ACTIONS(8445), + [aux_sym_on_goto_statement_token1] = ACTIONS(8443), + [aux_sym_on_goto_statement_token2] = ACTIONS(8443), + [aux_sym_on_error_statement_token2] = ACTIONS(8443), + [sym__ambiguous_redim_statement] = ACTIONS(8445), + [aux_sym_erase_statement_token1] = ACTIONS(8443), + [aux_sym_open_statement_token1] = ACTIONS(8443), + [aux_sym_file_mode_token2] = ACTIONS(8443), + [aux_sym_file_access_token2] = ACTIONS(8443), + [aux_sym_file_lock_token2] = ACTIONS(8443), + [aux_sym_print_statement_token1] = ACTIONS(8443), + [anon_sym_PLUS] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8443), + [anon_sym_QMARK] = ACTIONS(8445), + [aux_sym_close_statement_token1] = ACTIONS(8443), + [aux_sym_put_statement_token1] = ACTIONS(8443), + [aux_sym_unlock_statement_token1] = ACTIONS(8443), + [aux_sym_seek_statement_token1] = ACTIONS(8443), + [sym_reset_statement] = ACTIONS(8443), + [aux_sym_raise_event_statement_token1] = ACTIONS(8443), + [sym_stop_statement] = ACTIONS(8443), + [sym_beep_statement] = ACTIONS(8443), + [aux_sym_unload_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token2] = ACTIONS(8443), + [aux_sym_def_type_statement_token3] = ACTIONS(8443), + [aux_sym_def_type_statement_token4] = ACTIONS(8443), + [aux_sym_def_type_statement_token5] = ACTIONS(8443), + [aux_sym_def_type_statement_token6] = ACTIONS(8443), + [aux_sym_def_type_statement_token7] = ACTIONS(8443), + [aux_sym_def_type_statement_token8] = ACTIONS(8443), + [aux_sym_def_type_statement_token9] = ACTIONS(8443), + [aux_sym_def_type_statement_token10] = ACTIONS(8443), + [aux_sym_def_type_statement_token11] = ACTIONS(8443), + [aux_sym_def_type_statement_token12] = ACTIONS(8443), + [aux_sym_def_type_statement_token13] = ACTIONS(8443), + [aux_sym_def_type_statement_token14] = ACTIONS(8443), + [aux_sym_call_statement_token1] = ACTIONS(8443), + [sym__ambiguous_call_statement] = ACTIONS(8443), + [aux_sym_addressof_expression_token1] = ACTIONS(8443), + [aux_sym_type_of_expression_token1] = ACTIONS(8443), + [aux_sym_unary_expression_token1] = ACTIONS(8443), + [sym_string_literal] = ACTIONS(8445), + [sym_number_literal] = ACTIONS(8445), + [aux_sym_boolean_literal_token1] = ACTIONS(8443), + [aux_sym_boolean_literal_token2] = ACTIONS(8443), + [sym_nothing_literal] = ACTIONS(8443), + [sym_null_literal] = ACTIONS(8443), + [sym_empty_literal] = ACTIONS(8443), + [sym_date_literal] = ACTIONS(8445), + [anon_sym_POUND] = ACTIONS(8443), + }, + [STATE(5749)] = { + [aux_sym_print_argument_sequence_repeat1] = STATE(5749), + [sym_identifier] = ACTIONS(5841), + [sym_newline] = ACTIONS(5843), + [anon_sym_COLON] = ACTIONS(5843), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5841), + [aux_sym_frm_property_statement_token1] = ACTIONS(5841), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_BANG] = ACTIONS(5843), + [aux_sym__attribute_identifier_token1] = ACTIONS(5841), + [aux_sym_option_statement_token3] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5841), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5841), + [aux_sym_preprocessor_const_token1] = ACTIONS(5841), + [sym_static_modifier] = ACTIONS(5841), + [sym__dim_keyword] = ACTIONS(5841), + [sym__redim_keyword] = ACTIONS(5841), + [aux_sym_get_accessor_token1] = ACTIONS(5841), + [aux_sym_set_accessor_token1] = ACTIONS(5841), + [anon_sym_COMMA] = ACTIONS(10789), + [aux_sym_const_declaration_token1] = ACTIONS(5841), + [anon_sym_LPAREN] = ACTIONS(5843), + [aux_sym_as_type_clause_token2] = ACTIONS(5841), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5841), + [aux_sym_visibility_token1] = ACTIONS(5841), + [aux_sym_visibility_token2] = ACTIONS(5841), + [aux_sym_elseif_fragment_token1] = ACTIONS(5841), + [aux_sym_else_fragment_token1] = ACTIONS(5841), + [aux_sym_select_statement_token1] = ACTIONS(5841), + [aux_sym__for_header_token1] = ACTIONS(5841), + [aux_sym_do_statement_token1] = ACTIONS(5841), + [aux_sym_do_condition_token1] = ACTIONS(5841), + [aux_sym_with_statement_token1] = ACTIONS(5841), + [aux_sym_exit_statement_token1] = ACTIONS(5841), + [sym_end_statement] = ACTIONS(5843), + [aux_sym_on_goto_statement_token1] = ACTIONS(5841), + [aux_sym_on_goto_statement_token2] = ACTIONS(5841), + [aux_sym_on_error_statement_token2] = ACTIONS(5841), + [sym__ambiguous_redim_statement] = ACTIONS(5843), + [aux_sym_erase_statement_token1] = ACTIONS(5841), + [aux_sym_open_statement_token1] = ACTIONS(5841), + [aux_sym_file_mode_token2] = ACTIONS(5841), + [aux_sym_file_access_token2] = ACTIONS(5841), + [aux_sym_file_lock_token2] = ACTIONS(5841), + [aux_sym_print_statement_token1] = ACTIONS(5841), + [anon_sym_PLUS] = ACTIONS(5843), + [anon_sym_DASH] = ACTIONS(5841), + [anon_sym_SEMI] = ACTIONS(10789), + [anon_sym_QMARK] = ACTIONS(5843), + [aux_sym_close_statement_token1] = ACTIONS(5841), + [aux_sym_put_statement_token1] = ACTIONS(5841), + [aux_sym_unlock_statement_token1] = ACTIONS(5841), + [aux_sym_seek_statement_token1] = ACTIONS(5841), + [sym_reset_statement] = ACTIONS(5841), + [aux_sym_raise_event_statement_token1] = ACTIONS(5841), + [sym_stop_statement] = ACTIONS(5841), + [sym_beep_statement] = ACTIONS(5841), + [aux_sym_unload_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token1] = ACTIONS(5841), + [aux_sym_def_type_statement_token2] = ACTIONS(5841), + [aux_sym_def_type_statement_token3] = ACTIONS(5841), + [aux_sym_def_type_statement_token4] = ACTIONS(5841), + [aux_sym_def_type_statement_token5] = ACTIONS(5841), + [aux_sym_def_type_statement_token6] = ACTIONS(5841), + [aux_sym_def_type_statement_token7] = ACTIONS(5841), + [aux_sym_def_type_statement_token8] = ACTIONS(5841), + [aux_sym_def_type_statement_token9] = ACTIONS(5841), + [aux_sym_def_type_statement_token10] = ACTIONS(5841), + [aux_sym_def_type_statement_token11] = ACTIONS(5841), + [aux_sym_def_type_statement_token12] = ACTIONS(5841), + [aux_sym_def_type_statement_token13] = ACTIONS(5841), + [aux_sym_def_type_statement_token14] = ACTIONS(5841), + [aux_sym_call_statement_token1] = ACTIONS(5841), + [sym__ambiguous_call_statement] = ACTIONS(5841), + [aux_sym_addressof_expression_token1] = ACTIONS(5841), + [aux_sym_type_of_expression_token1] = ACTIONS(5841), + [aux_sym_unary_expression_token1] = ACTIONS(5841), + [sym_string_literal] = ACTIONS(5843), + [sym_number_literal] = ACTIONS(5843), + [aux_sym_boolean_literal_token1] = ACTIONS(5841), + [aux_sym_boolean_literal_token2] = ACTIONS(5841), + [sym_nothing_literal] = ACTIONS(5841), + [sym_null_literal] = ACTIONS(5841), + [sym_empty_literal] = ACTIONS(5841), + [sym_date_literal] = ACTIONS(5843), + [anon_sym_POUND] = ACTIONS(5841), + }, + [STATE(5750)] = { + [aux_sym_redim_statement_repeat1] = STATE(5474), + [sym_identifier] = ACTIONS(8368), + [sym_newline] = ACTIONS(8370), + [anon_sym_COLON] = ACTIONS(8370), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8368), + [aux_sym_frm_property_statement_token1] = ACTIONS(8368), + [anon_sym_DOT] = ACTIONS(8368), + [anon_sym_BANG] = ACTIONS(8370), + [aux_sym__attribute_identifier_token1] = ACTIONS(8368), + [aux_sym_option_statement_token3] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8368), + [aux_sym_preprocessor_const_token1] = ACTIONS(8368), + [sym_static_modifier] = ACTIONS(8368), + [sym__dim_keyword] = ACTIONS(8368), + [sym__redim_keyword] = ACTIONS(8368), + [aux_sym_get_accessor_token1] = ACTIONS(8368), + [aux_sym_set_accessor_token1] = ACTIONS(8368), + [anon_sym_COMMA] = ACTIONS(10624), + [aux_sym_const_declaration_token1] = ACTIONS(8368), + [anon_sym_LPAREN] = ACTIONS(8370), + [aux_sym_as_type_clause_token2] = ACTIONS(8368), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8368), + [aux_sym_visibility_token1] = ACTIONS(8368), + [aux_sym_visibility_token2] = ACTIONS(8368), + [aux_sym_elseif_fragment_token1] = ACTIONS(8368), + [aux_sym_else_fragment_token1] = ACTIONS(8368), + [aux_sym_select_statement_token1] = ACTIONS(8368), + [aux_sym__for_header_token1] = ACTIONS(8368), + [aux_sym_do_statement_token1] = ACTIONS(8368), + [aux_sym_do_statement_token2] = ACTIONS(8368), + [aux_sym_do_condition_token1] = ACTIONS(8368), + [aux_sym_with_statement_token1] = ACTIONS(8368), + [aux_sym_exit_statement_token1] = ACTIONS(8368), + [sym_end_statement] = ACTIONS(8370), + [aux_sym_on_goto_statement_token1] = ACTIONS(8368), + [aux_sym_on_goto_statement_token2] = ACTIONS(8368), + [aux_sym_on_error_statement_token2] = ACTIONS(8368), + [sym__ambiguous_redim_statement] = ACTIONS(8370), + [aux_sym_erase_statement_token1] = ACTIONS(8368), + [aux_sym_open_statement_token1] = ACTIONS(8368), + [aux_sym_file_mode_token2] = ACTIONS(8368), + [aux_sym_file_access_token2] = ACTIONS(8368), + [aux_sym_file_lock_token2] = ACTIONS(8368), + [aux_sym_print_statement_token1] = ACTIONS(8368), + [anon_sym_PLUS] = ACTIONS(8370), + [anon_sym_DASH] = ACTIONS(8368), + [anon_sym_QMARK] = ACTIONS(8370), + [aux_sym_close_statement_token1] = ACTIONS(8368), + [aux_sym_put_statement_token1] = ACTIONS(8368), + [aux_sym_unlock_statement_token1] = ACTIONS(8368), + [aux_sym_seek_statement_token1] = ACTIONS(8368), + [sym_reset_statement] = ACTIONS(8368), + [aux_sym_raise_event_statement_token1] = ACTIONS(8368), + [sym_stop_statement] = ACTIONS(8368), + [sym_beep_statement] = ACTIONS(8368), + [aux_sym_unload_statement_token1] = ACTIONS(8368), + [aux_sym_def_type_statement_token1] = ACTIONS(8368), + [aux_sym_def_type_statement_token2] = ACTIONS(8368), + [aux_sym_def_type_statement_token3] = ACTIONS(8368), + [aux_sym_def_type_statement_token4] = ACTIONS(8368), + [aux_sym_def_type_statement_token5] = ACTIONS(8368), + [aux_sym_def_type_statement_token6] = ACTIONS(8368), + [aux_sym_def_type_statement_token7] = ACTIONS(8368), + [aux_sym_def_type_statement_token8] = ACTIONS(8368), + [aux_sym_def_type_statement_token9] = ACTIONS(8368), + [aux_sym_def_type_statement_token10] = ACTIONS(8368), + [aux_sym_def_type_statement_token11] = ACTIONS(8368), + [aux_sym_def_type_statement_token12] = ACTIONS(8368), + [aux_sym_def_type_statement_token13] = ACTIONS(8368), + [aux_sym_def_type_statement_token14] = ACTIONS(8368), + [aux_sym_call_statement_token1] = ACTIONS(8368), + [sym__ambiguous_call_statement] = ACTIONS(8368), + [aux_sym_addressof_expression_token1] = ACTIONS(8368), + [aux_sym_type_of_expression_token1] = ACTIONS(8368), + [aux_sym_unary_expression_token1] = ACTIONS(8368), + [sym_string_literal] = ACTIONS(8370), + [sym_number_literal] = ACTIONS(8370), + [aux_sym_boolean_literal_token1] = ACTIONS(8368), + [aux_sym_boolean_literal_token2] = ACTIONS(8368), + [sym_nothing_literal] = ACTIONS(8368), + [sym_null_literal] = ACTIONS(8368), + [sym_empty_literal] = ACTIONS(8368), + [sym_date_literal] = ACTIONS(8370), + [anon_sym_POUND] = ACTIONS(8368), + }, + [STATE(5751)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5766), + [sym_identifier] = ACTIONS(8565), + [sym_newline] = ACTIONS(8567), + [anon_sym_COLON] = ACTIONS(8567), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8565), + [aux_sym_frm_property_statement_token1] = ACTIONS(8565), + [anon_sym_DOT] = ACTIONS(8565), + [anon_sym_BANG] = ACTIONS(8567), + [aux_sym__attribute_identifier_token1] = ACTIONS(8565), + [aux_sym_option_statement_token3] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8565), + [aux_sym_preprocessor_const_token1] = ACTIONS(8565), + [sym_static_modifier] = ACTIONS(8565), + [sym__dim_keyword] = ACTIONS(8565), + [sym__redim_keyword] = ACTIONS(8565), + [aux_sym_get_accessor_token1] = ACTIONS(8565), + [aux_sym_set_accessor_token1] = ACTIONS(8565), + [anon_sym_COMMA] = ACTIONS(10441), + [aux_sym_const_declaration_token1] = ACTIONS(8565), + [anon_sym_LPAREN] = ACTIONS(8567), + [aux_sym_as_type_clause_token2] = ACTIONS(8565), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8565), + [aux_sym_visibility_token1] = ACTIONS(8565), + [aux_sym_visibility_token2] = ACTIONS(8565), + [aux_sym_elseif_fragment_token1] = ACTIONS(8565), + [aux_sym_else_fragment_token1] = ACTIONS(8565), + [aux_sym_select_statement_token1] = ACTIONS(8565), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8565), + [aux_sym__for_header_token1] = ACTIONS(8565), + [aux_sym_do_statement_token1] = ACTIONS(8565), + [aux_sym_do_condition_token1] = ACTIONS(8565), + [aux_sym_with_statement_token1] = ACTIONS(8565), + [aux_sym_exit_statement_token1] = ACTIONS(8565), + [sym_end_statement] = ACTIONS(8567), + [aux_sym_on_goto_statement_token1] = ACTIONS(8565), + [aux_sym_on_goto_statement_token2] = ACTIONS(8565), + [aux_sym_on_error_statement_token2] = ACTIONS(8565), + [sym__ambiguous_redim_statement] = ACTIONS(8567), + [aux_sym_erase_statement_token1] = ACTIONS(8565), + [aux_sym_open_statement_token1] = ACTIONS(8565), + [aux_sym_file_mode_token2] = ACTIONS(8565), + [aux_sym_file_access_token2] = ACTIONS(8565), + [aux_sym_file_lock_token2] = ACTIONS(8565), + [aux_sym_print_statement_token1] = ACTIONS(8565), + [anon_sym_PLUS] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(8565), + [anon_sym_QMARK] = ACTIONS(8567), + [aux_sym_close_statement_token1] = ACTIONS(8565), + [aux_sym_put_statement_token1] = ACTIONS(8565), + [aux_sym_unlock_statement_token1] = ACTIONS(8565), + [aux_sym_seek_statement_token1] = ACTIONS(8565), + [sym_reset_statement] = ACTIONS(8565), + [aux_sym_raise_event_statement_token1] = ACTIONS(8565), + [sym_stop_statement] = ACTIONS(8565), + [sym_beep_statement] = ACTIONS(8565), + [aux_sym_unload_statement_token1] = ACTIONS(8565), + [aux_sym_def_type_statement_token1] = ACTIONS(8565), + [aux_sym_def_type_statement_token2] = ACTIONS(8565), + [aux_sym_def_type_statement_token3] = ACTIONS(8565), + [aux_sym_def_type_statement_token4] = ACTIONS(8565), + [aux_sym_def_type_statement_token5] = ACTIONS(8565), + [aux_sym_def_type_statement_token6] = ACTIONS(8565), + [aux_sym_def_type_statement_token7] = ACTIONS(8565), + [aux_sym_def_type_statement_token8] = ACTIONS(8565), + [aux_sym_def_type_statement_token9] = ACTIONS(8565), + [aux_sym_def_type_statement_token10] = ACTIONS(8565), + [aux_sym_def_type_statement_token11] = ACTIONS(8565), + [aux_sym_def_type_statement_token12] = ACTIONS(8565), + [aux_sym_def_type_statement_token13] = ACTIONS(8565), + [aux_sym_def_type_statement_token14] = ACTIONS(8565), + [aux_sym_call_statement_token1] = ACTIONS(8565), + [sym__ambiguous_call_statement] = ACTIONS(8565), + [aux_sym_addressof_expression_token1] = ACTIONS(8565), + [aux_sym_type_of_expression_token1] = ACTIONS(8565), + [aux_sym_unary_expression_token1] = ACTIONS(8565), + [sym_string_literal] = ACTIONS(8567), + [sym_number_literal] = ACTIONS(8567), + [aux_sym_boolean_literal_token1] = ACTIONS(8565), + [aux_sym_boolean_literal_token2] = ACTIONS(8565), + [sym_nothing_literal] = ACTIONS(8565), + [sym_null_literal] = ACTIONS(8565), + [sym_empty_literal] = ACTIONS(8565), + [sym_date_literal] = ACTIONS(8567), + [anon_sym_POUND] = ACTIONS(8565), + }, + [STATE(5752)] = { + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(7951), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(5753)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5768), + [sym_identifier] = ACTIONS(8569), + [sym_newline] = ACTIONS(8571), + [anon_sym_COLON] = ACTIONS(8571), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8569), + [aux_sym_frm_property_statement_token1] = ACTIONS(8569), + [anon_sym_DOT] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(8571), + [aux_sym__attribute_identifier_token1] = ACTIONS(8569), + [aux_sym_option_statement_token3] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8569), + [aux_sym_preprocessor_const_token1] = ACTIONS(8569), + [sym_static_modifier] = ACTIONS(8569), + [sym__dim_keyword] = ACTIONS(8569), + [sym__redim_keyword] = ACTIONS(8569), + [aux_sym_get_accessor_token1] = ACTIONS(8569), + [aux_sym_set_accessor_token1] = ACTIONS(8569), + [anon_sym_COMMA] = ACTIONS(10441), + [aux_sym_const_declaration_token1] = ACTIONS(8569), + [anon_sym_LPAREN] = ACTIONS(8571), + [aux_sym_as_type_clause_token2] = ACTIONS(8569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8569), + [aux_sym_visibility_token1] = ACTIONS(8569), + [aux_sym_visibility_token2] = ACTIONS(8569), + [aux_sym_elseif_fragment_token1] = ACTIONS(8569), + [aux_sym_else_fragment_token1] = ACTIONS(8569), + [aux_sym_select_statement_token1] = ACTIONS(8569), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8569), + [aux_sym__for_header_token1] = ACTIONS(8569), + [aux_sym_do_statement_token1] = ACTIONS(8569), + [aux_sym_do_condition_token1] = ACTIONS(8569), + [aux_sym_with_statement_token1] = ACTIONS(8569), + [aux_sym_exit_statement_token1] = ACTIONS(8569), + [sym_end_statement] = ACTIONS(8571), + [aux_sym_on_goto_statement_token1] = ACTIONS(8569), + [aux_sym_on_goto_statement_token2] = ACTIONS(8569), + [aux_sym_on_error_statement_token2] = ACTIONS(8569), + [sym__ambiguous_redim_statement] = ACTIONS(8571), + [aux_sym_erase_statement_token1] = ACTIONS(8569), + [aux_sym_open_statement_token1] = ACTIONS(8569), + [aux_sym_file_mode_token2] = ACTIONS(8569), + [aux_sym_file_access_token2] = ACTIONS(8569), + [aux_sym_file_lock_token2] = ACTIONS(8569), + [aux_sym_print_statement_token1] = ACTIONS(8569), + [anon_sym_PLUS] = ACTIONS(8571), + [anon_sym_DASH] = ACTIONS(8569), + [anon_sym_QMARK] = ACTIONS(8571), + [aux_sym_close_statement_token1] = ACTIONS(8569), + [aux_sym_put_statement_token1] = ACTIONS(8569), + [aux_sym_unlock_statement_token1] = ACTIONS(8569), + [aux_sym_seek_statement_token1] = ACTIONS(8569), + [sym_reset_statement] = ACTIONS(8569), + [aux_sym_raise_event_statement_token1] = ACTIONS(8569), + [sym_stop_statement] = ACTIONS(8569), + [sym_beep_statement] = ACTIONS(8569), + [aux_sym_unload_statement_token1] = ACTIONS(8569), + [aux_sym_def_type_statement_token1] = ACTIONS(8569), + [aux_sym_def_type_statement_token2] = ACTIONS(8569), + [aux_sym_def_type_statement_token3] = ACTIONS(8569), + [aux_sym_def_type_statement_token4] = ACTIONS(8569), + [aux_sym_def_type_statement_token5] = ACTIONS(8569), + [aux_sym_def_type_statement_token6] = ACTIONS(8569), + [aux_sym_def_type_statement_token7] = ACTIONS(8569), + [aux_sym_def_type_statement_token8] = ACTIONS(8569), + [aux_sym_def_type_statement_token9] = ACTIONS(8569), + [aux_sym_def_type_statement_token10] = ACTIONS(8569), + [aux_sym_def_type_statement_token11] = ACTIONS(8569), + [aux_sym_def_type_statement_token12] = ACTIONS(8569), + [aux_sym_def_type_statement_token13] = ACTIONS(8569), + [aux_sym_def_type_statement_token14] = ACTIONS(8569), + [aux_sym_call_statement_token1] = ACTIONS(8569), + [sym__ambiguous_call_statement] = ACTIONS(8569), + [aux_sym_addressof_expression_token1] = ACTIONS(8569), + [aux_sym_type_of_expression_token1] = ACTIONS(8569), + [aux_sym_unary_expression_token1] = ACTIONS(8569), + [sym_string_literal] = ACTIONS(8571), + [sym_number_literal] = ACTIONS(8571), + [aux_sym_boolean_literal_token1] = ACTIONS(8569), + [aux_sym_boolean_literal_token2] = ACTIONS(8569), + [sym_nothing_literal] = ACTIONS(8569), + [sym_null_literal] = ACTIONS(8569), + [sym_empty_literal] = ACTIONS(8569), + [sym_date_literal] = ACTIONS(8571), + [anon_sym_POUND] = ACTIONS(8569), + }, + [STATE(5754)] = { + [aux_sym_const_declaration_repeat1] = STATE(5769), + [sym_identifier] = ACTIONS(8573), + [sym_newline] = ACTIONS(8575), + [anon_sym_COLON] = ACTIONS(8575), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8573), + [aux_sym_frm_property_statement_token1] = ACTIONS(8573), + [anon_sym_DOT] = ACTIONS(8573), + [anon_sym_BANG] = ACTIONS(8575), + [aux_sym__attribute_identifier_token1] = ACTIONS(8573), + [aux_sym_option_statement_token3] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8573), + [aux_sym_preprocessor_const_token1] = ACTIONS(8573), + [sym_static_modifier] = ACTIONS(8573), + [sym__dim_keyword] = ACTIONS(8573), + [sym__redim_keyword] = ACTIONS(8573), + [aux_sym_get_accessor_token1] = ACTIONS(8573), + [aux_sym_set_accessor_token1] = ACTIONS(8573), + [anon_sym_COMMA] = ACTIONS(10443), + [aux_sym_const_declaration_token1] = ACTIONS(8573), + [anon_sym_LPAREN] = ACTIONS(8575), + [aux_sym_as_type_clause_token2] = ACTIONS(8573), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8573), + [aux_sym_visibility_token1] = ACTIONS(8573), + [aux_sym_visibility_token2] = ACTIONS(8573), + [aux_sym_elseif_fragment_token1] = ACTIONS(8573), + [aux_sym_else_fragment_token1] = ACTIONS(8573), + [aux_sym_select_statement_token1] = ACTIONS(8573), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8573), + [aux_sym__for_header_token1] = ACTIONS(8573), + [aux_sym_do_statement_token1] = ACTIONS(8573), + [aux_sym_do_condition_token1] = ACTIONS(8573), + [aux_sym_with_statement_token1] = ACTIONS(8573), + [aux_sym_exit_statement_token1] = ACTIONS(8573), + [sym_end_statement] = ACTIONS(8575), + [aux_sym_on_goto_statement_token1] = ACTIONS(8573), + [aux_sym_on_goto_statement_token2] = ACTIONS(8573), + [aux_sym_on_error_statement_token2] = ACTIONS(8573), + [sym__ambiguous_redim_statement] = ACTIONS(8575), + [aux_sym_erase_statement_token1] = ACTIONS(8573), + [aux_sym_open_statement_token1] = ACTIONS(8573), + [aux_sym_file_mode_token2] = ACTIONS(8573), + [aux_sym_file_access_token2] = ACTIONS(8573), + [aux_sym_file_lock_token2] = ACTIONS(8573), + [aux_sym_print_statement_token1] = ACTIONS(8573), + [anon_sym_PLUS] = ACTIONS(8575), + [anon_sym_DASH] = ACTIONS(8573), + [anon_sym_QMARK] = ACTIONS(8575), + [aux_sym_close_statement_token1] = ACTIONS(8573), + [aux_sym_put_statement_token1] = ACTIONS(8573), + [aux_sym_unlock_statement_token1] = ACTIONS(8573), + [aux_sym_seek_statement_token1] = ACTIONS(8573), + [sym_reset_statement] = ACTIONS(8573), + [aux_sym_raise_event_statement_token1] = ACTIONS(8573), + [sym_stop_statement] = ACTIONS(8573), + [sym_beep_statement] = ACTIONS(8573), + [aux_sym_unload_statement_token1] = ACTIONS(8573), + [aux_sym_def_type_statement_token1] = ACTIONS(8573), + [aux_sym_def_type_statement_token2] = ACTIONS(8573), + [aux_sym_def_type_statement_token3] = ACTIONS(8573), + [aux_sym_def_type_statement_token4] = ACTIONS(8573), + [aux_sym_def_type_statement_token5] = ACTIONS(8573), + [aux_sym_def_type_statement_token6] = ACTIONS(8573), + [aux_sym_def_type_statement_token7] = ACTIONS(8573), + [aux_sym_def_type_statement_token8] = ACTIONS(8573), + [aux_sym_def_type_statement_token9] = ACTIONS(8573), + [aux_sym_def_type_statement_token10] = ACTIONS(8573), + [aux_sym_def_type_statement_token11] = ACTIONS(8573), + [aux_sym_def_type_statement_token12] = ACTIONS(8573), + [aux_sym_def_type_statement_token13] = ACTIONS(8573), + [aux_sym_def_type_statement_token14] = ACTIONS(8573), + [aux_sym_call_statement_token1] = ACTIONS(8573), + [sym__ambiguous_call_statement] = ACTIONS(8573), + [aux_sym_addressof_expression_token1] = ACTIONS(8573), + [aux_sym_type_of_expression_token1] = ACTIONS(8573), + [aux_sym_unary_expression_token1] = ACTIONS(8573), + [sym_string_literal] = ACTIONS(8575), + [sym_number_literal] = ACTIONS(8575), + [aux_sym_boolean_literal_token1] = ACTIONS(8573), + [aux_sym_boolean_literal_token2] = ACTIONS(8573), + [sym_nothing_literal] = ACTIONS(8573), + [sym_null_literal] = ACTIONS(8573), + [sym_empty_literal] = ACTIONS(8573), + [sym_date_literal] = ACTIONS(8575), + [anon_sym_POUND] = ACTIONS(8573), + }, + [STATE(5755)] = { + [aux_sym_def_type_statement_repeat1] = STATE(5770), + [sym_identifier] = ACTIONS(8577), + [sym_newline] = ACTIONS(8579), + [anon_sym_COLON] = ACTIONS(8579), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8577), + [aux_sym_frm_property_statement_token1] = ACTIONS(8577), + [anon_sym_DOT] = ACTIONS(8577), + [anon_sym_BANG] = ACTIONS(8579), + [aux_sym__attribute_identifier_token1] = ACTIONS(8577), + [aux_sym_option_statement_token3] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8577), + [aux_sym_preprocessor_const_token1] = ACTIONS(8577), + [sym_static_modifier] = ACTIONS(8577), + [sym__dim_keyword] = ACTIONS(8577), + [sym__redim_keyword] = ACTIONS(8577), + [aux_sym_get_accessor_token1] = ACTIONS(8577), + [aux_sym_set_accessor_token1] = ACTIONS(8577), + [anon_sym_COMMA] = ACTIONS(10792), + [aux_sym_const_declaration_token1] = ACTIONS(8577), + [anon_sym_LPAREN] = ACTIONS(8579), + [aux_sym_as_type_clause_token2] = ACTIONS(8577), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8577), + [aux_sym_visibility_token1] = ACTIONS(8577), + [aux_sym_visibility_token2] = ACTIONS(8577), + [aux_sym_elseif_fragment_token1] = ACTIONS(8577), + [aux_sym_else_fragment_token1] = ACTIONS(8577), + [aux_sym_select_statement_token1] = ACTIONS(8577), + [aux_sym__for_header_token1] = ACTIONS(8577), + [aux_sym_do_statement_token1] = ACTIONS(8577), + [aux_sym_do_condition_token1] = ACTIONS(8577), + [aux_sym_while_statement_token1] = ACTIONS(8577), + [aux_sym_with_statement_token1] = ACTIONS(8577), + [aux_sym_exit_statement_token1] = ACTIONS(8577), + [sym_end_statement] = ACTIONS(8579), + [aux_sym_on_goto_statement_token1] = ACTIONS(8577), + [aux_sym_on_goto_statement_token2] = ACTIONS(8577), + [aux_sym_on_error_statement_token2] = ACTIONS(8577), + [sym__ambiguous_redim_statement] = ACTIONS(8579), + [aux_sym_erase_statement_token1] = ACTIONS(8577), + [aux_sym_open_statement_token1] = ACTIONS(8577), + [aux_sym_file_mode_token2] = ACTIONS(8577), + [aux_sym_file_access_token2] = ACTIONS(8577), + [aux_sym_file_lock_token2] = ACTIONS(8577), + [aux_sym_print_statement_token1] = ACTIONS(8577), + [anon_sym_PLUS] = ACTIONS(8579), + [anon_sym_DASH] = ACTIONS(8577), + [anon_sym_QMARK] = ACTIONS(8579), + [aux_sym_close_statement_token1] = ACTIONS(8577), + [aux_sym_put_statement_token1] = ACTIONS(8577), + [aux_sym_unlock_statement_token1] = ACTIONS(8577), + [aux_sym_seek_statement_token1] = ACTIONS(8577), + [sym_reset_statement] = ACTIONS(8577), + [aux_sym_raise_event_statement_token1] = ACTIONS(8577), + [sym_stop_statement] = ACTIONS(8577), + [sym_beep_statement] = ACTIONS(8577), + [aux_sym_unload_statement_token1] = ACTIONS(8577), + [aux_sym_def_type_statement_token1] = ACTIONS(8577), + [aux_sym_def_type_statement_token2] = ACTIONS(8577), + [aux_sym_def_type_statement_token3] = ACTIONS(8577), + [aux_sym_def_type_statement_token4] = ACTIONS(8577), + [aux_sym_def_type_statement_token5] = ACTIONS(8577), + [aux_sym_def_type_statement_token6] = ACTIONS(8577), + [aux_sym_def_type_statement_token7] = ACTIONS(8577), + [aux_sym_def_type_statement_token8] = ACTIONS(8577), + [aux_sym_def_type_statement_token9] = ACTIONS(8577), + [aux_sym_def_type_statement_token10] = ACTIONS(8577), + [aux_sym_def_type_statement_token11] = ACTIONS(8577), + [aux_sym_def_type_statement_token12] = ACTIONS(8577), + [aux_sym_def_type_statement_token13] = ACTIONS(8577), + [aux_sym_def_type_statement_token14] = ACTIONS(8577), + [aux_sym_call_statement_token1] = ACTIONS(8577), + [sym__ambiguous_call_statement] = ACTIONS(8577), + [aux_sym_addressof_expression_token1] = ACTIONS(8577), + [aux_sym_type_of_expression_token1] = ACTIONS(8577), + [aux_sym_unary_expression_token1] = ACTIONS(8577), + [sym_string_literal] = ACTIONS(8579), + [sym_number_literal] = ACTIONS(8579), + [aux_sym_boolean_literal_token1] = ACTIONS(8577), + [aux_sym_boolean_literal_token2] = ACTIONS(8577), + [sym_nothing_literal] = ACTIONS(8577), + [sym_null_literal] = ACTIONS(8577), + [sym_empty_literal] = ACTIONS(8577), + [sym_date_literal] = ACTIONS(8579), + [anon_sym_POUND] = ACTIONS(8577), + }, + [STATE(5756)] = { + [aux_sym_def_type_statement_repeat1] = STATE(5775), + [sym_identifier] = ACTIONS(8603), + [sym_newline] = ACTIONS(8605), + [anon_sym_COLON] = ACTIONS(8605), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8603), + [aux_sym_frm_property_statement_token1] = ACTIONS(8603), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_BANG] = ACTIONS(8605), + [aux_sym__attribute_identifier_token1] = ACTIONS(8603), + [aux_sym_option_statement_token3] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8603), + [aux_sym_preprocessor_const_token1] = ACTIONS(8603), + [sym_static_modifier] = ACTIONS(8603), + [sym__dim_keyword] = ACTIONS(8603), + [sym__redim_keyword] = ACTIONS(8603), + [aux_sym_get_accessor_token1] = ACTIONS(8603), + [aux_sym_set_accessor_token1] = ACTIONS(8603), + [anon_sym_COMMA] = ACTIONS(10784), + [aux_sym_const_declaration_token1] = ACTIONS(8603), + [anon_sym_LPAREN] = ACTIONS(8605), + [aux_sym_as_type_clause_token2] = ACTIONS(8603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8603), + [aux_sym_visibility_token1] = ACTIONS(8603), + [aux_sym_visibility_token2] = ACTIONS(8603), + [aux_sym_elseif_fragment_token1] = ACTIONS(8603), + [aux_sym_else_fragment_token1] = ACTIONS(8603), + [aux_sym_select_statement_token1] = ACTIONS(8603), + [aux_sym_select_statement_token2] = ACTIONS(8603), + [aux_sym__for_header_token1] = ACTIONS(8603), + [aux_sym_do_statement_token1] = ACTIONS(8603), + [aux_sym_do_condition_token1] = ACTIONS(8603), + [aux_sym_with_statement_token1] = ACTIONS(8603), + [aux_sym_exit_statement_token1] = ACTIONS(8603), + [sym_end_statement] = ACTIONS(8605), + [aux_sym_on_goto_statement_token1] = ACTIONS(8603), + [aux_sym_on_goto_statement_token2] = ACTIONS(8603), + [aux_sym_on_error_statement_token2] = ACTIONS(8603), + [sym__ambiguous_redim_statement] = ACTIONS(8605), + [aux_sym_erase_statement_token1] = ACTIONS(8603), + [aux_sym_open_statement_token1] = ACTIONS(8603), + [aux_sym_file_mode_token2] = ACTIONS(8603), + [aux_sym_file_access_token2] = ACTIONS(8603), + [aux_sym_file_lock_token2] = ACTIONS(8603), + [aux_sym_print_statement_token1] = ACTIONS(8603), + [anon_sym_PLUS] = ACTIONS(8605), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_QMARK] = ACTIONS(8605), + [aux_sym_close_statement_token1] = ACTIONS(8603), + [aux_sym_put_statement_token1] = ACTIONS(8603), + [aux_sym_unlock_statement_token1] = ACTIONS(8603), + [aux_sym_seek_statement_token1] = ACTIONS(8603), + [sym_reset_statement] = ACTIONS(8603), + [aux_sym_raise_event_statement_token1] = ACTIONS(8603), + [sym_stop_statement] = ACTIONS(8603), + [sym_beep_statement] = ACTIONS(8603), + [aux_sym_unload_statement_token1] = ACTIONS(8603), + [aux_sym_def_type_statement_token1] = ACTIONS(8603), + [aux_sym_def_type_statement_token2] = ACTIONS(8603), + [aux_sym_def_type_statement_token3] = ACTIONS(8603), + [aux_sym_def_type_statement_token4] = ACTIONS(8603), + [aux_sym_def_type_statement_token5] = ACTIONS(8603), + [aux_sym_def_type_statement_token6] = ACTIONS(8603), + [aux_sym_def_type_statement_token7] = ACTIONS(8603), + [aux_sym_def_type_statement_token8] = ACTIONS(8603), + [aux_sym_def_type_statement_token9] = ACTIONS(8603), + [aux_sym_def_type_statement_token10] = ACTIONS(8603), + [aux_sym_def_type_statement_token11] = ACTIONS(8603), + [aux_sym_def_type_statement_token12] = ACTIONS(8603), + [aux_sym_def_type_statement_token13] = ACTIONS(8603), + [aux_sym_def_type_statement_token14] = ACTIONS(8603), + [aux_sym_call_statement_token1] = ACTIONS(8603), + [sym__ambiguous_call_statement] = ACTIONS(8603), + [aux_sym_addressof_expression_token1] = ACTIONS(8603), + [aux_sym_type_of_expression_token1] = ACTIONS(8603), + [aux_sym_unary_expression_token1] = ACTIONS(8603), + [sym_string_literal] = ACTIONS(8605), + [sym_number_literal] = ACTIONS(8605), + [aux_sym_boolean_literal_token1] = ACTIONS(8603), + [aux_sym_boolean_literal_token2] = ACTIONS(8603), + [sym_nothing_literal] = ACTIONS(8603), + [sym_null_literal] = ACTIONS(8603), + [sym_empty_literal] = ACTIONS(8603), + [sym_date_literal] = ACTIONS(8605), + [anon_sym_POUND] = ACTIONS(8603), + }, + [STATE(5757)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5791), + [sym_identifier] = ACTIONS(8583), + [sym_newline] = ACTIONS(8585), + [anon_sym_COLON] = ACTIONS(8585), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8583), + [aux_sym_frm_property_statement_token1] = ACTIONS(8583), + [anon_sym_DOT] = ACTIONS(8583), + [anon_sym_BANG] = ACTIONS(8585), + [aux_sym__attribute_identifier_token1] = ACTIONS(8583), + [aux_sym_option_statement_token3] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8583), + [aux_sym_preprocessor_const_token1] = ACTIONS(8583), + [sym_static_modifier] = ACTIONS(8583), + [sym__dim_keyword] = ACTIONS(8583), + [sym__redim_keyword] = ACTIONS(8583), + [aux_sym_get_accessor_token1] = ACTIONS(8583), + [aux_sym_set_accessor_token1] = ACTIONS(8583), + [anon_sym_COMMA] = ACTIONS(10441), + [aux_sym_const_declaration_token1] = ACTIONS(8583), + [anon_sym_LPAREN] = ACTIONS(8585), + [aux_sym_as_type_clause_token2] = ACTIONS(8583), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8583), + [aux_sym_visibility_token1] = ACTIONS(8583), + [aux_sym_visibility_token2] = ACTIONS(8583), + [aux_sym_elseif_fragment_token1] = ACTIONS(8583), + [aux_sym_else_fragment_token1] = ACTIONS(8583), + [aux_sym_select_statement_token1] = ACTIONS(8583), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8583), + [aux_sym__for_header_token1] = ACTIONS(8583), + [aux_sym_do_statement_token1] = ACTIONS(8583), + [aux_sym_do_condition_token1] = ACTIONS(8583), + [aux_sym_with_statement_token1] = ACTIONS(8583), + [aux_sym_exit_statement_token1] = ACTIONS(8583), + [sym_end_statement] = ACTIONS(8585), + [aux_sym_on_goto_statement_token1] = ACTIONS(8583), + [aux_sym_on_goto_statement_token2] = ACTIONS(8583), + [aux_sym_on_error_statement_token2] = ACTIONS(8583), + [sym__ambiguous_redim_statement] = ACTIONS(8585), + [aux_sym_erase_statement_token1] = ACTIONS(8583), + [aux_sym_open_statement_token1] = ACTIONS(8583), + [aux_sym_file_mode_token2] = ACTIONS(8583), + [aux_sym_file_access_token2] = ACTIONS(8583), + [aux_sym_file_lock_token2] = ACTIONS(8583), + [aux_sym_print_statement_token1] = ACTIONS(8583), + [anon_sym_PLUS] = ACTIONS(8585), + [anon_sym_DASH] = ACTIONS(8583), + [anon_sym_QMARK] = ACTIONS(8585), + [aux_sym_close_statement_token1] = ACTIONS(8583), + [aux_sym_put_statement_token1] = ACTIONS(8583), + [aux_sym_unlock_statement_token1] = ACTIONS(8583), + [aux_sym_seek_statement_token1] = ACTIONS(8583), + [sym_reset_statement] = ACTIONS(8583), + [aux_sym_raise_event_statement_token1] = ACTIONS(8583), + [sym_stop_statement] = ACTIONS(8583), + [sym_beep_statement] = ACTIONS(8583), + [aux_sym_unload_statement_token1] = ACTIONS(8583), + [aux_sym_def_type_statement_token1] = ACTIONS(8583), + [aux_sym_def_type_statement_token2] = ACTIONS(8583), + [aux_sym_def_type_statement_token3] = ACTIONS(8583), + [aux_sym_def_type_statement_token4] = ACTIONS(8583), + [aux_sym_def_type_statement_token5] = ACTIONS(8583), + [aux_sym_def_type_statement_token6] = ACTIONS(8583), + [aux_sym_def_type_statement_token7] = ACTIONS(8583), + [aux_sym_def_type_statement_token8] = ACTIONS(8583), + [aux_sym_def_type_statement_token9] = ACTIONS(8583), + [aux_sym_def_type_statement_token10] = ACTIONS(8583), + [aux_sym_def_type_statement_token11] = ACTIONS(8583), + [aux_sym_def_type_statement_token12] = ACTIONS(8583), + [aux_sym_def_type_statement_token13] = ACTIONS(8583), + [aux_sym_def_type_statement_token14] = ACTIONS(8583), + [aux_sym_call_statement_token1] = ACTIONS(8583), + [sym__ambiguous_call_statement] = ACTIONS(8583), + [aux_sym_addressof_expression_token1] = ACTIONS(8583), + [aux_sym_type_of_expression_token1] = ACTIONS(8583), + [aux_sym_unary_expression_token1] = ACTIONS(8583), + [sym_string_literal] = ACTIONS(8585), + [sym_number_literal] = ACTIONS(8585), + [aux_sym_boolean_literal_token1] = ACTIONS(8583), + [aux_sym_boolean_literal_token2] = ACTIONS(8583), + [sym_nothing_literal] = ACTIONS(8583), + [sym_null_literal] = ACTIONS(8583), + [sym_empty_literal] = ACTIONS(8583), + [sym_date_literal] = ACTIONS(8585), + [anon_sym_POUND] = ACTIONS(8583), + }, + [STATE(5758)] = { + [sym_do_condition] = STATE(6679), + [sym_identifier] = ACTIONS(8188), + [sym_newline] = ACTIONS(8190), + [anon_sym_COLON] = ACTIONS(8190), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8188), + [aux_sym_frm_property_statement_token1] = ACTIONS(8188), + [anon_sym_DOT] = ACTIONS(8188), + [anon_sym_BANG] = ACTIONS(8190), + [aux_sym__attribute_identifier_token1] = ACTIONS(8188), + [aux_sym_option_statement_token3] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8188), + [aux_sym_preprocessor_const_token1] = ACTIONS(8188), + [sym_static_modifier] = ACTIONS(8188), + [sym__dim_keyword] = ACTIONS(8188), + [sym__redim_keyword] = ACTIONS(8188), + [aux_sym_get_accessor_token1] = ACTIONS(8188), + [aux_sym_set_accessor_token1] = ACTIONS(8188), + [aux_sym_const_declaration_token1] = ACTIONS(8188), + [anon_sym_LPAREN] = ACTIONS(8190), + [aux_sym_as_type_clause_token2] = ACTIONS(8188), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8188), + [aux_sym_visibility_token1] = ACTIONS(8188), + [aux_sym_visibility_token2] = ACTIONS(8188), + [aux_sym_elseif_fragment_token1] = ACTIONS(8188), + [aux_sym_else_fragment_token1] = ACTIONS(8188), + [aux_sym_select_statement_token1] = ACTIONS(8188), + [aux_sym_select_statement_token2] = ACTIONS(8188), + [aux_sym__for_header_token1] = ACTIONS(8188), + [aux_sym_do_statement_token1] = ACTIONS(8188), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8188), + [aux_sym_exit_statement_token1] = ACTIONS(8188), + [sym_end_statement] = ACTIONS(8190), + [aux_sym_on_goto_statement_token1] = ACTIONS(8188), + [aux_sym_on_goto_statement_token2] = ACTIONS(8188), + [aux_sym_on_error_statement_token2] = ACTIONS(8188), + [sym__ambiguous_redim_statement] = ACTIONS(8190), + [aux_sym_erase_statement_token1] = ACTIONS(8188), + [aux_sym_open_statement_token1] = ACTIONS(8188), + [aux_sym_file_mode_token2] = ACTIONS(8188), + [aux_sym_file_access_token2] = ACTIONS(8188), + [aux_sym_file_lock_token2] = ACTIONS(8188), + [aux_sym_print_statement_token1] = ACTIONS(8188), + [anon_sym_PLUS] = ACTIONS(8190), + [anon_sym_DASH] = ACTIONS(8188), + [anon_sym_QMARK] = ACTIONS(8190), + [aux_sym_close_statement_token1] = ACTIONS(8188), + [aux_sym_put_statement_token1] = ACTIONS(8188), + [aux_sym_unlock_statement_token1] = ACTIONS(8188), + [aux_sym_seek_statement_token1] = ACTIONS(8188), + [sym_reset_statement] = ACTIONS(8188), + [aux_sym_raise_event_statement_token1] = ACTIONS(8188), + [sym_stop_statement] = ACTIONS(8188), + [sym_beep_statement] = ACTIONS(8188), + [aux_sym_unload_statement_token1] = ACTIONS(8188), + [aux_sym_def_type_statement_token1] = ACTIONS(8188), + [aux_sym_def_type_statement_token2] = ACTIONS(8188), + [aux_sym_def_type_statement_token3] = ACTIONS(8188), + [aux_sym_def_type_statement_token4] = ACTIONS(8188), + [aux_sym_def_type_statement_token5] = ACTIONS(8188), + [aux_sym_def_type_statement_token6] = ACTIONS(8188), + [aux_sym_def_type_statement_token7] = ACTIONS(8188), + [aux_sym_def_type_statement_token8] = ACTIONS(8188), + [aux_sym_def_type_statement_token9] = ACTIONS(8188), + [aux_sym_def_type_statement_token10] = ACTIONS(8188), + [aux_sym_def_type_statement_token11] = ACTIONS(8188), + [aux_sym_def_type_statement_token12] = ACTIONS(8188), + [aux_sym_def_type_statement_token13] = ACTIONS(8188), + [aux_sym_def_type_statement_token14] = ACTIONS(8188), + [aux_sym_call_statement_token1] = ACTIONS(8188), + [sym__ambiguous_call_statement] = ACTIONS(8188), + [aux_sym_addressof_expression_token1] = ACTIONS(8188), + [aux_sym_type_of_expression_token1] = ACTIONS(8188), + [aux_sym_unary_expression_token1] = ACTIONS(8188), + [sym_string_literal] = ACTIONS(8190), + [sym_number_literal] = ACTIONS(8190), + [aux_sym_boolean_literal_token1] = ACTIONS(8188), + [aux_sym_boolean_literal_token2] = ACTIONS(8188), + [sym_nothing_literal] = ACTIONS(8188), + [sym_null_literal] = ACTIONS(8188), + [sym_empty_literal] = ACTIONS(8188), + [sym_date_literal] = ACTIONS(8190), + [anon_sym_POUND] = ACTIONS(8188), + }, + [STATE(5759)] = { + [aux_sym_erase_statement_repeat1] = STATE(5198), + [sym_identifier] = ACTIONS(8397), + [sym_newline] = ACTIONS(8399), + [anon_sym_COLON] = ACTIONS(8399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8397), + [aux_sym_frm_property_statement_token1] = ACTIONS(8397), + [anon_sym_DOT] = ACTIONS(8397), + [anon_sym_BANG] = ACTIONS(8399), + [aux_sym__attribute_identifier_token1] = ACTIONS(8397), + [aux_sym_option_statement_token3] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8397), + [aux_sym_preprocessor_const_token1] = ACTIONS(8397), + [sym_static_modifier] = ACTIONS(8397), + [sym__dim_keyword] = ACTIONS(8397), + [sym__redim_keyword] = ACTIONS(8397), + [aux_sym_get_accessor_token1] = ACTIONS(8397), + [aux_sym_set_accessor_token1] = ACTIONS(8397), + [anon_sym_COMMA] = ACTIONS(10479), + [aux_sym_const_declaration_token1] = ACTIONS(8397), + [anon_sym_LPAREN] = ACTIONS(8399), + [aux_sym_as_type_clause_token2] = ACTIONS(8397), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8397), + [aux_sym_visibility_token1] = ACTIONS(8397), + [aux_sym_visibility_token2] = ACTIONS(8397), + [aux_sym_elseif_fragment_token1] = ACTIONS(8397), + [aux_sym_else_fragment_token1] = ACTIONS(8397), + [aux_sym_select_statement_token1] = ACTIONS(8397), + [aux_sym__for_header_token1] = ACTIONS(8397), + [aux_sym_do_statement_token1] = ACTIONS(8397), + [aux_sym_do_statement_token2] = ACTIONS(8397), + [aux_sym_do_condition_token1] = ACTIONS(8397), + [aux_sym_with_statement_token1] = ACTIONS(8397), + [aux_sym_exit_statement_token1] = ACTIONS(8397), + [sym_end_statement] = ACTIONS(8399), + [aux_sym_on_goto_statement_token1] = ACTIONS(8397), + [aux_sym_on_goto_statement_token2] = ACTIONS(8397), + [aux_sym_on_error_statement_token2] = ACTIONS(8397), + [sym__ambiguous_redim_statement] = ACTIONS(8399), + [aux_sym_erase_statement_token1] = ACTIONS(8397), + [aux_sym_open_statement_token1] = ACTIONS(8397), + [aux_sym_file_mode_token2] = ACTIONS(8397), + [aux_sym_file_access_token2] = ACTIONS(8397), + [aux_sym_file_lock_token2] = ACTIONS(8397), + [aux_sym_print_statement_token1] = ACTIONS(8397), + [anon_sym_PLUS] = ACTIONS(8399), + [anon_sym_DASH] = ACTIONS(8397), + [anon_sym_QMARK] = ACTIONS(8399), + [aux_sym_close_statement_token1] = ACTIONS(8397), + [aux_sym_put_statement_token1] = ACTIONS(8397), + [aux_sym_unlock_statement_token1] = ACTIONS(8397), + [aux_sym_seek_statement_token1] = ACTIONS(8397), + [sym_reset_statement] = ACTIONS(8397), + [aux_sym_raise_event_statement_token1] = ACTIONS(8397), + [sym_stop_statement] = ACTIONS(8397), + [sym_beep_statement] = ACTIONS(8397), + [aux_sym_unload_statement_token1] = ACTIONS(8397), + [aux_sym_def_type_statement_token1] = ACTIONS(8397), + [aux_sym_def_type_statement_token2] = ACTIONS(8397), + [aux_sym_def_type_statement_token3] = ACTIONS(8397), + [aux_sym_def_type_statement_token4] = ACTIONS(8397), + [aux_sym_def_type_statement_token5] = ACTIONS(8397), + [aux_sym_def_type_statement_token6] = ACTIONS(8397), + [aux_sym_def_type_statement_token7] = ACTIONS(8397), + [aux_sym_def_type_statement_token8] = ACTIONS(8397), + [aux_sym_def_type_statement_token9] = ACTIONS(8397), + [aux_sym_def_type_statement_token10] = ACTIONS(8397), + [aux_sym_def_type_statement_token11] = ACTIONS(8397), + [aux_sym_def_type_statement_token12] = ACTIONS(8397), + [aux_sym_def_type_statement_token13] = ACTIONS(8397), + [aux_sym_def_type_statement_token14] = ACTIONS(8397), + [aux_sym_call_statement_token1] = ACTIONS(8397), + [sym__ambiguous_call_statement] = ACTIONS(8397), + [aux_sym_addressof_expression_token1] = ACTIONS(8397), + [aux_sym_type_of_expression_token1] = ACTIONS(8397), + [aux_sym_unary_expression_token1] = ACTIONS(8397), + [sym_string_literal] = ACTIONS(8399), + [sym_number_literal] = ACTIONS(8399), + [aux_sym_boolean_literal_token1] = ACTIONS(8397), + [aux_sym_boolean_literal_token2] = ACTIONS(8397), + [sym_nothing_literal] = ACTIONS(8397), + [sym_null_literal] = ACTIONS(8397), + [sym_empty_literal] = ACTIONS(8397), + [sym_date_literal] = ACTIONS(8399), + [anon_sym_POUND] = ACTIONS(8397), + }, + [STATE(5760)] = { + [sym_do_condition] = STATE(6680), + [sym_identifier] = ACTIONS(8192), + [sym_newline] = ACTIONS(8194), + [anon_sym_COLON] = ACTIONS(8194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8192), + [aux_sym_frm_property_statement_token1] = ACTIONS(8192), + [anon_sym_DOT] = ACTIONS(8192), + [anon_sym_BANG] = ACTIONS(8194), + [aux_sym__attribute_identifier_token1] = ACTIONS(8192), + [aux_sym_option_statement_token3] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8192), + [aux_sym_preprocessor_const_token1] = ACTIONS(8192), + [sym_static_modifier] = ACTIONS(8192), + [sym__dim_keyword] = ACTIONS(8192), + [sym__redim_keyword] = ACTIONS(8192), + [aux_sym_get_accessor_token1] = ACTIONS(8192), + [aux_sym_set_accessor_token1] = ACTIONS(8192), + [aux_sym_const_declaration_token1] = ACTIONS(8192), + [anon_sym_LPAREN] = ACTIONS(8194), + [aux_sym_as_type_clause_token2] = ACTIONS(8192), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8192), + [aux_sym_visibility_token1] = ACTIONS(8192), + [aux_sym_visibility_token2] = ACTIONS(8192), + [aux_sym_elseif_fragment_token1] = ACTIONS(8192), + [aux_sym_else_fragment_token1] = ACTIONS(8192), + [aux_sym_select_statement_token1] = ACTIONS(8192), + [aux_sym_select_statement_token2] = ACTIONS(8192), + [aux_sym__for_header_token1] = ACTIONS(8192), + [aux_sym_do_statement_token1] = ACTIONS(8192), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8192), + [aux_sym_exit_statement_token1] = ACTIONS(8192), + [sym_end_statement] = ACTIONS(8194), + [aux_sym_on_goto_statement_token1] = ACTIONS(8192), + [aux_sym_on_goto_statement_token2] = ACTIONS(8192), + [aux_sym_on_error_statement_token2] = ACTIONS(8192), + [sym__ambiguous_redim_statement] = ACTIONS(8194), + [aux_sym_erase_statement_token1] = ACTIONS(8192), + [aux_sym_open_statement_token1] = ACTIONS(8192), + [aux_sym_file_mode_token2] = ACTIONS(8192), + [aux_sym_file_access_token2] = ACTIONS(8192), + [aux_sym_file_lock_token2] = ACTIONS(8192), + [aux_sym_print_statement_token1] = ACTIONS(8192), + [anon_sym_PLUS] = ACTIONS(8194), + [anon_sym_DASH] = ACTIONS(8192), + [anon_sym_QMARK] = ACTIONS(8194), + [aux_sym_close_statement_token1] = ACTIONS(8192), + [aux_sym_put_statement_token1] = ACTIONS(8192), + [aux_sym_unlock_statement_token1] = ACTIONS(8192), + [aux_sym_seek_statement_token1] = ACTIONS(8192), + [sym_reset_statement] = ACTIONS(8192), + [aux_sym_raise_event_statement_token1] = ACTIONS(8192), + [sym_stop_statement] = ACTIONS(8192), + [sym_beep_statement] = ACTIONS(8192), + [aux_sym_unload_statement_token1] = ACTIONS(8192), + [aux_sym_def_type_statement_token1] = ACTIONS(8192), + [aux_sym_def_type_statement_token2] = ACTIONS(8192), + [aux_sym_def_type_statement_token3] = ACTIONS(8192), + [aux_sym_def_type_statement_token4] = ACTIONS(8192), + [aux_sym_def_type_statement_token5] = ACTIONS(8192), + [aux_sym_def_type_statement_token6] = ACTIONS(8192), + [aux_sym_def_type_statement_token7] = ACTIONS(8192), + [aux_sym_def_type_statement_token8] = ACTIONS(8192), + [aux_sym_def_type_statement_token9] = ACTIONS(8192), + [aux_sym_def_type_statement_token10] = ACTIONS(8192), + [aux_sym_def_type_statement_token11] = ACTIONS(8192), + [aux_sym_def_type_statement_token12] = ACTIONS(8192), + [aux_sym_def_type_statement_token13] = ACTIONS(8192), + [aux_sym_def_type_statement_token14] = ACTIONS(8192), + [aux_sym_call_statement_token1] = ACTIONS(8192), + [sym__ambiguous_call_statement] = ACTIONS(8192), + [aux_sym_addressof_expression_token1] = ACTIONS(8192), + [aux_sym_type_of_expression_token1] = ACTIONS(8192), + [aux_sym_unary_expression_token1] = ACTIONS(8192), + [sym_string_literal] = ACTIONS(8194), + [sym_number_literal] = ACTIONS(8194), + [aux_sym_boolean_literal_token1] = ACTIONS(8192), + [aux_sym_boolean_literal_token2] = ACTIONS(8192), + [sym_nothing_literal] = ACTIONS(8192), + [sym_null_literal] = ACTIONS(8192), + [sym_empty_literal] = ACTIONS(8192), + [sym_date_literal] = ACTIONS(8194), + [anon_sym_POUND] = ACTIONS(8192), + }, + [STATE(5761)] = { + [aux_sym_erase_statement_repeat1] = STATE(5329), + [sym_identifier] = ACTIONS(8397), + [sym_newline] = ACTIONS(8399), + [anon_sym_COLON] = ACTIONS(8399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8397), + [aux_sym_frm_property_statement_token1] = ACTIONS(8397), + [anon_sym_DOT] = ACTIONS(8397), + [anon_sym_BANG] = ACTIONS(8399), + [aux_sym__attribute_identifier_token1] = ACTIONS(8397), + [aux_sym_option_statement_token3] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8397), + [aux_sym_preprocessor_const_token1] = ACTIONS(8397), + [sym_static_modifier] = ACTIONS(8397), + [sym__dim_keyword] = ACTIONS(8397), + [sym__redim_keyword] = ACTIONS(8397), + [aux_sym_get_accessor_token1] = ACTIONS(8397), + [aux_sym_set_accessor_token1] = ACTIONS(8397), + [anon_sym_COMMA] = ACTIONS(10556), + [aux_sym_const_declaration_token1] = ACTIONS(8397), + [anon_sym_LPAREN] = ACTIONS(8399), + [aux_sym_as_type_clause_token2] = ACTIONS(8397), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8397), + [aux_sym_visibility_token1] = ACTIONS(8397), + [aux_sym_visibility_token2] = ACTIONS(8397), + [aux_sym_elseif_fragment_token1] = ACTIONS(8397), + [aux_sym_else_fragment_token1] = ACTIONS(8397), + [aux_sym_select_statement_token1] = ACTIONS(8397), + [aux_sym__for_header_token1] = ACTIONS(8397), + [aux_sym_do_statement_token1] = ACTIONS(8397), + [aux_sym_do_condition_token1] = ACTIONS(8397), + [aux_sym_with_statement_token1] = ACTIONS(8397), + [aux_sym_exit_statement_token1] = ACTIONS(8397), + [sym_end_statement] = ACTIONS(8399), + [aux_sym_on_goto_statement_token1] = ACTIONS(8397), + [aux_sym_on_goto_statement_token2] = ACTIONS(8397), + [aux_sym_on_error_statement_token2] = ACTIONS(8397), + [sym__ambiguous_redim_statement] = ACTIONS(8399), + [aux_sym_erase_statement_token1] = ACTIONS(8397), + [aux_sym_open_statement_token1] = ACTIONS(8397), + [aux_sym_file_mode_token2] = ACTIONS(8397), + [aux_sym_file_access_token2] = ACTIONS(8397), + [aux_sym_file_lock_token2] = ACTIONS(8397), + [aux_sym_print_statement_token1] = ACTIONS(8397), + [anon_sym_PLUS] = ACTIONS(8399), + [anon_sym_DASH] = ACTIONS(8397), + [anon_sym_QMARK] = ACTIONS(8399), + [aux_sym_close_statement_token1] = ACTIONS(8397), + [aux_sym_put_statement_token1] = ACTIONS(8397), + [aux_sym_unlock_statement_token1] = ACTIONS(8397), + [aux_sym_seek_statement_token1] = ACTIONS(8397), + [sym_reset_statement] = ACTIONS(8397), + [aux_sym_raise_event_statement_token1] = ACTIONS(8397), + [sym_stop_statement] = ACTIONS(8397), + [sym_beep_statement] = ACTIONS(8397), + [aux_sym_unload_statement_token1] = ACTIONS(8397), + [aux_sym_def_type_statement_token1] = ACTIONS(8397), + [aux_sym_def_type_statement_token2] = ACTIONS(8397), + [aux_sym_def_type_statement_token3] = ACTIONS(8397), + [aux_sym_def_type_statement_token4] = ACTIONS(8397), + [aux_sym_def_type_statement_token5] = ACTIONS(8397), + [aux_sym_def_type_statement_token6] = ACTIONS(8397), + [aux_sym_def_type_statement_token7] = ACTIONS(8397), + [aux_sym_def_type_statement_token8] = ACTIONS(8397), + [aux_sym_def_type_statement_token9] = ACTIONS(8397), + [aux_sym_def_type_statement_token10] = ACTIONS(8397), + [aux_sym_def_type_statement_token11] = ACTIONS(8397), + [aux_sym_def_type_statement_token12] = ACTIONS(8397), + [aux_sym_def_type_statement_token13] = ACTIONS(8397), + [aux_sym_def_type_statement_token14] = ACTIONS(8397), + [aux_sym_call_statement_token1] = ACTIONS(8397), + [sym__ambiguous_call_statement] = ACTIONS(8397), + [aux_sym_addressof_expression_token1] = ACTIONS(8397), + [aux_sym_type_of_expression_token1] = ACTIONS(8397), + [aux_sym_unary_expression_token1] = ACTIONS(8397), + [sym_string_literal] = ACTIONS(8399), + [sym_number_literal] = ACTIONS(8399), + [aux_sym_boolean_literal_token1] = ACTIONS(8397), + [aux_sym_boolean_literal_token2] = ACTIONS(8397), + [sym_nothing_literal] = ACTIONS(8397), + [sym_null_literal] = ACTIONS(8397), + [sym_empty_literal] = ACTIONS(8397), + [sym_date_literal] = ACTIONS(8399), + [anon_sym_POUND] = ACTIONS(8397), + }, + [STATE(5762)] = { + [sym_initializer] = STATE(6473), + [sym_identifier] = ACTIONS(7710), + [sym_newline] = ACTIONS(7712), + [anon_sym_COLON] = ACTIONS(7712), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7710), + [aux_sym_frm_property_statement_token1] = ACTIONS(7710), + [anon_sym_EQ] = ACTIONS(10124), + [anon_sym_DOT] = ACTIONS(7710), + [anon_sym_BANG] = ACTIONS(7712), + [aux_sym__attribute_identifier_token1] = ACTIONS(7710), + [aux_sym_option_statement_token3] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7710), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7710), + [aux_sym_preprocessor_const_token1] = ACTIONS(7710), + [sym_static_modifier] = ACTIONS(7710), + [sym__dim_keyword] = ACTIONS(7710), + [sym__redim_keyword] = ACTIONS(7710), + [aux_sym_get_accessor_token1] = ACTIONS(7710), + [aux_sym_set_accessor_token1] = ACTIONS(7710), + [anon_sym_COMMA] = ACTIONS(7712), + [aux_sym_const_declaration_token1] = ACTIONS(7710), + [anon_sym_LPAREN] = ACTIONS(7712), + [aux_sym_as_type_clause_token2] = ACTIONS(7710), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7710), + [aux_sym_visibility_token1] = ACTIONS(7710), + [aux_sym_visibility_token2] = ACTIONS(7710), + [aux_sym_elseif_fragment_token1] = ACTIONS(7710), + [aux_sym_else_fragment_token1] = ACTIONS(7710), + [aux_sym_select_statement_token1] = ACTIONS(7710), + [aux_sym__for_header_token1] = ACTIONS(7710), + [aux_sym_do_statement_token1] = ACTIONS(7710), + [aux_sym_do_condition_token1] = ACTIONS(7710), + [aux_sym_with_statement_token1] = ACTIONS(7710), + [aux_sym_exit_statement_token1] = ACTIONS(7710), + [sym_end_statement] = ACTIONS(7712), + [aux_sym_on_goto_statement_token1] = ACTIONS(7710), + [aux_sym_on_goto_statement_token2] = ACTIONS(7710), + [aux_sym_on_error_statement_token2] = ACTIONS(7710), + [sym__ambiguous_redim_statement] = ACTIONS(7712), + [aux_sym_erase_statement_token1] = ACTIONS(7710), + [aux_sym_open_statement_token1] = ACTIONS(7710), + [aux_sym_file_mode_token2] = ACTIONS(7710), + [aux_sym_file_access_token2] = ACTIONS(7710), + [aux_sym_file_lock_token2] = ACTIONS(7710), + [aux_sym_print_statement_token1] = ACTIONS(7710), + [anon_sym_PLUS] = ACTIONS(7712), + [anon_sym_DASH] = ACTIONS(7710), + [anon_sym_QMARK] = ACTIONS(7712), + [aux_sym_close_statement_token1] = ACTIONS(7710), + [aux_sym_put_statement_token1] = ACTIONS(7710), + [aux_sym_unlock_statement_token1] = ACTIONS(7710), + [aux_sym_seek_statement_token1] = ACTIONS(7710), + [sym_reset_statement] = ACTIONS(7710), + [aux_sym_raise_event_statement_token1] = ACTIONS(7710), + [sym_stop_statement] = ACTIONS(7710), + [sym_beep_statement] = ACTIONS(7710), + [aux_sym_unload_statement_token1] = ACTIONS(7710), + [aux_sym_def_type_statement_token1] = ACTIONS(7710), + [aux_sym_def_type_statement_token2] = ACTIONS(7710), + [aux_sym_def_type_statement_token3] = ACTIONS(7710), + [aux_sym_def_type_statement_token4] = ACTIONS(7710), + [aux_sym_def_type_statement_token5] = ACTIONS(7710), + [aux_sym_def_type_statement_token6] = ACTIONS(7710), + [aux_sym_def_type_statement_token7] = ACTIONS(7710), + [aux_sym_def_type_statement_token8] = ACTIONS(7710), + [aux_sym_def_type_statement_token9] = ACTIONS(7710), + [aux_sym_def_type_statement_token10] = ACTIONS(7710), + [aux_sym_def_type_statement_token11] = ACTIONS(7710), + [aux_sym_def_type_statement_token12] = ACTIONS(7710), + [aux_sym_def_type_statement_token13] = ACTIONS(7710), + [aux_sym_def_type_statement_token14] = ACTIONS(7710), + [aux_sym_call_statement_token1] = ACTIONS(7710), + [sym__ambiguous_call_statement] = ACTIONS(7710), + [aux_sym_addressof_expression_token1] = ACTIONS(7710), + [aux_sym_type_of_expression_token1] = ACTIONS(7710), + [aux_sym_unary_expression_token1] = ACTIONS(7710), + [sym_string_literal] = ACTIONS(7712), + [sym_number_literal] = ACTIONS(7712), + [aux_sym_boolean_literal_token1] = ACTIONS(7710), + [aux_sym_boolean_literal_token2] = ACTIONS(7710), + [sym_nothing_literal] = ACTIONS(7710), + [sym_null_literal] = ACTIONS(7710), + [sym_empty_literal] = ACTIONS(7710), + [sym_date_literal] = ACTIONS(7712), + [anon_sym_POUND] = ACTIONS(7710), + }, + [STATE(5763)] = { + [sym_identifier] = ACTIONS(8022), + [sym_newline] = ACTIONS(8024), + [anon_sym_COLON] = ACTIONS(8024), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8022), + [aux_sym_frm_property_statement_token1] = ACTIONS(8022), + [anon_sym_EQ] = ACTIONS(8024), + [anon_sym_DOT] = ACTIONS(8022), + [anon_sym_BANG] = ACTIONS(8024), + [aux_sym__attribute_identifier_token1] = ACTIONS(8022), + [aux_sym_option_statement_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8022), + [aux_sym_preprocessor_const_token1] = ACTIONS(8022), + [sym_static_modifier] = ACTIONS(8022), + [sym__dim_keyword] = ACTIONS(8022), + [sym__redim_keyword] = ACTIONS(8022), + [aux_sym_get_accessor_token1] = ACTIONS(8022), + [aux_sym_set_accessor_token1] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8024), + [aux_sym_const_declaration_token1] = ACTIONS(8022), + [anon_sym_LPAREN] = ACTIONS(8024), + [aux_sym_as_type_clause_token1] = ACTIONS(8022), + [aux_sym_as_type_clause_token2] = ACTIONS(8022), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8022), + [aux_sym_visibility_token1] = ACTIONS(8022), + [aux_sym_visibility_token2] = ACTIONS(8022), + [aux_sym_elseif_fragment_token1] = ACTIONS(8022), + [aux_sym_else_fragment_token1] = ACTIONS(8022), + [aux_sym_select_statement_token1] = ACTIONS(8022), + [aux_sym__for_header_token1] = ACTIONS(8022), + [aux_sym_do_statement_token1] = ACTIONS(8022), + [aux_sym_do_condition_token1] = ACTIONS(8022), + [aux_sym_with_statement_token1] = ACTIONS(8022), + [aux_sym_exit_statement_token1] = ACTIONS(8022), + [sym_end_statement] = ACTIONS(8024), + [aux_sym_on_goto_statement_token1] = ACTIONS(8022), + [aux_sym_on_goto_statement_token2] = ACTIONS(8022), + [aux_sym_on_error_statement_token2] = ACTIONS(8022), + [sym__ambiguous_redim_statement] = ACTIONS(8024), + [aux_sym_erase_statement_token1] = ACTIONS(8022), + [aux_sym_open_statement_token1] = ACTIONS(8022), + [aux_sym_file_mode_token2] = ACTIONS(8022), + [aux_sym_file_access_token2] = ACTIONS(8022), + [aux_sym_file_lock_token2] = ACTIONS(8022), + [aux_sym_print_statement_token1] = ACTIONS(8022), + [anon_sym_PLUS] = ACTIONS(8024), + [anon_sym_DASH] = ACTIONS(8022), + [anon_sym_QMARK] = ACTIONS(8024), + [aux_sym_close_statement_token1] = ACTIONS(8022), + [aux_sym_put_statement_token1] = ACTIONS(8022), + [aux_sym_unlock_statement_token1] = ACTIONS(8022), + [aux_sym_seek_statement_token1] = ACTIONS(8022), + [sym_reset_statement] = ACTIONS(8022), + [aux_sym_raise_event_statement_token1] = ACTIONS(8022), + [sym_stop_statement] = ACTIONS(8022), + [sym_beep_statement] = ACTIONS(8022), + [aux_sym_unload_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token2] = ACTIONS(8022), + [aux_sym_def_type_statement_token3] = ACTIONS(8022), + [aux_sym_def_type_statement_token4] = ACTIONS(8022), + [aux_sym_def_type_statement_token5] = ACTIONS(8022), + [aux_sym_def_type_statement_token6] = ACTIONS(8022), + [aux_sym_def_type_statement_token7] = ACTIONS(8022), + [aux_sym_def_type_statement_token8] = ACTIONS(8022), + [aux_sym_def_type_statement_token9] = ACTIONS(8022), + [aux_sym_def_type_statement_token10] = ACTIONS(8022), + [aux_sym_def_type_statement_token11] = ACTIONS(8022), + [aux_sym_def_type_statement_token12] = ACTIONS(8022), + [aux_sym_def_type_statement_token13] = ACTIONS(8022), + [aux_sym_def_type_statement_token14] = ACTIONS(8022), + [aux_sym_call_statement_token1] = ACTIONS(8022), + [sym__ambiguous_call_statement] = ACTIONS(8022), + [aux_sym_addressof_expression_token1] = ACTIONS(8022), + [aux_sym_type_of_expression_token1] = ACTIONS(8022), + [aux_sym_unary_expression_token1] = ACTIONS(8022), + [sym_string_literal] = ACTIONS(8024), + [sym_number_literal] = ACTIONS(8024), + [aux_sym_boolean_literal_token1] = ACTIONS(8022), + [aux_sym_boolean_literal_token2] = ACTIONS(8022), + [sym_nothing_literal] = ACTIONS(8022), + [sym_null_literal] = ACTIONS(8022), + [sym_empty_literal] = ACTIONS(8022), + [sym_date_literal] = ACTIONS(8024), + [anon_sym_POUND] = ACTIONS(8022), + }, + [STATE(5764)] = { + [sym_identifier] = ACTIONS(8587), + [sym_newline] = ACTIONS(8589), + [anon_sym_COLON] = ACTIONS(8589), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8587), + [aux_sym_frm_property_statement_token1] = ACTIONS(8587), + [anon_sym_DOT] = ACTIONS(8587), + [anon_sym_BANG] = ACTIONS(8589), + [aux_sym__attribute_identifier_token1] = ACTIONS(8587), + [aux_sym_option_statement_token3] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8587), + [aux_sym_preprocessor_const_token1] = ACTIONS(8587), + [sym_static_modifier] = ACTIONS(8587), + [sym__dim_keyword] = ACTIONS(8587), + [sym__redim_keyword] = ACTIONS(8587), + [aux_sym_get_accessor_token1] = ACTIONS(8587), + [aux_sym_set_accessor_token1] = ACTIONS(8587), + [anon_sym_COMMA] = ACTIONS(8589), + [aux_sym_const_declaration_token1] = ACTIONS(8587), + [anon_sym_LPAREN] = ACTIONS(8589), + [aux_sym_as_type_clause_token2] = ACTIONS(8587), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8587), + [aux_sym_visibility_token1] = ACTIONS(8587), + [aux_sym_visibility_token2] = ACTIONS(8587), + [aux_sym_elseif_fragment_token1] = ACTIONS(8587), + [aux_sym_else_fragment_token1] = ACTIONS(8587), + [aux_sym_select_statement_token1] = ACTIONS(8587), + [aux_sym__for_header_token1] = ACTIONS(8587), + [aux_sym_do_statement_token1] = ACTIONS(8587), + [aux_sym_do_statement_token2] = ACTIONS(8587), + [aux_sym_do_condition_token1] = ACTIONS(8587), + [aux_sym_with_statement_token1] = ACTIONS(8587), + [aux_sym_exit_statement_token1] = ACTIONS(8587), + [sym_end_statement] = ACTIONS(8589), + [aux_sym_on_goto_statement_token1] = ACTIONS(8587), + [aux_sym_on_goto_statement_token2] = ACTIONS(8587), + [aux_sym_on_error_statement_token2] = ACTIONS(8587), + [sym__ambiguous_redim_statement] = ACTIONS(8589), + [aux_sym_erase_statement_token1] = ACTIONS(8587), + [aux_sym_open_statement_token1] = ACTIONS(8587), + [aux_sym_file_mode_token2] = ACTIONS(8587), + [aux_sym_file_access_token2] = ACTIONS(8587), + [aux_sym_file_lock_token2] = ACTIONS(8587), + [aux_sym_print_statement_token1] = ACTIONS(8587), + [anon_sym_PLUS] = ACTIONS(8589), + [anon_sym_DASH] = ACTIONS(8587), + [anon_sym_SEMI] = ACTIONS(8589), + [anon_sym_QMARK] = ACTIONS(8589), + [aux_sym_close_statement_token1] = ACTIONS(8587), + [aux_sym_put_statement_token1] = ACTIONS(8587), + [aux_sym_unlock_statement_token1] = ACTIONS(8587), + [aux_sym_seek_statement_token1] = ACTIONS(8587), + [sym_reset_statement] = ACTIONS(8587), + [aux_sym_raise_event_statement_token1] = ACTIONS(8587), + [sym_stop_statement] = ACTIONS(8587), + [sym_beep_statement] = ACTIONS(8587), + [aux_sym_unload_statement_token1] = ACTIONS(8587), + [aux_sym_def_type_statement_token1] = ACTIONS(8587), + [aux_sym_def_type_statement_token2] = ACTIONS(8587), + [aux_sym_def_type_statement_token3] = ACTIONS(8587), + [aux_sym_def_type_statement_token4] = ACTIONS(8587), + [aux_sym_def_type_statement_token5] = ACTIONS(8587), + [aux_sym_def_type_statement_token6] = ACTIONS(8587), + [aux_sym_def_type_statement_token7] = ACTIONS(8587), + [aux_sym_def_type_statement_token8] = ACTIONS(8587), + [aux_sym_def_type_statement_token9] = ACTIONS(8587), + [aux_sym_def_type_statement_token10] = ACTIONS(8587), + [aux_sym_def_type_statement_token11] = ACTIONS(8587), + [aux_sym_def_type_statement_token12] = ACTIONS(8587), + [aux_sym_def_type_statement_token13] = ACTIONS(8587), + [aux_sym_def_type_statement_token14] = ACTIONS(8587), + [aux_sym_call_statement_token1] = ACTIONS(8587), + [sym__ambiguous_call_statement] = ACTIONS(8587), + [aux_sym_addressof_expression_token1] = ACTIONS(8587), + [aux_sym_type_of_expression_token1] = ACTIONS(8587), + [aux_sym_unary_expression_token1] = ACTIONS(8587), + [sym_string_literal] = ACTIONS(8589), + [sym_number_literal] = ACTIONS(8589), + [aux_sym_boolean_literal_token1] = ACTIONS(8587), + [aux_sym_boolean_literal_token2] = ACTIONS(8587), + [sym_nothing_literal] = ACTIONS(8587), + [sym_null_literal] = ACTIONS(8587), + [sym_empty_literal] = ACTIONS(8587), + [sym_date_literal] = ACTIONS(8589), + [anon_sym_POUND] = ACTIONS(8587), + }, + [STATE(5765)] = { + [sym_do_condition] = STATE(6684), + [sym_identifier] = ACTIONS(8203), + [sym_newline] = ACTIONS(8205), + [anon_sym_COLON] = ACTIONS(8205), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8203), + [aux_sym_frm_property_statement_token1] = ACTIONS(8203), + [anon_sym_DOT] = ACTIONS(8203), + [anon_sym_BANG] = ACTIONS(8205), + [aux_sym__attribute_identifier_token1] = ACTIONS(8203), + [aux_sym_option_statement_token3] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8203), + [aux_sym_preprocessor_const_token1] = ACTIONS(8203), + [sym_static_modifier] = ACTIONS(8203), + [sym__dim_keyword] = ACTIONS(8203), + [sym__redim_keyword] = ACTIONS(8203), + [aux_sym_get_accessor_token1] = ACTIONS(8203), + [aux_sym_set_accessor_token1] = ACTIONS(8203), + [aux_sym_const_declaration_token1] = ACTIONS(8203), + [anon_sym_LPAREN] = ACTIONS(8205), + [aux_sym_as_type_clause_token2] = ACTIONS(8203), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8203), + [aux_sym_visibility_token1] = ACTIONS(8203), + [aux_sym_visibility_token2] = ACTIONS(8203), + [aux_sym_elseif_fragment_token1] = ACTIONS(8203), + [aux_sym_else_fragment_token1] = ACTIONS(8203), + [aux_sym_select_statement_token1] = ACTIONS(8203), + [aux_sym_select_statement_token2] = ACTIONS(8203), + [aux_sym__for_header_token1] = ACTIONS(8203), + [aux_sym_do_statement_token1] = ACTIONS(8203), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8203), + [aux_sym_exit_statement_token1] = ACTIONS(8203), + [sym_end_statement] = ACTIONS(8205), + [aux_sym_on_goto_statement_token1] = ACTIONS(8203), + [aux_sym_on_goto_statement_token2] = ACTIONS(8203), + [aux_sym_on_error_statement_token2] = ACTIONS(8203), + [sym__ambiguous_redim_statement] = ACTIONS(8205), + [aux_sym_erase_statement_token1] = ACTIONS(8203), + [aux_sym_open_statement_token1] = ACTIONS(8203), + [aux_sym_file_mode_token2] = ACTIONS(8203), + [aux_sym_file_access_token2] = ACTIONS(8203), + [aux_sym_file_lock_token2] = ACTIONS(8203), + [aux_sym_print_statement_token1] = ACTIONS(8203), + [anon_sym_PLUS] = ACTIONS(8205), + [anon_sym_DASH] = ACTIONS(8203), + [anon_sym_QMARK] = ACTIONS(8205), + [aux_sym_close_statement_token1] = ACTIONS(8203), + [aux_sym_put_statement_token1] = ACTIONS(8203), + [aux_sym_unlock_statement_token1] = ACTIONS(8203), + [aux_sym_seek_statement_token1] = ACTIONS(8203), + [sym_reset_statement] = ACTIONS(8203), + [aux_sym_raise_event_statement_token1] = ACTIONS(8203), + [sym_stop_statement] = ACTIONS(8203), + [sym_beep_statement] = ACTIONS(8203), + [aux_sym_unload_statement_token1] = ACTIONS(8203), + [aux_sym_def_type_statement_token1] = ACTIONS(8203), + [aux_sym_def_type_statement_token2] = ACTIONS(8203), + [aux_sym_def_type_statement_token3] = ACTIONS(8203), + [aux_sym_def_type_statement_token4] = ACTIONS(8203), + [aux_sym_def_type_statement_token5] = ACTIONS(8203), + [aux_sym_def_type_statement_token6] = ACTIONS(8203), + [aux_sym_def_type_statement_token7] = ACTIONS(8203), + [aux_sym_def_type_statement_token8] = ACTIONS(8203), + [aux_sym_def_type_statement_token9] = ACTIONS(8203), + [aux_sym_def_type_statement_token10] = ACTIONS(8203), + [aux_sym_def_type_statement_token11] = ACTIONS(8203), + [aux_sym_def_type_statement_token12] = ACTIONS(8203), + [aux_sym_def_type_statement_token13] = ACTIONS(8203), + [aux_sym_def_type_statement_token14] = ACTIONS(8203), + [aux_sym_call_statement_token1] = ACTIONS(8203), + [sym__ambiguous_call_statement] = ACTIONS(8203), + [aux_sym_addressof_expression_token1] = ACTIONS(8203), + [aux_sym_type_of_expression_token1] = ACTIONS(8203), + [aux_sym_unary_expression_token1] = ACTIONS(8203), + [sym_string_literal] = ACTIONS(8205), + [sym_number_literal] = ACTIONS(8205), + [aux_sym_boolean_literal_token1] = ACTIONS(8203), + [aux_sym_boolean_literal_token2] = ACTIONS(8203), + [sym_nothing_literal] = ACTIONS(8203), + [sym_null_literal] = ACTIONS(8203), + [sym_empty_literal] = ACTIONS(8203), + [sym_date_literal] = ACTIONS(8205), + [anon_sym_POUND] = ACTIONS(8203), + }, + [STATE(5766)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5093), + [sym_identifier] = ACTIONS(8591), + [sym_newline] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(8593), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8591), + [aux_sym_frm_property_statement_token1] = ACTIONS(8591), + [anon_sym_DOT] = ACTIONS(8591), + [anon_sym_BANG] = ACTIONS(8593), + [aux_sym__attribute_identifier_token1] = ACTIONS(8591), + [aux_sym_option_statement_token3] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8591), + [aux_sym_preprocessor_const_token1] = ACTIONS(8591), + [sym_static_modifier] = ACTIONS(8591), + [sym__dim_keyword] = ACTIONS(8591), + [sym__redim_keyword] = ACTIONS(8591), + [aux_sym_get_accessor_token1] = ACTIONS(8591), + [aux_sym_set_accessor_token1] = ACTIONS(8591), + [anon_sym_COMMA] = ACTIONS(10441), + [aux_sym_const_declaration_token1] = ACTIONS(8591), + [anon_sym_LPAREN] = ACTIONS(8593), + [aux_sym_as_type_clause_token2] = ACTIONS(8591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8591), + [aux_sym_visibility_token1] = ACTIONS(8591), + [aux_sym_visibility_token2] = ACTIONS(8591), + [aux_sym_elseif_fragment_token1] = ACTIONS(8591), + [aux_sym_else_fragment_token1] = ACTIONS(8591), + [aux_sym_select_statement_token1] = ACTIONS(8591), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8591), + [aux_sym__for_header_token1] = ACTIONS(8591), + [aux_sym_do_statement_token1] = ACTIONS(8591), + [aux_sym_do_condition_token1] = ACTIONS(8591), + [aux_sym_with_statement_token1] = ACTIONS(8591), + [aux_sym_exit_statement_token1] = ACTIONS(8591), + [sym_end_statement] = ACTIONS(8593), + [aux_sym_on_goto_statement_token1] = ACTIONS(8591), + [aux_sym_on_goto_statement_token2] = ACTIONS(8591), + [aux_sym_on_error_statement_token2] = ACTIONS(8591), + [sym__ambiguous_redim_statement] = ACTIONS(8593), + [aux_sym_erase_statement_token1] = ACTIONS(8591), + [aux_sym_open_statement_token1] = ACTIONS(8591), + [aux_sym_file_mode_token2] = ACTIONS(8591), + [aux_sym_file_access_token2] = ACTIONS(8591), + [aux_sym_file_lock_token2] = ACTIONS(8591), + [aux_sym_print_statement_token1] = ACTIONS(8591), + [anon_sym_PLUS] = ACTIONS(8593), + [anon_sym_DASH] = ACTIONS(8591), + [anon_sym_QMARK] = ACTIONS(8593), + [aux_sym_close_statement_token1] = ACTIONS(8591), + [aux_sym_put_statement_token1] = ACTIONS(8591), + [aux_sym_unlock_statement_token1] = ACTIONS(8591), + [aux_sym_seek_statement_token1] = ACTIONS(8591), + [sym_reset_statement] = ACTIONS(8591), + [aux_sym_raise_event_statement_token1] = ACTIONS(8591), + [sym_stop_statement] = ACTIONS(8591), + [sym_beep_statement] = ACTIONS(8591), + [aux_sym_unload_statement_token1] = ACTIONS(8591), + [aux_sym_def_type_statement_token1] = ACTIONS(8591), + [aux_sym_def_type_statement_token2] = ACTIONS(8591), + [aux_sym_def_type_statement_token3] = ACTIONS(8591), + [aux_sym_def_type_statement_token4] = ACTIONS(8591), + [aux_sym_def_type_statement_token5] = ACTIONS(8591), + [aux_sym_def_type_statement_token6] = ACTIONS(8591), + [aux_sym_def_type_statement_token7] = ACTIONS(8591), + [aux_sym_def_type_statement_token8] = ACTIONS(8591), + [aux_sym_def_type_statement_token9] = ACTIONS(8591), + [aux_sym_def_type_statement_token10] = ACTIONS(8591), + [aux_sym_def_type_statement_token11] = ACTIONS(8591), + [aux_sym_def_type_statement_token12] = ACTIONS(8591), + [aux_sym_def_type_statement_token13] = ACTIONS(8591), + [aux_sym_def_type_statement_token14] = ACTIONS(8591), + [aux_sym_call_statement_token1] = ACTIONS(8591), + [sym__ambiguous_call_statement] = ACTIONS(8591), + [aux_sym_addressof_expression_token1] = ACTIONS(8591), + [aux_sym_type_of_expression_token1] = ACTIONS(8591), + [aux_sym_unary_expression_token1] = ACTIONS(8591), + [sym_string_literal] = ACTIONS(8593), + [sym_number_literal] = ACTIONS(8593), + [aux_sym_boolean_literal_token1] = ACTIONS(8591), + [aux_sym_boolean_literal_token2] = ACTIONS(8591), + [sym_nothing_literal] = ACTIONS(8591), + [sym_null_literal] = ACTIONS(8591), + [sym_empty_literal] = ACTIONS(8591), + [sym_date_literal] = ACTIONS(8593), + [anon_sym_POUND] = ACTIONS(8591), + }, + [STATE(5767)] = { + [aux_sym_close_statement_repeat1] = STATE(5327), + [sym_identifier] = ACTIONS(8265), + [sym_newline] = ACTIONS(8267), + [anon_sym_COLON] = ACTIONS(8267), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8265), + [aux_sym_frm_property_statement_token1] = ACTIONS(8265), + [anon_sym_DOT] = ACTIONS(8265), + [anon_sym_BANG] = ACTIONS(8267), + [aux_sym__attribute_identifier_token1] = ACTIONS(8265), + [aux_sym_option_statement_token3] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8265), + [aux_sym_preprocessor_const_token1] = ACTIONS(8265), + [sym_static_modifier] = ACTIONS(8265), + [sym__dim_keyword] = ACTIONS(8265), + [sym__redim_keyword] = ACTIONS(8265), + [aux_sym_get_accessor_token1] = ACTIONS(8265), + [aux_sym_set_accessor_token1] = ACTIONS(8265), + [anon_sym_COMMA] = ACTIONS(10554), + [aux_sym_const_declaration_token1] = ACTIONS(8265), + [anon_sym_LPAREN] = ACTIONS(8267), + [aux_sym_as_type_clause_token2] = ACTIONS(8265), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8265), + [aux_sym_visibility_token1] = ACTIONS(8265), + [aux_sym_visibility_token2] = ACTIONS(8265), + [aux_sym_elseif_fragment_token1] = ACTIONS(8265), + [aux_sym_else_fragment_token1] = ACTIONS(8265), + [aux_sym_select_statement_token1] = ACTIONS(8265), + [aux_sym__for_header_token1] = ACTIONS(8265), + [aux_sym_do_statement_token1] = ACTIONS(8265), + [aux_sym_do_statement_token2] = ACTIONS(8265), + [aux_sym_do_condition_token1] = ACTIONS(8265), + [aux_sym_with_statement_token1] = ACTIONS(8265), + [aux_sym_exit_statement_token1] = ACTIONS(8265), + [sym_end_statement] = ACTIONS(8267), + [aux_sym_on_goto_statement_token1] = ACTIONS(8265), + [aux_sym_on_goto_statement_token2] = ACTIONS(8265), + [aux_sym_on_error_statement_token2] = ACTIONS(8265), + [sym__ambiguous_redim_statement] = ACTIONS(8267), + [aux_sym_erase_statement_token1] = ACTIONS(8265), + [aux_sym_open_statement_token1] = ACTIONS(8265), + [aux_sym_file_mode_token2] = ACTIONS(8265), + [aux_sym_file_access_token2] = ACTIONS(8265), + [aux_sym_file_lock_token2] = ACTIONS(8265), + [aux_sym_print_statement_token1] = ACTIONS(8265), + [anon_sym_PLUS] = ACTIONS(8267), + [anon_sym_DASH] = ACTIONS(8265), + [anon_sym_QMARK] = ACTIONS(8267), + [aux_sym_close_statement_token1] = ACTIONS(8265), + [aux_sym_put_statement_token1] = ACTIONS(8265), + [aux_sym_unlock_statement_token1] = ACTIONS(8265), + [aux_sym_seek_statement_token1] = ACTIONS(8265), + [sym_reset_statement] = ACTIONS(8265), + [aux_sym_raise_event_statement_token1] = ACTIONS(8265), + [sym_stop_statement] = ACTIONS(8265), + [sym_beep_statement] = ACTIONS(8265), + [aux_sym_unload_statement_token1] = ACTIONS(8265), + [aux_sym_def_type_statement_token1] = ACTIONS(8265), + [aux_sym_def_type_statement_token2] = ACTIONS(8265), + [aux_sym_def_type_statement_token3] = ACTIONS(8265), + [aux_sym_def_type_statement_token4] = ACTIONS(8265), + [aux_sym_def_type_statement_token5] = ACTIONS(8265), + [aux_sym_def_type_statement_token6] = ACTIONS(8265), + [aux_sym_def_type_statement_token7] = ACTIONS(8265), + [aux_sym_def_type_statement_token8] = ACTIONS(8265), + [aux_sym_def_type_statement_token9] = ACTIONS(8265), + [aux_sym_def_type_statement_token10] = ACTIONS(8265), + [aux_sym_def_type_statement_token11] = ACTIONS(8265), + [aux_sym_def_type_statement_token12] = ACTIONS(8265), + [aux_sym_def_type_statement_token13] = ACTIONS(8265), + [aux_sym_def_type_statement_token14] = ACTIONS(8265), + [aux_sym_call_statement_token1] = ACTIONS(8265), + [sym__ambiguous_call_statement] = ACTIONS(8265), + [aux_sym_addressof_expression_token1] = ACTIONS(8265), + [aux_sym_type_of_expression_token1] = ACTIONS(8265), + [aux_sym_unary_expression_token1] = ACTIONS(8265), + [sym_string_literal] = ACTIONS(8267), + [sym_number_literal] = ACTIONS(8267), + [aux_sym_boolean_literal_token1] = ACTIONS(8265), + [aux_sym_boolean_literal_token2] = ACTIONS(8265), + [sym_nothing_literal] = ACTIONS(8265), + [sym_null_literal] = ACTIONS(8265), + [sym_empty_literal] = ACTIONS(8265), + [sym_date_literal] = ACTIONS(8267), + [anon_sym_POUND] = ACTIONS(8265), + }, + [STATE(5768)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5093), + [sym_identifier] = ACTIONS(8095), + [sym_newline] = ACTIONS(8097), + [anon_sym_COLON] = ACTIONS(8097), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8095), + [aux_sym_frm_property_statement_token1] = ACTIONS(8095), + [anon_sym_DOT] = ACTIONS(8095), + [anon_sym_BANG] = ACTIONS(8097), + [aux_sym__attribute_identifier_token1] = ACTIONS(8095), + [aux_sym_option_statement_token3] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8095), + [aux_sym_preprocessor_const_token1] = ACTIONS(8095), + [sym_static_modifier] = ACTIONS(8095), + [sym__dim_keyword] = ACTIONS(8095), + [sym__redim_keyword] = ACTIONS(8095), + [aux_sym_get_accessor_token1] = ACTIONS(8095), + [aux_sym_set_accessor_token1] = ACTIONS(8095), + [anon_sym_COMMA] = ACTIONS(10441), + [aux_sym_const_declaration_token1] = ACTIONS(8095), + [anon_sym_LPAREN] = ACTIONS(8097), + [aux_sym_as_type_clause_token2] = ACTIONS(8095), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8095), + [aux_sym_visibility_token1] = ACTIONS(8095), + [aux_sym_visibility_token2] = ACTIONS(8095), + [aux_sym_elseif_fragment_token1] = ACTIONS(8095), + [aux_sym_else_fragment_token1] = ACTIONS(8095), + [aux_sym_select_statement_token1] = ACTIONS(8095), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8095), + [aux_sym__for_header_token1] = ACTIONS(8095), + [aux_sym_do_statement_token1] = ACTIONS(8095), + [aux_sym_do_condition_token1] = ACTIONS(8095), + [aux_sym_with_statement_token1] = ACTIONS(8095), + [aux_sym_exit_statement_token1] = ACTIONS(8095), + [sym_end_statement] = ACTIONS(8097), + [aux_sym_on_goto_statement_token1] = ACTIONS(8095), + [aux_sym_on_goto_statement_token2] = ACTIONS(8095), + [aux_sym_on_error_statement_token2] = ACTIONS(8095), + [sym__ambiguous_redim_statement] = ACTIONS(8097), + [aux_sym_erase_statement_token1] = ACTIONS(8095), + [aux_sym_open_statement_token1] = ACTIONS(8095), + [aux_sym_file_mode_token2] = ACTIONS(8095), + [aux_sym_file_access_token2] = ACTIONS(8095), + [aux_sym_file_lock_token2] = ACTIONS(8095), + [aux_sym_print_statement_token1] = ACTIONS(8095), + [anon_sym_PLUS] = ACTIONS(8097), + [anon_sym_DASH] = ACTIONS(8095), + [anon_sym_QMARK] = ACTIONS(8097), + [aux_sym_close_statement_token1] = ACTIONS(8095), + [aux_sym_put_statement_token1] = ACTIONS(8095), + [aux_sym_unlock_statement_token1] = ACTIONS(8095), + [aux_sym_seek_statement_token1] = ACTIONS(8095), + [sym_reset_statement] = ACTIONS(8095), + [aux_sym_raise_event_statement_token1] = ACTIONS(8095), + [sym_stop_statement] = ACTIONS(8095), + [sym_beep_statement] = ACTIONS(8095), + [aux_sym_unload_statement_token1] = ACTIONS(8095), + [aux_sym_def_type_statement_token1] = ACTIONS(8095), + [aux_sym_def_type_statement_token2] = ACTIONS(8095), + [aux_sym_def_type_statement_token3] = ACTIONS(8095), + [aux_sym_def_type_statement_token4] = ACTIONS(8095), + [aux_sym_def_type_statement_token5] = ACTIONS(8095), + [aux_sym_def_type_statement_token6] = ACTIONS(8095), + [aux_sym_def_type_statement_token7] = ACTIONS(8095), + [aux_sym_def_type_statement_token8] = ACTIONS(8095), + [aux_sym_def_type_statement_token9] = ACTIONS(8095), + [aux_sym_def_type_statement_token10] = ACTIONS(8095), + [aux_sym_def_type_statement_token11] = ACTIONS(8095), + [aux_sym_def_type_statement_token12] = ACTIONS(8095), + [aux_sym_def_type_statement_token13] = ACTIONS(8095), + [aux_sym_def_type_statement_token14] = ACTIONS(8095), + [aux_sym_call_statement_token1] = ACTIONS(8095), + [sym__ambiguous_call_statement] = ACTIONS(8095), + [aux_sym_addressof_expression_token1] = ACTIONS(8095), + [aux_sym_type_of_expression_token1] = ACTIONS(8095), + [aux_sym_unary_expression_token1] = ACTIONS(8095), + [sym_string_literal] = ACTIONS(8097), + [sym_number_literal] = ACTIONS(8097), + [aux_sym_boolean_literal_token1] = ACTIONS(8095), + [aux_sym_boolean_literal_token2] = ACTIONS(8095), + [sym_nothing_literal] = ACTIONS(8095), + [sym_null_literal] = ACTIONS(8095), + [sym_empty_literal] = ACTIONS(8095), + [sym_date_literal] = ACTIONS(8097), + [anon_sym_POUND] = ACTIONS(8095), + }, + [STATE(5769)] = { + [aux_sym_const_declaration_repeat1] = STATE(5094), + [sym_identifier] = ACTIONS(8614), + [sym_newline] = ACTIONS(8616), + [anon_sym_COLON] = ACTIONS(8616), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8614), + [aux_sym_frm_property_statement_token1] = ACTIONS(8614), + [anon_sym_DOT] = ACTIONS(8614), + [anon_sym_BANG] = ACTIONS(8616), + [aux_sym__attribute_identifier_token1] = ACTIONS(8614), + [aux_sym_option_statement_token3] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8614), + [aux_sym_preprocessor_const_token1] = ACTIONS(8614), + [sym_static_modifier] = ACTIONS(8614), + [sym__dim_keyword] = ACTIONS(8614), + [sym__redim_keyword] = ACTIONS(8614), + [aux_sym_get_accessor_token1] = ACTIONS(8614), + [aux_sym_set_accessor_token1] = ACTIONS(8614), + [anon_sym_COMMA] = ACTIONS(10443), + [aux_sym_const_declaration_token1] = ACTIONS(8614), + [anon_sym_LPAREN] = ACTIONS(8616), + [aux_sym_as_type_clause_token2] = ACTIONS(8614), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8614), + [aux_sym_visibility_token1] = ACTIONS(8614), + [aux_sym_visibility_token2] = ACTIONS(8614), + [aux_sym_elseif_fragment_token1] = ACTIONS(8614), + [aux_sym_else_fragment_token1] = ACTIONS(8614), + [aux_sym_select_statement_token1] = ACTIONS(8614), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8614), + [aux_sym__for_header_token1] = ACTIONS(8614), + [aux_sym_do_statement_token1] = ACTIONS(8614), + [aux_sym_do_condition_token1] = ACTIONS(8614), + [aux_sym_with_statement_token1] = ACTIONS(8614), + [aux_sym_exit_statement_token1] = ACTIONS(8614), + [sym_end_statement] = ACTIONS(8616), + [aux_sym_on_goto_statement_token1] = ACTIONS(8614), + [aux_sym_on_goto_statement_token2] = ACTIONS(8614), + [aux_sym_on_error_statement_token2] = ACTIONS(8614), + [sym__ambiguous_redim_statement] = ACTIONS(8616), + [aux_sym_erase_statement_token1] = ACTIONS(8614), + [aux_sym_open_statement_token1] = ACTIONS(8614), + [aux_sym_file_mode_token2] = ACTIONS(8614), + [aux_sym_file_access_token2] = ACTIONS(8614), + [aux_sym_file_lock_token2] = ACTIONS(8614), + [aux_sym_print_statement_token1] = ACTIONS(8614), + [anon_sym_PLUS] = ACTIONS(8616), + [anon_sym_DASH] = ACTIONS(8614), + [anon_sym_QMARK] = ACTIONS(8616), + [aux_sym_close_statement_token1] = ACTIONS(8614), + [aux_sym_put_statement_token1] = ACTIONS(8614), + [aux_sym_unlock_statement_token1] = ACTIONS(8614), + [aux_sym_seek_statement_token1] = ACTIONS(8614), + [sym_reset_statement] = ACTIONS(8614), + [aux_sym_raise_event_statement_token1] = ACTIONS(8614), + [sym_stop_statement] = ACTIONS(8614), + [sym_beep_statement] = ACTIONS(8614), + [aux_sym_unload_statement_token1] = ACTIONS(8614), + [aux_sym_def_type_statement_token1] = ACTIONS(8614), + [aux_sym_def_type_statement_token2] = ACTIONS(8614), + [aux_sym_def_type_statement_token3] = ACTIONS(8614), + [aux_sym_def_type_statement_token4] = ACTIONS(8614), + [aux_sym_def_type_statement_token5] = ACTIONS(8614), + [aux_sym_def_type_statement_token6] = ACTIONS(8614), + [aux_sym_def_type_statement_token7] = ACTIONS(8614), + [aux_sym_def_type_statement_token8] = ACTIONS(8614), + [aux_sym_def_type_statement_token9] = ACTIONS(8614), + [aux_sym_def_type_statement_token10] = ACTIONS(8614), + [aux_sym_def_type_statement_token11] = ACTIONS(8614), + [aux_sym_def_type_statement_token12] = ACTIONS(8614), + [aux_sym_def_type_statement_token13] = ACTIONS(8614), + [aux_sym_def_type_statement_token14] = ACTIONS(8614), + [aux_sym_call_statement_token1] = ACTIONS(8614), + [sym__ambiguous_call_statement] = ACTIONS(8614), + [aux_sym_addressof_expression_token1] = ACTIONS(8614), + [aux_sym_type_of_expression_token1] = ACTIONS(8614), + [aux_sym_unary_expression_token1] = ACTIONS(8614), + [sym_string_literal] = ACTIONS(8616), + [sym_number_literal] = ACTIONS(8616), + [aux_sym_boolean_literal_token1] = ACTIONS(8614), + [aux_sym_boolean_literal_token2] = ACTIONS(8614), + [sym_nothing_literal] = ACTIONS(8614), + [sym_null_literal] = ACTIONS(8614), + [sym_empty_literal] = ACTIONS(8614), + [sym_date_literal] = ACTIONS(8616), + [anon_sym_POUND] = ACTIONS(8614), + }, + [STATE(5770)] = { + [aux_sym_def_type_statement_repeat1] = STATE(5095), + [sym_identifier] = ACTIONS(8603), + [sym_newline] = ACTIONS(8605), + [anon_sym_COLON] = ACTIONS(8605), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8603), + [aux_sym_frm_property_statement_token1] = ACTIONS(8603), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_BANG] = ACTIONS(8605), + [aux_sym__attribute_identifier_token1] = ACTIONS(8603), + [aux_sym_option_statement_token3] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8603), + [aux_sym_preprocessor_const_token1] = ACTIONS(8603), + [sym_static_modifier] = ACTIONS(8603), + [sym__dim_keyword] = ACTIONS(8603), + [sym__redim_keyword] = ACTIONS(8603), + [aux_sym_get_accessor_token1] = ACTIONS(8603), + [aux_sym_set_accessor_token1] = ACTIONS(8603), + [anon_sym_COMMA] = ACTIONS(10792), + [aux_sym_const_declaration_token1] = ACTIONS(8603), + [anon_sym_LPAREN] = ACTIONS(8605), + [aux_sym_as_type_clause_token2] = ACTIONS(8603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8603), + [aux_sym_visibility_token1] = ACTIONS(8603), + [aux_sym_visibility_token2] = ACTIONS(8603), + [aux_sym_elseif_fragment_token1] = ACTIONS(8603), + [aux_sym_else_fragment_token1] = ACTIONS(8603), + [aux_sym_select_statement_token1] = ACTIONS(8603), + [aux_sym__for_header_token1] = ACTIONS(8603), + [aux_sym_do_statement_token1] = ACTIONS(8603), + [aux_sym_do_condition_token1] = ACTIONS(8603), + [aux_sym_while_statement_token1] = ACTIONS(8603), + [aux_sym_with_statement_token1] = ACTIONS(8603), + [aux_sym_exit_statement_token1] = ACTIONS(8603), + [sym_end_statement] = ACTIONS(8605), + [aux_sym_on_goto_statement_token1] = ACTIONS(8603), + [aux_sym_on_goto_statement_token2] = ACTIONS(8603), + [aux_sym_on_error_statement_token2] = ACTIONS(8603), + [sym__ambiguous_redim_statement] = ACTIONS(8605), + [aux_sym_erase_statement_token1] = ACTIONS(8603), + [aux_sym_open_statement_token1] = ACTIONS(8603), + [aux_sym_file_mode_token2] = ACTIONS(8603), + [aux_sym_file_access_token2] = ACTIONS(8603), + [aux_sym_file_lock_token2] = ACTIONS(8603), + [aux_sym_print_statement_token1] = ACTIONS(8603), + [anon_sym_PLUS] = ACTIONS(8605), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_QMARK] = ACTIONS(8605), + [aux_sym_close_statement_token1] = ACTIONS(8603), + [aux_sym_put_statement_token1] = ACTIONS(8603), + [aux_sym_unlock_statement_token1] = ACTIONS(8603), + [aux_sym_seek_statement_token1] = ACTIONS(8603), + [sym_reset_statement] = ACTIONS(8603), + [aux_sym_raise_event_statement_token1] = ACTIONS(8603), + [sym_stop_statement] = ACTIONS(8603), + [sym_beep_statement] = ACTIONS(8603), + [aux_sym_unload_statement_token1] = ACTIONS(8603), + [aux_sym_def_type_statement_token1] = ACTIONS(8603), + [aux_sym_def_type_statement_token2] = ACTIONS(8603), + [aux_sym_def_type_statement_token3] = ACTIONS(8603), + [aux_sym_def_type_statement_token4] = ACTIONS(8603), + [aux_sym_def_type_statement_token5] = ACTIONS(8603), + [aux_sym_def_type_statement_token6] = ACTIONS(8603), + [aux_sym_def_type_statement_token7] = ACTIONS(8603), + [aux_sym_def_type_statement_token8] = ACTIONS(8603), + [aux_sym_def_type_statement_token9] = ACTIONS(8603), + [aux_sym_def_type_statement_token10] = ACTIONS(8603), + [aux_sym_def_type_statement_token11] = ACTIONS(8603), + [aux_sym_def_type_statement_token12] = ACTIONS(8603), + [aux_sym_def_type_statement_token13] = ACTIONS(8603), + [aux_sym_def_type_statement_token14] = ACTIONS(8603), + [aux_sym_call_statement_token1] = ACTIONS(8603), + [sym__ambiguous_call_statement] = ACTIONS(8603), + [aux_sym_addressof_expression_token1] = ACTIONS(8603), + [aux_sym_type_of_expression_token1] = ACTIONS(8603), + [aux_sym_unary_expression_token1] = ACTIONS(8603), + [sym_string_literal] = ACTIONS(8605), + [sym_number_literal] = ACTIONS(8605), + [aux_sym_boolean_literal_token1] = ACTIONS(8603), + [aux_sym_boolean_literal_token2] = ACTIONS(8603), + [sym_nothing_literal] = ACTIONS(8603), + [sym_null_literal] = ACTIONS(8603), + [sym_empty_literal] = ACTIONS(8603), + [sym_date_literal] = ACTIONS(8605), + [anon_sym_POUND] = ACTIONS(8603), + }, + [STATE(5771)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5118), + [sym_identifier] = ACTIONS(8529), + [sym_newline] = ACTIONS(8531), + [anon_sym_COLON] = ACTIONS(8531), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8529), + [aux_sym_frm_property_statement_token1] = ACTIONS(8529), + [anon_sym_DOT] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(8531), + [aux_sym__attribute_identifier_token1] = ACTIONS(8529), + [aux_sym_option_statement_token3] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8529), + [aux_sym_preprocessor_const_token1] = ACTIONS(8529), + [sym_static_modifier] = ACTIONS(8529), + [sym__dim_keyword] = ACTIONS(8529), + [sym__redim_keyword] = ACTIONS(8529), + [aux_sym_get_accessor_token1] = ACTIONS(8529), + [aux_sym_set_accessor_token1] = ACTIONS(8529), + [anon_sym_COMMA] = ACTIONS(10448), + [aux_sym_const_declaration_token1] = ACTIONS(8529), + [anon_sym_LPAREN] = ACTIONS(8531), + [aux_sym_as_type_clause_token2] = ACTIONS(8529), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8529), + [aux_sym_visibility_token1] = ACTIONS(8529), + [aux_sym_visibility_token2] = ACTIONS(8529), + [aux_sym_elseif_fragment_token1] = ACTIONS(8529), + [aux_sym_else_fragment_token1] = ACTIONS(8529), + [aux_sym_select_statement_token1] = ACTIONS(8529), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8529), + [aux_sym__for_header_token1] = ACTIONS(8529), + [aux_sym_do_statement_token1] = ACTIONS(8529), + [aux_sym_do_condition_token1] = ACTIONS(8529), + [aux_sym_with_statement_token1] = ACTIONS(8529), + [aux_sym_exit_statement_token1] = ACTIONS(8529), + [sym_end_statement] = ACTIONS(8531), + [aux_sym_on_goto_statement_token1] = ACTIONS(8529), + [aux_sym_on_goto_statement_token2] = ACTIONS(8529), + [aux_sym_on_error_statement_token2] = ACTIONS(8529), + [sym__ambiguous_redim_statement] = ACTIONS(8531), + [aux_sym_erase_statement_token1] = ACTIONS(8529), + [aux_sym_open_statement_token1] = ACTIONS(8529), + [aux_sym_file_mode_token2] = ACTIONS(8529), + [aux_sym_file_access_token2] = ACTIONS(8529), + [aux_sym_file_lock_token2] = ACTIONS(8529), + [aux_sym_print_statement_token1] = ACTIONS(8529), + [anon_sym_PLUS] = ACTIONS(8531), + [anon_sym_DASH] = ACTIONS(8529), + [anon_sym_QMARK] = ACTIONS(8531), + [aux_sym_close_statement_token1] = ACTIONS(8529), + [aux_sym_put_statement_token1] = ACTIONS(8529), + [aux_sym_unlock_statement_token1] = ACTIONS(8529), + [aux_sym_seek_statement_token1] = ACTIONS(8529), + [sym_reset_statement] = ACTIONS(8529), + [aux_sym_raise_event_statement_token1] = ACTIONS(8529), + [sym_stop_statement] = ACTIONS(8529), + [sym_beep_statement] = ACTIONS(8529), + [aux_sym_unload_statement_token1] = ACTIONS(8529), + [aux_sym_def_type_statement_token1] = ACTIONS(8529), + [aux_sym_def_type_statement_token2] = ACTIONS(8529), + [aux_sym_def_type_statement_token3] = ACTIONS(8529), + [aux_sym_def_type_statement_token4] = ACTIONS(8529), + [aux_sym_def_type_statement_token5] = ACTIONS(8529), + [aux_sym_def_type_statement_token6] = ACTIONS(8529), + [aux_sym_def_type_statement_token7] = ACTIONS(8529), + [aux_sym_def_type_statement_token8] = ACTIONS(8529), + [aux_sym_def_type_statement_token9] = ACTIONS(8529), + [aux_sym_def_type_statement_token10] = ACTIONS(8529), + [aux_sym_def_type_statement_token11] = ACTIONS(8529), + [aux_sym_def_type_statement_token12] = ACTIONS(8529), + [aux_sym_def_type_statement_token13] = ACTIONS(8529), + [aux_sym_def_type_statement_token14] = ACTIONS(8529), + [aux_sym_call_statement_token1] = ACTIONS(8529), + [sym__ambiguous_call_statement] = ACTIONS(8529), + [aux_sym_addressof_expression_token1] = ACTIONS(8529), + [aux_sym_type_of_expression_token1] = ACTIONS(8529), + [aux_sym_unary_expression_token1] = ACTIONS(8529), + [sym_string_literal] = ACTIONS(8531), + [sym_number_literal] = ACTIONS(8531), + [aux_sym_boolean_literal_token1] = ACTIONS(8529), + [aux_sym_boolean_literal_token2] = ACTIONS(8529), + [sym_nothing_literal] = ACTIONS(8529), + [sym_null_literal] = ACTIONS(8529), + [sym_empty_literal] = ACTIONS(8529), + [sym_date_literal] = ACTIONS(8531), + [anon_sym_POUND] = ACTIONS(8529), + }, + [STATE(5772)] = { + [sym_do_condition] = STATE(6685), + [sym_identifier] = ACTIONS(8213), + [sym_newline] = ACTIONS(8215), + [anon_sym_COLON] = ACTIONS(8215), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8213), + [aux_sym_frm_property_statement_token1] = ACTIONS(8213), + [anon_sym_DOT] = ACTIONS(8213), + [anon_sym_BANG] = ACTIONS(8215), + [aux_sym__attribute_identifier_token1] = ACTIONS(8213), + [aux_sym_option_statement_token3] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8213), + [aux_sym_preprocessor_const_token1] = ACTIONS(8213), + [sym_static_modifier] = ACTIONS(8213), + [sym__dim_keyword] = ACTIONS(8213), + [sym__redim_keyword] = ACTIONS(8213), + [aux_sym_get_accessor_token1] = ACTIONS(8213), + [aux_sym_set_accessor_token1] = ACTIONS(8213), + [aux_sym_const_declaration_token1] = ACTIONS(8213), + [anon_sym_LPAREN] = ACTIONS(8215), + [aux_sym_as_type_clause_token2] = ACTIONS(8213), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8213), + [aux_sym_visibility_token1] = ACTIONS(8213), + [aux_sym_visibility_token2] = ACTIONS(8213), + [aux_sym_elseif_fragment_token1] = ACTIONS(8213), + [aux_sym_else_fragment_token1] = ACTIONS(8213), + [aux_sym_select_statement_token1] = ACTIONS(8213), + [aux_sym_select_statement_token2] = ACTIONS(8213), + [aux_sym__for_header_token1] = ACTIONS(8213), + [aux_sym_do_statement_token1] = ACTIONS(8213), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8213), + [aux_sym_exit_statement_token1] = ACTIONS(8213), + [sym_end_statement] = ACTIONS(8215), + [aux_sym_on_goto_statement_token1] = ACTIONS(8213), + [aux_sym_on_goto_statement_token2] = ACTIONS(8213), + [aux_sym_on_error_statement_token2] = ACTIONS(8213), + [sym__ambiguous_redim_statement] = ACTIONS(8215), + [aux_sym_erase_statement_token1] = ACTIONS(8213), + [aux_sym_open_statement_token1] = ACTIONS(8213), + [aux_sym_file_mode_token2] = ACTIONS(8213), + [aux_sym_file_access_token2] = ACTIONS(8213), + [aux_sym_file_lock_token2] = ACTIONS(8213), + [aux_sym_print_statement_token1] = ACTIONS(8213), + [anon_sym_PLUS] = ACTIONS(8215), + [anon_sym_DASH] = ACTIONS(8213), + [anon_sym_QMARK] = ACTIONS(8215), + [aux_sym_close_statement_token1] = ACTIONS(8213), + [aux_sym_put_statement_token1] = ACTIONS(8213), + [aux_sym_unlock_statement_token1] = ACTIONS(8213), + [aux_sym_seek_statement_token1] = ACTIONS(8213), + [sym_reset_statement] = ACTIONS(8213), + [aux_sym_raise_event_statement_token1] = ACTIONS(8213), + [sym_stop_statement] = ACTIONS(8213), + [sym_beep_statement] = ACTIONS(8213), + [aux_sym_unload_statement_token1] = ACTIONS(8213), + [aux_sym_def_type_statement_token1] = ACTIONS(8213), + [aux_sym_def_type_statement_token2] = ACTIONS(8213), + [aux_sym_def_type_statement_token3] = ACTIONS(8213), + [aux_sym_def_type_statement_token4] = ACTIONS(8213), + [aux_sym_def_type_statement_token5] = ACTIONS(8213), + [aux_sym_def_type_statement_token6] = ACTIONS(8213), + [aux_sym_def_type_statement_token7] = ACTIONS(8213), + [aux_sym_def_type_statement_token8] = ACTIONS(8213), + [aux_sym_def_type_statement_token9] = ACTIONS(8213), + [aux_sym_def_type_statement_token10] = ACTIONS(8213), + [aux_sym_def_type_statement_token11] = ACTIONS(8213), + [aux_sym_def_type_statement_token12] = ACTIONS(8213), + [aux_sym_def_type_statement_token13] = ACTIONS(8213), + [aux_sym_def_type_statement_token14] = ACTIONS(8213), + [aux_sym_call_statement_token1] = ACTIONS(8213), + [sym__ambiguous_call_statement] = ACTIONS(8213), + [aux_sym_addressof_expression_token1] = ACTIONS(8213), + [aux_sym_type_of_expression_token1] = ACTIONS(8213), + [aux_sym_unary_expression_token1] = ACTIONS(8213), + [sym_string_literal] = ACTIONS(8215), + [sym_number_literal] = ACTIONS(8215), + [aux_sym_boolean_literal_token1] = ACTIONS(8213), + [aux_sym_boolean_literal_token2] = ACTIONS(8213), + [sym_nothing_literal] = ACTIONS(8213), + [sym_null_literal] = ACTIONS(8213), + [sym_empty_literal] = ACTIONS(8213), + [sym_date_literal] = ACTIONS(8215), + [anon_sym_POUND] = ACTIONS(8213), + }, + [STATE(5773)] = { + [sym_do_condition] = STATE(6974), + [sym_identifier] = ACTIONS(8595), + [sym_newline] = ACTIONS(8597), + [anon_sym_COLON] = ACTIONS(8597), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8595), + [aux_sym_frm_property_statement_token1] = ACTIONS(8595), + [anon_sym_DOT] = ACTIONS(8595), + [anon_sym_BANG] = ACTIONS(8597), + [aux_sym__attribute_identifier_token1] = ACTIONS(8595), + [aux_sym_option_statement_token3] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8595), + [aux_sym_preprocessor_const_token1] = ACTIONS(8595), + [sym_static_modifier] = ACTIONS(8595), + [sym__dim_keyword] = ACTIONS(8595), + [sym__redim_keyword] = ACTIONS(8595), + [aux_sym_get_accessor_token1] = ACTIONS(8595), + [aux_sym_set_accessor_token1] = ACTIONS(8595), + [aux_sym_const_declaration_token1] = ACTIONS(8595), + [anon_sym_LPAREN] = ACTIONS(8597), + [aux_sym_as_type_clause_token2] = ACTIONS(8595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8595), + [aux_sym_visibility_token1] = ACTIONS(8595), + [aux_sym_visibility_token2] = ACTIONS(8595), + [aux_sym_elseif_fragment_token1] = ACTIONS(8595), + [aux_sym_else_fragment_token1] = ACTIONS(8595), + [aux_sym_select_statement_token1] = ACTIONS(8595), + [aux_sym__for_header_token1] = ACTIONS(8595), + [aux_sym_do_statement_token1] = ACTIONS(8595), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8595), + [aux_sym_exit_statement_token1] = ACTIONS(8595), + [sym_end_statement] = ACTIONS(8597), + [aux_sym_on_goto_statement_token1] = ACTIONS(8595), + [aux_sym_on_goto_statement_token2] = ACTIONS(8595), + [aux_sym_on_error_statement_token2] = ACTIONS(8595), + [sym__ambiguous_redim_statement] = ACTIONS(8597), + [aux_sym_erase_statement_token1] = ACTIONS(8595), + [aux_sym_open_statement_token1] = ACTIONS(8595), + [aux_sym_file_mode_token2] = ACTIONS(8595), + [aux_sym_file_access_token2] = ACTIONS(8595), + [aux_sym_file_lock_token2] = ACTIONS(8595), + [aux_sym_print_statement_token1] = ACTIONS(8595), + [anon_sym_PLUS] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(8595), + [anon_sym_QMARK] = ACTIONS(8597), + [aux_sym_close_statement_token1] = ACTIONS(8595), + [aux_sym_put_statement_token1] = ACTIONS(8595), + [aux_sym_unlock_statement_token1] = ACTIONS(8595), + [aux_sym_seek_statement_token1] = ACTIONS(8595), + [sym_reset_statement] = ACTIONS(8595), + [aux_sym_raise_event_statement_token1] = ACTIONS(8595), + [sym_stop_statement] = ACTIONS(8595), + [sym_beep_statement] = ACTIONS(8595), + [aux_sym_unload_statement_token1] = ACTIONS(8595), + [aux_sym_def_type_statement_token1] = ACTIONS(8595), + [aux_sym_def_type_statement_token2] = ACTIONS(8595), + [aux_sym_def_type_statement_token3] = ACTIONS(8595), + [aux_sym_def_type_statement_token4] = ACTIONS(8595), + [aux_sym_def_type_statement_token5] = ACTIONS(8595), + [aux_sym_def_type_statement_token6] = ACTIONS(8595), + [aux_sym_def_type_statement_token7] = ACTIONS(8595), + [aux_sym_def_type_statement_token8] = ACTIONS(8595), + [aux_sym_def_type_statement_token9] = ACTIONS(8595), + [aux_sym_def_type_statement_token10] = ACTIONS(8595), + [aux_sym_def_type_statement_token11] = ACTIONS(8595), + [aux_sym_def_type_statement_token12] = ACTIONS(8595), + [aux_sym_def_type_statement_token13] = ACTIONS(8595), + [aux_sym_def_type_statement_token14] = ACTIONS(8595), + [aux_sym_call_statement_token1] = ACTIONS(8595), + [sym__ambiguous_call_statement] = ACTIONS(8595), + [aux_sym_addressof_expression_token1] = ACTIONS(8595), + [aux_sym_type_of_expression_token1] = ACTIONS(8595), + [aux_sym_unary_expression_token1] = ACTIONS(8595), + [sym_string_literal] = ACTIONS(8597), + [sym_number_literal] = ACTIONS(8597), + [aux_sym_boolean_literal_token1] = ACTIONS(8595), + [aux_sym_boolean_literal_token2] = ACTIONS(8595), + [sym_nothing_literal] = ACTIONS(8595), + [sym_null_literal] = ACTIONS(8595), + [sym_empty_literal] = ACTIONS(8595), + [sym_date_literal] = ACTIONS(8597), + [anon_sym_POUND] = ACTIONS(8595), + }, + [STATE(5774)] = { + [sym__required_file_number] = STATE(6203), + [sym_file_number_literal] = STATE(6154), + [sym_identifier] = ACTIONS(8312), + [sym_newline] = ACTIONS(8314), + [anon_sym_COLON] = ACTIONS(8314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8312), + [aux_sym_frm_property_statement_token1] = ACTIONS(8312), + [anon_sym_DOT] = ACTIONS(8312), + [anon_sym_BANG] = ACTIONS(8314), + [aux_sym__attribute_identifier_token1] = ACTIONS(8312), + [aux_sym_option_statement_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8312), + [aux_sym_preprocessor_const_token1] = ACTIONS(8312), + [sym_static_modifier] = ACTIONS(8312), + [sym__dim_keyword] = ACTIONS(8312), + [sym__redim_keyword] = ACTIONS(8312), + [aux_sym_get_accessor_token1] = ACTIONS(8312), + [aux_sym_set_accessor_token1] = ACTIONS(8312), + [aux_sym_const_declaration_token1] = ACTIONS(8312), + [anon_sym_LPAREN] = ACTIONS(8314), + [aux_sym_as_type_clause_token2] = ACTIONS(8312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8312), + [aux_sym_visibility_token1] = ACTIONS(8312), + [aux_sym_visibility_token2] = ACTIONS(8312), + [aux_sym_elseif_fragment_token1] = ACTIONS(8312), + [aux_sym_else_fragment_token1] = ACTIONS(8312), + [aux_sym_select_statement_token1] = ACTIONS(8312), + [aux_sym__for_header_token1] = ACTIONS(8312), + [aux_sym_do_statement_token1] = ACTIONS(8312), + [aux_sym_do_condition_token1] = ACTIONS(8312), + [aux_sym_while_statement_token1] = ACTIONS(8312), + [aux_sym_with_statement_token1] = ACTIONS(8312), + [aux_sym_exit_statement_token1] = ACTIONS(8312), + [sym_end_statement] = ACTIONS(8314), + [aux_sym_on_goto_statement_token1] = ACTIONS(8312), + [aux_sym_on_goto_statement_token2] = ACTIONS(8312), + [aux_sym_on_error_statement_token2] = ACTIONS(8312), + [sym__ambiguous_redim_statement] = ACTIONS(8314), + [aux_sym_erase_statement_token1] = ACTIONS(8312), + [aux_sym_open_statement_token1] = ACTIONS(8312), + [aux_sym_file_mode_token2] = ACTIONS(8312), + [aux_sym_file_access_token2] = ACTIONS(8312), + [aux_sym_file_lock_token2] = ACTIONS(8312), + [aux_sym_print_statement_token1] = ACTIONS(8312), + [anon_sym_PLUS] = ACTIONS(8314), + [anon_sym_DASH] = ACTIONS(8312), + [anon_sym_QMARK] = ACTIONS(8314), + [aux_sym_close_statement_token1] = ACTIONS(8312), + [aux_sym_put_statement_token1] = ACTIONS(8312), + [aux_sym_unlock_statement_token1] = ACTIONS(8312), + [aux_sym_seek_statement_token1] = ACTIONS(8312), + [sym_reset_statement] = ACTIONS(8312), + [aux_sym_raise_event_statement_token1] = ACTIONS(8312), + [sym_stop_statement] = ACTIONS(8312), + [sym_beep_statement] = ACTIONS(8312), + [aux_sym_unload_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token2] = ACTIONS(8312), + [aux_sym_def_type_statement_token3] = ACTIONS(8312), + [aux_sym_def_type_statement_token4] = ACTIONS(8312), + [aux_sym_def_type_statement_token5] = ACTIONS(8312), + [aux_sym_def_type_statement_token6] = ACTIONS(8312), + [aux_sym_def_type_statement_token7] = ACTIONS(8312), + [aux_sym_def_type_statement_token8] = ACTIONS(8312), + [aux_sym_def_type_statement_token9] = ACTIONS(8312), + [aux_sym_def_type_statement_token10] = ACTIONS(8312), + [aux_sym_def_type_statement_token11] = ACTIONS(8312), + [aux_sym_def_type_statement_token12] = ACTIONS(8312), + [aux_sym_def_type_statement_token13] = ACTIONS(8312), + [aux_sym_def_type_statement_token14] = ACTIONS(8312), + [aux_sym_call_statement_token1] = ACTIONS(8312), + [sym__ambiguous_call_statement] = ACTIONS(8312), + [aux_sym_addressof_expression_token1] = ACTIONS(8312), + [aux_sym_type_of_expression_token1] = ACTIONS(8312), + [aux_sym_unary_expression_token1] = ACTIONS(8312), + [sym_string_literal] = ACTIONS(8314), + [sym_number_literal] = ACTIONS(8314), + [aux_sym_boolean_literal_token1] = ACTIONS(8312), + [aux_sym_boolean_literal_token2] = ACTIONS(8312), + [sym_nothing_literal] = ACTIONS(8312), + [sym_null_literal] = ACTIONS(8312), + [sym_empty_literal] = ACTIONS(8312), + [sym_date_literal] = ACTIONS(8314), + [anon_sym_POUND] = ACTIONS(1831), + }, + [STATE(5775)] = { + [aux_sym_def_type_statement_repeat1] = STATE(5775), + [sym_identifier] = ACTIONS(8357), + [sym_newline] = ACTIONS(8359), + [anon_sym_COLON] = ACTIONS(8359), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8357), + [aux_sym_frm_property_statement_token1] = ACTIONS(8357), + [anon_sym_DOT] = ACTIONS(8357), + [anon_sym_BANG] = ACTIONS(8359), + [aux_sym__attribute_identifier_token1] = ACTIONS(8357), + [aux_sym_option_statement_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8357), + [aux_sym_preprocessor_const_token1] = ACTIONS(8357), + [sym_static_modifier] = ACTIONS(8357), + [sym__dim_keyword] = ACTIONS(8357), + [sym__redim_keyword] = ACTIONS(8357), + [aux_sym_get_accessor_token1] = ACTIONS(8357), + [aux_sym_set_accessor_token1] = ACTIONS(8357), + [anon_sym_COMMA] = ACTIONS(10794), + [aux_sym_const_declaration_token1] = ACTIONS(8357), + [anon_sym_LPAREN] = ACTIONS(8359), + [aux_sym_as_type_clause_token2] = ACTIONS(8357), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8357), + [aux_sym_visibility_token1] = ACTIONS(8357), + [aux_sym_visibility_token2] = ACTIONS(8357), + [aux_sym_elseif_fragment_token1] = ACTIONS(8357), + [aux_sym_else_fragment_token1] = ACTIONS(8357), + [aux_sym_select_statement_token1] = ACTIONS(8357), + [aux_sym_select_statement_token2] = ACTIONS(8357), + [aux_sym__for_header_token1] = ACTIONS(8357), + [aux_sym_do_statement_token1] = ACTIONS(8357), + [aux_sym_do_condition_token1] = ACTIONS(8357), + [aux_sym_with_statement_token1] = ACTIONS(8357), + [aux_sym_exit_statement_token1] = ACTIONS(8357), + [sym_end_statement] = ACTIONS(8359), + [aux_sym_on_goto_statement_token1] = ACTIONS(8357), + [aux_sym_on_goto_statement_token2] = ACTIONS(8357), + [aux_sym_on_error_statement_token2] = ACTIONS(8357), + [sym__ambiguous_redim_statement] = ACTIONS(8359), + [aux_sym_erase_statement_token1] = ACTIONS(8357), + [aux_sym_open_statement_token1] = ACTIONS(8357), + [aux_sym_file_mode_token2] = ACTIONS(8357), + [aux_sym_file_access_token2] = ACTIONS(8357), + [aux_sym_file_lock_token2] = ACTIONS(8357), + [aux_sym_print_statement_token1] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_QMARK] = ACTIONS(8359), + [aux_sym_close_statement_token1] = ACTIONS(8357), + [aux_sym_put_statement_token1] = ACTIONS(8357), + [aux_sym_unlock_statement_token1] = ACTIONS(8357), + [aux_sym_seek_statement_token1] = ACTIONS(8357), + [sym_reset_statement] = ACTIONS(8357), + [aux_sym_raise_event_statement_token1] = ACTIONS(8357), + [sym_stop_statement] = ACTIONS(8357), + [sym_beep_statement] = ACTIONS(8357), + [aux_sym_unload_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token2] = ACTIONS(8357), + [aux_sym_def_type_statement_token3] = ACTIONS(8357), + [aux_sym_def_type_statement_token4] = ACTIONS(8357), + [aux_sym_def_type_statement_token5] = ACTIONS(8357), + [aux_sym_def_type_statement_token6] = ACTIONS(8357), + [aux_sym_def_type_statement_token7] = ACTIONS(8357), + [aux_sym_def_type_statement_token8] = ACTIONS(8357), + [aux_sym_def_type_statement_token9] = ACTIONS(8357), + [aux_sym_def_type_statement_token10] = ACTIONS(8357), + [aux_sym_def_type_statement_token11] = ACTIONS(8357), + [aux_sym_def_type_statement_token12] = ACTIONS(8357), + [aux_sym_def_type_statement_token13] = ACTIONS(8357), + [aux_sym_def_type_statement_token14] = ACTIONS(8357), + [aux_sym_call_statement_token1] = ACTIONS(8357), + [sym__ambiguous_call_statement] = ACTIONS(8357), + [aux_sym_addressof_expression_token1] = ACTIONS(8357), + [aux_sym_type_of_expression_token1] = ACTIONS(8357), + [aux_sym_unary_expression_token1] = ACTIONS(8357), + [sym_string_literal] = ACTIONS(8359), + [sym_number_literal] = ACTIONS(8359), + [aux_sym_boolean_literal_token1] = ACTIONS(8357), + [aux_sym_boolean_literal_token2] = ACTIONS(8357), + [sym_nothing_literal] = ACTIONS(8357), + [sym_null_literal] = ACTIONS(8357), + [sym_empty_literal] = ACTIONS(8357), + [sym_date_literal] = ACTIONS(8359), + [anon_sym_POUND] = ACTIONS(8357), + }, + [STATE(5776)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5127), + [sym_identifier] = ACTIONS(8540), + [sym_newline] = ACTIONS(8542), + [anon_sym_COLON] = ACTIONS(8542), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8540), + [aux_sym_frm_property_statement_token1] = ACTIONS(8540), + [anon_sym_DOT] = ACTIONS(8540), + [anon_sym_BANG] = ACTIONS(8542), + [aux_sym__attribute_identifier_token1] = ACTIONS(8540), + [aux_sym_option_statement_token3] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8540), + [aux_sym_preprocessor_const_token1] = ACTIONS(8540), + [sym_static_modifier] = ACTIONS(8540), + [sym__dim_keyword] = ACTIONS(8540), + [sym__redim_keyword] = ACTIONS(8540), + [aux_sym_get_accessor_token1] = ACTIONS(8540), + [aux_sym_set_accessor_token1] = ACTIONS(8540), + [anon_sym_COMMA] = ACTIONS(10448), + [aux_sym_const_declaration_token1] = ACTIONS(8540), + [anon_sym_LPAREN] = ACTIONS(8542), + [aux_sym_as_type_clause_token2] = ACTIONS(8540), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8540), + [aux_sym_visibility_token1] = ACTIONS(8540), + [aux_sym_visibility_token2] = ACTIONS(8540), + [aux_sym_elseif_fragment_token1] = ACTIONS(8540), + [aux_sym_else_fragment_token1] = ACTIONS(8540), + [aux_sym_select_statement_token1] = ACTIONS(8540), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8540), + [aux_sym__for_header_token1] = ACTIONS(8540), + [aux_sym_do_statement_token1] = ACTIONS(8540), + [aux_sym_do_condition_token1] = ACTIONS(8540), + [aux_sym_with_statement_token1] = ACTIONS(8540), + [aux_sym_exit_statement_token1] = ACTIONS(8540), + [sym_end_statement] = ACTIONS(8542), + [aux_sym_on_goto_statement_token1] = ACTIONS(8540), + [aux_sym_on_goto_statement_token2] = ACTIONS(8540), + [aux_sym_on_error_statement_token2] = ACTIONS(8540), + [sym__ambiguous_redim_statement] = ACTIONS(8542), + [aux_sym_erase_statement_token1] = ACTIONS(8540), + [aux_sym_open_statement_token1] = ACTIONS(8540), + [aux_sym_file_mode_token2] = ACTIONS(8540), + [aux_sym_file_access_token2] = ACTIONS(8540), + [aux_sym_file_lock_token2] = ACTIONS(8540), + [aux_sym_print_statement_token1] = ACTIONS(8540), + [anon_sym_PLUS] = ACTIONS(8542), + [anon_sym_DASH] = ACTIONS(8540), + [anon_sym_QMARK] = ACTIONS(8542), + [aux_sym_close_statement_token1] = ACTIONS(8540), + [aux_sym_put_statement_token1] = ACTIONS(8540), + [aux_sym_unlock_statement_token1] = ACTIONS(8540), + [aux_sym_seek_statement_token1] = ACTIONS(8540), + [sym_reset_statement] = ACTIONS(8540), + [aux_sym_raise_event_statement_token1] = ACTIONS(8540), + [sym_stop_statement] = ACTIONS(8540), + [sym_beep_statement] = ACTIONS(8540), + [aux_sym_unload_statement_token1] = ACTIONS(8540), + [aux_sym_def_type_statement_token1] = ACTIONS(8540), + [aux_sym_def_type_statement_token2] = ACTIONS(8540), + [aux_sym_def_type_statement_token3] = ACTIONS(8540), + [aux_sym_def_type_statement_token4] = ACTIONS(8540), + [aux_sym_def_type_statement_token5] = ACTIONS(8540), + [aux_sym_def_type_statement_token6] = ACTIONS(8540), + [aux_sym_def_type_statement_token7] = ACTIONS(8540), + [aux_sym_def_type_statement_token8] = ACTIONS(8540), + [aux_sym_def_type_statement_token9] = ACTIONS(8540), + [aux_sym_def_type_statement_token10] = ACTIONS(8540), + [aux_sym_def_type_statement_token11] = ACTIONS(8540), + [aux_sym_def_type_statement_token12] = ACTIONS(8540), + [aux_sym_def_type_statement_token13] = ACTIONS(8540), + [aux_sym_def_type_statement_token14] = ACTIONS(8540), + [aux_sym_call_statement_token1] = ACTIONS(8540), + [sym__ambiguous_call_statement] = ACTIONS(8540), + [aux_sym_addressof_expression_token1] = ACTIONS(8540), + [aux_sym_type_of_expression_token1] = ACTIONS(8540), + [aux_sym_unary_expression_token1] = ACTIONS(8540), + [sym_string_literal] = ACTIONS(8542), + [sym_number_literal] = ACTIONS(8542), + [aux_sym_boolean_literal_token1] = ACTIONS(8540), + [aux_sym_boolean_literal_token2] = ACTIONS(8540), + [sym_nothing_literal] = ACTIONS(8540), + [sym_null_literal] = ACTIONS(8540), + [sym_empty_literal] = ACTIONS(8540), + [sym_date_literal] = ACTIONS(8542), + [anon_sym_POUND] = ACTIONS(8540), + }, + [STATE(5777)] = { + [aux_sym_redim_statement_repeat1] = STATE(5793), + [sym_identifier] = ACTIONS(8368), + [sym_newline] = ACTIONS(8370), + [anon_sym_COLON] = ACTIONS(8370), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8368), + [aux_sym_frm_property_statement_token1] = ACTIONS(8368), + [anon_sym_DOT] = ACTIONS(8368), + [anon_sym_BANG] = ACTIONS(8370), + [aux_sym__attribute_identifier_token1] = ACTIONS(8368), + [aux_sym_option_statement_token3] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8368), + [aux_sym_preprocessor_const_token1] = ACTIONS(8368), + [sym_static_modifier] = ACTIONS(8368), + [sym__dim_keyword] = ACTIONS(8368), + [sym__redim_keyword] = ACTIONS(8368), + [aux_sym_get_accessor_token1] = ACTIONS(8368), + [aux_sym_set_accessor_token1] = ACTIONS(8368), + [anon_sym_COMMA] = ACTIONS(10613), + [aux_sym_const_declaration_token1] = ACTIONS(8368), + [anon_sym_LPAREN] = ACTIONS(8370), + [aux_sym_as_type_clause_token2] = ACTIONS(8368), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8368), + [aux_sym_visibility_token1] = ACTIONS(8368), + [aux_sym_visibility_token2] = ACTIONS(8368), + [aux_sym_elseif_fragment_token1] = ACTIONS(8368), + [aux_sym_else_fragment_token1] = ACTIONS(8368), + [aux_sym_select_statement_token1] = ACTIONS(8368), + [aux_sym_select_statement_token2] = ACTIONS(8368), + [aux_sym__for_header_token1] = ACTIONS(8368), + [aux_sym_do_statement_token1] = ACTIONS(8368), + [aux_sym_do_condition_token1] = ACTIONS(8368), + [aux_sym_with_statement_token1] = ACTIONS(8368), + [aux_sym_exit_statement_token1] = ACTIONS(8368), + [sym_end_statement] = ACTIONS(8370), + [aux_sym_on_goto_statement_token1] = ACTIONS(8368), + [aux_sym_on_goto_statement_token2] = ACTIONS(8368), + [aux_sym_on_error_statement_token2] = ACTIONS(8368), + [sym__ambiguous_redim_statement] = ACTIONS(8370), + [aux_sym_erase_statement_token1] = ACTIONS(8368), + [aux_sym_open_statement_token1] = ACTIONS(8368), + [aux_sym_file_mode_token2] = ACTIONS(8368), + [aux_sym_file_access_token2] = ACTIONS(8368), + [aux_sym_file_lock_token2] = ACTIONS(8368), + [aux_sym_print_statement_token1] = ACTIONS(8368), + [anon_sym_PLUS] = ACTIONS(8370), + [anon_sym_DASH] = ACTIONS(8368), + [anon_sym_QMARK] = ACTIONS(8370), + [aux_sym_close_statement_token1] = ACTIONS(8368), + [aux_sym_put_statement_token1] = ACTIONS(8368), + [aux_sym_unlock_statement_token1] = ACTIONS(8368), + [aux_sym_seek_statement_token1] = ACTIONS(8368), + [sym_reset_statement] = ACTIONS(8368), + [aux_sym_raise_event_statement_token1] = ACTIONS(8368), + [sym_stop_statement] = ACTIONS(8368), + [sym_beep_statement] = ACTIONS(8368), + [aux_sym_unload_statement_token1] = ACTIONS(8368), + [aux_sym_def_type_statement_token1] = ACTIONS(8368), + [aux_sym_def_type_statement_token2] = ACTIONS(8368), + [aux_sym_def_type_statement_token3] = ACTIONS(8368), + [aux_sym_def_type_statement_token4] = ACTIONS(8368), + [aux_sym_def_type_statement_token5] = ACTIONS(8368), + [aux_sym_def_type_statement_token6] = ACTIONS(8368), + [aux_sym_def_type_statement_token7] = ACTIONS(8368), + [aux_sym_def_type_statement_token8] = ACTIONS(8368), + [aux_sym_def_type_statement_token9] = ACTIONS(8368), + [aux_sym_def_type_statement_token10] = ACTIONS(8368), + [aux_sym_def_type_statement_token11] = ACTIONS(8368), + [aux_sym_def_type_statement_token12] = ACTIONS(8368), + [aux_sym_def_type_statement_token13] = ACTIONS(8368), + [aux_sym_def_type_statement_token14] = ACTIONS(8368), + [aux_sym_call_statement_token1] = ACTIONS(8368), + [sym__ambiguous_call_statement] = ACTIONS(8368), + [aux_sym_addressof_expression_token1] = ACTIONS(8368), + [aux_sym_type_of_expression_token1] = ACTIONS(8368), + [aux_sym_unary_expression_token1] = ACTIONS(8368), + [sym_string_literal] = ACTIONS(8370), + [sym_number_literal] = ACTIONS(8370), + [aux_sym_boolean_literal_token1] = ACTIONS(8368), + [aux_sym_boolean_literal_token2] = ACTIONS(8368), + [sym_nothing_literal] = ACTIONS(8368), + [sym_null_literal] = ACTIONS(8368), + [sym_empty_literal] = ACTIONS(8368), + [sym_date_literal] = ACTIONS(8370), + [anon_sym_POUND] = ACTIONS(8368), + }, + [STATE(5778)] = { + [aux_sym_erase_statement_repeat1] = STATE(5797), + [sym_identifier] = ACTIONS(8397), + [sym_newline] = ACTIONS(8399), + [anon_sym_COLON] = ACTIONS(8399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8397), + [aux_sym_frm_property_statement_token1] = ACTIONS(8397), + [anon_sym_DOT] = ACTIONS(8397), + [anon_sym_BANG] = ACTIONS(8399), + [aux_sym__attribute_identifier_token1] = ACTIONS(8397), + [aux_sym_option_statement_token3] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8397), + [aux_sym_preprocessor_const_token1] = ACTIONS(8397), + [sym_static_modifier] = ACTIONS(8397), + [sym__dim_keyword] = ACTIONS(8397), + [sym__redim_keyword] = ACTIONS(8397), + [aux_sym_get_accessor_token1] = ACTIONS(8397), + [aux_sym_set_accessor_token1] = ACTIONS(8397), + [anon_sym_COMMA] = ACTIONS(10797), + [aux_sym_const_declaration_token1] = ACTIONS(8397), + [anon_sym_LPAREN] = ACTIONS(8399), + [aux_sym_as_type_clause_token2] = ACTIONS(8397), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8397), + [aux_sym_visibility_token1] = ACTIONS(8397), + [aux_sym_visibility_token2] = ACTIONS(8397), + [aux_sym_elseif_fragment_token1] = ACTIONS(8397), + [aux_sym_else_fragment_token1] = ACTIONS(8397), + [aux_sym_select_statement_token1] = ACTIONS(8397), + [aux_sym_select_statement_token2] = ACTIONS(8397), + [aux_sym__for_header_token1] = ACTIONS(8397), + [aux_sym_do_statement_token1] = ACTIONS(8397), + [aux_sym_do_condition_token1] = ACTIONS(8397), + [aux_sym_with_statement_token1] = ACTIONS(8397), + [aux_sym_exit_statement_token1] = ACTIONS(8397), + [sym_end_statement] = ACTIONS(8399), + [aux_sym_on_goto_statement_token1] = ACTIONS(8397), + [aux_sym_on_goto_statement_token2] = ACTIONS(8397), + [aux_sym_on_error_statement_token2] = ACTIONS(8397), + [sym__ambiguous_redim_statement] = ACTIONS(8399), + [aux_sym_erase_statement_token1] = ACTIONS(8397), + [aux_sym_open_statement_token1] = ACTIONS(8397), + [aux_sym_file_mode_token2] = ACTIONS(8397), + [aux_sym_file_access_token2] = ACTIONS(8397), + [aux_sym_file_lock_token2] = ACTIONS(8397), + [aux_sym_print_statement_token1] = ACTIONS(8397), + [anon_sym_PLUS] = ACTIONS(8399), + [anon_sym_DASH] = ACTIONS(8397), + [anon_sym_QMARK] = ACTIONS(8399), + [aux_sym_close_statement_token1] = ACTIONS(8397), + [aux_sym_put_statement_token1] = ACTIONS(8397), + [aux_sym_unlock_statement_token1] = ACTIONS(8397), + [aux_sym_seek_statement_token1] = ACTIONS(8397), + [sym_reset_statement] = ACTIONS(8397), + [aux_sym_raise_event_statement_token1] = ACTIONS(8397), + [sym_stop_statement] = ACTIONS(8397), + [sym_beep_statement] = ACTIONS(8397), + [aux_sym_unload_statement_token1] = ACTIONS(8397), + [aux_sym_def_type_statement_token1] = ACTIONS(8397), + [aux_sym_def_type_statement_token2] = ACTIONS(8397), + [aux_sym_def_type_statement_token3] = ACTIONS(8397), + [aux_sym_def_type_statement_token4] = ACTIONS(8397), + [aux_sym_def_type_statement_token5] = ACTIONS(8397), + [aux_sym_def_type_statement_token6] = ACTIONS(8397), + [aux_sym_def_type_statement_token7] = ACTIONS(8397), + [aux_sym_def_type_statement_token8] = ACTIONS(8397), + [aux_sym_def_type_statement_token9] = ACTIONS(8397), + [aux_sym_def_type_statement_token10] = ACTIONS(8397), + [aux_sym_def_type_statement_token11] = ACTIONS(8397), + [aux_sym_def_type_statement_token12] = ACTIONS(8397), + [aux_sym_def_type_statement_token13] = ACTIONS(8397), + [aux_sym_def_type_statement_token14] = ACTIONS(8397), + [aux_sym_call_statement_token1] = ACTIONS(8397), + [sym__ambiguous_call_statement] = ACTIONS(8397), + [aux_sym_addressof_expression_token1] = ACTIONS(8397), + [aux_sym_type_of_expression_token1] = ACTIONS(8397), + [aux_sym_unary_expression_token1] = ACTIONS(8397), + [sym_string_literal] = ACTIONS(8399), + [sym_number_literal] = ACTIONS(8399), + [aux_sym_boolean_literal_token1] = ACTIONS(8397), + [aux_sym_boolean_literal_token2] = ACTIONS(8397), + [sym_nothing_literal] = ACTIONS(8397), + [sym_null_literal] = ACTIONS(8397), + [sym_empty_literal] = ACTIONS(8397), + [sym_date_literal] = ACTIONS(8399), + [anon_sym_POUND] = ACTIONS(8397), + }, + [STATE(5779)] = { + [sym_attribute_statement] = STATE(13781), + [aux_sym__procedure_attributes] = STATE(5779), + [sym_identifier] = ACTIONS(10799), + [sym_newline] = ACTIONS(10801), + [anon_sym_COLON] = ACTIONS(10801), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(10799), + [aux_sym_frm_property_statement_token1] = ACTIONS(10799), + [aux_sym_attribute_statement_token1] = ACTIONS(10803), + [anon_sym_DOT] = ACTIONS(10799), + [anon_sym_BANG] = ACTIONS(10801), + [aux_sym__attribute_identifier_token1] = ACTIONS(10799), + [aux_sym_option_statement_token3] = ACTIONS(10799), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(10799), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(10799), + [aux_sym_preprocessor_const_token1] = ACTIONS(10799), + [sym_static_modifier] = ACTIONS(10799), + [sym__dim_keyword] = ACTIONS(10799), + [sym__redim_keyword] = ACTIONS(10799), + [aux_sym_get_accessor_token1] = ACTIONS(10799), + [aux_sym_set_accessor_token1] = ACTIONS(10799), + [aux_sym_const_declaration_token1] = ACTIONS(10799), + [anon_sym_LPAREN] = ACTIONS(10801), + [aux_sym_as_type_clause_token2] = ACTIONS(10799), + [aux_sym_dotted_type_expression_token1] = ACTIONS(10799), + [aux_sym_visibility_token1] = ACTIONS(10799), + [aux_sym_visibility_token2] = ACTIONS(10799), + [aux_sym_elseif_fragment_token1] = ACTIONS(10799), + [aux_sym_else_fragment_token1] = ACTIONS(10799), + [aux_sym_select_statement_token1] = ACTIONS(10799), + [aux_sym__for_header_token1] = ACTIONS(10799), + [aux_sym_do_statement_token1] = ACTIONS(10799), + [aux_sym_do_condition_token1] = ACTIONS(10799), + [aux_sym_with_statement_token1] = ACTIONS(10799), + [aux_sym_exit_statement_token1] = ACTIONS(10799), + [sym_end_statement] = ACTIONS(10801), + [aux_sym_on_goto_statement_token1] = ACTIONS(10799), + [aux_sym_on_goto_statement_token2] = ACTIONS(10799), + [aux_sym_on_error_statement_token2] = ACTIONS(10799), + [sym__ambiguous_redim_statement] = ACTIONS(10801), + [aux_sym_erase_statement_token1] = ACTIONS(10799), + [aux_sym_open_statement_token1] = ACTIONS(10799), + [aux_sym_file_mode_token2] = ACTIONS(10799), + [aux_sym_file_access_token2] = ACTIONS(10799), + [aux_sym_file_lock_token2] = ACTIONS(10799), + [aux_sym_print_statement_token1] = ACTIONS(10799), + [anon_sym_PLUS] = ACTIONS(10801), + [anon_sym_DASH] = ACTIONS(10799), + [anon_sym_QMARK] = ACTIONS(10801), + [aux_sym_close_statement_token1] = ACTIONS(10799), + [aux_sym_put_statement_token1] = ACTIONS(10799), + [aux_sym_unlock_statement_token1] = ACTIONS(10799), + [aux_sym_seek_statement_token1] = ACTIONS(10799), + [sym_reset_statement] = ACTIONS(10799), + [aux_sym_raise_event_statement_token1] = ACTIONS(10799), + [sym_stop_statement] = ACTIONS(10799), + [sym_beep_statement] = ACTIONS(10799), + [aux_sym_unload_statement_token1] = ACTIONS(10799), + [aux_sym_def_type_statement_token1] = ACTIONS(10799), + [aux_sym_def_type_statement_token2] = ACTIONS(10799), + [aux_sym_def_type_statement_token3] = ACTIONS(10799), + [aux_sym_def_type_statement_token4] = ACTIONS(10799), + [aux_sym_def_type_statement_token5] = ACTIONS(10799), + [aux_sym_def_type_statement_token6] = ACTIONS(10799), + [aux_sym_def_type_statement_token7] = ACTIONS(10799), + [aux_sym_def_type_statement_token8] = ACTIONS(10799), + [aux_sym_def_type_statement_token9] = ACTIONS(10799), + [aux_sym_def_type_statement_token10] = ACTIONS(10799), + [aux_sym_def_type_statement_token11] = ACTIONS(10799), + [aux_sym_def_type_statement_token12] = ACTIONS(10799), + [aux_sym_def_type_statement_token13] = ACTIONS(10799), + [aux_sym_def_type_statement_token14] = ACTIONS(10799), + [aux_sym_call_statement_token1] = ACTIONS(10799), + [sym__ambiguous_call_statement] = ACTIONS(10799), + [aux_sym_addressof_expression_token1] = ACTIONS(10799), + [aux_sym_type_of_expression_token1] = ACTIONS(10799), + [aux_sym_unary_expression_token1] = ACTIONS(10799), + [sym_string_literal] = ACTIONS(10801), + [sym_number_literal] = ACTIONS(10801), + [aux_sym_boolean_literal_token1] = ACTIONS(10799), + [aux_sym_boolean_literal_token2] = ACTIONS(10799), + [sym_nothing_literal] = ACTIONS(10799), + [sym_null_literal] = ACTIONS(10799), + [sym_empty_literal] = ACTIONS(10799), + [sym_date_literal] = ACTIONS(10801), + [anon_sym_POUND] = ACTIONS(10799), + }, + [STATE(5780)] = { + [sym_do_condition] = STATE(6979), + [sym_identifier] = ACTIONS(8599), + [sym_newline] = ACTIONS(8601), + [anon_sym_COLON] = ACTIONS(8601), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8599), + [aux_sym_frm_property_statement_token1] = ACTIONS(8599), + [anon_sym_DOT] = ACTIONS(8599), + [anon_sym_BANG] = ACTIONS(8601), + [aux_sym__attribute_identifier_token1] = ACTIONS(8599), + [aux_sym_option_statement_token3] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8599), + [aux_sym_preprocessor_const_token1] = ACTIONS(8599), + [sym_static_modifier] = ACTIONS(8599), + [sym__dim_keyword] = ACTIONS(8599), + [sym__redim_keyword] = ACTIONS(8599), + [aux_sym_get_accessor_token1] = ACTIONS(8599), + [aux_sym_set_accessor_token1] = ACTIONS(8599), + [aux_sym_const_declaration_token1] = ACTIONS(8599), + [anon_sym_LPAREN] = ACTIONS(8601), + [aux_sym_as_type_clause_token2] = ACTIONS(8599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8599), + [aux_sym_visibility_token1] = ACTIONS(8599), + [aux_sym_visibility_token2] = ACTIONS(8599), + [aux_sym_elseif_fragment_token1] = ACTIONS(8599), + [aux_sym_else_fragment_token1] = ACTIONS(8599), + [aux_sym_select_statement_token1] = ACTIONS(8599), + [aux_sym__for_header_token1] = ACTIONS(8599), + [aux_sym_do_statement_token1] = ACTIONS(8599), + [aux_sym_do_condition_token1] = ACTIONS(10412), + [aux_sym_do_condition_token2] = ACTIONS(10412), + [aux_sym_with_statement_token1] = ACTIONS(8599), + [aux_sym_exit_statement_token1] = ACTIONS(8599), + [sym_end_statement] = ACTIONS(8601), + [aux_sym_on_goto_statement_token1] = ACTIONS(8599), + [aux_sym_on_goto_statement_token2] = ACTIONS(8599), + [aux_sym_on_error_statement_token2] = ACTIONS(8599), + [sym__ambiguous_redim_statement] = ACTIONS(8601), + [aux_sym_erase_statement_token1] = ACTIONS(8599), + [aux_sym_open_statement_token1] = ACTIONS(8599), + [aux_sym_file_mode_token2] = ACTIONS(8599), + [aux_sym_file_access_token2] = ACTIONS(8599), + [aux_sym_file_lock_token2] = ACTIONS(8599), + [aux_sym_print_statement_token1] = ACTIONS(8599), + [anon_sym_PLUS] = ACTIONS(8601), + [anon_sym_DASH] = ACTIONS(8599), + [anon_sym_QMARK] = ACTIONS(8601), + [aux_sym_close_statement_token1] = ACTIONS(8599), + [aux_sym_put_statement_token1] = ACTIONS(8599), + [aux_sym_unlock_statement_token1] = ACTIONS(8599), + [aux_sym_seek_statement_token1] = ACTIONS(8599), + [sym_reset_statement] = ACTIONS(8599), + [aux_sym_raise_event_statement_token1] = ACTIONS(8599), + [sym_stop_statement] = ACTIONS(8599), + [sym_beep_statement] = ACTIONS(8599), + [aux_sym_unload_statement_token1] = ACTIONS(8599), + [aux_sym_def_type_statement_token1] = ACTIONS(8599), + [aux_sym_def_type_statement_token2] = ACTIONS(8599), + [aux_sym_def_type_statement_token3] = ACTIONS(8599), + [aux_sym_def_type_statement_token4] = ACTIONS(8599), + [aux_sym_def_type_statement_token5] = ACTIONS(8599), + [aux_sym_def_type_statement_token6] = ACTIONS(8599), + [aux_sym_def_type_statement_token7] = ACTIONS(8599), + [aux_sym_def_type_statement_token8] = ACTIONS(8599), + [aux_sym_def_type_statement_token9] = ACTIONS(8599), + [aux_sym_def_type_statement_token10] = ACTIONS(8599), + [aux_sym_def_type_statement_token11] = ACTIONS(8599), + [aux_sym_def_type_statement_token12] = ACTIONS(8599), + [aux_sym_def_type_statement_token13] = ACTIONS(8599), + [aux_sym_def_type_statement_token14] = ACTIONS(8599), + [aux_sym_call_statement_token1] = ACTIONS(8599), + [sym__ambiguous_call_statement] = ACTIONS(8599), + [aux_sym_addressof_expression_token1] = ACTIONS(8599), + [aux_sym_type_of_expression_token1] = ACTIONS(8599), + [aux_sym_unary_expression_token1] = ACTIONS(8599), + [sym_string_literal] = ACTIONS(8601), + [sym_number_literal] = ACTIONS(8601), + [aux_sym_boolean_literal_token1] = ACTIONS(8599), + [aux_sym_boolean_literal_token2] = ACTIONS(8599), + [sym_nothing_literal] = ACTIONS(8599), + [sym_null_literal] = ACTIONS(8599), + [sym_empty_literal] = ACTIONS(8599), + [sym_date_literal] = ACTIONS(8601), + [anon_sym_POUND] = ACTIONS(8599), + }, + [STATE(5781)] = { + [sym_identifier] = ACTIONS(8587), + [sym_newline] = ACTIONS(8589), + [anon_sym_COLON] = ACTIONS(8589), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8587), + [aux_sym_frm_property_statement_token1] = ACTIONS(8587), + [anon_sym_DOT] = ACTIONS(8587), + [anon_sym_BANG] = ACTIONS(8589), + [aux_sym__attribute_identifier_token1] = ACTIONS(8587), + [aux_sym_option_statement_token3] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8587), + [aux_sym_preprocessor_const_token1] = ACTIONS(8587), + [sym_static_modifier] = ACTIONS(8587), + [sym__dim_keyword] = ACTIONS(8587), + [sym__redim_keyword] = ACTIONS(8587), + [aux_sym_get_accessor_token1] = ACTIONS(8587), + [aux_sym_set_accessor_token1] = ACTIONS(8587), + [anon_sym_COMMA] = ACTIONS(8589), + [aux_sym_const_declaration_token1] = ACTIONS(8587), + [anon_sym_LPAREN] = ACTIONS(8589), + [aux_sym_as_type_clause_token2] = ACTIONS(8587), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8587), + [aux_sym_visibility_token1] = ACTIONS(8587), + [aux_sym_visibility_token2] = ACTIONS(8587), + [aux_sym_elseif_fragment_token1] = ACTIONS(8587), + [aux_sym_else_fragment_token1] = ACTIONS(8587), + [aux_sym_select_statement_token1] = ACTIONS(8587), + [aux_sym_select_statement_token2] = ACTIONS(8587), + [aux_sym__for_header_token1] = ACTIONS(8587), + [aux_sym_do_statement_token1] = ACTIONS(8587), + [aux_sym_do_condition_token1] = ACTIONS(8587), + [aux_sym_with_statement_token1] = ACTIONS(8587), + [aux_sym_exit_statement_token1] = ACTIONS(8587), + [sym_end_statement] = ACTIONS(8589), + [aux_sym_on_goto_statement_token1] = ACTIONS(8587), + [aux_sym_on_goto_statement_token2] = ACTIONS(8587), + [aux_sym_on_error_statement_token2] = ACTIONS(8587), + [sym__ambiguous_redim_statement] = ACTIONS(8589), + [aux_sym_erase_statement_token1] = ACTIONS(8587), + [aux_sym_open_statement_token1] = ACTIONS(8587), + [aux_sym_file_mode_token2] = ACTIONS(8587), + [aux_sym_file_access_token2] = ACTIONS(8587), + [aux_sym_file_lock_token2] = ACTIONS(8587), + [aux_sym_print_statement_token1] = ACTIONS(8587), + [anon_sym_PLUS] = ACTIONS(8589), + [anon_sym_DASH] = ACTIONS(8587), + [anon_sym_SEMI] = ACTIONS(8589), + [anon_sym_QMARK] = ACTIONS(8589), + [aux_sym_close_statement_token1] = ACTIONS(8587), + [aux_sym_put_statement_token1] = ACTIONS(8587), + [aux_sym_unlock_statement_token1] = ACTIONS(8587), + [aux_sym_seek_statement_token1] = ACTIONS(8587), + [sym_reset_statement] = ACTIONS(8587), + [aux_sym_raise_event_statement_token1] = ACTIONS(8587), + [sym_stop_statement] = ACTIONS(8587), + [sym_beep_statement] = ACTIONS(8587), + [aux_sym_unload_statement_token1] = ACTIONS(8587), + [aux_sym_def_type_statement_token1] = ACTIONS(8587), + [aux_sym_def_type_statement_token2] = ACTIONS(8587), + [aux_sym_def_type_statement_token3] = ACTIONS(8587), + [aux_sym_def_type_statement_token4] = ACTIONS(8587), + [aux_sym_def_type_statement_token5] = ACTIONS(8587), + [aux_sym_def_type_statement_token6] = ACTIONS(8587), + [aux_sym_def_type_statement_token7] = ACTIONS(8587), + [aux_sym_def_type_statement_token8] = ACTIONS(8587), + [aux_sym_def_type_statement_token9] = ACTIONS(8587), + [aux_sym_def_type_statement_token10] = ACTIONS(8587), + [aux_sym_def_type_statement_token11] = ACTIONS(8587), + [aux_sym_def_type_statement_token12] = ACTIONS(8587), + [aux_sym_def_type_statement_token13] = ACTIONS(8587), + [aux_sym_def_type_statement_token14] = ACTIONS(8587), + [aux_sym_call_statement_token1] = ACTIONS(8587), + [sym__ambiguous_call_statement] = ACTIONS(8587), + [aux_sym_addressof_expression_token1] = ACTIONS(8587), + [aux_sym_type_of_expression_token1] = ACTIONS(8587), + [aux_sym_unary_expression_token1] = ACTIONS(8587), + [sym_string_literal] = ACTIONS(8589), + [sym_number_literal] = ACTIONS(8589), + [aux_sym_boolean_literal_token1] = ACTIONS(8587), + [aux_sym_boolean_literal_token2] = ACTIONS(8587), + [sym_nothing_literal] = ACTIONS(8587), + [sym_null_literal] = ACTIONS(8587), + [sym_empty_literal] = ACTIONS(8587), + [sym_date_literal] = ACTIONS(8589), + [anon_sym_POUND] = ACTIONS(8587), + }, + [STATE(5782)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5361), + [sym_identifier] = ACTIONS(4172), + [sym_newline] = ACTIONS(4170), + [anon_sym_COLON] = ACTIONS(4170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4172), + [aux_sym_frm_property_statement_token1] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [aux_sym__attribute_identifier_token1] = ACTIONS(4172), + [aux_sym_option_statement_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4172), + [aux_sym_preprocessor_const_token1] = ACTIONS(4172), + [sym_static_modifier] = ACTIONS(4172), + [sym__dim_keyword] = ACTIONS(4172), + [sym__redim_keyword] = ACTIONS(4172), + [aux_sym_get_accessor_token1] = ACTIONS(4172), + [aux_sym_set_accessor_token1] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(5154), + [aux_sym_const_declaration_token1] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4170), + [aux_sym_as_type_clause_token2] = ACTIONS(4172), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4172), + [aux_sym_visibility_token1] = ACTIONS(4172), + [aux_sym_visibility_token2] = ACTIONS(4172), + [aux_sym_elseif_fragment_token1] = ACTIONS(4172), + [aux_sym_else_fragment_token1] = ACTIONS(4172), + [aux_sym_select_statement_token1] = ACTIONS(4172), + [aux_sym__for_header_token1] = ACTIONS(4172), + [aux_sym_do_statement_token1] = ACTIONS(4172), + [aux_sym_do_condition_token1] = ACTIONS(4172), + [aux_sym_with_statement_token1] = ACTIONS(4172), + [aux_sym_exit_statement_token1] = ACTIONS(4172), + [sym_end_statement] = ACTIONS(4170), + [aux_sym_on_goto_statement_token1] = ACTIONS(4172), + [aux_sym_on_goto_statement_token2] = ACTIONS(4172), + [aux_sym_on_error_statement_token2] = ACTIONS(4172), + [sym__ambiguous_redim_statement] = ACTIONS(4170), + [aux_sym_erase_statement_token1] = ACTIONS(4172), + [aux_sym_open_statement_token1] = ACTIONS(4172), + [aux_sym_file_mode_token2] = ACTIONS(4172), + [aux_sym_file_access_token2] = ACTIONS(4172), + [aux_sym_file_lock_token2] = ACTIONS(4172), + [aux_sym_print_statement_token1] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4172), + [anon_sym_QMARK] = ACTIONS(4170), + [aux_sym_close_statement_token1] = ACTIONS(4172), + [aux_sym_put_statement_token1] = ACTIONS(4172), + [aux_sym_unlock_statement_token1] = ACTIONS(4172), + [aux_sym_seek_statement_token1] = ACTIONS(4172), + [sym_reset_statement] = ACTIONS(4172), + [aux_sym_raise_event_statement_token1] = ACTIONS(4172), + [sym_stop_statement] = ACTIONS(4172), + [sym_beep_statement] = ACTIONS(4172), + [aux_sym_unload_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token2] = ACTIONS(4172), + [aux_sym_def_type_statement_token3] = ACTIONS(4172), + [aux_sym_def_type_statement_token4] = ACTIONS(4172), + [aux_sym_def_type_statement_token5] = ACTIONS(4172), + [aux_sym_def_type_statement_token6] = ACTIONS(4172), + [aux_sym_def_type_statement_token7] = ACTIONS(4172), + [aux_sym_def_type_statement_token8] = ACTIONS(4172), + [aux_sym_def_type_statement_token9] = ACTIONS(4172), + [aux_sym_def_type_statement_token10] = ACTIONS(4172), + [aux_sym_def_type_statement_token11] = ACTIONS(4172), + [aux_sym_def_type_statement_token12] = ACTIONS(4172), + [aux_sym_def_type_statement_token13] = ACTIONS(4172), + [aux_sym_def_type_statement_token14] = ACTIONS(4172), + [aux_sym_call_statement_token1] = ACTIONS(4172), + [sym__ambiguous_call_statement] = ACTIONS(4172), + [aux_sym_addressof_expression_token1] = ACTIONS(4172), + [aux_sym_type_of_expression_token1] = ACTIONS(4172), + [aux_sym_unary_expression_token1] = ACTIONS(4172), + [sym_string_literal] = ACTIONS(4170), + [sym_number_literal] = ACTIONS(4170), + [aux_sym_boolean_literal_token1] = ACTIONS(4172), + [aux_sym_boolean_literal_token2] = ACTIONS(4172), + [sym_nothing_literal] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4172), + [sym_empty_literal] = ACTIONS(4172), + [sym_date_literal] = ACTIONS(4170), + [anon_sym_POUND] = ACTIONS(4172), + }, + [STATE(5783)] = { + [aux_sym_close_statement_repeat1] = STATE(5783), + [sym_identifier] = ACTIONS(8443), + [sym_newline] = ACTIONS(8445), + [anon_sym_COLON] = ACTIONS(8445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8443), + [aux_sym_frm_property_statement_token1] = ACTIONS(8443), + [anon_sym_DOT] = ACTIONS(8443), + [anon_sym_BANG] = ACTIONS(8445), + [aux_sym__attribute_identifier_token1] = ACTIONS(8443), + [aux_sym_option_statement_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8443), + [aux_sym_preprocessor_const_token1] = ACTIONS(8443), + [sym_static_modifier] = ACTIONS(8443), + [sym__dim_keyword] = ACTIONS(8443), + [sym__redim_keyword] = ACTIONS(8443), + [aux_sym_get_accessor_token1] = ACTIONS(8443), + [aux_sym_set_accessor_token1] = ACTIONS(8443), + [anon_sym_COMMA] = ACTIONS(10806), + [aux_sym_const_declaration_token1] = ACTIONS(8443), + [anon_sym_LPAREN] = ACTIONS(8445), + [aux_sym_as_type_clause_token2] = ACTIONS(8443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8443), + [aux_sym_visibility_token1] = ACTIONS(8443), + [aux_sym_visibility_token2] = ACTIONS(8443), + [aux_sym_elseif_fragment_token1] = ACTIONS(8443), + [aux_sym_else_fragment_token1] = ACTIONS(8443), + [aux_sym_select_statement_token1] = ACTIONS(8443), + [aux_sym__for_header_token1] = ACTIONS(8443), + [aux_sym_do_statement_token1] = ACTIONS(8443), + [aux_sym_do_statement_token2] = ACTIONS(8443), + [aux_sym_do_condition_token1] = ACTIONS(8443), + [aux_sym_with_statement_token1] = ACTIONS(8443), + [aux_sym_exit_statement_token1] = ACTIONS(8443), + [sym_end_statement] = ACTIONS(8445), + [aux_sym_on_goto_statement_token1] = ACTIONS(8443), + [aux_sym_on_goto_statement_token2] = ACTIONS(8443), + [aux_sym_on_error_statement_token2] = ACTIONS(8443), + [sym__ambiguous_redim_statement] = ACTIONS(8445), + [aux_sym_erase_statement_token1] = ACTIONS(8443), + [aux_sym_open_statement_token1] = ACTIONS(8443), + [aux_sym_file_mode_token2] = ACTIONS(8443), + [aux_sym_file_access_token2] = ACTIONS(8443), + [aux_sym_file_lock_token2] = ACTIONS(8443), + [aux_sym_print_statement_token1] = ACTIONS(8443), + [anon_sym_PLUS] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8443), + [anon_sym_QMARK] = ACTIONS(8445), + [aux_sym_close_statement_token1] = ACTIONS(8443), + [aux_sym_put_statement_token1] = ACTIONS(8443), + [aux_sym_unlock_statement_token1] = ACTIONS(8443), + [aux_sym_seek_statement_token1] = ACTIONS(8443), + [sym_reset_statement] = ACTIONS(8443), + [aux_sym_raise_event_statement_token1] = ACTIONS(8443), + [sym_stop_statement] = ACTIONS(8443), + [sym_beep_statement] = ACTIONS(8443), + [aux_sym_unload_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token2] = ACTIONS(8443), + [aux_sym_def_type_statement_token3] = ACTIONS(8443), + [aux_sym_def_type_statement_token4] = ACTIONS(8443), + [aux_sym_def_type_statement_token5] = ACTIONS(8443), + [aux_sym_def_type_statement_token6] = ACTIONS(8443), + [aux_sym_def_type_statement_token7] = ACTIONS(8443), + [aux_sym_def_type_statement_token8] = ACTIONS(8443), + [aux_sym_def_type_statement_token9] = ACTIONS(8443), + [aux_sym_def_type_statement_token10] = ACTIONS(8443), + [aux_sym_def_type_statement_token11] = ACTIONS(8443), + [aux_sym_def_type_statement_token12] = ACTIONS(8443), + [aux_sym_def_type_statement_token13] = ACTIONS(8443), + [aux_sym_def_type_statement_token14] = ACTIONS(8443), + [aux_sym_call_statement_token1] = ACTIONS(8443), + [sym__ambiguous_call_statement] = ACTIONS(8443), + [aux_sym_addressof_expression_token1] = ACTIONS(8443), + [aux_sym_type_of_expression_token1] = ACTIONS(8443), + [aux_sym_unary_expression_token1] = ACTIONS(8443), + [sym_string_literal] = ACTIONS(8445), + [sym_number_literal] = ACTIONS(8445), + [aux_sym_boolean_literal_token1] = ACTIONS(8443), + [aux_sym_boolean_literal_token2] = ACTIONS(8443), + [sym_nothing_literal] = ACTIONS(8443), + [sym_null_literal] = ACTIONS(8443), + [sym_empty_literal] = ACTIONS(8443), + [sym_date_literal] = ACTIONS(8445), + [anon_sym_POUND] = ACTIONS(8443), + }, + [STATE(5784)] = { + [aux_sym_close_statement_repeat1] = STATE(5798), + [sym_identifier] = ACTIONS(8265), + [sym_newline] = ACTIONS(8267), + [anon_sym_COLON] = ACTIONS(8267), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8265), + [aux_sym_frm_property_statement_token1] = ACTIONS(8265), + [anon_sym_DOT] = ACTIONS(8265), + [anon_sym_BANG] = ACTIONS(8267), + [aux_sym__attribute_identifier_token1] = ACTIONS(8265), + [aux_sym_option_statement_token3] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8265), + [aux_sym_preprocessor_const_token1] = ACTIONS(8265), + [sym_static_modifier] = ACTIONS(8265), + [sym__dim_keyword] = ACTIONS(8265), + [sym__redim_keyword] = ACTIONS(8265), + [aux_sym_get_accessor_token1] = ACTIONS(8265), + [aux_sym_set_accessor_token1] = ACTIONS(8265), + [anon_sym_COMMA] = ACTIONS(10809), + [aux_sym_const_declaration_token1] = ACTIONS(8265), + [anon_sym_LPAREN] = ACTIONS(8267), + [aux_sym_as_type_clause_token2] = ACTIONS(8265), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8265), + [aux_sym_visibility_token1] = ACTIONS(8265), + [aux_sym_visibility_token2] = ACTIONS(8265), + [aux_sym_elseif_fragment_token1] = ACTIONS(8265), + [aux_sym_else_fragment_token1] = ACTIONS(8265), + [aux_sym_select_statement_token1] = ACTIONS(8265), + [aux_sym_select_statement_token2] = ACTIONS(8265), + [aux_sym__for_header_token1] = ACTIONS(8265), + [aux_sym_do_statement_token1] = ACTIONS(8265), + [aux_sym_do_condition_token1] = ACTIONS(8265), + [aux_sym_with_statement_token1] = ACTIONS(8265), + [aux_sym_exit_statement_token1] = ACTIONS(8265), + [sym_end_statement] = ACTIONS(8267), + [aux_sym_on_goto_statement_token1] = ACTIONS(8265), + [aux_sym_on_goto_statement_token2] = ACTIONS(8265), + [aux_sym_on_error_statement_token2] = ACTIONS(8265), + [sym__ambiguous_redim_statement] = ACTIONS(8267), + [aux_sym_erase_statement_token1] = ACTIONS(8265), + [aux_sym_open_statement_token1] = ACTIONS(8265), + [aux_sym_file_mode_token2] = ACTIONS(8265), + [aux_sym_file_access_token2] = ACTIONS(8265), + [aux_sym_file_lock_token2] = ACTIONS(8265), + [aux_sym_print_statement_token1] = ACTIONS(8265), + [anon_sym_PLUS] = ACTIONS(8267), + [anon_sym_DASH] = ACTIONS(8265), + [anon_sym_QMARK] = ACTIONS(8267), + [aux_sym_close_statement_token1] = ACTIONS(8265), + [aux_sym_put_statement_token1] = ACTIONS(8265), + [aux_sym_unlock_statement_token1] = ACTIONS(8265), + [aux_sym_seek_statement_token1] = ACTIONS(8265), + [sym_reset_statement] = ACTIONS(8265), + [aux_sym_raise_event_statement_token1] = ACTIONS(8265), + [sym_stop_statement] = ACTIONS(8265), + [sym_beep_statement] = ACTIONS(8265), + [aux_sym_unload_statement_token1] = ACTIONS(8265), + [aux_sym_def_type_statement_token1] = ACTIONS(8265), + [aux_sym_def_type_statement_token2] = ACTIONS(8265), + [aux_sym_def_type_statement_token3] = ACTIONS(8265), + [aux_sym_def_type_statement_token4] = ACTIONS(8265), + [aux_sym_def_type_statement_token5] = ACTIONS(8265), + [aux_sym_def_type_statement_token6] = ACTIONS(8265), + [aux_sym_def_type_statement_token7] = ACTIONS(8265), + [aux_sym_def_type_statement_token8] = ACTIONS(8265), + [aux_sym_def_type_statement_token9] = ACTIONS(8265), + [aux_sym_def_type_statement_token10] = ACTIONS(8265), + [aux_sym_def_type_statement_token11] = ACTIONS(8265), + [aux_sym_def_type_statement_token12] = ACTIONS(8265), + [aux_sym_def_type_statement_token13] = ACTIONS(8265), + [aux_sym_def_type_statement_token14] = ACTIONS(8265), + [aux_sym_call_statement_token1] = ACTIONS(8265), + [sym__ambiguous_call_statement] = ACTIONS(8265), + [aux_sym_addressof_expression_token1] = ACTIONS(8265), + [aux_sym_type_of_expression_token1] = ACTIONS(8265), + [aux_sym_unary_expression_token1] = ACTIONS(8265), + [sym_string_literal] = ACTIONS(8267), + [sym_number_literal] = ACTIONS(8267), + [aux_sym_boolean_literal_token1] = ACTIONS(8265), + [aux_sym_boolean_literal_token2] = ACTIONS(8265), + [sym_nothing_literal] = ACTIONS(8265), + [sym_null_literal] = ACTIONS(8265), + [sym_empty_literal] = ACTIONS(8265), + [sym_date_literal] = ACTIONS(8267), + [anon_sym_POUND] = ACTIONS(8265), + }, + [STATE(5785)] = { + [sym_identifier] = ACTIONS(9150), + [sym_newline] = ACTIONS(9152), + [anon_sym_COLON] = ACTIONS(9152), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9154), + [aux_sym_frm_property_statement_token1] = ACTIONS(9150), + [anon_sym_DOT] = ACTIONS(9150), + [anon_sym_BANG] = ACTIONS(9152), + [aux_sym__attribute_identifier_token1] = ACTIONS(9150), + [aux_sym_option_statement_token3] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9154), + [aux_sym_type_preprocessor_elseif_token1] = ACTIONS(9150), + [aux_sym_type_preprocessor_else_token1] = ACTIONS(9150), + [aux_sym_preprocessor_const_token1] = ACTIONS(9150), + [sym_static_modifier] = ACTIONS(9150), + [sym__dim_keyword] = ACTIONS(9150), + [sym__redim_keyword] = ACTIONS(9150), + [aux_sym_get_accessor_token1] = ACTIONS(9150), + [aux_sym_set_accessor_token1] = ACTIONS(9150), + [aux_sym_const_declaration_token1] = ACTIONS(9150), + [anon_sym_LPAREN] = ACTIONS(9152), + [aux_sym_as_type_clause_token2] = ACTIONS(9150), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9150), + [aux_sym_visibility_token1] = ACTIONS(9150), + [aux_sym_visibility_token2] = ACTIONS(9150), + [aux_sym_elseif_fragment_token1] = ACTIONS(9154), + [aux_sym_else_fragment_token1] = ACTIONS(9154), + [aux_sym_select_statement_token1] = ACTIONS(9154), + [aux_sym__for_header_token1] = ACTIONS(9154), + [aux_sym_do_statement_token1] = ACTIONS(9154), + [aux_sym_do_condition_token1] = ACTIONS(9154), + [aux_sym_with_statement_token1] = ACTIONS(9154), + [aux_sym_exit_statement_token1] = ACTIONS(9150), + [sym_end_statement] = ACTIONS(9152), + [aux_sym_on_goto_statement_token1] = ACTIONS(9150), + [aux_sym_on_goto_statement_token2] = ACTIONS(9150), + [aux_sym_on_error_statement_token2] = ACTIONS(9150), + [sym__ambiguous_redim_statement] = ACTIONS(9152), + [aux_sym_erase_statement_token1] = ACTIONS(9150), + [aux_sym_open_statement_token1] = ACTIONS(9150), + [aux_sym_file_mode_token2] = ACTIONS(9150), + [aux_sym_file_access_token2] = ACTIONS(9150), + [aux_sym_file_lock_token2] = ACTIONS(9150), + [aux_sym_print_statement_token1] = ACTIONS(9150), + [anon_sym_PLUS] = ACTIONS(9152), + [anon_sym_DASH] = ACTIONS(9150), + [anon_sym_QMARK] = ACTIONS(9152), + [aux_sym_close_statement_token1] = ACTIONS(9150), + [aux_sym_put_statement_token1] = ACTIONS(9150), + [aux_sym_unlock_statement_token1] = ACTIONS(9150), + [aux_sym_seek_statement_token1] = ACTIONS(9150), + [sym_reset_statement] = ACTIONS(9150), + [aux_sym_raise_event_statement_token1] = ACTIONS(9150), + [sym_stop_statement] = ACTIONS(9150), + [sym_beep_statement] = ACTIONS(9150), + [aux_sym_unload_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token2] = ACTIONS(9150), + [aux_sym_def_type_statement_token3] = ACTIONS(9150), + [aux_sym_def_type_statement_token4] = ACTIONS(9150), + [aux_sym_def_type_statement_token5] = ACTIONS(9150), + [aux_sym_def_type_statement_token6] = ACTIONS(9150), + [aux_sym_def_type_statement_token7] = ACTIONS(9150), + [aux_sym_def_type_statement_token8] = ACTIONS(9150), + [aux_sym_def_type_statement_token9] = ACTIONS(9150), + [aux_sym_def_type_statement_token10] = ACTIONS(9150), + [aux_sym_def_type_statement_token11] = ACTIONS(9150), + [aux_sym_def_type_statement_token12] = ACTIONS(9150), + [aux_sym_def_type_statement_token13] = ACTIONS(9150), + [aux_sym_def_type_statement_token14] = ACTIONS(9150), + [aux_sym_call_statement_token1] = ACTIONS(9150), + [sym__ambiguous_call_statement] = ACTIONS(9150), + [aux_sym_addressof_expression_token1] = ACTIONS(9150), + [aux_sym_type_of_expression_token1] = ACTIONS(9150), + [aux_sym_unary_expression_token1] = ACTIONS(9150), + [sym_string_literal] = ACTIONS(9152), + [sym_number_literal] = ACTIONS(9152), + [aux_sym_boolean_literal_token1] = ACTIONS(9150), + [aux_sym_boolean_literal_token2] = ACTIONS(9150), + [sym_nothing_literal] = ACTIONS(9150), + [sym_null_literal] = ACTIONS(9150), + [sym_empty_literal] = ACTIONS(9150), + [sym_date_literal] = ACTIONS(9152), + [anon_sym_POUND] = ACTIONS(9150), + }, + [STATE(5786)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5110), + [sym_identifier] = ACTIONS(8308), + [sym_newline] = ACTIONS(8310), + [anon_sym_COLON] = ACTIONS(8310), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8308), + [aux_sym_frm_property_statement_token1] = ACTIONS(8308), + [anon_sym_DOT] = ACTIONS(8308), + [anon_sym_BANG] = ACTIONS(8310), + [aux_sym__attribute_identifier_token1] = ACTIONS(8308), + [aux_sym_option_statement_token3] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8308), + [aux_sym_preprocessor_const_token1] = ACTIONS(8308), + [sym_static_modifier] = ACTIONS(8308), + [sym__dim_keyword] = ACTIONS(8308), + [sym__redim_keyword] = ACTIONS(8308), + [aux_sym_get_accessor_token1] = ACTIONS(8308), + [aux_sym_set_accessor_token1] = ACTIONS(8308), + [anon_sym_COMMA] = ACTIONS(10441), + [aux_sym_const_declaration_token1] = ACTIONS(8308), + [anon_sym_LPAREN] = ACTIONS(8310), + [aux_sym_as_type_clause_token2] = ACTIONS(8308), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8308), + [aux_sym_visibility_token1] = ACTIONS(8308), + [aux_sym_visibility_token2] = ACTIONS(8308), + [aux_sym_elseif_fragment_token1] = ACTIONS(8308), + [aux_sym_else_fragment_token1] = ACTIONS(8308), + [aux_sym_select_statement_token1] = ACTIONS(8308), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8308), + [aux_sym__for_header_token1] = ACTIONS(8308), + [aux_sym_do_statement_token1] = ACTIONS(8308), + [aux_sym_do_condition_token1] = ACTIONS(8308), + [aux_sym_with_statement_token1] = ACTIONS(8308), + [aux_sym_exit_statement_token1] = ACTIONS(8308), + [sym_end_statement] = ACTIONS(8310), + [aux_sym_on_goto_statement_token1] = ACTIONS(8308), + [aux_sym_on_goto_statement_token2] = ACTIONS(8308), + [aux_sym_on_error_statement_token2] = ACTIONS(8308), + [sym__ambiguous_redim_statement] = ACTIONS(8310), + [aux_sym_erase_statement_token1] = ACTIONS(8308), + [aux_sym_open_statement_token1] = ACTIONS(8308), + [aux_sym_file_mode_token2] = ACTIONS(8308), + [aux_sym_file_access_token2] = ACTIONS(8308), + [aux_sym_file_lock_token2] = ACTIONS(8308), + [aux_sym_print_statement_token1] = ACTIONS(8308), + [anon_sym_PLUS] = ACTIONS(8310), + [anon_sym_DASH] = ACTIONS(8308), + [anon_sym_QMARK] = ACTIONS(8310), + [aux_sym_close_statement_token1] = ACTIONS(8308), + [aux_sym_put_statement_token1] = ACTIONS(8308), + [aux_sym_unlock_statement_token1] = ACTIONS(8308), + [aux_sym_seek_statement_token1] = ACTIONS(8308), + [sym_reset_statement] = ACTIONS(8308), + [aux_sym_raise_event_statement_token1] = ACTIONS(8308), + [sym_stop_statement] = ACTIONS(8308), + [sym_beep_statement] = ACTIONS(8308), + [aux_sym_unload_statement_token1] = ACTIONS(8308), + [aux_sym_def_type_statement_token1] = ACTIONS(8308), + [aux_sym_def_type_statement_token2] = ACTIONS(8308), + [aux_sym_def_type_statement_token3] = ACTIONS(8308), + [aux_sym_def_type_statement_token4] = ACTIONS(8308), + [aux_sym_def_type_statement_token5] = ACTIONS(8308), + [aux_sym_def_type_statement_token6] = ACTIONS(8308), + [aux_sym_def_type_statement_token7] = ACTIONS(8308), + [aux_sym_def_type_statement_token8] = ACTIONS(8308), + [aux_sym_def_type_statement_token9] = ACTIONS(8308), + [aux_sym_def_type_statement_token10] = ACTIONS(8308), + [aux_sym_def_type_statement_token11] = ACTIONS(8308), + [aux_sym_def_type_statement_token12] = ACTIONS(8308), + [aux_sym_def_type_statement_token13] = ACTIONS(8308), + [aux_sym_def_type_statement_token14] = ACTIONS(8308), + [aux_sym_call_statement_token1] = ACTIONS(8308), + [sym__ambiguous_call_statement] = ACTIONS(8308), + [aux_sym_addressof_expression_token1] = ACTIONS(8308), + [aux_sym_type_of_expression_token1] = ACTIONS(8308), + [aux_sym_unary_expression_token1] = ACTIONS(8308), + [sym_string_literal] = ACTIONS(8310), + [sym_number_literal] = ACTIONS(8310), + [aux_sym_boolean_literal_token1] = ACTIONS(8308), + [aux_sym_boolean_literal_token2] = ACTIONS(8308), + [sym_nothing_literal] = ACTIONS(8308), + [sym_null_literal] = ACTIONS(8308), + [sym_empty_literal] = ACTIONS(8308), + [sym_date_literal] = ACTIONS(8310), + [anon_sym_POUND] = ACTIONS(8308), + }, + [STATE(5787)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5111), + [sym_identifier] = ACTIONS(8332), + [sym_newline] = ACTIONS(8334), + [anon_sym_COLON] = ACTIONS(8334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8332), + [aux_sym_frm_property_statement_token1] = ACTIONS(8332), + [anon_sym_DOT] = ACTIONS(8332), + [anon_sym_BANG] = ACTIONS(8334), + [aux_sym__attribute_identifier_token1] = ACTIONS(8332), + [aux_sym_option_statement_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8332), + [aux_sym_preprocessor_const_token1] = ACTIONS(8332), + [sym_static_modifier] = ACTIONS(8332), + [sym__dim_keyword] = ACTIONS(8332), + [sym__redim_keyword] = ACTIONS(8332), + [aux_sym_get_accessor_token1] = ACTIONS(8332), + [aux_sym_set_accessor_token1] = ACTIONS(8332), + [anon_sym_COMMA] = ACTIONS(10441), + [aux_sym_const_declaration_token1] = ACTIONS(8332), + [anon_sym_LPAREN] = ACTIONS(8334), + [aux_sym_as_type_clause_token2] = ACTIONS(8332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8332), + [aux_sym_visibility_token1] = ACTIONS(8332), + [aux_sym_visibility_token2] = ACTIONS(8332), + [aux_sym_elseif_fragment_token1] = ACTIONS(8332), + [aux_sym_else_fragment_token1] = ACTIONS(8332), + [aux_sym_select_statement_token1] = ACTIONS(8332), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8332), + [aux_sym__for_header_token1] = ACTIONS(8332), + [aux_sym_do_statement_token1] = ACTIONS(8332), + [aux_sym_do_condition_token1] = ACTIONS(8332), + [aux_sym_with_statement_token1] = ACTIONS(8332), + [aux_sym_exit_statement_token1] = ACTIONS(8332), + [sym_end_statement] = ACTIONS(8334), + [aux_sym_on_goto_statement_token1] = ACTIONS(8332), + [aux_sym_on_goto_statement_token2] = ACTIONS(8332), + [aux_sym_on_error_statement_token2] = ACTIONS(8332), + [sym__ambiguous_redim_statement] = ACTIONS(8334), + [aux_sym_erase_statement_token1] = ACTIONS(8332), + [aux_sym_open_statement_token1] = ACTIONS(8332), + [aux_sym_file_mode_token2] = ACTIONS(8332), + [aux_sym_file_access_token2] = ACTIONS(8332), + [aux_sym_file_lock_token2] = ACTIONS(8332), + [aux_sym_print_statement_token1] = ACTIONS(8332), + [anon_sym_PLUS] = ACTIONS(8334), + [anon_sym_DASH] = ACTIONS(8332), + [anon_sym_QMARK] = ACTIONS(8334), + [aux_sym_close_statement_token1] = ACTIONS(8332), + [aux_sym_put_statement_token1] = ACTIONS(8332), + [aux_sym_unlock_statement_token1] = ACTIONS(8332), + [aux_sym_seek_statement_token1] = ACTIONS(8332), + [sym_reset_statement] = ACTIONS(8332), + [aux_sym_raise_event_statement_token1] = ACTIONS(8332), + [sym_stop_statement] = ACTIONS(8332), + [sym_beep_statement] = ACTIONS(8332), + [aux_sym_unload_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token2] = ACTIONS(8332), + [aux_sym_def_type_statement_token3] = ACTIONS(8332), + [aux_sym_def_type_statement_token4] = ACTIONS(8332), + [aux_sym_def_type_statement_token5] = ACTIONS(8332), + [aux_sym_def_type_statement_token6] = ACTIONS(8332), + [aux_sym_def_type_statement_token7] = ACTIONS(8332), + [aux_sym_def_type_statement_token8] = ACTIONS(8332), + [aux_sym_def_type_statement_token9] = ACTIONS(8332), + [aux_sym_def_type_statement_token10] = ACTIONS(8332), + [aux_sym_def_type_statement_token11] = ACTIONS(8332), + [aux_sym_def_type_statement_token12] = ACTIONS(8332), + [aux_sym_def_type_statement_token13] = ACTIONS(8332), + [aux_sym_def_type_statement_token14] = ACTIONS(8332), + [aux_sym_call_statement_token1] = ACTIONS(8332), + [sym__ambiguous_call_statement] = ACTIONS(8332), + [aux_sym_addressof_expression_token1] = ACTIONS(8332), + [aux_sym_type_of_expression_token1] = ACTIONS(8332), + [aux_sym_unary_expression_token1] = ACTIONS(8332), + [sym_string_literal] = ACTIONS(8334), + [sym_number_literal] = ACTIONS(8334), + [aux_sym_boolean_literal_token1] = ACTIONS(8332), + [aux_sym_boolean_literal_token2] = ACTIONS(8332), + [sym_nothing_literal] = ACTIONS(8332), + [sym_null_literal] = ACTIONS(8332), + [sym_empty_literal] = ACTIONS(8332), + [sym_date_literal] = ACTIONS(8334), + [anon_sym_POUND] = ACTIONS(8332), + }, + [STATE(5788)] = { + [sym_identifier] = ACTIONS(5716), + [sym_newline] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5716), + [aux_sym_frm_property_statement_token1] = ACTIONS(5716), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_BANG] = ACTIONS(5718), + [aux_sym__attribute_identifier_token1] = ACTIONS(5716), + [aux_sym_option_statement_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5716), + [aux_sym_preprocessor_const_token1] = ACTIONS(5716), + [sym_static_modifier] = ACTIONS(5716), + [sym__dim_keyword] = ACTIONS(5716), + [sym__redim_keyword] = ACTIONS(5716), + [aux_sym_get_accessor_token1] = ACTIONS(5716), + [aux_sym_set_accessor_token1] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5718), + [aux_sym_const_declaration_token1] = ACTIONS(5716), + [anon_sym_LPAREN] = ACTIONS(5718), + [aux_sym_as_type_clause_token2] = ACTIONS(5716), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5716), + [aux_sym_visibility_token1] = ACTIONS(5716), + [aux_sym_visibility_token2] = ACTIONS(5716), + [aux_sym_elseif_fragment_token1] = ACTIONS(5716), + [aux_sym_else_fragment_token1] = ACTIONS(5716), + [aux_sym_select_statement_token1] = ACTIONS(5716), + [aux_sym_select_statement_token2] = ACTIONS(5716), + [aux_sym__for_header_token1] = ACTIONS(5716), + [aux_sym_do_statement_token1] = ACTIONS(5716), + [aux_sym_do_condition_token1] = ACTIONS(5716), + [aux_sym_with_statement_token1] = ACTIONS(5716), + [aux_sym_exit_statement_token1] = ACTIONS(5716), + [sym_end_statement] = ACTIONS(5718), + [aux_sym_on_goto_statement_token1] = ACTIONS(5716), + [aux_sym_on_goto_statement_token2] = ACTIONS(5716), + [aux_sym_on_error_statement_token2] = ACTIONS(5716), + [sym__ambiguous_redim_statement] = ACTIONS(5718), + [aux_sym_erase_statement_token1] = ACTIONS(5716), + [aux_sym_open_statement_token1] = ACTIONS(5716), + [aux_sym_file_mode_token2] = ACTIONS(5716), + [aux_sym_file_access_token2] = ACTIONS(5716), + [aux_sym_file_lock_token2] = ACTIONS(5716), + [aux_sym_print_statement_token1] = ACTIONS(5716), + [anon_sym_PLUS] = ACTIONS(5718), + [anon_sym_DASH] = ACTIONS(5716), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [aux_sym_close_statement_token1] = ACTIONS(5716), + [aux_sym_put_statement_token1] = ACTIONS(5716), + [aux_sym_unlock_statement_token1] = ACTIONS(5716), + [aux_sym_seek_statement_token1] = ACTIONS(5716), + [sym_reset_statement] = ACTIONS(5716), + [aux_sym_raise_event_statement_token1] = ACTIONS(5716), + [sym_stop_statement] = ACTIONS(5716), + [sym_beep_statement] = ACTIONS(5716), + [aux_sym_unload_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token2] = ACTIONS(5716), + [aux_sym_def_type_statement_token3] = ACTIONS(5716), + [aux_sym_def_type_statement_token4] = ACTIONS(5716), + [aux_sym_def_type_statement_token5] = ACTIONS(5716), + [aux_sym_def_type_statement_token6] = ACTIONS(5716), + [aux_sym_def_type_statement_token7] = ACTIONS(5716), + [aux_sym_def_type_statement_token8] = ACTIONS(5716), + [aux_sym_def_type_statement_token9] = ACTIONS(5716), + [aux_sym_def_type_statement_token10] = ACTIONS(5716), + [aux_sym_def_type_statement_token11] = ACTIONS(5716), + [aux_sym_def_type_statement_token12] = ACTIONS(5716), + [aux_sym_def_type_statement_token13] = ACTIONS(5716), + [aux_sym_def_type_statement_token14] = ACTIONS(5716), + [aux_sym_call_statement_token1] = ACTIONS(5716), + [sym__ambiguous_call_statement] = ACTIONS(5716), + [aux_sym_addressof_expression_token1] = ACTIONS(5716), + [aux_sym_type_of_expression_token1] = ACTIONS(5716), + [aux_sym_unary_expression_token1] = ACTIONS(5716), + [sym_string_literal] = ACTIONS(5718), + [sym_number_literal] = ACTIONS(5718), + [aux_sym_boolean_literal_token1] = ACTIONS(5716), + [aux_sym_boolean_literal_token2] = ACTIONS(5716), + [sym_nothing_literal] = ACTIONS(5716), + [sym_null_literal] = ACTIONS(5716), + [sym_empty_literal] = ACTIONS(5716), + [sym_date_literal] = ACTIONS(5718), + [anon_sym_POUND] = ACTIONS(5716), + }, + [STATE(5789)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5112), + [sym_identifier] = ACTIONS(8336), + [sym_newline] = ACTIONS(8338), + [anon_sym_COLON] = ACTIONS(8338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8336), + [aux_sym_frm_property_statement_token1] = ACTIONS(8336), + [anon_sym_DOT] = ACTIONS(8336), + [anon_sym_BANG] = ACTIONS(8338), + [aux_sym__attribute_identifier_token1] = ACTIONS(8336), + [aux_sym_option_statement_token3] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8336), + [aux_sym_preprocessor_const_token1] = ACTIONS(8336), + [sym_static_modifier] = ACTIONS(8336), + [sym__dim_keyword] = ACTIONS(8336), + [sym__redim_keyword] = ACTIONS(8336), + [aux_sym_get_accessor_token1] = ACTIONS(8336), + [aux_sym_set_accessor_token1] = ACTIONS(8336), + [anon_sym_COMMA] = ACTIONS(10441), + [aux_sym_const_declaration_token1] = ACTIONS(8336), + [anon_sym_LPAREN] = ACTIONS(8338), + [aux_sym_as_type_clause_token2] = ACTIONS(8336), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8336), + [aux_sym_visibility_token1] = ACTIONS(8336), + [aux_sym_visibility_token2] = ACTIONS(8336), + [aux_sym_elseif_fragment_token1] = ACTIONS(8336), + [aux_sym_else_fragment_token1] = ACTIONS(8336), + [aux_sym_select_statement_token1] = ACTIONS(8336), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8336), + [aux_sym__for_header_token1] = ACTIONS(8336), + [aux_sym_do_statement_token1] = ACTIONS(8336), + [aux_sym_do_condition_token1] = ACTIONS(8336), + [aux_sym_with_statement_token1] = ACTIONS(8336), + [aux_sym_exit_statement_token1] = ACTIONS(8336), + [sym_end_statement] = ACTIONS(8338), + [aux_sym_on_goto_statement_token1] = ACTIONS(8336), + [aux_sym_on_goto_statement_token2] = ACTIONS(8336), + [aux_sym_on_error_statement_token2] = ACTIONS(8336), + [sym__ambiguous_redim_statement] = ACTIONS(8338), + [aux_sym_erase_statement_token1] = ACTIONS(8336), + [aux_sym_open_statement_token1] = ACTIONS(8336), + [aux_sym_file_mode_token2] = ACTIONS(8336), + [aux_sym_file_access_token2] = ACTIONS(8336), + [aux_sym_file_lock_token2] = ACTIONS(8336), + [aux_sym_print_statement_token1] = ACTIONS(8336), + [anon_sym_PLUS] = ACTIONS(8338), + [anon_sym_DASH] = ACTIONS(8336), + [anon_sym_QMARK] = ACTIONS(8338), + [aux_sym_close_statement_token1] = ACTIONS(8336), + [aux_sym_put_statement_token1] = ACTIONS(8336), + [aux_sym_unlock_statement_token1] = ACTIONS(8336), + [aux_sym_seek_statement_token1] = ACTIONS(8336), + [sym_reset_statement] = ACTIONS(8336), + [aux_sym_raise_event_statement_token1] = ACTIONS(8336), + [sym_stop_statement] = ACTIONS(8336), + [sym_beep_statement] = ACTIONS(8336), + [aux_sym_unload_statement_token1] = ACTIONS(8336), + [aux_sym_def_type_statement_token1] = ACTIONS(8336), + [aux_sym_def_type_statement_token2] = ACTIONS(8336), + [aux_sym_def_type_statement_token3] = ACTIONS(8336), + [aux_sym_def_type_statement_token4] = ACTIONS(8336), + [aux_sym_def_type_statement_token5] = ACTIONS(8336), + [aux_sym_def_type_statement_token6] = ACTIONS(8336), + [aux_sym_def_type_statement_token7] = ACTIONS(8336), + [aux_sym_def_type_statement_token8] = ACTIONS(8336), + [aux_sym_def_type_statement_token9] = ACTIONS(8336), + [aux_sym_def_type_statement_token10] = ACTIONS(8336), + [aux_sym_def_type_statement_token11] = ACTIONS(8336), + [aux_sym_def_type_statement_token12] = ACTIONS(8336), + [aux_sym_def_type_statement_token13] = ACTIONS(8336), + [aux_sym_def_type_statement_token14] = ACTIONS(8336), + [aux_sym_call_statement_token1] = ACTIONS(8336), + [sym__ambiguous_call_statement] = ACTIONS(8336), + [aux_sym_addressof_expression_token1] = ACTIONS(8336), + [aux_sym_type_of_expression_token1] = ACTIONS(8336), + [aux_sym_unary_expression_token1] = ACTIONS(8336), + [sym_string_literal] = ACTIONS(8338), + [sym_number_literal] = ACTIONS(8338), + [aux_sym_boolean_literal_token1] = ACTIONS(8336), + [aux_sym_boolean_literal_token2] = ACTIONS(8336), + [sym_nothing_literal] = ACTIONS(8336), + [sym_null_literal] = ACTIONS(8336), + [sym_empty_literal] = ACTIONS(8336), + [sym_date_literal] = ACTIONS(8338), + [anon_sym_POUND] = ACTIONS(8336), + }, + [STATE(5790)] = { + [aux_sym_const_declaration_repeat1] = STATE(5113), + [sym_identifier] = ACTIONS(8346), + [sym_newline] = ACTIONS(8348), + [anon_sym_COLON] = ACTIONS(8348), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8346), + [aux_sym_frm_property_statement_token1] = ACTIONS(8346), + [anon_sym_DOT] = ACTIONS(8346), + [anon_sym_BANG] = ACTIONS(8348), + [aux_sym__attribute_identifier_token1] = ACTIONS(8346), + [aux_sym_option_statement_token3] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8346), + [aux_sym_preprocessor_const_token1] = ACTIONS(8346), + [sym_static_modifier] = ACTIONS(8346), + [sym__dim_keyword] = ACTIONS(8346), + [sym__redim_keyword] = ACTIONS(8346), + [aux_sym_get_accessor_token1] = ACTIONS(8346), + [aux_sym_set_accessor_token1] = ACTIONS(8346), + [anon_sym_COMMA] = ACTIONS(10443), + [aux_sym_const_declaration_token1] = ACTIONS(8346), + [anon_sym_LPAREN] = ACTIONS(8348), + [aux_sym_as_type_clause_token2] = ACTIONS(8346), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8346), + [aux_sym_visibility_token1] = ACTIONS(8346), + [aux_sym_visibility_token2] = ACTIONS(8346), + [aux_sym_elseif_fragment_token1] = ACTIONS(8346), + [aux_sym_else_fragment_token1] = ACTIONS(8346), + [aux_sym_select_statement_token1] = ACTIONS(8346), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8346), + [aux_sym__for_header_token1] = ACTIONS(8346), + [aux_sym_do_statement_token1] = ACTIONS(8346), + [aux_sym_do_condition_token1] = ACTIONS(8346), + [aux_sym_with_statement_token1] = ACTIONS(8346), + [aux_sym_exit_statement_token1] = ACTIONS(8346), + [sym_end_statement] = ACTIONS(8348), + [aux_sym_on_goto_statement_token1] = ACTIONS(8346), + [aux_sym_on_goto_statement_token2] = ACTIONS(8346), + [aux_sym_on_error_statement_token2] = ACTIONS(8346), + [sym__ambiguous_redim_statement] = ACTIONS(8348), + [aux_sym_erase_statement_token1] = ACTIONS(8346), + [aux_sym_open_statement_token1] = ACTIONS(8346), + [aux_sym_file_mode_token2] = ACTIONS(8346), + [aux_sym_file_access_token2] = ACTIONS(8346), + [aux_sym_file_lock_token2] = ACTIONS(8346), + [aux_sym_print_statement_token1] = ACTIONS(8346), + [anon_sym_PLUS] = ACTIONS(8348), + [anon_sym_DASH] = ACTIONS(8346), + [anon_sym_QMARK] = ACTIONS(8348), + [aux_sym_close_statement_token1] = ACTIONS(8346), + [aux_sym_put_statement_token1] = ACTIONS(8346), + [aux_sym_unlock_statement_token1] = ACTIONS(8346), + [aux_sym_seek_statement_token1] = ACTIONS(8346), + [sym_reset_statement] = ACTIONS(8346), + [aux_sym_raise_event_statement_token1] = ACTIONS(8346), + [sym_stop_statement] = ACTIONS(8346), + [sym_beep_statement] = ACTIONS(8346), + [aux_sym_unload_statement_token1] = ACTIONS(8346), + [aux_sym_def_type_statement_token1] = ACTIONS(8346), + [aux_sym_def_type_statement_token2] = ACTIONS(8346), + [aux_sym_def_type_statement_token3] = ACTIONS(8346), + [aux_sym_def_type_statement_token4] = ACTIONS(8346), + [aux_sym_def_type_statement_token5] = ACTIONS(8346), + [aux_sym_def_type_statement_token6] = ACTIONS(8346), + [aux_sym_def_type_statement_token7] = ACTIONS(8346), + [aux_sym_def_type_statement_token8] = ACTIONS(8346), + [aux_sym_def_type_statement_token9] = ACTIONS(8346), + [aux_sym_def_type_statement_token10] = ACTIONS(8346), + [aux_sym_def_type_statement_token11] = ACTIONS(8346), + [aux_sym_def_type_statement_token12] = ACTIONS(8346), + [aux_sym_def_type_statement_token13] = ACTIONS(8346), + [aux_sym_def_type_statement_token14] = ACTIONS(8346), + [aux_sym_call_statement_token1] = ACTIONS(8346), + [sym__ambiguous_call_statement] = ACTIONS(8346), + [aux_sym_addressof_expression_token1] = ACTIONS(8346), + [aux_sym_type_of_expression_token1] = ACTIONS(8346), + [aux_sym_unary_expression_token1] = ACTIONS(8346), + [sym_string_literal] = ACTIONS(8348), + [sym_number_literal] = ACTIONS(8348), + [aux_sym_boolean_literal_token1] = ACTIONS(8346), + [aux_sym_boolean_literal_token2] = ACTIONS(8346), + [sym_nothing_literal] = ACTIONS(8346), + [sym_null_literal] = ACTIONS(8346), + [sym_empty_literal] = ACTIONS(8346), + [sym_date_literal] = ACTIONS(8348), + [anon_sym_POUND] = ACTIONS(8346), + }, + [STATE(5791)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5093), + [sym_identifier] = ACTIONS(8332), + [sym_newline] = ACTIONS(8334), + [anon_sym_COLON] = ACTIONS(8334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8332), + [aux_sym_frm_property_statement_token1] = ACTIONS(8332), + [anon_sym_DOT] = ACTIONS(8332), + [anon_sym_BANG] = ACTIONS(8334), + [aux_sym__attribute_identifier_token1] = ACTIONS(8332), + [aux_sym_option_statement_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8332), + [aux_sym_preprocessor_const_token1] = ACTIONS(8332), + [sym_static_modifier] = ACTIONS(8332), + [sym__dim_keyword] = ACTIONS(8332), + [sym__redim_keyword] = ACTIONS(8332), + [aux_sym_get_accessor_token1] = ACTIONS(8332), + [aux_sym_set_accessor_token1] = ACTIONS(8332), + [anon_sym_COMMA] = ACTIONS(10441), + [aux_sym_const_declaration_token1] = ACTIONS(8332), + [anon_sym_LPAREN] = ACTIONS(8334), + [aux_sym_as_type_clause_token2] = ACTIONS(8332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8332), + [aux_sym_visibility_token1] = ACTIONS(8332), + [aux_sym_visibility_token2] = ACTIONS(8332), + [aux_sym_elseif_fragment_token1] = ACTIONS(8332), + [aux_sym_else_fragment_token1] = ACTIONS(8332), + [aux_sym_select_statement_token1] = ACTIONS(8332), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8332), + [aux_sym__for_header_token1] = ACTIONS(8332), + [aux_sym_do_statement_token1] = ACTIONS(8332), + [aux_sym_do_condition_token1] = ACTIONS(8332), + [aux_sym_with_statement_token1] = ACTIONS(8332), + [aux_sym_exit_statement_token1] = ACTIONS(8332), + [sym_end_statement] = ACTIONS(8334), + [aux_sym_on_goto_statement_token1] = ACTIONS(8332), + [aux_sym_on_goto_statement_token2] = ACTIONS(8332), + [aux_sym_on_error_statement_token2] = ACTIONS(8332), + [sym__ambiguous_redim_statement] = ACTIONS(8334), + [aux_sym_erase_statement_token1] = ACTIONS(8332), + [aux_sym_open_statement_token1] = ACTIONS(8332), + [aux_sym_file_mode_token2] = ACTIONS(8332), + [aux_sym_file_access_token2] = ACTIONS(8332), + [aux_sym_file_lock_token2] = ACTIONS(8332), + [aux_sym_print_statement_token1] = ACTIONS(8332), + [anon_sym_PLUS] = ACTIONS(8334), + [anon_sym_DASH] = ACTIONS(8332), + [anon_sym_QMARK] = ACTIONS(8334), + [aux_sym_close_statement_token1] = ACTIONS(8332), + [aux_sym_put_statement_token1] = ACTIONS(8332), + [aux_sym_unlock_statement_token1] = ACTIONS(8332), + [aux_sym_seek_statement_token1] = ACTIONS(8332), + [sym_reset_statement] = ACTIONS(8332), + [aux_sym_raise_event_statement_token1] = ACTIONS(8332), + [sym_stop_statement] = ACTIONS(8332), + [sym_beep_statement] = ACTIONS(8332), + [aux_sym_unload_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token2] = ACTIONS(8332), + [aux_sym_def_type_statement_token3] = ACTIONS(8332), + [aux_sym_def_type_statement_token4] = ACTIONS(8332), + [aux_sym_def_type_statement_token5] = ACTIONS(8332), + [aux_sym_def_type_statement_token6] = ACTIONS(8332), + [aux_sym_def_type_statement_token7] = ACTIONS(8332), + [aux_sym_def_type_statement_token8] = ACTIONS(8332), + [aux_sym_def_type_statement_token9] = ACTIONS(8332), + [aux_sym_def_type_statement_token10] = ACTIONS(8332), + [aux_sym_def_type_statement_token11] = ACTIONS(8332), + [aux_sym_def_type_statement_token12] = ACTIONS(8332), + [aux_sym_def_type_statement_token13] = ACTIONS(8332), + [aux_sym_def_type_statement_token14] = ACTIONS(8332), + [aux_sym_call_statement_token1] = ACTIONS(8332), + [sym__ambiguous_call_statement] = ACTIONS(8332), + [aux_sym_addressof_expression_token1] = ACTIONS(8332), + [aux_sym_type_of_expression_token1] = ACTIONS(8332), + [aux_sym_unary_expression_token1] = ACTIONS(8332), + [sym_string_literal] = ACTIONS(8334), + [sym_number_literal] = ACTIONS(8334), + [aux_sym_boolean_literal_token1] = ACTIONS(8332), + [aux_sym_boolean_literal_token2] = ACTIONS(8332), + [sym_nothing_literal] = ACTIONS(8332), + [sym_null_literal] = ACTIONS(8332), + [sym_empty_literal] = ACTIONS(8332), + [sym_date_literal] = ACTIONS(8334), + [anon_sym_POUND] = ACTIONS(8332), + }, + [STATE(5792)] = { + [aux_sym_redim_statement_repeat1] = STATE(5452), + [sym_identifier] = ACTIONS(8561), + [sym_newline] = ACTIONS(8563), + [anon_sym_COLON] = ACTIONS(8563), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8561), + [aux_sym_frm_property_statement_token1] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8561), + [anon_sym_BANG] = ACTIONS(8563), + [aux_sym__attribute_identifier_token1] = ACTIONS(8561), + [aux_sym_option_statement_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8561), + [aux_sym_preprocessor_const_token1] = ACTIONS(8561), + [sym_static_modifier] = ACTIONS(8561), + [sym__dim_keyword] = ACTIONS(8561), + [sym__redim_keyword] = ACTIONS(8561), + [aux_sym_get_accessor_token1] = ACTIONS(8561), + [aux_sym_set_accessor_token1] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(10613), + [aux_sym_const_declaration_token1] = ACTIONS(8561), + [anon_sym_LPAREN] = ACTIONS(8563), + [aux_sym_as_type_clause_token2] = ACTIONS(8561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8561), + [aux_sym_visibility_token1] = ACTIONS(8561), + [aux_sym_visibility_token2] = ACTIONS(8561), + [aux_sym_elseif_fragment_token1] = ACTIONS(8561), + [aux_sym_else_fragment_token1] = ACTIONS(8561), + [aux_sym_select_statement_token1] = ACTIONS(8561), + [aux_sym_select_statement_token2] = ACTIONS(8561), + [aux_sym__for_header_token1] = ACTIONS(8561), + [aux_sym_do_statement_token1] = ACTIONS(8561), + [aux_sym_do_condition_token1] = ACTIONS(8561), + [aux_sym_with_statement_token1] = ACTIONS(8561), + [aux_sym_exit_statement_token1] = ACTIONS(8561), + [sym_end_statement] = ACTIONS(8563), + [aux_sym_on_goto_statement_token1] = ACTIONS(8561), + [aux_sym_on_goto_statement_token2] = ACTIONS(8561), + [aux_sym_on_error_statement_token2] = ACTIONS(8561), + [sym__ambiguous_redim_statement] = ACTIONS(8563), + [aux_sym_erase_statement_token1] = ACTIONS(8561), + [aux_sym_open_statement_token1] = ACTIONS(8561), + [aux_sym_file_mode_token2] = ACTIONS(8561), + [aux_sym_file_access_token2] = ACTIONS(8561), + [aux_sym_file_lock_token2] = ACTIONS(8561), + [aux_sym_print_statement_token1] = ACTIONS(8561), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(8561), + [anon_sym_QMARK] = ACTIONS(8563), + [aux_sym_close_statement_token1] = ACTIONS(8561), + [aux_sym_put_statement_token1] = ACTIONS(8561), + [aux_sym_unlock_statement_token1] = ACTIONS(8561), + [aux_sym_seek_statement_token1] = ACTIONS(8561), + [sym_reset_statement] = ACTIONS(8561), + [aux_sym_raise_event_statement_token1] = ACTIONS(8561), + [sym_stop_statement] = ACTIONS(8561), + [sym_beep_statement] = ACTIONS(8561), + [aux_sym_unload_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token2] = ACTIONS(8561), + [aux_sym_def_type_statement_token3] = ACTIONS(8561), + [aux_sym_def_type_statement_token4] = ACTIONS(8561), + [aux_sym_def_type_statement_token5] = ACTIONS(8561), + [aux_sym_def_type_statement_token6] = ACTIONS(8561), + [aux_sym_def_type_statement_token7] = ACTIONS(8561), + [aux_sym_def_type_statement_token8] = ACTIONS(8561), + [aux_sym_def_type_statement_token9] = ACTIONS(8561), + [aux_sym_def_type_statement_token10] = ACTIONS(8561), + [aux_sym_def_type_statement_token11] = ACTIONS(8561), + [aux_sym_def_type_statement_token12] = ACTIONS(8561), + [aux_sym_def_type_statement_token13] = ACTIONS(8561), + [aux_sym_def_type_statement_token14] = ACTIONS(8561), + [aux_sym_call_statement_token1] = ACTIONS(8561), + [sym__ambiguous_call_statement] = ACTIONS(8561), + [aux_sym_addressof_expression_token1] = ACTIONS(8561), + [aux_sym_type_of_expression_token1] = ACTIONS(8561), + [aux_sym_unary_expression_token1] = ACTIONS(8561), + [sym_string_literal] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8563), + [aux_sym_boolean_literal_token1] = ACTIONS(8561), + [aux_sym_boolean_literal_token2] = ACTIONS(8561), + [sym_nothing_literal] = ACTIONS(8561), + [sym_null_literal] = ACTIONS(8561), + [sym_empty_literal] = ACTIONS(8561), + [sym_date_literal] = ACTIONS(8563), + [anon_sym_POUND] = ACTIONS(8561), + }, + [STATE(5793)] = { + [aux_sym_redim_statement_repeat1] = STATE(5746), + [sym_identifier] = ACTIONS(8561), + [sym_newline] = ACTIONS(8563), + [anon_sym_COLON] = ACTIONS(8563), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8561), + [aux_sym_frm_property_statement_token1] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8561), + [anon_sym_BANG] = ACTIONS(8563), + [aux_sym__attribute_identifier_token1] = ACTIONS(8561), + [aux_sym_option_statement_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8561), + [aux_sym_preprocessor_const_token1] = ACTIONS(8561), + [sym_static_modifier] = ACTIONS(8561), + [sym__dim_keyword] = ACTIONS(8561), + [sym__redim_keyword] = ACTIONS(8561), + [aux_sym_get_accessor_token1] = ACTIONS(8561), + [aux_sym_set_accessor_token1] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(10613), + [aux_sym_const_declaration_token1] = ACTIONS(8561), + [anon_sym_LPAREN] = ACTIONS(8563), + [aux_sym_as_type_clause_token2] = ACTIONS(8561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8561), + [aux_sym_visibility_token1] = ACTIONS(8561), + [aux_sym_visibility_token2] = ACTIONS(8561), + [aux_sym_elseif_fragment_token1] = ACTIONS(8561), + [aux_sym_else_fragment_token1] = ACTIONS(8561), + [aux_sym_select_statement_token1] = ACTIONS(8561), + [aux_sym_select_statement_token2] = ACTIONS(8561), + [aux_sym__for_header_token1] = ACTIONS(8561), + [aux_sym_do_statement_token1] = ACTIONS(8561), + [aux_sym_do_condition_token1] = ACTIONS(8561), + [aux_sym_with_statement_token1] = ACTIONS(8561), + [aux_sym_exit_statement_token1] = ACTIONS(8561), + [sym_end_statement] = ACTIONS(8563), + [aux_sym_on_goto_statement_token1] = ACTIONS(8561), + [aux_sym_on_goto_statement_token2] = ACTIONS(8561), + [aux_sym_on_error_statement_token2] = ACTIONS(8561), + [sym__ambiguous_redim_statement] = ACTIONS(8563), + [aux_sym_erase_statement_token1] = ACTIONS(8561), + [aux_sym_open_statement_token1] = ACTIONS(8561), + [aux_sym_file_mode_token2] = ACTIONS(8561), + [aux_sym_file_access_token2] = ACTIONS(8561), + [aux_sym_file_lock_token2] = ACTIONS(8561), + [aux_sym_print_statement_token1] = ACTIONS(8561), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(8561), + [anon_sym_QMARK] = ACTIONS(8563), + [aux_sym_close_statement_token1] = ACTIONS(8561), + [aux_sym_put_statement_token1] = ACTIONS(8561), + [aux_sym_unlock_statement_token1] = ACTIONS(8561), + [aux_sym_seek_statement_token1] = ACTIONS(8561), + [sym_reset_statement] = ACTIONS(8561), + [aux_sym_raise_event_statement_token1] = ACTIONS(8561), + [sym_stop_statement] = ACTIONS(8561), + [sym_beep_statement] = ACTIONS(8561), + [aux_sym_unload_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token2] = ACTIONS(8561), + [aux_sym_def_type_statement_token3] = ACTIONS(8561), + [aux_sym_def_type_statement_token4] = ACTIONS(8561), + [aux_sym_def_type_statement_token5] = ACTIONS(8561), + [aux_sym_def_type_statement_token6] = ACTIONS(8561), + [aux_sym_def_type_statement_token7] = ACTIONS(8561), + [aux_sym_def_type_statement_token8] = ACTIONS(8561), + [aux_sym_def_type_statement_token9] = ACTIONS(8561), + [aux_sym_def_type_statement_token10] = ACTIONS(8561), + [aux_sym_def_type_statement_token11] = ACTIONS(8561), + [aux_sym_def_type_statement_token12] = ACTIONS(8561), + [aux_sym_def_type_statement_token13] = ACTIONS(8561), + [aux_sym_def_type_statement_token14] = ACTIONS(8561), + [aux_sym_call_statement_token1] = ACTIONS(8561), + [sym__ambiguous_call_statement] = ACTIONS(8561), + [aux_sym_addressof_expression_token1] = ACTIONS(8561), + [aux_sym_type_of_expression_token1] = ACTIONS(8561), + [aux_sym_unary_expression_token1] = ACTIONS(8561), + [sym_string_literal] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8563), + [aux_sym_boolean_literal_token1] = ACTIONS(8561), + [aux_sym_boolean_literal_token2] = ACTIONS(8561), + [sym_nothing_literal] = ACTIONS(8561), + [sym_null_literal] = ACTIONS(8561), + [sym_empty_literal] = ACTIONS(8561), + [sym_date_literal] = ACTIONS(8563), + [anon_sym_POUND] = ACTIONS(8561), + }, + [STATE(5794)] = { + [sym_do_condition] = STATE(6788), + [sym_identifier] = ACTIONS(8170), + [sym_newline] = ACTIONS(8172), + [anon_sym_COLON] = ACTIONS(8172), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8170), + [aux_sym_frm_property_statement_token1] = ACTIONS(8170), + [anon_sym_DOT] = ACTIONS(8170), + [anon_sym_BANG] = ACTIONS(8172), + [aux_sym__attribute_identifier_token1] = ACTIONS(8170), + [aux_sym_option_statement_token3] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8170), + [aux_sym_preprocessor_const_token1] = ACTIONS(8170), + [sym_static_modifier] = ACTIONS(8170), + [sym__dim_keyword] = ACTIONS(8170), + [sym__redim_keyword] = ACTIONS(8170), + [aux_sym_get_accessor_token1] = ACTIONS(8170), + [aux_sym_set_accessor_token1] = ACTIONS(8170), + [aux_sym_const_declaration_token1] = ACTIONS(8170), + [anon_sym_LPAREN] = ACTIONS(8172), + [aux_sym_as_type_clause_token2] = ACTIONS(8170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8170), + [aux_sym_visibility_token1] = ACTIONS(8170), + [aux_sym_visibility_token2] = ACTIONS(8170), + [aux_sym_elseif_fragment_token1] = ACTIONS(8170), + [aux_sym_else_fragment_token1] = ACTIONS(8170), + [aux_sym_select_statement_token1] = ACTIONS(8170), + [aux_sym_select_statement_token2] = ACTIONS(8170), + [aux_sym__for_header_token1] = ACTIONS(8170), + [aux_sym_do_statement_token1] = ACTIONS(8170), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8170), + [aux_sym_exit_statement_token1] = ACTIONS(8170), + [sym_end_statement] = ACTIONS(8172), + [aux_sym_on_goto_statement_token1] = ACTIONS(8170), + [aux_sym_on_goto_statement_token2] = ACTIONS(8170), + [aux_sym_on_error_statement_token2] = ACTIONS(8170), + [sym__ambiguous_redim_statement] = ACTIONS(8172), + [aux_sym_erase_statement_token1] = ACTIONS(8170), + [aux_sym_open_statement_token1] = ACTIONS(8170), + [aux_sym_file_mode_token2] = ACTIONS(8170), + [aux_sym_file_access_token2] = ACTIONS(8170), + [aux_sym_file_lock_token2] = ACTIONS(8170), + [aux_sym_print_statement_token1] = ACTIONS(8170), + [anon_sym_PLUS] = ACTIONS(8172), + [anon_sym_DASH] = ACTIONS(8170), + [anon_sym_QMARK] = ACTIONS(8172), + [aux_sym_close_statement_token1] = ACTIONS(8170), + [aux_sym_put_statement_token1] = ACTIONS(8170), + [aux_sym_unlock_statement_token1] = ACTIONS(8170), + [aux_sym_seek_statement_token1] = ACTIONS(8170), + [sym_reset_statement] = ACTIONS(8170), + [aux_sym_raise_event_statement_token1] = ACTIONS(8170), + [sym_stop_statement] = ACTIONS(8170), + [sym_beep_statement] = ACTIONS(8170), + [aux_sym_unload_statement_token1] = ACTIONS(8170), + [aux_sym_def_type_statement_token1] = ACTIONS(8170), + [aux_sym_def_type_statement_token2] = ACTIONS(8170), + [aux_sym_def_type_statement_token3] = ACTIONS(8170), + [aux_sym_def_type_statement_token4] = ACTIONS(8170), + [aux_sym_def_type_statement_token5] = ACTIONS(8170), + [aux_sym_def_type_statement_token6] = ACTIONS(8170), + [aux_sym_def_type_statement_token7] = ACTIONS(8170), + [aux_sym_def_type_statement_token8] = ACTIONS(8170), + [aux_sym_def_type_statement_token9] = ACTIONS(8170), + [aux_sym_def_type_statement_token10] = ACTIONS(8170), + [aux_sym_def_type_statement_token11] = ACTIONS(8170), + [aux_sym_def_type_statement_token12] = ACTIONS(8170), + [aux_sym_def_type_statement_token13] = ACTIONS(8170), + [aux_sym_def_type_statement_token14] = ACTIONS(8170), + [aux_sym_call_statement_token1] = ACTIONS(8170), + [sym__ambiguous_call_statement] = ACTIONS(8170), + [aux_sym_addressof_expression_token1] = ACTIONS(8170), + [aux_sym_type_of_expression_token1] = ACTIONS(8170), + [aux_sym_unary_expression_token1] = ACTIONS(8170), + [sym_string_literal] = ACTIONS(8172), + [sym_number_literal] = ACTIONS(8172), + [aux_sym_boolean_literal_token1] = ACTIONS(8170), + [aux_sym_boolean_literal_token2] = ACTIONS(8170), + [sym_nothing_literal] = ACTIONS(8170), + [sym_null_literal] = ACTIONS(8170), + [sym_empty_literal] = ACTIONS(8170), + [sym_date_literal] = ACTIONS(8172), + [anon_sym_POUND] = ACTIONS(8170), + }, + [STATE(5795)] = { + [sym_do_condition] = STATE(6862), + [sym_identifier] = ACTIONS(8140), + [sym_newline] = ACTIONS(8142), + [anon_sym_COLON] = ACTIONS(8142), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8140), + [aux_sym_frm_property_statement_token1] = ACTIONS(8140), + [anon_sym_DOT] = ACTIONS(8140), + [anon_sym_BANG] = ACTIONS(8142), + [aux_sym__attribute_identifier_token1] = ACTIONS(8140), + [aux_sym_option_statement_token3] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8140), + [aux_sym_preprocessor_const_token1] = ACTIONS(8140), + [sym_static_modifier] = ACTIONS(8140), + [sym__dim_keyword] = ACTIONS(8140), + [sym__redim_keyword] = ACTIONS(8140), + [aux_sym_get_accessor_token1] = ACTIONS(8140), + [aux_sym_set_accessor_token1] = ACTIONS(8140), + [aux_sym_const_declaration_token1] = ACTIONS(8140), + [anon_sym_LPAREN] = ACTIONS(8142), + [aux_sym_as_type_clause_token2] = ACTIONS(8140), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8140), + [aux_sym_visibility_token1] = ACTIONS(8140), + [aux_sym_visibility_token2] = ACTIONS(8140), + [aux_sym_elseif_fragment_token1] = ACTIONS(8140), + [aux_sym_else_fragment_token1] = ACTIONS(8140), + [aux_sym_select_statement_token1] = ACTIONS(8140), + [aux_sym_select_statement_token2] = ACTIONS(8140), + [aux_sym__for_header_token1] = ACTIONS(8140), + [aux_sym_do_statement_token1] = ACTIONS(8140), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8140), + [aux_sym_exit_statement_token1] = ACTIONS(8140), + [sym_end_statement] = ACTIONS(8142), + [aux_sym_on_goto_statement_token1] = ACTIONS(8140), + [aux_sym_on_goto_statement_token2] = ACTIONS(8140), + [aux_sym_on_error_statement_token2] = ACTIONS(8140), + [sym__ambiguous_redim_statement] = ACTIONS(8142), + [aux_sym_erase_statement_token1] = ACTIONS(8140), + [aux_sym_open_statement_token1] = ACTIONS(8140), + [aux_sym_file_mode_token2] = ACTIONS(8140), + [aux_sym_file_access_token2] = ACTIONS(8140), + [aux_sym_file_lock_token2] = ACTIONS(8140), + [aux_sym_print_statement_token1] = ACTIONS(8140), + [anon_sym_PLUS] = ACTIONS(8142), + [anon_sym_DASH] = ACTIONS(8140), + [anon_sym_QMARK] = ACTIONS(8142), + [aux_sym_close_statement_token1] = ACTIONS(8140), + [aux_sym_put_statement_token1] = ACTIONS(8140), + [aux_sym_unlock_statement_token1] = ACTIONS(8140), + [aux_sym_seek_statement_token1] = ACTIONS(8140), + [sym_reset_statement] = ACTIONS(8140), + [aux_sym_raise_event_statement_token1] = ACTIONS(8140), + [sym_stop_statement] = ACTIONS(8140), + [sym_beep_statement] = ACTIONS(8140), + [aux_sym_unload_statement_token1] = ACTIONS(8140), + [aux_sym_def_type_statement_token1] = ACTIONS(8140), + [aux_sym_def_type_statement_token2] = ACTIONS(8140), + [aux_sym_def_type_statement_token3] = ACTIONS(8140), + [aux_sym_def_type_statement_token4] = ACTIONS(8140), + [aux_sym_def_type_statement_token5] = ACTIONS(8140), + [aux_sym_def_type_statement_token6] = ACTIONS(8140), + [aux_sym_def_type_statement_token7] = ACTIONS(8140), + [aux_sym_def_type_statement_token8] = ACTIONS(8140), + [aux_sym_def_type_statement_token9] = ACTIONS(8140), + [aux_sym_def_type_statement_token10] = ACTIONS(8140), + [aux_sym_def_type_statement_token11] = ACTIONS(8140), + [aux_sym_def_type_statement_token12] = ACTIONS(8140), + [aux_sym_def_type_statement_token13] = ACTIONS(8140), + [aux_sym_def_type_statement_token14] = ACTIONS(8140), + [aux_sym_call_statement_token1] = ACTIONS(8140), + [sym__ambiguous_call_statement] = ACTIONS(8140), + [aux_sym_addressof_expression_token1] = ACTIONS(8140), + [aux_sym_type_of_expression_token1] = ACTIONS(8140), + [aux_sym_unary_expression_token1] = ACTIONS(8140), + [sym_string_literal] = ACTIONS(8142), + [sym_number_literal] = ACTIONS(8142), + [aux_sym_boolean_literal_token1] = ACTIONS(8140), + [aux_sym_boolean_literal_token2] = ACTIONS(8140), + [sym_nothing_literal] = ACTIONS(8140), + [sym_null_literal] = ACTIONS(8140), + [sym_empty_literal] = ACTIONS(8140), + [sym_date_literal] = ACTIONS(8142), + [anon_sym_POUND] = ACTIONS(8140), + }, + [STATE(5796)] = { + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(5796), + [sym_identifier] = ACTIONS(8109), + [sym_newline] = ACTIONS(8111), + [anon_sym_COLON] = ACTIONS(8111), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8109), + [aux_sym_frm_property_statement_token1] = ACTIONS(8109), + [anon_sym_DOT] = ACTIONS(8109), + [anon_sym_BANG] = ACTIONS(8111), + [aux_sym__attribute_identifier_token1] = ACTIONS(8109), + [aux_sym_option_statement_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8109), + [aux_sym_preprocessor_const_token1] = ACTIONS(8109), + [sym_static_modifier] = ACTIONS(8109), + [sym__dim_keyword] = ACTIONS(8109), + [sym__redim_keyword] = ACTIONS(8109), + [aux_sym_get_accessor_token1] = ACTIONS(8109), + [aux_sym_set_accessor_token1] = ACTIONS(8109), + [aux_sym_const_declaration_token1] = ACTIONS(8109), + [anon_sym_LPAREN] = ACTIONS(8111), + [aux_sym_as_type_clause_token2] = ACTIONS(8109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8109), + [aux_sym_visibility_token1] = ACTIONS(8109), + [aux_sym_visibility_token2] = ACTIONS(8109), + [aux_sym_elseif_fragment_token1] = ACTIONS(8109), + [aux_sym_else_fragment_token1] = ACTIONS(8109), + [aux_sym_select_statement_token1] = ACTIONS(8109), + [aux_sym__for_header_token1] = ACTIONS(8109), + [aux_sym_do_statement_token1] = ACTIONS(8109), + [aux_sym_do_condition_token1] = ACTIONS(8109), + [aux_sym_with_statement_token1] = ACTIONS(8109), + [aux_sym_exit_statement_token1] = ACTIONS(8109), + [sym_end_statement] = ACTIONS(8111), + [aux_sym_on_goto_statement_token1] = ACTIONS(8109), + [aux_sym_on_goto_statement_token2] = ACTIONS(8109), + [aux_sym_on_error_statement_token2] = ACTIONS(8109), + [sym__ambiguous_redim_statement] = ACTIONS(8111), + [aux_sym_erase_statement_token1] = ACTIONS(8109), + [aux_sym_open_statement_token1] = ACTIONS(8109), + [aux_sym_file_mode_token2] = ACTIONS(8109), + [aux_sym_file_access_token2] = ACTIONS(8109), + [aux_sym_file_lock_token2] = ACTIONS(8109), + [aux_sym_print_statement_token1] = ACTIONS(8109), + [anon_sym_PLUS] = ACTIONS(8111), + [anon_sym_DASH] = ACTIONS(8109), + [anon_sym_SEMI] = ACTIONS(10811), + [anon_sym_QMARK] = ACTIONS(8111), + [aux_sym_close_statement_token1] = ACTIONS(8109), + [aux_sym_put_statement_token1] = ACTIONS(8109), + [aux_sym_unlock_statement_token1] = ACTIONS(8109), + [aux_sym_seek_statement_token1] = ACTIONS(8109), + [sym_reset_statement] = ACTIONS(8109), + [aux_sym_raise_event_statement_token1] = ACTIONS(8109), + [sym_stop_statement] = ACTIONS(8109), + [sym_beep_statement] = ACTIONS(8109), + [aux_sym_unload_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token2] = ACTIONS(8109), + [aux_sym_def_type_statement_token3] = ACTIONS(8109), + [aux_sym_def_type_statement_token4] = ACTIONS(8109), + [aux_sym_def_type_statement_token5] = ACTIONS(8109), + [aux_sym_def_type_statement_token6] = ACTIONS(8109), + [aux_sym_def_type_statement_token7] = ACTIONS(8109), + [aux_sym_def_type_statement_token8] = ACTIONS(8109), + [aux_sym_def_type_statement_token9] = ACTIONS(8109), + [aux_sym_def_type_statement_token10] = ACTIONS(8109), + [aux_sym_def_type_statement_token11] = ACTIONS(8109), + [aux_sym_def_type_statement_token12] = ACTIONS(8109), + [aux_sym_def_type_statement_token13] = ACTIONS(8109), + [aux_sym_def_type_statement_token14] = ACTIONS(8109), + [aux_sym_call_statement_token1] = ACTIONS(8109), + [sym__ambiguous_call_statement] = ACTIONS(8109), + [aux_sym_addressof_expression_token1] = ACTIONS(8109), + [aux_sym_type_of_expression_token1] = ACTIONS(8109), + [aux_sym_unary_expression_token1] = ACTIONS(8109), + [sym_string_literal] = ACTIONS(8111), + [sym_number_literal] = ACTIONS(8111), + [aux_sym_boolean_literal_token1] = ACTIONS(8109), + [aux_sym_boolean_literal_token2] = ACTIONS(8109), + [sym_nothing_literal] = ACTIONS(8109), + [sym_null_literal] = ACTIONS(8109), + [sym_empty_literal] = ACTIONS(8109), + [sym_date_literal] = ACTIONS(8111), + [anon_sym_POUND] = ACTIONS(8109), + }, + [STATE(5797)] = { + [aux_sym_erase_statement_repeat1] = STATE(5435), + [sym_identifier] = ACTIONS(8320), + [sym_newline] = ACTIONS(8322), + [anon_sym_COLON] = ACTIONS(8322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8320), + [aux_sym_frm_property_statement_token1] = ACTIONS(8320), + [anon_sym_DOT] = ACTIONS(8320), + [anon_sym_BANG] = ACTIONS(8322), + [aux_sym__attribute_identifier_token1] = ACTIONS(8320), + [aux_sym_option_statement_token3] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8320), + [aux_sym_preprocessor_const_token1] = ACTIONS(8320), + [sym_static_modifier] = ACTIONS(8320), + [sym__dim_keyword] = ACTIONS(8320), + [sym__redim_keyword] = ACTIONS(8320), + [aux_sym_get_accessor_token1] = ACTIONS(8320), + [aux_sym_set_accessor_token1] = ACTIONS(8320), + [anon_sym_COMMA] = ACTIONS(10797), + [aux_sym_const_declaration_token1] = ACTIONS(8320), + [anon_sym_LPAREN] = ACTIONS(8322), + [aux_sym_as_type_clause_token2] = ACTIONS(8320), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8320), + [aux_sym_visibility_token1] = ACTIONS(8320), + [aux_sym_visibility_token2] = ACTIONS(8320), + [aux_sym_elseif_fragment_token1] = ACTIONS(8320), + [aux_sym_else_fragment_token1] = ACTIONS(8320), + [aux_sym_select_statement_token1] = ACTIONS(8320), + [aux_sym_select_statement_token2] = ACTIONS(8320), + [aux_sym__for_header_token1] = ACTIONS(8320), + [aux_sym_do_statement_token1] = ACTIONS(8320), + [aux_sym_do_condition_token1] = ACTIONS(8320), + [aux_sym_with_statement_token1] = ACTIONS(8320), + [aux_sym_exit_statement_token1] = ACTIONS(8320), + [sym_end_statement] = ACTIONS(8322), + [aux_sym_on_goto_statement_token1] = ACTIONS(8320), + [aux_sym_on_goto_statement_token2] = ACTIONS(8320), + [aux_sym_on_error_statement_token2] = ACTIONS(8320), + [sym__ambiguous_redim_statement] = ACTIONS(8322), + [aux_sym_erase_statement_token1] = ACTIONS(8320), + [aux_sym_open_statement_token1] = ACTIONS(8320), + [aux_sym_file_mode_token2] = ACTIONS(8320), + [aux_sym_file_access_token2] = ACTIONS(8320), + [aux_sym_file_lock_token2] = ACTIONS(8320), + [aux_sym_print_statement_token1] = ACTIONS(8320), + [anon_sym_PLUS] = ACTIONS(8322), + [anon_sym_DASH] = ACTIONS(8320), + [anon_sym_QMARK] = ACTIONS(8322), + [aux_sym_close_statement_token1] = ACTIONS(8320), + [aux_sym_put_statement_token1] = ACTIONS(8320), + [aux_sym_unlock_statement_token1] = ACTIONS(8320), + [aux_sym_seek_statement_token1] = ACTIONS(8320), + [sym_reset_statement] = ACTIONS(8320), + [aux_sym_raise_event_statement_token1] = ACTIONS(8320), + [sym_stop_statement] = ACTIONS(8320), + [sym_beep_statement] = ACTIONS(8320), + [aux_sym_unload_statement_token1] = ACTIONS(8320), + [aux_sym_def_type_statement_token1] = ACTIONS(8320), + [aux_sym_def_type_statement_token2] = ACTIONS(8320), + [aux_sym_def_type_statement_token3] = ACTIONS(8320), + [aux_sym_def_type_statement_token4] = ACTIONS(8320), + [aux_sym_def_type_statement_token5] = ACTIONS(8320), + [aux_sym_def_type_statement_token6] = ACTIONS(8320), + [aux_sym_def_type_statement_token7] = ACTIONS(8320), + [aux_sym_def_type_statement_token8] = ACTIONS(8320), + [aux_sym_def_type_statement_token9] = ACTIONS(8320), + [aux_sym_def_type_statement_token10] = ACTIONS(8320), + [aux_sym_def_type_statement_token11] = ACTIONS(8320), + [aux_sym_def_type_statement_token12] = ACTIONS(8320), + [aux_sym_def_type_statement_token13] = ACTIONS(8320), + [aux_sym_def_type_statement_token14] = ACTIONS(8320), + [aux_sym_call_statement_token1] = ACTIONS(8320), + [sym__ambiguous_call_statement] = ACTIONS(8320), + [aux_sym_addressof_expression_token1] = ACTIONS(8320), + [aux_sym_type_of_expression_token1] = ACTIONS(8320), + [aux_sym_unary_expression_token1] = ACTIONS(8320), + [sym_string_literal] = ACTIONS(8322), + [sym_number_literal] = ACTIONS(8322), + [aux_sym_boolean_literal_token1] = ACTIONS(8320), + [aux_sym_boolean_literal_token2] = ACTIONS(8320), + [sym_nothing_literal] = ACTIONS(8320), + [sym_null_literal] = ACTIONS(8320), + [sym_empty_literal] = ACTIONS(8320), + [sym_date_literal] = ACTIONS(8322), + [anon_sym_POUND] = ACTIONS(8320), + }, + [STATE(5798)] = { + [aux_sym_close_statement_repeat1] = STATE(5493), + [sym_identifier] = ACTIONS(8521), + [sym_newline] = ACTIONS(8523), + [anon_sym_COLON] = ACTIONS(8523), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8521), + [aux_sym_frm_property_statement_token1] = ACTIONS(8521), + [anon_sym_DOT] = ACTIONS(8521), + [anon_sym_BANG] = ACTIONS(8523), + [aux_sym__attribute_identifier_token1] = ACTIONS(8521), + [aux_sym_option_statement_token3] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8521), + [aux_sym_preprocessor_const_token1] = ACTIONS(8521), + [sym_static_modifier] = ACTIONS(8521), + [sym__dim_keyword] = ACTIONS(8521), + [sym__redim_keyword] = ACTIONS(8521), + [aux_sym_get_accessor_token1] = ACTIONS(8521), + [aux_sym_set_accessor_token1] = ACTIONS(8521), + [anon_sym_COMMA] = ACTIONS(10809), + [aux_sym_const_declaration_token1] = ACTIONS(8521), + [anon_sym_LPAREN] = ACTIONS(8523), + [aux_sym_as_type_clause_token2] = ACTIONS(8521), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8521), + [aux_sym_visibility_token1] = ACTIONS(8521), + [aux_sym_visibility_token2] = ACTIONS(8521), + [aux_sym_elseif_fragment_token1] = ACTIONS(8521), + [aux_sym_else_fragment_token1] = ACTIONS(8521), + [aux_sym_select_statement_token1] = ACTIONS(8521), + [aux_sym_select_statement_token2] = ACTIONS(8521), + [aux_sym__for_header_token1] = ACTIONS(8521), + [aux_sym_do_statement_token1] = ACTIONS(8521), + [aux_sym_do_condition_token1] = ACTIONS(8521), + [aux_sym_with_statement_token1] = ACTIONS(8521), + [aux_sym_exit_statement_token1] = ACTIONS(8521), + [sym_end_statement] = ACTIONS(8523), + [aux_sym_on_goto_statement_token1] = ACTIONS(8521), + [aux_sym_on_goto_statement_token2] = ACTIONS(8521), + [aux_sym_on_error_statement_token2] = ACTIONS(8521), + [sym__ambiguous_redim_statement] = ACTIONS(8523), + [aux_sym_erase_statement_token1] = ACTIONS(8521), + [aux_sym_open_statement_token1] = ACTIONS(8521), + [aux_sym_file_mode_token2] = ACTIONS(8521), + [aux_sym_file_access_token2] = ACTIONS(8521), + [aux_sym_file_lock_token2] = ACTIONS(8521), + [aux_sym_print_statement_token1] = ACTIONS(8521), + [anon_sym_PLUS] = ACTIONS(8523), + [anon_sym_DASH] = ACTIONS(8521), + [anon_sym_QMARK] = ACTIONS(8523), + [aux_sym_close_statement_token1] = ACTIONS(8521), + [aux_sym_put_statement_token1] = ACTIONS(8521), + [aux_sym_unlock_statement_token1] = ACTIONS(8521), + [aux_sym_seek_statement_token1] = ACTIONS(8521), + [sym_reset_statement] = ACTIONS(8521), + [aux_sym_raise_event_statement_token1] = ACTIONS(8521), + [sym_stop_statement] = ACTIONS(8521), + [sym_beep_statement] = ACTIONS(8521), + [aux_sym_unload_statement_token1] = ACTIONS(8521), + [aux_sym_def_type_statement_token1] = ACTIONS(8521), + [aux_sym_def_type_statement_token2] = ACTIONS(8521), + [aux_sym_def_type_statement_token3] = ACTIONS(8521), + [aux_sym_def_type_statement_token4] = ACTIONS(8521), + [aux_sym_def_type_statement_token5] = ACTIONS(8521), + [aux_sym_def_type_statement_token6] = ACTIONS(8521), + [aux_sym_def_type_statement_token7] = ACTIONS(8521), + [aux_sym_def_type_statement_token8] = ACTIONS(8521), + [aux_sym_def_type_statement_token9] = ACTIONS(8521), + [aux_sym_def_type_statement_token10] = ACTIONS(8521), + [aux_sym_def_type_statement_token11] = ACTIONS(8521), + [aux_sym_def_type_statement_token12] = ACTIONS(8521), + [aux_sym_def_type_statement_token13] = ACTIONS(8521), + [aux_sym_def_type_statement_token14] = ACTIONS(8521), + [aux_sym_call_statement_token1] = ACTIONS(8521), + [sym__ambiguous_call_statement] = ACTIONS(8521), + [aux_sym_addressof_expression_token1] = ACTIONS(8521), + [aux_sym_type_of_expression_token1] = ACTIONS(8521), + [aux_sym_unary_expression_token1] = ACTIONS(8521), + [sym_string_literal] = ACTIONS(8523), + [sym_number_literal] = ACTIONS(8523), + [aux_sym_boolean_literal_token1] = ACTIONS(8521), + [aux_sym_boolean_literal_token2] = ACTIONS(8521), + [sym_nothing_literal] = ACTIONS(8521), + [sym_null_literal] = ACTIONS(8521), + [sym_empty_literal] = ACTIONS(8521), + [sym_date_literal] = ACTIONS(8523), + [anon_sym_POUND] = ACTIONS(8521), + }, + [STATE(5799)] = { + [sym_identifier] = ACTIONS(7968), + [sym_newline] = ACTIONS(7970), + [anon_sym_COLON] = ACTIONS(7970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7968), + [aux_sym_frm_property_statement_token1] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_BANG] = ACTIONS(7970), + [aux_sym__attribute_identifier_token1] = ACTIONS(7968), + [aux_sym_option_statement_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7968), + [aux_sym_preprocessor_const_token1] = ACTIONS(7968), + [sym_static_modifier] = ACTIONS(7968), + [sym__dim_keyword] = ACTIONS(7968), + [sym__redim_keyword] = ACTIONS(7968), + [aux_sym_get_accessor_token1] = ACTIONS(7968), + [aux_sym_set_accessor_token1] = ACTIONS(7968), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_const_declaration_token1] = ACTIONS(7968), + [anon_sym_LPAREN] = ACTIONS(7970), + [aux_sym_as_type_clause_token1] = ACTIONS(7968), + [aux_sym_as_type_clause_token2] = ACTIONS(7968), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7968), + [aux_sym_visibility_token1] = ACTIONS(7968), + [aux_sym_visibility_token2] = ACTIONS(7968), + [aux_sym_elseif_fragment_token1] = ACTIONS(7968), + [aux_sym_else_fragment_token1] = ACTIONS(7968), + [aux_sym_select_statement_token1] = ACTIONS(7968), + [aux_sym__for_header_token1] = ACTIONS(7968), + [aux_sym_do_statement_token1] = ACTIONS(7968), + [aux_sym_do_condition_token1] = ACTIONS(7968), + [aux_sym_with_statement_token1] = ACTIONS(7968), + [aux_sym_exit_statement_token1] = ACTIONS(7968), + [sym_end_statement] = ACTIONS(7970), + [aux_sym_on_goto_statement_token1] = ACTIONS(7968), + [aux_sym_on_goto_statement_token2] = ACTIONS(7968), + [aux_sym_on_error_statement_token2] = ACTIONS(7968), + [sym__ambiguous_redim_statement] = ACTIONS(7970), + [aux_sym_erase_statement_token1] = ACTIONS(7968), + [aux_sym_open_statement_token1] = ACTIONS(7968), + [aux_sym_file_mode_token2] = ACTIONS(7968), + [aux_sym_file_access_token2] = ACTIONS(7968), + [aux_sym_file_lock_token2] = ACTIONS(7968), + [aux_sym_print_statement_token1] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7970), + [aux_sym_close_statement_token1] = ACTIONS(7968), + [aux_sym_put_statement_token1] = ACTIONS(7968), + [aux_sym_unlock_statement_token1] = ACTIONS(7968), + [aux_sym_seek_statement_token1] = ACTIONS(7968), + [sym_reset_statement] = ACTIONS(7968), + [aux_sym_raise_event_statement_token1] = ACTIONS(7968), + [sym_stop_statement] = ACTIONS(7968), + [sym_beep_statement] = ACTIONS(7968), + [aux_sym_unload_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token2] = ACTIONS(7968), + [aux_sym_def_type_statement_token3] = ACTIONS(7968), + [aux_sym_def_type_statement_token4] = ACTIONS(7968), + [aux_sym_def_type_statement_token5] = ACTIONS(7968), + [aux_sym_def_type_statement_token6] = ACTIONS(7968), + [aux_sym_def_type_statement_token7] = ACTIONS(7968), + [aux_sym_def_type_statement_token8] = ACTIONS(7968), + [aux_sym_def_type_statement_token9] = ACTIONS(7968), + [aux_sym_def_type_statement_token10] = ACTIONS(7968), + [aux_sym_def_type_statement_token11] = ACTIONS(7968), + [aux_sym_def_type_statement_token12] = ACTIONS(7968), + [aux_sym_def_type_statement_token13] = ACTIONS(7968), + [aux_sym_def_type_statement_token14] = ACTIONS(7968), + [aux_sym_call_statement_token1] = ACTIONS(7968), + [sym__ambiguous_call_statement] = ACTIONS(7968), + [aux_sym_addressof_expression_token1] = ACTIONS(7968), + [aux_sym_type_of_expression_token1] = ACTIONS(7968), + [aux_sym_unary_expression_token1] = ACTIONS(7968), + [sym_string_literal] = ACTIONS(7970), + [sym_number_literal] = ACTIONS(7970), + [aux_sym_boolean_literal_token1] = ACTIONS(7968), + [aux_sym_boolean_literal_token2] = ACTIONS(7968), + [sym_nothing_literal] = ACTIONS(7968), + [sym_null_literal] = ACTIONS(7968), + [sym_empty_literal] = ACTIONS(7968), + [sym_date_literal] = ACTIONS(7970), + [anon_sym_POUND] = ACTIONS(7968), + }, + [STATE(5800)] = { + [sym_do_condition] = STATE(6686), + [sym_identifier] = ACTIONS(8217), + [sym_newline] = ACTIONS(8219), + [anon_sym_COLON] = ACTIONS(8219), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8217), + [aux_sym_frm_property_statement_token1] = ACTIONS(8217), + [anon_sym_DOT] = ACTIONS(8217), + [anon_sym_BANG] = ACTIONS(8219), + [aux_sym__attribute_identifier_token1] = ACTIONS(8217), + [aux_sym_option_statement_token3] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8217), + [aux_sym_preprocessor_const_token1] = ACTIONS(8217), + [sym_static_modifier] = ACTIONS(8217), + [sym__dim_keyword] = ACTIONS(8217), + [sym__redim_keyword] = ACTIONS(8217), + [aux_sym_get_accessor_token1] = ACTIONS(8217), + [aux_sym_set_accessor_token1] = ACTIONS(8217), + [aux_sym_const_declaration_token1] = ACTIONS(8217), + [anon_sym_LPAREN] = ACTIONS(8219), + [aux_sym_as_type_clause_token2] = ACTIONS(8217), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8217), + [aux_sym_visibility_token1] = ACTIONS(8217), + [aux_sym_visibility_token2] = ACTIONS(8217), + [aux_sym_elseif_fragment_token1] = ACTIONS(8217), + [aux_sym_else_fragment_token1] = ACTIONS(8217), + [aux_sym_select_statement_token1] = ACTIONS(8217), + [aux_sym_select_statement_token2] = ACTIONS(8217), + [aux_sym__for_header_token1] = ACTIONS(8217), + [aux_sym_do_statement_token1] = ACTIONS(8217), + [aux_sym_do_condition_token1] = ACTIONS(10435), + [aux_sym_do_condition_token2] = ACTIONS(10435), + [aux_sym_with_statement_token1] = ACTIONS(8217), + [aux_sym_exit_statement_token1] = ACTIONS(8217), + [sym_end_statement] = ACTIONS(8219), + [aux_sym_on_goto_statement_token1] = ACTIONS(8217), + [aux_sym_on_goto_statement_token2] = ACTIONS(8217), + [aux_sym_on_error_statement_token2] = ACTIONS(8217), + [sym__ambiguous_redim_statement] = ACTIONS(8219), + [aux_sym_erase_statement_token1] = ACTIONS(8217), + [aux_sym_open_statement_token1] = ACTIONS(8217), + [aux_sym_file_mode_token2] = ACTIONS(8217), + [aux_sym_file_access_token2] = ACTIONS(8217), + [aux_sym_file_lock_token2] = ACTIONS(8217), + [aux_sym_print_statement_token1] = ACTIONS(8217), + [anon_sym_PLUS] = ACTIONS(8219), + [anon_sym_DASH] = ACTIONS(8217), + [anon_sym_QMARK] = ACTIONS(8219), + [aux_sym_close_statement_token1] = ACTIONS(8217), + [aux_sym_put_statement_token1] = ACTIONS(8217), + [aux_sym_unlock_statement_token1] = ACTIONS(8217), + [aux_sym_seek_statement_token1] = ACTIONS(8217), + [sym_reset_statement] = ACTIONS(8217), + [aux_sym_raise_event_statement_token1] = ACTIONS(8217), + [sym_stop_statement] = ACTIONS(8217), + [sym_beep_statement] = ACTIONS(8217), + [aux_sym_unload_statement_token1] = ACTIONS(8217), + [aux_sym_def_type_statement_token1] = ACTIONS(8217), + [aux_sym_def_type_statement_token2] = ACTIONS(8217), + [aux_sym_def_type_statement_token3] = ACTIONS(8217), + [aux_sym_def_type_statement_token4] = ACTIONS(8217), + [aux_sym_def_type_statement_token5] = ACTIONS(8217), + [aux_sym_def_type_statement_token6] = ACTIONS(8217), + [aux_sym_def_type_statement_token7] = ACTIONS(8217), + [aux_sym_def_type_statement_token8] = ACTIONS(8217), + [aux_sym_def_type_statement_token9] = ACTIONS(8217), + [aux_sym_def_type_statement_token10] = ACTIONS(8217), + [aux_sym_def_type_statement_token11] = ACTIONS(8217), + [aux_sym_def_type_statement_token12] = ACTIONS(8217), + [aux_sym_def_type_statement_token13] = ACTIONS(8217), + [aux_sym_def_type_statement_token14] = ACTIONS(8217), + [aux_sym_call_statement_token1] = ACTIONS(8217), + [sym__ambiguous_call_statement] = ACTIONS(8217), + [aux_sym_addressof_expression_token1] = ACTIONS(8217), + [aux_sym_type_of_expression_token1] = ACTIONS(8217), + [aux_sym_unary_expression_token1] = ACTIONS(8217), + [sym_string_literal] = ACTIONS(8219), + [sym_number_literal] = ACTIONS(8219), + [aux_sym_boolean_literal_token1] = ACTIONS(8217), + [aux_sym_boolean_literal_token2] = ACTIONS(8217), + [sym_nothing_literal] = ACTIONS(8217), + [sym_null_literal] = ACTIONS(8217), + [sym_empty_literal] = ACTIONS(8217), + [sym_date_literal] = ACTIONS(8219), + [anon_sym_POUND] = ACTIONS(8217), + }, + [STATE(5801)] = { + [sym_argument_list] = STATE(5969), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7836), + [anon_sym_BANG] = ACTIONS(4034), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10508), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_statement_token2] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(5802)] = { + [aux_sym_variable_declaration_repeat1] = STATE(5802), + [sym_identifier] = ACTIONS(8287), + [sym_newline] = ACTIONS(8289), + [anon_sym_COLON] = ACTIONS(8289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8287), + [aux_sym_frm_property_statement_token1] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8287), + [anon_sym_BANG] = ACTIONS(8289), + [aux_sym__attribute_identifier_token1] = ACTIONS(8287), + [aux_sym_option_statement_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8287), + [aux_sym_preprocessor_const_token1] = ACTIONS(8287), + [sym_static_modifier] = ACTIONS(8287), + [sym__dim_keyword] = ACTIONS(8287), + [sym__redim_keyword] = ACTIONS(8287), + [aux_sym_get_accessor_token1] = ACTIONS(8287), + [aux_sym_set_accessor_token1] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(10814), + [aux_sym_const_declaration_token1] = ACTIONS(8287), + [anon_sym_LPAREN] = ACTIONS(8289), + [aux_sym_as_type_clause_token2] = ACTIONS(8287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8287), + [aux_sym_visibility_token1] = ACTIONS(8287), + [aux_sym_visibility_token2] = ACTIONS(8287), + [aux_sym_elseif_fragment_token1] = ACTIONS(8287), + [aux_sym_else_fragment_token1] = ACTIONS(8287), + [aux_sym_select_statement_token1] = ACTIONS(8287), + [aux_sym__for_header_token1] = ACTIONS(8287), + [aux_sym_do_statement_token1] = ACTIONS(8287), + [aux_sym_do_statement_token2] = ACTIONS(8287), + [aux_sym_do_condition_token1] = ACTIONS(8287), + [aux_sym_with_statement_token1] = ACTIONS(8287), + [aux_sym_exit_statement_token1] = ACTIONS(8287), + [sym_end_statement] = ACTIONS(8289), + [aux_sym_on_goto_statement_token1] = ACTIONS(8287), + [aux_sym_on_goto_statement_token2] = ACTIONS(8287), + [aux_sym_on_error_statement_token2] = ACTIONS(8287), + [sym__ambiguous_redim_statement] = ACTIONS(8289), + [aux_sym_erase_statement_token1] = ACTIONS(8287), + [aux_sym_open_statement_token1] = ACTIONS(8287), + [aux_sym_file_mode_token2] = ACTIONS(8287), + [aux_sym_file_access_token2] = ACTIONS(8287), + [aux_sym_file_lock_token2] = ACTIONS(8287), + [aux_sym_print_statement_token1] = ACTIONS(8287), + [anon_sym_PLUS] = ACTIONS(8289), + [anon_sym_DASH] = ACTIONS(8287), + [anon_sym_QMARK] = ACTIONS(8289), + [aux_sym_close_statement_token1] = ACTIONS(8287), + [aux_sym_put_statement_token1] = ACTIONS(8287), + [aux_sym_unlock_statement_token1] = ACTIONS(8287), + [aux_sym_seek_statement_token1] = ACTIONS(8287), + [sym_reset_statement] = ACTIONS(8287), + [aux_sym_raise_event_statement_token1] = ACTIONS(8287), + [sym_stop_statement] = ACTIONS(8287), + [sym_beep_statement] = ACTIONS(8287), + [aux_sym_unload_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token2] = ACTIONS(8287), + [aux_sym_def_type_statement_token3] = ACTIONS(8287), + [aux_sym_def_type_statement_token4] = ACTIONS(8287), + [aux_sym_def_type_statement_token5] = ACTIONS(8287), + [aux_sym_def_type_statement_token6] = ACTIONS(8287), + [aux_sym_def_type_statement_token7] = ACTIONS(8287), + [aux_sym_def_type_statement_token8] = ACTIONS(8287), + [aux_sym_def_type_statement_token9] = ACTIONS(8287), + [aux_sym_def_type_statement_token10] = ACTIONS(8287), + [aux_sym_def_type_statement_token11] = ACTIONS(8287), + [aux_sym_def_type_statement_token12] = ACTIONS(8287), + [aux_sym_def_type_statement_token13] = ACTIONS(8287), + [aux_sym_def_type_statement_token14] = ACTIONS(8287), + [aux_sym_call_statement_token1] = ACTIONS(8287), + [sym__ambiguous_call_statement] = ACTIONS(8287), + [aux_sym_addressof_expression_token1] = ACTIONS(8287), + [aux_sym_type_of_expression_token1] = ACTIONS(8287), + [aux_sym_unary_expression_token1] = ACTIONS(8287), + [sym_string_literal] = ACTIONS(8289), + [sym_number_literal] = ACTIONS(8289), + [aux_sym_boolean_literal_token1] = ACTIONS(8287), + [aux_sym_boolean_literal_token2] = ACTIONS(8287), + [sym_nothing_literal] = ACTIONS(8287), + [sym_null_literal] = ACTIONS(8287), + [sym_empty_literal] = ACTIONS(8287), + [sym_date_literal] = ACTIONS(8289), + [anon_sym_POUND] = ACTIONS(8287), + }, + [STATE(5803)] = { + [sym_identifier] = ACTIONS(6617), + [sym_newline] = ACTIONS(6619), + [anon_sym_COLON] = ACTIONS(6619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6617), + [aux_sym_frm_property_statement_token1] = ACTIONS(6617), + [anon_sym_DOT] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(6619), + [aux_sym__attribute_identifier_token1] = ACTIONS(6617), + [aux_sym_option_statement_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6617), + [aux_sym_preprocessor_const_token1] = ACTIONS(6617), + [sym_static_modifier] = ACTIONS(6617), + [sym__dim_keyword] = ACTIONS(6617), + [sym__redim_keyword] = ACTIONS(6617), + [aux_sym_get_accessor_token1] = ACTIONS(6617), + [aux_sym_set_accessor_token1] = ACTIONS(6617), + [aux_sym_const_declaration_token1] = ACTIONS(6617), + [anon_sym_LPAREN] = ACTIONS(6619), + [aux_sym_as_type_clause_token2] = ACTIONS(6617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6617), + [aux_sym_visibility_token1] = ACTIONS(6617), + [aux_sym_visibility_token2] = ACTIONS(6617), + [aux_sym_elseif_fragment_token1] = ACTIONS(6617), + [aux_sym_else_fragment_token1] = ACTIONS(6617), + [aux_sym_select_statement_token1] = ACTIONS(6617), + [aux_sym_select_statement_token2] = ACTIONS(6617), + [aux_sym__for_header_token1] = ACTIONS(6617), + [aux_sym_do_statement_token1] = ACTIONS(6617), + [aux_sym_do_condition_token1] = ACTIONS(6617), + [aux_sym_with_statement_token1] = ACTIONS(6617), + [aux_sym_exit_statement_token1] = ACTIONS(6617), + [sym_end_statement] = ACTIONS(6619), + [aux_sym_on_goto_statement_token1] = ACTIONS(6617), + [aux_sym_on_goto_statement_token2] = ACTIONS(6617), + [aux_sym_on_error_statement_token2] = ACTIONS(6617), + [sym__ambiguous_redim_statement] = ACTIONS(6619), + [aux_sym_erase_statement_token1] = ACTIONS(6617), + [aux_sym_open_statement_token1] = ACTIONS(6617), + [aux_sym_file_mode_token2] = ACTIONS(6617), + [aux_sym_file_access_token2] = ACTIONS(6617), + [aux_sym_file_lock_token2] = ACTIONS(6617), + [aux_sym_print_statement_token1] = ACTIONS(6617), + [anon_sym_PLUS] = ACTIONS(6619), + [anon_sym_DASH] = ACTIONS(6617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10130), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10132), + [anon_sym_QMARK] = ACTIONS(6619), + [aux_sym_close_statement_token1] = ACTIONS(6617), + [aux_sym_put_statement_token1] = ACTIONS(6617), + [aux_sym_unlock_statement_token1] = ACTIONS(6617), + [aux_sym_seek_statement_token1] = ACTIONS(6617), + [sym_reset_statement] = ACTIONS(6617), + [aux_sym_raise_event_statement_token1] = ACTIONS(6617), + [sym_stop_statement] = ACTIONS(6617), + [sym_beep_statement] = ACTIONS(6617), + [aux_sym_unload_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token2] = ACTIONS(6617), + [aux_sym_def_type_statement_token3] = ACTIONS(6617), + [aux_sym_def_type_statement_token4] = ACTIONS(6617), + [aux_sym_def_type_statement_token5] = ACTIONS(6617), + [aux_sym_def_type_statement_token6] = ACTIONS(6617), + [aux_sym_def_type_statement_token7] = ACTIONS(6617), + [aux_sym_def_type_statement_token8] = ACTIONS(6617), + [aux_sym_def_type_statement_token9] = ACTIONS(6617), + [aux_sym_def_type_statement_token10] = ACTIONS(6617), + [aux_sym_def_type_statement_token11] = ACTIONS(6617), + [aux_sym_def_type_statement_token12] = ACTIONS(6617), + [aux_sym_def_type_statement_token13] = ACTIONS(6617), + [aux_sym_def_type_statement_token14] = ACTIONS(6617), + [aux_sym_call_statement_token1] = ACTIONS(6617), + [sym__ambiguous_call_statement] = ACTIONS(6617), + [aux_sym_addressof_expression_token1] = ACTIONS(6617), + [aux_sym_type_of_expression_token1] = ACTIONS(6617), + [aux_sym_unary_expression_token1] = ACTIONS(6617), + [sym_string_literal] = ACTIONS(6619), + [sym_number_literal] = ACTIONS(6619), + [aux_sym_boolean_literal_token1] = ACTIONS(6617), + [aux_sym_boolean_literal_token2] = ACTIONS(6617), + [sym_nothing_literal] = ACTIONS(6617), + [sym_null_literal] = ACTIONS(6617), + [sym_empty_literal] = ACTIONS(6617), + [sym_date_literal] = ACTIONS(6619), + [anon_sym_POUND] = ACTIONS(6617), + }, + [STATE(5804)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5490), + [sym_identifier] = ACTIONS(8495), + [sym_newline] = ACTIONS(8497), + [anon_sym_COLON] = ACTIONS(8497), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8495), + [aux_sym_frm_property_statement_token1] = ACTIONS(8495), + [anon_sym_DOT] = ACTIONS(8495), + [anon_sym_BANG] = ACTIONS(8497), + [aux_sym__attribute_identifier_token1] = ACTIONS(8495), + [aux_sym_option_statement_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8495), + [aux_sym_preprocessor_const_token1] = ACTIONS(8495), + [sym_static_modifier] = ACTIONS(8495), + [sym__dim_keyword] = ACTIONS(8495), + [sym__redim_keyword] = ACTIONS(8495), + [aux_sym_get_accessor_token1] = ACTIONS(8495), + [aux_sym_set_accessor_token1] = ACTIONS(8495), + [anon_sym_COMMA] = ACTIONS(5158), + [aux_sym_const_declaration_token1] = ACTIONS(8495), + [anon_sym_LPAREN] = ACTIONS(8497), + [aux_sym_as_type_clause_token2] = ACTIONS(8495), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8495), + [aux_sym_visibility_token1] = ACTIONS(8495), + [aux_sym_visibility_token2] = ACTIONS(8495), + [aux_sym_elseif_fragment_token1] = ACTIONS(8495), + [aux_sym_else_fragment_token1] = ACTIONS(8495), + [aux_sym_select_statement_token1] = ACTIONS(8495), + [aux_sym_select_statement_token2] = ACTIONS(8495), + [aux_sym__for_header_token1] = ACTIONS(8495), + [aux_sym_do_statement_token1] = ACTIONS(8495), + [aux_sym_do_condition_token1] = ACTIONS(8495), + [aux_sym_with_statement_token1] = ACTIONS(8495), + [aux_sym_exit_statement_token1] = ACTIONS(8495), + [sym_end_statement] = ACTIONS(8497), + [aux_sym_on_goto_statement_token1] = ACTIONS(8495), + [aux_sym_on_goto_statement_token2] = ACTIONS(8495), + [aux_sym_on_error_statement_token2] = ACTIONS(8495), + [sym__ambiguous_redim_statement] = ACTIONS(8497), + [aux_sym_erase_statement_token1] = ACTIONS(8495), + [aux_sym_open_statement_token1] = ACTIONS(8495), + [aux_sym_file_mode_token2] = ACTIONS(8495), + [aux_sym_file_access_token2] = ACTIONS(8495), + [aux_sym_file_lock_token2] = ACTIONS(8495), + [aux_sym_print_statement_token1] = ACTIONS(8495), + [anon_sym_PLUS] = ACTIONS(8497), + [anon_sym_DASH] = ACTIONS(8495), + [anon_sym_QMARK] = ACTIONS(8497), + [aux_sym_close_statement_token1] = ACTIONS(8495), + [aux_sym_put_statement_token1] = ACTIONS(8495), + [aux_sym_unlock_statement_token1] = ACTIONS(8495), + [aux_sym_seek_statement_token1] = ACTIONS(8495), + [sym_reset_statement] = ACTIONS(8495), + [aux_sym_raise_event_statement_token1] = ACTIONS(8495), + [sym_stop_statement] = ACTIONS(8495), + [sym_beep_statement] = ACTIONS(8495), + [aux_sym_unload_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token2] = ACTIONS(8495), + [aux_sym_def_type_statement_token3] = ACTIONS(8495), + [aux_sym_def_type_statement_token4] = ACTIONS(8495), + [aux_sym_def_type_statement_token5] = ACTIONS(8495), + [aux_sym_def_type_statement_token6] = ACTIONS(8495), + [aux_sym_def_type_statement_token7] = ACTIONS(8495), + [aux_sym_def_type_statement_token8] = ACTIONS(8495), + [aux_sym_def_type_statement_token9] = ACTIONS(8495), + [aux_sym_def_type_statement_token10] = ACTIONS(8495), + [aux_sym_def_type_statement_token11] = ACTIONS(8495), + [aux_sym_def_type_statement_token12] = ACTIONS(8495), + [aux_sym_def_type_statement_token13] = ACTIONS(8495), + [aux_sym_def_type_statement_token14] = ACTIONS(8495), + [aux_sym_call_statement_token1] = ACTIONS(8495), + [sym__ambiguous_call_statement] = ACTIONS(8495), + [aux_sym_addressof_expression_token1] = ACTIONS(8495), + [aux_sym_type_of_expression_token1] = ACTIONS(8495), + [aux_sym_unary_expression_token1] = ACTIONS(8495), + [sym_string_literal] = ACTIONS(8497), + [sym_number_literal] = ACTIONS(8497), + [aux_sym_boolean_literal_token1] = ACTIONS(8495), + [aux_sym_boolean_literal_token2] = ACTIONS(8495), + [sym_nothing_literal] = ACTIONS(8495), + [sym_null_literal] = ACTIONS(8495), + [sym_empty_literal] = ACTIONS(8495), + [sym_date_literal] = ACTIONS(8497), + [anon_sym_POUND] = ACTIONS(8495), + }, + [STATE(5805)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5289), + [sym_identifier] = ACTIONS(8495), + [sym_newline] = ACTIONS(8497), + [anon_sym_COLON] = ACTIONS(8497), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8495), + [aux_sym_frm_property_statement_token1] = ACTIONS(8495), + [anon_sym_DOT] = ACTIONS(8495), + [anon_sym_BANG] = ACTIONS(8497), + [aux_sym__attribute_identifier_token1] = ACTIONS(8495), + [aux_sym_option_statement_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8495), + [aux_sym_preprocessor_const_token1] = ACTIONS(8495), + [sym_static_modifier] = ACTIONS(8495), + [sym__dim_keyword] = ACTIONS(8495), + [sym__redim_keyword] = ACTIONS(8495), + [aux_sym_get_accessor_token1] = ACTIONS(8495), + [aux_sym_set_accessor_token1] = ACTIONS(8495), + [anon_sym_COMMA] = ACTIONS(5158), + [aux_sym_const_declaration_token1] = ACTIONS(8495), + [anon_sym_LPAREN] = ACTIONS(8497), + [aux_sym_as_type_clause_token2] = ACTIONS(8495), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8495), + [aux_sym_visibility_token1] = ACTIONS(8495), + [aux_sym_visibility_token2] = ACTIONS(8495), + [aux_sym_elseif_fragment_token1] = ACTIONS(8495), + [aux_sym_else_fragment_token1] = ACTIONS(8495), + [aux_sym_select_statement_token1] = ACTIONS(8495), + [aux_sym_select_statement_token2] = ACTIONS(8495), + [aux_sym__for_header_token1] = ACTIONS(8495), + [aux_sym_do_statement_token1] = ACTIONS(8495), + [aux_sym_do_condition_token1] = ACTIONS(8495), + [aux_sym_with_statement_token1] = ACTIONS(8495), + [aux_sym_exit_statement_token1] = ACTIONS(8495), + [sym_end_statement] = ACTIONS(8497), + [aux_sym_on_goto_statement_token1] = ACTIONS(8495), + [aux_sym_on_goto_statement_token2] = ACTIONS(8495), + [aux_sym_on_error_statement_token2] = ACTIONS(8495), + [sym__ambiguous_redim_statement] = ACTIONS(8497), + [aux_sym_erase_statement_token1] = ACTIONS(8495), + [aux_sym_open_statement_token1] = ACTIONS(8495), + [aux_sym_file_mode_token2] = ACTIONS(8495), + [aux_sym_file_access_token2] = ACTIONS(8495), + [aux_sym_file_lock_token2] = ACTIONS(8495), + [aux_sym_print_statement_token1] = ACTIONS(8495), + [anon_sym_PLUS] = ACTIONS(8497), + [anon_sym_DASH] = ACTIONS(8495), + [anon_sym_QMARK] = ACTIONS(8497), + [aux_sym_close_statement_token1] = ACTIONS(8495), + [aux_sym_put_statement_token1] = ACTIONS(8495), + [aux_sym_unlock_statement_token1] = ACTIONS(8495), + [aux_sym_seek_statement_token1] = ACTIONS(8495), + [sym_reset_statement] = ACTIONS(8495), + [aux_sym_raise_event_statement_token1] = ACTIONS(8495), + [sym_stop_statement] = ACTIONS(8495), + [sym_beep_statement] = ACTIONS(8495), + [aux_sym_unload_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token2] = ACTIONS(8495), + [aux_sym_def_type_statement_token3] = ACTIONS(8495), + [aux_sym_def_type_statement_token4] = ACTIONS(8495), + [aux_sym_def_type_statement_token5] = ACTIONS(8495), + [aux_sym_def_type_statement_token6] = ACTIONS(8495), + [aux_sym_def_type_statement_token7] = ACTIONS(8495), + [aux_sym_def_type_statement_token8] = ACTIONS(8495), + [aux_sym_def_type_statement_token9] = ACTIONS(8495), + [aux_sym_def_type_statement_token10] = ACTIONS(8495), + [aux_sym_def_type_statement_token11] = ACTIONS(8495), + [aux_sym_def_type_statement_token12] = ACTIONS(8495), + [aux_sym_def_type_statement_token13] = ACTIONS(8495), + [aux_sym_def_type_statement_token14] = ACTIONS(8495), + [aux_sym_call_statement_token1] = ACTIONS(8495), + [sym__ambiguous_call_statement] = ACTIONS(8495), + [aux_sym_addressof_expression_token1] = ACTIONS(8495), + [aux_sym_type_of_expression_token1] = ACTIONS(8495), + [aux_sym_unary_expression_token1] = ACTIONS(8495), + [sym_string_literal] = ACTIONS(8497), + [sym_number_literal] = ACTIONS(8497), + [aux_sym_boolean_literal_token1] = ACTIONS(8495), + [aux_sym_boolean_literal_token2] = ACTIONS(8495), + [sym_nothing_literal] = ACTIONS(8495), + [sym_null_literal] = ACTIONS(8495), + [sym_empty_literal] = ACTIONS(8495), + [sym_date_literal] = ACTIONS(8497), + [anon_sym_POUND] = ACTIONS(8495), + }, + [STATE(5806)] = { + [aux_sym__argument_sequence_repeat1] = STATE(5419), + [sym_identifier] = ACTIONS(8549), + [sym_newline] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8549), + [aux_sym_frm_property_statement_token1] = ACTIONS(8549), + [anon_sym_DOT] = ACTIONS(8549), + [anon_sym_BANG] = ACTIONS(8551), + [aux_sym__attribute_identifier_token1] = ACTIONS(8549), + [aux_sym_option_statement_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8549), + [aux_sym_preprocessor_const_token1] = ACTIONS(8549), + [sym_static_modifier] = ACTIONS(8549), + [sym__dim_keyword] = ACTIONS(8549), + [sym__redim_keyword] = ACTIONS(8549), + [aux_sym_get_accessor_token1] = ACTIONS(8549), + [aux_sym_set_accessor_token1] = ACTIONS(8549), + [anon_sym_COMMA] = ACTIONS(10817), + [aux_sym_const_declaration_token1] = ACTIONS(8549), + [anon_sym_LPAREN] = ACTIONS(8551), + [aux_sym_as_type_clause_token2] = ACTIONS(8549), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8549), + [aux_sym_visibility_token1] = ACTIONS(8549), + [aux_sym_visibility_token2] = ACTIONS(8549), + [aux_sym_elseif_fragment_token1] = ACTIONS(8549), + [aux_sym_else_fragment_token1] = ACTIONS(8549), + [aux_sym_select_statement_token1] = ACTIONS(8549), + [aux_sym_select_statement_token2] = ACTIONS(8549), + [aux_sym__for_header_token1] = ACTIONS(8549), + [aux_sym_do_statement_token1] = ACTIONS(8549), + [aux_sym_do_condition_token1] = ACTIONS(8549), + [aux_sym_with_statement_token1] = ACTIONS(8549), + [aux_sym_exit_statement_token1] = ACTIONS(8549), + [sym_end_statement] = ACTIONS(8551), + [aux_sym_on_goto_statement_token1] = ACTIONS(8549), + [aux_sym_on_goto_statement_token2] = ACTIONS(8549), + [aux_sym_on_error_statement_token2] = ACTIONS(8549), + [sym__ambiguous_redim_statement] = ACTIONS(8551), + [aux_sym_erase_statement_token1] = ACTIONS(8549), + [aux_sym_open_statement_token1] = ACTIONS(8549), + [aux_sym_file_mode_token2] = ACTIONS(8549), + [aux_sym_file_access_token2] = ACTIONS(8549), + [aux_sym_file_lock_token2] = ACTIONS(8549), + [aux_sym_print_statement_token1] = ACTIONS(8549), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_DASH] = ACTIONS(8549), + [anon_sym_QMARK] = ACTIONS(8551), + [aux_sym_close_statement_token1] = ACTIONS(8549), + [aux_sym_put_statement_token1] = ACTIONS(8549), + [aux_sym_unlock_statement_token1] = ACTIONS(8549), + [aux_sym_seek_statement_token1] = ACTIONS(8549), + [sym_reset_statement] = ACTIONS(8549), + [aux_sym_raise_event_statement_token1] = ACTIONS(8549), + [sym_stop_statement] = ACTIONS(8549), + [sym_beep_statement] = ACTIONS(8549), + [aux_sym_unload_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token2] = ACTIONS(8549), + [aux_sym_def_type_statement_token3] = ACTIONS(8549), + [aux_sym_def_type_statement_token4] = ACTIONS(8549), + [aux_sym_def_type_statement_token5] = ACTIONS(8549), + [aux_sym_def_type_statement_token6] = ACTIONS(8549), + [aux_sym_def_type_statement_token7] = ACTIONS(8549), + [aux_sym_def_type_statement_token8] = ACTIONS(8549), + [aux_sym_def_type_statement_token9] = ACTIONS(8549), + [aux_sym_def_type_statement_token10] = ACTIONS(8549), + [aux_sym_def_type_statement_token11] = ACTIONS(8549), + [aux_sym_def_type_statement_token12] = ACTIONS(8549), + [aux_sym_def_type_statement_token13] = ACTIONS(8549), + [aux_sym_def_type_statement_token14] = ACTIONS(8549), + [aux_sym_call_statement_token1] = ACTIONS(8549), + [sym__ambiguous_call_statement] = ACTIONS(8549), + [aux_sym_addressof_expression_token1] = ACTIONS(8549), + [aux_sym_type_of_expression_token1] = ACTIONS(8549), + [aux_sym_unary_expression_token1] = ACTIONS(8549), + [sym_string_literal] = ACTIONS(8551), + [sym_number_literal] = ACTIONS(8551), + [aux_sym_boolean_literal_token1] = ACTIONS(8549), + [aux_sym_boolean_literal_token2] = ACTIONS(8549), + [sym_nothing_literal] = ACTIONS(8549), + [sym_null_literal] = ACTIONS(8549), + [sym_empty_literal] = ACTIONS(8549), + [sym_date_literal] = ACTIONS(8551), + [anon_sym_POUND] = ACTIONS(8549), + }, + [STATE(5807)] = { + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(5629), + [sym_identifier] = ACTIONS(8549), + [sym_newline] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8549), + [aux_sym_frm_property_statement_token1] = ACTIONS(8549), + [anon_sym_DOT] = ACTIONS(8549), + [anon_sym_BANG] = ACTIONS(8551), + [aux_sym__attribute_identifier_token1] = ACTIONS(8549), + [aux_sym_option_statement_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8549), + [aux_sym_preprocessor_const_token1] = ACTIONS(8549), + [sym_static_modifier] = ACTIONS(8549), + [sym__dim_keyword] = ACTIONS(8549), + [sym__redim_keyword] = ACTIONS(8549), + [aux_sym_get_accessor_token1] = ACTIONS(8549), + [aux_sym_set_accessor_token1] = ACTIONS(8549), + [aux_sym_const_declaration_token1] = ACTIONS(8549), + [anon_sym_LPAREN] = ACTIONS(8551), + [aux_sym_as_type_clause_token2] = ACTIONS(8549), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8549), + [aux_sym_visibility_token1] = ACTIONS(8549), + [aux_sym_visibility_token2] = ACTIONS(8549), + [aux_sym_elseif_fragment_token1] = ACTIONS(8549), + [aux_sym_else_fragment_token1] = ACTIONS(8549), + [aux_sym_select_statement_token1] = ACTIONS(8549), + [aux_sym_select_statement_token2] = ACTIONS(8549), + [aux_sym__for_header_token1] = ACTIONS(8549), + [aux_sym_do_statement_token1] = ACTIONS(8549), + [aux_sym_do_condition_token1] = ACTIONS(8549), + [aux_sym_with_statement_token1] = ACTIONS(8549), + [aux_sym_exit_statement_token1] = ACTIONS(8549), + [sym_end_statement] = ACTIONS(8551), + [aux_sym_on_goto_statement_token1] = ACTIONS(8549), + [aux_sym_on_goto_statement_token2] = ACTIONS(8549), + [aux_sym_on_error_statement_token2] = ACTIONS(8549), + [sym__ambiguous_redim_statement] = ACTIONS(8551), + [aux_sym_erase_statement_token1] = ACTIONS(8549), + [aux_sym_open_statement_token1] = ACTIONS(8549), + [aux_sym_file_mode_token2] = ACTIONS(8549), + [aux_sym_file_access_token2] = ACTIONS(8549), + [aux_sym_file_lock_token2] = ACTIONS(8549), + [aux_sym_print_statement_token1] = ACTIONS(8549), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_DASH] = ACTIONS(8549), + [anon_sym_SEMI] = ACTIONS(10269), + [anon_sym_QMARK] = ACTIONS(8551), + [aux_sym_close_statement_token1] = ACTIONS(8549), + [aux_sym_put_statement_token1] = ACTIONS(8549), + [aux_sym_unlock_statement_token1] = ACTIONS(8549), + [aux_sym_seek_statement_token1] = ACTIONS(8549), + [sym_reset_statement] = ACTIONS(8549), + [aux_sym_raise_event_statement_token1] = ACTIONS(8549), + [sym_stop_statement] = ACTIONS(8549), + [sym_beep_statement] = ACTIONS(8549), + [aux_sym_unload_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token2] = ACTIONS(8549), + [aux_sym_def_type_statement_token3] = ACTIONS(8549), + [aux_sym_def_type_statement_token4] = ACTIONS(8549), + [aux_sym_def_type_statement_token5] = ACTIONS(8549), + [aux_sym_def_type_statement_token6] = ACTIONS(8549), + [aux_sym_def_type_statement_token7] = ACTIONS(8549), + [aux_sym_def_type_statement_token8] = ACTIONS(8549), + [aux_sym_def_type_statement_token9] = ACTIONS(8549), + [aux_sym_def_type_statement_token10] = ACTIONS(8549), + [aux_sym_def_type_statement_token11] = ACTIONS(8549), + [aux_sym_def_type_statement_token12] = ACTIONS(8549), + [aux_sym_def_type_statement_token13] = ACTIONS(8549), + [aux_sym_def_type_statement_token14] = ACTIONS(8549), + [aux_sym_call_statement_token1] = ACTIONS(8549), + [sym__ambiguous_call_statement] = ACTIONS(8549), + [aux_sym_addressof_expression_token1] = ACTIONS(8549), + [aux_sym_type_of_expression_token1] = ACTIONS(8549), + [aux_sym_unary_expression_token1] = ACTIONS(8549), + [sym_string_literal] = ACTIONS(8551), + [sym_number_literal] = ACTIONS(8551), + [aux_sym_boolean_literal_token1] = ACTIONS(8549), + [aux_sym_boolean_literal_token2] = ACTIONS(8549), + [sym_nothing_literal] = ACTIONS(8549), + [sym_null_literal] = ACTIONS(8549), + [sym_empty_literal] = ACTIONS(8549), + [sym_date_literal] = ACTIONS(8551), + [anon_sym_POUND] = ACTIONS(8549), + }, + [STATE(5808)] = { + [aux_sym_const_declaration_repeat1] = STATE(5808), + [sym_identifier] = ACTIONS(8350), + [sym_newline] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8350), + [aux_sym_frm_property_statement_token1] = ACTIONS(8350), + [anon_sym_DOT] = ACTIONS(8350), + [anon_sym_BANG] = ACTIONS(8352), + [aux_sym__attribute_identifier_token1] = ACTIONS(8350), + [aux_sym_option_statement_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8350), + [aux_sym_preprocessor_const_token1] = ACTIONS(8350), + [sym_static_modifier] = ACTIONS(8350), + [sym__dim_keyword] = ACTIONS(8350), + [sym__redim_keyword] = ACTIONS(8350), + [aux_sym_get_accessor_token1] = ACTIONS(8350), + [aux_sym_set_accessor_token1] = ACTIONS(8350), + [anon_sym_COMMA] = ACTIONS(10819), + [aux_sym_const_declaration_token1] = ACTIONS(8350), + [anon_sym_LPAREN] = ACTIONS(8352), + [aux_sym_as_type_clause_token2] = ACTIONS(8350), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8350), + [aux_sym_visibility_token1] = ACTIONS(8350), + [aux_sym_visibility_token2] = ACTIONS(8350), + [aux_sym_elseif_fragment_token1] = ACTIONS(8350), + [aux_sym_else_fragment_token1] = ACTIONS(8350), + [aux_sym_select_statement_token1] = ACTIONS(8350), + [aux_sym__for_header_token1] = ACTIONS(8350), + [aux_sym_do_statement_token1] = ACTIONS(8350), + [aux_sym_do_statement_token2] = ACTIONS(8350), + [aux_sym_do_condition_token1] = ACTIONS(8350), + [aux_sym_with_statement_token1] = ACTIONS(8350), + [aux_sym_exit_statement_token1] = ACTIONS(8350), + [sym_end_statement] = ACTIONS(8352), + [aux_sym_on_goto_statement_token1] = ACTIONS(8350), + [aux_sym_on_goto_statement_token2] = ACTIONS(8350), + [aux_sym_on_error_statement_token2] = ACTIONS(8350), + [sym__ambiguous_redim_statement] = ACTIONS(8352), + [aux_sym_erase_statement_token1] = ACTIONS(8350), + [aux_sym_open_statement_token1] = ACTIONS(8350), + [aux_sym_file_mode_token2] = ACTIONS(8350), + [aux_sym_file_access_token2] = ACTIONS(8350), + [aux_sym_file_lock_token2] = ACTIONS(8350), + [aux_sym_print_statement_token1] = ACTIONS(8350), + [anon_sym_PLUS] = ACTIONS(8352), + [anon_sym_DASH] = ACTIONS(8350), + [anon_sym_QMARK] = ACTIONS(8352), + [aux_sym_close_statement_token1] = ACTIONS(8350), + [aux_sym_put_statement_token1] = ACTIONS(8350), + [aux_sym_unlock_statement_token1] = ACTIONS(8350), + [aux_sym_seek_statement_token1] = ACTIONS(8350), + [sym_reset_statement] = ACTIONS(8350), + [aux_sym_raise_event_statement_token1] = ACTIONS(8350), + [sym_stop_statement] = ACTIONS(8350), + [sym_beep_statement] = ACTIONS(8350), + [aux_sym_unload_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token2] = ACTIONS(8350), + [aux_sym_def_type_statement_token3] = ACTIONS(8350), + [aux_sym_def_type_statement_token4] = ACTIONS(8350), + [aux_sym_def_type_statement_token5] = ACTIONS(8350), + [aux_sym_def_type_statement_token6] = ACTIONS(8350), + [aux_sym_def_type_statement_token7] = ACTIONS(8350), + [aux_sym_def_type_statement_token8] = ACTIONS(8350), + [aux_sym_def_type_statement_token9] = ACTIONS(8350), + [aux_sym_def_type_statement_token10] = ACTIONS(8350), + [aux_sym_def_type_statement_token11] = ACTIONS(8350), + [aux_sym_def_type_statement_token12] = ACTIONS(8350), + [aux_sym_def_type_statement_token13] = ACTIONS(8350), + [aux_sym_def_type_statement_token14] = ACTIONS(8350), + [aux_sym_call_statement_token1] = ACTIONS(8350), + [sym__ambiguous_call_statement] = ACTIONS(8350), + [aux_sym_addressof_expression_token1] = ACTIONS(8350), + [aux_sym_type_of_expression_token1] = ACTIONS(8350), + [aux_sym_unary_expression_token1] = ACTIONS(8350), + [sym_string_literal] = ACTIONS(8352), + [sym_number_literal] = ACTIONS(8352), + [aux_sym_boolean_literal_token1] = ACTIONS(8350), + [aux_sym_boolean_literal_token2] = ACTIONS(8350), + [sym_nothing_literal] = ACTIONS(8350), + [sym_null_literal] = ACTIONS(8350), + [sym_empty_literal] = ACTIONS(8350), + [sym_date_literal] = ACTIONS(8352), + [anon_sym_POUND] = ACTIONS(8350), + }, + [STATE(5809)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5322), + [sym_identifier] = ACTIONS(7939), + [sym_newline] = ACTIONS(7941), + [anon_sym_COLON] = ACTIONS(7941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7939), + [aux_sym_frm_property_statement_token1] = ACTIONS(7939), + [anon_sym_DOT] = ACTIONS(7939), + [anon_sym_BANG] = ACTIONS(7941), + [aux_sym__attribute_identifier_token1] = ACTIONS(7939), + [aux_sym_option_statement_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7939), + [aux_sym_preprocessor_const_token1] = ACTIONS(7939), + [sym_static_modifier] = ACTIONS(7939), + [sym__dim_keyword] = ACTIONS(7939), + [sym__redim_keyword] = ACTIONS(7939), + [aux_sym_get_accessor_token1] = ACTIONS(7939), + [aux_sym_set_accessor_token1] = ACTIONS(7939), + [anon_sym_COMMA] = ACTIONS(10552), + [aux_sym_const_declaration_token1] = ACTIONS(7939), + [anon_sym_LPAREN] = ACTIONS(7941), + [aux_sym_as_type_clause_token2] = ACTIONS(7939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7939), + [aux_sym_visibility_token1] = ACTIONS(7939), + [aux_sym_visibility_token2] = ACTIONS(7939), + [aux_sym_elseif_fragment_token1] = ACTIONS(7939), + [aux_sym_else_fragment_token1] = ACTIONS(7939), + [aux_sym_select_statement_token1] = ACTIONS(7939), + [aux_sym__for_header_token1] = ACTIONS(7939), + [aux_sym_do_statement_token1] = ACTIONS(7939), + [aux_sym_do_statement_token2] = ACTIONS(7939), + [aux_sym_do_condition_token1] = ACTIONS(7939), + [aux_sym_with_statement_token1] = ACTIONS(7939), + [aux_sym_exit_statement_token1] = ACTIONS(7939), + [sym_end_statement] = ACTIONS(7941), + [aux_sym_on_goto_statement_token1] = ACTIONS(7939), + [aux_sym_on_goto_statement_token2] = ACTIONS(7939), + [aux_sym_on_error_statement_token2] = ACTIONS(7939), + [sym__ambiguous_redim_statement] = ACTIONS(7941), + [aux_sym_erase_statement_token1] = ACTIONS(7939), + [aux_sym_open_statement_token1] = ACTIONS(7939), + [aux_sym_file_mode_token2] = ACTIONS(7939), + [aux_sym_file_access_token2] = ACTIONS(7939), + [aux_sym_file_lock_token2] = ACTIONS(7939), + [aux_sym_print_statement_token1] = ACTIONS(7939), + [anon_sym_PLUS] = ACTIONS(7941), + [anon_sym_DASH] = ACTIONS(7939), + [anon_sym_QMARK] = ACTIONS(7941), + [aux_sym_close_statement_token1] = ACTIONS(7939), + [aux_sym_put_statement_token1] = ACTIONS(7939), + [aux_sym_unlock_statement_token1] = ACTIONS(7939), + [aux_sym_seek_statement_token1] = ACTIONS(7939), + [sym_reset_statement] = ACTIONS(7939), + [aux_sym_raise_event_statement_token1] = ACTIONS(7939), + [sym_stop_statement] = ACTIONS(7939), + [sym_beep_statement] = ACTIONS(7939), + [aux_sym_unload_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token2] = ACTIONS(7939), + [aux_sym_def_type_statement_token3] = ACTIONS(7939), + [aux_sym_def_type_statement_token4] = ACTIONS(7939), + [aux_sym_def_type_statement_token5] = ACTIONS(7939), + [aux_sym_def_type_statement_token6] = ACTIONS(7939), + [aux_sym_def_type_statement_token7] = ACTIONS(7939), + [aux_sym_def_type_statement_token8] = ACTIONS(7939), + [aux_sym_def_type_statement_token9] = ACTIONS(7939), + [aux_sym_def_type_statement_token10] = ACTIONS(7939), + [aux_sym_def_type_statement_token11] = ACTIONS(7939), + [aux_sym_def_type_statement_token12] = ACTIONS(7939), + [aux_sym_def_type_statement_token13] = ACTIONS(7939), + [aux_sym_def_type_statement_token14] = ACTIONS(7939), + [aux_sym_call_statement_token1] = ACTIONS(7939), + [sym__ambiguous_call_statement] = ACTIONS(7939), + [aux_sym_addressof_expression_token1] = ACTIONS(7939), + [aux_sym_type_of_expression_token1] = ACTIONS(7939), + [aux_sym_unary_expression_token1] = ACTIONS(7939), + [sym_string_literal] = ACTIONS(7941), + [sym_number_literal] = ACTIONS(7941), + [aux_sym_boolean_literal_token1] = ACTIONS(7939), + [aux_sym_boolean_literal_token2] = ACTIONS(7939), + [sym_nothing_literal] = ACTIONS(7939), + [sym_null_literal] = ACTIONS(7939), + [sym_empty_literal] = ACTIONS(7939), + [sym_date_literal] = ACTIONS(7941), + [anon_sym_POUND] = ACTIONS(7939), + }, + [STATE(5810)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(8540), + [sym_newline] = ACTIONS(8542), + [anon_sym_COLON] = ACTIONS(8542), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8540), + [aux_sym_frm_property_statement_token1] = ACTIONS(8540), + [anon_sym_DOT] = ACTIONS(8540), + [anon_sym_BANG] = ACTIONS(8542), + [aux_sym__attribute_identifier_token1] = ACTIONS(8540), + [aux_sym_option_statement_token3] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8540), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8540), + [aux_sym_preprocessor_const_token1] = ACTIONS(8540), + [sym_static_modifier] = ACTIONS(8540), + [sym__dim_keyword] = ACTIONS(8540), + [sym__redim_keyword] = ACTIONS(8540), + [aux_sym_get_accessor_token1] = ACTIONS(8540), + [aux_sym_set_accessor_token1] = ACTIONS(8540), + [anon_sym_COMMA] = ACTIONS(10822), + [aux_sym_const_declaration_token1] = ACTIONS(8540), + [anon_sym_LPAREN] = ACTIONS(8542), + [aux_sym_as_type_clause_token2] = ACTIONS(8540), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8540), + [aux_sym_visibility_token1] = ACTIONS(8540), + [aux_sym_visibility_token2] = ACTIONS(8540), + [aux_sym_elseif_fragment_token1] = ACTIONS(8540), + [aux_sym_else_fragment_token1] = ACTIONS(8540), + [aux_sym_select_statement_token1] = ACTIONS(8540), + [aux_sym__for_header_token1] = ACTIONS(8540), + [aux_sym_do_statement_token1] = ACTIONS(8540), + [aux_sym_do_condition_token1] = ACTIONS(8540), + [aux_sym_with_statement_token1] = ACTIONS(8540), + [aux_sym_exit_statement_token1] = ACTIONS(8540), + [sym_end_statement] = ACTIONS(8542), + [aux_sym_on_goto_statement_token1] = ACTIONS(8540), + [aux_sym_on_goto_statement_token2] = ACTIONS(8540), + [aux_sym_on_error_statement_token2] = ACTIONS(8540), + [sym__ambiguous_redim_statement] = ACTIONS(8542), + [aux_sym_erase_statement_token1] = ACTIONS(8540), + [aux_sym_open_statement_token1] = ACTIONS(8540), + [aux_sym_file_mode_token2] = ACTIONS(8540), + [aux_sym_file_access_token2] = ACTIONS(8540), + [aux_sym_file_lock_token2] = ACTIONS(8540), + [aux_sym_print_statement_token1] = ACTIONS(8540), + [anon_sym_PLUS] = ACTIONS(8542), + [anon_sym_DASH] = ACTIONS(8540), + [anon_sym_QMARK] = ACTIONS(8542), + [aux_sym_close_statement_token1] = ACTIONS(8540), + [aux_sym_put_statement_token1] = ACTIONS(8540), + [aux_sym_unlock_statement_token1] = ACTIONS(8540), + [aux_sym_seek_statement_token1] = ACTIONS(8540), + [sym_reset_statement] = ACTIONS(8540), + [aux_sym_raise_event_statement_token1] = ACTIONS(8540), + [sym_stop_statement] = ACTIONS(8540), + [sym_beep_statement] = ACTIONS(8540), + [aux_sym_unload_statement_token1] = ACTIONS(8540), + [aux_sym_def_type_statement_token1] = ACTIONS(8540), + [aux_sym_def_type_statement_token2] = ACTIONS(8540), + [aux_sym_def_type_statement_token3] = ACTIONS(8540), + [aux_sym_def_type_statement_token4] = ACTIONS(8540), + [aux_sym_def_type_statement_token5] = ACTIONS(8540), + [aux_sym_def_type_statement_token6] = ACTIONS(8540), + [aux_sym_def_type_statement_token7] = ACTIONS(8540), + [aux_sym_def_type_statement_token8] = ACTIONS(8540), + [aux_sym_def_type_statement_token9] = ACTIONS(8540), + [aux_sym_def_type_statement_token10] = ACTIONS(8540), + [aux_sym_def_type_statement_token11] = ACTIONS(8540), + [aux_sym_def_type_statement_token12] = ACTIONS(8540), + [aux_sym_def_type_statement_token13] = ACTIONS(8540), + [aux_sym_def_type_statement_token14] = ACTIONS(8540), + [aux_sym_call_statement_token1] = ACTIONS(8540), + [sym__ambiguous_call_statement] = ACTIONS(8540), + [aux_sym_addressof_expression_token1] = ACTIONS(8540), + [aux_sym_type_of_expression_token1] = ACTIONS(8540), + [aux_sym_unary_expression_token1] = ACTIONS(8540), + [sym_string_literal] = ACTIONS(8542), + [sym_number_literal] = ACTIONS(8542), + [aux_sym_boolean_literal_token1] = ACTIONS(8540), + [aux_sym_boolean_literal_token2] = ACTIONS(8540), + [sym_nothing_literal] = ACTIONS(8540), + [sym_null_literal] = ACTIONS(8540), + [sym_empty_literal] = ACTIONS(8540), + [sym_date_literal] = ACTIONS(8542), + [anon_sym_POUND] = ACTIONS(8540), + }, + [STATE(5811)] = { + [sym_identifier] = ACTIONS(8745), + [sym_newline] = ACTIONS(8747), + [anon_sym_COLON] = ACTIONS(8747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8745), + [aux_sym_frm_property_statement_token1] = ACTIONS(8745), + [anon_sym_DOT] = ACTIONS(8745), + [anon_sym_BANG] = ACTIONS(8747), + [aux_sym__attribute_identifier_token1] = ACTIONS(8745), + [aux_sym_option_statement_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8745), + [aux_sym_preprocessor_const_token1] = ACTIONS(8745), + [sym_static_modifier] = ACTIONS(8745), + [sym__dim_keyword] = ACTIONS(8745), + [sym__redim_keyword] = ACTIONS(8745), + [aux_sym_get_accessor_token1] = ACTIONS(8745), + [aux_sym_set_accessor_token1] = ACTIONS(8745), + [aux_sym_const_declaration_token1] = ACTIONS(8745), + [anon_sym_LPAREN] = ACTIONS(8747), + [aux_sym_as_type_clause_token2] = ACTIONS(8745), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8745), + [aux_sym_visibility_token1] = ACTIONS(8745), + [aux_sym_visibility_token2] = ACTIONS(8745), + [aux_sym_elseif_fragment_token1] = ACTIONS(8745), + [aux_sym_else_fragment_token1] = ACTIONS(8745), + [aux_sym_select_statement_token1] = ACTIONS(8745), + [aux_sym_select_statement_token2] = ACTIONS(8745), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8745), + [aux_sym__for_header_token1] = ACTIONS(8745), + [aux_sym_do_statement_token1] = ACTIONS(8745), + [aux_sym_do_condition_token1] = ACTIONS(8745), + [aux_sym_with_statement_token1] = ACTIONS(8745), + [aux_sym_exit_statement_token1] = ACTIONS(8745), + [sym_end_statement] = ACTIONS(8747), + [aux_sym_on_goto_statement_token1] = ACTIONS(8745), + [aux_sym_on_goto_statement_token2] = ACTIONS(8745), + [aux_sym_on_error_statement_token2] = ACTIONS(8745), + [sym__ambiguous_redim_statement] = ACTIONS(8747), + [aux_sym_erase_statement_token1] = ACTIONS(8745), + [aux_sym_open_statement_token1] = ACTIONS(8745), + [aux_sym_file_mode_token2] = ACTIONS(8745), + [aux_sym_file_access_token2] = ACTIONS(8745), + [aux_sym_file_lock_token2] = ACTIONS(8745), + [aux_sym_print_statement_token1] = ACTIONS(8745), + [anon_sym_PLUS] = ACTIONS(8747), + [anon_sym_DASH] = ACTIONS(8745), + [anon_sym_QMARK] = ACTIONS(8747), + [aux_sym_close_statement_token1] = ACTIONS(8745), + [aux_sym_put_statement_token1] = ACTIONS(8745), + [aux_sym_unlock_statement_token1] = ACTIONS(8745), + [aux_sym_seek_statement_token1] = ACTIONS(8745), + [sym_reset_statement] = ACTIONS(8745), + [aux_sym_raise_event_statement_token1] = ACTIONS(8745), + [sym_stop_statement] = ACTIONS(8745), + [sym_beep_statement] = ACTIONS(8745), + [aux_sym_unload_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token2] = ACTIONS(8745), + [aux_sym_def_type_statement_token3] = ACTIONS(8745), + [aux_sym_def_type_statement_token4] = ACTIONS(8745), + [aux_sym_def_type_statement_token5] = ACTIONS(8745), + [aux_sym_def_type_statement_token6] = ACTIONS(8745), + [aux_sym_def_type_statement_token7] = ACTIONS(8745), + [aux_sym_def_type_statement_token8] = ACTIONS(8745), + [aux_sym_def_type_statement_token9] = ACTIONS(8745), + [aux_sym_def_type_statement_token10] = ACTIONS(8745), + [aux_sym_def_type_statement_token11] = ACTIONS(8745), + [aux_sym_def_type_statement_token12] = ACTIONS(8745), + [aux_sym_def_type_statement_token13] = ACTIONS(8745), + [aux_sym_def_type_statement_token14] = ACTIONS(8745), + [aux_sym_call_statement_token1] = ACTIONS(8745), + [sym__ambiguous_call_statement] = ACTIONS(8745), + [aux_sym_addressof_expression_token1] = ACTIONS(8745), + [aux_sym_type_of_expression_token1] = ACTIONS(8745), + [aux_sym_unary_expression_token1] = ACTIONS(8745), + [sym_string_literal] = ACTIONS(8747), + [sym_number_literal] = ACTIONS(8747), + [aux_sym_boolean_literal_token1] = ACTIONS(8745), + [aux_sym_boolean_literal_token2] = ACTIONS(8745), + [sym_nothing_literal] = ACTIONS(8745), + [sym_null_literal] = ACTIONS(8745), + [sym_empty_literal] = ACTIONS(8745), + [sym_date_literal] = ACTIONS(8747), + [anon_sym_POUND] = ACTIONS(8745), + }, + [STATE(5812)] = { + [sym_identifier] = ACTIONS(8287), + [sym_newline] = ACTIONS(8289), + [anon_sym_COLON] = ACTIONS(8289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8287), + [aux_sym_frm_property_statement_token1] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8287), + [anon_sym_BANG] = ACTIONS(8289), + [aux_sym__attribute_identifier_token1] = ACTIONS(8287), + [aux_sym_option_statement_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8287), + [aux_sym_preprocessor_const_token1] = ACTIONS(8287), + [sym_static_modifier] = ACTIONS(8287), + [sym__dim_keyword] = ACTIONS(8287), + [sym__redim_keyword] = ACTIONS(8287), + [aux_sym_get_accessor_token1] = ACTIONS(8287), + [aux_sym_set_accessor_token1] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8289), + [aux_sym_const_declaration_token1] = ACTIONS(8287), + [anon_sym_LPAREN] = ACTIONS(8289), + [aux_sym_as_type_clause_token2] = ACTIONS(8287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8287), + [aux_sym_visibility_token1] = ACTIONS(8287), + [aux_sym_visibility_token2] = ACTIONS(8287), + [aux_sym_elseif_fragment_token1] = ACTIONS(8287), + [aux_sym_else_fragment_token1] = ACTIONS(8287), + [aux_sym_select_statement_token1] = ACTIONS(8287), + [aux_sym_select_statement_token2] = ACTIONS(8287), + [aux_sym__for_header_token1] = ACTIONS(8287), + [aux_sym_do_statement_token1] = ACTIONS(8287), + [aux_sym_do_condition_token1] = ACTIONS(8287), + [aux_sym_with_statement_token1] = ACTIONS(8287), + [aux_sym_exit_statement_token1] = ACTIONS(8287), + [sym_end_statement] = ACTIONS(8289), + [aux_sym_on_goto_statement_token1] = ACTIONS(8287), + [aux_sym_on_goto_statement_token2] = ACTIONS(8287), + [aux_sym_on_error_statement_token2] = ACTIONS(8287), + [sym__ambiguous_redim_statement] = ACTIONS(8289), + [aux_sym_erase_statement_token1] = ACTIONS(8287), + [aux_sym_open_statement_token1] = ACTIONS(8287), + [aux_sym_file_mode_token2] = ACTIONS(8287), + [aux_sym_file_access_token2] = ACTIONS(8287), + [aux_sym_file_lock_token2] = ACTIONS(8287), + [aux_sym_print_statement_token1] = ACTIONS(8287), + [anon_sym_PLUS] = ACTIONS(8289), + [anon_sym_DASH] = ACTIONS(8287), + [anon_sym_QMARK] = ACTIONS(8289), + [aux_sym_close_statement_token1] = ACTIONS(8287), + [aux_sym_put_statement_token1] = ACTIONS(8287), + [aux_sym_unlock_statement_token1] = ACTIONS(8287), + [aux_sym_seek_statement_token1] = ACTIONS(8287), + [sym_reset_statement] = ACTIONS(8287), + [aux_sym_raise_event_statement_token1] = ACTIONS(8287), + [sym_stop_statement] = ACTIONS(8287), + [sym_beep_statement] = ACTIONS(8287), + [aux_sym_unload_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token2] = ACTIONS(8287), + [aux_sym_def_type_statement_token3] = ACTIONS(8287), + [aux_sym_def_type_statement_token4] = ACTIONS(8287), + [aux_sym_def_type_statement_token5] = ACTIONS(8287), + [aux_sym_def_type_statement_token6] = ACTIONS(8287), + [aux_sym_def_type_statement_token7] = ACTIONS(8287), + [aux_sym_def_type_statement_token8] = ACTIONS(8287), + [aux_sym_def_type_statement_token9] = ACTIONS(8287), + [aux_sym_def_type_statement_token10] = ACTIONS(8287), + [aux_sym_def_type_statement_token11] = ACTIONS(8287), + [aux_sym_def_type_statement_token12] = ACTIONS(8287), + [aux_sym_def_type_statement_token13] = ACTIONS(8287), + [aux_sym_def_type_statement_token14] = ACTIONS(8287), + [aux_sym_call_statement_token1] = ACTIONS(8287), + [sym__ambiguous_call_statement] = ACTIONS(8287), + [aux_sym_addressof_expression_token1] = ACTIONS(8287), + [aux_sym_type_of_expression_token1] = ACTIONS(8287), + [aux_sym_unary_expression_token1] = ACTIONS(8287), + [sym_string_literal] = ACTIONS(8289), + [sym_number_literal] = ACTIONS(8289), + [aux_sym_boolean_literal_token1] = ACTIONS(8287), + [aux_sym_boolean_literal_token2] = ACTIONS(8287), + [sym_nothing_literal] = ACTIONS(8287), + [sym_null_literal] = ACTIONS(8287), + [sym_empty_literal] = ACTIONS(8287), + [sym_date_literal] = ACTIONS(8289), + [anon_sym_POUND] = ACTIONS(8287), + }, + [STATE(5813)] = { + [sym_identifier] = ACTIONS(8911), + [sym_newline] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8911), + [aux_sym_frm_property_statement_token1] = ACTIONS(8911), + [anon_sym_DOT] = ACTIONS(8911), + [anon_sym_BANG] = ACTIONS(8913), + [aux_sym__attribute_identifier_token1] = ACTIONS(8911), + [aux_sym_option_statement_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8911), + [aux_sym_preprocessor_const_token1] = ACTIONS(8911), + [sym_static_modifier] = ACTIONS(8911), + [sym__dim_keyword] = ACTIONS(8911), + [sym__redim_keyword] = ACTIONS(8911), + [aux_sym_get_accessor_token1] = ACTIONS(8911), + [aux_sym_set_accessor_token1] = ACTIONS(8911), + [aux_sym_const_declaration_token1] = ACTIONS(8911), + [anon_sym_LPAREN] = ACTIONS(8913), + [aux_sym_as_type_clause_token2] = ACTIONS(8911), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8911), + [aux_sym_visibility_token1] = ACTIONS(8911), + [aux_sym_visibility_token2] = ACTIONS(8911), + [aux_sym_elseif_fragment_token1] = ACTIONS(8911), + [aux_sym_else_fragment_token1] = ACTIONS(8911), + [aux_sym_select_statement_token1] = ACTIONS(8911), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8911), + [aux_sym__for_header_token1] = ACTIONS(8911), + [aux_sym_do_statement_token1] = ACTIONS(8911), + [aux_sym_do_condition_token1] = ACTIONS(8911), + [aux_sym_while_statement_token1] = ACTIONS(8911), + [aux_sym_with_statement_token1] = ACTIONS(8911), + [aux_sym_exit_statement_token1] = ACTIONS(8911), + [sym_end_statement] = ACTIONS(8913), + [aux_sym_on_goto_statement_token1] = ACTIONS(8911), + [aux_sym_on_goto_statement_token2] = ACTIONS(8911), + [aux_sym_on_error_statement_token2] = ACTIONS(8911), + [sym__ambiguous_redim_statement] = ACTIONS(8913), + [aux_sym_erase_statement_token1] = ACTIONS(8911), + [aux_sym_open_statement_token1] = ACTIONS(8911), + [aux_sym_file_mode_token2] = ACTIONS(8911), + [aux_sym_file_access_token2] = ACTIONS(8911), + [aux_sym_file_lock_token2] = ACTIONS(8911), + [aux_sym_print_statement_token1] = ACTIONS(8911), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_DASH] = ACTIONS(8911), + [anon_sym_QMARK] = ACTIONS(8913), + [aux_sym_close_statement_token1] = ACTIONS(8911), + [aux_sym_put_statement_token1] = ACTIONS(8911), + [aux_sym_unlock_statement_token1] = ACTIONS(8911), + [aux_sym_seek_statement_token1] = ACTIONS(8911), + [sym_reset_statement] = ACTIONS(8911), + [aux_sym_raise_event_statement_token1] = ACTIONS(8911), + [sym_stop_statement] = ACTIONS(8911), + [sym_beep_statement] = ACTIONS(8911), + [aux_sym_unload_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token2] = ACTIONS(8911), + [aux_sym_def_type_statement_token3] = ACTIONS(8911), + [aux_sym_def_type_statement_token4] = ACTIONS(8911), + [aux_sym_def_type_statement_token5] = ACTIONS(8911), + [aux_sym_def_type_statement_token6] = ACTIONS(8911), + [aux_sym_def_type_statement_token7] = ACTIONS(8911), + [aux_sym_def_type_statement_token8] = ACTIONS(8911), + [aux_sym_def_type_statement_token9] = ACTIONS(8911), + [aux_sym_def_type_statement_token10] = ACTIONS(8911), + [aux_sym_def_type_statement_token11] = ACTIONS(8911), + [aux_sym_def_type_statement_token12] = ACTIONS(8911), + [aux_sym_def_type_statement_token13] = ACTIONS(8911), + [aux_sym_def_type_statement_token14] = ACTIONS(8911), + [aux_sym_call_statement_token1] = ACTIONS(8911), + [sym__ambiguous_call_statement] = ACTIONS(8911), + [aux_sym_addressof_expression_token1] = ACTIONS(8911), + [aux_sym_type_of_expression_token1] = ACTIONS(8911), + [aux_sym_unary_expression_token1] = ACTIONS(8911), + [sym_string_literal] = ACTIONS(8913), + [sym_number_literal] = ACTIONS(8913), + [aux_sym_boolean_literal_token1] = ACTIONS(8911), + [aux_sym_boolean_literal_token2] = ACTIONS(8911), + [sym_nothing_literal] = ACTIONS(8911), + [sym_null_literal] = ACTIONS(8911), + [sym_empty_literal] = ACTIONS(8911), + [sym_date_literal] = ACTIONS(8913), + [anon_sym_POUND] = ACTIONS(8911), + }, + [STATE(5814)] = { + [sym_identifier] = ACTIONS(8680), + [sym_newline] = ACTIONS(8682), + [anon_sym_COLON] = ACTIONS(8682), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8680), + [aux_sym_frm_property_statement_token1] = ACTIONS(8680), + [anon_sym_DOT] = ACTIONS(8680), + [anon_sym_BANG] = ACTIONS(8682), + [aux_sym__attribute_identifier_token1] = ACTIONS(8680), + [aux_sym_option_statement_token3] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8680), + [aux_sym_preprocessor_const_token1] = ACTIONS(8680), + [sym_static_modifier] = ACTIONS(8680), + [sym__dim_keyword] = ACTIONS(8680), + [sym__redim_keyword] = ACTIONS(8680), + [aux_sym_get_accessor_token1] = ACTIONS(8680), + [aux_sym_set_accessor_token1] = ACTIONS(8680), + [anon_sym_COMMA] = ACTIONS(8682), + [aux_sym_const_declaration_token1] = ACTIONS(8680), + [anon_sym_LPAREN] = ACTIONS(8682), + [aux_sym_as_type_clause_token2] = ACTIONS(8680), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8680), + [aux_sym_visibility_token1] = ACTIONS(8680), + [aux_sym_visibility_token2] = ACTIONS(8680), + [aux_sym_elseif_fragment_token1] = ACTIONS(8680), + [aux_sym_else_fragment_token1] = ACTIONS(8680), + [aux_sym_select_statement_token1] = ACTIONS(8680), + [aux_sym__for_header_token1] = ACTIONS(8680), + [aux_sym_do_statement_token1] = ACTIONS(8680), + [aux_sym_do_condition_token1] = ACTIONS(8680), + [aux_sym_with_statement_token1] = ACTIONS(8680), + [aux_sym_exit_statement_token1] = ACTIONS(8680), + [sym_end_statement] = ACTIONS(8682), + [aux_sym_on_goto_statement_token1] = ACTIONS(8680), + [aux_sym_on_goto_statement_token2] = ACTIONS(8680), + [aux_sym_on_error_statement_token2] = ACTIONS(8680), + [sym__ambiguous_redim_statement] = ACTIONS(8682), + [aux_sym_erase_statement_token1] = ACTIONS(8680), + [aux_sym_open_statement_token1] = ACTIONS(8680), + [aux_sym_file_mode_token2] = ACTIONS(8680), + [aux_sym_file_access_token2] = ACTIONS(8680), + [aux_sym_file_lock_token2] = ACTIONS(8680), + [aux_sym_print_statement_token1] = ACTIONS(8680), + [anon_sym_PLUS] = ACTIONS(8682), + [anon_sym_DASH] = ACTIONS(8680), + [anon_sym_QMARK] = ACTIONS(8682), + [aux_sym_close_statement_token1] = ACTIONS(8680), + [aux_sym_put_statement_token1] = ACTIONS(8680), + [aux_sym_unlock_statement_token1] = ACTIONS(8680), + [aux_sym_seek_statement_token1] = ACTIONS(8680), + [sym_reset_statement] = ACTIONS(8680), + [aux_sym_raise_event_statement_token1] = ACTIONS(8680), + [sym_stop_statement] = ACTIONS(8680), + [sym_beep_statement] = ACTIONS(8680), + [aux_sym_unload_statement_token1] = ACTIONS(8680), + [aux_sym_def_type_statement_token1] = ACTIONS(8680), + [aux_sym_def_type_statement_token2] = ACTIONS(8680), + [aux_sym_def_type_statement_token3] = ACTIONS(8680), + [aux_sym_def_type_statement_token4] = ACTIONS(8680), + [aux_sym_def_type_statement_token5] = ACTIONS(8680), + [aux_sym_def_type_statement_token6] = ACTIONS(8680), + [aux_sym_def_type_statement_token7] = ACTIONS(8680), + [aux_sym_def_type_statement_token8] = ACTIONS(8680), + [aux_sym_def_type_statement_token9] = ACTIONS(8680), + [aux_sym_def_type_statement_token10] = ACTIONS(8680), + [aux_sym_def_type_statement_token11] = ACTIONS(8680), + [aux_sym_def_type_statement_token12] = ACTIONS(8680), + [aux_sym_def_type_statement_token13] = ACTIONS(8680), + [aux_sym_def_type_statement_token14] = ACTIONS(8680), + [aux_sym_call_statement_token1] = ACTIONS(8680), + [sym__ambiguous_call_statement] = ACTIONS(8680), + [aux_sym_addressof_expression_token1] = ACTIONS(8680), + [aux_sym_type_of_expression_token1] = ACTIONS(8680), + [aux_sym_unary_expression_token1] = ACTIONS(8680), + [sym_string_literal] = ACTIONS(8682), + [sym_number_literal] = ACTIONS(8682), + [aux_sym_boolean_literal_token1] = ACTIONS(8680), + [aux_sym_boolean_literal_token2] = ACTIONS(8680), + [sym_nothing_literal] = ACTIONS(8680), + [sym_null_literal] = ACTIONS(8680), + [sym_empty_literal] = ACTIONS(8680), + [sym_date_literal] = ACTIONS(8682), + [anon_sym_POUND] = ACTIONS(8680), + }, + [STATE(5815)] = { + [sym_identifier] = ACTIONS(8839), + [sym_newline] = ACTIONS(8841), + [anon_sym_COLON] = ACTIONS(8841), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8839), + [aux_sym_frm_property_statement_token1] = ACTIONS(8839), + [anon_sym_DOT] = ACTIONS(8839), + [anon_sym_BANG] = ACTIONS(8841), + [aux_sym__attribute_identifier_token1] = ACTIONS(8839), + [aux_sym_option_statement_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8839), + [aux_sym_preprocessor_const_token1] = ACTIONS(8839), + [sym_static_modifier] = ACTIONS(8839), + [sym__dim_keyword] = ACTIONS(8839), + [sym__redim_keyword] = ACTIONS(8839), + [aux_sym_get_accessor_token1] = ACTIONS(8839), + [aux_sym_set_accessor_token1] = ACTIONS(8839), + [aux_sym_const_declaration_token1] = ACTIONS(8839), + [anon_sym_LPAREN] = ACTIONS(8841), + [aux_sym_as_type_clause_token2] = ACTIONS(8839), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8839), + [aux_sym_visibility_token1] = ACTIONS(8839), + [aux_sym_visibility_token2] = ACTIONS(8839), + [aux_sym_elseif_fragment_token1] = ACTIONS(8839), + [aux_sym_else_fragment_token1] = ACTIONS(8839), + [aux_sym_select_statement_token1] = ACTIONS(8839), + [aux_sym_select_statement_token2] = ACTIONS(8839), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8839), + [aux_sym__for_header_token1] = ACTIONS(8839), + [aux_sym_do_statement_token1] = ACTIONS(8839), + [aux_sym_do_condition_token1] = ACTIONS(8839), + [aux_sym_with_statement_token1] = ACTIONS(8839), + [aux_sym_exit_statement_token1] = ACTIONS(8839), + [sym_end_statement] = ACTIONS(8841), + [aux_sym_on_goto_statement_token1] = ACTIONS(8839), + [aux_sym_on_goto_statement_token2] = ACTIONS(8839), + [aux_sym_on_error_statement_token2] = ACTIONS(8839), + [sym__ambiguous_redim_statement] = ACTIONS(8841), + [aux_sym_erase_statement_token1] = ACTIONS(8839), + [aux_sym_open_statement_token1] = ACTIONS(8839), + [aux_sym_file_mode_token2] = ACTIONS(8839), + [aux_sym_file_access_token2] = ACTIONS(8839), + [aux_sym_file_lock_token2] = ACTIONS(8839), + [aux_sym_print_statement_token1] = ACTIONS(8839), + [anon_sym_PLUS] = ACTIONS(8841), + [anon_sym_DASH] = ACTIONS(8839), + [anon_sym_QMARK] = ACTIONS(8841), + [aux_sym_close_statement_token1] = ACTIONS(8839), + [aux_sym_put_statement_token1] = ACTIONS(8839), + [aux_sym_unlock_statement_token1] = ACTIONS(8839), + [aux_sym_seek_statement_token1] = ACTIONS(8839), + [sym_reset_statement] = ACTIONS(8839), + [aux_sym_raise_event_statement_token1] = ACTIONS(8839), + [sym_stop_statement] = ACTIONS(8839), + [sym_beep_statement] = ACTIONS(8839), + [aux_sym_unload_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token2] = ACTIONS(8839), + [aux_sym_def_type_statement_token3] = ACTIONS(8839), + [aux_sym_def_type_statement_token4] = ACTIONS(8839), + [aux_sym_def_type_statement_token5] = ACTIONS(8839), + [aux_sym_def_type_statement_token6] = ACTIONS(8839), + [aux_sym_def_type_statement_token7] = ACTIONS(8839), + [aux_sym_def_type_statement_token8] = ACTIONS(8839), + [aux_sym_def_type_statement_token9] = ACTIONS(8839), + [aux_sym_def_type_statement_token10] = ACTIONS(8839), + [aux_sym_def_type_statement_token11] = ACTIONS(8839), + [aux_sym_def_type_statement_token12] = ACTIONS(8839), + [aux_sym_def_type_statement_token13] = ACTIONS(8839), + [aux_sym_def_type_statement_token14] = ACTIONS(8839), + [aux_sym_call_statement_token1] = ACTIONS(8839), + [sym__ambiguous_call_statement] = ACTIONS(8839), + [aux_sym_addressof_expression_token1] = ACTIONS(8839), + [aux_sym_type_of_expression_token1] = ACTIONS(8839), + [aux_sym_unary_expression_token1] = ACTIONS(8839), + [sym_string_literal] = ACTIONS(8841), + [sym_number_literal] = ACTIONS(8841), + [aux_sym_boolean_literal_token1] = ACTIONS(8839), + [aux_sym_boolean_literal_token2] = ACTIONS(8839), + [sym_nothing_literal] = ACTIONS(8839), + [sym_null_literal] = ACTIONS(8839), + [sym_empty_literal] = ACTIONS(8839), + [sym_date_literal] = ACTIONS(8841), + [anon_sym_POUND] = ACTIONS(8839), + }, + [STATE(5816)] = { + [sym_do_condition] = STATE(7223), + [sym_identifier] = ACTIONS(8419), + [sym_newline] = ACTIONS(8421), + [anon_sym_COLON] = ACTIONS(8421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8419), + [aux_sym_frm_property_statement_token1] = ACTIONS(8419), + [anon_sym_DOT] = ACTIONS(8419), + [anon_sym_BANG] = ACTIONS(8421), + [aux_sym__attribute_identifier_token1] = ACTIONS(8419), + [aux_sym_option_statement_token3] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8419), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8419), + [aux_sym_preprocessor_const_token1] = ACTIONS(8419), + [sym_static_modifier] = ACTIONS(8419), + [sym__dim_keyword] = ACTIONS(8419), + [sym__redim_keyword] = ACTIONS(8419), + [aux_sym_get_accessor_token1] = ACTIONS(8419), + [aux_sym_set_accessor_token1] = ACTIONS(8419), + [aux_sym_const_declaration_token1] = ACTIONS(8419), + [anon_sym_LPAREN] = ACTIONS(8421), + [aux_sym_as_type_clause_token2] = ACTIONS(8419), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8419), + [aux_sym_visibility_token1] = ACTIONS(8419), + [aux_sym_visibility_token2] = ACTIONS(8419), + [aux_sym_elseif_fragment_token1] = ACTIONS(8419), + [aux_sym_else_fragment_token1] = ACTIONS(8419), + [aux_sym_select_statement_token1] = ACTIONS(8419), + [aux_sym__for_header_token1] = ACTIONS(8419), + [aux_sym_do_statement_token1] = ACTIONS(8419), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8419), + [aux_sym_exit_statement_token1] = ACTIONS(8419), + [sym_end_statement] = ACTIONS(8421), + [aux_sym_on_goto_statement_token1] = ACTIONS(8419), + [aux_sym_on_goto_statement_token2] = ACTIONS(8419), + [aux_sym_on_error_statement_token2] = ACTIONS(8419), + [sym__ambiguous_redim_statement] = ACTIONS(8421), + [aux_sym_erase_statement_token1] = ACTIONS(8419), + [aux_sym_open_statement_token1] = ACTIONS(8419), + [aux_sym_file_mode_token2] = ACTIONS(8419), + [aux_sym_file_access_token2] = ACTIONS(8419), + [aux_sym_file_lock_token2] = ACTIONS(8419), + [aux_sym_print_statement_token1] = ACTIONS(8419), + [anon_sym_PLUS] = ACTIONS(8421), + [anon_sym_DASH] = ACTIONS(8419), + [anon_sym_QMARK] = ACTIONS(8421), + [aux_sym_close_statement_token1] = ACTIONS(8419), + [aux_sym_put_statement_token1] = ACTIONS(8419), + [aux_sym_unlock_statement_token1] = ACTIONS(8419), + [aux_sym_seek_statement_token1] = ACTIONS(8419), + [sym_reset_statement] = ACTIONS(8419), + [aux_sym_raise_event_statement_token1] = ACTIONS(8419), + [sym_stop_statement] = ACTIONS(8419), + [sym_beep_statement] = ACTIONS(8419), + [aux_sym_unload_statement_token1] = ACTIONS(8419), + [aux_sym_def_type_statement_token1] = ACTIONS(8419), + [aux_sym_def_type_statement_token2] = ACTIONS(8419), + [aux_sym_def_type_statement_token3] = ACTIONS(8419), + [aux_sym_def_type_statement_token4] = ACTIONS(8419), + [aux_sym_def_type_statement_token5] = ACTIONS(8419), + [aux_sym_def_type_statement_token6] = ACTIONS(8419), + [aux_sym_def_type_statement_token7] = ACTIONS(8419), + [aux_sym_def_type_statement_token8] = ACTIONS(8419), + [aux_sym_def_type_statement_token9] = ACTIONS(8419), + [aux_sym_def_type_statement_token10] = ACTIONS(8419), + [aux_sym_def_type_statement_token11] = ACTIONS(8419), + [aux_sym_def_type_statement_token12] = ACTIONS(8419), + [aux_sym_def_type_statement_token13] = ACTIONS(8419), + [aux_sym_def_type_statement_token14] = ACTIONS(8419), + [aux_sym_call_statement_token1] = ACTIONS(8419), + [sym__ambiguous_call_statement] = ACTIONS(8419), + [aux_sym_addressof_expression_token1] = ACTIONS(8419), + [aux_sym_type_of_expression_token1] = ACTIONS(8419), + [aux_sym_unary_expression_token1] = ACTIONS(8419), + [sym_string_literal] = ACTIONS(8421), + [sym_number_literal] = ACTIONS(8421), + [aux_sym_boolean_literal_token1] = ACTIONS(8419), + [aux_sym_boolean_literal_token2] = ACTIONS(8419), + [sym_nothing_literal] = ACTIONS(8419), + [sym_null_literal] = ACTIONS(8419), + [sym_empty_literal] = ACTIONS(8419), + [sym_date_literal] = ACTIONS(8421), + [anon_sym_POUND] = ACTIONS(8419), + }, + [STATE(5817)] = { + [sym_do_condition] = STATE(7225), + [sym_identifier] = ACTIONS(8423), + [sym_newline] = ACTIONS(8425), + [anon_sym_COLON] = ACTIONS(8425), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8423), + [aux_sym_frm_property_statement_token1] = ACTIONS(8423), + [anon_sym_DOT] = ACTIONS(8423), + [anon_sym_BANG] = ACTIONS(8425), + [aux_sym__attribute_identifier_token1] = ACTIONS(8423), + [aux_sym_option_statement_token3] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8423), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8423), + [aux_sym_preprocessor_const_token1] = ACTIONS(8423), + [sym_static_modifier] = ACTIONS(8423), + [sym__dim_keyword] = ACTIONS(8423), + [sym__redim_keyword] = ACTIONS(8423), + [aux_sym_get_accessor_token1] = ACTIONS(8423), + [aux_sym_set_accessor_token1] = ACTIONS(8423), + [aux_sym_const_declaration_token1] = ACTIONS(8423), + [anon_sym_LPAREN] = ACTIONS(8425), + [aux_sym_as_type_clause_token2] = ACTIONS(8423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8423), + [aux_sym_visibility_token1] = ACTIONS(8423), + [aux_sym_visibility_token2] = ACTIONS(8423), + [aux_sym_elseif_fragment_token1] = ACTIONS(8423), + [aux_sym_else_fragment_token1] = ACTIONS(8423), + [aux_sym_select_statement_token1] = ACTIONS(8423), + [aux_sym__for_header_token1] = ACTIONS(8423), + [aux_sym_do_statement_token1] = ACTIONS(8423), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8423), + [aux_sym_exit_statement_token1] = ACTIONS(8423), + [sym_end_statement] = ACTIONS(8425), + [aux_sym_on_goto_statement_token1] = ACTIONS(8423), + [aux_sym_on_goto_statement_token2] = ACTIONS(8423), + [aux_sym_on_error_statement_token2] = ACTIONS(8423), + [sym__ambiguous_redim_statement] = ACTIONS(8425), + [aux_sym_erase_statement_token1] = ACTIONS(8423), + [aux_sym_open_statement_token1] = ACTIONS(8423), + [aux_sym_file_mode_token2] = ACTIONS(8423), + [aux_sym_file_access_token2] = ACTIONS(8423), + [aux_sym_file_lock_token2] = ACTIONS(8423), + [aux_sym_print_statement_token1] = ACTIONS(8423), + [anon_sym_PLUS] = ACTIONS(8425), + [anon_sym_DASH] = ACTIONS(8423), + [anon_sym_QMARK] = ACTIONS(8425), + [aux_sym_close_statement_token1] = ACTIONS(8423), + [aux_sym_put_statement_token1] = ACTIONS(8423), + [aux_sym_unlock_statement_token1] = ACTIONS(8423), + [aux_sym_seek_statement_token1] = ACTIONS(8423), + [sym_reset_statement] = ACTIONS(8423), + [aux_sym_raise_event_statement_token1] = ACTIONS(8423), + [sym_stop_statement] = ACTIONS(8423), + [sym_beep_statement] = ACTIONS(8423), + [aux_sym_unload_statement_token1] = ACTIONS(8423), + [aux_sym_def_type_statement_token1] = ACTIONS(8423), + [aux_sym_def_type_statement_token2] = ACTIONS(8423), + [aux_sym_def_type_statement_token3] = ACTIONS(8423), + [aux_sym_def_type_statement_token4] = ACTIONS(8423), + [aux_sym_def_type_statement_token5] = ACTIONS(8423), + [aux_sym_def_type_statement_token6] = ACTIONS(8423), + [aux_sym_def_type_statement_token7] = ACTIONS(8423), + [aux_sym_def_type_statement_token8] = ACTIONS(8423), + [aux_sym_def_type_statement_token9] = ACTIONS(8423), + [aux_sym_def_type_statement_token10] = ACTIONS(8423), + [aux_sym_def_type_statement_token11] = ACTIONS(8423), + [aux_sym_def_type_statement_token12] = ACTIONS(8423), + [aux_sym_def_type_statement_token13] = ACTIONS(8423), + [aux_sym_def_type_statement_token14] = ACTIONS(8423), + [aux_sym_call_statement_token1] = ACTIONS(8423), + [sym__ambiguous_call_statement] = ACTIONS(8423), + [aux_sym_addressof_expression_token1] = ACTIONS(8423), + [aux_sym_type_of_expression_token1] = ACTIONS(8423), + [aux_sym_unary_expression_token1] = ACTIONS(8423), + [sym_string_literal] = ACTIONS(8425), + [sym_number_literal] = ACTIONS(8425), + [aux_sym_boolean_literal_token1] = ACTIONS(8423), + [aux_sym_boolean_literal_token2] = ACTIONS(8423), + [sym_nothing_literal] = ACTIONS(8423), + [sym_null_literal] = ACTIONS(8423), + [sym_empty_literal] = ACTIONS(8423), + [sym_date_literal] = ACTIONS(8425), + [anon_sym_POUND] = ACTIONS(8423), + }, + [STATE(5818)] = { + [sym_do_condition] = STATE(7240), + [sym_identifier] = ACTIONS(8427), + [sym_newline] = ACTIONS(8429), + [anon_sym_COLON] = ACTIONS(8429), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8427), + [aux_sym_frm_property_statement_token1] = ACTIONS(8427), + [anon_sym_DOT] = ACTIONS(8427), + [anon_sym_BANG] = ACTIONS(8429), + [aux_sym__attribute_identifier_token1] = ACTIONS(8427), + [aux_sym_option_statement_token3] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8427), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8427), + [aux_sym_preprocessor_const_token1] = ACTIONS(8427), + [sym_static_modifier] = ACTIONS(8427), + [sym__dim_keyword] = ACTIONS(8427), + [sym__redim_keyword] = ACTIONS(8427), + [aux_sym_get_accessor_token1] = ACTIONS(8427), + [aux_sym_set_accessor_token1] = ACTIONS(8427), + [aux_sym_const_declaration_token1] = ACTIONS(8427), + [anon_sym_LPAREN] = ACTIONS(8429), + [aux_sym_as_type_clause_token2] = ACTIONS(8427), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8427), + [aux_sym_visibility_token1] = ACTIONS(8427), + [aux_sym_visibility_token2] = ACTIONS(8427), + [aux_sym_elseif_fragment_token1] = ACTIONS(8427), + [aux_sym_else_fragment_token1] = ACTIONS(8427), + [aux_sym_select_statement_token1] = ACTIONS(8427), + [aux_sym__for_header_token1] = ACTIONS(8427), + [aux_sym_do_statement_token1] = ACTIONS(8427), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8427), + [aux_sym_exit_statement_token1] = ACTIONS(8427), + [sym_end_statement] = ACTIONS(8429), + [aux_sym_on_goto_statement_token1] = ACTIONS(8427), + [aux_sym_on_goto_statement_token2] = ACTIONS(8427), + [aux_sym_on_error_statement_token2] = ACTIONS(8427), + [sym__ambiguous_redim_statement] = ACTIONS(8429), + [aux_sym_erase_statement_token1] = ACTIONS(8427), + [aux_sym_open_statement_token1] = ACTIONS(8427), + [aux_sym_file_mode_token2] = ACTIONS(8427), + [aux_sym_file_access_token2] = ACTIONS(8427), + [aux_sym_file_lock_token2] = ACTIONS(8427), + [aux_sym_print_statement_token1] = ACTIONS(8427), + [anon_sym_PLUS] = ACTIONS(8429), + [anon_sym_DASH] = ACTIONS(8427), + [anon_sym_QMARK] = ACTIONS(8429), + [aux_sym_close_statement_token1] = ACTIONS(8427), + [aux_sym_put_statement_token1] = ACTIONS(8427), + [aux_sym_unlock_statement_token1] = ACTIONS(8427), + [aux_sym_seek_statement_token1] = ACTIONS(8427), + [sym_reset_statement] = ACTIONS(8427), + [aux_sym_raise_event_statement_token1] = ACTIONS(8427), + [sym_stop_statement] = ACTIONS(8427), + [sym_beep_statement] = ACTIONS(8427), + [aux_sym_unload_statement_token1] = ACTIONS(8427), + [aux_sym_def_type_statement_token1] = ACTIONS(8427), + [aux_sym_def_type_statement_token2] = ACTIONS(8427), + [aux_sym_def_type_statement_token3] = ACTIONS(8427), + [aux_sym_def_type_statement_token4] = ACTIONS(8427), + [aux_sym_def_type_statement_token5] = ACTIONS(8427), + [aux_sym_def_type_statement_token6] = ACTIONS(8427), + [aux_sym_def_type_statement_token7] = ACTIONS(8427), + [aux_sym_def_type_statement_token8] = ACTIONS(8427), + [aux_sym_def_type_statement_token9] = ACTIONS(8427), + [aux_sym_def_type_statement_token10] = ACTIONS(8427), + [aux_sym_def_type_statement_token11] = ACTIONS(8427), + [aux_sym_def_type_statement_token12] = ACTIONS(8427), + [aux_sym_def_type_statement_token13] = ACTIONS(8427), + [aux_sym_def_type_statement_token14] = ACTIONS(8427), + [aux_sym_call_statement_token1] = ACTIONS(8427), + [sym__ambiguous_call_statement] = ACTIONS(8427), + [aux_sym_addressof_expression_token1] = ACTIONS(8427), + [aux_sym_type_of_expression_token1] = ACTIONS(8427), + [aux_sym_unary_expression_token1] = ACTIONS(8427), + [sym_string_literal] = ACTIONS(8429), + [sym_number_literal] = ACTIONS(8429), + [aux_sym_boolean_literal_token1] = ACTIONS(8427), + [aux_sym_boolean_literal_token2] = ACTIONS(8427), + [sym_nothing_literal] = ACTIONS(8427), + [sym_null_literal] = ACTIONS(8427), + [sym_empty_literal] = ACTIONS(8427), + [sym_date_literal] = ACTIONS(8429), + [anon_sym_POUND] = ACTIONS(8427), + }, + [STATE(5819)] = { + [sym_identifier] = ACTIONS(8672), + [sym_newline] = ACTIONS(8674), + [anon_sym_COLON] = ACTIONS(8674), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8672), + [aux_sym_frm_property_statement_token1] = ACTIONS(8672), + [anon_sym_DOT] = ACTIONS(8672), + [anon_sym_BANG] = ACTIONS(8674), + [aux_sym__attribute_identifier_token1] = ACTIONS(8672), + [aux_sym_option_statement_token3] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8672), + [aux_sym_preprocessor_const_token1] = ACTIONS(8672), + [sym_static_modifier] = ACTIONS(8672), + [sym__dim_keyword] = ACTIONS(8672), + [sym__redim_keyword] = ACTIONS(8672), + [aux_sym_get_accessor_token1] = ACTIONS(8672), + [aux_sym_set_accessor_token1] = ACTIONS(8672), + [anon_sym_COMMA] = ACTIONS(8674), + [aux_sym_const_declaration_token1] = ACTIONS(8672), + [anon_sym_LPAREN] = ACTIONS(8674), + [aux_sym_as_type_clause_token2] = ACTIONS(8672), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8672), + [aux_sym_visibility_token1] = ACTIONS(8672), + [aux_sym_visibility_token2] = ACTIONS(8672), + [aux_sym_elseif_fragment_token1] = ACTIONS(8672), + [aux_sym_else_fragment_token1] = ACTIONS(8672), + [aux_sym_select_statement_token1] = ACTIONS(8672), + [aux_sym_select_statement_token2] = ACTIONS(8672), + [aux_sym__for_header_token1] = ACTIONS(8672), + [aux_sym_do_statement_token1] = ACTIONS(8672), + [aux_sym_do_condition_token1] = ACTIONS(8672), + [aux_sym_with_statement_token1] = ACTIONS(8672), + [aux_sym_exit_statement_token1] = ACTIONS(8672), + [sym_end_statement] = ACTIONS(8674), + [aux_sym_on_goto_statement_token1] = ACTIONS(8672), + [aux_sym_on_goto_statement_token2] = ACTIONS(8672), + [aux_sym_on_error_statement_token2] = ACTIONS(8672), + [sym__ambiguous_redim_statement] = ACTIONS(8674), + [aux_sym_erase_statement_token1] = ACTIONS(8672), + [aux_sym_open_statement_token1] = ACTIONS(8672), + [aux_sym_file_mode_token2] = ACTIONS(8672), + [aux_sym_file_access_token2] = ACTIONS(8672), + [aux_sym_file_lock_token2] = ACTIONS(8672), + [aux_sym_print_statement_token1] = ACTIONS(8672), + [anon_sym_PLUS] = ACTIONS(8674), + [anon_sym_DASH] = ACTIONS(8672), + [anon_sym_QMARK] = ACTIONS(8674), + [aux_sym_close_statement_token1] = ACTIONS(8672), + [aux_sym_put_statement_token1] = ACTIONS(8672), + [aux_sym_unlock_statement_token1] = ACTIONS(8672), + [aux_sym_seek_statement_token1] = ACTIONS(8672), + [sym_reset_statement] = ACTIONS(8672), + [aux_sym_raise_event_statement_token1] = ACTIONS(8672), + [sym_stop_statement] = ACTIONS(8672), + [sym_beep_statement] = ACTIONS(8672), + [aux_sym_unload_statement_token1] = ACTIONS(8672), + [aux_sym_def_type_statement_token1] = ACTIONS(8672), + [aux_sym_def_type_statement_token2] = ACTIONS(8672), + [aux_sym_def_type_statement_token3] = ACTIONS(8672), + [aux_sym_def_type_statement_token4] = ACTIONS(8672), + [aux_sym_def_type_statement_token5] = ACTIONS(8672), + [aux_sym_def_type_statement_token6] = ACTIONS(8672), + [aux_sym_def_type_statement_token7] = ACTIONS(8672), + [aux_sym_def_type_statement_token8] = ACTIONS(8672), + [aux_sym_def_type_statement_token9] = ACTIONS(8672), + [aux_sym_def_type_statement_token10] = ACTIONS(8672), + [aux_sym_def_type_statement_token11] = ACTIONS(8672), + [aux_sym_def_type_statement_token12] = ACTIONS(8672), + [aux_sym_def_type_statement_token13] = ACTIONS(8672), + [aux_sym_def_type_statement_token14] = ACTIONS(8672), + [aux_sym_call_statement_token1] = ACTIONS(8672), + [sym__ambiguous_call_statement] = ACTIONS(8672), + [aux_sym_addressof_expression_token1] = ACTIONS(8672), + [aux_sym_type_of_expression_token1] = ACTIONS(8672), + [aux_sym_unary_expression_token1] = ACTIONS(8672), + [sym_string_literal] = ACTIONS(8674), + [sym_number_literal] = ACTIONS(8674), + [aux_sym_boolean_literal_token1] = ACTIONS(8672), + [aux_sym_boolean_literal_token2] = ACTIONS(8672), + [sym_nothing_literal] = ACTIONS(8672), + [sym_null_literal] = ACTIONS(8672), + [sym_empty_literal] = ACTIONS(8672), + [sym_date_literal] = ACTIONS(8674), + [anon_sym_POUND] = ACTIONS(8672), + }, + [STATE(5820)] = { + [sym_do_condition] = STATE(7242), + [sym_identifier] = ACTIONS(8431), + [sym_newline] = ACTIONS(8433), + [anon_sym_COLON] = ACTIONS(8433), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8431), + [aux_sym_frm_property_statement_token1] = ACTIONS(8431), + [anon_sym_DOT] = ACTIONS(8431), + [anon_sym_BANG] = ACTIONS(8433), + [aux_sym__attribute_identifier_token1] = ACTIONS(8431), + [aux_sym_option_statement_token3] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8431), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8431), + [aux_sym_preprocessor_const_token1] = ACTIONS(8431), + [sym_static_modifier] = ACTIONS(8431), + [sym__dim_keyword] = ACTIONS(8431), + [sym__redim_keyword] = ACTIONS(8431), + [aux_sym_get_accessor_token1] = ACTIONS(8431), + [aux_sym_set_accessor_token1] = ACTIONS(8431), + [aux_sym_const_declaration_token1] = ACTIONS(8431), + [anon_sym_LPAREN] = ACTIONS(8433), + [aux_sym_as_type_clause_token2] = ACTIONS(8431), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8431), + [aux_sym_visibility_token1] = ACTIONS(8431), + [aux_sym_visibility_token2] = ACTIONS(8431), + [aux_sym_elseif_fragment_token1] = ACTIONS(8431), + [aux_sym_else_fragment_token1] = ACTIONS(8431), + [aux_sym_select_statement_token1] = ACTIONS(8431), + [aux_sym__for_header_token1] = ACTIONS(8431), + [aux_sym_do_statement_token1] = ACTIONS(8431), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8431), + [aux_sym_exit_statement_token1] = ACTIONS(8431), + [sym_end_statement] = ACTIONS(8433), + [aux_sym_on_goto_statement_token1] = ACTIONS(8431), + [aux_sym_on_goto_statement_token2] = ACTIONS(8431), + [aux_sym_on_error_statement_token2] = ACTIONS(8431), + [sym__ambiguous_redim_statement] = ACTIONS(8433), + [aux_sym_erase_statement_token1] = ACTIONS(8431), + [aux_sym_open_statement_token1] = ACTIONS(8431), + [aux_sym_file_mode_token2] = ACTIONS(8431), + [aux_sym_file_access_token2] = ACTIONS(8431), + [aux_sym_file_lock_token2] = ACTIONS(8431), + [aux_sym_print_statement_token1] = ACTIONS(8431), + [anon_sym_PLUS] = ACTIONS(8433), + [anon_sym_DASH] = ACTIONS(8431), + [anon_sym_QMARK] = ACTIONS(8433), + [aux_sym_close_statement_token1] = ACTIONS(8431), + [aux_sym_put_statement_token1] = ACTIONS(8431), + [aux_sym_unlock_statement_token1] = ACTIONS(8431), + [aux_sym_seek_statement_token1] = ACTIONS(8431), + [sym_reset_statement] = ACTIONS(8431), + [aux_sym_raise_event_statement_token1] = ACTIONS(8431), + [sym_stop_statement] = ACTIONS(8431), + [sym_beep_statement] = ACTIONS(8431), + [aux_sym_unload_statement_token1] = ACTIONS(8431), + [aux_sym_def_type_statement_token1] = ACTIONS(8431), + [aux_sym_def_type_statement_token2] = ACTIONS(8431), + [aux_sym_def_type_statement_token3] = ACTIONS(8431), + [aux_sym_def_type_statement_token4] = ACTIONS(8431), + [aux_sym_def_type_statement_token5] = ACTIONS(8431), + [aux_sym_def_type_statement_token6] = ACTIONS(8431), + [aux_sym_def_type_statement_token7] = ACTIONS(8431), + [aux_sym_def_type_statement_token8] = ACTIONS(8431), + [aux_sym_def_type_statement_token9] = ACTIONS(8431), + [aux_sym_def_type_statement_token10] = ACTIONS(8431), + [aux_sym_def_type_statement_token11] = ACTIONS(8431), + [aux_sym_def_type_statement_token12] = ACTIONS(8431), + [aux_sym_def_type_statement_token13] = ACTIONS(8431), + [aux_sym_def_type_statement_token14] = ACTIONS(8431), + [aux_sym_call_statement_token1] = ACTIONS(8431), + [sym__ambiguous_call_statement] = ACTIONS(8431), + [aux_sym_addressof_expression_token1] = ACTIONS(8431), + [aux_sym_type_of_expression_token1] = ACTIONS(8431), + [aux_sym_unary_expression_token1] = ACTIONS(8431), + [sym_string_literal] = ACTIONS(8433), + [sym_number_literal] = ACTIONS(8433), + [aux_sym_boolean_literal_token1] = ACTIONS(8431), + [aux_sym_boolean_literal_token2] = ACTIONS(8431), + [sym_nothing_literal] = ACTIONS(8431), + [sym_null_literal] = ACTIONS(8431), + [sym_empty_literal] = ACTIONS(8431), + [sym_date_literal] = ACTIONS(8433), + [anon_sym_POUND] = ACTIONS(8431), + }, + [STATE(5821)] = { + [sym_identifier] = ACTIONS(8853), + [sym_newline] = ACTIONS(8855), + [anon_sym_COLON] = ACTIONS(8855), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8853), + [aux_sym_frm_property_statement_token1] = ACTIONS(8853), + [anon_sym_DOT] = ACTIONS(8853), + [anon_sym_BANG] = ACTIONS(8855), + [aux_sym__attribute_identifier_token1] = ACTIONS(8853), + [aux_sym_option_statement_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8853), + [aux_sym_preprocessor_const_token1] = ACTIONS(8853), + [sym_static_modifier] = ACTIONS(8853), + [sym__dim_keyword] = ACTIONS(8853), + [sym__redim_keyword] = ACTIONS(8853), + [aux_sym_get_accessor_token1] = ACTIONS(8853), + [aux_sym_set_accessor_token1] = ACTIONS(8853), + [aux_sym_const_declaration_token1] = ACTIONS(8853), + [anon_sym_LPAREN] = ACTIONS(8855), + [aux_sym_as_type_clause_token2] = ACTIONS(8853), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8853), + [aux_sym_visibility_token1] = ACTIONS(8853), + [aux_sym_visibility_token2] = ACTIONS(8853), + [aux_sym_elseif_fragment_token1] = ACTIONS(8853), + [aux_sym_else_fragment_token1] = ACTIONS(8853), + [aux_sym_select_statement_token1] = ACTIONS(8853), + [aux_sym_select_statement_token2] = ACTIONS(8853), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8853), + [aux_sym__for_header_token1] = ACTIONS(8853), + [aux_sym_do_statement_token1] = ACTIONS(8853), + [aux_sym_do_condition_token1] = ACTIONS(8853), + [aux_sym_with_statement_token1] = ACTIONS(8853), + [aux_sym_exit_statement_token1] = ACTIONS(8853), + [sym_end_statement] = ACTIONS(8855), + [aux_sym_on_goto_statement_token1] = ACTIONS(8853), + [aux_sym_on_goto_statement_token2] = ACTIONS(8853), + [aux_sym_on_error_statement_token2] = ACTIONS(8853), + [sym__ambiguous_redim_statement] = ACTIONS(8855), + [aux_sym_erase_statement_token1] = ACTIONS(8853), + [aux_sym_open_statement_token1] = ACTIONS(8853), + [aux_sym_file_mode_token2] = ACTIONS(8853), + [aux_sym_file_access_token2] = ACTIONS(8853), + [aux_sym_file_lock_token2] = ACTIONS(8853), + [aux_sym_print_statement_token1] = ACTIONS(8853), + [anon_sym_PLUS] = ACTIONS(8855), + [anon_sym_DASH] = ACTIONS(8853), + [anon_sym_QMARK] = ACTIONS(8855), + [aux_sym_close_statement_token1] = ACTIONS(8853), + [aux_sym_put_statement_token1] = ACTIONS(8853), + [aux_sym_unlock_statement_token1] = ACTIONS(8853), + [aux_sym_seek_statement_token1] = ACTIONS(8853), + [sym_reset_statement] = ACTIONS(8853), + [aux_sym_raise_event_statement_token1] = ACTIONS(8853), + [sym_stop_statement] = ACTIONS(8853), + [sym_beep_statement] = ACTIONS(8853), + [aux_sym_unload_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token2] = ACTIONS(8853), + [aux_sym_def_type_statement_token3] = ACTIONS(8853), + [aux_sym_def_type_statement_token4] = ACTIONS(8853), + [aux_sym_def_type_statement_token5] = ACTIONS(8853), + [aux_sym_def_type_statement_token6] = ACTIONS(8853), + [aux_sym_def_type_statement_token7] = ACTIONS(8853), + [aux_sym_def_type_statement_token8] = ACTIONS(8853), + [aux_sym_def_type_statement_token9] = ACTIONS(8853), + [aux_sym_def_type_statement_token10] = ACTIONS(8853), + [aux_sym_def_type_statement_token11] = ACTIONS(8853), + [aux_sym_def_type_statement_token12] = ACTIONS(8853), + [aux_sym_def_type_statement_token13] = ACTIONS(8853), + [aux_sym_def_type_statement_token14] = ACTIONS(8853), + [aux_sym_call_statement_token1] = ACTIONS(8853), + [sym__ambiguous_call_statement] = ACTIONS(8853), + [aux_sym_addressof_expression_token1] = ACTIONS(8853), + [aux_sym_type_of_expression_token1] = ACTIONS(8853), + [aux_sym_unary_expression_token1] = ACTIONS(8853), + [sym_string_literal] = ACTIONS(8855), + [sym_number_literal] = ACTIONS(8855), + [aux_sym_boolean_literal_token1] = ACTIONS(8853), + [aux_sym_boolean_literal_token2] = ACTIONS(8853), + [sym_nothing_literal] = ACTIONS(8853), + [sym_null_literal] = ACTIONS(8853), + [sym_empty_literal] = ACTIONS(8853), + [sym_date_literal] = ACTIONS(8855), + [anon_sym_POUND] = ACTIONS(8853), + }, + [STATE(5822)] = { + [sym_identifier] = ACTIONS(8857), + [sym_newline] = ACTIONS(8859), + [anon_sym_COLON] = ACTIONS(8859), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8857), + [aux_sym_frm_property_statement_token1] = ACTIONS(8857), + [anon_sym_DOT] = ACTIONS(8857), + [anon_sym_BANG] = ACTIONS(8859), + [aux_sym__attribute_identifier_token1] = ACTIONS(8857), + [aux_sym_option_statement_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8857), + [aux_sym_preprocessor_const_token1] = ACTIONS(8857), + [sym_static_modifier] = ACTIONS(8857), + [sym__dim_keyword] = ACTIONS(8857), + [sym__redim_keyword] = ACTIONS(8857), + [aux_sym_get_accessor_token1] = ACTIONS(8857), + [aux_sym_set_accessor_token1] = ACTIONS(8857), + [aux_sym_const_declaration_token1] = ACTIONS(8857), + [anon_sym_LPAREN] = ACTIONS(8859), + [aux_sym_as_type_clause_token2] = ACTIONS(8857), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8857), + [aux_sym_visibility_token1] = ACTIONS(8857), + [aux_sym_visibility_token2] = ACTIONS(8857), + [aux_sym_elseif_fragment_token1] = ACTIONS(8857), + [aux_sym_else_fragment_token1] = ACTIONS(8857), + [aux_sym_select_statement_token1] = ACTIONS(8857), + [aux_sym_select_statement_token2] = ACTIONS(8857), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8857), + [aux_sym__for_header_token1] = ACTIONS(8857), + [aux_sym_do_statement_token1] = ACTIONS(8857), + [aux_sym_do_condition_token1] = ACTIONS(8857), + [aux_sym_with_statement_token1] = ACTIONS(8857), + [aux_sym_exit_statement_token1] = ACTIONS(8857), + [sym_end_statement] = ACTIONS(8859), + [aux_sym_on_goto_statement_token1] = ACTIONS(8857), + [aux_sym_on_goto_statement_token2] = ACTIONS(8857), + [aux_sym_on_error_statement_token2] = ACTIONS(8857), + [sym__ambiguous_redim_statement] = ACTIONS(8859), + [aux_sym_erase_statement_token1] = ACTIONS(8857), + [aux_sym_open_statement_token1] = ACTIONS(8857), + [aux_sym_file_mode_token2] = ACTIONS(8857), + [aux_sym_file_access_token2] = ACTIONS(8857), + [aux_sym_file_lock_token2] = ACTIONS(8857), + [aux_sym_print_statement_token1] = ACTIONS(8857), + [anon_sym_PLUS] = ACTIONS(8859), + [anon_sym_DASH] = ACTIONS(8857), + [anon_sym_QMARK] = ACTIONS(8859), + [aux_sym_close_statement_token1] = ACTIONS(8857), + [aux_sym_put_statement_token1] = ACTIONS(8857), + [aux_sym_unlock_statement_token1] = ACTIONS(8857), + [aux_sym_seek_statement_token1] = ACTIONS(8857), + [sym_reset_statement] = ACTIONS(8857), + [aux_sym_raise_event_statement_token1] = ACTIONS(8857), + [sym_stop_statement] = ACTIONS(8857), + [sym_beep_statement] = ACTIONS(8857), + [aux_sym_unload_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token2] = ACTIONS(8857), + [aux_sym_def_type_statement_token3] = ACTIONS(8857), + [aux_sym_def_type_statement_token4] = ACTIONS(8857), + [aux_sym_def_type_statement_token5] = ACTIONS(8857), + [aux_sym_def_type_statement_token6] = ACTIONS(8857), + [aux_sym_def_type_statement_token7] = ACTIONS(8857), + [aux_sym_def_type_statement_token8] = ACTIONS(8857), + [aux_sym_def_type_statement_token9] = ACTIONS(8857), + [aux_sym_def_type_statement_token10] = ACTIONS(8857), + [aux_sym_def_type_statement_token11] = ACTIONS(8857), + [aux_sym_def_type_statement_token12] = ACTIONS(8857), + [aux_sym_def_type_statement_token13] = ACTIONS(8857), + [aux_sym_def_type_statement_token14] = ACTIONS(8857), + [aux_sym_call_statement_token1] = ACTIONS(8857), + [sym__ambiguous_call_statement] = ACTIONS(8857), + [aux_sym_addressof_expression_token1] = ACTIONS(8857), + [aux_sym_type_of_expression_token1] = ACTIONS(8857), + [aux_sym_unary_expression_token1] = ACTIONS(8857), + [sym_string_literal] = ACTIONS(8859), + [sym_number_literal] = ACTIONS(8859), + [aux_sym_boolean_literal_token1] = ACTIONS(8857), + [aux_sym_boolean_literal_token2] = ACTIONS(8857), + [sym_nothing_literal] = ACTIONS(8857), + [sym_null_literal] = ACTIONS(8857), + [sym_empty_literal] = ACTIONS(8857), + [sym_date_literal] = ACTIONS(8859), + [anon_sym_POUND] = ACTIONS(8857), + }, + [STATE(5823)] = { + [sym_identifier] = ACTIONS(8350), + [sym_newline] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8350), + [aux_sym_frm_property_statement_token1] = ACTIONS(8350), + [anon_sym_DOT] = ACTIONS(8350), + [anon_sym_BANG] = ACTIONS(8352), + [aux_sym__attribute_identifier_token1] = ACTIONS(8350), + [aux_sym_option_statement_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8350), + [aux_sym_preprocessor_const_token1] = ACTIONS(8350), + [sym_static_modifier] = ACTIONS(8350), + [sym__dim_keyword] = ACTIONS(8350), + [sym__redim_keyword] = ACTIONS(8350), + [aux_sym_get_accessor_token1] = ACTIONS(8350), + [aux_sym_set_accessor_token1] = ACTIONS(8350), + [anon_sym_COMMA] = ACTIONS(8352), + [aux_sym_const_declaration_token1] = ACTIONS(8350), + [anon_sym_LPAREN] = ACTIONS(8352), + [aux_sym_as_type_clause_token2] = ACTIONS(8350), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8350), + [aux_sym_visibility_token1] = ACTIONS(8350), + [aux_sym_visibility_token2] = ACTIONS(8350), + [aux_sym_elseif_fragment_token1] = ACTIONS(8350), + [aux_sym_else_fragment_token1] = ACTIONS(8350), + [aux_sym_select_statement_token1] = ACTIONS(8350), + [aux_sym_select_statement_token2] = ACTIONS(8350), + [aux_sym__for_header_token1] = ACTIONS(8350), + [aux_sym_do_statement_token1] = ACTIONS(8350), + [aux_sym_do_condition_token1] = ACTIONS(8350), + [aux_sym_with_statement_token1] = ACTIONS(8350), + [aux_sym_exit_statement_token1] = ACTIONS(8350), + [sym_end_statement] = ACTIONS(8352), + [aux_sym_on_goto_statement_token1] = ACTIONS(8350), + [aux_sym_on_goto_statement_token2] = ACTIONS(8350), + [aux_sym_on_error_statement_token2] = ACTIONS(8350), + [sym__ambiguous_redim_statement] = ACTIONS(8352), + [aux_sym_erase_statement_token1] = ACTIONS(8350), + [aux_sym_open_statement_token1] = ACTIONS(8350), + [aux_sym_file_mode_token2] = ACTIONS(8350), + [aux_sym_file_access_token2] = ACTIONS(8350), + [aux_sym_file_lock_token2] = ACTIONS(8350), + [aux_sym_print_statement_token1] = ACTIONS(8350), + [anon_sym_PLUS] = ACTIONS(8352), + [anon_sym_DASH] = ACTIONS(8350), + [anon_sym_QMARK] = ACTIONS(8352), + [aux_sym_close_statement_token1] = ACTIONS(8350), + [aux_sym_put_statement_token1] = ACTIONS(8350), + [aux_sym_unlock_statement_token1] = ACTIONS(8350), + [aux_sym_seek_statement_token1] = ACTIONS(8350), + [sym_reset_statement] = ACTIONS(8350), + [aux_sym_raise_event_statement_token1] = ACTIONS(8350), + [sym_stop_statement] = ACTIONS(8350), + [sym_beep_statement] = ACTIONS(8350), + [aux_sym_unload_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token2] = ACTIONS(8350), + [aux_sym_def_type_statement_token3] = ACTIONS(8350), + [aux_sym_def_type_statement_token4] = ACTIONS(8350), + [aux_sym_def_type_statement_token5] = ACTIONS(8350), + [aux_sym_def_type_statement_token6] = ACTIONS(8350), + [aux_sym_def_type_statement_token7] = ACTIONS(8350), + [aux_sym_def_type_statement_token8] = ACTIONS(8350), + [aux_sym_def_type_statement_token9] = ACTIONS(8350), + [aux_sym_def_type_statement_token10] = ACTIONS(8350), + [aux_sym_def_type_statement_token11] = ACTIONS(8350), + [aux_sym_def_type_statement_token12] = ACTIONS(8350), + [aux_sym_def_type_statement_token13] = ACTIONS(8350), + [aux_sym_def_type_statement_token14] = ACTIONS(8350), + [aux_sym_call_statement_token1] = ACTIONS(8350), + [sym__ambiguous_call_statement] = ACTIONS(8350), + [aux_sym_addressof_expression_token1] = ACTIONS(8350), + [aux_sym_type_of_expression_token1] = ACTIONS(8350), + [aux_sym_unary_expression_token1] = ACTIONS(8350), + [sym_string_literal] = ACTIONS(8352), + [sym_number_literal] = ACTIONS(8352), + [aux_sym_boolean_literal_token1] = ACTIONS(8350), + [aux_sym_boolean_literal_token2] = ACTIONS(8350), + [sym_nothing_literal] = ACTIONS(8350), + [sym_null_literal] = ACTIONS(8350), + [sym_empty_literal] = ACTIONS(8350), + [sym_date_literal] = ACTIONS(8352), + [anon_sym_POUND] = ACTIONS(8350), + }, + [STATE(5824)] = { + [aux_sym__argument_sequence_repeat2] = STATE(6218), + [sym_identifier] = ACTIONS(8435), + [sym_newline] = ACTIONS(8437), + [anon_sym_COLON] = ACTIONS(8437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8435), + [aux_sym_frm_property_statement_token1] = ACTIONS(8435), + [anon_sym_DOT] = ACTIONS(8435), + [anon_sym_BANG] = ACTIONS(8437), + [aux_sym__attribute_identifier_token1] = ACTIONS(8435), + [aux_sym_option_statement_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8435), + [aux_sym_preprocessor_const_token1] = ACTIONS(8435), + [sym_static_modifier] = ACTIONS(8435), + [sym__dim_keyword] = ACTIONS(8435), + [sym__redim_keyword] = ACTIONS(8435), + [aux_sym_get_accessor_token1] = ACTIONS(8435), + [aux_sym_set_accessor_token1] = ACTIONS(8435), + [anon_sym_COMMA] = ACTIONS(5314), + [aux_sym_const_declaration_token1] = ACTIONS(8435), + [anon_sym_LPAREN] = ACTIONS(8437), + [aux_sym_as_type_clause_token2] = ACTIONS(8435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8435), + [aux_sym_visibility_token1] = ACTIONS(8435), + [aux_sym_visibility_token2] = ACTIONS(8435), + [aux_sym_elseif_fragment_token1] = ACTIONS(8435), + [aux_sym_else_fragment_token1] = ACTIONS(8435), + [aux_sym_select_statement_token1] = ACTIONS(8435), + [aux_sym__for_header_token1] = ACTIONS(8435), + [aux_sym_do_statement_token1] = ACTIONS(8435), + [aux_sym_do_condition_token1] = ACTIONS(8435), + [aux_sym_with_statement_token1] = ACTIONS(8435), + [aux_sym_exit_statement_token1] = ACTIONS(8435), + [sym_end_statement] = ACTIONS(8437), + [aux_sym_on_goto_statement_token1] = ACTIONS(8435), + [aux_sym_on_goto_statement_token2] = ACTIONS(8435), + [aux_sym_on_error_statement_token2] = ACTIONS(8435), + [sym__ambiguous_redim_statement] = ACTIONS(8437), + [aux_sym_erase_statement_token1] = ACTIONS(8435), + [aux_sym_open_statement_token1] = ACTIONS(8435), + [aux_sym_file_mode_token2] = ACTIONS(8435), + [aux_sym_file_access_token2] = ACTIONS(8435), + [aux_sym_file_lock_token2] = ACTIONS(8435), + [aux_sym_print_statement_token1] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(8437), + [anon_sym_DASH] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8437), + [aux_sym_close_statement_token1] = ACTIONS(8435), + [aux_sym_put_statement_token1] = ACTIONS(8435), + [aux_sym_unlock_statement_token1] = ACTIONS(8435), + [aux_sym_seek_statement_token1] = ACTIONS(8435), + [sym_reset_statement] = ACTIONS(8435), + [aux_sym_raise_event_statement_token1] = ACTIONS(8435), + [sym_stop_statement] = ACTIONS(8435), + [sym_beep_statement] = ACTIONS(8435), + [aux_sym_unload_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token2] = ACTIONS(8435), + [aux_sym_def_type_statement_token3] = ACTIONS(8435), + [aux_sym_def_type_statement_token4] = ACTIONS(8435), + [aux_sym_def_type_statement_token5] = ACTIONS(8435), + [aux_sym_def_type_statement_token6] = ACTIONS(8435), + [aux_sym_def_type_statement_token7] = ACTIONS(8435), + [aux_sym_def_type_statement_token8] = ACTIONS(8435), + [aux_sym_def_type_statement_token9] = ACTIONS(8435), + [aux_sym_def_type_statement_token10] = ACTIONS(8435), + [aux_sym_def_type_statement_token11] = ACTIONS(8435), + [aux_sym_def_type_statement_token12] = ACTIONS(8435), + [aux_sym_def_type_statement_token13] = ACTIONS(8435), + [aux_sym_def_type_statement_token14] = ACTIONS(8435), + [aux_sym_call_statement_token1] = ACTIONS(8435), + [sym__ambiguous_call_statement] = ACTIONS(8435), + [aux_sym_addressof_expression_token1] = ACTIONS(8435), + [aux_sym_type_of_expression_token1] = ACTIONS(8435), + [aux_sym_unary_expression_token1] = ACTIONS(8435), + [sym_string_literal] = ACTIONS(8437), + [sym_number_literal] = ACTIONS(8437), + [aux_sym_boolean_literal_token1] = ACTIONS(8435), + [aux_sym_boolean_literal_token2] = ACTIONS(8435), + [sym_nothing_literal] = ACTIONS(8435), + [sym_null_literal] = ACTIONS(8435), + [sym_empty_literal] = ACTIONS(8435), + [sym_date_literal] = ACTIONS(8437), + [anon_sym_POUND] = ACTIONS(8435), + }, + [STATE(5825)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5988), + [sym_identifier] = ACTIONS(8435), + [sym_newline] = ACTIONS(8437), + [anon_sym_COLON] = ACTIONS(8437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8435), + [aux_sym_frm_property_statement_token1] = ACTIONS(8435), + [anon_sym_DOT] = ACTIONS(8435), + [anon_sym_BANG] = ACTIONS(8437), + [aux_sym__attribute_identifier_token1] = ACTIONS(8435), + [aux_sym_option_statement_token3] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8435), + [aux_sym_preprocessor_const_token1] = ACTIONS(8435), + [sym_static_modifier] = ACTIONS(8435), + [sym__dim_keyword] = ACTIONS(8435), + [sym__redim_keyword] = ACTIONS(8435), + [aux_sym_get_accessor_token1] = ACTIONS(8435), + [aux_sym_set_accessor_token1] = ACTIONS(8435), + [anon_sym_COMMA] = ACTIONS(5314), + [aux_sym_const_declaration_token1] = ACTIONS(8435), + [anon_sym_LPAREN] = ACTIONS(8437), + [aux_sym_as_type_clause_token2] = ACTIONS(8435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8435), + [aux_sym_visibility_token1] = ACTIONS(8435), + [aux_sym_visibility_token2] = ACTIONS(8435), + [aux_sym_elseif_fragment_token1] = ACTIONS(8435), + [aux_sym_else_fragment_token1] = ACTIONS(8435), + [aux_sym_select_statement_token1] = ACTIONS(8435), + [aux_sym__for_header_token1] = ACTIONS(8435), + [aux_sym_do_statement_token1] = ACTIONS(8435), + [aux_sym_do_condition_token1] = ACTIONS(8435), + [aux_sym_with_statement_token1] = ACTIONS(8435), + [aux_sym_exit_statement_token1] = ACTIONS(8435), + [sym_end_statement] = ACTIONS(8437), + [aux_sym_on_goto_statement_token1] = ACTIONS(8435), + [aux_sym_on_goto_statement_token2] = ACTIONS(8435), + [aux_sym_on_error_statement_token2] = ACTIONS(8435), + [sym__ambiguous_redim_statement] = ACTIONS(8437), + [aux_sym_erase_statement_token1] = ACTIONS(8435), + [aux_sym_open_statement_token1] = ACTIONS(8435), + [aux_sym_file_mode_token2] = ACTIONS(8435), + [aux_sym_file_access_token2] = ACTIONS(8435), + [aux_sym_file_lock_token2] = ACTIONS(8435), + [aux_sym_print_statement_token1] = ACTIONS(8435), + [anon_sym_PLUS] = ACTIONS(8437), + [anon_sym_DASH] = ACTIONS(8435), + [anon_sym_QMARK] = ACTIONS(8437), + [aux_sym_close_statement_token1] = ACTIONS(8435), + [aux_sym_put_statement_token1] = ACTIONS(8435), + [aux_sym_unlock_statement_token1] = ACTIONS(8435), + [aux_sym_seek_statement_token1] = ACTIONS(8435), + [sym_reset_statement] = ACTIONS(8435), + [aux_sym_raise_event_statement_token1] = ACTIONS(8435), + [sym_stop_statement] = ACTIONS(8435), + [sym_beep_statement] = ACTIONS(8435), + [aux_sym_unload_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token1] = ACTIONS(8435), + [aux_sym_def_type_statement_token2] = ACTIONS(8435), + [aux_sym_def_type_statement_token3] = ACTIONS(8435), + [aux_sym_def_type_statement_token4] = ACTIONS(8435), + [aux_sym_def_type_statement_token5] = ACTIONS(8435), + [aux_sym_def_type_statement_token6] = ACTIONS(8435), + [aux_sym_def_type_statement_token7] = ACTIONS(8435), + [aux_sym_def_type_statement_token8] = ACTIONS(8435), + [aux_sym_def_type_statement_token9] = ACTIONS(8435), + [aux_sym_def_type_statement_token10] = ACTIONS(8435), + [aux_sym_def_type_statement_token11] = ACTIONS(8435), + [aux_sym_def_type_statement_token12] = ACTIONS(8435), + [aux_sym_def_type_statement_token13] = ACTIONS(8435), + [aux_sym_def_type_statement_token14] = ACTIONS(8435), + [aux_sym_call_statement_token1] = ACTIONS(8435), + [sym__ambiguous_call_statement] = ACTIONS(8435), + [aux_sym_addressof_expression_token1] = ACTIONS(8435), + [aux_sym_type_of_expression_token1] = ACTIONS(8435), + [aux_sym_unary_expression_token1] = ACTIONS(8435), + [sym_string_literal] = ACTIONS(8437), + [sym_number_literal] = ACTIONS(8437), + [aux_sym_boolean_literal_token1] = ACTIONS(8435), + [aux_sym_boolean_literal_token2] = ACTIONS(8435), + [sym_nothing_literal] = ACTIONS(8435), + [sym_null_literal] = ACTIONS(8435), + [sym_empty_literal] = ACTIONS(8435), + [sym_date_literal] = ACTIONS(8437), + [anon_sym_POUND] = ACTIONS(8435), + }, + [STATE(5826)] = { + [sym_identifier] = ACTIONS(8456), + [sym_newline] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8458), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8456), + [aux_sym_frm_property_statement_token1] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_BANG] = ACTIONS(8458), + [aux_sym__attribute_identifier_token1] = ACTIONS(8456), + [aux_sym_option_statement_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8456), + [aux_sym_preprocessor_const_token1] = ACTIONS(8456), + [sym_static_modifier] = ACTIONS(8456), + [sym__dim_keyword] = ACTIONS(8456), + [sym__redim_keyword] = ACTIONS(8456), + [aux_sym_get_accessor_token1] = ACTIONS(8456), + [aux_sym_set_accessor_token1] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(8458), + [aux_sym_const_declaration_token1] = ACTIONS(8456), + [anon_sym_LPAREN] = ACTIONS(8458), + [aux_sym_as_type_clause_token2] = ACTIONS(8456), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8456), + [aux_sym_visibility_token1] = ACTIONS(8456), + [aux_sym_visibility_token2] = ACTIONS(8456), + [aux_sym_elseif_fragment_token1] = ACTIONS(8456), + [aux_sym_else_fragment_token1] = ACTIONS(8456), + [aux_sym_select_statement_token1] = ACTIONS(8456), + [aux_sym__for_header_token1] = ACTIONS(8456), + [aux_sym_do_statement_token1] = ACTIONS(8456), + [aux_sym_do_condition_token1] = ACTIONS(8456), + [aux_sym_with_statement_token1] = ACTIONS(8456), + [aux_sym_exit_statement_token1] = ACTIONS(8456), + [sym_end_statement] = ACTIONS(8458), + [aux_sym_on_goto_statement_token1] = ACTIONS(8456), + [aux_sym_on_goto_statement_token2] = ACTIONS(8456), + [aux_sym_on_error_statement_token2] = ACTIONS(8456), + [sym__ambiguous_redim_statement] = ACTIONS(8458), + [aux_sym_erase_statement_token1] = ACTIONS(8456), + [aux_sym_open_statement_token1] = ACTIONS(8456), + [aux_sym_file_mode_token2] = ACTIONS(8456), + [aux_sym_file_access_token2] = ACTIONS(8456), + [aux_sym_file_lock_token2] = ACTIONS(8456), + [aux_sym_print_statement_token1] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8458), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8458), + [aux_sym_close_statement_token1] = ACTIONS(8456), + [aux_sym_put_statement_token1] = ACTIONS(8456), + [aux_sym_unlock_statement_token1] = ACTIONS(8456), + [aux_sym_seek_statement_token1] = ACTIONS(8456), + [sym_reset_statement] = ACTIONS(8456), + [aux_sym_raise_event_statement_token1] = ACTIONS(8456), + [sym_stop_statement] = ACTIONS(8456), + [sym_beep_statement] = ACTIONS(8456), + [aux_sym_unload_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token2] = ACTIONS(8456), + [aux_sym_def_type_statement_token3] = ACTIONS(8456), + [aux_sym_def_type_statement_token4] = ACTIONS(8456), + [aux_sym_def_type_statement_token5] = ACTIONS(8456), + [aux_sym_def_type_statement_token6] = ACTIONS(8456), + [aux_sym_def_type_statement_token7] = ACTIONS(8456), + [aux_sym_def_type_statement_token8] = ACTIONS(8456), + [aux_sym_def_type_statement_token9] = ACTIONS(8456), + [aux_sym_def_type_statement_token10] = ACTIONS(8456), + [aux_sym_def_type_statement_token11] = ACTIONS(8456), + [aux_sym_def_type_statement_token12] = ACTIONS(8456), + [aux_sym_def_type_statement_token13] = ACTIONS(8456), + [aux_sym_def_type_statement_token14] = ACTIONS(8456), + [aux_sym_call_statement_token1] = ACTIONS(8456), + [sym__ambiguous_call_statement] = ACTIONS(8456), + [aux_sym_addressof_expression_token1] = ACTIONS(8456), + [aux_sym_type_of_expression_token1] = ACTIONS(8456), + [aux_sym_unary_expression_token1] = ACTIONS(8456), + [sym_string_literal] = ACTIONS(8458), + [sym_number_literal] = ACTIONS(8458), + [aux_sym_boolean_literal_token1] = ACTIONS(8456), + [aux_sym_boolean_literal_token2] = ACTIONS(8456), + [sym_nothing_literal] = ACTIONS(8456), + [sym_null_literal] = ACTIONS(8456), + [sym_empty_literal] = ACTIONS(8456), + [sym_date_literal] = ACTIONS(8458), + [anon_sym_POUND] = ACTIONS(8456), + }, + [STATE(5827)] = { + [sym_identifier] = ACTIONS(8861), + [sym_newline] = ACTIONS(8863), + [anon_sym_COLON] = ACTIONS(8863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8861), + [aux_sym_frm_property_statement_token1] = ACTIONS(8861), + [anon_sym_DOT] = ACTIONS(8861), + [anon_sym_BANG] = ACTIONS(8863), + [aux_sym__attribute_identifier_token1] = ACTIONS(8861), + [aux_sym_option_statement_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8861), + [aux_sym_preprocessor_const_token1] = ACTIONS(8861), + [sym_static_modifier] = ACTIONS(8861), + [sym__dim_keyword] = ACTIONS(8861), + [sym__redim_keyword] = ACTIONS(8861), + [aux_sym_get_accessor_token1] = ACTIONS(8861), + [aux_sym_set_accessor_token1] = ACTIONS(8861), + [aux_sym_const_declaration_token1] = ACTIONS(8861), + [anon_sym_LPAREN] = ACTIONS(8863), + [aux_sym_as_type_clause_token2] = ACTIONS(8861), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8861), + [aux_sym_visibility_token1] = ACTIONS(8861), + [aux_sym_visibility_token2] = ACTIONS(8861), + [aux_sym_elseif_fragment_token1] = ACTIONS(8861), + [aux_sym_else_fragment_token1] = ACTIONS(8861), + [aux_sym_select_statement_token1] = ACTIONS(8861), + [aux_sym_select_statement_token2] = ACTIONS(8861), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8861), + [aux_sym__for_header_token1] = ACTIONS(8861), + [aux_sym_do_statement_token1] = ACTIONS(8861), + [aux_sym_do_condition_token1] = ACTIONS(8861), + [aux_sym_with_statement_token1] = ACTIONS(8861), + [aux_sym_exit_statement_token1] = ACTIONS(8861), + [sym_end_statement] = ACTIONS(8863), + [aux_sym_on_goto_statement_token1] = ACTIONS(8861), + [aux_sym_on_goto_statement_token2] = ACTIONS(8861), + [aux_sym_on_error_statement_token2] = ACTIONS(8861), + [sym__ambiguous_redim_statement] = ACTIONS(8863), + [aux_sym_erase_statement_token1] = ACTIONS(8861), + [aux_sym_open_statement_token1] = ACTIONS(8861), + [aux_sym_file_mode_token2] = ACTIONS(8861), + [aux_sym_file_access_token2] = ACTIONS(8861), + [aux_sym_file_lock_token2] = ACTIONS(8861), + [aux_sym_print_statement_token1] = ACTIONS(8861), + [anon_sym_PLUS] = ACTIONS(8863), + [anon_sym_DASH] = ACTIONS(8861), + [anon_sym_QMARK] = ACTIONS(8863), + [aux_sym_close_statement_token1] = ACTIONS(8861), + [aux_sym_put_statement_token1] = ACTIONS(8861), + [aux_sym_unlock_statement_token1] = ACTIONS(8861), + [aux_sym_seek_statement_token1] = ACTIONS(8861), + [sym_reset_statement] = ACTIONS(8861), + [aux_sym_raise_event_statement_token1] = ACTIONS(8861), + [sym_stop_statement] = ACTIONS(8861), + [sym_beep_statement] = ACTIONS(8861), + [aux_sym_unload_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token2] = ACTIONS(8861), + [aux_sym_def_type_statement_token3] = ACTIONS(8861), + [aux_sym_def_type_statement_token4] = ACTIONS(8861), + [aux_sym_def_type_statement_token5] = ACTIONS(8861), + [aux_sym_def_type_statement_token6] = ACTIONS(8861), + [aux_sym_def_type_statement_token7] = ACTIONS(8861), + [aux_sym_def_type_statement_token8] = ACTIONS(8861), + [aux_sym_def_type_statement_token9] = ACTIONS(8861), + [aux_sym_def_type_statement_token10] = ACTIONS(8861), + [aux_sym_def_type_statement_token11] = ACTIONS(8861), + [aux_sym_def_type_statement_token12] = ACTIONS(8861), + [aux_sym_def_type_statement_token13] = ACTIONS(8861), + [aux_sym_def_type_statement_token14] = ACTIONS(8861), + [aux_sym_call_statement_token1] = ACTIONS(8861), + [sym__ambiguous_call_statement] = ACTIONS(8861), + [aux_sym_addressof_expression_token1] = ACTIONS(8861), + [aux_sym_type_of_expression_token1] = ACTIONS(8861), + [aux_sym_unary_expression_token1] = ACTIONS(8861), + [sym_string_literal] = ACTIONS(8863), + [sym_number_literal] = ACTIONS(8863), + [aux_sym_boolean_literal_token1] = ACTIONS(8861), + [aux_sym_boolean_literal_token2] = ACTIONS(8861), + [sym_nothing_literal] = ACTIONS(8861), + [sym_null_literal] = ACTIONS(8861), + [sym_empty_literal] = ACTIONS(8861), + [sym_date_literal] = ACTIONS(8863), + [anon_sym_POUND] = ACTIONS(8861), + }, + [STATE(5828)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(5829)] = { + [sym_do_condition] = STATE(7182), + [sym_identifier] = ACTIONS(8221), + [sym_newline] = ACTIONS(8223), + [anon_sym_COLON] = ACTIONS(8223), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8221), + [aux_sym_frm_property_statement_token1] = ACTIONS(8221), + [anon_sym_DOT] = ACTIONS(8221), + [anon_sym_BANG] = ACTIONS(8223), + [aux_sym__attribute_identifier_token1] = ACTIONS(8221), + [aux_sym_option_statement_token3] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8221), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8221), + [aux_sym_preprocessor_const_token1] = ACTIONS(8221), + [sym_static_modifier] = ACTIONS(8221), + [sym__dim_keyword] = ACTIONS(8221), + [sym__redim_keyword] = ACTIONS(8221), + [aux_sym_get_accessor_token1] = ACTIONS(8221), + [aux_sym_set_accessor_token1] = ACTIONS(8221), + [aux_sym_const_declaration_token1] = ACTIONS(8221), + [anon_sym_LPAREN] = ACTIONS(8223), + [aux_sym_as_type_clause_token2] = ACTIONS(8221), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8221), + [aux_sym_visibility_token1] = ACTIONS(8221), + [aux_sym_visibility_token2] = ACTIONS(8221), + [aux_sym_elseif_fragment_token1] = ACTIONS(8221), + [aux_sym_else_fragment_token1] = ACTIONS(8221), + [aux_sym_select_statement_token1] = ACTIONS(8221), + [aux_sym__for_header_token1] = ACTIONS(8221), + [aux_sym_do_statement_token1] = ACTIONS(8221), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8221), + [aux_sym_exit_statement_token1] = ACTIONS(8221), + [sym_end_statement] = ACTIONS(8223), + [aux_sym_on_goto_statement_token1] = ACTIONS(8221), + [aux_sym_on_goto_statement_token2] = ACTIONS(8221), + [aux_sym_on_error_statement_token2] = ACTIONS(8221), + [sym__ambiguous_redim_statement] = ACTIONS(8223), + [aux_sym_erase_statement_token1] = ACTIONS(8221), + [aux_sym_open_statement_token1] = ACTIONS(8221), + [aux_sym_file_mode_token2] = ACTIONS(8221), + [aux_sym_file_access_token2] = ACTIONS(8221), + [aux_sym_file_lock_token2] = ACTIONS(8221), + [aux_sym_print_statement_token1] = ACTIONS(8221), + [anon_sym_PLUS] = ACTIONS(8223), + [anon_sym_DASH] = ACTIONS(8221), + [anon_sym_QMARK] = ACTIONS(8223), + [aux_sym_close_statement_token1] = ACTIONS(8221), + [aux_sym_put_statement_token1] = ACTIONS(8221), + [aux_sym_unlock_statement_token1] = ACTIONS(8221), + [aux_sym_seek_statement_token1] = ACTIONS(8221), + [sym_reset_statement] = ACTIONS(8221), + [aux_sym_raise_event_statement_token1] = ACTIONS(8221), + [sym_stop_statement] = ACTIONS(8221), + [sym_beep_statement] = ACTIONS(8221), + [aux_sym_unload_statement_token1] = ACTIONS(8221), + [aux_sym_def_type_statement_token1] = ACTIONS(8221), + [aux_sym_def_type_statement_token2] = ACTIONS(8221), + [aux_sym_def_type_statement_token3] = ACTIONS(8221), + [aux_sym_def_type_statement_token4] = ACTIONS(8221), + [aux_sym_def_type_statement_token5] = ACTIONS(8221), + [aux_sym_def_type_statement_token6] = ACTIONS(8221), + [aux_sym_def_type_statement_token7] = ACTIONS(8221), + [aux_sym_def_type_statement_token8] = ACTIONS(8221), + [aux_sym_def_type_statement_token9] = ACTIONS(8221), + [aux_sym_def_type_statement_token10] = ACTIONS(8221), + [aux_sym_def_type_statement_token11] = ACTIONS(8221), + [aux_sym_def_type_statement_token12] = ACTIONS(8221), + [aux_sym_def_type_statement_token13] = ACTIONS(8221), + [aux_sym_def_type_statement_token14] = ACTIONS(8221), + [aux_sym_call_statement_token1] = ACTIONS(8221), + [sym__ambiguous_call_statement] = ACTIONS(8221), + [aux_sym_addressof_expression_token1] = ACTIONS(8221), + [aux_sym_type_of_expression_token1] = ACTIONS(8221), + [aux_sym_unary_expression_token1] = ACTIONS(8221), + [sym_string_literal] = ACTIONS(8223), + [sym_number_literal] = ACTIONS(8223), + [aux_sym_boolean_literal_token1] = ACTIONS(8221), + [aux_sym_boolean_literal_token2] = ACTIONS(8221), + [sym_nothing_literal] = ACTIONS(8221), + [sym_null_literal] = ACTIONS(8221), + [sym_empty_literal] = ACTIONS(8221), + [sym_date_literal] = ACTIONS(8223), + [anon_sym_POUND] = ACTIONS(8221), + }, + [STATE(5830)] = { + [sym_identifier] = ACTIONS(8672), + [sym_newline] = ACTIONS(8674), + [anon_sym_COLON] = ACTIONS(8674), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8672), + [aux_sym_frm_property_statement_token1] = ACTIONS(8672), + [anon_sym_DOT] = ACTIONS(8672), + [anon_sym_BANG] = ACTIONS(8674), + [aux_sym__attribute_identifier_token1] = ACTIONS(8672), + [aux_sym_option_statement_token3] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8672), + [aux_sym_preprocessor_const_token1] = ACTIONS(8672), + [sym_static_modifier] = ACTIONS(8672), + [sym__dim_keyword] = ACTIONS(8672), + [sym__redim_keyword] = ACTIONS(8672), + [aux_sym_get_accessor_token1] = ACTIONS(8672), + [aux_sym_set_accessor_token1] = ACTIONS(8672), + [anon_sym_COMMA] = ACTIONS(8674), + [aux_sym_const_declaration_token1] = ACTIONS(8672), + [anon_sym_LPAREN] = ACTIONS(8674), + [aux_sym_as_type_clause_token2] = ACTIONS(8672), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8672), + [aux_sym_visibility_token1] = ACTIONS(8672), + [aux_sym_visibility_token2] = ACTIONS(8672), + [aux_sym_elseif_fragment_token1] = ACTIONS(8672), + [aux_sym_else_fragment_token1] = ACTIONS(8672), + [aux_sym_select_statement_token1] = ACTIONS(8672), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8672), + [aux_sym__for_header_token1] = ACTIONS(8672), + [aux_sym_do_statement_token1] = ACTIONS(8672), + [aux_sym_do_condition_token1] = ACTIONS(8672), + [aux_sym_with_statement_token1] = ACTIONS(8672), + [aux_sym_exit_statement_token1] = ACTIONS(8672), + [sym_end_statement] = ACTIONS(8674), + [aux_sym_on_goto_statement_token1] = ACTIONS(8672), + [aux_sym_on_goto_statement_token2] = ACTIONS(8672), + [aux_sym_on_error_statement_token2] = ACTIONS(8672), + [sym__ambiguous_redim_statement] = ACTIONS(8674), + [aux_sym_erase_statement_token1] = ACTIONS(8672), + [aux_sym_open_statement_token1] = ACTIONS(8672), + [aux_sym_file_mode_token2] = ACTIONS(8672), + [aux_sym_file_access_token2] = ACTIONS(8672), + [aux_sym_file_lock_token2] = ACTIONS(8672), + [aux_sym_print_statement_token1] = ACTIONS(8672), + [anon_sym_PLUS] = ACTIONS(8674), + [anon_sym_DASH] = ACTIONS(8672), + [anon_sym_QMARK] = ACTIONS(8674), + [aux_sym_close_statement_token1] = ACTIONS(8672), + [aux_sym_put_statement_token1] = ACTIONS(8672), + [aux_sym_unlock_statement_token1] = ACTIONS(8672), + [aux_sym_seek_statement_token1] = ACTIONS(8672), + [sym_reset_statement] = ACTIONS(8672), + [aux_sym_raise_event_statement_token1] = ACTIONS(8672), + [sym_stop_statement] = ACTIONS(8672), + [sym_beep_statement] = ACTIONS(8672), + [aux_sym_unload_statement_token1] = ACTIONS(8672), + [aux_sym_def_type_statement_token1] = ACTIONS(8672), + [aux_sym_def_type_statement_token2] = ACTIONS(8672), + [aux_sym_def_type_statement_token3] = ACTIONS(8672), + [aux_sym_def_type_statement_token4] = ACTIONS(8672), + [aux_sym_def_type_statement_token5] = ACTIONS(8672), + [aux_sym_def_type_statement_token6] = ACTIONS(8672), + [aux_sym_def_type_statement_token7] = ACTIONS(8672), + [aux_sym_def_type_statement_token8] = ACTIONS(8672), + [aux_sym_def_type_statement_token9] = ACTIONS(8672), + [aux_sym_def_type_statement_token10] = ACTIONS(8672), + [aux_sym_def_type_statement_token11] = ACTIONS(8672), + [aux_sym_def_type_statement_token12] = ACTIONS(8672), + [aux_sym_def_type_statement_token13] = ACTIONS(8672), + [aux_sym_def_type_statement_token14] = ACTIONS(8672), + [aux_sym_call_statement_token1] = ACTIONS(8672), + [sym__ambiguous_call_statement] = ACTIONS(8672), + [aux_sym_addressof_expression_token1] = ACTIONS(8672), + [aux_sym_type_of_expression_token1] = ACTIONS(8672), + [aux_sym_unary_expression_token1] = ACTIONS(8672), + [sym_string_literal] = ACTIONS(8674), + [sym_number_literal] = ACTIONS(8674), + [aux_sym_boolean_literal_token1] = ACTIONS(8672), + [aux_sym_boolean_literal_token2] = ACTIONS(8672), + [sym_nothing_literal] = ACTIONS(8672), + [sym_null_literal] = ACTIONS(8672), + [sym_empty_literal] = ACTIONS(8672), + [sym_date_literal] = ACTIONS(8674), + [anon_sym_POUND] = ACTIONS(8672), + }, + [STATE(5831)] = { + [sym_identifier] = ACTIONS(8903), + [sym_newline] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8903), + [aux_sym_frm_property_statement_token1] = ACTIONS(8903), + [anon_sym_DOT] = ACTIONS(8903), + [anon_sym_BANG] = ACTIONS(8905), + [aux_sym__attribute_identifier_token1] = ACTIONS(8903), + [aux_sym_option_statement_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8903), + [aux_sym_preprocessor_const_token1] = ACTIONS(8903), + [sym_static_modifier] = ACTIONS(8903), + [sym__dim_keyword] = ACTIONS(8903), + [sym__redim_keyword] = ACTIONS(8903), + [aux_sym_get_accessor_token1] = ACTIONS(8903), + [aux_sym_set_accessor_token1] = ACTIONS(8903), + [aux_sym_const_declaration_token1] = ACTIONS(8903), + [anon_sym_LPAREN] = ACTIONS(8905), + [aux_sym_as_type_clause_token2] = ACTIONS(8903), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8903), + [aux_sym_visibility_token1] = ACTIONS(8903), + [aux_sym_visibility_token2] = ACTIONS(8903), + [aux_sym_elseif_fragment_token1] = ACTIONS(8903), + [aux_sym_else_fragment_token1] = ACTIONS(8903), + [aux_sym_select_statement_token1] = ACTIONS(8903), + [aux_sym_select_statement_token2] = ACTIONS(8903), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8903), + [aux_sym__for_header_token1] = ACTIONS(8903), + [aux_sym_do_statement_token1] = ACTIONS(8903), + [aux_sym_do_condition_token1] = ACTIONS(8903), + [aux_sym_with_statement_token1] = ACTIONS(8903), + [aux_sym_exit_statement_token1] = ACTIONS(8903), + [sym_end_statement] = ACTIONS(8905), + [aux_sym_on_goto_statement_token1] = ACTIONS(8903), + [aux_sym_on_goto_statement_token2] = ACTIONS(8903), + [aux_sym_on_error_statement_token2] = ACTIONS(8903), + [sym__ambiguous_redim_statement] = ACTIONS(8905), + [aux_sym_erase_statement_token1] = ACTIONS(8903), + [aux_sym_open_statement_token1] = ACTIONS(8903), + [aux_sym_file_mode_token2] = ACTIONS(8903), + [aux_sym_file_access_token2] = ACTIONS(8903), + [aux_sym_file_lock_token2] = ACTIONS(8903), + [aux_sym_print_statement_token1] = ACTIONS(8903), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_DASH] = ACTIONS(8903), + [anon_sym_QMARK] = ACTIONS(8905), + [aux_sym_close_statement_token1] = ACTIONS(8903), + [aux_sym_put_statement_token1] = ACTIONS(8903), + [aux_sym_unlock_statement_token1] = ACTIONS(8903), + [aux_sym_seek_statement_token1] = ACTIONS(8903), + [sym_reset_statement] = ACTIONS(8903), + [aux_sym_raise_event_statement_token1] = ACTIONS(8903), + [sym_stop_statement] = ACTIONS(8903), + [sym_beep_statement] = ACTIONS(8903), + [aux_sym_unload_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token2] = ACTIONS(8903), + [aux_sym_def_type_statement_token3] = ACTIONS(8903), + [aux_sym_def_type_statement_token4] = ACTIONS(8903), + [aux_sym_def_type_statement_token5] = ACTIONS(8903), + [aux_sym_def_type_statement_token6] = ACTIONS(8903), + [aux_sym_def_type_statement_token7] = ACTIONS(8903), + [aux_sym_def_type_statement_token8] = ACTIONS(8903), + [aux_sym_def_type_statement_token9] = ACTIONS(8903), + [aux_sym_def_type_statement_token10] = ACTIONS(8903), + [aux_sym_def_type_statement_token11] = ACTIONS(8903), + [aux_sym_def_type_statement_token12] = ACTIONS(8903), + [aux_sym_def_type_statement_token13] = ACTIONS(8903), + [aux_sym_def_type_statement_token14] = ACTIONS(8903), + [aux_sym_call_statement_token1] = ACTIONS(8903), + [sym__ambiguous_call_statement] = ACTIONS(8903), + [aux_sym_addressof_expression_token1] = ACTIONS(8903), + [aux_sym_type_of_expression_token1] = ACTIONS(8903), + [aux_sym_unary_expression_token1] = ACTIONS(8903), + [sym_string_literal] = ACTIONS(8905), + [sym_number_literal] = ACTIONS(8905), + [aux_sym_boolean_literal_token1] = ACTIONS(8903), + [aux_sym_boolean_literal_token2] = ACTIONS(8903), + [sym_nothing_literal] = ACTIONS(8903), + [sym_null_literal] = ACTIONS(8903), + [sym_empty_literal] = ACTIONS(8903), + [sym_date_literal] = ACTIONS(8905), + [anon_sym_POUND] = ACTIONS(8903), + }, + [STATE(5832)] = { + [sym_identifier] = ACTIONS(8911), + [sym_newline] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8911), + [aux_sym_frm_property_statement_token1] = ACTIONS(8911), + [anon_sym_DOT] = ACTIONS(8911), + [anon_sym_BANG] = ACTIONS(8913), + [aux_sym__attribute_identifier_token1] = ACTIONS(8911), + [aux_sym_option_statement_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8911), + [aux_sym_preprocessor_const_token1] = ACTIONS(8911), + [sym_static_modifier] = ACTIONS(8911), + [sym__dim_keyword] = ACTIONS(8911), + [sym__redim_keyword] = ACTIONS(8911), + [aux_sym_get_accessor_token1] = ACTIONS(8911), + [aux_sym_set_accessor_token1] = ACTIONS(8911), + [aux_sym_const_declaration_token1] = ACTIONS(8911), + [anon_sym_LPAREN] = ACTIONS(8913), + [aux_sym_as_type_clause_token2] = ACTIONS(8911), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8911), + [aux_sym_visibility_token1] = ACTIONS(8911), + [aux_sym_visibility_token2] = ACTIONS(8911), + [aux_sym_elseif_fragment_token1] = ACTIONS(8911), + [aux_sym_else_fragment_token1] = ACTIONS(8911), + [aux_sym_select_statement_token1] = ACTIONS(8911), + [aux_sym_select_statement_token2] = ACTIONS(8911), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8911), + [aux_sym__for_header_token1] = ACTIONS(8911), + [aux_sym_do_statement_token1] = ACTIONS(8911), + [aux_sym_do_condition_token1] = ACTIONS(8911), + [aux_sym_with_statement_token1] = ACTIONS(8911), + [aux_sym_exit_statement_token1] = ACTIONS(8911), + [sym_end_statement] = ACTIONS(8913), + [aux_sym_on_goto_statement_token1] = ACTIONS(8911), + [aux_sym_on_goto_statement_token2] = ACTIONS(8911), + [aux_sym_on_error_statement_token2] = ACTIONS(8911), + [sym__ambiguous_redim_statement] = ACTIONS(8913), + [aux_sym_erase_statement_token1] = ACTIONS(8911), + [aux_sym_open_statement_token1] = ACTIONS(8911), + [aux_sym_file_mode_token2] = ACTIONS(8911), + [aux_sym_file_access_token2] = ACTIONS(8911), + [aux_sym_file_lock_token2] = ACTIONS(8911), + [aux_sym_print_statement_token1] = ACTIONS(8911), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_DASH] = ACTIONS(8911), + [anon_sym_QMARK] = ACTIONS(8913), + [aux_sym_close_statement_token1] = ACTIONS(8911), + [aux_sym_put_statement_token1] = ACTIONS(8911), + [aux_sym_unlock_statement_token1] = ACTIONS(8911), + [aux_sym_seek_statement_token1] = ACTIONS(8911), + [sym_reset_statement] = ACTIONS(8911), + [aux_sym_raise_event_statement_token1] = ACTIONS(8911), + [sym_stop_statement] = ACTIONS(8911), + [sym_beep_statement] = ACTIONS(8911), + [aux_sym_unload_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token2] = ACTIONS(8911), + [aux_sym_def_type_statement_token3] = ACTIONS(8911), + [aux_sym_def_type_statement_token4] = ACTIONS(8911), + [aux_sym_def_type_statement_token5] = ACTIONS(8911), + [aux_sym_def_type_statement_token6] = ACTIONS(8911), + [aux_sym_def_type_statement_token7] = ACTIONS(8911), + [aux_sym_def_type_statement_token8] = ACTIONS(8911), + [aux_sym_def_type_statement_token9] = ACTIONS(8911), + [aux_sym_def_type_statement_token10] = ACTIONS(8911), + [aux_sym_def_type_statement_token11] = ACTIONS(8911), + [aux_sym_def_type_statement_token12] = ACTIONS(8911), + [aux_sym_def_type_statement_token13] = ACTIONS(8911), + [aux_sym_def_type_statement_token14] = ACTIONS(8911), + [aux_sym_call_statement_token1] = ACTIONS(8911), + [sym__ambiguous_call_statement] = ACTIONS(8911), + [aux_sym_addressof_expression_token1] = ACTIONS(8911), + [aux_sym_type_of_expression_token1] = ACTIONS(8911), + [aux_sym_unary_expression_token1] = ACTIONS(8911), + [sym_string_literal] = ACTIONS(8913), + [sym_number_literal] = ACTIONS(8913), + [aux_sym_boolean_literal_token1] = ACTIONS(8911), + [aux_sym_boolean_literal_token2] = ACTIONS(8911), + [sym_nothing_literal] = ACTIONS(8911), + [sym_null_literal] = ACTIONS(8911), + [sym_empty_literal] = ACTIONS(8911), + [sym_date_literal] = ACTIONS(8913), + [anon_sym_POUND] = ACTIONS(8911), + }, + [STATE(5833)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_statement_token2] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(5834)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(5835)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_statement_token2] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(5836)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_statement_token2] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(5837)] = { + [sym_identifier] = ACTIONS(8660), + [sym_newline] = ACTIONS(8662), + [anon_sym_COLON] = ACTIONS(8662), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8660), + [aux_sym_frm_property_statement_token1] = ACTIONS(8660), + [anon_sym_DOT] = ACTIONS(8660), + [anon_sym_BANG] = ACTIONS(8662), + [aux_sym__attribute_identifier_token1] = ACTIONS(8660), + [aux_sym_option_statement_token3] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8660), + [aux_sym_preprocessor_const_token1] = ACTIONS(8660), + [sym_static_modifier] = ACTIONS(8660), + [sym__dim_keyword] = ACTIONS(8660), + [sym__redim_keyword] = ACTIONS(8660), + [aux_sym_get_accessor_token1] = ACTIONS(8660), + [aux_sym_set_accessor_token1] = ACTIONS(8660), + [anon_sym_COMMA] = ACTIONS(10826), + [aux_sym_const_declaration_token1] = ACTIONS(8660), + [anon_sym_LPAREN] = ACTIONS(8662), + [aux_sym_as_type_clause_token2] = ACTIONS(8660), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8660), + [aux_sym_visibility_token1] = ACTIONS(8660), + [aux_sym_visibility_token2] = ACTIONS(8660), + [aux_sym_elseif_fragment_token1] = ACTIONS(8660), + [aux_sym_else_fragment_token1] = ACTIONS(8660), + [aux_sym_select_statement_token1] = ACTIONS(8660), + [aux_sym__for_header_token1] = ACTIONS(8660), + [aux_sym_do_statement_token1] = ACTIONS(8660), + [aux_sym_do_condition_token1] = ACTIONS(8660), + [aux_sym_with_statement_token1] = ACTIONS(8660), + [aux_sym_exit_statement_token1] = ACTIONS(8660), + [sym_end_statement] = ACTIONS(8662), + [aux_sym_on_goto_statement_token1] = ACTIONS(8660), + [aux_sym_on_goto_statement_token2] = ACTIONS(8660), + [aux_sym_on_error_statement_token2] = ACTIONS(8660), + [sym__ambiguous_redim_statement] = ACTIONS(8662), + [aux_sym_erase_statement_token1] = ACTIONS(8660), + [aux_sym_open_statement_token1] = ACTIONS(8660), + [aux_sym_file_mode_token2] = ACTIONS(8660), + [aux_sym_file_access_token2] = ACTIONS(8660), + [aux_sym_file_lock_token2] = ACTIONS(8660), + [aux_sym_print_statement_token1] = ACTIONS(8660), + [anon_sym_PLUS] = ACTIONS(8662), + [anon_sym_DASH] = ACTIONS(8660), + [anon_sym_QMARK] = ACTIONS(8662), + [aux_sym_close_statement_token1] = ACTIONS(8660), + [aux_sym_put_statement_token1] = ACTIONS(8660), + [aux_sym_unlock_statement_token1] = ACTIONS(8660), + [aux_sym_seek_statement_token1] = ACTIONS(8660), + [sym_reset_statement] = ACTIONS(8660), + [aux_sym_raise_event_statement_token1] = ACTIONS(8660), + [sym_stop_statement] = ACTIONS(8660), + [sym_beep_statement] = ACTIONS(8660), + [aux_sym_unload_statement_token1] = ACTIONS(8660), + [aux_sym_def_type_statement_token1] = ACTIONS(8660), + [aux_sym_def_type_statement_token2] = ACTIONS(8660), + [aux_sym_def_type_statement_token3] = ACTIONS(8660), + [aux_sym_def_type_statement_token4] = ACTIONS(8660), + [aux_sym_def_type_statement_token5] = ACTIONS(8660), + [aux_sym_def_type_statement_token6] = ACTIONS(8660), + [aux_sym_def_type_statement_token7] = ACTIONS(8660), + [aux_sym_def_type_statement_token8] = ACTIONS(8660), + [aux_sym_def_type_statement_token9] = ACTIONS(8660), + [aux_sym_def_type_statement_token10] = ACTIONS(8660), + [aux_sym_def_type_statement_token11] = ACTIONS(8660), + [aux_sym_def_type_statement_token12] = ACTIONS(8660), + [aux_sym_def_type_statement_token13] = ACTIONS(8660), + [aux_sym_def_type_statement_token14] = ACTIONS(8660), + [aux_sym_call_statement_token1] = ACTIONS(8660), + [sym__ambiguous_call_statement] = ACTIONS(8660), + [aux_sym_addressof_expression_token1] = ACTIONS(8660), + [aux_sym_type_of_expression_token1] = ACTIONS(8660), + [aux_sym_unary_expression_token1] = ACTIONS(8660), + [sym_string_literal] = ACTIONS(8662), + [sym_number_literal] = ACTIONS(8662), + [aux_sym_boolean_literal_token1] = ACTIONS(8660), + [aux_sym_boolean_literal_token2] = ACTIONS(8660), + [sym_nothing_literal] = ACTIONS(8660), + [sym_null_literal] = ACTIONS(8660), + [sym_empty_literal] = ACTIONS(8660), + [sym_date_literal] = ACTIONS(8662), + [anon_sym_POUND] = ACTIONS(8660), + }, + [STATE(5838)] = { + [sym_identifier] = ACTIONS(8666), + [sym_newline] = ACTIONS(8668), + [anon_sym_COLON] = ACTIONS(8668), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8666), + [aux_sym_frm_property_statement_token1] = ACTIONS(8666), + [anon_sym_DOT] = ACTIONS(8666), + [anon_sym_BANG] = ACTIONS(8668), + [aux_sym__attribute_identifier_token1] = ACTIONS(8666), + [aux_sym_option_statement_token3] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8666), + [aux_sym_preprocessor_const_token1] = ACTIONS(8666), + [sym_static_modifier] = ACTIONS(8666), + [sym__dim_keyword] = ACTIONS(8666), + [sym__redim_keyword] = ACTIONS(8666), + [aux_sym_get_accessor_token1] = ACTIONS(8666), + [aux_sym_set_accessor_token1] = ACTIONS(8666), + [anon_sym_COMMA] = ACTIONS(10828), + [aux_sym_const_declaration_token1] = ACTIONS(8666), + [anon_sym_LPAREN] = ACTIONS(8668), + [aux_sym_as_type_clause_token2] = ACTIONS(8666), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8666), + [aux_sym_visibility_token1] = ACTIONS(8666), + [aux_sym_visibility_token2] = ACTIONS(8666), + [aux_sym_elseif_fragment_token1] = ACTIONS(8666), + [aux_sym_else_fragment_token1] = ACTIONS(8666), + [aux_sym_select_statement_token1] = ACTIONS(8666), + [aux_sym__for_header_token1] = ACTIONS(8666), + [aux_sym_do_statement_token1] = ACTIONS(8666), + [aux_sym_do_condition_token1] = ACTIONS(8666), + [aux_sym_with_statement_token1] = ACTIONS(8666), + [aux_sym_exit_statement_token1] = ACTIONS(8666), + [sym_end_statement] = ACTIONS(8668), + [aux_sym_on_goto_statement_token1] = ACTIONS(8666), + [aux_sym_on_goto_statement_token2] = ACTIONS(8666), + [aux_sym_on_error_statement_token2] = ACTIONS(8666), + [sym__ambiguous_redim_statement] = ACTIONS(8668), + [aux_sym_erase_statement_token1] = ACTIONS(8666), + [aux_sym_open_statement_token1] = ACTIONS(8666), + [aux_sym_file_mode_token2] = ACTIONS(8666), + [aux_sym_file_access_token2] = ACTIONS(8666), + [aux_sym_file_lock_token2] = ACTIONS(8666), + [aux_sym_print_statement_token1] = ACTIONS(8666), + [anon_sym_PLUS] = ACTIONS(8668), + [anon_sym_DASH] = ACTIONS(8666), + [anon_sym_QMARK] = ACTIONS(8668), + [aux_sym_close_statement_token1] = ACTIONS(8666), + [aux_sym_put_statement_token1] = ACTIONS(8666), + [aux_sym_unlock_statement_token1] = ACTIONS(8666), + [aux_sym_seek_statement_token1] = ACTIONS(8666), + [sym_reset_statement] = ACTIONS(8666), + [aux_sym_raise_event_statement_token1] = ACTIONS(8666), + [sym_stop_statement] = ACTIONS(8666), + [sym_beep_statement] = ACTIONS(8666), + [aux_sym_unload_statement_token1] = ACTIONS(8666), + [aux_sym_def_type_statement_token1] = ACTIONS(8666), + [aux_sym_def_type_statement_token2] = ACTIONS(8666), + [aux_sym_def_type_statement_token3] = ACTIONS(8666), + [aux_sym_def_type_statement_token4] = ACTIONS(8666), + [aux_sym_def_type_statement_token5] = ACTIONS(8666), + [aux_sym_def_type_statement_token6] = ACTIONS(8666), + [aux_sym_def_type_statement_token7] = ACTIONS(8666), + [aux_sym_def_type_statement_token8] = ACTIONS(8666), + [aux_sym_def_type_statement_token9] = ACTIONS(8666), + [aux_sym_def_type_statement_token10] = ACTIONS(8666), + [aux_sym_def_type_statement_token11] = ACTIONS(8666), + [aux_sym_def_type_statement_token12] = ACTIONS(8666), + [aux_sym_def_type_statement_token13] = ACTIONS(8666), + [aux_sym_def_type_statement_token14] = ACTIONS(8666), + [aux_sym_call_statement_token1] = ACTIONS(8666), + [sym__ambiguous_call_statement] = ACTIONS(8666), + [aux_sym_addressof_expression_token1] = ACTIONS(8666), + [aux_sym_type_of_expression_token1] = ACTIONS(8666), + [aux_sym_unary_expression_token1] = ACTIONS(8666), + [sym_string_literal] = ACTIONS(8668), + [sym_number_literal] = ACTIONS(8668), + [aux_sym_boolean_literal_token1] = ACTIONS(8666), + [aux_sym_boolean_literal_token2] = ACTIONS(8666), + [sym_nothing_literal] = ACTIONS(8666), + [sym_null_literal] = ACTIONS(8666), + [sym_empty_literal] = ACTIONS(8666), + [sym_date_literal] = ACTIONS(8668), + [anon_sym_POUND] = ACTIONS(8666), + }, + [STATE(5839)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(5839), + [sym_identifier] = ACTIONS(8702), + [sym_newline] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(10830), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8702), + [aux_sym_frm_property_statement_token1] = ACTIONS(8702), + [anon_sym_DOT] = ACTIONS(8702), + [anon_sym_BANG] = ACTIONS(8704), + [aux_sym__attribute_identifier_token1] = ACTIONS(8702), + [aux_sym_option_statement_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8702), + [aux_sym_preprocessor_const_token1] = ACTIONS(8702), + [sym_static_modifier] = ACTIONS(8702), + [sym__dim_keyword] = ACTIONS(8702), + [sym__redim_keyword] = ACTIONS(8702), + [aux_sym_get_accessor_token1] = ACTIONS(8702), + [aux_sym_set_accessor_token1] = ACTIONS(8702), + [aux_sym_const_declaration_token1] = ACTIONS(8702), + [anon_sym_LPAREN] = ACTIONS(8704), + [aux_sym_as_type_clause_token2] = ACTIONS(8702), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8702), + [aux_sym_visibility_token1] = ACTIONS(8702), + [aux_sym_visibility_token2] = ACTIONS(8702), + [aux_sym_elseif_fragment_token1] = ACTIONS(8702), + [aux_sym_else_fragment_token1] = ACTIONS(8702), + [aux_sym_select_statement_token1] = ACTIONS(8702), + [aux_sym__for_header_token1] = ACTIONS(8702), + [aux_sym_do_statement_token1] = ACTIONS(8702), + [aux_sym_do_condition_token1] = ACTIONS(8702), + [aux_sym_while_statement_token1] = ACTIONS(8702), + [aux_sym_with_statement_token1] = ACTIONS(8702), + [aux_sym_exit_statement_token1] = ACTIONS(8702), + [sym_end_statement] = ACTIONS(8704), + [aux_sym_on_goto_statement_token1] = ACTIONS(8702), + [aux_sym_on_goto_statement_token2] = ACTIONS(8702), + [aux_sym_on_error_statement_token2] = ACTIONS(8702), + [sym__ambiguous_redim_statement] = ACTIONS(8704), + [aux_sym_erase_statement_token1] = ACTIONS(8702), + [aux_sym_open_statement_token1] = ACTIONS(8702), + [aux_sym_file_mode_token2] = ACTIONS(8702), + [aux_sym_file_access_token2] = ACTIONS(8702), + [aux_sym_file_lock_token2] = ACTIONS(8702), + [aux_sym_print_statement_token1] = ACTIONS(8702), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_DASH] = ACTIONS(8702), + [anon_sym_QMARK] = ACTIONS(8704), + [aux_sym_close_statement_token1] = ACTIONS(8702), + [aux_sym_put_statement_token1] = ACTIONS(8702), + [aux_sym_unlock_statement_token1] = ACTIONS(8702), + [aux_sym_seek_statement_token1] = ACTIONS(8702), + [sym_reset_statement] = ACTIONS(8702), + [aux_sym_raise_event_statement_token1] = ACTIONS(8702), + [sym_stop_statement] = ACTIONS(8702), + [sym_beep_statement] = ACTIONS(8702), + [aux_sym_unload_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token2] = ACTIONS(8702), + [aux_sym_def_type_statement_token3] = ACTIONS(8702), + [aux_sym_def_type_statement_token4] = ACTIONS(8702), + [aux_sym_def_type_statement_token5] = ACTIONS(8702), + [aux_sym_def_type_statement_token6] = ACTIONS(8702), + [aux_sym_def_type_statement_token7] = ACTIONS(8702), + [aux_sym_def_type_statement_token8] = ACTIONS(8702), + [aux_sym_def_type_statement_token9] = ACTIONS(8702), + [aux_sym_def_type_statement_token10] = ACTIONS(8702), + [aux_sym_def_type_statement_token11] = ACTIONS(8702), + [aux_sym_def_type_statement_token12] = ACTIONS(8702), + [aux_sym_def_type_statement_token13] = ACTIONS(8702), + [aux_sym_def_type_statement_token14] = ACTIONS(8702), + [aux_sym_call_statement_token1] = ACTIONS(8702), + [sym__ambiguous_call_statement] = ACTIONS(8702), + [aux_sym_addressof_expression_token1] = ACTIONS(8702), + [aux_sym_type_of_expression_token1] = ACTIONS(8702), + [aux_sym_unary_expression_token1] = ACTIONS(8702), + [sym_string_literal] = ACTIONS(8704), + [sym_number_literal] = ACTIONS(8704), + [aux_sym_boolean_literal_token1] = ACTIONS(8702), + [aux_sym_boolean_literal_token2] = ACTIONS(8702), + [sym_nothing_literal] = ACTIONS(8702), + [sym_null_literal] = ACTIONS(8702), + [sym_empty_literal] = ACTIONS(8702), + [sym_date_literal] = ACTIONS(8704), + [anon_sym_POUND] = ACTIONS(8702), + }, + [STATE(5840)] = { + [sym_identifier] = ACTIONS(8587), + [sym_newline] = ACTIONS(8589), + [anon_sym_COLON] = ACTIONS(8589), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8587), + [aux_sym_frm_property_statement_token1] = ACTIONS(8587), + [anon_sym_DOT] = ACTIONS(8587), + [anon_sym_BANG] = ACTIONS(8589), + [aux_sym__attribute_identifier_token1] = ACTIONS(8587), + [aux_sym_option_statement_token3] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8587), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8587), + [aux_sym_preprocessor_const_token1] = ACTIONS(8587), + [sym_static_modifier] = ACTIONS(8587), + [sym__dim_keyword] = ACTIONS(8587), + [sym__redim_keyword] = ACTIONS(8587), + [aux_sym_get_accessor_token1] = ACTIONS(8587), + [aux_sym_set_accessor_token1] = ACTIONS(8587), + [anon_sym_COMMA] = ACTIONS(8589), + [aux_sym_const_declaration_token1] = ACTIONS(8587), + [anon_sym_LPAREN] = ACTIONS(8589), + [aux_sym_as_type_clause_token2] = ACTIONS(8587), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8587), + [aux_sym_visibility_token1] = ACTIONS(8587), + [aux_sym_visibility_token2] = ACTIONS(8587), + [aux_sym_elseif_fragment_token1] = ACTIONS(8587), + [aux_sym_else_fragment_token1] = ACTIONS(8587), + [aux_sym_select_statement_token1] = ACTIONS(8587), + [aux_sym__for_header_token1] = ACTIONS(8587), + [aux_sym_do_statement_token1] = ACTIONS(8587), + [aux_sym_do_condition_token1] = ACTIONS(8587), + [aux_sym_with_statement_token1] = ACTIONS(8587), + [aux_sym_exit_statement_token1] = ACTIONS(8587), + [sym_end_statement] = ACTIONS(8589), + [aux_sym_on_goto_statement_token1] = ACTIONS(8587), + [aux_sym_on_goto_statement_token2] = ACTIONS(8587), + [aux_sym_on_error_statement_token2] = ACTIONS(8587), + [sym__ambiguous_redim_statement] = ACTIONS(8589), + [aux_sym_erase_statement_token1] = ACTIONS(8587), + [aux_sym_open_statement_token1] = ACTIONS(8587), + [aux_sym_file_mode_token2] = ACTIONS(8587), + [aux_sym_file_access_token2] = ACTIONS(8587), + [aux_sym_file_lock_token2] = ACTIONS(8587), + [aux_sym_print_statement_token1] = ACTIONS(8587), + [anon_sym_PLUS] = ACTIONS(8589), + [anon_sym_DASH] = ACTIONS(8587), + [anon_sym_SEMI] = ACTIONS(8589), + [anon_sym_QMARK] = ACTIONS(8589), + [aux_sym_close_statement_token1] = ACTIONS(8587), + [aux_sym_put_statement_token1] = ACTIONS(8587), + [aux_sym_unlock_statement_token1] = ACTIONS(8587), + [aux_sym_seek_statement_token1] = ACTIONS(8587), + [sym_reset_statement] = ACTIONS(8587), + [aux_sym_raise_event_statement_token1] = ACTIONS(8587), + [sym_stop_statement] = ACTIONS(8587), + [sym_beep_statement] = ACTIONS(8587), + [aux_sym_unload_statement_token1] = ACTIONS(8587), + [aux_sym_def_type_statement_token1] = ACTIONS(8587), + [aux_sym_def_type_statement_token2] = ACTIONS(8587), + [aux_sym_def_type_statement_token3] = ACTIONS(8587), + [aux_sym_def_type_statement_token4] = ACTIONS(8587), + [aux_sym_def_type_statement_token5] = ACTIONS(8587), + [aux_sym_def_type_statement_token6] = ACTIONS(8587), + [aux_sym_def_type_statement_token7] = ACTIONS(8587), + [aux_sym_def_type_statement_token8] = ACTIONS(8587), + [aux_sym_def_type_statement_token9] = ACTIONS(8587), + [aux_sym_def_type_statement_token10] = ACTIONS(8587), + [aux_sym_def_type_statement_token11] = ACTIONS(8587), + [aux_sym_def_type_statement_token12] = ACTIONS(8587), + [aux_sym_def_type_statement_token13] = ACTIONS(8587), + [aux_sym_def_type_statement_token14] = ACTIONS(8587), + [aux_sym_call_statement_token1] = ACTIONS(8587), + [sym__ambiguous_call_statement] = ACTIONS(8587), + [aux_sym_addressof_expression_token1] = ACTIONS(8587), + [aux_sym_type_of_expression_token1] = ACTIONS(8587), + [aux_sym_unary_expression_token1] = ACTIONS(8587), + [sym_string_literal] = ACTIONS(8589), + [sym_number_literal] = ACTIONS(8589), + [aux_sym_boolean_literal_token1] = ACTIONS(8587), + [aux_sym_boolean_literal_token2] = ACTIONS(8587), + [sym_nothing_literal] = ACTIONS(8587), + [sym_null_literal] = ACTIONS(8587), + [sym_empty_literal] = ACTIONS(8587), + [sym_date_literal] = ACTIONS(8589), + [anon_sym_POUND] = ACTIONS(8587), + }, + [STATE(5841)] = { + [sym_identifier] = ACTIONS(8907), + [sym_newline] = ACTIONS(8909), + [anon_sym_COLON] = ACTIONS(8909), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8907), + [aux_sym_frm_property_statement_token1] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8907), + [anon_sym_BANG] = ACTIONS(8909), + [aux_sym__attribute_identifier_token1] = ACTIONS(8907), + [aux_sym_option_statement_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8907), + [aux_sym_preprocessor_const_token1] = ACTIONS(8907), + [sym_static_modifier] = ACTIONS(8907), + [sym__dim_keyword] = ACTIONS(8907), + [sym__redim_keyword] = ACTIONS(8907), + [aux_sym_get_accessor_token1] = ACTIONS(8907), + [aux_sym_set_accessor_token1] = ACTIONS(8907), + [aux_sym_const_declaration_token1] = ACTIONS(8907), + [anon_sym_LPAREN] = ACTIONS(8909), + [aux_sym_as_type_clause_token2] = ACTIONS(8907), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8907), + [aux_sym_visibility_token1] = ACTIONS(8907), + [aux_sym_visibility_token2] = ACTIONS(8907), + [aux_sym_elseif_fragment_token1] = ACTIONS(8907), + [aux_sym_else_fragment_token1] = ACTIONS(8907), + [aux_sym_select_statement_token1] = ACTIONS(8907), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8907), + [aux_sym__for_header_token1] = ACTIONS(8907), + [aux_sym_do_statement_token1] = ACTIONS(8907), + [aux_sym_do_statement_token2] = ACTIONS(8907), + [aux_sym_do_condition_token1] = ACTIONS(8907), + [aux_sym_with_statement_token1] = ACTIONS(8907), + [aux_sym_exit_statement_token1] = ACTIONS(8907), + [sym_end_statement] = ACTIONS(8909), + [aux_sym_on_goto_statement_token1] = ACTIONS(8907), + [aux_sym_on_goto_statement_token2] = ACTIONS(8907), + [aux_sym_on_error_statement_token2] = ACTIONS(8907), + [sym__ambiguous_redim_statement] = ACTIONS(8909), + [aux_sym_erase_statement_token1] = ACTIONS(8907), + [aux_sym_open_statement_token1] = ACTIONS(8907), + [aux_sym_file_mode_token2] = ACTIONS(8907), + [aux_sym_file_access_token2] = ACTIONS(8907), + [aux_sym_file_lock_token2] = ACTIONS(8907), + [aux_sym_print_statement_token1] = ACTIONS(8907), + [anon_sym_PLUS] = ACTIONS(8909), + [anon_sym_DASH] = ACTIONS(8907), + [anon_sym_QMARK] = ACTIONS(8909), + [aux_sym_close_statement_token1] = ACTIONS(8907), + [aux_sym_put_statement_token1] = ACTIONS(8907), + [aux_sym_unlock_statement_token1] = ACTIONS(8907), + [aux_sym_seek_statement_token1] = ACTIONS(8907), + [sym_reset_statement] = ACTIONS(8907), + [aux_sym_raise_event_statement_token1] = ACTIONS(8907), + [sym_stop_statement] = ACTIONS(8907), + [sym_beep_statement] = ACTIONS(8907), + [aux_sym_unload_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token2] = ACTIONS(8907), + [aux_sym_def_type_statement_token3] = ACTIONS(8907), + [aux_sym_def_type_statement_token4] = ACTIONS(8907), + [aux_sym_def_type_statement_token5] = ACTIONS(8907), + [aux_sym_def_type_statement_token6] = ACTIONS(8907), + [aux_sym_def_type_statement_token7] = ACTIONS(8907), + [aux_sym_def_type_statement_token8] = ACTIONS(8907), + [aux_sym_def_type_statement_token9] = ACTIONS(8907), + [aux_sym_def_type_statement_token10] = ACTIONS(8907), + [aux_sym_def_type_statement_token11] = ACTIONS(8907), + [aux_sym_def_type_statement_token12] = ACTIONS(8907), + [aux_sym_def_type_statement_token13] = ACTIONS(8907), + [aux_sym_def_type_statement_token14] = ACTIONS(8907), + [aux_sym_call_statement_token1] = ACTIONS(8907), + [sym__ambiguous_call_statement] = ACTIONS(8907), + [aux_sym_addressof_expression_token1] = ACTIONS(8907), + [aux_sym_type_of_expression_token1] = ACTIONS(8907), + [aux_sym_unary_expression_token1] = ACTIONS(8907), + [sym_string_literal] = ACTIONS(8909), + [sym_number_literal] = ACTIONS(8909), + [aux_sym_boolean_literal_token1] = ACTIONS(8907), + [aux_sym_boolean_literal_token2] = ACTIONS(8907), + [sym_nothing_literal] = ACTIONS(8907), + [sym_null_literal] = ACTIONS(8907), + [sym_empty_literal] = ACTIONS(8907), + [sym_date_literal] = ACTIONS(8909), + [anon_sym_POUND] = ACTIONS(8907), + }, + [STATE(5842)] = { + [sym_identifier] = ACTIONS(8974), + [sym_newline] = ACTIONS(8976), + [anon_sym_COLON] = ACTIONS(8976), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8974), + [aux_sym_frm_property_statement_token1] = ACTIONS(8974), + [anon_sym_DOT] = ACTIONS(8974), + [anon_sym_BANG] = ACTIONS(8976), + [aux_sym__attribute_identifier_token1] = ACTIONS(8974), + [aux_sym_option_statement_token3] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8974), + [aux_sym_preprocessor_const_token1] = ACTIONS(8974), + [sym_static_modifier] = ACTIONS(8974), + [sym__dim_keyword] = ACTIONS(8974), + [sym__redim_keyword] = ACTIONS(8974), + [aux_sym_get_accessor_token1] = ACTIONS(8974), + [aux_sym_set_accessor_token1] = ACTIONS(8974), + [anon_sym_COMMA] = ACTIONS(10833), + [aux_sym_const_declaration_token1] = ACTIONS(8974), + [anon_sym_LPAREN] = ACTIONS(8976), + [aux_sym_as_type_clause_token2] = ACTIONS(8974), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8974), + [aux_sym_visibility_token1] = ACTIONS(8974), + [aux_sym_visibility_token2] = ACTIONS(8974), + [aux_sym_elseif_fragment_token1] = ACTIONS(8974), + [aux_sym_else_fragment_token1] = ACTIONS(8974), + [aux_sym_select_statement_token1] = ACTIONS(8974), + [aux_sym__for_header_token1] = ACTIONS(8974), + [aux_sym_do_statement_token1] = ACTIONS(8974), + [aux_sym_do_statement_token2] = ACTIONS(8974), + [aux_sym_do_condition_token1] = ACTIONS(8974), + [aux_sym_with_statement_token1] = ACTIONS(8974), + [aux_sym_exit_statement_token1] = ACTIONS(8974), + [sym_end_statement] = ACTIONS(8976), + [aux_sym_on_goto_statement_token1] = ACTIONS(8974), + [aux_sym_on_goto_statement_token2] = ACTIONS(8974), + [aux_sym_on_error_statement_token2] = ACTIONS(8974), + [sym__ambiguous_redim_statement] = ACTIONS(8976), + [aux_sym_erase_statement_token1] = ACTIONS(8974), + [aux_sym_open_statement_token1] = ACTIONS(8974), + [aux_sym_file_mode_token2] = ACTIONS(8974), + [aux_sym_file_access_token2] = ACTIONS(8974), + [aux_sym_file_lock_token2] = ACTIONS(8974), + [aux_sym_print_statement_token1] = ACTIONS(8974), + [anon_sym_PLUS] = ACTIONS(8976), + [anon_sym_DASH] = ACTIONS(8974), + [anon_sym_QMARK] = ACTIONS(8976), + [aux_sym_close_statement_token1] = ACTIONS(8974), + [aux_sym_put_statement_token1] = ACTIONS(8974), + [aux_sym_unlock_statement_token1] = ACTIONS(8974), + [aux_sym_seek_statement_token1] = ACTIONS(8974), + [sym_reset_statement] = ACTIONS(8974), + [aux_sym_raise_event_statement_token1] = ACTIONS(8974), + [sym_stop_statement] = ACTIONS(8974), + [sym_beep_statement] = ACTIONS(8974), + [aux_sym_unload_statement_token1] = ACTIONS(8974), + [aux_sym_def_type_statement_token1] = ACTIONS(8974), + [aux_sym_def_type_statement_token2] = ACTIONS(8974), + [aux_sym_def_type_statement_token3] = ACTIONS(8974), + [aux_sym_def_type_statement_token4] = ACTIONS(8974), + [aux_sym_def_type_statement_token5] = ACTIONS(8974), + [aux_sym_def_type_statement_token6] = ACTIONS(8974), + [aux_sym_def_type_statement_token7] = ACTIONS(8974), + [aux_sym_def_type_statement_token8] = ACTIONS(8974), + [aux_sym_def_type_statement_token9] = ACTIONS(8974), + [aux_sym_def_type_statement_token10] = ACTIONS(8974), + [aux_sym_def_type_statement_token11] = ACTIONS(8974), + [aux_sym_def_type_statement_token12] = ACTIONS(8974), + [aux_sym_def_type_statement_token13] = ACTIONS(8974), + [aux_sym_def_type_statement_token14] = ACTIONS(8974), + [aux_sym_call_statement_token1] = ACTIONS(8974), + [sym__ambiguous_call_statement] = ACTIONS(8974), + [aux_sym_addressof_expression_token1] = ACTIONS(8974), + [aux_sym_type_of_expression_token1] = ACTIONS(8974), + [aux_sym_unary_expression_token1] = ACTIONS(8974), + [sym_string_literal] = ACTIONS(8976), + [sym_number_literal] = ACTIONS(8976), + [aux_sym_boolean_literal_token1] = ACTIONS(8974), + [aux_sym_boolean_literal_token2] = ACTIONS(8974), + [sym_nothing_literal] = ACTIONS(8974), + [sym_null_literal] = ACTIONS(8974), + [sym_empty_literal] = ACTIONS(8974), + [sym_date_literal] = ACTIONS(8976), + [anon_sym_POUND] = ACTIONS(8974), + }, + [STATE(5843)] = { + [sym_identifier] = ACTIONS(8357), + [sym_newline] = ACTIONS(8359), + [anon_sym_COLON] = ACTIONS(8359), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8357), + [aux_sym_frm_property_statement_token1] = ACTIONS(8357), + [anon_sym_DOT] = ACTIONS(8357), + [anon_sym_BANG] = ACTIONS(8359), + [aux_sym__attribute_identifier_token1] = ACTIONS(8357), + [aux_sym_option_statement_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8357), + [aux_sym_preprocessor_const_token1] = ACTIONS(8357), + [sym_static_modifier] = ACTIONS(8357), + [sym__dim_keyword] = ACTIONS(8357), + [sym__redim_keyword] = ACTIONS(8357), + [aux_sym_get_accessor_token1] = ACTIONS(8357), + [aux_sym_set_accessor_token1] = ACTIONS(8357), + [anon_sym_COMMA] = ACTIONS(8359), + [aux_sym_const_declaration_token1] = ACTIONS(8357), + [anon_sym_LPAREN] = ACTIONS(8359), + [aux_sym_as_type_clause_token2] = ACTIONS(8357), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8357), + [aux_sym_visibility_token1] = ACTIONS(8357), + [aux_sym_visibility_token2] = ACTIONS(8357), + [aux_sym_elseif_fragment_token1] = ACTIONS(8357), + [aux_sym_else_fragment_token1] = ACTIONS(8357), + [aux_sym_select_statement_token1] = ACTIONS(8357), + [aux_sym__for_header_token1] = ACTIONS(8357), + [aux_sym_do_statement_token1] = ACTIONS(8357), + [aux_sym_do_statement_token2] = ACTIONS(8357), + [aux_sym_do_condition_token1] = ACTIONS(8357), + [aux_sym_with_statement_token1] = ACTIONS(8357), + [aux_sym_exit_statement_token1] = ACTIONS(8357), + [sym_end_statement] = ACTIONS(8359), + [aux_sym_on_goto_statement_token1] = ACTIONS(8357), + [aux_sym_on_goto_statement_token2] = ACTIONS(8357), + [aux_sym_on_error_statement_token2] = ACTIONS(8357), + [sym__ambiguous_redim_statement] = ACTIONS(8359), + [aux_sym_erase_statement_token1] = ACTIONS(8357), + [aux_sym_open_statement_token1] = ACTIONS(8357), + [aux_sym_file_mode_token2] = ACTIONS(8357), + [aux_sym_file_access_token2] = ACTIONS(8357), + [aux_sym_file_lock_token2] = ACTIONS(8357), + [aux_sym_print_statement_token1] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_QMARK] = ACTIONS(8359), + [aux_sym_close_statement_token1] = ACTIONS(8357), + [aux_sym_put_statement_token1] = ACTIONS(8357), + [aux_sym_unlock_statement_token1] = ACTIONS(8357), + [aux_sym_seek_statement_token1] = ACTIONS(8357), + [sym_reset_statement] = ACTIONS(8357), + [aux_sym_raise_event_statement_token1] = ACTIONS(8357), + [sym_stop_statement] = ACTIONS(8357), + [sym_beep_statement] = ACTIONS(8357), + [aux_sym_unload_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token2] = ACTIONS(8357), + [aux_sym_def_type_statement_token3] = ACTIONS(8357), + [aux_sym_def_type_statement_token4] = ACTIONS(8357), + [aux_sym_def_type_statement_token5] = ACTIONS(8357), + [aux_sym_def_type_statement_token6] = ACTIONS(8357), + [aux_sym_def_type_statement_token7] = ACTIONS(8357), + [aux_sym_def_type_statement_token8] = ACTIONS(8357), + [aux_sym_def_type_statement_token9] = ACTIONS(8357), + [aux_sym_def_type_statement_token10] = ACTIONS(8357), + [aux_sym_def_type_statement_token11] = ACTIONS(8357), + [aux_sym_def_type_statement_token12] = ACTIONS(8357), + [aux_sym_def_type_statement_token13] = ACTIONS(8357), + [aux_sym_def_type_statement_token14] = ACTIONS(8357), + [aux_sym_call_statement_token1] = ACTIONS(8357), + [sym__ambiguous_call_statement] = ACTIONS(8357), + [aux_sym_addressof_expression_token1] = ACTIONS(8357), + [aux_sym_type_of_expression_token1] = ACTIONS(8357), + [aux_sym_unary_expression_token1] = ACTIONS(8357), + [sym_string_literal] = ACTIONS(8359), + [sym_number_literal] = ACTIONS(8359), + [aux_sym_boolean_literal_token1] = ACTIONS(8357), + [aux_sym_boolean_literal_token2] = ACTIONS(8357), + [sym_nothing_literal] = ACTIONS(8357), + [sym_null_literal] = ACTIONS(8357), + [sym_empty_literal] = ACTIONS(8357), + [sym_date_literal] = ACTIONS(8359), + [anon_sym_POUND] = ACTIONS(8357), + }, + [STATE(5844)] = { + [aux_sym_next_variable_list_repeat1] = STATE(5911), + [sym_identifier] = ACTIONS(7939), + [sym_newline] = ACTIONS(7941), + [anon_sym_COLON] = ACTIONS(7941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7939), + [aux_sym_frm_property_statement_token1] = ACTIONS(7939), + [anon_sym_DOT] = ACTIONS(7939), + [anon_sym_BANG] = ACTIONS(7941), + [aux_sym__attribute_identifier_token1] = ACTIONS(7939), + [aux_sym_option_statement_token3] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7939), + [aux_sym_preprocessor_const_token1] = ACTIONS(7939), + [sym_static_modifier] = ACTIONS(7939), + [sym__dim_keyword] = ACTIONS(7939), + [sym__redim_keyword] = ACTIONS(7939), + [aux_sym_get_accessor_token1] = ACTIONS(7939), + [aux_sym_set_accessor_token1] = ACTIONS(7939), + [anon_sym_COMMA] = ACTIONS(10835), + [aux_sym_const_declaration_token1] = ACTIONS(7939), + [anon_sym_LPAREN] = ACTIONS(7941), + [aux_sym_as_type_clause_token2] = ACTIONS(7939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7939), + [aux_sym_visibility_token1] = ACTIONS(7939), + [aux_sym_visibility_token2] = ACTIONS(7939), + [aux_sym_elseif_fragment_token1] = ACTIONS(7939), + [aux_sym_else_fragment_token1] = ACTIONS(7939), + [aux_sym_select_statement_token1] = ACTIONS(7939), + [aux_sym__for_header_token1] = ACTIONS(7939), + [aux_sym_do_statement_token1] = ACTIONS(7939), + [aux_sym_do_condition_token1] = ACTIONS(7939), + [aux_sym_with_statement_token1] = ACTIONS(7939), + [aux_sym_exit_statement_token1] = ACTIONS(7939), + [sym_end_statement] = ACTIONS(7941), + [aux_sym_on_goto_statement_token1] = ACTIONS(7939), + [aux_sym_on_goto_statement_token2] = ACTIONS(7939), + [aux_sym_on_error_statement_token2] = ACTIONS(7939), + [sym__ambiguous_redim_statement] = ACTIONS(7941), + [aux_sym_erase_statement_token1] = ACTIONS(7939), + [aux_sym_open_statement_token1] = ACTIONS(7939), + [aux_sym_file_mode_token2] = ACTIONS(7939), + [aux_sym_file_access_token2] = ACTIONS(7939), + [aux_sym_file_lock_token2] = ACTIONS(7939), + [aux_sym_print_statement_token1] = ACTIONS(7939), + [anon_sym_PLUS] = ACTIONS(7941), + [anon_sym_DASH] = ACTIONS(7939), + [anon_sym_QMARK] = ACTIONS(7941), + [aux_sym_close_statement_token1] = ACTIONS(7939), + [aux_sym_put_statement_token1] = ACTIONS(7939), + [aux_sym_unlock_statement_token1] = ACTIONS(7939), + [aux_sym_seek_statement_token1] = ACTIONS(7939), + [sym_reset_statement] = ACTIONS(7939), + [aux_sym_raise_event_statement_token1] = ACTIONS(7939), + [sym_stop_statement] = ACTIONS(7939), + [sym_beep_statement] = ACTIONS(7939), + [aux_sym_unload_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token1] = ACTIONS(7939), + [aux_sym_def_type_statement_token2] = ACTIONS(7939), + [aux_sym_def_type_statement_token3] = ACTIONS(7939), + [aux_sym_def_type_statement_token4] = ACTIONS(7939), + [aux_sym_def_type_statement_token5] = ACTIONS(7939), + [aux_sym_def_type_statement_token6] = ACTIONS(7939), + [aux_sym_def_type_statement_token7] = ACTIONS(7939), + [aux_sym_def_type_statement_token8] = ACTIONS(7939), + [aux_sym_def_type_statement_token9] = ACTIONS(7939), + [aux_sym_def_type_statement_token10] = ACTIONS(7939), + [aux_sym_def_type_statement_token11] = ACTIONS(7939), + [aux_sym_def_type_statement_token12] = ACTIONS(7939), + [aux_sym_def_type_statement_token13] = ACTIONS(7939), + [aux_sym_def_type_statement_token14] = ACTIONS(7939), + [aux_sym_call_statement_token1] = ACTIONS(7939), + [sym__ambiguous_call_statement] = ACTIONS(7939), + [aux_sym_addressof_expression_token1] = ACTIONS(7939), + [aux_sym_type_of_expression_token1] = ACTIONS(7939), + [aux_sym_unary_expression_token1] = ACTIONS(7939), + [sym_string_literal] = ACTIONS(7941), + [sym_number_literal] = ACTIONS(7941), + [aux_sym_boolean_literal_token1] = ACTIONS(7939), + [aux_sym_boolean_literal_token2] = ACTIONS(7939), + [sym_nothing_literal] = ACTIONS(7939), + [sym_null_literal] = ACTIONS(7939), + [sym_empty_literal] = ACTIONS(7939), + [sym_date_literal] = ACTIONS(7941), + [anon_sym_POUND] = ACTIONS(7939), + }, + [STATE(5845)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6276), + [sym_identifier] = ACTIONS(8935), + [sym_newline] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(10837), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8935), + [aux_sym_frm_property_statement_token1] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_BANG] = ACTIONS(8937), + [aux_sym__attribute_identifier_token1] = ACTIONS(8935), + [aux_sym_option_statement_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8935), + [aux_sym_preprocessor_const_token1] = ACTIONS(8935), + [sym_static_modifier] = ACTIONS(8935), + [sym__dim_keyword] = ACTIONS(8935), + [sym__redim_keyword] = ACTIONS(8935), + [aux_sym_get_accessor_token1] = ACTIONS(8935), + [aux_sym_set_accessor_token1] = ACTIONS(8935), + [aux_sym_const_declaration_token1] = ACTIONS(8935), + [anon_sym_LPAREN] = ACTIONS(8937), + [aux_sym_as_type_clause_token2] = ACTIONS(8935), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8935), + [aux_sym_visibility_token1] = ACTIONS(8935), + [aux_sym_visibility_token2] = ACTIONS(8935), + [aux_sym_elseif_fragment_token1] = ACTIONS(8935), + [aux_sym_else_fragment_token1] = ACTIONS(8935), + [aux_sym_select_statement_token1] = ACTIONS(8935), + [aux_sym__for_header_token1] = ACTIONS(8935), + [aux_sym_do_statement_token1] = ACTIONS(8935), + [aux_sym_do_condition_token1] = ACTIONS(8935), + [aux_sym_with_statement_token1] = ACTIONS(8935), + [aux_sym_exit_statement_token1] = ACTIONS(8935), + [sym_end_statement] = ACTIONS(8937), + [aux_sym_on_goto_statement_token1] = ACTIONS(8935), + [aux_sym_on_goto_statement_token2] = ACTIONS(8935), + [aux_sym_on_error_statement_token2] = ACTIONS(8935), + [sym__ambiguous_redim_statement] = ACTIONS(8937), + [aux_sym_erase_statement_token1] = ACTIONS(8935), + [aux_sym_open_statement_token1] = ACTIONS(8935), + [aux_sym_file_mode_token2] = ACTIONS(8935), + [aux_sym_file_access_token2] = ACTIONS(8935), + [aux_sym_file_lock_token2] = ACTIONS(8935), + [aux_sym_print_statement_token1] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [aux_sym_close_statement_token1] = ACTIONS(8935), + [aux_sym_put_statement_token1] = ACTIONS(8935), + [aux_sym_unlock_statement_token1] = ACTIONS(8935), + [aux_sym_seek_statement_token1] = ACTIONS(8935), + [sym_reset_statement] = ACTIONS(8935), + [aux_sym_raise_event_statement_token1] = ACTIONS(8935), + [sym_stop_statement] = ACTIONS(8935), + [sym_beep_statement] = ACTIONS(8935), + [aux_sym_unload_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token2] = ACTIONS(8935), + [aux_sym_def_type_statement_token3] = ACTIONS(8935), + [aux_sym_def_type_statement_token4] = ACTIONS(8935), + [aux_sym_def_type_statement_token5] = ACTIONS(8935), + [aux_sym_def_type_statement_token6] = ACTIONS(8935), + [aux_sym_def_type_statement_token7] = ACTIONS(8935), + [aux_sym_def_type_statement_token8] = ACTIONS(8935), + [aux_sym_def_type_statement_token9] = ACTIONS(8935), + [aux_sym_def_type_statement_token10] = ACTIONS(8935), + [aux_sym_def_type_statement_token11] = ACTIONS(8935), + [aux_sym_def_type_statement_token12] = ACTIONS(8935), + [aux_sym_def_type_statement_token13] = ACTIONS(8935), + [aux_sym_def_type_statement_token14] = ACTIONS(8935), + [aux_sym_call_statement_token1] = ACTIONS(8935), + [sym__ambiguous_call_statement] = ACTIONS(8935), + [aux_sym_addressof_expression_token1] = ACTIONS(8935), + [aux_sym_type_of_expression_token1] = ACTIONS(8935), + [aux_sym_unary_expression_token1] = ACTIONS(8935), + [sym_string_literal] = ACTIONS(8937), + [sym_number_literal] = ACTIONS(8937), + [aux_sym_boolean_literal_token1] = ACTIONS(8935), + [aux_sym_boolean_literal_token2] = ACTIONS(8935), + [sym_nothing_literal] = ACTIONS(8935), + [sym_null_literal] = ACTIONS(8935), + [sym_empty_literal] = ACTIONS(8935), + [sym_date_literal] = ACTIONS(8937), + [anon_sym_POUND] = ACTIONS(8935), + }, + [STATE(5846)] = { + [sym_identifier] = ACTIONS(8962), + [sym_newline] = ACTIONS(8964), + [anon_sym_COLON] = ACTIONS(8964), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8962), + [aux_sym_frm_property_statement_token1] = ACTIONS(8962), + [anon_sym_DOT] = ACTIONS(8962), + [anon_sym_BANG] = ACTIONS(8964), + [aux_sym__attribute_identifier_token1] = ACTIONS(8962), + [aux_sym_option_statement_token3] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8962), + [aux_sym_preprocessor_const_token1] = ACTIONS(8962), + [sym_static_modifier] = ACTIONS(8962), + [sym__dim_keyword] = ACTIONS(8962), + [sym__redim_keyword] = ACTIONS(8962), + [aux_sym_get_accessor_token1] = ACTIONS(8962), + [aux_sym_set_accessor_token1] = ACTIONS(8962), + [anon_sym_COMMA] = ACTIONS(8964), + [aux_sym_const_declaration_token1] = ACTIONS(8962), + [anon_sym_LPAREN] = ACTIONS(8964), + [aux_sym_as_type_clause_token2] = ACTIONS(8962), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8962), + [aux_sym_visibility_token1] = ACTIONS(8962), + [aux_sym_visibility_token2] = ACTIONS(8962), + [aux_sym_elseif_fragment_token1] = ACTIONS(8962), + [aux_sym_else_fragment_token1] = ACTIONS(8962), + [aux_sym_select_statement_token1] = ACTIONS(8962), + [aux_sym__for_header_token1] = ACTIONS(8962), + [aux_sym_do_statement_token1] = ACTIONS(8962), + [aux_sym_do_statement_token2] = ACTIONS(8962), + [aux_sym_do_condition_token1] = ACTIONS(8962), + [aux_sym_with_statement_token1] = ACTIONS(8962), + [aux_sym_exit_statement_token1] = ACTIONS(8962), + [sym_end_statement] = ACTIONS(8964), + [aux_sym_on_goto_statement_token1] = ACTIONS(8962), + [aux_sym_on_goto_statement_token2] = ACTIONS(8962), + [aux_sym_on_error_statement_token2] = ACTIONS(8962), + [sym__ambiguous_redim_statement] = ACTIONS(8964), + [aux_sym_erase_statement_token1] = ACTIONS(8962), + [aux_sym_open_statement_token1] = ACTIONS(8962), + [aux_sym_file_mode_token2] = ACTIONS(8962), + [aux_sym_file_access_token2] = ACTIONS(8962), + [aux_sym_file_lock_token2] = ACTIONS(8962), + [aux_sym_print_statement_token1] = ACTIONS(8962), + [anon_sym_PLUS] = ACTIONS(8964), + [anon_sym_DASH] = ACTIONS(8962), + [anon_sym_QMARK] = ACTIONS(8964), + [aux_sym_close_statement_token1] = ACTIONS(8962), + [aux_sym_put_statement_token1] = ACTIONS(8962), + [aux_sym_unlock_statement_token1] = ACTIONS(8962), + [aux_sym_seek_statement_token1] = ACTIONS(8962), + [sym_reset_statement] = ACTIONS(8962), + [aux_sym_raise_event_statement_token1] = ACTIONS(8962), + [sym_stop_statement] = ACTIONS(8962), + [sym_beep_statement] = ACTIONS(8962), + [aux_sym_unload_statement_token1] = ACTIONS(8962), + [aux_sym_def_type_statement_token1] = ACTIONS(8962), + [aux_sym_def_type_statement_token2] = ACTIONS(8962), + [aux_sym_def_type_statement_token3] = ACTIONS(8962), + [aux_sym_def_type_statement_token4] = ACTIONS(8962), + [aux_sym_def_type_statement_token5] = ACTIONS(8962), + [aux_sym_def_type_statement_token6] = ACTIONS(8962), + [aux_sym_def_type_statement_token7] = ACTIONS(8962), + [aux_sym_def_type_statement_token8] = ACTIONS(8962), + [aux_sym_def_type_statement_token9] = ACTIONS(8962), + [aux_sym_def_type_statement_token10] = ACTIONS(8962), + [aux_sym_def_type_statement_token11] = ACTIONS(8962), + [aux_sym_def_type_statement_token12] = ACTIONS(8962), + [aux_sym_def_type_statement_token13] = ACTIONS(8962), + [aux_sym_def_type_statement_token14] = ACTIONS(8962), + [aux_sym_call_statement_token1] = ACTIONS(8962), + [sym__ambiguous_call_statement] = ACTIONS(8962), + [aux_sym_addressof_expression_token1] = ACTIONS(8962), + [aux_sym_type_of_expression_token1] = ACTIONS(8962), + [aux_sym_unary_expression_token1] = ACTIONS(8962), + [sym_string_literal] = ACTIONS(8964), + [sym_number_literal] = ACTIONS(8964), + [aux_sym_boolean_literal_token1] = ACTIONS(8962), + [aux_sym_boolean_literal_token2] = ACTIONS(8962), + [sym_nothing_literal] = ACTIONS(8962), + [sym_null_literal] = ACTIONS(8962), + [sym_empty_literal] = ACTIONS(8962), + [sym_date_literal] = ACTIONS(8964), + [anon_sym_POUND] = ACTIONS(8962), + }, + [STATE(5847)] = { + [sym_identifier] = ACTIONS(8456), + [sym_newline] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8458), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8456), + [aux_sym_frm_property_statement_token1] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_BANG] = ACTIONS(8458), + [aux_sym__attribute_identifier_token1] = ACTIONS(8456), + [aux_sym_option_statement_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8456), + [aux_sym_preprocessor_const_token1] = ACTIONS(8456), + [sym_static_modifier] = ACTIONS(8456), + [sym__dim_keyword] = ACTIONS(8456), + [sym__redim_keyword] = ACTIONS(8456), + [aux_sym_get_accessor_token1] = ACTIONS(8456), + [aux_sym_set_accessor_token1] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(8458), + [aux_sym_const_declaration_token1] = ACTIONS(8456), + [anon_sym_LPAREN] = ACTIONS(8458), + [aux_sym_as_type_clause_token2] = ACTIONS(8456), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8456), + [aux_sym_visibility_token1] = ACTIONS(8456), + [aux_sym_visibility_token2] = ACTIONS(8456), + [aux_sym_elseif_fragment_token1] = ACTIONS(8456), + [aux_sym_else_fragment_token1] = ACTIONS(8456), + [aux_sym_select_statement_token1] = ACTIONS(8456), + [aux_sym__for_header_token1] = ACTIONS(8456), + [aux_sym_do_statement_token1] = ACTIONS(8456), + [aux_sym_do_statement_token2] = ACTIONS(8456), + [aux_sym_do_condition_token1] = ACTIONS(8456), + [aux_sym_with_statement_token1] = ACTIONS(8456), + [aux_sym_exit_statement_token1] = ACTIONS(8456), + [sym_end_statement] = ACTIONS(8458), + [aux_sym_on_goto_statement_token1] = ACTIONS(8456), + [aux_sym_on_goto_statement_token2] = ACTIONS(8456), + [aux_sym_on_error_statement_token2] = ACTIONS(8456), + [sym__ambiguous_redim_statement] = ACTIONS(8458), + [aux_sym_erase_statement_token1] = ACTIONS(8456), + [aux_sym_open_statement_token1] = ACTIONS(8456), + [aux_sym_file_mode_token2] = ACTIONS(8456), + [aux_sym_file_access_token2] = ACTIONS(8456), + [aux_sym_file_lock_token2] = ACTIONS(8456), + [aux_sym_print_statement_token1] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8458), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8458), + [aux_sym_close_statement_token1] = ACTIONS(8456), + [aux_sym_put_statement_token1] = ACTIONS(8456), + [aux_sym_unlock_statement_token1] = ACTIONS(8456), + [aux_sym_seek_statement_token1] = ACTIONS(8456), + [sym_reset_statement] = ACTIONS(8456), + [aux_sym_raise_event_statement_token1] = ACTIONS(8456), + [sym_stop_statement] = ACTIONS(8456), + [sym_beep_statement] = ACTIONS(8456), + [aux_sym_unload_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token2] = ACTIONS(8456), + [aux_sym_def_type_statement_token3] = ACTIONS(8456), + [aux_sym_def_type_statement_token4] = ACTIONS(8456), + [aux_sym_def_type_statement_token5] = ACTIONS(8456), + [aux_sym_def_type_statement_token6] = ACTIONS(8456), + [aux_sym_def_type_statement_token7] = ACTIONS(8456), + [aux_sym_def_type_statement_token8] = ACTIONS(8456), + [aux_sym_def_type_statement_token9] = ACTIONS(8456), + [aux_sym_def_type_statement_token10] = ACTIONS(8456), + [aux_sym_def_type_statement_token11] = ACTIONS(8456), + [aux_sym_def_type_statement_token12] = ACTIONS(8456), + [aux_sym_def_type_statement_token13] = ACTIONS(8456), + [aux_sym_def_type_statement_token14] = ACTIONS(8456), + [aux_sym_call_statement_token1] = ACTIONS(8456), + [sym__ambiguous_call_statement] = ACTIONS(8456), + [aux_sym_addressof_expression_token1] = ACTIONS(8456), + [aux_sym_type_of_expression_token1] = ACTIONS(8456), + [aux_sym_unary_expression_token1] = ACTIONS(8456), + [sym_string_literal] = ACTIONS(8458), + [sym_number_literal] = ACTIONS(8458), + [aux_sym_boolean_literal_token1] = ACTIONS(8456), + [aux_sym_boolean_literal_token2] = ACTIONS(8456), + [sym_nothing_literal] = ACTIONS(8456), + [sym_null_literal] = ACTIONS(8456), + [sym_empty_literal] = ACTIONS(8456), + [sym_date_literal] = ACTIONS(8458), + [anon_sym_POUND] = ACTIONS(8456), + }, + [STATE(5848)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(5848), + [sym_identifier] = ACTIONS(8702), + [sym_newline] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(10839), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8702), + [aux_sym_frm_property_statement_token1] = ACTIONS(8702), + [anon_sym_DOT] = ACTIONS(8702), + [anon_sym_BANG] = ACTIONS(8704), + [aux_sym__attribute_identifier_token1] = ACTIONS(8702), + [aux_sym_option_statement_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8702), + [aux_sym_preprocessor_const_token1] = ACTIONS(8702), + [sym_static_modifier] = ACTIONS(8702), + [sym__dim_keyword] = ACTIONS(8702), + [sym__redim_keyword] = ACTIONS(8702), + [aux_sym_get_accessor_token1] = ACTIONS(8702), + [aux_sym_set_accessor_token1] = ACTIONS(8702), + [aux_sym_const_declaration_token1] = ACTIONS(8702), + [anon_sym_LPAREN] = ACTIONS(8704), + [aux_sym_as_type_clause_token2] = ACTIONS(8702), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8702), + [aux_sym_visibility_token1] = ACTIONS(8702), + [aux_sym_visibility_token2] = ACTIONS(8702), + [aux_sym_elseif_fragment_token1] = ACTIONS(8702), + [aux_sym_else_fragment_token1] = ACTIONS(8702), + [aux_sym_select_statement_token1] = ACTIONS(8702), + [aux_sym__for_header_token1] = ACTIONS(8702), + [aux_sym_do_statement_token1] = ACTIONS(8702), + [aux_sym_do_statement_token2] = ACTIONS(8702), + [aux_sym_do_condition_token1] = ACTIONS(8702), + [aux_sym_with_statement_token1] = ACTIONS(8702), + [aux_sym_exit_statement_token1] = ACTIONS(8702), + [sym_end_statement] = ACTIONS(8704), + [aux_sym_on_goto_statement_token1] = ACTIONS(8702), + [aux_sym_on_goto_statement_token2] = ACTIONS(8702), + [aux_sym_on_error_statement_token2] = ACTIONS(8702), + [sym__ambiguous_redim_statement] = ACTIONS(8704), + [aux_sym_erase_statement_token1] = ACTIONS(8702), + [aux_sym_open_statement_token1] = ACTIONS(8702), + [aux_sym_file_mode_token2] = ACTIONS(8702), + [aux_sym_file_access_token2] = ACTIONS(8702), + [aux_sym_file_lock_token2] = ACTIONS(8702), + [aux_sym_print_statement_token1] = ACTIONS(8702), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_DASH] = ACTIONS(8702), + [anon_sym_QMARK] = ACTIONS(8704), + [aux_sym_close_statement_token1] = ACTIONS(8702), + [aux_sym_put_statement_token1] = ACTIONS(8702), + [aux_sym_unlock_statement_token1] = ACTIONS(8702), + [aux_sym_seek_statement_token1] = ACTIONS(8702), + [sym_reset_statement] = ACTIONS(8702), + [aux_sym_raise_event_statement_token1] = ACTIONS(8702), + [sym_stop_statement] = ACTIONS(8702), + [sym_beep_statement] = ACTIONS(8702), + [aux_sym_unload_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token2] = ACTIONS(8702), + [aux_sym_def_type_statement_token3] = ACTIONS(8702), + [aux_sym_def_type_statement_token4] = ACTIONS(8702), + [aux_sym_def_type_statement_token5] = ACTIONS(8702), + [aux_sym_def_type_statement_token6] = ACTIONS(8702), + [aux_sym_def_type_statement_token7] = ACTIONS(8702), + [aux_sym_def_type_statement_token8] = ACTIONS(8702), + [aux_sym_def_type_statement_token9] = ACTIONS(8702), + [aux_sym_def_type_statement_token10] = ACTIONS(8702), + [aux_sym_def_type_statement_token11] = ACTIONS(8702), + [aux_sym_def_type_statement_token12] = ACTIONS(8702), + [aux_sym_def_type_statement_token13] = ACTIONS(8702), + [aux_sym_def_type_statement_token14] = ACTIONS(8702), + [aux_sym_call_statement_token1] = ACTIONS(8702), + [sym__ambiguous_call_statement] = ACTIONS(8702), + [aux_sym_addressof_expression_token1] = ACTIONS(8702), + [aux_sym_type_of_expression_token1] = ACTIONS(8702), + [aux_sym_unary_expression_token1] = ACTIONS(8702), + [sym_string_literal] = ACTIONS(8704), + [sym_number_literal] = ACTIONS(8704), + [aux_sym_boolean_literal_token1] = ACTIONS(8702), + [aux_sym_boolean_literal_token2] = ACTIONS(8702), + [sym_nothing_literal] = ACTIONS(8702), + [sym_null_literal] = ACTIONS(8702), + [sym_empty_literal] = ACTIONS(8702), + [sym_date_literal] = ACTIONS(8704), + [anon_sym_POUND] = ACTIONS(8702), + }, + [STATE(5849)] = { + [sym_identifier] = ACTIONS(8533), + [sym_newline] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(8535), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8533), + [aux_sym_frm_property_statement_token1] = ACTIONS(8533), + [anon_sym_DOT] = ACTIONS(8533), + [anon_sym_BANG] = ACTIONS(8535), + [aux_sym__attribute_identifier_token1] = ACTIONS(8533), + [aux_sym_option_statement_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8533), + [aux_sym_preprocessor_const_token1] = ACTIONS(8533), + [sym_static_modifier] = ACTIONS(8533), + [sym__dim_keyword] = ACTIONS(8533), + [sym__redim_keyword] = ACTIONS(8533), + [aux_sym_get_accessor_token1] = ACTIONS(8533), + [aux_sym_set_accessor_token1] = ACTIONS(8533), + [anon_sym_COMMA] = ACTIONS(8535), + [aux_sym_const_declaration_token1] = ACTIONS(8533), + [anon_sym_LPAREN] = ACTIONS(8535), + [aux_sym_as_type_clause_token2] = ACTIONS(8533), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8533), + [aux_sym_visibility_token1] = ACTIONS(8533), + [aux_sym_visibility_token2] = ACTIONS(8533), + [aux_sym_elseif_fragment_token1] = ACTIONS(8533), + [aux_sym_else_fragment_token1] = ACTIONS(8533), + [aux_sym_select_statement_token1] = ACTIONS(8533), + [aux_sym__for_header_token1] = ACTIONS(8533), + [aux_sym_do_statement_token1] = ACTIONS(8533), + [aux_sym_do_condition_token1] = ACTIONS(8533), + [aux_sym_while_statement_token1] = ACTIONS(8533), + [aux_sym_with_statement_token1] = ACTIONS(8533), + [aux_sym_exit_statement_token1] = ACTIONS(8533), + [sym_end_statement] = ACTIONS(8535), + [aux_sym_on_goto_statement_token1] = ACTIONS(8533), + [aux_sym_on_goto_statement_token2] = ACTIONS(8533), + [aux_sym_on_error_statement_token2] = ACTIONS(8533), + [sym__ambiguous_redim_statement] = ACTIONS(8535), + [aux_sym_erase_statement_token1] = ACTIONS(8533), + [aux_sym_open_statement_token1] = ACTIONS(8533), + [aux_sym_file_mode_token2] = ACTIONS(8533), + [aux_sym_file_access_token2] = ACTIONS(8533), + [aux_sym_file_lock_token2] = ACTIONS(8533), + [aux_sym_print_statement_token1] = ACTIONS(8533), + [anon_sym_PLUS] = ACTIONS(8535), + [anon_sym_DASH] = ACTIONS(8533), + [anon_sym_QMARK] = ACTIONS(8535), + [aux_sym_close_statement_token1] = ACTIONS(8533), + [aux_sym_put_statement_token1] = ACTIONS(8533), + [aux_sym_unlock_statement_token1] = ACTIONS(8533), + [aux_sym_seek_statement_token1] = ACTIONS(8533), + [sym_reset_statement] = ACTIONS(8533), + [aux_sym_raise_event_statement_token1] = ACTIONS(8533), + [sym_stop_statement] = ACTIONS(8533), + [sym_beep_statement] = ACTIONS(8533), + [aux_sym_unload_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token2] = ACTIONS(8533), + [aux_sym_def_type_statement_token3] = ACTIONS(8533), + [aux_sym_def_type_statement_token4] = ACTIONS(8533), + [aux_sym_def_type_statement_token5] = ACTIONS(8533), + [aux_sym_def_type_statement_token6] = ACTIONS(8533), + [aux_sym_def_type_statement_token7] = ACTIONS(8533), + [aux_sym_def_type_statement_token8] = ACTIONS(8533), + [aux_sym_def_type_statement_token9] = ACTIONS(8533), + [aux_sym_def_type_statement_token10] = ACTIONS(8533), + [aux_sym_def_type_statement_token11] = ACTIONS(8533), + [aux_sym_def_type_statement_token12] = ACTIONS(8533), + [aux_sym_def_type_statement_token13] = ACTIONS(8533), + [aux_sym_def_type_statement_token14] = ACTIONS(8533), + [aux_sym_call_statement_token1] = ACTIONS(8533), + [sym__ambiguous_call_statement] = ACTIONS(8533), + [aux_sym_addressof_expression_token1] = ACTIONS(8533), + [aux_sym_type_of_expression_token1] = ACTIONS(8533), + [aux_sym_unary_expression_token1] = ACTIONS(8533), + [sym_string_literal] = ACTIONS(8535), + [sym_number_literal] = ACTIONS(8535), + [aux_sym_boolean_literal_token1] = ACTIONS(8533), + [aux_sym_boolean_literal_token2] = ACTIONS(8533), + [sym_nothing_literal] = ACTIONS(8533), + [sym_null_literal] = ACTIONS(8533), + [sym_empty_literal] = ACTIONS(8533), + [sym_date_literal] = ACTIONS(8535), + [anon_sym_POUND] = ACTIONS(8533), + }, + [STATE(5850)] = { + [sym_identifier] = ACTIONS(8865), + [sym_newline] = ACTIONS(8867), + [anon_sym_COLON] = ACTIONS(8867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8865), + [aux_sym_frm_property_statement_token1] = ACTIONS(8865), + [anon_sym_DOT] = ACTIONS(8865), + [anon_sym_BANG] = ACTIONS(8867), + [aux_sym__attribute_identifier_token1] = ACTIONS(8865), + [aux_sym_option_statement_token3] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8865), + [aux_sym_preprocessor_const_token1] = ACTIONS(8865), + [sym_static_modifier] = ACTIONS(8865), + [sym__dim_keyword] = ACTIONS(8865), + [sym__redim_keyword] = ACTIONS(8865), + [aux_sym_get_accessor_token1] = ACTIONS(8865), + [aux_sym_set_accessor_token1] = ACTIONS(8865), + [anon_sym_COMMA] = ACTIONS(8867), + [aux_sym_const_declaration_token1] = ACTIONS(8865), + [anon_sym_LPAREN] = ACTIONS(8867), + [aux_sym_as_type_clause_token2] = ACTIONS(8865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8865), + [aux_sym_visibility_token1] = ACTIONS(8865), + [aux_sym_visibility_token2] = ACTIONS(8865), + [aux_sym_elseif_fragment_token1] = ACTIONS(8865), + [aux_sym_else_fragment_token1] = ACTIONS(8865), + [aux_sym_select_statement_token1] = ACTIONS(8865), + [aux_sym__for_header_token1] = ACTIONS(8865), + [aux_sym_do_statement_token1] = ACTIONS(8865), + [aux_sym_do_condition_token1] = ACTIONS(8865), + [aux_sym_with_statement_token1] = ACTIONS(8865), + [aux_sym_exit_statement_token1] = ACTIONS(8865), + [sym_end_statement] = ACTIONS(8867), + [aux_sym_on_goto_statement_token1] = ACTIONS(8865), + [aux_sym_on_goto_statement_token2] = ACTIONS(8865), + [aux_sym_on_error_statement_token2] = ACTIONS(8865), + [sym__ambiguous_redim_statement] = ACTIONS(8867), + [aux_sym_erase_statement_token1] = ACTIONS(8865), + [aux_sym_open_statement_token1] = ACTIONS(8865), + [aux_sym_file_mode_token2] = ACTIONS(8865), + [aux_sym_file_access_token2] = ACTIONS(8865), + [aux_sym_file_lock_token2] = ACTIONS(8865), + [aux_sym_print_statement_token1] = ACTIONS(8865), + [anon_sym_PLUS] = ACTIONS(8867), + [anon_sym_DASH] = ACTIONS(8865), + [anon_sym_QMARK] = ACTIONS(8867), + [aux_sym_close_statement_token1] = ACTIONS(8865), + [aux_sym_put_statement_token1] = ACTIONS(8865), + [aux_sym_unlock_statement_token1] = ACTIONS(8865), + [aux_sym_seek_statement_token1] = ACTIONS(8865), + [sym_reset_statement] = ACTIONS(8865), + [aux_sym_raise_event_statement_token1] = ACTIONS(8865), + [sym_stop_statement] = ACTIONS(8865), + [sym_beep_statement] = ACTIONS(8865), + [aux_sym_unload_statement_token1] = ACTIONS(8865), + [aux_sym_def_type_statement_token1] = ACTIONS(8865), + [aux_sym_def_type_statement_token2] = ACTIONS(8865), + [aux_sym_def_type_statement_token3] = ACTIONS(8865), + [aux_sym_def_type_statement_token4] = ACTIONS(8865), + [aux_sym_def_type_statement_token5] = ACTIONS(8865), + [aux_sym_def_type_statement_token6] = ACTIONS(8865), + [aux_sym_def_type_statement_token7] = ACTIONS(8865), + [aux_sym_def_type_statement_token8] = ACTIONS(8865), + [aux_sym_def_type_statement_token9] = ACTIONS(8865), + [aux_sym_def_type_statement_token10] = ACTIONS(8865), + [aux_sym_def_type_statement_token11] = ACTIONS(8865), + [aux_sym_def_type_statement_token12] = ACTIONS(8865), + [aux_sym_def_type_statement_token13] = ACTIONS(8865), + [aux_sym_def_type_statement_token14] = ACTIONS(8865), + [aux_sym_call_statement_token1] = ACTIONS(8865), + [sym__ambiguous_call_statement] = ACTIONS(8865), + [aux_sym_addressof_expression_token1] = ACTIONS(8865), + [aux_sym_type_of_expression_token1] = ACTIONS(8865), + [aux_sym_unary_expression_token1] = ACTIONS(8865), + [sym_string_literal] = ACTIONS(8867), + [sym_number_literal] = ACTIONS(8867), + [aux_sym_boolean_literal_token1] = ACTIONS(8865), + [aux_sym_boolean_literal_token2] = ACTIONS(8865), + [sym_nothing_literal] = ACTIONS(8865), + [sym_null_literal] = ACTIONS(8865), + [sym_empty_literal] = ACTIONS(8865), + [sym_date_literal] = ACTIONS(8867), + [anon_sym_POUND] = ACTIONS(8865), + }, + [STATE(5851)] = { + [sym_identifier] = ACTIONS(6617), + [sym_newline] = ACTIONS(6619), + [anon_sym_COLON] = ACTIONS(6619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6617), + [aux_sym_frm_property_statement_token1] = ACTIONS(6617), + [anon_sym_DOT] = ACTIONS(6617), + [anon_sym_BANG] = ACTIONS(6619), + [aux_sym__attribute_identifier_token1] = ACTIONS(6617), + [aux_sym_option_statement_token3] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6617), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6617), + [aux_sym_preprocessor_const_token1] = ACTIONS(6617), + [sym_static_modifier] = ACTIONS(6617), + [sym__dim_keyword] = ACTIONS(6617), + [sym__redim_keyword] = ACTIONS(6617), + [aux_sym_get_accessor_token1] = ACTIONS(6617), + [aux_sym_set_accessor_token1] = ACTIONS(6617), + [aux_sym_const_declaration_token1] = ACTIONS(6617), + [anon_sym_LPAREN] = ACTIONS(6619), + [aux_sym_as_type_clause_token2] = ACTIONS(6617), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6617), + [aux_sym_visibility_token1] = ACTIONS(6617), + [aux_sym_visibility_token2] = ACTIONS(6617), + [aux_sym_elseif_fragment_token1] = ACTIONS(6617), + [aux_sym_else_fragment_token1] = ACTIONS(6617), + [aux_sym_select_statement_token1] = ACTIONS(6617), + [aux_sym__for_header_token1] = ACTIONS(6617), + [aux_sym_do_statement_token1] = ACTIONS(6617), + [aux_sym_do_condition_token1] = ACTIONS(6617), + [aux_sym_with_statement_token1] = ACTIONS(6617), + [aux_sym_exit_statement_token1] = ACTIONS(6617), + [sym_end_statement] = ACTIONS(6619), + [aux_sym_on_goto_statement_token1] = ACTIONS(6617), + [aux_sym_on_goto_statement_token2] = ACTIONS(6617), + [aux_sym_on_error_statement_token2] = ACTIONS(6617), + [sym__ambiguous_redim_statement] = ACTIONS(6619), + [aux_sym_erase_statement_token1] = ACTIONS(6617), + [aux_sym_open_statement_token1] = ACTIONS(6617), + [aux_sym_file_mode_token2] = ACTIONS(6617), + [aux_sym_file_access_token2] = ACTIONS(6617), + [aux_sym_file_lock_token2] = ACTIONS(6617), + [aux_sym_print_statement_token1] = ACTIONS(6617), + [anon_sym_PLUS] = ACTIONS(6619), + [anon_sym_DASH] = ACTIONS(6617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(10289), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(10291), + [anon_sym_QMARK] = ACTIONS(6619), + [aux_sym_close_statement_token1] = ACTIONS(6617), + [aux_sym_put_statement_token1] = ACTIONS(6617), + [aux_sym_unlock_statement_token1] = ACTIONS(6617), + [aux_sym_seek_statement_token1] = ACTIONS(6617), + [sym_reset_statement] = ACTIONS(6617), + [aux_sym_raise_event_statement_token1] = ACTIONS(6617), + [sym_stop_statement] = ACTIONS(6617), + [sym_beep_statement] = ACTIONS(6617), + [aux_sym_unload_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token1] = ACTIONS(6617), + [aux_sym_def_type_statement_token2] = ACTIONS(6617), + [aux_sym_def_type_statement_token3] = ACTIONS(6617), + [aux_sym_def_type_statement_token4] = ACTIONS(6617), + [aux_sym_def_type_statement_token5] = ACTIONS(6617), + [aux_sym_def_type_statement_token6] = ACTIONS(6617), + [aux_sym_def_type_statement_token7] = ACTIONS(6617), + [aux_sym_def_type_statement_token8] = ACTIONS(6617), + [aux_sym_def_type_statement_token9] = ACTIONS(6617), + [aux_sym_def_type_statement_token10] = ACTIONS(6617), + [aux_sym_def_type_statement_token11] = ACTIONS(6617), + [aux_sym_def_type_statement_token12] = ACTIONS(6617), + [aux_sym_def_type_statement_token13] = ACTIONS(6617), + [aux_sym_def_type_statement_token14] = ACTIONS(6617), + [aux_sym_call_statement_token1] = ACTIONS(6617), + [sym__ambiguous_call_statement] = ACTIONS(6617), + [aux_sym_addressof_expression_token1] = ACTIONS(6617), + [aux_sym_type_of_expression_token1] = ACTIONS(6617), + [aux_sym_unary_expression_token1] = ACTIONS(6617), + [sym_string_literal] = ACTIONS(6619), + [sym_number_literal] = ACTIONS(6619), + [aux_sym_boolean_literal_token1] = ACTIONS(6617), + [aux_sym_boolean_literal_token2] = ACTIONS(6617), + [sym_nothing_literal] = ACTIONS(6617), + [sym_null_literal] = ACTIONS(6617), + [sym_empty_literal] = ACTIONS(6617), + [sym_date_literal] = ACTIONS(6619), + [anon_sym_POUND] = ACTIONS(6617), + }, + [STATE(5852)] = { + [aux_sym_close_statement_repeat1] = STATE(5997), + [sym_identifier] = ACTIONS(8521), + [sym_newline] = ACTIONS(8523), + [anon_sym_COLON] = ACTIONS(8523), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8521), + [aux_sym_frm_property_statement_token1] = ACTIONS(8521), + [anon_sym_DOT] = ACTIONS(8521), + [anon_sym_BANG] = ACTIONS(8523), + [aux_sym__attribute_identifier_token1] = ACTIONS(8521), + [aux_sym_option_statement_token3] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8521), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8521), + [aux_sym_preprocessor_const_token1] = ACTIONS(8521), + [sym_static_modifier] = ACTIONS(8521), + [sym__dim_keyword] = ACTIONS(8521), + [sym__redim_keyword] = ACTIONS(8521), + [aux_sym_get_accessor_token1] = ACTIONS(8521), + [aux_sym_set_accessor_token1] = ACTIONS(8521), + [anon_sym_COMMA] = ACTIONS(10842), + [aux_sym_const_declaration_token1] = ACTIONS(8521), + [anon_sym_LPAREN] = ACTIONS(8523), + [aux_sym_as_type_clause_token2] = ACTIONS(8521), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8521), + [aux_sym_visibility_token1] = ACTIONS(8521), + [aux_sym_visibility_token2] = ACTIONS(8521), + [aux_sym_elseif_fragment_token1] = ACTIONS(8521), + [aux_sym_else_fragment_token1] = ACTIONS(8521), + [aux_sym_select_statement_token1] = ACTIONS(8521), + [aux_sym__for_header_token1] = ACTIONS(8521), + [aux_sym_do_statement_token1] = ACTIONS(8521), + [aux_sym_do_condition_token1] = ACTIONS(8521), + [aux_sym_with_statement_token1] = ACTIONS(8521), + [aux_sym_exit_statement_token1] = ACTIONS(8521), + [sym_end_statement] = ACTIONS(8523), + [aux_sym_on_goto_statement_token1] = ACTIONS(8521), + [aux_sym_on_goto_statement_token2] = ACTIONS(8521), + [aux_sym_on_error_statement_token2] = ACTIONS(8521), + [sym__ambiguous_redim_statement] = ACTIONS(8523), + [aux_sym_erase_statement_token1] = ACTIONS(8521), + [aux_sym_open_statement_token1] = ACTIONS(8521), + [aux_sym_file_mode_token2] = ACTIONS(8521), + [aux_sym_file_access_token2] = ACTIONS(8521), + [aux_sym_file_lock_token2] = ACTIONS(8521), + [aux_sym_print_statement_token1] = ACTIONS(8521), + [anon_sym_PLUS] = ACTIONS(8523), + [anon_sym_DASH] = ACTIONS(8521), + [anon_sym_QMARK] = ACTIONS(8523), + [aux_sym_close_statement_token1] = ACTIONS(8521), + [aux_sym_put_statement_token1] = ACTIONS(8521), + [aux_sym_unlock_statement_token1] = ACTIONS(8521), + [aux_sym_seek_statement_token1] = ACTIONS(8521), + [sym_reset_statement] = ACTIONS(8521), + [aux_sym_raise_event_statement_token1] = ACTIONS(8521), + [sym_stop_statement] = ACTIONS(8521), + [sym_beep_statement] = ACTIONS(8521), + [aux_sym_unload_statement_token1] = ACTIONS(8521), + [aux_sym_def_type_statement_token1] = ACTIONS(8521), + [aux_sym_def_type_statement_token2] = ACTIONS(8521), + [aux_sym_def_type_statement_token3] = ACTIONS(8521), + [aux_sym_def_type_statement_token4] = ACTIONS(8521), + [aux_sym_def_type_statement_token5] = ACTIONS(8521), + [aux_sym_def_type_statement_token6] = ACTIONS(8521), + [aux_sym_def_type_statement_token7] = ACTIONS(8521), + [aux_sym_def_type_statement_token8] = ACTIONS(8521), + [aux_sym_def_type_statement_token9] = ACTIONS(8521), + [aux_sym_def_type_statement_token10] = ACTIONS(8521), + [aux_sym_def_type_statement_token11] = ACTIONS(8521), + [aux_sym_def_type_statement_token12] = ACTIONS(8521), + [aux_sym_def_type_statement_token13] = ACTIONS(8521), + [aux_sym_def_type_statement_token14] = ACTIONS(8521), + [aux_sym_call_statement_token1] = ACTIONS(8521), + [sym__ambiguous_call_statement] = ACTIONS(8521), + [aux_sym_addressof_expression_token1] = ACTIONS(8521), + [aux_sym_type_of_expression_token1] = ACTIONS(8521), + [aux_sym_unary_expression_token1] = ACTIONS(8521), + [sym_string_literal] = ACTIONS(8523), + [sym_number_literal] = ACTIONS(8523), + [aux_sym_boolean_literal_token1] = ACTIONS(8521), + [aux_sym_boolean_literal_token2] = ACTIONS(8521), + [sym_nothing_literal] = ACTIONS(8521), + [sym_null_literal] = ACTIONS(8521), + [sym_empty_literal] = ACTIONS(8521), + [sym_date_literal] = ACTIONS(8523), + [anon_sym_POUND] = ACTIONS(8521), + }, + [STATE(5853)] = { + [sym_identifier] = ACTIONS(8865), + [sym_newline] = ACTIONS(8867), + [anon_sym_COLON] = ACTIONS(8867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8865), + [aux_sym_frm_property_statement_token1] = ACTIONS(8865), + [anon_sym_DOT] = ACTIONS(8865), + [anon_sym_BANG] = ACTIONS(8867), + [aux_sym__attribute_identifier_token1] = ACTIONS(8865), + [aux_sym_option_statement_token3] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8865), + [aux_sym_preprocessor_const_token1] = ACTIONS(8865), + [sym_static_modifier] = ACTIONS(8865), + [sym__dim_keyword] = ACTIONS(8865), + [sym__redim_keyword] = ACTIONS(8865), + [aux_sym_get_accessor_token1] = ACTIONS(8865), + [aux_sym_set_accessor_token1] = ACTIONS(8865), + [anon_sym_COMMA] = ACTIONS(8867), + [aux_sym_const_declaration_token1] = ACTIONS(8865), + [anon_sym_LPAREN] = ACTIONS(8867), + [aux_sym_as_type_clause_token2] = ACTIONS(8865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8865), + [aux_sym_visibility_token1] = ACTIONS(8865), + [aux_sym_visibility_token2] = ACTIONS(8865), + [aux_sym_elseif_fragment_token1] = ACTIONS(8865), + [aux_sym_else_fragment_token1] = ACTIONS(8865), + [aux_sym_select_statement_token1] = ACTIONS(8865), + [aux_sym__for_header_token1] = ACTIONS(8865), + [aux_sym_do_statement_token1] = ACTIONS(8865), + [aux_sym_do_condition_token1] = ACTIONS(8865), + [aux_sym_while_statement_token1] = ACTIONS(8865), + [aux_sym_with_statement_token1] = ACTIONS(8865), + [aux_sym_exit_statement_token1] = ACTIONS(8865), + [sym_end_statement] = ACTIONS(8867), + [aux_sym_on_goto_statement_token1] = ACTIONS(8865), + [aux_sym_on_goto_statement_token2] = ACTIONS(8865), + [aux_sym_on_error_statement_token2] = ACTIONS(8865), + [sym__ambiguous_redim_statement] = ACTIONS(8867), + [aux_sym_erase_statement_token1] = ACTIONS(8865), + [aux_sym_open_statement_token1] = ACTIONS(8865), + [aux_sym_file_mode_token2] = ACTIONS(8865), + [aux_sym_file_access_token2] = ACTIONS(8865), + [aux_sym_file_lock_token2] = ACTIONS(8865), + [aux_sym_print_statement_token1] = ACTIONS(8865), + [anon_sym_PLUS] = ACTIONS(8867), + [anon_sym_DASH] = ACTIONS(8865), + [anon_sym_QMARK] = ACTIONS(8867), + [aux_sym_close_statement_token1] = ACTIONS(8865), + [aux_sym_put_statement_token1] = ACTIONS(8865), + [aux_sym_unlock_statement_token1] = ACTIONS(8865), + [aux_sym_seek_statement_token1] = ACTIONS(8865), + [sym_reset_statement] = ACTIONS(8865), + [aux_sym_raise_event_statement_token1] = ACTIONS(8865), + [sym_stop_statement] = ACTIONS(8865), + [sym_beep_statement] = ACTIONS(8865), + [aux_sym_unload_statement_token1] = ACTIONS(8865), + [aux_sym_def_type_statement_token1] = ACTIONS(8865), + [aux_sym_def_type_statement_token2] = ACTIONS(8865), + [aux_sym_def_type_statement_token3] = ACTIONS(8865), + [aux_sym_def_type_statement_token4] = ACTIONS(8865), + [aux_sym_def_type_statement_token5] = ACTIONS(8865), + [aux_sym_def_type_statement_token6] = ACTIONS(8865), + [aux_sym_def_type_statement_token7] = ACTIONS(8865), + [aux_sym_def_type_statement_token8] = ACTIONS(8865), + [aux_sym_def_type_statement_token9] = ACTIONS(8865), + [aux_sym_def_type_statement_token10] = ACTIONS(8865), + [aux_sym_def_type_statement_token11] = ACTIONS(8865), + [aux_sym_def_type_statement_token12] = ACTIONS(8865), + [aux_sym_def_type_statement_token13] = ACTIONS(8865), + [aux_sym_def_type_statement_token14] = ACTIONS(8865), + [aux_sym_call_statement_token1] = ACTIONS(8865), + [sym__ambiguous_call_statement] = ACTIONS(8865), + [aux_sym_addressof_expression_token1] = ACTIONS(8865), + [aux_sym_type_of_expression_token1] = ACTIONS(8865), + [aux_sym_unary_expression_token1] = ACTIONS(8865), + [sym_string_literal] = ACTIONS(8867), + [sym_number_literal] = ACTIONS(8867), + [aux_sym_boolean_literal_token1] = ACTIONS(8865), + [aux_sym_boolean_literal_token2] = ACTIONS(8865), + [sym_nothing_literal] = ACTIONS(8865), + [sym_null_literal] = ACTIONS(8865), + [sym_empty_literal] = ACTIONS(8865), + [sym_date_literal] = ACTIONS(8867), + [anon_sym_POUND] = ACTIONS(8865), + }, + [STATE(5854)] = { + [aux_sym__argument_sequence_repeat2] = STATE(6051), + [sym_identifier] = ACTIONS(8495), + [sym_newline] = ACTIONS(8497), + [anon_sym_COLON] = ACTIONS(8497), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8495), + [aux_sym_frm_property_statement_token1] = ACTIONS(8495), + [anon_sym_DOT] = ACTIONS(8495), + [anon_sym_BANG] = ACTIONS(8497), + [aux_sym__attribute_identifier_token1] = ACTIONS(8495), + [aux_sym_option_statement_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8495), + [aux_sym_preprocessor_const_token1] = ACTIONS(8495), + [sym_static_modifier] = ACTIONS(8495), + [sym__dim_keyword] = ACTIONS(8495), + [sym__redim_keyword] = ACTIONS(8495), + [aux_sym_get_accessor_token1] = ACTIONS(8495), + [aux_sym_set_accessor_token1] = ACTIONS(8495), + [anon_sym_COMMA] = ACTIONS(5314), + [aux_sym_const_declaration_token1] = ACTIONS(8495), + [anon_sym_LPAREN] = ACTIONS(8497), + [aux_sym_as_type_clause_token2] = ACTIONS(8495), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8495), + [aux_sym_visibility_token1] = ACTIONS(8495), + [aux_sym_visibility_token2] = ACTIONS(8495), + [aux_sym_elseif_fragment_token1] = ACTIONS(8495), + [aux_sym_else_fragment_token1] = ACTIONS(8495), + [aux_sym_select_statement_token1] = ACTIONS(8495), + [aux_sym__for_header_token1] = ACTIONS(8495), + [aux_sym_do_statement_token1] = ACTIONS(8495), + [aux_sym_do_condition_token1] = ACTIONS(8495), + [aux_sym_with_statement_token1] = ACTIONS(8495), + [aux_sym_exit_statement_token1] = ACTIONS(8495), + [sym_end_statement] = ACTIONS(8497), + [aux_sym_on_goto_statement_token1] = ACTIONS(8495), + [aux_sym_on_goto_statement_token2] = ACTIONS(8495), + [aux_sym_on_error_statement_token2] = ACTIONS(8495), + [sym__ambiguous_redim_statement] = ACTIONS(8497), + [aux_sym_erase_statement_token1] = ACTIONS(8495), + [aux_sym_open_statement_token1] = ACTIONS(8495), + [aux_sym_file_mode_token2] = ACTIONS(8495), + [aux_sym_file_access_token2] = ACTIONS(8495), + [aux_sym_file_lock_token2] = ACTIONS(8495), + [aux_sym_print_statement_token1] = ACTIONS(8495), + [anon_sym_PLUS] = ACTIONS(8497), + [anon_sym_DASH] = ACTIONS(8495), + [anon_sym_QMARK] = ACTIONS(8497), + [aux_sym_close_statement_token1] = ACTIONS(8495), + [aux_sym_put_statement_token1] = ACTIONS(8495), + [aux_sym_unlock_statement_token1] = ACTIONS(8495), + [aux_sym_seek_statement_token1] = ACTIONS(8495), + [sym_reset_statement] = ACTIONS(8495), + [aux_sym_raise_event_statement_token1] = ACTIONS(8495), + [sym_stop_statement] = ACTIONS(8495), + [sym_beep_statement] = ACTIONS(8495), + [aux_sym_unload_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token2] = ACTIONS(8495), + [aux_sym_def_type_statement_token3] = ACTIONS(8495), + [aux_sym_def_type_statement_token4] = ACTIONS(8495), + [aux_sym_def_type_statement_token5] = ACTIONS(8495), + [aux_sym_def_type_statement_token6] = ACTIONS(8495), + [aux_sym_def_type_statement_token7] = ACTIONS(8495), + [aux_sym_def_type_statement_token8] = ACTIONS(8495), + [aux_sym_def_type_statement_token9] = ACTIONS(8495), + [aux_sym_def_type_statement_token10] = ACTIONS(8495), + [aux_sym_def_type_statement_token11] = ACTIONS(8495), + [aux_sym_def_type_statement_token12] = ACTIONS(8495), + [aux_sym_def_type_statement_token13] = ACTIONS(8495), + [aux_sym_def_type_statement_token14] = ACTIONS(8495), + [aux_sym_call_statement_token1] = ACTIONS(8495), + [sym__ambiguous_call_statement] = ACTIONS(8495), + [aux_sym_addressof_expression_token1] = ACTIONS(8495), + [aux_sym_type_of_expression_token1] = ACTIONS(8495), + [aux_sym_unary_expression_token1] = ACTIONS(8495), + [sym_string_literal] = ACTIONS(8497), + [sym_number_literal] = ACTIONS(8497), + [aux_sym_boolean_literal_token1] = ACTIONS(8495), + [aux_sym_boolean_literal_token2] = ACTIONS(8495), + [sym_nothing_literal] = ACTIONS(8495), + [sym_null_literal] = ACTIONS(8495), + [sym_empty_literal] = ACTIONS(8495), + [sym_date_literal] = ACTIONS(8497), + [anon_sym_POUND] = ACTIONS(8495), + }, + [STATE(5855)] = { + [sym_identifier] = ACTIONS(8109), + [sym_newline] = ACTIONS(8111), + [anon_sym_COLON] = ACTIONS(8111), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8109), + [aux_sym_frm_property_statement_token1] = ACTIONS(8109), + [anon_sym_DOT] = ACTIONS(8109), + [anon_sym_BANG] = ACTIONS(8111), + [aux_sym__attribute_identifier_token1] = ACTIONS(8109), + [aux_sym_option_statement_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8109), + [aux_sym_preprocessor_const_token1] = ACTIONS(8109), + [sym_static_modifier] = ACTIONS(8109), + [sym__dim_keyword] = ACTIONS(8109), + [sym__redim_keyword] = ACTIONS(8109), + [aux_sym_get_accessor_token1] = ACTIONS(8109), + [aux_sym_set_accessor_token1] = ACTIONS(8109), + [aux_sym_const_declaration_token1] = ACTIONS(8109), + [anon_sym_LPAREN] = ACTIONS(8111), + [aux_sym_as_type_clause_token2] = ACTIONS(8109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8109), + [aux_sym_visibility_token1] = ACTIONS(8109), + [aux_sym_visibility_token2] = ACTIONS(8109), + [aux_sym_elseif_fragment_token1] = ACTIONS(8109), + [aux_sym_else_fragment_token1] = ACTIONS(8109), + [aux_sym_select_statement_token1] = ACTIONS(8109), + [aux_sym__for_header_token1] = ACTIONS(8109), + [aux_sym_do_statement_token1] = ACTIONS(8109), + [aux_sym_do_condition_token1] = ACTIONS(8109), + [aux_sym_while_statement_token1] = ACTIONS(8109), + [aux_sym_with_statement_token1] = ACTIONS(8109), + [aux_sym_exit_statement_token1] = ACTIONS(8109), + [sym_end_statement] = ACTIONS(8111), + [aux_sym_on_goto_statement_token1] = ACTIONS(8109), + [aux_sym_on_goto_statement_token2] = ACTIONS(8109), + [aux_sym_on_error_statement_token2] = ACTIONS(8109), + [sym__ambiguous_redim_statement] = ACTIONS(8111), + [aux_sym_erase_statement_token1] = ACTIONS(8109), + [aux_sym_open_statement_token1] = ACTIONS(8109), + [aux_sym_file_mode_token2] = ACTIONS(8109), + [aux_sym_file_access_token2] = ACTIONS(8109), + [aux_sym_file_lock_token2] = ACTIONS(8109), + [aux_sym_print_statement_token1] = ACTIONS(8109), + [anon_sym_PLUS] = ACTIONS(8111), + [anon_sym_DASH] = ACTIONS(8109), + [anon_sym_SEMI] = ACTIONS(8111), + [anon_sym_QMARK] = ACTIONS(8111), + [aux_sym_close_statement_token1] = ACTIONS(8109), + [aux_sym_put_statement_token1] = ACTIONS(8109), + [aux_sym_unlock_statement_token1] = ACTIONS(8109), + [aux_sym_seek_statement_token1] = ACTIONS(8109), + [sym_reset_statement] = ACTIONS(8109), + [aux_sym_raise_event_statement_token1] = ACTIONS(8109), + [sym_stop_statement] = ACTIONS(8109), + [sym_beep_statement] = ACTIONS(8109), + [aux_sym_unload_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token2] = ACTIONS(8109), + [aux_sym_def_type_statement_token3] = ACTIONS(8109), + [aux_sym_def_type_statement_token4] = ACTIONS(8109), + [aux_sym_def_type_statement_token5] = ACTIONS(8109), + [aux_sym_def_type_statement_token6] = ACTIONS(8109), + [aux_sym_def_type_statement_token7] = ACTIONS(8109), + [aux_sym_def_type_statement_token8] = ACTIONS(8109), + [aux_sym_def_type_statement_token9] = ACTIONS(8109), + [aux_sym_def_type_statement_token10] = ACTIONS(8109), + [aux_sym_def_type_statement_token11] = ACTIONS(8109), + [aux_sym_def_type_statement_token12] = ACTIONS(8109), + [aux_sym_def_type_statement_token13] = ACTIONS(8109), + [aux_sym_def_type_statement_token14] = ACTIONS(8109), + [aux_sym_call_statement_token1] = ACTIONS(8109), + [sym__ambiguous_call_statement] = ACTIONS(8109), + [aux_sym_addressof_expression_token1] = ACTIONS(8109), + [aux_sym_type_of_expression_token1] = ACTIONS(8109), + [aux_sym_unary_expression_token1] = ACTIONS(8109), + [sym_string_literal] = ACTIONS(8111), + [sym_number_literal] = ACTIONS(8111), + [aux_sym_boolean_literal_token1] = ACTIONS(8109), + [aux_sym_boolean_literal_token2] = ACTIONS(8109), + [sym_nothing_literal] = ACTIONS(8109), + [sym_null_literal] = ACTIONS(8109), + [sym_empty_literal] = ACTIONS(8109), + [sym_date_literal] = ACTIONS(8111), + [anon_sym_POUND] = ACTIONS(8109), + }, + [STATE(5856)] = { + [aux_sym_variable_declaration_repeat1] = STATE(6111), + [sym_identifier] = ACTIONS(8308), + [sym_newline] = ACTIONS(8310), + [anon_sym_COLON] = ACTIONS(8310), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8308), + [aux_sym_frm_property_statement_token1] = ACTIONS(8308), + [anon_sym_DOT] = ACTIONS(8308), + [anon_sym_BANG] = ACTIONS(8310), + [aux_sym__attribute_identifier_token1] = ACTIONS(8308), + [aux_sym_option_statement_token3] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8308), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8308), + [aux_sym_preprocessor_const_token1] = ACTIONS(8308), + [sym_static_modifier] = ACTIONS(8308), + [sym__dim_keyword] = ACTIONS(8308), + [sym__redim_keyword] = ACTIONS(8308), + [aux_sym_get_accessor_token1] = ACTIONS(8308), + [aux_sym_set_accessor_token1] = ACTIONS(8308), + [anon_sym_COMMA] = ACTIONS(10844), + [aux_sym_const_declaration_token1] = ACTIONS(8308), + [anon_sym_LPAREN] = ACTIONS(8310), + [aux_sym_as_type_clause_token2] = ACTIONS(8308), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8308), + [aux_sym_visibility_token1] = ACTIONS(8308), + [aux_sym_visibility_token2] = ACTIONS(8308), + [aux_sym_elseif_fragment_token1] = ACTIONS(8308), + [aux_sym_else_fragment_token1] = ACTIONS(8308), + [aux_sym_select_statement_token1] = ACTIONS(8308), + [aux_sym__for_header_token1] = ACTIONS(8308), + [aux_sym_do_statement_token1] = ACTIONS(8308), + [aux_sym_do_condition_token1] = ACTIONS(8308), + [aux_sym_with_statement_token1] = ACTIONS(8308), + [aux_sym_exit_statement_token1] = ACTIONS(8308), + [sym_end_statement] = ACTIONS(8310), + [aux_sym_on_goto_statement_token1] = ACTIONS(8308), + [aux_sym_on_goto_statement_token2] = ACTIONS(8308), + [aux_sym_on_error_statement_token2] = ACTIONS(8308), + [sym__ambiguous_redim_statement] = ACTIONS(8310), + [aux_sym_erase_statement_token1] = ACTIONS(8308), + [aux_sym_open_statement_token1] = ACTIONS(8308), + [aux_sym_file_mode_token2] = ACTIONS(8308), + [aux_sym_file_access_token2] = ACTIONS(8308), + [aux_sym_file_lock_token2] = ACTIONS(8308), + [aux_sym_print_statement_token1] = ACTIONS(8308), + [anon_sym_PLUS] = ACTIONS(8310), + [anon_sym_DASH] = ACTIONS(8308), + [anon_sym_QMARK] = ACTIONS(8310), + [aux_sym_close_statement_token1] = ACTIONS(8308), + [aux_sym_put_statement_token1] = ACTIONS(8308), + [aux_sym_unlock_statement_token1] = ACTIONS(8308), + [aux_sym_seek_statement_token1] = ACTIONS(8308), + [sym_reset_statement] = ACTIONS(8308), + [aux_sym_raise_event_statement_token1] = ACTIONS(8308), + [sym_stop_statement] = ACTIONS(8308), + [sym_beep_statement] = ACTIONS(8308), + [aux_sym_unload_statement_token1] = ACTIONS(8308), + [aux_sym_def_type_statement_token1] = ACTIONS(8308), + [aux_sym_def_type_statement_token2] = ACTIONS(8308), + [aux_sym_def_type_statement_token3] = ACTIONS(8308), + [aux_sym_def_type_statement_token4] = ACTIONS(8308), + [aux_sym_def_type_statement_token5] = ACTIONS(8308), + [aux_sym_def_type_statement_token6] = ACTIONS(8308), + [aux_sym_def_type_statement_token7] = ACTIONS(8308), + [aux_sym_def_type_statement_token8] = ACTIONS(8308), + [aux_sym_def_type_statement_token9] = ACTIONS(8308), + [aux_sym_def_type_statement_token10] = ACTIONS(8308), + [aux_sym_def_type_statement_token11] = ACTIONS(8308), + [aux_sym_def_type_statement_token12] = ACTIONS(8308), + [aux_sym_def_type_statement_token13] = ACTIONS(8308), + [aux_sym_def_type_statement_token14] = ACTIONS(8308), + [aux_sym_call_statement_token1] = ACTIONS(8308), + [sym__ambiguous_call_statement] = ACTIONS(8308), + [aux_sym_addressof_expression_token1] = ACTIONS(8308), + [aux_sym_type_of_expression_token1] = ACTIONS(8308), + [aux_sym_unary_expression_token1] = ACTIONS(8308), + [sym_string_literal] = ACTIONS(8310), + [sym_number_literal] = ACTIONS(8310), + [aux_sym_boolean_literal_token1] = ACTIONS(8308), + [aux_sym_boolean_literal_token2] = ACTIONS(8308), + [sym_nothing_literal] = ACTIONS(8308), + [sym_null_literal] = ACTIONS(8308), + [sym_empty_literal] = ACTIONS(8308), + [sym_date_literal] = ACTIONS(8310), + [anon_sym_POUND] = ACTIONS(8308), + }, + [STATE(5857)] = { + [sym_identifier] = ACTIONS(8022), + [sym_newline] = ACTIONS(8024), + [anon_sym_COLON] = ACTIONS(8024), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8022), + [aux_sym_frm_property_statement_token1] = ACTIONS(8022), + [anon_sym_EQ] = ACTIONS(8024), + [anon_sym_DOT] = ACTIONS(8022), + [anon_sym_BANG] = ACTIONS(8024), + [aux_sym__attribute_identifier_token1] = ACTIONS(8022), + [aux_sym_option_statement_token3] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8022), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8022), + [aux_sym_preprocessor_const_token1] = ACTIONS(8022), + [sym_static_modifier] = ACTIONS(8022), + [sym__dim_keyword] = ACTIONS(8022), + [sym__redim_keyword] = ACTIONS(8022), + [aux_sym_get_accessor_token1] = ACTIONS(8022), + [aux_sym_set_accessor_token1] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8024), + [aux_sym_const_declaration_token1] = ACTIONS(8022), + [anon_sym_LPAREN] = ACTIONS(8024), + [aux_sym_as_type_clause_token2] = ACTIONS(8022), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8022), + [aux_sym_visibility_token1] = ACTIONS(8022), + [aux_sym_visibility_token2] = ACTIONS(8022), + [aux_sym_elseif_fragment_token1] = ACTIONS(8022), + [aux_sym_else_fragment_token1] = ACTIONS(8022), + [aux_sym_select_statement_token1] = ACTIONS(8022), + [aux_sym__for_header_token1] = ACTIONS(8022), + [aux_sym_do_statement_token1] = ACTIONS(8022), + [aux_sym_do_condition_token1] = ACTIONS(8022), + [aux_sym_with_statement_token1] = ACTIONS(8022), + [aux_sym_exit_statement_token1] = ACTIONS(8022), + [sym_end_statement] = ACTIONS(8024), + [aux_sym_on_goto_statement_token1] = ACTIONS(8022), + [aux_sym_on_goto_statement_token2] = ACTIONS(8022), + [aux_sym_on_error_statement_token2] = ACTIONS(8022), + [sym__ambiguous_redim_statement] = ACTIONS(8024), + [aux_sym_erase_statement_token1] = ACTIONS(8022), + [aux_sym_open_statement_token1] = ACTIONS(8022), + [aux_sym_file_mode_token2] = ACTIONS(8022), + [aux_sym_file_access_token2] = ACTIONS(8022), + [aux_sym_file_lock_token2] = ACTIONS(8022), + [aux_sym_print_statement_token1] = ACTIONS(8022), + [anon_sym_PLUS] = ACTIONS(8024), + [anon_sym_DASH] = ACTIONS(8022), + [anon_sym_QMARK] = ACTIONS(8024), + [aux_sym_close_statement_token1] = ACTIONS(8022), + [aux_sym_put_statement_token1] = ACTIONS(8022), + [aux_sym_unlock_statement_token1] = ACTIONS(8022), + [aux_sym_seek_statement_token1] = ACTIONS(8022), + [sym_reset_statement] = ACTIONS(8022), + [aux_sym_raise_event_statement_token1] = ACTIONS(8022), + [sym_stop_statement] = ACTIONS(8022), + [sym_beep_statement] = ACTIONS(8022), + [aux_sym_unload_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token1] = ACTIONS(8022), + [aux_sym_def_type_statement_token2] = ACTIONS(8022), + [aux_sym_def_type_statement_token3] = ACTIONS(8022), + [aux_sym_def_type_statement_token4] = ACTIONS(8022), + [aux_sym_def_type_statement_token5] = ACTIONS(8022), + [aux_sym_def_type_statement_token6] = ACTIONS(8022), + [aux_sym_def_type_statement_token7] = ACTIONS(8022), + [aux_sym_def_type_statement_token8] = ACTIONS(8022), + [aux_sym_def_type_statement_token9] = ACTIONS(8022), + [aux_sym_def_type_statement_token10] = ACTIONS(8022), + [aux_sym_def_type_statement_token11] = ACTIONS(8022), + [aux_sym_def_type_statement_token12] = ACTIONS(8022), + [aux_sym_def_type_statement_token13] = ACTIONS(8022), + [aux_sym_def_type_statement_token14] = ACTIONS(8022), + [aux_sym_call_statement_token1] = ACTIONS(8022), + [sym__ambiguous_call_statement] = ACTIONS(8022), + [aux_sym_addressof_expression_token1] = ACTIONS(8022), + [aux_sym_type_of_expression_token1] = ACTIONS(8022), + [aux_sym_unary_expression_token1] = ACTIONS(8022), + [sym_string_literal] = ACTIONS(8024), + [sym_number_literal] = ACTIONS(8024), + [aux_sym_boolean_literal_token1] = ACTIONS(8022), + [aux_sym_boolean_literal_token2] = ACTIONS(8022), + [sym_nothing_literal] = ACTIONS(8022), + [sym_null_literal] = ACTIONS(8022), + [sym_empty_literal] = ACTIONS(8022), + [sym_date_literal] = ACTIONS(8024), + [anon_sym_POUND] = ACTIONS(8022), + }, + [STATE(5858)] = { + [sym_identifier] = ACTIONS(8350), + [sym_newline] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8350), + [aux_sym_frm_property_statement_token1] = ACTIONS(8350), + [anon_sym_DOT] = ACTIONS(8350), + [anon_sym_BANG] = ACTIONS(8352), + [aux_sym__attribute_identifier_token1] = ACTIONS(8350), + [aux_sym_option_statement_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8350), + [aux_sym_preprocessor_const_token1] = ACTIONS(8350), + [sym_static_modifier] = ACTIONS(8350), + [sym__dim_keyword] = ACTIONS(8350), + [sym__redim_keyword] = ACTIONS(8350), + [aux_sym_get_accessor_token1] = ACTIONS(8350), + [aux_sym_set_accessor_token1] = ACTIONS(8350), + [anon_sym_COMMA] = ACTIONS(8352), + [aux_sym_const_declaration_token1] = ACTIONS(8350), + [anon_sym_LPAREN] = ACTIONS(8352), + [aux_sym_as_type_clause_token2] = ACTIONS(8350), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8350), + [aux_sym_visibility_token1] = ACTIONS(8350), + [aux_sym_visibility_token2] = ACTIONS(8350), + [aux_sym_elseif_fragment_token1] = ACTIONS(8350), + [aux_sym_else_fragment_token1] = ACTIONS(8350), + [aux_sym_select_statement_token1] = ACTIONS(8350), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8350), + [aux_sym__for_header_token1] = ACTIONS(8350), + [aux_sym_do_statement_token1] = ACTIONS(8350), + [aux_sym_do_condition_token1] = ACTIONS(8350), + [aux_sym_with_statement_token1] = ACTIONS(8350), + [aux_sym_exit_statement_token1] = ACTIONS(8350), + [sym_end_statement] = ACTIONS(8352), + [aux_sym_on_goto_statement_token1] = ACTIONS(8350), + [aux_sym_on_goto_statement_token2] = ACTIONS(8350), + [aux_sym_on_error_statement_token2] = ACTIONS(8350), + [sym__ambiguous_redim_statement] = ACTIONS(8352), + [aux_sym_erase_statement_token1] = ACTIONS(8350), + [aux_sym_open_statement_token1] = ACTIONS(8350), + [aux_sym_file_mode_token2] = ACTIONS(8350), + [aux_sym_file_access_token2] = ACTIONS(8350), + [aux_sym_file_lock_token2] = ACTIONS(8350), + [aux_sym_print_statement_token1] = ACTIONS(8350), + [anon_sym_PLUS] = ACTIONS(8352), + [anon_sym_DASH] = ACTIONS(8350), + [anon_sym_QMARK] = ACTIONS(8352), + [aux_sym_close_statement_token1] = ACTIONS(8350), + [aux_sym_put_statement_token1] = ACTIONS(8350), + [aux_sym_unlock_statement_token1] = ACTIONS(8350), + [aux_sym_seek_statement_token1] = ACTIONS(8350), + [sym_reset_statement] = ACTIONS(8350), + [aux_sym_raise_event_statement_token1] = ACTIONS(8350), + [sym_stop_statement] = ACTIONS(8350), + [sym_beep_statement] = ACTIONS(8350), + [aux_sym_unload_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token2] = ACTIONS(8350), + [aux_sym_def_type_statement_token3] = ACTIONS(8350), + [aux_sym_def_type_statement_token4] = ACTIONS(8350), + [aux_sym_def_type_statement_token5] = ACTIONS(8350), + [aux_sym_def_type_statement_token6] = ACTIONS(8350), + [aux_sym_def_type_statement_token7] = ACTIONS(8350), + [aux_sym_def_type_statement_token8] = ACTIONS(8350), + [aux_sym_def_type_statement_token9] = ACTIONS(8350), + [aux_sym_def_type_statement_token10] = ACTIONS(8350), + [aux_sym_def_type_statement_token11] = ACTIONS(8350), + [aux_sym_def_type_statement_token12] = ACTIONS(8350), + [aux_sym_def_type_statement_token13] = ACTIONS(8350), + [aux_sym_def_type_statement_token14] = ACTIONS(8350), + [aux_sym_call_statement_token1] = ACTIONS(8350), + [sym__ambiguous_call_statement] = ACTIONS(8350), + [aux_sym_addressof_expression_token1] = ACTIONS(8350), + [aux_sym_type_of_expression_token1] = ACTIONS(8350), + [aux_sym_unary_expression_token1] = ACTIONS(8350), + [sym_string_literal] = ACTIONS(8352), + [sym_number_literal] = ACTIONS(8352), + [aux_sym_boolean_literal_token1] = ACTIONS(8350), + [aux_sym_boolean_literal_token2] = ACTIONS(8350), + [sym_nothing_literal] = ACTIONS(8350), + [sym_null_literal] = ACTIONS(8350), + [sym_empty_literal] = ACTIONS(8350), + [sym_date_literal] = ACTIONS(8352), + [anon_sym_POUND] = ACTIONS(8350), + }, + [STATE(5859)] = { + [sym_identifier] = ACTIONS(8713), + [sym_newline] = ACTIONS(8715), + [anon_sym_COLON] = ACTIONS(8715), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8713), + [aux_sym_frm_property_statement_token1] = ACTIONS(8713), + [anon_sym_DOT] = ACTIONS(8713), + [anon_sym_BANG] = ACTIONS(8715), + [aux_sym__attribute_identifier_token1] = ACTIONS(8713), + [aux_sym_option_statement_token3] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8713), + [aux_sym_preprocessor_const_token1] = ACTIONS(8713), + [sym_static_modifier] = ACTIONS(8713), + [sym__dim_keyword] = ACTIONS(8713), + [sym__redim_keyword] = ACTIONS(8713), + [aux_sym_get_accessor_token1] = ACTIONS(8713), + [aux_sym_set_accessor_token1] = ACTIONS(8713), + [anon_sym_COMMA] = ACTIONS(8715), + [aux_sym_const_declaration_token1] = ACTIONS(8713), + [anon_sym_LPAREN] = ACTIONS(8715), + [aux_sym_as_type_clause_token2] = ACTIONS(8713), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8713), + [aux_sym_visibility_token1] = ACTIONS(8713), + [aux_sym_visibility_token2] = ACTIONS(8713), + [aux_sym_elseif_fragment_token1] = ACTIONS(8713), + [aux_sym_else_fragment_token1] = ACTIONS(8713), + [aux_sym_select_statement_token1] = ACTIONS(8713), + [aux_sym__for_header_token1] = ACTIONS(8713), + [aux_sym_do_statement_token1] = ACTIONS(8713), + [aux_sym_do_condition_token1] = ACTIONS(8713), + [aux_sym_with_statement_token1] = ACTIONS(8713), + [aux_sym_exit_statement_token1] = ACTIONS(8713), + [sym_end_statement] = ACTIONS(8715), + [aux_sym_on_goto_statement_token1] = ACTIONS(8713), + [aux_sym_on_goto_statement_token2] = ACTIONS(8713), + [aux_sym_on_error_statement_token2] = ACTIONS(8713), + [sym__ambiguous_redim_statement] = ACTIONS(8715), + [aux_sym_erase_statement_token1] = ACTIONS(8713), + [aux_sym_open_statement_token1] = ACTIONS(8713), + [aux_sym_file_mode_token2] = ACTIONS(8713), + [aux_sym_file_access_token2] = ACTIONS(8713), + [aux_sym_file_lock_token2] = ACTIONS(8713), + [aux_sym_print_statement_token1] = ACTIONS(8713), + [anon_sym_PLUS] = ACTIONS(8715), + [anon_sym_DASH] = ACTIONS(8713), + [anon_sym_QMARK] = ACTIONS(8715), + [aux_sym_close_statement_token1] = ACTIONS(8713), + [aux_sym_put_statement_token1] = ACTIONS(8713), + [aux_sym_unlock_statement_token1] = ACTIONS(8713), + [aux_sym_seek_statement_token1] = ACTIONS(8713), + [sym_reset_statement] = ACTIONS(8713), + [aux_sym_raise_event_statement_token1] = ACTIONS(8713), + [sym_stop_statement] = ACTIONS(8713), + [sym_beep_statement] = ACTIONS(8713), + [aux_sym_unload_statement_token1] = ACTIONS(8713), + [aux_sym_def_type_statement_token1] = ACTIONS(8713), + [aux_sym_def_type_statement_token2] = ACTIONS(8713), + [aux_sym_def_type_statement_token3] = ACTIONS(8713), + [aux_sym_def_type_statement_token4] = ACTIONS(8713), + [aux_sym_def_type_statement_token5] = ACTIONS(8713), + [aux_sym_def_type_statement_token6] = ACTIONS(8713), + [aux_sym_def_type_statement_token7] = ACTIONS(8713), + [aux_sym_def_type_statement_token8] = ACTIONS(8713), + [aux_sym_def_type_statement_token9] = ACTIONS(8713), + [aux_sym_def_type_statement_token10] = ACTIONS(8713), + [aux_sym_def_type_statement_token11] = ACTIONS(8713), + [aux_sym_def_type_statement_token12] = ACTIONS(8713), + [aux_sym_def_type_statement_token13] = ACTIONS(8713), + [aux_sym_def_type_statement_token14] = ACTIONS(8713), + [aux_sym_call_statement_token1] = ACTIONS(8713), + [sym__ambiguous_call_statement] = ACTIONS(8713), + [aux_sym_addressof_expression_token1] = ACTIONS(8713), + [aux_sym_type_of_expression_token1] = ACTIONS(8713), + [aux_sym_unary_expression_token1] = ACTIONS(8713), + [sym_string_literal] = ACTIONS(8715), + [sym_number_literal] = ACTIONS(8715), + [aux_sym_boolean_literal_token1] = ACTIONS(8713), + [aux_sym_boolean_literal_token2] = ACTIONS(8713), + [sym_nothing_literal] = ACTIONS(8713), + [sym_null_literal] = ACTIONS(8713), + [sym_empty_literal] = ACTIONS(8713), + [sym_date_literal] = ACTIONS(8715), + [anon_sym_POUND] = ACTIONS(8713), + }, + [STATE(5860)] = { + [aux_sym_redim_statement_repeat1] = STATE(5913), + [sym_identifier] = ACTIONS(8340), + [sym_newline] = ACTIONS(8342), + [anon_sym_COLON] = ACTIONS(8342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8340), + [aux_sym_frm_property_statement_token1] = ACTIONS(8340), + [anon_sym_DOT] = ACTIONS(8340), + [anon_sym_BANG] = ACTIONS(8342), + [aux_sym__attribute_identifier_token1] = ACTIONS(8340), + [aux_sym_option_statement_token3] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8340), + [aux_sym_preprocessor_const_token1] = ACTIONS(8340), + [sym_static_modifier] = ACTIONS(8340), + [sym__dim_keyword] = ACTIONS(8340), + [sym__redim_keyword] = ACTIONS(8340), + [aux_sym_get_accessor_token1] = ACTIONS(8340), + [aux_sym_set_accessor_token1] = ACTIONS(8340), + [anon_sym_COMMA] = ACTIONS(10846), + [aux_sym_const_declaration_token1] = ACTIONS(8340), + [anon_sym_LPAREN] = ACTIONS(8342), + [aux_sym_as_type_clause_token2] = ACTIONS(8340), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8340), + [aux_sym_visibility_token1] = ACTIONS(8340), + [aux_sym_visibility_token2] = ACTIONS(8340), + [aux_sym_elseif_fragment_token1] = ACTIONS(8340), + [aux_sym_else_fragment_token1] = ACTIONS(8340), + [aux_sym_select_statement_token1] = ACTIONS(8340), + [aux_sym__for_header_token1] = ACTIONS(8340), + [aux_sym_do_statement_token1] = ACTIONS(8340), + [aux_sym_do_condition_token1] = ACTIONS(8340), + [aux_sym_with_statement_token1] = ACTIONS(8340), + [aux_sym_exit_statement_token1] = ACTIONS(8340), + [sym_end_statement] = ACTIONS(8342), + [aux_sym_on_goto_statement_token1] = ACTIONS(8340), + [aux_sym_on_goto_statement_token2] = ACTIONS(8340), + [aux_sym_on_error_statement_token2] = ACTIONS(8340), + [sym__ambiguous_redim_statement] = ACTIONS(8342), + [aux_sym_erase_statement_token1] = ACTIONS(8340), + [aux_sym_open_statement_token1] = ACTIONS(8340), + [aux_sym_file_mode_token2] = ACTIONS(8340), + [aux_sym_file_access_token2] = ACTIONS(8340), + [aux_sym_file_lock_token2] = ACTIONS(8340), + [aux_sym_print_statement_token1] = ACTIONS(8340), + [anon_sym_PLUS] = ACTIONS(8342), + [anon_sym_DASH] = ACTIONS(8340), + [anon_sym_QMARK] = ACTIONS(8342), + [aux_sym_close_statement_token1] = ACTIONS(8340), + [aux_sym_put_statement_token1] = ACTIONS(8340), + [aux_sym_unlock_statement_token1] = ACTIONS(8340), + [aux_sym_seek_statement_token1] = ACTIONS(8340), + [sym_reset_statement] = ACTIONS(8340), + [aux_sym_raise_event_statement_token1] = ACTIONS(8340), + [sym_stop_statement] = ACTIONS(8340), + [sym_beep_statement] = ACTIONS(8340), + [aux_sym_unload_statement_token1] = ACTIONS(8340), + [aux_sym_def_type_statement_token1] = ACTIONS(8340), + [aux_sym_def_type_statement_token2] = ACTIONS(8340), + [aux_sym_def_type_statement_token3] = ACTIONS(8340), + [aux_sym_def_type_statement_token4] = ACTIONS(8340), + [aux_sym_def_type_statement_token5] = ACTIONS(8340), + [aux_sym_def_type_statement_token6] = ACTIONS(8340), + [aux_sym_def_type_statement_token7] = ACTIONS(8340), + [aux_sym_def_type_statement_token8] = ACTIONS(8340), + [aux_sym_def_type_statement_token9] = ACTIONS(8340), + [aux_sym_def_type_statement_token10] = ACTIONS(8340), + [aux_sym_def_type_statement_token11] = ACTIONS(8340), + [aux_sym_def_type_statement_token12] = ACTIONS(8340), + [aux_sym_def_type_statement_token13] = ACTIONS(8340), + [aux_sym_def_type_statement_token14] = ACTIONS(8340), + [aux_sym_call_statement_token1] = ACTIONS(8340), + [sym__ambiguous_call_statement] = ACTIONS(8340), + [aux_sym_addressof_expression_token1] = ACTIONS(8340), + [aux_sym_type_of_expression_token1] = ACTIONS(8340), + [aux_sym_unary_expression_token1] = ACTIONS(8340), + [sym_string_literal] = ACTIONS(8342), + [sym_number_literal] = ACTIONS(8342), + [aux_sym_boolean_literal_token1] = ACTIONS(8340), + [aux_sym_boolean_literal_token2] = ACTIONS(8340), + [sym_nothing_literal] = ACTIONS(8340), + [sym_null_literal] = ACTIONS(8340), + [sym_empty_literal] = ACTIONS(8340), + [sym_date_literal] = ACTIONS(8342), + [anon_sym_POUND] = ACTIONS(8340), + }, + [STATE(5861)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(5983), + [sym_identifier] = ACTIONS(8733), + [sym_newline] = ACTIONS(8735), + [anon_sym_COLON] = ACTIONS(10848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8733), + [aux_sym_frm_property_statement_token1] = ACTIONS(8733), + [anon_sym_DOT] = ACTIONS(8733), + [anon_sym_BANG] = ACTIONS(8735), + [aux_sym__attribute_identifier_token1] = ACTIONS(8733), + [aux_sym_option_statement_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8733), + [aux_sym_preprocessor_const_token1] = ACTIONS(8733), + [sym_static_modifier] = ACTIONS(8733), + [sym__dim_keyword] = ACTIONS(8733), + [sym__redim_keyword] = ACTIONS(8733), + [aux_sym_get_accessor_token1] = ACTIONS(8733), + [aux_sym_set_accessor_token1] = ACTIONS(8733), + [aux_sym_const_declaration_token1] = ACTIONS(8733), + [anon_sym_LPAREN] = ACTIONS(8735), + [aux_sym_as_type_clause_token2] = ACTIONS(8733), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8733), + [aux_sym_visibility_token1] = ACTIONS(8733), + [aux_sym_visibility_token2] = ACTIONS(8733), + [aux_sym_elseif_fragment_token1] = ACTIONS(8733), + [aux_sym_else_fragment_token1] = ACTIONS(10850), + [aux_sym_select_statement_token1] = ACTIONS(8733), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8733), + [aux_sym__for_header_token1] = ACTIONS(8733), + [aux_sym_do_statement_token1] = ACTIONS(8733), + [aux_sym_do_condition_token1] = ACTIONS(8733), + [aux_sym_with_statement_token1] = ACTIONS(8733), + [aux_sym_exit_statement_token1] = ACTIONS(8733), + [sym_end_statement] = ACTIONS(8735), + [aux_sym_on_goto_statement_token1] = ACTIONS(8733), + [aux_sym_on_goto_statement_token2] = ACTIONS(8733), + [aux_sym_on_error_statement_token2] = ACTIONS(8733), + [sym__ambiguous_redim_statement] = ACTIONS(8735), + [aux_sym_erase_statement_token1] = ACTIONS(8733), + [aux_sym_open_statement_token1] = ACTIONS(8733), + [aux_sym_file_mode_token2] = ACTIONS(8733), + [aux_sym_file_access_token2] = ACTIONS(8733), + [aux_sym_file_lock_token2] = ACTIONS(8733), + [aux_sym_print_statement_token1] = ACTIONS(8733), + [anon_sym_PLUS] = ACTIONS(8735), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_QMARK] = ACTIONS(8735), + [aux_sym_close_statement_token1] = ACTIONS(8733), + [aux_sym_put_statement_token1] = ACTIONS(8733), + [aux_sym_unlock_statement_token1] = ACTIONS(8733), + [aux_sym_seek_statement_token1] = ACTIONS(8733), + [sym_reset_statement] = ACTIONS(8733), + [aux_sym_raise_event_statement_token1] = ACTIONS(8733), + [sym_stop_statement] = ACTIONS(8733), + [sym_beep_statement] = ACTIONS(8733), + [aux_sym_unload_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token2] = ACTIONS(8733), + [aux_sym_def_type_statement_token3] = ACTIONS(8733), + [aux_sym_def_type_statement_token4] = ACTIONS(8733), + [aux_sym_def_type_statement_token5] = ACTIONS(8733), + [aux_sym_def_type_statement_token6] = ACTIONS(8733), + [aux_sym_def_type_statement_token7] = ACTIONS(8733), + [aux_sym_def_type_statement_token8] = ACTIONS(8733), + [aux_sym_def_type_statement_token9] = ACTIONS(8733), + [aux_sym_def_type_statement_token10] = ACTIONS(8733), + [aux_sym_def_type_statement_token11] = ACTIONS(8733), + [aux_sym_def_type_statement_token12] = ACTIONS(8733), + [aux_sym_def_type_statement_token13] = ACTIONS(8733), + [aux_sym_def_type_statement_token14] = ACTIONS(8733), + [aux_sym_call_statement_token1] = ACTIONS(8733), + [sym__ambiguous_call_statement] = ACTIONS(8733), + [aux_sym_addressof_expression_token1] = ACTIONS(8733), + [aux_sym_type_of_expression_token1] = ACTIONS(8733), + [aux_sym_unary_expression_token1] = ACTIONS(8733), + [sym_string_literal] = ACTIONS(8735), + [sym_number_literal] = ACTIONS(8735), + [aux_sym_boolean_literal_token1] = ACTIONS(8733), + [aux_sym_boolean_literal_token2] = ACTIONS(8733), + [sym_nothing_literal] = ACTIONS(8733), + [sym_null_literal] = ACTIONS(8733), + [sym_empty_literal] = ACTIONS(8733), + [sym_date_literal] = ACTIONS(8735), + [anon_sym_POUND] = ACTIONS(8733), + }, + [STATE(5862)] = { + [sym_identifier] = ACTIONS(8974), + [sym_newline] = ACTIONS(8976), + [anon_sym_COLON] = ACTIONS(8976), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8974), + [aux_sym_frm_property_statement_token1] = ACTIONS(8974), + [anon_sym_DOT] = ACTIONS(8974), + [anon_sym_BANG] = ACTIONS(8976), + [aux_sym__attribute_identifier_token1] = ACTIONS(8974), + [aux_sym_option_statement_token3] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8974), + [aux_sym_preprocessor_const_token1] = ACTIONS(8974), + [sym_static_modifier] = ACTIONS(8974), + [sym__dim_keyword] = ACTIONS(8974), + [sym__redim_keyword] = ACTIONS(8974), + [aux_sym_get_accessor_token1] = ACTIONS(8974), + [aux_sym_set_accessor_token1] = ACTIONS(8974), + [anon_sym_COMMA] = ACTIONS(10852), + [aux_sym_const_declaration_token1] = ACTIONS(8974), + [anon_sym_LPAREN] = ACTIONS(8976), + [aux_sym_as_type_clause_token2] = ACTIONS(8974), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8974), + [aux_sym_visibility_token1] = ACTIONS(8974), + [aux_sym_visibility_token2] = ACTIONS(8974), + [aux_sym_elseif_fragment_token1] = ACTIONS(8974), + [aux_sym_else_fragment_token1] = ACTIONS(8974), + [aux_sym_select_statement_token1] = ACTIONS(8974), + [aux_sym__for_header_token1] = ACTIONS(8974), + [aux_sym_do_statement_token1] = ACTIONS(8974), + [aux_sym_do_condition_token1] = ACTIONS(8974), + [aux_sym_while_statement_token1] = ACTIONS(8974), + [aux_sym_with_statement_token1] = ACTIONS(8974), + [aux_sym_exit_statement_token1] = ACTIONS(8974), + [sym_end_statement] = ACTIONS(8976), + [aux_sym_on_goto_statement_token1] = ACTIONS(8974), + [aux_sym_on_goto_statement_token2] = ACTIONS(8974), + [aux_sym_on_error_statement_token2] = ACTIONS(8974), + [sym__ambiguous_redim_statement] = ACTIONS(8976), + [aux_sym_erase_statement_token1] = ACTIONS(8974), + [aux_sym_open_statement_token1] = ACTIONS(8974), + [aux_sym_file_mode_token2] = ACTIONS(8974), + [aux_sym_file_access_token2] = ACTIONS(8974), + [aux_sym_file_lock_token2] = ACTIONS(8974), + [aux_sym_print_statement_token1] = ACTIONS(8974), + [anon_sym_PLUS] = ACTIONS(8976), + [anon_sym_DASH] = ACTIONS(8974), + [anon_sym_QMARK] = ACTIONS(8976), + [aux_sym_close_statement_token1] = ACTIONS(8974), + [aux_sym_put_statement_token1] = ACTIONS(8974), + [aux_sym_unlock_statement_token1] = ACTIONS(8974), + [aux_sym_seek_statement_token1] = ACTIONS(8974), + [sym_reset_statement] = ACTIONS(8974), + [aux_sym_raise_event_statement_token1] = ACTIONS(8974), + [sym_stop_statement] = ACTIONS(8974), + [sym_beep_statement] = ACTIONS(8974), + [aux_sym_unload_statement_token1] = ACTIONS(8974), + [aux_sym_def_type_statement_token1] = ACTIONS(8974), + [aux_sym_def_type_statement_token2] = ACTIONS(8974), + [aux_sym_def_type_statement_token3] = ACTIONS(8974), + [aux_sym_def_type_statement_token4] = ACTIONS(8974), + [aux_sym_def_type_statement_token5] = ACTIONS(8974), + [aux_sym_def_type_statement_token6] = ACTIONS(8974), + [aux_sym_def_type_statement_token7] = ACTIONS(8974), + [aux_sym_def_type_statement_token8] = ACTIONS(8974), + [aux_sym_def_type_statement_token9] = ACTIONS(8974), + [aux_sym_def_type_statement_token10] = ACTIONS(8974), + [aux_sym_def_type_statement_token11] = ACTIONS(8974), + [aux_sym_def_type_statement_token12] = ACTIONS(8974), + [aux_sym_def_type_statement_token13] = ACTIONS(8974), + [aux_sym_def_type_statement_token14] = ACTIONS(8974), + [aux_sym_call_statement_token1] = ACTIONS(8974), + [sym__ambiguous_call_statement] = ACTIONS(8974), + [aux_sym_addressof_expression_token1] = ACTIONS(8974), + [aux_sym_type_of_expression_token1] = ACTIONS(8974), + [aux_sym_unary_expression_token1] = ACTIONS(8974), + [sym_string_literal] = ACTIONS(8976), + [sym_number_literal] = ACTIONS(8976), + [aux_sym_boolean_literal_token1] = ACTIONS(8974), + [aux_sym_boolean_literal_token2] = ACTIONS(8974), + [sym_nothing_literal] = ACTIONS(8974), + [sym_null_literal] = ACTIONS(8974), + [sym_empty_literal] = ACTIONS(8974), + [sym_date_literal] = ACTIONS(8976), + [anon_sym_POUND] = ACTIONS(8974), + }, + [STATE(5863)] = { + [sym_identifier] = ACTIONS(8962), + [sym_newline] = ACTIONS(8964), + [anon_sym_COLON] = ACTIONS(8964), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8962), + [aux_sym_frm_property_statement_token1] = ACTIONS(8962), + [anon_sym_DOT] = ACTIONS(8962), + [anon_sym_BANG] = ACTIONS(8964), + [aux_sym__attribute_identifier_token1] = ACTIONS(8962), + [aux_sym_option_statement_token3] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8962), + [aux_sym_preprocessor_const_token1] = ACTIONS(8962), + [sym_static_modifier] = ACTIONS(8962), + [sym__dim_keyword] = ACTIONS(8962), + [sym__redim_keyword] = ACTIONS(8962), + [aux_sym_get_accessor_token1] = ACTIONS(8962), + [aux_sym_set_accessor_token1] = ACTIONS(8962), + [anon_sym_COMMA] = ACTIONS(8964), + [aux_sym_const_declaration_token1] = ACTIONS(8962), + [anon_sym_LPAREN] = ACTIONS(8964), + [aux_sym_as_type_clause_token2] = ACTIONS(8962), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8962), + [aux_sym_visibility_token1] = ACTIONS(8962), + [aux_sym_visibility_token2] = ACTIONS(8962), + [aux_sym_elseif_fragment_token1] = ACTIONS(8962), + [aux_sym_else_fragment_token1] = ACTIONS(8962), + [aux_sym_select_statement_token1] = ACTIONS(8962), + [aux_sym__for_header_token1] = ACTIONS(8962), + [aux_sym_do_statement_token1] = ACTIONS(8962), + [aux_sym_do_condition_token1] = ACTIONS(8962), + [aux_sym_while_statement_token1] = ACTIONS(8962), + [aux_sym_with_statement_token1] = ACTIONS(8962), + [aux_sym_exit_statement_token1] = ACTIONS(8962), + [sym_end_statement] = ACTIONS(8964), + [aux_sym_on_goto_statement_token1] = ACTIONS(8962), + [aux_sym_on_goto_statement_token2] = ACTIONS(8962), + [aux_sym_on_error_statement_token2] = ACTIONS(8962), + [sym__ambiguous_redim_statement] = ACTIONS(8964), + [aux_sym_erase_statement_token1] = ACTIONS(8962), + [aux_sym_open_statement_token1] = ACTIONS(8962), + [aux_sym_file_mode_token2] = ACTIONS(8962), + [aux_sym_file_access_token2] = ACTIONS(8962), + [aux_sym_file_lock_token2] = ACTIONS(8962), + [aux_sym_print_statement_token1] = ACTIONS(8962), + [anon_sym_PLUS] = ACTIONS(8964), + [anon_sym_DASH] = ACTIONS(8962), + [anon_sym_QMARK] = ACTIONS(8964), + [aux_sym_close_statement_token1] = ACTIONS(8962), + [aux_sym_put_statement_token1] = ACTIONS(8962), + [aux_sym_unlock_statement_token1] = ACTIONS(8962), + [aux_sym_seek_statement_token1] = ACTIONS(8962), + [sym_reset_statement] = ACTIONS(8962), + [aux_sym_raise_event_statement_token1] = ACTIONS(8962), + [sym_stop_statement] = ACTIONS(8962), + [sym_beep_statement] = ACTIONS(8962), + [aux_sym_unload_statement_token1] = ACTIONS(8962), + [aux_sym_def_type_statement_token1] = ACTIONS(8962), + [aux_sym_def_type_statement_token2] = ACTIONS(8962), + [aux_sym_def_type_statement_token3] = ACTIONS(8962), + [aux_sym_def_type_statement_token4] = ACTIONS(8962), + [aux_sym_def_type_statement_token5] = ACTIONS(8962), + [aux_sym_def_type_statement_token6] = ACTIONS(8962), + [aux_sym_def_type_statement_token7] = ACTIONS(8962), + [aux_sym_def_type_statement_token8] = ACTIONS(8962), + [aux_sym_def_type_statement_token9] = ACTIONS(8962), + [aux_sym_def_type_statement_token10] = ACTIONS(8962), + [aux_sym_def_type_statement_token11] = ACTIONS(8962), + [aux_sym_def_type_statement_token12] = ACTIONS(8962), + [aux_sym_def_type_statement_token13] = ACTIONS(8962), + [aux_sym_def_type_statement_token14] = ACTIONS(8962), + [aux_sym_call_statement_token1] = ACTIONS(8962), + [sym__ambiguous_call_statement] = ACTIONS(8962), + [aux_sym_addressof_expression_token1] = ACTIONS(8962), + [aux_sym_type_of_expression_token1] = ACTIONS(8962), + [aux_sym_unary_expression_token1] = ACTIONS(8962), + [sym_string_literal] = ACTIONS(8964), + [sym_number_literal] = ACTIONS(8964), + [aux_sym_boolean_literal_token1] = ACTIONS(8962), + [aux_sym_boolean_literal_token2] = ACTIONS(8962), + [sym_nothing_literal] = ACTIONS(8962), + [sym_null_literal] = ACTIONS(8962), + [sym_empty_literal] = ACTIONS(8962), + [sym_date_literal] = ACTIONS(8964), + [anon_sym_POUND] = ACTIONS(8962), + }, + [STATE(5864)] = { + [sym_identifier] = ACTIONS(8456), + [sym_newline] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8458), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8456), + [aux_sym_frm_property_statement_token1] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_BANG] = ACTIONS(8458), + [aux_sym__attribute_identifier_token1] = ACTIONS(8456), + [aux_sym_option_statement_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8456), + [aux_sym_preprocessor_const_token1] = ACTIONS(8456), + [sym_static_modifier] = ACTIONS(8456), + [sym__dim_keyword] = ACTIONS(8456), + [sym__redim_keyword] = ACTIONS(8456), + [aux_sym_get_accessor_token1] = ACTIONS(8456), + [aux_sym_set_accessor_token1] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(8458), + [aux_sym_const_declaration_token1] = ACTIONS(8456), + [anon_sym_LPAREN] = ACTIONS(8458), + [aux_sym_as_type_clause_token2] = ACTIONS(8456), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8456), + [aux_sym_visibility_token1] = ACTIONS(8456), + [aux_sym_visibility_token2] = ACTIONS(8456), + [aux_sym_elseif_fragment_token1] = ACTIONS(8456), + [aux_sym_else_fragment_token1] = ACTIONS(8456), + [aux_sym_select_statement_token1] = ACTIONS(8456), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8456), + [aux_sym__for_header_token1] = ACTIONS(8456), + [aux_sym_do_statement_token1] = ACTIONS(8456), + [aux_sym_do_condition_token1] = ACTIONS(8456), + [aux_sym_with_statement_token1] = ACTIONS(8456), + [aux_sym_exit_statement_token1] = ACTIONS(8456), + [sym_end_statement] = ACTIONS(8458), + [aux_sym_on_goto_statement_token1] = ACTIONS(8456), + [aux_sym_on_goto_statement_token2] = ACTIONS(8456), + [aux_sym_on_error_statement_token2] = ACTIONS(8456), + [sym__ambiguous_redim_statement] = ACTIONS(8458), + [aux_sym_erase_statement_token1] = ACTIONS(8456), + [aux_sym_open_statement_token1] = ACTIONS(8456), + [aux_sym_file_mode_token2] = ACTIONS(8456), + [aux_sym_file_access_token2] = ACTIONS(8456), + [aux_sym_file_lock_token2] = ACTIONS(8456), + [aux_sym_print_statement_token1] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8458), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8458), + [aux_sym_close_statement_token1] = ACTIONS(8456), + [aux_sym_put_statement_token1] = ACTIONS(8456), + [aux_sym_unlock_statement_token1] = ACTIONS(8456), + [aux_sym_seek_statement_token1] = ACTIONS(8456), + [sym_reset_statement] = ACTIONS(8456), + [aux_sym_raise_event_statement_token1] = ACTIONS(8456), + [sym_stop_statement] = ACTIONS(8456), + [sym_beep_statement] = ACTIONS(8456), + [aux_sym_unload_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token2] = ACTIONS(8456), + [aux_sym_def_type_statement_token3] = ACTIONS(8456), + [aux_sym_def_type_statement_token4] = ACTIONS(8456), + [aux_sym_def_type_statement_token5] = ACTIONS(8456), + [aux_sym_def_type_statement_token6] = ACTIONS(8456), + [aux_sym_def_type_statement_token7] = ACTIONS(8456), + [aux_sym_def_type_statement_token8] = ACTIONS(8456), + [aux_sym_def_type_statement_token9] = ACTIONS(8456), + [aux_sym_def_type_statement_token10] = ACTIONS(8456), + [aux_sym_def_type_statement_token11] = ACTIONS(8456), + [aux_sym_def_type_statement_token12] = ACTIONS(8456), + [aux_sym_def_type_statement_token13] = ACTIONS(8456), + [aux_sym_def_type_statement_token14] = ACTIONS(8456), + [aux_sym_call_statement_token1] = ACTIONS(8456), + [sym__ambiguous_call_statement] = ACTIONS(8456), + [aux_sym_addressof_expression_token1] = ACTIONS(8456), + [aux_sym_type_of_expression_token1] = ACTIONS(8456), + [aux_sym_unary_expression_token1] = ACTIONS(8456), + [sym_string_literal] = ACTIONS(8458), + [sym_number_literal] = ACTIONS(8458), + [aux_sym_boolean_literal_token1] = ACTIONS(8456), + [aux_sym_boolean_literal_token2] = ACTIONS(8456), + [sym_nothing_literal] = ACTIONS(8456), + [sym_null_literal] = ACTIONS(8456), + [sym_empty_literal] = ACTIONS(8456), + [sym_date_literal] = ACTIONS(8458), + [anon_sym_POUND] = ACTIONS(8456), + }, + [STATE(5865)] = { + [sym_identifier] = ACTIONS(5562), + [sym_newline] = ACTIONS(5558), + [anon_sym_COLON] = ACTIONS(5558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5562), + [aux_sym_frm_property_statement_token1] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(10558), + [anon_sym_BANG] = ACTIONS(10560), + [aux_sym__attribute_identifier_token1] = ACTIONS(5562), + [aux_sym_option_statement_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5562), + [aux_sym_preprocessor_const_token1] = ACTIONS(5562), + [sym_static_modifier] = ACTIONS(5562), + [sym__dim_keyword] = ACTIONS(5562), + [sym__redim_keyword] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5562), + [aux_sym_set_accessor_token1] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5558), + [aux_sym_as_type_clause_token2] = ACTIONS(5562), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5562), + [aux_sym_visibility_token1] = ACTIONS(5562), + [aux_sym_visibility_token2] = ACTIONS(5562), + [aux_sym_elseif_fragment_token1] = ACTIONS(5562), + [aux_sym_else_fragment_token1] = ACTIONS(5562), + [aux_sym_select_statement_token1] = ACTIONS(5562), + [aux_sym_select_statement_token2] = ACTIONS(5562), + [aux_sym__for_header_token1] = ACTIONS(5562), + [aux_sym_do_statement_token1] = ACTIONS(5562), + [aux_sym_do_condition_token1] = ACTIONS(5562), + [aux_sym_with_statement_token1] = ACTIONS(5562), + [aux_sym_exit_statement_token1] = ACTIONS(5562), + [sym_end_statement] = ACTIONS(5558), + [aux_sym_on_goto_statement_token1] = ACTIONS(5562), + [aux_sym_on_goto_statement_token2] = ACTIONS(5562), + [aux_sym_on_error_statement_token2] = ACTIONS(5562), + [sym__ambiguous_redim_statement] = ACTIONS(5558), + [aux_sym_erase_statement_token1] = ACTIONS(5562), + [aux_sym_open_statement_token1] = ACTIONS(5562), + [aux_sym_file_mode_token2] = ACTIONS(5562), + [aux_sym_file_access_token2] = ACTIONS(5562), + [aux_sym_file_lock_token2] = ACTIONS(5562), + [aux_sym_print_statement_token1] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5558), + [aux_sym_close_statement_token1] = ACTIONS(5562), + [aux_sym_put_statement_token1] = ACTIONS(5562), + [aux_sym_unlock_statement_token1] = ACTIONS(5562), + [aux_sym_seek_statement_token1] = ACTIONS(5562), + [sym_reset_statement] = ACTIONS(5562), + [aux_sym_raise_event_statement_token1] = ACTIONS(5562), + [sym_stop_statement] = ACTIONS(5562), + [sym_beep_statement] = ACTIONS(5562), + [aux_sym_unload_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token2] = ACTIONS(5562), + [aux_sym_def_type_statement_token3] = ACTIONS(5562), + [aux_sym_def_type_statement_token4] = ACTIONS(5562), + [aux_sym_def_type_statement_token5] = ACTIONS(5562), + [aux_sym_def_type_statement_token6] = ACTIONS(5562), + [aux_sym_def_type_statement_token7] = ACTIONS(5562), + [aux_sym_def_type_statement_token8] = ACTIONS(5562), + [aux_sym_def_type_statement_token9] = ACTIONS(5562), + [aux_sym_def_type_statement_token10] = ACTIONS(5562), + [aux_sym_def_type_statement_token11] = ACTIONS(5562), + [aux_sym_def_type_statement_token12] = ACTIONS(5562), + [aux_sym_def_type_statement_token13] = ACTIONS(5562), + [aux_sym_def_type_statement_token14] = ACTIONS(5562), + [aux_sym_call_statement_token1] = ACTIONS(5562), + [sym__ambiguous_call_statement] = ACTIONS(5562), + [aux_sym_addressof_expression_token1] = ACTIONS(5562), + [aux_sym_type_of_expression_token1] = ACTIONS(5562), + [aux_sym_unary_expression_token1] = ACTIONS(5562), + [sym_string_literal] = ACTIONS(5558), + [sym_number_literal] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5562), + [aux_sym_boolean_literal_token2] = ACTIONS(5562), + [sym_nothing_literal] = ACTIONS(5562), + [sym_null_literal] = ACTIONS(5562), + [sym_empty_literal] = ACTIONS(5562), + [sym_date_literal] = ACTIONS(5558), + [anon_sym_POUND] = ACTIONS(5562), + }, + [STATE(5866)] = { + [sym_identifier] = ACTIONS(8853), + [sym_newline] = ACTIONS(8855), + [anon_sym_COLON] = ACTIONS(8855), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8853), + [aux_sym_frm_property_statement_token1] = ACTIONS(8853), + [anon_sym_DOT] = ACTIONS(8853), + [anon_sym_BANG] = ACTIONS(8855), + [aux_sym__attribute_identifier_token1] = ACTIONS(8853), + [aux_sym_option_statement_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8853), + [aux_sym_preprocessor_const_token1] = ACTIONS(8853), + [sym_static_modifier] = ACTIONS(8853), + [sym__dim_keyword] = ACTIONS(8853), + [sym__redim_keyword] = ACTIONS(8853), + [aux_sym_get_accessor_token1] = ACTIONS(8853), + [aux_sym_set_accessor_token1] = ACTIONS(8853), + [aux_sym_const_declaration_token1] = ACTIONS(8853), + [anon_sym_LPAREN] = ACTIONS(8855), + [aux_sym_as_type_clause_token2] = ACTIONS(8853), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8853), + [aux_sym_visibility_token1] = ACTIONS(8853), + [aux_sym_visibility_token2] = ACTIONS(8853), + [aux_sym_elseif_fragment_token1] = ACTIONS(8853), + [aux_sym_else_fragment_token1] = ACTIONS(8853), + [aux_sym_select_statement_token1] = ACTIONS(8853), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8853), + [aux_sym__for_header_token1] = ACTIONS(8853), + [aux_sym_do_statement_token1] = ACTIONS(8853), + [aux_sym_do_statement_token2] = ACTIONS(8853), + [aux_sym_do_condition_token1] = ACTIONS(8853), + [aux_sym_with_statement_token1] = ACTIONS(8853), + [aux_sym_exit_statement_token1] = ACTIONS(8853), + [sym_end_statement] = ACTIONS(8855), + [aux_sym_on_goto_statement_token1] = ACTIONS(8853), + [aux_sym_on_goto_statement_token2] = ACTIONS(8853), + [aux_sym_on_error_statement_token2] = ACTIONS(8853), + [sym__ambiguous_redim_statement] = ACTIONS(8855), + [aux_sym_erase_statement_token1] = ACTIONS(8853), + [aux_sym_open_statement_token1] = ACTIONS(8853), + [aux_sym_file_mode_token2] = ACTIONS(8853), + [aux_sym_file_access_token2] = ACTIONS(8853), + [aux_sym_file_lock_token2] = ACTIONS(8853), + [aux_sym_print_statement_token1] = ACTIONS(8853), + [anon_sym_PLUS] = ACTIONS(8855), + [anon_sym_DASH] = ACTIONS(8853), + [anon_sym_QMARK] = ACTIONS(8855), + [aux_sym_close_statement_token1] = ACTIONS(8853), + [aux_sym_put_statement_token1] = ACTIONS(8853), + [aux_sym_unlock_statement_token1] = ACTIONS(8853), + [aux_sym_seek_statement_token1] = ACTIONS(8853), + [sym_reset_statement] = ACTIONS(8853), + [aux_sym_raise_event_statement_token1] = ACTIONS(8853), + [sym_stop_statement] = ACTIONS(8853), + [sym_beep_statement] = ACTIONS(8853), + [aux_sym_unload_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token2] = ACTIONS(8853), + [aux_sym_def_type_statement_token3] = ACTIONS(8853), + [aux_sym_def_type_statement_token4] = ACTIONS(8853), + [aux_sym_def_type_statement_token5] = ACTIONS(8853), + [aux_sym_def_type_statement_token6] = ACTIONS(8853), + [aux_sym_def_type_statement_token7] = ACTIONS(8853), + [aux_sym_def_type_statement_token8] = ACTIONS(8853), + [aux_sym_def_type_statement_token9] = ACTIONS(8853), + [aux_sym_def_type_statement_token10] = ACTIONS(8853), + [aux_sym_def_type_statement_token11] = ACTIONS(8853), + [aux_sym_def_type_statement_token12] = ACTIONS(8853), + [aux_sym_def_type_statement_token13] = ACTIONS(8853), + [aux_sym_def_type_statement_token14] = ACTIONS(8853), + [aux_sym_call_statement_token1] = ACTIONS(8853), + [sym__ambiguous_call_statement] = ACTIONS(8853), + [aux_sym_addressof_expression_token1] = ACTIONS(8853), + [aux_sym_type_of_expression_token1] = ACTIONS(8853), + [aux_sym_unary_expression_token1] = ACTIONS(8853), + [sym_string_literal] = ACTIONS(8855), + [sym_number_literal] = ACTIONS(8855), + [aux_sym_boolean_literal_token1] = ACTIONS(8853), + [aux_sym_boolean_literal_token2] = ACTIONS(8853), + [sym_nothing_literal] = ACTIONS(8853), + [sym_null_literal] = ACTIONS(8853), + [sym_empty_literal] = ACTIONS(8853), + [sym_date_literal] = ACTIONS(8855), + [anon_sym_POUND] = ACTIONS(8853), + }, + [STATE(5867)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(5873), + [sym_identifier] = ACTIONS(8692), + [sym_newline] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(10854), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8692), + [aux_sym_frm_property_statement_token1] = ACTIONS(8692), + [anon_sym_DOT] = ACTIONS(8692), + [anon_sym_BANG] = ACTIONS(8694), + [aux_sym__attribute_identifier_token1] = ACTIONS(8692), + [aux_sym_option_statement_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8692), + [aux_sym_preprocessor_const_token1] = ACTIONS(8692), + [sym_static_modifier] = ACTIONS(8692), + [sym__dim_keyword] = ACTIONS(8692), + [sym__redim_keyword] = ACTIONS(8692), + [aux_sym_get_accessor_token1] = ACTIONS(8692), + [aux_sym_set_accessor_token1] = ACTIONS(8692), + [aux_sym_const_declaration_token1] = ACTIONS(8692), + [anon_sym_LPAREN] = ACTIONS(8694), + [aux_sym_as_type_clause_token2] = ACTIONS(8692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8692), + [aux_sym_visibility_token1] = ACTIONS(8692), + [aux_sym_visibility_token2] = ACTIONS(8692), + [aux_sym_elseif_fragment_token1] = ACTIONS(8692), + [aux_sym_else_fragment_token1] = ACTIONS(10856), + [aux_sym_select_statement_token1] = ACTIONS(8692), + [aux_sym__for_header_token1] = ACTIONS(8692), + [aux_sym_do_statement_token1] = ACTIONS(8692), + [aux_sym_do_condition_token1] = ACTIONS(8692), + [aux_sym_while_statement_token1] = ACTIONS(8692), + [aux_sym_with_statement_token1] = ACTIONS(8692), + [aux_sym_exit_statement_token1] = ACTIONS(8692), + [sym_end_statement] = ACTIONS(8694), + [aux_sym_on_goto_statement_token1] = ACTIONS(8692), + [aux_sym_on_goto_statement_token2] = ACTIONS(8692), + [aux_sym_on_error_statement_token2] = ACTIONS(8692), + [sym__ambiguous_redim_statement] = ACTIONS(8694), + [aux_sym_erase_statement_token1] = ACTIONS(8692), + [aux_sym_open_statement_token1] = ACTIONS(8692), + [aux_sym_file_mode_token2] = ACTIONS(8692), + [aux_sym_file_access_token2] = ACTIONS(8692), + [aux_sym_file_lock_token2] = ACTIONS(8692), + [aux_sym_print_statement_token1] = ACTIONS(8692), + [anon_sym_PLUS] = ACTIONS(8694), + [anon_sym_DASH] = ACTIONS(8692), + [anon_sym_QMARK] = ACTIONS(8694), + [aux_sym_close_statement_token1] = ACTIONS(8692), + [aux_sym_put_statement_token1] = ACTIONS(8692), + [aux_sym_unlock_statement_token1] = ACTIONS(8692), + [aux_sym_seek_statement_token1] = ACTIONS(8692), + [sym_reset_statement] = ACTIONS(8692), + [aux_sym_raise_event_statement_token1] = ACTIONS(8692), + [sym_stop_statement] = ACTIONS(8692), + [sym_beep_statement] = ACTIONS(8692), + [aux_sym_unload_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token2] = ACTIONS(8692), + [aux_sym_def_type_statement_token3] = ACTIONS(8692), + [aux_sym_def_type_statement_token4] = ACTIONS(8692), + [aux_sym_def_type_statement_token5] = ACTIONS(8692), + [aux_sym_def_type_statement_token6] = ACTIONS(8692), + [aux_sym_def_type_statement_token7] = ACTIONS(8692), + [aux_sym_def_type_statement_token8] = ACTIONS(8692), + [aux_sym_def_type_statement_token9] = ACTIONS(8692), + [aux_sym_def_type_statement_token10] = ACTIONS(8692), + [aux_sym_def_type_statement_token11] = ACTIONS(8692), + [aux_sym_def_type_statement_token12] = ACTIONS(8692), + [aux_sym_def_type_statement_token13] = ACTIONS(8692), + [aux_sym_def_type_statement_token14] = ACTIONS(8692), + [aux_sym_call_statement_token1] = ACTIONS(8692), + [sym__ambiguous_call_statement] = ACTIONS(8692), + [aux_sym_addressof_expression_token1] = ACTIONS(8692), + [aux_sym_type_of_expression_token1] = ACTIONS(8692), + [aux_sym_unary_expression_token1] = ACTIONS(8692), + [sym_string_literal] = ACTIONS(8694), + [sym_number_literal] = ACTIONS(8694), + [aux_sym_boolean_literal_token1] = ACTIONS(8692), + [aux_sym_boolean_literal_token2] = ACTIONS(8692), + [sym_nothing_literal] = ACTIONS(8692), + [sym_null_literal] = ACTIONS(8692), + [sym_empty_literal] = ACTIONS(8692), + [sym_date_literal] = ACTIONS(8694), + [anon_sym_POUND] = ACTIONS(8692), + }, + [STATE(5868)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(5869)] = { + [sym_identifier] = ACTIONS(8660), + [sym_newline] = ACTIONS(8662), + [anon_sym_COLON] = ACTIONS(8662), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8660), + [aux_sym_frm_property_statement_token1] = ACTIONS(8660), + [anon_sym_DOT] = ACTIONS(8660), + [anon_sym_BANG] = ACTIONS(8662), + [aux_sym__attribute_identifier_token1] = ACTIONS(8660), + [aux_sym_option_statement_token3] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8660), + [aux_sym_preprocessor_const_token1] = ACTIONS(8660), + [sym_static_modifier] = ACTIONS(8660), + [sym__dim_keyword] = ACTIONS(8660), + [sym__redim_keyword] = ACTIONS(8660), + [aux_sym_get_accessor_token1] = ACTIONS(8660), + [aux_sym_set_accessor_token1] = ACTIONS(8660), + [anon_sym_COMMA] = ACTIONS(10858), + [aux_sym_const_declaration_token1] = ACTIONS(8660), + [anon_sym_LPAREN] = ACTIONS(8662), + [aux_sym_as_type_clause_token2] = ACTIONS(8660), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8660), + [aux_sym_visibility_token1] = ACTIONS(8660), + [aux_sym_visibility_token2] = ACTIONS(8660), + [aux_sym_elseif_fragment_token1] = ACTIONS(8660), + [aux_sym_else_fragment_token1] = ACTIONS(8660), + [aux_sym_select_statement_token1] = ACTIONS(8660), + [aux_sym__for_header_token1] = ACTIONS(8660), + [aux_sym_do_statement_token1] = ACTIONS(8660), + [aux_sym_do_statement_token2] = ACTIONS(8660), + [aux_sym_do_condition_token1] = ACTIONS(8660), + [aux_sym_with_statement_token1] = ACTIONS(8660), + [aux_sym_exit_statement_token1] = ACTIONS(8660), + [sym_end_statement] = ACTIONS(8662), + [aux_sym_on_goto_statement_token1] = ACTIONS(8660), + [aux_sym_on_goto_statement_token2] = ACTIONS(8660), + [aux_sym_on_error_statement_token2] = ACTIONS(8660), + [sym__ambiguous_redim_statement] = ACTIONS(8662), + [aux_sym_erase_statement_token1] = ACTIONS(8660), + [aux_sym_open_statement_token1] = ACTIONS(8660), + [aux_sym_file_mode_token2] = ACTIONS(8660), + [aux_sym_file_access_token2] = ACTIONS(8660), + [aux_sym_file_lock_token2] = ACTIONS(8660), + [aux_sym_print_statement_token1] = ACTIONS(8660), + [anon_sym_PLUS] = ACTIONS(8662), + [anon_sym_DASH] = ACTIONS(8660), + [anon_sym_QMARK] = ACTIONS(8662), + [aux_sym_close_statement_token1] = ACTIONS(8660), + [aux_sym_put_statement_token1] = ACTIONS(8660), + [aux_sym_unlock_statement_token1] = ACTIONS(8660), + [aux_sym_seek_statement_token1] = ACTIONS(8660), + [sym_reset_statement] = ACTIONS(8660), + [aux_sym_raise_event_statement_token1] = ACTIONS(8660), + [sym_stop_statement] = ACTIONS(8660), + [sym_beep_statement] = ACTIONS(8660), + [aux_sym_unload_statement_token1] = ACTIONS(8660), + [aux_sym_def_type_statement_token1] = ACTIONS(8660), + [aux_sym_def_type_statement_token2] = ACTIONS(8660), + [aux_sym_def_type_statement_token3] = ACTIONS(8660), + [aux_sym_def_type_statement_token4] = ACTIONS(8660), + [aux_sym_def_type_statement_token5] = ACTIONS(8660), + [aux_sym_def_type_statement_token6] = ACTIONS(8660), + [aux_sym_def_type_statement_token7] = ACTIONS(8660), + [aux_sym_def_type_statement_token8] = ACTIONS(8660), + [aux_sym_def_type_statement_token9] = ACTIONS(8660), + [aux_sym_def_type_statement_token10] = ACTIONS(8660), + [aux_sym_def_type_statement_token11] = ACTIONS(8660), + [aux_sym_def_type_statement_token12] = ACTIONS(8660), + [aux_sym_def_type_statement_token13] = ACTIONS(8660), + [aux_sym_def_type_statement_token14] = ACTIONS(8660), + [aux_sym_call_statement_token1] = ACTIONS(8660), + [sym__ambiguous_call_statement] = ACTIONS(8660), + [aux_sym_addressof_expression_token1] = ACTIONS(8660), + [aux_sym_type_of_expression_token1] = ACTIONS(8660), + [aux_sym_unary_expression_token1] = ACTIONS(8660), + [sym_string_literal] = ACTIONS(8662), + [sym_number_literal] = ACTIONS(8662), + [aux_sym_boolean_literal_token1] = ACTIONS(8660), + [aux_sym_boolean_literal_token2] = ACTIONS(8660), + [sym_nothing_literal] = ACTIONS(8660), + [sym_null_literal] = ACTIONS(8660), + [sym_empty_literal] = ACTIONS(8660), + [sym_date_literal] = ACTIONS(8662), + [anon_sym_POUND] = ACTIONS(8660), + }, + [STATE(5870)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_statement_token2] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(5871)] = { + [sym_identifier] = ACTIONS(10860), + [sym_newline] = ACTIONS(8819), + [anon_sym_COLON] = ACTIONS(8819), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8821), + [aux_sym_frm_property_statement_token1] = ACTIONS(8821), + [anon_sym_DOT] = ACTIONS(8821), + [anon_sym_BANG] = ACTIONS(8819), + [aux_sym__attribute_identifier_token1] = ACTIONS(8821), + [aux_sym_option_statement_token3] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8821), + [aux_sym_preprocessor_const_token1] = ACTIONS(8821), + [sym_static_modifier] = ACTIONS(8821), + [sym__dim_keyword] = ACTIONS(8821), + [sym__redim_keyword] = ACTIONS(8821), + [aux_sym_get_accessor_token1] = ACTIONS(8821), + [aux_sym_set_accessor_token1] = ACTIONS(8821), + [aux_sym_const_declaration_token1] = ACTIONS(8821), + [anon_sym_LPAREN] = ACTIONS(8819), + [aux_sym_as_type_clause_token2] = ACTIONS(8821), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8821), + [aux_sym_visibility_token1] = ACTIONS(8821), + [aux_sym_visibility_token2] = ACTIONS(8821), + [aux_sym_elseif_fragment_token1] = ACTIONS(8821), + [aux_sym_else_fragment_token1] = ACTIONS(8821), + [aux_sym_select_statement_token1] = ACTIONS(8821), + [aux_sym__multiline_for_tail_token1] = ACTIONS(10862), + [aux_sym__for_header_token1] = ACTIONS(8821), + [aux_sym_do_statement_token1] = ACTIONS(8821), + [aux_sym_do_statement_token2] = ACTIONS(8821), + [aux_sym_do_condition_token1] = ACTIONS(8821), + [aux_sym_with_statement_token1] = ACTIONS(8821), + [aux_sym_exit_statement_token1] = ACTIONS(8821), + [sym_end_statement] = ACTIONS(8819), + [aux_sym_on_goto_statement_token1] = ACTIONS(8821), + [aux_sym_on_goto_statement_token2] = ACTIONS(8821), + [aux_sym_on_error_statement_token2] = ACTIONS(8821), + [sym__ambiguous_redim_statement] = ACTIONS(8819), + [aux_sym_erase_statement_token1] = ACTIONS(8821), + [aux_sym_open_statement_token1] = ACTIONS(8821), + [aux_sym_file_mode_token2] = ACTIONS(8821), + [aux_sym_file_access_token2] = ACTIONS(8821), + [aux_sym_file_lock_token2] = ACTIONS(8821), + [aux_sym_print_statement_token1] = ACTIONS(8821), + [anon_sym_PLUS] = ACTIONS(8819), + [anon_sym_DASH] = ACTIONS(8821), + [anon_sym_QMARK] = ACTIONS(8819), + [aux_sym_close_statement_token1] = ACTIONS(8821), + [aux_sym_put_statement_token1] = ACTIONS(8821), + [aux_sym_unlock_statement_token1] = ACTIONS(8821), + [aux_sym_seek_statement_token1] = ACTIONS(8821), + [sym_reset_statement] = ACTIONS(8821), + [aux_sym_raise_event_statement_token1] = ACTIONS(8821), + [sym_stop_statement] = ACTIONS(8821), + [sym_beep_statement] = ACTIONS(8821), + [aux_sym_unload_statement_token1] = ACTIONS(8821), + [aux_sym_def_type_statement_token1] = ACTIONS(8821), + [aux_sym_def_type_statement_token2] = ACTIONS(8821), + [aux_sym_def_type_statement_token3] = ACTIONS(8821), + [aux_sym_def_type_statement_token4] = ACTIONS(8821), + [aux_sym_def_type_statement_token5] = ACTIONS(8821), + [aux_sym_def_type_statement_token6] = ACTIONS(8821), + [aux_sym_def_type_statement_token7] = ACTIONS(8821), + [aux_sym_def_type_statement_token8] = ACTIONS(8821), + [aux_sym_def_type_statement_token9] = ACTIONS(8821), + [aux_sym_def_type_statement_token10] = ACTIONS(8821), + [aux_sym_def_type_statement_token11] = ACTIONS(8821), + [aux_sym_def_type_statement_token12] = ACTIONS(8821), + [aux_sym_def_type_statement_token13] = ACTIONS(8821), + [aux_sym_def_type_statement_token14] = ACTIONS(8821), + [aux_sym_call_statement_token1] = ACTIONS(8821), + [sym__ambiguous_call_statement] = ACTIONS(8821), + [aux_sym_addressof_expression_token1] = ACTIONS(8821), + [aux_sym_type_of_expression_token1] = ACTIONS(8821), + [aux_sym_unary_expression_token1] = ACTIONS(8821), + [sym_string_literal] = ACTIONS(8819), + [sym_number_literal] = ACTIONS(10864), + [aux_sym_boolean_literal_token1] = ACTIONS(8821), + [aux_sym_boolean_literal_token2] = ACTIONS(8821), + [sym_nothing_literal] = ACTIONS(8821), + [sym_null_literal] = ACTIONS(8821), + [sym_empty_literal] = ACTIONS(8821), + [sym_date_literal] = ACTIONS(8819), + [anon_sym_POUND] = ACTIONS(8821), + }, + [STATE(5872)] = { + [sym_identifier] = ACTIONS(8666), + [sym_newline] = ACTIONS(8668), + [anon_sym_COLON] = ACTIONS(8668), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8666), + [aux_sym_frm_property_statement_token1] = ACTIONS(8666), + [anon_sym_DOT] = ACTIONS(8666), + [anon_sym_BANG] = ACTIONS(8668), + [aux_sym__attribute_identifier_token1] = ACTIONS(8666), + [aux_sym_option_statement_token3] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8666), + [aux_sym_preprocessor_const_token1] = ACTIONS(8666), + [sym_static_modifier] = ACTIONS(8666), + [sym__dim_keyword] = ACTIONS(8666), + [sym__redim_keyword] = ACTIONS(8666), + [aux_sym_get_accessor_token1] = ACTIONS(8666), + [aux_sym_set_accessor_token1] = ACTIONS(8666), + [anon_sym_COMMA] = ACTIONS(10866), + [aux_sym_const_declaration_token1] = ACTIONS(8666), + [anon_sym_LPAREN] = ACTIONS(8668), + [aux_sym_as_type_clause_token2] = ACTIONS(8666), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8666), + [aux_sym_visibility_token1] = ACTIONS(8666), + [aux_sym_visibility_token2] = ACTIONS(8666), + [aux_sym_elseif_fragment_token1] = ACTIONS(8666), + [aux_sym_else_fragment_token1] = ACTIONS(8666), + [aux_sym_select_statement_token1] = ACTIONS(8666), + [aux_sym__for_header_token1] = ACTIONS(8666), + [aux_sym_do_statement_token1] = ACTIONS(8666), + [aux_sym_do_statement_token2] = ACTIONS(8666), + [aux_sym_do_condition_token1] = ACTIONS(8666), + [aux_sym_with_statement_token1] = ACTIONS(8666), + [aux_sym_exit_statement_token1] = ACTIONS(8666), + [sym_end_statement] = ACTIONS(8668), + [aux_sym_on_goto_statement_token1] = ACTIONS(8666), + [aux_sym_on_goto_statement_token2] = ACTIONS(8666), + [aux_sym_on_error_statement_token2] = ACTIONS(8666), + [sym__ambiguous_redim_statement] = ACTIONS(8668), + [aux_sym_erase_statement_token1] = ACTIONS(8666), + [aux_sym_open_statement_token1] = ACTIONS(8666), + [aux_sym_file_mode_token2] = ACTIONS(8666), + [aux_sym_file_access_token2] = ACTIONS(8666), + [aux_sym_file_lock_token2] = ACTIONS(8666), + [aux_sym_print_statement_token1] = ACTIONS(8666), + [anon_sym_PLUS] = ACTIONS(8668), + [anon_sym_DASH] = ACTIONS(8666), + [anon_sym_QMARK] = ACTIONS(8668), + [aux_sym_close_statement_token1] = ACTIONS(8666), + [aux_sym_put_statement_token1] = ACTIONS(8666), + [aux_sym_unlock_statement_token1] = ACTIONS(8666), + [aux_sym_seek_statement_token1] = ACTIONS(8666), + [sym_reset_statement] = ACTIONS(8666), + [aux_sym_raise_event_statement_token1] = ACTIONS(8666), + [sym_stop_statement] = ACTIONS(8666), + [sym_beep_statement] = ACTIONS(8666), + [aux_sym_unload_statement_token1] = ACTIONS(8666), + [aux_sym_def_type_statement_token1] = ACTIONS(8666), + [aux_sym_def_type_statement_token2] = ACTIONS(8666), + [aux_sym_def_type_statement_token3] = ACTIONS(8666), + [aux_sym_def_type_statement_token4] = ACTIONS(8666), + [aux_sym_def_type_statement_token5] = ACTIONS(8666), + [aux_sym_def_type_statement_token6] = ACTIONS(8666), + [aux_sym_def_type_statement_token7] = ACTIONS(8666), + [aux_sym_def_type_statement_token8] = ACTIONS(8666), + [aux_sym_def_type_statement_token9] = ACTIONS(8666), + [aux_sym_def_type_statement_token10] = ACTIONS(8666), + [aux_sym_def_type_statement_token11] = ACTIONS(8666), + [aux_sym_def_type_statement_token12] = ACTIONS(8666), + [aux_sym_def_type_statement_token13] = ACTIONS(8666), + [aux_sym_def_type_statement_token14] = ACTIONS(8666), + [aux_sym_call_statement_token1] = ACTIONS(8666), + [sym__ambiguous_call_statement] = ACTIONS(8666), + [aux_sym_addressof_expression_token1] = ACTIONS(8666), + [aux_sym_type_of_expression_token1] = ACTIONS(8666), + [aux_sym_unary_expression_token1] = ACTIONS(8666), + [sym_string_literal] = ACTIONS(8668), + [sym_number_literal] = ACTIONS(8668), + [aux_sym_boolean_literal_token1] = ACTIONS(8666), + [aux_sym_boolean_literal_token2] = ACTIONS(8666), + [sym_nothing_literal] = ACTIONS(8666), + [sym_null_literal] = ACTIONS(8666), + [sym_empty_literal] = ACTIONS(8666), + [sym_date_literal] = ACTIONS(8668), + [anon_sym_POUND] = ACTIONS(8666), + }, + [STATE(5873)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(5839), + [sym_identifier] = ACTIONS(8772), + [sym_newline] = ACTIONS(8774), + [anon_sym_COLON] = ACTIONS(8774), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8772), + [aux_sym_frm_property_statement_token1] = ACTIONS(8772), + [anon_sym_DOT] = ACTIONS(8772), + [anon_sym_BANG] = ACTIONS(8774), + [aux_sym__attribute_identifier_token1] = ACTIONS(8772), + [aux_sym_option_statement_token3] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8772), + [aux_sym_preprocessor_const_token1] = ACTIONS(8772), + [sym_static_modifier] = ACTIONS(8772), + [sym__dim_keyword] = ACTIONS(8772), + [sym__redim_keyword] = ACTIONS(8772), + [aux_sym_get_accessor_token1] = ACTIONS(8772), + [aux_sym_set_accessor_token1] = ACTIONS(8772), + [aux_sym_const_declaration_token1] = ACTIONS(8772), + [anon_sym_LPAREN] = ACTIONS(8774), + [aux_sym_as_type_clause_token2] = ACTIONS(8772), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8772), + [aux_sym_visibility_token1] = ACTIONS(8772), + [aux_sym_visibility_token2] = ACTIONS(8772), + [aux_sym_elseif_fragment_token1] = ACTIONS(8772), + [aux_sym_else_fragment_token1] = ACTIONS(8772), + [aux_sym_select_statement_token1] = ACTIONS(8772), + [aux_sym__for_header_token1] = ACTIONS(8772), + [aux_sym_do_statement_token1] = ACTIONS(8772), + [aux_sym_do_condition_token1] = ACTIONS(8772), + [aux_sym_while_statement_token1] = ACTIONS(8772), + [aux_sym_with_statement_token1] = ACTIONS(8772), + [aux_sym_exit_statement_token1] = ACTIONS(8772), + [sym_end_statement] = ACTIONS(8774), + [aux_sym_on_goto_statement_token1] = ACTIONS(8772), + [aux_sym_on_goto_statement_token2] = ACTIONS(8772), + [aux_sym_on_error_statement_token2] = ACTIONS(8772), + [sym__ambiguous_redim_statement] = ACTIONS(8774), + [aux_sym_erase_statement_token1] = ACTIONS(8772), + [aux_sym_open_statement_token1] = ACTIONS(8772), + [aux_sym_file_mode_token2] = ACTIONS(8772), + [aux_sym_file_access_token2] = ACTIONS(8772), + [aux_sym_file_lock_token2] = ACTIONS(8772), + [aux_sym_print_statement_token1] = ACTIONS(8772), + [anon_sym_PLUS] = ACTIONS(8774), + [anon_sym_DASH] = ACTIONS(8772), + [anon_sym_QMARK] = ACTIONS(8774), + [aux_sym_close_statement_token1] = ACTIONS(8772), + [aux_sym_put_statement_token1] = ACTIONS(8772), + [aux_sym_unlock_statement_token1] = ACTIONS(8772), + [aux_sym_seek_statement_token1] = ACTIONS(8772), + [sym_reset_statement] = ACTIONS(8772), + [aux_sym_raise_event_statement_token1] = ACTIONS(8772), + [sym_stop_statement] = ACTIONS(8772), + [sym_beep_statement] = ACTIONS(8772), + [aux_sym_unload_statement_token1] = ACTIONS(8772), + [aux_sym_def_type_statement_token1] = ACTIONS(8772), + [aux_sym_def_type_statement_token2] = ACTIONS(8772), + [aux_sym_def_type_statement_token3] = ACTIONS(8772), + [aux_sym_def_type_statement_token4] = ACTIONS(8772), + [aux_sym_def_type_statement_token5] = ACTIONS(8772), + [aux_sym_def_type_statement_token6] = ACTIONS(8772), + [aux_sym_def_type_statement_token7] = ACTIONS(8772), + [aux_sym_def_type_statement_token8] = ACTIONS(8772), + [aux_sym_def_type_statement_token9] = ACTIONS(8772), + [aux_sym_def_type_statement_token10] = ACTIONS(8772), + [aux_sym_def_type_statement_token11] = ACTIONS(8772), + [aux_sym_def_type_statement_token12] = ACTIONS(8772), + [aux_sym_def_type_statement_token13] = ACTIONS(8772), + [aux_sym_def_type_statement_token14] = ACTIONS(8772), + [aux_sym_call_statement_token1] = ACTIONS(8772), + [sym__ambiguous_call_statement] = ACTIONS(8772), + [aux_sym_addressof_expression_token1] = ACTIONS(8772), + [aux_sym_type_of_expression_token1] = ACTIONS(8772), + [aux_sym_unary_expression_token1] = ACTIONS(8772), + [sym_string_literal] = ACTIONS(8774), + [sym_number_literal] = ACTIONS(8774), + [aux_sym_boolean_literal_token1] = ACTIONS(8772), + [aux_sym_boolean_literal_token2] = ACTIONS(8772), + [sym_nothing_literal] = ACTIONS(8772), + [sym_null_literal] = ACTIONS(8772), + [sym_empty_literal] = ACTIONS(8772), + [sym_date_literal] = ACTIONS(8774), + [anon_sym_POUND] = ACTIONS(8772), + }, + [STATE(5874)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5962), + [sym_identifier] = ACTIONS(8225), + [sym_newline] = ACTIONS(8227), + [anon_sym_COLON] = ACTIONS(8227), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8225), + [aux_sym_frm_property_statement_token1] = ACTIONS(8225), + [anon_sym_DOT] = ACTIONS(8225), + [anon_sym_BANG] = ACTIONS(8227), + [aux_sym__attribute_identifier_token1] = ACTIONS(8225), + [aux_sym_option_statement_token3] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8225), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8225), + [aux_sym_preprocessor_const_token1] = ACTIONS(8225), + [sym_static_modifier] = ACTIONS(8225), + [sym__dim_keyword] = ACTIONS(8225), + [sym__redim_keyword] = ACTIONS(8225), + [aux_sym_get_accessor_token1] = ACTIONS(8225), + [aux_sym_set_accessor_token1] = ACTIONS(8225), + [anon_sym_COMMA] = ACTIONS(10822), + [aux_sym_const_declaration_token1] = ACTIONS(8225), + [anon_sym_LPAREN] = ACTIONS(8227), + [aux_sym_as_type_clause_token2] = ACTIONS(8225), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8225), + [aux_sym_visibility_token1] = ACTIONS(8225), + [aux_sym_visibility_token2] = ACTIONS(8225), + [aux_sym_elseif_fragment_token1] = ACTIONS(8225), + [aux_sym_else_fragment_token1] = ACTIONS(8225), + [aux_sym_select_statement_token1] = ACTIONS(8225), + [aux_sym__for_header_token1] = ACTIONS(8225), + [aux_sym_do_statement_token1] = ACTIONS(8225), + [aux_sym_do_condition_token1] = ACTIONS(8225), + [aux_sym_with_statement_token1] = ACTIONS(8225), + [aux_sym_exit_statement_token1] = ACTIONS(8225), + [sym_end_statement] = ACTIONS(8227), + [aux_sym_on_goto_statement_token1] = ACTIONS(8225), + [aux_sym_on_goto_statement_token2] = ACTIONS(8225), + [aux_sym_on_error_statement_token2] = ACTIONS(8225), + [sym__ambiguous_redim_statement] = ACTIONS(8227), + [aux_sym_erase_statement_token1] = ACTIONS(8225), + [aux_sym_open_statement_token1] = ACTIONS(8225), + [aux_sym_file_mode_token2] = ACTIONS(8225), + [aux_sym_file_access_token2] = ACTIONS(8225), + [aux_sym_file_lock_token2] = ACTIONS(8225), + [aux_sym_print_statement_token1] = ACTIONS(8225), + [anon_sym_PLUS] = ACTIONS(8227), + [anon_sym_DASH] = ACTIONS(8225), + [anon_sym_QMARK] = ACTIONS(8227), + [aux_sym_close_statement_token1] = ACTIONS(8225), + [aux_sym_put_statement_token1] = ACTIONS(8225), + [aux_sym_unlock_statement_token1] = ACTIONS(8225), + [aux_sym_seek_statement_token1] = ACTIONS(8225), + [sym_reset_statement] = ACTIONS(8225), + [aux_sym_raise_event_statement_token1] = ACTIONS(8225), + [sym_stop_statement] = ACTIONS(8225), + [sym_beep_statement] = ACTIONS(8225), + [aux_sym_unload_statement_token1] = ACTIONS(8225), + [aux_sym_def_type_statement_token1] = ACTIONS(8225), + [aux_sym_def_type_statement_token2] = ACTIONS(8225), + [aux_sym_def_type_statement_token3] = ACTIONS(8225), + [aux_sym_def_type_statement_token4] = ACTIONS(8225), + [aux_sym_def_type_statement_token5] = ACTIONS(8225), + [aux_sym_def_type_statement_token6] = ACTIONS(8225), + [aux_sym_def_type_statement_token7] = ACTIONS(8225), + [aux_sym_def_type_statement_token8] = ACTIONS(8225), + [aux_sym_def_type_statement_token9] = ACTIONS(8225), + [aux_sym_def_type_statement_token10] = ACTIONS(8225), + [aux_sym_def_type_statement_token11] = ACTIONS(8225), + [aux_sym_def_type_statement_token12] = ACTIONS(8225), + [aux_sym_def_type_statement_token13] = ACTIONS(8225), + [aux_sym_def_type_statement_token14] = ACTIONS(8225), + [aux_sym_call_statement_token1] = ACTIONS(8225), + [sym__ambiguous_call_statement] = ACTIONS(8225), + [aux_sym_addressof_expression_token1] = ACTIONS(8225), + [aux_sym_type_of_expression_token1] = ACTIONS(8225), + [aux_sym_unary_expression_token1] = ACTIONS(8225), + [sym_string_literal] = ACTIONS(8227), + [sym_number_literal] = ACTIONS(8227), + [aux_sym_boolean_literal_token1] = ACTIONS(8225), + [aux_sym_boolean_literal_token2] = ACTIONS(8225), + [sym_nothing_literal] = ACTIONS(8225), + [sym_null_literal] = ACTIONS(8225), + [sym_empty_literal] = ACTIONS(8225), + [sym_date_literal] = ACTIONS(8227), + [anon_sym_POUND] = ACTIONS(8225), + }, + [STATE(5875)] = { + [sym_argument_list] = STATE(10051), + [sym_identifier] = ACTIONS(8794), + [sym_newline] = ACTIONS(8796), + [anon_sym_COLON] = ACTIONS(8796), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8794), + [aux_sym_frm_property_statement_token1] = ACTIONS(8794), + [anon_sym_DOT] = ACTIONS(8794), + [anon_sym_BANG] = ACTIONS(8796), + [aux_sym__attribute_identifier_token1] = ACTIONS(8794), + [aux_sym_option_statement_token3] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8794), + [aux_sym_preprocessor_const_token1] = ACTIONS(8794), + [sym_static_modifier] = ACTIONS(8794), + [sym__dim_keyword] = ACTIONS(8794), + [sym__redim_keyword] = ACTIONS(8794), + [aux_sym_get_accessor_token1] = ACTIONS(8794), + [aux_sym_set_accessor_token1] = ACTIONS(8794), + [aux_sym_const_declaration_token1] = ACTIONS(8794), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(8794), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8794), + [aux_sym_visibility_token1] = ACTIONS(8794), + [aux_sym_visibility_token2] = ACTIONS(8794), + [aux_sym_elseif_fragment_token1] = ACTIONS(8794), + [aux_sym_else_fragment_token1] = ACTIONS(8794), + [aux_sym_select_statement_token1] = ACTIONS(8794), + [aux_sym__for_header_token1] = ACTIONS(8794), + [aux_sym_do_statement_token1] = ACTIONS(8794), + [aux_sym_do_condition_token1] = ACTIONS(8794), + [aux_sym_while_statement_token1] = ACTIONS(8794), + [aux_sym_with_statement_token1] = ACTIONS(8794), + [aux_sym_exit_statement_token1] = ACTIONS(8794), + [sym_end_statement] = ACTIONS(8796), + [aux_sym_on_goto_statement_token1] = ACTIONS(8794), + [aux_sym_on_goto_statement_token2] = ACTIONS(8794), + [aux_sym_on_error_statement_token2] = ACTIONS(8794), + [sym__ambiguous_redim_statement] = ACTIONS(8796), + [aux_sym_erase_statement_token1] = ACTIONS(8794), + [aux_sym_open_statement_token1] = ACTIONS(8794), + [aux_sym_file_mode_token2] = ACTIONS(8794), + [aux_sym_file_access_token2] = ACTIONS(8794), + [aux_sym_file_lock_token2] = ACTIONS(8794), + [aux_sym_print_statement_token1] = ACTIONS(8794), + [anon_sym_PLUS] = ACTIONS(8796), + [anon_sym_DASH] = ACTIONS(8794), + [anon_sym_QMARK] = ACTIONS(8796), + [aux_sym_close_statement_token1] = ACTIONS(8794), + [aux_sym_put_statement_token1] = ACTIONS(8794), + [aux_sym_unlock_statement_token1] = ACTIONS(8794), + [aux_sym_seek_statement_token1] = ACTIONS(8794), + [sym_reset_statement] = ACTIONS(8794), + [aux_sym_raise_event_statement_token1] = ACTIONS(8794), + [sym_stop_statement] = ACTIONS(8794), + [sym_beep_statement] = ACTIONS(8794), + [aux_sym_unload_statement_token1] = ACTIONS(8794), + [aux_sym_def_type_statement_token1] = ACTIONS(8794), + [aux_sym_def_type_statement_token2] = ACTIONS(8794), + [aux_sym_def_type_statement_token3] = ACTIONS(8794), + [aux_sym_def_type_statement_token4] = ACTIONS(8794), + [aux_sym_def_type_statement_token5] = ACTIONS(8794), + [aux_sym_def_type_statement_token6] = ACTIONS(8794), + [aux_sym_def_type_statement_token7] = ACTIONS(8794), + [aux_sym_def_type_statement_token8] = ACTIONS(8794), + [aux_sym_def_type_statement_token9] = ACTIONS(8794), + [aux_sym_def_type_statement_token10] = ACTIONS(8794), + [aux_sym_def_type_statement_token11] = ACTIONS(8794), + [aux_sym_def_type_statement_token12] = ACTIONS(8794), + [aux_sym_def_type_statement_token13] = ACTIONS(8794), + [aux_sym_def_type_statement_token14] = ACTIONS(8794), + [aux_sym_call_statement_token1] = ACTIONS(8794), + [sym__ambiguous_call_statement] = ACTIONS(8794), + [aux_sym_addressof_expression_token1] = ACTIONS(8794), + [aux_sym_type_of_expression_token1] = ACTIONS(8794), + [aux_sym_unary_expression_token1] = ACTIONS(8794), + [sym_string_literal] = ACTIONS(8796), + [sym_number_literal] = ACTIONS(8796), + [aux_sym_boolean_literal_token1] = ACTIONS(8794), + [aux_sym_boolean_literal_token2] = ACTIONS(8794), + [sym_nothing_literal] = ACTIONS(8794), + [sym_null_literal] = ACTIONS(8794), + [sym_empty_literal] = ACTIONS(8794), + [sym_date_literal] = ACTIONS(8796), + [anon_sym_POUND] = ACTIONS(8794), + }, + [STATE(5876)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_while_statement_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(5877)] = { + [sym_identifier] = ACTIONS(8962), + [sym_newline] = ACTIONS(8964), + [anon_sym_COLON] = ACTIONS(8964), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8962), + [aux_sym_frm_property_statement_token1] = ACTIONS(8962), + [anon_sym_DOT] = ACTIONS(8962), + [anon_sym_BANG] = ACTIONS(8964), + [aux_sym__attribute_identifier_token1] = ACTIONS(8962), + [aux_sym_option_statement_token3] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8962), + [aux_sym_preprocessor_const_token1] = ACTIONS(8962), + [sym_static_modifier] = ACTIONS(8962), + [sym__dim_keyword] = ACTIONS(8962), + [sym__redim_keyword] = ACTIONS(8962), + [aux_sym_get_accessor_token1] = ACTIONS(8962), + [aux_sym_set_accessor_token1] = ACTIONS(8962), + [anon_sym_COMMA] = ACTIONS(8964), + [aux_sym_const_declaration_token1] = ACTIONS(8962), + [anon_sym_LPAREN] = ACTIONS(8964), + [aux_sym_as_type_clause_token2] = ACTIONS(8962), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8962), + [aux_sym_visibility_token1] = ACTIONS(8962), + [aux_sym_visibility_token2] = ACTIONS(8962), + [aux_sym_elseif_fragment_token1] = ACTIONS(8962), + [aux_sym_else_fragment_token1] = ACTIONS(8962), + [aux_sym_select_statement_token1] = ACTIONS(8962), + [aux_sym__for_header_token1] = ACTIONS(8962), + [aux_sym_do_statement_token1] = ACTIONS(8962), + [aux_sym_do_condition_token1] = ACTIONS(8962), + [aux_sym_with_statement_token1] = ACTIONS(8962), + [aux_sym_exit_statement_token1] = ACTIONS(8962), + [sym_end_statement] = ACTIONS(8964), + [aux_sym_on_goto_statement_token1] = ACTIONS(8962), + [aux_sym_on_goto_statement_token2] = ACTIONS(8962), + [aux_sym_on_error_statement_token2] = ACTIONS(8962), + [sym__ambiguous_redim_statement] = ACTIONS(8964), + [aux_sym_erase_statement_token1] = ACTIONS(8962), + [aux_sym_open_statement_token1] = ACTIONS(8962), + [aux_sym_file_mode_token2] = ACTIONS(8962), + [aux_sym_file_access_token2] = ACTIONS(8962), + [aux_sym_file_lock_token2] = ACTIONS(8962), + [aux_sym_print_statement_token1] = ACTIONS(8962), + [anon_sym_PLUS] = ACTIONS(8964), + [anon_sym_DASH] = ACTIONS(8962), + [anon_sym_QMARK] = ACTIONS(8964), + [aux_sym_close_statement_token1] = ACTIONS(8962), + [aux_sym_put_statement_token1] = ACTIONS(8962), + [aux_sym_unlock_statement_token1] = ACTIONS(8962), + [aux_sym_seek_statement_token1] = ACTIONS(8962), + [sym_reset_statement] = ACTIONS(8962), + [aux_sym_raise_event_statement_token1] = ACTIONS(8962), + [sym_stop_statement] = ACTIONS(8962), + [sym_beep_statement] = ACTIONS(8962), + [aux_sym_unload_statement_token1] = ACTIONS(8962), + [aux_sym_def_type_statement_token1] = ACTIONS(8962), + [aux_sym_def_type_statement_token2] = ACTIONS(8962), + [aux_sym_def_type_statement_token3] = ACTIONS(8962), + [aux_sym_def_type_statement_token4] = ACTIONS(8962), + [aux_sym_def_type_statement_token5] = ACTIONS(8962), + [aux_sym_def_type_statement_token6] = ACTIONS(8962), + [aux_sym_def_type_statement_token7] = ACTIONS(8962), + [aux_sym_def_type_statement_token8] = ACTIONS(8962), + [aux_sym_def_type_statement_token9] = ACTIONS(8962), + [aux_sym_def_type_statement_token10] = ACTIONS(8962), + [aux_sym_def_type_statement_token11] = ACTIONS(8962), + [aux_sym_def_type_statement_token12] = ACTIONS(8962), + [aux_sym_def_type_statement_token13] = ACTIONS(8962), + [aux_sym_def_type_statement_token14] = ACTIONS(8962), + [aux_sym_call_statement_token1] = ACTIONS(8962), + [sym__ambiguous_call_statement] = ACTIONS(8962), + [aux_sym_addressof_expression_token1] = ACTIONS(8962), + [aux_sym_type_of_expression_token1] = ACTIONS(8962), + [aux_sym_unary_expression_token1] = ACTIONS(8962), + [sym_string_literal] = ACTIONS(8964), + [sym_number_literal] = ACTIONS(8964), + [aux_sym_boolean_literal_token1] = ACTIONS(8962), + [aux_sym_boolean_literal_token2] = ACTIONS(8962), + [sym_nothing_literal] = ACTIONS(8962), + [sym_null_literal] = ACTIONS(8962), + [sym_empty_literal] = ACTIONS(8962), + [sym_date_literal] = ACTIONS(8964), + [anon_sym_POUND] = ACTIONS(8962), + }, + [STATE(5878)] = { + [sym_identifier] = ACTIONS(8857), + [sym_newline] = ACTIONS(8859), + [anon_sym_COLON] = ACTIONS(8859), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8857), + [aux_sym_frm_property_statement_token1] = ACTIONS(8857), + [anon_sym_DOT] = ACTIONS(8857), + [anon_sym_BANG] = ACTIONS(8859), + [aux_sym__attribute_identifier_token1] = ACTIONS(8857), + [aux_sym_option_statement_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8857), + [aux_sym_preprocessor_const_token1] = ACTIONS(8857), + [sym_static_modifier] = ACTIONS(8857), + [sym__dim_keyword] = ACTIONS(8857), + [sym__redim_keyword] = ACTIONS(8857), + [aux_sym_get_accessor_token1] = ACTIONS(8857), + [aux_sym_set_accessor_token1] = ACTIONS(8857), + [aux_sym_const_declaration_token1] = ACTIONS(8857), + [anon_sym_LPAREN] = ACTIONS(8859), + [aux_sym_as_type_clause_token2] = ACTIONS(8857), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8857), + [aux_sym_visibility_token1] = ACTIONS(8857), + [aux_sym_visibility_token2] = ACTIONS(8857), + [aux_sym_elseif_fragment_token1] = ACTIONS(8857), + [aux_sym_else_fragment_token1] = ACTIONS(8857), + [aux_sym_select_statement_token1] = ACTIONS(8857), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8857), + [aux_sym__for_header_token1] = ACTIONS(8857), + [aux_sym_do_statement_token1] = ACTIONS(8857), + [aux_sym_do_statement_token2] = ACTIONS(8857), + [aux_sym_do_condition_token1] = ACTIONS(8857), + [aux_sym_with_statement_token1] = ACTIONS(8857), + [aux_sym_exit_statement_token1] = ACTIONS(8857), + [sym_end_statement] = ACTIONS(8859), + [aux_sym_on_goto_statement_token1] = ACTIONS(8857), + [aux_sym_on_goto_statement_token2] = ACTIONS(8857), + [aux_sym_on_error_statement_token2] = ACTIONS(8857), + [sym__ambiguous_redim_statement] = ACTIONS(8859), + [aux_sym_erase_statement_token1] = ACTIONS(8857), + [aux_sym_open_statement_token1] = ACTIONS(8857), + [aux_sym_file_mode_token2] = ACTIONS(8857), + [aux_sym_file_access_token2] = ACTIONS(8857), + [aux_sym_file_lock_token2] = ACTIONS(8857), + [aux_sym_print_statement_token1] = ACTIONS(8857), + [anon_sym_PLUS] = ACTIONS(8859), + [anon_sym_DASH] = ACTIONS(8857), + [anon_sym_QMARK] = ACTIONS(8859), + [aux_sym_close_statement_token1] = ACTIONS(8857), + [aux_sym_put_statement_token1] = ACTIONS(8857), + [aux_sym_unlock_statement_token1] = ACTIONS(8857), + [aux_sym_seek_statement_token1] = ACTIONS(8857), + [sym_reset_statement] = ACTIONS(8857), + [aux_sym_raise_event_statement_token1] = ACTIONS(8857), + [sym_stop_statement] = ACTIONS(8857), + [sym_beep_statement] = ACTIONS(8857), + [aux_sym_unload_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token2] = ACTIONS(8857), + [aux_sym_def_type_statement_token3] = ACTIONS(8857), + [aux_sym_def_type_statement_token4] = ACTIONS(8857), + [aux_sym_def_type_statement_token5] = ACTIONS(8857), + [aux_sym_def_type_statement_token6] = ACTIONS(8857), + [aux_sym_def_type_statement_token7] = ACTIONS(8857), + [aux_sym_def_type_statement_token8] = ACTIONS(8857), + [aux_sym_def_type_statement_token9] = ACTIONS(8857), + [aux_sym_def_type_statement_token10] = ACTIONS(8857), + [aux_sym_def_type_statement_token11] = ACTIONS(8857), + [aux_sym_def_type_statement_token12] = ACTIONS(8857), + [aux_sym_def_type_statement_token13] = ACTIONS(8857), + [aux_sym_def_type_statement_token14] = ACTIONS(8857), + [aux_sym_call_statement_token1] = ACTIONS(8857), + [sym__ambiguous_call_statement] = ACTIONS(8857), + [aux_sym_addressof_expression_token1] = ACTIONS(8857), + [aux_sym_type_of_expression_token1] = ACTIONS(8857), + [aux_sym_unary_expression_token1] = ACTIONS(8857), + [sym_string_literal] = ACTIONS(8859), + [sym_number_literal] = ACTIONS(8859), + [aux_sym_boolean_literal_token1] = ACTIONS(8857), + [aux_sym_boolean_literal_token2] = ACTIONS(8857), + [sym_nothing_literal] = ACTIONS(8857), + [sym_null_literal] = ACTIONS(8857), + [sym_empty_literal] = ACTIONS(8857), + [sym_date_literal] = ACTIONS(8859), + [anon_sym_POUND] = ACTIONS(8857), + }, + [STATE(5879)] = { + [aux_sym_redim_statement_repeat1] = STATE(6031), + [sym_identifier] = ACTIONS(8368), + [sym_newline] = ACTIONS(8370), + [anon_sym_COLON] = ACTIONS(8370), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8368), + [aux_sym_frm_property_statement_token1] = ACTIONS(8368), + [anon_sym_DOT] = ACTIONS(8368), + [anon_sym_BANG] = ACTIONS(8370), + [aux_sym__attribute_identifier_token1] = ACTIONS(8368), + [aux_sym_option_statement_token3] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8368), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8368), + [aux_sym_preprocessor_const_token1] = ACTIONS(8368), + [sym_static_modifier] = ACTIONS(8368), + [sym__dim_keyword] = ACTIONS(8368), + [sym__redim_keyword] = ACTIONS(8368), + [aux_sym_get_accessor_token1] = ACTIONS(8368), + [aux_sym_set_accessor_token1] = ACTIONS(8368), + [anon_sym_COMMA] = ACTIONS(10846), + [aux_sym_const_declaration_token1] = ACTIONS(8368), + [anon_sym_LPAREN] = ACTIONS(8370), + [aux_sym_as_type_clause_token2] = ACTIONS(8368), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8368), + [aux_sym_visibility_token1] = ACTIONS(8368), + [aux_sym_visibility_token2] = ACTIONS(8368), + [aux_sym_elseif_fragment_token1] = ACTIONS(8368), + [aux_sym_else_fragment_token1] = ACTIONS(8368), + [aux_sym_select_statement_token1] = ACTIONS(8368), + [aux_sym__for_header_token1] = ACTIONS(8368), + [aux_sym_do_statement_token1] = ACTIONS(8368), + [aux_sym_do_condition_token1] = ACTIONS(8368), + [aux_sym_with_statement_token1] = ACTIONS(8368), + [aux_sym_exit_statement_token1] = ACTIONS(8368), + [sym_end_statement] = ACTIONS(8370), + [aux_sym_on_goto_statement_token1] = ACTIONS(8368), + [aux_sym_on_goto_statement_token2] = ACTIONS(8368), + [aux_sym_on_error_statement_token2] = ACTIONS(8368), + [sym__ambiguous_redim_statement] = ACTIONS(8370), + [aux_sym_erase_statement_token1] = ACTIONS(8368), + [aux_sym_open_statement_token1] = ACTIONS(8368), + [aux_sym_file_mode_token2] = ACTIONS(8368), + [aux_sym_file_access_token2] = ACTIONS(8368), + [aux_sym_file_lock_token2] = ACTIONS(8368), + [aux_sym_print_statement_token1] = ACTIONS(8368), + [anon_sym_PLUS] = ACTIONS(8370), + [anon_sym_DASH] = ACTIONS(8368), + [anon_sym_QMARK] = ACTIONS(8370), + [aux_sym_close_statement_token1] = ACTIONS(8368), + [aux_sym_put_statement_token1] = ACTIONS(8368), + [aux_sym_unlock_statement_token1] = ACTIONS(8368), + [aux_sym_seek_statement_token1] = ACTIONS(8368), + [sym_reset_statement] = ACTIONS(8368), + [aux_sym_raise_event_statement_token1] = ACTIONS(8368), + [sym_stop_statement] = ACTIONS(8368), + [sym_beep_statement] = ACTIONS(8368), + [aux_sym_unload_statement_token1] = ACTIONS(8368), + [aux_sym_def_type_statement_token1] = ACTIONS(8368), + [aux_sym_def_type_statement_token2] = ACTIONS(8368), + [aux_sym_def_type_statement_token3] = ACTIONS(8368), + [aux_sym_def_type_statement_token4] = ACTIONS(8368), + [aux_sym_def_type_statement_token5] = ACTIONS(8368), + [aux_sym_def_type_statement_token6] = ACTIONS(8368), + [aux_sym_def_type_statement_token7] = ACTIONS(8368), + [aux_sym_def_type_statement_token8] = ACTIONS(8368), + [aux_sym_def_type_statement_token9] = ACTIONS(8368), + [aux_sym_def_type_statement_token10] = ACTIONS(8368), + [aux_sym_def_type_statement_token11] = ACTIONS(8368), + [aux_sym_def_type_statement_token12] = ACTIONS(8368), + [aux_sym_def_type_statement_token13] = ACTIONS(8368), + [aux_sym_def_type_statement_token14] = ACTIONS(8368), + [aux_sym_call_statement_token1] = ACTIONS(8368), + [sym__ambiguous_call_statement] = ACTIONS(8368), + [aux_sym_addressof_expression_token1] = ACTIONS(8368), + [aux_sym_type_of_expression_token1] = ACTIONS(8368), + [aux_sym_unary_expression_token1] = ACTIONS(8368), + [sym_string_literal] = ACTIONS(8370), + [sym_number_literal] = ACTIONS(8370), + [aux_sym_boolean_literal_token1] = ACTIONS(8368), + [aux_sym_boolean_literal_token2] = ACTIONS(8368), + [sym_nothing_literal] = ACTIONS(8368), + [sym_null_literal] = ACTIONS(8368), + [sym_empty_literal] = ACTIONS(8368), + [sym_date_literal] = ACTIONS(8370), + [anon_sym_POUND] = ACTIONS(8368), + }, + [STATE(5880)] = { + [sym_identifier] = ACTIONS(8980), + [sym_newline] = ACTIONS(8982), + [anon_sym_COLON] = ACTIONS(8982), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8980), + [aux_sym_frm_property_statement_token1] = ACTIONS(8980), + [anon_sym_DOT] = ACTIONS(8980), + [anon_sym_BANG] = ACTIONS(8982), + [aux_sym__attribute_identifier_token1] = ACTIONS(8980), + [aux_sym_option_statement_token3] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8980), + [aux_sym_preprocessor_const_token1] = ACTIONS(8980), + [sym_static_modifier] = ACTIONS(8980), + [sym__dim_keyword] = ACTIONS(8980), + [sym__redim_keyword] = ACTIONS(8980), + [aux_sym_get_accessor_token1] = ACTIONS(8980), + [aux_sym_set_accessor_token1] = ACTIONS(8980), + [aux_sym_const_declaration_token1] = ACTIONS(8980), + [anon_sym_LPAREN] = ACTIONS(8982), + [aux_sym_as_type_clause_token2] = ACTIONS(8980), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8980), + [aux_sym_visibility_token1] = ACTIONS(8980), + [aux_sym_visibility_token2] = ACTIONS(8980), + [aux_sym_elseif_fragment_token1] = ACTIONS(8980), + [aux_sym_else_fragment_token1] = ACTIONS(8980), + [aux_sym_select_statement_token1] = ACTIONS(8980), + [aux_sym__for_header_token1] = ACTIONS(8980), + [aux_sym_do_statement_token1] = ACTIONS(8980), + [aux_sym_do_condition_token1] = ACTIONS(8980), + [aux_sym_with_statement_token1] = ACTIONS(8980), + [aux_sym_exit_statement_token1] = ACTIONS(8980), + [sym_end_statement] = ACTIONS(8982), + [aux_sym_on_goto_statement_token1] = ACTIONS(8980), + [aux_sym_on_goto_statement_token2] = ACTIONS(8980), + [aux_sym_on_error_statement_token2] = ACTIONS(8980), + [sym__ambiguous_redim_statement] = ACTIONS(8982), + [aux_sym_erase_statement_token1] = ACTIONS(8980), + [aux_sym_open_statement_token1] = ACTIONS(8980), + [aux_sym_open_statement_token3] = ACTIONS(10868), + [aux_sym_file_mode_token2] = ACTIONS(8980), + [aux_sym_file_access_token2] = ACTIONS(8980), + [aux_sym_file_lock_token2] = ACTIONS(8980), + [aux_sym_print_statement_token1] = ACTIONS(8980), + [anon_sym_PLUS] = ACTIONS(8982), + [anon_sym_DASH] = ACTIONS(8980), + [anon_sym_QMARK] = ACTIONS(8982), + [aux_sym_close_statement_token1] = ACTIONS(8980), + [aux_sym_put_statement_token1] = ACTIONS(8980), + [aux_sym_unlock_statement_token1] = ACTIONS(8980), + [aux_sym_seek_statement_token1] = ACTIONS(8980), + [sym_reset_statement] = ACTIONS(8980), + [aux_sym_raise_event_statement_token1] = ACTIONS(8980), + [sym_stop_statement] = ACTIONS(8980), + [sym_beep_statement] = ACTIONS(8980), + [aux_sym_unload_statement_token1] = ACTIONS(8980), + [aux_sym_def_type_statement_token1] = ACTIONS(8980), + [aux_sym_def_type_statement_token2] = ACTIONS(8980), + [aux_sym_def_type_statement_token3] = ACTIONS(8980), + [aux_sym_def_type_statement_token4] = ACTIONS(8980), + [aux_sym_def_type_statement_token5] = ACTIONS(8980), + [aux_sym_def_type_statement_token6] = ACTIONS(8980), + [aux_sym_def_type_statement_token7] = ACTIONS(8980), + [aux_sym_def_type_statement_token8] = ACTIONS(8980), + [aux_sym_def_type_statement_token9] = ACTIONS(8980), + [aux_sym_def_type_statement_token10] = ACTIONS(8980), + [aux_sym_def_type_statement_token11] = ACTIONS(8980), + [aux_sym_def_type_statement_token12] = ACTIONS(8980), + [aux_sym_def_type_statement_token13] = ACTIONS(8980), + [aux_sym_def_type_statement_token14] = ACTIONS(8980), + [aux_sym_call_statement_token1] = ACTIONS(8980), + [sym__ambiguous_call_statement] = ACTIONS(8980), + [aux_sym_addressof_expression_token1] = ACTIONS(8980), + [aux_sym_type_of_expression_token1] = ACTIONS(8980), + [aux_sym_unary_expression_token1] = ACTIONS(8980), + [sym_string_literal] = ACTIONS(8982), + [sym_number_literal] = ACTIONS(8982), + [aux_sym_boolean_literal_token1] = ACTIONS(8980), + [aux_sym_boolean_literal_token2] = ACTIONS(8980), + [sym_nothing_literal] = ACTIONS(8980), + [sym_null_literal] = ACTIONS(8980), + [sym_empty_literal] = ACTIONS(8980), + [sym_date_literal] = ACTIONS(8982), + [anon_sym_POUND] = ACTIONS(8980), + }, + [STATE(5881)] = { + [sym_do_condition] = STATE(7181), + [sym_identifier] = ACTIONS(8374), + [sym_newline] = ACTIONS(8376), + [anon_sym_COLON] = ACTIONS(8376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8374), + [aux_sym_frm_property_statement_token1] = ACTIONS(8374), + [anon_sym_DOT] = ACTIONS(8374), + [anon_sym_BANG] = ACTIONS(8376), + [aux_sym__attribute_identifier_token1] = ACTIONS(8374), + [aux_sym_option_statement_token3] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8374), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8374), + [aux_sym_preprocessor_const_token1] = ACTIONS(8374), + [sym_static_modifier] = ACTIONS(8374), + [sym__dim_keyword] = ACTIONS(8374), + [sym__redim_keyword] = ACTIONS(8374), + [aux_sym_get_accessor_token1] = ACTIONS(8374), + [aux_sym_set_accessor_token1] = ACTIONS(8374), + [aux_sym_const_declaration_token1] = ACTIONS(8374), + [anon_sym_LPAREN] = ACTIONS(8376), + [aux_sym_as_type_clause_token2] = ACTIONS(8374), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8374), + [aux_sym_visibility_token1] = ACTIONS(8374), + [aux_sym_visibility_token2] = ACTIONS(8374), + [aux_sym_elseif_fragment_token1] = ACTIONS(8374), + [aux_sym_else_fragment_token1] = ACTIONS(8374), + [aux_sym_select_statement_token1] = ACTIONS(8374), + [aux_sym__for_header_token1] = ACTIONS(8374), + [aux_sym_do_statement_token1] = ACTIONS(8374), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8374), + [aux_sym_exit_statement_token1] = ACTIONS(8374), + [sym_end_statement] = ACTIONS(8376), + [aux_sym_on_goto_statement_token1] = ACTIONS(8374), + [aux_sym_on_goto_statement_token2] = ACTIONS(8374), + [aux_sym_on_error_statement_token2] = ACTIONS(8374), + [sym__ambiguous_redim_statement] = ACTIONS(8376), + [aux_sym_erase_statement_token1] = ACTIONS(8374), + [aux_sym_open_statement_token1] = ACTIONS(8374), + [aux_sym_file_mode_token2] = ACTIONS(8374), + [aux_sym_file_access_token2] = ACTIONS(8374), + [aux_sym_file_lock_token2] = ACTIONS(8374), + [aux_sym_print_statement_token1] = ACTIONS(8374), + [anon_sym_PLUS] = ACTIONS(8376), + [anon_sym_DASH] = ACTIONS(8374), + [anon_sym_QMARK] = ACTIONS(8376), + [aux_sym_close_statement_token1] = ACTIONS(8374), + [aux_sym_put_statement_token1] = ACTIONS(8374), + [aux_sym_unlock_statement_token1] = ACTIONS(8374), + [aux_sym_seek_statement_token1] = ACTIONS(8374), + [sym_reset_statement] = ACTIONS(8374), + [aux_sym_raise_event_statement_token1] = ACTIONS(8374), + [sym_stop_statement] = ACTIONS(8374), + [sym_beep_statement] = ACTIONS(8374), + [aux_sym_unload_statement_token1] = ACTIONS(8374), + [aux_sym_def_type_statement_token1] = ACTIONS(8374), + [aux_sym_def_type_statement_token2] = ACTIONS(8374), + [aux_sym_def_type_statement_token3] = ACTIONS(8374), + [aux_sym_def_type_statement_token4] = ACTIONS(8374), + [aux_sym_def_type_statement_token5] = ACTIONS(8374), + [aux_sym_def_type_statement_token6] = ACTIONS(8374), + [aux_sym_def_type_statement_token7] = ACTIONS(8374), + [aux_sym_def_type_statement_token8] = ACTIONS(8374), + [aux_sym_def_type_statement_token9] = ACTIONS(8374), + [aux_sym_def_type_statement_token10] = ACTIONS(8374), + [aux_sym_def_type_statement_token11] = ACTIONS(8374), + [aux_sym_def_type_statement_token12] = ACTIONS(8374), + [aux_sym_def_type_statement_token13] = ACTIONS(8374), + [aux_sym_def_type_statement_token14] = ACTIONS(8374), + [aux_sym_call_statement_token1] = ACTIONS(8374), + [sym__ambiguous_call_statement] = ACTIONS(8374), + [aux_sym_addressof_expression_token1] = ACTIONS(8374), + [aux_sym_type_of_expression_token1] = ACTIONS(8374), + [aux_sym_unary_expression_token1] = ACTIONS(8374), + [sym_string_literal] = ACTIONS(8376), + [sym_number_literal] = ACTIONS(8376), + [aux_sym_boolean_literal_token1] = ACTIONS(8374), + [aux_sym_boolean_literal_token2] = ACTIONS(8374), + [sym_nothing_literal] = ACTIONS(8374), + [sym_null_literal] = ACTIONS(8374), + [sym_empty_literal] = ACTIONS(8374), + [sym_date_literal] = ACTIONS(8376), + [anon_sym_POUND] = ACTIONS(8374), + }, + [STATE(5882)] = { + [sym_identifier] = ACTIONS(8652), + [sym_newline] = ACTIONS(8654), + [anon_sym_COLON] = ACTIONS(8654), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8652), + [aux_sym_frm_property_statement_token1] = ACTIONS(8652), + [anon_sym_DOT] = ACTIONS(8652), + [anon_sym_BANG] = ACTIONS(8654), + [aux_sym__attribute_identifier_token1] = ACTIONS(8652), + [aux_sym_option_statement_token3] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8652), + [aux_sym_preprocessor_const_token1] = ACTIONS(8652), + [sym_static_modifier] = ACTIONS(8652), + [sym__dim_keyword] = ACTIONS(8652), + [sym__redim_keyword] = ACTIONS(8652), + [aux_sym_get_accessor_token1] = ACTIONS(8652), + [aux_sym_set_accessor_token1] = ACTIONS(8652), + [anon_sym_COMMA] = ACTIONS(10870), + [aux_sym_const_declaration_token1] = ACTIONS(8652), + [anon_sym_LPAREN] = ACTIONS(8654), + [aux_sym_as_type_clause_token2] = ACTIONS(8652), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8652), + [aux_sym_visibility_token1] = ACTIONS(8652), + [aux_sym_visibility_token2] = ACTIONS(8652), + [aux_sym_elseif_fragment_token1] = ACTIONS(8652), + [aux_sym_else_fragment_token1] = ACTIONS(8652), + [aux_sym_select_statement_token1] = ACTIONS(8652), + [aux_sym__for_header_token1] = ACTIONS(8652), + [aux_sym_do_statement_token1] = ACTIONS(8652), + [aux_sym_do_condition_token1] = ACTIONS(8652), + [aux_sym_while_statement_token1] = ACTIONS(8652), + [aux_sym_with_statement_token1] = ACTIONS(8652), + [aux_sym_exit_statement_token1] = ACTIONS(8652), + [sym_end_statement] = ACTIONS(8654), + [aux_sym_on_goto_statement_token1] = ACTIONS(8652), + [aux_sym_on_goto_statement_token2] = ACTIONS(8652), + [aux_sym_on_error_statement_token2] = ACTIONS(8652), + [sym__ambiguous_redim_statement] = ACTIONS(8654), + [aux_sym_erase_statement_token1] = ACTIONS(8652), + [aux_sym_open_statement_token1] = ACTIONS(8652), + [aux_sym_file_mode_token2] = ACTIONS(8652), + [aux_sym_file_access_token2] = ACTIONS(8652), + [aux_sym_file_lock_token2] = ACTIONS(8652), + [aux_sym_print_statement_token1] = ACTIONS(8652), + [anon_sym_PLUS] = ACTIONS(8654), + [anon_sym_DASH] = ACTIONS(8652), + [anon_sym_QMARK] = ACTIONS(8654), + [aux_sym_close_statement_token1] = ACTIONS(8652), + [aux_sym_put_statement_token1] = ACTIONS(8652), + [aux_sym_unlock_statement_token1] = ACTIONS(8652), + [aux_sym_seek_statement_token1] = ACTIONS(8652), + [sym_reset_statement] = ACTIONS(8652), + [aux_sym_raise_event_statement_token1] = ACTIONS(8652), + [sym_stop_statement] = ACTIONS(8652), + [sym_beep_statement] = ACTIONS(8652), + [aux_sym_unload_statement_token1] = ACTIONS(8652), + [aux_sym_def_type_statement_token1] = ACTIONS(8652), + [aux_sym_def_type_statement_token2] = ACTIONS(8652), + [aux_sym_def_type_statement_token3] = ACTIONS(8652), + [aux_sym_def_type_statement_token4] = ACTIONS(8652), + [aux_sym_def_type_statement_token5] = ACTIONS(8652), + [aux_sym_def_type_statement_token6] = ACTIONS(8652), + [aux_sym_def_type_statement_token7] = ACTIONS(8652), + [aux_sym_def_type_statement_token8] = ACTIONS(8652), + [aux_sym_def_type_statement_token9] = ACTIONS(8652), + [aux_sym_def_type_statement_token10] = ACTIONS(8652), + [aux_sym_def_type_statement_token11] = ACTIONS(8652), + [aux_sym_def_type_statement_token12] = ACTIONS(8652), + [aux_sym_def_type_statement_token13] = ACTIONS(8652), + [aux_sym_def_type_statement_token14] = ACTIONS(8652), + [aux_sym_call_statement_token1] = ACTIONS(8652), + [sym__ambiguous_call_statement] = ACTIONS(8652), + [aux_sym_addressof_expression_token1] = ACTIONS(8652), + [aux_sym_type_of_expression_token1] = ACTIONS(8652), + [aux_sym_unary_expression_token1] = ACTIONS(8652), + [sym_string_literal] = ACTIONS(8654), + [sym_number_literal] = ACTIONS(8654), + [aux_sym_boolean_literal_token1] = ACTIONS(8652), + [aux_sym_boolean_literal_token2] = ACTIONS(8652), + [sym_nothing_literal] = ACTIONS(8652), + [sym_null_literal] = ACTIONS(8652), + [sym_empty_literal] = ACTIONS(8652), + [sym_date_literal] = ACTIONS(8654), + [anon_sym_POUND] = ACTIONS(8652), + }, + [STATE(5883)] = { + [sym_identifier] = ACTIONS(8881), + [sym_newline] = ACTIONS(8884), + [anon_sym_COLON] = ACTIONS(8884), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8881), + [aux_sym_frm_property_statement_token1] = ACTIONS(8881), + [anon_sym_DOT] = ACTIONS(8881), + [anon_sym_BANG] = ACTIONS(8884), + [aux_sym__attribute_identifier_token1] = ACTIONS(8881), + [aux_sym_option_statement_token3] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8881), + [aux_sym_preprocessor_const_token1] = ACTIONS(8881), + [sym_static_modifier] = ACTIONS(8881), + [sym__dim_keyword] = ACTIONS(8881), + [sym__redim_keyword] = ACTIONS(8881), + [aux_sym_get_accessor_token1] = ACTIONS(8881), + [aux_sym_set_accessor_token1] = ACTIONS(8881), + [aux_sym_const_declaration_token1] = ACTIONS(8881), + [anon_sym_LPAREN] = ACTIONS(8884), + [aux_sym_as_type_clause_token2] = ACTIONS(8881), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8881), + [aux_sym_visibility_token1] = ACTIONS(8881), + [aux_sym_visibility_token2] = ACTIONS(8881), + [aux_sym_elseif_fragment_token1] = ACTIONS(8881), + [aux_sym_else_fragment_token1] = ACTIONS(8881), + [aux_sym_select_statement_token1] = ACTIONS(8881), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8949), + [aux_sym__for_header_token1] = ACTIONS(8881), + [aux_sym_do_statement_token1] = ACTIONS(8881), + [aux_sym_do_condition_token1] = ACTIONS(8881), + [aux_sym_while_statement_token1] = ACTIONS(8887), + [aux_sym_with_statement_token1] = ACTIONS(8881), + [aux_sym_exit_statement_token1] = ACTIONS(8881), + [sym_end_statement] = ACTIONS(8884), + [aux_sym_on_goto_statement_token1] = ACTIONS(8881), + [aux_sym_on_goto_statement_token2] = ACTIONS(8881), + [aux_sym_on_error_statement_token2] = ACTIONS(8881), + [sym__ambiguous_redim_statement] = ACTIONS(8884), + [aux_sym_erase_statement_token1] = ACTIONS(8881), + [aux_sym_open_statement_token1] = ACTIONS(8881), + [aux_sym_file_mode_token2] = ACTIONS(8881), + [aux_sym_file_access_token2] = ACTIONS(8881), + [aux_sym_file_lock_token2] = ACTIONS(8881), + [aux_sym_print_statement_token1] = ACTIONS(8881), + [anon_sym_PLUS] = ACTIONS(8884), + [anon_sym_DASH] = ACTIONS(8881), + [anon_sym_QMARK] = ACTIONS(8884), + [aux_sym_close_statement_token1] = ACTIONS(8881), + [aux_sym_put_statement_token1] = ACTIONS(8881), + [aux_sym_unlock_statement_token1] = ACTIONS(8881), + [aux_sym_seek_statement_token1] = ACTIONS(8881), + [sym_reset_statement] = ACTIONS(8881), + [aux_sym_raise_event_statement_token1] = ACTIONS(8881), + [sym_stop_statement] = ACTIONS(8881), + [sym_beep_statement] = ACTIONS(8881), + [aux_sym_unload_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token2] = ACTIONS(8881), + [aux_sym_def_type_statement_token3] = ACTIONS(8881), + [aux_sym_def_type_statement_token4] = ACTIONS(8881), + [aux_sym_def_type_statement_token5] = ACTIONS(8881), + [aux_sym_def_type_statement_token6] = ACTIONS(8881), + [aux_sym_def_type_statement_token7] = ACTIONS(8881), + [aux_sym_def_type_statement_token8] = ACTIONS(8881), + [aux_sym_def_type_statement_token9] = ACTIONS(8881), + [aux_sym_def_type_statement_token10] = ACTIONS(8881), + [aux_sym_def_type_statement_token11] = ACTIONS(8881), + [aux_sym_def_type_statement_token12] = ACTIONS(8881), + [aux_sym_def_type_statement_token13] = ACTIONS(8881), + [aux_sym_def_type_statement_token14] = ACTIONS(8881), + [aux_sym_call_statement_token1] = ACTIONS(8881), + [sym__ambiguous_call_statement] = ACTIONS(8881), + [aux_sym_addressof_expression_token1] = ACTIONS(8881), + [aux_sym_type_of_expression_token1] = ACTIONS(8881), + [aux_sym_unary_expression_token1] = ACTIONS(8881), + [sym_string_literal] = ACTIONS(8884), + [sym_number_literal] = ACTIONS(8884), + [aux_sym_boolean_literal_token1] = ACTIONS(8881), + [aux_sym_boolean_literal_token2] = ACTIONS(8881), + [sym_nothing_literal] = ACTIONS(8881), + [sym_null_literal] = ACTIONS(8881), + [sym_empty_literal] = ACTIONS(8881), + [sym_date_literal] = ACTIONS(8884), + [anon_sym_POUND] = ACTIONS(8881), + }, + [STATE(5884)] = { + [sym_identifier] = ACTIONS(8915), + [sym_newline] = ACTIONS(8918), + [anon_sym_COLON] = ACTIONS(8918), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8915), + [aux_sym_frm_property_statement_token1] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8915), + [anon_sym_BANG] = ACTIONS(8918), + [aux_sym__attribute_identifier_token1] = ACTIONS(8915), + [aux_sym_option_statement_token3] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8915), + [aux_sym_preprocessor_const_token1] = ACTIONS(8915), + [sym_static_modifier] = ACTIONS(8915), + [sym__dim_keyword] = ACTIONS(8915), + [sym__redim_keyword] = ACTIONS(8915), + [aux_sym_get_accessor_token1] = ACTIONS(8915), + [aux_sym_set_accessor_token1] = ACTIONS(8915), + [aux_sym_const_declaration_token1] = ACTIONS(8915), + [anon_sym_LPAREN] = ACTIONS(8918), + [aux_sym_as_type_clause_token2] = ACTIONS(8915), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8915), + [aux_sym_visibility_token1] = ACTIONS(8915), + [aux_sym_visibility_token2] = ACTIONS(8915), + [aux_sym_elseif_fragment_token1] = ACTIONS(8915), + [aux_sym_else_fragment_token1] = ACTIONS(8915), + [aux_sym_select_statement_token1] = ACTIONS(8915), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8915), + [aux_sym_do_statement_token1] = ACTIONS(8915), + [aux_sym_do_condition_token1] = ACTIONS(8915), + [aux_sym_while_statement_token1] = ACTIONS(8921), + [aux_sym_with_statement_token1] = ACTIONS(8915), + [aux_sym_exit_statement_token1] = ACTIONS(8915), + [sym_end_statement] = ACTIONS(8918), + [aux_sym_on_goto_statement_token1] = ACTIONS(8915), + [aux_sym_on_goto_statement_token2] = ACTIONS(8915), + [aux_sym_on_error_statement_token2] = ACTIONS(8915), + [sym__ambiguous_redim_statement] = ACTIONS(8918), + [aux_sym_erase_statement_token1] = ACTIONS(8915), + [aux_sym_open_statement_token1] = ACTIONS(8915), + [aux_sym_file_mode_token2] = ACTIONS(8915), + [aux_sym_file_access_token2] = ACTIONS(8915), + [aux_sym_file_lock_token2] = ACTIONS(8915), + [aux_sym_print_statement_token1] = ACTIONS(8915), + [anon_sym_PLUS] = ACTIONS(8918), + [anon_sym_DASH] = ACTIONS(8915), + [anon_sym_QMARK] = ACTIONS(8918), + [aux_sym_close_statement_token1] = ACTIONS(8915), + [aux_sym_put_statement_token1] = ACTIONS(8915), + [aux_sym_unlock_statement_token1] = ACTIONS(8915), + [aux_sym_seek_statement_token1] = ACTIONS(8915), + [sym_reset_statement] = ACTIONS(8915), + [aux_sym_raise_event_statement_token1] = ACTIONS(8915), + [sym_stop_statement] = ACTIONS(8915), + [sym_beep_statement] = ACTIONS(8915), + [aux_sym_unload_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token2] = ACTIONS(8915), + [aux_sym_def_type_statement_token3] = ACTIONS(8915), + [aux_sym_def_type_statement_token4] = ACTIONS(8915), + [aux_sym_def_type_statement_token5] = ACTIONS(8915), + [aux_sym_def_type_statement_token6] = ACTIONS(8915), + [aux_sym_def_type_statement_token7] = ACTIONS(8915), + [aux_sym_def_type_statement_token8] = ACTIONS(8915), + [aux_sym_def_type_statement_token9] = ACTIONS(8915), + [aux_sym_def_type_statement_token10] = ACTIONS(8915), + [aux_sym_def_type_statement_token11] = ACTIONS(8915), + [aux_sym_def_type_statement_token12] = ACTIONS(8915), + [aux_sym_def_type_statement_token13] = ACTIONS(8915), + [aux_sym_def_type_statement_token14] = ACTIONS(8915), + [aux_sym_call_statement_token1] = ACTIONS(8915), + [sym__ambiguous_call_statement] = ACTIONS(8915), + [aux_sym_addressof_expression_token1] = ACTIONS(8915), + [aux_sym_type_of_expression_token1] = ACTIONS(8915), + [aux_sym_unary_expression_token1] = ACTIONS(8915), + [sym_string_literal] = ACTIONS(8918), + [sym_number_literal] = ACTIONS(8918), + [aux_sym_boolean_literal_token1] = ACTIONS(8915), + [aux_sym_boolean_literal_token2] = ACTIONS(8915), + [sym_nothing_literal] = ACTIONS(8915), + [sym_null_literal] = ACTIONS(8915), + [sym_empty_literal] = ACTIONS(8915), + [sym_date_literal] = ACTIONS(8918), + [anon_sym_POUND] = ACTIONS(8915), + }, + [STATE(5885)] = { + [sym_identifier] = ACTIONS(8680), + [sym_newline] = ACTIONS(8682), + [anon_sym_COLON] = ACTIONS(8682), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8680), + [aux_sym_frm_property_statement_token1] = ACTIONS(8680), + [anon_sym_DOT] = ACTIONS(8680), + [anon_sym_BANG] = ACTIONS(8682), + [aux_sym__attribute_identifier_token1] = ACTIONS(8680), + [aux_sym_option_statement_token3] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8680), + [aux_sym_preprocessor_const_token1] = ACTIONS(8680), + [sym_static_modifier] = ACTIONS(8680), + [sym__dim_keyword] = ACTIONS(8680), + [sym__redim_keyword] = ACTIONS(8680), + [aux_sym_get_accessor_token1] = ACTIONS(8680), + [aux_sym_set_accessor_token1] = ACTIONS(8680), + [anon_sym_COMMA] = ACTIONS(8682), + [aux_sym_const_declaration_token1] = ACTIONS(8680), + [anon_sym_LPAREN] = ACTIONS(8682), + [aux_sym_as_type_clause_token2] = ACTIONS(8680), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8680), + [aux_sym_visibility_token1] = ACTIONS(8680), + [aux_sym_visibility_token2] = ACTIONS(8680), + [aux_sym_elseif_fragment_token1] = ACTIONS(8680), + [aux_sym_else_fragment_token1] = ACTIONS(8680), + [aux_sym_select_statement_token1] = ACTIONS(8680), + [aux_sym_select_statement_token2] = ACTIONS(8680), + [aux_sym__for_header_token1] = ACTIONS(8680), + [aux_sym_do_statement_token1] = ACTIONS(8680), + [aux_sym_do_condition_token1] = ACTIONS(8680), + [aux_sym_with_statement_token1] = ACTIONS(8680), + [aux_sym_exit_statement_token1] = ACTIONS(8680), + [sym_end_statement] = ACTIONS(8682), + [aux_sym_on_goto_statement_token1] = ACTIONS(8680), + [aux_sym_on_goto_statement_token2] = ACTIONS(8680), + [aux_sym_on_error_statement_token2] = ACTIONS(8680), + [sym__ambiguous_redim_statement] = ACTIONS(8682), + [aux_sym_erase_statement_token1] = ACTIONS(8680), + [aux_sym_open_statement_token1] = ACTIONS(8680), + [aux_sym_file_mode_token2] = ACTIONS(8680), + [aux_sym_file_access_token2] = ACTIONS(8680), + [aux_sym_file_lock_token2] = ACTIONS(8680), + [aux_sym_print_statement_token1] = ACTIONS(8680), + [anon_sym_PLUS] = ACTIONS(8682), + [anon_sym_DASH] = ACTIONS(8680), + [anon_sym_QMARK] = ACTIONS(8682), + [aux_sym_close_statement_token1] = ACTIONS(8680), + [aux_sym_put_statement_token1] = ACTIONS(8680), + [aux_sym_unlock_statement_token1] = ACTIONS(8680), + [aux_sym_seek_statement_token1] = ACTIONS(8680), + [sym_reset_statement] = ACTIONS(8680), + [aux_sym_raise_event_statement_token1] = ACTIONS(8680), + [sym_stop_statement] = ACTIONS(8680), + [sym_beep_statement] = ACTIONS(8680), + [aux_sym_unload_statement_token1] = ACTIONS(8680), + [aux_sym_def_type_statement_token1] = ACTIONS(8680), + [aux_sym_def_type_statement_token2] = ACTIONS(8680), + [aux_sym_def_type_statement_token3] = ACTIONS(8680), + [aux_sym_def_type_statement_token4] = ACTIONS(8680), + [aux_sym_def_type_statement_token5] = ACTIONS(8680), + [aux_sym_def_type_statement_token6] = ACTIONS(8680), + [aux_sym_def_type_statement_token7] = ACTIONS(8680), + [aux_sym_def_type_statement_token8] = ACTIONS(8680), + [aux_sym_def_type_statement_token9] = ACTIONS(8680), + [aux_sym_def_type_statement_token10] = ACTIONS(8680), + [aux_sym_def_type_statement_token11] = ACTIONS(8680), + [aux_sym_def_type_statement_token12] = ACTIONS(8680), + [aux_sym_def_type_statement_token13] = ACTIONS(8680), + [aux_sym_def_type_statement_token14] = ACTIONS(8680), + [aux_sym_call_statement_token1] = ACTIONS(8680), + [sym__ambiguous_call_statement] = ACTIONS(8680), + [aux_sym_addressof_expression_token1] = ACTIONS(8680), + [aux_sym_type_of_expression_token1] = ACTIONS(8680), + [aux_sym_unary_expression_token1] = ACTIONS(8680), + [sym_string_literal] = ACTIONS(8682), + [sym_number_literal] = ACTIONS(8682), + [aux_sym_boolean_literal_token1] = ACTIONS(8680), + [aux_sym_boolean_literal_token2] = ACTIONS(8680), + [sym_nothing_literal] = ACTIONS(8680), + [sym_null_literal] = ACTIONS(8680), + [sym_empty_literal] = ACTIONS(8680), + [sym_date_literal] = ACTIONS(8682), + [anon_sym_POUND] = ACTIONS(8680), + }, + [STATE(5886)] = { + [sym_identifier] = ACTIONS(8780), + [sym_newline] = ACTIONS(8782), + [anon_sym_COLON] = ACTIONS(8782), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8780), + [aux_sym_frm_property_statement_token1] = ACTIONS(8780), + [anon_sym_DOT] = ACTIONS(8780), + [anon_sym_BANG] = ACTIONS(8782), + [aux_sym__attribute_identifier_token1] = ACTIONS(8780), + [aux_sym_option_statement_token3] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8780), + [aux_sym_preprocessor_const_token1] = ACTIONS(8780), + [sym_static_modifier] = ACTIONS(8780), + [sym__dim_keyword] = ACTIONS(8780), + [sym__redim_keyword] = ACTIONS(8780), + [aux_sym_get_accessor_token1] = ACTIONS(8780), + [aux_sym_set_accessor_token1] = ACTIONS(8780), + [anon_sym_COMMA] = ACTIONS(10872), + [aux_sym_const_declaration_token1] = ACTIONS(8780), + [anon_sym_LPAREN] = ACTIONS(8782), + [aux_sym_as_type_clause_token2] = ACTIONS(8780), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8780), + [aux_sym_visibility_token1] = ACTIONS(8780), + [aux_sym_visibility_token2] = ACTIONS(8780), + [aux_sym_elseif_fragment_token1] = ACTIONS(8780), + [aux_sym_else_fragment_token1] = ACTIONS(8780), + [aux_sym_select_statement_token1] = ACTIONS(8780), + [aux_sym__for_header_token1] = ACTIONS(8780), + [aux_sym_do_statement_token1] = ACTIONS(8780), + [aux_sym_do_condition_token1] = ACTIONS(8780), + [aux_sym_with_statement_token1] = ACTIONS(8780), + [aux_sym_exit_statement_token1] = ACTIONS(8780), + [sym_end_statement] = ACTIONS(8782), + [aux_sym_on_goto_statement_token1] = ACTIONS(8780), + [aux_sym_on_goto_statement_token2] = ACTIONS(8780), + [aux_sym_on_error_statement_token2] = ACTIONS(8780), + [sym__ambiguous_redim_statement] = ACTIONS(8782), + [aux_sym_erase_statement_token1] = ACTIONS(8780), + [aux_sym_open_statement_token1] = ACTIONS(8780), + [aux_sym_file_mode_token2] = ACTIONS(8780), + [aux_sym_file_access_token2] = ACTIONS(8780), + [aux_sym_file_lock_token2] = ACTIONS(8780), + [aux_sym_print_statement_token1] = ACTIONS(8780), + [anon_sym_PLUS] = ACTIONS(8782), + [anon_sym_DASH] = ACTIONS(8780), + [anon_sym_QMARK] = ACTIONS(8782), + [aux_sym_close_statement_token1] = ACTIONS(8780), + [aux_sym_put_statement_token1] = ACTIONS(8780), + [aux_sym_unlock_statement_token1] = ACTIONS(8780), + [aux_sym_seek_statement_token1] = ACTIONS(8780), + [sym_reset_statement] = ACTIONS(8780), + [aux_sym_raise_event_statement_token1] = ACTIONS(8780), + [sym_stop_statement] = ACTIONS(8780), + [sym_beep_statement] = ACTIONS(8780), + [aux_sym_unload_statement_token1] = ACTIONS(8780), + [aux_sym_def_type_statement_token1] = ACTIONS(8780), + [aux_sym_def_type_statement_token2] = ACTIONS(8780), + [aux_sym_def_type_statement_token3] = ACTIONS(8780), + [aux_sym_def_type_statement_token4] = ACTIONS(8780), + [aux_sym_def_type_statement_token5] = ACTIONS(8780), + [aux_sym_def_type_statement_token6] = ACTIONS(8780), + [aux_sym_def_type_statement_token7] = ACTIONS(8780), + [aux_sym_def_type_statement_token8] = ACTIONS(8780), + [aux_sym_def_type_statement_token9] = ACTIONS(8780), + [aux_sym_def_type_statement_token10] = ACTIONS(8780), + [aux_sym_def_type_statement_token11] = ACTIONS(8780), + [aux_sym_def_type_statement_token12] = ACTIONS(8780), + [aux_sym_def_type_statement_token13] = ACTIONS(8780), + [aux_sym_def_type_statement_token14] = ACTIONS(8780), + [aux_sym_call_statement_token1] = ACTIONS(8780), + [sym__ambiguous_call_statement] = ACTIONS(8780), + [aux_sym_addressof_expression_token1] = ACTIONS(8780), + [aux_sym_type_of_expression_token1] = ACTIONS(8780), + [aux_sym_unary_expression_token1] = ACTIONS(8780), + [sym_string_literal] = ACTIONS(8782), + [sym_number_literal] = ACTIONS(8782), + [aux_sym_boolean_literal_token1] = ACTIONS(8780), + [aux_sym_boolean_literal_token2] = ACTIONS(8780), + [sym_nothing_literal] = ACTIONS(8780), + [sym_null_literal] = ACTIONS(8780), + [sym_empty_literal] = ACTIONS(8780), + [sym_date_literal] = ACTIONS(8782), + [anon_sym_POUND] = ACTIONS(8780), + }, + [STATE(5887)] = { + [sym_do_condition] = STATE(7185), + [sym_identifier] = ACTIONS(8378), + [sym_newline] = ACTIONS(8380), + [anon_sym_COLON] = ACTIONS(8380), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8378), + [aux_sym_frm_property_statement_token1] = ACTIONS(8378), + [anon_sym_DOT] = ACTIONS(8378), + [anon_sym_BANG] = ACTIONS(8380), + [aux_sym__attribute_identifier_token1] = ACTIONS(8378), + [aux_sym_option_statement_token3] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8378), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8378), + [aux_sym_preprocessor_const_token1] = ACTIONS(8378), + [sym_static_modifier] = ACTIONS(8378), + [sym__dim_keyword] = ACTIONS(8378), + [sym__redim_keyword] = ACTIONS(8378), + [aux_sym_get_accessor_token1] = ACTIONS(8378), + [aux_sym_set_accessor_token1] = ACTIONS(8378), + [aux_sym_const_declaration_token1] = ACTIONS(8378), + [anon_sym_LPAREN] = ACTIONS(8380), + [aux_sym_as_type_clause_token2] = ACTIONS(8378), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8378), + [aux_sym_visibility_token1] = ACTIONS(8378), + [aux_sym_visibility_token2] = ACTIONS(8378), + [aux_sym_elseif_fragment_token1] = ACTIONS(8378), + [aux_sym_else_fragment_token1] = ACTIONS(8378), + [aux_sym_select_statement_token1] = ACTIONS(8378), + [aux_sym__for_header_token1] = ACTIONS(8378), + [aux_sym_do_statement_token1] = ACTIONS(8378), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8378), + [aux_sym_exit_statement_token1] = ACTIONS(8378), + [sym_end_statement] = ACTIONS(8380), + [aux_sym_on_goto_statement_token1] = ACTIONS(8378), + [aux_sym_on_goto_statement_token2] = ACTIONS(8378), + [aux_sym_on_error_statement_token2] = ACTIONS(8378), + [sym__ambiguous_redim_statement] = ACTIONS(8380), + [aux_sym_erase_statement_token1] = ACTIONS(8378), + [aux_sym_open_statement_token1] = ACTIONS(8378), + [aux_sym_file_mode_token2] = ACTIONS(8378), + [aux_sym_file_access_token2] = ACTIONS(8378), + [aux_sym_file_lock_token2] = ACTIONS(8378), + [aux_sym_print_statement_token1] = ACTIONS(8378), + [anon_sym_PLUS] = ACTIONS(8380), + [anon_sym_DASH] = ACTIONS(8378), + [anon_sym_QMARK] = ACTIONS(8380), + [aux_sym_close_statement_token1] = ACTIONS(8378), + [aux_sym_put_statement_token1] = ACTIONS(8378), + [aux_sym_unlock_statement_token1] = ACTIONS(8378), + [aux_sym_seek_statement_token1] = ACTIONS(8378), + [sym_reset_statement] = ACTIONS(8378), + [aux_sym_raise_event_statement_token1] = ACTIONS(8378), + [sym_stop_statement] = ACTIONS(8378), + [sym_beep_statement] = ACTIONS(8378), + [aux_sym_unload_statement_token1] = ACTIONS(8378), + [aux_sym_def_type_statement_token1] = ACTIONS(8378), + [aux_sym_def_type_statement_token2] = ACTIONS(8378), + [aux_sym_def_type_statement_token3] = ACTIONS(8378), + [aux_sym_def_type_statement_token4] = ACTIONS(8378), + [aux_sym_def_type_statement_token5] = ACTIONS(8378), + [aux_sym_def_type_statement_token6] = ACTIONS(8378), + [aux_sym_def_type_statement_token7] = ACTIONS(8378), + [aux_sym_def_type_statement_token8] = ACTIONS(8378), + [aux_sym_def_type_statement_token9] = ACTIONS(8378), + [aux_sym_def_type_statement_token10] = ACTIONS(8378), + [aux_sym_def_type_statement_token11] = ACTIONS(8378), + [aux_sym_def_type_statement_token12] = ACTIONS(8378), + [aux_sym_def_type_statement_token13] = ACTIONS(8378), + [aux_sym_def_type_statement_token14] = ACTIONS(8378), + [aux_sym_call_statement_token1] = ACTIONS(8378), + [sym__ambiguous_call_statement] = ACTIONS(8378), + [aux_sym_addressof_expression_token1] = ACTIONS(8378), + [aux_sym_type_of_expression_token1] = ACTIONS(8378), + [aux_sym_unary_expression_token1] = ACTIONS(8378), + [sym_string_literal] = ACTIONS(8380), + [sym_number_literal] = ACTIONS(8380), + [aux_sym_boolean_literal_token1] = ACTIONS(8378), + [aux_sym_boolean_literal_token2] = ACTIONS(8378), + [sym_nothing_literal] = ACTIONS(8378), + [sym_null_literal] = ACTIONS(8378), + [sym_empty_literal] = ACTIONS(8378), + [sym_date_literal] = ACTIONS(8380), + [anon_sym_POUND] = ACTIONS(8378), + }, + [STATE(5888)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(5889)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(5890)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(5891)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5962), + [sym_identifier] = ACTIONS(8231), + [sym_newline] = ACTIONS(8233), + [anon_sym_COLON] = ACTIONS(8233), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8231), + [aux_sym_frm_property_statement_token1] = ACTIONS(8231), + [anon_sym_DOT] = ACTIONS(8231), + [anon_sym_BANG] = ACTIONS(8233), + [aux_sym__attribute_identifier_token1] = ACTIONS(8231), + [aux_sym_option_statement_token3] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8231), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8231), + [aux_sym_preprocessor_const_token1] = ACTIONS(8231), + [sym_static_modifier] = ACTIONS(8231), + [sym__dim_keyword] = ACTIONS(8231), + [sym__redim_keyword] = ACTIONS(8231), + [aux_sym_get_accessor_token1] = ACTIONS(8231), + [aux_sym_set_accessor_token1] = ACTIONS(8231), + [anon_sym_COMMA] = ACTIONS(10822), + [aux_sym_const_declaration_token1] = ACTIONS(8231), + [anon_sym_LPAREN] = ACTIONS(8233), + [aux_sym_as_type_clause_token2] = ACTIONS(8231), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8231), + [aux_sym_visibility_token1] = ACTIONS(8231), + [aux_sym_visibility_token2] = ACTIONS(8231), + [aux_sym_elseif_fragment_token1] = ACTIONS(8231), + [aux_sym_else_fragment_token1] = ACTIONS(8231), + [aux_sym_select_statement_token1] = ACTIONS(8231), + [aux_sym__for_header_token1] = ACTIONS(8231), + [aux_sym_do_statement_token1] = ACTIONS(8231), + [aux_sym_do_condition_token1] = ACTIONS(8231), + [aux_sym_with_statement_token1] = ACTIONS(8231), + [aux_sym_exit_statement_token1] = ACTIONS(8231), + [sym_end_statement] = ACTIONS(8233), + [aux_sym_on_goto_statement_token1] = ACTIONS(8231), + [aux_sym_on_goto_statement_token2] = ACTIONS(8231), + [aux_sym_on_error_statement_token2] = ACTIONS(8231), + [sym__ambiguous_redim_statement] = ACTIONS(8233), + [aux_sym_erase_statement_token1] = ACTIONS(8231), + [aux_sym_open_statement_token1] = ACTIONS(8231), + [aux_sym_file_mode_token2] = ACTIONS(8231), + [aux_sym_file_access_token2] = ACTIONS(8231), + [aux_sym_file_lock_token2] = ACTIONS(8231), + [aux_sym_print_statement_token1] = ACTIONS(8231), + [anon_sym_PLUS] = ACTIONS(8233), + [anon_sym_DASH] = ACTIONS(8231), + [anon_sym_QMARK] = ACTIONS(8233), + [aux_sym_close_statement_token1] = ACTIONS(8231), + [aux_sym_put_statement_token1] = ACTIONS(8231), + [aux_sym_unlock_statement_token1] = ACTIONS(8231), + [aux_sym_seek_statement_token1] = ACTIONS(8231), + [sym_reset_statement] = ACTIONS(8231), + [aux_sym_raise_event_statement_token1] = ACTIONS(8231), + [sym_stop_statement] = ACTIONS(8231), + [sym_beep_statement] = ACTIONS(8231), + [aux_sym_unload_statement_token1] = ACTIONS(8231), + [aux_sym_def_type_statement_token1] = ACTIONS(8231), + [aux_sym_def_type_statement_token2] = ACTIONS(8231), + [aux_sym_def_type_statement_token3] = ACTIONS(8231), + [aux_sym_def_type_statement_token4] = ACTIONS(8231), + [aux_sym_def_type_statement_token5] = ACTIONS(8231), + [aux_sym_def_type_statement_token6] = ACTIONS(8231), + [aux_sym_def_type_statement_token7] = ACTIONS(8231), + [aux_sym_def_type_statement_token8] = ACTIONS(8231), + [aux_sym_def_type_statement_token9] = ACTIONS(8231), + [aux_sym_def_type_statement_token10] = ACTIONS(8231), + [aux_sym_def_type_statement_token11] = ACTIONS(8231), + [aux_sym_def_type_statement_token12] = ACTIONS(8231), + [aux_sym_def_type_statement_token13] = ACTIONS(8231), + [aux_sym_def_type_statement_token14] = ACTIONS(8231), + [aux_sym_call_statement_token1] = ACTIONS(8231), + [sym__ambiguous_call_statement] = ACTIONS(8231), + [aux_sym_addressof_expression_token1] = ACTIONS(8231), + [aux_sym_type_of_expression_token1] = ACTIONS(8231), + [aux_sym_unary_expression_token1] = ACTIONS(8231), + [sym_string_literal] = ACTIONS(8233), + [sym_number_literal] = ACTIONS(8233), + [aux_sym_boolean_literal_token1] = ACTIONS(8231), + [aux_sym_boolean_literal_token2] = ACTIONS(8231), + [sym_nothing_literal] = ACTIONS(8231), + [sym_null_literal] = ACTIONS(8231), + [sym_empty_literal] = ACTIONS(8231), + [sym_date_literal] = ACTIONS(8233), + [anon_sym_POUND] = ACTIONS(8231), + }, + [STATE(5892)] = { + [sym_identifier] = ACTIONS(8756), + [sym_newline] = ACTIONS(8759), + [anon_sym_COLON] = ACTIONS(8759), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8756), + [aux_sym_frm_property_statement_token1] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8756), + [anon_sym_BANG] = ACTIONS(8759), + [aux_sym__attribute_identifier_token1] = ACTIONS(8756), + [aux_sym_option_statement_token3] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8756), + [aux_sym_preprocessor_const_token1] = ACTIONS(8756), + [sym_static_modifier] = ACTIONS(8756), + [sym__dim_keyword] = ACTIONS(8756), + [sym__redim_keyword] = ACTIONS(8756), + [aux_sym_get_accessor_token1] = ACTIONS(8756), + [aux_sym_set_accessor_token1] = ACTIONS(8756), + [aux_sym_const_declaration_token1] = ACTIONS(8756), + [anon_sym_LPAREN] = ACTIONS(8759), + [aux_sym_as_type_clause_token2] = ACTIONS(8756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8756), + [aux_sym_visibility_token1] = ACTIONS(8756), + [aux_sym_visibility_token2] = ACTIONS(8756), + [aux_sym_elseif_fragment_token1] = ACTIONS(8756), + [aux_sym_else_fragment_token1] = ACTIONS(8756), + [aux_sym_select_statement_token1] = ACTIONS(8756), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8756), + [aux_sym_do_statement_token1] = ACTIONS(8756), + [aux_sym_do_condition_token1] = ACTIONS(8756), + [aux_sym_while_statement_token1] = ACTIONS(8762), + [aux_sym_with_statement_token1] = ACTIONS(8756), + [aux_sym_exit_statement_token1] = ACTIONS(8756), + [sym_end_statement] = ACTIONS(8759), + [aux_sym_on_goto_statement_token1] = ACTIONS(8756), + [aux_sym_on_goto_statement_token2] = ACTIONS(8756), + [aux_sym_on_error_statement_token2] = ACTIONS(8756), + [sym__ambiguous_redim_statement] = ACTIONS(8759), + [aux_sym_erase_statement_token1] = ACTIONS(8756), + [aux_sym_open_statement_token1] = ACTIONS(8756), + [aux_sym_file_mode_token2] = ACTIONS(8756), + [aux_sym_file_access_token2] = ACTIONS(8756), + [aux_sym_file_lock_token2] = ACTIONS(8756), + [aux_sym_print_statement_token1] = ACTIONS(8756), + [anon_sym_PLUS] = ACTIONS(8759), + [anon_sym_DASH] = ACTIONS(8756), + [anon_sym_QMARK] = ACTIONS(8759), + [aux_sym_close_statement_token1] = ACTIONS(8756), + [aux_sym_put_statement_token1] = ACTIONS(8756), + [aux_sym_unlock_statement_token1] = ACTIONS(8756), + [aux_sym_seek_statement_token1] = ACTIONS(8756), + [sym_reset_statement] = ACTIONS(8756), + [aux_sym_raise_event_statement_token1] = ACTIONS(8756), + [sym_stop_statement] = ACTIONS(8756), + [sym_beep_statement] = ACTIONS(8756), + [aux_sym_unload_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token2] = ACTIONS(8756), + [aux_sym_def_type_statement_token3] = ACTIONS(8756), + [aux_sym_def_type_statement_token4] = ACTIONS(8756), + [aux_sym_def_type_statement_token5] = ACTIONS(8756), + [aux_sym_def_type_statement_token6] = ACTIONS(8756), + [aux_sym_def_type_statement_token7] = ACTIONS(8756), + [aux_sym_def_type_statement_token8] = ACTIONS(8756), + [aux_sym_def_type_statement_token9] = ACTIONS(8756), + [aux_sym_def_type_statement_token10] = ACTIONS(8756), + [aux_sym_def_type_statement_token11] = ACTIONS(8756), + [aux_sym_def_type_statement_token12] = ACTIONS(8756), + [aux_sym_def_type_statement_token13] = ACTIONS(8756), + [aux_sym_def_type_statement_token14] = ACTIONS(8756), + [aux_sym_call_statement_token1] = ACTIONS(8756), + [sym__ambiguous_call_statement] = ACTIONS(8756), + [aux_sym_addressof_expression_token1] = ACTIONS(8756), + [aux_sym_type_of_expression_token1] = ACTIONS(8756), + [aux_sym_unary_expression_token1] = ACTIONS(8756), + [sym_string_literal] = ACTIONS(8759), + [sym_number_literal] = ACTIONS(8759), + [aux_sym_boolean_literal_token1] = ACTIONS(8756), + [aux_sym_boolean_literal_token2] = ACTIONS(8756), + [sym_nothing_literal] = ACTIONS(8756), + [sym_null_literal] = ACTIONS(8756), + [sym_empty_literal] = ACTIONS(8756), + [sym_date_literal] = ACTIONS(8759), + [anon_sym_POUND] = ACTIONS(8756), + }, + [STATE(5893)] = { + [sym_identifier] = ACTIONS(8881), + [sym_newline] = ACTIONS(8884), + [anon_sym_COLON] = ACTIONS(8884), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8881), + [aux_sym_frm_property_statement_token1] = ACTIONS(8881), + [anon_sym_DOT] = ACTIONS(8881), + [anon_sym_BANG] = ACTIONS(8884), + [aux_sym__attribute_identifier_token1] = ACTIONS(8881), + [aux_sym_option_statement_token3] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8881), + [aux_sym_preprocessor_const_token1] = ACTIONS(8881), + [sym_static_modifier] = ACTIONS(8881), + [sym__dim_keyword] = ACTIONS(8881), + [sym__redim_keyword] = ACTIONS(8881), + [aux_sym_get_accessor_token1] = ACTIONS(8881), + [aux_sym_set_accessor_token1] = ACTIONS(8881), + [aux_sym_const_declaration_token1] = ACTIONS(8881), + [anon_sym_LPAREN] = ACTIONS(8884), + [aux_sym_as_type_clause_token2] = ACTIONS(8881), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8881), + [aux_sym_visibility_token1] = ACTIONS(8881), + [aux_sym_visibility_token2] = ACTIONS(8881), + [aux_sym_elseif_fragment_token1] = ACTIONS(8881), + [aux_sym_else_fragment_token1] = ACTIONS(8881), + [aux_sym_select_statement_token1] = ACTIONS(8881), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8881), + [aux_sym__for_header_token1] = ACTIONS(8881), + [aux_sym_do_statement_token1] = ACTIONS(8881), + [aux_sym_do_statement_token2] = ACTIONS(8887), + [aux_sym_do_condition_token1] = ACTIONS(8881), + [aux_sym_with_statement_token1] = ACTIONS(8881), + [aux_sym_exit_statement_token1] = ACTIONS(8881), + [sym_end_statement] = ACTIONS(8884), + [aux_sym_on_goto_statement_token1] = ACTIONS(8881), + [aux_sym_on_goto_statement_token2] = ACTIONS(8881), + [aux_sym_on_error_statement_token2] = ACTIONS(8881), + [sym__ambiguous_redim_statement] = ACTIONS(8884), + [aux_sym_erase_statement_token1] = ACTIONS(8881), + [aux_sym_open_statement_token1] = ACTIONS(8881), + [aux_sym_file_mode_token2] = ACTIONS(8881), + [aux_sym_file_access_token2] = ACTIONS(8881), + [aux_sym_file_lock_token2] = ACTIONS(8881), + [aux_sym_print_statement_token1] = ACTIONS(8881), + [anon_sym_PLUS] = ACTIONS(8884), + [anon_sym_DASH] = ACTIONS(8881), + [anon_sym_QMARK] = ACTIONS(8884), + [aux_sym_close_statement_token1] = ACTIONS(8881), + [aux_sym_put_statement_token1] = ACTIONS(8881), + [aux_sym_unlock_statement_token1] = ACTIONS(8881), + [aux_sym_seek_statement_token1] = ACTIONS(8881), + [sym_reset_statement] = ACTIONS(8881), + [aux_sym_raise_event_statement_token1] = ACTIONS(8881), + [sym_stop_statement] = ACTIONS(8881), + [sym_beep_statement] = ACTIONS(8881), + [aux_sym_unload_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token2] = ACTIONS(8881), + [aux_sym_def_type_statement_token3] = ACTIONS(8881), + [aux_sym_def_type_statement_token4] = ACTIONS(8881), + [aux_sym_def_type_statement_token5] = ACTIONS(8881), + [aux_sym_def_type_statement_token6] = ACTIONS(8881), + [aux_sym_def_type_statement_token7] = ACTIONS(8881), + [aux_sym_def_type_statement_token8] = ACTIONS(8881), + [aux_sym_def_type_statement_token9] = ACTIONS(8881), + [aux_sym_def_type_statement_token10] = ACTIONS(8881), + [aux_sym_def_type_statement_token11] = ACTIONS(8881), + [aux_sym_def_type_statement_token12] = ACTIONS(8881), + [aux_sym_def_type_statement_token13] = ACTIONS(8881), + [aux_sym_def_type_statement_token14] = ACTIONS(8881), + [aux_sym_call_statement_token1] = ACTIONS(8881), + [sym__ambiguous_call_statement] = ACTIONS(8881), + [aux_sym_addressof_expression_token1] = ACTIONS(8881), + [aux_sym_type_of_expression_token1] = ACTIONS(8881), + [aux_sym_unary_expression_token1] = ACTIONS(8881), + [sym_string_literal] = ACTIONS(8884), + [sym_number_literal] = ACTIONS(8884), + [aux_sym_boolean_literal_token1] = ACTIONS(8881), + [aux_sym_boolean_literal_token2] = ACTIONS(8881), + [sym_nothing_literal] = ACTIONS(8881), + [sym_null_literal] = ACTIONS(8881), + [sym_empty_literal] = ACTIONS(8881), + [sym_date_literal] = ACTIONS(8884), + [anon_sym_POUND] = ACTIONS(8881), + }, + [STATE(5894)] = { + [sym_identifier] = ACTIONS(8915), + [sym_newline] = ACTIONS(8918), + [anon_sym_COLON] = ACTIONS(8918), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8915), + [aux_sym_frm_property_statement_token1] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8915), + [anon_sym_BANG] = ACTIONS(8918), + [aux_sym__attribute_identifier_token1] = ACTIONS(8915), + [aux_sym_option_statement_token3] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8915), + [aux_sym_preprocessor_const_token1] = ACTIONS(8915), + [sym_static_modifier] = ACTIONS(8915), + [sym__dim_keyword] = ACTIONS(8915), + [sym__redim_keyword] = ACTIONS(8915), + [aux_sym_get_accessor_token1] = ACTIONS(8915), + [aux_sym_set_accessor_token1] = ACTIONS(8915), + [aux_sym_const_declaration_token1] = ACTIONS(8915), + [anon_sym_LPAREN] = ACTIONS(8918), + [aux_sym_as_type_clause_token2] = ACTIONS(8915), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8915), + [aux_sym_visibility_token1] = ACTIONS(8915), + [aux_sym_visibility_token2] = ACTIONS(8915), + [aux_sym_elseif_fragment_token1] = ACTIONS(8915), + [aux_sym_else_fragment_token1] = ACTIONS(8915), + [aux_sym_select_statement_token1] = ACTIONS(8915), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8915), + [aux_sym__for_header_token1] = ACTIONS(8915), + [aux_sym_do_statement_token1] = ACTIONS(8915), + [aux_sym_do_statement_token2] = ACTIONS(8921), + [aux_sym_do_condition_token1] = ACTIONS(8915), + [aux_sym_with_statement_token1] = ACTIONS(8915), + [aux_sym_exit_statement_token1] = ACTIONS(8915), + [sym_end_statement] = ACTIONS(8918), + [aux_sym_on_goto_statement_token1] = ACTIONS(8915), + [aux_sym_on_goto_statement_token2] = ACTIONS(8915), + [aux_sym_on_error_statement_token2] = ACTIONS(8915), + [sym__ambiguous_redim_statement] = ACTIONS(8918), + [aux_sym_erase_statement_token1] = ACTIONS(8915), + [aux_sym_open_statement_token1] = ACTIONS(8915), + [aux_sym_file_mode_token2] = ACTIONS(8915), + [aux_sym_file_access_token2] = ACTIONS(8915), + [aux_sym_file_lock_token2] = ACTIONS(8915), + [aux_sym_print_statement_token1] = ACTIONS(8915), + [anon_sym_PLUS] = ACTIONS(8918), + [anon_sym_DASH] = ACTIONS(8915), + [anon_sym_QMARK] = ACTIONS(8918), + [aux_sym_close_statement_token1] = ACTIONS(8915), + [aux_sym_put_statement_token1] = ACTIONS(8915), + [aux_sym_unlock_statement_token1] = ACTIONS(8915), + [aux_sym_seek_statement_token1] = ACTIONS(8915), + [sym_reset_statement] = ACTIONS(8915), + [aux_sym_raise_event_statement_token1] = ACTIONS(8915), + [sym_stop_statement] = ACTIONS(8915), + [sym_beep_statement] = ACTIONS(8915), + [aux_sym_unload_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token2] = ACTIONS(8915), + [aux_sym_def_type_statement_token3] = ACTIONS(8915), + [aux_sym_def_type_statement_token4] = ACTIONS(8915), + [aux_sym_def_type_statement_token5] = ACTIONS(8915), + [aux_sym_def_type_statement_token6] = ACTIONS(8915), + [aux_sym_def_type_statement_token7] = ACTIONS(8915), + [aux_sym_def_type_statement_token8] = ACTIONS(8915), + [aux_sym_def_type_statement_token9] = ACTIONS(8915), + [aux_sym_def_type_statement_token10] = ACTIONS(8915), + [aux_sym_def_type_statement_token11] = ACTIONS(8915), + [aux_sym_def_type_statement_token12] = ACTIONS(8915), + [aux_sym_def_type_statement_token13] = ACTIONS(8915), + [aux_sym_def_type_statement_token14] = ACTIONS(8915), + [aux_sym_call_statement_token1] = ACTIONS(8915), + [sym__ambiguous_call_statement] = ACTIONS(8915), + [aux_sym_addressof_expression_token1] = ACTIONS(8915), + [aux_sym_type_of_expression_token1] = ACTIONS(8915), + [aux_sym_unary_expression_token1] = ACTIONS(8915), + [sym_string_literal] = ACTIONS(8918), + [sym_number_literal] = ACTIONS(8918), + [aux_sym_boolean_literal_token1] = ACTIONS(8915), + [aux_sym_boolean_literal_token2] = ACTIONS(8915), + [sym_nothing_literal] = ACTIONS(8915), + [sym_null_literal] = ACTIONS(8915), + [sym_empty_literal] = ACTIONS(8915), + [sym_date_literal] = ACTIONS(8918), + [anon_sym_POUND] = ACTIONS(8915), + }, + [STATE(5895)] = { + [sym_identifier] = ACTIONS(8717), + [sym_newline] = ACTIONS(8719), + [anon_sym_COLON] = ACTIONS(8719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8717), + [aux_sym_frm_property_statement_token1] = ACTIONS(8717), + [anon_sym_DOT] = ACTIONS(8717), + [anon_sym_BANG] = ACTIONS(8719), + [aux_sym__attribute_identifier_token1] = ACTIONS(8717), + [aux_sym_option_statement_token3] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8717), + [aux_sym_preprocessor_const_token1] = ACTIONS(8717), + [sym_static_modifier] = ACTIONS(8717), + [sym__dim_keyword] = ACTIONS(8717), + [sym__redim_keyword] = ACTIONS(8717), + [aux_sym_get_accessor_token1] = ACTIONS(8717), + [aux_sym_set_accessor_token1] = ACTIONS(8717), + [anon_sym_COMMA] = ACTIONS(10874), + [aux_sym_const_declaration_token1] = ACTIONS(8717), + [anon_sym_LPAREN] = ACTIONS(8719), + [aux_sym_as_type_clause_token2] = ACTIONS(8717), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8717), + [aux_sym_visibility_token1] = ACTIONS(8717), + [aux_sym_visibility_token2] = ACTIONS(8717), + [aux_sym_elseif_fragment_token1] = ACTIONS(8717), + [aux_sym_else_fragment_token1] = ACTIONS(8717), + [aux_sym_select_statement_token1] = ACTIONS(8717), + [aux_sym__for_header_token1] = ACTIONS(8717), + [aux_sym_do_statement_token1] = ACTIONS(8717), + [aux_sym_do_condition_token1] = ACTIONS(8717), + [aux_sym_while_statement_token1] = ACTIONS(8717), + [aux_sym_with_statement_token1] = ACTIONS(8717), + [aux_sym_exit_statement_token1] = ACTIONS(8717), + [sym_end_statement] = ACTIONS(8719), + [aux_sym_on_goto_statement_token1] = ACTIONS(8717), + [aux_sym_on_goto_statement_token2] = ACTIONS(8717), + [aux_sym_on_error_statement_token2] = ACTIONS(8717), + [sym__ambiguous_redim_statement] = ACTIONS(8719), + [aux_sym_erase_statement_token1] = ACTIONS(8717), + [aux_sym_open_statement_token1] = ACTIONS(8717), + [aux_sym_file_mode_token2] = ACTIONS(8717), + [aux_sym_file_access_token2] = ACTIONS(8717), + [aux_sym_file_lock_token2] = ACTIONS(8717), + [aux_sym_print_statement_token1] = ACTIONS(8717), + [anon_sym_PLUS] = ACTIONS(8719), + [anon_sym_DASH] = ACTIONS(8717), + [anon_sym_QMARK] = ACTIONS(8719), + [aux_sym_close_statement_token1] = ACTIONS(8717), + [aux_sym_put_statement_token1] = ACTIONS(8717), + [aux_sym_unlock_statement_token1] = ACTIONS(8717), + [aux_sym_seek_statement_token1] = ACTIONS(8717), + [sym_reset_statement] = ACTIONS(8717), + [aux_sym_raise_event_statement_token1] = ACTIONS(8717), + [sym_stop_statement] = ACTIONS(8717), + [sym_beep_statement] = ACTIONS(8717), + [aux_sym_unload_statement_token1] = ACTIONS(8717), + [aux_sym_def_type_statement_token1] = ACTIONS(8717), + [aux_sym_def_type_statement_token2] = ACTIONS(8717), + [aux_sym_def_type_statement_token3] = ACTIONS(8717), + [aux_sym_def_type_statement_token4] = ACTIONS(8717), + [aux_sym_def_type_statement_token5] = ACTIONS(8717), + [aux_sym_def_type_statement_token6] = ACTIONS(8717), + [aux_sym_def_type_statement_token7] = ACTIONS(8717), + [aux_sym_def_type_statement_token8] = ACTIONS(8717), + [aux_sym_def_type_statement_token9] = ACTIONS(8717), + [aux_sym_def_type_statement_token10] = ACTIONS(8717), + [aux_sym_def_type_statement_token11] = ACTIONS(8717), + [aux_sym_def_type_statement_token12] = ACTIONS(8717), + [aux_sym_def_type_statement_token13] = ACTIONS(8717), + [aux_sym_def_type_statement_token14] = ACTIONS(8717), + [aux_sym_call_statement_token1] = ACTIONS(8717), + [sym__ambiguous_call_statement] = ACTIONS(8717), + [aux_sym_addressof_expression_token1] = ACTIONS(8717), + [aux_sym_type_of_expression_token1] = ACTIONS(8717), + [aux_sym_unary_expression_token1] = ACTIONS(8717), + [sym_string_literal] = ACTIONS(8719), + [sym_number_literal] = ACTIONS(8719), + [aux_sym_boolean_literal_token1] = ACTIONS(8717), + [aux_sym_boolean_literal_token2] = ACTIONS(8717), + [sym_nothing_literal] = ACTIONS(8717), + [sym_null_literal] = ACTIONS(8717), + [sym_empty_literal] = ACTIONS(8717), + [sym_date_literal] = ACTIONS(8719), + [anon_sym_POUND] = ACTIONS(8717), + }, + [STATE(5896)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6276), + [sym_identifier] = ACTIONS(8813), + [sym_newline] = ACTIONS(8815), + [anon_sym_COLON] = ACTIONS(10837), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8813), + [aux_sym_frm_property_statement_token1] = ACTIONS(8813), + [anon_sym_DOT] = ACTIONS(8813), + [anon_sym_BANG] = ACTIONS(8815), + [aux_sym__attribute_identifier_token1] = ACTIONS(8813), + [aux_sym_option_statement_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8813), + [aux_sym_preprocessor_const_token1] = ACTIONS(8813), + [sym_static_modifier] = ACTIONS(8813), + [sym__dim_keyword] = ACTIONS(8813), + [sym__redim_keyword] = ACTIONS(8813), + [aux_sym_get_accessor_token1] = ACTIONS(8813), + [aux_sym_set_accessor_token1] = ACTIONS(8813), + [aux_sym_const_declaration_token1] = ACTIONS(8813), + [anon_sym_LPAREN] = ACTIONS(8815), + [aux_sym_as_type_clause_token2] = ACTIONS(8813), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8813), + [aux_sym_visibility_token1] = ACTIONS(8813), + [aux_sym_visibility_token2] = ACTIONS(8813), + [aux_sym_elseif_fragment_token1] = ACTIONS(8813), + [aux_sym_else_fragment_token1] = ACTIONS(8813), + [aux_sym_select_statement_token1] = ACTIONS(8813), + [aux_sym__for_header_token1] = ACTIONS(8813), + [aux_sym_do_statement_token1] = ACTIONS(8813), + [aux_sym_do_condition_token1] = ACTIONS(8813), + [aux_sym_with_statement_token1] = ACTIONS(8813), + [aux_sym_exit_statement_token1] = ACTIONS(8813), + [sym_end_statement] = ACTIONS(8815), + [aux_sym_on_goto_statement_token1] = ACTIONS(8813), + [aux_sym_on_goto_statement_token2] = ACTIONS(8813), + [aux_sym_on_error_statement_token2] = ACTIONS(8813), + [sym__ambiguous_redim_statement] = ACTIONS(8815), + [aux_sym_erase_statement_token1] = ACTIONS(8813), + [aux_sym_open_statement_token1] = ACTIONS(8813), + [aux_sym_file_mode_token2] = ACTIONS(8813), + [aux_sym_file_access_token2] = ACTIONS(8813), + [aux_sym_file_lock_token2] = ACTIONS(8813), + [aux_sym_print_statement_token1] = ACTIONS(8813), + [anon_sym_PLUS] = ACTIONS(8815), + [anon_sym_DASH] = ACTIONS(8813), + [anon_sym_QMARK] = ACTIONS(8815), + [aux_sym_close_statement_token1] = ACTIONS(8813), + [aux_sym_put_statement_token1] = ACTIONS(8813), + [aux_sym_unlock_statement_token1] = ACTIONS(8813), + [aux_sym_seek_statement_token1] = ACTIONS(8813), + [sym_reset_statement] = ACTIONS(8813), + [aux_sym_raise_event_statement_token1] = ACTIONS(8813), + [sym_stop_statement] = ACTIONS(8813), + [sym_beep_statement] = ACTIONS(8813), + [aux_sym_unload_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token2] = ACTIONS(8813), + [aux_sym_def_type_statement_token3] = ACTIONS(8813), + [aux_sym_def_type_statement_token4] = ACTIONS(8813), + [aux_sym_def_type_statement_token5] = ACTIONS(8813), + [aux_sym_def_type_statement_token6] = ACTIONS(8813), + [aux_sym_def_type_statement_token7] = ACTIONS(8813), + [aux_sym_def_type_statement_token8] = ACTIONS(8813), + [aux_sym_def_type_statement_token9] = ACTIONS(8813), + [aux_sym_def_type_statement_token10] = ACTIONS(8813), + [aux_sym_def_type_statement_token11] = ACTIONS(8813), + [aux_sym_def_type_statement_token12] = ACTIONS(8813), + [aux_sym_def_type_statement_token13] = ACTIONS(8813), + [aux_sym_def_type_statement_token14] = ACTIONS(8813), + [aux_sym_call_statement_token1] = ACTIONS(8813), + [sym__ambiguous_call_statement] = ACTIONS(8813), + [aux_sym_addressof_expression_token1] = ACTIONS(8813), + [aux_sym_type_of_expression_token1] = ACTIONS(8813), + [aux_sym_unary_expression_token1] = ACTIONS(8813), + [sym_string_literal] = ACTIONS(8815), + [sym_number_literal] = ACTIONS(8815), + [aux_sym_boolean_literal_token1] = ACTIONS(8813), + [aux_sym_boolean_literal_token2] = ACTIONS(8813), + [sym_nothing_literal] = ACTIONS(8813), + [sym_null_literal] = ACTIONS(8813), + [sym_empty_literal] = ACTIONS(8813), + [sym_date_literal] = ACTIONS(8815), + [anon_sym_POUND] = ACTIONS(8813), + }, + [STATE(5897)] = { + [sym_identifier] = ACTIONS(8780), + [sym_newline] = ACTIONS(8782), + [anon_sym_COLON] = ACTIONS(8782), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8780), + [aux_sym_frm_property_statement_token1] = ACTIONS(8780), + [anon_sym_DOT] = ACTIONS(8780), + [anon_sym_BANG] = ACTIONS(8782), + [aux_sym__attribute_identifier_token1] = ACTIONS(8780), + [aux_sym_option_statement_token3] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8780), + [aux_sym_preprocessor_const_token1] = ACTIONS(8780), + [sym_static_modifier] = ACTIONS(8780), + [sym__dim_keyword] = ACTIONS(8780), + [sym__redim_keyword] = ACTIONS(8780), + [aux_sym_get_accessor_token1] = ACTIONS(8780), + [aux_sym_set_accessor_token1] = ACTIONS(8780), + [anon_sym_COMMA] = ACTIONS(10876), + [aux_sym_const_declaration_token1] = ACTIONS(8780), + [anon_sym_LPAREN] = ACTIONS(8782), + [aux_sym_as_type_clause_token2] = ACTIONS(8780), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8780), + [aux_sym_visibility_token1] = ACTIONS(8780), + [aux_sym_visibility_token2] = ACTIONS(8780), + [aux_sym_elseif_fragment_token1] = ACTIONS(8780), + [aux_sym_else_fragment_token1] = ACTIONS(8780), + [aux_sym_select_statement_token1] = ACTIONS(8780), + [aux_sym_select_statement_token2] = ACTIONS(8780), + [aux_sym__for_header_token1] = ACTIONS(8780), + [aux_sym_do_statement_token1] = ACTIONS(8780), + [aux_sym_do_condition_token1] = ACTIONS(8780), + [aux_sym_with_statement_token1] = ACTIONS(8780), + [aux_sym_exit_statement_token1] = ACTIONS(8780), + [sym_end_statement] = ACTIONS(8782), + [aux_sym_on_goto_statement_token1] = ACTIONS(8780), + [aux_sym_on_goto_statement_token2] = ACTIONS(8780), + [aux_sym_on_error_statement_token2] = ACTIONS(8780), + [sym__ambiguous_redim_statement] = ACTIONS(8782), + [aux_sym_erase_statement_token1] = ACTIONS(8780), + [aux_sym_open_statement_token1] = ACTIONS(8780), + [aux_sym_file_mode_token2] = ACTIONS(8780), + [aux_sym_file_access_token2] = ACTIONS(8780), + [aux_sym_file_lock_token2] = ACTIONS(8780), + [aux_sym_print_statement_token1] = ACTIONS(8780), + [anon_sym_PLUS] = ACTIONS(8782), + [anon_sym_DASH] = ACTIONS(8780), + [anon_sym_QMARK] = ACTIONS(8782), + [aux_sym_close_statement_token1] = ACTIONS(8780), + [aux_sym_put_statement_token1] = ACTIONS(8780), + [aux_sym_unlock_statement_token1] = ACTIONS(8780), + [aux_sym_seek_statement_token1] = ACTIONS(8780), + [sym_reset_statement] = ACTIONS(8780), + [aux_sym_raise_event_statement_token1] = ACTIONS(8780), + [sym_stop_statement] = ACTIONS(8780), + [sym_beep_statement] = ACTIONS(8780), + [aux_sym_unload_statement_token1] = ACTIONS(8780), + [aux_sym_def_type_statement_token1] = ACTIONS(8780), + [aux_sym_def_type_statement_token2] = ACTIONS(8780), + [aux_sym_def_type_statement_token3] = ACTIONS(8780), + [aux_sym_def_type_statement_token4] = ACTIONS(8780), + [aux_sym_def_type_statement_token5] = ACTIONS(8780), + [aux_sym_def_type_statement_token6] = ACTIONS(8780), + [aux_sym_def_type_statement_token7] = ACTIONS(8780), + [aux_sym_def_type_statement_token8] = ACTIONS(8780), + [aux_sym_def_type_statement_token9] = ACTIONS(8780), + [aux_sym_def_type_statement_token10] = ACTIONS(8780), + [aux_sym_def_type_statement_token11] = ACTIONS(8780), + [aux_sym_def_type_statement_token12] = ACTIONS(8780), + [aux_sym_def_type_statement_token13] = ACTIONS(8780), + [aux_sym_def_type_statement_token14] = ACTIONS(8780), + [aux_sym_call_statement_token1] = ACTIONS(8780), + [sym__ambiguous_call_statement] = ACTIONS(8780), + [aux_sym_addressof_expression_token1] = ACTIONS(8780), + [aux_sym_type_of_expression_token1] = ACTIONS(8780), + [aux_sym_unary_expression_token1] = ACTIONS(8780), + [sym_string_literal] = ACTIONS(8782), + [sym_number_literal] = ACTIONS(8782), + [aux_sym_boolean_literal_token1] = ACTIONS(8780), + [aux_sym_boolean_literal_token2] = ACTIONS(8780), + [sym_nothing_literal] = ACTIONS(8780), + [sym_null_literal] = ACTIONS(8780), + [sym_empty_literal] = ACTIONS(8780), + [sym_date_literal] = ACTIONS(8782), + [anon_sym_POUND] = ACTIONS(8780), + }, + [STATE(5898)] = { + [sym_identifier] = ACTIONS(8881), + [sym_newline] = ACTIONS(8884), + [anon_sym_COLON] = ACTIONS(8884), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8881), + [aux_sym_frm_property_statement_token1] = ACTIONS(8881), + [anon_sym_DOT] = ACTIONS(8881), + [anon_sym_BANG] = ACTIONS(8884), + [aux_sym__attribute_identifier_token1] = ACTIONS(8881), + [aux_sym_option_statement_token3] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8881), + [aux_sym_preprocessor_const_token1] = ACTIONS(8881), + [sym_static_modifier] = ACTIONS(8881), + [sym__dim_keyword] = ACTIONS(8881), + [sym__redim_keyword] = ACTIONS(8881), + [aux_sym_get_accessor_token1] = ACTIONS(8881), + [aux_sym_set_accessor_token1] = ACTIONS(8881), + [aux_sym_const_declaration_token1] = ACTIONS(8881), + [anon_sym_LPAREN] = ACTIONS(8884), + [aux_sym_as_type_clause_token2] = ACTIONS(8881), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8881), + [aux_sym_visibility_token1] = ACTIONS(8881), + [aux_sym_visibility_token2] = ACTIONS(8881), + [aux_sym_elseif_fragment_token1] = ACTIONS(8881), + [aux_sym_else_fragment_token1] = ACTIONS(8881), + [aux_sym_select_statement_token1] = ACTIONS(8881), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8881), + [aux_sym__for_header_token1] = ACTIONS(8881), + [aux_sym_do_statement_token1] = ACTIONS(8881), + [aux_sym_do_condition_token1] = ACTIONS(8881), + [aux_sym_while_statement_token1] = ACTIONS(8887), + [aux_sym_with_statement_token1] = ACTIONS(8881), + [aux_sym_exit_statement_token1] = ACTIONS(8881), + [sym_end_statement] = ACTIONS(8884), + [aux_sym_on_goto_statement_token1] = ACTIONS(8881), + [aux_sym_on_goto_statement_token2] = ACTIONS(8881), + [aux_sym_on_error_statement_token2] = ACTIONS(8881), + [sym__ambiguous_redim_statement] = ACTIONS(8884), + [aux_sym_erase_statement_token1] = ACTIONS(8881), + [aux_sym_open_statement_token1] = ACTIONS(8881), + [aux_sym_file_mode_token2] = ACTIONS(8881), + [aux_sym_file_access_token2] = ACTIONS(8881), + [aux_sym_file_lock_token2] = ACTIONS(8881), + [aux_sym_print_statement_token1] = ACTIONS(8881), + [anon_sym_PLUS] = ACTIONS(8884), + [anon_sym_DASH] = ACTIONS(8881), + [anon_sym_QMARK] = ACTIONS(8884), + [aux_sym_close_statement_token1] = ACTIONS(8881), + [aux_sym_put_statement_token1] = ACTIONS(8881), + [aux_sym_unlock_statement_token1] = ACTIONS(8881), + [aux_sym_seek_statement_token1] = ACTIONS(8881), + [sym_reset_statement] = ACTIONS(8881), + [aux_sym_raise_event_statement_token1] = ACTIONS(8881), + [sym_stop_statement] = ACTIONS(8881), + [sym_beep_statement] = ACTIONS(8881), + [aux_sym_unload_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token2] = ACTIONS(8881), + [aux_sym_def_type_statement_token3] = ACTIONS(8881), + [aux_sym_def_type_statement_token4] = ACTIONS(8881), + [aux_sym_def_type_statement_token5] = ACTIONS(8881), + [aux_sym_def_type_statement_token6] = ACTIONS(8881), + [aux_sym_def_type_statement_token7] = ACTIONS(8881), + [aux_sym_def_type_statement_token8] = ACTIONS(8881), + [aux_sym_def_type_statement_token9] = ACTIONS(8881), + [aux_sym_def_type_statement_token10] = ACTIONS(8881), + [aux_sym_def_type_statement_token11] = ACTIONS(8881), + [aux_sym_def_type_statement_token12] = ACTIONS(8881), + [aux_sym_def_type_statement_token13] = ACTIONS(8881), + [aux_sym_def_type_statement_token14] = ACTIONS(8881), + [aux_sym_call_statement_token1] = ACTIONS(8881), + [sym__ambiguous_call_statement] = ACTIONS(8881), + [aux_sym_addressof_expression_token1] = ACTIONS(8881), + [aux_sym_type_of_expression_token1] = ACTIONS(8881), + [aux_sym_unary_expression_token1] = ACTIONS(8881), + [sym_string_literal] = ACTIONS(8884), + [sym_number_literal] = ACTIONS(8884), + [aux_sym_boolean_literal_token1] = ACTIONS(8881), + [aux_sym_boolean_literal_token2] = ACTIONS(8881), + [sym_nothing_literal] = ACTIONS(8881), + [sym_null_literal] = ACTIONS(8881), + [sym_empty_literal] = ACTIONS(8881), + [sym_date_literal] = ACTIONS(8884), + [anon_sym_POUND] = ACTIONS(8881), + }, + [STATE(5899)] = { + [sym_identifier] = ACTIONS(8915), + [sym_newline] = ACTIONS(8918), + [anon_sym_COLON] = ACTIONS(8918), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8915), + [aux_sym_frm_property_statement_token1] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8915), + [anon_sym_BANG] = ACTIONS(8918), + [aux_sym__attribute_identifier_token1] = ACTIONS(8915), + [aux_sym_option_statement_token3] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8915), + [aux_sym_preprocessor_const_token1] = ACTIONS(8915), + [sym_static_modifier] = ACTIONS(8915), + [sym__dim_keyword] = ACTIONS(8915), + [sym__redim_keyword] = ACTIONS(8915), + [aux_sym_get_accessor_token1] = ACTIONS(8915), + [aux_sym_set_accessor_token1] = ACTIONS(8915), + [aux_sym_const_declaration_token1] = ACTIONS(8915), + [anon_sym_LPAREN] = ACTIONS(8918), + [aux_sym_as_type_clause_token2] = ACTIONS(8915), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8915), + [aux_sym_visibility_token1] = ACTIONS(8915), + [aux_sym_visibility_token2] = ACTIONS(8915), + [aux_sym_elseif_fragment_token1] = ACTIONS(8915), + [aux_sym_else_fragment_token1] = ACTIONS(8915), + [aux_sym_select_statement_token1] = ACTIONS(8915), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8915), + [aux_sym__for_header_token1] = ACTIONS(8915), + [aux_sym_do_statement_token1] = ACTIONS(8915), + [aux_sym_do_condition_token1] = ACTIONS(8915), + [aux_sym_while_statement_token1] = ACTIONS(8921), + [aux_sym_with_statement_token1] = ACTIONS(8915), + [aux_sym_exit_statement_token1] = ACTIONS(8915), + [sym_end_statement] = ACTIONS(8918), + [aux_sym_on_goto_statement_token1] = ACTIONS(8915), + [aux_sym_on_goto_statement_token2] = ACTIONS(8915), + [aux_sym_on_error_statement_token2] = ACTIONS(8915), + [sym__ambiguous_redim_statement] = ACTIONS(8918), + [aux_sym_erase_statement_token1] = ACTIONS(8915), + [aux_sym_open_statement_token1] = ACTIONS(8915), + [aux_sym_file_mode_token2] = ACTIONS(8915), + [aux_sym_file_access_token2] = ACTIONS(8915), + [aux_sym_file_lock_token2] = ACTIONS(8915), + [aux_sym_print_statement_token1] = ACTIONS(8915), + [anon_sym_PLUS] = ACTIONS(8918), + [anon_sym_DASH] = ACTIONS(8915), + [anon_sym_QMARK] = ACTIONS(8918), + [aux_sym_close_statement_token1] = ACTIONS(8915), + [aux_sym_put_statement_token1] = ACTIONS(8915), + [aux_sym_unlock_statement_token1] = ACTIONS(8915), + [aux_sym_seek_statement_token1] = ACTIONS(8915), + [sym_reset_statement] = ACTIONS(8915), + [aux_sym_raise_event_statement_token1] = ACTIONS(8915), + [sym_stop_statement] = ACTIONS(8915), + [sym_beep_statement] = ACTIONS(8915), + [aux_sym_unload_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token2] = ACTIONS(8915), + [aux_sym_def_type_statement_token3] = ACTIONS(8915), + [aux_sym_def_type_statement_token4] = ACTIONS(8915), + [aux_sym_def_type_statement_token5] = ACTIONS(8915), + [aux_sym_def_type_statement_token6] = ACTIONS(8915), + [aux_sym_def_type_statement_token7] = ACTIONS(8915), + [aux_sym_def_type_statement_token8] = ACTIONS(8915), + [aux_sym_def_type_statement_token9] = ACTIONS(8915), + [aux_sym_def_type_statement_token10] = ACTIONS(8915), + [aux_sym_def_type_statement_token11] = ACTIONS(8915), + [aux_sym_def_type_statement_token12] = ACTIONS(8915), + [aux_sym_def_type_statement_token13] = ACTIONS(8915), + [aux_sym_def_type_statement_token14] = ACTIONS(8915), + [aux_sym_call_statement_token1] = ACTIONS(8915), + [sym__ambiguous_call_statement] = ACTIONS(8915), + [aux_sym_addressof_expression_token1] = ACTIONS(8915), + [aux_sym_type_of_expression_token1] = ACTIONS(8915), + [aux_sym_unary_expression_token1] = ACTIONS(8915), + [sym_string_literal] = ACTIONS(8918), + [sym_number_literal] = ACTIONS(8918), + [aux_sym_boolean_literal_token1] = ACTIONS(8915), + [aux_sym_boolean_literal_token2] = ACTIONS(8915), + [sym_nothing_literal] = ACTIONS(8915), + [sym_null_literal] = ACTIONS(8915), + [sym_empty_literal] = ACTIONS(8915), + [sym_date_literal] = ACTIONS(8918), + [anon_sym_POUND] = ACTIONS(8915), + }, + [STATE(5900)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(5901)] = { + [sym_identifier] = ACTIONS(8756), + [sym_newline] = ACTIONS(8759), + [anon_sym_COLON] = ACTIONS(8759), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8756), + [aux_sym_frm_property_statement_token1] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8756), + [anon_sym_BANG] = ACTIONS(8759), + [aux_sym__attribute_identifier_token1] = ACTIONS(8756), + [aux_sym_option_statement_token3] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8756), + [aux_sym_preprocessor_const_token1] = ACTIONS(8756), + [sym_static_modifier] = ACTIONS(8756), + [sym__dim_keyword] = ACTIONS(8756), + [sym__redim_keyword] = ACTIONS(8756), + [aux_sym_get_accessor_token1] = ACTIONS(8756), + [aux_sym_set_accessor_token1] = ACTIONS(8756), + [aux_sym_const_declaration_token1] = ACTIONS(8756), + [anon_sym_LPAREN] = ACTIONS(8759), + [aux_sym_as_type_clause_token2] = ACTIONS(8756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8756), + [aux_sym_visibility_token1] = ACTIONS(8756), + [aux_sym_visibility_token2] = ACTIONS(8756), + [aux_sym_elseif_fragment_token1] = ACTIONS(8756), + [aux_sym_else_fragment_token1] = ACTIONS(8756), + [aux_sym_select_statement_token1] = ACTIONS(8756), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8756), + [aux_sym__for_header_token1] = ACTIONS(8756), + [aux_sym_do_statement_token1] = ACTIONS(8756), + [aux_sym_do_condition_token1] = ACTIONS(8756), + [aux_sym_while_statement_token1] = ACTIONS(8762), + [aux_sym_with_statement_token1] = ACTIONS(8756), + [aux_sym_exit_statement_token1] = ACTIONS(8756), + [sym_end_statement] = ACTIONS(8759), + [aux_sym_on_goto_statement_token1] = ACTIONS(8756), + [aux_sym_on_goto_statement_token2] = ACTIONS(8756), + [aux_sym_on_error_statement_token2] = ACTIONS(8756), + [sym__ambiguous_redim_statement] = ACTIONS(8759), + [aux_sym_erase_statement_token1] = ACTIONS(8756), + [aux_sym_open_statement_token1] = ACTIONS(8756), + [aux_sym_file_mode_token2] = ACTIONS(8756), + [aux_sym_file_access_token2] = ACTIONS(8756), + [aux_sym_file_lock_token2] = ACTIONS(8756), + [aux_sym_print_statement_token1] = ACTIONS(8756), + [anon_sym_PLUS] = ACTIONS(8759), + [anon_sym_DASH] = ACTIONS(8756), + [anon_sym_QMARK] = ACTIONS(8759), + [aux_sym_close_statement_token1] = ACTIONS(8756), + [aux_sym_put_statement_token1] = ACTIONS(8756), + [aux_sym_unlock_statement_token1] = ACTIONS(8756), + [aux_sym_seek_statement_token1] = ACTIONS(8756), + [sym_reset_statement] = ACTIONS(8756), + [aux_sym_raise_event_statement_token1] = ACTIONS(8756), + [sym_stop_statement] = ACTIONS(8756), + [sym_beep_statement] = ACTIONS(8756), + [aux_sym_unload_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token2] = ACTIONS(8756), + [aux_sym_def_type_statement_token3] = ACTIONS(8756), + [aux_sym_def_type_statement_token4] = ACTIONS(8756), + [aux_sym_def_type_statement_token5] = ACTIONS(8756), + [aux_sym_def_type_statement_token6] = ACTIONS(8756), + [aux_sym_def_type_statement_token7] = ACTIONS(8756), + [aux_sym_def_type_statement_token8] = ACTIONS(8756), + [aux_sym_def_type_statement_token9] = ACTIONS(8756), + [aux_sym_def_type_statement_token10] = ACTIONS(8756), + [aux_sym_def_type_statement_token11] = ACTIONS(8756), + [aux_sym_def_type_statement_token12] = ACTIONS(8756), + [aux_sym_def_type_statement_token13] = ACTIONS(8756), + [aux_sym_def_type_statement_token14] = ACTIONS(8756), + [aux_sym_call_statement_token1] = ACTIONS(8756), + [sym__ambiguous_call_statement] = ACTIONS(8756), + [aux_sym_addressof_expression_token1] = ACTIONS(8756), + [aux_sym_type_of_expression_token1] = ACTIONS(8756), + [aux_sym_unary_expression_token1] = ACTIONS(8756), + [sym_string_literal] = ACTIONS(8759), + [sym_number_literal] = ACTIONS(8759), + [aux_sym_boolean_literal_token1] = ACTIONS(8756), + [aux_sym_boolean_literal_token2] = ACTIONS(8756), + [sym_nothing_literal] = ACTIONS(8756), + [sym_null_literal] = ACTIONS(8756), + [sym_empty_literal] = ACTIONS(8756), + [sym_date_literal] = ACTIONS(8759), + [anon_sym_POUND] = ACTIONS(8756), + }, + [STATE(5902)] = { + [sym_identifier] = ACTIONS(8790), + [sym_newline] = ACTIONS(8792), + [anon_sym_COLON] = ACTIONS(8792), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8790), + [aux_sym_frm_property_statement_token1] = ACTIONS(8790), + [anon_sym_DOT] = ACTIONS(8790), + [anon_sym_BANG] = ACTIONS(8792), + [aux_sym__attribute_identifier_token1] = ACTIONS(8790), + [aux_sym_option_statement_token3] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8790), + [aux_sym_preprocessor_const_token1] = ACTIONS(8790), + [sym_static_modifier] = ACTIONS(8790), + [sym__dim_keyword] = ACTIONS(8790), + [sym__redim_keyword] = ACTIONS(8790), + [aux_sym_get_accessor_token1] = ACTIONS(8790), + [aux_sym_set_accessor_token1] = ACTIONS(8790), + [anon_sym_COMMA] = ACTIONS(8792), + [aux_sym_const_declaration_token1] = ACTIONS(8790), + [anon_sym_LPAREN] = ACTIONS(8792), + [aux_sym_as_type_clause_token2] = ACTIONS(8790), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8790), + [aux_sym_visibility_token1] = ACTIONS(8790), + [aux_sym_visibility_token2] = ACTIONS(8790), + [aux_sym_elseif_fragment_token1] = ACTIONS(8790), + [aux_sym_else_fragment_token1] = ACTIONS(8790), + [aux_sym_select_statement_token1] = ACTIONS(8790), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8790), + [aux_sym__for_header_token1] = ACTIONS(8790), + [aux_sym_do_statement_token1] = ACTIONS(8790), + [aux_sym_do_condition_token1] = ACTIONS(8790), + [aux_sym_with_statement_token1] = ACTIONS(8790), + [aux_sym_exit_statement_token1] = ACTIONS(8790), + [sym_end_statement] = ACTIONS(8792), + [aux_sym_on_goto_statement_token1] = ACTIONS(8790), + [aux_sym_on_goto_statement_token2] = ACTIONS(8790), + [aux_sym_on_error_statement_token2] = ACTIONS(8790), + [sym__ambiguous_redim_statement] = ACTIONS(8792), + [aux_sym_erase_statement_token1] = ACTIONS(8790), + [aux_sym_open_statement_token1] = ACTIONS(8790), + [aux_sym_file_mode_token2] = ACTIONS(8790), + [aux_sym_file_access_token2] = ACTIONS(8790), + [aux_sym_file_lock_token2] = ACTIONS(8790), + [aux_sym_print_statement_token1] = ACTIONS(8790), + [anon_sym_PLUS] = ACTIONS(8792), + [anon_sym_DASH] = ACTIONS(8790), + [anon_sym_QMARK] = ACTIONS(8792), + [aux_sym_close_statement_token1] = ACTIONS(8790), + [aux_sym_put_statement_token1] = ACTIONS(8790), + [aux_sym_unlock_statement_token1] = ACTIONS(8790), + [aux_sym_seek_statement_token1] = ACTIONS(8790), + [sym_reset_statement] = ACTIONS(8790), + [aux_sym_raise_event_statement_token1] = ACTIONS(8790), + [sym_stop_statement] = ACTIONS(8790), + [sym_beep_statement] = ACTIONS(8790), + [aux_sym_unload_statement_token1] = ACTIONS(8790), + [aux_sym_def_type_statement_token1] = ACTIONS(8790), + [aux_sym_def_type_statement_token2] = ACTIONS(8790), + [aux_sym_def_type_statement_token3] = ACTIONS(8790), + [aux_sym_def_type_statement_token4] = ACTIONS(8790), + [aux_sym_def_type_statement_token5] = ACTIONS(8790), + [aux_sym_def_type_statement_token6] = ACTIONS(8790), + [aux_sym_def_type_statement_token7] = ACTIONS(8790), + [aux_sym_def_type_statement_token8] = ACTIONS(8790), + [aux_sym_def_type_statement_token9] = ACTIONS(8790), + [aux_sym_def_type_statement_token10] = ACTIONS(8790), + [aux_sym_def_type_statement_token11] = ACTIONS(8790), + [aux_sym_def_type_statement_token12] = ACTIONS(8790), + [aux_sym_def_type_statement_token13] = ACTIONS(8790), + [aux_sym_def_type_statement_token14] = ACTIONS(8790), + [aux_sym_call_statement_token1] = ACTIONS(8790), + [sym__ambiguous_call_statement] = ACTIONS(8790), + [aux_sym_addressof_expression_token1] = ACTIONS(8790), + [aux_sym_type_of_expression_token1] = ACTIONS(8790), + [aux_sym_unary_expression_token1] = ACTIONS(8790), + [sym_string_literal] = ACTIONS(8792), + [sym_number_literal] = ACTIONS(8792), + [aux_sym_boolean_literal_token1] = ACTIONS(8790), + [aux_sym_boolean_literal_token2] = ACTIONS(8790), + [sym_nothing_literal] = ACTIONS(8790), + [sym_null_literal] = ACTIONS(8790), + [sym_empty_literal] = ACTIONS(8790), + [sym_date_literal] = ACTIONS(8792), + [anon_sym_POUND] = ACTIONS(8790), + }, + [STATE(5903)] = { + [sym_identifier] = ACTIONS(8624), + [sym_newline] = ACTIONS(8626), + [anon_sym_COLON] = ACTIONS(8626), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8624), + [aux_sym_frm_property_statement_token1] = ACTIONS(8624), + [anon_sym_DOT] = ACTIONS(8624), + [anon_sym_BANG] = ACTIONS(8626), + [aux_sym__attribute_identifier_token1] = ACTIONS(8624), + [aux_sym_option_statement_token3] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8624), + [aux_sym_preprocessor_const_token1] = ACTIONS(8624), + [sym_static_modifier] = ACTIONS(8624), + [sym__dim_keyword] = ACTIONS(8624), + [sym__redim_keyword] = ACTIONS(8624), + [aux_sym_get_accessor_token1] = ACTIONS(8624), + [aux_sym_set_accessor_token1] = ACTIONS(8624), + [aux_sym_const_declaration_token1] = ACTIONS(8624), + [anon_sym_LPAREN] = ACTIONS(8626), + [aux_sym_as_type_clause_token2] = ACTIONS(8624), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8624), + [aux_sym_visibility_token1] = ACTIONS(8624), + [aux_sym_visibility_token2] = ACTIONS(8624), + [aux_sym_elseif_fragment_token1] = ACTIONS(8624), + [aux_sym_else_fragment_token1] = ACTIONS(8624), + [aux_sym_select_statement_token1] = ACTIONS(8624), + [aux_sym__for_header_token1] = ACTIONS(8624), + [aux_sym_do_statement_token1] = ACTIONS(8624), + [aux_sym_do_condition_token1] = ACTIONS(8624), + [aux_sym_with_statement_token1] = ACTIONS(8624), + [aux_sym_exit_statement_token1] = ACTIONS(8624), + [sym_end_statement] = ACTIONS(8626), + [aux_sym_on_goto_statement_token1] = ACTIONS(8624), + [aux_sym_on_goto_statement_token2] = ACTIONS(8624), + [aux_sym_on_error_statement_token2] = ACTIONS(8624), + [sym__ambiguous_redim_statement] = ACTIONS(8626), + [aux_sym_erase_statement_token1] = ACTIONS(8624), + [aux_sym_open_statement_token1] = ACTIONS(8624), + [aux_sym_open_statement_token3] = ACTIONS(10878), + [aux_sym_file_mode_token2] = ACTIONS(8624), + [aux_sym_file_access_token2] = ACTIONS(8624), + [aux_sym_file_lock_token2] = ACTIONS(8624), + [aux_sym_print_statement_token1] = ACTIONS(8624), + [anon_sym_PLUS] = ACTIONS(8626), + [anon_sym_DASH] = ACTIONS(8624), + [anon_sym_QMARK] = ACTIONS(8626), + [aux_sym_close_statement_token1] = ACTIONS(8624), + [aux_sym_put_statement_token1] = ACTIONS(8624), + [aux_sym_unlock_statement_token1] = ACTIONS(8624), + [aux_sym_seek_statement_token1] = ACTIONS(8624), + [sym_reset_statement] = ACTIONS(8624), + [aux_sym_raise_event_statement_token1] = ACTIONS(8624), + [sym_stop_statement] = ACTIONS(8624), + [sym_beep_statement] = ACTIONS(8624), + [aux_sym_unload_statement_token1] = ACTIONS(8624), + [aux_sym_def_type_statement_token1] = ACTIONS(8624), + [aux_sym_def_type_statement_token2] = ACTIONS(8624), + [aux_sym_def_type_statement_token3] = ACTIONS(8624), + [aux_sym_def_type_statement_token4] = ACTIONS(8624), + [aux_sym_def_type_statement_token5] = ACTIONS(8624), + [aux_sym_def_type_statement_token6] = ACTIONS(8624), + [aux_sym_def_type_statement_token7] = ACTIONS(8624), + [aux_sym_def_type_statement_token8] = ACTIONS(8624), + [aux_sym_def_type_statement_token9] = ACTIONS(8624), + [aux_sym_def_type_statement_token10] = ACTIONS(8624), + [aux_sym_def_type_statement_token11] = ACTIONS(8624), + [aux_sym_def_type_statement_token12] = ACTIONS(8624), + [aux_sym_def_type_statement_token13] = ACTIONS(8624), + [aux_sym_def_type_statement_token14] = ACTIONS(8624), + [aux_sym_call_statement_token1] = ACTIONS(8624), + [sym__ambiguous_call_statement] = ACTIONS(8624), + [aux_sym_addressof_expression_token1] = ACTIONS(8624), + [aux_sym_type_of_expression_token1] = ACTIONS(8624), + [aux_sym_unary_expression_token1] = ACTIONS(8624), + [sym_string_literal] = ACTIONS(8626), + [sym_number_literal] = ACTIONS(8626), + [aux_sym_boolean_literal_token1] = ACTIONS(8624), + [aux_sym_boolean_literal_token2] = ACTIONS(8624), + [sym_nothing_literal] = ACTIONS(8624), + [sym_null_literal] = ACTIONS(8624), + [sym_empty_literal] = ACTIONS(8624), + [sym_date_literal] = ACTIONS(8626), + [anon_sym_POUND] = ACTIONS(8624), + }, + [STATE(5904)] = { + [aux_sym_input_statement_repeat1] = STATE(6091), + [sym_identifier] = ACTIONS(8237), + [sym_newline] = ACTIONS(8239), + [anon_sym_COLON] = ACTIONS(8239), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8237), + [aux_sym_frm_property_statement_token1] = ACTIONS(8237), + [anon_sym_DOT] = ACTIONS(8237), + [anon_sym_BANG] = ACTIONS(8239), + [aux_sym__attribute_identifier_token1] = ACTIONS(8237), + [aux_sym_option_statement_token3] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8237), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8237), + [aux_sym_preprocessor_const_token1] = ACTIONS(8237), + [sym_static_modifier] = ACTIONS(8237), + [sym__dim_keyword] = ACTIONS(8237), + [sym__redim_keyword] = ACTIONS(8237), + [aux_sym_get_accessor_token1] = ACTIONS(8237), + [aux_sym_set_accessor_token1] = ACTIONS(8237), + [anon_sym_COMMA] = ACTIONS(10779), + [aux_sym_const_declaration_token1] = ACTIONS(8237), + [anon_sym_LPAREN] = ACTIONS(8239), + [aux_sym_as_type_clause_token2] = ACTIONS(8237), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8237), + [aux_sym_visibility_token1] = ACTIONS(8237), + [aux_sym_visibility_token2] = ACTIONS(8237), + [aux_sym_elseif_fragment_token1] = ACTIONS(8237), + [aux_sym_else_fragment_token1] = ACTIONS(8237), + [aux_sym_select_statement_token1] = ACTIONS(8237), + [aux_sym__for_header_token1] = ACTIONS(8237), + [aux_sym_do_statement_token1] = ACTIONS(8237), + [aux_sym_do_condition_token1] = ACTIONS(8237), + [aux_sym_with_statement_token1] = ACTIONS(8237), + [aux_sym_exit_statement_token1] = ACTIONS(8237), + [sym_end_statement] = ACTIONS(8239), + [aux_sym_on_goto_statement_token1] = ACTIONS(8237), + [aux_sym_on_goto_statement_token2] = ACTIONS(8237), + [aux_sym_on_error_statement_token2] = ACTIONS(8237), + [sym__ambiguous_redim_statement] = ACTIONS(8239), + [aux_sym_erase_statement_token1] = ACTIONS(8237), + [aux_sym_open_statement_token1] = ACTIONS(8237), + [aux_sym_file_mode_token2] = ACTIONS(8237), + [aux_sym_file_access_token2] = ACTIONS(8237), + [aux_sym_file_lock_token2] = ACTIONS(8237), + [aux_sym_print_statement_token1] = ACTIONS(8237), + [anon_sym_PLUS] = ACTIONS(8239), + [anon_sym_DASH] = ACTIONS(8237), + [anon_sym_QMARK] = ACTIONS(8239), + [aux_sym_close_statement_token1] = ACTIONS(8237), + [aux_sym_put_statement_token1] = ACTIONS(8237), + [aux_sym_unlock_statement_token1] = ACTIONS(8237), + [aux_sym_seek_statement_token1] = ACTIONS(8237), + [sym_reset_statement] = ACTIONS(8237), + [aux_sym_raise_event_statement_token1] = ACTIONS(8237), + [sym_stop_statement] = ACTIONS(8237), + [sym_beep_statement] = ACTIONS(8237), + [aux_sym_unload_statement_token1] = ACTIONS(8237), + [aux_sym_def_type_statement_token1] = ACTIONS(8237), + [aux_sym_def_type_statement_token2] = ACTIONS(8237), + [aux_sym_def_type_statement_token3] = ACTIONS(8237), + [aux_sym_def_type_statement_token4] = ACTIONS(8237), + [aux_sym_def_type_statement_token5] = ACTIONS(8237), + [aux_sym_def_type_statement_token6] = ACTIONS(8237), + [aux_sym_def_type_statement_token7] = ACTIONS(8237), + [aux_sym_def_type_statement_token8] = ACTIONS(8237), + [aux_sym_def_type_statement_token9] = ACTIONS(8237), + [aux_sym_def_type_statement_token10] = ACTIONS(8237), + [aux_sym_def_type_statement_token11] = ACTIONS(8237), + [aux_sym_def_type_statement_token12] = ACTIONS(8237), + [aux_sym_def_type_statement_token13] = ACTIONS(8237), + [aux_sym_def_type_statement_token14] = ACTIONS(8237), + [aux_sym_call_statement_token1] = ACTIONS(8237), + [sym__ambiguous_call_statement] = ACTIONS(8237), + [aux_sym_addressof_expression_token1] = ACTIONS(8237), + [aux_sym_type_of_expression_token1] = ACTIONS(8237), + [aux_sym_unary_expression_token1] = ACTIONS(8237), + [sym_string_literal] = ACTIONS(8239), + [sym_number_literal] = ACTIONS(8239), + [aux_sym_boolean_literal_token1] = ACTIONS(8237), + [aux_sym_boolean_literal_token2] = ACTIONS(8237), + [sym_nothing_literal] = ACTIONS(8237), + [sym_null_literal] = ACTIONS(8237), + [sym_empty_literal] = ACTIONS(8237), + [sym_date_literal] = ACTIONS(8239), + [anon_sym_POUND] = ACTIONS(8237), + }, + [STATE(5905)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6147), + [sym_identifier] = ACTIONS(8813), + [sym_newline] = ACTIONS(8815), + [anon_sym_COLON] = ACTIONS(10880), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8813), + [aux_sym_frm_property_statement_token1] = ACTIONS(8813), + [anon_sym_DOT] = ACTIONS(8813), + [anon_sym_BANG] = ACTIONS(8815), + [aux_sym__attribute_identifier_token1] = ACTIONS(8813), + [aux_sym_option_statement_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8813), + [aux_sym_preprocessor_const_token1] = ACTIONS(8813), + [sym_static_modifier] = ACTIONS(8813), + [sym__dim_keyword] = ACTIONS(8813), + [sym__redim_keyword] = ACTIONS(8813), + [aux_sym_get_accessor_token1] = ACTIONS(8813), + [aux_sym_set_accessor_token1] = ACTIONS(8813), + [aux_sym_const_declaration_token1] = ACTIONS(8813), + [anon_sym_LPAREN] = ACTIONS(8815), + [aux_sym_as_type_clause_token2] = ACTIONS(8813), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8813), + [aux_sym_visibility_token1] = ACTIONS(8813), + [aux_sym_visibility_token2] = ACTIONS(8813), + [aux_sym_elseif_fragment_token1] = ACTIONS(8813), + [aux_sym_else_fragment_token1] = ACTIONS(8813), + [aux_sym_select_statement_token1] = ACTIONS(8813), + [aux_sym_select_statement_token2] = ACTIONS(8813), + [aux_sym__for_header_token1] = ACTIONS(8813), + [aux_sym_do_statement_token1] = ACTIONS(8813), + [aux_sym_do_condition_token1] = ACTIONS(8813), + [aux_sym_with_statement_token1] = ACTIONS(8813), + [aux_sym_exit_statement_token1] = ACTIONS(8813), + [sym_end_statement] = ACTIONS(8815), + [aux_sym_on_goto_statement_token1] = ACTIONS(8813), + [aux_sym_on_goto_statement_token2] = ACTIONS(8813), + [aux_sym_on_error_statement_token2] = ACTIONS(8813), + [sym__ambiguous_redim_statement] = ACTIONS(8815), + [aux_sym_erase_statement_token1] = ACTIONS(8813), + [aux_sym_open_statement_token1] = ACTIONS(8813), + [aux_sym_file_mode_token2] = ACTIONS(8813), + [aux_sym_file_access_token2] = ACTIONS(8813), + [aux_sym_file_lock_token2] = ACTIONS(8813), + [aux_sym_print_statement_token1] = ACTIONS(8813), + [anon_sym_PLUS] = ACTIONS(8815), + [anon_sym_DASH] = ACTIONS(8813), + [anon_sym_QMARK] = ACTIONS(8815), + [aux_sym_close_statement_token1] = ACTIONS(8813), + [aux_sym_put_statement_token1] = ACTIONS(8813), + [aux_sym_unlock_statement_token1] = ACTIONS(8813), + [aux_sym_seek_statement_token1] = ACTIONS(8813), + [sym_reset_statement] = ACTIONS(8813), + [aux_sym_raise_event_statement_token1] = ACTIONS(8813), + [sym_stop_statement] = ACTIONS(8813), + [sym_beep_statement] = ACTIONS(8813), + [aux_sym_unload_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token2] = ACTIONS(8813), + [aux_sym_def_type_statement_token3] = ACTIONS(8813), + [aux_sym_def_type_statement_token4] = ACTIONS(8813), + [aux_sym_def_type_statement_token5] = ACTIONS(8813), + [aux_sym_def_type_statement_token6] = ACTIONS(8813), + [aux_sym_def_type_statement_token7] = ACTIONS(8813), + [aux_sym_def_type_statement_token8] = ACTIONS(8813), + [aux_sym_def_type_statement_token9] = ACTIONS(8813), + [aux_sym_def_type_statement_token10] = ACTIONS(8813), + [aux_sym_def_type_statement_token11] = ACTIONS(8813), + [aux_sym_def_type_statement_token12] = ACTIONS(8813), + [aux_sym_def_type_statement_token13] = ACTIONS(8813), + [aux_sym_def_type_statement_token14] = ACTIONS(8813), + [aux_sym_call_statement_token1] = ACTIONS(8813), + [sym__ambiguous_call_statement] = ACTIONS(8813), + [aux_sym_addressof_expression_token1] = ACTIONS(8813), + [aux_sym_type_of_expression_token1] = ACTIONS(8813), + [aux_sym_unary_expression_token1] = ACTIONS(8813), + [sym_string_literal] = ACTIONS(8815), + [sym_number_literal] = ACTIONS(8815), + [aux_sym_boolean_literal_token1] = ACTIONS(8813), + [aux_sym_boolean_literal_token2] = ACTIONS(8813), + [sym_nothing_literal] = ACTIONS(8813), + [sym_null_literal] = ACTIONS(8813), + [sym_empty_literal] = ACTIONS(8813), + [sym_date_literal] = ACTIONS(8815), + [anon_sym_POUND] = ACTIONS(8813), + }, + [STATE(5906)] = { + [sym_identifier] = ACTIONS(8624), + [sym_newline] = ACTIONS(8626), + [anon_sym_COLON] = ACTIONS(8626), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8624), + [aux_sym_frm_property_statement_token1] = ACTIONS(8624), + [anon_sym_DOT] = ACTIONS(8624), + [anon_sym_BANG] = ACTIONS(8626), + [aux_sym__attribute_identifier_token1] = ACTIONS(8624), + [aux_sym_option_statement_token3] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8624), + [aux_sym_preprocessor_const_token1] = ACTIONS(8624), + [sym_static_modifier] = ACTIONS(8624), + [sym__dim_keyword] = ACTIONS(8624), + [sym__redim_keyword] = ACTIONS(8624), + [aux_sym_get_accessor_token1] = ACTIONS(8624), + [aux_sym_set_accessor_token1] = ACTIONS(8624), + [aux_sym_const_declaration_token1] = ACTIONS(8624), + [anon_sym_LPAREN] = ACTIONS(8626), + [aux_sym_as_type_clause_token2] = ACTIONS(8624), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8624), + [aux_sym_visibility_token1] = ACTIONS(8624), + [aux_sym_visibility_token2] = ACTIONS(8624), + [aux_sym_elseif_fragment_token1] = ACTIONS(8624), + [aux_sym_else_fragment_token1] = ACTIONS(8624), + [aux_sym_select_statement_token1] = ACTIONS(8624), + [aux_sym_select_statement_token2] = ACTIONS(8624), + [aux_sym__for_header_token1] = ACTIONS(8624), + [aux_sym_do_statement_token1] = ACTIONS(8624), + [aux_sym_do_condition_token1] = ACTIONS(8624), + [aux_sym_with_statement_token1] = ACTIONS(8624), + [aux_sym_exit_statement_token1] = ACTIONS(8624), + [sym_end_statement] = ACTIONS(8626), + [aux_sym_on_goto_statement_token1] = ACTIONS(8624), + [aux_sym_on_goto_statement_token2] = ACTIONS(8624), + [aux_sym_on_error_statement_token2] = ACTIONS(8624), + [sym__ambiguous_redim_statement] = ACTIONS(8626), + [aux_sym_erase_statement_token1] = ACTIONS(8624), + [aux_sym_open_statement_token1] = ACTIONS(8624), + [aux_sym_open_statement_token3] = ACTIONS(10882), + [aux_sym_file_mode_token2] = ACTIONS(8624), + [aux_sym_file_access_token2] = ACTIONS(8624), + [aux_sym_file_lock_token2] = ACTIONS(8624), + [aux_sym_print_statement_token1] = ACTIONS(8624), + [anon_sym_PLUS] = ACTIONS(8626), + [anon_sym_DASH] = ACTIONS(8624), + [anon_sym_QMARK] = ACTIONS(8626), + [aux_sym_close_statement_token1] = ACTIONS(8624), + [aux_sym_put_statement_token1] = ACTIONS(8624), + [aux_sym_unlock_statement_token1] = ACTIONS(8624), + [aux_sym_seek_statement_token1] = ACTIONS(8624), + [sym_reset_statement] = ACTIONS(8624), + [aux_sym_raise_event_statement_token1] = ACTIONS(8624), + [sym_stop_statement] = ACTIONS(8624), + [sym_beep_statement] = ACTIONS(8624), + [aux_sym_unload_statement_token1] = ACTIONS(8624), + [aux_sym_def_type_statement_token1] = ACTIONS(8624), + [aux_sym_def_type_statement_token2] = ACTIONS(8624), + [aux_sym_def_type_statement_token3] = ACTIONS(8624), + [aux_sym_def_type_statement_token4] = ACTIONS(8624), + [aux_sym_def_type_statement_token5] = ACTIONS(8624), + [aux_sym_def_type_statement_token6] = ACTIONS(8624), + [aux_sym_def_type_statement_token7] = ACTIONS(8624), + [aux_sym_def_type_statement_token8] = ACTIONS(8624), + [aux_sym_def_type_statement_token9] = ACTIONS(8624), + [aux_sym_def_type_statement_token10] = ACTIONS(8624), + [aux_sym_def_type_statement_token11] = ACTIONS(8624), + [aux_sym_def_type_statement_token12] = ACTIONS(8624), + [aux_sym_def_type_statement_token13] = ACTIONS(8624), + [aux_sym_def_type_statement_token14] = ACTIONS(8624), + [aux_sym_call_statement_token1] = ACTIONS(8624), + [sym__ambiguous_call_statement] = ACTIONS(8624), + [aux_sym_addressof_expression_token1] = ACTIONS(8624), + [aux_sym_type_of_expression_token1] = ACTIONS(8624), + [aux_sym_unary_expression_token1] = ACTIONS(8624), + [sym_string_literal] = ACTIONS(8626), + [sym_number_literal] = ACTIONS(8626), + [aux_sym_boolean_literal_token1] = ACTIONS(8624), + [aux_sym_boolean_literal_token2] = ACTIONS(8624), + [sym_nothing_literal] = ACTIONS(8624), + [sym_null_literal] = ACTIONS(8624), + [sym_empty_literal] = ACTIONS(8624), + [sym_date_literal] = ACTIONS(8626), + [anon_sym_POUND] = ACTIONS(8624), + }, + [STATE(5907)] = { + [sym_identifier] = ACTIONS(8756), + [sym_newline] = ACTIONS(8759), + [anon_sym_COLON] = ACTIONS(8759), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8756), + [aux_sym_frm_property_statement_token1] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8756), + [anon_sym_BANG] = ACTIONS(8759), + [aux_sym__attribute_identifier_token1] = ACTIONS(8756), + [aux_sym_option_statement_token3] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8756), + [aux_sym_preprocessor_const_token1] = ACTIONS(8756), + [sym_static_modifier] = ACTIONS(8756), + [sym__dim_keyword] = ACTIONS(8756), + [sym__redim_keyword] = ACTIONS(8756), + [aux_sym_get_accessor_token1] = ACTIONS(8756), + [aux_sym_set_accessor_token1] = ACTIONS(8756), + [aux_sym_const_declaration_token1] = ACTIONS(8756), + [anon_sym_LPAREN] = ACTIONS(8759), + [aux_sym_as_type_clause_token2] = ACTIONS(8756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8756), + [aux_sym_visibility_token1] = ACTIONS(8756), + [aux_sym_visibility_token2] = ACTIONS(8756), + [aux_sym_elseif_fragment_token1] = ACTIONS(8756), + [aux_sym_else_fragment_token1] = ACTIONS(8756), + [aux_sym_select_statement_token1] = ACTIONS(8756), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8756), + [aux_sym__for_header_token1] = ACTIONS(8756), + [aux_sym_do_statement_token1] = ACTIONS(8756), + [aux_sym_do_statement_token2] = ACTIONS(8762), + [aux_sym_do_condition_token1] = ACTIONS(8756), + [aux_sym_with_statement_token1] = ACTIONS(8756), + [aux_sym_exit_statement_token1] = ACTIONS(8756), + [sym_end_statement] = ACTIONS(8759), + [aux_sym_on_goto_statement_token1] = ACTIONS(8756), + [aux_sym_on_goto_statement_token2] = ACTIONS(8756), + [aux_sym_on_error_statement_token2] = ACTIONS(8756), + [sym__ambiguous_redim_statement] = ACTIONS(8759), + [aux_sym_erase_statement_token1] = ACTIONS(8756), + [aux_sym_open_statement_token1] = ACTIONS(8756), + [aux_sym_file_mode_token2] = ACTIONS(8756), + [aux_sym_file_access_token2] = ACTIONS(8756), + [aux_sym_file_lock_token2] = ACTIONS(8756), + [aux_sym_print_statement_token1] = ACTIONS(8756), + [anon_sym_PLUS] = ACTIONS(8759), + [anon_sym_DASH] = ACTIONS(8756), + [anon_sym_QMARK] = ACTIONS(8759), + [aux_sym_close_statement_token1] = ACTIONS(8756), + [aux_sym_put_statement_token1] = ACTIONS(8756), + [aux_sym_unlock_statement_token1] = ACTIONS(8756), + [aux_sym_seek_statement_token1] = ACTIONS(8756), + [sym_reset_statement] = ACTIONS(8756), + [aux_sym_raise_event_statement_token1] = ACTIONS(8756), + [sym_stop_statement] = ACTIONS(8756), + [sym_beep_statement] = ACTIONS(8756), + [aux_sym_unload_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token2] = ACTIONS(8756), + [aux_sym_def_type_statement_token3] = ACTIONS(8756), + [aux_sym_def_type_statement_token4] = ACTIONS(8756), + [aux_sym_def_type_statement_token5] = ACTIONS(8756), + [aux_sym_def_type_statement_token6] = ACTIONS(8756), + [aux_sym_def_type_statement_token7] = ACTIONS(8756), + [aux_sym_def_type_statement_token8] = ACTIONS(8756), + [aux_sym_def_type_statement_token9] = ACTIONS(8756), + [aux_sym_def_type_statement_token10] = ACTIONS(8756), + [aux_sym_def_type_statement_token11] = ACTIONS(8756), + [aux_sym_def_type_statement_token12] = ACTIONS(8756), + [aux_sym_def_type_statement_token13] = ACTIONS(8756), + [aux_sym_def_type_statement_token14] = ACTIONS(8756), + [aux_sym_call_statement_token1] = ACTIONS(8756), + [sym__ambiguous_call_statement] = ACTIONS(8756), + [aux_sym_addressof_expression_token1] = ACTIONS(8756), + [aux_sym_type_of_expression_token1] = ACTIONS(8756), + [aux_sym_unary_expression_token1] = ACTIONS(8756), + [sym_string_literal] = ACTIONS(8759), + [sym_number_literal] = ACTIONS(8759), + [aux_sym_boolean_literal_token1] = ACTIONS(8756), + [aux_sym_boolean_literal_token2] = ACTIONS(8756), + [sym_nothing_literal] = ACTIONS(8756), + [sym_null_literal] = ACTIONS(8756), + [sym_empty_literal] = ACTIONS(8756), + [sym_date_literal] = ACTIONS(8759), + [anon_sym_POUND] = ACTIONS(8756), + }, + [STATE(5908)] = { + [sym_identifier] = ACTIONS(8660), + [sym_newline] = ACTIONS(8662), + [anon_sym_COLON] = ACTIONS(8662), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8660), + [aux_sym_frm_property_statement_token1] = ACTIONS(8660), + [anon_sym_DOT] = ACTIONS(8660), + [anon_sym_BANG] = ACTIONS(8662), + [aux_sym__attribute_identifier_token1] = ACTIONS(8660), + [aux_sym_option_statement_token3] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8660), + [aux_sym_preprocessor_const_token1] = ACTIONS(8660), + [sym_static_modifier] = ACTIONS(8660), + [sym__dim_keyword] = ACTIONS(8660), + [sym__redim_keyword] = ACTIONS(8660), + [aux_sym_get_accessor_token1] = ACTIONS(8660), + [aux_sym_set_accessor_token1] = ACTIONS(8660), + [anon_sym_COMMA] = ACTIONS(10884), + [aux_sym_const_declaration_token1] = ACTIONS(8660), + [anon_sym_LPAREN] = ACTIONS(8662), + [aux_sym_as_type_clause_token2] = ACTIONS(8660), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8660), + [aux_sym_visibility_token1] = ACTIONS(8660), + [aux_sym_visibility_token2] = ACTIONS(8660), + [aux_sym_elseif_fragment_token1] = ACTIONS(8660), + [aux_sym_else_fragment_token1] = ACTIONS(8660), + [aux_sym_select_statement_token1] = ACTIONS(8660), + [aux_sym_select_statement_token2] = ACTIONS(8660), + [aux_sym__for_header_token1] = ACTIONS(8660), + [aux_sym_do_statement_token1] = ACTIONS(8660), + [aux_sym_do_condition_token1] = ACTIONS(8660), + [aux_sym_with_statement_token1] = ACTIONS(8660), + [aux_sym_exit_statement_token1] = ACTIONS(8660), + [sym_end_statement] = ACTIONS(8662), + [aux_sym_on_goto_statement_token1] = ACTIONS(8660), + [aux_sym_on_goto_statement_token2] = ACTIONS(8660), + [aux_sym_on_error_statement_token2] = ACTIONS(8660), + [sym__ambiguous_redim_statement] = ACTIONS(8662), + [aux_sym_erase_statement_token1] = ACTIONS(8660), + [aux_sym_open_statement_token1] = ACTIONS(8660), + [aux_sym_file_mode_token2] = ACTIONS(8660), + [aux_sym_file_access_token2] = ACTIONS(8660), + [aux_sym_file_lock_token2] = ACTIONS(8660), + [aux_sym_print_statement_token1] = ACTIONS(8660), + [anon_sym_PLUS] = ACTIONS(8662), + [anon_sym_DASH] = ACTIONS(8660), + [anon_sym_QMARK] = ACTIONS(8662), + [aux_sym_close_statement_token1] = ACTIONS(8660), + [aux_sym_put_statement_token1] = ACTIONS(8660), + [aux_sym_unlock_statement_token1] = ACTIONS(8660), + [aux_sym_seek_statement_token1] = ACTIONS(8660), + [sym_reset_statement] = ACTIONS(8660), + [aux_sym_raise_event_statement_token1] = ACTIONS(8660), + [sym_stop_statement] = ACTIONS(8660), + [sym_beep_statement] = ACTIONS(8660), + [aux_sym_unload_statement_token1] = ACTIONS(8660), + [aux_sym_def_type_statement_token1] = ACTIONS(8660), + [aux_sym_def_type_statement_token2] = ACTIONS(8660), + [aux_sym_def_type_statement_token3] = ACTIONS(8660), + [aux_sym_def_type_statement_token4] = ACTIONS(8660), + [aux_sym_def_type_statement_token5] = ACTIONS(8660), + [aux_sym_def_type_statement_token6] = ACTIONS(8660), + [aux_sym_def_type_statement_token7] = ACTIONS(8660), + [aux_sym_def_type_statement_token8] = ACTIONS(8660), + [aux_sym_def_type_statement_token9] = ACTIONS(8660), + [aux_sym_def_type_statement_token10] = ACTIONS(8660), + [aux_sym_def_type_statement_token11] = ACTIONS(8660), + [aux_sym_def_type_statement_token12] = ACTIONS(8660), + [aux_sym_def_type_statement_token13] = ACTIONS(8660), + [aux_sym_def_type_statement_token14] = ACTIONS(8660), + [aux_sym_call_statement_token1] = ACTIONS(8660), + [sym__ambiguous_call_statement] = ACTIONS(8660), + [aux_sym_addressof_expression_token1] = ACTIONS(8660), + [aux_sym_type_of_expression_token1] = ACTIONS(8660), + [aux_sym_unary_expression_token1] = ACTIONS(8660), + [sym_string_literal] = ACTIONS(8662), + [sym_number_literal] = ACTIONS(8662), + [aux_sym_boolean_literal_token1] = ACTIONS(8660), + [aux_sym_boolean_literal_token2] = ACTIONS(8660), + [sym_nothing_literal] = ACTIONS(8660), + [sym_null_literal] = ACTIONS(8660), + [sym_empty_literal] = ACTIONS(8660), + [sym_date_literal] = ACTIONS(8662), + [anon_sym_POUND] = ACTIONS(8660), + }, + [STATE(5909)] = { + [sym_identifier] = ACTIONS(8666), + [sym_newline] = ACTIONS(8668), + [anon_sym_COLON] = ACTIONS(8668), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8666), + [aux_sym_frm_property_statement_token1] = ACTIONS(8666), + [anon_sym_DOT] = ACTIONS(8666), + [anon_sym_BANG] = ACTIONS(8668), + [aux_sym__attribute_identifier_token1] = ACTIONS(8666), + [aux_sym_option_statement_token3] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8666), + [aux_sym_preprocessor_const_token1] = ACTIONS(8666), + [sym_static_modifier] = ACTIONS(8666), + [sym__dim_keyword] = ACTIONS(8666), + [sym__redim_keyword] = ACTIONS(8666), + [aux_sym_get_accessor_token1] = ACTIONS(8666), + [aux_sym_set_accessor_token1] = ACTIONS(8666), + [anon_sym_COMMA] = ACTIONS(10886), + [aux_sym_const_declaration_token1] = ACTIONS(8666), + [anon_sym_LPAREN] = ACTIONS(8668), + [aux_sym_as_type_clause_token2] = ACTIONS(8666), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8666), + [aux_sym_visibility_token1] = ACTIONS(8666), + [aux_sym_visibility_token2] = ACTIONS(8666), + [aux_sym_elseif_fragment_token1] = ACTIONS(8666), + [aux_sym_else_fragment_token1] = ACTIONS(8666), + [aux_sym_select_statement_token1] = ACTIONS(8666), + [aux_sym_select_statement_token2] = ACTIONS(8666), + [aux_sym__for_header_token1] = ACTIONS(8666), + [aux_sym_do_statement_token1] = ACTIONS(8666), + [aux_sym_do_condition_token1] = ACTIONS(8666), + [aux_sym_with_statement_token1] = ACTIONS(8666), + [aux_sym_exit_statement_token1] = ACTIONS(8666), + [sym_end_statement] = ACTIONS(8668), + [aux_sym_on_goto_statement_token1] = ACTIONS(8666), + [aux_sym_on_goto_statement_token2] = ACTIONS(8666), + [aux_sym_on_error_statement_token2] = ACTIONS(8666), + [sym__ambiguous_redim_statement] = ACTIONS(8668), + [aux_sym_erase_statement_token1] = ACTIONS(8666), + [aux_sym_open_statement_token1] = ACTIONS(8666), + [aux_sym_file_mode_token2] = ACTIONS(8666), + [aux_sym_file_access_token2] = ACTIONS(8666), + [aux_sym_file_lock_token2] = ACTIONS(8666), + [aux_sym_print_statement_token1] = ACTIONS(8666), + [anon_sym_PLUS] = ACTIONS(8668), + [anon_sym_DASH] = ACTIONS(8666), + [anon_sym_QMARK] = ACTIONS(8668), + [aux_sym_close_statement_token1] = ACTIONS(8666), + [aux_sym_put_statement_token1] = ACTIONS(8666), + [aux_sym_unlock_statement_token1] = ACTIONS(8666), + [aux_sym_seek_statement_token1] = ACTIONS(8666), + [sym_reset_statement] = ACTIONS(8666), + [aux_sym_raise_event_statement_token1] = ACTIONS(8666), + [sym_stop_statement] = ACTIONS(8666), + [sym_beep_statement] = ACTIONS(8666), + [aux_sym_unload_statement_token1] = ACTIONS(8666), + [aux_sym_def_type_statement_token1] = ACTIONS(8666), + [aux_sym_def_type_statement_token2] = ACTIONS(8666), + [aux_sym_def_type_statement_token3] = ACTIONS(8666), + [aux_sym_def_type_statement_token4] = ACTIONS(8666), + [aux_sym_def_type_statement_token5] = ACTIONS(8666), + [aux_sym_def_type_statement_token6] = ACTIONS(8666), + [aux_sym_def_type_statement_token7] = ACTIONS(8666), + [aux_sym_def_type_statement_token8] = ACTIONS(8666), + [aux_sym_def_type_statement_token9] = ACTIONS(8666), + [aux_sym_def_type_statement_token10] = ACTIONS(8666), + [aux_sym_def_type_statement_token11] = ACTIONS(8666), + [aux_sym_def_type_statement_token12] = ACTIONS(8666), + [aux_sym_def_type_statement_token13] = ACTIONS(8666), + [aux_sym_def_type_statement_token14] = ACTIONS(8666), + [aux_sym_call_statement_token1] = ACTIONS(8666), + [sym__ambiguous_call_statement] = ACTIONS(8666), + [aux_sym_addressof_expression_token1] = ACTIONS(8666), + [aux_sym_type_of_expression_token1] = ACTIONS(8666), + [aux_sym_unary_expression_token1] = ACTIONS(8666), + [sym_string_literal] = ACTIONS(8668), + [sym_number_literal] = ACTIONS(8668), + [aux_sym_boolean_literal_token1] = ACTIONS(8666), + [aux_sym_boolean_literal_token2] = ACTIONS(8666), + [sym_nothing_literal] = ACTIONS(8666), + [sym_null_literal] = ACTIONS(8666), + [sym_empty_literal] = ACTIONS(8666), + [sym_date_literal] = ACTIONS(8668), + [anon_sym_POUND] = ACTIONS(8666), + }, + [STATE(5910)] = { + [sym_argument_list] = STATE(6839), + [sym_identifier] = ACTIONS(8843), + [sym_newline] = ACTIONS(8845), + [anon_sym_COLON] = ACTIONS(8845), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8843), + [aux_sym_frm_property_statement_token1] = ACTIONS(8843), + [anon_sym_DOT] = ACTIONS(8843), + [anon_sym_BANG] = ACTIONS(8845), + [aux_sym__attribute_identifier_token1] = ACTIONS(8843), + [aux_sym_option_statement_token3] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8843), + [aux_sym_preprocessor_const_token1] = ACTIONS(8843), + [sym_static_modifier] = ACTIONS(8843), + [sym__dim_keyword] = ACTIONS(8843), + [sym__redim_keyword] = ACTIONS(8843), + [aux_sym_get_accessor_token1] = ACTIONS(8843), + [aux_sym_set_accessor_token1] = ACTIONS(8843), + [aux_sym_const_declaration_token1] = ACTIONS(8843), + [anon_sym_LPAREN] = ACTIONS(10423), + [aux_sym_as_type_clause_token2] = ACTIONS(8843), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8843), + [aux_sym_visibility_token1] = ACTIONS(8843), + [aux_sym_visibility_token2] = ACTIONS(8843), + [aux_sym_elseif_fragment_token1] = ACTIONS(8843), + [aux_sym_else_fragment_token1] = ACTIONS(8843), + [aux_sym_select_statement_token1] = ACTIONS(8843), + [aux_sym__for_header_token1] = ACTIONS(8843), + [aux_sym_do_statement_token1] = ACTIONS(8843), + [aux_sym_do_condition_token1] = ACTIONS(8843), + [aux_sym_while_statement_token1] = ACTIONS(8843), + [aux_sym_with_statement_token1] = ACTIONS(8843), + [aux_sym_exit_statement_token1] = ACTIONS(8843), + [sym_end_statement] = ACTIONS(8845), + [aux_sym_on_goto_statement_token1] = ACTIONS(8843), + [aux_sym_on_goto_statement_token2] = ACTIONS(8843), + [aux_sym_on_error_statement_token2] = ACTIONS(8843), + [sym__ambiguous_redim_statement] = ACTIONS(8845), + [aux_sym_erase_statement_token1] = ACTIONS(8843), + [aux_sym_open_statement_token1] = ACTIONS(8843), + [aux_sym_file_mode_token2] = ACTIONS(8843), + [aux_sym_file_access_token2] = ACTIONS(8843), + [aux_sym_file_lock_token2] = ACTIONS(8843), + [aux_sym_print_statement_token1] = ACTIONS(8843), + [anon_sym_PLUS] = ACTIONS(8845), + [anon_sym_DASH] = ACTIONS(8843), + [anon_sym_QMARK] = ACTIONS(8845), + [aux_sym_close_statement_token1] = ACTIONS(8843), + [aux_sym_put_statement_token1] = ACTIONS(8843), + [aux_sym_unlock_statement_token1] = ACTIONS(8843), + [aux_sym_seek_statement_token1] = ACTIONS(8843), + [sym_reset_statement] = ACTIONS(8843), + [aux_sym_raise_event_statement_token1] = ACTIONS(8843), + [sym_stop_statement] = ACTIONS(8843), + [sym_beep_statement] = ACTIONS(8843), + [aux_sym_unload_statement_token1] = ACTIONS(8843), + [aux_sym_def_type_statement_token1] = ACTIONS(8843), + [aux_sym_def_type_statement_token2] = ACTIONS(8843), + [aux_sym_def_type_statement_token3] = ACTIONS(8843), + [aux_sym_def_type_statement_token4] = ACTIONS(8843), + [aux_sym_def_type_statement_token5] = ACTIONS(8843), + [aux_sym_def_type_statement_token6] = ACTIONS(8843), + [aux_sym_def_type_statement_token7] = ACTIONS(8843), + [aux_sym_def_type_statement_token8] = ACTIONS(8843), + [aux_sym_def_type_statement_token9] = ACTIONS(8843), + [aux_sym_def_type_statement_token10] = ACTIONS(8843), + [aux_sym_def_type_statement_token11] = ACTIONS(8843), + [aux_sym_def_type_statement_token12] = ACTIONS(8843), + [aux_sym_def_type_statement_token13] = ACTIONS(8843), + [aux_sym_def_type_statement_token14] = ACTIONS(8843), + [aux_sym_call_statement_token1] = ACTIONS(8843), + [sym__ambiguous_call_statement] = ACTIONS(8843), + [aux_sym_addressof_expression_token1] = ACTIONS(8843), + [aux_sym_type_of_expression_token1] = ACTIONS(8843), + [aux_sym_unary_expression_token1] = ACTIONS(8843), + [sym_string_literal] = ACTIONS(8845), + [sym_number_literal] = ACTIONS(8845), + [aux_sym_boolean_literal_token1] = ACTIONS(8843), + [aux_sym_boolean_literal_token2] = ACTIONS(8843), + [sym_nothing_literal] = ACTIONS(8843), + [sym_null_literal] = ACTIONS(8843), + [sym_empty_literal] = ACTIONS(8843), + [sym_date_literal] = ACTIONS(8845), + [anon_sym_POUND] = ACTIONS(8843), + }, + [STATE(5911)] = { + [aux_sym_next_variable_list_repeat1] = STATE(6233), + [sym_identifier] = ACTIONS(7945), + [sym_newline] = ACTIONS(7947), + [anon_sym_COLON] = ACTIONS(7947), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7945), + [aux_sym_frm_property_statement_token1] = ACTIONS(7945), + [anon_sym_DOT] = ACTIONS(7945), + [anon_sym_BANG] = ACTIONS(7947), + [aux_sym__attribute_identifier_token1] = ACTIONS(7945), + [aux_sym_option_statement_token3] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7945), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7945), + [aux_sym_preprocessor_const_token1] = ACTIONS(7945), + [sym_static_modifier] = ACTIONS(7945), + [sym__dim_keyword] = ACTIONS(7945), + [sym__redim_keyword] = ACTIONS(7945), + [aux_sym_get_accessor_token1] = ACTIONS(7945), + [aux_sym_set_accessor_token1] = ACTIONS(7945), + [anon_sym_COMMA] = ACTIONS(10835), + [aux_sym_const_declaration_token1] = ACTIONS(7945), + [anon_sym_LPAREN] = ACTIONS(7947), + [aux_sym_as_type_clause_token2] = ACTIONS(7945), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7945), + [aux_sym_visibility_token1] = ACTIONS(7945), + [aux_sym_visibility_token2] = ACTIONS(7945), + [aux_sym_elseif_fragment_token1] = ACTIONS(7945), + [aux_sym_else_fragment_token1] = ACTIONS(7945), + [aux_sym_select_statement_token1] = ACTIONS(7945), + [aux_sym__for_header_token1] = ACTIONS(7945), + [aux_sym_do_statement_token1] = ACTIONS(7945), + [aux_sym_do_condition_token1] = ACTIONS(7945), + [aux_sym_with_statement_token1] = ACTIONS(7945), + [aux_sym_exit_statement_token1] = ACTIONS(7945), + [sym_end_statement] = ACTIONS(7947), + [aux_sym_on_goto_statement_token1] = ACTIONS(7945), + [aux_sym_on_goto_statement_token2] = ACTIONS(7945), + [aux_sym_on_error_statement_token2] = ACTIONS(7945), + [sym__ambiguous_redim_statement] = ACTIONS(7947), + [aux_sym_erase_statement_token1] = ACTIONS(7945), + [aux_sym_open_statement_token1] = ACTIONS(7945), + [aux_sym_file_mode_token2] = ACTIONS(7945), + [aux_sym_file_access_token2] = ACTIONS(7945), + [aux_sym_file_lock_token2] = ACTIONS(7945), + [aux_sym_print_statement_token1] = ACTIONS(7945), + [anon_sym_PLUS] = ACTIONS(7947), + [anon_sym_DASH] = ACTIONS(7945), + [anon_sym_QMARK] = ACTIONS(7947), + [aux_sym_close_statement_token1] = ACTIONS(7945), + [aux_sym_put_statement_token1] = ACTIONS(7945), + [aux_sym_unlock_statement_token1] = ACTIONS(7945), + [aux_sym_seek_statement_token1] = ACTIONS(7945), + [sym_reset_statement] = ACTIONS(7945), + [aux_sym_raise_event_statement_token1] = ACTIONS(7945), + [sym_stop_statement] = ACTIONS(7945), + [sym_beep_statement] = ACTIONS(7945), + [aux_sym_unload_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token1] = ACTIONS(7945), + [aux_sym_def_type_statement_token2] = ACTIONS(7945), + [aux_sym_def_type_statement_token3] = ACTIONS(7945), + [aux_sym_def_type_statement_token4] = ACTIONS(7945), + [aux_sym_def_type_statement_token5] = ACTIONS(7945), + [aux_sym_def_type_statement_token6] = ACTIONS(7945), + [aux_sym_def_type_statement_token7] = ACTIONS(7945), + [aux_sym_def_type_statement_token8] = ACTIONS(7945), + [aux_sym_def_type_statement_token9] = ACTIONS(7945), + [aux_sym_def_type_statement_token10] = ACTIONS(7945), + [aux_sym_def_type_statement_token11] = ACTIONS(7945), + [aux_sym_def_type_statement_token12] = ACTIONS(7945), + [aux_sym_def_type_statement_token13] = ACTIONS(7945), + [aux_sym_def_type_statement_token14] = ACTIONS(7945), + [aux_sym_call_statement_token1] = ACTIONS(7945), + [sym__ambiguous_call_statement] = ACTIONS(7945), + [aux_sym_addressof_expression_token1] = ACTIONS(7945), + [aux_sym_type_of_expression_token1] = ACTIONS(7945), + [aux_sym_unary_expression_token1] = ACTIONS(7945), + [sym_string_literal] = ACTIONS(7947), + [sym_number_literal] = ACTIONS(7947), + [aux_sym_boolean_literal_token1] = ACTIONS(7945), + [aux_sym_boolean_literal_token2] = ACTIONS(7945), + [sym_nothing_literal] = ACTIONS(7945), + [sym_null_literal] = ACTIONS(7945), + [sym_empty_literal] = ACTIONS(7945), + [sym_date_literal] = ACTIONS(7947), + [anon_sym_POUND] = ACTIONS(7945), + }, + [STATE(5912)] = { + [sym_argument_list] = STATE(6840), + [sym_identifier] = ACTIONS(8899), + [sym_newline] = ACTIONS(8901), + [anon_sym_COLON] = ACTIONS(8901), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8899), + [aux_sym_frm_property_statement_token1] = ACTIONS(8899), + [anon_sym_DOT] = ACTIONS(10525), + [anon_sym_BANG] = ACTIONS(10527), + [aux_sym__attribute_identifier_token1] = ACTIONS(8899), + [aux_sym_option_statement_token3] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8899), + [aux_sym_preprocessor_const_token1] = ACTIONS(8899), + [sym_static_modifier] = ACTIONS(8899), + [sym__dim_keyword] = ACTIONS(8899), + [sym__redim_keyword] = ACTIONS(8899), + [aux_sym_get_accessor_token1] = ACTIONS(8899), + [aux_sym_set_accessor_token1] = ACTIONS(8899), + [aux_sym_const_declaration_token1] = ACTIONS(8899), + [anon_sym_LPAREN] = ACTIONS(10423), + [aux_sym_as_type_clause_token2] = ACTIONS(8899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8899), + [aux_sym_visibility_token1] = ACTIONS(8899), + [aux_sym_visibility_token2] = ACTIONS(8899), + [aux_sym_elseif_fragment_token1] = ACTIONS(8899), + [aux_sym_else_fragment_token1] = ACTIONS(8899), + [aux_sym_select_statement_token1] = ACTIONS(8899), + [aux_sym__for_header_token1] = ACTIONS(8899), + [aux_sym_do_statement_token1] = ACTIONS(8899), + [aux_sym_do_condition_token1] = ACTIONS(8899), + [aux_sym_while_statement_token1] = ACTIONS(8899), + [aux_sym_with_statement_token1] = ACTIONS(8899), + [aux_sym_exit_statement_token1] = ACTIONS(8899), + [sym_end_statement] = ACTIONS(8901), + [aux_sym_on_goto_statement_token1] = ACTIONS(8899), + [aux_sym_on_goto_statement_token2] = ACTIONS(8899), + [aux_sym_on_error_statement_token2] = ACTIONS(8899), + [sym__ambiguous_redim_statement] = ACTIONS(8901), + [aux_sym_erase_statement_token1] = ACTIONS(8899), + [aux_sym_open_statement_token1] = ACTIONS(8899), + [aux_sym_file_mode_token2] = ACTIONS(8899), + [aux_sym_file_access_token2] = ACTIONS(8899), + [aux_sym_file_lock_token2] = ACTIONS(8899), + [aux_sym_print_statement_token1] = ACTIONS(8899), + [anon_sym_PLUS] = ACTIONS(8901), + [anon_sym_DASH] = ACTIONS(8899), + [anon_sym_QMARK] = ACTIONS(8901), + [aux_sym_close_statement_token1] = ACTIONS(8899), + [aux_sym_put_statement_token1] = ACTIONS(8899), + [aux_sym_unlock_statement_token1] = ACTIONS(8899), + [aux_sym_seek_statement_token1] = ACTIONS(8899), + [sym_reset_statement] = ACTIONS(8899), + [aux_sym_raise_event_statement_token1] = ACTIONS(8899), + [sym_stop_statement] = ACTIONS(8899), + [sym_beep_statement] = ACTIONS(8899), + [aux_sym_unload_statement_token1] = ACTIONS(8899), + [aux_sym_def_type_statement_token1] = ACTIONS(8899), + [aux_sym_def_type_statement_token2] = ACTIONS(8899), + [aux_sym_def_type_statement_token3] = ACTIONS(8899), + [aux_sym_def_type_statement_token4] = ACTIONS(8899), + [aux_sym_def_type_statement_token5] = ACTIONS(8899), + [aux_sym_def_type_statement_token6] = ACTIONS(8899), + [aux_sym_def_type_statement_token7] = ACTIONS(8899), + [aux_sym_def_type_statement_token8] = ACTIONS(8899), + [aux_sym_def_type_statement_token9] = ACTIONS(8899), + [aux_sym_def_type_statement_token10] = ACTIONS(8899), + [aux_sym_def_type_statement_token11] = ACTIONS(8899), + [aux_sym_def_type_statement_token12] = ACTIONS(8899), + [aux_sym_def_type_statement_token13] = ACTIONS(8899), + [aux_sym_def_type_statement_token14] = ACTIONS(8899), + [aux_sym_call_statement_token1] = ACTIONS(8899), + [sym__ambiguous_call_statement] = ACTIONS(8899), + [aux_sym_addressof_expression_token1] = ACTIONS(8899), + [aux_sym_type_of_expression_token1] = ACTIONS(8899), + [aux_sym_unary_expression_token1] = ACTIONS(8899), + [sym_string_literal] = ACTIONS(8901), + [sym_number_literal] = ACTIONS(8901), + [aux_sym_boolean_literal_token1] = ACTIONS(8899), + [aux_sym_boolean_literal_token2] = ACTIONS(8899), + [sym_nothing_literal] = ACTIONS(8899), + [sym_null_literal] = ACTIONS(8899), + [sym_empty_literal] = ACTIONS(8899), + [sym_date_literal] = ACTIONS(8901), + [anon_sym_POUND] = ACTIONS(8899), + }, + [STATE(5913)] = { + [aux_sym_redim_statement_repeat1] = STATE(5913), + [sym_identifier] = ACTIONS(8456), + [sym_newline] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8458), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8456), + [aux_sym_frm_property_statement_token1] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_BANG] = ACTIONS(8458), + [aux_sym__attribute_identifier_token1] = ACTIONS(8456), + [aux_sym_option_statement_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8456), + [aux_sym_preprocessor_const_token1] = ACTIONS(8456), + [sym_static_modifier] = ACTIONS(8456), + [sym__dim_keyword] = ACTIONS(8456), + [sym__redim_keyword] = ACTIONS(8456), + [aux_sym_get_accessor_token1] = ACTIONS(8456), + [aux_sym_set_accessor_token1] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(10888), + [aux_sym_const_declaration_token1] = ACTIONS(8456), + [anon_sym_LPAREN] = ACTIONS(8458), + [aux_sym_as_type_clause_token2] = ACTIONS(8456), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8456), + [aux_sym_visibility_token1] = ACTIONS(8456), + [aux_sym_visibility_token2] = ACTIONS(8456), + [aux_sym_elseif_fragment_token1] = ACTIONS(8456), + [aux_sym_else_fragment_token1] = ACTIONS(8456), + [aux_sym_select_statement_token1] = ACTIONS(8456), + [aux_sym__for_header_token1] = ACTIONS(8456), + [aux_sym_do_statement_token1] = ACTIONS(8456), + [aux_sym_do_condition_token1] = ACTIONS(8456), + [aux_sym_with_statement_token1] = ACTIONS(8456), + [aux_sym_exit_statement_token1] = ACTIONS(8456), + [sym_end_statement] = ACTIONS(8458), + [aux_sym_on_goto_statement_token1] = ACTIONS(8456), + [aux_sym_on_goto_statement_token2] = ACTIONS(8456), + [aux_sym_on_error_statement_token2] = ACTIONS(8456), + [sym__ambiguous_redim_statement] = ACTIONS(8458), + [aux_sym_erase_statement_token1] = ACTIONS(8456), + [aux_sym_open_statement_token1] = ACTIONS(8456), + [aux_sym_file_mode_token2] = ACTIONS(8456), + [aux_sym_file_access_token2] = ACTIONS(8456), + [aux_sym_file_lock_token2] = ACTIONS(8456), + [aux_sym_print_statement_token1] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8458), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8458), + [aux_sym_close_statement_token1] = ACTIONS(8456), + [aux_sym_put_statement_token1] = ACTIONS(8456), + [aux_sym_unlock_statement_token1] = ACTIONS(8456), + [aux_sym_seek_statement_token1] = ACTIONS(8456), + [sym_reset_statement] = ACTIONS(8456), + [aux_sym_raise_event_statement_token1] = ACTIONS(8456), + [sym_stop_statement] = ACTIONS(8456), + [sym_beep_statement] = ACTIONS(8456), + [aux_sym_unload_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token2] = ACTIONS(8456), + [aux_sym_def_type_statement_token3] = ACTIONS(8456), + [aux_sym_def_type_statement_token4] = ACTIONS(8456), + [aux_sym_def_type_statement_token5] = ACTIONS(8456), + [aux_sym_def_type_statement_token6] = ACTIONS(8456), + [aux_sym_def_type_statement_token7] = ACTIONS(8456), + [aux_sym_def_type_statement_token8] = ACTIONS(8456), + [aux_sym_def_type_statement_token9] = ACTIONS(8456), + [aux_sym_def_type_statement_token10] = ACTIONS(8456), + [aux_sym_def_type_statement_token11] = ACTIONS(8456), + [aux_sym_def_type_statement_token12] = ACTIONS(8456), + [aux_sym_def_type_statement_token13] = ACTIONS(8456), + [aux_sym_def_type_statement_token14] = ACTIONS(8456), + [aux_sym_call_statement_token1] = ACTIONS(8456), + [sym__ambiguous_call_statement] = ACTIONS(8456), + [aux_sym_addressof_expression_token1] = ACTIONS(8456), + [aux_sym_type_of_expression_token1] = ACTIONS(8456), + [aux_sym_unary_expression_token1] = ACTIONS(8456), + [sym_string_literal] = ACTIONS(8458), + [sym_number_literal] = ACTIONS(8458), + [aux_sym_boolean_literal_token1] = ACTIONS(8456), + [aux_sym_boolean_literal_token2] = ACTIONS(8456), + [sym_nothing_literal] = ACTIONS(8456), + [sym_null_literal] = ACTIONS(8456), + [sym_empty_literal] = ACTIONS(8456), + [sym_date_literal] = ACTIONS(8458), + [anon_sym_POUND] = ACTIONS(8456), + }, + [STATE(5914)] = { + [aux_sym_const_declaration_repeat1] = STATE(6028), + [sym_identifier] = ACTIONS(8573), + [sym_newline] = ACTIONS(8575), + [anon_sym_COLON] = ACTIONS(8575), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8573), + [aux_sym_frm_property_statement_token1] = ACTIONS(8573), + [anon_sym_DOT] = ACTIONS(8573), + [anon_sym_BANG] = ACTIONS(8575), + [aux_sym__attribute_identifier_token1] = ACTIONS(8573), + [aux_sym_option_statement_token3] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8573), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8573), + [aux_sym_preprocessor_const_token1] = ACTIONS(8573), + [sym_static_modifier] = ACTIONS(8573), + [sym__dim_keyword] = ACTIONS(8573), + [sym__redim_keyword] = ACTIONS(8573), + [aux_sym_get_accessor_token1] = ACTIONS(8573), + [aux_sym_set_accessor_token1] = ACTIONS(8573), + [anon_sym_COMMA] = ACTIONS(10891), + [aux_sym_const_declaration_token1] = ACTIONS(8573), + [anon_sym_LPAREN] = ACTIONS(8575), + [aux_sym_as_type_clause_token2] = ACTIONS(8573), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8573), + [aux_sym_visibility_token1] = ACTIONS(8573), + [aux_sym_visibility_token2] = ACTIONS(8573), + [aux_sym_elseif_fragment_token1] = ACTIONS(8573), + [aux_sym_else_fragment_token1] = ACTIONS(8573), + [aux_sym_select_statement_token1] = ACTIONS(8573), + [aux_sym__for_header_token1] = ACTIONS(8573), + [aux_sym_do_statement_token1] = ACTIONS(8573), + [aux_sym_do_condition_token1] = ACTIONS(8573), + [aux_sym_with_statement_token1] = ACTIONS(8573), + [aux_sym_exit_statement_token1] = ACTIONS(8573), + [sym_end_statement] = ACTIONS(8575), + [aux_sym_on_goto_statement_token1] = ACTIONS(8573), + [aux_sym_on_goto_statement_token2] = ACTIONS(8573), + [aux_sym_on_error_statement_token2] = ACTIONS(8573), + [sym__ambiguous_redim_statement] = ACTIONS(8575), + [aux_sym_erase_statement_token1] = ACTIONS(8573), + [aux_sym_open_statement_token1] = ACTIONS(8573), + [aux_sym_file_mode_token2] = ACTIONS(8573), + [aux_sym_file_access_token2] = ACTIONS(8573), + [aux_sym_file_lock_token2] = ACTIONS(8573), + [aux_sym_print_statement_token1] = ACTIONS(8573), + [anon_sym_PLUS] = ACTIONS(8575), + [anon_sym_DASH] = ACTIONS(8573), + [anon_sym_QMARK] = ACTIONS(8575), + [aux_sym_close_statement_token1] = ACTIONS(8573), + [aux_sym_put_statement_token1] = ACTIONS(8573), + [aux_sym_unlock_statement_token1] = ACTIONS(8573), + [aux_sym_seek_statement_token1] = ACTIONS(8573), + [sym_reset_statement] = ACTIONS(8573), + [aux_sym_raise_event_statement_token1] = ACTIONS(8573), + [sym_stop_statement] = ACTIONS(8573), + [sym_beep_statement] = ACTIONS(8573), + [aux_sym_unload_statement_token1] = ACTIONS(8573), + [aux_sym_def_type_statement_token1] = ACTIONS(8573), + [aux_sym_def_type_statement_token2] = ACTIONS(8573), + [aux_sym_def_type_statement_token3] = ACTIONS(8573), + [aux_sym_def_type_statement_token4] = ACTIONS(8573), + [aux_sym_def_type_statement_token5] = ACTIONS(8573), + [aux_sym_def_type_statement_token6] = ACTIONS(8573), + [aux_sym_def_type_statement_token7] = ACTIONS(8573), + [aux_sym_def_type_statement_token8] = ACTIONS(8573), + [aux_sym_def_type_statement_token9] = ACTIONS(8573), + [aux_sym_def_type_statement_token10] = ACTIONS(8573), + [aux_sym_def_type_statement_token11] = ACTIONS(8573), + [aux_sym_def_type_statement_token12] = ACTIONS(8573), + [aux_sym_def_type_statement_token13] = ACTIONS(8573), + [aux_sym_def_type_statement_token14] = ACTIONS(8573), + [aux_sym_call_statement_token1] = ACTIONS(8573), + [sym__ambiguous_call_statement] = ACTIONS(8573), + [aux_sym_addressof_expression_token1] = ACTIONS(8573), + [aux_sym_type_of_expression_token1] = ACTIONS(8573), + [aux_sym_unary_expression_token1] = ACTIONS(8573), + [sym_string_literal] = ACTIONS(8575), + [sym_number_literal] = ACTIONS(8575), + [aux_sym_boolean_literal_token1] = ACTIONS(8573), + [aux_sym_boolean_literal_token2] = ACTIONS(8573), + [sym_nothing_literal] = ACTIONS(8573), + [sym_null_literal] = ACTIONS(8573), + [sym_empty_literal] = ACTIONS(8573), + [sym_date_literal] = ACTIONS(8575), + [anon_sym_POUND] = ACTIONS(8573), + }, + [STATE(5915)] = { + [sym_identifier] = ACTIONS(8951), + [sym_newline] = ACTIONS(8953), + [anon_sym_COLON] = ACTIONS(8955), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8951), + [aux_sym_frm_property_statement_token1] = ACTIONS(8951), + [anon_sym_DOT] = ACTIONS(8951), + [anon_sym_BANG] = ACTIONS(8953), + [aux_sym__attribute_identifier_token1] = ACTIONS(8951), + [aux_sym_option_statement_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8951), + [aux_sym_preprocessor_const_token1] = ACTIONS(8951), + [sym_static_modifier] = ACTIONS(8951), + [sym__dim_keyword] = ACTIONS(8951), + [sym__redim_keyword] = ACTIONS(8951), + [aux_sym_get_accessor_token1] = ACTIONS(8951), + [aux_sym_set_accessor_token1] = ACTIONS(8951), + [aux_sym_const_declaration_token1] = ACTIONS(8951), + [anon_sym_LPAREN] = ACTIONS(8953), + [aux_sym_as_type_clause_token2] = ACTIONS(8951), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8951), + [aux_sym_visibility_token1] = ACTIONS(8951), + [aux_sym_visibility_token2] = ACTIONS(8951), + [aux_sym_elseif_fragment_token1] = ACTIONS(8951), + [aux_sym_else_fragment_token1] = ACTIONS(8951), + [aux_sym_select_statement_token1] = ACTIONS(8951), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8951), + [aux_sym__for_header_token1] = ACTIONS(8951), + [aux_sym_do_statement_token1] = ACTIONS(8951), + [aux_sym_do_statement_token2] = ACTIONS(8951), + [aux_sym_do_condition_token1] = ACTIONS(8951), + [aux_sym_with_statement_token1] = ACTIONS(8951), + [aux_sym_exit_statement_token1] = ACTIONS(8951), + [sym_end_statement] = ACTIONS(8953), + [aux_sym_on_goto_statement_token1] = ACTIONS(8951), + [aux_sym_on_goto_statement_token2] = ACTIONS(8951), + [aux_sym_on_error_statement_token2] = ACTIONS(8951), + [sym__ambiguous_redim_statement] = ACTIONS(8953), + [aux_sym_erase_statement_token1] = ACTIONS(8951), + [aux_sym_open_statement_token1] = ACTIONS(8951), + [aux_sym_file_mode_token2] = ACTIONS(8951), + [aux_sym_file_access_token2] = ACTIONS(8951), + [aux_sym_file_lock_token2] = ACTIONS(8951), + [aux_sym_print_statement_token1] = ACTIONS(8951), + [anon_sym_PLUS] = ACTIONS(8953), + [anon_sym_DASH] = ACTIONS(8951), + [anon_sym_QMARK] = ACTIONS(8953), + [aux_sym_close_statement_token1] = ACTIONS(8951), + [aux_sym_put_statement_token1] = ACTIONS(8951), + [aux_sym_unlock_statement_token1] = ACTIONS(8951), + [aux_sym_seek_statement_token1] = ACTIONS(8951), + [sym_reset_statement] = ACTIONS(8951), + [aux_sym_raise_event_statement_token1] = ACTIONS(8951), + [sym_stop_statement] = ACTIONS(8951), + [sym_beep_statement] = ACTIONS(8951), + [aux_sym_unload_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token2] = ACTIONS(8951), + [aux_sym_def_type_statement_token3] = ACTIONS(8951), + [aux_sym_def_type_statement_token4] = ACTIONS(8951), + [aux_sym_def_type_statement_token5] = ACTIONS(8951), + [aux_sym_def_type_statement_token6] = ACTIONS(8951), + [aux_sym_def_type_statement_token7] = ACTIONS(8951), + [aux_sym_def_type_statement_token8] = ACTIONS(8951), + [aux_sym_def_type_statement_token9] = ACTIONS(8951), + [aux_sym_def_type_statement_token10] = ACTIONS(8951), + [aux_sym_def_type_statement_token11] = ACTIONS(8951), + [aux_sym_def_type_statement_token12] = ACTIONS(8951), + [aux_sym_def_type_statement_token13] = ACTIONS(8951), + [aux_sym_def_type_statement_token14] = ACTIONS(8951), + [aux_sym_call_statement_token1] = ACTIONS(8951), + [sym__ambiguous_call_statement] = ACTIONS(8951), + [aux_sym_addressof_expression_token1] = ACTIONS(8951), + [aux_sym_type_of_expression_token1] = ACTIONS(8951), + [aux_sym_unary_expression_token1] = ACTIONS(8951), + [sym_string_literal] = ACTIONS(8953), + [sym_number_literal] = ACTIONS(8955), + [aux_sym_boolean_literal_token1] = ACTIONS(8951), + [aux_sym_boolean_literal_token2] = ACTIONS(8951), + [sym_nothing_literal] = ACTIONS(8951), + [sym_null_literal] = ACTIONS(8951), + [sym_empty_literal] = ACTIONS(8951), + [sym_date_literal] = ACTIONS(8953), + [anon_sym_POUND] = ACTIONS(8951), + }, + [STATE(5916)] = { + [sym_identifier] = ACTIONS(8805), + [sym_newline] = ACTIONS(8807), + [anon_sym_COLON] = ACTIONS(8807), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8805), + [aux_sym_frm_property_statement_token1] = ACTIONS(8805), + [anon_sym_DOT] = ACTIONS(8805), + [anon_sym_BANG] = ACTIONS(8807), + [aux_sym__attribute_identifier_token1] = ACTIONS(8805), + [aux_sym_option_statement_token3] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8805), + [aux_sym_preprocessor_const_token1] = ACTIONS(8805), + [sym_static_modifier] = ACTIONS(8805), + [sym__dim_keyword] = ACTIONS(8805), + [sym__redim_keyword] = ACTIONS(8805), + [aux_sym_get_accessor_token1] = ACTIONS(8805), + [aux_sym_set_accessor_token1] = ACTIONS(8805), + [anon_sym_COMMA] = ACTIONS(8807), + [aux_sym_const_declaration_token1] = ACTIONS(8805), + [anon_sym_LPAREN] = ACTIONS(8807), + [aux_sym_as_type_clause_token2] = ACTIONS(8805), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8805), + [aux_sym_visibility_token1] = ACTIONS(8805), + [aux_sym_visibility_token2] = ACTIONS(8805), + [aux_sym_elseif_fragment_token1] = ACTIONS(8805), + [aux_sym_else_fragment_token1] = ACTIONS(8805), + [aux_sym_select_statement_token1] = ACTIONS(8805), + [aux_sym__for_header_token1] = ACTIONS(8805), + [aux_sym_do_statement_token1] = ACTIONS(8805), + [aux_sym_do_condition_token1] = ACTIONS(8805), + [aux_sym_while_statement_token1] = ACTIONS(8805), + [aux_sym_with_statement_token1] = ACTIONS(8805), + [aux_sym_exit_statement_token1] = ACTIONS(8805), + [sym_end_statement] = ACTIONS(8807), + [aux_sym_on_goto_statement_token1] = ACTIONS(8805), + [aux_sym_on_goto_statement_token2] = ACTIONS(8805), + [aux_sym_on_error_statement_token2] = ACTIONS(8805), + [sym__ambiguous_redim_statement] = ACTIONS(8807), + [aux_sym_erase_statement_token1] = ACTIONS(8805), + [aux_sym_open_statement_token1] = ACTIONS(8805), + [aux_sym_file_mode_token2] = ACTIONS(8805), + [aux_sym_file_access_token2] = ACTIONS(8805), + [aux_sym_file_lock_token2] = ACTIONS(8805), + [aux_sym_print_statement_token1] = ACTIONS(8805), + [anon_sym_PLUS] = ACTIONS(8807), + [anon_sym_DASH] = ACTIONS(8805), + [anon_sym_QMARK] = ACTIONS(8807), + [aux_sym_close_statement_token1] = ACTIONS(8805), + [aux_sym_put_statement_token1] = ACTIONS(8805), + [aux_sym_unlock_statement_token1] = ACTIONS(8805), + [aux_sym_seek_statement_token1] = ACTIONS(8805), + [sym_reset_statement] = ACTIONS(8805), + [aux_sym_raise_event_statement_token1] = ACTIONS(8805), + [sym_stop_statement] = ACTIONS(8805), + [sym_beep_statement] = ACTIONS(8805), + [aux_sym_unload_statement_token1] = ACTIONS(8805), + [aux_sym_def_type_statement_token1] = ACTIONS(8805), + [aux_sym_def_type_statement_token2] = ACTIONS(8805), + [aux_sym_def_type_statement_token3] = ACTIONS(8805), + [aux_sym_def_type_statement_token4] = ACTIONS(8805), + [aux_sym_def_type_statement_token5] = ACTIONS(8805), + [aux_sym_def_type_statement_token6] = ACTIONS(8805), + [aux_sym_def_type_statement_token7] = ACTIONS(8805), + [aux_sym_def_type_statement_token8] = ACTIONS(8805), + [aux_sym_def_type_statement_token9] = ACTIONS(8805), + [aux_sym_def_type_statement_token10] = ACTIONS(8805), + [aux_sym_def_type_statement_token11] = ACTIONS(8805), + [aux_sym_def_type_statement_token12] = ACTIONS(8805), + [aux_sym_def_type_statement_token13] = ACTIONS(8805), + [aux_sym_def_type_statement_token14] = ACTIONS(8805), + [aux_sym_call_statement_token1] = ACTIONS(8805), + [sym__ambiguous_call_statement] = ACTIONS(8805), + [aux_sym_addressof_expression_token1] = ACTIONS(8805), + [aux_sym_type_of_expression_token1] = ACTIONS(8805), + [aux_sym_unary_expression_token1] = ACTIONS(8805), + [sym_string_literal] = ACTIONS(8807), + [sym_number_literal] = ACTIONS(8807), + [aux_sym_boolean_literal_token1] = ACTIONS(8805), + [aux_sym_boolean_literal_token2] = ACTIONS(8805), + [sym_nothing_literal] = ACTIONS(8805), + [sym_null_literal] = ACTIONS(8805), + [sym_empty_literal] = ACTIONS(8805), + [sym_date_literal] = ACTIONS(8807), + [anon_sym_POUND] = ACTIONS(8805), + }, + [STATE(5917)] = { + [sym_identifier] = ACTIONS(6117), + [sym_newline] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6117), + [aux_sym_frm_property_statement_token1] = ACTIONS(6117), + [anon_sym_DOT] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6119), + [aux_sym__attribute_identifier_token1] = ACTIONS(6117), + [aux_sym_option_statement_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6117), + [aux_sym_preprocessor_const_token1] = ACTIONS(6117), + [sym_static_modifier] = ACTIONS(6117), + [sym__dim_keyword] = ACTIONS(6117), + [sym__redim_keyword] = ACTIONS(6117), + [aux_sym_get_accessor_token1] = ACTIONS(6117), + [aux_sym_set_accessor_token1] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6119), + [aux_sym_const_declaration_token1] = ACTIONS(6117), + [anon_sym_LPAREN] = ACTIONS(6119), + [aux_sym_as_type_clause_token2] = ACTIONS(6117), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6117), + [aux_sym_visibility_token1] = ACTIONS(6117), + [aux_sym_visibility_token2] = ACTIONS(6117), + [aux_sym_elseif_fragment_token1] = ACTIONS(6117), + [aux_sym_else_fragment_token1] = ACTIONS(6117), + [aux_sym_select_statement_token1] = ACTIONS(6117), + [aux_sym__for_header_token1] = ACTIONS(6117), + [aux_sym_do_statement_token1] = ACTIONS(6117), + [aux_sym_do_statement_token2] = ACTIONS(6117), + [aux_sym_do_condition_token1] = ACTIONS(6117), + [aux_sym_with_statement_token1] = ACTIONS(6117), + [aux_sym_exit_statement_token1] = ACTIONS(6117), + [sym_end_statement] = ACTIONS(6119), + [aux_sym_on_goto_statement_token1] = ACTIONS(6117), + [aux_sym_on_goto_statement_token2] = ACTIONS(6117), + [aux_sym_on_error_statement_token2] = ACTIONS(6117), + [sym__ambiguous_redim_statement] = ACTIONS(6119), + [aux_sym_erase_statement_token1] = ACTIONS(6117), + [aux_sym_open_statement_token1] = ACTIONS(6117), + [aux_sym_file_mode_token2] = ACTIONS(6117), + [aux_sym_file_access_token2] = ACTIONS(6117), + [aux_sym_file_lock_token2] = ACTIONS(6117), + [aux_sym_print_statement_token1] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6117), + [anon_sym_QMARK] = ACTIONS(6119), + [aux_sym_close_statement_token1] = ACTIONS(6117), + [aux_sym_put_statement_token1] = ACTIONS(6117), + [aux_sym_unlock_statement_token1] = ACTIONS(6117), + [aux_sym_seek_statement_token1] = ACTIONS(6117), + [sym_reset_statement] = ACTIONS(6117), + [aux_sym_raise_event_statement_token1] = ACTIONS(6117), + [sym_stop_statement] = ACTIONS(6117), + [sym_beep_statement] = ACTIONS(6117), + [aux_sym_unload_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token2] = ACTIONS(6117), + [aux_sym_def_type_statement_token3] = ACTIONS(6117), + [aux_sym_def_type_statement_token4] = ACTIONS(6117), + [aux_sym_def_type_statement_token5] = ACTIONS(6117), + [aux_sym_def_type_statement_token6] = ACTIONS(6117), + [aux_sym_def_type_statement_token7] = ACTIONS(6117), + [aux_sym_def_type_statement_token8] = ACTIONS(6117), + [aux_sym_def_type_statement_token9] = ACTIONS(6117), + [aux_sym_def_type_statement_token10] = ACTIONS(6117), + [aux_sym_def_type_statement_token11] = ACTIONS(6117), + [aux_sym_def_type_statement_token12] = ACTIONS(6117), + [aux_sym_def_type_statement_token13] = ACTIONS(6117), + [aux_sym_def_type_statement_token14] = ACTIONS(6117), + [aux_sym_call_statement_token1] = ACTIONS(6117), + [sym__ambiguous_call_statement] = ACTIONS(6117), + [aux_sym_addressof_expression_token1] = ACTIONS(6117), + [aux_sym_type_of_expression_token1] = ACTIONS(6117), + [aux_sym_unary_expression_token1] = ACTIONS(6117), + [sym_string_literal] = ACTIONS(6119), + [sym_number_literal] = ACTIONS(6119), + [aux_sym_boolean_literal_token1] = ACTIONS(6117), + [aux_sym_boolean_literal_token2] = ACTIONS(6117), + [sym_nothing_literal] = ACTIONS(6117), + [sym_null_literal] = ACTIONS(6117), + [sym_empty_literal] = ACTIONS(6117), + [sym_date_literal] = ACTIONS(6119), + [anon_sym_POUND] = ACTIONS(6117), + }, + [STATE(5918)] = { + [sym_identifier] = ACTIONS(8686), + [sym_newline] = ACTIONS(8688), + [anon_sym_COLON] = ACTIONS(8688), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8686), + [aux_sym_frm_property_statement_token1] = ACTIONS(8686), + [anon_sym_DOT] = ACTIONS(8686), + [anon_sym_BANG] = ACTIONS(8688), + [aux_sym__attribute_identifier_token1] = ACTIONS(8686), + [aux_sym_option_statement_token3] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8686), + [aux_sym_preprocessor_const_token1] = ACTIONS(8686), + [sym_static_modifier] = ACTIONS(8686), + [sym__dim_keyword] = ACTIONS(8686), + [sym__redim_keyword] = ACTIONS(8686), + [aux_sym_get_accessor_token1] = ACTIONS(8686), + [aux_sym_set_accessor_token1] = ACTIONS(8686), + [aux_sym_const_declaration_token1] = ACTIONS(8686), + [anon_sym_LPAREN] = ACTIONS(8688), + [aux_sym_as_type_clause_token2] = ACTIONS(8686), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8686), + [aux_sym_visibility_token1] = ACTIONS(8686), + [aux_sym_visibility_token2] = ACTIONS(8686), + [aux_sym_elseif_fragment_token1] = ACTIONS(8686), + [aux_sym_else_fragment_token1] = ACTIONS(8686), + [aux_sym_select_statement_token1] = ACTIONS(8686), + [aux_sym_select_statement_token2] = ACTIONS(8686), + [aux_sym__for_header_token1] = ACTIONS(8686), + [aux_sym_do_statement_token1] = ACTIONS(8686), + [aux_sym_do_condition_token1] = ACTIONS(8686), + [aux_sym_with_statement_token1] = ACTIONS(8686), + [aux_sym_exit_statement_token1] = ACTIONS(8686), + [sym_end_statement] = ACTIONS(8688), + [aux_sym_on_goto_statement_token1] = ACTIONS(8686), + [aux_sym_on_goto_statement_token2] = ACTIONS(8686), + [aux_sym_on_error_statement_token2] = ACTIONS(8686), + [sym__ambiguous_redim_statement] = ACTIONS(8688), + [aux_sym_erase_statement_token1] = ACTIONS(8686), + [aux_sym_open_statement_token1] = ACTIONS(8686), + [aux_sym_open_statement_token3] = ACTIONS(10893), + [aux_sym_file_mode_token2] = ACTIONS(8686), + [aux_sym_file_access_token2] = ACTIONS(8686), + [aux_sym_file_lock_token2] = ACTIONS(8686), + [aux_sym_print_statement_token1] = ACTIONS(8686), + [anon_sym_PLUS] = ACTIONS(8688), + [anon_sym_DASH] = ACTIONS(8686), + [anon_sym_QMARK] = ACTIONS(8688), + [aux_sym_close_statement_token1] = ACTIONS(8686), + [aux_sym_put_statement_token1] = ACTIONS(8686), + [aux_sym_unlock_statement_token1] = ACTIONS(8686), + [aux_sym_seek_statement_token1] = ACTIONS(8686), + [sym_reset_statement] = ACTIONS(8686), + [aux_sym_raise_event_statement_token1] = ACTIONS(8686), + [sym_stop_statement] = ACTIONS(8686), + [sym_beep_statement] = ACTIONS(8686), + [aux_sym_unload_statement_token1] = ACTIONS(8686), + [aux_sym_def_type_statement_token1] = ACTIONS(8686), + [aux_sym_def_type_statement_token2] = ACTIONS(8686), + [aux_sym_def_type_statement_token3] = ACTIONS(8686), + [aux_sym_def_type_statement_token4] = ACTIONS(8686), + [aux_sym_def_type_statement_token5] = ACTIONS(8686), + [aux_sym_def_type_statement_token6] = ACTIONS(8686), + [aux_sym_def_type_statement_token7] = ACTIONS(8686), + [aux_sym_def_type_statement_token8] = ACTIONS(8686), + [aux_sym_def_type_statement_token9] = ACTIONS(8686), + [aux_sym_def_type_statement_token10] = ACTIONS(8686), + [aux_sym_def_type_statement_token11] = ACTIONS(8686), + [aux_sym_def_type_statement_token12] = ACTIONS(8686), + [aux_sym_def_type_statement_token13] = ACTIONS(8686), + [aux_sym_def_type_statement_token14] = ACTIONS(8686), + [aux_sym_call_statement_token1] = ACTIONS(8686), + [sym__ambiguous_call_statement] = ACTIONS(8686), + [aux_sym_addressof_expression_token1] = ACTIONS(8686), + [aux_sym_type_of_expression_token1] = ACTIONS(8686), + [aux_sym_unary_expression_token1] = ACTIONS(8686), + [sym_string_literal] = ACTIONS(8688), + [sym_number_literal] = ACTIONS(8688), + [aux_sym_boolean_literal_token1] = ACTIONS(8686), + [aux_sym_boolean_literal_token2] = ACTIONS(8686), + [sym_nothing_literal] = ACTIONS(8686), + [sym_null_literal] = ACTIONS(8686), + [sym_empty_literal] = ACTIONS(8686), + [sym_date_literal] = ACTIONS(8688), + [anon_sym_POUND] = ACTIONS(8686), + }, + [STATE(5919)] = { + [sym_identifier] = ACTIONS(8881), + [sym_newline] = ACTIONS(8884), + [anon_sym_COLON] = ACTIONS(8884), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8881), + [aux_sym_frm_property_statement_token1] = ACTIONS(8881), + [anon_sym_DOT] = ACTIONS(8881), + [anon_sym_BANG] = ACTIONS(8884), + [aux_sym__attribute_identifier_token1] = ACTIONS(8881), + [aux_sym_option_statement_token3] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8881), + [aux_sym_preprocessor_const_token1] = ACTIONS(8881), + [sym_static_modifier] = ACTIONS(8881), + [sym__dim_keyword] = ACTIONS(8881), + [sym__redim_keyword] = ACTIONS(8881), + [aux_sym_get_accessor_token1] = ACTIONS(8881), + [aux_sym_set_accessor_token1] = ACTIONS(8881), + [aux_sym_const_declaration_token1] = ACTIONS(8881), + [anon_sym_LPAREN] = ACTIONS(8884), + [aux_sym_as_type_clause_token2] = ACTIONS(8881), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8881), + [aux_sym_visibility_token1] = ACTIONS(8881), + [aux_sym_visibility_token2] = ACTIONS(8881), + [aux_sym_elseif_fragment_token1] = ACTIONS(8881), + [aux_sym_else_fragment_token1] = ACTIONS(8881), + [aux_sym_select_statement_token1] = ACTIONS(8881), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8949), + [aux_sym__for_header_token1] = ACTIONS(8881), + [aux_sym_do_statement_token1] = ACTIONS(8881), + [aux_sym_do_statement_token2] = ACTIONS(8887), + [aux_sym_do_condition_token1] = ACTIONS(8881), + [aux_sym_with_statement_token1] = ACTIONS(8881), + [aux_sym_exit_statement_token1] = ACTIONS(8881), + [sym_end_statement] = ACTIONS(8884), + [aux_sym_on_goto_statement_token1] = ACTIONS(8881), + [aux_sym_on_goto_statement_token2] = ACTIONS(8881), + [aux_sym_on_error_statement_token2] = ACTIONS(8881), + [sym__ambiguous_redim_statement] = ACTIONS(8884), + [aux_sym_erase_statement_token1] = ACTIONS(8881), + [aux_sym_open_statement_token1] = ACTIONS(8881), + [aux_sym_file_mode_token2] = ACTIONS(8881), + [aux_sym_file_access_token2] = ACTIONS(8881), + [aux_sym_file_lock_token2] = ACTIONS(8881), + [aux_sym_print_statement_token1] = ACTIONS(8881), + [anon_sym_PLUS] = ACTIONS(8884), + [anon_sym_DASH] = ACTIONS(8881), + [anon_sym_QMARK] = ACTIONS(8884), + [aux_sym_close_statement_token1] = ACTIONS(8881), + [aux_sym_put_statement_token1] = ACTIONS(8881), + [aux_sym_unlock_statement_token1] = ACTIONS(8881), + [aux_sym_seek_statement_token1] = ACTIONS(8881), + [sym_reset_statement] = ACTIONS(8881), + [aux_sym_raise_event_statement_token1] = ACTIONS(8881), + [sym_stop_statement] = ACTIONS(8881), + [sym_beep_statement] = ACTIONS(8881), + [aux_sym_unload_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token2] = ACTIONS(8881), + [aux_sym_def_type_statement_token3] = ACTIONS(8881), + [aux_sym_def_type_statement_token4] = ACTIONS(8881), + [aux_sym_def_type_statement_token5] = ACTIONS(8881), + [aux_sym_def_type_statement_token6] = ACTIONS(8881), + [aux_sym_def_type_statement_token7] = ACTIONS(8881), + [aux_sym_def_type_statement_token8] = ACTIONS(8881), + [aux_sym_def_type_statement_token9] = ACTIONS(8881), + [aux_sym_def_type_statement_token10] = ACTIONS(8881), + [aux_sym_def_type_statement_token11] = ACTIONS(8881), + [aux_sym_def_type_statement_token12] = ACTIONS(8881), + [aux_sym_def_type_statement_token13] = ACTIONS(8881), + [aux_sym_def_type_statement_token14] = ACTIONS(8881), + [aux_sym_call_statement_token1] = ACTIONS(8881), + [sym__ambiguous_call_statement] = ACTIONS(8881), + [aux_sym_addressof_expression_token1] = ACTIONS(8881), + [aux_sym_type_of_expression_token1] = ACTIONS(8881), + [aux_sym_unary_expression_token1] = ACTIONS(8881), + [sym_string_literal] = ACTIONS(8884), + [sym_number_literal] = ACTIONS(8884), + [aux_sym_boolean_literal_token1] = ACTIONS(8881), + [aux_sym_boolean_literal_token2] = ACTIONS(8881), + [sym_nothing_literal] = ACTIONS(8881), + [sym_null_literal] = ACTIONS(8881), + [sym_empty_literal] = ACTIONS(8881), + [sym_date_literal] = ACTIONS(8884), + [anon_sym_POUND] = ACTIONS(8881), + }, + [STATE(5920)] = { + [sym_identifier] = ACTIONS(8881), + [sym_newline] = ACTIONS(8884), + [anon_sym_COLON] = ACTIONS(8884), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8881), + [aux_sym_frm_property_statement_token1] = ACTIONS(8881), + [anon_sym_DOT] = ACTIONS(8881), + [anon_sym_BANG] = ACTIONS(8884), + [aux_sym__attribute_identifier_token1] = ACTIONS(8881), + [aux_sym_option_statement_token3] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8887), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8881), + [aux_sym_preprocessor_const_token1] = ACTIONS(8881), + [sym_static_modifier] = ACTIONS(8881), + [sym__dim_keyword] = ACTIONS(8881), + [sym__redim_keyword] = ACTIONS(8881), + [aux_sym_get_accessor_token1] = ACTIONS(8881), + [aux_sym_set_accessor_token1] = ACTIONS(8881), + [aux_sym_const_declaration_token1] = ACTIONS(8881), + [anon_sym_LPAREN] = ACTIONS(8884), + [aux_sym_as_type_clause_token2] = ACTIONS(8881), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8881), + [aux_sym_visibility_token1] = ACTIONS(8881), + [aux_sym_visibility_token2] = ACTIONS(8881), + [aux_sym_elseif_fragment_token1] = ACTIONS(8881), + [aux_sym_else_fragment_token1] = ACTIONS(8881), + [aux_sym_select_statement_token1] = ACTIONS(8881), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8881), + [aux_sym__for_header_token1] = ACTIONS(8881), + [aux_sym_do_statement_token1] = ACTIONS(8881), + [aux_sym_do_condition_token1] = ACTIONS(8881), + [aux_sym_with_statement_token1] = ACTIONS(8881), + [aux_sym_exit_statement_token1] = ACTIONS(8881), + [sym_end_statement] = ACTIONS(8884), + [aux_sym_on_goto_statement_token1] = ACTIONS(8881), + [aux_sym_on_goto_statement_token2] = ACTIONS(8881), + [aux_sym_on_error_statement_token2] = ACTIONS(8881), + [sym__ambiguous_redim_statement] = ACTIONS(8884), + [aux_sym_erase_statement_token1] = ACTIONS(8881), + [aux_sym_open_statement_token1] = ACTIONS(8881), + [aux_sym_file_mode_token2] = ACTIONS(8881), + [aux_sym_file_access_token2] = ACTIONS(8881), + [aux_sym_file_lock_token2] = ACTIONS(8881), + [aux_sym_print_statement_token1] = ACTIONS(8881), + [anon_sym_PLUS] = ACTIONS(8884), + [anon_sym_DASH] = ACTIONS(8881), + [anon_sym_QMARK] = ACTIONS(8884), + [aux_sym_close_statement_token1] = ACTIONS(8881), + [aux_sym_put_statement_token1] = ACTIONS(8881), + [aux_sym_unlock_statement_token1] = ACTIONS(8881), + [aux_sym_seek_statement_token1] = ACTIONS(8881), + [sym_reset_statement] = ACTIONS(8881), + [aux_sym_raise_event_statement_token1] = ACTIONS(8881), + [sym_stop_statement] = ACTIONS(8881), + [sym_beep_statement] = ACTIONS(8881), + [aux_sym_unload_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token2] = ACTIONS(8881), + [aux_sym_def_type_statement_token3] = ACTIONS(8881), + [aux_sym_def_type_statement_token4] = ACTIONS(8881), + [aux_sym_def_type_statement_token5] = ACTIONS(8881), + [aux_sym_def_type_statement_token6] = ACTIONS(8881), + [aux_sym_def_type_statement_token7] = ACTIONS(8881), + [aux_sym_def_type_statement_token8] = ACTIONS(8881), + [aux_sym_def_type_statement_token9] = ACTIONS(8881), + [aux_sym_def_type_statement_token10] = ACTIONS(8881), + [aux_sym_def_type_statement_token11] = ACTIONS(8881), + [aux_sym_def_type_statement_token12] = ACTIONS(8881), + [aux_sym_def_type_statement_token13] = ACTIONS(8881), + [aux_sym_def_type_statement_token14] = ACTIONS(8881), + [aux_sym_call_statement_token1] = ACTIONS(8881), + [sym__ambiguous_call_statement] = ACTIONS(8881), + [aux_sym_addressof_expression_token1] = ACTIONS(8881), + [aux_sym_type_of_expression_token1] = ACTIONS(8881), + [aux_sym_unary_expression_token1] = ACTIONS(8881), + [sym_string_literal] = ACTIONS(8884), + [sym_number_literal] = ACTIONS(8884), + [aux_sym_boolean_literal_token1] = ACTIONS(8881), + [aux_sym_boolean_literal_token2] = ACTIONS(8881), + [sym_nothing_literal] = ACTIONS(8881), + [sym_null_literal] = ACTIONS(8881), + [sym_empty_literal] = ACTIONS(8881), + [sym_date_literal] = ACTIONS(8884), + [anon_sym_POUND] = ACTIONS(8881), + }, + [STATE(5921)] = { + [sym_identifier] = ACTIONS(7968), + [sym_newline] = ACTIONS(7970), + [anon_sym_COLON] = ACTIONS(7970), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7968), + [aux_sym_frm_property_statement_token1] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_BANG] = ACTIONS(7970), + [aux_sym__attribute_identifier_token1] = ACTIONS(7968), + [aux_sym_option_statement_token3] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7968), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7968), + [aux_sym_preprocessor_const_token1] = ACTIONS(7968), + [sym_static_modifier] = ACTIONS(7968), + [sym__dim_keyword] = ACTIONS(7968), + [sym__redim_keyword] = ACTIONS(7968), + [aux_sym_get_accessor_token1] = ACTIONS(7968), + [aux_sym_set_accessor_token1] = ACTIONS(7968), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_const_declaration_token1] = ACTIONS(7968), + [anon_sym_LPAREN] = ACTIONS(7970), + [aux_sym_as_type_clause_token2] = ACTIONS(7968), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7968), + [aux_sym_visibility_token1] = ACTIONS(7968), + [aux_sym_visibility_token2] = ACTIONS(7968), + [aux_sym_elseif_fragment_token1] = ACTIONS(7968), + [aux_sym_else_fragment_token1] = ACTIONS(7968), + [aux_sym_select_statement_token1] = ACTIONS(7968), + [aux_sym__for_header_token1] = ACTIONS(7968), + [aux_sym_do_statement_token1] = ACTIONS(7968), + [aux_sym_do_condition_token1] = ACTIONS(7968), + [aux_sym_with_statement_token1] = ACTIONS(7968), + [aux_sym_exit_statement_token1] = ACTIONS(7968), + [sym_end_statement] = ACTIONS(7970), + [aux_sym_on_goto_statement_token1] = ACTIONS(7968), + [aux_sym_on_goto_statement_token2] = ACTIONS(7968), + [aux_sym_on_error_statement_token2] = ACTIONS(7968), + [sym__ambiguous_redim_statement] = ACTIONS(7970), + [aux_sym_erase_statement_token1] = ACTIONS(7968), + [aux_sym_open_statement_token1] = ACTIONS(7968), + [aux_sym_file_mode_token2] = ACTIONS(7968), + [aux_sym_file_access_token2] = ACTIONS(7968), + [aux_sym_file_lock_token2] = ACTIONS(7968), + [aux_sym_print_statement_token1] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7970), + [aux_sym_close_statement_token1] = ACTIONS(7968), + [aux_sym_put_statement_token1] = ACTIONS(7968), + [aux_sym_unlock_statement_token1] = ACTIONS(7968), + [aux_sym_seek_statement_token1] = ACTIONS(7968), + [sym_reset_statement] = ACTIONS(7968), + [aux_sym_raise_event_statement_token1] = ACTIONS(7968), + [sym_stop_statement] = ACTIONS(7968), + [sym_beep_statement] = ACTIONS(7968), + [aux_sym_unload_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token1] = ACTIONS(7968), + [aux_sym_def_type_statement_token2] = ACTIONS(7968), + [aux_sym_def_type_statement_token3] = ACTIONS(7968), + [aux_sym_def_type_statement_token4] = ACTIONS(7968), + [aux_sym_def_type_statement_token5] = ACTIONS(7968), + [aux_sym_def_type_statement_token6] = ACTIONS(7968), + [aux_sym_def_type_statement_token7] = ACTIONS(7968), + [aux_sym_def_type_statement_token8] = ACTIONS(7968), + [aux_sym_def_type_statement_token9] = ACTIONS(7968), + [aux_sym_def_type_statement_token10] = ACTIONS(7968), + [aux_sym_def_type_statement_token11] = ACTIONS(7968), + [aux_sym_def_type_statement_token12] = ACTIONS(7968), + [aux_sym_def_type_statement_token13] = ACTIONS(7968), + [aux_sym_def_type_statement_token14] = ACTIONS(7968), + [aux_sym_call_statement_token1] = ACTIONS(7968), + [sym__ambiguous_call_statement] = ACTIONS(7968), + [aux_sym_addressof_expression_token1] = ACTIONS(7968), + [aux_sym_type_of_expression_token1] = ACTIONS(7968), + [aux_sym_unary_expression_token1] = ACTIONS(7968), + [sym_string_literal] = ACTIONS(7970), + [sym_number_literal] = ACTIONS(7970), + [aux_sym_boolean_literal_token1] = ACTIONS(7968), + [aux_sym_boolean_literal_token2] = ACTIONS(7968), + [sym_nothing_literal] = ACTIONS(7968), + [sym_null_literal] = ACTIONS(7968), + [sym_empty_literal] = ACTIONS(7968), + [sym_date_literal] = ACTIONS(7970), + [anon_sym_POUND] = ACTIONS(7968), + }, + [STATE(5922)] = { + [sym_identifier] = ACTIONS(8915), + [sym_newline] = ACTIONS(8918), + [anon_sym_COLON] = ACTIONS(8918), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8915), + [aux_sym_frm_property_statement_token1] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8915), + [anon_sym_BANG] = ACTIONS(8918), + [aux_sym__attribute_identifier_token1] = ACTIONS(8915), + [aux_sym_option_statement_token3] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8915), + [aux_sym_preprocessor_const_token1] = ACTIONS(8915), + [sym_static_modifier] = ACTIONS(8915), + [sym__dim_keyword] = ACTIONS(8915), + [sym__redim_keyword] = ACTIONS(8915), + [aux_sym_get_accessor_token1] = ACTIONS(8915), + [aux_sym_set_accessor_token1] = ACTIONS(8915), + [aux_sym_const_declaration_token1] = ACTIONS(8915), + [anon_sym_LPAREN] = ACTIONS(8918), + [aux_sym_as_type_clause_token2] = ACTIONS(8915), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8915), + [aux_sym_visibility_token1] = ACTIONS(8915), + [aux_sym_visibility_token2] = ACTIONS(8915), + [aux_sym_elseif_fragment_token1] = ACTIONS(8915), + [aux_sym_else_fragment_token1] = ACTIONS(8915), + [aux_sym_select_statement_token1] = ACTIONS(8915), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8915), + [aux_sym_do_statement_token1] = ACTIONS(8915), + [aux_sym_do_statement_token2] = ACTIONS(8921), + [aux_sym_do_condition_token1] = ACTIONS(8915), + [aux_sym_with_statement_token1] = ACTIONS(8915), + [aux_sym_exit_statement_token1] = ACTIONS(8915), + [sym_end_statement] = ACTIONS(8918), + [aux_sym_on_goto_statement_token1] = ACTIONS(8915), + [aux_sym_on_goto_statement_token2] = ACTIONS(8915), + [aux_sym_on_error_statement_token2] = ACTIONS(8915), + [sym__ambiguous_redim_statement] = ACTIONS(8918), + [aux_sym_erase_statement_token1] = ACTIONS(8915), + [aux_sym_open_statement_token1] = ACTIONS(8915), + [aux_sym_file_mode_token2] = ACTIONS(8915), + [aux_sym_file_access_token2] = ACTIONS(8915), + [aux_sym_file_lock_token2] = ACTIONS(8915), + [aux_sym_print_statement_token1] = ACTIONS(8915), + [anon_sym_PLUS] = ACTIONS(8918), + [anon_sym_DASH] = ACTIONS(8915), + [anon_sym_QMARK] = ACTIONS(8918), + [aux_sym_close_statement_token1] = ACTIONS(8915), + [aux_sym_put_statement_token1] = ACTIONS(8915), + [aux_sym_unlock_statement_token1] = ACTIONS(8915), + [aux_sym_seek_statement_token1] = ACTIONS(8915), + [sym_reset_statement] = ACTIONS(8915), + [aux_sym_raise_event_statement_token1] = ACTIONS(8915), + [sym_stop_statement] = ACTIONS(8915), + [sym_beep_statement] = ACTIONS(8915), + [aux_sym_unload_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token2] = ACTIONS(8915), + [aux_sym_def_type_statement_token3] = ACTIONS(8915), + [aux_sym_def_type_statement_token4] = ACTIONS(8915), + [aux_sym_def_type_statement_token5] = ACTIONS(8915), + [aux_sym_def_type_statement_token6] = ACTIONS(8915), + [aux_sym_def_type_statement_token7] = ACTIONS(8915), + [aux_sym_def_type_statement_token8] = ACTIONS(8915), + [aux_sym_def_type_statement_token9] = ACTIONS(8915), + [aux_sym_def_type_statement_token10] = ACTIONS(8915), + [aux_sym_def_type_statement_token11] = ACTIONS(8915), + [aux_sym_def_type_statement_token12] = ACTIONS(8915), + [aux_sym_def_type_statement_token13] = ACTIONS(8915), + [aux_sym_def_type_statement_token14] = ACTIONS(8915), + [aux_sym_call_statement_token1] = ACTIONS(8915), + [sym__ambiguous_call_statement] = ACTIONS(8915), + [aux_sym_addressof_expression_token1] = ACTIONS(8915), + [aux_sym_type_of_expression_token1] = ACTIONS(8915), + [aux_sym_unary_expression_token1] = ACTIONS(8915), + [sym_string_literal] = ACTIONS(8918), + [sym_number_literal] = ACTIONS(8918), + [aux_sym_boolean_literal_token1] = ACTIONS(8915), + [aux_sym_boolean_literal_token2] = ACTIONS(8915), + [sym_nothing_literal] = ACTIONS(8915), + [sym_null_literal] = ACTIONS(8915), + [sym_empty_literal] = ACTIONS(8915), + [sym_date_literal] = ACTIONS(8918), + [anon_sym_POUND] = ACTIONS(8915), + }, + [STATE(5923)] = { + [sym_do_condition] = STATE(7198), + [sym_identifier] = ACTIONS(8471), + [sym_newline] = ACTIONS(8473), + [anon_sym_COLON] = ACTIONS(8473), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8471), + [aux_sym_frm_property_statement_token1] = ACTIONS(8471), + [anon_sym_DOT] = ACTIONS(8471), + [anon_sym_BANG] = ACTIONS(8473), + [aux_sym__attribute_identifier_token1] = ACTIONS(8471), + [aux_sym_option_statement_token3] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8471), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8471), + [aux_sym_preprocessor_const_token1] = ACTIONS(8471), + [sym_static_modifier] = ACTIONS(8471), + [sym__dim_keyword] = ACTIONS(8471), + [sym__redim_keyword] = ACTIONS(8471), + [aux_sym_get_accessor_token1] = ACTIONS(8471), + [aux_sym_set_accessor_token1] = ACTIONS(8471), + [aux_sym_const_declaration_token1] = ACTIONS(8471), + [anon_sym_LPAREN] = ACTIONS(8473), + [aux_sym_as_type_clause_token2] = ACTIONS(8471), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8471), + [aux_sym_visibility_token1] = ACTIONS(8471), + [aux_sym_visibility_token2] = ACTIONS(8471), + [aux_sym_elseif_fragment_token1] = ACTIONS(8471), + [aux_sym_else_fragment_token1] = ACTIONS(8471), + [aux_sym_select_statement_token1] = ACTIONS(8471), + [aux_sym__for_header_token1] = ACTIONS(8471), + [aux_sym_do_statement_token1] = ACTIONS(8471), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8471), + [aux_sym_exit_statement_token1] = ACTIONS(8471), + [sym_end_statement] = ACTIONS(8473), + [aux_sym_on_goto_statement_token1] = ACTIONS(8471), + [aux_sym_on_goto_statement_token2] = ACTIONS(8471), + [aux_sym_on_error_statement_token2] = ACTIONS(8471), + [sym__ambiguous_redim_statement] = ACTIONS(8473), + [aux_sym_erase_statement_token1] = ACTIONS(8471), + [aux_sym_open_statement_token1] = ACTIONS(8471), + [aux_sym_file_mode_token2] = ACTIONS(8471), + [aux_sym_file_access_token2] = ACTIONS(8471), + [aux_sym_file_lock_token2] = ACTIONS(8471), + [aux_sym_print_statement_token1] = ACTIONS(8471), + [anon_sym_PLUS] = ACTIONS(8473), + [anon_sym_DASH] = ACTIONS(8471), + [anon_sym_QMARK] = ACTIONS(8473), + [aux_sym_close_statement_token1] = ACTIONS(8471), + [aux_sym_put_statement_token1] = ACTIONS(8471), + [aux_sym_unlock_statement_token1] = ACTIONS(8471), + [aux_sym_seek_statement_token1] = ACTIONS(8471), + [sym_reset_statement] = ACTIONS(8471), + [aux_sym_raise_event_statement_token1] = ACTIONS(8471), + [sym_stop_statement] = ACTIONS(8471), + [sym_beep_statement] = ACTIONS(8471), + [aux_sym_unload_statement_token1] = ACTIONS(8471), + [aux_sym_def_type_statement_token1] = ACTIONS(8471), + [aux_sym_def_type_statement_token2] = ACTIONS(8471), + [aux_sym_def_type_statement_token3] = ACTIONS(8471), + [aux_sym_def_type_statement_token4] = ACTIONS(8471), + [aux_sym_def_type_statement_token5] = ACTIONS(8471), + [aux_sym_def_type_statement_token6] = ACTIONS(8471), + [aux_sym_def_type_statement_token7] = ACTIONS(8471), + [aux_sym_def_type_statement_token8] = ACTIONS(8471), + [aux_sym_def_type_statement_token9] = ACTIONS(8471), + [aux_sym_def_type_statement_token10] = ACTIONS(8471), + [aux_sym_def_type_statement_token11] = ACTIONS(8471), + [aux_sym_def_type_statement_token12] = ACTIONS(8471), + [aux_sym_def_type_statement_token13] = ACTIONS(8471), + [aux_sym_def_type_statement_token14] = ACTIONS(8471), + [aux_sym_call_statement_token1] = ACTIONS(8471), + [sym__ambiguous_call_statement] = ACTIONS(8471), + [aux_sym_addressof_expression_token1] = ACTIONS(8471), + [aux_sym_type_of_expression_token1] = ACTIONS(8471), + [aux_sym_unary_expression_token1] = ACTIONS(8471), + [sym_string_literal] = ACTIONS(8473), + [sym_number_literal] = ACTIONS(8473), + [aux_sym_boolean_literal_token1] = ACTIONS(8471), + [aux_sym_boolean_literal_token2] = ACTIONS(8471), + [sym_nothing_literal] = ACTIONS(8471), + [sym_null_literal] = ACTIONS(8471), + [sym_empty_literal] = ACTIONS(8471), + [sym_date_literal] = ACTIONS(8473), + [anon_sym_POUND] = ACTIONS(8471), + }, + [STATE(5924)] = { + [sym_do_condition] = STATE(7189), + [sym_identifier] = ACTIONS(8475), + [sym_newline] = ACTIONS(8477), + [anon_sym_COLON] = ACTIONS(8477), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8475), + [aux_sym_frm_property_statement_token1] = ACTIONS(8475), + [anon_sym_DOT] = ACTIONS(8475), + [anon_sym_BANG] = ACTIONS(8477), + [aux_sym__attribute_identifier_token1] = ACTIONS(8475), + [aux_sym_option_statement_token3] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8475), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8475), + [aux_sym_preprocessor_const_token1] = ACTIONS(8475), + [sym_static_modifier] = ACTIONS(8475), + [sym__dim_keyword] = ACTIONS(8475), + [sym__redim_keyword] = ACTIONS(8475), + [aux_sym_get_accessor_token1] = ACTIONS(8475), + [aux_sym_set_accessor_token1] = ACTIONS(8475), + [aux_sym_const_declaration_token1] = ACTIONS(8475), + [anon_sym_LPAREN] = ACTIONS(8477), + [aux_sym_as_type_clause_token2] = ACTIONS(8475), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8475), + [aux_sym_visibility_token1] = ACTIONS(8475), + [aux_sym_visibility_token2] = ACTIONS(8475), + [aux_sym_elseif_fragment_token1] = ACTIONS(8475), + [aux_sym_else_fragment_token1] = ACTIONS(8475), + [aux_sym_select_statement_token1] = ACTIONS(8475), + [aux_sym__for_header_token1] = ACTIONS(8475), + [aux_sym_do_statement_token1] = ACTIONS(8475), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8475), + [aux_sym_exit_statement_token1] = ACTIONS(8475), + [sym_end_statement] = ACTIONS(8477), + [aux_sym_on_goto_statement_token1] = ACTIONS(8475), + [aux_sym_on_goto_statement_token2] = ACTIONS(8475), + [aux_sym_on_error_statement_token2] = ACTIONS(8475), + [sym__ambiguous_redim_statement] = ACTIONS(8477), + [aux_sym_erase_statement_token1] = ACTIONS(8475), + [aux_sym_open_statement_token1] = ACTIONS(8475), + [aux_sym_file_mode_token2] = ACTIONS(8475), + [aux_sym_file_access_token2] = ACTIONS(8475), + [aux_sym_file_lock_token2] = ACTIONS(8475), + [aux_sym_print_statement_token1] = ACTIONS(8475), + [anon_sym_PLUS] = ACTIONS(8477), + [anon_sym_DASH] = ACTIONS(8475), + [anon_sym_QMARK] = ACTIONS(8477), + [aux_sym_close_statement_token1] = ACTIONS(8475), + [aux_sym_put_statement_token1] = ACTIONS(8475), + [aux_sym_unlock_statement_token1] = ACTIONS(8475), + [aux_sym_seek_statement_token1] = ACTIONS(8475), + [sym_reset_statement] = ACTIONS(8475), + [aux_sym_raise_event_statement_token1] = ACTIONS(8475), + [sym_stop_statement] = ACTIONS(8475), + [sym_beep_statement] = ACTIONS(8475), + [aux_sym_unload_statement_token1] = ACTIONS(8475), + [aux_sym_def_type_statement_token1] = ACTIONS(8475), + [aux_sym_def_type_statement_token2] = ACTIONS(8475), + [aux_sym_def_type_statement_token3] = ACTIONS(8475), + [aux_sym_def_type_statement_token4] = ACTIONS(8475), + [aux_sym_def_type_statement_token5] = ACTIONS(8475), + [aux_sym_def_type_statement_token6] = ACTIONS(8475), + [aux_sym_def_type_statement_token7] = ACTIONS(8475), + [aux_sym_def_type_statement_token8] = ACTIONS(8475), + [aux_sym_def_type_statement_token9] = ACTIONS(8475), + [aux_sym_def_type_statement_token10] = ACTIONS(8475), + [aux_sym_def_type_statement_token11] = ACTIONS(8475), + [aux_sym_def_type_statement_token12] = ACTIONS(8475), + [aux_sym_def_type_statement_token13] = ACTIONS(8475), + [aux_sym_def_type_statement_token14] = ACTIONS(8475), + [aux_sym_call_statement_token1] = ACTIONS(8475), + [sym__ambiguous_call_statement] = ACTIONS(8475), + [aux_sym_addressof_expression_token1] = ACTIONS(8475), + [aux_sym_type_of_expression_token1] = ACTIONS(8475), + [aux_sym_unary_expression_token1] = ACTIONS(8475), + [sym_string_literal] = ACTIONS(8477), + [sym_number_literal] = ACTIONS(8477), + [aux_sym_boolean_literal_token1] = ACTIONS(8475), + [aux_sym_boolean_literal_token2] = ACTIONS(8475), + [sym_nothing_literal] = ACTIONS(8475), + [sym_null_literal] = ACTIONS(8475), + [sym_empty_literal] = ACTIONS(8475), + [sym_date_literal] = ACTIONS(8477), + [anon_sym_POUND] = ACTIONS(8475), + }, + [STATE(5925)] = { + [sym_identifier] = ACTIONS(8861), + [sym_newline] = ACTIONS(8863), + [anon_sym_COLON] = ACTIONS(8863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8861), + [aux_sym_frm_property_statement_token1] = ACTIONS(8861), + [anon_sym_DOT] = ACTIONS(8861), + [anon_sym_BANG] = ACTIONS(8863), + [aux_sym__attribute_identifier_token1] = ACTIONS(8861), + [aux_sym_option_statement_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8861), + [aux_sym_preprocessor_const_token1] = ACTIONS(8861), + [sym_static_modifier] = ACTIONS(8861), + [sym__dim_keyword] = ACTIONS(8861), + [sym__redim_keyword] = ACTIONS(8861), + [aux_sym_get_accessor_token1] = ACTIONS(8861), + [aux_sym_set_accessor_token1] = ACTIONS(8861), + [aux_sym_const_declaration_token1] = ACTIONS(8861), + [anon_sym_LPAREN] = ACTIONS(8863), + [aux_sym_as_type_clause_token2] = ACTIONS(8861), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8861), + [aux_sym_visibility_token1] = ACTIONS(8861), + [aux_sym_visibility_token2] = ACTIONS(8861), + [aux_sym_elseif_fragment_token1] = ACTIONS(8861), + [aux_sym_else_fragment_token1] = ACTIONS(8861), + [aux_sym_select_statement_token1] = ACTIONS(8861), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8861), + [aux_sym__for_header_token1] = ACTIONS(8861), + [aux_sym_do_statement_token1] = ACTIONS(8861), + [aux_sym_do_statement_token2] = ACTIONS(8861), + [aux_sym_do_condition_token1] = ACTIONS(8861), + [aux_sym_with_statement_token1] = ACTIONS(8861), + [aux_sym_exit_statement_token1] = ACTIONS(8861), + [sym_end_statement] = ACTIONS(8863), + [aux_sym_on_goto_statement_token1] = ACTIONS(8861), + [aux_sym_on_goto_statement_token2] = ACTIONS(8861), + [aux_sym_on_error_statement_token2] = ACTIONS(8861), + [sym__ambiguous_redim_statement] = ACTIONS(8863), + [aux_sym_erase_statement_token1] = ACTIONS(8861), + [aux_sym_open_statement_token1] = ACTIONS(8861), + [aux_sym_file_mode_token2] = ACTIONS(8861), + [aux_sym_file_access_token2] = ACTIONS(8861), + [aux_sym_file_lock_token2] = ACTIONS(8861), + [aux_sym_print_statement_token1] = ACTIONS(8861), + [anon_sym_PLUS] = ACTIONS(8863), + [anon_sym_DASH] = ACTIONS(8861), + [anon_sym_QMARK] = ACTIONS(8863), + [aux_sym_close_statement_token1] = ACTIONS(8861), + [aux_sym_put_statement_token1] = ACTIONS(8861), + [aux_sym_unlock_statement_token1] = ACTIONS(8861), + [aux_sym_seek_statement_token1] = ACTIONS(8861), + [sym_reset_statement] = ACTIONS(8861), + [aux_sym_raise_event_statement_token1] = ACTIONS(8861), + [sym_stop_statement] = ACTIONS(8861), + [sym_beep_statement] = ACTIONS(8861), + [aux_sym_unload_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token2] = ACTIONS(8861), + [aux_sym_def_type_statement_token3] = ACTIONS(8861), + [aux_sym_def_type_statement_token4] = ACTIONS(8861), + [aux_sym_def_type_statement_token5] = ACTIONS(8861), + [aux_sym_def_type_statement_token6] = ACTIONS(8861), + [aux_sym_def_type_statement_token7] = ACTIONS(8861), + [aux_sym_def_type_statement_token8] = ACTIONS(8861), + [aux_sym_def_type_statement_token9] = ACTIONS(8861), + [aux_sym_def_type_statement_token10] = ACTIONS(8861), + [aux_sym_def_type_statement_token11] = ACTIONS(8861), + [aux_sym_def_type_statement_token12] = ACTIONS(8861), + [aux_sym_def_type_statement_token13] = ACTIONS(8861), + [aux_sym_def_type_statement_token14] = ACTIONS(8861), + [aux_sym_call_statement_token1] = ACTIONS(8861), + [sym__ambiguous_call_statement] = ACTIONS(8861), + [aux_sym_addressof_expression_token1] = ACTIONS(8861), + [aux_sym_type_of_expression_token1] = ACTIONS(8861), + [aux_sym_unary_expression_token1] = ACTIONS(8861), + [sym_string_literal] = ACTIONS(8863), + [sym_number_literal] = ACTIONS(8863), + [aux_sym_boolean_literal_token1] = ACTIONS(8861), + [aux_sym_boolean_literal_token2] = ACTIONS(8861), + [sym_nothing_literal] = ACTIONS(8861), + [sym_null_literal] = ACTIONS(8861), + [sym_empty_literal] = ACTIONS(8861), + [sym_date_literal] = ACTIONS(8863), + [anon_sym_POUND] = ACTIONS(8861), + }, + [STATE(5926)] = { + [sym_identifier] = ACTIONS(8723), + [sym_newline] = ACTIONS(8725), + [anon_sym_COLON] = ACTIONS(8725), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8723), + [aux_sym_frm_property_statement_token1] = ACTIONS(8723), + [anon_sym_DOT] = ACTIONS(8723), + [anon_sym_BANG] = ACTIONS(8725), + [aux_sym__attribute_identifier_token1] = ACTIONS(8723), + [aux_sym_option_statement_token3] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8723), + [aux_sym_preprocessor_const_token1] = ACTIONS(8723), + [sym_static_modifier] = ACTIONS(8723), + [sym__dim_keyword] = ACTIONS(8723), + [sym__redim_keyword] = ACTIONS(8723), + [aux_sym_get_accessor_token1] = ACTIONS(8723), + [aux_sym_set_accessor_token1] = ACTIONS(8723), + [aux_sym_const_declaration_token1] = ACTIONS(8723), + [anon_sym_LPAREN] = ACTIONS(8725), + [aux_sym_as_type_clause_token2] = ACTIONS(8723), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8723), + [aux_sym_visibility_token1] = ACTIONS(8723), + [aux_sym_visibility_token2] = ACTIONS(8723), + [aux_sym_elseif_fragment_token1] = ACTIONS(8723), + [aux_sym_else_fragment_token1] = ACTIONS(8723), + [aux_sym_select_statement_token1] = ACTIONS(8723), + [aux_sym_select_statement_token2] = ACTIONS(8723), + [aux_sym__for_header_token1] = ACTIONS(8723), + [aux_sym_do_statement_token1] = ACTIONS(8723), + [aux_sym_do_condition_token1] = ACTIONS(8723), + [aux_sym_with_statement_token1] = ACTIONS(8723), + [aux_sym_exit_statement_token1] = ACTIONS(8723), + [sym_end_statement] = ACTIONS(8725), + [aux_sym_on_goto_statement_token1] = ACTIONS(8723), + [aux_sym_on_goto_statement_token2] = ACTIONS(8723), + [aux_sym_on_error_statement_token2] = ACTIONS(8723), + [sym__ambiguous_redim_statement] = ACTIONS(8725), + [aux_sym_erase_statement_token1] = ACTIONS(8723), + [aux_sym_open_statement_token1] = ACTIONS(8723), + [aux_sym_open_statement_token3] = ACTIONS(10895), + [aux_sym_file_mode_token2] = ACTIONS(8723), + [aux_sym_file_access_token2] = ACTIONS(8723), + [aux_sym_file_lock_token2] = ACTIONS(8723), + [aux_sym_print_statement_token1] = ACTIONS(8723), + [anon_sym_PLUS] = ACTIONS(8725), + [anon_sym_DASH] = ACTIONS(8723), + [anon_sym_QMARK] = ACTIONS(8725), + [aux_sym_close_statement_token1] = ACTIONS(8723), + [aux_sym_put_statement_token1] = ACTIONS(8723), + [aux_sym_unlock_statement_token1] = ACTIONS(8723), + [aux_sym_seek_statement_token1] = ACTIONS(8723), + [sym_reset_statement] = ACTIONS(8723), + [aux_sym_raise_event_statement_token1] = ACTIONS(8723), + [sym_stop_statement] = ACTIONS(8723), + [sym_beep_statement] = ACTIONS(8723), + [aux_sym_unload_statement_token1] = ACTIONS(8723), + [aux_sym_def_type_statement_token1] = ACTIONS(8723), + [aux_sym_def_type_statement_token2] = ACTIONS(8723), + [aux_sym_def_type_statement_token3] = ACTIONS(8723), + [aux_sym_def_type_statement_token4] = ACTIONS(8723), + [aux_sym_def_type_statement_token5] = ACTIONS(8723), + [aux_sym_def_type_statement_token6] = ACTIONS(8723), + [aux_sym_def_type_statement_token7] = ACTIONS(8723), + [aux_sym_def_type_statement_token8] = ACTIONS(8723), + [aux_sym_def_type_statement_token9] = ACTIONS(8723), + [aux_sym_def_type_statement_token10] = ACTIONS(8723), + [aux_sym_def_type_statement_token11] = ACTIONS(8723), + [aux_sym_def_type_statement_token12] = ACTIONS(8723), + [aux_sym_def_type_statement_token13] = ACTIONS(8723), + [aux_sym_def_type_statement_token14] = ACTIONS(8723), + [aux_sym_call_statement_token1] = ACTIONS(8723), + [sym__ambiguous_call_statement] = ACTIONS(8723), + [aux_sym_addressof_expression_token1] = ACTIONS(8723), + [aux_sym_type_of_expression_token1] = ACTIONS(8723), + [aux_sym_unary_expression_token1] = ACTIONS(8723), + [sym_string_literal] = ACTIONS(8725), + [sym_number_literal] = ACTIONS(8725), + [aux_sym_boolean_literal_token1] = ACTIONS(8723), + [aux_sym_boolean_literal_token2] = ACTIONS(8723), + [sym_nothing_literal] = ACTIONS(8723), + [sym_null_literal] = ACTIONS(8723), + [sym_empty_literal] = ACTIONS(8723), + [sym_date_literal] = ACTIONS(8725), + [anon_sym_POUND] = ACTIONS(8723), + }, + [STATE(5927)] = { + [sym_identifier] = ACTIONS(8756), + [sym_newline] = ACTIONS(8759), + [anon_sym_COLON] = ACTIONS(8759), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8756), + [aux_sym_frm_property_statement_token1] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8756), + [anon_sym_BANG] = ACTIONS(8759), + [aux_sym__attribute_identifier_token1] = ACTIONS(8756), + [aux_sym_option_statement_token3] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8756), + [aux_sym_preprocessor_const_token1] = ACTIONS(8756), + [sym_static_modifier] = ACTIONS(8756), + [sym__dim_keyword] = ACTIONS(8756), + [sym__redim_keyword] = ACTIONS(8756), + [aux_sym_get_accessor_token1] = ACTIONS(8756), + [aux_sym_set_accessor_token1] = ACTIONS(8756), + [aux_sym_const_declaration_token1] = ACTIONS(8756), + [anon_sym_LPAREN] = ACTIONS(8759), + [aux_sym_as_type_clause_token2] = ACTIONS(8756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8756), + [aux_sym_visibility_token1] = ACTIONS(8756), + [aux_sym_visibility_token2] = ACTIONS(8756), + [aux_sym_elseif_fragment_token1] = ACTIONS(8756), + [aux_sym_else_fragment_token1] = ACTIONS(8756), + [aux_sym_select_statement_token1] = ACTIONS(8756), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8756), + [aux_sym_do_statement_token1] = ACTIONS(8756), + [aux_sym_do_statement_token2] = ACTIONS(8762), + [aux_sym_do_condition_token1] = ACTIONS(8756), + [aux_sym_with_statement_token1] = ACTIONS(8756), + [aux_sym_exit_statement_token1] = ACTIONS(8756), + [sym_end_statement] = ACTIONS(8759), + [aux_sym_on_goto_statement_token1] = ACTIONS(8756), + [aux_sym_on_goto_statement_token2] = ACTIONS(8756), + [aux_sym_on_error_statement_token2] = ACTIONS(8756), + [sym__ambiguous_redim_statement] = ACTIONS(8759), + [aux_sym_erase_statement_token1] = ACTIONS(8756), + [aux_sym_open_statement_token1] = ACTIONS(8756), + [aux_sym_file_mode_token2] = ACTIONS(8756), + [aux_sym_file_access_token2] = ACTIONS(8756), + [aux_sym_file_lock_token2] = ACTIONS(8756), + [aux_sym_print_statement_token1] = ACTIONS(8756), + [anon_sym_PLUS] = ACTIONS(8759), + [anon_sym_DASH] = ACTIONS(8756), + [anon_sym_QMARK] = ACTIONS(8759), + [aux_sym_close_statement_token1] = ACTIONS(8756), + [aux_sym_put_statement_token1] = ACTIONS(8756), + [aux_sym_unlock_statement_token1] = ACTIONS(8756), + [aux_sym_seek_statement_token1] = ACTIONS(8756), + [sym_reset_statement] = ACTIONS(8756), + [aux_sym_raise_event_statement_token1] = ACTIONS(8756), + [sym_stop_statement] = ACTIONS(8756), + [sym_beep_statement] = ACTIONS(8756), + [aux_sym_unload_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token2] = ACTIONS(8756), + [aux_sym_def_type_statement_token3] = ACTIONS(8756), + [aux_sym_def_type_statement_token4] = ACTIONS(8756), + [aux_sym_def_type_statement_token5] = ACTIONS(8756), + [aux_sym_def_type_statement_token6] = ACTIONS(8756), + [aux_sym_def_type_statement_token7] = ACTIONS(8756), + [aux_sym_def_type_statement_token8] = ACTIONS(8756), + [aux_sym_def_type_statement_token9] = ACTIONS(8756), + [aux_sym_def_type_statement_token10] = ACTIONS(8756), + [aux_sym_def_type_statement_token11] = ACTIONS(8756), + [aux_sym_def_type_statement_token12] = ACTIONS(8756), + [aux_sym_def_type_statement_token13] = ACTIONS(8756), + [aux_sym_def_type_statement_token14] = ACTIONS(8756), + [aux_sym_call_statement_token1] = ACTIONS(8756), + [sym__ambiguous_call_statement] = ACTIONS(8756), + [aux_sym_addressof_expression_token1] = ACTIONS(8756), + [aux_sym_type_of_expression_token1] = ACTIONS(8756), + [aux_sym_unary_expression_token1] = ACTIONS(8756), + [sym_string_literal] = ACTIONS(8759), + [sym_number_literal] = ACTIONS(8759), + [aux_sym_boolean_literal_token1] = ACTIONS(8756), + [aux_sym_boolean_literal_token2] = ACTIONS(8756), + [sym_nothing_literal] = ACTIONS(8756), + [sym_null_literal] = ACTIONS(8756), + [sym_empty_literal] = ACTIONS(8756), + [sym_date_literal] = ACTIONS(8759), + [anon_sym_POUND] = ACTIONS(8756), + }, + [STATE(5928)] = { + [sym_identifier] = ACTIONS(8357), + [sym_newline] = ACTIONS(8359), + [anon_sym_COLON] = ACTIONS(8359), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8357), + [aux_sym_frm_property_statement_token1] = ACTIONS(8357), + [anon_sym_DOT] = ACTIONS(8357), + [anon_sym_BANG] = ACTIONS(8359), + [aux_sym__attribute_identifier_token1] = ACTIONS(8357), + [aux_sym_option_statement_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8357), + [aux_sym_preprocessor_const_token1] = ACTIONS(8357), + [sym_static_modifier] = ACTIONS(8357), + [sym__dim_keyword] = ACTIONS(8357), + [sym__redim_keyword] = ACTIONS(8357), + [aux_sym_get_accessor_token1] = ACTIONS(8357), + [aux_sym_set_accessor_token1] = ACTIONS(8357), + [anon_sym_COMMA] = ACTIONS(8359), + [aux_sym_const_declaration_token1] = ACTIONS(8357), + [anon_sym_LPAREN] = ACTIONS(8359), + [aux_sym_as_type_clause_token2] = ACTIONS(8357), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8357), + [aux_sym_visibility_token1] = ACTIONS(8357), + [aux_sym_visibility_token2] = ACTIONS(8357), + [aux_sym_elseif_fragment_token1] = ACTIONS(8357), + [aux_sym_else_fragment_token1] = ACTIONS(8357), + [aux_sym_select_statement_token1] = ACTIONS(8357), + [aux_sym__for_header_token1] = ACTIONS(8357), + [aux_sym_do_statement_token1] = ACTIONS(8357), + [aux_sym_do_condition_token1] = ACTIONS(8357), + [aux_sym_while_statement_token1] = ACTIONS(8357), + [aux_sym_with_statement_token1] = ACTIONS(8357), + [aux_sym_exit_statement_token1] = ACTIONS(8357), + [sym_end_statement] = ACTIONS(8359), + [aux_sym_on_goto_statement_token1] = ACTIONS(8357), + [aux_sym_on_goto_statement_token2] = ACTIONS(8357), + [aux_sym_on_error_statement_token2] = ACTIONS(8357), + [sym__ambiguous_redim_statement] = ACTIONS(8359), + [aux_sym_erase_statement_token1] = ACTIONS(8357), + [aux_sym_open_statement_token1] = ACTIONS(8357), + [aux_sym_file_mode_token2] = ACTIONS(8357), + [aux_sym_file_access_token2] = ACTIONS(8357), + [aux_sym_file_lock_token2] = ACTIONS(8357), + [aux_sym_print_statement_token1] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_QMARK] = ACTIONS(8359), + [aux_sym_close_statement_token1] = ACTIONS(8357), + [aux_sym_put_statement_token1] = ACTIONS(8357), + [aux_sym_unlock_statement_token1] = ACTIONS(8357), + [aux_sym_seek_statement_token1] = ACTIONS(8357), + [sym_reset_statement] = ACTIONS(8357), + [aux_sym_raise_event_statement_token1] = ACTIONS(8357), + [sym_stop_statement] = ACTIONS(8357), + [sym_beep_statement] = ACTIONS(8357), + [aux_sym_unload_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token2] = ACTIONS(8357), + [aux_sym_def_type_statement_token3] = ACTIONS(8357), + [aux_sym_def_type_statement_token4] = ACTIONS(8357), + [aux_sym_def_type_statement_token5] = ACTIONS(8357), + [aux_sym_def_type_statement_token6] = ACTIONS(8357), + [aux_sym_def_type_statement_token7] = ACTIONS(8357), + [aux_sym_def_type_statement_token8] = ACTIONS(8357), + [aux_sym_def_type_statement_token9] = ACTIONS(8357), + [aux_sym_def_type_statement_token10] = ACTIONS(8357), + [aux_sym_def_type_statement_token11] = ACTIONS(8357), + [aux_sym_def_type_statement_token12] = ACTIONS(8357), + [aux_sym_def_type_statement_token13] = ACTIONS(8357), + [aux_sym_def_type_statement_token14] = ACTIONS(8357), + [aux_sym_call_statement_token1] = ACTIONS(8357), + [sym__ambiguous_call_statement] = ACTIONS(8357), + [aux_sym_addressof_expression_token1] = ACTIONS(8357), + [aux_sym_type_of_expression_token1] = ACTIONS(8357), + [aux_sym_unary_expression_token1] = ACTIONS(8357), + [sym_string_literal] = ACTIONS(8359), + [sym_number_literal] = ACTIONS(8359), + [aux_sym_boolean_literal_token1] = ACTIONS(8357), + [aux_sym_boolean_literal_token2] = ACTIONS(8357), + [sym_nothing_literal] = ACTIONS(8357), + [sym_null_literal] = ACTIONS(8357), + [sym_empty_literal] = ACTIONS(8357), + [sym_date_literal] = ACTIONS(8359), + [anon_sym_POUND] = ACTIONS(8357), + }, + [STATE(5929)] = { + [sym_argument_list] = STATE(6671), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7836), + [anon_sym_BANG] = ACTIONS(4034), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10897), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(5930)] = { + [sym_do_condition] = STATE(7232), + [sym_identifier] = ACTIONS(8491), + [sym_newline] = ACTIONS(8493), + [anon_sym_COLON] = ACTIONS(8493), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8491), + [aux_sym_frm_property_statement_token1] = ACTIONS(8491), + [anon_sym_DOT] = ACTIONS(8491), + [anon_sym_BANG] = ACTIONS(8493), + [aux_sym__attribute_identifier_token1] = ACTIONS(8491), + [aux_sym_option_statement_token3] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8491), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8491), + [aux_sym_preprocessor_const_token1] = ACTIONS(8491), + [sym_static_modifier] = ACTIONS(8491), + [sym__dim_keyword] = ACTIONS(8491), + [sym__redim_keyword] = ACTIONS(8491), + [aux_sym_get_accessor_token1] = ACTIONS(8491), + [aux_sym_set_accessor_token1] = ACTIONS(8491), + [aux_sym_const_declaration_token1] = ACTIONS(8491), + [anon_sym_LPAREN] = ACTIONS(8493), + [aux_sym_as_type_clause_token2] = ACTIONS(8491), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8491), + [aux_sym_visibility_token1] = ACTIONS(8491), + [aux_sym_visibility_token2] = ACTIONS(8491), + [aux_sym_elseif_fragment_token1] = ACTIONS(8491), + [aux_sym_else_fragment_token1] = ACTIONS(8491), + [aux_sym_select_statement_token1] = ACTIONS(8491), + [aux_sym__for_header_token1] = ACTIONS(8491), + [aux_sym_do_statement_token1] = ACTIONS(8491), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8491), + [aux_sym_exit_statement_token1] = ACTIONS(8491), + [sym_end_statement] = ACTIONS(8493), + [aux_sym_on_goto_statement_token1] = ACTIONS(8491), + [aux_sym_on_goto_statement_token2] = ACTIONS(8491), + [aux_sym_on_error_statement_token2] = ACTIONS(8491), + [sym__ambiguous_redim_statement] = ACTIONS(8493), + [aux_sym_erase_statement_token1] = ACTIONS(8491), + [aux_sym_open_statement_token1] = ACTIONS(8491), + [aux_sym_file_mode_token2] = ACTIONS(8491), + [aux_sym_file_access_token2] = ACTIONS(8491), + [aux_sym_file_lock_token2] = ACTIONS(8491), + [aux_sym_print_statement_token1] = ACTIONS(8491), + [anon_sym_PLUS] = ACTIONS(8493), + [anon_sym_DASH] = ACTIONS(8491), + [anon_sym_QMARK] = ACTIONS(8493), + [aux_sym_close_statement_token1] = ACTIONS(8491), + [aux_sym_put_statement_token1] = ACTIONS(8491), + [aux_sym_unlock_statement_token1] = ACTIONS(8491), + [aux_sym_seek_statement_token1] = ACTIONS(8491), + [sym_reset_statement] = ACTIONS(8491), + [aux_sym_raise_event_statement_token1] = ACTIONS(8491), + [sym_stop_statement] = ACTIONS(8491), + [sym_beep_statement] = ACTIONS(8491), + [aux_sym_unload_statement_token1] = ACTIONS(8491), + [aux_sym_def_type_statement_token1] = ACTIONS(8491), + [aux_sym_def_type_statement_token2] = ACTIONS(8491), + [aux_sym_def_type_statement_token3] = ACTIONS(8491), + [aux_sym_def_type_statement_token4] = ACTIONS(8491), + [aux_sym_def_type_statement_token5] = ACTIONS(8491), + [aux_sym_def_type_statement_token6] = ACTIONS(8491), + [aux_sym_def_type_statement_token7] = ACTIONS(8491), + [aux_sym_def_type_statement_token8] = ACTIONS(8491), + [aux_sym_def_type_statement_token9] = ACTIONS(8491), + [aux_sym_def_type_statement_token10] = ACTIONS(8491), + [aux_sym_def_type_statement_token11] = ACTIONS(8491), + [aux_sym_def_type_statement_token12] = ACTIONS(8491), + [aux_sym_def_type_statement_token13] = ACTIONS(8491), + [aux_sym_def_type_statement_token14] = ACTIONS(8491), + [aux_sym_call_statement_token1] = ACTIONS(8491), + [sym__ambiguous_call_statement] = ACTIONS(8491), + [aux_sym_addressof_expression_token1] = ACTIONS(8491), + [aux_sym_type_of_expression_token1] = ACTIONS(8491), + [aux_sym_unary_expression_token1] = ACTIONS(8491), + [sym_string_literal] = ACTIONS(8493), + [sym_number_literal] = ACTIONS(8493), + [aux_sym_boolean_literal_token1] = ACTIONS(8491), + [aux_sym_boolean_literal_token2] = ACTIONS(8491), + [sym_nothing_literal] = ACTIONS(8491), + [sym_null_literal] = ACTIONS(8491), + [sym_empty_literal] = ACTIONS(8491), + [sym_date_literal] = ACTIONS(8493), + [anon_sym_POUND] = ACTIONS(8491), + }, + [STATE(5931)] = { + [sym_identifier] = ACTIONS(8790), + [sym_newline] = ACTIONS(8792), + [anon_sym_COLON] = ACTIONS(8792), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8790), + [aux_sym_frm_property_statement_token1] = ACTIONS(8790), + [anon_sym_DOT] = ACTIONS(8790), + [anon_sym_BANG] = ACTIONS(8792), + [aux_sym__attribute_identifier_token1] = ACTIONS(8790), + [aux_sym_option_statement_token3] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8790), + [aux_sym_preprocessor_const_token1] = ACTIONS(8790), + [sym_static_modifier] = ACTIONS(8790), + [sym__dim_keyword] = ACTIONS(8790), + [sym__redim_keyword] = ACTIONS(8790), + [aux_sym_get_accessor_token1] = ACTIONS(8790), + [aux_sym_set_accessor_token1] = ACTIONS(8790), + [anon_sym_COMMA] = ACTIONS(8792), + [aux_sym_const_declaration_token1] = ACTIONS(8790), + [anon_sym_LPAREN] = ACTIONS(8792), + [aux_sym_as_type_clause_token2] = ACTIONS(8790), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8790), + [aux_sym_visibility_token1] = ACTIONS(8790), + [aux_sym_visibility_token2] = ACTIONS(8790), + [aux_sym_elseif_fragment_token1] = ACTIONS(8790), + [aux_sym_else_fragment_token1] = ACTIONS(8790), + [aux_sym_select_statement_token1] = ACTIONS(8790), + [aux_sym__for_header_token1] = ACTIONS(8790), + [aux_sym_do_statement_token1] = ACTIONS(8790), + [aux_sym_do_condition_token1] = ACTIONS(8790), + [aux_sym_with_statement_token1] = ACTIONS(8790), + [aux_sym_exit_statement_token1] = ACTIONS(8790), + [sym_end_statement] = ACTIONS(8792), + [aux_sym_on_goto_statement_token1] = ACTIONS(8790), + [aux_sym_on_goto_statement_token2] = ACTIONS(8790), + [aux_sym_on_error_statement_token2] = ACTIONS(8790), + [sym__ambiguous_redim_statement] = ACTIONS(8792), + [aux_sym_erase_statement_token1] = ACTIONS(8790), + [aux_sym_open_statement_token1] = ACTIONS(8790), + [aux_sym_file_mode_token2] = ACTIONS(8790), + [aux_sym_file_access_token2] = ACTIONS(8790), + [aux_sym_file_lock_token2] = ACTIONS(8790), + [aux_sym_print_statement_token1] = ACTIONS(8790), + [anon_sym_PLUS] = ACTIONS(8792), + [anon_sym_DASH] = ACTIONS(8790), + [anon_sym_QMARK] = ACTIONS(8792), + [aux_sym_close_statement_token1] = ACTIONS(8790), + [aux_sym_put_statement_token1] = ACTIONS(8790), + [aux_sym_unlock_statement_token1] = ACTIONS(8790), + [aux_sym_seek_statement_token1] = ACTIONS(8790), + [sym_reset_statement] = ACTIONS(8790), + [aux_sym_raise_event_statement_token1] = ACTIONS(8790), + [sym_stop_statement] = ACTIONS(8790), + [sym_beep_statement] = ACTIONS(8790), + [aux_sym_unload_statement_token1] = ACTIONS(8790), + [aux_sym_def_type_statement_token1] = ACTIONS(8790), + [aux_sym_def_type_statement_token2] = ACTIONS(8790), + [aux_sym_def_type_statement_token3] = ACTIONS(8790), + [aux_sym_def_type_statement_token4] = ACTIONS(8790), + [aux_sym_def_type_statement_token5] = ACTIONS(8790), + [aux_sym_def_type_statement_token6] = ACTIONS(8790), + [aux_sym_def_type_statement_token7] = ACTIONS(8790), + [aux_sym_def_type_statement_token8] = ACTIONS(8790), + [aux_sym_def_type_statement_token9] = ACTIONS(8790), + [aux_sym_def_type_statement_token10] = ACTIONS(8790), + [aux_sym_def_type_statement_token11] = ACTIONS(8790), + [aux_sym_def_type_statement_token12] = ACTIONS(8790), + [aux_sym_def_type_statement_token13] = ACTIONS(8790), + [aux_sym_def_type_statement_token14] = ACTIONS(8790), + [aux_sym_call_statement_token1] = ACTIONS(8790), + [sym__ambiguous_call_statement] = ACTIONS(8790), + [aux_sym_addressof_expression_token1] = ACTIONS(8790), + [aux_sym_type_of_expression_token1] = ACTIONS(8790), + [aux_sym_unary_expression_token1] = ACTIONS(8790), + [sym_string_literal] = ACTIONS(8792), + [sym_number_literal] = ACTIONS(8792), + [aux_sym_boolean_literal_token1] = ACTIONS(8790), + [aux_sym_boolean_literal_token2] = ACTIONS(8790), + [sym_nothing_literal] = ACTIONS(8790), + [sym_null_literal] = ACTIONS(8790), + [sym_empty_literal] = ACTIONS(8790), + [sym_date_literal] = ACTIONS(8792), + [anon_sym_POUND] = ACTIONS(8790), + }, + [STATE(5932)] = { + [sym_do_condition] = STATE(7204), + [sym_identifier] = ACTIONS(8501), + [sym_newline] = ACTIONS(8503), + [anon_sym_COLON] = ACTIONS(8503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8501), + [aux_sym_frm_property_statement_token1] = ACTIONS(8501), + [anon_sym_DOT] = ACTIONS(8501), + [anon_sym_BANG] = ACTIONS(8503), + [aux_sym__attribute_identifier_token1] = ACTIONS(8501), + [aux_sym_option_statement_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8501), + [aux_sym_preprocessor_const_token1] = ACTIONS(8501), + [sym_static_modifier] = ACTIONS(8501), + [sym__dim_keyword] = ACTIONS(8501), + [sym__redim_keyword] = ACTIONS(8501), + [aux_sym_get_accessor_token1] = ACTIONS(8501), + [aux_sym_set_accessor_token1] = ACTIONS(8501), + [aux_sym_const_declaration_token1] = ACTIONS(8501), + [anon_sym_LPAREN] = ACTIONS(8503), + [aux_sym_as_type_clause_token2] = ACTIONS(8501), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8501), + [aux_sym_visibility_token1] = ACTIONS(8501), + [aux_sym_visibility_token2] = ACTIONS(8501), + [aux_sym_elseif_fragment_token1] = ACTIONS(8501), + [aux_sym_else_fragment_token1] = ACTIONS(8501), + [aux_sym_select_statement_token1] = ACTIONS(8501), + [aux_sym__for_header_token1] = ACTIONS(8501), + [aux_sym_do_statement_token1] = ACTIONS(8501), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8501), + [aux_sym_exit_statement_token1] = ACTIONS(8501), + [sym_end_statement] = ACTIONS(8503), + [aux_sym_on_goto_statement_token1] = ACTIONS(8501), + [aux_sym_on_goto_statement_token2] = ACTIONS(8501), + [aux_sym_on_error_statement_token2] = ACTIONS(8501), + [sym__ambiguous_redim_statement] = ACTIONS(8503), + [aux_sym_erase_statement_token1] = ACTIONS(8501), + [aux_sym_open_statement_token1] = ACTIONS(8501), + [aux_sym_file_mode_token2] = ACTIONS(8501), + [aux_sym_file_access_token2] = ACTIONS(8501), + [aux_sym_file_lock_token2] = ACTIONS(8501), + [aux_sym_print_statement_token1] = ACTIONS(8501), + [anon_sym_PLUS] = ACTIONS(8503), + [anon_sym_DASH] = ACTIONS(8501), + [anon_sym_QMARK] = ACTIONS(8503), + [aux_sym_close_statement_token1] = ACTIONS(8501), + [aux_sym_put_statement_token1] = ACTIONS(8501), + [aux_sym_unlock_statement_token1] = ACTIONS(8501), + [aux_sym_seek_statement_token1] = ACTIONS(8501), + [sym_reset_statement] = ACTIONS(8501), + [aux_sym_raise_event_statement_token1] = ACTIONS(8501), + [sym_stop_statement] = ACTIONS(8501), + [sym_beep_statement] = ACTIONS(8501), + [aux_sym_unload_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token2] = ACTIONS(8501), + [aux_sym_def_type_statement_token3] = ACTIONS(8501), + [aux_sym_def_type_statement_token4] = ACTIONS(8501), + [aux_sym_def_type_statement_token5] = ACTIONS(8501), + [aux_sym_def_type_statement_token6] = ACTIONS(8501), + [aux_sym_def_type_statement_token7] = ACTIONS(8501), + [aux_sym_def_type_statement_token8] = ACTIONS(8501), + [aux_sym_def_type_statement_token9] = ACTIONS(8501), + [aux_sym_def_type_statement_token10] = ACTIONS(8501), + [aux_sym_def_type_statement_token11] = ACTIONS(8501), + [aux_sym_def_type_statement_token12] = ACTIONS(8501), + [aux_sym_def_type_statement_token13] = ACTIONS(8501), + [aux_sym_def_type_statement_token14] = ACTIONS(8501), + [aux_sym_call_statement_token1] = ACTIONS(8501), + [sym__ambiguous_call_statement] = ACTIONS(8501), + [aux_sym_addressof_expression_token1] = ACTIONS(8501), + [aux_sym_type_of_expression_token1] = ACTIONS(8501), + [aux_sym_unary_expression_token1] = ACTIONS(8501), + [sym_string_literal] = ACTIONS(8503), + [sym_number_literal] = ACTIONS(8503), + [aux_sym_boolean_literal_token1] = ACTIONS(8501), + [aux_sym_boolean_literal_token2] = ACTIONS(8501), + [sym_nothing_literal] = ACTIONS(8501), + [sym_null_literal] = ACTIONS(8501), + [sym_empty_literal] = ACTIONS(8501), + [sym_date_literal] = ACTIONS(8503), + [anon_sym_POUND] = ACTIONS(8501), + }, + [STATE(5933)] = { + [sym_do_condition] = STATE(7155), + [sym_identifier] = ACTIONS(8509), + [sym_newline] = ACTIONS(8511), + [anon_sym_COLON] = ACTIONS(8511), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8509), + [aux_sym_frm_property_statement_token1] = ACTIONS(8509), + [anon_sym_DOT] = ACTIONS(8509), + [anon_sym_BANG] = ACTIONS(8511), + [aux_sym__attribute_identifier_token1] = ACTIONS(8509), + [aux_sym_option_statement_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8509), + [aux_sym_preprocessor_const_token1] = ACTIONS(8509), + [sym_static_modifier] = ACTIONS(8509), + [sym__dim_keyword] = ACTIONS(8509), + [sym__redim_keyword] = ACTIONS(8509), + [aux_sym_get_accessor_token1] = ACTIONS(8509), + [aux_sym_set_accessor_token1] = ACTIONS(8509), + [aux_sym_const_declaration_token1] = ACTIONS(8509), + [anon_sym_LPAREN] = ACTIONS(8511), + [aux_sym_as_type_clause_token2] = ACTIONS(8509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8509), + [aux_sym_visibility_token1] = ACTIONS(8509), + [aux_sym_visibility_token2] = ACTIONS(8509), + [aux_sym_elseif_fragment_token1] = ACTIONS(8509), + [aux_sym_else_fragment_token1] = ACTIONS(8509), + [aux_sym_select_statement_token1] = ACTIONS(8509), + [aux_sym__for_header_token1] = ACTIONS(8509), + [aux_sym_do_statement_token1] = ACTIONS(8509), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8509), + [aux_sym_exit_statement_token1] = ACTIONS(8509), + [sym_end_statement] = ACTIONS(8511), + [aux_sym_on_goto_statement_token1] = ACTIONS(8509), + [aux_sym_on_goto_statement_token2] = ACTIONS(8509), + [aux_sym_on_error_statement_token2] = ACTIONS(8509), + [sym__ambiguous_redim_statement] = ACTIONS(8511), + [aux_sym_erase_statement_token1] = ACTIONS(8509), + [aux_sym_open_statement_token1] = ACTIONS(8509), + [aux_sym_file_mode_token2] = ACTIONS(8509), + [aux_sym_file_access_token2] = ACTIONS(8509), + [aux_sym_file_lock_token2] = ACTIONS(8509), + [aux_sym_print_statement_token1] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(8511), + [anon_sym_DASH] = ACTIONS(8509), + [anon_sym_QMARK] = ACTIONS(8511), + [aux_sym_close_statement_token1] = ACTIONS(8509), + [aux_sym_put_statement_token1] = ACTIONS(8509), + [aux_sym_unlock_statement_token1] = ACTIONS(8509), + [aux_sym_seek_statement_token1] = ACTIONS(8509), + [sym_reset_statement] = ACTIONS(8509), + [aux_sym_raise_event_statement_token1] = ACTIONS(8509), + [sym_stop_statement] = ACTIONS(8509), + [sym_beep_statement] = ACTIONS(8509), + [aux_sym_unload_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token2] = ACTIONS(8509), + [aux_sym_def_type_statement_token3] = ACTIONS(8509), + [aux_sym_def_type_statement_token4] = ACTIONS(8509), + [aux_sym_def_type_statement_token5] = ACTIONS(8509), + [aux_sym_def_type_statement_token6] = ACTIONS(8509), + [aux_sym_def_type_statement_token7] = ACTIONS(8509), + [aux_sym_def_type_statement_token8] = ACTIONS(8509), + [aux_sym_def_type_statement_token9] = ACTIONS(8509), + [aux_sym_def_type_statement_token10] = ACTIONS(8509), + [aux_sym_def_type_statement_token11] = ACTIONS(8509), + [aux_sym_def_type_statement_token12] = ACTIONS(8509), + [aux_sym_def_type_statement_token13] = ACTIONS(8509), + [aux_sym_def_type_statement_token14] = ACTIONS(8509), + [aux_sym_call_statement_token1] = ACTIONS(8509), + [sym__ambiguous_call_statement] = ACTIONS(8509), + [aux_sym_addressof_expression_token1] = ACTIONS(8509), + [aux_sym_type_of_expression_token1] = ACTIONS(8509), + [aux_sym_unary_expression_token1] = ACTIONS(8509), + [sym_string_literal] = ACTIONS(8511), + [sym_number_literal] = ACTIONS(8511), + [aux_sym_boolean_literal_token1] = ACTIONS(8509), + [aux_sym_boolean_literal_token2] = ACTIONS(8509), + [sym_nothing_literal] = ACTIONS(8509), + [sym_null_literal] = ACTIONS(8509), + [sym_empty_literal] = ACTIONS(8509), + [sym_date_literal] = ACTIONS(8511), + [anon_sym_POUND] = ACTIONS(8509), + }, + [STATE(5934)] = { + [sym_identifier] = ACTIONS(8805), + [sym_newline] = ACTIONS(8807), + [anon_sym_COLON] = ACTIONS(8807), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8805), + [aux_sym_frm_property_statement_token1] = ACTIONS(8805), + [anon_sym_DOT] = ACTIONS(8805), + [anon_sym_BANG] = ACTIONS(8807), + [aux_sym__attribute_identifier_token1] = ACTIONS(8805), + [aux_sym_option_statement_token3] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8805), + [aux_sym_preprocessor_const_token1] = ACTIONS(8805), + [sym_static_modifier] = ACTIONS(8805), + [sym__dim_keyword] = ACTIONS(8805), + [sym__redim_keyword] = ACTIONS(8805), + [aux_sym_get_accessor_token1] = ACTIONS(8805), + [aux_sym_set_accessor_token1] = ACTIONS(8805), + [anon_sym_COMMA] = ACTIONS(8807), + [aux_sym_const_declaration_token1] = ACTIONS(8805), + [anon_sym_LPAREN] = ACTIONS(8807), + [aux_sym_as_type_clause_token2] = ACTIONS(8805), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8805), + [aux_sym_visibility_token1] = ACTIONS(8805), + [aux_sym_visibility_token2] = ACTIONS(8805), + [aux_sym_elseif_fragment_token1] = ACTIONS(8805), + [aux_sym_else_fragment_token1] = ACTIONS(8805), + [aux_sym_select_statement_token1] = ACTIONS(8805), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8805), + [aux_sym__for_header_token1] = ACTIONS(8805), + [aux_sym_do_statement_token1] = ACTIONS(8805), + [aux_sym_do_condition_token1] = ACTIONS(8805), + [aux_sym_with_statement_token1] = ACTIONS(8805), + [aux_sym_exit_statement_token1] = ACTIONS(8805), + [sym_end_statement] = ACTIONS(8807), + [aux_sym_on_goto_statement_token1] = ACTIONS(8805), + [aux_sym_on_goto_statement_token2] = ACTIONS(8805), + [aux_sym_on_error_statement_token2] = ACTIONS(8805), + [sym__ambiguous_redim_statement] = ACTIONS(8807), + [aux_sym_erase_statement_token1] = ACTIONS(8805), + [aux_sym_open_statement_token1] = ACTIONS(8805), + [aux_sym_file_mode_token2] = ACTIONS(8805), + [aux_sym_file_access_token2] = ACTIONS(8805), + [aux_sym_file_lock_token2] = ACTIONS(8805), + [aux_sym_print_statement_token1] = ACTIONS(8805), + [anon_sym_PLUS] = ACTIONS(8807), + [anon_sym_DASH] = ACTIONS(8805), + [anon_sym_QMARK] = ACTIONS(8807), + [aux_sym_close_statement_token1] = ACTIONS(8805), + [aux_sym_put_statement_token1] = ACTIONS(8805), + [aux_sym_unlock_statement_token1] = ACTIONS(8805), + [aux_sym_seek_statement_token1] = ACTIONS(8805), + [sym_reset_statement] = ACTIONS(8805), + [aux_sym_raise_event_statement_token1] = ACTIONS(8805), + [sym_stop_statement] = ACTIONS(8805), + [sym_beep_statement] = ACTIONS(8805), + [aux_sym_unload_statement_token1] = ACTIONS(8805), + [aux_sym_def_type_statement_token1] = ACTIONS(8805), + [aux_sym_def_type_statement_token2] = ACTIONS(8805), + [aux_sym_def_type_statement_token3] = ACTIONS(8805), + [aux_sym_def_type_statement_token4] = ACTIONS(8805), + [aux_sym_def_type_statement_token5] = ACTIONS(8805), + [aux_sym_def_type_statement_token6] = ACTIONS(8805), + [aux_sym_def_type_statement_token7] = ACTIONS(8805), + [aux_sym_def_type_statement_token8] = ACTIONS(8805), + [aux_sym_def_type_statement_token9] = ACTIONS(8805), + [aux_sym_def_type_statement_token10] = ACTIONS(8805), + [aux_sym_def_type_statement_token11] = ACTIONS(8805), + [aux_sym_def_type_statement_token12] = ACTIONS(8805), + [aux_sym_def_type_statement_token13] = ACTIONS(8805), + [aux_sym_def_type_statement_token14] = ACTIONS(8805), + [aux_sym_call_statement_token1] = ACTIONS(8805), + [sym__ambiguous_call_statement] = ACTIONS(8805), + [aux_sym_addressof_expression_token1] = ACTIONS(8805), + [aux_sym_type_of_expression_token1] = ACTIONS(8805), + [aux_sym_unary_expression_token1] = ACTIONS(8805), + [sym_string_literal] = ACTIONS(8807), + [sym_number_literal] = ACTIONS(8807), + [aux_sym_boolean_literal_token1] = ACTIONS(8805), + [aux_sym_boolean_literal_token2] = ACTIONS(8805), + [sym_nothing_literal] = ACTIONS(8805), + [sym_null_literal] = ACTIONS(8805), + [sym_empty_literal] = ACTIONS(8805), + [sym_date_literal] = ACTIONS(8807), + [anon_sym_POUND] = ACTIONS(8805), + }, + [STATE(5935)] = { + [sym_identifier] = ACTIONS(8357), + [sym_newline] = ACTIONS(8359), + [anon_sym_COLON] = ACTIONS(8359), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8357), + [aux_sym_frm_property_statement_token1] = ACTIONS(8357), + [anon_sym_DOT] = ACTIONS(8357), + [anon_sym_BANG] = ACTIONS(8359), + [aux_sym__attribute_identifier_token1] = ACTIONS(8357), + [aux_sym_option_statement_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8357), + [aux_sym_preprocessor_const_token1] = ACTIONS(8357), + [sym_static_modifier] = ACTIONS(8357), + [sym__dim_keyword] = ACTIONS(8357), + [sym__redim_keyword] = ACTIONS(8357), + [aux_sym_get_accessor_token1] = ACTIONS(8357), + [aux_sym_set_accessor_token1] = ACTIONS(8357), + [anon_sym_COMMA] = ACTIONS(8359), + [aux_sym_const_declaration_token1] = ACTIONS(8357), + [anon_sym_LPAREN] = ACTIONS(8359), + [aux_sym_as_type_clause_token2] = ACTIONS(8357), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8357), + [aux_sym_visibility_token1] = ACTIONS(8357), + [aux_sym_visibility_token2] = ACTIONS(8357), + [aux_sym_elseif_fragment_token1] = ACTIONS(8357), + [aux_sym_else_fragment_token1] = ACTIONS(8357), + [aux_sym_select_statement_token1] = ACTIONS(8357), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8357), + [aux_sym__for_header_token1] = ACTIONS(8357), + [aux_sym_do_statement_token1] = ACTIONS(8357), + [aux_sym_do_condition_token1] = ACTIONS(8357), + [aux_sym_with_statement_token1] = ACTIONS(8357), + [aux_sym_exit_statement_token1] = ACTIONS(8357), + [sym_end_statement] = ACTIONS(8359), + [aux_sym_on_goto_statement_token1] = ACTIONS(8357), + [aux_sym_on_goto_statement_token2] = ACTIONS(8357), + [aux_sym_on_error_statement_token2] = ACTIONS(8357), + [sym__ambiguous_redim_statement] = ACTIONS(8359), + [aux_sym_erase_statement_token1] = ACTIONS(8357), + [aux_sym_open_statement_token1] = ACTIONS(8357), + [aux_sym_file_mode_token2] = ACTIONS(8357), + [aux_sym_file_access_token2] = ACTIONS(8357), + [aux_sym_file_lock_token2] = ACTIONS(8357), + [aux_sym_print_statement_token1] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_QMARK] = ACTIONS(8359), + [aux_sym_close_statement_token1] = ACTIONS(8357), + [aux_sym_put_statement_token1] = ACTIONS(8357), + [aux_sym_unlock_statement_token1] = ACTIONS(8357), + [aux_sym_seek_statement_token1] = ACTIONS(8357), + [sym_reset_statement] = ACTIONS(8357), + [aux_sym_raise_event_statement_token1] = ACTIONS(8357), + [sym_stop_statement] = ACTIONS(8357), + [sym_beep_statement] = ACTIONS(8357), + [aux_sym_unload_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token2] = ACTIONS(8357), + [aux_sym_def_type_statement_token3] = ACTIONS(8357), + [aux_sym_def_type_statement_token4] = ACTIONS(8357), + [aux_sym_def_type_statement_token5] = ACTIONS(8357), + [aux_sym_def_type_statement_token6] = ACTIONS(8357), + [aux_sym_def_type_statement_token7] = ACTIONS(8357), + [aux_sym_def_type_statement_token8] = ACTIONS(8357), + [aux_sym_def_type_statement_token9] = ACTIONS(8357), + [aux_sym_def_type_statement_token10] = ACTIONS(8357), + [aux_sym_def_type_statement_token11] = ACTIONS(8357), + [aux_sym_def_type_statement_token12] = ACTIONS(8357), + [aux_sym_def_type_statement_token13] = ACTIONS(8357), + [aux_sym_def_type_statement_token14] = ACTIONS(8357), + [aux_sym_call_statement_token1] = ACTIONS(8357), + [sym__ambiguous_call_statement] = ACTIONS(8357), + [aux_sym_addressof_expression_token1] = ACTIONS(8357), + [aux_sym_type_of_expression_token1] = ACTIONS(8357), + [aux_sym_unary_expression_token1] = ACTIONS(8357), + [sym_string_literal] = ACTIONS(8359), + [sym_number_literal] = ACTIONS(8359), + [aux_sym_boolean_literal_token1] = ACTIONS(8357), + [aux_sym_boolean_literal_token2] = ACTIONS(8357), + [sym_nothing_literal] = ACTIONS(8357), + [sym_null_literal] = ACTIONS(8357), + [sym_empty_literal] = ACTIONS(8357), + [sym_date_literal] = ACTIONS(8359), + [anon_sym_POUND] = ACTIONS(8357), + }, + [STATE(5936)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym_select_statement_token2] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(5937)] = { + [sym_do_condition] = STATE(7163), + [sym_identifier] = ACTIONS(8513), + [sym_newline] = ACTIONS(8515), + [anon_sym_COLON] = ACTIONS(8515), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8513), + [aux_sym_frm_property_statement_token1] = ACTIONS(8513), + [anon_sym_DOT] = ACTIONS(8513), + [anon_sym_BANG] = ACTIONS(8515), + [aux_sym__attribute_identifier_token1] = ACTIONS(8513), + [aux_sym_option_statement_token3] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8513), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8513), + [aux_sym_preprocessor_const_token1] = ACTIONS(8513), + [sym_static_modifier] = ACTIONS(8513), + [sym__dim_keyword] = ACTIONS(8513), + [sym__redim_keyword] = ACTIONS(8513), + [aux_sym_get_accessor_token1] = ACTIONS(8513), + [aux_sym_set_accessor_token1] = ACTIONS(8513), + [aux_sym_const_declaration_token1] = ACTIONS(8513), + [anon_sym_LPAREN] = ACTIONS(8515), + [aux_sym_as_type_clause_token2] = ACTIONS(8513), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8513), + [aux_sym_visibility_token1] = ACTIONS(8513), + [aux_sym_visibility_token2] = ACTIONS(8513), + [aux_sym_elseif_fragment_token1] = ACTIONS(8513), + [aux_sym_else_fragment_token1] = ACTIONS(8513), + [aux_sym_select_statement_token1] = ACTIONS(8513), + [aux_sym__for_header_token1] = ACTIONS(8513), + [aux_sym_do_statement_token1] = ACTIONS(8513), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8513), + [aux_sym_exit_statement_token1] = ACTIONS(8513), + [sym_end_statement] = ACTIONS(8515), + [aux_sym_on_goto_statement_token1] = ACTIONS(8513), + [aux_sym_on_goto_statement_token2] = ACTIONS(8513), + [aux_sym_on_error_statement_token2] = ACTIONS(8513), + [sym__ambiguous_redim_statement] = ACTIONS(8515), + [aux_sym_erase_statement_token1] = ACTIONS(8513), + [aux_sym_open_statement_token1] = ACTIONS(8513), + [aux_sym_file_mode_token2] = ACTIONS(8513), + [aux_sym_file_access_token2] = ACTIONS(8513), + [aux_sym_file_lock_token2] = ACTIONS(8513), + [aux_sym_print_statement_token1] = ACTIONS(8513), + [anon_sym_PLUS] = ACTIONS(8515), + [anon_sym_DASH] = ACTIONS(8513), + [anon_sym_QMARK] = ACTIONS(8515), + [aux_sym_close_statement_token1] = ACTIONS(8513), + [aux_sym_put_statement_token1] = ACTIONS(8513), + [aux_sym_unlock_statement_token1] = ACTIONS(8513), + [aux_sym_seek_statement_token1] = ACTIONS(8513), + [sym_reset_statement] = ACTIONS(8513), + [aux_sym_raise_event_statement_token1] = ACTIONS(8513), + [sym_stop_statement] = ACTIONS(8513), + [sym_beep_statement] = ACTIONS(8513), + [aux_sym_unload_statement_token1] = ACTIONS(8513), + [aux_sym_def_type_statement_token1] = ACTIONS(8513), + [aux_sym_def_type_statement_token2] = ACTIONS(8513), + [aux_sym_def_type_statement_token3] = ACTIONS(8513), + [aux_sym_def_type_statement_token4] = ACTIONS(8513), + [aux_sym_def_type_statement_token5] = ACTIONS(8513), + [aux_sym_def_type_statement_token6] = ACTIONS(8513), + [aux_sym_def_type_statement_token7] = ACTIONS(8513), + [aux_sym_def_type_statement_token8] = ACTIONS(8513), + [aux_sym_def_type_statement_token9] = ACTIONS(8513), + [aux_sym_def_type_statement_token10] = ACTIONS(8513), + [aux_sym_def_type_statement_token11] = ACTIONS(8513), + [aux_sym_def_type_statement_token12] = ACTIONS(8513), + [aux_sym_def_type_statement_token13] = ACTIONS(8513), + [aux_sym_def_type_statement_token14] = ACTIONS(8513), + [aux_sym_call_statement_token1] = ACTIONS(8513), + [sym__ambiguous_call_statement] = ACTIONS(8513), + [aux_sym_addressof_expression_token1] = ACTIONS(8513), + [aux_sym_type_of_expression_token1] = ACTIONS(8513), + [aux_sym_unary_expression_token1] = ACTIONS(8513), + [sym_string_literal] = ACTIONS(8515), + [sym_number_literal] = ACTIONS(8515), + [aux_sym_boolean_literal_token1] = ACTIONS(8513), + [aux_sym_boolean_literal_token2] = ACTIONS(8513), + [sym_nothing_literal] = ACTIONS(8513), + [sym_null_literal] = ACTIONS(8513), + [sym_empty_literal] = ACTIONS(8513), + [sym_date_literal] = ACTIONS(8515), + [anon_sym_POUND] = ACTIONS(8513), + }, + [STATE(5938)] = { + [sym_do_condition] = STATE(7138), + [sym_identifier] = ACTIONS(8517), + [sym_newline] = ACTIONS(8519), + [anon_sym_COLON] = ACTIONS(8519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8517), + [aux_sym_frm_property_statement_token1] = ACTIONS(8517), + [anon_sym_DOT] = ACTIONS(8517), + [anon_sym_BANG] = ACTIONS(8519), + [aux_sym__attribute_identifier_token1] = ACTIONS(8517), + [aux_sym_option_statement_token3] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8517), + [aux_sym_preprocessor_const_token1] = ACTIONS(8517), + [sym_static_modifier] = ACTIONS(8517), + [sym__dim_keyword] = ACTIONS(8517), + [sym__redim_keyword] = ACTIONS(8517), + [aux_sym_get_accessor_token1] = ACTIONS(8517), + [aux_sym_set_accessor_token1] = ACTIONS(8517), + [aux_sym_const_declaration_token1] = ACTIONS(8517), + [anon_sym_LPAREN] = ACTIONS(8519), + [aux_sym_as_type_clause_token2] = ACTIONS(8517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8517), + [aux_sym_visibility_token1] = ACTIONS(8517), + [aux_sym_visibility_token2] = ACTIONS(8517), + [aux_sym_elseif_fragment_token1] = ACTIONS(8517), + [aux_sym_else_fragment_token1] = ACTIONS(8517), + [aux_sym_select_statement_token1] = ACTIONS(8517), + [aux_sym__for_header_token1] = ACTIONS(8517), + [aux_sym_do_statement_token1] = ACTIONS(8517), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8517), + [aux_sym_exit_statement_token1] = ACTIONS(8517), + [sym_end_statement] = ACTIONS(8519), + [aux_sym_on_goto_statement_token1] = ACTIONS(8517), + [aux_sym_on_goto_statement_token2] = ACTIONS(8517), + [aux_sym_on_error_statement_token2] = ACTIONS(8517), + [sym__ambiguous_redim_statement] = ACTIONS(8519), + [aux_sym_erase_statement_token1] = ACTIONS(8517), + [aux_sym_open_statement_token1] = ACTIONS(8517), + [aux_sym_file_mode_token2] = ACTIONS(8517), + [aux_sym_file_access_token2] = ACTIONS(8517), + [aux_sym_file_lock_token2] = ACTIONS(8517), + [aux_sym_print_statement_token1] = ACTIONS(8517), + [anon_sym_PLUS] = ACTIONS(8519), + [anon_sym_DASH] = ACTIONS(8517), + [anon_sym_QMARK] = ACTIONS(8519), + [aux_sym_close_statement_token1] = ACTIONS(8517), + [aux_sym_put_statement_token1] = ACTIONS(8517), + [aux_sym_unlock_statement_token1] = ACTIONS(8517), + [aux_sym_seek_statement_token1] = ACTIONS(8517), + [sym_reset_statement] = ACTIONS(8517), + [aux_sym_raise_event_statement_token1] = ACTIONS(8517), + [sym_stop_statement] = ACTIONS(8517), + [sym_beep_statement] = ACTIONS(8517), + [aux_sym_unload_statement_token1] = ACTIONS(8517), + [aux_sym_def_type_statement_token1] = ACTIONS(8517), + [aux_sym_def_type_statement_token2] = ACTIONS(8517), + [aux_sym_def_type_statement_token3] = ACTIONS(8517), + [aux_sym_def_type_statement_token4] = ACTIONS(8517), + [aux_sym_def_type_statement_token5] = ACTIONS(8517), + [aux_sym_def_type_statement_token6] = ACTIONS(8517), + [aux_sym_def_type_statement_token7] = ACTIONS(8517), + [aux_sym_def_type_statement_token8] = ACTIONS(8517), + [aux_sym_def_type_statement_token9] = ACTIONS(8517), + [aux_sym_def_type_statement_token10] = ACTIONS(8517), + [aux_sym_def_type_statement_token11] = ACTIONS(8517), + [aux_sym_def_type_statement_token12] = ACTIONS(8517), + [aux_sym_def_type_statement_token13] = ACTIONS(8517), + [aux_sym_def_type_statement_token14] = ACTIONS(8517), + [aux_sym_call_statement_token1] = ACTIONS(8517), + [sym__ambiguous_call_statement] = ACTIONS(8517), + [aux_sym_addressof_expression_token1] = ACTIONS(8517), + [aux_sym_type_of_expression_token1] = ACTIONS(8517), + [aux_sym_unary_expression_token1] = ACTIONS(8517), + [sym_string_literal] = ACTIONS(8519), + [sym_number_literal] = ACTIONS(8519), + [aux_sym_boolean_literal_token1] = ACTIONS(8517), + [aux_sym_boolean_literal_token2] = ACTIONS(8517), + [sym_nothing_literal] = ACTIONS(8517), + [sym_null_literal] = ACTIONS(8517), + [sym_empty_literal] = ACTIONS(8517), + [sym_date_literal] = ACTIONS(8519), + [anon_sym_POUND] = ACTIONS(8517), + }, + [STATE(5939)] = { + [sym_identifier] = ACTIONS(8443), + [sym_newline] = ACTIONS(8445), + [anon_sym_COLON] = ACTIONS(8445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8443), + [aux_sym_frm_property_statement_token1] = ACTIONS(8443), + [anon_sym_DOT] = ACTIONS(8443), + [anon_sym_BANG] = ACTIONS(8445), + [aux_sym__attribute_identifier_token1] = ACTIONS(8443), + [aux_sym_option_statement_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8443), + [aux_sym_preprocessor_const_token1] = ACTIONS(8443), + [sym_static_modifier] = ACTIONS(8443), + [sym__dim_keyword] = ACTIONS(8443), + [sym__redim_keyword] = ACTIONS(8443), + [aux_sym_get_accessor_token1] = ACTIONS(8443), + [aux_sym_set_accessor_token1] = ACTIONS(8443), + [anon_sym_COMMA] = ACTIONS(8445), + [aux_sym_const_declaration_token1] = ACTIONS(8443), + [anon_sym_LPAREN] = ACTIONS(8445), + [aux_sym_as_type_clause_token2] = ACTIONS(8443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8443), + [aux_sym_visibility_token1] = ACTIONS(8443), + [aux_sym_visibility_token2] = ACTIONS(8443), + [aux_sym_elseif_fragment_token1] = ACTIONS(8443), + [aux_sym_else_fragment_token1] = ACTIONS(8443), + [aux_sym_select_statement_token1] = ACTIONS(8443), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8443), + [aux_sym__for_header_token1] = ACTIONS(8443), + [aux_sym_do_statement_token1] = ACTIONS(8443), + [aux_sym_do_condition_token1] = ACTIONS(8443), + [aux_sym_with_statement_token1] = ACTIONS(8443), + [aux_sym_exit_statement_token1] = ACTIONS(8443), + [sym_end_statement] = ACTIONS(8445), + [aux_sym_on_goto_statement_token1] = ACTIONS(8443), + [aux_sym_on_goto_statement_token2] = ACTIONS(8443), + [aux_sym_on_error_statement_token2] = ACTIONS(8443), + [sym__ambiguous_redim_statement] = ACTIONS(8445), + [aux_sym_erase_statement_token1] = ACTIONS(8443), + [aux_sym_open_statement_token1] = ACTIONS(8443), + [aux_sym_file_mode_token2] = ACTIONS(8443), + [aux_sym_file_access_token2] = ACTIONS(8443), + [aux_sym_file_lock_token2] = ACTIONS(8443), + [aux_sym_print_statement_token1] = ACTIONS(8443), + [anon_sym_PLUS] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8443), + [anon_sym_QMARK] = ACTIONS(8445), + [aux_sym_close_statement_token1] = ACTIONS(8443), + [aux_sym_put_statement_token1] = ACTIONS(8443), + [aux_sym_unlock_statement_token1] = ACTIONS(8443), + [aux_sym_seek_statement_token1] = ACTIONS(8443), + [sym_reset_statement] = ACTIONS(8443), + [aux_sym_raise_event_statement_token1] = ACTIONS(8443), + [sym_stop_statement] = ACTIONS(8443), + [sym_beep_statement] = ACTIONS(8443), + [aux_sym_unload_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token2] = ACTIONS(8443), + [aux_sym_def_type_statement_token3] = ACTIONS(8443), + [aux_sym_def_type_statement_token4] = ACTIONS(8443), + [aux_sym_def_type_statement_token5] = ACTIONS(8443), + [aux_sym_def_type_statement_token6] = ACTIONS(8443), + [aux_sym_def_type_statement_token7] = ACTIONS(8443), + [aux_sym_def_type_statement_token8] = ACTIONS(8443), + [aux_sym_def_type_statement_token9] = ACTIONS(8443), + [aux_sym_def_type_statement_token10] = ACTIONS(8443), + [aux_sym_def_type_statement_token11] = ACTIONS(8443), + [aux_sym_def_type_statement_token12] = ACTIONS(8443), + [aux_sym_def_type_statement_token13] = ACTIONS(8443), + [aux_sym_def_type_statement_token14] = ACTIONS(8443), + [aux_sym_call_statement_token1] = ACTIONS(8443), + [sym__ambiguous_call_statement] = ACTIONS(8443), + [aux_sym_addressof_expression_token1] = ACTIONS(8443), + [aux_sym_type_of_expression_token1] = ACTIONS(8443), + [aux_sym_unary_expression_token1] = ACTIONS(8443), + [sym_string_literal] = ACTIONS(8445), + [sym_number_literal] = ACTIONS(8445), + [aux_sym_boolean_literal_token1] = ACTIONS(8443), + [aux_sym_boolean_literal_token2] = ACTIONS(8443), + [sym_nothing_literal] = ACTIONS(8443), + [sym_null_literal] = ACTIONS(8443), + [sym_empty_literal] = ACTIONS(8443), + [sym_date_literal] = ACTIONS(8445), + [anon_sym_POUND] = ACTIONS(8443), + }, + [STATE(5940)] = { + [sym_identifier] = ACTIONS(8931), + [sym_newline] = ACTIONS(8933), + [anon_sym_COLON] = ACTIONS(8933), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8931), + [aux_sym_frm_property_statement_token1] = ACTIONS(8931), + [anon_sym_DOT] = ACTIONS(8931), + [anon_sym_BANG] = ACTIONS(8933), + [aux_sym__attribute_identifier_token1] = ACTIONS(8931), + [aux_sym_option_statement_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8931), + [aux_sym_preprocessor_const_token1] = ACTIONS(8931), + [sym_static_modifier] = ACTIONS(8931), + [sym__dim_keyword] = ACTIONS(8931), + [sym__redim_keyword] = ACTIONS(8931), + [aux_sym_get_accessor_token1] = ACTIONS(8931), + [aux_sym_set_accessor_token1] = ACTIONS(8931), + [aux_sym_const_declaration_token1] = ACTIONS(8931), + [anon_sym_LPAREN] = ACTIONS(8933), + [aux_sym_as_type_clause_token2] = ACTIONS(8931), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8931), + [aux_sym_visibility_token1] = ACTIONS(8931), + [aux_sym_visibility_token2] = ACTIONS(8931), + [aux_sym_elseif_fragment_token1] = ACTIONS(8931), + [aux_sym_else_fragment_token1] = ACTIONS(8931), + [aux_sym_select_statement_token1] = ACTIONS(8931), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8931), + [aux_sym__for_header_token1] = ACTIONS(8931), + [aux_sym_do_statement_token1] = ACTIONS(8931), + [aux_sym_do_statement_token2] = ACTIONS(8931), + [aux_sym_do_condition_token1] = ACTIONS(8931), + [aux_sym_with_statement_token1] = ACTIONS(8931), + [aux_sym_exit_statement_token1] = ACTIONS(8931), + [sym_end_statement] = ACTIONS(8933), + [aux_sym_on_goto_statement_token1] = ACTIONS(8931), + [aux_sym_on_goto_statement_token2] = ACTIONS(8931), + [aux_sym_on_error_statement_token2] = ACTIONS(8931), + [sym__ambiguous_redim_statement] = ACTIONS(8933), + [aux_sym_erase_statement_token1] = ACTIONS(8931), + [aux_sym_open_statement_token1] = ACTIONS(8931), + [aux_sym_file_mode_token2] = ACTIONS(8931), + [aux_sym_file_access_token2] = ACTIONS(8931), + [aux_sym_file_lock_token2] = ACTIONS(8931), + [aux_sym_print_statement_token1] = ACTIONS(8931), + [anon_sym_PLUS] = ACTIONS(8933), + [anon_sym_DASH] = ACTIONS(8931), + [anon_sym_QMARK] = ACTIONS(8933), + [aux_sym_close_statement_token1] = ACTIONS(8931), + [aux_sym_put_statement_token1] = ACTIONS(8931), + [aux_sym_unlock_statement_token1] = ACTIONS(8931), + [aux_sym_seek_statement_token1] = ACTIONS(8931), + [sym_reset_statement] = ACTIONS(8931), + [aux_sym_raise_event_statement_token1] = ACTIONS(8931), + [sym_stop_statement] = ACTIONS(8931), + [sym_beep_statement] = ACTIONS(8931), + [aux_sym_unload_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token2] = ACTIONS(8931), + [aux_sym_def_type_statement_token3] = ACTIONS(8931), + [aux_sym_def_type_statement_token4] = ACTIONS(8931), + [aux_sym_def_type_statement_token5] = ACTIONS(8931), + [aux_sym_def_type_statement_token6] = ACTIONS(8931), + [aux_sym_def_type_statement_token7] = ACTIONS(8931), + [aux_sym_def_type_statement_token8] = ACTIONS(8931), + [aux_sym_def_type_statement_token9] = ACTIONS(8931), + [aux_sym_def_type_statement_token10] = ACTIONS(8931), + [aux_sym_def_type_statement_token11] = ACTIONS(8931), + [aux_sym_def_type_statement_token12] = ACTIONS(8931), + [aux_sym_def_type_statement_token13] = ACTIONS(8931), + [aux_sym_def_type_statement_token14] = ACTIONS(8931), + [aux_sym_call_statement_token1] = ACTIONS(8931), + [sym__ambiguous_call_statement] = ACTIONS(8931), + [aux_sym_addressof_expression_token1] = ACTIONS(8931), + [aux_sym_type_of_expression_token1] = ACTIONS(8931), + [aux_sym_unary_expression_token1] = ACTIONS(8931), + [sym_string_literal] = ACTIONS(8933), + [sym_number_literal] = ACTIONS(8933), + [aux_sym_boolean_literal_token1] = ACTIONS(8931), + [aux_sym_boolean_literal_token2] = ACTIONS(8931), + [sym_nothing_literal] = ACTIONS(8931), + [sym_null_literal] = ACTIONS(8931), + [sym_empty_literal] = ACTIONS(8931), + [sym_date_literal] = ACTIONS(8933), + [anon_sym_POUND] = ACTIONS(8931), + }, + [STATE(5941)] = { + [sym_do_condition] = STATE(7202), + [sym_identifier] = ACTIONS(8595), + [sym_newline] = ACTIONS(8597), + [anon_sym_COLON] = ACTIONS(8597), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8595), + [aux_sym_frm_property_statement_token1] = ACTIONS(8595), + [anon_sym_DOT] = ACTIONS(8595), + [anon_sym_BANG] = ACTIONS(8597), + [aux_sym__attribute_identifier_token1] = ACTIONS(8595), + [aux_sym_option_statement_token3] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8595), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8595), + [aux_sym_preprocessor_const_token1] = ACTIONS(8595), + [sym_static_modifier] = ACTIONS(8595), + [sym__dim_keyword] = ACTIONS(8595), + [sym__redim_keyword] = ACTIONS(8595), + [aux_sym_get_accessor_token1] = ACTIONS(8595), + [aux_sym_set_accessor_token1] = ACTIONS(8595), + [aux_sym_const_declaration_token1] = ACTIONS(8595), + [anon_sym_LPAREN] = ACTIONS(8597), + [aux_sym_as_type_clause_token2] = ACTIONS(8595), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8595), + [aux_sym_visibility_token1] = ACTIONS(8595), + [aux_sym_visibility_token2] = ACTIONS(8595), + [aux_sym_elseif_fragment_token1] = ACTIONS(8595), + [aux_sym_else_fragment_token1] = ACTIONS(8595), + [aux_sym_select_statement_token1] = ACTIONS(8595), + [aux_sym__for_header_token1] = ACTIONS(8595), + [aux_sym_do_statement_token1] = ACTIONS(8595), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8595), + [aux_sym_exit_statement_token1] = ACTIONS(8595), + [sym_end_statement] = ACTIONS(8597), + [aux_sym_on_goto_statement_token1] = ACTIONS(8595), + [aux_sym_on_goto_statement_token2] = ACTIONS(8595), + [aux_sym_on_error_statement_token2] = ACTIONS(8595), + [sym__ambiguous_redim_statement] = ACTIONS(8597), + [aux_sym_erase_statement_token1] = ACTIONS(8595), + [aux_sym_open_statement_token1] = ACTIONS(8595), + [aux_sym_file_mode_token2] = ACTIONS(8595), + [aux_sym_file_access_token2] = ACTIONS(8595), + [aux_sym_file_lock_token2] = ACTIONS(8595), + [aux_sym_print_statement_token1] = ACTIONS(8595), + [anon_sym_PLUS] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(8595), + [anon_sym_QMARK] = ACTIONS(8597), + [aux_sym_close_statement_token1] = ACTIONS(8595), + [aux_sym_put_statement_token1] = ACTIONS(8595), + [aux_sym_unlock_statement_token1] = ACTIONS(8595), + [aux_sym_seek_statement_token1] = ACTIONS(8595), + [sym_reset_statement] = ACTIONS(8595), + [aux_sym_raise_event_statement_token1] = ACTIONS(8595), + [sym_stop_statement] = ACTIONS(8595), + [sym_beep_statement] = ACTIONS(8595), + [aux_sym_unload_statement_token1] = ACTIONS(8595), + [aux_sym_def_type_statement_token1] = ACTIONS(8595), + [aux_sym_def_type_statement_token2] = ACTIONS(8595), + [aux_sym_def_type_statement_token3] = ACTIONS(8595), + [aux_sym_def_type_statement_token4] = ACTIONS(8595), + [aux_sym_def_type_statement_token5] = ACTIONS(8595), + [aux_sym_def_type_statement_token6] = ACTIONS(8595), + [aux_sym_def_type_statement_token7] = ACTIONS(8595), + [aux_sym_def_type_statement_token8] = ACTIONS(8595), + [aux_sym_def_type_statement_token9] = ACTIONS(8595), + [aux_sym_def_type_statement_token10] = ACTIONS(8595), + [aux_sym_def_type_statement_token11] = ACTIONS(8595), + [aux_sym_def_type_statement_token12] = ACTIONS(8595), + [aux_sym_def_type_statement_token13] = ACTIONS(8595), + [aux_sym_def_type_statement_token14] = ACTIONS(8595), + [aux_sym_call_statement_token1] = ACTIONS(8595), + [sym__ambiguous_call_statement] = ACTIONS(8595), + [aux_sym_addressof_expression_token1] = ACTIONS(8595), + [aux_sym_type_of_expression_token1] = ACTIONS(8595), + [aux_sym_unary_expression_token1] = ACTIONS(8595), + [sym_string_literal] = ACTIONS(8597), + [sym_number_literal] = ACTIONS(8597), + [aux_sym_boolean_literal_token1] = ACTIONS(8595), + [aux_sym_boolean_literal_token2] = ACTIONS(8595), + [sym_nothing_literal] = ACTIONS(8595), + [sym_null_literal] = ACTIONS(8595), + [sym_empty_literal] = ACTIONS(8595), + [sym_date_literal] = ACTIONS(8597), + [anon_sym_POUND] = ACTIONS(8595), + }, + [STATE(5942)] = { + [sym_identifier] = ACTIONS(8915), + [sym_newline] = ACTIONS(8918), + [anon_sym_COLON] = ACTIONS(8918), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8915), + [aux_sym_frm_property_statement_token1] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8915), + [anon_sym_BANG] = ACTIONS(8918), + [aux_sym__attribute_identifier_token1] = ACTIONS(8915), + [aux_sym_option_statement_token3] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8921), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8915), + [aux_sym_preprocessor_const_token1] = ACTIONS(8915), + [sym_static_modifier] = ACTIONS(8915), + [sym__dim_keyword] = ACTIONS(8915), + [sym__redim_keyword] = ACTIONS(8915), + [aux_sym_get_accessor_token1] = ACTIONS(8915), + [aux_sym_set_accessor_token1] = ACTIONS(8915), + [aux_sym_const_declaration_token1] = ACTIONS(8915), + [anon_sym_LPAREN] = ACTIONS(8918), + [aux_sym_as_type_clause_token2] = ACTIONS(8915), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8915), + [aux_sym_visibility_token1] = ACTIONS(8915), + [aux_sym_visibility_token2] = ACTIONS(8915), + [aux_sym_elseif_fragment_token1] = ACTIONS(8915), + [aux_sym_else_fragment_token1] = ACTIONS(8915), + [aux_sym_select_statement_token1] = ACTIONS(8915), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8915), + [aux_sym__for_header_token1] = ACTIONS(8915), + [aux_sym_do_statement_token1] = ACTIONS(8915), + [aux_sym_do_condition_token1] = ACTIONS(8915), + [aux_sym_with_statement_token1] = ACTIONS(8915), + [aux_sym_exit_statement_token1] = ACTIONS(8915), + [sym_end_statement] = ACTIONS(8918), + [aux_sym_on_goto_statement_token1] = ACTIONS(8915), + [aux_sym_on_goto_statement_token2] = ACTIONS(8915), + [aux_sym_on_error_statement_token2] = ACTIONS(8915), + [sym__ambiguous_redim_statement] = ACTIONS(8918), + [aux_sym_erase_statement_token1] = ACTIONS(8915), + [aux_sym_open_statement_token1] = ACTIONS(8915), + [aux_sym_file_mode_token2] = ACTIONS(8915), + [aux_sym_file_access_token2] = ACTIONS(8915), + [aux_sym_file_lock_token2] = ACTIONS(8915), + [aux_sym_print_statement_token1] = ACTIONS(8915), + [anon_sym_PLUS] = ACTIONS(8918), + [anon_sym_DASH] = ACTIONS(8915), + [anon_sym_QMARK] = ACTIONS(8918), + [aux_sym_close_statement_token1] = ACTIONS(8915), + [aux_sym_put_statement_token1] = ACTIONS(8915), + [aux_sym_unlock_statement_token1] = ACTIONS(8915), + [aux_sym_seek_statement_token1] = ACTIONS(8915), + [sym_reset_statement] = ACTIONS(8915), + [aux_sym_raise_event_statement_token1] = ACTIONS(8915), + [sym_stop_statement] = ACTIONS(8915), + [sym_beep_statement] = ACTIONS(8915), + [aux_sym_unload_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token2] = ACTIONS(8915), + [aux_sym_def_type_statement_token3] = ACTIONS(8915), + [aux_sym_def_type_statement_token4] = ACTIONS(8915), + [aux_sym_def_type_statement_token5] = ACTIONS(8915), + [aux_sym_def_type_statement_token6] = ACTIONS(8915), + [aux_sym_def_type_statement_token7] = ACTIONS(8915), + [aux_sym_def_type_statement_token8] = ACTIONS(8915), + [aux_sym_def_type_statement_token9] = ACTIONS(8915), + [aux_sym_def_type_statement_token10] = ACTIONS(8915), + [aux_sym_def_type_statement_token11] = ACTIONS(8915), + [aux_sym_def_type_statement_token12] = ACTIONS(8915), + [aux_sym_def_type_statement_token13] = ACTIONS(8915), + [aux_sym_def_type_statement_token14] = ACTIONS(8915), + [aux_sym_call_statement_token1] = ACTIONS(8915), + [sym__ambiguous_call_statement] = ACTIONS(8915), + [aux_sym_addressof_expression_token1] = ACTIONS(8915), + [aux_sym_type_of_expression_token1] = ACTIONS(8915), + [aux_sym_unary_expression_token1] = ACTIONS(8915), + [sym_string_literal] = ACTIONS(8918), + [sym_number_literal] = ACTIONS(8918), + [aux_sym_boolean_literal_token1] = ACTIONS(8915), + [aux_sym_boolean_literal_token2] = ACTIONS(8915), + [sym_nothing_literal] = ACTIONS(8915), + [sym_null_literal] = ACTIONS(8915), + [sym_empty_literal] = ACTIONS(8915), + [sym_date_literal] = ACTIONS(8918), + [anon_sym_POUND] = ACTIONS(8915), + }, + [STATE(5943)] = { + [sym_identifier] = ACTIONS(6117), + [sym_newline] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6117), + [aux_sym_frm_property_statement_token1] = ACTIONS(6117), + [anon_sym_DOT] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6119), + [aux_sym__attribute_identifier_token1] = ACTIONS(6117), + [aux_sym_option_statement_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6117), + [aux_sym_preprocessor_const_token1] = ACTIONS(6117), + [sym_static_modifier] = ACTIONS(6117), + [sym__dim_keyword] = ACTIONS(6117), + [sym__redim_keyword] = ACTIONS(6117), + [aux_sym_get_accessor_token1] = ACTIONS(6117), + [aux_sym_set_accessor_token1] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6119), + [aux_sym_const_declaration_token1] = ACTIONS(6117), + [anon_sym_LPAREN] = ACTIONS(6119), + [aux_sym_as_type_clause_token2] = ACTIONS(6117), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6117), + [aux_sym_visibility_token1] = ACTIONS(6117), + [aux_sym_visibility_token2] = ACTIONS(6117), + [aux_sym_elseif_fragment_token1] = ACTIONS(6117), + [aux_sym_else_fragment_token1] = ACTIONS(6117), + [aux_sym_select_statement_token1] = ACTIONS(6117), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6117), + [aux_sym__for_header_token1] = ACTIONS(6117), + [aux_sym_do_statement_token1] = ACTIONS(6117), + [aux_sym_do_condition_token1] = ACTIONS(6117), + [aux_sym_with_statement_token1] = ACTIONS(6117), + [aux_sym_exit_statement_token1] = ACTIONS(6117), + [sym_end_statement] = ACTIONS(6119), + [aux_sym_on_goto_statement_token1] = ACTIONS(6117), + [aux_sym_on_goto_statement_token2] = ACTIONS(6117), + [aux_sym_on_error_statement_token2] = ACTIONS(6117), + [sym__ambiguous_redim_statement] = ACTIONS(6119), + [aux_sym_erase_statement_token1] = ACTIONS(6117), + [aux_sym_open_statement_token1] = ACTIONS(6117), + [aux_sym_file_mode_token2] = ACTIONS(6117), + [aux_sym_file_access_token2] = ACTIONS(6117), + [aux_sym_file_lock_token2] = ACTIONS(6117), + [aux_sym_print_statement_token1] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6117), + [anon_sym_QMARK] = ACTIONS(6119), + [aux_sym_close_statement_token1] = ACTIONS(6117), + [aux_sym_put_statement_token1] = ACTIONS(6117), + [aux_sym_unlock_statement_token1] = ACTIONS(6117), + [aux_sym_seek_statement_token1] = ACTIONS(6117), + [sym_reset_statement] = ACTIONS(6117), + [aux_sym_raise_event_statement_token1] = ACTIONS(6117), + [sym_stop_statement] = ACTIONS(6117), + [sym_beep_statement] = ACTIONS(6117), + [aux_sym_unload_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token2] = ACTIONS(6117), + [aux_sym_def_type_statement_token3] = ACTIONS(6117), + [aux_sym_def_type_statement_token4] = ACTIONS(6117), + [aux_sym_def_type_statement_token5] = ACTIONS(6117), + [aux_sym_def_type_statement_token6] = ACTIONS(6117), + [aux_sym_def_type_statement_token7] = ACTIONS(6117), + [aux_sym_def_type_statement_token8] = ACTIONS(6117), + [aux_sym_def_type_statement_token9] = ACTIONS(6117), + [aux_sym_def_type_statement_token10] = ACTIONS(6117), + [aux_sym_def_type_statement_token11] = ACTIONS(6117), + [aux_sym_def_type_statement_token12] = ACTIONS(6117), + [aux_sym_def_type_statement_token13] = ACTIONS(6117), + [aux_sym_def_type_statement_token14] = ACTIONS(6117), + [aux_sym_call_statement_token1] = ACTIONS(6117), + [sym__ambiguous_call_statement] = ACTIONS(6117), + [aux_sym_addressof_expression_token1] = ACTIONS(6117), + [aux_sym_type_of_expression_token1] = ACTIONS(6117), + [aux_sym_unary_expression_token1] = ACTIONS(6117), + [sym_string_literal] = ACTIONS(6119), + [sym_number_literal] = ACTIONS(6119), + [aux_sym_boolean_literal_token1] = ACTIONS(6117), + [aux_sym_boolean_literal_token2] = ACTIONS(6117), + [sym_nothing_literal] = ACTIONS(6117), + [sym_null_literal] = ACTIONS(6117), + [sym_empty_literal] = ACTIONS(6117), + [sym_date_literal] = ACTIONS(6119), + [anon_sym_POUND] = ACTIONS(6117), + }, + [STATE(5944)] = { + [sym_identifier] = ACTIONS(8660), + [sym_newline] = ACTIONS(8662), + [anon_sym_COLON] = ACTIONS(8662), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8660), + [aux_sym_frm_property_statement_token1] = ACTIONS(8660), + [anon_sym_DOT] = ACTIONS(8660), + [anon_sym_BANG] = ACTIONS(8662), + [aux_sym__attribute_identifier_token1] = ACTIONS(8660), + [aux_sym_option_statement_token3] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8660), + [aux_sym_preprocessor_const_token1] = ACTIONS(8660), + [sym_static_modifier] = ACTIONS(8660), + [sym__dim_keyword] = ACTIONS(8660), + [sym__redim_keyword] = ACTIONS(8660), + [aux_sym_get_accessor_token1] = ACTIONS(8660), + [aux_sym_set_accessor_token1] = ACTIONS(8660), + [anon_sym_COMMA] = ACTIONS(10899), + [aux_sym_const_declaration_token1] = ACTIONS(8660), + [anon_sym_LPAREN] = ACTIONS(8662), + [aux_sym_as_type_clause_token2] = ACTIONS(8660), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8660), + [aux_sym_visibility_token1] = ACTIONS(8660), + [aux_sym_visibility_token2] = ACTIONS(8660), + [aux_sym_elseif_fragment_token1] = ACTIONS(8660), + [aux_sym_else_fragment_token1] = ACTIONS(8660), + [aux_sym_select_statement_token1] = ACTIONS(8660), + [aux_sym__for_header_token1] = ACTIONS(8660), + [aux_sym_do_statement_token1] = ACTIONS(8660), + [aux_sym_do_condition_token1] = ACTIONS(8660), + [aux_sym_while_statement_token1] = ACTIONS(8660), + [aux_sym_with_statement_token1] = ACTIONS(8660), + [aux_sym_exit_statement_token1] = ACTIONS(8660), + [sym_end_statement] = ACTIONS(8662), + [aux_sym_on_goto_statement_token1] = ACTIONS(8660), + [aux_sym_on_goto_statement_token2] = ACTIONS(8660), + [aux_sym_on_error_statement_token2] = ACTIONS(8660), + [sym__ambiguous_redim_statement] = ACTIONS(8662), + [aux_sym_erase_statement_token1] = ACTIONS(8660), + [aux_sym_open_statement_token1] = ACTIONS(8660), + [aux_sym_file_mode_token2] = ACTIONS(8660), + [aux_sym_file_access_token2] = ACTIONS(8660), + [aux_sym_file_lock_token2] = ACTIONS(8660), + [aux_sym_print_statement_token1] = ACTIONS(8660), + [anon_sym_PLUS] = ACTIONS(8662), + [anon_sym_DASH] = ACTIONS(8660), + [anon_sym_QMARK] = ACTIONS(8662), + [aux_sym_close_statement_token1] = ACTIONS(8660), + [aux_sym_put_statement_token1] = ACTIONS(8660), + [aux_sym_unlock_statement_token1] = ACTIONS(8660), + [aux_sym_seek_statement_token1] = ACTIONS(8660), + [sym_reset_statement] = ACTIONS(8660), + [aux_sym_raise_event_statement_token1] = ACTIONS(8660), + [sym_stop_statement] = ACTIONS(8660), + [sym_beep_statement] = ACTIONS(8660), + [aux_sym_unload_statement_token1] = ACTIONS(8660), + [aux_sym_def_type_statement_token1] = ACTIONS(8660), + [aux_sym_def_type_statement_token2] = ACTIONS(8660), + [aux_sym_def_type_statement_token3] = ACTIONS(8660), + [aux_sym_def_type_statement_token4] = ACTIONS(8660), + [aux_sym_def_type_statement_token5] = ACTIONS(8660), + [aux_sym_def_type_statement_token6] = ACTIONS(8660), + [aux_sym_def_type_statement_token7] = ACTIONS(8660), + [aux_sym_def_type_statement_token8] = ACTIONS(8660), + [aux_sym_def_type_statement_token9] = ACTIONS(8660), + [aux_sym_def_type_statement_token10] = ACTIONS(8660), + [aux_sym_def_type_statement_token11] = ACTIONS(8660), + [aux_sym_def_type_statement_token12] = ACTIONS(8660), + [aux_sym_def_type_statement_token13] = ACTIONS(8660), + [aux_sym_def_type_statement_token14] = ACTIONS(8660), + [aux_sym_call_statement_token1] = ACTIONS(8660), + [sym__ambiguous_call_statement] = ACTIONS(8660), + [aux_sym_addressof_expression_token1] = ACTIONS(8660), + [aux_sym_type_of_expression_token1] = ACTIONS(8660), + [aux_sym_unary_expression_token1] = ACTIONS(8660), + [sym_string_literal] = ACTIONS(8662), + [sym_number_literal] = ACTIONS(8662), + [aux_sym_boolean_literal_token1] = ACTIONS(8660), + [aux_sym_boolean_literal_token2] = ACTIONS(8660), + [sym_nothing_literal] = ACTIONS(8660), + [sym_null_literal] = ACTIONS(8660), + [sym_empty_literal] = ACTIONS(8660), + [sym_date_literal] = ACTIONS(8662), + [anon_sym_POUND] = ACTIONS(8660), + }, + [STATE(5945)] = { + [sym_do_condition] = STATE(7199), + [sym_identifier] = ACTIONS(8479), + [sym_newline] = ACTIONS(8481), + [anon_sym_COLON] = ACTIONS(8481), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8479), + [aux_sym_frm_property_statement_token1] = ACTIONS(8479), + [anon_sym_DOT] = ACTIONS(8479), + [anon_sym_BANG] = ACTIONS(8481), + [aux_sym__attribute_identifier_token1] = ACTIONS(8479), + [aux_sym_option_statement_token3] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8479), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8479), + [aux_sym_preprocessor_const_token1] = ACTIONS(8479), + [sym_static_modifier] = ACTIONS(8479), + [sym__dim_keyword] = ACTIONS(8479), + [sym__redim_keyword] = ACTIONS(8479), + [aux_sym_get_accessor_token1] = ACTIONS(8479), + [aux_sym_set_accessor_token1] = ACTIONS(8479), + [aux_sym_const_declaration_token1] = ACTIONS(8479), + [anon_sym_LPAREN] = ACTIONS(8481), + [aux_sym_as_type_clause_token2] = ACTIONS(8479), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8479), + [aux_sym_visibility_token1] = ACTIONS(8479), + [aux_sym_visibility_token2] = ACTIONS(8479), + [aux_sym_elseif_fragment_token1] = ACTIONS(8479), + [aux_sym_else_fragment_token1] = ACTIONS(8479), + [aux_sym_select_statement_token1] = ACTIONS(8479), + [aux_sym__for_header_token1] = ACTIONS(8479), + [aux_sym_do_statement_token1] = ACTIONS(8479), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8479), + [aux_sym_exit_statement_token1] = ACTIONS(8479), + [sym_end_statement] = ACTIONS(8481), + [aux_sym_on_goto_statement_token1] = ACTIONS(8479), + [aux_sym_on_goto_statement_token2] = ACTIONS(8479), + [aux_sym_on_error_statement_token2] = ACTIONS(8479), + [sym__ambiguous_redim_statement] = ACTIONS(8481), + [aux_sym_erase_statement_token1] = ACTIONS(8479), + [aux_sym_open_statement_token1] = ACTIONS(8479), + [aux_sym_file_mode_token2] = ACTIONS(8479), + [aux_sym_file_access_token2] = ACTIONS(8479), + [aux_sym_file_lock_token2] = ACTIONS(8479), + [aux_sym_print_statement_token1] = ACTIONS(8479), + [anon_sym_PLUS] = ACTIONS(8481), + [anon_sym_DASH] = ACTIONS(8479), + [anon_sym_QMARK] = ACTIONS(8481), + [aux_sym_close_statement_token1] = ACTIONS(8479), + [aux_sym_put_statement_token1] = ACTIONS(8479), + [aux_sym_unlock_statement_token1] = ACTIONS(8479), + [aux_sym_seek_statement_token1] = ACTIONS(8479), + [sym_reset_statement] = ACTIONS(8479), + [aux_sym_raise_event_statement_token1] = ACTIONS(8479), + [sym_stop_statement] = ACTIONS(8479), + [sym_beep_statement] = ACTIONS(8479), + [aux_sym_unload_statement_token1] = ACTIONS(8479), + [aux_sym_def_type_statement_token1] = ACTIONS(8479), + [aux_sym_def_type_statement_token2] = ACTIONS(8479), + [aux_sym_def_type_statement_token3] = ACTIONS(8479), + [aux_sym_def_type_statement_token4] = ACTIONS(8479), + [aux_sym_def_type_statement_token5] = ACTIONS(8479), + [aux_sym_def_type_statement_token6] = ACTIONS(8479), + [aux_sym_def_type_statement_token7] = ACTIONS(8479), + [aux_sym_def_type_statement_token8] = ACTIONS(8479), + [aux_sym_def_type_statement_token9] = ACTIONS(8479), + [aux_sym_def_type_statement_token10] = ACTIONS(8479), + [aux_sym_def_type_statement_token11] = ACTIONS(8479), + [aux_sym_def_type_statement_token12] = ACTIONS(8479), + [aux_sym_def_type_statement_token13] = ACTIONS(8479), + [aux_sym_def_type_statement_token14] = ACTIONS(8479), + [aux_sym_call_statement_token1] = ACTIONS(8479), + [sym__ambiguous_call_statement] = ACTIONS(8479), + [aux_sym_addressof_expression_token1] = ACTIONS(8479), + [aux_sym_type_of_expression_token1] = ACTIONS(8479), + [aux_sym_unary_expression_token1] = ACTIONS(8479), + [sym_string_literal] = ACTIONS(8481), + [sym_number_literal] = ACTIONS(8481), + [aux_sym_boolean_literal_token1] = ACTIONS(8479), + [aux_sym_boolean_literal_token2] = ACTIONS(8479), + [sym_nothing_literal] = ACTIONS(8479), + [sym_null_literal] = ACTIONS(8479), + [sym_empty_literal] = ACTIONS(8479), + [sym_date_literal] = ACTIONS(8481), + [anon_sym_POUND] = ACTIONS(8479), + }, + [STATE(5946)] = { + [sym_identifier] = ACTIONS(8809), + [sym_newline] = ACTIONS(8811), + [anon_sym_COLON] = ACTIONS(8811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8809), + [aux_sym_frm_property_statement_token1] = ACTIONS(8809), + [anon_sym_DOT] = ACTIONS(8809), + [anon_sym_BANG] = ACTIONS(8811), + [aux_sym__attribute_identifier_token1] = ACTIONS(8809), + [aux_sym_option_statement_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8809), + [aux_sym_preprocessor_const_token1] = ACTIONS(8809), + [sym_static_modifier] = ACTIONS(8809), + [sym__dim_keyword] = ACTIONS(8809), + [sym__redim_keyword] = ACTIONS(8809), + [aux_sym_get_accessor_token1] = ACTIONS(8809), + [aux_sym_set_accessor_token1] = ACTIONS(8809), + [aux_sym_const_declaration_token1] = ACTIONS(8809), + [anon_sym_LPAREN] = ACTIONS(8811), + [aux_sym_as_type_clause_token2] = ACTIONS(8809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8809), + [aux_sym_visibility_token1] = ACTIONS(8809), + [aux_sym_visibility_token2] = ACTIONS(8809), + [aux_sym_elseif_fragment_token1] = ACTIONS(8809), + [aux_sym_else_fragment_token1] = ACTIONS(8809), + [aux_sym_select_statement_token1] = ACTIONS(8809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8809), + [aux_sym__for_header_token1] = ACTIONS(8809), + [aux_sym_do_statement_token1] = ACTIONS(8809), + [aux_sym_do_condition_token1] = ACTIONS(8809), + [aux_sym_with_statement_token1] = ACTIONS(8809), + [aux_sym_exit_statement_token1] = ACTIONS(8809), + [sym_end_statement] = ACTIONS(8811), + [aux_sym_on_goto_statement_token1] = ACTIONS(8809), + [aux_sym_on_goto_statement_token2] = ACTIONS(8809), + [aux_sym_on_error_statement_token2] = ACTIONS(8809), + [sym__ambiguous_redim_statement] = ACTIONS(8811), + [aux_sym_erase_statement_token1] = ACTIONS(8809), + [aux_sym_open_statement_token1] = ACTIONS(8809), + [aux_sym_file_mode_token2] = ACTIONS(8809), + [aux_sym_file_access_token2] = ACTIONS(8809), + [aux_sym_file_lock_token2] = ACTIONS(8809), + [aux_sym_print_statement_token1] = ACTIONS(8809), + [anon_sym_PLUS] = ACTIONS(8811), + [anon_sym_DASH] = ACTIONS(8809), + [anon_sym_QMARK] = ACTIONS(8811), + [aux_sym_close_statement_token1] = ACTIONS(8809), + [aux_sym_put_statement_token1] = ACTIONS(8809), + [aux_sym_unlock_statement_token1] = ACTIONS(8809), + [aux_sym_seek_statement_token1] = ACTIONS(8809), + [sym_reset_statement] = ACTIONS(8809), + [aux_sym_raise_event_statement_token1] = ACTIONS(8809), + [sym_stop_statement] = ACTIONS(8809), + [sym_beep_statement] = ACTIONS(8809), + [aux_sym_unload_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token2] = ACTIONS(8809), + [aux_sym_def_type_statement_token3] = ACTIONS(8809), + [aux_sym_def_type_statement_token4] = ACTIONS(8809), + [aux_sym_def_type_statement_token5] = ACTIONS(8809), + [aux_sym_def_type_statement_token6] = ACTIONS(8809), + [aux_sym_def_type_statement_token7] = ACTIONS(8809), + [aux_sym_def_type_statement_token8] = ACTIONS(8809), + [aux_sym_def_type_statement_token9] = ACTIONS(8809), + [aux_sym_def_type_statement_token10] = ACTIONS(8809), + [aux_sym_def_type_statement_token11] = ACTIONS(8809), + [aux_sym_def_type_statement_token12] = ACTIONS(8809), + [aux_sym_def_type_statement_token13] = ACTIONS(8809), + [aux_sym_def_type_statement_token14] = ACTIONS(8809), + [aux_sym_call_statement_token1] = ACTIONS(8809), + [sym__ambiguous_call_statement] = ACTIONS(8809), + [aux_sym_addressof_expression_token1] = ACTIONS(8809), + [aux_sym_type_of_expression_token1] = ACTIONS(8809), + [aux_sym_unary_expression_token1] = ACTIONS(8809), + [sym_string_literal] = ACTIONS(8811), + [sym_number_literal] = ACTIONS(8811), + [aux_sym_boolean_literal_token1] = ACTIONS(8809), + [aux_sym_boolean_literal_token2] = ACTIONS(8809), + [sym_nothing_literal] = ACTIONS(8809), + [sym_null_literal] = ACTIONS(8809), + [sym_empty_literal] = ACTIONS(8809), + [sym_date_literal] = ACTIONS(8811), + [anon_sym_POUND] = ACTIONS(8809), + }, + [STATE(5947)] = { + [aux_sym_variable_declaration_repeat1] = STATE(6129), + [sym_identifier] = ACTIONS(8332), + [sym_newline] = ACTIONS(8334), + [anon_sym_COLON] = ACTIONS(8334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8332), + [aux_sym_frm_property_statement_token1] = ACTIONS(8332), + [anon_sym_DOT] = ACTIONS(8332), + [anon_sym_BANG] = ACTIONS(8334), + [aux_sym__attribute_identifier_token1] = ACTIONS(8332), + [aux_sym_option_statement_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8332), + [aux_sym_preprocessor_const_token1] = ACTIONS(8332), + [sym_static_modifier] = ACTIONS(8332), + [sym__dim_keyword] = ACTIONS(8332), + [sym__redim_keyword] = ACTIONS(8332), + [aux_sym_get_accessor_token1] = ACTIONS(8332), + [aux_sym_set_accessor_token1] = ACTIONS(8332), + [anon_sym_COMMA] = ACTIONS(10844), + [aux_sym_const_declaration_token1] = ACTIONS(8332), + [anon_sym_LPAREN] = ACTIONS(8334), + [aux_sym_as_type_clause_token2] = ACTIONS(8332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8332), + [aux_sym_visibility_token1] = ACTIONS(8332), + [aux_sym_visibility_token2] = ACTIONS(8332), + [aux_sym_elseif_fragment_token1] = ACTIONS(8332), + [aux_sym_else_fragment_token1] = ACTIONS(8332), + [aux_sym_select_statement_token1] = ACTIONS(8332), + [aux_sym__for_header_token1] = ACTIONS(8332), + [aux_sym_do_statement_token1] = ACTIONS(8332), + [aux_sym_do_condition_token1] = ACTIONS(8332), + [aux_sym_with_statement_token1] = ACTIONS(8332), + [aux_sym_exit_statement_token1] = ACTIONS(8332), + [sym_end_statement] = ACTIONS(8334), + [aux_sym_on_goto_statement_token1] = ACTIONS(8332), + [aux_sym_on_goto_statement_token2] = ACTIONS(8332), + [aux_sym_on_error_statement_token2] = ACTIONS(8332), + [sym__ambiguous_redim_statement] = ACTIONS(8334), + [aux_sym_erase_statement_token1] = ACTIONS(8332), + [aux_sym_open_statement_token1] = ACTIONS(8332), + [aux_sym_file_mode_token2] = ACTIONS(8332), + [aux_sym_file_access_token2] = ACTIONS(8332), + [aux_sym_file_lock_token2] = ACTIONS(8332), + [aux_sym_print_statement_token1] = ACTIONS(8332), + [anon_sym_PLUS] = ACTIONS(8334), + [anon_sym_DASH] = ACTIONS(8332), + [anon_sym_QMARK] = ACTIONS(8334), + [aux_sym_close_statement_token1] = ACTIONS(8332), + [aux_sym_put_statement_token1] = ACTIONS(8332), + [aux_sym_unlock_statement_token1] = ACTIONS(8332), + [aux_sym_seek_statement_token1] = ACTIONS(8332), + [sym_reset_statement] = ACTIONS(8332), + [aux_sym_raise_event_statement_token1] = ACTIONS(8332), + [sym_stop_statement] = ACTIONS(8332), + [sym_beep_statement] = ACTIONS(8332), + [aux_sym_unload_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token2] = ACTIONS(8332), + [aux_sym_def_type_statement_token3] = ACTIONS(8332), + [aux_sym_def_type_statement_token4] = ACTIONS(8332), + [aux_sym_def_type_statement_token5] = ACTIONS(8332), + [aux_sym_def_type_statement_token6] = ACTIONS(8332), + [aux_sym_def_type_statement_token7] = ACTIONS(8332), + [aux_sym_def_type_statement_token8] = ACTIONS(8332), + [aux_sym_def_type_statement_token9] = ACTIONS(8332), + [aux_sym_def_type_statement_token10] = ACTIONS(8332), + [aux_sym_def_type_statement_token11] = ACTIONS(8332), + [aux_sym_def_type_statement_token12] = ACTIONS(8332), + [aux_sym_def_type_statement_token13] = ACTIONS(8332), + [aux_sym_def_type_statement_token14] = ACTIONS(8332), + [aux_sym_call_statement_token1] = ACTIONS(8332), + [sym__ambiguous_call_statement] = ACTIONS(8332), + [aux_sym_addressof_expression_token1] = ACTIONS(8332), + [aux_sym_type_of_expression_token1] = ACTIONS(8332), + [aux_sym_unary_expression_token1] = ACTIONS(8332), + [sym_string_literal] = ACTIONS(8334), + [sym_number_literal] = ACTIONS(8334), + [aux_sym_boolean_literal_token1] = ACTIONS(8332), + [aux_sym_boolean_literal_token2] = ACTIONS(8332), + [sym_nothing_literal] = ACTIONS(8332), + [sym_null_literal] = ACTIONS(8332), + [sym_empty_literal] = ACTIONS(8332), + [sym_date_literal] = ACTIONS(8334), + [anon_sym_POUND] = ACTIONS(8332), + }, + [STATE(5948)] = { + [sym_identifier] = ACTIONS(8877), + [sym_newline] = ACTIONS(8879), + [anon_sym_COLON] = ACTIONS(8879), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8877), + [aux_sym_frm_property_statement_token1] = ACTIONS(8877), + [anon_sym_DOT] = ACTIONS(8877), + [anon_sym_BANG] = ACTIONS(8879), + [aux_sym__attribute_identifier_token1] = ACTIONS(8877), + [aux_sym_option_statement_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8877), + [aux_sym_preprocessor_const_token1] = ACTIONS(8877), + [sym_static_modifier] = ACTIONS(8877), + [sym__dim_keyword] = ACTIONS(8877), + [sym__redim_keyword] = ACTIONS(8877), + [aux_sym_get_accessor_token1] = ACTIONS(8877), + [aux_sym_set_accessor_token1] = ACTIONS(8877), + [aux_sym_const_declaration_token1] = ACTIONS(8877), + [anon_sym_LPAREN] = ACTIONS(8879), + [aux_sym_as_type_clause_token2] = ACTIONS(8877), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8877), + [aux_sym_visibility_token1] = ACTIONS(8877), + [aux_sym_visibility_token2] = ACTIONS(8877), + [aux_sym_elseif_fragment_token1] = ACTIONS(8877), + [aux_sym_else_fragment_token1] = ACTIONS(8877), + [aux_sym_select_statement_token1] = ACTIONS(8877), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8877), + [aux_sym__for_header_token1] = ACTIONS(8877), + [aux_sym_do_statement_token1] = ACTIONS(8877), + [aux_sym_do_condition_token1] = ACTIONS(8877), + [aux_sym_with_statement_token1] = ACTIONS(8877), + [aux_sym_exit_statement_token1] = ACTIONS(8877), + [sym_end_statement] = ACTIONS(8879), + [aux_sym_on_goto_statement_token1] = ACTIONS(8877), + [aux_sym_on_goto_statement_token2] = ACTIONS(8877), + [aux_sym_on_error_statement_token2] = ACTIONS(8877), + [sym__ambiguous_redim_statement] = ACTIONS(8879), + [aux_sym_erase_statement_token1] = ACTIONS(8877), + [aux_sym_open_statement_token1] = ACTIONS(8877), + [aux_sym_file_mode_token2] = ACTIONS(8877), + [aux_sym_file_access_token2] = ACTIONS(8877), + [aux_sym_file_lock_token2] = ACTIONS(8877), + [aux_sym_print_statement_token1] = ACTIONS(8877), + [anon_sym_PLUS] = ACTIONS(8879), + [anon_sym_DASH] = ACTIONS(8877), + [anon_sym_QMARK] = ACTIONS(8879), + [aux_sym_close_statement_token1] = ACTIONS(8877), + [aux_sym_put_statement_token1] = ACTIONS(8877), + [aux_sym_unlock_statement_token1] = ACTIONS(8877), + [aux_sym_seek_statement_token1] = ACTIONS(8877), + [sym_reset_statement] = ACTIONS(8877), + [aux_sym_raise_event_statement_token1] = ACTIONS(8877), + [sym_stop_statement] = ACTIONS(8877), + [sym_beep_statement] = ACTIONS(8877), + [aux_sym_unload_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token2] = ACTIONS(8877), + [aux_sym_def_type_statement_token3] = ACTIONS(8877), + [aux_sym_def_type_statement_token4] = ACTIONS(8877), + [aux_sym_def_type_statement_token5] = ACTIONS(8877), + [aux_sym_def_type_statement_token6] = ACTIONS(8877), + [aux_sym_def_type_statement_token7] = ACTIONS(8877), + [aux_sym_def_type_statement_token8] = ACTIONS(8877), + [aux_sym_def_type_statement_token9] = ACTIONS(8877), + [aux_sym_def_type_statement_token10] = ACTIONS(8877), + [aux_sym_def_type_statement_token11] = ACTIONS(8877), + [aux_sym_def_type_statement_token12] = ACTIONS(8877), + [aux_sym_def_type_statement_token13] = ACTIONS(8877), + [aux_sym_def_type_statement_token14] = ACTIONS(8877), + [aux_sym_call_statement_token1] = ACTIONS(8877), + [sym__ambiguous_call_statement] = ACTIONS(8877), + [aux_sym_addressof_expression_token1] = ACTIONS(8877), + [aux_sym_type_of_expression_token1] = ACTIONS(8877), + [aux_sym_unary_expression_token1] = ACTIONS(8877), + [sym_string_literal] = ACTIONS(8879), + [sym_number_literal] = ACTIONS(8879), + [aux_sym_boolean_literal_token1] = ACTIONS(8877), + [aux_sym_boolean_literal_token2] = ACTIONS(8877), + [sym_nothing_literal] = ACTIONS(8877), + [sym_null_literal] = ACTIONS(8877), + [sym_empty_literal] = ACTIONS(8877), + [sym_date_literal] = ACTIONS(8879), + [anon_sym_POUND] = ACTIONS(8877), + }, + [STATE(5949)] = { + [sym_identifier] = ACTIONS(8907), + [sym_newline] = ACTIONS(8909), + [anon_sym_COLON] = ACTIONS(8909), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8907), + [aux_sym_frm_property_statement_token1] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8907), + [anon_sym_BANG] = ACTIONS(8909), + [aux_sym__attribute_identifier_token1] = ACTIONS(8907), + [aux_sym_option_statement_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8907), + [aux_sym_preprocessor_const_token1] = ACTIONS(8907), + [sym_static_modifier] = ACTIONS(8907), + [sym__dim_keyword] = ACTIONS(8907), + [sym__redim_keyword] = ACTIONS(8907), + [aux_sym_get_accessor_token1] = ACTIONS(8907), + [aux_sym_set_accessor_token1] = ACTIONS(8907), + [aux_sym_const_declaration_token1] = ACTIONS(8907), + [anon_sym_LPAREN] = ACTIONS(8909), + [aux_sym_as_type_clause_token2] = ACTIONS(8907), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8907), + [aux_sym_visibility_token1] = ACTIONS(8907), + [aux_sym_visibility_token2] = ACTIONS(8907), + [aux_sym_elseif_fragment_token1] = ACTIONS(8907), + [aux_sym_else_fragment_token1] = ACTIONS(8907), + [aux_sym_select_statement_token1] = ACTIONS(8907), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8907), + [aux_sym__for_header_token1] = ACTIONS(8907), + [aux_sym_do_statement_token1] = ACTIONS(8907), + [aux_sym_do_condition_token1] = ACTIONS(8907), + [aux_sym_with_statement_token1] = ACTIONS(8907), + [aux_sym_exit_statement_token1] = ACTIONS(8907), + [sym_end_statement] = ACTIONS(8909), + [aux_sym_on_goto_statement_token1] = ACTIONS(8907), + [aux_sym_on_goto_statement_token2] = ACTIONS(8907), + [aux_sym_on_error_statement_token2] = ACTIONS(8907), + [sym__ambiguous_redim_statement] = ACTIONS(8909), + [aux_sym_erase_statement_token1] = ACTIONS(8907), + [aux_sym_open_statement_token1] = ACTIONS(8907), + [aux_sym_file_mode_token2] = ACTIONS(8907), + [aux_sym_file_access_token2] = ACTIONS(8907), + [aux_sym_file_lock_token2] = ACTIONS(8907), + [aux_sym_print_statement_token1] = ACTIONS(8907), + [anon_sym_PLUS] = ACTIONS(8909), + [anon_sym_DASH] = ACTIONS(8907), + [anon_sym_QMARK] = ACTIONS(8909), + [aux_sym_close_statement_token1] = ACTIONS(8907), + [aux_sym_put_statement_token1] = ACTIONS(8907), + [aux_sym_unlock_statement_token1] = ACTIONS(8907), + [aux_sym_seek_statement_token1] = ACTIONS(8907), + [sym_reset_statement] = ACTIONS(8907), + [aux_sym_raise_event_statement_token1] = ACTIONS(8907), + [sym_stop_statement] = ACTIONS(8907), + [sym_beep_statement] = ACTIONS(8907), + [aux_sym_unload_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token2] = ACTIONS(8907), + [aux_sym_def_type_statement_token3] = ACTIONS(8907), + [aux_sym_def_type_statement_token4] = ACTIONS(8907), + [aux_sym_def_type_statement_token5] = ACTIONS(8907), + [aux_sym_def_type_statement_token6] = ACTIONS(8907), + [aux_sym_def_type_statement_token7] = ACTIONS(8907), + [aux_sym_def_type_statement_token8] = ACTIONS(8907), + [aux_sym_def_type_statement_token9] = ACTIONS(8907), + [aux_sym_def_type_statement_token10] = ACTIONS(8907), + [aux_sym_def_type_statement_token11] = ACTIONS(8907), + [aux_sym_def_type_statement_token12] = ACTIONS(8907), + [aux_sym_def_type_statement_token13] = ACTIONS(8907), + [aux_sym_def_type_statement_token14] = ACTIONS(8907), + [aux_sym_call_statement_token1] = ACTIONS(8907), + [sym__ambiguous_call_statement] = ACTIONS(8907), + [aux_sym_addressof_expression_token1] = ACTIONS(8907), + [aux_sym_type_of_expression_token1] = ACTIONS(8907), + [aux_sym_unary_expression_token1] = ACTIONS(8907), + [sym_string_literal] = ACTIONS(8909), + [sym_number_literal] = ACTIONS(8909), + [aux_sym_boolean_literal_token1] = ACTIONS(8907), + [aux_sym_boolean_literal_token2] = ACTIONS(8907), + [sym_nothing_literal] = ACTIONS(8907), + [sym_null_literal] = ACTIONS(8907), + [sym_empty_literal] = ACTIONS(8907), + [sym_date_literal] = ACTIONS(8909), + [anon_sym_POUND] = ACTIONS(8907), + }, + [STATE(5950)] = { + [sym_identifier] = ACTIONS(8927), + [sym_newline] = ACTIONS(8929), + [anon_sym_COLON] = ACTIONS(8929), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8927), + [aux_sym_frm_property_statement_token1] = ACTIONS(8927), + [anon_sym_DOT] = ACTIONS(8927), + [anon_sym_BANG] = ACTIONS(8929), + [aux_sym__attribute_identifier_token1] = ACTIONS(8927), + [aux_sym_option_statement_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8927), + [aux_sym_preprocessor_const_token1] = ACTIONS(8927), + [sym_static_modifier] = ACTIONS(8927), + [sym__dim_keyword] = ACTIONS(8927), + [sym__redim_keyword] = ACTIONS(8927), + [aux_sym_get_accessor_token1] = ACTIONS(8927), + [aux_sym_set_accessor_token1] = ACTIONS(8927), + [aux_sym_const_declaration_token1] = ACTIONS(8927), + [anon_sym_LPAREN] = ACTIONS(8929), + [aux_sym_as_type_clause_token2] = ACTIONS(8927), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8927), + [aux_sym_visibility_token1] = ACTIONS(8927), + [aux_sym_visibility_token2] = ACTIONS(8927), + [aux_sym_elseif_fragment_token1] = ACTIONS(8927), + [aux_sym_else_fragment_token1] = ACTIONS(8927), + [aux_sym_select_statement_token1] = ACTIONS(8927), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8927), + [aux_sym__for_header_token1] = ACTIONS(8927), + [aux_sym_do_statement_token1] = ACTIONS(8927), + [aux_sym_do_condition_token1] = ACTIONS(8927), + [aux_sym_with_statement_token1] = ACTIONS(8927), + [aux_sym_exit_statement_token1] = ACTIONS(8927), + [sym_end_statement] = ACTIONS(8929), + [aux_sym_on_goto_statement_token1] = ACTIONS(8927), + [aux_sym_on_goto_statement_token2] = ACTIONS(8927), + [aux_sym_on_error_statement_token2] = ACTIONS(8927), + [sym__ambiguous_redim_statement] = ACTIONS(8929), + [aux_sym_erase_statement_token1] = ACTIONS(8927), + [aux_sym_open_statement_token1] = ACTIONS(8927), + [aux_sym_file_mode_token2] = ACTIONS(8927), + [aux_sym_file_access_token2] = ACTIONS(8927), + [aux_sym_file_lock_token2] = ACTIONS(8927), + [aux_sym_print_statement_token1] = ACTIONS(8927), + [anon_sym_PLUS] = ACTIONS(8929), + [anon_sym_DASH] = ACTIONS(8927), + [anon_sym_QMARK] = ACTIONS(8929), + [aux_sym_close_statement_token1] = ACTIONS(8927), + [aux_sym_put_statement_token1] = ACTIONS(8927), + [aux_sym_unlock_statement_token1] = ACTIONS(8927), + [aux_sym_seek_statement_token1] = ACTIONS(8927), + [sym_reset_statement] = ACTIONS(8927), + [aux_sym_raise_event_statement_token1] = ACTIONS(8927), + [sym_stop_statement] = ACTIONS(8927), + [sym_beep_statement] = ACTIONS(8927), + [aux_sym_unload_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token2] = ACTIONS(8927), + [aux_sym_def_type_statement_token3] = ACTIONS(8927), + [aux_sym_def_type_statement_token4] = ACTIONS(8927), + [aux_sym_def_type_statement_token5] = ACTIONS(8927), + [aux_sym_def_type_statement_token6] = ACTIONS(8927), + [aux_sym_def_type_statement_token7] = ACTIONS(8927), + [aux_sym_def_type_statement_token8] = ACTIONS(8927), + [aux_sym_def_type_statement_token9] = ACTIONS(8927), + [aux_sym_def_type_statement_token10] = ACTIONS(8927), + [aux_sym_def_type_statement_token11] = ACTIONS(8927), + [aux_sym_def_type_statement_token12] = ACTIONS(8927), + [aux_sym_def_type_statement_token13] = ACTIONS(8927), + [aux_sym_def_type_statement_token14] = ACTIONS(8927), + [aux_sym_call_statement_token1] = ACTIONS(8927), + [sym__ambiguous_call_statement] = ACTIONS(8927), + [aux_sym_addressof_expression_token1] = ACTIONS(8927), + [aux_sym_type_of_expression_token1] = ACTIONS(8927), + [aux_sym_unary_expression_token1] = ACTIONS(8927), + [sym_string_literal] = ACTIONS(8929), + [sym_number_literal] = ACTIONS(8929), + [aux_sym_boolean_literal_token1] = ACTIONS(8927), + [aux_sym_boolean_literal_token2] = ACTIONS(8927), + [sym_nothing_literal] = ACTIONS(8927), + [sym_null_literal] = ACTIONS(8927), + [sym_empty_literal] = ACTIONS(8927), + [sym_date_literal] = ACTIONS(8929), + [anon_sym_POUND] = ACTIONS(8927), + }, + [STATE(5951)] = { + [sym_identifier] = ACTIONS(8931), + [sym_newline] = ACTIONS(8933), + [anon_sym_COLON] = ACTIONS(8933), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8931), + [aux_sym_frm_property_statement_token1] = ACTIONS(8931), + [anon_sym_DOT] = ACTIONS(8931), + [anon_sym_BANG] = ACTIONS(8933), + [aux_sym__attribute_identifier_token1] = ACTIONS(8931), + [aux_sym_option_statement_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8931), + [aux_sym_preprocessor_const_token1] = ACTIONS(8931), + [sym_static_modifier] = ACTIONS(8931), + [sym__dim_keyword] = ACTIONS(8931), + [sym__redim_keyword] = ACTIONS(8931), + [aux_sym_get_accessor_token1] = ACTIONS(8931), + [aux_sym_set_accessor_token1] = ACTIONS(8931), + [aux_sym_const_declaration_token1] = ACTIONS(8931), + [anon_sym_LPAREN] = ACTIONS(8933), + [aux_sym_as_type_clause_token2] = ACTIONS(8931), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8931), + [aux_sym_visibility_token1] = ACTIONS(8931), + [aux_sym_visibility_token2] = ACTIONS(8931), + [aux_sym_elseif_fragment_token1] = ACTIONS(8931), + [aux_sym_else_fragment_token1] = ACTIONS(8931), + [aux_sym_select_statement_token1] = ACTIONS(8931), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8931), + [aux_sym__for_header_token1] = ACTIONS(8931), + [aux_sym_do_statement_token1] = ACTIONS(8931), + [aux_sym_do_condition_token1] = ACTIONS(8931), + [aux_sym_with_statement_token1] = ACTIONS(8931), + [aux_sym_exit_statement_token1] = ACTIONS(8931), + [sym_end_statement] = ACTIONS(8933), + [aux_sym_on_goto_statement_token1] = ACTIONS(8931), + [aux_sym_on_goto_statement_token2] = ACTIONS(8931), + [aux_sym_on_error_statement_token2] = ACTIONS(8931), + [sym__ambiguous_redim_statement] = ACTIONS(8933), + [aux_sym_erase_statement_token1] = ACTIONS(8931), + [aux_sym_open_statement_token1] = ACTIONS(8931), + [aux_sym_file_mode_token2] = ACTIONS(8931), + [aux_sym_file_access_token2] = ACTIONS(8931), + [aux_sym_file_lock_token2] = ACTIONS(8931), + [aux_sym_print_statement_token1] = ACTIONS(8931), + [anon_sym_PLUS] = ACTIONS(8933), + [anon_sym_DASH] = ACTIONS(8931), + [anon_sym_QMARK] = ACTIONS(8933), + [aux_sym_close_statement_token1] = ACTIONS(8931), + [aux_sym_put_statement_token1] = ACTIONS(8931), + [aux_sym_unlock_statement_token1] = ACTIONS(8931), + [aux_sym_seek_statement_token1] = ACTIONS(8931), + [sym_reset_statement] = ACTIONS(8931), + [aux_sym_raise_event_statement_token1] = ACTIONS(8931), + [sym_stop_statement] = ACTIONS(8931), + [sym_beep_statement] = ACTIONS(8931), + [aux_sym_unload_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token2] = ACTIONS(8931), + [aux_sym_def_type_statement_token3] = ACTIONS(8931), + [aux_sym_def_type_statement_token4] = ACTIONS(8931), + [aux_sym_def_type_statement_token5] = ACTIONS(8931), + [aux_sym_def_type_statement_token6] = ACTIONS(8931), + [aux_sym_def_type_statement_token7] = ACTIONS(8931), + [aux_sym_def_type_statement_token8] = ACTIONS(8931), + [aux_sym_def_type_statement_token9] = ACTIONS(8931), + [aux_sym_def_type_statement_token10] = ACTIONS(8931), + [aux_sym_def_type_statement_token11] = ACTIONS(8931), + [aux_sym_def_type_statement_token12] = ACTIONS(8931), + [aux_sym_def_type_statement_token13] = ACTIONS(8931), + [aux_sym_def_type_statement_token14] = ACTIONS(8931), + [aux_sym_call_statement_token1] = ACTIONS(8931), + [sym__ambiguous_call_statement] = ACTIONS(8931), + [aux_sym_addressof_expression_token1] = ACTIONS(8931), + [aux_sym_type_of_expression_token1] = ACTIONS(8931), + [aux_sym_unary_expression_token1] = ACTIONS(8931), + [sym_string_literal] = ACTIONS(8933), + [sym_number_literal] = ACTIONS(8933), + [aux_sym_boolean_literal_token1] = ACTIONS(8931), + [aux_sym_boolean_literal_token2] = ACTIONS(8931), + [sym_nothing_literal] = ACTIONS(8931), + [sym_null_literal] = ACTIONS(8931), + [sym_empty_literal] = ACTIONS(8931), + [sym_date_literal] = ACTIONS(8933), + [anon_sym_POUND] = ACTIONS(8931), + }, + [STATE(5952)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_while_statement_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(5953)] = { + [sym_identifier] = ACTIONS(8805), + [sym_newline] = ACTIONS(8807), + [anon_sym_COLON] = ACTIONS(8807), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8805), + [aux_sym_frm_property_statement_token1] = ACTIONS(8805), + [anon_sym_DOT] = ACTIONS(8805), + [anon_sym_BANG] = ACTIONS(8807), + [aux_sym__attribute_identifier_token1] = ACTIONS(8805), + [aux_sym_option_statement_token3] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8805), + [aux_sym_preprocessor_const_token1] = ACTIONS(8805), + [sym_static_modifier] = ACTIONS(8805), + [sym__dim_keyword] = ACTIONS(8805), + [sym__redim_keyword] = ACTIONS(8805), + [aux_sym_get_accessor_token1] = ACTIONS(8805), + [aux_sym_set_accessor_token1] = ACTIONS(8805), + [anon_sym_COMMA] = ACTIONS(8807), + [aux_sym_const_declaration_token1] = ACTIONS(8805), + [anon_sym_LPAREN] = ACTIONS(8807), + [aux_sym_as_type_clause_token2] = ACTIONS(8805), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8805), + [aux_sym_visibility_token1] = ACTIONS(8805), + [aux_sym_visibility_token2] = ACTIONS(8805), + [aux_sym_elseif_fragment_token1] = ACTIONS(8805), + [aux_sym_else_fragment_token1] = ACTIONS(8805), + [aux_sym_select_statement_token1] = ACTIONS(8805), + [aux_sym__for_header_token1] = ACTIONS(8805), + [aux_sym_do_statement_token1] = ACTIONS(8805), + [aux_sym_do_condition_token1] = ACTIONS(8805), + [aux_sym_with_statement_token1] = ACTIONS(8805), + [aux_sym_exit_statement_token1] = ACTIONS(8805), + [sym_end_statement] = ACTIONS(8807), + [aux_sym_on_goto_statement_token1] = ACTIONS(8805), + [aux_sym_on_goto_statement_token2] = ACTIONS(8805), + [aux_sym_on_error_statement_token2] = ACTIONS(8805), + [sym__ambiguous_redim_statement] = ACTIONS(8807), + [aux_sym_erase_statement_token1] = ACTIONS(8805), + [aux_sym_open_statement_token1] = ACTIONS(8805), + [aux_sym_file_mode_token2] = ACTIONS(8805), + [aux_sym_file_access_token2] = ACTIONS(8805), + [aux_sym_file_lock_token2] = ACTIONS(8805), + [aux_sym_print_statement_token1] = ACTIONS(8805), + [anon_sym_PLUS] = ACTIONS(8807), + [anon_sym_DASH] = ACTIONS(8805), + [anon_sym_QMARK] = ACTIONS(8807), + [aux_sym_close_statement_token1] = ACTIONS(8805), + [aux_sym_put_statement_token1] = ACTIONS(8805), + [aux_sym_unlock_statement_token1] = ACTIONS(8805), + [aux_sym_seek_statement_token1] = ACTIONS(8805), + [sym_reset_statement] = ACTIONS(8805), + [aux_sym_raise_event_statement_token1] = ACTIONS(8805), + [sym_stop_statement] = ACTIONS(8805), + [sym_beep_statement] = ACTIONS(8805), + [aux_sym_unload_statement_token1] = ACTIONS(8805), + [aux_sym_def_type_statement_token1] = ACTIONS(8805), + [aux_sym_def_type_statement_token2] = ACTIONS(8805), + [aux_sym_def_type_statement_token3] = ACTIONS(8805), + [aux_sym_def_type_statement_token4] = ACTIONS(8805), + [aux_sym_def_type_statement_token5] = ACTIONS(8805), + [aux_sym_def_type_statement_token6] = ACTIONS(8805), + [aux_sym_def_type_statement_token7] = ACTIONS(8805), + [aux_sym_def_type_statement_token8] = ACTIONS(8805), + [aux_sym_def_type_statement_token9] = ACTIONS(8805), + [aux_sym_def_type_statement_token10] = ACTIONS(8805), + [aux_sym_def_type_statement_token11] = ACTIONS(8805), + [aux_sym_def_type_statement_token12] = ACTIONS(8805), + [aux_sym_def_type_statement_token13] = ACTIONS(8805), + [aux_sym_def_type_statement_token14] = ACTIONS(8805), + [aux_sym_call_statement_token1] = ACTIONS(8805), + [sym__ambiguous_call_statement] = ACTIONS(8805), + [aux_sym_addressof_expression_token1] = ACTIONS(8805), + [aux_sym_type_of_expression_token1] = ACTIONS(8805), + [aux_sym_unary_expression_token1] = ACTIONS(8805), + [sym_string_literal] = ACTIONS(8807), + [sym_number_literal] = ACTIONS(8807), + [aux_sym_boolean_literal_token1] = ACTIONS(8805), + [aux_sym_boolean_literal_token2] = ACTIONS(8805), + [sym_nothing_literal] = ACTIONS(8805), + [sym_null_literal] = ACTIONS(8805), + [sym_empty_literal] = ACTIONS(8805), + [sym_date_literal] = ACTIONS(8807), + [anon_sym_POUND] = ACTIONS(8805), + }, + [STATE(5954)] = { + [sym_identifier] = ACTIONS(8357), + [sym_newline] = ACTIONS(8359), + [anon_sym_COLON] = ACTIONS(8359), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8357), + [aux_sym_frm_property_statement_token1] = ACTIONS(8357), + [anon_sym_DOT] = ACTIONS(8357), + [anon_sym_BANG] = ACTIONS(8359), + [aux_sym__attribute_identifier_token1] = ACTIONS(8357), + [aux_sym_option_statement_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8357), + [aux_sym_preprocessor_const_token1] = ACTIONS(8357), + [sym_static_modifier] = ACTIONS(8357), + [sym__dim_keyword] = ACTIONS(8357), + [sym__redim_keyword] = ACTIONS(8357), + [aux_sym_get_accessor_token1] = ACTIONS(8357), + [aux_sym_set_accessor_token1] = ACTIONS(8357), + [anon_sym_COMMA] = ACTIONS(8359), + [aux_sym_const_declaration_token1] = ACTIONS(8357), + [anon_sym_LPAREN] = ACTIONS(8359), + [aux_sym_as_type_clause_token2] = ACTIONS(8357), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8357), + [aux_sym_visibility_token1] = ACTIONS(8357), + [aux_sym_visibility_token2] = ACTIONS(8357), + [aux_sym_elseif_fragment_token1] = ACTIONS(8357), + [aux_sym_else_fragment_token1] = ACTIONS(8357), + [aux_sym_select_statement_token1] = ACTIONS(8357), + [aux_sym__for_header_token1] = ACTIONS(8357), + [aux_sym_do_statement_token1] = ACTIONS(8357), + [aux_sym_do_condition_token1] = ACTIONS(8357), + [aux_sym_with_statement_token1] = ACTIONS(8357), + [aux_sym_exit_statement_token1] = ACTIONS(8357), + [sym_end_statement] = ACTIONS(8359), + [aux_sym_on_goto_statement_token1] = ACTIONS(8357), + [aux_sym_on_goto_statement_token2] = ACTIONS(8357), + [aux_sym_on_error_statement_token2] = ACTIONS(8357), + [sym__ambiguous_redim_statement] = ACTIONS(8359), + [aux_sym_erase_statement_token1] = ACTIONS(8357), + [aux_sym_open_statement_token1] = ACTIONS(8357), + [aux_sym_file_mode_token2] = ACTIONS(8357), + [aux_sym_file_access_token2] = ACTIONS(8357), + [aux_sym_file_lock_token2] = ACTIONS(8357), + [aux_sym_print_statement_token1] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_QMARK] = ACTIONS(8359), + [aux_sym_close_statement_token1] = ACTIONS(8357), + [aux_sym_put_statement_token1] = ACTIONS(8357), + [aux_sym_unlock_statement_token1] = ACTIONS(8357), + [aux_sym_seek_statement_token1] = ACTIONS(8357), + [sym_reset_statement] = ACTIONS(8357), + [aux_sym_raise_event_statement_token1] = ACTIONS(8357), + [sym_stop_statement] = ACTIONS(8357), + [sym_beep_statement] = ACTIONS(8357), + [aux_sym_unload_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token2] = ACTIONS(8357), + [aux_sym_def_type_statement_token3] = ACTIONS(8357), + [aux_sym_def_type_statement_token4] = ACTIONS(8357), + [aux_sym_def_type_statement_token5] = ACTIONS(8357), + [aux_sym_def_type_statement_token6] = ACTIONS(8357), + [aux_sym_def_type_statement_token7] = ACTIONS(8357), + [aux_sym_def_type_statement_token8] = ACTIONS(8357), + [aux_sym_def_type_statement_token9] = ACTIONS(8357), + [aux_sym_def_type_statement_token10] = ACTIONS(8357), + [aux_sym_def_type_statement_token11] = ACTIONS(8357), + [aux_sym_def_type_statement_token12] = ACTIONS(8357), + [aux_sym_def_type_statement_token13] = ACTIONS(8357), + [aux_sym_def_type_statement_token14] = ACTIONS(8357), + [aux_sym_call_statement_token1] = ACTIONS(8357), + [sym__ambiguous_call_statement] = ACTIONS(8357), + [aux_sym_addressof_expression_token1] = ACTIONS(8357), + [aux_sym_type_of_expression_token1] = ACTIONS(8357), + [aux_sym_unary_expression_token1] = ACTIONS(8357), + [sym_string_literal] = ACTIONS(8359), + [sym_number_literal] = ACTIONS(8359), + [aux_sym_boolean_literal_token1] = ACTIONS(8357), + [aux_sym_boolean_literal_token2] = ACTIONS(8357), + [sym_nothing_literal] = ACTIONS(8357), + [sym_null_literal] = ACTIONS(8357), + [sym_empty_literal] = ACTIONS(8357), + [sym_date_literal] = ACTIONS(8359), + [anon_sym_POUND] = ACTIONS(8357), + }, + [STATE(5955)] = { + [sym_identifier] = ACTIONS(8666), + [sym_newline] = ACTIONS(8668), + [anon_sym_COLON] = ACTIONS(8668), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8666), + [aux_sym_frm_property_statement_token1] = ACTIONS(8666), + [anon_sym_DOT] = ACTIONS(8666), + [anon_sym_BANG] = ACTIONS(8668), + [aux_sym__attribute_identifier_token1] = ACTIONS(8666), + [aux_sym_option_statement_token3] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8666), + [aux_sym_preprocessor_const_token1] = ACTIONS(8666), + [sym_static_modifier] = ACTIONS(8666), + [sym__dim_keyword] = ACTIONS(8666), + [sym__redim_keyword] = ACTIONS(8666), + [aux_sym_get_accessor_token1] = ACTIONS(8666), + [aux_sym_set_accessor_token1] = ACTIONS(8666), + [anon_sym_COMMA] = ACTIONS(10901), + [aux_sym_const_declaration_token1] = ACTIONS(8666), + [anon_sym_LPAREN] = ACTIONS(8668), + [aux_sym_as_type_clause_token2] = ACTIONS(8666), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8666), + [aux_sym_visibility_token1] = ACTIONS(8666), + [aux_sym_visibility_token2] = ACTIONS(8666), + [aux_sym_elseif_fragment_token1] = ACTIONS(8666), + [aux_sym_else_fragment_token1] = ACTIONS(8666), + [aux_sym_select_statement_token1] = ACTIONS(8666), + [aux_sym__for_header_token1] = ACTIONS(8666), + [aux_sym_do_statement_token1] = ACTIONS(8666), + [aux_sym_do_condition_token1] = ACTIONS(8666), + [aux_sym_while_statement_token1] = ACTIONS(8666), + [aux_sym_with_statement_token1] = ACTIONS(8666), + [aux_sym_exit_statement_token1] = ACTIONS(8666), + [sym_end_statement] = ACTIONS(8668), + [aux_sym_on_goto_statement_token1] = ACTIONS(8666), + [aux_sym_on_goto_statement_token2] = ACTIONS(8666), + [aux_sym_on_error_statement_token2] = ACTIONS(8666), + [sym__ambiguous_redim_statement] = ACTIONS(8668), + [aux_sym_erase_statement_token1] = ACTIONS(8666), + [aux_sym_open_statement_token1] = ACTIONS(8666), + [aux_sym_file_mode_token2] = ACTIONS(8666), + [aux_sym_file_access_token2] = ACTIONS(8666), + [aux_sym_file_lock_token2] = ACTIONS(8666), + [aux_sym_print_statement_token1] = ACTIONS(8666), + [anon_sym_PLUS] = ACTIONS(8668), + [anon_sym_DASH] = ACTIONS(8666), + [anon_sym_QMARK] = ACTIONS(8668), + [aux_sym_close_statement_token1] = ACTIONS(8666), + [aux_sym_put_statement_token1] = ACTIONS(8666), + [aux_sym_unlock_statement_token1] = ACTIONS(8666), + [aux_sym_seek_statement_token1] = ACTIONS(8666), + [sym_reset_statement] = ACTIONS(8666), + [aux_sym_raise_event_statement_token1] = ACTIONS(8666), + [sym_stop_statement] = ACTIONS(8666), + [sym_beep_statement] = ACTIONS(8666), + [aux_sym_unload_statement_token1] = ACTIONS(8666), + [aux_sym_def_type_statement_token1] = ACTIONS(8666), + [aux_sym_def_type_statement_token2] = ACTIONS(8666), + [aux_sym_def_type_statement_token3] = ACTIONS(8666), + [aux_sym_def_type_statement_token4] = ACTIONS(8666), + [aux_sym_def_type_statement_token5] = ACTIONS(8666), + [aux_sym_def_type_statement_token6] = ACTIONS(8666), + [aux_sym_def_type_statement_token7] = ACTIONS(8666), + [aux_sym_def_type_statement_token8] = ACTIONS(8666), + [aux_sym_def_type_statement_token9] = ACTIONS(8666), + [aux_sym_def_type_statement_token10] = ACTIONS(8666), + [aux_sym_def_type_statement_token11] = ACTIONS(8666), + [aux_sym_def_type_statement_token12] = ACTIONS(8666), + [aux_sym_def_type_statement_token13] = ACTIONS(8666), + [aux_sym_def_type_statement_token14] = ACTIONS(8666), + [aux_sym_call_statement_token1] = ACTIONS(8666), + [sym__ambiguous_call_statement] = ACTIONS(8666), + [aux_sym_addressof_expression_token1] = ACTIONS(8666), + [aux_sym_type_of_expression_token1] = ACTIONS(8666), + [aux_sym_unary_expression_token1] = ACTIONS(8666), + [sym_string_literal] = ACTIONS(8668), + [sym_number_literal] = ACTIONS(8668), + [aux_sym_boolean_literal_token1] = ACTIONS(8666), + [aux_sym_boolean_literal_token2] = ACTIONS(8666), + [sym_nothing_literal] = ACTIONS(8666), + [sym_null_literal] = ACTIONS(8666), + [sym_empty_literal] = ACTIONS(8666), + [sym_date_literal] = ACTIONS(8668), + [anon_sym_POUND] = ACTIONS(8666), + }, + [STATE(5956)] = { + [sym_identifier] = ACTIONS(8533), + [sym_newline] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(8535), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8533), + [aux_sym_frm_property_statement_token1] = ACTIONS(8533), + [anon_sym_DOT] = ACTIONS(8533), + [anon_sym_BANG] = ACTIONS(8535), + [aux_sym__attribute_identifier_token1] = ACTIONS(8533), + [aux_sym_option_statement_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8533), + [aux_sym_preprocessor_const_token1] = ACTIONS(8533), + [sym_static_modifier] = ACTIONS(8533), + [sym__dim_keyword] = ACTIONS(8533), + [sym__redim_keyword] = ACTIONS(8533), + [aux_sym_get_accessor_token1] = ACTIONS(8533), + [aux_sym_set_accessor_token1] = ACTIONS(8533), + [anon_sym_COMMA] = ACTIONS(8535), + [aux_sym_const_declaration_token1] = ACTIONS(8533), + [anon_sym_LPAREN] = ACTIONS(8535), + [aux_sym_as_type_clause_token2] = ACTIONS(8533), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8533), + [aux_sym_visibility_token1] = ACTIONS(8533), + [aux_sym_visibility_token2] = ACTIONS(8533), + [aux_sym_elseif_fragment_token1] = ACTIONS(8533), + [aux_sym_else_fragment_token1] = ACTIONS(8533), + [aux_sym_select_statement_token1] = ACTIONS(8533), + [aux_sym_select_statement_token2] = ACTIONS(8533), + [aux_sym__for_header_token1] = ACTIONS(8533), + [aux_sym_do_statement_token1] = ACTIONS(8533), + [aux_sym_do_condition_token1] = ACTIONS(8533), + [aux_sym_with_statement_token1] = ACTIONS(8533), + [aux_sym_exit_statement_token1] = ACTIONS(8533), + [sym_end_statement] = ACTIONS(8535), + [aux_sym_on_goto_statement_token1] = ACTIONS(8533), + [aux_sym_on_goto_statement_token2] = ACTIONS(8533), + [aux_sym_on_error_statement_token2] = ACTIONS(8533), + [sym__ambiguous_redim_statement] = ACTIONS(8535), + [aux_sym_erase_statement_token1] = ACTIONS(8533), + [aux_sym_open_statement_token1] = ACTIONS(8533), + [aux_sym_file_mode_token2] = ACTIONS(8533), + [aux_sym_file_access_token2] = ACTIONS(8533), + [aux_sym_file_lock_token2] = ACTIONS(8533), + [aux_sym_print_statement_token1] = ACTIONS(8533), + [anon_sym_PLUS] = ACTIONS(8535), + [anon_sym_DASH] = ACTIONS(8533), + [anon_sym_QMARK] = ACTIONS(8535), + [aux_sym_close_statement_token1] = ACTIONS(8533), + [aux_sym_put_statement_token1] = ACTIONS(8533), + [aux_sym_unlock_statement_token1] = ACTIONS(8533), + [aux_sym_seek_statement_token1] = ACTIONS(8533), + [sym_reset_statement] = ACTIONS(8533), + [aux_sym_raise_event_statement_token1] = ACTIONS(8533), + [sym_stop_statement] = ACTIONS(8533), + [sym_beep_statement] = ACTIONS(8533), + [aux_sym_unload_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token2] = ACTIONS(8533), + [aux_sym_def_type_statement_token3] = ACTIONS(8533), + [aux_sym_def_type_statement_token4] = ACTIONS(8533), + [aux_sym_def_type_statement_token5] = ACTIONS(8533), + [aux_sym_def_type_statement_token6] = ACTIONS(8533), + [aux_sym_def_type_statement_token7] = ACTIONS(8533), + [aux_sym_def_type_statement_token8] = ACTIONS(8533), + [aux_sym_def_type_statement_token9] = ACTIONS(8533), + [aux_sym_def_type_statement_token10] = ACTIONS(8533), + [aux_sym_def_type_statement_token11] = ACTIONS(8533), + [aux_sym_def_type_statement_token12] = ACTIONS(8533), + [aux_sym_def_type_statement_token13] = ACTIONS(8533), + [aux_sym_def_type_statement_token14] = ACTIONS(8533), + [aux_sym_call_statement_token1] = ACTIONS(8533), + [sym__ambiguous_call_statement] = ACTIONS(8533), + [aux_sym_addressof_expression_token1] = ACTIONS(8533), + [aux_sym_type_of_expression_token1] = ACTIONS(8533), + [aux_sym_unary_expression_token1] = ACTIONS(8533), + [sym_string_literal] = ACTIONS(8535), + [sym_number_literal] = ACTIONS(8535), + [aux_sym_boolean_literal_token1] = ACTIONS(8533), + [aux_sym_boolean_literal_token2] = ACTIONS(8533), + [sym_nothing_literal] = ACTIONS(8533), + [sym_null_literal] = ACTIONS(8533), + [sym_empty_literal] = ACTIONS(8533), + [sym_date_literal] = ACTIONS(8535), + [anon_sym_POUND] = ACTIONS(8533), + }, + [STATE(5957)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(5963), + [sym_identifier] = ACTIONS(8692), + [sym_newline] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(10903), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8692), + [aux_sym_frm_property_statement_token1] = ACTIONS(8692), + [anon_sym_DOT] = ACTIONS(8692), + [anon_sym_BANG] = ACTIONS(8694), + [aux_sym__attribute_identifier_token1] = ACTIONS(8692), + [aux_sym_option_statement_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8692), + [aux_sym_preprocessor_const_token1] = ACTIONS(8692), + [sym_static_modifier] = ACTIONS(8692), + [sym__dim_keyword] = ACTIONS(8692), + [sym__redim_keyword] = ACTIONS(8692), + [aux_sym_get_accessor_token1] = ACTIONS(8692), + [aux_sym_set_accessor_token1] = ACTIONS(8692), + [aux_sym_const_declaration_token1] = ACTIONS(8692), + [anon_sym_LPAREN] = ACTIONS(8694), + [aux_sym_as_type_clause_token2] = ACTIONS(8692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8692), + [aux_sym_visibility_token1] = ACTIONS(8692), + [aux_sym_visibility_token2] = ACTIONS(8692), + [aux_sym_elseif_fragment_token1] = ACTIONS(8692), + [aux_sym_else_fragment_token1] = ACTIONS(10905), + [aux_sym_select_statement_token1] = ACTIONS(8692), + [aux_sym__for_header_token1] = ACTIONS(8692), + [aux_sym_do_statement_token1] = ACTIONS(8692), + [aux_sym_do_statement_token2] = ACTIONS(8692), + [aux_sym_do_condition_token1] = ACTIONS(8692), + [aux_sym_with_statement_token1] = ACTIONS(8692), + [aux_sym_exit_statement_token1] = ACTIONS(8692), + [sym_end_statement] = ACTIONS(8694), + [aux_sym_on_goto_statement_token1] = ACTIONS(8692), + [aux_sym_on_goto_statement_token2] = ACTIONS(8692), + [aux_sym_on_error_statement_token2] = ACTIONS(8692), + [sym__ambiguous_redim_statement] = ACTIONS(8694), + [aux_sym_erase_statement_token1] = ACTIONS(8692), + [aux_sym_open_statement_token1] = ACTIONS(8692), + [aux_sym_file_mode_token2] = ACTIONS(8692), + [aux_sym_file_access_token2] = ACTIONS(8692), + [aux_sym_file_lock_token2] = ACTIONS(8692), + [aux_sym_print_statement_token1] = ACTIONS(8692), + [anon_sym_PLUS] = ACTIONS(8694), + [anon_sym_DASH] = ACTIONS(8692), + [anon_sym_QMARK] = ACTIONS(8694), + [aux_sym_close_statement_token1] = ACTIONS(8692), + [aux_sym_put_statement_token1] = ACTIONS(8692), + [aux_sym_unlock_statement_token1] = ACTIONS(8692), + [aux_sym_seek_statement_token1] = ACTIONS(8692), + [sym_reset_statement] = ACTIONS(8692), + [aux_sym_raise_event_statement_token1] = ACTIONS(8692), + [sym_stop_statement] = ACTIONS(8692), + [sym_beep_statement] = ACTIONS(8692), + [aux_sym_unload_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token2] = ACTIONS(8692), + [aux_sym_def_type_statement_token3] = ACTIONS(8692), + [aux_sym_def_type_statement_token4] = ACTIONS(8692), + [aux_sym_def_type_statement_token5] = ACTIONS(8692), + [aux_sym_def_type_statement_token6] = ACTIONS(8692), + [aux_sym_def_type_statement_token7] = ACTIONS(8692), + [aux_sym_def_type_statement_token8] = ACTIONS(8692), + [aux_sym_def_type_statement_token9] = ACTIONS(8692), + [aux_sym_def_type_statement_token10] = ACTIONS(8692), + [aux_sym_def_type_statement_token11] = ACTIONS(8692), + [aux_sym_def_type_statement_token12] = ACTIONS(8692), + [aux_sym_def_type_statement_token13] = ACTIONS(8692), + [aux_sym_def_type_statement_token14] = ACTIONS(8692), + [aux_sym_call_statement_token1] = ACTIONS(8692), + [sym__ambiguous_call_statement] = ACTIONS(8692), + [aux_sym_addressof_expression_token1] = ACTIONS(8692), + [aux_sym_type_of_expression_token1] = ACTIONS(8692), + [aux_sym_unary_expression_token1] = ACTIONS(8692), + [sym_string_literal] = ACTIONS(8694), + [sym_number_literal] = ACTIONS(8694), + [aux_sym_boolean_literal_token1] = ACTIONS(8692), + [aux_sym_boolean_literal_token2] = ACTIONS(8692), + [sym_nothing_literal] = ACTIONS(8692), + [sym_null_literal] = ACTIONS(8692), + [sym_empty_literal] = ACTIONS(8692), + [sym_date_literal] = ACTIONS(8694), + [anon_sym_POUND] = ACTIONS(8692), + }, + [STATE(5958)] = { + [sym_identifier] = ACTIONS(8881), + [sym_newline] = ACTIONS(8884), + [anon_sym_COLON] = ACTIONS(8884), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8881), + [aux_sym_frm_property_statement_token1] = ACTIONS(8881), + [anon_sym_DOT] = ACTIONS(8881), + [anon_sym_BANG] = ACTIONS(8884), + [aux_sym__attribute_identifier_token1] = ACTIONS(8881), + [aux_sym_option_statement_token3] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8881), + [aux_sym_preprocessor_const_token1] = ACTIONS(8881), + [sym_static_modifier] = ACTIONS(8881), + [sym__dim_keyword] = ACTIONS(8881), + [sym__redim_keyword] = ACTIONS(8881), + [aux_sym_get_accessor_token1] = ACTIONS(8881), + [aux_sym_set_accessor_token1] = ACTIONS(8881), + [aux_sym_const_declaration_token1] = ACTIONS(8881), + [anon_sym_LPAREN] = ACTIONS(8884), + [aux_sym_as_type_clause_token2] = ACTIONS(8881), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8881), + [aux_sym_visibility_token1] = ACTIONS(8881), + [aux_sym_visibility_token2] = ACTIONS(8881), + [aux_sym_elseif_fragment_token1] = ACTIONS(8881), + [aux_sym_else_fragment_token1] = ACTIONS(8881), + [aux_sym_select_statement_token1] = ACTIONS(8881), + [aux_sym_select_statement_token2] = ACTIONS(8887), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8881), + [aux_sym__for_header_token1] = ACTIONS(8881), + [aux_sym_do_statement_token1] = ACTIONS(8881), + [aux_sym_do_condition_token1] = ACTIONS(8881), + [aux_sym_with_statement_token1] = ACTIONS(8881), + [aux_sym_exit_statement_token1] = ACTIONS(8881), + [sym_end_statement] = ACTIONS(8884), + [aux_sym_on_goto_statement_token1] = ACTIONS(8881), + [aux_sym_on_goto_statement_token2] = ACTIONS(8881), + [aux_sym_on_error_statement_token2] = ACTIONS(8881), + [sym__ambiguous_redim_statement] = ACTIONS(8884), + [aux_sym_erase_statement_token1] = ACTIONS(8881), + [aux_sym_open_statement_token1] = ACTIONS(8881), + [aux_sym_file_mode_token2] = ACTIONS(8881), + [aux_sym_file_access_token2] = ACTIONS(8881), + [aux_sym_file_lock_token2] = ACTIONS(8881), + [aux_sym_print_statement_token1] = ACTIONS(8881), + [anon_sym_PLUS] = ACTIONS(8884), + [anon_sym_DASH] = ACTIONS(8881), + [anon_sym_QMARK] = ACTIONS(8884), + [aux_sym_close_statement_token1] = ACTIONS(8881), + [aux_sym_put_statement_token1] = ACTIONS(8881), + [aux_sym_unlock_statement_token1] = ACTIONS(8881), + [aux_sym_seek_statement_token1] = ACTIONS(8881), + [sym_reset_statement] = ACTIONS(8881), + [aux_sym_raise_event_statement_token1] = ACTIONS(8881), + [sym_stop_statement] = ACTIONS(8881), + [sym_beep_statement] = ACTIONS(8881), + [aux_sym_unload_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token2] = ACTIONS(8881), + [aux_sym_def_type_statement_token3] = ACTIONS(8881), + [aux_sym_def_type_statement_token4] = ACTIONS(8881), + [aux_sym_def_type_statement_token5] = ACTIONS(8881), + [aux_sym_def_type_statement_token6] = ACTIONS(8881), + [aux_sym_def_type_statement_token7] = ACTIONS(8881), + [aux_sym_def_type_statement_token8] = ACTIONS(8881), + [aux_sym_def_type_statement_token9] = ACTIONS(8881), + [aux_sym_def_type_statement_token10] = ACTIONS(8881), + [aux_sym_def_type_statement_token11] = ACTIONS(8881), + [aux_sym_def_type_statement_token12] = ACTIONS(8881), + [aux_sym_def_type_statement_token13] = ACTIONS(8881), + [aux_sym_def_type_statement_token14] = ACTIONS(8881), + [aux_sym_call_statement_token1] = ACTIONS(8881), + [sym__ambiguous_call_statement] = ACTIONS(8881), + [aux_sym_addressof_expression_token1] = ACTIONS(8881), + [aux_sym_type_of_expression_token1] = ACTIONS(8881), + [aux_sym_unary_expression_token1] = ACTIONS(8881), + [sym_string_literal] = ACTIONS(8884), + [sym_number_literal] = ACTIONS(8884), + [aux_sym_boolean_literal_token1] = ACTIONS(8881), + [aux_sym_boolean_literal_token2] = ACTIONS(8881), + [sym_nothing_literal] = ACTIONS(8881), + [sym_null_literal] = ACTIONS(8881), + [sym_empty_literal] = ACTIONS(8881), + [sym_date_literal] = ACTIONS(8884), + [anon_sym_POUND] = ACTIONS(8881), + }, + [STATE(5959)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(5960)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6147), + [sym_identifier] = ACTIONS(8935), + [sym_newline] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(10880), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8935), + [aux_sym_frm_property_statement_token1] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_BANG] = ACTIONS(8937), + [aux_sym__attribute_identifier_token1] = ACTIONS(8935), + [aux_sym_option_statement_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8935), + [aux_sym_preprocessor_const_token1] = ACTIONS(8935), + [sym_static_modifier] = ACTIONS(8935), + [sym__dim_keyword] = ACTIONS(8935), + [sym__redim_keyword] = ACTIONS(8935), + [aux_sym_get_accessor_token1] = ACTIONS(8935), + [aux_sym_set_accessor_token1] = ACTIONS(8935), + [aux_sym_const_declaration_token1] = ACTIONS(8935), + [anon_sym_LPAREN] = ACTIONS(8937), + [aux_sym_as_type_clause_token2] = ACTIONS(8935), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8935), + [aux_sym_visibility_token1] = ACTIONS(8935), + [aux_sym_visibility_token2] = ACTIONS(8935), + [aux_sym_elseif_fragment_token1] = ACTIONS(8935), + [aux_sym_else_fragment_token1] = ACTIONS(8935), + [aux_sym_select_statement_token1] = ACTIONS(8935), + [aux_sym_select_statement_token2] = ACTIONS(8935), + [aux_sym__for_header_token1] = ACTIONS(8935), + [aux_sym_do_statement_token1] = ACTIONS(8935), + [aux_sym_do_condition_token1] = ACTIONS(8935), + [aux_sym_with_statement_token1] = ACTIONS(8935), + [aux_sym_exit_statement_token1] = ACTIONS(8935), + [sym_end_statement] = ACTIONS(8937), + [aux_sym_on_goto_statement_token1] = ACTIONS(8935), + [aux_sym_on_goto_statement_token2] = ACTIONS(8935), + [aux_sym_on_error_statement_token2] = ACTIONS(8935), + [sym__ambiguous_redim_statement] = ACTIONS(8937), + [aux_sym_erase_statement_token1] = ACTIONS(8935), + [aux_sym_open_statement_token1] = ACTIONS(8935), + [aux_sym_file_mode_token2] = ACTIONS(8935), + [aux_sym_file_access_token2] = ACTIONS(8935), + [aux_sym_file_lock_token2] = ACTIONS(8935), + [aux_sym_print_statement_token1] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [aux_sym_close_statement_token1] = ACTIONS(8935), + [aux_sym_put_statement_token1] = ACTIONS(8935), + [aux_sym_unlock_statement_token1] = ACTIONS(8935), + [aux_sym_seek_statement_token1] = ACTIONS(8935), + [sym_reset_statement] = ACTIONS(8935), + [aux_sym_raise_event_statement_token1] = ACTIONS(8935), + [sym_stop_statement] = ACTIONS(8935), + [sym_beep_statement] = ACTIONS(8935), + [aux_sym_unload_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token2] = ACTIONS(8935), + [aux_sym_def_type_statement_token3] = ACTIONS(8935), + [aux_sym_def_type_statement_token4] = ACTIONS(8935), + [aux_sym_def_type_statement_token5] = ACTIONS(8935), + [aux_sym_def_type_statement_token6] = ACTIONS(8935), + [aux_sym_def_type_statement_token7] = ACTIONS(8935), + [aux_sym_def_type_statement_token8] = ACTIONS(8935), + [aux_sym_def_type_statement_token9] = ACTIONS(8935), + [aux_sym_def_type_statement_token10] = ACTIONS(8935), + [aux_sym_def_type_statement_token11] = ACTIONS(8935), + [aux_sym_def_type_statement_token12] = ACTIONS(8935), + [aux_sym_def_type_statement_token13] = ACTIONS(8935), + [aux_sym_def_type_statement_token14] = ACTIONS(8935), + [aux_sym_call_statement_token1] = ACTIONS(8935), + [sym__ambiguous_call_statement] = ACTIONS(8935), + [aux_sym_addressof_expression_token1] = ACTIONS(8935), + [aux_sym_type_of_expression_token1] = ACTIONS(8935), + [aux_sym_unary_expression_token1] = ACTIONS(8935), + [sym_string_literal] = ACTIONS(8937), + [sym_number_literal] = ACTIONS(8937), + [aux_sym_boolean_literal_token1] = ACTIONS(8935), + [aux_sym_boolean_literal_token2] = ACTIONS(8935), + [sym_nothing_literal] = ACTIONS(8935), + [sym_null_literal] = ACTIONS(8935), + [sym_empty_literal] = ACTIONS(8935), + [sym_date_literal] = ACTIONS(8937), + [anon_sym_POUND] = ACTIONS(8935), + }, + [STATE(5961)] = { + [sym_identifier] = ACTIONS(8756), + [sym_newline] = ACTIONS(8759), + [anon_sym_COLON] = ACTIONS(8759), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8756), + [aux_sym_frm_property_statement_token1] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8756), + [anon_sym_BANG] = ACTIONS(8759), + [aux_sym__attribute_identifier_token1] = ACTIONS(8756), + [aux_sym_option_statement_token3] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8762), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8756), + [aux_sym_preprocessor_const_token1] = ACTIONS(8756), + [sym_static_modifier] = ACTIONS(8756), + [sym__dim_keyword] = ACTIONS(8756), + [sym__redim_keyword] = ACTIONS(8756), + [aux_sym_get_accessor_token1] = ACTIONS(8756), + [aux_sym_set_accessor_token1] = ACTIONS(8756), + [aux_sym_const_declaration_token1] = ACTIONS(8756), + [anon_sym_LPAREN] = ACTIONS(8759), + [aux_sym_as_type_clause_token2] = ACTIONS(8756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8756), + [aux_sym_visibility_token1] = ACTIONS(8756), + [aux_sym_visibility_token2] = ACTIONS(8756), + [aux_sym_elseif_fragment_token1] = ACTIONS(8756), + [aux_sym_else_fragment_token1] = ACTIONS(8756), + [aux_sym_select_statement_token1] = ACTIONS(8756), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8756), + [aux_sym__for_header_token1] = ACTIONS(8756), + [aux_sym_do_statement_token1] = ACTIONS(8756), + [aux_sym_do_condition_token1] = ACTIONS(8756), + [aux_sym_with_statement_token1] = ACTIONS(8756), + [aux_sym_exit_statement_token1] = ACTIONS(8756), + [sym_end_statement] = ACTIONS(8759), + [aux_sym_on_goto_statement_token1] = ACTIONS(8756), + [aux_sym_on_goto_statement_token2] = ACTIONS(8756), + [aux_sym_on_error_statement_token2] = ACTIONS(8756), + [sym__ambiguous_redim_statement] = ACTIONS(8759), + [aux_sym_erase_statement_token1] = ACTIONS(8756), + [aux_sym_open_statement_token1] = ACTIONS(8756), + [aux_sym_file_mode_token2] = ACTIONS(8756), + [aux_sym_file_access_token2] = ACTIONS(8756), + [aux_sym_file_lock_token2] = ACTIONS(8756), + [aux_sym_print_statement_token1] = ACTIONS(8756), + [anon_sym_PLUS] = ACTIONS(8759), + [anon_sym_DASH] = ACTIONS(8756), + [anon_sym_QMARK] = ACTIONS(8759), + [aux_sym_close_statement_token1] = ACTIONS(8756), + [aux_sym_put_statement_token1] = ACTIONS(8756), + [aux_sym_unlock_statement_token1] = ACTIONS(8756), + [aux_sym_seek_statement_token1] = ACTIONS(8756), + [sym_reset_statement] = ACTIONS(8756), + [aux_sym_raise_event_statement_token1] = ACTIONS(8756), + [sym_stop_statement] = ACTIONS(8756), + [sym_beep_statement] = ACTIONS(8756), + [aux_sym_unload_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token2] = ACTIONS(8756), + [aux_sym_def_type_statement_token3] = ACTIONS(8756), + [aux_sym_def_type_statement_token4] = ACTIONS(8756), + [aux_sym_def_type_statement_token5] = ACTIONS(8756), + [aux_sym_def_type_statement_token6] = ACTIONS(8756), + [aux_sym_def_type_statement_token7] = ACTIONS(8756), + [aux_sym_def_type_statement_token8] = ACTIONS(8756), + [aux_sym_def_type_statement_token9] = ACTIONS(8756), + [aux_sym_def_type_statement_token10] = ACTIONS(8756), + [aux_sym_def_type_statement_token11] = ACTIONS(8756), + [aux_sym_def_type_statement_token12] = ACTIONS(8756), + [aux_sym_def_type_statement_token13] = ACTIONS(8756), + [aux_sym_def_type_statement_token14] = ACTIONS(8756), + [aux_sym_call_statement_token1] = ACTIONS(8756), + [sym__ambiguous_call_statement] = ACTIONS(8756), + [aux_sym_addressof_expression_token1] = ACTIONS(8756), + [aux_sym_type_of_expression_token1] = ACTIONS(8756), + [aux_sym_unary_expression_token1] = ACTIONS(8756), + [sym_string_literal] = ACTIONS(8759), + [sym_number_literal] = ACTIONS(8759), + [aux_sym_boolean_literal_token1] = ACTIONS(8756), + [aux_sym_boolean_literal_token2] = ACTIONS(8756), + [sym_nothing_literal] = ACTIONS(8756), + [sym_null_literal] = ACTIONS(8756), + [sym_empty_literal] = ACTIONS(8756), + [sym_date_literal] = ACTIONS(8759), + [anon_sym_POUND] = ACTIONS(8756), + }, + [STATE(5962)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5962), + [sym_identifier] = ACTIONS(8386), + [sym_newline] = ACTIONS(8388), + [anon_sym_COLON] = ACTIONS(8388), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8386), + [aux_sym_frm_property_statement_token1] = ACTIONS(8386), + [anon_sym_DOT] = ACTIONS(8386), + [anon_sym_BANG] = ACTIONS(8388), + [aux_sym__attribute_identifier_token1] = ACTIONS(8386), + [aux_sym_option_statement_token3] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8386), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8386), + [aux_sym_preprocessor_const_token1] = ACTIONS(8386), + [sym_static_modifier] = ACTIONS(8386), + [sym__dim_keyword] = ACTIONS(8386), + [sym__redim_keyword] = ACTIONS(8386), + [aux_sym_get_accessor_token1] = ACTIONS(8386), + [aux_sym_set_accessor_token1] = ACTIONS(8386), + [anon_sym_COMMA] = ACTIONS(10907), + [aux_sym_const_declaration_token1] = ACTIONS(8386), + [anon_sym_LPAREN] = ACTIONS(8388), + [aux_sym_as_type_clause_token2] = ACTIONS(8386), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8386), + [aux_sym_visibility_token1] = ACTIONS(8386), + [aux_sym_visibility_token2] = ACTIONS(8386), + [aux_sym_elseif_fragment_token1] = ACTIONS(8386), + [aux_sym_else_fragment_token1] = ACTIONS(8386), + [aux_sym_select_statement_token1] = ACTIONS(8386), + [aux_sym__for_header_token1] = ACTIONS(8386), + [aux_sym_do_statement_token1] = ACTIONS(8386), + [aux_sym_do_condition_token1] = ACTIONS(8386), + [aux_sym_with_statement_token1] = ACTIONS(8386), + [aux_sym_exit_statement_token1] = ACTIONS(8386), + [sym_end_statement] = ACTIONS(8388), + [aux_sym_on_goto_statement_token1] = ACTIONS(8386), + [aux_sym_on_goto_statement_token2] = ACTIONS(8386), + [aux_sym_on_error_statement_token2] = ACTIONS(8386), + [sym__ambiguous_redim_statement] = ACTIONS(8388), + [aux_sym_erase_statement_token1] = ACTIONS(8386), + [aux_sym_open_statement_token1] = ACTIONS(8386), + [aux_sym_file_mode_token2] = ACTIONS(8386), + [aux_sym_file_access_token2] = ACTIONS(8386), + [aux_sym_file_lock_token2] = ACTIONS(8386), + [aux_sym_print_statement_token1] = ACTIONS(8386), + [anon_sym_PLUS] = ACTIONS(8388), + [anon_sym_DASH] = ACTIONS(8386), + [anon_sym_QMARK] = ACTIONS(8388), + [aux_sym_close_statement_token1] = ACTIONS(8386), + [aux_sym_put_statement_token1] = ACTIONS(8386), + [aux_sym_unlock_statement_token1] = ACTIONS(8386), + [aux_sym_seek_statement_token1] = ACTIONS(8386), + [sym_reset_statement] = ACTIONS(8386), + [aux_sym_raise_event_statement_token1] = ACTIONS(8386), + [sym_stop_statement] = ACTIONS(8386), + [sym_beep_statement] = ACTIONS(8386), + [aux_sym_unload_statement_token1] = ACTIONS(8386), + [aux_sym_def_type_statement_token1] = ACTIONS(8386), + [aux_sym_def_type_statement_token2] = ACTIONS(8386), + [aux_sym_def_type_statement_token3] = ACTIONS(8386), + [aux_sym_def_type_statement_token4] = ACTIONS(8386), + [aux_sym_def_type_statement_token5] = ACTIONS(8386), + [aux_sym_def_type_statement_token6] = ACTIONS(8386), + [aux_sym_def_type_statement_token7] = ACTIONS(8386), + [aux_sym_def_type_statement_token8] = ACTIONS(8386), + [aux_sym_def_type_statement_token9] = ACTIONS(8386), + [aux_sym_def_type_statement_token10] = ACTIONS(8386), + [aux_sym_def_type_statement_token11] = ACTIONS(8386), + [aux_sym_def_type_statement_token12] = ACTIONS(8386), + [aux_sym_def_type_statement_token13] = ACTIONS(8386), + [aux_sym_def_type_statement_token14] = ACTIONS(8386), + [aux_sym_call_statement_token1] = ACTIONS(8386), + [sym__ambiguous_call_statement] = ACTIONS(8386), + [aux_sym_addressof_expression_token1] = ACTIONS(8386), + [aux_sym_type_of_expression_token1] = ACTIONS(8386), + [aux_sym_unary_expression_token1] = ACTIONS(8386), + [sym_string_literal] = ACTIONS(8388), + [sym_number_literal] = ACTIONS(8388), + [aux_sym_boolean_literal_token1] = ACTIONS(8386), + [aux_sym_boolean_literal_token2] = ACTIONS(8386), + [sym_nothing_literal] = ACTIONS(8386), + [sym_null_literal] = ACTIONS(8386), + [sym_empty_literal] = ACTIONS(8386), + [sym_date_literal] = ACTIONS(8388), + [anon_sym_POUND] = ACTIONS(8386), + }, + [STATE(5963)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(5848), + [sym_identifier] = ACTIONS(8772), + [sym_newline] = ACTIONS(8774), + [anon_sym_COLON] = ACTIONS(8774), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8772), + [aux_sym_frm_property_statement_token1] = ACTIONS(8772), + [anon_sym_DOT] = ACTIONS(8772), + [anon_sym_BANG] = ACTIONS(8774), + [aux_sym__attribute_identifier_token1] = ACTIONS(8772), + [aux_sym_option_statement_token3] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8772), + [aux_sym_preprocessor_const_token1] = ACTIONS(8772), + [sym_static_modifier] = ACTIONS(8772), + [sym__dim_keyword] = ACTIONS(8772), + [sym__redim_keyword] = ACTIONS(8772), + [aux_sym_get_accessor_token1] = ACTIONS(8772), + [aux_sym_set_accessor_token1] = ACTIONS(8772), + [aux_sym_const_declaration_token1] = ACTIONS(8772), + [anon_sym_LPAREN] = ACTIONS(8774), + [aux_sym_as_type_clause_token2] = ACTIONS(8772), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8772), + [aux_sym_visibility_token1] = ACTIONS(8772), + [aux_sym_visibility_token2] = ACTIONS(8772), + [aux_sym_elseif_fragment_token1] = ACTIONS(8772), + [aux_sym_else_fragment_token1] = ACTIONS(8772), + [aux_sym_select_statement_token1] = ACTIONS(8772), + [aux_sym__for_header_token1] = ACTIONS(8772), + [aux_sym_do_statement_token1] = ACTIONS(8772), + [aux_sym_do_statement_token2] = ACTIONS(8772), + [aux_sym_do_condition_token1] = ACTIONS(8772), + [aux_sym_with_statement_token1] = ACTIONS(8772), + [aux_sym_exit_statement_token1] = ACTIONS(8772), + [sym_end_statement] = ACTIONS(8774), + [aux_sym_on_goto_statement_token1] = ACTIONS(8772), + [aux_sym_on_goto_statement_token2] = ACTIONS(8772), + [aux_sym_on_error_statement_token2] = ACTIONS(8772), + [sym__ambiguous_redim_statement] = ACTIONS(8774), + [aux_sym_erase_statement_token1] = ACTIONS(8772), + [aux_sym_open_statement_token1] = ACTIONS(8772), + [aux_sym_file_mode_token2] = ACTIONS(8772), + [aux_sym_file_access_token2] = ACTIONS(8772), + [aux_sym_file_lock_token2] = ACTIONS(8772), + [aux_sym_print_statement_token1] = ACTIONS(8772), + [anon_sym_PLUS] = ACTIONS(8774), + [anon_sym_DASH] = ACTIONS(8772), + [anon_sym_QMARK] = ACTIONS(8774), + [aux_sym_close_statement_token1] = ACTIONS(8772), + [aux_sym_put_statement_token1] = ACTIONS(8772), + [aux_sym_unlock_statement_token1] = ACTIONS(8772), + [aux_sym_seek_statement_token1] = ACTIONS(8772), + [sym_reset_statement] = ACTIONS(8772), + [aux_sym_raise_event_statement_token1] = ACTIONS(8772), + [sym_stop_statement] = ACTIONS(8772), + [sym_beep_statement] = ACTIONS(8772), + [aux_sym_unload_statement_token1] = ACTIONS(8772), + [aux_sym_def_type_statement_token1] = ACTIONS(8772), + [aux_sym_def_type_statement_token2] = ACTIONS(8772), + [aux_sym_def_type_statement_token3] = ACTIONS(8772), + [aux_sym_def_type_statement_token4] = ACTIONS(8772), + [aux_sym_def_type_statement_token5] = ACTIONS(8772), + [aux_sym_def_type_statement_token6] = ACTIONS(8772), + [aux_sym_def_type_statement_token7] = ACTIONS(8772), + [aux_sym_def_type_statement_token8] = ACTIONS(8772), + [aux_sym_def_type_statement_token9] = ACTIONS(8772), + [aux_sym_def_type_statement_token10] = ACTIONS(8772), + [aux_sym_def_type_statement_token11] = ACTIONS(8772), + [aux_sym_def_type_statement_token12] = ACTIONS(8772), + [aux_sym_def_type_statement_token13] = ACTIONS(8772), + [aux_sym_def_type_statement_token14] = ACTIONS(8772), + [aux_sym_call_statement_token1] = ACTIONS(8772), + [sym__ambiguous_call_statement] = ACTIONS(8772), + [aux_sym_addressof_expression_token1] = ACTIONS(8772), + [aux_sym_type_of_expression_token1] = ACTIONS(8772), + [aux_sym_unary_expression_token1] = ACTIONS(8772), + [sym_string_literal] = ACTIONS(8774), + [sym_number_literal] = ACTIONS(8774), + [aux_sym_boolean_literal_token1] = ACTIONS(8772), + [aux_sym_boolean_literal_token2] = ACTIONS(8772), + [sym_nothing_literal] = ACTIONS(8772), + [sym_null_literal] = ACTIONS(8772), + [sym_empty_literal] = ACTIONS(8772), + [sym_date_literal] = ACTIONS(8774), + [anon_sym_POUND] = ACTIONS(8772), + }, + [STATE(5964)] = { + [aux_sym_variable_declaration_repeat1] = STATE(6148), + [sym_identifier] = ACTIONS(8336), + [sym_newline] = ACTIONS(8338), + [anon_sym_COLON] = ACTIONS(8338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8336), + [aux_sym_frm_property_statement_token1] = ACTIONS(8336), + [anon_sym_DOT] = ACTIONS(8336), + [anon_sym_BANG] = ACTIONS(8338), + [aux_sym__attribute_identifier_token1] = ACTIONS(8336), + [aux_sym_option_statement_token3] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8336), + [aux_sym_preprocessor_const_token1] = ACTIONS(8336), + [sym_static_modifier] = ACTIONS(8336), + [sym__dim_keyword] = ACTIONS(8336), + [sym__redim_keyword] = ACTIONS(8336), + [aux_sym_get_accessor_token1] = ACTIONS(8336), + [aux_sym_set_accessor_token1] = ACTIONS(8336), + [anon_sym_COMMA] = ACTIONS(10844), + [aux_sym_const_declaration_token1] = ACTIONS(8336), + [anon_sym_LPAREN] = ACTIONS(8338), + [aux_sym_as_type_clause_token2] = ACTIONS(8336), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8336), + [aux_sym_visibility_token1] = ACTIONS(8336), + [aux_sym_visibility_token2] = ACTIONS(8336), + [aux_sym_elseif_fragment_token1] = ACTIONS(8336), + [aux_sym_else_fragment_token1] = ACTIONS(8336), + [aux_sym_select_statement_token1] = ACTIONS(8336), + [aux_sym__for_header_token1] = ACTIONS(8336), + [aux_sym_do_statement_token1] = ACTIONS(8336), + [aux_sym_do_condition_token1] = ACTIONS(8336), + [aux_sym_with_statement_token1] = ACTIONS(8336), + [aux_sym_exit_statement_token1] = ACTIONS(8336), + [sym_end_statement] = ACTIONS(8338), + [aux_sym_on_goto_statement_token1] = ACTIONS(8336), + [aux_sym_on_goto_statement_token2] = ACTIONS(8336), + [aux_sym_on_error_statement_token2] = ACTIONS(8336), + [sym__ambiguous_redim_statement] = ACTIONS(8338), + [aux_sym_erase_statement_token1] = ACTIONS(8336), + [aux_sym_open_statement_token1] = ACTIONS(8336), + [aux_sym_file_mode_token2] = ACTIONS(8336), + [aux_sym_file_access_token2] = ACTIONS(8336), + [aux_sym_file_lock_token2] = ACTIONS(8336), + [aux_sym_print_statement_token1] = ACTIONS(8336), + [anon_sym_PLUS] = ACTIONS(8338), + [anon_sym_DASH] = ACTIONS(8336), + [anon_sym_QMARK] = ACTIONS(8338), + [aux_sym_close_statement_token1] = ACTIONS(8336), + [aux_sym_put_statement_token1] = ACTIONS(8336), + [aux_sym_unlock_statement_token1] = ACTIONS(8336), + [aux_sym_seek_statement_token1] = ACTIONS(8336), + [sym_reset_statement] = ACTIONS(8336), + [aux_sym_raise_event_statement_token1] = ACTIONS(8336), + [sym_stop_statement] = ACTIONS(8336), + [sym_beep_statement] = ACTIONS(8336), + [aux_sym_unload_statement_token1] = ACTIONS(8336), + [aux_sym_def_type_statement_token1] = ACTIONS(8336), + [aux_sym_def_type_statement_token2] = ACTIONS(8336), + [aux_sym_def_type_statement_token3] = ACTIONS(8336), + [aux_sym_def_type_statement_token4] = ACTIONS(8336), + [aux_sym_def_type_statement_token5] = ACTIONS(8336), + [aux_sym_def_type_statement_token6] = ACTIONS(8336), + [aux_sym_def_type_statement_token7] = ACTIONS(8336), + [aux_sym_def_type_statement_token8] = ACTIONS(8336), + [aux_sym_def_type_statement_token9] = ACTIONS(8336), + [aux_sym_def_type_statement_token10] = ACTIONS(8336), + [aux_sym_def_type_statement_token11] = ACTIONS(8336), + [aux_sym_def_type_statement_token12] = ACTIONS(8336), + [aux_sym_def_type_statement_token13] = ACTIONS(8336), + [aux_sym_def_type_statement_token14] = ACTIONS(8336), + [aux_sym_call_statement_token1] = ACTIONS(8336), + [sym__ambiguous_call_statement] = ACTIONS(8336), + [aux_sym_addressof_expression_token1] = ACTIONS(8336), + [aux_sym_type_of_expression_token1] = ACTIONS(8336), + [aux_sym_unary_expression_token1] = ACTIONS(8336), + [sym_string_literal] = ACTIONS(8338), + [sym_number_literal] = ACTIONS(8338), + [aux_sym_boolean_literal_token1] = ACTIONS(8336), + [aux_sym_boolean_literal_token2] = ACTIONS(8336), + [sym_nothing_literal] = ACTIONS(8336), + [sym_null_literal] = ACTIONS(8336), + [sym_empty_literal] = ACTIONS(8336), + [sym_date_literal] = ACTIONS(8338), + [anon_sym_POUND] = ACTIONS(8336), + }, + [STATE(5965)] = { + [sym_identifier] = ACTIONS(8847), + [sym_newline] = ACTIONS(8849), + [anon_sym_COLON] = ACTIONS(8849), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8847), + [aux_sym_frm_property_statement_token1] = ACTIONS(8847), + [anon_sym_DOT] = ACTIONS(8847), + [anon_sym_BANG] = ACTIONS(8849), + [aux_sym__attribute_identifier_token1] = ACTIONS(8847), + [aux_sym_option_statement_token3] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8847), + [aux_sym_preprocessor_const_token1] = ACTIONS(8847), + [sym_static_modifier] = ACTIONS(8847), + [sym__dim_keyword] = ACTIONS(8847), + [sym__redim_keyword] = ACTIONS(8847), + [aux_sym_get_accessor_token1] = ACTIONS(8847), + [aux_sym_set_accessor_token1] = ACTIONS(8847), + [anon_sym_COMMA] = ACTIONS(8849), + [aux_sym_const_declaration_token1] = ACTIONS(8847), + [anon_sym_LPAREN] = ACTIONS(8849), + [aux_sym_as_type_clause_token2] = ACTIONS(8847), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8847), + [aux_sym_visibility_token1] = ACTIONS(8847), + [aux_sym_visibility_token2] = ACTIONS(8847), + [aux_sym_elseif_fragment_token1] = ACTIONS(8847), + [aux_sym_else_fragment_token1] = ACTIONS(8847), + [aux_sym_select_statement_token1] = ACTIONS(8847), + [aux_sym__for_header_token1] = ACTIONS(8847), + [aux_sym_do_statement_token1] = ACTIONS(8847), + [aux_sym_do_condition_token1] = ACTIONS(8847), + [aux_sym_with_statement_token1] = ACTIONS(8847), + [aux_sym_exit_statement_token1] = ACTIONS(8847), + [sym_end_statement] = ACTIONS(8849), + [aux_sym_on_goto_statement_token1] = ACTIONS(8847), + [aux_sym_on_goto_statement_token2] = ACTIONS(8847), + [aux_sym_on_error_statement_token2] = ACTIONS(8847), + [sym__ambiguous_redim_statement] = ACTIONS(8849), + [aux_sym_erase_statement_token1] = ACTIONS(8847), + [aux_sym_open_statement_token1] = ACTIONS(8847), + [aux_sym_file_mode_token2] = ACTIONS(8847), + [aux_sym_file_access_token2] = ACTIONS(8847), + [aux_sym_file_lock_token2] = ACTIONS(8847), + [aux_sym_print_statement_token1] = ACTIONS(8847), + [anon_sym_PLUS] = ACTIONS(8849), + [anon_sym_DASH] = ACTIONS(10910), + [anon_sym_QMARK] = ACTIONS(8849), + [aux_sym_close_statement_token1] = ACTIONS(8847), + [aux_sym_put_statement_token1] = ACTIONS(8847), + [aux_sym_unlock_statement_token1] = ACTIONS(8847), + [aux_sym_seek_statement_token1] = ACTIONS(8847), + [sym_reset_statement] = ACTIONS(8847), + [aux_sym_raise_event_statement_token1] = ACTIONS(8847), + [sym_stop_statement] = ACTIONS(8847), + [sym_beep_statement] = ACTIONS(8847), + [aux_sym_unload_statement_token1] = ACTIONS(8847), + [aux_sym_def_type_statement_token1] = ACTIONS(8847), + [aux_sym_def_type_statement_token2] = ACTIONS(8847), + [aux_sym_def_type_statement_token3] = ACTIONS(8847), + [aux_sym_def_type_statement_token4] = ACTIONS(8847), + [aux_sym_def_type_statement_token5] = ACTIONS(8847), + [aux_sym_def_type_statement_token6] = ACTIONS(8847), + [aux_sym_def_type_statement_token7] = ACTIONS(8847), + [aux_sym_def_type_statement_token8] = ACTIONS(8847), + [aux_sym_def_type_statement_token9] = ACTIONS(8847), + [aux_sym_def_type_statement_token10] = ACTIONS(8847), + [aux_sym_def_type_statement_token11] = ACTIONS(8847), + [aux_sym_def_type_statement_token12] = ACTIONS(8847), + [aux_sym_def_type_statement_token13] = ACTIONS(8847), + [aux_sym_def_type_statement_token14] = ACTIONS(8847), + [aux_sym_call_statement_token1] = ACTIONS(8847), + [sym__ambiguous_call_statement] = ACTIONS(8847), + [aux_sym_addressof_expression_token1] = ACTIONS(8847), + [aux_sym_type_of_expression_token1] = ACTIONS(8847), + [aux_sym_unary_expression_token1] = ACTIONS(8847), + [sym_string_literal] = ACTIONS(8849), + [sym_number_literal] = ACTIONS(8849), + [aux_sym_boolean_literal_token1] = ACTIONS(8847), + [aux_sym_boolean_literal_token2] = ACTIONS(8847), + [sym_nothing_literal] = ACTIONS(8847), + [sym_null_literal] = ACTIONS(8847), + [sym_empty_literal] = ACTIONS(8847), + [sym_date_literal] = ACTIONS(8849), + [anon_sym_POUND] = ACTIONS(8847), + }, + [STATE(5966)] = { + [aux_sym_const_declaration_repeat1] = STATE(6149), + [sym_identifier] = ACTIONS(8346), + [sym_newline] = ACTIONS(8348), + [anon_sym_COLON] = ACTIONS(8348), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8346), + [aux_sym_frm_property_statement_token1] = ACTIONS(8346), + [anon_sym_DOT] = ACTIONS(8346), + [anon_sym_BANG] = ACTIONS(8348), + [aux_sym__attribute_identifier_token1] = ACTIONS(8346), + [aux_sym_option_statement_token3] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8346), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8346), + [aux_sym_preprocessor_const_token1] = ACTIONS(8346), + [sym_static_modifier] = ACTIONS(8346), + [sym__dim_keyword] = ACTIONS(8346), + [sym__redim_keyword] = ACTIONS(8346), + [aux_sym_get_accessor_token1] = ACTIONS(8346), + [aux_sym_set_accessor_token1] = ACTIONS(8346), + [anon_sym_COMMA] = ACTIONS(10891), + [aux_sym_const_declaration_token1] = ACTIONS(8346), + [anon_sym_LPAREN] = ACTIONS(8348), + [aux_sym_as_type_clause_token2] = ACTIONS(8346), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8346), + [aux_sym_visibility_token1] = ACTIONS(8346), + [aux_sym_visibility_token2] = ACTIONS(8346), + [aux_sym_elseif_fragment_token1] = ACTIONS(8346), + [aux_sym_else_fragment_token1] = ACTIONS(8346), + [aux_sym_select_statement_token1] = ACTIONS(8346), + [aux_sym__for_header_token1] = ACTIONS(8346), + [aux_sym_do_statement_token1] = ACTIONS(8346), + [aux_sym_do_condition_token1] = ACTIONS(8346), + [aux_sym_with_statement_token1] = ACTIONS(8346), + [aux_sym_exit_statement_token1] = ACTIONS(8346), + [sym_end_statement] = ACTIONS(8348), + [aux_sym_on_goto_statement_token1] = ACTIONS(8346), + [aux_sym_on_goto_statement_token2] = ACTIONS(8346), + [aux_sym_on_error_statement_token2] = ACTIONS(8346), + [sym__ambiguous_redim_statement] = ACTIONS(8348), + [aux_sym_erase_statement_token1] = ACTIONS(8346), + [aux_sym_open_statement_token1] = ACTIONS(8346), + [aux_sym_file_mode_token2] = ACTIONS(8346), + [aux_sym_file_access_token2] = ACTIONS(8346), + [aux_sym_file_lock_token2] = ACTIONS(8346), + [aux_sym_print_statement_token1] = ACTIONS(8346), + [anon_sym_PLUS] = ACTIONS(8348), + [anon_sym_DASH] = ACTIONS(8346), + [anon_sym_QMARK] = ACTIONS(8348), + [aux_sym_close_statement_token1] = ACTIONS(8346), + [aux_sym_put_statement_token1] = ACTIONS(8346), + [aux_sym_unlock_statement_token1] = ACTIONS(8346), + [aux_sym_seek_statement_token1] = ACTIONS(8346), + [sym_reset_statement] = ACTIONS(8346), + [aux_sym_raise_event_statement_token1] = ACTIONS(8346), + [sym_stop_statement] = ACTIONS(8346), + [sym_beep_statement] = ACTIONS(8346), + [aux_sym_unload_statement_token1] = ACTIONS(8346), + [aux_sym_def_type_statement_token1] = ACTIONS(8346), + [aux_sym_def_type_statement_token2] = ACTIONS(8346), + [aux_sym_def_type_statement_token3] = ACTIONS(8346), + [aux_sym_def_type_statement_token4] = ACTIONS(8346), + [aux_sym_def_type_statement_token5] = ACTIONS(8346), + [aux_sym_def_type_statement_token6] = ACTIONS(8346), + [aux_sym_def_type_statement_token7] = ACTIONS(8346), + [aux_sym_def_type_statement_token8] = ACTIONS(8346), + [aux_sym_def_type_statement_token9] = ACTIONS(8346), + [aux_sym_def_type_statement_token10] = ACTIONS(8346), + [aux_sym_def_type_statement_token11] = ACTIONS(8346), + [aux_sym_def_type_statement_token12] = ACTIONS(8346), + [aux_sym_def_type_statement_token13] = ACTIONS(8346), + [aux_sym_def_type_statement_token14] = ACTIONS(8346), + [aux_sym_call_statement_token1] = ACTIONS(8346), + [sym__ambiguous_call_statement] = ACTIONS(8346), + [aux_sym_addressof_expression_token1] = ACTIONS(8346), + [aux_sym_type_of_expression_token1] = ACTIONS(8346), + [aux_sym_unary_expression_token1] = ACTIONS(8346), + [sym_string_literal] = ACTIONS(8348), + [sym_number_literal] = ACTIONS(8348), + [aux_sym_boolean_literal_token1] = ACTIONS(8346), + [aux_sym_boolean_literal_token2] = ACTIONS(8346), + [sym_nothing_literal] = ACTIONS(8346), + [sym_null_literal] = ACTIONS(8346), + [sym_empty_literal] = ACTIONS(8346), + [sym_date_literal] = ACTIONS(8348), + [anon_sym_POUND] = ACTIONS(8346), + }, + [STATE(5967)] = { + [sym_identifier] = ACTIONS(8533), + [sym_newline] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(8535), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8533), + [aux_sym_frm_property_statement_token1] = ACTIONS(8533), + [anon_sym_DOT] = ACTIONS(8533), + [anon_sym_BANG] = ACTIONS(8535), + [aux_sym__attribute_identifier_token1] = ACTIONS(8533), + [aux_sym_option_statement_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8533), + [aux_sym_preprocessor_const_token1] = ACTIONS(8533), + [sym_static_modifier] = ACTIONS(8533), + [sym__dim_keyword] = ACTIONS(8533), + [sym__redim_keyword] = ACTIONS(8533), + [aux_sym_get_accessor_token1] = ACTIONS(8533), + [aux_sym_set_accessor_token1] = ACTIONS(8533), + [anon_sym_COMMA] = ACTIONS(8535), + [aux_sym_const_declaration_token1] = ACTIONS(8533), + [anon_sym_LPAREN] = ACTIONS(8535), + [aux_sym_as_type_clause_token2] = ACTIONS(8533), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8533), + [aux_sym_visibility_token1] = ACTIONS(8533), + [aux_sym_visibility_token2] = ACTIONS(8533), + [aux_sym_elseif_fragment_token1] = ACTIONS(8533), + [aux_sym_else_fragment_token1] = ACTIONS(8533), + [aux_sym_select_statement_token1] = ACTIONS(8533), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8533), + [aux_sym__for_header_token1] = ACTIONS(8533), + [aux_sym_do_statement_token1] = ACTIONS(8533), + [aux_sym_do_condition_token1] = ACTIONS(8533), + [aux_sym_with_statement_token1] = ACTIONS(8533), + [aux_sym_exit_statement_token1] = ACTIONS(8533), + [sym_end_statement] = ACTIONS(8535), + [aux_sym_on_goto_statement_token1] = ACTIONS(8533), + [aux_sym_on_goto_statement_token2] = ACTIONS(8533), + [aux_sym_on_error_statement_token2] = ACTIONS(8533), + [sym__ambiguous_redim_statement] = ACTIONS(8535), + [aux_sym_erase_statement_token1] = ACTIONS(8533), + [aux_sym_open_statement_token1] = ACTIONS(8533), + [aux_sym_file_mode_token2] = ACTIONS(8533), + [aux_sym_file_access_token2] = ACTIONS(8533), + [aux_sym_file_lock_token2] = ACTIONS(8533), + [aux_sym_print_statement_token1] = ACTIONS(8533), + [anon_sym_PLUS] = ACTIONS(8535), + [anon_sym_DASH] = ACTIONS(8533), + [anon_sym_QMARK] = ACTIONS(8535), + [aux_sym_close_statement_token1] = ACTIONS(8533), + [aux_sym_put_statement_token1] = ACTIONS(8533), + [aux_sym_unlock_statement_token1] = ACTIONS(8533), + [aux_sym_seek_statement_token1] = ACTIONS(8533), + [sym_reset_statement] = ACTIONS(8533), + [aux_sym_raise_event_statement_token1] = ACTIONS(8533), + [sym_stop_statement] = ACTIONS(8533), + [sym_beep_statement] = ACTIONS(8533), + [aux_sym_unload_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token2] = ACTIONS(8533), + [aux_sym_def_type_statement_token3] = ACTIONS(8533), + [aux_sym_def_type_statement_token4] = ACTIONS(8533), + [aux_sym_def_type_statement_token5] = ACTIONS(8533), + [aux_sym_def_type_statement_token6] = ACTIONS(8533), + [aux_sym_def_type_statement_token7] = ACTIONS(8533), + [aux_sym_def_type_statement_token8] = ACTIONS(8533), + [aux_sym_def_type_statement_token9] = ACTIONS(8533), + [aux_sym_def_type_statement_token10] = ACTIONS(8533), + [aux_sym_def_type_statement_token11] = ACTIONS(8533), + [aux_sym_def_type_statement_token12] = ACTIONS(8533), + [aux_sym_def_type_statement_token13] = ACTIONS(8533), + [aux_sym_def_type_statement_token14] = ACTIONS(8533), + [aux_sym_call_statement_token1] = ACTIONS(8533), + [sym__ambiguous_call_statement] = ACTIONS(8533), + [aux_sym_addressof_expression_token1] = ACTIONS(8533), + [aux_sym_type_of_expression_token1] = ACTIONS(8533), + [aux_sym_unary_expression_token1] = ACTIONS(8533), + [sym_string_literal] = ACTIONS(8535), + [sym_number_literal] = ACTIONS(8535), + [aux_sym_boolean_literal_token1] = ACTIONS(8533), + [aux_sym_boolean_literal_token2] = ACTIONS(8533), + [sym_nothing_literal] = ACTIONS(8533), + [sym_null_literal] = ACTIONS(8533), + [sym_empty_literal] = ACTIONS(8533), + [sym_date_literal] = ACTIONS(8535), + [anon_sym_POUND] = ACTIONS(8533), + }, + [STATE(5968)] = { + [sym_identifier] = ACTIONS(8109), + [sym_newline] = ACTIONS(8111), + [anon_sym_COLON] = ACTIONS(8111), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8109), + [aux_sym_frm_property_statement_token1] = ACTIONS(8109), + [anon_sym_DOT] = ACTIONS(8109), + [anon_sym_BANG] = ACTIONS(8111), + [aux_sym__attribute_identifier_token1] = ACTIONS(8109), + [aux_sym_option_statement_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8109), + [aux_sym_preprocessor_const_token1] = ACTIONS(8109), + [sym_static_modifier] = ACTIONS(8109), + [sym__dim_keyword] = ACTIONS(8109), + [sym__redim_keyword] = ACTIONS(8109), + [aux_sym_get_accessor_token1] = ACTIONS(8109), + [aux_sym_set_accessor_token1] = ACTIONS(8109), + [aux_sym_const_declaration_token1] = ACTIONS(8109), + [anon_sym_LPAREN] = ACTIONS(8111), + [aux_sym_as_type_clause_token2] = ACTIONS(8109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8109), + [aux_sym_visibility_token1] = ACTIONS(8109), + [aux_sym_visibility_token2] = ACTIONS(8109), + [aux_sym_elseif_fragment_token1] = ACTIONS(8109), + [aux_sym_else_fragment_token1] = ACTIONS(8109), + [aux_sym_select_statement_token1] = ACTIONS(8109), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8109), + [aux_sym__for_header_token1] = ACTIONS(8109), + [aux_sym_do_statement_token1] = ACTIONS(8109), + [aux_sym_do_condition_token1] = ACTIONS(8109), + [aux_sym_with_statement_token1] = ACTIONS(8109), + [aux_sym_exit_statement_token1] = ACTIONS(8109), + [sym_end_statement] = ACTIONS(8111), + [aux_sym_on_goto_statement_token1] = ACTIONS(8109), + [aux_sym_on_goto_statement_token2] = ACTIONS(8109), + [aux_sym_on_error_statement_token2] = ACTIONS(8109), + [sym__ambiguous_redim_statement] = ACTIONS(8111), + [aux_sym_erase_statement_token1] = ACTIONS(8109), + [aux_sym_open_statement_token1] = ACTIONS(8109), + [aux_sym_file_mode_token2] = ACTIONS(8109), + [aux_sym_file_access_token2] = ACTIONS(8109), + [aux_sym_file_lock_token2] = ACTIONS(8109), + [aux_sym_print_statement_token1] = ACTIONS(8109), + [anon_sym_PLUS] = ACTIONS(8111), + [anon_sym_DASH] = ACTIONS(8109), + [anon_sym_SEMI] = ACTIONS(8111), + [anon_sym_QMARK] = ACTIONS(8111), + [aux_sym_close_statement_token1] = ACTIONS(8109), + [aux_sym_put_statement_token1] = ACTIONS(8109), + [aux_sym_unlock_statement_token1] = ACTIONS(8109), + [aux_sym_seek_statement_token1] = ACTIONS(8109), + [sym_reset_statement] = ACTIONS(8109), + [aux_sym_raise_event_statement_token1] = ACTIONS(8109), + [sym_stop_statement] = ACTIONS(8109), + [sym_beep_statement] = ACTIONS(8109), + [aux_sym_unload_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token2] = ACTIONS(8109), + [aux_sym_def_type_statement_token3] = ACTIONS(8109), + [aux_sym_def_type_statement_token4] = ACTIONS(8109), + [aux_sym_def_type_statement_token5] = ACTIONS(8109), + [aux_sym_def_type_statement_token6] = ACTIONS(8109), + [aux_sym_def_type_statement_token7] = ACTIONS(8109), + [aux_sym_def_type_statement_token8] = ACTIONS(8109), + [aux_sym_def_type_statement_token9] = ACTIONS(8109), + [aux_sym_def_type_statement_token10] = ACTIONS(8109), + [aux_sym_def_type_statement_token11] = ACTIONS(8109), + [aux_sym_def_type_statement_token12] = ACTIONS(8109), + [aux_sym_def_type_statement_token13] = ACTIONS(8109), + [aux_sym_def_type_statement_token14] = ACTIONS(8109), + [aux_sym_call_statement_token1] = ACTIONS(8109), + [sym__ambiguous_call_statement] = ACTIONS(8109), + [aux_sym_addressof_expression_token1] = ACTIONS(8109), + [aux_sym_type_of_expression_token1] = ACTIONS(8109), + [aux_sym_unary_expression_token1] = ACTIONS(8109), + [sym_string_literal] = ACTIONS(8111), + [sym_number_literal] = ACTIONS(8111), + [aux_sym_boolean_literal_token1] = ACTIONS(8109), + [aux_sym_boolean_literal_token2] = ACTIONS(8109), + [sym_nothing_literal] = ACTIONS(8109), + [sym_null_literal] = ACTIONS(8109), + [sym_empty_literal] = ACTIONS(8109), + [sym_date_literal] = ACTIONS(8111), + [anon_sym_POUND] = ACTIONS(8109), + }, + [STATE(5969)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_statement_token2] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(5970)] = { + [sym_argument_list] = STATE(10051), + [sym_identifier] = ACTIONS(8794), + [sym_newline] = ACTIONS(8796), + [anon_sym_COLON] = ACTIONS(8796), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8794), + [aux_sym_frm_property_statement_token1] = ACTIONS(8794), + [anon_sym_DOT] = ACTIONS(8794), + [anon_sym_BANG] = ACTIONS(8796), + [aux_sym__attribute_identifier_token1] = ACTIONS(8794), + [aux_sym_option_statement_token3] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8794), + [aux_sym_preprocessor_const_token1] = ACTIONS(8794), + [sym_static_modifier] = ACTIONS(8794), + [sym__dim_keyword] = ACTIONS(8794), + [sym__redim_keyword] = ACTIONS(8794), + [aux_sym_get_accessor_token1] = ACTIONS(8794), + [aux_sym_set_accessor_token1] = ACTIONS(8794), + [aux_sym_const_declaration_token1] = ACTIONS(8794), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(8794), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8794), + [aux_sym_visibility_token1] = ACTIONS(8794), + [aux_sym_visibility_token2] = ACTIONS(8794), + [aux_sym_elseif_fragment_token1] = ACTIONS(8794), + [aux_sym_else_fragment_token1] = ACTIONS(8794), + [aux_sym_select_statement_token1] = ACTIONS(8794), + [aux_sym__for_header_token1] = ACTIONS(8794), + [aux_sym_do_statement_token1] = ACTIONS(8794), + [aux_sym_do_statement_token2] = ACTIONS(8794), + [aux_sym_do_condition_token1] = ACTIONS(8794), + [aux_sym_with_statement_token1] = ACTIONS(8794), + [aux_sym_exit_statement_token1] = ACTIONS(8794), + [sym_end_statement] = ACTIONS(8796), + [aux_sym_on_goto_statement_token1] = ACTIONS(8794), + [aux_sym_on_goto_statement_token2] = ACTIONS(8794), + [aux_sym_on_error_statement_token2] = ACTIONS(8794), + [sym__ambiguous_redim_statement] = ACTIONS(8796), + [aux_sym_erase_statement_token1] = ACTIONS(8794), + [aux_sym_open_statement_token1] = ACTIONS(8794), + [aux_sym_file_mode_token2] = ACTIONS(8794), + [aux_sym_file_access_token2] = ACTIONS(8794), + [aux_sym_file_lock_token2] = ACTIONS(8794), + [aux_sym_print_statement_token1] = ACTIONS(8794), + [anon_sym_PLUS] = ACTIONS(8796), + [anon_sym_DASH] = ACTIONS(8794), + [anon_sym_QMARK] = ACTIONS(8796), + [aux_sym_close_statement_token1] = ACTIONS(8794), + [aux_sym_put_statement_token1] = ACTIONS(8794), + [aux_sym_unlock_statement_token1] = ACTIONS(8794), + [aux_sym_seek_statement_token1] = ACTIONS(8794), + [sym_reset_statement] = ACTIONS(8794), + [aux_sym_raise_event_statement_token1] = ACTIONS(8794), + [sym_stop_statement] = ACTIONS(8794), + [sym_beep_statement] = ACTIONS(8794), + [aux_sym_unload_statement_token1] = ACTIONS(8794), + [aux_sym_def_type_statement_token1] = ACTIONS(8794), + [aux_sym_def_type_statement_token2] = ACTIONS(8794), + [aux_sym_def_type_statement_token3] = ACTIONS(8794), + [aux_sym_def_type_statement_token4] = ACTIONS(8794), + [aux_sym_def_type_statement_token5] = ACTIONS(8794), + [aux_sym_def_type_statement_token6] = ACTIONS(8794), + [aux_sym_def_type_statement_token7] = ACTIONS(8794), + [aux_sym_def_type_statement_token8] = ACTIONS(8794), + [aux_sym_def_type_statement_token9] = ACTIONS(8794), + [aux_sym_def_type_statement_token10] = ACTIONS(8794), + [aux_sym_def_type_statement_token11] = ACTIONS(8794), + [aux_sym_def_type_statement_token12] = ACTIONS(8794), + [aux_sym_def_type_statement_token13] = ACTIONS(8794), + [aux_sym_def_type_statement_token14] = ACTIONS(8794), + [aux_sym_call_statement_token1] = ACTIONS(8794), + [sym__ambiguous_call_statement] = ACTIONS(8794), + [aux_sym_addressof_expression_token1] = ACTIONS(8794), + [aux_sym_type_of_expression_token1] = ACTIONS(8794), + [aux_sym_unary_expression_token1] = ACTIONS(8794), + [sym_string_literal] = ACTIONS(8796), + [sym_number_literal] = ACTIONS(8796), + [aux_sym_boolean_literal_token1] = ACTIONS(8794), + [aux_sym_boolean_literal_token2] = ACTIONS(8794), + [sym_nothing_literal] = ACTIONS(8794), + [sym_null_literal] = ACTIONS(8794), + [sym_empty_literal] = ACTIONS(8794), + [sym_date_literal] = ACTIONS(8796), + [anon_sym_POUND] = ACTIONS(8794), + }, + [STATE(5971)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(5963), + [sym_identifier] = ACTIONS(8935), + [sym_newline] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(10903), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8935), + [aux_sym_frm_property_statement_token1] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_BANG] = ACTIONS(8937), + [aux_sym__attribute_identifier_token1] = ACTIONS(8935), + [aux_sym_option_statement_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8935), + [aux_sym_preprocessor_const_token1] = ACTIONS(8935), + [sym_static_modifier] = ACTIONS(8935), + [sym__dim_keyword] = ACTIONS(8935), + [sym__redim_keyword] = ACTIONS(8935), + [aux_sym_get_accessor_token1] = ACTIONS(8935), + [aux_sym_set_accessor_token1] = ACTIONS(8935), + [aux_sym_const_declaration_token1] = ACTIONS(8935), + [anon_sym_LPAREN] = ACTIONS(8937), + [aux_sym_as_type_clause_token2] = ACTIONS(8935), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8935), + [aux_sym_visibility_token1] = ACTIONS(8935), + [aux_sym_visibility_token2] = ACTIONS(8935), + [aux_sym_elseif_fragment_token1] = ACTIONS(8935), + [aux_sym_else_fragment_token1] = ACTIONS(8935), + [aux_sym_select_statement_token1] = ACTIONS(8935), + [aux_sym__for_header_token1] = ACTIONS(8935), + [aux_sym_do_statement_token1] = ACTIONS(8935), + [aux_sym_do_statement_token2] = ACTIONS(8935), + [aux_sym_do_condition_token1] = ACTIONS(8935), + [aux_sym_with_statement_token1] = ACTIONS(8935), + [aux_sym_exit_statement_token1] = ACTIONS(8935), + [sym_end_statement] = ACTIONS(8937), + [aux_sym_on_goto_statement_token1] = ACTIONS(8935), + [aux_sym_on_goto_statement_token2] = ACTIONS(8935), + [aux_sym_on_error_statement_token2] = ACTIONS(8935), + [sym__ambiguous_redim_statement] = ACTIONS(8937), + [aux_sym_erase_statement_token1] = ACTIONS(8935), + [aux_sym_open_statement_token1] = ACTIONS(8935), + [aux_sym_file_mode_token2] = ACTIONS(8935), + [aux_sym_file_access_token2] = ACTIONS(8935), + [aux_sym_file_lock_token2] = ACTIONS(8935), + [aux_sym_print_statement_token1] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [aux_sym_close_statement_token1] = ACTIONS(8935), + [aux_sym_put_statement_token1] = ACTIONS(8935), + [aux_sym_unlock_statement_token1] = ACTIONS(8935), + [aux_sym_seek_statement_token1] = ACTIONS(8935), + [sym_reset_statement] = ACTIONS(8935), + [aux_sym_raise_event_statement_token1] = ACTIONS(8935), + [sym_stop_statement] = ACTIONS(8935), + [sym_beep_statement] = ACTIONS(8935), + [aux_sym_unload_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token2] = ACTIONS(8935), + [aux_sym_def_type_statement_token3] = ACTIONS(8935), + [aux_sym_def_type_statement_token4] = ACTIONS(8935), + [aux_sym_def_type_statement_token5] = ACTIONS(8935), + [aux_sym_def_type_statement_token6] = ACTIONS(8935), + [aux_sym_def_type_statement_token7] = ACTIONS(8935), + [aux_sym_def_type_statement_token8] = ACTIONS(8935), + [aux_sym_def_type_statement_token9] = ACTIONS(8935), + [aux_sym_def_type_statement_token10] = ACTIONS(8935), + [aux_sym_def_type_statement_token11] = ACTIONS(8935), + [aux_sym_def_type_statement_token12] = ACTIONS(8935), + [aux_sym_def_type_statement_token13] = ACTIONS(8935), + [aux_sym_def_type_statement_token14] = ACTIONS(8935), + [aux_sym_call_statement_token1] = ACTIONS(8935), + [sym__ambiguous_call_statement] = ACTIONS(8935), + [aux_sym_addressof_expression_token1] = ACTIONS(8935), + [aux_sym_type_of_expression_token1] = ACTIONS(8935), + [aux_sym_unary_expression_token1] = ACTIONS(8935), + [sym_string_literal] = ACTIONS(8937), + [sym_number_literal] = ACTIONS(8937), + [aux_sym_boolean_literal_token1] = ACTIONS(8935), + [aux_sym_boolean_literal_token2] = ACTIONS(8935), + [sym_nothing_literal] = ACTIONS(8935), + [sym_null_literal] = ACTIONS(8935), + [sym_empty_literal] = ACTIONS(8935), + [sym_date_literal] = ACTIONS(8937), + [anon_sym_POUND] = ACTIONS(8935), + }, + [STATE(5972)] = { + [sym_identifier] = ACTIONS(8974), + [sym_newline] = ACTIONS(8976), + [anon_sym_COLON] = ACTIONS(8976), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8974), + [aux_sym_frm_property_statement_token1] = ACTIONS(8974), + [anon_sym_DOT] = ACTIONS(8974), + [anon_sym_BANG] = ACTIONS(8976), + [aux_sym__attribute_identifier_token1] = ACTIONS(8974), + [aux_sym_option_statement_token3] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8974), + [aux_sym_preprocessor_const_token1] = ACTIONS(8974), + [sym_static_modifier] = ACTIONS(8974), + [sym__dim_keyword] = ACTIONS(8974), + [sym__redim_keyword] = ACTIONS(8974), + [aux_sym_get_accessor_token1] = ACTIONS(8974), + [aux_sym_set_accessor_token1] = ACTIONS(8974), + [anon_sym_COMMA] = ACTIONS(10912), + [aux_sym_const_declaration_token1] = ACTIONS(8974), + [anon_sym_LPAREN] = ACTIONS(8976), + [aux_sym_as_type_clause_token2] = ACTIONS(8974), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8974), + [aux_sym_visibility_token1] = ACTIONS(8974), + [aux_sym_visibility_token2] = ACTIONS(8974), + [aux_sym_elseif_fragment_token1] = ACTIONS(8974), + [aux_sym_else_fragment_token1] = ACTIONS(8974), + [aux_sym_select_statement_token1] = ACTIONS(8974), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8974), + [aux_sym__for_header_token1] = ACTIONS(8974), + [aux_sym_do_statement_token1] = ACTIONS(8974), + [aux_sym_do_condition_token1] = ACTIONS(8974), + [aux_sym_with_statement_token1] = ACTIONS(8974), + [aux_sym_exit_statement_token1] = ACTIONS(8974), + [sym_end_statement] = ACTIONS(8976), + [aux_sym_on_goto_statement_token1] = ACTIONS(8974), + [aux_sym_on_goto_statement_token2] = ACTIONS(8974), + [aux_sym_on_error_statement_token2] = ACTIONS(8974), + [sym__ambiguous_redim_statement] = ACTIONS(8976), + [aux_sym_erase_statement_token1] = ACTIONS(8974), + [aux_sym_open_statement_token1] = ACTIONS(8974), + [aux_sym_file_mode_token2] = ACTIONS(8974), + [aux_sym_file_access_token2] = ACTIONS(8974), + [aux_sym_file_lock_token2] = ACTIONS(8974), + [aux_sym_print_statement_token1] = ACTIONS(8974), + [anon_sym_PLUS] = ACTIONS(8976), + [anon_sym_DASH] = ACTIONS(8974), + [anon_sym_QMARK] = ACTIONS(8976), + [aux_sym_close_statement_token1] = ACTIONS(8974), + [aux_sym_put_statement_token1] = ACTIONS(8974), + [aux_sym_unlock_statement_token1] = ACTIONS(8974), + [aux_sym_seek_statement_token1] = ACTIONS(8974), + [sym_reset_statement] = ACTIONS(8974), + [aux_sym_raise_event_statement_token1] = ACTIONS(8974), + [sym_stop_statement] = ACTIONS(8974), + [sym_beep_statement] = ACTIONS(8974), + [aux_sym_unload_statement_token1] = ACTIONS(8974), + [aux_sym_def_type_statement_token1] = ACTIONS(8974), + [aux_sym_def_type_statement_token2] = ACTIONS(8974), + [aux_sym_def_type_statement_token3] = ACTIONS(8974), + [aux_sym_def_type_statement_token4] = ACTIONS(8974), + [aux_sym_def_type_statement_token5] = ACTIONS(8974), + [aux_sym_def_type_statement_token6] = ACTIONS(8974), + [aux_sym_def_type_statement_token7] = ACTIONS(8974), + [aux_sym_def_type_statement_token8] = ACTIONS(8974), + [aux_sym_def_type_statement_token9] = ACTIONS(8974), + [aux_sym_def_type_statement_token10] = ACTIONS(8974), + [aux_sym_def_type_statement_token11] = ACTIONS(8974), + [aux_sym_def_type_statement_token12] = ACTIONS(8974), + [aux_sym_def_type_statement_token13] = ACTIONS(8974), + [aux_sym_def_type_statement_token14] = ACTIONS(8974), + [aux_sym_call_statement_token1] = ACTIONS(8974), + [sym__ambiguous_call_statement] = ACTIONS(8974), + [aux_sym_addressof_expression_token1] = ACTIONS(8974), + [aux_sym_type_of_expression_token1] = ACTIONS(8974), + [aux_sym_unary_expression_token1] = ACTIONS(8974), + [sym_string_literal] = ACTIONS(8976), + [sym_number_literal] = ACTIONS(8976), + [aux_sym_boolean_literal_token1] = ACTIONS(8974), + [aux_sym_boolean_literal_token2] = ACTIONS(8974), + [sym_nothing_literal] = ACTIONS(8974), + [sym_null_literal] = ACTIONS(8974), + [sym_empty_literal] = ACTIONS(8974), + [sym_date_literal] = ACTIONS(8976), + [anon_sym_POUND] = ACTIONS(8974), + }, + [STATE(5973)] = { + [sym_identifier] = ACTIONS(8109), + [sym_newline] = ACTIONS(8111), + [anon_sym_COLON] = ACTIONS(8111), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8109), + [aux_sym_frm_property_statement_token1] = ACTIONS(8109), + [anon_sym_DOT] = ACTIONS(8109), + [anon_sym_BANG] = ACTIONS(8111), + [aux_sym__attribute_identifier_token1] = ACTIONS(8109), + [aux_sym_option_statement_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8109), + [aux_sym_preprocessor_const_token1] = ACTIONS(8109), + [sym_static_modifier] = ACTIONS(8109), + [sym__dim_keyword] = ACTIONS(8109), + [sym__redim_keyword] = ACTIONS(8109), + [aux_sym_get_accessor_token1] = ACTIONS(8109), + [aux_sym_set_accessor_token1] = ACTIONS(8109), + [aux_sym_const_declaration_token1] = ACTIONS(8109), + [anon_sym_LPAREN] = ACTIONS(8111), + [aux_sym_as_type_clause_token2] = ACTIONS(8109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8109), + [aux_sym_visibility_token1] = ACTIONS(8109), + [aux_sym_visibility_token2] = ACTIONS(8109), + [aux_sym_elseif_fragment_token1] = ACTIONS(8109), + [aux_sym_else_fragment_token1] = ACTIONS(8109), + [aux_sym_select_statement_token1] = ACTIONS(8109), + [aux_sym_select_statement_token2] = ACTIONS(8109), + [aux_sym__for_header_token1] = ACTIONS(8109), + [aux_sym_do_statement_token1] = ACTIONS(8109), + [aux_sym_do_condition_token1] = ACTIONS(8109), + [aux_sym_with_statement_token1] = ACTIONS(8109), + [aux_sym_exit_statement_token1] = ACTIONS(8109), + [sym_end_statement] = ACTIONS(8111), + [aux_sym_on_goto_statement_token1] = ACTIONS(8109), + [aux_sym_on_goto_statement_token2] = ACTIONS(8109), + [aux_sym_on_error_statement_token2] = ACTIONS(8109), + [sym__ambiguous_redim_statement] = ACTIONS(8111), + [aux_sym_erase_statement_token1] = ACTIONS(8109), + [aux_sym_open_statement_token1] = ACTIONS(8109), + [aux_sym_file_mode_token2] = ACTIONS(8109), + [aux_sym_file_access_token2] = ACTIONS(8109), + [aux_sym_file_lock_token2] = ACTIONS(8109), + [aux_sym_print_statement_token1] = ACTIONS(8109), + [anon_sym_PLUS] = ACTIONS(8111), + [anon_sym_DASH] = ACTIONS(8109), + [anon_sym_SEMI] = ACTIONS(8111), + [anon_sym_QMARK] = ACTIONS(8111), + [aux_sym_close_statement_token1] = ACTIONS(8109), + [aux_sym_put_statement_token1] = ACTIONS(8109), + [aux_sym_unlock_statement_token1] = ACTIONS(8109), + [aux_sym_seek_statement_token1] = ACTIONS(8109), + [sym_reset_statement] = ACTIONS(8109), + [aux_sym_raise_event_statement_token1] = ACTIONS(8109), + [sym_stop_statement] = ACTIONS(8109), + [sym_beep_statement] = ACTIONS(8109), + [aux_sym_unload_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token2] = ACTIONS(8109), + [aux_sym_def_type_statement_token3] = ACTIONS(8109), + [aux_sym_def_type_statement_token4] = ACTIONS(8109), + [aux_sym_def_type_statement_token5] = ACTIONS(8109), + [aux_sym_def_type_statement_token6] = ACTIONS(8109), + [aux_sym_def_type_statement_token7] = ACTIONS(8109), + [aux_sym_def_type_statement_token8] = ACTIONS(8109), + [aux_sym_def_type_statement_token9] = ACTIONS(8109), + [aux_sym_def_type_statement_token10] = ACTIONS(8109), + [aux_sym_def_type_statement_token11] = ACTIONS(8109), + [aux_sym_def_type_statement_token12] = ACTIONS(8109), + [aux_sym_def_type_statement_token13] = ACTIONS(8109), + [aux_sym_def_type_statement_token14] = ACTIONS(8109), + [aux_sym_call_statement_token1] = ACTIONS(8109), + [sym__ambiguous_call_statement] = ACTIONS(8109), + [aux_sym_addressof_expression_token1] = ACTIONS(8109), + [aux_sym_type_of_expression_token1] = ACTIONS(8109), + [aux_sym_unary_expression_token1] = ACTIONS(8109), + [sym_string_literal] = ACTIONS(8111), + [sym_number_literal] = ACTIONS(8111), + [aux_sym_boolean_literal_token1] = ACTIONS(8109), + [aux_sym_boolean_literal_token2] = ACTIONS(8109), + [sym_nothing_literal] = ACTIONS(8109), + [sym_null_literal] = ACTIONS(8109), + [sym_empty_literal] = ACTIONS(8109), + [sym_date_literal] = ACTIONS(8111), + [anon_sym_POUND] = ACTIONS(8109), + }, + [STATE(5974)] = { + [sym_do_condition] = STATE(7209), + [sym_identifier] = ACTIONS(8599), + [sym_newline] = ACTIONS(8601), + [anon_sym_COLON] = ACTIONS(8601), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8599), + [aux_sym_frm_property_statement_token1] = ACTIONS(8599), + [anon_sym_DOT] = ACTIONS(8599), + [anon_sym_BANG] = ACTIONS(8601), + [aux_sym__attribute_identifier_token1] = ACTIONS(8599), + [aux_sym_option_statement_token3] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8599), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8599), + [aux_sym_preprocessor_const_token1] = ACTIONS(8599), + [sym_static_modifier] = ACTIONS(8599), + [sym__dim_keyword] = ACTIONS(8599), + [sym__redim_keyword] = ACTIONS(8599), + [aux_sym_get_accessor_token1] = ACTIONS(8599), + [aux_sym_set_accessor_token1] = ACTIONS(8599), + [aux_sym_const_declaration_token1] = ACTIONS(8599), + [anon_sym_LPAREN] = ACTIONS(8601), + [aux_sym_as_type_clause_token2] = ACTIONS(8599), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8599), + [aux_sym_visibility_token1] = ACTIONS(8599), + [aux_sym_visibility_token2] = ACTIONS(8599), + [aux_sym_elseif_fragment_token1] = ACTIONS(8599), + [aux_sym_else_fragment_token1] = ACTIONS(8599), + [aux_sym_select_statement_token1] = ACTIONS(8599), + [aux_sym__for_header_token1] = ACTIONS(8599), + [aux_sym_do_statement_token1] = ACTIONS(8599), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8599), + [aux_sym_exit_statement_token1] = ACTIONS(8599), + [sym_end_statement] = ACTIONS(8601), + [aux_sym_on_goto_statement_token1] = ACTIONS(8599), + [aux_sym_on_goto_statement_token2] = ACTIONS(8599), + [aux_sym_on_error_statement_token2] = ACTIONS(8599), + [sym__ambiguous_redim_statement] = ACTIONS(8601), + [aux_sym_erase_statement_token1] = ACTIONS(8599), + [aux_sym_open_statement_token1] = ACTIONS(8599), + [aux_sym_file_mode_token2] = ACTIONS(8599), + [aux_sym_file_access_token2] = ACTIONS(8599), + [aux_sym_file_lock_token2] = ACTIONS(8599), + [aux_sym_print_statement_token1] = ACTIONS(8599), + [anon_sym_PLUS] = ACTIONS(8601), + [anon_sym_DASH] = ACTIONS(8599), + [anon_sym_QMARK] = ACTIONS(8601), + [aux_sym_close_statement_token1] = ACTIONS(8599), + [aux_sym_put_statement_token1] = ACTIONS(8599), + [aux_sym_unlock_statement_token1] = ACTIONS(8599), + [aux_sym_seek_statement_token1] = ACTIONS(8599), + [sym_reset_statement] = ACTIONS(8599), + [aux_sym_raise_event_statement_token1] = ACTIONS(8599), + [sym_stop_statement] = ACTIONS(8599), + [sym_beep_statement] = ACTIONS(8599), + [aux_sym_unload_statement_token1] = ACTIONS(8599), + [aux_sym_def_type_statement_token1] = ACTIONS(8599), + [aux_sym_def_type_statement_token2] = ACTIONS(8599), + [aux_sym_def_type_statement_token3] = ACTIONS(8599), + [aux_sym_def_type_statement_token4] = ACTIONS(8599), + [aux_sym_def_type_statement_token5] = ACTIONS(8599), + [aux_sym_def_type_statement_token6] = ACTIONS(8599), + [aux_sym_def_type_statement_token7] = ACTIONS(8599), + [aux_sym_def_type_statement_token8] = ACTIONS(8599), + [aux_sym_def_type_statement_token9] = ACTIONS(8599), + [aux_sym_def_type_statement_token10] = ACTIONS(8599), + [aux_sym_def_type_statement_token11] = ACTIONS(8599), + [aux_sym_def_type_statement_token12] = ACTIONS(8599), + [aux_sym_def_type_statement_token13] = ACTIONS(8599), + [aux_sym_def_type_statement_token14] = ACTIONS(8599), + [aux_sym_call_statement_token1] = ACTIONS(8599), + [sym__ambiguous_call_statement] = ACTIONS(8599), + [aux_sym_addressof_expression_token1] = ACTIONS(8599), + [aux_sym_type_of_expression_token1] = ACTIONS(8599), + [aux_sym_unary_expression_token1] = ACTIONS(8599), + [sym_string_literal] = ACTIONS(8601), + [sym_number_literal] = ACTIONS(8601), + [aux_sym_boolean_literal_token1] = ACTIONS(8599), + [aux_sym_boolean_literal_token2] = ACTIONS(8599), + [sym_nothing_literal] = ACTIONS(8599), + [sym_null_literal] = ACTIONS(8599), + [sym_empty_literal] = ACTIONS(8599), + [sym_date_literal] = ACTIONS(8601), + [anon_sym_POUND] = ACTIONS(8599), + }, + [STATE(5975)] = { + [sym_do_condition] = STATE(7197), + [sym_identifier] = ACTIONS(8271), + [sym_newline] = ACTIONS(8273), + [anon_sym_COLON] = ACTIONS(8273), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8271), + [aux_sym_frm_property_statement_token1] = ACTIONS(8271), + [anon_sym_DOT] = ACTIONS(8271), + [anon_sym_BANG] = ACTIONS(8273), + [aux_sym__attribute_identifier_token1] = ACTIONS(8271), + [aux_sym_option_statement_token3] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8271), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8271), + [aux_sym_preprocessor_const_token1] = ACTIONS(8271), + [sym_static_modifier] = ACTIONS(8271), + [sym__dim_keyword] = ACTIONS(8271), + [sym__redim_keyword] = ACTIONS(8271), + [aux_sym_get_accessor_token1] = ACTIONS(8271), + [aux_sym_set_accessor_token1] = ACTIONS(8271), + [aux_sym_const_declaration_token1] = ACTIONS(8271), + [anon_sym_LPAREN] = ACTIONS(8273), + [aux_sym_as_type_clause_token2] = ACTIONS(8271), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8271), + [aux_sym_visibility_token1] = ACTIONS(8271), + [aux_sym_visibility_token2] = ACTIONS(8271), + [aux_sym_elseif_fragment_token1] = ACTIONS(8271), + [aux_sym_else_fragment_token1] = ACTIONS(8271), + [aux_sym_select_statement_token1] = ACTIONS(8271), + [aux_sym__for_header_token1] = ACTIONS(8271), + [aux_sym_do_statement_token1] = ACTIONS(8271), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8271), + [aux_sym_exit_statement_token1] = ACTIONS(8271), + [sym_end_statement] = ACTIONS(8273), + [aux_sym_on_goto_statement_token1] = ACTIONS(8271), + [aux_sym_on_goto_statement_token2] = ACTIONS(8271), + [aux_sym_on_error_statement_token2] = ACTIONS(8271), + [sym__ambiguous_redim_statement] = ACTIONS(8273), + [aux_sym_erase_statement_token1] = ACTIONS(8271), + [aux_sym_open_statement_token1] = ACTIONS(8271), + [aux_sym_file_mode_token2] = ACTIONS(8271), + [aux_sym_file_access_token2] = ACTIONS(8271), + [aux_sym_file_lock_token2] = ACTIONS(8271), + [aux_sym_print_statement_token1] = ACTIONS(8271), + [anon_sym_PLUS] = ACTIONS(8273), + [anon_sym_DASH] = ACTIONS(8271), + [anon_sym_QMARK] = ACTIONS(8273), + [aux_sym_close_statement_token1] = ACTIONS(8271), + [aux_sym_put_statement_token1] = ACTIONS(8271), + [aux_sym_unlock_statement_token1] = ACTIONS(8271), + [aux_sym_seek_statement_token1] = ACTIONS(8271), + [sym_reset_statement] = ACTIONS(8271), + [aux_sym_raise_event_statement_token1] = ACTIONS(8271), + [sym_stop_statement] = ACTIONS(8271), + [sym_beep_statement] = ACTIONS(8271), + [aux_sym_unload_statement_token1] = ACTIONS(8271), + [aux_sym_def_type_statement_token1] = ACTIONS(8271), + [aux_sym_def_type_statement_token2] = ACTIONS(8271), + [aux_sym_def_type_statement_token3] = ACTIONS(8271), + [aux_sym_def_type_statement_token4] = ACTIONS(8271), + [aux_sym_def_type_statement_token5] = ACTIONS(8271), + [aux_sym_def_type_statement_token6] = ACTIONS(8271), + [aux_sym_def_type_statement_token7] = ACTIONS(8271), + [aux_sym_def_type_statement_token8] = ACTIONS(8271), + [aux_sym_def_type_statement_token9] = ACTIONS(8271), + [aux_sym_def_type_statement_token10] = ACTIONS(8271), + [aux_sym_def_type_statement_token11] = ACTIONS(8271), + [aux_sym_def_type_statement_token12] = ACTIONS(8271), + [aux_sym_def_type_statement_token13] = ACTIONS(8271), + [aux_sym_def_type_statement_token14] = ACTIONS(8271), + [aux_sym_call_statement_token1] = ACTIONS(8271), + [sym__ambiguous_call_statement] = ACTIONS(8271), + [aux_sym_addressof_expression_token1] = ACTIONS(8271), + [aux_sym_type_of_expression_token1] = ACTIONS(8271), + [aux_sym_unary_expression_token1] = ACTIONS(8271), + [sym_string_literal] = ACTIONS(8273), + [sym_number_literal] = ACTIONS(8273), + [aux_sym_boolean_literal_token1] = ACTIONS(8271), + [aux_sym_boolean_literal_token2] = ACTIONS(8271), + [sym_nothing_literal] = ACTIONS(8271), + [sym_null_literal] = ACTIONS(8271), + [sym_empty_literal] = ACTIONS(8271), + [sym_date_literal] = ACTIONS(8273), + [anon_sym_POUND] = ACTIONS(8271), + }, + [STATE(5976)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(5873), + [sym_identifier] = ACTIONS(8935), + [sym_newline] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(10854), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8935), + [aux_sym_frm_property_statement_token1] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_BANG] = ACTIONS(8937), + [aux_sym__attribute_identifier_token1] = ACTIONS(8935), + [aux_sym_option_statement_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8935), + [aux_sym_preprocessor_const_token1] = ACTIONS(8935), + [sym_static_modifier] = ACTIONS(8935), + [sym__dim_keyword] = ACTIONS(8935), + [sym__redim_keyword] = ACTIONS(8935), + [aux_sym_get_accessor_token1] = ACTIONS(8935), + [aux_sym_set_accessor_token1] = ACTIONS(8935), + [aux_sym_const_declaration_token1] = ACTIONS(8935), + [anon_sym_LPAREN] = ACTIONS(8937), + [aux_sym_as_type_clause_token2] = ACTIONS(8935), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8935), + [aux_sym_visibility_token1] = ACTIONS(8935), + [aux_sym_visibility_token2] = ACTIONS(8935), + [aux_sym_elseif_fragment_token1] = ACTIONS(8935), + [aux_sym_else_fragment_token1] = ACTIONS(8935), + [aux_sym_select_statement_token1] = ACTIONS(8935), + [aux_sym__for_header_token1] = ACTIONS(8935), + [aux_sym_do_statement_token1] = ACTIONS(8935), + [aux_sym_do_condition_token1] = ACTIONS(8935), + [aux_sym_while_statement_token1] = ACTIONS(8935), + [aux_sym_with_statement_token1] = ACTIONS(8935), + [aux_sym_exit_statement_token1] = ACTIONS(8935), + [sym_end_statement] = ACTIONS(8937), + [aux_sym_on_goto_statement_token1] = ACTIONS(8935), + [aux_sym_on_goto_statement_token2] = ACTIONS(8935), + [aux_sym_on_error_statement_token2] = ACTIONS(8935), + [sym__ambiguous_redim_statement] = ACTIONS(8937), + [aux_sym_erase_statement_token1] = ACTIONS(8935), + [aux_sym_open_statement_token1] = ACTIONS(8935), + [aux_sym_file_mode_token2] = ACTIONS(8935), + [aux_sym_file_access_token2] = ACTIONS(8935), + [aux_sym_file_lock_token2] = ACTIONS(8935), + [aux_sym_print_statement_token1] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [aux_sym_close_statement_token1] = ACTIONS(8935), + [aux_sym_put_statement_token1] = ACTIONS(8935), + [aux_sym_unlock_statement_token1] = ACTIONS(8935), + [aux_sym_seek_statement_token1] = ACTIONS(8935), + [sym_reset_statement] = ACTIONS(8935), + [aux_sym_raise_event_statement_token1] = ACTIONS(8935), + [sym_stop_statement] = ACTIONS(8935), + [sym_beep_statement] = ACTIONS(8935), + [aux_sym_unload_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token2] = ACTIONS(8935), + [aux_sym_def_type_statement_token3] = ACTIONS(8935), + [aux_sym_def_type_statement_token4] = ACTIONS(8935), + [aux_sym_def_type_statement_token5] = ACTIONS(8935), + [aux_sym_def_type_statement_token6] = ACTIONS(8935), + [aux_sym_def_type_statement_token7] = ACTIONS(8935), + [aux_sym_def_type_statement_token8] = ACTIONS(8935), + [aux_sym_def_type_statement_token9] = ACTIONS(8935), + [aux_sym_def_type_statement_token10] = ACTIONS(8935), + [aux_sym_def_type_statement_token11] = ACTIONS(8935), + [aux_sym_def_type_statement_token12] = ACTIONS(8935), + [aux_sym_def_type_statement_token13] = ACTIONS(8935), + [aux_sym_def_type_statement_token14] = ACTIONS(8935), + [aux_sym_call_statement_token1] = ACTIONS(8935), + [sym__ambiguous_call_statement] = ACTIONS(8935), + [aux_sym_addressof_expression_token1] = ACTIONS(8935), + [aux_sym_type_of_expression_token1] = ACTIONS(8935), + [aux_sym_unary_expression_token1] = ACTIONS(8935), + [sym_string_literal] = ACTIONS(8937), + [sym_number_literal] = ACTIONS(8937), + [aux_sym_boolean_literal_token1] = ACTIONS(8935), + [aux_sym_boolean_literal_token2] = ACTIONS(8935), + [sym_nothing_literal] = ACTIONS(8935), + [sym_null_literal] = ACTIONS(8935), + [sym_empty_literal] = ACTIONS(8935), + [sym_date_literal] = ACTIONS(8937), + [anon_sym_POUND] = ACTIONS(8935), + }, + [STATE(5977)] = { + [sym_do_condition] = STATE(7127), + [sym_identifier] = ACTIONS(8275), + [sym_newline] = ACTIONS(8277), + [anon_sym_COLON] = ACTIONS(8277), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8275), + [aux_sym_frm_property_statement_token1] = ACTIONS(8275), + [anon_sym_DOT] = ACTIONS(8275), + [anon_sym_BANG] = ACTIONS(8277), + [aux_sym__attribute_identifier_token1] = ACTIONS(8275), + [aux_sym_option_statement_token3] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8275), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8275), + [aux_sym_preprocessor_const_token1] = ACTIONS(8275), + [sym_static_modifier] = ACTIONS(8275), + [sym__dim_keyword] = ACTIONS(8275), + [sym__redim_keyword] = ACTIONS(8275), + [aux_sym_get_accessor_token1] = ACTIONS(8275), + [aux_sym_set_accessor_token1] = ACTIONS(8275), + [aux_sym_const_declaration_token1] = ACTIONS(8275), + [anon_sym_LPAREN] = ACTIONS(8277), + [aux_sym_as_type_clause_token2] = ACTIONS(8275), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8275), + [aux_sym_visibility_token1] = ACTIONS(8275), + [aux_sym_visibility_token2] = ACTIONS(8275), + [aux_sym_elseif_fragment_token1] = ACTIONS(8275), + [aux_sym_else_fragment_token1] = ACTIONS(8275), + [aux_sym_select_statement_token1] = ACTIONS(8275), + [aux_sym__for_header_token1] = ACTIONS(8275), + [aux_sym_do_statement_token1] = ACTIONS(8275), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8275), + [aux_sym_exit_statement_token1] = ACTIONS(8275), + [sym_end_statement] = ACTIONS(8277), + [aux_sym_on_goto_statement_token1] = ACTIONS(8275), + [aux_sym_on_goto_statement_token2] = ACTIONS(8275), + [aux_sym_on_error_statement_token2] = ACTIONS(8275), + [sym__ambiguous_redim_statement] = ACTIONS(8277), + [aux_sym_erase_statement_token1] = ACTIONS(8275), + [aux_sym_open_statement_token1] = ACTIONS(8275), + [aux_sym_file_mode_token2] = ACTIONS(8275), + [aux_sym_file_access_token2] = ACTIONS(8275), + [aux_sym_file_lock_token2] = ACTIONS(8275), + [aux_sym_print_statement_token1] = ACTIONS(8275), + [anon_sym_PLUS] = ACTIONS(8277), + [anon_sym_DASH] = ACTIONS(8275), + [anon_sym_QMARK] = ACTIONS(8277), + [aux_sym_close_statement_token1] = ACTIONS(8275), + [aux_sym_put_statement_token1] = ACTIONS(8275), + [aux_sym_unlock_statement_token1] = ACTIONS(8275), + [aux_sym_seek_statement_token1] = ACTIONS(8275), + [sym_reset_statement] = ACTIONS(8275), + [aux_sym_raise_event_statement_token1] = ACTIONS(8275), + [sym_stop_statement] = ACTIONS(8275), + [sym_beep_statement] = ACTIONS(8275), + [aux_sym_unload_statement_token1] = ACTIONS(8275), + [aux_sym_def_type_statement_token1] = ACTIONS(8275), + [aux_sym_def_type_statement_token2] = ACTIONS(8275), + [aux_sym_def_type_statement_token3] = ACTIONS(8275), + [aux_sym_def_type_statement_token4] = ACTIONS(8275), + [aux_sym_def_type_statement_token5] = ACTIONS(8275), + [aux_sym_def_type_statement_token6] = ACTIONS(8275), + [aux_sym_def_type_statement_token7] = ACTIONS(8275), + [aux_sym_def_type_statement_token8] = ACTIONS(8275), + [aux_sym_def_type_statement_token9] = ACTIONS(8275), + [aux_sym_def_type_statement_token10] = ACTIONS(8275), + [aux_sym_def_type_statement_token11] = ACTIONS(8275), + [aux_sym_def_type_statement_token12] = ACTIONS(8275), + [aux_sym_def_type_statement_token13] = ACTIONS(8275), + [aux_sym_def_type_statement_token14] = ACTIONS(8275), + [aux_sym_call_statement_token1] = ACTIONS(8275), + [sym__ambiguous_call_statement] = ACTIONS(8275), + [aux_sym_addressof_expression_token1] = ACTIONS(8275), + [aux_sym_type_of_expression_token1] = ACTIONS(8275), + [aux_sym_unary_expression_token1] = ACTIONS(8275), + [sym_string_literal] = ACTIONS(8277), + [sym_number_literal] = ACTIONS(8277), + [aux_sym_boolean_literal_token1] = ACTIONS(8275), + [aux_sym_boolean_literal_token2] = ACTIONS(8275), + [sym_nothing_literal] = ACTIONS(8275), + [sym_null_literal] = ACTIONS(8275), + [sym_empty_literal] = ACTIONS(8275), + [sym_date_literal] = ACTIONS(8277), + [anon_sym_POUND] = ACTIONS(8275), + }, + [STATE(5978)] = { + [sym_do_condition] = STATE(7130), + [sym_identifier] = ACTIONS(8279), + [sym_newline] = ACTIONS(8281), + [anon_sym_COLON] = ACTIONS(8281), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8279), + [aux_sym_frm_property_statement_token1] = ACTIONS(8279), + [anon_sym_DOT] = ACTIONS(8279), + [anon_sym_BANG] = ACTIONS(8281), + [aux_sym__attribute_identifier_token1] = ACTIONS(8279), + [aux_sym_option_statement_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8279), + [aux_sym_preprocessor_const_token1] = ACTIONS(8279), + [sym_static_modifier] = ACTIONS(8279), + [sym__dim_keyword] = ACTIONS(8279), + [sym__redim_keyword] = ACTIONS(8279), + [aux_sym_get_accessor_token1] = ACTIONS(8279), + [aux_sym_set_accessor_token1] = ACTIONS(8279), + [aux_sym_const_declaration_token1] = ACTIONS(8279), + [anon_sym_LPAREN] = ACTIONS(8281), + [aux_sym_as_type_clause_token2] = ACTIONS(8279), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8279), + [aux_sym_visibility_token1] = ACTIONS(8279), + [aux_sym_visibility_token2] = ACTIONS(8279), + [aux_sym_elseif_fragment_token1] = ACTIONS(8279), + [aux_sym_else_fragment_token1] = ACTIONS(8279), + [aux_sym_select_statement_token1] = ACTIONS(8279), + [aux_sym__for_header_token1] = ACTIONS(8279), + [aux_sym_do_statement_token1] = ACTIONS(8279), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8279), + [aux_sym_exit_statement_token1] = ACTIONS(8279), + [sym_end_statement] = ACTIONS(8281), + [aux_sym_on_goto_statement_token1] = ACTIONS(8279), + [aux_sym_on_goto_statement_token2] = ACTIONS(8279), + [aux_sym_on_error_statement_token2] = ACTIONS(8279), + [sym__ambiguous_redim_statement] = ACTIONS(8281), + [aux_sym_erase_statement_token1] = ACTIONS(8279), + [aux_sym_open_statement_token1] = ACTIONS(8279), + [aux_sym_file_mode_token2] = ACTIONS(8279), + [aux_sym_file_access_token2] = ACTIONS(8279), + [aux_sym_file_lock_token2] = ACTIONS(8279), + [aux_sym_print_statement_token1] = ACTIONS(8279), + [anon_sym_PLUS] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8279), + [anon_sym_QMARK] = ACTIONS(8281), + [aux_sym_close_statement_token1] = ACTIONS(8279), + [aux_sym_put_statement_token1] = ACTIONS(8279), + [aux_sym_unlock_statement_token1] = ACTIONS(8279), + [aux_sym_seek_statement_token1] = ACTIONS(8279), + [sym_reset_statement] = ACTIONS(8279), + [aux_sym_raise_event_statement_token1] = ACTIONS(8279), + [sym_stop_statement] = ACTIONS(8279), + [sym_beep_statement] = ACTIONS(8279), + [aux_sym_unload_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token2] = ACTIONS(8279), + [aux_sym_def_type_statement_token3] = ACTIONS(8279), + [aux_sym_def_type_statement_token4] = ACTIONS(8279), + [aux_sym_def_type_statement_token5] = ACTIONS(8279), + [aux_sym_def_type_statement_token6] = ACTIONS(8279), + [aux_sym_def_type_statement_token7] = ACTIONS(8279), + [aux_sym_def_type_statement_token8] = ACTIONS(8279), + [aux_sym_def_type_statement_token9] = ACTIONS(8279), + [aux_sym_def_type_statement_token10] = ACTIONS(8279), + [aux_sym_def_type_statement_token11] = ACTIONS(8279), + [aux_sym_def_type_statement_token12] = ACTIONS(8279), + [aux_sym_def_type_statement_token13] = ACTIONS(8279), + [aux_sym_def_type_statement_token14] = ACTIONS(8279), + [aux_sym_call_statement_token1] = ACTIONS(8279), + [sym__ambiguous_call_statement] = ACTIONS(8279), + [aux_sym_addressof_expression_token1] = ACTIONS(8279), + [aux_sym_type_of_expression_token1] = ACTIONS(8279), + [aux_sym_unary_expression_token1] = ACTIONS(8279), + [sym_string_literal] = ACTIONS(8281), + [sym_number_literal] = ACTIONS(8281), + [aux_sym_boolean_literal_token1] = ACTIONS(8279), + [aux_sym_boolean_literal_token2] = ACTIONS(8279), + [sym_nothing_literal] = ACTIONS(8279), + [sym_null_literal] = ACTIONS(8279), + [sym_empty_literal] = ACTIONS(8279), + [sym_date_literal] = ACTIONS(8281), + [anon_sym_POUND] = ACTIONS(8279), + }, + [STATE(5979)] = { + [sym_identifier] = ACTIONS(8467), + [sym_newline] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8467), + [aux_sym_frm_property_statement_token1] = ACTIONS(8467), + [anon_sym_DOT] = ACTIONS(8467), + [anon_sym_BANG] = ACTIONS(6089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8467), + [aux_sym_option_statement_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8467), + [aux_sym_preprocessor_const_token1] = ACTIONS(8467), + [sym_static_modifier] = ACTIONS(8467), + [sym__dim_keyword] = ACTIONS(8467), + [sym__redim_keyword] = ACTIONS(8467), + [aux_sym_get_accessor_token1] = ACTIONS(8467), + [aux_sym_set_accessor_token1] = ACTIONS(8467), + [anon_sym_COMMA] = ACTIONS(6089), + [aux_sym_const_declaration_token1] = ACTIONS(8467), + [anon_sym_LPAREN] = ACTIONS(6089), + [aux_sym_as_type_clause_token2] = ACTIONS(8467), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8467), + [aux_sym_visibility_token1] = ACTIONS(8467), + [aux_sym_visibility_token2] = ACTIONS(8467), + [aux_sym_elseif_fragment_token1] = ACTIONS(8467), + [aux_sym_else_fragment_token1] = ACTIONS(8467), + [aux_sym_select_statement_token1] = ACTIONS(8467), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8467), + [aux_sym__for_header_token1] = ACTIONS(8467), + [aux_sym_do_statement_token1] = ACTIONS(8467), + [aux_sym_do_condition_token1] = ACTIONS(8467), + [aux_sym_with_statement_token1] = ACTIONS(8467), + [aux_sym_exit_statement_token1] = ACTIONS(8467), + [sym_end_statement] = ACTIONS(6089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8467), + [aux_sym_on_goto_statement_token2] = ACTIONS(8467), + [aux_sym_on_error_statement_token2] = ACTIONS(8467), + [sym__ambiguous_redim_statement] = ACTIONS(6089), + [aux_sym_erase_statement_token1] = ACTIONS(8467), + [aux_sym_open_statement_token1] = ACTIONS(8467), + [aux_sym_file_mode_token2] = ACTIONS(8467), + [aux_sym_file_access_token2] = ACTIONS(8467), + [aux_sym_file_lock_token2] = ACTIONS(8467), + [aux_sym_print_statement_token1] = ACTIONS(8467), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(8467), + [anon_sym_QMARK] = ACTIONS(6089), + [aux_sym_close_statement_token1] = ACTIONS(8467), + [aux_sym_put_statement_token1] = ACTIONS(8467), + [aux_sym_unlock_statement_token1] = ACTIONS(8467), + [aux_sym_seek_statement_token1] = ACTIONS(8467), + [sym_reset_statement] = ACTIONS(8467), + [aux_sym_raise_event_statement_token1] = ACTIONS(8467), + [sym_stop_statement] = ACTIONS(8467), + [sym_beep_statement] = ACTIONS(8467), + [aux_sym_unload_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token2] = ACTIONS(8467), + [aux_sym_def_type_statement_token3] = ACTIONS(8467), + [aux_sym_def_type_statement_token4] = ACTIONS(8467), + [aux_sym_def_type_statement_token5] = ACTIONS(8467), + [aux_sym_def_type_statement_token6] = ACTIONS(8467), + [aux_sym_def_type_statement_token7] = ACTIONS(8467), + [aux_sym_def_type_statement_token8] = ACTIONS(8467), + [aux_sym_def_type_statement_token9] = ACTIONS(8467), + [aux_sym_def_type_statement_token10] = ACTIONS(8467), + [aux_sym_def_type_statement_token11] = ACTIONS(8467), + [aux_sym_def_type_statement_token12] = ACTIONS(8467), + [aux_sym_def_type_statement_token13] = ACTIONS(8467), + [aux_sym_def_type_statement_token14] = ACTIONS(8467), + [aux_sym_call_statement_token1] = ACTIONS(8467), + [sym__ambiguous_call_statement] = ACTIONS(8467), + [aux_sym_addressof_expression_token1] = ACTIONS(8467), + [aux_sym_type_of_expression_token1] = ACTIONS(8467), + [aux_sym_unary_expression_token1] = ACTIONS(8467), + [sym_string_literal] = ACTIONS(6089), + [sym_number_literal] = ACTIONS(6089), + [aux_sym_boolean_literal_token1] = ACTIONS(8467), + [aux_sym_boolean_literal_token2] = ACTIONS(8467), + [sym_nothing_literal] = ACTIONS(8467), + [sym_null_literal] = ACTIONS(8467), + [sym_empty_literal] = ACTIONS(8467), + [sym_date_literal] = ACTIONS(6089), + [anon_sym_POUND] = ACTIONS(8467), + }, + [STATE(5980)] = { + [sym_do_condition] = STATE(7141), + [sym_identifier] = ACTIONS(8283), + [sym_newline] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8283), + [aux_sym_frm_property_statement_token1] = ACTIONS(8283), + [anon_sym_DOT] = ACTIONS(8283), + [anon_sym_BANG] = ACTIONS(8285), + [aux_sym__attribute_identifier_token1] = ACTIONS(8283), + [aux_sym_option_statement_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8283), + [aux_sym_preprocessor_const_token1] = ACTIONS(8283), + [sym_static_modifier] = ACTIONS(8283), + [sym__dim_keyword] = ACTIONS(8283), + [sym__redim_keyword] = ACTIONS(8283), + [aux_sym_get_accessor_token1] = ACTIONS(8283), + [aux_sym_set_accessor_token1] = ACTIONS(8283), + [aux_sym_const_declaration_token1] = ACTIONS(8283), + [anon_sym_LPAREN] = ACTIONS(8285), + [aux_sym_as_type_clause_token2] = ACTIONS(8283), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8283), + [aux_sym_visibility_token1] = ACTIONS(8283), + [aux_sym_visibility_token2] = ACTIONS(8283), + [aux_sym_elseif_fragment_token1] = ACTIONS(8283), + [aux_sym_else_fragment_token1] = ACTIONS(8283), + [aux_sym_select_statement_token1] = ACTIONS(8283), + [aux_sym__for_header_token1] = ACTIONS(8283), + [aux_sym_do_statement_token1] = ACTIONS(8283), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8283), + [aux_sym_exit_statement_token1] = ACTIONS(8283), + [sym_end_statement] = ACTIONS(8285), + [aux_sym_on_goto_statement_token1] = ACTIONS(8283), + [aux_sym_on_goto_statement_token2] = ACTIONS(8283), + [aux_sym_on_error_statement_token2] = ACTIONS(8283), + [sym__ambiguous_redim_statement] = ACTIONS(8285), + [aux_sym_erase_statement_token1] = ACTIONS(8283), + [aux_sym_open_statement_token1] = ACTIONS(8283), + [aux_sym_file_mode_token2] = ACTIONS(8283), + [aux_sym_file_access_token2] = ACTIONS(8283), + [aux_sym_file_lock_token2] = ACTIONS(8283), + [aux_sym_print_statement_token1] = ACTIONS(8283), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_DASH] = ACTIONS(8283), + [anon_sym_QMARK] = ACTIONS(8285), + [aux_sym_close_statement_token1] = ACTIONS(8283), + [aux_sym_put_statement_token1] = ACTIONS(8283), + [aux_sym_unlock_statement_token1] = ACTIONS(8283), + [aux_sym_seek_statement_token1] = ACTIONS(8283), + [sym_reset_statement] = ACTIONS(8283), + [aux_sym_raise_event_statement_token1] = ACTIONS(8283), + [sym_stop_statement] = ACTIONS(8283), + [sym_beep_statement] = ACTIONS(8283), + [aux_sym_unload_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token2] = ACTIONS(8283), + [aux_sym_def_type_statement_token3] = ACTIONS(8283), + [aux_sym_def_type_statement_token4] = ACTIONS(8283), + [aux_sym_def_type_statement_token5] = ACTIONS(8283), + [aux_sym_def_type_statement_token6] = ACTIONS(8283), + [aux_sym_def_type_statement_token7] = ACTIONS(8283), + [aux_sym_def_type_statement_token8] = ACTIONS(8283), + [aux_sym_def_type_statement_token9] = ACTIONS(8283), + [aux_sym_def_type_statement_token10] = ACTIONS(8283), + [aux_sym_def_type_statement_token11] = ACTIONS(8283), + [aux_sym_def_type_statement_token12] = ACTIONS(8283), + [aux_sym_def_type_statement_token13] = ACTIONS(8283), + [aux_sym_def_type_statement_token14] = ACTIONS(8283), + [aux_sym_call_statement_token1] = ACTIONS(8283), + [sym__ambiguous_call_statement] = ACTIONS(8283), + [aux_sym_addressof_expression_token1] = ACTIONS(8283), + [aux_sym_type_of_expression_token1] = ACTIONS(8283), + [aux_sym_unary_expression_token1] = ACTIONS(8283), + [sym_string_literal] = ACTIONS(8285), + [sym_number_literal] = ACTIONS(8285), + [aux_sym_boolean_literal_token1] = ACTIONS(8283), + [aux_sym_boolean_literal_token2] = ACTIONS(8283), + [sym_nothing_literal] = ACTIONS(8283), + [sym_null_literal] = ACTIONS(8283), + [sym_empty_literal] = ACTIONS(8283), + [sym_date_literal] = ACTIONS(8285), + [anon_sym_POUND] = ACTIONS(8283), + }, + [STATE(5981)] = { + [sym_do_condition] = STATE(7143), + [sym_identifier] = ACTIONS(8294), + [sym_newline] = ACTIONS(8296), + [anon_sym_COLON] = ACTIONS(8296), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8294), + [aux_sym_frm_property_statement_token1] = ACTIONS(8294), + [anon_sym_DOT] = ACTIONS(8294), + [anon_sym_BANG] = ACTIONS(8296), + [aux_sym__attribute_identifier_token1] = ACTIONS(8294), + [aux_sym_option_statement_token3] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8294), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8294), + [aux_sym_preprocessor_const_token1] = ACTIONS(8294), + [sym_static_modifier] = ACTIONS(8294), + [sym__dim_keyword] = ACTIONS(8294), + [sym__redim_keyword] = ACTIONS(8294), + [aux_sym_get_accessor_token1] = ACTIONS(8294), + [aux_sym_set_accessor_token1] = ACTIONS(8294), + [aux_sym_const_declaration_token1] = ACTIONS(8294), + [anon_sym_LPAREN] = ACTIONS(8296), + [aux_sym_as_type_clause_token2] = ACTIONS(8294), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8294), + [aux_sym_visibility_token1] = ACTIONS(8294), + [aux_sym_visibility_token2] = ACTIONS(8294), + [aux_sym_elseif_fragment_token1] = ACTIONS(8294), + [aux_sym_else_fragment_token1] = ACTIONS(8294), + [aux_sym_select_statement_token1] = ACTIONS(8294), + [aux_sym__for_header_token1] = ACTIONS(8294), + [aux_sym_do_statement_token1] = ACTIONS(8294), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8294), + [aux_sym_exit_statement_token1] = ACTIONS(8294), + [sym_end_statement] = ACTIONS(8296), + [aux_sym_on_goto_statement_token1] = ACTIONS(8294), + [aux_sym_on_goto_statement_token2] = ACTIONS(8294), + [aux_sym_on_error_statement_token2] = ACTIONS(8294), + [sym__ambiguous_redim_statement] = ACTIONS(8296), + [aux_sym_erase_statement_token1] = ACTIONS(8294), + [aux_sym_open_statement_token1] = ACTIONS(8294), + [aux_sym_file_mode_token2] = ACTIONS(8294), + [aux_sym_file_access_token2] = ACTIONS(8294), + [aux_sym_file_lock_token2] = ACTIONS(8294), + [aux_sym_print_statement_token1] = ACTIONS(8294), + [anon_sym_PLUS] = ACTIONS(8296), + [anon_sym_DASH] = ACTIONS(8294), + [anon_sym_QMARK] = ACTIONS(8296), + [aux_sym_close_statement_token1] = ACTIONS(8294), + [aux_sym_put_statement_token1] = ACTIONS(8294), + [aux_sym_unlock_statement_token1] = ACTIONS(8294), + [aux_sym_seek_statement_token1] = ACTIONS(8294), + [sym_reset_statement] = ACTIONS(8294), + [aux_sym_raise_event_statement_token1] = ACTIONS(8294), + [sym_stop_statement] = ACTIONS(8294), + [sym_beep_statement] = ACTIONS(8294), + [aux_sym_unload_statement_token1] = ACTIONS(8294), + [aux_sym_def_type_statement_token1] = ACTIONS(8294), + [aux_sym_def_type_statement_token2] = ACTIONS(8294), + [aux_sym_def_type_statement_token3] = ACTIONS(8294), + [aux_sym_def_type_statement_token4] = ACTIONS(8294), + [aux_sym_def_type_statement_token5] = ACTIONS(8294), + [aux_sym_def_type_statement_token6] = ACTIONS(8294), + [aux_sym_def_type_statement_token7] = ACTIONS(8294), + [aux_sym_def_type_statement_token8] = ACTIONS(8294), + [aux_sym_def_type_statement_token9] = ACTIONS(8294), + [aux_sym_def_type_statement_token10] = ACTIONS(8294), + [aux_sym_def_type_statement_token11] = ACTIONS(8294), + [aux_sym_def_type_statement_token12] = ACTIONS(8294), + [aux_sym_def_type_statement_token13] = ACTIONS(8294), + [aux_sym_def_type_statement_token14] = ACTIONS(8294), + [aux_sym_call_statement_token1] = ACTIONS(8294), + [sym__ambiguous_call_statement] = ACTIONS(8294), + [aux_sym_addressof_expression_token1] = ACTIONS(8294), + [aux_sym_type_of_expression_token1] = ACTIONS(8294), + [aux_sym_unary_expression_token1] = ACTIONS(8294), + [sym_string_literal] = ACTIONS(8296), + [sym_number_literal] = ACTIONS(8296), + [aux_sym_boolean_literal_token1] = ACTIONS(8294), + [aux_sym_boolean_literal_token2] = ACTIONS(8294), + [sym_nothing_literal] = ACTIONS(8294), + [sym_null_literal] = ACTIONS(8294), + [sym_empty_literal] = ACTIONS(8294), + [sym_date_literal] = ACTIONS(8296), + [anon_sym_POUND] = ACTIONS(8294), + }, + [STATE(5982)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(5983), + [sym_identifier] = ACTIONS(8692), + [sym_newline] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(10848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8692), + [aux_sym_frm_property_statement_token1] = ACTIONS(8692), + [anon_sym_DOT] = ACTIONS(8692), + [anon_sym_BANG] = ACTIONS(8694), + [aux_sym__attribute_identifier_token1] = ACTIONS(8692), + [aux_sym_option_statement_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8692), + [aux_sym_preprocessor_const_token1] = ACTIONS(8692), + [sym_static_modifier] = ACTIONS(8692), + [sym__dim_keyword] = ACTIONS(8692), + [sym__redim_keyword] = ACTIONS(8692), + [aux_sym_get_accessor_token1] = ACTIONS(8692), + [aux_sym_set_accessor_token1] = ACTIONS(8692), + [aux_sym_const_declaration_token1] = ACTIONS(8692), + [anon_sym_LPAREN] = ACTIONS(8694), + [aux_sym_as_type_clause_token2] = ACTIONS(8692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8692), + [aux_sym_visibility_token1] = ACTIONS(8692), + [aux_sym_visibility_token2] = ACTIONS(8692), + [aux_sym_elseif_fragment_token1] = ACTIONS(8692), + [aux_sym_else_fragment_token1] = ACTIONS(10914), + [aux_sym_select_statement_token1] = ACTIONS(8692), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8692), + [aux_sym__for_header_token1] = ACTIONS(8692), + [aux_sym_do_statement_token1] = ACTIONS(8692), + [aux_sym_do_condition_token1] = ACTIONS(8692), + [aux_sym_with_statement_token1] = ACTIONS(8692), + [aux_sym_exit_statement_token1] = ACTIONS(8692), + [sym_end_statement] = ACTIONS(8694), + [aux_sym_on_goto_statement_token1] = ACTIONS(8692), + [aux_sym_on_goto_statement_token2] = ACTIONS(8692), + [aux_sym_on_error_statement_token2] = ACTIONS(8692), + [sym__ambiguous_redim_statement] = ACTIONS(8694), + [aux_sym_erase_statement_token1] = ACTIONS(8692), + [aux_sym_open_statement_token1] = ACTIONS(8692), + [aux_sym_file_mode_token2] = ACTIONS(8692), + [aux_sym_file_access_token2] = ACTIONS(8692), + [aux_sym_file_lock_token2] = ACTIONS(8692), + [aux_sym_print_statement_token1] = ACTIONS(8692), + [anon_sym_PLUS] = ACTIONS(8694), + [anon_sym_DASH] = ACTIONS(8692), + [anon_sym_QMARK] = ACTIONS(8694), + [aux_sym_close_statement_token1] = ACTIONS(8692), + [aux_sym_put_statement_token1] = ACTIONS(8692), + [aux_sym_unlock_statement_token1] = ACTIONS(8692), + [aux_sym_seek_statement_token1] = ACTIONS(8692), + [sym_reset_statement] = ACTIONS(8692), + [aux_sym_raise_event_statement_token1] = ACTIONS(8692), + [sym_stop_statement] = ACTIONS(8692), + [sym_beep_statement] = ACTIONS(8692), + [aux_sym_unload_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token2] = ACTIONS(8692), + [aux_sym_def_type_statement_token3] = ACTIONS(8692), + [aux_sym_def_type_statement_token4] = ACTIONS(8692), + [aux_sym_def_type_statement_token5] = ACTIONS(8692), + [aux_sym_def_type_statement_token6] = ACTIONS(8692), + [aux_sym_def_type_statement_token7] = ACTIONS(8692), + [aux_sym_def_type_statement_token8] = ACTIONS(8692), + [aux_sym_def_type_statement_token9] = ACTIONS(8692), + [aux_sym_def_type_statement_token10] = ACTIONS(8692), + [aux_sym_def_type_statement_token11] = ACTIONS(8692), + [aux_sym_def_type_statement_token12] = ACTIONS(8692), + [aux_sym_def_type_statement_token13] = ACTIONS(8692), + [aux_sym_def_type_statement_token14] = ACTIONS(8692), + [aux_sym_call_statement_token1] = ACTIONS(8692), + [sym__ambiguous_call_statement] = ACTIONS(8692), + [aux_sym_addressof_expression_token1] = ACTIONS(8692), + [aux_sym_type_of_expression_token1] = ACTIONS(8692), + [aux_sym_unary_expression_token1] = ACTIONS(8692), + [sym_string_literal] = ACTIONS(8694), + [sym_number_literal] = ACTIONS(8694), + [aux_sym_boolean_literal_token1] = ACTIONS(8692), + [aux_sym_boolean_literal_token2] = ACTIONS(8692), + [sym_nothing_literal] = ACTIONS(8692), + [sym_null_literal] = ACTIONS(8692), + [sym_empty_literal] = ACTIONS(8692), + [sym_date_literal] = ACTIONS(8694), + [anon_sym_POUND] = ACTIONS(8692), + }, + [STATE(5983)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6263), + [sym_identifier] = ACTIONS(8772), + [sym_newline] = ACTIONS(8774), + [anon_sym_COLON] = ACTIONS(8774), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8772), + [aux_sym_frm_property_statement_token1] = ACTIONS(8772), + [anon_sym_DOT] = ACTIONS(8772), + [anon_sym_BANG] = ACTIONS(8774), + [aux_sym__attribute_identifier_token1] = ACTIONS(8772), + [aux_sym_option_statement_token3] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8772), + [aux_sym_preprocessor_const_token1] = ACTIONS(8772), + [sym_static_modifier] = ACTIONS(8772), + [sym__dim_keyword] = ACTIONS(8772), + [sym__redim_keyword] = ACTIONS(8772), + [aux_sym_get_accessor_token1] = ACTIONS(8772), + [aux_sym_set_accessor_token1] = ACTIONS(8772), + [aux_sym_const_declaration_token1] = ACTIONS(8772), + [anon_sym_LPAREN] = ACTIONS(8774), + [aux_sym_as_type_clause_token2] = ACTIONS(8772), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8772), + [aux_sym_visibility_token1] = ACTIONS(8772), + [aux_sym_visibility_token2] = ACTIONS(8772), + [aux_sym_elseif_fragment_token1] = ACTIONS(8772), + [aux_sym_else_fragment_token1] = ACTIONS(8772), + [aux_sym_select_statement_token1] = ACTIONS(8772), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8772), + [aux_sym__for_header_token1] = ACTIONS(8772), + [aux_sym_do_statement_token1] = ACTIONS(8772), + [aux_sym_do_condition_token1] = ACTIONS(8772), + [aux_sym_with_statement_token1] = ACTIONS(8772), + [aux_sym_exit_statement_token1] = ACTIONS(8772), + [sym_end_statement] = ACTIONS(8774), + [aux_sym_on_goto_statement_token1] = ACTIONS(8772), + [aux_sym_on_goto_statement_token2] = ACTIONS(8772), + [aux_sym_on_error_statement_token2] = ACTIONS(8772), + [sym__ambiguous_redim_statement] = ACTIONS(8774), + [aux_sym_erase_statement_token1] = ACTIONS(8772), + [aux_sym_open_statement_token1] = ACTIONS(8772), + [aux_sym_file_mode_token2] = ACTIONS(8772), + [aux_sym_file_access_token2] = ACTIONS(8772), + [aux_sym_file_lock_token2] = ACTIONS(8772), + [aux_sym_print_statement_token1] = ACTIONS(8772), + [anon_sym_PLUS] = ACTIONS(8774), + [anon_sym_DASH] = ACTIONS(8772), + [anon_sym_QMARK] = ACTIONS(8774), + [aux_sym_close_statement_token1] = ACTIONS(8772), + [aux_sym_put_statement_token1] = ACTIONS(8772), + [aux_sym_unlock_statement_token1] = ACTIONS(8772), + [aux_sym_seek_statement_token1] = ACTIONS(8772), + [sym_reset_statement] = ACTIONS(8772), + [aux_sym_raise_event_statement_token1] = ACTIONS(8772), + [sym_stop_statement] = ACTIONS(8772), + [sym_beep_statement] = ACTIONS(8772), + [aux_sym_unload_statement_token1] = ACTIONS(8772), + [aux_sym_def_type_statement_token1] = ACTIONS(8772), + [aux_sym_def_type_statement_token2] = ACTIONS(8772), + [aux_sym_def_type_statement_token3] = ACTIONS(8772), + [aux_sym_def_type_statement_token4] = ACTIONS(8772), + [aux_sym_def_type_statement_token5] = ACTIONS(8772), + [aux_sym_def_type_statement_token6] = ACTIONS(8772), + [aux_sym_def_type_statement_token7] = ACTIONS(8772), + [aux_sym_def_type_statement_token8] = ACTIONS(8772), + [aux_sym_def_type_statement_token9] = ACTIONS(8772), + [aux_sym_def_type_statement_token10] = ACTIONS(8772), + [aux_sym_def_type_statement_token11] = ACTIONS(8772), + [aux_sym_def_type_statement_token12] = ACTIONS(8772), + [aux_sym_def_type_statement_token13] = ACTIONS(8772), + [aux_sym_def_type_statement_token14] = ACTIONS(8772), + [aux_sym_call_statement_token1] = ACTIONS(8772), + [sym__ambiguous_call_statement] = ACTIONS(8772), + [aux_sym_addressof_expression_token1] = ACTIONS(8772), + [aux_sym_type_of_expression_token1] = ACTIONS(8772), + [aux_sym_unary_expression_token1] = ACTIONS(8772), + [sym_string_literal] = ACTIONS(8774), + [sym_number_literal] = ACTIONS(8774), + [aux_sym_boolean_literal_token1] = ACTIONS(8772), + [aux_sym_boolean_literal_token2] = ACTIONS(8772), + [sym_nothing_literal] = ACTIONS(8772), + [sym_null_literal] = ACTIONS(8772), + [sym_empty_literal] = ACTIONS(8772), + [sym_date_literal] = ACTIONS(8774), + [anon_sym_POUND] = ACTIONS(8772), + }, + [STATE(5984)] = { + [sym_identifier] = ACTIONS(8915), + [sym_newline] = ACTIONS(8918), + [anon_sym_COLON] = ACTIONS(8918), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8915), + [aux_sym_frm_property_statement_token1] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8915), + [anon_sym_BANG] = ACTIONS(8918), + [aux_sym__attribute_identifier_token1] = ACTIONS(8915), + [aux_sym_option_statement_token3] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8915), + [aux_sym_preprocessor_const_token1] = ACTIONS(8915), + [sym_static_modifier] = ACTIONS(8915), + [sym__dim_keyword] = ACTIONS(8915), + [sym__redim_keyword] = ACTIONS(8915), + [aux_sym_get_accessor_token1] = ACTIONS(8915), + [aux_sym_set_accessor_token1] = ACTIONS(8915), + [aux_sym_const_declaration_token1] = ACTIONS(8915), + [anon_sym_LPAREN] = ACTIONS(8918), + [aux_sym_as_type_clause_token2] = ACTIONS(8915), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8915), + [aux_sym_visibility_token1] = ACTIONS(8915), + [aux_sym_visibility_token2] = ACTIONS(8915), + [aux_sym_elseif_fragment_token1] = ACTIONS(8915), + [aux_sym_else_fragment_token1] = ACTIONS(8915), + [aux_sym_select_statement_token1] = ACTIONS(8915), + [aux_sym_select_statement_token2] = ACTIONS(8921), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8915), + [aux_sym__for_header_token1] = ACTIONS(8915), + [aux_sym_do_statement_token1] = ACTIONS(8915), + [aux_sym_do_condition_token1] = ACTIONS(8915), + [aux_sym_with_statement_token1] = ACTIONS(8915), + [aux_sym_exit_statement_token1] = ACTIONS(8915), + [sym_end_statement] = ACTIONS(8918), + [aux_sym_on_goto_statement_token1] = ACTIONS(8915), + [aux_sym_on_goto_statement_token2] = ACTIONS(8915), + [aux_sym_on_error_statement_token2] = ACTIONS(8915), + [sym__ambiguous_redim_statement] = ACTIONS(8918), + [aux_sym_erase_statement_token1] = ACTIONS(8915), + [aux_sym_open_statement_token1] = ACTIONS(8915), + [aux_sym_file_mode_token2] = ACTIONS(8915), + [aux_sym_file_access_token2] = ACTIONS(8915), + [aux_sym_file_lock_token2] = ACTIONS(8915), + [aux_sym_print_statement_token1] = ACTIONS(8915), + [anon_sym_PLUS] = ACTIONS(8918), + [anon_sym_DASH] = ACTIONS(8915), + [anon_sym_QMARK] = ACTIONS(8918), + [aux_sym_close_statement_token1] = ACTIONS(8915), + [aux_sym_put_statement_token1] = ACTIONS(8915), + [aux_sym_unlock_statement_token1] = ACTIONS(8915), + [aux_sym_seek_statement_token1] = ACTIONS(8915), + [sym_reset_statement] = ACTIONS(8915), + [aux_sym_raise_event_statement_token1] = ACTIONS(8915), + [sym_stop_statement] = ACTIONS(8915), + [sym_beep_statement] = ACTIONS(8915), + [aux_sym_unload_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token2] = ACTIONS(8915), + [aux_sym_def_type_statement_token3] = ACTIONS(8915), + [aux_sym_def_type_statement_token4] = ACTIONS(8915), + [aux_sym_def_type_statement_token5] = ACTIONS(8915), + [aux_sym_def_type_statement_token6] = ACTIONS(8915), + [aux_sym_def_type_statement_token7] = ACTIONS(8915), + [aux_sym_def_type_statement_token8] = ACTIONS(8915), + [aux_sym_def_type_statement_token9] = ACTIONS(8915), + [aux_sym_def_type_statement_token10] = ACTIONS(8915), + [aux_sym_def_type_statement_token11] = ACTIONS(8915), + [aux_sym_def_type_statement_token12] = ACTIONS(8915), + [aux_sym_def_type_statement_token13] = ACTIONS(8915), + [aux_sym_def_type_statement_token14] = ACTIONS(8915), + [aux_sym_call_statement_token1] = ACTIONS(8915), + [sym__ambiguous_call_statement] = ACTIONS(8915), + [aux_sym_addressof_expression_token1] = ACTIONS(8915), + [aux_sym_type_of_expression_token1] = ACTIONS(8915), + [aux_sym_unary_expression_token1] = ACTIONS(8915), + [sym_string_literal] = ACTIONS(8918), + [sym_number_literal] = ACTIONS(8918), + [aux_sym_boolean_literal_token1] = ACTIONS(8915), + [aux_sym_boolean_literal_token2] = ACTIONS(8915), + [sym_nothing_literal] = ACTIONS(8915), + [sym_null_literal] = ACTIONS(8915), + [sym_empty_literal] = ACTIONS(8915), + [sym_date_literal] = ACTIONS(8918), + [anon_sym_POUND] = ACTIONS(8915), + }, + [STATE(5985)] = { + [sym_identifier] = ACTIONS(8958), + [sym_newline] = ACTIONS(8960), + [anon_sym_COLON] = ACTIONS(8960), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8958), + [aux_sym_frm_property_statement_token1] = ACTIONS(8958), + [anon_sym_DOT] = ACTIONS(8958), + [anon_sym_BANG] = ACTIONS(8960), + [aux_sym__attribute_identifier_token1] = ACTIONS(8958), + [aux_sym_option_statement_token3] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8958), + [aux_sym_preprocessor_const_token1] = ACTIONS(8958), + [sym_static_modifier] = ACTIONS(8958), + [sym__dim_keyword] = ACTIONS(8958), + [sym__redim_keyword] = ACTIONS(8958), + [aux_sym_get_accessor_token1] = ACTIONS(8958), + [aux_sym_set_accessor_token1] = ACTIONS(8958), + [anon_sym_COMMA] = ACTIONS(8960), + [aux_sym_const_declaration_token1] = ACTIONS(8958), + [anon_sym_LPAREN] = ACTIONS(8960), + [aux_sym_as_type_clause_token2] = ACTIONS(8958), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8958), + [aux_sym_visibility_token1] = ACTIONS(8958), + [aux_sym_visibility_token2] = ACTIONS(8958), + [aux_sym_elseif_fragment_token1] = ACTIONS(8958), + [aux_sym_else_fragment_token1] = ACTIONS(8958), + [aux_sym_select_statement_token1] = ACTIONS(8958), + [aux_sym__for_header_token1] = ACTIONS(8958), + [aux_sym_do_statement_token1] = ACTIONS(8958), + [aux_sym_do_condition_token1] = ACTIONS(8958), + [aux_sym_with_statement_token1] = ACTIONS(8958), + [aux_sym_exit_statement_token1] = ACTIONS(8958), + [sym_end_statement] = ACTIONS(8960), + [aux_sym_on_goto_statement_token1] = ACTIONS(8958), + [aux_sym_on_goto_statement_token2] = ACTIONS(8958), + [aux_sym_on_error_statement_token2] = ACTIONS(8958), + [sym__ambiguous_redim_statement] = ACTIONS(8960), + [aux_sym_erase_statement_token1] = ACTIONS(8958), + [aux_sym_open_statement_token1] = ACTIONS(8958), + [aux_sym_file_mode_token2] = ACTIONS(8958), + [aux_sym_file_access_token2] = ACTIONS(8958), + [aux_sym_file_lock_token2] = ACTIONS(8958), + [aux_sym_print_statement_token1] = ACTIONS(8958), + [anon_sym_PLUS] = ACTIONS(8960), + [anon_sym_DASH] = ACTIONS(8958), + [anon_sym_QMARK] = ACTIONS(8960), + [aux_sym_close_statement_token1] = ACTIONS(8958), + [aux_sym_put_statement_token1] = ACTIONS(8958), + [aux_sym_unlock_statement_token1] = ACTIONS(8958), + [aux_sym_seek_statement_token1] = ACTIONS(8958), + [sym_reset_statement] = ACTIONS(8958), + [aux_sym_raise_event_statement_token1] = ACTIONS(8958), + [sym_stop_statement] = ACTIONS(8958), + [sym_beep_statement] = ACTIONS(8958), + [aux_sym_unload_statement_token1] = ACTIONS(8958), + [aux_sym_def_type_statement_token1] = ACTIONS(8958), + [aux_sym_def_type_statement_token2] = ACTIONS(8958), + [aux_sym_def_type_statement_token3] = ACTIONS(8958), + [aux_sym_def_type_statement_token4] = ACTIONS(8958), + [aux_sym_def_type_statement_token5] = ACTIONS(8958), + [aux_sym_def_type_statement_token6] = ACTIONS(8958), + [aux_sym_def_type_statement_token7] = ACTIONS(8958), + [aux_sym_def_type_statement_token8] = ACTIONS(8958), + [aux_sym_def_type_statement_token9] = ACTIONS(8958), + [aux_sym_def_type_statement_token10] = ACTIONS(8958), + [aux_sym_def_type_statement_token11] = ACTIONS(8958), + [aux_sym_def_type_statement_token12] = ACTIONS(8958), + [aux_sym_def_type_statement_token13] = ACTIONS(8958), + [aux_sym_def_type_statement_token14] = ACTIONS(8958), + [aux_sym_call_statement_token1] = ACTIONS(8958), + [sym__ambiguous_call_statement] = ACTIONS(8958), + [aux_sym_addressof_expression_token1] = ACTIONS(8958), + [aux_sym_type_of_expression_token1] = ACTIONS(8958), + [aux_sym_unary_expression_token1] = ACTIONS(8958), + [sym_string_literal] = ACTIONS(8960), + [sym_number_literal] = ACTIONS(8960), + [aux_sym_boolean_literal_token1] = ACTIONS(8958), + [aux_sym_boolean_literal_token2] = ACTIONS(8958), + [sym_nothing_literal] = ACTIONS(8958), + [sym_null_literal] = ACTIONS(8958), + [sym_empty_literal] = ACTIONS(8958), + [sym_date_literal] = ACTIONS(8960), + [anon_sym_POUND] = ACTIONS(8958), + }, + [STATE(5986)] = { + [sym_identifier] = ACTIONS(8970), + [sym_newline] = ACTIONS(8972), + [anon_sym_COLON] = ACTIONS(8972), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8970), + [aux_sym_frm_property_statement_token1] = ACTIONS(8970), + [anon_sym_DOT] = ACTIONS(8970), + [anon_sym_BANG] = ACTIONS(8972), + [aux_sym__attribute_identifier_token1] = ACTIONS(8970), + [aux_sym_option_statement_token3] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8970), + [aux_sym_preprocessor_const_token1] = ACTIONS(8970), + [sym_static_modifier] = ACTIONS(8970), + [sym__dim_keyword] = ACTIONS(8970), + [sym__redim_keyword] = ACTIONS(8970), + [aux_sym_get_accessor_token1] = ACTIONS(8970), + [aux_sym_set_accessor_token1] = ACTIONS(8970), + [anon_sym_COMMA] = ACTIONS(8972), + [aux_sym_const_declaration_token1] = ACTIONS(8970), + [anon_sym_LPAREN] = ACTIONS(8972), + [aux_sym_as_type_clause_token2] = ACTIONS(8970), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8970), + [aux_sym_visibility_token1] = ACTIONS(8970), + [aux_sym_visibility_token2] = ACTIONS(8970), + [aux_sym_elseif_fragment_token1] = ACTIONS(8970), + [aux_sym_else_fragment_token1] = ACTIONS(8970), + [aux_sym_select_statement_token1] = ACTIONS(8970), + [aux_sym__for_header_token1] = ACTIONS(8970), + [aux_sym_do_statement_token1] = ACTIONS(8970), + [aux_sym_do_condition_token1] = ACTIONS(8970), + [aux_sym_with_statement_token1] = ACTIONS(8970), + [aux_sym_exit_statement_token1] = ACTIONS(8970), + [sym_end_statement] = ACTIONS(8972), + [aux_sym_on_goto_statement_token1] = ACTIONS(8970), + [aux_sym_on_goto_statement_token2] = ACTIONS(8970), + [aux_sym_on_error_statement_token2] = ACTIONS(8970), + [sym__ambiguous_redim_statement] = ACTIONS(8972), + [aux_sym_erase_statement_token1] = ACTIONS(8970), + [aux_sym_open_statement_token1] = ACTIONS(8970), + [aux_sym_file_mode_token2] = ACTIONS(8970), + [aux_sym_file_access_token2] = ACTIONS(8970), + [aux_sym_file_lock_token2] = ACTIONS(8970), + [aux_sym_print_statement_token1] = ACTIONS(8970), + [anon_sym_PLUS] = ACTIONS(8972), + [anon_sym_DASH] = ACTIONS(8970), + [anon_sym_QMARK] = ACTIONS(8972), + [aux_sym_close_statement_token1] = ACTIONS(8970), + [aux_sym_put_statement_token1] = ACTIONS(8970), + [aux_sym_unlock_statement_token1] = ACTIONS(8970), + [aux_sym_seek_statement_token1] = ACTIONS(8970), + [sym_reset_statement] = ACTIONS(8970), + [aux_sym_raise_event_statement_token1] = ACTIONS(8970), + [sym_stop_statement] = ACTIONS(8970), + [sym_beep_statement] = ACTIONS(8970), + [aux_sym_unload_statement_token1] = ACTIONS(8970), + [aux_sym_def_type_statement_token1] = ACTIONS(8970), + [aux_sym_def_type_statement_token2] = ACTIONS(8970), + [aux_sym_def_type_statement_token3] = ACTIONS(8970), + [aux_sym_def_type_statement_token4] = ACTIONS(8970), + [aux_sym_def_type_statement_token5] = ACTIONS(8970), + [aux_sym_def_type_statement_token6] = ACTIONS(8970), + [aux_sym_def_type_statement_token7] = ACTIONS(8970), + [aux_sym_def_type_statement_token8] = ACTIONS(8970), + [aux_sym_def_type_statement_token9] = ACTIONS(8970), + [aux_sym_def_type_statement_token10] = ACTIONS(8970), + [aux_sym_def_type_statement_token11] = ACTIONS(8970), + [aux_sym_def_type_statement_token12] = ACTIONS(8970), + [aux_sym_def_type_statement_token13] = ACTIONS(8970), + [aux_sym_def_type_statement_token14] = ACTIONS(8970), + [aux_sym_call_statement_token1] = ACTIONS(8970), + [sym__ambiguous_call_statement] = ACTIONS(8970), + [aux_sym_addressof_expression_token1] = ACTIONS(8970), + [aux_sym_type_of_expression_token1] = ACTIONS(8970), + [aux_sym_unary_expression_token1] = ACTIONS(8970), + [sym_string_literal] = ACTIONS(8972), + [sym_number_literal] = ACTIONS(8972), + [aux_sym_boolean_literal_token1] = ACTIONS(8970), + [aux_sym_boolean_literal_token2] = ACTIONS(8970), + [sym_nothing_literal] = ACTIONS(8970), + [sym_null_literal] = ACTIONS(8970), + [sym_empty_literal] = ACTIONS(8970), + [sym_date_literal] = ACTIONS(8972), + [anon_sym_POUND] = ACTIONS(8970), + }, + [STATE(5987)] = { + [sym_identifier] = ACTIONS(8939), + [sym_newline] = ACTIONS(8941), + [anon_sym_COLON] = ACTIONS(8941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8939), + [aux_sym_frm_property_statement_token1] = ACTIONS(8939), + [anon_sym_DOT] = ACTIONS(8939), + [anon_sym_BANG] = ACTIONS(8941), + [aux_sym__attribute_identifier_token1] = ACTIONS(8939), + [aux_sym_option_statement_token3] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8939), + [aux_sym_preprocessor_const_token1] = ACTIONS(8939), + [sym_static_modifier] = ACTIONS(8939), + [sym__dim_keyword] = ACTIONS(8939), + [sym__redim_keyword] = ACTIONS(8939), + [aux_sym_get_accessor_token1] = ACTIONS(8939), + [aux_sym_set_accessor_token1] = ACTIONS(8939), + [anon_sym_COMMA] = ACTIONS(10916), + [aux_sym_const_declaration_token1] = ACTIONS(8939), + [anon_sym_LPAREN] = ACTIONS(8941), + [aux_sym_as_type_clause_token2] = ACTIONS(8939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8939), + [aux_sym_visibility_token1] = ACTIONS(8939), + [aux_sym_visibility_token2] = ACTIONS(8939), + [aux_sym_elseif_fragment_token1] = ACTIONS(8939), + [aux_sym_else_fragment_token1] = ACTIONS(8939), + [aux_sym_select_statement_token1] = ACTIONS(8939), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8939), + [aux_sym__for_header_token1] = ACTIONS(8939), + [aux_sym_do_statement_token1] = ACTIONS(8939), + [aux_sym_do_condition_token1] = ACTIONS(8939), + [aux_sym_with_statement_token1] = ACTIONS(8939), + [aux_sym_exit_statement_token1] = ACTIONS(8939), + [sym_end_statement] = ACTIONS(8941), + [aux_sym_on_goto_statement_token1] = ACTIONS(8939), + [aux_sym_on_goto_statement_token2] = ACTIONS(8939), + [aux_sym_on_error_statement_token2] = ACTIONS(8939), + [sym__ambiguous_redim_statement] = ACTIONS(8941), + [aux_sym_erase_statement_token1] = ACTIONS(8939), + [aux_sym_open_statement_token1] = ACTIONS(8939), + [aux_sym_file_mode_token2] = ACTIONS(8939), + [aux_sym_file_access_token2] = ACTIONS(8939), + [aux_sym_file_lock_token2] = ACTIONS(8939), + [aux_sym_print_statement_token1] = ACTIONS(8939), + [anon_sym_PLUS] = ACTIONS(8941), + [anon_sym_DASH] = ACTIONS(8939), + [anon_sym_QMARK] = ACTIONS(8941), + [aux_sym_close_statement_token1] = ACTIONS(8939), + [aux_sym_put_statement_token1] = ACTIONS(8939), + [aux_sym_unlock_statement_token1] = ACTIONS(8939), + [aux_sym_seek_statement_token1] = ACTIONS(8939), + [sym_reset_statement] = ACTIONS(8939), + [aux_sym_raise_event_statement_token1] = ACTIONS(8939), + [sym_stop_statement] = ACTIONS(8939), + [sym_beep_statement] = ACTIONS(8939), + [aux_sym_unload_statement_token1] = ACTIONS(8939), + [aux_sym_def_type_statement_token1] = ACTIONS(8939), + [aux_sym_def_type_statement_token2] = ACTIONS(8939), + [aux_sym_def_type_statement_token3] = ACTIONS(8939), + [aux_sym_def_type_statement_token4] = ACTIONS(8939), + [aux_sym_def_type_statement_token5] = ACTIONS(8939), + [aux_sym_def_type_statement_token6] = ACTIONS(8939), + [aux_sym_def_type_statement_token7] = ACTIONS(8939), + [aux_sym_def_type_statement_token8] = ACTIONS(8939), + [aux_sym_def_type_statement_token9] = ACTIONS(8939), + [aux_sym_def_type_statement_token10] = ACTIONS(8939), + [aux_sym_def_type_statement_token11] = ACTIONS(8939), + [aux_sym_def_type_statement_token12] = ACTIONS(8939), + [aux_sym_def_type_statement_token13] = ACTIONS(8939), + [aux_sym_def_type_statement_token14] = ACTIONS(8939), + [aux_sym_call_statement_token1] = ACTIONS(8939), + [sym__ambiguous_call_statement] = ACTIONS(8939), + [aux_sym_addressof_expression_token1] = ACTIONS(8939), + [aux_sym_type_of_expression_token1] = ACTIONS(8939), + [aux_sym_unary_expression_token1] = ACTIONS(8939), + [sym_string_literal] = ACTIONS(8941), + [sym_number_literal] = ACTIONS(8941), + [aux_sym_boolean_literal_token1] = ACTIONS(8939), + [aux_sym_boolean_literal_token2] = ACTIONS(8939), + [sym_nothing_literal] = ACTIONS(8939), + [sym_null_literal] = ACTIONS(8939), + [sym_empty_literal] = ACTIONS(8939), + [sym_date_literal] = ACTIONS(8941), + [anon_sym_POUND] = ACTIONS(8939), + }, + [STATE(5988)] = { + [aux_sym__argument_sequence_repeat2] = STATE(6218), + [sym_identifier] = ACTIONS(8483), + [sym_newline] = ACTIONS(8485), + [anon_sym_COLON] = ACTIONS(8485), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8483), + [aux_sym_frm_property_statement_token1] = ACTIONS(8483), + [anon_sym_DOT] = ACTIONS(8483), + [anon_sym_BANG] = ACTIONS(8485), + [aux_sym__attribute_identifier_token1] = ACTIONS(8483), + [aux_sym_option_statement_token3] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8483), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8483), + [aux_sym_preprocessor_const_token1] = ACTIONS(8483), + [sym_static_modifier] = ACTIONS(8483), + [sym__dim_keyword] = ACTIONS(8483), + [sym__redim_keyword] = ACTIONS(8483), + [aux_sym_get_accessor_token1] = ACTIONS(8483), + [aux_sym_set_accessor_token1] = ACTIONS(8483), + [anon_sym_COMMA] = ACTIONS(5314), + [aux_sym_const_declaration_token1] = ACTIONS(8483), + [anon_sym_LPAREN] = ACTIONS(8485), + [aux_sym_as_type_clause_token2] = ACTIONS(8483), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8483), + [aux_sym_visibility_token1] = ACTIONS(8483), + [aux_sym_visibility_token2] = ACTIONS(8483), + [aux_sym_elseif_fragment_token1] = ACTIONS(8483), + [aux_sym_else_fragment_token1] = ACTIONS(8483), + [aux_sym_select_statement_token1] = ACTIONS(8483), + [aux_sym__for_header_token1] = ACTIONS(8483), + [aux_sym_do_statement_token1] = ACTIONS(8483), + [aux_sym_do_condition_token1] = ACTIONS(8483), + [aux_sym_with_statement_token1] = ACTIONS(8483), + [aux_sym_exit_statement_token1] = ACTIONS(8483), + [sym_end_statement] = ACTIONS(8485), + [aux_sym_on_goto_statement_token1] = ACTIONS(8483), + [aux_sym_on_goto_statement_token2] = ACTIONS(8483), + [aux_sym_on_error_statement_token2] = ACTIONS(8483), + [sym__ambiguous_redim_statement] = ACTIONS(8485), + [aux_sym_erase_statement_token1] = ACTIONS(8483), + [aux_sym_open_statement_token1] = ACTIONS(8483), + [aux_sym_file_mode_token2] = ACTIONS(8483), + [aux_sym_file_access_token2] = ACTIONS(8483), + [aux_sym_file_lock_token2] = ACTIONS(8483), + [aux_sym_print_statement_token1] = ACTIONS(8483), + [anon_sym_PLUS] = ACTIONS(8485), + [anon_sym_DASH] = ACTIONS(8483), + [anon_sym_QMARK] = ACTIONS(8485), + [aux_sym_close_statement_token1] = ACTIONS(8483), + [aux_sym_put_statement_token1] = ACTIONS(8483), + [aux_sym_unlock_statement_token1] = ACTIONS(8483), + [aux_sym_seek_statement_token1] = ACTIONS(8483), + [sym_reset_statement] = ACTIONS(8483), + [aux_sym_raise_event_statement_token1] = ACTIONS(8483), + [sym_stop_statement] = ACTIONS(8483), + [sym_beep_statement] = ACTIONS(8483), + [aux_sym_unload_statement_token1] = ACTIONS(8483), + [aux_sym_def_type_statement_token1] = ACTIONS(8483), + [aux_sym_def_type_statement_token2] = ACTIONS(8483), + [aux_sym_def_type_statement_token3] = ACTIONS(8483), + [aux_sym_def_type_statement_token4] = ACTIONS(8483), + [aux_sym_def_type_statement_token5] = ACTIONS(8483), + [aux_sym_def_type_statement_token6] = ACTIONS(8483), + [aux_sym_def_type_statement_token7] = ACTIONS(8483), + [aux_sym_def_type_statement_token8] = ACTIONS(8483), + [aux_sym_def_type_statement_token9] = ACTIONS(8483), + [aux_sym_def_type_statement_token10] = ACTIONS(8483), + [aux_sym_def_type_statement_token11] = ACTIONS(8483), + [aux_sym_def_type_statement_token12] = ACTIONS(8483), + [aux_sym_def_type_statement_token13] = ACTIONS(8483), + [aux_sym_def_type_statement_token14] = ACTIONS(8483), + [aux_sym_call_statement_token1] = ACTIONS(8483), + [sym__ambiguous_call_statement] = ACTIONS(8483), + [aux_sym_addressof_expression_token1] = ACTIONS(8483), + [aux_sym_type_of_expression_token1] = ACTIONS(8483), + [aux_sym_unary_expression_token1] = ACTIONS(8483), + [sym_string_literal] = ACTIONS(8485), + [sym_number_literal] = ACTIONS(8485), + [aux_sym_boolean_literal_token1] = ACTIONS(8483), + [aux_sym_boolean_literal_token2] = ACTIONS(8483), + [sym_nothing_literal] = ACTIONS(8483), + [sym_null_literal] = ACTIONS(8483), + [sym_empty_literal] = ACTIONS(8483), + [sym_date_literal] = ACTIONS(8485), + [anon_sym_POUND] = ACTIONS(8483), + }, + [STATE(5989)] = { + [sym_argument_list] = STATE(10051), + [sym_identifier] = ACTIONS(8794), + [sym_newline] = ACTIONS(8796), + [anon_sym_COLON] = ACTIONS(8796), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8794), + [aux_sym_frm_property_statement_token1] = ACTIONS(8794), + [anon_sym_DOT] = ACTIONS(8794), + [anon_sym_BANG] = ACTIONS(8796), + [aux_sym__attribute_identifier_token1] = ACTIONS(8794), + [aux_sym_option_statement_token3] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8794), + [aux_sym_preprocessor_const_token1] = ACTIONS(8794), + [sym_static_modifier] = ACTIONS(8794), + [sym__dim_keyword] = ACTIONS(8794), + [sym__redim_keyword] = ACTIONS(8794), + [aux_sym_get_accessor_token1] = ACTIONS(8794), + [aux_sym_set_accessor_token1] = ACTIONS(8794), + [aux_sym_const_declaration_token1] = ACTIONS(8794), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(8794), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8794), + [aux_sym_visibility_token1] = ACTIONS(8794), + [aux_sym_visibility_token2] = ACTIONS(8794), + [aux_sym_elseif_fragment_token1] = ACTIONS(8794), + [aux_sym_else_fragment_token1] = ACTIONS(8794), + [aux_sym_select_statement_token1] = ACTIONS(8794), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8794), + [aux_sym__for_header_token1] = ACTIONS(8794), + [aux_sym_do_statement_token1] = ACTIONS(8794), + [aux_sym_do_condition_token1] = ACTIONS(8794), + [aux_sym_with_statement_token1] = ACTIONS(8794), + [aux_sym_exit_statement_token1] = ACTIONS(8794), + [sym_end_statement] = ACTIONS(8796), + [aux_sym_on_goto_statement_token1] = ACTIONS(8794), + [aux_sym_on_goto_statement_token2] = ACTIONS(8794), + [aux_sym_on_error_statement_token2] = ACTIONS(8794), + [sym__ambiguous_redim_statement] = ACTIONS(8796), + [aux_sym_erase_statement_token1] = ACTIONS(8794), + [aux_sym_open_statement_token1] = ACTIONS(8794), + [aux_sym_file_mode_token2] = ACTIONS(8794), + [aux_sym_file_access_token2] = ACTIONS(8794), + [aux_sym_file_lock_token2] = ACTIONS(8794), + [aux_sym_print_statement_token1] = ACTIONS(8794), + [anon_sym_PLUS] = ACTIONS(8796), + [anon_sym_DASH] = ACTIONS(8794), + [anon_sym_QMARK] = ACTIONS(8796), + [aux_sym_close_statement_token1] = ACTIONS(8794), + [aux_sym_put_statement_token1] = ACTIONS(8794), + [aux_sym_unlock_statement_token1] = ACTIONS(8794), + [aux_sym_seek_statement_token1] = ACTIONS(8794), + [sym_reset_statement] = ACTIONS(8794), + [aux_sym_raise_event_statement_token1] = ACTIONS(8794), + [sym_stop_statement] = ACTIONS(8794), + [sym_beep_statement] = ACTIONS(8794), + [aux_sym_unload_statement_token1] = ACTIONS(8794), + [aux_sym_def_type_statement_token1] = ACTIONS(8794), + [aux_sym_def_type_statement_token2] = ACTIONS(8794), + [aux_sym_def_type_statement_token3] = ACTIONS(8794), + [aux_sym_def_type_statement_token4] = ACTIONS(8794), + [aux_sym_def_type_statement_token5] = ACTIONS(8794), + [aux_sym_def_type_statement_token6] = ACTIONS(8794), + [aux_sym_def_type_statement_token7] = ACTIONS(8794), + [aux_sym_def_type_statement_token8] = ACTIONS(8794), + [aux_sym_def_type_statement_token9] = ACTIONS(8794), + [aux_sym_def_type_statement_token10] = ACTIONS(8794), + [aux_sym_def_type_statement_token11] = ACTIONS(8794), + [aux_sym_def_type_statement_token12] = ACTIONS(8794), + [aux_sym_def_type_statement_token13] = ACTIONS(8794), + [aux_sym_def_type_statement_token14] = ACTIONS(8794), + [aux_sym_call_statement_token1] = ACTIONS(8794), + [sym__ambiguous_call_statement] = ACTIONS(8794), + [aux_sym_addressof_expression_token1] = ACTIONS(8794), + [aux_sym_type_of_expression_token1] = ACTIONS(8794), + [aux_sym_unary_expression_token1] = ACTIONS(8794), + [sym_string_literal] = ACTIONS(8796), + [sym_number_literal] = ACTIONS(8796), + [aux_sym_boolean_literal_token1] = ACTIONS(8794), + [aux_sym_boolean_literal_token2] = ACTIONS(8794), + [sym_nothing_literal] = ACTIONS(8794), + [sym_null_literal] = ACTIONS(8794), + [sym_empty_literal] = ACTIONS(8794), + [sym_date_literal] = ACTIONS(8796), + [anon_sym_POUND] = ACTIONS(8794), + }, + [STATE(5990)] = { + [sym_identifier] = ACTIONS(8756), + [sym_newline] = ACTIONS(8759), + [anon_sym_COLON] = ACTIONS(8759), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8756), + [aux_sym_frm_property_statement_token1] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8756), + [anon_sym_BANG] = ACTIONS(8759), + [aux_sym__attribute_identifier_token1] = ACTIONS(8756), + [aux_sym_option_statement_token3] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8756), + [aux_sym_preprocessor_const_token1] = ACTIONS(8756), + [sym_static_modifier] = ACTIONS(8756), + [sym__dim_keyword] = ACTIONS(8756), + [sym__redim_keyword] = ACTIONS(8756), + [aux_sym_get_accessor_token1] = ACTIONS(8756), + [aux_sym_set_accessor_token1] = ACTIONS(8756), + [aux_sym_const_declaration_token1] = ACTIONS(8756), + [anon_sym_LPAREN] = ACTIONS(8759), + [aux_sym_as_type_clause_token2] = ACTIONS(8756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8756), + [aux_sym_visibility_token1] = ACTIONS(8756), + [aux_sym_visibility_token2] = ACTIONS(8756), + [aux_sym_elseif_fragment_token1] = ACTIONS(8756), + [aux_sym_else_fragment_token1] = ACTIONS(8756), + [aux_sym_select_statement_token1] = ACTIONS(8756), + [aux_sym_select_statement_token2] = ACTIONS(8762), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8756), + [aux_sym__for_header_token1] = ACTIONS(8756), + [aux_sym_do_statement_token1] = ACTIONS(8756), + [aux_sym_do_condition_token1] = ACTIONS(8756), + [aux_sym_with_statement_token1] = ACTIONS(8756), + [aux_sym_exit_statement_token1] = ACTIONS(8756), + [sym_end_statement] = ACTIONS(8759), + [aux_sym_on_goto_statement_token1] = ACTIONS(8756), + [aux_sym_on_goto_statement_token2] = ACTIONS(8756), + [aux_sym_on_error_statement_token2] = ACTIONS(8756), + [sym__ambiguous_redim_statement] = ACTIONS(8759), + [aux_sym_erase_statement_token1] = ACTIONS(8756), + [aux_sym_open_statement_token1] = ACTIONS(8756), + [aux_sym_file_mode_token2] = ACTIONS(8756), + [aux_sym_file_access_token2] = ACTIONS(8756), + [aux_sym_file_lock_token2] = ACTIONS(8756), + [aux_sym_print_statement_token1] = ACTIONS(8756), + [anon_sym_PLUS] = ACTIONS(8759), + [anon_sym_DASH] = ACTIONS(8756), + [anon_sym_QMARK] = ACTIONS(8759), + [aux_sym_close_statement_token1] = ACTIONS(8756), + [aux_sym_put_statement_token1] = ACTIONS(8756), + [aux_sym_unlock_statement_token1] = ACTIONS(8756), + [aux_sym_seek_statement_token1] = ACTIONS(8756), + [sym_reset_statement] = ACTIONS(8756), + [aux_sym_raise_event_statement_token1] = ACTIONS(8756), + [sym_stop_statement] = ACTIONS(8756), + [sym_beep_statement] = ACTIONS(8756), + [aux_sym_unload_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token2] = ACTIONS(8756), + [aux_sym_def_type_statement_token3] = ACTIONS(8756), + [aux_sym_def_type_statement_token4] = ACTIONS(8756), + [aux_sym_def_type_statement_token5] = ACTIONS(8756), + [aux_sym_def_type_statement_token6] = ACTIONS(8756), + [aux_sym_def_type_statement_token7] = ACTIONS(8756), + [aux_sym_def_type_statement_token8] = ACTIONS(8756), + [aux_sym_def_type_statement_token9] = ACTIONS(8756), + [aux_sym_def_type_statement_token10] = ACTIONS(8756), + [aux_sym_def_type_statement_token11] = ACTIONS(8756), + [aux_sym_def_type_statement_token12] = ACTIONS(8756), + [aux_sym_def_type_statement_token13] = ACTIONS(8756), + [aux_sym_def_type_statement_token14] = ACTIONS(8756), + [aux_sym_call_statement_token1] = ACTIONS(8756), + [sym__ambiguous_call_statement] = ACTIONS(8756), + [aux_sym_addressof_expression_token1] = ACTIONS(8756), + [aux_sym_type_of_expression_token1] = ACTIONS(8756), + [aux_sym_unary_expression_token1] = ACTIONS(8756), + [sym_string_literal] = ACTIONS(8759), + [sym_number_literal] = ACTIONS(8759), + [aux_sym_boolean_literal_token1] = ACTIONS(8756), + [aux_sym_boolean_literal_token2] = ACTIONS(8756), + [sym_nothing_literal] = ACTIONS(8756), + [sym_null_literal] = ACTIONS(8756), + [sym_empty_literal] = ACTIONS(8756), + [sym_date_literal] = ACTIONS(8759), + [anon_sym_POUND] = ACTIONS(8756), + }, + [STATE(5991)] = { + [sym_identifier] = ACTIONS(8645), + [sym_newline] = ACTIONS(8647), + [anon_sym_COLON] = ACTIONS(8649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8645), + [aux_sym_frm_property_statement_token1] = ACTIONS(8645), + [anon_sym_DOT] = ACTIONS(8645), + [anon_sym_BANG] = ACTIONS(8647), + [aux_sym__attribute_identifier_token1] = ACTIONS(8645), + [aux_sym_option_statement_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8645), + [aux_sym_preprocessor_const_token1] = ACTIONS(8645), + [sym_static_modifier] = ACTIONS(8645), + [sym__dim_keyword] = ACTIONS(8645), + [sym__redim_keyword] = ACTIONS(8645), + [aux_sym_get_accessor_token1] = ACTIONS(8645), + [aux_sym_set_accessor_token1] = ACTIONS(8645), + [aux_sym_const_declaration_token1] = ACTIONS(8645), + [anon_sym_LPAREN] = ACTIONS(8647), + [aux_sym_as_type_clause_token2] = ACTIONS(8645), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8645), + [aux_sym_visibility_token1] = ACTIONS(8645), + [aux_sym_visibility_token2] = ACTIONS(8645), + [aux_sym_elseif_fragment_token1] = ACTIONS(8645), + [aux_sym_else_fragment_token1] = ACTIONS(8645), + [aux_sym_select_statement_token1] = ACTIONS(8645), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8645), + [aux_sym__for_header_token1] = ACTIONS(8645), + [aux_sym_do_statement_token1] = ACTIONS(8645), + [aux_sym_do_statement_token2] = ACTIONS(8645), + [aux_sym_do_condition_token1] = ACTIONS(8645), + [aux_sym_with_statement_token1] = ACTIONS(8645), + [aux_sym_exit_statement_token1] = ACTIONS(8645), + [sym_end_statement] = ACTIONS(8647), + [aux_sym_on_goto_statement_token1] = ACTIONS(8645), + [aux_sym_on_goto_statement_token2] = ACTIONS(8645), + [aux_sym_on_error_statement_token2] = ACTIONS(8645), + [sym__ambiguous_redim_statement] = ACTIONS(8647), + [aux_sym_erase_statement_token1] = ACTIONS(8645), + [aux_sym_open_statement_token1] = ACTIONS(8645), + [aux_sym_file_mode_token2] = ACTIONS(8645), + [aux_sym_file_access_token2] = ACTIONS(8645), + [aux_sym_file_lock_token2] = ACTIONS(8645), + [aux_sym_print_statement_token1] = ACTIONS(8645), + [anon_sym_PLUS] = ACTIONS(8647), + [anon_sym_DASH] = ACTIONS(8645), + [anon_sym_QMARK] = ACTIONS(8647), + [aux_sym_close_statement_token1] = ACTIONS(8645), + [aux_sym_put_statement_token1] = ACTIONS(8645), + [aux_sym_unlock_statement_token1] = ACTIONS(8645), + [aux_sym_seek_statement_token1] = ACTIONS(8645), + [sym_reset_statement] = ACTIONS(8645), + [aux_sym_raise_event_statement_token1] = ACTIONS(8645), + [sym_stop_statement] = ACTIONS(8645), + [sym_beep_statement] = ACTIONS(8645), + [aux_sym_unload_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token2] = ACTIONS(8645), + [aux_sym_def_type_statement_token3] = ACTIONS(8645), + [aux_sym_def_type_statement_token4] = ACTIONS(8645), + [aux_sym_def_type_statement_token5] = ACTIONS(8645), + [aux_sym_def_type_statement_token6] = ACTIONS(8645), + [aux_sym_def_type_statement_token7] = ACTIONS(8645), + [aux_sym_def_type_statement_token8] = ACTIONS(8645), + [aux_sym_def_type_statement_token9] = ACTIONS(8645), + [aux_sym_def_type_statement_token10] = ACTIONS(8645), + [aux_sym_def_type_statement_token11] = ACTIONS(8645), + [aux_sym_def_type_statement_token12] = ACTIONS(8645), + [aux_sym_def_type_statement_token13] = ACTIONS(8645), + [aux_sym_def_type_statement_token14] = ACTIONS(8645), + [aux_sym_call_statement_token1] = ACTIONS(8645), + [sym__ambiguous_call_statement] = ACTIONS(8645), + [aux_sym_addressof_expression_token1] = ACTIONS(8645), + [aux_sym_type_of_expression_token1] = ACTIONS(8645), + [aux_sym_unary_expression_token1] = ACTIONS(8645), + [sym_string_literal] = ACTIONS(8647), + [sym_number_literal] = ACTIONS(8649), + [aux_sym_boolean_literal_token1] = ACTIONS(8645), + [aux_sym_boolean_literal_token2] = ACTIONS(8645), + [sym_nothing_literal] = ACTIONS(8645), + [sym_null_literal] = ACTIONS(8645), + [sym_empty_literal] = ACTIONS(8645), + [sym_date_literal] = ACTIONS(8647), + [anon_sym_POUND] = ACTIONS(8645), + }, + [STATE(5992)] = { + [sym_identifier] = ACTIONS(8958), + [sym_newline] = ACTIONS(8960), + [anon_sym_COLON] = ACTIONS(8960), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8958), + [aux_sym_frm_property_statement_token1] = ACTIONS(8958), + [anon_sym_DOT] = ACTIONS(8958), + [anon_sym_BANG] = ACTIONS(8960), + [aux_sym__attribute_identifier_token1] = ACTIONS(8958), + [aux_sym_option_statement_token3] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8958), + [aux_sym_preprocessor_const_token1] = ACTIONS(8958), + [sym_static_modifier] = ACTIONS(8958), + [sym__dim_keyword] = ACTIONS(8958), + [sym__redim_keyword] = ACTIONS(8958), + [aux_sym_get_accessor_token1] = ACTIONS(8958), + [aux_sym_set_accessor_token1] = ACTIONS(8958), + [anon_sym_COMMA] = ACTIONS(8960), + [aux_sym_const_declaration_token1] = ACTIONS(8958), + [anon_sym_LPAREN] = ACTIONS(8960), + [aux_sym_as_type_clause_token2] = ACTIONS(8958), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8958), + [aux_sym_visibility_token1] = ACTIONS(8958), + [aux_sym_visibility_token2] = ACTIONS(8958), + [aux_sym_elseif_fragment_token1] = ACTIONS(8958), + [aux_sym_else_fragment_token1] = ACTIONS(8958), + [aux_sym_select_statement_token1] = ACTIONS(8958), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8958), + [aux_sym__for_header_token1] = ACTIONS(8958), + [aux_sym_do_statement_token1] = ACTIONS(8958), + [aux_sym_do_condition_token1] = ACTIONS(8958), + [aux_sym_with_statement_token1] = ACTIONS(8958), + [aux_sym_exit_statement_token1] = ACTIONS(8958), + [sym_end_statement] = ACTIONS(8960), + [aux_sym_on_goto_statement_token1] = ACTIONS(8958), + [aux_sym_on_goto_statement_token2] = ACTIONS(8958), + [aux_sym_on_error_statement_token2] = ACTIONS(8958), + [sym__ambiguous_redim_statement] = ACTIONS(8960), + [aux_sym_erase_statement_token1] = ACTIONS(8958), + [aux_sym_open_statement_token1] = ACTIONS(8958), + [aux_sym_file_mode_token2] = ACTIONS(8958), + [aux_sym_file_access_token2] = ACTIONS(8958), + [aux_sym_file_lock_token2] = ACTIONS(8958), + [aux_sym_print_statement_token1] = ACTIONS(8958), + [anon_sym_PLUS] = ACTIONS(8960), + [anon_sym_DASH] = ACTIONS(8958), + [anon_sym_QMARK] = ACTIONS(8960), + [aux_sym_close_statement_token1] = ACTIONS(8958), + [aux_sym_put_statement_token1] = ACTIONS(8958), + [aux_sym_unlock_statement_token1] = ACTIONS(8958), + [aux_sym_seek_statement_token1] = ACTIONS(8958), + [sym_reset_statement] = ACTIONS(8958), + [aux_sym_raise_event_statement_token1] = ACTIONS(8958), + [sym_stop_statement] = ACTIONS(8958), + [sym_beep_statement] = ACTIONS(8958), + [aux_sym_unload_statement_token1] = ACTIONS(8958), + [aux_sym_def_type_statement_token1] = ACTIONS(8958), + [aux_sym_def_type_statement_token2] = ACTIONS(8958), + [aux_sym_def_type_statement_token3] = ACTIONS(8958), + [aux_sym_def_type_statement_token4] = ACTIONS(8958), + [aux_sym_def_type_statement_token5] = ACTIONS(8958), + [aux_sym_def_type_statement_token6] = ACTIONS(8958), + [aux_sym_def_type_statement_token7] = ACTIONS(8958), + [aux_sym_def_type_statement_token8] = ACTIONS(8958), + [aux_sym_def_type_statement_token9] = ACTIONS(8958), + [aux_sym_def_type_statement_token10] = ACTIONS(8958), + [aux_sym_def_type_statement_token11] = ACTIONS(8958), + [aux_sym_def_type_statement_token12] = ACTIONS(8958), + [aux_sym_def_type_statement_token13] = ACTIONS(8958), + [aux_sym_def_type_statement_token14] = ACTIONS(8958), + [aux_sym_call_statement_token1] = ACTIONS(8958), + [sym__ambiguous_call_statement] = ACTIONS(8958), + [aux_sym_addressof_expression_token1] = ACTIONS(8958), + [aux_sym_type_of_expression_token1] = ACTIONS(8958), + [aux_sym_unary_expression_token1] = ACTIONS(8958), + [sym_string_literal] = ACTIONS(8960), + [sym_number_literal] = ACTIONS(8960), + [aux_sym_boolean_literal_token1] = ACTIONS(8958), + [aux_sym_boolean_literal_token2] = ACTIONS(8958), + [sym_nothing_literal] = ACTIONS(8958), + [sym_null_literal] = ACTIONS(8958), + [sym_empty_literal] = ACTIONS(8958), + [sym_date_literal] = ACTIONS(8960), + [anon_sym_POUND] = ACTIONS(8958), + }, + [STATE(5993)] = { + [sym_identifier] = ACTIONS(8749), + [sym_newline] = ACTIONS(8751), + [anon_sym_COLON] = ACTIONS(8753), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8749), + [aux_sym_frm_property_statement_token1] = ACTIONS(8749), + [anon_sym_DOT] = ACTIONS(8749), + [anon_sym_BANG] = ACTIONS(8751), + [aux_sym__attribute_identifier_token1] = ACTIONS(8749), + [aux_sym_option_statement_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8749), + [aux_sym_preprocessor_const_token1] = ACTIONS(8749), + [sym_static_modifier] = ACTIONS(8749), + [sym__dim_keyword] = ACTIONS(8749), + [sym__redim_keyword] = ACTIONS(8749), + [aux_sym_get_accessor_token1] = ACTIONS(8749), + [aux_sym_set_accessor_token1] = ACTIONS(8749), + [aux_sym_const_declaration_token1] = ACTIONS(8749), + [anon_sym_LPAREN] = ACTIONS(8751), + [aux_sym_as_type_clause_token2] = ACTIONS(8749), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8749), + [aux_sym_visibility_token1] = ACTIONS(8749), + [aux_sym_visibility_token2] = ACTIONS(8749), + [aux_sym_elseif_fragment_token1] = ACTIONS(8749), + [aux_sym_else_fragment_token1] = ACTIONS(8749), + [aux_sym_select_statement_token1] = ACTIONS(8749), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8749), + [aux_sym__for_header_token1] = ACTIONS(8749), + [aux_sym_do_statement_token1] = ACTIONS(8749), + [aux_sym_do_statement_token2] = ACTIONS(8749), + [aux_sym_do_condition_token1] = ACTIONS(8749), + [aux_sym_with_statement_token1] = ACTIONS(8749), + [aux_sym_exit_statement_token1] = ACTIONS(8749), + [sym_end_statement] = ACTIONS(8751), + [aux_sym_on_goto_statement_token1] = ACTIONS(8749), + [aux_sym_on_goto_statement_token2] = ACTIONS(8749), + [aux_sym_on_error_statement_token2] = ACTIONS(8749), + [sym__ambiguous_redim_statement] = ACTIONS(8751), + [aux_sym_erase_statement_token1] = ACTIONS(8749), + [aux_sym_open_statement_token1] = ACTIONS(8749), + [aux_sym_file_mode_token2] = ACTIONS(8749), + [aux_sym_file_access_token2] = ACTIONS(8749), + [aux_sym_file_lock_token2] = ACTIONS(8749), + [aux_sym_print_statement_token1] = ACTIONS(8749), + [anon_sym_PLUS] = ACTIONS(8751), + [anon_sym_DASH] = ACTIONS(8749), + [anon_sym_QMARK] = ACTIONS(8751), + [aux_sym_close_statement_token1] = ACTIONS(8749), + [aux_sym_put_statement_token1] = ACTIONS(8749), + [aux_sym_unlock_statement_token1] = ACTIONS(8749), + [aux_sym_seek_statement_token1] = ACTIONS(8749), + [sym_reset_statement] = ACTIONS(8749), + [aux_sym_raise_event_statement_token1] = ACTIONS(8749), + [sym_stop_statement] = ACTIONS(8749), + [sym_beep_statement] = ACTIONS(8749), + [aux_sym_unload_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token2] = ACTIONS(8749), + [aux_sym_def_type_statement_token3] = ACTIONS(8749), + [aux_sym_def_type_statement_token4] = ACTIONS(8749), + [aux_sym_def_type_statement_token5] = ACTIONS(8749), + [aux_sym_def_type_statement_token6] = ACTIONS(8749), + [aux_sym_def_type_statement_token7] = ACTIONS(8749), + [aux_sym_def_type_statement_token8] = ACTIONS(8749), + [aux_sym_def_type_statement_token9] = ACTIONS(8749), + [aux_sym_def_type_statement_token10] = ACTIONS(8749), + [aux_sym_def_type_statement_token11] = ACTIONS(8749), + [aux_sym_def_type_statement_token12] = ACTIONS(8749), + [aux_sym_def_type_statement_token13] = ACTIONS(8749), + [aux_sym_def_type_statement_token14] = ACTIONS(8749), + [aux_sym_call_statement_token1] = ACTIONS(8749), + [sym__ambiguous_call_statement] = ACTIONS(8749), + [aux_sym_addressof_expression_token1] = ACTIONS(8749), + [aux_sym_type_of_expression_token1] = ACTIONS(8749), + [aux_sym_unary_expression_token1] = ACTIONS(8749), + [sym_string_literal] = ACTIONS(8751), + [sym_number_literal] = ACTIONS(8753), + [aux_sym_boolean_literal_token1] = ACTIONS(8749), + [aux_sym_boolean_literal_token2] = ACTIONS(8749), + [sym_nothing_literal] = ACTIONS(8749), + [sym_null_literal] = ACTIONS(8749), + [sym_empty_literal] = ACTIONS(8749), + [sym_date_literal] = ACTIONS(8751), + [anon_sym_POUND] = ACTIONS(8749), + }, + [STATE(5994)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym_select_statement_token2] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(5995)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym_select_statement_token2] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(5996)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym_select_statement_token2] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(5997)] = { + [aux_sym_close_statement_repeat1] = STATE(5997), + [sym_identifier] = ACTIONS(8443), + [sym_newline] = ACTIONS(8445), + [anon_sym_COLON] = ACTIONS(8445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8443), + [aux_sym_frm_property_statement_token1] = ACTIONS(8443), + [anon_sym_DOT] = ACTIONS(8443), + [anon_sym_BANG] = ACTIONS(8445), + [aux_sym__attribute_identifier_token1] = ACTIONS(8443), + [aux_sym_option_statement_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8443), + [aux_sym_preprocessor_const_token1] = ACTIONS(8443), + [sym_static_modifier] = ACTIONS(8443), + [sym__dim_keyword] = ACTIONS(8443), + [sym__redim_keyword] = ACTIONS(8443), + [aux_sym_get_accessor_token1] = ACTIONS(8443), + [aux_sym_set_accessor_token1] = ACTIONS(8443), + [anon_sym_COMMA] = ACTIONS(10918), + [aux_sym_const_declaration_token1] = ACTIONS(8443), + [anon_sym_LPAREN] = ACTIONS(8445), + [aux_sym_as_type_clause_token2] = ACTIONS(8443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8443), + [aux_sym_visibility_token1] = ACTIONS(8443), + [aux_sym_visibility_token2] = ACTIONS(8443), + [aux_sym_elseif_fragment_token1] = ACTIONS(8443), + [aux_sym_else_fragment_token1] = ACTIONS(8443), + [aux_sym_select_statement_token1] = ACTIONS(8443), + [aux_sym__for_header_token1] = ACTIONS(8443), + [aux_sym_do_statement_token1] = ACTIONS(8443), + [aux_sym_do_condition_token1] = ACTIONS(8443), + [aux_sym_with_statement_token1] = ACTIONS(8443), + [aux_sym_exit_statement_token1] = ACTIONS(8443), + [sym_end_statement] = ACTIONS(8445), + [aux_sym_on_goto_statement_token1] = ACTIONS(8443), + [aux_sym_on_goto_statement_token2] = ACTIONS(8443), + [aux_sym_on_error_statement_token2] = ACTIONS(8443), + [sym__ambiguous_redim_statement] = ACTIONS(8445), + [aux_sym_erase_statement_token1] = ACTIONS(8443), + [aux_sym_open_statement_token1] = ACTIONS(8443), + [aux_sym_file_mode_token2] = ACTIONS(8443), + [aux_sym_file_access_token2] = ACTIONS(8443), + [aux_sym_file_lock_token2] = ACTIONS(8443), + [aux_sym_print_statement_token1] = ACTIONS(8443), + [anon_sym_PLUS] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8443), + [anon_sym_QMARK] = ACTIONS(8445), + [aux_sym_close_statement_token1] = ACTIONS(8443), + [aux_sym_put_statement_token1] = ACTIONS(8443), + [aux_sym_unlock_statement_token1] = ACTIONS(8443), + [aux_sym_seek_statement_token1] = ACTIONS(8443), + [sym_reset_statement] = ACTIONS(8443), + [aux_sym_raise_event_statement_token1] = ACTIONS(8443), + [sym_stop_statement] = ACTIONS(8443), + [sym_beep_statement] = ACTIONS(8443), + [aux_sym_unload_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token2] = ACTIONS(8443), + [aux_sym_def_type_statement_token3] = ACTIONS(8443), + [aux_sym_def_type_statement_token4] = ACTIONS(8443), + [aux_sym_def_type_statement_token5] = ACTIONS(8443), + [aux_sym_def_type_statement_token6] = ACTIONS(8443), + [aux_sym_def_type_statement_token7] = ACTIONS(8443), + [aux_sym_def_type_statement_token8] = ACTIONS(8443), + [aux_sym_def_type_statement_token9] = ACTIONS(8443), + [aux_sym_def_type_statement_token10] = ACTIONS(8443), + [aux_sym_def_type_statement_token11] = ACTIONS(8443), + [aux_sym_def_type_statement_token12] = ACTIONS(8443), + [aux_sym_def_type_statement_token13] = ACTIONS(8443), + [aux_sym_def_type_statement_token14] = ACTIONS(8443), + [aux_sym_call_statement_token1] = ACTIONS(8443), + [sym__ambiguous_call_statement] = ACTIONS(8443), + [aux_sym_addressof_expression_token1] = ACTIONS(8443), + [aux_sym_type_of_expression_token1] = ACTIONS(8443), + [aux_sym_unary_expression_token1] = ACTIONS(8443), + [sym_string_literal] = ACTIONS(8445), + [sym_number_literal] = ACTIONS(8445), + [aux_sym_boolean_literal_token1] = ACTIONS(8443), + [aux_sym_boolean_literal_token2] = ACTIONS(8443), + [sym_nothing_literal] = ACTIONS(8443), + [sym_null_literal] = ACTIONS(8443), + [sym_empty_literal] = ACTIONS(8443), + [sym_date_literal] = ACTIONS(8445), + [anon_sym_POUND] = ACTIONS(8443), + }, + [STATE(5998)] = { + [sym_identifier] = ACTIONS(8958), + [sym_newline] = ACTIONS(8960), + [anon_sym_COLON] = ACTIONS(8960), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8958), + [aux_sym_frm_property_statement_token1] = ACTIONS(8958), + [anon_sym_DOT] = ACTIONS(8958), + [anon_sym_BANG] = ACTIONS(8960), + [aux_sym__attribute_identifier_token1] = ACTIONS(8958), + [aux_sym_option_statement_token3] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8958), + [aux_sym_preprocessor_const_token1] = ACTIONS(8958), + [sym_static_modifier] = ACTIONS(8958), + [sym__dim_keyword] = ACTIONS(8958), + [sym__redim_keyword] = ACTIONS(8958), + [aux_sym_get_accessor_token1] = ACTIONS(8958), + [aux_sym_set_accessor_token1] = ACTIONS(8958), + [anon_sym_COMMA] = ACTIONS(8960), + [aux_sym_const_declaration_token1] = ACTIONS(8958), + [anon_sym_LPAREN] = ACTIONS(8960), + [aux_sym_as_type_clause_token2] = ACTIONS(8958), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8958), + [aux_sym_visibility_token1] = ACTIONS(8958), + [aux_sym_visibility_token2] = ACTIONS(8958), + [aux_sym_elseif_fragment_token1] = ACTIONS(8958), + [aux_sym_else_fragment_token1] = ACTIONS(8958), + [aux_sym_select_statement_token1] = ACTIONS(8958), + [aux_sym__for_header_token1] = ACTIONS(8958), + [aux_sym_do_statement_token1] = ACTIONS(8958), + [aux_sym_do_statement_token2] = ACTIONS(8958), + [aux_sym_do_condition_token1] = ACTIONS(8958), + [aux_sym_with_statement_token1] = ACTIONS(8958), + [aux_sym_exit_statement_token1] = ACTIONS(8958), + [sym_end_statement] = ACTIONS(8960), + [aux_sym_on_goto_statement_token1] = ACTIONS(8958), + [aux_sym_on_goto_statement_token2] = ACTIONS(8958), + [aux_sym_on_error_statement_token2] = ACTIONS(8958), + [sym__ambiguous_redim_statement] = ACTIONS(8960), + [aux_sym_erase_statement_token1] = ACTIONS(8958), + [aux_sym_open_statement_token1] = ACTIONS(8958), + [aux_sym_file_mode_token2] = ACTIONS(8958), + [aux_sym_file_access_token2] = ACTIONS(8958), + [aux_sym_file_lock_token2] = ACTIONS(8958), + [aux_sym_print_statement_token1] = ACTIONS(8958), + [anon_sym_PLUS] = ACTIONS(8960), + [anon_sym_DASH] = ACTIONS(8958), + [anon_sym_QMARK] = ACTIONS(8960), + [aux_sym_close_statement_token1] = ACTIONS(8958), + [aux_sym_put_statement_token1] = ACTIONS(8958), + [aux_sym_unlock_statement_token1] = ACTIONS(8958), + [aux_sym_seek_statement_token1] = ACTIONS(8958), + [sym_reset_statement] = ACTIONS(8958), + [aux_sym_raise_event_statement_token1] = ACTIONS(8958), + [sym_stop_statement] = ACTIONS(8958), + [sym_beep_statement] = ACTIONS(8958), + [aux_sym_unload_statement_token1] = ACTIONS(8958), + [aux_sym_def_type_statement_token1] = ACTIONS(8958), + [aux_sym_def_type_statement_token2] = ACTIONS(8958), + [aux_sym_def_type_statement_token3] = ACTIONS(8958), + [aux_sym_def_type_statement_token4] = ACTIONS(8958), + [aux_sym_def_type_statement_token5] = ACTIONS(8958), + [aux_sym_def_type_statement_token6] = ACTIONS(8958), + [aux_sym_def_type_statement_token7] = ACTIONS(8958), + [aux_sym_def_type_statement_token8] = ACTIONS(8958), + [aux_sym_def_type_statement_token9] = ACTIONS(8958), + [aux_sym_def_type_statement_token10] = ACTIONS(8958), + [aux_sym_def_type_statement_token11] = ACTIONS(8958), + [aux_sym_def_type_statement_token12] = ACTIONS(8958), + [aux_sym_def_type_statement_token13] = ACTIONS(8958), + [aux_sym_def_type_statement_token14] = ACTIONS(8958), + [aux_sym_call_statement_token1] = ACTIONS(8958), + [sym__ambiguous_call_statement] = ACTIONS(8958), + [aux_sym_addressof_expression_token1] = ACTIONS(8958), + [aux_sym_type_of_expression_token1] = ACTIONS(8958), + [aux_sym_unary_expression_token1] = ACTIONS(8958), + [sym_string_literal] = ACTIONS(8960), + [sym_number_literal] = ACTIONS(8960), + [aux_sym_boolean_literal_token1] = ACTIONS(8958), + [aux_sym_boolean_literal_token2] = ACTIONS(8958), + [sym_nothing_literal] = ACTIONS(8958), + [sym_null_literal] = ACTIONS(8958), + [sym_empty_literal] = ACTIONS(8958), + [sym_date_literal] = ACTIONS(8960), + [anon_sym_POUND] = ACTIONS(8958), + }, + [STATE(5999)] = { + [sym_identifier] = ACTIONS(8635), + [sym_newline] = ACTIONS(8637), + [anon_sym_COLON] = ACTIONS(8637), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8635), + [aux_sym_frm_property_statement_token1] = ACTIONS(8635), + [anon_sym_DOT] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(8637), + [aux_sym__attribute_identifier_token1] = ACTIONS(8635), + [aux_sym_option_statement_token3] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8635), + [aux_sym_preprocessor_const_token1] = ACTIONS(8635), + [sym_static_modifier] = ACTIONS(8635), + [sym__dim_keyword] = ACTIONS(8635), + [sym__redim_keyword] = ACTIONS(8635), + [aux_sym_get_accessor_token1] = ACTIONS(8635), + [aux_sym_set_accessor_token1] = ACTIONS(8635), + [anon_sym_COMMA] = ACTIONS(10921), + [aux_sym_const_declaration_token1] = ACTIONS(8635), + [anon_sym_LPAREN] = ACTIONS(8637), + [aux_sym_as_type_clause_token2] = ACTIONS(8635), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8635), + [aux_sym_visibility_token1] = ACTIONS(8635), + [aux_sym_visibility_token2] = ACTIONS(8635), + [aux_sym_elseif_fragment_token1] = ACTIONS(8635), + [aux_sym_else_fragment_token1] = ACTIONS(8635), + [aux_sym_select_statement_token1] = ACTIONS(8635), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8635), + [aux_sym__for_header_token1] = ACTIONS(8635), + [aux_sym_do_statement_token1] = ACTIONS(8635), + [aux_sym_do_condition_token1] = ACTIONS(8635), + [aux_sym_with_statement_token1] = ACTIONS(8635), + [aux_sym_exit_statement_token1] = ACTIONS(8635), + [sym_end_statement] = ACTIONS(8637), + [aux_sym_on_goto_statement_token1] = ACTIONS(8635), + [aux_sym_on_goto_statement_token2] = ACTIONS(8635), + [aux_sym_on_error_statement_token2] = ACTIONS(8635), + [sym__ambiguous_redim_statement] = ACTIONS(8637), + [aux_sym_erase_statement_token1] = ACTIONS(8635), + [aux_sym_open_statement_token1] = ACTIONS(8635), + [aux_sym_file_mode_token2] = ACTIONS(8635), + [aux_sym_file_access_token2] = ACTIONS(8635), + [aux_sym_file_lock_token2] = ACTIONS(8635), + [aux_sym_print_statement_token1] = ACTIONS(8635), + [anon_sym_PLUS] = ACTIONS(8637), + [anon_sym_DASH] = ACTIONS(8635), + [anon_sym_QMARK] = ACTIONS(8637), + [aux_sym_close_statement_token1] = ACTIONS(8635), + [aux_sym_put_statement_token1] = ACTIONS(8635), + [aux_sym_unlock_statement_token1] = ACTIONS(8635), + [aux_sym_seek_statement_token1] = ACTIONS(8635), + [sym_reset_statement] = ACTIONS(8635), + [aux_sym_raise_event_statement_token1] = ACTIONS(8635), + [sym_stop_statement] = ACTIONS(8635), + [sym_beep_statement] = ACTIONS(8635), + [aux_sym_unload_statement_token1] = ACTIONS(8635), + [aux_sym_def_type_statement_token1] = ACTIONS(8635), + [aux_sym_def_type_statement_token2] = ACTIONS(8635), + [aux_sym_def_type_statement_token3] = ACTIONS(8635), + [aux_sym_def_type_statement_token4] = ACTIONS(8635), + [aux_sym_def_type_statement_token5] = ACTIONS(8635), + [aux_sym_def_type_statement_token6] = ACTIONS(8635), + [aux_sym_def_type_statement_token7] = ACTIONS(8635), + [aux_sym_def_type_statement_token8] = ACTIONS(8635), + [aux_sym_def_type_statement_token9] = ACTIONS(8635), + [aux_sym_def_type_statement_token10] = ACTIONS(8635), + [aux_sym_def_type_statement_token11] = ACTIONS(8635), + [aux_sym_def_type_statement_token12] = ACTIONS(8635), + [aux_sym_def_type_statement_token13] = ACTIONS(8635), + [aux_sym_def_type_statement_token14] = ACTIONS(8635), + [aux_sym_call_statement_token1] = ACTIONS(8635), + [sym__ambiguous_call_statement] = ACTIONS(8635), + [aux_sym_addressof_expression_token1] = ACTIONS(8635), + [aux_sym_type_of_expression_token1] = ACTIONS(8635), + [aux_sym_unary_expression_token1] = ACTIONS(8635), + [sym_string_literal] = ACTIONS(8637), + [sym_number_literal] = ACTIONS(8637), + [aux_sym_boolean_literal_token1] = ACTIONS(8635), + [aux_sym_boolean_literal_token2] = ACTIONS(8635), + [sym_nothing_literal] = ACTIONS(8635), + [sym_null_literal] = ACTIONS(8635), + [sym_empty_literal] = ACTIONS(8635), + [sym_date_literal] = ACTIONS(8637), + [anon_sym_POUND] = ACTIONS(8635), + }, + [STATE(6000)] = { + [sym_identifier] = ACTIONS(8713), + [sym_newline] = ACTIONS(8715), + [anon_sym_COLON] = ACTIONS(8715), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8713), + [aux_sym_frm_property_statement_token1] = ACTIONS(8713), + [anon_sym_DOT] = ACTIONS(8713), + [anon_sym_BANG] = ACTIONS(8715), + [aux_sym__attribute_identifier_token1] = ACTIONS(8713), + [aux_sym_option_statement_token3] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8713), + [aux_sym_preprocessor_const_token1] = ACTIONS(8713), + [sym_static_modifier] = ACTIONS(8713), + [sym__dim_keyword] = ACTIONS(8713), + [sym__redim_keyword] = ACTIONS(8713), + [aux_sym_get_accessor_token1] = ACTIONS(8713), + [aux_sym_set_accessor_token1] = ACTIONS(8713), + [anon_sym_COMMA] = ACTIONS(8715), + [aux_sym_const_declaration_token1] = ACTIONS(8713), + [anon_sym_LPAREN] = ACTIONS(8715), + [aux_sym_as_type_clause_token2] = ACTIONS(8713), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8713), + [aux_sym_visibility_token1] = ACTIONS(8713), + [aux_sym_visibility_token2] = ACTIONS(8713), + [aux_sym_elseif_fragment_token1] = ACTIONS(8713), + [aux_sym_else_fragment_token1] = ACTIONS(8713), + [aux_sym_select_statement_token1] = ACTIONS(8713), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8713), + [aux_sym__for_header_token1] = ACTIONS(8713), + [aux_sym_do_statement_token1] = ACTIONS(8713), + [aux_sym_do_condition_token1] = ACTIONS(8713), + [aux_sym_with_statement_token1] = ACTIONS(8713), + [aux_sym_exit_statement_token1] = ACTIONS(8713), + [sym_end_statement] = ACTIONS(8715), + [aux_sym_on_goto_statement_token1] = ACTIONS(8713), + [aux_sym_on_goto_statement_token2] = ACTIONS(8713), + [aux_sym_on_error_statement_token2] = ACTIONS(8713), + [sym__ambiguous_redim_statement] = ACTIONS(8715), + [aux_sym_erase_statement_token1] = ACTIONS(8713), + [aux_sym_open_statement_token1] = ACTIONS(8713), + [aux_sym_file_mode_token2] = ACTIONS(8713), + [aux_sym_file_access_token2] = ACTIONS(8713), + [aux_sym_file_lock_token2] = ACTIONS(8713), + [aux_sym_print_statement_token1] = ACTIONS(8713), + [anon_sym_PLUS] = ACTIONS(8715), + [anon_sym_DASH] = ACTIONS(8713), + [anon_sym_QMARK] = ACTIONS(8715), + [aux_sym_close_statement_token1] = ACTIONS(8713), + [aux_sym_put_statement_token1] = ACTIONS(8713), + [aux_sym_unlock_statement_token1] = ACTIONS(8713), + [aux_sym_seek_statement_token1] = ACTIONS(8713), + [sym_reset_statement] = ACTIONS(8713), + [aux_sym_raise_event_statement_token1] = ACTIONS(8713), + [sym_stop_statement] = ACTIONS(8713), + [sym_beep_statement] = ACTIONS(8713), + [aux_sym_unload_statement_token1] = ACTIONS(8713), + [aux_sym_def_type_statement_token1] = ACTIONS(8713), + [aux_sym_def_type_statement_token2] = ACTIONS(8713), + [aux_sym_def_type_statement_token3] = ACTIONS(8713), + [aux_sym_def_type_statement_token4] = ACTIONS(8713), + [aux_sym_def_type_statement_token5] = ACTIONS(8713), + [aux_sym_def_type_statement_token6] = ACTIONS(8713), + [aux_sym_def_type_statement_token7] = ACTIONS(8713), + [aux_sym_def_type_statement_token8] = ACTIONS(8713), + [aux_sym_def_type_statement_token9] = ACTIONS(8713), + [aux_sym_def_type_statement_token10] = ACTIONS(8713), + [aux_sym_def_type_statement_token11] = ACTIONS(8713), + [aux_sym_def_type_statement_token12] = ACTIONS(8713), + [aux_sym_def_type_statement_token13] = ACTIONS(8713), + [aux_sym_def_type_statement_token14] = ACTIONS(8713), + [aux_sym_call_statement_token1] = ACTIONS(8713), + [sym__ambiguous_call_statement] = ACTIONS(8713), + [aux_sym_addressof_expression_token1] = ACTIONS(8713), + [aux_sym_type_of_expression_token1] = ACTIONS(8713), + [aux_sym_unary_expression_token1] = ACTIONS(8713), + [sym_string_literal] = ACTIONS(8715), + [sym_number_literal] = ACTIONS(8715), + [aux_sym_boolean_literal_token1] = ACTIONS(8713), + [aux_sym_boolean_literal_token2] = ACTIONS(8713), + [sym_nothing_literal] = ACTIONS(8713), + [sym_null_literal] = ACTIONS(8713), + [sym_empty_literal] = ACTIONS(8713), + [sym_date_literal] = ACTIONS(8715), + [anon_sym_POUND] = ACTIONS(8713), + }, + [STATE(6001)] = { + [sym_identifier] = ACTIONS(6117), + [sym_newline] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6117), + [aux_sym_frm_property_statement_token1] = ACTIONS(6117), + [anon_sym_DOT] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6119), + [aux_sym__attribute_identifier_token1] = ACTIONS(6117), + [aux_sym_option_statement_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6117), + [aux_sym_preprocessor_const_token1] = ACTIONS(6117), + [sym_static_modifier] = ACTIONS(6117), + [sym__dim_keyword] = ACTIONS(6117), + [sym__redim_keyword] = ACTIONS(6117), + [aux_sym_get_accessor_token1] = ACTIONS(6117), + [aux_sym_set_accessor_token1] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6119), + [aux_sym_const_declaration_token1] = ACTIONS(6117), + [anon_sym_LPAREN] = ACTIONS(6119), + [aux_sym_as_type_clause_token2] = ACTIONS(6117), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6117), + [aux_sym_visibility_token1] = ACTIONS(6117), + [aux_sym_visibility_token2] = ACTIONS(6117), + [aux_sym_elseif_fragment_token1] = ACTIONS(6117), + [aux_sym_else_fragment_token1] = ACTIONS(6117), + [aux_sym_select_statement_token1] = ACTIONS(6117), + [aux_sym__for_header_token1] = ACTIONS(6117), + [aux_sym_do_statement_token1] = ACTIONS(6117), + [aux_sym_do_condition_token1] = ACTIONS(6117), + [aux_sym_with_statement_token1] = ACTIONS(6117), + [aux_sym_exit_statement_token1] = ACTIONS(6117), + [sym_end_statement] = ACTIONS(6119), + [aux_sym_on_goto_statement_token1] = ACTIONS(6117), + [aux_sym_on_goto_statement_token2] = ACTIONS(6117), + [aux_sym_on_error_statement_token2] = ACTIONS(6117), + [sym__ambiguous_redim_statement] = ACTIONS(6119), + [aux_sym_erase_statement_token1] = ACTIONS(6117), + [aux_sym_open_statement_token1] = ACTIONS(6117), + [aux_sym_file_mode_token2] = ACTIONS(6117), + [aux_sym_file_access_token2] = ACTIONS(6117), + [aux_sym_file_lock_token2] = ACTIONS(6117), + [aux_sym_print_statement_token1] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6117), + [anon_sym_QMARK] = ACTIONS(6119), + [aux_sym_close_statement_token1] = ACTIONS(6117), + [aux_sym_put_statement_token1] = ACTIONS(6117), + [aux_sym_unlock_statement_token1] = ACTIONS(6117), + [aux_sym_seek_statement_token1] = ACTIONS(6117), + [sym_reset_statement] = ACTIONS(6117), + [aux_sym_raise_event_statement_token1] = ACTIONS(6117), + [sym_stop_statement] = ACTIONS(6117), + [sym_beep_statement] = ACTIONS(6117), + [aux_sym_unload_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token2] = ACTIONS(6117), + [aux_sym_def_type_statement_token3] = ACTIONS(6117), + [aux_sym_def_type_statement_token4] = ACTIONS(6117), + [aux_sym_def_type_statement_token5] = ACTIONS(6117), + [aux_sym_def_type_statement_token6] = ACTIONS(6117), + [aux_sym_def_type_statement_token7] = ACTIONS(6117), + [aux_sym_def_type_statement_token8] = ACTIONS(6117), + [aux_sym_def_type_statement_token9] = ACTIONS(6117), + [aux_sym_def_type_statement_token10] = ACTIONS(6117), + [aux_sym_def_type_statement_token11] = ACTIONS(6117), + [aux_sym_def_type_statement_token12] = ACTIONS(6117), + [aux_sym_def_type_statement_token13] = ACTIONS(6117), + [aux_sym_def_type_statement_token14] = ACTIONS(6117), + [aux_sym_call_statement_token1] = ACTIONS(6117), + [sym__ambiguous_call_statement] = ACTIONS(6117), + [aux_sym_addressof_expression_token1] = ACTIONS(6117), + [aux_sym_type_of_expression_token1] = ACTIONS(6117), + [aux_sym_unary_expression_token1] = ACTIONS(6117), + [sym_string_literal] = ACTIONS(6119), + [sym_number_literal] = ACTIONS(6119), + [aux_sym_boolean_literal_token1] = ACTIONS(6117), + [aux_sym_boolean_literal_token2] = ACTIONS(6117), + [sym_nothing_literal] = ACTIONS(6117), + [sym_null_literal] = ACTIONS(6117), + [sym_empty_literal] = ACTIONS(6117), + [sym_date_literal] = ACTIONS(6119), + [anon_sym_POUND] = ACTIONS(6117), + }, + [STATE(6002)] = { + [sym_identifier] = ACTIONS(8739), + [sym_newline] = ACTIONS(8741), + [anon_sym_COLON] = ACTIONS(8741), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8739), + [aux_sym_frm_property_statement_token1] = ACTIONS(8739), + [anon_sym_DOT] = ACTIONS(8739), + [anon_sym_BANG] = ACTIONS(8741), + [aux_sym__attribute_identifier_token1] = ACTIONS(8739), + [aux_sym_option_statement_token3] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8739), + [aux_sym_preprocessor_const_token1] = ACTIONS(8739), + [sym_static_modifier] = ACTIONS(8739), + [sym__dim_keyword] = ACTIONS(8739), + [sym__redim_keyword] = ACTIONS(8739), + [aux_sym_get_accessor_token1] = ACTIONS(8739), + [aux_sym_set_accessor_token1] = ACTIONS(8739), + [anon_sym_COMMA] = ACTIONS(10923), + [aux_sym_const_declaration_token1] = ACTIONS(8739), + [anon_sym_LPAREN] = ACTIONS(8741), + [aux_sym_as_type_clause_token2] = ACTIONS(8739), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8739), + [aux_sym_visibility_token1] = ACTIONS(8739), + [aux_sym_visibility_token2] = ACTIONS(8739), + [aux_sym_elseif_fragment_token1] = ACTIONS(8739), + [aux_sym_else_fragment_token1] = ACTIONS(8739), + [aux_sym_select_statement_token1] = ACTIONS(8739), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8739), + [aux_sym__for_header_token1] = ACTIONS(8739), + [aux_sym_do_statement_token1] = ACTIONS(8739), + [aux_sym_do_condition_token1] = ACTIONS(8739), + [aux_sym_with_statement_token1] = ACTIONS(8739), + [aux_sym_exit_statement_token1] = ACTIONS(8739), + [sym_end_statement] = ACTIONS(8741), + [aux_sym_on_goto_statement_token1] = ACTIONS(8739), + [aux_sym_on_goto_statement_token2] = ACTIONS(8739), + [aux_sym_on_error_statement_token2] = ACTIONS(8739), + [sym__ambiguous_redim_statement] = ACTIONS(8741), + [aux_sym_erase_statement_token1] = ACTIONS(8739), + [aux_sym_open_statement_token1] = ACTIONS(8739), + [aux_sym_file_mode_token2] = ACTIONS(8739), + [aux_sym_file_access_token2] = ACTIONS(8739), + [aux_sym_file_lock_token2] = ACTIONS(8739), + [aux_sym_print_statement_token1] = ACTIONS(8739), + [anon_sym_PLUS] = ACTIONS(8741), + [anon_sym_DASH] = ACTIONS(8739), + [anon_sym_QMARK] = ACTIONS(8741), + [aux_sym_close_statement_token1] = ACTIONS(8739), + [aux_sym_put_statement_token1] = ACTIONS(8739), + [aux_sym_unlock_statement_token1] = ACTIONS(8739), + [aux_sym_seek_statement_token1] = ACTIONS(8739), + [sym_reset_statement] = ACTIONS(8739), + [aux_sym_raise_event_statement_token1] = ACTIONS(8739), + [sym_stop_statement] = ACTIONS(8739), + [sym_beep_statement] = ACTIONS(8739), + [aux_sym_unload_statement_token1] = ACTIONS(8739), + [aux_sym_def_type_statement_token1] = ACTIONS(8739), + [aux_sym_def_type_statement_token2] = ACTIONS(8739), + [aux_sym_def_type_statement_token3] = ACTIONS(8739), + [aux_sym_def_type_statement_token4] = ACTIONS(8739), + [aux_sym_def_type_statement_token5] = ACTIONS(8739), + [aux_sym_def_type_statement_token6] = ACTIONS(8739), + [aux_sym_def_type_statement_token7] = ACTIONS(8739), + [aux_sym_def_type_statement_token8] = ACTIONS(8739), + [aux_sym_def_type_statement_token9] = ACTIONS(8739), + [aux_sym_def_type_statement_token10] = ACTIONS(8739), + [aux_sym_def_type_statement_token11] = ACTIONS(8739), + [aux_sym_def_type_statement_token12] = ACTIONS(8739), + [aux_sym_def_type_statement_token13] = ACTIONS(8739), + [aux_sym_def_type_statement_token14] = ACTIONS(8739), + [aux_sym_call_statement_token1] = ACTIONS(8739), + [sym__ambiguous_call_statement] = ACTIONS(8739), + [aux_sym_addressof_expression_token1] = ACTIONS(8739), + [aux_sym_type_of_expression_token1] = ACTIONS(8739), + [aux_sym_unary_expression_token1] = ACTIONS(8739), + [sym_string_literal] = ACTIONS(8741), + [sym_number_literal] = ACTIONS(8741), + [aux_sym_boolean_literal_token1] = ACTIONS(8739), + [aux_sym_boolean_literal_token2] = ACTIONS(8739), + [sym_nothing_literal] = ACTIONS(8739), + [sym_null_literal] = ACTIONS(8739), + [sym_empty_literal] = ACTIONS(8739), + [sym_date_literal] = ACTIONS(8741), + [anon_sym_POUND] = ACTIONS(8739), + }, + [STATE(6003)] = { + [sym_identifier] = ACTIONS(8970), + [sym_newline] = ACTIONS(8972), + [anon_sym_COLON] = ACTIONS(8972), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8970), + [aux_sym_frm_property_statement_token1] = ACTIONS(8970), + [anon_sym_DOT] = ACTIONS(8970), + [anon_sym_BANG] = ACTIONS(8972), + [aux_sym__attribute_identifier_token1] = ACTIONS(8970), + [aux_sym_option_statement_token3] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8970), + [aux_sym_preprocessor_const_token1] = ACTIONS(8970), + [sym_static_modifier] = ACTIONS(8970), + [sym__dim_keyword] = ACTIONS(8970), + [sym__redim_keyword] = ACTIONS(8970), + [aux_sym_get_accessor_token1] = ACTIONS(8970), + [aux_sym_set_accessor_token1] = ACTIONS(8970), + [anon_sym_COMMA] = ACTIONS(8972), + [aux_sym_const_declaration_token1] = ACTIONS(8970), + [anon_sym_LPAREN] = ACTIONS(8972), + [aux_sym_as_type_clause_token2] = ACTIONS(8970), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8970), + [aux_sym_visibility_token1] = ACTIONS(8970), + [aux_sym_visibility_token2] = ACTIONS(8970), + [aux_sym_elseif_fragment_token1] = ACTIONS(8970), + [aux_sym_else_fragment_token1] = ACTIONS(8970), + [aux_sym_select_statement_token1] = ACTIONS(8970), + [aux_sym__for_header_token1] = ACTIONS(8970), + [aux_sym_do_statement_token1] = ACTIONS(8970), + [aux_sym_do_statement_token2] = ACTIONS(8970), + [aux_sym_do_condition_token1] = ACTIONS(8970), + [aux_sym_with_statement_token1] = ACTIONS(8970), + [aux_sym_exit_statement_token1] = ACTIONS(8970), + [sym_end_statement] = ACTIONS(8972), + [aux_sym_on_goto_statement_token1] = ACTIONS(8970), + [aux_sym_on_goto_statement_token2] = ACTIONS(8970), + [aux_sym_on_error_statement_token2] = ACTIONS(8970), + [sym__ambiguous_redim_statement] = ACTIONS(8972), + [aux_sym_erase_statement_token1] = ACTIONS(8970), + [aux_sym_open_statement_token1] = ACTIONS(8970), + [aux_sym_file_mode_token2] = ACTIONS(8970), + [aux_sym_file_access_token2] = ACTIONS(8970), + [aux_sym_file_lock_token2] = ACTIONS(8970), + [aux_sym_print_statement_token1] = ACTIONS(8970), + [anon_sym_PLUS] = ACTIONS(8972), + [anon_sym_DASH] = ACTIONS(8970), + [anon_sym_QMARK] = ACTIONS(8972), + [aux_sym_close_statement_token1] = ACTIONS(8970), + [aux_sym_put_statement_token1] = ACTIONS(8970), + [aux_sym_unlock_statement_token1] = ACTIONS(8970), + [aux_sym_seek_statement_token1] = ACTIONS(8970), + [sym_reset_statement] = ACTIONS(8970), + [aux_sym_raise_event_statement_token1] = ACTIONS(8970), + [sym_stop_statement] = ACTIONS(8970), + [sym_beep_statement] = ACTIONS(8970), + [aux_sym_unload_statement_token1] = ACTIONS(8970), + [aux_sym_def_type_statement_token1] = ACTIONS(8970), + [aux_sym_def_type_statement_token2] = ACTIONS(8970), + [aux_sym_def_type_statement_token3] = ACTIONS(8970), + [aux_sym_def_type_statement_token4] = ACTIONS(8970), + [aux_sym_def_type_statement_token5] = ACTIONS(8970), + [aux_sym_def_type_statement_token6] = ACTIONS(8970), + [aux_sym_def_type_statement_token7] = ACTIONS(8970), + [aux_sym_def_type_statement_token8] = ACTIONS(8970), + [aux_sym_def_type_statement_token9] = ACTIONS(8970), + [aux_sym_def_type_statement_token10] = ACTIONS(8970), + [aux_sym_def_type_statement_token11] = ACTIONS(8970), + [aux_sym_def_type_statement_token12] = ACTIONS(8970), + [aux_sym_def_type_statement_token13] = ACTIONS(8970), + [aux_sym_def_type_statement_token14] = ACTIONS(8970), + [aux_sym_call_statement_token1] = ACTIONS(8970), + [sym__ambiguous_call_statement] = ACTIONS(8970), + [aux_sym_addressof_expression_token1] = ACTIONS(8970), + [aux_sym_type_of_expression_token1] = ACTIONS(8970), + [aux_sym_unary_expression_token1] = ACTIONS(8970), + [sym_string_literal] = ACTIONS(8972), + [sym_number_literal] = ACTIONS(8972), + [aux_sym_boolean_literal_token1] = ACTIONS(8970), + [aux_sym_boolean_literal_token2] = ACTIONS(8970), + [sym_nothing_literal] = ACTIONS(8970), + [sym_null_literal] = ACTIONS(8970), + [sym_empty_literal] = ACTIONS(8970), + [sym_date_literal] = ACTIONS(8972), + [anon_sym_POUND] = ACTIONS(8970), + }, + [STATE(6004)] = { + [sym_identifier] = ACTIONS(8951), + [sym_newline] = ACTIONS(8953), + [anon_sym_COLON] = ACTIONS(8955), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8951), + [aux_sym_frm_property_statement_token1] = ACTIONS(8951), + [anon_sym_DOT] = ACTIONS(8951), + [anon_sym_BANG] = ACTIONS(8953), + [aux_sym__attribute_identifier_token1] = ACTIONS(8951), + [aux_sym_option_statement_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8951), + [aux_sym_preprocessor_const_token1] = ACTIONS(8951), + [sym_static_modifier] = ACTIONS(8951), + [sym__dim_keyword] = ACTIONS(8951), + [sym__redim_keyword] = ACTIONS(8951), + [aux_sym_get_accessor_token1] = ACTIONS(8951), + [aux_sym_set_accessor_token1] = ACTIONS(8951), + [aux_sym_const_declaration_token1] = ACTIONS(8951), + [anon_sym_LPAREN] = ACTIONS(8953), + [aux_sym_as_type_clause_token2] = ACTIONS(8951), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8951), + [aux_sym_visibility_token1] = ACTIONS(8951), + [aux_sym_visibility_token2] = ACTIONS(8951), + [aux_sym_elseif_fragment_token1] = ACTIONS(8951), + [aux_sym_else_fragment_token1] = ACTIONS(8951), + [aux_sym_select_statement_token1] = ACTIONS(8951), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8951), + [aux_sym__for_header_token1] = ACTIONS(8951), + [aux_sym_do_statement_token1] = ACTIONS(8951), + [aux_sym_do_condition_token1] = ACTIONS(8951), + [aux_sym_with_statement_token1] = ACTIONS(8951), + [aux_sym_exit_statement_token1] = ACTIONS(8951), + [sym_end_statement] = ACTIONS(8953), + [aux_sym_on_goto_statement_token1] = ACTIONS(8951), + [aux_sym_on_goto_statement_token2] = ACTIONS(8951), + [aux_sym_on_error_statement_token2] = ACTIONS(8951), + [sym__ambiguous_redim_statement] = ACTIONS(8953), + [aux_sym_erase_statement_token1] = ACTIONS(8951), + [aux_sym_open_statement_token1] = ACTIONS(8951), + [aux_sym_file_mode_token2] = ACTIONS(8951), + [aux_sym_file_access_token2] = ACTIONS(8951), + [aux_sym_file_lock_token2] = ACTIONS(8951), + [aux_sym_print_statement_token1] = ACTIONS(8951), + [anon_sym_PLUS] = ACTIONS(8953), + [anon_sym_DASH] = ACTIONS(8951), + [anon_sym_QMARK] = ACTIONS(8953), + [aux_sym_close_statement_token1] = ACTIONS(8951), + [aux_sym_put_statement_token1] = ACTIONS(8951), + [aux_sym_unlock_statement_token1] = ACTIONS(8951), + [aux_sym_seek_statement_token1] = ACTIONS(8951), + [sym_reset_statement] = ACTIONS(8951), + [aux_sym_raise_event_statement_token1] = ACTIONS(8951), + [sym_stop_statement] = ACTIONS(8951), + [sym_beep_statement] = ACTIONS(8951), + [aux_sym_unload_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token2] = ACTIONS(8951), + [aux_sym_def_type_statement_token3] = ACTIONS(8951), + [aux_sym_def_type_statement_token4] = ACTIONS(8951), + [aux_sym_def_type_statement_token5] = ACTIONS(8951), + [aux_sym_def_type_statement_token6] = ACTIONS(8951), + [aux_sym_def_type_statement_token7] = ACTIONS(8951), + [aux_sym_def_type_statement_token8] = ACTIONS(8951), + [aux_sym_def_type_statement_token9] = ACTIONS(8951), + [aux_sym_def_type_statement_token10] = ACTIONS(8951), + [aux_sym_def_type_statement_token11] = ACTIONS(8951), + [aux_sym_def_type_statement_token12] = ACTIONS(8951), + [aux_sym_def_type_statement_token13] = ACTIONS(8951), + [aux_sym_def_type_statement_token14] = ACTIONS(8951), + [aux_sym_call_statement_token1] = ACTIONS(8951), + [sym__ambiguous_call_statement] = ACTIONS(8951), + [aux_sym_addressof_expression_token1] = ACTIONS(8951), + [aux_sym_type_of_expression_token1] = ACTIONS(8951), + [aux_sym_unary_expression_token1] = ACTIONS(8951), + [sym_string_literal] = ACTIONS(8953), + [sym_number_literal] = ACTIONS(8955), + [aux_sym_boolean_literal_token1] = ACTIONS(8951), + [aux_sym_boolean_literal_token2] = ACTIONS(8951), + [sym_nothing_literal] = ACTIONS(8951), + [sym_null_literal] = ACTIONS(8951), + [sym_empty_literal] = ACTIONS(8951), + [sym_date_literal] = ACTIONS(8953), + [anon_sym_POUND] = ACTIONS(8951), + }, + [STATE(6005)] = { + [sym_identifier] = ACTIONS(8766), + [sym_newline] = ACTIONS(8768), + [anon_sym_COLON] = ACTIONS(8768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8766), + [aux_sym_frm_property_statement_token1] = ACTIONS(8766), + [anon_sym_DOT] = ACTIONS(8766), + [anon_sym_BANG] = ACTIONS(8768), + [aux_sym__attribute_identifier_token1] = ACTIONS(8766), + [aux_sym_option_statement_token3] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8766), + [aux_sym_preprocessor_const_token1] = ACTIONS(8766), + [sym_static_modifier] = ACTIONS(8766), + [sym__dim_keyword] = ACTIONS(8766), + [sym__redim_keyword] = ACTIONS(8766), + [aux_sym_get_accessor_token1] = ACTIONS(8766), + [aux_sym_set_accessor_token1] = ACTIONS(8766), + [anon_sym_COMMA] = ACTIONS(10925), + [aux_sym_const_declaration_token1] = ACTIONS(8766), + [anon_sym_LPAREN] = ACTIONS(8768), + [aux_sym_as_type_clause_token2] = ACTIONS(8766), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8766), + [aux_sym_visibility_token1] = ACTIONS(8766), + [aux_sym_visibility_token2] = ACTIONS(8766), + [aux_sym_elseif_fragment_token1] = ACTIONS(8766), + [aux_sym_else_fragment_token1] = ACTIONS(8766), + [aux_sym_select_statement_token1] = ACTIONS(8766), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8766), + [aux_sym__for_header_token1] = ACTIONS(8766), + [aux_sym_do_statement_token1] = ACTIONS(8766), + [aux_sym_do_condition_token1] = ACTIONS(8766), + [aux_sym_with_statement_token1] = ACTIONS(8766), + [aux_sym_exit_statement_token1] = ACTIONS(8766), + [sym_end_statement] = ACTIONS(8768), + [aux_sym_on_goto_statement_token1] = ACTIONS(8766), + [aux_sym_on_goto_statement_token2] = ACTIONS(8766), + [aux_sym_on_error_statement_token2] = ACTIONS(8766), + [sym__ambiguous_redim_statement] = ACTIONS(8768), + [aux_sym_erase_statement_token1] = ACTIONS(8766), + [aux_sym_open_statement_token1] = ACTIONS(8766), + [aux_sym_file_mode_token2] = ACTIONS(8766), + [aux_sym_file_access_token2] = ACTIONS(8766), + [aux_sym_file_lock_token2] = ACTIONS(8766), + [aux_sym_print_statement_token1] = ACTIONS(8766), + [anon_sym_PLUS] = ACTIONS(8768), + [anon_sym_DASH] = ACTIONS(8766), + [anon_sym_QMARK] = ACTIONS(8768), + [aux_sym_close_statement_token1] = ACTIONS(8766), + [aux_sym_put_statement_token1] = ACTIONS(8766), + [aux_sym_unlock_statement_token1] = ACTIONS(8766), + [aux_sym_seek_statement_token1] = ACTIONS(8766), + [sym_reset_statement] = ACTIONS(8766), + [aux_sym_raise_event_statement_token1] = ACTIONS(8766), + [sym_stop_statement] = ACTIONS(8766), + [sym_beep_statement] = ACTIONS(8766), + [aux_sym_unload_statement_token1] = ACTIONS(8766), + [aux_sym_def_type_statement_token1] = ACTIONS(8766), + [aux_sym_def_type_statement_token2] = ACTIONS(8766), + [aux_sym_def_type_statement_token3] = ACTIONS(8766), + [aux_sym_def_type_statement_token4] = ACTIONS(8766), + [aux_sym_def_type_statement_token5] = ACTIONS(8766), + [aux_sym_def_type_statement_token6] = ACTIONS(8766), + [aux_sym_def_type_statement_token7] = ACTIONS(8766), + [aux_sym_def_type_statement_token8] = ACTIONS(8766), + [aux_sym_def_type_statement_token9] = ACTIONS(8766), + [aux_sym_def_type_statement_token10] = ACTIONS(8766), + [aux_sym_def_type_statement_token11] = ACTIONS(8766), + [aux_sym_def_type_statement_token12] = ACTIONS(8766), + [aux_sym_def_type_statement_token13] = ACTIONS(8766), + [aux_sym_def_type_statement_token14] = ACTIONS(8766), + [aux_sym_call_statement_token1] = ACTIONS(8766), + [sym__ambiguous_call_statement] = ACTIONS(8766), + [aux_sym_addressof_expression_token1] = ACTIONS(8766), + [aux_sym_type_of_expression_token1] = ACTIONS(8766), + [aux_sym_unary_expression_token1] = ACTIONS(8766), + [sym_string_literal] = ACTIONS(8768), + [sym_number_literal] = ACTIONS(8768), + [aux_sym_boolean_literal_token1] = ACTIONS(8766), + [aux_sym_boolean_literal_token2] = ACTIONS(8766), + [sym_nothing_literal] = ACTIONS(8766), + [sym_null_literal] = ACTIONS(8766), + [sym_empty_literal] = ACTIONS(8766), + [sym_date_literal] = ACTIONS(8768), + [anon_sym_POUND] = ACTIONS(8766), + }, + [STATE(6006)] = { + [sym_identifier] = ACTIONS(8645), + [sym_newline] = ACTIONS(8647), + [anon_sym_COLON] = ACTIONS(8649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8645), + [aux_sym_frm_property_statement_token1] = ACTIONS(8645), + [anon_sym_DOT] = ACTIONS(8645), + [anon_sym_BANG] = ACTIONS(8647), + [aux_sym__attribute_identifier_token1] = ACTIONS(8645), + [aux_sym_option_statement_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8645), + [aux_sym_preprocessor_const_token1] = ACTIONS(8645), + [sym_static_modifier] = ACTIONS(8645), + [sym__dim_keyword] = ACTIONS(8645), + [sym__redim_keyword] = ACTIONS(8645), + [aux_sym_get_accessor_token1] = ACTIONS(8645), + [aux_sym_set_accessor_token1] = ACTIONS(8645), + [aux_sym_const_declaration_token1] = ACTIONS(8645), + [anon_sym_LPAREN] = ACTIONS(8647), + [aux_sym_as_type_clause_token2] = ACTIONS(8645), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8645), + [aux_sym_visibility_token1] = ACTIONS(8645), + [aux_sym_visibility_token2] = ACTIONS(8645), + [aux_sym_elseif_fragment_token1] = ACTIONS(8645), + [aux_sym_else_fragment_token1] = ACTIONS(8645), + [aux_sym_select_statement_token1] = ACTIONS(8645), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8645), + [aux_sym__for_header_token1] = ACTIONS(8645), + [aux_sym_do_statement_token1] = ACTIONS(8645), + [aux_sym_do_condition_token1] = ACTIONS(8645), + [aux_sym_with_statement_token1] = ACTIONS(8645), + [aux_sym_exit_statement_token1] = ACTIONS(8645), + [sym_end_statement] = ACTIONS(8647), + [aux_sym_on_goto_statement_token1] = ACTIONS(8645), + [aux_sym_on_goto_statement_token2] = ACTIONS(8645), + [aux_sym_on_error_statement_token2] = ACTIONS(8645), + [sym__ambiguous_redim_statement] = ACTIONS(8647), + [aux_sym_erase_statement_token1] = ACTIONS(8645), + [aux_sym_open_statement_token1] = ACTIONS(8645), + [aux_sym_file_mode_token2] = ACTIONS(8645), + [aux_sym_file_access_token2] = ACTIONS(8645), + [aux_sym_file_lock_token2] = ACTIONS(8645), + [aux_sym_print_statement_token1] = ACTIONS(8645), + [anon_sym_PLUS] = ACTIONS(8647), + [anon_sym_DASH] = ACTIONS(8645), + [anon_sym_QMARK] = ACTIONS(8647), + [aux_sym_close_statement_token1] = ACTIONS(8645), + [aux_sym_put_statement_token1] = ACTIONS(8645), + [aux_sym_unlock_statement_token1] = ACTIONS(8645), + [aux_sym_seek_statement_token1] = ACTIONS(8645), + [sym_reset_statement] = ACTIONS(8645), + [aux_sym_raise_event_statement_token1] = ACTIONS(8645), + [sym_stop_statement] = ACTIONS(8645), + [sym_beep_statement] = ACTIONS(8645), + [aux_sym_unload_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token2] = ACTIONS(8645), + [aux_sym_def_type_statement_token3] = ACTIONS(8645), + [aux_sym_def_type_statement_token4] = ACTIONS(8645), + [aux_sym_def_type_statement_token5] = ACTIONS(8645), + [aux_sym_def_type_statement_token6] = ACTIONS(8645), + [aux_sym_def_type_statement_token7] = ACTIONS(8645), + [aux_sym_def_type_statement_token8] = ACTIONS(8645), + [aux_sym_def_type_statement_token9] = ACTIONS(8645), + [aux_sym_def_type_statement_token10] = ACTIONS(8645), + [aux_sym_def_type_statement_token11] = ACTIONS(8645), + [aux_sym_def_type_statement_token12] = ACTIONS(8645), + [aux_sym_def_type_statement_token13] = ACTIONS(8645), + [aux_sym_def_type_statement_token14] = ACTIONS(8645), + [aux_sym_call_statement_token1] = ACTIONS(8645), + [sym__ambiguous_call_statement] = ACTIONS(8645), + [aux_sym_addressof_expression_token1] = ACTIONS(8645), + [aux_sym_type_of_expression_token1] = ACTIONS(8645), + [aux_sym_unary_expression_token1] = ACTIONS(8645), + [sym_string_literal] = ACTIONS(8647), + [sym_number_literal] = ACTIONS(8649), + [aux_sym_boolean_literal_token1] = ACTIONS(8645), + [aux_sym_boolean_literal_token2] = ACTIONS(8645), + [sym_nothing_literal] = ACTIONS(8645), + [sym_null_literal] = ACTIONS(8645), + [sym_empty_literal] = ACTIONS(8645), + [sym_date_literal] = ACTIONS(8647), + [anon_sym_POUND] = ACTIONS(8645), + }, + [STATE(6007)] = { + [sym_identifier] = ACTIONS(8749), + [sym_newline] = ACTIONS(8751), + [anon_sym_COLON] = ACTIONS(8753), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8749), + [aux_sym_frm_property_statement_token1] = ACTIONS(8749), + [anon_sym_DOT] = ACTIONS(8749), + [anon_sym_BANG] = ACTIONS(8751), + [aux_sym__attribute_identifier_token1] = ACTIONS(8749), + [aux_sym_option_statement_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8749), + [aux_sym_preprocessor_const_token1] = ACTIONS(8749), + [sym_static_modifier] = ACTIONS(8749), + [sym__dim_keyword] = ACTIONS(8749), + [sym__redim_keyword] = ACTIONS(8749), + [aux_sym_get_accessor_token1] = ACTIONS(8749), + [aux_sym_set_accessor_token1] = ACTIONS(8749), + [aux_sym_const_declaration_token1] = ACTIONS(8749), + [anon_sym_LPAREN] = ACTIONS(8751), + [aux_sym_as_type_clause_token2] = ACTIONS(8749), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8749), + [aux_sym_visibility_token1] = ACTIONS(8749), + [aux_sym_visibility_token2] = ACTIONS(8749), + [aux_sym_elseif_fragment_token1] = ACTIONS(8749), + [aux_sym_else_fragment_token1] = ACTIONS(8749), + [aux_sym_select_statement_token1] = ACTIONS(8749), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8749), + [aux_sym__for_header_token1] = ACTIONS(8749), + [aux_sym_do_statement_token1] = ACTIONS(8749), + [aux_sym_do_condition_token1] = ACTIONS(8749), + [aux_sym_with_statement_token1] = ACTIONS(8749), + [aux_sym_exit_statement_token1] = ACTIONS(8749), + [sym_end_statement] = ACTIONS(8751), + [aux_sym_on_goto_statement_token1] = ACTIONS(8749), + [aux_sym_on_goto_statement_token2] = ACTIONS(8749), + [aux_sym_on_error_statement_token2] = ACTIONS(8749), + [sym__ambiguous_redim_statement] = ACTIONS(8751), + [aux_sym_erase_statement_token1] = ACTIONS(8749), + [aux_sym_open_statement_token1] = ACTIONS(8749), + [aux_sym_file_mode_token2] = ACTIONS(8749), + [aux_sym_file_access_token2] = ACTIONS(8749), + [aux_sym_file_lock_token2] = ACTIONS(8749), + [aux_sym_print_statement_token1] = ACTIONS(8749), + [anon_sym_PLUS] = ACTIONS(8751), + [anon_sym_DASH] = ACTIONS(8749), + [anon_sym_QMARK] = ACTIONS(8751), + [aux_sym_close_statement_token1] = ACTIONS(8749), + [aux_sym_put_statement_token1] = ACTIONS(8749), + [aux_sym_unlock_statement_token1] = ACTIONS(8749), + [aux_sym_seek_statement_token1] = ACTIONS(8749), + [sym_reset_statement] = ACTIONS(8749), + [aux_sym_raise_event_statement_token1] = ACTIONS(8749), + [sym_stop_statement] = ACTIONS(8749), + [sym_beep_statement] = ACTIONS(8749), + [aux_sym_unload_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token2] = ACTIONS(8749), + [aux_sym_def_type_statement_token3] = ACTIONS(8749), + [aux_sym_def_type_statement_token4] = ACTIONS(8749), + [aux_sym_def_type_statement_token5] = ACTIONS(8749), + [aux_sym_def_type_statement_token6] = ACTIONS(8749), + [aux_sym_def_type_statement_token7] = ACTIONS(8749), + [aux_sym_def_type_statement_token8] = ACTIONS(8749), + [aux_sym_def_type_statement_token9] = ACTIONS(8749), + [aux_sym_def_type_statement_token10] = ACTIONS(8749), + [aux_sym_def_type_statement_token11] = ACTIONS(8749), + [aux_sym_def_type_statement_token12] = ACTIONS(8749), + [aux_sym_def_type_statement_token13] = ACTIONS(8749), + [aux_sym_def_type_statement_token14] = ACTIONS(8749), + [aux_sym_call_statement_token1] = ACTIONS(8749), + [sym__ambiguous_call_statement] = ACTIONS(8749), + [aux_sym_addressof_expression_token1] = ACTIONS(8749), + [aux_sym_type_of_expression_token1] = ACTIONS(8749), + [aux_sym_unary_expression_token1] = ACTIONS(8749), + [sym_string_literal] = ACTIONS(8751), + [sym_number_literal] = ACTIONS(8753), + [aux_sym_boolean_literal_token1] = ACTIONS(8749), + [aux_sym_boolean_literal_token2] = ACTIONS(8749), + [sym_nothing_literal] = ACTIONS(8749), + [sym_null_literal] = ACTIONS(8749), + [sym_empty_literal] = ACTIONS(8749), + [sym_date_literal] = ACTIONS(8751), + [anon_sym_POUND] = ACTIONS(8749), + }, + [STATE(6008)] = { + [sym_identifier] = ACTIONS(8865), + [sym_newline] = ACTIONS(8867), + [anon_sym_COLON] = ACTIONS(8867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8865), + [aux_sym_frm_property_statement_token1] = ACTIONS(8865), + [anon_sym_DOT] = ACTIONS(8865), + [anon_sym_BANG] = ACTIONS(8867), + [aux_sym__attribute_identifier_token1] = ACTIONS(8865), + [aux_sym_option_statement_token3] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8865), + [aux_sym_preprocessor_const_token1] = ACTIONS(8865), + [sym_static_modifier] = ACTIONS(8865), + [sym__dim_keyword] = ACTIONS(8865), + [sym__redim_keyword] = ACTIONS(8865), + [aux_sym_get_accessor_token1] = ACTIONS(8865), + [aux_sym_set_accessor_token1] = ACTIONS(8865), + [anon_sym_COMMA] = ACTIONS(8867), + [aux_sym_const_declaration_token1] = ACTIONS(8865), + [anon_sym_LPAREN] = ACTIONS(8867), + [aux_sym_as_type_clause_token2] = ACTIONS(8865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8865), + [aux_sym_visibility_token1] = ACTIONS(8865), + [aux_sym_visibility_token2] = ACTIONS(8865), + [aux_sym_elseif_fragment_token1] = ACTIONS(8865), + [aux_sym_else_fragment_token1] = ACTIONS(8865), + [aux_sym_select_statement_token1] = ACTIONS(8865), + [aux_sym_select_statement_token2] = ACTIONS(8865), + [aux_sym__for_header_token1] = ACTIONS(8865), + [aux_sym_do_statement_token1] = ACTIONS(8865), + [aux_sym_do_condition_token1] = ACTIONS(8865), + [aux_sym_with_statement_token1] = ACTIONS(8865), + [aux_sym_exit_statement_token1] = ACTIONS(8865), + [sym_end_statement] = ACTIONS(8867), + [aux_sym_on_goto_statement_token1] = ACTIONS(8865), + [aux_sym_on_goto_statement_token2] = ACTIONS(8865), + [aux_sym_on_error_statement_token2] = ACTIONS(8865), + [sym__ambiguous_redim_statement] = ACTIONS(8867), + [aux_sym_erase_statement_token1] = ACTIONS(8865), + [aux_sym_open_statement_token1] = ACTIONS(8865), + [aux_sym_file_mode_token2] = ACTIONS(8865), + [aux_sym_file_access_token2] = ACTIONS(8865), + [aux_sym_file_lock_token2] = ACTIONS(8865), + [aux_sym_print_statement_token1] = ACTIONS(8865), + [anon_sym_PLUS] = ACTIONS(8867), + [anon_sym_DASH] = ACTIONS(8865), + [anon_sym_QMARK] = ACTIONS(8867), + [aux_sym_close_statement_token1] = ACTIONS(8865), + [aux_sym_put_statement_token1] = ACTIONS(8865), + [aux_sym_unlock_statement_token1] = ACTIONS(8865), + [aux_sym_seek_statement_token1] = ACTIONS(8865), + [sym_reset_statement] = ACTIONS(8865), + [aux_sym_raise_event_statement_token1] = ACTIONS(8865), + [sym_stop_statement] = ACTIONS(8865), + [sym_beep_statement] = ACTIONS(8865), + [aux_sym_unload_statement_token1] = ACTIONS(8865), + [aux_sym_def_type_statement_token1] = ACTIONS(8865), + [aux_sym_def_type_statement_token2] = ACTIONS(8865), + [aux_sym_def_type_statement_token3] = ACTIONS(8865), + [aux_sym_def_type_statement_token4] = ACTIONS(8865), + [aux_sym_def_type_statement_token5] = ACTIONS(8865), + [aux_sym_def_type_statement_token6] = ACTIONS(8865), + [aux_sym_def_type_statement_token7] = ACTIONS(8865), + [aux_sym_def_type_statement_token8] = ACTIONS(8865), + [aux_sym_def_type_statement_token9] = ACTIONS(8865), + [aux_sym_def_type_statement_token10] = ACTIONS(8865), + [aux_sym_def_type_statement_token11] = ACTIONS(8865), + [aux_sym_def_type_statement_token12] = ACTIONS(8865), + [aux_sym_def_type_statement_token13] = ACTIONS(8865), + [aux_sym_def_type_statement_token14] = ACTIONS(8865), + [aux_sym_call_statement_token1] = ACTIONS(8865), + [sym__ambiguous_call_statement] = ACTIONS(8865), + [aux_sym_addressof_expression_token1] = ACTIONS(8865), + [aux_sym_type_of_expression_token1] = ACTIONS(8865), + [aux_sym_unary_expression_token1] = ACTIONS(8865), + [sym_string_literal] = ACTIONS(8867), + [sym_number_literal] = ACTIONS(8867), + [aux_sym_boolean_literal_token1] = ACTIONS(8865), + [aux_sym_boolean_literal_token2] = ACTIONS(8865), + [sym_nothing_literal] = ACTIONS(8865), + [sym_null_literal] = ACTIONS(8865), + [sym_empty_literal] = ACTIONS(8865), + [sym_date_literal] = ACTIONS(8867), + [anon_sym_POUND] = ACTIONS(8865), + }, + [STATE(6009)] = { + [sym_do_condition] = STATE(7146), + [sym_identifier] = ACTIONS(8298), + [sym_newline] = ACTIONS(8300), + [anon_sym_COLON] = ACTIONS(8300), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8298), + [aux_sym_frm_property_statement_token1] = ACTIONS(8298), + [anon_sym_DOT] = ACTIONS(8298), + [anon_sym_BANG] = ACTIONS(8300), + [aux_sym__attribute_identifier_token1] = ACTIONS(8298), + [aux_sym_option_statement_token3] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8298), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8298), + [aux_sym_preprocessor_const_token1] = ACTIONS(8298), + [sym_static_modifier] = ACTIONS(8298), + [sym__dim_keyword] = ACTIONS(8298), + [sym__redim_keyword] = ACTIONS(8298), + [aux_sym_get_accessor_token1] = ACTIONS(8298), + [aux_sym_set_accessor_token1] = ACTIONS(8298), + [aux_sym_const_declaration_token1] = ACTIONS(8298), + [anon_sym_LPAREN] = ACTIONS(8300), + [aux_sym_as_type_clause_token2] = ACTIONS(8298), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8298), + [aux_sym_visibility_token1] = ACTIONS(8298), + [aux_sym_visibility_token2] = ACTIONS(8298), + [aux_sym_elseif_fragment_token1] = ACTIONS(8298), + [aux_sym_else_fragment_token1] = ACTIONS(8298), + [aux_sym_select_statement_token1] = ACTIONS(8298), + [aux_sym__for_header_token1] = ACTIONS(8298), + [aux_sym_do_statement_token1] = ACTIONS(8298), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8298), + [aux_sym_exit_statement_token1] = ACTIONS(8298), + [sym_end_statement] = ACTIONS(8300), + [aux_sym_on_goto_statement_token1] = ACTIONS(8298), + [aux_sym_on_goto_statement_token2] = ACTIONS(8298), + [aux_sym_on_error_statement_token2] = ACTIONS(8298), + [sym__ambiguous_redim_statement] = ACTIONS(8300), + [aux_sym_erase_statement_token1] = ACTIONS(8298), + [aux_sym_open_statement_token1] = ACTIONS(8298), + [aux_sym_file_mode_token2] = ACTIONS(8298), + [aux_sym_file_access_token2] = ACTIONS(8298), + [aux_sym_file_lock_token2] = ACTIONS(8298), + [aux_sym_print_statement_token1] = ACTIONS(8298), + [anon_sym_PLUS] = ACTIONS(8300), + [anon_sym_DASH] = ACTIONS(8298), + [anon_sym_QMARK] = ACTIONS(8300), + [aux_sym_close_statement_token1] = ACTIONS(8298), + [aux_sym_put_statement_token1] = ACTIONS(8298), + [aux_sym_unlock_statement_token1] = ACTIONS(8298), + [aux_sym_seek_statement_token1] = ACTIONS(8298), + [sym_reset_statement] = ACTIONS(8298), + [aux_sym_raise_event_statement_token1] = ACTIONS(8298), + [sym_stop_statement] = ACTIONS(8298), + [sym_beep_statement] = ACTIONS(8298), + [aux_sym_unload_statement_token1] = ACTIONS(8298), + [aux_sym_def_type_statement_token1] = ACTIONS(8298), + [aux_sym_def_type_statement_token2] = ACTIONS(8298), + [aux_sym_def_type_statement_token3] = ACTIONS(8298), + [aux_sym_def_type_statement_token4] = ACTIONS(8298), + [aux_sym_def_type_statement_token5] = ACTIONS(8298), + [aux_sym_def_type_statement_token6] = ACTIONS(8298), + [aux_sym_def_type_statement_token7] = ACTIONS(8298), + [aux_sym_def_type_statement_token8] = ACTIONS(8298), + [aux_sym_def_type_statement_token9] = ACTIONS(8298), + [aux_sym_def_type_statement_token10] = ACTIONS(8298), + [aux_sym_def_type_statement_token11] = ACTIONS(8298), + [aux_sym_def_type_statement_token12] = ACTIONS(8298), + [aux_sym_def_type_statement_token13] = ACTIONS(8298), + [aux_sym_def_type_statement_token14] = ACTIONS(8298), + [aux_sym_call_statement_token1] = ACTIONS(8298), + [sym__ambiguous_call_statement] = ACTIONS(8298), + [aux_sym_addressof_expression_token1] = ACTIONS(8298), + [aux_sym_type_of_expression_token1] = ACTIONS(8298), + [aux_sym_unary_expression_token1] = ACTIONS(8298), + [sym_string_literal] = ACTIONS(8300), + [sym_number_literal] = ACTIONS(8300), + [aux_sym_boolean_literal_token1] = ACTIONS(8298), + [aux_sym_boolean_literal_token2] = ACTIONS(8298), + [sym_nothing_literal] = ACTIONS(8298), + [sym_null_literal] = ACTIONS(8298), + [sym_empty_literal] = ACTIONS(8298), + [sym_date_literal] = ACTIONS(8300), + [anon_sym_POUND] = ACTIONS(8298), + }, + [STATE(6010)] = { + [aux_sym_def_type_statement_repeat1] = STATE(6135), + [sym_identifier] = ACTIONS(8603), + [sym_newline] = ACTIONS(8605), + [anon_sym_COLON] = ACTIONS(8605), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8603), + [aux_sym_frm_property_statement_token1] = ACTIONS(8603), + [anon_sym_DOT] = ACTIONS(8603), + [anon_sym_BANG] = ACTIONS(8605), + [aux_sym__attribute_identifier_token1] = ACTIONS(8603), + [aux_sym_option_statement_token3] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8603), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8603), + [aux_sym_preprocessor_const_token1] = ACTIONS(8603), + [sym_static_modifier] = ACTIONS(8603), + [sym__dim_keyword] = ACTIONS(8603), + [sym__redim_keyword] = ACTIONS(8603), + [aux_sym_get_accessor_token1] = ACTIONS(8603), + [aux_sym_set_accessor_token1] = ACTIONS(8603), + [anon_sym_COMMA] = ACTIONS(10927), + [aux_sym_const_declaration_token1] = ACTIONS(8603), + [anon_sym_LPAREN] = ACTIONS(8605), + [aux_sym_as_type_clause_token2] = ACTIONS(8603), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8603), + [aux_sym_visibility_token1] = ACTIONS(8603), + [aux_sym_visibility_token2] = ACTIONS(8603), + [aux_sym_elseif_fragment_token1] = ACTIONS(8603), + [aux_sym_else_fragment_token1] = ACTIONS(8603), + [aux_sym_select_statement_token1] = ACTIONS(8603), + [aux_sym__for_header_token1] = ACTIONS(8603), + [aux_sym_do_statement_token1] = ACTIONS(8603), + [aux_sym_do_condition_token1] = ACTIONS(8603), + [aux_sym_with_statement_token1] = ACTIONS(8603), + [aux_sym_exit_statement_token1] = ACTIONS(8603), + [sym_end_statement] = ACTIONS(8605), + [aux_sym_on_goto_statement_token1] = ACTIONS(8603), + [aux_sym_on_goto_statement_token2] = ACTIONS(8603), + [aux_sym_on_error_statement_token2] = ACTIONS(8603), + [sym__ambiguous_redim_statement] = ACTIONS(8605), + [aux_sym_erase_statement_token1] = ACTIONS(8603), + [aux_sym_open_statement_token1] = ACTIONS(8603), + [aux_sym_file_mode_token2] = ACTIONS(8603), + [aux_sym_file_access_token2] = ACTIONS(8603), + [aux_sym_file_lock_token2] = ACTIONS(8603), + [aux_sym_print_statement_token1] = ACTIONS(8603), + [anon_sym_PLUS] = ACTIONS(8605), + [anon_sym_DASH] = ACTIONS(8603), + [anon_sym_QMARK] = ACTIONS(8605), + [aux_sym_close_statement_token1] = ACTIONS(8603), + [aux_sym_put_statement_token1] = ACTIONS(8603), + [aux_sym_unlock_statement_token1] = ACTIONS(8603), + [aux_sym_seek_statement_token1] = ACTIONS(8603), + [sym_reset_statement] = ACTIONS(8603), + [aux_sym_raise_event_statement_token1] = ACTIONS(8603), + [sym_stop_statement] = ACTIONS(8603), + [sym_beep_statement] = ACTIONS(8603), + [aux_sym_unload_statement_token1] = ACTIONS(8603), + [aux_sym_def_type_statement_token1] = ACTIONS(8603), + [aux_sym_def_type_statement_token2] = ACTIONS(8603), + [aux_sym_def_type_statement_token3] = ACTIONS(8603), + [aux_sym_def_type_statement_token4] = ACTIONS(8603), + [aux_sym_def_type_statement_token5] = ACTIONS(8603), + [aux_sym_def_type_statement_token6] = ACTIONS(8603), + [aux_sym_def_type_statement_token7] = ACTIONS(8603), + [aux_sym_def_type_statement_token8] = ACTIONS(8603), + [aux_sym_def_type_statement_token9] = ACTIONS(8603), + [aux_sym_def_type_statement_token10] = ACTIONS(8603), + [aux_sym_def_type_statement_token11] = ACTIONS(8603), + [aux_sym_def_type_statement_token12] = ACTIONS(8603), + [aux_sym_def_type_statement_token13] = ACTIONS(8603), + [aux_sym_def_type_statement_token14] = ACTIONS(8603), + [aux_sym_call_statement_token1] = ACTIONS(8603), + [sym__ambiguous_call_statement] = ACTIONS(8603), + [aux_sym_addressof_expression_token1] = ACTIONS(8603), + [aux_sym_type_of_expression_token1] = ACTIONS(8603), + [aux_sym_unary_expression_token1] = ACTIONS(8603), + [sym_string_literal] = ACTIONS(8605), + [sym_number_literal] = ACTIONS(8605), + [aux_sym_boolean_literal_token1] = ACTIONS(8603), + [aux_sym_boolean_literal_token2] = ACTIONS(8603), + [sym_nothing_literal] = ACTIONS(8603), + [sym_null_literal] = ACTIONS(8603), + [sym_empty_literal] = ACTIONS(8603), + [sym_date_literal] = ACTIONS(8605), + [anon_sym_POUND] = ACTIONS(8603), + }, + [STATE(6011)] = { + [sym_identifier] = ACTIONS(8776), + [sym_newline] = ACTIONS(8778), + [anon_sym_COLON] = ACTIONS(8778), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8776), + [aux_sym_frm_property_statement_token1] = ACTIONS(8776), + [anon_sym_DOT] = ACTIONS(8776), + [anon_sym_BANG] = ACTIONS(8778), + [aux_sym__attribute_identifier_token1] = ACTIONS(8776), + [aux_sym_option_statement_token3] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8776), + [aux_sym_preprocessor_const_token1] = ACTIONS(8776), + [sym_static_modifier] = ACTIONS(8776), + [sym__dim_keyword] = ACTIONS(8776), + [sym__redim_keyword] = ACTIONS(8776), + [aux_sym_get_accessor_token1] = ACTIONS(8776), + [aux_sym_set_accessor_token1] = ACTIONS(8776), + [anon_sym_COMMA] = ACTIONS(8778), + [aux_sym_const_declaration_token1] = ACTIONS(8776), + [anon_sym_LPAREN] = ACTIONS(8778), + [aux_sym_as_type_clause_token2] = ACTIONS(8776), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8776), + [aux_sym_visibility_token1] = ACTIONS(8776), + [aux_sym_visibility_token2] = ACTIONS(8776), + [aux_sym_elseif_fragment_token1] = ACTIONS(8776), + [aux_sym_else_fragment_token1] = ACTIONS(8776), + [aux_sym_select_statement_token1] = ACTIONS(8776), + [aux_sym__for_header_token1] = ACTIONS(8776), + [aux_sym_do_statement_token1] = ACTIONS(8776), + [aux_sym_do_condition_token1] = ACTIONS(8776), + [aux_sym_with_statement_token1] = ACTIONS(8776), + [aux_sym_exit_statement_token1] = ACTIONS(8776), + [sym_end_statement] = ACTIONS(8778), + [aux_sym_on_goto_statement_token1] = ACTIONS(8776), + [aux_sym_on_goto_statement_token2] = ACTIONS(8776), + [aux_sym_on_error_statement_token2] = ACTIONS(8776), + [sym__ambiguous_redim_statement] = ACTIONS(8778), + [aux_sym_erase_statement_token1] = ACTIONS(8776), + [aux_sym_open_statement_token1] = ACTIONS(8776), + [aux_sym_file_mode_token2] = ACTIONS(8776), + [aux_sym_file_access_token2] = ACTIONS(8776), + [aux_sym_file_lock_token2] = ACTIONS(8776), + [aux_sym_print_statement_token1] = ACTIONS(8776), + [anon_sym_PLUS] = ACTIONS(8778), + [anon_sym_DASH] = ACTIONS(8776), + [anon_sym_QMARK] = ACTIONS(8778), + [aux_sym_close_statement_token1] = ACTIONS(8776), + [aux_sym_put_statement_token1] = ACTIONS(8776), + [aux_sym_unlock_statement_token1] = ACTIONS(8776), + [aux_sym_seek_statement_token1] = ACTIONS(8776), + [sym_reset_statement] = ACTIONS(8776), + [aux_sym_raise_event_statement_token1] = ACTIONS(8776), + [sym_stop_statement] = ACTIONS(8776), + [sym_beep_statement] = ACTIONS(8776), + [aux_sym_unload_statement_token1] = ACTIONS(8776), + [aux_sym_def_type_statement_token1] = ACTIONS(8776), + [aux_sym_def_type_statement_token2] = ACTIONS(8776), + [aux_sym_def_type_statement_token3] = ACTIONS(8776), + [aux_sym_def_type_statement_token4] = ACTIONS(8776), + [aux_sym_def_type_statement_token5] = ACTIONS(8776), + [aux_sym_def_type_statement_token6] = ACTIONS(8776), + [aux_sym_def_type_statement_token7] = ACTIONS(8776), + [aux_sym_def_type_statement_token8] = ACTIONS(8776), + [aux_sym_def_type_statement_token9] = ACTIONS(8776), + [aux_sym_def_type_statement_token10] = ACTIONS(8776), + [aux_sym_def_type_statement_token11] = ACTIONS(8776), + [aux_sym_def_type_statement_token12] = ACTIONS(8776), + [aux_sym_def_type_statement_token13] = ACTIONS(8776), + [aux_sym_def_type_statement_token14] = ACTIONS(8776), + [aux_sym_call_statement_token1] = ACTIONS(8776), + [sym__ambiguous_call_statement] = ACTIONS(8776), + [aux_sym_addressof_expression_token1] = ACTIONS(8776), + [aux_sym_type_of_expression_token1] = ACTIONS(8776), + [aux_sym_unary_expression_token1] = ACTIONS(8776), + [sym_string_literal] = ACTIONS(8778), + [sym_number_literal] = ACTIONS(8778), + [aux_sym_boolean_literal_token1] = ACTIONS(8776), + [aux_sym_boolean_literal_token2] = ACTIONS(8776), + [sym_nothing_literal] = ACTIONS(8776), + [sym_null_literal] = ACTIONS(8776), + [sym_empty_literal] = ACTIONS(8776), + [sym_date_literal] = ACTIONS(8778), + [anon_sym_POUND] = ACTIONS(8776), + }, + [STATE(6012)] = { + [sym_identifier] = ACTIONS(6117), + [sym_newline] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6117), + [aux_sym_frm_property_statement_token1] = ACTIONS(6117), + [anon_sym_DOT] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6119), + [aux_sym__attribute_identifier_token1] = ACTIONS(6117), + [aux_sym_option_statement_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6117), + [aux_sym_preprocessor_const_token1] = ACTIONS(6117), + [sym_static_modifier] = ACTIONS(6117), + [sym__dim_keyword] = ACTIONS(6117), + [sym__redim_keyword] = ACTIONS(6117), + [aux_sym_get_accessor_token1] = ACTIONS(6117), + [aux_sym_set_accessor_token1] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6119), + [aux_sym_const_declaration_token1] = ACTIONS(6117), + [anon_sym_LPAREN] = ACTIONS(6119), + [aux_sym_as_type_clause_token2] = ACTIONS(6117), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6117), + [aux_sym_visibility_token1] = ACTIONS(6117), + [aux_sym_visibility_token2] = ACTIONS(6117), + [aux_sym_elseif_fragment_token1] = ACTIONS(6117), + [aux_sym_else_fragment_token1] = ACTIONS(6117), + [aux_sym_select_statement_token1] = ACTIONS(6117), + [aux_sym__for_header_token1] = ACTIONS(6117), + [aux_sym_do_statement_token1] = ACTIONS(6117), + [aux_sym_do_condition_token1] = ACTIONS(6117), + [aux_sym_while_statement_token1] = ACTIONS(6117), + [aux_sym_with_statement_token1] = ACTIONS(6117), + [aux_sym_exit_statement_token1] = ACTIONS(6117), + [sym_end_statement] = ACTIONS(6119), + [aux_sym_on_goto_statement_token1] = ACTIONS(6117), + [aux_sym_on_goto_statement_token2] = ACTIONS(6117), + [aux_sym_on_error_statement_token2] = ACTIONS(6117), + [sym__ambiguous_redim_statement] = ACTIONS(6119), + [aux_sym_erase_statement_token1] = ACTIONS(6117), + [aux_sym_open_statement_token1] = ACTIONS(6117), + [aux_sym_file_mode_token2] = ACTIONS(6117), + [aux_sym_file_access_token2] = ACTIONS(6117), + [aux_sym_file_lock_token2] = ACTIONS(6117), + [aux_sym_print_statement_token1] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6117), + [anon_sym_QMARK] = ACTIONS(6119), + [aux_sym_close_statement_token1] = ACTIONS(6117), + [aux_sym_put_statement_token1] = ACTIONS(6117), + [aux_sym_unlock_statement_token1] = ACTIONS(6117), + [aux_sym_seek_statement_token1] = ACTIONS(6117), + [sym_reset_statement] = ACTIONS(6117), + [aux_sym_raise_event_statement_token1] = ACTIONS(6117), + [sym_stop_statement] = ACTIONS(6117), + [sym_beep_statement] = ACTIONS(6117), + [aux_sym_unload_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token2] = ACTIONS(6117), + [aux_sym_def_type_statement_token3] = ACTIONS(6117), + [aux_sym_def_type_statement_token4] = ACTIONS(6117), + [aux_sym_def_type_statement_token5] = ACTIONS(6117), + [aux_sym_def_type_statement_token6] = ACTIONS(6117), + [aux_sym_def_type_statement_token7] = ACTIONS(6117), + [aux_sym_def_type_statement_token8] = ACTIONS(6117), + [aux_sym_def_type_statement_token9] = ACTIONS(6117), + [aux_sym_def_type_statement_token10] = ACTIONS(6117), + [aux_sym_def_type_statement_token11] = ACTIONS(6117), + [aux_sym_def_type_statement_token12] = ACTIONS(6117), + [aux_sym_def_type_statement_token13] = ACTIONS(6117), + [aux_sym_def_type_statement_token14] = ACTIONS(6117), + [aux_sym_call_statement_token1] = ACTIONS(6117), + [sym__ambiguous_call_statement] = ACTIONS(6117), + [aux_sym_addressof_expression_token1] = ACTIONS(6117), + [aux_sym_type_of_expression_token1] = ACTIONS(6117), + [aux_sym_unary_expression_token1] = ACTIONS(6117), + [sym_string_literal] = ACTIONS(6119), + [sym_number_literal] = ACTIONS(6119), + [aux_sym_boolean_literal_token1] = ACTIONS(6117), + [aux_sym_boolean_literal_token2] = ACTIONS(6117), + [sym_nothing_literal] = ACTIONS(6117), + [sym_null_literal] = ACTIONS(6117), + [sym_empty_literal] = ACTIONS(6117), + [sym_date_literal] = ACTIONS(6119), + [anon_sym_POUND] = ACTIONS(6117), + }, + [STATE(6013)] = { + [sym_identifier] = ACTIONS(8974), + [sym_newline] = ACTIONS(8976), + [anon_sym_COLON] = ACTIONS(8976), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8974), + [aux_sym_frm_property_statement_token1] = ACTIONS(8974), + [anon_sym_DOT] = ACTIONS(8974), + [anon_sym_BANG] = ACTIONS(8976), + [aux_sym__attribute_identifier_token1] = ACTIONS(8974), + [aux_sym_option_statement_token3] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8974), + [aux_sym_preprocessor_const_token1] = ACTIONS(8974), + [sym_static_modifier] = ACTIONS(8974), + [sym__dim_keyword] = ACTIONS(8974), + [sym__redim_keyword] = ACTIONS(8974), + [aux_sym_get_accessor_token1] = ACTIONS(8974), + [aux_sym_set_accessor_token1] = ACTIONS(8974), + [anon_sym_COMMA] = ACTIONS(10929), + [aux_sym_const_declaration_token1] = ACTIONS(8974), + [anon_sym_LPAREN] = ACTIONS(8976), + [aux_sym_as_type_clause_token2] = ACTIONS(8974), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8974), + [aux_sym_visibility_token1] = ACTIONS(8974), + [aux_sym_visibility_token2] = ACTIONS(8974), + [aux_sym_elseif_fragment_token1] = ACTIONS(8974), + [aux_sym_else_fragment_token1] = ACTIONS(8974), + [aux_sym_select_statement_token1] = ACTIONS(8974), + [aux_sym_select_statement_token2] = ACTIONS(8974), + [aux_sym__for_header_token1] = ACTIONS(8974), + [aux_sym_do_statement_token1] = ACTIONS(8974), + [aux_sym_do_condition_token1] = ACTIONS(8974), + [aux_sym_with_statement_token1] = ACTIONS(8974), + [aux_sym_exit_statement_token1] = ACTIONS(8974), + [sym_end_statement] = ACTIONS(8976), + [aux_sym_on_goto_statement_token1] = ACTIONS(8974), + [aux_sym_on_goto_statement_token2] = ACTIONS(8974), + [aux_sym_on_error_statement_token2] = ACTIONS(8974), + [sym__ambiguous_redim_statement] = ACTIONS(8976), + [aux_sym_erase_statement_token1] = ACTIONS(8974), + [aux_sym_open_statement_token1] = ACTIONS(8974), + [aux_sym_file_mode_token2] = ACTIONS(8974), + [aux_sym_file_access_token2] = ACTIONS(8974), + [aux_sym_file_lock_token2] = ACTIONS(8974), + [aux_sym_print_statement_token1] = ACTIONS(8974), + [anon_sym_PLUS] = ACTIONS(8976), + [anon_sym_DASH] = ACTIONS(8974), + [anon_sym_QMARK] = ACTIONS(8976), + [aux_sym_close_statement_token1] = ACTIONS(8974), + [aux_sym_put_statement_token1] = ACTIONS(8974), + [aux_sym_unlock_statement_token1] = ACTIONS(8974), + [aux_sym_seek_statement_token1] = ACTIONS(8974), + [sym_reset_statement] = ACTIONS(8974), + [aux_sym_raise_event_statement_token1] = ACTIONS(8974), + [sym_stop_statement] = ACTIONS(8974), + [sym_beep_statement] = ACTIONS(8974), + [aux_sym_unload_statement_token1] = ACTIONS(8974), + [aux_sym_def_type_statement_token1] = ACTIONS(8974), + [aux_sym_def_type_statement_token2] = ACTIONS(8974), + [aux_sym_def_type_statement_token3] = ACTIONS(8974), + [aux_sym_def_type_statement_token4] = ACTIONS(8974), + [aux_sym_def_type_statement_token5] = ACTIONS(8974), + [aux_sym_def_type_statement_token6] = ACTIONS(8974), + [aux_sym_def_type_statement_token7] = ACTIONS(8974), + [aux_sym_def_type_statement_token8] = ACTIONS(8974), + [aux_sym_def_type_statement_token9] = ACTIONS(8974), + [aux_sym_def_type_statement_token10] = ACTIONS(8974), + [aux_sym_def_type_statement_token11] = ACTIONS(8974), + [aux_sym_def_type_statement_token12] = ACTIONS(8974), + [aux_sym_def_type_statement_token13] = ACTIONS(8974), + [aux_sym_def_type_statement_token14] = ACTIONS(8974), + [aux_sym_call_statement_token1] = ACTIONS(8974), + [sym__ambiguous_call_statement] = ACTIONS(8974), + [aux_sym_addressof_expression_token1] = ACTIONS(8974), + [aux_sym_type_of_expression_token1] = ACTIONS(8974), + [aux_sym_unary_expression_token1] = ACTIONS(8974), + [sym_string_literal] = ACTIONS(8976), + [sym_number_literal] = ACTIONS(8976), + [aux_sym_boolean_literal_token1] = ACTIONS(8974), + [aux_sym_boolean_literal_token2] = ACTIONS(8974), + [sym_nothing_literal] = ACTIONS(8974), + [sym_null_literal] = ACTIONS(8974), + [sym_empty_literal] = ACTIONS(8974), + [sym_date_literal] = ACTIONS(8976), + [anon_sym_POUND] = ACTIONS(8974), + }, + [STATE(6014)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym_select_statement_token2] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(6015)] = { + [sym_identifier] = ACTIONS(8970), + [sym_newline] = ACTIONS(8972), + [anon_sym_COLON] = ACTIONS(8972), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8970), + [aux_sym_frm_property_statement_token1] = ACTIONS(8970), + [anon_sym_DOT] = ACTIONS(8970), + [anon_sym_BANG] = ACTIONS(8972), + [aux_sym__attribute_identifier_token1] = ACTIONS(8970), + [aux_sym_option_statement_token3] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8970), + [aux_sym_preprocessor_const_token1] = ACTIONS(8970), + [sym_static_modifier] = ACTIONS(8970), + [sym__dim_keyword] = ACTIONS(8970), + [sym__redim_keyword] = ACTIONS(8970), + [aux_sym_get_accessor_token1] = ACTIONS(8970), + [aux_sym_set_accessor_token1] = ACTIONS(8970), + [anon_sym_COMMA] = ACTIONS(8972), + [aux_sym_const_declaration_token1] = ACTIONS(8970), + [anon_sym_LPAREN] = ACTIONS(8972), + [aux_sym_as_type_clause_token2] = ACTIONS(8970), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8970), + [aux_sym_visibility_token1] = ACTIONS(8970), + [aux_sym_visibility_token2] = ACTIONS(8970), + [aux_sym_elseif_fragment_token1] = ACTIONS(8970), + [aux_sym_else_fragment_token1] = ACTIONS(8970), + [aux_sym_select_statement_token1] = ACTIONS(8970), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8970), + [aux_sym__for_header_token1] = ACTIONS(8970), + [aux_sym_do_statement_token1] = ACTIONS(8970), + [aux_sym_do_condition_token1] = ACTIONS(8970), + [aux_sym_with_statement_token1] = ACTIONS(8970), + [aux_sym_exit_statement_token1] = ACTIONS(8970), + [sym_end_statement] = ACTIONS(8972), + [aux_sym_on_goto_statement_token1] = ACTIONS(8970), + [aux_sym_on_goto_statement_token2] = ACTIONS(8970), + [aux_sym_on_error_statement_token2] = ACTIONS(8970), + [sym__ambiguous_redim_statement] = ACTIONS(8972), + [aux_sym_erase_statement_token1] = ACTIONS(8970), + [aux_sym_open_statement_token1] = ACTIONS(8970), + [aux_sym_file_mode_token2] = ACTIONS(8970), + [aux_sym_file_access_token2] = ACTIONS(8970), + [aux_sym_file_lock_token2] = ACTIONS(8970), + [aux_sym_print_statement_token1] = ACTIONS(8970), + [anon_sym_PLUS] = ACTIONS(8972), + [anon_sym_DASH] = ACTIONS(8970), + [anon_sym_QMARK] = ACTIONS(8972), + [aux_sym_close_statement_token1] = ACTIONS(8970), + [aux_sym_put_statement_token1] = ACTIONS(8970), + [aux_sym_unlock_statement_token1] = ACTIONS(8970), + [aux_sym_seek_statement_token1] = ACTIONS(8970), + [sym_reset_statement] = ACTIONS(8970), + [aux_sym_raise_event_statement_token1] = ACTIONS(8970), + [sym_stop_statement] = ACTIONS(8970), + [sym_beep_statement] = ACTIONS(8970), + [aux_sym_unload_statement_token1] = ACTIONS(8970), + [aux_sym_def_type_statement_token1] = ACTIONS(8970), + [aux_sym_def_type_statement_token2] = ACTIONS(8970), + [aux_sym_def_type_statement_token3] = ACTIONS(8970), + [aux_sym_def_type_statement_token4] = ACTIONS(8970), + [aux_sym_def_type_statement_token5] = ACTIONS(8970), + [aux_sym_def_type_statement_token6] = ACTIONS(8970), + [aux_sym_def_type_statement_token7] = ACTIONS(8970), + [aux_sym_def_type_statement_token8] = ACTIONS(8970), + [aux_sym_def_type_statement_token9] = ACTIONS(8970), + [aux_sym_def_type_statement_token10] = ACTIONS(8970), + [aux_sym_def_type_statement_token11] = ACTIONS(8970), + [aux_sym_def_type_statement_token12] = ACTIONS(8970), + [aux_sym_def_type_statement_token13] = ACTIONS(8970), + [aux_sym_def_type_statement_token14] = ACTIONS(8970), + [aux_sym_call_statement_token1] = ACTIONS(8970), + [sym__ambiguous_call_statement] = ACTIONS(8970), + [aux_sym_addressof_expression_token1] = ACTIONS(8970), + [aux_sym_type_of_expression_token1] = ACTIONS(8970), + [aux_sym_unary_expression_token1] = ACTIONS(8970), + [sym_string_literal] = ACTIONS(8972), + [sym_number_literal] = ACTIONS(8972), + [aux_sym_boolean_literal_token1] = ACTIONS(8970), + [aux_sym_boolean_literal_token2] = ACTIONS(8970), + [sym_nothing_literal] = ACTIONS(8970), + [sym_null_literal] = ACTIONS(8970), + [sym_empty_literal] = ACTIONS(8970), + [sym_date_literal] = ACTIONS(8972), + [anon_sym_POUND] = ACTIONS(8970), + }, + [STATE(6016)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(6017)] = { + [sym_identifier] = ACTIONS(8729), + [sym_newline] = ACTIONS(8731), + [anon_sym_COLON] = ACTIONS(8731), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8729), + [aux_sym_frm_property_statement_token1] = ACTIONS(8729), + [anon_sym_DOT] = ACTIONS(8729), + [anon_sym_BANG] = ACTIONS(8731), + [aux_sym__attribute_identifier_token1] = ACTIONS(8729), + [aux_sym_option_statement_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8729), + [aux_sym_preprocessor_const_token1] = ACTIONS(8729), + [sym_static_modifier] = ACTIONS(8729), + [sym__dim_keyword] = ACTIONS(8729), + [sym__redim_keyword] = ACTIONS(8729), + [aux_sym_get_accessor_token1] = ACTIONS(8729), + [aux_sym_set_accessor_token1] = ACTIONS(8729), + [aux_sym_const_declaration_token1] = ACTIONS(8729), + [anon_sym_LPAREN] = ACTIONS(8731), + [aux_sym_as_type_clause_token2] = ACTIONS(8729), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8729), + [aux_sym_visibility_token1] = ACTIONS(8729), + [aux_sym_visibility_token2] = ACTIONS(8729), + [aux_sym_elseif_fragment_token1] = ACTIONS(8729), + [aux_sym_else_fragment_token1] = ACTIONS(8729), + [aux_sym_select_statement_token1] = ACTIONS(8729), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8729), + [aux_sym__for_header_token1] = ACTIONS(8729), + [aux_sym_do_statement_token1] = ACTIONS(8729), + [aux_sym_do_condition_token1] = ACTIONS(8729), + [aux_sym_with_statement_token1] = ACTIONS(8729), + [aux_sym_exit_statement_token1] = ACTIONS(8729), + [sym_end_statement] = ACTIONS(8731), + [aux_sym_on_goto_statement_token1] = ACTIONS(8729), + [aux_sym_on_goto_statement_token2] = ACTIONS(8729), + [aux_sym_on_error_statement_token2] = ACTIONS(8729), + [sym__ambiguous_redim_statement] = ACTIONS(8731), + [aux_sym_erase_statement_token1] = ACTIONS(8729), + [aux_sym_open_statement_token1] = ACTIONS(8729), + [aux_sym_file_mode_token2] = ACTIONS(8729), + [aux_sym_file_access_token2] = ACTIONS(8729), + [aux_sym_file_lock_token2] = ACTIONS(8729), + [aux_sym_print_statement_token1] = ACTIONS(8729), + [anon_sym_PLUS] = ACTIONS(8731), + [anon_sym_DASH] = ACTIONS(8729), + [anon_sym_QMARK] = ACTIONS(8731), + [aux_sym_close_statement_token1] = ACTIONS(8729), + [aux_sym_put_statement_token1] = ACTIONS(8729), + [aux_sym_unlock_statement_token1] = ACTIONS(8729), + [aux_sym_seek_statement_token1] = ACTIONS(8729), + [sym_reset_statement] = ACTIONS(8729), + [aux_sym_raise_event_statement_token1] = ACTIONS(8729), + [sym_stop_statement] = ACTIONS(8729), + [sym_beep_statement] = ACTIONS(8729), + [aux_sym_unload_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token2] = ACTIONS(8729), + [aux_sym_def_type_statement_token3] = ACTIONS(8729), + [aux_sym_def_type_statement_token4] = ACTIONS(8729), + [aux_sym_def_type_statement_token5] = ACTIONS(8729), + [aux_sym_def_type_statement_token6] = ACTIONS(8729), + [aux_sym_def_type_statement_token7] = ACTIONS(8729), + [aux_sym_def_type_statement_token8] = ACTIONS(8729), + [aux_sym_def_type_statement_token9] = ACTIONS(8729), + [aux_sym_def_type_statement_token10] = ACTIONS(8729), + [aux_sym_def_type_statement_token11] = ACTIONS(8729), + [aux_sym_def_type_statement_token12] = ACTIONS(8729), + [aux_sym_def_type_statement_token13] = ACTIONS(8729), + [aux_sym_def_type_statement_token14] = ACTIONS(8729), + [aux_sym_call_statement_token1] = ACTIONS(8729), + [sym__ambiguous_call_statement] = ACTIONS(8729), + [aux_sym_addressof_expression_token1] = ACTIONS(8729), + [aux_sym_type_of_expression_token1] = ACTIONS(8729), + [aux_sym_unary_expression_token1] = ACTIONS(8729), + [sym_string_literal] = ACTIONS(8731), + [sym_number_literal] = ACTIONS(8731), + [aux_sym_boolean_literal_token1] = ACTIONS(8729), + [aux_sym_boolean_literal_token2] = ACTIONS(8729), + [sym_nothing_literal] = ACTIONS(8729), + [sym_null_literal] = ACTIONS(8729), + [sym_empty_literal] = ACTIONS(8729), + [sym_date_literal] = ACTIONS(8731), + [anon_sym_POUND] = ACTIONS(8729), + }, + [STATE(6018)] = { + [sym_identifier] = ACTIONS(8980), + [sym_newline] = ACTIONS(8982), + [anon_sym_COLON] = ACTIONS(8982), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8980), + [aux_sym_frm_property_statement_token1] = ACTIONS(8980), + [anon_sym_DOT] = ACTIONS(8980), + [anon_sym_BANG] = ACTIONS(8982), + [aux_sym__attribute_identifier_token1] = ACTIONS(8980), + [aux_sym_option_statement_token3] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8980), + [aux_sym_preprocessor_const_token1] = ACTIONS(8980), + [sym_static_modifier] = ACTIONS(8980), + [sym__dim_keyword] = ACTIONS(8980), + [sym__redim_keyword] = ACTIONS(8980), + [aux_sym_get_accessor_token1] = ACTIONS(8980), + [aux_sym_set_accessor_token1] = ACTIONS(8980), + [aux_sym_const_declaration_token1] = ACTIONS(8980), + [anon_sym_LPAREN] = ACTIONS(8982), + [aux_sym_as_type_clause_token2] = ACTIONS(8980), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8980), + [aux_sym_visibility_token1] = ACTIONS(8980), + [aux_sym_visibility_token2] = ACTIONS(8980), + [aux_sym_elseif_fragment_token1] = ACTIONS(8980), + [aux_sym_else_fragment_token1] = ACTIONS(8980), + [aux_sym_select_statement_token1] = ACTIONS(8980), + [aux_sym__for_header_token1] = ACTIONS(8980), + [aux_sym_do_statement_token1] = ACTIONS(8980), + [aux_sym_do_statement_token2] = ACTIONS(8980), + [aux_sym_do_condition_token1] = ACTIONS(8980), + [aux_sym_with_statement_token1] = ACTIONS(8980), + [aux_sym_exit_statement_token1] = ACTIONS(8980), + [sym_end_statement] = ACTIONS(8982), + [aux_sym_on_goto_statement_token1] = ACTIONS(8980), + [aux_sym_on_goto_statement_token2] = ACTIONS(8980), + [aux_sym_on_error_statement_token2] = ACTIONS(8980), + [sym__ambiguous_redim_statement] = ACTIONS(8982), + [aux_sym_erase_statement_token1] = ACTIONS(8980), + [aux_sym_open_statement_token1] = ACTIONS(8980), + [aux_sym_open_statement_token3] = ACTIONS(10931), + [aux_sym_file_mode_token2] = ACTIONS(8980), + [aux_sym_file_access_token2] = ACTIONS(8980), + [aux_sym_file_lock_token2] = ACTIONS(8980), + [aux_sym_print_statement_token1] = ACTIONS(8980), + [anon_sym_PLUS] = ACTIONS(8982), + [anon_sym_DASH] = ACTIONS(8980), + [anon_sym_QMARK] = ACTIONS(8982), + [aux_sym_close_statement_token1] = ACTIONS(8980), + [aux_sym_put_statement_token1] = ACTIONS(8980), + [aux_sym_unlock_statement_token1] = ACTIONS(8980), + [aux_sym_seek_statement_token1] = ACTIONS(8980), + [sym_reset_statement] = ACTIONS(8980), + [aux_sym_raise_event_statement_token1] = ACTIONS(8980), + [sym_stop_statement] = ACTIONS(8980), + [sym_beep_statement] = ACTIONS(8980), + [aux_sym_unload_statement_token1] = ACTIONS(8980), + [aux_sym_def_type_statement_token1] = ACTIONS(8980), + [aux_sym_def_type_statement_token2] = ACTIONS(8980), + [aux_sym_def_type_statement_token3] = ACTIONS(8980), + [aux_sym_def_type_statement_token4] = ACTIONS(8980), + [aux_sym_def_type_statement_token5] = ACTIONS(8980), + [aux_sym_def_type_statement_token6] = ACTIONS(8980), + [aux_sym_def_type_statement_token7] = ACTIONS(8980), + [aux_sym_def_type_statement_token8] = ACTIONS(8980), + [aux_sym_def_type_statement_token9] = ACTIONS(8980), + [aux_sym_def_type_statement_token10] = ACTIONS(8980), + [aux_sym_def_type_statement_token11] = ACTIONS(8980), + [aux_sym_def_type_statement_token12] = ACTIONS(8980), + [aux_sym_def_type_statement_token13] = ACTIONS(8980), + [aux_sym_def_type_statement_token14] = ACTIONS(8980), + [aux_sym_call_statement_token1] = ACTIONS(8980), + [sym__ambiguous_call_statement] = ACTIONS(8980), + [aux_sym_addressof_expression_token1] = ACTIONS(8980), + [aux_sym_type_of_expression_token1] = ACTIONS(8980), + [aux_sym_unary_expression_token1] = ACTIONS(8980), + [sym_string_literal] = ACTIONS(8982), + [sym_number_literal] = ACTIONS(8982), + [aux_sym_boolean_literal_token1] = ACTIONS(8980), + [aux_sym_boolean_literal_token2] = ACTIONS(8980), + [sym_nothing_literal] = ACTIONS(8980), + [sym_null_literal] = ACTIONS(8980), + [sym_empty_literal] = ACTIONS(8980), + [sym_date_literal] = ACTIONS(8982), + [anon_sym_POUND] = ACTIONS(8980), + }, + [STATE(6019)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym_select_statement_token2] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(6020)] = { + [sym_identifier] = ACTIONS(8776), + [sym_newline] = ACTIONS(8778), + [anon_sym_COLON] = ACTIONS(8778), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8776), + [aux_sym_frm_property_statement_token1] = ACTIONS(8776), + [anon_sym_DOT] = ACTIONS(8776), + [anon_sym_BANG] = ACTIONS(8778), + [aux_sym__attribute_identifier_token1] = ACTIONS(8776), + [aux_sym_option_statement_token3] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8776), + [aux_sym_preprocessor_const_token1] = ACTIONS(8776), + [sym_static_modifier] = ACTIONS(8776), + [sym__dim_keyword] = ACTIONS(8776), + [sym__redim_keyword] = ACTIONS(8776), + [aux_sym_get_accessor_token1] = ACTIONS(8776), + [aux_sym_set_accessor_token1] = ACTIONS(8776), + [anon_sym_COMMA] = ACTIONS(8778), + [aux_sym_const_declaration_token1] = ACTIONS(8776), + [anon_sym_LPAREN] = ACTIONS(8778), + [aux_sym_as_type_clause_token2] = ACTIONS(8776), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8776), + [aux_sym_visibility_token1] = ACTIONS(8776), + [aux_sym_visibility_token2] = ACTIONS(8776), + [aux_sym_elseif_fragment_token1] = ACTIONS(8776), + [aux_sym_else_fragment_token1] = ACTIONS(8776), + [aux_sym_select_statement_token1] = ACTIONS(8776), + [aux_sym__for_header_token1] = ACTIONS(8776), + [aux_sym_do_statement_token1] = ACTIONS(8776), + [aux_sym_do_condition_token1] = ACTIONS(8776), + [aux_sym_while_statement_token1] = ACTIONS(8776), + [aux_sym_with_statement_token1] = ACTIONS(8776), + [aux_sym_exit_statement_token1] = ACTIONS(8776), + [sym_end_statement] = ACTIONS(8778), + [aux_sym_on_goto_statement_token1] = ACTIONS(8776), + [aux_sym_on_goto_statement_token2] = ACTIONS(8776), + [aux_sym_on_error_statement_token2] = ACTIONS(8776), + [sym__ambiguous_redim_statement] = ACTIONS(8778), + [aux_sym_erase_statement_token1] = ACTIONS(8776), + [aux_sym_open_statement_token1] = ACTIONS(8776), + [aux_sym_file_mode_token2] = ACTIONS(8776), + [aux_sym_file_access_token2] = ACTIONS(8776), + [aux_sym_file_lock_token2] = ACTIONS(8776), + [aux_sym_print_statement_token1] = ACTIONS(8776), + [anon_sym_PLUS] = ACTIONS(8778), + [anon_sym_DASH] = ACTIONS(8776), + [anon_sym_QMARK] = ACTIONS(8778), + [aux_sym_close_statement_token1] = ACTIONS(8776), + [aux_sym_put_statement_token1] = ACTIONS(8776), + [aux_sym_unlock_statement_token1] = ACTIONS(8776), + [aux_sym_seek_statement_token1] = ACTIONS(8776), + [sym_reset_statement] = ACTIONS(8776), + [aux_sym_raise_event_statement_token1] = ACTIONS(8776), + [sym_stop_statement] = ACTIONS(8776), + [sym_beep_statement] = ACTIONS(8776), + [aux_sym_unload_statement_token1] = ACTIONS(8776), + [aux_sym_def_type_statement_token1] = ACTIONS(8776), + [aux_sym_def_type_statement_token2] = ACTIONS(8776), + [aux_sym_def_type_statement_token3] = ACTIONS(8776), + [aux_sym_def_type_statement_token4] = ACTIONS(8776), + [aux_sym_def_type_statement_token5] = ACTIONS(8776), + [aux_sym_def_type_statement_token6] = ACTIONS(8776), + [aux_sym_def_type_statement_token7] = ACTIONS(8776), + [aux_sym_def_type_statement_token8] = ACTIONS(8776), + [aux_sym_def_type_statement_token9] = ACTIONS(8776), + [aux_sym_def_type_statement_token10] = ACTIONS(8776), + [aux_sym_def_type_statement_token11] = ACTIONS(8776), + [aux_sym_def_type_statement_token12] = ACTIONS(8776), + [aux_sym_def_type_statement_token13] = ACTIONS(8776), + [aux_sym_def_type_statement_token14] = ACTIONS(8776), + [aux_sym_call_statement_token1] = ACTIONS(8776), + [sym__ambiguous_call_statement] = ACTIONS(8776), + [aux_sym_addressof_expression_token1] = ACTIONS(8776), + [aux_sym_type_of_expression_token1] = ACTIONS(8776), + [aux_sym_unary_expression_token1] = ACTIONS(8776), + [sym_string_literal] = ACTIONS(8778), + [sym_number_literal] = ACTIONS(8778), + [aux_sym_boolean_literal_token1] = ACTIONS(8776), + [aux_sym_boolean_literal_token2] = ACTIONS(8776), + [sym_nothing_literal] = ACTIONS(8776), + [sym_null_literal] = ACTIONS(8776), + [sym_empty_literal] = ACTIONS(8776), + [sym_date_literal] = ACTIONS(8778), + [anon_sym_POUND] = ACTIONS(8776), + }, + [STATE(6021)] = { + [sym_identifier] = ACTIONS(8801), + [sym_newline] = ACTIONS(8803), + [anon_sym_COLON] = ACTIONS(8803), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8801), + [aux_sym_frm_property_statement_token1] = ACTIONS(8801), + [anon_sym_DOT] = ACTIONS(8801), + [anon_sym_BANG] = ACTIONS(8803), + [aux_sym__attribute_identifier_token1] = ACTIONS(8801), + [aux_sym_option_statement_token3] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8801), + [aux_sym_preprocessor_const_token1] = ACTIONS(8801), + [sym_static_modifier] = ACTIONS(8801), + [sym__dim_keyword] = ACTIONS(8801), + [sym__redim_keyword] = ACTIONS(8801), + [aux_sym_get_accessor_token1] = ACTIONS(8801), + [aux_sym_set_accessor_token1] = ACTIONS(8801), + [anon_sym_COMMA] = ACTIONS(8803), + [aux_sym_const_declaration_token1] = ACTIONS(8801), + [anon_sym_LPAREN] = ACTIONS(8803), + [aux_sym_as_type_clause_token2] = ACTIONS(8801), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8801), + [aux_sym_visibility_token1] = ACTIONS(8801), + [aux_sym_visibility_token2] = ACTIONS(8801), + [aux_sym_elseif_fragment_token1] = ACTIONS(8801), + [aux_sym_else_fragment_token1] = ACTIONS(8801), + [aux_sym_select_statement_token1] = ACTIONS(8801), + [aux_sym__for_header_token1] = ACTIONS(8801), + [aux_sym_do_statement_token1] = ACTIONS(8801), + [aux_sym_do_condition_token1] = ACTIONS(8801), + [aux_sym_while_statement_token1] = ACTIONS(8801), + [aux_sym_with_statement_token1] = ACTIONS(8801), + [aux_sym_exit_statement_token1] = ACTIONS(8801), + [sym_end_statement] = ACTIONS(8803), + [aux_sym_on_goto_statement_token1] = ACTIONS(8801), + [aux_sym_on_goto_statement_token2] = ACTIONS(8801), + [aux_sym_on_error_statement_token2] = ACTIONS(8801), + [sym__ambiguous_redim_statement] = ACTIONS(8803), + [aux_sym_erase_statement_token1] = ACTIONS(8801), + [aux_sym_open_statement_token1] = ACTIONS(8801), + [aux_sym_file_mode_token2] = ACTIONS(8801), + [aux_sym_file_access_token2] = ACTIONS(8801), + [aux_sym_file_lock_token2] = ACTIONS(8801), + [aux_sym_print_statement_token1] = ACTIONS(8801), + [anon_sym_PLUS] = ACTIONS(8803), + [anon_sym_DASH] = ACTIONS(8801), + [anon_sym_QMARK] = ACTIONS(8803), + [aux_sym_close_statement_token1] = ACTIONS(8801), + [aux_sym_put_statement_token1] = ACTIONS(8801), + [aux_sym_unlock_statement_token1] = ACTIONS(8801), + [aux_sym_seek_statement_token1] = ACTIONS(8801), + [sym_reset_statement] = ACTIONS(8801), + [aux_sym_raise_event_statement_token1] = ACTIONS(8801), + [sym_stop_statement] = ACTIONS(8801), + [sym_beep_statement] = ACTIONS(8801), + [aux_sym_unload_statement_token1] = ACTIONS(8801), + [aux_sym_def_type_statement_token1] = ACTIONS(8801), + [aux_sym_def_type_statement_token2] = ACTIONS(8801), + [aux_sym_def_type_statement_token3] = ACTIONS(8801), + [aux_sym_def_type_statement_token4] = ACTIONS(8801), + [aux_sym_def_type_statement_token5] = ACTIONS(8801), + [aux_sym_def_type_statement_token6] = ACTIONS(8801), + [aux_sym_def_type_statement_token7] = ACTIONS(8801), + [aux_sym_def_type_statement_token8] = ACTIONS(8801), + [aux_sym_def_type_statement_token9] = ACTIONS(8801), + [aux_sym_def_type_statement_token10] = ACTIONS(8801), + [aux_sym_def_type_statement_token11] = ACTIONS(8801), + [aux_sym_def_type_statement_token12] = ACTIONS(8801), + [aux_sym_def_type_statement_token13] = ACTIONS(8801), + [aux_sym_def_type_statement_token14] = ACTIONS(8801), + [aux_sym_call_statement_token1] = ACTIONS(8801), + [sym__ambiguous_call_statement] = ACTIONS(8801), + [aux_sym_addressof_expression_token1] = ACTIONS(8801), + [aux_sym_type_of_expression_token1] = ACTIONS(8801), + [aux_sym_unary_expression_token1] = ACTIONS(8801), + [sym_string_literal] = ACTIONS(8803), + [sym_number_literal] = ACTIONS(8803), + [aux_sym_boolean_literal_token1] = ACTIONS(8801), + [aux_sym_boolean_literal_token2] = ACTIONS(8801), + [sym_nothing_literal] = ACTIONS(8801), + [sym_null_literal] = ACTIONS(8801), + [sym_empty_literal] = ACTIONS(8801), + [sym_date_literal] = ACTIONS(8803), + [anon_sym_POUND] = ACTIONS(8801), + }, + [STATE(6022)] = { + [aux_sym__argument_sequence_repeat2] = STATE(6218), + [sym_identifier] = ACTIONS(8495), + [sym_newline] = ACTIONS(8497), + [anon_sym_COLON] = ACTIONS(8497), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8495), + [aux_sym_frm_property_statement_token1] = ACTIONS(8495), + [anon_sym_DOT] = ACTIONS(8495), + [anon_sym_BANG] = ACTIONS(8497), + [aux_sym__attribute_identifier_token1] = ACTIONS(8495), + [aux_sym_option_statement_token3] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8495), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8495), + [aux_sym_preprocessor_const_token1] = ACTIONS(8495), + [sym_static_modifier] = ACTIONS(8495), + [sym__dim_keyword] = ACTIONS(8495), + [sym__redim_keyword] = ACTIONS(8495), + [aux_sym_get_accessor_token1] = ACTIONS(8495), + [aux_sym_set_accessor_token1] = ACTIONS(8495), + [anon_sym_COMMA] = ACTIONS(5314), + [aux_sym_const_declaration_token1] = ACTIONS(8495), + [anon_sym_LPAREN] = ACTIONS(8497), + [aux_sym_as_type_clause_token2] = ACTIONS(8495), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8495), + [aux_sym_visibility_token1] = ACTIONS(8495), + [aux_sym_visibility_token2] = ACTIONS(8495), + [aux_sym_elseif_fragment_token1] = ACTIONS(8495), + [aux_sym_else_fragment_token1] = ACTIONS(8495), + [aux_sym_select_statement_token1] = ACTIONS(8495), + [aux_sym__for_header_token1] = ACTIONS(8495), + [aux_sym_do_statement_token1] = ACTIONS(8495), + [aux_sym_do_condition_token1] = ACTIONS(8495), + [aux_sym_with_statement_token1] = ACTIONS(8495), + [aux_sym_exit_statement_token1] = ACTIONS(8495), + [sym_end_statement] = ACTIONS(8497), + [aux_sym_on_goto_statement_token1] = ACTIONS(8495), + [aux_sym_on_goto_statement_token2] = ACTIONS(8495), + [aux_sym_on_error_statement_token2] = ACTIONS(8495), + [sym__ambiguous_redim_statement] = ACTIONS(8497), + [aux_sym_erase_statement_token1] = ACTIONS(8495), + [aux_sym_open_statement_token1] = ACTIONS(8495), + [aux_sym_file_mode_token2] = ACTIONS(8495), + [aux_sym_file_access_token2] = ACTIONS(8495), + [aux_sym_file_lock_token2] = ACTIONS(8495), + [aux_sym_print_statement_token1] = ACTIONS(8495), + [anon_sym_PLUS] = ACTIONS(8497), + [anon_sym_DASH] = ACTIONS(8495), + [anon_sym_QMARK] = ACTIONS(8497), + [aux_sym_close_statement_token1] = ACTIONS(8495), + [aux_sym_put_statement_token1] = ACTIONS(8495), + [aux_sym_unlock_statement_token1] = ACTIONS(8495), + [aux_sym_seek_statement_token1] = ACTIONS(8495), + [sym_reset_statement] = ACTIONS(8495), + [aux_sym_raise_event_statement_token1] = ACTIONS(8495), + [sym_stop_statement] = ACTIONS(8495), + [sym_beep_statement] = ACTIONS(8495), + [aux_sym_unload_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token1] = ACTIONS(8495), + [aux_sym_def_type_statement_token2] = ACTIONS(8495), + [aux_sym_def_type_statement_token3] = ACTIONS(8495), + [aux_sym_def_type_statement_token4] = ACTIONS(8495), + [aux_sym_def_type_statement_token5] = ACTIONS(8495), + [aux_sym_def_type_statement_token6] = ACTIONS(8495), + [aux_sym_def_type_statement_token7] = ACTIONS(8495), + [aux_sym_def_type_statement_token8] = ACTIONS(8495), + [aux_sym_def_type_statement_token9] = ACTIONS(8495), + [aux_sym_def_type_statement_token10] = ACTIONS(8495), + [aux_sym_def_type_statement_token11] = ACTIONS(8495), + [aux_sym_def_type_statement_token12] = ACTIONS(8495), + [aux_sym_def_type_statement_token13] = ACTIONS(8495), + [aux_sym_def_type_statement_token14] = ACTIONS(8495), + [aux_sym_call_statement_token1] = ACTIONS(8495), + [sym__ambiguous_call_statement] = ACTIONS(8495), + [aux_sym_addressof_expression_token1] = ACTIONS(8495), + [aux_sym_type_of_expression_token1] = ACTIONS(8495), + [aux_sym_unary_expression_token1] = ACTIONS(8495), + [sym_string_literal] = ACTIONS(8497), + [sym_number_literal] = ACTIONS(8497), + [aux_sym_boolean_literal_token1] = ACTIONS(8495), + [aux_sym_boolean_literal_token2] = ACTIONS(8495), + [sym_nothing_literal] = ACTIONS(8495), + [sym_null_literal] = ACTIONS(8495), + [sym_empty_literal] = ACTIONS(8495), + [sym_date_literal] = ACTIONS(8497), + [anon_sym_POUND] = ACTIONS(8495), + }, + [STATE(6023)] = { + [sym_identifier] = ACTIONS(8287), + [sym_newline] = ACTIONS(8289), + [anon_sym_COLON] = ACTIONS(8289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8287), + [aux_sym_frm_property_statement_token1] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8287), + [anon_sym_BANG] = ACTIONS(8289), + [aux_sym__attribute_identifier_token1] = ACTIONS(8287), + [aux_sym_option_statement_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8287), + [aux_sym_preprocessor_const_token1] = ACTIONS(8287), + [sym_static_modifier] = ACTIONS(8287), + [sym__dim_keyword] = ACTIONS(8287), + [sym__redim_keyword] = ACTIONS(8287), + [aux_sym_get_accessor_token1] = ACTIONS(8287), + [aux_sym_set_accessor_token1] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8289), + [aux_sym_const_declaration_token1] = ACTIONS(8287), + [anon_sym_LPAREN] = ACTIONS(8289), + [aux_sym_as_type_clause_token2] = ACTIONS(8287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8287), + [aux_sym_visibility_token1] = ACTIONS(8287), + [aux_sym_visibility_token2] = ACTIONS(8287), + [aux_sym_elseif_fragment_token1] = ACTIONS(8287), + [aux_sym_else_fragment_token1] = ACTIONS(8287), + [aux_sym_select_statement_token1] = ACTIONS(8287), + [aux_sym__for_header_token1] = ACTIONS(8287), + [aux_sym_do_statement_token1] = ACTIONS(8287), + [aux_sym_do_condition_token1] = ACTIONS(8287), + [aux_sym_while_statement_token1] = ACTIONS(8287), + [aux_sym_with_statement_token1] = ACTIONS(8287), + [aux_sym_exit_statement_token1] = ACTIONS(8287), + [sym_end_statement] = ACTIONS(8289), + [aux_sym_on_goto_statement_token1] = ACTIONS(8287), + [aux_sym_on_goto_statement_token2] = ACTIONS(8287), + [aux_sym_on_error_statement_token2] = ACTIONS(8287), + [sym__ambiguous_redim_statement] = ACTIONS(8289), + [aux_sym_erase_statement_token1] = ACTIONS(8287), + [aux_sym_open_statement_token1] = ACTIONS(8287), + [aux_sym_file_mode_token2] = ACTIONS(8287), + [aux_sym_file_access_token2] = ACTIONS(8287), + [aux_sym_file_lock_token2] = ACTIONS(8287), + [aux_sym_print_statement_token1] = ACTIONS(8287), + [anon_sym_PLUS] = ACTIONS(8289), + [anon_sym_DASH] = ACTIONS(8287), + [anon_sym_QMARK] = ACTIONS(8289), + [aux_sym_close_statement_token1] = ACTIONS(8287), + [aux_sym_put_statement_token1] = ACTIONS(8287), + [aux_sym_unlock_statement_token1] = ACTIONS(8287), + [aux_sym_seek_statement_token1] = ACTIONS(8287), + [sym_reset_statement] = ACTIONS(8287), + [aux_sym_raise_event_statement_token1] = ACTIONS(8287), + [sym_stop_statement] = ACTIONS(8287), + [sym_beep_statement] = ACTIONS(8287), + [aux_sym_unload_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token2] = ACTIONS(8287), + [aux_sym_def_type_statement_token3] = ACTIONS(8287), + [aux_sym_def_type_statement_token4] = ACTIONS(8287), + [aux_sym_def_type_statement_token5] = ACTIONS(8287), + [aux_sym_def_type_statement_token6] = ACTIONS(8287), + [aux_sym_def_type_statement_token7] = ACTIONS(8287), + [aux_sym_def_type_statement_token8] = ACTIONS(8287), + [aux_sym_def_type_statement_token9] = ACTIONS(8287), + [aux_sym_def_type_statement_token10] = ACTIONS(8287), + [aux_sym_def_type_statement_token11] = ACTIONS(8287), + [aux_sym_def_type_statement_token12] = ACTIONS(8287), + [aux_sym_def_type_statement_token13] = ACTIONS(8287), + [aux_sym_def_type_statement_token14] = ACTIONS(8287), + [aux_sym_call_statement_token1] = ACTIONS(8287), + [sym__ambiguous_call_statement] = ACTIONS(8287), + [aux_sym_addressof_expression_token1] = ACTIONS(8287), + [aux_sym_type_of_expression_token1] = ACTIONS(8287), + [aux_sym_unary_expression_token1] = ACTIONS(8287), + [sym_string_literal] = ACTIONS(8289), + [sym_number_literal] = ACTIONS(8289), + [aux_sym_boolean_literal_token1] = ACTIONS(8287), + [aux_sym_boolean_literal_token2] = ACTIONS(8287), + [sym_nothing_literal] = ACTIONS(8287), + [sym_null_literal] = ACTIONS(8287), + [sym_empty_literal] = ACTIONS(8287), + [sym_date_literal] = ACTIONS(8289), + [anon_sym_POUND] = ACTIONS(8287), + }, + [STATE(6024)] = { + [sym_identifier] = ACTIONS(8790), + [sym_newline] = ACTIONS(8792), + [anon_sym_COLON] = ACTIONS(8792), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8790), + [aux_sym_frm_property_statement_token1] = ACTIONS(8790), + [anon_sym_DOT] = ACTIONS(8790), + [anon_sym_BANG] = ACTIONS(8792), + [aux_sym__attribute_identifier_token1] = ACTIONS(8790), + [aux_sym_option_statement_token3] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8790), + [aux_sym_preprocessor_const_token1] = ACTIONS(8790), + [sym_static_modifier] = ACTIONS(8790), + [sym__dim_keyword] = ACTIONS(8790), + [sym__redim_keyword] = ACTIONS(8790), + [aux_sym_get_accessor_token1] = ACTIONS(8790), + [aux_sym_set_accessor_token1] = ACTIONS(8790), + [anon_sym_COMMA] = ACTIONS(8792), + [aux_sym_const_declaration_token1] = ACTIONS(8790), + [anon_sym_LPAREN] = ACTIONS(8792), + [aux_sym_as_type_clause_token2] = ACTIONS(8790), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8790), + [aux_sym_visibility_token1] = ACTIONS(8790), + [aux_sym_visibility_token2] = ACTIONS(8790), + [aux_sym_elseif_fragment_token1] = ACTIONS(8790), + [aux_sym_else_fragment_token1] = ACTIONS(8790), + [aux_sym_select_statement_token1] = ACTIONS(8790), + [aux_sym_select_statement_token2] = ACTIONS(8790), + [aux_sym__for_header_token1] = ACTIONS(8790), + [aux_sym_do_statement_token1] = ACTIONS(8790), + [aux_sym_do_condition_token1] = ACTIONS(8790), + [aux_sym_with_statement_token1] = ACTIONS(8790), + [aux_sym_exit_statement_token1] = ACTIONS(8790), + [sym_end_statement] = ACTIONS(8792), + [aux_sym_on_goto_statement_token1] = ACTIONS(8790), + [aux_sym_on_goto_statement_token2] = ACTIONS(8790), + [aux_sym_on_error_statement_token2] = ACTIONS(8790), + [sym__ambiguous_redim_statement] = ACTIONS(8792), + [aux_sym_erase_statement_token1] = ACTIONS(8790), + [aux_sym_open_statement_token1] = ACTIONS(8790), + [aux_sym_file_mode_token2] = ACTIONS(8790), + [aux_sym_file_access_token2] = ACTIONS(8790), + [aux_sym_file_lock_token2] = ACTIONS(8790), + [aux_sym_print_statement_token1] = ACTIONS(8790), + [anon_sym_PLUS] = ACTIONS(8792), + [anon_sym_DASH] = ACTIONS(8790), + [anon_sym_QMARK] = ACTIONS(8792), + [aux_sym_close_statement_token1] = ACTIONS(8790), + [aux_sym_put_statement_token1] = ACTIONS(8790), + [aux_sym_unlock_statement_token1] = ACTIONS(8790), + [aux_sym_seek_statement_token1] = ACTIONS(8790), + [sym_reset_statement] = ACTIONS(8790), + [aux_sym_raise_event_statement_token1] = ACTIONS(8790), + [sym_stop_statement] = ACTIONS(8790), + [sym_beep_statement] = ACTIONS(8790), + [aux_sym_unload_statement_token1] = ACTIONS(8790), + [aux_sym_def_type_statement_token1] = ACTIONS(8790), + [aux_sym_def_type_statement_token2] = ACTIONS(8790), + [aux_sym_def_type_statement_token3] = ACTIONS(8790), + [aux_sym_def_type_statement_token4] = ACTIONS(8790), + [aux_sym_def_type_statement_token5] = ACTIONS(8790), + [aux_sym_def_type_statement_token6] = ACTIONS(8790), + [aux_sym_def_type_statement_token7] = ACTIONS(8790), + [aux_sym_def_type_statement_token8] = ACTIONS(8790), + [aux_sym_def_type_statement_token9] = ACTIONS(8790), + [aux_sym_def_type_statement_token10] = ACTIONS(8790), + [aux_sym_def_type_statement_token11] = ACTIONS(8790), + [aux_sym_def_type_statement_token12] = ACTIONS(8790), + [aux_sym_def_type_statement_token13] = ACTIONS(8790), + [aux_sym_def_type_statement_token14] = ACTIONS(8790), + [aux_sym_call_statement_token1] = ACTIONS(8790), + [sym__ambiguous_call_statement] = ACTIONS(8790), + [aux_sym_addressof_expression_token1] = ACTIONS(8790), + [aux_sym_type_of_expression_token1] = ACTIONS(8790), + [aux_sym_unary_expression_token1] = ACTIONS(8790), + [sym_string_literal] = ACTIONS(8792), + [sym_number_literal] = ACTIONS(8792), + [aux_sym_boolean_literal_token1] = ACTIONS(8790), + [aux_sym_boolean_literal_token2] = ACTIONS(8790), + [sym_nothing_literal] = ACTIONS(8790), + [sym_null_literal] = ACTIONS(8790), + [sym_empty_literal] = ACTIONS(8790), + [sym_date_literal] = ACTIONS(8792), + [anon_sym_POUND] = ACTIONS(8790), + }, + [STATE(6025)] = { + [aux_sym_erase_statement_repeat1] = STATE(6178), + [sym_identifier] = ACTIONS(8397), + [sym_newline] = ACTIONS(8399), + [anon_sym_COLON] = ACTIONS(8399), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8397), + [aux_sym_frm_property_statement_token1] = ACTIONS(8397), + [anon_sym_DOT] = ACTIONS(8397), + [anon_sym_BANG] = ACTIONS(8399), + [aux_sym__attribute_identifier_token1] = ACTIONS(8397), + [aux_sym_option_statement_token3] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8397), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8397), + [aux_sym_preprocessor_const_token1] = ACTIONS(8397), + [sym_static_modifier] = ACTIONS(8397), + [sym__dim_keyword] = ACTIONS(8397), + [sym__redim_keyword] = ACTIONS(8397), + [aux_sym_get_accessor_token1] = ACTIONS(8397), + [aux_sym_set_accessor_token1] = ACTIONS(8397), + [anon_sym_COMMA] = ACTIONS(10933), + [aux_sym_const_declaration_token1] = ACTIONS(8397), + [anon_sym_LPAREN] = ACTIONS(8399), + [aux_sym_as_type_clause_token2] = ACTIONS(8397), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8397), + [aux_sym_visibility_token1] = ACTIONS(8397), + [aux_sym_visibility_token2] = ACTIONS(8397), + [aux_sym_elseif_fragment_token1] = ACTIONS(8397), + [aux_sym_else_fragment_token1] = ACTIONS(8397), + [aux_sym_select_statement_token1] = ACTIONS(8397), + [aux_sym__for_header_token1] = ACTIONS(8397), + [aux_sym_do_statement_token1] = ACTIONS(8397), + [aux_sym_do_condition_token1] = ACTIONS(8397), + [aux_sym_with_statement_token1] = ACTIONS(8397), + [aux_sym_exit_statement_token1] = ACTIONS(8397), + [sym_end_statement] = ACTIONS(8399), + [aux_sym_on_goto_statement_token1] = ACTIONS(8397), + [aux_sym_on_goto_statement_token2] = ACTIONS(8397), + [aux_sym_on_error_statement_token2] = ACTIONS(8397), + [sym__ambiguous_redim_statement] = ACTIONS(8399), + [aux_sym_erase_statement_token1] = ACTIONS(8397), + [aux_sym_open_statement_token1] = ACTIONS(8397), + [aux_sym_file_mode_token2] = ACTIONS(8397), + [aux_sym_file_access_token2] = ACTIONS(8397), + [aux_sym_file_lock_token2] = ACTIONS(8397), + [aux_sym_print_statement_token1] = ACTIONS(8397), + [anon_sym_PLUS] = ACTIONS(8399), + [anon_sym_DASH] = ACTIONS(8397), + [anon_sym_QMARK] = ACTIONS(8399), + [aux_sym_close_statement_token1] = ACTIONS(8397), + [aux_sym_put_statement_token1] = ACTIONS(8397), + [aux_sym_unlock_statement_token1] = ACTIONS(8397), + [aux_sym_seek_statement_token1] = ACTIONS(8397), + [sym_reset_statement] = ACTIONS(8397), + [aux_sym_raise_event_statement_token1] = ACTIONS(8397), + [sym_stop_statement] = ACTIONS(8397), + [sym_beep_statement] = ACTIONS(8397), + [aux_sym_unload_statement_token1] = ACTIONS(8397), + [aux_sym_def_type_statement_token1] = ACTIONS(8397), + [aux_sym_def_type_statement_token2] = ACTIONS(8397), + [aux_sym_def_type_statement_token3] = ACTIONS(8397), + [aux_sym_def_type_statement_token4] = ACTIONS(8397), + [aux_sym_def_type_statement_token5] = ACTIONS(8397), + [aux_sym_def_type_statement_token6] = ACTIONS(8397), + [aux_sym_def_type_statement_token7] = ACTIONS(8397), + [aux_sym_def_type_statement_token8] = ACTIONS(8397), + [aux_sym_def_type_statement_token9] = ACTIONS(8397), + [aux_sym_def_type_statement_token10] = ACTIONS(8397), + [aux_sym_def_type_statement_token11] = ACTIONS(8397), + [aux_sym_def_type_statement_token12] = ACTIONS(8397), + [aux_sym_def_type_statement_token13] = ACTIONS(8397), + [aux_sym_def_type_statement_token14] = ACTIONS(8397), + [aux_sym_call_statement_token1] = ACTIONS(8397), + [sym__ambiguous_call_statement] = ACTIONS(8397), + [aux_sym_addressof_expression_token1] = ACTIONS(8397), + [aux_sym_type_of_expression_token1] = ACTIONS(8397), + [aux_sym_unary_expression_token1] = ACTIONS(8397), + [sym_string_literal] = ACTIONS(8399), + [sym_number_literal] = ACTIONS(8399), + [aux_sym_boolean_literal_token1] = ACTIONS(8397), + [aux_sym_boolean_literal_token2] = ACTIONS(8397), + [sym_nothing_literal] = ACTIONS(8397), + [sym_null_literal] = ACTIONS(8397), + [sym_empty_literal] = ACTIONS(8397), + [sym_date_literal] = ACTIONS(8399), + [anon_sym_POUND] = ACTIONS(8397), + }, + [STATE(6026)] = { + [sym_identifier] = ACTIONS(8672), + [sym_newline] = ACTIONS(8674), + [anon_sym_COLON] = ACTIONS(8674), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8672), + [aux_sym_frm_property_statement_token1] = ACTIONS(8672), + [anon_sym_DOT] = ACTIONS(8672), + [anon_sym_BANG] = ACTIONS(8674), + [aux_sym__attribute_identifier_token1] = ACTIONS(8672), + [aux_sym_option_statement_token3] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8672), + [aux_sym_preprocessor_const_token1] = ACTIONS(8672), + [sym_static_modifier] = ACTIONS(8672), + [sym__dim_keyword] = ACTIONS(8672), + [sym__redim_keyword] = ACTIONS(8672), + [aux_sym_get_accessor_token1] = ACTIONS(8672), + [aux_sym_set_accessor_token1] = ACTIONS(8672), + [anon_sym_COMMA] = ACTIONS(8674), + [aux_sym_const_declaration_token1] = ACTIONS(8672), + [anon_sym_LPAREN] = ACTIONS(8674), + [aux_sym_as_type_clause_token2] = ACTIONS(8672), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8672), + [aux_sym_visibility_token1] = ACTIONS(8672), + [aux_sym_visibility_token2] = ACTIONS(8672), + [aux_sym_elseif_fragment_token1] = ACTIONS(8672), + [aux_sym_else_fragment_token1] = ACTIONS(8672), + [aux_sym_select_statement_token1] = ACTIONS(8672), + [aux_sym__for_header_token1] = ACTIONS(8672), + [aux_sym_do_statement_token1] = ACTIONS(8672), + [aux_sym_do_condition_token1] = ACTIONS(8672), + [aux_sym_while_statement_token1] = ACTIONS(8672), + [aux_sym_with_statement_token1] = ACTIONS(8672), + [aux_sym_exit_statement_token1] = ACTIONS(8672), + [sym_end_statement] = ACTIONS(8674), + [aux_sym_on_goto_statement_token1] = ACTIONS(8672), + [aux_sym_on_goto_statement_token2] = ACTIONS(8672), + [aux_sym_on_error_statement_token2] = ACTIONS(8672), + [sym__ambiguous_redim_statement] = ACTIONS(8674), + [aux_sym_erase_statement_token1] = ACTIONS(8672), + [aux_sym_open_statement_token1] = ACTIONS(8672), + [aux_sym_file_mode_token2] = ACTIONS(8672), + [aux_sym_file_access_token2] = ACTIONS(8672), + [aux_sym_file_lock_token2] = ACTIONS(8672), + [aux_sym_print_statement_token1] = ACTIONS(8672), + [anon_sym_PLUS] = ACTIONS(8674), + [anon_sym_DASH] = ACTIONS(8672), + [anon_sym_QMARK] = ACTIONS(8674), + [aux_sym_close_statement_token1] = ACTIONS(8672), + [aux_sym_put_statement_token1] = ACTIONS(8672), + [aux_sym_unlock_statement_token1] = ACTIONS(8672), + [aux_sym_seek_statement_token1] = ACTIONS(8672), + [sym_reset_statement] = ACTIONS(8672), + [aux_sym_raise_event_statement_token1] = ACTIONS(8672), + [sym_stop_statement] = ACTIONS(8672), + [sym_beep_statement] = ACTIONS(8672), + [aux_sym_unload_statement_token1] = ACTIONS(8672), + [aux_sym_def_type_statement_token1] = ACTIONS(8672), + [aux_sym_def_type_statement_token2] = ACTIONS(8672), + [aux_sym_def_type_statement_token3] = ACTIONS(8672), + [aux_sym_def_type_statement_token4] = ACTIONS(8672), + [aux_sym_def_type_statement_token5] = ACTIONS(8672), + [aux_sym_def_type_statement_token6] = ACTIONS(8672), + [aux_sym_def_type_statement_token7] = ACTIONS(8672), + [aux_sym_def_type_statement_token8] = ACTIONS(8672), + [aux_sym_def_type_statement_token9] = ACTIONS(8672), + [aux_sym_def_type_statement_token10] = ACTIONS(8672), + [aux_sym_def_type_statement_token11] = ACTIONS(8672), + [aux_sym_def_type_statement_token12] = ACTIONS(8672), + [aux_sym_def_type_statement_token13] = ACTIONS(8672), + [aux_sym_def_type_statement_token14] = ACTIONS(8672), + [aux_sym_call_statement_token1] = ACTIONS(8672), + [sym__ambiguous_call_statement] = ACTIONS(8672), + [aux_sym_addressof_expression_token1] = ACTIONS(8672), + [aux_sym_type_of_expression_token1] = ACTIONS(8672), + [aux_sym_unary_expression_token1] = ACTIONS(8672), + [sym_string_literal] = ACTIONS(8674), + [sym_number_literal] = ACTIONS(8674), + [aux_sym_boolean_literal_token1] = ACTIONS(8672), + [aux_sym_boolean_literal_token2] = ACTIONS(8672), + [sym_nothing_literal] = ACTIONS(8672), + [sym_null_literal] = ACTIONS(8672), + [sym_empty_literal] = ACTIONS(8672), + [sym_date_literal] = ACTIONS(8674), + [anon_sym_POUND] = ACTIONS(8672), + }, + [STATE(6027)] = { + [sym_identifier] = ACTIONS(8350), + [sym_newline] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8350), + [aux_sym_frm_property_statement_token1] = ACTIONS(8350), + [anon_sym_DOT] = ACTIONS(8350), + [anon_sym_BANG] = ACTIONS(8352), + [aux_sym__attribute_identifier_token1] = ACTIONS(8350), + [aux_sym_option_statement_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8350), + [aux_sym_preprocessor_const_token1] = ACTIONS(8350), + [sym_static_modifier] = ACTIONS(8350), + [sym__dim_keyword] = ACTIONS(8350), + [sym__redim_keyword] = ACTIONS(8350), + [aux_sym_get_accessor_token1] = ACTIONS(8350), + [aux_sym_set_accessor_token1] = ACTIONS(8350), + [anon_sym_COMMA] = ACTIONS(8352), + [aux_sym_const_declaration_token1] = ACTIONS(8350), + [anon_sym_LPAREN] = ACTIONS(8352), + [aux_sym_as_type_clause_token2] = ACTIONS(8350), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8350), + [aux_sym_visibility_token1] = ACTIONS(8350), + [aux_sym_visibility_token2] = ACTIONS(8350), + [aux_sym_elseif_fragment_token1] = ACTIONS(8350), + [aux_sym_else_fragment_token1] = ACTIONS(8350), + [aux_sym_select_statement_token1] = ACTIONS(8350), + [aux_sym__for_header_token1] = ACTIONS(8350), + [aux_sym_do_statement_token1] = ACTIONS(8350), + [aux_sym_do_condition_token1] = ACTIONS(8350), + [aux_sym_while_statement_token1] = ACTIONS(8350), + [aux_sym_with_statement_token1] = ACTIONS(8350), + [aux_sym_exit_statement_token1] = ACTIONS(8350), + [sym_end_statement] = ACTIONS(8352), + [aux_sym_on_goto_statement_token1] = ACTIONS(8350), + [aux_sym_on_goto_statement_token2] = ACTIONS(8350), + [aux_sym_on_error_statement_token2] = ACTIONS(8350), + [sym__ambiguous_redim_statement] = ACTIONS(8352), + [aux_sym_erase_statement_token1] = ACTIONS(8350), + [aux_sym_open_statement_token1] = ACTIONS(8350), + [aux_sym_file_mode_token2] = ACTIONS(8350), + [aux_sym_file_access_token2] = ACTIONS(8350), + [aux_sym_file_lock_token2] = ACTIONS(8350), + [aux_sym_print_statement_token1] = ACTIONS(8350), + [anon_sym_PLUS] = ACTIONS(8352), + [anon_sym_DASH] = ACTIONS(8350), + [anon_sym_QMARK] = ACTIONS(8352), + [aux_sym_close_statement_token1] = ACTIONS(8350), + [aux_sym_put_statement_token1] = ACTIONS(8350), + [aux_sym_unlock_statement_token1] = ACTIONS(8350), + [aux_sym_seek_statement_token1] = ACTIONS(8350), + [sym_reset_statement] = ACTIONS(8350), + [aux_sym_raise_event_statement_token1] = ACTIONS(8350), + [sym_stop_statement] = ACTIONS(8350), + [sym_beep_statement] = ACTIONS(8350), + [aux_sym_unload_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token2] = ACTIONS(8350), + [aux_sym_def_type_statement_token3] = ACTIONS(8350), + [aux_sym_def_type_statement_token4] = ACTIONS(8350), + [aux_sym_def_type_statement_token5] = ACTIONS(8350), + [aux_sym_def_type_statement_token6] = ACTIONS(8350), + [aux_sym_def_type_statement_token7] = ACTIONS(8350), + [aux_sym_def_type_statement_token8] = ACTIONS(8350), + [aux_sym_def_type_statement_token9] = ACTIONS(8350), + [aux_sym_def_type_statement_token10] = ACTIONS(8350), + [aux_sym_def_type_statement_token11] = ACTIONS(8350), + [aux_sym_def_type_statement_token12] = ACTIONS(8350), + [aux_sym_def_type_statement_token13] = ACTIONS(8350), + [aux_sym_def_type_statement_token14] = ACTIONS(8350), + [aux_sym_call_statement_token1] = ACTIONS(8350), + [sym__ambiguous_call_statement] = ACTIONS(8350), + [aux_sym_addressof_expression_token1] = ACTIONS(8350), + [aux_sym_type_of_expression_token1] = ACTIONS(8350), + [aux_sym_unary_expression_token1] = ACTIONS(8350), + [sym_string_literal] = ACTIONS(8352), + [sym_number_literal] = ACTIONS(8352), + [aux_sym_boolean_literal_token1] = ACTIONS(8350), + [aux_sym_boolean_literal_token2] = ACTIONS(8350), + [sym_nothing_literal] = ACTIONS(8350), + [sym_null_literal] = ACTIONS(8350), + [sym_empty_literal] = ACTIONS(8350), + [sym_date_literal] = ACTIONS(8352), + [anon_sym_POUND] = ACTIONS(8350), + }, + [STATE(6028)] = { + [aux_sym_const_declaration_repeat1] = STATE(6267), + [sym_identifier] = ACTIONS(8614), + [sym_newline] = ACTIONS(8616), + [anon_sym_COLON] = ACTIONS(8616), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8614), + [aux_sym_frm_property_statement_token1] = ACTIONS(8614), + [anon_sym_DOT] = ACTIONS(8614), + [anon_sym_BANG] = ACTIONS(8616), + [aux_sym__attribute_identifier_token1] = ACTIONS(8614), + [aux_sym_option_statement_token3] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8614), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8614), + [aux_sym_preprocessor_const_token1] = ACTIONS(8614), + [sym_static_modifier] = ACTIONS(8614), + [sym__dim_keyword] = ACTIONS(8614), + [sym__redim_keyword] = ACTIONS(8614), + [aux_sym_get_accessor_token1] = ACTIONS(8614), + [aux_sym_set_accessor_token1] = ACTIONS(8614), + [anon_sym_COMMA] = ACTIONS(10891), + [aux_sym_const_declaration_token1] = ACTIONS(8614), + [anon_sym_LPAREN] = ACTIONS(8616), + [aux_sym_as_type_clause_token2] = ACTIONS(8614), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8614), + [aux_sym_visibility_token1] = ACTIONS(8614), + [aux_sym_visibility_token2] = ACTIONS(8614), + [aux_sym_elseif_fragment_token1] = ACTIONS(8614), + [aux_sym_else_fragment_token1] = ACTIONS(8614), + [aux_sym_select_statement_token1] = ACTIONS(8614), + [aux_sym__for_header_token1] = ACTIONS(8614), + [aux_sym_do_statement_token1] = ACTIONS(8614), + [aux_sym_do_condition_token1] = ACTIONS(8614), + [aux_sym_with_statement_token1] = ACTIONS(8614), + [aux_sym_exit_statement_token1] = ACTIONS(8614), + [sym_end_statement] = ACTIONS(8616), + [aux_sym_on_goto_statement_token1] = ACTIONS(8614), + [aux_sym_on_goto_statement_token2] = ACTIONS(8614), + [aux_sym_on_error_statement_token2] = ACTIONS(8614), + [sym__ambiguous_redim_statement] = ACTIONS(8616), + [aux_sym_erase_statement_token1] = ACTIONS(8614), + [aux_sym_open_statement_token1] = ACTIONS(8614), + [aux_sym_file_mode_token2] = ACTIONS(8614), + [aux_sym_file_access_token2] = ACTIONS(8614), + [aux_sym_file_lock_token2] = ACTIONS(8614), + [aux_sym_print_statement_token1] = ACTIONS(8614), + [anon_sym_PLUS] = ACTIONS(8616), + [anon_sym_DASH] = ACTIONS(8614), + [anon_sym_QMARK] = ACTIONS(8616), + [aux_sym_close_statement_token1] = ACTIONS(8614), + [aux_sym_put_statement_token1] = ACTIONS(8614), + [aux_sym_unlock_statement_token1] = ACTIONS(8614), + [aux_sym_seek_statement_token1] = ACTIONS(8614), + [sym_reset_statement] = ACTIONS(8614), + [aux_sym_raise_event_statement_token1] = ACTIONS(8614), + [sym_stop_statement] = ACTIONS(8614), + [sym_beep_statement] = ACTIONS(8614), + [aux_sym_unload_statement_token1] = ACTIONS(8614), + [aux_sym_def_type_statement_token1] = ACTIONS(8614), + [aux_sym_def_type_statement_token2] = ACTIONS(8614), + [aux_sym_def_type_statement_token3] = ACTIONS(8614), + [aux_sym_def_type_statement_token4] = ACTIONS(8614), + [aux_sym_def_type_statement_token5] = ACTIONS(8614), + [aux_sym_def_type_statement_token6] = ACTIONS(8614), + [aux_sym_def_type_statement_token7] = ACTIONS(8614), + [aux_sym_def_type_statement_token8] = ACTIONS(8614), + [aux_sym_def_type_statement_token9] = ACTIONS(8614), + [aux_sym_def_type_statement_token10] = ACTIONS(8614), + [aux_sym_def_type_statement_token11] = ACTIONS(8614), + [aux_sym_def_type_statement_token12] = ACTIONS(8614), + [aux_sym_def_type_statement_token13] = ACTIONS(8614), + [aux_sym_def_type_statement_token14] = ACTIONS(8614), + [aux_sym_call_statement_token1] = ACTIONS(8614), + [sym__ambiguous_call_statement] = ACTIONS(8614), + [aux_sym_addressof_expression_token1] = ACTIONS(8614), + [aux_sym_type_of_expression_token1] = ACTIONS(8614), + [aux_sym_unary_expression_token1] = ACTIONS(8614), + [sym_string_literal] = ACTIONS(8616), + [sym_number_literal] = ACTIONS(8616), + [aux_sym_boolean_literal_token1] = ACTIONS(8614), + [aux_sym_boolean_literal_token2] = ACTIONS(8614), + [sym_nothing_literal] = ACTIONS(8614), + [sym_null_literal] = ACTIONS(8614), + [sym_empty_literal] = ACTIONS(8614), + [sym_date_literal] = ACTIONS(8616), + [anon_sym_POUND] = ACTIONS(8614), + }, + [STATE(6029)] = { + [sym_identifier] = ACTIONS(8196), + [sym_newline] = ACTIONS(8198), + [anon_sym_COLON] = ACTIONS(8198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8196), + [aux_sym_frm_property_statement_token1] = ACTIONS(8196), + [anon_sym_DOT] = ACTIONS(8196), + [anon_sym_BANG] = ACTIONS(8198), + [aux_sym__attribute_identifier_token1] = ACTIONS(8196), + [aux_sym_option_statement_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8196), + [aux_sym_preprocessor_const_token1] = ACTIONS(8196), + [sym_static_modifier] = ACTIONS(8196), + [sym__dim_keyword] = ACTIONS(8196), + [sym__redim_keyword] = ACTIONS(8196), + [aux_sym_get_accessor_token1] = ACTIONS(8196), + [aux_sym_set_accessor_token1] = ACTIONS(8196), + [anon_sym_COMMA] = ACTIONS(8198), + [aux_sym_const_declaration_token1] = ACTIONS(8196), + [anon_sym_LPAREN] = ACTIONS(8198), + [aux_sym_as_type_clause_token2] = ACTIONS(8196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8196), + [aux_sym_visibility_token1] = ACTIONS(8196), + [aux_sym_visibility_token2] = ACTIONS(8196), + [aux_sym_elseif_fragment_token1] = ACTIONS(8196), + [aux_sym_else_fragment_token1] = ACTIONS(8196), + [aux_sym_select_statement_token1] = ACTIONS(8196), + [aux_sym__for_header_token1] = ACTIONS(8196), + [aux_sym_do_statement_token1] = ACTIONS(8196), + [aux_sym_do_statement_token2] = ACTIONS(8196), + [aux_sym_do_condition_token1] = ACTIONS(8196), + [aux_sym_with_statement_token1] = ACTIONS(8196), + [aux_sym_exit_statement_token1] = ACTIONS(8196), + [sym_end_statement] = ACTIONS(8198), + [aux_sym_on_goto_statement_token1] = ACTIONS(8196), + [aux_sym_on_goto_statement_token2] = ACTIONS(8196), + [aux_sym_on_error_statement_token2] = ACTIONS(8196), + [sym__ambiguous_redim_statement] = ACTIONS(8198), + [aux_sym_erase_statement_token1] = ACTIONS(8196), + [aux_sym_open_statement_token1] = ACTIONS(8196), + [aux_sym_file_mode_token2] = ACTIONS(8196), + [aux_sym_file_access_token2] = ACTIONS(8196), + [aux_sym_file_lock_token2] = ACTIONS(8196), + [aux_sym_print_statement_token1] = ACTIONS(8196), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(8196), + [anon_sym_QMARK] = ACTIONS(8198), + [aux_sym_close_statement_token1] = ACTIONS(8196), + [aux_sym_put_statement_token1] = ACTIONS(8196), + [aux_sym_unlock_statement_token1] = ACTIONS(8196), + [aux_sym_seek_statement_token1] = ACTIONS(8196), + [sym_reset_statement] = ACTIONS(8196), + [aux_sym_raise_event_statement_token1] = ACTIONS(8196), + [sym_stop_statement] = ACTIONS(8196), + [sym_beep_statement] = ACTIONS(8196), + [aux_sym_unload_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token2] = ACTIONS(8196), + [aux_sym_def_type_statement_token3] = ACTIONS(8196), + [aux_sym_def_type_statement_token4] = ACTIONS(8196), + [aux_sym_def_type_statement_token5] = ACTIONS(8196), + [aux_sym_def_type_statement_token6] = ACTIONS(8196), + [aux_sym_def_type_statement_token7] = ACTIONS(8196), + [aux_sym_def_type_statement_token8] = ACTIONS(8196), + [aux_sym_def_type_statement_token9] = ACTIONS(8196), + [aux_sym_def_type_statement_token10] = ACTIONS(8196), + [aux_sym_def_type_statement_token11] = ACTIONS(8196), + [aux_sym_def_type_statement_token12] = ACTIONS(8196), + [aux_sym_def_type_statement_token13] = ACTIONS(8196), + [aux_sym_def_type_statement_token14] = ACTIONS(8196), + [aux_sym_call_statement_token1] = ACTIONS(8196), + [sym__ambiguous_call_statement] = ACTIONS(8196), + [aux_sym_addressof_expression_token1] = ACTIONS(8196), + [aux_sym_type_of_expression_token1] = ACTIONS(8196), + [aux_sym_unary_expression_token1] = ACTIONS(8196), + [sym_string_literal] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8198), + [aux_sym_boolean_literal_token1] = ACTIONS(8196), + [aux_sym_boolean_literal_token2] = ACTIONS(8196), + [sym_nothing_literal] = ACTIONS(8196), + [sym_null_literal] = ACTIONS(8196), + [sym_empty_literal] = ACTIONS(8196), + [sym_date_literal] = ACTIONS(8198), + [anon_sym_POUND] = ACTIONS(8196), + }, + [STATE(6030)] = { + [aux_sym_variable_declaration_repeat1] = STATE(6210), + [sym_identifier] = ACTIONS(8332), + [sym_newline] = ACTIONS(8334), + [anon_sym_COLON] = ACTIONS(8334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8332), + [aux_sym_frm_property_statement_token1] = ACTIONS(8332), + [anon_sym_DOT] = ACTIONS(8332), + [anon_sym_BANG] = ACTIONS(8334), + [aux_sym__attribute_identifier_token1] = ACTIONS(8332), + [aux_sym_option_statement_token3] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8332), + [aux_sym_preprocessor_const_token1] = ACTIONS(8332), + [sym_static_modifier] = ACTIONS(8332), + [sym__dim_keyword] = ACTIONS(8332), + [sym__redim_keyword] = ACTIONS(8332), + [aux_sym_get_accessor_token1] = ACTIONS(8332), + [aux_sym_set_accessor_token1] = ACTIONS(8332), + [anon_sym_COMMA] = ACTIONS(10844), + [aux_sym_const_declaration_token1] = ACTIONS(8332), + [anon_sym_LPAREN] = ACTIONS(8334), + [aux_sym_as_type_clause_token2] = ACTIONS(8332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8332), + [aux_sym_visibility_token1] = ACTIONS(8332), + [aux_sym_visibility_token2] = ACTIONS(8332), + [aux_sym_elseif_fragment_token1] = ACTIONS(8332), + [aux_sym_else_fragment_token1] = ACTIONS(8332), + [aux_sym_select_statement_token1] = ACTIONS(8332), + [aux_sym__for_header_token1] = ACTIONS(8332), + [aux_sym_do_statement_token1] = ACTIONS(8332), + [aux_sym_do_condition_token1] = ACTIONS(8332), + [aux_sym_with_statement_token1] = ACTIONS(8332), + [aux_sym_exit_statement_token1] = ACTIONS(8332), + [sym_end_statement] = ACTIONS(8334), + [aux_sym_on_goto_statement_token1] = ACTIONS(8332), + [aux_sym_on_goto_statement_token2] = ACTIONS(8332), + [aux_sym_on_error_statement_token2] = ACTIONS(8332), + [sym__ambiguous_redim_statement] = ACTIONS(8334), + [aux_sym_erase_statement_token1] = ACTIONS(8332), + [aux_sym_open_statement_token1] = ACTIONS(8332), + [aux_sym_file_mode_token2] = ACTIONS(8332), + [aux_sym_file_access_token2] = ACTIONS(8332), + [aux_sym_file_lock_token2] = ACTIONS(8332), + [aux_sym_print_statement_token1] = ACTIONS(8332), + [anon_sym_PLUS] = ACTIONS(8334), + [anon_sym_DASH] = ACTIONS(8332), + [anon_sym_QMARK] = ACTIONS(8334), + [aux_sym_close_statement_token1] = ACTIONS(8332), + [aux_sym_put_statement_token1] = ACTIONS(8332), + [aux_sym_unlock_statement_token1] = ACTIONS(8332), + [aux_sym_seek_statement_token1] = ACTIONS(8332), + [sym_reset_statement] = ACTIONS(8332), + [aux_sym_raise_event_statement_token1] = ACTIONS(8332), + [sym_stop_statement] = ACTIONS(8332), + [sym_beep_statement] = ACTIONS(8332), + [aux_sym_unload_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token1] = ACTIONS(8332), + [aux_sym_def_type_statement_token2] = ACTIONS(8332), + [aux_sym_def_type_statement_token3] = ACTIONS(8332), + [aux_sym_def_type_statement_token4] = ACTIONS(8332), + [aux_sym_def_type_statement_token5] = ACTIONS(8332), + [aux_sym_def_type_statement_token6] = ACTIONS(8332), + [aux_sym_def_type_statement_token7] = ACTIONS(8332), + [aux_sym_def_type_statement_token8] = ACTIONS(8332), + [aux_sym_def_type_statement_token9] = ACTIONS(8332), + [aux_sym_def_type_statement_token10] = ACTIONS(8332), + [aux_sym_def_type_statement_token11] = ACTIONS(8332), + [aux_sym_def_type_statement_token12] = ACTIONS(8332), + [aux_sym_def_type_statement_token13] = ACTIONS(8332), + [aux_sym_def_type_statement_token14] = ACTIONS(8332), + [aux_sym_call_statement_token1] = ACTIONS(8332), + [sym__ambiguous_call_statement] = ACTIONS(8332), + [aux_sym_addressof_expression_token1] = ACTIONS(8332), + [aux_sym_type_of_expression_token1] = ACTIONS(8332), + [aux_sym_unary_expression_token1] = ACTIONS(8332), + [sym_string_literal] = ACTIONS(8334), + [sym_number_literal] = ACTIONS(8334), + [aux_sym_boolean_literal_token1] = ACTIONS(8332), + [aux_sym_boolean_literal_token2] = ACTIONS(8332), + [sym_nothing_literal] = ACTIONS(8332), + [sym_null_literal] = ACTIONS(8332), + [sym_empty_literal] = ACTIONS(8332), + [sym_date_literal] = ACTIONS(8334), + [anon_sym_POUND] = ACTIONS(8332), + }, + [STATE(6031)] = { + [aux_sym_redim_statement_repeat1] = STATE(5913), + [sym_identifier] = ACTIONS(8561), + [sym_newline] = ACTIONS(8563), + [anon_sym_COLON] = ACTIONS(8563), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8561), + [aux_sym_frm_property_statement_token1] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8561), + [anon_sym_BANG] = ACTIONS(8563), + [aux_sym__attribute_identifier_token1] = ACTIONS(8561), + [aux_sym_option_statement_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8561), + [aux_sym_preprocessor_const_token1] = ACTIONS(8561), + [sym_static_modifier] = ACTIONS(8561), + [sym__dim_keyword] = ACTIONS(8561), + [sym__redim_keyword] = ACTIONS(8561), + [aux_sym_get_accessor_token1] = ACTIONS(8561), + [aux_sym_set_accessor_token1] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(10846), + [aux_sym_const_declaration_token1] = ACTIONS(8561), + [anon_sym_LPAREN] = ACTIONS(8563), + [aux_sym_as_type_clause_token2] = ACTIONS(8561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8561), + [aux_sym_visibility_token1] = ACTIONS(8561), + [aux_sym_visibility_token2] = ACTIONS(8561), + [aux_sym_elseif_fragment_token1] = ACTIONS(8561), + [aux_sym_else_fragment_token1] = ACTIONS(8561), + [aux_sym_select_statement_token1] = ACTIONS(8561), + [aux_sym__for_header_token1] = ACTIONS(8561), + [aux_sym_do_statement_token1] = ACTIONS(8561), + [aux_sym_do_condition_token1] = ACTIONS(8561), + [aux_sym_with_statement_token1] = ACTIONS(8561), + [aux_sym_exit_statement_token1] = ACTIONS(8561), + [sym_end_statement] = ACTIONS(8563), + [aux_sym_on_goto_statement_token1] = ACTIONS(8561), + [aux_sym_on_goto_statement_token2] = ACTIONS(8561), + [aux_sym_on_error_statement_token2] = ACTIONS(8561), + [sym__ambiguous_redim_statement] = ACTIONS(8563), + [aux_sym_erase_statement_token1] = ACTIONS(8561), + [aux_sym_open_statement_token1] = ACTIONS(8561), + [aux_sym_file_mode_token2] = ACTIONS(8561), + [aux_sym_file_access_token2] = ACTIONS(8561), + [aux_sym_file_lock_token2] = ACTIONS(8561), + [aux_sym_print_statement_token1] = ACTIONS(8561), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(8561), + [anon_sym_QMARK] = ACTIONS(8563), + [aux_sym_close_statement_token1] = ACTIONS(8561), + [aux_sym_put_statement_token1] = ACTIONS(8561), + [aux_sym_unlock_statement_token1] = ACTIONS(8561), + [aux_sym_seek_statement_token1] = ACTIONS(8561), + [sym_reset_statement] = ACTIONS(8561), + [aux_sym_raise_event_statement_token1] = ACTIONS(8561), + [sym_stop_statement] = ACTIONS(8561), + [sym_beep_statement] = ACTIONS(8561), + [aux_sym_unload_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token2] = ACTIONS(8561), + [aux_sym_def_type_statement_token3] = ACTIONS(8561), + [aux_sym_def_type_statement_token4] = ACTIONS(8561), + [aux_sym_def_type_statement_token5] = ACTIONS(8561), + [aux_sym_def_type_statement_token6] = ACTIONS(8561), + [aux_sym_def_type_statement_token7] = ACTIONS(8561), + [aux_sym_def_type_statement_token8] = ACTIONS(8561), + [aux_sym_def_type_statement_token9] = ACTIONS(8561), + [aux_sym_def_type_statement_token10] = ACTIONS(8561), + [aux_sym_def_type_statement_token11] = ACTIONS(8561), + [aux_sym_def_type_statement_token12] = ACTIONS(8561), + [aux_sym_def_type_statement_token13] = ACTIONS(8561), + [aux_sym_def_type_statement_token14] = ACTIONS(8561), + [aux_sym_call_statement_token1] = ACTIONS(8561), + [sym__ambiguous_call_statement] = ACTIONS(8561), + [aux_sym_addressof_expression_token1] = ACTIONS(8561), + [aux_sym_type_of_expression_token1] = ACTIONS(8561), + [aux_sym_unary_expression_token1] = ACTIONS(8561), + [sym_string_literal] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8563), + [aux_sym_boolean_literal_token1] = ACTIONS(8561), + [aux_sym_boolean_literal_token2] = ACTIONS(8561), + [sym_nothing_literal] = ACTIONS(8561), + [sym_null_literal] = ACTIONS(8561), + [sym_empty_literal] = ACTIONS(8561), + [sym_date_literal] = ACTIONS(8563), + [anon_sym_POUND] = ACTIONS(8561), + }, + [STATE(6032)] = { + [sym_identifier] = ACTIONS(8801), + [sym_newline] = ACTIONS(8803), + [anon_sym_COLON] = ACTIONS(8803), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8801), + [aux_sym_frm_property_statement_token1] = ACTIONS(8801), + [anon_sym_DOT] = ACTIONS(8801), + [anon_sym_BANG] = ACTIONS(8803), + [aux_sym__attribute_identifier_token1] = ACTIONS(8801), + [aux_sym_option_statement_token3] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8801), + [aux_sym_preprocessor_const_token1] = ACTIONS(8801), + [sym_static_modifier] = ACTIONS(8801), + [sym__dim_keyword] = ACTIONS(8801), + [sym__redim_keyword] = ACTIONS(8801), + [aux_sym_get_accessor_token1] = ACTIONS(8801), + [aux_sym_set_accessor_token1] = ACTIONS(8801), + [anon_sym_COMMA] = ACTIONS(8803), + [aux_sym_const_declaration_token1] = ACTIONS(8801), + [anon_sym_LPAREN] = ACTIONS(8803), + [aux_sym_as_type_clause_token2] = ACTIONS(8801), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8801), + [aux_sym_visibility_token1] = ACTIONS(8801), + [aux_sym_visibility_token2] = ACTIONS(8801), + [aux_sym_elseif_fragment_token1] = ACTIONS(8801), + [aux_sym_else_fragment_token1] = ACTIONS(8801), + [aux_sym_select_statement_token1] = ACTIONS(8801), + [aux_sym__for_header_token1] = ACTIONS(8801), + [aux_sym_do_statement_token1] = ACTIONS(8801), + [aux_sym_do_condition_token1] = ACTIONS(8801), + [aux_sym_with_statement_token1] = ACTIONS(8801), + [aux_sym_exit_statement_token1] = ACTIONS(8801), + [sym_end_statement] = ACTIONS(8803), + [aux_sym_on_goto_statement_token1] = ACTIONS(8801), + [aux_sym_on_goto_statement_token2] = ACTIONS(8801), + [aux_sym_on_error_statement_token2] = ACTIONS(8801), + [sym__ambiguous_redim_statement] = ACTIONS(8803), + [aux_sym_erase_statement_token1] = ACTIONS(8801), + [aux_sym_open_statement_token1] = ACTIONS(8801), + [aux_sym_file_mode_token2] = ACTIONS(8801), + [aux_sym_file_access_token2] = ACTIONS(8801), + [aux_sym_file_lock_token2] = ACTIONS(8801), + [aux_sym_print_statement_token1] = ACTIONS(8801), + [anon_sym_PLUS] = ACTIONS(8803), + [anon_sym_DASH] = ACTIONS(8801), + [anon_sym_QMARK] = ACTIONS(8803), + [aux_sym_close_statement_token1] = ACTIONS(8801), + [aux_sym_put_statement_token1] = ACTIONS(8801), + [aux_sym_unlock_statement_token1] = ACTIONS(8801), + [aux_sym_seek_statement_token1] = ACTIONS(8801), + [sym_reset_statement] = ACTIONS(8801), + [aux_sym_raise_event_statement_token1] = ACTIONS(8801), + [sym_stop_statement] = ACTIONS(8801), + [sym_beep_statement] = ACTIONS(8801), + [aux_sym_unload_statement_token1] = ACTIONS(8801), + [aux_sym_def_type_statement_token1] = ACTIONS(8801), + [aux_sym_def_type_statement_token2] = ACTIONS(8801), + [aux_sym_def_type_statement_token3] = ACTIONS(8801), + [aux_sym_def_type_statement_token4] = ACTIONS(8801), + [aux_sym_def_type_statement_token5] = ACTIONS(8801), + [aux_sym_def_type_statement_token6] = ACTIONS(8801), + [aux_sym_def_type_statement_token7] = ACTIONS(8801), + [aux_sym_def_type_statement_token8] = ACTIONS(8801), + [aux_sym_def_type_statement_token9] = ACTIONS(8801), + [aux_sym_def_type_statement_token10] = ACTIONS(8801), + [aux_sym_def_type_statement_token11] = ACTIONS(8801), + [aux_sym_def_type_statement_token12] = ACTIONS(8801), + [aux_sym_def_type_statement_token13] = ACTIONS(8801), + [aux_sym_def_type_statement_token14] = ACTIONS(8801), + [aux_sym_call_statement_token1] = ACTIONS(8801), + [sym__ambiguous_call_statement] = ACTIONS(8801), + [aux_sym_addressof_expression_token1] = ACTIONS(8801), + [aux_sym_type_of_expression_token1] = ACTIONS(8801), + [aux_sym_unary_expression_token1] = ACTIONS(8801), + [sym_string_literal] = ACTIONS(8803), + [sym_number_literal] = ACTIONS(8803), + [aux_sym_boolean_literal_token1] = ACTIONS(8801), + [aux_sym_boolean_literal_token2] = ACTIONS(8801), + [sym_nothing_literal] = ACTIONS(8801), + [sym_null_literal] = ACTIONS(8801), + [sym_empty_literal] = ACTIONS(8801), + [sym_date_literal] = ACTIONS(8803), + [anon_sym_POUND] = ACTIONS(8801), + }, + [STATE(6033)] = { + [sym_identifier] = ACTIONS(10935), + [sym_newline] = ACTIONS(8819), + [anon_sym_COLON] = ACTIONS(8819), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8821), + [aux_sym_frm_property_statement_token1] = ACTIONS(8821), + [anon_sym_DOT] = ACTIONS(8821), + [anon_sym_BANG] = ACTIONS(8819), + [aux_sym__attribute_identifier_token1] = ACTIONS(8821), + [aux_sym_option_statement_token3] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8821), + [aux_sym_preprocessor_const_token1] = ACTIONS(8821), + [sym_static_modifier] = ACTIONS(8821), + [sym__dim_keyword] = ACTIONS(8821), + [sym__redim_keyword] = ACTIONS(8821), + [aux_sym_get_accessor_token1] = ACTIONS(8821), + [aux_sym_set_accessor_token1] = ACTIONS(8821), + [aux_sym_const_declaration_token1] = ACTIONS(8821), + [anon_sym_LPAREN] = ACTIONS(8819), + [aux_sym_as_type_clause_token2] = ACTIONS(8821), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8821), + [aux_sym_visibility_token1] = ACTIONS(8821), + [aux_sym_visibility_token2] = ACTIONS(8821), + [aux_sym_elseif_fragment_token1] = ACTIONS(8821), + [aux_sym_else_fragment_token1] = ACTIONS(8821), + [aux_sym_select_statement_token1] = ACTIONS(8821), + [aux_sym__multiline_for_tail_token1] = ACTIONS(10937), + [aux_sym__for_header_token1] = ACTIONS(8821), + [aux_sym_do_statement_token1] = ACTIONS(8821), + [aux_sym_do_condition_token1] = ACTIONS(8821), + [aux_sym_while_statement_token1] = ACTIONS(8821), + [aux_sym_with_statement_token1] = ACTIONS(8821), + [aux_sym_exit_statement_token1] = ACTIONS(8821), + [sym_end_statement] = ACTIONS(8819), + [aux_sym_on_goto_statement_token1] = ACTIONS(8821), + [aux_sym_on_goto_statement_token2] = ACTIONS(8821), + [aux_sym_on_error_statement_token2] = ACTIONS(8821), + [sym__ambiguous_redim_statement] = ACTIONS(8819), + [aux_sym_erase_statement_token1] = ACTIONS(8821), + [aux_sym_open_statement_token1] = ACTIONS(8821), + [aux_sym_file_mode_token2] = ACTIONS(8821), + [aux_sym_file_access_token2] = ACTIONS(8821), + [aux_sym_file_lock_token2] = ACTIONS(8821), + [aux_sym_print_statement_token1] = ACTIONS(8821), + [anon_sym_PLUS] = ACTIONS(8819), + [anon_sym_DASH] = ACTIONS(8821), + [anon_sym_QMARK] = ACTIONS(8819), + [aux_sym_close_statement_token1] = ACTIONS(8821), + [aux_sym_put_statement_token1] = ACTIONS(8821), + [aux_sym_unlock_statement_token1] = ACTIONS(8821), + [aux_sym_seek_statement_token1] = ACTIONS(8821), + [sym_reset_statement] = ACTIONS(8821), + [aux_sym_raise_event_statement_token1] = ACTIONS(8821), + [sym_stop_statement] = ACTIONS(8821), + [sym_beep_statement] = ACTIONS(8821), + [aux_sym_unload_statement_token1] = ACTIONS(8821), + [aux_sym_def_type_statement_token1] = ACTIONS(8821), + [aux_sym_def_type_statement_token2] = ACTIONS(8821), + [aux_sym_def_type_statement_token3] = ACTIONS(8821), + [aux_sym_def_type_statement_token4] = ACTIONS(8821), + [aux_sym_def_type_statement_token5] = ACTIONS(8821), + [aux_sym_def_type_statement_token6] = ACTIONS(8821), + [aux_sym_def_type_statement_token7] = ACTIONS(8821), + [aux_sym_def_type_statement_token8] = ACTIONS(8821), + [aux_sym_def_type_statement_token9] = ACTIONS(8821), + [aux_sym_def_type_statement_token10] = ACTIONS(8821), + [aux_sym_def_type_statement_token11] = ACTIONS(8821), + [aux_sym_def_type_statement_token12] = ACTIONS(8821), + [aux_sym_def_type_statement_token13] = ACTIONS(8821), + [aux_sym_def_type_statement_token14] = ACTIONS(8821), + [aux_sym_call_statement_token1] = ACTIONS(8821), + [sym__ambiguous_call_statement] = ACTIONS(8821), + [aux_sym_addressof_expression_token1] = ACTIONS(8821), + [aux_sym_type_of_expression_token1] = ACTIONS(8821), + [aux_sym_unary_expression_token1] = ACTIONS(8821), + [sym_string_literal] = ACTIONS(8819), + [sym_number_literal] = ACTIONS(10939), + [aux_sym_boolean_literal_token1] = ACTIONS(8821), + [aux_sym_boolean_literal_token2] = ACTIONS(8821), + [sym_nothing_literal] = ACTIONS(8821), + [sym_null_literal] = ACTIONS(8821), + [sym_empty_literal] = ACTIONS(8821), + [sym_date_literal] = ACTIONS(8819), + [anon_sym_POUND] = ACTIONS(8821), + }, + [STATE(6034)] = { + [sym_identifier] = ACTIONS(8287), + [sym_newline] = ACTIONS(8289), + [anon_sym_COLON] = ACTIONS(8289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8287), + [aux_sym_frm_property_statement_token1] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8287), + [anon_sym_BANG] = ACTIONS(8289), + [aux_sym__attribute_identifier_token1] = ACTIONS(8287), + [aux_sym_option_statement_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8287), + [aux_sym_preprocessor_const_token1] = ACTIONS(8287), + [sym_static_modifier] = ACTIONS(8287), + [sym__dim_keyword] = ACTIONS(8287), + [sym__redim_keyword] = ACTIONS(8287), + [aux_sym_get_accessor_token1] = ACTIONS(8287), + [aux_sym_set_accessor_token1] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8289), + [aux_sym_const_declaration_token1] = ACTIONS(8287), + [anon_sym_LPAREN] = ACTIONS(8289), + [aux_sym_as_type_clause_token2] = ACTIONS(8287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8287), + [aux_sym_visibility_token1] = ACTIONS(8287), + [aux_sym_visibility_token2] = ACTIONS(8287), + [aux_sym_elseif_fragment_token1] = ACTIONS(8287), + [aux_sym_else_fragment_token1] = ACTIONS(8287), + [aux_sym_select_statement_token1] = ACTIONS(8287), + [aux_sym__for_header_token1] = ACTIONS(8287), + [aux_sym_do_statement_token1] = ACTIONS(8287), + [aux_sym_do_condition_token1] = ACTIONS(8287), + [aux_sym_with_statement_token1] = ACTIONS(8287), + [aux_sym_exit_statement_token1] = ACTIONS(8287), + [sym_end_statement] = ACTIONS(8289), + [aux_sym_on_goto_statement_token1] = ACTIONS(8287), + [aux_sym_on_goto_statement_token2] = ACTIONS(8287), + [aux_sym_on_error_statement_token2] = ACTIONS(8287), + [sym__ambiguous_redim_statement] = ACTIONS(8289), + [aux_sym_erase_statement_token1] = ACTIONS(8287), + [aux_sym_open_statement_token1] = ACTIONS(8287), + [aux_sym_file_mode_token2] = ACTIONS(8287), + [aux_sym_file_access_token2] = ACTIONS(8287), + [aux_sym_file_lock_token2] = ACTIONS(8287), + [aux_sym_print_statement_token1] = ACTIONS(8287), + [anon_sym_PLUS] = ACTIONS(8289), + [anon_sym_DASH] = ACTIONS(8287), + [anon_sym_QMARK] = ACTIONS(8289), + [aux_sym_close_statement_token1] = ACTIONS(8287), + [aux_sym_put_statement_token1] = ACTIONS(8287), + [aux_sym_unlock_statement_token1] = ACTIONS(8287), + [aux_sym_seek_statement_token1] = ACTIONS(8287), + [sym_reset_statement] = ACTIONS(8287), + [aux_sym_raise_event_statement_token1] = ACTIONS(8287), + [sym_stop_statement] = ACTIONS(8287), + [sym_beep_statement] = ACTIONS(8287), + [aux_sym_unload_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token2] = ACTIONS(8287), + [aux_sym_def_type_statement_token3] = ACTIONS(8287), + [aux_sym_def_type_statement_token4] = ACTIONS(8287), + [aux_sym_def_type_statement_token5] = ACTIONS(8287), + [aux_sym_def_type_statement_token6] = ACTIONS(8287), + [aux_sym_def_type_statement_token7] = ACTIONS(8287), + [aux_sym_def_type_statement_token8] = ACTIONS(8287), + [aux_sym_def_type_statement_token9] = ACTIONS(8287), + [aux_sym_def_type_statement_token10] = ACTIONS(8287), + [aux_sym_def_type_statement_token11] = ACTIONS(8287), + [aux_sym_def_type_statement_token12] = ACTIONS(8287), + [aux_sym_def_type_statement_token13] = ACTIONS(8287), + [aux_sym_def_type_statement_token14] = ACTIONS(8287), + [aux_sym_call_statement_token1] = ACTIONS(8287), + [sym__ambiguous_call_statement] = ACTIONS(8287), + [aux_sym_addressof_expression_token1] = ACTIONS(8287), + [aux_sym_type_of_expression_token1] = ACTIONS(8287), + [aux_sym_unary_expression_token1] = ACTIONS(8287), + [sym_string_literal] = ACTIONS(8289), + [sym_number_literal] = ACTIONS(8289), + [aux_sym_boolean_literal_token1] = ACTIONS(8287), + [aux_sym_boolean_literal_token2] = ACTIONS(8287), + [sym_nothing_literal] = ACTIONS(8287), + [sym_null_literal] = ACTIONS(8287), + [sym_empty_literal] = ACTIONS(8287), + [sym_date_literal] = ACTIONS(8289), + [anon_sym_POUND] = ACTIONS(8287), + }, + [STATE(6035)] = { + [sym_identifier] = ACTIONS(8660), + [sym_newline] = ACTIONS(8662), + [anon_sym_COLON] = ACTIONS(8662), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8660), + [aux_sym_frm_property_statement_token1] = ACTIONS(8660), + [anon_sym_DOT] = ACTIONS(8660), + [anon_sym_BANG] = ACTIONS(8662), + [aux_sym__attribute_identifier_token1] = ACTIONS(8660), + [aux_sym_option_statement_token3] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8660), + [aux_sym_preprocessor_const_token1] = ACTIONS(8660), + [sym_static_modifier] = ACTIONS(8660), + [sym__dim_keyword] = ACTIONS(8660), + [sym__redim_keyword] = ACTIONS(8660), + [aux_sym_get_accessor_token1] = ACTIONS(8660), + [aux_sym_set_accessor_token1] = ACTIONS(8660), + [anon_sym_COMMA] = ACTIONS(10941), + [aux_sym_const_declaration_token1] = ACTIONS(8660), + [anon_sym_LPAREN] = ACTIONS(8662), + [aux_sym_as_type_clause_token2] = ACTIONS(8660), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8660), + [aux_sym_visibility_token1] = ACTIONS(8660), + [aux_sym_visibility_token2] = ACTIONS(8660), + [aux_sym_elseif_fragment_token1] = ACTIONS(8660), + [aux_sym_else_fragment_token1] = ACTIONS(8660), + [aux_sym_select_statement_token1] = ACTIONS(8660), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8660), + [aux_sym__for_header_token1] = ACTIONS(8660), + [aux_sym_do_statement_token1] = ACTIONS(8660), + [aux_sym_do_condition_token1] = ACTIONS(8660), + [aux_sym_with_statement_token1] = ACTIONS(8660), + [aux_sym_exit_statement_token1] = ACTIONS(8660), + [sym_end_statement] = ACTIONS(8662), + [aux_sym_on_goto_statement_token1] = ACTIONS(8660), + [aux_sym_on_goto_statement_token2] = ACTIONS(8660), + [aux_sym_on_error_statement_token2] = ACTIONS(8660), + [sym__ambiguous_redim_statement] = ACTIONS(8662), + [aux_sym_erase_statement_token1] = ACTIONS(8660), + [aux_sym_open_statement_token1] = ACTIONS(8660), + [aux_sym_file_mode_token2] = ACTIONS(8660), + [aux_sym_file_access_token2] = ACTIONS(8660), + [aux_sym_file_lock_token2] = ACTIONS(8660), + [aux_sym_print_statement_token1] = ACTIONS(8660), + [anon_sym_PLUS] = ACTIONS(8662), + [anon_sym_DASH] = ACTIONS(8660), + [anon_sym_QMARK] = ACTIONS(8662), + [aux_sym_close_statement_token1] = ACTIONS(8660), + [aux_sym_put_statement_token1] = ACTIONS(8660), + [aux_sym_unlock_statement_token1] = ACTIONS(8660), + [aux_sym_seek_statement_token1] = ACTIONS(8660), + [sym_reset_statement] = ACTIONS(8660), + [aux_sym_raise_event_statement_token1] = ACTIONS(8660), + [sym_stop_statement] = ACTIONS(8660), + [sym_beep_statement] = ACTIONS(8660), + [aux_sym_unload_statement_token1] = ACTIONS(8660), + [aux_sym_def_type_statement_token1] = ACTIONS(8660), + [aux_sym_def_type_statement_token2] = ACTIONS(8660), + [aux_sym_def_type_statement_token3] = ACTIONS(8660), + [aux_sym_def_type_statement_token4] = ACTIONS(8660), + [aux_sym_def_type_statement_token5] = ACTIONS(8660), + [aux_sym_def_type_statement_token6] = ACTIONS(8660), + [aux_sym_def_type_statement_token7] = ACTIONS(8660), + [aux_sym_def_type_statement_token8] = ACTIONS(8660), + [aux_sym_def_type_statement_token9] = ACTIONS(8660), + [aux_sym_def_type_statement_token10] = ACTIONS(8660), + [aux_sym_def_type_statement_token11] = ACTIONS(8660), + [aux_sym_def_type_statement_token12] = ACTIONS(8660), + [aux_sym_def_type_statement_token13] = ACTIONS(8660), + [aux_sym_def_type_statement_token14] = ACTIONS(8660), + [aux_sym_call_statement_token1] = ACTIONS(8660), + [sym__ambiguous_call_statement] = ACTIONS(8660), + [aux_sym_addressof_expression_token1] = ACTIONS(8660), + [aux_sym_type_of_expression_token1] = ACTIONS(8660), + [aux_sym_unary_expression_token1] = ACTIONS(8660), + [sym_string_literal] = ACTIONS(8662), + [sym_number_literal] = ACTIONS(8662), + [aux_sym_boolean_literal_token1] = ACTIONS(8660), + [aux_sym_boolean_literal_token2] = ACTIONS(8660), + [sym_nothing_literal] = ACTIONS(8660), + [sym_null_literal] = ACTIONS(8660), + [sym_empty_literal] = ACTIONS(8660), + [sym_date_literal] = ACTIONS(8662), + [anon_sym_POUND] = ACTIONS(8660), + }, + [STATE(6036)] = { + [sym_identifier] = ACTIONS(8666), + [sym_newline] = ACTIONS(8668), + [anon_sym_COLON] = ACTIONS(8668), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8666), + [aux_sym_frm_property_statement_token1] = ACTIONS(8666), + [anon_sym_DOT] = ACTIONS(8666), + [anon_sym_BANG] = ACTIONS(8668), + [aux_sym__attribute_identifier_token1] = ACTIONS(8666), + [aux_sym_option_statement_token3] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8666), + [aux_sym_preprocessor_const_token1] = ACTIONS(8666), + [sym_static_modifier] = ACTIONS(8666), + [sym__dim_keyword] = ACTIONS(8666), + [sym__redim_keyword] = ACTIONS(8666), + [aux_sym_get_accessor_token1] = ACTIONS(8666), + [aux_sym_set_accessor_token1] = ACTIONS(8666), + [anon_sym_COMMA] = ACTIONS(10943), + [aux_sym_const_declaration_token1] = ACTIONS(8666), + [anon_sym_LPAREN] = ACTIONS(8668), + [aux_sym_as_type_clause_token2] = ACTIONS(8666), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8666), + [aux_sym_visibility_token1] = ACTIONS(8666), + [aux_sym_visibility_token2] = ACTIONS(8666), + [aux_sym_elseif_fragment_token1] = ACTIONS(8666), + [aux_sym_else_fragment_token1] = ACTIONS(8666), + [aux_sym_select_statement_token1] = ACTIONS(8666), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8666), + [aux_sym__for_header_token1] = ACTIONS(8666), + [aux_sym_do_statement_token1] = ACTIONS(8666), + [aux_sym_do_condition_token1] = ACTIONS(8666), + [aux_sym_with_statement_token1] = ACTIONS(8666), + [aux_sym_exit_statement_token1] = ACTIONS(8666), + [sym_end_statement] = ACTIONS(8668), + [aux_sym_on_goto_statement_token1] = ACTIONS(8666), + [aux_sym_on_goto_statement_token2] = ACTIONS(8666), + [aux_sym_on_error_statement_token2] = ACTIONS(8666), + [sym__ambiguous_redim_statement] = ACTIONS(8668), + [aux_sym_erase_statement_token1] = ACTIONS(8666), + [aux_sym_open_statement_token1] = ACTIONS(8666), + [aux_sym_file_mode_token2] = ACTIONS(8666), + [aux_sym_file_access_token2] = ACTIONS(8666), + [aux_sym_file_lock_token2] = ACTIONS(8666), + [aux_sym_print_statement_token1] = ACTIONS(8666), + [anon_sym_PLUS] = ACTIONS(8668), + [anon_sym_DASH] = ACTIONS(8666), + [anon_sym_QMARK] = ACTIONS(8668), + [aux_sym_close_statement_token1] = ACTIONS(8666), + [aux_sym_put_statement_token1] = ACTIONS(8666), + [aux_sym_unlock_statement_token1] = ACTIONS(8666), + [aux_sym_seek_statement_token1] = ACTIONS(8666), + [sym_reset_statement] = ACTIONS(8666), + [aux_sym_raise_event_statement_token1] = ACTIONS(8666), + [sym_stop_statement] = ACTIONS(8666), + [sym_beep_statement] = ACTIONS(8666), + [aux_sym_unload_statement_token1] = ACTIONS(8666), + [aux_sym_def_type_statement_token1] = ACTIONS(8666), + [aux_sym_def_type_statement_token2] = ACTIONS(8666), + [aux_sym_def_type_statement_token3] = ACTIONS(8666), + [aux_sym_def_type_statement_token4] = ACTIONS(8666), + [aux_sym_def_type_statement_token5] = ACTIONS(8666), + [aux_sym_def_type_statement_token6] = ACTIONS(8666), + [aux_sym_def_type_statement_token7] = ACTIONS(8666), + [aux_sym_def_type_statement_token8] = ACTIONS(8666), + [aux_sym_def_type_statement_token9] = ACTIONS(8666), + [aux_sym_def_type_statement_token10] = ACTIONS(8666), + [aux_sym_def_type_statement_token11] = ACTIONS(8666), + [aux_sym_def_type_statement_token12] = ACTIONS(8666), + [aux_sym_def_type_statement_token13] = ACTIONS(8666), + [aux_sym_def_type_statement_token14] = ACTIONS(8666), + [aux_sym_call_statement_token1] = ACTIONS(8666), + [sym__ambiguous_call_statement] = ACTIONS(8666), + [aux_sym_addressof_expression_token1] = ACTIONS(8666), + [aux_sym_type_of_expression_token1] = ACTIONS(8666), + [aux_sym_unary_expression_token1] = ACTIONS(8666), + [sym_string_literal] = ACTIONS(8668), + [sym_number_literal] = ACTIONS(8668), + [aux_sym_boolean_literal_token1] = ACTIONS(8666), + [aux_sym_boolean_literal_token2] = ACTIONS(8666), + [sym_nothing_literal] = ACTIONS(8666), + [sym_null_literal] = ACTIONS(8666), + [sym_empty_literal] = ACTIONS(8666), + [sym_date_literal] = ACTIONS(8668), + [anon_sym_POUND] = ACTIONS(8666), + }, + [STATE(6037)] = { + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(7951), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_statement_token2] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(6038)] = { + [aux_sym_on_goto_statement_repeat1] = STATE(5874), + [sym_identifier] = ACTIONS(8529), + [sym_newline] = ACTIONS(8531), + [anon_sym_COLON] = ACTIONS(8531), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8529), + [aux_sym_frm_property_statement_token1] = ACTIONS(8529), + [anon_sym_DOT] = ACTIONS(8529), + [anon_sym_BANG] = ACTIONS(8531), + [aux_sym__attribute_identifier_token1] = ACTIONS(8529), + [aux_sym_option_statement_token3] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8529), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8529), + [aux_sym_preprocessor_const_token1] = ACTIONS(8529), + [sym_static_modifier] = ACTIONS(8529), + [sym__dim_keyword] = ACTIONS(8529), + [sym__redim_keyword] = ACTIONS(8529), + [aux_sym_get_accessor_token1] = ACTIONS(8529), + [aux_sym_set_accessor_token1] = ACTIONS(8529), + [anon_sym_COMMA] = ACTIONS(10822), + [aux_sym_const_declaration_token1] = ACTIONS(8529), + [anon_sym_LPAREN] = ACTIONS(8531), + [aux_sym_as_type_clause_token2] = ACTIONS(8529), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8529), + [aux_sym_visibility_token1] = ACTIONS(8529), + [aux_sym_visibility_token2] = ACTIONS(8529), + [aux_sym_elseif_fragment_token1] = ACTIONS(8529), + [aux_sym_else_fragment_token1] = ACTIONS(8529), + [aux_sym_select_statement_token1] = ACTIONS(8529), + [aux_sym__for_header_token1] = ACTIONS(8529), + [aux_sym_do_statement_token1] = ACTIONS(8529), + [aux_sym_do_condition_token1] = ACTIONS(8529), + [aux_sym_with_statement_token1] = ACTIONS(8529), + [aux_sym_exit_statement_token1] = ACTIONS(8529), + [sym_end_statement] = ACTIONS(8531), + [aux_sym_on_goto_statement_token1] = ACTIONS(8529), + [aux_sym_on_goto_statement_token2] = ACTIONS(8529), + [aux_sym_on_error_statement_token2] = ACTIONS(8529), + [sym__ambiguous_redim_statement] = ACTIONS(8531), + [aux_sym_erase_statement_token1] = ACTIONS(8529), + [aux_sym_open_statement_token1] = ACTIONS(8529), + [aux_sym_file_mode_token2] = ACTIONS(8529), + [aux_sym_file_access_token2] = ACTIONS(8529), + [aux_sym_file_lock_token2] = ACTIONS(8529), + [aux_sym_print_statement_token1] = ACTIONS(8529), + [anon_sym_PLUS] = ACTIONS(8531), + [anon_sym_DASH] = ACTIONS(8529), + [anon_sym_QMARK] = ACTIONS(8531), + [aux_sym_close_statement_token1] = ACTIONS(8529), + [aux_sym_put_statement_token1] = ACTIONS(8529), + [aux_sym_unlock_statement_token1] = ACTIONS(8529), + [aux_sym_seek_statement_token1] = ACTIONS(8529), + [sym_reset_statement] = ACTIONS(8529), + [aux_sym_raise_event_statement_token1] = ACTIONS(8529), + [sym_stop_statement] = ACTIONS(8529), + [sym_beep_statement] = ACTIONS(8529), + [aux_sym_unload_statement_token1] = ACTIONS(8529), + [aux_sym_def_type_statement_token1] = ACTIONS(8529), + [aux_sym_def_type_statement_token2] = ACTIONS(8529), + [aux_sym_def_type_statement_token3] = ACTIONS(8529), + [aux_sym_def_type_statement_token4] = ACTIONS(8529), + [aux_sym_def_type_statement_token5] = ACTIONS(8529), + [aux_sym_def_type_statement_token6] = ACTIONS(8529), + [aux_sym_def_type_statement_token7] = ACTIONS(8529), + [aux_sym_def_type_statement_token8] = ACTIONS(8529), + [aux_sym_def_type_statement_token9] = ACTIONS(8529), + [aux_sym_def_type_statement_token10] = ACTIONS(8529), + [aux_sym_def_type_statement_token11] = ACTIONS(8529), + [aux_sym_def_type_statement_token12] = ACTIONS(8529), + [aux_sym_def_type_statement_token13] = ACTIONS(8529), + [aux_sym_def_type_statement_token14] = ACTIONS(8529), + [aux_sym_call_statement_token1] = ACTIONS(8529), + [sym__ambiguous_call_statement] = ACTIONS(8529), + [aux_sym_addressof_expression_token1] = ACTIONS(8529), + [aux_sym_type_of_expression_token1] = ACTIONS(8529), + [aux_sym_unary_expression_token1] = ACTIONS(8529), + [sym_string_literal] = ACTIONS(8531), + [sym_number_literal] = ACTIONS(8531), + [aux_sym_boolean_literal_token1] = ACTIONS(8529), + [aux_sym_boolean_literal_token2] = ACTIONS(8529), + [sym_nothing_literal] = ACTIONS(8529), + [sym_null_literal] = ACTIONS(8529), + [sym_empty_literal] = ACTIONS(8529), + [sym_date_literal] = ACTIONS(8531), + [anon_sym_POUND] = ACTIONS(8529), + }, + [STATE(6039)] = { + [sym_identifier] = ACTIONS(8686), + [sym_newline] = ACTIONS(8688), + [anon_sym_COLON] = ACTIONS(8688), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8686), + [aux_sym_frm_property_statement_token1] = ACTIONS(8686), + [anon_sym_DOT] = ACTIONS(8686), + [anon_sym_BANG] = ACTIONS(8688), + [aux_sym__attribute_identifier_token1] = ACTIONS(8686), + [aux_sym_option_statement_token3] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8686), + [aux_sym_preprocessor_const_token1] = ACTIONS(8686), + [sym_static_modifier] = ACTIONS(8686), + [sym__dim_keyword] = ACTIONS(8686), + [sym__redim_keyword] = ACTIONS(8686), + [aux_sym_get_accessor_token1] = ACTIONS(8686), + [aux_sym_set_accessor_token1] = ACTIONS(8686), + [aux_sym_const_declaration_token1] = ACTIONS(8686), + [anon_sym_LPAREN] = ACTIONS(8688), + [aux_sym_as_type_clause_token2] = ACTIONS(8686), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8686), + [aux_sym_visibility_token1] = ACTIONS(8686), + [aux_sym_visibility_token2] = ACTIONS(8686), + [aux_sym_elseif_fragment_token1] = ACTIONS(8686), + [aux_sym_else_fragment_token1] = ACTIONS(8686), + [aux_sym_select_statement_token1] = ACTIONS(8686), + [aux_sym__for_header_token1] = ACTIONS(8686), + [aux_sym_do_statement_token1] = ACTIONS(8686), + [aux_sym_do_condition_token1] = ACTIONS(8686), + [aux_sym_with_statement_token1] = ACTIONS(8686), + [aux_sym_exit_statement_token1] = ACTIONS(8686), + [sym_end_statement] = ACTIONS(8688), + [aux_sym_on_goto_statement_token1] = ACTIONS(8686), + [aux_sym_on_goto_statement_token2] = ACTIONS(8686), + [aux_sym_on_error_statement_token2] = ACTIONS(8686), + [sym__ambiguous_redim_statement] = ACTIONS(8688), + [aux_sym_erase_statement_token1] = ACTIONS(8686), + [aux_sym_open_statement_token1] = ACTIONS(8686), + [aux_sym_open_statement_token3] = ACTIONS(10945), + [aux_sym_file_mode_token2] = ACTIONS(8686), + [aux_sym_file_access_token2] = ACTIONS(8686), + [aux_sym_file_lock_token2] = ACTIONS(8686), + [aux_sym_print_statement_token1] = ACTIONS(8686), + [anon_sym_PLUS] = ACTIONS(8688), + [anon_sym_DASH] = ACTIONS(8686), + [anon_sym_QMARK] = ACTIONS(8688), + [aux_sym_close_statement_token1] = ACTIONS(8686), + [aux_sym_put_statement_token1] = ACTIONS(8686), + [aux_sym_unlock_statement_token1] = ACTIONS(8686), + [aux_sym_seek_statement_token1] = ACTIONS(8686), + [sym_reset_statement] = ACTIONS(8686), + [aux_sym_raise_event_statement_token1] = ACTIONS(8686), + [sym_stop_statement] = ACTIONS(8686), + [sym_beep_statement] = ACTIONS(8686), + [aux_sym_unload_statement_token1] = ACTIONS(8686), + [aux_sym_def_type_statement_token1] = ACTIONS(8686), + [aux_sym_def_type_statement_token2] = ACTIONS(8686), + [aux_sym_def_type_statement_token3] = ACTIONS(8686), + [aux_sym_def_type_statement_token4] = ACTIONS(8686), + [aux_sym_def_type_statement_token5] = ACTIONS(8686), + [aux_sym_def_type_statement_token6] = ACTIONS(8686), + [aux_sym_def_type_statement_token7] = ACTIONS(8686), + [aux_sym_def_type_statement_token8] = ACTIONS(8686), + [aux_sym_def_type_statement_token9] = ACTIONS(8686), + [aux_sym_def_type_statement_token10] = ACTIONS(8686), + [aux_sym_def_type_statement_token11] = ACTIONS(8686), + [aux_sym_def_type_statement_token12] = ACTIONS(8686), + [aux_sym_def_type_statement_token13] = ACTIONS(8686), + [aux_sym_def_type_statement_token14] = ACTIONS(8686), + [aux_sym_call_statement_token1] = ACTIONS(8686), + [sym__ambiguous_call_statement] = ACTIONS(8686), + [aux_sym_addressof_expression_token1] = ACTIONS(8686), + [aux_sym_type_of_expression_token1] = ACTIONS(8686), + [aux_sym_unary_expression_token1] = ACTIONS(8686), + [sym_string_literal] = ACTIONS(8688), + [sym_number_literal] = ACTIONS(8688), + [aux_sym_boolean_literal_token1] = ACTIONS(8686), + [aux_sym_boolean_literal_token2] = ACTIONS(8686), + [sym_nothing_literal] = ACTIONS(8686), + [sym_null_literal] = ACTIONS(8686), + [sym_empty_literal] = ACTIONS(8686), + [sym_date_literal] = ACTIONS(8688), + [anon_sym_POUND] = ACTIONS(8686), + }, + [STATE(6040)] = { + [sym_identifier] = ACTIONS(8467), + [sym_newline] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8467), + [aux_sym_frm_property_statement_token1] = ACTIONS(8467), + [anon_sym_DOT] = ACTIONS(8467), + [anon_sym_BANG] = ACTIONS(6089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8467), + [aux_sym_option_statement_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8467), + [aux_sym_preprocessor_const_token1] = ACTIONS(8467), + [sym_static_modifier] = ACTIONS(8467), + [sym__dim_keyword] = ACTIONS(8467), + [sym__redim_keyword] = ACTIONS(8467), + [aux_sym_get_accessor_token1] = ACTIONS(8467), + [aux_sym_set_accessor_token1] = ACTIONS(8467), + [anon_sym_COMMA] = ACTIONS(6089), + [aux_sym_const_declaration_token1] = ACTIONS(8467), + [anon_sym_LPAREN] = ACTIONS(6089), + [aux_sym_as_type_clause_token2] = ACTIONS(8467), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8467), + [aux_sym_visibility_token1] = ACTIONS(8467), + [aux_sym_visibility_token2] = ACTIONS(8467), + [aux_sym_elseif_fragment_token1] = ACTIONS(8467), + [aux_sym_else_fragment_token1] = ACTIONS(8467), + [aux_sym_select_statement_token1] = ACTIONS(8467), + [aux_sym__for_header_token1] = ACTIONS(8467), + [aux_sym_do_statement_token1] = ACTIONS(8467), + [aux_sym_do_statement_token2] = ACTIONS(8467), + [aux_sym_do_condition_token1] = ACTIONS(8467), + [aux_sym_with_statement_token1] = ACTIONS(8467), + [aux_sym_exit_statement_token1] = ACTIONS(8467), + [sym_end_statement] = ACTIONS(6089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8467), + [aux_sym_on_goto_statement_token2] = ACTIONS(8467), + [aux_sym_on_error_statement_token2] = ACTIONS(8467), + [sym__ambiguous_redim_statement] = ACTIONS(6089), + [aux_sym_erase_statement_token1] = ACTIONS(8467), + [aux_sym_open_statement_token1] = ACTIONS(8467), + [aux_sym_file_mode_token2] = ACTIONS(8467), + [aux_sym_file_access_token2] = ACTIONS(8467), + [aux_sym_file_lock_token2] = ACTIONS(8467), + [aux_sym_print_statement_token1] = ACTIONS(8467), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(8467), + [anon_sym_QMARK] = ACTIONS(6089), + [aux_sym_close_statement_token1] = ACTIONS(8467), + [aux_sym_put_statement_token1] = ACTIONS(8467), + [aux_sym_unlock_statement_token1] = ACTIONS(8467), + [aux_sym_seek_statement_token1] = ACTIONS(8467), + [sym_reset_statement] = ACTIONS(8467), + [aux_sym_raise_event_statement_token1] = ACTIONS(8467), + [sym_stop_statement] = ACTIONS(8467), + [sym_beep_statement] = ACTIONS(8467), + [aux_sym_unload_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token2] = ACTIONS(8467), + [aux_sym_def_type_statement_token3] = ACTIONS(8467), + [aux_sym_def_type_statement_token4] = ACTIONS(8467), + [aux_sym_def_type_statement_token5] = ACTIONS(8467), + [aux_sym_def_type_statement_token6] = ACTIONS(8467), + [aux_sym_def_type_statement_token7] = ACTIONS(8467), + [aux_sym_def_type_statement_token8] = ACTIONS(8467), + [aux_sym_def_type_statement_token9] = ACTIONS(8467), + [aux_sym_def_type_statement_token10] = ACTIONS(8467), + [aux_sym_def_type_statement_token11] = ACTIONS(8467), + [aux_sym_def_type_statement_token12] = ACTIONS(8467), + [aux_sym_def_type_statement_token13] = ACTIONS(8467), + [aux_sym_def_type_statement_token14] = ACTIONS(8467), + [aux_sym_call_statement_token1] = ACTIONS(8467), + [sym__ambiguous_call_statement] = ACTIONS(8467), + [aux_sym_addressof_expression_token1] = ACTIONS(8467), + [aux_sym_type_of_expression_token1] = ACTIONS(8467), + [aux_sym_unary_expression_token1] = ACTIONS(8467), + [sym_string_literal] = ACTIONS(6089), + [sym_number_literal] = ACTIONS(6089), + [aux_sym_boolean_literal_token1] = ACTIONS(8467), + [aux_sym_boolean_literal_token2] = ACTIONS(8467), + [sym_nothing_literal] = ACTIONS(8467), + [sym_null_literal] = ACTIONS(8467), + [sym_empty_literal] = ACTIONS(8467), + [sym_date_literal] = ACTIONS(6089), + [anon_sym_POUND] = ACTIONS(8467), + }, + [STATE(6041)] = { + [sym_identifier] = ACTIONS(8790), + [sym_newline] = ACTIONS(8792), + [anon_sym_COLON] = ACTIONS(8792), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8790), + [aux_sym_frm_property_statement_token1] = ACTIONS(8790), + [anon_sym_DOT] = ACTIONS(8790), + [anon_sym_BANG] = ACTIONS(8792), + [aux_sym__attribute_identifier_token1] = ACTIONS(8790), + [aux_sym_option_statement_token3] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8790), + [aux_sym_preprocessor_const_token1] = ACTIONS(8790), + [sym_static_modifier] = ACTIONS(8790), + [sym__dim_keyword] = ACTIONS(8790), + [sym__redim_keyword] = ACTIONS(8790), + [aux_sym_get_accessor_token1] = ACTIONS(8790), + [aux_sym_set_accessor_token1] = ACTIONS(8790), + [anon_sym_COMMA] = ACTIONS(8792), + [aux_sym_const_declaration_token1] = ACTIONS(8790), + [anon_sym_LPAREN] = ACTIONS(8792), + [aux_sym_as_type_clause_token2] = ACTIONS(8790), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8790), + [aux_sym_visibility_token1] = ACTIONS(8790), + [aux_sym_visibility_token2] = ACTIONS(8790), + [aux_sym_elseif_fragment_token1] = ACTIONS(8790), + [aux_sym_else_fragment_token1] = ACTIONS(8790), + [aux_sym_select_statement_token1] = ACTIONS(8790), + [aux_sym__for_header_token1] = ACTIONS(8790), + [aux_sym_do_statement_token1] = ACTIONS(8790), + [aux_sym_do_statement_token2] = ACTIONS(8790), + [aux_sym_do_condition_token1] = ACTIONS(8790), + [aux_sym_with_statement_token1] = ACTIONS(8790), + [aux_sym_exit_statement_token1] = ACTIONS(8790), + [sym_end_statement] = ACTIONS(8792), + [aux_sym_on_goto_statement_token1] = ACTIONS(8790), + [aux_sym_on_goto_statement_token2] = ACTIONS(8790), + [aux_sym_on_error_statement_token2] = ACTIONS(8790), + [sym__ambiguous_redim_statement] = ACTIONS(8792), + [aux_sym_erase_statement_token1] = ACTIONS(8790), + [aux_sym_open_statement_token1] = ACTIONS(8790), + [aux_sym_file_mode_token2] = ACTIONS(8790), + [aux_sym_file_access_token2] = ACTIONS(8790), + [aux_sym_file_lock_token2] = ACTIONS(8790), + [aux_sym_print_statement_token1] = ACTIONS(8790), + [anon_sym_PLUS] = ACTIONS(8792), + [anon_sym_DASH] = ACTIONS(8790), + [anon_sym_QMARK] = ACTIONS(8792), + [aux_sym_close_statement_token1] = ACTIONS(8790), + [aux_sym_put_statement_token1] = ACTIONS(8790), + [aux_sym_unlock_statement_token1] = ACTIONS(8790), + [aux_sym_seek_statement_token1] = ACTIONS(8790), + [sym_reset_statement] = ACTIONS(8790), + [aux_sym_raise_event_statement_token1] = ACTIONS(8790), + [sym_stop_statement] = ACTIONS(8790), + [sym_beep_statement] = ACTIONS(8790), + [aux_sym_unload_statement_token1] = ACTIONS(8790), + [aux_sym_def_type_statement_token1] = ACTIONS(8790), + [aux_sym_def_type_statement_token2] = ACTIONS(8790), + [aux_sym_def_type_statement_token3] = ACTIONS(8790), + [aux_sym_def_type_statement_token4] = ACTIONS(8790), + [aux_sym_def_type_statement_token5] = ACTIONS(8790), + [aux_sym_def_type_statement_token6] = ACTIONS(8790), + [aux_sym_def_type_statement_token7] = ACTIONS(8790), + [aux_sym_def_type_statement_token8] = ACTIONS(8790), + [aux_sym_def_type_statement_token9] = ACTIONS(8790), + [aux_sym_def_type_statement_token10] = ACTIONS(8790), + [aux_sym_def_type_statement_token11] = ACTIONS(8790), + [aux_sym_def_type_statement_token12] = ACTIONS(8790), + [aux_sym_def_type_statement_token13] = ACTIONS(8790), + [aux_sym_def_type_statement_token14] = ACTIONS(8790), + [aux_sym_call_statement_token1] = ACTIONS(8790), + [sym__ambiguous_call_statement] = ACTIONS(8790), + [aux_sym_addressof_expression_token1] = ACTIONS(8790), + [aux_sym_type_of_expression_token1] = ACTIONS(8790), + [aux_sym_unary_expression_token1] = ACTIONS(8790), + [sym_string_literal] = ACTIONS(8792), + [sym_number_literal] = ACTIONS(8792), + [aux_sym_boolean_literal_token1] = ACTIONS(8790), + [aux_sym_boolean_literal_token2] = ACTIONS(8790), + [sym_nothing_literal] = ACTIONS(8790), + [sym_null_literal] = ACTIONS(8790), + [sym_empty_literal] = ACTIONS(8790), + [sym_date_literal] = ACTIONS(8792), + [anon_sym_POUND] = ACTIONS(8790), + }, + [STATE(6042)] = { + [sym_identifier] = ACTIONS(8927), + [sym_newline] = ACTIONS(8929), + [anon_sym_COLON] = ACTIONS(8929), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8927), + [aux_sym_frm_property_statement_token1] = ACTIONS(8927), + [anon_sym_DOT] = ACTIONS(8927), + [anon_sym_BANG] = ACTIONS(8929), + [aux_sym__attribute_identifier_token1] = ACTIONS(8927), + [aux_sym_option_statement_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8927), + [aux_sym_preprocessor_const_token1] = ACTIONS(8927), + [sym_static_modifier] = ACTIONS(8927), + [sym__dim_keyword] = ACTIONS(8927), + [sym__redim_keyword] = ACTIONS(8927), + [aux_sym_get_accessor_token1] = ACTIONS(8927), + [aux_sym_set_accessor_token1] = ACTIONS(8927), + [aux_sym_const_declaration_token1] = ACTIONS(8927), + [anon_sym_LPAREN] = ACTIONS(8929), + [aux_sym_as_type_clause_token2] = ACTIONS(8927), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8927), + [aux_sym_visibility_token1] = ACTIONS(8927), + [aux_sym_visibility_token2] = ACTIONS(8927), + [aux_sym_elseif_fragment_token1] = ACTIONS(8927), + [aux_sym_else_fragment_token1] = ACTIONS(8927), + [aux_sym_select_statement_token1] = ACTIONS(8927), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8927), + [aux_sym__for_header_token1] = ACTIONS(8927), + [aux_sym_do_statement_token1] = ACTIONS(8927), + [aux_sym_do_statement_token2] = ACTIONS(8927), + [aux_sym_do_condition_token1] = ACTIONS(8927), + [aux_sym_with_statement_token1] = ACTIONS(8927), + [aux_sym_exit_statement_token1] = ACTIONS(8927), + [sym_end_statement] = ACTIONS(8929), + [aux_sym_on_goto_statement_token1] = ACTIONS(8927), + [aux_sym_on_goto_statement_token2] = ACTIONS(8927), + [aux_sym_on_error_statement_token2] = ACTIONS(8927), + [sym__ambiguous_redim_statement] = ACTIONS(8929), + [aux_sym_erase_statement_token1] = ACTIONS(8927), + [aux_sym_open_statement_token1] = ACTIONS(8927), + [aux_sym_file_mode_token2] = ACTIONS(8927), + [aux_sym_file_access_token2] = ACTIONS(8927), + [aux_sym_file_lock_token2] = ACTIONS(8927), + [aux_sym_print_statement_token1] = ACTIONS(8927), + [anon_sym_PLUS] = ACTIONS(8929), + [anon_sym_DASH] = ACTIONS(8927), + [anon_sym_QMARK] = ACTIONS(8929), + [aux_sym_close_statement_token1] = ACTIONS(8927), + [aux_sym_put_statement_token1] = ACTIONS(8927), + [aux_sym_unlock_statement_token1] = ACTIONS(8927), + [aux_sym_seek_statement_token1] = ACTIONS(8927), + [sym_reset_statement] = ACTIONS(8927), + [aux_sym_raise_event_statement_token1] = ACTIONS(8927), + [sym_stop_statement] = ACTIONS(8927), + [sym_beep_statement] = ACTIONS(8927), + [aux_sym_unload_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token2] = ACTIONS(8927), + [aux_sym_def_type_statement_token3] = ACTIONS(8927), + [aux_sym_def_type_statement_token4] = ACTIONS(8927), + [aux_sym_def_type_statement_token5] = ACTIONS(8927), + [aux_sym_def_type_statement_token6] = ACTIONS(8927), + [aux_sym_def_type_statement_token7] = ACTIONS(8927), + [aux_sym_def_type_statement_token8] = ACTIONS(8927), + [aux_sym_def_type_statement_token9] = ACTIONS(8927), + [aux_sym_def_type_statement_token10] = ACTIONS(8927), + [aux_sym_def_type_statement_token11] = ACTIONS(8927), + [aux_sym_def_type_statement_token12] = ACTIONS(8927), + [aux_sym_def_type_statement_token13] = ACTIONS(8927), + [aux_sym_def_type_statement_token14] = ACTIONS(8927), + [aux_sym_call_statement_token1] = ACTIONS(8927), + [sym__ambiguous_call_statement] = ACTIONS(8927), + [aux_sym_addressof_expression_token1] = ACTIONS(8927), + [aux_sym_type_of_expression_token1] = ACTIONS(8927), + [aux_sym_unary_expression_token1] = ACTIONS(8927), + [sym_string_literal] = ACTIONS(8929), + [sym_number_literal] = ACTIONS(8929), + [aux_sym_boolean_literal_token1] = ACTIONS(8927), + [aux_sym_boolean_literal_token2] = ACTIONS(8927), + [sym_nothing_literal] = ACTIONS(8927), + [sym_null_literal] = ACTIONS(8927), + [sym_empty_literal] = ACTIONS(8927), + [sym_date_literal] = ACTIONS(8929), + [anon_sym_POUND] = ACTIONS(8927), + }, + [STATE(6043)] = { + [sym_identifier] = ACTIONS(5562), + [sym_newline] = ACTIONS(5558), + [anon_sym_COLON] = ACTIONS(5558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5562), + [aux_sym_frm_property_statement_token1] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(10504), + [anon_sym_BANG] = ACTIONS(10506), + [aux_sym__attribute_identifier_token1] = ACTIONS(5562), + [aux_sym_option_statement_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5562), + [aux_sym_preprocessor_const_token1] = ACTIONS(5562), + [sym_static_modifier] = ACTIONS(5562), + [sym__dim_keyword] = ACTIONS(5562), + [sym__redim_keyword] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5562), + [aux_sym_set_accessor_token1] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5558), + [aux_sym_as_type_clause_token2] = ACTIONS(5562), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5562), + [aux_sym_visibility_token1] = ACTIONS(5562), + [aux_sym_visibility_token2] = ACTIONS(5562), + [aux_sym_elseif_fragment_token1] = ACTIONS(5562), + [aux_sym_else_fragment_token1] = ACTIONS(5562), + [aux_sym_select_statement_token1] = ACTIONS(5562), + [aux_sym__for_header_token1] = ACTIONS(5562), + [aux_sym_do_statement_token1] = ACTIONS(5562), + [aux_sym_do_statement_token2] = ACTIONS(5562), + [aux_sym_do_condition_token1] = ACTIONS(5562), + [aux_sym_with_statement_token1] = ACTIONS(5562), + [aux_sym_exit_statement_token1] = ACTIONS(5562), + [sym_end_statement] = ACTIONS(5558), + [aux_sym_on_goto_statement_token1] = ACTIONS(5562), + [aux_sym_on_goto_statement_token2] = ACTIONS(5562), + [aux_sym_on_error_statement_token2] = ACTIONS(5562), + [sym__ambiguous_redim_statement] = ACTIONS(5558), + [aux_sym_erase_statement_token1] = ACTIONS(5562), + [aux_sym_open_statement_token1] = ACTIONS(5562), + [aux_sym_file_mode_token2] = ACTIONS(5562), + [aux_sym_file_access_token2] = ACTIONS(5562), + [aux_sym_file_lock_token2] = ACTIONS(5562), + [aux_sym_print_statement_token1] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5558), + [aux_sym_close_statement_token1] = ACTIONS(5562), + [aux_sym_put_statement_token1] = ACTIONS(5562), + [aux_sym_unlock_statement_token1] = ACTIONS(5562), + [aux_sym_seek_statement_token1] = ACTIONS(5562), + [sym_reset_statement] = ACTIONS(5562), + [aux_sym_raise_event_statement_token1] = ACTIONS(5562), + [sym_stop_statement] = ACTIONS(5562), + [sym_beep_statement] = ACTIONS(5562), + [aux_sym_unload_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token2] = ACTIONS(5562), + [aux_sym_def_type_statement_token3] = ACTIONS(5562), + [aux_sym_def_type_statement_token4] = ACTIONS(5562), + [aux_sym_def_type_statement_token5] = ACTIONS(5562), + [aux_sym_def_type_statement_token6] = ACTIONS(5562), + [aux_sym_def_type_statement_token7] = ACTIONS(5562), + [aux_sym_def_type_statement_token8] = ACTIONS(5562), + [aux_sym_def_type_statement_token9] = ACTIONS(5562), + [aux_sym_def_type_statement_token10] = ACTIONS(5562), + [aux_sym_def_type_statement_token11] = ACTIONS(5562), + [aux_sym_def_type_statement_token12] = ACTIONS(5562), + [aux_sym_def_type_statement_token13] = ACTIONS(5562), + [aux_sym_def_type_statement_token14] = ACTIONS(5562), + [aux_sym_call_statement_token1] = ACTIONS(5562), + [sym__ambiguous_call_statement] = ACTIONS(5562), + [aux_sym_addressof_expression_token1] = ACTIONS(5562), + [aux_sym_type_of_expression_token1] = ACTIONS(5562), + [aux_sym_unary_expression_token1] = ACTIONS(5562), + [sym_string_literal] = ACTIONS(5558), + [sym_number_literal] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5562), + [aux_sym_boolean_literal_token2] = ACTIONS(5562), + [sym_nothing_literal] = ACTIONS(5562), + [sym_null_literal] = ACTIONS(5562), + [sym_empty_literal] = ACTIONS(5562), + [sym_date_literal] = ACTIONS(5558), + [anon_sym_POUND] = ACTIONS(5562), + }, + [STATE(6044)] = { + [sym_identifier] = ACTIONS(8672), + [sym_newline] = ACTIONS(8674), + [anon_sym_COLON] = ACTIONS(8674), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8672), + [aux_sym_frm_property_statement_token1] = ACTIONS(8672), + [anon_sym_DOT] = ACTIONS(8672), + [anon_sym_BANG] = ACTIONS(8674), + [aux_sym__attribute_identifier_token1] = ACTIONS(8672), + [aux_sym_option_statement_token3] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8672), + [aux_sym_preprocessor_const_token1] = ACTIONS(8672), + [sym_static_modifier] = ACTIONS(8672), + [sym__dim_keyword] = ACTIONS(8672), + [sym__redim_keyword] = ACTIONS(8672), + [aux_sym_get_accessor_token1] = ACTIONS(8672), + [aux_sym_set_accessor_token1] = ACTIONS(8672), + [anon_sym_COMMA] = ACTIONS(8674), + [aux_sym_const_declaration_token1] = ACTIONS(8672), + [anon_sym_LPAREN] = ACTIONS(8674), + [aux_sym_as_type_clause_token2] = ACTIONS(8672), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8672), + [aux_sym_visibility_token1] = ACTIONS(8672), + [aux_sym_visibility_token2] = ACTIONS(8672), + [aux_sym_elseif_fragment_token1] = ACTIONS(8672), + [aux_sym_else_fragment_token1] = ACTIONS(8672), + [aux_sym_select_statement_token1] = ACTIONS(8672), + [aux_sym__for_header_token1] = ACTIONS(8672), + [aux_sym_do_statement_token1] = ACTIONS(8672), + [aux_sym_do_condition_token1] = ACTIONS(8672), + [aux_sym_with_statement_token1] = ACTIONS(8672), + [aux_sym_exit_statement_token1] = ACTIONS(8672), + [sym_end_statement] = ACTIONS(8674), + [aux_sym_on_goto_statement_token1] = ACTIONS(8672), + [aux_sym_on_goto_statement_token2] = ACTIONS(8672), + [aux_sym_on_error_statement_token2] = ACTIONS(8672), + [sym__ambiguous_redim_statement] = ACTIONS(8674), + [aux_sym_erase_statement_token1] = ACTIONS(8672), + [aux_sym_open_statement_token1] = ACTIONS(8672), + [aux_sym_file_mode_token2] = ACTIONS(8672), + [aux_sym_file_access_token2] = ACTIONS(8672), + [aux_sym_file_lock_token2] = ACTIONS(8672), + [aux_sym_print_statement_token1] = ACTIONS(8672), + [anon_sym_PLUS] = ACTIONS(8674), + [anon_sym_DASH] = ACTIONS(8672), + [anon_sym_QMARK] = ACTIONS(8674), + [aux_sym_close_statement_token1] = ACTIONS(8672), + [aux_sym_put_statement_token1] = ACTIONS(8672), + [aux_sym_unlock_statement_token1] = ACTIONS(8672), + [aux_sym_seek_statement_token1] = ACTIONS(8672), + [sym_reset_statement] = ACTIONS(8672), + [aux_sym_raise_event_statement_token1] = ACTIONS(8672), + [sym_stop_statement] = ACTIONS(8672), + [sym_beep_statement] = ACTIONS(8672), + [aux_sym_unload_statement_token1] = ACTIONS(8672), + [aux_sym_def_type_statement_token1] = ACTIONS(8672), + [aux_sym_def_type_statement_token2] = ACTIONS(8672), + [aux_sym_def_type_statement_token3] = ACTIONS(8672), + [aux_sym_def_type_statement_token4] = ACTIONS(8672), + [aux_sym_def_type_statement_token5] = ACTIONS(8672), + [aux_sym_def_type_statement_token6] = ACTIONS(8672), + [aux_sym_def_type_statement_token7] = ACTIONS(8672), + [aux_sym_def_type_statement_token8] = ACTIONS(8672), + [aux_sym_def_type_statement_token9] = ACTIONS(8672), + [aux_sym_def_type_statement_token10] = ACTIONS(8672), + [aux_sym_def_type_statement_token11] = ACTIONS(8672), + [aux_sym_def_type_statement_token12] = ACTIONS(8672), + [aux_sym_def_type_statement_token13] = ACTIONS(8672), + [aux_sym_def_type_statement_token14] = ACTIONS(8672), + [aux_sym_call_statement_token1] = ACTIONS(8672), + [sym__ambiguous_call_statement] = ACTIONS(8672), + [aux_sym_addressof_expression_token1] = ACTIONS(8672), + [aux_sym_type_of_expression_token1] = ACTIONS(8672), + [aux_sym_unary_expression_token1] = ACTIONS(8672), + [sym_string_literal] = ACTIONS(8674), + [sym_number_literal] = ACTIONS(8674), + [aux_sym_boolean_literal_token1] = ACTIONS(8672), + [aux_sym_boolean_literal_token2] = ACTIONS(8672), + [sym_nothing_literal] = ACTIONS(8672), + [sym_null_literal] = ACTIONS(8672), + [sym_empty_literal] = ACTIONS(8672), + [sym_date_literal] = ACTIONS(8674), + [anon_sym_POUND] = ACTIONS(8672), + }, + [STATE(6045)] = { + [sym_identifier] = ACTIONS(5562), + [sym_newline] = ACTIONS(5558), + [anon_sym_COLON] = ACTIONS(5558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5562), + [aux_sym_frm_property_statement_token1] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(10525), + [anon_sym_BANG] = ACTIONS(10527), + [aux_sym__attribute_identifier_token1] = ACTIONS(5562), + [aux_sym_option_statement_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5562), + [aux_sym_preprocessor_const_token1] = ACTIONS(5562), + [sym_static_modifier] = ACTIONS(5562), + [sym__dim_keyword] = ACTIONS(5562), + [sym__redim_keyword] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5562), + [aux_sym_set_accessor_token1] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5558), + [aux_sym_as_type_clause_token2] = ACTIONS(5562), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5562), + [aux_sym_visibility_token1] = ACTIONS(5562), + [aux_sym_visibility_token2] = ACTIONS(5562), + [aux_sym_elseif_fragment_token1] = ACTIONS(5562), + [aux_sym_else_fragment_token1] = ACTIONS(5562), + [aux_sym_select_statement_token1] = ACTIONS(5562), + [aux_sym__for_header_token1] = ACTIONS(5562), + [aux_sym_do_statement_token1] = ACTIONS(5562), + [aux_sym_do_condition_token1] = ACTIONS(5562), + [aux_sym_while_statement_token1] = ACTIONS(5562), + [aux_sym_with_statement_token1] = ACTIONS(5562), + [aux_sym_exit_statement_token1] = ACTIONS(5562), + [sym_end_statement] = ACTIONS(5558), + [aux_sym_on_goto_statement_token1] = ACTIONS(5562), + [aux_sym_on_goto_statement_token2] = ACTIONS(5562), + [aux_sym_on_error_statement_token2] = ACTIONS(5562), + [sym__ambiguous_redim_statement] = ACTIONS(5558), + [aux_sym_erase_statement_token1] = ACTIONS(5562), + [aux_sym_open_statement_token1] = ACTIONS(5562), + [aux_sym_file_mode_token2] = ACTIONS(5562), + [aux_sym_file_access_token2] = ACTIONS(5562), + [aux_sym_file_lock_token2] = ACTIONS(5562), + [aux_sym_print_statement_token1] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5558), + [aux_sym_close_statement_token1] = ACTIONS(5562), + [aux_sym_put_statement_token1] = ACTIONS(5562), + [aux_sym_unlock_statement_token1] = ACTIONS(5562), + [aux_sym_seek_statement_token1] = ACTIONS(5562), + [sym_reset_statement] = ACTIONS(5562), + [aux_sym_raise_event_statement_token1] = ACTIONS(5562), + [sym_stop_statement] = ACTIONS(5562), + [sym_beep_statement] = ACTIONS(5562), + [aux_sym_unload_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token2] = ACTIONS(5562), + [aux_sym_def_type_statement_token3] = ACTIONS(5562), + [aux_sym_def_type_statement_token4] = ACTIONS(5562), + [aux_sym_def_type_statement_token5] = ACTIONS(5562), + [aux_sym_def_type_statement_token6] = ACTIONS(5562), + [aux_sym_def_type_statement_token7] = ACTIONS(5562), + [aux_sym_def_type_statement_token8] = ACTIONS(5562), + [aux_sym_def_type_statement_token9] = ACTIONS(5562), + [aux_sym_def_type_statement_token10] = ACTIONS(5562), + [aux_sym_def_type_statement_token11] = ACTIONS(5562), + [aux_sym_def_type_statement_token12] = ACTIONS(5562), + [aux_sym_def_type_statement_token13] = ACTIONS(5562), + [aux_sym_def_type_statement_token14] = ACTIONS(5562), + [aux_sym_call_statement_token1] = ACTIONS(5562), + [sym__ambiguous_call_statement] = ACTIONS(5562), + [aux_sym_addressof_expression_token1] = ACTIONS(5562), + [aux_sym_type_of_expression_token1] = ACTIONS(5562), + [aux_sym_unary_expression_token1] = ACTIONS(5562), + [sym_string_literal] = ACTIONS(5558), + [sym_number_literal] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5562), + [aux_sym_boolean_literal_token2] = ACTIONS(5562), + [sym_nothing_literal] = ACTIONS(5562), + [sym_null_literal] = ACTIONS(5562), + [sym_empty_literal] = ACTIONS(5562), + [sym_date_literal] = ACTIONS(5558), + [anon_sym_POUND] = ACTIONS(5562), + }, + [STATE(6046)] = { + [sym_identifier] = ACTIONS(8350), + [sym_newline] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8350), + [aux_sym_frm_property_statement_token1] = ACTIONS(8350), + [anon_sym_DOT] = ACTIONS(8350), + [anon_sym_BANG] = ACTIONS(8352), + [aux_sym__attribute_identifier_token1] = ACTIONS(8350), + [aux_sym_option_statement_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8350), + [aux_sym_preprocessor_const_token1] = ACTIONS(8350), + [sym_static_modifier] = ACTIONS(8350), + [sym__dim_keyword] = ACTIONS(8350), + [sym__redim_keyword] = ACTIONS(8350), + [aux_sym_get_accessor_token1] = ACTIONS(8350), + [aux_sym_set_accessor_token1] = ACTIONS(8350), + [anon_sym_COMMA] = ACTIONS(8352), + [aux_sym_const_declaration_token1] = ACTIONS(8350), + [anon_sym_LPAREN] = ACTIONS(8352), + [aux_sym_as_type_clause_token2] = ACTIONS(8350), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8350), + [aux_sym_visibility_token1] = ACTIONS(8350), + [aux_sym_visibility_token2] = ACTIONS(8350), + [aux_sym_elseif_fragment_token1] = ACTIONS(8350), + [aux_sym_else_fragment_token1] = ACTIONS(8350), + [aux_sym_select_statement_token1] = ACTIONS(8350), + [aux_sym__for_header_token1] = ACTIONS(8350), + [aux_sym_do_statement_token1] = ACTIONS(8350), + [aux_sym_do_condition_token1] = ACTIONS(8350), + [aux_sym_with_statement_token1] = ACTIONS(8350), + [aux_sym_exit_statement_token1] = ACTIONS(8350), + [sym_end_statement] = ACTIONS(8352), + [aux_sym_on_goto_statement_token1] = ACTIONS(8350), + [aux_sym_on_goto_statement_token2] = ACTIONS(8350), + [aux_sym_on_error_statement_token2] = ACTIONS(8350), + [sym__ambiguous_redim_statement] = ACTIONS(8352), + [aux_sym_erase_statement_token1] = ACTIONS(8350), + [aux_sym_open_statement_token1] = ACTIONS(8350), + [aux_sym_file_mode_token2] = ACTIONS(8350), + [aux_sym_file_access_token2] = ACTIONS(8350), + [aux_sym_file_lock_token2] = ACTIONS(8350), + [aux_sym_print_statement_token1] = ACTIONS(8350), + [anon_sym_PLUS] = ACTIONS(8352), + [anon_sym_DASH] = ACTIONS(8350), + [anon_sym_QMARK] = ACTIONS(8352), + [aux_sym_close_statement_token1] = ACTIONS(8350), + [aux_sym_put_statement_token1] = ACTIONS(8350), + [aux_sym_unlock_statement_token1] = ACTIONS(8350), + [aux_sym_seek_statement_token1] = ACTIONS(8350), + [sym_reset_statement] = ACTIONS(8350), + [aux_sym_raise_event_statement_token1] = ACTIONS(8350), + [sym_stop_statement] = ACTIONS(8350), + [sym_beep_statement] = ACTIONS(8350), + [aux_sym_unload_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token2] = ACTIONS(8350), + [aux_sym_def_type_statement_token3] = ACTIONS(8350), + [aux_sym_def_type_statement_token4] = ACTIONS(8350), + [aux_sym_def_type_statement_token5] = ACTIONS(8350), + [aux_sym_def_type_statement_token6] = ACTIONS(8350), + [aux_sym_def_type_statement_token7] = ACTIONS(8350), + [aux_sym_def_type_statement_token8] = ACTIONS(8350), + [aux_sym_def_type_statement_token9] = ACTIONS(8350), + [aux_sym_def_type_statement_token10] = ACTIONS(8350), + [aux_sym_def_type_statement_token11] = ACTIONS(8350), + [aux_sym_def_type_statement_token12] = ACTIONS(8350), + [aux_sym_def_type_statement_token13] = ACTIONS(8350), + [aux_sym_def_type_statement_token14] = ACTIONS(8350), + [aux_sym_call_statement_token1] = ACTIONS(8350), + [sym__ambiguous_call_statement] = ACTIONS(8350), + [aux_sym_addressof_expression_token1] = ACTIONS(8350), + [aux_sym_type_of_expression_token1] = ACTIONS(8350), + [aux_sym_unary_expression_token1] = ACTIONS(8350), + [sym_string_literal] = ACTIONS(8352), + [sym_number_literal] = ACTIONS(8352), + [aux_sym_boolean_literal_token1] = ACTIONS(8350), + [aux_sym_boolean_literal_token2] = ACTIONS(8350), + [sym_nothing_literal] = ACTIONS(8350), + [sym_null_literal] = ACTIONS(8350), + [sym_empty_literal] = ACTIONS(8350), + [sym_date_literal] = ACTIONS(8352), + [anon_sym_POUND] = ACTIONS(8350), + }, + [STATE(6047)] = { + [sym_identifier] = ACTIONS(8070), + [sym_newline] = ACTIONS(8072), + [anon_sym_COLON] = ACTIONS(8072), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8070), + [aux_sym_frm_property_statement_token1] = ACTIONS(8070), + [anon_sym_EQ] = ACTIONS(8072), + [anon_sym_DOT] = ACTIONS(8070), + [anon_sym_BANG] = ACTIONS(8072), + [aux_sym__attribute_identifier_token1] = ACTIONS(8070), + [aux_sym_option_statement_token3] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8070), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8070), + [aux_sym_preprocessor_const_token1] = ACTIONS(8070), + [sym_static_modifier] = ACTIONS(8070), + [sym__dim_keyword] = ACTIONS(8070), + [sym__redim_keyword] = ACTIONS(8070), + [aux_sym_get_accessor_token1] = ACTIONS(8070), + [aux_sym_set_accessor_token1] = ACTIONS(8070), + [anon_sym_COMMA] = ACTIONS(8072), + [aux_sym_const_declaration_token1] = ACTIONS(8070), + [anon_sym_LPAREN] = ACTIONS(8072), + [aux_sym_as_type_clause_token2] = ACTIONS(8070), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8070), + [aux_sym_visibility_token1] = ACTIONS(8070), + [aux_sym_visibility_token2] = ACTIONS(8070), + [aux_sym_elseif_fragment_token1] = ACTIONS(8070), + [aux_sym_else_fragment_token1] = ACTIONS(8070), + [aux_sym_select_statement_token1] = ACTIONS(8070), + [aux_sym__for_header_token1] = ACTIONS(8070), + [aux_sym_do_statement_token1] = ACTIONS(8070), + [aux_sym_do_condition_token1] = ACTIONS(8070), + [aux_sym_with_statement_token1] = ACTIONS(8070), + [aux_sym_exit_statement_token1] = ACTIONS(8070), + [sym_end_statement] = ACTIONS(8072), + [aux_sym_on_goto_statement_token1] = ACTIONS(8070), + [aux_sym_on_goto_statement_token2] = ACTIONS(8070), + [aux_sym_on_error_statement_token2] = ACTIONS(8070), + [sym__ambiguous_redim_statement] = ACTIONS(8072), + [aux_sym_erase_statement_token1] = ACTIONS(8070), + [aux_sym_open_statement_token1] = ACTIONS(8070), + [aux_sym_file_mode_token2] = ACTIONS(8070), + [aux_sym_file_access_token2] = ACTIONS(8070), + [aux_sym_file_lock_token2] = ACTIONS(8070), + [aux_sym_print_statement_token1] = ACTIONS(8070), + [anon_sym_PLUS] = ACTIONS(8072), + [anon_sym_DASH] = ACTIONS(8070), + [anon_sym_QMARK] = ACTIONS(8072), + [aux_sym_close_statement_token1] = ACTIONS(8070), + [aux_sym_put_statement_token1] = ACTIONS(8070), + [aux_sym_unlock_statement_token1] = ACTIONS(8070), + [aux_sym_seek_statement_token1] = ACTIONS(8070), + [sym_reset_statement] = ACTIONS(8070), + [aux_sym_raise_event_statement_token1] = ACTIONS(8070), + [sym_stop_statement] = ACTIONS(8070), + [sym_beep_statement] = ACTIONS(8070), + [aux_sym_unload_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token1] = ACTIONS(8070), + [aux_sym_def_type_statement_token2] = ACTIONS(8070), + [aux_sym_def_type_statement_token3] = ACTIONS(8070), + [aux_sym_def_type_statement_token4] = ACTIONS(8070), + [aux_sym_def_type_statement_token5] = ACTIONS(8070), + [aux_sym_def_type_statement_token6] = ACTIONS(8070), + [aux_sym_def_type_statement_token7] = ACTIONS(8070), + [aux_sym_def_type_statement_token8] = ACTIONS(8070), + [aux_sym_def_type_statement_token9] = ACTIONS(8070), + [aux_sym_def_type_statement_token10] = ACTIONS(8070), + [aux_sym_def_type_statement_token11] = ACTIONS(8070), + [aux_sym_def_type_statement_token12] = ACTIONS(8070), + [aux_sym_def_type_statement_token13] = ACTIONS(8070), + [aux_sym_def_type_statement_token14] = ACTIONS(8070), + [aux_sym_call_statement_token1] = ACTIONS(8070), + [sym__ambiguous_call_statement] = ACTIONS(8070), + [aux_sym_addressof_expression_token1] = ACTIONS(8070), + [aux_sym_type_of_expression_token1] = ACTIONS(8070), + [aux_sym_unary_expression_token1] = ACTIONS(8070), + [sym_string_literal] = ACTIONS(8072), + [sym_number_literal] = ACTIONS(8072), + [aux_sym_boolean_literal_token1] = ACTIONS(8070), + [aux_sym_boolean_literal_token2] = ACTIONS(8070), + [sym_nothing_literal] = ACTIONS(8070), + [sym_null_literal] = ACTIONS(8070), + [sym_empty_literal] = ACTIONS(8070), + [sym_date_literal] = ACTIONS(8072), + [anon_sym_POUND] = ACTIONS(8070), + }, + [STATE(6048)] = { + [sym_identifier] = ACTIONS(3996), + [sym_newline] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3996), + [aux_sym_frm_property_statement_token1] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3994), + [aux_sym__attribute_identifier_token1] = ACTIONS(3996), + [aux_sym_option_statement_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3996), + [aux_sym_preprocessor_const_token1] = ACTIONS(3996), + [sym_static_modifier] = ACTIONS(3996), + [sym__dim_keyword] = ACTIONS(3996), + [sym__redim_keyword] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3996), + [aux_sym_set_accessor_token1] = ACTIONS(3996), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3994), + [aux_sym_as_type_clause_token2] = ACTIONS(3996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3996), + [aux_sym_visibility_token1] = ACTIONS(3996), + [aux_sym_visibility_token2] = ACTIONS(3996), + [aux_sym_elseif_fragment_token1] = ACTIONS(3996), + [aux_sym_else_fragment_token1] = ACTIONS(3996), + [aux_sym_select_statement_token1] = ACTIONS(3996), + [aux_sym__for_header_token1] = ACTIONS(3996), + [aux_sym_do_statement_token1] = ACTIONS(3996), + [aux_sym_do_condition_token1] = ACTIONS(3996), + [aux_sym_with_statement_token1] = ACTIONS(3996), + [aux_sym_exit_statement_token1] = ACTIONS(3996), + [sym_end_statement] = ACTIONS(3994), + [aux_sym_on_goto_statement_token1] = ACTIONS(3996), + [aux_sym_on_goto_statement_token2] = ACTIONS(3996), + [aux_sym_on_error_statement_token2] = ACTIONS(3996), + [sym__ambiguous_redim_statement] = ACTIONS(3994), + [aux_sym_erase_statement_token1] = ACTIONS(3996), + [aux_sym_open_statement_token1] = ACTIONS(3996), + [aux_sym_file_mode_token2] = ACTIONS(3996), + [aux_sym_file_access_token2] = ACTIONS(3996), + [aux_sym_file_lock_token2] = ACTIONS(3996), + [aux_sym_print_statement_token1] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3994), + [aux_sym_close_statement_token1] = ACTIONS(3996), + [aux_sym_put_statement_token1] = ACTIONS(3996), + [aux_sym_unlock_statement_token1] = ACTIONS(3996), + [aux_sym_seek_statement_token1] = ACTIONS(3996), + [sym_reset_statement] = ACTIONS(3996), + [aux_sym_raise_event_statement_token1] = ACTIONS(3996), + [sym_stop_statement] = ACTIONS(3996), + [sym_beep_statement] = ACTIONS(3996), + [aux_sym_unload_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token2] = ACTIONS(3996), + [aux_sym_def_type_statement_token3] = ACTIONS(3996), + [aux_sym_def_type_statement_token4] = ACTIONS(3996), + [aux_sym_def_type_statement_token5] = ACTIONS(3996), + [aux_sym_def_type_statement_token6] = ACTIONS(3996), + [aux_sym_def_type_statement_token7] = ACTIONS(3996), + [aux_sym_def_type_statement_token8] = ACTIONS(3996), + [aux_sym_def_type_statement_token9] = ACTIONS(3996), + [aux_sym_def_type_statement_token10] = ACTIONS(3996), + [aux_sym_def_type_statement_token11] = ACTIONS(3996), + [aux_sym_def_type_statement_token12] = ACTIONS(3996), + [aux_sym_def_type_statement_token13] = ACTIONS(3996), + [aux_sym_def_type_statement_token14] = ACTIONS(3996), + [aux_sym_call_statement_token1] = ACTIONS(3996), + [sym__ambiguous_call_statement] = ACTIONS(3996), + [aux_sym_addressof_expression_token1] = ACTIONS(3996), + [aux_sym_type_of_expression_token1] = ACTIONS(3996), + [aux_sym_unary_expression_token1] = ACTIONS(3996), + [sym_string_literal] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3994), + [aux_sym_boolean_literal_token1] = ACTIONS(3996), + [aux_sym_boolean_literal_token2] = ACTIONS(3996), + [sym_nothing_literal] = ACTIONS(3996), + [sym_null_literal] = ACTIONS(3996), + [sym_empty_literal] = ACTIONS(3996), + [sym_date_literal] = ACTIONS(3994), + [anon_sym_POUND] = ACTIONS(3996), + }, + [STATE(6049)] = { + [sym_identifier] = ACTIONS(8620), + [sym_newline] = ACTIONS(8622), + [anon_sym_COLON] = ACTIONS(8622), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8620), + [aux_sym_frm_property_statement_token1] = ACTIONS(8620), + [anon_sym_EQ] = ACTIONS(8622), + [anon_sym_DOT] = ACTIONS(8620), + [anon_sym_BANG] = ACTIONS(8622), + [aux_sym__attribute_identifier_token1] = ACTIONS(8620), + [aux_sym_option_statement_token3] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8620), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8620), + [aux_sym_preprocessor_const_token1] = ACTIONS(8620), + [sym_static_modifier] = ACTIONS(8620), + [sym__dim_keyword] = ACTIONS(8620), + [sym__redim_keyword] = ACTIONS(8620), + [aux_sym_get_accessor_token1] = ACTIONS(8620), + [aux_sym_set_accessor_token1] = ACTIONS(8620), + [anon_sym_COMMA] = ACTIONS(8622), + [aux_sym_const_declaration_token1] = ACTIONS(8620), + [anon_sym_LPAREN] = ACTIONS(8622), + [aux_sym_as_type_clause_token2] = ACTIONS(8620), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8620), + [aux_sym_visibility_token1] = ACTIONS(8620), + [aux_sym_visibility_token2] = ACTIONS(8620), + [aux_sym_elseif_fragment_token1] = ACTIONS(8620), + [aux_sym_else_fragment_token1] = ACTIONS(8620), + [aux_sym_select_statement_token1] = ACTIONS(8620), + [aux_sym__for_header_token1] = ACTIONS(8620), + [aux_sym_do_statement_token1] = ACTIONS(8620), + [aux_sym_do_condition_token1] = ACTIONS(8620), + [aux_sym_with_statement_token1] = ACTIONS(8620), + [aux_sym_exit_statement_token1] = ACTIONS(8620), + [sym_end_statement] = ACTIONS(8622), + [aux_sym_on_goto_statement_token1] = ACTIONS(8620), + [aux_sym_on_goto_statement_token2] = ACTIONS(8620), + [aux_sym_on_error_statement_token2] = ACTIONS(8620), + [sym__ambiguous_redim_statement] = ACTIONS(8622), + [aux_sym_erase_statement_token1] = ACTIONS(8620), + [aux_sym_open_statement_token1] = ACTIONS(8620), + [aux_sym_file_mode_token2] = ACTIONS(8620), + [aux_sym_file_access_token2] = ACTIONS(8620), + [aux_sym_file_lock_token2] = ACTIONS(8620), + [aux_sym_print_statement_token1] = ACTIONS(8620), + [anon_sym_PLUS] = ACTIONS(8622), + [anon_sym_DASH] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(8622), + [aux_sym_close_statement_token1] = ACTIONS(8620), + [aux_sym_put_statement_token1] = ACTIONS(8620), + [aux_sym_unlock_statement_token1] = ACTIONS(8620), + [aux_sym_seek_statement_token1] = ACTIONS(8620), + [sym_reset_statement] = ACTIONS(8620), + [aux_sym_raise_event_statement_token1] = ACTIONS(8620), + [sym_stop_statement] = ACTIONS(8620), + [sym_beep_statement] = ACTIONS(8620), + [aux_sym_unload_statement_token1] = ACTIONS(8620), + [aux_sym_def_type_statement_token1] = ACTIONS(8620), + [aux_sym_def_type_statement_token2] = ACTIONS(8620), + [aux_sym_def_type_statement_token3] = ACTIONS(8620), + [aux_sym_def_type_statement_token4] = ACTIONS(8620), + [aux_sym_def_type_statement_token5] = ACTIONS(8620), + [aux_sym_def_type_statement_token6] = ACTIONS(8620), + [aux_sym_def_type_statement_token7] = ACTIONS(8620), + [aux_sym_def_type_statement_token8] = ACTIONS(8620), + [aux_sym_def_type_statement_token9] = ACTIONS(8620), + [aux_sym_def_type_statement_token10] = ACTIONS(8620), + [aux_sym_def_type_statement_token11] = ACTIONS(8620), + [aux_sym_def_type_statement_token12] = ACTIONS(8620), + [aux_sym_def_type_statement_token13] = ACTIONS(8620), + [aux_sym_def_type_statement_token14] = ACTIONS(8620), + [aux_sym_call_statement_token1] = ACTIONS(8620), + [sym__ambiguous_call_statement] = ACTIONS(8620), + [aux_sym_addressof_expression_token1] = ACTIONS(8620), + [aux_sym_type_of_expression_token1] = ACTIONS(8620), + [aux_sym_unary_expression_token1] = ACTIONS(8620), + [sym_string_literal] = ACTIONS(8622), + [sym_number_literal] = ACTIONS(8622), + [aux_sym_boolean_literal_token1] = ACTIONS(8620), + [aux_sym_boolean_literal_token2] = ACTIONS(8620), + [sym_nothing_literal] = ACTIONS(8620), + [sym_null_literal] = ACTIONS(8620), + [sym_empty_literal] = ACTIONS(8620), + [sym_date_literal] = ACTIONS(8622), + [anon_sym_POUND] = ACTIONS(8620), + }, + [STATE(6050)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(5983), + [sym_identifier] = ACTIONS(8935), + [sym_newline] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(10848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8935), + [aux_sym_frm_property_statement_token1] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_BANG] = ACTIONS(8937), + [aux_sym__attribute_identifier_token1] = ACTIONS(8935), + [aux_sym_option_statement_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8935), + [aux_sym_preprocessor_const_token1] = ACTIONS(8935), + [sym_static_modifier] = ACTIONS(8935), + [sym__dim_keyword] = ACTIONS(8935), + [sym__redim_keyword] = ACTIONS(8935), + [aux_sym_get_accessor_token1] = ACTIONS(8935), + [aux_sym_set_accessor_token1] = ACTIONS(8935), + [aux_sym_const_declaration_token1] = ACTIONS(8935), + [anon_sym_LPAREN] = ACTIONS(8937), + [aux_sym_as_type_clause_token2] = ACTIONS(8935), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8935), + [aux_sym_visibility_token1] = ACTIONS(8935), + [aux_sym_visibility_token2] = ACTIONS(8935), + [aux_sym_elseif_fragment_token1] = ACTIONS(8935), + [aux_sym_else_fragment_token1] = ACTIONS(8935), + [aux_sym_select_statement_token1] = ACTIONS(8935), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8935), + [aux_sym__for_header_token1] = ACTIONS(8935), + [aux_sym_do_statement_token1] = ACTIONS(8935), + [aux_sym_do_condition_token1] = ACTIONS(8935), + [aux_sym_with_statement_token1] = ACTIONS(8935), + [aux_sym_exit_statement_token1] = ACTIONS(8935), + [sym_end_statement] = ACTIONS(8937), + [aux_sym_on_goto_statement_token1] = ACTIONS(8935), + [aux_sym_on_goto_statement_token2] = ACTIONS(8935), + [aux_sym_on_error_statement_token2] = ACTIONS(8935), + [sym__ambiguous_redim_statement] = ACTIONS(8937), + [aux_sym_erase_statement_token1] = ACTIONS(8935), + [aux_sym_open_statement_token1] = ACTIONS(8935), + [aux_sym_file_mode_token2] = ACTIONS(8935), + [aux_sym_file_access_token2] = ACTIONS(8935), + [aux_sym_file_lock_token2] = ACTIONS(8935), + [aux_sym_print_statement_token1] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [aux_sym_close_statement_token1] = ACTIONS(8935), + [aux_sym_put_statement_token1] = ACTIONS(8935), + [aux_sym_unlock_statement_token1] = ACTIONS(8935), + [aux_sym_seek_statement_token1] = ACTIONS(8935), + [sym_reset_statement] = ACTIONS(8935), + [aux_sym_raise_event_statement_token1] = ACTIONS(8935), + [sym_stop_statement] = ACTIONS(8935), + [sym_beep_statement] = ACTIONS(8935), + [aux_sym_unload_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token2] = ACTIONS(8935), + [aux_sym_def_type_statement_token3] = ACTIONS(8935), + [aux_sym_def_type_statement_token4] = ACTIONS(8935), + [aux_sym_def_type_statement_token5] = ACTIONS(8935), + [aux_sym_def_type_statement_token6] = ACTIONS(8935), + [aux_sym_def_type_statement_token7] = ACTIONS(8935), + [aux_sym_def_type_statement_token8] = ACTIONS(8935), + [aux_sym_def_type_statement_token9] = ACTIONS(8935), + [aux_sym_def_type_statement_token10] = ACTIONS(8935), + [aux_sym_def_type_statement_token11] = ACTIONS(8935), + [aux_sym_def_type_statement_token12] = ACTIONS(8935), + [aux_sym_def_type_statement_token13] = ACTIONS(8935), + [aux_sym_def_type_statement_token14] = ACTIONS(8935), + [aux_sym_call_statement_token1] = ACTIONS(8935), + [sym__ambiguous_call_statement] = ACTIONS(8935), + [aux_sym_addressof_expression_token1] = ACTIONS(8935), + [aux_sym_type_of_expression_token1] = ACTIONS(8935), + [aux_sym_unary_expression_token1] = ACTIONS(8935), + [sym_string_literal] = ACTIONS(8937), + [sym_number_literal] = ACTIONS(8937), + [aux_sym_boolean_literal_token1] = ACTIONS(8935), + [aux_sym_boolean_literal_token2] = ACTIONS(8935), + [sym_nothing_literal] = ACTIONS(8935), + [sym_null_literal] = ACTIONS(8935), + [sym_empty_literal] = ACTIONS(8935), + [sym_date_literal] = ACTIONS(8937), + [anon_sym_POUND] = ACTIONS(8935), + }, + [STATE(6051)] = { + [aux_sym__argument_sequence_repeat2] = STATE(6218), + [sym_identifier] = ACTIONS(4172), + [sym_newline] = ACTIONS(4170), + [anon_sym_COLON] = ACTIONS(4170), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4172), + [aux_sym_frm_property_statement_token1] = ACTIONS(4172), + [anon_sym_DOT] = ACTIONS(4172), + [anon_sym_BANG] = ACTIONS(4170), + [aux_sym__attribute_identifier_token1] = ACTIONS(4172), + [aux_sym_option_statement_token3] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4172), + [aux_sym_preprocessor_const_token1] = ACTIONS(4172), + [sym_static_modifier] = ACTIONS(4172), + [sym__dim_keyword] = ACTIONS(4172), + [sym__redim_keyword] = ACTIONS(4172), + [aux_sym_get_accessor_token1] = ACTIONS(4172), + [aux_sym_set_accessor_token1] = ACTIONS(4172), + [anon_sym_COMMA] = ACTIONS(5314), + [aux_sym_const_declaration_token1] = ACTIONS(4172), + [anon_sym_LPAREN] = ACTIONS(4170), + [aux_sym_as_type_clause_token2] = ACTIONS(4172), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4172), + [aux_sym_visibility_token1] = ACTIONS(4172), + [aux_sym_visibility_token2] = ACTIONS(4172), + [aux_sym_elseif_fragment_token1] = ACTIONS(4172), + [aux_sym_else_fragment_token1] = ACTIONS(4172), + [aux_sym_select_statement_token1] = ACTIONS(4172), + [aux_sym__for_header_token1] = ACTIONS(4172), + [aux_sym_do_statement_token1] = ACTIONS(4172), + [aux_sym_do_condition_token1] = ACTIONS(4172), + [aux_sym_with_statement_token1] = ACTIONS(4172), + [aux_sym_exit_statement_token1] = ACTIONS(4172), + [sym_end_statement] = ACTIONS(4170), + [aux_sym_on_goto_statement_token1] = ACTIONS(4172), + [aux_sym_on_goto_statement_token2] = ACTIONS(4172), + [aux_sym_on_error_statement_token2] = ACTIONS(4172), + [sym__ambiguous_redim_statement] = ACTIONS(4170), + [aux_sym_erase_statement_token1] = ACTIONS(4172), + [aux_sym_open_statement_token1] = ACTIONS(4172), + [aux_sym_file_mode_token2] = ACTIONS(4172), + [aux_sym_file_access_token2] = ACTIONS(4172), + [aux_sym_file_lock_token2] = ACTIONS(4172), + [aux_sym_print_statement_token1] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4172), + [anon_sym_QMARK] = ACTIONS(4170), + [aux_sym_close_statement_token1] = ACTIONS(4172), + [aux_sym_put_statement_token1] = ACTIONS(4172), + [aux_sym_unlock_statement_token1] = ACTIONS(4172), + [aux_sym_seek_statement_token1] = ACTIONS(4172), + [sym_reset_statement] = ACTIONS(4172), + [aux_sym_raise_event_statement_token1] = ACTIONS(4172), + [sym_stop_statement] = ACTIONS(4172), + [sym_beep_statement] = ACTIONS(4172), + [aux_sym_unload_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token1] = ACTIONS(4172), + [aux_sym_def_type_statement_token2] = ACTIONS(4172), + [aux_sym_def_type_statement_token3] = ACTIONS(4172), + [aux_sym_def_type_statement_token4] = ACTIONS(4172), + [aux_sym_def_type_statement_token5] = ACTIONS(4172), + [aux_sym_def_type_statement_token6] = ACTIONS(4172), + [aux_sym_def_type_statement_token7] = ACTIONS(4172), + [aux_sym_def_type_statement_token8] = ACTIONS(4172), + [aux_sym_def_type_statement_token9] = ACTIONS(4172), + [aux_sym_def_type_statement_token10] = ACTIONS(4172), + [aux_sym_def_type_statement_token11] = ACTIONS(4172), + [aux_sym_def_type_statement_token12] = ACTIONS(4172), + [aux_sym_def_type_statement_token13] = ACTIONS(4172), + [aux_sym_def_type_statement_token14] = ACTIONS(4172), + [aux_sym_call_statement_token1] = ACTIONS(4172), + [sym__ambiguous_call_statement] = ACTIONS(4172), + [aux_sym_addressof_expression_token1] = ACTIONS(4172), + [aux_sym_type_of_expression_token1] = ACTIONS(4172), + [aux_sym_unary_expression_token1] = ACTIONS(4172), + [sym_string_literal] = ACTIONS(4170), + [sym_number_literal] = ACTIONS(4170), + [aux_sym_boolean_literal_token1] = ACTIONS(4172), + [aux_sym_boolean_literal_token2] = ACTIONS(4172), + [sym_nothing_literal] = ACTIONS(4172), + [sym_null_literal] = ACTIONS(4172), + [sym_empty_literal] = ACTIONS(4172), + [sym_date_literal] = ACTIONS(4170), + [anon_sym_POUND] = ACTIONS(4172), + }, + [STATE(6052)] = { + [sym_argument_list] = STATE(10051), + [sym_identifier] = ACTIONS(8393), + [sym_newline] = ACTIONS(8395), + [anon_sym_COLON] = ACTIONS(8395), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8393), + [aux_sym_frm_property_statement_token1] = ACTIONS(8393), + [anon_sym_DOT] = ACTIONS(8393), + [anon_sym_BANG] = ACTIONS(8395), + [aux_sym__attribute_identifier_token1] = ACTIONS(8393), + [aux_sym_option_statement_token3] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8393), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8393), + [aux_sym_preprocessor_const_token1] = ACTIONS(8393), + [sym_static_modifier] = ACTIONS(8393), + [sym__dim_keyword] = ACTIONS(8393), + [sym__redim_keyword] = ACTIONS(8393), + [aux_sym_get_accessor_token1] = ACTIONS(8393), + [aux_sym_set_accessor_token1] = ACTIONS(8393), + [anon_sym_COMMA] = ACTIONS(8395), + [aux_sym_const_declaration_token1] = ACTIONS(8393), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(8393), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8393), + [aux_sym_visibility_token1] = ACTIONS(8393), + [aux_sym_visibility_token2] = ACTIONS(8393), + [aux_sym_elseif_fragment_token1] = ACTIONS(8393), + [aux_sym_else_fragment_token1] = ACTIONS(8393), + [aux_sym_select_statement_token1] = ACTIONS(8393), + [aux_sym__for_header_token1] = ACTIONS(8393), + [aux_sym_do_statement_token1] = ACTIONS(8393), + [aux_sym_do_condition_token1] = ACTIONS(8393), + [aux_sym_with_statement_token1] = ACTIONS(8393), + [aux_sym_exit_statement_token1] = ACTIONS(8393), + [sym_end_statement] = ACTIONS(8395), + [aux_sym_on_goto_statement_token1] = ACTIONS(8393), + [aux_sym_on_goto_statement_token2] = ACTIONS(8393), + [aux_sym_on_error_statement_token2] = ACTIONS(8393), + [sym__ambiguous_redim_statement] = ACTIONS(8395), + [aux_sym_erase_statement_token1] = ACTIONS(8393), + [aux_sym_open_statement_token1] = ACTIONS(8393), + [aux_sym_file_mode_token2] = ACTIONS(8393), + [aux_sym_file_access_token2] = ACTIONS(8393), + [aux_sym_file_lock_token2] = ACTIONS(8393), + [aux_sym_print_statement_token1] = ACTIONS(8393), + [anon_sym_PLUS] = ACTIONS(8395), + [anon_sym_DASH] = ACTIONS(8393), + [anon_sym_QMARK] = ACTIONS(8395), + [aux_sym_close_statement_token1] = ACTIONS(8393), + [aux_sym_put_statement_token1] = ACTIONS(8393), + [aux_sym_unlock_statement_token1] = ACTIONS(8393), + [aux_sym_seek_statement_token1] = ACTIONS(8393), + [sym_reset_statement] = ACTIONS(8393), + [aux_sym_raise_event_statement_token1] = ACTIONS(8393), + [sym_stop_statement] = ACTIONS(8393), + [sym_beep_statement] = ACTIONS(8393), + [aux_sym_unload_statement_token1] = ACTIONS(8393), + [aux_sym_def_type_statement_token1] = ACTIONS(8393), + [aux_sym_def_type_statement_token2] = ACTIONS(8393), + [aux_sym_def_type_statement_token3] = ACTIONS(8393), + [aux_sym_def_type_statement_token4] = ACTIONS(8393), + [aux_sym_def_type_statement_token5] = ACTIONS(8393), + [aux_sym_def_type_statement_token6] = ACTIONS(8393), + [aux_sym_def_type_statement_token7] = ACTIONS(8393), + [aux_sym_def_type_statement_token8] = ACTIONS(8393), + [aux_sym_def_type_statement_token9] = ACTIONS(8393), + [aux_sym_def_type_statement_token10] = ACTIONS(8393), + [aux_sym_def_type_statement_token11] = ACTIONS(8393), + [aux_sym_def_type_statement_token12] = ACTIONS(8393), + [aux_sym_def_type_statement_token13] = ACTIONS(8393), + [aux_sym_def_type_statement_token14] = ACTIONS(8393), + [aux_sym_call_statement_token1] = ACTIONS(8393), + [sym__ambiguous_call_statement] = ACTIONS(8393), + [aux_sym_addressof_expression_token1] = ACTIONS(8393), + [aux_sym_type_of_expression_token1] = ACTIONS(8393), + [aux_sym_unary_expression_token1] = ACTIONS(8393), + [sym_string_literal] = ACTIONS(8395), + [sym_number_literal] = ACTIONS(8395), + [aux_sym_boolean_literal_token1] = ACTIONS(8393), + [aux_sym_boolean_literal_token2] = ACTIONS(8393), + [sym_nothing_literal] = ACTIONS(8393), + [sym_null_literal] = ACTIONS(8393), + [sym_empty_literal] = ACTIONS(8393), + [sym_date_literal] = ACTIONS(8395), + [anon_sym_POUND] = ACTIONS(8393), + }, + [STATE(6053)] = { + [sym_identifier] = ACTIONS(8980), + [sym_newline] = ACTIONS(8982), + [anon_sym_COLON] = ACTIONS(8982), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8980), + [aux_sym_frm_property_statement_token1] = ACTIONS(8980), + [anon_sym_DOT] = ACTIONS(8980), + [anon_sym_BANG] = ACTIONS(8982), + [aux_sym__attribute_identifier_token1] = ACTIONS(8980), + [aux_sym_option_statement_token3] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8980), + [aux_sym_preprocessor_const_token1] = ACTIONS(8980), + [sym_static_modifier] = ACTIONS(8980), + [sym__dim_keyword] = ACTIONS(8980), + [sym__redim_keyword] = ACTIONS(8980), + [aux_sym_get_accessor_token1] = ACTIONS(8980), + [aux_sym_set_accessor_token1] = ACTIONS(8980), + [aux_sym_const_declaration_token1] = ACTIONS(8980), + [anon_sym_LPAREN] = ACTIONS(8982), + [aux_sym_as_type_clause_token2] = ACTIONS(8980), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8980), + [aux_sym_visibility_token1] = ACTIONS(8980), + [aux_sym_visibility_token2] = ACTIONS(8980), + [aux_sym_elseif_fragment_token1] = ACTIONS(8980), + [aux_sym_else_fragment_token1] = ACTIONS(8980), + [aux_sym_select_statement_token1] = ACTIONS(8980), + [aux_sym__for_header_token1] = ACTIONS(8980), + [aux_sym_do_statement_token1] = ACTIONS(8980), + [aux_sym_do_condition_token1] = ACTIONS(8980), + [aux_sym_while_statement_token1] = ACTIONS(8980), + [aux_sym_with_statement_token1] = ACTIONS(8980), + [aux_sym_exit_statement_token1] = ACTIONS(8980), + [sym_end_statement] = ACTIONS(8982), + [aux_sym_on_goto_statement_token1] = ACTIONS(8980), + [aux_sym_on_goto_statement_token2] = ACTIONS(8980), + [aux_sym_on_error_statement_token2] = ACTIONS(8980), + [sym__ambiguous_redim_statement] = ACTIONS(8982), + [aux_sym_erase_statement_token1] = ACTIONS(8980), + [aux_sym_open_statement_token1] = ACTIONS(8980), + [aux_sym_open_statement_token3] = ACTIONS(10947), + [aux_sym_file_mode_token2] = ACTIONS(8980), + [aux_sym_file_access_token2] = ACTIONS(8980), + [aux_sym_file_lock_token2] = ACTIONS(8980), + [aux_sym_print_statement_token1] = ACTIONS(8980), + [anon_sym_PLUS] = ACTIONS(8982), + [anon_sym_DASH] = ACTIONS(8980), + [anon_sym_QMARK] = ACTIONS(8982), + [aux_sym_close_statement_token1] = ACTIONS(8980), + [aux_sym_put_statement_token1] = ACTIONS(8980), + [aux_sym_unlock_statement_token1] = ACTIONS(8980), + [aux_sym_seek_statement_token1] = ACTIONS(8980), + [sym_reset_statement] = ACTIONS(8980), + [aux_sym_raise_event_statement_token1] = ACTIONS(8980), + [sym_stop_statement] = ACTIONS(8980), + [sym_beep_statement] = ACTIONS(8980), + [aux_sym_unload_statement_token1] = ACTIONS(8980), + [aux_sym_def_type_statement_token1] = ACTIONS(8980), + [aux_sym_def_type_statement_token2] = ACTIONS(8980), + [aux_sym_def_type_statement_token3] = ACTIONS(8980), + [aux_sym_def_type_statement_token4] = ACTIONS(8980), + [aux_sym_def_type_statement_token5] = ACTIONS(8980), + [aux_sym_def_type_statement_token6] = ACTIONS(8980), + [aux_sym_def_type_statement_token7] = ACTIONS(8980), + [aux_sym_def_type_statement_token8] = ACTIONS(8980), + [aux_sym_def_type_statement_token9] = ACTIONS(8980), + [aux_sym_def_type_statement_token10] = ACTIONS(8980), + [aux_sym_def_type_statement_token11] = ACTIONS(8980), + [aux_sym_def_type_statement_token12] = ACTIONS(8980), + [aux_sym_def_type_statement_token13] = ACTIONS(8980), + [aux_sym_def_type_statement_token14] = ACTIONS(8980), + [aux_sym_call_statement_token1] = ACTIONS(8980), + [sym__ambiguous_call_statement] = ACTIONS(8980), + [aux_sym_addressof_expression_token1] = ACTIONS(8980), + [aux_sym_type_of_expression_token1] = ACTIONS(8980), + [aux_sym_unary_expression_token1] = ACTIONS(8980), + [sym_string_literal] = ACTIONS(8982), + [sym_number_literal] = ACTIONS(8982), + [aux_sym_boolean_literal_token1] = ACTIONS(8980), + [aux_sym_boolean_literal_token2] = ACTIONS(8980), + [sym_nothing_literal] = ACTIONS(8980), + [sym_null_literal] = ACTIONS(8980), + [sym_empty_literal] = ACTIONS(8980), + [sym_date_literal] = ACTIONS(8982), + [anon_sym_POUND] = ACTIONS(8980), + }, + [STATE(6054)] = { + [sym_identifier] = ACTIONS(8467), + [sym_newline] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8467), + [aux_sym_frm_property_statement_token1] = ACTIONS(8467), + [anon_sym_DOT] = ACTIONS(8467), + [anon_sym_BANG] = ACTIONS(6089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8467), + [aux_sym_option_statement_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8467), + [aux_sym_preprocessor_const_token1] = ACTIONS(8467), + [sym_static_modifier] = ACTIONS(8467), + [sym__dim_keyword] = ACTIONS(8467), + [sym__redim_keyword] = ACTIONS(8467), + [aux_sym_get_accessor_token1] = ACTIONS(8467), + [aux_sym_set_accessor_token1] = ACTIONS(8467), + [anon_sym_COMMA] = ACTIONS(6089), + [aux_sym_const_declaration_token1] = ACTIONS(8467), + [anon_sym_LPAREN] = ACTIONS(6089), + [aux_sym_as_type_clause_token2] = ACTIONS(8467), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8467), + [aux_sym_visibility_token1] = ACTIONS(8467), + [aux_sym_visibility_token2] = ACTIONS(8467), + [aux_sym_elseif_fragment_token1] = ACTIONS(8467), + [aux_sym_else_fragment_token1] = ACTIONS(8467), + [aux_sym_select_statement_token1] = ACTIONS(8467), + [aux_sym_select_statement_token2] = ACTIONS(8467), + [aux_sym__for_header_token1] = ACTIONS(8467), + [aux_sym_do_statement_token1] = ACTIONS(8467), + [aux_sym_do_condition_token1] = ACTIONS(8467), + [aux_sym_with_statement_token1] = ACTIONS(8467), + [aux_sym_exit_statement_token1] = ACTIONS(8467), + [sym_end_statement] = ACTIONS(6089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8467), + [aux_sym_on_goto_statement_token2] = ACTIONS(8467), + [aux_sym_on_error_statement_token2] = ACTIONS(8467), + [sym__ambiguous_redim_statement] = ACTIONS(6089), + [aux_sym_erase_statement_token1] = ACTIONS(8467), + [aux_sym_open_statement_token1] = ACTIONS(8467), + [aux_sym_file_mode_token2] = ACTIONS(8467), + [aux_sym_file_access_token2] = ACTIONS(8467), + [aux_sym_file_lock_token2] = ACTIONS(8467), + [aux_sym_print_statement_token1] = ACTIONS(8467), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(8467), + [anon_sym_QMARK] = ACTIONS(6089), + [aux_sym_close_statement_token1] = ACTIONS(8467), + [aux_sym_put_statement_token1] = ACTIONS(8467), + [aux_sym_unlock_statement_token1] = ACTIONS(8467), + [aux_sym_seek_statement_token1] = ACTIONS(8467), + [sym_reset_statement] = ACTIONS(8467), + [aux_sym_raise_event_statement_token1] = ACTIONS(8467), + [sym_stop_statement] = ACTIONS(8467), + [sym_beep_statement] = ACTIONS(8467), + [aux_sym_unload_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token2] = ACTIONS(8467), + [aux_sym_def_type_statement_token3] = ACTIONS(8467), + [aux_sym_def_type_statement_token4] = ACTIONS(8467), + [aux_sym_def_type_statement_token5] = ACTIONS(8467), + [aux_sym_def_type_statement_token6] = ACTIONS(8467), + [aux_sym_def_type_statement_token7] = ACTIONS(8467), + [aux_sym_def_type_statement_token8] = ACTIONS(8467), + [aux_sym_def_type_statement_token9] = ACTIONS(8467), + [aux_sym_def_type_statement_token10] = ACTIONS(8467), + [aux_sym_def_type_statement_token11] = ACTIONS(8467), + [aux_sym_def_type_statement_token12] = ACTIONS(8467), + [aux_sym_def_type_statement_token13] = ACTIONS(8467), + [aux_sym_def_type_statement_token14] = ACTIONS(8467), + [aux_sym_call_statement_token1] = ACTIONS(8467), + [sym__ambiguous_call_statement] = ACTIONS(8467), + [aux_sym_addressof_expression_token1] = ACTIONS(8467), + [aux_sym_type_of_expression_token1] = ACTIONS(8467), + [aux_sym_unary_expression_token1] = ACTIONS(8467), + [sym_string_literal] = ACTIONS(6089), + [sym_number_literal] = ACTIONS(6089), + [aux_sym_boolean_literal_token1] = ACTIONS(8467), + [aux_sym_boolean_literal_token2] = ACTIONS(8467), + [sym_nothing_literal] = ACTIONS(8467), + [sym_null_literal] = ACTIONS(8467), + [sym_empty_literal] = ACTIONS(8467), + [sym_date_literal] = ACTIONS(6089), + [anon_sym_POUND] = ACTIONS(8467), + }, + [STATE(6055)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(5873), + [sym_identifier] = ACTIONS(8733), + [sym_newline] = ACTIONS(8735), + [anon_sym_COLON] = ACTIONS(10854), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8733), + [aux_sym_frm_property_statement_token1] = ACTIONS(8733), + [anon_sym_DOT] = ACTIONS(8733), + [anon_sym_BANG] = ACTIONS(8735), + [aux_sym__attribute_identifier_token1] = ACTIONS(8733), + [aux_sym_option_statement_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8733), + [aux_sym_preprocessor_const_token1] = ACTIONS(8733), + [sym_static_modifier] = ACTIONS(8733), + [sym__dim_keyword] = ACTIONS(8733), + [sym__redim_keyword] = ACTIONS(8733), + [aux_sym_get_accessor_token1] = ACTIONS(8733), + [aux_sym_set_accessor_token1] = ACTIONS(8733), + [aux_sym_const_declaration_token1] = ACTIONS(8733), + [anon_sym_LPAREN] = ACTIONS(8735), + [aux_sym_as_type_clause_token2] = ACTIONS(8733), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8733), + [aux_sym_visibility_token1] = ACTIONS(8733), + [aux_sym_visibility_token2] = ACTIONS(8733), + [aux_sym_elseif_fragment_token1] = ACTIONS(8733), + [aux_sym_else_fragment_token1] = ACTIONS(10949), + [aux_sym_select_statement_token1] = ACTIONS(8733), + [aux_sym__for_header_token1] = ACTIONS(8733), + [aux_sym_do_statement_token1] = ACTIONS(8733), + [aux_sym_do_condition_token1] = ACTIONS(8733), + [aux_sym_while_statement_token1] = ACTIONS(8733), + [aux_sym_with_statement_token1] = ACTIONS(8733), + [aux_sym_exit_statement_token1] = ACTIONS(8733), + [sym_end_statement] = ACTIONS(8735), + [aux_sym_on_goto_statement_token1] = ACTIONS(8733), + [aux_sym_on_goto_statement_token2] = ACTIONS(8733), + [aux_sym_on_error_statement_token2] = ACTIONS(8733), + [sym__ambiguous_redim_statement] = ACTIONS(8735), + [aux_sym_erase_statement_token1] = ACTIONS(8733), + [aux_sym_open_statement_token1] = ACTIONS(8733), + [aux_sym_file_mode_token2] = ACTIONS(8733), + [aux_sym_file_access_token2] = ACTIONS(8733), + [aux_sym_file_lock_token2] = ACTIONS(8733), + [aux_sym_print_statement_token1] = ACTIONS(8733), + [anon_sym_PLUS] = ACTIONS(8735), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_QMARK] = ACTIONS(8735), + [aux_sym_close_statement_token1] = ACTIONS(8733), + [aux_sym_put_statement_token1] = ACTIONS(8733), + [aux_sym_unlock_statement_token1] = ACTIONS(8733), + [aux_sym_seek_statement_token1] = ACTIONS(8733), + [sym_reset_statement] = ACTIONS(8733), + [aux_sym_raise_event_statement_token1] = ACTIONS(8733), + [sym_stop_statement] = ACTIONS(8733), + [sym_beep_statement] = ACTIONS(8733), + [aux_sym_unload_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token2] = ACTIONS(8733), + [aux_sym_def_type_statement_token3] = ACTIONS(8733), + [aux_sym_def_type_statement_token4] = ACTIONS(8733), + [aux_sym_def_type_statement_token5] = ACTIONS(8733), + [aux_sym_def_type_statement_token6] = ACTIONS(8733), + [aux_sym_def_type_statement_token7] = ACTIONS(8733), + [aux_sym_def_type_statement_token8] = ACTIONS(8733), + [aux_sym_def_type_statement_token9] = ACTIONS(8733), + [aux_sym_def_type_statement_token10] = ACTIONS(8733), + [aux_sym_def_type_statement_token11] = ACTIONS(8733), + [aux_sym_def_type_statement_token12] = ACTIONS(8733), + [aux_sym_def_type_statement_token13] = ACTIONS(8733), + [aux_sym_def_type_statement_token14] = ACTIONS(8733), + [aux_sym_call_statement_token1] = ACTIONS(8733), + [sym__ambiguous_call_statement] = ACTIONS(8733), + [aux_sym_addressof_expression_token1] = ACTIONS(8733), + [aux_sym_type_of_expression_token1] = ACTIONS(8733), + [aux_sym_unary_expression_token1] = ACTIONS(8733), + [sym_string_literal] = ACTIONS(8735), + [sym_number_literal] = ACTIONS(8735), + [aux_sym_boolean_literal_token1] = ACTIONS(8733), + [aux_sym_boolean_literal_token2] = ACTIONS(8733), + [sym_nothing_literal] = ACTIONS(8733), + [sym_null_literal] = ACTIONS(8733), + [sym_empty_literal] = ACTIONS(8733), + [sym_date_literal] = ACTIONS(8735), + [anon_sym_POUND] = ACTIONS(8733), + }, + [STATE(6056)] = { + [aux_sym__argument_sequence_repeat2] = STATE(5824), + [sym_identifier] = ACTIONS(4166), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5314), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4164), + [aux_sym_as_type_clause_token2] = ACTIONS(4166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4166), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4166), + [aux_sym_type_of_expression_token1] = ACTIONS(4166), + [aux_sym_unary_expression_token1] = ACTIONS(4166), + [sym_string_literal] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4164), + [aux_sym_boolean_literal_token1] = ACTIONS(4166), + [aux_sym_boolean_literal_token2] = ACTIONS(4166), + [sym_nothing_literal] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4166), + [sym_empty_literal] = ACTIONS(4166), + [sym_date_literal] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4166), + }, + [STATE(6057)] = { + [sym_identifier] = ACTIONS(8467), + [sym_newline] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8467), + [aux_sym_frm_property_statement_token1] = ACTIONS(8467), + [anon_sym_DOT] = ACTIONS(8467), + [anon_sym_BANG] = ACTIONS(6089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8467), + [aux_sym_option_statement_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8467), + [aux_sym_preprocessor_const_token1] = ACTIONS(8467), + [sym_static_modifier] = ACTIONS(8467), + [sym__dim_keyword] = ACTIONS(8467), + [sym__redim_keyword] = ACTIONS(8467), + [aux_sym_get_accessor_token1] = ACTIONS(8467), + [aux_sym_set_accessor_token1] = ACTIONS(8467), + [anon_sym_COMMA] = ACTIONS(6089), + [aux_sym_const_declaration_token1] = ACTIONS(8467), + [anon_sym_LPAREN] = ACTIONS(6089), + [aux_sym_as_type_clause_token2] = ACTIONS(8467), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8467), + [aux_sym_visibility_token1] = ACTIONS(8467), + [aux_sym_visibility_token2] = ACTIONS(8467), + [aux_sym_elseif_fragment_token1] = ACTIONS(8467), + [aux_sym_else_fragment_token1] = ACTIONS(8467), + [aux_sym_select_statement_token1] = ACTIONS(8467), + [aux_sym__for_header_token1] = ACTIONS(8467), + [aux_sym_do_statement_token1] = ACTIONS(8467), + [aux_sym_do_condition_token1] = ACTIONS(8467), + [aux_sym_while_statement_token1] = ACTIONS(8467), + [aux_sym_with_statement_token1] = ACTIONS(8467), + [aux_sym_exit_statement_token1] = ACTIONS(8467), + [sym_end_statement] = ACTIONS(6089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8467), + [aux_sym_on_goto_statement_token2] = ACTIONS(8467), + [aux_sym_on_error_statement_token2] = ACTIONS(8467), + [sym__ambiguous_redim_statement] = ACTIONS(6089), + [aux_sym_erase_statement_token1] = ACTIONS(8467), + [aux_sym_open_statement_token1] = ACTIONS(8467), + [aux_sym_file_mode_token2] = ACTIONS(8467), + [aux_sym_file_access_token2] = ACTIONS(8467), + [aux_sym_file_lock_token2] = ACTIONS(8467), + [aux_sym_print_statement_token1] = ACTIONS(8467), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(8467), + [anon_sym_QMARK] = ACTIONS(6089), + [aux_sym_close_statement_token1] = ACTIONS(8467), + [aux_sym_put_statement_token1] = ACTIONS(8467), + [aux_sym_unlock_statement_token1] = ACTIONS(8467), + [aux_sym_seek_statement_token1] = ACTIONS(8467), + [sym_reset_statement] = ACTIONS(8467), + [aux_sym_raise_event_statement_token1] = ACTIONS(8467), + [sym_stop_statement] = ACTIONS(8467), + [sym_beep_statement] = ACTIONS(8467), + [aux_sym_unload_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token2] = ACTIONS(8467), + [aux_sym_def_type_statement_token3] = ACTIONS(8467), + [aux_sym_def_type_statement_token4] = ACTIONS(8467), + [aux_sym_def_type_statement_token5] = ACTIONS(8467), + [aux_sym_def_type_statement_token6] = ACTIONS(8467), + [aux_sym_def_type_statement_token7] = ACTIONS(8467), + [aux_sym_def_type_statement_token8] = ACTIONS(8467), + [aux_sym_def_type_statement_token9] = ACTIONS(8467), + [aux_sym_def_type_statement_token10] = ACTIONS(8467), + [aux_sym_def_type_statement_token11] = ACTIONS(8467), + [aux_sym_def_type_statement_token12] = ACTIONS(8467), + [aux_sym_def_type_statement_token13] = ACTIONS(8467), + [aux_sym_def_type_statement_token14] = ACTIONS(8467), + [aux_sym_call_statement_token1] = ACTIONS(8467), + [sym__ambiguous_call_statement] = ACTIONS(8467), + [aux_sym_addressof_expression_token1] = ACTIONS(8467), + [aux_sym_type_of_expression_token1] = ACTIONS(8467), + [aux_sym_unary_expression_token1] = ACTIONS(8467), + [sym_string_literal] = ACTIONS(6089), + [sym_number_literal] = ACTIONS(6089), + [aux_sym_boolean_literal_token1] = ACTIONS(8467), + [aux_sym_boolean_literal_token2] = ACTIONS(8467), + [sym_nothing_literal] = ACTIONS(8467), + [sym_null_literal] = ACTIONS(8467), + [sym_empty_literal] = ACTIONS(8467), + [sym_date_literal] = ACTIONS(6089), + [anon_sym_POUND] = ACTIONS(8467), + }, + [STATE(6058)] = { + [sym_do_condition] = STATE(7254), + [sym_identifier] = ACTIONS(8188), + [sym_newline] = ACTIONS(8190), + [anon_sym_COLON] = ACTIONS(8190), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8188), + [aux_sym_frm_property_statement_token1] = ACTIONS(8188), + [anon_sym_DOT] = ACTIONS(8188), + [anon_sym_BANG] = ACTIONS(8190), + [aux_sym__attribute_identifier_token1] = ACTIONS(8188), + [aux_sym_option_statement_token3] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8188), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8188), + [aux_sym_preprocessor_const_token1] = ACTIONS(8188), + [sym_static_modifier] = ACTIONS(8188), + [sym__dim_keyword] = ACTIONS(8188), + [sym__redim_keyword] = ACTIONS(8188), + [aux_sym_get_accessor_token1] = ACTIONS(8188), + [aux_sym_set_accessor_token1] = ACTIONS(8188), + [aux_sym_const_declaration_token1] = ACTIONS(8188), + [anon_sym_LPAREN] = ACTIONS(8190), + [aux_sym_as_type_clause_token2] = ACTIONS(8188), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8188), + [aux_sym_visibility_token1] = ACTIONS(8188), + [aux_sym_visibility_token2] = ACTIONS(8188), + [aux_sym_elseif_fragment_token1] = ACTIONS(8188), + [aux_sym_else_fragment_token1] = ACTIONS(8188), + [aux_sym_select_statement_token1] = ACTIONS(8188), + [aux_sym__for_header_token1] = ACTIONS(8188), + [aux_sym_do_statement_token1] = ACTIONS(8188), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8188), + [aux_sym_exit_statement_token1] = ACTIONS(8188), + [sym_end_statement] = ACTIONS(8190), + [aux_sym_on_goto_statement_token1] = ACTIONS(8188), + [aux_sym_on_goto_statement_token2] = ACTIONS(8188), + [aux_sym_on_error_statement_token2] = ACTIONS(8188), + [sym__ambiguous_redim_statement] = ACTIONS(8190), + [aux_sym_erase_statement_token1] = ACTIONS(8188), + [aux_sym_open_statement_token1] = ACTIONS(8188), + [aux_sym_file_mode_token2] = ACTIONS(8188), + [aux_sym_file_access_token2] = ACTIONS(8188), + [aux_sym_file_lock_token2] = ACTIONS(8188), + [aux_sym_print_statement_token1] = ACTIONS(8188), + [anon_sym_PLUS] = ACTIONS(8190), + [anon_sym_DASH] = ACTIONS(8188), + [anon_sym_QMARK] = ACTIONS(8190), + [aux_sym_close_statement_token1] = ACTIONS(8188), + [aux_sym_put_statement_token1] = ACTIONS(8188), + [aux_sym_unlock_statement_token1] = ACTIONS(8188), + [aux_sym_seek_statement_token1] = ACTIONS(8188), + [sym_reset_statement] = ACTIONS(8188), + [aux_sym_raise_event_statement_token1] = ACTIONS(8188), + [sym_stop_statement] = ACTIONS(8188), + [sym_beep_statement] = ACTIONS(8188), + [aux_sym_unload_statement_token1] = ACTIONS(8188), + [aux_sym_def_type_statement_token1] = ACTIONS(8188), + [aux_sym_def_type_statement_token2] = ACTIONS(8188), + [aux_sym_def_type_statement_token3] = ACTIONS(8188), + [aux_sym_def_type_statement_token4] = ACTIONS(8188), + [aux_sym_def_type_statement_token5] = ACTIONS(8188), + [aux_sym_def_type_statement_token6] = ACTIONS(8188), + [aux_sym_def_type_statement_token7] = ACTIONS(8188), + [aux_sym_def_type_statement_token8] = ACTIONS(8188), + [aux_sym_def_type_statement_token9] = ACTIONS(8188), + [aux_sym_def_type_statement_token10] = ACTIONS(8188), + [aux_sym_def_type_statement_token11] = ACTIONS(8188), + [aux_sym_def_type_statement_token12] = ACTIONS(8188), + [aux_sym_def_type_statement_token13] = ACTIONS(8188), + [aux_sym_def_type_statement_token14] = ACTIONS(8188), + [aux_sym_call_statement_token1] = ACTIONS(8188), + [sym__ambiguous_call_statement] = ACTIONS(8188), + [aux_sym_addressof_expression_token1] = ACTIONS(8188), + [aux_sym_type_of_expression_token1] = ACTIONS(8188), + [aux_sym_unary_expression_token1] = ACTIONS(8188), + [sym_string_literal] = ACTIONS(8190), + [sym_number_literal] = ACTIONS(8190), + [aux_sym_boolean_literal_token1] = ACTIONS(8188), + [aux_sym_boolean_literal_token2] = ACTIONS(8188), + [sym_nothing_literal] = ACTIONS(8188), + [sym_null_literal] = ACTIONS(8188), + [sym_empty_literal] = ACTIONS(8188), + [sym_date_literal] = ACTIONS(8190), + [anon_sym_POUND] = ACTIONS(8188), + }, + [STATE(6059)] = { + [sym_identifier] = ACTIONS(8809), + [sym_newline] = ACTIONS(8811), + [anon_sym_COLON] = ACTIONS(8811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8809), + [aux_sym_frm_property_statement_token1] = ACTIONS(8809), + [anon_sym_DOT] = ACTIONS(8809), + [anon_sym_BANG] = ACTIONS(8811), + [aux_sym__attribute_identifier_token1] = ACTIONS(8809), + [aux_sym_option_statement_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8809), + [aux_sym_preprocessor_const_token1] = ACTIONS(8809), + [sym_static_modifier] = ACTIONS(8809), + [sym__dim_keyword] = ACTIONS(8809), + [sym__redim_keyword] = ACTIONS(8809), + [aux_sym_get_accessor_token1] = ACTIONS(8809), + [aux_sym_set_accessor_token1] = ACTIONS(8809), + [aux_sym_const_declaration_token1] = ACTIONS(8809), + [anon_sym_LPAREN] = ACTIONS(8811), + [aux_sym_as_type_clause_token2] = ACTIONS(8809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8809), + [aux_sym_visibility_token1] = ACTIONS(8809), + [aux_sym_visibility_token2] = ACTIONS(8809), + [aux_sym_elseif_fragment_token1] = ACTIONS(8809), + [aux_sym_else_fragment_token1] = ACTIONS(8809), + [aux_sym_select_statement_token1] = ACTIONS(8809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8809), + [aux_sym__for_header_token1] = ACTIONS(8809), + [aux_sym_do_statement_token1] = ACTIONS(8809), + [aux_sym_do_condition_token1] = ACTIONS(8809), + [aux_sym_while_statement_token1] = ACTIONS(8809), + [aux_sym_with_statement_token1] = ACTIONS(8809), + [aux_sym_exit_statement_token1] = ACTIONS(8809), + [sym_end_statement] = ACTIONS(8811), + [aux_sym_on_goto_statement_token1] = ACTIONS(8809), + [aux_sym_on_goto_statement_token2] = ACTIONS(8809), + [aux_sym_on_error_statement_token2] = ACTIONS(8809), + [sym__ambiguous_redim_statement] = ACTIONS(8811), + [aux_sym_erase_statement_token1] = ACTIONS(8809), + [aux_sym_open_statement_token1] = ACTIONS(8809), + [aux_sym_file_mode_token2] = ACTIONS(8809), + [aux_sym_file_access_token2] = ACTIONS(8809), + [aux_sym_file_lock_token2] = ACTIONS(8809), + [aux_sym_print_statement_token1] = ACTIONS(8809), + [anon_sym_PLUS] = ACTIONS(8811), + [anon_sym_DASH] = ACTIONS(8809), + [anon_sym_QMARK] = ACTIONS(8811), + [aux_sym_close_statement_token1] = ACTIONS(8809), + [aux_sym_put_statement_token1] = ACTIONS(8809), + [aux_sym_unlock_statement_token1] = ACTIONS(8809), + [aux_sym_seek_statement_token1] = ACTIONS(8809), + [sym_reset_statement] = ACTIONS(8809), + [aux_sym_raise_event_statement_token1] = ACTIONS(8809), + [sym_stop_statement] = ACTIONS(8809), + [sym_beep_statement] = ACTIONS(8809), + [aux_sym_unload_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token2] = ACTIONS(8809), + [aux_sym_def_type_statement_token3] = ACTIONS(8809), + [aux_sym_def_type_statement_token4] = ACTIONS(8809), + [aux_sym_def_type_statement_token5] = ACTIONS(8809), + [aux_sym_def_type_statement_token6] = ACTIONS(8809), + [aux_sym_def_type_statement_token7] = ACTIONS(8809), + [aux_sym_def_type_statement_token8] = ACTIONS(8809), + [aux_sym_def_type_statement_token9] = ACTIONS(8809), + [aux_sym_def_type_statement_token10] = ACTIONS(8809), + [aux_sym_def_type_statement_token11] = ACTIONS(8809), + [aux_sym_def_type_statement_token12] = ACTIONS(8809), + [aux_sym_def_type_statement_token13] = ACTIONS(8809), + [aux_sym_def_type_statement_token14] = ACTIONS(8809), + [aux_sym_call_statement_token1] = ACTIONS(8809), + [sym__ambiguous_call_statement] = ACTIONS(8809), + [aux_sym_addressof_expression_token1] = ACTIONS(8809), + [aux_sym_type_of_expression_token1] = ACTIONS(8809), + [aux_sym_unary_expression_token1] = ACTIONS(8809), + [sym_string_literal] = ACTIONS(8811), + [sym_number_literal] = ACTIONS(8811), + [aux_sym_boolean_literal_token1] = ACTIONS(8809), + [aux_sym_boolean_literal_token2] = ACTIONS(8809), + [sym_nothing_literal] = ACTIONS(8809), + [sym_null_literal] = ACTIONS(8809), + [sym_empty_literal] = ACTIONS(8809), + [sym_date_literal] = ACTIONS(8811), + [anon_sym_POUND] = ACTIONS(8809), + }, + [STATE(6060)] = { + [sym_identifier] = ACTIONS(8652), + [sym_newline] = ACTIONS(8654), + [anon_sym_COLON] = ACTIONS(8654), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8652), + [aux_sym_frm_property_statement_token1] = ACTIONS(8652), + [anon_sym_DOT] = ACTIONS(8652), + [anon_sym_BANG] = ACTIONS(8654), + [aux_sym__attribute_identifier_token1] = ACTIONS(8652), + [aux_sym_option_statement_token3] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8652), + [aux_sym_preprocessor_const_token1] = ACTIONS(8652), + [sym_static_modifier] = ACTIONS(8652), + [sym__dim_keyword] = ACTIONS(8652), + [sym__redim_keyword] = ACTIONS(8652), + [aux_sym_get_accessor_token1] = ACTIONS(8652), + [aux_sym_set_accessor_token1] = ACTIONS(8652), + [anon_sym_COMMA] = ACTIONS(10951), + [aux_sym_const_declaration_token1] = ACTIONS(8652), + [anon_sym_LPAREN] = ACTIONS(8654), + [aux_sym_as_type_clause_token2] = ACTIONS(8652), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8652), + [aux_sym_visibility_token1] = ACTIONS(8652), + [aux_sym_visibility_token2] = ACTIONS(8652), + [aux_sym_elseif_fragment_token1] = ACTIONS(8652), + [aux_sym_else_fragment_token1] = ACTIONS(8652), + [aux_sym_select_statement_token1] = ACTIONS(8652), + [aux_sym__for_header_token1] = ACTIONS(8652), + [aux_sym_do_statement_token1] = ACTIONS(8652), + [aux_sym_do_condition_token1] = ACTIONS(8652), + [aux_sym_with_statement_token1] = ACTIONS(8652), + [aux_sym_exit_statement_token1] = ACTIONS(8652), + [sym_end_statement] = ACTIONS(8654), + [aux_sym_on_goto_statement_token1] = ACTIONS(8652), + [aux_sym_on_goto_statement_token2] = ACTIONS(8652), + [aux_sym_on_error_statement_token2] = ACTIONS(8652), + [sym__ambiguous_redim_statement] = ACTIONS(8654), + [aux_sym_erase_statement_token1] = ACTIONS(8652), + [aux_sym_open_statement_token1] = ACTIONS(8652), + [aux_sym_file_mode_token2] = ACTIONS(8652), + [aux_sym_file_access_token2] = ACTIONS(8652), + [aux_sym_file_lock_token2] = ACTIONS(8652), + [aux_sym_print_statement_token1] = ACTIONS(8652), + [anon_sym_PLUS] = ACTIONS(8654), + [anon_sym_DASH] = ACTIONS(8652), + [anon_sym_QMARK] = ACTIONS(8654), + [aux_sym_close_statement_token1] = ACTIONS(8652), + [aux_sym_put_statement_token1] = ACTIONS(8652), + [aux_sym_unlock_statement_token1] = ACTIONS(8652), + [aux_sym_seek_statement_token1] = ACTIONS(8652), + [sym_reset_statement] = ACTIONS(8652), + [aux_sym_raise_event_statement_token1] = ACTIONS(8652), + [sym_stop_statement] = ACTIONS(8652), + [sym_beep_statement] = ACTIONS(8652), + [aux_sym_unload_statement_token1] = ACTIONS(8652), + [aux_sym_def_type_statement_token1] = ACTIONS(8652), + [aux_sym_def_type_statement_token2] = ACTIONS(8652), + [aux_sym_def_type_statement_token3] = ACTIONS(8652), + [aux_sym_def_type_statement_token4] = ACTIONS(8652), + [aux_sym_def_type_statement_token5] = ACTIONS(8652), + [aux_sym_def_type_statement_token6] = ACTIONS(8652), + [aux_sym_def_type_statement_token7] = ACTIONS(8652), + [aux_sym_def_type_statement_token8] = ACTIONS(8652), + [aux_sym_def_type_statement_token9] = ACTIONS(8652), + [aux_sym_def_type_statement_token10] = ACTIONS(8652), + [aux_sym_def_type_statement_token11] = ACTIONS(8652), + [aux_sym_def_type_statement_token12] = ACTIONS(8652), + [aux_sym_def_type_statement_token13] = ACTIONS(8652), + [aux_sym_def_type_statement_token14] = ACTIONS(8652), + [aux_sym_call_statement_token1] = ACTIONS(8652), + [sym__ambiguous_call_statement] = ACTIONS(8652), + [aux_sym_addressof_expression_token1] = ACTIONS(8652), + [aux_sym_type_of_expression_token1] = ACTIONS(8652), + [aux_sym_unary_expression_token1] = ACTIONS(8652), + [sym_string_literal] = ACTIONS(8654), + [sym_number_literal] = ACTIONS(8654), + [aux_sym_boolean_literal_token1] = ACTIONS(8652), + [aux_sym_boolean_literal_token2] = ACTIONS(8652), + [sym_nothing_literal] = ACTIONS(8652), + [sym_null_literal] = ACTIONS(8652), + [sym_empty_literal] = ACTIONS(8652), + [sym_date_literal] = ACTIONS(8654), + [anon_sym_POUND] = ACTIONS(8652), + }, + [STATE(6061)] = { + [sym_identifier] = ACTIONS(8780), + [sym_newline] = ACTIONS(8782), + [anon_sym_COLON] = ACTIONS(8782), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8780), + [aux_sym_frm_property_statement_token1] = ACTIONS(8780), + [anon_sym_DOT] = ACTIONS(8780), + [anon_sym_BANG] = ACTIONS(8782), + [aux_sym__attribute_identifier_token1] = ACTIONS(8780), + [aux_sym_option_statement_token3] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8780), + [aux_sym_preprocessor_const_token1] = ACTIONS(8780), + [sym_static_modifier] = ACTIONS(8780), + [sym__dim_keyword] = ACTIONS(8780), + [sym__redim_keyword] = ACTIONS(8780), + [aux_sym_get_accessor_token1] = ACTIONS(8780), + [aux_sym_set_accessor_token1] = ACTIONS(8780), + [anon_sym_COMMA] = ACTIONS(10953), + [aux_sym_const_declaration_token1] = ACTIONS(8780), + [anon_sym_LPAREN] = ACTIONS(8782), + [aux_sym_as_type_clause_token2] = ACTIONS(8780), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8780), + [aux_sym_visibility_token1] = ACTIONS(8780), + [aux_sym_visibility_token2] = ACTIONS(8780), + [aux_sym_elseif_fragment_token1] = ACTIONS(8780), + [aux_sym_else_fragment_token1] = ACTIONS(8780), + [aux_sym_select_statement_token1] = ACTIONS(8780), + [aux_sym__for_header_token1] = ACTIONS(8780), + [aux_sym_do_statement_token1] = ACTIONS(8780), + [aux_sym_do_statement_token2] = ACTIONS(8780), + [aux_sym_do_condition_token1] = ACTIONS(8780), + [aux_sym_with_statement_token1] = ACTIONS(8780), + [aux_sym_exit_statement_token1] = ACTIONS(8780), + [sym_end_statement] = ACTIONS(8782), + [aux_sym_on_goto_statement_token1] = ACTIONS(8780), + [aux_sym_on_goto_statement_token2] = ACTIONS(8780), + [aux_sym_on_error_statement_token2] = ACTIONS(8780), + [sym__ambiguous_redim_statement] = ACTIONS(8782), + [aux_sym_erase_statement_token1] = ACTIONS(8780), + [aux_sym_open_statement_token1] = ACTIONS(8780), + [aux_sym_file_mode_token2] = ACTIONS(8780), + [aux_sym_file_access_token2] = ACTIONS(8780), + [aux_sym_file_lock_token2] = ACTIONS(8780), + [aux_sym_print_statement_token1] = ACTIONS(8780), + [anon_sym_PLUS] = ACTIONS(8782), + [anon_sym_DASH] = ACTIONS(8780), + [anon_sym_QMARK] = ACTIONS(8782), + [aux_sym_close_statement_token1] = ACTIONS(8780), + [aux_sym_put_statement_token1] = ACTIONS(8780), + [aux_sym_unlock_statement_token1] = ACTIONS(8780), + [aux_sym_seek_statement_token1] = ACTIONS(8780), + [sym_reset_statement] = ACTIONS(8780), + [aux_sym_raise_event_statement_token1] = ACTIONS(8780), + [sym_stop_statement] = ACTIONS(8780), + [sym_beep_statement] = ACTIONS(8780), + [aux_sym_unload_statement_token1] = ACTIONS(8780), + [aux_sym_def_type_statement_token1] = ACTIONS(8780), + [aux_sym_def_type_statement_token2] = ACTIONS(8780), + [aux_sym_def_type_statement_token3] = ACTIONS(8780), + [aux_sym_def_type_statement_token4] = ACTIONS(8780), + [aux_sym_def_type_statement_token5] = ACTIONS(8780), + [aux_sym_def_type_statement_token6] = ACTIONS(8780), + [aux_sym_def_type_statement_token7] = ACTIONS(8780), + [aux_sym_def_type_statement_token8] = ACTIONS(8780), + [aux_sym_def_type_statement_token9] = ACTIONS(8780), + [aux_sym_def_type_statement_token10] = ACTIONS(8780), + [aux_sym_def_type_statement_token11] = ACTIONS(8780), + [aux_sym_def_type_statement_token12] = ACTIONS(8780), + [aux_sym_def_type_statement_token13] = ACTIONS(8780), + [aux_sym_def_type_statement_token14] = ACTIONS(8780), + [aux_sym_call_statement_token1] = ACTIONS(8780), + [sym__ambiguous_call_statement] = ACTIONS(8780), + [aux_sym_addressof_expression_token1] = ACTIONS(8780), + [aux_sym_type_of_expression_token1] = ACTIONS(8780), + [aux_sym_unary_expression_token1] = ACTIONS(8780), + [sym_string_literal] = ACTIONS(8782), + [sym_number_literal] = ACTIONS(8782), + [aux_sym_boolean_literal_token1] = ACTIONS(8780), + [aux_sym_boolean_literal_token2] = ACTIONS(8780), + [sym_nothing_literal] = ACTIONS(8780), + [sym_null_literal] = ACTIONS(8780), + [sym_empty_literal] = ACTIONS(8780), + [sym_date_literal] = ACTIONS(8782), + [anon_sym_POUND] = ACTIONS(8780), + }, + [STATE(6062)] = { + [sym_do_condition] = STATE(7239), + [sym_identifier] = ACTIONS(8170), + [sym_newline] = ACTIONS(8172), + [anon_sym_COLON] = ACTIONS(8172), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8170), + [aux_sym_frm_property_statement_token1] = ACTIONS(8170), + [anon_sym_DOT] = ACTIONS(8170), + [anon_sym_BANG] = ACTIONS(8172), + [aux_sym__attribute_identifier_token1] = ACTIONS(8170), + [aux_sym_option_statement_token3] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8170), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8170), + [aux_sym_preprocessor_const_token1] = ACTIONS(8170), + [sym_static_modifier] = ACTIONS(8170), + [sym__dim_keyword] = ACTIONS(8170), + [sym__redim_keyword] = ACTIONS(8170), + [aux_sym_get_accessor_token1] = ACTIONS(8170), + [aux_sym_set_accessor_token1] = ACTIONS(8170), + [aux_sym_const_declaration_token1] = ACTIONS(8170), + [anon_sym_LPAREN] = ACTIONS(8172), + [aux_sym_as_type_clause_token2] = ACTIONS(8170), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8170), + [aux_sym_visibility_token1] = ACTIONS(8170), + [aux_sym_visibility_token2] = ACTIONS(8170), + [aux_sym_elseif_fragment_token1] = ACTIONS(8170), + [aux_sym_else_fragment_token1] = ACTIONS(8170), + [aux_sym_select_statement_token1] = ACTIONS(8170), + [aux_sym__for_header_token1] = ACTIONS(8170), + [aux_sym_do_statement_token1] = ACTIONS(8170), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8170), + [aux_sym_exit_statement_token1] = ACTIONS(8170), + [sym_end_statement] = ACTIONS(8172), + [aux_sym_on_goto_statement_token1] = ACTIONS(8170), + [aux_sym_on_goto_statement_token2] = ACTIONS(8170), + [aux_sym_on_error_statement_token2] = ACTIONS(8170), + [sym__ambiguous_redim_statement] = ACTIONS(8172), + [aux_sym_erase_statement_token1] = ACTIONS(8170), + [aux_sym_open_statement_token1] = ACTIONS(8170), + [aux_sym_file_mode_token2] = ACTIONS(8170), + [aux_sym_file_access_token2] = ACTIONS(8170), + [aux_sym_file_lock_token2] = ACTIONS(8170), + [aux_sym_print_statement_token1] = ACTIONS(8170), + [anon_sym_PLUS] = ACTIONS(8172), + [anon_sym_DASH] = ACTIONS(8170), + [anon_sym_QMARK] = ACTIONS(8172), + [aux_sym_close_statement_token1] = ACTIONS(8170), + [aux_sym_put_statement_token1] = ACTIONS(8170), + [aux_sym_unlock_statement_token1] = ACTIONS(8170), + [aux_sym_seek_statement_token1] = ACTIONS(8170), + [sym_reset_statement] = ACTIONS(8170), + [aux_sym_raise_event_statement_token1] = ACTIONS(8170), + [sym_stop_statement] = ACTIONS(8170), + [sym_beep_statement] = ACTIONS(8170), + [aux_sym_unload_statement_token1] = ACTIONS(8170), + [aux_sym_def_type_statement_token1] = ACTIONS(8170), + [aux_sym_def_type_statement_token2] = ACTIONS(8170), + [aux_sym_def_type_statement_token3] = ACTIONS(8170), + [aux_sym_def_type_statement_token4] = ACTIONS(8170), + [aux_sym_def_type_statement_token5] = ACTIONS(8170), + [aux_sym_def_type_statement_token6] = ACTIONS(8170), + [aux_sym_def_type_statement_token7] = ACTIONS(8170), + [aux_sym_def_type_statement_token8] = ACTIONS(8170), + [aux_sym_def_type_statement_token9] = ACTIONS(8170), + [aux_sym_def_type_statement_token10] = ACTIONS(8170), + [aux_sym_def_type_statement_token11] = ACTIONS(8170), + [aux_sym_def_type_statement_token12] = ACTIONS(8170), + [aux_sym_def_type_statement_token13] = ACTIONS(8170), + [aux_sym_def_type_statement_token14] = ACTIONS(8170), + [aux_sym_call_statement_token1] = ACTIONS(8170), + [sym__ambiguous_call_statement] = ACTIONS(8170), + [aux_sym_addressof_expression_token1] = ACTIONS(8170), + [aux_sym_type_of_expression_token1] = ACTIONS(8170), + [aux_sym_unary_expression_token1] = ACTIONS(8170), + [sym_string_literal] = ACTIONS(8172), + [sym_number_literal] = ACTIONS(8172), + [aux_sym_boolean_literal_token1] = ACTIONS(8170), + [aux_sym_boolean_literal_token2] = ACTIONS(8170), + [sym_nothing_literal] = ACTIONS(8170), + [sym_null_literal] = ACTIONS(8170), + [sym_empty_literal] = ACTIONS(8170), + [sym_date_literal] = ACTIONS(8172), + [anon_sym_POUND] = ACTIONS(8170), + }, + [STATE(6063)] = { + [sym_identifier] = ACTIONS(8717), + [sym_newline] = ACTIONS(8719), + [anon_sym_COLON] = ACTIONS(8719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8717), + [aux_sym_frm_property_statement_token1] = ACTIONS(8717), + [anon_sym_DOT] = ACTIONS(8717), + [anon_sym_BANG] = ACTIONS(8719), + [aux_sym__attribute_identifier_token1] = ACTIONS(8717), + [aux_sym_option_statement_token3] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8717), + [aux_sym_preprocessor_const_token1] = ACTIONS(8717), + [sym_static_modifier] = ACTIONS(8717), + [sym__dim_keyword] = ACTIONS(8717), + [sym__redim_keyword] = ACTIONS(8717), + [aux_sym_get_accessor_token1] = ACTIONS(8717), + [aux_sym_set_accessor_token1] = ACTIONS(8717), + [anon_sym_COMMA] = ACTIONS(10955), + [aux_sym_const_declaration_token1] = ACTIONS(8717), + [anon_sym_LPAREN] = ACTIONS(8719), + [aux_sym_as_type_clause_token2] = ACTIONS(8717), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8717), + [aux_sym_visibility_token1] = ACTIONS(8717), + [aux_sym_visibility_token2] = ACTIONS(8717), + [aux_sym_elseif_fragment_token1] = ACTIONS(8717), + [aux_sym_else_fragment_token1] = ACTIONS(8717), + [aux_sym_select_statement_token1] = ACTIONS(8717), + [aux_sym__for_header_token1] = ACTIONS(8717), + [aux_sym_do_statement_token1] = ACTIONS(8717), + [aux_sym_do_condition_token1] = ACTIONS(8717), + [aux_sym_with_statement_token1] = ACTIONS(8717), + [aux_sym_exit_statement_token1] = ACTIONS(8717), + [sym_end_statement] = ACTIONS(8719), + [aux_sym_on_goto_statement_token1] = ACTIONS(8717), + [aux_sym_on_goto_statement_token2] = ACTIONS(8717), + [aux_sym_on_error_statement_token2] = ACTIONS(8717), + [sym__ambiguous_redim_statement] = ACTIONS(8719), + [aux_sym_erase_statement_token1] = ACTIONS(8717), + [aux_sym_open_statement_token1] = ACTIONS(8717), + [aux_sym_file_mode_token2] = ACTIONS(8717), + [aux_sym_file_access_token2] = ACTIONS(8717), + [aux_sym_file_lock_token2] = ACTIONS(8717), + [aux_sym_print_statement_token1] = ACTIONS(8717), + [anon_sym_PLUS] = ACTIONS(8719), + [anon_sym_DASH] = ACTIONS(8717), + [anon_sym_QMARK] = ACTIONS(8719), + [aux_sym_close_statement_token1] = ACTIONS(8717), + [aux_sym_put_statement_token1] = ACTIONS(8717), + [aux_sym_unlock_statement_token1] = ACTIONS(8717), + [aux_sym_seek_statement_token1] = ACTIONS(8717), + [sym_reset_statement] = ACTIONS(8717), + [aux_sym_raise_event_statement_token1] = ACTIONS(8717), + [sym_stop_statement] = ACTIONS(8717), + [sym_beep_statement] = ACTIONS(8717), + [aux_sym_unload_statement_token1] = ACTIONS(8717), + [aux_sym_def_type_statement_token1] = ACTIONS(8717), + [aux_sym_def_type_statement_token2] = ACTIONS(8717), + [aux_sym_def_type_statement_token3] = ACTIONS(8717), + [aux_sym_def_type_statement_token4] = ACTIONS(8717), + [aux_sym_def_type_statement_token5] = ACTIONS(8717), + [aux_sym_def_type_statement_token6] = ACTIONS(8717), + [aux_sym_def_type_statement_token7] = ACTIONS(8717), + [aux_sym_def_type_statement_token8] = ACTIONS(8717), + [aux_sym_def_type_statement_token9] = ACTIONS(8717), + [aux_sym_def_type_statement_token10] = ACTIONS(8717), + [aux_sym_def_type_statement_token11] = ACTIONS(8717), + [aux_sym_def_type_statement_token12] = ACTIONS(8717), + [aux_sym_def_type_statement_token13] = ACTIONS(8717), + [aux_sym_def_type_statement_token14] = ACTIONS(8717), + [aux_sym_call_statement_token1] = ACTIONS(8717), + [sym__ambiguous_call_statement] = ACTIONS(8717), + [aux_sym_addressof_expression_token1] = ACTIONS(8717), + [aux_sym_type_of_expression_token1] = ACTIONS(8717), + [aux_sym_unary_expression_token1] = ACTIONS(8717), + [sym_string_literal] = ACTIONS(8719), + [sym_number_literal] = ACTIONS(8719), + [aux_sym_boolean_literal_token1] = ACTIONS(8717), + [aux_sym_boolean_literal_token2] = ACTIONS(8717), + [sym_nothing_literal] = ACTIONS(8717), + [sym_null_literal] = ACTIONS(8717), + [sym_empty_literal] = ACTIONS(8717), + [sym_date_literal] = ACTIONS(8719), + [anon_sym_POUND] = ACTIONS(8717), + }, + [STATE(6064)] = { + [sym_argument_list] = STATE(6586), + [sym_identifier] = ACTIONS(8843), + [sym_newline] = ACTIONS(8845), + [anon_sym_COLON] = ACTIONS(8845), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8843), + [aux_sym_frm_property_statement_token1] = ACTIONS(8843), + [anon_sym_DOT] = ACTIONS(8843), + [anon_sym_BANG] = ACTIONS(8845), + [aux_sym__attribute_identifier_token1] = ACTIONS(8843), + [aux_sym_option_statement_token3] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8843), + [aux_sym_preprocessor_const_token1] = ACTIONS(8843), + [sym_static_modifier] = ACTIONS(8843), + [sym__dim_keyword] = ACTIONS(8843), + [sym__redim_keyword] = ACTIONS(8843), + [aux_sym_get_accessor_token1] = ACTIONS(8843), + [aux_sym_set_accessor_token1] = ACTIONS(8843), + [aux_sym_const_declaration_token1] = ACTIONS(8843), + [anon_sym_LPAREN] = ACTIONS(10606), + [aux_sym_as_type_clause_token2] = ACTIONS(8843), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8843), + [aux_sym_visibility_token1] = ACTIONS(8843), + [aux_sym_visibility_token2] = ACTIONS(8843), + [aux_sym_elseif_fragment_token1] = ACTIONS(8843), + [aux_sym_else_fragment_token1] = ACTIONS(8843), + [aux_sym_select_statement_token1] = ACTIONS(8843), + [aux_sym__for_header_token1] = ACTIONS(8843), + [aux_sym_do_statement_token1] = ACTIONS(8843), + [aux_sym_do_condition_token1] = ACTIONS(8843), + [aux_sym_with_statement_token1] = ACTIONS(8843), + [aux_sym_exit_statement_token1] = ACTIONS(8843), + [sym_end_statement] = ACTIONS(8845), + [aux_sym_on_goto_statement_token1] = ACTIONS(8843), + [aux_sym_on_goto_statement_token2] = ACTIONS(8843), + [aux_sym_on_error_statement_token2] = ACTIONS(8843), + [sym__ambiguous_redim_statement] = ACTIONS(8845), + [aux_sym_erase_statement_token1] = ACTIONS(8843), + [aux_sym_open_statement_token1] = ACTIONS(8843), + [aux_sym_file_mode_token2] = ACTIONS(8843), + [aux_sym_file_access_token2] = ACTIONS(8843), + [aux_sym_file_lock_token2] = ACTIONS(8843), + [aux_sym_print_statement_token1] = ACTIONS(8843), + [anon_sym_PLUS] = ACTIONS(8845), + [anon_sym_DASH] = ACTIONS(8843), + [anon_sym_QMARK] = ACTIONS(8845), + [aux_sym_close_statement_token1] = ACTIONS(8843), + [aux_sym_put_statement_token1] = ACTIONS(8843), + [aux_sym_unlock_statement_token1] = ACTIONS(8843), + [aux_sym_seek_statement_token1] = ACTIONS(8843), + [sym_reset_statement] = ACTIONS(8843), + [aux_sym_raise_event_statement_token1] = ACTIONS(8843), + [sym_stop_statement] = ACTIONS(8843), + [sym_beep_statement] = ACTIONS(8843), + [aux_sym_unload_statement_token1] = ACTIONS(8843), + [aux_sym_def_type_statement_token1] = ACTIONS(8843), + [aux_sym_def_type_statement_token2] = ACTIONS(8843), + [aux_sym_def_type_statement_token3] = ACTIONS(8843), + [aux_sym_def_type_statement_token4] = ACTIONS(8843), + [aux_sym_def_type_statement_token5] = ACTIONS(8843), + [aux_sym_def_type_statement_token6] = ACTIONS(8843), + [aux_sym_def_type_statement_token7] = ACTIONS(8843), + [aux_sym_def_type_statement_token8] = ACTIONS(8843), + [aux_sym_def_type_statement_token9] = ACTIONS(8843), + [aux_sym_def_type_statement_token10] = ACTIONS(8843), + [aux_sym_def_type_statement_token11] = ACTIONS(8843), + [aux_sym_def_type_statement_token12] = ACTIONS(8843), + [aux_sym_def_type_statement_token13] = ACTIONS(8843), + [aux_sym_def_type_statement_token14] = ACTIONS(8843), + [aux_sym_call_statement_token1] = ACTIONS(8843), + [sym__ambiguous_call_statement] = ACTIONS(8843), + [aux_sym_addressof_expression_token1] = ACTIONS(8843), + [aux_sym_type_of_expression_token1] = ACTIONS(8843), + [aux_sym_unary_expression_token1] = ACTIONS(8843), + [sym_string_literal] = ACTIONS(8845), + [sym_number_literal] = ACTIONS(8845), + [aux_sym_boolean_literal_token1] = ACTIONS(8843), + [aux_sym_boolean_literal_token2] = ACTIONS(8843), + [sym_nothing_literal] = ACTIONS(8843), + [sym_null_literal] = ACTIONS(8843), + [sym_empty_literal] = ACTIONS(8843), + [sym_date_literal] = ACTIONS(8845), + [anon_sym_POUND] = ACTIONS(8843), + }, + [STATE(6065)] = { + [sym_identifier] = ACTIONS(8962), + [sym_newline] = ACTIONS(8964), + [anon_sym_COLON] = ACTIONS(8964), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8962), + [aux_sym_frm_property_statement_token1] = ACTIONS(8962), + [anon_sym_DOT] = ACTIONS(8962), + [anon_sym_BANG] = ACTIONS(8964), + [aux_sym__attribute_identifier_token1] = ACTIONS(8962), + [aux_sym_option_statement_token3] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8962), + [aux_sym_preprocessor_const_token1] = ACTIONS(8962), + [sym_static_modifier] = ACTIONS(8962), + [sym__dim_keyword] = ACTIONS(8962), + [sym__redim_keyword] = ACTIONS(8962), + [aux_sym_get_accessor_token1] = ACTIONS(8962), + [aux_sym_set_accessor_token1] = ACTIONS(8962), + [anon_sym_COMMA] = ACTIONS(8964), + [aux_sym_const_declaration_token1] = ACTIONS(8962), + [anon_sym_LPAREN] = ACTIONS(8964), + [aux_sym_as_type_clause_token2] = ACTIONS(8962), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8962), + [aux_sym_visibility_token1] = ACTIONS(8962), + [aux_sym_visibility_token2] = ACTIONS(8962), + [aux_sym_elseif_fragment_token1] = ACTIONS(8962), + [aux_sym_else_fragment_token1] = ACTIONS(8962), + [aux_sym_select_statement_token1] = ACTIONS(8962), + [aux_sym_select_statement_token2] = ACTIONS(8962), + [aux_sym__for_header_token1] = ACTIONS(8962), + [aux_sym_do_statement_token1] = ACTIONS(8962), + [aux_sym_do_condition_token1] = ACTIONS(8962), + [aux_sym_with_statement_token1] = ACTIONS(8962), + [aux_sym_exit_statement_token1] = ACTIONS(8962), + [sym_end_statement] = ACTIONS(8964), + [aux_sym_on_goto_statement_token1] = ACTIONS(8962), + [aux_sym_on_goto_statement_token2] = ACTIONS(8962), + [aux_sym_on_error_statement_token2] = ACTIONS(8962), + [sym__ambiguous_redim_statement] = ACTIONS(8964), + [aux_sym_erase_statement_token1] = ACTIONS(8962), + [aux_sym_open_statement_token1] = ACTIONS(8962), + [aux_sym_file_mode_token2] = ACTIONS(8962), + [aux_sym_file_access_token2] = ACTIONS(8962), + [aux_sym_file_lock_token2] = ACTIONS(8962), + [aux_sym_print_statement_token1] = ACTIONS(8962), + [anon_sym_PLUS] = ACTIONS(8964), + [anon_sym_DASH] = ACTIONS(8962), + [anon_sym_QMARK] = ACTIONS(8964), + [aux_sym_close_statement_token1] = ACTIONS(8962), + [aux_sym_put_statement_token1] = ACTIONS(8962), + [aux_sym_unlock_statement_token1] = ACTIONS(8962), + [aux_sym_seek_statement_token1] = ACTIONS(8962), + [sym_reset_statement] = ACTIONS(8962), + [aux_sym_raise_event_statement_token1] = ACTIONS(8962), + [sym_stop_statement] = ACTIONS(8962), + [sym_beep_statement] = ACTIONS(8962), + [aux_sym_unload_statement_token1] = ACTIONS(8962), + [aux_sym_def_type_statement_token1] = ACTIONS(8962), + [aux_sym_def_type_statement_token2] = ACTIONS(8962), + [aux_sym_def_type_statement_token3] = ACTIONS(8962), + [aux_sym_def_type_statement_token4] = ACTIONS(8962), + [aux_sym_def_type_statement_token5] = ACTIONS(8962), + [aux_sym_def_type_statement_token6] = ACTIONS(8962), + [aux_sym_def_type_statement_token7] = ACTIONS(8962), + [aux_sym_def_type_statement_token8] = ACTIONS(8962), + [aux_sym_def_type_statement_token9] = ACTIONS(8962), + [aux_sym_def_type_statement_token10] = ACTIONS(8962), + [aux_sym_def_type_statement_token11] = ACTIONS(8962), + [aux_sym_def_type_statement_token12] = ACTIONS(8962), + [aux_sym_def_type_statement_token13] = ACTIONS(8962), + [aux_sym_def_type_statement_token14] = ACTIONS(8962), + [aux_sym_call_statement_token1] = ACTIONS(8962), + [sym__ambiguous_call_statement] = ACTIONS(8962), + [aux_sym_addressof_expression_token1] = ACTIONS(8962), + [aux_sym_type_of_expression_token1] = ACTIONS(8962), + [aux_sym_unary_expression_token1] = ACTIONS(8962), + [sym_string_literal] = ACTIONS(8964), + [sym_number_literal] = ACTIONS(8964), + [aux_sym_boolean_literal_token1] = ACTIONS(8962), + [aux_sym_boolean_literal_token2] = ACTIONS(8962), + [sym_nothing_literal] = ACTIONS(8962), + [sym_null_literal] = ACTIONS(8962), + [sym_empty_literal] = ACTIONS(8962), + [sym_date_literal] = ACTIONS(8964), + [anon_sym_POUND] = ACTIONS(8962), + }, + [STATE(6066)] = { + [sym_identifier] = ACTIONS(8958), + [sym_newline] = ACTIONS(8960), + [anon_sym_COLON] = ACTIONS(8960), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8958), + [aux_sym_frm_property_statement_token1] = ACTIONS(8958), + [anon_sym_DOT] = ACTIONS(8958), + [anon_sym_BANG] = ACTIONS(8960), + [aux_sym__attribute_identifier_token1] = ACTIONS(8958), + [aux_sym_option_statement_token3] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8958), + [aux_sym_preprocessor_const_token1] = ACTIONS(8958), + [sym_static_modifier] = ACTIONS(8958), + [sym__dim_keyword] = ACTIONS(8958), + [sym__redim_keyword] = ACTIONS(8958), + [aux_sym_get_accessor_token1] = ACTIONS(8958), + [aux_sym_set_accessor_token1] = ACTIONS(8958), + [anon_sym_COMMA] = ACTIONS(8960), + [aux_sym_const_declaration_token1] = ACTIONS(8958), + [anon_sym_LPAREN] = ACTIONS(8960), + [aux_sym_as_type_clause_token2] = ACTIONS(8958), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8958), + [aux_sym_visibility_token1] = ACTIONS(8958), + [aux_sym_visibility_token2] = ACTIONS(8958), + [aux_sym_elseif_fragment_token1] = ACTIONS(8958), + [aux_sym_else_fragment_token1] = ACTIONS(8958), + [aux_sym_select_statement_token1] = ACTIONS(8958), + [aux_sym__for_header_token1] = ACTIONS(8958), + [aux_sym_do_statement_token1] = ACTIONS(8958), + [aux_sym_do_condition_token1] = ACTIONS(8958), + [aux_sym_while_statement_token1] = ACTIONS(8958), + [aux_sym_with_statement_token1] = ACTIONS(8958), + [aux_sym_exit_statement_token1] = ACTIONS(8958), + [sym_end_statement] = ACTIONS(8960), + [aux_sym_on_goto_statement_token1] = ACTIONS(8958), + [aux_sym_on_goto_statement_token2] = ACTIONS(8958), + [aux_sym_on_error_statement_token2] = ACTIONS(8958), + [sym__ambiguous_redim_statement] = ACTIONS(8960), + [aux_sym_erase_statement_token1] = ACTIONS(8958), + [aux_sym_open_statement_token1] = ACTIONS(8958), + [aux_sym_file_mode_token2] = ACTIONS(8958), + [aux_sym_file_access_token2] = ACTIONS(8958), + [aux_sym_file_lock_token2] = ACTIONS(8958), + [aux_sym_print_statement_token1] = ACTIONS(8958), + [anon_sym_PLUS] = ACTIONS(8960), + [anon_sym_DASH] = ACTIONS(8958), + [anon_sym_QMARK] = ACTIONS(8960), + [aux_sym_close_statement_token1] = ACTIONS(8958), + [aux_sym_put_statement_token1] = ACTIONS(8958), + [aux_sym_unlock_statement_token1] = ACTIONS(8958), + [aux_sym_seek_statement_token1] = ACTIONS(8958), + [sym_reset_statement] = ACTIONS(8958), + [aux_sym_raise_event_statement_token1] = ACTIONS(8958), + [sym_stop_statement] = ACTIONS(8958), + [sym_beep_statement] = ACTIONS(8958), + [aux_sym_unload_statement_token1] = ACTIONS(8958), + [aux_sym_def_type_statement_token1] = ACTIONS(8958), + [aux_sym_def_type_statement_token2] = ACTIONS(8958), + [aux_sym_def_type_statement_token3] = ACTIONS(8958), + [aux_sym_def_type_statement_token4] = ACTIONS(8958), + [aux_sym_def_type_statement_token5] = ACTIONS(8958), + [aux_sym_def_type_statement_token6] = ACTIONS(8958), + [aux_sym_def_type_statement_token7] = ACTIONS(8958), + [aux_sym_def_type_statement_token8] = ACTIONS(8958), + [aux_sym_def_type_statement_token9] = ACTIONS(8958), + [aux_sym_def_type_statement_token10] = ACTIONS(8958), + [aux_sym_def_type_statement_token11] = ACTIONS(8958), + [aux_sym_def_type_statement_token12] = ACTIONS(8958), + [aux_sym_def_type_statement_token13] = ACTIONS(8958), + [aux_sym_def_type_statement_token14] = ACTIONS(8958), + [aux_sym_call_statement_token1] = ACTIONS(8958), + [sym__ambiguous_call_statement] = ACTIONS(8958), + [aux_sym_addressof_expression_token1] = ACTIONS(8958), + [aux_sym_type_of_expression_token1] = ACTIONS(8958), + [aux_sym_unary_expression_token1] = ACTIONS(8958), + [sym_string_literal] = ACTIONS(8960), + [sym_number_literal] = ACTIONS(8960), + [aux_sym_boolean_literal_token1] = ACTIONS(8958), + [aux_sym_boolean_literal_token2] = ACTIONS(8958), + [sym_nothing_literal] = ACTIONS(8958), + [sym_null_literal] = ACTIONS(8958), + [sym_empty_literal] = ACTIONS(8958), + [sym_date_literal] = ACTIONS(8960), + [anon_sym_POUND] = ACTIONS(8958), + }, + [STATE(6067)] = { + [sym_identifier] = ACTIONS(8970), + [sym_newline] = ACTIONS(8972), + [anon_sym_COLON] = ACTIONS(8972), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8970), + [aux_sym_frm_property_statement_token1] = ACTIONS(8970), + [anon_sym_DOT] = ACTIONS(8970), + [anon_sym_BANG] = ACTIONS(8972), + [aux_sym__attribute_identifier_token1] = ACTIONS(8970), + [aux_sym_option_statement_token3] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8970), + [aux_sym_preprocessor_const_token1] = ACTIONS(8970), + [sym_static_modifier] = ACTIONS(8970), + [sym__dim_keyword] = ACTIONS(8970), + [sym__redim_keyword] = ACTIONS(8970), + [aux_sym_get_accessor_token1] = ACTIONS(8970), + [aux_sym_set_accessor_token1] = ACTIONS(8970), + [anon_sym_COMMA] = ACTIONS(8972), + [aux_sym_const_declaration_token1] = ACTIONS(8970), + [anon_sym_LPAREN] = ACTIONS(8972), + [aux_sym_as_type_clause_token2] = ACTIONS(8970), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8970), + [aux_sym_visibility_token1] = ACTIONS(8970), + [aux_sym_visibility_token2] = ACTIONS(8970), + [aux_sym_elseif_fragment_token1] = ACTIONS(8970), + [aux_sym_else_fragment_token1] = ACTIONS(8970), + [aux_sym_select_statement_token1] = ACTIONS(8970), + [aux_sym__for_header_token1] = ACTIONS(8970), + [aux_sym_do_statement_token1] = ACTIONS(8970), + [aux_sym_do_condition_token1] = ACTIONS(8970), + [aux_sym_while_statement_token1] = ACTIONS(8970), + [aux_sym_with_statement_token1] = ACTIONS(8970), + [aux_sym_exit_statement_token1] = ACTIONS(8970), + [sym_end_statement] = ACTIONS(8972), + [aux_sym_on_goto_statement_token1] = ACTIONS(8970), + [aux_sym_on_goto_statement_token2] = ACTIONS(8970), + [aux_sym_on_error_statement_token2] = ACTIONS(8970), + [sym__ambiguous_redim_statement] = ACTIONS(8972), + [aux_sym_erase_statement_token1] = ACTIONS(8970), + [aux_sym_open_statement_token1] = ACTIONS(8970), + [aux_sym_file_mode_token2] = ACTIONS(8970), + [aux_sym_file_access_token2] = ACTIONS(8970), + [aux_sym_file_lock_token2] = ACTIONS(8970), + [aux_sym_print_statement_token1] = ACTIONS(8970), + [anon_sym_PLUS] = ACTIONS(8972), + [anon_sym_DASH] = ACTIONS(8970), + [anon_sym_QMARK] = ACTIONS(8972), + [aux_sym_close_statement_token1] = ACTIONS(8970), + [aux_sym_put_statement_token1] = ACTIONS(8970), + [aux_sym_unlock_statement_token1] = ACTIONS(8970), + [aux_sym_seek_statement_token1] = ACTIONS(8970), + [sym_reset_statement] = ACTIONS(8970), + [aux_sym_raise_event_statement_token1] = ACTIONS(8970), + [sym_stop_statement] = ACTIONS(8970), + [sym_beep_statement] = ACTIONS(8970), + [aux_sym_unload_statement_token1] = ACTIONS(8970), + [aux_sym_def_type_statement_token1] = ACTIONS(8970), + [aux_sym_def_type_statement_token2] = ACTIONS(8970), + [aux_sym_def_type_statement_token3] = ACTIONS(8970), + [aux_sym_def_type_statement_token4] = ACTIONS(8970), + [aux_sym_def_type_statement_token5] = ACTIONS(8970), + [aux_sym_def_type_statement_token6] = ACTIONS(8970), + [aux_sym_def_type_statement_token7] = ACTIONS(8970), + [aux_sym_def_type_statement_token8] = ACTIONS(8970), + [aux_sym_def_type_statement_token9] = ACTIONS(8970), + [aux_sym_def_type_statement_token10] = ACTIONS(8970), + [aux_sym_def_type_statement_token11] = ACTIONS(8970), + [aux_sym_def_type_statement_token12] = ACTIONS(8970), + [aux_sym_def_type_statement_token13] = ACTIONS(8970), + [aux_sym_def_type_statement_token14] = ACTIONS(8970), + [aux_sym_call_statement_token1] = ACTIONS(8970), + [sym__ambiguous_call_statement] = ACTIONS(8970), + [aux_sym_addressof_expression_token1] = ACTIONS(8970), + [aux_sym_type_of_expression_token1] = ACTIONS(8970), + [aux_sym_unary_expression_token1] = ACTIONS(8970), + [sym_string_literal] = ACTIONS(8972), + [sym_number_literal] = ACTIONS(8972), + [aux_sym_boolean_literal_token1] = ACTIONS(8970), + [aux_sym_boolean_literal_token2] = ACTIONS(8970), + [sym_nothing_literal] = ACTIONS(8970), + [sym_null_literal] = ACTIONS(8970), + [sym_empty_literal] = ACTIONS(8970), + [sym_date_literal] = ACTIONS(8972), + [anon_sym_POUND] = ACTIONS(8970), + }, + [STATE(6068)] = { + [sym_do_condition] = STATE(7246), + [sym_identifier] = ACTIONS(8140), + [sym_newline] = ACTIONS(8142), + [anon_sym_COLON] = ACTIONS(8142), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8140), + [aux_sym_frm_property_statement_token1] = ACTIONS(8140), + [anon_sym_DOT] = ACTIONS(8140), + [anon_sym_BANG] = ACTIONS(8142), + [aux_sym__attribute_identifier_token1] = ACTIONS(8140), + [aux_sym_option_statement_token3] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8140), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8140), + [aux_sym_preprocessor_const_token1] = ACTIONS(8140), + [sym_static_modifier] = ACTIONS(8140), + [sym__dim_keyword] = ACTIONS(8140), + [sym__redim_keyword] = ACTIONS(8140), + [aux_sym_get_accessor_token1] = ACTIONS(8140), + [aux_sym_set_accessor_token1] = ACTIONS(8140), + [aux_sym_const_declaration_token1] = ACTIONS(8140), + [anon_sym_LPAREN] = ACTIONS(8142), + [aux_sym_as_type_clause_token2] = ACTIONS(8140), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8140), + [aux_sym_visibility_token1] = ACTIONS(8140), + [aux_sym_visibility_token2] = ACTIONS(8140), + [aux_sym_elseif_fragment_token1] = ACTIONS(8140), + [aux_sym_else_fragment_token1] = ACTIONS(8140), + [aux_sym_select_statement_token1] = ACTIONS(8140), + [aux_sym__for_header_token1] = ACTIONS(8140), + [aux_sym_do_statement_token1] = ACTIONS(8140), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8140), + [aux_sym_exit_statement_token1] = ACTIONS(8140), + [sym_end_statement] = ACTIONS(8142), + [aux_sym_on_goto_statement_token1] = ACTIONS(8140), + [aux_sym_on_goto_statement_token2] = ACTIONS(8140), + [aux_sym_on_error_statement_token2] = ACTIONS(8140), + [sym__ambiguous_redim_statement] = ACTIONS(8142), + [aux_sym_erase_statement_token1] = ACTIONS(8140), + [aux_sym_open_statement_token1] = ACTIONS(8140), + [aux_sym_file_mode_token2] = ACTIONS(8140), + [aux_sym_file_access_token2] = ACTIONS(8140), + [aux_sym_file_lock_token2] = ACTIONS(8140), + [aux_sym_print_statement_token1] = ACTIONS(8140), + [anon_sym_PLUS] = ACTIONS(8142), + [anon_sym_DASH] = ACTIONS(8140), + [anon_sym_QMARK] = ACTIONS(8142), + [aux_sym_close_statement_token1] = ACTIONS(8140), + [aux_sym_put_statement_token1] = ACTIONS(8140), + [aux_sym_unlock_statement_token1] = ACTIONS(8140), + [aux_sym_seek_statement_token1] = ACTIONS(8140), + [sym_reset_statement] = ACTIONS(8140), + [aux_sym_raise_event_statement_token1] = ACTIONS(8140), + [sym_stop_statement] = ACTIONS(8140), + [sym_beep_statement] = ACTIONS(8140), + [aux_sym_unload_statement_token1] = ACTIONS(8140), + [aux_sym_def_type_statement_token1] = ACTIONS(8140), + [aux_sym_def_type_statement_token2] = ACTIONS(8140), + [aux_sym_def_type_statement_token3] = ACTIONS(8140), + [aux_sym_def_type_statement_token4] = ACTIONS(8140), + [aux_sym_def_type_statement_token5] = ACTIONS(8140), + [aux_sym_def_type_statement_token6] = ACTIONS(8140), + [aux_sym_def_type_statement_token7] = ACTIONS(8140), + [aux_sym_def_type_statement_token8] = ACTIONS(8140), + [aux_sym_def_type_statement_token9] = ACTIONS(8140), + [aux_sym_def_type_statement_token10] = ACTIONS(8140), + [aux_sym_def_type_statement_token11] = ACTIONS(8140), + [aux_sym_def_type_statement_token12] = ACTIONS(8140), + [aux_sym_def_type_statement_token13] = ACTIONS(8140), + [aux_sym_def_type_statement_token14] = ACTIONS(8140), + [aux_sym_call_statement_token1] = ACTIONS(8140), + [sym__ambiguous_call_statement] = ACTIONS(8140), + [aux_sym_addressof_expression_token1] = ACTIONS(8140), + [aux_sym_type_of_expression_token1] = ACTIONS(8140), + [aux_sym_unary_expression_token1] = ACTIONS(8140), + [sym_string_literal] = ACTIONS(8142), + [sym_number_literal] = ACTIONS(8142), + [aux_sym_boolean_literal_token1] = ACTIONS(8140), + [aux_sym_boolean_literal_token2] = ACTIONS(8140), + [sym_nothing_literal] = ACTIONS(8140), + [sym_null_literal] = ACTIONS(8140), + [sym_empty_literal] = ACTIONS(8140), + [sym_date_literal] = ACTIONS(8142), + [anon_sym_POUND] = ACTIONS(8140), + }, + [STATE(6069)] = { + [sym_identifier] = ACTIONS(8980), + [sym_newline] = ACTIONS(8982), + [anon_sym_COLON] = ACTIONS(8982), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8980), + [aux_sym_frm_property_statement_token1] = ACTIONS(8980), + [anon_sym_DOT] = ACTIONS(8980), + [anon_sym_BANG] = ACTIONS(8982), + [aux_sym__attribute_identifier_token1] = ACTIONS(8980), + [aux_sym_option_statement_token3] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8980), + [aux_sym_preprocessor_const_token1] = ACTIONS(8980), + [sym_static_modifier] = ACTIONS(8980), + [sym__dim_keyword] = ACTIONS(8980), + [sym__redim_keyword] = ACTIONS(8980), + [aux_sym_get_accessor_token1] = ACTIONS(8980), + [aux_sym_set_accessor_token1] = ACTIONS(8980), + [aux_sym_const_declaration_token1] = ACTIONS(8980), + [anon_sym_LPAREN] = ACTIONS(8982), + [aux_sym_as_type_clause_token2] = ACTIONS(8980), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8980), + [aux_sym_visibility_token1] = ACTIONS(8980), + [aux_sym_visibility_token2] = ACTIONS(8980), + [aux_sym_elseif_fragment_token1] = ACTIONS(8980), + [aux_sym_else_fragment_token1] = ACTIONS(8980), + [aux_sym_select_statement_token1] = ACTIONS(8980), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8980), + [aux_sym__for_header_token1] = ACTIONS(8980), + [aux_sym_do_statement_token1] = ACTIONS(8980), + [aux_sym_do_condition_token1] = ACTIONS(8980), + [aux_sym_with_statement_token1] = ACTIONS(8980), + [aux_sym_exit_statement_token1] = ACTIONS(8980), + [sym_end_statement] = ACTIONS(8982), + [aux_sym_on_goto_statement_token1] = ACTIONS(8980), + [aux_sym_on_goto_statement_token2] = ACTIONS(8980), + [aux_sym_on_error_statement_token2] = ACTIONS(8980), + [sym__ambiguous_redim_statement] = ACTIONS(8982), + [aux_sym_erase_statement_token1] = ACTIONS(8980), + [aux_sym_open_statement_token1] = ACTIONS(8980), + [aux_sym_open_statement_token3] = ACTIONS(10957), + [aux_sym_file_mode_token2] = ACTIONS(8980), + [aux_sym_file_access_token2] = ACTIONS(8980), + [aux_sym_file_lock_token2] = ACTIONS(8980), + [aux_sym_print_statement_token1] = ACTIONS(8980), + [anon_sym_PLUS] = ACTIONS(8982), + [anon_sym_DASH] = ACTIONS(8980), + [anon_sym_QMARK] = ACTIONS(8982), + [aux_sym_close_statement_token1] = ACTIONS(8980), + [aux_sym_put_statement_token1] = ACTIONS(8980), + [aux_sym_unlock_statement_token1] = ACTIONS(8980), + [aux_sym_seek_statement_token1] = ACTIONS(8980), + [sym_reset_statement] = ACTIONS(8980), + [aux_sym_raise_event_statement_token1] = ACTIONS(8980), + [sym_stop_statement] = ACTIONS(8980), + [sym_beep_statement] = ACTIONS(8980), + [aux_sym_unload_statement_token1] = ACTIONS(8980), + [aux_sym_def_type_statement_token1] = ACTIONS(8980), + [aux_sym_def_type_statement_token2] = ACTIONS(8980), + [aux_sym_def_type_statement_token3] = ACTIONS(8980), + [aux_sym_def_type_statement_token4] = ACTIONS(8980), + [aux_sym_def_type_statement_token5] = ACTIONS(8980), + [aux_sym_def_type_statement_token6] = ACTIONS(8980), + [aux_sym_def_type_statement_token7] = ACTIONS(8980), + [aux_sym_def_type_statement_token8] = ACTIONS(8980), + [aux_sym_def_type_statement_token9] = ACTIONS(8980), + [aux_sym_def_type_statement_token10] = ACTIONS(8980), + [aux_sym_def_type_statement_token11] = ACTIONS(8980), + [aux_sym_def_type_statement_token12] = ACTIONS(8980), + [aux_sym_def_type_statement_token13] = ACTIONS(8980), + [aux_sym_def_type_statement_token14] = ACTIONS(8980), + [aux_sym_call_statement_token1] = ACTIONS(8980), + [sym__ambiguous_call_statement] = ACTIONS(8980), + [aux_sym_addressof_expression_token1] = ACTIONS(8980), + [aux_sym_type_of_expression_token1] = ACTIONS(8980), + [aux_sym_unary_expression_token1] = ACTIONS(8980), + [sym_string_literal] = ACTIONS(8982), + [sym_number_literal] = ACTIONS(8982), + [aux_sym_boolean_literal_token1] = ACTIONS(8980), + [aux_sym_boolean_literal_token2] = ACTIONS(8980), + [sym_nothing_literal] = ACTIONS(8980), + [sym_null_literal] = ACTIONS(8980), + [sym_empty_literal] = ACTIONS(8980), + [sym_date_literal] = ACTIONS(8982), + [anon_sym_POUND] = ACTIONS(8980), + }, + [STATE(6070)] = { + [sym_identifier] = ACTIONS(8877), + [sym_newline] = ACTIONS(8879), + [anon_sym_COLON] = ACTIONS(8879), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8877), + [aux_sym_frm_property_statement_token1] = ACTIONS(8877), + [anon_sym_DOT] = ACTIONS(8877), + [anon_sym_BANG] = ACTIONS(8879), + [aux_sym__attribute_identifier_token1] = ACTIONS(8877), + [aux_sym_option_statement_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8877), + [aux_sym_preprocessor_const_token1] = ACTIONS(8877), + [sym_static_modifier] = ACTIONS(8877), + [sym__dim_keyword] = ACTIONS(8877), + [sym__redim_keyword] = ACTIONS(8877), + [aux_sym_get_accessor_token1] = ACTIONS(8877), + [aux_sym_set_accessor_token1] = ACTIONS(8877), + [aux_sym_const_declaration_token1] = ACTIONS(8877), + [anon_sym_LPAREN] = ACTIONS(8879), + [aux_sym_as_type_clause_token2] = ACTIONS(8877), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8877), + [aux_sym_visibility_token1] = ACTIONS(8877), + [aux_sym_visibility_token2] = ACTIONS(8877), + [aux_sym_elseif_fragment_token1] = ACTIONS(8877), + [aux_sym_else_fragment_token1] = ACTIONS(8877), + [aux_sym_select_statement_token1] = ACTIONS(8877), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8877), + [aux_sym__for_header_token1] = ACTIONS(8877), + [aux_sym_do_statement_token1] = ACTIONS(8877), + [aux_sym_do_condition_token1] = ACTIONS(8877), + [aux_sym_while_statement_token1] = ACTIONS(8877), + [aux_sym_with_statement_token1] = ACTIONS(8877), + [aux_sym_exit_statement_token1] = ACTIONS(8877), + [sym_end_statement] = ACTIONS(8879), + [aux_sym_on_goto_statement_token1] = ACTIONS(8877), + [aux_sym_on_goto_statement_token2] = ACTIONS(8877), + [aux_sym_on_error_statement_token2] = ACTIONS(8877), + [sym__ambiguous_redim_statement] = ACTIONS(8879), + [aux_sym_erase_statement_token1] = ACTIONS(8877), + [aux_sym_open_statement_token1] = ACTIONS(8877), + [aux_sym_file_mode_token2] = ACTIONS(8877), + [aux_sym_file_access_token2] = ACTIONS(8877), + [aux_sym_file_lock_token2] = ACTIONS(8877), + [aux_sym_print_statement_token1] = ACTIONS(8877), + [anon_sym_PLUS] = ACTIONS(8879), + [anon_sym_DASH] = ACTIONS(8877), + [anon_sym_QMARK] = ACTIONS(8879), + [aux_sym_close_statement_token1] = ACTIONS(8877), + [aux_sym_put_statement_token1] = ACTIONS(8877), + [aux_sym_unlock_statement_token1] = ACTIONS(8877), + [aux_sym_seek_statement_token1] = ACTIONS(8877), + [sym_reset_statement] = ACTIONS(8877), + [aux_sym_raise_event_statement_token1] = ACTIONS(8877), + [sym_stop_statement] = ACTIONS(8877), + [sym_beep_statement] = ACTIONS(8877), + [aux_sym_unload_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token2] = ACTIONS(8877), + [aux_sym_def_type_statement_token3] = ACTIONS(8877), + [aux_sym_def_type_statement_token4] = ACTIONS(8877), + [aux_sym_def_type_statement_token5] = ACTIONS(8877), + [aux_sym_def_type_statement_token6] = ACTIONS(8877), + [aux_sym_def_type_statement_token7] = ACTIONS(8877), + [aux_sym_def_type_statement_token8] = ACTIONS(8877), + [aux_sym_def_type_statement_token9] = ACTIONS(8877), + [aux_sym_def_type_statement_token10] = ACTIONS(8877), + [aux_sym_def_type_statement_token11] = ACTIONS(8877), + [aux_sym_def_type_statement_token12] = ACTIONS(8877), + [aux_sym_def_type_statement_token13] = ACTIONS(8877), + [aux_sym_def_type_statement_token14] = ACTIONS(8877), + [aux_sym_call_statement_token1] = ACTIONS(8877), + [sym__ambiguous_call_statement] = ACTIONS(8877), + [aux_sym_addressof_expression_token1] = ACTIONS(8877), + [aux_sym_type_of_expression_token1] = ACTIONS(8877), + [aux_sym_unary_expression_token1] = ACTIONS(8877), + [sym_string_literal] = ACTIONS(8879), + [sym_number_literal] = ACTIONS(8879), + [aux_sym_boolean_literal_token1] = ACTIONS(8877), + [aux_sym_boolean_literal_token2] = ACTIONS(8877), + [sym_nothing_literal] = ACTIONS(8877), + [sym_null_literal] = ACTIONS(8877), + [sym_empty_literal] = ACTIONS(8877), + [sym_date_literal] = ACTIONS(8879), + [anon_sym_POUND] = ACTIONS(8877), + }, + [STATE(6071)] = { + [sym_identifier] = ACTIONS(8907), + [sym_newline] = ACTIONS(8909), + [anon_sym_COLON] = ACTIONS(8909), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8907), + [aux_sym_frm_property_statement_token1] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8907), + [anon_sym_BANG] = ACTIONS(8909), + [aux_sym__attribute_identifier_token1] = ACTIONS(8907), + [aux_sym_option_statement_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8907), + [aux_sym_preprocessor_const_token1] = ACTIONS(8907), + [sym_static_modifier] = ACTIONS(8907), + [sym__dim_keyword] = ACTIONS(8907), + [sym__redim_keyword] = ACTIONS(8907), + [aux_sym_get_accessor_token1] = ACTIONS(8907), + [aux_sym_set_accessor_token1] = ACTIONS(8907), + [aux_sym_const_declaration_token1] = ACTIONS(8907), + [anon_sym_LPAREN] = ACTIONS(8909), + [aux_sym_as_type_clause_token2] = ACTIONS(8907), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8907), + [aux_sym_visibility_token1] = ACTIONS(8907), + [aux_sym_visibility_token2] = ACTIONS(8907), + [aux_sym_elseif_fragment_token1] = ACTIONS(8907), + [aux_sym_else_fragment_token1] = ACTIONS(8907), + [aux_sym_select_statement_token1] = ACTIONS(8907), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8907), + [aux_sym__for_header_token1] = ACTIONS(8907), + [aux_sym_do_statement_token1] = ACTIONS(8907), + [aux_sym_do_condition_token1] = ACTIONS(8907), + [aux_sym_while_statement_token1] = ACTIONS(8907), + [aux_sym_with_statement_token1] = ACTIONS(8907), + [aux_sym_exit_statement_token1] = ACTIONS(8907), + [sym_end_statement] = ACTIONS(8909), + [aux_sym_on_goto_statement_token1] = ACTIONS(8907), + [aux_sym_on_goto_statement_token2] = ACTIONS(8907), + [aux_sym_on_error_statement_token2] = ACTIONS(8907), + [sym__ambiguous_redim_statement] = ACTIONS(8909), + [aux_sym_erase_statement_token1] = ACTIONS(8907), + [aux_sym_open_statement_token1] = ACTIONS(8907), + [aux_sym_file_mode_token2] = ACTIONS(8907), + [aux_sym_file_access_token2] = ACTIONS(8907), + [aux_sym_file_lock_token2] = ACTIONS(8907), + [aux_sym_print_statement_token1] = ACTIONS(8907), + [anon_sym_PLUS] = ACTIONS(8909), + [anon_sym_DASH] = ACTIONS(8907), + [anon_sym_QMARK] = ACTIONS(8909), + [aux_sym_close_statement_token1] = ACTIONS(8907), + [aux_sym_put_statement_token1] = ACTIONS(8907), + [aux_sym_unlock_statement_token1] = ACTIONS(8907), + [aux_sym_seek_statement_token1] = ACTIONS(8907), + [sym_reset_statement] = ACTIONS(8907), + [aux_sym_raise_event_statement_token1] = ACTIONS(8907), + [sym_stop_statement] = ACTIONS(8907), + [sym_beep_statement] = ACTIONS(8907), + [aux_sym_unload_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token2] = ACTIONS(8907), + [aux_sym_def_type_statement_token3] = ACTIONS(8907), + [aux_sym_def_type_statement_token4] = ACTIONS(8907), + [aux_sym_def_type_statement_token5] = ACTIONS(8907), + [aux_sym_def_type_statement_token6] = ACTIONS(8907), + [aux_sym_def_type_statement_token7] = ACTIONS(8907), + [aux_sym_def_type_statement_token8] = ACTIONS(8907), + [aux_sym_def_type_statement_token9] = ACTIONS(8907), + [aux_sym_def_type_statement_token10] = ACTIONS(8907), + [aux_sym_def_type_statement_token11] = ACTIONS(8907), + [aux_sym_def_type_statement_token12] = ACTIONS(8907), + [aux_sym_def_type_statement_token13] = ACTIONS(8907), + [aux_sym_def_type_statement_token14] = ACTIONS(8907), + [aux_sym_call_statement_token1] = ACTIONS(8907), + [sym__ambiguous_call_statement] = ACTIONS(8907), + [aux_sym_addressof_expression_token1] = ACTIONS(8907), + [aux_sym_type_of_expression_token1] = ACTIONS(8907), + [aux_sym_unary_expression_token1] = ACTIONS(8907), + [sym_string_literal] = ACTIONS(8909), + [sym_number_literal] = ACTIONS(8909), + [aux_sym_boolean_literal_token1] = ACTIONS(8907), + [aux_sym_boolean_literal_token2] = ACTIONS(8907), + [sym_nothing_literal] = ACTIONS(8907), + [sym_null_literal] = ACTIONS(8907), + [sym_empty_literal] = ACTIONS(8907), + [sym_date_literal] = ACTIONS(8909), + [anon_sym_POUND] = ACTIONS(8907), + }, + [STATE(6072)] = { + [sym_identifier] = ACTIONS(8927), + [sym_newline] = ACTIONS(8929), + [anon_sym_COLON] = ACTIONS(8929), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8927), + [aux_sym_frm_property_statement_token1] = ACTIONS(8927), + [anon_sym_DOT] = ACTIONS(8927), + [anon_sym_BANG] = ACTIONS(8929), + [aux_sym__attribute_identifier_token1] = ACTIONS(8927), + [aux_sym_option_statement_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8927), + [aux_sym_preprocessor_const_token1] = ACTIONS(8927), + [sym_static_modifier] = ACTIONS(8927), + [sym__dim_keyword] = ACTIONS(8927), + [sym__redim_keyword] = ACTIONS(8927), + [aux_sym_get_accessor_token1] = ACTIONS(8927), + [aux_sym_set_accessor_token1] = ACTIONS(8927), + [aux_sym_const_declaration_token1] = ACTIONS(8927), + [anon_sym_LPAREN] = ACTIONS(8929), + [aux_sym_as_type_clause_token2] = ACTIONS(8927), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8927), + [aux_sym_visibility_token1] = ACTIONS(8927), + [aux_sym_visibility_token2] = ACTIONS(8927), + [aux_sym_elseif_fragment_token1] = ACTIONS(8927), + [aux_sym_else_fragment_token1] = ACTIONS(8927), + [aux_sym_select_statement_token1] = ACTIONS(8927), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8927), + [aux_sym__for_header_token1] = ACTIONS(8927), + [aux_sym_do_statement_token1] = ACTIONS(8927), + [aux_sym_do_condition_token1] = ACTIONS(8927), + [aux_sym_while_statement_token1] = ACTIONS(8927), + [aux_sym_with_statement_token1] = ACTIONS(8927), + [aux_sym_exit_statement_token1] = ACTIONS(8927), + [sym_end_statement] = ACTIONS(8929), + [aux_sym_on_goto_statement_token1] = ACTIONS(8927), + [aux_sym_on_goto_statement_token2] = ACTIONS(8927), + [aux_sym_on_error_statement_token2] = ACTIONS(8927), + [sym__ambiguous_redim_statement] = ACTIONS(8929), + [aux_sym_erase_statement_token1] = ACTIONS(8927), + [aux_sym_open_statement_token1] = ACTIONS(8927), + [aux_sym_file_mode_token2] = ACTIONS(8927), + [aux_sym_file_access_token2] = ACTIONS(8927), + [aux_sym_file_lock_token2] = ACTIONS(8927), + [aux_sym_print_statement_token1] = ACTIONS(8927), + [anon_sym_PLUS] = ACTIONS(8929), + [anon_sym_DASH] = ACTIONS(8927), + [anon_sym_QMARK] = ACTIONS(8929), + [aux_sym_close_statement_token1] = ACTIONS(8927), + [aux_sym_put_statement_token1] = ACTIONS(8927), + [aux_sym_unlock_statement_token1] = ACTIONS(8927), + [aux_sym_seek_statement_token1] = ACTIONS(8927), + [sym_reset_statement] = ACTIONS(8927), + [aux_sym_raise_event_statement_token1] = ACTIONS(8927), + [sym_stop_statement] = ACTIONS(8927), + [sym_beep_statement] = ACTIONS(8927), + [aux_sym_unload_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token2] = ACTIONS(8927), + [aux_sym_def_type_statement_token3] = ACTIONS(8927), + [aux_sym_def_type_statement_token4] = ACTIONS(8927), + [aux_sym_def_type_statement_token5] = ACTIONS(8927), + [aux_sym_def_type_statement_token6] = ACTIONS(8927), + [aux_sym_def_type_statement_token7] = ACTIONS(8927), + [aux_sym_def_type_statement_token8] = ACTIONS(8927), + [aux_sym_def_type_statement_token9] = ACTIONS(8927), + [aux_sym_def_type_statement_token10] = ACTIONS(8927), + [aux_sym_def_type_statement_token11] = ACTIONS(8927), + [aux_sym_def_type_statement_token12] = ACTIONS(8927), + [aux_sym_def_type_statement_token13] = ACTIONS(8927), + [aux_sym_def_type_statement_token14] = ACTIONS(8927), + [aux_sym_call_statement_token1] = ACTIONS(8927), + [sym__ambiguous_call_statement] = ACTIONS(8927), + [aux_sym_addressof_expression_token1] = ACTIONS(8927), + [aux_sym_type_of_expression_token1] = ACTIONS(8927), + [aux_sym_unary_expression_token1] = ACTIONS(8927), + [sym_string_literal] = ACTIONS(8929), + [sym_number_literal] = ACTIONS(8929), + [aux_sym_boolean_literal_token1] = ACTIONS(8927), + [aux_sym_boolean_literal_token2] = ACTIONS(8927), + [sym_nothing_literal] = ACTIONS(8927), + [sym_null_literal] = ACTIONS(8927), + [sym_empty_literal] = ACTIONS(8927), + [sym_date_literal] = ACTIONS(8929), + [anon_sym_POUND] = ACTIONS(8927), + }, + [STATE(6073)] = { + [sym_identifier] = ACTIONS(8801), + [sym_newline] = ACTIONS(8803), + [anon_sym_COLON] = ACTIONS(8803), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8801), + [aux_sym_frm_property_statement_token1] = ACTIONS(8801), + [anon_sym_DOT] = ACTIONS(8801), + [anon_sym_BANG] = ACTIONS(8803), + [aux_sym__attribute_identifier_token1] = ACTIONS(8801), + [aux_sym_option_statement_token3] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8801), + [aux_sym_preprocessor_const_token1] = ACTIONS(8801), + [sym_static_modifier] = ACTIONS(8801), + [sym__dim_keyword] = ACTIONS(8801), + [sym__redim_keyword] = ACTIONS(8801), + [aux_sym_get_accessor_token1] = ACTIONS(8801), + [aux_sym_set_accessor_token1] = ACTIONS(8801), + [anon_sym_COMMA] = ACTIONS(8803), + [aux_sym_const_declaration_token1] = ACTIONS(8801), + [anon_sym_LPAREN] = ACTIONS(8803), + [aux_sym_as_type_clause_token2] = ACTIONS(8801), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8801), + [aux_sym_visibility_token1] = ACTIONS(8801), + [aux_sym_visibility_token2] = ACTIONS(8801), + [aux_sym_elseif_fragment_token1] = ACTIONS(8801), + [aux_sym_else_fragment_token1] = ACTIONS(8801), + [aux_sym_select_statement_token1] = ACTIONS(8801), + [aux_sym_select_statement_token2] = ACTIONS(8801), + [aux_sym__for_header_token1] = ACTIONS(8801), + [aux_sym_do_statement_token1] = ACTIONS(8801), + [aux_sym_do_condition_token1] = ACTIONS(8801), + [aux_sym_with_statement_token1] = ACTIONS(8801), + [aux_sym_exit_statement_token1] = ACTIONS(8801), + [sym_end_statement] = ACTIONS(8803), + [aux_sym_on_goto_statement_token1] = ACTIONS(8801), + [aux_sym_on_goto_statement_token2] = ACTIONS(8801), + [aux_sym_on_error_statement_token2] = ACTIONS(8801), + [sym__ambiguous_redim_statement] = ACTIONS(8803), + [aux_sym_erase_statement_token1] = ACTIONS(8801), + [aux_sym_open_statement_token1] = ACTIONS(8801), + [aux_sym_file_mode_token2] = ACTIONS(8801), + [aux_sym_file_access_token2] = ACTIONS(8801), + [aux_sym_file_lock_token2] = ACTIONS(8801), + [aux_sym_print_statement_token1] = ACTIONS(8801), + [anon_sym_PLUS] = ACTIONS(8803), + [anon_sym_DASH] = ACTIONS(8801), + [anon_sym_QMARK] = ACTIONS(8803), + [aux_sym_close_statement_token1] = ACTIONS(8801), + [aux_sym_put_statement_token1] = ACTIONS(8801), + [aux_sym_unlock_statement_token1] = ACTIONS(8801), + [aux_sym_seek_statement_token1] = ACTIONS(8801), + [sym_reset_statement] = ACTIONS(8801), + [aux_sym_raise_event_statement_token1] = ACTIONS(8801), + [sym_stop_statement] = ACTIONS(8801), + [sym_beep_statement] = ACTIONS(8801), + [aux_sym_unload_statement_token1] = ACTIONS(8801), + [aux_sym_def_type_statement_token1] = ACTIONS(8801), + [aux_sym_def_type_statement_token2] = ACTIONS(8801), + [aux_sym_def_type_statement_token3] = ACTIONS(8801), + [aux_sym_def_type_statement_token4] = ACTIONS(8801), + [aux_sym_def_type_statement_token5] = ACTIONS(8801), + [aux_sym_def_type_statement_token6] = ACTIONS(8801), + [aux_sym_def_type_statement_token7] = ACTIONS(8801), + [aux_sym_def_type_statement_token8] = ACTIONS(8801), + [aux_sym_def_type_statement_token9] = ACTIONS(8801), + [aux_sym_def_type_statement_token10] = ACTIONS(8801), + [aux_sym_def_type_statement_token11] = ACTIONS(8801), + [aux_sym_def_type_statement_token12] = ACTIONS(8801), + [aux_sym_def_type_statement_token13] = ACTIONS(8801), + [aux_sym_def_type_statement_token14] = ACTIONS(8801), + [aux_sym_call_statement_token1] = ACTIONS(8801), + [sym__ambiguous_call_statement] = ACTIONS(8801), + [aux_sym_addressof_expression_token1] = ACTIONS(8801), + [aux_sym_type_of_expression_token1] = ACTIONS(8801), + [aux_sym_unary_expression_token1] = ACTIONS(8801), + [sym_string_literal] = ACTIONS(8803), + [sym_number_literal] = ACTIONS(8803), + [aux_sym_boolean_literal_token1] = ACTIONS(8801), + [aux_sym_boolean_literal_token2] = ACTIONS(8801), + [sym_nothing_literal] = ACTIONS(8801), + [sym_null_literal] = ACTIONS(8801), + [sym_empty_literal] = ACTIONS(8801), + [sym_date_literal] = ACTIONS(8803), + [anon_sym_POUND] = ACTIONS(8801), + }, + [STATE(6074)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(6075)] = { + [aux_sym_variable_declaration_repeat1] = STATE(6223), + [sym_identifier] = ACTIONS(8569), + [sym_newline] = ACTIONS(8571), + [anon_sym_COLON] = ACTIONS(8571), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8569), + [aux_sym_frm_property_statement_token1] = ACTIONS(8569), + [anon_sym_DOT] = ACTIONS(8569), + [anon_sym_BANG] = ACTIONS(8571), + [aux_sym__attribute_identifier_token1] = ACTIONS(8569), + [aux_sym_option_statement_token3] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8569), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8569), + [aux_sym_preprocessor_const_token1] = ACTIONS(8569), + [sym_static_modifier] = ACTIONS(8569), + [sym__dim_keyword] = ACTIONS(8569), + [sym__redim_keyword] = ACTIONS(8569), + [aux_sym_get_accessor_token1] = ACTIONS(8569), + [aux_sym_set_accessor_token1] = ACTIONS(8569), + [anon_sym_COMMA] = ACTIONS(10844), + [aux_sym_const_declaration_token1] = ACTIONS(8569), + [anon_sym_LPAREN] = ACTIONS(8571), + [aux_sym_as_type_clause_token2] = ACTIONS(8569), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8569), + [aux_sym_visibility_token1] = ACTIONS(8569), + [aux_sym_visibility_token2] = ACTIONS(8569), + [aux_sym_elseif_fragment_token1] = ACTIONS(8569), + [aux_sym_else_fragment_token1] = ACTIONS(8569), + [aux_sym_select_statement_token1] = ACTIONS(8569), + [aux_sym__for_header_token1] = ACTIONS(8569), + [aux_sym_do_statement_token1] = ACTIONS(8569), + [aux_sym_do_condition_token1] = ACTIONS(8569), + [aux_sym_with_statement_token1] = ACTIONS(8569), + [aux_sym_exit_statement_token1] = ACTIONS(8569), + [sym_end_statement] = ACTIONS(8571), + [aux_sym_on_goto_statement_token1] = ACTIONS(8569), + [aux_sym_on_goto_statement_token2] = ACTIONS(8569), + [aux_sym_on_error_statement_token2] = ACTIONS(8569), + [sym__ambiguous_redim_statement] = ACTIONS(8571), + [aux_sym_erase_statement_token1] = ACTIONS(8569), + [aux_sym_open_statement_token1] = ACTIONS(8569), + [aux_sym_file_mode_token2] = ACTIONS(8569), + [aux_sym_file_access_token2] = ACTIONS(8569), + [aux_sym_file_lock_token2] = ACTIONS(8569), + [aux_sym_print_statement_token1] = ACTIONS(8569), + [anon_sym_PLUS] = ACTIONS(8571), + [anon_sym_DASH] = ACTIONS(8569), + [anon_sym_QMARK] = ACTIONS(8571), + [aux_sym_close_statement_token1] = ACTIONS(8569), + [aux_sym_put_statement_token1] = ACTIONS(8569), + [aux_sym_unlock_statement_token1] = ACTIONS(8569), + [aux_sym_seek_statement_token1] = ACTIONS(8569), + [sym_reset_statement] = ACTIONS(8569), + [aux_sym_raise_event_statement_token1] = ACTIONS(8569), + [sym_stop_statement] = ACTIONS(8569), + [sym_beep_statement] = ACTIONS(8569), + [aux_sym_unload_statement_token1] = ACTIONS(8569), + [aux_sym_def_type_statement_token1] = ACTIONS(8569), + [aux_sym_def_type_statement_token2] = ACTIONS(8569), + [aux_sym_def_type_statement_token3] = ACTIONS(8569), + [aux_sym_def_type_statement_token4] = ACTIONS(8569), + [aux_sym_def_type_statement_token5] = ACTIONS(8569), + [aux_sym_def_type_statement_token6] = ACTIONS(8569), + [aux_sym_def_type_statement_token7] = ACTIONS(8569), + [aux_sym_def_type_statement_token8] = ACTIONS(8569), + [aux_sym_def_type_statement_token9] = ACTIONS(8569), + [aux_sym_def_type_statement_token10] = ACTIONS(8569), + [aux_sym_def_type_statement_token11] = ACTIONS(8569), + [aux_sym_def_type_statement_token12] = ACTIONS(8569), + [aux_sym_def_type_statement_token13] = ACTIONS(8569), + [aux_sym_def_type_statement_token14] = ACTIONS(8569), + [aux_sym_call_statement_token1] = ACTIONS(8569), + [sym__ambiguous_call_statement] = ACTIONS(8569), + [aux_sym_addressof_expression_token1] = ACTIONS(8569), + [aux_sym_type_of_expression_token1] = ACTIONS(8569), + [aux_sym_unary_expression_token1] = ACTIONS(8569), + [sym_string_literal] = ACTIONS(8571), + [sym_number_literal] = ACTIONS(8571), + [aux_sym_boolean_literal_token1] = ACTIONS(8569), + [aux_sym_boolean_literal_token2] = ACTIONS(8569), + [sym_nothing_literal] = ACTIONS(8569), + [sym_null_literal] = ACTIONS(8569), + [sym_empty_literal] = ACTIONS(8569), + [sym_date_literal] = ACTIONS(8571), + [anon_sym_POUND] = ACTIONS(8569), + }, + [STATE(6076)] = { + [sym_identifier] = ACTIONS(8745), + [sym_newline] = ACTIONS(8747), + [anon_sym_COLON] = ACTIONS(8747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8745), + [aux_sym_frm_property_statement_token1] = ACTIONS(8745), + [anon_sym_DOT] = ACTIONS(8745), + [anon_sym_BANG] = ACTIONS(8747), + [aux_sym__attribute_identifier_token1] = ACTIONS(8745), + [aux_sym_option_statement_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8745), + [aux_sym_preprocessor_const_token1] = ACTIONS(8745), + [sym_static_modifier] = ACTIONS(8745), + [sym__dim_keyword] = ACTIONS(8745), + [sym__redim_keyword] = ACTIONS(8745), + [aux_sym_get_accessor_token1] = ACTIONS(8745), + [aux_sym_set_accessor_token1] = ACTIONS(8745), + [aux_sym_const_declaration_token1] = ACTIONS(8745), + [anon_sym_LPAREN] = ACTIONS(8747), + [aux_sym_as_type_clause_token2] = ACTIONS(8745), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8745), + [aux_sym_visibility_token1] = ACTIONS(8745), + [aux_sym_visibility_token2] = ACTIONS(8745), + [aux_sym_elseif_fragment_token1] = ACTIONS(8745), + [aux_sym_else_fragment_token1] = ACTIONS(8745), + [aux_sym_select_statement_token1] = ACTIONS(8745), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8745), + [aux_sym__for_header_token1] = ACTIONS(8745), + [aux_sym_do_statement_token1] = ACTIONS(8745), + [aux_sym_do_condition_token1] = ACTIONS(8745), + [aux_sym_with_statement_token1] = ACTIONS(8745), + [aux_sym_exit_statement_token1] = ACTIONS(8745), + [sym_end_statement] = ACTIONS(8747), + [aux_sym_on_goto_statement_token1] = ACTIONS(8745), + [aux_sym_on_goto_statement_token2] = ACTIONS(8745), + [aux_sym_on_error_statement_token2] = ACTIONS(8745), + [sym__ambiguous_redim_statement] = ACTIONS(8747), + [aux_sym_erase_statement_token1] = ACTIONS(8745), + [aux_sym_open_statement_token1] = ACTIONS(8745), + [aux_sym_file_mode_token2] = ACTIONS(8745), + [aux_sym_file_access_token2] = ACTIONS(8745), + [aux_sym_file_lock_token2] = ACTIONS(8745), + [aux_sym_print_statement_token1] = ACTIONS(8745), + [anon_sym_PLUS] = ACTIONS(8747), + [anon_sym_DASH] = ACTIONS(8745), + [anon_sym_QMARK] = ACTIONS(8747), + [aux_sym_close_statement_token1] = ACTIONS(8745), + [aux_sym_put_statement_token1] = ACTIONS(8745), + [aux_sym_unlock_statement_token1] = ACTIONS(8745), + [aux_sym_seek_statement_token1] = ACTIONS(8745), + [sym_reset_statement] = ACTIONS(8745), + [aux_sym_raise_event_statement_token1] = ACTIONS(8745), + [sym_stop_statement] = ACTIONS(8745), + [sym_beep_statement] = ACTIONS(8745), + [aux_sym_unload_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token2] = ACTIONS(8745), + [aux_sym_def_type_statement_token3] = ACTIONS(8745), + [aux_sym_def_type_statement_token4] = ACTIONS(8745), + [aux_sym_def_type_statement_token5] = ACTIONS(8745), + [aux_sym_def_type_statement_token6] = ACTIONS(8745), + [aux_sym_def_type_statement_token7] = ACTIONS(8745), + [aux_sym_def_type_statement_token8] = ACTIONS(8745), + [aux_sym_def_type_statement_token9] = ACTIONS(8745), + [aux_sym_def_type_statement_token10] = ACTIONS(8745), + [aux_sym_def_type_statement_token11] = ACTIONS(8745), + [aux_sym_def_type_statement_token12] = ACTIONS(8745), + [aux_sym_def_type_statement_token13] = ACTIONS(8745), + [aux_sym_def_type_statement_token14] = ACTIONS(8745), + [aux_sym_call_statement_token1] = ACTIONS(8745), + [sym__ambiguous_call_statement] = ACTIONS(8745), + [aux_sym_addressof_expression_token1] = ACTIONS(8745), + [aux_sym_type_of_expression_token1] = ACTIONS(8745), + [aux_sym_unary_expression_token1] = ACTIONS(8745), + [sym_string_literal] = ACTIONS(8747), + [sym_number_literal] = ACTIONS(8747), + [aux_sym_boolean_literal_token1] = ACTIONS(8745), + [aux_sym_boolean_literal_token2] = ACTIONS(8745), + [sym_nothing_literal] = ACTIONS(8745), + [sym_null_literal] = ACTIONS(8745), + [sym_empty_literal] = ACTIONS(8745), + [sym_date_literal] = ACTIONS(8747), + [anon_sym_POUND] = ACTIONS(8745), + }, + [STATE(6077)] = { + [sym__required_file_number] = STATE(6894), + [sym_file_number_literal] = STATE(6857), + [sym_identifier] = ACTIONS(8312), + [sym_newline] = ACTIONS(8314), + [anon_sym_COLON] = ACTIONS(8314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8312), + [aux_sym_frm_property_statement_token1] = ACTIONS(8312), + [anon_sym_DOT] = ACTIONS(8312), + [anon_sym_BANG] = ACTIONS(8314), + [aux_sym__attribute_identifier_token1] = ACTIONS(8312), + [aux_sym_option_statement_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8312), + [aux_sym_preprocessor_const_token1] = ACTIONS(8312), + [sym_static_modifier] = ACTIONS(8312), + [sym__dim_keyword] = ACTIONS(8312), + [sym__redim_keyword] = ACTIONS(8312), + [aux_sym_get_accessor_token1] = ACTIONS(8312), + [aux_sym_set_accessor_token1] = ACTIONS(8312), + [aux_sym_const_declaration_token1] = ACTIONS(8312), + [anon_sym_LPAREN] = ACTIONS(8314), + [aux_sym_as_type_clause_token2] = ACTIONS(8312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8312), + [aux_sym_visibility_token1] = ACTIONS(8312), + [aux_sym_visibility_token2] = ACTIONS(8312), + [aux_sym_elseif_fragment_token1] = ACTIONS(8312), + [aux_sym_else_fragment_token1] = ACTIONS(8312), + [aux_sym_select_statement_token1] = ACTIONS(8312), + [aux_sym__for_header_token1] = ACTIONS(8312), + [aux_sym_do_statement_token1] = ACTIONS(8312), + [aux_sym_do_condition_token1] = ACTIONS(8312), + [aux_sym_with_statement_token1] = ACTIONS(8312), + [aux_sym_exit_statement_token1] = ACTIONS(8312), + [sym_end_statement] = ACTIONS(8314), + [aux_sym_on_goto_statement_token1] = ACTIONS(8312), + [aux_sym_on_goto_statement_token2] = ACTIONS(8312), + [aux_sym_on_error_statement_token2] = ACTIONS(8312), + [sym__ambiguous_redim_statement] = ACTIONS(8314), + [aux_sym_erase_statement_token1] = ACTIONS(8312), + [aux_sym_open_statement_token1] = ACTIONS(8312), + [aux_sym_file_mode_token2] = ACTIONS(8312), + [aux_sym_file_access_token2] = ACTIONS(8312), + [aux_sym_file_lock_token2] = ACTIONS(8312), + [aux_sym_print_statement_token1] = ACTIONS(8312), + [anon_sym_PLUS] = ACTIONS(8314), + [anon_sym_DASH] = ACTIONS(8312), + [anon_sym_QMARK] = ACTIONS(8314), + [aux_sym_close_statement_token1] = ACTIONS(8312), + [aux_sym_put_statement_token1] = ACTIONS(8312), + [aux_sym_unlock_statement_token1] = ACTIONS(8312), + [aux_sym_seek_statement_token1] = ACTIONS(8312), + [sym_reset_statement] = ACTIONS(8312), + [aux_sym_raise_event_statement_token1] = ACTIONS(8312), + [sym_stop_statement] = ACTIONS(8312), + [sym_beep_statement] = ACTIONS(8312), + [aux_sym_unload_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token2] = ACTIONS(8312), + [aux_sym_def_type_statement_token3] = ACTIONS(8312), + [aux_sym_def_type_statement_token4] = ACTIONS(8312), + [aux_sym_def_type_statement_token5] = ACTIONS(8312), + [aux_sym_def_type_statement_token6] = ACTIONS(8312), + [aux_sym_def_type_statement_token7] = ACTIONS(8312), + [aux_sym_def_type_statement_token8] = ACTIONS(8312), + [aux_sym_def_type_statement_token9] = ACTIONS(8312), + [aux_sym_def_type_statement_token10] = ACTIONS(8312), + [aux_sym_def_type_statement_token11] = ACTIONS(8312), + [aux_sym_def_type_statement_token12] = ACTIONS(8312), + [aux_sym_def_type_statement_token13] = ACTIONS(8312), + [aux_sym_def_type_statement_token14] = ACTIONS(8312), + [aux_sym_call_statement_token1] = ACTIONS(8312), + [sym__ambiguous_call_statement] = ACTIONS(8312), + [aux_sym_addressof_expression_token1] = ACTIONS(8312), + [aux_sym_type_of_expression_token1] = ACTIONS(8312), + [aux_sym_unary_expression_token1] = ACTIONS(8312), + [sym_string_literal] = ACTIONS(8314), + [sym_number_literal] = ACTIONS(8314), + [aux_sym_boolean_literal_token1] = ACTIONS(8312), + [aux_sym_boolean_literal_token2] = ACTIONS(8312), + [sym_nothing_literal] = ACTIONS(8312), + [sym_null_literal] = ACTIONS(8312), + [sym_empty_literal] = ACTIONS(8312), + [sym_date_literal] = ACTIONS(8314), + [anon_sym_POUND] = ACTIONS(846), + }, + [STATE(6078)] = { + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(7951), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_while_statement_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(6079)] = { + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(7951), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__multiline_for_tail_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(6080)] = { + [sym_identifier] = ACTIONS(8456), + [sym_newline] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8458), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8456), + [aux_sym_frm_property_statement_token1] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_BANG] = ACTIONS(8458), + [aux_sym__attribute_identifier_token1] = ACTIONS(8456), + [aux_sym_option_statement_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8456), + [aux_sym_preprocessor_const_token1] = ACTIONS(8456), + [sym_static_modifier] = ACTIONS(8456), + [sym__dim_keyword] = ACTIONS(8456), + [sym__redim_keyword] = ACTIONS(8456), + [aux_sym_get_accessor_token1] = ACTIONS(8456), + [aux_sym_set_accessor_token1] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(8458), + [aux_sym_const_declaration_token1] = ACTIONS(8456), + [anon_sym_LPAREN] = ACTIONS(8458), + [aux_sym_as_type_clause_token2] = ACTIONS(8456), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8456), + [aux_sym_visibility_token1] = ACTIONS(8456), + [aux_sym_visibility_token2] = ACTIONS(8456), + [aux_sym_elseif_fragment_token1] = ACTIONS(8456), + [aux_sym_else_fragment_token1] = ACTIONS(8456), + [aux_sym_select_statement_token1] = ACTIONS(8456), + [aux_sym__for_header_token1] = ACTIONS(8456), + [aux_sym_do_statement_token1] = ACTIONS(8456), + [aux_sym_do_condition_token1] = ACTIONS(8456), + [aux_sym_while_statement_token1] = ACTIONS(8456), + [aux_sym_with_statement_token1] = ACTIONS(8456), + [aux_sym_exit_statement_token1] = ACTIONS(8456), + [sym_end_statement] = ACTIONS(8458), + [aux_sym_on_goto_statement_token1] = ACTIONS(8456), + [aux_sym_on_goto_statement_token2] = ACTIONS(8456), + [aux_sym_on_error_statement_token2] = ACTIONS(8456), + [sym__ambiguous_redim_statement] = ACTIONS(8458), + [aux_sym_erase_statement_token1] = ACTIONS(8456), + [aux_sym_open_statement_token1] = ACTIONS(8456), + [aux_sym_file_mode_token2] = ACTIONS(8456), + [aux_sym_file_access_token2] = ACTIONS(8456), + [aux_sym_file_lock_token2] = ACTIONS(8456), + [aux_sym_print_statement_token1] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8458), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8458), + [aux_sym_close_statement_token1] = ACTIONS(8456), + [aux_sym_put_statement_token1] = ACTIONS(8456), + [aux_sym_unlock_statement_token1] = ACTIONS(8456), + [aux_sym_seek_statement_token1] = ACTIONS(8456), + [sym_reset_statement] = ACTIONS(8456), + [aux_sym_raise_event_statement_token1] = ACTIONS(8456), + [sym_stop_statement] = ACTIONS(8456), + [sym_beep_statement] = ACTIONS(8456), + [aux_sym_unload_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token2] = ACTIONS(8456), + [aux_sym_def_type_statement_token3] = ACTIONS(8456), + [aux_sym_def_type_statement_token4] = ACTIONS(8456), + [aux_sym_def_type_statement_token5] = ACTIONS(8456), + [aux_sym_def_type_statement_token6] = ACTIONS(8456), + [aux_sym_def_type_statement_token7] = ACTIONS(8456), + [aux_sym_def_type_statement_token8] = ACTIONS(8456), + [aux_sym_def_type_statement_token9] = ACTIONS(8456), + [aux_sym_def_type_statement_token10] = ACTIONS(8456), + [aux_sym_def_type_statement_token11] = ACTIONS(8456), + [aux_sym_def_type_statement_token12] = ACTIONS(8456), + [aux_sym_def_type_statement_token13] = ACTIONS(8456), + [aux_sym_def_type_statement_token14] = ACTIONS(8456), + [aux_sym_call_statement_token1] = ACTIONS(8456), + [sym__ambiguous_call_statement] = ACTIONS(8456), + [aux_sym_addressof_expression_token1] = ACTIONS(8456), + [aux_sym_type_of_expression_token1] = ACTIONS(8456), + [aux_sym_unary_expression_token1] = ACTIONS(8456), + [sym_string_literal] = ACTIONS(8458), + [sym_number_literal] = ACTIONS(8458), + [aux_sym_boolean_literal_token1] = ACTIONS(8456), + [aux_sym_boolean_literal_token2] = ACTIONS(8456), + [sym_nothing_literal] = ACTIONS(8456), + [sym_null_literal] = ACTIONS(8456), + [sym_empty_literal] = ACTIONS(8456), + [sym_date_literal] = ACTIONS(8458), + [anon_sym_POUND] = ACTIONS(8456), + }, + [STATE(6081)] = { + [sym_identifier] = ACTIONS(10959), + [sym_newline] = ACTIONS(8819), + [anon_sym_COLON] = ACTIONS(8819), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8821), + [aux_sym_frm_property_statement_token1] = ACTIONS(8821), + [anon_sym_DOT] = ACTIONS(8821), + [anon_sym_BANG] = ACTIONS(8819), + [aux_sym__attribute_identifier_token1] = ACTIONS(8821), + [aux_sym_option_statement_token3] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8821), + [aux_sym_preprocessor_const_token1] = ACTIONS(8821), + [sym_static_modifier] = ACTIONS(8821), + [sym__dim_keyword] = ACTIONS(8821), + [sym__redim_keyword] = ACTIONS(8821), + [aux_sym_get_accessor_token1] = ACTIONS(8821), + [aux_sym_set_accessor_token1] = ACTIONS(8821), + [aux_sym_const_declaration_token1] = ACTIONS(8821), + [anon_sym_LPAREN] = ACTIONS(8819), + [aux_sym_as_type_clause_token2] = ACTIONS(8821), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8821), + [aux_sym_visibility_token1] = ACTIONS(8821), + [aux_sym_visibility_token2] = ACTIONS(8821), + [aux_sym_elseif_fragment_token1] = ACTIONS(8821), + [aux_sym_else_fragment_token1] = ACTIONS(8821), + [aux_sym_select_statement_token1] = ACTIONS(8821), + [aux_sym__multiline_for_tail_token1] = ACTIONS(10961), + [aux_sym__for_header_token1] = ACTIONS(8821), + [aux_sym_do_statement_token1] = ACTIONS(8821), + [aux_sym_do_condition_token1] = ACTIONS(8821), + [aux_sym_with_statement_token1] = ACTIONS(8821), + [aux_sym_exit_statement_token1] = ACTIONS(8821), + [sym_end_statement] = ACTIONS(8819), + [aux_sym_on_goto_statement_token1] = ACTIONS(8821), + [aux_sym_on_goto_statement_token2] = ACTIONS(8821), + [aux_sym_on_error_statement_token2] = ACTIONS(8821), + [sym__ambiguous_redim_statement] = ACTIONS(8819), + [aux_sym_erase_statement_token1] = ACTIONS(8821), + [aux_sym_open_statement_token1] = ACTIONS(8821), + [aux_sym_file_mode_token2] = ACTIONS(8821), + [aux_sym_file_access_token2] = ACTIONS(8821), + [aux_sym_file_lock_token2] = ACTIONS(8821), + [aux_sym_print_statement_token1] = ACTIONS(8821), + [anon_sym_PLUS] = ACTIONS(8819), + [anon_sym_DASH] = ACTIONS(8821), + [anon_sym_QMARK] = ACTIONS(8819), + [aux_sym_close_statement_token1] = ACTIONS(8821), + [aux_sym_put_statement_token1] = ACTIONS(8821), + [aux_sym_unlock_statement_token1] = ACTIONS(8821), + [aux_sym_seek_statement_token1] = ACTIONS(8821), + [sym_reset_statement] = ACTIONS(8821), + [aux_sym_raise_event_statement_token1] = ACTIONS(8821), + [sym_stop_statement] = ACTIONS(8821), + [sym_beep_statement] = ACTIONS(8821), + [aux_sym_unload_statement_token1] = ACTIONS(8821), + [aux_sym_def_type_statement_token1] = ACTIONS(8821), + [aux_sym_def_type_statement_token2] = ACTIONS(8821), + [aux_sym_def_type_statement_token3] = ACTIONS(8821), + [aux_sym_def_type_statement_token4] = ACTIONS(8821), + [aux_sym_def_type_statement_token5] = ACTIONS(8821), + [aux_sym_def_type_statement_token6] = ACTIONS(8821), + [aux_sym_def_type_statement_token7] = ACTIONS(8821), + [aux_sym_def_type_statement_token8] = ACTIONS(8821), + [aux_sym_def_type_statement_token9] = ACTIONS(8821), + [aux_sym_def_type_statement_token10] = ACTIONS(8821), + [aux_sym_def_type_statement_token11] = ACTIONS(8821), + [aux_sym_def_type_statement_token12] = ACTIONS(8821), + [aux_sym_def_type_statement_token13] = ACTIONS(8821), + [aux_sym_def_type_statement_token14] = ACTIONS(8821), + [aux_sym_call_statement_token1] = ACTIONS(8821), + [sym__ambiguous_call_statement] = ACTIONS(8821), + [aux_sym_addressof_expression_token1] = ACTIONS(8821), + [aux_sym_type_of_expression_token1] = ACTIONS(8821), + [aux_sym_unary_expression_token1] = ACTIONS(8821), + [sym_string_literal] = ACTIONS(8819), + [sym_number_literal] = ACTIONS(10963), + [aux_sym_boolean_literal_token1] = ACTIONS(8821), + [aux_sym_boolean_literal_token2] = ACTIONS(8821), + [sym_nothing_literal] = ACTIONS(8821), + [sym_null_literal] = ACTIONS(8821), + [sym_empty_literal] = ACTIONS(8821), + [sym_date_literal] = ACTIONS(8819), + [anon_sym_POUND] = ACTIONS(8821), + }, + [STATE(6082)] = { + [sym_identifier] = ACTIONS(3996), + [sym_newline] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3996), + [aux_sym_frm_property_statement_token1] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3994), + [aux_sym__attribute_identifier_token1] = ACTIONS(3996), + [aux_sym_option_statement_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3996), + [aux_sym_preprocessor_const_token1] = ACTIONS(3996), + [sym_static_modifier] = ACTIONS(3996), + [sym__dim_keyword] = ACTIONS(3996), + [sym__redim_keyword] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3996), + [aux_sym_set_accessor_token1] = ACTIONS(3996), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3994), + [aux_sym_as_type_clause_token2] = ACTIONS(3996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3996), + [aux_sym_visibility_token1] = ACTIONS(3996), + [aux_sym_visibility_token2] = ACTIONS(3996), + [aux_sym_elseif_fragment_token1] = ACTIONS(3996), + [aux_sym_else_fragment_token1] = ACTIONS(3996), + [aux_sym_select_statement_token1] = ACTIONS(3996), + [aux_sym__multiline_for_tail_token1] = ACTIONS(3996), + [aux_sym__for_header_token1] = ACTIONS(3996), + [aux_sym_do_statement_token1] = ACTIONS(3996), + [aux_sym_do_condition_token1] = ACTIONS(3996), + [aux_sym_with_statement_token1] = ACTIONS(3996), + [aux_sym_exit_statement_token1] = ACTIONS(3996), + [sym_end_statement] = ACTIONS(3994), + [aux_sym_on_goto_statement_token1] = ACTIONS(3996), + [aux_sym_on_goto_statement_token2] = ACTIONS(3996), + [aux_sym_on_error_statement_token2] = ACTIONS(3996), + [sym__ambiguous_redim_statement] = ACTIONS(3994), + [aux_sym_erase_statement_token1] = ACTIONS(3996), + [aux_sym_open_statement_token1] = ACTIONS(3996), + [aux_sym_file_mode_token2] = ACTIONS(3996), + [aux_sym_file_access_token2] = ACTIONS(3996), + [aux_sym_file_lock_token2] = ACTIONS(3996), + [aux_sym_print_statement_token1] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3994), + [aux_sym_close_statement_token1] = ACTIONS(3996), + [aux_sym_put_statement_token1] = ACTIONS(3996), + [aux_sym_unlock_statement_token1] = ACTIONS(3996), + [aux_sym_seek_statement_token1] = ACTIONS(3996), + [sym_reset_statement] = ACTIONS(3996), + [aux_sym_raise_event_statement_token1] = ACTIONS(3996), + [sym_stop_statement] = ACTIONS(3996), + [sym_beep_statement] = ACTIONS(3996), + [aux_sym_unload_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token2] = ACTIONS(3996), + [aux_sym_def_type_statement_token3] = ACTIONS(3996), + [aux_sym_def_type_statement_token4] = ACTIONS(3996), + [aux_sym_def_type_statement_token5] = ACTIONS(3996), + [aux_sym_def_type_statement_token6] = ACTIONS(3996), + [aux_sym_def_type_statement_token7] = ACTIONS(3996), + [aux_sym_def_type_statement_token8] = ACTIONS(3996), + [aux_sym_def_type_statement_token9] = ACTIONS(3996), + [aux_sym_def_type_statement_token10] = ACTIONS(3996), + [aux_sym_def_type_statement_token11] = ACTIONS(3996), + [aux_sym_def_type_statement_token12] = ACTIONS(3996), + [aux_sym_def_type_statement_token13] = ACTIONS(3996), + [aux_sym_def_type_statement_token14] = ACTIONS(3996), + [aux_sym_call_statement_token1] = ACTIONS(3996), + [sym__ambiguous_call_statement] = ACTIONS(3996), + [aux_sym_addressof_expression_token1] = ACTIONS(3996), + [aux_sym_type_of_expression_token1] = ACTIONS(3996), + [aux_sym_unary_expression_token1] = ACTIONS(3996), + [sym_string_literal] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3994), + [aux_sym_boolean_literal_token1] = ACTIONS(3996), + [aux_sym_boolean_literal_token2] = ACTIONS(3996), + [sym_nothing_literal] = ACTIONS(3996), + [sym_null_literal] = ACTIONS(3996), + [sym_empty_literal] = ACTIONS(3996), + [sym_date_literal] = ACTIONS(3994), + [anon_sym_POUND] = ACTIONS(3996), + }, + [STATE(6083)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_while_statement_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(6084)] = { + [sym_identifier] = ACTIONS(8652), + [sym_newline] = ACTIONS(8654), + [anon_sym_COLON] = ACTIONS(8654), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8652), + [aux_sym_frm_property_statement_token1] = ACTIONS(8652), + [anon_sym_DOT] = ACTIONS(8652), + [anon_sym_BANG] = ACTIONS(8654), + [aux_sym__attribute_identifier_token1] = ACTIONS(8652), + [aux_sym_option_statement_token3] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8652), + [aux_sym_preprocessor_const_token1] = ACTIONS(8652), + [sym_static_modifier] = ACTIONS(8652), + [sym__dim_keyword] = ACTIONS(8652), + [sym__redim_keyword] = ACTIONS(8652), + [aux_sym_get_accessor_token1] = ACTIONS(8652), + [aux_sym_set_accessor_token1] = ACTIONS(8652), + [anon_sym_COMMA] = ACTIONS(10965), + [aux_sym_const_declaration_token1] = ACTIONS(8652), + [anon_sym_LPAREN] = ACTIONS(8654), + [aux_sym_as_type_clause_token2] = ACTIONS(8652), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8652), + [aux_sym_visibility_token1] = ACTIONS(8652), + [aux_sym_visibility_token2] = ACTIONS(8652), + [aux_sym_elseif_fragment_token1] = ACTIONS(8652), + [aux_sym_else_fragment_token1] = ACTIONS(8652), + [aux_sym_select_statement_token1] = ACTIONS(8652), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8652), + [aux_sym__for_header_token1] = ACTIONS(8652), + [aux_sym_do_statement_token1] = ACTIONS(8652), + [aux_sym_do_condition_token1] = ACTIONS(8652), + [aux_sym_with_statement_token1] = ACTIONS(8652), + [aux_sym_exit_statement_token1] = ACTIONS(8652), + [sym_end_statement] = ACTIONS(8654), + [aux_sym_on_goto_statement_token1] = ACTIONS(8652), + [aux_sym_on_goto_statement_token2] = ACTIONS(8652), + [aux_sym_on_error_statement_token2] = ACTIONS(8652), + [sym__ambiguous_redim_statement] = ACTIONS(8654), + [aux_sym_erase_statement_token1] = ACTIONS(8652), + [aux_sym_open_statement_token1] = ACTIONS(8652), + [aux_sym_file_mode_token2] = ACTIONS(8652), + [aux_sym_file_access_token2] = ACTIONS(8652), + [aux_sym_file_lock_token2] = ACTIONS(8652), + [aux_sym_print_statement_token1] = ACTIONS(8652), + [anon_sym_PLUS] = ACTIONS(8654), + [anon_sym_DASH] = ACTIONS(8652), + [anon_sym_QMARK] = ACTIONS(8654), + [aux_sym_close_statement_token1] = ACTIONS(8652), + [aux_sym_put_statement_token1] = ACTIONS(8652), + [aux_sym_unlock_statement_token1] = ACTIONS(8652), + [aux_sym_seek_statement_token1] = ACTIONS(8652), + [sym_reset_statement] = ACTIONS(8652), + [aux_sym_raise_event_statement_token1] = ACTIONS(8652), + [sym_stop_statement] = ACTIONS(8652), + [sym_beep_statement] = ACTIONS(8652), + [aux_sym_unload_statement_token1] = ACTIONS(8652), + [aux_sym_def_type_statement_token1] = ACTIONS(8652), + [aux_sym_def_type_statement_token2] = ACTIONS(8652), + [aux_sym_def_type_statement_token3] = ACTIONS(8652), + [aux_sym_def_type_statement_token4] = ACTIONS(8652), + [aux_sym_def_type_statement_token5] = ACTIONS(8652), + [aux_sym_def_type_statement_token6] = ACTIONS(8652), + [aux_sym_def_type_statement_token7] = ACTIONS(8652), + [aux_sym_def_type_statement_token8] = ACTIONS(8652), + [aux_sym_def_type_statement_token9] = ACTIONS(8652), + [aux_sym_def_type_statement_token10] = ACTIONS(8652), + [aux_sym_def_type_statement_token11] = ACTIONS(8652), + [aux_sym_def_type_statement_token12] = ACTIONS(8652), + [aux_sym_def_type_statement_token13] = ACTIONS(8652), + [aux_sym_def_type_statement_token14] = ACTIONS(8652), + [aux_sym_call_statement_token1] = ACTIONS(8652), + [sym__ambiguous_call_statement] = ACTIONS(8652), + [aux_sym_addressof_expression_token1] = ACTIONS(8652), + [aux_sym_type_of_expression_token1] = ACTIONS(8652), + [aux_sym_unary_expression_token1] = ACTIONS(8652), + [sym_string_literal] = ACTIONS(8654), + [sym_number_literal] = ACTIONS(8654), + [aux_sym_boolean_literal_token1] = ACTIONS(8652), + [aux_sym_boolean_literal_token2] = ACTIONS(8652), + [sym_nothing_literal] = ACTIONS(8652), + [sym_null_literal] = ACTIONS(8652), + [sym_empty_literal] = ACTIONS(8652), + [sym_date_literal] = ACTIONS(8654), + [anon_sym_POUND] = ACTIONS(8652), + }, + [STATE(6085)] = { + [sym_identifier] = ACTIONS(8717), + [sym_newline] = ACTIONS(8719), + [anon_sym_COLON] = ACTIONS(8719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8717), + [aux_sym_frm_property_statement_token1] = ACTIONS(8717), + [anon_sym_DOT] = ACTIONS(8717), + [anon_sym_BANG] = ACTIONS(8719), + [aux_sym__attribute_identifier_token1] = ACTIONS(8717), + [aux_sym_option_statement_token3] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8717), + [aux_sym_preprocessor_const_token1] = ACTIONS(8717), + [sym_static_modifier] = ACTIONS(8717), + [sym__dim_keyword] = ACTIONS(8717), + [sym__redim_keyword] = ACTIONS(8717), + [aux_sym_get_accessor_token1] = ACTIONS(8717), + [aux_sym_set_accessor_token1] = ACTIONS(8717), + [anon_sym_COMMA] = ACTIONS(10967), + [aux_sym_const_declaration_token1] = ACTIONS(8717), + [anon_sym_LPAREN] = ACTIONS(8719), + [aux_sym_as_type_clause_token2] = ACTIONS(8717), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8717), + [aux_sym_visibility_token1] = ACTIONS(8717), + [aux_sym_visibility_token2] = ACTIONS(8717), + [aux_sym_elseif_fragment_token1] = ACTIONS(8717), + [aux_sym_else_fragment_token1] = ACTIONS(8717), + [aux_sym_select_statement_token1] = ACTIONS(8717), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8717), + [aux_sym__for_header_token1] = ACTIONS(8717), + [aux_sym_do_statement_token1] = ACTIONS(8717), + [aux_sym_do_condition_token1] = ACTIONS(8717), + [aux_sym_with_statement_token1] = ACTIONS(8717), + [aux_sym_exit_statement_token1] = ACTIONS(8717), + [sym_end_statement] = ACTIONS(8719), + [aux_sym_on_goto_statement_token1] = ACTIONS(8717), + [aux_sym_on_goto_statement_token2] = ACTIONS(8717), + [aux_sym_on_error_statement_token2] = ACTIONS(8717), + [sym__ambiguous_redim_statement] = ACTIONS(8719), + [aux_sym_erase_statement_token1] = ACTIONS(8717), + [aux_sym_open_statement_token1] = ACTIONS(8717), + [aux_sym_file_mode_token2] = ACTIONS(8717), + [aux_sym_file_access_token2] = ACTIONS(8717), + [aux_sym_file_lock_token2] = ACTIONS(8717), + [aux_sym_print_statement_token1] = ACTIONS(8717), + [anon_sym_PLUS] = ACTIONS(8719), + [anon_sym_DASH] = ACTIONS(8717), + [anon_sym_QMARK] = ACTIONS(8719), + [aux_sym_close_statement_token1] = ACTIONS(8717), + [aux_sym_put_statement_token1] = ACTIONS(8717), + [aux_sym_unlock_statement_token1] = ACTIONS(8717), + [aux_sym_seek_statement_token1] = ACTIONS(8717), + [sym_reset_statement] = ACTIONS(8717), + [aux_sym_raise_event_statement_token1] = ACTIONS(8717), + [sym_stop_statement] = ACTIONS(8717), + [sym_beep_statement] = ACTIONS(8717), + [aux_sym_unload_statement_token1] = ACTIONS(8717), + [aux_sym_def_type_statement_token1] = ACTIONS(8717), + [aux_sym_def_type_statement_token2] = ACTIONS(8717), + [aux_sym_def_type_statement_token3] = ACTIONS(8717), + [aux_sym_def_type_statement_token4] = ACTIONS(8717), + [aux_sym_def_type_statement_token5] = ACTIONS(8717), + [aux_sym_def_type_statement_token6] = ACTIONS(8717), + [aux_sym_def_type_statement_token7] = ACTIONS(8717), + [aux_sym_def_type_statement_token8] = ACTIONS(8717), + [aux_sym_def_type_statement_token9] = ACTIONS(8717), + [aux_sym_def_type_statement_token10] = ACTIONS(8717), + [aux_sym_def_type_statement_token11] = ACTIONS(8717), + [aux_sym_def_type_statement_token12] = ACTIONS(8717), + [aux_sym_def_type_statement_token13] = ACTIONS(8717), + [aux_sym_def_type_statement_token14] = ACTIONS(8717), + [aux_sym_call_statement_token1] = ACTIONS(8717), + [sym__ambiguous_call_statement] = ACTIONS(8717), + [aux_sym_addressof_expression_token1] = ACTIONS(8717), + [aux_sym_type_of_expression_token1] = ACTIONS(8717), + [aux_sym_unary_expression_token1] = ACTIONS(8717), + [sym_string_literal] = ACTIONS(8719), + [sym_number_literal] = ACTIONS(8719), + [aux_sym_boolean_literal_token1] = ACTIONS(8717), + [aux_sym_boolean_literal_token2] = ACTIONS(8717), + [sym_nothing_literal] = ACTIONS(8717), + [sym_null_literal] = ACTIONS(8717), + [sym_empty_literal] = ACTIONS(8717), + [sym_date_literal] = ACTIONS(8719), + [anon_sym_POUND] = ACTIONS(8717), + }, + [STATE(6086)] = { + [sym_argument_list] = STATE(6456), + [sym_identifier] = ACTIONS(8843), + [sym_newline] = ACTIONS(8845), + [anon_sym_COLON] = ACTIONS(8845), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8843), + [aux_sym_frm_property_statement_token1] = ACTIONS(8843), + [anon_sym_DOT] = ACTIONS(8843), + [anon_sym_BANG] = ACTIONS(8845), + [aux_sym__attribute_identifier_token1] = ACTIONS(8843), + [aux_sym_option_statement_token3] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8843), + [aux_sym_preprocessor_const_token1] = ACTIONS(8843), + [sym_static_modifier] = ACTIONS(8843), + [sym__dim_keyword] = ACTIONS(8843), + [sym__redim_keyword] = ACTIONS(8843), + [aux_sym_get_accessor_token1] = ACTIONS(8843), + [aux_sym_set_accessor_token1] = ACTIONS(8843), + [aux_sym_const_declaration_token1] = ACTIONS(8843), + [anon_sym_LPAREN] = ACTIONS(10429), + [aux_sym_as_type_clause_token2] = ACTIONS(8843), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8843), + [aux_sym_visibility_token1] = ACTIONS(8843), + [aux_sym_visibility_token2] = ACTIONS(8843), + [aux_sym_elseif_fragment_token1] = ACTIONS(8843), + [aux_sym_else_fragment_token1] = ACTIONS(8843), + [aux_sym_select_statement_token1] = ACTIONS(8843), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8843), + [aux_sym__for_header_token1] = ACTIONS(8843), + [aux_sym_do_statement_token1] = ACTIONS(8843), + [aux_sym_do_condition_token1] = ACTIONS(8843), + [aux_sym_with_statement_token1] = ACTIONS(8843), + [aux_sym_exit_statement_token1] = ACTIONS(8843), + [sym_end_statement] = ACTIONS(8845), + [aux_sym_on_goto_statement_token1] = ACTIONS(8843), + [aux_sym_on_goto_statement_token2] = ACTIONS(8843), + [aux_sym_on_error_statement_token2] = ACTIONS(8843), + [sym__ambiguous_redim_statement] = ACTIONS(8845), + [aux_sym_erase_statement_token1] = ACTIONS(8843), + [aux_sym_open_statement_token1] = ACTIONS(8843), + [aux_sym_file_mode_token2] = ACTIONS(8843), + [aux_sym_file_access_token2] = ACTIONS(8843), + [aux_sym_file_lock_token2] = ACTIONS(8843), + [aux_sym_print_statement_token1] = ACTIONS(8843), + [anon_sym_PLUS] = ACTIONS(8845), + [anon_sym_DASH] = ACTIONS(8843), + [anon_sym_QMARK] = ACTIONS(8845), + [aux_sym_close_statement_token1] = ACTIONS(8843), + [aux_sym_put_statement_token1] = ACTIONS(8843), + [aux_sym_unlock_statement_token1] = ACTIONS(8843), + [aux_sym_seek_statement_token1] = ACTIONS(8843), + [sym_reset_statement] = ACTIONS(8843), + [aux_sym_raise_event_statement_token1] = ACTIONS(8843), + [sym_stop_statement] = ACTIONS(8843), + [sym_beep_statement] = ACTIONS(8843), + [aux_sym_unload_statement_token1] = ACTIONS(8843), + [aux_sym_def_type_statement_token1] = ACTIONS(8843), + [aux_sym_def_type_statement_token2] = ACTIONS(8843), + [aux_sym_def_type_statement_token3] = ACTIONS(8843), + [aux_sym_def_type_statement_token4] = ACTIONS(8843), + [aux_sym_def_type_statement_token5] = ACTIONS(8843), + [aux_sym_def_type_statement_token6] = ACTIONS(8843), + [aux_sym_def_type_statement_token7] = ACTIONS(8843), + [aux_sym_def_type_statement_token8] = ACTIONS(8843), + [aux_sym_def_type_statement_token9] = ACTIONS(8843), + [aux_sym_def_type_statement_token10] = ACTIONS(8843), + [aux_sym_def_type_statement_token11] = ACTIONS(8843), + [aux_sym_def_type_statement_token12] = ACTIONS(8843), + [aux_sym_def_type_statement_token13] = ACTIONS(8843), + [aux_sym_def_type_statement_token14] = ACTIONS(8843), + [aux_sym_call_statement_token1] = ACTIONS(8843), + [sym__ambiguous_call_statement] = ACTIONS(8843), + [aux_sym_addressof_expression_token1] = ACTIONS(8843), + [aux_sym_type_of_expression_token1] = ACTIONS(8843), + [aux_sym_unary_expression_token1] = ACTIONS(8843), + [sym_string_literal] = ACTIONS(8845), + [sym_number_literal] = ACTIONS(8845), + [aux_sym_boolean_literal_token1] = ACTIONS(8843), + [aux_sym_boolean_literal_token2] = ACTIONS(8843), + [sym_nothing_literal] = ACTIONS(8843), + [sym_null_literal] = ACTIONS(8843), + [sym_empty_literal] = ACTIONS(8843), + [sym_date_literal] = ACTIONS(8845), + [anon_sym_POUND] = ACTIONS(8843), + }, + [STATE(6087)] = { + [sym_identifier] = ACTIONS(8467), + [sym_newline] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8467), + [aux_sym_frm_property_statement_token1] = ACTIONS(8467), + [anon_sym_DOT] = ACTIONS(8467), + [anon_sym_BANG] = ACTIONS(6089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8467), + [aux_sym_option_statement_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8467), + [aux_sym_preprocessor_const_token1] = ACTIONS(8467), + [sym_static_modifier] = ACTIONS(8467), + [sym__dim_keyword] = ACTIONS(8467), + [sym__redim_keyword] = ACTIONS(8467), + [aux_sym_get_accessor_token1] = ACTIONS(8467), + [aux_sym_set_accessor_token1] = ACTIONS(8467), + [anon_sym_COMMA] = ACTIONS(6089), + [aux_sym_const_declaration_token1] = ACTIONS(8467), + [anon_sym_LPAREN] = ACTIONS(6089), + [aux_sym_as_type_clause_token2] = ACTIONS(8467), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8467), + [aux_sym_visibility_token1] = ACTIONS(8467), + [aux_sym_visibility_token2] = ACTIONS(8467), + [aux_sym_elseif_fragment_token1] = ACTIONS(8467), + [aux_sym_else_fragment_token1] = ACTIONS(8467), + [aux_sym_select_statement_token1] = ACTIONS(8467), + [aux_sym__for_header_token1] = ACTIONS(8467), + [aux_sym_do_statement_token1] = ACTIONS(8467), + [aux_sym_do_condition_token1] = ACTIONS(8467), + [aux_sym_with_statement_token1] = ACTIONS(8467), + [aux_sym_exit_statement_token1] = ACTIONS(8467), + [sym_end_statement] = ACTIONS(6089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8467), + [aux_sym_on_goto_statement_token2] = ACTIONS(8467), + [aux_sym_on_error_statement_token2] = ACTIONS(8467), + [sym__ambiguous_redim_statement] = ACTIONS(6089), + [aux_sym_erase_statement_token1] = ACTIONS(8467), + [aux_sym_open_statement_token1] = ACTIONS(8467), + [aux_sym_file_mode_token2] = ACTIONS(8467), + [aux_sym_file_access_token2] = ACTIONS(8467), + [aux_sym_file_lock_token2] = ACTIONS(8467), + [aux_sym_print_statement_token1] = ACTIONS(8467), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(8467), + [anon_sym_QMARK] = ACTIONS(6089), + [aux_sym_close_statement_token1] = ACTIONS(8467), + [aux_sym_put_statement_token1] = ACTIONS(8467), + [aux_sym_unlock_statement_token1] = ACTIONS(8467), + [aux_sym_seek_statement_token1] = ACTIONS(8467), + [sym_reset_statement] = ACTIONS(8467), + [aux_sym_raise_event_statement_token1] = ACTIONS(8467), + [sym_stop_statement] = ACTIONS(8467), + [sym_beep_statement] = ACTIONS(8467), + [aux_sym_unload_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token2] = ACTIONS(8467), + [aux_sym_def_type_statement_token3] = ACTIONS(8467), + [aux_sym_def_type_statement_token4] = ACTIONS(8467), + [aux_sym_def_type_statement_token5] = ACTIONS(8467), + [aux_sym_def_type_statement_token6] = ACTIONS(8467), + [aux_sym_def_type_statement_token7] = ACTIONS(8467), + [aux_sym_def_type_statement_token8] = ACTIONS(8467), + [aux_sym_def_type_statement_token9] = ACTIONS(8467), + [aux_sym_def_type_statement_token10] = ACTIONS(8467), + [aux_sym_def_type_statement_token11] = ACTIONS(8467), + [aux_sym_def_type_statement_token12] = ACTIONS(8467), + [aux_sym_def_type_statement_token13] = ACTIONS(8467), + [aux_sym_def_type_statement_token14] = ACTIONS(8467), + [aux_sym_call_statement_token1] = ACTIONS(8467), + [sym__ambiguous_call_statement] = ACTIONS(8467), + [aux_sym_addressof_expression_token1] = ACTIONS(8467), + [aux_sym_type_of_expression_token1] = ACTIONS(8467), + [aux_sym_unary_expression_token1] = ACTIONS(8467), + [sym_string_literal] = ACTIONS(6089), + [sym_number_literal] = ACTIONS(6089), + [aux_sym_boolean_literal_token1] = ACTIONS(8467), + [aux_sym_boolean_literal_token2] = ACTIONS(8467), + [sym_nothing_literal] = ACTIONS(8467), + [sym_null_literal] = ACTIONS(8467), + [sym_empty_literal] = ACTIONS(8467), + [sym_date_literal] = ACTIONS(6089), + [anon_sym_POUND] = ACTIONS(8467), + }, + [STATE(6088)] = { + [aux_sym__argument_sequence_repeat2] = STATE(6218), + [sym_identifier] = ACTIONS(4166), + [sym_newline] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4166), + [aux_sym_frm_property_statement_token1] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [aux_sym__attribute_identifier_token1] = ACTIONS(4166), + [aux_sym_option_statement_token3] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4166), + [aux_sym_preprocessor_const_token1] = ACTIONS(4166), + [sym_static_modifier] = ACTIONS(4166), + [sym__dim_keyword] = ACTIONS(4166), + [sym__redim_keyword] = ACTIONS(4166), + [aux_sym_get_accessor_token1] = ACTIONS(4166), + [aux_sym_set_accessor_token1] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(5314), + [aux_sym_const_declaration_token1] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4164), + [aux_sym_as_type_clause_token2] = ACTIONS(4166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4166), + [aux_sym_visibility_token1] = ACTIONS(4166), + [aux_sym_visibility_token2] = ACTIONS(4166), + [aux_sym_elseif_fragment_token1] = ACTIONS(4166), + [aux_sym_else_fragment_token1] = ACTIONS(4166), + [aux_sym_select_statement_token1] = ACTIONS(4166), + [aux_sym__for_header_token1] = ACTIONS(4166), + [aux_sym_do_statement_token1] = ACTIONS(4166), + [aux_sym_do_condition_token1] = ACTIONS(4166), + [aux_sym_with_statement_token1] = ACTIONS(4166), + [aux_sym_exit_statement_token1] = ACTIONS(4166), + [sym_end_statement] = ACTIONS(4164), + [aux_sym_on_goto_statement_token1] = ACTIONS(4166), + [aux_sym_on_goto_statement_token2] = ACTIONS(4166), + [aux_sym_on_error_statement_token2] = ACTIONS(4166), + [sym__ambiguous_redim_statement] = ACTIONS(4164), + [aux_sym_erase_statement_token1] = ACTIONS(4166), + [aux_sym_open_statement_token1] = ACTIONS(4166), + [aux_sym_file_mode_token2] = ACTIONS(4166), + [aux_sym_file_access_token2] = ACTIONS(4166), + [aux_sym_file_lock_token2] = ACTIONS(4166), + [aux_sym_print_statement_token1] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4164), + [aux_sym_close_statement_token1] = ACTIONS(4166), + [aux_sym_put_statement_token1] = ACTIONS(4166), + [aux_sym_unlock_statement_token1] = ACTIONS(4166), + [aux_sym_seek_statement_token1] = ACTIONS(4166), + [sym_reset_statement] = ACTIONS(4166), + [aux_sym_raise_event_statement_token1] = ACTIONS(4166), + [sym_stop_statement] = ACTIONS(4166), + [sym_beep_statement] = ACTIONS(4166), + [aux_sym_unload_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token1] = ACTIONS(4166), + [aux_sym_def_type_statement_token2] = ACTIONS(4166), + [aux_sym_def_type_statement_token3] = ACTIONS(4166), + [aux_sym_def_type_statement_token4] = ACTIONS(4166), + [aux_sym_def_type_statement_token5] = ACTIONS(4166), + [aux_sym_def_type_statement_token6] = ACTIONS(4166), + [aux_sym_def_type_statement_token7] = ACTIONS(4166), + [aux_sym_def_type_statement_token8] = ACTIONS(4166), + [aux_sym_def_type_statement_token9] = ACTIONS(4166), + [aux_sym_def_type_statement_token10] = ACTIONS(4166), + [aux_sym_def_type_statement_token11] = ACTIONS(4166), + [aux_sym_def_type_statement_token12] = ACTIONS(4166), + [aux_sym_def_type_statement_token13] = ACTIONS(4166), + [aux_sym_def_type_statement_token14] = ACTIONS(4166), + [aux_sym_call_statement_token1] = ACTIONS(4166), + [sym__ambiguous_call_statement] = ACTIONS(4166), + [aux_sym_addressof_expression_token1] = ACTIONS(4166), + [aux_sym_type_of_expression_token1] = ACTIONS(4166), + [aux_sym_unary_expression_token1] = ACTIONS(4166), + [sym_string_literal] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4164), + [aux_sym_boolean_literal_token1] = ACTIONS(4166), + [aux_sym_boolean_literal_token2] = ACTIONS(4166), + [sym_nothing_literal] = ACTIONS(4166), + [sym_null_literal] = ACTIONS(4166), + [sym_empty_literal] = ACTIONS(4166), + [sym_date_literal] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4166), + }, + [STATE(6089)] = { + [sym_identifier] = ACTIONS(5562), + [sym_newline] = ACTIONS(5558), + [anon_sym_COLON] = ACTIONS(5558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5562), + [aux_sym_frm_property_statement_token1] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(10425), + [anon_sym_BANG] = ACTIONS(10427), + [aux_sym__attribute_identifier_token1] = ACTIONS(5562), + [aux_sym_option_statement_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5562), + [aux_sym_preprocessor_const_token1] = ACTIONS(5562), + [sym_static_modifier] = ACTIONS(5562), + [sym__dim_keyword] = ACTIONS(5562), + [sym__redim_keyword] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5562), + [aux_sym_set_accessor_token1] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5558), + [aux_sym_as_type_clause_token2] = ACTIONS(5562), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5562), + [aux_sym_visibility_token1] = ACTIONS(5562), + [aux_sym_visibility_token2] = ACTIONS(5562), + [aux_sym_elseif_fragment_token1] = ACTIONS(5562), + [aux_sym_else_fragment_token1] = ACTIONS(5562), + [aux_sym_select_statement_token1] = ACTIONS(5562), + [aux_sym__multiline_for_tail_token1] = ACTIONS(5562), + [aux_sym__for_header_token1] = ACTIONS(5562), + [aux_sym_do_statement_token1] = ACTIONS(5562), + [aux_sym_do_condition_token1] = ACTIONS(5562), + [aux_sym_with_statement_token1] = ACTIONS(5562), + [aux_sym_exit_statement_token1] = ACTIONS(5562), + [sym_end_statement] = ACTIONS(5558), + [aux_sym_on_goto_statement_token1] = ACTIONS(5562), + [aux_sym_on_goto_statement_token2] = ACTIONS(5562), + [aux_sym_on_error_statement_token2] = ACTIONS(5562), + [sym__ambiguous_redim_statement] = ACTIONS(5558), + [aux_sym_erase_statement_token1] = ACTIONS(5562), + [aux_sym_open_statement_token1] = ACTIONS(5562), + [aux_sym_file_mode_token2] = ACTIONS(5562), + [aux_sym_file_access_token2] = ACTIONS(5562), + [aux_sym_file_lock_token2] = ACTIONS(5562), + [aux_sym_print_statement_token1] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5558), + [aux_sym_close_statement_token1] = ACTIONS(5562), + [aux_sym_put_statement_token1] = ACTIONS(5562), + [aux_sym_unlock_statement_token1] = ACTIONS(5562), + [aux_sym_seek_statement_token1] = ACTIONS(5562), + [sym_reset_statement] = ACTIONS(5562), + [aux_sym_raise_event_statement_token1] = ACTIONS(5562), + [sym_stop_statement] = ACTIONS(5562), + [sym_beep_statement] = ACTIONS(5562), + [aux_sym_unload_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token2] = ACTIONS(5562), + [aux_sym_def_type_statement_token3] = ACTIONS(5562), + [aux_sym_def_type_statement_token4] = ACTIONS(5562), + [aux_sym_def_type_statement_token5] = ACTIONS(5562), + [aux_sym_def_type_statement_token6] = ACTIONS(5562), + [aux_sym_def_type_statement_token7] = ACTIONS(5562), + [aux_sym_def_type_statement_token8] = ACTIONS(5562), + [aux_sym_def_type_statement_token9] = ACTIONS(5562), + [aux_sym_def_type_statement_token10] = ACTIONS(5562), + [aux_sym_def_type_statement_token11] = ACTIONS(5562), + [aux_sym_def_type_statement_token12] = ACTIONS(5562), + [aux_sym_def_type_statement_token13] = ACTIONS(5562), + [aux_sym_def_type_statement_token14] = ACTIONS(5562), + [aux_sym_call_statement_token1] = ACTIONS(5562), + [sym__ambiguous_call_statement] = ACTIONS(5562), + [aux_sym_addressof_expression_token1] = ACTIONS(5562), + [aux_sym_type_of_expression_token1] = ACTIONS(5562), + [aux_sym_unary_expression_token1] = ACTIONS(5562), + [sym_string_literal] = ACTIONS(5558), + [sym_number_literal] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5562), + [aux_sym_boolean_literal_token2] = ACTIONS(5562), + [sym_nothing_literal] = ACTIONS(5562), + [sym_null_literal] = ACTIONS(5562), + [sym_empty_literal] = ACTIONS(5562), + [sym_date_literal] = ACTIONS(5558), + [anon_sym_POUND] = ACTIONS(5562), + }, + [STATE(6090)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(5963), + [sym_identifier] = ACTIONS(8813), + [sym_newline] = ACTIONS(8815), + [anon_sym_COLON] = ACTIONS(10903), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8813), + [aux_sym_frm_property_statement_token1] = ACTIONS(8813), + [anon_sym_DOT] = ACTIONS(8813), + [anon_sym_BANG] = ACTIONS(8815), + [aux_sym__attribute_identifier_token1] = ACTIONS(8813), + [aux_sym_option_statement_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8813), + [aux_sym_preprocessor_const_token1] = ACTIONS(8813), + [sym_static_modifier] = ACTIONS(8813), + [sym__dim_keyword] = ACTIONS(8813), + [sym__redim_keyword] = ACTIONS(8813), + [aux_sym_get_accessor_token1] = ACTIONS(8813), + [aux_sym_set_accessor_token1] = ACTIONS(8813), + [aux_sym_const_declaration_token1] = ACTIONS(8813), + [anon_sym_LPAREN] = ACTIONS(8815), + [aux_sym_as_type_clause_token2] = ACTIONS(8813), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8813), + [aux_sym_visibility_token1] = ACTIONS(8813), + [aux_sym_visibility_token2] = ACTIONS(8813), + [aux_sym_elseif_fragment_token1] = ACTIONS(8813), + [aux_sym_else_fragment_token1] = ACTIONS(8813), + [aux_sym_select_statement_token1] = ACTIONS(8813), + [aux_sym__for_header_token1] = ACTIONS(8813), + [aux_sym_do_statement_token1] = ACTIONS(8813), + [aux_sym_do_statement_token2] = ACTIONS(8813), + [aux_sym_do_condition_token1] = ACTIONS(8813), + [aux_sym_with_statement_token1] = ACTIONS(8813), + [aux_sym_exit_statement_token1] = ACTIONS(8813), + [sym_end_statement] = ACTIONS(8815), + [aux_sym_on_goto_statement_token1] = ACTIONS(8813), + [aux_sym_on_goto_statement_token2] = ACTIONS(8813), + [aux_sym_on_error_statement_token2] = ACTIONS(8813), + [sym__ambiguous_redim_statement] = ACTIONS(8815), + [aux_sym_erase_statement_token1] = ACTIONS(8813), + [aux_sym_open_statement_token1] = ACTIONS(8813), + [aux_sym_file_mode_token2] = ACTIONS(8813), + [aux_sym_file_access_token2] = ACTIONS(8813), + [aux_sym_file_lock_token2] = ACTIONS(8813), + [aux_sym_print_statement_token1] = ACTIONS(8813), + [anon_sym_PLUS] = ACTIONS(8815), + [anon_sym_DASH] = ACTIONS(8813), + [anon_sym_QMARK] = ACTIONS(8815), + [aux_sym_close_statement_token1] = ACTIONS(8813), + [aux_sym_put_statement_token1] = ACTIONS(8813), + [aux_sym_unlock_statement_token1] = ACTIONS(8813), + [aux_sym_seek_statement_token1] = ACTIONS(8813), + [sym_reset_statement] = ACTIONS(8813), + [aux_sym_raise_event_statement_token1] = ACTIONS(8813), + [sym_stop_statement] = ACTIONS(8813), + [sym_beep_statement] = ACTIONS(8813), + [aux_sym_unload_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token2] = ACTIONS(8813), + [aux_sym_def_type_statement_token3] = ACTIONS(8813), + [aux_sym_def_type_statement_token4] = ACTIONS(8813), + [aux_sym_def_type_statement_token5] = ACTIONS(8813), + [aux_sym_def_type_statement_token6] = ACTIONS(8813), + [aux_sym_def_type_statement_token7] = ACTIONS(8813), + [aux_sym_def_type_statement_token8] = ACTIONS(8813), + [aux_sym_def_type_statement_token9] = ACTIONS(8813), + [aux_sym_def_type_statement_token10] = ACTIONS(8813), + [aux_sym_def_type_statement_token11] = ACTIONS(8813), + [aux_sym_def_type_statement_token12] = ACTIONS(8813), + [aux_sym_def_type_statement_token13] = ACTIONS(8813), + [aux_sym_def_type_statement_token14] = ACTIONS(8813), + [aux_sym_call_statement_token1] = ACTIONS(8813), + [sym__ambiguous_call_statement] = ACTIONS(8813), + [aux_sym_addressof_expression_token1] = ACTIONS(8813), + [aux_sym_type_of_expression_token1] = ACTIONS(8813), + [aux_sym_unary_expression_token1] = ACTIONS(8813), + [sym_string_literal] = ACTIONS(8815), + [sym_number_literal] = ACTIONS(8815), + [aux_sym_boolean_literal_token1] = ACTIONS(8813), + [aux_sym_boolean_literal_token2] = ACTIONS(8813), + [sym_nothing_literal] = ACTIONS(8813), + [sym_null_literal] = ACTIONS(8813), + [sym_empty_literal] = ACTIONS(8813), + [sym_date_literal] = ACTIONS(8815), + [anon_sym_POUND] = ACTIONS(8813), + }, + [STATE(6091)] = { + [aux_sym_input_statement_repeat1] = STATE(6091), + [sym_identifier] = ACTIONS(8401), + [sym_newline] = ACTIONS(8403), + [anon_sym_COLON] = ACTIONS(8403), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8401), + [aux_sym_frm_property_statement_token1] = ACTIONS(8401), + [anon_sym_DOT] = ACTIONS(8401), + [anon_sym_BANG] = ACTIONS(8403), + [aux_sym__attribute_identifier_token1] = ACTIONS(8401), + [aux_sym_option_statement_token3] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8401), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8401), + [aux_sym_preprocessor_const_token1] = ACTIONS(8401), + [sym_static_modifier] = ACTIONS(8401), + [sym__dim_keyword] = ACTIONS(8401), + [sym__redim_keyword] = ACTIONS(8401), + [aux_sym_get_accessor_token1] = ACTIONS(8401), + [aux_sym_set_accessor_token1] = ACTIONS(8401), + [anon_sym_COMMA] = ACTIONS(10969), + [aux_sym_const_declaration_token1] = ACTIONS(8401), + [anon_sym_LPAREN] = ACTIONS(8403), + [aux_sym_as_type_clause_token2] = ACTIONS(8401), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8401), + [aux_sym_visibility_token1] = ACTIONS(8401), + [aux_sym_visibility_token2] = ACTIONS(8401), + [aux_sym_elseif_fragment_token1] = ACTIONS(8401), + [aux_sym_else_fragment_token1] = ACTIONS(8401), + [aux_sym_select_statement_token1] = ACTIONS(8401), + [aux_sym__for_header_token1] = ACTIONS(8401), + [aux_sym_do_statement_token1] = ACTIONS(8401), + [aux_sym_do_condition_token1] = ACTIONS(8401), + [aux_sym_with_statement_token1] = ACTIONS(8401), + [aux_sym_exit_statement_token1] = ACTIONS(8401), + [sym_end_statement] = ACTIONS(8403), + [aux_sym_on_goto_statement_token1] = ACTIONS(8401), + [aux_sym_on_goto_statement_token2] = ACTIONS(8401), + [aux_sym_on_error_statement_token2] = ACTIONS(8401), + [sym__ambiguous_redim_statement] = ACTIONS(8403), + [aux_sym_erase_statement_token1] = ACTIONS(8401), + [aux_sym_open_statement_token1] = ACTIONS(8401), + [aux_sym_file_mode_token2] = ACTIONS(8401), + [aux_sym_file_access_token2] = ACTIONS(8401), + [aux_sym_file_lock_token2] = ACTIONS(8401), + [aux_sym_print_statement_token1] = ACTIONS(8401), + [anon_sym_PLUS] = ACTIONS(8403), + [anon_sym_DASH] = ACTIONS(8401), + [anon_sym_QMARK] = ACTIONS(8403), + [aux_sym_close_statement_token1] = ACTIONS(8401), + [aux_sym_put_statement_token1] = ACTIONS(8401), + [aux_sym_unlock_statement_token1] = ACTIONS(8401), + [aux_sym_seek_statement_token1] = ACTIONS(8401), + [sym_reset_statement] = ACTIONS(8401), + [aux_sym_raise_event_statement_token1] = ACTIONS(8401), + [sym_stop_statement] = ACTIONS(8401), + [sym_beep_statement] = ACTIONS(8401), + [aux_sym_unload_statement_token1] = ACTIONS(8401), + [aux_sym_def_type_statement_token1] = ACTIONS(8401), + [aux_sym_def_type_statement_token2] = ACTIONS(8401), + [aux_sym_def_type_statement_token3] = ACTIONS(8401), + [aux_sym_def_type_statement_token4] = ACTIONS(8401), + [aux_sym_def_type_statement_token5] = ACTIONS(8401), + [aux_sym_def_type_statement_token6] = ACTIONS(8401), + [aux_sym_def_type_statement_token7] = ACTIONS(8401), + [aux_sym_def_type_statement_token8] = ACTIONS(8401), + [aux_sym_def_type_statement_token9] = ACTIONS(8401), + [aux_sym_def_type_statement_token10] = ACTIONS(8401), + [aux_sym_def_type_statement_token11] = ACTIONS(8401), + [aux_sym_def_type_statement_token12] = ACTIONS(8401), + [aux_sym_def_type_statement_token13] = ACTIONS(8401), + [aux_sym_def_type_statement_token14] = ACTIONS(8401), + [aux_sym_call_statement_token1] = ACTIONS(8401), + [sym__ambiguous_call_statement] = ACTIONS(8401), + [aux_sym_addressof_expression_token1] = ACTIONS(8401), + [aux_sym_type_of_expression_token1] = ACTIONS(8401), + [aux_sym_unary_expression_token1] = ACTIONS(8401), + [sym_string_literal] = ACTIONS(8403), + [sym_number_literal] = ACTIONS(8403), + [aux_sym_boolean_literal_token1] = ACTIONS(8401), + [aux_sym_boolean_literal_token2] = ACTIONS(8401), + [sym_nothing_literal] = ACTIONS(8401), + [sym_null_literal] = ACTIONS(8401), + [sym_empty_literal] = ACTIONS(8401), + [sym_date_literal] = ACTIONS(8403), + [anon_sym_POUND] = ACTIONS(8401), + }, + [STATE(6092)] = { + [sym_identifier] = ACTIONS(8776), + [sym_newline] = ACTIONS(8778), + [anon_sym_COLON] = ACTIONS(8778), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8776), + [aux_sym_frm_property_statement_token1] = ACTIONS(8776), + [anon_sym_DOT] = ACTIONS(8776), + [anon_sym_BANG] = ACTIONS(8778), + [aux_sym__attribute_identifier_token1] = ACTIONS(8776), + [aux_sym_option_statement_token3] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8776), + [aux_sym_preprocessor_const_token1] = ACTIONS(8776), + [sym_static_modifier] = ACTIONS(8776), + [sym__dim_keyword] = ACTIONS(8776), + [sym__redim_keyword] = ACTIONS(8776), + [aux_sym_get_accessor_token1] = ACTIONS(8776), + [aux_sym_set_accessor_token1] = ACTIONS(8776), + [anon_sym_COMMA] = ACTIONS(8778), + [aux_sym_const_declaration_token1] = ACTIONS(8776), + [anon_sym_LPAREN] = ACTIONS(8778), + [aux_sym_as_type_clause_token2] = ACTIONS(8776), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8776), + [aux_sym_visibility_token1] = ACTIONS(8776), + [aux_sym_visibility_token2] = ACTIONS(8776), + [aux_sym_elseif_fragment_token1] = ACTIONS(8776), + [aux_sym_else_fragment_token1] = ACTIONS(8776), + [aux_sym_select_statement_token1] = ACTIONS(8776), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8776), + [aux_sym__for_header_token1] = ACTIONS(8776), + [aux_sym_do_statement_token1] = ACTIONS(8776), + [aux_sym_do_condition_token1] = ACTIONS(8776), + [aux_sym_with_statement_token1] = ACTIONS(8776), + [aux_sym_exit_statement_token1] = ACTIONS(8776), + [sym_end_statement] = ACTIONS(8778), + [aux_sym_on_goto_statement_token1] = ACTIONS(8776), + [aux_sym_on_goto_statement_token2] = ACTIONS(8776), + [aux_sym_on_error_statement_token2] = ACTIONS(8776), + [sym__ambiguous_redim_statement] = ACTIONS(8778), + [aux_sym_erase_statement_token1] = ACTIONS(8776), + [aux_sym_open_statement_token1] = ACTIONS(8776), + [aux_sym_file_mode_token2] = ACTIONS(8776), + [aux_sym_file_access_token2] = ACTIONS(8776), + [aux_sym_file_lock_token2] = ACTIONS(8776), + [aux_sym_print_statement_token1] = ACTIONS(8776), + [anon_sym_PLUS] = ACTIONS(8778), + [anon_sym_DASH] = ACTIONS(8776), + [anon_sym_QMARK] = ACTIONS(8778), + [aux_sym_close_statement_token1] = ACTIONS(8776), + [aux_sym_put_statement_token1] = ACTIONS(8776), + [aux_sym_unlock_statement_token1] = ACTIONS(8776), + [aux_sym_seek_statement_token1] = ACTIONS(8776), + [sym_reset_statement] = ACTIONS(8776), + [aux_sym_raise_event_statement_token1] = ACTIONS(8776), + [sym_stop_statement] = ACTIONS(8776), + [sym_beep_statement] = ACTIONS(8776), + [aux_sym_unload_statement_token1] = ACTIONS(8776), + [aux_sym_def_type_statement_token1] = ACTIONS(8776), + [aux_sym_def_type_statement_token2] = ACTIONS(8776), + [aux_sym_def_type_statement_token3] = ACTIONS(8776), + [aux_sym_def_type_statement_token4] = ACTIONS(8776), + [aux_sym_def_type_statement_token5] = ACTIONS(8776), + [aux_sym_def_type_statement_token6] = ACTIONS(8776), + [aux_sym_def_type_statement_token7] = ACTIONS(8776), + [aux_sym_def_type_statement_token8] = ACTIONS(8776), + [aux_sym_def_type_statement_token9] = ACTIONS(8776), + [aux_sym_def_type_statement_token10] = ACTIONS(8776), + [aux_sym_def_type_statement_token11] = ACTIONS(8776), + [aux_sym_def_type_statement_token12] = ACTIONS(8776), + [aux_sym_def_type_statement_token13] = ACTIONS(8776), + [aux_sym_def_type_statement_token14] = ACTIONS(8776), + [aux_sym_call_statement_token1] = ACTIONS(8776), + [sym__ambiguous_call_statement] = ACTIONS(8776), + [aux_sym_addressof_expression_token1] = ACTIONS(8776), + [aux_sym_type_of_expression_token1] = ACTIONS(8776), + [aux_sym_unary_expression_token1] = ACTIONS(8776), + [sym_string_literal] = ACTIONS(8778), + [sym_number_literal] = ACTIONS(8778), + [aux_sym_boolean_literal_token1] = ACTIONS(8776), + [aux_sym_boolean_literal_token2] = ACTIONS(8776), + [sym_nothing_literal] = ACTIONS(8776), + [sym_null_literal] = ACTIONS(8776), + [sym_empty_literal] = ACTIONS(8776), + [sym_date_literal] = ACTIONS(8778), + [anon_sym_POUND] = ACTIONS(8776), + }, + [STATE(6093)] = { + [sym_argument_list] = STATE(6457), + [sym_identifier] = ACTIONS(8899), + [sym_newline] = ACTIONS(8901), + [anon_sym_COLON] = ACTIONS(8901), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8899), + [aux_sym_frm_property_statement_token1] = ACTIONS(8899), + [anon_sym_DOT] = ACTIONS(10425), + [anon_sym_BANG] = ACTIONS(10427), + [aux_sym__attribute_identifier_token1] = ACTIONS(8899), + [aux_sym_option_statement_token3] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8899), + [aux_sym_preprocessor_const_token1] = ACTIONS(8899), + [sym_static_modifier] = ACTIONS(8899), + [sym__dim_keyword] = ACTIONS(8899), + [sym__redim_keyword] = ACTIONS(8899), + [aux_sym_get_accessor_token1] = ACTIONS(8899), + [aux_sym_set_accessor_token1] = ACTIONS(8899), + [aux_sym_const_declaration_token1] = ACTIONS(8899), + [anon_sym_LPAREN] = ACTIONS(10429), + [aux_sym_as_type_clause_token2] = ACTIONS(8899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8899), + [aux_sym_visibility_token1] = ACTIONS(8899), + [aux_sym_visibility_token2] = ACTIONS(8899), + [aux_sym_elseif_fragment_token1] = ACTIONS(8899), + [aux_sym_else_fragment_token1] = ACTIONS(8899), + [aux_sym_select_statement_token1] = ACTIONS(8899), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8899), + [aux_sym__for_header_token1] = ACTIONS(8899), + [aux_sym_do_statement_token1] = ACTIONS(8899), + [aux_sym_do_condition_token1] = ACTIONS(8899), + [aux_sym_with_statement_token1] = ACTIONS(8899), + [aux_sym_exit_statement_token1] = ACTIONS(8899), + [sym_end_statement] = ACTIONS(8901), + [aux_sym_on_goto_statement_token1] = ACTIONS(8899), + [aux_sym_on_goto_statement_token2] = ACTIONS(8899), + [aux_sym_on_error_statement_token2] = ACTIONS(8899), + [sym__ambiguous_redim_statement] = ACTIONS(8901), + [aux_sym_erase_statement_token1] = ACTIONS(8899), + [aux_sym_open_statement_token1] = ACTIONS(8899), + [aux_sym_file_mode_token2] = ACTIONS(8899), + [aux_sym_file_access_token2] = ACTIONS(8899), + [aux_sym_file_lock_token2] = ACTIONS(8899), + [aux_sym_print_statement_token1] = ACTIONS(8899), + [anon_sym_PLUS] = ACTIONS(8901), + [anon_sym_DASH] = ACTIONS(8899), + [anon_sym_QMARK] = ACTIONS(8901), + [aux_sym_close_statement_token1] = ACTIONS(8899), + [aux_sym_put_statement_token1] = ACTIONS(8899), + [aux_sym_unlock_statement_token1] = ACTIONS(8899), + [aux_sym_seek_statement_token1] = ACTIONS(8899), + [sym_reset_statement] = ACTIONS(8899), + [aux_sym_raise_event_statement_token1] = ACTIONS(8899), + [sym_stop_statement] = ACTIONS(8899), + [sym_beep_statement] = ACTIONS(8899), + [aux_sym_unload_statement_token1] = ACTIONS(8899), + [aux_sym_def_type_statement_token1] = ACTIONS(8899), + [aux_sym_def_type_statement_token2] = ACTIONS(8899), + [aux_sym_def_type_statement_token3] = ACTIONS(8899), + [aux_sym_def_type_statement_token4] = ACTIONS(8899), + [aux_sym_def_type_statement_token5] = ACTIONS(8899), + [aux_sym_def_type_statement_token6] = ACTIONS(8899), + [aux_sym_def_type_statement_token7] = ACTIONS(8899), + [aux_sym_def_type_statement_token8] = ACTIONS(8899), + [aux_sym_def_type_statement_token9] = ACTIONS(8899), + [aux_sym_def_type_statement_token10] = ACTIONS(8899), + [aux_sym_def_type_statement_token11] = ACTIONS(8899), + [aux_sym_def_type_statement_token12] = ACTIONS(8899), + [aux_sym_def_type_statement_token13] = ACTIONS(8899), + [aux_sym_def_type_statement_token14] = ACTIONS(8899), + [aux_sym_call_statement_token1] = ACTIONS(8899), + [sym__ambiguous_call_statement] = ACTIONS(8899), + [aux_sym_addressof_expression_token1] = ACTIONS(8899), + [aux_sym_type_of_expression_token1] = ACTIONS(8899), + [aux_sym_unary_expression_token1] = ACTIONS(8899), + [sym_string_literal] = ACTIONS(8901), + [sym_number_literal] = ACTIONS(8901), + [aux_sym_boolean_literal_token1] = ACTIONS(8899), + [aux_sym_boolean_literal_token2] = ACTIONS(8899), + [sym_nothing_literal] = ACTIONS(8899), + [sym_null_literal] = ACTIONS(8899), + [sym_empty_literal] = ACTIONS(8899), + [sym_date_literal] = ACTIONS(8901), + [anon_sym_POUND] = ACTIONS(8899), + }, + [STATE(6094)] = { + [sym_identifier] = ACTIONS(8958), + [sym_newline] = ACTIONS(8960), + [anon_sym_COLON] = ACTIONS(8960), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8958), + [aux_sym_frm_property_statement_token1] = ACTIONS(8958), + [anon_sym_DOT] = ACTIONS(8958), + [anon_sym_BANG] = ACTIONS(8960), + [aux_sym__attribute_identifier_token1] = ACTIONS(8958), + [aux_sym_option_statement_token3] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8958), + [aux_sym_preprocessor_const_token1] = ACTIONS(8958), + [sym_static_modifier] = ACTIONS(8958), + [sym__dim_keyword] = ACTIONS(8958), + [sym__redim_keyword] = ACTIONS(8958), + [aux_sym_get_accessor_token1] = ACTIONS(8958), + [aux_sym_set_accessor_token1] = ACTIONS(8958), + [anon_sym_COMMA] = ACTIONS(8960), + [aux_sym_const_declaration_token1] = ACTIONS(8958), + [anon_sym_LPAREN] = ACTIONS(8960), + [aux_sym_as_type_clause_token2] = ACTIONS(8958), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8958), + [aux_sym_visibility_token1] = ACTIONS(8958), + [aux_sym_visibility_token2] = ACTIONS(8958), + [aux_sym_elseif_fragment_token1] = ACTIONS(8958), + [aux_sym_else_fragment_token1] = ACTIONS(8958), + [aux_sym_select_statement_token1] = ACTIONS(8958), + [aux_sym_select_statement_token2] = ACTIONS(8958), + [aux_sym__for_header_token1] = ACTIONS(8958), + [aux_sym_do_statement_token1] = ACTIONS(8958), + [aux_sym_do_condition_token1] = ACTIONS(8958), + [aux_sym_with_statement_token1] = ACTIONS(8958), + [aux_sym_exit_statement_token1] = ACTIONS(8958), + [sym_end_statement] = ACTIONS(8960), + [aux_sym_on_goto_statement_token1] = ACTIONS(8958), + [aux_sym_on_goto_statement_token2] = ACTIONS(8958), + [aux_sym_on_error_statement_token2] = ACTIONS(8958), + [sym__ambiguous_redim_statement] = ACTIONS(8960), + [aux_sym_erase_statement_token1] = ACTIONS(8958), + [aux_sym_open_statement_token1] = ACTIONS(8958), + [aux_sym_file_mode_token2] = ACTIONS(8958), + [aux_sym_file_access_token2] = ACTIONS(8958), + [aux_sym_file_lock_token2] = ACTIONS(8958), + [aux_sym_print_statement_token1] = ACTIONS(8958), + [anon_sym_PLUS] = ACTIONS(8960), + [anon_sym_DASH] = ACTIONS(8958), + [anon_sym_QMARK] = ACTIONS(8960), + [aux_sym_close_statement_token1] = ACTIONS(8958), + [aux_sym_put_statement_token1] = ACTIONS(8958), + [aux_sym_unlock_statement_token1] = ACTIONS(8958), + [aux_sym_seek_statement_token1] = ACTIONS(8958), + [sym_reset_statement] = ACTIONS(8958), + [aux_sym_raise_event_statement_token1] = ACTIONS(8958), + [sym_stop_statement] = ACTIONS(8958), + [sym_beep_statement] = ACTIONS(8958), + [aux_sym_unload_statement_token1] = ACTIONS(8958), + [aux_sym_def_type_statement_token1] = ACTIONS(8958), + [aux_sym_def_type_statement_token2] = ACTIONS(8958), + [aux_sym_def_type_statement_token3] = ACTIONS(8958), + [aux_sym_def_type_statement_token4] = ACTIONS(8958), + [aux_sym_def_type_statement_token5] = ACTIONS(8958), + [aux_sym_def_type_statement_token6] = ACTIONS(8958), + [aux_sym_def_type_statement_token7] = ACTIONS(8958), + [aux_sym_def_type_statement_token8] = ACTIONS(8958), + [aux_sym_def_type_statement_token9] = ACTIONS(8958), + [aux_sym_def_type_statement_token10] = ACTIONS(8958), + [aux_sym_def_type_statement_token11] = ACTIONS(8958), + [aux_sym_def_type_statement_token12] = ACTIONS(8958), + [aux_sym_def_type_statement_token13] = ACTIONS(8958), + [aux_sym_def_type_statement_token14] = ACTIONS(8958), + [aux_sym_call_statement_token1] = ACTIONS(8958), + [sym__ambiguous_call_statement] = ACTIONS(8958), + [aux_sym_addressof_expression_token1] = ACTIONS(8958), + [aux_sym_type_of_expression_token1] = ACTIONS(8958), + [aux_sym_unary_expression_token1] = ACTIONS(8958), + [sym_string_literal] = ACTIONS(8960), + [sym_number_literal] = ACTIONS(8960), + [aux_sym_boolean_literal_token1] = ACTIONS(8958), + [aux_sym_boolean_literal_token2] = ACTIONS(8958), + [sym_nothing_literal] = ACTIONS(8958), + [sym_null_literal] = ACTIONS(8958), + [sym_empty_literal] = ACTIONS(8958), + [sym_date_literal] = ACTIONS(8960), + [anon_sym_POUND] = ACTIONS(8958), + }, + [STATE(6095)] = { + [sym_identifier] = ACTIONS(8970), + [sym_newline] = ACTIONS(8972), + [anon_sym_COLON] = ACTIONS(8972), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8970), + [aux_sym_frm_property_statement_token1] = ACTIONS(8970), + [anon_sym_DOT] = ACTIONS(8970), + [anon_sym_BANG] = ACTIONS(8972), + [aux_sym__attribute_identifier_token1] = ACTIONS(8970), + [aux_sym_option_statement_token3] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8970), + [aux_sym_preprocessor_const_token1] = ACTIONS(8970), + [sym_static_modifier] = ACTIONS(8970), + [sym__dim_keyword] = ACTIONS(8970), + [sym__redim_keyword] = ACTIONS(8970), + [aux_sym_get_accessor_token1] = ACTIONS(8970), + [aux_sym_set_accessor_token1] = ACTIONS(8970), + [anon_sym_COMMA] = ACTIONS(8972), + [aux_sym_const_declaration_token1] = ACTIONS(8970), + [anon_sym_LPAREN] = ACTIONS(8972), + [aux_sym_as_type_clause_token2] = ACTIONS(8970), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8970), + [aux_sym_visibility_token1] = ACTIONS(8970), + [aux_sym_visibility_token2] = ACTIONS(8970), + [aux_sym_elseif_fragment_token1] = ACTIONS(8970), + [aux_sym_else_fragment_token1] = ACTIONS(8970), + [aux_sym_select_statement_token1] = ACTIONS(8970), + [aux_sym_select_statement_token2] = ACTIONS(8970), + [aux_sym__for_header_token1] = ACTIONS(8970), + [aux_sym_do_statement_token1] = ACTIONS(8970), + [aux_sym_do_condition_token1] = ACTIONS(8970), + [aux_sym_with_statement_token1] = ACTIONS(8970), + [aux_sym_exit_statement_token1] = ACTIONS(8970), + [sym_end_statement] = ACTIONS(8972), + [aux_sym_on_goto_statement_token1] = ACTIONS(8970), + [aux_sym_on_goto_statement_token2] = ACTIONS(8970), + [aux_sym_on_error_statement_token2] = ACTIONS(8970), + [sym__ambiguous_redim_statement] = ACTIONS(8972), + [aux_sym_erase_statement_token1] = ACTIONS(8970), + [aux_sym_open_statement_token1] = ACTIONS(8970), + [aux_sym_file_mode_token2] = ACTIONS(8970), + [aux_sym_file_access_token2] = ACTIONS(8970), + [aux_sym_file_lock_token2] = ACTIONS(8970), + [aux_sym_print_statement_token1] = ACTIONS(8970), + [anon_sym_PLUS] = ACTIONS(8972), + [anon_sym_DASH] = ACTIONS(8970), + [anon_sym_QMARK] = ACTIONS(8972), + [aux_sym_close_statement_token1] = ACTIONS(8970), + [aux_sym_put_statement_token1] = ACTIONS(8970), + [aux_sym_unlock_statement_token1] = ACTIONS(8970), + [aux_sym_seek_statement_token1] = ACTIONS(8970), + [sym_reset_statement] = ACTIONS(8970), + [aux_sym_raise_event_statement_token1] = ACTIONS(8970), + [sym_stop_statement] = ACTIONS(8970), + [sym_beep_statement] = ACTIONS(8970), + [aux_sym_unload_statement_token1] = ACTIONS(8970), + [aux_sym_def_type_statement_token1] = ACTIONS(8970), + [aux_sym_def_type_statement_token2] = ACTIONS(8970), + [aux_sym_def_type_statement_token3] = ACTIONS(8970), + [aux_sym_def_type_statement_token4] = ACTIONS(8970), + [aux_sym_def_type_statement_token5] = ACTIONS(8970), + [aux_sym_def_type_statement_token6] = ACTIONS(8970), + [aux_sym_def_type_statement_token7] = ACTIONS(8970), + [aux_sym_def_type_statement_token8] = ACTIONS(8970), + [aux_sym_def_type_statement_token9] = ACTIONS(8970), + [aux_sym_def_type_statement_token10] = ACTIONS(8970), + [aux_sym_def_type_statement_token11] = ACTIONS(8970), + [aux_sym_def_type_statement_token12] = ACTIONS(8970), + [aux_sym_def_type_statement_token13] = ACTIONS(8970), + [aux_sym_def_type_statement_token14] = ACTIONS(8970), + [aux_sym_call_statement_token1] = ACTIONS(8970), + [sym__ambiguous_call_statement] = ACTIONS(8970), + [aux_sym_addressof_expression_token1] = ACTIONS(8970), + [aux_sym_type_of_expression_token1] = ACTIONS(8970), + [aux_sym_unary_expression_token1] = ACTIONS(8970), + [sym_string_literal] = ACTIONS(8972), + [sym_number_literal] = ACTIONS(8972), + [aux_sym_boolean_literal_token1] = ACTIONS(8970), + [aux_sym_boolean_literal_token2] = ACTIONS(8970), + [sym_nothing_literal] = ACTIONS(8970), + [sym_null_literal] = ACTIONS(8970), + [sym_empty_literal] = ACTIONS(8970), + [sym_date_literal] = ACTIONS(8972), + [anon_sym_POUND] = ACTIONS(8970), + }, + [STATE(6096)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(6097)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_while_statement_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(6098)] = { + [sym_identifier] = ACTIONS(8801), + [sym_newline] = ACTIONS(8803), + [anon_sym_COLON] = ACTIONS(8803), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8801), + [aux_sym_frm_property_statement_token1] = ACTIONS(8801), + [anon_sym_DOT] = ACTIONS(8801), + [anon_sym_BANG] = ACTIONS(8803), + [aux_sym__attribute_identifier_token1] = ACTIONS(8801), + [aux_sym_option_statement_token3] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8801), + [aux_sym_preprocessor_const_token1] = ACTIONS(8801), + [sym_static_modifier] = ACTIONS(8801), + [sym__dim_keyword] = ACTIONS(8801), + [sym__redim_keyword] = ACTIONS(8801), + [aux_sym_get_accessor_token1] = ACTIONS(8801), + [aux_sym_set_accessor_token1] = ACTIONS(8801), + [anon_sym_COMMA] = ACTIONS(8803), + [aux_sym_const_declaration_token1] = ACTIONS(8801), + [anon_sym_LPAREN] = ACTIONS(8803), + [aux_sym_as_type_clause_token2] = ACTIONS(8801), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8801), + [aux_sym_visibility_token1] = ACTIONS(8801), + [aux_sym_visibility_token2] = ACTIONS(8801), + [aux_sym_elseif_fragment_token1] = ACTIONS(8801), + [aux_sym_else_fragment_token1] = ACTIONS(8801), + [aux_sym_select_statement_token1] = ACTIONS(8801), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8801), + [aux_sym__for_header_token1] = ACTIONS(8801), + [aux_sym_do_statement_token1] = ACTIONS(8801), + [aux_sym_do_condition_token1] = ACTIONS(8801), + [aux_sym_with_statement_token1] = ACTIONS(8801), + [aux_sym_exit_statement_token1] = ACTIONS(8801), + [sym_end_statement] = ACTIONS(8803), + [aux_sym_on_goto_statement_token1] = ACTIONS(8801), + [aux_sym_on_goto_statement_token2] = ACTIONS(8801), + [aux_sym_on_error_statement_token2] = ACTIONS(8801), + [sym__ambiguous_redim_statement] = ACTIONS(8803), + [aux_sym_erase_statement_token1] = ACTIONS(8801), + [aux_sym_open_statement_token1] = ACTIONS(8801), + [aux_sym_file_mode_token2] = ACTIONS(8801), + [aux_sym_file_access_token2] = ACTIONS(8801), + [aux_sym_file_lock_token2] = ACTIONS(8801), + [aux_sym_print_statement_token1] = ACTIONS(8801), + [anon_sym_PLUS] = ACTIONS(8803), + [anon_sym_DASH] = ACTIONS(8801), + [anon_sym_QMARK] = ACTIONS(8803), + [aux_sym_close_statement_token1] = ACTIONS(8801), + [aux_sym_put_statement_token1] = ACTIONS(8801), + [aux_sym_unlock_statement_token1] = ACTIONS(8801), + [aux_sym_seek_statement_token1] = ACTIONS(8801), + [sym_reset_statement] = ACTIONS(8801), + [aux_sym_raise_event_statement_token1] = ACTIONS(8801), + [sym_stop_statement] = ACTIONS(8801), + [sym_beep_statement] = ACTIONS(8801), + [aux_sym_unload_statement_token1] = ACTIONS(8801), + [aux_sym_def_type_statement_token1] = ACTIONS(8801), + [aux_sym_def_type_statement_token2] = ACTIONS(8801), + [aux_sym_def_type_statement_token3] = ACTIONS(8801), + [aux_sym_def_type_statement_token4] = ACTIONS(8801), + [aux_sym_def_type_statement_token5] = ACTIONS(8801), + [aux_sym_def_type_statement_token6] = ACTIONS(8801), + [aux_sym_def_type_statement_token7] = ACTIONS(8801), + [aux_sym_def_type_statement_token8] = ACTIONS(8801), + [aux_sym_def_type_statement_token9] = ACTIONS(8801), + [aux_sym_def_type_statement_token10] = ACTIONS(8801), + [aux_sym_def_type_statement_token11] = ACTIONS(8801), + [aux_sym_def_type_statement_token12] = ACTIONS(8801), + [aux_sym_def_type_statement_token13] = ACTIONS(8801), + [aux_sym_def_type_statement_token14] = ACTIONS(8801), + [aux_sym_call_statement_token1] = ACTIONS(8801), + [sym__ambiguous_call_statement] = ACTIONS(8801), + [aux_sym_addressof_expression_token1] = ACTIONS(8801), + [aux_sym_type_of_expression_token1] = ACTIONS(8801), + [aux_sym_unary_expression_token1] = ACTIONS(8801), + [sym_string_literal] = ACTIONS(8803), + [sym_number_literal] = ACTIONS(8803), + [aux_sym_boolean_literal_token1] = ACTIONS(8801), + [aux_sym_boolean_literal_token2] = ACTIONS(8801), + [sym_nothing_literal] = ACTIONS(8801), + [sym_null_literal] = ACTIONS(8801), + [sym_empty_literal] = ACTIONS(8801), + [sym_date_literal] = ACTIONS(8803), + [anon_sym_POUND] = ACTIONS(8801), + }, + [STATE(6099)] = { + [sym_identifier] = ACTIONS(8980), + [sym_newline] = ACTIONS(8982), + [anon_sym_COLON] = ACTIONS(8982), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8980), + [aux_sym_frm_property_statement_token1] = ACTIONS(8980), + [anon_sym_DOT] = ACTIONS(8980), + [anon_sym_BANG] = ACTIONS(8982), + [aux_sym__attribute_identifier_token1] = ACTIONS(8980), + [aux_sym_option_statement_token3] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8980), + [aux_sym_preprocessor_const_token1] = ACTIONS(8980), + [sym_static_modifier] = ACTIONS(8980), + [sym__dim_keyword] = ACTIONS(8980), + [sym__redim_keyword] = ACTIONS(8980), + [aux_sym_get_accessor_token1] = ACTIONS(8980), + [aux_sym_set_accessor_token1] = ACTIONS(8980), + [aux_sym_const_declaration_token1] = ACTIONS(8980), + [anon_sym_LPAREN] = ACTIONS(8982), + [aux_sym_as_type_clause_token2] = ACTIONS(8980), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8980), + [aux_sym_visibility_token1] = ACTIONS(8980), + [aux_sym_visibility_token2] = ACTIONS(8980), + [aux_sym_elseif_fragment_token1] = ACTIONS(8980), + [aux_sym_else_fragment_token1] = ACTIONS(8980), + [aux_sym_select_statement_token1] = ACTIONS(8980), + [aux_sym_select_statement_token2] = ACTIONS(8980), + [aux_sym__for_header_token1] = ACTIONS(8980), + [aux_sym_do_statement_token1] = ACTIONS(8980), + [aux_sym_do_condition_token1] = ACTIONS(8980), + [aux_sym_with_statement_token1] = ACTIONS(8980), + [aux_sym_exit_statement_token1] = ACTIONS(8980), + [sym_end_statement] = ACTIONS(8982), + [aux_sym_on_goto_statement_token1] = ACTIONS(8980), + [aux_sym_on_goto_statement_token2] = ACTIONS(8980), + [aux_sym_on_error_statement_token2] = ACTIONS(8980), + [sym__ambiguous_redim_statement] = ACTIONS(8982), + [aux_sym_erase_statement_token1] = ACTIONS(8980), + [aux_sym_open_statement_token1] = ACTIONS(8980), + [aux_sym_open_statement_token3] = ACTIONS(10972), + [aux_sym_file_mode_token2] = ACTIONS(8980), + [aux_sym_file_access_token2] = ACTIONS(8980), + [aux_sym_file_lock_token2] = ACTIONS(8980), + [aux_sym_print_statement_token1] = ACTIONS(8980), + [anon_sym_PLUS] = ACTIONS(8982), + [anon_sym_DASH] = ACTIONS(8980), + [anon_sym_QMARK] = ACTIONS(8982), + [aux_sym_close_statement_token1] = ACTIONS(8980), + [aux_sym_put_statement_token1] = ACTIONS(8980), + [aux_sym_unlock_statement_token1] = ACTIONS(8980), + [aux_sym_seek_statement_token1] = ACTIONS(8980), + [sym_reset_statement] = ACTIONS(8980), + [aux_sym_raise_event_statement_token1] = ACTIONS(8980), + [sym_stop_statement] = ACTIONS(8980), + [sym_beep_statement] = ACTIONS(8980), + [aux_sym_unload_statement_token1] = ACTIONS(8980), + [aux_sym_def_type_statement_token1] = ACTIONS(8980), + [aux_sym_def_type_statement_token2] = ACTIONS(8980), + [aux_sym_def_type_statement_token3] = ACTIONS(8980), + [aux_sym_def_type_statement_token4] = ACTIONS(8980), + [aux_sym_def_type_statement_token5] = ACTIONS(8980), + [aux_sym_def_type_statement_token6] = ACTIONS(8980), + [aux_sym_def_type_statement_token7] = ACTIONS(8980), + [aux_sym_def_type_statement_token8] = ACTIONS(8980), + [aux_sym_def_type_statement_token9] = ACTIONS(8980), + [aux_sym_def_type_statement_token10] = ACTIONS(8980), + [aux_sym_def_type_statement_token11] = ACTIONS(8980), + [aux_sym_def_type_statement_token12] = ACTIONS(8980), + [aux_sym_def_type_statement_token13] = ACTIONS(8980), + [aux_sym_def_type_statement_token14] = ACTIONS(8980), + [aux_sym_call_statement_token1] = ACTIONS(8980), + [sym__ambiguous_call_statement] = ACTIONS(8980), + [aux_sym_addressof_expression_token1] = ACTIONS(8980), + [aux_sym_type_of_expression_token1] = ACTIONS(8980), + [aux_sym_unary_expression_token1] = ACTIONS(8980), + [sym_string_literal] = ACTIONS(8982), + [sym_number_literal] = ACTIONS(8982), + [aux_sym_boolean_literal_token1] = ACTIONS(8980), + [aux_sym_boolean_literal_token2] = ACTIONS(8980), + [sym_nothing_literal] = ACTIONS(8980), + [sym_null_literal] = ACTIONS(8980), + [sym_empty_literal] = ACTIONS(8980), + [sym_date_literal] = ACTIONS(8982), + [anon_sym_POUND] = ACTIONS(8980), + }, + [STATE(6100)] = { + [sym_identifier] = ACTIONS(8624), + [sym_newline] = ACTIONS(8626), + [anon_sym_COLON] = ACTIONS(8626), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8624), + [aux_sym_frm_property_statement_token1] = ACTIONS(8624), + [anon_sym_DOT] = ACTIONS(8624), + [anon_sym_BANG] = ACTIONS(8626), + [aux_sym__attribute_identifier_token1] = ACTIONS(8624), + [aux_sym_option_statement_token3] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8624), + [aux_sym_preprocessor_const_token1] = ACTIONS(8624), + [sym_static_modifier] = ACTIONS(8624), + [sym__dim_keyword] = ACTIONS(8624), + [sym__redim_keyword] = ACTIONS(8624), + [aux_sym_get_accessor_token1] = ACTIONS(8624), + [aux_sym_set_accessor_token1] = ACTIONS(8624), + [aux_sym_const_declaration_token1] = ACTIONS(8624), + [anon_sym_LPAREN] = ACTIONS(8626), + [aux_sym_as_type_clause_token2] = ACTIONS(8624), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8624), + [aux_sym_visibility_token1] = ACTIONS(8624), + [aux_sym_visibility_token2] = ACTIONS(8624), + [aux_sym_elseif_fragment_token1] = ACTIONS(8624), + [aux_sym_else_fragment_token1] = ACTIONS(8624), + [aux_sym_select_statement_token1] = ACTIONS(8624), + [aux_sym__for_header_token1] = ACTIONS(8624), + [aux_sym_do_statement_token1] = ACTIONS(8624), + [aux_sym_do_statement_token2] = ACTIONS(8624), + [aux_sym_do_condition_token1] = ACTIONS(8624), + [aux_sym_with_statement_token1] = ACTIONS(8624), + [aux_sym_exit_statement_token1] = ACTIONS(8624), + [sym_end_statement] = ACTIONS(8626), + [aux_sym_on_goto_statement_token1] = ACTIONS(8624), + [aux_sym_on_goto_statement_token2] = ACTIONS(8624), + [aux_sym_on_error_statement_token2] = ACTIONS(8624), + [sym__ambiguous_redim_statement] = ACTIONS(8626), + [aux_sym_erase_statement_token1] = ACTIONS(8624), + [aux_sym_open_statement_token1] = ACTIONS(8624), + [aux_sym_open_statement_token3] = ACTIONS(10974), + [aux_sym_file_mode_token2] = ACTIONS(8624), + [aux_sym_file_access_token2] = ACTIONS(8624), + [aux_sym_file_lock_token2] = ACTIONS(8624), + [aux_sym_print_statement_token1] = ACTIONS(8624), + [anon_sym_PLUS] = ACTIONS(8626), + [anon_sym_DASH] = ACTIONS(8624), + [anon_sym_QMARK] = ACTIONS(8626), + [aux_sym_close_statement_token1] = ACTIONS(8624), + [aux_sym_put_statement_token1] = ACTIONS(8624), + [aux_sym_unlock_statement_token1] = ACTIONS(8624), + [aux_sym_seek_statement_token1] = ACTIONS(8624), + [sym_reset_statement] = ACTIONS(8624), + [aux_sym_raise_event_statement_token1] = ACTIONS(8624), + [sym_stop_statement] = ACTIONS(8624), + [sym_beep_statement] = ACTIONS(8624), + [aux_sym_unload_statement_token1] = ACTIONS(8624), + [aux_sym_def_type_statement_token1] = ACTIONS(8624), + [aux_sym_def_type_statement_token2] = ACTIONS(8624), + [aux_sym_def_type_statement_token3] = ACTIONS(8624), + [aux_sym_def_type_statement_token4] = ACTIONS(8624), + [aux_sym_def_type_statement_token5] = ACTIONS(8624), + [aux_sym_def_type_statement_token6] = ACTIONS(8624), + [aux_sym_def_type_statement_token7] = ACTIONS(8624), + [aux_sym_def_type_statement_token8] = ACTIONS(8624), + [aux_sym_def_type_statement_token9] = ACTIONS(8624), + [aux_sym_def_type_statement_token10] = ACTIONS(8624), + [aux_sym_def_type_statement_token11] = ACTIONS(8624), + [aux_sym_def_type_statement_token12] = ACTIONS(8624), + [aux_sym_def_type_statement_token13] = ACTIONS(8624), + [aux_sym_def_type_statement_token14] = ACTIONS(8624), + [aux_sym_call_statement_token1] = ACTIONS(8624), + [sym__ambiguous_call_statement] = ACTIONS(8624), + [aux_sym_addressof_expression_token1] = ACTIONS(8624), + [aux_sym_type_of_expression_token1] = ACTIONS(8624), + [aux_sym_unary_expression_token1] = ACTIONS(8624), + [sym_string_literal] = ACTIONS(8626), + [sym_number_literal] = ACTIONS(8626), + [aux_sym_boolean_literal_token1] = ACTIONS(8624), + [aux_sym_boolean_literal_token2] = ACTIONS(8624), + [sym_nothing_literal] = ACTIONS(8624), + [sym_null_literal] = ACTIONS(8624), + [sym_empty_literal] = ACTIONS(8624), + [sym_date_literal] = ACTIONS(8626), + [anon_sym_POUND] = ACTIONS(8624), + }, + [STATE(6101)] = { + [sym_identifier] = ACTIONS(8766), + [sym_newline] = ACTIONS(8768), + [anon_sym_COLON] = ACTIONS(8768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8766), + [aux_sym_frm_property_statement_token1] = ACTIONS(8766), + [anon_sym_DOT] = ACTIONS(8766), + [anon_sym_BANG] = ACTIONS(8768), + [aux_sym__attribute_identifier_token1] = ACTIONS(8766), + [aux_sym_option_statement_token3] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8766), + [aux_sym_preprocessor_const_token1] = ACTIONS(8766), + [sym_static_modifier] = ACTIONS(8766), + [sym__dim_keyword] = ACTIONS(8766), + [sym__redim_keyword] = ACTIONS(8766), + [aux_sym_get_accessor_token1] = ACTIONS(8766), + [aux_sym_set_accessor_token1] = ACTIONS(8766), + [anon_sym_COMMA] = ACTIONS(10976), + [aux_sym_const_declaration_token1] = ACTIONS(8766), + [anon_sym_LPAREN] = ACTIONS(8768), + [aux_sym_as_type_clause_token2] = ACTIONS(8766), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8766), + [aux_sym_visibility_token1] = ACTIONS(8766), + [aux_sym_visibility_token2] = ACTIONS(8766), + [aux_sym_elseif_fragment_token1] = ACTIONS(8766), + [aux_sym_else_fragment_token1] = ACTIONS(8766), + [aux_sym_select_statement_token1] = ACTIONS(8766), + [aux_sym__for_header_token1] = ACTIONS(8766), + [aux_sym_do_statement_token1] = ACTIONS(8766), + [aux_sym_do_condition_token1] = ACTIONS(8766), + [aux_sym_with_statement_token1] = ACTIONS(8766), + [aux_sym_exit_statement_token1] = ACTIONS(8766), + [sym_end_statement] = ACTIONS(8768), + [aux_sym_on_goto_statement_token1] = ACTIONS(8766), + [aux_sym_on_goto_statement_token2] = ACTIONS(8766), + [aux_sym_on_error_statement_token2] = ACTIONS(8766), + [sym__ambiguous_redim_statement] = ACTIONS(8768), + [aux_sym_erase_statement_token1] = ACTIONS(8766), + [aux_sym_open_statement_token1] = ACTIONS(8766), + [aux_sym_file_mode_token2] = ACTIONS(8766), + [aux_sym_file_access_token2] = ACTIONS(8766), + [aux_sym_file_lock_token2] = ACTIONS(8766), + [aux_sym_print_statement_token1] = ACTIONS(8766), + [anon_sym_PLUS] = ACTIONS(8768), + [anon_sym_DASH] = ACTIONS(8766), + [anon_sym_QMARK] = ACTIONS(8768), + [aux_sym_close_statement_token1] = ACTIONS(8766), + [aux_sym_put_statement_token1] = ACTIONS(8766), + [aux_sym_unlock_statement_token1] = ACTIONS(8766), + [aux_sym_seek_statement_token1] = ACTIONS(8766), + [sym_reset_statement] = ACTIONS(8766), + [aux_sym_raise_event_statement_token1] = ACTIONS(8766), + [sym_stop_statement] = ACTIONS(8766), + [sym_beep_statement] = ACTIONS(8766), + [aux_sym_unload_statement_token1] = ACTIONS(8766), + [aux_sym_def_type_statement_token1] = ACTIONS(8766), + [aux_sym_def_type_statement_token2] = ACTIONS(8766), + [aux_sym_def_type_statement_token3] = ACTIONS(8766), + [aux_sym_def_type_statement_token4] = ACTIONS(8766), + [aux_sym_def_type_statement_token5] = ACTIONS(8766), + [aux_sym_def_type_statement_token6] = ACTIONS(8766), + [aux_sym_def_type_statement_token7] = ACTIONS(8766), + [aux_sym_def_type_statement_token8] = ACTIONS(8766), + [aux_sym_def_type_statement_token9] = ACTIONS(8766), + [aux_sym_def_type_statement_token10] = ACTIONS(8766), + [aux_sym_def_type_statement_token11] = ACTIONS(8766), + [aux_sym_def_type_statement_token12] = ACTIONS(8766), + [aux_sym_def_type_statement_token13] = ACTIONS(8766), + [aux_sym_def_type_statement_token14] = ACTIONS(8766), + [aux_sym_call_statement_token1] = ACTIONS(8766), + [sym__ambiguous_call_statement] = ACTIONS(8766), + [aux_sym_addressof_expression_token1] = ACTIONS(8766), + [aux_sym_type_of_expression_token1] = ACTIONS(8766), + [aux_sym_unary_expression_token1] = ACTIONS(8766), + [sym_string_literal] = ACTIONS(8768), + [sym_number_literal] = ACTIONS(8768), + [aux_sym_boolean_literal_token1] = ACTIONS(8766), + [aux_sym_boolean_literal_token2] = ACTIONS(8766), + [sym_nothing_literal] = ACTIONS(8766), + [sym_null_literal] = ACTIONS(8766), + [sym_empty_literal] = ACTIONS(8766), + [sym_date_literal] = ACTIONS(8768), + [anon_sym_POUND] = ACTIONS(8766), + }, + [STATE(6102)] = { + [aux_sym__argument_sequence_repeat1] = STATE(6222), + [sym_identifier] = ACTIONS(8549), + [sym_newline] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8549), + [aux_sym_frm_property_statement_token1] = ACTIONS(8549), + [anon_sym_DOT] = ACTIONS(8549), + [anon_sym_BANG] = ACTIONS(8551), + [aux_sym__attribute_identifier_token1] = ACTIONS(8549), + [aux_sym_option_statement_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8549), + [aux_sym_preprocessor_const_token1] = ACTIONS(8549), + [sym_static_modifier] = ACTIONS(8549), + [sym__dim_keyword] = ACTIONS(8549), + [sym__redim_keyword] = ACTIONS(8549), + [aux_sym_get_accessor_token1] = ACTIONS(8549), + [aux_sym_set_accessor_token1] = ACTIONS(8549), + [anon_sym_COMMA] = ACTIONS(10978), + [aux_sym_const_declaration_token1] = ACTIONS(8549), + [anon_sym_LPAREN] = ACTIONS(8551), + [aux_sym_as_type_clause_token2] = ACTIONS(8549), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8549), + [aux_sym_visibility_token1] = ACTIONS(8549), + [aux_sym_visibility_token2] = ACTIONS(8549), + [aux_sym_elseif_fragment_token1] = ACTIONS(8549), + [aux_sym_else_fragment_token1] = ACTIONS(8549), + [aux_sym_select_statement_token1] = ACTIONS(8549), + [aux_sym__for_header_token1] = ACTIONS(8549), + [aux_sym_do_statement_token1] = ACTIONS(8549), + [aux_sym_do_condition_token1] = ACTIONS(8549), + [aux_sym_with_statement_token1] = ACTIONS(8549), + [aux_sym_exit_statement_token1] = ACTIONS(8549), + [sym_end_statement] = ACTIONS(8551), + [aux_sym_on_goto_statement_token1] = ACTIONS(8549), + [aux_sym_on_goto_statement_token2] = ACTIONS(8549), + [aux_sym_on_error_statement_token2] = ACTIONS(8549), + [sym__ambiguous_redim_statement] = ACTIONS(8551), + [aux_sym_erase_statement_token1] = ACTIONS(8549), + [aux_sym_open_statement_token1] = ACTIONS(8549), + [aux_sym_file_mode_token2] = ACTIONS(8549), + [aux_sym_file_access_token2] = ACTIONS(8549), + [aux_sym_file_lock_token2] = ACTIONS(8549), + [aux_sym_print_statement_token1] = ACTIONS(8549), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_DASH] = ACTIONS(8549), + [anon_sym_QMARK] = ACTIONS(8551), + [aux_sym_close_statement_token1] = ACTIONS(8549), + [aux_sym_put_statement_token1] = ACTIONS(8549), + [aux_sym_unlock_statement_token1] = ACTIONS(8549), + [aux_sym_seek_statement_token1] = ACTIONS(8549), + [sym_reset_statement] = ACTIONS(8549), + [aux_sym_raise_event_statement_token1] = ACTIONS(8549), + [sym_stop_statement] = ACTIONS(8549), + [sym_beep_statement] = ACTIONS(8549), + [aux_sym_unload_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token2] = ACTIONS(8549), + [aux_sym_def_type_statement_token3] = ACTIONS(8549), + [aux_sym_def_type_statement_token4] = ACTIONS(8549), + [aux_sym_def_type_statement_token5] = ACTIONS(8549), + [aux_sym_def_type_statement_token6] = ACTIONS(8549), + [aux_sym_def_type_statement_token7] = ACTIONS(8549), + [aux_sym_def_type_statement_token8] = ACTIONS(8549), + [aux_sym_def_type_statement_token9] = ACTIONS(8549), + [aux_sym_def_type_statement_token10] = ACTIONS(8549), + [aux_sym_def_type_statement_token11] = ACTIONS(8549), + [aux_sym_def_type_statement_token12] = ACTIONS(8549), + [aux_sym_def_type_statement_token13] = ACTIONS(8549), + [aux_sym_def_type_statement_token14] = ACTIONS(8549), + [aux_sym_call_statement_token1] = ACTIONS(8549), + [sym__ambiguous_call_statement] = ACTIONS(8549), + [aux_sym_addressof_expression_token1] = ACTIONS(8549), + [aux_sym_type_of_expression_token1] = ACTIONS(8549), + [aux_sym_unary_expression_token1] = ACTIONS(8549), + [sym_string_literal] = ACTIONS(8551), + [sym_number_literal] = ACTIONS(8551), + [aux_sym_boolean_literal_token1] = ACTIONS(8549), + [aux_sym_boolean_literal_token2] = ACTIONS(8549), + [sym_nothing_literal] = ACTIONS(8549), + [sym_null_literal] = ACTIONS(8549), + [sym_empty_literal] = ACTIONS(8549), + [sym_date_literal] = ACTIONS(8551), + [anon_sym_POUND] = ACTIONS(8549), + }, + [STATE(6103)] = { + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(7951), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym_select_statement_token2] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(6104)] = { + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(6170), + [sym_identifier] = ACTIONS(8549), + [sym_newline] = ACTIONS(8551), + [anon_sym_COLON] = ACTIONS(8551), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8549), + [aux_sym_frm_property_statement_token1] = ACTIONS(8549), + [anon_sym_DOT] = ACTIONS(8549), + [anon_sym_BANG] = ACTIONS(8551), + [aux_sym__attribute_identifier_token1] = ACTIONS(8549), + [aux_sym_option_statement_token3] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8549), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8549), + [aux_sym_preprocessor_const_token1] = ACTIONS(8549), + [sym_static_modifier] = ACTIONS(8549), + [sym__dim_keyword] = ACTIONS(8549), + [sym__redim_keyword] = ACTIONS(8549), + [aux_sym_get_accessor_token1] = ACTIONS(8549), + [aux_sym_set_accessor_token1] = ACTIONS(8549), + [aux_sym_const_declaration_token1] = ACTIONS(8549), + [anon_sym_LPAREN] = ACTIONS(8551), + [aux_sym_as_type_clause_token2] = ACTIONS(8549), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8549), + [aux_sym_visibility_token1] = ACTIONS(8549), + [aux_sym_visibility_token2] = ACTIONS(8549), + [aux_sym_elseif_fragment_token1] = ACTIONS(8549), + [aux_sym_else_fragment_token1] = ACTIONS(8549), + [aux_sym_select_statement_token1] = ACTIONS(8549), + [aux_sym__for_header_token1] = ACTIONS(8549), + [aux_sym_do_statement_token1] = ACTIONS(8549), + [aux_sym_do_condition_token1] = ACTIONS(8549), + [aux_sym_with_statement_token1] = ACTIONS(8549), + [aux_sym_exit_statement_token1] = ACTIONS(8549), + [sym_end_statement] = ACTIONS(8551), + [aux_sym_on_goto_statement_token1] = ACTIONS(8549), + [aux_sym_on_goto_statement_token2] = ACTIONS(8549), + [aux_sym_on_error_statement_token2] = ACTIONS(8549), + [sym__ambiguous_redim_statement] = ACTIONS(8551), + [aux_sym_erase_statement_token1] = ACTIONS(8549), + [aux_sym_open_statement_token1] = ACTIONS(8549), + [aux_sym_file_mode_token2] = ACTIONS(8549), + [aux_sym_file_access_token2] = ACTIONS(8549), + [aux_sym_file_lock_token2] = ACTIONS(8549), + [aux_sym_print_statement_token1] = ACTIONS(8549), + [anon_sym_PLUS] = ACTIONS(8551), + [anon_sym_DASH] = ACTIONS(8549), + [anon_sym_SEMI] = ACTIONS(10369), + [anon_sym_QMARK] = ACTIONS(8551), + [aux_sym_close_statement_token1] = ACTIONS(8549), + [aux_sym_put_statement_token1] = ACTIONS(8549), + [aux_sym_unlock_statement_token1] = ACTIONS(8549), + [aux_sym_seek_statement_token1] = ACTIONS(8549), + [sym_reset_statement] = ACTIONS(8549), + [aux_sym_raise_event_statement_token1] = ACTIONS(8549), + [sym_stop_statement] = ACTIONS(8549), + [sym_beep_statement] = ACTIONS(8549), + [aux_sym_unload_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token1] = ACTIONS(8549), + [aux_sym_def_type_statement_token2] = ACTIONS(8549), + [aux_sym_def_type_statement_token3] = ACTIONS(8549), + [aux_sym_def_type_statement_token4] = ACTIONS(8549), + [aux_sym_def_type_statement_token5] = ACTIONS(8549), + [aux_sym_def_type_statement_token6] = ACTIONS(8549), + [aux_sym_def_type_statement_token7] = ACTIONS(8549), + [aux_sym_def_type_statement_token8] = ACTIONS(8549), + [aux_sym_def_type_statement_token9] = ACTIONS(8549), + [aux_sym_def_type_statement_token10] = ACTIONS(8549), + [aux_sym_def_type_statement_token11] = ACTIONS(8549), + [aux_sym_def_type_statement_token12] = ACTIONS(8549), + [aux_sym_def_type_statement_token13] = ACTIONS(8549), + [aux_sym_def_type_statement_token14] = ACTIONS(8549), + [aux_sym_call_statement_token1] = ACTIONS(8549), + [sym__ambiguous_call_statement] = ACTIONS(8549), + [aux_sym_addressof_expression_token1] = ACTIONS(8549), + [aux_sym_type_of_expression_token1] = ACTIONS(8549), + [aux_sym_unary_expression_token1] = ACTIONS(8549), + [sym_string_literal] = ACTIONS(8551), + [sym_number_literal] = ACTIONS(8551), + [aux_sym_boolean_literal_token1] = ACTIONS(8549), + [aux_sym_boolean_literal_token2] = ACTIONS(8549), + [sym_nothing_literal] = ACTIONS(8549), + [sym_null_literal] = ACTIONS(8549), + [sym_empty_literal] = ACTIONS(8549), + [sym_date_literal] = ACTIONS(8551), + [anon_sym_POUND] = ACTIONS(8549), + }, + [STATE(6105)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_while_statement_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(6106)] = { + [sym_identifier] = ACTIONS(8831), + [sym_newline] = ACTIONS(8833), + [anon_sym_COLON] = ACTIONS(8833), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8831), + [aux_sym_frm_property_statement_token1] = ACTIONS(8831), + [anon_sym_DOT] = ACTIONS(8831), + [anon_sym_BANG] = ACTIONS(8833), + [aux_sym__attribute_identifier_token1] = ACTIONS(8831), + [aux_sym_option_statement_token3] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8831), + [aux_sym_preprocessor_const_token1] = ACTIONS(8831), + [sym_static_modifier] = ACTIONS(8831), + [sym__dim_keyword] = ACTIONS(8831), + [sym__redim_keyword] = ACTIONS(8831), + [aux_sym_get_accessor_token1] = ACTIONS(8831), + [aux_sym_set_accessor_token1] = ACTIONS(8831), + [anon_sym_COMMA] = ACTIONS(8833), + [aux_sym_const_declaration_token1] = ACTIONS(8831), + [anon_sym_LPAREN] = ACTIONS(8833), + [aux_sym_as_type_clause_token2] = ACTIONS(8831), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8831), + [aux_sym_visibility_token1] = ACTIONS(8831), + [aux_sym_visibility_token2] = ACTIONS(8831), + [aux_sym_elseif_fragment_token1] = ACTIONS(8831), + [aux_sym_else_fragment_token1] = ACTIONS(8831), + [aux_sym_select_statement_token1] = ACTIONS(8831), + [aux_sym__for_header_token1] = ACTIONS(8831), + [aux_sym_do_statement_token1] = ACTIONS(8831), + [aux_sym_do_condition_token1] = ACTIONS(8831), + [aux_sym_with_statement_token1] = ACTIONS(8831), + [aux_sym_exit_statement_token1] = ACTIONS(8831), + [sym_end_statement] = ACTIONS(8833), + [aux_sym_on_goto_statement_token1] = ACTIONS(8831), + [aux_sym_on_goto_statement_token2] = ACTIONS(8831), + [aux_sym_on_error_statement_token2] = ACTIONS(8831), + [sym__ambiguous_redim_statement] = ACTIONS(8833), + [aux_sym_erase_statement_token1] = ACTIONS(8831), + [aux_sym_open_statement_token1] = ACTIONS(8831), + [aux_sym_file_mode_token2] = ACTIONS(8831), + [aux_sym_file_access_token2] = ACTIONS(8831), + [aux_sym_file_lock_token2] = ACTIONS(8831), + [aux_sym_print_statement_token1] = ACTIONS(8831), + [anon_sym_PLUS] = ACTIONS(8833), + [anon_sym_DASH] = ACTIONS(8831), + [anon_sym_QMARK] = ACTIONS(8833), + [aux_sym_close_statement_token1] = ACTIONS(8831), + [aux_sym_put_statement_token1] = ACTIONS(8831), + [aux_sym_unlock_statement_token1] = ACTIONS(8831), + [aux_sym_seek_statement_token1] = ACTIONS(8831), + [sym_reset_statement] = ACTIONS(8831), + [aux_sym_raise_event_statement_token1] = ACTIONS(8831), + [sym_stop_statement] = ACTIONS(8831), + [sym_beep_statement] = ACTIONS(8831), + [aux_sym_unload_statement_token1] = ACTIONS(8831), + [aux_sym_def_type_statement_token1] = ACTIONS(8831), + [aux_sym_def_type_statement_token2] = ACTIONS(8831), + [aux_sym_def_type_statement_token3] = ACTIONS(8831), + [aux_sym_def_type_statement_token4] = ACTIONS(8831), + [aux_sym_def_type_statement_token5] = ACTIONS(8831), + [aux_sym_def_type_statement_token6] = ACTIONS(8831), + [aux_sym_def_type_statement_token7] = ACTIONS(8831), + [aux_sym_def_type_statement_token8] = ACTIONS(8831), + [aux_sym_def_type_statement_token9] = ACTIONS(8831), + [aux_sym_def_type_statement_token10] = ACTIONS(8831), + [aux_sym_def_type_statement_token11] = ACTIONS(8831), + [aux_sym_def_type_statement_token12] = ACTIONS(8831), + [aux_sym_def_type_statement_token13] = ACTIONS(8831), + [aux_sym_def_type_statement_token14] = ACTIONS(8831), + [aux_sym_call_statement_token1] = ACTIONS(8831), + [sym__ambiguous_call_statement] = ACTIONS(8831), + [aux_sym_addressof_expression_token1] = ACTIONS(8831), + [aux_sym_type_of_expression_token1] = ACTIONS(8831), + [aux_sym_unary_expression_token1] = ACTIONS(8831), + [sym_string_literal] = ACTIONS(8833), + [sym_number_literal] = ACTIONS(8833), + [aux_sym_boolean_literal_token1] = ACTIONS(8831), + [aux_sym_boolean_literal_token2] = ACTIONS(8831), + [sym_nothing_literal] = ACTIONS(8831), + [sym_null_literal] = ACTIONS(8831), + [sym_empty_literal] = ACTIONS(8831), + [sym_date_literal] = ACTIONS(8833), + [anon_sym_POUND] = ACTIONS(8831), + }, + [STATE(6107)] = { + [sym_identifier] = ACTIONS(8939), + [sym_newline] = ACTIONS(8941), + [anon_sym_COLON] = ACTIONS(8941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8939), + [aux_sym_frm_property_statement_token1] = ACTIONS(8939), + [anon_sym_DOT] = ACTIONS(8939), + [anon_sym_BANG] = ACTIONS(8941), + [aux_sym__attribute_identifier_token1] = ACTIONS(8939), + [aux_sym_option_statement_token3] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8939), + [aux_sym_preprocessor_const_token1] = ACTIONS(8939), + [sym_static_modifier] = ACTIONS(8939), + [sym__dim_keyword] = ACTIONS(8939), + [sym__redim_keyword] = ACTIONS(8939), + [aux_sym_get_accessor_token1] = ACTIONS(8939), + [aux_sym_set_accessor_token1] = ACTIONS(8939), + [anon_sym_COMMA] = ACTIONS(10980), + [aux_sym_const_declaration_token1] = ACTIONS(8939), + [anon_sym_LPAREN] = ACTIONS(8941), + [aux_sym_as_type_clause_token2] = ACTIONS(8939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8939), + [aux_sym_visibility_token1] = ACTIONS(8939), + [aux_sym_visibility_token2] = ACTIONS(8939), + [aux_sym_elseif_fragment_token1] = ACTIONS(8939), + [aux_sym_else_fragment_token1] = ACTIONS(8939), + [aux_sym_select_statement_token1] = ACTIONS(8939), + [aux_sym__for_header_token1] = ACTIONS(8939), + [aux_sym_do_statement_token1] = ACTIONS(8939), + [aux_sym_do_condition_token1] = ACTIONS(8939), + [aux_sym_while_statement_token1] = ACTIONS(8939), + [aux_sym_with_statement_token1] = ACTIONS(8939), + [aux_sym_exit_statement_token1] = ACTIONS(8939), + [sym_end_statement] = ACTIONS(8941), + [aux_sym_on_goto_statement_token1] = ACTIONS(8939), + [aux_sym_on_goto_statement_token2] = ACTIONS(8939), + [aux_sym_on_error_statement_token2] = ACTIONS(8939), + [sym__ambiguous_redim_statement] = ACTIONS(8941), + [aux_sym_erase_statement_token1] = ACTIONS(8939), + [aux_sym_open_statement_token1] = ACTIONS(8939), + [aux_sym_file_mode_token2] = ACTIONS(8939), + [aux_sym_file_access_token2] = ACTIONS(8939), + [aux_sym_file_lock_token2] = ACTIONS(8939), + [aux_sym_print_statement_token1] = ACTIONS(8939), + [anon_sym_PLUS] = ACTIONS(8941), + [anon_sym_DASH] = ACTIONS(8939), + [anon_sym_QMARK] = ACTIONS(8941), + [aux_sym_close_statement_token1] = ACTIONS(8939), + [aux_sym_put_statement_token1] = ACTIONS(8939), + [aux_sym_unlock_statement_token1] = ACTIONS(8939), + [aux_sym_seek_statement_token1] = ACTIONS(8939), + [sym_reset_statement] = ACTIONS(8939), + [aux_sym_raise_event_statement_token1] = ACTIONS(8939), + [sym_stop_statement] = ACTIONS(8939), + [sym_beep_statement] = ACTIONS(8939), + [aux_sym_unload_statement_token1] = ACTIONS(8939), + [aux_sym_def_type_statement_token1] = ACTIONS(8939), + [aux_sym_def_type_statement_token2] = ACTIONS(8939), + [aux_sym_def_type_statement_token3] = ACTIONS(8939), + [aux_sym_def_type_statement_token4] = ACTIONS(8939), + [aux_sym_def_type_statement_token5] = ACTIONS(8939), + [aux_sym_def_type_statement_token6] = ACTIONS(8939), + [aux_sym_def_type_statement_token7] = ACTIONS(8939), + [aux_sym_def_type_statement_token8] = ACTIONS(8939), + [aux_sym_def_type_statement_token9] = ACTIONS(8939), + [aux_sym_def_type_statement_token10] = ACTIONS(8939), + [aux_sym_def_type_statement_token11] = ACTIONS(8939), + [aux_sym_def_type_statement_token12] = ACTIONS(8939), + [aux_sym_def_type_statement_token13] = ACTIONS(8939), + [aux_sym_def_type_statement_token14] = ACTIONS(8939), + [aux_sym_call_statement_token1] = ACTIONS(8939), + [sym__ambiguous_call_statement] = ACTIONS(8939), + [aux_sym_addressof_expression_token1] = ACTIONS(8939), + [aux_sym_type_of_expression_token1] = ACTIONS(8939), + [aux_sym_unary_expression_token1] = ACTIONS(8939), + [sym_string_literal] = ACTIONS(8941), + [sym_number_literal] = ACTIONS(8941), + [aux_sym_boolean_literal_token1] = ACTIONS(8939), + [aux_sym_boolean_literal_token2] = ACTIONS(8939), + [sym_nothing_literal] = ACTIONS(8939), + [sym_null_literal] = ACTIONS(8939), + [sym_empty_literal] = ACTIONS(8939), + [sym_date_literal] = ACTIONS(8941), + [anon_sym_POUND] = ACTIONS(8939), + }, + [STATE(6108)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_while_statement_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(6109)] = { + [sym_identifier] = ACTIONS(8287), + [sym_newline] = ACTIONS(8289), + [anon_sym_COLON] = ACTIONS(8289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8287), + [aux_sym_frm_property_statement_token1] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8287), + [anon_sym_BANG] = ACTIONS(8289), + [aux_sym__attribute_identifier_token1] = ACTIONS(8287), + [aux_sym_option_statement_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8287), + [aux_sym_preprocessor_const_token1] = ACTIONS(8287), + [sym_static_modifier] = ACTIONS(8287), + [sym__dim_keyword] = ACTIONS(8287), + [sym__redim_keyword] = ACTIONS(8287), + [aux_sym_get_accessor_token1] = ACTIONS(8287), + [aux_sym_set_accessor_token1] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8289), + [aux_sym_const_declaration_token1] = ACTIONS(8287), + [anon_sym_LPAREN] = ACTIONS(8289), + [aux_sym_as_type_clause_token2] = ACTIONS(8287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8287), + [aux_sym_visibility_token1] = ACTIONS(8287), + [aux_sym_visibility_token2] = ACTIONS(8287), + [aux_sym_elseif_fragment_token1] = ACTIONS(8287), + [aux_sym_else_fragment_token1] = ACTIONS(8287), + [aux_sym_select_statement_token1] = ACTIONS(8287), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8287), + [aux_sym__for_header_token1] = ACTIONS(8287), + [aux_sym_do_statement_token1] = ACTIONS(8287), + [aux_sym_do_condition_token1] = ACTIONS(8287), + [aux_sym_with_statement_token1] = ACTIONS(8287), + [aux_sym_exit_statement_token1] = ACTIONS(8287), + [sym_end_statement] = ACTIONS(8289), + [aux_sym_on_goto_statement_token1] = ACTIONS(8287), + [aux_sym_on_goto_statement_token2] = ACTIONS(8287), + [aux_sym_on_error_statement_token2] = ACTIONS(8287), + [sym__ambiguous_redim_statement] = ACTIONS(8289), + [aux_sym_erase_statement_token1] = ACTIONS(8287), + [aux_sym_open_statement_token1] = ACTIONS(8287), + [aux_sym_file_mode_token2] = ACTIONS(8287), + [aux_sym_file_access_token2] = ACTIONS(8287), + [aux_sym_file_lock_token2] = ACTIONS(8287), + [aux_sym_print_statement_token1] = ACTIONS(8287), + [anon_sym_PLUS] = ACTIONS(8289), + [anon_sym_DASH] = ACTIONS(8287), + [anon_sym_QMARK] = ACTIONS(8289), + [aux_sym_close_statement_token1] = ACTIONS(8287), + [aux_sym_put_statement_token1] = ACTIONS(8287), + [aux_sym_unlock_statement_token1] = ACTIONS(8287), + [aux_sym_seek_statement_token1] = ACTIONS(8287), + [sym_reset_statement] = ACTIONS(8287), + [aux_sym_raise_event_statement_token1] = ACTIONS(8287), + [sym_stop_statement] = ACTIONS(8287), + [sym_beep_statement] = ACTIONS(8287), + [aux_sym_unload_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token2] = ACTIONS(8287), + [aux_sym_def_type_statement_token3] = ACTIONS(8287), + [aux_sym_def_type_statement_token4] = ACTIONS(8287), + [aux_sym_def_type_statement_token5] = ACTIONS(8287), + [aux_sym_def_type_statement_token6] = ACTIONS(8287), + [aux_sym_def_type_statement_token7] = ACTIONS(8287), + [aux_sym_def_type_statement_token8] = ACTIONS(8287), + [aux_sym_def_type_statement_token9] = ACTIONS(8287), + [aux_sym_def_type_statement_token10] = ACTIONS(8287), + [aux_sym_def_type_statement_token11] = ACTIONS(8287), + [aux_sym_def_type_statement_token12] = ACTIONS(8287), + [aux_sym_def_type_statement_token13] = ACTIONS(8287), + [aux_sym_def_type_statement_token14] = ACTIONS(8287), + [aux_sym_call_statement_token1] = ACTIONS(8287), + [sym__ambiguous_call_statement] = ACTIONS(8287), + [aux_sym_addressof_expression_token1] = ACTIONS(8287), + [aux_sym_type_of_expression_token1] = ACTIONS(8287), + [aux_sym_unary_expression_token1] = ACTIONS(8287), + [sym_string_literal] = ACTIONS(8289), + [sym_number_literal] = ACTIONS(8289), + [aux_sym_boolean_literal_token1] = ACTIONS(8287), + [aux_sym_boolean_literal_token2] = ACTIONS(8287), + [sym_nothing_literal] = ACTIONS(8287), + [sym_null_literal] = ACTIONS(8287), + [sym_empty_literal] = ACTIONS(8287), + [sym_date_literal] = ACTIONS(8289), + [anon_sym_POUND] = ACTIONS(8287), + }, + [STATE(6110)] = { + [sym_identifier] = ACTIONS(8196), + [sym_newline] = ACTIONS(8198), + [anon_sym_COLON] = ACTIONS(8198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8196), + [aux_sym_frm_property_statement_token1] = ACTIONS(8196), + [anon_sym_DOT] = ACTIONS(8196), + [anon_sym_BANG] = ACTIONS(8198), + [aux_sym__attribute_identifier_token1] = ACTIONS(8196), + [aux_sym_option_statement_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8196), + [aux_sym_preprocessor_const_token1] = ACTIONS(8196), + [sym_static_modifier] = ACTIONS(8196), + [sym__dim_keyword] = ACTIONS(8196), + [sym__redim_keyword] = ACTIONS(8196), + [aux_sym_get_accessor_token1] = ACTIONS(8196), + [aux_sym_set_accessor_token1] = ACTIONS(8196), + [anon_sym_COMMA] = ACTIONS(8198), + [aux_sym_const_declaration_token1] = ACTIONS(8196), + [anon_sym_LPAREN] = ACTIONS(8198), + [aux_sym_as_type_clause_token2] = ACTIONS(8196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8196), + [aux_sym_visibility_token1] = ACTIONS(8196), + [aux_sym_visibility_token2] = ACTIONS(8196), + [aux_sym_elseif_fragment_token1] = ACTIONS(8196), + [aux_sym_else_fragment_token1] = ACTIONS(8196), + [aux_sym_select_statement_token1] = ACTIONS(8196), + [aux_sym__for_header_token1] = ACTIONS(8196), + [aux_sym_do_statement_token1] = ACTIONS(8196), + [aux_sym_do_condition_token1] = ACTIONS(8196), + [aux_sym_with_statement_token1] = ACTIONS(8196), + [aux_sym_exit_statement_token1] = ACTIONS(8196), + [sym_end_statement] = ACTIONS(8198), + [aux_sym_on_goto_statement_token1] = ACTIONS(8196), + [aux_sym_on_goto_statement_token2] = ACTIONS(8196), + [aux_sym_on_error_statement_token2] = ACTIONS(8196), + [sym__ambiguous_redim_statement] = ACTIONS(8198), + [aux_sym_erase_statement_token1] = ACTIONS(8196), + [aux_sym_open_statement_token1] = ACTIONS(8196), + [aux_sym_file_mode_token2] = ACTIONS(8196), + [aux_sym_file_access_token2] = ACTIONS(8196), + [aux_sym_file_lock_token2] = ACTIONS(8196), + [aux_sym_print_statement_token1] = ACTIONS(8196), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(8196), + [anon_sym_QMARK] = ACTIONS(8198), + [aux_sym_close_statement_token1] = ACTIONS(8196), + [aux_sym_put_statement_token1] = ACTIONS(8196), + [aux_sym_unlock_statement_token1] = ACTIONS(8196), + [aux_sym_seek_statement_token1] = ACTIONS(8196), + [sym_reset_statement] = ACTIONS(8196), + [aux_sym_raise_event_statement_token1] = ACTIONS(8196), + [sym_stop_statement] = ACTIONS(8196), + [sym_beep_statement] = ACTIONS(8196), + [aux_sym_unload_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token2] = ACTIONS(8196), + [aux_sym_def_type_statement_token3] = ACTIONS(8196), + [aux_sym_def_type_statement_token4] = ACTIONS(8196), + [aux_sym_def_type_statement_token5] = ACTIONS(8196), + [aux_sym_def_type_statement_token6] = ACTIONS(8196), + [aux_sym_def_type_statement_token7] = ACTIONS(8196), + [aux_sym_def_type_statement_token8] = ACTIONS(8196), + [aux_sym_def_type_statement_token9] = ACTIONS(8196), + [aux_sym_def_type_statement_token10] = ACTIONS(8196), + [aux_sym_def_type_statement_token11] = ACTIONS(8196), + [aux_sym_def_type_statement_token12] = ACTIONS(8196), + [aux_sym_def_type_statement_token13] = ACTIONS(8196), + [aux_sym_def_type_statement_token14] = ACTIONS(8196), + [aux_sym_call_statement_token1] = ACTIONS(8196), + [sym__ambiguous_call_statement] = ACTIONS(8196), + [aux_sym_addressof_expression_token1] = ACTIONS(8196), + [aux_sym_type_of_expression_token1] = ACTIONS(8196), + [aux_sym_unary_expression_token1] = ACTIONS(8196), + [sym_string_literal] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8198), + [aux_sym_boolean_literal_token1] = ACTIONS(8196), + [aux_sym_boolean_literal_token2] = ACTIONS(8196), + [sym_nothing_literal] = ACTIONS(8196), + [sym_null_literal] = ACTIONS(8196), + [sym_empty_literal] = ACTIONS(8196), + [sym_date_literal] = ACTIONS(8198), + [anon_sym_POUND] = ACTIONS(8196), + }, + [STATE(6111)] = { + [aux_sym_variable_declaration_repeat1] = STATE(6210), + [sym_identifier] = ACTIONS(8154), + [sym_newline] = ACTIONS(8156), + [anon_sym_COLON] = ACTIONS(8156), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8154), + [aux_sym_frm_property_statement_token1] = ACTIONS(8154), + [anon_sym_DOT] = ACTIONS(8154), + [anon_sym_BANG] = ACTIONS(8156), + [aux_sym__attribute_identifier_token1] = ACTIONS(8154), + [aux_sym_option_statement_token3] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8154), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8154), + [aux_sym_preprocessor_const_token1] = ACTIONS(8154), + [sym_static_modifier] = ACTIONS(8154), + [sym__dim_keyword] = ACTIONS(8154), + [sym__redim_keyword] = ACTIONS(8154), + [aux_sym_get_accessor_token1] = ACTIONS(8154), + [aux_sym_set_accessor_token1] = ACTIONS(8154), + [anon_sym_COMMA] = ACTIONS(10844), + [aux_sym_const_declaration_token1] = ACTIONS(8154), + [anon_sym_LPAREN] = ACTIONS(8156), + [aux_sym_as_type_clause_token2] = ACTIONS(8154), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8154), + [aux_sym_visibility_token1] = ACTIONS(8154), + [aux_sym_visibility_token2] = ACTIONS(8154), + [aux_sym_elseif_fragment_token1] = ACTIONS(8154), + [aux_sym_else_fragment_token1] = ACTIONS(8154), + [aux_sym_select_statement_token1] = ACTIONS(8154), + [aux_sym__for_header_token1] = ACTIONS(8154), + [aux_sym_do_statement_token1] = ACTIONS(8154), + [aux_sym_do_condition_token1] = ACTIONS(8154), + [aux_sym_with_statement_token1] = ACTIONS(8154), + [aux_sym_exit_statement_token1] = ACTIONS(8154), + [sym_end_statement] = ACTIONS(8156), + [aux_sym_on_goto_statement_token1] = ACTIONS(8154), + [aux_sym_on_goto_statement_token2] = ACTIONS(8154), + [aux_sym_on_error_statement_token2] = ACTIONS(8154), + [sym__ambiguous_redim_statement] = ACTIONS(8156), + [aux_sym_erase_statement_token1] = ACTIONS(8154), + [aux_sym_open_statement_token1] = ACTIONS(8154), + [aux_sym_file_mode_token2] = ACTIONS(8154), + [aux_sym_file_access_token2] = ACTIONS(8154), + [aux_sym_file_lock_token2] = ACTIONS(8154), + [aux_sym_print_statement_token1] = ACTIONS(8154), + [anon_sym_PLUS] = ACTIONS(8156), + [anon_sym_DASH] = ACTIONS(8154), + [anon_sym_QMARK] = ACTIONS(8156), + [aux_sym_close_statement_token1] = ACTIONS(8154), + [aux_sym_put_statement_token1] = ACTIONS(8154), + [aux_sym_unlock_statement_token1] = ACTIONS(8154), + [aux_sym_seek_statement_token1] = ACTIONS(8154), + [sym_reset_statement] = ACTIONS(8154), + [aux_sym_raise_event_statement_token1] = ACTIONS(8154), + [sym_stop_statement] = ACTIONS(8154), + [sym_beep_statement] = ACTIONS(8154), + [aux_sym_unload_statement_token1] = ACTIONS(8154), + [aux_sym_def_type_statement_token1] = ACTIONS(8154), + [aux_sym_def_type_statement_token2] = ACTIONS(8154), + [aux_sym_def_type_statement_token3] = ACTIONS(8154), + [aux_sym_def_type_statement_token4] = ACTIONS(8154), + [aux_sym_def_type_statement_token5] = ACTIONS(8154), + [aux_sym_def_type_statement_token6] = ACTIONS(8154), + [aux_sym_def_type_statement_token7] = ACTIONS(8154), + [aux_sym_def_type_statement_token8] = ACTIONS(8154), + [aux_sym_def_type_statement_token9] = ACTIONS(8154), + [aux_sym_def_type_statement_token10] = ACTIONS(8154), + [aux_sym_def_type_statement_token11] = ACTIONS(8154), + [aux_sym_def_type_statement_token12] = ACTIONS(8154), + [aux_sym_def_type_statement_token13] = ACTIONS(8154), + [aux_sym_def_type_statement_token14] = ACTIONS(8154), + [aux_sym_call_statement_token1] = ACTIONS(8154), + [sym__ambiguous_call_statement] = ACTIONS(8154), + [aux_sym_addressof_expression_token1] = ACTIONS(8154), + [aux_sym_type_of_expression_token1] = ACTIONS(8154), + [aux_sym_unary_expression_token1] = ACTIONS(8154), + [sym_string_literal] = ACTIONS(8156), + [sym_number_literal] = ACTIONS(8156), + [aux_sym_boolean_literal_token1] = ACTIONS(8154), + [aux_sym_boolean_literal_token2] = ACTIONS(8154), + [sym_nothing_literal] = ACTIONS(8154), + [sym_null_literal] = ACTIONS(8154), + [sym_empty_literal] = ACTIONS(8154), + [sym_date_literal] = ACTIONS(8156), + [anon_sym_POUND] = ACTIONS(8154), + }, + [STATE(6112)] = { + [sym_identifier] = ACTIONS(8780), + [sym_newline] = ACTIONS(8782), + [anon_sym_COLON] = ACTIONS(8782), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8780), + [aux_sym_frm_property_statement_token1] = ACTIONS(8780), + [anon_sym_DOT] = ACTIONS(8780), + [anon_sym_BANG] = ACTIONS(8782), + [aux_sym__attribute_identifier_token1] = ACTIONS(8780), + [aux_sym_option_statement_token3] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8780), + [aux_sym_preprocessor_const_token1] = ACTIONS(8780), + [sym_static_modifier] = ACTIONS(8780), + [sym__dim_keyword] = ACTIONS(8780), + [sym__redim_keyword] = ACTIONS(8780), + [aux_sym_get_accessor_token1] = ACTIONS(8780), + [aux_sym_set_accessor_token1] = ACTIONS(8780), + [anon_sym_COMMA] = ACTIONS(10982), + [aux_sym_const_declaration_token1] = ACTIONS(8780), + [anon_sym_LPAREN] = ACTIONS(8782), + [aux_sym_as_type_clause_token2] = ACTIONS(8780), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8780), + [aux_sym_visibility_token1] = ACTIONS(8780), + [aux_sym_visibility_token2] = ACTIONS(8780), + [aux_sym_elseif_fragment_token1] = ACTIONS(8780), + [aux_sym_else_fragment_token1] = ACTIONS(8780), + [aux_sym_select_statement_token1] = ACTIONS(8780), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8780), + [aux_sym__for_header_token1] = ACTIONS(8780), + [aux_sym_do_statement_token1] = ACTIONS(8780), + [aux_sym_do_condition_token1] = ACTIONS(8780), + [aux_sym_with_statement_token1] = ACTIONS(8780), + [aux_sym_exit_statement_token1] = ACTIONS(8780), + [sym_end_statement] = ACTIONS(8782), + [aux_sym_on_goto_statement_token1] = ACTIONS(8780), + [aux_sym_on_goto_statement_token2] = ACTIONS(8780), + [aux_sym_on_error_statement_token2] = ACTIONS(8780), + [sym__ambiguous_redim_statement] = ACTIONS(8782), + [aux_sym_erase_statement_token1] = ACTIONS(8780), + [aux_sym_open_statement_token1] = ACTIONS(8780), + [aux_sym_file_mode_token2] = ACTIONS(8780), + [aux_sym_file_access_token2] = ACTIONS(8780), + [aux_sym_file_lock_token2] = ACTIONS(8780), + [aux_sym_print_statement_token1] = ACTIONS(8780), + [anon_sym_PLUS] = ACTIONS(8782), + [anon_sym_DASH] = ACTIONS(8780), + [anon_sym_QMARK] = ACTIONS(8782), + [aux_sym_close_statement_token1] = ACTIONS(8780), + [aux_sym_put_statement_token1] = ACTIONS(8780), + [aux_sym_unlock_statement_token1] = ACTIONS(8780), + [aux_sym_seek_statement_token1] = ACTIONS(8780), + [sym_reset_statement] = ACTIONS(8780), + [aux_sym_raise_event_statement_token1] = ACTIONS(8780), + [sym_stop_statement] = ACTIONS(8780), + [sym_beep_statement] = ACTIONS(8780), + [aux_sym_unload_statement_token1] = ACTIONS(8780), + [aux_sym_def_type_statement_token1] = ACTIONS(8780), + [aux_sym_def_type_statement_token2] = ACTIONS(8780), + [aux_sym_def_type_statement_token3] = ACTIONS(8780), + [aux_sym_def_type_statement_token4] = ACTIONS(8780), + [aux_sym_def_type_statement_token5] = ACTIONS(8780), + [aux_sym_def_type_statement_token6] = ACTIONS(8780), + [aux_sym_def_type_statement_token7] = ACTIONS(8780), + [aux_sym_def_type_statement_token8] = ACTIONS(8780), + [aux_sym_def_type_statement_token9] = ACTIONS(8780), + [aux_sym_def_type_statement_token10] = ACTIONS(8780), + [aux_sym_def_type_statement_token11] = ACTIONS(8780), + [aux_sym_def_type_statement_token12] = ACTIONS(8780), + [aux_sym_def_type_statement_token13] = ACTIONS(8780), + [aux_sym_def_type_statement_token14] = ACTIONS(8780), + [aux_sym_call_statement_token1] = ACTIONS(8780), + [sym__ambiguous_call_statement] = ACTIONS(8780), + [aux_sym_addressof_expression_token1] = ACTIONS(8780), + [aux_sym_type_of_expression_token1] = ACTIONS(8780), + [aux_sym_unary_expression_token1] = ACTIONS(8780), + [sym_string_literal] = ACTIONS(8782), + [sym_number_literal] = ACTIONS(8782), + [aux_sym_boolean_literal_token1] = ACTIONS(8780), + [aux_sym_boolean_literal_token2] = ACTIONS(8780), + [sym_nothing_literal] = ACTIONS(8780), + [sym_null_literal] = ACTIONS(8780), + [sym_empty_literal] = ACTIONS(8780), + [sym_date_literal] = ACTIONS(8782), + [anon_sym_POUND] = ACTIONS(8780), + }, + [STATE(6113)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6147), + [sym_identifier] = ACTIONS(8733), + [sym_newline] = ACTIONS(8735), + [anon_sym_COLON] = ACTIONS(10880), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8733), + [aux_sym_frm_property_statement_token1] = ACTIONS(8733), + [anon_sym_DOT] = ACTIONS(8733), + [anon_sym_BANG] = ACTIONS(8735), + [aux_sym__attribute_identifier_token1] = ACTIONS(8733), + [aux_sym_option_statement_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8733), + [aux_sym_preprocessor_const_token1] = ACTIONS(8733), + [sym_static_modifier] = ACTIONS(8733), + [sym__dim_keyword] = ACTIONS(8733), + [sym__redim_keyword] = ACTIONS(8733), + [aux_sym_get_accessor_token1] = ACTIONS(8733), + [aux_sym_set_accessor_token1] = ACTIONS(8733), + [aux_sym_const_declaration_token1] = ACTIONS(8733), + [anon_sym_LPAREN] = ACTIONS(8735), + [aux_sym_as_type_clause_token2] = ACTIONS(8733), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8733), + [aux_sym_visibility_token1] = ACTIONS(8733), + [aux_sym_visibility_token2] = ACTIONS(8733), + [aux_sym_elseif_fragment_token1] = ACTIONS(8733), + [aux_sym_else_fragment_token1] = ACTIONS(10984), + [aux_sym_select_statement_token1] = ACTIONS(8733), + [aux_sym_select_statement_token2] = ACTIONS(8733), + [aux_sym__for_header_token1] = ACTIONS(8733), + [aux_sym_do_statement_token1] = ACTIONS(8733), + [aux_sym_do_condition_token1] = ACTIONS(8733), + [aux_sym_with_statement_token1] = ACTIONS(8733), + [aux_sym_exit_statement_token1] = ACTIONS(8733), + [sym_end_statement] = ACTIONS(8735), + [aux_sym_on_goto_statement_token1] = ACTIONS(8733), + [aux_sym_on_goto_statement_token2] = ACTIONS(8733), + [aux_sym_on_error_statement_token2] = ACTIONS(8733), + [sym__ambiguous_redim_statement] = ACTIONS(8735), + [aux_sym_erase_statement_token1] = ACTIONS(8733), + [aux_sym_open_statement_token1] = ACTIONS(8733), + [aux_sym_file_mode_token2] = ACTIONS(8733), + [aux_sym_file_access_token2] = ACTIONS(8733), + [aux_sym_file_lock_token2] = ACTIONS(8733), + [aux_sym_print_statement_token1] = ACTIONS(8733), + [anon_sym_PLUS] = ACTIONS(8735), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_QMARK] = ACTIONS(8735), + [aux_sym_close_statement_token1] = ACTIONS(8733), + [aux_sym_put_statement_token1] = ACTIONS(8733), + [aux_sym_unlock_statement_token1] = ACTIONS(8733), + [aux_sym_seek_statement_token1] = ACTIONS(8733), + [sym_reset_statement] = ACTIONS(8733), + [aux_sym_raise_event_statement_token1] = ACTIONS(8733), + [sym_stop_statement] = ACTIONS(8733), + [sym_beep_statement] = ACTIONS(8733), + [aux_sym_unload_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token2] = ACTIONS(8733), + [aux_sym_def_type_statement_token3] = ACTIONS(8733), + [aux_sym_def_type_statement_token4] = ACTIONS(8733), + [aux_sym_def_type_statement_token5] = ACTIONS(8733), + [aux_sym_def_type_statement_token6] = ACTIONS(8733), + [aux_sym_def_type_statement_token7] = ACTIONS(8733), + [aux_sym_def_type_statement_token8] = ACTIONS(8733), + [aux_sym_def_type_statement_token9] = ACTIONS(8733), + [aux_sym_def_type_statement_token10] = ACTIONS(8733), + [aux_sym_def_type_statement_token11] = ACTIONS(8733), + [aux_sym_def_type_statement_token12] = ACTIONS(8733), + [aux_sym_def_type_statement_token13] = ACTIONS(8733), + [aux_sym_def_type_statement_token14] = ACTIONS(8733), + [aux_sym_call_statement_token1] = ACTIONS(8733), + [sym__ambiguous_call_statement] = ACTIONS(8733), + [aux_sym_addressof_expression_token1] = ACTIONS(8733), + [aux_sym_type_of_expression_token1] = ACTIONS(8733), + [aux_sym_unary_expression_token1] = ACTIONS(8733), + [sym_string_literal] = ACTIONS(8735), + [sym_number_literal] = ACTIONS(8735), + [aux_sym_boolean_literal_token1] = ACTIONS(8733), + [aux_sym_boolean_literal_token2] = ACTIONS(8733), + [sym_nothing_literal] = ACTIONS(8733), + [sym_null_literal] = ACTIONS(8733), + [sym_empty_literal] = ACTIONS(8733), + [sym_date_literal] = ACTIONS(8735), + [anon_sym_POUND] = ACTIONS(8733), + }, + [STATE(6114)] = { + [sym_identifier] = ACTIONS(8951), + [sym_newline] = ACTIONS(8953), + [anon_sym_COLON] = ACTIONS(8955), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8951), + [aux_sym_frm_property_statement_token1] = ACTIONS(8951), + [anon_sym_DOT] = ACTIONS(8951), + [anon_sym_BANG] = ACTIONS(8953), + [aux_sym__attribute_identifier_token1] = ACTIONS(8951), + [aux_sym_option_statement_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8951), + [aux_sym_preprocessor_const_token1] = ACTIONS(8951), + [sym_static_modifier] = ACTIONS(8951), + [sym__dim_keyword] = ACTIONS(8951), + [sym__redim_keyword] = ACTIONS(8951), + [aux_sym_get_accessor_token1] = ACTIONS(8951), + [aux_sym_set_accessor_token1] = ACTIONS(8951), + [aux_sym_const_declaration_token1] = ACTIONS(8951), + [anon_sym_LPAREN] = ACTIONS(8953), + [aux_sym_as_type_clause_token2] = ACTIONS(8951), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8951), + [aux_sym_visibility_token1] = ACTIONS(8951), + [aux_sym_visibility_token2] = ACTIONS(8951), + [aux_sym_elseif_fragment_token1] = ACTIONS(8951), + [aux_sym_else_fragment_token1] = ACTIONS(8951), + [aux_sym_select_statement_token1] = ACTIONS(8951), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8951), + [aux_sym__for_header_token1] = ACTIONS(8951), + [aux_sym_do_statement_token1] = ACTIONS(8951), + [aux_sym_do_condition_token1] = ACTIONS(8951), + [aux_sym_while_statement_token1] = ACTIONS(8951), + [aux_sym_with_statement_token1] = ACTIONS(8951), + [aux_sym_exit_statement_token1] = ACTIONS(8951), + [sym_end_statement] = ACTIONS(8953), + [aux_sym_on_goto_statement_token1] = ACTIONS(8951), + [aux_sym_on_goto_statement_token2] = ACTIONS(8951), + [aux_sym_on_error_statement_token2] = ACTIONS(8951), + [sym__ambiguous_redim_statement] = ACTIONS(8953), + [aux_sym_erase_statement_token1] = ACTIONS(8951), + [aux_sym_open_statement_token1] = ACTIONS(8951), + [aux_sym_file_mode_token2] = ACTIONS(8951), + [aux_sym_file_access_token2] = ACTIONS(8951), + [aux_sym_file_lock_token2] = ACTIONS(8951), + [aux_sym_print_statement_token1] = ACTIONS(8951), + [anon_sym_PLUS] = ACTIONS(8953), + [anon_sym_DASH] = ACTIONS(8951), + [anon_sym_QMARK] = ACTIONS(8953), + [aux_sym_close_statement_token1] = ACTIONS(8951), + [aux_sym_put_statement_token1] = ACTIONS(8951), + [aux_sym_unlock_statement_token1] = ACTIONS(8951), + [aux_sym_seek_statement_token1] = ACTIONS(8951), + [sym_reset_statement] = ACTIONS(8951), + [aux_sym_raise_event_statement_token1] = ACTIONS(8951), + [sym_stop_statement] = ACTIONS(8951), + [sym_beep_statement] = ACTIONS(8951), + [aux_sym_unload_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token2] = ACTIONS(8951), + [aux_sym_def_type_statement_token3] = ACTIONS(8951), + [aux_sym_def_type_statement_token4] = ACTIONS(8951), + [aux_sym_def_type_statement_token5] = ACTIONS(8951), + [aux_sym_def_type_statement_token6] = ACTIONS(8951), + [aux_sym_def_type_statement_token7] = ACTIONS(8951), + [aux_sym_def_type_statement_token8] = ACTIONS(8951), + [aux_sym_def_type_statement_token9] = ACTIONS(8951), + [aux_sym_def_type_statement_token10] = ACTIONS(8951), + [aux_sym_def_type_statement_token11] = ACTIONS(8951), + [aux_sym_def_type_statement_token12] = ACTIONS(8951), + [aux_sym_def_type_statement_token13] = ACTIONS(8951), + [aux_sym_def_type_statement_token14] = ACTIONS(8951), + [aux_sym_call_statement_token1] = ACTIONS(8951), + [sym__ambiguous_call_statement] = ACTIONS(8951), + [aux_sym_addressof_expression_token1] = ACTIONS(8951), + [aux_sym_type_of_expression_token1] = ACTIONS(8951), + [aux_sym_unary_expression_token1] = ACTIONS(8951), + [sym_string_literal] = ACTIONS(8953), + [sym_number_literal] = ACTIONS(8955), + [aux_sym_boolean_literal_token1] = ACTIONS(8951), + [aux_sym_boolean_literal_token2] = ACTIONS(8951), + [sym_nothing_literal] = ACTIONS(8951), + [sym_null_literal] = ACTIONS(8951), + [sym_empty_literal] = ACTIONS(8951), + [sym_date_literal] = ACTIONS(8953), + [anon_sym_POUND] = ACTIONS(8951), + }, + [STATE(6115)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(5983), + [sym_identifier] = ACTIONS(8813), + [sym_newline] = ACTIONS(8815), + [anon_sym_COLON] = ACTIONS(10848), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8813), + [aux_sym_frm_property_statement_token1] = ACTIONS(8813), + [anon_sym_DOT] = ACTIONS(8813), + [anon_sym_BANG] = ACTIONS(8815), + [aux_sym__attribute_identifier_token1] = ACTIONS(8813), + [aux_sym_option_statement_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8813), + [aux_sym_preprocessor_const_token1] = ACTIONS(8813), + [sym_static_modifier] = ACTIONS(8813), + [sym__dim_keyword] = ACTIONS(8813), + [sym__redim_keyword] = ACTIONS(8813), + [aux_sym_get_accessor_token1] = ACTIONS(8813), + [aux_sym_set_accessor_token1] = ACTIONS(8813), + [aux_sym_const_declaration_token1] = ACTIONS(8813), + [anon_sym_LPAREN] = ACTIONS(8815), + [aux_sym_as_type_clause_token2] = ACTIONS(8813), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8813), + [aux_sym_visibility_token1] = ACTIONS(8813), + [aux_sym_visibility_token2] = ACTIONS(8813), + [aux_sym_elseif_fragment_token1] = ACTIONS(8813), + [aux_sym_else_fragment_token1] = ACTIONS(8813), + [aux_sym_select_statement_token1] = ACTIONS(8813), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8813), + [aux_sym__for_header_token1] = ACTIONS(8813), + [aux_sym_do_statement_token1] = ACTIONS(8813), + [aux_sym_do_condition_token1] = ACTIONS(8813), + [aux_sym_with_statement_token1] = ACTIONS(8813), + [aux_sym_exit_statement_token1] = ACTIONS(8813), + [sym_end_statement] = ACTIONS(8815), + [aux_sym_on_goto_statement_token1] = ACTIONS(8813), + [aux_sym_on_goto_statement_token2] = ACTIONS(8813), + [aux_sym_on_error_statement_token2] = ACTIONS(8813), + [sym__ambiguous_redim_statement] = ACTIONS(8815), + [aux_sym_erase_statement_token1] = ACTIONS(8813), + [aux_sym_open_statement_token1] = ACTIONS(8813), + [aux_sym_file_mode_token2] = ACTIONS(8813), + [aux_sym_file_access_token2] = ACTIONS(8813), + [aux_sym_file_lock_token2] = ACTIONS(8813), + [aux_sym_print_statement_token1] = ACTIONS(8813), + [anon_sym_PLUS] = ACTIONS(8815), + [anon_sym_DASH] = ACTIONS(8813), + [anon_sym_QMARK] = ACTIONS(8815), + [aux_sym_close_statement_token1] = ACTIONS(8813), + [aux_sym_put_statement_token1] = ACTIONS(8813), + [aux_sym_unlock_statement_token1] = ACTIONS(8813), + [aux_sym_seek_statement_token1] = ACTIONS(8813), + [sym_reset_statement] = ACTIONS(8813), + [aux_sym_raise_event_statement_token1] = ACTIONS(8813), + [sym_stop_statement] = ACTIONS(8813), + [sym_beep_statement] = ACTIONS(8813), + [aux_sym_unload_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token2] = ACTIONS(8813), + [aux_sym_def_type_statement_token3] = ACTIONS(8813), + [aux_sym_def_type_statement_token4] = ACTIONS(8813), + [aux_sym_def_type_statement_token5] = ACTIONS(8813), + [aux_sym_def_type_statement_token6] = ACTIONS(8813), + [aux_sym_def_type_statement_token7] = ACTIONS(8813), + [aux_sym_def_type_statement_token8] = ACTIONS(8813), + [aux_sym_def_type_statement_token9] = ACTIONS(8813), + [aux_sym_def_type_statement_token10] = ACTIONS(8813), + [aux_sym_def_type_statement_token11] = ACTIONS(8813), + [aux_sym_def_type_statement_token12] = ACTIONS(8813), + [aux_sym_def_type_statement_token13] = ACTIONS(8813), + [aux_sym_def_type_statement_token14] = ACTIONS(8813), + [aux_sym_call_statement_token1] = ACTIONS(8813), + [sym__ambiguous_call_statement] = ACTIONS(8813), + [aux_sym_addressof_expression_token1] = ACTIONS(8813), + [aux_sym_type_of_expression_token1] = ACTIONS(8813), + [aux_sym_unary_expression_token1] = ACTIONS(8813), + [sym_string_literal] = ACTIONS(8815), + [sym_number_literal] = ACTIONS(8815), + [aux_sym_boolean_literal_token1] = ACTIONS(8813), + [aux_sym_boolean_literal_token2] = ACTIONS(8813), + [sym_nothing_literal] = ACTIONS(8813), + [sym_null_literal] = ACTIONS(8813), + [sym_empty_literal] = ACTIONS(8813), + [sym_date_literal] = ACTIONS(8815), + [anon_sym_POUND] = ACTIONS(8813), + }, + [STATE(6116)] = { + [sym_identifier] = ACTIONS(8645), + [sym_newline] = ACTIONS(8647), + [anon_sym_COLON] = ACTIONS(8649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8645), + [aux_sym_frm_property_statement_token1] = ACTIONS(8645), + [anon_sym_DOT] = ACTIONS(8645), + [anon_sym_BANG] = ACTIONS(8647), + [aux_sym__attribute_identifier_token1] = ACTIONS(8645), + [aux_sym_option_statement_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8645), + [aux_sym_preprocessor_const_token1] = ACTIONS(8645), + [sym_static_modifier] = ACTIONS(8645), + [sym__dim_keyword] = ACTIONS(8645), + [sym__redim_keyword] = ACTIONS(8645), + [aux_sym_get_accessor_token1] = ACTIONS(8645), + [aux_sym_set_accessor_token1] = ACTIONS(8645), + [aux_sym_const_declaration_token1] = ACTIONS(8645), + [anon_sym_LPAREN] = ACTIONS(8647), + [aux_sym_as_type_clause_token2] = ACTIONS(8645), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8645), + [aux_sym_visibility_token1] = ACTIONS(8645), + [aux_sym_visibility_token2] = ACTIONS(8645), + [aux_sym_elseif_fragment_token1] = ACTIONS(8645), + [aux_sym_else_fragment_token1] = ACTIONS(8645), + [aux_sym_select_statement_token1] = ACTIONS(8645), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8645), + [aux_sym__for_header_token1] = ACTIONS(8645), + [aux_sym_do_statement_token1] = ACTIONS(8645), + [aux_sym_do_condition_token1] = ACTIONS(8645), + [aux_sym_while_statement_token1] = ACTIONS(8645), + [aux_sym_with_statement_token1] = ACTIONS(8645), + [aux_sym_exit_statement_token1] = ACTIONS(8645), + [sym_end_statement] = ACTIONS(8647), + [aux_sym_on_goto_statement_token1] = ACTIONS(8645), + [aux_sym_on_goto_statement_token2] = ACTIONS(8645), + [aux_sym_on_error_statement_token2] = ACTIONS(8645), + [sym__ambiguous_redim_statement] = ACTIONS(8647), + [aux_sym_erase_statement_token1] = ACTIONS(8645), + [aux_sym_open_statement_token1] = ACTIONS(8645), + [aux_sym_file_mode_token2] = ACTIONS(8645), + [aux_sym_file_access_token2] = ACTIONS(8645), + [aux_sym_file_lock_token2] = ACTIONS(8645), + [aux_sym_print_statement_token1] = ACTIONS(8645), + [anon_sym_PLUS] = ACTIONS(8647), + [anon_sym_DASH] = ACTIONS(8645), + [anon_sym_QMARK] = ACTIONS(8647), + [aux_sym_close_statement_token1] = ACTIONS(8645), + [aux_sym_put_statement_token1] = ACTIONS(8645), + [aux_sym_unlock_statement_token1] = ACTIONS(8645), + [aux_sym_seek_statement_token1] = ACTIONS(8645), + [sym_reset_statement] = ACTIONS(8645), + [aux_sym_raise_event_statement_token1] = ACTIONS(8645), + [sym_stop_statement] = ACTIONS(8645), + [sym_beep_statement] = ACTIONS(8645), + [aux_sym_unload_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token2] = ACTIONS(8645), + [aux_sym_def_type_statement_token3] = ACTIONS(8645), + [aux_sym_def_type_statement_token4] = ACTIONS(8645), + [aux_sym_def_type_statement_token5] = ACTIONS(8645), + [aux_sym_def_type_statement_token6] = ACTIONS(8645), + [aux_sym_def_type_statement_token7] = ACTIONS(8645), + [aux_sym_def_type_statement_token8] = ACTIONS(8645), + [aux_sym_def_type_statement_token9] = ACTIONS(8645), + [aux_sym_def_type_statement_token10] = ACTIONS(8645), + [aux_sym_def_type_statement_token11] = ACTIONS(8645), + [aux_sym_def_type_statement_token12] = ACTIONS(8645), + [aux_sym_def_type_statement_token13] = ACTIONS(8645), + [aux_sym_def_type_statement_token14] = ACTIONS(8645), + [aux_sym_call_statement_token1] = ACTIONS(8645), + [sym__ambiguous_call_statement] = ACTIONS(8645), + [aux_sym_addressof_expression_token1] = ACTIONS(8645), + [aux_sym_type_of_expression_token1] = ACTIONS(8645), + [aux_sym_unary_expression_token1] = ACTIONS(8645), + [sym_string_literal] = ACTIONS(8647), + [sym_number_literal] = ACTIONS(8649), + [aux_sym_boolean_literal_token1] = ACTIONS(8645), + [aux_sym_boolean_literal_token2] = ACTIONS(8645), + [sym_nothing_literal] = ACTIONS(8645), + [sym_null_literal] = ACTIONS(8645), + [sym_empty_literal] = ACTIONS(8645), + [sym_date_literal] = ACTIONS(8647), + [anon_sym_POUND] = ACTIONS(8645), + }, + [STATE(6117)] = { + [sym_identifier] = ACTIONS(8686), + [sym_newline] = ACTIONS(8688), + [anon_sym_COLON] = ACTIONS(8688), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8686), + [aux_sym_frm_property_statement_token1] = ACTIONS(8686), + [anon_sym_DOT] = ACTIONS(8686), + [anon_sym_BANG] = ACTIONS(8688), + [aux_sym__attribute_identifier_token1] = ACTIONS(8686), + [aux_sym_option_statement_token3] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8686), + [aux_sym_preprocessor_const_token1] = ACTIONS(8686), + [sym_static_modifier] = ACTIONS(8686), + [sym__dim_keyword] = ACTIONS(8686), + [sym__redim_keyword] = ACTIONS(8686), + [aux_sym_get_accessor_token1] = ACTIONS(8686), + [aux_sym_set_accessor_token1] = ACTIONS(8686), + [aux_sym_const_declaration_token1] = ACTIONS(8686), + [anon_sym_LPAREN] = ACTIONS(8688), + [aux_sym_as_type_clause_token2] = ACTIONS(8686), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8686), + [aux_sym_visibility_token1] = ACTIONS(8686), + [aux_sym_visibility_token2] = ACTIONS(8686), + [aux_sym_elseif_fragment_token1] = ACTIONS(8686), + [aux_sym_else_fragment_token1] = ACTIONS(8686), + [aux_sym_select_statement_token1] = ACTIONS(8686), + [aux_sym__for_header_token1] = ACTIONS(8686), + [aux_sym_do_statement_token1] = ACTIONS(8686), + [aux_sym_do_statement_token2] = ACTIONS(8686), + [aux_sym_do_condition_token1] = ACTIONS(8686), + [aux_sym_with_statement_token1] = ACTIONS(8686), + [aux_sym_exit_statement_token1] = ACTIONS(8686), + [sym_end_statement] = ACTIONS(8688), + [aux_sym_on_goto_statement_token1] = ACTIONS(8686), + [aux_sym_on_goto_statement_token2] = ACTIONS(8686), + [aux_sym_on_error_statement_token2] = ACTIONS(8686), + [sym__ambiguous_redim_statement] = ACTIONS(8688), + [aux_sym_erase_statement_token1] = ACTIONS(8686), + [aux_sym_open_statement_token1] = ACTIONS(8686), + [aux_sym_open_statement_token3] = ACTIONS(10986), + [aux_sym_file_mode_token2] = ACTIONS(8686), + [aux_sym_file_access_token2] = ACTIONS(8686), + [aux_sym_file_lock_token2] = ACTIONS(8686), + [aux_sym_print_statement_token1] = ACTIONS(8686), + [anon_sym_PLUS] = ACTIONS(8688), + [anon_sym_DASH] = ACTIONS(8686), + [anon_sym_QMARK] = ACTIONS(8688), + [aux_sym_close_statement_token1] = ACTIONS(8686), + [aux_sym_put_statement_token1] = ACTIONS(8686), + [aux_sym_unlock_statement_token1] = ACTIONS(8686), + [aux_sym_seek_statement_token1] = ACTIONS(8686), + [sym_reset_statement] = ACTIONS(8686), + [aux_sym_raise_event_statement_token1] = ACTIONS(8686), + [sym_stop_statement] = ACTIONS(8686), + [sym_beep_statement] = ACTIONS(8686), + [aux_sym_unload_statement_token1] = ACTIONS(8686), + [aux_sym_def_type_statement_token1] = ACTIONS(8686), + [aux_sym_def_type_statement_token2] = ACTIONS(8686), + [aux_sym_def_type_statement_token3] = ACTIONS(8686), + [aux_sym_def_type_statement_token4] = ACTIONS(8686), + [aux_sym_def_type_statement_token5] = ACTIONS(8686), + [aux_sym_def_type_statement_token6] = ACTIONS(8686), + [aux_sym_def_type_statement_token7] = ACTIONS(8686), + [aux_sym_def_type_statement_token8] = ACTIONS(8686), + [aux_sym_def_type_statement_token9] = ACTIONS(8686), + [aux_sym_def_type_statement_token10] = ACTIONS(8686), + [aux_sym_def_type_statement_token11] = ACTIONS(8686), + [aux_sym_def_type_statement_token12] = ACTIONS(8686), + [aux_sym_def_type_statement_token13] = ACTIONS(8686), + [aux_sym_def_type_statement_token14] = ACTIONS(8686), + [aux_sym_call_statement_token1] = ACTIONS(8686), + [sym__ambiguous_call_statement] = ACTIONS(8686), + [aux_sym_addressof_expression_token1] = ACTIONS(8686), + [aux_sym_type_of_expression_token1] = ACTIONS(8686), + [aux_sym_unary_expression_token1] = ACTIONS(8686), + [sym_string_literal] = ACTIONS(8688), + [sym_number_literal] = ACTIONS(8688), + [aux_sym_boolean_literal_token1] = ACTIONS(8686), + [aux_sym_boolean_literal_token2] = ACTIONS(8686), + [sym_nothing_literal] = ACTIONS(8686), + [sym_null_literal] = ACTIONS(8686), + [sym_empty_literal] = ACTIONS(8686), + [sym_date_literal] = ACTIONS(8688), + [anon_sym_POUND] = ACTIONS(8686), + }, + [STATE(6118)] = { + [sym_identifier] = ACTIONS(8680), + [sym_newline] = ACTIONS(8682), + [anon_sym_COLON] = ACTIONS(8682), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8680), + [aux_sym_frm_property_statement_token1] = ACTIONS(8680), + [anon_sym_DOT] = ACTIONS(8680), + [anon_sym_BANG] = ACTIONS(8682), + [aux_sym__attribute_identifier_token1] = ACTIONS(8680), + [aux_sym_option_statement_token3] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8680), + [aux_sym_preprocessor_const_token1] = ACTIONS(8680), + [sym_static_modifier] = ACTIONS(8680), + [sym__dim_keyword] = ACTIONS(8680), + [sym__redim_keyword] = ACTIONS(8680), + [aux_sym_get_accessor_token1] = ACTIONS(8680), + [aux_sym_set_accessor_token1] = ACTIONS(8680), + [anon_sym_COMMA] = ACTIONS(8682), + [aux_sym_const_declaration_token1] = ACTIONS(8680), + [anon_sym_LPAREN] = ACTIONS(8682), + [aux_sym_as_type_clause_token2] = ACTIONS(8680), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8680), + [aux_sym_visibility_token1] = ACTIONS(8680), + [aux_sym_visibility_token2] = ACTIONS(8680), + [aux_sym_elseif_fragment_token1] = ACTIONS(8680), + [aux_sym_else_fragment_token1] = ACTIONS(8680), + [aux_sym_select_statement_token1] = ACTIONS(8680), + [aux_sym__for_header_token1] = ACTIONS(8680), + [aux_sym_do_statement_token1] = ACTIONS(8680), + [aux_sym_do_condition_token1] = ACTIONS(8680), + [aux_sym_while_statement_token1] = ACTIONS(8680), + [aux_sym_with_statement_token1] = ACTIONS(8680), + [aux_sym_exit_statement_token1] = ACTIONS(8680), + [sym_end_statement] = ACTIONS(8682), + [aux_sym_on_goto_statement_token1] = ACTIONS(8680), + [aux_sym_on_goto_statement_token2] = ACTIONS(8680), + [aux_sym_on_error_statement_token2] = ACTIONS(8680), + [sym__ambiguous_redim_statement] = ACTIONS(8682), + [aux_sym_erase_statement_token1] = ACTIONS(8680), + [aux_sym_open_statement_token1] = ACTIONS(8680), + [aux_sym_file_mode_token2] = ACTIONS(8680), + [aux_sym_file_access_token2] = ACTIONS(8680), + [aux_sym_file_lock_token2] = ACTIONS(8680), + [aux_sym_print_statement_token1] = ACTIONS(8680), + [anon_sym_PLUS] = ACTIONS(8682), + [anon_sym_DASH] = ACTIONS(8680), + [anon_sym_QMARK] = ACTIONS(8682), + [aux_sym_close_statement_token1] = ACTIONS(8680), + [aux_sym_put_statement_token1] = ACTIONS(8680), + [aux_sym_unlock_statement_token1] = ACTIONS(8680), + [aux_sym_seek_statement_token1] = ACTIONS(8680), + [sym_reset_statement] = ACTIONS(8680), + [aux_sym_raise_event_statement_token1] = ACTIONS(8680), + [sym_stop_statement] = ACTIONS(8680), + [sym_beep_statement] = ACTIONS(8680), + [aux_sym_unload_statement_token1] = ACTIONS(8680), + [aux_sym_def_type_statement_token1] = ACTIONS(8680), + [aux_sym_def_type_statement_token2] = ACTIONS(8680), + [aux_sym_def_type_statement_token3] = ACTIONS(8680), + [aux_sym_def_type_statement_token4] = ACTIONS(8680), + [aux_sym_def_type_statement_token5] = ACTIONS(8680), + [aux_sym_def_type_statement_token6] = ACTIONS(8680), + [aux_sym_def_type_statement_token7] = ACTIONS(8680), + [aux_sym_def_type_statement_token8] = ACTIONS(8680), + [aux_sym_def_type_statement_token9] = ACTIONS(8680), + [aux_sym_def_type_statement_token10] = ACTIONS(8680), + [aux_sym_def_type_statement_token11] = ACTIONS(8680), + [aux_sym_def_type_statement_token12] = ACTIONS(8680), + [aux_sym_def_type_statement_token13] = ACTIONS(8680), + [aux_sym_def_type_statement_token14] = ACTIONS(8680), + [aux_sym_call_statement_token1] = ACTIONS(8680), + [sym__ambiguous_call_statement] = ACTIONS(8680), + [aux_sym_addressof_expression_token1] = ACTIONS(8680), + [aux_sym_type_of_expression_token1] = ACTIONS(8680), + [aux_sym_unary_expression_token1] = ACTIONS(8680), + [sym_string_literal] = ACTIONS(8682), + [sym_number_literal] = ACTIONS(8682), + [aux_sym_boolean_literal_token1] = ACTIONS(8680), + [aux_sym_boolean_literal_token2] = ACTIONS(8680), + [sym_nothing_literal] = ACTIONS(8680), + [sym_null_literal] = ACTIONS(8680), + [sym_empty_literal] = ACTIONS(8680), + [sym_date_literal] = ACTIONS(8682), + [anon_sym_POUND] = ACTIONS(8680), + }, + [STATE(6119)] = { + [sym_identifier] = ACTIONS(8831), + [sym_newline] = ACTIONS(8833), + [anon_sym_COLON] = ACTIONS(8833), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8831), + [aux_sym_frm_property_statement_token1] = ACTIONS(8831), + [anon_sym_DOT] = ACTIONS(8831), + [anon_sym_BANG] = ACTIONS(8833), + [aux_sym__attribute_identifier_token1] = ACTIONS(8831), + [aux_sym_option_statement_token3] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8831), + [aux_sym_preprocessor_const_token1] = ACTIONS(8831), + [sym_static_modifier] = ACTIONS(8831), + [sym__dim_keyword] = ACTIONS(8831), + [sym__redim_keyword] = ACTIONS(8831), + [aux_sym_get_accessor_token1] = ACTIONS(8831), + [aux_sym_set_accessor_token1] = ACTIONS(8831), + [anon_sym_COMMA] = ACTIONS(8833), + [aux_sym_const_declaration_token1] = ACTIONS(8831), + [anon_sym_LPAREN] = ACTIONS(8833), + [aux_sym_as_type_clause_token2] = ACTIONS(8831), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8831), + [aux_sym_visibility_token1] = ACTIONS(8831), + [aux_sym_visibility_token2] = ACTIONS(8831), + [aux_sym_elseif_fragment_token1] = ACTIONS(8831), + [aux_sym_else_fragment_token1] = ACTIONS(8831), + [aux_sym_select_statement_token1] = ACTIONS(8831), + [aux_sym__for_header_token1] = ACTIONS(8831), + [aux_sym_do_statement_token1] = ACTIONS(8831), + [aux_sym_do_statement_token2] = ACTIONS(8831), + [aux_sym_do_condition_token1] = ACTIONS(8831), + [aux_sym_with_statement_token1] = ACTIONS(8831), + [aux_sym_exit_statement_token1] = ACTIONS(8831), + [sym_end_statement] = ACTIONS(8833), + [aux_sym_on_goto_statement_token1] = ACTIONS(8831), + [aux_sym_on_goto_statement_token2] = ACTIONS(8831), + [aux_sym_on_error_statement_token2] = ACTIONS(8831), + [sym__ambiguous_redim_statement] = ACTIONS(8833), + [aux_sym_erase_statement_token1] = ACTIONS(8831), + [aux_sym_open_statement_token1] = ACTIONS(8831), + [aux_sym_file_mode_token2] = ACTIONS(8831), + [aux_sym_file_access_token2] = ACTIONS(8831), + [aux_sym_file_lock_token2] = ACTIONS(8831), + [aux_sym_print_statement_token1] = ACTIONS(8831), + [anon_sym_PLUS] = ACTIONS(8833), + [anon_sym_DASH] = ACTIONS(8831), + [anon_sym_QMARK] = ACTIONS(8833), + [aux_sym_close_statement_token1] = ACTIONS(8831), + [aux_sym_put_statement_token1] = ACTIONS(8831), + [aux_sym_unlock_statement_token1] = ACTIONS(8831), + [aux_sym_seek_statement_token1] = ACTIONS(8831), + [sym_reset_statement] = ACTIONS(8831), + [aux_sym_raise_event_statement_token1] = ACTIONS(8831), + [sym_stop_statement] = ACTIONS(8831), + [sym_beep_statement] = ACTIONS(8831), + [aux_sym_unload_statement_token1] = ACTIONS(8831), + [aux_sym_def_type_statement_token1] = ACTIONS(8831), + [aux_sym_def_type_statement_token2] = ACTIONS(8831), + [aux_sym_def_type_statement_token3] = ACTIONS(8831), + [aux_sym_def_type_statement_token4] = ACTIONS(8831), + [aux_sym_def_type_statement_token5] = ACTIONS(8831), + [aux_sym_def_type_statement_token6] = ACTIONS(8831), + [aux_sym_def_type_statement_token7] = ACTIONS(8831), + [aux_sym_def_type_statement_token8] = ACTIONS(8831), + [aux_sym_def_type_statement_token9] = ACTIONS(8831), + [aux_sym_def_type_statement_token10] = ACTIONS(8831), + [aux_sym_def_type_statement_token11] = ACTIONS(8831), + [aux_sym_def_type_statement_token12] = ACTIONS(8831), + [aux_sym_def_type_statement_token13] = ACTIONS(8831), + [aux_sym_def_type_statement_token14] = ACTIONS(8831), + [aux_sym_call_statement_token1] = ACTIONS(8831), + [sym__ambiguous_call_statement] = ACTIONS(8831), + [aux_sym_addressof_expression_token1] = ACTIONS(8831), + [aux_sym_type_of_expression_token1] = ACTIONS(8831), + [aux_sym_unary_expression_token1] = ACTIONS(8831), + [sym_string_literal] = ACTIONS(8833), + [sym_number_literal] = ACTIONS(8833), + [aux_sym_boolean_literal_token1] = ACTIONS(8831), + [aux_sym_boolean_literal_token2] = ACTIONS(8831), + [sym_nothing_literal] = ACTIONS(8831), + [sym_null_literal] = ACTIONS(8831), + [sym_empty_literal] = ACTIONS(8831), + [sym_date_literal] = ACTIONS(8833), + [anon_sym_POUND] = ACTIONS(8831), + }, + [STATE(6120)] = { + [sym_identifier] = ACTIONS(5562), + [sym_newline] = ACTIONS(5558), + [anon_sym_COLON] = ACTIONS(5558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5562), + [aux_sym_frm_property_statement_token1] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(10615), + [anon_sym_BANG] = ACTIONS(10617), + [aux_sym__attribute_identifier_token1] = ACTIONS(5562), + [aux_sym_option_statement_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5562), + [aux_sym_preprocessor_const_token1] = ACTIONS(5562), + [sym_static_modifier] = ACTIONS(5562), + [sym__dim_keyword] = ACTIONS(5562), + [sym__redim_keyword] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5562), + [aux_sym_set_accessor_token1] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5558), + [aux_sym_as_type_clause_token2] = ACTIONS(5562), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5562), + [aux_sym_visibility_token1] = ACTIONS(5562), + [aux_sym_visibility_token2] = ACTIONS(5562), + [aux_sym_elseif_fragment_token1] = ACTIONS(5562), + [aux_sym_else_fragment_token1] = ACTIONS(5562), + [aux_sym_select_statement_token1] = ACTIONS(5562), + [aux_sym__for_header_token1] = ACTIONS(5562), + [aux_sym_do_statement_token1] = ACTIONS(5562), + [aux_sym_do_condition_token1] = ACTIONS(5562), + [aux_sym_with_statement_token1] = ACTIONS(5562), + [aux_sym_exit_statement_token1] = ACTIONS(5562), + [sym_end_statement] = ACTIONS(5558), + [aux_sym_on_goto_statement_token1] = ACTIONS(5562), + [aux_sym_on_goto_statement_token2] = ACTIONS(5562), + [aux_sym_on_error_statement_token2] = ACTIONS(5562), + [sym__ambiguous_redim_statement] = ACTIONS(5558), + [aux_sym_erase_statement_token1] = ACTIONS(5562), + [aux_sym_open_statement_token1] = ACTIONS(5562), + [aux_sym_file_mode_token2] = ACTIONS(5562), + [aux_sym_file_access_token2] = ACTIONS(5562), + [aux_sym_file_lock_token2] = ACTIONS(5562), + [aux_sym_print_statement_token1] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5558), + [aux_sym_close_statement_token1] = ACTIONS(5562), + [aux_sym_put_statement_token1] = ACTIONS(5562), + [aux_sym_unlock_statement_token1] = ACTIONS(5562), + [aux_sym_seek_statement_token1] = ACTIONS(5562), + [sym_reset_statement] = ACTIONS(5562), + [aux_sym_raise_event_statement_token1] = ACTIONS(5562), + [sym_stop_statement] = ACTIONS(5562), + [sym_beep_statement] = ACTIONS(5562), + [aux_sym_unload_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token2] = ACTIONS(5562), + [aux_sym_def_type_statement_token3] = ACTIONS(5562), + [aux_sym_def_type_statement_token4] = ACTIONS(5562), + [aux_sym_def_type_statement_token5] = ACTIONS(5562), + [aux_sym_def_type_statement_token6] = ACTIONS(5562), + [aux_sym_def_type_statement_token7] = ACTIONS(5562), + [aux_sym_def_type_statement_token8] = ACTIONS(5562), + [aux_sym_def_type_statement_token9] = ACTIONS(5562), + [aux_sym_def_type_statement_token10] = ACTIONS(5562), + [aux_sym_def_type_statement_token11] = ACTIONS(5562), + [aux_sym_def_type_statement_token12] = ACTIONS(5562), + [aux_sym_def_type_statement_token13] = ACTIONS(5562), + [aux_sym_def_type_statement_token14] = ACTIONS(5562), + [aux_sym_call_statement_token1] = ACTIONS(5562), + [sym__ambiguous_call_statement] = ACTIONS(5562), + [aux_sym_addressof_expression_token1] = ACTIONS(5562), + [aux_sym_type_of_expression_token1] = ACTIONS(5562), + [aux_sym_unary_expression_token1] = ACTIONS(5562), + [sym_string_literal] = ACTIONS(5558), + [sym_number_literal] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5562), + [aux_sym_boolean_literal_token2] = ACTIONS(5562), + [sym_nothing_literal] = ACTIONS(5562), + [sym_null_literal] = ACTIONS(5562), + [sym_empty_literal] = ACTIONS(5562), + [sym_date_literal] = ACTIONS(5558), + [anon_sym_POUND] = ACTIONS(5562), + }, + [STATE(6121)] = { + [sym_identifier] = ACTIONS(8624), + [sym_newline] = ACTIONS(8626), + [anon_sym_COLON] = ACTIONS(8626), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8624), + [aux_sym_frm_property_statement_token1] = ACTIONS(8624), + [anon_sym_DOT] = ACTIONS(8624), + [anon_sym_BANG] = ACTIONS(8626), + [aux_sym__attribute_identifier_token1] = ACTIONS(8624), + [aux_sym_option_statement_token3] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8624), + [aux_sym_preprocessor_const_token1] = ACTIONS(8624), + [sym_static_modifier] = ACTIONS(8624), + [sym__dim_keyword] = ACTIONS(8624), + [sym__redim_keyword] = ACTIONS(8624), + [aux_sym_get_accessor_token1] = ACTIONS(8624), + [aux_sym_set_accessor_token1] = ACTIONS(8624), + [aux_sym_const_declaration_token1] = ACTIONS(8624), + [anon_sym_LPAREN] = ACTIONS(8626), + [aux_sym_as_type_clause_token2] = ACTIONS(8624), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8624), + [aux_sym_visibility_token1] = ACTIONS(8624), + [aux_sym_visibility_token2] = ACTIONS(8624), + [aux_sym_elseif_fragment_token1] = ACTIONS(8624), + [aux_sym_else_fragment_token1] = ACTIONS(8624), + [aux_sym_select_statement_token1] = ACTIONS(8624), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8624), + [aux_sym__for_header_token1] = ACTIONS(8624), + [aux_sym_do_statement_token1] = ACTIONS(8624), + [aux_sym_do_condition_token1] = ACTIONS(8624), + [aux_sym_with_statement_token1] = ACTIONS(8624), + [aux_sym_exit_statement_token1] = ACTIONS(8624), + [sym_end_statement] = ACTIONS(8626), + [aux_sym_on_goto_statement_token1] = ACTIONS(8624), + [aux_sym_on_goto_statement_token2] = ACTIONS(8624), + [aux_sym_on_error_statement_token2] = ACTIONS(8624), + [sym__ambiguous_redim_statement] = ACTIONS(8626), + [aux_sym_erase_statement_token1] = ACTIONS(8624), + [aux_sym_open_statement_token1] = ACTIONS(8624), + [aux_sym_open_statement_token3] = ACTIONS(10988), + [aux_sym_file_mode_token2] = ACTIONS(8624), + [aux_sym_file_access_token2] = ACTIONS(8624), + [aux_sym_file_lock_token2] = ACTIONS(8624), + [aux_sym_print_statement_token1] = ACTIONS(8624), + [anon_sym_PLUS] = ACTIONS(8626), + [anon_sym_DASH] = ACTIONS(8624), + [anon_sym_QMARK] = ACTIONS(8626), + [aux_sym_close_statement_token1] = ACTIONS(8624), + [aux_sym_put_statement_token1] = ACTIONS(8624), + [aux_sym_unlock_statement_token1] = ACTIONS(8624), + [aux_sym_seek_statement_token1] = ACTIONS(8624), + [sym_reset_statement] = ACTIONS(8624), + [aux_sym_raise_event_statement_token1] = ACTIONS(8624), + [sym_stop_statement] = ACTIONS(8624), + [sym_beep_statement] = ACTIONS(8624), + [aux_sym_unload_statement_token1] = ACTIONS(8624), + [aux_sym_def_type_statement_token1] = ACTIONS(8624), + [aux_sym_def_type_statement_token2] = ACTIONS(8624), + [aux_sym_def_type_statement_token3] = ACTIONS(8624), + [aux_sym_def_type_statement_token4] = ACTIONS(8624), + [aux_sym_def_type_statement_token5] = ACTIONS(8624), + [aux_sym_def_type_statement_token6] = ACTIONS(8624), + [aux_sym_def_type_statement_token7] = ACTIONS(8624), + [aux_sym_def_type_statement_token8] = ACTIONS(8624), + [aux_sym_def_type_statement_token9] = ACTIONS(8624), + [aux_sym_def_type_statement_token10] = ACTIONS(8624), + [aux_sym_def_type_statement_token11] = ACTIONS(8624), + [aux_sym_def_type_statement_token12] = ACTIONS(8624), + [aux_sym_def_type_statement_token13] = ACTIONS(8624), + [aux_sym_def_type_statement_token14] = ACTIONS(8624), + [aux_sym_call_statement_token1] = ACTIONS(8624), + [sym__ambiguous_call_statement] = ACTIONS(8624), + [aux_sym_addressof_expression_token1] = ACTIONS(8624), + [aux_sym_type_of_expression_token1] = ACTIONS(8624), + [aux_sym_unary_expression_token1] = ACTIONS(8624), + [sym_string_literal] = ACTIONS(8626), + [sym_number_literal] = ACTIONS(8626), + [aux_sym_boolean_literal_token1] = ACTIONS(8624), + [aux_sym_boolean_literal_token2] = ACTIONS(8624), + [sym_nothing_literal] = ACTIONS(8624), + [sym_null_literal] = ACTIONS(8624), + [sym_empty_literal] = ACTIONS(8624), + [sym_date_literal] = ACTIONS(8626), + [anon_sym_POUND] = ACTIONS(8624), + }, + [STATE(6122)] = { + [sym_identifier] = ACTIONS(8749), + [sym_newline] = ACTIONS(8751), + [anon_sym_COLON] = ACTIONS(8753), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8749), + [aux_sym_frm_property_statement_token1] = ACTIONS(8749), + [anon_sym_DOT] = ACTIONS(8749), + [anon_sym_BANG] = ACTIONS(8751), + [aux_sym__attribute_identifier_token1] = ACTIONS(8749), + [aux_sym_option_statement_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8749), + [aux_sym_preprocessor_const_token1] = ACTIONS(8749), + [sym_static_modifier] = ACTIONS(8749), + [sym__dim_keyword] = ACTIONS(8749), + [sym__redim_keyword] = ACTIONS(8749), + [aux_sym_get_accessor_token1] = ACTIONS(8749), + [aux_sym_set_accessor_token1] = ACTIONS(8749), + [aux_sym_const_declaration_token1] = ACTIONS(8749), + [anon_sym_LPAREN] = ACTIONS(8751), + [aux_sym_as_type_clause_token2] = ACTIONS(8749), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8749), + [aux_sym_visibility_token1] = ACTIONS(8749), + [aux_sym_visibility_token2] = ACTIONS(8749), + [aux_sym_elseif_fragment_token1] = ACTIONS(8749), + [aux_sym_else_fragment_token1] = ACTIONS(8749), + [aux_sym_select_statement_token1] = ACTIONS(8749), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8749), + [aux_sym__for_header_token1] = ACTIONS(8749), + [aux_sym_do_statement_token1] = ACTIONS(8749), + [aux_sym_do_condition_token1] = ACTIONS(8749), + [aux_sym_while_statement_token1] = ACTIONS(8749), + [aux_sym_with_statement_token1] = ACTIONS(8749), + [aux_sym_exit_statement_token1] = ACTIONS(8749), + [sym_end_statement] = ACTIONS(8751), + [aux_sym_on_goto_statement_token1] = ACTIONS(8749), + [aux_sym_on_goto_statement_token2] = ACTIONS(8749), + [aux_sym_on_error_statement_token2] = ACTIONS(8749), + [sym__ambiguous_redim_statement] = ACTIONS(8751), + [aux_sym_erase_statement_token1] = ACTIONS(8749), + [aux_sym_open_statement_token1] = ACTIONS(8749), + [aux_sym_file_mode_token2] = ACTIONS(8749), + [aux_sym_file_access_token2] = ACTIONS(8749), + [aux_sym_file_lock_token2] = ACTIONS(8749), + [aux_sym_print_statement_token1] = ACTIONS(8749), + [anon_sym_PLUS] = ACTIONS(8751), + [anon_sym_DASH] = ACTIONS(8749), + [anon_sym_QMARK] = ACTIONS(8751), + [aux_sym_close_statement_token1] = ACTIONS(8749), + [aux_sym_put_statement_token1] = ACTIONS(8749), + [aux_sym_unlock_statement_token1] = ACTIONS(8749), + [aux_sym_seek_statement_token1] = ACTIONS(8749), + [sym_reset_statement] = ACTIONS(8749), + [aux_sym_raise_event_statement_token1] = ACTIONS(8749), + [sym_stop_statement] = ACTIONS(8749), + [sym_beep_statement] = ACTIONS(8749), + [aux_sym_unload_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token2] = ACTIONS(8749), + [aux_sym_def_type_statement_token3] = ACTIONS(8749), + [aux_sym_def_type_statement_token4] = ACTIONS(8749), + [aux_sym_def_type_statement_token5] = ACTIONS(8749), + [aux_sym_def_type_statement_token6] = ACTIONS(8749), + [aux_sym_def_type_statement_token7] = ACTIONS(8749), + [aux_sym_def_type_statement_token8] = ACTIONS(8749), + [aux_sym_def_type_statement_token9] = ACTIONS(8749), + [aux_sym_def_type_statement_token10] = ACTIONS(8749), + [aux_sym_def_type_statement_token11] = ACTIONS(8749), + [aux_sym_def_type_statement_token12] = ACTIONS(8749), + [aux_sym_def_type_statement_token13] = ACTIONS(8749), + [aux_sym_def_type_statement_token14] = ACTIONS(8749), + [aux_sym_call_statement_token1] = ACTIONS(8749), + [sym__ambiguous_call_statement] = ACTIONS(8749), + [aux_sym_addressof_expression_token1] = ACTIONS(8749), + [aux_sym_type_of_expression_token1] = ACTIONS(8749), + [aux_sym_unary_expression_token1] = ACTIONS(8749), + [sym_string_literal] = ACTIONS(8751), + [sym_number_literal] = ACTIONS(8753), + [aux_sym_boolean_literal_token1] = ACTIONS(8749), + [aux_sym_boolean_literal_token2] = ACTIONS(8749), + [sym_nothing_literal] = ACTIONS(8749), + [sym_null_literal] = ACTIONS(8749), + [sym_empty_literal] = ACTIONS(8749), + [sym_date_literal] = ACTIONS(8751), + [anon_sym_POUND] = ACTIONS(8749), + }, + [STATE(6123)] = { + [sym_identifier] = ACTIONS(8939), + [sym_newline] = ACTIONS(8941), + [anon_sym_COLON] = ACTIONS(8941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8939), + [aux_sym_frm_property_statement_token1] = ACTIONS(8939), + [anon_sym_DOT] = ACTIONS(8939), + [anon_sym_BANG] = ACTIONS(8941), + [aux_sym__attribute_identifier_token1] = ACTIONS(8939), + [aux_sym_option_statement_token3] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8939), + [aux_sym_preprocessor_const_token1] = ACTIONS(8939), + [sym_static_modifier] = ACTIONS(8939), + [sym__dim_keyword] = ACTIONS(8939), + [sym__redim_keyword] = ACTIONS(8939), + [aux_sym_get_accessor_token1] = ACTIONS(8939), + [aux_sym_set_accessor_token1] = ACTIONS(8939), + [anon_sym_COMMA] = ACTIONS(10990), + [aux_sym_const_declaration_token1] = ACTIONS(8939), + [anon_sym_LPAREN] = ACTIONS(8941), + [aux_sym_as_type_clause_token2] = ACTIONS(8939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8939), + [aux_sym_visibility_token1] = ACTIONS(8939), + [aux_sym_visibility_token2] = ACTIONS(8939), + [aux_sym_elseif_fragment_token1] = ACTIONS(8939), + [aux_sym_else_fragment_token1] = ACTIONS(8939), + [aux_sym_select_statement_token1] = ACTIONS(8939), + [aux_sym__for_header_token1] = ACTIONS(8939), + [aux_sym_do_statement_token1] = ACTIONS(8939), + [aux_sym_do_condition_token1] = ACTIONS(8939), + [aux_sym_with_statement_token1] = ACTIONS(8939), + [aux_sym_exit_statement_token1] = ACTIONS(8939), + [sym_end_statement] = ACTIONS(8941), + [aux_sym_on_goto_statement_token1] = ACTIONS(8939), + [aux_sym_on_goto_statement_token2] = ACTIONS(8939), + [aux_sym_on_error_statement_token2] = ACTIONS(8939), + [sym__ambiguous_redim_statement] = ACTIONS(8941), + [aux_sym_erase_statement_token1] = ACTIONS(8939), + [aux_sym_open_statement_token1] = ACTIONS(8939), + [aux_sym_file_mode_token2] = ACTIONS(8939), + [aux_sym_file_access_token2] = ACTIONS(8939), + [aux_sym_file_lock_token2] = ACTIONS(8939), + [aux_sym_print_statement_token1] = ACTIONS(8939), + [anon_sym_PLUS] = ACTIONS(8941), + [anon_sym_DASH] = ACTIONS(8939), + [anon_sym_QMARK] = ACTIONS(8941), + [aux_sym_close_statement_token1] = ACTIONS(8939), + [aux_sym_put_statement_token1] = ACTIONS(8939), + [aux_sym_unlock_statement_token1] = ACTIONS(8939), + [aux_sym_seek_statement_token1] = ACTIONS(8939), + [sym_reset_statement] = ACTIONS(8939), + [aux_sym_raise_event_statement_token1] = ACTIONS(8939), + [sym_stop_statement] = ACTIONS(8939), + [sym_beep_statement] = ACTIONS(8939), + [aux_sym_unload_statement_token1] = ACTIONS(8939), + [aux_sym_def_type_statement_token1] = ACTIONS(8939), + [aux_sym_def_type_statement_token2] = ACTIONS(8939), + [aux_sym_def_type_statement_token3] = ACTIONS(8939), + [aux_sym_def_type_statement_token4] = ACTIONS(8939), + [aux_sym_def_type_statement_token5] = ACTIONS(8939), + [aux_sym_def_type_statement_token6] = ACTIONS(8939), + [aux_sym_def_type_statement_token7] = ACTIONS(8939), + [aux_sym_def_type_statement_token8] = ACTIONS(8939), + [aux_sym_def_type_statement_token9] = ACTIONS(8939), + [aux_sym_def_type_statement_token10] = ACTIONS(8939), + [aux_sym_def_type_statement_token11] = ACTIONS(8939), + [aux_sym_def_type_statement_token12] = ACTIONS(8939), + [aux_sym_def_type_statement_token13] = ACTIONS(8939), + [aux_sym_def_type_statement_token14] = ACTIONS(8939), + [aux_sym_call_statement_token1] = ACTIONS(8939), + [sym__ambiguous_call_statement] = ACTIONS(8939), + [aux_sym_addressof_expression_token1] = ACTIONS(8939), + [aux_sym_type_of_expression_token1] = ACTIONS(8939), + [aux_sym_unary_expression_token1] = ACTIONS(8939), + [sym_string_literal] = ACTIONS(8941), + [sym_number_literal] = ACTIONS(8941), + [aux_sym_boolean_literal_token1] = ACTIONS(8939), + [aux_sym_boolean_literal_token2] = ACTIONS(8939), + [sym_nothing_literal] = ACTIONS(8939), + [sym_null_literal] = ACTIONS(8939), + [sym_empty_literal] = ACTIONS(8939), + [sym_date_literal] = ACTIONS(8941), + [anon_sym_POUND] = ACTIONS(8939), + }, + [STATE(6124)] = { + [sym_identifier] = ACTIONS(8196), + [sym_newline] = ACTIONS(8198), + [anon_sym_COLON] = ACTIONS(8198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8196), + [aux_sym_frm_property_statement_token1] = ACTIONS(8196), + [anon_sym_DOT] = ACTIONS(8196), + [anon_sym_BANG] = ACTIONS(8198), + [aux_sym__attribute_identifier_token1] = ACTIONS(8196), + [aux_sym_option_statement_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8196), + [aux_sym_preprocessor_const_token1] = ACTIONS(8196), + [sym_static_modifier] = ACTIONS(8196), + [sym__dim_keyword] = ACTIONS(8196), + [sym__redim_keyword] = ACTIONS(8196), + [aux_sym_get_accessor_token1] = ACTIONS(8196), + [aux_sym_set_accessor_token1] = ACTIONS(8196), + [anon_sym_COMMA] = ACTIONS(8198), + [aux_sym_const_declaration_token1] = ACTIONS(8196), + [anon_sym_LPAREN] = ACTIONS(8198), + [aux_sym_as_type_clause_token2] = ACTIONS(8196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8196), + [aux_sym_visibility_token1] = ACTIONS(8196), + [aux_sym_visibility_token2] = ACTIONS(8196), + [aux_sym_elseif_fragment_token1] = ACTIONS(8196), + [aux_sym_else_fragment_token1] = ACTIONS(8196), + [aux_sym_select_statement_token1] = ACTIONS(8196), + [aux_sym__for_header_token1] = ACTIONS(8196), + [aux_sym_do_statement_token1] = ACTIONS(8196), + [aux_sym_do_condition_token1] = ACTIONS(8196), + [aux_sym_while_statement_token1] = ACTIONS(8196), + [aux_sym_with_statement_token1] = ACTIONS(8196), + [aux_sym_exit_statement_token1] = ACTIONS(8196), + [sym_end_statement] = ACTIONS(8198), + [aux_sym_on_goto_statement_token1] = ACTIONS(8196), + [aux_sym_on_goto_statement_token2] = ACTIONS(8196), + [aux_sym_on_error_statement_token2] = ACTIONS(8196), + [sym__ambiguous_redim_statement] = ACTIONS(8198), + [aux_sym_erase_statement_token1] = ACTIONS(8196), + [aux_sym_open_statement_token1] = ACTIONS(8196), + [aux_sym_file_mode_token2] = ACTIONS(8196), + [aux_sym_file_access_token2] = ACTIONS(8196), + [aux_sym_file_lock_token2] = ACTIONS(8196), + [aux_sym_print_statement_token1] = ACTIONS(8196), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(8196), + [anon_sym_QMARK] = ACTIONS(8198), + [aux_sym_close_statement_token1] = ACTIONS(8196), + [aux_sym_put_statement_token1] = ACTIONS(8196), + [aux_sym_unlock_statement_token1] = ACTIONS(8196), + [aux_sym_seek_statement_token1] = ACTIONS(8196), + [sym_reset_statement] = ACTIONS(8196), + [aux_sym_raise_event_statement_token1] = ACTIONS(8196), + [sym_stop_statement] = ACTIONS(8196), + [sym_beep_statement] = ACTIONS(8196), + [aux_sym_unload_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token2] = ACTIONS(8196), + [aux_sym_def_type_statement_token3] = ACTIONS(8196), + [aux_sym_def_type_statement_token4] = ACTIONS(8196), + [aux_sym_def_type_statement_token5] = ACTIONS(8196), + [aux_sym_def_type_statement_token6] = ACTIONS(8196), + [aux_sym_def_type_statement_token7] = ACTIONS(8196), + [aux_sym_def_type_statement_token8] = ACTIONS(8196), + [aux_sym_def_type_statement_token9] = ACTIONS(8196), + [aux_sym_def_type_statement_token10] = ACTIONS(8196), + [aux_sym_def_type_statement_token11] = ACTIONS(8196), + [aux_sym_def_type_statement_token12] = ACTIONS(8196), + [aux_sym_def_type_statement_token13] = ACTIONS(8196), + [aux_sym_def_type_statement_token14] = ACTIONS(8196), + [aux_sym_call_statement_token1] = ACTIONS(8196), + [sym__ambiguous_call_statement] = ACTIONS(8196), + [aux_sym_addressof_expression_token1] = ACTIONS(8196), + [aux_sym_type_of_expression_token1] = ACTIONS(8196), + [aux_sym_unary_expression_token1] = ACTIONS(8196), + [sym_string_literal] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8198), + [aux_sym_boolean_literal_token1] = ACTIONS(8196), + [aux_sym_boolean_literal_token2] = ACTIONS(8196), + [sym_nothing_literal] = ACTIONS(8196), + [sym_null_literal] = ACTIONS(8196), + [sym_empty_literal] = ACTIONS(8196), + [sym_date_literal] = ACTIONS(8198), + [anon_sym_POUND] = ACTIONS(8196), + }, + [STATE(6125)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(5963), + [sym_identifier] = ACTIONS(8733), + [sym_newline] = ACTIONS(8735), + [anon_sym_COLON] = ACTIONS(10903), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8733), + [aux_sym_frm_property_statement_token1] = ACTIONS(8733), + [anon_sym_DOT] = ACTIONS(8733), + [anon_sym_BANG] = ACTIONS(8735), + [aux_sym__attribute_identifier_token1] = ACTIONS(8733), + [aux_sym_option_statement_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8733), + [aux_sym_preprocessor_const_token1] = ACTIONS(8733), + [sym_static_modifier] = ACTIONS(8733), + [sym__dim_keyword] = ACTIONS(8733), + [sym__redim_keyword] = ACTIONS(8733), + [aux_sym_get_accessor_token1] = ACTIONS(8733), + [aux_sym_set_accessor_token1] = ACTIONS(8733), + [aux_sym_const_declaration_token1] = ACTIONS(8733), + [anon_sym_LPAREN] = ACTIONS(8735), + [aux_sym_as_type_clause_token2] = ACTIONS(8733), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8733), + [aux_sym_visibility_token1] = ACTIONS(8733), + [aux_sym_visibility_token2] = ACTIONS(8733), + [aux_sym_elseif_fragment_token1] = ACTIONS(8733), + [aux_sym_else_fragment_token1] = ACTIONS(10992), + [aux_sym_select_statement_token1] = ACTIONS(8733), + [aux_sym__for_header_token1] = ACTIONS(8733), + [aux_sym_do_statement_token1] = ACTIONS(8733), + [aux_sym_do_statement_token2] = ACTIONS(8733), + [aux_sym_do_condition_token1] = ACTIONS(8733), + [aux_sym_with_statement_token1] = ACTIONS(8733), + [aux_sym_exit_statement_token1] = ACTIONS(8733), + [sym_end_statement] = ACTIONS(8735), + [aux_sym_on_goto_statement_token1] = ACTIONS(8733), + [aux_sym_on_goto_statement_token2] = ACTIONS(8733), + [aux_sym_on_error_statement_token2] = ACTIONS(8733), + [sym__ambiguous_redim_statement] = ACTIONS(8735), + [aux_sym_erase_statement_token1] = ACTIONS(8733), + [aux_sym_open_statement_token1] = ACTIONS(8733), + [aux_sym_file_mode_token2] = ACTIONS(8733), + [aux_sym_file_access_token2] = ACTIONS(8733), + [aux_sym_file_lock_token2] = ACTIONS(8733), + [aux_sym_print_statement_token1] = ACTIONS(8733), + [anon_sym_PLUS] = ACTIONS(8735), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_QMARK] = ACTIONS(8735), + [aux_sym_close_statement_token1] = ACTIONS(8733), + [aux_sym_put_statement_token1] = ACTIONS(8733), + [aux_sym_unlock_statement_token1] = ACTIONS(8733), + [aux_sym_seek_statement_token1] = ACTIONS(8733), + [sym_reset_statement] = ACTIONS(8733), + [aux_sym_raise_event_statement_token1] = ACTIONS(8733), + [sym_stop_statement] = ACTIONS(8733), + [sym_beep_statement] = ACTIONS(8733), + [aux_sym_unload_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token2] = ACTIONS(8733), + [aux_sym_def_type_statement_token3] = ACTIONS(8733), + [aux_sym_def_type_statement_token4] = ACTIONS(8733), + [aux_sym_def_type_statement_token5] = ACTIONS(8733), + [aux_sym_def_type_statement_token6] = ACTIONS(8733), + [aux_sym_def_type_statement_token7] = ACTIONS(8733), + [aux_sym_def_type_statement_token8] = ACTIONS(8733), + [aux_sym_def_type_statement_token9] = ACTIONS(8733), + [aux_sym_def_type_statement_token10] = ACTIONS(8733), + [aux_sym_def_type_statement_token11] = ACTIONS(8733), + [aux_sym_def_type_statement_token12] = ACTIONS(8733), + [aux_sym_def_type_statement_token13] = ACTIONS(8733), + [aux_sym_def_type_statement_token14] = ACTIONS(8733), + [aux_sym_call_statement_token1] = ACTIONS(8733), + [sym__ambiguous_call_statement] = ACTIONS(8733), + [aux_sym_addressof_expression_token1] = ACTIONS(8733), + [aux_sym_type_of_expression_token1] = ACTIONS(8733), + [aux_sym_unary_expression_token1] = ACTIONS(8733), + [sym_string_literal] = ACTIONS(8735), + [sym_number_literal] = ACTIONS(8735), + [aux_sym_boolean_literal_token1] = ACTIONS(8733), + [aux_sym_boolean_literal_token2] = ACTIONS(8733), + [sym_nothing_literal] = ACTIONS(8733), + [sym_null_literal] = ACTIONS(8733), + [sym_empty_literal] = ACTIONS(8733), + [sym_date_literal] = ACTIONS(8735), + [anon_sym_POUND] = ACTIONS(8733), + }, + [STATE(6126)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__multiline_for_tail_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(6127)] = { + [sym_argument_list] = STATE(6671), + [sym_identifier] = ACTIONS(7836), + [sym_newline] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(4034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7836), + [aux_sym_frm_property_statement_token1] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(10994), + [anon_sym_BANG] = ACTIONS(10996), + [aux_sym__attribute_identifier_token1] = ACTIONS(7836), + [aux_sym_option_statement_token3] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7836), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7836), + [aux_sym_preprocessor_const_token1] = ACTIONS(7836), + [sym_static_modifier] = ACTIONS(7836), + [sym__dim_keyword] = ACTIONS(7836), + [sym__redim_keyword] = ACTIONS(7836), + [aux_sym_get_accessor_token1] = ACTIONS(7836), + [aux_sym_set_accessor_token1] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(4034), + [aux_sym_const_declaration_token1] = ACTIONS(7836), + [anon_sym_LPAREN] = ACTIONS(10897), + [aux_sym_as_type_clause_token2] = ACTIONS(7836), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7836), + [aux_sym_visibility_token1] = ACTIONS(7836), + [aux_sym_visibility_token2] = ACTIONS(7836), + [aux_sym_elseif_fragment_token1] = ACTIONS(7836), + [aux_sym_else_fragment_token1] = ACTIONS(7836), + [aux_sym_select_statement_token1] = ACTIONS(7836), + [aux_sym__for_header_token1] = ACTIONS(7836), + [aux_sym_do_statement_token1] = ACTIONS(7836), + [aux_sym_do_condition_token1] = ACTIONS(7836), + [aux_sym_with_statement_token1] = ACTIONS(7836), + [aux_sym_exit_statement_token1] = ACTIONS(7836), + [sym_end_statement] = ACTIONS(4034), + [aux_sym_on_goto_statement_token1] = ACTIONS(7836), + [aux_sym_on_goto_statement_token2] = ACTIONS(7836), + [aux_sym_on_error_statement_token2] = ACTIONS(7836), + [sym__ambiguous_redim_statement] = ACTIONS(4034), + [aux_sym_erase_statement_token1] = ACTIONS(7836), + [aux_sym_open_statement_token1] = ACTIONS(7836), + [aux_sym_file_mode_token2] = ACTIONS(7836), + [aux_sym_file_access_token2] = ACTIONS(7836), + [aux_sym_file_lock_token2] = ACTIONS(7836), + [aux_sym_print_statement_token1] = ACTIONS(7836), + [anon_sym_PLUS] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(7836), + [anon_sym_QMARK] = ACTIONS(4034), + [aux_sym_close_statement_token1] = ACTIONS(7836), + [aux_sym_put_statement_token1] = ACTIONS(7836), + [aux_sym_unlock_statement_token1] = ACTIONS(7836), + [aux_sym_seek_statement_token1] = ACTIONS(7836), + [sym_reset_statement] = ACTIONS(7836), + [aux_sym_raise_event_statement_token1] = ACTIONS(7836), + [sym_stop_statement] = ACTIONS(7836), + [sym_beep_statement] = ACTIONS(7836), + [aux_sym_unload_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token1] = ACTIONS(7836), + [aux_sym_def_type_statement_token2] = ACTIONS(7836), + [aux_sym_def_type_statement_token3] = ACTIONS(7836), + [aux_sym_def_type_statement_token4] = ACTIONS(7836), + [aux_sym_def_type_statement_token5] = ACTIONS(7836), + [aux_sym_def_type_statement_token6] = ACTIONS(7836), + [aux_sym_def_type_statement_token7] = ACTIONS(7836), + [aux_sym_def_type_statement_token8] = ACTIONS(7836), + [aux_sym_def_type_statement_token9] = ACTIONS(7836), + [aux_sym_def_type_statement_token10] = ACTIONS(7836), + [aux_sym_def_type_statement_token11] = ACTIONS(7836), + [aux_sym_def_type_statement_token12] = ACTIONS(7836), + [aux_sym_def_type_statement_token13] = ACTIONS(7836), + [aux_sym_def_type_statement_token14] = ACTIONS(7836), + [aux_sym_call_statement_token1] = ACTIONS(7836), + [sym__ambiguous_call_statement] = ACTIONS(7836), + [aux_sym_addressof_expression_token1] = ACTIONS(7836), + [aux_sym_type_of_expression_token1] = ACTIONS(7836), + [aux_sym_unary_expression_token1] = ACTIONS(7836), + [sym_string_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4034), + [aux_sym_boolean_literal_token1] = ACTIONS(7836), + [aux_sym_boolean_literal_token2] = ACTIONS(7836), + [sym_nothing_literal] = ACTIONS(7836), + [sym_null_literal] = ACTIONS(7836), + [sym_empty_literal] = ACTIONS(7836), + [sym_date_literal] = ACTIONS(4034), + [anon_sym_POUND] = ACTIONS(7836), + }, + [STATE(6128)] = { + [sym_identifier] = ACTIONS(8081), + [sym_newline] = ACTIONS(8083), + [anon_sym_COLON] = ACTIONS(8083), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8081), + [aux_sym_frm_property_statement_token1] = ACTIONS(8081), + [anon_sym_EQ] = ACTIONS(8083), + [anon_sym_DOT] = ACTIONS(8081), + [anon_sym_BANG] = ACTIONS(8083), + [aux_sym__attribute_identifier_token1] = ACTIONS(8081), + [aux_sym_option_statement_token3] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8081), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8081), + [aux_sym_preprocessor_const_token1] = ACTIONS(8081), + [sym_static_modifier] = ACTIONS(8081), + [sym__dim_keyword] = ACTIONS(8081), + [sym__redim_keyword] = ACTIONS(8081), + [aux_sym_get_accessor_token1] = ACTIONS(8081), + [aux_sym_set_accessor_token1] = ACTIONS(8081), + [anon_sym_COMMA] = ACTIONS(8083), + [aux_sym_const_declaration_token1] = ACTIONS(8081), + [anon_sym_LPAREN] = ACTIONS(8083), + [aux_sym_as_type_clause_token2] = ACTIONS(8081), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8081), + [aux_sym_visibility_token1] = ACTIONS(8081), + [aux_sym_visibility_token2] = ACTIONS(8081), + [aux_sym_elseif_fragment_token1] = ACTIONS(8081), + [aux_sym_else_fragment_token1] = ACTIONS(8081), + [aux_sym_select_statement_token1] = ACTIONS(8081), + [aux_sym__for_header_token1] = ACTIONS(8081), + [aux_sym_do_statement_token1] = ACTIONS(8081), + [aux_sym_do_condition_token1] = ACTIONS(8081), + [aux_sym_with_statement_token1] = ACTIONS(8081), + [aux_sym_exit_statement_token1] = ACTIONS(8081), + [sym_end_statement] = ACTIONS(8083), + [aux_sym_on_goto_statement_token1] = ACTIONS(8081), + [aux_sym_on_goto_statement_token2] = ACTIONS(8081), + [aux_sym_on_error_statement_token2] = ACTIONS(8081), + [sym__ambiguous_redim_statement] = ACTIONS(8083), + [aux_sym_erase_statement_token1] = ACTIONS(8081), + [aux_sym_open_statement_token1] = ACTIONS(8081), + [aux_sym_file_mode_token2] = ACTIONS(8081), + [aux_sym_file_access_token2] = ACTIONS(8081), + [aux_sym_file_lock_token2] = ACTIONS(8081), + [aux_sym_print_statement_token1] = ACTIONS(8081), + [anon_sym_PLUS] = ACTIONS(8083), + [anon_sym_DASH] = ACTIONS(8081), + [anon_sym_QMARK] = ACTIONS(8083), + [aux_sym_close_statement_token1] = ACTIONS(8081), + [aux_sym_put_statement_token1] = ACTIONS(8081), + [aux_sym_unlock_statement_token1] = ACTIONS(8081), + [aux_sym_seek_statement_token1] = ACTIONS(8081), + [sym_reset_statement] = ACTIONS(8081), + [aux_sym_raise_event_statement_token1] = ACTIONS(8081), + [sym_stop_statement] = ACTIONS(8081), + [sym_beep_statement] = ACTIONS(8081), + [aux_sym_unload_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token1] = ACTIONS(8081), + [aux_sym_def_type_statement_token2] = ACTIONS(8081), + [aux_sym_def_type_statement_token3] = ACTIONS(8081), + [aux_sym_def_type_statement_token4] = ACTIONS(8081), + [aux_sym_def_type_statement_token5] = ACTIONS(8081), + [aux_sym_def_type_statement_token6] = ACTIONS(8081), + [aux_sym_def_type_statement_token7] = ACTIONS(8081), + [aux_sym_def_type_statement_token8] = ACTIONS(8081), + [aux_sym_def_type_statement_token9] = ACTIONS(8081), + [aux_sym_def_type_statement_token10] = ACTIONS(8081), + [aux_sym_def_type_statement_token11] = ACTIONS(8081), + [aux_sym_def_type_statement_token12] = ACTIONS(8081), + [aux_sym_def_type_statement_token13] = ACTIONS(8081), + [aux_sym_def_type_statement_token14] = ACTIONS(8081), + [aux_sym_call_statement_token1] = ACTIONS(8081), + [sym__ambiguous_call_statement] = ACTIONS(8081), + [aux_sym_addressof_expression_token1] = ACTIONS(8081), + [aux_sym_type_of_expression_token1] = ACTIONS(8081), + [aux_sym_unary_expression_token1] = ACTIONS(8081), + [sym_string_literal] = ACTIONS(8083), + [sym_number_literal] = ACTIONS(8083), + [aux_sym_boolean_literal_token1] = ACTIONS(8081), + [aux_sym_boolean_literal_token2] = ACTIONS(8081), + [sym_nothing_literal] = ACTIONS(8081), + [sym_null_literal] = ACTIONS(8081), + [sym_empty_literal] = ACTIONS(8081), + [sym_date_literal] = ACTIONS(8083), + [anon_sym_POUND] = ACTIONS(8081), + }, + [STATE(6129)] = { + [aux_sym_variable_declaration_repeat1] = STATE(6210), + [sym_identifier] = ACTIONS(8158), + [sym_newline] = ACTIONS(8160), + [anon_sym_COLON] = ACTIONS(8160), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8158), + [aux_sym_frm_property_statement_token1] = ACTIONS(8158), + [anon_sym_DOT] = ACTIONS(8158), + [anon_sym_BANG] = ACTIONS(8160), + [aux_sym__attribute_identifier_token1] = ACTIONS(8158), + [aux_sym_option_statement_token3] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8158), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8158), + [aux_sym_preprocessor_const_token1] = ACTIONS(8158), + [sym_static_modifier] = ACTIONS(8158), + [sym__dim_keyword] = ACTIONS(8158), + [sym__redim_keyword] = ACTIONS(8158), + [aux_sym_get_accessor_token1] = ACTIONS(8158), + [aux_sym_set_accessor_token1] = ACTIONS(8158), + [anon_sym_COMMA] = ACTIONS(10844), + [aux_sym_const_declaration_token1] = ACTIONS(8158), + [anon_sym_LPAREN] = ACTIONS(8160), + [aux_sym_as_type_clause_token2] = ACTIONS(8158), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8158), + [aux_sym_visibility_token1] = ACTIONS(8158), + [aux_sym_visibility_token2] = ACTIONS(8158), + [aux_sym_elseif_fragment_token1] = ACTIONS(8158), + [aux_sym_else_fragment_token1] = ACTIONS(8158), + [aux_sym_select_statement_token1] = ACTIONS(8158), + [aux_sym__for_header_token1] = ACTIONS(8158), + [aux_sym_do_statement_token1] = ACTIONS(8158), + [aux_sym_do_condition_token1] = ACTIONS(8158), + [aux_sym_with_statement_token1] = ACTIONS(8158), + [aux_sym_exit_statement_token1] = ACTIONS(8158), + [sym_end_statement] = ACTIONS(8160), + [aux_sym_on_goto_statement_token1] = ACTIONS(8158), + [aux_sym_on_goto_statement_token2] = ACTIONS(8158), + [aux_sym_on_error_statement_token2] = ACTIONS(8158), + [sym__ambiguous_redim_statement] = ACTIONS(8160), + [aux_sym_erase_statement_token1] = ACTIONS(8158), + [aux_sym_open_statement_token1] = ACTIONS(8158), + [aux_sym_file_mode_token2] = ACTIONS(8158), + [aux_sym_file_access_token2] = ACTIONS(8158), + [aux_sym_file_lock_token2] = ACTIONS(8158), + [aux_sym_print_statement_token1] = ACTIONS(8158), + [anon_sym_PLUS] = ACTIONS(8160), + [anon_sym_DASH] = ACTIONS(8158), + [anon_sym_QMARK] = ACTIONS(8160), + [aux_sym_close_statement_token1] = ACTIONS(8158), + [aux_sym_put_statement_token1] = ACTIONS(8158), + [aux_sym_unlock_statement_token1] = ACTIONS(8158), + [aux_sym_seek_statement_token1] = ACTIONS(8158), + [sym_reset_statement] = ACTIONS(8158), + [aux_sym_raise_event_statement_token1] = ACTIONS(8158), + [sym_stop_statement] = ACTIONS(8158), + [sym_beep_statement] = ACTIONS(8158), + [aux_sym_unload_statement_token1] = ACTIONS(8158), + [aux_sym_def_type_statement_token1] = ACTIONS(8158), + [aux_sym_def_type_statement_token2] = ACTIONS(8158), + [aux_sym_def_type_statement_token3] = ACTIONS(8158), + [aux_sym_def_type_statement_token4] = ACTIONS(8158), + [aux_sym_def_type_statement_token5] = ACTIONS(8158), + [aux_sym_def_type_statement_token6] = ACTIONS(8158), + [aux_sym_def_type_statement_token7] = ACTIONS(8158), + [aux_sym_def_type_statement_token8] = ACTIONS(8158), + [aux_sym_def_type_statement_token9] = ACTIONS(8158), + [aux_sym_def_type_statement_token10] = ACTIONS(8158), + [aux_sym_def_type_statement_token11] = ACTIONS(8158), + [aux_sym_def_type_statement_token12] = ACTIONS(8158), + [aux_sym_def_type_statement_token13] = ACTIONS(8158), + [aux_sym_def_type_statement_token14] = ACTIONS(8158), + [aux_sym_call_statement_token1] = ACTIONS(8158), + [sym__ambiguous_call_statement] = ACTIONS(8158), + [aux_sym_addressof_expression_token1] = ACTIONS(8158), + [aux_sym_type_of_expression_token1] = ACTIONS(8158), + [aux_sym_unary_expression_token1] = ACTIONS(8158), + [sym_string_literal] = ACTIONS(8160), + [sym_number_literal] = ACTIONS(8160), + [aux_sym_boolean_literal_token1] = ACTIONS(8158), + [aux_sym_boolean_literal_token2] = ACTIONS(8158), + [sym_nothing_literal] = ACTIONS(8158), + [sym_null_literal] = ACTIONS(8158), + [sym_empty_literal] = ACTIONS(8158), + [sym_date_literal] = ACTIONS(8160), + [anon_sym_POUND] = ACTIONS(8158), + }, + [STATE(6130)] = { + [sym_identifier] = ACTIONS(8680), + [sym_newline] = ACTIONS(8682), + [anon_sym_COLON] = ACTIONS(8682), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8680), + [aux_sym_frm_property_statement_token1] = ACTIONS(8680), + [anon_sym_DOT] = ACTIONS(8680), + [anon_sym_BANG] = ACTIONS(8682), + [aux_sym__attribute_identifier_token1] = ACTIONS(8680), + [aux_sym_option_statement_token3] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8680), + [aux_sym_preprocessor_const_token1] = ACTIONS(8680), + [sym_static_modifier] = ACTIONS(8680), + [sym__dim_keyword] = ACTIONS(8680), + [sym__redim_keyword] = ACTIONS(8680), + [aux_sym_get_accessor_token1] = ACTIONS(8680), + [aux_sym_set_accessor_token1] = ACTIONS(8680), + [anon_sym_COMMA] = ACTIONS(8682), + [aux_sym_const_declaration_token1] = ACTIONS(8680), + [anon_sym_LPAREN] = ACTIONS(8682), + [aux_sym_as_type_clause_token2] = ACTIONS(8680), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8680), + [aux_sym_visibility_token1] = ACTIONS(8680), + [aux_sym_visibility_token2] = ACTIONS(8680), + [aux_sym_elseif_fragment_token1] = ACTIONS(8680), + [aux_sym_else_fragment_token1] = ACTIONS(8680), + [aux_sym_select_statement_token1] = ACTIONS(8680), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8680), + [aux_sym__for_header_token1] = ACTIONS(8680), + [aux_sym_do_statement_token1] = ACTIONS(8680), + [aux_sym_do_condition_token1] = ACTIONS(8680), + [aux_sym_with_statement_token1] = ACTIONS(8680), + [aux_sym_exit_statement_token1] = ACTIONS(8680), + [sym_end_statement] = ACTIONS(8682), + [aux_sym_on_goto_statement_token1] = ACTIONS(8680), + [aux_sym_on_goto_statement_token2] = ACTIONS(8680), + [aux_sym_on_error_statement_token2] = ACTIONS(8680), + [sym__ambiguous_redim_statement] = ACTIONS(8682), + [aux_sym_erase_statement_token1] = ACTIONS(8680), + [aux_sym_open_statement_token1] = ACTIONS(8680), + [aux_sym_file_mode_token2] = ACTIONS(8680), + [aux_sym_file_access_token2] = ACTIONS(8680), + [aux_sym_file_lock_token2] = ACTIONS(8680), + [aux_sym_print_statement_token1] = ACTIONS(8680), + [anon_sym_PLUS] = ACTIONS(8682), + [anon_sym_DASH] = ACTIONS(8680), + [anon_sym_QMARK] = ACTIONS(8682), + [aux_sym_close_statement_token1] = ACTIONS(8680), + [aux_sym_put_statement_token1] = ACTIONS(8680), + [aux_sym_unlock_statement_token1] = ACTIONS(8680), + [aux_sym_seek_statement_token1] = ACTIONS(8680), + [sym_reset_statement] = ACTIONS(8680), + [aux_sym_raise_event_statement_token1] = ACTIONS(8680), + [sym_stop_statement] = ACTIONS(8680), + [sym_beep_statement] = ACTIONS(8680), + [aux_sym_unload_statement_token1] = ACTIONS(8680), + [aux_sym_def_type_statement_token1] = ACTIONS(8680), + [aux_sym_def_type_statement_token2] = ACTIONS(8680), + [aux_sym_def_type_statement_token3] = ACTIONS(8680), + [aux_sym_def_type_statement_token4] = ACTIONS(8680), + [aux_sym_def_type_statement_token5] = ACTIONS(8680), + [aux_sym_def_type_statement_token6] = ACTIONS(8680), + [aux_sym_def_type_statement_token7] = ACTIONS(8680), + [aux_sym_def_type_statement_token8] = ACTIONS(8680), + [aux_sym_def_type_statement_token9] = ACTIONS(8680), + [aux_sym_def_type_statement_token10] = ACTIONS(8680), + [aux_sym_def_type_statement_token11] = ACTIONS(8680), + [aux_sym_def_type_statement_token12] = ACTIONS(8680), + [aux_sym_def_type_statement_token13] = ACTIONS(8680), + [aux_sym_def_type_statement_token14] = ACTIONS(8680), + [aux_sym_call_statement_token1] = ACTIONS(8680), + [sym__ambiguous_call_statement] = ACTIONS(8680), + [aux_sym_addressof_expression_token1] = ACTIONS(8680), + [aux_sym_type_of_expression_token1] = ACTIONS(8680), + [aux_sym_unary_expression_token1] = ACTIONS(8680), + [sym_string_literal] = ACTIONS(8682), + [sym_number_literal] = ACTIONS(8682), + [aux_sym_boolean_literal_token1] = ACTIONS(8680), + [aux_sym_boolean_literal_token2] = ACTIONS(8680), + [sym_nothing_literal] = ACTIONS(8680), + [sym_null_literal] = ACTIONS(8680), + [sym_empty_literal] = ACTIONS(8680), + [sym_date_literal] = ACTIONS(8682), + [anon_sym_POUND] = ACTIONS(8680), + }, + [STATE(6131)] = { + [sym_identifier] = ACTIONS(8780), + [sym_newline] = ACTIONS(8782), + [anon_sym_COLON] = ACTIONS(8782), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8780), + [aux_sym_frm_property_statement_token1] = ACTIONS(8780), + [anon_sym_DOT] = ACTIONS(8780), + [anon_sym_BANG] = ACTIONS(8782), + [aux_sym__attribute_identifier_token1] = ACTIONS(8780), + [aux_sym_option_statement_token3] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8780), + [aux_sym_preprocessor_const_token1] = ACTIONS(8780), + [sym_static_modifier] = ACTIONS(8780), + [sym__dim_keyword] = ACTIONS(8780), + [sym__redim_keyword] = ACTIONS(8780), + [aux_sym_get_accessor_token1] = ACTIONS(8780), + [aux_sym_set_accessor_token1] = ACTIONS(8780), + [anon_sym_COMMA] = ACTIONS(10998), + [aux_sym_const_declaration_token1] = ACTIONS(8780), + [anon_sym_LPAREN] = ACTIONS(8782), + [aux_sym_as_type_clause_token2] = ACTIONS(8780), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8780), + [aux_sym_visibility_token1] = ACTIONS(8780), + [aux_sym_visibility_token2] = ACTIONS(8780), + [aux_sym_elseif_fragment_token1] = ACTIONS(8780), + [aux_sym_else_fragment_token1] = ACTIONS(8780), + [aux_sym_select_statement_token1] = ACTIONS(8780), + [aux_sym__for_header_token1] = ACTIONS(8780), + [aux_sym_do_statement_token1] = ACTIONS(8780), + [aux_sym_do_condition_token1] = ACTIONS(8780), + [aux_sym_while_statement_token1] = ACTIONS(8780), + [aux_sym_with_statement_token1] = ACTIONS(8780), + [aux_sym_exit_statement_token1] = ACTIONS(8780), + [sym_end_statement] = ACTIONS(8782), + [aux_sym_on_goto_statement_token1] = ACTIONS(8780), + [aux_sym_on_goto_statement_token2] = ACTIONS(8780), + [aux_sym_on_error_statement_token2] = ACTIONS(8780), + [sym__ambiguous_redim_statement] = ACTIONS(8782), + [aux_sym_erase_statement_token1] = ACTIONS(8780), + [aux_sym_open_statement_token1] = ACTIONS(8780), + [aux_sym_file_mode_token2] = ACTIONS(8780), + [aux_sym_file_access_token2] = ACTIONS(8780), + [aux_sym_file_lock_token2] = ACTIONS(8780), + [aux_sym_print_statement_token1] = ACTIONS(8780), + [anon_sym_PLUS] = ACTIONS(8782), + [anon_sym_DASH] = ACTIONS(8780), + [anon_sym_QMARK] = ACTIONS(8782), + [aux_sym_close_statement_token1] = ACTIONS(8780), + [aux_sym_put_statement_token1] = ACTIONS(8780), + [aux_sym_unlock_statement_token1] = ACTIONS(8780), + [aux_sym_seek_statement_token1] = ACTIONS(8780), + [sym_reset_statement] = ACTIONS(8780), + [aux_sym_raise_event_statement_token1] = ACTIONS(8780), + [sym_stop_statement] = ACTIONS(8780), + [sym_beep_statement] = ACTIONS(8780), + [aux_sym_unload_statement_token1] = ACTIONS(8780), + [aux_sym_def_type_statement_token1] = ACTIONS(8780), + [aux_sym_def_type_statement_token2] = ACTIONS(8780), + [aux_sym_def_type_statement_token3] = ACTIONS(8780), + [aux_sym_def_type_statement_token4] = ACTIONS(8780), + [aux_sym_def_type_statement_token5] = ACTIONS(8780), + [aux_sym_def_type_statement_token6] = ACTIONS(8780), + [aux_sym_def_type_statement_token7] = ACTIONS(8780), + [aux_sym_def_type_statement_token8] = ACTIONS(8780), + [aux_sym_def_type_statement_token9] = ACTIONS(8780), + [aux_sym_def_type_statement_token10] = ACTIONS(8780), + [aux_sym_def_type_statement_token11] = ACTIONS(8780), + [aux_sym_def_type_statement_token12] = ACTIONS(8780), + [aux_sym_def_type_statement_token13] = ACTIONS(8780), + [aux_sym_def_type_statement_token14] = ACTIONS(8780), + [aux_sym_call_statement_token1] = ACTIONS(8780), + [sym__ambiguous_call_statement] = ACTIONS(8780), + [aux_sym_addressof_expression_token1] = ACTIONS(8780), + [aux_sym_type_of_expression_token1] = ACTIONS(8780), + [aux_sym_unary_expression_token1] = ACTIONS(8780), + [sym_string_literal] = ACTIONS(8782), + [sym_number_literal] = ACTIONS(8782), + [aux_sym_boolean_literal_token1] = ACTIONS(8780), + [aux_sym_boolean_literal_token2] = ACTIONS(8780), + [sym_nothing_literal] = ACTIONS(8780), + [sym_null_literal] = ACTIONS(8780), + [sym_empty_literal] = ACTIONS(8780), + [sym_date_literal] = ACTIONS(8782), + [anon_sym_POUND] = ACTIONS(8780), + }, + [STATE(6132)] = { + [sym_identifier] = ACTIONS(8881), + [sym_newline] = ACTIONS(8884), + [anon_sym_COLON] = ACTIONS(8884), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8881), + [aux_sym_frm_property_statement_token1] = ACTIONS(8881), + [anon_sym_DOT] = ACTIONS(8881), + [anon_sym_BANG] = ACTIONS(8884), + [aux_sym__attribute_identifier_token1] = ACTIONS(8881), + [aux_sym_option_statement_token3] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8881), + [aux_sym_preprocessor_const_token1] = ACTIONS(8881), + [sym_static_modifier] = ACTIONS(8881), + [sym__dim_keyword] = ACTIONS(8881), + [sym__redim_keyword] = ACTIONS(8881), + [aux_sym_get_accessor_token1] = ACTIONS(8881), + [aux_sym_set_accessor_token1] = ACTIONS(8881), + [aux_sym_const_declaration_token1] = ACTIONS(8881), + [anon_sym_LPAREN] = ACTIONS(8884), + [aux_sym_as_type_clause_token2] = ACTIONS(8881), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8881), + [aux_sym_visibility_token1] = ACTIONS(8881), + [aux_sym_visibility_token2] = ACTIONS(8881), + [aux_sym_elseif_fragment_token1] = ACTIONS(8881), + [aux_sym_else_fragment_token1] = ACTIONS(8881), + [aux_sym_select_statement_token1] = ACTIONS(8881), + [aux_sym_select_statement_token2] = ACTIONS(8887), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8949), + [aux_sym__for_header_token1] = ACTIONS(8881), + [aux_sym_do_statement_token1] = ACTIONS(8881), + [aux_sym_do_condition_token1] = ACTIONS(8881), + [aux_sym_with_statement_token1] = ACTIONS(8881), + [aux_sym_exit_statement_token1] = ACTIONS(8881), + [sym_end_statement] = ACTIONS(8884), + [aux_sym_on_goto_statement_token1] = ACTIONS(8881), + [aux_sym_on_goto_statement_token2] = ACTIONS(8881), + [aux_sym_on_error_statement_token2] = ACTIONS(8881), + [sym__ambiguous_redim_statement] = ACTIONS(8884), + [aux_sym_erase_statement_token1] = ACTIONS(8881), + [aux_sym_open_statement_token1] = ACTIONS(8881), + [aux_sym_file_mode_token2] = ACTIONS(8881), + [aux_sym_file_access_token2] = ACTIONS(8881), + [aux_sym_file_lock_token2] = ACTIONS(8881), + [aux_sym_print_statement_token1] = ACTIONS(8881), + [anon_sym_PLUS] = ACTIONS(8884), + [anon_sym_DASH] = ACTIONS(8881), + [anon_sym_QMARK] = ACTIONS(8884), + [aux_sym_close_statement_token1] = ACTIONS(8881), + [aux_sym_put_statement_token1] = ACTIONS(8881), + [aux_sym_unlock_statement_token1] = ACTIONS(8881), + [aux_sym_seek_statement_token1] = ACTIONS(8881), + [sym_reset_statement] = ACTIONS(8881), + [aux_sym_raise_event_statement_token1] = ACTIONS(8881), + [sym_stop_statement] = ACTIONS(8881), + [sym_beep_statement] = ACTIONS(8881), + [aux_sym_unload_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token2] = ACTIONS(8881), + [aux_sym_def_type_statement_token3] = ACTIONS(8881), + [aux_sym_def_type_statement_token4] = ACTIONS(8881), + [aux_sym_def_type_statement_token5] = ACTIONS(8881), + [aux_sym_def_type_statement_token6] = ACTIONS(8881), + [aux_sym_def_type_statement_token7] = ACTIONS(8881), + [aux_sym_def_type_statement_token8] = ACTIONS(8881), + [aux_sym_def_type_statement_token9] = ACTIONS(8881), + [aux_sym_def_type_statement_token10] = ACTIONS(8881), + [aux_sym_def_type_statement_token11] = ACTIONS(8881), + [aux_sym_def_type_statement_token12] = ACTIONS(8881), + [aux_sym_def_type_statement_token13] = ACTIONS(8881), + [aux_sym_def_type_statement_token14] = ACTIONS(8881), + [aux_sym_call_statement_token1] = ACTIONS(8881), + [sym__ambiguous_call_statement] = ACTIONS(8881), + [aux_sym_addressof_expression_token1] = ACTIONS(8881), + [aux_sym_type_of_expression_token1] = ACTIONS(8881), + [aux_sym_unary_expression_token1] = ACTIONS(8881), + [sym_string_literal] = ACTIONS(8884), + [sym_number_literal] = ACTIONS(8884), + [aux_sym_boolean_literal_token1] = ACTIONS(8881), + [aux_sym_boolean_literal_token2] = ACTIONS(8881), + [sym_nothing_literal] = ACTIONS(8881), + [sym_null_literal] = ACTIONS(8881), + [sym_empty_literal] = ACTIONS(8881), + [sym_date_literal] = ACTIONS(8884), + [anon_sym_POUND] = ACTIONS(8881), + }, + [STATE(6133)] = { + [sym_identifier] = ACTIONS(8686), + [sym_newline] = ACTIONS(8688), + [anon_sym_COLON] = ACTIONS(8688), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8686), + [aux_sym_frm_property_statement_token1] = ACTIONS(8686), + [anon_sym_DOT] = ACTIONS(8686), + [anon_sym_BANG] = ACTIONS(8688), + [aux_sym__attribute_identifier_token1] = ACTIONS(8686), + [aux_sym_option_statement_token3] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8686), + [aux_sym_preprocessor_const_token1] = ACTIONS(8686), + [sym_static_modifier] = ACTIONS(8686), + [sym__dim_keyword] = ACTIONS(8686), + [sym__redim_keyword] = ACTIONS(8686), + [aux_sym_get_accessor_token1] = ACTIONS(8686), + [aux_sym_set_accessor_token1] = ACTIONS(8686), + [aux_sym_const_declaration_token1] = ACTIONS(8686), + [anon_sym_LPAREN] = ACTIONS(8688), + [aux_sym_as_type_clause_token2] = ACTIONS(8686), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8686), + [aux_sym_visibility_token1] = ACTIONS(8686), + [aux_sym_visibility_token2] = ACTIONS(8686), + [aux_sym_elseif_fragment_token1] = ACTIONS(8686), + [aux_sym_else_fragment_token1] = ACTIONS(8686), + [aux_sym_select_statement_token1] = ACTIONS(8686), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8686), + [aux_sym__for_header_token1] = ACTIONS(8686), + [aux_sym_do_statement_token1] = ACTIONS(8686), + [aux_sym_do_condition_token1] = ACTIONS(8686), + [aux_sym_with_statement_token1] = ACTIONS(8686), + [aux_sym_exit_statement_token1] = ACTIONS(8686), + [sym_end_statement] = ACTIONS(8688), + [aux_sym_on_goto_statement_token1] = ACTIONS(8686), + [aux_sym_on_goto_statement_token2] = ACTIONS(8686), + [aux_sym_on_error_statement_token2] = ACTIONS(8686), + [sym__ambiguous_redim_statement] = ACTIONS(8688), + [aux_sym_erase_statement_token1] = ACTIONS(8686), + [aux_sym_open_statement_token1] = ACTIONS(8686), + [aux_sym_open_statement_token3] = ACTIONS(11000), + [aux_sym_file_mode_token2] = ACTIONS(8686), + [aux_sym_file_access_token2] = ACTIONS(8686), + [aux_sym_file_lock_token2] = ACTIONS(8686), + [aux_sym_print_statement_token1] = ACTIONS(8686), + [anon_sym_PLUS] = ACTIONS(8688), + [anon_sym_DASH] = ACTIONS(8686), + [anon_sym_QMARK] = ACTIONS(8688), + [aux_sym_close_statement_token1] = ACTIONS(8686), + [aux_sym_put_statement_token1] = ACTIONS(8686), + [aux_sym_unlock_statement_token1] = ACTIONS(8686), + [aux_sym_seek_statement_token1] = ACTIONS(8686), + [sym_reset_statement] = ACTIONS(8686), + [aux_sym_raise_event_statement_token1] = ACTIONS(8686), + [sym_stop_statement] = ACTIONS(8686), + [sym_beep_statement] = ACTIONS(8686), + [aux_sym_unload_statement_token1] = ACTIONS(8686), + [aux_sym_def_type_statement_token1] = ACTIONS(8686), + [aux_sym_def_type_statement_token2] = ACTIONS(8686), + [aux_sym_def_type_statement_token3] = ACTIONS(8686), + [aux_sym_def_type_statement_token4] = ACTIONS(8686), + [aux_sym_def_type_statement_token5] = ACTIONS(8686), + [aux_sym_def_type_statement_token6] = ACTIONS(8686), + [aux_sym_def_type_statement_token7] = ACTIONS(8686), + [aux_sym_def_type_statement_token8] = ACTIONS(8686), + [aux_sym_def_type_statement_token9] = ACTIONS(8686), + [aux_sym_def_type_statement_token10] = ACTIONS(8686), + [aux_sym_def_type_statement_token11] = ACTIONS(8686), + [aux_sym_def_type_statement_token12] = ACTIONS(8686), + [aux_sym_def_type_statement_token13] = ACTIONS(8686), + [aux_sym_def_type_statement_token14] = ACTIONS(8686), + [aux_sym_call_statement_token1] = ACTIONS(8686), + [sym__ambiguous_call_statement] = ACTIONS(8686), + [aux_sym_addressof_expression_token1] = ACTIONS(8686), + [aux_sym_type_of_expression_token1] = ACTIONS(8686), + [aux_sym_unary_expression_token1] = ACTIONS(8686), + [sym_string_literal] = ACTIONS(8688), + [sym_number_literal] = ACTIONS(8688), + [aux_sym_boolean_literal_token1] = ACTIONS(8686), + [aux_sym_boolean_literal_token2] = ACTIONS(8686), + [sym_nothing_literal] = ACTIONS(8686), + [sym_null_literal] = ACTIONS(8686), + [sym_empty_literal] = ACTIONS(8686), + [sym_date_literal] = ACTIONS(8688), + [anon_sym_POUND] = ACTIONS(8686), + }, + [STATE(6134)] = { + [sym_identifier] = ACTIONS(8915), + [sym_newline] = ACTIONS(8918), + [anon_sym_COLON] = ACTIONS(8918), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8915), + [aux_sym_frm_property_statement_token1] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8915), + [anon_sym_BANG] = ACTIONS(8918), + [aux_sym__attribute_identifier_token1] = ACTIONS(8915), + [aux_sym_option_statement_token3] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8915), + [aux_sym_preprocessor_const_token1] = ACTIONS(8915), + [sym_static_modifier] = ACTIONS(8915), + [sym__dim_keyword] = ACTIONS(8915), + [sym__redim_keyword] = ACTIONS(8915), + [aux_sym_get_accessor_token1] = ACTIONS(8915), + [aux_sym_set_accessor_token1] = ACTIONS(8915), + [aux_sym_const_declaration_token1] = ACTIONS(8915), + [anon_sym_LPAREN] = ACTIONS(8918), + [aux_sym_as_type_clause_token2] = ACTIONS(8915), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8915), + [aux_sym_visibility_token1] = ACTIONS(8915), + [aux_sym_visibility_token2] = ACTIONS(8915), + [aux_sym_elseif_fragment_token1] = ACTIONS(8915), + [aux_sym_else_fragment_token1] = ACTIONS(8915), + [aux_sym_select_statement_token1] = ACTIONS(8915), + [aux_sym_select_statement_token2] = ACTIONS(8921), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8915), + [aux_sym_do_statement_token1] = ACTIONS(8915), + [aux_sym_do_condition_token1] = ACTIONS(8915), + [aux_sym_with_statement_token1] = ACTIONS(8915), + [aux_sym_exit_statement_token1] = ACTIONS(8915), + [sym_end_statement] = ACTIONS(8918), + [aux_sym_on_goto_statement_token1] = ACTIONS(8915), + [aux_sym_on_goto_statement_token2] = ACTIONS(8915), + [aux_sym_on_error_statement_token2] = ACTIONS(8915), + [sym__ambiguous_redim_statement] = ACTIONS(8918), + [aux_sym_erase_statement_token1] = ACTIONS(8915), + [aux_sym_open_statement_token1] = ACTIONS(8915), + [aux_sym_file_mode_token2] = ACTIONS(8915), + [aux_sym_file_access_token2] = ACTIONS(8915), + [aux_sym_file_lock_token2] = ACTIONS(8915), + [aux_sym_print_statement_token1] = ACTIONS(8915), + [anon_sym_PLUS] = ACTIONS(8918), + [anon_sym_DASH] = ACTIONS(8915), + [anon_sym_QMARK] = ACTIONS(8918), + [aux_sym_close_statement_token1] = ACTIONS(8915), + [aux_sym_put_statement_token1] = ACTIONS(8915), + [aux_sym_unlock_statement_token1] = ACTIONS(8915), + [aux_sym_seek_statement_token1] = ACTIONS(8915), + [sym_reset_statement] = ACTIONS(8915), + [aux_sym_raise_event_statement_token1] = ACTIONS(8915), + [sym_stop_statement] = ACTIONS(8915), + [sym_beep_statement] = ACTIONS(8915), + [aux_sym_unload_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token2] = ACTIONS(8915), + [aux_sym_def_type_statement_token3] = ACTIONS(8915), + [aux_sym_def_type_statement_token4] = ACTIONS(8915), + [aux_sym_def_type_statement_token5] = ACTIONS(8915), + [aux_sym_def_type_statement_token6] = ACTIONS(8915), + [aux_sym_def_type_statement_token7] = ACTIONS(8915), + [aux_sym_def_type_statement_token8] = ACTIONS(8915), + [aux_sym_def_type_statement_token9] = ACTIONS(8915), + [aux_sym_def_type_statement_token10] = ACTIONS(8915), + [aux_sym_def_type_statement_token11] = ACTIONS(8915), + [aux_sym_def_type_statement_token12] = ACTIONS(8915), + [aux_sym_def_type_statement_token13] = ACTIONS(8915), + [aux_sym_def_type_statement_token14] = ACTIONS(8915), + [aux_sym_call_statement_token1] = ACTIONS(8915), + [sym__ambiguous_call_statement] = ACTIONS(8915), + [aux_sym_addressof_expression_token1] = ACTIONS(8915), + [aux_sym_type_of_expression_token1] = ACTIONS(8915), + [aux_sym_unary_expression_token1] = ACTIONS(8915), + [sym_string_literal] = ACTIONS(8918), + [sym_number_literal] = ACTIONS(8918), + [aux_sym_boolean_literal_token1] = ACTIONS(8915), + [aux_sym_boolean_literal_token2] = ACTIONS(8915), + [sym_nothing_literal] = ACTIONS(8915), + [sym_null_literal] = ACTIONS(8915), + [sym_empty_literal] = ACTIONS(8915), + [sym_date_literal] = ACTIONS(8918), + [anon_sym_POUND] = ACTIONS(8915), + }, + [STATE(6135)] = { + [aux_sym_def_type_statement_repeat1] = STATE(6135), + [sym_identifier] = ACTIONS(8357), + [sym_newline] = ACTIONS(8359), + [anon_sym_COLON] = ACTIONS(8359), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8357), + [aux_sym_frm_property_statement_token1] = ACTIONS(8357), + [anon_sym_DOT] = ACTIONS(8357), + [anon_sym_BANG] = ACTIONS(8359), + [aux_sym__attribute_identifier_token1] = ACTIONS(8357), + [aux_sym_option_statement_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8357), + [aux_sym_preprocessor_const_token1] = ACTIONS(8357), + [sym_static_modifier] = ACTIONS(8357), + [sym__dim_keyword] = ACTIONS(8357), + [sym__redim_keyword] = ACTIONS(8357), + [aux_sym_get_accessor_token1] = ACTIONS(8357), + [aux_sym_set_accessor_token1] = ACTIONS(8357), + [anon_sym_COMMA] = ACTIONS(11002), + [aux_sym_const_declaration_token1] = ACTIONS(8357), + [anon_sym_LPAREN] = ACTIONS(8359), + [aux_sym_as_type_clause_token2] = ACTIONS(8357), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8357), + [aux_sym_visibility_token1] = ACTIONS(8357), + [aux_sym_visibility_token2] = ACTIONS(8357), + [aux_sym_elseif_fragment_token1] = ACTIONS(8357), + [aux_sym_else_fragment_token1] = ACTIONS(8357), + [aux_sym_select_statement_token1] = ACTIONS(8357), + [aux_sym__for_header_token1] = ACTIONS(8357), + [aux_sym_do_statement_token1] = ACTIONS(8357), + [aux_sym_do_condition_token1] = ACTIONS(8357), + [aux_sym_with_statement_token1] = ACTIONS(8357), + [aux_sym_exit_statement_token1] = ACTIONS(8357), + [sym_end_statement] = ACTIONS(8359), + [aux_sym_on_goto_statement_token1] = ACTIONS(8357), + [aux_sym_on_goto_statement_token2] = ACTIONS(8357), + [aux_sym_on_error_statement_token2] = ACTIONS(8357), + [sym__ambiguous_redim_statement] = ACTIONS(8359), + [aux_sym_erase_statement_token1] = ACTIONS(8357), + [aux_sym_open_statement_token1] = ACTIONS(8357), + [aux_sym_file_mode_token2] = ACTIONS(8357), + [aux_sym_file_access_token2] = ACTIONS(8357), + [aux_sym_file_lock_token2] = ACTIONS(8357), + [aux_sym_print_statement_token1] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_QMARK] = ACTIONS(8359), + [aux_sym_close_statement_token1] = ACTIONS(8357), + [aux_sym_put_statement_token1] = ACTIONS(8357), + [aux_sym_unlock_statement_token1] = ACTIONS(8357), + [aux_sym_seek_statement_token1] = ACTIONS(8357), + [sym_reset_statement] = ACTIONS(8357), + [aux_sym_raise_event_statement_token1] = ACTIONS(8357), + [sym_stop_statement] = ACTIONS(8357), + [sym_beep_statement] = ACTIONS(8357), + [aux_sym_unload_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token2] = ACTIONS(8357), + [aux_sym_def_type_statement_token3] = ACTIONS(8357), + [aux_sym_def_type_statement_token4] = ACTIONS(8357), + [aux_sym_def_type_statement_token5] = ACTIONS(8357), + [aux_sym_def_type_statement_token6] = ACTIONS(8357), + [aux_sym_def_type_statement_token7] = ACTIONS(8357), + [aux_sym_def_type_statement_token8] = ACTIONS(8357), + [aux_sym_def_type_statement_token9] = ACTIONS(8357), + [aux_sym_def_type_statement_token10] = ACTIONS(8357), + [aux_sym_def_type_statement_token11] = ACTIONS(8357), + [aux_sym_def_type_statement_token12] = ACTIONS(8357), + [aux_sym_def_type_statement_token13] = ACTIONS(8357), + [aux_sym_def_type_statement_token14] = ACTIONS(8357), + [aux_sym_call_statement_token1] = ACTIONS(8357), + [sym__ambiguous_call_statement] = ACTIONS(8357), + [aux_sym_addressof_expression_token1] = ACTIONS(8357), + [aux_sym_type_of_expression_token1] = ACTIONS(8357), + [aux_sym_unary_expression_token1] = ACTIONS(8357), + [sym_string_literal] = ACTIONS(8359), + [sym_number_literal] = ACTIONS(8359), + [aux_sym_boolean_literal_token1] = ACTIONS(8357), + [aux_sym_boolean_literal_token2] = ACTIONS(8357), + [sym_nothing_literal] = ACTIONS(8357), + [sym_null_literal] = ACTIONS(8357), + [sym_empty_literal] = ACTIONS(8357), + [sym_date_literal] = ACTIONS(8359), + [anon_sym_POUND] = ACTIONS(8357), + }, + [STATE(6136)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6147), + [sym_identifier] = ACTIONS(8692), + [sym_newline] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(10880), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8692), + [aux_sym_frm_property_statement_token1] = ACTIONS(8692), + [anon_sym_DOT] = ACTIONS(8692), + [anon_sym_BANG] = ACTIONS(8694), + [aux_sym__attribute_identifier_token1] = ACTIONS(8692), + [aux_sym_option_statement_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8692), + [aux_sym_preprocessor_const_token1] = ACTIONS(8692), + [sym_static_modifier] = ACTIONS(8692), + [sym__dim_keyword] = ACTIONS(8692), + [sym__redim_keyword] = ACTIONS(8692), + [aux_sym_get_accessor_token1] = ACTIONS(8692), + [aux_sym_set_accessor_token1] = ACTIONS(8692), + [aux_sym_const_declaration_token1] = ACTIONS(8692), + [anon_sym_LPAREN] = ACTIONS(8694), + [aux_sym_as_type_clause_token2] = ACTIONS(8692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8692), + [aux_sym_visibility_token1] = ACTIONS(8692), + [aux_sym_visibility_token2] = ACTIONS(8692), + [aux_sym_elseif_fragment_token1] = ACTIONS(8692), + [aux_sym_else_fragment_token1] = ACTIONS(11005), + [aux_sym_select_statement_token1] = ACTIONS(8692), + [aux_sym_select_statement_token2] = ACTIONS(8692), + [aux_sym__for_header_token1] = ACTIONS(8692), + [aux_sym_do_statement_token1] = ACTIONS(8692), + [aux_sym_do_condition_token1] = ACTIONS(8692), + [aux_sym_with_statement_token1] = ACTIONS(8692), + [aux_sym_exit_statement_token1] = ACTIONS(8692), + [sym_end_statement] = ACTIONS(8694), + [aux_sym_on_goto_statement_token1] = ACTIONS(8692), + [aux_sym_on_goto_statement_token2] = ACTIONS(8692), + [aux_sym_on_error_statement_token2] = ACTIONS(8692), + [sym__ambiguous_redim_statement] = ACTIONS(8694), + [aux_sym_erase_statement_token1] = ACTIONS(8692), + [aux_sym_open_statement_token1] = ACTIONS(8692), + [aux_sym_file_mode_token2] = ACTIONS(8692), + [aux_sym_file_access_token2] = ACTIONS(8692), + [aux_sym_file_lock_token2] = ACTIONS(8692), + [aux_sym_print_statement_token1] = ACTIONS(8692), + [anon_sym_PLUS] = ACTIONS(8694), + [anon_sym_DASH] = ACTIONS(8692), + [anon_sym_QMARK] = ACTIONS(8694), + [aux_sym_close_statement_token1] = ACTIONS(8692), + [aux_sym_put_statement_token1] = ACTIONS(8692), + [aux_sym_unlock_statement_token1] = ACTIONS(8692), + [aux_sym_seek_statement_token1] = ACTIONS(8692), + [sym_reset_statement] = ACTIONS(8692), + [aux_sym_raise_event_statement_token1] = ACTIONS(8692), + [sym_stop_statement] = ACTIONS(8692), + [sym_beep_statement] = ACTIONS(8692), + [aux_sym_unload_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token2] = ACTIONS(8692), + [aux_sym_def_type_statement_token3] = ACTIONS(8692), + [aux_sym_def_type_statement_token4] = ACTIONS(8692), + [aux_sym_def_type_statement_token5] = ACTIONS(8692), + [aux_sym_def_type_statement_token6] = ACTIONS(8692), + [aux_sym_def_type_statement_token7] = ACTIONS(8692), + [aux_sym_def_type_statement_token8] = ACTIONS(8692), + [aux_sym_def_type_statement_token9] = ACTIONS(8692), + [aux_sym_def_type_statement_token10] = ACTIONS(8692), + [aux_sym_def_type_statement_token11] = ACTIONS(8692), + [aux_sym_def_type_statement_token12] = ACTIONS(8692), + [aux_sym_def_type_statement_token13] = ACTIONS(8692), + [aux_sym_def_type_statement_token14] = ACTIONS(8692), + [aux_sym_call_statement_token1] = ACTIONS(8692), + [sym__ambiguous_call_statement] = ACTIONS(8692), + [aux_sym_addressof_expression_token1] = ACTIONS(8692), + [aux_sym_type_of_expression_token1] = ACTIONS(8692), + [aux_sym_unary_expression_token1] = ACTIONS(8692), + [sym_string_literal] = ACTIONS(8694), + [sym_number_literal] = ACTIONS(8694), + [aux_sym_boolean_literal_token1] = ACTIONS(8692), + [aux_sym_boolean_literal_token2] = ACTIONS(8692), + [sym_nothing_literal] = ACTIONS(8692), + [sym_null_literal] = ACTIONS(8692), + [sym_empty_literal] = ACTIONS(8692), + [sym_date_literal] = ACTIONS(8694), + [anon_sym_POUND] = ACTIONS(8692), + }, + [STATE(6137)] = { + [sym_identifier] = ACTIONS(8756), + [sym_newline] = ACTIONS(8759), + [anon_sym_COLON] = ACTIONS(8759), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8756), + [aux_sym_frm_property_statement_token1] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8756), + [anon_sym_BANG] = ACTIONS(8759), + [aux_sym__attribute_identifier_token1] = ACTIONS(8756), + [aux_sym_option_statement_token3] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8756), + [aux_sym_preprocessor_const_token1] = ACTIONS(8756), + [sym_static_modifier] = ACTIONS(8756), + [sym__dim_keyword] = ACTIONS(8756), + [sym__redim_keyword] = ACTIONS(8756), + [aux_sym_get_accessor_token1] = ACTIONS(8756), + [aux_sym_set_accessor_token1] = ACTIONS(8756), + [aux_sym_const_declaration_token1] = ACTIONS(8756), + [anon_sym_LPAREN] = ACTIONS(8759), + [aux_sym_as_type_clause_token2] = ACTIONS(8756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8756), + [aux_sym_visibility_token1] = ACTIONS(8756), + [aux_sym_visibility_token2] = ACTIONS(8756), + [aux_sym_elseif_fragment_token1] = ACTIONS(8756), + [aux_sym_else_fragment_token1] = ACTIONS(8756), + [aux_sym_select_statement_token1] = ACTIONS(8756), + [aux_sym_select_statement_token2] = ACTIONS(8762), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8756), + [aux_sym_do_statement_token1] = ACTIONS(8756), + [aux_sym_do_condition_token1] = ACTIONS(8756), + [aux_sym_with_statement_token1] = ACTIONS(8756), + [aux_sym_exit_statement_token1] = ACTIONS(8756), + [sym_end_statement] = ACTIONS(8759), + [aux_sym_on_goto_statement_token1] = ACTIONS(8756), + [aux_sym_on_goto_statement_token2] = ACTIONS(8756), + [aux_sym_on_error_statement_token2] = ACTIONS(8756), + [sym__ambiguous_redim_statement] = ACTIONS(8759), + [aux_sym_erase_statement_token1] = ACTIONS(8756), + [aux_sym_open_statement_token1] = ACTIONS(8756), + [aux_sym_file_mode_token2] = ACTIONS(8756), + [aux_sym_file_access_token2] = ACTIONS(8756), + [aux_sym_file_lock_token2] = ACTIONS(8756), + [aux_sym_print_statement_token1] = ACTIONS(8756), + [anon_sym_PLUS] = ACTIONS(8759), + [anon_sym_DASH] = ACTIONS(8756), + [anon_sym_QMARK] = ACTIONS(8759), + [aux_sym_close_statement_token1] = ACTIONS(8756), + [aux_sym_put_statement_token1] = ACTIONS(8756), + [aux_sym_unlock_statement_token1] = ACTIONS(8756), + [aux_sym_seek_statement_token1] = ACTIONS(8756), + [sym_reset_statement] = ACTIONS(8756), + [aux_sym_raise_event_statement_token1] = ACTIONS(8756), + [sym_stop_statement] = ACTIONS(8756), + [sym_beep_statement] = ACTIONS(8756), + [aux_sym_unload_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token2] = ACTIONS(8756), + [aux_sym_def_type_statement_token3] = ACTIONS(8756), + [aux_sym_def_type_statement_token4] = ACTIONS(8756), + [aux_sym_def_type_statement_token5] = ACTIONS(8756), + [aux_sym_def_type_statement_token6] = ACTIONS(8756), + [aux_sym_def_type_statement_token7] = ACTIONS(8756), + [aux_sym_def_type_statement_token8] = ACTIONS(8756), + [aux_sym_def_type_statement_token9] = ACTIONS(8756), + [aux_sym_def_type_statement_token10] = ACTIONS(8756), + [aux_sym_def_type_statement_token11] = ACTIONS(8756), + [aux_sym_def_type_statement_token12] = ACTIONS(8756), + [aux_sym_def_type_statement_token13] = ACTIONS(8756), + [aux_sym_def_type_statement_token14] = ACTIONS(8756), + [aux_sym_call_statement_token1] = ACTIONS(8756), + [sym__ambiguous_call_statement] = ACTIONS(8756), + [aux_sym_addressof_expression_token1] = ACTIONS(8756), + [aux_sym_type_of_expression_token1] = ACTIONS(8756), + [aux_sym_unary_expression_token1] = ACTIONS(8756), + [sym_string_literal] = ACTIONS(8759), + [sym_number_literal] = ACTIONS(8759), + [aux_sym_boolean_literal_token1] = ACTIONS(8756), + [aux_sym_boolean_literal_token2] = ACTIONS(8756), + [sym_nothing_literal] = ACTIONS(8756), + [sym_null_literal] = ACTIONS(8756), + [sym_empty_literal] = ACTIONS(8756), + [sym_date_literal] = ACTIONS(8759), + [anon_sym_POUND] = ACTIONS(8756), + }, + [STATE(6138)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(5873), + [sym_identifier] = ACTIONS(8813), + [sym_newline] = ACTIONS(8815), + [anon_sym_COLON] = ACTIONS(10854), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8813), + [aux_sym_frm_property_statement_token1] = ACTIONS(8813), + [anon_sym_DOT] = ACTIONS(8813), + [anon_sym_BANG] = ACTIONS(8815), + [aux_sym__attribute_identifier_token1] = ACTIONS(8813), + [aux_sym_option_statement_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8813), + [aux_sym_preprocessor_const_token1] = ACTIONS(8813), + [sym_static_modifier] = ACTIONS(8813), + [sym__dim_keyword] = ACTIONS(8813), + [sym__redim_keyword] = ACTIONS(8813), + [aux_sym_get_accessor_token1] = ACTIONS(8813), + [aux_sym_set_accessor_token1] = ACTIONS(8813), + [aux_sym_const_declaration_token1] = ACTIONS(8813), + [anon_sym_LPAREN] = ACTIONS(8815), + [aux_sym_as_type_clause_token2] = ACTIONS(8813), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8813), + [aux_sym_visibility_token1] = ACTIONS(8813), + [aux_sym_visibility_token2] = ACTIONS(8813), + [aux_sym_elseif_fragment_token1] = ACTIONS(8813), + [aux_sym_else_fragment_token1] = ACTIONS(8813), + [aux_sym_select_statement_token1] = ACTIONS(8813), + [aux_sym__for_header_token1] = ACTIONS(8813), + [aux_sym_do_statement_token1] = ACTIONS(8813), + [aux_sym_do_condition_token1] = ACTIONS(8813), + [aux_sym_while_statement_token1] = ACTIONS(8813), + [aux_sym_with_statement_token1] = ACTIONS(8813), + [aux_sym_exit_statement_token1] = ACTIONS(8813), + [sym_end_statement] = ACTIONS(8815), + [aux_sym_on_goto_statement_token1] = ACTIONS(8813), + [aux_sym_on_goto_statement_token2] = ACTIONS(8813), + [aux_sym_on_error_statement_token2] = ACTIONS(8813), + [sym__ambiguous_redim_statement] = ACTIONS(8815), + [aux_sym_erase_statement_token1] = ACTIONS(8813), + [aux_sym_open_statement_token1] = ACTIONS(8813), + [aux_sym_file_mode_token2] = ACTIONS(8813), + [aux_sym_file_access_token2] = ACTIONS(8813), + [aux_sym_file_lock_token2] = ACTIONS(8813), + [aux_sym_print_statement_token1] = ACTIONS(8813), + [anon_sym_PLUS] = ACTIONS(8815), + [anon_sym_DASH] = ACTIONS(8813), + [anon_sym_QMARK] = ACTIONS(8815), + [aux_sym_close_statement_token1] = ACTIONS(8813), + [aux_sym_put_statement_token1] = ACTIONS(8813), + [aux_sym_unlock_statement_token1] = ACTIONS(8813), + [aux_sym_seek_statement_token1] = ACTIONS(8813), + [sym_reset_statement] = ACTIONS(8813), + [aux_sym_raise_event_statement_token1] = ACTIONS(8813), + [sym_stop_statement] = ACTIONS(8813), + [sym_beep_statement] = ACTIONS(8813), + [aux_sym_unload_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token2] = ACTIONS(8813), + [aux_sym_def_type_statement_token3] = ACTIONS(8813), + [aux_sym_def_type_statement_token4] = ACTIONS(8813), + [aux_sym_def_type_statement_token5] = ACTIONS(8813), + [aux_sym_def_type_statement_token6] = ACTIONS(8813), + [aux_sym_def_type_statement_token7] = ACTIONS(8813), + [aux_sym_def_type_statement_token8] = ACTIONS(8813), + [aux_sym_def_type_statement_token9] = ACTIONS(8813), + [aux_sym_def_type_statement_token10] = ACTIONS(8813), + [aux_sym_def_type_statement_token11] = ACTIONS(8813), + [aux_sym_def_type_statement_token12] = ACTIONS(8813), + [aux_sym_def_type_statement_token13] = ACTIONS(8813), + [aux_sym_def_type_statement_token14] = ACTIONS(8813), + [aux_sym_call_statement_token1] = ACTIONS(8813), + [sym__ambiguous_call_statement] = ACTIONS(8813), + [aux_sym_addressof_expression_token1] = ACTIONS(8813), + [aux_sym_type_of_expression_token1] = ACTIONS(8813), + [aux_sym_unary_expression_token1] = ACTIONS(8813), + [sym_string_literal] = ACTIONS(8815), + [sym_number_literal] = ACTIONS(8815), + [aux_sym_boolean_literal_token1] = ACTIONS(8813), + [aux_sym_boolean_literal_token2] = ACTIONS(8813), + [sym_nothing_literal] = ACTIONS(8813), + [sym_null_literal] = ACTIONS(8813), + [sym_empty_literal] = ACTIONS(8813), + [sym_date_literal] = ACTIONS(8815), + [anon_sym_POUND] = ACTIONS(8813), + }, + [STATE(6139)] = { + [sym_argument_list] = STATE(6600), + [sym_identifier] = ACTIONS(8899), + [sym_newline] = ACTIONS(8901), + [anon_sym_COLON] = ACTIONS(8901), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8899), + [aux_sym_frm_property_statement_token1] = ACTIONS(8899), + [anon_sym_DOT] = ACTIONS(10615), + [anon_sym_BANG] = ACTIONS(10617), + [aux_sym__attribute_identifier_token1] = ACTIONS(8899), + [aux_sym_option_statement_token3] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8899), + [aux_sym_preprocessor_const_token1] = ACTIONS(8899), + [sym_static_modifier] = ACTIONS(8899), + [sym__dim_keyword] = ACTIONS(8899), + [sym__redim_keyword] = ACTIONS(8899), + [aux_sym_get_accessor_token1] = ACTIONS(8899), + [aux_sym_set_accessor_token1] = ACTIONS(8899), + [aux_sym_const_declaration_token1] = ACTIONS(8899), + [anon_sym_LPAREN] = ACTIONS(10606), + [aux_sym_as_type_clause_token2] = ACTIONS(8899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8899), + [aux_sym_visibility_token1] = ACTIONS(8899), + [aux_sym_visibility_token2] = ACTIONS(8899), + [aux_sym_elseif_fragment_token1] = ACTIONS(8899), + [aux_sym_else_fragment_token1] = ACTIONS(8899), + [aux_sym_select_statement_token1] = ACTIONS(8899), + [aux_sym__for_header_token1] = ACTIONS(8899), + [aux_sym_do_statement_token1] = ACTIONS(8899), + [aux_sym_do_condition_token1] = ACTIONS(8899), + [aux_sym_with_statement_token1] = ACTIONS(8899), + [aux_sym_exit_statement_token1] = ACTIONS(8899), + [sym_end_statement] = ACTIONS(8901), + [aux_sym_on_goto_statement_token1] = ACTIONS(8899), + [aux_sym_on_goto_statement_token2] = ACTIONS(8899), + [aux_sym_on_error_statement_token2] = ACTIONS(8899), + [sym__ambiguous_redim_statement] = ACTIONS(8901), + [aux_sym_erase_statement_token1] = ACTIONS(8899), + [aux_sym_open_statement_token1] = ACTIONS(8899), + [aux_sym_file_mode_token2] = ACTIONS(8899), + [aux_sym_file_access_token2] = ACTIONS(8899), + [aux_sym_file_lock_token2] = ACTIONS(8899), + [aux_sym_print_statement_token1] = ACTIONS(8899), + [anon_sym_PLUS] = ACTIONS(8901), + [anon_sym_DASH] = ACTIONS(8899), + [anon_sym_QMARK] = ACTIONS(8901), + [aux_sym_close_statement_token1] = ACTIONS(8899), + [aux_sym_put_statement_token1] = ACTIONS(8899), + [aux_sym_unlock_statement_token1] = ACTIONS(8899), + [aux_sym_seek_statement_token1] = ACTIONS(8899), + [sym_reset_statement] = ACTIONS(8899), + [aux_sym_raise_event_statement_token1] = ACTIONS(8899), + [sym_stop_statement] = ACTIONS(8899), + [sym_beep_statement] = ACTIONS(8899), + [aux_sym_unload_statement_token1] = ACTIONS(8899), + [aux_sym_def_type_statement_token1] = ACTIONS(8899), + [aux_sym_def_type_statement_token2] = ACTIONS(8899), + [aux_sym_def_type_statement_token3] = ACTIONS(8899), + [aux_sym_def_type_statement_token4] = ACTIONS(8899), + [aux_sym_def_type_statement_token5] = ACTIONS(8899), + [aux_sym_def_type_statement_token6] = ACTIONS(8899), + [aux_sym_def_type_statement_token7] = ACTIONS(8899), + [aux_sym_def_type_statement_token8] = ACTIONS(8899), + [aux_sym_def_type_statement_token9] = ACTIONS(8899), + [aux_sym_def_type_statement_token10] = ACTIONS(8899), + [aux_sym_def_type_statement_token11] = ACTIONS(8899), + [aux_sym_def_type_statement_token12] = ACTIONS(8899), + [aux_sym_def_type_statement_token13] = ACTIONS(8899), + [aux_sym_def_type_statement_token14] = ACTIONS(8899), + [aux_sym_call_statement_token1] = ACTIONS(8899), + [sym__ambiguous_call_statement] = ACTIONS(8899), + [aux_sym_addressof_expression_token1] = ACTIONS(8899), + [aux_sym_type_of_expression_token1] = ACTIONS(8899), + [aux_sym_unary_expression_token1] = ACTIONS(8899), + [sym_string_literal] = ACTIONS(8901), + [sym_number_literal] = ACTIONS(8901), + [aux_sym_boolean_literal_token1] = ACTIONS(8899), + [aux_sym_boolean_literal_token2] = ACTIONS(8899), + [sym_nothing_literal] = ACTIONS(8899), + [sym_null_literal] = ACTIONS(8899), + [sym_empty_literal] = ACTIONS(8899), + [sym_date_literal] = ACTIONS(8901), + [anon_sym_POUND] = ACTIONS(8899), + }, + [STATE(6140)] = { + [sym_identifier] = ACTIONS(8790), + [sym_newline] = ACTIONS(8792), + [anon_sym_COLON] = ACTIONS(8792), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8790), + [aux_sym_frm_property_statement_token1] = ACTIONS(8790), + [anon_sym_DOT] = ACTIONS(8790), + [anon_sym_BANG] = ACTIONS(8792), + [aux_sym__attribute_identifier_token1] = ACTIONS(8790), + [aux_sym_option_statement_token3] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8790), + [aux_sym_preprocessor_const_token1] = ACTIONS(8790), + [sym_static_modifier] = ACTIONS(8790), + [sym__dim_keyword] = ACTIONS(8790), + [sym__redim_keyword] = ACTIONS(8790), + [aux_sym_get_accessor_token1] = ACTIONS(8790), + [aux_sym_set_accessor_token1] = ACTIONS(8790), + [anon_sym_COMMA] = ACTIONS(8792), + [aux_sym_const_declaration_token1] = ACTIONS(8790), + [anon_sym_LPAREN] = ACTIONS(8792), + [aux_sym_as_type_clause_token2] = ACTIONS(8790), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8790), + [aux_sym_visibility_token1] = ACTIONS(8790), + [aux_sym_visibility_token2] = ACTIONS(8790), + [aux_sym_elseif_fragment_token1] = ACTIONS(8790), + [aux_sym_else_fragment_token1] = ACTIONS(8790), + [aux_sym_select_statement_token1] = ACTIONS(8790), + [aux_sym__for_header_token1] = ACTIONS(8790), + [aux_sym_do_statement_token1] = ACTIONS(8790), + [aux_sym_do_condition_token1] = ACTIONS(8790), + [aux_sym_while_statement_token1] = ACTIONS(8790), + [aux_sym_with_statement_token1] = ACTIONS(8790), + [aux_sym_exit_statement_token1] = ACTIONS(8790), + [sym_end_statement] = ACTIONS(8792), + [aux_sym_on_goto_statement_token1] = ACTIONS(8790), + [aux_sym_on_goto_statement_token2] = ACTIONS(8790), + [aux_sym_on_error_statement_token2] = ACTIONS(8790), + [sym__ambiguous_redim_statement] = ACTIONS(8792), + [aux_sym_erase_statement_token1] = ACTIONS(8790), + [aux_sym_open_statement_token1] = ACTIONS(8790), + [aux_sym_file_mode_token2] = ACTIONS(8790), + [aux_sym_file_access_token2] = ACTIONS(8790), + [aux_sym_file_lock_token2] = ACTIONS(8790), + [aux_sym_print_statement_token1] = ACTIONS(8790), + [anon_sym_PLUS] = ACTIONS(8792), + [anon_sym_DASH] = ACTIONS(8790), + [anon_sym_QMARK] = ACTIONS(8792), + [aux_sym_close_statement_token1] = ACTIONS(8790), + [aux_sym_put_statement_token1] = ACTIONS(8790), + [aux_sym_unlock_statement_token1] = ACTIONS(8790), + [aux_sym_seek_statement_token1] = ACTIONS(8790), + [sym_reset_statement] = ACTIONS(8790), + [aux_sym_raise_event_statement_token1] = ACTIONS(8790), + [sym_stop_statement] = ACTIONS(8790), + [sym_beep_statement] = ACTIONS(8790), + [aux_sym_unload_statement_token1] = ACTIONS(8790), + [aux_sym_def_type_statement_token1] = ACTIONS(8790), + [aux_sym_def_type_statement_token2] = ACTIONS(8790), + [aux_sym_def_type_statement_token3] = ACTIONS(8790), + [aux_sym_def_type_statement_token4] = ACTIONS(8790), + [aux_sym_def_type_statement_token5] = ACTIONS(8790), + [aux_sym_def_type_statement_token6] = ACTIONS(8790), + [aux_sym_def_type_statement_token7] = ACTIONS(8790), + [aux_sym_def_type_statement_token8] = ACTIONS(8790), + [aux_sym_def_type_statement_token9] = ACTIONS(8790), + [aux_sym_def_type_statement_token10] = ACTIONS(8790), + [aux_sym_def_type_statement_token11] = ACTIONS(8790), + [aux_sym_def_type_statement_token12] = ACTIONS(8790), + [aux_sym_def_type_statement_token13] = ACTIONS(8790), + [aux_sym_def_type_statement_token14] = ACTIONS(8790), + [aux_sym_call_statement_token1] = ACTIONS(8790), + [sym__ambiguous_call_statement] = ACTIONS(8790), + [aux_sym_addressof_expression_token1] = ACTIONS(8790), + [aux_sym_type_of_expression_token1] = ACTIONS(8790), + [aux_sym_unary_expression_token1] = ACTIONS(8790), + [sym_string_literal] = ACTIONS(8792), + [sym_number_literal] = ACTIONS(8792), + [aux_sym_boolean_literal_token1] = ACTIONS(8790), + [aux_sym_boolean_literal_token2] = ACTIONS(8790), + [sym_nothing_literal] = ACTIONS(8790), + [sym_null_literal] = ACTIONS(8790), + [sym_empty_literal] = ACTIONS(8790), + [sym_date_literal] = ACTIONS(8792), + [anon_sym_POUND] = ACTIONS(8790), + }, + [STATE(6141)] = { + [aux_sym_def_type_statement_repeat1] = STATE(6010), + [sym_identifier] = ACTIONS(8577), + [sym_newline] = ACTIONS(8579), + [anon_sym_COLON] = ACTIONS(8579), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8577), + [aux_sym_frm_property_statement_token1] = ACTIONS(8577), + [anon_sym_DOT] = ACTIONS(8577), + [anon_sym_BANG] = ACTIONS(8579), + [aux_sym__attribute_identifier_token1] = ACTIONS(8577), + [aux_sym_option_statement_token3] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8577), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8577), + [aux_sym_preprocessor_const_token1] = ACTIONS(8577), + [sym_static_modifier] = ACTIONS(8577), + [sym__dim_keyword] = ACTIONS(8577), + [sym__redim_keyword] = ACTIONS(8577), + [aux_sym_get_accessor_token1] = ACTIONS(8577), + [aux_sym_set_accessor_token1] = ACTIONS(8577), + [anon_sym_COMMA] = ACTIONS(10927), + [aux_sym_const_declaration_token1] = ACTIONS(8577), + [anon_sym_LPAREN] = ACTIONS(8579), + [aux_sym_as_type_clause_token2] = ACTIONS(8577), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8577), + [aux_sym_visibility_token1] = ACTIONS(8577), + [aux_sym_visibility_token2] = ACTIONS(8577), + [aux_sym_elseif_fragment_token1] = ACTIONS(8577), + [aux_sym_else_fragment_token1] = ACTIONS(8577), + [aux_sym_select_statement_token1] = ACTIONS(8577), + [aux_sym__for_header_token1] = ACTIONS(8577), + [aux_sym_do_statement_token1] = ACTIONS(8577), + [aux_sym_do_condition_token1] = ACTIONS(8577), + [aux_sym_with_statement_token1] = ACTIONS(8577), + [aux_sym_exit_statement_token1] = ACTIONS(8577), + [sym_end_statement] = ACTIONS(8579), + [aux_sym_on_goto_statement_token1] = ACTIONS(8577), + [aux_sym_on_goto_statement_token2] = ACTIONS(8577), + [aux_sym_on_error_statement_token2] = ACTIONS(8577), + [sym__ambiguous_redim_statement] = ACTIONS(8579), + [aux_sym_erase_statement_token1] = ACTIONS(8577), + [aux_sym_open_statement_token1] = ACTIONS(8577), + [aux_sym_file_mode_token2] = ACTIONS(8577), + [aux_sym_file_access_token2] = ACTIONS(8577), + [aux_sym_file_lock_token2] = ACTIONS(8577), + [aux_sym_print_statement_token1] = ACTIONS(8577), + [anon_sym_PLUS] = ACTIONS(8579), + [anon_sym_DASH] = ACTIONS(8577), + [anon_sym_QMARK] = ACTIONS(8579), + [aux_sym_close_statement_token1] = ACTIONS(8577), + [aux_sym_put_statement_token1] = ACTIONS(8577), + [aux_sym_unlock_statement_token1] = ACTIONS(8577), + [aux_sym_seek_statement_token1] = ACTIONS(8577), + [sym_reset_statement] = ACTIONS(8577), + [aux_sym_raise_event_statement_token1] = ACTIONS(8577), + [sym_stop_statement] = ACTIONS(8577), + [sym_beep_statement] = ACTIONS(8577), + [aux_sym_unload_statement_token1] = ACTIONS(8577), + [aux_sym_def_type_statement_token1] = ACTIONS(8577), + [aux_sym_def_type_statement_token2] = ACTIONS(8577), + [aux_sym_def_type_statement_token3] = ACTIONS(8577), + [aux_sym_def_type_statement_token4] = ACTIONS(8577), + [aux_sym_def_type_statement_token5] = ACTIONS(8577), + [aux_sym_def_type_statement_token6] = ACTIONS(8577), + [aux_sym_def_type_statement_token7] = ACTIONS(8577), + [aux_sym_def_type_statement_token8] = ACTIONS(8577), + [aux_sym_def_type_statement_token9] = ACTIONS(8577), + [aux_sym_def_type_statement_token10] = ACTIONS(8577), + [aux_sym_def_type_statement_token11] = ACTIONS(8577), + [aux_sym_def_type_statement_token12] = ACTIONS(8577), + [aux_sym_def_type_statement_token13] = ACTIONS(8577), + [aux_sym_def_type_statement_token14] = ACTIONS(8577), + [aux_sym_call_statement_token1] = ACTIONS(8577), + [sym__ambiguous_call_statement] = ACTIONS(8577), + [aux_sym_addressof_expression_token1] = ACTIONS(8577), + [aux_sym_type_of_expression_token1] = ACTIONS(8577), + [aux_sym_unary_expression_token1] = ACTIONS(8577), + [sym_string_literal] = ACTIONS(8579), + [sym_number_literal] = ACTIONS(8579), + [aux_sym_boolean_literal_token1] = ACTIONS(8577), + [aux_sym_boolean_literal_token2] = ACTIONS(8577), + [sym_nothing_literal] = ACTIONS(8577), + [sym_null_literal] = ACTIONS(8577), + [sym_empty_literal] = ACTIONS(8577), + [sym_date_literal] = ACTIONS(8579), + [anon_sym_POUND] = ACTIONS(8577), + }, + [STATE(6142)] = { + [sym_identifier] = ACTIONS(8624), + [sym_newline] = ACTIONS(8626), + [anon_sym_COLON] = ACTIONS(8626), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8624), + [aux_sym_frm_property_statement_token1] = ACTIONS(8624), + [anon_sym_DOT] = ACTIONS(8624), + [anon_sym_BANG] = ACTIONS(8626), + [aux_sym__attribute_identifier_token1] = ACTIONS(8624), + [aux_sym_option_statement_token3] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8624), + [aux_sym_preprocessor_const_token1] = ACTIONS(8624), + [sym_static_modifier] = ACTIONS(8624), + [sym__dim_keyword] = ACTIONS(8624), + [sym__redim_keyword] = ACTIONS(8624), + [aux_sym_get_accessor_token1] = ACTIONS(8624), + [aux_sym_set_accessor_token1] = ACTIONS(8624), + [aux_sym_const_declaration_token1] = ACTIONS(8624), + [anon_sym_LPAREN] = ACTIONS(8626), + [aux_sym_as_type_clause_token2] = ACTIONS(8624), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8624), + [aux_sym_visibility_token1] = ACTIONS(8624), + [aux_sym_visibility_token2] = ACTIONS(8624), + [aux_sym_elseif_fragment_token1] = ACTIONS(8624), + [aux_sym_else_fragment_token1] = ACTIONS(8624), + [aux_sym_select_statement_token1] = ACTIONS(8624), + [aux_sym__for_header_token1] = ACTIONS(8624), + [aux_sym_do_statement_token1] = ACTIONS(8624), + [aux_sym_do_condition_token1] = ACTIONS(8624), + [aux_sym_while_statement_token1] = ACTIONS(8624), + [aux_sym_with_statement_token1] = ACTIONS(8624), + [aux_sym_exit_statement_token1] = ACTIONS(8624), + [sym_end_statement] = ACTIONS(8626), + [aux_sym_on_goto_statement_token1] = ACTIONS(8624), + [aux_sym_on_goto_statement_token2] = ACTIONS(8624), + [aux_sym_on_error_statement_token2] = ACTIONS(8624), + [sym__ambiguous_redim_statement] = ACTIONS(8626), + [aux_sym_erase_statement_token1] = ACTIONS(8624), + [aux_sym_open_statement_token1] = ACTIONS(8624), + [aux_sym_open_statement_token3] = ACTIONS(11007), + [aux_sym_file_mode_token2] = ACTIONS(8624), + [aux_sym_file_access_token2] = ACTIONS(8624), + [aux_sym_file_lock_token2] = ACTIONS(8624), + [aux_sym_print_statement_token1] = ACTIONS(8624), + [anon_sym_PLUS] = ACTIONS(8626), + [anon_sym_DASH] = ACTIONS(8624), + [anon_sym_QMARK] = ACTIONS(8626), + [aux_sym_close_statement_token1] = ACTIONS(8624), + [aux_sym_put_statement_token1] = ACTIONS(8624), + [aux_sym_unlock_statement_token1] = ACTIONS(8624), + [aux_sym_seek_statement_token1] = ACTIONS(8624), + [sym_reset_statement] = ACTIONS(8624), + [aux_sym_raise_event_statement_token1] = ACTIONS(8624), + [sym_stop_statement] = ACTIONS(8624), + [sym_beep_statement] = ACTIONS(8624), + [aux_sym_unload_statement_token1] = ACTIONS(8624), + [aux_sym_def_type_statement_token1] = ACTIONS(8624), + [aux_sym_def_type_statement_token2] = ACTIONS(8624), + [aux_sym_def_type_statement_token3] = ACTIONS(8624), + [aux_sym_def_type_statement_token4] = ACTIONS(8624), + [aux_sym_def_type_statement_token5] = ACTIONS(8624), + [aux_sym_def_type_statement_token6] = ACTIONS(8624), + [aux_sym_def_type_statement_token7] = ACTIONS(8624), + [aux_sym_def_type_statement_token8] = ACTIONS(8624), + [aux_sym_def_type_statement_token9] = ACTIONS(8624), + [aux_sym_def_type_statement_token10] = ACTIONS(8624), + [aux_sym_def_type_statement_token11] = ACTIONS(8624), + [aux_sym_def_type_statement_token12] = ACTIONS(8624), + [aux_sym_def_type_statement_token13] = ACTIONS(8624), + [aux_sym_def_type_statement_token14] = ACTIONS(8624), + [aux_sym_call_statement_token1] = ACTIONS(8624), + [sym__ambiguous_call_statement] = ACTIONS(8624), + [aux_sym_addressof_expression_token1] = ACTIONS(8624), + [aux_sym_type_of_expression_token1] = ACTIONS(8624), + [aux_sym_unary_expression_token1] = ACTIONS(8624), + [sym_string_literal] = ACTIONS(8626), + [sym_number_literal] = ACTIONS(8626), + [aux_sym_boolean_literal_token1] = ACTIONS(8624), + [aux_sym_boolean_literal_token2] = ACTIONS(8624), + [sym_nothing_literal] = ACTIONS(8624), + [sym_null_literal] = ACTIONS(8624), + [sym_empty_literal] = ACTIONS(8624), + [sym_date_literal] = ACTIONS(8626), + [anon_sym_POUND] = ACTIONS(8624), + }, + [STATE(6143)] = { + [aux_sym_variable_declaration_repeat1] = STATE(6210), + [sym_identifier] = ACTIONS(8591), + [sym_newline] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(8593), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8591), + [aux_sym_frm_property_statement_token1] = ACTIONS(8591), + [anon_sym_DOT] = ACTIONS(8591), + [anon_sym_BANG] = ACTIONS(8593), + [aux_sym__attribute_identifier_token1] = ACTIONS(8591), + [aux_sym_option_statement_token3] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8591), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8591), + [aux_sym_preprocessor_const_token1] = ACTIONS(8591), + [sym_static_modifier] = ACTIONS(8591), + [sym__dim_keyword] = ACTIONS(8591), + [sym__redim_keyword] = ACTIONS(8591), + [aux_sym_get_accessor_token1] = ACTIONS(8591), + [aux_sym_set_accessor_token1] = ACTIONS(8591), + [anon_sym_COMMA] = ACTIONS(10844), + [aux_sym_const_declaration_token1] = ACTIONS(8591), + [anon_sym_LPAREN] = ACTIONS(8593), + [aux_sym_as_type_clause_token2] = ACTIONS(8591), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8591), + [aux_sym_visibility_token1] = ACTIONS(8591), + [aux_sym_visibility_token2] = ACTIONS(8591), + [aux_sym_elseif_fragment_token1] = ACTIONS(8591), + [aux_sym_else_fragment_token1] = ACTIONS(8591), + [aux_sym_select_statement_token1] = ACTIONS(8591), + [aux_sym__for_header_token1] = ACTIONS(8591), + [aux_sym_do_statement_token1] = ACTIONS(8591), + [aux_sym_do_condition_token1] = ACTIONS(8591), + [aux_sym_with_statement_token1] = ACTIONS(8591), + [aux_sym_exit_statement_token1] = ACTIONS(8591), + [sym_end_statement] = ACTIONS(8593), + [aux_sym_on_goto_statement_token1] = ACTIONS(8591), + [aux_sym_on_goto_statement_token2] = ACTIONS(8591), + [aux_sym_on_error_statement_token2] = ACTIONS(8591), + [sym__ambiguous_redim_statement] = ACTIONS(8593), + [aux_sym_erase_statement_token1] = ACTIONS(8591), + [aux_sym_open_statement_token1] = ACTIONS(8591), + [aux_sym_file_mode_token2] = ACTIONS(8591), + [aux_sym_file_access_token2] = ACTIONS(8591), + [aux_sym_file_lock_token2] = ACTIONS(8591), + [aux_sym_print_statement_token1] = ACTIONS(8591), + [anon_sym_PLUS] = ACTIONS(8593), + [anon_sym_DASH] = ACTIONS(8591), + [anon_sym_QMARK] = ACTIONS(8593), + [aux_sym_close_statement_token1] = ACTIONS(8591), + [aux_sym_put_statement_token1] = ACTIONS(8591), + [aux_sym_unlock_statement_token1] = ACTIONS(8591), + [aux_sym_seek_statement_token1] = ACTIONS(8591), + [sym_reset_statement] = ACTIONS(8591), + [aux_sym_raise_event_statement_token1] = ACTIONS(8591), + [sym_stop_statement] = ACTIONS(8591), + [sym_beep_statement] = ACTIONS(8591), + [aux_sym_unload_statement_token1] = ACTIONS(8591), + [aux_sym_def_type_statement_token1] = ACTIONS(8591), + [aux_sym_def_type_statement_token2] = ACTIONS(8591), + [aux_sym_def_type_statement_token3] = ACTIONS(8591), + [aux_sym_def_type_statement_token4] = ACTIONS(8591), + [aux_sym_def_type_statement_token5] = ACTIONS(8591), + [aux_sym_def_type_statement_token6] = ACTIONS(8591), + [aux_sym_def_type_statement_token7] = ACTIONS(8591), + [aux_sym_def_type_statement_token8] = ACTIONS(8591), + [aux_sym_def_type_statement_token9] = ACTIONS(8591), + [aux_sym_def_type_statement_token10] = ACTIONS(8591), + [aux_sym_def_type_statement_token11] = ACTIONS(8591), + [aux_sym_def_type_statement_token12] = ACTIONS(8591), + [aux_sym_def_type_statement_token13] = ACTIONS(8591), + [aux_sym_def_type_statement_token14] = ACTIONS(8591), + [aux_sym_call_statement_token1] = ACTIONS(8591), + [sym__ambiguous_call_statement] = ACTIONS(8591), + [aux_sym_addressof_expression_token1] = ACTIONS(8591), + [aux_sym_type_of_expression_token1] = ACTIONS(8591), + [aux_sym_unary_expression_token1] = ACTIONS(8591), + [sym_string_literal] = ACTIONS(8593), + [sym_number_literal] = ACTIONS(8593), + [aux_sym_boolean_literal_token1] = ACTIONS(8591), + [aux_sym_boolean_literal_token2] = ACTIONS(8591), + [sym_nothing_literal] = ACTIONS(8591), + [sym_null_literal] = ACTIONS(8591), + [sym_empty_literal] = ACTIONS(8591), + [sym_date_literal] = ACTIONS(8593), + [anon_sym_POUND] = ACTIONS(8591), + }, + [STATE(6144)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_while_statement_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(6145)] = { + [sym_identifier] = ACTIONS(8196), + [sym_newline] = ACTIONS(8198), + [anon_sym_COLON] = ACTIONS(8198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8196), + [aux_sym_frm_property_statement_token1] = ACTIONS(8196), + [anon_sym_DOT] = ACTIONS(8196), + [anon_sym_BANG] = ACTIONS(8198), + [aux_sym__attribute_identifier_token1] = ACTIONS(8196), + [aux_sym_option_statement_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8196), + [aux_sym_preprocessor_const_token1] = ACTIONS(8196), + [sym_static_modifier] = ACTIONS(8196), + [sym__dim_keyword] = ACTIONS(8196), + [sym__redim_keyword] = ACTIONS(8196), + [aux_sym_get_accessor_token1] = ACTIONS(8196), + [aux_sym_set_accessor_token1] = ACTIONS(8196), + [anon_sym_COMMA] = ACTIONS(8198), + [aux_sym_const_declaration_token1] = ACTIONS(8196), + [anon_sym_LPAREN] = ACTIONS(8198), + [aux_sym_as_type_clause_token2] = ACTIONS(8196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8196), + [aux_sym_visibility_token1] = ACTIONS(8196), + [aux_sym_visibility_token2] = ACTIONS(8196), + [aux_sym_elseif_fragment_token1] = ACTIONS(8196), + [aux_sym_else_fragment_token1] = ACTIONS(8196), + [aux_sym_select_statement_token1] = ACTIONS(8196), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8196), + [aux_sym__for_header_token1] = ACTIONS(8196), + [aux_sym_do_statement_token1] = ACTIONS(8196), + [aux_sym_do_condition_token1] = ACTIONS(8196), + [aux_sym_with_statement_token1] = ACTIONS(8196), + [aux_sym_exit_statement_token1] = ACTIONS(8196), + [sym_end_statement] = ACTIONS(8198), + [aux_sym_on_goto_statement_token1] = ACTIONS(8196), + [aux_sym_on_goto_statement_token2] = ACTIONS(8196), + [aux_sym_on_error_statement_token2] = ACTIONS(8196), + [sym__ambiguous_redim_statement] = ACTIONS(8198), + [aux_sym_erase_statement_token1] = ACTIONS(8196), + [aux_sym_open_statement_token1] = ACTIONS(8196), + [aux_sym_file_mode_token2] = ACTIONS(8196), + [aux_sym_file_access_token2] = ACTIONS(8196), + [aux_sym_file_lock_token2] = ACTIONS(8196), + [aux_sym_print_statement_token1] = ACTIONS(8196), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(8196), + [anon_sym_QMARK] = ACTIONS(8198), + [aux_sym_close_statement_token1] = ACTIONS(8196), + [aux_sym_put_statement_token1] = ACTIONS(8196), + [aux_sym_unlock_statement_token1] = ACTIONS(8196), + [aux_sym_seek_statement_token1] = ACTIONS(8196), + [sym_reset_statement] = ACTIONS(8196), + [aux_sym_raise_event_statement_token1] = ACTIONS(8196), + [sym_stop_statement] = ACTIONS(8196), + [sym_beep_statement] = ACTIONS(8196), + [aux_sym_unload_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token2] = ACTIONS(8196), + [aux_sym_def_type_statement_token3] = ACTIONS(8196), + [aux_sym_def_type_statement_token4] = ACTIONS(8196), + [aux_sym_def_type_statement_token5] = ACTIONS(8196), + [aux_sym_def_type_statement_token6] = ACTIONS(8196), + [aux_sym_def_type_statement_token7] = ACTIONS(8196), + [aux_sym_def_type_statement_token8] = ACTIONS(8196), + [aux_sym_def_type_statement_token9] = ACTIONS(8196), + [aux_sym_def_type_statement_token10] = ACTIONS(8196), + [aux_sym_def_type_statement_token11] = ACTIONS(8196), + [aux_sym_def_type_statement_token12] = ACTIONS(8196), + [aux_sym_def_type_statement_token13] = ACTIONS(8196), + [aux_sym_def_type_statement_token14] = ACTIONS(8196), + [aux_sym_call_statement_token1] = ACTIONS(8196), + [sym__ambiguous_call_statement] = ACTIONS(8196), + [aux_sym_addressof_expression_token1] = ACTIONS(8196), + [aux_sym_type_of_expression_token1] = ACTIONS(8196), + [aux_sym_unary_expression_token1] = ACTIONS(8196), + [sym_string_literal] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8198), + [aux_sym_boolean_literal_token1] = ACTIONS(8196), + [aux_sym_boolean_literal_token2] = ACTIONS(8196), + [sym_nothing_literal] = ACTIONS(8196), + [sym_null_literal] = ACTIONS(8196), + [sym_empty_literal] = ACTIONS(8196), + [sym_date_literal] = ACTIONS(8198), + [anon_sym_POUND] = ACTIONS(8196), + }, + [STATE(6146)] = { + [sym_identifier] = ACTIONS(8723), + [sym_newline] = ACTIONS(8725), + [anon_sym_COLON] = ACTIONS(8725), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8723), + [aux_sym_frm_property_statement_token1] = ACTIONS(8723), + [anon_sym_DOT] = ACTIONS(8723), + [anon_sym_BANG] = ACTIONS(8725), + [aux_sym__attribute_identifier_token1] = ACTIONS(8723), + [aux_sym_option_statement_token3] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8723), + [aux_sym_preprocessor_const_token1] = ACTIONS(8723), + [sym_static_modifier] = ACTIONS(8723), + [sym__dim_keyword] = ACTIONS(8723), + [sym__redim_keyword] = ACTIONS(8723), + [aux_sym_get_accessor_token1] = ACTIONS(8723), + [aux_sym_set_accessor_token1] = ACTIONS(8723), + [aux_sym_const_declaration_token1] = ACTIONS(8723), + [anon_sym_LPAREN] = ACTIONS(8725), + [aux_sym_as_type_clause_token2] = ACTIONS(8723), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8723), + [aux_sym_visibility_token1] = ACTIONS(8723), + [aux_sym_visibility_token2] = ACTIONS(8723), + [aux_sym_elseif_fragment_token1] = ACTIONS(8723), + [aux_sym_else_fragment_token1] = ACTIONS(8723), + [aux_sym_select_statement_token1] = ACTIONS(8723), + [aux_sym__for_header_token1] = ACTIONS(8723), + [aux_sym_do_statement_token1] = ACTIONS(8723), + [aux_sym_do_condition_token1] = ACTIONS(8723), + [aux_sym_with_statement_token1] = ACTIONS(8723), + [aux_sym_exit_statement_token1] = ACTIONS(8723), + [sym_end_statement] = ACTIONS(8725), + [aux_sym_on_goto_statement_token1] = ACTIONS(8723), + [aux_sym_on_goto_statement_token2] = ACTIONS(8723), + [aux_sym_on_error_statement_token2] = ACTIONS(8723), + [sym__ambiguous_redim_statement] = ACTIONS(8725), + [aux_sym_erase_statement_token1] = ACTIONS(8723), + [aux_sym_open_statement_token1] = ACTIONS(8723), + [aux_sym_open_statement_token3] = ACTIONS(11009), + [aux_sym_file_mode_token2] = ACTIONS(8723), + [aux_sym_file_access_token2] = ACTIONS(8723), + [aux_sym_file_lock_token2] = ACTIONS(8723), + [aux_sym_print_statement_token1] = ACTIONS(8723), + [anon_sym_PLUS] = ACTIONS(8725), + [anon_sym_DASH] = ACTIONS(8723), + [anon_sym_QMARK] = ACTIONS(8725), + [aux_sym_close_statement_token1] = ACTIONS(8723), + [aux_sym_put_statement_token1] = ACTIONS(8723), + [aux_sym_unlock_statement_token1] = ACTIONS(8723), + [aux_sym_seek_statement_token1] = ACTIONS(8723), + [sym_reset_statement] = ACTIONS(8723), + [aux_sym_raise_event_statement_token1] = ACTIONS(8723), + [sym_stop_statement] = ACTIONS(8723), + [sym_beep_statement] = ACTIONS(8723), + [aux_sym_unload_statement_token1] = ACTIONS(8723), + [aux_sym_def_type_statement_token1] = ACTIONS(8723), + [aux_sym_def_type_statement_token2] = ACTIONS(8723), + [aux_sym_def_type_statement_token3] = ACTIONS(8723), + [aux_sym_def_type_statement_token4] = ACTIONS(8723), + [aux_sym_def_type_statement_token5] = ACTIONS(8723), + [aux_sym_def_type_statement_token6] = ACTIONS(8723), + [aux_sym_def_type_statement_token7] = ACTIONS(8723), + [aux_sym_def_type_statement_token8] = ACTIONS(8723), + [aux_sym_def_type_statement_token9] = ACTIONS(8723), + [aux_sym_def_type_statement_token10] = ACTIONS(8723), + [aux_sym_def_type_statement_token11] = ACTIONS(8723), + [aux_sym_def_type_statement_token12] = ACTIONS(8723), + [aux_sym_def_type_statement_token13] = ACTIONS(8723), + [aux_sym_def_type_statement_token14] = ACTIONS(8723), + [aux_sym_call_statement_token1] = ACTIONS(8723), + [sym__ambiguous_call_statement] = ACTIONS(8723), + [aux_sym_addressof_expression_token1] = ACTIONS(8723), + [aux_sym_type_of_expression_token1] = ACTIONS(8723), + [aux_sym_unary_expression_token1] = ACTIONS(8723), + [sym_string_literal] = ACTIONS(8725), + [sym_number_literal] = ACTIONS(8725), + [aux_sym_boolean_literal_token1] = ACTIONS(8723), + [aux_sym_boolean_literal_token2] = ACTIONS(8723), + [sym_nothing_literal] = ACTIONS(8723), + [sym_null_literal] = ACTIONS(8723), + [sym_empty_literal] = ACTIONS(8723), + [sym_date_literal] = ACTIONS(8725), + [anon_sym_POUND] = ACTIONS(8723), + }, + [STATE(6147)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6265), + [sym_identifier] = ACTIONS(8772), + [sym_newline] = ACTIONS(8774), + [anon_sym_COLON] = ACTIONS(8774), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8772), + [aux_sym_frm_property_statement_token1] = ACTIONS(8772), + [anon_sym_DOT] = ACTIONS(8772), + [anon_sym_BANG] = ACTIONS(8774), + [aux_sym__attribute_identifier_token1] = ACTIONS(8772), + [aux_sym_option_statement_token3] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8772), + [aux_sym_preprocessor_const_token1] = ACTIONS(8772), + [sym_static_modifier] = ACTIONS(8772), + [sym__dim_keyword] = ACTIONS(8772), + [sym__redim_keyword] = ACTIONS(8772), + [aux_sym_get_accessor_token1] = ACTIONS(8772), + [aux_sym_set_accessor_token1] = ACTIONS(8772), + [aux_sym_const_declaration_token1] = ACTIONS(8772), + [anon_sym_LPAREN] = ACTIONS(8774), + [aux_sym_as_type_clause_token2] = ACTIONS(8772), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8772), + [aux_sym_visibility_token1] = ACTIONS(8772), + [aux_sym_visibility_token2] = ACTIONS(8772), + [aux_sym_elseif_fragment_token1] = ACTIONS(8772), + [aux_sym_else_fragment_token1] = ACTIONS(8772), + [aux_sym_select_statement_token1] = ACTIONS(8772), + [aux_sym_select_statement_token2] = ACTIONS(8772), + [aux_sym__for_header_token1] = ACTIONS(8772), + [aux_sym_do_statement_token1] = ACTIONS(8772), + [aux_sym_do_condition_token1] = ACTIONS(8772), + [aux_sym_with_statement_token1] = ACTIONS(8772), + [aux_sym_exit_statement_token1] = ACTIONS(8772), + [sym_end_statement] = ACTIONS(8774), + [aux_sym_on_goto_statement_token1] = ACTIONS(8772), + [aux_sym_on_goto_statement_token2] = ACTIONS(8772), + [aux_sym_on_error_statement_token2] = ACTIONS(8772), + [sym__ambiguous_redim_statement] = ACTIONS(8774), + [aux_sym_erase_statement_token1] = ACTIONS(8772), + [aux_sym_open_statement_token1] = ACTIONS(8772), + [aux_sym_file_mode_token2] = ACTIONS(8772), + [aux_sym_file_access_token2] = ACTIONS(8772), + [aux_sym_file_lock_token2] = ACTIONS(8772), + [aux_sym_print_statement_token1] = ACTIONS(8772), + [anon_sym_PLUS] = ACTIONS(8774), + [anon_sym_DASH] = ACTIONS(8772), + [anon_sym_QMARK] = ACTIONS(8774), + [aux_sym_close_statement_token1] = ACTIONS(8772), + [aux_sym_put_statement_token1] = ACTIONS(8772), + [aux_sym_unlock_statement_token1] = ACTIONS(8772), + [aux_sym_seek_statement_token1] = ACTIONS(8772), + [sym_reset_statement] = ACTIONS(8772), + [aux_sym_raise_event_statement_token1] = ACTIONS(8772), + [sym_stop_statement] = ACTIONS(8772), + [sym_beep_statement] = ACTIONS(8772), + [aux_sym_unload_statement_token1] = ACTIONS(8772), + [aux_sym_def_type_statement_token1] = ACTIONS(8772), + [aux_sym_def_type_statement_token2] = ACTIONS(8772), + [aux_sym_def_type_statement_token3] = ACTIONS(8772), + [aux_sym_def_type_statement_token4] = ACTIONS(8772), + [aux_sym_def_type_statement_token5] = ACTIONS(8772), + [aux_sym_def_type_statement_token6] = ACTIONS(8772), + [aux_sym_def_type_statement_token7] = ACTIONS(8772), + [aux_sym_def_type_statement_token8] = ACTIONS(8772), + [aux_sym_def_type_statement_token9] = ACTIONS(8772), + [aux_sym_def_type_statement_token10] = ACTIONS(8772), + [aux_sym_def_type_statement_token11] = ACTIONS(8772), + [aux_sym_def_type_statement_token12] = ACTIONS(8772), + [aux_sym_def_type_statement_token13] = ACTIONS(8772), + [aux_sym_def_type_statement_token14] = ACTIONS(8772), + [aux_sym_call_statement_token1] = ACTIONS(8772), + [sym__ambiguous_call_statement] = ACTIONS(8772), + [aux_sym_addressof_expression_token1] = ACTIONS(8772), + [aux_sym_type_of_expression_token1] = ACTIONS(8772), + [aux_sym_unary_expression_token1] = ACTIONS(8772), + [sym_string_literal] = ACTIONS(8774), + [sym_number_literal] = ACTIONS(8774), + [aux_sym_boolean_literal_token1] = ACTIONS(8772), + [aux_sym_boolean_literal_token2] = ACTIONS(8772), + [sym_nothing_literal] = ACTIONS(8772), + [sym_null_literal] = ACTIONS(8772), + [sym_empty_literal] = ACTIONS(8772), + [sym_date_literal] = ACTIONS(8774), + [anon_sym_POUND] = ACTIONS(8772), + }, + [STATE(6148)] = { + [aux_sym_variable_declaration_repeat1] = STATE(6210), + [sym_identifier] = ACTIONS(8166), + [sym_newline] = ACTIONS(8168), + [anon_sym_COLON] = ACTIONS(8168), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8166), + [aux_sym_frm_property_statement_token1] = ACTIONS(8166), + [anon_sym_DOT] = ACTIONS(8166), + [anon_sym_BANG] = ACTIONS(8168), + [aux_sym__attribute_identifier_token1] = ACTIONS(8166), + [aux_sym_option_statement_token3] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8166), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8166), + [aux_sym_preprocessor_const_token1] = ACTIONS(8166), + [sym_static_modifier] = ACTIONS(8166), + [sym__dim_keyword] = ACTIONS(8166), + [sym__redim_keyword] = ACTIONS(8166), + [aux_sym_get_accessor_token1] = ACTIONS(8166), + [aux_sym_set_accessor_token1] = ACTIONS(8166), + [anon_sym_COMMA] = ACTIONS(10844), + [aux_sym_const_declaration_token1] = ACTIONS(8166), + [anon_sym_LPAREN] = ACTIONS(8168), + [aux_sym_as_type_clause_token2] = ACTIONS(8166), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8166), + [aux_sym_visibility_token1] = ACTIONS(8166), + [aux_sym_visibility_token2] = ACTIONS(8166), + [aux_sym_elseif_fragment_token1] = ACTIONS(8166), + [aux_sym_else_fragment_token1] = ACTIONS(8166), + [aux_sym_select_statement_token1] = ACTIONS(8166), + [aux_sym__for_header_token1] = ACTIONS(8166), + [aux_sym_do_statement_token1] = ACTIONS(8166), + [aux_sym_do_condition_token1] = ACTIONS(8166), + [aux_sym_with_statement_token1] = ACTIONS(8166), + [aux_sym_exit_statement_token1] = ACTIONS(8166), + [sym_end_statement] = ACTIONS(8168), + [aux_sym_on_goto_statement_token1] = ACTIONS(8166), + [aux_sym_on_goto_statement_token2] = ACTIONS(8166), + [aux_sym_on_error_statement_token2] = ACTIONS(8166), + [sym__ambiguous_redim_statement] = ACTIONS(8168), + [aux_sym_erase_statement_token1] = ACTIONS(8166), + [aux_sym_open_statement_token1] = ACTIONS(8166), + [aux_sym_file_mode_token2] = ACTIONS(8166), + [aux_sym_file_access_token2] = ACTIONS(8166), + [aux_sym_file_lock_token2] = ACTIONS(8166), + [aux_sym_print_statement_token1] = ACTIONS(8166), + [anon_sym_PLUS] = ACTIONS(8168), + [anon_sym_DASH] = ACTIONS(8166), + [anon_sym_QMARK] = ACTIONS(8168), + [aux_sym_close_statement_token1] = ACTIONS(8166), + [aux_sym_put_statement_token1] = ACTIONS(8166), + [aux_sym_unlock_statement_token1] = ACTIONS(8166), + [aux_sym_seek_statement_token1] = ACTIONS(8166), + [sym_reset_statement] = ACTIONS(8166), + [aux_sym_raise_event_statement_token1] = ACTIONS(8166), + [sym_stop_statement] = ACTIONS(8166), + [sym_beep_statement] = ACTIONS(8166), + [aux_sym_unload_statement_token1] = ACTIONS(8166), + [aux_sym_def_type_statement_token1] = ACTIONS(8166), + [aux_sym_def_type_statement_token2] = ACTIONS(8166), + [aux_sym_def_type_statement_token3] = ACTIONS(8166), + [aux_sym_def_type_statement_token4] = ACTIONS(8166), + [aux_sym_def_type_statement_token5] = ACTIONS(8166), + [aux_sym_def_type_statement_token6] = ACTIONS(8166), + [aux_sym_def_type_statement_token7] = ACTIONS(8166), + [aux_sym_def_type_statement_token8] = ACTIONS(8166), + [aux_sym_def_type_statement_token9] = ACTIONS(8166), + [aux_sym_def_type_statement_token10] = ACTIONS(8166), + [aux_sym_def_type_statement_token11] = ACTIONS(8166), + [aux_sym_def_type_statement_token12] = ACTIONS(8166), + [aux_sym_def_type_statement_token13] = ACTIONS(8166), + [aux_sym_def_type_statement_token14] = ACTIONS(8166), + [aux_sym_call_statement_token1] = ACTIONS(8166), + [sym__ambiguous_call_statement] = ACTIONS(8166), + [aux_sym_addressof_expression_token1] = ACTIONS(8166), + [aux_sym_type_of_expression_token1] = ACTIONS(8166), + [aux_sym_unary_expression_token1] = ACTIONS(8166), + [sym_string_literal] = ACTIONS(8168), + [sym_number_literal] = ACTIONS(8168), + [aux_sym_boolean_literal_token1] = ACTIONS(8166), + [aux_sym_boolean_literal_token2] = ACTIONS(8166), + [sym_nothing_literal] = ACTIONS(8166), + [sym_null_literal] = ACTIONS(8166), + [sym_empty_literal] = ACTIONS(8166), + [sym_date_literal] = ACTIONS(8168), + [anon_sym_POUND] = ACTIONS(8166), + }, + [STATE(6149)] = { + [aux_sym_const_declaration_repeat1] = STATE(6267), + [sym_identifier] = ACTIONS(8174), + [sym_newline] = ACTIONS(8176), + [anon_sym_COLON] = ACTIONS(8176), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8174), + [aux_sym_frm_property_statement_token1] = ACTIONS(8174), + [anon_sym_DOT] = ACTIONS(8174), + [anon_sym_BANG] = ACTIONS(8176), + [aux_sym__attribute_identifier_token1] = ACTIONS(8174), + [aux_sym_option_statement_token3] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8174), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8174), + [aux_sym_preprocessor_const_token1] = ACTIONS(8174), + [sym_static_modifier] = ACTIONS(8174), + [sym__dim_keyword] = ACTIONS(8174), + [sym__redim_keyword] = ACTIONS(8174), + [aux_sym_get_accessor_token1] = ACTIONS(8174), + [aux_sym_set_accessor_token1] = ACTIONS(8174), + [anon_sym_COMMA] = ACTIONS(10891), + [aux_sym_const_declaration_token1] = ACTIONS(8174), + [anon_sym_LPAREN] = ACTIONS(8176), + [aux_sym_as_type_clause_token2] = ACTIONS(8174), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8174), + [aux_sym_visibility_token1] = ACTIONS(8174), + [aux_sym_visibility_token2] = ACTIONS(8174), + [aux_sym_elseif_fragment_token1] = ACTIONS(8174), + [aux_sym_else_fragment_token1] = ACTIONS(8174), + [aux_sym_select_statement_token1] = ACTIONS(8174), + [aux_sym__for_header_token1] = ACTIONS(8174), + [aux_sym_do_statement_token1] = ACTIONS(8174), + [aux_sym_do_condition_token1] = ACTIONS(8174), + [aux_sym_with_statement_token1] = ACTIONS(8174), + [aux_sym_exit_statement_token1] = ACTIONS(8174), + [sym_end_statement] = ACTIONS(8176), + [aux_sym_on_goto_statement_token1] = ACTIONS(8174), + [aux_sym_on_goto_statement_token2] = ACTIONS(8174), + [aux_sym_on_error_statement_token2] = ACTIONS(8174), + [sym__ambiguous_redim_statement] = ACTIONS(8176), + [aux_sym_erase_statement_token1] = ACTIONS(8174), + [aux_sym_open_statement_token1] = ACTIONS(8174), + [aux_sym_file_mode_token2] = ACTIONS(8174), + [aux_sym_file_access_token2] = ACTIONS(8174), + [aux_sym_file_lock_token2] = ACTIONS(8174), + [aux_sym_print_statement_token1] = ACTIONS(8174), + [anon_sym_PLUS] = ACTIONS(8176), + [anon_sym_DASH] = ACTIONS(8174), + [anon_sym_QMARK] = ACTIONS(8176), + [aux_sym_close_statement_token1] = ACTIONS(8174), + [aux_sym_put_statement_token1] = ACTIONS(8174), + [aux_sym_unlock_statement_token1] = ACTIONS(8174), + [aux_sym_seek_statement_token1] = ACTIONS(8174), + [sym_reset_statement] = ACTIONS(8174), + [aux_sym_raise_event_statement_token1] = ACTIONS(8174), + [sym_stop_statement] = ACTIONS(8174), + [sym_beep_statement] = ACTIONS(8174), + [aux_sym_unload_statement_token1] = ACTIONS(8174), + [aux_sym_def_type_statement_token1] = ACTIONS(8174), + [aux_sym_def_type_statement_token2] = ACTIONS(8174), + [aux_sym_def_type_statement_token3] = ACTIONS(8174), + [aux_sym_def_type_statement_token4] = ACTIONS(8174), + [aux_sym_def_type_statement_token5] = ACTIONS(8174), + [aux_sym_def_type_statement_token6] = ACTIONS(8174), + [aux_sym_def_type_statement_token7] = ACTIONS(8174), + [aux_sym_def_type_statement_token8] = ACTIONS(8174), + [aux_sym_def_type_statement_token9] = ACTIONS(8174), + [aux_sym_def_type_statement_token10] = ACTIONS(8174), + [aux_sym_def_type_statement_token11] = ACTIONS(8174), + [aux_sym_def_type_statement_token12] = ACTIONS(8174), + [aux_sym_def_type_statement_token13] = ACTIONS(8174), + [aux_sym_def_type_statement_token14] = ACTIONS(8174), + [aux_sym_call_statement_token1] = ACTIONS(8174), + [sym__ambiguous_call_statement] = ACTIONS(8174), + [aux_sym_addressof_expression_token1] = ACTIONS(8174), + [aux_sym_type_of_expression_token1] = ACTIONS(8174), + [aux_sym_unary_expression_token1] = ACTIONS(8174), + [sym_string_literal] = ACTIONS(8176), + [sym_number_literal] = ACTIONS(8176), + [aux_sym_boolean_literal_token1] = ACTIONS(8174), + [aux_sym_boolean_literal_token2] = ACTIONS(8174), + [sym_nothing_literal] = ACTIONS(8174), + [sym_null_literal] = ACTIONS(8174), + [sym_empty_literal] = ACTIONS(8174), + [sym_date_literal] = ACTIONS(8176), + [anon_sym_POUND] = ACTIONS(8174), + }, + [STATE(6150)] = { + [sym_identifier] = ACTIONS(8839), + [sym_newline] = ACTIONS(8841), + [anon_sym_COLON] = ACTIONS(8841), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8839), + [aux_sym_frm_property_statement_token1] = ACTIONS(8839), + [anon_sym_DOT] = ACTIONS(8839), + [anon_sym_BANG] = ACTIONS(8841), + [aux_sym__attribute_identifier_token1] = ACTIONS(8839), + [aux_sym_option_statement_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8839), + [aux_sym_preprocessor_const_token1] = ACTIONS(8839), + [sym_static_modifier] = ACTIONS(8839), + [sym__dim_keyword] = ACTIONS(8839), + [sym__redim_keyword] = ACTIONS(8839), + [aux_sym_get_accessor_token1] = ACTIONS(8839), + [aux_sym_set_accessor_token1] = ACTIONS(8839), + [aux_sym_const_declaration_token1] = ACTIONS(8839), + [anon_sym_LPAREN] = ACTIONS(8841), + [aux_sym_as_type_clause_token2] = ACTIONS(8839), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8839), + [aux_sym_visibility_token1] = ACTIONS(8839), + [aux_sym_visibility_token2] = ACTIONS(8839), + [aux_sym_elseif_fragment_token1] = ACTIONS(8839), + [aux_sym_else_fragment_token1] = ACTIONS(8839), + [aux_sym_select_statement_token1] = ACTIONS(8839), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8839), + [aux_sym__for_header_token1] = ACTIONS(8839), + [aux_sym_do_statement_token1] = ACTIONS(8839), + [aux_sym_do_condition_token1] = ACTIONS(8839), + [aux_sym_with_statement_token1] = ACTIONS(8839), + [aux_sym_exit_statement_token1] = ACTIONS(8839), + [sym_end_statement] = ACTIONS(8841), + [aux_sym_on_goto_statement_token1] = ACTIONS(8839), + [aux_sym_on_goto_statement_token2] = ACTIONS(8839), + [aux_sym_on_error_statement_token2] = ACTIONS(8839), + [sym__ambiguous_redim_statement] = ACTIONS(8841), + [aux_sym_erase_statement_token1] = ACTIONS(8839), + [aux_sym_open_statement_token1] = ACTIONS(8839), + [aux_sym_file_mode_token2] = ACTIONS(8839), + [aux_sym_file_access_token2] = ACTIONS(8839), + [aux_sym_file_lock_token2] = ACTIONS(8839), + [aux_sym_print_statement_token1] = ACTIONS(8839), + [anon_sym_PLUS] = ACTIONS(8841), + [anon_sym_DASH] = ACTIONS(8839), + [anon_sym_QMARK] = ACTIONS(8841), + [aux_sym_close_statement_token1] = ACTIONS(8839), + [aux_sym_put_statement_token1] = ACTIONS(8839), + [aux_sym_unlock_statement_token1] = ACTIONS(8839), + [aux_sym_seek_statement_token1] = ACTIONS(8839), + [sym_reset_statement] = ACTIONS(8839), + [aux_sym_raise_event_statement_token1] = ACTIONS(8839), + [sym_stop_statement] = ACTIONS(8839), + [sym_beep_statement] = ACTIONS(8839), + [aux_sym_unload_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token2] = ACTIONS(8839), + [aux_sym_def_type_statement_token3] = ACTIONS(8839), + [aux_sym_def_type_statement_token4] = ACTIONS(8839), + [aux_sym_def_type_statement_token5] = ACTIONS(8839), + [aux_sym_def_type_statement_token6] = ACTIONS(8839), + [aux_sym_def_type_statement_token7] = ACTIONS(8839), + [aux_sym_def_type_statement_token8] = ACTIONS(8839), + [aux_sym_def_type_statement_token9] = ACTIONS(8839), + [aux_sym_def_type_statement_token10] = ACTIONS(8839), + [aux_sym_def_type_statement_token11] = ACTIONS(8839), + [aux_sym_def_type_statement_token12] = ACTIONS(8839), + [aux_sym_def_type_statement_token13] = ACTIONS(8839), + [aux_sym_def_type_statement_token14] = ACTIONS(8839), + [aux_sym_call_statement_token1] = ACTIONS(8839), + [sym__ambiguous_call_statement] = ACTIONS(8839), + [aux_sym_addressof_expression_token1] = ACTIONS(8839), + [aux_sym_type_of_expression_token1] = ACTIONS(8839), + [aux_sym_unary_expression_token1] = ACTIONS(8839), + [sym_string_literal] = ACTIONS(8841), + [sym_number_literal] = ACTIONS(8841), + [aux_sym_boolean_literal_token1] = ACTIONS(8839), + [aux_sym_boolean_literal_token2] = ACTIONS(8839), + [sym_nothing_literal] = ACTIONS(8839), + [sym_null_literal] = ACTIONS(8839), + [sym_empty_literal] = ACTIONS(8839), + [sym_date_literal] = ACTIONS(8841), + [anon_sym_POUND] = ACTIONS(8839), + }, + [STATE(6151)] = { + [sym_identifier] = ACTIONS(8723), + [sym_newline] = ACTIONS(8725), + [anon_sym_COLON] = ACTIONS(8725), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8723), + [aux_sym_frm_property_statement_token1] = ACTIONS(8723), + [anon_sym_DOT] = ACTIONS(8723), + [anon_sym_BANG] = ACTIONS(8725), + [aux_sym__attribute_identifier_token1] = ACTIONS(8723), + [aux_sym_option_statement_token3] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8723), + [aux_sym_preprocessor_const_token1] = ACTIONS(8723), + [sym_static_modifier] = ACTIONS(8723), + [sym__dim_keyword] = ACTIONS(8723), + [sym__redim_keyword] = ACTIONS(8723), + [aux_sym_get_accessor_token1] = ACTIONS(8723), + [aux_sym_set_accessor_token1] = ACTIONS(8723), + [aux_sym_const_declaration_token1] = ACTIONS(8723), + [anon_sym_LPAREN] = ACTIONS(8725), + [aux_sym_as_type_clause_token2] = ACTIONS(8723), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8723), + [aux_sym_visibility_token1] = ACTIONS(8723), + [aux_sym_visibility_token2] = ACTIONS(8723), + [aux_sym_elseif_fragment_token1] = ACTIONS(8723), + [aux_sym_else_fragment_token1] = ACTIONS(8723), + [aux_sym_select_statement_token1] = ACTIONS(8723), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8723), + [aux_sym__for_header_token1] = ACTIONS(8723), + [aux_sym_do_statement_token1] = ACTIONS(8723), + [aux_sym_do_condition_token1] = ACTIONS(8723), + [aux_sym_with_statement_token1] = ACTIONS(8723), + [aux_sym_exit_statement_token1] = ACTIONS(8723), + [sym_end_statement] = ACTIONS(8725), + [aux_sym_on_goto_statement_token1] = ACTIONS(8723), + [aux_sym_on_goto_statement_token2] = ACTIONS(8723), + [aux_sym_on_error_statement_token2] = ACTIONS(8723), + [sym__ambiguous_redim_statement] = ACTIONS(8725), + [aux_sym_erase_statement_token1] = ACTIONS(8723), + [aux_sym_open_statement_token1] = ACTIONS(8723), + [aux_sym_open_statement_token3] = ACTIONS(11011), + [aux_sym_file_mode_token2] = ACTIONS(8723), + [aux_sym_file_access_token2] = ACTIONS(8723), + [aux_sym_file_lock_token2] = ACTIONS(8723), + [aux_sym_print_statement_token1] = ACTIONS(8723), + [anon_sym_PLUS] = ACTIONS(8725), + [anon_sym_DASH] = ACTIONS(8723), + [anon_sym_QMARK] = ACTIONS(8725), + [aux_sym_close_statement_token1] = ACTIONS(8723), + [aux_sym_put_statement_token1] = ACTIONS(8723), + [aux_sym_unlock_statement_token1] = ACTIONS(8723), + [aux_sym_seek_statement_token1] = ACTIONS(8723), + [sym_reset_statement] = ACTIONS(8723), + [aux_sym_raise_event_statement_token1] = ACTIONS(8723), + [sym_stop_statement] = ACTIONS(8723), + [sym_beep_statement] = ACTIONS(8723), + [aux_sym_unload_statement_token1] = ACTIONS(8723), + [aux_sym_def_type_statement_token1] = ACTIONS(8723), + [aux_sym_def_type_statement_token2] = ACTIONS(8723), + [aux_sym_def_type_statement_token3] = ACTIONS(8723), + [aux_sym_def_type_statement_token4] = ACTIONS(8723), + [aux_sym_def_type_statement_token5] = ACTIONS(8723), + [aux_sym_def_type_statement_token6] = ACTIONS(8723), + [aux_sym_def_type_statement_token7] = ACTIONS(8723), + [aux_sym_def_type_statement_token8] = ACTIONS(8723), + [aux_sym_def_type_statement_token9] = ACTIONS(8723), + [aux_sym_def_type_statement_token10] = ACTIONS(8723), + [aux_sym_def_type_statement_token11] = ACTIONS(8723), + [aux_sym_def_type_statement_token12] = ACTIONS(8723), + [aux_sym_def_type_statement_token13] = ACTIONS(8723), + [aux_sym_def_type_statement_token14] = ACTIONS(8723), + [aux_sym_call_statement_token1] = ACTIONS(8723), + [sym__ambiguous_call_statement] = ACTIONS(8723), + [aux_sym_addressof_expression_token1] = ACTIONS(8723), + [aux_sym_type_of_expression_token1] = ACTIONS(8723), + [aux_sym_unary_expression_token1] = ACTIONS(8723), + [sym_string_literal] = ACTIONS(8725), + [sym_number_literal] = ACTIONS(8725), + [aux_sym_boolean_literal_token1] = ACTIONS(8723), + [aux_sym_boolean_literal_token2] = ACTIONS(8723), + [sym_nothing_literal] = ACTIONS(8723), + [sym_null_literal] = ACTIONS(8723), + [sym_empty_literal] = ACTIONS(8723), + [sym_date_literal] = ACTIONS(8725), + [anon_sym_POUND] = ACTIONS(8723), + }, + [STATE(6152)] = { + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(7951), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(6153)] = { + [sym_identifier] = ACTIONS(8635), + [sym_newline] = ACTIONS(8637), + [anon_sym_COLON] = ACTIONS(8637), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8635), + [aux_sym_frm_property_statement_token1] = ACTIONS(8635), + [anon_sym_DOT] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(8637), + [aux_sym__attribute_identifier_token1] = ACTIONS(8635), + [aux_sym_option_statement_token3] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8635), + [aux_sym_preprocessor_const_token1] = ACTIONS(8635), + [sym_static_modifier] = ACTIONS(8635), + [sym__dim_keyword] = ACTIONS(8635), + [sym__redim_keyword] = ACTIONS(8635), + [aux_sym_get_accessor_token1] = ACTIONS(8635), + [aux_sym_set_accessor_token1] = ACTIONS(8635), + [anon_sym_COMMA] = ACTIONS(11013), + [aux_sym_const_declaration_token1] = ACTIONS(8635), + [anon_sym_LPAREN] = ACTIONS(8637), + [aux_sym_as_type_clause_token2] = ACTIONS(8635), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8635), + [aux_sym_visibility_token1] = ACTIONS(8635), + [aux_sym_visibility_token2] = ACTIONS(8635), + [aux_sym_elseif_fragment_token1] = ACTIONS(8635), + [aux_sym_else_fragment_token1] = ACTIONS(8635), + [aux_sym_select_statement_token1] = ACTIONS(8635), + [aux_sym__for_header_token1] = ACTIONS(8635), + [aux_sym_do_statement_token1] = ACTIONS(8635), + [aux_sym_do_condition_token1] = ACTIONS(8635), + [aux_sym_while_statement_token1] = ACTIONS(8635), + [aux_sym_with_statement_token1] = ACTIONS(8635), + [aux_sym_exit_statement_token1] = ACTIONS(8635), + [sym_end_statement] = ACTIONS(8637), + [aux_sym_on_goto_statement_token1] = ACTIONS(8635), + [aux_sym_on_goto_statement_token2] = ACTIONS(8635), + [aux_sym_on_error_statement_token2] = ACTIONS(8635), + [sym__ambiguous_redim_statement] = ACTIONS(8637), + [aux_sym_erase_statement_token1] = ACTIONS(8635), + [aux_sym_open_statement_token1] = ACTIONS(8635), + [aux_sym_file_mode_token2] = ACTIONS(8635), + [aux_sym_file_access_token2] = ACTIONS(8635), + [aux_sym_file_lock_token2] = ACTIONS(8635), + [aux_sym_print_statement_token1] = ACTIONS(8635), + [anon_sym_PLUS] = ACTIONS(8637), + [anon_sym_DASH] = ACTIONS(8635), + [anon_sym_QMARK] = ACTIONS(8637), + [aux_sym_close_statement_token1] = ACTIONS(8635), + [aux_sym_put_statement_token1] = ACTIONS(8635), + [aux_sym_unlock_statement_token1] = ACTIONS(8635), + [aux_sym_seek_statement_token1] = ACTIONS(8635), + [sym_reset_statement] = ACTIONS(8635), + [aux_sym_raise_event_statement_token1] = ACTIONS(8635), + [sym_stop_statement] = ACTIONS(8635), + [sym_beep_statement] = ACTIONS(8635), + [aux_sym_unload_statement_token1] = ACTIONS(8635), + [aux_sym_def_type_statement_token1] = ACTIONS(8635), + [aux_sym_def_type_statement_token2] = ACTIONS(8635), + [aux_sym_def_type_statement_token3] = ACTIONS(8635), + [aux_sym_def_type_statement_token4] = ACTIONS(8635), + [aux_sym_def_type_statement_token5] = ACTIONS(8635), + [aux_sym_def_type_statement_token6] = ACTIONS(8635), + [aux_sym_def_type_statement_token7] = ACTIONS(8635), + [aux_sym_def_type_statement_token8] = ACTIONS(8635), + [aux_sym_def_type_statement_token9] = ACTIONS(8635), + [aux_sym_def_type_statement_token10] = ACTIONS(8635), + [aux_sym_def_type_statement_token11] = ACTIONS(8635), + [aux_sym_def_type_statement_token12] = ACTIONS(8635), + [aux_sym_def_type_statement_token13] = ACTIONS(8635), + [aux_sym_def_type_statement_token14] = ACTIONS(8635), + [aux_sym_call_statement_token1] = ACTIONS(8635), + [sym__ambiguous_call_statement] = ACTIONS(8635), + [aux_sym_addressof_expression_token1] = ACTIONS(8635), + [aux_sym_type_of_expression_token1] = ACTIONS(8635), + [aux_sym_unary_expression_token1] = ACTIONS(8635), + [sym_string_literal] = ACTIONS(8637), + [sym_number_literal] = ACTIONS(8637), + [aux_sym_boolean_literal_token1] = ACTIONS(8635), + [aux_sym_boolean_literal_token2] = ACTIONS(8635), + [sym_nothing_literal] = ACTIONS(8635), + [sym_null_literal] = ACTIONS(8635), + [sym_empty_literal] = ACTIONS(8635), + [sym_date_literal] = ACTIONS(8637), + [anon_sym_POUND] = ACTIONS(8635), + }, + [STATE(6154)] = { + [sym_identifier] = ACTIONS(8713), + [sym_newline] = ACTIONS(8715), + [anon_sym_COLON] = ACTIONS(8715), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8713), + [aux_sym_frm_property_statement_token1] = ACTIONS(8713), + [anon_sym_DOT] = ACTIONS(8713), + [anon_sym_BANG] = ACTIONS(8715), + [aux_sym__attribute_identifier_token1] = ACTIONS(8713), + [aux_sym_option_statement_token3] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8713), + [aux_sym_preprocessor_const_token1] = ACTIONS(8713), + [sym_static_modifier] = ACTIONS(8713), + [sym__dim_keyword] = ACTIONS(8713), + [sym__redim_keyword] = ACTIONS(8713), + [aux_sym_get_accessor_token1] = ACTIONS(8713), + [aux_sym_set_accessor_token1] = ACTIONS(8713), + [anon_sym_COMMA] = ACTIONS(8715), + [aux_sym_const_declaration_token1] = ACTIONS(8713), + [anon_sym_LPAREN] = ACTIONS(8715), + [aux_sym_as_type_clause_token2] = ACTIONS(8713), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8713), + [aux_sym_visibility_token1] = ACTIONS(8713), + [aux_sym_visibility_token2] = ACTIONS(8713), + [aux_sym_elseif_fragment_token1] = ACTIONS(8713), + [aux_sym_else_fragment_token1] = ACTIONS(8713), + [aux_sym_select_statement_token1] = ACTIONS(8713), + [aux_sym__for_header_token1] = ACTIONS(8713), + [aux_sym_do_statement_token1] = ACTIONS(8713), + [aux_sym_do_condition_token1] = ACTIONS(8713), + [aux_sym_while_statement_token1] = ACTIONS(8713), + [aux_sym_with_statement_token1] = ACTIONS(8713), + [aux_sym_exit_statement_token1] = ACTIONS(8713), + [sym_end_statement] = ACTIONS(8715), + [aux_sym_on_goto_statement_token1] = ACTIONS(8713), + [aux_sym_on_goto_statement_token2] = ACTIONS(8713), + [aux_sym_on_error_statement_token2] = ACTIONS(8713), + [sym__ambiguous_redim_statement] = ACTIONS(8715), + [aux_sym_erase_statement_token1] = ACTIONS(8713), + [aux_sym_open_statement_token1] = ACTIONS(8713), + [aux_sym_file_mode_token2] = ACTIONS(8713), + [aux_sym_file_access_token2] = ACTIONS(8713), + [aux_sym_file_lock_token2] = ACTIONS(8713), + [aux_sym_print_statement_token1] = ACTIONS(8713), + [anon_sym_PLUS] = ACTIONS(8715), + [anon_sym_DASH] = ACTIONS(8713), + [anon_sym_QMARK] = ACTIONS(8715), + [aux_sym_close_statement_token1] = ACTIONS(8713), + [aux_sym_put_statement_token1] = ACTIONS(8713), + [aux_sym_unlock_statement_token1] = ACTIONS(8713), + [aux_sym_seek_statement_token1] = ACTIONS(8713), + [sym_reset_statement] = ACTIONS(8713), + [aux_sym_raise_event_statement_token1] = ACTIONS(8713), + [sym_stop_statement] = ACTIONS(8713), + [sym_beep_statement] = ACTIONS(8713), + [aux_sym_unload_statement_token1] = ACTIONS(8713), + [aux_sym_def_type_statement_token1] = ACTIONS(8713), + [aux_sym_def_type_statement_token2] = ACTIONS(8713), + [aux_sym_def_type_statement_token3] = ACTIONS(8713), + [aux_sym_def_type_statement_token4] = ACTIONS(8713), + [aux_sym_def_type_statement_token5] = ACTIONS(8713), + [aux_sym_def_type_statement_token6] = ACTIONS(8713), + [aux_sym_def_type_statement_token7] = ACTIONS(8713), + [aux_sym_def_type_statement_token8] = ACTIONS(8713), + [aux_sym_def_type_statement_token9] = ACTIONS(8713), + [aux_sym_def_type_statement_token10] = ACTIONS(8713), + [aux_sym_def_type_statement_token11] = ACTIONS(8713), + [aux_sym_def_type_statement_token12] = ACTIONS(8713), + [aux_sym_def_type_statement_token13] = ACTIONS(8713), + [aux_sym_def_type_statement_token14] = ACTIONS(8713), + [aux_sym_call_statement_token1] = ACTIONS(8713), + [sym__ambiguous_call_statement] = ACTIONS(8713), + [aux_sym_addressof_expression_token1] = ACTIONS(8713), + [aux_sym_type_of_expression_token1] = ACTIONS(8713), + [aux_sym_unary_expression_token1] = ACTIONS(8713), + [sym_string_literal] = ACTIONS(8715), + [sym_number_literal] = ACTIONS(8715), + [aux_sym_boolean_literal_token1] = ACTIONS(8713), + [aux_sym_boolean_literal_token2] = ACTIONS(8713), + [sym_nothing_literal] = ACTIONS(8713), + [sym_null_literal] = ACTIONS(8713), + [sym_empty_literal] = ACTIONS(8713), + [sym_date_literal] = ACTIONS(8715), + [anon_sym_POUND] = ACTIONS(8713), + }, + [STATE(6155)] = { + [aux_sym_variable_declaration_repeat1] = STATE(6143), + [sym_identifier] = ACTIONS(8565), + [sym_newline] = ACTIONS(8567), + [anon_sym_COLON] = ACTIONS(8567), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8565), + [aux_sym_frm_property_statement_token1] = ACTIONS(8565), + [anon_sym_DOT] = ACTIONS(8565), + [anon_sym_BANG] = ACTIONS(8567), + [aux_sym__attribute_identifier_token1] = ACTIONS(8565), + [aux_sym_option_statement_token3] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8565), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8565), + [aux_sym_preprocessor_const_token1] = ACTIONS(8565), + [sym_static_modifier] = ACTIONS(8565), + [sym__dim_keyword] = ACTIONS(8565), + [sym__redim_keyword] = ACTIONS(8565), + [aux_sym_get_accessor_token1] = ACTIONS(8565), + [aux_sym_set_accessor_token1] = ACTIONS(8565), + [anon_sym_COMMA] = ACTIONS(10844), + [aux_sym_const_declaration_token1] = ACTIONS(8565), + [anon_sym_LPAREN] = ACTIONS(8567), + [aux_sym_as_type_clause_token2] = ACTIONS(8565), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8565), + [aux_sym_visibility_token1] = ACTIONS(8565), + [aux_sym_visibility_token2] = ACTIONS(8565), + [aux_sym_elseif_fragment_token1] = ACTIONS(8565), + [aux_sym_else_fragment_token1] = ACTIONS(8565), + [aux_sym_select_statement_token1] = ACTIONS(8565), + [aux_sym__for_header_token1] = ACTIONS(8565), + [aux_sym_do_statement_token1] = ACTIONS(8565), + [aux_sym_do_condition_token1] = ACTIONS(8565), + [aux_sym_with_statement_token1] = ACTIONS(8565), + [aux_sym_exit_statement_token1] = ACTIONS(8565), + [sym_end_statement] = ACTIONS(8567), + [aux_sym_on_goto_statement_token1] = ACTIONS(8565), + [aux_sym_on_goto_statement_token2] = ACTIONS(8565), + [aux_sym_on_error_statement_token2] = ACTIONS(8565), + [sym__ambiguous_redim_statement] = ACTIONS(8567), + [aux_sym_erase_statement_token1] = ACTIONS(8565), + [aux_sym_open_statement_token1] = ACTIONS(8565), + [aux_sym_file_mode_token2] = ACTIONS(8565), + [aux_sym_file_access_token2] = ACTIONS(8565), + [aux_sym_file_lock_token2] = ACTIONS(8565), + [aux_sym_print_statement_token1] = ACTIONS(8565), + [anon_sym_PLUS] = ACTIONS(8567), + [anon_sym_DASH] = ACTIONS(8565), + [anon_sym_QMARK] = ACTIONS(8567), + [aux_sym_close_statement_token1] = ACTIONS(8565), + [aux_sym_put_statement_token1] = ACTIONS(8565), + [aux_sym_unlock_statement_token1] = ACTIONS(8565), + [aux_sym_seek_statement_token1] = ACTIONS(8565), + [sym_reset_statement] = ACTIONS(8565), + [aux_sym_raise_event_statement_token1] = ACTIONS(8565), + [sym_stop_statement] = ACTIONS(8565), + [sym_beep_statement] = ACTIONS(8565), + [aux_sym_unload_statement_token1] = ACTIONS(8565), + [aux_sym_def_type_statement_token1] = ACTIONS(8565), + [aux_sym_def_type_statement_token2] = ACTIONS(8565), + [aux_sym_def_type_statement_token3] = ACTIONS(8565), + [aux_sym_def_type_statement_token4] = ACTIONS(8565), + [aux_sym_def_type_statement_token5] = ACTIONS(8565), + [aux_sym_def_type_statement_token6] = ACTIONS(8565), + [aux_sym_def_type_statement_token7] = ACTIONS(8565), + [aux_sym_def_type_statement_token8] = ACTIONS(8565), + [aux_sym_def_type_statement_token9] = ACTIONS(8565), + [aux_sym_def_type_statement_token10] = ACTIONS(8565), + [aux_sym_def_type_statement_token11] = ACTIONS(8565), + [aux_sym_def_type_statement_token12] = ACTIONS(8565), + [aux_sym_def_type_statement_token13] = ACTIONS(8565), + [aux_sym_def_type_statement_token14] = ACTIONS(8565), + [aux_sym_call_statement_token1] = ACTIONS(8565), + [sym__ambiguous_call_statement] = ACTIONS(8565), + [aux_sym_addressof_expression_token1] = ACTIONS(8565), + [aux_sym_type_of_expression_token1] = ACTIONS(8565), + [aux_sym_unary_expression_token1] = ACTIONS(8565), + [sym_string_literal] = ACTIONS(8567), + [sym_number_literal] = ACTIONS(8567), + [aux_sym_boolean_literal_token1] = ACTIONS(8565), + [aux_sym_boolean_literal_token2] = ACTIONS(8565), + [sym_nothing_literal] = ACTIONS(8565), + [sym_null_literal] = ACTIONS(8565), + [sym_empty_literal] = ACTIONS(8565), + [sym_date_literal] = ACTIONS(8567), + [anon_sym_POUND] = ACTIONS(8565), + }, + [STATE(6156)] = { + [sym_identifier] = ACTIONS(8831), + [sym_newline] = ACTIONS(8833), + [anon_sym_COLON] = ACTIONS(8833), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8831), + [aux_sym_frm_property_statement_token1] = ACTIONS(8831), + [anon_sym_DOT] = ACTIONS(8831), + [anon_sym_BANG] = ACTIONS(8833), + [aux_sym__attribute_identifier_token1] = ACTIONS(8831), + [aux_sym_option_statement_token3] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8831), + [aux_sym_preprocessor_const_token1] = ACTIONS(8831), + [sym_static_modifier] = ACTIONS(8831), + [sym__dim_keyword] = ACTIONS(8831), + [sym__redim_keyword] = ACTIONS(8831), + [aux_sym_get_accessor_token1] = ACTIONS(8831), + [aux_sym_set_accessor_token1] = ACTIONS(8831), + [anon_sym_COMMA] = ACTIONS(8833), + [aux_sym_const_declaration_token1] = ACTIONS(8831), + [anon_sym_LPAREN] = ACTIONS(8833), + [aux_sym_as_type_clause_token2] = ACTIONS(8831), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8831), + [aux_sym_visibility_token1] = ACTIONS(8831), + [aux_sym_visibility_token2] = ACTIONS(8831), + [aux_sym_elseif_fragment_token1] = ACTIONS(8831), + [aux_sym_else_fragment_token1] = ACTIONS(8831), + [aux_sym_select_statement_token1] = ACTIONS(8831), + [aux_sym_select_statement_token2] = ACTIONS(8831), + [aux_sym__for_header_token1] = ACTIONS(8831), + [aux_sym_do_statement_token1] = ACTIONS(8831), + [aux_sym_do_condition_token1] = ACTIONS(8831), + [aux_sym_with_statement_token1] = ACTIONS(8831), + [aux_sym_exit_statement_token1] = ACTIONS(8831), + [sym_end_statement] = ACTIONS(8833), + [aux_sym_on_goto_statement_token1] = ACTIONS(8831), + [aux_sym_on_goto_statement_token2] = ACTIONS(8831), + [aux_sym_on_error_statement_token2] = ACTIONS(8831), + [sym__ambiguous_redim_statement] = ACTIONS(8833), + [aux_sym_erase_statement_token1] = ACTIONS(8831), + [aux_sym_open_statement_token1] = ACTIONS(8831), + [aux_sym_file_mode_token2] = ACTIONS(8831), + [aux_sym_file_access_token2] = ACTIONS(8831), + [aux_sym_file_lock_token2] = ACTIONS(8831), + [aux_sym_print_statement_token1] = ACTIONS(8831), + [anon_sym_PLUS] = ACTIONS(8833), + [anon_sym_DASH] = ACTIONS(8831), + [anon_sym_QMARK] = ACTIONS(8833), + [aux_sym_close_statement_token1] = ACTIONS(8831), + [aux_sym_put_statement_token1] = ACTIONS(8831), + [aux_sym_unlock_statement_token1] = ACTIONS(8831), + [aux_sym_seek_statement_token1] = ACTIONS(8831), + [sym_reset_statement] = ACTIONS(8831), + [aux_sym_raise_event_statement_token1] = ACTIONS(8831), + [sym_stop_statement] = ACTIONS(8831), + [sym_beep_statement] = ACTIONS(8831), + [aux_sym_unload_statement_token1] = ACTIONS(8831), + [aux_sym_def_type_statement_token1] = ACTIONS(8831), + [aux_sym_def_type_statement_token2] = ACTIONS(8831), + [aux_sym_def_type_statement_token3] = ACTIONS(8831), + [aux_sym_def_type_statement_token4] = ACTIONS(8831), + [aux_sym_def_type_statement_token5] = ACTIONS(8831), + [aux_sym_def_type_statement_token6] = ACTIONS(8831), + [aux_sym_def_type_statement_token7] = ACTIONS(8831), + [aux_sym_def_type_statement_token8] = ACTIONS(8831), + [aux_sym_def_type_statement_token9] = ACTIONS(8831), + [aux_sym_def_type_statement_token10] = ACTIONS(8831), + [aux_sym_def_type_statement_token11] = ACTIONS(8831), + [aux_sym_def_type_statement_token12] = ACTIONS(8831), + [aux_sym_def_type_statement_token13] = ACTIONS(8831), + [aux_sym_def_type_statement_token14] = ACTIONS(8831), + [aux_sym_call_statement_token1] = ACTIONS(8831), + [sym__ambiguous_call_statement] = ACTIONS(8831), + [aux_sym_addressof_expression_token1] = ACTIONS(8831), + [aux_sym_type_of_expression_token1] = ACTIONS(8831), + [aux_sym_unary_expression_token1] = ACTIONS(8831), + [sym_string_literal] = ACTIONS(8833), + [sym_number_literal] = ACTIONS(8833), + [aux_sym_boolean_literal_token1] = ACTIONS(8831), + [aux_sym_boolean_literal_token2] = ACTIONS(8831), + [sym_nothing_literal] = ACTIONS(8831), + [sym_null_literal] = ACTIONS(8831), + [sym_empty_literal] = ACTIONS(8831), + [sym_date_literal] = ACTIONS(8833), + [anon_sym_POUND] = ACTIONS(8831), + }, + [STATE(6157)] = { + [sym_identifier] = ACTIONS(8456), + [sym_newline] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8458), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8456), + [aux_sym_frm_property_statement_token1] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_BANG] = ACTIONS(8458), + [aux_sym__attribute_identifier_token1] = ACTIONS(8456), + [aux_sym_option_statement_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8456), + [aux_sym_preprocessor_const_token1] = ACTIONS(8456), + [sym_static_modifier] = ACTIONS(8456), + [sym__dim_keyword] = ACTIONS(8456), + [sym__redim_keyword] = ACTIONS(8456), + [aux_sym_get_accessor_token1] = ACTIONS(8456), + [aux_sym_set_accessor_token1] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(8458), + [aux_sym_const_declaration_token1] = ACTIONS(8456), + [anon_sym_LPAREN] = ACTIONS(8458), + [aux_sym_as_type_clause_token2] = ACTIONS(8456), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8456), + [aux_sym_visibility_token1] = ACTIONS(8456), + [aux_sym_visibility_token2] = ACTIONS(8456), + [aux_sym_elseif_fragment_token1] = ACTIONS(8456), + [aux_sym_else_fragment_token1] = ACTIONS(8456), + [aux_sym_select_statement_token1] = ACTIONS(8456), + [aux_sym_select_statement_token2] = ACTIONS(8456), + [aux_sym__for_header_token1] = ACTIONS(8456), + [aux_sym_do_statement_token1] = ACTIONS(8456), + [aux_sym_do_condition_token1] = ACTIONS(8456), + [aux_sym_with_statement_token1] = ACTIONS(8456), + [aux_sym_exit_statement_token1] = ACTIONS(8456), + [sym_end_statement] = ACTIONS(8458), + [aux_sym_on_goto_statement_token1] = ACTIONS(8456), + [aux_sym_on_goto_statement_token2] = ACTIONS(8456), + [aux_sym_on_error_statement_token2] = ACTIONS(8456), + [sym__ambiguous_redim_statement] = ACTIONS(8458), + [aux_sym_erase_statement_token1] = ACTIONS(8456), + [aux_sym_open_statement_token1] = ACTIONS(8456), + [aux_sym_file_mode_token2] = ACTIONS(8456), + [aux_sym_file_access_token2] = ACTIONS(8456), + [aux_sym_file_lock_token2] = ACTIONS(8456), + [aux_sym_print_statement_token1] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8458), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8458), + [aux_sym_close_statement_token1] = ACTIONS(8456), + [aux_sym_put_statement_token1] = ACTIONS(8456), + [aux_sym_unlock_statement_token1] = ACTIONS(8456), + [aux_sym_seek_statement_token1] = ACTIONS(8456), + [sym_reset_statement] = ACTIONS(8456), + [aux_sym_raise_event_statement_token1] = ACTIONS(8456), + [sym_stop_statement] = ACTIONS(8456), + [sym_beep_statement] = ACTIONS(8456), + [aux_sym_unload_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token2] = ACTIONS(8456), + [aux_sym_def_type_statement_token3] = ACTIONS(8456), + [aux_sym_def_type_statement_token4] = ACTIONS(8456), + [aux_sym_def_type_statement_token5] = ACTIONS(8456), + [aux_sym_def_type_statement_token6] = ACTIONS(8456), + [aux_sym_def_type_statement_token7] = ACTIONS(8456), + [aux_sym_def_type_statement_token8] = ACTIONS(8456), + [aux_sym_def_type_statement_token9] = ACTIONS(8456), + [aux_sym_def_type_statement_token10] = ACTIONS(8456), + [aux_sym_def_type_statement_token11] = ACTIONS(8456), + [aux_sym_def_type_statement_token12] = ACTIONS(8456), + [aux_sym_def_type_statement_token13] = ACTIONS(8456), + [aux_sym_def_type_statement_token14] = ACTIONS(8456), + [aux_sym_call_statement_token1] = ACTIONS(8456), + [sym__ambiguous_call_statement] = ACTIONS(8456), + [aux_sym_addressof_expression_token1] = ACTIONS(8456), + [aux_sym_type_of_expression_token1] = ACTIONS(8456), + [aux_sym_unary_expression_token1] = ACTIONS(8456), + [sym_string_literal] = ACTIONS(8458), + [sym_number_literal] = ACTIONS(8458), + [aux_sym_boolean_literal_token1] = ACTIONS(8456), + [aux_sym_boolean_literal_token2] = ACTIONS(8456), + [sym_nothing_literal] = ACTIONS(8456), + [sym_null_literal] = ACTIONS(8456), + [sym_empty_literal] = ACTIONS(8456), + [sym_date_literal] = ACTIONS(8458), + [anon_sym_POUND] = ACTIONS(8456), + }, + [STATE(6158)] = { + [sym_identifier] = ACTIONS(8831), + [sym_newline] = ACTIONS(8833), + [anon_sym_COLON] = ACTIONS(8833), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8831), + [aux_sym_frm_property_statement_token1] = ACTIONS(8831), + [anon_sym_DOT] = ACTIONS(8831), + [anon_sym_BANG] = ACTIONS(8833), + [aux_sym__attribute_identifier_token1] = ACTIONS(8831), + [aux_sym_option_statement_token3] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8831), + [aux_sym_preprocessor_const_token1] = ACTIONS(8831), + [sym_static_modifier] = ACTIONS(8831), + [sym__dim_keyword] = ACTIONS(8831), + [sym__redim_keyword] = ACTIONS(8831), + [aux_sym_get_accessor_token1] = ACTIONS(8831), + [aux_sym_set_accessor_token1] = ACTIONS(8831), + [anon_sym_COMMA] = ACTIONS(8833), + [aux_sym_const_declaration_token1] = ACTIONS(8831), + [anon_sym_LPAREN] = ACTIONS(8833), + [aux_sym_as_type_clause_token2] = ACTIONS(8831), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8831), + [aux_sym_visibility_token1] = ACTIONS(8831), + [aux_sym_visibility_token2] = ACTIONS(8831), + [aux_sym_elseif_fragment_token1] = ACTIONS(8831), + [aux_sym_else_fragment_token1] = ACTIONS(8831), + [aux_sym_select_statement_token1] = ACTIONS(8831), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8831), + [aux_sym__for_header_token1] = ACTIONS(8831), + [aux_sym_do_statement_token1] = ACTIONS(8831), + [aux_sym_do_condition_token1] = ACTIONS(8831), + [aux_sym_with_statement_token1] = ACTIONS(8831), + [aux_sym_exit_statement_token1] = ACTIONS(8831), + [sym_end_statement] = ACTIONS(8833), + [aux_sym_on_goto_statement_token1] = ACTIONS(8831), + [aux_sym_on_goto_statement_token2] = ACTIONS(8831), + [aux_sym_on_error_statement_token2] = ACTIONS(8831), + [sym__ambiguous_redim_statement] = ACTIONS(8833), + [aux_sym_erase_statement_token1] = ACTIONS(8831), + [aux_sym_open_statement_token1] = ACTIONS(8831), + [aux_sym_file_mode_token2] = ACTIONS(8831), + [aux_sym_file_access_token2] = ACTIONS(8831), + [aux_sym_file_lock_token2] = ACTIONS(8831), + [aux_sym_print_statement_token1] = ACTIONS(8831), + [anon_sym_PLUS] = ACTIONS(8833), + [anon_sym_DASH] = ACTIONS(8831), + [anon_sym_QMARK] = ACTIONS(8833), + [aux_sym_close_statement_token1] = ACTIONS(8831), + [aux_sym_put_statement_token1] = ACTIONS(8831), + [aux_sym_unlock_statement_token1] = ACTIONS(8831), + [aux_sym_seek_statement_token1] = ACTIONS(8831), + [sym_reset_statement] = ACTIONS(8831), + [aux_sym_raise_event_statement_token1] = ACTIONS(8831), + [sym_stop_statement] = ACTIONS(8831), + [sym_beep_statement] = ACTIONS(8831), + [aux_sym_unload_statement_token1] = ACTIONS(8831), + [aux_sym_def_type_statement_token1] = ACTIONS(8831), + [aux_sym_def_type_statement_token2] = ACTIONS(8831), + [aux_sym_def_type_statement_token3] = ACTIONS(8831), + [aux_sym_def_type_statement_token4] = ACTIONS(8831), + [aux_sym_def_type_statement_token5] = ACTIONS(8831), + [aux_sym_def_type_statement_token6] = ACTIONS(8831), + [aux_sym_def_type_statement_token7] = ACTIONS(8831), + [aux_sym_def_type_statement_token8] = ACTIONS(8831), + [aux_sym_def_type_statement_token9] = ACTIONS(8831), + [aux_sym_def_type_statement_token10] = ACTIONS(8831), + [aux_sym_def_type_statement_token11] = ACTIONS(8831), + [aux_sym_def_type_statement_token12] = ACTIONS(8831), + [aux_sym_def_type_statement_token13] = ACTIONS(8831), + [aux_sym_def_type_statement_token14] = ACTIONS(8831), + [aux_sym_call_statement_token1] = ACTIONS(8831), + [sym__ambiguous_call_statement] = ACTIONS(8831), + [aux_sym_addressof_expression_token1] = ACTIONS(8831), + [aux_sym_type_of_expression_token1] = ACTIONS(8831), + [aux_sym_unary_expression_token1] = ACTIONS(8831), + [sym_string_literal] = ACTIONS(8833), + [sym_number_literal] = ACTIONS(8833), + [aux_sym_boolean_literal_token1] = ACTIONS(8831), + [aux_sym_boolean_literal_token2] = ACTIONS(8831), + [sym_nothing_literal] = ACTIONS(8831), + [sym_null_literal] = ACTIONS(8831), + [sym_empty_literal] = ACTIONS(8831), + [sym_date_literal] = ACTIONS(8833), + [anon_sym_POUND] = ACTIONS(8831), + }, + [STATE(6159)] = { + [sym_identifier] = ACTIONS(3996), + [sym_newline] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3996), + [aux_sym_frm_property_statement_token1] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3994), + [aux_sym__attribute_identifier_token1] = ACTIONS(3996), + [aux_sym_option_statement_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3996), + [aux_sym_preprocessor_const_token1] = ACTIONS(3996), + [sym_static_modifier] = ACTIONS(3996), + [sym__dim_keyword] = ACTIONS(3996), + [sym__redim_keyword] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3996), + [aux_sym_set_accessor_token1] = ACTIONS(3996), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3994), + [aux_sym_as_type_clause_token2] = ACTIONS(3996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3996), + [aux_sym_visibility_token1] = ACTIONS(3996), + [aux_sym_visibility_token2] = ACTIONS(3996), + [aux_sym_elseif_fragment_token1] = ACTIONS(3996), + [aux_sym_else_fragment_token1] = ACTIONS(3996), + [aux_sym_select_statement_token1] = ACTIONS(3996), + [aux_sym__for_header_token1] = ACTIONS(3996), + [aux_sym_do_statement_token1] = ACTIONS(3996), + [aux_sym_do_condition_token1] = ACTIONS(3996), + [aux_sym_while_statement_token1] = ACTIONS(3996), + [aux_sym_with_statement_token1] = ACTIONS(3996), + [aux_sym_exit_statement_token1] = ACTIONS(3996), + [sym_end_statement] = ACTIONS(3994), + [aux_sym_on_goto_statement_token1] = ACTIONS(3996), + [aux_sym_on_goto_statement_token2] = ACTIONS(3996), + [aux_sym_on_error_statement_token2] = ACTIONS(3996), + [sym__ambiguous_redim_statement] = ACTIONS(3994), + [aux_sym_erase_statement_token1] = ACTIONS(3996), + [aux_sym_open_statement_token1] = ACTIONS(3996), + [aux_sym_file_mode_token2] = ACTIONS(3996), + [aux_sym_file_access_token2] = ACTIONS(3996), + [aux_sym_file_lock_token2] = ACTIONS(3996), + [aux_sym_print_statement_token1] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3994), + [aux_sym_close_statement_token1] = ACTIONS(3996), + [aux_sym_put_statement_token1] = ACTIONS(3996), + [aux_sym_unlock_statement_token1] = ACTIONS(3996), + [aux_sym_seek_statement_token1] = ACTIONS(3996), + [sym_reset_statement] = ACTIONS(3996), + [aux_sym_raise_event_statement_token1] = ACTIONS(3996), + [sym_stop_statement] = ACTIONS(3996), + [sym_beep_statement] = ACTIONS(3996), + [aux_sym_unload_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token2] = ACTIONS(3996), + [aux_sym_def_type_statement_token3] = ACTIONS(3996), + [aux_sym_def_type_statement_token4] = ACTIONS(3996), + [aux_sym_def_type_statement_token5] = ACTIONS(3996), + [aux_sym_def_type_statement_token6] = ACTIONS(3996), + [aux_sym_def_type_statement_token7] = ACTIONS(3996), + [aux_sym_def_type_statement_token8] = ACTIONS(3996), + [aux_sym_def_type_statement_token9] = ACTIONS(3996), + [aux_sym_def_type_statement_token10] = ACTIONS(3996), + [aux_sym_def_type_statement_token11] = ACTIONS(3996), + [aux_sym_def_type_statement_token12] = ACTIONS(3996), + [aux_sym_def_type_statement_token13] = ACTIONS(3996), + [aux_sym_def_type_statement_token14] = ACTIONS(3996), + [aux_sym_call_statement_token1] = ACTIONS(3996), + [sym__ambiguous_call_statement] = ACTIONS(3996), + [aux_sym_addressof_expression_token1] = ACTIONS(3996), + [aux_sym_type_of_expression_token1] = ACTIONS(3996), + [aux_sym_unary_expression_token1] = ACTIONS(3996), + [sym_string_literal] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3994), + [aux_sym_boolean_literal_token1] = ACTIONS(3996), + [aux_sym_boolean_literal_token2] = ACTIONS(3996), + [sym_nothing_literal] = ACTIONS(3996), + [sym_null_literal] = ACTIONS(3996), + [sym_empty_literal] = ACTIONS(3996), + [sym_date_literal] = ACTIONS(3994), + [anon_sym_POUND] = ACTIONS(3996), + }, + [STATE(6160)] = { + [aux_sym_close_statement_repeat1] = STATE(5852), + [sym_identifier] = ACTIONS(8265), + [sym_newline] = ACTIONS(8267), + [anon_sym_COLON] = ACTIONS(8267), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8265), + [aux_sym_frm_property_statement_token1] = ACTIONS(8265), + [anon_sym_DOT] = ACTIONS(8265), + [anon_sym_BANG] = ACTIONS(8267), + [aux_sym__attribute_identifier_token1] = ACTIONS(8265), + [aux_sym_option_statement_token3] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8265), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8265), + [aux_sym_preprocessor_const_token1] = ACTIONS(8265), + [sym_static_modifier] = ACTIONS(8265), + [sym__dim_keyword] = ACTIONS(8265), + [sym__redim_keyword] = ACTIONS(8265), + [aux_sym_get_accessor_token1] = ACTIONS(8265), + [aux_sym_set_accessor_token1] = ACTIONS(8265), + [anon_sym_COMMA] = ACTIONS(10842), + [aux_sym_const_declaration_token1] = ACTIONS(8265), + [anon_sym_LPAREN] = ACTIONS(8267), + [aux_sym_as_type_clause_token2] = ACTIONS(8265), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8265), + [aux_sym_visibility_token1] = ACTIONS(8265), + [aux_sym_visibility_token2] = ACTIONS(8265), + [aux_sym_elseif_fragment_token1] = ACTIONS(8265), + [aux_sym_else_fragment_token1] = ACTIONS(8265), + [aux_sym_select_statement_token1] = ACTIONS(8265), + [aux_sym__for_header_token1] = ACTIONS(8265), + [aux_sym_do_statement_token1] = ACTIONS(8265), + [aux_sym_do_condition_token1] = ACTIONS(8265), + [aux_sym_with_statement_token1] = ACTIONS(8265), + [aux_sym_exit_statement_token1] = ACTIONS(8265), + [sym_end_statement] = ACTIONS(8267), + [aux_sym_on_goto_statement_token1] = ACTIONS(8265), + [aux_sym_on_goto_statement_token2] = ACTIONS(8265), + [aux_sym_on_error_statement_token2] = ACTIONS(8265), + [sym__ambiguous_redim_statement] = ACTIONS(8267), + [aux_sym_erase_statement_token1] = ACTIONS(8265), + [aux_sym_open_statement_token1] = ACTIONS(8265), + [aux_sym_file_mode_token2] = ACTIONS(8265), + [aux_sym_file_access_token2] = ACTIONS(8265), + [aux_sym_file_lock_token2] = ACTIONS(8265), + [aux_sym_print_statement_token1] = ACTIONS(8265), + [anon_sym_PLUS] = ACTIONS(8267), + [anon_sym_DASH] = ACTIONS(8265), + [anon_sym_QMARK] = ACTIONS(8267), + [aux_sym_close_statement_token1] = ACTIONS(8265), + [aux_sym_put_statement_token1] = ACTIONS(8265), + [aux_sym_unlock_statement_token1] = ACTIONS(8265), + [aux_sym_seek_statement_token1] = ACTIONS(8265), + [sym_reset_statement] = ACTIONS(8265), + [aux_sym_raise_event_statement_token1] = ACTIONS(8265), + [sym_stop_statement] = ACTIONS(8265), + [sym_beep_statement] = ACTIONS(8265), + [aux_sym_unload_statement_token1] = ACTIONS(8265), + [aux_sym_def_type_statement_token1] = ACTIONS(8265), + [aux_sym_def_type_statement_token2] = ACTIONS(8265), + [aux_sym_def_type_statement_token3] = ACTIONS(8265), + [aux_sym_def_type_statement_token4] = ACTIONS(8265), + [aux_sym_def_type_statement_token5] = ACTIONS(8265), + [aux_sym_def_type_statement_token6] = ACTIONS(8265), + [aux_sym_def_type_statement_token7] = ACTIONS(8265), + [aux_sym_def_type_statement_token8] = ACTIONS(8265), + [aux_sym_def_type_statement_token9] = ACTIONS(8265), + [aux_sym_def_type_statement_token10] = ACTIONS(8265), + [aux_sym_def_type_statement_token11] = ACTIONS(8265), + [aux_sym_def_type_statement_token12] = ACTIONS(8265), + [aux_sym_def_type_statement_token13] = ACTIONS(8265), + [aux_sym_def_type_statement_token14] = ACTIONS(8265), + [aux_sym_call_statement_token1] = ACTIONS(8265), + [sym__ambiguous_call_statement] = ACTIONS(8265), + [aux_sym_addressof_expression_token1] = ACTIONS(8265), + [aux_sym_type_of_expression_token1] = ACTIONS(8265), + [aux_sym_unary_expression_token1] = ACTIONS(8265), + [sym_string_literal] = ACTIONS(8267), + [sym_number_literal] = ACTIONS(8267), + [aux_sym_boolean_literal_token1] = ACTIONS(8265), + [aux_sym_boolean_literal_token2] = ACTIONS(8265), + [sym_nothing_literal] = ACTIONS(8265), + [sym_null_literal] = ACTIONS(8265), + [sym_empty_literal] = ACTIONS(8265), + [sym_date_literal] = ACTIONS(8267), + [anon_sym_POUND] = ACTIONS(8265), + }, + [STATE(6161)] = { + [sym_identifier] = ACTIONS(8853), + [sym_newline] = ACTIONS(8855), + [anon_sym_COLON] = ACTIONS(8855), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8853), + [aux_sym_frm_property_statement_token1] = ACTIONS(8853), + [anon_sym_DOT] = ACTIONS(8853), + [anon_sym_BANG] = ACTIONS(8855), + [aux_sym__attribute_identifier_token1] = ACTIONS(8853), + [aux_sym_option_statement_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8853), + [aux_sym_preprocessor_const_token1] = ACTIONS(8853), + [sym_static_modifier] = ACTIONS(8853), + [sym__dim_keyword] = ACTIONS(8853), + [sym__redim_keyword] = ACTIONS(8853), + [aux_sym_get_accessor_token1] = ACTIONS(8853), + [aux_sym_set_accessor_token1] = ACTIONS(8853), + [aux_sym_const_declaration_token1] = ACTIONS(8853), + [anon_sym_LPAREN] = ACTIONS(8855), + [aux_sym_as_type_clause_token2] = ACTIONS(8853), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8853), + [aux_sym_visibility_token1] = ACTIONS(8853), + [aux_sym_visibility_token2] = ACTIONS(8853), + [aux_sym_elseif_fragment_token1] = ACTIONS(8853), + [aux_sym_else_fragment_token1] = ACTIONS(8853), + [aux_sym_select_statement_token1] = ACTIONS(8853), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8853), + [aux_sym__for_header_token1] = ACTIONS(8853), + [aux_sym_do_statement_token1] = ACTIONS(8853), + [aux_sym_do_condition_token1] = ACTIONS(8853), + [aux_sym_with_statement_token1] = ACTIONS(8853), + [aux_sym_exit_statement_token1] = ACTIONS(8853), + [sym_end_statement] = ACTIONS(8855), + [aux_sym_on_goto_statement_token1] = ACTIONS(8853), + [aux_sym_on_goto_statement_token2] = ACTIONS(8853), + [aux_sym_on_error_statement_token2] = ACTIONS(8853), + [sym__ambiguous_redim_statement] = ACTIONS(8855), + [aux_sym_erase_statement_token1] = ACTIONS(8853), + [aux_sym_open_statement_token1] = ACTIONS(8853), + [aux_sym_file_mode_token2] = ACTIONS(8853), + [aux_sym_file_access_token2] = ACTIONS(8853), + [aux_sym_file_lock_token2] = ACTIONS(8853), + [aux_sym_print_statement_token1] = ACTIONS(8853), + [anon_sym_PLUS] = ACTIONS(8855), + [anon_sym_DASH] = ACTIONS(8853), + [anon_sym_QMARK] = ACTIONS(8855), + [aux_sym_close_statement_token1] = ACTIONS(8853), + [aux_sym_put_statement_token1] = ACTIONS(8853), + [aux_sym_unlock_statement_token1] = ACTIONS(8853), + [aux_sym_seek_statement_token1] = ACTIONS(8853), + [sym_reset_statement] = ACTIONS(8853), + [aux_sym_raise_event_statement_token1] = ACTIONS(8853), + [sym_stop_statement] = ACTIONS(8853), + [sym_beep_statement] = ACTIONS(8853), + [aux_sym_unload_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token2] = ACTIONS(8853), + [aux_sym_def_type_statement_token3] = ACTIONS(8853), + [aux_sym_def_type_statement_token4] = ACTIONS(8853), + [aux_sym_def_type_statement_token5] = ACTIONS(8853), + [aux_sym_def_type_statement_token6] = ACTIONS(8853), + [aux_sym_def_type_statement_token7] = ACTIONS(8853), + [aux_sym_def_type_statement_token8] = ACTIONS(8853), + [aux_sym_def_type_statement_token9] = ACTIONS(8853), + [aux_sym_def_type_statement_token10] = ACTIONS(8853), + [aux_sym_def_type_statement_token11] = ACTIONS(8853), + [aux_sym_def_type_statement_token12] = ACTIONS(8853), + [aux_sym_def_type_statement_token13] = ACTIONS(8853), + [aux_sym_def_type_statement_token14] = ACTIONS(8853), + [aux_sym_call_statement_token1] = ACTIONS(8853), + [sym__ambiguous_call_statement] = ACTIONS(8853), + [aux_sym_addressof_expression_token1] = ACTIONS(8853), + [aux_sym_type_of_expression_token1] = ACTIONS(8853), + [aux_sym_unary_expression_token1] = ACTIONS(8853), + [sym_string_literal] = ACTIONS(8855), + [sym_number_literal] = ACTIONS(8855), + [aux_sym_boolean_literal_token1] = ACTIONS(8853), + [aux_sym_boolean_literal_token2] = ACTIONS(8853), + [sym_nothing_literal] = ACTIONS(8853), + [sym_null_literal] = ACTIONS(8853), + [sym_empty_literal] = ACTIONS(8853), + [sym_date_literal] = ACTIONS(8855), + [anon_sym_POUND] = ACTIONS(8853), + }, + [STATE(6162)] = { + [sym_identifier] = ACTIONS(8857), + [sym_newline] = ACTIONS(8859), + [anon_sym_COLON] = ACTIONS(8859), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8857), + [aux_sym_frm_property_statement_token1] = ACTIONS(8857), + [anon_sym_DOT] = ACTIONS(8857), + [anon_sym_BANG] = ACTIONS(8859), + [aux_sym__attribute_identifier_token1] = ACTIONS(8857), + [aux_sym_option_statement_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8857), + [aux_sym_preprocessor_const_token1] = ACTIONS(8857), + [sym_static_modifier] = ACTIONS(8857), + [sym__dim_keyword] = ACTIONS(8857), + [sym__redim_keyword] = ACTIONS(8857), + [aux_sym_get_accessor_token1] = ACTIONS(8857), + [aux_sym_set_accessor_token1] = ACTIONS(8857), + [aux_sym_const_declaration_token1] = ACTIONS(8857), + [anon_sym_LPAREN] = ACTIONS(8859), + [aux_sym_as_type_clause_token2] = ACTIONS(8857), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8857), + [aux_sym_visibility_token1] = ACTIONS(8857), + [aux_sym_visibility_token2] = ACTIONS(8857), + [aux_sym_elseif_fragment_token1] = ACTIONS(8857), + [aux_sym_else_fragment_token1] = ACTIONS(8857), + [aux_sym_select_statement_token1] = ACTIONS(8857), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8857), + [aux_sym__for_header_token1] = ACTIONS(8857), + [aux_sym_do_statement_token1] = ACTIONS(8857), + [aux_sym_do_condition_token1] = ACTIONS(8857), + [aux_sym_with_statement_token1] = ACTIONS(8857), + [aux_sym_exit_statement_token1] = ACTIONS(8857), + [sym_end_statement] = ACTIONS(8859), + [aux_sym_on_goto_statement_token1] = ACTIONS(8857), + [aux_sym_on_goto_statement_token2] = ACTIONS(8857), + [aux_sym_on_error_statement_token2] = ACTIONS(8857), + [sym__ambiguous_redim_statement] = ACTIONS(8859), + [aux_sym_erase_statement_token1] = ACTIONS(8857), + [aux_sym_open_statement_token1] = ACTIONS(8857), + [aux_sym_file_mode_token2] = ACTIONS(8857), + [aux_sym_file_access_token2] = ACTIONS(8857), + [aux_sym_file_lock_token2] = ACTIONS(8857), + [aux_sym_print_statement_token1] = ACTIONS(8857), + [anon_sym_PLUS] = ACTIONS(8859), + [anon_sym_DASH] = ACTIONS(8857), + [anon_sym_QMARK] = ACTIONS(8859), + [aux_sym_close_statement_token1] = ACTIONS(8857), + [aux_sym_put_statement_token1] = ACTIONS(8857), + [aux_sym_unlock_statement_token1] = ACTIONS(8857), + [aux_sym_seek_statement_token1] = ACTIONS(8857), + [sym_reset_statement] = ACTIONS(8857), + [aux_sym_raise_event_statement_token1] = ACTIONS(8857), + [sym_stop_statement] = ACTIONS(8857), + [sym_beep_statement] = ACTIONS(8857), + [aux_sym_unload_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token2] = ACTIONS(8857), + [aux_sym_def_type_statement_token3] = ACTIONS(8857), + [aux_sym_def_type_statement_token4] = ACTIONS(8857), + [aux_sym_def_type_statement_token5] = ACTIONS(8857), + [aux_sym_def_type_statement_token6] = ACTIONS(8857), + [aux_sym_def_type_statement_token7] = ACTIONS(8857), + [aux_sym_def_type_statement_token8] = ACTIONS(8857), + [aux_sym_def_type_statement_token9] = ACTIONS(8857), + [aux_sym_def_type_statement_token10] = ACTIONS(8857), + [aux_sym_def_type_statement_token11] = ACTIONS(8857), + [aux_sym_def_type_statement_token12] = ACTIONS(8857), + [aux_sym_def_type_statement_token13] = ACTIONS(8857), + [aux_sym_def_type_statement_token14] = ACTIONS(8857), + [aux_sym_call_statement_token1] = ACTIONS(8857), + [sym__ambiguous_call_statement] = ACTIONS(8857), + [aux_sym_addressof_expression_token1] = ACTIONS(8857), + [aux_sym_type_of_expression_token1] = ACTIONS(8857), + [aux_sym_unary_expression_token1] = ACTIONS(8857), + [sym_string_literal] = ACTIONS(8859), + [sym_number_literal] = ACTIONS(8859), + [aux_sym_boolean_literal_token1] = ACTIONS(8857), + [aux_sym_boolean_literal_token2] = ACTIONS(8857), + [sym_nothing_literal] = ACTIONS(8857), + [sym_null_literal] = ACTIONS(8857), + [sym_empty_literal] = ACTIONS(8857), + [sym_date_literal] = ACTIONS(8859), + [anon_sym_POUND] = ACTIONS(8857), + }, + [STATE(6163)] = { + [aux_sym_erase_statement_repeat1] = STATE(6163), + [sym_identifier] = ACTIONS(8607), + [sym_newline] = ACTIONS(8609), + [anon_sym_COLON] = ACTIONS(8609), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8607), + [aux_sym_frm_property_statement_token1] = ACTIONS(8607), + [anon_sym_DOT] = ACTIONS(8607), + [anon_sym_BANG] = ACTIONS(8609), + [aux_sym__attribute_identifier_token1] = ACTIONS(8607), + [aux_sym_option_statement_token3] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8607), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8607), + [aux_sym_preprocessor_const_token1] = ACTIONS(8607), + [sym_static_modifier] = ACTIONS(8607), + [sym__dim_keyword] = ACTIONS(8607), + [sym__redim_keyword] = ACTIONS(8607), + [aux_sym_get_accessor_token1] = ACTIONS(8607), + [aux_sym_set_accessor_token1] = ACTIONS(8607), + [anon_sym_COMMA] = ACTIONS(11015), + [aux_sym_const_declaration_token1] = ACTIONS(8607), + [anon_sym_LPAREN] = ACTIONS(8609), + [aux_sym_as_type_clause_token2] = ACTIONS(8607), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8607), + [aux_sym_visibility_token1] = ACTIONS(8607), + [aux_sym_visibility_token2] = ACTIONS(8607), + [aux_sym_elseif_fragment_token1] = ACTIONS(8607), + [aux_sym_else_fragment_token1] = ACTIONS(8607), + [aux_sym_select_statement_token1] = ACTIONS(8607), + [aux_sym__for_header_token1] = ACTIONS(8607), + [aux_sym_do_statement_token1] = ACTIONS(8607), + [aux_sym_do_condition_token1] = ACTIONS(8607), + [aux_sym_with_statement_token1] = ACTIONS(8607), + [aux_sym_exit_statement_token1] = ACTIONS(8607), + [sym_end_statement] = ACTIONS(8609), + [aux_sym_on_goto_statement_token1] = ACTIONS(8607), + [aux_sym_on_goto_statement_token2] = ACTIONS(8607), + [aux_sym_on_error_statement_token2] = ACTIONS(8607), + [sym__ambiguous_redim_statement] = ACTIONS(8609), + [aux_sym_erase_statement_token1] = ACTIONS(8607), + [aux_sym_open_statement_token1] = ACTIONS(8607), + [aux_sym_file_mode_token2] = ACTIONS(8607), + [aux_sym_file_access_token2] = ACTIONS(8607), + [aux_sym_file_lock_token2] = ACTIONS(8607), + [aux_sym_print_statement_token1] = ACTIONS(8607), + [anon_sym_PLUS] = ACTIONS(8609), + [anon_sym_DASH] = ACTIONS(8607), + [anon_sym_QMARK] = ACTIONS(8609), + [aux_sym_close_statement_token1] = ACTIONS(8607), + [aux_sym_put_statement_token1] = ACTIONS(8607), + [aux_sym_unlock_statement_token1] = ACTIONS(8607), + [aux_sym_seek_statement_token1] = ACTIONS(8607), + [sym_reset_statement] = ACTIONS(8607), + [aux_sym_raise_event_statement_token1] = ACTIONS(8607), + [sym_stop_statement] = ACTIONS(8607), + [sym_beep_statement] = ACTIONS(8607), + [aux_sym_unload_statement_token1] = ACTIONS(8607), + [aux_sym_def_type_statement_token1] = ACTIONS(8607), + [aux_sym_def_type_statement_token2] = ACTIONS(8607), + [aux_sym_def_type_statement_token3] = ACTIONS(8607), + [aux_sym_def_type_statement_token4] = ACTIONS(8607), + [aux_sym_def_type_statement_token5] = ACTIONS(8607), + [aux_sym_def_type_statement_token6] = ACTIONS(8607), + [aux_sym_def_type_statement_token7] = ACTIONS(8607), + [aux_sym_def_type_statement_token8] = ACTIONS(8607), + [aux_sym_def_type_statement_token9] = ACTIONS(8607), + [aux_sym_def_type_statement_token10] = ACTIONS(8607), + [aux_sym_def_type_statement_token11] = ACTIONS(8607), + [aux_sym_def_type_statement_token12] = ACTIONS(8607), + [aux_sym_def_type_statement_token13] = ACTIONS(8607), + [aux_sym_def_type_statement_token14] = ACTIONS(8607), + [aux_sym_call_statement_token1] = ACTIONS(8607), + [sym__ambiguous_call_statement] = ACTIONS(8607), + [aux_sym_addressof_expression_token1] = ACTIONS(8607), + [aux_sym_type_of_expression_token1] = ACTIONS(8607), + [aux_sym_unary_expression_token1] = ACTIONS(8607), + [sym_string_literal] = ACTIONS(8609), + [sym_number_literal] = ACTIONS(8609), + [aux_sym_boolean_literal_token1] = ACTIONS(8607), + [aux_sym_boolean_literal_token2] = ACTIONS(8607), + [sym_nothing_literal] = ACTIONS(8607), + [sym_null_literal] = ACTIONS(8607), + [sym_empty_literal] = ACTIONS(8607), + [sym_date_literal] = ACTIONS(8609), + [anon_sym_POUND] = ACTIONS(8607), + }, + [STATE(6164)] = { + [sym_identifier] = ACTIONS(8723), + [sym_newline] = ACTIONS(8725), + [anon_sym_COLON] = ACTIONS(8725), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8723), + [aux_sym_frm_property_statement_token1] = ACTIONS(8723), + [anon_sym_DOT] = ACTIONS(8723), + [anon_sym_BANG] = ACTIONS(8725), + [aux_sym__attribute_identifier_token1] = ACTIONS(8723), + [aux_sym_option_statement_token3] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8723), + [aux_sym_preprocessor_const_token1] = ACTIONS(8723), + [sym_static_modifier] = ACTIONS(8723), + [sym__dim_keyword] = ACTIONS(8723), + [sym__redim_keyword] = ACTIONS(8723), + [aux_sym_get_accessor_token1] = ACTIONS(8723), + [aux_sym_set_accessor_token1] = ACTIONS(8723), + [aux_sym_const_declaration_token1] = ACTIONS(8723), + [anon_sym_LPAREN] = ACTIONS(8725), + [aux_sym_as_type_clause_token2] = ACTIONS(8723), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8723), + [aux_sym_visibility_token1] = ACTIONS(8723), + [aux_sym_visibility_token2] = ACTIONS(8723), + [aux_sym_elseif_fragment_token1] = ACTIONS(8723), + [aux_sym_else_fragment_token1] = ACTIONS(8723), + [aux_sym_select_statement_token1] = ACTIONS(8723), + [aux_sym__for_header_token1] = ACTIONS(8723), + [aux_sym_do_statement_token1] = ACTIONS(8723), + [aux_sym_do_statement_token2] = ACTIONS(8723), + [aux_sym_do_condition_token1] = ACTIONS(8723), + [aux_sym_with_statement_token1] = ACTIONS(8723), + [aux_sym_exit_statement_token1] = ACTIONS(8723), + [sym_end_statement] = ACTIONS(8725), + [aux_sym_on_goto_statement_token1] = ACTIONS(8723), + [aux_sym_on_goto_statement_token2] = ACTIONS(8723), + [aux_sym_on_error_statement_token2] = ACTIONS(8723), + [sym__ambiguous_redim_statement] = ACTIONS(8725), + [aux_sym_erase_statement_token1] = ACTIONS(8723), + [aux_sym_open_statement_token1] = ACTIONS(8723), + [aux_sym_open_statement_token3] = ACTIONS(11018), + [aux_sym_file_mode_token2] = ACTIONS(8723), + [aux_sym_file_access_token2] = ACTIONS(8723), + [aux_sym_file_lock_token2] = ACTIONS(8723), + [aux_sym_print_statement_token1] = ACTIONS(8723), + [anon_sym_PLUS] = ACTIONS(8725), + [anon_sym_DASH] = ACTIONS(8723), + [anon_sym_QMARK] = ACTIONS(8725), + [aux_sym_close_statement_token1] = ACTIONS(8723), + [aux_sym_put_statement_token1] = ACTIONS(8723), + [aux_sym_unlock_statement_token1] = ACTIONS(8723), + [aux_sym_seek_statement_token1] = ACTIONS(8723), + [sym_reset_statement] = ACTIONS(8723), + [aux_sym_raise_event_statement_token1] = ACTIONS(8723), + [sym_stop_statement] = ACTIONS(8723), + [sym_beep_statement] = ACTIONS(8723), + [aux_sym_unload_statement_token1] = ACTIONS(8723), + [aux_sym_def_type_statement_token1] = ACTIONS(8723), + [aux_sym_def_type_statement_token2] = ACTIONS(8723), + [aux_sym_def_type_statement_token3] = ACTIONS(8723), + [aux_sym_def_type_statement_token4] = ACTIONS(8723), + [aux_sym_def_type_statement_token5] = ACTIONS(8723), + [aux_sym_def_type_statement_token6] = ACTIONS(8723), + [aux_sym_def_type_statement_token7] = ACTIONS(8723), + [aux_sym_def_type_statement_token8] = ACTIONS(8723), + [aux_sym_def_type_statement_token9] = ACTIONS(8723), + [aux_sym_def_type_statement_token10] = ACTIONS(8723), + [aux_sym_def_type_statement_token11] = ACTIONS(8723), + [aux_sym_def_type_statement_token12] = ACTIONS(8723), + [aux_sym_def_type_statement_token13] = ACTIONS(8723), + [aux_sym_def_type_statement_token14] = ACTIONS(8723), + [aux_sym_call_statement_token1] = ACTIONS(8723), + [sym__ambiguous_call_statement] = ACTIONS(8723), + [aux_sym_addressof_expression_token1] = ACTIONS(8723), + [aux_sym_type_of_expression_token1] = ACTIONS(8723), + [aux_sym_unary_expression_token1] = ACTIONS(8723), + [sym_string_literal] = ACTIONS(8725), + [sym_number_literal] = ACTIONS(8725), + [aux_sym_boolean_literal_token1] = ACTIONS(8723), + [aux_sym_boolean_literal_token2] = ACTIONS(8723), + [sym_nothing_literal] = ACTIONS(8723), + [sym_null_literal] = ACTIONS(8723), + [sym_empty_literal] = ACTIONS(8723), + [sym_date_literal] = ACTIONS(8725), + [anon_sym_POUND] = ACTIONS(8723), + }, + [STATE(6165)] = { + [sym_identifier] = ACTIONS(8680), + [sym_newline] = ACTIONS(8682), + [anon_sym_COLON] = ACTIONS(8682), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8680), + [aux_sym_frm_property_statement_token1] = ACTIONS(8680), + [anon_sym_DOT] = ACTIONS(8680), + [anon_sym_BANG] = ACTIONS(8682), + [aux_sym__attribute_identifier_token1] = ACTIONS(8680), + [aux_sym_option_statement_token3] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8680), + [aux_sym_preprocessor_const_token1] = ACTIONS(8680), + [sym_static_modifier] = ACTIONS(8680), + [sym__dim_keyword] = ACTIONS(8680), + [sym__redim_keyword] = ACTIONS(8680), + [aux_sym_get_accessor_token1] = ACTIONS(8680), + [aux_sym_set_accessor_token1] = ACTIONS(8680), + [anon_sym_COMMA] = ACTIONS(8682), + [aux_sym_const_declaration_token1] = ACTIONS(8680), + [anon_sym_LPAREN] = ACTIONS(8682), + [aux_sym_as_type_clause_token2] = ACTIONS(8680), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8680), + [aux_sym_visibility_token1] = ACTIONS(8680), + [aux_sym_visibility_token2] = ACTIONS(8680), + [aux_sym_elseif_fragment_token1] = ACTIONS(8680), + [aux_sym_else_fragment_token1] = ACTIONS(8680), + [aux_sym_select_statement_token1] = ACTIONS(8680), + [aux_sym__for_header_token1] = ACTIONS(8680), + [aux_sym_do_statement_token1] = ACTIONS(8680), + [aux_sym_do_statement_token2] = ACTIONS(8680), + [aux_sym_do_condition_token1] = ACTIONS(8680), + [aux_sym_with_statement_token1] = ACTIONS(8680), + [aux_sym_exit_statement_token1] = ACTIONS(8680), + [sym_end_statement] = ACTIONS(8682), + [aux_sym_on_goto_statement_token1] = ACTIONS(8680), + [aux_sym_on_goto_statement_token2] = ACTIONS(8680), + [aux_sym_on_error_statement_token2] = ACTIONS(8680), + [sym__ambiguous_redim_statement] = ACTIONS(8682), + [aux_sym_erase_statement_token1] = ACTIONS(8680), + [aux_sym_open_statement_token1] = ACTIONS(8680), + [aux_sym_file_mode_token2] = ACTIONS(8680), + [aux_sym_file_access_token2] = ACTIONS(8680), + [aux_sym_file_lock_token2] = ACTIONS(8680), + [aux_sym_print_statement_token1] = ACTIONS(8680), + [anon_sym_PLUS] = ACTIONS(8682), + [anon_sym_DASH] = ACTIONS(8680), + [anon_sym_QMARK] = ACTIONS(8682), + [aux_sym_close_statement_token1] = ACTIONS(8680), + [aux_sym_put_statement_token1] = ACTIONS(8680), + [aux_sym_unlock_statement_token1] = ACTIONS(8680), + [aux_sym_seek_statement_token1] = ACTIONS(8680), + [sym_reset_statement] = ACTIONS(8680), + [aux_sym_raise_event_statement_token1] = ACTIONS(8680), + [sym_stop_statement] = ACTIONS(8680), + [sym_beep_statement] = ACTIONS(8680), + [aux_sym_unload_statement_token1] = ACTIONS(8680), + [aux_sym_def_type_statement_token1] = ACTIONS(8680), + [aux_sym_def_type_statement_token2] = ACTIONS(8680), + [aux_sym_def_type_statement_token3] = ACTIONS(8680), + [aux_sym_def_type_statement_token4] = ACTIONS(8680), + [aux_sym_def_type_statement_token5] = ACTIONS(8680), + [aux_sym_def_type_statement_token6] = ACTIONS(8680), + [aux_sym_def_type_statement_token7] = ACTIONS(8680), + [aux_sym_def_type_statement_token8] = ACTIONS(8680), + [aux_sym_def_type_statement_token9] = ACTIONS(8680), + [aux_sym_def_type_statement_token10] = ACTIONS(8680), + [aux_sym_def_type_statement_token11] = ACTIONS(8680), + [aux_sym_def_type_statement_token12] = ACTIONS(8680), + [aux_sym_def_type_statement_token13] = ACTIONS(8680), + [aux_sym_def_type_statement_token14] = ACTIONS(8680), + [aux_sym_call_statement_token1] = ACTIONS(8680), + [sym__ambiguous_call_statement] = ACTIONS(8680), + [aux_sym_addressof_expression_token1] = ACTIONS(8680), + [aux_sym_type_of_expression_token1] = ACTIONS(8680), + [aux_sym_unary_expression_token1] = ACTIONS(8680), + [sym_string_literal] = ACTIONS(8682), + [sym_number_literal] = ACTIONS(8682), + [aux_sym_boolean_literal_token1] = ACTIONS(8680), + [aux_sym_boolean_literal_token2] = ACTIONS(8680), + [sym_nothing_literal] = ACTIONS(8680), + [sym_null_literal] = ACTIONS(8680), + [sym_empty_literal] = ACTIONS(8680), + [sym_date_literal] = ACTIONS(8682), + [anon_sym_POUND] = ACTIONS(8680), + }, + [STATE(6166)] = { + [sym_identifier] = ACTIONS(8443), + [sym_newline] = ACTIONS(8445), + [anon_sym_COLON] = ACTIONS(8445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8443), + [aux_sym_frm_property_statement_token1] = ACTIONS(8443), + [anon_sym_DOT] = ACTIONS(8443), + [anon_sym_BANG] = ACTIONS(8445), + [aux_sym__attribute_identifier_token1] = ACTIONS(8443), + [aux_sym_option_statement_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8443), + [aux_sym_preprocessor_const_token1] = ACTIONS(8443), + [sym_static_modifier] = ACTIONS(8443), + [sym__dim_keyword] = ACTIONS(8443), + [sym__redim_keyword] = ACTIONS(8443), + [aux_sym_get_accessor_token1] = ACTIONS(8443), + [aux_sym_set_accessor_token1] = ACTIONS(8443), + [anon_sym_COMMA] = ACTIONS(8445), + [aux_sym_const_declaration_token1] = ACTIONS(8443), + [anon_sym_LPAREN] = ACTIONS(8445), + [aux_sym_as_type_clause_token2] = ACTIONS(8443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8443), + [aux_sym_visibility_token1] = ACTIONS(8443), + [aux_sym_visibility_token2] = ACTIONS(8443), + [aux_sym_elseif_fragment_token1] = ACTIONS(8443), + [aux_sym_else_fragment_token1] = ACTIONS(8443), + [aux_sym_select_statement_token1] = ACTIONS(8443), + [aux_sym__for_header_token1] = ACTIONS(8443), + [aux_sym_do_statement_token1] = ACTIONS(8443), + [aux_sym_do_condition_token1] = ACTIONS(8443), + [aux_sym_with_statement_token1] = ACTIONS(8443), + [aux_sym_exit_statement_token1] = ACTIONS(8443), + [sym_end_statement] = ACTIONS(8445), + [aux_sym_on_goto_statement_token1] = ACTIONS(8443), + [aux_sym_on_goto_statement_token2] = ACTIONS(8443), + [aux_sym_on_error_statement_token2] = ACTIONS(8443), + [sym__ambiguous_redim_statement] = ACTIONS(8445), + [aux_sym_erase_statement_token1] = ACTIONS(8443), + [aux_sym_open_statement_token1] = ACTIONS(8443), + [aux_sym_file_mode_token2] = ACTIONS(8443), + [aux_sym_file_access_token2] = ACTIONS(8443), + [aux_sym_file_lock_token2] = ACTIONS(8443), + [aux_sym_print_statement_token1] = ACTIONS(8443), + [anon_sym_PLUS] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8443), + [anon_sym_QMARK] = ACTIONS(8445), + [aux_sym_close_statement_token1] = ACTIONS(8443), + [aux_sym_put_statement_token1] = ACTIONS(8443), + [aux_sym_unlock_statement_token1] = ACTIONS(8443), + [aux_sym_seek_statement_token1] = ACTIONS(8443), + [sym_reset_statement] = ACTIONS(8443), + [aux_sym_raise_event_statement_token1] = ACTIONS(8443), + [sym_stop_statement] = ACTIONS(8443), + [sym_beep_statement] = ACTIONS(8443), + [aux_sym_unload_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token2] = ACTIONS(8443), + [aux_sym_def_type_statement_token3] = ACTIONS(8443), + [aux_sym_def_type_statement_token4] = ACTIONS(8443), + [aux_sym_def_type_statement_token5] = ACTIONS(8443), + [aux_sym_def_type_statement_token6] = ACTIONS(8443), + [aux_sym_def_type_statement_token7] = ACTIONS(8443), + [aux_sym_def_type_statement_token8] = ACTIONS(8443), + [aux_sym_def_type_statement_token9] = ACTIONS(8443), + [aux_sym_def_type_statement_token10] = ACTIONS(8443), + [aux_sym_def_type_statement_token11] = ACTIONS(8443), + [aux_sym_def_type_statement_token12] = ACTIONS(8443), + [aux_sym_def_type_statement_token13] = ACTIONS(8443), + [aux_sym_def_type_statement_token14] = ACTIONS(8443), + [aux_sym_call_statement_token1] = ACTIONS(8443), + [sym__ambiguous_call_statement] = ACTIONS(8443), + [aux_sym_addressof_expression_token1] = ACTIONS(8443), + [aux_sym_type_of_expression_token1] = ACTIONS(8443), + [aux_sym_unary_expression_token1] = ACTIONS(8443), + [sym_string_literal] = ACTIONS(8445), + [sym_number_literal] = ACTIONS(8445), + [aux_sym_boolean_literal_token1] = ACTIONS(8443), + [aux_sym_boolean_literal_token2] = ACTIONS(8443), + [sym_nothing_literal] = ACTIONS(8443), + [sym_null_literal] = ACTIONS(8443), + [sym_empty_literal] = ACTIONS(8443), + [sym_date_literal] = ACTIONS(8445), + [anon_sym_POUND] = ACTIONS(8443), + }, + [STATE(6167)] = { + [sym_identifier] = ACTIONS(8847), + [sym_newline] = ACTIONS(8849), + [anon_sym_COLON] = ACTIONS(8849), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8847), + [aux_sym_frm_property_statement_token1] = ACTIONS(8847), + [anon_sym_DOT] = ACTIONS(8847), + [anon_sym_BANG] = ACTIONS(8849), + [aux_sym__attribute_identifier_token1] = ACTIONS(8847), + [aux_sym_option_statement_token3] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8847), + [aux_sym_preprocessor_const_token1] = ACTIONS(8847), + [sym_static_modifier] = ACTIONS(8847), + [sym__dim_keyword] = ACTIONS(8847), + [sym__redim_keyword] = ACTIONS(8847), + [aux_sym_get_accessor_token1] = ACTIONS(8847), + [aux_sym_set_accessor_token1] = ACTIONS(8847), + [anon_sym_COMMA] = ACTIONS(8849), + [aux_sym_const_declaration_token1] = ACTIONS(8847), + [anon_sym_LPAREN] = ACTIONS(8849), + [aux_sym_as_type_clause_token2] = ACTIONS(8847), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8847), + [aux_sym_visibility_token1] = ACTIONS(8847), + [aux_sym_visibility_token2] = ACTIONS(8847), + [aux_sym_elseif_fragment_token1] = ACTIONS(8847), + [aux_sym_else_fragment_token1] = ACTIONS(8847), + [aux_sym_select_statement_token1] = ACTIONS(8847), + [aux_sym_select_statement_token2] = ACTIONS(8847), + [aux_sym__for_header_token1] = ACTIONS(8847), + [aux_sym_do_statement_token1] = ACTIONS(8847), + [aux_sym_do_condition_token1] = ACTIONS(8847), + [aux_sym_with_statement_token1] = ACTIONS(8847), + [aux_sym_exit_statement_token1] = ACTIONS(8847), + [sym_end_statement] = ACTIONS(8849), + [aux_sym_on_goto_statement_token1] = ACTIONS(8847), + [aux_sym_on_goto_statement_token2] = ACTIONS(8847), + [aux_sym_on_error_statement_token2] = ACTIONS(8847), + [sym__ambiguous_redim_statement] = ACTIONS(8849), + [aux_sym_erase_statement_token1] = ACTIONS(8847), + [aux_sym_open_statement_token1] = ACTIONS(8847), + [aux_sym_file_mode_token2] = ACTIONS(8847), + [aux_sym_file_access_token2] = ACTIONS(8847), + [aux_sym_file_lock_token2] = ACTIONS(8847), + [aux_sym_print_statement_token1] = ACTIONS(8847), + [anon_sym_PLUS] = ACTIONS(8849), + [anon_sym_DASH] = ACTIONS(11020), + [anon_sym_QMARK] = ACTIONS(8849), + [aux_sym_close_statement_token1] = ACTIONS(8847), + [aux_sym_put_statement_token1] = ACTIONS(8847), + [aux_sym_unlock_statement_token1] = ACTIONS(8847), + [aux_sym_seek_statement_token1] = ACTIONS(8847), + [sym_reset_statement] = ACTIONS(8847), + [aux_sym_raise_event_statement_token1] = ACTIONS(8847), + [sym_stop_statement] = ACTIONS(8847), + [sym_beep_statement] = ACTIONS(8847), + [aux_sym_unload_statement_token1] = ACTIONS(8847), + [aux_sym_def_type_statement_token1] = ACTIONS(8847), + [aux_sym_def_type_statement_token2] = ACTIONS(8847), + [aux_sym_def_type_statement_token3] = ACTIONS(8847), + [aux_sym_def_type_statement_token4] = ACTIONS(8847), + [aux_sym_def_type_statement_token5] = ACTIONS(8847), + [aux_sym_def_type_statement_token6] = ACTIONS(8847), + [aux_sym_def_type_statement_token7] = ACTIONS(8847), + [aux_sym_def_type_statement_token8] = ACTIONS(8847), + [aux_sym_def_type_statement_token9] = ACTIONS(8847), + [aux_sym_def_type_statement_token10] = ACTIONS(8847), + [aux_sym_def_type_statement_token11] = ACTIONS(8847), + [aux_sym_def_type_statement_token12] = ACTIONS(8847), + [aux_sym_def_type_statement_token13] = ACTIONS(8847), + [aux_sym_def_type_statement_token14] = ACTIONS(8847), + [aux_sym_call_statement_token1] = ACTIONS(8847), + [sym__ambiguous_call_statement] = ACTIONS(8847), + [aux_sym_addressof_expression_token1] = ACTIONS(8847), + [aux_sym_type_of_expression_token1] = ACTIONS(8847), + [aux_sym_unary_expression_token1] = ACTIONS(8847), + [sym_string_literal] = ACTIONS(8849), + [sym_number_literal] = ACTIONS(8849), + [aux_sym_boolean_literal_token1] = ACTIONS(8847), + [aux_sym_boolean_literal_token2] = ACTIONS(8847), + [sym_nothing_literal] = ACTIONS(8847), + [sym_null_literal] = ACTIONS(8847), + [sym_empty_literal] = ACTIONS(8847), + [sym_date_literal] = ACTIONS(8849), + [anon_sym_POUND] = ACTIONS(8847), + }, + [STATE(6168)] = { + [sym_identifier] = ACTIONS(8835), + [sym_newline] = ACTIONS(8837), + [anon_sym_COLON] = ACTIONS(8837), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8835), + [aux_sym_frm_property_statement_token1] = ACTIONS(8835), + [anon_sym_DOT] = ACTIONS(8835), + [anon_sym_BANG] = ACTIONS(8837), + [aux_sym__attribute_identifier_token1] = ACTIONS(8835), + [aux_sym_option_statement_token3] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8835), + [aux_sym_preprocessor_const_token1] = ACTIONS(8835), + [sym_static_modifier] = ACTIONS(8835), + [sym__dim_keyword] = ACTIONS(8835), + [sym__redim_keyword] = ACTIONS(8835), + [aux_sym_get_accessor_token1] = ACTIONS(8835), + [aux_sym_set_accessor_token1] = ACTIONS(8835), + [anon_sym_COMMA] = ACTIONS(8837), + [aux_sym_const_declaration_token1] = ACTIONS(8835), + [anon_sym_LPAREN] = ACTIONS(8837), + [aux_sym_as_type_clause_token2] = ACTIONS(8835), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8835), + [aux_sym_visibility_token1] = ACTIONS(8835), + [aux_sym_visibility_token2] = ACTIONS(8835), + [aux_sym_elseif_fragment_token1] = ACTIONS(8835), + [aux_sym_else_fragment_token1] = ACTIONS(8835), + [aux_sym_select_statement_token1] = ACTIONS(8835), + [aux_sym__for_header_token1] = ACTIONS(8835), + [aux_sym_do_statement_token1] = ACTIONS(8835), + [aux_sym_do_statement_token2] = ACTIONS(8835), + [aux_sym_do_condition_token1] = ACTIONS(8835), + [aux_sym_with_statement_token1] = ACTIONS(8835), + [aux_sym_exit_statement_token1] = ACTIONS(8835), + [sym_end_statement] = ACTIONS(8837), + [aux_sym_on_goto_statement_token1] = ACTIONS(8835), + [aux_sym_on_goto_statement_token2] = ACTIONS(8835), + [aux_sym_on_error_statement_token2] = ACTIONS(8835), + [sym__ambiguous_redim_statement] = ACTIONS(8837), + [aux_sym_erase_statement_token1] = ACTIONS(8835), + [aux_sym_open_statement_token1] = ACTIONS(8835), + [aux_sym_file_mode_token2] = ACTIONS(8835), + [aux_sym_file_access_token2] = ACTIONS(8835), + [aux_sym_file_lock_token2] = ACTIONS(8835), + [aux_sym_print_statement_token1] = ACTIONS(8835), + [anon_sym_PLUS] = ACTIONS(8837), + [anon_sym_DASH] = ACTIONS(8835), + [anon_sym_QMARK] = ACTIONS(8837), + [aux_sym_close_statement_token1] = ACTIONS(8835), + [aux_sym_put_statement_token1] = ACTIONS(8835), + [aux_sym_unlock_statement_token1] = ACTIONS(8835), + [aux_sym_seek_statement_token1] = ACTIONS(8835), + [sym_reset_statement] = ACTIONS(8835), + [aux_sym_raise_event_statement_token1] = ACTIONS(8835), + [sym_stop_statement] = ACTIONS(8835), + [sym_beep_statement] = ACTIONS(8835), + [aux_sym_unload_statement_token1] = ACTIONS(8835), + [aux_sym_def_type_statement_token1] = ACTIONS(8835), + [aux_sym_def_type_statement_token2] = ACTIONS(8835), + [aux_sym_def_type_statement_token3] = ACTIONS(8835), + [aux_sym_def_type_statement_token4] = ACTIONS(8835), + [aux_sym_def_type_statement_token5] = ACTIONS(8835), + [aux_sym_def_type_statement_token6] = ACTIONS(8835), + [aux_sym_def_type_statement_token7] = ACTIONS(8835), + [aux_sym_def_type_statement_token8] = ACTIONS(8835), + [aux_sym_def_type_statement_token9] = ACTIONS(8835), + [aux_sym_def_type_statement_token10] = ACTIONS(8835), + [aux_sym_def_type_statement_token11] = ACTIONS(8835), + [aux_sym_def_type_statement_token12] = ACTIONS(8835), + [aux_sym_def_type_statement_token13] = ACTIONS(8835), + [aux_sym_def_type_statement_token14] = ACTIONS(8835), + [aux_sym_call_statement_token1] = ACTIONS(8835), + [sym__ambiguous_call_statement] = ACTIONS(8835), + [aux_sym_addressof_expression_token1] = ACTIONS(8835), + [aux_sym_type_of_expression_token1] = ACTIONS(8835), + [aux_sym_unary_expression_token1] = ACTIONS(8835), + [sym_string_literal] = ACTIONS(8837), + [sym_number_literal] = ACTIONS(8837), + [aux_sym_boolean_literal_token1] = ACTIONS(8835), + [aux_sym_boolean_literal_token2] = ACTIONS(8835), + [sym_nothing_literal] = ACTIONS(8835), + [sym_null_literal] = ACTIONS(8835), + [sym_empty_literal] = ACTIONS(8835), + [sym_date_literal] = ACTIONS(8837), + [anon_sym_POUND] = ACTIONS(8835), + }, + [STATE(6169)] = { + [sym_identifier] = ACTIONS(8729), + [sym_newline] = ACTIONS(8731), + [anon_sym_COLON] = ACTIONS(8731), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8729), + [aux_sym_frm_property_statement_token1] = ACTIONS(8729), + [anon_sym_DOT] = ACTIONS(8729), + [anon_sym_BANG] = ACTIONS(8731), + [aux_sym__attribute_identifier_token1] = ACTIONS(8729), + [aux_sym_option_statement_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8729), + [aux_sym_preprocessor_const_token1] = ACTIONS(8729), + [sym_static_modifier] = ACTIONS(8729), + [sym__dim_keyword] = ACTIONS(8729), + [sym__redim_keyword] = ACTIONS(8729), + [aux_sym_get_accessor_token1] = ACTIONS(8729), + [aux_sym_set_accessor_token1] = ACTIONS(8729), + [aux_sym_const_declaration_token1] = ACTIONS(8729), + [anon_sym_LPAREN] = ACTIONS(8731), + [aux_sym_as_type_clause_token2] = ACTIONS(8729), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8729), + [aux_sym_visibility_token1] = ACTIONS(8729), + [aux_sym_visibility_token2] = ACTIONS(8729), + [aux_sym_elseif_fragment_token1] = ACTIONS(8729), + [aux_sym_else_fragment_token1] = ACTIONS(8729), + [aux_sym_select_statement_token1] = ACTIONS(8729), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8729), + [aux_sym__for_header_token1] = ACTIONS(8729), + [aux_sym_do_statement_token1] = ACTIONS(8729), + [aux_sym_do_condition_token1] = ACTIONS(8729), + [aux_sym_while_statement_token1] = ACTIONS(8729), + [aux_sym_with_statement_token1] = ACTIONS(8729), + [aux_sym_exit_statement_token1] = ACTIONS(8729), + [sym_end_statement] = ACTIONS(8731), + [aux_sym_on_goto_statement_token1] = ACTIONS(8729), + [aux_sym_on_goto_statement_token2] = ACTIONS(8729), + [aux_sym_on_error_statement_token2] = ACTIONS(8729), + [sym__ambiguous_redim_statement] = ACTIONS(8731), + [aux_sym_erase_statement_token1] = ACTIONS(8729), + [aux_sym_open_statement_token1] = ACTIONS(8729), + [aux_sym_file_mode_token2] = ACTIONS(8729), + [aux_sym_file_access_token2] = ACTIONS(8729), + [aux_sym_file_lock_token2] = ACTIONS(8729), + [aux_sym_print_statement_token1] = ACTIONS(8729), + [anon_sym_PLUS] = ACTIONS(8731), + [anon_sym_DASH] = ACTIONS(8729), + [anon_sym_QMARK] = ACTIONS(8731), + [aux_sym_close_statement_token1] = ACTIONS(8729), + [aux_sym_put_statement_token1] = ACTIONS(8729), + [aux_sym_unlock_statement_token1] = ACTIONS(8729), + [aux_sym_seek_statement_token1] = ACTIONS(8729), + [sym_reset_statement] = ACTIONS(8729), + [aux_sym_raise_event_statement_token1] = ACTIONS(8729), + [sym_stop_statement] = ACTIONS(8729), + [sym_beep_statement] = ACTIONS(8729), + [aux_sym_unload_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token2] = ACTIONS(8729), + [aux_sym_def_type_statement_token3] = ACTIONS(8729), + [aux_sym_def_type_statement_token4] = ACTIONS(8729), + [aux_sym_def_type_statement_token5] = ACTIONS(8729), + [aux_sym_def_type_statement_token6] = ACTIONS(8729), + [aux_sym_def_type_statement_token7] = ACTIONS(8729), + [aux_sym_def_type_statement_token8] = ACTIONS(8729), + [aux_sym_def_type_statement_token9] = ACTIONS(8729), + [aux_sym_def_type_statement_token10] = ACTIONS(8729), + [aux_sym_def_type_statement_token11] = ACTIONS(8729), + [aux_sym_def_type_statement_token12] = ACTIONS(8729), + [aux_sym_def_type_statement_token13] = ACTIONS(8729), + [aux_sym_def_type_statement_token14] = ACTIONS(8729), + [aux_sym_call_statement_token1] = ACTIONS(8729), + [sym__ambiguous_call_statement] = ACTIONS(8729), + [aux_sym_addressof_expression_token1] = ACTIONS(8729), + [aux_sym_type_of_expression_token1] = ACTIONS(8729), + [aux_sym_unary_expression_token1] = ACTIONS(8729), + [sym_string_literal] = ACTIONS(8731), + [sym_number_literal] = ACTIONS(8731), + [aux_sym_boolean_literal_token1] = ACTIONS(8729), + [aux_sym_boolean_literal_token2] = ACTIONS(8729), + [sym_nothing_literal] = ACTIONS(8729), + [sym_null_literal] = ACTIONS(8729), + [sym_empty_literal] = ACTIONS(8729), + [sym_date_literal] = ACTIONS(8731), + [anon_sym_POUND] = ACTIONS(8729), + }, + [STATE(6170)] = { + [aux_sym__unparenthesized_argument_sequence_repeat1] = STATE(6170), + [sym_identifier] = ACTIONS(8109), + [sym_newline] = ACTIONS(8111), + [anon_sym_COLON] = ACTIONS(8111), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8109), + [aux_sym_frm_property_statement_token1] = ACTIONS(8109), + [anon_sym_DOT] = ACTIONS(8109), + [anon_sym_BANG] = ACTIONS(8111), + [aux_sym__attribute_identifier_token1] = ACTIONS(8109), + [aux_sym_option_statement_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8109), + [aux_sym_preprocessor_const_token1] = ACTIONS(8109), + [sym_static_modifier] = ACTIONS(8109), + [sym__dim_keyword] = ACTIONS(8109), + [sym__redim_keyword] = ACTIONS(8109), + [aux_sym_get_accessor_token1] = ACTIONS(8109), + [aux_sym_set_accessor_token1] = ACTIONS(8109), + [aux_sym_const_declaration_token1] = ACTIONS(8109), + [anon_sym_LPAREN] = ACTIONS(8111), + [aux_sym_as_type_clause_token2] = ACTIONS(8109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8109), + [aux_sym_visibility_token1] = ACTIONS(8109), + [aux_sym_visibility_token2] = ACTIONS(8109), + [aux_sym_elseif_fragment_token1] = ACTIONS(8109), + [aux_sym_else_fragment_token1] = ACTIONS(8109), + [aux_sym_select_statement_token1] = ACTIONS(8109), + [aux_sym__for_header_token1] = ACTIONS(8109), + [aux_sym_do_statement_token1] = ACTIONS(8109), + [aux_sym_do_condition_token1] = ACTIONS(8109), + [aux_sym_with_statement_token1] = ACTIONS(8109), + [aux_sym_exit_statement_token1] = ACTIONS(8109), + [sym_end_statement] = ACTIONS(8111), + [aux_sym_on_goto_statement_token1] = ACTIONS(8109), + [aux_sym_on_goto_statement_token2] = ACTIONS(8109), + [aux_sym_on_error_statement_token2] = ACTIONS(8109), + [sym__ambiguous_redim_statement] = ACTIONS(8111), + [aux_sym_erase_statement_token1] = ACTIONS(8109), + [aux_sym_open_statement_token1] = ACTIONS(8109), + [aux_sym_file_mode_token2] = ACTIONS(8109), + [aux_sym_file_access_token2] = ACTIONS(8109), + [aux_sym_file_lock_token2] = ACTIONS(8109), + [aux_sym_print_statement_token1] = ACTIONS(8109), + [anon_sym_PLUS] = ACTIONS(8111), + [anon_sym_DASH] = ACTIONS(8109), + [anon_sym_SEMI] = ACTIONS(11022), + [anon_sym_QMARK] = ACTIONS(8111), + [aux_sym_close_statement_token1] = ACTIONS(8109), + [aux_sym_put_statement_token1] = ACTIONS(8109), + [aux_sym_unlock_statement_token1] = ACTIONS(8109), + [aux_sym_seek_statement_token1] = ACTIONS(8109), + [sym_reset_statement] = ACTIONS(8109), + [aux_sym_raise_event_statement_token1] = ACTIONS(8109), + [sym_stop_statement] = ACTIONS(8109), + [sym_beep_statement] = ACTIONS(8109), + [aux_sym_unload_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token2] = ACTIONS(8109), + [aux_sym_def_type_statement_token3] = ACTIONS(8109), + [aux_sym_def_type_statement_token4] = ACTIONS(8109), + [aux_sym_def_type_statement_token5] = ACTIONS(8109), + [aux_sym_def_type_statement_token6] = ACTIONS(8109), + [aux_sym_def_type_statement_token7] = ACTIONS(8109), + [aux_sym_def_type_statement_token8] = ACTIONS(8109), + [aux_sym_def_type_statement_token9] = ACTIONS(8109), + [aux_sym_def_type_statement_token10] = ACTIONS(8109), + [aux_sym_def_type_statement_token11] = ACTIONS(8109), + [aux_sym_def_type_statement_token12] = ACTIONS(8109), + [aux_sym_def_type_statement_token13] = ACTIONS(8109), + [aux_sym_def_type_statement_token14] = ACTIONS(8109), + [aux_sym_call_statement_token1] = ACTIONS(8109), + [sym__ambiguous_call_statement] = ACTIONS(8109), + [aux_sym_addressof_expression_token1] = ACTIONS(8109), + [aux_sym_type_of_expression_token1] = ACTIONS(8109), + [aux_sym_unary_expression_token1] = ACTIONS(8109), + [sym_string_literal] = ACTIONS(8111), + [sym_number_literal] = ACTIONS(8111), + [aux_sym_boolean_literal_token1] = ACTIONS(8109), + [aux_sym_boolean_literal_token2] = ACTIONS(8109), + [sym_nothing_literal] = ACTIONS(8109), + [sym_null_literal] = ACTIONS(8109), + [sym_empty_literal] = ACTIONS(8109), + [sym_date_literal] = ACTIONS(8111), + [anon_sym_POUND] = ACTIONS(8109), + }, + [STATE(6171)] = { + [sym_identifier] = ACTIONS(5716), + [sym_newline] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5716), + [aux_sym_frm_property_statement_token1] = ACTIONS(5716), + [anon_sym_DOT] = ACTIONS(5716), + [anon_sym_BANG] = ACTIONS(5718), + [aux_sym__attribute_identifier_token1] = ACTIONS(5716), + [aux_sym_option_statement_token3] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5716), + [aux_sym_preprocessor_const_token1] = ACTIONS(5716), + [sym_static_modifier] = ACTIONS(5716), + [sym__dim_keyword] = ACTIONS(5716), + [sym__redim_keyword] = ACTIONS(5716), + [aux_sym_get_accessor_token1] = ACTIONS(5716), + [aux_sym_set_accessor_token1] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5718), + [aux_sym_const_declaration_token1] = ACTIONS(5716), + [anon_sym_LPAREN] = ACTIONS(5718), + [aux_sym_as_type_clause_token2] = ACTIONS(5716), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5716), + [aux_sym_visibility_token1] = ACTIONS(5716), + [aux_sym_visibility_token2] = ACTIONS(5716), + [aux_sym_elseif_fragment_token1] = ACTIONS(5716), + [aux_sym_else_fragment_token1] = ACTIONS(5716), + [aux_sym_select_statement_token1] = ACTIONS(5716), + [aux_sym__for_header_token1] = ACTIONS(5716), + [aux_sym_do_statement_token1] = ACTIONS(5716), + [aux_sym_do_condition_token1] = ACTIONS(5716), + [aux_sym_with_statement_token1] = ACTIONS(5716), + [aux_sym_exit_statement_token1] = ACTIONS(5716), + [sym_end_statement] = ACTIONS(5718), + [aux_sym_on_goto_statement_token1] = ACTIONS(5716), + [aux_sym_on_goto_statement_token2] = ACTIONS(5716), + [aux_sym_on_error_statement_token2] = ACTIONS(5716), + [sym__ambiguous_redim_statement] = ACTIONS(5718), + [aux_sym_erase_statement_token1] = ACTIONS(5716), + [aux_sym_open_statement_token1] = ACTIONS(5716), + [aux_sym_file_mode_token2] = ACTIONS(5716), + [aux_sym_file_access_token2] = ACTIONS(5716), + [aux_sym_file_lock_token2] = ACTIONS(5716), + [aux_sym_print_statement_token1] = ACTIONS(5716), + [anon_sym_PLUS] = ACTIONS(5718), + [anon_sym_DASH] = ACTIONS(5716), + [anon_sym_SEMI] = ACTIONS(5718), + [anon_sym_QMARK] = ACTIONS(5718), + [aux_sym_close_statement_token1] = ACTIONS(5716), + [aux_sym_put_statement_token1] = ACTIONS(5716), + [aux_sym_unlock_statement_token1] = ACTIONS(5716), + [aux_sym_seek_statement_token1] = ACTIONS(5716), + [sym_reset_statement] = ACTIONS(5716), + [aux_sym_raise_event_statement_token1] = ACTIONS(5716), + [sym_stop_statement] = ACTIONS(5716), + [sym_beep_statement] = ACTIONS(5716), + [aux_sym_unload_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token1] = ACTIONS(5716), + [aux_sym_def_type_statement_token2] = ACTIONS(5716), + [aux_sym_def_type_statement_token3] = ACTIONS(5716), + [aux_sym_def_type_statement_token4] = ACTIONS(5716), + [aux_sym_def_type_statement_token5] = ACTIONS(5716), + [aux_sym_def_type_statement_token6] = ACTIONS(5716), + [aux_sym_def_type_statement_token7] = ACTIONS(5716), + [aux_sym_def_type_statement_token8] = ACTIONS(5716), + [aux_sym_def_type_statement_token9] = ACTIONS(5716), + [aux_sym_def_type_statement_token10] = ACTIONS(5716), + [aux_sym_def_type_statement_token11] = ACTIONS(5716), + [aux_sym_def_type_statement_token12] = ACTIONS(5716), + [aux_sym_def_type_statement_token13] = ACTIONS(5716), + [aux_sym_def_type_statement_token14] = ACTIONS(5716), + [aux_sym_call_statement_token1] = ACTIONS(5716), + [sym__ambiguous_call_statement] = ACTIONS(5716), + [aux_sym_addressof_expression_token1] = ACTIONS(5716), + [aux_sym_type_of_expression_token1] = ACTIONS(5716), + [aux_sym_unary_expression_token1] = ACTIONS(5716), + [sym_string_literal] = ACTIONS(5718), + [sym_number_literal] = ACTIONS(5718), + [aux_sym_boolean_literal_token1] = ACTIONS(5716), + [aux_sym_boolean_literal_token2] = ACTIONS(5716), + [sym_nothing_literal] = ACTIONS(5716), + [sym_null_literal] = ACTIONS(5716), + [sym_empty_literal] = ACTIONS(5716), + [sym_date_literal] = ACTIONS(5718), + [anon_sym_POUND] = ACTIONS(5716), + }, + [STATE(6172)] = { + [sym_identifier] = ACTIONS(8939), + [sym_newline] = ACTIONS(8941), + [anon_sym_COLON] = ACTIONS(8941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8939), + [aux_sym_frm_property_statement_token1] = ACTIONS(8939), + [anon_sym_DOT] = ACTIONS(8939), + [anon_sym_BANG] = ACTIONS(8941), + [aux_sym__attribute_identifier_token1] = ACTIONS(8939), + [aux_sym_option_statement_token3] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8939), + [aux_sym_preprocessor_const_token1] = ACTIONS(8939), + [sym_static_modifier] = ACTIONS(8939), + [sym__dim_keyword] = ACTIONS(8939), + [sym__redim_keyword] = ACTIONS(8939), + [aux_sym_get_accessor_token1] = ACTIONS(8939), + [aux_sym_set_accessor_token1] = ACTIONS(8939), + [anon_sym_COMMA] = ACTIONS(11025), + [aux_sym_const_declaration_token1] = ACTIONS(8939), + [anon_sym_LPAREN] = ACTIONS(8941), + [aux_sym_as_type_clause_token2] = ACTIONS(8939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8939), + [aux_sym_visibility_token1] = ACTIONS(8939), + [aux_sym_visibility_token2] = ACTIONS(8939), + [aux_sym_elseif_fragment_token1] = ACTIONS(8939), + [aux_sym_else_fragment_token1] = ACTIONS(8939), + [aux_sym_select_statement_token1] = ACTIONS(8939), + [aux_sym__for_header_token1] = ACTIONS(8939), + [aux_sym_do_statement_token1] = ACTIONS(8939), + [aux_sym_do_statement_token2] = ACTIONS(8939), + [aux_sym_do_condition_token1] = ACTIONS(8939), + [aux_sym_with_statement_token1] = ACTIONS(8939), + [aux_sym_exit_statement_token1] = ACTIONS(8939), + [sym_end_statement] = ACTIONS(8941), + [aux_sym_on_goto_statement_token1] = ACTIONS(8939), + [aux_sym_on_goto_statement_token2] = ACTIONS(8939), + [aux_sym_on_error_statement_token2] = ACTIONS(8939), + [sym__ambiguous_redim_statement] = ACTIONS(8941), + [aux_sym_erase_statement_token1] = ACTIONS(8939), + [aux_sym_open_statement_token1] = ACTIONS(8939), + [aux_sym_file_mode_token2] = ACTIONS(8939), + [aux_sym_file_access_token2] = ACTIONS(8939), + [aux_sym_file_lock_token2] = ACTIONS(8939), + [aux_sym_print_statement_token1] = ACTIONS(8939), + [anon_sym_PLUS] = ACTIONS(8941), + [anon_sym_DASH] = ACTIONS(8939), + [anon_sym_QMARK] = ACTIONS(8941), + [aux_sym_close_statement_token1] = ACTIONS(8939), + [aux_sym_put_statement_token1] = ACTIONS(8939), + [aux_sym_unlock_statement_token1] = ACTIONS(8939), + [aux_sym_seek_statement_token1] = ACTIONS(8939), + [sym_reset_statement] = ACTIONS(8939), + [aux_sym_raise_event_statement_token1] = ACTIONS(8939), + [sym_stop_statement] = ACTIONS(8939), + [sym_beep_statement] = ACTIONS(8939), + [aux_sym_unload_statement_token1] = ACTIONS(8939), + [aux_sym_def_type_statement_token1] = ACTIONS(8939), + [aux_sym_def_type_statement_token2] = ACTIONS(8939), + [aux_sym_def_type_statement_token3] = ACTIONS(8939), + [aux_sym_def_type_statement_token4] = ACTIONS(8939), + [aux_sym_def_type_statement_token5] = ACTIONS(8939), + [aux_sym_def_type_statement_token6] = ACTIONS(8939), + [aux_sym_def_type_statement_token7] = ACTIONS(8939), + [aux_sym_def_type_statement_token8] = ACTIONS(8939), + [aux_sym_def_type_statement_token9] = ACTIONS(8939), + [aux_sym_def_type_statement_token10] = ACTIONS(8939), + [aux_sym_def_type_statement_token11] = ACTIONS(8939), + [aux_sym_def_type_statement_token12] = ACTIONS(8939), + [aux_sym_def_type_statement_token13] = ACTIONS(8939), + [aux_sym_def_type_statement_token14] = ACTIONS(8939), + [aux_sym_call_statement_token1] = ACTIONS(8939), + [sym__ambiguous_call_statement] = ACTIONS(8939), + [aux_sym_addressof_expression_token1] = ACTIONS(8939), + [aux_sym_type_of_expression_token1] = ACTIONS(8939), + [aux_sym_unary_expression_token1] = ACTIONS(8939), + [sym_string_literal] = ACTIONS(8941), + [sym_number_literal] = ACTIONS(8941), + [aux_sym_boolean_literal_token1] = ACTIONS(8939), + [aux_sym_boolean_literal_token2] = ACTIONS(8939), + [sym_nothing_literal] = ACTIONS(8939), + [sym_null_literal] = ACTIONS(8939), + [sym_empty_literal] = ACTIONS(8939), + [sym_date_literal] = ACTIONS(8941), + [anon_sym_POUND] = ACTIONS(8939), + }, + [STATE(6173)] = { + [sym_identifier] = ACTIONS(3996), + [sym_newline] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3996), + [aux_sym_frm_property_statement_token1] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3994), + [aux_sym__attribute_identifier_token1] = ACTIONS(3996), + [aux_sym_option_statement_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3996), + [aux_sym_preprocessor_const_token1] = ACTIONS(3996), + [sym_static_modifier] = ACTIONS(3996), + [sym__dim_keyword] = ACTIONS(3996), + [sym__redim_keyword] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3996), + [aux_sym_set_accessor_token1] = ACTIONS(3996), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3994), + [aux_sym_as_type_clause_token2] = ACTIONS(3996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3996), + [aux_sym_visibility_token1] = ACTIONS(3996), + [aux_sym_visibility_token2] = ACTIONS(3996), + [aux_sym_elseif_fragment_token1] = ACTIONS(3996), + [aux_sym_else_fragment_token1] = ACTIONS(3996), + [aux_sym_select_statement_token1] = ACTIONS(3996), + [aux_sym__for_header_token1] = ACTIONS(3996), + [aux_sym_do_statement_token1] = ACTIONS(3996), + [aux_sym_do_statement_token2] = ACTIONS(3996), + [aux_sym_do_condition_token1] = ACTIONS(3996), + [aux_sym_with_statement_token1] = ACTIONS(3996), + [aux_sym_exit_statement_token1] = ACTIONS(3996), + [sym_end_statement] = ACTIONS(3994), + [aux_sym_on_goto_statement_token1] = ACTIONS(3996), + [aux_sym_on_goto_statement_token2] = ACTIONS(3996), + [aux_sym_on_error_statement_token2] = ACTIONS(3996), + [sym__ambiguous_redim_statement] = ACTIONS(3994), + [aux_sym_erase_statement_token1] = ACTIONS(3996), + [aux_sym_open_statement_token1] = ACTIONS(3996), + [aux_sym_file_mode_token2] = ACTIONS(3996), + [aux_sym_file_access_token2] = ACTIONS(3996), + [aux_sym_file_lock_token2] = ACTIONS(3996), + [aux_sym_print_statement_token1] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3994), + [aux_sym_close_statement_token1] = ACTIONS(3996), + [aux_sym_put_statement_token1] = ACTIONS(3996), + [aux_sym_unlock_statement_token1] = ACTIONS(3996), + [aux_sym_seek_statement_token1] = ACTIONS(3996), + [sym_reset_statement] = ACTIONS(3996), + [aux_sym_raise_event_statement_token1] = ACTIONS(3996), + [sym_stop_statement] = ACTIONS(3996), + [sym_beep_statement] = ACTIONS(3996), + [aux_sym_unload_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token2] = ACTIONS(3996), + [aux_sym_def_type_statement_token3] = ACTIONS(3996), + [aux_sym_def_type_statement_token4] = ACTIONS(3996), + [aux_sym_def_type_statement_token5] = ACTIONS(3996), + [aux_sym_def_type_statement_token6] = ACTIONS(3996), + [aux_sym_def_type_statement_token7] = ACTIONS(3996), + [aux_sym_def_type_statement_token8] = ACTIONS(3996), + [aux_sym_def_type_statement_token9] = ACTIONS(3996), + [aux_sym_def_type_statement_token10] = ACTIONS(3996), + [aux_sym_def_type_statement_token11] = ACTIONS(3996), + [aux_sym_def_type_statement_token12] = ACTIONS(3996), + [aux_sym_def_type_statement_token13] = ACTIONS(3996), + [aux_sym_def_type_statement_token14] = ACTIONS(3996), + [aux_sym_call_statement_token1] = ACTIONS(3996), + [sym__ambiguous_call_statement] = ACTIONS(3996), + [aux_sym_addressof_expression_token1] = ACTIONS(3996), + [aux_sym_type_of_expression_token1] = ACTIONS(3996), + [aux_sym_unary_expression_token1] = ACTIONS(3996), + [sym_string_literal] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3994), + [aux_sym_boolean_literal_token1] = ACTIONS(3996), + [aux_sym_boolean_literal_token2] = ACTIONS(3996), + [sym_nothing_literal] = ACTIONS(3996), + [sym_null_literal] = ACTIONS(3996), + [sym_empty_literal] = ACTIONS(3996), + [sym_date_literal] = ACTIONS(3994), + [anon_sym_POUND] = ACTIONS(3996), + }, + [STATE(6174)] = { + [sym_identifier] = ACTIONS(8861), + [sym_newline] = ACTIONS(8863), + [anon_sym_COLON] = ACTIONS(8863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8861), + [aux_sym_frm_property_statement_token1] = ACTIONS(8861), + [anon_sym_DOT] = ACTIONS(8861), + [anon_sym_BANG] = ACTIONS(8863), + [aux_sym__attribute_identifier_token1] = ACTIONS(8861), + [aux_sym_option_statement_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8861), + [aux_sym_preprocessor_const_token1] = ACTIONS(8861), + [sym_static_modifier] = ACTIONS(8861), + [sym__dim_keyword] = ACTIONS(8861), + [sym__redim_keyword] = ACTIONS(8861), + [aux_sym_get_accessor_token1] = ACTIONS(8861), + [aux_sym_set_accessor_token1] = ACTIONS(8861), + [aux_sym_const_declaration_token1] = ACTIONS(8861), + [anon_sym_LPAREN] = ACTIONS(8863), + [aux_sym_as_type_clause_token2] = ACTIONS(8861), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8861), + [aux_sym_visibility_token1] = ACTIONS(8861), + [aux_sym_visibility_token2] = ACTIONS(8861), + [aux_sym_elseif_fragment_token1] = ACTIONS(8861), + [aux_sym_else_fragment_token1] = ACTIONS(8861), + [aux_sym_select_statement_token1] = ACTIONS(8861), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8861), + [aux_sym__for_header_token1] = ACTIONS(8861), + [aux_sym_do_statement_token1] = ACTIONS(8861), + [aux_sym_do_condition_token1] = ACTIONS(8861), + [aux_sym_with_statement_token1] = ACTIONS(8861), + [aux_sym_exit_statement_token1] = ACTIONS(8861), + [sym_end_statement] = ACTIONS(8863), + [aux_sym_on_goto_statement_token1] = ACTIONS(8861), + [aux_sym_on_goto_statement_token2] = ACTIONS(8861), + [aux_sym_on_error_statement_token2] = ACTIONS(8861), + [sym__ambiguous_redim_statement] = ACTIONS(8863), + [aux_sym_erase_statement_token1] = ACTIONS(8861), + [aux_sym_open_statement_token1] = ACTIONS(8861), + [aux_sym_file_mode_token2] = ACTIONS(8861), + [aux_sym_file_access_token2] = ACTIONS(8861), + [aux_sym_file_lock_token2] = ACTIONS(8861), + [aux_sym_print_statement_token1] = ACTIONS(8861), + [anon_sym_PLUS] = ACTIONS(8863), + [anon_sym_DASH] = ACTIONS(8861), + [anon_sym_QMARK] = ACTIONS(8863), + [aux_sym_close_statement_token1] = ACTIONS(8861), + [aux_sym_put_statement_token1] = ACTIONS(8861), + [aux_sym_unlock_statement_token1] = ACTIONS(8861), + [aux_sym_seek_statement_token1] = ACTIONS(8861), + [sym_reset_statement] = ACTIONS(8861), + [aux_sym_raise_event_statement_token1] = ACTIONS(8861), + [sym_stop_statement] = ACTIONS(8861), + [sym_beep_statement] = ACTIONS(8861), + [aux_sym_unload_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token2] = ACTIONS(8861), + [aux_sym_def_type_statement_token3] = ACTIONS(8861), + [aux_sym_def_type_statement_token4] = ACTIONS(8861), + [aux_sym_def_type_statement_token5] = ACTIONS(8861), + [aux_sym_def_type_statement_token6] = ACTIONS(8861), + [aux_sym_def_type_statement_token7] = ACTIONS(8861), + [aux_sym_def_type_statement_token8] = ACTIONS(8861), + [aux_sym_def_type_statement_token9] = ACTIONS(8861), + [aux_sym_def_type_statement_token10] = ACTIONS(8861), + [aux_sym_def_type_statement_token11] = ACTIONS(8861), + [aux_sym_def_type_statement_token12] = ACTIONS(8861), + [aux_sym_def_type_statement_token13] = ACTIONS(8861), + [aux_sym_def_type_statement_token14] = ACTIONS(8861), + [aux_sym_call_statement_token1] = ACTIONS(8861), + [sym__ambiguous_call_statement] = ACTIONS(8861), + [aux_sym_addressof_expression_token1] = ACTIONS(8861), + [aux_sym_type_of_expression_token1] = ACTIONS(8861), + [aux_sym_unary_expression_token1] = ACTIONS(8861), + [sym_string_literal] = ACTIONS(8863), + [sym_number_literal] = ACTIONS(8863), + [aux_sym_boolean_literal_token1] = ACTIONS(8861), + [aux_sym_boolean_literal_token2] = ACTIONS(8861), + [sym_nothing_literal] = ACTIONS(8861), + [sym_null_literal] = ACTIONS(8861), + [sym_empty_literal] = ACTIONS(8861), + [sym_date_literal] = ACTIONS(8863), + [anon_sym_POUND] = ACTIONS(8861), + }, + [STATE(6175)] = { + [sym_identifier] = ACTIONS(8745), + [sym_newline] = ACTIONS(8747), + [anon_sym_COLON] = ACTIONS(8747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8745), + [aux_sym_frm_property_statement_token1] = ACTIONS(8745), + [anon_sym_DOT] = ACTIONS(8745), + [anon_sym_BANG] = ACTIONS(8747), + [aux_sym__attribute_identifier_token1] = ACTIONS(8745), + [aux_sym_option_statement_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8745), + [aux_sym_preprocessor_const_token1] = ACTIONS(8745), + [sym_static_modifier] = ACTIONS(8745), + [sym__dim_keyword] = ACTIONS(8745), + [sym__redim_keyword] = ACTIONS(8745), + [aux_sym_get_accessor_token1] = ACTIONS(8745), + [aux_sym_set_accessor_token1] = ACTIONS(8745), + [aux_sym_const_declaration_token1] = ACTIONS(8745), + [anon_sym_LPAREN] = ACTIONS(8747), + [aux_sym_as_type_clause_token2] = ACTIONS(8745), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8745), + [aux_sym_visibility_token1] = ACTIONS(8745), + [aux_sym_visibility_token2] = ACTIONS(8745), + [aux_sym_elseif_fragment_token1] = ACTIONS(8745), + [aux_sym_else_fragment_token1] = ACTIONS(8745), + [aux_sym_select_statement_token1] = ACTIONS(8745), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8745), + [aux_sym__for_header_token1] = ACTIONS(8745), + [aux_sym_do_statement_token1] = ACTIONS(8745), + [aux_sym_do_condition_token1] = ACTIONS(8745), + [aux_sym_while_statement_token1] = ACTIONS(8745), + [aux_sym_with_statement_token1] = ACTIONS(8745), + [aux_sym_exit_statement_token1] = ACTIONS(8745), + [sym_end_statement] = ACTIONS(8747), + [aux_sym_on_goto_statement_token1] = ACTIONS(8745), + [aux_sym_on_goto_statement_token2] = ACTIONS(8745), + [aux_sym_on_error_statement_token2] = ACTIONS(8745), + [sym__ambiguous_redim_statement] = ACTIONS(8747), + [aux_sym_erase_statement_token1] = ACTIONS(8745), + [aux_sym_open_statement_token1] = ACTIONS(8745), + [aux_sym_file_mode_token2] = ACTIONS(8745), + [aux_sym_file_access_token2] = ACTIONS(8745), + [aux_sym_file_lock_token2] = ACTIONS(8745), + [aux_sym_print_statement_token1] = ACTIONS(8745), + [anon_sym_PLUS] = ACTIONS(8747), + [anon_sym_DASH] = ACTIONS(8745), + [anon_sym_QMARK] = ACTIONS(8747), + [aux_sym_close_statement_token1] = ACTIONS(8745), + [aux_sym_put_statement_token1] = ACTIONS(8745), + [aux_sym_unlock_statement_token1] = ACTIONS(8745), + [aux_sym_seek_statement_token1] = ACTIONS(8745), + [sym_reset_statement] = ACTIONS(8745), + [aux_sym_raise_event_statement_token1] = ACTIONS(8745), + [sym_stop_statement] = ACTIONS(8745), + [sym_beep_statement] = ACTIONS(8745), + [aux_sym_unload_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token2] = ACTIONS(8745), + [aux_sym_def_type_statement_token3] = ACTIONS(8745), + [aux_sym_def_type_statement_token4] = ACTIONS(8745), + [aux_sym_def_type_statement_token5] = ACTIONS(8745), + [aux_sym_def_type_statement_token6] = ACTIONS(8745), + [aux_sym_def_type_statement_token7] = ACTIONS(8745), + [aux_sym_def_type_statement_token8] = ACTIONS(8745), + [aux_sym_def_type_statement_token9] = ACTIONS(8745), + [aux_sym_def_type_statement_token10] = ACTIONS(8745), + [aux_sym_def_type_statement_token11] = ACTIONS(8745), + [aux_sym_def_type_statement_token12] = ACTIONS(8745), + [aux_sym_def_type_statement_token13] = ACTIONS(8745), + [aux_sym_def_type_statement_token14] = ACTIONS(8745), + [aux_sym_call_statement_token1] = ACTIONS(8745), + [sym__ambiguous_call_statement] = ACTIONS(8745), + [aux_sym_addressof_expression_token1] = ACTIONS(8745), + [aux_sym_type_of_expression_token1] = ACTIONS(8745), + [aux_sym_unary_expression_token1] = ACTIONS(8745), + [sym_string_literal] = ACTIONS(8747), + [sym_number_literal] = ACTIONS(8747), + [aux_sym_boolean_literal_token1] = ACTIONS(8745), + [aux_sym_boolean_literal_token2] = ACTIONS(8745), + [sym_nothing_literal] = ACTIONS(8745), + [sym_null_literal] = ACTIONS(8745), + [sym_empty_literal] = ACTIONS(8745), + [sym_date_literal] = ACTIONS(8747), + [anon_sym_POUND] = ACTIONS(8745), + }, + [STATE(6176)] = { + [sym_identifier] = ACTIONS(7984), + [sym_newline] = ACTIONS(7986), + [anon_sym_COLON] = ACTIONS(7986), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7984), + [aux_sym_frm_property_statement_token1] = ACTIONS(7984), + [anon_sym_EQ] = ACTIONS(7986), + [anon_sym_DOT] = ACTIONS(7984), + [anon_sym_BANG] = ACTIONS(7986), + [aux_sym__attribute_identifier_token1] = ACTIONS(7984), + [aux_sym_option_statement_token3] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7984), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7984), + [aux_sym_preprocessor_const_token1] = ACTIONS(7984), + [sym_static_modifier] = ACTIONS(7984), + [sym__dim_keyword] = ACTIONS(7984), + [sym__redim_keyword] = ACTIONS(7984), + [aux_sym_get_accessor_token1] = ACTIONS(7984), + [aux_sym_set_accessor_token1] = ACTIONS(7984), + [anon_sym_COMMA] = ACTIONS(7986), + [aux_sym_const_declaration_token1] = ACTIONS(7984), + [anon_sym_LPAREN] = ACTIONS(7986), + [aux_sym_as_type_clause_token2] = ACTIONS(7984), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7984), + [aux_sym_visibility_token1] = ACTIONS(7984), + [aux_sym_visibility_token2] = ACTIONS(7984), + [aux_sym_elseif_fragment_token1] = ACTIONS(7984), + [aux_sym_else_fragment_token1] = ACTIONS(7984), + [aux_sym_select_statement_token1] = ACTIONS(7984), + [aux_sym__for_header_token1] = ACTIONS(7984), + [aux_sym_do_statement_token1] = ACTIONS(7984), + [aux_sym_do_condition_token1] = ACTIONS(7984), + [aux_sym_with_statement_token1] = ACTIONS(7984), + [aux_sym_exit_statement_token1] = ACTIONS(7984), + [sym_end_statement] = ACTIONS(7986), + [aux_sym_on_goto_statement_token1] = ACTIONS(7984), + [aux_sym_on_goto_statement_token2] = ACTIONS(7984), + [aux_sym_on_error_statement_token2] = ACTIONS(7984), + [sym__ambiguous_redim_statement] = ACTIONS(7986), + [aux_sym_erase_statement_token1] = ACTIONS(7984), + [aux_sym_open_statement_token1] = ACTIONS(7984), + [aux_sym_file_mode_token2] = ACTIONS(7984), + [aux_sym_file_access_token2] = ACTIONS(7984), + [aux_sym_file_lock_token2] = ACTIONS(7984), + [aux_sym_print_statement_token1] = ACTIONS(7984), + [anon_sym_PLUS] = ACTIONS(7986), + [anon_sym_DASH] = ACTIONS(7984), + [anon_sym_QMARK] = ACTIONS(7986), + [aux_sym_close_statement_token1] = ACTIONS(7984), + [aux_sym_put_statement_token1] = ACTIONS(7984), + [aux_sym_unlock_statement_token1] = ACTIONS(7984), + [aux_sym_seek_statement_token1] = ACTIONS(7984), + [sym_reset_statement] = ACTIONS(7984), + [aux_sym_raise_event_statement_token1] = ACTIONS(7984), + [sym_stop_statement] = ACTIONS(7984), + [sym_beep_statement] = ACTIONS(7984), + [aux_sym_unload_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token1] = ACTIONS(7984), + [aux_sym_def_type_statement_token2] = ACTIONS(7984), + [aux_sym_def_type_statement_token3] = ACTIONS(7984), + [aux_sym_def_type_statement_token4] = ACTIONS(7984), + [aux_sym_def_type_statement_token5] = ACTIONS(7984), + [aux_sym_def_type_statement_token6] = ACTIONS(7984), + [aux_sym_def_type_statement_token7] = ACTIONS(7984), + [aux_sym_def_type_statement_token8] = ACTIONS(7984), + [aux_sym_def_type_statement_token9] = ACTIONS(7984), + [aux_sym_def_type_statement_token10] = ACTIONS(7984), + [aux_sym_def_type_statement_token11] = ACTIONS(7984), + [aux_sym_def_type_statement_token12] = ACTIONS(7984), + [aux_sym_def_type_statement_token13] = ACTIONS(7984), + [aux_sym_def_type_statement_token14] = ACTIONS(7984), + [aux_sym_call_statement_token1] = ACTIONS(7984), + [sym__ambiguous_call_statement] = ACTIONS(7984), + [aux_sym_addressof_expression_token1] = ACTIONS(7984), + [aux_sym_type_of_expression_token1] = ACTIONS(7984), + [aux_sym_unary_expression_token1] = ACTIONS(7984), + [sym_string_literal] = ACTIONS(7986), + [sym_number_literal] = ACTIONS(7986), + [aux_sym_boolean_literal_token1] = ACTIONS(7984), + [aux_sym_boolean_literal_token2] = ACTIONS(7984), + [sym_nothing_literal] = ACTIONS(7984), + [sym_null_literal] = ACTIONS(7984), + [sym_empty_literal] = ACTIONS(7984), + [sym_date_literal] = ACTIONS(7986), + [anon_sym_POUND] = ACTIONS(7984), + }, + [STATE(6177)] = { + [sym_argument_list] = STATE(10051), + [sym_identifier] = ACTIONS(8794), + [sym_newline] = ACTIONS(8796), + [anon_sym_COLON] = ACTIONS(8796), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8794), + [aux_sym_frm_property_statement_token1] = ACTIONS(8794), + [anon_sym_DOT] = ACTIONS(8794), + [anon_sym_BANG] = ACTIONS(8796), + [aux_sym__attribute_identifier_token1] = ACTIONS(8794), + [aux_sym_option_statement_token3] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8794), + [aux_sym_preprocessor_const_token1] = ACTIONS(8794), + [sym_static_modifier] = ACTIONS(8794), + [sym__dim_keyword] = ACTIONS(8794), + [sym__redim_keyword] = ACTIONS(8794), + [aux_sym_get_accessor_token1] = ACTIONS(8794), + [aux_sym_set_accessor_token1] = ACTIONS(8794), + [aux_sym_const_declaration_token1] = ACTIONS(8794), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(8794), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8794), + [aux_sym_visibility_token1] = ACTIONS(8794), + [aux_sym_visibility_token2] = ACTIONS(8794), + [aux_sym_elseif_fragment_token1] = ACTIONS(8794), + [aux_sym_else_fragment_token1] = ACTIONS(8794), + [aux_sym_select_statement_token1] = ACTIONS(8794), + [aux_sym_select_statement_token2] = ACTIONS(8794), + [aux_sym__for_header_token1] = ACTIONS(8794), + [aux_sym_do_statement_token1] = ACTIONS(8794), + [aux_sym_do_condition_token1] = ACTIONS(8794), + [aux_sym_with_statement_token1] = ACTIONS(8794), + [aux_sym_exit_statement_token1] = ACTIONS(8794), + [sym_end_statement] = ACTIONS(8796), + [aux_sym_on_goto_statement_token1] = ACTIONS(8794), + [aux_sym_on_goto_statement_token2] = ACTIONS(8794), + [aux_sym_on_error_statement_token2] = ACTIONS(8794), + [sym__ambiguous_redim_statement] = ACTIONS(8796), + [aux_sym_erase_statement_token1] = ACTIONS(8794), + [aux_sym_open_statement_token1] = ACTIONS(8794), + [aux_sym_file_mode_token2] = ACTIONS(8794), + [aux_sym_file_access_token2] = ACTIONS(8794), + [aux_sym_file_lock_token2] = ACTIONS(8794), + [aux_sym_print_statement_token1] = ACTIONS(8794), + [anon_sym_PLUS] = ACTIONS(8796), + [anon_sym_DASH] = ACTIONS(8794), + [anon_sym_QMARK] = ACTIONS(8796), + [aux_sym_close_statement_token1] = ACTIONS(8794), + [aux_sym_put_statement_token1] = ACTIONS(8794), + [aux_sym_unlock_statement_token1] = ACTIONS(8794), + [aux_sym_seek_statement_token1] = ACTIONS(8794), + [sym_reset_statement] = ACTIONS(8794), + [aux_sym_raise_event_statement_token1] = ACTIONS(8794), + [sym_stop_statement] = ACTIONS(8794), + [sym_beep_statement] = ACTIONS(8794), + [aux_sym_unload_statement_token1] = ACTIONS(8794), + [aux_sym_def_type_statement_token1] = ACTIONS(8794), + [aux_sym_def_type_statement_token2] = ACTIONS(8794), + [aux_sym_def_type_statement_token3] = ACTIONS(8794), + [aux_sym_def_type_statement_token4] = ACTIONS(8794), + [aux_sym_def_type_statement_token5] = ACTIONS(8794), + [aux_sym_def_type_statement_token6] = ACTIONS(8794), + [aux_sym_def_type_statement_token7] = ACTIONS(8794), + [aux_sym_def_type_statement_token8] = ACTIONS(8794), + [aux_sym_def_type_statement_token9] = ACTIONS(8794), + [aux_sym_def_type_statement_token10] = ACTIONS(8794), + [aux_sym_def_type_statement_token11] = ACTIONS(8794), + [aux_sym_def_type_statement_token12] = ACTIONS(8794), + [aux_sym_def_type_statement_token13] = ACTIONS(8794), + [aux_sym_def_type_statement_token14] = ACTIONS(8794), + [aux_sym_call_statement_token1] = ACTIONS(8794), + [sym__ambiguous_call_statement] = ACTIONS(8794), + [aux_sym_addressof_expression_token1] = ACTIONS(8794), + [aux_sym_type_of_expression_token1] = ACTIONS(8794), + [aux_sym_unary_expression_token1] = ACTIONS(8794), + [sym_string_literal] = ACTIONS(8796), + [sym_number_literal] = ACTIONS(8796), + [aux_sym_boolean_literal_token1] = ACTIONS(8794), + [aux_sym_boolean_literal_token2] = ACTIONS(8794), + [sym_nothing_literal] = ACTIONS(8794), + [sym_null_literal] = ACTIONS(8794), + [sym_empty_literal] = ACTIONS(8794), + [sym_date_literal] = ACTIONS(8796), + [anon_sym_POUND] = ACTIONS(8794), + }, + [STATE(6178)] = { + [aux_sym_erase_statement_repeat1] = STATE(6163), + [sym_identifier] = ACTIONS(8320), + [sym_newline] = ACTIONS(8322), + [anon_sym_COLON] = ACTIONS(8322), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8320), + [aux_sym_frm_property_statement_token1] = ACTIONS(8320), + [anon_sym_DOT] = ACTIONS(8320), + [anon_sym_BANG] = ACTIONS(8322), + [aux_sym__attribute_identifier_token1] = ACTIONS(8320), + [aux_sym_option_statement_token3] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8320), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8320), + [aux_sym_preprocessor_const_token1] = ACTIONS(8320), + [sym_static_modifier] = ACTIONS(8320), + [sym__dim_keyword] = ACTIONS(8320), + [sym__redim_keyword] = ACTIONS(8320), + [aux_sym_get_accessor_token1] = ACTIONS(8320), + [aux_sym_set_accessor_token1] = ACTIONS(8320), + [anon_sym_COMMA] = ACTIONS(10933), + [aux_sym_const_declaration_token1] = ACTIONS(8320), + [anon_sym_LPAREN] = ACTIONS(8322), + [aux_sym_as_type_clause_token2] = ACTIONS(8320), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8320), + [aux_sym_visibility_token1] = ACTIONS(8320), + [aux_sym_visibility_token2] = ACTIONS(8320), + [aux_sym_elseif_fragment_token1] = ACTIONS(8320), + [aux_sym_else_fragment_token1] = ACTIONS(8320), + [aux_sym_select_statement_token1] = ACTIONS(8320), + [aux_sym__for_header_token1] = ACTIONS(8320), + [aux_sym_do_statement_token1] = ACTIONS(8320), + [aux_sym_do_condition_token1] = ACTIONS(8320), + [aux_sym_with_statement_token1] = ACTIONS(8320), + [aux_sym_exit_statement_token1] = ACTIONS(8320), + [sym_end_statement] = ACTIONS(8322), + [aux_sym_on_goto_statement_token1] = ACTIONS(8320), + [aux_sym_on_goto_statement_token2] = ACTIONS(8320), + [aux_sym_on_error_statement_token2] = ACTIONS(8320), + [sym__ambiguous_redim_statement] = ACTIONS(8322), + [aux_sym_erase_statement_token1] = ACTIONS(8320), + [aux_sym_open_statement_token1] = ACTIONS(8320), + [aux_sym_file_mode_token2] = ACTIONS(8320), + [aux_sym_file_access_token2] = ACTIONS(8320), + [aux_sym_file_lock_token2] = ACTIONS(8320), + [aux_sym_print_statement_token1] = ACTIONS(8320), + [anon_sym_PLUS] = ACTIONS(8322), + [anon_sym_DASH] = ACTIONS(8320), + [anon_sym_QMARK] = ACTIONS(8322), + [aux_sym_close_statement_token1] = ACTIONS(8320), + [aux_sym_put_statement_token1] = ACTIONS(8320), + [aux_sym_unlock_statement_token1] = ACTIONS(8320), + [aux_sym_seek_statement_token1] = ACTIONS(8320), + [sym_reset_statement] = ACTIONS(8320), + [aux_sym_raise_event_statement_token1] = ACTIONS(8320), + [sym_stop_statement] = ACTIONS(8320), + [sym_beep_statement] = ACTIONS(8320), + [aux_sym_unload_statement_token1] = ACTIONS(8320), + [aux_sym_def_type_statement_token1] = ACTIONS(8320), + [aux_sym_def_type_statement_token2] = ACTIONS(8320), + [aux_sym_def_type_statement_token3] = ACTIONS(8320), + [aux_sym_def_type_statement_token4] = ACTIONS(8320), + [aux_sym_def_type_statement_token5] = ACTIONS(8320), + [aux_sym_def_type_statement_token6] = ACTIONS(8320), + [aux_sym_def_type_statement_token7] = ACTIONS(8320), + [aux_sym_def_type_statement_token8] = ACTIONS(8320), + [aux_sym_def_type_statement_token9] = ACTIONS(8320), + [aux_sym_def_type_statement_token10] = ACTIONS(8320), + [aux_sym_def_type_statement_token11] = ACTIONS(8320), + [aux_sym_def_type_statement_token12] = ACTIONS(8320), + [aux_sym_def_type_statement_token13] = ACTIONS(8320), + [aux_sym_def_type_statement_token14] = ACTIONS(8320), + [aux_sym_call_statement_token1] = ACTIONS(8320), + [sym__ambiguous_call_statement] = ACTIONS(8320), + [aux_sym_addressof_expression_token1] = ACTIONS(8320), + [aux_sym_type_of_expression_token1] = ACTIONS(8320), + [aux_sym_unary_expression_token1] = ACTIONS(8320), + [sym_string_literal] = ACTIONS(8322), + [sym_number_literal] = ACTIONS(8322), + [aux_sym_boolean_literal_token1] = ACTIONS(8320), + [aux_sym_boolean_literal_token2] = ACTIONS(8320), + [sym_nothing_literal] = ACTIONS(8320), + [sym_null_literal] = ACTIONS(8320), + [sym_empty_literal] = ACTIONS(8320), + [sym_date_literal] = ACTIONS(8322), + [anon_sym_POUND] = ACTIONS(8320), + }, + [STATE(6179)] = { + [sym_identifier] = ACTIONS(8847), + [sym_newline] = ACTIONS(8849), + [anon_sym_COLON] = ACTIONS(8849), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8847), + [aux_sym_frm_property_statement_token1] = ACTIONS(8847), + [anon_sym_DOT] = ACTIONS(8847), + [anon_sym_BANG] = ACTIONS(8849), + [aux_sym__attribute_identifier_token1] = ACTIONS(8847), + [aux_sym_option_statement_token3] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8847), + [aux_sym_preprocessor_const_token1] = ACTIONS(8847), + [sym_static_modifier] = ACTIONS(8847), + [sym__dim_keyword] = ACTIONS(8847), + [sym__redim_keyword] = ACTIONS(8847), + [aux_sym_get_accessor_token1] = ACTIONS(8847), + [aux_sym_set_accessor_token1] = ACTIONS(8847), + [anon_sym_COMMA] = ACTIONS(8849), + [aux_sym_const_declaration_token1] = ACTIONS(8847), + [anon_sym_LPAREN] = ACTIONS(8849), + [aux_sym_as_type_clause_token2] = ACTIONS(8847), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8847), + [aux_sym_visibility_token1] = ACTIONS(8847), + [aux_sym_visibility_token2] = ACTIONS(8847), + [aux_sym_elseif_fragment_token1] = ACTIONS(8847), + [aux_sym_else_fragment_token1] = ACTIONS(8847), + [aux_sym_select_statement_token1] = ACTIONS(8847), + [aux_sym__for_header_token1] = ACTIONS(8847), + [aux_sym_do_statement_token1] = ACTIONS(8847), + [aux_sym_do_condition_token1] = ACTIONS(8847), + [aux_sym_while_statement_token1] = ACTIONS(8847), + [aux_sym_with_statement_token1] = ACTIONS(8847), + [aux_sym_exit_statement_token1] = ACTIONS(8847), + [sym_end_statement] = ACTIONS(8849), + [aux_sym_on_goto_statement_token1] = ACTIONS(8847), + [aux_sym_on_goto_statement_token2] = ACTIONS(8847), + [aux_sym_on_error_statement_token2] = ACTIONS(8847), + [sym__ambiguous_redim_statement] = ACTIONS(8849), + [aux_sym_erase_statement_token1] = ACTIONS(8847), + [aux_sym_open_statement_token1] = ACTIONS(8847), + [aux_sym_file_mode_token2] = ACTIONS(8847), + [aux_sym_file_access_token2] = ACTIONS(8847), + [aux_sym_file_lock_token2] = ACTIONS(8847), + [aux_sym_print_statement_token1] = ACTIONS(8847), + [anon_sym_PLUS] = ACTIONS(8849), + [anon_sym_DASH] = ACTIONS(11027), + [anon_sym_QMARK] = ACTIONS(8849), + [aux_sym_close_statement_token1] = ACTIONS(8847), + [aux_sym_put_statement_token1] = ACTIONS(8847), + [aux_sym_unlock_statement_token1] = ACTIONS(8847), + [aux_sym_seek_statement_token1] = ACTIONS(8847), + [sym_reset_statement] = ACTIONS(8847), + [aux_sym_raise_event_statement_token1] = ACTIONS(8847), + [sym_stop_statement] = ACTIONS(8847), + [sym_beep_statement] = ACTIONS(8847), + [aux_sym_unload_statement_token1] = ACTIONS(8847), + [aux_sym_def_type_statement_token1] = ACTIONS(8847), + [aux_sym_def_type_statement_token2] = ACTIONS(8847), + [aux_sym_def_type_statement_token3] = ACTIONS(8847), + [aux_sym_def_type_statement_token4] = ACTIONS(8847), + [aux_sym_def_type_statement_token5] = ACTIONS(8847), + [aux_sym_def_type_statement_token6] = ACTIONS(8847), + [aux_sym_def_type_statement_token7] = ACTIONS(8847), + [aux_sym_def_type_statement_token8] = ACTIONS(8847), + [aux_sym_def_type_statement_token9] = ACTIONS(8847), + [aux_sym_def_type_statement_token10] = ACTIONS(8847), + [aux_sym_def_type_statement_token11] = ACTIONS(8847), + [aux_sym_def_type_statement_token12] = ACTIONS(8847), + [aux_sym_def_type_statement_token13] = ACTIONS(8847), + [aux_sym_def_type_statement_token14] = ACTIONS(8847), + [aux_sym_call_statement_token1] = ACTIONS(8847), + [sym__ambiguous_call_statement] = ACTIONS(8847), + [aux_sym_addressof_expression_token1] = ACTIONS(8847), + [aux_sym_type_of_expression_token1] = ACTIONS(8847), + [aux_sym_unary_expression_token1] = ACTIONS(8847), + [sym_string_literal] = ACTIONS(8849), + [sym_number_literal] = ACTIONS(8849), + [aux_sym_boolean_literal_token1] = ACTIONS(8847), + [aux_sym_boolean_literal_token2] = ACTIONS(8847), + [sym_nothing_literal] = ACTIONS(8847), + [sym_null_literal] = ACTIONS(8847), + [sym_empty_literal] = ACTIONS(8847), + [sym_date_literal] = ACTIONS(8849), + [anon_sym_POUND] = ACTIONS(8847), + }, + [STATE(6180)] = { + [sym_identifier] = ACTIONS(8835), + [sym_newline] = ACTIONS(8837), + [anon_sym_COLON] = ACTIONS(8837), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8835), + [aux_sym_frm_property_statement_token1] = ACTIONS(8835), + [anon_sym_DOT] = ACTIONS(8835), + [anon_sym_BANG] = ACTIONS(8837), + [aux_sym__attribute_identifier_token1] = ACTIONS(8835), + [aux_sym_option_statement_token3] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8835), + [aux_sym_preprocessor_const_token1] = ACTIONS(8835), + [sym_static_modifier] = ACTIONS(8835), + [sym__dim_keyword] = ACTIONS(8835), + [sym__redim_keyword] = ACTIONS(8835), + [aux_sym_get_accessor_token1] = ACTIONS(8835), + [aux_sym_set_accessor_token1] = ACTIONS(8835), + [anon_sym_COMMA] = ACTIONS(8837), + [aux_sym_const_declaration_token1] = ACTIONS(8835), + [anon_sym_LPAREN] = ACTIONS(8837), + [aux_sym_as_type_clause_token2] = ACTIONS(8835), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8835), + [aux_sym_visibility_token1] = ACTIONS(8835), + [aux_sym_visibility_token2] = ACTIONS(8835), + [aux_sym_elseif_fragment_token1] = ACTIONS(8835), + [aux_sym_else_fragment_token1] = ACTIONS(8835), + [aux_sym_select_statement_token1] = ACTIONS(8835), + [aux_sym__for_header_token1] = ACTIONS(8835), + [aux_sym_do_statement_token1] = ACTIONS(8835), + [aux_sym_do_condition_token1] = ACTIONS(8835), + [aux_sym_with_statement_token1] = ACTIONS(8835), + [aux_sym_exit_statement_token1] = ACTIONS(8835), + [sym_end_statement] = ACTIONS(8837), + [aux_sym_on_goto_statement_token1] = ACTIONS(8835), + [aux_sym_on_goto_statement_token2] = ACTIONS(8835), + [aux_sym_on_error_statement_token2] = ACTIONS(8835), + [sym__ambiguous_redim_statement] = ACTIONS(8837), + [aux_sym_erase_statement_token1] = ACTIONS(8835), + [aux_sym_open_statement_token1] = ACTIONS(8835), + [aux_sym_file_mode_token2] = ACTIONS(8835), + [aux_sym_file_access_token2] = ACTIONS(8835), + [aux_sym_file_lock_token2] = ACTIONS(8835), + [aux_sym_print_statement_token1] = ACTIONS(8835), + [anon_sym_PLUS] = ACTIONS(8837), + [anon_sym_DASH] = ACTIONS(8835), + [anon_sym_QMARK] = ACTIONS(8837), + [aux_sym_close_statement_token1] = ACTIONS(8835), + [aux_sym_put_statement_token1] = ACTIONS(8835), + [aux_sym_unlock_statement_token1] = ACTIONS(8835), + [aux_sym_seek_statement_token1] = ACTIONS(8835), + [sym_reset_statement] = ACTIONS(8835), + [aux_sym_raise_event_statement_token1] = ACTIONS(8835), + [sym_stop_statement] = ACTIONS(8835), + [sym_beep_statement] = ACTIONS(8835), + [aux_sym_unload_statement_token1] = ACTIONS(8835), + [aux_sym_def_type_statement_token1] = ACTIONS(8835), + [aux_sym_def_type_statement_token2] = ACTIONS(8835), + [aux_sym_def_type_statement_token3] = ACTIONS(8835), + [aux_sym_def_type_statement_token4] = ACTIONS(8835), + [aux_sym_def_type_statement_token5] = ACTIONS(8835), + [aux_sym_def_type_statement_token6] = ACTIONS(8835), + [aux_sym_def_type_statement_token7] = ACTIONS(8835), + [aux_sym_def_type_statement_token8] = ACTIONS(8835), + [aux_sym_def_type_statement_token9] = ACTIONS(8835), + [aux_sym_def_type_statement_token10] = ACTIONS(8835), + [aux_sym_def_type_statement_token11] = ACTIONS(8835), + [aux_sym_def_type_statement_token12] = ACTIONS(8835), + [aux_sym_def_type_statement_token13] = ACTIONS(8835), + [aux_sym_def_type_statement_token14] = ACTIONS(8835), + [aux_sym_call_statement_token1] = ACTIONS(8835), + [sym__ambiguous_call_statement] = ACTIONS(8835), + [aux_sym_addressof_expression_token1] = ACTIONS(8835), + [aux_sym_type_of_expression_token1] = ACTIONS(8835), + [aux_sym_unary_expression_token1] = ACTIONS(8835), + [sym_string_literal] = ACTIONS(8837), + [sym_number_literal] = ACTIONS(8837), + [aux_sym_boolean_literal_token1] = ACTIONS(8835), + [aux_sym_boolean_literal_token2] = ACTIONS(8835), + [sym_nothing_literal] = ACTIONS(8835), + [sym_null_literal] = ACTIONS(8835), + [sym_empty_literal] = ACTIONS(8835), + [sym_date_literal] = ACTIONS(8837), + [anon_sym_POUND] = ACTIONS(8835), + }, + [STATE(6181)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym_select_statement_token2] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(6182)] = { + [sym_identifier] = ACTIONS(11029), + [sym_newline] = ACTIONS(8819), + [anon_sym_COLON] = ACTIONS(8819), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8821), + [aux_sym_frm_property_statement_token1] = ACTIONS(8821), + [anon_sym_DOT] = ACTIONS(8821), + [anon_sym_BANG] = ACTIONS(8819), + [aux_sym__attribute_identifier_token1] = ACTIONS(8821), + [aux_sym_option_statement_token3] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8821), + [aux_sym_preprocessor_const_token1] = ACTIONS(8821), + [sym_static_modifier] = ACTIONS(8821), + [sym__dim_keyword] = ACTIONS(8821), + [sym__redim_keyword] = ACTIONS(8821), + [aux_sym_get_accessor_token1] = ACTIONS(8821), + [aux_sym_set_accessor_token1] = ACTIONS(8821), + [aux_sym_const_declaration_token1] = ACTIONS(8821), + [anon_sym_LPAREN] = ACTIONS(8819), + [aux_sym_as_type_clause_token2] = ACTIONS(8821), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8821), + [aux_sym_visibility_token1] = ACTIONS(8821), + [aux_sym_visibility_token2] = ACTIONS(8821), + [aux_sym_elseif_fragment_token1] = ACTIONS(8821), + [aux_sym_else_fragment_token1] = ACTIONS(8821), + [aux_sym_select_statement_token1] = ACTIONS(8821), + [aux_sym_select_statement_token2] = ACTIONS(8821), + [aux_sym__multiline_for_tail_token1] = ACTIONS(11031), + [aux_sym__for_header_token1] = ACTIONS(8821), + [aux_sym_do_statement_token1] = ACTIONS(8821), + [aux_sym_do_condition_token1] = ACTIONS(8821), + [aux_sym_with_statement_token1] = ACTIONS(8821), + [aux_sym_exit_statement_token1] = ACTIONS(8821), + [sym_end_statement] = ACTIONS(8819), + [aux_sym_on_goto_statement_token1] = ACTIONS(8821), + [aux_sym_on_goto_statement_token2] = ACTIONS(8821), + [aux_sym_on_error_statement_token2] = ACTIONS(8821), + [sym__ambiguous_redim_statement] = ACTIONS(8819), + [aux_sym_erase_statement_token1] = ACTIONS(8821), + [aux_sym_open_statement_token1] = ACTIONS(8821), + [aux_sym_file_mode_token2] = ACTIONS(8821), + [aux_sym_file_access_token2] = ACTIONS(8821), + [aux_sym_file_lock_token2] = ACTIONS(8821), + [aux_sym_print_statement_token1] = ACTIONS(8821), + [anon_sym_PLUS] = ACTIONS(8819), + [anon_sym_DASH] = ACTIONS(8821), + [anon_sym_QMARK] = ACTIONS(8819), + [aux_sym_close_statement_token1] = ACTIONS(8821), + [aux_sym_put_statement_token1] = ACTIONS(8821), + [aux_sym_unlock_statement_token1] = ACTIONS(8821), + [aux_sym_seek_statement_token1] = ACTIONS(8821), + [sym_reset_statement] = ACTIONS(8821), + [aux_sym_raise_event_statement_token1] = ACTIONS(8821), + [sym_stop_statement] = ACTIONS(8821), + [sym_beep_statement] = ACTIONS(8821), + [aux_sym_unload_statement_token1] = ACTIONS(8821), + [aux_sym_def_type_statement_token1] = ACTIONS(8821), + [aux_sym_def_type_statement_token2] = ACTIONS(8821), + [aux_sym_def_type_statement_token3] = ACTIONS(8821), + [aux_sym_def_type_statement_token4] = ACTIONS(8821), + [aux_sym_def_type_statement_token5] = ACTIONS(8821), + [aux_sym_def_type_statement_token6] = ACTIONS(8821), + [aux_sym_def_type_statement_token7] = ACTIONS(8821), + [aux_sym_def_type_statement_token8] = ACTIONS(8821), + [aux_sym_def_type_statement_token9] = ACTIONS(8821), + [aux_sym_def_type_statement_token10] = ACTIONS(8821), + [aux_sym_def_type_statement_token11] = ACTIONS(8821), + [aux_sym_def_type_statement_token12] = ACTIONS(8821), + [aux_sym_def_type_statement_token13] = ACTIONS(8821), + [aux_sym_def_type_statement_token14] = ACTIONS(8821), + [aux_sym_call_statement_token1] = ACTIONS(8821), + [sym__ambiguous_call_statement] = ACTIONS(8821), + [aux_sym_addressof_expression_token1] = ACTIONS(8821), + [aux_sym_type_of_expression_token1] = ACTIONS(8821), + [aux_sym_unary_expression_token1] = ACTIONS(8821), + [sym_string_literal] = ACTIONS(8819), + [sym_number_literal] = ACTIONS(11033), + [aux_sym_boolean_literal_token1] = ACTIONS(8821), + [aux_sym_boolean_literal_token2] = ACTIONS(8821), + [sym_nothing_literal] = ACTIONS(8821), + [sym_null_literal] = ACTIONS(8821), + [sym_empty_literal] = ACTIONS(8821), + [sym_date_literal] = ACTIONS(8819), + [anon_sym_POUND] = ACTIONS(8821), + }, + [STATE(6183)] = { + [sym_identifier] = ACTIONS(8739), + [sym_newline] = ACTIONS(8741), + [anon_sym_COLON] = ACTIONS(8741), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8739), + [aux_sym_frm_property_statement_token1] = ACTIONS(8739), + [anon_sym_DOT] = ACTIONS(8739), + [anon_sym_BANG] = ACTIONS(8741), + [aux_sym__attribute_identifier_token1] = ACTIONS(8739), + [aux_sym_option_statement_token3] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8739), + [aux_sym_preprocessor_const_token1] = ACTIONS(8739), + [sym_static_modifier] = ACTIONS(8739), + [sym__dim_keyword] = ACTIONS(8739), + [sym__redim_keyword] = ACTIONS(8739), + [aux_sym_get_accessor_token1] = ACTIONS(8739), + [aux_sym_set_accessor_token1] = ACTIONS(8739), + [anon_sym_COMMA] = ACTIONS(11035), + [aux_sym_const_declaration_token1] = ACTIONS(8739), + [anon_sym_LPAREN] = ACTIONS(8741), + [aux_sym_as_type_clause_token2] = ACTIONS(8739), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8739), + [aux_sym_visibility_token1] = ACTIONS(8739), + [aux_sym_visibility_token2] = ACTIONS(8739), + [aux_sym_elseif_fragment_token1] = ACTIONS(8739), + [aux_sym_else_fragment_token1] = ACTIONS(8739), + [aux_sym_select_statement_token1] = ACTIONS(8739), + [aux_sym__for_header_token1] = ACTIONS(8739), + [aux_sym_do_statement_token1] = ACTIONS(8739), + [aux_sym_do_condition_token1] = ACTIONS(8739), + [aux_sym_while_statement_token1] = ACTIONS(8739), + [aux_sym_with_statement_token1] = ACTIONS(8739), + [aux_sym_exit_statement_token1] = ACTIONS(8739), + [sym_end_statement] = ACTIONS(8741), + [aux_sym_on_goto_statement_token1] = ACTIONS(8739), + [aux_sym_on_goto_statement_token2] = ACTIONS(8739), + [aux_sym_on_error_statement_token2] = ACTIONS(8739), + [sym__ambiguous_redim_statement] = ACTIONS(8741), + [aux_sym_erase_statement_token1] = ACTIONS(8739), + [aux_sym_open_statement_token1] = ACTIONS(8739), + [aux_sym_file_mode_token2] = ACTIONS(8739), + [aux_sym_file_access_token2] = ACTIONS(8739), + [aux_sym_file_lock_token2] = ACTIONS(8739), + [aux_sym_print_statement_token1] = ACTIONS(8739), + [anon_sym_PLUS] = ACTIONS(8741), + [anon_sym_DASH] = ACTIONS(8739), + [anon_sym_QMARK] = ACTIONS(8741), + [aux_sym_close_statement_token1] = ACTIONS(8739), + [aux_sym_put_statement_token1] = ACTIONS(8739), + [aux_sym_unlock_statement_token1] = ACTIONS(8739), + [aux_sym_seek_statement_token1] = ACTIONS(8739), + [sym_reset_statement] = ACTIONS(8739), + [aux_sym_raise_event_statement_token1] = ACTIONS(8739), + [sym_stop_statement] = ACTIONS(8739), + [sym_beep_statement] = ACTIONS(8739), + [aux_sym_unload_statement_token1] = ACTIONS(8739), + [aux_sym_def_type_statement_token1] = ACTIONS(8739), + [aux_sym_def_type_statement_token2] = ACTIONS(8739), + [aux_sym_def_type_statement_token3] = ACTIONS(8739), + [aux_sym_def_type_statement_token4] = ACTIONS(8739), + [aux_sym_def_type_statement_token5] = ACTIONS(8739), + [aux_sym_def_type_statement_token6] = ACTIONS(8739), + [aux_sym_def_type_statement_token7] = ACTIONS(8739), + [aux_sym_def_type_statement_token8] = ACTIONS(8739), + [aux_sym_def_type_statement_token9] = ACTIONS(8739), + [aux_sym_def_type_statement_token10] = ACTIONS(8739), + [aux_sym_def_type_statement_token11] = ACTIONS(8739), + [aux_sym_def_type_statement_token12] = ACTIONS(8739), + [aux_sym_def_type_statement_token13] = ACTIONS(8739), + [aux_sym_def_type_statement_token14] = ACTIONS(8739), + [aux_sym_call_statement_token1] = ACTIONS(8739), + [sym__ambiguous_call_statement] = ACTIONS(8739), + [aux_sym_addressof_expression_token1] = ACTIONS(8739), + [aux_sym_type_of_expression_token1] = ACTIONS(8739), + [aux_sym_unary_expression_token1] = ACTIONS(8739), + [sym_string_literal] = ACTIONS(8741), + [sym_number_literal] = ACTIONS(8741), + [aux_sym_boolean_literal_token1] = ACTIONS(8739), + [aux_sym_boolean_literal_token2] = ACTIONS(8739), + [sym_nothing_literal] = ACTIONS(8739), + [sym_null_literal] = ACTIONS(8739), + [sym_empty_literal] = ACTIONS(8739), + [sym_date_literal] = ACTIONS(8741), + [anon_sym_POUND] = ACTIONS(8739), + }, + [STATE(6184)] = { + [sym_identifier] = ACTIONS(8443), + [sym_newline] = ACTIONS(8445), + [anon_sym_COLON] = ACTIONS(8445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8443), + [aux_sym_frm_property_statement_token1] = ACTIONS(8443), + [anon_sym_DOT] = ACTIONS(8443), + [anon_sym_BANG] = ACTIONS(8445), + [aux_sym__attribute_identifier_token1] = ACTIONS(8443), + [aux_sym_option_statement_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8443), + [aux_sym_preprocessor_const_token1] = ACTIONS(8443), + [sym_static_modifier] = ACTIONS(8443), + [sym__dim_keyword] = ACTIONS(8443), + [sym__redim_keyword] = ACTIONS(8443), + [aux_sym_get_accessor_token1] = ACTIONS(8443), + [aux_sym_set_accessor_token1] = ACTIONS(8443), + [anon_sym_COMMA] = ACTIONS(8445), + [aux_sym_const_declaration_token1] = ACTIONS(8443), + [anon_sym_LPAREN] = ACTIONS(8445), + [aux_sym_as_type_clause_token2] = ACTIONS(8443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8443), + [aux_sym_visibility_token1] = ACTIONS(8443), + [aux_sym_visibility_token2] = ACTIONS(8443), + [aux_sym_elseif_fragment_token1] = ACTIONS(8443), + [aux_sym_else_fragment_token1] = ACTIONS(8443), + [aux_sym_select_statement_token1] = ACTIONS(8443), + [aux_sym__for_header_token1] = ACTIONS(8443), + [aux_sym_do_statement_token1] = ACTIONS(8443), + [aux_sym_do_statement_token2] = ACTIONS(8443), + [aux_sym_do_condition_token1] = ACTIONS(8443), + [aux_sym_with_statement_token1] = ACTIONS(8443), + [aux_sym_exit_statement_token1] = ACTIONS(8443), + [sym_end_statement] = ACTIONS(8445), + [aux_sym_on_goto_statement_token1] = ACTIONS(8443), + [aux_sym_on_goto_statement_token2] = ACTIONS(8443), + [aux_sym_on_error_statement_token2] = ACTIONS(8443), + [sym__ambiguous_redim_statement] = ACTIONS(8445), + [aux_sym_erase_statement_token1] = ACTIONS(8443), + [aux_sym_open_statement_token1] = ACTIONS(8443), + [aux_sym_file_mode_token2] = ACTIONS(8443), + [aux_sym_file_access_token2] = ACTIONS(8443), + [aux_sym_file_lock_token2] = ACTIONS(8443), + [aux_sym_print_statement_token1] = ACTIONS(8443), + [anon_sym_PLUS] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8443), + [anon_sym_QMARK] = ACTIONS(8445), + [aux_sym_close_statement_token1] = ACTIONS(8443), + [aux_sym_put_statement_token1] = ACTIONS(8443), + [aux_sym_unlock_statement_token1] = ACTIONS(8443), + [aux_sym_seek_statement_token1] = ACTIONS(8443), + [sym_reset_statement] = ACTIONS(8443), + [aux_sym_raise_event_statement_token1] = ACTIONS(8443), + [sym_stop_statement] = ACTIONS(8443), + [sym_beep_statement] = ACTIONS(8443), + [aux_sym_unload_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token2] = ACTIONS(8443), + [aux_sym_def_type_statement_token3] = ACTIONS(8443), + [aux_sym_def_type_statement_token4] = ACTIONS(8443), + [aux_sym_def_type_statement_token5] = ACTIONS(8443), + [aux_sym_def_type_statement_token6] = ACTIONS(8443), + [aux_sym_def_type_statement_token7] = ACTIONS(8443), + [aux_sym_def_type_statement_token8] = ACTIONS(8443), + [aux_sym_def_type_statement_token9] = ACTIONS(8443), + [aux_sym_def_type_statement_token10] = ACTIONS(8443), + [aux_sym_def_type_statement_token11] = ACTIONS(8443), + [aux_sym_def_type_statement_token12] = ACTIONS(8443), + [aux_sym_def_type_statement_token13] = ACTIONS(8443), + [aux_sym_def_type_statement_token14] = ACTIONS(8443), + [aux_sym_call_statement_token1] = ACTIONS(8443), + [sym__ambiguous_call_statement] = ACTIONS(8443), + [aux_sym_addressof_expression_token1] = ACTIONS(8443), + [aux_sym_type_of_expression_token1] = ACTIONS(8443), + [aux_sym_unary_expression_token1] = ACTIONS(8443), + [sym_string_literal] = ACTIONS(8445), + [sym_number_literal] = ACTIONS(8445), + [aux_sym_boolean_literal_token1] = ACTIONS(8443), + [aux_sym_boolean_literal_token2] = ACTIONS(8443), + [sym_nothing_literal] = ACTIONS(8443), + [sym_null_literal] = ACTIONS(8443), + [sym_empty_literal] = ACTIONS(8443), + [sym_date_literal] = ACTIONS(8445), + [anon_sym_POUND] = ACTIONS(8443), + }, + [STATE(6185)] = { + [sym_identifier] = ACTIONS(8729), + [sym_newline] = ACTIONS(8731), + [anon_sym_COLON] = ACTIONS(8731), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8729), + [aux_sym_frm_property_statement_token1] = ACTIONS(8729), + [anon_sym_DOT] = ACTIONS(8729), + [anon_sym_BANG] = ACTIONS(8731), + [aux_sym__attribute_identifier_token1] = ACTIONS(8729), + [aux_sym_option_statement_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8729), + [aux_sym_preprocessor_const_token1] = ACTIONS(8729), + [sym_static_modifier] = ACTIONS(8729), + [sym__dim_keyword] = ACTIONS(8729), + [sym__redim_keyword] = ACTIONS(8729), + [aux_sym_get_accessor_token1] = ACTIONS(8729), + [aux_sym_set_accessor_token1] = ACTIONS(8729), + [aux_sym_const_declaration_token1] = ACTIONS(8729), + [anon_sym_LPAREN] = ACTIONS(8731), + [aux_sym_as_type_clause_token2] = ACTIONS(8729), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8729), + [aux_sym_visibility_token1] = ACTIONS(8729), + [aux_sym_visibility_token2] = ACTIONS(8729), + [aux_sym_elseif_fragment_token1] = ACTIONS(8729), + [aux_sym_else_fragment_token1] = ACTIONS(8729), + [aux_sym_select_statement_token1] = ACTIONS(8729), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8729), + [aux_sym__for_header_token1] = ACTIONS(8729), + [aux_sym_do_statement_token1] = ACTIONS(8729), + [aux_sym_do_statement_token2] = ACTIONS(8729), + [aux_sym_do_condition_token1] = ACTIONS(8729), + [aux_sym_with_statement_token1] = ACTIONS(8729), + [aux_sym_exit_statement_token1] = ACTIONS(8729), + [sym_end_statement] = ACTIONS(8731), + [aux_sym_on_goto_statement_token1] = ACTIONS(8729), + [aux_sym_on_goto_statement_token2] = ACTIONS(8729), + [aux_sym_on_error_statement_token2] = ACTIONS(8729), + [sym__ambiguous_redim_statement] = ACTIONS(8731), + [aux_sym_erase_statement_token1] = ACTIONS(8729), + [aux_sym_open_statement_token1] = ACTIONS(8729), + [aux_sym_file_mode_token2] = ACTIONS(8729), + [aux_sym_file_access_token2] = ACTIONS(8729), + [aux_sym_file_lock_token2] = ACTIONS(8729), + [aux_sym_print_statement_token1] = ACTIONS(8729), + [anon_sym_PLUS] = ACTIONS(8731), + [anon_sym_DASH] = ACTIONS(8729), + [anon_sym_QMARK] = ACTIONS(8731), + [aux_sym_close_statement_token1] = ACTIONS(8729), + [aux_sym_put_statement_token1] = ACTIONS(8729), + [aux_sym_unlock_statement_token1] = ACTIONS(8729), + [aux_sym_seek_statement_token1] = ACTIONS(8729), + [sym_reset_statement] = ACTIONS(8729), + [aux_sym_raise_event_statement_token1] = ACTIONS(8729), + [sym_stop_statement] = ACTIONS(8729), + [sym_beep_statement] = ACTIONS(8729), + [aux_sym_unload_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token2] = ACTIONS(8729), + [aux_sym_def_type_statement_token3] = ACTIONS(8729), + [aux_sym_def_type_statement_token4] = ACTIONS(8729), + [aux_sym_def_type_statement_token5] = ACTIONS(8729), + [aux_sym_def_type_statement_token6] = ACTIONS(8729), + [aux_sym_def_type_statement_token7] = ACTIONS(8729), + [aux_sym_def_type_statement_token8] = ACTIONS(8729), + [aux_sym_def_type_statement_token9] = ACTIONS(8729), + [aux_sym_def_type_statement_token10] = ACTIONS(8729), + [aux_sym_def_type_statement_token11] = ACTIONS(8729), + [aux_sym_def_type_statement_token12] = ACTIONS(8729), + [aux_sym_def_type_statement_token13] = ACTIONS(8729), + [aux_sym_def_type_statement_token14] = ACTIONS(8729), + [aux_sym_call_statement_token1] = ACTIONS(8729), + [sym__ambiguous_call_statement] = ACTIONS(8729), + [aux_sym_addressof_expression_token1] = ACTIONS(8729), + [aux_sym_type_of_expression_token1] = ACTIONS(8729), + [aux_sym_unary_expression_token1] = ACTIONS(8729), + [sym_string_literal] = ACTIONS(8731), + [sym_number_literal] = ACTIONS(8731), + [aux_sym_boolean_literal_token1] = ACTIONS(8729), + [aux_sym_boolean_literal_token2] = ACTIONS(8729), + [sym_nothing_literal] = ACTIONS(8729), + [sym_null_literal] = ACTIONS(8729), + [sym_empty_literal] = ACTIONS(8729), + [sym_date_literal] = ACTIONS(8731), + [anon_sym_POUND] = ACTIONS(8729), + }, + [STATE(6186)] = { + [sym_identifier] = ACTIONS(8525), + [sym_newline] = ACTIONS(8527), + [anon_sym_COLON] = ACTIONS(8527), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8525), + [aux_sym_frm_property_statement_token1] = ACTIONS(8525), + [anon_sym_EQ] = ACTIONS(8527), + [anon_sym_DOT] = ACTIONS(8525), + [anon_sym_BANG] = ACTIONS(8527), + [aux_sym__attribute_identifier_token1] = ACTIONS(8525), + [aux_sym_option_statement_token3] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8525), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8525), + [aux_sym_preprocessor_const_token1] = ACTIONS(8525), + [sym_static_modifier] = ACTIONS(8525), + [sym__dim_keyword] = ACTIONS(8525), + [sym__redim_keyword] = ACTIONS(8525), + [aux_sym_get_accessor_token1] = ACTIONS(8525), + [aux_sym_set_accessor_token1] = ACTIONS(8525), + [anon_sym_COMMA] = ACTIONS(8527), + [aux_sym_const_declaration_token1] = ACTIONS(8525), + [anon_sym_LPAREN] = ACTIONS(8527), + [aux_sym_as_type_clause_token2] = ACTIONS(8525), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8525), + [aux_sym_visibility_token1] = ACTIONS(8525), + [aux_sym_visibility_token2] = ACTIONS(8525), + [aux_sym_elseif_fragment_token1] = ACTIONS(8525), + [aux_sym_else_fragment_token1] = ACTIONS(8525), + [aux_sym_select_statement_token1] = ACTIONS(8525), + [aux_sym__for_header_token1] = ACTIONS(8525), + [aux_sym_do_statement_token1] = ACTIONS(8525), + [aux_sym_do_condition_token1] = ACTIONS(8525), + [aux_sym_with_statement_token1] = ACTIONS(8525), + [aux_sym_exit_statement_token1] = ACTIONS(8525), + [sym_end_statement] = ACTIONS(8527), + [aux_sym_on_goto_statement_token1] = ACTIONS(8525), + [aux_sym_on_goto_statement_token2] = ACTIONS(8525), + [aux_sym_on_error_statement_token2] = ACTIONS(8525), + [sym__ambiguous_redim_statement] = ACTIONS(8527), + [aux_sym_erase_statement_token1] = ACTIONS(8525), + [aux_sym_open_statement_token1] = ACTIONS(8525), + [aux_sym_file_mode_token2] = ACTIONS(8525), + [aux_sym_file_access_token2] = ACTIONS(8525), + [aux_sym_file_lock_token2] = ACTIONS(8525), + [aux_sym_print_statement_token1] = ACTIONS(8525), + [anon_sym_PLUS] = ACTIONS(8527), + [anon_sym_DASH] = ACTIONS(8525), + [anon_sym_QMARK] = ACTIONS(8527), + [aux_sym_close_statement_token1] = ACTIONS(8525), + [aux_sym_put_statement_token1] = ACTIONS(8525), + [aux_sym_unlock_statement_token1] = ACTIONS(8525), + [aux_sym_seek_statement_token1] = ACTIONS(8525), + [sym_reset_statement] = ACTIONS(8525), + [aux_sym_raise_event_statement_token1] = ACTIONS(8525), + [sym_stop_statement] = ACTIONS(8525), + [sym_beep_statement] = ACTIONS(8525), + [aux_sym_unload_statement_token1] = ACTIONS(8525), + [aux_sym_def_type_statement_token1] = ACTIONS(8525), + [aux_sym_def_type_statement_token2] = ACTIONS(8525), + [aux_sym_def_type_statement_token3] = ACTIONS(8525), + [aux_sym_def_type_statement_token4] = ACTIONS(8525), + [aux_sym_def_type_statement_token5] = ACTIONS(8525), + [aux_sym_def_type_statement_token6] = ACTIONS(8525), + [aux_sym_def_type_statement_token7] = ACTIONS(8525), + [aux_sym_def_type_statement_token8] = ACTIONS(8525), + [aux_sym_def_type_statement_token9] = ACTIONS(8525), + [aux_sym_def_type_statement_token10] = ACTIONS(8525), + [aux_sym_def_type_statement_token11] = ACTIONS(8525), + [aux_sym_def_type_statement_token12] = ACTIONS(8525), + [aux_sym_def_type_statement_token13] = ACTIONS(8525), + [aux_sym_def_type_statement_token14] = ACTIONS(8525), + [aux_sym_call_statement_token1] = ACTIONS(8525), + [sym__ambiguous_call_statement] = ACTIONS(8525), + [aux_sym_addressof_expression_token1] = ACTIONS(8525), + [aux_sym_type_of_expression_token1] = ACTIONS(8525), + [aux_sym_unary_expression_token1] = ACTIONS(8525), + [sym_string_literal] = ACTIONS(8527), + [sym_number_literal] = ACTIONS(8527), + [aux_sym_boolean_literal_token1] = ACTIONS(8525), + [aux_sym_boolean_literal_token2] = ACTIONS(8525), + [sym_nothing_literal] = ACTIONS(8525), + [sym_null_literal] = ACTIONS(8525), + [sym_empty_literal] = ACTIONS(8525), + [sym_date_literal] = ACTIONS(8527), + [anon_sym_POUND] = ACTIONS(8525), + }, + [STATE(6187)] = { + [sym_identifier] = ACTIONS(8686), + [sym_newline] = ACTIONS(8688), + [anon_sym_COLON] = ACTIONS(8688), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8686), + [aux_sym_frm_property_statement_token1] = ACTIONS(8686), + [anon_sym_DOT] = ACTIONS(8686), + [anon_sym_BANG] = ACTIONS(8688), + [aux_sym__attribute_identifier_token1] = ACTIONS(8686), + [aux_sym_option_statement_token3] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8686), + [aux_sym_preprocessor_const_token1] = ACTIONS(8686), + [sym_static_modifier] = ACTIONS(8686), + [sym__dim_keyword] = ACTIONS(8686), + [sym__redim_keyword] = ACTIONS(8686), + [aux_sym_get_accessor_token1] = ACTIONS(8686), + [aux_sym_set_accessor_token1] = ACTIONS(8686), + [aux_sym_const_declaration_token1] = ACTIONS(8686), + [anon_sym_LPAREN] = ACTIONS(8688), + [aux_sym_as_type_clause_token2] = ACTIONS(8686), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8686), + [aux_sym_visibility_token1] = ACTIONS(8686), + [aux_sym_visibility_token2] = ACTIONS(8686), + [aux_sym_elseif_fragment_token1] = ACTIONS(8686), + [aux_sym_else_fragment_token1] = ACTIONS(8686), + [aux_sym_select_statement_token1] = ACTIONS(8686), + [aux_sym__for_header_token1] = ACTIONS(8686), + [aux_sym_do_statement_token1] = ACTIONS(8686), + [aux_sym_do_condition_token1] = ACTIONS(8686), + [aux_sym_while_statement_token1] = ACTIONS(8686), + [aux_sym_with_statement_token1] = ACTIONS(8686), + [aux_sym_exit_statement_token1] = ACTIONS(8686), + [sym_end_statement] = ACTIONS(8688), + [aux_sym_on_goto_statement_token1] = ACTIONS(8686), + [aux_sym_on_goto_statement_token2] = ACTIONS(8686), + [aux_sym_on_error_statement_token2] = ACTIONS(8686), + [sym__ambiguous_redim_statement] = ACTIONS(8688), + [aux_sym_erase_statement_token1] = ACTIONS(8686), + [aux_sym_open_statement_token1] = ACTIONS(8686), + [aux_sym_open_statement_token3] = ACTIONS(11037), + [aux_sym_file_mode_token2] = ACTIONS(8686), + [aux_sym_file_access_token2] = ACTIONS(8686), + [aux_sym_file_lock_token2] = ACTIONS(8686), + [aux_sym_print_statement_token1] = ACTIONS(8686), + [anon_sym_PLUS] = ACTIONS(8688), + [anon_sym_DASH] = ACTIONS(8686), + [anon_sym_QMARK] = ACTIONS(8688), + [aux_sym_close_statement_token1] = ACTIONS(8686), + [aux_sym_put_statement_token1] = ACTIONS(8686), + [aux_sym_unlock_statement_token1] = ACTIONS(8686), + [aux_sym_seek_statement_token1] = ACTIONS(8686), + [sym_reset_statement] = ACTIONS(8686), + [aux_sym_raise_event_statement_token1] = ACTIONS(8686), + [sym_stop_statement] = ACTIONS(8686), + [sym_beep_statement] = ACTIONS(8686), + [aux_sym_unload_statement_token1] = ACTIONS(8686), + [aux_sym_def_type_statement_token1] = ACTIONS(8686), + [aux_sym_def_type_statement_token2] = ACTIONS(8686), + [aux_sym_def_type_statement_token3] = ACTIONS(8686), + [aux_sym_def_type_statement_token4] = ACTIONS(8686), + [aux_sym_def_type_statement_token5] = ACTIONS(8686), + [aux_sym_def_type_statement_token6] = ACTIONS(8686), + [aux_sym_def_type_statement_token7] = ACTIONS(8686), + [aux_sym_def_type_statement_token8] = ACTIONS(8686), + [aux_sym_def_type_statement_token9] = ACTIONS(8686), + [aux_sym_def_type_statement_token10] = ACTIONS(8686), + [aux_sym_def_type_statement_token11] = ACTIONS(8686), + [aux_sym_def_type_statement_token12] = ACTIONS(8686), + [aux_sym_def_type_statement_token13] = ACTIONS(8686), + [aux_sym_def_type_statement_token14] = ACTIONS(8686), + [aux_sym_call_statement_token1] = ACTIONS(8686), + [sym__ambiguous_call_statement] = ACTIONS(8686), + [aux_sym_addressof_expression_token1] = ACTIONS(8686), + [aux_sym_type_of_expression_token1] = ACTIONS(8686), + [aux_sym_unary_expression_token1] = ACTIONS(8686), + [sym_string_literal] = ACTIONS(8688), + [sym_number_literal] = ACTIONS(8688), + [aux_sym_boolean_literal_token1] = ACTIONS(8686), + [aux_sym_boolean_literal_token2] = ACTIONS(8686), + [sym_nothing_literal] = ACTIONS(8686), + [sym_null_literal] = ACTIONS(8686), + [sym_empty_literal] = ACTIONS(8686), + [sym_date_literal] = ACTIONS(8688), + [anon_sym_POUND] = ACTIONS(8686), + }, + [STATE(6188)] = { + [sym_identifier] = ACTIONS(8903), + [sym_newline] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8903), + [aux_sym_frm_property_statement_token1] = ACTIONS(8903), + [anon_sym_DOT] = ACTIONS(8903), + [anon_sym_BANG] = ACTIONS(8905), + [aux_sym__attribute_identifier_token1] = ACTIONS(8903), + [aux_sym_option_statement_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8903), + [aux_sym_preprocessor_const_token1] = ACTIONS(8903), + [sym_static_modifier] = ACTIONS(8903), + [sym__dim_keyword] = ACTIONS(8903), + [sym__redim_keyword] = ACTIONS(8903), + [aux_sym_get_accessor_token1] = ACTIONS(8903), + [aux_sym_set_accessor_token1] = ACTIONS(8903), + [aux_sym_const_declaration_token1] = ACTIONS(8903), + [anon_sym_LPAREN] = ACTIONS(8905), + [aux_sym_as_type_clause_token2] = ACTIONS(8903), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8903), + [aux_sym_visibility_token1] = ACTIONS(8903), + [aux_sym_visibility_token2] = ACTIONS(8903), + [aux_sym_elseif_fragment_token1] = ACTIONS(8903), + [aux_sym_else_fragment_token1] = ACTIONS(8903), + [aux_sym_select_statement_token1] = ACTIONS(8903), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8903), + [aux_sym__for_header_token1] = ACTIONS(8903), + [aux_sym_do_statement_token1] = ACTIONS(8903), + [aux_sym_do_statement_token2] = ACTIONS(8903), + [aux_sym_do_condition_token1] = ACTIONS(8903), + [aux_sym_with_statement_token1] = ACTIONS(8903), + [aux_sym_exit_statement_token1] = ACTIONS(8903), + [sym_end_statement] = ACTIONS(8905), + [aux_sym_on_goto_statement_token1] = ACTIONS(8903), + [aux_sym_on_goto_statement_token2] = ACTIONS(8903), + [aux_sym_on_error_statement_token2] = ACTIONS(8903), + [sym__ambiguous_redim_statement] = ACTIONS(8905), + [aux_sym_erase_statement_token1] = ACTIONS(8903), + [aux_sym_open_statement_token1] = ACTIONS(8903), + [aux_sym_file_mode_token2] = ACTIONS(8903), + [aux_sym_file_access_token2] = ACTIONS(8903), + [aux_sym_file_lock_token2] = ACTIONS(8903), + [aux_sym_print_statement_token1] = ACTIONS(8903), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_DASH] = ACTIONS(8903), + [anon_sym_QMARK] = ACTIONS(8905), + [aux_sym_close_statement_token1] = ACTIONS(8903), + [aux_sym_put_statement_token1] = ACTIONS(8903), + [aux_sym_unlock_statement_token1] = ACTIONS(8903), + [aux_sym_seek_statement_token1] = ACTIONS(8903), + [sym_reset_statement] = ACTIONS(8903), + [aux_sym_raise_event_statement_token1] = ACTIONS(8903), + [sym_stop_statement] = ACTIONS(8903), + [sym_beep_statement] = ACTIONS(8903), + [aux_sym_unload_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token2] = ACTIONS(8903), + [aux_sym_def_type_statement_token3] = ACTIONS(8903), + [aux_sym_def_type_statement_token4] = ACTIONS(8903), + [aux_sym_def_type_statement_token5] = ACTIONS(8903), + [aux_sym_def_type_statement_token6] = ACTIONS(8903), + [aux_sym_def_type_statement_token7] = ACTIONS(8903), + [aux_sym_def_type_statement_token8] = ACTIONS(8903), + [aux_sym_def_type_statement_token9] = ACTIONS(8903), + [aux_sym_def_type_statement_token10] = ACTIONS(8903), + [aux_sym_def_type_statement_token11] = ACTIONS(8903), + [aux_sym_def_type_statement_token12] = ACTIONS(8903), + [aux_sym_def_type_statement_token13] = ACTIONS(8903), + [aux_sym_def_type_statement_token14] = ACTIONS(8903), + [aux_sym_call_statement_token1] = ACTIONS(8903), + [sym__ambiguous_call_statement] = ACTIONS(8903), + [aux_sym_addressof_expression_token1] = ACTIONS(8903), + [aux_sym_type_of_expression_token1] = ACTIONS(8903), + [aux_sym_unary_expression_token1] = ACTIONS(8903), + [sym_string_literal] = ACTIONS(8905), + [sym_number_literal] = ACTIONS(8905), + [aux_sym_boolean_literal_token1] = ACTIONS(8903), + [aux_sym_boolean_literal_token2] = ACTIONS(8903), + [sym_nothing_literal] = ACTIONS(8903), + [sym_null_literal] = ACTIONS(8903), + [sym_empty_literal] = ACTIONS(8903), + [sym_date_literal] = ACTIONS(8905), + [anon_sym_POUND] = ACTIONS(8903), + }, + [STATE(6189)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_statement_token2] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(6190)] = { + [sym_identifier] = ACTIONS(8635), + [sym_newline] = ACTIONS(8637), + [anon_sym_COLON] = ACTIONS(8637), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8635), + [aux_sym_frm_property_statement_token1] = ACTIONS(8635), + [anon_sym_DOT] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(8637), + [aux_sym__attribute_identifier_token1] = ACTIONS(8635), + [aux_sym_option_statement_token3] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8635), + [aux_sym_preprocessor_const_token1] = ACTIONS(8635), + [sym_static_modifier] = ACTIONS(8635), + [sym__dim_keyword] = ACTIONS(8635), + [sym__redim_keyword] = ACTIONS(8635), + [aux_sym_get_accessor_token1] = ACTIONS(8635), + [aux_sym_set_accessor_token1] = ACTIONS(8635), + [anon_sym_COMMA] = ACTIONS(11039), + [aux_sym_const_declaration_token1] = ACTIONS(8635), + [anon_sym_LPAREN] = ACTIONS(8637), + [aux_sym_as_type_clause_token2] = ACTIONS(8635), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8635), + [aux_sym_visibility_token1] = ACTIONS(8635), + [aux_sym_visibility_token2] = ACTIONS(8635), + [aux_sym_elseif_fragment_token1] = ACTIONS(8635), + [aux_sym_else_fragment_token1] = ACTIONS(8635), + [aux_sym_select_statement_token1] = ACTIONS(8635), + [aux_sym__for_header_token1] = ACTIONS(8635), + [aux_sym_do_statement_token1] = ACTIONS(8635), + [aux_sym_do_statement_token2] = ACTIONS(8635), + [aux_sym_do_condition_token1] = ACTIONS(8635), + [aux_sym_with_statement_token1] = ACTIONS(8635), + [aux_sym_exit_statement_token1] = ACTIONS(8635), + [sym_end_statement] = ACTIONS(8637), + [aux_sym_on_goto_statement_token1] = ACTIONS(8635), + [aux_sym_on_goto_statement_token2] = ACTIONS(8635), + [aux_sym_on_error_statement_token2] = ACTIONS(8635), + [sym__ambiguous_redim_statement] = ACTIONS(8637), + [aux_sym_erase_statement_token1] = ACTIONS(8635), + [aux_sym_open_statement_token1] = ACTIONS(8635), + [aux_sym_file_mode_token2] = ACTIONS(8635), + [aux_sym_file_access_token2] = ACTIONS(8635), + [aux_sym_file_lock_token2] = ACTIONS(8635), + [aux_sym_print_statement_token1] = ACTIONS(8635), + [anon_sym_PLUS] = ACTIONS(8637), + [anon_sym_DASH] = ACTIONS(8635), + [anon_sym_QMARK] = ACTIONS(8637), + [aux_sym_close_statement_token1] = ACTIONS(8635), + [aux_sym_put_statement_token1] = ACTIONS(8635), + [aux_sym_unlock_statement_token1] = ACTIONS(8635), + [aux_sym_seek_statement_token1] = ACTIONS(8635), + [sym_reset_statement] = ACTIONS(8635), + [aux_sym_raise_event_statement_token1] = ACTIONS(8635), + [sym_stop_statement] = ACTIONS(8635), + [sym_beep_statement] = ACTIONS(8635), + [aux_sym_unload_statement_token1] = ACTIONS(8635), + [aux_sym_def_type_statement_token1] = ACTIONS(8635), + [aux_sym_def_type_statement_token2] = ACTIONS(8635), + [aux_sym_def_type_statement_token3] = ACTIONS(8635), + [aux_sym_def_type_statement_token4] = ACTIONS(8635), + [aux_sym_def_type_statement_token5] = ACTIONS(8635), + [aux_sym_def_type_statement_token6] = ACTIONS(8635), + [aux_sym_def_type_statement_token7] = ACTIONS(8635), + [aux_sym_def_type_statement_token8] = ACTIONS(8635), + [aux_sym_def_type_statement_token9] = ACTIONS(8635), + [aux_sym_def_type_statement_token10] = ACTIONS(8635), + [aux_sym_def_type_statement_token11] = ACTIONS(8635), + [aux_sym_def_type_statement_token12] = ACTIONS(8635), + [aux_sym_def_type_statement_token13] = ACTIONS(8635), + [aux_sym_def_type_statement_token14] = ACTIONS(8635), + [aux_sym_call_statement_token1] = ACTIONS(8635), + [sym__ambiguous_call_statement] = ACTIONS(8635), + [aux_sym_addressof_expression_token1] = ACTIONS(8635), + [aux_sym_type_of_expression_token1] = ACTIONS(8635), + [aux_sym_unary_expression_token1] = ACTIONS(8635), + [sym_string_literal] = ACTIONS(8637), + [sym_number_literal] = ACTIONS(8637), + [aux_sym_boolean_literal_token1] = ACTIONS(8635), + [aux_sym_boolean_literal_token2] = ACTIONS(8635), + [sym_nothing_literal] = ACTIONS(8635), + [sym_null_literal] = ACTIONS(8635), + [sym_empty_literal] = ACTIONS(8635), + [sym_date_literal] = ACTIONS(8637), + [anon_sym_POUND] = ACTIONS(8635), + }, + [STATE(6191)] = { + [sym_identifier] = ACTIONS(8713), + [sym_newline] = ACTIONS(8715), + [anon_sym_COLON] = ACTIONS(8715), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8713), + [aux_sym_frm_property_statement_token1] = ACTIONS(8713), + [anon_sym_DOT] = ACTIONS(8713), + [anon_sym_BANG] = ACTIONS(8715), + [aux_sym__attribute_identifier_token1] = ACTIONS(8713), + [aux_sym_option_statement_token3] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8713), + [aux_sym_preprocessor_const_token1] = ACTIONS(8713), + [sym_static_modifier] = ACTIONS(8713), + [sym__dim_keyword] = ACTIONS(8713), + [sym__redim_keyword] = ACTIONS(8713), + [aux_sym_get_accessor_token1] = ACTIONS(8713), + [aux_sym_set_accessor_token1] = ACTIONS(8713), + [anon_sym_COMMA] = ACTIONS(8715), + [aux_sym_const_declaration_token1] = ACTIONS(8713), + [anon_sym_LPAREN] = ACTIONS(8715), + [aux_sym_as_type_clause_token2] = ACTIONS(8713), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8713), + [aux_sym_visibility_token1] = ACTIONS(8713), + [aux_sym_visibility_token2] = ACTIONS(8713), + [aux_sym_elseif_fragment_token1] = ACTIONS(8713), + [aux_sym_else_fragment_token1] = ACTIONS(8713), + [aux_sym_select_statement_token1] = ACTIONS(8713), + [aux_sym__for_header_token1] = ACTIONS(8713), + [aux_sym_do_statement_token1] = ACTIONS(8713), + [aux_sym_do_statement_token2] = ACTIONS(8713), + [aux_sym_do_condition_token1] = ACTIONS(8713), + [aux_sym_with_statement_token1] = ACTIONS(8713), + [aux_sym_exit_statement_token1] = ACTIONS(8713), + [sym_end_statement] = ACTIONS(8715), + [aux_sym_on_goto_statement_token1] = ACTIONS(8713), + [aux_sym_on_goto_statement_token2] = ACTIONS(8713), + [aux_sym_on_error_statement_token2] = ACTIONS(8713), + [sym__ambiguous_redim_statement] = ACTIONS(8715), + [aux_sym_erase_statement_token1] = ACTIONS(8713), + [aux_sym_open_statement_token1] = ACTIONS(8713), + [aux_sym_file_mode_token2] = ACTIONS(8713), + [aux_sym_file_access_token2] = ACTIONS(8713), + [aux_sym_file_lock_token2] = ACTIONS(8713), + [aux_sym_print_statement_token1] = ACTIONS(8713), + [anon_sym_PLUS] = ACTIONS(8715), + [anon_sym_DASH] = ACTIONS(8713), + [anon_sym_QMARK] = ACTIONS(8715), + [aux_sym_close_statement_token1] = ACTIONS(8713), + [aux_sym_put_statement_token1] = ACTIONS(8713), + [aux_sym_unlock_statement_token1] = ACTIONS(8713), + [aux_sym_seek_statement_token1] = ACTIONS(8713), + [sym_reset_statement] = ACTIONS(8713), + [aux_sym_raise_event_statement_token1] = ACTIONS(8713), + [sym_stop_statement] = ACTIONS(8713), + [sym_beep_statement] = ACTIONS(8713), + [aux_sym_unload_statement_token1] = ACTIONS(8713), + [aux_sym_def_type_statement_token1] = ACTIONS(8713), + [aux_sym_def_type_statement_token2] = ACTIONS(8713), + [aux_sym_def_type_statement_token3] = ACTIONS(8713), + [aux_sym_def_type_statement_token4] = ACTIONS(8713), + [aux_sym_def_type_statement_token5] = ACTIONS(8713), + [aux_sym_def_type_statement_token6] = ACTIONS(8713), + [aux_sym_def_type_statement_token7] = ACTIONS(8713), + [aux_sym_def_type_statement_token8] = ACTIONS(8713), + [aux_sym_def_type_statement_token9] = ACTIONS(8713), + [aux_sym_def_type_statement_token10] = ACTIONS(8713), + [aux_sym_def_type_statement_token11] = ACTIONS(8713), + [aux_sym_def_type_statement_token12] = ACTIONS(8713), + [aux_sym_def_type_statement_token13] = ACTIONS(8713), + [aux_sym_def_type_statement_token14] = ACTIONS(8713), + [aux_sym_call_statement_token1] = ACTIONS(8713), + [sym__ambiguous_call_statement] = ACTIONS(8713), + [aux_sym_addressof_expression_token1] = ACTIONS(8713), + [aux_sym_type_of_expression_token1] = ACTIONS(8713), + [aux_sym_unary_expression_token1] = ACTIONS(8713), + [sym_string_literal] = ACTIONS(8715), + [sym_number_literal] = ACTIONS(8715), + [aux_sym_boolean_literal_token1] = ACTIONS(8713), + [aux_sym_boolean_literal_token2] = ACTIONS(8713), + [sym_nothing_literal] = ACTIONS(8713), + [sym_null_literal] = ACTIONS(8713), + [sym_empty_literal] = ACTIONS(8713), + [sym_date_literal] = ACTIONS(8715), + [anon_sym_POUND] = ACTIONS(8713), + }, + [STATE(6192)] = { + [sym_identifier] = ACTIONS(3996), + [sym_newline] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3996), + [aux_sym_frm_property_statement_token1] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3994), + [aux_sym__attribute_identifier_token1] = ACTIONS(3996), + [aux_sym_option_statement_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3996), + [aux_sym_preprocessor_const_token1] = ACTIONS(3996), + [sym_static_modifier] = ACTIONS(3996), + [sym__dim_keyword] = ACTIONS(3996), + [sym__redim_keyword] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3996), + [aux_sym_set_accessor_token1] = ACTIONS(3996), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3994), + [aux_sym_as_type_clause_token2] = ACTIONS(3996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3996), + [aux_sym_visibility_token1] = ACTIONS(3996), + [aux_sym_visibility_token2] = ACTIONS(3996), + [aux_sym_elseif_fragment_token1] = ACTIONS(3996), + [aux_sym_else_fragment_token1] = ACTIONS(3996), + [aux_sym_select_statement_token1] = ACTIONS(3996), + [aux_sym_select_statement_token2] = ACTIONS(3996), + [aux_sym__for_header_token1] = ACTIONS(3996), + [aux_sym_do_statement_token1] = ACTIONS(3996), + [aux_sym_do_condition_token1] = ACTIONS(3996), + [aux_sym_with_statement_token1] = ACTIONS(3996), + [aux_sym_exit_statement_token1] = ACTIONS(3996), + [sym_end_statement] = ACTIONS(3994), + [aux_sym_on_goto_statement_token1] = ACTIONS(3996), + [aux_sym_on_goto_statement_token2] = ACTIONS(3996), + [aux_sym_on_error_statement_token2] = ACTIONS(3996), + [sym__ambiguous_redim_statement] = ACTIONS(3994), + [aux_sym_erase_statement_token1] = ACTIONS(3996), + [aux_sym_open_statement_token1] = ACTIONS(3996), + [aux_sym_file_mode_token2] = ACTIONS(3996), + [aux_sym_file_access_token2] = ACTIONS(3996), + [aux_sym_file_lock_token2] = ACTIONS(3996), + [aux_sym_print_statement_token1] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3994), + [aux_sym_close_statement_token1] = ACTIONS(3996), + [aux_sym_put_statement_token1] = ACTIONS(3996), + [aux_sym_unlock_statement_token1] = ACTIONS(3996), + [aux_sym_seek_statement_token1] = ACTIONS(3996), + [sym_reset_statement] = ACTIONS(3996), + [aux_sym_raise_event_statement_token1] = ACTIONS(3996), + [sym_stop_statement] = ACTIONS(3996), + [sym_beep_statement] = ACTIONS(3996), + [aux_sym_unload_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token2] = ACTIONS(3996), + [aux_sym_def_type_statement_token3] = ACTIONS(3996), + [aux_sym_def_type_statement_token4] = ACTIONS(3996), + [aux_sym_def_type_statement_token5] = ACTIONS(3996), + [aux_sym_def_type_statement_token6] = ACTIONS(3996), + [aux_sym_def_type_statement_token7] = ACTIONS(3996), + [aux_sym_def_type_statement_token8] = ACTIONS(3996), + [aux_sym_def_type_statement_token9] = ACTIONS(3996), + [aux_sym_def_type_statement_token10] = ACTIONS(3996), + [aux_sym_def_type_statement_token11] = ACTIONS(3996), + [aux_sym_def_type_statement_token12] = ACTIONS(3996), + [aux_sym_def_type_statement_token13] = ACTIONS(3996), + [aux_sym_def_type_statement_token14] = ACTIONS(3996), + [aux_sym_call_statement_token1] = ACTIONS(3996), + [sym__ambiguous_call_statement] = ACTIONS(3996), + [aux_sym_addressof_expression_token1] = ACTIONS(3996), + [aux_sym_type_of_expression_token1] = ACTIONS(3996), + [aux_sym_unary_expression_token1] = ACTIONS(3996), + [sym_string_literal] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3994), + [aux_sym_boolean_literal_token1] = ACTIONS(3996), + [aux_sym_boolean_literal_token2] = ACTIONS(3996), + [sym_nothing_literal] = ACTIONS(3996), + [sym_null_literal] = ACTIONS(3996), + [sym_empty_literal] = ACTIONS(3996), + [sym_date_literal] = ACTIONS(3994), + [anon_sym_POUND] = ACTIONS(3996), + }, + [STATE(6193)] = { + [sym_identifier] = ACTIONS(8739), + [sym_newline] = ACTIONS(8741), + [anon_sym_COLON] = ACTIONS(8741), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8739), + [aux_sym_frm_property_statement_token1] = ACTIONS(8739), + [anon_sym_DOT] = ACTIONS(8739), + [anon_sym_BANG] = ACTIONS(8741), + [aux_sym__attribute_identifier_token1] = ACTIONS(8739), + [aux_sym_option_statement_token3] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8739), + [aux_sym_preprocessor_const_token1] = ACTIONS(8739), + [sym_static_modifier] = ACTIONS(8739), + [sym__dim_keyword] = ACTIONS(8739), + [sym__redim_keyword] = ACTIONS(8739), + [aux_sym_get_accessor_token1] = ACTIONS(8739), + [aux_sym_set_accessor_token1] = ACTIONS(8739), + [anon_sym_COMMA] = ACTIONS(11041), + [aux_sym_const_declaration_token1] = ACTIONS(8739), + [anon_sym_LPAREN] = ACTIONS(8741), + [aux_sym_as_type_clause_token2] = ACTIONS(8739), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8739), + [aux_sym_visibility_token1] = ACTIONS(8739), + [aux_sym_visibility_token2] = ACTIONS(8739), + [aux_sym_elseif_fragment_token1] = ACTIONS(8739), + [aux_sym_else_fragment_token1] = ACTIONS(8739), + [aux_sym_select_statement_token1] = ACTIONS(8739), + [aux_sym__for_header_token1] = ACTIONS(8739), + [aux_sym_do_statement_token1] = ACTIONS(8739), + [aux_sym_do_statement_token2] = ACTIONS(8739), + [aux_sym_do_condition_token1] = ACTIONS(8739), + [aux_sym_with_statement_token1] = ACTIONS(8739), + [aux_sym_exit_statement_token1] = ACTIONS(8739), + [sym_end_statement] = ACTIONS(8741), + [aux_sym_on_goto_statement_token1] = ACTIONS(8739), + [aux_sym_on_goto_statement_token2] = ACTIONS(8739), + [aux_sym_on_error_statement_token2] = ACTIONS(8739), + [sym__ambiguous_redim_statement] = ACTIONS(8741), + [aux_sym_erase_statement_token1] = ACTIONS(8739), + [aux_sym_open_statement_token1] = ACTIONS(8739), + [aux_sym_file_mode_token2] = ACTIONS(8739), + [aux_sym_file_access_token2] = ACTIONS(8739), + [aux_sym_file_lock_token2] = ACTIONS(8739), + [aux_sym_print_statement_token1] = ACTIONS(8739), + [anon_sym_PLUS] = ACTIONS(8741), + [anon_sym_DASH] = ACTIONS(8739), + [anon_sym_QMARK] = ACTIONS(8741), + [aux_sym_close_statement_token1] = ACTIONS(8739), + [aux_sym_put_statement_token1] = ACTIONS(8739), + [aux_sym_unlock_statement_token1] = ACTIONS(8739), + [aux_sym_seek_statement_token1] = ACTIONS(8739), + [sym_reset_statement] = ACTIONS(8739), + [aux_sym_raise_event_statement_token1] = ACTIONS(8739), + [sym_stop_statement] = ACTIONS(8739), + [sym_beep_statement] = ACTIONS(8739), + [aux_sym_unload_statement_token1] = ACTIONS(8739), + [aux_sym_def_type_statement_token1] = ACTIONS(8739), + [aux_sym_def_type_statement_token2] = ACTIONS(8739), + [aux_sym_def_type_statement_token3] = ACTIONS(8739), + [aux_sym_def_type_statement_token4] = ACTIONS(8739), + [aux_sym_def_type_statement_token5] = ACTIONS(8739), + [aux_sym_def_type_statement_token6] = ACTIONS(8739), + [aux_sym_def_type_statement_token7] = ACTIONS(8739), + [aux_sym_def_type_statement_token8] = ACTIONS(8739), + [aux_sym_def_type_statement_token9] = ACTIONS(8739), + [aux_sym_def_type_statement_token10] = ACTIONS(8739), + [aux_sym_def_type_statement_token11] = ACTIONS(8739), + [aux_sym_def_type_statement_token12] = ACTIONS(8739), + [aux_sym_def_type_statement_token13] = ACTIONS(8739), + [aux_sym_def_type_statement_token14] = ACTIONS(8739), + [aux_sym_call_statement_token1] = ACTIONS(8739), + [sym__ambiguous_call_statement] = ACTIONS(8739), + [aux_sym_addressof_expression_token1] = ACTIONS(8739), + [aux_sym_type_of_expression_token1] = ACTIONS(8739), + [aux_sym_unary_expression_token1] = ACTIONS(8739), + [sym_string_literal] = ACTIONS(8741), + [sym_number_literal] = ACTIONS(8741), + [aux_sym_boolean_literal_token1] = ACTIONS(8739), + [aux_sym_boolean_literal_token2] = ACTIONS(8739), + [sym_nothing_literal] = ACTIONS(8739), + [sym_null_literal] = ACTIONS(8739), + [sym_empty_literal] = ACTIONS(8739), + [sym_date_literal] = ACTIONS(8741), + [anon_sym_POUND] = ACTIONS(8739), + }, + [STATE(6194)] = { + [sym_identifier] = ACTIONS(8766), + [sym_newline] = ACTIONS(8768), + [anon_sym_COLON] = ACTIONS(8768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8766), + [aux_sym_frm_property_statement_token1] = ACTIONS(8766), + [anon_sym_DOT] = ACTIONS(8766), + [anon_sym_BANG] = ACTIONS(8768), + [aux_sym__attribute_identifier_token1] = ACTIONS(8766), + [aux_sym_option_statement_token3] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8766), + [aux_sym_preprocessor_const_token1] = ACTIONS(8766), + [sym_static_modifier] = ACTIONS(8766), + [sym__dim_keyword] = ACTIONS(8766), + [sym__redim_keyword] = ACTIONS(8766), + [aux_sym_get_accessor_token1] = ACTIONS(8766), + [aux_sym_set_accessor_token1] = ACTIONS(8766), + [anon_sym_COMMA] = ACTIONS(11043), + [aux_sym_const_declaration_token1] = ACTIONS(8766), + [anon_sym_LPAREN] = ACTIONS(8768), + [aux_sym_as_type_clause_token2] = ACTIONS(8766), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8766), + [aux_sym_visibility_token1] = ACTIONS(8766), + [aux_sym_visibility_token2] = ACTIONS(8766), + [aux_sym_elseif_fragment_token1] = ACTIONS(8766), + [aux_sym_else_fragment_token1] = ACTIONS(8766), + [aux_sym_select_statement_token1] = ACTIONS(8766), + [aux_sym__for_header_token1] = ACTIONS(8766), + [aux_sym_do_statement_token1] = ACTIONS(8766), + [aux_sym_do_statement_token2] = ACTIONS(8766), + [aux_sym_do_condition_token1] = ACTIONS(8766), + [aux_sym_with_statement_token1] = ACTIONS(8766), + [aux_sym_exit_statement_token1] = ACTIONS(8766), + [sym_end_statement] = ACTIONS(8768), + [aux_sym_on_goto_statement_token1] = ACTIONS(8766), + [aux_sym_on_goto_statement_token2] = ACTIONS(8766), + [aux_sym_on_error_statement_token2] = ACTIONS(8766), + [sym__ambiguous_redim_statement] = ACTIONS(8768), + [aux_sym_erase_statement_token1] = ACTIONS(8766), + [aux_sym_open_statement_token1] = ACTIONS(8766), + [aux_sym_file_mode_token2] = ACTIONS(8766), + [aux_sym_file_access_token2] = ACTIONS(8766), + [aux_sym_file_lock_token2] = ACTIONS(8766), + [aux_sym_print_statement_token1] = ACTIONS(8766), + [anon_sym_PLUS] = ACTIONS(8768), + [anon_sym_DASH] = ACTIONS(8766), + [anon_sym_QMARK] = ACTIONS(8768), + [aux_sym_close_statement_token1] = ACTIONS(8766), + [aux_sym_put_statement_token1] = ACTIONS(8766), + [aux_sym_unlock_statement_token1] = ACTIONS(8766), + [aux_sym_seek_statement_token1] = ACTIONS(8766), + [sym_reset_statement] = ACTIONS(8766), + [aux_sym_raise_event_statement_token1] = ACTIONS(8766), + [sym_stop_statement] = ACTIONS(8766), + [sym_beep_statement] = ACTIONS(8766), + [aux_sym_unload_statement_token1] = ACTIONS(8766), + [aux_sym_def_type_statement_token1] = ACTIONS(8766), + [aux_sym_def_type_statement_token2] = ACTIONS(8766), + [aux_sym_def_type_statement_token3] = ACTIONS(8766), + [aux_sym_def_type_statement_token4] = ACTIONS(8766), + [aux_sym_def_type_statement_token5] = ACTIONS(8766), + [aux_sym_def_type_statement_token6] = ACTIONS(8766), + [aux_sym_def_type_statement_token7] = ACTIONS(8766), + [aux_sym_def_type_statement_token8] = ACTIONS(8766), + [aux_sym_def_type_statement_token9] = ACTIONS(8766), + [aux_sym_def_type_statement_token10] = ACTIONS(8766), + [aux_sym_def_type_statement_token11] = ACTIONS(8766), + [aux_sym_def_type_statement_token12] = ACTIONS(8766), + [aux_sym_def_type_statement_token13] = ACTIONS(8766), + [aux_sym_def_type_statement_token14] = ACTIONS(8766), + [aux_sym_call_statement_token1] = ACTIONS(8766), + [sym__ambiguous_call_statement] = ACTIONS(8766), + [aux_sym_addressof_expression_token1] = ACTIONS(8766), + [aux_sym_type_of_expression_token1] = ACTIONS(8766), + [aux_sym_unary_expression_token1] = ACTIONS(8766), + [sym_string_literal] = ACTIONS(8768), + [sym_number_literal] = ACTIONS(8768), + [aux_sym_boolean_literal_token1] = ACTIONS(8766), + [aux_sym_boolean_literal_token2] = ACTIONS(8766), + [sym_nothing_literal] = ACTIONS(8766), + [sym_null_literal] = ACTIONS(8766), + [sym_empty_literal] = ACTIONS(8766), + [sym_date_literal] = ACTIONS(8768), + [anon_sym_POUND] = ACTIONS(8766), + }, + [STATE(6195)] = { + [sym_identifier] = ACTIONS(8903), + [sym_newline] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8903), + [aux_sym_frm_property_statement_token1] = ACTIONS(8903), + [anon_sym_DOT] = ACTIONS(8903), + [anon_sym_BANG] = ACTIONS(8905), + [aux_sym__attribute_identifier_token1] = ACTIONS(8903), + [aux_sym_option_statement_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8903), + [aux_sym_preprocessor_const_token1] = ACTIONS(8903), + [sym_static_modifier] = ACTIONS(8903), + [sym__dim_keyword] = ACTIONS(8903), + [sym__redim_keyword] = ACTIONS(8903), + [aux_sym_get_accessor_token1] = ACTIONS(8903), + [aux_sym_set_accessor_token1] = ACTIONS(8903), + [aux_sym_const_declaration_token1] = ACTIONS(8903), + [anon_sym_LPAREN] = ACTIONS(8905), + [aux_sym_as_type_clause_token2] = ACTIONS(8903), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8903), + [aux_sym_visibility_token1] = ACTIONS(8903), + [aux_sym_visibility_token2] = ACTIONS(8903), + [aux_sym_elseif_fragment_token1] = ACTIONS(8903), + [aux_sym_else_fragment_token1] = ACTIONS(8903), + [aux_sym_select_statement_token1] = ACTIONS(8903), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8903), + [aux_sym__for_header_token1] = ACTIONS(8903), + [aux_sym_do_statement_token1] = ACTIONS(8903), + [aux_sym_do_condition_token1] = ACTIONS(8903), + [aux_sym_with_statement_token1] = ACTIONS(8903), + [aux_sym_exit_statement_token1] = ACTIONS(8903), + [sym_end_statement] = ACTIONS(8905), + [aux_sym_on_goto_statement_token1] = ACTIONS(8903), + [aux_sym_on_goto_statement_token2] = ACTIONS(8903), + [aux_sym_on_error_statement_token2] = ACTIONS(8903), + [sym__ambiguous_redim_statement] = ACTIONS(8905), + [aux_sym_erase_statement_token1] = ACTIONS(8903), + [aux_sym_open_statement_token1] = ACTIONS(8903), + [aux_sym_file_mode_token2] = ACTIONS(8903), + [aux_sym_file_access_token2] = ACTIONS(8903), + [aux_sym_file_lock_token2] = ACTIONS(8903), + [aux_sym_print_statement_token1] = ACTIONS(8903), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_DASH] = ACTIONS(8903), + [anon_sym_QMARK] = ACTIONS(8905), + [aux_sym_close_statement_token1] = ACTIONS(8903), + [aux_sym_put_statement_token1] = ACTIONS(8903), + [aux_sym_unlock_statement_token1] = ACTIONS(8903), + [aux_sym_seek_statement_token1] = ACTIONS(8903), + [sym_reset_statement] = ACTIONS(8903), + [aux_sym_raise_event_statement_token1] = ACTIONS(8903), + [sym_stop_statement] = ACTIONS(8903), + [sym_beep_statement] = ACTIONS(8903), + [aux_sym_unload_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token2] = ACTIONS(8903), + [aux_sym_def_type_statement_token3] = ACTIONS(8903), + [aux_sym_def_type_statement_token4] = ACTIONS(8903), + [aux_sym_def_type_statement_token5] = ACTIONS(8903), + [aux_sym_def_type_statement_token6] = ACTIONS(8903), + [aux_sym_def_type_statement_token7] = ACTIONS(8903), + [aux_sym_def_type_statement_token8] = ACTIONS(8903), + [aux_sym_def_type_statement_token9] = ACTIONS(8903), + [aux_sym_def_type_statement_token10] = ACTIONS(8903), + [aux_sym_def_type_statement_token11] = ACTIONS(8903), + [aux_sym_def_type_statement_token12] = ACTIONS(8903), + [aux_sym_def_type_statement_token13] = ACTIONS(8903), + [aux_sym_def_type_statement_token14] = ACTIONS(8903), + [aux_sym_call_statement_token1] = ACTIONS(8903), + [sym__ambiguous_call_statement] = ACTIONS(8903), + [aux_sym_addressof_expression_token1] = ACTIONS(8903), + [aux_sym_type_of_expression_token1] = ACTIONS(8903), + [aux_sym_unary_expression_token1] = ACTIONS(8903), + [sym_string_literal] = ACTIONS(8905), + [sym_number_literal] = ACTIONS(8905), + [aux_sym_boolean_literal_token1] = ACTIONS(8903), + [aux_sym_boolean_literal_token2] = ACTIONS(8903), + [sym_nothing_literal] = ACTIONS(8903), + [sym_null_literal] = ACTIONS(8903), + [sym_empty_literal] = ACTIONS(8903), + [sym_date_literal] = ACTIONS(8905), + [anon_sym_POUND] = ACTIONS(8903), + }, + [STATE(6196)] = { + [sym_identifier] = ACTIONS(8911), + [sym_newline] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8911), + [aux_sym_frm_property_statement_token1] = ACTIONS(8911), + [anon_sym_DOT] = ACTIONS(8911), + [anon_sym_BANG] = ACTIONS(8913), + [aux_sym__attribute_identifier_token1] = ACTIONS(8911), + [aux_sym_option_statement_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8911), + [aux_sym_preprocessor_const_token1] = ACTIONS(8911), + [sym_static_modifier] = ACTIONS(8911), + [sym__dim_keyword] = ACTIONS(8911), + [sym__redim_keyword] = ACTIONS(8911), + [aux_sym_get_accessor_token1] = ACTIONS(8911), + [aux_sym_set_accessor_token1] = ACTIONS(8911), + [aux_sym_const_declaration_token1] = ACTIONS(8911), + [anon_sym_LPAREN] = ACTIONS(8913), + [aux_sym_as_type_clause_token2] = ACTIONS(8911), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8911), + [aux_sym_visibility_token1] = ACTIONS(8911), + [aux_sym_visibility_token2] = ACTIONS(8911), + [aux_sym_elseif_fragment_token1] = ACTIONS(8911), + [aux_sym_else_fragment_token1] = ACTIONS(8911), + [aux_sym_select_statement_token1] = ACTIONS(8911), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8911), + [aux_sym__for_header_token1] = ACTIONS(8911), + [aux_sym_do_statement_token1] = ACTIONS(8911), + [aux_sym_do_condition_token1] = ACTIONS(8911), + [aux_sym_with_statement_token1] = ACTIONS(8911), + [aux_sym_exit_statement_token1] = ACTIONS(8911), + [sym_end_statement] = ACTIONS(8913), + [aux_sym_on_goto_statement_token1] = ACTIONS(8911), + [aux_sym_on_goto_statement_token2] = ACTIONS(8911), + [aux_sym_on_error_statement_token2] = ACTIONS(8911), + [sym__ambiguous_redim_statement] = ACTIONS(8913), + [aux_sym_erase_statement_token1] = ACTIONS(8911), + [aux_sym_open_statement_token1] = ACTIONS(8911), + [aux_sym_file_mode_token2] = ACTIONS(8911), + [aux_sym_file_access_token2] = ACTIONS(8911), + [aux_sym_file_lock_token2] = ACTIONS(8911), + [aux_sym_print_statement_token1] = ACTIONS(8911), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_DASH] = ACTIONS(8911), + [anon_sym_QMARK] = ACTIONS(8913), + [aux_sym_close_statement_token1] = ACTIONS(8911), + [aux_sym_put_statement_token1] = ACTIONS(8911), + [aux_sym_unlock_statement_token1] = ACTIONS(8911), + [aux_sym_seek_statement_token1] = ACTIONS(8911), + [sym_reset_statement] = ACTIONS(8911), + [aux_sym_raise_event_statement_token1] = ACTIONS(8911), + [sym_stop_statement] = ACTIONS(8911), + [sym_beep_statement] = ACTIONS(8911), + [aux_sym_unload_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token2] = ACTIONS(8911), + [aux_sym_def_type_statement_token3] = ACTIONS(8911), + [aux_sym_def_type_statement_token4] = ACTIONS(8911), + [aux_sym_def_type_statement_token5] = ACTIONS(8911), + [aux_sym_def_type_statement_token6] = ACTIONS(8911), + [aux_sym_def_type_statement_token7] = ACTIONS(8911), + [aux_sym_def_type_statement_token8] = ACTIONS(8911), + [aux_sym_def_type_statement_token9] = ACTIONS(8911), + [aux_sym_def_type_statement_token10] = ACTIONS(8911), + [aux_sym_def_type_statement_token11] = ACTIONS(8911), + [aux_sym_def_type_statement_token12] = ACTIONS(8911), + [aux_sym_def_type_statement_token13] = ACTIONS(8911), + [aux_sym_def_type_statement_token14] = ACTIONS(8911), + [aux_sym_call_statement_token1] = ACTIONS(8911), + [sym__ambiguous_call_statement] = ACTIONS(8911), + [aux_sym_addressof_expression_token1] = ACTIONS(8911), + [aux_sym_type_of_expression_token1] = ACTIONS(8911), + [aux_sym_unary_expression_token1] = ACTIONS(8911), + [sym_string_literal] = ACTIONS(8913), + [sym_number_literal] = ACTIONS(8913), + [aux_sym_boolean_literal_token1] = ACTIONS(8911), + [aux_sym_boolean_literal_token2] = ACTIONS(8911), + [sym_nothing_literal] = ACTIONS(8911), + [sym_null_literal] = ACTIONS(8911), + [sym_empty_literal] = ACTIONS(8911), + [sym_date_literal] = ACTIONS(8913), + [anon_sym_POUND] = ACTIONS(8911), + }, + [STATE(6197)] = { + [sym_identifier] = ACTIONS(8911), + [sym_newline] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8911), + [aux_sym_frm_property_statement_token1] = ACTIONS(8911), + [anon_sym_DOT] = ACTIONS(8911), + [anon_sym_BANG] = ACTIONS(8913), + [aux_sym__attribute_identifier_token1] = ACTIONS(8911), + [aux_sym_option_statement_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8911), + [aux_sym_preprocessor_const_token1] = ACTIONS(8911), + [sym_static_modifier] = ACTIONS(8911), + [sym__dim_keyword] = ACTIONS(8911), + [sym__redim_keyword] = ACTIONS(8911), + [aux_sym_get_accessor_token1] = ACTIONS(8911), + [aux_sym_set_accessor_token1] = ACTIONS(8911), + [aux_sym_const_declaration_token1] = ACTIONS(8911), + [anon_sym_LPAREN] = ACTIONS(8913), + [aux_sym_as_type_clause_token2] = ACTIONS(8911), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8911), + [aux_sym_visibility_token1] = ACTIONS(8911), + [aux_sym_visibility_token2] = ACTIONS(8911), + [aux_sym_elseif_fragment_token1] = ACTIONS(8911), + [aux_sym_else_fragment_token1] = ACTIONS(8911), + [aux_sym_select_statement_token1] = ACTIONS(8911), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8911), + [aux_sym__for_header_token1] = ACTIONS(8911), + [aux_sym_do_statement_token1] = ACTIONS(8911), + [aux_sym_do_statement_token2] = ACTIONS(8911), + [aux_sym_do_condition_token1] = ACTIONS(8911), + [aux_sym_with_statement_token1] = ACTIONS(8911), + [aux_sym_exit_statement_token1] = ACTIONS(8911), + [sym_end_statement] = ACTIONS(8913), + [aux_sym_on_goto_statement_token1] = ACTIONS(8911), + [aux_sym_on_goto_statement_token2] = ACTIONS(8911), + [aux_sym_on_error_statement_token2] = ACTIONS(8911), + [sym__ambiguous_redim_statement] = ACTIONS(8913), + [aux_sym_erase_statement_token1] = ACTIONS(8911), + [aux_sym_open_statement_token1] = ACTIONS(8911), + [aux_sym_file_mode_token2] = ACTIONS(8911), + [aux_sym_file_access_token2] = ACTIONS(8911), + [aux_sym_file_lock_token2] = ACTIONS(8911), + [aux_sym_print_statement_token1] = ACTIONS(8911), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_DASH] = ACTIONS(8911), + [anon_sym_QMARK] = ACTIONS(8913), + [aux_sym_close_statement_token1] = ACTIONS(8911), + [aux_sym_put_statement_token1] = ACTIONS(8911), + [aux_sym_unlock_statement_token1] = ACTIONS(8911), + [aux_sym_seek_statement_token1] = ACTIONS(8911), + [sym_reset_statement] = ACTIONS(8911), + [aux_sym_raise_event_statement_token1] = ACTIONS(8911), + [sym_stop_statement] = ACTIONS(8911), + [sym_beep_statement] = ACTIONS(8911), + [aux_sym_unload_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token2] = ACTIONS(8911), + [aux_sym_def_type_statement_token3] = ACTIONS(8911), + [aux_sym_def_type_statement_token4] = ACTIONS(8911), + [aux_sym_def_type_statement_token5] = ACTIONS(8911), + [aux_sym_def_type_statement_token6] = ACTIONS(8911), + [aux_sym_def_type_statement_token7] = ACTIONS(8911), + [aux_sym_def_type_statement_token8] = ACTIONS(8911), + [aux_sym_def_type_statement_token9] = ACTIONS(8911), + [aux_sym_def_type_statement_token10] = ACTIONS(8911), + [aux_sym_def_type_statement_token11] = ACTIONS(8911), + [aux_sym_def_type_statement_token12] = ACTIONS(8911), + [aux_sym_def_type_statement_token13] = ACTIONS(8911), + [aux_sym_def_type_statement_token14] = ACTIONS(8911), + [aux_sym_call_statement_token1] = ACTIONS(8911), + [sym__ambiguous_call_statement] = ACTIONS(8911), + [aux_sym_addressof_expression_token1] = ACTIONS(8911), + [aux_sym_type_of_expression_token1] = ACTIONS(8911), + [aux_sym_unary_expression_token1] = ACTIONS(8911), + [sym_string_literal] = ACTIONS(8913), + [sym_number_literal] = ACTIONS(8913), + [aux_sym_boolean_literal_token1] = ACTIONS(8911), + [aux_sym_boolean_literal_token2] = ACTIONS(8911), + [sym_nothing_literal] = ACTIONS(8911), + [sym_null_literal] = ACTIONS(8911), + [sym_empty_literal] = ACTIONS(8911), + [sym_date_literal] = ACTIONS(8913), + [anon_sym_POUND] = ACTIONS(8911), + }, + [STATE(6198)] = { + [sym_identifier] = ACTIONS(8745), + [sym_newline] = ACTIONS(8747), + [anon_sym_COLON] = ACTIONS(8747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8745), + [aux_sym_frm_property_statement_token1] = ACTIONS(8745), + [anon_sym_DOT] = ACTIONS(8745), + [anon_sym_BANG] = ACTIONS(8747), + [aux_sym__attribute_identifier_token1] = ACTIONS(8745), + [aux_sym_option_statement_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8745), + [aux_sym_preprocessor_const_token1] = ACTIONS(8745), + [sym_static_modifier] = ACTIONS(8745), + [sym__dim_keyword] = ACTIONS(8745), + [sym__redim_keyword] = ACTIONS(8745), + [aux_sym_get_accessor_token1] = ACTIONS(8745), + [aux_sym_set_accessor_token1] = ACTIONS(8745), + [aux_sym_const_declaration_token1] = ACTIONS(8745), + [anon_sym_LPAREN] = ACTIONS(8747), + [aux_sym_as_type_clause_token2] = ACTIONS(8745), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8745), + [aux_sym_visibility_token1] = ACTIONS(8745), + [aux_sym_visibility_token2] = ACTIONS(8745), + [aux_sym_elseif_fragment_token1] = ACTIONS(8745), + [aux_sym_else_fragment_token1] = ACTIONS(8745), + [aux_sym_select_statement_token1] = ACTIONS(8745), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8745), + [aux_sym__for_header_token1] = ACTIONS(8745), + [aux_sym_do_statement_token1] = ACTIONS(8745), + [aux_sym_do_statement_token2] = ACTIONS(8745), + [aux_sym_do_condition_token1] = ACTIONS(8745), + [aux_sym_with_statement_token1] = ACTIONS(8745), + [aux_sym_exit_statement_token1] = ACTIONS(8745), + [sym_end_statement] = ACTIONS(8747), + [aux_sym_on_goto_statement_token1] = ACTIONS(8745), + [aux_sym_on_goto_statement_token2] = ACTIONS(8745), + [aux_sym_on_error_statement_token2] = ACTIONS(8745), + [sym__ambiguous_redim_statement] = ACTIONS(8747), + [aux_sym_erase_statement_token1] = ACTIONS(8745), + [aux_sym_open_statement_token1] = ACTIONS(8745), + [aux_sym_file_mode_token2] = ACTIONS(8745), + [aux_sym_file_access_token2] = ACTIONS(8745), + [aux_sym_file_lock_token2] = ACTIONS(8745), + [aux_sym_print_statement_token1] = ACTIONS(8745), + [anon_sym_PLUS] = ACTIONS(8747), + [anon_sym_DASH] = ACTIONS(8745), + [anon_sym_QMARK] = ACTIONS(8747), + [aux_sym_close_statement_token1] = ACTIONS(8745), + [aux_sym_put_statement_token1] = ACTIONS(8745), + [aux_sym_unlock_statement_token1] = ACTIONS(8745), + [aux_sym_seek_statement_token1] = ACTIONS(8745), + [sym_reset_statement] = ACTIONS(8745), + [aux_sym_raise_event_statement_token1] = ACTIONS(8745), + [sym_stop_statement] = ACTIONS(8745), + [sym_beep_statement] = ACTIONS(8745), + [aux_sym_unload_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token2] = ACTIONS(8745), + [aux_sym_def_type_statement_token3] = ACTIONS(8745), + [aux_sym_def_type_statement_token4] = ACTIONS(8745), + [aux_sym_def_type_statement_token5] = ACTIONS(8745), + [aux_sym_def_type_statement_token6] = ACTIONS(8745), + [aux_sym_def_type_statement_token7] = ACTIONS(8745), + [aux_sym_def_type_statement_token8] = ACTIONS(8745), + [aux_sym_def_type_statement_token9] = ACTIONS(8745), + [aux_sym_def_type_statement_token10] = ACTIONS(8745), + [aux_sym_def_type_statement_token11] = ACTIONS(8745), + [aux_sym_def_type_statement_token12] = ACTIONS(8745), + [aux_sym_def_type_statement_token13] = ACTIONS(8745), + [aux_sym_def_type_statement_token14] = ACTIONS(8745), + [aux_sym_call_statement_token1] = ACTIONS(8745), + [sym__ambiguous_call_statement] = ACTIONS(8745), + [aux_sym_addressof_expression_token1] = ACTIONS(8745), + [aux_sym_type_of_expression_token1] = ACTIONS(8745), + [aux_sym_unary_expression_token1] = ACTIONS(8745), + [sym_string_literal] = ACTIONS(8747), + [sym_number_literal] = ACTIONS(8747), + [aux_sym_boolean_literal_token1] = ACTIONS(8745), + [aux_sym_boolean_literal_token2] = ACTIONS(8745), + [sym_nothing_literal] = ACTIONS(8745), + [sym_null_literal] = ACTIONS(8745), + [sym_empty_literal] = ACTIONS(8745), + [sym_date_literal] = ACTIONS(8747), + [anon_sym_POUND] = ACTIONS(8745), + }, + [STATE(6199)] = { + [sym_identifier] = ACTIONS(8865), + [sym_newline] = ACTIONS(8867), + [anon_sym_COLON] = ACTIONS(8867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8865), + [aux_sym_frm_property_statement_token1] = ACTIONS(8865), + [anon_sym_DOT] = ACTIONS(8865), + [anon_sym_BANG] = ACTIONS(8867), + [aux_sym__attribute_identifier_token1] = ACTIONS(8865), + [aux_sym_option_statement_token3] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8865), + [aux_sym_preprocessor_const_token1] = ACTIONS(8865), + [sym_static_modifier] = ACTIONS(8865), + [sym__dim_keyword] = ACTIONS(8865), + [sym__redim_keyword] = ACTIONS(8865), + [aux_sym_get_accessor_token1] = ACTIONS(8865), + [aux_sym_set_accessor_token1] = ACTIONS(8865), + [anon_sym_COMMA] = ACTIONS(8867), + [aux_sym_const_declaration_token1] = ACTIONS(8865), + [anon_sym_LPAREN] = ACTIONS(8867), + [aux_sym_as_type_clause_token2] = ACTIONS(8865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8865), + [aux_sym_visibility_token1] = ACTIONS(8865), + [aux_sym_visibility_token2] = ACTIONS(8865), + [aux_sym_elseif_fragment_token1] = ACTIONS(8865), + [aux_sym_else_fragment_token1] = ACTIONS(8865), + [aux_sym_select_statement_token1] = ACTIONS(8865), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8865), + [aux_sym__for_header_token1] = ACTIONS(8865), + [aux_sym_do_statement_token1] = ACTIONS(8865), + [aux_sym_do_condition_token1] = ACTIONS(8865), + [aux_sym_with_statement_token1] = ACTIONS(8865), + [aux_sym_exit_statement_token1] = ACTIONS(8865), + [sym_end_statement] = ACTIONS(8867), + [aux_sym_on_goto_statement_token1] = ACTIONS(8865), + [aux_sym_on_goto_statement_token2] = ACTIONS(8865), + [aux_sym_on_error_statement_token2] = ACTIONS(8865), + [sym__ambiguous_redim_statement] = ACTIONS(8867), + [aux_sym_erase_statement_token1] = ACTIONS(8865), + [aux_sym_open_statement_token1] = ACTIONS(8865), + [aux_sym_file_mode_token2] = ACTIONS(8865), + [aux_sym_file_access_token2] = ACTIONS(8865), + [aux_sym_file_lock_token2] = ACTIONS(8865), + [aux_sym_print_statement_token1] = ACTIONS(8865), + [anon_sym_PLUS] = ACTIONS(8867), + [anon_sym_DASH] = ACTIONS(8865), + [anon_sym_QMARK] = ACTIONS(8867), + [aux_sym_close_statement_token1] = ACTIONS(8865), + [aux_sym_put_statement_token1] = ACTIONS(8865), + [aux_sym_unlock_statement_token1] = ACTIONS(8865), + [aux_sym_seek_statement_token1] = ACTIONS(8865), + [sym_reset_statement] = ACTIONS(8865), + [aux_sym_raise_event_statement_token1] = ACTIONS(8865), + [sym_stop_statement] = ACTIONS(8865), + [sym_beep_statement] = ACTIONS(8865), + [aux_sym_unload_statement_token1] = ACTIONS(8865), + [aux_sym_def_type_statement_token1] = ACTIONS(8865), + [aux_sym_def_type_statement_token2] = ACTIONS(8865), + [aux_sym_def_type_statement_token3] = ACTIONS(8865), + [aux_sym_def_type_statement_token4] = ACTIONS(8865), + [aux_sym_def_type_statement_token5] = ACTIONS(8865), + [aux_sym_def_type_statement_token6] = ACTIONS(8865), + [aux_sym_def_type_statement_token7] = ACTIONS(8865), + [aux_sym_def_type_statement_token8] = ACTIONS(8865), + [aux_sym_def_type_statement_token9] = ACTIONS(8865), + [aux_sym_def_type_statement_token10] = ACTIONS(8865), + [aux_sym_def_type_statement_token11] = ACTIONS(8865), + [aux_sym_def_type_statement_token12] = ACTIONS(8865), + [aux_sym_def_type_statement_token13] = ACTIONS(8865), + [aux_sym_def_type_statement_token14] = ACTIONS(8865), + [aux_sym_call_statement_token1] = ACTIONS(8865), + [sym__ambiguous_call_statement] = ACTIONS(8865), + [aux_sym_addressof_expression_token1] = ACTIONS(8865), + [aux_sym_type_of_expression_token1] = ACTIONS(8865), + [aux_sym_unary_expression_token1] = ACTIONS(8865), + [sym_string_literal] = ACTIONS(8867), + [sym_number_literal] = ACTIONS(8867), + [aux_sym_boolean_literal_token1] = ACTIONS(8865), + [aux_sym_boolean_literal_token2] = ACTIONS(8865), + [sym_nothing_literal] = ACTIONS(8865), + [sym_null_literal] = ACTIONS(8865), + [sym_empty_literal] = ACTIONS(8865), + [sym_date_literal] = ACTIONS(8867), + [anon_sym_POUND] = ACTIONS(8865), + }, + [STATE(6200)] = { + [sym_identifier] = ACTIONS(8847), + [sym_newline] = ACTIONS(8849), + [anon_sym_COLON] = ACTIONS(8849), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8847), + [aux_sym_frm_property_statement_token1] = ACTIONS(8847), + [anon_sym_DOT] = ACTIONS(8847), + [anon_sym_BANG] = ACTIONS(8849), + [aux_sym__attribute_identifier_token1] = ACTIONS(8847), + [aux_sym_option_statement_token3] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8847), + [aux_sym_preprocessor_const_token1] = ACTIONS(8847), + [sym_static_modifier] = ACTIONS(8847), + [sym__dim_keyword] = ACTIONS(8847), + [sym__redim_keyword] = ACTIONS(8847), + [aux_sym_get_accessor_token1] = ACTIONS(8847), + [aux_sym_set_accessor_token1] = ACTIONS(8847), + [anon_sym_COMMA] = ACTIONS(8849), + [aux_sym_const_declaration_token1] = ACTIONS(8847), + [anon_sym_LPAREN] = ACTIONS(8849), + [aux_sym_as_type_clause_token2] = ACTIONS(8847), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8847), + [aux_sym_visibility_token1] = ACTIONS(8847), + [aux_sym_visibility_token2] = ACTIONS(8847), + [aux_sym_elseif_fragment_token1] = ACTIONS(8847), + [aux_sym_else_fragment_token1] = ACTIONS(8847), + [aux_sym_select_statement_token1] = ACTIONS(8847), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8847), + [aux_sym__for_header_token1] = ACTIONS(8847), + [aux_sym_do_statement_token1] = ACTIONS(8847), + [aux_sym_do_condition_token1] = ACTIONS(8847), + [aux_sym_with_statement_token1] = ACTIONS(8847), + [aux_sym_exit_statement_token1] = ACTIONS(8847), + [sym_end_statement] = ACTIONS(8849), + [aux_sym_on_goto_statement_token1] = ACTIONS(8847), + [aux_sym_on_goto_statement_token2] = ACTIONS(8847), + [aux_sym_on_error_statement_token2] = ACTIONS(8847), + [sym__ambiguous_redim_statement] = ACTIONS(8849), + [aux_sym_erase_statement_token1] = ACTIONS(8847), + [aux_sym_open_statement_token1] = ACTIONS(8847), + [aux_sym_file_mode_token2] = ACTIONS(8847), + [aux_sym_file_access_token2] = ACTIONS(8847), + [aux_sym_file_lock_token2] = ACTIONS(8847), + [aux_sym_print_statement_token1] = ACTIONS(8847), + [anon_sym_PLUS] = ACTIONS(8849), + [anon_sym_DASH] = ACTIONS(11045), + [anon_sym_QMARK] = ACTIONS(8849), + [aux_sym_close_statement_token1] = ACTIONS(8847), + [aux_sym_put_statement_token1] = ACTIONS(8847), + [aux_sym_unlock_statement_token1] = ACTIONS(8847), + [aux_sym_seek_statement_token1] = ACTIONS(8847), + [sym_reset_statement] = ACTIONS(8847), + [aux_sym_raise_event_statement_token1] = ACTIONS(8847), + [sym_stop_statement] = ACTIONS(8847), + [sym_beep_statement] = ACTIONS(8847), + [aux_sym_unload_statement_token1] = ACTIONS(8847), + [aux_sym_def_type_statement_token1] = ACTIONS(8847), + [aux_sym_def_type_statement_token2] = ACTIONS(8847), + [aux_sym_def_type_statement_token3] = ACTIONS(8847), + [aux_sym_def_type_statement_token4] = ACTIONS(8847), + [aux_sym_def_type_statement_token5] = ACTIONS(8847), + [aux_sym_def_type_statement_token6] = ACTIONS(8847), + [aux_sym_def_type_statement_token7] = ACTIONS(8847), + [aux_sym_def_type_statement_token8] = ACTIONS(8847), + [aux_sym_def_type_statement_token9] = ACTIONS(8847), + [aux_sym_def_type_statement_token10] = ACTIONS(8847), + [aux_sym_def_type_statement_token11] = ACTIONS(8847), + [aux_sym_def_type_statement_token12] = ACTIONS(8847), + [aux_sym_def_type_statement_token13] = ACTIONS(8847), + [aux_sym_def_type_statement_token14] = ACTIONS(8847), + [aux_sym_call_statement_token1] = ACTIONS(8847), + [sym__ambiguous_call_statement] = ACTIONS(8847), + [aux_sym_addressof_expression_token1] = ACTIONS(8847), + [aux_sym_type_of_expression_token1] = ACTIONS(8847), + [aux_sym_unary_expression_token1] = ACTIONS(8847), + [sym_string_literal] = ACTIONS(8849), + [sym_number_literal] = ACTIONS(8849), + [aux_sym_boolean_literal_token1] = ACTIONS(8847), + [aux_sym_boolean_literal_token2] = ACTIONS(8847), + [sym_nothing_literal] = ACTIONS(8847), + [sym_null_literal] = ACTIONS(8847), + [sym_empty_literal] = ACTIONS(8847), + [sym_date_literal] = ACTIONS(8849), + [anon_sym_POUND] = ACTIONS(8847), + }, + [STATE(6201)] = { + [sym_identifier] = ACTIONS(8723), + [sym_newline] = ACTIONS(8725), + [anon_sym_COLON] = ACTIONS(8725), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8723), + [aux_sym_frm_property_statement_token1] = ACTIONS(8723), + [anon_sym_DOT] = ACTIONS(8723), + [anon_sym_BANG] = ACTIONS(8725), + [aux_sym__attribute_identifier_token1] = ACTIONS(8723), + [aux_sym_option_statement_token3] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8723), + [aux_sym_preprocessor_const_token1] = ACTIONS(8723), + [sym_static_modifier] = ACTIONS(8723), + [sym__dim_keyword] = ACTIONS(8723), + [sym__redim_keyword] = ACTIONS(8723), + [aux_sym_get_accessor_token1] = ACTIONS(8723), + [aux_sym_set_accessor_token1] = ACTIONS(8723), + [aux_sym_const_declaration_token1] = ACTIONS(8723), + [anon_sym_LPAREN] = ACTIONS(8725), + [aux_sym_as_type_clause_token2] = ACTIONS(8723), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8723), + [aux_sym_visibility_token1] = ACTIONS(8723), + [aux_sym_visibility_token2] = ACTIONS(8723), + [aux_sym_elseif_fragment_token1] = ACTIONS(8723), + [aux_sym_else_fragment_token1] = ACTIONS(8723), + [aux_sym_select_statement_token1] = ACTIONS(8723), + [aux_sym__for_header_token1] = ACTIONS(8723), + [aux_sym_do_statement_token1] = ACTIONS(8723), + [aux_sym_do_condition_token1] = ACTIONS(8723), + [aux_sym_while_statement_token1] = ACTIONS(8723), + [aux_sym_with_statement_token1] = ACTIONS(8723), + [aux_sym_exit_statement_token1] = ACTIONS(8723), + [sym_end_statement] = ACTIONS(8725), + [aux_sym_on_goto_statement_token1] = ACTIONS(8723), + [aux_sym_on_goto_statement_token2] = ACTIONS(8723), + [aux_sym_on_error_statement_token2] = ACTIONS(8723), + [sym__ambiguous_redim_statement] = ACTIONS(8725), + [aux_sym_erase_statement_token1] = ACTIONS(8723), + [aux_sym_open_statement_token1] = ACTIONS(8723), + [aux_sym_open_statement_token3] = ACTIONS(11047), + [aux_sym_file_mode_token2] = ACTIONS(8723), + [aux_sym_file_access_token2] = ACTIONS(8723), + [aux_sym_file_lock_token2] = ACTIONS(8723), + [aux_sym_print_statement_token1] = ACTIONS(8723), + [anon_sym_PLUS] = ACTIONS(8725), + [anon_sym_DASH] = ACTIONS(8723), + [anon_sym_QMARK] = ACTIONS(8725), + [aux_sym_close_statement_token1] = ACTIONS(8723), + [aux_sym_put_statement_token1] = ACTIONS(8723), + [aux_sym_unlock_statement_token1] = ACTIONS(8723), + [aux_sym_seek_statement_token1] = ACTIONS(8723), + [sym_reset_statement] = ACTIONS(8723), + [aux_sym_raise_event_statement_token1] = ACTIONS(8723), + [sym_stop_statement] = ACTIONS(8723), + [sym_beep_statement] = ACTIONS(8723), + [aux_sym_unload_statement_token1] = ACTIONS(8723), + [aux_sym_def_type_statement_token1] = ACTIONS(8723), + [aux_sym_def_type_statement_token2] = ACTIONS(8723), + [aux_sym_def_type_statement_token3] = ACTIONS(8723), + [aux_sym_def_type_statement_token4] = ACTIONS(8723), + [aux_sym_def_type_statement_token5] = ACTIONS(8723), + [aux_sym_def_type_statement_token6] = ACTIONS(8723), + [aux_sym_def_type_statement_token7] = ACTIONS(8723), + [aux_sym_def_type_statement_token8] = ACTIONS(8723), + [aux_sym_def_type_statement_token9] = ACTIONS(8723), + [aux_sym_def_type_statement_token10] = ACTIONS(8723), + [aux_sym_def_type_statement_token11] = ACTIONS(8723), + [aux_sym_def_type_statement_token12] = ACTIONS(8723), + [aux_sym_def_type_statement_token13] = ACTIONS(8723), + [aux_sym_def_type_statement_token14] = ACTIONS(8723), + [aux_sym_call_statement_token1] = ACTIONS(8723), + [sym__ambiguous_call_statement] = ACTIONS(8723), + [aux_sym_addressof_expression_token1] = ACTIONS(8723), + [aux_sym_type_of_expression_token1] = ACTIONS(8723), + [aux_sym_unary_expression_token1] = ACTIONS(8723), + [sym_string_literal] = ACTIONS(8725), + [sym_number_literal] = ACTIONS(8725), + [aux_sym_boolean_literal_token1] = ACTIONS(8723), + [aux_sym_boolean_literal_token2] = ACTIONS(8723), + [sym_nothing_literal] = ACTIONS(8723), + [sym_null_literal] = ACTIONS(8723), + [sym_empty_literal] = ACTIONS(8723), + [sym_date_literal] = ACTIONS(8725), + [anon_sym_POUND] = ACTIONS(8723), + }, + [STATE(6202)] = { + [sym_identifier] = ACTIONS(8847), + [sym_newline] = ACTIONS(8849), + [anon_sym_COLON] = ACTIONS(8849), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8847), + [aux_sym_frm_property_statement_token1] = ACTIONS(8847), + [anon_sym_DOT] = ACTIONS(8847), + [anon_sym_BANG] = ACTIONS(8849), + [aux_sym__attribute_identifier_token1] = ACTIONS(8847), + [aux_sym_option_statement_token3] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8847), + [aux_sym_preprocessor_const_token1] = ACTIONS(8847), + [sym_static_modifier] = ACTIONS(8847), + [sym__dim_keyword] = ACTIONS(8847), + [sym__redim_keyword] = ACTIONS(8847), + [aux_sym_get_accessor_token1] = ACTIONS(8847), + [aux_sym_set_accessor_token1] = ACTIONS(8847), + [anon_sym_COMMA] = ACTIONS(8849), + [aux_sym_const_declaration_token1] = ACTIONS(8847), + [anon_sym_LPAREN] = ACTIONS(8849), + [aux_sym_as_type_clause_token2] = ACTIONS(8847), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8847), + [aux_sym_visibility_token1] = ACTIONS(8847), + [aux_sym_visibility_token2] = ACTIONS(8847), + [aux_sym_elseif_fragment_token1] = ACTIONS(8847), + [aux_sym_else_fragment_token1] = ACTIONS(8847), + [aux_sym_select_statement_token1] = ACTIONS(8847), + [aux_sym__for_header_token1] = ACTIONS(8847), + [aux_sym_do_statement_token1] = ACTIONS(8847), + [aux_sym_do_statement_token2] = ACTIONS(8847), + [aux_sym_do_condition_token1] = ACTIONS(8847), + [aux_sym_with_statement_token1] = ACTIONS(8847), + [aux_sym_exit_statement_token1] = ACTIONS(8847), + [sym_end_statement] = ACTIONS(8849), + [aux_sym_on_goto_statement_token1] = ACTIONS(8847), + [aux_sym_on_goto_statement_token2] = ACTIONS(8847), + [aux_sym_on_error_statement_token2] = ACTIONS(8847), + [sym__ambiguous_redim_statement] = ACTIONS(8849), + [aux_sym_erase_statement_token1] = ACTIONS(8847), + [aux_sym_open_statement_token1] = ACTIONS(8847), + [aux_sym_file_mode_token2] = ACTIONS(8847), + [aux_sym_file_access_token2] = ACTIONS(8847), + [aux_sym_file_lock_token2] = ACTIONS(8847), + [aux_sym_print_statement_token1] = ACTIONS(8847), + [anon_sym_PLUS] = ACTIONS(8849), + [anon_sym_DASH] = ACTIONS(11049), + [anon_sym_QMARK] = ACTIONS(8849), + [aux_sym_close_statement_token1] = ACTIONS(8847), + [aux_sym_put_statement_token1] = ACTIONS(8847), + [aux_sym_unlock_statement_token1] = ACTIONS(8847), + [aux_sym_seek_statement_token1] = ACTIONS(8847), + [sym_reset_statement] = ACTIONS(8847), + [aux_sym_raise_event_statement_token1] = ACTIONS(8847), + [sym_stop_statement] = ACTIONS(8847), + [sym_beep_statement] = ACTIONS(8847), + [aux_sym_unload_statement_token1] = ACTIONS(8847), + [aux_sym_def_type_statement_token1] = ACTIONS(8847), + [aux_sym_def_type_statement_token2] = ACTIONS(8847), + [aux_sym_def_type_statement_token3] = ACTIONS(8847), + [aux_sym_def_type_statement_token4] = ACTIONS(8847), + [aux_sym_def_type_statement_token5] = ACTIONS(8847), + [aux_sym_def_type_statement_token6] = ACTIONS(8847), + [aux_sym_def_type_statement_token7] = ACTIONS(8847), + [aux_sym_def_type_statement_token8] = ACTIONS(8847), + [aux_sym_def_type_statement_token9] = ACTIONS(8847), + [aux_sym_def_type_statement_token10] = ACTIONS(8847), + [aux_sym_def_type_statement_token11] = ACTIONS(8847), + [aux_sym_def_type_statement_token12] = ACTIONS(8847), + [aux_sym_def_type_statement_token13] = ACTIONS(8847), + [aux_sym_def_type_statement_token14] = ACTIONS(8847), + [aux_sym_call_statement_token1] = ACTIONS(8847), + [sym__ambiguous_call_statement] = ACTIONS(8847), + [aux_sym_addressof_expression_token1] = ACTIONS(8847), + [aux_sym_type_of_expression_token1] = ACTIONS(8847), + [aux_sym_unary_expression_token1] = ACTIONS(8847), + [sym_string_literal] = ACTIONS(8849), + [sym_number_literal] = ACTIONS(8849), + [aux_sym_boolean_literal_token1] = ACTIONS(8847), + [aux_sym_boolean_literal_token2] = ACTIONS(8847), + [sym_nothing_literal] = ACTIONS(8847), + [sym_null_literal] = ACTIONS(8847), + [sym_empty_literal] = ACTIONS(8847), + [sym_date_literal] = ACTIONS(8849), + [anon_sym_POUND] = ACTIONS(8847), + }, + [STATE(6203)] = { + [sym_identifier] = ACTIONS(8766), + [sym_newline] = ACTIONS(8768), + [anon_sym_COLON] = ACTIONS(8768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8766), + [aux_sym_frm_property_statement_token1] = ACTIONS(8766), + [anon_sym_DOT] = ACTIONS(8766), + [anon_sym_BANG] = ACTIONS(8768), + [aux_sym__attribute_identifier_token1] = ACTIONS(8766), + [aux_sym_option_statement_token3] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8766), + [aux_sym_preprocessor_const_token1] = ACTIONS(8766), + [sym_static_modifier] = ACTIONS(8766), + [sym__dim_keyword] = ACTIONS(8766), + [sym__redim_keyword] = ACTIONS(8766), + [aux_sym_get_accessor_token1] = ACTIONS(8766), + [aux_sym_set_accessor_token1] = ACTIONS(8766), + [anon_sym_COMMA] = ACTIONS(11051), + [aux_sym_const_declaration_token1] = ACTIONS(8766), + [anon_sym_LPAREN] = ACTIONS(8768), + [aux_sym_as_type_clause_token2] = ACTIONS(8766), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8766), + [aux_sym_visibility_token1] = ACTIONS(8766), + [aux_sym_visibility_token2] = ACTIONS(8766), + [aux_sym_elseif_fragment_token1] = ACTIONS(8766), + [aux_sym_else_fragment_token1] = ACTIONS(8766), + [aux_sym_select_statement_token1] = ACTIONS(8766), + [aux_sym__for_header_token1] = ACTIONS(8766), + [aux_sym_do_statement_token1] = ACTIONS(8766), + [aux_sym_do_condition_token1] = ACTIONS(8766), + [aux_sym_while_statement_token1] = ACTIONS(8766), + [aux_sym_with_statement_token1] = ACTIONS(8766), + [aux_sym_exit_statement_token1] = ACTIONS(8766), + [sym_end_statement] = ACTIONS(8768), + [aux_sym_on_goto_statement_token1] = ACTIONS(8766), + [aux_sym_on_goto_statement_token2] = ACTIONS(8766), + [aux_sym_on_error_statement_token2] = ACTIONS(8766), + [sym__ambiguous_redim_statement] = ACTIONS(8768), + [aux_sym_erase_statement_token1] = ACTIONS(8766), + [aux_sym_open_statement_token1] = ACTIONS(8766), + [aux_sym_file_mode_token2] = ACTIONS(8766), + [aux_sym_file_access_token2] = ACTIONS(8766), + [aux_sym_file_lock_token2] = ACTIONS(8766), + [aux_sym_print_statement_token1] = ACTIONS(8766), + [anon_sym_PLUS] = ACTIONS(8768), + [anon_sym_DASH] = ACTIONS(8766), + [anon_sym_QMARK] = ACTIONS(8768), + [aux_sym_close_statement_token1] = ACTIONS(8766), + [aux_sym_put_statement_token1] = ACTIONS(8766), + [aux_sym_unlock_statement_token1] = ACTIONS(8766), + [aux_sym_seek_statement_token1] = ACTIONS(8766), + [sym_reset_statement] = ACTIONS(8766), + [aux_sym_raise_event_statement_token1] = ACTIONS(8766), + [sym_stop_statement] = ACTIONS(8766), + [sym_beep_statement] = ACTIONS(8766), + [aux_sym_unload_statement_token1] = ACTIONS(8766), + [aux_sym_def_type_statement_token1] = ACTIONS(8766), + [aux_sym_def_type_statement_token2] = ACTIONS(8766), + [aux_sym_def_type_statement_token3] = ACTIONS(8766), + [aux_sym_def_type_statement_token4] = ACTIONS(8766), + [aux_sym_def_type_statement_token5] = ACTIONS(8766), + [aux_sym_def_type_statement_token6] = ACTIONS(8766), + [aux_sym_def_type_statement_token7] = ACTIONS(8766), + [aux_sym_def_type_statement_token8] = ACTIONS(8766), + [aux_sym_def_type_statement_token9] = ACTIONS(8766), + [aux_sym_def_type_statement_token10] = ACTIONS(8766), + [aux_sym_def_type_statement_token11] = ACTIONS(8766), + [aux_sym_def_type_statement_token12] = ACTIONS(8766), + [aux_sym_def_type_statement_token13] = ACTIONS(8766), + [aux_sym_def_type_statement_token14] = ACTIONS(8766), + [aux_sym_call_statement_token1] = ACTIONS(8766), + [sym__ambiguous_call_statement] = ACTIONS(8766), + [aux_sym_addressof_expression_token1] = ACTIONS(8766), + [aux_sym_type_of_expression_token1] = ACTIONS(8766), + [aux_sym_unary_expression_token1] = ACTIONS(8766), + [sym_string_literal] = ACTIONS(8768), + [sym_number_literal] = ACTIONS(8768), + [aux_sym_boolean_literal_token1] = ACTIONS(8766), + [aux_sym_boolean_literal_token2] = ACTIONS(8766), + [sym_nothing_literal] = ACTIONS(8766), + [sym_null_literal] = ACTIONS(8766), + [sym_empty_literal] = ACTIONS(8766), + [sym_date_literal] = ACTIONS(8768), + [anon_sym_POUND] = ACTIONS(8766), + }, + [STATE(6204)] = { + [sym_do_condition] = STATE(7270), + [sym_identifier] = ACTIONS(8192), + [sym_newline] = ACTIONS(8194), + [anon_sym_COLON] = ACTIONS(8194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8192), + [aux_sym_frm_property_statement_token1] = ACTIONS(8192), + [anon_sym_DOT] = ACTIONS(8192), + [anon_sym_BANG] = ACTIONS(8194), + [aux_sym__attribute_identifier_token1] = ACTIONS(8192), + [aux_sym_option_statement_token3] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8192), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8192), + [aux_sym_preprocessor_const_token1] = ACTIONS(8192), + [sym_static_modifier] = ACTIONS(8192), + [sym__dim_keyword] = ACTIONS(8192), + [sym__redim_keyword] = ACTIONS(8192), + [aux_sym_get_accessor_token1] = ACTIONS(8192), + [aux_sym_set_accessor_token1] = ACTIONS(8192), + [aux_sym_const_declaration_token1] = ACTIONS(8192), + [anon_sym_LPAREN] = ACTIONS(8194), + [aux_sym_as_type_clause_token2] = ACTIONS(8192), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8192), + [aux_sym_visibility_token1] = ACTIONS(8192), + [aux_sym_visibility_token2] = ACTIONS(8192), + [aux_sym_elseif_fragment_token1] = ACTIONS(8192), + [aux_sym_else_fragment_token1] = ACTIONS(8192), + [aux_sym_select_statement_token1] = ACTIONS(8192), + [aux_sym__for_header_token1] = ACTIONS(8192), + [aux_sym_do_statement_token1] = ACTIONS(8192), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8192), + [aux_sym_exit_statement_token1] = ACTIONS(8192), + [sym_end_statement] = ACTIONS(8194), + [aux_sym_on_goto_statement_token1] = ACTIONS(8192), + [aux_sym_on_goto_statement_token2] = ACTIONS(8192), + [aux_sym_on_error_statement_token2] = ACTIONS(8192), + [sym__ambiguous_redim_statement] = ACTIONS(8194), + [aux_sym_erase_statement_token1] = ACTIONS(8192), + [aux_sym_open_statement_token1] = ACTIONS(8192), + [aux_sym_file_mode_token2] = ACTIONS(8192), + [aux_sym_file_access_token2] = ACTIONS(8192), + [aux_sym_file_lock_token2] = ACTIONS(8192), + [aux_sym_print_statement_token1] = ACTIONS(8192), + [anon_sym_PLUS] = ACTIONS(8194), + [anon_sym_DASH] = ACTIONS(8192), + [anon_sym_QMARK] = ACTIONS(8194), + [aux_sym_close_statement_token1] = ACTIONS(8192), + [aux_sym_put_statement_token1] = ACTIONS(8192), + [aux_sym_unlock_statement_token1] = ACTIONS(8192), + [aux_sym_seek_statement_token1] = ACTIONS(8192), + [sym_reset_statement] = ACTIONS(8192), + [aux_sym_raise_event_statement_token1] = ACTIONS(8192), + [sym_stop_statement] = ACTIONS(8192), + [sym_beep_statement] = ACTIONS(8192), + [aux_sym_unload_statement_token1] = ACTIONS(8192), + [aux_sym_def_type_statement_token1] = ACTIONS(8192), + [aux_sym_def_type_statement_token2] = ACTIONS(8192), + [aux_sym_def_type_statement_token3] = ACTIONS(8192), + [aux_sym_def_type_statement_token4] = ACTIONS(8192), + [aux_sym_def_type_statement_token5] = ACTIONS(8192), + [aux_sym_def_type_statement_token6] = ACTIONS(8192), + [aux_sym_def_type_statement_token7] = ACTIONS(8192), + [aux_sym_def_type_statement_token8] = ACTIONS(8192), + [aux_sym_def_type_statement_token9] = ACTIONS(8192), + [aux_sym_def_type_statement_token10] = ACTIONS(8192), + [aux_sym_def_type_statement_token11] = ACTIONS(8192), + [aux_sym_def_type_statement_token12] = ACTIONS(8192), + [aux_sym_def_type_statement_token13] = ACTIONS(8192), + [aux_sym_def_type_statement_token14] = ACTIONS(8192), + [aux_sym_call_statement_token1] = ACTIONS(8192), + [sym__ambiguous_call_statement] = ACTIONS(8192), + [aux_sym_addressof_expression_token1] = ACTIONS(8192), + [aux_sym_type_of_expression_token1] = ACTIONS(8192), + [aux_sym_unary_expression_token1] = ACTIONS(8192), + [sym_string_literal] = ACTIONS(8194), + [sym_number_literal] = ACTIONS(8194), + [aux_sym_boolean_literal_token1] = ACTIONS(8192), + [aux_sym_boolean_literal_token2] = ACTIONS(8192), + [sym_nothing_literal] = ACTIONS(8192), + [sym_null_literal] = ACTIONS(8192), + [sym_empty_literal] = ACTIONS(8192), + [sym_date_literal] = ACTIONS(8194), + [anon_sym_POUND] = ACTIONS(8192), + }, + [STATE(6205)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(6206)] = { + [sym_identifier] = ACTIONS(8835), + [sym_newline] = ACTIONS(8837), + [anon_sym_COLON] = ACTIONS(8837), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8835), + [aux_sym_frm_property_statement_token1] = ACTIONS(8835), + [anon_sym_DOT] = ACTIONS(8835), + [anon_sym_BANG] = ACTIONS(8837), + [aux_sym__attribute_identifier_token1] = ACTIONS(8835), + [aux_sym_option_statement_token3] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8835), + [aux_sym_preprocessor_const_token1] = ACTIONS(8835), + [sym_static_modifier] = ACTIONS(8835), + [sym__dim_keyword] = ACTIONS(8835), + [sym__redim_keyword] = ACTIONS(8835), + [aux_sym_get_accessor_token1] = ACTIONS(8835), + [aux_sym_set_accessor_token1] = ACTIONS(8835), + [anon_sym_COMMA] = ACTIONS(8837), + [aux_sym_const_declaration_token1] = ACTIONS(8835), + [anon_sym_LPAREN] = ACTIONS(8837), + [aux_sym_as_type_clause_token2] = ACTIONS(8835), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8835), + [aux_sym_visibility_token1] = ACTIONS(8835), + [aux_sym_visibility_token2] = ACTIONS(8835), + [aux_sym_elseif_fragment_token1] = ACTIONS(8835), + [aux_sym_else_fragment_token1] = ACTIONS(8835), + [aux_sym_select_statement_token1] = ACTIONS(8835), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8835), + [aux_sym__for_header_token1] = ACTIONS(8835), + [aux_sym_do_statement_token1] = ACTIONS(8835), + [aux_sym_do_condition_token1] = ACTIONS(8835), + [aux_sym_with_statement_token1] = ACTIONS(8835), + [aux_sym_exit_statement_token1] = ACTIONS(8835), + [sym_end_statement] = ACTIONS(8837), + [aux_sym_on_goto_statement_token1] = ACTIONS(8835), + [aux_sym_on_goto_statement_token2] = ACTIONS(8835), + [aux_sym_on_error_statement_token2] = ACTIONS(8835), + [sym__ambiguous_redim_statement] = ACTIONS(8837), + [aux_sym_erase_statement_token1] = ACTIONS(8835), + [aux_sym_open_statement_token1] = ACTIONS(8835), + [aux_sym_file_mode_token2] = ACTIONS(8835), + [aux_sym_file_access_token2] = ACTIONS(8835), + [aux_sym_file_lock_token2] = ACTIONS(8835), + [aux_sym_print_statement_token1] = ACTIONS(8835), + [anon_sym_PLUS] = ACTIONS(8837), + [anon_sym_DASH] = ACTIONS(8835), + [anon_sym_QMARK] = ACTIONS(8837), + [aux_sym_close_statement_token1] = ACTIONS(8835), + [aux_sym_put_statement_token1] = ACTIONS(8835), + [aux_sym_unlock_statement_token1] = ACTIONS(8835), + [aux_sym_seek_statement_token1] = ACTIONS(8835), + [sym_reset_statement] = ACTIONS(8835), + [aux_sym_raise_event_statement_token1] = ACTIONS(8835), + [sym_stop_statement] = ACTIONS(8835), + [sym_beep_statement] = ACTIONS(8835), + [aux_sym_unload_statement_token1] = ACTIONS(8835), + [aux_sym_def_type_statement_token1] = ACTIONS(8835), + [aux_sym_def_type_statement_token2] = ACTIONS(8835), + [aux_sym_def_type_statement_token3] = ACTIONS(8835), + [aux_sym_def_type_statement_token4] = ACTIONS(8835), + [aux_sym_def_type_statement_token5] = ACTIONS(8835), + [aux_sym_def_type_statement_token6] = ACTIONS(8835), + [aux_sym_def_type_statement_token7] = ACTIONS(8835), + [aux_sym_def_type_statement_token8] = ACTIONS(8835), + [aux_sym_def_type_statement_token9] = ACTIONS(8835), + [aux_sym_def_type_statement_token10] = ACTIONS(8835), + [aux_sym_def_type_statement_token11] = ACTIONS(8835), + [aux_sym_def_type_statement_token12] = ACTIONS(8835), + [aux_sym_def_type_statement_token13] = ACTIONS(8835), + [aux_sym_def_type_statement_token14] = ACTIONS(8835), + [aux_sym_call_statement_token1] = ACTIONS(8835), + [sym__ambiguous_call_statement] = ACTIONS(8835), + [aux_sym_addressof_expression_token1] = ACTIONS(8835), + [aux_sym_type_of_expression_token1] = ACTIONS(8835), + [aux_sym_unary_expression_token1] = ACTIONS(8835), + [sym_string_literal] = ACTIONS(8837), + [sym_number_literal] = ACTIONS(8837), + [aux_sym_boolean_literal_token1] = ACTIONS(8835), + [aux_sym_boolean_literal_token2] = ACTIONS(8835), + [sym_nothing_literal] = ACTIONS(8835), + [sym_null_literal] = ACTIONS(8835), + [sym_empty_literal] = ACTIONS(8835), + [sym_date_literal] = ACTIONS(8837), + [anon_sym_POUND] = ACTIONS(8835), + }, + [STATE(6207)] = { + [sym_identifier] = ACTIONS(8962), + [sym_newline] = ACTIONS(8964), + [anon_sym_COLON] = ACTIONS(8964), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8962), + [aux_sym_frm_property_statement_token1] = ACTIONS(8962), + [anon_sym_DOT] = ACTIONS(8962), + [anon_sym_BANG] = ACTIONS(8964), + [aux_sym__attribute_identifier_token1] = ACTIONS(8962), + [aux_sym_option_statement_token3] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8962), + [aux_sym_preprocessor_const_token1] = ACTIONS(8962), + [sym_static_modifier] = ACTIONS(8962), + [sym__dim_keyword] = ACTIONS(8962), + [sym__redim_keyword] = ACTIONS(8962), + [aux_sym_get_accessor_token1] = ACTIONS(8962), + [aux_sym_set_accessor_token1] = ACTIONS(8962), + [anon_sym_COMMA] = ACTIONS(8964), + [aux_sym_const_declaration_token1] = ACTIONS(8962), + [anon_sym_LPAREN] = ACTIONS(8964), + [aux_sym_as_type_clause_token2] = ACTIONS(8962), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8962), + [aux_sym_visibility_token1] = ACTIONS(8962), + [aux_sym_visibility_token2] = ACTIONS(8962), + [aux_sym_elseif_fragment_token1] = ACTIONS(8962), + [aux_sym_else_fragment_token1] = ACTIONS(8962), + [aux_sym_select_statement_token1] = ACTIONS(8962), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8962), + [aux_sym__for_header_token1] = ACTIONS(8962), + [aux_sym_do_statement_token1] = ACTIONS(8962), + [aux_sym_do_condition_token1] = ACTIONS(8962), + [aux_sym_with_statement_token1] = ACTIONS(8962), + [aux_sym_exit_statement_token1] = ACTIONS(8962), + [sym_end_statement] = ACTIONS(8964), + [aux_sym_on_goto_statement_token1] = ACTIONS(8962), + [aux_sym_on_goto_statement_token2] = ACTIONS(8962), + [aux_sym_on_error_statement_token2] = ACTIONS(8962), + [sym__ambiguous_redim_statement] = ACTIONS(8964), + [aux_sym_erase_statement_token1] = ACTIONS(8962), + [aux_sym_open_statement_token1] = ACTIONS(8962), + [aux_sym_file_mode_token2] = ACTIONS(8962), + [aux_sym_file_access_token2] = ACTIONS(8962), + [aux_sym_file_lock_token2] = ACTIONS(8962), + [aux_sym_print_statement_token1] = ACTIONS(8962), + [anon_sym_PLUS] = ACTIONS(8964), + [anon_sym_DASH] = ACTIONS(8962), + [anon_sym_QMARK] = ACTIONS(8964), + [aux_sym_close_statement_token1] = ACTIONS(8962), + [aux_sym_put_statement_token1] = ACTIONS(8962), + [aux_sym_unlock_statement_token1] = ACTIONS(8962), + [aux_sym_seek_statement_token1] = ACTIONS(8962), + [sym_reset_statement] = ACTIONS(8962), + [aux_sym_raise_event_statement_token1] = ACTIONS(8962), + [sym_stop_statement] = ACTIONS(8962), + [sym_beep_statement] = ACTIONS(8962), + [aux_sym_unload_statement_token1] = ACTIONS(8962), + [aux_sym_def_type_statement_token1] = ACTIONS(8962), + [aux_sym_def_type_statement_token2] = ACTIONS(8962), + [aux_sym_def_type_statement_token3] = ACTIONS(8962), + [aux_sym_def_type_statement_token4] = ACTIONS(8962), + [aux_sym_def_type_statement_token5] = ACTIONS(8962), + [aux_sym_def_type_statement_token6] = ACTIONS(8962), + [aux_sym_def_type_statement_token7] = ACTIONS(8962), + [aux_sym_def_type_statement_token8] = ACTIONS(8962), + [aux_sym_def_type_statement_token9] = ACTIONS(8962), + [aux_sym_def_type_statement_token10] = ACTIONS(8962), + [aux_sym_def_type_statement_token11] = ACTIONS(8962), + [aux_sym_def_type_statement_token12] = ACTIONS(8962), + [aux_sym_def_type_statement_token13] = ACTIONS(8962), + [aux_sym_def_type_statement_token14] = ACTIONS(8962), + [aux_sym_call_statement_token1] = ACTIONS(8962), + [sym__ambiguous_call_statement] = ACTIONS(8962), + [aux_sym_addressof_expression_token1] = ACTIONS(8962), + [aux_sym_type_of_expression_token1] = ACTIONS(8962), + [aux_sym_unary_expression_token1] = ACTIONS(8962), + [sym_string_literal] = ACTIONS(8964), + [sym_number_literal] = ACTIONS(8964), + [aux_sym_boolean_literal_token1] = ACTIONS(8962), + [aux_sym_boolean_literal_token2] = ACTIONS(8962), + [sym_nothing_literal] = ACTIONS(8962), + [sym_null_literal] = ACTIONS(8962), + [sym_empty_literal] = ACTIONS(8962), + [sym_date_literal] = ACTIONS(8964), + [anon_sym_POUND] = ACTIONS(8962), + }, + [STATE(6208)] = { + [sym_identifier] = ACTIONS(8809), + [sym_newline] = ACTIONS(8811), + [anon_sym_COLON] = ACTIONS(8811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8809), + [aux_sym_frm_property_statement_token1] = ACTIONS(8809), + [anon_sym_DOT] = ACTIONS(8809), + [anon_sym_BANG] = ACTIONS(8811), + [aux_sym__attribute_identifier_token1] = ACTIONS(8809), + [aux_sym_option_statement_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8809), + [aux_sym_preprocessor_const_token1] = ACTIONS(8809), + [sym_static_modifier] = ACTIONS(8809), + [sym__dim_keyword] = ACTIONS(8809), + [sym__redim_keyword] = ACTIONS(8809), + [aux_sym_get_accessor_token1] = ACTIONS(8809), + [aux_sym_set_accessor_token1] = ACTIONS(8809), + [aux_sym_const_declaration_token1] = ACTIONS(8809), + [anon_sym_LPAREN] = ACTIONS(8811), + [aux_sym_as_type_clause_token2] = ACTIONS(8809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8809), + [aux_sym_visibility_token1] = ACTIONS(8809), + [aux_sym_visibility_token2] = ACTIONS(8809), + [aux_sym_elseif_fragment_token1] = ACTIONS(8809), + [aux_sym_else_fragment_token1] = ACTIONS(8809), + [aux_sym_select_statement_token1] = ACTIONS(8809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8809), + [aux_sym__for_header_token1] = ACTIONS(8809), + [aux_sym_do_statement_token1] = ACTIONS(8809), + [aux_sym_do_statement_token2] = ACTIONS(8809), + [aux_sym_do_condition_token1] = ACTIONS(8809), + [aux_sym_with_statement_token1] = ACTIONS(8809), + [aux_sym_exit_statement_token1] = ACTIONS(8809), + [sym_end_statement] = ACTIONS(8811), + [aux_sym_on_goto_statement_token1] = ACTIONS(8809), + [aux_sym_on_goto_statement_token2] = ACTIONS(8809), + [aux_sym_on_error_statement_token2] = ACTIONS(8809), + [sym__ambiguous_redim_statement] = ACTIONS(8811), + [aux_sym_erase_statement_token1] = ACTIONS(8809), + [aux_sym_open_statement_token1] = ACTIONS(8809), + [aux_sym_file_mode_token2] = ACTIONS(8809), + [aux_sym_file_access_token2] = ACTIONS(8809), + [aux_sym_file_lock_token2] = ACTIONS(8809), + [aux_sym_print_statement_token1] = ACTIONS(8809), + [anon_sym_PLUS] = ACTIONS(8811), + [anon_sym_DASH] = ACTIONS(8809), + [anon_sym_QMARK] = ACTIONS(8811), + [aux_sym_close_statement_token1] = ACTIONS(8809), + [aux_sym_put_statement_token1] = ACTIONS(8809), + [aux_sym_unlock_statement_token1] = ACTIONS(8809), + [aux_sym_seek_statement_token1] = ACTIONS(8809), + [sym_reset_statement] = ACTIONS(8809), + [aux_sym_raise_event_statement_token1] = ACTIONS(8809), + [sym_stop_statement] = ACTIONS(8809), + [sym_beep_statement] = ACTIONS(8809), + [aux_sym_unload_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token2] = ACTIONS(8809), + [aux_sym_def_type_statement_token3] = ACTIONS(8809), + [aux_sym_def_type_statement_token4] = ACTIONS(8809), + [aux_sym_def_type_statement_token5] = ACTIONS(8809), + [aux_sym_def_type_statement_token6] = ACTIONS(8809), + [aux_sym_def_type_statement_token7] = ACTIONS(8809), + [aux_sym_def_type_statement_token8] = ACTIONS(8809), + [aux_sym_def_type_statement_token9] = ACTIONS(8809), + [aux_sym_def_type_statement_token10] = ACTIONS(8809), + [aux_sym_def_type_statement_token11] = ACTIONS(8809), + [aux_sym_def_type_statement_token12] = ACTIONS(8809), + [aux_sym_def_type_statement_token13] = ACTIONS(8809), + [aux_sym_def_type_statement_token14] = ACTIONS(8809), + [aux_sym_call_statement_token1] = ACTIONS(8809), + [sym__ambiguous_call_statement] = ACTIONS(8809), + [aux_sym_addressof_expression_token1] = ACTIONS(8809), + [aux_sym_type_of_expression_token1] = ACTIONS(8809), + [aux_sym_unary_expression_token1] = ACTIONS(8809), + [sym_string_literal] = ACTIONS(8811), + [sym_number_literal] = ACTIONS(8811), + [aux_sym_boolean_literal_token1] = ACTIONS(8809), + [aux_sym_boolean_literal_token2] = ACTIONS(8809), + [sym_nothing_literal] = ACTIONS(8809), + [sym_null_literal] = ACTIONS(8809), + [sym_empty_literal] = ACTIONS(8809), + [sym_date_literal] = ACTIONS(8811), + [anon_sym_POUND] = ACTIONS(8809), + }, + [STATE(6209)] = { + [sym_do_condition] = STATE(7129), + [sym_identifier] = ACTIONS(8203), + [sym_newline] = ACTIONS(8205), + [anon_sym_COLON] = ACTIONS(8205), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8203), + [aux_sym_frm_property_statement_token1] = ACTIONS(8203), + [anon_sym_DOT] = ACTIONS(8203), + [anon_sym_BANG] = ACTIONS(8205), + [aux_sym__attribute_identifier_token1] = ACTIONS(8203), + [aux_sym_option_statement_token3] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8203), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8203), + [aux_sym_preprocessor_const_token1] = ACTIONS(8203), + [sym_static_modifier] = ACTIONS(8203), + [sym__dim_keyword] = ACTIONS(8203), + [sym__redim_keyword] = ACTIONS(8203), + [aux_sym_get_accessor_token1] = ACTIONS(8203), + [aux_sym_set_accessor_token1] = ACTIONS(8203), + [aux_sym_const_declaration_token1] = ACTIONS(8203), + [anon_sym_LPAREN] = ACTIONS(8205), + [aux_sym_as_type_clause_token2] = ACTIONS(8203), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8203), + [aux_sym_visibility_token1] = ACTIONS(8203), + [aux_sym_visibility_token2] = ACTIONS(8203), + [aux_sym_elseif_fragment_token1] = ACTIONS(8203), + [aux_sym_else_fragment_token1] = ACTIONS(8203), + [aux_sym_select_statement_token1] = ACTIONS(8203), + [aux_sym__for_header_token1] = ACTIONS(8203), + [aux_sym_do_statement_token1] = ACTIONS(8203), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8203), + [aux_sym_exit_statement_token1] = ACTIONS(8203), + [sym_end_statement] = ACTIONS(8205), + [aux_sym_on_goto_statement_token1] = ACTIONS(8203), + [aux_sym_on_goto_statement_token2] = ACTIONS(8203), + [aux_sym_on_error_statement_token2] = ACTIONS(8203), + [sym__ambiguous_redim_statement] = ACTIONS(8205), + [aux_sym_erase_statement_token1] = ACTIONS(8203), + [aux_sym_open_statement_token1] = ACTIONS(8203), + [aux_sym_file_mode_token2] = ACTIONS(8203), + [aux_sym_file_access_token2] = ACTIONS(8203), + [aux_sym_file_lock_token2] = ACTIONS(8203), + [aux_sym_print_statement_token1] = ACTIONS(8203), + [anon_sym_PLUS] = ACTIONS(8205), + [anon_sym_DASH] = ACTIONS(8203), + [anon_sym_QMARK] = ACTIONS(8205), + [aux_sym_close_statement_token1] = ACTIONS(8203), + [aux_sym_put_statement_token1] = ACTIONS(8203), + [aux_sym_unlock_statement_token1] = ACTIONS(8203), + [aux_sym_seek_statement_token1] = ACTIONS(8203), + [sym_reset_statement] = ACTIONS(8203), + [aux_sym_raise_event_statement_token1] = ACTIONS(8203), + [sym_stop_statement] = ACTIONS(8203), + [sym_beep_statement] = ACTIONS(8203), + [aux_sym_unload_statement_token1] = ACTIONS(8203), + [aux_sym_def_type_statement_token1] = ACTIONS(8203), + [aux_sym_def_type_statement_token2] = ACTIONS(8203), + [aux_sym_def_type_statement_token3] = ACTIONS(8203), + [aux_sym_def_type_statement_token4] = ACTIONS(8203), + [aux_sym_def_type_statement_token5] = ACTIONS(8203), + [aux_sym_def_type_statement_token6] = ACTIONS(8203), + [aux_sym_def_type_statement_token7] = ACTIONS(8203), + [aux_sym_def_type_statement_token8] = ACTIONS(8203), + [aux_sym_def_type_statement_token9] = ACTIONS(8203), + [aux_sym_def_type_statement_token10] = ACTIONS(8203), + [aux_sym_def_type_statement_token11] = ACTIONS(8203), + [aux_sym_def_type_statement_token12] = ACTIONS(8203), + [aux_sym_def_type_statement_token13] = ACTIONS(8203), + [aux_sym_def_type_statement_token14] = ACTIONS(8203), + [aux_sym_call_statement_token1] = ACTIONS(8203), + [sym__ambiguous_call_statement] = ACTIONS(8203), + [aux_sym_addressof_expression_token1] = ACTIONS(8203), + [aux_sym_type_of_expression_token1] = ACTIONS(8203), + [aux_sym_unary_expression_token1] = ACTIONS(8203), + [sym_string_literal] = ACTIONS(8205), + [sym_number_literal] = ACTIONS(8205), + [aux_sym_boolean_literal_token1] = ACTIONS(8203), + [aux_sym_boolean_literal_token2] = ACTIONS(8203), + [sym_nothing_literal] = ACTIONS(8203), + [sym_null_literal] = ACTIONS(8203), + [sym_empty_literal] = ACTIONS(8203), + [sym_date_literal] = ACTIONS(8205), + [anon_sym_POUND] = ACTIONS(8203), + }, + [STATE(6210)] = { + [aux_sym_variable_declaration_repeat1] = STATE(6210), + [sym_identifier] = ACTIONS(8287), + [sym_newline] = ACTIONS(8289), + [anon_sym_COLON] = ACTIONS(8289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8287), + [aux_sym_frm_property_statement_token1] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8287), + [anon_sym_BANG] = ACTIONS(8289), + [aux_sym__attribute_identifier_token1] = ACTIONS(8287), + [aux_sym_option_statement_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8287), + [aux_sym_preprocessor_const_token1] = ACTIONS(8287), + [sym_static_modifier] = ACTIONS(8287), + [sym__dim_keyword] = ACTIONS(8287), + [sym__redim_keyword] = ACTIONS(8287), + [aux_sym_get_accessor_token1] = ACTIONS(8287), + [aux_sym_set_accessor_token1] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(11053), + [aux_sym_const_declaration_token1] = ACTIONS(8287), + [anon_sym_LPAREN] = ACTIONS(8289), + [aux_sym_as_type_clause_token2] = ACTIONS(8287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8287), + [aux_sym_visibility_token1] = ACTIONS(8287), + [aux_sym_visibility_token2] = ACTIONS(8287), + [aux_sym_elseif_fragment_token1] = ACTIONS(8287), + [aux_sym_else_fragment_token1] = ACTIONS(8287), + [aux_sym_select_statement_token1] = ACTIONS(8287), + [aux_sym__for_header_token1] = ACTIONS(8287), + [aux_sym_do_statement_token1] = ACTIONS(8287), + [aux_sym_do_condition_token1] = ACTIONS(8287), + [aux_sym_with_statement_token1] = ACTIONS(8287), + [aux_sym_exit_statement_token1] = ACTIONS(8287), + [sym_end_statement] = ACTIONS(8289), + [aux_sym_on_goto_statement_token1] = ACTIONS(8287), + [aux_sym_on_goto_statement_token2] = ACTIONS(8287), + [aux_sym_on_error_statement_token2] = ACTIONS(8287), + [sym__ambiguous_redim_statement] = ACTIONS(8289), + [aux_sym_erase_statement_token1] = ACTIONS(8287), + [aux_sym_open_statement_token1] = ACTIONS(8287), + [aux_sym_file_mode_token2] = ACTIONS(8287), + [aux_sym_file_access_token2] = ACTIONS(8287), + [aux_sym_file_lock_token2] = ACTIONS(8287), + [aux_sym_print_statement_token1] = ACTIONS(8287), + [anon_sym_PLUS] = ACTIONS(8289), + [anon_sym_DASH] = ACTIONS(8287), + [anon_sym_QMARK] = ACTIONS(8289), + [aux_sym_close_statement_token1] = ACTIONS(8287), + [aux_sym_put_statement_token1] = ACTIONS(8287), + [aux_sym_unlock_statement_token1] = ACTIONS(8287), + [aux_sym_seek_statement_token1] = ACTIONS(8287), + [sym_reset_statement] = ACTIONS(8287), + [aux_sym_raise_event_statement_token1] = ACTIONS(8287), + [sym_stop_statement] = ACTIONS(8287), + [sym_beep_statement] = ACTIONS(8287), + [aux_sym_unload_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token2] = ACTIONS(8287), + [aux_sym_def_type_statement_token3] = ACTIONS(8287), + [aux_sym_def_type_statement_token4] = ACTIONS(8287), + [aux_sym_def_type_statement_token5] = ACTIONS(8287), + [aux_sym_def_type_statement_token6] = ACTIONS(8287), + [aux_sym_def_type_statement_token7] = ACTIONS(8287), + [aux_sym_def_type_statement_token8] = ACTIONS(8287), + [aux_sym_def_type_statement_token9] = ACTIONS(8287), + [aux_sym_def_type_statement_token10] = ACTIONS(8287), + [aux_sym_def_type_statement_token11] = ACTIONS(8287), + [aux_sym_def_type_statement_token12] = ACTIONS(8287), + [aux_sym_def_type_statement_token13] = ACTIONS(8287), + [aux_sym_def_type_statement_token14] = ACTIONS(8287), + [aux_sym_call_statement_token1] = ACTIONS(8287), + [sym__ambiguous_call_statement] = ACTIONS(8287), + [aux_sym_addressof_expression_token1] = ACTIONS(8287), + [aux_sym_type_of_expression_token1] = ACTIONS(8287), + [aux_sym_unary_expression_token1] = ACTIONS(8287), + [sym_string_literal] = ACTIONS(8289), + [sym_number_literal] = ACTIONS(8289), + [aux_sym_boolean_literal_token1] = ACTIONS(8287), + [aux_sym_boolean_literal_token2] = ACTIONS(8287), + [sym_nothing_literal] = ACTIONS(8287), + [sym_null_literal] = ACTIONS(8287), + [sym_empty_literal] = ACTIONS(8287), + [sym_date_literal] = ACTIONS(8289), + [anon_sym_POUND] = ACTIONS(8287), + }, + [STATE(6211)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(6212)] = { + [sym_identifier] = ACTIONS(8443), + [sym_newline] = ACTIONS(8445), + [anon_sym_COLON] = ACTIONS(8445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8443), + [aux_sym_frm_property_statement_token1] = ACTIONS(8443), + [anon_sym_DOT] = ACTIONS(8443), + [anon_sym_BANG] = ACTIONS(8445), + [aux_sym__attribute_identifier_token1] = ACTIONS(8443), + [aux_sym_option_statement_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8443), + [aux_sym_preprocessor_const_token1] = ACTIONS(8443), + [sym_static_modifier] = ACTIONS(8443), + [sym__dim_keyword] = ACTIONS(8443), + [sym__redim_keyword] = ACTIONS(8443), + [aux_sym_get_accessor_token1] = ACTIONS(8443), + [aux_sym_set_accessor_token1] = ACTIONS(8443), + [anon_sym_COMMA] = ACTIONS(8445), + [aux_sym_const_declaration_token1] = ACTIONS(8443), + [anon_sym_LPAREN] = ACTIONS(8445), + [aux_sym_as_type_clause_token2] = ACTIONS(8443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8443), + [aux_sym_visibility_token1] = ACTIONS(8443), + [aux_sym_visibility_token2] = ACTIONS(8443), + [aux_sym_elseif_fragment_token1] = ACTIONS(8443), + [aux_sym_else_fragment_token1] = ACTIONS(8443), + [aux_sym_select_statement_token1] = ACTIONS(8443), + [aux_sym_select_statement_token2] = ACTIONS(8443), + [aux_sym__for_header_token1] = ACTIONS(8443), + [aux_sym_do_statement_token1] = ACTIONS(8443), + [aux_sym_do_condition_token1] = ACTIONS(8443), + [aux_sym_with_statement_token1] = ACTIONS(8443), + [aux_sym_exit_statement_token1] = ACTIONS(8443), + [sym_end_statement] = ACTIONS(8445), + [aux_sym_on_goto_statement_token1] = ACTIONS(8443), + [aux_sym_on_goto_statement_token2] = ACTIONS(8443), + [aux_sym_on_error_statement_token2] = ACTIONS(8443), + [sym__ambiguous_redim_statement] = ACTIONS(8445), + [aux_sym_erase_statement_token1] = ACTIONS(8443), + [aux_sym_open_statement_token1] = ACTIONS(8443), + [aux_sym_file_mode_token2] = ACTIONS(8443), + [aux_sym_file_access_token2] = ACTIONS(8443), + [aux_sym_file_lock_token2] = ACTIONS(8443), + [aux_sym_print_statement_token1] = ACTIONS(8443), + [anon_sym_PLUS] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8443), + [anon_sym_QMARK] = ACTIONS(8445), + [aux_sym_close_statement_token1] = ACTIONS(8443), + [aux_sym_put_statement_token1] = ACTIONS(8443), + [aux_sym_unlock_statement_token1] = ACTIONS(8443), + [aux_sym_seek_statement_token1] = ACTIONS(8443), + [sym_reset_statement] = ACTIONS(8443), + [aux_sym_raise_event_statement_token1] = ACTIONS(8443), + [sym_stop_statement] = ACTIONS(8443), + [sym_beep_statement] = ACTIONS(8443), + [aux_sym_unload_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token2] = ACTIONS(8443), + [aux_sym_def_type_statement_token3] = ACTIONS(8443), + [aux_sym_def_type_statement_token4] = ACTIONS(8443), + [aux_sym_def_type_statement_token5] = ACTIONS(8443), + [aux_sym_def_type_statement_token6] = ACTIONS(8443), + [aux_sym_def_type_statement_token7] = ACTIONS(8443), + [aux_sym_def_type_statement_token8] = ACTIONS(8443), + [aux_sym_def_type_statement_token9] = ACTIONS(8443), + [aux_sym_def_type_statement_token10] = ACTIONS(8443), + [aux_sym_def_type_statement_token11] = ACTIONS(8443), + [aux_sym_def_type_statement_token12] = ACTIONS(8443), + [aux_sym_def_type_statement_token13] = ACTIONS(8443), + [aux_sym_def_type_statement_token14] = ACTIONS(8443), + [aux_sym_call_statement_token1] = ACTIONS(8443), + [sym__ambiguous_call_statement] = ACTIONS(8443), + [aux_sym_addressof_expression_token1] = ACTIONS(8443), + [aux_sym_type_of_expression_token1] = ACTIONS(8443), + [aux_sym_unary_expression_token1] = ACTIONS(8443), + [sym_string_literal] = ACTIONS(8445), + [sym_number_literal] = ACTIONS(8445), + [aux_sym_boolean_literal_token1] = ACTIONS(8443), + [aux_sym_boolean_literal_token2] = ACTIONS(8443), + [sym_nothing_literal] = ACTIONS(8443), + [sym_null_literal] = ACTIONS(8443), + [sym_empty_literal] = ACTIONS(8443), + [sym_date_literal] = ACTIONS(8445), + [anon_sym_POUND] = ACTIONS(8443), + }, + [STATE(6213)] = { + [aux_sym_redim_statement_repeat1] = STATE(5860), + [sym_identifier] = ACTIONS(8561), + [sym_newline] = ACTIONS(8563), + [anon_sym_COLON] = ACTIONS(8563), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8561), + [aux_sym_frm_property_statement_token1] = ACTIONS(8561), + [anon_sym_DOT] = ACTIONS(8561), + [anon_sym_BANG] = ACTIONS(8563), + [aux_sym__attribute_identifier_token1] = ACTIONS(8561), + [aux_sym_option_statement_token3] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8561), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8561), + [aux_sym_preprocessor_const_token1] = ACTIONS(8561), + [sym_static_modifier] = ACTIONS(8561), + [sym__dim_keyword] = ACTIONS(8561), + [sym__redim_keyword] = ACTIONS(8561), + [aux_sym_get_accessor_token1] = ACTIONS(8561), + [aux_sym_set_accessor_token1] = ACTIONS(8561), + [anon_sym_COMMA] = ACTIONS(10846), + [aux_sym_const_declaration_token1] = ACTIONS(8561), + [anon_sym_LPAREN] = ACTIONS(8563), + [aux_sym_as_type_clause_token2] = ACTIONS(8561), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8561), + [aux_sym_visibility_token1] = ACTIONS(8561), + [aux_sym_visibility_token2] = ACTIONS(8561), + [aux_sym_elseif_fragment_token1] = ACTIONS(8561), + [aux_sym_else_fragment_token1] = ACTIONS(8561), + [aux_sym_select_statement_token1] = ACTIONS(8561), + [aux_sym__for_header_token1] = ACTIONS(8561), + [aux_sym_do_statement_token1] = ACTIONS(8561), + [aux_sym_do_condition_token1] = ACTIONS(8561), + [aux_sym_with_statement_token1] = ACTIONS(8561), + [aux_sym_exit_statement_token1] = ACTIONS(8561), + [sym_end_statement] = ACTIONS(8563), + [aux_sym_on_goto_statement_token1] = ACTIONS(8561), + [aux_sym_on_goto_statement_token2] = ACTIONS(8561), + [aux_sym_on_error_statement_token2] = ACTIONS(8561), + [sym__ambiguous_redim_statement] = ACTIONS(8563), + [aux_sym_erase_statement_token1] = ACTIONS(8561), + [aux_sym_open_statement_token1] = ACTIONS(8561), + [aux_sym_file_mode_token2] = ACTIONS(8561), + [aux_sym_file_access_token2] = ACTIONS(8561), + [aux_sym_file_lock_token2] = ACTIONS(8561), + [aux_sym_print_statement_token1] = ACTIONS(8561), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(8561), + [anon_sym_QMARK] = ACTIONS(8563), + [aux_sym_close_statement_token1] = ACTIONS(8561), + [aux_sym_put_statement_token1] = ACTIONS(8561), + [aux_sym_unlock_statement_token1] = ACTIONS(8561), + [aux_sym_seek_statement_token1] = ACTIONS(8561), + [sym_reset_statement] = ACTIONS(8561), + [aux_sym_raise_event_statement_token1] = ACTIONS(8561), + [sym_stop_statement] = ACTIONS(8561), + [sym_beep_statement] = ACTIONS(8561), + [aux_sym_unload_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token1] = ACTIONS(8561), + [aux_sym_def_type_statement_token2] = ACTIONS(8561), + [aux_sym_def_type_statement_token3] = ACTIONS(8561), + [aux_sym_def_type_statement_token4] = ACTIONS(8561), + [aux_sym_def_type_statement_token5] = ACTIONS(8561), + [aux_sym_def_type_statement_token6] = ACTIONS(8561), + [aux_sym_def_type_statement_token7] = ACTIONS(8561), + [aux_sym_def_type_statement_token8] = ACTIONS(8561), + [aux_sym_def_type_statement_token9] = ACTIONS(8561), + [aux_sym_def_type_statement_token10] = ACTIONS(8561), + [aux_sym_def_type_statement_token11] = ACTIONS(8561), + [aux_sym_def_type_statement_token12] = ACTIONS(8561), + [aux_sym_def_type_statement_token13] = ACTIONS(8561), + [aux_sym_def_type_statement_token14] = ACTIONS(8561), + [aux_sym_call_statement_token1] = ACTIONS(8561), + [sym__ambiguous_call_statement] = ACTIONS(8561), + [aux_sym_addressof_expression_token1] = ACTIONS(8561), + [aux_sym_type_of_expression_token1] = ACTIONS(8561), + [aux_sym_unary_expression_token1] = ACTIONS(8561), + [sym_string_literal] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8563), + [aux_sym_boolean_literal_token1] = ACTIONS(8561), + [aux_sym_boolean_literal_token2] = ACTIONS(8561), + [sym_nothing_literal] = ACTIONS(8561), + [sym_null_literal] = ACTIONS(8561), + [sym_empty_literal] = ACTIONS(8561), + [sym_date_literal] = ACTIONS(8563), + [anon_sym_POUND] = ACTIONS(8561), + }, + [STATE(6214)] = { + [sym_identifier] = ACTIONS(8109), + [sym_newline] = ACTIONS(8111), + [anon_sym_COLON] = ACTIONS(8111), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8109), + [aux_sym_frm_property_statement_token1] = ACTIONS(8109), + [anon_sym_DOT] = ACTIONS(8109), + [anon_sym_BANG] = ACTIONS(8111), + [aux_sym__attribute_identifier_token1] = ACTIONS(8109), + [aux_sym_option_statement_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8109), + [aux_sym_preprocessor_const_token1] = ACTIONS(8109), + [sym_static_modifier] = ACTIONS(8109), + [sym__dim_keyword] = ACTIONS(8109), + [sym__redim_keyword] = ACTIONS(8109), + [aux_sym_get_accessor_token1] = ACTIONS(8109), + [aux_sym_set_accessor_token1] = ACTIONS(8109), + [aux_sym_const_declaration_token1] = ACTIONS(8109), + [anon_sym_LPAREN] = ACTIONS(8111), + [aux_sym_as_type_clause_token2] = ACTIONS(8109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8109), + [aux_sym_visibility_token1] = ACTIONS(8109), + [aux_sym_visibility_token2] = ACTIONS(8109), + [aux_sym_elseif_fragment_token1] = ACTIONS(8109), + [aux_sym_else_fragment_token1] = ACTIONS(8109), + [aux_sym_select_statement_token1] = ACTIONS(8109), + [aux_sym__for_header_token1] = ACTIONS(8109), + [aux_sym_do_statement_token1] = ACTIONS(8109), + [aux_sym_do_statement_token2] = ACTIONS(8109), + [aux_sym_do_condition_token1] = ACTIONS(8109), + [aux_sym_with_statement_token1] = ACTIONS(8109), + [aux_sym_exit_statement_token1] = ACTIONS(8109), + [sym_end_statement] = ACTIONS(8111), + [aux_sym_on_goto_statement_token1] = ACTIONS(8109), + [aux_sym_on_goto_statement_token2] = ACTIONS(8109), + [aux_sym_on_error_statement_token2] = ACTIONS(8109), + [sym__ambiguous_redim_statement] = ACTIONS(8111), + [aux_sym_erase_statement_token1] = ACTIONS(8109), + [aux_sym_open_statement_token1] = ACTIONS(8109), + [aux_sym_file_mode_token2] = ACTIONS(8109), + [aux_sym_file_access_token2] = ACTIONS(8109), + [aux_sym_file_lock_token2] = ACTIONS(8109), + [aux_sym_print_statement_token1] = ACTIONS(8109), + [anon_sym_PLUS] = ACTIONS(8111), + [anon_sym_DASH] = ACTIONS(8109), + [anon_sym_SEMI] = ACTIONS(8111), + [anon_sym_QMARK] = ACTIONS(8111), + [aux_sym_close_statement_token1] = ACTIONS(8109), + [aux_sym_put_statement_token1] = ACTIONS(8109), + [aux_sym_unlock_statement_token1] = ACTIONS(8109), + [aux_sym_seek_statement_token1] = ACTIONS(8109), + [sym_reset_statement] = ACTIONS(8109), + [aux_sym_raise_event_statement_token1] = ACTIONS(8109), + [sym_stop_statement] = ACTIONS(8109), + [sym_beep_statement] = ACTIONS(8109), + [aux_sym_unload_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token2] = ACTIONS(8109), + [aux_sym_def_type_statement_token3] = ACTIONS(8109), + [aux_sym_def_type_statement_token4] = ACTIONS(8109), + [aux_sym_def_type_statement_token5] = ACTIONS(8109), + [aux_sym_def_type_statement_token6] = ACTIONS(8109), + [aux_sym_def_type_statement_token7] = ACTIONS(8109), + [aux_sym_def_type_statement_token8] = ACTIONS(8109), + [aux_sym_def_type_statement_token9] = ACTIONS(8109), + [aux_sym_def_type_statement_token10] = ACTIONS(8109), + [aux_sym_def_type_statement_token11] = ACTIONS(8109), + [aux_sym_def_type_statement_token12] = ACTIONS(8109), + [aux_sym_def_type_statement_token13] = ACTIONS(8109), + [aux_sym_def_type_statement_token14] = ACTIONS(8109), + [aux_sym_call_statement_token1] = ACTIONS(8109), + [sym__ambiguous_call_statement] = ACTIONS(8109), + [aux_sym_addressof_expression_token1] = ACTIONS(8109), + [aux_sym_type_of_expression_token1] = ACTIONS(8109), + [aux_sym_unary_expression_token1] = ACTIONS(8109), + [sym_string_literal] = ACTIONS(8111), + [sym_number_literal] = ACTIONS(8111), + [aux_sym_boolean_literal_token1] = ACTIONS(8109), + [aux_sym_boolean_literal_token2] = ACTIONS(8109), + [sym_nothing_literal] = ACTIONS(8109), + [sym_null_literal] = ACTIONS(8109), + [sym_empty_literal] = ACTIONS(8109), + [sym_date_literal] = ACTIONS(8111), + [anon_sym_POUND] = ACTIONS(8109), + }, + [STATE(6215)] = { + [sym_identifier] = ACTIONS(8835), + [sym_newline] = ACTIONS(8837), + [anon_sym_COLON] = ACTIONS(8837), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8835), + [aux_sym_frm_property_statement_token1] = ACTIONS(8835), + [anon_sym_DOT] = ACTIONS(8835), + [anon_sym_BANG] = ACTIONS(8837), + [aux_sym__attribute_identifier_token1] = ACTIONS(8835), + [aux_sym_option_statement_token3] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8835), + [aux_sym_preprocessor_const_token1] = ACTIONS(8835), + [sym_static_modifier] = ACTIONS(8835), + [sym__dim_keyword] = ACTIONS(8835), + [sym__redim_keyword] = ACTIONS(8835), + [aux_sym_get_accessor_token1] = ACTIONS(8835), + [aux_sym_set_accessor_token1] = ACTIONS(8835), + [anon_sym_COMMA] = ACTIONS(8837), + [aux_sym_const_declaration_token1] = ACTIONS(8835), + [anon_sym_LPAREN] = ACTIONS(8837), + [aux_sym_as_type_clause_token2] = ACTIONS(8835), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8835), + [aux_sym_visibility_token1] = ACTIONS(8835), + [aux_sym_visibility_token2] = ACTIONS(8835), + [aux_sym_elseif_fragment_token1] = ACTIONS(8835), + [aux_sym_else_fragment_token1] = ACTIONS(8835), + [aux_sym_select_statement_token1] = ACTIONS(8835), + [aux_sym__for_header_token1] = ACTIONS(8835), + [aux_sym_do_statement_token1] = ACTIONS(8835), + [aux_sym_do_condition_token1] = ACTIONS(8835), + [aux_sym_while_statement_token1] = ACTIONS(8835), + [aux_sym_with_statement_token1] = ACTIONS(8835), + [aux_sym_exit_statement_token1] = ACTIONS(8835), + [sym_end_statement] = ACTIONS(8837), + [aux_sym_on_goto_statement_token1] = ACTIONS(8835), + [aux_sym_on_goto_statement_token2] = ACTIONS(8835), + [aux_sym_on_error_statement_token2] = ACTIONS(8835), + [sym__ambiguous_redim_statement] = ACTIONS(8837), + [aux_sym_erase_statement_token1] = ACTIONS(8835), + [aux_sym_open_statement_token1] = ACTIONS(8835), + [aux_sym_file_mode_token2] = ACTIONS(8835), + [aux_sym_file_access_token2] = ACTIONS(8835), + [aux_sym_file_lock_token2] = ACTIONS(8835), + [aux_sym_print_statement_token1] = ACTIONS(8835), + [anon_sym_PLUS] = ACTIONS(8837), + [anon_sym_DASH] = ACTIONS(8835), + [anon_sym_QMARK] = ACTIONS(8837), + [aux_sym_close_statement_token1] = ACTIONS(8835), + [aux_sym_put_statement_token1] = ACTIONS(8835), + [aux_sym_unlock_statement_token1] = ACTIONS(8835), + [aux_sym_seek_statement_token1] = ACTIONS(8835), + [sym_reset_statement] = ACTIONS(8835), + [aux_sym_raise_event_statement_token1] = ACTIONS(8835), + [sym_stop_statement] = ACTIONS(8835), + [sym_beep_statement] = ACTIONS(8835), + [aux_sym_unload_statement_token1] = ACTIONS(8835), + [aux_sym_def_type_statement_token1] = ACTIONS(8835), + [aux_sym_def_type_statement_token2] = ACTIONS(8835), + [aux_sym_def_type_statement_token3] = ACTIONS(8835), + [aux_sym_def_type_statement_token4] = ACTIONS(8835), + [aux_sym_def_type_statement_token5] = ACTIONS(8835), + [aux_sym_def_type_statement_token6] = ACTIONS(8835), + [aux_sym_def_type_statement_token7] = ACTIONS(8835), + [aux_sym_def_type_statement_token8] = ACTIONS(8835), + [aux_sym_def_type_statement_token9] = ACTIONS(8835), + [aux_sym_def_type_statement_token10] = ACTIONS(8835), + [aux_sym_def_type_statement_token11] = ACTIONS(8835), + [aux_sym_def_type_statement_token12] = ACTIONS(8835), + [aux_sym_def_type_statement_token13] = ACTIONS(8835), + [aux_sym_def_type_statement_token14] = ACTIONS(8835), + [aux_sym_call_statement_token1] = ACTIONS(8835), + [sym__ambiguous_call_statement] = ACTIONS(8835), + [aux_sym_addressof_expression_token1] = ACTIONS(8835), + [aux_sym_type_of_expression_token1] = ACTIONS(8835), + [aux_sym_unary_expression_token1] = ACTIONS(8835), + [sym_string_literal] = ACTIONS(8837), + [sym_number_literal] = ACTIONS(8837), + [aux_sym_boolean_literal_token1] = ACTIONS(8835), + [aux_sym_boolean_literal_token2] = ACTIONS(8835), + [sym_nothing_literal] = ACTIONS(8835), + [sym_null_literal] = ACTIONS(8835), + [sym_empty_literal] = ACTIONS(8835), + [sym_date_literal] = ACTIONS(8837), + [anon_sym_POUND] = ACTIONS(8835), + }, + [STATE(6216)] = { + [sym_identifier] = ACTIONS(8805), + [sym_newline] = ACTIONS(8807), + [anon_sym_COLON] = ACTIONS(8807), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8805), + [aux_sym_frm_property_statement_token1] = ACTIONS(8805), + [anon_sym_DOT] = ACTIONS(8805), + [anon_sym_BANG] = ACTIONS(8807), + [aux_sym__attribute_identifier_token1] = ACTIONS(8805), + [aux_sym_option_statement_token3] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8805), + [aux_sym_preprocessor_const_token1] = ACTIONS(8805), + [sym_static_modifier] = ACTIONS(8805), + [sym__dim_keyword] = ACTIONS(8805), + [sym__redim_keyword] = ACTIONS(8805), + [aux_sym_get_accessor_token1] = ACTIONS(8805), + [aux_sym_set_accessor_token1] = ACTIONS(8805), + [anon_sym_COMMA] = ACTIONS(8807), + [aux_sym_const_declaration_token1] = ACTIONS(8805), + [anon_sym_LPAREN] = ACTIONS(8807), + [aux_sym_as_type_clause_token2] = ACTIONS(8805), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8805), + [aux_sym_visibility_token1] = ACTIONS(8805), + [aux_sym_visibility_token2] = ACTIONS(8805), + [aux_sym_elseif_fragment_token1] = ACTIONS(8805), + [aux_sym_else_fragment_token1] = ACTIONS(8805), + [aux_sym_select_statement_token1] = ACTIONS(8805), + [aux_sym_select_statement_token2] = ACTIONS(8805), + [aux_sym__for_header_token1] = ACTIONS(8805), + [aux_sym_do_statement_token1] = ACTIONS(8805), + [aux_sym_do_condition_token1] = ACTIONS(8805), + [aux_sym_with_statement_token1] = ACTIONS(8805), + [aux_sym_exit_statement_token1] = ACTIONS(8805), + [sym_end_statement] = ACTIONS(8807), + [aux_sym_on_goto_statement_token1] = ACTIONS(8805), + [aux_sym_on_goto_statement_token2] = ACTIONS(8805), + [aux_sym_on_error_statement_token2] = ACTIONS(8805), + [sym__ambiguous_redim_statement] = ACTIONS(8807), + [aux_sym_erase_statement_token1] = ACTIONS(8805), + [aux_sym_open_statement_token1] = ACTIONS(8805), + [aux_sym_file_mode_token2] = ACTIONS(8805), + [aux_sym_file_access_token2] = ACTIONS(8805), + [aux_sym_file_lock_token2] = ACTIONS(8805), + [aux_sym_print_statement_token1] = ACTIONS(8805), + [anon_sym_PLUS] = ACTIONS(8807), + [anon_sym_DASH] = ACTIONS(8805), + [anon_sym_QMARK] = ACTIONS(8807), + [aux_sym_close_statement_token1] = ACTIONS(8805), + [aux_sym_put_statement_token1] = ACTIONS(8805), + [aux_sym_unlock_statement_token1] = ACTIONS(8805), + [aux_sym_seek_statement_token1] = ACTIONS(8805), + [sym_reset_statement] = ACTIONS(8805), + [aux_sym_raise_event_statement_token1] = ACTIONS(8805), + [sym_stop_statement] = ACTIONS(8805), + [sym_beep_statement] = ACTIONS(8805), + [aux_sym_unload_statement_token1] = ACTIONS(8805), + [aux_sym_def_type_statement_token1] = ACTIONS(8805), + [aux_sym_def_type_statement_token2] = ACTIONS(8805), + [aux_sym_def_type_statement_token3] = ACTIONS(8805), + [aux_sym_def_type_statement_token4] = ACTIONS(8805), + [aux_sym_def_type_statement_token5] = ACTIONS(8805), + [aux_sym_def_type_statement_token6] = ACTIONS(8805), + [aux_sym_def_type_statement_token7] = ACTIONS(8805), + [aux_sym_def_type_statement_token8] = ACTIONS(8805), + [aux_sym_def_type_statement_token9] = ACTIONS(8805), + [aux_sym_def_type_statement_token10] = ACTIONS(8805), + [aux_sym_def_type_statement_token11] = ACTIONS(8805), + [aux_sym_def_type_statement_token12] = ACTIONS(8805), + [aux_sym_def_type_statement_token13] = ACTIONS(8805), + [aux_sym_def_type_statement_token14] = ACTIONS(8805), + [aux_sym_call_statement_token1] = ACTIONS(8805), + [sym__ambiguous_call_statement] = ACTIONS(8805), + [aux_sym_addressof_expression_token1] = ACTIONS(8805), + [aux_sym_type_of_expression_token1] = ACTIONS(8805), + [aux_sym_unary_expression_token1] = ACTIONS(8805), + [sym_string_literal] = ACTIONS(8807), + [sym_number_literal] = ACTIONS(8807), + [aux_sym_boolean_literal_token1] = ACTIONS(8805), + [aux_sym_boolean_literal_token2] = ACTIONS(8805), + [sym_nothing_literal] = ACTIONS(8805), + [sym_null_literal] = ACTIONS(8805), + [sym_empty_literal] = ACTIONS(8805), + [sym_date_literal] = ACTIONS(8807), + [anon_sym_POUND] = ACTIONS(8805), + }, + [STATE(6217)] = { + [sym_identifier] = ACTIONS(8357), + [sym_newline] = ACTIONS(8359), + [anon_sym_COLON] = ACTIONS(8359), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8357), + [aux_sym_frm_property_statement_token1] = ACTIONS(8357), + [anon_sym_DOT] = ACTIONS(8357), + [anon_sym_BANG] = ACTIONS(8359), + [aux_sym__attribute_identifier_token1] = ACTIONS(8357), + [aux_sym_option_statement_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8357), + [aux_sym_preprocessor_const_token1] = ACTIONS(8357), + [sym_static_modifier] = ACTIONS(8357), + [sym__dim_keyword] = ACTIONS(8357), + [sym__redim_keyword] = ACTIONS(8357), + [aux_sym_get_accessor_token1] = ACTIONS(8357), + [aux_sym_set_accessor_token1] = ACTIONS(8357), + [anon_sym_COMMA] = ACTIONS(8359), + [aux_sym_const_declaration_token1] = ACTIONS(8357), + [anon_sym_LPAREN] = ACTIONS(8359), + [aux_sym_as_type_clause_token2] = ACTIONS(8357), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8357), + [aux_sym_visibility_token1] = ACTIONS(8357), + [aux_sym_visibility_token2] = ACTIONS(8357), + [aux_sym_elseif_fragment_token1] = ACTIONS(8357), + [aux_sym_else_fragment_token1] = ACTIONS(8357), + [aux_sym_select_statement_token1] = ACTIONS(8357), + [aux_sym_select_statement_token2] = ACTIONS(8357), + [aux_sym__for_header_token1] = ACTIONS(8357), + [aux_sym_do_statement_token1] = ACTIONS(8357), + [aux_sym_do_condition_token1] = ACTIONS(8357), + [aux_sym_with_statement_token1] = ACTIONS(8357), + [aux_sym_exit_statement_token1] = ACTIONS(8357), + [sym_end_statement] = ACTIONS(8359), + [aux_sym_on_goto_statement_token1] = ACTIONS(8357), + [aux_sym_on_goto_statement_token2] = ACTIONS(8357), + [aux_sym_on_error_statement_token2] = ACTIONS(8357), + [sym__ambiguous_redim_statement] = ACTIONS(8359), + [aux_sym_erase_statement_token1] = ACTIONS(8357), + [aux_sym_open_statement_token1] = ACTIONS(8357), + [aux_sym_file_mode_token2] = ACTIONS(8357), + [aux_sym_file_access_token2] = ACTIONS(8357), + [aux_sym_file_lock_token2] = ACTIONS(8357), + [aux_sym_print_statement_token1] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_QMARK] = ACTIONS(8359), + [aux_sym_close_statement_token1] = ACTIONS(8357), + [aux_sym_put_statement_token1] = ACTIONS(8357), + [aux_sym_unlock_statement_token1] = ACTIONS(8357), + [aux_sym_seek_statement_token1] = ACTIONS(8357), + [sym_reset_statement] = ACTIONS(8357), + [aux_sym_raise_event_statement_token1] = ACTIONS(8357), + [sym_stop_statement] = ACTIONS(8357), + [sym_beep_statement] = ACTIONS(8357), + [aux_sym_unload_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token2] = ACTIONS(8357), + [aux_sym_def_type_statement_token3] = ACTIONS(8357), + [aux_sym_def_type_statement_token4] = ACTIONS(8357), + [aux_sym_def_type_statement_token5] = ACTIONS(8357), + [aux_sym_def_type_statement_token6] = ACTIONS(8357), + [aux_sym_def_type_statement_token7] = ACTIONS(8357), + [aux_sym_def_type_statement_token8] = ACTIONS(8357), + [aux_sym_def_type_statement_token9] = ACTIONS(8357), + [aux_sym_def_type_statement_token10] = ACTIONS(8357), + [aux_sym_def_type_statement_token11] = ACTIONS(8357), + [aux_sym_def_type_statement_token12] = ACTIONS(8357), + [aux_sym_def_type_statement_token13] = ACTIONS(8357), + [aux_sym_def_type_statement_token14] = ACTIONS(8357), + [aux_sym_call_statement_token1] = ACTIONS(8357), + [sym__ambiguous_call_statement] = ACTIONS(8357), + [aux_sym_addressof_expression_token1] = ACTIONS(8357), + [aux_sym_type_of_expression_token1] = ACTIONS(8357), + [aux_sym_unary_expression_token1] = ACTIONS(8357), + [sym_string_literal] = ACTIONS(8359), + [sym_number_literal] = ACTIONS(8359), + [aux_sym_boolean_literal_token1] = ACTIONS(8357), + [aux_sym_boolean_literal_token2] = ACTIONS(8357), + [sym_nothing_literal] = ACTIONS(8357), + [sym_null_literal] = ACTIONS(8357), + [sym_empty_literal] = ACTIONS(8357), + [sym_date_literal] = ACTIONS(8359), + [anon_sym_POUND] = ACTIONS(8357), + }, + [STATE(6218)] = { + [aux_sym__argument_sequence_repeat2] = STATE(6218), + [sym_identifier] = ACTIONS(8196), + [sym_newline] = ACTIONS(8198), + [anon_sym_COLON] = ACTIONS(8198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8196), + [aux_sym_frm_property_statement_token1] = ACTIONS(8196), + [anon_sym_DOT] = ACTIONS(8196), + [anon_sym_BANG] = ACTIONS(8198), + [aux_sym__attribute_identifier_token1] = ACTIONS(8196), + [aux_sym_option_statement_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8196), + [aux_sym_preprocessor_const_token1] = ACTIONS(8196), + [sym_static_modifier] = ACTIONS(8196), + [sym__dim_keyword] = ACTIONS(8196), + [sym__redim_keyword] = ACTIONS(8196), + [aux_sym_get_accessor_token1] = ACTIONS(8196), + [aux_sym_set_accessor_token1] = ACTIONS(8196), + [anon_sym_COMMA] = ACTIONS(11056), + [aux_sym_const_declaration_token1] = ACTIONS(8196), + [anon_sym_LPAREN] = ACTIONS(8198), + [aux_sym_as_type_clause_token2] = ACTIONS(8196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8196), + [aux_sym_visibility_token1] = ACTIONS(8196), + [aux_sym_visibility_token2] = ACTIONS(8196), + [aux_sym_elseif_fragment_token1] = ACTIONS(8196), + [aux_sym_else_fragment_token1] = ACTIONS(8196), + [aux_sym_select_statement_token1] = ACTIONS(8196), + [aux_sym__for_header_token1] = ACTIONS(8196), + [aux_sym_do_statement_token1] = ACTIONS(8196), + [aux_sym_do_condition_token1] = ACTIONS(8196), + [aux_sym_with_statement_token1] = ACTIONS(8196), + [aux_sym_exit_statement_token1] = ACTIONS(8196), + [sym_end_statement] = ACTIONS(8198), + [aux_sym_on_goto_statement_token1] = ACTIONS(8196), + [aux_sym_on_goto_statement_token2] = ACTIONS(8196), + [aux_sym_on_error_statement_token2] = ACTIONS(8196), + [sym__ambiguous_redim_statement] = ACTIONS(8198), + [aux_sym_erase_statement_token1] = ACTIONS(8196), + [aux_sym_open_statement_token1] = ACTIONS(8196), + [aux_sym_file_mode_token2] = ACTIONS(8196), + [aux_sym_file_access_token2] = ACTIONS(8196), + [aux_sym_file_lock_token2] = ACTIONS(8196), + [aux_sym_print_statement_token1] = ACTIONS(8196), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(8196), + [anon_sym_QMARK] = ACTIONS(8198), + [aux_sym_close_statement_token1] = ACTIONS(8196), + [aux_sym_put_statement_token1] = ACTIONS(8196), + [aux_sym_unlock_statement_token1] = ACTIONS(8196), + [aux_sym_seek_statement_token1] = ACTIONS(8196), + [sym_reset_statement] = ACTIONS(8196), + [aux_sym_raise_event_statement_token1] = ACTIONS(8196), + [sym_stop_statement] = ACTIONS(8196), + [sym_beep_statement] = ACTIONS(8196), + [aux_sym_unload_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token2] = ACTIONS(8196), + [aux_sym_def_type_statement_token3] = ACTIONS(8196), + [aux_sym_def_type_statement_token4] = ACTIONS(8196), + [aux_sym_def_type_statement_token5] = ACTIONS(8196), + [aux_sym_def_type_statement_token6] = ACTIONS(8196), + [aux_sym_def_type_statement_token7] = ACTIONS(8196), + [aux_sym_def_type_statement_token8] = ACTIONS(8196), + [aux_sym_def_type_statement_token9] = ACTIONS(8196), + [aux_sym_def_type_statement_token10] = ACTIONS(8196), + [aux_sym_def_type_statement_token11] = ACTIONS(8196), + [aux_sym_def_type_statement_token12] = ACTIONS(8196), + [aux_sym_def_type_statement_token13] = ACTIONS(8196), + [aux_sym_def_type_statement_token14] = ACTIONS(8196), + [aux_sym_call_statement_token1] = ACTIONS(8196), + [sym__ambiguous_call_statement] = ACTIONS(8196), + [aux_sym_addressof_expression_token1] = ACTIONS(8196), + [aux_sym_type_of_expression_token1] = ACTIONS(8196), + [aux_sym_unary_expression_token1] = ACTIONS(8196), + [sym_string_literal] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8198), + [aux_sym_boolean_literal_token1] = ACTIONS(8196), + [aux_sym_boolean_literal_token2] = ACTIONS(8196), + [sym_nothing_literal] = ACTIONS(8196), + [sym_null_literal] = ACTIONS(8196), + [sym_empty_literal] = ACTIONS(8196), + [sym_date_literal] = ACTIONS(8198), + [anon_sym_POUND] = ACTIONS(8196), + }, + [STATE(6219)] = { + [sym_identifier] = ACTIONS(8652), + [sym_newline] = ACTIONS(8654), + [anon_sym_COLON] = ACTIONS(8654), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8652), + [aux_sym_frm_property_statement_token1] = ACTIONS(8652), + [anon_sym_DOT] = ACTIONS(8652), + [anon_sym_BANG] = ACTIONS(8654), + [aux_sym__attribute_identifier_token1] = ACTIONS(8652), + [aux_sym_option_statement_token3] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8652), + [aux_sym_preprocessor_const_token1] = ACTIONS(8652), + [sym_static_modifier] = ACTIONS(8652), + [sym__dim_keyword] = ACTIONS(8652), + [sym__redim_keyword] = ACTIONS(8652), + [aux_sym_get_accessor_token1] = ACTIONS(8652), + [aux_sym_set_accessor_token1] = ACTIONS(8652), + [anon_sym_COMMA] = ACTIONS(11059), + [aux_sym_const_declaration_token1] = ACTIONS(8652), + [anon_sym_LPAREN] = ACTIONS(8654), + [aux_sym_as_type_clause_token2] = ACTIONS(8652), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8652), + [aux_sym_visibility_token1] = ACTIONS(8652), + [aux_sym_visibility_token2] = ACTIONS(8652), + [aux_sym_elseif_fragment_token1] = ACTIONS(8652), + [aux_sym_else_fragment_token1] = ACTIONS(8652), + [aux_sym_select_statement_token1] = ACTIONS(8652), + [aux_sym__for_header_token1] = ACTIONS(8652), + [aux_sym_do_statement_token1] = ACTIONS(8652), + [aux_sym_do_statement_token2] = ACTIONS(8652), + [aux_sym_do_condition_token1] = ACTIONS(8652), + [aux_sym_with_statement_token1] = ACTIONS(8652), + [aux_sym_exit_statement_token1] = ACTIONS(8652), + [sym_end_statement] = ACTIONS(8654), + [aux_sym_on_goto_statement_token1] = ACTIONS(8652), + [aux_sym_on_goto_statement_token2] = ACTIONS(8652), + [aux_sym_on_error_statement_token2] = ACTIONS(8652), + [sym__ambiguous_redim_statement] = ACTIONS(8654), + [aux_sym_erase_statement_token1] = ACTIONS(8652), + [aux_sym_open_statement_token1] = ACTIONS(8652), + [aux_sym_file_mode_token2] = ACTIONS(8652), + [aux_sym_file_access_token2] = ACTIONS(8652), + [aux_sym_file_lock_token2] = ACTIONS(8652), + [aux_sym_print_statement_token1] = ACTIONS(8652), + [anon_sym_PLUS] = ACTIONS(8654), + [anon_sym_DASH] = ACTIONS(8652), + [anon_sym_QMARK] = ACTIONS(8654), + [aux_sym_close_statement_token1] = ACTIONS(8652), + [aux_sym_put_statement_token1] = ACTIONS(8652), + [aux_sym_unlock_statement_token1] = ACTIONS(8652), + [aux_sym_seek_statement_token1] = ACTIONS(8652), + [sym_reset_statement] = ACTIONS(8652), + [aux_sym_raise_event_statement_token1] = ACTIONS(8652), + [sym_stop_statement] = ACTIONS(8652), + [sym_beep_statement] = ACTIONS(8652), + [aux_sym_unload_statement_token1] = ACTIONS(8652), + [aux_sym_def_type_statement_token1] = ACTIONS(8652), + [aux_sym_def_type_statement_token2] = ACTIONS(8652), + [aux_sym_def_type_statement_token3] = ACTIONS(8652), + [aux_sym_def_type_statement_token4] = ACTIONS(8652), + [aux_sym_def_type_statement_token5] = ACTIONS(8652), + [aux_sym_def_type_statement_token6] = ACTIONS(8652), + [aux_sym_def_type_statement_token7] = ACTIONS(8652), + [aux_sym_def_type_statement_token8] = ACTIONS(8652), + [aux_sym_def_type_statement_token9] = ACTIONS(8652), + [aux_sym_def_type_statement_token10] = ACTIONS(8652), + [aux_sym_def_type_statement_token11] = ACTIONS(8652), + [aux_sym_def_type_statement_token12] = ACTIONS(8652), + [aux_sym_def_type_statement_token13] = ACTIONS(8652), + [aux_sym_def_type_statement_token14] = ACTIONS(8652), + [aux_sym_call_statement_token1] = ACTIONS(8652), + [sym__ambiguous_call_statement] = ACTIONS(8652), + [aux_sym_addressof_expression_token1] = ACTIONS(8652), + [aux_sym_type_of_expression_token1] = ACTIONS(8652), + [aux_sym_unary_expression_token1] = ACTIONS(8652), + [sym_string_literal] = ACTIONS(8654), + [sym_number_literal] = ACTIONS(8654), + [aux_sym_boolean_literal_token1] = ACTIONS(8652), + [aux_sym_boolean_literal_token2] = ACTIONS(8652), + [sym_nothing_literal] = ACTIONS(8652), + [sym_null_literal] = ACTIONS(8652), + [sym_empty_literal] = ACTIONS(8652), + [sym_date_literal] = ACTIONS(8654), + [anon_sym_POUND] = ACTIONS(8652), + }, + [STATE(6220)] = { + [sym_identifier] = ACTIONS(8839), + [sym_newline] = ACTIONS(8841), + [anon_sym_COLON] = ACTIONS(8841), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8839), + [aux_sym_frm_property_statement_token1] = ACTIONS(8839), + [anon_sym_DOT] = ACTIONS(8839), + [anon_sym_BANG] = ACTIONS(8841), + [aux_sym__attribute_identifier_token1] = ACTIONS(8839), + [aux_sym_option_statement_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8839), + [aux_sym_preprocessor_const_token1] = ACTIONS(8839), + [sym_static_modifier] = ACTIONS(8839), + [sym__dim_keyword] = ACTIONS(8839), + [sym__redim_keyword] = ACTIONS(8839), + [aux_sym_get_accessor_token1] = ACTIONS(8839), + [aux_sym_set_accessor_token1] = ACTIONS(8839), + [aux_sym_const_declaration_token1] = ACTIONS(8839), + [anon_sym_LPAREN] = ACTIONS(8841), + [aux_sym_as_type_clause_token2] = ACTIONS(8839), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8839), + [aux_sym_visibility_token1] = ACTIONS(8839), + [aux_sym_visibility_token2] = ACTIONS(8839), + [aux_sym_elseif_fragment_token1] = ACTIONS(8839), + [aux_sym_else_fragment_token1] = ACTIONS(8839), + [aux_sym_select_statement_token1] = ACTIONS(8839), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8839), + [aux_sym__for_header_token1] = ACTIONS(8839), + [aux_sym_do_statement_token1] = ACTIONS(8839), + [aux_sym_do_condition_token1] = ACTIONS(8839), + [aux_sym_while_statement_token1] = ACTIONS(8839), + [aux_sym_with_statement_token1] = ACTIONS(8839), + [aux_sym_exit_statement_token1] = ACTIONS(8839), + [sym_end_statement] = ACTIONS(8841), + [aux_sym_on_goto_statement_token1] = ACTIONS(8839), + [aux_sym_on_goto_statement_token2] = ACTIONS(8839), + [aux_sym_on_error_statement_token2] = ACTIONS(8839), + [sym__ambiguous_redim_statement] = ACTIONS(8841), + [aux_sym_erase_statement_token1] = ACTIONS(8839), + [aux_sym_open_statement_token1] = ACTIONS(8839), + [aux_sym_file_mode_token2] = ACTIONS(8839), + [aux_sym_file_access_token2] = ACTIONS(8839), + [aux_sym_file_lock_token2] = ACTIONS(8839), + [aux_sym_print_statement_token1] = ACTIONS(8839), + [anon_sym_PLUS] = ACTIONS(8841), + [anon_sym_DASH] = ACTIONS(8839), + [anon_sym_QMARK] = ACTIONS(8841), + [aux_sym_close_statement_token1] = ACTIONS(8839), + [aux_sym_put_statement_token1] = ACTIONS(8839), + [aux_sym_unlock_statement_token1] = ACTIONS(8839), + [aux_sym_seek_statement_token1] = ACTIONS(8839), + [sym_reset_statement] = ACTIONS(8839), + [aux_sym_raise_event_statement_token1] = ACTIONS(8839), + [sym_stop_statement] = ACTIONS(8839), + [sym_beep_statement] = ACTIONS(8839), + [aux_sym_unload_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token2] = ACTIONS(8839), + [aux_sym_def_type_statement_token3] = ACTIONS(8839), + [aux_sym_def_type_statement_token4] = ACTIONS(8839), + [aux_sym_def_type_statement_token5] = ACTIONS(8839), + [aux_sym_def_type_statement_token6] = ACTIONS(8839), + [aux_sym_def_type_statement_token7] = ACTIONS(8839), + [aux_sym_def_type_statement_token8] = ACTIONS(8839), + [aux_sym_def_type_statement_token9] = ACTIONS(8839), + [aux_sym_def_type_statement_token10] = ACTIONS(8839), + [aux_sym_def_type_statement_token11] = ACTIONS(8839), + [aux_sym_def_type_statement_token12] = ACTIONS(8839), + [aux_sym_def_type_statement_token13] = ACTIONS(8839), + [aux_sym_def_type_statement_token14] = ACTIONS(8839), + [aux_sym_call_statement_token1] = ACTIONS(8839), + [sym__ambiguous_call_statement] = ACTIONS(8839), + [aux_sym_addressof_expression_token1] = ACTIONS(8839), + [aux_sym_type_of_expression_token1] = ACTIONS(8839), + [aux_sym_unary_expression_token1] = ACTIONS(8839), + [sym_string_literal] = ACTIONS(8841), + [sym_number_literal] = ACTIONS(8841), + [aux_sym_boolean_literal_token1] = ACTIONS(8839), + [aux_sym_boolean_literal_token2] = ACTIONS(8839), + [sym_nothing_literal] = ACTIONS(8839), + [sym_null_literal] = ACTIONS(8839), + [sym_empty_literal] = ACTIONS(8839), + [sym_date_literal] = ACTIONS(8841), + [anon_sym_POUND] = ACTIONS(8839), + }, + [STATE(6221)] = { + [sym_identifier] = ACTIONS(8717), + [sym_newline] = ACTIONS(8719), + [anon_sym_COLON] = ACTIONS(8719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8717), + [aux_sym_frm_property_statement_token1] = ACTIONS(8717), + [anon_sym_DOT] = ACTIONS(8717), + [anon_sym_BANG] = ACTIONS(8719), + [aux_sym__attribute_identifier_token1] = ACTIONS(8717), + [aux_sym_option_statement_token3] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8717), + [aux_sym_preprocessor_const_token1] = ACTIONS(8717), + [sym_static_modifier] = ACTIONS(8717), + [sym__dim_keyword] = ACTIONS(8717), + [sym__redim_keyword] = ACTIONS(8717), + [aux_sym_get_accessor_token1] = ACTIONS(8717), + [aux_sym_set_accessor_token1] = ACTIONS(8717), + [anon_sym_COMMA] = ACTIONS(11061), + [aux_sym_const_declaration_token1] = ACTIONS(8717), + [anon_sym_LPAREN] = ACTIONS(8719), + [aux_sym_as_type_clause_token2] = ACTIONS(8717), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8717), + [aux_sym_visibility_token1] = ACTIONS(8717), + [aux_sym_visibility_token2] = ACTIONS(8717), + [aux_sym_elseif_fragment_token1] = ACTIONS(8717), + [aux_sym_else_fragment_token1] = ACTIONS(8717), + [aux_sym_select_statement_token1] = ACTIONS(8717), + [aux_sym__for_header_token1] = ACTIONS(8717), + [aux_sym_do_statement_token1] = ACTIONS(8717), + [aux_sym_do_statement_token2] = ACTIONS(8717), + [aux_sym_do_condition_token1] = ACTIONS(8717), + [aux_sym_with_statement_token1] = ACTIONS(8717), + [aux_sym_exit_statement_token1] = ACTIONS(8717), + [sym_end_statement] = ACTIONS(8719), + [aux_sym_on_goto_statement_token1] = ACTIONS(8717), + [aux_sym_on_goto_statement_token2] = ACTIONS(8717), + [aux_sym_on_error_statement_token2] = ACTIONS(8717), + [sym__ambiguous_redim_statement] = ACTIONS(8719), + [aux_sym_erase_statement_token1] = ACTIONS(8717), + [aux_sym_open_statement_token1] = ACTIONS(8717), + [aux_sym_file_mode_token2] = ACTIONS(8717), + [aux_sym_file_access_token2] = ACTIONS(8717), + [aux_sym_file_lock_token2] = ACTIONS(8717), + [aux_sym_print_statement_token1] = ACTIONS(8717), + [anon_sym_PLUS] = ACTIONS(8719), + [anon_sym_DASH] = ACTIONS(8717), + [anon_sym_QMARK] = ACTIONS(8719), + [aux_sym_close_statement_token1] = ACTIONS(8717), + [aux_sym_put_statement_token1] = ACTIONS(8717), + [aux_sym_unlock_statement_token1] = ACTIONS(8717), + [aux_sym_seek_statement_token1] = ACTIONS(8717), + [sym_reset_statement] = ACTIONS(8717), + [aux_sym_raise_event_statement_token1] = ACTIONS(8717), + [sym_stop_statement] = ACTIONS(8717), + [sym_beep_statement] = ACTIONS(8717), + [aux_sym_unload_statement_token1] = ACTIONS(8717), + [aux_sym_def_type_statement_token1] = ACTIONS(8717), + [aux_sym_def_type_statement_token2] = ACTIONS(8717), + [aux_sym_def_type_statement_token3] = ACTIONS(8717), + [aux_sym_def_type_statement_token4] = ACTIONS(8717), + [aux_sym_def_type_statement_token5] = ACTIONS(8717), + [aux_sym_def_type_statement_token6] = ACTIONS(8717), + [aux_sym_def_type_statement_token7] = ACTIONS(8717), + [aux_sym_def_type_statement_token8] = ACTIONS(8717), + [aux_sym_def_type_statement_token9] = ACTIONS(8717), + [aux_sym_def_type_statement_token10] = ACTIONS(8717), + [aux_sym_def_type_statement_token11] = ACTIONS(8717), + [aux_sym_def_type_statement_token12] = ACTIONS(8717), + [aux_sym_def_type_statement_token13] = ACTIONS(8717), + [aux_sym_def_type_statement_token14] = ACTIONS(8717), + [aux_sym_call_statement_token1] = ACTIONS(8717), + [sym__ambiguous_call_statement] = ACTIONS(8717), + [aux_sym_addressof_expression_token1] = ACTIONS(8717), + [aux_sym_type_of_expression_token1] = ACTIONS(8717), + [aux_sym_unary_expression_token1] = ACTIONS(8717), + [sym_string_literal] = ACTIONS(8719), + [sym_number_literal] = ACTIONS(8719), + [aux_sym_boolean_literal_token1] = ACTIONS(8717), + [aux_sym_boolean_literal_token2] = ACTIONS(8717), + [sym_nothing_literal] = ACTIONS(8717), + [sym_null_literal] = ACTIONS(8717), + [sym_empty_literal] = ACTIONS(8717), + [sym_date_literal] = ACTIONS(8719), + [anon_sym_POUND] = ACTIONS(8717), + }, + [STATE(6222)] = { + [aux_sym__argument_sequence_repeat1] = STATE(6222), + [sym_identifier] = ACTIONS(8533), + [sym_newline] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(8535), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8533), + [aux_sym_frm_property_statement_token1] = ACTIONS(8533), + [anon_sym_DOT] = ACTIONS(8533), + [anon_sym_BANG] = ACTIONS(8535), + [aux_sym__attribute_identifier_token1] = ACTIONS(8533), + [aux_sym_option_statement_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8533), + [aux_sym_preprocessor_const_token1] = ACTIONS(8533), + [sym_static_modifier] = ACTIONS(8533), + [sym__dim_keyword] = ACTIONS(8533), + [sym__redim_keyword] = ACTIONS(8533), + [aux_sym_get_accessor_token1] = ACTIONS(8533), + [aux_sym_set_accessor_token1] = ACTIONS(8533), + [anon_sym_COMMA] = ACTIONS(11063), + [aux_sym_const_declaration_token1] = ACTIONS(8533), + [anon_sym_LPAREN] = ACTIONS(8535), + [aux_sym_as_type_clause_token2] = ACTIONS(8533), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8533), + [aux_sym_visibility_token1] = ACTIONS(8533), + [aux_sym_visibility_token2] = ACTIONS(8533), + [aux_sym_elseif_fragment_token1] = ACTIONS(8533), + [aux_sym_else_fragment_token1] = ACTIONS(8533), + [aux_sym_select_statement_token1] = ACTIONS(8533), + [aux_sym__for_header_token1] = ACTIONS(8533), + [aux_sym_do_statement_token1] = ACTIONS(8533), + [aux_sym_do_condition_token1] = ACTIONS(8533), + [aux_sym_with_statement_token1] = ACTIONS(8533), + [aux_sym_exit_statement_token1] = ACTIONS(8533), + [sym_end_statement] = ACTIONS(8535), + [aux_sym_on_goto_statement_token1] = ACTIONS(8533), + [aux_sym_on_goto_statement_token2] = ACTIONS(8533), + [aux_sym_on_error_statement_token2] = ACTIONS(8533), + [sym__ambiguous_redim_statement] = ACTIONS(8535), + [aux_sym_erase_statement_token1] = ACTIONS(8533), + [aux_sym_open_statement_token1] = ACTIONS(8533), + [aux_sym_file_mode_token2] = ACTIONS(8533), + [aux_sym_file_access_token2] = ACTIONS(8533), + [aux_sym_file_lock_token2] = ACTIONS(8533), + [aux_sym_print_statement_token1] = ACTIONS(8533), + [anon_sym_PLUS] = ACTIONS(8535), + [anon_sym_DASH] = ACTIONS(8533), + [anon_sym_QMARK] = ACTIONS(8535), + [aux_sym_close_statement_token1] = ACTIONS(8533), + [aux_sym_put_statement_token1] = ACTIONS(8533), + [aux_sym_unlock_statement_token1] = ACTIONS(8533), + [aux_sym_seek_statement_token1] = ACTIONS(8533), + [sym_reset_statement] = ACTIONS(8533), + [aux_sym_raise_event_statement_token1] = ACTIONS(8533), + [sym_stop_statement] = ACTIONS(8533), + [sym_beep_statement] = ACTIONS(8533), + [aux_sym_unload_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token2] = ACTIONS(8533), + [aux_sym_def_type_statement_token3] = ACTIONS(8533), + [aux_sym_def_type_statement_token4] = ACTIONS(8533), + [aux_sym_def_type_statement_token5] = ACTIONS(8533), + [aux_sym_def_type_statement_token6] = ACTIONS(8533), + [aux_sym_def_type_statement_token7] = ACTIONS(8533), + [aux_sym_def_type_statement_token8] = ACTIONS(8533), + [aux_sym_def_type_statement_token9] = ACTIONS(8533), + [aux_sym_def_type_statement_token10] = ACTIONS(8533), + [aux_sym_def_type_statement_token11] = ACTIONS(8533), + [aux_sym_def_type_statement_token12] = ACTIONS(8533), + [aux_sym_def_type_statement_token13] = ACTIONS(8533), + [aux_sym_def_type_statement_token14] = ACTIONS(8533), + [aux_sym_call_statement_token1] = ACTIONS(8533), + [sym__ambiguous_call_statement] = ACTIONS(8533), + [aux_sym_addressof_expression_token1] = ACTIONS(8533), + [aux_sym_type_of_expression_token1] = ACTIONS(8533), + [aux_sym_unary_expression_token1] = ACTIONS(8533), + [sym_string_literal] = ACTIONS(8535), + [sym_number_literal] = ACTIONS(8535), + [aux_sym_boolean_literal_token1] = ACTIONS(8533), + [aux_sym_boolean_literal_token2] = ACTIONS(8533), + [sym_nothing_literal] = ACTIONS(8533), + [sym_null_literal] = ACTIONS(8533), + [sym_empty_literal] = ACTIONS(8533), + [sym_date_literal] = ACTIONS(8535), + [anon_sym_POUND] = ACTIONS(8533), + }, + [STATE(6223)] = { + [aux_sym_variable_declaration_repeat1] = STATE(6210), + [sym_identifier] = ACTIONS(8095), + [sym_newline] = ACTIONS(8097), + [anon_sym_COLON] = ACTIONS(8097), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8095), + [aux_sym_frm_property_statement_token1] = ACTIONS(8095), + [anon_sym_DOT] = ACTIONS(8095), + [anon_sym_BANG] = ACTIONS(8097), + [aux_sym__attribute_identifier_token1] = ACTIONS(8095), + [aux_sym_option_statement_token3] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8095), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8095), + [aux_sym_preprocessor_const_token1] = ACTIONS(8095), + [sym_static_modifier] = ACTIONS(8095), + [sym__dim_keyword] = ACTIONS(8095), + [sym__redim_keyword] = ACTIONS(8095), + [aux_sym_get_accessor_token1] = ACTIONS(8095), + [aux_sym_set_accessor_token1] = ACTIONS(8095), + [anon_sym_COMMA] = ACTIONS(10844), + [aux_sym_const_declaration_token1] = ACTIONS(8095), + [anon_sym_LPAREN] = ACTIONS(8097), + [aux_sym_as_type_clause_token2] = ACTIONS(8095), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8095), + [aux_sym_visibility_token1] = ACTIONS(8095), + [aux_sym_visibility_token2] = ACTIONS(8095), + [aux_sym_elseif_fragment_token1] = ACTIONS(8095), + [aux_sym_else_fragment_token1] = ACTIONS(8095), + [aux_sym_select_statement_token1] = ACTIONS(8095), + [aux_sym__for_header_token1] = ACTIONS(8095), + [aux_sym_do_statement_token1] = ACTIONS(8095), + [aux_sym_do_condition_token1] = ACTIONS(8095), + [aux_sym_with_statement_token1] = ACTIONS(8095), + [aux_sym_exit_statement_token1] = ACTIONS(8095), + [sym_end_statement] = ACTIONS(8097), + [aux_sym_on_goto_statement_token1] = ACTIONS(8095), + [aux_sym_on_goto_statement_token2] = ACTIONS(8095), + [aux_sym_on_error_statement_token2] = ACTIONS(8095), + [sym__ambiguous_redim_statement] = ACTIONS(8097), + [aux_sym_erase_statement_token1] = ACTIONS(8095), + [aux_sym_open_statement_token1] = ACTIONS(8095), + [aux_sym_file_mode_token2] = ACTIONS(8095), + [aux_sym_file_access_token2] = ACTIONS(8095), + [aux_sym_file_lock_token2] = ACTIONS(8095), + [aux_sym_print_statement_token1] = ACTIONS(8095), + [anon_sym_PLUS] = ACTIONS(8097), + [anon_sym_DASH] = ACTIONS(8095), + [anon_sym_QMARK] = ACTIONS(8097), + [aux_sym_close_statement_token1] = ACTIONS(8095), + [aux_sym_put_statement_token1] = ACTIONS(8095), + [aux_sym_unlock_statement_token1] = ACTIONS(8095), + [aux_sym_seek_statement_token1] = ACTIONS(8095), + [sym_reset_statement] = ACTIONS(8095), + [aux_sym_raise_event_statement_token1] = ACTIONS(8095), + [sym_stop_statement] = ACTIONS(8095), + [sym_beep_statement] = ACTIONS(8095), + [aux_sym_unload_statement_token1] = ACTIONS(8095), + [aux_sym_def_type_statement_token1] = ACTIONS(8095), + [aux_sym_def_type_statement_token2] = ACTIONS(8095), + [aux_sym_def_type_statement_token3] = ACTIONS(8095), + [aux_sym_def_type_statement_token4] = ACTIONS(8095), + [aux_sym_def_type_statement_token5] = ACTIONS(8095), + [aux_sym_def_type_statement_token6] = ACTIONS(8095), + [aux_sym_def_type_statement_token7] = ACTIONS(8095), + [aux_sym_def_type_statement_token8] = ACTIONS(8095), + [aux_sym_def_type_statement_token9] = ACTIONS(8095), + [aux_sym_def_type_statement_token10] = ACTIONS(8095), + [aux_sym_def_type_statement_token11] = ACTIONS(8095), + [aux_sym_def_type_statement_token12] = ACTIONS(8095), + [aux_sym_def_type_statement_token13] = ACTIONS(8095), + [aux_sym_def_type_statement_token14] = ACTIONS(8095), + [aux_sym_call_statement_token1] = ACTIONS(8095), + [sym__ambiguous_call_statement] = ACTIONS(8095), + [aux_sym_addressof_expression_token1] = ACTIONS(8095), + [aux_sym_type_of_expression_token1] = ACTIONS(8095), + [aux_sym_unary_expression_token1] = ACTIONS(8095), + [sym_string_literal] = ACTIONS(8097), + [sym_number_literal] = ACTIONS(8097), + [aux_sym_boolean_literal_token1] = ACTIONS(8095), + [aux_sym_boolean_literal_token2] = ACTIONS(8095), + [sym_nothing_literal] = ACTIONS(8095), + [sym_null_literal] = ACTIONS(8095), + [sym_empty_literal] = ACTIONS(8095), + [sym_date_literal] = ACTIONS(8097), + [anon_sym_POUND] = ACTIONS(8095), + }, + [STATE(6224)] = { + [sym_identifier] = ACTIONS(8939), + [sym_newline] = ACTIONS(8941), + [anon_sym_COLON] = ACTIONS(8941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8939), + [aux_sym_frm_property_statement_token1] = ACTIONS(8939), + [anon_sym_DOT] = ACTIONS(8939), + [anon_sym_BANG] = ACTIONS(8941), + [aux_sym__attribute_identifier_token1] = ACTIONS(8939), + [aux_sym_option_statement_token3] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8939), + [aux_sym_preprocessor_const_token1] = ACTIONS(8939), + [sym_static_modifier] = ACTIONS(8939), + [sym__dim_keyword] = ACTIONS(8939), + [sym__redim_keyword] = ACTIONS(8939), + [aux_sym_get_accessor_token1] = ACTIONS(8939), + [aux_sym_set_accessor_token1] = ACTIONS(8939), + [anon_sym_COMMA] = ACTIONS(11066), + [aux_sym_const_declaration_token1] = ACTIONS(8939), + [anon_sym_LPAREN] = ACTIONS(8941), + [aux_sym_as_type_clause_token2] = ACTIONS(8939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8939), + [aux_sym_visibility_token1] = ACTIONS(8939), + [aux_sym_visibility_token2] = ACTIONS(8939), + [aux_sym_elseif_fragment_token1] = ACTIONS(8939), + [aux_sym_else_fragment_token1] = ACTIONS(8939), + [aux_sym_select_statement_token1] = ACTIONS(8939), + [aux_sym_select_statement_token2] = ACTIONS(8939), + [aux_sym__for_header_token1] = ACTIONS(8939), + [aux_sym_do_statement_token1] = ACTIONS(8939), + [aux_sym_do_condition_token1] = ACTIONS(8939), + [aux_sym_with_statement_token1] = ACTIONS(8939), + [aux_sym_exit_statement_token1] = ACTIONS(8939), + [sym_end_statement] = ACTIONS(8941), + [aux_sym_on_goto_statement_token1] = ACTIONS(8939), + [aux_sym_on_goto_statement_token2] = ACTIONS(8939), + [aux_sym_on_error_statement_token2] = ACTIONS(8939), + [sym__ambiguous_redim_statement] = ACTIONS(8941), + [aux_sym_erase_statement_token1] = ACTIONS(8939), + [aux_sym_open_statement_token1] = ACTIONS(8939), + [aux_sym_file_mode_token2] = ACTIONS(8939), + [aux_sym_file_access_token2] = ACTIONS(8939), + [aux_sym_file_lock_token2] = ACTIONS(8939), + [aux_sym_print_statement_token1] = ACTIONS(8939), + [anon_sym_PLUS] = ACTIONS(8941), + [anon_sym_DASH] = ACTIONS(8939), + [anon_sym_QMARK] = ACTIONS(8941), + [aux_sym_close_statement_token1] = ACTIONS(8939), + [aux_sym_put_statement_token1] = ACTIONS(8939), + [aux_sym_unlock_statement_token1] = ACTIONS(8939), + [aux_sym_seek_statement_token1] = ACTIONS(8939), + [sym_reset_statement] = ACTIONS(8939), + [aux_sym_raise_event_statement_token1] = ACTIONS(8939), + [sym_stop_statement] = ACTIONS(8939), + [sym_beep_statement] = ACTIONS(8939), + [aux_sym_unload_statement_token1] = ACTIONS(8939), + [aux_sym_def_type_statement_token1] = ACTIONS(8939), + [aux_sym_def_type_statement_token2] = ACTIONS(8939), + [aux_sym_def_type_statement_token3] = ACTIONS(8939), + [aux_sym_def_type_statement_token4] = ACTIONS(8939), + [aux_sym_def_type_statement_token5] = ACTIONS(8939), + [aux_sym_def_type_statement_token6] = ACTIONS(8939), + [aux_sym_def_type_statement_token7] = ACTIONS(8939), + [aux_sym_def_type_statement_token8] = ACTIONS(8939), + [aux_sym_def_type_statement_token9] = ACTIONS(8939), + [aux_sym_def_type_statement_token10] = ACTIONS(8939), + [aux_sym_def_type_statement_token11] = ACTIONS(8939), + [aux_sym_def_type_statement_token12] = ACTIONS(8939), + [aux_sym_def_type_statement_token13] = ACTIONS(8939), + [aux_sym_def_type_statement_token14] = ACTIONS(8939), + [aux_sym_call_statement_token1] = ACTIONS(8939), + [sym__ambiguous_call_statement] = ACTIONS(8939), + [aux_sym_addressof_expression_token1] = ACTIONS(8939), + [aux_sym_type_of_expression_token1] = ACTIONS(8939), + [aux_sym_unary_expression_token1] = ACTIONS(8939), + [sym_string_literal] = ACTIONS(8941), + [sym_number_literal] = ACTIONS(8941), + [aux_sym_boolean_literal_token1] = ACTIONS(8939), + [aux_sym_boolean_literal_token2] = ACTIONS(8939), + [sym_nothing_literal] = ACTIONS(8939), + [sym_null_literal] = ACTIONS(8939), + [sym_empty_literal] = ACTIONS(8939), + [sym_date_literal] = ACTIONS(8941), + [anon_sym_POUND] = ACTIONS(8939), + }, + [STATE(6225)] = { + [sym_argument_list] = STATE(6780), + [sym_identifier] = ACTIONS(8843), + [sym_newline] = ACTIONS(8845), + [anon_sym_COLON] = ACTIONS(8845), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8843), + [aux_sym_frm_property_statement_token1] = ACTIONS(8843), + [anon_sym_DOT] = ACTIONS(8843), + [anon_sym_BANG] = ACTIONS(8845), + [aux_sym__attribute_identifier_token1] = ACTIONS(8843), + [aux_sym_option_statement_token3] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8843), + [aux_sym_preprocessor_const_token1] = ACTIONS(8843), + [sym_static_modifier] = ACTIONS(8843), + [sym__dim_keyword] = ACTIONS(8843), + [sym__redim_keyword] = ACTIONS(8843), + [aux_sym_get_accessor_token1] = ACTIONS(8843), + [aux_sym_set_accessor_token1] = ACTIONS(8843), + [aux_sym_const_declaration_token1] = ACTIONS(8843), + [anon_sym_LPAREN] = ACTIONS(10508), + [aux_sym_as_type_clause_token2] = ACTIONS(8843), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8843), + [aux_sym_visibility_token1] = ACTIONS(8843), + [aux_sym_visibility_token2] = ACTIONS(8843), + [aux_sym_elseif_fragment_token1] = ACTIONS(8843), + [aux_sym_else_fragment_token1] = ACTIONS(8843), + [aux_sym_select_statement_token1] = ACTIONS(8843), + [aux_sym__for_header_token1] = ACTIONS(8843), + [aux_sym_do_statement_token1] = ACTIONS(8843), + [aux_sym_do_statement_token2] = ACTIONS(8843), + [aux_sym_do_condition_token1] = ACTIONS(8843), + [aux_sym_with_statement_token1] = ACTIONS(8843), + [aux_sym_exit_statement_token1] = ACTIONS(8843), + [sym_end_statement] = ACTIONS(8845), + [aux_sym_on_goto_statement_token1] = ACTIONS(8843), + [aux_sym_on_goto_statement_token2] = ACTIONS(8843), + [aux_sym_on_error_statement_token2] = ACTIONS(8843), + [sym__ambiguous_redim_statement] = ACTIONS(8845), + [aux_sym_erase_statement_token1] = ACTIONS(8843), + [aux_sym_open_statement_token1] = ACTIONS(8843), + [aux_sym_file_mode_token2] = ACTIONS(8843), + [aux_sym_file_access_token2] = ACTIONS(8843), + [aux_sym_file_lock_token2] = ACTIONS(8843), + [aux_sym_print_statement_token1] = ACTIONS(8843), + [anon_sym_PLUS] = ACTIONS(8845), + [anon_sym_DASH] = ACTIONS(8843), + [anon_sym_QMARK] = ACTIONS(8845), + [aux_sym_close_statement_token1] = ACTIONS(8843), + [aux_sym_put_statement_token1] = ACTIONS(8843), + [aux_sym_unlock_statement_token1] = ACTIONS(8843), + [aux_sym_seek_statement_token1] = ACTIONS(8843), + [sym_reset_statement] = ACTIONS(8843), + [aux_sym_raise_event_statement_token1] = ACTIONS(8843), + [sym_stop_statement] = ACTIONS(8843), + [sym_beep_statement] = ACTIONS(8843), + [aux_sym_unload_statement_token1] = ACTIONS(8843), + [aux_sym_def_type_statement_token1] = ACTIONS(8843), + [aux_sym_def_type_statement_token2] = ACTIONS(8843), + [aux_sym_def_type_statement_token3] = ACTIONS(8843), + [aux_sym_def_type_statement_token4] = ACTIONS(8843), + [aux_sym_def_type_statement_token5] = ACTIONS(8843), + [aux_sym_def_type_statement_token6] = ACTIONS(8843), + [aux_sym_def_type_statement_token7] = ACTIONS(8843), + [aux_sym_def_type_statement_token8] = ACTIONS(8843), + [aux_sym_def_type_statement_token9] = ACTIONS(8843), + [aux_sym_def_type_statement_token10] = ACTIONS(8843), + [aux_sym_def_type_statement_token11] = ACTIONS(8843), + [aux_sym_def_type_statement_token12] = ACTIONS(8843), + [aux_sym_def_type_statement_token13] = ACTIONS(8843), + [aux_sym_def_type_statement_token14] = ACTIONS(8843), + [aux_sym_call_statement_token1] = ACTIONS(8843), + [sym__ambiguous_call_statement] = ACTIONS(8843), + [aux_sym_addressof_expression_token1] = ACTIONS(8843), + [aux_sym_type_of_expression_token1] = ACTIONS(8843), + [aux_sym_unary_expression_token1] = ACTIONS(8843), + [sym_string_literal] = ACTIONS(8845), + [sym_number_literal] = ACTIONS(8845), + [aux_sym_boolean_literal_token1] = ACTIONS(8843), + [aux_sym_boolean_literal_token2] = ACTIONS(8843), + [sym_nothing_literal] = ACTIONS(8843), + [sym_null_literal] = ACTIONS(8843), + [sym_empty_literal] = ACTIONS(8843), + [sym_date_literal] = ACTIONS(8845), + [anon_sym_POUND] = ACTIONS(8843), + }, + [STATE(6226)] = { + [sym_identifier] = ACTIONS(8853), + [sym_newline] = ACTIONS(8855), + [anon_sym_COLON] = ACTIONS(8855), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8853), + [aux_sym_frm_property_statement_token1] = ACTIONS(8853), + [anon_sym_DOT] = ACTIONS(8853), + [anon_sym_BANG] = ACTIONS(8855), + [aux_sym__attribute_identifier_token1] = ACTIONS(8853), + [aux_sym_option_statement_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8853), + [aux_sym_preprocessor_const_token1] = ACTIONS(8853), + [sym_static_modifier] = ACTIONS(8853), + [sym__dim_keyword] = ACTIONS(8853), + [sym__redim_keyword] = ACTIONS(8853), + [aux_sym_get_accessor_token1] = ACTIONS(8853), + [aux_sym_set_accessor_token1] = ACTIONS(8853), + [aux_sym_const_declaration_token1] = ACTIONS(8853), + [anon_sym_LPAREN] = ACTIONS(8855), + [aux_sym_as_type_clause_token2] = ACTIONS(8853), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8853), + [aux_sym_visibility_token1] = ACTIONS(8853), + [aux_sym_visibility_token2] = ACTIONS(8853), + [aux_sym_elseif_fragment_token1] = ACTIONS(8853), + [aux_sym_else_fragment_token1] = ACTIONS(8853), + [aux_sym_select_statement_token1] = ACTIONS(8853), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8853), + [aux_sym__for_header_token1] = ACTIONS(8853), + [aux_sym_do_statement_token1] = ACTIONS(8853), + [aux_sym_do_condition_token1] = ACTIONS(8853), + [aux_sym_while_statement_token1] = ACTIONS(8853), + [aux_sym_with_statement_token1] = ACTIONS(8853), + [aux_sym_exit_statement_token1] = ACTIONS(8853), + [sym_end_statement] = ACTIONS(8855), + [aux_sym_on_goto_statement_token1] = ACTIONS(8853), + [aux_sym_on_goto_statement_token2] = ACTIONS(8853), + [aux_sym_on_error_statement_token2] = ACTIONS(8853), + [sym__ambiguous_redim_statement] = ACTIONS(8855), + [aux_sym_erase_statement_token1] = ACTIONS(8853), + [aux_sym_open_statement_token1] = ACTIONS(8853), + [aux_sym_file_mode_token2] = ACTIONS(8853), + [aux_sym_file_access_token2] = ACTIONS(8853), + [aux_sym_file_lock_token2] = ACTIONS(8853), + [aux_sym_print_statement_token1] = ACTIONS(8853), + [anon_sym_PLUS] = ACTIONS(8855), + [anon_sym_DASH] = ACTIONS(8853), + [anon_sym_QMARK] = ACTIONS(8855), + [aux_sym_close_statement_token1] = ACTIONS(8853), + [aux_sym_put_statement_token1] = ACTIONS(8853), + [aux_sym_unlock_statement_token1] = ACTIONS(8853), + [aux_sym_seek_statement_token1] = ACTIONS(8853), + [sym_reset_statement] = ACTIONS(8853), + [aux_sym_raise_event_statement_token1] = ACTIONS(8853), + [sym_stop_statement] = ACTIONS(8853), + [sym_beep_statement] = ACTIONS(8853), + [aux_sym_unload_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token2] = ACTIONS(8853), + [aux_sym_def_type_statement_token3] = ACTIONS(8853), + [aux_sym_def_type_statement_token4] = ACTIONS(8853), + [aux_sym_def_type_statement_token5] = ACTIONS(8853), + [aux_sym_def_type_statement_token6] = ACTIONS(8853), + [aux_sym_def_type_statement_token7] = ACTIONS(8853), + [aux_sym_def_type_statement_token8] = ACTIONS(8853), + [aux_sym_def_type_statement_token9] = ACTIONS(8853), + [aux_sym_def_type_statement_token10] = ACTIONS(8853), + [aux_sym_def_type_statement_token11] = ACTIONS(8853), + [aux_sym_def_type_statement_token12] = ACTIONS(8853), + [aux_sym_def_type_statement_token13] = ACTIONS(8853), + [aux_sym_def_type_statement_token14] = ACTIONS(8853), + [aux_sym_call_statement_token1] = ACTIONS(8853), + [sym__ambiguous_call_statement] = ACTIONS(8853), + [aux_sym_addressof_expression_token1] = ACTIONS(8853), + [aux_sym_type_of_expression_token1] = ACTIONS(8853), + [aux_sym_unary_expression_token1] = ACTIONS(8853), + [sym_string_literal] = ACTIONS(8855), + [sym_number_literal] = ACTIONS(8855), + [aux_sym_boolean_literal_token1] = ACTIONS(8853), + [aux_sym_boolean_literal_token2] = ACTIONS(8853), + [sym_nothing_literal] = ACTIONS(8853), + [sym_null_literal] = ACTIONS(8853), + [sym_empty_literal] = ACTIONS(8853), + [sym_date_literal] = ACTIONS(8855), + [anon_sym_POUND] = ACTIONS(8853), + }, + [STATE(6227)] = { + [sym_identifier] = ACTIONS(8635), + [sym_newline] = ACTIONS(8637), + [anon_sym_COLON] = ACTIONS(8637), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8635), + [aux_sym_frm_property_statement_token1] = ACTIONS(8635), + [anon_sym_DOT] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(8637), + [aux_sym__attribute_identifier_token1] = ACTIONS(8635), + [aux_sym_option_statement_token3] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8635), + [aux_sym_preprocessor_const_token1] = ACTIONS(8635), + [sym_static_modifier] = ACTIONS(8635), + [sym__dim_keyword] = ACTIONS(8635), + [sym__redim_keyword] = ACTIONS(8635), + [aux_sym_get_accessor_token1] = ACTIONS(8635), + [aux_sym_set_accessor_token1] = ACTIONS(8635), + [anon_sym_COMMA] = ACTIONS(11068), + [aux_sym_const_declaration_token1] = ACTIONS(8635), + [anon_sym_LPAREN] = ACTIONS(8637), + [aux_sym_as_type_clause_token2] = ACTIONS(8635), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8635), + [aux_sym_visibility_token1] = ACTIONS(8635), + [aux_sym_visibility_token2] = ACTIONS(8635), + [aux_sym_elseif_fragment_token1] = ACTIONS(8635), + [aux_sym_else_fragment_token1] = ACTIONS(8635), + [aux_sym_select_statement_token1] = ACTIONS(8635), + [aux_sym_select_statement_token2] = ACTIONS(8635), + [aux_sym__for_header_token1] = ACTIONS(8635), + [aux_sym_do_statement_token1] = ACTIONS(8635), + [aux_sym_do_condition_token1] = ACTIONS(8635), + [aux_sym_with_statement_token1] = ACTIONS(8635), + [aux_sym_exit_statement_token1] = ACTIONS(8635), + [sym_end_statement] = ACTIONS(8637), + [aux_sym_on_goto_statement_token1] = ACTIONS(8635), + [aux_sym_on_goto_statement_token2] = ACTIONS(8635), + [aux_sym_on_error_statement_token2] = ACTIONS(8635), + [sym__ambiguous_redim_statement] = ACTIONS(8637), + [aux_sym_erase_statement_token1] = ACTIONS(8635), + [aux_sym_open_statement_token1] = ACTIONS(8635), + [aux_sym_file_mode_token2] = ACTIONS(8635), + [aux_sym_file_access_token2] = ACTIONS(8635), + [aux_sym_file_lock_token2] = ACTIONS(8635), + [aux_sym_print_statement_token1] = ACTIONS(8635), + [anon_sym_PLUS] = ACTIONS(8637), + [anon_sym_DASH] = ACTIONS(8635), + [anon_sym_QMARK] = ACTIONS(8637), + [aux_sym_close_statement_token1] = ACTIONS(8635), + [aux_sym_put_statement_token1] = ACTIONS(8635), + [aux_sym_unlock_statement_token1] = ACTIONS(8635), + [aux_sym_seek_statement_token1] = ACTIONS(8635), + [sym_reset_statement] = ACTIONS(8635), + [aux_sym_raise_event_statement_token1] = ACTIONS(8635), + [sym_stop_statement] = ACTIONS(8635), + [sym_beep_statement] = ACTIONS(8635), + [aux_sym_unload_statement_token1] = ACTIONS(8635), + [aux_sym_def_type_statement_token1] = ACTIONS(8635), + [aux_sym_def_type_statement_token2] = ACTIONS(8635), + [aux_sym_def_type_statement_token3] = ACTIONS(8635), + [aux_sym_def_type_statement_token4] = ACTIONS(8635), + [aux_sym_def_type_statement_token5] = ACTIONS(8635), + [aux_sym_def_type_statement_token6] = ACTIONS(8635), + [aux_sym_def_type_statement_token7] = ACTIONS(8635), + [aux_sym_def_type_statement_token8] = ACTIONS(8635), + [aux_sym_def_type_statement_token9] = ACTIONS(8635), + [aux_sym_def_type_statement_token10] = ACTIONS(8635), + [aux_sym_def_type_statement_token11] = ACTIONS(8635), + [aux_sym_def_type_statement_token12] = ACTIONS(8635), + [aux_sym_def_type_statement_token13] = ACTIONS(8635), + [aux_sym_def_type_statement_token14] = ACTIONS(8635), + [aux_sym_call_statement_token1] = ACTIONS(8635), + [sym__ambiguous_call_statement] = ACTIONS(8635), + [aux_sym_addressof_expression_token1] = ACTIONS(8635), + [aux_sym_type_of_expression_token1] = ACTIONS(8635), + [aux_sym_unary_expression_token1] = ACTIONS(8635), + [sym_string_literal] = ACTIONS(8637), + [sym_number_literal] = ACTIONS(8637), + [aux_sym_boolean_literal_token1] = ACTIONS(8635), + [aux_sym_boolean_literal_token2] = ACTIONS(8635), + [sym_nothing_literal] = ACTIONS(8635), + [sym_null_literal] = ACTIONS(8635), + [sym_empty_literal] = ACTIONS(8635), + [sym_date_literal] = ACTIONS(8637), + [anon_sym_POUND] = ACTIONS(8635), + }, + [STATE(6228)] = { + [sym_identifier] = ACTIONS(8713), + [sym_newline] = ACTIONS(8715), + [anon_sym_COLON] = ACTIONS(8715), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8713), + [aux_sym_frm_property_statement_token1] = ACTIONS(8713), + [anon_sym_DOT] = ACTIONS(8713), + [anon_sym_BANG] = ACTIONS(8715), + [aux_sym__attribute_identifier_token1] = ACTIONS(8713), + [aux_sym_option_statement_token3] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8713), + [aux_sym_preprocessor_const_token1] = ACTIONS(8713), + [sym_static_modifier] = ACTIONS(8713), + [sym__dim_keyword] = ACTIONS(8713), + [sym__redim_keyword] = ACTIONS(8713), + [aux_sym_get_accessor_token1] = ACTIONS(8713), + [aux_sym_set_accessor_token1] = ACTIONS(8713), + [anon_sym_COMMA] = ACTIONS(8715), + [aux_sym_const_declaration_token1] = ACTIONS(8713), + [anon_sym_LPAREN] = ACTIONS(8715), + [aux_sym_as_type_clause_token2] = ACTIONS(8713), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8713), + [aux_sym_visibility_token1] = ACTIONS(8713), + [aux_sym_visibility_token2] = ACTIONS(8713), + [aux_sym_elseif_fragment_token1] = ACTIONS(8713), + [aux_sym_else_fragment_token1] = ACTIONS(8713), + [aux_sym_select_statement_token1] = ACTIONS(8713), + [aux_sym_select_statement_token2] = ACTIONS(8713), + [aux_sym__for_header_token1] = ACTIONS(8713), + [aux_sym_do_statement_token1] = ACTIONS(8713), + [aux_sym_do_condition_token1] = ACTIONS(8713), + [aux_sym_with_statement_token1] = ACTIONS(8713), + [aux_sym_exit_statement_token1] = ACTIONS(8713), + [sym_end_statement] = ACTIONS(8715), + [aux_sym_on_goto_statement_token1] = ACTIONS(8713), + [aux_sym_on_goto_statement_token2] = ACTIONS(8713), + [aux_sym_on_error_statement_token2] = ACTIONS(8713), + [sym__ambiguous_redim_statement] = ACTIONS(8715), + [aux_sym_erase_statement_token1] = ACTIONS(8713), + [aux_sym_open_statement_token1] = ACTIONS(8713), + [aux_sym_file_mode_token2] = ACTIONS(8713), + [aux_sym_file_access_token2] = ACTIONS(8713), + [aux_sym_file_lock_token2] = ACTIONS(8713), + [aux_sym_print_statement_token1] = ACTIONS(8713), + [anon_sym_PLUS] = ACTIONS(8715), + [anon_sym_DASH] = ACTIONS(8713), + [anon_sym_QMARK] = ACTIONS(8715), + [aux_sym_close_statement_token1] = ACTIONS(8713), + [aux_sym_put_statement_token1] = ACTIONS(8713), + [aux_sym_unlock_statement_token1] = ACTIONS(8713), + [aux_sym_seek_statement_token1] = ACTIONS(8713), + [sym_reset_statement] = ACTIONS(8713), + [aux_sym_raise_event_statement_token1] = ACTIONS(8713), + [sym_stop_statement] = ACTIONS(8713), + [sym_beep_statement] = ACTIONS(8713), + [aux_sym_unload_statement_token1] = ACTIONS(8713), + [aux_sym_def_type_statement_token1] = ACTIONS(8713), + [aux_sym_def_type_statement_token2] = ACTIONS(8713), + [aux_sym_def_type_statement_token3] = ACTIONS(8713), + [aux_sym_def_type_statement_token4] = ACTIONS(8713), + [aux_sym_def_type_statement_token5] = ACTIONS(8713), + [aux_sym_def_type_statement_token6] = ACTIONS(8713), + [aux_sym_def_type_statement_token7] = ACTIONS(8713), + [aux_sym_def_type_statement_token8] = ACTIONS(8713), + [aux_sym_def_type_statement_token9] = ACTIONS(8713), + [aux_sym_def_type_statement_token10] = ACTIONS(8713), + [aux_sym_def_type_statement_token11] = ACTIONS(8713), + [aux_sym_def_type_statement_token12] = ACTIONS(8713), + [aux_sym_def_type_statement_token13] = ACTIONS(8713), + [aux_sym_def_type_statement_token14] = ACTIONS(8713), + [aux_sym_call_statement_token1] = ACTIONS(8713), + [sym__ambiguous_call_statement] = ACTIONS(8713), + [aux_sym_addressof_expression_token1] = ACTIONS(8713), + [aux_sym_type_of_expression_token1] = ACTIONS(8713), + [aux_sym_unary_expression_token1] = ACTIONS(8713), + [sym_string_literal] = ACTIONS(8715), + [sym_number_literal] = ACTIONS(8715), + [aux_sym_boolean_literal_token1] = ACTIONS(8713), + [aux_sym_boolean_literal_token2] = ACTIONS(8713), + [sym_nothing_literal] = ACTIONS(8713), + [sym_null_literal] = ACTIONS(8713), + [sym_empty_literal] = ACTIONS(8713), + [sym_date_literal] = ACTIONS(8715), + [anon_sym_POUND] = ACTIONS(8713), + }, + [STATE(6229)] = { + [sym_identifier] = ACTIONS(8739), + [sym_newline] = ACTIONS(8741), + [anon_sym_COLON] = ACTIONS(8741), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8739), + [aux_sym_frm_property_statement_token1] = ACTIONS(8739), + [anon_sym_DOT] = ACTIONS(8739), + [anon_sym_BANG] = ACTIONS(8741), + [aux_sym__attribute_identifier_token1] = ACTIONS(8739), + [aux_sym_option_statement_token3] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8739), + [aux_sym_preprocessor_const_token1] = ACTIONS(8739), + [sym_static_modifier] = ACTIONS(8739), + [sym__dim_keyword] = ACTIONS(8739), + [sym__redim_keyword] = ACTIONS(8739), + [aux_sym_get_accessor_token1] = ACTIONS(8739), + [aux_sym_set_accessor_token1] = ACTIONS(8739), + [anon_sym_COMMA] = ACTIONS(11070), + [aux_sym_const_declaration_token1] = ACTIONS(8739), + [anon_sym_LPAREN] = ACTIONS(8741), + [aux_sym_as_type_clause_token2] = ACTIONS(8739), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8739), + [aux_sym_visibility_token1] = ACTIONS(8739), + [aux_sym_visibility_token2] = ACTIONS(8739), + [aux_sym_elseif_fragment_token1] = ACTIONS(8739), + [aux_sym_else_fragment_token1] = ACTIONS(8739), + [aux_sym_select_statement_token1] = ACTIONS(8739), + [aux_sym_select_statement_token2] = ACTIONS(8739), + [aux_sym__for_header_token1] = ACTIONS(8739), + [aux_sym_do_statement_token1] = ACTIONS(8739), + [aux_sym_do_condition_token1] = ACTIONS(8739), + [aux_sym_with_statement_token1] = ACTIONS(8739), + [aux_sym_exit_statement_token1] = ACTIONS(8739), + [sym_end_statement] = ACTIONS(8741), + [aux_sym_on_goto_statement_token1] = ACTIONS(8739), + [aux_sym_on_goto_statement_token2] = ACTIONS(8739), + [aux_sym_on_error_statement_token2] = ACTIONS(8739), + [sym__ambiguous_redim_statement] = ACTIONS(8741), + [aux_sym_erase_statement_token1] = ACTIONS(8739), + [aux_sym_open_statement_token1] = ACTIONS(8739), + [aux_sym_file_mode_token2] = ACTIONS(8739), + [aux_sym_file_access_token2] = ACTIONS(8739), + [aux_sym_file_lock_token2] = ACTIONS(8739), + [aux_sym_print_statement_token1] = ACTIONS(8739), + [anon_sym_PLUS] = ACTIONS(8741), + [anon_sym_DASH] = ACTIONS(8739), + [anon_sym_QMARK] = ACTIONS(8741), + [aux_sym_close_statement_token1] = ACTIONS(8739), + [aux_sym_put_statement_token1] = ACTIONS(8739), + [aux_sym_unlock_statement_token1] = ACTIONS(8739), + [aux_sym_seek_statement_token1] = ACTIONS(8739), + [sym_reset_statement] = ACTIONS(8739), + [aux_sym_raise_event_statement_token1] = ACTIONS(8739), + [sym_stop_statement] = ACTIONS(8739), + [sym_beep_statement] = ACTIONS(8739), + [aux_sym_unload_statement_token1] = ACTIONS(8739), + [aux_sym_def_type_statement_token1] = ACTIONS(8739), + [aux_sym_def_type_statement_token2] = ACTIONS(8739), + [aux_sym_def_type_statement_token3] = ACTIONS(8739), + [aux_sym_def_type_statement_token4] = ACTIONS(8739), + [aux_sym_def_type_statement_token5] = ACTIONS(8739), + [aux_sym_def_type_statement_token6] = ACTIONS(8739), + [aux_sym_def_type_statement_token7] = ACTIONS(8739), + [aux_sym_def_type_statement_token8] = ACTIONS(8739), + [aux_sym_def_type_statement_token9] = ACTIONS(8739), + [aux_sym_def_type_statement_token10] = ACTIONS(8739), + [aux_sym_def_type_statement_token11] = ACTIONS(8739), + [aux_sym_def_type_statement_token12] = ACTIONS(8739), + [aux_sym_def_type_statement_token13] = ACTIONS(8739), + [aux_sym_def_type_statement_token14] = ACTIONS(8739), + [aux_sym_call_statement_token1] = ACTIONS(8739), + [sym__ambiguous_call_statement] = ACTIONS(8739), + [aux_sym_addressof_expression_token1] = ACTIONS(8739), + [aux_sym_type_of_expression_token1] = ACTIONS(8739), + [aux_sym_unary_expression_token1] = ACTIONS(8739), + [sym_string_literal] = ACTIONS(8741), + [sym_number_literal] = ACTIONS(8741), + [aux_sym_boolean_literal_token1] = ACTIONS(8739), + [aux_sym_boolean_literal_token2] = ACTIONS(8739), + [sym_nothing_literal] = ACTIONS(8739), + [sym_null_literal] = ACTIONS(8739), + [sym_empty_literal] = ACTIONS(8739), + [sym_date_literal] = ACTIONS(8741), + [anon_sym_POUND] = ACTIONS(8739), + }, + [STATE(6230)] = { + [sym_identifier] = ACTIONS(8766), + [sym_newline] = ACTIONS(8768), + [anon_sym_COLON] = ACTIONS(8768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8766), + [aux_sym_frm_property_statement_token1] = ACTIONS(8766), + [anon_sym_DOT] = ACTIONS(8766), + [anon_sym_BANG] = ACTIONS(8768), + [aux_sym__attribute_identifier_token1] = ACTIONS(8766), + [aux_sym_option_statement_token3] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8766), + [aux_sym_preprocessor_const_token1] = ACTIONS(8766), + [sym_static_modifier] = ACTIONS(8766), + [sym__dim_keyword] = ACTIONS(8766), + [sym__redim_keyword] = ACTIONS(8766), + [aux_sym_get_accessor_token1] = ACTIONS(8766), + [aux_sym_set_accessor_token1] = ACTIONS(8766), + [anon_sym_COMMA] = ACTIONS(11072), + [aux_sym_const_declaration_token1] = ACTIONS(8766), + [anon_sym_LPAREN] = ACTIONS(8768), + [aux_sym_as_type_clause_token2] = ACTIONS(8766), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8766), + [aux_sym_visibility_token1] = ACTIONS(8766), + [aux_sym_visibility_token2] = ACTIONS(8766), + [aux_sym_elseif_fragment_token1] = ACTIONS(8766), + [aux_sym_else_fragment_token1] = ACTIONS(8766), + [aux_sym_select_statement_token1] = ACTIONS(8766), + [aux_sym_select_statement_token2] = ACTIONS(8766), + [aux_sym__for_header_token1] = ACTIONS(8766), + [aux_sym_do_statement_token1] = ACTIONS(8766), + [aux_sym_do_condition_token1] = ACTIONS(8766), + [aux_sym_with_statement_token1] = ACTIONS(8766), + [aux_sym_exit_statement_token1] = ACTIONS(8766), + [sym_end_statement] = ACTIONS(8768), + [aux_sym_on_goto_statement_token1] = ACTIONS(8766), + [aux_sym_on_goto_statement_token2] = ACTIONS(8766), + [aux_sym_on_error_statement_token2] = ACTIONS(8766), + [sym__ambiguous_redim_statement] = ACTIONS(8768), + [aux_sym_erase_statement_token1] = ACTIONS(8766), + [aux_sym_open_statement_token1] = ACTIONS(8766), + [aux_sym_file_mode_token2] = ACTIONS(8766), + [aux_sym_file_access_token2] = ACTIONS(8766), + [aux_sym_file_lock_token2] = ACTIONS(8766), + [aux_sym_print_statement_token1] = ACTIONS(8766), + [anon_sym_PLUS] = ACTIONS(8768), + [anon_sym_DASH] = ACTIONS(8766), + [anon_sym_QMARK] = ACTIONS(8768), + [aux_sym_close_statement_token1] = ACTIONS(8766), + [aux_sym_put_statement_token1] = ACTIONS(8766), + [aux_sym_unlock_statement_token1] = ACTIONS(8766), + [aux_sym_seek_statement_token1] = ACTIONS(8766), + [sym_reset_statement] = ACTIONS(8766), + [aux_sym_raise_event_statement_token1] = ACTIONS(8766), + [sym_stop_statement] = ACTIONS(8766), + [sym_beep_statement] = ACTIONS(8766), + [aux_sym_unload_statement_token1] = ACTIONS(8766), + [aux_sym_def_type_statement_token1] = ACTIONS(8766), + [aux_sym_def_type_statement_token2] = ACTIONS(8766), + [aux_sym_def_type_statement_token3] = ACTIONS(8766), + [aux_sym_def_type_statement_token4] = ACTIONS(8766), + [aux_sym_def_type_statement_token5] = ACTIONS(8766), + [aux_sym_def_type_statement_token6] = ACTIONS(8766), + [aux_sym_def_type_statement_token7] = ACTIONS(8766), + [aux_sym_def_type_statement_token8] = ACTIONS(8766), + [aux_sym_def_type_statement_token9] = ACTIONS(8766), + [aux_sym_def_type_statement_token10] = ACTIONS(8766), + [aux_sym_def_type_statement_token11] = ACTIONS(8766), + [aux_sym_def_type_statement_token12] = ACTIONS(8766), + [aux_sym_def_type_statement_token13] = ACTIONS(8766), + [aux_sym_def_type_statement_token14] = ACTIONS(8766), + [aux_sym_call_statement_token1] = ACTIONS(8766), + [sym__ambiguous_call_statement] = ACTIONS(8766), + [aux_sym_addressof_expression_token1] = ACTIONS(8766), + [aux_sym_type_of_expression_token1] = ACTIONS(8766), + [aux_sym_unary_expression_token1] = ACTIONS(8766), + [sym_string_literal] = ACTIONS(8768), + [sym_number_literal] = ACTIONS(8768), + [aux_sym_boolean_literal_token1] = ACTIONS(8766), + [aux_sym_boolean_literal_token2] = ACTIONS(8766), + [sym_nothing_literal] = ACTIONS(8766), + [sym_null_literal] = ACTIONS(8766), + [sym_empty_literal] = ACTIONS(8766), + [sym_date_literal] = ACTIONS(8768), + [anon_sym_POUND] = ACTIONS(8766), + }, + [STATE(6231)] = { + [sym_argument_list] = STATE(6782), + [sym_identifier] = ACTIONS(8899), + [sym_newline] = ACTIONS(8901), + [anon_sym_COLON] = ACTIONS(8901), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8899), + [aux_sym_frm_property_statement_token1] = ACTIONS(8899), + [anon_sym_DOT] = ACTIONS(10504), + [anon_sym_BANG] = ACTIONS(10506), + [aux_sym__attribute_identifier_token1] = ACTIONS(8899), + [aux_sym_option_statement_token3] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8899), + [aux_sym_preprocessor_const_token1] = ACTIONS(8899), + [sym_static_modifier] = ACTIONS(8899), + [sym__dim_keyword] = ACTIONS(8899), + [sym__redim_keyword] = ACTIONS(8899), + [aux_sym_get_accessor_token1] = ACTIONS(8899), + [aux_sym_set_accessor_token1] = ACTIONS(8899), + [aux_sym_const_declaration_token1] = ACTIONS(8899), + [anon_sym_LPAREN] = ACTIONS(10508), + [aux_sym_as_type_clause_token2] = ACTIONS(8899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8899), + [aux_sym_visibility_token1] = ACTIONS(8899), + [aux_sym_visibility_token2] = ACTIONS(8899), + [aux_sym_elseif_fragment_token1] = ACTIONS(8899), + [aux_sym_else_fragment_token1] = ACTIONS(8899), + [aux_sym_select_statement_token1] = ACTIONS(8899), + [aux_sym__for_header_token1] = ACTIONS(8899), + [aux_sym_do_statement_token1] = ACTIONS(8899), + [aux_sym_do_statement_token2] = ACTIONS(8899), + [aux_sym_do_condition_token1] = ACTIONS(8899), + [aux_sym_with_statement_token1] = ACTIONS(8899), + [aux_sym_exit_statement_token1] = ACTIONS(8899), + [sym_end_statement] = ACTIONS(8901), + [aux_sym_on_goto_statement_token1] = ACTIONS(8899), + [aux_sym_on_goto_statement_token2] = ACTIONS(8899), + [aux_sym_on_error_statement_token2] = ACTIONS(8899), + [sym__ambiguous_redim_statement] = ACTIONS(8901), + [aux_sym_erase_statement_token1] = ACTIONS(8899), + [aux_sym_open_statement_token1] = ACTIONS(8899), + [aux_sym_file_mode_token2] = ACTIONS(8899), + [aux_sym_file_access_token2] = ACTIONS(8899), + [aux_sym_file_lock_token2] = ACTIONS(8899), + [aux_sym_print_statement_token1] = ACTIONS(8899), + [anon_sym_PLUS] = ACTIONS(8901), + [anon_sym_DASH] = ACTIONS(8899), + [anon_sym_QMARK] = ACTIONS(8901), + [aux_sym_close_statement_token1] = ACTIONS(8899), + [aux_sym_put_statement_token1] = ACTIONS(8899), + [aux_sym_unlock_statement_token1] = ACTIONS(8899), + [aux_sym_seek_statement_token1] = ACTIONS(8899), + [sym_reset_statement] = ACTIONS(8899), + [aux_sym_raise_event_statement_token1] = ACTIONS(8899), + [sym_stop_statement] = ACTIONS(8899), + [sym_beep_statement] = ACTIONS(8899), + [aux_sym_unload_statement_token1] = ACTIONS(8899), + [aux_sym_def_type_statement_token1] = ACTIONS(8899), + [aux_sym_def_type_statement_token2] = ACTIONS(8899), + [aux_sym_def_type_statement_token3] = ACTIONS(8899), + [aux_sym_def_type_statement_token4] = ACTIONS(8899), + [aux_sym_def_type_statement_token5] = ACTIONS(8899), + [aux_sym_def_type_statement_token6] = ACTIONS(8899), + [aux_sym_def_type_statement_token7] = ACTIONS(8899), + [aux_sym_def_type_statement_token8] = ACTIONS(8899), + [aux_sym_def_type_statement_token9] = ACTIONS(8899), + [aux_sym_def_type_statement_token10] = ACTIONS(8899), + [aux_sym_def_type_statement_token11] = ACTIONS(8899), + [aux_sym_def_type_statement_token12] = ACTIONS(8899), + [aux_sym_def_type_statement_token13] = ACTIONS(8899), + [aux_sym_def_type_statement_token14] = ACTIONS(8899), + [aux_sym_call_statement_token1] = ACTIONS(8899), + [sym__ambiguous_call_statement] = ACTIONS(8899), + [aux_sym_addressof_expression_token1] = ACTIONS(8899), + [aux_sym_type_of_expression_token1] = ACTIONS(8899), + [aux_sym_unary_expression_token1] = ACTIONS(8899), + [sym_string_literal] = ACTIONS(8901), + [sym_number_literal] = ACTIONS(8901), + [aux_sym_boolean_literal_token1] = ACTIONS(8899), + [aux_sym_boolean_literal_token2] = ACTIONS(8899), + [sym_nothing_literal] = ACTIONS(8899), + [sym_null_literal] = ACTIONS(8899), + [sym_empty_literal] = ACTIONS(8899), + [sym_date_literal] = ACTIONS(8901), + [anon_sym_POUND] = ACTIONS(8899), + }, + [STATE(6232)] = { + [sym_identifier] = ACTIONS(8865), + [sym_newline] = ACTIONS(8867), + [anon_sym_COLON] = ACTIONS(8867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8865), + [aux_sym_frm_property_statement_token1] = ACTIONS(8865), + [anon_sym_DOT] = ACTIONS(8865), + [anon_sym_BANG] = ACTIONS(8867), + [aux_sym__attribute_identifier_token1] = ACTIONS(8865), + [aux_sym_option_statement_token3] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8865), + [aux_sym_preprocessor_const_token1] = ACTIONS(8865), + [sym_static_modifier] = ACTIONS(8865), + [sym__dim_keyword] = ACTIONS(8865), + [sym__redim_keyword] = ACTIONS(8865), + [aux_sym_get_accessor_token1] = ACTIONS(8865), + [aux_sym_set_accessor_token1] = ACTIONS(8865), + [anon_sym_COMMA] = ACTIONS(8867), + [aux_sym_const_declaration_token1] = ACTIONS(8865), + [anon_sym_LPAREN] = ACTIONS(8867), + [aux_sym_as_type_clause_token2] = ACTIONS(8865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8865), + [aux_sym_visibility_token1] = ACTIONS(8865), + [aux_sym_visibility_token2] = ACTIONS(8865), + [aux_sym_elseif_fragment_token1] = ACTIONS(8865), + [aux_sym_else_fragment_token1] = ACTIONS(8865), + [aux_sym_select_statement_token1] = ACTIONS(8865), + [aux_sym__for_header_token1] = ACTIONS(8865), + [aux_sym_do_statement_token1] = ACTIONS(8865), + [aux_sym_do_statement_token2] = ACTIONS(8865), + [aux_sym_do_condition_token1] = ACTIONS(8865), + [aux_sym_with_statement_token1] = ACTIONS(8865), + [aux_sym_exit_statement_token1] = ACTIONS(8865), + [sym_end_statement] = ACTIONS(8867), + [aux_sym_on_goto_statement_token1] = ACTIONS(8865), + [aux_sym_on_goto_statement_token2] = ACTIONS(8865), + [aux_sym_on_error_statement_token2] = ACTIONS(8865), + [sym__ambiguous_redim_statement] = ACTIONS(8867), + [aux_sym_erase_statement_token1] = ACTIONS(8865), + [aux_sym_open_statement_token1] = ACTIONS(8865), + [aux_sym_file_mode_token2] = ACTIONS(8865), + [aux_sym_file_access_token2] = ACTIONS(8865), + [aux_sym_file_lock_token2] = ACTIONS(8865), + [aux_sym_print_statement_token1] = ACTIONS(8865), + [anon_sym_PLUS] = ACTIONS(8867), + [anon_sym_DASH] = ACTIONS(8865), + [anon_sym_QMARK] = ACTIONS(8867), + [aux_sym_close_statement_token1] = ACTIONS(8865), + [aux_sym_put_statement_token1] = ACTIONS(8865), + [aux_sym_unlock_statement_token1] = ACTIONS(8865), + [aux_sym_seek_statement_token1] = ACTIONS(8865), + [sym_reset_statement] = ACTIONS(8865), + [aux_sym_raise_event_statement_token1] = ACTIONS(8865), + [sym_stop_statement] = ACTIONS(8865), + [sym_beep_statement] = ACTIONS(8865), + [aux_sym_unload_statement_token1] = ACTIONS(8865), + [aux_sym_def_type_statement_token1] = ACTIONS(8865), + [aux_sym_def_type_statement_token2] = ACTIONS(8865), + [aux_sym_def_type_statement_token3] = ACTIONS(8865), + [aux_sym_def_type_statement_token4] = ACTIONS(8865), + [aux_sym_def_type_statement_token5] = ACTIONS(8865), + [aux_sym_def_type_statement_token6] = ACTIONS(8865), + [aux_sym_def_type_statement_token7] = ACTIONS(8865), + [aux_sym_def_type_statement_token8] = ACTIONS(8865), + [aux_sym_def_type_statement_token9] = ACTIONS(8865), + [aux_sym_def_type_statement_token10] = ACTIONS(8865), + [aux_sym_def_type_statement_token11] = ACTIONS(8865), + [aux_sym_def_type_statement_token12] = ACTIONS(8865), + [aux_sym_def_type_statement_token13] = ACTIONS(8865), + [aux_sym_def_type_statement_token14] = ACTIONS(8865), + [aux_sym_call_statement_token1] = ACTIONS(8865), + [sym__ambiguous_call_statement] = ACTIONS(8865), + [aux_sym_addressof_expression_token1] = ACTIONS(8865), + [aux_sym_type_of_expression_token1] = ACTIONS(8865), + [aux_sym_unary_expression_token1] = ACTIONS(8865), + [sym_string_literal] = ACTIONS(8867), + [sym_number_literal] = ACTIONS(8867), + [aux_sym_boolean_literal_token1] = ACTIONS(8865), + [aux_sym_boolean_literal_token2] = ACTIONS(8865), + [sym_nothing_literal] = ACTIONS(8865), + [sym_null_literal] = ACTIONS(8865), + [sym_empty_literal] = ACTIONS(8865), + [sym_date_literal] = ACTIONS(8867), + [anon_sym_POUND] = ACTIONS(8865), + }, + [STATE(6233)] = { + [aux_sym_next_variable_list_repeat1] = STATE(6233), + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(11074), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(6234)] = { + [sym_identifier] = ACTIONS(8809), + [sym_newline] = ACTIONS(8811), + [anon_sym_COLON] = ACTIONS(8811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8809), + [aux_sym_frm_property_statement_token1] = ACTIONS(8809), + [anon_sym_DOT] = ACTIONS(8809), + [anon_sym_BANG] = ACTIONS(8811), + [aux_sym__attribute_identifier_token1] = ACTIONS(8809), + [aux_sym_option_statement_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8809), + [aux_sym_preprocessor_const_token1] = ACTIONS(8809), + [sym_static_modifier] = ACTIONS(8809), + [sym__dim_keyword] = ACTIONS(8809), + [sym__redim_keyword] = ACTIONS(8809), + [aux_sym_get_accessor_token1] = ACTIONS(8809), + [aux_sym_set_accessor_token1] = ACTIONS(8809), + [aux_sym_const_declaration_token1] = ACTIONS(8809), + [anon_sym_LPAREN] = ACTIONS(8811), + [aux_sym_as_type_clause_token2] = ACTIONS(8809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8809), + [aux_sym_visibility_token1] = ACTIONS(8809), + [aux_sym_visibility_token2] = ACTIONS(8809), + [aux_sym_elseif_fragment_token1] = ACTIONS(8809), + [aux_sym_else_fragment_token1] = ACTIONS(8809), + [aux_sym_select_statement_token1] = ACTIONS(8809), + [aux_sym_select_statement_token2] = ACTIONS(8809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8809), + [aux_sym__for_header_token1] = ACTIONS(8809), + [aux_sym_do_statement_token1] = ACTIONS(8809), + [aux_sym_do_condition_token1] = ACTIONS(8809), + [aux_sym_with_statement_token1] = ACTIONS(8809), + [aux_sym_exit_statement_token1] = ACTIONS(8809), + [sym_end_statement] = ACTIONS(8811), + [aux_sym_on_goto_statement_token1] = ACTIONS(8809), + [aux_sym_on_goto_statement_token2] = ACTIONS(8809), + [aux_sym_on_error_statement_token2] = ACTIONS(8809), + [sym__ambiguous_redim_statement] = ACTIONS(8811), + [aux_sym_erase_statement_token1] = ACTIONS(8809), + [aux_sym_open_statement_token1] = ACTIONS(8809), + [aux_sym_file_mode_token2] = ACTIONS(8809), + [aux_sym_file_access_token2] = ACTIONS(8809), + [aux_sym_file_lock_token2] = ACTIONS(8809), + [aux_sym_print_statement_token1] = ACTIONS(8809), + [anon_sym_PLUS] = ACTIONS(8811), + [anon_sym_DASH] = ACTIONS(8809), + [anon_sym_QMARK] = ACTIONS(8811), + [aux_sym_close_statement_token1] = ACTIONS(8809), + [aux_sym_put_statement_token1] = ACTIONS(8809), + [aux_sym_unlock_statement_token1] = ACTIONS(8809), + [aux_sym_seek_statement_token1] = ACTIONS(8809), + [sym_reset_statement] = ACTIONS(8809), + [aux_sym_raise_event_statement_token1] = ACTIONS(8809), + [sym_stop_statement] = ACTIONS(8809), + [sym_beep_statement] = ACTIONS(8809), + [aux_sym_unload_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token2] = ACTIONS(8809), + [aux_sym_def_type_statement_token3] = ACTIONS(8809), + [aux_sym_def_type_statement_token4] = ACTIONS(8809), + [aux_sym_def_type_statement_token5] = ACTIONS(8809), + [aux_sym_def_type_statement_token6] = ACTIONS(8809), + [aux_sym_def_type_statement_token7] = ACTIONS(8809), + [aux_sym_def_type_statement_token8] = ACTIONS(8809), + [aux_sym_def_type_statement_token9] = ACTIONS(8809), + [aux_sym_def_type_statement_token10] = ACTIONS(8809), + [aux_sym_def_type_statement_token11] = ACTIONS(8809), + [aux_sym_def_type_statement_token12] = ACTIONS(8809), + [aux_sym_def_type_statement_token13] = ACTIONS(8809), + [aux_sym_def_type_statement_token14] = ACTIONS(8809), + [aux_sym_call_statement_token1] = ACTIONS(8809), + [sym__ambiguous_call_statement] = ACTIONS(8809), + [aux_sym_addressof_expression_token1] = ACTIONS(8809), + [aux_sym_type_of_expression_token1] = ACTIONS(8809), + [aux_sym_unary_expression_token1] = ACTIONS(8809), + [sym_string_literal] = ACTIONS(8811), + [sym_number_literal] = ACTIONS(8811), + [aux_sym_boolean_literal_token1] = ACTIONS(8809), + [aux_sym_boolean_literal_token2] = ACTIONS(8809), + [sym_nothing_literal] = ACTIONS(8809), + [sym_null_literal] = ACTIONS(8809), + [sym_empty_literal] = ACTIONS(8809), + [sym_date_literal] = ACTIONS(8811), + [anon_sym_POUND] = ACTIONS(8809), + }, + [STATE(6235)] = { + [sym_identifier] = ACTIONS(8877), + [sym_newline] = ACTIONS(8879), + [anon_sym_COLON] = ACTIONS(8879), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8877), + [aux_sym_frm_property_statement_token1] = ACTIONS(8877), + [anon_sym_DOT] = ACTIONS(8877), + [anon_sym_BANG] = ACTIONS(8879), + [aux_sym__attribute_identifier_token1] = ACTIONS(8877), + [aux_sym_option_statement_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8877), + [aux_sym_preprocessor_const_token1] = ACTIONS(8877), + [sym_static_modifier] = ACTIONS(8877), + [sym__dim_keyword] = ACTIONS(8877), + [sym__redim_keyword] = ACTIONS(8877), + [aux_sym_get_accessor_token1] = ACTIONS(8877), + [aux_sym_set_accessor_token1] = ACTIONS(8877), + [aux_sym_const_declaration_token1] = ACTIONS(8877), + [anon_sym_LPAREN] = ACTIONS(8879), + [aux_sym_as_type_clause_token2] = ACTIONS(8877), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8877), + [aux_sym_visibility_token1] = ACTIONS(8877), + [aux_sym_visibility_token2] = ACTIONS(8877), + [aux_sym_elseif_fragment_token1] = ACTIONS(8877), + [aux_sym_else_fragment_token1] = ACTIONS(8877), + [aux_sym_select_statement_token1] = ACTIONS(8877), + [aux_sym_select_statement_token2] = ACTIONS(8877), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8877), + [aux_sym__for_header_token1] = ACTIONS(8877), + [aux_sym_do_statement_token1] = ACTIONS(8877), + [aux_sym_do_condition_token1] = ACTIONS(8877), + [aux_sym_with_statement_token1] = ACTIONS(8877), + [aux_sym_exit_statement_token1] = ACTIONS(8877), + [sym_end_statement] = ACTIONS(8879), + [aux_sym_on_goto_statement_token1] = ACTIONS(8877), + [aux_sym_on_goto_statement_token2] = ACTIONS(8877), + [aux_sym_on_error_statement_token2] = ACTIONS(8877), + [sym__ambiguous_redim_statement] = ACTIONS(8879), + [aux_sym_erase_statement_token1] = ACTIONS(8877), + [aux_sym_open_statement_token1] = ACTIONS(8877), + [aux_sym_file_mode_token2] = ACTIONS(8877), + [aux_sym_file_access_token2] = ACTIONS(8877), + [aux_sym_file_lock_token2] = ACTIONS(8877), + [aux_sym_print_statement_token1] = ACTIONS(8877), + [anon_sym_PLUS] = ACTIONS(8879), + [anon_sym_DASH] = ACTIONS(8877), + [anon_sym_QMARK] = ACTIONS(8879), + [aux_sym_close_statement_token1] = ACTIONS(8877), + [aux_sym_put_statement_token1] = ACTIONS(8877), + [aux_sym_unlock_statement_token1] = ACTIONS(8877), + [aux_sym_seek_statement_token1] = ACTIONS(8877), + [sym_reset_statement] = ACTIONS(8877), + [aux_sym_raise_event_statement_token1] = ACTIONS(8877), + [sym_stop_statement] = ACTIONS(8877), + [sym_beep_statement] = ACTIONS(8877), + [aux_sym_unload_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token2] = ACTIONS(8877), + [aux_sym_def_type_statement_token3] = ACTIONS(8877), + [aux_sym_def_type_statement_token4] = ACTIONS(8877), + [aux_sym_def_type_statement_token5] = ACTIONS(8877), + [aux_sym_def_type_statement_token6] = ACTIONS(8877), + [aux_sym_def_type_statement_token7] = ACTIONS(8877), + [aux_sym_def_type_statement_token8] = ACTIONS(8877), + [aux_sym_def_type_statement_token9] = ACTIONS(8877), + [aux_sym_def_type_statement_token10] = ACTIONS(8877), + [aux_sym_def_type_statement_token11] = ACTIONS(8877), + [aux_sym_def_type_statement_token12] = ACTIONS(8877), + [aux_sym_def_type_statement_token13] = ACTIONS(8877), + [aux_sym_def_type_statement_token14] = ACTIONS(8877), + [aux_sym_call_statement_token1] = ACTIONS(8877), + [sym__ambiguous_call_statement] = ACTIONS(8877), + [aux_sym_addressof_expression_token1] = ACTIONS(8877), + [aux_sym_type_of_expression_token1] = ACTIONS(8877), + [aux_sym_unary_expression_token1] = ACTIONS(8877), + [sym_string_literal] = ACTIONS(8879), + [sym_number_literal] = ACTIONS(8879), + [aux_sym_boolean_literal_token1] = ACTIONS(8877), + [aux_sym_boolean_literal_token2] = ACTIONS(8877), + [sym_nothing_literal] = ACTIONS(8877), + [sym_null_literal] = ACTIONS(8877), + [sym_empty_literal] = ACTIONS(8877), + [sym_date_literal] = ACTIONS(8879), + [anon_sym_POUND] = ACTIONS(8877), + }, + [STATE(6236)] = { + [sym_identifier] = ACTIONS(8907), + [sym_newline] = ACTIONS(8909), + [anon_sym_COLON] = ACTIONS(8909), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8907), + [aux_sym_frm_property_statement_token1] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8907), + [anon_sym_BANG] = ACTIONS(8909), + [aux_sym__attribute_identifier_token1] = ACTIONS(8907), + [aux_sym_option_statement_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8907), + [aux_sym_preprocessor_const_token1] = ACTIONS(8907), + [sym_static_modifier] = ACTIONS(8907), + [sym__dim_keyword] = ACTIONS(8907), + [sym__redim_keyword] = ACTIONS(8907), + [aux_sym_get_accessor_token1] = ACTIONS(8907), + [aux_sym_set_accessor_token1] = ACTIONS(8907), + [aux_sym_const_declaration_token1] = ACTIONS(8907), + [anon_sym_LPAREN] = ACTIONS(8909), + [aux_sym_as_type_clause_token2] = ACTIONS(8907), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8907), + [aux_sym_visibility_token1] = ACTIONS(8907), + [aux_sym_visibility_token2] = ACTIONS(8907), + [aux_sym_elseif_fragment_token1] = ACTIONS(8907), + [aux_sym_else_fragment_token1] = ACTIONS(8907), + [aux_sym_select_statement_token1] = ACTIONS(8907), + [aux_sym_select_statement_token2] = ACTIONS(8907), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8907), + [aux_sym__for_header_token1] = ACTIONS(8907), + [aux_sym_do_statement_token1] = ACTIONS(8907), + [aux_sym_do_condition_token1] = ACTIONS(8907), + [aux_sym_with_statement_token1] = ACTIONS(8907), + [aux_sym_exit_statement_token1] = ACTIONS(8907), + [sym_end_statement] = ACTIONS(8909), + [aux_sym_on_goto_statement_token1] = ACTIONS(8907), + [aux_sym_on_goto_statement_token2] = ACTIONS(8907), + [aux_sym_on_error_statement_token2] = ACTIONS(8907), + [sym__ambiguous_redim_statement] = ACTIONS(8909), + [aux_sym_erase_statement_token1] = ACTIONS(8907), + [aux_sym_open_statement_token1] = ACTIONS(8907), + [aux_sym_file_mode_token2] = ACTIONS(8907), + [aux_sym_file_access_token2] = ACTIONS(8907), + [aux_sym_file_lock_token2] = ACTIONS(8907), + [aux_sym_print_statement_token1] = ACTIONS(8907), + [anon_sym_PLUS] = ACTIONS(8909), + [anon_sym_DASH] = ACTIONS(8907), + [anon_sym_QMARK] = ACTIONS(8909), + [aux_sym_close_statement_token1] = ACTIONS(8907), + [aux_sym_put_statement_token1] = ACTIONS(8907), + [aux_sym_unlock_statement_token1] = ACTIONS(8907), + [aux_sym_seek_statement_token1] = ACTIONS(8907), + [sym_reset_statement] = ACTIONS(8907), + [aux_sym_raise_event_statement_token1] = ACTIONS(8907), + [sym_stop_statement] = ACTIONS(8907), + [sym_beep_statement] = ACTIONS(8907), + [aux_sym_unload_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token2] = ACTIONS(8907), + [aux_sym_def_type_statement_token3] = ACTIONS(8907), + [aux_sym_def_type_statement_token4] = ACTIONS(8907), + [aux_sym_def_type_statement_token5] = ACTIONS(8907), + [aux_sym_def_type_statement_token6] = ACTIONS(8907), + [aux_sym_def_type_statement_token7] = ACTIONS(8907), + [aux_sym_def_type_statement_token8] = ACTIONS(8907), + [aux_sym_def_type_statement_token9] = ACTIONS(8907), + [aux_sym_def_type_statement_token10] = ACTIONS(8907), + [aux_sym_def_type_statement_token11] = ACTIONS(8907), + [aux_sym_def_type_statement_token12] = ACTIONS(8907), + [aux_sym_def_type_statement_token13] = ACTIONS(8907), + [aux_sym_def_type_statement_token14] = ACTIONS(8907), + [aux_sym_call_statement_token1] = ACTIONS(8907), + [sym__ambiguous_call_statement] = ACTIONS(8907), + [aux_sym_addressof_expression_token1] = ACTIONS(8907), + [aux_sym_type_of_expression_token1] = ACTIONS(8907), + [aux_sym_unary_expression_token1] = ACTIONS(8907), + [sym_string_literal] = ACTIONS(8909), + [sym_number_literal] = ACTIONS(8909), + [aux_sym_boolean_literal_token1] = ACTIONS(8907), + [aux_sym_boolean_literal_token2] = ACTIONS(8907), + [sym_nothing_literal] = ACTIONS(8907), + [sym_null_literal] = ACTIONS(8907), + [sym_empty_literal] = ACTIONS(8907), + [sym_date_literal] = ACTIONS(8909), + [anon_sym_POUND] = ACTIONS(8907), + }, + [STATE(6237)] = { + [sym_identifier] = ACTIONS(8635), + [sym_newline] = ACTIONS(8637), + [anon_sym_COLON] = ACTIONS(8637), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8635), + [aux_sym_frm_property_statement_token1] = ACTIONS(8635), + [anon_sym_DOT] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(8637), + [aux_sym__attribute_identifier_token1] = ACTIONS(8635), + [aux_sym_option_statement_token3] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8635), + [aux_sym_preprocessor_const_token1] = ACTIONS(8635), + [sym_static_modifier] = ACTIONS(8635), + [sym__dim_keyword] = ACTIONS(8635), + [sym__redim_keyword] = ACTIONS(8635), + [aux_sym_get_accessor_token1] = ACTIONS(8635), + [aux_sym_set_accessor_token1] = ACTIONS(8635), + [anon_sym_COMMA] = ACTIONS(11077), + [aux_sym_const_declaration_token1] = ACTIONS(8635), + [anon_sym_LPAREN] = ACTIONS(8637), + [aux_sym_as_type_clause_token2] = ACTIONS(8635), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8635), + [aux_sym_visibility_token1] = ACTIONS(8635), + [aux_sym_visibility_token2] = ACTIONS(8635), + [aux_sym_elseif_fragment_token1] = ACTIONS(8635), + [aux_sym_else_fragment_token1] = ACTIONS(8635), + [aux_sym_select_statement_token1] = ACTIONS(8635), + [aux_sym__for_header_token1] = ACTIONS(8635), + [aux_sym_do_statement_token1] = ACTIONS(8635), + [aux_sym_do_condition_token1] = ACTIONS(8635), + [aux_sym_with_statement_token1] = ACTIONS(8635), + [aux_sym_exit_statement_token1] = ACTIONS(8635), + [sym_end_statement] = ACTIONS(8637), + [aux_sym_on_goto_statement_token1] = ACTIONS(8635), + [aux_sym_on_goto_statement_token2] = ACTIONS(8635), + [aux_sym_on_error_statement_token2] = ACTIONS(8635), + [sym__ambiguous_redim_statement] = ACTIONS(8637), + [aux_sym_erase_statement_token1] = ACTIONS(8635), + [aux_sym_open_statement_token1] = ACTIONS(8635), + [aux_sym_file_mode_token2] = ACTIONS(8635), + [aux_sym_file_access_token2] = ACTIONS(8635), + [aux_sym_file_lock_token2] = ACTIONS(8635), + [aux_sym_print_statement_token1] = ACTIONS(8635), + [anon_sym_PLUS] = ACTIONS(8637), + [anon_sym_DASH] = ACTIONS(8635), + [anon_sym_QMARK] = ACTIONS(8637), + [aux_sym_close_statement_token1] = ACTIONS(8635), + [aux_sym_put_statement_token1] = ACTIONS(8635), + [aux_sym_unlock_statement_token1] = ACTIONS(8635), + [aux_sym_seek_statement_token1] = ACTIONS(8635), + [sym_reset_statement] = ACTIONS(8635), + [aux_sym_raise_event_statement_token1] = ACTIONS(8635), + [sym_stop_statement] = ACTIONS(8635), + [sym_beep_statement] = ACTIONS(8635), + [aux_sym_unload_statement_token1] = ACTIONS(8635), + [aux_sym_def_type_statement_token1] = ACTIONS(8635), + [aux_sym_def_type_statement_token2] = ACTIONS(8635), + [aux_sym_def_type_statement_token3] = ACTIONS(8635), + [aux_sym_def_type_statement_token4] = ACTIONS(8635), + [aux_sym_def_type_statement_token5] = ACTIONS(8635), + [aux_sym_def_type_statement_token6] = ACTIONS(8635), + [aux_sym_def_type_statement_token7] = ACTIONS(8635), + [aux_sym_def_type_statement_token8] = ACTIONS(8635), + [aux_sym_def_type_statement_token9] = ACTIONS(8635), + [aux_sym_def_type_statement_token10] = ACTIONS(8635), + [aux_sym_def_type_statement_token11] = ACTIONS(8635), + [aux_sym_def_type_statement_token12] = ACTIONS(8635), + [aux_sym_def_type_statement_token13] = ACTIONS(8635), + [aux_sym_def_type_statement_token14] = ACTIONS(8635), + [aux_sym_call_statement_token1] = ACTIONS(8635), + [sym__ambiguous_call_statement] = ACTIONS(8635), + [aux_sym_addressof_expression_token1] = ACTIONS(8635), + [aux_sym_type_of_expression_token1] = ACTIONS(8635), + [aux_sym_unary_expression_token1] = ACTIONS(8635), + [sym_string_literal] = ACTIONS(8637), + [sym_number_literal] = ACTIONS(8637), + [aux_sym_boolean_literal_token1] = ACTIONS(8635), + [aux_sym_boolean_literal_token2] = ACTIONS(8635), + [sym_nothing_literal] = ACTIONS(8635), + [sym_null_literal] = ACTIONS(8635), + [sym_empty_literal] = ACTIONS(8635), + [sym_date_literal] = ACTIONS(8637), + [anon_sym_POUND] = ACTIONS(8635), + }, + [STATE(6238)] = { + [sym_identifier] = ACTIONS(8533), + [sym_newline] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(8535), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8533), + [aux_sym_frm_property_statement_token1] = ACTIONS(8533), + [anon_sym_DOT] = ACTIONS(8533), + [anon_sym_BANG] = ACTIONS(8535), + [aux_sym__attribute_identifier_token1] = ACTIONS(8533), + [aux_sym_option_statement_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8533), + [aux_sym_preprocessor_const_token1] = ACTIONS(8533), + [sym_static_modifier] = ACTIONS(8533), + [sym__dim_keyword] = ACTIONS(8533), + [sym__redim_keyword] = ACTIONS(8533), + [aux_sym_get_accessor_token1] = ACTIONS(8533), + [aux_sym_set_accessor_token1] = ACTIONS(8533), + [anon_sym_COMMA] = ACTIONS(8535), + [aux_sym_const_declaration_token1] = ACTIONS(8533), + [anon_sym_LPAREN] = ACTIONS(8535), + [aux_sym_as_type_clause_token2] = ACTIONS(8533), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8533), + [aux_sym_visibility_token1] = ACTIONS(8533), + [aux_sym_visibility_token2] = ACTIONS(8533), + [aux_sym_elseif_fragment_token1] = ACTIONS(8533), + [aux_sym_else_fragment_token1] = ACTIONS(8533), + [aux_sym_select_statement_token1] = ACTIONS(8533), + [aux_sym__for_header_token1] = ACTIONS(8533), + [aux_sym_do_statement_token1] = ACTIONS(8533), + [aux_sym_do_condition_token1] = ACTIONS(8533), + [aux_sym_with_statement_token1] = ACTIONS(8533), + [aux_sym_exit_statement_token1] = ACTIONS(8533), + [sym_end_statement] = ACTIONS(8535), + [aux_sym_on_goto_statement_token1] = ACTIONS(8533), + [aux_sym_on_goto_statement_token2] = ACTIONS(8533), + [aux_sym_on_error_statement_token2] = ACTIONS(8533), + [sym__ambiguous_redim_statement] = ACTIONS(8535), + [aux_sym_erase_statement_token1] = ACTIONS(8533), + [aux_sym_open_statement_token1] = ACTIONS(8533), + [aux_sym_file_mode_token2] = ACTIONS(8533), + [aux_sym_file_access_token2] = ACTIONS(8533), + [aux_sym_file_lock_token2] = ACTIONS(8533), + [aux_sym_print_statement_token1] = ACTIONS(8533), + [anon_sym_PLUS] = ACTIONS(8535), + [anon_sym_DASH] = ACTIONS(8533), + [anon_sym_QMARK] = ACTIONS(8535), + [aux_sym_close_statement_token1] = ACTIONS(8533), + [aux_sym_put_statement_token1] = ACTIONS(8533), + [aux_sym_unlock_statement_token1] = ACTIONS(8533), + [aux_sym_seek_statement_token1] = ACTIONS(8533), + [sym_reset_statement] = ACTIONS(8533), + [aux_sym_raise_event_statement_token1] = ACTIONS(8533), + [sym_stop_statement] = ACTIONS(8533), + [sym_beep_statement] = ACTIONS(8533), + [aux_sym_unload_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token2] = ACTIONS(8533), + [aux_sym_def_type_statement_token3] = ACTIONS(8533), + [aux_sym_def_type_statement_token4] = ACTIONS(8533), + [aux_sym_def_type_statement_token5] = ACTIONS(8533), + [aux_sym_def_type_statement_token6] = ACTIONS(8533), + [aux_sym_def_type_statement_token7] = ACTIONS(8533), + [aux_sym_def_type_statement_token8] = ACTIONS(8533), + [aux_sym_def_type_statement_token9] = ACTIONS(8533), + [aux_sym_def_type_statement_token10] = ACTIONS(8533), + [aux_sym_def_type_statement_token11] = ACTIONS(8533), + [aux_sym_def_type_statement_token12] = ACTIONS(8533), + [aux_sym_def_type_statement_token13] = ACTIONS(8533), + [aux_sym_def_type_statement_token14] = ACTIONS(8533), + [aux_sym_call_statement_token1] = ACTIONS(8533), + [sym__ambiguous_call_statement] = ACTIONS(8533), + [aux_sym_addressof_expression_token1] = ACTIONS(8533), + [aux_sym_type_of_expression_token1] = ACTIONS(8533), + [aux_sym_unary_expression_token1] = ACTIONS(8533), + [sym_string_literal] = ACTIONS(8535), + [sym_number_literal] = ACTIONS(8535), + [aux_sym_boolean_literal_token1] = ACTIONS(8533), + [aux_sym_boolean_literal_token2] = ACTIONS(8533), + [sym_nothing_literal] = ACTIONS(8533), + [sym_null_literal] = ACTIONS(8533), + [sym_empty_literal] = ACTIONS(8533), + [sym_date_literal] = ACTIONS(8535), + [anon_sym_POUND] = ACTIONS(8533), + }, + [STATE(6239)] = { + [sym_identifier] = ACTIONS(8927), + [sym_newline] = ACTIONS(8929), + [anon_sym_COLON] = ACTIONS(8929), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8927), + [aux_sym_frm_property_statement_token1] = ACTIONS(8927), + [anon_sym_DOT] = ACTIONS(8927), + [anon_sym_BANG] = ACTIONS(8929), + [aux_sym__attribute_identifier_token1] = ACTIONS(8927), + [aux_sym_option_statement_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8927), + [aux_sym_preprocessor_const_token1] = ACTIONS(8927), + [sym_static_modifier] = ACTIONS(8927), + [sym__dim_keyword] = ACTIONS(8927), + [sym__redim_keyword] = ACTIONS(8927), + [aux_sym_get_accessor_token1] = ACTIONS(8927), + [aux_sym_set_accessor_token1] = ACTIONS(8927), + [aux_sym_const_declaration_token1] = ACTIONS(8927), + [anon_sym_LPAREN] = ACTIONS(8929), + [aux_sym_as_type_clause_token2] = ACTIONS(8927), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8927), + [aux_sym_visibility_token1] = ACTIONS(8927), + [aux_sym_visibility_token2] = ACTIONS(8927), + [aux_sym_elseif_fragment_token1] = ACTIONS(8927), + [aux_sym_else_fragment_token1] = ACTIONS(8927), + [aux_sym_select_statement_token1] = ACTIONS(8927), + [aux_sym_select_statement_token2] = ACTIONS(8927), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8927), + [aux_sym__for_header_token1] = ACTIONS(8927), + [aux_sym_do_statement_token1] = ACTIONS(8927), + [aux_sym_do_condition_token1] = ACTIONS(8927), + [aux_sym_with_statement_token1] = ACTIONS(8927), + [aux_sym_exit_statement_token1] = ACTIONS(8927), + [sym_end_statement] = ACTIONS(8929), + [aux_sym_on_goto_statement_token1] = ACTIONS(8927), + [aux_sym_on_goto_statement_token2] = ACTIONS(8927), + [aux_sym_on_error_statement_token2] = ACTIONS(8927), + [sym__ambiguous_redim_statement] = ACTIONS(8929), + [aux_sym_erase_statement_token1] = ACTIONS(8927), + [aux_sym_open_statement_token1] = ACTIONS(8927), + [aux_sym_file_mode_token2] = ACTIONS(8927), + [aux_sym_file_access_token2] = ACTIONS(8927), + [aux_sym_file_lock_token2] = ACTIONS(8927), + [aux_sym_print_statement_token1] = ACTIONS(8927), + [anon_sym_PLUS] = ACTIONS(8929), + [anon_sym_DASH] = ACTIONS(8927), + [anon_sym_QMARK] = ACTIONS(8929), + [aux_sym_close_statement_token1] = ACTIONS(8927), + [aux_sym_put_statement_token1] = ACTIONS(8927), + [aux_sym_unlock_statement_token1] = ACTIONS(8927), + [aux_sym_seek_statement_token1] = ACTIONS(8927), + [sym_reset_statement] = ACTIONS(8927), + [aux_sym_raise_event_statement_token1] = ACTIONS(8927), + [sym_stop_statement] = ACTIONS(8927), + [sym_beep_statement] = ACTIONS(8927), + [aux_sym_unload_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token2] = ACTIONS(8927), + [aux_sym_def_type_statement_token3] = ACTIONS(8927), + [aux_sym_def_type_statement_token4] = ACTIONS(8927), + [aux_sym_def_type_statement_token5] = ACTIONS(8927), + [aux_sym_def_type_statement_token6] = ACTIONS(8927), + [aux_sym_def_type_statement_token7] = ACTIONS(8927), + [aux_sym_def_type_statement_token8] = ACTIONS(8927), + [aux_sym_def_type_statement_token9] = ACTIONS(8927), + [aux_sym_def_type_statement_token10] = ACTIONS(8927), + [aux_sym_def_type_statement_token11] = ACTIONS(8927), + [aux_sym_def_type_statement_token12] = ACTIONS(8927), + [aux_sym_def_type_statement_token13] = ACTIONS(8927), + [aux_sym_def_type_statement_token14] = ACTIONS(8927), + [aux_sym_call_statement_token1] = ACTIONS(8927), + [sym__ambiguous_call_statement] = ACTIONS(8927), + [aux_sym_addressof_expression_token1] = ACTIONS(8927), + [aux_sym_type_of_expression_token1] = ACTIONS(8927), + [aux_sym_unary_expression_token1] = ACTIONS(8927), + [sym_string_literal] = ACTIONS(8929), + [sym_number_literal] = ACTIONS(8929), + [aux_sym_boolean_literal_token1] = ACTIONS(8927), + [aux_sym_boolean_literal_token2] = ACTIONS(8927), + [sym_nothing_literal] = ACTIONS(8927), + [sym_null_literal] = ACTIONS(8927), + [sym_empty_literal] = ACTIONS(8927), + [sym_date_literal] = ACTIONS(8929), + [anon_sym_POUND] = ACTIONS(8927), + }, + [STATE(6240)] = { + [sym_identifier] = ACTIONS(8652), + [sym_newline] = ACTIONS(8654), + [anon_sym_COLON] = ACTIONS(8654), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8652), + [aux_sym_frm_property_statement_token1] = ACTIONS(8652), + [anon_sym_DOT] = ACTIONS(8652), + [anon_sym_BANG] = ACTIONS(8654), + [aux_sym__attribute_identifier_token1] = ACTIONS(8652), + [aux_sym_option_statement_token3] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8652), + [aux_sym_preprocessor_const_token1] = ACTIONS(8652), + [sym_static_modifier] = ACTIONS(8652), + [sym__dim_keyword] = ACTIONS(8652), + [sym__redim_keyword] = ACTIONS(8652), + [aux_sym_get_accessor_token1] = ACTIONS(8652), + [aux_sym_set_accessor_token1] = ACTIONS(8652), + [anon_sym_COMMA] = ACTIONS(11079), + [aux_sym_const_declaration_token1] = ACTIONS(8652), + [anon_sym_LPAREN] = ACTIONS(8654), + [aux_sym_as_type_clause_token2] = ACTIONS(8652), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8652), + [aux_sym_visibility_token1] = ACTIONS(8652), + [aux_sym_visibility_token2] = ACTIONS(8652), + [aux_sym_elseif_fragment_token1] = ACTIONS(8652), + [aux_sym_else_fragment_token1] = ACTIONS(8652), + [aux_sym_select_statement_token1] = ACTIONS(8652), + [aux_sym_select_statement_token2] = ACTIONS(8652), + [aux_sym__for_header_token1] = ACTIONS(8652), + [aux_sym_do_statement_token1] = ACTIONS(8652), + [aux_sym_do_condition_token1] = ACTIONS(8652), + [aux_sym_with_statement_token1] = ACTIONS(8652), + [aux_sym_exit_statement_token1] = ACTIONS(8652), + [sym_end_statement] = ACTIONS(8654), + [aux_sym_on_goto_statement_token1] = ACTIONS(8652), + [aux_sym_on_goto_statement_token2] = ACTIONS(8652), + [aux_sym_on_error_statement_token2] = ACTIONS(8652), + [sym__ambiguous_redim_statement] = ACTIONS(8654), + [aux_sym_erase_statement_token1] = ACTIONS(8652), + [aux_sym_open_statement_token1] = ACTIONS(8652), + [aux_sym_file_mode_token2] = ACTIONS(8652), + [aux_sym_file_access_token2] = ACTIONS(8652), + [aux_sym_file_lock_token2] = ACTIONS(8652), + [aux_sym_print_statement_token1] = ACTIONS(8652), + [anon_sym_PLUS] = ACTIONS(8654), + [anon_sym_DASH] = ACTIONS(8652), + [anon_sym_QMARK] = ACTIONS(8654), + [aux_sym_close_statement_token1] = ACTIONS(8652), + [aux_sym_put_statement_token1] = ACTIONS(8652), + [aux_sym_unlock_statement_token1] = ACTIONS(8652), + [aux_sym_seek_statement_token1] = ACTIONS(8652), + [sym_reset_statement] = ACTIONS(8652), + [aux_sym_raise_event_statement_token1] = ACTIONS(8652), + [sym_stop_statement] = ACTIONS(8652), + [sym_beep_statement] = ACTIONS(8652), + [aux_sym_unload_statement_token1] = ACTIONS(8652), + [aux_sym_def_type_statement_token1] = ACTIONS(8652), + [aux_sym_def_type_statement_token2] = ACTIONS(8652), + [aux_sym_def_type_statement_token3] = ACTIONS(8652), + [aux_sym_def_type_statement_token4] = ACTIONS(8652), + [aux_sym_def_type_statement_token5] = ACTIONS(8652), + [aux_sym_def_type_statement_token6] = ACTIONS(8652), + [aux_sym_def_type_statement_token7] = ACTIONS(8652), + [aux_sym_def_type_statement_token8] = ACTIONS(8652), + [aux_sym_def_type_statement_token9] = ACTIONS(8652), + [aux_sym_def_type_statement_token10] = ACTIONS(8652), + [aux_sym_def_type_statement_token11] = ACTIONS(8652), + [aux_sym_def_type_statement_token12] = ACTIONS(8652), + [aux_sym_def_type_statement_token13] = ACTIONS(8652), + [aux_sym_def_type_statement_token14] = ACTIONS(8652), + [aux_sym_call_statement_token1] = ACTIONS(8652), + [sym__ambiguous_call_statement] = ACTIONS(8652), + [aux_sym_addressof_expression_token1] = ACTIONS(8652), + [aux_sym_type_of_expression_token1] = ACTIONS(8652), + [aux_sym_unary_expression_token1] = ACTIONS(8652), + [sym_string_literal] = ACTIONS(8654), + [sym_number_literal] = ACTIONS(8654), + [aux_sym_boolean_literal_token1] = ACTIONS(8652), + [aux_sym_boolean_literal_token2] = ACTIONS(8652), + [sym_nothing_literal] = ACTIONS(8652), + [sym_null_literal] = ACTIONS(8652), + [sym_empty_literal] = ACTIONS(8652), + [sym_date_literal] = ACTIONS(8654), + [anon_sym_POUND] = ACTIONS(8652), + }, + [STATE(6241)] = { + [sym_identifier] = ACTIONS(8717), + [sym_newline] = ACTIONS(8719), + [anon_sym_COLON] = ACTIONS(8719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8717), + [aux_sym_frm_property_statement_token1] = ACTIONS(8717), + [anon_sym_DOT] = ACTIONS(8717), + [anon_sym_BANG] = ACTIONS(8719), + [aux_sym__attribute_identifier_token1] = ACTIONS(8717), + [aux_sym_option_statement_token3] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8717), + [aux_sym_preprocessor_const_token1] = ACTIONS(8717), + [sym_static_modifier] = ACTIONS(8717), + [sym__dim_keyword] = ACTIONS(8717), + [sym__redim_keyword] = ACTIONS(8717), + [aux_sym_get_accessor_token1] = ACTIONS(8717), + [aux_sym_set_accessor_token1] = ACTIONS(8717), + [anon_sym_COMMA] = ACTIONS(11081), + [aux_sym_const_declaration_token1] = ACTIONS(8717), + [anon_sym_LPAREN] = ACTIONS(8719), + [aux_sym_as_type_clause_token2] = ACTIONS(8717), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8717), + [aux_sym_visibility_token1] = ACTIONS(8717), + [aux_sym_visibility_token2] = ACTIONS(8717), + [aux_sym_elseif_fragment_token1] = ACTIONS(8717), + [aux_sym_else_fragment_token1] = ACTIONS(8717), + [aux_sym_select_statement_token1] = ACTIONS(8717), + [aux_sym_select_statement_token2] = ACTIONS(8717), + [aux_sym__for_header_token1] = ACTIONS(8717), + [aux_sym_do_statement_token1] = ACTIONS(8717), + [aux_sym_do_condition_token1] = ACTIONS(8717), + [aux_sym_with_statement_token1] = ACTIONS(8717), + [aux_sym_exit_statement_token1] = ACTIONS(8717), + [sym_end_statement] = ACTIONS(8719), + [aux_sym_on_goto_statement_token1] = ACTIONS(8717), + [aux_sym_on_goto_statement_token2] = ACTIONS(8717), + [aux_sym_on_error_statement_token2] = ACTIONS(8717), + [sym__ambiguous_redim_statement] = ACTIONS(8719), + [aux_sym_erase_statement_token1] = ACTIONS(8717), + [aux_sym_open_statement_token1] = ACTIONS(8717), + [aux_sym_file_mode_token2] = ACTIONS(8717), + [aux_sym_file_access_token2] = ACTIONS(8717), + [aux_sym_file_lock_token2] = ACTIONS(8717), + [aux_sym_print_statement_token1] = ACTIONS(8717), + [anon_sym_PLUS] = ACTIONS(8719), + [anon_sym_DASH] = ACTIONS(8717), + [anon_sym_QMARK] = ACTIONS(8719), + [aux_sym_close_statement_token1] = ACTIONS(8717), + [aux_sym_put_statement_token1] = ACTIONS(8717), + [aux_sym_unlock_statement_token1] = ACTIONS(8717), + [aux_sym_seek_statement_token1] = ACTIONS(8717), + [sym_reset_statement] = ACTIONS(8717), + [aux_sym_raise_event_statement_token1] = ACTIONS(8717), + [sym_stop_statement] = ACTIONS(8717), + [sym_beep_statement] = ACTIONS(8717), + [aux_sym_unload_statement_token1] = ACTIONS(8717), + [aux_sym_def_type_statement_token1] = ACTIONS(8717), + [aux_sym_def_type_statement_token2] = ACTIONS(8717), + [aux_sym_def_type_statement_token3] = ACTIONS(8717), + [aux_sym_def_type_statement_token4] = ACTIONS(8717), + [aux_sym_def_type_statement_token5] = ACTIONS(8717), + [aux_sym_def_type_statement_token6] = ACTIONS(8717), + [aux_sym_def_type_statement_token7] = ACTIONS(8717), + [aux_sym_def_type_statement_token8] = ACTIONS(8717), + [aux_sym_def_type_statement_token9] = ACTIONS(8717), + [aux_sym_def_type_statement_token10] = ACTIONS(8717), + [aux_sym_def_type_statement_token11] = ACTIONS(8717), + [aux_sym_def_type_statement_token12] = ACTIONS(8717), + [aux_sym_def_type_statement_token13] = ACTIONS(8717), + [aux_sym_def_type_statement_token14] = ACTIONS(8717), + [aux_sym_call_statement_token1] = ACTIONS(8717), + [sym__ambiguous_call_statement] = ACTIONS(8717), + [aux_sym_addressof_expression_token1] = ACTIONS(8717), + [aux_sym_type_of_expression_token1] = ACTIONS(8717), + [aux_sym_unary_expression_token1] = ACTIONS(8717), + [sym_string_literal] = ACTIONS(8719), + [sym_number_literal] = ACTIONS(8719), + [aux_sym_boolean_literal_token1] = ACTIONS(8717), + [aux_sym_boolean_literal_token2] = ACTIONS(8717), + [sym_nothing_literal] = ACTIONS(8717), + [sym_null_literal] = ACTIONS(8717), + [sym_empty_literal] = ACTIONS(8717), + [sym_date_literal] = ACTIONS(8719), + [anon_sym_POUND] = ACTIONS(8717), + }, + [STATE(6242)] = { + [sym_argument_list] = STATE(7113), + [sym_identifier] = ACTIONS(8843), + [sym_newline] = ACTIONS(8845), + [anon_sym_COLON] = ACTIONS(8845), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8843), + [aux_sym_frm_property_statement_token1] = ACTIONS(8843), + [anon_sym_DOT] = ACTIONS(8843), + [anon_sym_BANG] = ACTIONS(8845), + [aux_sym__attribute_identifier_token1] = ACTIONS(8843), + [aux_sym_option_statement_token3] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8843), + [aux_sym_preprocessor_const_token1] = ACTIONS(8843), + [sym_static_modifier] = ACTIONS(8843), + [sym__dim_keyword] = ACTIONS(8843), + [sym__redim_keyword] = ACTIONS(8843), + [aux_sym_get_accessor_token1] = ACTIONS(8843), + [aux_sym_set_accessor_token1] = ACTIONS(8843), + [aux_sym_const_declaration_token1] = ACTIONS(8843), + [anon_sym_LPAREN] = ACTIONS(10529), + [aux_sym_as_type_clause_token2] = ACTIONS(8843), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8843), + [aux_sym_visibility_token1] = ACTIONS(8843), + [aux_sym_visibility_token2] = ACTIONS(8843), + [aux_sym_elseif_fragment_token1] = ACTIONS(8843), + [aux_sym_else_fragment_token1] = ACTIONS(8843), + [aux_sym_select_statement_token1] = ACTIONS(8843), + [aux_sym_select_statement_token2] = ACTIONS(8843), + [aux_sym__for_header_token1] = ACTIONS(8843), + [aux_sym_do_statement_token1] = ACTIONS(8843), + [aux_sym_do_condition_token1] = ACTIONS(8843), + [aux_sym_with_statement_token1] = ACTIONS(8843), + [aux_sym_exit_statement_token1] = ACTIONS(8843), + [sym_end_statement] = ACTIONS(8845), + [aux_sym_on_goto_statement_token1] = ACTIONS(8843), + [aux_sym_on_goto_statement_token2] = ACTIONS(8843), + [aux_sym_on_error_statement_token2] = ACTIONS(8843), + [sym__ambiguous_redim_statement] = ACTIONS(8845), + [aux_sym_erase_statement_token1] = ACTIONS(8843), + [aux_sym_open_statement_token1] = ACTIONS(8843), + [aux_sym_file_mode_token2] = ACTIONS(8843), + [aux_sym_file_access_token2] = ACTIONS(8843), + [aux_sym_file_lock_token2] = ACTIONS(8843), + [aux_sym_print_statement_token1] = ACTIONS(8843), + [anon_sym_PLUS] = ACTIONS(8845), + [anon_sym_DASH] = ACTIONS(8843), + [anon_sym_QMARK] = ACTIONS(8845), + [aux_sym_close_statement_token1] = ACTIONS(8843), + [aux_sym_put_statement_token1] = ACTIONS(8843), + [aux_sym_unlock_statement_token1] = ACTIONS(8843), + [aux_sym_seek_statement_token1] = ACTIONS(8843), + [sym_reset_statement] = ACTIONS(8843), + [aux_sym_raise_event_statement_token1] = ACTIONS(8843), + [sym_stop_statement] = ACTIONS(8843), + [sym_beep_statement] = ACTIONS(8843), + [aux_sym_unload_statement_token1] = ACTIONS(8843), + [aux_sym_def_type_statement_token1] = ACTIONS(8843), + [aux_sym_def_type_statement_token2] = ACTIONS(8843), + [aux_sym_def_type_statement_token3] = ACTIONS(8843), + [aux_sym_def_type_statement_token4] = ACTIONS(8843), + [aux_sym_def_type_statement_token5] = ACTIONS(8843), + [aux_sym_def_type_statement_token6] = ACTIONS(8843), + [aux_sym_def_type_statement_token7] = ACTIONS(8843), + [aux_sym_def_type_statement_token8] = ACTIONS(8843), + [aux_sym_def_type_statement_token9] = ACTIONS(8843), + [aux_sym_def_type_statement_token10] = ACTIONS(8843), + [aux_sym_def_type_statement_token11] = ACTIONS(8843), + [aux_sym_def_type_statement_token12] = ACTIONS(8843), + [aux_sym_def_type_statement_token13] = ACTIONS(8843), + [aux_sym_def_type_statement_token14] = ACTIONS(8843), + [aux_sym_call_statement_token1] = ACTIONS(8843), + [sym__ambiguous_call_statement] = ACTIONS(8843), + [aux_sym_addressof_expression_token1] = ACTIONS(8843), + [aux_sym_type_of_expression_token1] = ACTIONS(8843), + [aux_sym_unary_expression_token1] = ACTIONS(8843), + [sym_string_literal] = ACTIONS(8845), + [sym_number_literal] = ACTIONS(8845), + [aux_sym_boolean_literal_token1] = ACTIONS(8843), + [aux_sym_boolean_literal_token2] = ACTIONS(8843), + [sym_nothing_literal] = ACTIONS(8843), + [sym_null_literal] = ACTIONS(8843), + [sym_empty_literal] = ACTIONS(8843), + [sym_date_literal] = ACTIONS(8845), + [anon_sym_POUND] = ACTIONS(8843), + }, + [STATE(6243)] = { + [sym_argument_list] = STATE(7114), + [sym_identifier] = ACTIONS(8899), + [sym_newline] = ACTIONS(8901), + [anon_sym_COLON] = ACTIONS(8901), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8899), + [aux_sym_frm_property_statement_token1] = ACTIONS(8899), + [anon_sym_DOT] = ACTIONS(10558), + [anon_sym_BANG] = ACTIONS(10560), + [aux_sym__attribute_identifier_token1] = ACTIONS(8899), + [aux_sym_option_statement_token3] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8899), + [aux_sym_preprocessor_const_token1] = ACTIONS(8899), + [sym_static_modifier] = ACTIONS(8899), + [sym__dim_keyword] = ACTIONS(8899), + [sym__redim_keyword] = ACTIONS(8899), + [aux_sym_get_accessor_token1] = ACTIONS(8899), + [aux_sym_set_accessor_token1] = ACTIONS(8899), + [aux_sym_const_declaration_token1] = ACTIONS(8899), + [anon_sym_LPAREN] = ACTIONS(10529), + [aux_sym_as_type_clause_token2] = ACTIONS(8899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8899), + [aux_sym_visibility_token1] = ACTIONS(8899), + [aux_sym_visibility_token2] = ACTIONS(8899), + [aux_sym_elseif_fragment_token1] = ACTIONS(8899), + [aux_sym_else_fragment_token1] = ACTIONS(8899), + [aux_sym_select_statement_token1] = ACTIONS(8899), + [aux_sym_select_statement_token2] = ACTIONS(8899), + [aux_sym__for_header_token1] = ACTIONS(8899), + [aux_sym_do_statement_token1] = ACTIONS(8899), + [aux_sym_do_condition_token1] = ACTIONS(8899), + [aux_sym_with_statement_token1] = ACTIONS(8899), + [aux_sym_exit_statement_token1] = ACTIONS(8899), + [sym_end_statement] = ACTIONS(8901), + [aux_sym_on_goto_statement_token1] = ACTIONS(8899), + [aux_sym_on_goto_statement_token2] = ACTIONS(8899), + [aux_sym_on_error_statement_token2] = ACTIONS(8899), + [sym__ambiguous_redim_statement] = ACTIONS(8901), + [aux_sym_erase_statement_token1] = ACTIONS(8899), + [aux_sym_open_statement_token1] = ACTIONS(8899), + [aux_sym_file_mode_token2] = ACTIONS(8899), + [aux_sym_file_access_token2] = ACTIONS(8899), + [aux_sym_file_lock_token2] = ACTIONS(8899), + [aux_sym_print_statement_token1] = ACTIONS(8899), + [anon_sym_PLUS] = ACTIONS(8901), + [anon_sym_DASH] = ACTIONS(8899), + [anon_sym_QMARK] = ACTIONS(8901), + [aux_sym_close_statement_token1] = ACTIONS(8899), + [aux_sym_put_statement_token1] = ACTIONS(8899), + [aux_sym_unlock_statement_token1] = ACTIONS(8899), + [aux_sym_seek_statement_token1] = ACTIONS(8899), + [sym_reset_statement] = ACTIONS(8899), + [aux_sym_raise_event_statement_token1] = ACTIONS(8899), + [sym_stop_statement] = ACTIONS(8899), + [sym_beep_statement] = ACTIONS(8899), + [aux_sym_unload_statement_token1] = ACTIONS(8899), + [aux_sym_def_type_statement_token1] = ACTIONS(8899), + [aux_sym_def_type_statement_token2] = ACTIONS(8899), + [aux_sym_def_type_statement_token3] = ACTIONS(8899), + [aux_sym_def_type_statement_token4] = ACTIONS(8899), + [aux_sym_def_type_statement_token5] = ACTIONS(8899), + [aux_sym_def_type_statement_token6] = ACTIONS(8899), + [aux_sym_def_type_statement_token7] = ACTIONS(8899), + [aux_sym_def_type_statement_token8] = ACTIONS(8899), + [aux_sym_def_type_statement_token9] = ACTIONS(8899), + [aux_sym_def_type_statement_token10] = ACTIONS(8899), + [aux_sym_def_type_statement_token11] = ACTIONS(8899), + [aux_sym_def_type_statement_token12] = ACTIONS(8899), + [aux_sym_def_type_statement_token13] = ACTIONS(8899), + [aux_sym_def_type_statement_token14] = ACTIONS(8899), + [aux_sym_call_statement_token1] = ACTIONS(8899), + [sym__ambiguous_call_statement] = ACTIONS(8899), + [aux_sym_addressof_expression_token1] = ACTIONS(8899), + [aux_sym_type_of_expression_token1] = ACTIONS(8899), + [aux_sym_unary_expression_token1] = ACTIONS(8899), + [sym_string_literal] = ACTIONS(8901), + [sym_number_literal] = ACTIONS(8901), + [aux_sym_boolean_literal_token1] = ACTIONS(8899), + [aux_sym_boolean_literal_token2] = ACTIONS(8899), + [sym_nothing_literal] = ACTIONS(8899), + [sym_null_literal] = ACTIONS(8899), + [sym_empty_literal] = ACTIONS(8899), + [sym_date_literal] = ACTIONS(8901), + [anon_sym_POUND] = ACTIONS(8899), + }, + [STATE(6244)] = { + [sym_identifier] = ACTIONS(8931), + [sym_newline] = ACTIONS(8933), + [anon_sym_COLON] = ACTIONS(8933), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8931), + [aux_sym_frm_property_statement_token1] = ACTIONS(8931), + [anon_sym_DOT] = ACTIONS(8931), + [anon_sym_BANG] = ACTIONS(8933), + [aux_sym__attribute_identifier_token1] = ACTIONS(8931), + [aux_sym_option_statement_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8931), + [aux_sym_preprocessor_const_token1] = ACTIONS(8931), + [sym_static_modifier] = ACTIONS(8931), + [sym__dim_keyword] = ACTIONS(8931), + [sym__redim_keyword] = ACTIONS(8931), + [aux_sym_get_accessor_token1] = ACTIONS(8931), + [aux_sym_set_accessor_token1] = ACTIONS(8931), + [aux_sym_const_declaration_token1] = ACTIONS(8931), + [anon_sym_LPAREN] = ACTIONS(8933), + [aux_sym_as_type_clause_token2] = ACTIONS(8931), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8931), + [aux_sym_visibility_token1] = ACTIONS(8931), + [aux_sym_visibility_token2] = ACTIONS(8931), + [aux_sym_elseif_fragment_token1] = ACTIONS(8931), + [aux_sym_else_fragment_token1] = ACTIONS(8931), + [aux_sym_select_statement_token1] = ACTIONS(8931), + [aux_sym_select_statement_token2] = ACTIONS(8931), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8931), + [aux_sym__for_header_token1] = ACTIONS(8931), + [aux_sym_do_statement_token1] = ACTIONS(8931), + [aux_sym_do_condition_token1] = ACTIONS(8931), + [aux_sym_with_statement_token1] = ACTIONS(8931), + [aux_sym_exit_statement_token1] = ACTIONS(8931), + [sym_end_statement] = ACTIONS(8933), + [aux_sym_on_goto_statement_token1] = ACTIONS(8931), + [aux_sym_on_goto_statement_token2] = ACTIONS(8931), + [aux_sym_on_error_statement_token2] = ACTIONS(8931), + [sym__ambiguous_redim_statement] = ACTIONS(8933), + [aux_sym_erase_statement_token1] = ACTIONS(8931), + [aux_sym_open_statement_token1] = ACTIONS(8931), + [aux_sym_file_mode_token2] = ACTIONS(8931), + [aux_sym_file_access_token2] = ACTIONS(8931), + [aux_sym_file_lock_token2] = ACTIONS(8931), + [aux_sym_print_statement_token1] = ACTIONS(8931), + [anon_sym_PLUS] = ACTIONS(8933), + [anon_sym_DASH] = ACTIONS(8931), + [anon_sym_QMARK] = ACTIONS(8933), + [aux_sym_close_statement_token1] = ACTIONS(8931), + [aux_sym_put_statement_token1] = ACTIONS(8931), + [aux_sym_unlock_statement_token1] = ACTIONS(8931), + [aux_sym_seek_statement_token1] = ACTIONS(8931), + [sym_reset_statement] = ACTIONS(8931), + [aux_sym_raise_event_statement_token1] = ACTIONS(8931), + [sym_stop_statement] = ACTIONS(8931), + [sym_beep_statement] = ACTIONS(8931), + [aux_sym_unload_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token2] = ACTIONS(8931), + [aux_sym_def_type_statement_token3] = ACTIONS(8931), + [aux_sym_def_type_statement_token4] = ACTIONS(8931), + [aux_sym_def_type_statement_token5] = ACTIONS(8931), + [aux_sym_def_type_statement_token6] = ACTIONS(8931), + [aux_sym_def_type_statement_token7] = ACTIONS(8931), + [aux_sym_def_type_statement_token8] = ACTIONS(8931), + [aux_sym_def_type_statement_token9] = ACTIONS(8931), + [aux_sym_def_type_statement_token10] = ACTIONS(8931), + [aux_sym_def_type_statement_token11] = ACTIONS(8931), + [aux_sym_def_type_statement_token12] = ACTIONS(8931), + [aux_sym_def_type_statement_token13] = ACTIONS(8931), + [aux_sym_def_type_statement_token14] = ACTIONS(8931), + [aux_sym_call_statement_token1] = ACTIONS(8931), + [sym__ambiguous_call_statement] = ACTIONS(8931), + [aux_sym_addressof_expression_token1] = ACTIONS(8931), + [aux_sym_type_of_expression_token1] = ACTIONS(8931), + [aux_sym_unary_expression_token1] = ACTIONS(8931), + [sym_string_literal] = ACTIONS(8933), + [sym_number_literal] = ACTIONS(8933), + [aux_sym_boolean_literal_token1] = ACTIONS(8931), + [aux_sym_boolean_literal_token2] = ACTIONS(8931), + [sym_nothing_literal] = ACTIONS(8931), + [sym_null_literal] = ACTIONS(8931), + [sym_empty_literal] = ACTIONS(8931), + [sym_date_literal] = ACTIONS(8933), + [anon_sym_POUND] = ACTIONS(8931), + }, + [STATE(6245)] = { + [sym_identifier] = ACTIONS(8877), + [sym_newline] = ACTIONS(8879), + [anon_sym_COLON] = ACTIONS(8879), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8877), + [aux_sym_frm_property_statement_token1] = ACTIONS(8877), + [anon_sym_DOT] = ACTIONS(8877), + [anon_sym_BANG] = ACTIONS(8879), + [aux_sym__attribute_identifier_token1] = ACTIONS(8877), + [aux_sym_option_statement_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8877), + [aux_sym_preprocessor_const_token1] = ACTIONS(8877), + [sym_static_modifier] = ACTIONS(8877), + [sym__dim_keyword] = ACTIONS(8877), + [sym__redim_keyword] = ACTIONS(8877), + [aux_sym_get_accessor_token1] = ACTIONS(8877), + [aux_sym_set_accessor_token1] = ACTIONS(8877), + [aux_sym_const_declaration_token1] = ACTIONS(8877), + [anon_sym_LPAREN] = ACTIONS(8879), + [aux_sym_as_type_clause_token2] = ACTIONS(8877), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8877), + [aux_sym_visibility_token1] = ACTIONS(8877), + [aux_sym_visibility_token2] = ACTIONS(8877), + [aux_sym_elseif_fragment_token1] = ACTIONS(8877), + [aux_sym_else_fragment_token1] = ACTIONS(8877), + [aux_sym_select_statement_token1] = ACTIONS(8877), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8877), + [aux_sym__for_header_token1] = ACTIONS(8877), + [aux_sym_do_statement_token1] = ACTIONS(8877), + [aux_sym_do_statement_token2] = ACTIONS(8877), + [aux_sym_do_condition_token1] = ACTIONS(8877), + [aux_sym_with_statement_token1] = ACTIONS(8877), + [aux_sym_exit_statement_token1] = ACTIONS(8877), + [sym_end_statement] = ACTIONS(8879), + [aux_sym_on_goto_statement_token1] = ACTIONS(8877), + [aux_sym_on_goto_statement_token2] = ACTIONS(8877), + [aux_sym_on_error_statement_token2] = ACTIONS(8877), + [sym__ambiguous_redim_statement] = ACTIONS(8879), + [aux_sym_erase_statement_token1] = ACTIONS(8877), + [aux_sym_open_statement_token1] = ACTIONS(8877), + [aux_sym_file_mode_token2] = ACTIONS(8877), + [aux_sym_file_access_token2] = ACTIONS(8877), + [aux_sym_file_lock_token2] = ACTIONS(8877), + [aux_sym_print_statement_token1] = ACTIONS(8877), + [anon_sym_PLUS] = ACTIONS(8879), + [anon_sym_DASH] = ACTIONS(8877), + [anon_sym_QMARK] = ACTIONS(8879), + [aux_sym_close_statement_token1] = ACTIONS(8877), + [aux_sym_put_statement_token1] = ACTIONS(8877), + [aux_sym_unlock_statement_token1] = ACTIONS(8877), + [aux_sym_seek_statement_token1] = ACTIONS(8877), + [sym_reset_statement] = ACTIONS(8877), + [aux_sym_raise_event_statement_token1] = ACTIONS(8877), + [sym_stop_statement] = ACTIONS(8877), + [sym_beep_statement] = ACTIONS(8877), + [aux_sym_unload_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token2] = ACTIONS(8877), + [aux_sym_def_type_statement_token3] = ACTIONS(8877), + [aux_sym_def_type_statement_token4] = ACTIONS(8877), + [aux_sym_def_type_statement_token5] = ACTIONS(8877), + [aux_sym_def_type_statement_token6] = ACTIONS(8877), + [aux_sym_def_type_statement_token7] = ACTIONS(8877), + [aux_sym_def_type_statement_token8] = ACTIONS(8877), + [aux_sym_def_type_statement_token9] = ACTIONS(8877), + [aux_sym_def_type_statement_token10] = ACTIONS(8877), + [aux_sym_def_type_statement_token11] = ACTIONS(8877), + [aux_sym_def_type_statement_token12] = ACTIONS(8877), + [aux_sym_def_type_statement_token13] = ACTIONS(8877), + [aux_sym_def_type_statement_token14] = ACTIONS(8877), + [aux_sym_call_statement_token1] = ACTIONS(8877), + [sym__ambiguous_call_statement] = ACTIONS(8877), + [aux_sym_addressof_expression_token1] = ACTIONS(8877), + [aux_sym_type_of_expression_token1] = ACTIONS(8877), + [aux_sym_unary_expression_token1] = ACTIONS(8877), + [sym_string_literal] = ACTIONS(8879), + [sym_number_literal] = ACTIONS(8879), + [aux_sym_boolean_literal_token1] = ACTIONS(8877), + [aux_sym_boolean_literal_token2] = ACTIONS(8877), + [sym_nothing_literal] = ACTIONS(8877), + [sym_null_literal] = ACTIONS(8877), + [sym_empty_literal] = ACTIONS(8877), + [sym_date_literal] = ACTIONS(8879), + [anon_sym_POUND] = ACTIONS(8877), + }, + [STATE(6246)] = { + [sym_identifier] = ACTIONS(8739), + [sym_newline] = ACTIONS(8741), + [anon_sym_COLON] = ACTIONS(8741), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8739), + [aux_sym_frm_property_statement_token1] = ACTIONS(8739), + [anon_sym_DOT] = ACTIONS(8739), + [anon_sym_BANG] = ACTIONS(8741), + [aux_sym__attribute_identifier_token1] = ACTIONS(8739), + [aux_sym_option_statement_token3] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8739), + [aux_sym_preprocessor_const_token1] = ACTIONS(8739), + [sym_static_modifier] = ACTIONS(8739), + [sym__dim_keyword] = ACTIONS(8739), + [sym__redim_keyword] = ACTIONS(8739), + [aux_sym_get_accessor_token1] = ACTIONS(8739), + [aux_sym_set_accessor_token1] = ACTIONS(8739), + [anon_sym_COMMA] = ACTIONS(11083), + [aux_sym_const_declaration_token1] = ACTIONS(8739), + [anon_sym_LPAREN] = ACTIONS(8741), + [aux_sym_as_type_clause_token2] = ACTIONS(8739), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8739), + [aux_sym_visibility_token1] = ACTIONS(8739), + [aux_sym_visibility_token2] = ACTIONS(8739), + [aux_sym_elseif_fragment_token1] = ACTIONS(8739), + [aux_sym_else_fragment_token1] = ACTIONS(8739), + [aux_sym_select_statement_token1] = ACTIONS(8739), + [aux_sym__for_header_token1] = ACTIONS(8739), + [aux_sym_do_statement_token1] = ACTIONS(8739), + [aux_sym_do_condition_token1] = ACTIONS(8739), + [aux_sym_with_statement_token1] = ACTIONS(8739), + [aux_sym_exit_statement_token1] = ACTIONS(8739), + [sym_end_statement] = ACTIONS(8741), + [aux_sym_on_goto_statement_token1] = ACTIONS(8739), + [aux_sym_on_goto_statement_token2] = ACTIONS(8739), + [aux_sym_on_error_statement_token2] = ACTIONS(8739), + [sym__ambiguous_redim_statement] = ACTIONS(8741), + [aux_sym_erase_statement_token1] = ACTIONS(8739), + [aux_sym_open_statement_token1] = ACTIONS(8739), + [aux_sym_file_mode_token2] = ACTIONS(8739), + [aux_sym_file_access_token2] = ACTIONS(8739), + [aux_sym_file_lock_token2] = ACTIONS(8739), + [aux_sym_print_statement_token1] = ACTIONS(8739), + [anon_sym_PLUS] = ACTIONS(8741), + [anon_sym_DASH] = ACTIONS(8739), + [anon_sym_QMARK] = ACTIONS(8741), + [aux_sym_close_statement_token1] = ACTIONS(8739), + [aux_sym_put_statement_token1] = ACTIONS(8739), + [aux_sym_unlock_statement_token1] = ACTIONS(8739), + [aux_sym_seek_statement_token1] = ACTIONS(8739), + [sym_reset_statement] = ACTIONS(8739), + [aux_sym_raise_event_statement_token1] = ACTIONS(8739), + [sym_stop_statement] = ACTIONS(8739), + [sym_beep_statement] = ACTIONS(8739), + [aux_sym_unload_statement_token1] = ACTIONS(8739), + [aux_sym_def_type_statement_token1] = ACTIONS(8739), + [aux_sym_def_type_statement_token2] = ACTIONS(8739), + [aux_sym_def_type_statement_token3] = ACTIONS(8739), + [aux_sym_def_type_statement_token4] = ACTIONS(8739), + [aux_sym_def_type_statement_token5] = ACTIONS(8739), + [aux_sym_def_type_statement_token6] = ACTIONS(8739), + [aux_sym_def_type_statement_token7] = ACTIONS(8739), + [aux_sym_def_type_statement_token8] = ACTIONS(8739), + [aux_sym_def_type_statement_token9] = ACTIONS(8739), + [aux_sym_def_type_statement_token10] = ACTIONS(8739), + [aux_sym_def_type_statement_token11] = ACTIONS(8739), + [aux_sym_def_type_statement_token12] = ACTIONS(8739), + [aux_sym_def_type_statement_token13] = ACTIONS(8739), + [aux_sym_def_type_statement_token14] = ACTIONS(8739), + [aux_sym_call_statement_token1] = ACTIONS(8739), + [sym__ambiguous_call_statement] = ACTIONS(8739), + [aux_sym_addressof_expression_token1] = ACTIONS(8739), + [aux_sym_type_of_expression_token1] = ACTIONS(8739), + [aux_sym_unary_expression_token1] = ACTIONS(8739), + [sym_string_literal] = ACTIONS(8741), + [sym_number_literal] = ACTIONS(8741), + [aux_sym_boolean_literal_token1] = ACTIONS(8739), + [aux_sym_boolean_literal_token2] = ACTIONS(8739), + [sym_nothing_literal] = ACTIONS(8739), + [sym_null_literal] = ACTIONS(8739), + [sym_empty_literal] = ACTIONS(8739), + [sym_date_literal] = ACTIONS(8741), + [anon_sym_POUND] = ACTIONS(8739), + }, + [STATE(6247)] = { + [sym_identifier] = ACTIONS(8162), + [sym_newline] = ACTIONS(8164), + [anon_sym_COLON] = ACTIONS(8164), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8162), + [aux_sym_frm_property_statement_token1] = ACTIONS(8162), + [anon_sym_DOT] = ACTIONS(8162), + [anon_sym_BANG] = ACTIONS(8164), + [aux_sym__attribute_identifier_token1] = ACTIONS(8162), + [aux_sym_option_statement_token3] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8162), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8162), + [aux_sym_preprocessor_const_token1] = ACTIONS(8162), + [sym_static_modifier] = ACTIONS(8162), + [sym__dim_keyword] = ACTIONS(8162), + [sym__redim_keyword] = ACTIONS(8162), + [aux_sym_get_accessor_token1] = ACTIONS(8162), + [aux_sym_set_accessor_token1] = ACTIONS(8162), + [anon_sym_COMMA] = ACTIONS(8164), + [aux_sym_const_declaration_token1] = ACTIONS(8162), + [anon_sym_LPAREN] = ACTIONS(8164), + [aux_sym_as_type_clause_token2] = ACTIONS(8162), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8162), + [aux_sym_visibility_token1] = ACTIONS(8162), + [aux_sym_visibility_token2] = ACTIONS(8162), + [aux_sym_elseif_fragment_token1] = ACTIONS(8162), + [aux_sym_else_fragment_token1] = ACTIONS(8162), + [aux_sym_select_statement_token1] = ACTIONS(8162), + [aux_sym__for_header_token1] = ACTIONS(8162), + [aux_sym_do_statement_token1] = ACTIONS(8162), + [aux_sym_do_condition_token1] = ACTIONS(8162), + [aux_sym_with_statement_token1] = ACTIONS(8162), + [aux_sym_exit_statement_token1] = ACTIONS(8162), + [sym_end_statement] = ACTIONS(8164), + [aux_sym_on_goto_statement_token1] = ACTIONS(8162), + [aux_sym_on_goto_statement_token2] = ACTIONS(8162), + [aux_sym_on_error_statement_token2] = ACTIONS(8162), + [sym__ambiguous_redim_statement] = ACTIONS(8164), + [aux_sym_erase_statement_token1] = ACTIONS(8162), + [aux_sym_open_statement_token1] = ACTIONS(8162), + [aux_sym_file_mode_token2] = ACTIONS(8162), + [aux_sym_file_access_token2] = ACTIONS(8162), + [aux_sym_file_lock_token2] = ACTIONS(8162), + [aux_sym_print_statement_token1] = ACTIONS(8162), + [anon_sym_PLUS] = ACTIONS(8164), + [anon_sym_DASH] = ACTIONS(8162), + [anon_sym_SEMI] = ACTIONS(8164), + [anon_sym_QMARK] = ACTIONS(8164), + [aux_sym_close_statement_token1] = ACTIONS(8162), + [aux_sym_put_statement_token1] = ACTIONS(8162), + [aux_sym_unlock_statement_token1] = ACTIONS(8162), + [aux_sym_seek_statement_token1] = ACTIONS(8162), + [sym_reset_statement] = ACTIONS(8162), + [aux_sym_raise_event_statement_token1] = ACTIONS(8162), + [sym_stop_statement] = ACTIONS(8162), + [sym_beep_statement] = ACTIONS(8162), + [aux_sym_unload_statement_token1] = ACTIONS(8162), + [aux_sym_def_type_statement_token1] = ACTIONS(8162), + [aux_sym_def_type_statement_token2] = ACTIONS(8162), + [aux_sym_def_type_statement_token3] = ACTIONS(8162), + [aux_sym_def_type_statement_token4] = ACTIONS(8162), + [aux_sym_def_type_statement_token5] = ACTIONS(8162), + [aux_sym_def_type_statement_token6] = ACTIONS(8162), + [aux_sym_def_type_statement_token7] = ACTIONS(8162), + [aux_sym_def_type_statement_token8] = ACTIONS(8162), + [aux_sym_def_type_statement_token9] = ACTIONS(8162), + [aux_sym_def_type_statement_token10] = ACTIONS(8162), + [aux_sym_def_type_statement_token11] = ACTIONS(8162), + [aux_sym_def_type_statement_token12] = ACTIONS(8162), + [aux_sym_def_type_statement_token13] = ACTIONS(8162), + [aux_sym_def_type_statement_token14] = ACTIONS(8162), + [aux_sym_call_statement_token1] = ACTIONS(8162), + [sym__ambiguous_call_statement] = ACTIONS(8162), + [aux_sym_addressof_expression_token1] = ACTIONS(8162), + [aux_sym_type_of_expression_token1] = ACTIONS(8162), + [aux_sym_unary_expression_token1] = ACTIONS(8162), + [sym_string_literal] = ACTIONS(8164), + [sym_number_literal] = ACTIONS(8164), + [aux_sym_boolean_literal_token1] = ACTIONS(8162), + [aux_sym_boolean_literal_token2] = ACTIONS(8162), + [sym_nothing_literal] = ACTIONS(8162), + [sym_null_literal] = ACTIONS(8162), + [sym_empty_literal] = ACTIONS(8162), + [sym_date_literal] = ACTIONS(8164), + [anon_sym_POUND] = ACTIONS(8162), + }, + [STATE(6248)] = { + [sym_identifier] = ACTIONS(8109), + [sym_newline] = ACTIONS(8111), + [anon_sym_COLON] = ACTIONS(8111), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8109), + [aux_sym_frm_property_statement_token1] = ACTIONS(8109), + [anon_sym_DOT] = ACTIONS(8109), + [anon_sym_BANG] = ACTIONS(8111), + [aux_sym__attribute_identifier_token1] = ACTIONS(8109), + [aux_sym_option_statement_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8109), + [aux_sym_preprocessor_const_token1] = ACTIONS(8109), + [sym_static_modifier] = ACTIONS(8109), + [sym__dim_keyword] = ACTIONS(8109), + [sym__redim_keyword] = ACTIONS(8109), + [aux_sym_get_accessor_token1] = ACTIONS(8109), + [aux_sym_set_accessor_token1] = ACTIONS(8109), + [aux_sym_const_declaration_token1] = ACTIONS(8109), + [anon_sym_LPAREN] = ACTIONS(8111), + [aux_sym_as_type_clause_token2] = ACTIONS(8109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8109), + [aux_sym_visibility_token1] = ACTIONS(8109), + [aux_sym_visibility_token2] = ACTIONS(8109), + [aux_sym_elseif_fragment_token1] = ACTIONS(8109), + [aux_sym_else_fragment_token1] = ACTIONS(8109), + [aux_sym_select_statement_token1] = ACTIONS(8109), + [aux_sym__for_header_token1] = ACTIONS(8109), + [aux_sym_do_statement_token1] = ACTIONS(8109), + [aux_sym_do_condition_token1] = ACTIONS(8109), + [aux_sym_with_statement_token1] = ACTIONS(8109), + [aux_sym_exit_statement_token1] = ACTIONS(8109), + [sym_end_statement] = ACTIONS(8111), + [aux_sym_on_goto_statement_token1] = ACTIONS(8109), + [aux_sym_on_goto_statement_token2] = ACTIONS(8109), + [aux_sym_on_error_statement_token2] = ACTIONS(8109), + [sym__ambiguous_redim_statement] = ACTIONS(8111), + [aux_sym_erase_statement_token1] = ACTIONS(8109), + [aux_sym_open_statement_token1] = ACTIONS(8109), + [aux_sym_file_mode_token2] = ACTIONS(8109), + [aux_sym_file_access_token2] = ACTIONS(8109), + [aux_sym_file_lock_token2] = ACTIONS(8109), + [aux_sym_print_statement_token1] = ACTIONS(8109), + [anon_sym_PLUS] = ACTIONS(8111), + [anon_sym_DASH] = ACTIONS(8109), + [anon_sym_SEMI] = ACTIONS(8111), + [anon_sym_QMARK] = ACTIONS(8111), + [aux_sym_close_statement_token1] = ACTIONS(8109), + [aux_sym_put_statement_token1] = ACTIONS(8109), + [aux_sym_unlock_statement_token1] = ACTIONS(8109), + [aux_sym_seek_statement_token1] = ACTIONS(8109), + [sym_reset_statement] = ACTIONS(8109), + [aux_sym_raise_event_statement_token1] = ACTIONS(8109), + [sym_stop_statement] = ACTIONS(8109), + [sym_beep_statement] = ACTIONS(8109), + [aux_sym_unload_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token2] = ACTIONS(8109), + [aux_sym_def_type_statement_token3] = ACTIONS(8109), + [aux_sym_def_type_statement_token4] = ACTIONS(8109), + [aux_sym_def_type_statement_token5] = ACTIONS(8109), + [aux_sym_def_type_statement_token6] = ACTIONS(8109), + [aux_sym_def_type_statement_token7] = ACTIONS(8109), + [aux_sym_def_type_statement_token8] = ACTIONS(8109), + [aux_sym_def_type_statement_token9] = ACTIONS(8109), + [aux_sym_def_type_statement_token10] = ACTIONS(8109), + [aux_sym_def_type_statement_token11] = ACTIONS(8109), + [aux_sym_def_type_statement_token12] = ACTIONS(8109), + [aux_sym_def_type_statement_token13] = ACTIONS(8109), + [aux_sym_def_type_statement_token14] = ACTIONS(8109), + [aux_sym_call_statement_token1] = ACTIONS(8109), + [sym__ambiguous_call_statement] = ACTIONS(8109), + [aux_sym_addressof_expression_token1] = ACTIONS(8109), + [aux_sym_type_of_expression_token1] = ACTIONS(8109), + [aux_sym_unary_expression_token1] = ACTIONS(8109), + [sym_string_literal] = ACTIONS(8111), + [sym_number_literal] = ACTIONS(8111), + [aux_sym_boolean_literal_token1] = ACTIONS(8109), + [aux_sym_boolean_literal_token2] = ACTIONS(8109), + [sym_nothing_literal] = ACTIONS(8109), + [sym_null_literal] = ACTIONS(8109), + [sym_empty_literal] = ACTIONS(8109), + [sym_date_literal] = ACTIONS(8111), + [anon_sym_POUND] = ACTIONS(8109), + }, + [STATE(6249)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6276), + [sym_identifier] = ACTIONS(8733), + [sym_newline] = ACTIONS(8735), + [anon_sym_COLON] = ACTIONS(10837), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8733), + [aux_sym_frm_property_statement_token1] = ACTIONS(8733), + [anon_sym_DOT] = ACTIONS(8733), + [anon_sym_BANG] = ACTIONS(8735), + [aux_sym__attribute_identifier_token1] = ACTIONS(8733), + [aux_sym_option_statement_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8733), + [aux_sym_preprocessor_const_token1] = ACTIONS(8733), + [sym_static_modifier] = ACTIONS(8733), + [sym__dim_keyword] = ACTIONS(8733), + [sym__redim_keyword] = ACTIONS(8733), + [aux_sym_get_accessor_token1] = ACTIONS(8733), + [aux_sym_set_accessor_token1] = ACTIONS(8733), + [aux_sym_const_declaration_token1] = ACTIONS(8733), + [anon_sym_LPAREN] = ACTIONS(8735), + [aux_sym_as_type_clause_token2] = ACTIONS(8733), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8733), + [aux_sym_visibility_token1] = ACTIONS(8733), + [aux_sym_visibility_token2] = ACTIONS(8733), + [aux_sym_elseif_fragment_token1] = ACTIONS(8733), + [aux_sym_else_fragment_token1] = ACTIONS(11085), + [aux_sym_select_statement_token1] = ACTIONS(8733), + [aux_sym__for_header_token1] = ACTIONS(8733), + [aux_sym_do_statement_token1] = ACTIONS(8733), + [aux_sym_do_condition_token1] = ACTIONS(8733), + [aux_sym_with_statement_token1] = ACTIONS(8733), + [aux_sym_exit_statement_token1] = ACTIONS(8733), + [sym_end_statement] = ACTIONS(8735), + [aux_sym_on_goto_statement_token1] = ACTIONS(8733), + [aux_sym_on_goto_statement_token2] = ACTIONS(8733), + [aux_sym_on_error_statement_token2] = ACTIONS(8733), + [sym__ambiguous_redim_statement] = ACTIONS(8735), + [aux_sym_erase_statement_token1] = ACTIONS(8733), + [aux_sym_open_statement_token1] = ACTIONS(8733), + [aux_sym_file_mode_token2] = ACTIONS(8733), + [aux_sym_file_access_token2] = ACTIONS(8733), + [aux_sym_file_lock_token2] = ACTIONS(8733), + [aux_sym_print_statement_token1] = ACTIONS(8733), + [anon_sym_PLUS] = ACTIONS(8735), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_QMARK] = ACTIONS(8735), + [aux_sym_close_statement_token1] = ACTIONS(8733), + [aux_sym_put_statement_token1] = ACTIONS(8733), + [aux_sym_unlock_statement_token1] = ACTIONS(8733), + [aux_sym_seek_statement_token1] = ACTIONS(8733), + [sym_reset_statement] = ACTIONS(8733), + [aux_sym_raise_event_statement_token1] = ACTIONS(8733), + [sym_stop_statement] = ACTIONS(8733), + [sym_beep_statement] = ACTIONS(8733), + [aux_sym_unload_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token2] = ACTIONS(8733), + [aux_sym_def_type_statement_token3] = ACTIONS(8733), + [aux_sym_def_type_statement_token4] = ACTIONS(8733), + [aux_sym_def_type_statement_token5] = ACTIONS(8733), + [aux_sym_def_type_statement_token6] = ACTIONS(8733), + [aux_sym_def_type_statement_token7] = ACTIONS(8733), + [aux_sym_def_type_statement_token8] = ACTIONS(8733), + [aux_sym_def_type_statement_token9] = ACTIONS(8733), + [aux_sym_def_type_statement_token10] = ACTIONS(8733), + [aux_sym_def_type_statement_token11] = ACTIONS(8733), + [aux_sym_def_type_statement_token12] = ACTIONS(8733), + [aux_sym_def_type_statement_token13] = ACTIONS(8733), + [aux_sym_def_type_statement_token14] = ACTIONS(8733), + [aux_sym_call_statement_token1] = ACTIONS(8733), + [sym__ambiguous_call_statement] = ACTIONS(8733), + [aux_sym_addressof_expression_token1] = ACTIONS(8733), + [aux_sym_type_of_expression_token1] = ACTIONS(8733), + [aux_sym_unary_expression_token1] = ACTIONS(8733), + [sym_string_literal] = ACTIONS(8735), + [sym_number_literal] = ACTIONS(8735), + [aux_sym_boolean_literal_token1] = ACTIONS(8733), + [aux_sym_boolean_literal_token2] = ACTIONS(8733), + [sym_nothing_literal] = ACTIONS(8733), + [sym_null_literal] = ACTIONS(8733), + [sym_empty_literal] = ACTIONS(8733), + [sym_date_literal] = ACTIONS(8735), + [anon_sym_POUND] = ACTIONS(8733), + }, + [STATE(6250)] = { + [sym_identifier] = ACTIONS(8857), + [sym_newline] = ACTIONS(8859), + [anon_sym_COLON] = ACTIONS(8859), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8857), + [aux_sym_frm_property_statement_token1] = ACTIONS(8857), + [anon_sym_DOT] = ACTIONS(8857), + [anon_sym_BANG] = ACTIONS(8859), + [aux_sym__attribute_identifier_token1] = ACTIONS(8857), + [aux_sym_option_statement_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8857), + [aux_sym_preprocessor_const_token1] = ACTIONS(8857), + [sym_static_modifier] = ACTIONS(8857), + [sym__dim_keyword] = ACTIONS(8857), + [sym__redim_keyword] = ACTIONS(8857), + [aux_sym_get_accessor_token1] = ACTIONS(8857), + [aux_sym_set_accessor_token1] = ACTIONS(8857), + [aux_sym_const_declaration_token1] = ACTIONS(8857), + [anon_sym_LPAREN] = ACTIONS(8859), + [aux_sym_as_type_clause_token2] = ACTIONS(8857), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8857), + [aux_sym_visibility_token1] = ACTIONS(8857), + [aux_sym_visibility_token2] = ACTIONS(8857), + [aux_sym_elseif_fragment_token1] = ACTIONS(8857), + [aux_sym_else_fragment_token1] = ACTIONS(8857), + [aux_sym_select_statement_token1] = ACTIONS(8857), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8857), + [aux_sym__for_header_token1] = ACTIONS(8857), + [aux_sym_do_statement_token1] = ACTIONS(8857), + [aux_sym_do_condition_token1] = ACTIONS(8857), + [aux_sym_while_statement_token1] = ACTIONS(8857), + [aux_sym_with_statement_token1] = ACTIONS(8857), + [aux_sym_exit_statement_token1] = ACTIONS(8857), + [sym_end_statement] = ACTIONS(8859), + [aux_sym_on_goto_statement_token1] = ACTIONS(8857), + [aux_sym_on_goto_statement_token2] = ACTIONS(8857), + [aux_sym_on_error_statement_token2] = ACTIONS(8857), + [sym__ambiguous_redim_statement] = ACTIONS(8859), + [aux_sym_erase_statement_token1] = ACTIONS(8857), + [aux_sym_open_statement_token1] = ACTIONS(8857), + [aux_sym_file_mode_token2] = ACTIONS(8857), + [aux_sym_file_access_token2] = ACTIONS(8857), + [aux_sym_file_lock_token2] = ACTIONS(8857), + [aux_sym_print_statement_token1] = ACTIONS(8857), + [anon_sym_PLUS] = ACTIONS(8859), + [anon_sym_DASH] = ACTIONS(8857), + [anon_sym_QMARK] = ACTIONS(8859), + [aux_sym_close_statement_token1] = ACTIONS(8857), + [aux_sym_put_statement_token1] = ACTIONS(8857), + [aux_sym_unlock_statement_token1] = ACTIONS(8857), + [aux_sym_seek_statement_token1] = ACTIONS(8857), + [sym_reset_statement] = ACTIONS(8857), + [aux_sym_raise_event_statement_token1] = ACTIONS(8857), + [sym_stop_statement] = ACTIONS(8857), + [sym_beep_statement] = ACTIONS(8857), + [aux_sym_unload_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token2] = ACTIONS(8857), + [aux_sym_def_type_statement_token3] = ACTIONS(8857), + [aux_sym_def_type_statement_token4] = ACTIONS(8857), + [aux_sym_def_type_statement_token5] = ACTIONS(8857), + [aux_sym_def_type_statement_token6] = ACTIONS(8857), + [aux_sym_def_type_statement_token7] = ACTIONS(8857), + [aux_sym_def_type_statement_token8] = ACTIONS(8857), + [aux_sym_def_type_statement_token9] = ACTIONS(8857), + [aux_sym_def_type_statement_token10] = ACTIONS(8857), + [aux_sym_def_type_statement_token11] = ACTIONS(8857), + [aux_sym_def_type_statement_token12] = ACTIONS(8857), + [aux_sym_def_type_statement_token13] = ACTIONS(8857), + [aux_sym_def_type_statement_token14] = ACTIONS(8857), + [aux_sym_call_statement_token1] = ACTIONS(8857), + [sym__ambiguous_call_statement] = ACTIONS(8857), + [aux_sym_addressof_expression_token1] = ACTIONS(8857), + [aux_sym_type_of_expression_token1] = ACTIONS(8857), + [aux_sym_unary_expression_token1] = ACTIONS(8857), + [sym_string_literal] = ACTIONS(8859), + [sym_number_literal] = ACTIONS(8859), + [aux_sym_boolean_literal_token1] = ACTIONS(8857), + [aux_sym_boolean_literal_token2] = ACTIONS(8857), + [sym_nothing_literal] = ACTIONS(8857), + [sym_null_literal] = ACTIONS(8857), + [sym_empty_literal] = ACTIONS(8857), + [sym_date_literal] = ACTIONS(8859), + [anon_sym_POUND] = ACTIONS(8857), + }, + [STATE(6251)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6251), + [sym_identifier] = ACTIONS(8702), + [sym_newline] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(11087), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8702), + [aux_sym_frm_property_statement_token1] = ACTIONS(8702), + [anon_sym_DOT] = ACTIONS(8702), + [anon_sym_BANG] = ACTIONS(8704), + [aux_sym__attribute_identifier_token1] = ACTIONS(8702), + [aux_sym_option_statement_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8702), + [aux_sym_preprocessor_const_token1] = ACTIONS(8702), + [sym_static_modifier] = ACTIONS(8702), + [sym__dim_keyword] = ACTIONS(8702), + [sym__redim_keyword] = ACTIONS(8702), + [aux_sym_get_accessor_token1] = ACTIONS(8702), + [aux_sym_set_accessor_token1] = ACTIONS(8702), + [aux_sym_const_declaration_token1] = ACTIONS(8702), + [anon_sym_LPAREN] = ACTIONS(8704), + [aux_sym_as_type_clause_token2] = ACTIONS(8702), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8702), + [aux_sym_visibility_token1] = ACTIONS(8702), + [aux_sym_visibility_token2] = ACTIONS(8702), + [aux_sym_elseif_fragment_token1] = ACTIONS(8702), + [aux_sym_else_fragment_token1] = ACTIONS(8702), + [aux_sym_select_statement_token1] = ACTIONS(8702), + [aux_sym__for_header_token1] = ACTIONS(8702), + [aux_sym_do_statement_token1] = ACTIONS(8702), + [aux_sym_do_condition_token1] = ACTIONS(8702), + [aux_sym_with_statement_token1] = ACTIONS(8702), + [aux_sym_exit_statement_token1] = ACTIONS(8702), + [sym_end_statement] = ACTIONS(8704), + [aux_sym_on_goto_statement_token1] = ACTIONS(8702), + [aux_sym_on_goto_statement_token2] = ACTIONS(8702), + [aux_sym_on_error_statement_token2] = ACTIONS(8702), + [sym__ambiguous_redim_statement] = ACTIONS(8704), + [aux_sym_erase_statement_token1] = ACTIONS(8702), + [aux_sym_open_statement_token1] = ACTIONS(8702), + [aux_sym_file_mode_token2] = ACTIONS(8702), + [aux_sym_file_access_token2] = ACTIONS(8702), + [aux_sym_file_lock_token2] = ACTIONS(8702), + [aux_sym_print_statement_token1] = ACTIONS(8702), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_DASH] = ACTIONS(8702), + [anon_sym_QMARK] = ACTIONS(8704), + [aux_sym_close_statement_token1] = ACTIONS(8702), + [aux_sym_put_statement_token1] = ACTIONS(8702), + [aux_sym_unlock_statement_token1] = ACTIONS(8702), + [aux_sym_seek_statement_token1] = ACTIONS(8702), + [sym_reset_statement] = ACTIONS(8702), + [aux_sym_raise_event_statement_token1] = ACTIONS(8702), + [sym_stop_statement] = ACTIONS(8702), + [sym_beep_statement] = ACTIONS(8702), + [aux_sym_unload_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token2] = ACTIONS(8702), + [aux_sym_def_type_statement_token3] = ACTIONS(8702), + [aux_sym_def_type_statement_token4] = ACTIONS(8702), + [aux_sym_def_type_statement_token5] = ACTIONS(8702), + [aux_sym_def_type_statement_token6] = ACTIONS(8702), + [aux_sym_def_type_statement_token7] = ACTIONS(8702), + [aux_sym_def_type_statement_token8] = ACTIONS(8702), + [aux_sym_def_type_statement_token9] = ACTIONS(8702), + [aux_sym_def_type_statement_token10] = ACTIONS(8702), + [aux_sym_def_type_statement_token11] = ACTIONS(8702), + [aux_sym_def_type_statement_token12] = ACTIONS(8702), + [aux_sym_def_type_statement_token13] = ACTIONS(8702), + [aux_sym_def_type_statement_token14] = ACTIONS(8702), + [aux_sym_call_statement_token1] = ACTIONS(8702), + [sym__ambiguous_call_statement] = ACTIONS(8702), + [aux_sym_addressof_expression_token1] = ACTIONS(8702), + [aux_sym_type_of_expression_token1] = ACTIONS(8702), + [aux_sym_unary_expression_token1] = ACTIONS(8702), + [sym_string_literal] = ACTIONS(8704), + [sym_number_literal] = ACTIONS(8704), + [aux_sym_boolean_literal_token1] = ACTIONS(8702), + [aux_sym_boolean_literal_token2] = ACTIONS(8702), + [sym_nothing_literal] = ACTIONS(8702), + [sym_null_literal] = ACTIONS(8702), + [sym_empty_literal] = ACTIONS(8702), + [sym_date_literal] = ACTIONS(8704), + [anon_sym_POUND] = ACTIONS(8702), + }, + [STATE(6252)] = { + [sym_identifier] = ACTIONS(8196), + [sym_newline] = ACTIONS(8198), + [anon_sym_COLON] = ACTIONS(8198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8196), + [aux_sym_frm_property_statement_token1] = ACTIONS(8196), + [anon_sym_DOT] = ACTIONS(8196), + [anon_sym_BANG] = ACTIONS(8198), + [aux_sym__attribute_identifier_token1] = ACTIONS(8196), + [aux_sym_option_statement_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8196), + [aux_sym_preprocessor_const_token1] = ACTIONS(8196), + [sym_static_modifier] = ACTIONS(8196), + [sym__dim_keyword] = ACTIONS(8196), + [sym__redim_keyword] = ACTIONS(8196), + [aux_sym_get_accessor_token1] = ACTIONS(8196), + [aux_sym_set_accessor_token1] = ACTIONS(8196), + [anon_sym_COMMA] = ACTIONS(8198), + [aux_sym_const_declaration_token1] = ACTIONS(8196), + [anon_sym_LPAREN] = ACTIONS(8198), + [aux_sym_as_type_clause_token2] = ACTIONS(8196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8196), + [aux_sym_visibility_token1] = ACTIONS(8196), + [aux_sym_visibility_token2] = ACTIONS(8196), + [aux_sym_elseif_fragment_token1] = ACTIONS(8196), + [aux_sym_else_fragment_token1] = ACTIONS(8196), + [aux_sym_select_statement_token1] = ACTIONS(8196), + [aux_sym_select_statement_token2] = ACTIONS(8196), + [aux_sym__for_header_token1] = ACTIONS(8196), + [aux_sym_do_statement_token1] = ACTIONS(8196), + [aux_sym_do_condition_token1] = ACTIONS(8196), + [aux_sym_with_statement_token1] = ACTIONS(8196), + [aux_sym_exit_statement_token1] = ACTIONS(8196), + [sym_end_statement] = ACTIONS(8198), + [aux_sym_on_goto_statement_token1] = ACTIONS(8196), + [aux_sym_on_goto_statement_token2] = ACTIONS(8196), + [aux_sym_on_error_statement_token2] = ACTIONS(8196), + [sym__ambiguous_redim_statement] = ACTIONS(8198), + [aux_sym_erase_statement_token1] = ACTIONS(8196), + [aux_sym_open_statement_token1] = ACTIONS(8196), + [aux_sym_file_mode_token2] = ACTIONS(8196), + [aux_sym_file_access_token2] = ACTIONS(8196), + [aux_sym_file_lock_token2] = ACTIONS(8196), + [aux_sym_print_statement_token1] = ACTIONS(8196), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(8196), + [anon_sym_QMARK] = ACTIONS(8198), + [aux_sym_close_statement_token1] = ACTIONS(8196), + [aux_sym_put_statement_token1] = ACTIONS(8196), + [aux_sym_unlock_statement_token1] = ACTIONS(8196), + [aux_sym_seek_statement_token1] = ACTIONS(8196), + [sym_reset_statement] = ACTIONS(8196), + [aux_sym_raise_event_statement_token1] = ACTIONS(8196), + [sym_stop_statement] = ACTIONS(8196), + [sym_beep_statement] = ACTIONS(8196), + [aux_sym_unload_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token2] = ACTIONS(8196), + [aux_sym_def_type_statement_token3] = ACTIONS(8196), + [aux_sym_def_type_statement_token4] = ACTIONS(8196), + [aux_sym_def_type_statement_token5] = ACTIONS(8196), + [aux_sym_def_type_statement_token6] = ACTIONS(8196), + [aux_sym_def_type_statement_token7] = ACTIONS(8196), + [aux_sym_def_type_statement_token8] = ACTIONS(8196), + [aux_sym_def_type_statement_token9] = ACTIONS(8196), + [aux_sym_def_type_statement_token10] = ACTIONS(8196), + [aux_sym_def_type_statement_token11] = ACTIONS(8196), + [aux_sym_def_type_statement_token12] = ACTIONS(8196), + [aux_sym_def_type_statement_token13] = ACTIONS(8196), + [aux_sym_def_type_statement_token14] = ACTIONS(8196), + [aux_sym_call_statement_token1] = ACTIONS(8196), + [sym__ambiguous_call_statement] = ACTIONS(8196), + [aux_sym_addressof_expression_token1] = ACTIONS(8196), + [aux_sym_type_of_expression_token1] = ACTIONS(8196), + [aux_sym_unary_expression_token1] = ACTIONS(8196), + [sym_string_literal] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8198), + [aux_sym_boolean_literal_token1] = ACTIONS(8196), + [aux_sym_boolean_literal_token2] = ACTIONS(8196), + [sym_nothing_literal] = ACTIONS(8196), + [sym_null_literal] = ACTIONS(8196), + [sym_empty_literal] = ACTIONS(8196), + [sym_date_literal] = ACTIONS(8198), + [anon_sym_POUND] = ACTIONS(8196), + }, + [STATE(6253)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_statement_token2] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(6254)] = { + [sym_identifier] = ACTIONS(6117), + [sym_newline] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6117), + [aux_sym_frm_property_statement_token1] = ACTIONS(6117), + [anon_sym_DOT] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6119), + [aux_sym__attribute_identifier_token1] = ACTIONS(6117), + [aux_sym_option_statement_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6117), + [aux_sym_preprocessor_const_token1] = ACTIONS(6117), + [sym_static_modifier] = ACTIONS(6117), + [sym__dim_keyword] = ACTIONS(6117), + [sym__redim_keyword] = ACTIONS(6117), + [aux_sym_get_accessor_token1] = ACTIONS(6117), + [aux_sym_set_accessor_token1] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6119), + [aux_sym_const_declaration_token1] = ACTIONS(6117), + [anon_sym_LPAREN] = ACTIONS(6119), + [aux_sym_as_type_clause_token2] = ACTIONS(6117), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6117), + [aux_sym_visibility_token1] = ACTIONS(6117), + [aux_sym_visibility_token2] = ACTIONS(6117), + [aux_sym_elseif_fragment_token1] = ACTIONS(6117), + [aux_sym_else_fragment_token1] = ACTIONS(6117), + [aux_sym_select_statement_token1] = ACTIONS(6117), + [aux_sym_select_statement_token2] = ACTIONS(6117), + [aux_sym__for_header_token1] = ACTIONS(6117), + [aux_sym_do_statement_token1] = ACTIONS(6117), + [aux_sym_do_condition_token1] = ACTIONS(6117), + [aux_sym_with_statement_token1] = ACTIONS(6117), + [aux_sym_exit_statement_token1] = ACTIONS(6117), + [sym_end_statement] = ACTIONS(6119), + [aux_sym_on_goto_statement_token1] = ACTIONS(6117), + [aux_sym_on_goto_statement_token2] = ACTIONS(6117), + [aux_sym_on_error_statement_token2] = ACTIONS(6117), + [sym__ambiguous_redim_statement] = ACTIONS(6119), + [aux_sym_erase_statement_token1] = ACTIONS(6117), + [aux_sym_open_statement_token1] = ACTIONS(6117), + [aux_sym_file_mode_token2] = ACTIONS(6117), + [aux_sym_file_access_token2] = ACTIONS(6117), + [aux_sym_file_lock_token2] = ACTIONS(6117), + [aux_sym_print_statement_token1] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6117), + [anon_sym_QMARK] = ACTIONS(6119), + [aux_sym_close_statement_token1] = ACTIONS(6117), + [aux_sym_put_statement_token1] = ACTIONS(6117), + [aux_sym_unlock_statement_token1] = ACTIONS(6117), + [aux_sym_seek_statement_token1] = ACTIONS(6117), + [sym_reset_statement] = ACTIONS(6117), + [aux_sym_raise_event_statement_token1] = ACTIONS(6117), + [sym_stop_statement] = ACTIONS(6117), + [sym_beep_statement] = ACTIONS(6117), + [aux_sym_unload_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token2] = ACTIONS(6117), + [aux_sym_def_type_statement_token3] = ACTIONS(6117), + [aux_sym_def_type_statement_token4] = ACTIONS(6117), + [aux_sym_def_type_statement_token5] = ACTIONS(6117), + [aux_sym_def_type_statement_token6] = ACTIONS(6117), + [aux_sym_def_type_statement_token7] = ACTIONS(6117), + [aux_sym_def_type_statement_token8] = ACTIONS(6117), + [aux_sym_def_type_statement_token9] = ACTIONS(6117), + [aux_sym_def_type_statement_token10] = ACTIONS(6117), + [aux_sym_def_type_statement_token11] = ACTIONS(6117), + [aux_sym_def_type_statement_token12] = ACTIONS(6117), + [aux_sym_def_type_statement_token13] = ACTIONS(6117), + [aux_sym_def_type_statement_token14] = ACTIONS(6117), + [aux_sym_call_statement_token1] = ACTIONS(6117), + [sym__ambiguous_call_statement] = ACTIONS(6117), + [aux_sym_addressof_expression_token1] = ACTIONS(6117), + [aux_sym_type_of_expression_token1] = ACTIONS(6117), + [aux_sym_unary_expression_token1] = ACTIONS(6117), + [sym_string_literal] = ACTIONS(6119), + [sym_number_literal] = ACTIONS(6119), + [aux_sym_boolean_literal_token1] = ACTIONS(6117), + [aux_sym_boolean_literal_token2] = ACTIONS(6117), + [sym_nothing_literal] = ACTIONS(6117), + [sym_null_literal] = ACTIONS(6117), + [sym_empty_literal] = ACTIONS(6117), + [sym_date_literal] = ACTIONS(6119), + [anon_sym_POUND] = ACTIONS(6117), + }, + [STATE(6255)] = { + [sym_identifier] = ACTIONS(8881), + [sym_newline] = ACTIONS(8884), + [anon_sym_COLON] = ACTIONS(8884), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8881), + [aux_sym_frm_property_statement_token1] = ACTIONS(8881), + [anon_sym_DOT] = ACTIONS(8881), + [anon_sym_BANG] = ACTIONS(8884), + [aux_sym__attribute_identifier_token1] = ACTIONS(8881), + [aux_sym_option_statement_token3] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8887), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8881), + [aux_sym_preprocessor_const_token1] = ACTIONS(8881), + [sym_static_modifier] = ACTIONS(8881), + [sym__dim_keyword] = ACTIONS(8881), + [sym__redim_keyword] = ACTIONS(8881), + [aux_sym_get_accessor_token1] = ACTIONS(8881), + [aux_sym_set_accessor_token1] = ACTIONS(8881), + [aux_sym_const_declaration_token1] = ACTIONS(8881), + [anon_sym_LPAREN] = ACTIONS(8884), + [aux_sym_as_type_clause_token2] = ACTIONS(8881), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8881), + [aux_sym_visibility_token1] = ACTIONS(8881), + [aux_sym_visibility_token2] = ACTIONS(8881), + [aux_sym_elseif_fragment_token1] = ACTIONS(8881), + [aux_sym_else_fragment_token1] = ACTIONS(8881), + [aux_sym_select_statement_token1] = ACTIONS(8881), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8949), + [aux_sym__for_header_token1] = ACTIONS(8881), + [aux_sym_do_statement_token1] = ACTIONS(8881), + [aux_sym_do_condition_token1] = ACTIONS(8881), + [aux_sym_with_statement_token1] = ACTIONS(8881), + [aux_sym_exit_statement_token1] = ACTIONS(8881), + [sym_end_statement] = ACTIONS(8884), + [aux_sym_on_goto_statement_token1] = ACTIONS(8881), + [aux_sym_on_goto_statement_token2] = ACTIONS(8881), + [aux_sym_on_error_statement_token2] = ACTIONS(8881), + [sym__ambiguous_redim_statement] = ACTIONS(8884), + [aux_sym_erase_statement_token1] = ACTIONS(8881), + [aux_sym_open_statement_token1] = ACTIONS(8881), + [aux_sym_file_mode_token2] = ACTIONS(8881), + [aux_sym_file_access_token2] = ACTIONS(8881), + [aux_sym_file_lock_token2] = ACTIONS(8881), + [aux_sym_print_statement_token1] = ACTIONS(8881), + [anon_sym_PLUS] = ACTIONS(8884), + [anon_sym_DASH] = ACTIONS(8881), + [anon_sym_QMARK] = ACTIONS(8884), + [aux_sym_close_statement_token1] = ACTIONS(8881), + [aux_sym_put_statement_token1] = ACTIONS(8881), + [aux_sym_unlock_statement_token1] = ACTIONS(8881), + [aux_sym_seek_statement_token1] = ACTIONS(8881), + [sym_reset_statement] = ACTIONS(8881), + [aux_sym_raise_event_statement_token1] = ACTIONS(8881), + [sym_stop_statement] = ACTIONS(8881), + [sym_beep_statement] = ACTIONS(8881), + [aux_sym_unload_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token2] = ACTIONS(8881), + [aux_sym_def_type_statement_token3] = ACTIONS(8881), + [aux_sym_def_type_statement_token4] = ACTIONS(8881), + [aux_sym_def_type_statement_token5] = ACTIONS(8881), + [aux_sym_def_type_statement_token6] = ACTIONS(8881), + [aux_sym_def_type_statement_token7] = ACTIONS(8881), + [aux_sym_def_type_statement_token8] = ACTIONS(8881), + [aux_sym_def_type_statement_token9] = ACTIONS(8881), + [aux_sym_def_type_statement_token10] = ACTIONS(8881), + [aux_sym_def_type_statement_token11] = ACTIONS(8881), + [aux_sym_def_type_statement_token12] = ACTIONS(8881), + [aux_sym_def_type_statement_token13] = ACTIONS(8881), + [aux_sym_def_type_statement_token14] = ACTIONS(8881), + [aux_sym_call_statement_token1] = ACTIONS(8881), + [sym__ambiguous_call_statement] = ACTIONS(8881), + [aux_sym_addressof_expression_token1] = ACTIONS(8881), + [aux_sym_type_of_expression_token1] = ACTIONS(8881), + [aux_sym_unary_expression_token1] = ACTIONS(8881), + [sym_string_literal] = ACTIONS(8884), + [sym_number_literal] = ACTIONS(8884), + [aux_sym_boolean_literal_token1] = ACTIONS(8881), + [aux_sym_boolean_literal_token2] = ACTIONS(8881), + [sym_nothing_literal] = ACTIONS(8881), + [sym_null_literal] = ACTIONS(8881), + [sym_empty_literal] = ACTIONS(8881), + [sym_date_literal] = ACTIONS(8884), + [anon_sym_POUND] = ACTIONS(8881), + }, + [STATE(6256)] = { + [sym_identifier] = ACTIONS(8915), + [sym_newline] = ACTIONS(8918), + [anon_sym_COLON] = ACTIONS(8918), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8915), + [aux_sym_frm_property_statement_token1] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8915), + [anon_sym_BANG] = ACTIONS(8918), + [aux_sym__attribute_identifier_token1] = ACTIONS(8915), + [aux_sym_option_statement_token3] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8921), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8915), + [aux_sym_preprocessor_const_token1] = ACTIONS(8915), + [sym_static_modifier] = ACTIONS(8915), + [sym__dim_keyword] = ACTIONS(8915), + [sym__redim_keyword] = ACTIONS(8915), + [aux_sym_get_accessor_token1] = ACTIONS(8915), + [aux_sym_set_accessor_token1] = ACTIONS(8915), + [aux_sym_const_declaration_token1] = ACTIONS(8915), + [anon_sym_LPAREN] = ACTIONS(8918), + [aux_sym_as_type_clause_token2] = ACTIONS(8915), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8915), + [aux_sym_visibility_token1] = ACTIONS(8915), + [aux_sym_visibility_token2] = ACTIONS(8915), + [aux_sym_elseif_fragment_token1] = ACTIONS(8915), + [aux_sym_else_fragment_token1] = ACTIONS(8915), + [aux_sym_select_statement_token1] = ACTIONS(8915), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8915), + [aux_sym_do_statement_token1] = ACTIONS(8915), + [aux_sym_do_condition_token1] = ACTIONS(8915), + [aux_sym_with_statement_token1] = ACTIONS(8915), + [aux_sym_exit_statement_token1] = ACTIONS(8915), + [sym_end_statement] = ACTIONS(8918), + [aux_sym_on_goto_statement_token1] = ACTIONS(8915), + [aux_sym_on_goto_statement_token2] = ACTIONS(8915), + [aux_sym_on_error_statement_token2] = ACTIONS(8915), + [sym__ambiguous_redim_statement] = ACTIONS(8918), + [aux_sym_erase_statement_token1] = ACTIONS(8915), + [aux_sym_open_statement_token1] = ACTIONS(8915), + [aux_sym_file_mode_token2] = ACTIONS(8915), + [aux_sym_file_access_token2] = ACTIONS(8915), + [aux_sym_file_lock_token2] = ACTIONS(8915), + [aux_sym_print_statement_token1] = ACTIONS(8915), + [anon_sym_PLUS] = ACTIONS(8918), + [anon_sym_DASH] = ACTIONS(8915), + [anon_sym_QMARK] = ACTIONS(8918), + [aux_sym_close_statement_token1] = ACTIONS(8915), + [aux_sym_put_statement_token1] = ACTIONS(8915), + [aux_sym_unlock_statement_token1] = ACTIONS(8915), + [aux_sym_seek_statement_token1] = ACTIONS(8915), + [sym_reset_statement] = ACTIONS(8915), + [aux_sym_raise_event_statement_token1] = ACTIONS(8915), + [sym_stop_statement] = ACTIONS(8915), + [sym_beep_statement] = ACTIONS(8915), + [aux_sym_unload_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token2] = ACTIONS(8915), + [aux_sym_def_type_statement_token3] = ACTIONS(8915), + [aux_sym_def_type_statement_token4] = ACTIONS(8915), + [aux_sym_def_type_statement_token5] = ACTIONS(8915), + [aux_sym_def_type_statement_token6] = ACTIONS(8915), + [aux_sym_def_type_statement_token7] = ACTIONS(8915), + [aux_sym_def_type_statement_token8] = ACTIONS(8915), + [aux_sym_def_type_statement_token9] = ACTIONS(8915), + [aux_sym_def_type_statement_token10] = ACTIONS(8915), + [aux_sym_def_type_statement_token11] = ACTIONS(8915), + [aux_sym_def_type_statement_token12] = ACTIONS(8915), + [aux_sym_def_type_statement_token13] = ACTIONS(8915), + [aux_sym_def_type_statement_token14] = ACTIONS(8915), + [aux_sym_call_statement_token1] = ACTIONS(8915), + [sym__ambiguous_call_statement] = ACTIONS(8915), + [aux_sym_addressof_expression_token1] = ACTIONS(8915), + [aux_sym_type_of_expression_token1] = ACTIONS(8915), + [aux_sym_unary_expression_token1] = ACTIONS(8915), + [sym_string_literal] = ACTIONS(8918), + [sym_number_literal] = ACTIONS(8918), + [aux_sym_boolean_literal_token1] = ACTIONS(8915), + [aux_sym_boolean_literal_token2] = ACTIONS(8915), + [sym_nothing_literal] = ACTIONS(8915), + [sym_null_literal] = ACTIONS(8915), + [sym_empty_literal] = ACTIONS(8915), + [sym_date_literal] = ACTIONS(8918), + [anon_sym_POUND] = ACTIONS(8915), + }, + [STATE(6257)] = { + [sym_identifier] = ACTIONS(8533), + [sym_newline] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(8535), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8533), + [aux_sym_frm_property_statement_token1] = ACTIONS(8533), + [anon_sym_DOT] = ACTIONS(8533), + [anon_sym_BANG] = ACTIONS(8535), + [aux_sym__attribute_identifier_token1] = ACTIONS(8533), + [aux_sym_option_statement_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8533), + [aux_sym_preprocessor_const_token1] = ACTIONS(8533), + [sym_static_modifier] = ACTIONS(8533), + [sym__dim_keyword] = ACTIONS(8533), + [sym__redim_keyword] = ACTIONS(8533), + [aux_sym_get_accessor_token1] = ACTIONS(8533), + [aux_sym_set_accessor_token1] = ACTIONS(8533), + [anon_sym_COMMA] = ACTIONS(8535), + [aux_sym_const_declaration_token1] = ACTIONS(8533), + [anon_sym_LPAREN] = ACTIONS(8535), + [aux_sym_as_type_clause_token2] = ACTIONS(8533), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8533), + [aux_sym_visibility_token1] = ACTIONS(8533), + [aux_sym_visibility_token2] = ACTIONS(8533), + [aux_sym_elseif_fragment_token1] = ACTIONS(8533), + [aux_sym_else_fragment_token1] = ACTIONS(8533), + [aux_sym_select_statement_token1] = ACTIONS(8533), + [aux_sym__for_header_token1] = ACTIONS(8533), + [aux_sym_do_statement_token1] = ACTIONS(8533), + [aux_sym_do_statement_token2] = ACTIONS(8533), + [aux_sym_do_condition_token1] = ACTIONS(8533), + [aux_sym_with_statement_token1] = ACTIONS(8533), + [aux_sym_exit_statement_token1] = ACTIONS(8533), + [sym_end_statement] = ACTIONS(8535), + [aux_sym_on_goto_statement_token1] = ACTIONS(8533), + [aux_sym_on_goto_statement_token2] = ACTIONS(8533), + [aux_sym_on_error_statement_token2] = ACTIONS(8533), + [sym__ambiguous_redim_statement] = ACTIONS(8535), + [aux_sym_erase_statement_token1] = ACTIONS(8533), + [aux_sym_open_statement_token1] = ACTIONS(8533), + [aux_sym_file_mode_token2] = ACTIONS(8533), + [aux_sym_file_access_token2] = ACTIONS(8533), + [aux_sym_file_lock_token2] = ACTIONS(8533), + [aux_sym_print_statement_token1] = ACTIONS(8533), + [anon_sym_PLUS] = ACTIONS(8535), + [anon_sym_DASH] = ACTIONS(8533), + [anon_sym_QMARK] = ACTIONS(8535), + [aux_sym_close_statement_token1] = ACTIONS(8533), + [aux_sym_put_statement_token1] = ACTIONS(8533), + [aux_sym_unlock_statement_token1] = ACTIONS(8533), + [aux_sym_seek_statement_token1] = ACTIONS(8533), + [sym_reset_statement] = ACTIONS(8533), + [aux_sym_raise_event_statement_token1] = ACTIONS(8533), + [sym_stop_statement] = ACTIONS(8533), + [sym_beep_statement] = ACTIONS(8533), + [aux_sym_unload_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token2] = ACTIONS(8533), + [aux_sym_def_type_statement_token3] = ACTIONS(8533), + [aux_sym_def_type_statement_token4] = ACTIONS(8533), + [aux_sym_def_type_statement_token5] = ACTIONS(8533), + [aux_sym_def_type_statement_token6] = ACTIONS(8533), + [aux_sym_def_type_statement_token7] = ACTIONS(8533), + [aux_sym_def_type_statement_token8] = ACTIONS(8533), + [aux_sym_def_type_statement_token9] = ACTIONS(8533), + [aux_sym_def_type_statement_token10] = ACTIONS(8533), + [aux_sym_def_type_statement_token11] = ACTIONS(8533), + [aux_sym_def_type_statement_token12] = ACTIONS(8533), + [aux_sym_def_type_statement_token13] = ACTIONS(8533), + [aux_sym_def_type_statement_token14] = ACTIONS(8533), + [aux_sym_call_statement_token1] = ACTIONS(8533), + [sym__ambiguous_call_statement] = ACTIONS(8533), + [aux_sym_addressof_expression_token1] = ACTIONS(8533), + [aux_sym_type_of_expression_token1] = ACTIONS(8533), + [aux_sym_unary_expression_token1] = ACTIONS(8533), + [sym_string_literal] = ACTIONS(8535), + [sym_number_literal] = ACTIONS(8535), + [aux_sym_boolean_literal_token1] = ACTIONS(8533), + [aux_sym_boolean_literal_token2] = ACTIONS(8533), + [sym_nothing_literal] = ACTIONS(8533), + [sym_null_literal] = ACTIONS(8533), + [sym_empty_literal] = ACTIONS(8533), + [sym_date_literal] = ACTIONS(8535), + [anon_sym_POUND] = ACTIONS(8533), + }, + [STATE(6258)] = { + [sym_identifier] = ACTIONS(8756), + [sym_newline] = ACTIONS(8759), + [anon_sym_COLON] = ACTIONS(8759), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8756), + [aux_sym_frm_property_statement_token1] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8756), + [anon_sym_BANG] = ACTIONS(8759), + [aux_sym__attribute_identifier_token1] = ACTIONS(8756), + [aux_sym_option_statement_token3] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8762), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8756), + [aux_sym_preprocessor_const_token1] = ACTIONS(8756), + [sym_static_modifier] = ACTIONS(8756), + [sym__dim_keyword] = ACTIONS(8756), + [sym__redim_keyword] = ACTIONS(8756), + [aux_sym_get_accessor_token1] = ACTIONS(8756), + [aux_sym_set_accessor_token1] = ACTIONS(8756), + [aux_sym_const_declaration_token1] = ACTIONS(8756), + [anon_sym_LPAREN] = ACTIONS(8759), + [aux_sym_as_type_clause_token2] = ACTIONS(8756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8756), + [aux_sym_visibility_token1] = ACTIONS(8756), + [aux_sym_visibility_token2] = ACTIONS(8756), + [aux_sym_elseif_fragment_token1] = ACTIONS(8756), + [aux_sym_else_fragment_token1] = ACTIONS(8756), + [aux_sym_select_statement_token1] = ACTIONS(8756), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8756), + [aux_sym_do_statement_token1] = ACTIONS(8756), + [aux_sym_do_condition_token1] = ACTIONS(8756), + [aux_sym_with_statement_token1] = ACTIONS(8756), + [aux_sym_exit_statement_token1] = ACTIONS(8756), + [sym_end_statement] = ACTIONS(8759), + [aux_sym_on_goto_statement_token1] = ACTIONS(8756), + [aux_sym_on_goto_statement_token2] = ACTIONS(8756), + [aux_sym_on_error_statement_token2] = ACTIONS(8756), + [sym__ambiguous_redim_statement] = ACTIONS(8759), + [aux_sym_erase_statement_token1] = ACTIONS(8756), + [aux_sym_open_statement_token1] = ACTIONS(8756), + [aux_sym_file_mode_token2] = ACTIONS(8756), + [aux_sym_file_access_token2] = ACTIONS(8756), + [aux_sym_file_lock_token2] = ACTIONS(8756), + [aux_sym_print_statement_token1] = ACTIONS(8756), + [anon_sym_PLUS] = ACTIONS(8759), + [anon_sym_DASH] = ACTIONS(8756), + [anon_sym_QMARK] = ACTIONS(8759), + [aux_sym_close_statement_token1] = ACTIONS(8756), + [aux_sym_put_statement_token1] = ACTIONS(8756), + [aux_sym_unlock_statement_token1] = ACTIONS(8756), + [aux_sym_seek_statement_token1] = ACTIONS(8756), + [sym_reset_statement] = ACTIONS(8756), + [aux_sym_raise_event_statement_token1] = ACTIONS(8756), + [sym_stop_statement] = ACTIONS(8756), + [sym_beep_statement] = ACTIONS(8756), + [aux_sym_unload_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token2] = ACTIONS(8756), + [aux_sym_def_type_statement_token3] = ACTIONS(8756), + [aux_sym_def_type_statement_token4] = ACTIONS(8756), + [aux_sym_def_type_statement_token5] = ACTIONS(8756), + [aux_sym_def_type_statement_token6] = ACTIONS(8756), + [aux_sym_def_type_statement_token7] = ACTIONS(8756), + [aux_sym_def_type_statement_token8] = ACTIONS(8756), + [aux_sym_def_type_statement_token9] = ACTIONS(8756), + [aux_sym_def_type_statement_token10] = ACTIONS(8756), + [aux_sym_def_type_statement_token11] = ACTIONS(8756), + [aux_sym_def_type_statement_token12] = ACTIONS(8756), + [aux_sym_def_type_statement_token13] = ACTIONS(8756), + [aux_sym_def_type_statement_token14] = ACTIONS(8756), + [aux_sym_call_statement_token1] = ACTIONS(8756), + [sym__ambiguous_call_statement] = ACTIONS(8756), + [aux_sym_addressof_expression_token1] = ACTIONS(8756), + [aux_sym_type_of_expression_token1] = ACTIONS(8756), + [aux_sym_unary_expression_token1] = ACTIONS(8756), + [sym_string_literal] = ACTIONS(8759), + [sym_number_literal] = ACTIONS(8759), + [aux_sym_boolean_literal_token1] = ACTIONS(8756), + [aux_sym_boolean_literal_token2] = ACTIONS(8756), + [sym_nothing_literal] = ACTIONS(8756), + [sym_null_literal] = ACTIONS(8756), + [sym_empty_literal] = ACTIONS(8756), + [sym_date_literal] = ACTIONS(8759), + [anon_sym_POUND] = ACTIONS(8756), + }, + [STATE(6259)] = { + [sym_identifier] = ACTIONS(8835), + [sym_newline] = ACTIONS(8837), + [anon_sym_COLON] = ACTIONS(8837), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8835), + [aux_sym_frm_property_statement_token1] = ACTIONS(8835), + [anon_sym_DOT] = ACTIONS(8835), + [anon_sym_BANG] = ACTIONS(8837), + [aux_sym__attribute_identifier_token1] = ACTIONS(8835), + [aux_sym_option_statement_token3] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8835), + [aux_sym_preprocessor_const_token1] = ACTIONS(8835), + [sym_static_modifier] = ACTIONS(8835), + [sym__dim_keyword] = ACTIONS(8835), + [sym__redim_keyword] = ACTIONS(8835), + [aux_sym_get_accessor_token1] = ACTIONS(8835), + [aux_sym_set_accessor_token1] = ACTIONS(8835), + [anon_sym_COMMA] = ACTIONS(8837), + [aux_sym_const_declaration_token1] = ACTIONS(8835), + [anon_sym_LPAREN] = ACTIONS(8837), + [aux_sym_as_type_clause_token2] = ACTIONS(8835), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8835), + [aux_sym_visibility_token1] = ACTIONS(8835), + [aux_sym_visibility_token2] = ACTIONS(8835), + [aux_sym_elseif_fragment_token1] = ACTIONS(8835), + [aux_sym_else_fragment_token1] = ACTIONS(8835), + [aux_sym_select_statement_token1] = ACTIONS(8835), + [aux_sym_select_statement_token2] = ACTIONS(8835), + [aux_sym__for_header_token1] = ACTIONS(8835), + [aux_sym_do_statement_token1] = ACTIONS(8835), + [aux_sym_do_condition_token1] = ACTIONS(8835), + [aux_sym_with_statement_token1] = ACTIONS(8835), + [aux_sym_exit_statement_token1] = ACTIONS(8835), + [sym_end_statement] = ACTIONS(8837), + [aux_sym_on_goto_statement_token1] = ACTIONS(8835), + [aux_sym_on_goto_statement_token2] = ACTIONS(8835), + [aux_sym_on_error_statement_token2] = ACTIONS(8835), + [sym__ambiguous_redim_statement] = ACTIONS(8837), + [aux_sym_erase_statement_token1] = ACTIONS(8835), + [aux_sym_open_statement_token1] = ACTIONS(8835), + [aux_sym_file_mode_token2] = ACTIONS(8835), + [aux_sym_file_access_token2] = ACTIONS(8835), + [aux_sym_file_lock_token2] = ACTIONS(8835), + [aux_sym_print_statement_token1] = ACTIONS(8835), + [anon_sym_PLUS] = ACTIONS(8837), + [anon_sym_DASH] = ACTIONS(8835), + [anon_sym_QMARK] = ACTIONS(8837), + [aux_sym_close_statement_token1] = ACTIONS(8835), + [aux_sym_put_statement_token1] = ACTIONS(8835), + [aux_sym_unlock_statement_token1] = ACTIONS(8835), + [aux_sym_seek_statement_token1] = ACTIONS(8835), + [sym_reset_statement] = ACTIONS(8835), + [aux_sym_raise_event_statement_token1] = ACTIONS(8835), + [sym_stop_statement] = ACTIONS(8835), + [sym_beep_statement] = ACTIONS(8835), + [aux_sym_unload_statement_token1] = ACTIONS(8835), + [aux_sym_def_type_statement_token1] = ACTIONS(8835), + [aux_sym_def_type_statement_token2] = ACTIONS(8835), + [aux_sym_def_type_statement_token3] = ACTIONS(8835), + [aux_sym_def_type_statement_token4] = ACTIONS(8835), + [aux_sym_def_type_statement_token5] = ACTIONS(8835), + [aux_sym_def_type_statement_token6] = ACTIONS(8835), + [aux_sym_def_type_statement_token7] = ACTIONS(8835), + [aux_sym_def_type_statement_token8] = ACTIONS(8835), + [aux_sym_def_type_statement_token9] = ACTIONS(8835), + [aux_sym_def_type_statement_token10] = ACTIONS(8835), + [aux_sym_def_type_statement_token11] = ACTIONS(8835), + [aux_sym_def_type_statement_token12] = ACTIONS(8835), + [aux_sym_def_type_statement_token13] = ACTIONS(8835), + [aux_sym_def_type_statement_token14] = ACTIONS(8835), + [aux_sym_call_statement_token1] = ACTIONS(8835), + [sym__ambiguous_call_statement] = ACTIONS(8835), + [aux_sym_addressof_expression_token1] = ACTIONS(8835), + [aux_sym_type_of_expression_token1] = ACTIONS(8835), + [aux_sym_unary_expression_token1] = ACTIONS(8835), + [sym_string_literal] = ACTIONS(8837), + [sym_number_literal] = ACTIONS(8837), + [aux_sym_boolean_literal_token1] = ACTIONS(8835), + [aux_sym_boolean_literal_token2] = ACTIONS(8835), + [sym_nothing_literal] = ACTIONS(8835), + [sym_null_literal] = ACTIONS(8835), + [sym_empty_literal] = ACTIONS(8835), + [sym_date_literal] = ACTIONS(8837), + [anon_sym_POUND] = ACTIONS(8835), + }, + [STATE(6260)] = { + [aux_sym_variable_declaration_repeat1] = STATE(6030), + [sym_identifier] = ACTIONS(8583), + [sym_newline] = ACTIONS(8585), + [anon_sym_COLON] = ACTIONS(8585), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8583), + [aux_sym_frm_property_statement_token1] = ACTIONS(8583), + [anon_sym_DOT] = ACTIONS(8583), + [anon_sym_BANG] = ACTIONS(8585), + [aux_sym__attribute_identifier_token1] = ACTIONS(8583), + [aux_sym_option_statement_token3] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8583), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8583), + [aux_sym_preprocessor_const_token1] = ACTIONS(8583), + [sym_static_modifier] = ACTIONS(8583), + [sym__dim_keyword] = ACTIONS(8583), + [sym__redim_keyword] = ACTIONS(8583), + [aux_sym_get_accessor_token1] = ACTIONS(8583), + [aux_sym_set_accessor_token1] = ACTIONS(8583), + [anon_sym_COMMA] = ACTIONS(10844), + [aux_sym_const_declaration_token1] = ACTIONS(8583), + [anon_sym_LPAREN] = ACTIONS(8585), + [aux_sym_as_type_clause_token2] = ACTIONS(8583), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8583), + [aux_sym_visibility_token1] = ACTIONS(8583), + [aux_sym_visibility_token2] = ACTIONS(8583), + [aux_sym_elseif_fragment_token1] = ACTIONS(8583), + [aux_sym_else_fragment_token1] = ACTIONS(8583), + [aux_sym_select_statement_token1] = ACTIONS(8583), + [aux_sym__for_header_token1] = ACTIONS(8583), + [aux_sym_do_statement_token1] = ACTIONS(8583), + [aux_sym_do_condition_token1] = ACTIONS(8583), + [aux_sym_with_statement_token1] = ACTIONS(8583), + [aux_sym_exit_statement_token1] = ACTIONS(8583), + [sym_end_statement] = ACTIONS(8585), + [aux_sym_on_goto_statement_token1] = ACTIONS(8583), + [aux_sym_on_goto_statement_token2] = ACTIONS(8583), + [aux_sym_on_error_statement_token2] = ACTIONS(8583), + [sym__ambiguous_redim_statement] = ACTIONS(8585), + [aux_sym_erase_statement_token1] = ACTIONS(8583), + [aux_sym_open_statement_token1] = ACTIONS(8583), + [aux_sym_file_mode_token2] = ACTIONS(8583), + [aux_sym_file_access_token2] = ACTIONS(8583), + [aux_sym_file_lock_token2] = ACTIONS(8583), + [aux_sym_print_statement_token1] = ACTIONS(8583), + [anon_sym_PLUS] = ACTIONS(8585), + [anon_sym_DASH] = ACTIONS(8583), + [anon_sym_QMARK] = ACTIONS(8585), + [aux_sym_close_statement_token1] = ACTIONS(8583), + [aux_sym_put_statement_token1] = ACTIONS(8583), + [aux_sym_unlock_statement_token1] = ACTIONS(8583), + [aux_sym_seek_statement_token1] = ACTIONS(8583), + [sym_reset_statement] = ACTIONS(8583), + [aux_sym_raise_event_statement_token1] = ACTIONS(8583), + [sym_stop_statement] = ACTIONS(8583), + [sym_beep_statement] = ACTIONS(8583), + [aux_sym_unload_statement_token1] = ACTIONS(8583), + [aux_sym_def_type_statement_token1] = ACTIONS(8583), + [aux_sym_def_type_statement_token2] = ACTIONS(8583), + [aux_sym_def_type_statement_token3] = ACTIONS(8583), + [aux_sym_def_type_statement_token4] = ACTIONS(8583), + [aux_sym_def_type_statement_token5] = ACTIONS(8583), + [aux_sym_def_type_statement_token6] = ACTIONS(8583), + [aux_sym_def_type_statement_token7] = ACTIONS(8583), + [aux_sym_def_type_statement_token8] = ACTIONS(8583), + [aux_sym_def_type_statement_token9] = ACTIONS(8583), + [aux_sym_def_type_statement_token10] = ACTIONS(8583), + [aux_sym_def_type_statement_token11] = ACTIONS(8583), + [aux_sym_def_type_statement_token12] = ACTIONS(8583), + [aux_sym_def_type_statement_token13] = ACTIONS(8583), + [aux_sym_def_type_statement_token14] = ACTIONS(8583), + [aux_sym_call_statement_token1] = ACTIONS(8583), + [sym__ambiguous_call_statement] = ACTIONS(8583), + [aux_sym_addressof_expression_token1] = ACTIONS(8583), + [aux_sym_type_of_expression_token1] = ACTIONS(8583), + [aux_sym_unary_expression_token1] = ACTIONS(8583), + [sym_string_literal] = ACTIONS(8585), + [sym_number_literal] = ACTIONS(8585), + [aux_sym_boolean_literal_token1] = ACTIONS(8583), + [aux_sym_boolean_literal_token2] = ACTIONS(8583), + [sym_nothing_literal] = ACTIONS(8583), + [sym_null_literal] = ACTIONS(8583), + [sym_empty_literal] = ACTIONS(8583), + [sym_date_literal] = ACTIONS(8585), + [anon_sym_POUND] = ACTIONS(8583), + }, + [STATE(6261)] = { + [sym_identifier] = ACTIONS(8951), + [sym_newline] = ACTIONS(8953), + [anon_sym_COLON] = ACTIONS(8955), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8951), + [aux_sym_frm_property_statement_token1] = ACTIONS(8951), + [anon_sym_DOT] = ACTIONS(8951), + [anon_sym_BANG] = ACTIONS(8953), + [aux_sym__attribute_identifier_token1] = ACTIONS(8951), + [aux_sym_option_statement_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8951), + [aux_sym_preprocessor_const_token1] = ACTIONS(8951), + [sym_static_modifier] = ACTIONS(8951), + [sym__dim_keyword] = ACTIONS(8951), + [sym__redim_keyword] = ACTIONS(8951), + [aux_sym_get_accessor_token1] = ACTIONS(8951), + [aux_sym_set_accessor_token1] = ACTIONS(8951), + [aux_sym_const_declaration_token1] = ACTIONS(8951), + [anon_sym_LPAREN] = ACTIONS(8953), + [aux_sym_as_type_clause_token2] = ACTIONS(8951), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8951), + [aux_sym_visibility_token1] = ACTIONS(8951), + [aux_sym_visibility_token2] = ACTIONS(8951), + [aux_sym_elseif_fragment_token1] = ACTIONS(8951), + [aux_sym_else_fragment_token1] = ACTIONS(8951), + [aux_sym_select_statement_token1] = ACTIONS(8951), + [aux_sym_select_statement_token2] = ACTIONS(8951), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8951), + [aux_sym__for_header_token1] = ACTIONS(8951), + [aux_sym_do_statement_token1] = ACTIONS(8951), + [aux_sym_do_condition_token1] = ACTIONS(8951), + [aux_sym_with_statement_token1] = ACTIONS(8951), + [aux_sym_exit_statement_token1] = ACTIONS(8951), + [sym_end_statement] = ACTIONS(8953), + [aux_sym_on_goto_statement_token1] = ACTIONS(8951), + [aux_sym_on_goto_statement_token2] = ACTIONS(8951), + [aux_sym_on_error_statement_token2] = ACTIONS(8951), + [sym__ambiguous_redim_statement] = ACTIONS(8953), + [aux_sym_erase_statement_token1] = ACTIONS(8951), + [aux_sym_open_statement_token1] = ACTIONS(8951), + [aux_sym_file_mode_token2] = ACTIONS(8951), + [aux_sym_file_access_token2] = ACTIONS(8951), + [aux_sym_file_lock_token2] = ACTIONS(8951), + [aux_sym_print_statement_token1] = ACTIONS(8951), + [anon_sym_PLUS] = ACTIONS(8953), + [anon_sym_DASH] = ACTIONS(8951), + [anon_sym_QMARK] = ACTIONS(8953), + [aux_sym_close_statement_token1] = ACTIONS(8951), + [aux_sym_put_statement_token1] = ACTIONS(8951), + [aux_sym_unlock_statement_token1] = ACTIONS(8951), + [aux_sym_seek_statement_token1] = ACTIONS(8951), + [sym_reset_statement] = ACTIONS(8951), + [aux_sym_raise_event_statement_token1] = ACTIONS(8951), + [sym_stop_statement] = ACTIONS(8951), + [sym_beep_statement] = ACTIONS(8951), + [aux_sym_unload_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token2] = ACTIONS(8951), + [aux_sym_def_type_statement_token3] = ACTIONS(8951), + [aux_sym_def_type_statement_token4] = ACTIONS(8951), + [aux_sym_def_type_statement_token5] = ACTIONS(8951), + [aux_sym_def_type_statement_token6] = ACTIONS(8951), + [aux_sym_def_type_statement_token7] = ACTIONS(8951), + [aux_sym_def_type_statement_token8] = ACTIONS(8951), + [aux_sym_def_type_statement_token9] = ACTIONS(8951), + [aux_sym_def_type_statement_token10] = ACTIONS(8951), + [aux_sym_def_type_statement_token11] = ACTIONS(8951), + [aux_sym_def_type_statement_token12] = ACTIONS(8951), + [aux_sym_def_type_statement_token13] = ACTIONS(8951), + [aux_sym_def_type_statement_token14] = ACTIONS(8951), + [aux_sym_call_statement_token1] = ACTIONS(8951), + [sym__ambiguous_call_statement] = ACTIONS(8951), + [aux_sym_addressof_expression_token1] = ACTIONS(8951), + [aux_sym_type_of_expression_token1] = ACTIONS(8951), + [aux_sym_unary_expression_token1] = ACTIONS(8951), + [sym_string_literal] = ACTIONS(8953), + [sym_number_literal] = ACTIONS(8955), + [aux_sym_boolean_literal_token1] = ACTIONS(8951), + [aux_sym_boolean_literal_token2] = ACTIONS(8951), + [sym_nothing_literal] = ACTIONS(8951), + [sym_null_literal] = ACTIONS(8951), + [sym_empty_literal] = ACTIONS(8951), + [sym_date_literal] = ACTIONS(8953), + [anon_sym_POUND] = ACTIONS(8951), + }, + [STATE(6262)] = { + [sym_identifier] = ACTIONS(8645), + [sym_newline] = ACTIONS(8647), + [anon_sym_COLON] = ACTIONS(8649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8645), + [aux_sym_frm_property_statement_token1] = ACTIONS(8645), + [anon_sym_DOT] = ACTIONS(8645), + [anon_sym_BANG] = ACTIONS(8647), + [aux_sym__attribute_identifier_token1] = ACTIONS(8645), + [aux_sym_option_statement_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8645), + [aux_sym_preprocessor_const_token1] = ACTIONS(8645), + [sym_static_modifier] = ACTIONS(8645), + [sym__dim_keyword] = ACTIONS(8645), + [sym__redim_keyword] = ACTIONS(8645), + [aux_sym_get_accessor_token1] = ACTIONS(8645), + [aux_sym_set_accessor_token1] = ACTIONS(8645), + [aux_sym_const_declaration_token1] = ACTIONS(8645), + [anon_sym_LPAREN] = ACTIONS(8647), + [aux_sym_as_type_clause_token2] = ACTIONS(8645), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8645), + [aux_sym_visibility_token1] = ACTIONS(8645), + [aux_sym_visibility_token2] = ACTIONS(8645), + [aux_sym_elseif_fragment_token1] = ACTIONS(8645), + [aux_sym_else_fragment_token1] = ACTIONS(8645), + [aux_sym_select_statement_token1] = ACTIONS(8645), + [aux_sym_select_statement_token2] = ACTIONS(8645), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8645), + [aux_sym__for_header_token1] = ACTIONS(8645), + [aux_sym_do_statement_token1] = ACTIONS(8645), + [aux_sym_do_condition_token1] = ACTIONS(8645), + [aux_sym_with_statement_token1] = ACTIONS(8645), + [aux_sym_exit_statement_token1] = ACTIONS(8645), + [sym_end_statement] = ACTIONS(8647), + [aux_sym_on_goto_statement_token1] = ACTIONS(8645), + [aux_sym_on_goto_statement_token2] = ACTIONS(8645), + [aux_sym_on_error_statement_token2] = ACTIONS(8645), + [sym__ambiguous_redim_statement] = ACTIONS(8647), + [aux_sym_erase_statement_token1] = ACTIONS(8645), + [aux_sym_open_statement_token1] = ACTIONS(8645), + [aux_sym_file_mode_token2] = ACTIONS(8645), + [aux_sym_file_access_token2] = ACTIONS(8645), + [aux_sym_file_lock_token2] = ACTIONS(8645), + [aux_sym_print_statement_token1] = ACTIONS(8645), + [anon_sym_PLUS] = ACTIONS(8647), + [anon_sym_DASH] = ACTIONS(8645), + [anon_sym_QMARK] = ACTIONS(8647), + [aux_sym_close_statement_token1] = ACTIONS(8645), + [aux_sym_put_statement_token1] = ACTIONS(8645), + [aux_sym_unlock_statement_token1] = ACTIONS(8645), + [aux_sym_seek_statement_token1] = ACTIONS(8645), + [sym_reset_statement] = ACTIONS(8645), + [aux_sym_raise_event_statement_token1] = ACTIONS(8645), + [sym_stop_statement] = ACTIONS(8645), + [sym_beep_statement] = ACTIONS(8645), + [aux_sym_unload_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token2] = ACTIONS(8645), + [aux_sym_def_type_statement_token3] = ACTIONS(8645), + [aux_sym_def_type_statement_token4] = ACTIONS(8645), + [aux_sym_def_type_statement_token5] = ACTIONS(8645), + [aux_sym_def_type_statement_token6] = ACTIONS(8645), + [aux_sym_def_type_statement_token7] = ACTIONS(8645), + [aux_sym_def_type_statement_token8] = ACTIONS(8645), + [aux_sym_def_type_statement_token9] = ACTIONS(8645), + [aux_sym_def_type_statement_token10] = ACTIONS(8645), + [aux_sym_def_type_statement_token11] = ACTIONS(8645), + [aux_sym_def_type_statement_token12] = ACTIONS(8645), + [aux_sym_def_type_statement_token13] = ACTIONS(8645), + [aux_sym_def_type_statement_token14] = ACTIONS(8645), + [aux_sym_call_statement_token1] = ACTIONS(8645), + [sym__ambiguous_call_statement] = ACTIONS(8645), + [aux_sym_addressof_expression_token1] = ACTIONS(8645), + [aux_sym_type_of_expression_token1] = ACTIONS(8645), + [aux_sym_unary_expression_token1] = ACTIONS(8645), + [sym_string_literal] = ACTIONS(8647), + [sym_number_literal] = ACTIONS(8649), + [aux_sym_boolean_literal_token1] = ACTIONS(8645), + [aux_sym_boolean_literal_token2] = ACTIONS(8645), + [sym_nothing_literal] = ACTIONS(8645), + [sym_null_literal] = ACTIONS(8645), + [sym_empty_literal] = ACTIONS(8645), + [sym_date_literal] = ACTIONS(8647), + [anon_sym_POUND] = ACTIONS(8645), + }, + [STATE(6263)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6263), + [sym_identifier] = ACTIONS(8702), + [sym_newline] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(11090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8702), + [aux_sym_frm_property_statement_token1] = ACTIONS(8702), + [anon_sym_DOT] = ACTIONS(8702), + [anon_sym_BANG] = ACTIONS(8704), + [aux_sym__attribute_identifier_token1] = ACTIONS(8702), + [aux_sym_option_statement_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8702), + [aux_sym_preprocessor_const_token1] = ACTIONS(8702), + [sym_static_modifier] = ACTIONS(8702), + [sym__dim_keyword] = ACTIONS(8702), + [sym__redim_keyword] = ACTIONS(8702), + [aux_sym_get_accessor_token1] = ACTIONS(8702), + [aux_sym_set_accessor_token1] = ACTIONS(8702), + [aux_sym_const_declaration_token1] = ACTIONS(8702), + [anon_sym_LPAREN] = ACTIONS(8704), + [aux_sym_as_type_clause_token2] = ACTIONS(8702), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8702), + [aux_sym_visibility_token1] = ACTIONS(8702), + [aux_sym_visibility_token2] = ACTIONS(8702), + [aux_sym_elseif_fragment_token1] = ACTIONS(8702), + [aux_sym_else_fragment_token1] = ACTIONS(8702), + [aux_sym_select_statement_token1] = ACTIONS(8702), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8702), + [aux_sym__for_header_token1] = ACTIONS(8702), + [aux_sym_do_statement_token1] = ACTIONS(8702), + [aux_sym_do_condition_token1] = ACTIONS(8702), + [aux_sym_with_statement_token1] = ACTIONS(8702), + [aux_sym_exit_statement_token1] = ACTIONS(8702), + [sym_end_statement] = ACTIONS(8704), + [aux_sym_on_goto_statement_token1] = ACTIONS(8702), + [aux_sym_on_goto_statement_token2] = ACTIONS(8702), + [aux_sym_on_error_statement_token2] = ACTIONS(8702), + [sym__ambiguous_redim_statement] = ACTIONS(8704), + [aux_sym_erase_statement_token1] = ACTIONS(8702), + [aux_sym_open_statement_token1] = ACTIONS(8702), + [aux_sym_file_mode_token2] = ACTIONS(8702), + [aux_sym_file_access_token2] = ACTIONS(8702), + [aux_sym_file_lock_token2] = ACTIONS(8702), + [aux_sym_print_statement_token1] = ACTIONS(8702), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_DASH] = ACTIONS(8702), + [anon_sym_QMARK] = ACTIONS(8704), + [aux_sym_close_statement_token1] = ACTIONS(8702), + [aux_sym_put_statement_token1] = ACTIONS(8702), + [aux_sym_unlock_statement_token1] = ACTIONS(8702), + [aux_sym_seek_statement_token1] = ACTIONS(8702), + [sym_reset_statement] = ACTIONS(8702), + [aux_sym_raise_event_statement_token1] = ACTIONS(8702), + [sym_stop_statement] = ACTIONS(8702), + [sym_beep_statement] = ACTIONS(8702), + [aux_sym_unload_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token2] = ACTIONS(8702), + [aux_sym_def_type_statement_token3] = ACTIONS(8702), + [aux_sym_def_type_statement_token4] = ACTIONS(8702), + [aux_sym_def_type_statement_token5] = ACTIONS(8702), + [aux_sym_def_type_statement_token6] = ACTIONS(8702), + [aux_sym_def_type_statement_token7] = ACTIONS(8702), + [aux_sym_def_type_statement_token8] = ACTIONS(8702), + [aux_sym_def_type_statement_token9] = ACTIONS(8702), + [aux_sym_def_type_statement_token10] = ACTIONS(8702), + [aux_sym_def_type_statement_token11] = ACTIONS(8702), + [aux_sym_def_type_statement_token12] = ACTIONS(8702), + [aux_sym_def_type_statement_token13] = ACTIONS(8702), + [aux_sym_def_type_statement_token14] = ACTIONS(8702), + [aux_sym_call_statement_token1] = ACTIONS(8702), + [sym__ambiguous_call_statement] = ACTIONS(8702), + [aux_sym_addressof_expression_token1] = ACTIONS(8702), + [aux_sym_type_of_expression_token1] = ACTIONS(8702), + [aux_sym_unary_expression_token1] = ACTIONS(8702), + [sym_string_literal] = ACTIONS(8704), + [sym_number_literal] = ACTIONS(8704), + [aux_sym_boolean_literal_token1] = ACTIONS(8702), + [aux_sym_boolean_literal_token2] = ACTIONS(8702), + [sym_nothing_literal] = ACTIONS(8702), + [sym_null_literal] = ACTIONS(8702), + [sym_empty_literal] = ACTIONS(8702), + [sym_date_literal] = ACTIONS(8704), + [anon_sym_POUND] = ACTIONS(8702), + }, + [STATE(6264)] = { + [sym_identifier] = ACTIONS(8974), + [sym_newline] = ACTIONS(8976), + [anon_sym_COLON] = ACTIONS(8976), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8974), + [aux_sym_frm_property_statement_token1] = ACTIONS(8974), + [anon_sym_DOT] = ACTIONS(8974), + [anon_sym_BANG] = ACTIONS(8976), + [aux_sym__attribute_identifier_token1] = ACTIONS(8974), + [aux_sym_option_statement_token3] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8974), + [aux_sym_preprocessor_const_token1] = ACTIONS(8974), + [sym_static_modifier] = ACTIONS(8974), + [sym__dim_keyword] = ACTIONS(8974), + [sym__redim_keyword] = ACTIONS(8974), + [aux_sym_get_accessor_token1] = ACTIONS(8974), + [aux_sym_set_accessor_token1] = ACTIONS(8974), + [anon_sym_COMMA] = ACTIONS(11093), + [aux_sym_const_declaration_token1] = ACTIONS(8974), + [anon_sym_LPAREN] = ACTIONS(8976), + [aux_sym_as_type_clause_token2] = ACTIONS(8974), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8974), + [aux_sym_visibility_token1] = ACTIONS(8974), + [aux_sym_visibility_token2] = ACTIONS(8974), + [aux_sym_elseif_fragment_token1] = ACTIONS(8974), + [aux_sym_else_fragment_token1] = ACTIONS(8974), + [aux_sym_select_statement_token1] = ACTIONS(8974), + [aux_sym__for_header_token1] = ACTIONS(8974), + [aux_sym_do_statement_token1] = ACTIONS(8974), + [aux_sym_do_condition_token1] = ACTIONS(8974), + [aux_sym_with_statement_token1] = ACTIONS(8974), + [aux_sym_exit_statement_token1] = ACTIONS(8974), + [sym_end_statement] = ACTIONS(8976), + [aux_sym_on_goto_statement_token1] = ACTIONS(8974), + [aux_sym_on_goto_statement_token2] = ACTIONS(8974), + [aux_sym_on_error_statement_token2] = ACTIONS(8974), + [sym__ambiguous_redim_statement] = ACTIONS(8976), + [aux_sym_erase_statement_token1] = ACTIONS(8974), + [aux_sym_open_statement_token1] = ACTIONS(8974), + [aux_sym_file_mode_token2] = ACTIONS(8974), + [aux_sym_file_access_token2] = ACTIONS(8974), + [aux_sym_file_lock_token2] = ACTIONS(8974), + [aux_sym_print_statement_token1] = ACTIONS(8974), + [anon_sym_PLUS] = ACTIONS(8976), + [anon_sym_DASH] = ACTIONS(8974), + [anon_sym_QMARK] = ACTIONS(8976), + [aux_sym_close_statement_token1] = ACTIONS(8974), + [aux_sym_put_statement_token1] = ACTIONS(8974), + [aux_sym_unlock_statement_token1] = ACTIONS(8974), + [aux_sym_seek_statement_token1] = ACTIONS(8974), + [sym_reset_statement] = ACTIONS(8974), + [aux_sym_raise_event_statement_token1] = ACTIONS(8974), + [sym_stop_statement] = ACTIONS(8974), + [sym_beep_statement] = ACTIONS(8974), + [aux_sym_unload_statement_token1] = ACTIONS(8974), + [aux_sym_def_type_statement_token1] = ACTIONS(8974), + [aux_sym_def_type_statement_token2] = ACTIONS(8974), + [aux_sym_def_type_statement_token3] = ACTIONS(8974), + [aux_sym_def_type_statement_token4] = ACTIONS(8974), + [aux_sym_def_type_statement_token5] = ACTIONS(8974), + [aux_sym_def_type_statement_token6] = ACTIONS(8974), + [aux_sym_def_type_statement_token7] = ACTIONS(8974), + [aux_sym_def_type_statement_token8] = ACTIONS(8974), + [aux_sym_def_type_statement_token9] = ACTIONS(8974), + [aux_sym_def_type_statement_token10] = ACTIONS(8974), + [aux_sym_def_type_statement_token11] = ACTIONS(8974), + [aux_sym_def_type_statement_token12] = ACTIONS(8974), + [aux_sym_def_type_statement_token13] = ACTIONS(8974), + [aux_sym_def_type_statement_token14] = ACTIONS(8974), + [aux_sym_call_statement_token1] = ACTIONS(8974), + [sym__ambiguous_call_statement] = ACTIONS(8974), + [aux_sym_addressof_expression_token1] = ACTIONS(8974), + [aux_sym_type_of_expression_token1] = ACTIONS(8974), + [aux_sym_unary_expression_token1] = ACTIONS(8974), + [sym_string_literal] = ACTIONS(8976), + [sym_number_literal] = ACTIONS(8976), + [aux_sym_boolean_literal_token1] = ACTIONS(8974), + [aux_sym_boolean_literal_token2] = ACTIONS(8974), + [sym_nothing_literal] = ACTIONS(8974), + [sym_null_literal] = ACTIONS(8974), + [sym_empty_literal] = ACTIONS(8974), + [sym_date_literal] = ACTIONS(8976), + [anon_sym_POUND] = ACTIONS(8974), + }, + [STATE(6265)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6265), + [sym_identifier] = ACTIONS(8702), + [sym_newline] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(11095), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8702), + [aux_sym_frm_property_statement_token1] = ACTIONS(8702), + [anon_sym_DOT] = ACTIONS(8702), + [anon_sym_BANG] = ACTIONS(8704), + [aux_sym__attribute_identifier_token1] = ACTIONS(8702), + [aux_sym_option_statement_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8702), + [aux_sym_preprocessor_const_token1] = ACTIONS(8702), + [sym_static_modifier] = ACTIONS(8702), + [sym__dim_keyword] = ACTIONS(8702), + [sym__redim_keyword] = ACTIONS(8702), + [aux_sym_get_accessor_token1] = ACTIONS(8702), + [aux_sym_set_accessor_token1] = ACTIONS(8702), + [aux_sym_const_declaration_token1] = ACTIONS(8702), + [anon_sym_LPAREN] = ACTIONS(8704), + [aux_sym_as_type_clause_token2] = ACTIONS(8702), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8702), + [aux_sym_visibility_token1] = ACTIONS(8702), + [aux_sym_visibility_token2] = ACTIONS(8702), + [aux_sym_elseif_fragment_token1] = ACTIONS(8702), + [aux_sym_else_fragment_token1] = ACTIONS(8702), + [aux_sym_select_statement_token1] = ACTIONS(8702), + [aux_sym_select_statement_token2] = ACTIONS(8702), + [aux_sym__for_header_token1] = ACTIONS(8702), + [aux_sym_do_statement_token1] = ACTIONS(8702), + [aux_sym_do_condition_token1] = ACTIONS(8702), + [aux_sym_with_statement_token1] = ACTIONS(8702), + [aux_sym_exit_statement_token1] = ACTIONS(8702), + [sym_end_statement] = ACTIONS(8704), + [aux_sym_on_goto_statement_token1] = ACTIONS(8702), + [aux_sym_on_goto_statement_token2] = ACTIONS(8702), + [aux_sym_on_error_statement_token2] = ACTIONS(8702), + [sym__ambiguous_redim_statement] = ACTIONS(8704), + [aux_sym_erase_statement_token1] = ACTIONS(8702), + [aux_sym_open_statement_token1] = ACTIONS(8702), + [aux_sym_file_mode_token2] = ACTIONS(8702), + [aux_sym_file_access_token2] = ACTIONS(8702), + [aux_sym_file_lock_token2] = ACTIONS(8702), + [aux_sym_print_statement_token1] = ACTIONS(8702), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_DASH] = ACTIONS(8702), + [anon_sym_QMARK] = ACTIONS(8704), + [aux_sym_close_statement_token1] = ACTIONS(8702), + [aux_sym_put_statement_token1] = ACTIONS(8702), + [aux_sym_unlock_statement_token1] = ACTIONS(8702), + [aux_sym_seek_statement_token1] = ACTIONS(8702), + [sym_reset_statement] = ACTIONS(8702), + [aux_sym_raise_event_statement_token1] = ACTIONS(8702), + [sym_stop_statement] = ACTIONS(8702), + [sym_beep_statement] = ACTIONS(8702), + [aux_sym_unload_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token2] = ACTIONS(8702), + [aux_sym_def_type_statement_token3] = ACTIONS(8702), + [aux_sym_def_type_statement_token4] = ACTIONS(8702), + [aux_sym_def_type_statement_token5] = ACTIONS(8702), + [aux_sym_def_type_statement_token6] = ACTIONS(8702), + [aux_sym_def_type_statement_token7] = ACTIONS(8702), + [aux_sym_def_type_statement_token8] = ACTIONS(8702), + [aux_sym_def_type_statement_token9] = ACTIONS(8702), + [aux_sym_def_type_statement_token10] = ACTIONS(8702), + [aux_sym_def_type_statement_token11] = ACTIONS(8702), + [aux_sym_def_type_statement_token12] = ACTIONS(8702), + [aux_sym_def_type_statement_token13] = ACTIONS(8702), + [aux_sym_def_type_statement_token14] = ACTIONS(8702), + [aux_sym_call_statement_token1] = ACTIONS(8702), + [sym__ambiguous_call_statement] = ACTIONS(8702), + [aux_sym_addressof_expression_token1] = ACTIONS(8702), + [aux_sym_type_of_expression_token1] = ACTIONS(8702), + [aux_sym_unary_expression_token1] = ACTIONS(8702), + [sym_string_literal] = ACTIONS(8704), + [sym_number_literal] = ACTIONS(8704), + [aux_sym_boolean_literal_token1] = ACTIONS(8702), + [aux_sym_boolean_literal_token2] = ACTIONS(8702), + [sym_nothing_literal] = ACTIONS(8702), + [sym_null_literal] = ACTIONS(8702), + [sym_empty_literal] = ACTIONS(8702), + [sym_date_literal] = ACTIONS(8704), + [anon_sym_POUND] = ACTIONS(8702), + }, + [STATE(6266)] = { + [sym_identifier] = ACTIONS(8749), + [sym_newline] = ACTIONS(8751), + [anon_sym_COLON] = ACTIONS(8753), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8749), + [aux_sym_frm_property_statement_token1] = ACTIONS(8749), + [anon_sym_DOT] = ACTIONS(8749), + [anon_sym_BANG] = ACTIONS(8751), + [aux_sym__attribute_identifier_token1] = ACTIONS(8749), + [aux_sym_option_statement_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8749), + [aux_sym_preprocessor_const_token1] = ACTIONS(8749), + [sym_static_modifier] = ACTIONS(8749), + [sym__dim_keyword] = ACTIONS(8749), + [sym__redim_keyword] = ACTIONS(8749), + [aux_sym_get_accessor_token1] = ACTIONS(8749), + [aux_sym_set_accessor_token1] = ACTIONS(8749), + [aux_sym_const_declaration_token1] = ACTIONS(8749), + [anon_sym_LPAREN] = ACTIONS(8751), + [aux_sym_as_type_clause_token2] = ACTIONS(8749), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8749), + [aux_sym_visibility_token1] = ACTIONS(8749), + [aux_sym_visibility_token2] = ACTIONS(8749), + [aux_sym_elseif_fragment_token1] = ACTIONS(8749), + [aux_sym_else_fragment_token1] = ACTIONS(8749), + [aux_sym_select_statement_token1] = ACTIONS(8749), + [aux_sym_select_statement_token2] = ACTIONS(8749), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8749), + [aux_sym__for_header_token1] = ACTIONS(8749), + [aux_sym_do_statement_token1] = ACTIONS(8749), + [aux_sym_do_condition_token1] = ACTIONS(8749), + [aux_sym_with_statement_token1] = ACTIONS(8749), + [aux_sym_exit_statement_token1] = ACTIONS(8749), + [sym_end_statement] = ACTIONS(8751), + [aux_sym_on_goto_statement_token1] = ACTIONS(8749), + [aux_sym_on_goto_statement_token2] = ACTIONS(8749), + [aux_sym_on_error_statement_token2] = ACTIONS(8749), + [sym__ambiguous_redim_statement] = ACTIONS(8751), + [aux_sym_erase_statement_token1] = ACTIONS(8749), + [aux_sym_open_statement_token1] = ACTIONS(8749), + [aux_sym_file_mode_token2] = ACTIONS(8749), + [aux_sym_file_access_token2] = ACTIONS(8749), + [aux_sym_file_lock_token2] = ACTIONS(8749), + [aux_sym_print_statement_token1] = ACTIONS(8749), + [anon_sym_PLUS] = ACTIONS(8751), + [anon_sym_DASH] = ACTIONS(8749), + [anon_sym_QMARK] = ACTIONS(8751), + [aux_sym_close_statement_token1] = ACTIONS(8749), + [aux_sym_put_statement_token1] = ACTIONS(8749), + [aux_sym_unlock_statement_token1] = ACTIONS(8749), + [aux_sym_seek_statement_token1] = ACTIONS(8749), + [sym_reset_statement] = ACTIONS(8749), + [aux_sym_raise_event_statement_token1] = ACTIONS(8749), + [sym_stop_statement] = ACTIONS(8749), + [sym_beep_statement] = ACTIONS(8749), + [aux_sym_unload_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token2] = ACTIONS(8749), + [aux_sym_def_type_statement_token3] = ACTIONS(8749), + [aux_sym_def_type_statement_token4] = ACTIONS(8749), + [aux_sym_def_type_statement_token5] = ACTIONS(8749), + [aux_sym_def_type_statement_token6] = ACTIONS(8749), + [aux_sym_def_type_statement_token7] = ACTIONS(8749), + [aux_sym_def_type_statement_token8] = ACTIONS(8749), + [aux_sym_def_type_statement_token9] = ACTIONS(8749), + [aux_sym_def_type_statement_token10] = ACTIONS(8749), + [aux_sym_def_type_statement_token11] = ACTIONS(8749), + [aux_sym_def_type_statement_token12] = ACTIONS(8749), + [aux_sym_def_type_statement_token13] = ACTIONS(8749), + [aux_sym_def_type_statement_token14] = ACTIONS(8749), + [aux_sym_call_statement_token1] = ACTIONS(8749), + [sym__ambiguous_call_statement] = ACTIONS(8749), + [aux_sym_addressof_expression_token1] = ACTIONS(8749), + [aux_sym_type_of_expression_token1] = ACTIONS(8749), + [aux_sym_unary_expression_token1] = ACTIONS(8749), + [sym_string_literal] = ACTIONS(8751), + [sym_number_literal] = ACTIONS(8753), + [aux_sym_boolean_literal_token1] = ACTIONS(8749), + [aux_sym_boolean_literal_token2] = ACTIONS(8749), + [sym_nothing_literal] = ACTIONS(8749), + [sym_null_literal] = ACTIONS(8749), + [sym_empty_literal] = ACTIONS(8749), + [sym_date_literal] = ACTIONS(8751), + [anon_sym_POUND] = ACTIONS(8749), + }, + [STATE(6267)] = { + [aux_sym_const_declaration_repeat1] = STATE(6267), + [sym_identifier] = ACTIONS(8350), + [sym_newline] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8350), + [aux_sym_frm_property_statement_token1] = ACTIONS(8350), + [anon_sym_DOT] = ACTIONS(8350), + [anon_sym_BANG] = ACTIONS(8352), + [aux_sym__attribute_identifier_token1] = ACTIONS(8350), + [aux_sym_option_statement_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8350), + [aux_sym_preprocessor_const_token1] = ACTIONS(8350), + [sym_static_modifier] = ACTIONS(8350), + [sym__dim_keyword] = ACTIONS(8350), + [sym__redim_keyword] = ACTIONS(8350), + [aux_sym_get_accessor_token1] = ACTIONS(8350), + [aux_sym_set_accessor_token1] = ACTIONS(8350), + [anon_sym_COMMA] = ACTIONS(11098), + [aux_sym_const_declaration_token1] = ACTIONS(8350), + [anon_sym_LPAREN] = ACTIONS(8352), + [aux_sym_as_type_clause_token2] = ACTIONS(8350), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8350), + [aux_sym_visibility_token1] = ACTIONS(8350), + [aux_sym_visibility_token2] = ACTIONS(8350), + [aux_sym_elseif_fragment_token1] = ACTIONS(8350), + [aux_sym_else_fragment_token1] = ACTIONS(8350), + [aux_sym_select_statement_token1] = ACTIONS(8350), + [aux_sym__for_header_token1] = ACTIONS(8350), + [aux_sym_do_statement_token1] = ACTIONS(8350), + [aux_sym_do_condition_token1] = ACTIONS(8350), + [aux_sym_with_statement_token1] = ACTIONS(8350), + [aux_sym_exit_statement_token1] = ACTIONS(8350), + [sym_end_statement] = ACTIONS(8352), + [aux_sym_on_goto_statement_token1] = ACTIONS(8350), + [aux_sym_on_goto_statement_token2] = ACTIONS(8350), + [aux_sym_on_error_statement_token2] = ACTIONS(8350), + [sym__ambiguous_redim_statement] = ACTIONS(8352), + [aux_sym_erase_statement_token1] = ACTIONS(8350), + [aux_sym_open_statement_token1] = ACTIONS(8350), + [aux_sym_file_mode_token2] = ACTIONS(8350), + [aux_sym_file_access_token2] = ACTIONS(8350), + [aux_sym_file_lock_token2] = ACTIONS(8350), + [aux_sym_print_statement_token1] = ACTIONS(8350), + [anon_sym_PLUS] = ACTIONS(8352), + [anon_sym_DASH] = ACTIONS(8350), + [anon_sym_QMARK] = ACTIONS(8352), + [aux_sym_close_statement_token1] = ACTIONS(8350), + [aux_sym_put_statement_token1] = ACTIONS(8350), + [aux_sym_unlock_statement_token1] = ACTIONS(8350), + [aux_sym_seek_statement_token1] = ACTIONS(8350), + [sym_reset_statement] = ACTIONS(8350), + [aux_sym_raise_event_statement_token1] = ACTIONS(8350), + [sym_stop_statement] = ACTIONS(8350), + [sym_beep_statement] = ACTIONS(8350), + [aux_sym_unload_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token2] = ACTIONS(8350), + [aux_sym_def_type_statement_token3] = ACTIONS(8350), + [aux_sym_def_type_statement_token4] = ACTIONS(8350), + [aux_sym_def_type_statement_token5] = ACTIONS(8350), + [aux_sym_def_type_statement_token6] = ACTIONS(8350), + [aux_sym_def_type_statement_token7] = ACTIONS(8350), + [aux_sym_def_type_statement_token8] = ACTIONS(8350), + [aux_sym_def_type_statement_token9] = ACTIONS(8350), + [aux_sym_def_type_statement_token10] = ACTIONS(8350), + [aux_sym_def_type_statement_token11] = ACTIONS(8350), + [aux_sym_def_type_statement_token12] = ACTIONS(8350), + [aux_sym_def_type_statement_token13] = ACTIONS(8350), + [aux_sym_def_type_statement_token14] = ACTIONS(8350), + [aux_sym_call_statement_token1] = ACTIONS(8350), + [sym__ambiguous_call_statement] = ACTIONS(8350), + [aux_sym_addressof_expression_token1] = ACTIONS(8350), + [aux_sym_type_of_expression_token1] = ACTIONS(8350), + [aux_sym_unary_expression_token1] = ACTIONS(8350), + [sym_string_literal] = ACTIONS(8352), + [sym_number_literal] = ACTIONS(8352), + [aux_sym_boolean_literal_token1] = ACTIONS(8350), + [aux_sym_boolean_literal_token2] = ACTIONS(8350), + [sym_nothing_literal] = ACTIONS(8350), + [sym_null_literal] = ACTIONS(8350), + [sym_empty_literal] = ACTIONS(8350), + [sym_date_literal] = ACTIONS(8352), + [anon_sym_POUND] = ACTIONS(8350), + }, + [STATE(6268)] = { + [sym_identifier] = ACTIONS(8861), + [sym_newline] = ACTIONS(8863), + [anon_sym_COLON] = ACTIONS(8863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8861), + [aux_sym_frm_property_statement_token1] = ACTIONS(8861), + [anon_sym_DOT] = ACTIONS(8861), + [anon_sym_BANG] = ACTIONS(8863), + [aux_sym__attribute_identifier_token1] = ACTIONS(8861), + [aux_sym_option_statement_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8861), + [aux_sym_preprocessor_const_token1] = ACTIONS(8861), + [sym_static_modifier] = ACTIONS(8861), + [sym__dim_keyword] = ACTIONS(8861), + [sym__redim_keyword] = ACTIONS(8861), + [aux_sym_get_accessor_token1] = ACTIONS(8861), + [aux_sym_set_accessor_token1] = ACTIONS(8861), + [aux_sym_const_declaration_token1] = ACTIONS(8861), + [anon_sym_LPAREN] = ACTIONS(8863), + [aux_sym_as_type_clause_token2] = ACTIONS(8861), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8861), + [aux_sym_visibility_token1] = ACTIONS(8861), + [aux_sym_visibility_token2] = ACTIONS(8861), + [aux_sym_elseif_fragment_token1] = ACTIONS(8861), + [aux_sym_else_fragment_token1] = ACTIONS(8861), + [aux_sym_select_statement_token1] = ACTIONS(8861), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8861), + [aux_sym__for_header_token1] = ACTIONS(8861), + [aux_sym_do_statement_token1] = ACTIONS(8861), + [aux_sym_do_condition_token1] = ACTIONS(8861), + [aux_sym_while_statement_token1] = ACTIONS(8861), + [aux_sym_with_statement_token1] = ACTIONS(8861), + [aux_sym_exit_statement_token1] = ACTIONS(8861), + [sym_end_statement] = ACTIONS(8863), + [aux_sym_on_goto_statement_token1] = ACTIONS(8861), + [aux_sym_on_goto_statement_token2] = ACTIONS(8861), + [aux_sym_on_error_statement_token2] = ACTIONS(8861), + [sym__ambiguous_redim_statement] = ACTIONS(8863), + [aux_sym_erase_statement_token1] = ACTIONS(8861), + [aux_sym_open_statement_token1] = ACTIONS(8861), + [aux_sym_file_mode_token2] = ACTIONS(8861), + [aux_sym_file_access_token2] = ACTIONS(8861), + [aux_sym_file_lock_token2] = ACTIONS(8861), + [aux_sym_print_statement_token1] = ACTIONS(8861), + [anon_sym_PLUS] = ACTIONS(8863), + [anon_sym_DASH] = ACTIONS(8861), + [anon_sym_QMARK] = ACTIONS(8863), + [aux_sym_close_statement_token1] = ACTIONS(8861), + [aux_sym_put_statement_token1] = ACTIONS(8861), + [aux_sym_unlock_statement_token1] = ACTIONS(8861), + [aux_sym_seek_statement_token1] = ACTIONS(8861), + [sym_reset_statement] = ACTIONS(8861), + [aux_sym_raise_event_statement_token1] = ACTIONS(8861), + [sym_stop_statement] = ACTIONS(8861), + [sym_beep_statement] = ACTIONS(8861), + [aux_sym_unload_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token2] = ACTIONS(8861), + [aux_sym_def_type_statement_token3] = ACTIONS(8861), + [aux_sym_def_type_statement_token4] = ACTIONS(8861), + [aux_sym_def_type_statement_token5] = ACTIONS(8861), + [aux_sym_def_type_statement_token6] = ACTIONS(8861), + [aux_sym_def_type_statement_token7] = ACTIONS(8861), + [aux_sym_def_type_statement_token8] = ACTIONS(8861), + [aux_sym_def_type_statement_token9] = ACTIONS(8861), + [aux_sym_def_type_statement_token10] = ACTIONS(8861), + [aux_sym_def_type_statement_token11] = ACTIONS(8861), + [aux_sym_def_type_statement_token12] = ACTIONS(8861), + [aux_sym_def_type_statement_token13] = ACTIONS(8861), + [aux_sym_def_type_statement_token14] = ACTIONS(8861), + [aux_sym_call_statement_token1] = ACTIONS(8861), + [sym__ambiguous_call_statement] = ACTIONS(8861), + [aux_sym_addressof_expression_token1] = ACTIONS(8861), + [aux_sym_type_of_expression_token1] = ACTIONS(8861), + [aux_sym_unary_expression_token1] = ACTIONS(8861), + [sym_string_literal] = ACTIONS(8863), + [sym_number_literal] = ACTIONS(8863), + [aux_sym_boolean_literal_token1] = ACTIONS(8861), + [aux_sym_boolean_literal_token2] = ACTIONS(8861), + [sym_nothing_literal] = ACTIONS(8861), + [sym_null_literal] = ACTIONS(8861), + [sym_empty_literal] = ACTIONS(8861), + [sym_date_literal] = ACTIONS(8863), + [anon_sym_POUND] = ACTIONS(8861), + }, + [STATE(6269)] = { + [sym_identifier] = ACTIONS(8831), + [sym_newline] = ACTIONS(8833), + [anon_sym_COLON] = ACTIONS(8833), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8831), + [aux_sym_frm_property_statement_token1] = ACTIONS(8831), + [anon_sym_DOT] = ACTIONS(8831), + [anon_sym_BANG] = ACTIONS(8833), + [aux_sym__attribute_identifier_token1] = ACTIONS(8831), + [aux_sym_option_statement_token3] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8831), + [aux_sym_preprocessor_const_token1] = ACTIONS(8831), + [sym_static_modifier] = ACTIONS(8831), + [sym__dim_keyword] = ACTIONS(8831), + [sym__redim_keyword] = ACTIONS(8831), + [aux_sym_get_accessor_token1] = ACTIONS(8831), + [aux_sym_set_accessor_token1] = ACTIONS(8831), + [anon_sym_COMMA] = ACTIONS(8833), + [aux_sym_const_declaration_token1] = ACTIONS(8831), + [anon_sym_LPAREN] = ACTIONS(8833), + [aux_sym_as_type_clause_token2] = ACTIONS(8831), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8831), + [aux_sym_visibility_token1] = ACTIONS(8831), + [aux_sym_visibility_token2] = ACTIONS(8831), + [aux_sym_elseif_fragment_token1] = ACTIONS(8831), + [aux_sym_else_fragment_token1] = ACTIONS(8831), + [aux_sym_select_statement_token1] = ACTIONS(8831), + [aux_sym__for_header_token1] = ACTIONS(8831), + [aux_sym_do_statement_token1] = ACTIONS(8831), + [aux_sym_do_condition_token1] = ACTIONS(8831), + [aux_sym_while_statement_token1] = ACTIONS(8831), + [aux_sym_with_statement_token1] = ACTIONS(8831), + [aux_sym_exit_statement_token1] = ACTIONS(8831), + [sym_end_statement] = ACTIONS(8833), + [aux_sym_on_goto_statement_token1] = ACTIONS(8831), + [aux_sym_on_goto_statement_token2] = ACTIONS(8831), + [aux_sym_on_error_statement_token2] = ACTIONS(8831), + [sym__ambiguous_redim_statement] = ACTIONS(8833), + [aux_sym_erase_statement_token1] = ACTIONS(8831), + [aux_sym_open_statement_token1] = ACTIONS(8831), + [aux_sym_file_mode_token2] = ACTIONS(8831), + [aux_sym_file_access_token2] = ACTIONS(8831), + [aux_sym_file_lock_token2] = ACTIONS(8831), + [aux_sym_print_statement_token1] = ACTIONS(8831), + [anon_sym_PLUS] = ACTIONS(8833), + [anon_sym_DASH] = ACTIONS(8831), + [anon_sym_QMARK] = ACTIONS(8833), + [aux_sym_close_statement_token1] = ACTIONS(8831), + [aux_sym_put_statement_token1] = ACTIONS(8831), + [aux_sym_unlock_statement_token1] = ACTIONS(8831), + [aux_sym_seek_statement_token1] = ACTIONS(8831), + [sym_reset_statement] = ACTIONS(8831), + [aux_sym_raise_event_statement_token1] = ACTIONS(8831), + [sym_stop_statement] = ACTIONS(8831), + [sym_beep_statement] = ACTIONS(8831), + [aux_sym_unload_statement_token1] = ACTIONS(8831), + [aux_sym_def_type_statement_token1] = ACTIONS(8831), + [aux_sym_def_type_statement_token2] = ACTIONS(8831), + [aux_sym_def_type_statement_token3] = ACTIONS(8831), + [aux_sym_def_type_statement_token4] = ACTIONS(8831), + [aux_sym_def_type_statement_token5] = ACTIONS(8831), + [aux_sym_def_type_statement_token6] = ACTIONS(8831), + [aux_sym_def_type_statement_token7] = ACTIONS(8831), + [aux_sym_def_type_statement_token8] = ACTIONS(8831), + [aux_sym_def_type_statement_token9] = ACTIONS(8831), + [aux_sym_def_type_statement_token10] = ACTIONS(8831), + [aux_sym_def_type_statement_token11] = ACTIONS(8831), + [aux_sym_def_type_statement_token12] = ACTIONS(8831), + [aux_sym_def_type_statement_token13] = ACTIONS(8831), + [aux_sym_def_type_statement_token14] = ACTIONS(8831), + [aux_sym_call_statement_token1] = ACTIONS(8831), + [sym__ambiguous_call_statement] = ACTIONS(8831), + [aux_sym_addressof_expression_token1] = ACTIONS(8831), + [aux_sym_type_of_expression_token1] = ACTIONS(8831), + [aux_sym_unary_expression_token1] = ACTIONS(8831), + [sym_string_literal] = ACTIONS(8833), + [sym_number_literal] = ACTIONS(8833), + [aux_sym_boolean_literal_token1] = ACTIONS(8831), + [aux_sym_boolean_literal_token2] = ACTIONS(8831), + [sym_nothing_literal] = ACTIONS(8831), + [sym_null_literal] = ACTIONS(8831), + [sym_empty_literal] = ACTIONS(8831), + [sym_date_literal] = ACTIONS(8833), + [anon_sym_POUND] = ACTIONS(8831), + }, + [STATE(6270)] = { + [sym_identifier] = ACTIONS(8776), + [sym_newline] = ACTIONS(8778), + [anon_sym_COLON] = ACTIONS(8778), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8776), + [aux_sym_frm_property_statement_token1] = ACTIONS(8776), + [anon_sym_DOT] = ACTIONS(8776), + [anon_sym_BANG] = ACTIONS(8778), + [aux_sym__attribute_identifier_token1] = ACTIONS(8776), + [aux_sym_option_statement_token3] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8776), + [aux_sym_preprocessor_const_token1] = ACTIONS(8776), + [sym_static_modifier] = ACTIONS(8776), + [sym__dim_keyword] = ACTIONS(8776), + [sym__redim_keyword] = ACTIONS(8776), + [aux_sym_get_accessor_token1] = ACTIONS(8776), + [aux_sym_set_accessor_token1] = ACTIONS(8776), + [anon_sym_COMMA] = ACTIONS(8778), + [aux_sym_const_declaration_token1] = ACTIONS(8776), + [anon_sym_LPAREN] = ACTIONS(8778), + [aux_sym_as_type_clause_token2] = ACTIONS(8776), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8776), + [aux_sym_visibility_token1] = ACTIONS(8776), + [aux_sym_visibility_token2] = ACTIONS(8776), + [aux_sym_elseif_fragment_token1] = ACTIONS(8776), + [aux_sym_else_fragment_token1] = ACTIONS(8776), + [aux_sym_select_statement_token1] = ACTIONS(8776), + [aux_sym__for_header_token1] = ACTIONS(8776), + [aux_sym_do_statement_token1] = ACTIONS(8776), + [aux_sym_do_statement_token2] = ACTIONS(8776), + [aux_sym_do_condition_token1] = ACTIONS(8776), + [aux_sym_with_statement_token1] = ACTIONS(8776), + [aux_sym_exit_statement_token1] = ACTIONS(8776), + [sym_end_statement] = ACTIONS(8778), + [aux_sym_on_goto_statement_token1] = ACTIONS(8776), + [aux_sym_on_goto_statement_token2] = ACTIONS(8776), + [aux_sym_on_error_statement_token2] = ACTIONS(8776), + [sym__ambiguous_redim_statement] = ACTIONS(8778), + [aux_sym_erase_statement_token1] = ACTIONS(8776), + [aux_sym_open_statement_token1] = ACTIONS(8776), + [aux_sym_file_mode_token2] = ACTIONS(8776), + [aux_sym_file_access_token2] = ACTIONS(8776), + [aux_sym_file_lock_token2] = ACTIONS(8776), + [aux_sym_print_statement_token1] = ACTIONS(8776), + [anon_sym_PLUS] = ACTIONS(8778), + [anon_sym_DASH] = ACTIONS(8776), + [anon_sym_QMARK] = ACTIONS(8778), + [aux_sym_close_statement_token1] = ACTIONS(8776), + [aux_sym_put_statement_token1] = ACTIONS(8776), + [aux_sym_unlock_statement_token1] = ACTIONS(8776), + [aux_sym_seek_statement_token1] = ACTIONS(8776), + [sym_reset_statement] = ACTIONS(8776), + [aux_sym_raise_event_statement_token1] = ACTIONS(8776), + [sym_stop_statement] = ACTIONS(8776), + [sym_beep_statement] = ACTIONS(8776), + [aux_sym_unload_statement_token1] = ACTIONS(8776), + [aux_sym_def_type_statement_token1] = ACTIONS(8776), + [aux_sym_def_type_statement_token2] = ACTIONS(8776), + [aux_sym_def_type_statement_token3] = ACTIONS(8776), + [aux_sym_def_type_statement_token4] = ACTIONS(8776), + [aux_sym_def_type_statement_token5] = ACTIONS(8776), + [aux_sym_def_type_statement_token6] = ACTIONS(8776), + [aux_sym_def_type_statement_token7] = ACTIONS(8776), + [aux_sym_def_type_statement_token8] = ACTIONS(8776), + [aux_sym_def_type_statement_token9] = ACTIONS(8776), + [aux_sym_def_type_statement_token10] = ACTIONS(8776), + [aux_sym_def_type_statement_token11] = ACTIONS(8776), + [aux_sym_def_type_statement_token12] = ACTIONS(8776), + [aux_sym_def_type_statement_token13] = ACTIONS(8776), + [aux_sym_def_type_statement_token14] = ACTIONS(8776), + [aux_sym_call_statement_token1] = ACTIONS(8776), + [sym__ambiguous_call_statement] = ACTIONS(8776), + [aux_sym_addressof_expression_token1] = ACTIONS(8776), + [aux_sym_type_of_expression_token1] = ACTIONS(8776), + [aux_sym_unary_expression_token1] = ACTIONS(8776), + [sym_string_literal] = ACTIONS(8778), + [sym_number_literal] = ACTIONS(8778), + [aux_sym_boolean_literal_token1] = ACTIONS(8776), + [aux_sym_boolean_literal_token2] = ACTIONS(8776), + [sym_nothing_literal] = ACTIONS(8776), + [sym_null_literal] = ACTIONS(8776), + [sym_empty_literal] = ACTIONS(8776), + [sym_date_literal] = ACTIONS(8778), + [anon_sym_POUND] = ACTIONS(8776), + }, + [STATE(6271)] = { + [sym_identifier] = ACTIONS(8801), + [sym_newline] = ACTIONS(8803), + [anon_sym_COLON] = ACTIONS(8803), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8801), + [aux_sym_frm_property_statement_token1] = ACTIONS(8801), + [anon_sym_DOT] = ACTIONS(8801), + [anon_sym_BANG] = ACTIONS(8803), + [aux_sym__attribute_identifier_token1] = ACTIONS(8801), + [aux_sym_option_statement_token3] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8801), + [aux_sym_preprocessor_const_token1] = ACTIONS(8801), + [sym_static_modifier] = ACTIONS(8801), + [sym__dim_keyword] = ACTIONS(8801), + [sym__redim_keyword] = ACTIONS(8801), + [aux_sym_get_accessor_token1] = ACTIONS(8801), + [aux_sym_set_accessor_token1] = ACTIONS(8801), + [anon_sym_COMMA] = ACTIONS(8803), + [aux_sym_const_declaration_token1] = ACTIONS(8801), + [anon_sym_LPAREN] = ACTIONS(8803), + [aux_sym_as_type_clause_token2] = ACTIONS(8801), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8801), + [aux_sym_visibility_token1] = ACTIONS(8801), + [aux_sym_visibility_token2] = ACTIONS(8801), + [aux_sym_elseif_fragment_token1] = ACTIONS(8801), + [aux_sym_else_fragment_token1] = ACTIONS(8801), + [aux_sym_select_statement_token1] = ACTIONS(8801), + [aux_sym__for_header_token1] = ACTIONS(8801), + [aux_sym_do_statement_token1] = ACTIONS(8801), + [aux_sym_do_statement_token2] = ACTIONS(8801), + [aux_sym_do_condition_token1] = ACTIONS(8801), + [aux_sym_with_statement_token1] = ACTIONS(8801), + [aux_sym_exit_statement_token1] = ACTIONS(8801), + [sym_end_statement] = ACTIONS(8803), + [aux_sym_on_goto_statement_token1] = ACTIONS(8801), + [aux_sym_on_goto_statement_token2] = ACTIONS(8801), + [aux_sym_on_error_statement_token2] = ACTIONS(8801), + [sym__ambiguous_redim_statement] = ACTIONS(8803), + [aux_sym_erase_statement_token1] = ACTIONS(8801), + [aux_sym_open_statement_token1] = ACTIONS(8801), + [aux_sym_file_mode_token2] = ACTIONS(8801), + [aux_sym_file_access_token2] = ACTIONS(8801), + [aux_sym_file_lock_token2] = ACTIONS(8801), + [aux_sym_print_statement_token1] = ACTIONS(8801), + [anon_sym_PLUS] = ACTIONS(8803), + [anon_sym_DASH] = ACTIONS(8801), + [anon_sym_QMARK] = ACTIONS(8803), + [aux_sym_close_statement_token1] = ACTIONS(8801), + [aux_sym_put_statement_token1] = ACTIONS(8801), + [aux_sym_unlock_statement_token1] = ACTIONS(8801), + [aux_sym_seek_statement_token1] = ACTIONS(8801), + [sym_reset_statement] = ACTIONS(8801), + [aux_sym_raise_event_statement_token1] = ACTIONS(8801), + [sym_stop_statement] = ACTIONS(8801), + [sym_beep_statement] = ACTIONS(8801), + [aux_sym_unload_statement_token1] = ACTIONS(8801), + [aux_sym_def_type_statement_token1] = ACTIONS(8801), + [aux_sym_def_type_statement_token2] = ACTIONS(8801), + [aux_sym_def_type_statement_token3] = ACTIONS(8801), + [aux_sym_def_type_statement_token4] = ACTIONS(8801), + [aux_sym_def_type_statement_token5] = ACTIONS(8801), + [aux_sym_def_type_statement_token6] = ACTIONS(8801), + [aux_sym_def_type_statement_token7] = ACTIONS(8801), + [aux_sym_def_type_statement_token8] = ACTIONS(8801), + [aux_sym_def_type_statement_token9] = ACTIONS(8801), + [aux_sym_def_type_statement_token10] = ACTIONS(8801), + [aux_sym_def_type_statement_token11] = ACTIONS(8801), + [aux_sym_def_type_statement_token12] = ACTIONS(8801), + [aux_sym_def_type_statement_token13] = ACTIONS(8801), + [aux_sym_def_type_statement_token14] = ACTIONS(8801), + [aux_sym_call_statement_token1] = ACTIONS(8801), + [sym__ambiguous_call_statement] = ACTIONS(8801), + [aux_sym_addressof_expression_token1] = ACTIONS(8801), + [aux_sym_type_of_expression_token1] = ACTIONS(8801), + [aux_sym_unary_expression_token1] = ACTIONS(8801), + [sym_string_literal] = ACTIONS(8803), + [sym_number_literal] = ACTIONS(8803), + [aux_sym_boolean_literal_token1] = ACTIONS(8801), + [aux_sym_boolean_literal_token2] = ACTIONS(8801), + [sym_nothing_literal] = ACTIONS(8801), + [sym_null_literal] = ACTIONS(8801), + [sym_empty_literal] = ACTIONS(8801), + [sym_date_literal] = ACTIONS(8803), + [anon_sym_POUND] = ACTIONS(8801), + }, + [STATE(6272)] = { + [sym_do_condition] = STATE(7212), + [sym_identifier] = ACTIONS(8411), + [sym_newline] = ACTIONS(8413), + [anon_sym_COLON] = ACTIONS(8413), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8411), + [aux_sym_frm_property_statement_token1] = ACTIONS(8411), + [anon_sym_DOT] = ACTIONS(8411), + [anon_sym_BANG] = ACTIONS(8413), + [aux_sym__attribute_identifier_token1] = ACTIONS(8411), + [aux_sym_option_statement_token3] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8411), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8411), + [aux_sym_preprocessor_const_token1] = ACTIONS(8411), + [sym_static_modifier] = ACTIONS(8411), + [sym__dim_keyword] = ACTIONS(8411), + [sym__redim_keyword] = ACTIONS(8411), + [aux_sym_get_accessor_token1] = ACTIONS(8411), + [aux_sym_set_accessor_token1] = ACTIONS(8411), + [aux_sym_const_declaration_token1] = ACTIONS(8411), + [anon_sym_LPAREN] = ACTIONS(8413), + [aux_sym_as_type_clause_token2] = ACTIONS(8411), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8411), + [aux_sym_visibility_token1] = ACTIONS(8411), + [aux_sym_visibility_token2] = ACTIONS(8411), + [aux_sym_elseif_fragment_token1] = ACTIONS(8411), + [aux_sym_else_fragment_token1] = ACTIONS(8411), + [aux_sym_select_statement_token1] = ACTIONS(8411), + [aux_sym__for_header_token1] = ACTIONS(8411), + [aux_sym_do_statement_token1] = ACTIONS(8411), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8411), + [aux_sym_exit_statement_token1] = ACTIONS(8411), + [sym_end_statement] = ACTIONS(8413), + [aux_sym_on_goto_statement_token1] = ACTIONS(8411), + [aux_sym_on_goto_statement_token2] = ACTIONS(8411), + [aux_sym_on_error_statement_token2] = ACTIONS(8411), + [sym__ambiguous_redim_statement] = ACTIONS(8413), + [aux_sym_erase_statement_token1] = ACTIONS(8411), + [aux_sym_open_statement_token1] = ACTIONS(8411), + [aux_sym_file_mode_token2] = ACTIONS(8411), + [aux_sym_file_access_token2] = ACTIONS(8411), + [aux_sym_file_lock_token2] = ACTIONS(8411), + [aux_sym_print_statement_token1] = ACTIONS(8411), + [anon_sym_PLUS] = ACTIONS(8413), + [anon_sym_DASH] = ACTIONS(8411), + [anon_sym_QMARK] = ACTIONS(8413), + [aux_sym_close_statement_token1] = ACTIONS(8411), + [aux_sym_put_statement_token1] = ACTIONS(8411), + [aux_sym_unlock_statement_token1] = ACTIONS(8411), + [aux_sym_seek_statement_token1] = ACTIONS(8411), + [sym_reset_statement] = ACTIONS(8411), + [aux_sym_raise_event_statement_token1] = ACTIONS(8411), + [sym_stop_statement] = ACTIONS(8411), + [sym_beep_statement] = ACTIONS(8411), + [aux_sym_unload_statement_token1] = ACTIONS(8411), + [aux_sym_def_type_statement_token1] = ACTIONS(8411), + [aux_sym_def_type_statement_token2] = ACTIONS(8411), + [aux_sym_def_type_statement_token3] = ACTIONS(8411), + [aux_sym_def_type_statement_token4] = ACTIONS(8411), + [aux_sym_def_type_statement_token5] = ACTIONS(8411), + [aux_sym_def_type_statement_token6] = ACTIONS(8411), + [aux_sym_def_type_statement_token7] = ACTIONS(8411), + [aux_sym_def_type_statement_token8] = ACTIONS(8411), + [aux_sym_def_type_statement_token9] = ACTIONS(8411), + [aux_sym_def_type_statement_token10] = ACTIONS(8411), + [aux_sym_def_type_statement_token11] = ACTIONS(8411), + [aux_sym_def_type_statement_token12] = ACTIONS(8411), + [aux_sym_def_type_statement_token13] = ACTIONS(8411), + [aux_sym_def_type_statement_token14] = ACTIONS(8411), + [aux_sym_call_statement_token1] = ACTIONS(8411), + [sym__ambiguous_call_statement] = ACTIONS(8411), + [aux_sym_addressof_expression_token1] = ACTIONS(8411), + [aux_sym_type_of_expression_token1] = ACTIONS(8411), + [aux_sym_unary_expression_token1] = ACTIONS(8411), + [sym_string_literal] = ACTIONS(8413), + [sym_number_literal] = ACTIONS(8413), + [aux_sym_boolean_literal_token1] = ACTIONS(8411), + [aux_sym_boolean_literal_token2] = ACTIONS(8411), + [sym_nothing_literal] = ACTIONS(8411), + [sym_null_literal] = ACTIONS(8411), + [sym_empty_literal] = ACTIONS(8411), + [sym_date_literal] = ACTIONS(8413), + [anon_sym_POUND] = ACTIONS(8411), + }, + [STATE(6273)] = { + [sym_identifier] = ACTIONS(8287), + [sym_newline] = ACTIONS(8289), + [anon_sym_COLON] = ACTIONS(8289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8287), + [aux_sym_frm_property_statement_token1] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8287), + [anon_sym_BANG] = ACTIONS(8289), + [aux_sym__attribute_identifier_token1] = ACTIONS(8287), + [aux_sym_option_statement_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8287), + [aux_sym_preprocessor_const_token1] = ACTIONS(8287), + [sym_static_modifier] = ACTIONS(8287), + [sym__dim_keyword] = ACTIONS(8287), + [sym__redim_keyword] = ACTIONS(8287), + [aux_sym_get_accessor_token1] = ACTIONS(8287), + [aux_sym_set_accessor_token1] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8289), + [aux_sym_const_declaration_token1] = ACTIONS(8287), + [anon_sym_LPAREN] = ACTIONS(8289), + [aux_sym_as_type_clause_token2] = ACTIONS(8287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8287), + [aux_sym_visibility_token1] = ACTIONS(8287), + [aux_sym_visibility_token2] = ACTIONS(8287), + [aux_sym_elseif_fragment_token1] = ACTIONS(8287), + [aux_sym_else_fragment_token1] = ACTIONS(8287), + [aux_sym_select_statement_token1] = ACTIONS(8287), + [aux_sym__for_header_token1] = ACTIONS(8287), + [aux_sym_do_statement_token1] = ACTIONS(8287), + [aux_sym_do_statement_token2] = ACTIONS(8287), + [aux_sym_do_condition_token1] = ACTIONS(8287), + [aux_sym_with_statement_token1] = ACTIONS(8287), + [aux_sym_exit_statement_token1] = ACTIONS(8287), + [sym_end_statement] = ACTIONS(8289), + [aux_sym_on_goto_statement_token1] = ACTIONS(8287), + [aux_sym_on_goto_statement_token2] = ACTIONS(8287), + [aux_sym_on_error_statement_token2] = ACTIONS(8287), + [sym__ambiguous_redim_statement] = ACTIONS(8289), + [aux_sym_erase_statement_token1] = ACTIONS(8287), + [aux_sym_open_statement_token1] = ACTIONS(8287), + [aux_sym_file_mode_token2] = ACTIONS(8287), + [aux_sym_file_access_token2] = ACTIONS(8287), + [aux_sym_file_lock_token2] = ACTIONS(8287), + [aux_sym_print_statement_token1] = ACTIONS(8287), + [anon_sym_PLUS] = ACTIONS(8289), + [anon_sym_DASH] = ACTIONS(8287), + [anon_sym_QMARK] = ACTIONS(8289), + [aux_sym_close_statement_token1] = ACTIONS(8287), + [aux_sym_put_statement_token1] = ACTIONS(8287), + [aux_sym_unlock_statement_token1] = ACTIONS(8287), + [aux_sym_seek_statement_token1] = ACTIONS(8287), + [sym_reset_statement] = ACTIONS(8287), + [aux_sym_raise_event_statement_token1] = ACTIONS(8287), + [sym_stop_statement] = ACTIONS(8287), + [sym_beep_statement] = ACTIONS(8287), + [aux_sym_unload_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token2] = ACTIONS(8287), + [aux_sym_def_type_statement_token3] = ACTIONS(8287), + [aux_sym_def_type_statement_token4] = ACTIONS(8287), + [aux_sym_def_type_statement_token5] = ACTIONS(8287), + [aux_sym_def_type_statement_token6] = ACTIONS(8287), + [aux_sym_def_type_statement_token7] = ACTIONS(8287), + [aux_sym_def_type_statement_token8] = ACTIONS(8287), + [aux_sym_def_type_statement_token9] = ACTIONS(8287), + [aux_sym_def_type_statement_token10] = ACTIONS(8287), + [aux_sym_def_type_statement_token11] = ACTIONS(8287), + [aux_sym_def_type_statement_token12] = ACTIONS(8287), + [aux_sym_def_type_statement_token13] = ACTIONS(8287), + [aux_sym_def_type_statement_token14] = ACTIONS(8287), + [aux_sym_call_statement_token1] = ACTIONS(8287), + [sym__ambiguous_call_statement] = ACTIONS(8287), + [aux_sym_addressof_expression_token1] = ACTIONS(8287), + [aux_sym_type_of_expression_token1] = ACTIONS(8287), + [aux_sym_unary_expression_token1] = ACTIONS(8287), + [sym_string_literal] = ACTIONS(8289), + [sym_number_literal] = ACTIONS(8289), + [aux_sym_boolean_literal_token1] = ACTIONS(8287), + [aux_sym_boolean_literal_token2] = ACTIONS(8287), + [sym_nothing_literal] = ACTIONS(8287), + [sym_null_literal] = ACTIONS(8287), + [sym_empty_literal] = ACTIONS(8287), + [sym_date_literal] = ACTIONS(8289), + [anon_sym_POUND] = ACTIONS(8287), + }, + [STATE(6274)] = { + [sym_identifier] = ACTIONS(8776), + [sym_newline] = ACTIONS(8778), + [anon_sym_COLON] = ACTIONS(8778), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8776), + [aux_sym_frm_property_statement_token1] = ACTIONS(8776), + [anon_sym_DOT] = ACTIONS(8776), + [anon_sym_BANG] = ACTIONS(8778), + [aux_sym__attribute_identifier_token1] = ACTIONS(8776), + [aux_sym_option_statement_token3] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8776), + [aux_sym_preprocessor_const_token1] = ACTIONS(8776), + [sym_static_modifier] = ACTIONS(8776), + [sym__dim_keyword] = ACTIONS(8776), + [sym__redim_keyword] = ACTIONS(8776), + [aux_sym_get_accessor_token1] = ACTIONS(8776), + [aux_sym_set_accessor_token1] = ACTIONS(8776), + [anon_sym_COMMA] = ACTIONS(8778), + [aux_sym_const_declaration_token1] = ACTIONS(8776), + [anon_sym_LPAREN] = ACTIONS(8778), + [aux_sym_as_type_clause_token2] = ACTIONS(8776), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8776), + [aux_sym_visibility_token1] = ACTIONS(8776), + [aux_sym_visibility_token2] = ACTIONS(8776), + [aux_sym_elseif_fragment_token1] = ACTIONS(8776), + [aux_sym_else_fragment_token1] = ACTIONS(8776), + [aux_sym_select_statement_token1] = ACTIONS(8776), + [aux_sym_select_statement_token2] = ACTIONS(8776), + [aux_sym__for_header_token1] = ACTIONS(8776), + [aux_sym_do_statement_token1] = ACTIONS(8776), + [aux_sym_do_condition_token1] = ACTIONS(8776), + [aux_sym_with_statement_token1] = ACTIONS(8776), + [aux_sym_exit_statement_token1] = ACTIONS(8776), + [sym_end_statement] = ACTIONS(8778), + [aux_sym_on_goto_statement_token1] = ACTIONS(8776), + [aux_sym_on_goto_statement_token2] = ACTIONS(8776), + [aux_sym_on_error_statement_token2] = ACTIONS(8776), + [sym__ambiguous_redim_statement] = ACTIONS(8778), + [aux_sym_erase_statement_token1] = ACTIONS(8776), + [aux_sym_open_statement_token1] = ACTIONS(8776), + [aux_sym_file_mode_token2] = ACTIONS(8776), + [aux_sym_file_access_token2] = ACTIONS(8776), + [aux_sym_file_lock_token2] = ACTIONS(8776), + [aux_sym_print_statement_token1] = ACTIONS(8776), + [anon_sym_PLUS] = ACTIONS(8778), + [anon_sym_DASH] = ACTIONS(8776), + [anon_sym_QMARK] = ACTIONS(8778), + [aux_sym_close_statement_token1] = ACTIONS(8776), + [aux_sym_put_statement_token1] = ACTIONS(8776), + [aux_sym_unlock_statement_token1] = ACTIONS(8776), + [aux_sym_seek_statement_token1] = ACTIONS(8776), + [sym_reset_statement] = ACTIONS(8776), + [aux_sym_raise_event_statement_token1] = ACTIONS(8776), + [sym_stop_statement] = ACTIONS(8776), + [sym_beep_statement] = ACTIONS(8776), + [aux_sym_unload_statement_token1] = ACTIONS(8776), + [aux_sym_def_type_statement_token1] = ACTIONS(8776), + [aux_sym_def_type_statement_token2] = ACTIONS(8776), + [aux_sym_def_type_statement_token3] = ACTIONS(8776), + [aux_sym_def_type_statement_token4] = ACTIONS(8776), + [aux_sym_def_type_statement_token5] = ACTIONS(8776), + [aux_sym_def_type_statement_token6] = ACTIONS(8776), + [aux_sym_def_type_statement_token7] = ACTIONS(8776), + [aux_sym_def_type_statement_token8] = ACTIONS(8776), + [aux_sym_def_type_statement_token9] = ACTIONS(8776), + [aux_sym_def_type_statement_token10] = ACTIONS(8776), + [aux_sym_def_type_statement_token11] = ACTIONS(8776), + [aux_sym_def_type_statement_token12] = ACTIONS(8776), + [aux_sym_def_type_statement_token13] = ACTIONS(8776), + [aux_sym_def_type_statement_token14] = ACTIONS(8776), + [aux_sym_call_statement_token1] = ACTIONS(8776), + [sym__ambiguous_call_statement] = ACTIONS(8776), + [aux_sym_addressof_expression_token1] = ACTIONS(8776), + [aux_sym_type_of_expression_token1] = ACTIONS(8776), + [aux_sym_unary_expression_token1] = ACTIONS(8776), + [sym_string_literal] = ACTIONS(8778), + [sym_number_literal] = ACTIONS(8778), + [aux_sym_boolean_literal_token1] = ACTIONS(8776), + [aux_sym_boolean_literal_token2] = ACTIONS(8776), + [sym_nothing_literal] = ACTIONS(8776), + [sym_null_literal] = ACTIONS(8776), + [sym_empty_literal] = ACTIONS(8776), + [sym_date_literal] = ACTIONS(8778), + [anon_sym_POUND] = ACTIONS(8776), + }, + [STATE(6275)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6276), + [sym_identifier] = ACTIONS(8692), + [sym_newline] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(10837), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8692), + [aux_sym_frm_property_statement_token1] = ACTIONS(8692), + [anon_sym_DOT] = ACTIONS(8692), + [anon_sym_BANG] = ACTIONS(8694), + [aux_sym__attribute_identifier_token1] = ACTIONS(8692), + [aux_sym_option_statement_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8692), + [aux_sym_preprocessor_const_token1] = ACTIONS(8692), + [sym_static_modifier] = ACTIONS(8692), + [sym__dim_keyword] = ACTIONS(8692), + [sym__redim_keyword] = ACTIONS(8692), + [aux_sym_get_accessor_token1] = ACTIONS(8692), + [aux_sym_set_accessor_token1] = ACTIONS(8692), + [aux_sym_const_declaration_token1] = ACTIONS(8692), + [anon_sym_LPAREN] = ACTIONS(8694), + [aux_sym_as_type_clause_token2] = ACTIONS(8692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8692), + [aux_sym_visibility_token1] = ACTIONS(8692), + [aux_sym_visibility_token2] = ACTIONS(8692), + [aux_sym_elseif_fragment_token1] = ACTIONS(8692), + [aux_sym_else_fragment_token1] = ACTIONS(11101), + [aux_sym_select_statement_token1] = ACTIONS(8692), + [aux_sym__for_header_token1] = ACTIONS(8692), + [aux_sym_do_statement_token1] = ACTIONS(8692), + [aux_sym_do_condition_token1] = ACTIONS(8692), + [aux_sym_with_statement_token1] = ACTIONS(8692), + [aux_sym_exit_statement_token1] = ACTIONS(8692), + [sym_end_statement] = ACTIONS(8694), + [aux_sym_on_goto_statement_token1] = ACTIONS(8692), + [aux_sym_on_goto_statement_token2] = ACTIONS(8692), + [aux_sym_on_error_statement_token2] = ACTIONS(8692), + [sym__ambiguous_redim_statement] = ACTIONS(8694), + [aux_sym_erase_statement_token1] = ACTIONS(8692), + [aux_sym_open_statement_token1] = ACTIONS(8692), + [aux_sym_file_mode_token2] = ACTIONS(8692), + [aux_sym_file_access_token2] = ACTIONS(8692), + [aux_sym_file_lock_token2] = ACTIONS(8692), + [aux_sym_print_statement_token1] = ACTIONS(8692), + [anon_sym_PLUS] = ACTIONS(8694), + [anon_sym_DASH] = ACTIONS(8692), + [anon_sym_QMARK] = ACTIONS(8694), + [aux_sym_close_statement_token1] = ACTIONS(8692), + [aux_sym_put_statement_token1] = ACTIONS(8692), + [aux_sym_unlock_statement_token1] = ACTIONS(8692), + [aux_sym_seek_statement_token1] = ACTIONS(8692), + [sym_reset_statement] = ACTIONS(8692), + [aux_sym_raise_event_statement_token1] = ACTIONS(8692), + [sym_stop_statement] = ACTIONS(8692), + [sym_beep_statement] = ACTIONS(8692), + [aux_sym_unload_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token2] = ACTIONS(8692), + [aux_sym_def_type_statement_token3] = ACTIONS(8692), + [aux_sym_def_type_statement_token4] = ACTIONS(8692), + [aux_sym_def_type_statement_token5] = ACTIONS(8692), + [aux_sym_def_type_statement_token6] = ACTIONS(8692), + [aux_sym_def_type_statement_token7] = ACTIONS(8692), + [aux_sym_def_type_statement_token8] = ACTIONS(8692), + [aux_sym_def_type_statement_token9] = ACTIONS(8692), + [aux_sym_def_type_statement_token10] = ACTIONS(8692), + [aux_sym_def_type_statement_token11] = ACTIONS(8692), + [aux_sym_def_type_statement_token12] = ACTIONS(8692), + [aux_sym_def_type_statement_token13] = ACTIONS(8692), + [aux_sym_def_type_statement_token14] = ACTIONS(8692), + [aux_sym_call_statement_token1] = ACTIONS(8692), + [sym__ambiguous_call_statement] = ACTIONS(8692), + [aux_sym_addressof_expression_token1] = ACTIONS(8692), + [aux_sym_type_of_expression_token1] = ACTIONS(8692), + [aux_sym_unary_expression_token1] = ACTIONS(8692), + [sym_string_literal] = ACTIONS(8694), + [sym_number_literal] = ACTIONS(8694), + [aux_sym_boolean_literal_token1] = ACTIONS(8692), + [aux_sym_boolean_literal_token2] = ACTIONS(8692), + [sym_nothing_literal] = ACTIONS(8692), + [sym_null_literal] = ACTIONS(8692), + [sym_empty_literal] = ACTIONS(8692), + [sym_date_literal] = ACTIONS(8694), + [anon_sym_POUND] = ACTIONS(8692), + }, + [STATE(6276)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6251), + [sym_identifier] = ACTIONS(8772), + [sym_newline] = ACTIONS(8774), + [anon_sym_COLON] = ACTIONS(8774), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8772), + [aux_sym_frm_property_statement_token1] = ACTIONS(8772), + [anon_sym_DOT] = ACTIONS(8772), + [anon_sym_BANG] = ACTIONS(8774), + [aux_sym__attribute_identifier_token1] = ACTIONS(8772), + [aux_sym_option_statement_token3] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8772), + [aux_sym_preprocessor_const_token1] = ACTIONS(8772), + [sym_static_modifier] = ACTIONS(8772), + [sym__dim_keyword] = ACTIONS(8772), + [sym__redim_keyword] = ACTIONS(8772), + [aux_sym_get_accessor_token1] = ACTIONS(8772), + [aux_sym_set_accessor_token1] = ACTIONS(8772), + [aux_sym_const_declaration_token1] = ACTIONS(8772), + [anon_sym_LPAREN] = ACTIONS(8774), + [aux_sym_as_type_clause_token2] = ACTIONS(8772), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8772), + [aux_sym_visibility_token1] = ACTIONS(8772), + [aux_sym_visibility_token2] = ACTIONS(8772), + [aux_sym_elseif_fragment_token1] = ACTIONS(8772), + [aux_sym_else_fragment_token1] = ACTIONS(8772), + [aux_sym_select_statement_token1] = ACTIONS(8772), + [aux_sym__for_header_token1] = ACTIONS(8772), + [aux_sym_do_statement_token1] = ACTIONS(8772), + [aux_sym_do_condition_token1] = ACTIONS(8772), + [aux_sym_with_statement_token1] = ACTIONS(8772), + [aux_sym_exit_statement_token1] = ACTIONS(8772), + [sym_end_statement] = ACTIONS(8774), + [aux_sym_on_goto_statement_token1] = ACTIONS(8772), + [aux_sym_on_goto_statement_token2] = ACTIONS(8772), + [aux_sym_on_error_statement_token2] = ACTIONS(8772), + [sym__ambiguous_redim_statement] = ACTIONS(8774), + [aux_sym_erase_statement_token1] = ACTIONS(8772), + [aux_sym_open_statement_token1] = ACTIONS(8772), + [aux_sym_file_mode_token2] = ACTIONS(8772), + [aux_sym_file_access_token2] = ACTIONS(8772), + [aux_sym_file_lock_token2] = ACTIONS(8772), + [aux_sym_print_statement_token1] = ACTIONS(8772), + [anon_sym_PLUS] = ACTIONS(8774), + [anon_sym_DASH] = ACTIONS(8772), + [anon_sym_QMARK] = ACTIONS(8774), + [aux_sym_close_statement_token1] = ACTIONS(8772), + [aux_sym_put_statement_token1] = ACTIONS(8772), + [aux_sym_unlock_statement_token1] = ACTIONS(8772), + [aux_sym_seek_statement_token1] = ACTIONS(8772), + [sym_reset_statement] = ACTIONS(8772), + [aux_sym_raise_event_statement_token1] = ACTIONS(8772), + [sym_stop_statement] = ACTIONS(8772), + [sym_beep_statement] = ACTIONS(8772), + [aux_sym_unload_statement_token1] = ACTIONS(8772), + [aux_sym_def_type_statement_token1] = ACTIONS(8772), + [aux_sym_def_type_statement_token2] = ACTIONS(8772), + [aux_sym_def_type_statement_token3] = ACTIONS(8772), + [aux_sym_def_type_statement_token4] = ACTIONS(8772), + [aux_sym_def_type_statement_token5] = ACTIONS(8772), + [aux_sym_def_type_statement_token6] = ACTIONS(8772), + [aux_sym_def_type_statement_token7] = ACTIONS(8772), + [aux_sym_def_type_statement_token8] = ACTIONS(8772), + [aux_sym_def_type_statement_token9] = ACTIONS(8772), + [aux_sym_def_type_statement_token10] = ACTIONS(8772), + [aux_sym_def_type_statement_token11] = ACTIONS(8772), + [aux_sym_def_type_statement_token12] = ACTIONS(8772), + [aux_sym_def_type_statement_token13] = ACTIONS(8772), + [aux_sym_def_type_statement_token14] = ACTIONS(8772), + [aux_sym_call_statement_token1] = ACTIONS(8772), + [sym__ambiguous_call_statement] = ACTIONS(8772), + [aux_sym_addressof_expression_token1] = ACTIONS(8772), + [aux_sym_type_of_expression_token1] = ACTIONS(8772), + [aux_sym_unary_expression_token1] = ACTIONS(8772), + [sym_string_literal] = ACTIONS(8774), + [sym_number_literal] = ACTIONS(8774), + [aux_sym_boolean_literal_token1] = ACTIONS(8772), + [aux_sym_boolean_literal_token2] = ACTIONS(8772), + [sym_nothing_literal] = ACTIONS(8772), + [sym_null_literal] = ACTIONS(8772), + [sym_empty_literal] = ACTIONS(8772), + [sym_date_literal] = ACTIONS(8774), + [anon_sym_POUND] = ACTIONS(8772), + }, + [STATE(6277)] = { + [sym_identifier] = ACTIONS(8443), + [sym_newline] = ACTIONS(8445), + [anon_sym_COLON] = ACTIONS(8445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8443), + [aux_sym_frm_property_statement_token1] = ACTIONS(8443), + [anon_sym_DOT] = ACTIONS(8443), + [anon_sym_BANG] = ACTIONS(8445), + [aux_sym__attribute_identifier_token1] = ACTIONS(8443), + [aux_sym_option_statement_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8443), + [aux_sym_preprocessor_const_token1] = ACTIONS(8443), + [sym_static_modifier] = ACTIONS(8443), + [sym__dim_keyword] = ACTIONS(8443), + [sym__redim_keyword] = ACTIONS(8443), + [aux_sym_get_accessor_token1] = ACTIONS(8443), + [aux_sym_set_accessor_token1] = ACTIONS(8443), + [anon_sym_COMMA] = ACTIONS(8445), + [aux_sym_const_declaration_token1] = ACTIONS(8443), + [anon_sym_LPAREN] = ACTIONS(8445), + [aux_sym_as_type_clause_token2] = ACTIONS(8443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8443), + [aux_sym_visibility_token1] = ACTIONS(8443), + [aux_sym_visibility_token2] = ACTIONS(8443), + [aux_sym_elseif_fragment_token1] = ACTIONS(8443), + [aux_sym_else_fragment_token1] = ACTIONS(8443), + [aux_sym_select_statement_token1] = ACTIONS(8443), + [aux_sym__for_header_token1] = ACTIONS(8443), + [aux_sym_do_statement_token1] = ACTIONS(8443), + [aux_sym_do_condition_token1] = ACTIONS(8443), + [aux_sym_while_statement_token1] = ACTIONS(8443), + [aux_sym_with_statement_token1] = ACTIONS(8443), + [aux_sym_exit_statement_token1] = ACTIONS(8443), + [sym_end_statement] = ACTIONS(8445), + [aux_sym_on_goto_statement_token1] = ACTIONS(8443), + [aux_sym_on_goto_statement_token2] = ACTIONS(8443), + [aux_sym_on_error_statement_token2] = ACTIONS(8443), + [sym__ambiguous_redim_statement] = ACTIONS(8445), + [aux_sym_erase_statement_token1] = ACTIONS(8443), + [aux_sym_open_statement_token1] = ACTIONS(8443), + [aux_sym_file_mode_token2] = ACTIONS(8443), + [aux_sym_file_access_token2] = ACTIONS(8443), + [aux_sym_file_lock_token2] = ACTIONS(8443), + [aux_sym_print_statement_token1] = ACTIONS(8443), + [anon_sym_PLUS] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8443), + [anon_sym_QMARK] = ACTIONS(8445), + [aux_sym_close_statement_token1] = ACTIONS(8443), + [aux_sym_put_statement_token1] = ACTIONS(8443), + [aux_sym_unlock_statement_token1] = ACTIONS(8443), + [aux_sym_seek_statement_token1] = ACTIONS(8443), + [sym_reset_statement] = ACTIONS(8443), + [aux_sym_raise_event_statement_token1] = ACTIONS(8443), + [sym_stop_statement] = ACTIONS(8443), + [sym_beep_statement] = ACTIONS(8443), + [aux_sym_unload_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token2] = ACTIONS(8443), + [aux_sym_def_type_statement_token3] = ACTIONS(8443), + [aux_sym_def_type_statement_token4] = ACTIONS(8443), + [aux_sym_def_type_statement_token5] = ACTIONS(8443), + [aux_sym_def_type_statement_token6] = ACTIONS(8443), + [aux_sym_def_type_statement_token7] = ACTIONS(8443), + [aux_sym_def_type_statement_token8] = ACTIONS(8443), + [aux_sym_def_type_statement_token9] = ACTIONS(8443), + [aux_sym_def_type_statement_token10] = ACTIONS(8443), + [aux_sym_def_type_statement_token11] = ACTIONS(8443), + [aux_sym_def_type_statement_token12] = ACTIONS(8443), + [aux_sym_def_type_statement_token13] = ACTIONS(8443), + [aux_sym_def_type_statement_token14] = ACTIONS(8443), + [aux_sym_call_statement_token1] = ACTIONS(8443), + [sym__ambiguous_call_statement] = ACTIONS(8443), + [aux_sym_addressof_expression_token1] = ACTIONS(8443), + [aux_sym_type_of_expression_token1] = ACTIONS(8443), + [aux_sym_unary_expression_token1] = ACTIONS(8443), + [sym_string_literal] = ACTIONS(8445), + [sym_number_literal] = ACTIONS(8445), + [aux_sym_boolean_literal_token1] = ACTIONS(8443), + [aux_sym_boolean_literal_token2] = ACTIONS(8443), + [sym_nothing_literal] = ACTIONS(8443), + [sym_null_literal] = ACTIONS(8443), + [sym_empty_literal] = ACTIONS(8443), + [sym_date_literal] = ACTIONS(8445), + [anon_sym_POUND] = ACTIONS(8443), + }, + [STATE(6278)] = { + [sym_identifier] = ACTIONS(8729), + [sym_newline] = ACTIONS(8731), + [anon_sym_COLON] = ACTIONS(8731), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8729), + [aux_sym_frm_property_statement_token1] = ACTIONS(8729), + [anon_sym_DOT] = ACTIONS(8729), + [anon_sym_BANG] = ACTIONS(8731), + [aux_sym__attribute_identifier_token1] = ACTIONS(8729), + [aux_sym_option_statement_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8729), + [aux_sym_preprocessor_const_token1] = ACTIONS(8729), + [sym_static_modifier] = ACTIONS(8729), + [sym__dim_keyword] = ACTIONS(8729), + [sym__redim_keyword] = ACTIONS(8729), + [aux_sym_get_accessor_token1] = ACTIONS(8729), + [aux_sym_set_accessor_token1] = ACTIONS(8729), + [aux_sym_const_declaration_token1] = ACTIONS(8729), + [anon_sym_LPAREN] = ACTIONS(8731), + [aux_sym_as_type_clause_token2] = ACTIONS(8729), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8729), + [aux_sym_visibility_token1] = ACTIONS(8729), + [aux_sym_visibility_token2] = ACTIONS(8729), + [aux_sym_elseif_fragment_token1] = ACTIONS(8729), + [aux_sym_else_fragment_token1] = ACTIONS(8729), + [aux_sym_select_statement_token1] = ACTIONS(8729), + [aux_sym_select_statement_token2] = ACTIONS(8729), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8729), + [aux_sym__for_header_token1] = ACTIONS(8729), + [aux_sym_do_statement_token1] = ACTIONS(8729), + [aux_sym_do_condition_token1] = ACTIONS(8729), + [aux_sym_with_statement_token1] = ACTIONS(8729), + [aux_sym_exit_statement_token1] = ACTIONS(8729), + [sym_end_statement] = ACTIONS(8731), + [aux_sym_on_goto_statement_token1] = ACTIONS(8729), + [aux_sym_on_goto_statement_token2] = ACTIONS(8729), + [aux_sym_on_error_statement_token2] = ACTIONS(8729), + [sym__ambiguous_redim_statement] = ACTIONS(8731), + [aux_sym_erase_statement_token1] = ACTIONS(8729), + [aux_sym_open_statement_token1] = ACTIONS(8729), + [aux_sym_file_mode_token2] = ACTIONS(8729), + [aux_sym_file_access_token2] = ACTIONS(8729), + [aux_sym_file_lock_token2] = ACTIONS(8729), + [aux_sym_print_statement_token1] = ACTIONS(8729), + [anon_sym_PLUS] = ACTIONS(8731), + [anon_sym_DASH] = ACTIONS(8729), + [anon_sym_QMARK] = ACTIONS(8731), + [aux_sym_close_statement_token1] = ACTIONS(8729), + [aux_sym_put_statement_token1] = ACTIONS(8729), + [aux_sym_unlock_statement_token1] = ACTIONS(8729), + [aux_sym_seek_statement_token1] = ACTIONS(8729), + [sym_reset_statement] = ACTIONS(8729), + [aux_sym_raise_event_statement_token1] = ACTIONS(8729), + [sym_stop_statement] = ACTIONS(8729), + [sym_beep_statement] = ACTIONS(8729), + [aux_sym_unload_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token2] = ACTIONS(8729), + [aux_sym_def_type_statement_token3] = ACTIONS(8729), + [aux_sym_def_type_statement_token4] = ACTIONS(8729), + [aux_sym_def_type_statement_token5] = ACTIONS(8729), + [aux_sym_def_type_statement_token6] = ACTIONS(8729), + [aux_sym_def_type_statement_token7] = ACTIONS(8729), + [aux_sym_def_type_statement_token8] = ACTIONS(8729), + [aux_sym_def_type_statement_token9] = ACTIONS(8729), + [aux_sym_def_type_statement_token10] = ACTIONS(8729), + [aux_sym_def_type_statement_token11] = ACTIONS(8729), + [aux_sym_def_type_statement_token12] = ACTIONS(8729), + [aux_sym_def_type_statement_token13] = ACTIONS(8729), + [aux_sym_def_type_statement_token14] = ACTIONS(8729), + [aux_sym_call_statement_token1] = ACTIONS(8729), + [sym__ambiguous_call_statement] = ACTIONS(8729), + [aux_sym_addressof_expression_token1] = ACTIONS(8729), + [aux_sym_type_of_expression_token1] = ACTIONS(8729), + [aux_sym_unary_expression_token1] = ACTIONS(8729), + [sym_string_literal] = ACTIONS(8731), + [sym_number_literal] = ACTIONS(8731), + [aux_sym_boolean_literal_token1] = ACTIONS(8729), + [aux_sym_boolean_literal_token2] = ACTIONS(8729), + [sym_nothing_literal] = ACTIONS(8729), + [sym_null_literal] = ACTIONS(8729), + [sym_empty_literal] = ACTIONS(8729), + [sym_date_literal] = ACTIONS(8731), + [anon_sym_POUND] = ACTIONS(8729), + }, + [STATE(6279)] = { + [sym_do_condition] = STATE(7135), + [sym_identifier] = ACTIONS(8213), + [sym_newline] = ACTIONS(8215), + [anon_sym_COLON] = ACTIONS(8215), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8213), + [aux_sym_frm_property_statement_token1] = ACTIONS(8213), + [anon_sym_DOT] = ACTIONS(8213), + [anon_sym_BANG] = ACTIONS(8215), + [aux_sym__attribute_identifier_token1] = ACTIONS(8213), + [aux_sym_option_statement_token3] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8213), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8213), + [aux_sym_preprocessor_const_token1] = ACTIONS(8213), + [sym_static_modifier] = ACTIONS(8213), + [sym__dim_keyword] = ACTIONS(8213), + [sym__redim_keyword] = ACTIONS(8213), + [aux_sym_get_accessor_token1] = ACTIONS(8213), + [aux_sym_set_accessor_token1] = ACTIONS(8213), + [aux_sym_const_declaration_token1] = ACTIONS(8213), + [anon_sym_LPAREN] = ACTIONS(8215), + [aux_sym_as_type_clause_token2] = ACTIONS(8213), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8213), + [aux_sym_visibility_token1] = ACTIONS(8213), + [aux_sym_visibility_token2] = ACTIONS(8213), + [aux_sym_elseif_fragment_token1] = ACTIONS(8213), + [aux_sym_else_fragment_token1] = ACTIONS(8213), + [aux_sym_select_statement_token1] = ACTIONS(8213), + [aux_sym__for_header_token1] = ACTIONS(8213), + [aux_sym_do_statement_token1] = ACTIONS(8213), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8213), + [aux_sym_exit_statement_token1] = ACTIONS(8213), + [sym_end_statement] = ACTIONS(8215), + [aux_sym_on_goto_statement_token1] = ACTIONS(8213), + [aux_sym_on_goto_statement_token2] = ACTIONS(8213), + [aux_sym_on_error_statement_token2] = ACTIONS(8213), + [sym__ambiguous_redim_statement] = ACTIONS(8215), + [aux_sym_erase_statement_token1] = ACTIONS(8213), + [aux_sym_open_statement_token1] = ACTIONS(8213), + [aux_sym_file_mode_token2] = ACTIONS(8213), + [aux_sym_file_access_token2] = ACTIONS(8213), + [aux_sym_file_lock_token2] = ACTIONS(8213), + [aux_sym_print_statement_token1] = ACTIONS(8213), + [anon_sym_PLUS] = ACTIONS(8215), + [anon_sym_DASH] = ACTIONS(8213), + [anon_sym_QMARK] = ACTIONS(8215), + [aux_sym_close_statement_token1] = ACTIONS(8213), + [aux_sym_put_statement_token1] = ACTIONS(8213), + [aux_sym_unlock_statement_token1] = ACTIONS(8213), + [aux_sym_seek_statement_token1] = ACTIONS(8213), + [sym_reset_statement] = ACTIONS(8213), + [aux_sym_raise_event_statement_token1] = ACTIONS(8213), + [sym_stop_statement] = ACTIONS(8213), + [sym_beep_statement] = ACTIONS(8213), + [aux_sym_unload_statement_token1] = ACTIONS(8213), + [aux_sym_def_type_statement_token1] = ACTIONS(8213), + [aux_sym_def_type_statement_token2] = ACTIONS(8213), + [aux_sym_def_type_statement_token3] = ACTIONS(8213), + [aux_sym_def_type_statement_token4] = ACTIONS(8213), + [aux_sym_def_type_statement_token5] = ACTIONS(8213), + [aux_sym_def_type_statement_token6] = ACTIONS(8213), + [aux_sym_def_type_statement_token7] = ACTIONS(8213), + [aux_sym_def_type_statement_token8] = ACTIONS(8213), + [aux_sym_def_type_statement_token9] = ACTIONS(8213), + [aux_sym_def_type_statement_token10] = ACTIONS(8213), + [aux_sym_def_type_statement_token11] = ACTIONS(8213), + [aux_sym_def_type_statement_token12] = ACTIONS(8213), + [aux_sym_def_type_statement_token13] = ACTIONS(8213), + [aux_sym_def_type_statement_token14] = ACTIONS(8213), + [aux_sym_call_statement_token1] = ACTIONS(8213), + [sym__ambiguous_call_statement] = ACTIONS(8213), + [aux_sym_addressof_expression_token1] = ACTIONS(8213), + [aux_sym_type_of_expression_token1] = ACTIONS(8213), + [aux_sym_unary_expression_token1] = ACTIONS(8213), + [sym_string_literal] = ACTIONS(8215), + [sym_number_literal] = ACTIONS(8215), + [aux_sym_boolean_literal_token1] = ACTIONS(8213), + [aux_sym_boolean_literal_token2] = ACTIONS(8213), + [sym_nothing_literal] = ACTIONS(8213), + [sym_null_literal] = ACTIONS(8213), + [sym_empty_literal] = ACTIONS(8213), + [sym_date_literal] = ACTIONS(8215), + [anon_sym_POUND] = ACTIONS(8213), + }, + [STATE(6280)] = { + [sym_do_condition] = STATE(7214), + [sym_identifier] = ACTIONS(8415), + [sym_newline] = ACTIONS(8417), + [anon_sym_COLON] = ACTIONS(8417), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8415), + [aux_sym_frm_property_statement_token1] = ACTIONS(8415), + [anon_sym_DOT] = ACTIONS(8415), + [anon_sym_BANG] = ACTIONS(8417), + [aux_sym__attribute_identifier_token1] = ACTIONS(8415), + [aux_sym_option_statement_token3] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8415), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8415), + [aux_sym_preprocessor_const_token1] = ACTIONS(8415), + [sym_static_modifier] = ACTIONS(8415), + [sym__dim_keyword] = ACTIONS(8415), + [sym__redim_keyword] = ACTIONS(8415), + [aux_sym_get_accessor_token1] = ACTIONS(8415), + [aux_sym_set_accessor_token1] = ACTIONS(8415), + [aux_sym_const_declaration_token1] = ACTIONS(8415), + [anon_sym_LPAREN] = ACTIONS(8417), + [aux_sym_as_type_clause_token2] = ACTIONS(8415), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8415), + [aux_sym_visibility_token1] = ACTIONS(8415), + [aux_sym_visibility_token2] = ACTIONS(8415), + [aux_sym_elseif_fragment_token1] = ACTIONS(8415), + [aux_sym_else_fragment_token1] = ACTIONS(8415), + [aux_sym_select_statement_token1] = ACTIONS(8415), + [aux_sym__for_header_token1] = ACTIONS(8415), + [aux_sym_do_statement_token1] = ACTIONS(8415), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8415), + [aux_sym_exit_statement_token1] = ACTIONS(8415), + [sym_end_statement] = ACTIONS(8417), + [aux_sym_on_goto_statement_token1] = ACTIONS(8415), + [aux_sym_on_goto_statement_token2] = ACTIONS(8415), + [aux_sym_on_error_statement_token2] = ACTIONS(8415), + [sym__ambiguous_redim_statement] = ACTIONS(8417), + [aux_sym_erase_statement_token1] = ACTIONS(8415), + [aux_sym_open_statement_token1] = ACTIONS(8415), + [aux_sym_file_mode_token2] = ACTIONS(8415), + [aux_sym_file_access_token2] = ACTIONS(8415), + [aux_sym_file_lock_token2] = ACTIONS(8415), + [aux_sym_print_statement_token1] = ACTIONS(8415), + [anon_sym_PLUS] = ACTIONS(8417), + [anon_sym_DASH] = ACTIONS(8415), + [anon_sym_QMARK] = ACTIONS(8417), + [aux_sym_close_statement_token1] = ACTIONS(8415), + [aux_sym_put_statement_token1] = ACTIONS(8415), + [aux_sym_unlock_statement_token1] = ACTIONS(8415), + [aux_sym_seek_statement_token1] = ACTIONS(8415), + [sym_reset_statement] = ACTIONS(8415), + [aux_sym_raise_event_statement_token1] = ACTIONS(8415), + [sym_stop_statement] = ACTIONS(8415), + [sym_beep_statement] = ACTIONS(8415), + [aux_sym_unload_statement_token1] = ACTIONS(8415), + [aux_sym_def_type_statement_token1] = ACTIONS(8415), + [aux_sym_def_type_statement_token2] = ACTIONS(8415), + [aux_sym_def_type_statement_token3] = ACTIONS(8415), + [aux_sym_def_type_statement_token4] = ACTIONS(8415), + [aux_sym_def_type_statement_token5] = ACTIONS(8415), + [aux_sym_def_type_statement_token6] = ACTIONS(8415), + [aux_sym_def_type_statement_token7] = ACTIONS(8415), + [aux_sym_def_type_statement_token8] = ACTIONS(8415), + [aux_sym_def_type_statement_token9] = ACTIONS(8415), + [aux_sym_def_type_statement_token10] = ACTIONS(8415), + [aux_sym_def_type_statement_token11] = ACTIONS(8415), + [aux_sym_def_type_statement_token12] = ACTIONS(8415), + [aux_sym_def_type_statement_token13] = ACTIONS(8415), + [aux_sym_def_type_statement_token14] = ACTIONS(8415), + [aux_sym_call_statement_token1] = ACTIONS(8415), + [sym__ambiguous_call_statement] = ACTIONS(8415), + [aux_sym_addressof_expression_token1] = ACTIONS(8415), + [aux_sym_type_of_expression_token1] = ACTIONS(8415), + [aux_sym_unary_expression_token1] = ACTIONS(8415), + [sym_string_literal] = ACTIONS(8417), + [sym_number_literal] = ACTIONS(8417), + [aux_sym_boolean_literal_token1] = ACTIONS(8415), + [aux_sym_boolean_literal_token2] = ACTIONS(8415), + [sym_nothing_literal] = ACTIONS(8415), + [sym_null_literal] = ACTIONS(8415), + [sym_empty_literal] = ACTIONS(8415), + [sym_date_literal] = ACTIONS(8417), + [anon_sym_POUND] = ACTIONS(8415), + }, + [STATE(6281)] = { + [sym_do_condition] = STATE(7145), + [sym_identifier] = ACTIONS(8217), + [sym_newline] = ACTIONS(8219), + [anon_sym_COLON] = ACTIONS(8219), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8217), + [aux_sym_frm_property_statement_token1] = ACTIONS(8217), + [anon_sym_DOT] = ACTIONS(8217), + [anon_sym_BANG] = ACTIONS(8219), + [aux_sym__attribute_identifier_token1] = ACTIONS(8217), + [aux_sym_option_statement_token3] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8217), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8217), + [aux_sym_preprocessor_const_token1] = ACTIONS(8217), + [sym_static_modifier] = ACTIONS(8217), + [sym__dim_keyword] = ACTIONS(8217), + [sym__redim_keyword] = ACTIONS(8217), + [aux_sym_get_accessor_token1] = ACTIONS(8217), + [aux_sym_set_accessor_token1] = ACTIONS(8217), + [aux_sym_const_declaration_token1] = ACTIONS(8217), + [anon_sym_LPAREN] = ACTIONS(8219), + [aux_sym_as_type_clause_token2] = ACTIONS(8217), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8217), + [aux_sym_visibility_token1] = ACTIONS(8217), + [aux_sym_visibility_token2] = ACTIONS(8217), + [aux_sym_elseif_fragment_token1] = ACTIONS(8217), + [aux_sym_else_fragment_token1] = ACTIONS(8217), + [aux_sym_select_statement_token1] = ACTIONS(8217), + [aux_sym__for_header_token1] = ACTIONS(8217), + [aux_sym_do_statement_token1] = ACTIONS(8217), + [aux_sym_do_condition_token1] = ACTIONS(10824), + [aux_sym_do_condition_token2] = ACTIONS(10824), + [aux_sym_with_statement_token1] = ACTIONS(8217), + [aux_sym_exit_statement_token1] = ACTIONS(8217), + [sym_end_statement] = ACTIONS(8219), + [aux_sym_on_goto_statement_token1] = ACTIONS(8217), + [aux_sym_on_goto_statement_token2] = ACTIONS(8217), + [aux_sym_on_error_statement_token2] = ACTIONS(8217), + [sym__ambiguous_redim_statement] = ACTIONS(8219), + [aux_sym_erase_statement_token1] = ACTIONS(8217), + [aux_sym_open_statement_token1] = ACTIONS(8217), + [aux_sym_file_mode_token2] = ACTIONS(8217), + [aux_sym_file_access_token2] = ACTIONS(8217), + [aux_sym_file_lock_token2] = ACTIONS(8217), + [aux_sym_print_statement_token1] = ACTIONS(8217), + [anon_sym_PLUS] = ACTIONS(8219), + [anon_sym_DASH] = ACTIONS(8217), + [anon_sym_QMARK] = ACTIONS(8219), + [aux_sym_close_statement_token1] = ACTIONS(8217), + [aux_sym_put_statement_token1] = ACTIONS(8217), + [aux_sym_unlock_statement_token1] = ACTIONS(8217), + [aux_sym_seek_statement_token1] = ACTIONS(8217), + [sym_reset_statement] = ACTIONS(8217), + [aux_sym_raise_event_statement_token1] = ACTIONS(8217), + [sym_stop_statement] = ACTIONS(8217), + [sym_beep_statement] = ACTIONS(8217), + [aux_sym_unload_statement_token1] = ACTIONS(8217), + [aux_sym_def_type_statement_token1] = ACTIONS(8217), + [aux_sym_def_type_statement_token2] = ACTIONS(8217), + [aux_sym_def_type_statement_token3] = ACTIONS(8217), + [aux_sym_def_type_statement_token4] = ACTIONS(8217), + [aux_sym_def_type_statement_token5] = ACTIONS(8217), + [aux_sym_def_type_statement_token6] = ACTIONS(8217), + [aux_sym_def_type_statement_token7] = ACTIONS(8217), + [aux_sym_def_type_statement_token8] = ACTIONS(8217), + [aux_sym_def_type_statement_token9] = ACTIONS(8217), + [aux_sym_def_type_statement_token10] = ACTIONS(8217), + [aux_sym_def_type_statement_token11] = ACTIONS(8217), + [aux_sym_def_type_statement_token12] = ACTIONS(8217), + [aux_sym_def_type_statement_token13] = ACTIONS(8217), + [aux_sym_def_type_statement_token14] = ACTIONS(8217), + [aux_sym_call_statement_token1] = ACTIONS(8217), + [sym__ambiguous_call_statement] = ACTIONS(8217), + [aux_sym_addressof_expression_token1] = ACTIONS(8217), + [aux_sym_type_of_expression_token1] = ACTIONS(8217), + [aux_sym_unary_expression_token1] = ACTIONS(8217), + [sym_string_literal] = ACTIONS(8219), + [sym_number_literal] = ACTIONS(8219), + [aux_sym_boolean_literal_token1] = ACTIONS(8217), + [aux_sym_boolean_literal_token2] = ACTIONS(8217), + [sym_nothing_literal] = ACTIONS(8217), + [sym_null_literal] = ACTIONS(8217), + [sym_empty_literal] = ACTIONS(8217), + [sym_date_literal] = ACTIONS(8219), + [anon_sym_POUND] = ACTIONS(8217), + }, + [STATE(6282)] = { + [sym_identifier] = ACTIONS(8903), + [sym_newline] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8903), + [aux_sym_frm_property_statement_token1] = ACTIONS(8903), + [anon_sym_DOT] = ACTIONS(8903), + [anon_sym_BANG] = ACTIONS(8905), + [aux_sym__attribute_identifier_token1] = ACTIONS(8903), + [aux_sym_option_statement_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8903), + [aux_sym_preprocessor_const_token1] = ACTIONS(8903), + [sym_static_modifier] = ACTIONS(8903), + [sym__dim_keyword] = ACTIONS(8903), + [sym__redim_keyword] = ACTIONS(8903), + [aux_sym_get_accessor_token1] = ACTIONS(8903), + [aux_sym_set_accessor_token1] = ACTIONS(8903), + [aux_sym_const_declaration_token1] = ACTIONS(8903), + [anon_sym_LPAREN] = ACTIONS(8905), + [aux_sym_as_type_clause_token2] = ACTIONS(8903), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8903), + [aux_sym_visibility_token1] = ACTIONS(8903), + [aux_sym_visibility_token2] = ACTIONS(8903), + [aux_sym_elseif_fragment_token1] = ACTIONS(8903), + [aux_sym_else_fragment_token1] = ACTIONS(8903), + [aux_sym_select_statement_token1] = ACTIONS(8903), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8903), + [aux_sym__for_header_token1] = ACTIONS(8903), + [aux_sym_do_statement_token1] = ACTIONS(8903), + [aux_sym_do_condition_token1] = ACTIONS(8903), + [aux_sym_while_statement_token1] = ACTIONS(8903), + [aux_sym_with_statement_token1] = ACTIONS(8903), + [aux_sym_exit_statement_token1] = ACTIONS(8903), + [sym_end_statement] = ACTIONS(8905), + [aux_sym_on_goto_statement_token1] = ACTIONS(8903), + [aux_sym_on_goto_statement_token2] = ACTIONS(8903), + [aux_sym_on_error_statement_token2] = ACTIONS(8903), + [sym__ambiguous_redim_statement] = ACTIONS(8905), + [aux_sym_erase_statement_token1] = ACTIONS(8903), + [aux_sym_open_statement_token1] = ACTIONS(8903), + [aux_sym_file_mode_token2] = ACTIONS(8903), + [aux_sym_file_access_token2] = ACTIONS(8903), + [aux_sym_file_lock_token2] = ACTIONS(8903), + [aux_sym_print_statement_token1] = ACTIONS(8903), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_DASH] = ACTIONS(8903), + [anon_sym_QMARK] = ACTIONS(8905), + [aux_sym_close_statement_token1] = ACTIONS(8903), + [aux_sym_put_statement_token1] = ACTIONS(8903), + [aux_sym_unlock_statement_token1] = ACTIONS(8903), + [aux_sym_seek_statement_token1] = ACTIONS(8903), + [sym_reset_statement] = ACTIONS(8903), + [aux_sym_raise_event_statement_token1] = ACTIONS(8903), + [sym_stop_statement] = ACTIONS(8903), + [sym_beep_statement] = ACTIONS(8903), + [aux_sym_unload_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token2] = ACTIONS(8903), + [aux_sym_def_type_statement_token3] = ACTIONS(8903), + [aux_sym_def_type_statement_token4] = ACTIONS(8903), + [aux_sym_def_type_statement_token5] = ACTIONS(8903), + [aux_sym_def_type_statement_token6] = ACTIONS(8903), + [aux_sym_def_type_statement_token7] = ACTIONS(8903), + [aux_sym_def_type_statement_token8] = ACTIONS(8903), + [aux_sym_def_type_statement_token9] = ACTIONS(8903), + [aux_sym_def_type_statement_token10] = ACTIONS(8903), + [aux_sym_def_type_statement_token11] = ACTIONS(8903), + [aux_sym_def_type_statement_token12] = ACTIONS(8903), + [aux_sym_def_type_statement_token13] = ACTIONS(8903), + [aux_sym_def_type_statement_token14] = ACTIONS(8903), + [aux_sym_call_statement_token1] = ACTIONS(8903), + [sym__ambiguous_call_statement] = ACTIONS(8903), + [aux_sym_addressof_expression_token1] = ACTIONS(8903), + [aux_sym_type_of_expression_token1] = ACTIONS(8903), + [aux_sym_unary_expression_token1] = ACTIONS(8903), + [sym_string_literal] = ACTIONS(8905), + [sym_number_literal] = ACTIONS(8905), + [aux_sym_boolean_literal_token1] = ACTIONS(8903), + [aux_sym_boolean_literal_token2] = ACTIONS(8903), + [sym_nothing_literal] = ACTIONS(8903), + [sym_null_literal] = ACTIONS(8903), + [sym_empty_literal] = ACTIONS(8903), + [sym_date_literal] = ACTIONS(8905), + [anon_sym_POUND] = ACTIONS(8903), + }, + [STATE(6283)] = { + [sym_identifier] = ACTIONS(8672), + [sym_newline] = ACTIONS(8674), + [anon_sym_COLON] = ACTIONS(8674), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8672), + [aux_sym_frm_property_statement_token1] = ACTIONS(8672), + [anon_sym_DOT] = ACTIONS(8672), + [anon_sym_BANG] = ACTIONS(8674), + [aux_sym__attribute_identifier_token1] = ACTIONS(8672), + [aux_sym_option_statement_token3] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8672), + [aux_sym_preprocessor_const_token1] = ACTIONS(8672), + [sym_static_modifier] = ACTIONS(8672), + [sym__dim_keyword] = ACTIONS(8672), + [sym__redim_keyword] = ACTIONS(8672), + [aux_sym_get_accessor_token1] = ACTIONS(8672), + [aux_sym_set_accessor_token1] = ACTIONS(8672), + [anon_sym_COMMA] = ACTIONS(8674), + [aux_sym_const_declaration_token1] = ACTIONS(8672), + [anon_sym_LPAREN] = ACTIONS(8674), + [aux_sym_as_type_clause_token2] = ACTIONS(8672), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8672), + [aux_sym_visibility_token1] = ACTIONS(8672), + [aux_sym_visibility_token2] = ACTIONS(8672), + [aux_sym_elseif_fragment_token1] = ACTIONS(8672), + [aux_sym_else_fragment_token1] = ACTIONS(8672), + [aux_sym_select_statement_token1] = ACTIONS(8672), + [aux_sym__for_header_token1] = ACTIONS(8672), + [aux_sym_do_statement_token1] = ACTIONS(8672), + [aux_sym_do_statement_token2] = ACTIONS(8672), + [aux_sym_do_condition_token1] = ACTIONS(8672), + [aux_sym_with_statement_token1] = ACTIONS(8672), + [aux_sym_exit_statement_token1] = ACTIONS(8672), + [sym_end_statement] = ACTIONS(8674), + [aux_sym_on_goto_statement_token1] = ACTIONS(8672), + [aux_sym_on_goto_statement_token2] = ACTIONS(8672), + [aux_sym_on_error_statement_token2] = ACTIONS(8672), + [sym__ambiguous_redim_statement] = ACTIONS(8674), + [aux_sym_erase_statement_token1] = ACTIONS(8672), + [aux_sym_open_statement_token1] = ACTIONS(8672), + [aux_sym_file_mode_token2] = ACTIONS(8672), + [aux_sym_file_access_token2] = ACTIONS(8672), + [aux_sym_file_lock_token2] = ACTIONS(8672), + [aux_sym_print_statement_token1] = ACTIONS(8672), + [anon_sym_PLUS] = ACTIONS(8674), + [anon_sym_DASH] = ACTIONS(8672), + [anon_sym_QMARK] = ACTIONS(8674), + [aux_sym_close_statement_token1] = ACTIONS(8672), + [aux_sym_put_statement_token1] = ACTIONS(8672), + [aux_sym_unlock_statement_token1] = ACTIONS(8672), + [aux_sym_seek_statement_token1] = ACTIONS(8672), + [sym_reset_statement] = ACTIONS(8672), + [aux_sym_raise_event_statement_token1] = ACTIONS(8672), + [sym_stop_statement] = ACTIONS(8672), + [sym_beep_statement] = ACTIONS(8672), + [aux_sym_unload_statement_token1] = ACTIONS(8672), + [aux_sym_def_type_statement_token1] = ACTIONS(8672), + [aux_sym_def_type_statement_token2] = ACTIONS(8672), + [aux_sym_def_type_statement_token3] = ACTIONS(8672), + [aux_sym_def_type_statement_token4] = ACTIONS(8672), + [aux_sym_def_type_statement_token5] = ACTIONS(8672), + [aux_sym_def_type_statement_token6] = ACTIONS(8672), + [aux_sym_def_type_statement_token7] = ACTIONS(8672), + [aux_sym_def_type_statement_token8] = ACTIONS(8672), + [aux_sym_def_type_statement_token9] = ACTIONS(8672), + [aux_sym_def_type_statement_token10] = ACTIONS(8672), + [aux_sym_def_type_statement_token11] = ACTIONS(8672), + [aux_sym_def_type_statement_token12] = ACTIONS(8672), + [aux_sym_def_type_statement_token13] = ACTIONS(8672), + [aux_sym_def_type_statement_token14] = ACTIONS(8672), + [aux_sym_call_statement_token1] = ACTIONS(8672), + [sym__ambiguous_call_statement] = ACTIONS(8672), + [aux_sym_addressof_expression_token1] = ACTIONS(8672), + [aux_sym_type_of_expression_token1] = ACTIONS(8672), + [aux_sym_unary_expression_token1] = ACTIONS(8672), + [sym_string_literal] = ACTIONS(8674), + [sym_number_literal] = ACTIONS(8674), + [aux_sym_boolean_literal_token1] = ACTIONS(8672), + [aux_sym_boolean_literal_token2] = ACTIONS(8672), + [sym_nothing_literal] = ACTIONS(8672), + [sym_null_literal] = ACTIONS(8672), + [sym_empty_literal] = ACTIONS(8672), + [sym_date_literal] = ACTIONS(8674), + [anon_sym_POUND] = ACTIONS(8672), + }, + [STATE(6284)] = { + [sym_identifier] = ACTIONS(8350), + [sym_newline] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8350), + [aux_sym_frm_property_statement_token1] = ACTIONS(8350), + [anon_sym_DOT] = ACTIONS(8350), + [anon_sym_BANG] = ACTIONS(8352), + [aux_sym__attribute_identifier_token1] = ACTIONS(8350), + [aux_sym_option_statement_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8350), + [aux_sym_preprocessor_const_token1] = ACTIONS(8350), + [sym_static_modifier] = ACTIONS(8350), + [sym__dim_keyword] = ACTIONS(8350), + [sym__redim_keyword] = ACTIONS(8350), + [aux_sym_get_accessor_token1] = ACTIONS(8350), + [aux_sym_set_accessor_token1] = ACTIONS(8350), + [anon_sym_COMMA] = ACTIONS(8352), + [aux_sym_const_declaration_token1] = ACTIONS(8350), + [anon_sym_LPAREN] = ACTIONS(8352), + [aux_sym_as_type_clause_token2] = ACTIONS(8350), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8350), + [aux_sym_visibility_token1] = ACTIONS(8350), + [aux_sym_visibility_token2] = ACTIONS(8350), + [aux_sym_elseif_fragment_token1] = ACTIONS(8350), + [aux_sym_else_fragment_token1] = ACTIONS(8350), + [aux_sym_select_statement_token1] = ACTIONS(8350), + [aux_sym__for_header_token1] = ACTIONS(8350), + [aux_sym_do_statement_token1] = ACTIONS(8350), + [aux_sym_do_statement_token2] = ACTIONS(8350), + [aux_sym_do_condition_token1] = ACTIONS(8350), + [aux_sym_with_statement_token1] = ACTIONS(8350), + [aux_sym_exit_statement_token1] = ACTIONS(8350), + [sym_end_statement] = ACTIONS(8352), + [aux_sym_on_goto_statement_token1] = ACTIONS(8350), + [aux_sym_on_goto_statement_token2] = ACTIONS(8350), + [aux_sym_on_error_statement_token2] = ACTIONS(8350), + [sym__ambiguous_redim_statement] = ACTIONS(8352), + [aux_sym_erase_statement_token1] = ACTIONS(8350), + [aux_sym_open_statement_token1] = ACTIONS(8350), + [aux_sym_file_mode_token2] = ACTIONS(8350), + [aux_sym_file_access_token2] = ACTIONS(8350), + [aux_sym_file_lock_token2] = ACTIONS(8350), + [aux_sym_print_statement_token1] = ACTIONS(8350), + [anon_sym_PLUS] = ACTIONS(8352), + [anon_sym_DASH] = ACTIONS(8350), + [anon_sym_QMARK] = ACTIONS(8352), + [aux_sym_close_statement_token1] = ACTIONS(8350), + [aux_sym_put_statement_token1] = ACTIONS(8350), + [aux_sym_unlock_statement_token1] = ACTIONS(8350), + [aux_sym_seek_statement_token1] = ACTIONS(8350), + [sym_reset_statement] = ACTIONS(8350), + [aux_sym_raise_event_statement_token1] = ACTIONS(8350), + [sym_stop_statement] = ACTIONS(8350), + [sym_beep_statement] = ACTIONS(8350), + [aux_sym_unload_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token2] = ACTIONS(8350), + [aux_sym_def_type_statement_token3] = ACTIONS(8350), + [aux_sym_def_type_statement_token4] = ACTIONS(8350), + [aux_sym_def_type_statement_token5] = ACTIONS(8350), + [aux_sym_def_type_statement_token6] = ACTIONS(8350), + [aux_sym_def_type_statement_token7] = ACTIONS(8350), + [aux_sym_def_type_statement_token8] = ACTIONS(8350), + [aux_sym_def_type_statement_token9] = ACTIONS(8350), + [aux_sym_def_type_statement_token10] = ACTIONS(8350), + [aux_sym_def_type_statement_token11] = ACTIONS(8350), + [aux_sym_def_type_statement_token12] = ACTIONS(8350), + [aux_sym_def_type_statement_token13] = ACTIONS(8350), + [aux_sym_def_type_statement_token14] = ACTIONS(8350), + [aux_sym_call_statement_token1] = ACTIONS(8350), + [sym__ambiguous_call_statement] = ACTIONS(8350), + [aux_sym_addressof_expression_token1] = ACTIONS(8350), + [aux_sym_type_of_expression_token1] = ACTIONS(8350), + [aux_sym_unary_expression_token1] = ACTIONS(8350), + [sym_string_literal] = ACTIONS(8352), + [sym_number_literal] = ACTIONS(8352), + [aux_sym_boolean_literal_token1] = ACTIONS(8350), + [aux_sym_boolean_literal_token2] = ACTIONS(8350), + [sym_nothing_literal] = ACTIONS(8350), + [sym_null_literal] = ACTIONS(8350), + [sym_empty_literal] = ACTIONS(8350), + [sym_date_literal] = ACTIONS(8352), + [anon_sym_POUND] = ACTIONS(8350), + }, + [STATE(6285)] = { + [sym_identifier] = ACTIONS(8839), + [sym_newline] = ACTIONS(8841), + [anon_sym_COLON] = ACTIONS(8841), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8839), + [aux_sym_frm_property_statement_token1] = ACTIONS(8839), + [anon_sym_DOT] = ACTIONS(8839), + [anon_sym_BANG] = ACTIONS(8841), + [aux_sym__attribute_identifier_token1] = ACTIONS(8839), + [aux_sym_option_statement_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8839), + [aux_sym_preprocessor_const_token1] = ACTIONS(8839), + [sym_static_modifier] = ACTIONS(8839), + [sym__dim_keyword] = ACTIONS(8839), + [sym__redim_keyword] = ACTIONS(8839), + [aux_sym_get_accessor_token1] = ACTIONS(8839), + [aux_sym_set_accessor_token1] = ACTIONS(8839), + [aux_sym_const_declaration_token1] = ACTIONS(8839), + [anon_sym_LPAREN] = ACTIONS(8841), + [aux_sym_as_type_clause_token2] = ACTIONS(8839), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8839), + [aux_sym_visibility_token1] = ACTIONS(8839), + [aux_sym_visibility_token2] = ACTIONS(8839), + [aux_sym_elseif_fragment_token1] = ACTIONS(8839), + [aux_sym_else_fragment_token1] = ACTIONS(8839), + [aux_sym_select_statement_token1] = ACTIONS(8839), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8839), + [aux_sym__for_header_token1] = ACTIONS(8839), + [aux_sym_do_statement_token1] = ACTIONS(8839), + [aux_sym_do_statement_token2] = ACTIONS(8839), + [aux_sym_do_condition_token1] = ACTIONS(8839), + [aux_sym_with_statement_token1] = ACTIONS(8839), + [aux_sym_exit_statement_token1] = ACTIONS(8839), + [sym_end_statement] = ACTIONS(8841), + [aux_sym_on_goto_statement_token1] = ACTIONS(8839), + [aux_sym_on_goto_statement_token2] = ACTIONS(8839), + [aux_sym_on_error_statement_token2] = ACTIONS(8839), + [sym__ambiguous_redim_statement] = ACTIONS(8841), + [aux_sym_erase_statement_token1] = ACTIONS(8839), + [aux_sym_open_statement_token1] = ACTIONS(8839), + [aux_sym_file_mode_token2] = ACTIONS(8839), + [aux_sym_file_access_token2] = ACTIONS(8839), + [aux_sym_file_lock_token2] = ACTIONS(8839), + [aux_sym_print_statement_token1] = ACTIONS(8839), + [anon_sym_PLUS] = ACTIONS(8841), + [anon_sym_DASH] = ACTIONS(8839), + [anon_sym_QMARK] = ACTIONS(8841), + [aux_sym_close_statement_token1] = ACTIONS(8839), + [aux_sym_put_statement_token1] = ACTIONS(8839), + [aux_sym_unlock_statement_token1] = ACTIONS(8839), + [aux_sym_seek_statement_token1] = ACTIONS(8839), + [sym_reset_statement] = ACTIONS(8839), + [aux_sym_raise_event_statement_token1] = ACTIONS(8839), + [sym_stop_statement] = ACTIONS(8839), + [sym_beep_statement] = ACTIONS(8839), + [aux_sym_unload_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token2] = ACTIONS(8839), + [aux_sym_def_type_statement_token3] = ACTIONS(8839), + [aux_sym_def_type_statement_token4] = ACTIONS(8839), + [aux_sym_def_type_statement_token5] = ACTIONS(8839), + [aux_sym_def_type_statement_token6] = ACTIONS(8839), + [aux_sym_def_type_statement_token7] = ACTIONS(8839), + [aux_sym_def_type_statement_token8] = ACTIONS(8839), + [aux_sym_def_type_statement_token9] = ACTIONS(8839), + [aux_sym_def_type_statement_token10] = ACTIONS(8839), + [aux_sym_def_type_statement_token11] = ACTIONS(8839), + [aux_sym_def_type_statement_token12] = ACTIONS(8839), + [aux_sym_def_type_statement_token13] = ACTIONS(8839), + [aux_sym_def_type_statement_token14] = ACTIONS(8839), + [aux_sym_call_statement_token1] = ACTIONS(8839), + [sym__ambiguous_call_statement] = ACTIONS(8839), + [aux_sym_addressof_expression_token1] = ACTIONS(8839), + [aux_sym_type_of_expression_token1] = ACTIONS(8839), + [aux_sym_unary_expression_token1] = ACTIONS(8839), + [sym_string_literal] = ACTIONS(8841), + [sym_number_literal] = ACTIONS(8841), + [aux_sym_boolean_literal_token1] = ACTIONS(8839), + [aux_sym_boolean_literal_token2] = ACTIONS(8839), + [sym_nothing_literal] = ACTIONS(8839), + [sym_null_literal] = ACTIONS(8839), + [sym_empty_literal] = ACTIONS(8839), + [sym_date_literal] = ACTIONS(8841), + [anon_sym_POUND] = ACTIONS(8839), + }, + [STATE(6286)] = { + [sym_identifier] = ACTIONS(8805), + [sym_newline] = ACTIONS(8807), + [anon_sym_COLON] = ACTIONS(8807), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8805), + [aux_sym_frm_property_statement_token1] = ACTIONS(8805), + [anon_sym_DOT] = ACTIONS(8805), + [anon_sym_BANG] = ACTIONS(8807), + [aux_sym__attribute_identifier_token1] = ACTIONS(8805), + [aux_sym_option_statement_token3] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8805), + [aux_sym_preprocessor_const_token1] = ACTIONS(8805), + [sym_static_modifier] = ACTIONS(8805), + [sym__dim_keyword] = ACTIONS(8805), + [sym__redim_keyword] = ACTIONS(8805), + [aux_sym_get_accessor_token1] = ACTIONS(8805), + [aux_sym_set_accessor_token1] = ACTIONS(8805), + [anon_sym_COMMA] = ACTIONS(8807), + [aux_sym_const_declaration_token1] = ACTIONS(8805), + [anon_sym_LPAREN] = ACTIONS(8807), + [aux_sym_as_type_clause_token2] = ACTIONS(8805), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8805), + [aux_sym_visibility_token1] = ACTIONS(8805), + [aux_sym_visibility_token2] = ACTIONS(8805), + [aux_sym_elseif_fragment_token1] = ACTIONS(8805), + [aux_sym_else_fragment_token1] = ACTIONS(8805), + [aux_sym_select_statement_token1] = ACTIONS(8805), + [aux_sym__for_header_token1] = ACTIONS(8805), + [aux_sym_do_statement_token1] = ACTIONS(8805), + [aux_sym_do_statement_token2] = ACTIONS(8805), + [aux_sym_do_condition_token1] = ACTIONS(8805), + [aux_sym_with_statement_token1] = ACTIONS(8805), + [aux_sym_exit_statement_token1] = ACTIONS(8805), + [sym_end_statement] = ACTIONS(8807), + [aux_sym_on_goto_statement_token1] = ACTIONS(8805), + [aux_sym_on_goto_statement_token2] = ACTIONS(8805), + [aux_sym_on_error_statement_token2] = ACTIONS(8805), + [sym__ambiguous_redim_statement] = ACTIONS(8807), + [aux_sym_erase_statement_token1] = ACTIONS(8805), + [aux_sym_open_statement_token1] = ACTIONS(8805), + [aux_sym_file_mode_token2] = ACTIONS(8805), + [aux_sym_file_access_token2] = ACTIONS(8805), + [aux_sym_file_lock_token2] = ACTIONS(8805), + [aux_sym_print_statement_token1] = ACTIONS(8805), + [anon_sym_PLUS] = ACTIONS(8807), + [anon_sym_DASH] = ACTIONS(8805), + [anon_sym_QMARK] = ACTIONS(8807), + [aux_sym_close_statement_token1] = ACTIONS(8805), + [aux_sym_put_statement_token1] = ACTIONS(8805), + [aux_sym_unlock_statement_token1] = ACTIONS(8805), + [aux_sym_seek_statement_token1] = ACTIONS(8805), + [sym_reset_statement] = ACTIONS(8805), + [aux_sym_raise_event_statement_token1] = ACTIONS(8805), + [sym_stop_statement] = ACTIONS(8805), + [sym_beep_statement] = ACTIONS(8805), + [aux_sym_unload_statement_token1] = ACTIONS(8805), + [aux_sym_def_type_statement_token1] = ACTIONS(8805), + [aux_sym_def_type_statement_token2] = ACTIONS(8805), + [aux_sym_def_type_statement_token3] = ACTIONS(8805), + [aux_sym_def_type_statement_token4] = ACTIONS(8805), + [aux_sym_def_type_statement_token5] = ACTIONS(8805), + [aux_sym_def_type_statement_token6] = ACTIONS(8805), + [aux_sym_def_type_statement_token7] = ACTIONS(8805), + [aux_sym_def_type_statement_token8] = ACTIONS(8805), + [aux_sym_def_type_statement_token9] = ACTIONS(8805), + [aux_sym_def_type_statement_token10] = ACTIONS(8805), + [aux_sym_def_type_statement_token11] = ACTIONS(8805), + [aux_sym_def_type_statement_token12] = ACTIONS(8805), + [aux_sym_def_type_statement_token13] = ACTIONS(8805), + [aux_sym_def_type_statement_token14] = ACTIONS(8805), + [aux_sym_call_statement_token1] = ACTIONS(8805), + [sym__ambiguous_call_statement] = ACTIONS(8805), + [aux_sym_addressof_expression_token1] = ACTIONS(8805), + [aux_sym_type_of_expression_token1] = ACTIONS(8805), + [aux_sym_unary_expression_token1] = ACTIONS(8805), + [sym_string_literal] = ACTIONS(8807), + [sym_number_literal] = ACTIONS(8807), + [aux_sym_boolean_literal_token1] = ACTIONS(8805), + [aux_sym_boolean_literal_token2] = ACTIONS(8805), + [sym_nothing_literal] = ACTIONS(8805), + [sym_null_literal] = ACTIONS(8805), + [sym_empty_literal] = ACTIONS(8805), + [sym_date_literal] = ACTIONS(8807), + [anon_sym_POUND] = ACTIONS(8805), + }, + [STATE(6287)] = { + [sym_argument_list] = STATE(10051), + [sym_identifier] = ACTIONS(8794), + [sym_newline] = ACTIONS(8796), + [anon_sym_COLON] = ACTIONS(8796), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8794), + [aux_sym_frm_property_statement_token1] = ACTIONS(8794), + [anon_sym_DOT] = ACTIONS(8794), + [anon_sym_BANG] = ACTIONS(8796), + [aux_sym__attribute_identifier_token1] = ACTIONS(8794), + [aux_sym_option_statement_token3] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8794), + [aux_sym_preprocessor_const_token1] = ACTIONS(8794), + [sym_static_modifier] = ACTIONS(8794), + [sym__dim_keyword] = ACTIONS(8794), + [sym__redim_keyword] = ACTIONS(8794), + [aux_sym_get_accessor_token1] = ACTIONS(8794), + [aux_sym_set_accessor_token1] = ACTIONS(8794), + [aux_sym_const_declaration_token1] = ACTIONS(8794), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(8794), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8794), + [aux_sym_visibility_token1] = ACTIONS(8794), + [aux_sym_visibility_token2] = ACTIONS(8794), + [aux_sym_elseif_fragment_token1] = ACTIONS(8794), + [aux_sym_else_fragment_token1] = ACTIONS(8794), + [aux_sym_select_statement_token1] = ACTIONS(8794), + [aux_sym__for_header_token1] = ACTIONS(8794), + [aux_sym_do_statement_token1] = ACTIONS(8794), + [aux_sym_do_condition_token1] = ACTIONS(8794), + [aux_sym_with_statement_token1] = ACTIONS(8794), + [aux_sym_exit_statement_token1] = ACTIONS(8794), + [sym_end_statement] = ACTIONS(8796), + [aux_sym_on_goto_statement_token1] = ACTIONS(8794), + [aux_sym_on_goto_statement_token2] = ACTIONS(8794), + [aux_sym_on_error_statement_token2] = ACTIONS(8794), + [sym__ambiguous_redim_statement] = ACTIONS(8796), + [aux_sym_erase_statement_token1] = ACTIONS(8794), + [aux_sym_open_statement_token1] = ACTIONS(8794), + [aux_sym_file_mode_token2] = ACTIONS(8794), + [aux_sym_file_access_token2] = ACTIONS(8794), + [aux_sym_file_lock_token2] = ACTIONS(8794), + [aux_sym_print_statement_token1] = ACTIONS(8794), + [anon_sym_PLUS] = ACTIONS(8796), + [anon_sym_DASH] = ACTIONS(8794), + [anon_sym_QMARK] = ACTIONS(8796), + [aux_sym_close_statement_token1] = ACTIONS(8794), + [aux_sym_put_statement_token1] = ACTIONS(8794), + [aux_sym_unlock_statement_token1] = ACTIONS(8794), + [aux_sym_seek_statement_token1] = ACTIONS(8794), + [sym_reset_statement] = ACTIONS(8794), + [aux_sym_raise_event_statement_token1] = ACTIONS(8794), + [sym_stop_statement] = ACTIONS(8794), + [sym_beep_statement] = ACTIONS(8794), + [aux_sym_unload_statement_token1] = ACTIONS(8794), + [aux_sym_def_type_statement_token1] = ACTIONS(8794), + [aux_sym_def_type_statement_token2] = ACTIONS(8794), + [aux_sym_def_type_statement_token3] = ACTIONS(8794), + [aux_sym_def_type_statement_token4] = ACTIONS(8794), + [aux_sym_def_type_statement_token5] = ACTIONS(8794), + [aux_sym_def_type_statement_token6] = ACTIONS(8794), + [aux_sym_def_type_statement_token7] = ACTIONS(8794), + [aux_sym_def_type_statement_token8] = ACTIONS(8794), + [aux_sym_def_type_statement_token9] = ACTIONS(8794), + [aux_sym_def_type_statement_token10] = ACTIONS(8794), + [aux_sym_def_type_statement_token11] = ACTIONS(8794), + [aux_sym_def_type_statement_token12] = ACTIONS(8794), + [aux_sym_def_type_statement_token13] = ACTIONS(8794), + [aux_sym_def_type_statement_token14] = ACTIONS(8794), + [aux_sym_call_statement_token1] = ACTIONS(8794), + [sym__ambiguous_call_statement] = ACTIONS(8794), + [aux_sym_addressof_expression_token1] = ACTIONS(8794), + [aux_sym_type_of_expression_token1] = ACTIONS(8794), + [aux_sym_unary_expression_token1] = ACTIONS(8794), + [sym_string_literal] = ACTIONS(8796), + [sym_number_literal] = ACTIONS(8796), + [aux_sym_boolean_literal_token1] = ACTIONS(8794), + [aux_sym_boolean_literal_token2] = ACTIONS(8794), + [sym_nothing_literal] = ACTIONS(8794), + [sym_null_literal] = ACTIONS(8794), + [sym_empty_literal] = ACTIONS(8794), + [sym_date_literal] = ACTIONS(8796), + [anon_sym_POUND] = ACTIONS(8794), + }, + [STATE(6288)] = { + [sym_identifier] = ACTIONS(8931), + [sym_newline] = ACTIONS(8933), + [anon_sym_COLON] = ACTIONS(8933), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8931), + [aux_sym_frm_property_statement_token1] = ACTIONS(8931), + [anon_sym_DOT] = ACTIONS(8931), + [anon_sym_BANG] = ACTIONS(8933), + [aux_sym__attribute_identifier_token1] = ACTIONS(8931), + [aux_sym_option_statement_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8931), + [aux_sym_preprocessor_const_token1] = ACTIONS(8931), + [sym_static_modifier] = ACTIONS(8931), + [sym__dim_keyword] = ACTIONS(8931), + [sym__redim_keyword] = ACTIONS(8931), + [aux_sym_get_accessor_token1] = ACTIONS(8931), + [aux_sym_set_accessor_token1] = ACTIONS(8931), + [aux_sym_const_declaration_token1] = ACTIONS(8931), + [anon_sym_LPAREN] = ACTIONS(8933), + [aux_sym_as_type_clause_token2] = ACTIONS(8931), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8931), + [aux_sym_visibility_token1] = ACTIONS(8931), + [aux_sym_visibility_token2] = ACTIONS(8931), + [aux_sym_elseif_fragment_token1] = ACTIONS(8931), + [aux_sym_else_fragment_token1] = ACTIONS(8931), + [aux_sym_select_statement_token1] = ACTIONS(8931), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8931), + [aux_sym__for_header_token1] = ACTIONS(8931), + [aux_sym_do_statement_token1] = ACTIONS(8931), + [aux_sym_do_condition_token1] = ACTIONS(8931), + [aux_sym_while_statement_token1] = ACTIONS(8931), + [aux_sym_with_statement_token1] = ACTIONS(8931), + [aux_sym_exit_statement_token1] = ACTIONS(8931), + [sym_end_statement] = ACTIONS(8933), + [aux_sym_on_goto_statement_token1] = ACTIONS(8931), + [aux_sym_on_goto_statement_token2] = ACTIONS(8931), + [aux_sym_on_error_statement_token2] = ACTIONS(8931), + [sym__ambiguous_redim_statement] = ACTIONS(8933), + [aux_sym_erase_statement_token1] = ACTIONS(8931), + [aux_sym_open_statement_token1] = ACTIONS(8931), + [aux_sym_file_mode_token2] = ACTIONS(8931), + [aux_sym_file_access_token2] = ACTIONS(8931), + [aux_sym_file_lock_token2] = ACTIONS(8931), + [aux_sym_print_statement_token1] = ACTIONS(8931), + [anon_sym_PLUS] = ACTIONS(8933), + [anon_sym_DASH] = ACTIONS(8931), + [anon_sym_QMARK] = ACTIONS(8933), + [aux_sym_close_statement_token1] = ACTIONS(8931), + [aux_sym_put_statement_token1] = ACTIONS(8931), + [aux_sym_unlock_statement_token1] = ACTIONS(8931), + [aux_sym_seek_statement_token1] = ACTIONS(8931), + [sym_reset_statement] = ACTIONS(8931), + [aux_sym_raise_event_statement_token1] = ACTIONS(8931), + [sym_stop_statement] = ACTIONS(8931), + [sym_beep_statement] = ACTIONS(8931), + [aux_sym_unload_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token2] = ACTIONS(8931), + [aux_sym_def_type_statement_token3] = ACTIONS(8931), + [aux_sym_def_type_statement_token4] = ACTIONS(8931), + [aux_sym_def_type_statement_token5] = ACTIONS(8931), + [aux_sym_def_type_statement_token6] = ACTIONS(8931), + [aux_sym_def_type_statement_token7] = ACTIONS(8931), + [aux_sym_def_type_statement_token8] = ACTIONS(8931), + [aux_sym_def_type_statement_token9] = ACTIONS(8931), + [aux_sym_def_type_statement_token10] = ACTIONS(8931), + [aux_sym_def_type_statement_token11] = ACTIONS(8931), + [aux_sym_def_type_statement_token12] = ACTIONS(8931), + [aux_sym_def_type_statement_token13] = ACTIONS(8931), + [aux_sym_def_type_statement_token14] = ACTIONS(8931), + [aux_sym_call_statement_token1] = ACTIONS(8931), + [sym__ambiguous_call_statement] = ACTIONS(8931), + [aux_sym_addressof_expression_token1] = ACTIONS(8931), + [aux_sym_type_of_expression_token1] = ACTIONS(8931), + [aux_sym_unary_expression_token1] = ACTIONS(8931), + [sym_string_literal] = ACTIONS(8933), + [sym_number_literal] = ACTIONS(8933), + [aux_sym_boolean_literal_token1] = ACTIONS(8931), + [aux_sym_boolean_literal_token2] = ACTIONS(8931), + [sym_nothing_literal] = ACTIONS(8931), + [sym_null_literal] = ACTIONS(8931), + [sym_empty_literal] = ACTIONS(8931), + [sym_date_literal] = ACTIONS(8933), + [anon_sym_POUND] = ACTIONS(8931), + }, + [STATE(6289)] = { + [sym_identifier] = ACTIONS(8951), + [sym_newline] = ACTIONS(8953), + [anon_sym_COLON] = ACTIONS(8955), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8951), + [aux_sym_frm_property_statement_token1] = ACTIONS(8951), + [anon_sym_DOT] = ACTIONS(8951), + [anon_sym_BANG] = ACTIONS(8953), + [aux_sym__attribute_identifier_token1] = ACTIONS(8951), + [aux_sym_option_statement_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8951), + [aux_sym_preprocessor_const_token1] = ACTIONS(8951), + [sym_static_modifier] = ACTIONS(8951), + [sym__dim_keyword] = ACTIONS(8951), + [sym__redim_keyword] = ACTIONS(8951), + [aux_sym_get_accessor_token1] = ACTIONS(8951), + [aux_sym_set_accessor_token1] = ACTIONS(8951), + [aux_sym_const_declaration_token1] = ACTIONS(8951), + [anon_sym_LPAREN] = ACTIONS(8953), + [aux_sym_as_type_clause_token2] = ACTIONS(8951), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8951), + [aux_sym_visibility_token1] = ACTIONS(8951), + [aux_sym_visibility_token2] = ACTIONS(8951), + [aux_sym_elseif_fragment_token1] = ACTIONS(8951), + [aux_sym_else_fragment_token1] = ACTIONS(8951), + [aux_sym_select_statement_token1] = ACTIONS(8951), + [aux_sym__for_header_token1] = ACTIONS(8951), + [aux_sym_do_statement_token1] = ACTIONS(8951), + [aux_sym_do_condition_token1] = ACTIONS(8951), + [aux_sym_while_statement_token1] = ACTIONS(8951), + [aux_sym_with_statement_token1] = ACTIONS(8951), + [aux_sym_exit_statement_token1] = ACTIONS(8951), + [sym_end_statement] = ACTIONS(8953), + [aux_sym_on_goto_statement_token1] = ACTIONS(8951), + [aux_sym_on_goto_statement_token2] = ACTIONS(8951), + [aux_sym_on_error_statement_token2] = ACTIONS(8951), + [sym__ambiguous_redim_statement] = ACTIONS(8953), + [aux_sym_erase_statement_token1] = ACTIONS(8951), + [aux_sym_open_statement_token1] = ACTIONS(8951), + [aux_sym_file_mode_token2] = ACTIONS(8951), + [aux_sym_file_access_token2] = ACTIONS(8951), + [aux_sym_file_lock_token2] = ACTIONS(8951), + [aux_sym_print_statement_token1] = ACTIONS(8951), + [anon_sym_PLUS] = ACTIONS(8953), + [anon_sym_DASH] = ACTIONS(8951), + [anon_sym_QMARK] = ACTIONS(8953), + [aux_sym_close_statement_token1] = ACTIONS(8951), + [aux_sym_put_statement_token1] = ACTIONS(8951), + [aux_sym_unlock_statement_token1] = ACTIONS(8951), + [aux_sym_seek_statement_token1] = ACTIONS(8951), + [sym_reset_statement] = ACTIONS(8951), + [aux_sym_raise_event_statement_token1] = ACTIONS(8951), + [sym_stop_statement] = ACTIONS(8951), + [sym_beep_statement] = ACTIONS(8951), + [aux_sym_unload_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token2] = ACTIONS(8951), + [aux_sym_def_type_statement_token3] = ACTIONS(8951), + [aux_sym_def_type_statement_token4] = ACTIONS(8951), + [aux_sym_def_type_statement_token5] = ACTIONS(8951), + [aux_sym_def_type_statement_token6] = ACTIONS(8951), + [aux_sym_def_type_statement_token7] = ACTIONS(8951), + [aux_sym_def_type_statement_token8] = ACTIONS(8951), + [aux_sym_def_type_statement_token9] = ACTIONS(8951), + [aux_sym_def_type_statement_token10] = ACTIONS(8951), + [aux_sym_def_type_statement_token11] = ACTIONS(8951), + [aux_sym_def_type_statement_token12] = ACTIONS(8951), + [aux_sym_def_type_statement_token13] = ACTIONS(8951), + [aux_sym_def_type_statement_token14] = ACTIONS(8951), + [aux_sym_call_statement_token1] = ACTIONS(8951), + [sym__ambiguous_call_statement] = ACTIONS(8951), + [aux_sym_addressof_expression_token1] = ACTIONS(8951), + [aux_sym_type_of_expression_token1] = ACTIONS(8951), + [aux_sym_unary_expression_token1] = ACTIONS(8951), + [sym_string_literal] = ACTIONS(8953), + [sym_number_literal] = ACTIONS(8955), + [aux_sym_boolean_literal_token1] = ACTIONS(8951), + [aux_sym_boolean_literal_token2] = ACTIONS(8951), + [sym_nothing_literal] = ACTIONS(8951), + [sym_null_literal] = ACTIONS(8951), + [sym_empty_literal] = ACTIONS(8951), + [sym_date_literal] = ACTIONS(8953), + [anon_sym_POUND] = ACTIONS(8951), + }, + [STATE(6290)] = { + [sym_identifier] = ACTIONS(9768), + [sym_newline] = ACTIONS(9770), + [anon_sym_COLON] = ACTIONS(9770), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9768), + [aux_sym_frm_property_statement_token1] = ACTIONS(9768), + [anon_sym_DOT] = ACTIONS(9768), + [anon_sym_BANG] = ACTIONS(9770), + [aux_sym__attribute_identifier_token1] = ACTIONS(9768), + [aux_sym_option_statement_token3] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9768), + [aux_sym_preprocessor_const_token1] = ACTIONS(9768), + [sym_static_modifier] = ACTIONS(9768), + [sym__dim_keyword] = ACTIONS(9768), + [sym__redim_keyword] = ACTIONS(9768), + [aux_sym_get_accessor_token1] = ACTIONS(9768), + [aux_sym_set_accessor_token1] = ACTIONS(9768), + [aux_sym_const_declaration_token1] = ACTIONS(9768), + [anon_sym_LPAREN] = ACTIONS(9770), + [aux_sym_as_type_clause_token2] = ACTIONS(9768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9768), + [aux_sym_visibility_token1] = ACTIONS(9768), + [aux_sym_visibility_token2] = ACTIONS(9768), + [aux_sym_elseif_fragment_token1] = ACTIONS(9768), + [aux_sym_else_fragment_token1] = ACTIONS(9768), + [aux_sym_select_statement_token1] = ACTIONS(9768), + [aux_sym__for_header_token1] = ACTIONS(9768), + [aux_sym_do_statement_token1] = ACTIONS(9768), + [aux_sym_do_condition_token1] = ACTIONS(9768), + [aux_sym_while_statement_token1] = ACTIONS(9768), + [aux_sym_with_statement_token1] = ACTIONS(9768), + [aux_sym_exit_statement_token1] = ACTIONS(9768), + [sym_end_statement] = ACTIONS(9770), + [aux_sym_on_goto_statement_token1] = ACTIONS(9768), + [aux_sym_on_goto_statement_token2] = ACTIONS(9768), + [aux_sym_on_error_statement_token2] = ACTIONS(9768), + [sym__ambiguous_redim_statement] = ACTIONS(9770), + [aux_sym_erase_statement_token1] = ACTIONS(9768), + [aux_sym_open_statement_token1] = ACTIONS(9768), + [aux_sym_file_mode_token2] = ACTIONS(9768), + [aux_sym_file_access_token2] = ACTIONS(9768), + [aux_sym_file_lock_token2] = ACTIONS(9768), + [aux_sym_print_statement_token1] = ACTIONS(9768), + [anon_sym_PLUS] = ACTIONS(9770), + [anon_sym_DASH] = ACTIONS(9768), + [anon_sym_QMARK] = ACTIONS(9770), + [aux_sym_close_statement_token1] = ACTIONS(9768), + [aux_sym_put_statement_token1] = ACTIONS(9768), + [aux_sym_unlock_statement_token1] = ACTIONS(9768), + [aux_sym_seek_statement_token1] = ACTIONS(9768), + [sym_reset_statement] = ACTIONS(9768), + [aux_sym_raise_event_statement_token1] = ACTIONS(9768), + [sym_stop_statement] = ACTIONS(9768), + [sym_beep_statement] = ACTIONS(9768), + [aux_sym_unload_statement_token1] = ACTIONS(9768), + [aux_sym_def_type_statement_token1] = ACTIONS(9768), + [aux_sym_def_type_statement_token2] = ACTIONS(9768), + [aux_sym_def_type_statement_token3] = ACTIONS(9768), + [aux_sym_def_type_statement_token4] = ACTIONS(9768), + [aux_sym_def_type_statement_token5] = ACTIONS(9768), + [aux_sym_def_type_statement_token6] = ACTIONS(9768), + [aux_sym_def_type_statement_token7] = ACTIONS(9768), + [aux_sym_def_type_statement_token8] = ACTIONS(9768), + [aux_sym_def_type_statement_token9] = ACTIONS(9768), + [aux_sym_def_type_statement_token10] = ACTIONS(9768), + [aux_sym_def_type_statement_token11] = ACTIONS(9768), + [aux_sym_def_type_statement_token12] = ACTIONS(9768), + [aux_sym_def_type_statement_token13] = ACTIONS(9768), + [aux_sym_def_type_statement_token14] = ACTIONS(9768), + [aux_sym_call_statement_token1] = ACTIONS(9768), + [sym__ambiguous_call_statement] = ACTIONS(9768), + [aux_sym_addressof_expression_token1] = ACTIONS(9768), + [aux_sym_type_of_expression_token1] = ACTIONS(9768), + [aux_sym_unary_expression_token1] = ACTIONS(9768), + [sym_string_literal] = ACTIONS(9770), + [sym_number_literal] = ACTIONS(9770), + [aux_sym_boolean_literal_token1] = ACTIONS(9768), + [aux_sym_boolean_literal_token2] = ACTIONS(9768), + [sym_nothing_literal] = ACTIONS(9768), + [sym_null_literal] = ACTIONS(9768), + [sym_empty_literal] = ACTIONS(9768), + [sym_date_literal] = ACTIONS(9770), + [anon_sym_POUND] = ACTIONS(9768), + }, + [STATE(6291)] = { + [sym_identifier] = ACTIONS(9522), + [sym_newline] = ACTIONS(9524), + [anon_sym_COLON] = ACTIONS(9524), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9522), + [aux_sym_frm_property_statement_token1] = ACTIONS(9522), + [anon_sym_DOT] = ACTIONS(9522), + [anon_sym_BANG] = ACTIONS(9524), + [aux_sym__attribute_identifier_token1] = ACTIONS(9522), + [aux_sym_option_statement_token3] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9522), + [aux_sym_preprocessor_const_token1] = ACTIONS(9522), + [sym_static_modifier] = ACTIONS(9522), + [sym__dim_keyword] = ACTIONS(9522), + [sym__redim_keyword] = ACTIONS(9522), + [aux_sym_get_accessor_token1] = ACTIONS(9522), + [aux_sym_set_accessor_token1] = ACTIONS(9522), + [aux_sym_const_declaration_token1] = ACTIONS(9522), + [anon_sym_LPAREN] = ACTIONS(9524), + [aux_sym_as_type_clause_token2] = ACTIONS(9522), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9522), + [aux_sym_visibility_token1] = ACTIONS(9522), + [aux_sym_visibility_token2] = ACTIONS(9522), + [aux_sym_elseif_fragment_token1] = ACTIONS(9522), + [aux_sym_else_fragment_token1] = ACTIONS(9522), + [aux_sym_select_statement_token1] = ACTIONS(9522), + [aux_sym__for_header_token1] = ACTIONS(9522), + [aux_sym_do_statement_token1] = ACTIONS(9522), + [aux_sym_do_statement_token2] = ACTIONS(9522), + [aux_sym_do_condition_token1] = ACTIONS(9522), + [aux_sym_with_statement_token1] = ACTIONS(9522), + [aux_sym_exit_statement_token1] = ACTIONS(9522), + [sym_end_statement] = ACTIONS(9524), + [aux_sym_on_goto_statement_token1] = ACTIONS(9522), + [aux_sym_on_goto_statement_token2] = ACTIONS(9522), + [aux_sym_on_error_statement_token2] = ACTIONS(9522), + [sym__ambiguous_redim_statement] = ACTIONS(9524), + [aux_sym_erase_statement_token1] = ACTIONS(9522), + [aux_sym_open_statement_token1] = ACTIONS(9522), + [aux_sym_file_mode_token2] = ACTIONS(9522), + [aux_sym_file_access_token2] = ACTIONS(9522), + [aux_sym_file_lock_token2] = ACTIONS(9522), + [aux_sym_print_statement_token1] = ACTIONS(9522), + [anon_sym_PLUS] = ACTIONS(9524), + [anon_sym_DASH] = ACTIONS(9522), + [anon_sym_QMARK] = ACTIONS(9524), + [aux_sym_close_statement_token1] = ACTIONS(9522), + [aux_sym_put_statement_token1] = ACTIONS(9522), + [aux_sym_unlock_statement_token1] = ACTIONS(9522), + [aux_sym_seek_statement_token1] = ACTIONS(9522), + [sym_reset_statement] = ACTIONS(9522), + [aux_sym_raise_event_statement_token1] = ACTIONS(9522), + [sym_stop_statement] = ACTIONS(9522), + [sym_beep_statement] = ACTIONS(9522), + [aux_sym_unload_statement_token1] = ACTIONS(9522), + [aux_sym_def_type_statement_token1] = ACTIONS(9522), + [aux_sym_def_type_statement_token2] = ACTIONS(9522), + [aux_sym_def_type_statement_token3] = ACTIONS(9522), + [aux_sym_def_type_statement_token4] = ACTIONS(9522), + [aux_sym_def_type_statement_token5] = ACTIONS(9522), + [aux_sym_def_type_statement_token6] = ACTIONS(9522), + [aux_sym_def_type_statement_token7] = ACTIONS(9522), + [aux_sym_def_type_statement_token8] = ACTIONS(9522), + [aux_sym_def_type_statement_token9] = ACTIONS(9522), + [aux_sym_def_type_statement_token10] = ACTIONS(9522), + [aux_sym_def_type_statement_token11] = ACTIONS(9522), + [aux_sym_def_type_statement_token12] = ACTIONS(9522), + [aux_sym_def_type_statement_token13] = ACTIONS(9522), + [aux_sym_def_type_statement_token14] = ACTIONS(9522), + [aux_sym_call_statement_token1] = ACTIONS(9522), + [sym__ambiguous_call_statement] = ACTIONS(9522), + [aux_sym_addressof_expression_token1] = ACTIONS(9522), + [aux_sym_type_of_expression_token1] = ACTIONS(9522), + [aux_sym_unary_expression_token1] = ACTIONS(9522), + [sym_string_literal] = ACTIONS(9524), + [sym_number_literal] = ACTIONS(9524), + [aux_sym_boolean_literal_token1] = ACTIONS(9522), + [aux_sym_boolean_literal_token2] = ACTIONS(9522), + [sym_nothing_literal] = ACTIONS(9522), + [sym_null_literal] = ACTIONS(9522), + [sym_empty_literal] = ACTIONS(9522), + [sym_date_literal] = ACTIONS(9524), + [anon_sym_POUND] = ACTIONS(9522), + }, + [STATE(6292)] = { + [sym_identifier] = ACTIONS(9526), + [sym_newline] = ACTIONS(9528), + [anon_sym_COLON] = ACTIONS(9528), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9526), + [aux_sym_frm_property_statement_token1] = ACTIONS(9526), + [anon_sym_DOT] = ACTIONS(9526), + [anon_sym_BANG] = ACTIONS(9528), + [aux_sym__attribute_identifier_token1] = ACTIONS(9526), + [aux_sym_option_statement_token3] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9526), + [aux_sym_preprocessor_const_token1] = ACTIONS(9526), + [sym_static_modifier] = ACTIONS(9526), + [sym__dim_keyword] = ACTIONS(9526), + [sym__redim_keyword] = ACTIONS(9526), + [aux_sym_get_accessor_token1] = ACTIONS(9526), + [aux_sym_set_accessor_token1] = ACTIONS(9526), + [aux_sym_const_declaration_token1] = ACTIONS(9526), + [anon_sym_LPAREN] = ACTIONS(9528), + [aux_sym_as_type_clause_token2] = ACTIONS(9526), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9526), + [aux_sym_visibility_token1] = ACTIONS(9526), + [aux_sym_visibility_token2] = ACTIONS(9526), + [aux_sym_elseif_fragment_token1] = ACTIONS(9526), + [aux_sym_else_fragment_token1] = ACTIONS(9526), + [aux_sym_select_statement_token1] = ACTIONS(9526), + [aux_sym__for_header_token1] = ACTIONS(9526), + [aux_sym_do_statement_token1] = ACTIONS(9526), + [aux_sym_do_statement_token2] = ACTIONS(9526), + [aux_sym_do_condition_token1] = ACTIONS(9526), + [aux_sym_with_statement_token1] = ACTIONS(9526), + [aux_sym_exit_statement_token1] = ACTIONS(9526), + [sym_end_statement] = ACTIONS(9528), + [aux_sym_on_goto_statement_token1] = ACTIONS(9526), + [aux_sym_on_goto_statement_token2] = ACTIONS(9526), + [aux_sym_on_error_statement_token2] = ACTIONS(9526), + [sym__ambiguous_redim_statement] = ACTIONS(9528), + [aux_sym_erase_statement_token1] = ACTIONS(9526), + [aux_sym_open_statement_token1] = ACTIONS(9526), + [aux_sym_file_mode_token2] = ACTIONS(9526), + [aux_sym_file_access_token2] = ACTIONS(9526), + [aux_sym_file_lock_token2] = ACTIONS(9526), + [aux_sym_print_statement_token1] = ACTIONS(9526), + [anon_sym_PLUS] = ACTIONS(9528), + [anon_sym_DASH] = ACTIONS(9526), + [anon_sym_QMARK] = ACTIONS(9528), + [aux_sym_close_statement_token1] = ACTIONS(9526), + [aux_sym_put_statement_token1] = ACTIONS(9526), + [aux_sym_unlock_statement_token1] = ACTIONS(9526), + [aux_sym_seek_statement_token1] = ACTIONS(9526), + [sym_reset_statement] = ACTIONS(9526), + [aux_sym_raise_event_statement_token1] = ACTIONS(9526), + [sym_stop_statement] = ACTIONS(9526), + [sym_beep_statement] = ACTIONS(9526), + [aux_sym_unload_statement_token1] = ACTIONS(9526), + [aux_sym_def_type_statement_token1] = ACTIONS(9526), + [aux_sym_def_type_statement_token2] = ACTIONS(9526), + [aux_sym_def_type_statement_token3] = ACTIONS(9526), + [aux_sym_def_type_statement_token4] = ACTIONS(9526), + [aux_sym_def_type_statement_token5] = ACTIONS(9526), + [aux_sym_def_type_statement_token6] = ACTIONS(9526), + [aux_sym_def_type_statement_token7] = ACTIONS(9526), + [aux_sym_def_type_statement_token8] = ACTIONS(9526), + [aux_sym_def_type_statement_token9] = ACTIONS(9526), + [aux_sym_def_type_statement_token10] = ACTIONS(9526), + [aux_sym_def_type_statement_token11] = ACTIONS(9526), + [aux_sym_def_type_statement_token12] = ACTIONS(9526), + [aux_sym_def_type_statement_token13] = ACTIONS(9526), + [aux_sym_def_type_statement_token14] = ACTIONS(9526), + [aux_sym_call_statement_token1] = ACTIONS(9526), + [sym__ambiguous_call_statement] = ACTIONS(9526), + [aux_sym_addressof_expression_token1] = ACTIONS(9526), + [aux_sym_type_of_expression_token1] = ACTIONS(9526), + [aux_sym_unary_expression_token1] = ACTIONS(9526), + [sym_string_literal] = ACTIONS(9528), + [sym_number_literal] = ACTIONS(9528), + [aux_sym_boolean_literal_token1] = ACTIONS(9526), + [aux_sym_boolean_literal_token2] = ACTIONS(9526), + [sym_nothing_literal] = ACTIONS(9526), + [sym_null_literal] = ACTIONS(9526), + [sym_empty_literal] = ACTIONS(9526), + [sym_date_literal] = ACTIONS(9528), + [anon_sym_POUND] = ACTIONS(9526), + }, + [STATE(6293)] = { + [sym_identifier] = ACTIONS(9635), + [sym_newline] = ACTIONS(9637), + [anon_sym_COLON] = ACTIONS(9637), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9635), + [aux_sym_frm_property_statement_token1] = ACTIONS(9635), + [anon_sym_DOT] = ACTIONS(9635), + [anon_sym_BANG] = ACTIONS(9637), + [aux_sym__attribute_identifier_token1] = ACTIONS(9635), + [aux_sym_option_statement_token3] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9635), + [aux_sym_preprocessor_const_token1] = ACTIONS(9635), + [sym_static_modifier] = ACTIONS(9635), + [sym__dim_keyword] = ACTIONS(9635), + [sym__redim_keyword] = ACTIONS(9635), + [aux_sym_get_accessor_token1] = ACTIONS(9635), + [aux_sym_set_accessor_token1] = ACTIONS(9635), + [aux_sym_const_declaration_token1] = ACTIONS(9635), + [anon_sym_LPAREN] = ACTIONS(9637), + [aux_sym_as_type_clause_token2] = ACTIONS(9635), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9635), + [aux_sym_visibility_token1] = ACTIONS(9635), + [aux_sym_visibility_token2] = ACTIONS(9635), + [aux_sym_elseif_fragment_token1] = ACTIONS(9635), + [aux_sym_else_fragment_token1] = ACTIONS(9635), + [aux_sym_select_statement_token1] = ACTIONS(9635), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9635), + [aux_sym__for_header_token1] = ACTIONS(9635), + [aux_sym_do_statement_token1] = ACTIONS(9635), + [aux_sym_do_condition_token1] = ACTIONS(9635), + [aux_sym_with_statement_token1] = ACTIONS(9635), + [aux_sym_exit_statement_token1] = ACTIONS(9635), + [sym_end_statement] = ACTIONS(9637), + [aux_sym_on_goto_statement_token1] = ACTIONS(9635), + [aux_sym_on_goto_statement_token2] = ACTIONS(9635), + [aux_sym_on_error_statement_token2] = ACTIONS(9635), + [sym__ambiguous_redim_statement] = ACTIONS(9637), + [aux_sym_erase_statement_token1] = ACTIONS(9635), + [aux_sym_open_statement_token1] = ACTIONS(9635), + [aux_sym_file_mode_token2] = ACTIONS(9635), + [aux_sym_file_access_token2] = ACTIONS(9635), + [aux_sym_file_lock_token2] = ACTIONS(9635), + [aux_sym_print_statement_token1] = ACTIONS(9635), + [anon_sym_PLUS] = ACTIONS(9637), + [anon_sym_DASH] = ACTIONS(9635), + [anon_sym_QMARK] = ACTIONS(9637), + [aux_sym_close_statement_token1] = ACTIONS(9635), + [aux_sym_put_statement_token1] = ACTIONS(9635), + [aux_sym_unlock_statement_token1] = ACTIONS(9635), + [aux_sym_seek_statement_token1] = ACTIONS(9635), + [sym_reset_statement] = ACTIONS(9635), + [aux_sym_raise_event_statement_token1] = ACTIONS(9635), + [sym_stop_statement] = ACTIONS(9635), + [sym_beep_statement] = ACTIONS(9635), + [aux_sym_unload_statement_token1] = ACTIONS(9635), + [aux_sym_def_type_statement_token1] = ACTIONS(9635), + [aux_sym_def_type_statement_token2] = ACTIONS(9635), + [aux_sym_def_type_statement_token3] = ACTIONS(9635), + [aux_sym_def_type_statement_token4] = ACTIONS(9635), + [aux_sym_def_type_statement_token5] = ACTIONS(9635), + [aux_sym_def_type_statement_token6] = ACTIONS(9635), + [aux_sym_def_type_statement_token7] = ACTIONS(9635), + [aux_sym_def_type_statement_token8] = ACTIONS(9635), + [aux_sym_def_type_statement_token9] = ACTIONS(9635), + [aux_sym_def_type_statement_token10] = ACTIONS(9635), + [aux_sym_def_type_statement_token11] = ACTIONS(9635), + [aux_sym_def_type_statement_token12] = ACTIONS(9635), + [aux_sym_def_type_statement_token13] = ACTIONS(9635), + [aux_sym_def_type_statement_token14] = ACTIONS(9635), + [aux_sym_call_statement_token1] = ACTIONS(9635), + [sym__ambiguous_call_statement] = ACTIONS(9635), + [aux_sym_addressof_expression_token1] = ACTIONS(9635), + [aux_sym_type_of_expression_token1] = ACTIONS(9635), + [aux_sym_unary_expression_token1] = ACTIONS(9635), + [sym_string_literal] = ACTIONS(9637), + [sym_number_literal] = ACTIONS(9637), + [aux_sym_boolean_literal_token1] = ACTIONS(9635), + [aux_sym_boolean_literal_token2] = ACTIONS(9635), + [sym_nothing_literal] = ACTIONS(9635), + [sym_null_literal] = ACTIONS(9635), + [sym_empty_literal] = ACTIONS(9635), + [sym_date_literal] = ACTIONS(9637), + [anon_sym_POUND] = ACTIONS(9635), + }, + [STATE(6294)] = { + [sym_identifier] = ACTIONS(9818), + [sym_newline] = ACTIONS(9820), + [anon_sym_COLON] = ACTIONS(9820), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9818), + [aux_sym_frm_property_statement_token1] = ACTIONS(9818), + [anon_sym_DOT] = ACTIONS(9818), + [anon_sym_BANG] = ACTIONS(9820), + [aux_sym__attribute_identifier_token1] = ACTIONS(9818), + [aux_sym_option_statement_token3] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9818), + [aux_sym_preprocessor_const_token1] = ACTIONS(9818), + [sym_static_modifier] = ACTIONS(9818), + [sym__dim_keyword] = ACTIONS(9818), + [sym__redim_keyword] = ACTIONS(9818), + [aux_sym_get_accessor_token1] = ACTIONS(9818), + [aux_sym_set_accessor_token1] = ACTIONS(9818), + [aux_sym_const_declaration_token1] = ACTIONS(9818), + [anon_sym_LPAREN] = ACTIONS(9820), + [aux_sym_as_type_clause_token2] = ACTIONS(9818), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9818), + [aux_sym_visibility_token1] = ACTIONS(9818), + [aux_sym_visibility_token2] = ACTIONS(9818), + [aux_sym_elseif_fragment_token1] = ACTIONS(9818), + [aux_sym_else_fragment_token1] = ACTIONS(9818), + [aux_sym_select_statement_token1] = ACTIONS(9818), + [aux_sym__for_header_token1] = ACTIONS(9818), + [aux_sym_do_statement_token1] = ACTIONS(9818), + [aux_sym_do_statement_token2] = ACTIONS(9818), + [aux_sym_do_condition_token1] = ACTIONS(9818), + [aux_sym_with_statement_token1] = ACTIONS(9818), + [aux_sym_exit_statement_token1] = ACTIONS(9818), + [sym_end_statement] = ACTIONS(9820), + [aux_sym_on_goto_statement_token1] = ACTIONS(9818), + [aux_sym_on_goto_statement_token2] = ACTIONS(9818), + [aux_sym_on_error_statement_token2] = ACTIONS(9818), + [sym__ambiguous_redim_statement] = ACTIONS(9820), + [aux_sym_erase_statement_token1] = ACTIONS(9818), + [aux_sym_open_statement_token1] = ACTIONS(9818), + [aux_sym_file_mode_token2] = ACTIONS(9818), + [aux_sym_file_access_token2] = ACTIONS(9818), + [aux_sym_file_lock_token2] = ACTIONS(9818), + [aux_sym_print_statement_token1] = ACTIONS(9818), + [anon_sym_PLUS] = ACTIONS(9820), + [anon_sym_DASH] = ACTIONS(9818), + [anon_sym_QMARK] = ACTIONS(9820), + [aux_sym_close_statement_token1] = ACTIONS(9818), + [aux_sym_put_statement_token1] = ACTIONS(9818), + [aux_sym_unlock_statement_token1] = ACTIONS(9818), + [aux_sym_seek_statement_token1] = ACTIONS(9818), + [sym_reset_statement] = ACTIONS(9818), + [aux_sym_raise_event_statement_token1] = ACTIONS(9818), + [sym_stop_statement] = ACTIONS(9818), + [sym_beep_statement] = ACTIONS(9818), + [aux_sym_unload_statement_token1] = ACTIONS(9818), + [aux_sym_def_type_statement_token1] = ACTIONS(9818), + [aux_sym_def_type_statement_token2] = ACTIONS(9818), + [aux_sym_def_type_statement_token3] = ACTIONS(9818), + [aux_sym_def_type_statement_token4] = ACTIONS(9818), + [aux_sym_def_type_statement_token5] = ACTIONS(9818), + [aux_sym_def_type_statement_token6] = ACTIONS(9818), + [aux_sym_def_type_statement_token7] = ACTIONS(9818), + [aux_sym_def_type_statement_token8] = ACTIONS(9818), + [aux_sym_def_type_statement_token9] = ACTIONS(9818), + [aux_sym_def_type_statement_token10] = ACTIONS(9818), + [aux_sym_def_type_statement_token11] = ACTIONS(9818), + [aux_sym_def_type_statement_token12] = ACTIONS(9818), + [aux_sym_def_type_statement_token13] = ACTIONS(9818), + [aux_sym_def_type_statement_token14] = ACTIONS(9818), + [aux_sym_call_statement_token1] = ACTIONS(9818), + [sym__ambiguous_call_statement] = ACTIONS(9818), + [aux_sym_addressof_expression_token1] = ACTIONS(9818), + [aux_sym_type_of_expression_token1] = ACTIONS(9818), + [aux_sym_unary_expression_token1] = ACTIONS(9818), + [sym_string_literal] = ACTIONS(9820), + [sym_number_literal] = ACTIONS(9820), + [aux_sym_boolean_literal_token1] = ACTIONS(9818), + [aux_sym_boolean_literal_token2] = ACTIONS(9818), + [sym_nothing_literal] = ACTIONS(9818), + [sym_null_literal] = ACTIONS(9818), + [sym_empty_literal] = ACTIONS(9818), + [sym_date_literal] = ACTIONS(9820), + [anon_sym_POUND] = ACTIONS(9818), + }, + [STATE(6295)] = { + [sym_identifier] = ACTIONS(9658), + [sym_newline] = ACTIONS(9660), + [anon_sym_COLON] = ACTIONS(9660), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9658), + [aux_sym_frm_property_statement_token1] = ACTIONS(9658), + [anon_sym_DOT] = ACTIONS(9658), + [anon_sym_BANG] = ACTIONS(9660), + [aux_sym__attribute_identifier_token1] = ACTIONS(9658), + [aux_sym_option_statement_token3] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9658), + [aux_sym_preprocessor_const_token1] = ACTIONS(9658), + [sym_static_modifier] = ACTIONS(9658), + [sym__dim_keyword] = ACTIONS(9658), + [sym__redim_keyword] = ACTIONS(9658), + [aux_sym_get_accessor_token1] = ACTIONS(9658), + [aux_sym_set_accessor_token1] = ACTIONS(9658), + [aux_sym_const_declaration_token1] = ACTIONS(9658), + [anon_sym_LPAREN] = ACTIONS(9660), + [aux_sym_as_type_clause_token2] = ACTIONS(9658), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9658), + [aux_sym_visibility_token1] = ACTIONS(9658), + [aux_sym_visibility_token2] = ACTIONS(9658), + [aux_sym_elseif_fragment_token1] = ACTIONS(9658), + [aux_sym_else_fragment_token1] = ACTIONS(9658), + [aux_sym_select_statement_token1] = ACTIONS(9658), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9658), + [aux_sym__for_header_token1] = ACTIONS(9658), + [aux_sym_do_statement_token1] = ACTIONS(9658), + [aux_sym_do_condition_token1] = ACTIONS(9658), + [aux_sym_with_statement_token1] = ACTIONS(9658), + [aux_sym_exit_statement_token1] = ACTIONS(9658), + [sym_end_statement] = ACTIONS(9660), + [aux_sym_on_goto_statement_token1] = ACTIONS(9658), + [aux_sym_on_goto_statement_token2] = ACTIONS(9658), + [aux_sym_on_error_statement_token2] = ACTIONS(9658), + [sym__ambiguous_redim_statement] = ACTIONS(9660), + [aux_sym_erase_statement_token1] = ACTIONS(9658), + [aux_sym_open_statement_token1] = ACTIONS(9658), + [aux_sym_file_mode_token2] = ACTIONS(9658), + [aux_sym_file_access_token2] = ACTIONS(9658), + [aux_sym_file_lock_token2] = ACTIONS(9658), + [aux_sym_print_statement_token1] = ACTIONS(9658), + [anon_sym_PLUS] = ACTIONS(9660), + [anon_sym_DASH] = ACTIONS(9658), + [anon_sym_QMARK] = ACTIONS(9660), + [aux_sym_close_statement_token1] = ACTIONS(9658), + [aux_sym_put_statement_token1] = ACTIONS(9658), + [aux_sym_unlock_statement_token1] = ACTIONS(9658), + [aux_sym_seek_statement_token1] = ACTIONS(9658), + [sym_reset_statement] = ACTIONS(9658), + [aux_sym_raise_event_statement_token1] = ACTIONS(9658), + [sym_stop_statement] = ACTIONS(9658), + [sym_beep_statement] = ACTIONS(9658), + [aux_sym_unload_statement_token1] = ACTIONS(9658), + [aux_sym_def_type_statement_token1] = ACTIONS(9658), + [aux_sym_def_type_statement_token2] = ACTIONS(9658), + [aux_sym_def_type_statement_token3] = ACTIONS(9658), + [aux_sym_def_type_statement_token4] = ACTIONS(9658), + [aux_sym_def_type_statement_token5] = ACTIONS(9658), + [aux_sym_def_type_statement_token6] = ACTIONS(9658), + [aux_sym_def_type_statement_token7] = ACTIONS(9658), + [aux_sym_def_type_statement_token8] = ACTIONS(9658), + [aux_sym_def_type_statement_token9] = ACTIONS(9658), + [aux_sym_def_type_statement_token10] = ACTIONS(9658), + [aux_sym_def_type_statement_token11] = ACTIONS(9658), + [aux_sym_def_type_statement_token12] = ACTIONS(9658), + [aux_sym_def_type_statement_token13] = ACTIONS(9658), + [aux_sym_def_type_statement_token14] = ACTIONS(9658), + [aux_sym_call_statement_token1] = ACTIONS(9658), + [sym__ambiguous_call_statement] = ACTIONS(9658), + [aux_sym_addressof_expression_token1] = ACTIONS(9658), + [aux_sym_type_of_expression_token1] = ACTIONS(9658), + [aux_sym_unary_expression_token1] = ACTIONS(9658), + [sym_string_literal] = ACTIONS(9660), + [sym_number_literal] = ACTIONS(9660), + [aux_sym_boolean_literal_token1] = ACTIONS(9658), + [aux_sym_boolean_literal_token2] = ACTIONS(9658), + [sym_nothing_literal] = ACTIONS(9658), + [sym_null_literal] = ACTIONS(9658), + [sym_empty_literal] = ACTIONS(9658), + [sym_date_literal] = ACTIONS(9660), + [anon_sym_POUND] = ACTIONS(9658), + }, + [STATE(6296)] = { + [sym_identifier] = ACTIONS(9740), + [sym_newline] = ACTIONS(9742), + [anon_sym_COLON] = ACTIONS(9742), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9740), + [aux_sym_frm_property_statement_token1] = ACTIONS(9740), + [anon_sym_DOT] = ACTIONS(9740), + [anon_sym_BANG] = ACTIONS(9742), + [aux_sym__attribute_identifier_token1] = ACTIONS(9740), + [aux_sym_option_statement_token3] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9740), + [aux_sym_preprocessor_const_token1] = ACTIONS(9740), + [sym_static_modifier] = ACTIONS(9740), + [sym__dim_keyword] = ACTIONS(9740), + [sym__redim_keyword] = ACTIONS(9740), + [aux_sym_get_accessor_token1] = ACTIONS(9740), + [aux_sym_set_accessor_token1] = ACTIONS(9740), + [aux_sym_const_declaration_token1] = ACTIONS(9740), + [anon_sym_LPAREN] = ACTIONS(9742), + [aux_sym_as_type_clause_token2] = ACTIONS(9740), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9740), + [aux_sym_visibility_token1] = ACTIONS(9740), + [aux_sym_visibility_token2] = ACTIONS(9740), + [aux_sym_elseif_fragment_token1] = ACTIONS(9740), + [aux_sym_else_fragment_token1] = ACTIONS(9740), + [aux_sym_select_statement_token1] = ACTIONS(9740), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9740), + [aux_sym__for_header_token1] = ACTIONS(9740), + [aux_sym_do_statement_token1] = ACTIONS(9740), + [aux_sym_do_condition_token1] = ACTIONS(9740), + [aux_sym_with_statement_token1] = ACTIONS(9740), + [aux_sym_exit_statement_token1] = ACTIONS(9740), + [sym_end_statement] = ACTIONS(9742), + [aux_sym_on_goto_statement_token1] = ACTIONS(9740), + [aux_sym_on_goto_statement_token2] = ACTIONS(9740), + [aux_sym_on_error_statement_token2] = ACTIONS(9740), + [sym__ambiguous_redim_statement] = ACTIONS(9742), + [aux_sym_erase_statement_token1] = ACTIONS(9740), + [aux_sym_open_statement_token1] = ACTIONS(9740), + [aux_sym_file_mode_token2] = ACTIONS(9740), + [aux_sym_file_access_token2] = ACTIONS(9740), + [aux_sym_file_lock_token2] = ACTIONS(9740), + [aux_sym_print_statement_token1] = ACTIONS(9740), + [anon_sym_PLUS] = ACTIONS(9742), + [anon_sym_DASH] = ACTIONS(9740), + [anon_sym_QMARK] = ACTIONS(9742), + [aux_sym_close_statement_token1] = ACTIONS(9740), + [aux_sym_put_statement_token1] = ACTIONS(9740), + [aux_sym_unlock_statement_token1] = ACTIONS(9740), + [aux_sym_seek_statement_token1] = ACTIONS(9740), + [sym_reset_statement] = ACTIONS(9740), + [aux_sym_raise_event_statement_token1] = ACTIONS(9740), + [sym_stop_statement] = ACTIONS(9740), + [sym_beep_statement] = ACTIONS(9740), + [aux_sym_unload_statement_token1] = ACTIONS(9740), + [aux_sym_def_type_statement_token1] = ACTIONS(9740), + [aux_sym_def_type_statement_token2] = ACTIONS(9740), + [aux_sym_def_type_statement_token3] = ACTIONS(9740), + [aux_sym_def_type_statement_token4] = ACTIONS(9740), + [aux_sym_def_type_statement_token5] = ACTIONS(9740), + [aux_sym_def_type_statement_token6] = ACTIONS(9740), + [aux_sym_def_type_statement_token7] = ACTIONS(9740), + [aux_sym_def_type_statement_token8] = ACTIONS(9740), + [aux_sym_def_type_statement_token9] = ACTIONS(9740), + [aux_sym_def_type_statement_token10] = ACTIONS(9740), + [aux_sym_def_type_statement_token11] = ACTIONS(9740), + [aux_sym_def_type_statement_token12] = ACTIONS(9740), + [aux_sym_def_type_statement_token13] = ACTIONS(9740), + [aux_sym_def_type_statement_token14] = ACTIONS(9740), + [aux_sym_call_statement_token1] = ACTIONS(9740), + [sym__ambiguous_call_statement] = ACTIONS(9740), + [aux_sym_addressof_expression_token1] = ACTIONS(9740), + [aux_sym_type_of_expression_token1] = ACTIONS(9740), + [aux_sym_unary_expression_token1] = ACTIONS(9740), + [sym_string_literal] = ACTIONS(9742), + [sym_number_literal] = ACTIONS(9742), + [aux_sym_boolean_literal_token1] = ACTIONS(9740), + [aux_sym_boolean_literal_token2] = ACTIONS(9740), + [sym_nothing_literal] = ACTIONS(9740), + [sym_null_literal] = ACTIONS(9740), + [sym_empty_literal] = ACTIONS(9740), + [sym_date_literal] = ACTIONS(9742), + [anon_sym_POUND] = ACTIONS(9740), + }, + [STATE(6297)] = { + [sym_identifier] = ACTIONS(9744), + [sym_newline] = ACTIONS(9746), + [anon_sym_COLON] = ACTIONS(9746), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9744), + [aux_sym_frm_property_statement_token1] = ACTIONS(9744), + [anon_sym_DOT] = ACTIONS(9744), + [anon_sym_BANG] = ACTIONS(9746), + [aux_sym__attribute_identifier_token1] = ACTIONS(9744), + [aux_sym_option_statement_token3] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9744), + [aux_sym_preprocessor_const_token1] = ACTIONS(9744), + [sym_static_modifier] = ACTIONS(9744), + [sym__dim_keyword] = ACTIONS(9744), + [sym__redim_keyword] = ACTIONS(9744), + [aux_sym_get_accessor_token1] = ACTIONS(9744), + [aux_sym_set_accessor_token1] = ACTIONS(9744), + [aux_sym_const_declaration_token1] = ACTIONS(9744), + [anon_sym_LPAREN] = ACTIONS(9746), + [aux_sym_as_type_clause_token2] = ACTIONS(9744), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9744), + [aux_sym_visibility_token1] = ACTIONS(9744), + [aux_sym_visibility_token2] = ACTIONS(9744), + [aux_sym_elseif_fragment_token1] = ACTIONS(9744), + [aux_sym_else_fragment_token1] = ACTIONS(9744), + [aux_sym_select_statement_token1] = ACTIONS(9744), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9744), + [aux_sym__for_header_token1] = ACTIONS(9744), + [aux_sym_do_statement_token1] = ACTIONS(9744), + [aux_sym_do_condition_token1] = ACTIONS(9744), + [aux_sym_with_statement_token1] = ACTIONS(9744), + [aux_sym_exit_statement_token1] = ACTIONS(9744), + [sym_end_statement] = ACTIONS(9746), + [aux_sym_on_goto_statement_token1] = ACTIONS(9744), + [aux_sym_on_goto_statement_token2] = ACTIONS(9744), + [aux_sym_on_error_statement_token2] = ACTIONS(9744), + [sym__ambiguous_redim_statement] = ACTIONS(9746), + [aux_sym_erase_statement_token1] = ACTIONS(9744), + [aux_sym_open_statement_token1] = ACTIONS(9744), + [aux_sym_file_mode_token2] = ACTIONS(9744), + [aux_sym_file_access_token2] = ACTIONS(9744), + [aux_sym_file_lock_token2] = ACTIONS(9744), + [aux_sym_print_statement_token1] = ACTIONS(9744), + [anon_sym_PLUS] = ACTIONS(9746), + [anon_sym_DASH] = ACTIONS(9744), + [anon_sym_QMARK] = ACTIONS(9746), + [aux_sym_close_statement_token1] = ACTIONS(9744), + [aux_sym_put_statement_token1] = ACTIONS(9744), + [aux_sym_unlock_statement_token1] = ACTIONS(9744), + [aux_sym_seek_statement_token1] = ACTIONS(9744), + [sym_reset_statement] = ACTIONS(9744), + [aux_sym_raise_event_statement_token1] = ACTIONS(9744), + [sym_stop_statement] = ACTIONS(9744), + [sym_beep_statement] = ACTIONS(9744), + [aux_sym_unload_statement_token1] = ACTIONS(9744), + [aux_sym_def_type_statement_token1] = ACTIONS(9744), + [aux_sym_def_type_statement_token2] = ACTIONS(9744), + [aux_sym_def_type_statement_token3] = ACTIONS(9744), + [aux_sym_def_type_statement_token4] = ACTIONS(9744), + [aux_sym_def_type_statement_token5] = ACTIONS(9744), + [aux_sym_def_type_statement_token6] = ACTIONS(9744), + [aux_sym_def_type_statement_token7] = ACTIONS(9744), + [aux_sym_def_type_statement_token8] = ACTIONS(9744), + [aux_sym_def_type_statement_token9] = ACTIONS(9744), + [aux_sym_def_type_statement_token10] = ACTIONS(9744), + [aux_sym_def_type_statement_token11] = ACTIONS(9744), + [aux_sym_def_type_statement_token12] = ACTIONS(9744), + [aux_sym_def_type_statement_token13] = ACTIONS(9744), + [aux_sym_def_type_statement_token14] = ACTIONS(9744), + [aux_sym_call_statement_token1] = ACTIONS(9744), + [sym__ambiguous_call_statement] = ACTIONS(9744), + [aux_sym_addressof_expression_token1] = ACTIONS(9744), + [aux_sym_type_of_expression_token1] = ACTIONS(9744), + [aux_sym_unary_expression_token1] = ACTIONS(9744), + [sym_string_literal] = ACTIONS(9746), + [sym_number_literal] = ACTIONS(9746), + [aux_sym_boolean_literal_token1] = ACTIONS(9744), + [aux_sym_boolean_literal_token2] = ACTIONS(9744), + [sym_nothing_literal] = ACTIONS(9744), + [sym_null_literal] = ACTIONS(9744), + [sym_empty_literal] = ACTIONS(9744), + [sym_date_literal] = ACTIONS(9746), + [anon_sym_POUND] = ACTIONS(9744), + }, + [STATE(6298)] = { + [sym_identifier] = ACTIONS(9748), + [sym_newline] = ACTIONS(9750), + [anon_sym_COLON] = ACTIONS(9750), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9748), + [aux_sym_frm_property_statement_token1] = ACTIONS(9748), + [anon_sym_DOT] = ACTIONS(9748), + [anon_sym_BANG] = ACTIONS(9750), + [aux_sym__attribute_identifier_token1] = ACTIONS(9748), + [aux_sym_option_statement_token3] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9748), + [aux_sym_preprocessor_const_token1] = ACTIONS(9748), + [sym_static_modifier] = ACTIONS(9748), + [sym__dim_keyword] = ACTIONS(9748), + [sym__redim_keyword] = ACTIONS(9748), + [aux_sym_get_accessor_token1] = ACTIONS(9748), + [aux_sym_set_accessor_token1] = ACTIONS(9748), + [aux_sym_const_declaration_token1] = ACTIONS(9748), + [anon_sym_LPAREN] = ACTIONS(9750), + [aux_sym_as_type_clause_token2] = ACTIONS(9748), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9748), + [aux_sym_visibility_token1] = ACTIONS(9748), + [aux_sym_visibility_token2] = ACTIONS(9748), + [aux_sym_elseif_fragment_token1] = ACTIONS(9748), + [aux_sym_else_fragment_token1] = ACTIONS(9748), + [aux_sym_select_statement_token1] = ACTIONS(9748), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9748), + [aux_sym__for_header_token1] = ACTIONS(9748), + [aux_sym_do_statement_token1] = ACTIONS(9748), + [aux_sym_do_condition_token1] = ACTIONS(9748), + [aux_sym_with_statement_token1] = ACTIONS(9748), + [aux_sym_exit_statement_token1] = ACTIONS(9748), + [sym_end_statement] = ACTIONS(9750), + [aux_sym_on_goto_statement_token1] = ACTIONS(9748), + [aux_sym_on_goto_statement_token2] = ACTIONS(9748), + [aux_sym_on_error_statement_token2] = ACTIONS(9748), + [sym__ambiguous_redim_statement] = ACTIONS(9750), + [aux_sym_erase_statement_token1] = ACTIONS(9748), + [aux_sym_open_statement_token1] = ACTIONS(9748), + [aux_sym_file_mode_token2] = ACTIONS(9748), + [aux_sym_file_access_token2] = ACTIONS(9748), + [aux_sym_file_lock_token2] = ACTIONS(9748), + [aux_sym_print_statement_token1] = ACTIONS(9748), + [anon_sym_PLUS] = ACTIONS(9750), + [anon_sym_DASH] = ACTIONS(9748), + [anon_sym_QMARK] = ACTIONS(9750), + [aux_sym_close_statement_token1] = ACTIONS(9748), + [aux_sym_put_statement_token1] = ACTIONS(9748), + [aux_sym_unlock_statement_token1] = ACTIONS(9748), + [aux_sym_seek_statement_token1] = ACTIONS(9748), + [sym_reset_statement] = ACTIONS(9748), + [aux_sym_raise_event_statement_token1] = ACTIONS(9748), + [sym_stop_statement] = ACTIONS(9748), + [sym_beep_statement] = ACTIONS(9748), + [aux_sym_unload_statement_token1] = ACTIONS(9748), + [aux_sym_def_type_statement_token1] = ACTIONS(9748), + [aux_sym_def_type_statement_token2] = ACTIONS(9748), + [aux_sym_def_type_statement_token3] = ACTIONS(9748), + [aux_sym_def_type_statement_token4] = ACTIONS(9748), + [aux_sym_def_type_statement_token5] = ACTIONS(9748), + [aux_sym_def_type_statement_token6] = ACTIONS(9748), + [aux_sym_def_type_statement_token7] = ACTIONS(9748), + [aux_sym_def_type_statement_token8] = ACTIONS(9748), + [aux_sym_def_type_statement_token9] = ACTIONS(9748), + [aux_sym_def_type_statement_token10] = ACTIONS(9748), + [aux_sym_def_type_statement_token11] = ACTIONS(9748), + [aux_sym_def_type_statement_token12] = ACTIONS(9748), + [aux_sym_def_type_statement_token13] = ACTIONS(9748), + [aux_sym_def_type_statement_token14] = ACTIONS(9748), + [aux_sym_call_statement_token1] = ACTIONS(9748), + [sym__ambiguous_call_statement] = ACTIONS(9748), + [aux_sym_addressof_expression_token1] = ACTIONS(9748), + [aux_sym_type_of_expression_token1] = ACTIONS(9748), + [aux_sym_unary_expression_token1] = ACTIONS(9748), + [sym_string_literal] = ACTIONS(9750), + [sym_number_literal] = ACTIONS(9750), + [aux_sym_boolean_literal_token1] = ACTIONS(9748), + [aux_sym_boolean_literal_token2] = ACTIONS(9748), + [sym_nothing_literal] = ACTIONS(9748), + [sym_null_literal] = ACTIONS(9748), + [sym_empty_literal] = ACTIONS(9748), + [sym_date_literal] = ACTIONS(9750), + [anon_sym_POUND] = ACTIONS(9748), + }, + [STATE(6299)] = { + [sym_identifier] = ACTIONS(9784), + [sym_newline] = ACTIONS(9786), + [anon_sym_COLON] = ACTIONS(9786), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9784), + [aux_sym_frm_property_statement_token1] = ACTIONS(9784), + [anon_sym_DOT] = ACTIONS(9784), + [anon_sym_BANG] = ACTIONS(9786), + [aux_sym__attribute_identifier_token1] = ACTIONS(9784), + [aux_sym_option_statement_token3] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9784), + [aux_sym_preprocessor_const_token1] = ACTIONS(9784), + [sym_static_modifier] = ACTIONS(9784), + [sym__dim_keyword] = ACTIONS(9784), + [sym__redim_keyword] = ACTIONS(9784), + [aux_sym_get_accessor_token1] = ACTIONS(9784), + [aux_sym_set_accessor_token1] = ACTIONS(9784), + [aux_sym_const_declaration_token1] = ACTIONS(9784), + [anon_sym_LPAREN] = ACTIONS(9786), + [aux_sym_as_type_clause_token2] = ACTIONS(9784), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9784), + [aux_sym_visibility_token1] = ACTIONS(9784), + [aux_sym_visibility_token2] = ACTIONS(9784), + [aux_sym_elseif_fragment_token1] = ACTIONS(9784), + [aux_sym_else_fragment_token1] = ACTIONS(9784), + [aux_sym_select_statement_token1] = ACTIONS(9784), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9784), + [aux_sym__for_header_token1] = ACTIONS(9784), + [aux_sym_do_statement_token1] = ACTIONS(9784), + [aux_sym_do_condition_token1] = ACTIONS(9784), + [aux_sym_with_statement_token1] = ACTIONS(9784), + [aux_sym_exit_statement_token1] = ACTIONS(9784), + [sym_end_statement] = ACTIONS(9786), + [aux_sym_on_goto_statement_token1] = ACTIONS(9784), + [aux_sym_on_goto_statement_token2] = ACTIONS(9784), + [aux_sym_on_error_statement_token2] = ACTIONS(9784), + [sym__ambiguous_redim_statement] = ACTIONS(9786), + [aux_sym_erase_statement_token1] = ACTIONS(9784), + [aux_sym_open_statement_token1] = ACTIONS(9784), + [aux_sym_file_mode_token2] = ACTIONS(9784), + [aux_sym_file_access_token2] = ACTIONS(9784), + [aux_sym_file_lock_token2] = ACTIONS(9784), + [aux_sym_print_statement_token1] = ACTIONS(9784), + [anon_sym_PLUS] = ACTIONS(9786), + [anon_sym_DASH] = ACTIONS(9784), + [anon_sym_QMARK] = ACTIONS(9786), + [aux_sym_close_statement_token1] = ACTIONS(9784), + [aux_sym_put_statement_token1] = ACTIONS(9784), + [aux_sym_unlock_statement_token1] = ACTIONS(9784), + [aux_sym_seek_statement_token1] = ACTIONS(9784), + [sym_reset_statement] = ACTIONS(9784), + [aux_sym_raise_event_statement_token1] = ACTIONS(9784), + [sym_stop_statement] = ACTIONS(9784), + [sym_beep_statement] = ACTIONS(9784), + [aux_sym_unload_statement_token1] = ACTIONS(9784), + [aux_sym_def_type_statement_token1] = ACTIONS(9784), + [aux_sym_def_type_statement_token2] = ACTIONS(9784), + [aux_sym_def_type_statement_token3] = ACTIONS(9784), + [aux_sym_def_type_statement_token4] = ACTIONS(9784), + [aux_sym_def_type_statement_token5] = ACTIONS(9784), + [aux_sym_def_type_statement_token6] = ACTIONS(9784), + [aux_sym_def_type_statement_token7] = ACTIONS(9784), + [aux_sym_def_type_statement_token8] = ACTIONS(9784), + [aux_sym_def_type_statement_token9] = ACTIONS(9784), + [aux_sym_def_type_statement_token10] = ACTIONS(9784), + [aux_sym_def_type_statement_token11] = ACTIONS(9784), + [aux_sym_def_type_statement_token12] = ACTIONS(9784), + [aux_sym_def_type_statement_token13] = ACTIONS(9784), + [aux_sym_def_type_statement_token14] = ACTIONS(9784), + [aux_sym_call_statement_token1] = ACTIONS(9784), + [sym__ambiguous_call_statement] = ACTIONS(9784), + [aux_sym_addressof_expression_token1] = ACTIONS(9784), + [aux_sym_type_of_expression_token1] = ACTIONS(9784), + [aux_sym_unary_expression_token1] = ACTIONS(9784), + [sym_string_literal] = ACTIONS(9786), + [sym_number_literal] = ACTIONS(9786), + [aux_sym_boolean_literal_token1] = ACTIONS(9784), + [aux_sym_boolean_literal_token2] = ACTIONS(9784), + [sym_nothing_literal] = ACTIONS(9784), + [sym_null_literal] = ACTIONS(9784), + [sym_empty_literal] = ACTIONS(9784), + [sym_date_literal] = ACTIONS(9786), + [anon_sym_POUND] = ACTIONS(9784), + }, + [STATE(6300)] = { + [sym_identifier] = ACTIONS(8881), + [sym_newline] = ACTIONS(8884), + [anon_sym_COLON] = ACTIONS(8884), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8881), + [aux_sym_frm_property_statement_token1] = ACTIONS(8881), + [anon_sym_DOT] = ACTIONS(8881), + [anon_sym_BANG] = ACTIONS(8884), + [aux_sym__attribute_identifier_token1] = ACTIONS(8881), + [aux_sym_option_statement_token3] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8881), + [aux_sym_preprocessor_const_token1] = ACTIONS(8881), + [sym_static_modifier] = ACTIONS(8881), + [sym__dim_keyword] = ACTIONS(8881), + [sym__redim_keyword] = ACTIONS(8881), + [aux_sym_get_accessor_token1] = ACTIONS(8881), + [aux_sym_set_accessor_token1] = ACTIONS(8881), + [aux_sym_const_declaration_token1] = ACTIONS(8881), + [anon_sym_LPAREN] = ACTIONS(8884), + [aux_sym_as_type_clause_token2] = ACTIONS(8881), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8881), + [aux_sym_visibility_token1] = ACTIONS(8881), + [aux_sym_visibility_token2] = ACTIONS(8881), + [aux_sym_elseif_fragment_token1] = ACTIONS(8881), + [aux_sym_else_fragment_token1] = ACTIONS(8881), + [aux_sym_select_statement_token1] = ACTIONS(8881), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8949), + [aux_sym__for_header_token1] = ACTIONS(8881), + [aux_sym_do_statement_token1] = ACTIONS(8881), + [aux_sym_do_condition_token1] = ACTIONS(8881), + [aux_sym_with_statement_token1] = ACTIONS(8881), + [aux_sym_exit_statement_token1] = ACTIONS(8881), + [sym_end_statement] = ACTIONS(8884), + [aux_sym_on_goto_statement_token1] = ACTIONS(8881), + [aux_sym_on_goto_statement_token2] = ACTIONS(8881), + [aux_sym_on_error_statement_token2] = ACTIONS(8881), + [sym__ambiguous_redim_statement] = ACTIONS(8884), + [aux_sym_erase_statement_token1] = ACTIONS(8881), + [aux_sym_open_statement_token1] = ACTIONS(8881), + [aux_sym_file_mode_token2] = ACTIONS(8881), + [aux_sym_file_access_token2] = ACTIONS(8881), + [aux_sym_file_lock_token2] = ACTIONS(8881), + [aux_sym_print_statement_token1] = ACTIONS(8881), + [anon_sym_PLUS] = ACTIONS(8884), + [anon_sym_DASH] = ACTIONS(8881), + [anon_sym_QMARK] = ACTIONS(8884), + [aux_sym_close_statement_token1] = ACTIONS(8881), + [aux_sym_put_statement_token1] = ACTIONS(8881), + [aux_sym_unlock_statement_token1] = ACTIONS(8881), + [aux_sym_seek_statement_token1] = ACTIONS(8881), + [sym_reset_statement] = ACTIONS(8881), + [aux_sym_raise_event_statement_token1] = ACTIONS(8881), + [sym_stop_statement] = ACTIONS(8881), + [sym_beep_statement] = ACTIONS(8881), + [aux_sym_unload_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token2] = ACTIONS(8881), + [aux_sym_def_type_statement_token3] = ACTIONS(8881), + [aux_sym_def_type_statement_token4] = ACTIONS(8881), + [aux_sym_def_type_statement_token5] = ACTIONS(8881), + [aux_sym_def_type_statement_token6] = ACTIONS(8881), + [aux_sym_def_type_statement_token7] = ACTIONS(8881), + [aux_sym_def_type_statement_token8] = ACTIONS(8881), + [aux_sym_def_type_statement_token9] = ACTIONS(8881), + [aux_sym_def_type_statement_token10] = ACTIONS(8881), + [aux_sym_def_type_statement_token11] = ACTIONS(8881), + [aux_sym_def_type_statement_token12] = ACTIONS(8881), + [aux_sym_def_type_statement_token13] = ACTIONS(8881), + [aux_sym_def_type_statement_token14] = ACTIONS(8881), + [aux_sym_call_statement_token1] = ACTIONS(8881), + [sym__ambiguous_call_statement] = ACTIONS(8881), + [aux_sym_addressof_expression_token1] = ACTIONS(8881), + [aux_sym_type_of_expression_token1] = ACTIONS(8881), + [aux_sym_unary_expression_token1] = ACTIONS(8881), + [sym_string_literal] = ACTIONS(8884), + [sym_number_literal] = ACTIONS(8884), + [aux_sym_boolean_literal_token1] = ACTIONS(8881), + [aux_sym_boolean_literal_token2] = ACTIONS(8881), + [sym_nothing_literal] = ACTIONS(8881), + [sym_null_literal] = ACTIONS(8881), + [sym_empty_literal] = ACTIONS(8881), + [sym_date_literal] = ACTIONS(8884), + [anon_sym_POUND] = ACTIONS(8881), + }, + [STATE(6301)] = { + [sym_identifier] = ACTIONS(8915), + [sym_newline] = ACTIONS(8918), + [anon_sym_COLON] = ACTIONS(8918), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8915), + [aux_sym_frm_property_statement_token1] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8915), + [anon_sym_BANG] = ACTIONS(8918), + [aux_sym__attribute_identifier_token1] = ACTIONS(8915), + [aux_sym_option_statement_token3] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8915), + [aux_sym_preprocessor_const_token1] = ACTIONS(8915), + [sym_static_modifier] = ACTIONS(8915), + [sym__dim_keyword] = ACTIONS(8915), + [sym__redim_keyword] = ACTIONS(8915), + [aux_sym_get_accessor_token1] = ACTIONS(8915), + [aux_sym_set_accessor_token1] = ACTIONS(8915), + [aux_sym_const_declaration_token1] = ACTIONS(8915), + [anon_sym_LPAREN] = ACTIONS(8918), + [aux_sym_as_type_clause_token2] = ACTIONS(8915), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8915), + [aux_sym_visibility_token1] = ACTIONS(8915), + [aux_sym_visibility_token2] = ACTIONS(8915), + [aux_sym_elseif_fragment_token1] = ACTIONS(8915), + [aux_sym_else_fragment_token1] = ACTIONS(8915), + [aux_sym_select_statement_token1] = ACTIONS(8915), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8915), + [aux_sym_do_statement_token1] = ACTIONS(8915), + [aux_sym_do_condition_token1] = ACTIONS(8915), + [aux_sym_with_statement_token1] = ACTIONS(8915), + [aux_sym_exit_statement_token1] = ACTIONS(8915), + [sym_end_statement] = ACTIONS(8918), + [aux_sym_on_goto_statement_token1] = ACTIONS(8915), + [aux_sym_on_goto_statement_token2] = ACTIONS(8915), + [aux_sym_on_error_statement_token2] = ACTIONS(8915), + [sym__ambiguous_redim_statement] = ACTIONS(8918), + [aux_sym_erase_statement_token1] = ACTIONS(8915), + [aux_sym_open_statement_token1] = ACTIONS(8915), + [aux_sym_file_mode_token2] = ACTIONS(8915), + [aux_sym_file_access_token2] = ACTIONS(8915), + [aux_sym_file_lock_token2] = ACTIONS(8915), + [aux_sym_print_statement_token1] = ACTIONS(8915), + [anon_sym_PLUS] = ACTIONS(8918), + [anon_sym_DASH] = ACTIONS(8915), + [anon_sym_QMARK] = ACTIONS(8918), + [aux_sym_close_statement_token1] = ACTIONS(8915), + [aux_sym_put_statement_token1] = ACTIONS(8915), + [aux_sym_unlock_statement_token1] = ACTIONS(8915), + [aux_sym_seek_statement_token1] = ACTIONS(8915), + [sym_reset_statement] = ACTIONS(8915), + [aux_sym_raise_event_statement_token1] = ACTIONS(8915), + [sym_stop_statement] = ACTIONS(8915), + [sym_beep_statement] = ACTIONS(8915), + [aux_sym_unload_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token2] = ACTIONS(8915), + [aux_sym_def_type_statement_token3] = ACTIONS(8915), + [aux_sym_def_type_statement_token4] = ACTIONS(8915), + [aux_sym_def_type_statement_token5] = ACTIONS(8915), + [aux_sym_def_type_statement_token6] = ACTIONS(8915), + [aux_sym_def_type_statement_token7] = ACTIONS(8915), + [aux_sym_def_type_statement_token8] = ACTIONS(8915), + [aux_sym_def_type_statement_token9] = ACTIONS(8915), + [aux_sym_def_type_statement_token10] = ACTIONS(8915), + [aux_sym_def_type_statement_token11] = ACTIONS(8915), + [aux_sym_def_type_statement_token12] = ACTIONS(8915), + [aux_sym_def_type_statement_token13] = ACTIONS(8915), + [aux_sym_def_type_statement_token14] = ACTIONS(8915), + [aux_sym_call_statement_token1] = ACTIONS(8915), + [sym__ambiguous_call_statement] = ACTIONS(8915), + [aux_sym_addressof_expression_token1] = ACTIONS(8915), + [aux_sym_type_of_expression_token1] = ACTIONS(8915), + [aux_sym_unary_expression_token1] = ACTIONS(8915), + [sym_string_literal] = ACTIONS(8918), + [sym_number_literal] = ACTIONS(8918), + [aux_sym_boolean_literal_token1] = ACTIONS(8915), + [aux_sym_boolean_literal_token2] = ACTIONS(8915), + [sym_nothing_literal] = ACTIONS(8915), + [sym_null_literal] = ACTIONS(8915), + [sym_empty_literal] = ACTIONS(8915), + [sym_date_literal] = ACTIONS(8918), + [anon_sym_POUND] = ACTIONS(8915), + }, + [STATE(6302)] = { + [sym_identifier] = ACTIONS(8756), + [sym_newline] = ACTIONS(8759), + [anon_sym_COLON] = ACTIONS(8759), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8756), + [aux_sym_frm_property_statement_token1] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8756), + [anon_sym_BANG] = ACTIONS(8759), + [aux_sym__attribute_identifier_token1] = ACTIONS(8756), + [aux_sym_option_statement_token3] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8756), + [aux_sym_preprocessor_const_token1] = ACTIONS(8756), + [sym_static_modifier] = ACTIONS(8756), + [sym__dim_keyword] = ACTIONS(8756), + [sym__redim_keyword] = ACTIONS(8756), + [aux_sym_get_accessor_token1] = ACTIONS(8756), + [aux_sym_set_accessor_token1] = ACTIONS(8756), + [aux_sym_const_declaration_token1] = ACTIONS(8756), + [anon_sym_LPAREN] = ACTIONS(8759), + [aux_sym_as_type_clause_token2] = ACTIONS(8756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8756), + [aux_sym_visibility_token1] = ACTIONS(8756), + [aux_sym_visibility_token2] = ACTIONS(8756), + [aux_sym_elseif_fragment_token1] = ACTIONS(8756), + [aux_sym_else_fragment_token1] = ACTIONS(8756), + [aux_sym_select_statement_token1] = ACTIONS(8756), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8756), + [aux_sym_do_statement_token1] = ACTIONS(8756), + [aux_sym_do_condition_token1] = ACTIONS(8756), + [aux_sym_with_statement_token1] = ACTIONS(8756), + [aux_sym_exit_statement_token1] = ACTIONS(8756), + [sym_end_statement] = ACTIONS(8759), + [aux_sym_on_goto_statement_token1] = ACTIONS(8756), + [aux_sym_on_goto_statement_token2] = ACTIONS(8756), + [aux_sym_on_error_statement_token2] = ACTIONS(8756), + [sym__ambiguous_redim_statement] = ACTIONS(8759), + [aux_sym_erase_statement_token1] = ACTIONS(8756), + [aux_sym_open_statement_token1] = ACTIONS(8756), + [aux_sym_file_mode_token2] = ACTIONS(8756), + [aux_sym_file_access_token2] = ACTIONS(8756), + [aux_sym_file_lock_token2] = ACTIONS(8756), + [aux_sym_print_statement_token1] = ACTIONS(8756), + [anon_sym_PLUS] = ACTIONS(8759), + [anon_sym_DASH] = ACTIONS(8756), + [anon_sym_QMARK] = ACTIONS(8759), + [aux_sym_close_statement_token1] = ACTIONS(8756), + [aux_sym_put_statement_token1] = ACTIONS(8756), + [aux_sym_unlock_statement_token1] = ACTIONS(8756), + [aux_sym_seek_statement_token1] = ACTIONS(8756), + [sym_reset_statement] = ACTIONS(8756), + [aux_sym_raise_event_statement_token1] = ACTIONS(8756), + [sym_stop_statement] = ACTIONS(8756), + [sym_beep_statement] = ACTIONS(8756), + [aux_sym_unload_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token2] = ACTIONS(8756), + [aux_sym_def_type_statement_token3] = ACTIONS(8756), + [aux_sym_def_type_statement_token4] = ACTIONS(8756), + [aux_sym_def_type_statement_token5] = ACTIONS(8756), + [aux_sym_def_type_statement_token6] = ACTIONS(8756), + [aux_sym_def_type_statement_token7] = ACTIONS(8756), + [aux_sym_def_type_statement_token8] = ACTIONS(8756), + [aux_sym_def_type_statement_token9] = ACTIONS(8756), + [aux_sym_def_type_statement_token10] = ACTIONS(8756), + [aux_sym_def_type_statement_token11] = ACTIONS(8756), + [aux_sym_def_type_statement_token12] = ACTIONS(8756), + [aux_sym_def_type_statement_token13] = ACTIONS(8756), + [aux_sym_def_type_statement_token14] = ACTIONS(8756), + [aux_sym_call_statement_token1] = ACTIONS(8756), + [sym__ambiguous_call_statement] = ACTIONS(8756), + [aux_sym_addressof_expression_token1] = ACTIONS(8756), + [aux_sym_type_of_expression_token1] = ACTIONS(8756), + [aux_sym_unary_expression_token1] = ACTIONS(8756), + [sym_string_literal] = ACTIONS(8759), + [sym_number_literal] = ACTIONS(8759), + [aux_sym_boolean_literal_token1] = ACTIONS(8756), + [aux_sym_boolean_literal_token2] = ACTIONS(8756), + [sym_nothing_literal] = ACTIONS(8756), + [sym_null_literal] = ACTIONS(8756), + [sym_empty_literal] = ACTIONS(8756), + [sym_date_literal] = ACTIONS(8759), + [anon_sym_POUND] = ACTIONS(8756), + }, + [STATE(6303)] = { + [sym_identifier] = ACTIONS(9532), + [sym_newline] = ACTIONS(9534), + [anon_sym_COLON] = ACTIONS(9534), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9532), + [aux_sym_frm_property_statement_token1] = ACTIONS(9532), + [anon_sym_DOT] = ACTIONS(9532), + [anon_sym_BANG] = ACTIONS(9534), + [aux_sym__attribute_identifier_token1] = ACTIONS(9532), + [aux_sym_option_statement_token3] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9532), + [aux_sym_preprocessor_const_token1] = ACTIONS(9532), + [sym_static_modifier] = ACTIONS(9532), + [sym__dim_keyword] = ACTIONS(9532), + [sym__redim_keyword] = ACTIONS(9532), + [aux_sym_get_accessor_token1] = ACTIONS(9532), + [aux_sym_set_accessor_token1] = ACTIONS(9532), + [aux_sym_const_declaration_token1] = ACTIONS(9532), + [anon_sym_LPAREN] = ACTIONS(9534), + [aux_sym_as_type_clause_token2] = ACTIONS(9532), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9532), + [aux_sym_visibility_token1] = ACTIONS(9532), + [aux_sym_visibility_token2] = ACTIONS(9532), + [aux_sym_elseif_fragment_token1] = ACTIONS(9532), + [aux_sym_else_fragment_token1] = ACTIONS(9532), + [aux_sym_select_statement_token1] = ACTIONS(9532), + [aux_sym__for_header_token1] = ACTIONS(9532), + [aux_sym_do_statement_token1] = ACTIONS(9532), + [aux_sym_do_statement_token2] = ACTIONS(9532), + [aux_sym_do_condition_token1] = ACTIONS(9532), + [aux_sym_with_statement_token1] = ACTIONS(9532), + [aux_sym_exit_statement_token1] = ACTIONS(9532), + [sym_end_statement] = ACTIONS(9534), + [aux_sym_on_goto_statement_token1] = ACTIONS(9532), + [aux_sym_on_goto_statement_token2] = ACTIONS(9532), + [aux_sym_on_error_statement_token2] = ACTIONS(9532), + [sym__ambiguous_redim_statement] = ACTIONS(9534), + [aux_sym_erase_statement_token1] = ACTIONS(9532), + [aux_sym_open_statement_token1] = ACTIONS(9532), + [aux_sym_file_mode_token2] = ACTIONS(9532), + [aux_sym_file_access_token2] = ACTIONS(9532), + [aux_sym_file_lock_token2] = ACTIONS(9532), + [aux_sym_print_statement_token1] = ACTIONS(9532), + [anon_sym_PLUS] = ACTIONS(9534), + [anon_sym_DASH] = ACTIONS(9532), + [anon_sym_QMARK] = ACTIONS(9534), + [aux_sym_close_statement_token1] = ACTIONS(9532), + [aux_sym_put_statement_token1] = ACTIONS(9532), + [aux_sym_unlock_statement_token1] = ACTIONS(9532), + [aux_sym_seek_statement_token1] = ACTIONS(9532), + [sym_reset_statement] = ACTIONS(9532), + [aux_sym_raise_event_statement_token1] = ACTIONS(9532), + [sym_stop_statement] = ACTIONS(9532), + [sym_beep_statement] = ACTIONS(9532), + [aux_sym_unload_statement_token1] = ACTIONS(9532), + [aux_sym_def_type_statement_token1] = ACTIONS(9532), + [aux_sym_def_type_statement_token2] = ACTIONS(9532), + [aux_sym_def_type_statement_token3] = ACTIONS(9532), + [aux_sym_def_type_statement_token4] = ACTIONS(9532), + [aux_sym_def_type_statement_token5] = ACTIONS(9532), + [aux_sym_def_type_statement_token6] = ACTIONS(9532), + [aux_sym_def_type_statement_token7] = ACTIONS(9532), + [aux_sym_def_type_statement_token8] = ACTIONS(9532), + [aux_sym_def_type_statement_token9] = ACTIONS(9532), + [aux_sym_def_type_statement_token10] = ACTIONS(9532), + [aux_sym_def_type_statement_token11] = ACTIONS(9532), + [aux_sym_def_type_statement_token12] = ACTIONS(9532), + [aux_sym_def_type_statement_token13] = ACTIONS(9532), + [aux_sym_def_type_statement_token14] = ACTIONS(9532), + [aux_sym_call_statement_token1] = ACTIONS(9532), + [sym__ambiguous_call_statement] = ACTIONS(9532), + [aux_sym_addressof_expression_token1] = ACTIONS(9532), + [aux_sym_type_of_expression_token1] = ACTIONS(9532), + [aux_sym_unary_expression_token1] = ACTIONS(9532), + [sym_string_literal] = ACTIONS(9534), + [sym_number_literal] = ACTIONS(9534), + [aux_sym_boolean_literal_token1] = ACTIONS(9532), + [aux_sym_boolean_literal_token2] = ACTIONS(9532), + [sym_nothing_literal] = ACTIONS(9532), + [sym_null_literal] = ACTIONS(9532), + [sym_empty_literal] = ACTIONS(9532), + [sym_date_literal] = ACTIONS(9534), + [anon_sym_POUND] = ACTIONS(9532), + }, + [STATE(6304)] = { + [sym_identifier] = ACTIONS(9518), + [sym_newline] = ACTIONS(9520), + [anon_sym_COLON] = ACTIONS(9520), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9518), + [aux_sym_frm_property_statement_token1] = ACTIONS(9518), + [anon_sym_DOT] = ACTIONS(9518), + [anon_sym_BANG] = ACTIONS(9520), + [aux_sym__attribute_identifier_token1] = ACTIONS(9518), + [aux_sym_option_statement_token3] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9518), + [aux_sym_preprocessor_const_token1] = ACTIONS(9518), + [sym_static_modifier] = ACTIONS(9518), + [sym__dim_keyword] = ACTIONS(9518), + [sym__redim_keyword] = ACTIONS(9518), + [aux_sym_get_accessor_token1] = ACTIONS(9518), + [aux_sym_set_accessor_token1] = ACTIONS(9518), + [aux_sym_const_declaration_token1] = ACTIONS(9518), + [anon_sym_LPAREN] = ACTIONS(9520), + [aux_sym_as_type_clause_token2] = ACTIONS(9518), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9518), + [aux_sym_visibility_token1] = ACTIONS(9518), + [aux_sym_visibility_token2] = ACTIONS(9518), + [aux_sym_elseif_fragment_token1] = ACTIONS(9518), + [aux_sym_else_fragment_token1] = ACTIONS(9518), + [aux_sym_select_statement_token1] = ACTIONS(9518), + [aux_sym__for_header_token1] = ACTIONS(9518), + [aux_sym_do_statement_token1] = ACTIONS(9518), + [aux_sym_do_condition_token1] = ACTIONS(9518), + [aux_sym_with_statement_token1] = ACTIONS(9518), + [aux_sym_exit_statement_token1] = ACTIONS(9518), + [sym_end_statement] = ACTIONS(9520), + [aux_sym_on_goto_statement_token1] = ACTIONS(9518), + [aux_sym_on_goto_statement_token2] = ACTIONS(9518), + [aux_sym_on_error_statement_token2] = ACTIONS(9518), + [sym__ambiguous_redim_statement] = ACTIONS(9520), + [aux_sym_erase_statement_token1] = ACTIONS(9518), + [aux_sym_open_statement_token1] = ACTIONS(9518), + [aux_sym_file_mode_token2] = ACTIONS(9518), + [aux_sym_file_access_token2] = ACTIONS(9518), + [aux_sym_file_lock_token2] = ACTIONS(9518), + [aux_sym_print_statement_token1] = ACTIONS(9518), + [anon_sym_PLUS] = ACTIONS(9520), + [anon_sym_DASH] = ACTIONS(9518), + [anon_sym_QMARK] = ACTIONS(9520), + [aux_sym_close_statement_token1] = ACTIONS(9518), + [aux_sym_put_statement_token1] = ACTIONS(9518), + [aux_sym_unlock_statement_token1] = ACTIONS(9518), + [aux_sym_seek_statement_token1] = ACTIONS(9518), + [sym_reset_statement] = ACTIONS(9518), + [aux_sym_raise_event_statement_token1] = ACTIONS(9518), + [sym_stop_statement] = ACTIONS(9518), + [sym_beep_statement] = ACTIONS(9518), + [aux_sym_unload_statement_token1] = ACTIONS(9518), + [aux_sym_def_type_statement_token1] = ACTIONS(9518), + [aux_sym_def_type_statement_token2] = ACTIONS(9518), + [aux_sym_def_type_statement_token3] = ACTIONS(9518), + [aux_sym_def_type_statement_token4] = ACTIONS(9518), + [aux_sym_def_type_statement_token5] = ACTIONS(9518), + [aux_sym_def_type_statement_token6] = ACTIONS(9518), + [aux_sym_def_type_statement_token7] = ACTIONS(9518), + [aux_sym_def_type_statement_token8] = ACTIONS(9518), + [aux_sym_def_type_statement_token9] = ACTIONS(9518), + [aux_sym_def_type_statement_token10] = ACTIONS(9518), + [aux_sym_def_type_statement_token11] = ACTIONS(9518), + [aux_sym_def_type_statement_token12] = ACTIONS(9518), + [aux_sym_def_type_statement_token13] = ACTIONS(9518), + [aux_sym_def_type_statement_token14] = ACTIONS(9518), + [aux_sym_call_statement_token1] = ACTIONS(9518), + [sym__ambiguous_call_statement] = ACTIONS(9518), + [aux_sym_addressof_expression_token1] = ACTIONS(9518), + [aux_sym_type_of_expression_token1] = ACTIONS(9518), + [aux_sym_unary_expression_token1] = ACTIONS(9518), + [sym_string_literal] = ACTIONS(9520), + [sym_number_literal] = ACTIONS(9520), + [aux_sym_boolean_literal_token1] = ACTIONS(9518), + [aux_sym_boolean_literal_token2] = ACTIONS(9518), + [sym_nothing_literal] = ACTIONS(9518), + [sym_null_literal] = ACTIONS(9518), + [sym_empty_literal] = ACTIONS(9518), + [sym_date_literal] = ACTIONS(9520), + [anon_sym_POUND] = ACTIONS(9518), + }, + [STATE(6305)] = { + [sym_identifier] = ACTIONS(8733), + [sym_newline] = ACTIONS(8735), + [anon_sym_COLON] = ACTIONS(8735), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8733), + [aux_sym_frm_property_statement_token1] = ACTIONS(8733), + [anon_sym_DOT] = ACTIONS(8733), + [anon_sym_BANG] = ACTIONS(8735), + [aux_sym__attribute_identifier_token1] = ACTIONS(8733), + [aux_sym_option_statement_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8733), + [aux_sym_preprocessor_const_token1] = ACTIONS(8733), + [sym_static_modifier] = ACTIONS(8733), + [sym__dim_keyword] = ACTIONS(8733), + [sym__redim_keyword] = ACTIONS(8733), + [aux_sym_get_accessor_token1] = ACTIONS(8733), + [aux_sym_set_accessor_token1] = ACTIONS(8733), + [aux_sym_const_declaration_token1] = ACTIONS(8733), + [anon_sym_LPAREN] = ACTIONS(8735), + [aux_sym_as_type_clause_token2] = ACTIONS(8733), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8733), + [aux_sym_visibility_token1] = ACTIONS(8733), + [aux_sym_visibility_token2] = ACTIONS(8733), + [aux_sym_elseif_fragment_token1] = ACTIONS(8733), + [aux_sym_else_fragment_token1] = ACTIONS(10992), + [aux_sym_select_statement_token1] = ACTIONS(8733), + [aux_sym__for_header_token1] = ACTIONS(8733), + [aux_sym_do_statement_token1] = ACTIONS(8733), + [aux_sym_do_statement_token2] = ACTIONS(8733), + [aux_sym_do_condition_token1] = ACTIONS(8733), + [aux_sym_with_statement_token1] = ACTIONS(8733), + [aux_sym_exit_statement_token1] = ACTIONS(8733), + [sym_end_statement] = ACTIONS(8735), + [aux_sym_on_goto_statement_token1] = ACTIONS(8733), + [aux_sym_on_goto_statement_token2] = ACTIONS(8733), + [aux_sym_on_error_statement_token2] = ACTIONS(8733), + [sym__ambiguous_redim_statement] = ACTIONS(8735), + [aux_sym_erase_statement_token1] = ACTIONS(8733), + [aux_sym_open_statement_token1] = ACTIONS(8733), + [aux_sym_file_mode_token2] = ACTIONS(8733), + [aux_sym_file_access_token2] = ACTIONS(8733), + [aux_sym_file_lock_token2] = ACTIONS(8733), + [aux_sym_print_statement_token1] = ACTIONS(8733), + [anon_sym_PLUS] = ACTIONS(8735), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_QMARK] = ACTIONS(8735), + [aux_sym_close_statement_token1] = ACTIONS(8733), + [aux_sym_put_statement_token1] = ACTIONS(8733), + [aux_sym_unlock_statement_token1] = ACTIONS(8733), + [aux_sym_seek_statement_token1] = ACTIONS(8733), + [sym_reset_statement] = ACTIONS(8733), + [aux_sym_raise_event_statement_token1] = ACTIONS(8733), + [sym_stop_statement] = ACTIONS(8733), + [sym_beep_statement] = ACTIONS(8733), + [aux_sym_unload_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token2] = ACTIONS(8733), + [aux_sym_def_type_statement_token3] = ACTIONS(8733), + [aux_sym_def_type_statement_token4] = ACTIONS(8733), + [aux_sym_def_type_statement_token5] = ACTIONS(8733), + [aux_sym_def_type_statement_token6] = ACTIONS(8733), + [aux_sym_def_type_statement_token7] = ACTIONS(8733), + [aux_sym_def_type_statement_token8] = ACTIONS(8733), + [aux_sym_def_type_statement_token9] = ACTIONS(8733), + [aux_sym_def_type_statement_token10] = ACTIONS(8733), + [aux_sym_def_type_statement_token11] = ACTIONS(8733), + [aux_sym_def_type_statement_token12] = ACTIONS(8733), + [aux_sym_def_type_statement_token13] = ACTIONS(8733), + [aux_sym_def_type_statement_token14] = ACTIONS(8733), + [aux_sym_call_statement_token1] = ACTIONS(8733), + [sym__ambiguous_call_statement] = ACTIONS(8733), + [aux_sym_addressof_expression_token1] = ACTIONS(8733), + [aux_sym_type_of_expression_token1] = ACTIONS(8733), + [aux_sym_unary_expression_token1] = ACTIONS(8733), + [sym_string_literal] = ACTIONS(8735), + [sym_number_literal] = ACTIONS(8735), + [aux_sym_boolean_literal_token1] = ACTIONS(8733), + [aux_sym_boolean_literal_token2] = ACTIONS(8733), + [sym_nothing_literal] = ACTIONS(8733), + [sym_null_literal] = ACTIONS(8733), + [sym_empty_literal] = ACTIONS(8733), + [sym_date_literal] = ACTIONS(8735), + [anon_sym_POUND] = ACTIONS(8733), + }, + [STATE(6306)] = { + [sym_identifier] = ACTIONS(9522), + [sym_newline] = ACTIONS(9524), + [anon_sym_COLON] = ACTIONS(9524), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9522), + [aux_sym_frm_property_statement_token1] = ACTIONS(9522), + [anon_sym_DOT] = ACTIONS(9522), + [anon_sym_BANG] = ACTIONS(9524), + [aux_sym__attribute_identifier_token1] = ACTIONS(9522), + [aux_sym_option_statement_token3] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9522), + [aux_sym_preprocessor_const_token1] = ACTIONS(9522), + [sym_static_modifier] = ACTIONS(9522), + [sym__dim_keyword] = ACTIONS(9522), + [sym__redim_keyword] = ACTIONS(9522), + [aux_sym_get_accessor_token1] = ACTIONS(9522), + [aux_sym_set_accessor_token1] = ACTIONS(9522), + [aux_sym_const_declaration_token1] = ACTIONS(9522), + [anon_sym_LPAREN] = ACTIONS(9524), + [aux_sym_as_type_clause_token2] = ACTIONS(9522), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9522), + [aux_sym_visibility_token1] = ACTIONS(9522), + [aux_sym_visibility_token2] = ACTIONS(9522), + [aux_sym_elseif_fragment_token1] = ACTIONS(9522), + [aux_sym_else_fragment_token1] = ACTIONS(9522), + [aux_sym_select_statement_token1] = ACTIONS(9522), + [aux_sym__for_header_token1] = ACTIONS(9522), + [aux_sym_do_statement_token1] = ACTIONS(9522), + [aux_sym_do_condition_token1] = ACTIONS(9522), + [aux_sym_with_statement_token1] = ACTIONS(9522), + [aux_sym_exit_statement_token1] = ACTIONS(9522), + [sym_end_statement] = ACTIONS(9524), + [aux_sym_on_goto_statement_token1] = ACTIONS(9522), + [aux_sym_on_goto_statement_token2] = ACTIONS(9522), + [aux_sym_on_error_statement_token2] = ACTIONS(9522), + [sym__ambiguous_redim_statement] = ACTIONS(9524), + [aux_sym_erase_statement_token1] = ACTIONS(9522), + [aux_sym_open_statement_token1] = ACTIONS(9522), + [aux_sym_file_mode_token2] = ACTIONS(9522), + [aux_sym_file_access_token2] = ACTIONS(9522), + [aux_sym_file_lock_token2] = ACTIONS(9522), + [aux_sym_print_statement_token1] = ACTIONS(9522), + [anon_sym_PLUS] = ACTIONS(9524), + [anon_sym_DASH] = ACTIONS(9522), + [anon_sym_QMARK] = ACTIONS(9524), + [aux_sym_close_statement_token1] = ACTIONS(9522), + [aux_sym_put_statement_token1] = ACTIONS(9522), + [aux_sym_unlock_statement_token1] = ACTIONS(9522), + [aux_sym_seek_statement_token1] = ACTIONS(9522), + [sym_reset_statement] = ACTIONS(9522), + [aux_sym_raise_event_statement_token1] = ACTIONS(9522), + [sym_stop_statement] = ACTIONS(9522), + [sym_beep_statement] = ACTIONS(9522), + [aux_sym_unload_statement_token1] = ACTIONS(9522), + [aux_sym_def_type_statement_token1] = ACTIONS(9522), + [aux_sym_def_type_statement_token2] = ACTIONS(9522), + [aux_sym_def_type_statement_token3] = ACTIONS(9522), + [aux_sym_def_type_statement_token4] = ACTIONS(9522), + [aux_sym_def_type_statement_token5] = ACTIONS(9522), + [aux_sym_def_type_statement_token6] = ACTIONS(9522), + [aux_sym_def_type_statement_token7] = ACTIONS(9522), + [aux_sym_def_type_statement_token8] = ACTIONS(9522), + [aux_sym_def_type_statement_token9] = ACTIONS(9522), + [aux_sym_def_type_statement_token10] = ACTIONS(9522), + [aux_sym_def_type_statement_token11] = ACTIONS(9522), + [aux_sym_def_type_statement_token12] = ACTIONS(9522), + [aux_sym_def_type_statement_token13] = ACTIONS(9522), + [aux_sym_def_type_statement_token14] = ACTIONS(9522), + [aux_sym_call_statement_token1] = ACTIONS(9522), + [sym__ambiguous_call_statement] = ACTIONS(9522), + [aux_sym_addressof_expression_token1] = ACTIONS(9522), + [aux_sym_type_of_expression_token1] = ACTIONS(9522), + [aux_sym_unary_expression_token1] = ACTIONS(9522), + [sym_string_literal] = ACTIONS(9524), + [sym_number_literal] = ACTIONS(9524), + [aux_sym_boolean_literal_token1] = ACTIONS(9522), + [aux_sym_boolean_literal_token2] = ACTIONS(9522), + [sym_nothing_literal] = ACTIONS(9522), + [sym_null_literal] = ACTIONS(9522), + [sym_empty_literal] = ACTIONS(9522), + [sym_date_literal] = ACTIONS(9524), + [anon_sym_POUND] = ACTIONS(9522), + }, + [STATE(6307)] = { + [sym_identifier] = ACTIONS(9016), + [sym_newline] = ACTIONS(9018), + [anon_sym_COLON] = ACTIONS(9018), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9016), + [aux_sym_frm_property_statement_token1] = ACTIONS(9016), + [anon_sym_DOT] = ACTIONS(9016), + [anon_sym_BANG] = ACTIONS(9018), + [aux_sym__attribute_identifier_token1] = ACTIONS(9016), + [aux_sym_option_statement_token3] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9016), + [aux_sym_preprocessor_const_token1] = ACTIONS(9016), + [sym_static_modifier] = ACTIONS(9016), + [sym__dim_keyword] = ACTIONS(9016), + [sym__redim_keyword] = ACTIONS(9016), + [aux_sym_get_accessor_token1] = ACTIONS(9016), + [aux_sym_set_accessor_token1] = ACTIONS(9016), + [aux_sym_const_declaration_token1] = ACTIONS(9016), + [anon_sym_LPAREN] = ACTIONS(9018), + [aux_sym_as_type_clause_token2] = ACTIONS(9016), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9016), + [aux_sym_visibility_token1] = ACTIONS(9016), + [aux_sym_visibility_token2] = ACTIONS(9016), + [aux_sym_elseif_fragment_token1] = ACTIONS(9016), + [aux_sym_else_fragment_token1] = ACTIONS(9016), + [aux_sym_select_statement_token1] = ACTIONS(9016), + [aux_sym__for_header_token1] = ACTIONS(9016), + [aux_sym_do_statement_token1] = ACTIONS(9016), + [aux_sym_do_condition_token1] = ACTIONS(9016), + [aux_sym_while_statement_token1] = ACTIONS(9016), + [aux_sym_with_statement_token1] = ACTIONS(9016), + [aux_sym_exit_statement_token1] = ACTIONS(9016), + [sym_end_statement] = ACTIONS(9018), + [aux_sym_on_goto_statement_token1] = ACTIONS(9016), + [aux_sym_on_goto_statement_token2] = ACTIONS(9016), + [aux_sym_on_error_statement_token2] = ACTIONS(9016), + [sym__ambiguous_redim_statement] = ACTIONS(9018), + [aux_sym_erase_statement_token1] = ACTIONS(9016), + [aux_sym_open_statement_token1] = ACTIONS(9016), + [aux_sym_file_mode_token2] = ACTIONS(9016), + [aux_sym_file_access_token2] = ACTIONS(9016), + [aux_sym_file_lock_token2] = ACTIONS(9016), + [aux_sym_print_statement_token1] = ACTIONS(9016), + [anon_sym_PLUS] = ACTIONS(9018), + [anon_sym_DASH] = ACTIONS(9016), + [anon_sym_QMARK] = ACTIONS(9018), + [aux_sym_close_statement_token1] = ACTIONS(9016), + [aux_sym_put_statement_token1] = ACTIONS(9016), + [aux_sym_unlock_statement_token1] = ACTIONS(9016), + [aux_sym_seek_statement_token1] = ACTIONS(9016), + [sym_reset_statement] = ACTIONS(9016), + [aux_sym_raise_event_statement_token1] = ACTIONS(9016), + [sym_stop_statement] = ACTIONS(9016), + [sym_beep_statement] = ACTIONS(9016), + [aux_sym_unload_statement_token1] = ACTIONS(9016), + [aux_sym_def_type_statement_token1] = ACTIONS(9016), + [aux_sym_def_type_statement_token2] = ACTIONS(9016), + [aux_sym_def_type_statement_token3] = ACTIONS(9016), + [aux_sym_def_type_statement_token4] = ACTIONS(9016), + [aux_sym_def_type_statement_token5] = ACTIONS(9016), + [aux_sym_def_type_statement_token6] = ACTIONS(9016), + [aux_sym_def_type_statement_token7] = ACTIONS(9016), + [aux_sym_def_type_statement_token8] = ACTIONS(9016), + [aux_sym_def_type_statement_token9] = ACTIONS(9016), + [aux_sym_def_type_statement_token10] = ACTIONS(9016), + [aux_sym_def_type_statement_token11] = ACTIONS(9016), + [aux_sym_def_type_statement_token12] = ACTIONS(9016), + [aux_sym_def_type_statement_token13] = ACTIONS(9016), + [aux_sym_def_type_statement_token14] = ACTIONS(9016), + [aux_sym_call_statement_token1] = ACTIONS(9016), + [sym__ambiguous_call_statement] = ACTIONS(9016), + [aux_sym_addressof_expression_token1] = ACTIONS(9016), + [aux_sym_type_of_expression_token1] = ACTIONS(9016), + [aux_sym_unary_expression_token1] = ACTIONS(9016), + [sym_string_literal] = ACTIONS(9018), + [sym_number_literal] = ACTIONS(9018), + [aux_sym_boolean_literal_token1] = ACTIONS(9016), + [aux_sym_boolean_literal_token2] = ACTIONS(9016), + [sym_nothing_literal] = ACTIONS(9016), + [sym_null_literal] = ACTIONS(9016), + [sym_empty_literal] = ACTIONS(9016), + [sym_date_literal] = ACTIONS(9018), + [anon_sym_POUND] = ACTIONS(9016), + }, + [STATE(6308)] = { + [sym_identifier] = ACTIONS(9526), + [sym_newline] = ACTIONS(9528), + [anon_sym_COLON] = ACTIONS(9528), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9526), + [aux_sym_frm_property_statement_token1] = ACTIONS(9526), + [anon_sym_DOT] = ACTIONS(9526), + [anon_sym_BANG] = ACTIONS(9528), + [aux_sym__attribute_identifier_token1] = ACTIONS(9526), + [aux_sym_option_statement_token3] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9526), + [aux_sym_preprocessor_const_token1] = ACTIONS(9526), + [sym_static_modifier] = ACTIONS(9526), + [sym__dim_keyword] = ACTIONS(9526), + [sym__redim_keyword] = ACTIONS(9526), + [aux_sym_get_accessor_token1] = ACTIONS(9526), + [aux_sym_set_accessor_token1] = ACTIONS(9526), + [aux_sym_const_declaration_token1] = ACTIONS(9526), + [anon_sym_LPAREN] = ACTIONS(9528), + [aux_sym_as_type_clause_token2] = ACTIONS(9526), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9526), + [aux_sym_visibility_token1] = ACTIONS(9526), + [aux_sym_visibility_token2] = ACTIONS(9526), + [aux_sym_elseif_fragment_token1] = ACTIONS(9526), + [aux_sym_else_fragment_token1] = ACTIONS(9526), + [aux_sym_select_statement_token1] = ACTIONS(9526), + [aux_sym__for_header_token1] = ACTIONS(9526), + [aux_sym_do_statement_token1] = ACTIONS(9526), + [aux_sym_do_condition_token1] = ACTIONS(9526), + [aux_sym_with_statement_token1] = ACTIONS(9526), + [aux_sym_exit_statement_token1] = ACTIONS(9526), + [sym_end_statement] = ACTIONS(9528), + [aux_sym_on_goto_statement_token1] = ACTIONS(9526), + [aux_sym_on_goto_statement_token2] = ACTIONS(9526), + [aux_sym_on_error_statement_token2] = ACTIONS(9526), + [sym__ambiguous_redim_statement] = ACTIONS(9528), + [aux_sym_erase_statement_token1] = ACTIONS(9526), + [aux_sym_open_statement_token1] = ACTIONS(9526), + [aux_sym_file_mode_token2] = ACTIONS(9526), + [aux_sym_file_access_token2] = ACTIONS(9526), + [aux_sym_file_lock_token2] = ACTIONS(9526), + [aux_sym_print_statement_token1] = ACTIONS(9526), + [anon_sym_PLUS] = ACTIONS(9528), + [anon_sym_DASH] = ACTIONS(9526), + [anon_sym_QMARK] = ACTIONS(9528), + [aux_sym_close_statement_token1] = ACTIONS(9526), + [aux_sym_put_statement_token1] = ACTIONS(9526), + [aux_sym_unlock_statement_token1] = ACTIONS(9526), + [aux_sym_seek_statement_token1] = ACTIONS(9526), + [sym_reset_statement] = ACTIONS(9526), + [aux_sym_raise_event_statement_token1] = ACTIONS(9526), + [sym_stop_statement] = ACTIONS(9526), + [sym_beep_statement] = ACTIONS(9526), + [aux_sym_unload_statement_token1] = ACTIONS(9526), + [aux_sym_def_type_statement_token1] = ACTIONS(9526), + [aux_sym_def_type_statement_token2] = ACTIONS(9526), + [aux_sym_def_type_statement_token3] = ACTIONS(9526), + [aux_sym_def_type_statement_token4] = ACTIONS(9526), + [aux_sym_def_type_statement_token5] = ACTIONS(9526), + [aux_sym_def_type_statement_token6] = ACTIONS(9526), + [aux_sym_def_type_statement_token7] = ACTIONS(9526), + [aux_sym_def_type_statement_token8] = ACTIONS(9526), + [aux_sym_def_type_statement_token9] = ACTIONS(9526), + [aux_sym_def_type_statement_token10] = ACTIONS(9526), + [aux_sym_def_type_statement_token11] = ACTIONS(9526), + [aux_sym_def_type_statement_token12] = ACTIONS(9526), + [aux_sym_def_type_statement_token13] = ACTIONS(9526), + [aux_sym_def_type_statement_token14] = ACTIONS(9526), + [aux_sym_call_statement_token1] = ACTIONS(9526), + [sym__ambiguous_call_statement] = ACTIONS(9526), + [aux_sym_addressof_expression_token1] = ACTIONS(9526), + [aux_sym_type_of_expression_token1] = ACTIONS(9526), + [aux_sym_unary_expression_token1] = ACTIONS(9526), + [sym_string_literal] = ACTIONS(9528), + [sym_number_literal] = ACTIONS(9528), + [aux_sym_boolean_literal_token1] = ACTIONS(9526), + [aux_sym_boolean_literal_token2] = ACTIONS(9526), + [sym_nothing_literal] = ACTIONS(9526), + [sym_null_literal] = ACTIONS(9526), + [sym_empty_literal] = ACTIONS(9526), + [sym_date_literal] = ACTIONS(9528), + [anon_sym_POUND] = ACTIONS(9526), + }, + [STATE(6309)] = { + [sym_identifier] = ACTIONS(9020), + [sym_newline] = ACTIONS(9022), + [anon_sym_COLON] = ACTIONS(9022), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9020), + [aux_sym_frm_property_statement_token1] = ACTIONS(9020), + [anon_sym_DOT] = ACTIONS(9020), + [anon_sym_BANG] = ACTIONS(9022), + [aux_sym__attribute_identifier_token1] = ACTIONS(9020), + [aux_sym_option_statement_token3] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9020), + [aux_sym_preprocessor_const_token1] = ACTIONS(9020), + [sym_static_modifier] = ACTIONS(9020), + [sym__dim_keyword] = ACTIONS(9020), + [sym__redim_keyword] = ACTIONS(9020), + [aux_sym_get_accessor_token1] = ACTIONS(9020), + [aux_sym_set_accessor_token1] = ACTIONS(9020), + [aux_sym_const_declaration_token1] = ACTIONS(9020), + [anon_sym_LPAREN] = ACTIONS(9022), + [aux_sym_as_type_clause_token2] = ACTIONS(9020), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9020), + [aux_sym_visibility_token1] = ACTIONS(9020), + [aux_sym_visibility_token2] = ACTIONS(9020), + [aux_sym_elseif_fragment_token1] = ACTIONS(9020), + [aux_sym_else_fragment_token1] = ACTIONS(9020), + [aux_sym_select_statement_token1] = ACTIONS(9020), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9020), + [aux_sym__for_header_token1] = ACTIONS(9020), + [aux_sym_do_statement_token1] = ACTIONS(9020), + [aux_sym_do_condition_token1] = ACTIONS(9020), + [aux_sym_with_statement_token1] = ACTIONS(9020), + [aux_sym_exit_statement_token1] = ACTIONS(9020), + [sym_end_statement] = ACTIONS(9022), + [aux_sym_on_goto_statement_token1] = ACTIONS(9020), + [aux_sym_on_goto_statement_token2] = ACTIONS(9020), + [aux_sym_on_error_statement_token2] = ACTIONS(9020), + [sym__ambiguous_redim_statement] = ACTIONS(9022), + [aux_sym_erase_statement_token1] = ACTIONS(9020), + [aux_sym_open_statement_token1] = ACTIONS(9020), + [aux_sym_file_mode_token2] = ACTIONS(9020), + [aux_sym_file_access_token2] = ACTIONS(9020), + [aux_sym_file_lock_token2] = ACTIONS(9020), + [aux_sym_print_statement_token1] = ACTIONS(9020), + [anon_sym_PLUS] = ACTIONS(9022), + [anon_sym_DASH] = ACTIONS(9020), + [anon_sym_QMARK] = ACTIONS(9022), + [aux_sym_close_statement_token1] = ACTIONS(9020), + [aux_sym_put_statement_token1] = ACTIONS(9020), + [aux_sym_unlock_statement_token1] = ACTIONS(9020), + [aux_sym_seek_statement_token1] = ACTIONS(9020), + [sym_reset_statement] = ACTIONS(9020), + [aux_sym_raise_event_statement_token1] = ACTIONS(9020), + [sym_stop_statement] = ACTIONS(9020), + [sym_beep_statement] = ACTIONS(9020), + [aux_sym_unload_statement_token1] = ACTIONS(9020), + [aux_sym_def_type_statement_token1] = ACTIONS(9020), + [aux_sym_def_type_statement_token2] = ACTIONS(9020), + [aux_sym_def_type_statement_token3] = ACTIONS(9020), + [aux_sym_def_type_statement_token4] = ACTIONS(9020), + [aux_sym_def_type_statement_token5] = ACTIONS(9020), + [aux_sym_def_type_statement_token6] = ACTIONS(9020), + [aux_sym_def_type_statement_token7] = ACTIONS(9020), + [aux_sym_def_type_statement_token8] = ACTIONS(9020), + [aux_sym_def_type_statement_token9] = ACTIONS(9020), + [aux_sym_def_type_statement_token10] = ACTIONS(9020), + [aux_sym_def_type_statement_token11] = ACTIONS(9020), + [aux_sym_def_type_statement_token12] = ACTIONS(9020), + [aux_sym_def_type_statement_token13] = ACTIONS(9020), + [aux_sym_def_type_statement_token14] = ACTIONS(9020), + [aux_sym_call_statement_token1] = ACTIONS(9020), + [sym__ambiguous_call_statement] = ACTIONS(9020), + [aux_sym_addressof_expression_token1] = ACTIONS(9020), + [aux_sym_type_of_expression_token1] = ACTIONS(9020), + [aux_sym_unary_expression_token1] = ACTIONS(9020), + [sym_string_literal] = ACTIONS(9022), + [sym_number_literal] = ACTIONS(9022), + [aux_sym_boolean_literal_token1] = ACTIONS(9020), + [aux_sym_boolean_literal_token2] = ACTIONS(9020), + [sym_nothing_literal] = ACTIONS(9020), + [sym_null_literal] = ACTIONS(9020), + [sym_empty_literal] = ACTIONS(9020), + [sym_date_literal] = ACTIONS(9022), + [anon_sym_POUND] = ACTIONS(9020), + }, + [STATE(6310)] = { + [sym_identifier] = ACTIONS(9536), + [sym_newline] = ACTIONS(9538), + [anon_sym_COLON] = ACTIONS(9538), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9536), + [aux_sym_frm_property_statement_token1] = ACTIONS(9536), + [anon_sym_DOT] = ACTIONS(9536), + [anon_sym_BANG] = ACTIONS(9538), + [aux_sym__attribute_identifier_token1] = ACTIONS(9536), + [aux_sym_option_statement_token3] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9536), + [aux_sym_preprocessor_const_token1] = ACTIONS(9536), + [sym_static_modifier] = ACTIONS(9536), + [sym__dim_keyword] = ACTIONS(9536), + [sym__redim_keyword] = ACTIONS(9536), + [aux_sym_get_accessor_token1] = ACTIONS(9536), + [aux_sym_set_accessor_token1] = ACTIONS(9536), + [aux_sym_const_declaration_token1] = ACTIONS(9536), + [anon_sym_LPAREN] = ACTIONS(9538), + [aux_sym_as_type_clause_token2] = ACTIONS(9536), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9536), + [aux_sym_visibility_token1] = ACTIONS(9536), + [aux_sym_visibility_token2] = ACTIONS(9536), + [aux_sym_elseif_fragment_token1] = ACTIONS(9536), + [aux_sym_else_fragment_token1] = ACTIONS(9536), + [aux_sym_select_statement_token1] = ACTIONS(9536), + [aux_sym__for_header_token1] = ACTIONS(9536), + [aux_sym_do_statement_token1] = ACTIONS(9536), + [aux_sym_do_statement_token2] = ACTIONS(9536), + [aux_sym_do_condition_token1] = ACTIONS(9536), + [aux_sym_with_statement_token1] = ACTIONS(9536), + [aux_sym_exit_statement_token1] = ACTIONS(9536), + [sym_end_statement] = ACTIONS(9538), + [aux_sym_on_goto_statement_token1] = ACTIONS(9536), + [aux_sym_on_goto_statement_token2] = ACTIONS(9536), + [aux_sym_on_error_statement_token2] = ACTIONS(9536), + [sym__ambiguous_redim_statement] = ACTIONS(9538), + [aux_sym_erase_statement_token1] = ACTIONS(9536), + [aux_sym_open_statement_token1] = ACTIONS(9536), + [aux_sym_file_mode_token2] = ACTIONS(9536), + [aux_sym_file_access_token2] = ACTIONS(9536), + [aux_sym_file_lock_token2] = ACTIONS(9536), + [aux_sym_print_statement_token1] = ACTIONS(9536), + [anon_sym_PLUS] = ACTIONS(9538), + [anon_sym_DASH] = ACTIONS(9536), + [anon_sym_QMARK] = ACTIONS(9538), + [aux_sym_close_statement_token1] = ACTIONS(9536), + [aux_sym_put_statement_token1] = ACTIONS(9536), + [aux_sym_unlock_statement_token1] = ACTIONS(9536), + [aux_sym_seek_statement_token1] = ACTIONS(9536), + [sym_reset_statement] = ACTIONS(9536), + [aux_sym_raise_event_statement_token1] = ACTIONS(9536), + [sym_stop_statement] = ACTIONS(9536), + [sym_beep_statement] = ACTIONS(9536), + [aux_sym_unload_statement_token1] = ACTIONS(9536), + [aux_sym_def_type_statement_token1] = ACTIONS(9536), + [aux_sym_def_type_statement_token2] = ACTIONS(9536), + [aux_sym_def_type_statement_token3] = ACTIONS(9536), + [aux_sym_def_type_statement_token4] = ACTIONS(9536), + [aux_sym_def_type_statement_token5] = ACTIONS(9536), + [aux_sym_def_type_statement_token6] = ACTIONS(9536), + [aux_sym_def_type_statement_token7] = ACTIONS(9536), + [aux_sym_def_type_statement_token8] = ACTIONS(9536), + [aux_sym_def_type_statement_token9] = ACTIONS(9536), + [aux_sym_def_type_statement_token10] = ACTIONS(9536), + [aux_sym_def_type_statement_token11] = ACTIONS(9536), + [aux_sym_def_type_statement_token12] = ACTIONS(9536), + [aux_sym_def_type_statement_token13] = ACTIONS(9536), + [aux_sym_def_type_statement_token14] = ACTIONS(9536), + [aux_sym_call_statement_token1] = ACTIONS(9536), + [sym__ambiguous_call_statement] = ACTIONS(9536), + [aux_sym_addressof_expression_token1] = ACTIONS(9536), + [aux_sym_type_of_expression_token1] = ACTIONS(9536), + [aux_sym_unary_expression_token1] = ACTIONS(9536), + [sym_string_literal] = ACTIONS(9538), + [sym_number_literal] = ACTIONS(9538), + [aux_sym_boolean_literal_token1] = ACTIONS(9536), + [aux_sym_boolean_literal_token2] = ACTIONS(9536), + [sym_nothing_literal] = ACTIONS(9536), + [sym_null_literal] = ACTIONS(9536), + [sym_empty_literal] = ACTIONS(9536), + [sym_date_literal] = ACTIONS(9538), + [anon_sym_POUND] = ACTIONS(9536), + }, + [STATE(6311)] = { + [sym_identifier] = ACTIONS(9818), + [sym_newline] = ACTIONS(9820), + [anon_sym_COLON] = ACTIONS(9820), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9818), + [aux_sym_frm_property_statement_token1] = ACTIONS(9818), + [anon_sym_DOT] = ACTIONS(9818), + [anon_sym_BANG] = ACTIONS(9820), + [aux_sym__attribute_identifier_token1] = ACTIONS(9818), + [aux_sym_option_statement_token3] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9818), + [aux_sym_preprocessor_const_token1] = ACTIONS(9818), + [sym_static_modifier] = ACTIONS(9818), + [sym__dim_keyword] = ACTIONS(9818), + [sym__redim_keyword] = ACTIONS(9818), + [aux_sym_get_accessor_token1] = ACTIONS(9818), + [aux_sym_set_accessor_token1] = ACTIONS(9818), + [aux_sym_const_declaration_token1] = ACTIONS(9818), + [anon_sym_LPAREN] = ACTIONS(9820), + [aux_sym_as_type_clause_token2] = ACTIONS(9818), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9818), + [aux_sym_visibility_token1] = ACTIONS(9818), + [aux_sym_visibility_token2] = ACTIONS(9818), + [aux_sym_elseif_fragment_token1] = ACTIONS(9818), + [aux_sym_else_fragment_token1] = ACTIONS(9818), + [aux_sym_select_statement_token1] = ACTIONS(9818), + [aux_sym__for_header_token1] = ACTIONS(9818), + [aux_sym_do_statement_token1] = ACTIONS(9818), + [aux_sym_do_condition_token1] = ACTIONS(9818), + [aux_sym_with_statement_token1] = ACTIONS(9818), + [aux_sym_exit_statement_token1] = ACTIONS(9818), + [sym_end_statement] = ACTIONS(9820), + [aux_sym_on_goto_statement_token1] = ACTIONS(9818), + [aux_sym_on_goto_statement_token2] = ACTIONS(9818), + [aux_sym_on_error_statement_token2] = ACTIONS(9818), + [sym__ambiguous_redim_statement] = ACTIONS(9820), + [aux_sym_erase_statement_token1] = ACTIONS(9818), + [aux_sym_open_statement_token1] = ACTIONS(9818), + [aux_sym_file_mode_token2] = ACTIONS(9818), + [aux_sym_file_access_token2] = ACTIONS(9818), + [aux_sym_file_lock_token2] = ACTIONS(9818), + [aux_sym_print_statement_token1] = ACTIONS(9818), + [anon_sym_PLUS] = ACTIONS(9820), + [anon_sym_DASH] = ACTIONS(9818), + [anon_sym_QMARK] = ACTIONS(9820), + [aux_sym_close_statement_token1] = ACTIONS(9818), + [aux_sym_put_statement_token1] = ACTIONS(9818), + [aux_sym_unlock_statement_token1] = ACTIONS(9818), + [aux_sym_seek_statement_token1] = ACTIONS(9818), + [sym_reset_statement] = ACTIONS(9818), + [aux_sym_raise_event_statement_token1] = ACTIONS(9818), + [sym_stop_statement] = ACTIONS(9818), + [sym_beep_statement] = ACTIONS(9818), + [aux_sym_unload_statement_token1] = ACTIONS(9818), + [aux_sym_def_type_statement_token1] = ACTIONS(9818), + [aux_sym_def_type_statement_token2] = ACTIONS(9818), + [aux_sym_def_type_statement_token3] = ACTIONS(9818), + [aux_sym_def_type_statement_token4] = ACTIONS(9818), + [aux_sym_def_type_statement_token5] = ACTIONS(9818), + [aux_sym_def_type_statement_token6] = ACTIONS(9818), + [aux_sym_def_type_statement_token7] = ACTIONS(9818), + [aux_sym_def_type_statement_token8] = ACTIONS(9818), + [aux_sym_def_type_statement_token9] = ACTIONS(9818), + [aux_sym_def_type_statement_token10] = ACTIONS(9818), + [aux_sym_def_type_statement_token11] = ACTIONS(9818), + [aux_sym_def_type_statement_token12] = ACTIONS(9818), + [aux_sym_def_type_statement_token13] = ACTIONS(9818), + [aux_sym_def_type_statement_token14] = ACTIONS(9818), + [aux_sym_call_statement_token1] = ACTIONS(9818), + [sym__ambiguous_call_statement] = ACTIONS(9818), + [aux_sym_addressof_expression_token1] = ACTIONS(9818), + [aux_sym_type_of_expression_token1] = ACTIONS(9818), + [aux_sym_unary_expression_token1] = ACTIONS(9818), + [sym_string_literal] = ACTIONS(9820), + [sym_number_literal] = ACTIONS(9820), + [aux_sym_boolean_literal_token1] = ACTIONS(9818), + [aux_sym_boolean_literal_token2] = ACTIONS(9818), + [sym_nothing_literal] = ACTIONS(9818), + [sym_null_literal] = ACTIONS(9818), + [sym_empty_literal] = ACTIONS(9818), + [sym_date_literal] = ACTIONS(9820), + [anon_sym_POUND] = ACTIONS(9818), + }, + [STATE(6312)] = { + [sym_identifier] = ACTIONS(9024), + [sym_newline] = ACTIONS(9026), + [anon_sym_COLON] = ACTIONS(9026), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9024), + [aux_sym_frm_property_statement_token1] = ACTIONS(9024), + [anon_sym_DOT] = ACTIONS(9024), + [anon_sym_BANG] = ACTIONS(9026), + [aux_sym__attribute_identifier_token1] = ACTIONS(9024), + [aux_sym_option_statement_token3] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9024), + [aux_sym_preprocessor_const_token1] = ACTIONS(9024), + [sym_static_modifier] = ACTIONS(9024), + [sym__dim_keyword] = ACTIONS(9024), + [sym__redim_keyword] = ACTIONS(9024), + [aux_sym_get_accessor_token1] = ACTIONS(9024), + [aux_sym_set_accessor_token1] = ACTIONS(9024), + [aux_sym_const_declaration_token1] = ACTIONS(9024), + [anon_sym_LPAREN] = ACTIONS(9026), + [aux_sym_as_type_clause_token2] = ACTIONS(9024), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9024), + [aux_sym_visibility_token1] = ACTIONS(9024), + [aux_sym_visibility_token2] = ACTIONS(9024), + [aux_sym_elseif_fragment_token1] = ACTIONS(9024), + [aux_sym_else_fragment_token1] = ACTIONS(9024), + [aux_sym_select_statement_token1] = ACTIONS(9024), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9024), + [aux_sym__for_header_token1] = ACTIONS(9024), + [aux_sym_do_statement_token1] = ACTIONS(9024), + [aux_sym_do_condition_token1] = ACTIONS(9024), + [aux_sym_with_statement_token1] = ACTIONS(9024), + [aux_sym_exit_statement_token1] = ACTIONS(9024), + [sym_end_statement] = ACTIONS(9026), + [aux_sym_on_goto_statement_token1] = ACTIONS(9024), + [aux_sym_on_goto_statement_token2] = ACTIONS(9024), + [aux_sym_on_error_statement_token2] = ACTIONS(9024), + [sym__ambiguous_redim_statement] = ACTIONS(9026), + [aux_sym_erase_statement_token1] = ACTIONS(9024), + [aux_sym_open_statement_token1] = ACTIONS(9024), + [aux_sym_file_mode_token2] = ACTIONS(9024), + [aux_sym_file_access_token2] = ACTIONS(9024), + [aux_sym_file_lock_token2] = ACTIONS(9024), + [aux_sym_print_statement_token1] = ACTIONS(9024), + [anon_sym_PLUS] = ACTIONS(9026), + [anon_sym_DASH] = ACTIONS(9024), + [anon_sym_QMARK] = ACTIONS(9026), + [aux_sym_close_statement_token1] = ACTIONS(9024), + [aux_sym_put_statement_token1] = ACTIONS(9024), + [aux_sym_unlock_statement_token1] = ACTIONS(9024), + [aux_sym_seek_statement_token1] = ACTIONS(9024), + [sym_reset_statement] = ACTIONS(9024), + [aux_sym_raise_event_statement_token1] = ACTIONS(9024), + [sym_stop_statement] = ACTIONS(9024), + [sym_beep_statement] = ACTIONS(9024), + [aux_sym_unload_statement_token1] = ACTIONS(9024), + [aux_sym_def_type_statement_token1] = ACTIONS(9024), + [aux_sym_def_type_statement_token2] = ACTIONS(9024), + [aux_sym_def_type_statement_token3] = ACTIONS(9024), + [aux_sym_def_type_statement_token4] = ACTIONS(9024), + [aux_sym_def_type_statement_token5] = ACTIONS(9024), + [aux_sym_def_type_statement_token6] = ACTIONS(9024), + [aux_sym_def_type_statement_token7] = ACTIONS(9024), + [aux_sym_def_type_statement_token8] = ACTIONS(9024), + [aux_sym_def_type_statement_token9] = ACTIONS(9024), + [aux_sym_def_type_statement_token10] = ACTIONS(9024), + [aux_sym_def_type_statement_token11] = ACTIONS(9024), + [aux_sym_def_type_statement_token12] = ACTIONS(9024), + [aux_sym_def_type_statement_token13] = ACTIONS(9024), + [aux_sym_def_type_statement_token14] = ACTIONS(9024), + [aux_sym_call_statement_token1] = ACTIONS(9024), + [sym__ambiguous_call_statement] = ACTIONS(9024), + [aux_sym_addressof_expression_token1] = ACTIONS(9024), + [aux_sym_type_of_expression_token1] = ACTIONS(9024), + [aux_sym_unary_expression_token1] = ACTIONS(9024), + [sym_string_literal] = ACTIONS(9026), + [sym_number_literal] = ACTIONS(9026), + [aux_sym_boolean_literal_token1] = ACTIONS(9024), + [aux_sym_boolean_literal_token2] = ACTIONS(9024), + [sym_nothing_literal] = ACTIONS(9024), + [sym_null_literal] = ACTIONS(9024), + [sym_empty_literal] = ACTIONS(9024), + [sym_date_literal] = ACTIONS(9026), + [anon_sym_POUND] = ACTIONS(9024), + }, + [STATE(6313)] = { + [sym_identifier] = ACTIONS(9542), + [sym_newline] = ACTIONS(9544), + [anon_sym_COLON] = ACTIONS(9544), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9542), + [aux_sym_frm_property_statement_token1] = ACTIONS(9542), + [anon_sym_DOT] = ACTIONS(9542), + [anon_sym_BANG] = ACTIONS(9544), + [aux_sym__attribute_identifier_token1] = ACTIONS(9542), + [aux_sym_option_statement_token3] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9542), + [aux_sym_preprocessor_const_token1] = ACTIONS(9542), + [sym_static_modifier] = ACTIONS(9542), + [sym__dim_keyword] = ACTIONS(9542), + [sym__redim_keyword] = ACTIONS(9542), + [aux_sym_get_accessor_token1] = ACTIONS(9542), + [aux_sym_set_accessor_token1] = ACTIONS(9542), + [aux_sym_const_declaration_token1] = ACTIONS(9542), + [anon_sym_LPAREN] = ACTIONS(9544), + [aux_sym_as_type_clause_token2] = ACTIONS(9542), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9542), + [aux_sym_visibility_token1] = ACTIONS(9542), + [aux_sym_visibility_token2] = ACTIONS(9542), + [aux_sym_elseif_fragment_token1] = ACTIONS(9542), + [aux_sym_else_fragment_token1] = ACTIONS(9542), + [aux_sym_select_statement_token1] = ACTIONS(9542), + [aux_sym__for_header_token1] = ACTIONS(9542), + [aux_sym_do_statement_token1] = ACTIONS(9542), + [aux_sym_do_statement_token2] = ACTIONS(9542), + [aux_sym_do_condition_token1] = ACTIONS(9542), + [aux_sym_with_statement_token1] = ACTIONS(9542), + [aux_sym_exit_statement_token1] = ACTIONS(9542), + [sym_end_statement] = ACTIONS(9544), + [aux_sym_on_goto_statement_token1] = ACTIONS(9542), + [aux_sym_on_goto_statement_token2] = ACTIONS(9542), + [aux_sym_on_error_statement_token2] = ACTIONS(9542), + [sym__ambiguous_redim_statement] = ACTIONS(9544), + [aux_sym_erase_statement_token1] = ACTIONS(9542), + [aux_sym_open_statement_token1] = ACTIONS(9542), + [aux_sym_file_mode_token2] = ACTIONS(9542), + [aux_sym_file_access_token2] = ACTIONS(9542), + [aux_sym_file_lock_token2] = ACTIONS(9542), + [aux_sym_print_statement_token1] = ACTIONS(9542), + [anon_sym_PLUS] = ACTIONS(9544), + [anon_sym_DASH] = ACTIONS(9542), + [anon_sym_QMARK] = ACTIONS(9544), + [aux_sym_close_statement_token1] = ACTIONS(9542), + [aux_sym_put_statement_token1] = ACTIONS(9542), + [aux_sym_unlock_statement_token1] = ACTIONS(9542), + [aux_sym_seek_statement_token1] = ACTIONS(9542), + [sym_reset_statement] = ACTIONS(9542), + [aux_sym_raise_event_statement_token1] = ACTIONS(9542), + [sym_stop_statement] = ACTIONS(9542), + [sym_beep_statement] = ACTIONS(9542), + [aux_sym_unload_statement_token1] = ACTIONS(9542), + [aux_sym_def_type_statement_token1] = ACTIONS(9542), + [aux_sym_def_type_statement_token2] = ACTIONS(9542), + [aux_sym_def_type_statement_token3] = ACTIONS(9542), + [aux_sym_def_type_statement_token4] = ACTIONS(9542), + [aux_sym_def_type_statement_token5] = ACTIONS(9542), + [aux_sym_def_type_statement_token6] = ACTIONS(9542), + [aux_sym_def_type_statement_token7] = ACTIONS(9542), + [aux_sym_def_type_statement_token8] = ACTIONS(9542), + [aux_sym_def_type_statement_token9] = ACTIONS(9542), + [aux_sym_def_type_statement_token10] = ACTIONS(9542), + [aux_sym_def_type_statement_token11] = ACTIONS(9542), + [aux_sym_def_type_statement_token12] = ACTIONS(9542), + [aux_sym_def_type_statement_token13] = ACTIONS(9542), + [aux_sym_def_type_statement_token14] = ACTIONS(9542), + [aux_sym_call_statement_token1] = ACTIONS(9542), + [sym__ambiguous_call_statement] = ACTIONS(9542), + [aux_sym_addressof_expression_token1] = ACTIONS(9542), + [aux_sym_type_of_expression_token1] = ACTIONS(9542), + [aux_sym_unary_expression_token1] = ACTIONS(9542), + [sym_string_literal] = ACTIONS(9544), + [sym_number_literal] = ACTIONS(9544), + [aux_sym_boolean_literal_token1] = ACTIONS(9542), + [aux_sym_boolean_literal_token2] = ACTIONS(9542), + [sym_nothing_literal] = ACTIONS(9542), + [sym_null_literal] = ACTIONS(9542), + [sym_empty_literal] = ACTIONS(9542), + [sym_date_literal] = ACTIONS(9544), + [anon_sym_POUND] = ACTIONS(9542), + }, + [STATE(6314)] = { + [sym_identifier] = ACTIONS(9546), + [sym_newline] = ACTIONS(9548), + [anon_sym_COLON] = ACTIONS(9548), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9546), + [aux_sym_frm_property_statement_token1] = ACTIONS(9546), + [anon_sym_DOT] = ACTIONS(9546), + [anon_sym_BANG] = ACTIONS(9548), + [aux_sym__attribute_identifier_token1] = ACTIONS(9546), + [aux_sym_option_statement_token3] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9546), + [aux_sym_preprocessor_const_token1] = ACTIONS(9546), + [sym_static_modifier] = ACTIONS(9546), + [sym__dim_keyword] = ACTIONS(9546), + [sym__redim_keyword] = ACTIONS(9546), + [aux_sym_get_accessor_token1] = ACTIONS(9546), + [aux_sym_set_accessor_token1] = ACTIONS(9546), + [aux_sym_const_declaration_token1] = ACTIONS(9546), + [anon_sym_LPAREN] = ACTIONS(9548), + [aux_sym_as_type_clause_token2] = ACTIONS(9546), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9546), + [aux_sym_visibility_token1] = ACTIONS(9546), + [aux_sym_visibility_token2] = ACTIONS(9546), + [aux_sym_elseif_fragment_token1] = ACTIONS(9546), + [aux_sym_else_fragment_token1] = ACTIONS(9546), + [aux_sym_select_statement_token1] = ACTIONS(9546), + [aux_sym__for_header_token1] = ACTIONS(9546), + [aux_sym_do_statement_token1] = ACTIONS(9546), + [aux_sym_do_statement_token2] = ACTIONS(9546), + [aux_sym_do_condition_token1] = ACTIONS(9546), + [aux_sym_with_statement_token1] = ACTIONS(9546), + [aux_sym_exit_statement_token1] = ACTIONS(9546), + [sym_end_statement] = ACTIONS(9548), + [aux_sym_on_goto_statement_token1] = ACTIONS(9546), + [aux_sym_on_goto_statement_token2] = ACTIONS(9546), + [aux_sym_on_error_statement_token2] = ACTIONS(9546), + [sym__ambiguous_redim_statement] = ACTIONS(9548), + [aux_sym_erase_statement_token1] = ACTIONS(9546), + [aux_sym_open_statement_token1] = ACTIONS(9546), + [aux_sym_file_mode_token2] = ACTIONS(9546), + [aux_sym_file_access_token2] = ACTIONS(9546), + [aux_sym_file_lock_token2] = ACTIONS(9546), + [aux_sym_print_statement_token1] = ACTIONS(9546), + [anon_sym_PLUS] = ACTIONS(9548), + [anon_sym_DASH] = ACTIONS(9546), + [anon_sym_QMARK] = ACTIONS(9548), + [aux_sym_close_statement_token1] = ACTIONS(9546), + [aux_sym_put_statement_token1] = ACTIONS(9546), + [aux_sym_unlock_statement_token1] = ACTIONS(9546), + [aux_sym_seek_statement_token1] = ACTIONS(9546), + [sym_reset_statement] = ACTIONS(9546), + [aux_sym_raise_event_statement_token1] = ACTIONS(9546), + [sym_stop_statement] = ACTIONS(9546), + [sym_beep_statement] = ACTIONS(9546), + [aux_sym_unload_statement_token1] = ACTIONS(9546), + [aux_sym_def_type_statement_token1] = ACTIONS(9546), + [aux_sym_def_type_statement_token2] = ACTIONS(9546), + [aux_sym_def_type_statement_token3] = ACTIONS(9546), + [aux_sym_def_type_statement_token4] = ACTIONS(9546), + [aux_sym_def_type_statement_token5] = ACTIONS(9546), + [aux_sym_def_type_statement_token6] = ACTIONS(9546), + [aux_sym_def_type_statement_token7] = ACTIONS(9546), + [aux_sym_def_type_statement_token8] = ACTIONS(9546), + [aux_sym_def_type_statement_token9] = ACTIONS(9546), + [aux_sym_def_type_statement_token10] = ACTIONS(9546), + [aux_sym_def_type_statement_token11] = ACTIONS(9546), + [aux_sym_def_type_statement_token12] = ACTIONS(9546), + [aux_sym_def_type_statement_token13] = ACTIONS(9546), + [aux_sym_def_type_statement_token14] = ACTIONS(9546), + [aux_sym_call_statement_token1] = ACTIONS(9546), + [sym__ambiguous_call_statement] = ACTIONS(9546), + [aux_sym_addressof_expression_token1] = ACTIONS(9546), + [aux_sym_type_of_expression_token1] = ACTIONS(9546), + [aux_sym_unary_expression_token1] = ACTIONS(9546), + [sym_string_literal] = ACTIONS(9548), + [sym_number_literal] = ACTIONS(9548), + [aux_sym_boolean_literal_token1] = ACTIONS(9546), + [aux_sym_boolean_literal_token2] = ACTIONS(9546), + [sym_nothing_literal] = ACTIONS(9546), + [sym_null_literal] = ACTIONS(9546), + [sym_empty_literal] = ACTIONS(9546), + [sym_date_literal] = ACTIONS(9548), + [anon_sym_POUND] = ACTIONS(9546), + }, + [STATE(6315)] = { + [sym_identifier] = ACTIONS(8986), + [sym_newline] = ACTIONS(9032), + [anon_sym_COLON] = ACTIONS(9032), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8986), + [aux_sym_frm_property_statement_token1] = ACTIONS(8986), + [anon_sym_DOT] = ACTIONS(8986), + [anon_sym_BANG] = ACTIONS(9032), + [aux_sym__attribute_identifier_token1] = ACTIONS(8986), + [aux_sym_option_statement_token3] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8986), + [aux_sym_preprocessor_const_token1] = ACTIONS(8986), + [sym_static_modifier] = ACTIONS(8986), + [sym__dim_keyword] = ACTIONS(8986), + [sym__redim_keyword] = ACTIONS(8986), + [aux_sym_get_accessor_token1] = ACTIONS(8986), + [aux_sym_set_accessor_token1] = ACTIONS(8986), + [aux_sym_const_declaration_token1] = ACTIONS(8986), + [anon_sym_LPAREN] = ACTIONS(9032), + [aux_sym_as_type_clause_token2] = ACTIONS(8986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8986), + [aux_sym_visibility_token1] = ACTIONS(8986), + [aux_sym_visibility_token2] = ACTIONS(8986), + [aux_sym_elseif_fragment_token1] = ACTIONS(8986), + [aux_sym_else_fragment_token1] = ACTIONS(8986), + [aux_sym_select_statement_token1] = ACTIONS(8986), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8986), + [aux_sym_do_statement_token1] = ACTIONS(8986), + [aux_sym_do_condition_token1] = ACTIONS(8986), + [aux_sym_with_statement_token1] = ACTIONS(8986), + [aux_sym_exit_statement_token1] = ACTIONS(8986), + [sym_end_statement] = ACTIONS(9032), + [aux_sym_on_goto_statement_token1] = ACTIONS(8986), + [aux_sym_on_goto_statement_token2] = ACTIONS(8986), + [aux_sym_on_error_statement_token2] = ACTIONS(8986), + [sym__ambiguous_redim_statement] = ACTIONS(9032), + [aux_sym_erase_statement_token1] = ACTIONS(8986), + [aux_sym_open_statement_token1] = ACTIONS(8986), + [aux_sym_file_mode_token2] = ACTIONS(8986), + [aux_sym_file_access_token2] = ACTIONS(8986), + [aux_sym_file_lock_token2] = ACTIONS(8986), + [aux_sym_print_statement_token1] = ACTIONS(8986), + [anon_sym_PLUS] = ACTIONS(9032), + [anon_sym_DASH] = ACTIONS(8986), + [anon_sym_QMARK] = ACTIONS(9032), + [aux_sym_close_statement_token1] = ACTIONS(8986), + [aux_sym_put_statement_token1] = ACTIONS(8986), + [aux_sym_unlock_statement_token1] = ACTIONS(8986), + [aux_sym_seek_statement_token1] = ACTIONS(8986), + [sym_reset_statement] = ACTIONS(8986), + [aux_sym_raise_event_statement_token1] = ACTIONS(8986), + [sym_stop_statement] = ACTIONS(8986), + [sym_beep_statement] = ACTIONS(8986), + [aux_sym_unload_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token2] = ACTIONS(8986), + [aux_sym_def_type_statement_token3] = ACTIONS(8986), + [aux_sym_def_type_statement_token4] = ACTIONS(8986), + [aux_sym_def_type_statement_token5] = ACTIONS(8986), + [aux_sym_def_type_statement_token6] = ACTIONS(8986), + [aux_sym_def_type_statement_token7] = ACTIONS(8986), + [aux_sym_def_type_statement_token8] = ACTIONS(8986), + [aux_sym_def_type_statement_token9] = ACTIONS(8986), + [aux_sym_def_type_statement_token10] = ACTIONS(8986), + [aux_sym_def_type_statement_token11] = ACTIONS(8986), + [aux_sym_def_type_statement_token12] = ACTIONS(8986), + [aux_sym_def_type_statement_token13] = ACTIONS(8986), + [aux_sym_def_type_statement_token14] = ACTIONS(8986), + [aux_sym_call_statement_token1] = ACTIONS(8986), + [sym__ambiguous_call_statement] = ACTIONS(8986), + [aux_sym_addressof_expression_token1] = ACTIONS(8986), + [aux_sym_type_of_expression_token1] = ACTIONS(8986), + [aux_sym_unary_expression_token1] = ACTIONS(8986), + [sym_string_literal] = ACTIONS(9032), + [sym_number_literal] = ACTIONS(9032), + [aux_sym_boolean_literal_token1] = ACTIONS(8986), + [aux_sym_boolean_literal_token2] = ACTIONS(8986), + [sym_nothing_literal] = ACTIONS(8986), + [sym_null_literal] = ACTIONS(8986), + [sym_empty_literal] = ACTIONS(8986), + [sym_date_literal] = ACTIONS(9032), + [anon_sym_POUND] = ACTIONS(8986), + }, + [STATE(6316)] = { + [sym_identifier] = ACTIONS(8764), + [sym_newline] = ACTIONS(9034), + [anon_sym_COLON] = ACTIONS(9034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8764), + [aux_sym_frm_property_statement_token1] = ACTIONS(8764), + [anon_sym_DOT] = ACTIONS(8764), + [anon_sym_BANG] = ACTIONS(9034), + [aux_sym__attribute_identifier_token1] = ACTIONS(8764), + [aux_sym_option_statement_token3] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8764), + [aux_sym_preprocessor_const_token1] = ACTIONS(8764), + [sym_static_modifier] = ACTIONS(8764), + [sym__dim_keyword] = ACTIONS(8764), + [sym__redim_keyword] = ACTIONS(8764), + [aux_sym_get_accessor_token1] = ACTIONS(8764), + [aux_sym_set_accessor_token1] = ACTIONS(8764), + [aux_sym_const_declaration_token1] = ACTIONS(8764), + [anon_sym_LPAREN] = ACTIONS(9034), + [aux_sym_as_type_clause_token2] = ACTIONS(8764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8764), + [aux_sym_visibility_token1] = ACTIONS(8764), + [aux_sym_visibility_token2] = ACTIONS(8764), + [aux_sym_elseif_fragment_token1] = ACTIONS(8764), + [aux_sym_else_fragment_token1] = ACTIONS(8764), + [aux_sym_select_statement_token1] = ACTIONS(8764), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8764), + [aux_sym_do_statement_token1] = ACTIONS(8764), + [aux_sym_do_condition_token1] = ACTIONS(8764), + [aux_sym_with_statement_token1] = ACTIONS(8764), + [aux_sym_exit_statement_token1] = ACTIONS(8764), + [sym_end_statement] = ACTIONS(9034), + [aux_sym_on_goto_statement_token1] = ACTIONS(8764), + [aux_sym_on_goto_statement_token2] = ACTIONS(8764), + [aux_sym_on_error_statement_token2] = ACTIONS(8764), + [sym__ambiguous_redim_statement] = ACTIONS(9034), + [aux_sym_erase_statement_token1] = ACTIONS(8764), + [aux_sym_open_statement_token1] = ACTIONS(8764), + [aux_sym_file_mode_token2] = ACTIONS(8764), + [aux_sym_file_access_token2] = ACTIONS(8764), + [aux_sym_file_lock_token2] = ACTIONS(8764), + [aux_sym_print_statement_token1] = ACTIONS(8764), + [anon_sym_PLUS] = ACTIONS(9034), + [anon_sym_DASH] = ACTIONS(8764), + [anon_sym_QMARK] = ACTIONS(9034), + [aux_sym_close_statement_token1] = ACTIONS(8764), + [aux_sym_put_statement_token1] = ACTIONS(8764), + [aux_sym_unlock_statement_token1] = ACTIONS(8764), + [aux_sym_seek_statement_token1] = ACTIONS(8764), + [sym_reset_statement] = ACTIONS(8764), + [aux_sym_raise_event_statement_token1] = ACTIONS(8764), + [sym_stop_statement] = ACTIONS(8764), + [sym_beep_statement] = ACTIONS(8764), + [aux_sym_unload_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token2] = ACTIONS(8764), + [aux_sym_def_type_statement_token3] = ACTIONS(8764), + [aux_sym_def_type_statement_token4] = ACTIONS(8764), + [aux_sym_def_type_statement_token5] = ACTIONS(8764), + [aux_sym_def_type_statement_token6] = ACTIONS(8764), + [aux_sym_def_type_statement_token7] = ACTIONS(8764), + [aux_sym_def_type_statement_token8] = ACTIONS(8764), + [aux_sym_def_type_statement_token9] = ACTIONS(8764), + [aux_sym_def_type_statement_token10] = ACTIONS(8764), + [aux_sym_def_type_statement_token11] = ACTIONS(8764), + [aux_sym_def_type_statement_token12] = ACTIONS(8764), + [aux_sym_def_type_statement_token13] = ACTIONS(8764), + [aux_sym_def_type_statement_token14] = ACTIONS(8764), + [aux_sym_call_statement_token1] = ACTIONS(8764), + [sym__ambiguous_call_statement] = ACTIONS(8764), + [aux_sym_addressof_expression_token1] = ACTIONS(8764), + [aux_sym_type_of_expression_token1] = ACTIONS(8764), + [aux_sym_unary_expression_token1] = ACTIONS(8764), + [sym_string_literal] = ACTIONS(9034), + [sym_number_literal] = ACTIONS(9034), + [aux_sym_boolean_literal_token1] = ACTIONS(8764), + [aux_sym_boolean_literal_token2] = ACTIONS(8764), + [sym_nothing_literal] = ACTIONS(8764), + [sym_null_literal] = ACTIONS(8764), + [sym_empty_literal] = ACTIONS(8764), + [sym_date_literal] = ACTIONS(9034), + [anon_sym_POUND] = ACTIONS(8764), + }, + [STATE(6317)] = { + [sym_identifier] = ACTIONS(9036), + [sym_newline] = ACTIONS(9038), + [anon_sym_COLON] = ACTIONS(9038), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9036), + [aux_sym_frm_property_statement_token1] = ACTIONS(9036), + [anon_sym_DOT] = ACTIONS(9036), + [anon_sym_BANG] = ACTIONS(9038), + [aux_sym__attribute_identifier_token1] = ACTIONS(9036), + [aux_sym_option_statement_token3] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9036), + [aux_sym_preprocessor_const_token1] = ACTIONS(9036), + [sym_static_modifier] = ACTIONS(9036), + [sym__dim_keyword] = ACTIONS(9036), + [sym__redim_keyword] = ACTIONS(9036), + [aux_sym_get_accessor_token1] = ACTIONS(9036), + [aux_sym_set_accessor_token1] = ACTIONS(9036), + [aux_sym_const_declaration_token1] = ACTIONS(9036), + [anon_sym_LPAREN] = ACTIONS(9038), + [aux_sym_as_type_clause_token2] = ACTIONS(9036), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9036), + [aux_sym_visibility_token1] = ACTIONS(9036), + [aux_sym_visibility_token2] = ACTIONS(9036), + [aux_sym_elseif_fragment_token1] = ACTIONS(9036), + [aux_sym_else_fragment_token1] = ACTIONS(9036), + [aux_sym_select_statement_token1] = ACTIONS(9036), + [aux_sym__for_header_token1] = ACTIONS(9036), + [aux_sym_do_statement_token1] = ACTIONS(9036), + [aux_sym_do_condition_token1] = ACTIONS(9036), + [aux_sym_while_statement_token1] = ACTIONS(9036), + [aux_sym_with_statement_token1] = ACTIONS(9036), + [aux_sym_exit_statement_token1] = ACTIONS(9036), + [sym_end_statement] = ACTIONS(9038), + [aux_sym_on_goto_statement_token1] = ACTIONS(9036), + [aux_sym_on_goto_statement_token2] = ACTIONS(9036), + [aux_sym_on_error_statement_token2] = ACTIONS(9036), + [sym__ambiguous_redim_statement] = ACTIONS(9038), + [aux_sym_erase_statement_token1] = ACTIONS(9036), + [aux_sym_open_statement_token1] = ACTIONS(9036), + [aux_sym_file_mode_token2] = ACTIONS(9036), + [aux_sym_file_access_token2] = ACTIONS(9036), + [aux_sym_file_lock_token2] = ACTIONS(9036), + [aux_sym_print_statement_token1] = ACTIONS(9036), + [anon_sym_PLUS] = ACTIONS(9038), + [anon_sym_DASH] = ACTIONS(9036), + [anon_sym_QMARK] = ACTIONS(9038), + [aux_sym_close_statement_token1] = ACTIONS(9036), + [aux_sym_put_statement_token1] = ACTIONS(9036), + [aux_sym_unlock_statement_token1] = ACTIONS(9036), + [aux_sym_seek_statement_token1] = ACTIONS(9036), + [sym_reset_statement] = ACTIONS(9036), + [aux_sym_raise_event_statement_token1] = ACTIONS(9036), + [sym_stop_statement] = ACTIONS(9036), + [sym_beep_statement] = ACTIONS(9036), + [aux_sym_unload_statement_token1] = ACTIONS(9036), + [aux_sym_def_type_statement_token1] = ACTIONS(9036), + [aux_sym_def_type_statement_token2] = ACTIONS(9036), + [aux_sym_def_type_statement_token3] = ACTIONS(9036), + [aux_sym_def_type_statement_token4] = ACTIONS(9036), + [aux_sym_def_type_statement_token5] = ACTIONS(9036), + [aux_sym_def_type_statement_token6] = ACTIONS(9036), + [aux_sym_def_type_statement_token7] = ACTIONS(9036), + [aux_sym_def_type_statement_token8] = ACTIONS(9036), + [aux_sym_def_type_statement_token9] = ACTIONS(9036), + [aux_sym_def_type_statement_token10] = ACTIONS(9036), + [aux_sym_def_type_statement_token11] = ACTIONS(9036), + [aux_sym_def_type_statement_token12] = ACTIONS(9036), + [aux_sym_def_type_statement_token13] = ACTIONS(9036), + [aux_sym_def_type_statement_token14] = ACTIONS(9036), + [aux_sym_call_statement_token1] = ACTIONS(9036), + [sym__ambiguous_call_statement] = ACTIONS(9036), + [aux_sym_addressof_expression_token1] = ACTIONS(9036), + [aux_sym_type_of_expression_token1] = ACTIONS(9036), + [aux_sym_unary_expression_token1] = ACTIONS(9036), + [sym_string_literal] = ACTIONS(9038), + [sym_number_literal] = ACTIONS(9038), + [aux_sym_boolean_literal_token1] = ACTIONS(9036), + [aux_sym_boolean_literal_token2] = ACTIONS(9036), + [sym_nothing_literal] = ACTIONS(9036), + [sym_null_literal] = ACTIONS(9036), + [sym_empty_literal] = ACTIONS(9036), + [sym_date_literal] = ACTIONS(9038), + [anon_sym_POUND] = ACTIONS(9036), + }, + [STATE(6318)] = { + [sym_identifier] = ACTIONS(9040), + [sym_newline] = ACTIONS(9042), + [anon_sym_COLON] = ACTIONS(9042), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9040), + [aux_sym_frm_property_statement_token1] = ACTIONS(9040), + [anon_sym_DOT] = ACTIONS(9040), + [anon_sym_BANG] = ACTIONS(9042), + [aux_sym__attribute_identifier_token1] = ACTIONS(9040), + [aux_sym_option_statement_token3] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9040), + [aux_sym_preprocessor_const_token1] = ACTIONS(9040), + [sym_static_modifier] = ACTIONS(9040), + [sym__dim_keyword] = ACTIONS(9040), + [sym__redim_keyword] = ACTIONS(9040), + [aux_sym_get_accessor_token1] = ACTIONS(9040), + [aux_sym_set_accessor_token1] = ACTIONS(9040), + [aux_sym_const_declaration_token1] = ACTIONS(9040), + [anon_sym_LPAREN] = ACTIONS(9042), + [aux_sym_as_type_clause_token2] = ACTIONS(9040), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9040), + [aux_sym_visibility_token1] = ACTIONS(9040), + [aux_sym_visibility_token2] = ACTIONS(9040), + [aux_sym_elseif_fragment_token1] = ACTIONS(9040), + [aux_sym_else_fragment_token1] = ACTIONS(9040), + [aux_sym_select_statement_token1] = ACTIONS(9040), + [aux_sym__for_header_token1] = ACTIONS(9040), + [aux_sym_do_statement_token1] = ACTIONS(9040), + [aux_sym_do_condition_token1] = ACTIONS(9040), + [aux_sym_while_statement_token1] = ACTIONS(9040), + [aux_sym_with_statement_token1] = ACTIONS(9040), + [aux_sym_exit_statement_token1] = ACTIONS(9040), + [sym_end_statement] = ACTIONS(9042), + [aux_sym_on_goto_statement_token1] = ACTIONS(9040), + [aux_sym_on_goto_statement_token2] = ACTIONS(9040), + [aux_sym_on_error_statement_token2] = ACTIONS(9040), + [sym__ambiguous_redim_statement] = ACTIONS(9042), + [aux_sym_erase_statement_token1] = ACTIONS(9040), + [aux_sym_open_statement_token1] = ACTIONS(9040), + [aux_sym_file_mode_token2] = ACTIONS(9040), + [aux_sym_file_access_token2] = ACTIONS(9040), + [aux_sym_file_lock_token2] = ACTIONS(9040), + [aux_sym_print_statement_token1] = ACTIONS(9040), + [anon_sym_PLUS] = ACTIONS(9042), + [anon_sym_DASH] = ACTIONS(9040), + [anon_sym_QMARK] = ACTIONS(9042), + [aux_sym_close_statement_token1] = ACTIONS(9040), + [aux_sym_put_statement_token1] = ACTIONS(9040), + [aux_sym_unlock_statement_token1] = ACTIONS(9040), + [aux_sym_seek_statement_token1] = ACTIONS(9040), + [sym_reset_statement] = ACTIONS(9040), + [aux_sym_raise_event_statement_token1] = ACTIONS(9040), + [sym_stop_statement] = ACTIONS(9040), + [sym_beep_statement] = ACTIONS(9040), + [aux_sym_unload_statement_token1] = ACTIONS(9040), + [aux_sym_def_type_statement_token1] = ACTIONS(9040), + [aux_sym_def_type_statement_token2] = ACTIONS(9040), + [aux_sym_def_type_statement_token3] = ACTIONS(9040), + [aux_sym_def_type_statement_token4] = ACTIONS(9040), + [aux_sym_def_type_statement_token5] = ACTIONS(9040), + [aux_sym_def_type_statement_token6] = ACTIONS(9040), + [aux_sym_def_type_statement_token7] = ACTIONS(9040), + [aux_sym_def_type_statement_token8] = ACTIONS(9040), + [aux_sym_def_type_statement_token9] = ACTIONS(9040), + [aux_sym_def_type_statement_token10] = ACTIONS(9040), + [aux_sym_def_type_statement_token11] = ACTIONS(9040), + [aux_sym_def_type_statement_token12] = ACTIONS(9040), + [aux_sym_def_type_statement_token13] = ACTIONS(9040), + [aux_sym_def_type_statement_token14] = ACTIONS(9040), + [aux_sym_call_statement_token1] = ACTIONS(9040), + [sym__ambiguous_call_statement] = ACTIONS(9040), + [aux_sym_addressof_expression_token1] = ACTIONS(9040), + [aux_sym_type_of_expression_token1] = ACTIONS(9040), + [aux_sym_unary_expression_token1] = ACTIONS(9040), + [sym_string_literal] = ACTIONS(9042), + [sym_number_literal] = ACTIONS(9042), + [aux_sym_boolean_literal_token1] = ACTIONS(9040), + [aux_sym_boolean_literal_token2] = ACTIONS(9040), + [sym_nothing_literal] = ACTIONS(9040), + [sym_null_literal] = ACTIONS(9040), + [sym_empty_literal] = ACTIONS(9040), + [sym_date_literal] = ACTIONS(9042), + [anon_sym_POUND] = ACTIONS(9040), + }, + [STATE(6319)] = { + [sym_identifier] = ACTIONS(9532), + [sym_newline] = ACTIONS(9534), + [anon_sym_COLON] = ACTIONS(9534), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9532), + [aux_sym_frm_property_statement_token1] = ACTIONS(9532), + [anon_sym_DOT] = ACTIONS(9532), + [anon_sym_BANG] = ACTIONS(9534), + [aux_sym__attribute_identifier_token1] = ACTIONS(9532), + [aux_sym_option_statement_token3] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9532), + [aux_sym_preprocessor_const_token1] = ACTIONS(9532), + [sym_static_modifier] = ACTIONS(9532), + [sym__dim_keyword] = ACTIONS(9532), + [sym__redim_keyword] = ACTIONS(9532), + [aux_sym_get_accessor_token1] = ACTIONS(9532), + [aux_sym_set_accessor_token1] = ACTIONS(9532), + [aux_sym_const_declaration_token1] = ACTIONS(9532), + [anon_sym_LPAREN] = ACTIONS(9534), + [aux_sym_as_type_clause_token2] = ACTIONS(9532), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9532), + [aux_sym_visibility_token1] = ACTIONS(9532), + [aux_sym_visibility_token2] = ACTIONS(9532), + [aux_sym_elseif_fragment_token1] = ACTIONS(9532), + [aux_sym_else_fragment_token1] = ACTIONS(9532), + [aux_sym_select_statement_token1] = ACTIONS(9532), + [aux_sym__for_header_token1] = ACTIONS(9532), + [aux_sym_do_statement_token1] = ACTIONS(9532), + [aux_sym_do_condition_token1] = ACTIONS(9532), + [aux_sym_with_statement_token1] = ACTIONS(9532), + [aux_sym_exit_statement_token1] = ACTIONS(9532), + [sym_end_statement] = ACTIONS(9534), + [aux_sym_on_goto_statement_token1] = ACTIONS(9532), + [aux_sym_on_goto_statement_token2] = ACTIONS(9532), + [aux_sym_on_error_statement_token2] = ACTIONS(9532), + [sym__ambiguous_redim_statement] = ACTIONS(9534), + [aux_sym_erase_statement_token1] = ACTIONS(9532), + [aux_sym_open_statement_token1] = ACTIONS(9532), + [aux_sym_file_mode_token2] = ACTIONS(9532), + [aux_sym_file_access_token2] = ACTIONS(9532), + [aux_sym_file_lock_token2] = ACTIONS(9532), + [aux_sym_print_statement_token1] = ACTIONS(9532), + [anon_sym_PLUS] = ACTIONS(9534), + [anon_sym_DASH] = ACTIONS(9532), + [anon_sym_QMARK] = ACTIONS(9534), + [aux_sym_close_statement_token1] = ACTIONS(9532), + [aux_sym_put_statement_token1] = ACTIONS(9532), + [aux_sym_unlock_statement_token1] = ACTIONS(9532), + [aux_sym_seek_statement_token1] = ACTIONS(9532), + [sym_reset_statement] = ACTIONS(9532), + [aux_sym_raise_event_statement_token1] = ACTIONS(9532), + [sym_stop_statement] = ACTIONS(9532), + [sym_beep_statement] = ACTIONS(9532), + [aux_sym_unload_statement_token1] = ACTIONS(9532), + [aux_sym_def_type_statement_token1] = ACTIONS(9532), + [aux_sym_def_type_statement_token2] = ACTIONS(9532), + [aux_sym_def_type_statement_token3] = ACTIONS(9532), + [aux_sym_def_type_statement_token4] = ACTIONS(9532), + [aux_sym_def_type_statement_token5] = ACTIONS(9532), + [aux_sym_def_type_statement_token6] = ACTIONS(9532), + [aux_sym_def_type_statement_token7] = ACTIONS(9532), + [aux_sym_def_type_statement_token8] = ACTIONS(9532), + [aux_sym_def_type_statement_token9] = ACTIONS(9532), + [aux_sym_def_type_statement_token10] = ACTIONS(9532), + [aux_sym_def_type_statement_token11] = ACTIONS(9532), + [aux_sym_def_type_statement_token12] = ACTIONS(9532), + [aux_sym_def_type_statement_token13] = ACTIONS(9532), + [aux_sym_def_type_statement_token14] = ACTIONS(9532), + [aux_sym_call_statement_token1] = ACTIONS(9532), + [sym__ambiguous_call_statement] = ACTIONS(9532), + [aux_sym_addressof_expression_token1] = ACTIONS(9532), + [aux_sym_type_of_expression_token1] = ACTIONS(9532), + [aux_sym_unary_expression_token1] = ACTIONS(9532), + [sym_string_literal] = ACTIONS(9534), + [sym_number_literal] = ACTIONS(9534), + [aux_sym_boolean_literal_token1] = ACTIONS(9532), + [aux_sym_boolean_literal_token2] = ACTIONS(9532), + [sym_nothing_literal] = ACTIONS(9532), + [sym_null_literal] = ACTIONS(9532), + [sym_empty_literal] = ACTIONS(9532), + [sym_date_literal] = ACTIONS(9534), + [anon_sym_POUND] = ACTIONS(9532), + }, + [STATE(6320)] = { + [sym_identifier] = ACTIONS(9536), + [sym_newline] = ACTIONS(9538), + [anon_sym_COLON] = ACTIONS(9538), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9536), + [aux_sym_frm_property_statement_token1] = ACTIONS(9536), + [anon_sym_DOT] = ACTIONS(9536), + [anon_sym_BANG] = ACTIONS(9538), + [aux_sym__attribute_identifier_token1] = ACTIONS(9536), + [aux_sym_option_statement_token3] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9536), + [aux_sym_preprocessor_const_token1] = ACTIONS(9536), + [sym_static_modifier] = ACTIONS(9536), + [sym__dim_keyword] = ACTIONS(9536), + [sym__redim_keyword] = ACTIONS(9536), + [aux_sym_get_accessor_token1] = ACTIONS(9536), + [aux_sym_set_accessor_token1] = ACTIONS(9536), + [aux_sym_const_declaration_token1] = ACTIONS(9536), + [anon_sym_LPAREN] = ACTIONS(9538), + [aux_sym_as_type_clause_token2] = ACTIONS(9536), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9536), + [aux_sym_visibility_token1] = ACTIONS(9536), + [aux_sym_visibility_token2] = ACTIONS(9536), + [aux_sym_elseif_fragment_token1] = ACTIONS(9536), + [aux_sym_else_fragment_token1] = ACTIONS(9536), + [aux_sym_select_statement_token1] = ACTIONS(9536), + [aux_sym__for_header_token1] = ACTIONS(9536), + [aux_sym_do_statement_token1] = ACTIONS(9536), + [aux_sym_do_condition_token1] = ACTIONS(9536), + [aux_sym_with_statement_token1] = ACTIONS(9536), + [aux_sym_exit_statement_token1] = ACTIONS(9536), + [sym_end_statement] = ACTIONS(9538), + [aux_sym_on_goto_statement_token1] = ACTIONS(9536), + [aux_sym_on_goto_statement_token2] = ACTIONS(9536), + [aux_sym_on_error_statement_token2] = ACTIONS(9536), + [sym__ambiguous_redim_statement] = ACTIONS(9538), + [aux_sym_erase_statement_token1] = ACTIONS(9536), + [aux_sym_open_statement_token1] = ACTIONS(9536), + [aux_sym_file_mode_token2] = ACTIONS(9536), + [aux_sym_file_access_token2] = ACTIONS(9536), + [aux_sym_file_lock_token2] = ACTIONS(9536), + [aux_sym_print_statement_token1] = ACTIONS(9536), + [anon_sym_PLUS] = ACTIONS(9538), + [anon_sym_DASH] = ACTIONS(9536), + [anon_sym_QMARK] = ACTIONS(9538), + [aux_sym_close_statement_token1] = ACTIONS(9536), + [aux_sym_put_statement_token1] = ACTIONS(9536), + [aux_sym_unlock_statement_token1] = ACTIONS(9536), + [aux_sym_seek_statement_token1] = ACTIONS(9536), + [sym_reset_statement] = ACTIONS(9536), + [aux_sym_raise_event_statement_token1] = ACTIONS(9536), + [sym_stop_statement] = ACTIONS(9536), + [sym_beep_statement] = ACTIONS(9536), + [aux_sym_unload_statement_token1] = ACTIONS(9536), + [aux_sym_def_type_statement_token1] = ACTIONS(9536), + [aux_sym_def_type_statement_token2] = ACTIONS(9536), + [aux_sym_def_type_statement_token3] = ACTIONS(9536), + [aux_sym_def_type_statement_token4] = ACTIONS(9536), + [aux_sym_def_type_statement_token5] = ACTIONS(9536), + [aux_sym_def_type_statement_token6] = ACTIONS(9536), + [aux_sym_def_type_statement_token7] = ACTIONS(9536), + [aux_sym_def_type_statement_token8] = ACTIONS(9536), + [aux_sym_def_type_statement_token9] = ACTIONS(9536), + [aux_sym_def_type_statement_token10] = ACTIONS(9536), + [aux_sym_def_type_statement_token11] = ACTIONS(9536), + [aux_sym_def_type_statement_token12] = ACTIONS(9536), + [aux_sym_def_type_statement_token13] = ACTIONS(9536), + [aux_sym_def_type_statement_token14] = ACTIONS(9536), + [aux_sym_call_statement_token1] = ACTIONS(9536), + [sym__ambiguous_call_statement] = ACTIONS(9536), + [aux_sym_addressof_expression_token1] = ACTIONS(9536), + [aux_sym_type_of_expression_token1] = ACTIONS(9536), + [aux_sym_unary_expression_token1] = ACTIONS(9536), + [sym_string_literal] = ACTIONS(9538), + [sym_number_literal] = ACTIONS(9538), + [aux_sym_boolean_literal_token1] = ACTIONS(9536), + [aux_sym_boolean_literal_token2] = ACTIONS(9536), + [sym_nothing_literal] = ACTIONS(9536), + [sym_null_literal] = ACTIONS(9536), + [sym_empty_literal] = ACTIONS(9536), + [sym_date_literal] = ACTIONS(9538), + [anon_sym_POUND] = ACTIONS(9536), + }, + [STATE(6321)] = { + [sym_identifier] = ACTIONS(9044), + [sym_newline] = ACTIONS(9046), + [anon_sym_COLON] = ACTIONS(9046), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9044), + [aux_sym_frm_property_statement_token1] = ACTIONS(9044), + [anon_sym_DOT] = ACTIONS(9044), + [anon_sym_BANG] = ACTIONS(9046), + [aux_sym__attribute_identifier_token1] = ACTIONS(9044), + [aux_sym_option_statement_token3] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9044), + [aux_sym_preprocessor_const_token1] = ACTIONS(9044), + [sym_static_modifier] = ACTIONS(9044), + [sym__dim_keyword] = ACTIONS(9044), + [sym__redim_keyword] = ACTIONS(9044), + [aux_sym_get_accessor_token1] = ACTIONS(9044), + [aux_sym_set_accessor_token1] = ACTIONS(9044), + [aux_sym_const_declaration_token1] = ACTIONS(9044), + [anon_sym_LPAREN] = ACTIONS(9046), + [aux_sym_as_type_clause_token2] = ACTIONS(9044), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9044), + [aux_sym_visibility_token1] = ACTIONS(9044), + [aux_sym_visibility_token2] = ACTIONS(9044), + [aux_sym_elseif_fragment_token1] = ACTIONS(9044), + [aux_sym_else_fragment_token1] = ACTIONS(9044), + [aux_sym_select_statement_token1] = ACTIONS(9044), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9044), + [aux_sym__for_header_token1] = ACTIONS(9044), + [aux_sym_do_statement_token1] = ACTIONS(9044), + [aux_sym_do_condition_token1] = ACTIONS(9044), + [aux_sym_with_statement_token1] = ACTIONS(9044), + [aux_sym_exit_statement_token1] = ACTIONS(9044), + [sym_end_statement] = ACTIONS(9046), + [aux_sym_on_goto_statement_token1] = ACTIONS(9044), + [aux_sym_on_goto_statement_token2] = ACTIONS(9044), + [aux_sym_on_error_statement_token2] = ACTIONS(9044), + [sym__ambiguous_redim_statement] = ACTIONS(9046), + [aux_sym_erase_statement_token1] = ACTIONS(9044), + [aux_sym_open_statement_token1] = ACTIONS(9044), + [aux_sym_file_mode_token2] = ACTIONS(9044), + [aux_sym_file_access_token2] = ACTIONS(9044), + [aux_sym_file_lock_token2] = ACTIONS(9044), + [aux_sym_print_statement_token1] = ACTIONS(9044), + [anon_sym_PLUS] = ACTIONS(9046), + [anon_sym_DASH] = ACTIONS(9044), + [anon_sym_QMARK] = ACTIONS(9046), + [aux_sym_close_statement_token1] = ACTIONS(9044), + [aux_sym_put_statement_token1] = ACTIONS(9044), + [aux_sym_unlock_statement_token1] = ACTIONS(9044), + [aux_sym_seek_statement_token1] = ACTIONS(9044), + [sym_reset_statement] = ACTIONS(9044), + [aux_sym_raise_event_statement_token1] = ACTIONS(9044), + [sym_stop_statement] = ACTIONS(9044), + [sym_beep_statement] = ACTIONS(9044), + [aux_sym_unload_statement_token1] = ACTIONS(9044), + [aux_sym_def_type_statement_token1] = ACTIONS(9044), + [aux_sym_def_type_statement_token2] = ACTIONS(9044), + [aux_sym_def_type_statement_token3] = ACTIONS(9044), + [aux_sym_def_type_statement_token4] = ACTIONS(9044), + [aux_sym_def_type_statement_token5] = ACTIONS(9044), + [aux_sym_def_type_statement_token6] = ACTIONS(9044), + [aux_sym_def_type_statement_token7] = ACTIONS(9044), + [aux_sym_def_type_statement_token8] = ACTIONS(9044), + [aux_sym_def_type_statement_token9] = ACTIONS(9044), + [aux_sym_def_type_statement_token10] = ACTIONS(9044), + [aux_sym_def_type_statement_token11] = ACTIONS(9044), + [aux_sym_def_type_statement_token12] = ACTIONS(9044), + [aux_sym_def_type_statement_token13] = ACTIONS(9044), + [aux_sym_def_type_statement_token14] = ACTIONS(9044), + [aux_sym_call_statement_token1] = ACTIONS(9044), + [sym__ambiguous_call_statement] = ACTIONS(9044), + [aux_sym_addressof_expression_token1] = ACTIONS(9044), + [aux_sym_type_of_expression_token1] = ACTIONS(9044), + [aux_sym_unary_expression_token1] = ACTIONS(9044), + [sym_string_literal] = ACTIONS(9046), + [sym_number_literal] = ACTIONS(9046), + [aux_sym_boolean_literal_token1] = ACTIONS(9044), + [aux_sym_boolean_literal_token2] = ACTIONS(9044), + [sym_nothing_literal] = ACTIONS(9044), + [sym_null_literal] = ACTIONS(9044), + [sym_empty_literal] = ACTIONS(9044), + [sym_date_literal] = ACTIONS(9046), + [anon_sym_POUND] = ACTIONS(9044), + }, + [STATE(6322)] = { + [sym_identifier] = ACTIONS(9048), + [sym_newline] = ACTIONS(9050), + [anon_sym_COLON] = ACTIONS(9050), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9048), + [aux_sym_frm_property_statement_token1] = ACTIONS(9048), + [anon_sym_DOT] = ACTIONS(9048), + [anon_sym_BANG] = ACTIONS(9050), + [aux_sym__attribute_identifier_token1] = ACTIONS(9048), + [aux_sym_option_statement_token3] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9048), + [aux_sym_preprocessor_const_token1] = ACTIONS(9048), + [sym_static_modifier] = ACTIONS(9048), + [sym__dim_keyword] = ACTIONS(9048), + [sym__redim_keyword] = ACTIONS(9048), + [aux_sym_get_accessor_token1] = ACTIONS(9048), + [aux_sym_set_accessor_token1] = ACTIONS(9048), + [aux_sym_const_declaration_token1] = ACTIONS(9048), + [anon_sym_LPAREN] = ACTIONS(9050), + [aux_sym_as_type_clause_token2] = ACTIONS(9048), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9048), + [aux_sym_visibility_token1] = ACTIONS(9048), + [aux_sym_visibility_token2] = ACTIONS(9048), + [aux_sym_elseif_fragment_token1] = ACTIONS(9048), + [aux_sym_else_fragment_token1] = ACTIONS(9048), + [aux_sym_select_statement_token1] = ACTIONS(9048), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9048), + [aux_sym__for_header_token1] = ACTIONS(9048), + [aux_sym_do_statement_token1] = ACTIONS(9048), + [aux_sym_do_condition_token1] = ACTIONS(9048), + [aux_sym_with_statement_token1] = ACTIONS(9048), + [aux_sym_exit_statement_token1] = ACTIONS(9048), + [sym_end_statement] = ACTIONS(9050), + [aux_sym_on_goto_statement_token1] = ACTIONS(9048), + [aux_sym_on_goto_statement_token2] = ACTIONS(9048), + [aux_sym_on_error_statement_token2] = ACTIONS(9048), + [sym__ambiguous_redim_statement] = ACTIONS(9050), + [aux_sym_erase_statement_token1] = ACTIONS(9048), + [aux_sym_open_statement_token1] = ACTIONS(9048), + [aux_sym_file_mode_token2] = ACTIONS(9048), + [aux_sym_file_access_token2] = ACTIONS(9048), + [aux_sym_file_lock_token2] = ACTIONS(9048), + [aux_sym_print_statement_token1] = ACTIONS(9048), + [anon_sym_PLUS] = ACTIONS(9050), + [anon_sym_DASH] = ACTIONS(9048), + [anon_sym_QMARK] = ACTIONS(9050), + [aux_sym_close_statement_token1] = ACTIONS(9048), + [aux_sym_put_statement_token1] = ACTIONS(9048), + [aux_sym_unlock_statement_token1] = ACTIONS(9048), + [aux_sym_seek_statement_token1] = ACTIONS(9048), + [sym_reset_statement] = ACTIONS(9048), + [aux_sym_raise_event_statement_token1] = ACTIONS(9048), + [sym_stop_statement] = ACTIONS(9048), + [sym_beep_statement] = ACTIONS(9048), + [aux_sym_unload_statement_token1] = ACTIONS(9048), + [aux_sym_def_type_statement_token1] = ACTIONS(9048), + [aux_sym_def_type_statement_token2] = ACTIONS(9048), + [aux_sym_def_type_statement_token3] = ACTIONS(9048), + [aux_sym_def_type_statement_token4] = ACTIONS(9048), + [aux_sym_def_type_statement_token5] = ACTIONS(9048), + [aux_sym_def_type_statement_token6] = ACTIONS(9048), + [aux_sym_def_type_statement_token7] = ACTIONS(9048), + [aux_sym_def_type_statement_token8] = ACTIONS(9048), + [aux_sym_def_type_statement_token9] = ACTIONS(9048), + [aux_sym_def_type_statement_token10] = ACTIONS(9048), + [aux_sym_def_type_statement_token11] = ACTIONS(9048), + [aux_sym_def_type_statement_token12] = ACTIONS(9048), + [aux_sym_def_type_statement_token13] = ACTIONS(9048), + [aux_sym_def_type_statement_token14] = ACTIONS(9048), + [aux_sym_call_statement_token1] = ACTIONS(9048), + [sym__ambiguous_call_statement] = ACTIONS(9048), + [aux_sym_addressof_expression_token1] = ACTIONS(9048), + [aux_sym_type_of_expression_token1] = ACTIONS(9048), + [aux_sym_unary_expression_token1] = ACTIONS(9048), + [sym_string_literal] = ACTIONS(9050), + [sym_number_literal] = ACTIONS(9050), + [aux_sym_boolean_literal_token1] = ACTIONS(9048), + [aux_sym_boolean_literal_token2] = ACTIONS(9048), + [sym_nothing_literal] = ACTIONS(9048), + [sym_null_literal] = ACTIONS(9048), + [sym_empty_literal] = ACTIONS(9048), + [sym_date_literal] = ACTIONS(9050), + [anon_sym_POUND] = ACTIONS(9048), + }, + [STATE(6323)] = { + [sym_identifier] = ACTIONS(9542), + [sym_newline] = ACTIONS(9544), + [anon_sym_COLON] = ACTIONS(9544), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9542), + [aux_sym_frm_property_statement_token1] = ACTIONS(9542), + [anon_sym_DOT] = ACTIONS(9542), + [anon_sym_BANG] = ACTIONS(9544), + [aux_sym__attribute_identifier_token1] = ACTIONS(9542), + [aux_sym_option_statement_token3] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9542), + [aux_sym_preprocessor_const_token1] = ACTIONS(9542), + [sym_static_modifier] = ACTIONS(9542), + [sym__dim_keyword] = ACTIONS(9542), + [sym__redim_keyword] = ACTIONS(9542), + [aux_sym_get_accessor_token1] = ACTIONS(9542), + [aux_sym_set_accessor_token1] = ACTIONS(9542), + [aux_sym_const_declaration_token1] = ACTIONS(9542), + [anon_sym_LPAREN] = ACTIONS(9544), + [aux_sym_as_type_clause_token2] = ACTIONS(9542), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9542), + [aux_sym_visibility_token1] = ACTIONS(9542), + [aux_sym_visibility_token2] = ACTIONS(9542), + [aux_sym_elseif_fragment_token1] = ACTIONS(9542), + [aux_sym_else_fragment_token1] = ACTIONS(9542), + [aux_sym_select_statement_token1] = ACTIONS(9542), + [aux_sym__for_header_token1] = ACTIONS(9542), + [aux_sym_do_statement_token1] = ACTIONS(9542), + [aux_sym_do_condition_token1] = ACTIONS(9542), + [aux_sym_with_statement_token1] = ACTIONS(9542), + [aux_sym_exit_statement_token1] = ACTIONS(9542), + [sym_end_statement] = ACTIONS(9544), + [aux_sym_on_goto_statement_token1] = ACTIONS(9542), + [aux_sym_on_goto_statement_token2] = ACTIONS(9542), + [aux_sym_on_error_statement_token2] = ACTIONS(9542), + [sym__ambiguous_redim_statement] = ACTIONS(9544), + [aux_sym_erase_statement_token1] = ACTIONS(9542), + [aux_sym_open_statement_token1] = ACTIONS(9542), + [aux_sym_file_mode_token2] = ACTIONS(9542), + [aux_sym_file_access_token2] = ACTIONS(9542), + [aux_sym_file_lock_token2] = ACTIONS(9542), + [aux_sym_print_statement_token1] = ACTIONS(9542), + [anon_sym_PLUS] = ACTIONS(9544), + [anon_sym_DASH] = ACTIONS(9542), + [anon_sym_QMARK] = ACTIONS(9544), + [aux_sym_close_statement_token1] = ACTIONS(9542), + [aux_sym_put_statement_token1] = ACTIONS(9542), + [aux_sym_unlock_statement_token1] = ACTIONS(9542), + [aux_sym_seek_statement_token1] = ACTIONS(9542), + [sym_reset_statement] = ACTIONS(9542), + [aux_sym_raise_event_statement_token1] = ACTIONS(9542), + [sym_stop_statement] = ACTIONS(9542), + [sym_beep_statement] = ACTIONS(9542), + [aux_sym_unload_statement_token1] = ACTIONS(9542), + [aux_sym_def_type_statement_token1] = ACTIONS(9542), + [aux_sym_def_type_statement_token2] = ACTIONS(9542), + [aux_sym_def_type_statement_token3] = ACTIONS(9542), + [aux_sym_def_type_statement_token4] = ACTIONS(9542), + [aux_sym_def_type_statement_token5] = ACTIONS(9542), + [aux_sym_def_type_statement_token6] = ACTIONS(9542), + [aux_sym_def_type_statement_token7] = ACTIONS(9542), + [aux_sym_def_type_statement_token8] = ACTIONS(9542), + [aux_sym_def_type_statement_token9] = ACTIONS(9542), + [aux_sym_def_type_statement_token10] = ACTIONS(9542), + [aux_sym_def_type_statement_token11] = ACTIONS(9542), + [aux_sym_def_type_statement_token12] = ACTIONS(9542), + [aux_sym_def_type_statement_token13] = ACTIONS(9542), + [aux_sym_def_type_statement_token14] = ACTIONS(9542), + [aux_sym_call_statement_token1] = ACTIONS(9542), + [sym__ambiguous_call_statement] = ACTIONS(9542), + [aux_sym_addressof_expression_token1] = ACTIONS(9542), + [aux_sym_type_of_expression_token1] = ACTIONS(9542), + [aux_sym_unary_expression_token1] = ACTIONS(9542), + [sym_string_literal] = ACTIONS(9544), + [sym_number_literal] = ACTIONS(9544), + [aux_sym_boolean_literal_token1] = ACTIONS(9542), + [aux_sym_boolean_literal_token2] = ACTIONS(9542), + [sym_nothing_literal] = ACTIONS(9542), + [sym_null_literal] = ACTIONS(9542), + [sym_empty_literal] = ACTIONS(9542), + [sym_date_literal] = ACTIONS(9544), + [anon_sym_POUND] = ACTIONS(9542), + }, + [STATE(6324)] = { + [sym_identifier] = ACTIONS(8988), + [sym_newline] = ACTIONS(8990), + [anon_sym_COLON] = ACTIONS(8990), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8988), + [aux_sym_frm_property_statement_token1] = ACTIONS(8988), + [anon_sym_DOT] = ACTIONS(8988), + [anon_sym_BANG] = ACTIONS(8990), + [aux_sym__attribute_identifier_token1] = ACTIONS(8988), + [aux_sym_option_statement_token3] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8988), + [aux_sym_preprocessor_const_token1] = ACTIONS(8988), + [sym_static_modifier] = ACTIONS(8988), + [sym__dim_keyword] = ACTIONS(8988), + [sym__redim_keyword] = ACTIONS(8988), + [aux_sym_get_accessor_token1] = ACTIONS(8988), + [aux_sym_set_accessor_token1] = ACTIONS(8988), + [aux_sym_const_declaration_token1] = ACTIONS(8988), + [anon_sym_LPAREN] = ACTIONS(8990), + [aux_sym_as_type_clause_token2] = ACTIONS(8988), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8988), + [aux_sym_visibility_token1] = ACTIONS(8988), + [aux_sym_visibility_token2] = ACTIONS(8988), + [aux_sym_elseif_fragment_token1] = ACTIONS(8988), + [aux_sym_else_fragment_token1] = ACTIONS(8988), + [aux_sym_select_statement_token1] = ACTIONS(8988), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8988), + [aux_sym__for_header_token1] = ACTIONS(8988), + [aux_sym_do_statement_token1] = ACTIONS(8988), + [aux_sym_do_condition_token1] = ACTIONS(8988), + [aux_sym_with_statement_token1] = ACTIONS(8988), + [aux_sym_exit_statement_token1] = ACTIONS(8988), + [sym_end_statement] = ACTIONS(8990), + [aux_sym_on_goto_statement_token1] = ACTIONS(8988), + [aux_sym_on_goto_statement_token2] = ACTIONS(8988), + [aux_sym_on_error_statement_token2] = ACTIONS(8988), + [sym__ambiguous_redim_statement] = ACTIONS(8990), + [aux_sym_erase_statement_token1] = ACTIONS(8988), + [aux_sym_open_statement_token1] = ACTIONS(8988), + [aux_sym_file_mode_token2] = ACTIONS(8988), + [aux_sym_file_access_token2] = ACTIONS(8988), + [aux_sym_file_lock_token2] = ACTIONS(8988), + [aux_sym_print_statement_token1] = ACTIONS(8988), + [anon_sym_PLUS] = ACTIONS(8990), + [anon_sym_DASH] = ACTIONS(8988), + [anon_sym_QMARK] = ACTIONS(8990), + [aux_sym_close_statement_token1] = ACTIONS(8988), + [aux_sym_put_statement_token1] = ACTIONS(8988), + [aux_sym_unlock_statement_token1] = ACTIONS(8988), + [aux_sym_seek_statement_token1] = ACTIONS(8988), + [sym_reset_statement] = ACTIONS(8988), + [aux_sym_raise_event_statement_token1] = ACTIONS(8988), + [sym_stop_statement] = ACTIONS(8988), + [sym_beep_statement] = ACTIONS(8988), + [aux_sym_unload_statement_token1] = ACTIONS(8988), + [aux_sym_def_type_statement_token1] = ACTIONS(8988), + [aux_sym_def_type_statement_token2] = ACTIONS(8988), + [aux_sym_def_type_statement_token3] = ACTIONS(8988), + [aux_sym_def_type_statement_token4] = ACTIONS(8988), + [aux_sym_def_type_statement_token5] = ACTIONS(8988), + [aux_sym_def_type_statement_token6] = ACTIONS(8988), + [aux_sym_def_type_statement_token7] = ACTIONS(8988), + [aux_sym_def_type_statement_token8] = ACTIONS(8988), + [aux_sym_def_type_statement_token9] = ACTIONS(8988), + [aux_sym_def_type_statement_token10] = ACTIONS(8988), + [aux_sym_def_type_statement_token11] = ACTIONS(8988), + [aux_sym_def_type_statement_token12] = ACTIONS(8988), + [aux_sym_def_type_statement_token13] = ACTIONS(8988), + [aux_sym_def_type_statement_token14] = ACTIONS(8988), + [aux_sym_call_statement_token1] = ACTIONS(8988), + [sym__ambiguous_call_statement] = ACTIONS(8988), + [aux_sym_addressof_expression_token1] = ACTIONS(8988), + [aux_sym_type_of_expression_token1] = ACTIONS(8988), + [aux_sym_unary_expression_token1] = ACTIONS(8988), + [sym_string_literal] = ACTIONS(8990), + [sym_number_literal] = ACTIONS(8990), + [aux_sym_boolean_literal_token1] = ACTIONS(8988), + [aux_sym_boolean_literal_token2] = ACTIONS(8988), + [sym_nothing_literal] = ACTIONS(8988), + [sym_null_literal] = ACTIONS(8988), + [sym_empty_literal] = ACTIONS(8988), + [sym_date_literal] = ACTIONS(8990), + [anon_sym_POUND] = ACTIONS(8988), + }, + [STATE(6325)] = { + [sym_identifier] = ACTIONS(9546), + [sym_newline] = ACTIONS(9548), + [anon_sym_COLON] = ACTIONS(9548), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9546), + [aux_sym_frm_property_statement_token1] = ACTIONS(9546), + [anon_sym_DOT] = ACTIONS(9546), + [anon_sym_BANG] = ACTIONS(9548), + [aux_sym__attribute_identifier_token1] = ACTIONS(9546), + [aux_sym_option_statement_token3] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9546), + [aux_sym_preprocessor_const_token1] = ACTIONS(9546), + [sym_static_modifier] = ACTIONS(9546), + [sym__dim_keyword] = ACTIONS(9546), + [sym__redim_keyword] = ACTIONS(9546), + [aux_sym_get_accessor_token1] = ACTIONS(9546), + [aux_sym_set_accessor_token1] = ACTIONS(9546), + [aux_sym_const_declaration_token1] = ACTIONS(9546), + [anon_sym_LPAREN] = ACTIONS(9548), + [aux_sym_as_type_clause_token2] = ACTIONS(9546), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9546), + [aux_sym_visibility_token1] = ACTIONS(9546), + [aux_sym_visibility_token2] = ACTIONS(9546), + [aux_sym_elseif_fragment_token1] = ACTIONS(9546), + [aux_sym_else_fragment_token1] = ACTIONS(9546), + [aux_sym_select_statement_token1] = ACTIONS(9546), + [aux_sym__for_header_token1] = ACTIONS(9546), + [aux_sym_do_statement_token1] = ACTIONS(9546), + [aux_sym_do_condition_token1] = ACTIONS(9546), + [aux_sym_with_statement_token1] = ACTIONS(9546), + [aux_sym_exit_statement_token1] = ACTIONS(9546), + [sym_end_statement] = ACTIONS(9548), + [aux_sym_on_goto_statement_token1] = ACTIONS(9546), + [aux_sym_on_goto_statement_token2] = ACTIONS(9546), + [aux_sym_on_error_statement_token2] = ACTIONS(9546), + [sym__ambiguous_redim_statement] = ACTIONS(9548), + [aux_sym_erase_statement_token1] = ACTIONS(9546), + [aux_sym_open_statement_token1] = ACTIONS(9546), + [aux_sym_file_mode_token2] = ACTIONS(9546), + [aux_sym_file_access_token2] = ACTIONS(9546), + [aux_sym_file_lock_token2] = ACTIONS(9546), + [aux_sym_print_statement_token1] = ACTIONS(9546), + [anon_sym_PLUS] = ACTIONS(9548), + [anon_sym_DASH] = ACTIONS(9546), + [anon_sym_QMARK] = ACTIONS(9548), + [aux_sym_close_statement_token1] = ACTIONS(9546), + [aux_sym_put_statement_token1] = ACTIONS(9546), + [aux_sym_unlock_statement_token1] = ACTIONS(9546), + [aux_sym_seek_statement_token1] = ACTIONS(9546), + [sym_reset_statement] = ACTIONS(9546), + [aux_sym_raise_event_statement_token1] = ACTIONS(9546), + [sym_stop_statement] = ACTIONS(9546), + [sym_beep_statement] = ACTIONS(9546), + [aux_sym_unload_statement_token1] = ACTIONS(9546), + [aux_sym_def_type_statement_token1] = ACTIONS(9546), + [aux_sym_def_type_statement_token2] = ACTIONS(9546), + [aux_sym_def_type_statement_token3] = ACTIONS(9546), + [aux_sym_def_type_statement_token4] = ACTIONS(9546), + [aux_sym_def_type_statement_token5] = ACTIONS(9546), + [aux_sym_def_type_statement_token6] = ACTIONS(9546), + [aux_sym_def_type_statement_token7] = ACTIONS(9546), + [aux_sym_def_type_statement_token8] = ACTIONS(9546), + [aux_sym_def_type_statement_token9] = ACTIONS(9546), + [aux_sym_def_type_statement_token10] = ACTIONS(9546), + [aux_sym_def_type_statement_token11] = ACTIONS(9546), + [aux_sym_def_type_statement_token12] = ACTIONS(9546), + [aux_sym_def_type_statement_token13] = ACTIONS(9546), + [aux_sym_def_type_statement_token14] = ACTIONS(9546), + [aux_sym_call_statement_token1] = ACTIONS(9546), + [sym__ambiguous_call_statement] = ACTIONS(9546), + [aux_sym_addressof_expression_token1] = ACTIONS(9546), + [aux_sym_type_of_expression_token1] = ACTIONS(9546), + [aux_sym_unary_expression_token1] = ACTIONS(9546), + [sym_string_literal] = ACTIONS(9548), + [sym_number_literal] = ACTIONS(9548), + [aux_sym_boolean_literal_token1] = ACTIONS(9546), + [aux_sym_boolean_literal_token2] = ACTIONS(9546), + [sym_nothing_literal] = ACTIONS(9546), + [sym_null_literal] = ACTIONS(9546), + [sym_empty_literal] = ACTIONS(9546), + [sym_date_literal] = ACTIONS(9548), + [anon_sym_POUND] = ACTIONS(9546), + }, + [STATE(6326)] = { + [sym_identifier] = ACTIONS(9704), + [sym_newline] = ACTIONS(9706), + [anon_sym_COLON] = ACTIONS(9706), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9704), + [aux_sym_frm_property_statement_token1] = ACTIONS(9704), + [anon_sym_DOT] = ACTIONS(9704), + [anon_sym_BANG] = ACTIONS(9706), + [aux_sym__attribute_identifier_token1] = ACTIONS(9704), + [aux_sym_option_statement_token3] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9704), + [aux_sym_preprocessor_const_token1] = ACTIONS(9704), + [sym_static_modifier] = ACTIONS(9704), + [sym__dim_keyword] = ACTIONS(9704), + [sym__redim_keyword] = ACTIONS(9704), + [aux_sym_get_accessor_token1] = ACTIONS(9704), + [aux_sym_set_accessor_token1] = ACTIONS(9704), + [aux_sym_const_declaration_token1] = ACTIONS(9704), + [anon_sym_LPAREN] = ACTIONS(9706), + [aux_sym_as_type_clause_token2] = ACTIONS(9704), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9704), + [aux_sym_visibility_token1] = ACTIONS(9704), + [aux_sym_visibility_token2] = ACTIONS(9704), + [aux_sym_elseif_fragment_token1] = ACTIONS(9704), + [aux_sym_else_fragment_token1] = ACTIONS(9704), + [aux_sym_select_statement_token1] = ACTIONS(9704), + [aux_sym_select_statement_token2] = ACTIONS(9704), + [aux_sym__for_header_token1] = ACTIONS(9704), + [aux_sym_do_statement_token1] = ACTIONS(9704), + [aux_sym_do_condition_token1] = ACTIONS(9704), + [aux_sym_with_statement_token1] = ACTIONS(9704), + [aux_sym_exit_statement_token1] = ACTIONS(9704), + [sym_end_statement] = ACTIONS(9706), + [aux_sym_on_goto_statement_token1] = ACTIONS(9704), + [aux_sym_on_goto_statement_token2] = ACTIONS(9704), + [aux_sym_on_error_statement_token2] = ACTIONS(9704), + [sym__ambiguous_redim_statement] = ACTIONS(9706), + [aux_sym_erase_statement_token1] = ACTIONS(9704), + [aux_sym_open_statement_token1] = ACTIONS(9704), + [aux_sym_file_mode_token2] = ACTIONS(9704), + [aux_sym_file_access_token2] = ACTIONS(9704), + [aux_sym_file_lock_token2] = ACTIONS(9704), + [aux_sym_print_statement_token1] = ACTIONS(9704), + [anon_sym_PLUS] = ACTIONS(9706), + [anon_sym_DASH] = ACTIONS(9704), + [anon_sym_QMARK] = ACTIONS(9706), + [aux_sym_close_statement_token1] = ACTIONS(9704), + [aux_sym_put_statement_token1] = ACTIONS(9704), + [aux_sym_unlock_statement_token1] = ACTIONS(9704), + [aux_sym_seek_statement_token1] = ACTIONS(9704), + [sym_reset_statement] = ACTIONS(9704), + [aux_sym_raise_event_statement_token1] = ACTIONS(9704), + [sym_stop_statement] = ACTIONS(9704), + [sym_beep_statement] = ACTIONS(9704), + [aux_sym_unload_statement_token1] = ACTIONS(9704), + [aux_sym_def_type_statement_token1] = ACTIONS(9704), + [aux_sym_def_type_statement_token2] = ACTIONS(9704), + [aux_sym_def_type_statement_token3] = ACTIONS(9704), + [aux_sym_def_type_statement_token4] = ACTIONS(9704), + [aux_sym_def_type_statement_token5] = ACTIONS(9704), + [aux_sym_def_type_statement_token6] = ACTIONS(9704), + [aux_sym_def_type_statement_token7] = ACTIONS(9704), + [aux_sym_def_type_statement_token8] = ACTIONS(9704), + [aux_sym_def_type_statement_token9] = ACTIONS(9704), + [aux_sym_def_type_statement_token10] = ACTIONS(9704), + [aux_sym_def_type_statement_token11] = ACTIONS(9704), + [aux_sym_def_type_statement_token12] = ACTIONS(9704), + [aux_sym_def_type_statement_token13] = ACTIONS(9704), + [aux_sym_def_type_statement_token14] = ACTIONS(9704), + [aux_sym_call_statement_token1] = ACTIONS(9704), + [sym__ambiguous_call_statement] = ACTIONS(9704), + [aux_sym_addressof_expression_token1] = ACTIONS(9704), + [aux_sym_type_of_expression_token1] = ACTIONS(9704), + [aux_sym_unary_expression_token1] = ACTIONS(9704), + [sym_string_literal] = ACTIONS(9706), + [sym_number_literal] = ACTIONS(9706), + [aux_sym_boolean_literal_token1] = ACTIONS(9704), + [aux_sym_boolean_literal_token2] = ACTIONS(9704), + [sym_nothing_literal] = ACTIONS(9704), + [sym_null_literal] = ACTIONS(9704), + [sym_empty_literal] = ACTIONS(9704), + [sym_date_literal] = ACTIONS(9706), + [anon_sym_POUND] = ACTIONS(9704), + }, + [STATE(6327)] = { + [sym_identifier] = ACTIONS(9708), + [sym_newline] = ACTIONS(9710), + [anon_sym_COLON] = ACTIONS(9710), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9708), + [aux_sym_frm_property_statement_token1] = ACTIONS(9708), + [anon_sym_DOT] = ACTIONS(9708), + [anon_sym_BANG] = ACTIONS(9710), + [aux_sym__attribute_identifier_token1] = ACTIONS(9708), + [aux_sym_option_statement_token3] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9708), + [aux_sym_preprocessor_const_token1] = ACTIONS(9708), + [sym_static_modifier] = ACTIONS(9708), + [sym__dim_keyword] = ACTIONS(9708), + [sym__redim_keyword] = ACTIONS(9708), + [aux_sym_get_accessor_token1] = ACTIONS(9708), + [aux_sym_set_accessor_token1] = ACTIONS(9708), + [aux_sym_const_declaration_token1] = ACTIONS(9708), + [anon_sym_LPAREN] = ACTIONS(9710), + [aux_sym_as_type_clause_token2] = ACTIONS(9708), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9708), + [aux_sym_visibility_token1] = ACTIONS(9708), + [aux_sym_visibility_token2] = ACTIONS(9708), + [aux_sym_elseif_fragment_token1] = ACTIONS(9708), + [aux_sym_else_fragment_token1] = ACTIONS(9708), + [aux_sym_select_statement_token1] = ACTIONS(9708), + [aux_sym_select_statement_token2] = ACTIONS(9708), + [aux_sym__for_header_token1] = ACTIONS(9708), + [aux_sym_do_statement_token1] = ACTIONS(9708), + [aux_sym_do_condition_token1] = ACTIONS(9708), + [aux_sym_with_statement_token1] = ACTIONS(9708), + [aux_sym_exit_statement_token1] = ACTIONS(9708), + [sym_end_statement] = ACTIONS(9710), + [aux_sym_on_goto_statement_token1] = ACTIONS(9708), + [aux_sym_on_goto_statement_token2] = ACTIONS(9708), + [aux_sym_on_error_statement_token2] = ACTIONS(9708), + [sym__ambiguous_redim_statement] = ACTIONS(9710), + [aux_sym_erase_statement_token1] = ACTIONS(9708), + [aux_sym_open_statement_token1] = ACTIONS(9708), + [aux_sym_file_mode_token2] = ACTIONS(9708), + [aux_sym_file_access_token2] = ACTIONS(9708), + [aux_sym_file_lock_token2] = ACTIONS(9708), + [aux_sym_print_statement_token1] = ACTIONS(9708), + [anon_sym_PLUS] = ACTIONS(9710), + [anon_sym_DASH] = ACTIONS(9708), + [anon_sym_QMARK] = ACTIONS(9710), + [aux_sym_close_statement_token1] = ACTIONS(9708), + [aux_sym_put_statement_token1] = ACTIONS(9708), + [aux_sym_unlock_statement_token1] = ACTIONS(9708), + [aux_sym_seek_statement_token1] = ACTIONS(9708), + [sym_reset_statement] = ACTIONS(9708), + [aux_sym_raise_event_statement_token1] = ACTIONS(9708), + [sym_stop_statement] = ACTIONS(9708), + [sym_beep_statement] = ACTIONS(9708), + [aux_sym_unload_statement_token1] = ACTIONS(9708), + [aux_sym_def_type_statement_token1] = ACTIONS(9708), + [aux_sym_def_type_statement_token2] = ACTIONS(9708), + [aux_sym_def_type_statement_token3] = ACTIONS(9708), + [aux_sym_def_type_statement_token4] = ACTIONS(9708), + [aux_sym_def_type_statement_token5] = ACTIONS(9708), + [aux_sym_def_type_statement_token6] = ACTIONS(9708), + [aux_sym_def_type_statement_token7] = ACTIONS(9708), + [aux_sym_def_type_statement_token8] = ACTIONS(9708), + [aux_sym_def_type_statement_token9] = ACTIONS(9708), + [aux_sym_def_type_statement_token10] = ACTIONS(9708), + [aux_sym_def_type_statement_token11] = ACTIONS(9708), + [aux_sym_def_type_statement_token12] = ACTIONS(9708), + [aux_sym_def_type_statement_token13] = ACTIONS(9708), + [aux_sym_def_type_statement_token14] = ACTIONS(9708), + [aux_sym_call_statement_token1] = ACTIONS(9708), + [sym__ambiguous_call_statement] = ACTIONS(9708), + [aux_sym_addressof_expression_token1] = ACTIONS(9708), + [aux_sym_type_of_expression_token1] = ACTIONS(9708), + [aux_sym_unary_expression_token1] = ACTIONS(9708), + [sym_string_literal] = ACTIONS(9710), + [sym_number_literal] = ACTIONS(9710), + [aux_sym_boolean_literal_token1] = ACTIONS(9708), + [aux_sym_boolean_literal_token2] = ACTIONS(9708), + [sym_nothing_literal] = ACTIONS(9708), + [sym_null_literal] = ACTIONS(9708), + [sym_empty_literal] = ACTIONS(9708), + [sym_date_literal] = ACTIONS(9710), + [anon_sym_POUND] = ACTIONS(9708), + }, + [STATE(6328)] = { + [sym_identifier] = ACTIONS(9370), + [sym_newline] = ACTIONS(9372), + [anon_sym_COLON] = ACTIONS(9372), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9370), + [aux_sym_frm_property_statement_token1] = ACTIONS(9370), + [anon_sym_DOT] = ACTIONS(9370), + [anon_sym_BANG] = ACTIONS(9372), + [aux_sym__attribute_identifier_token1] = ACTIONS(9370), + [aux_sym_option_statement_token3] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9370), + [aux_sym_preprocessor_const_token1] = ACTIONS(9370), + [sym_static_modifier] = ACTIONS(9370), + [sym__dim_keyword] = ACTIONS(9370), + [sym__redim_keyword] = ACTIONS(9370), + [aux_sym_get_accessor_token1] = ACTIONS(9370), + [aux_sym_set_accessor_token1] = ACTIONS(9370), + [aux_sym_const_declaration_token1] = ACTIONS(9370), + [anon_sym_LPAREN] = ACTIONS(9372), + [aux_sym_as_type_clause_token2] = ACTIONS(9370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9370), + [aux_sym_visibility_token1] = ACTIONS(9370), + [aux_sym_visibility_token2] = ACTIONS(9370), + [aux_sym_elseif_fragment_token1] = ACTIONS(9370), + [aux_sym_else_fragment_token1] = ACTIONS(9370), + [aux_sym_select_statement_token1] = ACTIONS(9370), + [aux_sym_select_statement_token2] = ACTIONS(9370), + [aux_sym__for_header_token1] = ACTIONS(9370), + [aux_sym_do_statement_token1] = ACTIONS(9370), + [aux_sym_do_condition_token1] = ACTIONS(9370), + [aux_sym_with_statement_token1] = ACTIONS(9370), + [aux_sym_exit_statement_token1] = ACTIONS(9370), + [sym_end_statement] = ACTIONS(9372), + [aux_sym_on_goto_statement_token1] = ACTIONS(9370), + [aux_sym_on_goto_statement_token2] = ACTIONS(9370), + [aux_sym_on_error_statement_token2] = ACTIONS(9370), + [sym__ambiguous_redim_statement] = ACTIONS(9372), + [aux_sym_erase_statement_token1] = ACTIONS(9370), + [aux_sym_open_statement_token1] = ACTIONS(9370), + [aux_sym_file_mode_token2] = ACTIONS(9370), + [aux_sym_file_access_token2] = ACTIONS(9370), + [aux_sym_file_lock_token2] = ACTIONS(9370), + [aux_sym_print_statement_token1] = ACTIONS(9370), + [anon_sym_PLUS] = ACTIONS(9372), + [anon_sym_DASH] = ACTIONS(9370), + [anon_sym_QMARK] = ACTIONS(9372), + [aux_sym_close_statement_token1] = ACTIONS(9370), + [aux_sym_put_statement_token1] = ACTIONS(9370), + [aux_sym_unlock_statement_token1] = ACTIONS(9370), + [aux_sym_seek_statement_token1] = ACTIONS(9370), + [sym_reset_statement] = ACTIONS(9370), + [aux_sym_raise_event_statement_token1] = ACTIONS(9370), + [sym_stop_statement] = ACTIONS(9370), + [sym_beep_statement] = ACTIONS(9370), + [aux_sym_unload_statement_token1] = ACTIONS(9370), + [aux_sym_def_type_statement_token1] = ACTIONS(9370), + [aux_sym_def_type_statement_token2] = ACTIONS(9370), + [aux_sym_def_type_statement_token3] = ACTIONS(9370), + [aux_sym_def_type_statement_token4] = ACTIONS(9370), + [aux_sym_def_type_statement_token5] = ACTIONS(9370), + [aux_sym_def_type_statement_token6] = ACTIONS(9370), + [aux_sym_def_type_statement_token7] = ACTIONS(9370), + [aux_sym_def_type_statement_token8] = ACTIONS(9370), + [aux_sym_def_type_statement_token9] = ACTIONS(9370), + [aux_sym_def_type_statement_token10] = ACTIONS(9370), + [aux_sym_def_type_statement_token11] = ACTIONS(9370), + [aux_sym_def_type_statement_token12] = ACTIONS(9370), + [aux_sym_def_type_statement_token13] = ACTIONS(9370), + [aux_sym_def_type_statement_token14] = ACTIONS(9370), + [aux_sym_call_statement_token1] = ACTIONS(9370), + [sym__ambiguous_call_statement] = ACTIONS(9370), + [aux_sym_addressof_expression_token1] = ACTIONS(9370), + [aux_sym_type_of_expression_token1] = ACTIONS(9370), + [aux_sym_unary_expression_token1] = ACTIONS(9370), + [sym_string_literal] = ACTIONS(9372), + [sym_number_literal] = ACTIONS(9372), + [aux_sym_boolean_literal_token1] = ACTIONS(9370), + [aux_sym_boolean_literal_token2] = ACTIONS(9370), + [sym_nothing_literal] = ACTIONS(9370), + [sym_null_literal] = ACTIONS(9370), + [sym_empty_literal] = ACTIONS(9370), + [sym_date_literal] = ACTIONS(9372), + [anon_sym_POUND] = ACTIONS(9370), + }, + [STATE(6329)] = { + [sym_identifier] = ACTIONS(9712), + [sym_newline] = ACTIONS(9714), + [anon_sym_COLON] = ACTIONS(9714), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9712), + [aux_sym_frm_property_statement_token1] = ACTIONS(9712), + [anon_sym_DOT] = ACTIONS(9712), + [anon_sym_BANG] = ACTIONS(9714), + [aux_sym__attribute_identifier_token1] = ACTIONS(9712), + [aux_sym_option_statement_token3] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9712), + [aux_sym_preprocessor_const_token1] = ACTIONS(9712), + [sym_static_modifier] = ACTIONS(9712), + [sym__dim_keyword] = ACTIONS(9712), + [sym__redim_keyword] = ACTIONS(9712), + [aux_sym_get_accessor_token1] = ACTIONS(9712), + [aux_sym_set_accessor_token1] = ACTIONS(9712), + [aux_sym_const_declaration_token1] = ACTIONS(9712), + [anon_sym_LPAREN] = ACTIONS(9714), + [aux_sym_as_type_clause_token2] = ACTIONS(9712), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9712), + [aux_sym_visibility_token1] = ACTIONS(9712), + [aux_sym_visibility_token2] = ACTIONS(9712), + [aux_sym_elseif_fragment_token1] = ACTIONS(9712), + [aux_sym_else_fragment_token1] = ACTIONS(9712), + [aux_sym_select_statement_token1] = ACTIONS(9712), + [aux_sym_select_statement_token2] = ACTIONS(9712), + [aux_sym__for_header_token1] = ACTIONS(9712), + [aux_sym_do_statement_token1] = ACTIONS(9712), + [aux_sym_do_condition_token1] = ACTIONS(9712), + [aux_sym_with_statement_token1] = ACTIONS(9712), + [aux_sym_exit_statement_token1] = ACTIONS(9712), + [sym_end_statement] = ACTIONS(9714), + [aux_sym_on_goto_statement_token1] = ACTIONS(9712), + [aux_sym_on_goto_statement_token2] = ACTIONS(9712), + [aux_sym_on_error_statement_token2] = ACTIONS(9712), + [sym__ambiguous_redim_statement] = ACTIONS(9714), + [aux_sym_erase_statement_token1] = ACTIONS(9712), + [aux_sym_open_statement_token1] = ACTIONS(9712), + [aux_sym_file_mode_token2] = ACTIONS(9712), + [aux_sym_file_access_token2] = ACTIONS(9712), + [aux_sym_file_lock_token2] = ACTIONS(9712), + [aux_sym_print_statement_token1] = ACTIONS(9712), + [anon_sym_PLUS] = ACTIONS(9714), + [anon_sym_DASH] = ACTIONS(9712), + [anon_sym_QMARK] = ACTIONS(9714), + [aux_sym_close_statement_token1] = ACTIONS(9712), + [aux_sym_put_statement_token1] = ACTIONS(9712), + [aux_sym_unlock_statement_token1] = ACTIONS(9712), + [aux_sym_seek_statement_token1] = ACTIONS(9712), + [sym_reset_statement] = ACTIONS(9712), + [aux_sym_raise_event_statement_token1] = ACTIONS(9712), + [sym_stop_statement] = ACTIONS(9712), + [sym_beep_statement] = ACTIONS(9712), + [aux_sym_unload_statement_token1] = ACTIONS(9712), + [aux_sym_def_type_statement_token1] = ACTIONS(9712), + [aux_sym_def_type_statement_token2] = ACTIONS(9712), + [aux_sym_def_type_statement_token3] = ACTIONS(9712), + [aux_sym_def_type_statement_token4] = ACTIONS(9712), + [aux_sym_def_type_statement_token5] = ACTIONS(9712), + [aux_sym_def_type_statement_token6] = ACTIONS(9712), + [aux_sym_def_type_statement_token7] = ACTIONS(9712), + [aux_sym_def_type_statement_token8] = ACTIONS(9712), + [aux_sym_def_type_statement_token9] = ACTIONS(9712), + [aux_sym_def_type_statement_token10] = ACTIONS(9712), + [aux_sym_def_type_statement_token11] = ACTIONS(9712), + [aux_sym_def_type_statement_token12] = ACTIONS(9712), + [aux_sym_def_type_statement_token13] = ACTIONS(9712), + [aux_sym_def_type_statement_token14] = ACTIONS(9712), + [aux_sym_call_statement_token1] = ACTIONS(9712), + [sym__ambiguous_call_statement] = ACTIONS(9712), + [aux_sym_addressof_expression_token1] = ACTIONS(9712), + [aux_sym_type_of_expression_token1] = ACTIONS(9712), + [aux_sym_unary_expression_token1] = ACTIONS(9712), + [sym_string_literal] = ACTIONS(9714), + [sym_number_literal] = ACTIONS(9714), + [aux_sym_boolean_literal_token1] = ACTIONS(9712), + [aux_sym_boolean_literal_token2] = ACTIONS(9712), + [sym_nothing_literal] = ACTIONS(9712), + [sym_null_literal] = ACTIONS(9712), + [sym_empty_literal] = ACTIONS(9712), + [sym_date_literal] = ACTIONS(9714), + [anon_sym_POUND] = ACTIONS(9712), + }, + [STATE(6330)] = { + [sym_identifier] = ACTIONS(9716), + [sym_newline] = ACTIONS(9718), + [anon_sym_COLON] = ACTIONS(9718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9716), + [aux_sym_frm_property_statement_token1] = ACTIONS(9716), + [anon_sym_DOT] = ACTIONS(9716), + [anon_sym_BANG] = ACTIONS(9718), + [aux_sym__attribute_identifier_token1] = ACTIONS(9716), + [aux_sym_option_statement_token3] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9716), + [aux_sym_preprocessor_const_token1] = ACTIONS(9716), + [sym_static_modifier] = ACTIONS(9716), + [sym__dim_keyword] = ACTIONS(9716), + [sym__redim_keyword] = ACTIONS(9716), + [aux_sym_get_accessor_token1] = ACTIONS(9716), + [aux_sym_set_accessor_token1] = ACTIONS(9716), + [aux_sym_const_declaration_token1] = ACTIONS(9716), + [anon_sym_LPAREN] = ACTIONS(9718), + [aux_sym_as_type_clause_token2] = ACTIONS(9716), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9716), + [aux_sym_visibility_token1] = ACTIONS(9716), + [aux_sym_visibility_token2] = ACTIONS(9716), + [aux_sym_elseif_fragment_token1] = ACTIONS(9716), + [aux_sym_else_fragment_token1] = ACTIONS(9716), + [aux_sym_select_statement_token1] = ACTIONS(9716), + [aux_sym_select_statement_token2] = ACTIONS(9716), + [aux_sym__for_header_token1] = ACTIONS(9716), + [aux_sym_do_statement_token1] = ACTIONS(9716), + [aux_sym_do_condition_token1] = ACTIONS(9716), + [aux_sym_with_statement_token1] = ACTIONS(9716), + [aux_sym_exit_statement_token1] = ACTIONS(9716), + [sym_end_statement] = ACTIONS(9718), + [aux_sym_on_goto_statement_token1] = ACTIONS(9716), + [aux_sym_on_goto_statement_token2] = ACTIONS(9716), + [aux_sym_on_error_statement_token2] = ACTIONS(9716), + [sym__ambiguous_redim_statement] = ACTIONS(9718), + [aux_sym_erase_statement_token1] = ACTIONS(9716), + [aux_sym_open_statement_token1] = ACTIONS(9716), + [aux_sym_file_mode_token2] = ACTIONS(9716), + [aux_sym_file_access_token2] = ACTIONS(9716), + [aux_sym_file_lock_token2] = ACTIONS(9716), + [aux_sym_print_statement_token1] = ACTIONS(9716), + [anon_sym_PLUS] = ACTIONS(9718), + [anon_sym_DASH] = ACTIONS(9716), + [anon_sym_QMARK] = ACTIONS(9718), + [aux_sym_close_statement_token1] = ACTIONS(9716), + [aux_sym_put_statement_token1] = ACTIONS(9716), + [aux_sym_unlock_statement_token1] = ACTIONS(9716), + [aux_sym_seek_statement_token1] = ACTIONS(9716), + [sym_reset_statement] = ACTIONS(9716), + [aux_sym_raise_event_statement_token1] = ACTIONS(9716), + [sym_stop_statement] = ACTIONS(9716), + [sym_beep_statement] = ACTIONS(9716), + [aux_sym_unload_statement_token1] = ACTIONS(9716), + [aux_sym_def_type_statement_token1] = ACTIONS(9716), + [aux_sym_def_type_statement_token2] = ACTIONS(9716), + [aux_sym_def_type_statement_token3] = ACTIONS(9716), + [aux_sym_def_type_statement_token4] = ACTIONS(9716), + [aux_sym_def_type_statement_token5] = ACTIONS(9716), + [aux_sym_def_type_statement_token6] = ACTIONS(9716), + [aux_sym_def_type_statement_token7] = ACTIONS(9716), + [aux_sym_def_type_statement_token8] = ACTIONS(9716), + [aux_sym_def_type_statement_token9] = ACTIONS(9716), + [aux_sym_def_type_statement_token10] = ACTIONS(9716), + [aux_sym_def_type_statement_token11] = ACTIONS(9716), + [aux_sym_def_type_statement_token12] = ACTIONS(9716), + [aux_sym_def_type_statement_token13] = ACTIONS(9716), + [aux_sym_def_type_statement_token14] = ACTIONS(9716), + [aux_sym_call_statement_token1] = ACTIONS(9716), + [sym__ambiguous_call_statement] = ACTIONS(9716), + [aux_sym_addressof_expression_token1] = ACTIONS(9716), + [aux_sym_type_of_expression_token1] = ACTIONS(9716), + [aux_sym_unary_expression_token1] = ACTIONS(9716), + [sym_string_literal] = ACTIONS(9718), + [sym_number_literal] = ACTIONS(9718), + [aux_sym_boolean_literal_token1] = ACTIONS(9716), + [aux_sym_boolean_literal_token2] = ACTIONS(9716), + [sym_nothing_literal] = ACTIONS(9716), + [sym_null_literal] = ACTIONS(9716), + [sym_empty_literal] = ACTIONS(9716), + [sym_date_literal] = ACTIONS(9718), + [anon_sym_POUND] = ACTIONS(9716), + }, + [STATE(6331)] = { + [sym_identifier] = ACTIONS(9740), + [sym_newline] = ACTIONS(9742), + [anon_sym_COLON] = ACTIONS(9742), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9740), + [aux_sym_frm_property_statement_token1] = ACTIONS(9740), + [anon_sym_DOT] = ACTIONS(9740), + [anon_sym_BANG] = ACTIONS(9742), + [aux_sym__attribute_identifier_token1] = ACTIONS(9740), + [aux_sym_option_statement_token3] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9740), + [aux_sym_preprocessor_const_token1] = ACTIONS(9740), + [sym_static_modifier] = ACTIONS(9740), + [sym__dim_keyword] = ACTIONS(9740), + [sym__redim_keyword] = ACTIONS(9740), + [aux_sym_get_accessor_token1] = ACTIONS(9740), + [aux_sym_set_accessor_token1] = ACTIONS(9740), + [aux_sym_const_declaration_token1] = ACTIONS(9740), + [anon_sym_LPAREN] = ACTIONS(9742), + [aux_sym_as_type_clause_token2] = ACTIONS(9740), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9740), + [aux_sym_visibility_token1] = ACTIONS(9740), + [aux_sym_visibility_token2] = ACTIONS(9740), + [aux_sym_elseif_fragment_token1] = ACTIONS(9740), + [aux_sym_else_fragment_token1] = ACTIONS(9740), + [aux_sym_select_statement_token1] = ACTIONS(9740), + [aux_sym__for_header_token1] = ACTIONS(9740), + [aux_sym_do_statement_token1] = ACTIONS(9740), + [aux_sym_do_condition_token1] = ACTIONS(9740), + [aux_sym_with_statement_token1] = ACTIONS(9740), + [aux_sym_exit_statement_token1] = ACTIONS(9740), + [sym_end_statement] = ACTIONS(9742), + [aux_sym_on_goto_statement_token1] = ACTIONS(9740), + [aux_sym_on_goto_statement_token2] = ACTIONS(9740), + [aux_sym_on_error_statement_token2] = ACTIONS(9740), + [sym__ambiguous_redim_statement] = ACTIONS(9742), + [aux_sym_erase_statement_token1] = ACTIONS(9740), + [aux_sym_open_statement_token1] = ACTIONS(9740), + [aux_sym_file_mode_token2] = ACTIONS(9740), + [aux_sym_file_access_token2] = ACTIONS(9740), + [aux_sym_file_lock_token2] = ACTIONS(9740), + [aux_sym_print_statement_token1] = ACTIONS(9740), + [anon_sym_PLUS] = ACTIONS(9742), + [anon_sym_DASH] = ACTIONS(9740), + [anon_sym_QMARK] = ACTIONS(9742), + [aux_sym_close_statement_token1] = ACTIONS(9740), + [aux_sym_put_statement_token1] = ACTIONS(9740), + [aux_sym_unlock_statement_token1] = ACTIONS(9740), + [aux_sym_seek_statement_token1] = ACTIONS(9740), + [sym_reset_statement] = ACTIONS(9740), + [aux_sym_raise_event_statement_token1] = ACTIONS(9740), + [sym_stop_statement] = ACTIONS(9740), + [sym_beep_statement] = ACTIONS(9740), + [aux_sym_unload_statement_token1] = ACTIONS(9740), + [aux_sym_def_type_statement_token1] = ACTIONS(9740), + [aux_sym_def_type_statement_token2] = ACTIONS(9740), + [aux_sym_def_type_statement_token3] = ACTIONS(9740), + [aux_sym_def_type_statement_token4] = ACTIONS(9740), + [aux_sym_def_type_statement_token5] = ACTIONS(9740), + [aux_sym_def_type_statement_token6] = ACTIONS(9740), + [aux_sym_def_type_statement_token7] = ACTIONS(9740), + [aux_sym_def_type_statement_token8] = ACTIONS(9740), + [aux_sym_def_type_statement_token9] = ACTIONS(9740), + [aux_sym_def_type_statement_token10] = ACTIONS(9740), + [aux_sym_def_type_statement_token11] = ACTIONS(9740), + [aux_sym_def_type_statement_token12] = ACTIONS(9740), + [aux_sym_def_type_statement_token13] = ACTIONS(9740), + [aux_sym_def_type_statement_token14] = ACTIONS(9740), + [aux_sym_call_statement_token1] = ACTIONS(9740), + [sym__ambiguous_call_statement] = ACTIONS(9740), + [aux_sym_addressof_expression_token1] = ACTIONS(9740), + [aux_sym_type_of_expression_token1] = ACTIONS(9740), + [aux_sym_unary_expression_token1] = ACTIONS(9740), + [sym_string_literal] = ACTIONS(9742), + [sym_number_literal] = ACTIONS(9742), + [aux_sym_boolean_literal_token1] = ACTIONS(9740), + [aux_sym_boolean_literal_token2] = ACTIONS(9740), + [sym_nothing_literal] = ACTIONS(9740), + [sym_null_literal] = ACTIONS(9740), + [sym_empty_literal] = ACTIONS(9740), + [sym_date_literal] = ACTIONS(9742), + [anon_sym_POUND] = ACTIONS(9740), + }, + [STATE(6332)] = { + [sym_identifier] = ACTIONS(9356), + [sym_newline] = ACTIONS(9358), + [anon_sym_COLON] = ACTIONS(9358), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9356), + [aux_sym_frm_property_statement_token1] = ACTIONS(9356), + [anon_sym_DOT] = ACTIONS(9356), + [anon_sym_BANG] = ACTIONS(9358), + [aux_sym__attribute_identifier_token1] = ACTIONS(9356), + [aux_sym_option_statement_token3] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9356), + [aux_sym_preprocessor_const_token1] = ACTIONS(9356), + [sym_static_modifier] = ACTIONS(9356), + [sym__dim_keyword] = ACTIONS(9356), + [sym__redim_keyword] = ACTIONS(9356), + [aux_sym_get_accessor_token1] = ACTIONS(9356), + [aux_sym_set_accessor_token1] = ACTIONS(9356), + [aux_sym_const_declaration_token1] = ACTIONS(9356), + [anon_sym_LPAREN] = ACTIONS(9358), + [aux_sym_as_type_clause_token2] = ACTIONS(9356), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9356), + [aux_sym_visibility_token1] = ACTIONS(9356), + [aux_sym_visibility_token2] = ACTIONS(9356), + [aux_sym_elseif_fragment_token1] = ACTIONS(9356), + [aux_sym_else_fragment_token1] = ACTIONS(9356), + [aux_sym_select_statement_token1] = ACTIONS(9356), + [aux_sym_select_statement_token2] = ACTIONS(9356), + [aux_sym__for_header_token1] = ACTIONS(9356), + [aux_sym_do_statement_token1] = ACTIONS(9356), + [aux_sym_do_condition_token1] = ACTIONS(9356), + [aux_sym_with_statement_token1] = ACTIONS(9356), + [aux_sym_exit_statement_token1] = ACTIONS(9356), + [sym_end_statement] = ACTIONS(9358), + [aux_sym_on_goto_statement_token1] = ACTIONS(9356), + [aux_sym_on_goto_statement_token2] = ACTIONS(9356), + [aux_sym_on_error_statement_token2] = ACTIONS(9356), + [sym__ambiguous_redim_statement] = ACTIONS(9358), + [aux_sym_erase_statement_token1] = ACTIONS(9356), + [aux_sym_open_statement_token1] = ACTIONS(9356), + [aux_sym_file_mode_token2] = ACTIONS(9356), + [aux_sym_file_access_token2] = ACTIONS(9356), + [aux_sym_file_lock_token2] = ACTIONS(9356), + [aux_sym_print_statement_token1] = ACTIONS(9356), + [anon_sym_PLUS] = ACTIONS(9358), + [anon_sym_DASH] = ACTIONS(9356), + [anon_sym_QMARK] = ACTIONS(9358), + [aux_sym_close_statement_token1] = ACTIONS(9356), + [aux_sym_put_statement_token1] = ACTIONS(9356), + [aux_sym_unlock_statement_token1] = ACTIONS(9356), + [aux_sym_seek_statement_token1] = ACTIONS(9356), + [sym_reset_statement] = ACTIONS(9356), + [aux_sym_raise_event_statement_token1] = ACTIONS(9356), + [sym_stop_statement] = ACTIONS(9356), + [sym_beep_statement] = ACTIONS(9356), + [aux_sym_unload_statement_token1] = ACTIONS(9356), + [aux_sym_def_type_statement_token1] = ACTIONS(9356), + [aux_sym_def_type_statement_token2] = ACTIONS(9356), + [aux_sym_def_type_statement_token3] = ACTIONS(9356), + [aux_sym_def_type_statement_token4] = ACTIONS(9356), + [aux_sym_def_type_statement_token5] = ACTIONS(9356), + [aux_sym_def_type_statement_token6] = ACTIONS(9356), + [aux_sym_def_type_statement_token7] = ACTIONS(9356), + [aux_sym_def_type_statement_token8] = ACTIONS(9356), + [aux_sym_def_type_statement_token9] = ACTIONS(9356), + [aux_sym_def_type_statement_token10] = ACTIONS(9356), + [aux_sym_def_type_statement_token11] = ACTIONS(9356), + [aux_sym_def_type_statement_token12] = ACTIONS(9356), + [aux_sym_def_type_statement_token13] = ACTIONS(9356), + [aux_sym_def_type_statement_token14] = ACTIONS(9356), + [aux_sym_call_statement_token1] = ACTIONS(9356), + [sym__ambiguous_call_statement] = ACTIONS(9356), + [aux_sym_addressof_expression_token1] = ACTIONS(9356), + [aux_sym_type_of_expression_token1] = ACTIONS(9356), + [aux_sym_unary_expression_token1] = ACTIONS(9356), + [sym_string_literal] = ACTIONS(9358), + [sym_number_literal] = ACTIONS(9358), + [aux_sym_boolean_literal_token1] = ACTIONS(9356), + [aux_sym_boolean_literal_token2] = ACTIONS(9356), + [sym_nothing_literal] = ACTIONS(9356), + [sym_null_literal] = ACTIONS(9356), + [sym_empty_literal] = ACTIONS(9356), + [sym_date_literal] = ACTIONS(9358), + [anon_sym_POUND] = ACTIONS(9356), + }, + [STATE(6333)] = { + [sym_identifier] = ACTIONS(9146), + [sym_newline] = ACTIONS(9148), + [anon_sym_COLON] = ACTIONS(9148), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9146), + [aux_sym_frm_property_statement_token1] = ACTIONS(9146), + [anon_sym_DOT] = ACTIONS(9146), + [anon_sym_BANG] = ACTIONS(9148), + [aux_sym__attribute_identifier_token1] = ACTIONS(9146), + [aux_sym_option_statement_token3] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9146), + [aux_sym_preprocessor_const_token1] = ACTIONS(9146), + [sym_static_modifier] = ACTIONS(9146), + [sym__dim_keyword] = ACTIONS(9146), + [sym__redim_keyword] = ACTIONS(9146), + [aux_sym_get_accessor_token1] = ACTIONS(9146), + [aux_sym_set_accessor_token1] = ACTIONS(9146), + [aux_sym_const_declaration_token1] = ACTIONS(9146), + [anon_sym_LPAREN] = ACTIONS(9148), + [aux_sym_as_type_clause_token2] = ACTIONS(9146), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9146), + [aux_sym_visibility_token1] = ACTIONS(9146), + [aux_sym_visibility_token2] = ACTIONS(9146), + [aux_sym_elseif_fragment_token1] = ACTIONS(9146), + [aux_sym_else_fragment_token1] = ACTIONS(9146), + [aux_sym_select_statement_token1] = ACTIONS(9146), + [aux_sym__for_header_token1] = ACTIONS(9146), + [aux_sym_do_statement_token1] = ACTIONS(9146), + [aux_sym_do_condition_token1] = ACTIONS(9146), + [aux_sym_with_statement_token1] = ACTIONS(9146), + [aux_sym_exit_statement_token1] = ACTIONS(9146), + [sym_end_statement] = ACTIONS(9148), + [aux_sym_on_goto_statement_token1] = ACTIONS(9146), + [aux_sym_on_goto_statement_token2] = ACTIONS(9146), + [aux_sym_on_error_statement_token2] = ACTIONS(9146), + [sym__ambiguous_redim_statement] = ACTIONS(9148), + [aux_sym_erase_statement_token1] = ACTIONS(9146), + [aux_sym_open_statement_token1] = ACTIONS(9146), + [aux_sym_file_mode_token2] = ACTIONS(9146), + [aux_sym_file_access_token2] = ACTIONS(9146), + [aux_sym_file_lock_token2] = ACTIONS(9146), + [aux_sym_print_statement_token1] = ACTIONS(9146), + [anon_sym_PLUS] = ACTIONS(9148), + [anon_sym_DASH] = ACTIONS(9146), + [anon_sym_QMARK] = ACTIONS(9148), + [aux_sym_close_statement_token1] = ACTIONS(9146), + [aux_sym_put_statement_token1] = ACTIONS(9146), + [aux_sym_unlock_statement_token1] = ACTIONS(9146), + [aux_sym_seek_statement_token1] = ACTIONS(9146), + [sym_reset_statement] = ACTIONS(9146), + [aux_sym_raise_event_statement_token1] = ACTIONS(9146), + [sym_stop_statement] = ACTIONS(9146), + [sym_beep_statement] = ACTIONS(9146), + [aux_sym_unload_statement_token1] = ACTIONS(9146), + [aux_sym_def_type_statement_token1] = ACTIONS(9146), + [aux_sym_def_type_statement_token2] = ACTIONS(9146), + [aux_sym_def_type_statement_token3] = ACTIONS(9146), + [aux_sym_def_type_statement_token4] = ACTIONS(9146), + [aux_sym_def_type_statement_token5] = ACTIONS(9146), + [aux_sym_def_type_statement_token6] = ACTIONS(9146), + [aux_sym_def_type_statement_token7] = ACTIONS(9146), + [aux_sym_def_type_statement_token8] = ACTIONS(9146), + [aux_sym_def_type_statement_token9] = ACTIONS(9146), + [aux_sym_def_type_statement_token10] = ACTIONS(9146), + [aux_sym_def_type_statement_token11] = ACTIONS(9146), + [aux_sym_def_type_statement_token12] = ACTIONS(9146), + [aux_sym_def_type_statement_token13] = ACTIONS(9146), + [aux_sym_def_type_statement_token14] = ACTIONS(9146), + [aux_sym_call_statement_token1] = ACTIONS(9146), + [sym__ambiguous_call_statement] = ACTIONS(9146), + [aux_sym_addressof_expression_token1] = ACTIONS(9146), + [aux_sym_type_of_expression_token1] = ACTIONS(9146), + [aux_sym_unary_expression_token1] = ACTIONS(9146), + [sym_string_literal] = ACTIONS(9148), + [sym_number_literal] = ACTIONS(9148), + [aux_sym_boolean_literal_token1] = ACTIONS(9146), + [aux_sym_boolean_literal_token2] = ACTIONS(9146), + [sym_nothing_literal] = ACTIONS(9146), + [sym_null_literal] = ACTIONS(9146), + [sym_empty_literal] = ACTIONS(9146), + [sym_date_literal] = ACTIONS(9148), + [anon_sym_POUND] = ACTIONS(9146), + }, + [STATE(6334)] = { + [sym_identifier] = ACTIONS(9552), + [sym_newline] = ACTIONS(9554), + [anon_sym_COLON] = ACTIONS(9554), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9552), + [aux_sym_frm_property_statement_token1] = ACTIONS(9552), + [anon_sym_DOT] = ACTIONS(9552), + [anon_sym_BANG] = ACTIONS(9554), + [aux_sym__attribute_identifier_token1] = ACTIONS(9552), + [aux_sym_option_statement_token3] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9552), + [aux_sym_preprocessor_const_token1] = ACTIONS(9552), + [sym_static_modifier] = ACTIONS(9552), + [sym__dim_keyword] = ACTIONS(9552), + [sym__redim_keyword] = ACTIONS(9552), + [aux_sym_get_accessor_token1] = ACTIONS(9552), + [aux_sym_set_accessor_token1] = ACTIONS(9552), + [aux_sym_const_declaration_token1] = ACTIONS(9552), + [anon_sym_LPAREN] = ACTIONS(9554), + [aux_sym_as_type_clause_token2] = ACTIONS(9552), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9552), + [aux_sym_visibility_token1] = ACTIONS(9552), + [aux_sym_visibility_token2] = ACTIONS(9552), + [aux_sym_elseif_fragment_token1] = ACTIONS(9552), + [aux_sym_else_fragment_token1] = ACTIONS(9552), + [aux_sym_select_statement_token1] = ACTIONS(9552), + [aux_sym__for_header_token1] = ACTIONS(9552), + [aux_sym_do_statement_token1] = ACTIONS(9552), + [aux_sym_do_condition_token1] = ACTIONS(9552), + [aux_sym_with_statement_token1] = ACTIONS(9552), + [aux_sym_exit_statement_token1] = ACTIONS(9552), + [sym_end_statement] = ACTIONS(9554), + [aux_sym_on_goto_statement_token1] = ACTIONS(9552), + [aux_sym_on_goto_statement_token2] = ACTIONS(9552), + [aux_sym_on_error_statement_token2] = ACTIONS(9552), + [sym__ambiguous_redim_statement] = ACTIONS(9554), + [aux_sym_erase_statement_token1] = ACTIONS(9552), + [aux_sym_open_statement_token1] = ACTIONS(9552), + [aux_sym_file_mode_token2] = ACTIONS(9552), + [aux_sym_file_access_token2] = ACTIONS(9552), + [aux_sym_file_lock_token2] = ACTIONS(9552), + [aux_sym_print_statement_token1] = ACTIONS(9552), + [anon_sym_PLUS] = ACTIONS(9554), + [anon_sym_DASH] = ACTIONS(9552), + [anon_sym_QMARK] = ACTIONS(9554), + [aux_sym_close_statement_token1] = ACTIONS(9552), + [aux_sym_put_statement_token1] = ACTIONS(9552), + [aux_sym_unlock_statement_token1] = ACTIONS(9552), + [aux_sym_seek_statement_token1] = ACTIONS(9552), + [sym_reset_statement] = ACTIONS(9552), + [aux_sym_raise_event_statement_token1] = ACTIONS(9552), + [sym_stop_statement] = ACTIONS(9552), + [sym_beep_statement] = ACTIONS(9552), + [aux_sym_unload_statement_token1] = ACTIONS(9552), + [aux_sym_def_type_statement_token1] = ACTIONS(9552), + [aux_sym_def_type_statement_token2] = ACTIONS(9552), + [aux_sym_def_type_statement_token3] = ACTIONS(9552), + [aux_sym_def_type_statement_token4] = ACTIONS(9552), + [aux_sym_def_type_statement_token5] = ACTIONS(9552), + [aux_sym_def_type_statement_token6] = ACTIONS(9552), + [aux_sym_def_type_statement_token7] = ACTIONS(9552), + [aux_sym_def_type_statement_token8] = ACTIONS(9552), + [aux_sym_def_type_statement_token9] = ACTIONS(9552), + [aux_sym_def_type_statement_token10] = ACTIONS(9552), + [aux_sym_def_type_statement_token11] = ACTIONS(9552), + [aux_sym_def_type_statement_token12] = ACTIONS(9552), + [aux_sym_def_type_statement_token13] = ACTIONS(9552), + [aux_sym_def_type_statement_token14] = ACTIONS(9552), + [aux_sym_call_statement_token1] = ACTIONS(9552), + [sym__ambiguous_call_statement] = ACTIONS(9552), + [aux_sym_addressof_expression_token1] = ACTIONS(9552), + [aux_sym_type_of_expression_token1] = ACTIONS(9552), + [aux_sym_unary_expression_token1] = ACTIONS(9552), + [sym_string_literal] = ACTIONS(9554), + [sym_number_literal] = ACTIONS(9554), + [aux_sym_boolean_literal_token1] = ACTIONS(9552), + [aux_sym_boolean_literal_token2] = ACTIONS(9552), + [sym_nothing_literal] = ACTIONS(9552), + [sym_null_literal] = ACTIONS(9552), + [sym_empty_literal] = ACTIONS(9552), + [sym_date_literal] = ACTIONS(9554), + [anon_sym_POUND] = ACTIONS(9552), + }, + [STATE(6335)] = { + [sym_identifier] = ACTIONS(9744), + [sym_newline] = ACTIONS(9746), + [anon_sym_COLON] = ACTIONS(9746), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9744), + [aux_sym_frm_property_statement_token1] = ACTIONS(9744), + [anon_sym_DOT] = ACTIONS(9744), + [anon_sym_BANG] = ACTIONS(9746), + [aux_sym__attribute_identifier_token1] = ACTIONS(9744), + [aux_sym_option_statement_token3] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9744), + [aux_sym_preprocessor_const_token1] = ACTIONS(9744), + [sym_static_modifier] = ACTIONS(9744), + [sym__dim_keyword] = ACTIONS(9744), + [sym__redim_keyword] = ACTIONS(9744), + [aux_sym_get_accessor_token1] = ACTIONS(9744), + [aux_sym_set_accessor_token1] = ACTIONS(9744), + [aux_sym_const_declaration_token1] = ACTIONS(9744), + [anon_sym_LPAREN] = ACTIONS(9746), + [aux_sym_as_type_clause_token2] = ACTIONS(9744), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9744), + [aux_sym_visibility_token1] = ACTIONS(9744), + [aux_sym_visibility_token2] = ACTIONS(9744), + [aux_sym_elseif_fragment_token1] = ACTIONS(9744), + [aux_sym_else_fragment_token1] = ACTIONS(9744), + [aux_sym_select_statement_token1] = ACTIONS(9744), + [aux_sym__for_header_token1] = ACTIONS(9744), + [aux_sym_do_statement_token1] = ACTIONS(9744), + [aux_sym_do_condition_token1] = ACTIONS(9744), + [aux_sym_with_statement_token1] = ACTIONS(9744), + [aux_sym_exit_statement_token1] = ACTIONS(9744), + [sym_end_statement] = ACTIONS(9746), + [aux_sym_on_goto_statement_token1] = ACTIONS(9744), + [aux_sym_on_goto_statement_token2] = ACTIONS(9744), + [aux_sym_on_error_statement_token2] = ACTIONS(9744), + [sym__ambiguous_redim_statement] = ACTIONS(9746), + [aux_sym_erase_statement_token1] = ACTIONS(9744), + [aux_sym_open_statement_token1] = ACTIONS(9744), + [aux_sym_file_mode_token2] = ACTIONS(9744), + [aux_sym_file_access_token2] = ACTIONS(9744), + [aux_sym_file_lock_token2] = ACTIONS(9744), + [aux_sym_print_statement_token1] = ACTIONS(9744), + [anon_sym_PLUS] = ACTIONS(9746), + [anon_sym_DASH] = ACTIONS(9744), + [anon_sym_QMARK] = ACTIONS(9746), + [aux_sym_close_statement_token1] = ACTIONS(9744), + [aux_sym_put_statement_token1] = ACTIONS(9744), + [aux_sym_unlock_statement_token1] = ACTIONS(9744), + [aux_sym_seek_statement_token1] = ACTIONS(9744), + [sym_reset_statement] = ACTIONS(9744), + [aux_sym_raise_event_statement_token1] = ACTIONS(9744), + [sym_stop_statement] = ACTIONS(9744), + [sym_beep_statement] = ACTIONS(9744), + [aux_sym_unload_statement_token1] = ACTIONS(9744), + [aux_sym_def_type_statement_token1] = ACTIONS(9744), + [aux_sym_def_type_statement_token2] = ACTIONS(9744), + [aux_sym_def_type_statement_token3] = ACTIONS(9744), + [aux_sym_def_type_statement_token4] = ACTIONS(9744), + [aux_sym_def_type_statement_token5] = ACTIONS(9744), + [aux_sym_def_type_statement_token6] = ACTIONS(9744), + [aux_sym_def_type_statement_token7] = ACTIONS(9744), + [aux_sym_def_type_statement_token8] = ACTIONS(9744), + [aux_sym_def_type_statement_token9] = ACTIONS(9744), + [aux_sym_def_type_statement_token10] = ACTIONS(9744), + [aux_sym_def_type_statement_token11] = ACTIONS(9744), + [aux_sym_def_type_statement_token12] = ACTIONS(9744), + [aux_sym_def_type_statement_token13] = ACTIONS(9744), + [aux_sym_def_type_statement_token14] = ACTIONS(9744), + [aux_sym_call_statement_token1] = ACTIONS(9744), + [sym__ambiguous_call_statement] = ACTIONS(9744), + [aux_sym_addressof_expression_token1] = ACTIONS(9744), + [aux_sym_type_of_expression_token1] = ACTIONS(9744), + [aux_sym_unary_expression_token1] = ACTIONS(9744), + [sym_string_literal] = ACTIONS(9746), + [sym_number_literal] = ACTIONS(9746), + [aux_sym_boolean_literal_token1] = ACTIONS(9744), + [aux_sym_boolean_literal_token2] = ACTIONS(9744), + [sym_nothing_literal] = ACTIONS(9744), + [sym_null_literal] = ACTIONS(9744), + [sym_empty_literal] = ACTIONS(9744), + [sym_date_literal] = ACTIONS(9746), + [anon_sym_POUND] = ACTIONS(9744), + }, + [STATE(6336)] = { + [sym_identifier] = ACTIONS(9556), + [sym_newline] = ACTIONS(9558), + [anon_sym_COLON] = ACTIONS(9558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9556), + [aux_sym_frm_property_statement_token1] = ACTIONS(9556), + [anon_sym_DOT] = ACTIONS(9556), + [anon_sym_BANG] = ACTIONS(9558), + [aux_sym__attribute_identifier_token1] = ACTIONS(9556), + [aux_sym_option_statement_token3] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9556), + [aux_sym_preprocessor_const_token1] = ACTIONS(9556), + [sym_static_modifier] = ACTIONS(9556), + [sym__dim_keyword] = ACTIONS(9556), + [sym__redim_keyword] = ACTIONS(9556), + [aux_sym_get_accessor_token1] = ACTIONS(9556), + [aux_sym_set_accessor_token1] = ACTIONS(9556), + [aux_sym_const_declaration_token1] = ACTIONS(9556), + [anon_sym_LPAREN] = ACTIONS(9558), + [aux_sym_as_type_clause_token2] = ACTIONS(9556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9556), + [aux_sym_visibility_token1] = ACTIONS(9556), + [aux_sym_visibility_token2] = ACTIONS(9556), + [aux_sym_elseif_fragment_token1] = ACTIONS(9556), + [aux_sym_else_fragment_token1] = ACTIONS(9556), + [aux_sym_select_statement_token1] = ACTIONS(9556), + [aux_sym__for_header_token1] = ACTIONS(9556), + [aux_sym_do_statement_token1] = ACTIONS(9556), + [aux_sym_do_condition_token1] = ACTIONS(9556), + [aux_sym_with_statement_token1] = ACTIONS(9556), + [aux_sym_exit_statement_token1] = ACTIONS(9556), + [sym_end_statement] = ACTIONS(9558), + [aux_sym_on_goto_statement_token1] = ACTIONS(9556), + [aux_sym_on_goto_statement_token2] = ACTIONS(9556), + [aux_sym_on_error_statement_token2] = ACTIONS(9556), + [sym__ambiguous_redim_statement] = ACTIONS(9558), + [aux_sym_erase_statement_token1] = ACTIONS(9556), + [aux_sym_open_statement_token1] = ACTIONS(9556), + [aux_sym_file_mode_token2] = ACTIONS(9556), + [aux_sym_file_access_token2] = ACTIONS(9556), + [aux_sym_file_lock_token2] = ACTIONS(9556), + [aux_sym_print_statement_token1] = ACTIONS(9556), + [anon_sym_PLUS] = ACTIONS(9558), + [anon_sym_DASH] = ACTIONS(9556), + [anon_sym_QMARK] = ACTIONS(9558), + [aux_sym_close_statement_token1] = ACTIONS(9556), + [aux_sym_put_statement_token1] = ACTIONS(9556), + [aux_sym_unlock_statement_token1] = ACTIONS(9556), + [aux_sym_seek_statement_token1] = ACTIONS(9556), + [sym_reset_statement] = ACTIONS(9556), + [aux_sym_raise_event_statement_token1] = ACTIONS(9556), + [sym_stop_statement] = ACTIONS(9556), + [sym_beep_statement] = ACTIONS(9556), + [aux_sym_unload_statement_token1] = ACTIONS(9556), + [aux_sym_def_type_statement_token1] = ACTIONS(9556), + [aux_sym_def_type_statement_token2] = ACTIONS(9556), + [aux_sym_def_type_statement_token3] = ACTIONS(9556), + [aux_sym_def_type_statement_token4] = ACTIONS(9556), + [aux_sym_def_type_statement_token5] = ACTIONS(9556), + [aux_sym_def_type_statement_token6] = ACTIONS(9556), + [aux_sym_def_type_statement_token7] = ACTIONS(9556), + [aux_sym_def_type_statement_token8] = ACTIONS(9556), + [aux_sym_def_type_statement_token9] = ACTIONS(9556), + [aux_sym_def_type_statement_token10] = ACTIONS(9556), + [aux_sym_def_type_statement_token11] = ACTIONS(9556), + [aux_sym_def_type_statement_token12] = ACTIONS(9556), + [aux_sym_def_type_statement_token13] = ACTIONS(9556), + [aux_sym_def_type_statement_token14] = ACTIONS(9556), + [aux_sym_call_statement_token1] = ACTIONS(9556), + [sym__ambiguous_call_statement] = ACTIONS(9556), + [aux_sym_addressof_expression_token1] = ACTIONS(9556), + [aux_sym_type_of_expression_token1] = ACTIONS(9556), + [aux_sym_unary_expression_token1] = ACTIONS(9556), + [sym_string_literal] = ACTIONS(9558), + [sym_number_literal] = ACTIONS(9558), + [aux_sym_boolean_literal_token1] = ACTIONS(9556), + [aux_sym_boolean_literal_token2] = ACTIONS(9556), + [sym_nothing_literal] = ACTIONS(9556), + [sym_null_literal] = ACTIONS(9556), + [sym_empty_literal] = ACTIONS(9556), + [sym_date_literal] = ACTIONS(9558), + [anon_sym_POUND] = ACTIONS(9556), + }, + [STATE(6337)] = { + [sym_identifier] = ACTIONS(9560), + [sym_newline] = ACTIONS(9562), + [anon_sym_COLON] = ACTIONS(9562), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9560), + [aux_sym_frm_property_statement_token1] = ACTIONS(9560), + [anon_sym_DOT] = ACTIONS(9560), + [anon_sym_BANG] = ACTIONS(9562), + [aux_sym__attribute_identifier_token1] = ACTIONS(9560), + [aux_sym_option_statement_token3] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9560), + [aux_sym_preprocessor_const_token1] = ACTIONS(9560), + [sym_static_modifier] = ACTIONS(9560), + [sym__dim_keyword] = ACTIONS(9560), + [sym__redim_keyword] = ACTIONS(9560), + [aux_sym_get_accessor_token1] = ACTIONS(9560), + [aux_sym_set_accessor_token1] = ACTIONS(9560), + [aux_sym_const_declaration_token1] = ACTIONS(9560), + [anon_sym_LPAREN] = ACTIONS(9562), + [aux_sym_as_type_clause_token2] = ACTIONS(9560), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9560), + [aux_sym_visibility_token1] = ACTIONS(9560), + [aux_sym_visibility_token2] = ACTIONS(9560), + [aux_sym_elseif_fragment_token1] = ACTIONS(9560), + [aux_sym_else_fragment_token1] = ACTIONS(9560), + [aux_sym_select_statement_token1] = ACTIONS(9560), + [aux_sym__for_header_token1] = ACTIONS(9560), + [aux_sym_do_statement_token1] = ACTIONS(9560), + [aux_sym_do_condition_token1] = ACTIONS(9560), + [aux_sym_with_statement_token1] = ACTIONS(9560), + [aux_sym_exit_statement_token1] = ACTIONS(9560), + [sym_end_statement] = ACTIONS(9562), + [aux_sym_on_goto_statement_token1] = ACTIONS(9560), + [aux_sym_on_goto_statement_token2] = ACTIONS(9560), + [aux_sym_on_error_statement_token2] = ACTIONS(9560), + [sym__ambiguous_redim_statement] = ACTIONS(9562), + [aux_sym_erase_statement_token1] = ACTIONS(9560), + [aux_sym_open_statement_token1] = ACTIONS(9560), + [aux_sym_file_mode_token2] = ACTIONS(9560), + [aux_sym_file_access_token2] = ACTIONS(9560), + [aux_sym_file_lock_token2] = ACTIONS(9560), + [aux_sym_print_statement_token1] = ACTIONS(9560), + [anon_sym_PLUS] = ACTIONS(9562), + [anon_sym_DASH] = ACTIONS(9560), + [anon_sym_QMARK] = ACTIONS(9562), + [aux_sym_close_statement_token1] = ACTIONS(9560), + [aux_sym_put_statement_token1] = ACTIONS(9560), + [aux_sym_unlock_statement_token1] = ACTIONS(9560), + [aux_sym_seek_statement_token1] = ACTIONS(9560), + [sym_reset_statement] = ACTIONS(9560), + [aux_sym_raise_event_statement_token1] = ACTIONS(9560), + [sym_stop_statement] = ACTIONS(9560), + [sym_beep_statement] = ACTIONS(9560), + [aux_sym_unload_statement_token1] = ACTIONS(9560), + [aux_sym_def_type_statement_token1] = ACTIONS(9560), + [aux_sym_def_type_statement_token2] = ACTIONS(9560), + [aux_sym_def_type_statement_token3] = ACTIONS(9560), + [aux_sym_def_type_statement_token4] = ACTIONS(9560), + [aux_sym_def_type_statement_token5] = ACTIONS(9560), + [aux_sym_def_type_statement_token6] = ACTIONS(9560), + [aux_sym_def_type_statement_token7] = ACTIONS(9560), + [aux_sym_def_type_statement_token8] = ACTIONS(9560), + [aux_sym_def_type_statement_token9] = ACTIONS(9560), + [aux_sym_def_type_statement_token10] = ACTIONS(9560), + [aux_sym_def_type_statement_token11] = ACTIONS(9560), + [aux_sym_def_type_statement_token12] = ACTIONS(9560), + [aux_sym_def_type_statement_token13] = ACTIONS(9560), + [aux_sym_def_type_statement_token14] = ACTIONS(9560), + [aux_sym_call_statement_token1] = ACTIONS(9560), + [sym__ambiguous_call_statement] = ACTIONS(9560), + [aux_sym_addressof_expression_token1] = ACTIONS(9560), + [aux_sym_type_of_expression_token1] = ACTIONS(9560), + [aux_sym_unary_expression_token1] = ACTIONS(9560), + [sym_string_literal] = ACTIONS(9562), + [sym_number_literal] = ACTIONS(9562), + [aux_sym_boolean_literal_token1] = ACTIONS(9560), + [aux_sym_boolean_literal_token2] = ACTIONS(9560), + [sym_nothing_literal] = ACTIONS(9560), + [sym_null_literal] = ACTIONS(9560), + [sym_empty_literal] = ACTIONS(9560), + [sym_date_literal] = ACTIONS(9562), + [anon_sym_POUND] = ACTIONS(9560), + }, + [STATE(6338)] = { + [sym_identifier] = ACTIONS(9150), + [sym_newline] = ACTIONS(9152), + [anon_sym_COLON] = ACTIONS(9152), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9154), + [aux_sym_frm_property_statement_token1] = ACTIONS(9150), + [anon_sym_DOT] = ACTIONS(9150), + [anon_sym_BANG] = ACTIONS(9152), + [aux_sym__attribute_identifier_token1] = ACTIONS(9150), + [aux_sym_option_statement_token3] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9154), + [aux_sym_preprocessor_const_token1] = ACTIONS(9150), + [sym_static_modifier] = ACTIONS(9150), + [sym__dim_keyword] = ACTIONS(9150), + [sym__redim_keyword] = ACTIONS(9150), + [aux_sym_get_accessor_token1] = ACTIONS(9150), + [aux_sym_set_accessor_token1] = ACTIONS(9150), + [aux_sym_const_declaration_token1] = ACTIONS(9150), + [anon_sym_LPAREN] = ACTIONS(9152), + [aux_sym_as_type_clause_token2] = ACTIONS(9150), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9150), + [aux_sym_visibility_token1] = ACTIONS(9150), + [aux_sym_visibility_token2] = ACTIONS(9150), + [aux_sym_elseif_fragment_token1] = ACTIONS(9154), + [aux_sym_else_fragment_token1] = ACTIONS(9154), + [aux_sym_select_statement_token1] = ACTIONS(9154), + [aux_sym__for_header_token1] = ACTIONS(9154), + [aux_sym_do_statement_token1] = ACTIONS(9154), + [aux_sym_do_condition_token1] = ACTIONS(9154), + [aux_sym_while_statement_token1] = ACTIONS(9150), + [aux_sym_with_statement_token1] = ACTIONS(9154), + [aux_sym_exit_statement_token1] = ACTIONS(9150), + [sym_end_statement] = ACTIONS(9152), + [aux_sym_on_goto_statement_token1] = ACTIONS(9150), + [aux_sym_on_goto_statement_token2] = ACTIONS(9150), + [aux_sym_on_error_statement_token2] = ACTIONS(9150), + [sym__ambiguous_redim_statement] = ACTIONS(9152), + [aux_sym_erase_statement_token1] = ACTIONS(9150), + [aux_sym_open_statement_token1] = ACTIONS(9150), + [aux_sym_file_mode_token2] = ACTIONS(9150), + [aux_sym_file_access_token2] = ACTIONS(9150), + [aux_sym_file_lock_token2] = ACTIONS(9150), + [aux_sym_print_statement_token1] = ACTIONS(9150), + [anon_sym_PLUS] = ACTIONS(9152), + [anon_sym_DASH] = ACTIONS(9150), + [anon_sym_QMARK] = ACTIONS(9152), + [aux_sym_close_statement_token1] = ACTIONS(9150), + [aux_sym_put_statement_token1] = ACTIONS(9150), + [aux_sym_unlock_statement_token1] = ACTIONS(9150), + [aux_sym_seek_statement_token1] = ACTIONS(9150), + [sym_reset_statement] = ACTIONS(9150), + [aux_sym_raise_event_statement_token1] = ACTIONS(9150), + [sym_stop_statement] = ACTIONS(9150), + [sym_beep_statement] = ACTIONS(9150), + [aux_sym_unload_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token2] = ACTIONS(9150), + [aux_sym_def_type_statement_token3] = ACTIONS(9150), + [aux_sym_def_type_statement_token4] = ACTIONS(9150), + [aux_sym_def_type_statement_token5] = ACTIONS(9150), + [aux_sym_def_type_statement_token6] = ACTIONS(9150), + [aux_sym_def_type_statement_token7] = ACTIONS(9150), + [aux_sym_def_type_statement_token8] = ACTIONS(9150), + [aux_sym_def_type_statement_token9] = ACTIONS(9150), + [aux_sym_def_type_statement_token10] = ACTIONS(9150), + [aux_sym_def_type_statement_token11] = ACTIONS(9150), + [aux_sym_def_type_statement_token12] = ACTIONS(9150), + [aux_sym_def_type_statement_token13] = ACTIONS(9150), + [aux_sym_def_type_statement_token14] = ACTIONS(9150), + [aux_sym_call_statement_token1] = ACTIONS(9150), + [sym__ambiguous_call_statement] = ACTIONS(9150), + [aux_sym_addressof_expression_token1] = ACTIONS(9150), + [aux_sym_type_of_expression_token1] = ACTIONS(9150), + [aux_sym_unary_expression_token1] = ACTIONS(9150), + [sym_string_literal] = ACTIONS(9152), + [sym_number_literal] = ACTIONS(9152), + [aux_sym_boolean_literal_token1] = ACTIONS(9150), + [aux_sym_boolean_literal_token2] = ACTIONS(9150), + [sym_nothing_literal] = ACTIONS(9150), + [sym_null_literal] = ACTIONS(9150), + [sym_empty_literal] = ACTIONS(9150), + [sym_date_literal] = ACTIONS(9152), + [anon_sym_POUND] = ACTIONS(9150), + }, + [STATE(6339)] = { + [sym_identifier] = ACTIONS(9748), + [sym_newline] = ACTIONS(9750), + [anon_sym_COLON] = ACTIONS(9750), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9748), + [aux_sym_frm_property_statement_token1] = ACTIONS(9748), + [anon_sym_DOT] = ACTIONS(9748), + [anon_sym_BANG] = ACTIONS(9750), + [aux_sym__attribute_identifier_token1] = ACTIONS(9748), + [aux_sym_option_statement_token3] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9748), + [aux_sym_preprocessor_const_token1] = ACTIONS(9748), + [sym_static_modifier] = ACTIONS(9748), + [sym__dim_keyword] = ACTIONS(9748), + [sym__redim_keyword] = ACTIONS(9748), + [aux_sym_get_accessor_token1] = ACTIONS(9748), + [aux_sym_set_accessor_token1] = ACTIONS(9748), + [aux_sym_const_declaration_token1] = ACTIONS(9748), + [anon_sym_LPAREN] = ACTIONS(9750), + [aux_sym_as_type_clause_token2] = ACTIONS(9748), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9748), + [aux_sym_visibility_token1] = ACTIONS(9748), + [aux_sym_visibility_token2] = ACTIONS(9748), + [aux_sym_elseif_fragment_token1] = ACTIONS(9748), + [aux_sym_else_fragment_token1] = ACTIONS(9748), + [aux_sym_select_statement_token1] = ACTIONS(9748), + [aux_sym__for_header_token1] = ACTIONS(9748), + [aux_sym_do_statement_token1] = ACTIONS(9748), + [aux_sym_do_condition_token1] = ACTIONS(9748), + [aux_sym_with_statement_token1] = ACTIONS(9748), + [aux_sym_exit_statement_token1] = ACTIONS(9748), + [sym_end_statement] = ACTIONS(9750), + [aux_sym_on_goto_statement_token1] = ACTIONS(9748), + [aux_sym_on_goto_statement_token2] = ACTIONS(9748), + [aux_sym_on_error_statement_token2] = ACTIONS(9748), + [sym__ambiguous_redim_statement] = ACTIONS(9750), + [aux_sym_erase_statement_token1] = ACTIONS(9748), + [aux_sym_open_statement_token1] = ACTIONS(9748), + [aux_sym_file_mode_token2] = ACTIONS(9748), + [aux_sym_file_access_token2] = ACTIONS(9748), + [aux_sym_file_lock_token2] = ACTIONS(9748), + [aux_sym_print_statement_token1] = ACTIONS(9748), + [anon_sym_PLUS] = ACTIONS(9750), + [anon_sym_DASH] = ACTIONS(9748), + [anon_sym_QMARK] = ACTIONS(9750), + [aux_sym_close_statement_token1] = ACTIONS(9748), + [aux_sym_put_statement_token1] = ACTIONS(9748), + [aux_sym_unlock_statement_token1] = ACTIONS(9748), + [aux_sym_seek_statement_token1] = ACTIONS(9748), + [sym_reset_statement] = ACTIONS(9748), + [aux_sym_raise_event_statement_token1] = ACTIONS(9748), + [sym_stop_statement] = ACTIONS(9748), + [sym_beep_statement] = ACTIONS(9748), + [aux_sym_unload_statement_token1] = ACTIONS(9748), + [aux_sym_def_type_statement_token1] = ACTIONS(9748), + [aux_sym_def_type_statement_token2] = ACTIONS(9748), + [aux_sym_def_type_statement_token3] = ACTIONS(9748), + [aux_sym_def_type_statement_token4] = ACTIONS(9748), + [aux_sym_def_type_statement_token5] = ACTIONS(9748), + [aux_sym_def_type_statement_token6] = ACTIONS(9748), + [aux_sym_def_type_statement_token7] = ACTIONS(9748), + [aux_sym_def_type_statement_token8] = ACTIONS(9748), + [aux_sym_def_type_statement_token9] = ACTIONS(9748), + [aux_sym_def_type_statement_token10] = ACTIONS(9748), + [aux_sym_def_type_statement_token11] = ACTIONS(9748), + [aux_sym_def_type_statement_token12] = ACTIONS(9748), + [aux_sym_def_type_statement_token13] = ACTIONS(9748), + [aux_sym_def_type_statement_token14] = ACTIONS(9748), + [aux_sym_call_statement_token1] = ACTIONS(9748), + [sym__ambiguous_call_statement] = ACTIONS(9748), + [aux_sym_addressof_expression_token1] = ACTIONS(9748), + [aux_sym_type_of_expression_token1] = ACTIONS(9748), + [aux_sym_unary_expression_token1] = ACTIONS(9748), + [sym_string_literal] = ACTIONS(9750), + [sym_number_literal] = ACTIONS(9750), + [aux_sym_boolean_literal_token1] = ACTIONS(9748), + [aux_sym_boolean_literal_token2] = ACTIONS(9748), + [sym_nothing_literal] = ACTIONS(9748), + [sym_null_literal] = ACTIONS(9748), + [sym_empty_literal] = ACTIONS(9748), + [sym_date_literal] = ACTIONS(9750), + [anon_sym_POUND] = ACTIONS(9748), + }, + [STATE(6340)] = { + [sym_identifier] = ACTIONS(9564), + [sym_newline] = ACTIONS(9566), + [anon_sym_COLON] = ACTIONS(9566), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9564), + [aux_sym_frm_property_statement_token1] = ACTIONS(9564), + [anon_sym_DOT] = ACTIONS(9564), + [anon_sym_BANG] = ACTIONS(9566), + [aux_sym__attribute_identifier_token1] = ACTIONS(9564), + [aux_sym_option_statement_token3] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9564), + [aux_sym_preprocessor_const_token1] = ACTIONS(9564), + [sym_static_modifier] = ACTIONS(9564), + [sym__dim_keyword] = ACTIONS(9564), + [sym__redim_keyword] = ACTIONS(9564), + [aux_sym_get_accessor_token1] = ACTIONS(9564), + [aux_sym_set_accessor_token1] = ACTIONS(9564), + [aux_sym_const_declaration_token1] = ACTIONS(9564), + [anon_sym_LPAREN] = ACTIONS(9566), + [aux_sym_as_type_clause_token2] = ACTIONS(9564), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9564), + [aux_sym_visibility_token1] = ACTIONS(9564), + [aux_sym_visibility_token2] = ACTIONS(9564), + [aux_sym_elseif_fragment_token1] = ACTIONS(9564), + [aux_sym_else_fragment_token1] = ACTIONS(9564), + [aux_sym_select_statement_token1] = ACTIONS(9564), + [aux_sym__for_header_token1] = ACTIONS(9564), + [aux_sym_do_statement_token1] = ACTIONS(9564), + [aux_sym_do_condition_token1] = ACTIONS(9564), + [aux_sym_with_statement_token1] = ACTIONS(9564), + [aux_sym_exit_statement_token1] = ACTIONS(9564), + [sym_end_statement] = ACTIONS(9566), + [aux_sym_on_goto_statement_token1] = ACTIONS(9564), + [aux_sym_on_goto_statement_token2] = ACTIONS(9564), + [aux_sym_on_error_statement_token2] = ACTIONS(9564), + [sym__ambiguous_redim_statement] = ACTIONS(9566), + [aux_sym_erase_statement_token1] = ACTIONS(9564), + [aux_sym_open_statement_token1] = ACTIONS(9564), + [aux_sym_file_mode_token2] = ACTIONS(9564), + [aux_sym_file_access_token2] = ACTIONS(9564), + [aux_sym_file_lock_token2] = ACTIONS(9564), + [aux_sym_print_statement_token1] = ACTIONS(9564), + [anon_sym_PLUS] = ACTIONS(9566), + [anon_sym_DASH] = ACTIONS(9564), + [anon_sym_QMARK] = ACTIONS(9566), + [aux_sym_close_statement_token1] = ACTIONS(9564), + [aux_sym_put_statement_token1] = ACTIONS(9564), + [aux_sym_unlock_statement_token1] = ACTIONS(9564), + [aux_sym_seek_statement_token1] = ACTIONS(9564), + [sym_reset_statement] = ACTIONS(9564), + [aux_sym_raise_event_statement_token1] = ACTIONS(9564), + [sym_stop_statement] = ACTIONS(9564), + [sym_beep_statement] = ACTIONS(9564), + [aux_sym_unload_statement_token1] = ACTIONS(9564), + [aux_sym_def_type_statement_token1] = ACTIONS(9564), + [aux_sym_def_type_statement_token2] = ACTIONS(9564), + [aux_sym_def_type_statement_token3] = ACTIONS(9564), + [aux_sym_def_type_statement_token4] = ACTIONS(9564), + [aux_sym_def_type_statement_token5] = ACTIONS(9564), + [aux_sym_def_type_statement_token6] = ACTIONS(9564), + [aux_sym_def_type_statement_token7] = ACTIONS(9564), + [aux_sym_def_type_statement_token8] = ACTIONS(9564), + [aux_sym_def_type_statement_token9] = ACTIONS(9564), + [aux_sym_def_type_statement_token10] = ACTIONS(9564), + [aux_sym_def_type_statement_token11] = ACTIONS(9564), + [aux_sym_def_type_statement_token12] = ACTIONS(9564), + [aux_sym_def_type_statement_token13] = ACTIONS(9564), + [aux_sym_def_type_statement_token14] = ACTIONS(9564), + [aux_sym_call_statement_token1] = ACTIONS(9564), + [sym__ambiguous_call_statement] = ACTIONS(9564), + [aux_sym_addressof_expression_token1] = ACTIONS(9564), + [aux_sym_type_of_expression_token1] = ACTIONS(9564), + [aux_sym_unary_expression_token1] = ACTIONS(9564), + [sym_string_literal] = ACTIONS(9566), + [sym_number_literal] = ACTIONS(9566), + [aux_sym_boolean_literal_token1] = ACTIONS(9564), + [aux_sym_boolean_literal_token2] = ACTIONS(9564), + [sym_nothing_literal] = ACTIONS(9564), + [sym_null_literal] = ACTIONS(9564), + [sym_empty_literal] = ACTIONS(9564), + [sym_date_literal] = ACTIONS(9566), + [anon_sym_POUND] = ACTIONS(9564), + }, + [STATE(6341)] = { + [sym_identifier] = ACTIONS(9752), + [sym_newline] = ACTIONS(9754), + [anon_sym_COLON] = ACTIONS(9754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9752), + [aux_sym_frm_property_statement_token1] = ACTIONS(9752), + [anon_sym_DOT] = ACTIONS(9752), + [anon_sym_BANG] = ACTIONS(9754), + [aux_sym__attribute_identifier_token1] = ACTIONS(9752), + [aux_sym_option_statement_token3] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9752), + [aux_sym_preprocessor_const_token1] = ACTIONS(9752), + [sym_static_modifier] = ACTIONS(9752), + [sym__dim_keyword] = ACTIONS(9752), + [sym__redim_keyword] = ACTIONS(9752), + [aux_sym_get_accessor_token1] = ACTIONS(9752), + [aux_sym_set_accessor_token1] = ACTIONS(9752), + [aux_sym_const_declaration_token1] = ACTIONS(9752), + [anon_sym_LPAREN] = ACTIONS(9754), + [aux_sym_as_type_clause_token2] = ACTIONS(9752), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9752), + [aux_sym_visibility_token1] = ACTIONS(9752), + [aux_sym_visibility_token2] = ACTIONS(9752), + [aux_sym_elseif_fragment_token1] = ACTIONS(9752), + [aux_sym_else_fragment_token1] = ACTIONS(9752), + [aux_sym_select_statement_token1] = ACTIONS(9752), + [aux_sym_select_statement_token2] = ACTIONS(9752), + [aux_sym__for_header_token1] = ACTIONS(9752), + [aux_sym_do_statement_token1] = ACTIONS(9752), + [aux_sym_do_condition_token1] = ACTIONS(9752), + [aux_sym_with_statement_token1] = ACTIONS(9752), + [aux_sym_exit_statement_token1] = ACTIONS(9752), + [sym_end_statement] = ACTIONS(9754), + [aux_sym_on_goto_statement_token1] = ACTIONS(9752), + [aux_sym_on_goto_statement_token2] = ACTIONS(9752), + [aux_sym_on_error_statement_token2] = ACTIONS(9752), + [sym__ambiguous_redim_statement] = ACTIONS(9754), + [aux_sym_erase_statement_token1] = ACTIONS(9752), + [aux_sym_open_statement_token1] = ACTIONS(9752), + [aux_sym_file_mode_token2] = ACTIONS(9752), + [aux_sym_file_access_token2] = ACTIONS(9752), + [aux_sym_file_lock_token2] = ACTIONS(9752), + [aux_sym_print_statement_token1] = ACTIONS(9752), + [anon_sym_PLUS] = ACTIONS(9754), + [anon_sym_DASH] = ACTIONS(9752), + [anon_sym_QMARK] = ACTIONS(9754), + [aux_sym_close_statement_token1] = ACTIONS(9752), + [aux_sym_put_statement_token1] = ACTIONS(9752), + [aux_sym_unlock_statement_token1] = ACTIONS(9752), + [aux_sym_seek_statement_token1] = ACTIONS(9752), + [sym_reset_statement] = ACTIONS(9752), + [aux_sym_raise_event_statement_token1] = ACTIONS(9752), + [sym_stop_statement] = ACTIONS(9752), + [sym_beep_statement] = ACTIONS(9752), + [aux_sym_unload_statement_token1] = ACTIONS(9752), + [aux_sym_def_type_statement_token1] = ACTIONS(9752), + [aux_sym_def_type_statement_token2] = ACTIONS(9752), + [aux_sym_def_type_statement_token3] = ACTIONS(9752), + [aux_sym_def_type_statement_token4] = ACTIONS(9752), + [aux_sym_def_type_statement_token5] = ACTIONS(9752), + [aux_sym_def_type_statement_token6] = ACTIONS(9752), + [aux_sym_def_type_statement_token7] = ACTIONS(9752), + [aux_sym_def_type_statement_token8] = ACTIONS(9752), + [aux_sym_def_type_statement_token9] = ACTIONS(9752), + [aux_sym_def_type_statement_token10] = ACTIONS(9752), + [aux_sym_def_type_statement_token11] = ACTIONS(9752), + [aux_sym_def_type_statement_token12] = ACTIONS(9752), + [aux_sym_def_type_statement_token13] = ACTIONS(9752), + [aux_sym_def_type_statement_token14] = ACTIONS(9752), + [aux_sym_call_statement_token1] = ACTIONS(9752), + [sym__ambiguous_call_statement] = ACTIONS(9752), + [aux_sym_addressof_expression_token1] = ACTIONS(9752), + [aux_sym_type_of_expression_token1] = ACTIONS(9752), + [aux_sym_unary_expression_token1] = ACTIONS(9752), + [sym_string_literal] = ACTIONS(9754), + [sym_number_literal] = ACTIONS(9754), + [aux_sym_boolean_literal_token1] = ACTIONS(9752), + [aux_sym_boolean_literal_token2] = ACTIONS(9752), + [sym_nothing_literal] = ACTIONS(9752), + [sym_null_literal] = ACTIONS(9752), + [sym_empty_literal] = ACTIONS(9752), + [sym_date_literal] = ACTIONS(9754), + [anon_sym_POUND] = ACTIONS(9752), + }, + [STATE(6342)] = { + [sym_identifier] = ACTIONS(9756), + [sym_newline] = ACTIONS(9758), + [anon_sym_COLON] = ACTIONS(9758), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9756), + [aux_sym_frm_property_statement_token1] = ACTIONS(9756), + [anon_sym_DOT] = ACTIONS(9756), + [anon_sym_BANG] = ACTIONS(9758), + [aux_sym__attribute_identifier_token1] = ACTIONS(9756), + [aux_sym_option_statement_token3] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9756), + [aux_sym_preprocessor_const_token1] = ACTIONS(9756), + [sym_static_modifier] = ACTIONS(9756), + [sym__dim_keyword] = ACTIONS(9756), + [sym__redim_keyword] = ACTIONS(9756), + [aux_sym_get_accessor_token1] = ACTIONS(9756), + [aux_sym_set_accessor_token1] = ACTIONS(9756), + [aux_sym_const_declaration_token1] = ACTIONS(9756), + [anon_sym_LPAREN] = ACTIONS(9758), + [aux_sym_as_type_clause_token2] = ACTIONS(9756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9756), + [aux_sym_visibility_token1] = ACTIONS(9756), + [aux_sym_visibility_token2] = ACTIONS(9756), + [aux_sym_elseif_fragment_token1] = ACTIONS(9756), + [aux_sym_else_fragment_token1] = ACTIONS(9756), + [aux_sym_select_statement_token1] = ACTIONS(9756), + [aux_sym_select_statement_token2] = ACTIONS(9756), + [aux_sym__for_header_token1] = ACTIONS(9756), + [aux_sym_do_statement_token1] = ACTIONS(9756), + [aux_sym_do_condition_token1] = ACTIONS(9756), + [aux_sym_with_statement_token1] = ACTIONS(9756), + [aux_sym_exit_statement_token1] = ACTIONS(9756), + [sym_end_statement] = ACTIONS(9758), + [aux_sym_on_goto_statement_token1] = ACTIONS(9756), + [aux_sym_on_goto_statement_token2] = ACTIONS(9756), + [aux_sym_on_error_statement_token2] = ACTIONS(9756), + [sym__ambiguous_redim_statement] = ACTIONS(9758), + [aux_sym_erase_statement_token1] = ACTIONS(9756), + [aux_sym_open_statement_token1] = ACTIONS(9756), + [aux_sym_file_mode_token2] = ACTIONS(9756), + [aux_sym_file_access_token2] = ACTIONS(9756), + [aux_sym_file_lock_token2] = ACTIONS(9756), + [aux_sym_print_statement_token1] = ACTIONS(9756), + [anon_sym_PLUS] = ACTIONS(9758), + [anon_sym_DASH] = ACTIONS(9756), + [anon_sym_QMARK] = ACTIONS(9758), + [aux_sym_close_statement_token1] = ACTIONS(9756), + [aux_sym_put_statement_token1] = ACTIONS(9756), + [aux_sym_unlock_statement_token1] = ACTIONS(9756), + [aux_sym_seek_statement_token1] = ACTIONS(9756), + [sym_reset_statement] = ACTIONS(9756), + [aux_sym_raise_event_statement_token1] = ACTIONS(9756), + [sym_stop_statement] = ACTIONS(9756), + [sym_beep_statement] = ACTIONS(9756), + [aux_sym_unload_statement_token1] = ACTIONS(9756), + [aux_sym_def_type_statement_token1] = ACTIONS(9756), + [aux_sym_def_type_statement_token2] = ACTIONS(9756), + [aux_sym_def_type_statement_token3] = ACTIONS(9756), + [aux_sym_def_type_statement_token4] = ACTIONS(9756), + [aux_sym_def_type_statement_token5] = ACTIONS(9756), + [aux_sym_def_type_statement_token6] = ACTIONS(9756), + [aux_sym_def_type_statement_token7] = ACTIONS(9756), + [aux_sym_def_type_statement_token8] = ACTIONS(9756), + [aux_sym_def_type_statement_token9] = ACTIONS(9756), + [aux_sym_def_type_statement_token10] = ACTIONS(9756), + [aux_sym_def_type_statement_token11] = ACTIONS(9756), + [aux_sym_def_type_statement_token12] = ACTIONS(9756), + [aux_sym_def_type_statement_token13] = ACTIONS(9756), + [aux_sym_def_type_statement_token14] = ACTIONS(9756), + [aux_sym_call_statement_token1] = ACTIONS(9756), + [sym__ambiguous_call_statement] = ACTIONS(9756), + [aux_sym_addressof_expression_token1] = ACTIONS(9756), + [aux_sym_type_of_expression_token1] = ACTIONS(9756), + [aux_sym_unary_expression_token1] = ACTIONS(9756), + [sym_string_literal] = ACTIONS(9758), + [sym_number_literal] = ACTIONS(9758), + [aux_sym_boolean_literal_token1] = ACTIONS(9756), + [aux_sym_boolean_literal_token2] = ACTIONS(9756), + [sym_nothing_literal] = ACTIONS(9756), + [sym_null_literal] = ACTIONS(9756), + [sym_empty_literal] = ACTIONS(9756), + [sym_date_literal] = ACTIONS(9758), + [anon_sym_POUND] = ACTIONS(9756), + }, + [STATE(6343)] = { + [sym_identifier] = ACTIONS(9568), + [sym_newline] = ACTIONS(9570), + [anon_sym_COLON] = ACTIONS(9570), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9568), + [aux_sym_frm_property_statement_token1] = ACTIONS(9568), + [anon_sym_DOT] = ACTIONS(9568), + [anon_sym_BANG] = ACTIONS(9570), + [aux_sym__attribute_identifier_token1] = ACTIONS(9568), + [aux_sym_option_statement_token3] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9568), + [aux_sym_preprocessor_const_token1] = ACTIONS(9568), + [sym_static_modifier] = ACTIONS(9568), + [sym__dim_keyword] = ACTIONS(9568), + [sym__redim_keyword] = ACTIONS(9568), + [aux_sym_get_accessor_token1] = ACTIONS(9568), + [aux_sym_set_accessor_token1] = ACTIONS(9568), + [aux_sym_const_declaration_token1] = ACTIONS(9568), + [anon_sym_LPAREN] = ACTIONS(9570), + [aux_sym_as_type_clause_token2] = ACTIONS(9568), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9568), + [aux_sym_visibility_token1] = ACTIONS(9568), + [aux_sym_visibility_token2] = ACTIONS(9568), + [aux_sym_elseif_fragment_token1] = ACTIONS(9568), + [aux_sym_else_fragment_token1] = ACTIONS(9568), + [aux_sym_select_statement_token1] = ACTIONS(9568), + [aux_sym__for_header_token1] = ACTIONS(9568), + [aux_sym_do_statement_token1] = ACTIONS(9568), + [aux_sym_do_condition_token1] = ACTIONS(9568), + [aux_sym_with_statement_token1] = ACTIONS(9568), + [aux_sym_exit_statement_token1] = ACTIONS(9568), + [sym_end_statement] = ACTIONS(9570), + [aux_sym_on_goto_statement_token1] = ACTIONS(9568), + [aux_sym_on_goto_statement_token2] = ACTIONS(9568), + [aux_sym_on_error_statement_token2] = ACTIONS(9568), + [sym__ambiguous_redim_statement] = ACTIONS(9570), + [aux_sym_erase_statement_token1] = ACTIONS(9568), + [aux_sym_open_statement_token1] = ACTIONS(9568), + [aux_sym_file_mode_token2] = ACTIONS(9568), + [aux_sym_file_access_token2] = ACTIONS(9568), + [aux_sym_file_lock_token2] = ACTIONS(9568), + [aux_sym_print_statement_token1] = ACTIONS(9568), + [anon_sym_PLUS] = ACTIONS(9570), + [anon_sym_DASH] = ACTIONS(9568), + [anon_sym_QMARK] = ACTIONS(9570), + [aux_sym_close_statement_token1] = ACTIONS(9568), + [aux_sym_put_statement_token1] = ACTIONS(9568), + [aux_sym_unlock_statement_token1] = ACTIONS(9568), + [aux_sym_seek_statement_token1] = ACTIONS(9568), + [sym_reset_statement] = ACTIONS(9568), + [aux_sym_raise_event_statement_token1] = ACTIONS(9568), + [sym_stop_statement] = ACTIONS(9568), + [sym_beep_statement] = ACTIONS(9568), + [aux_sym_unload_statement_token1] = ACTIONS(9568), + [aux_sym_def_type_statement_token1] = ACTIONS(9568), + [aux_sym_def_type_statement_token2] = ACTIONS(9568), + [aux_sym_def_type_statement_token3] = ACTIONS(9568), + [aux_sym_def_type_statement_token4] = ACTIONS(9568), + [aux_sym_def_type_statement_token5] = ACTIONS(9568), + [aux_sym_def_type_statement_token6] = ACTIONS(9568), + [aux_sym_def_type_statement_token7] = ACTIONS(9568), + [aux_sym_def_type_statement_token8] = ACTIONS(9568), + [aux_sym_def_type_statement_token9] = ACTIONS(9568), + [aux_sym_def_type_statement_token10] = ACTIONS(9568), + [aux_sym_def_type_statement_token11] = ACTIONS(9568), + [aux_sym_def_type_statement_token12] = ACTIONS(9568), + [aux_sym_def_type_statement_token13] = ACTIONS(9568), + [aux_sym_def_type_statement_token14] = ACTIONS(9568), + [aux_sym_call_statement_token1] = ACTIONS(9568), + [sym__ambiguous_call_statement] = ACTIONS(9568), + [aux_sym_addressof_expression_token1] = ACTIONS(9568), + [aux_sym_type_of_expression_token1] = ACTIONS(9568), + [aux_sym_unary_expression_token1] = ACTIONS(9568), + [sym_string_literal] = ACTIONS(9570), + [sym_number_literal] = ACTIONS(9570), + [aux_sym_boolean_literal_token1] = ACTIONS(9568), + [aux_sym_boolean_literal_token2] = ACTIONS(9568), + [sym_nothing_literal] = ACTIONS(9568), + [sym_null_literal] = ACTIONS(9568), + [sym_empty_literal] = ACTIONS(9568), + [sym_date_literal] = ACTIONS(9570), + [anon_sym_POUND] = ACTIONS(9568), + }, + [STATE(6344)] = { + [sym_identifier] = ACTIONS(9760), + [sym_newline] = ACTIONS(9762), + [anon_sym_COLON] = ACTIONS(9762), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9760), + [aux_sym_frm_property_statement_token1] = ACTIONS(9760), + [anon_sym_DOT] = ACTIONS(9760), + [anon_sym_BANG] = ACTIONS(9762), + [aux_sym__attribute_identifier_token1] = ACTIONS(9760), + [aux_sym_option_statement_token3] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9760), + [aux_sym_preprocessor_const_token1] = ACTIONS(9760), + [sym_static_modifier] = ACTIONS(9760), + [sym__dim_keyword] = ACTIONS(9760), + [sym__redim_keyword] = ACTIONS(9760), + [aux_sym_get_accessor_token1] = ACTIONS(9760), + [aux_sym_set_accessor_token1] = ACTIONS(9760), + [aux_sym_const_declaration_token1] = ACTIONS(9760), + [anon_sym_LPAREN] = ACTIONS(9762), + [aux_sym_as_type_clause_token2] = ACTIONS(9760), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9760), + [aux_sym_visibility_token1] = ACTIONS(9760), + [aux_sym_visibility_token2] = ACTIONS(9760), + [aux_sym_elseif_fragment_token1] = ACTIONS(9760), + [aux_sym_else_fragment_token1] = ACTIONS(9760), + [aux_sym_select_statement_token1] = ACTIONS(9760), + [aux_sym_select_statement_token2] = ACTIONS(9760), + [aux_sym__for_header_token1] = ACTIONS(9760), + [aux_sym_do_statement_token1] = ACTIONS(9760), + [aux_sym_do_condition_token1] = ACTIONS(9760), + [aux_sym_with_statement_token1] = ACTIONS(9760), + [aux_sym_exit_statement_token1] = ACTIONS(9760), + [sym_end_statement] = ACTIONS(9762), + [aux_sym_on_goto_statement_token1] = ACTIONS(9760), + [aux_sym_on_goto_statement_token2] = ACTIONS(9760), + [aux_sym_on_error_statement_token2] = ACTIONS(9760), + [sym__ambiguous_redim_statement] = ACTIONS(9762), + [aux_sym_erase_statement_token1] = ACTIONS(9760), + [aux_sym_open_statement_token1] = ACTIONS(9760), + [aux_sym_file_mode_token2] = ACTIONS(9760), + [aux_sym_file_access_token2] = ACTIONS(9760), + [aux_sym_file_lock_token2] = ACTIONS(9760), + [aux_sym_print_statement_token1] = ACTIONS(9760), + [anon_sym_PLUS] = ACTIONS(9762), + [anon_sym_DASH] = ACTIONS(9760), + [anon_sym_QMARK] = ACTIONS(9762), + [aux_sym_close_statement_token1] = ACTIONS(9760), + [aux_sym_put_statement_token1] = ACTIONS(9760), + [aux_sym_unlock_statement_token1] = ACTIONS(9760), + [aux_sym_seek_statement_token1] = ACTIONS(9760), + [sym_reset_statement] = ACTIONS(9760), + [aux_sym_raise_event_statement_token1] = ACTIONS(9760), + [sym_stop_statement] = ACTIONS(9760), + [sym_beep_statement] = ACTIONS(9760), + [aux_sym_unload_statement_token1] = ACTIONS(9760), + [aux_sym_def_type_statement_token1] = ACTIONS(9760), + [aux_sym_def_type_statement_token2] = ACTIONS(9760), + [aux_sym_def_type_statement_token3] = ACTIONS(9760), + [aux_sym_def_type_statement_token4] = ACTIONS(9760), + [aux_sym_def_type_statement_token5] = ACTIONS(9760), + [aux_sym_def_type_statement_token6] = ACTIONS(9760), + [aux_sym_def_type_statement_token7] = ACTIONS(9760), + [aux_sym_def_type_statement_token8] = ACTIONS(9760), + [aux_sym_def_type_statement_token9] = ACTIONS(9760), + [aux_sym_def_type_statement_token10] = ACTIONS(9760), + [aux_sym_def_type_statement_token11] = ACTIONS(9760), + [aux_sym_def_type_statement_token12] = ACTIONS(9760), + [aux_sym_def_type_statement_token13] = ACTIONS(9760), + [aux_sym_def_type_statement_token14] = ACTIONS(9760), + [aux_sym_call_statement_token1] = ACTIONS(9760), + [sym__ambiguous_call_statement] = ACTIONS(9760), + [aux_sym_addressof_expression_token1] = ACTIONS(9760), + [aux_sym_type_of_expression_token1] = ACTIONS(9760), + [aux_sym_unary_expression_token1] = ACTIONS(9760), + [sym_string_literal] = ACTIONS(9762), + [sym_number_literal] = ACTIONS(9762), + [aux_sym_boolean_literal_token1] = ACTIONS(9760), + [aux_sym_boolean_literal_token2] = ACTIONS(9760), + [sym_nothing_literal] = ACTIONS(9760), + [sym_null_literal] = ACTIONS(9760), + [sym_empty_literal] = ACTIONS(9760), + [sym_date_literal] = ACTIONS(9762), + [anon_sym_POUND] = ACTIONS(9760), + }, + [STATE(6345)] = { + [sym_identifier] = ACTIONS(9575), + [sym_newline] = ACTIONS(9577), + [anon_sym_COLON] = ACTIONS(9577), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9575), + [aux_sym_frm_property_statement_token1] = ACTIONS(9575), + [anon_sym_DOT] = ACTIONS(9575), + [anon_sym_BANG] = ACTIONS(9577), + [aux_sym__attribute_identifier_token1] = ACTIONS(9575), + [aux_sym_option_statement_token3] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9575), + [aux_sym_preprocessor_const_token1] = ACTIONS(9575), + [sym_static_modifier] = ACTIONS(9575), + [sym__dim_keyword] = ACTIONS(9575), + [sym__redim_keyword] = ACTIONS(9575), + [aux_sym_get_accessor_token1] = ACTIONS(9575), + [aux_sym_set_accessor_token1] = ACTIONS(9575), + [aux_sym_const_declaration_token1] = ACTIONS(9575), + [anon_sym_LPAREN] = ACTIONS(9577), + [aux_sym_as_type_clause_token2] = ACTIONS(9575), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9575), + [aux_sym_visibility_token1] = ACTIONS(9575), + [aux_sym_visibility_token2] = ACTIONS(9575), + [aux_sym_elseif_fragment_token1] = ACTIONS(9575), + [aux_sym_else_fragment_token1] = ACTIONS(9575), + [aux_sym_select_statement_token1] = ACTIONS(9575), + [aux_sym__for_header_token1] = ACTIONS(9575), + [aux_sym_do_statement_token1] = ACTIONS(9575), + [aux_sym_do_condition_token1] = ACTIONS(9575), + [aux_sym_with_statement_token1] = ACTIONS(9575), + [aux_sym_exit_statement_token1] = ACTIONS(9575), + [sym_end_statement] = ACTIONS(9577), + [aux_sym_on_goto_statement_token1] = ACTIONS(9575), + [aux_sym_on_goto_statement_token2] = ACTIONS(9575), + [aux_sym_on_error_statement_token2] = ACTIONS(9575), + [sym__ambiguous_redim_statement] = ACTIONS(9577), + [aux_sym_erase_statement_token1] = ACTIONS(9575), + [aux_sym_open_statement_token1] = ACTIONS(9575), + [aux_sym_file_mode_token2] = ACTIONS(9575), + [aux_sym_file_access_token2] = ACTIONS(9575), + [aux_sym_file_lock_token2] = ACTIONS(9575), + [aux_sym_print_statement_token1] = ACTIONS(9575), + [anon_sym_PLUS] = ACTIONS(9577), + [anon_sym_DASH] = ACTIONS(9575), + [anon_sym_QMARK] = ACTIONS(9577), + [aux_sym_close_statement_token1] = ACTIONS(9575), + [aux_sym_put_statement_token1] = ACTIONS(9575), + [aux_sym_unlock_statement_token1] = ACTIONS(9575), + [aux_sym_seek_statement_token1] = ACTIONS(9575), + [sym_reset_statement] = ACTIONS(9575), + [aux_sym_raise_event_statement_token1] = ACTIONS(9575), + [sym_stop_statement] = ACTIONS(9575), + [sym_beep_statement] = ACTIONS(9575), + [aux_sym_unload_statement_token1] = ACTIONS(9575), + [aux_sym_def_type_statement_token1] = ACTIONS(9575), + [aux_sym_def_type_statement_token2] = ACTIONS(9575), + [aux_sym_def_type_statement_token3] = ACTIONS(9575), + [aux_sym_def_type_statement_token4] = ACTIONS(9575), + [aux_sym_def_type_statement_token5] = ACTIONS(9575), + [aux_sym_def_type_statement_token6] = ACTIONS(9575), + [aux_sym_def_type_statement_token7] = ACTIONS(9575), + [aux_sym_def_type_statement_token8] = ACTIONS(9575), + [aux_sym_def_type_statement_token9] = ACTIONS(9575), + [aux_sym_def_type_statement_token10] = ACTIONS(9575), + [aux_sym_def_type_statement_token11] = ACTIONS(9575), + [aux_sym_def_type_statement_token12] = ACTIONS(9575), + [aux_sym_def_type_statement_token13] = ACTIONS(9575), + [aux_sym_def_type_statement_token14] = ACTIONS(9575), + [aux_sym_call_statement_token1] = ACTIONS(9575), + [sym__ambiguous_call_statement] = ACTIONS(9575), + [aux_sym_addressof_expression_token1] = ACTIONS(9575), + [aux_sym_type_of_expression_token1] = ACTIONS(9575), + [aux_sym_unary_expression_token1] = ACTIONS(9575), + [sym_string_literal] = ACTIONS(9577), + [sym_number_literal] = ACTIONS(9577), + [aux_sym_boolean_literal_token1] = ACTIONS(9575), + [aux_sym_boolean_literal_token2] = ACTIONS(9575), + [sym_nothing_literal] = ACTIONS(9575), + [sym_null_literal] = ACTIONS(9575), + [sym_empty_literal] = ACTIONS(9575), + [sym_date_literal] = ACTIONS(9577), + [anon_sym_POUND] = ACTIONS(9575), + }, + [STATE(6346)] = { + [sym_identifier] = ACTIONS(9582), + [sym_newline] = ACTIONS(9584), + [anon_sym_COLON] = ACTIONS(9584), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9582), + [aux_sym_frm_property_statement_token1] = ACTIONS(9582), + [anon_sym_DOT] = ACTIONS(9582), + [anon_sym_BANG] = ACTIONS(9584), + [aux_sym__attribute_identifier_token1] = ACTIONS(9582), + [aux_sym_option_statement_token3] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9582), + [aux_sym_preprocessor_const_token1] = ACTIONS(9582), + [sym_static_modifier] = ACTIONS(9582), + [sym__dim_keyword] = ACTIONS(9582), + [sym__redim_keyword] = ACTIONS(9582), + [aux_sym_get_accessor_token1] = ACTIONS(9582), + [aux_sym_set_accessor_token1] = ACTIONS(9582), + [aux_sym_const_declaration_token1] = ACTIONS(9582), + [anon_sym_LPAREN] = ACTIONS(9584), + [aux_sym_as_type_clause_token2] = ACTIONS(9582), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9582), + [aux_sym_visibility_token1] = ACTIONS(9582), + [aux_sym_visibility_token2] = ACTIONS(9582), + [aux_sym_elseif_fragment_token1] = ACTIONS(9582), + [aux_sym_else_fragment_token1] = ACTIONS(9582), + [aux_sym_select_statement_token1] = ACTIONS(9582), + [aux_sym__for_header_token1] = ACTIONS(9582), + [aux_sym_do_statement_token1] = ACTIONS(9582), + [aux_sym_do_condition_token1] = ACTIONS(9582), + [aux_sym_with_statement_token1] = ACTIONS(9582), + [aux_sym_exit_statement_token1] = ACTIONS(9582), + [sym_end_statement] = ACTIONS(9584), + [aux_sym_on_goto_statement_token1] = ACTIONS(9582), + [aux_sym_on_goto_statement_token2] = ACTIONS(9582), + [aux_sym_on_error_statement_token2] = ACTIONS(9582), + [sym__ambiguous_redim_statement] = ACTIONS(9584), + [aux_sym_erase_statement_token1] = ACTIONS(9582), + [aux_sym_open_statement_token1] = ACTIONS(9582), + [aux_sym_file_mode_token2] = ACTIONS(9582), + [aux_sym_file_access_token2] = ACTIONS(9582), + [aux_sym_file_lock_token2] = ACTIONS(9582), + [aux_sym_print_statement_token1] = ACTIONS(9582), + [anon_sym_PLUS] = ACTIONS(9584), + [anon_sym_DASH] = ACTIONS(9582), + [anon_sym_QMARK] = ACTIONS(9584), + [aux_sym_close_statement_token1] = ACTIONS(9582), + [aux_sym_put_statement_token1] = ACTIONS(9582), + [aux_sym_unlock_statement_token1] = ACTIONS(9582), + [aux_sym_seek_statement_token1] = ACTIONS(9582), + [sym_reset_statement] = ACTIONS(9582), + [aux_sym_raise_event_statement_token1] = ACTIONS(9582), + [sym_stop_statement] = ACTIONS(9582), + [sym_beep_statement] = ACTIONS(9582), + [aux_sym_unload_statement_token1] = ACTIONS(9582), + [aux_sym_def_type_statement_token1] = ACTIONS(9582), + [aux_sym_def_type_statement_token2] = ACTIONS(9582), + [aux_sym_def_type_statement_token3] = ACTIONS(9582), + [aux_sym_def_type_statement_token4] = ACTIONS(9582), + [aux_sym_def_type_statement_token5] = ACTIONS(9582), + [aux_sym_def_type_statement_token6] = ACTIONS(9582), + [aux_sym_def_type_statement_token7] = ACTIONS(9582), + [aux_sym_def_type_statement_token8] = ACTIONS(9582), + [aux_sym_def_type_statement_token9] = ACTIONS(9582), + [aux_sym_def_type_statement_token10] = ACTIONS(9582), + [aux_sym_def_type_statement_token11] = ACTIONS(9582), + [aux_sym_def_type_statement_token12] = ACTIONS(9582), + [aux_sym_def_type_statement_token13] = ACTIONS(9582), + [aux_sym_def_type_statement_token14] = ACTIONS(9582), + [aux_sym_call_statement_token1] = ACTIONS(9582), + [sym__ambiguous_call_statement] = ACTIONS(9582), + [aux_sym_addressof_expression_token1] = ACTIONS(9582), + [aux_sym_type_of_expression_token1] = ACTIONS(9582), + [aux_sym_unary_expression_token1] = ACTIONS(9582), + [sym_string_literal] = ACTIONS(9584), + [sym_number_literal] = ACTIONS(9584), + [aux_sym_boolean_literal_token1] = ACTIONS(9582), + [aux_sym_boolean_literal_token2] = ACTIONS(9582), + [sym_nothing_literal] = ACTIONS(9582), + [sym_null_literal] = ACTIONS(9582), + [sym_empty_literal] = ACTIONS(9582), + [sym_date_literal] = ACTIONS(9584), + [anon_sym_POUND] = ACTIONS(9582), + }, + [STATE(6347)] = { + [sym_identifier] = ACTIONS(9586), + [sym_newline] = ACTIONS(9588), + [anon_sym_COLON] = ACTIONS(9588), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9586), + [aux_sym_frm_property_statement_token1] = ACTIONS(9586), + [anon_sym_DOT] = ACTIONS(9586), + [anon_sym_BANG] = ACTIONS(9588), + [aux_sym__attribute_identifier_token1] = ACTIONS(9586), + [aux_sym_option_statement_token3] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9586), + [aux_sym_preprocessor_const_token1] = ACTIONS(9586), + [sym_static_modifier] = ACTIONS(9586), + [sym__dim_keyword] = ACTIONS(9586), + [sym__redim_keyword] = ACTIONS(9586), + [aux_sym_get_accessor_token1] = ACTIONS(9586), + [aux_sym_set_accessor_token1] = ACTIONS(9586), + [aux_sym_const_declaration_token1] = ACTIONS(9586), + [anon_sym_LPAREN] = ACTIONS(9588), + [aux_sym_as_type_clause_token2] = ACTIONS(9586), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9586), + [aux_sym_visibility_token1] = ACTIONS(9586), + [aux_sym_visibility_token2] = ACTIONS(9586), + [aux_sym_elseif_fragment_token1] = ACTIONS(9586), + [aux_sym_else_fragment_token1] = ACTIONS(9586), + [aux_sym_select_statement_token1] = ACTIONS(9586), + [aux_sym__for_header_token1] = ACTIONS(9586), + [aux_sym_do_statement_token1] = ACTIONS(9586), + [aux_sym_do_condition_token1] = ACTIONS(9586), + [aux_sym_with_statement_token1] = ACTIONS(9586), + [aux_sym_exit_statement_token1] = ACTIONS(9586), + [sym_end_statement] = ACTIONS(9588), + [aux_sym_on_goto_statement_token1] = ACTIONS(9586), + [aux_sym_on_goto_statement_token2] = ACTIONS(9586), + [aux_sym_on_error_statement_token2] = ACTIONS(9586), + [sym__ambiguous_redim_statement] = ACTIONS(9588), + [aux_sym_erase_statement_token1] = ACTIONS(9586), + [aux_sym_open_statement_token1] = ACTIONS(9586), + [aux_sym_file_mode_token2] = ACTIONS(9586), + [aux_sym_file_access_token2] = ACTIONS(9586), + [aux_sym_file_lock_token2] = ACTIONS(9586), + [aux_sym_print_statement_token1] = ACTIONS(9586), + [anon_sym_PLUS] = ACTIONS(9588), + [anon_sym_DASH] = ACTIONS(9586), + [anon_sym_QMARK] = ACTIONS(9588), + [aux_sym_close_statement_token1] = ACTIONS(9586), + [aux_sym_put_statement_token1] = ACTIONS(9586), + [aux_sym_unlock_statement_token1] = ACTIONS(9586), + [aux_sym_seek_statement_token1] = ACTIONS(9586), + [sym_reset_statement] = ACTIONS(9586), + [aux_sym_raise_event_statement_token1] = ACTIONS(9586), + [sym_stop_statement] = ACTIONS(9586), + [sym_beep_statement] = ACTIONS(9586), + [aux_sym_unload_statement_token1] = ACTIONS(9586), + [aux_sym_def_type_statement_token1] = ACTIONS(9586), + [aux_sym_def_type_statement_token2] = ACTIONS(9586), + [aux_sym_def_type_statement_token3] = ACTIONS(9586), + [aux_sym_def_type_statement_token4] = ACTIONS(9586), + [aux_sym_def_type_statement_token5] = ACTIONS(9586), + [aux_sym_def_type_statement_token6] = ACTIONS(9586), + [aux_sym_def_type_statement_token7] = ACTIONS(9586), + [aux_sym_def_type_statement_token8] = ACTIONS(9586), + [aux_sym_def_type_statement_token9] = ACTIONS(9586), + [aux_sym_def_type_statement_token10] = ACTIONS(9586), + [aux_sym_def_type_statement_token11] = ACTIONS(9586), + [aux_sym_def_type_statement_token12] = ACTIONS(9586), + [aux_sym_def_type_statement_token13] = ACTIONS(9586), + [aux_sym_def_type_statement_token14] = ACTIONS(9586), + [aux_sym_call_statement_token1] = ACTIONS(9586), + [sym__ambiguous_call_statement] = ACTIONS(9586), + [aux_sym_addressof_expression_token1] = ACTIONS(9586), + [aux_sym_type_of_expression_token1] = ACTIONS(9586), + [aux_sym_unary_expression_token1] = ACTIONS(9586), + [sym_string_literal] = ACTIONS(9588), + [sym_number_literal] = ACTIONS(9588), + [aux_sym_boolean_literal_token1] = ACTIONS(9586), + [aux_sym_boolean_literal_token2] = ACTIONS(9586), + [sym_nothing_literal] = ACTIONS(9586), + [sym_null_literal] = ACTIONS(9586), + [sym_empty_literal] = ACTIONS(9586), + [sym_date_literal] = ACTIONS(9588), + [anon_sym_POUND] = ACTIONS(9586), + }, + [STATE(6348)] = { + [sym_identifier] = ACTIONS(9590), + [sym_newline] = ACTIONS(9592), + [anon_sym_COLON] = ACTIONS(9592), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9590), + [aux_sym_frm_property_statement_token1] = ACTIONS(9590), + [anon_sym_DOT] = ACTIONS(9590), + [anon_sym_BANG] = ACTIONS(9592), + [aux_sym__attribute_identifier_token1] = ACTIONS(9590), + [aux_sym_option_statement_token3] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9590), + [aux_sym_preprocessor_const_token1] = ACTIONS(9590), + [sym_static_modifier] = ACTIONS(9590), + [sym__dim_keyword] = ACTIONS(9590), + [sym__redim_keyword] = ACTIONS(9590), + [aux_sym_get_accessor_token1] = ACTIONS(9590), + [aux_sym_set_accessor_token1] = ACTIONS(9590), + [aux_sym_const_declaration_token1] = ACTIONS(9590), + [anon_sym_LPAREN] = ACTIONS(9592), + [aux_sym_as_type_clause_token2] = ACTIONS(9590), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9590), + [aux_sym_visibility_token1] = ACTIONS(9590), + [aux_sym_visibility_token2] = ACTIONS(9590), + [aux_sym_elseif_fragment_token1] = ACTIONS(9590), + [aux_sym_else_fragment_token1] = ACTIONS(9590), + [aux_sym_select_statement_token1] = ACTIONS(9590), + [aux_sym__for_header_token1] = ACTIONS(9590), + [aux_sym_do_statement_token1] = ACTIONS(9590), + [aux_sym_do_condition_token1] = ACTIONS(9590), + [aux_sym_with_statement_token1] = ACTIONS(9590), + [aux_sym_exit_statement_token1] = ACTIONS(9590), + [sym_end_statement] = ACTIONS(9592), + [aux_sym_on_goto_statement_token1] = ACTIONS(9590), + [aux_sym_on_goto_statement_token2] = ACTIONS(9590), + [aux_sym_on_error_statement_token2] = ACTIONS(9590), + [sym__ambiguous_redim_statement] = ACTIONS(9592), + [aux_sym_erase_statement_token1] = ACTIONS(9590), + [aux_sym_open_statement_token1] = ACTIONS(9590), + [aux_sym_file_mode_token2] = ACTIONS(9590), + [aux_sym_file_access_token2] = ACTIONS(9590), + [aux_sym_file_lock_token2] = ACTIONS(9590), + [aux_sym_print_statement_token1] = ACTIONS(9590), + [anon_sym_PLUS] = ACTIONS(9592), + [anon_sym_DASH] = ACTIONS(9590), + [anon_sym_QMARK] = ACTIONS(9592), + [aux_sym_close_statement_token1] = ACTIONS(9590), + [aux_sym_put_statement_token1] = ACTIONS(9590), + [aux_sym_unlock_statement_token1] = ACTIONS(9590), + [aux_sym_seek_statement_token1] = ACTIONS(9590), + [sym_reset_statement] = ACTIONS(9590), + [aux_sym_raise_event_statement_token1] = ACTIONS(9590), + [sym_stop_statement] = ACTIONS(9590), + [sym_beep_statement] = ACTIONS(9590), + [aux_sym_unload_statement_token1] = ACTIONS(9590), + [aux_sym_def_type_statement_token1] = ACTIONS(9590), + [aux_sym_def_type_statement_token2] = ACTIONS(9590), + [aux_sym_def_type_statement_token3] = ACTIONS(9590), + [aux_sym_def_type_statement_token4] = ACTIONS(9590), + [aux_sym_def_type_statement_token5] = ACTIONS(9590), + [aux_sym_def_type_statement_token6] = ACTIONS(9590), + [aux_sym_def_type_statement_token7] = ACTIONS(9590), + [aux_sym_def_type_statement_token8] = ACTIONS(9590), + [aux_sym_def_type_statement_token9] = ACTIONS(9590), + [aux_sym_def_type_statement_token10] = ACTIONS(9590), + [aux_sym_def_type_statement_token11] = ACTIONS(9590), + [aux_sym_def_type_statement_token12] = ACTIONS(9590), + [aux_sym_def_type_statement_token13] = ACTIONS(9590), + [aux_sym_def_type_statement_token14] = ACTIONS(9590), + [aux_sym_call_statement_token1] = ACTIONS(9590), + [sym__ambiguous_call_statement] = ACTIONS(9590), + [aux_sym_addressof_expression_token1] = ACTIONS(9590), + [aux_sym_type_of_expression_token1] = ACTIONS(9590), + [aux_sym_unary_expression_token1] = ACTIONS(9590), + [sym_string_literal] = ACTIONS(9592), + [sym_number_literal] = ACTIONS(9592), + [aux_sym_boolean_literal_token1] = ACTIONS(9590), + [aux_sym_boolean_literal_token2] = ACTIONS(9590), + [sym_nothing_literal] = ACTIONS(9590), + [sym_null_literal] = ACTIONS(9590), + [sym_empty_literal] = ACTIONS(9590), + [sym_date_literal] = ACTIONS(9592), + [anon_sym_POUND] = ACTIONS(9590), + }, + [STATE(6349)] = { + [sym_identifier] = ACTIONS(9594), + [sym_newline] = ACTIONS(9596), + [anon_sym_COLON] = ACTIONS(9596), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9594), + [aux_sym_frm_property_statement_token1] = ACTIONS(9594), + [anon_sym_DOT] = ACTIONS(9594), + [anon_sym_BANG] = ACTIONS(9596), + [aux_sym__attribute_identifier_token1] = ACTIONS(9594), + [aux_sym_option_statement_token3] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9594), + [aux_sym_preprocessor_const_token1] = ACTIONS(9594), + [sym_static_modifier] = ACTIONS(9594), + [sym__dim_keyword] = ACTIONS(9594), + [sym__redim_keyword] = ACTIONS(9594), + [aux_sym_get_accessor_token1] = ACTIONS(9594), + [aux_sym_set_accessor_token1] = ACTIONS(9594), + [aux_sym_const_declaration_token1] = ACTIONS(9594), + [anon_sym_LPAREN] = ACTIONS(9596), + [aux_sym_as_type_clause_token2] = ACTIONS(9594), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9594), + [aux_sym_visibility_token1] = ACTIONS(9594), + [aux_sym_visibility_token2] = ACTIONS(9594), + [aux_sym_elseif_fragment_token1] = ACTIONS(9594), + [aux_sym_else_fragment_token1] = ACTIONS(9594), + [aux_sym_select_statement_token1] = ACTIONS(9594), + [aux_sym__for_header_token1] = ACTIONS(9594), + [aux_sym_do_statement_token1] = ACTIONS(9594), + [aux_sym_do_condition_token1] = ACTIONS(9594), + [aux_sym_with_statement_token1] = ACTIONS(9594), + [aux_sym_exit_statement_token1] = ACTIONS(9594), + [sym_end_statement] = ACTIONS(9596), + [aux_sym_on_goto_statement_token1] = ACTIONS(9594), + [aux_sym_on_goto_statement_token2] = ACTIONS(9594), + [aux_sym_on_error_statement_token2] = ACTIONS(9594), + [sym__ambiguous_redim_statement] = ACTIONS(9596), + [aux_sym_erase_statement_token1] = ACTIONS(9594), + [aux_sym_open_statement_token1] = ACTIONS(9594), + [aux_sym_file_mode_token2] = ACTIONS(9594), + [aux_sym_file_access_token2] = ACTIONS(9594), + [aux_sym_file_lock_token2] = ACTIONS(9594), + [aux_sym_print_statement_token1] = ACTIONS(9594), + [anon_sym_PLUS] = ACTIONS(9596), + [anon_sym_DASH] = ACTIONS(9594), + [anon_sym_QMARK] = ACTIONS(9596), + [aux_sym_close_statement_token1] = ACTIONS(9594), + [aux_sym_put_statement_token1] = ACTIONS(9594), + [aux_sym_unlock_statement_token1] = ACTIONS(9594), + [aux_sym_seek_statement_token1] = ACTIONS(9594), + [sym_reset_statement] = ACTIONS(9594), + [aux_sym_raise_event_statement_token1] = ACTIONS(9594), + [sym_stop_statement] = ACTIONS(9594), + [sym_beep_statement] = ACTIONS(9594), + [aux_sym_unload_statement_token1] = ACTIONS(9594), + [aux_sym_def_type_statement_token1] = ACTIONS(9594), + [aux_sym_def_type_statement_token2] = ACTIONS(9594), + [aux_sym_def_type_statement_token3] = ACTIONS(9594), + [aux_sym_def_type_statement_token4] = ACTIONS(9594), + [aux_sym_def_type_statement_token5] = ACTIONS(9594), + [aux_sym_def_type_statement_token6] = ACTIONS(9594), + [aux_sym_def_type_statement_token7] = ACTIONS(9594), + [aux_sym_def_type_statement_token8] = ACTIONS(9594), + [aux_sym_def_type_statement_token9] = ACTIONS(9594), + [aux_sym_def_type_statement_token10] = ACTIONS(9594), + [aux_sym_def_type_statement_token11] = ACTIONS(9594), + [aux_sym_def_type_statement_token12] = ACTIONS(9594), + [aux_sym_def_type_statement_token13] = ACTIONS(9594), + [aux_sym_def_type_statement_token14] = ACTIONS(9594), + [aux_sym_call_statement_token1] = ACTIONS(9594), + [sym__ambiguous_call_statement] = ACTIONS(9594), + [aux_sym_addressof_expression_token1] = ACTIONS(9594), + [aux_sym_type_of_expression_token1] = ACTIONS(9594), + [aux_sym_unary_expression_token1] = ACTIONS(9594), + [sym_string_literal] = ACTIONS(9596), + [sym_number_literal] = ACTIONS(9596), + [aux_sym_boolean_literal_token1] = ACTIONS(9594), + [aux_sym_boolean_literal_token2] = ACTIONS(9594), + [sym_nothing_literal] = ACTIONS(9594), + [sym_null_literal] = ACTIONS(9594), + [sym_empty_literal] = ACTIONS(9594), + [sym_date_literal] = ACTIONS(9596), + [anon_sym_POUND] = ACTIONS(9594), + }, + [STATE(6350)] = { + [sym_identifier] = ACTIONS(9764), + [sym_newline] = ACTIONS(9766), + [anon_sym_COLON] = ACTIONS(9766), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9764), + [aux_sym_frm_property_statement_token1] = ACTIONS(9764), + [anon_sym_DOT] = ACTIONS(9764), + [anon_sym_BANG] = ACTIONS(9766), + [aux_sym__attribute_identifier_token1] = ACTIONS(9764), + [aux_sym_option_statement_token3] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9764), + [aux_sym_preprocessor_const_token1] = ACTIONS(9764), + [sym_static_modifier] = ACTIONS(9764), + [sym__dim_keyword] = ACTIONS(9764), + [sym__redim_keyword] = ACTIONS(9764), + [aux_sym_get_accessor_token1] = ACTIONS(9764), + [aux_sym_set_accessor_token1] = ACTIONS(9764), + [aux_sym_const_declaration_token1] = ACTIONS(9764), + [anon_sym_LPAREN] = ACTIONS(9766), + [aux_sym_as_type_clause_token2] = ACTIONS(9764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9764), + [aux_sym_visibility_token1] = ACTIONS(9764), + [aux_sym_visibility_token2] = ACTIONS(9764), + [aux_sym_elseif_fragment_token1] = ACTIONS(9764), + [aux_sym_else_fragment_token1] = ACTIONS(9764), + [aux_sym_select_statement_token1] = ACTIONS(9764), + [aux_sym_select_statement_token2] = ACTIONS(9764), + [aux_sym__for_header_token1] = ACTIONS(9764), + [aux_sym_do_statement_token1] = ACTIONS(9764), + [aux_sym_do_condition_token1] = ACTIONS(9764), + [aux_sym_with_statement_token1] = ACTIONS(9764), + [aux_sym_exit_statement_token1] = ACTIONS(9764), + [sym_end_statement] = ACTIONS(9766), + [aux_sym_on_goto_statement_token1] = ACTIONS(9764), + [aux_sym_on_goto_statement_token2] = ACTIONS(9764), + [aux_sym_on_error_statement_token2] = ACTIONS(9764), + [sym__ambiguous_redim_statement] = ACTIONS(9766), + [aux_sym_erase_statement_token1] = ACTIONS(9764), + [aux_sym_open_statement_token1] = ACTIONS(9764), + [aux_sym_file_mode_token2] = ACTIONS(9764), + [aux_sym_file_access_token2] = ACTIONS(9764), + [aux_sym_file_lock_token2] = ACTIONS(9764), + [aux_sym_print_statement_token1] = ACTIONS(9764), + [anon_sym_PLUS] = ACTIONS(9766), + [anon_sym_DASH] = ACTIONS(9764), + [anon_sym_QMARK] = ACTIONS(9766), + [aux_sym_close_statement_token1] = ACTIONS(9764), + [aux_sym_put_statement_token1] = ACTIONS(9764), + [aux_sym_unlock_statement_token1] = ACTIONS(9764), + [aux_sym_seek_statement_token1] = ACTIONS(9764), + [sym_reset_statement] = ACTIONS(9764), + [aux_sym_raise_event_statement_token1] = ACTIONS(9764), + [sym_stop_statement] = ACTIONS(9764), + [sym_beep_statement] = ACTIONS(9764), + [aux_sym_unload_statement_token1] = ACTIONS(9764), + [aux_sym_def_type_statement_token1] = ACTIONS(9764), + [aux_sym_def_type_statement_token2] = ACTIONS(9764), + [aux_sym_def_type_statement_token3] = ACTIONS(9764), + [aux_sym_def_type_statement_token4] = ACTIONS(9764), + [aux_sym_def_type_statement_token5] = ACTIONS(9764), + [aux_sym_def_type_statement_token6] = ACTIONS(9764), + [aux_sym_def_type_statement_token7] = ACTIONS(9764), + [aux_sym_def_type_statement_token8] = ACTIONS(9764), + [aux_sym_def_type_statement_token9] = ACTIONS(9764), + [aux_sym_def_type_statement_token10] = ACTIONS(9764), + [aux_sym_def_type_statement_token11] = ACTIONS(9764), + [aux_sym_def_type_statement_token12] = ACTIONS(9764), + [aux_sym_def_type_statement_token13] = ACTIONS(9764), + [aux_sym_def_type_statement_token14] = ACTIONS(9764), + [aux_sym_call_statement_token1] = ACTIONS(9764), + [sym__ambiguous_call_statement] = ACTIONS(9764), + [aux_sym_addressof_expression_token1] = ACTIONS(9764), + [aux_sym_type_of_expression_token1] = ACTIONS(9764), + [aux_sym_unary_expression_token1] = ACTIONS(9764), + [sym_string_literal] = ACTIONS(9766), + [sym_number_literal] = ACTIONS(9766), + [aux_sym_boolean_literal_token1] = ACTIONS(9764), + [aux_sym_boolean_literal_token2] = ACTIONS(9764), + [sym_nothing_literal] = ACTIONS(9764), + [sym_null_literal] = ACTIONS(9764), + [sym_empty_literal] = ACTIONS(9764), + [sym_date_literal] = ACTIONS(9766), + [anon_sym_POUND] = ACTIONS(9764), + }, + [STATE(6351)] = { + [sym_identifier] = ACTIONS(6629), + [sym_newline] = ACTIONS(6631), + [anon_sym_COLON] = ACTIONS(6631), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6629), + [aux_sym_frm_property_statement_token1] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6631), + [aux_sym__attribute_identifier_token1] = ACTIONS(6629), + [aux_sym_option_statement_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6629), + [aux_sym_preprocessor_const_token1] = ACTIONS(6629), + [sym_static_modifier] = ACTIONS(6629), + [sym__dim_keyword] = ACTIONS(6629), + [sym__redim_keyword] = ACTIONS(6629), + [aux_sym_get_accessor_token1] = ACTIONS(6629), + [aux_sym_set_accessor_token1] = ACTIONS(6629), + [aux_sym_const_declaration_token1] = ACTIONS(6629), + [anon_sym_LPAREN] = ACTIONS(6631), + [aux_sym_as_type_clause_token2] = ACTIONS(6629), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6629), + [aux_sym_visibility_token1] = ACTIONS(6629), + [aux_sym_visibility_token2] = ACTIONS(6629), + [aux_sym_elseif_fragment_token1] = ACTIONS(6629), + [aux_sym_else_fragment_token1] = ACTIONS(6629), + [aux_sym_select_statement_token1] = ACTIONS(6629), + [aux_sym__for_header_token1] = ACTIONS(6629), + [aux_sym_do_statement_token1] = ACTIONS(6629), + [aux_sym_do_statement_token2] = ACTIONS(6629), + [aux_sym_do_condition_token1] = ACTIONS(6629), + [aux_sym_with_statement_token1] = ACTIONS(6629), + [aux_sym_exit_statement_token1] = ACTIONS(6629), + [sym_end_statement] = ACTIONS(6631), + [aux_sym_on_goto_statement_token1] = ACTIONS(6629), + [aux_sym_on_goto_statement_token2] = ACTIONS(6629), + [aux_sym_on_error_statement_token2] = ACTIONS(6629), + [sym__ambiguous_redim_statement] = ACTIONS(6631), + [aux_sym_erase_statement_token1] = ACTIONS(6629), + [aux_sym_open_statement_token1] = ACTIONS(6629), + [aux_sym_file_mode_token2] = ACTIONS(6629), + [aux_sym_file_access_token2] = ACTIONS(6629), + [aux_sym_file_lock_token2] = ACTIONS(6629), + [aux_sym_print_statement_token1] = ACTIONS(6629), + [anon_sym_PLUS] = ACTIONS(6631), + [anon_sym_DASH] = ACTIONS(6629), + [anon_sym_QMARK] = ACTIONS(6631), + [aux_sym_close_statement_token1] = ACTIONS(6629), + [aux_sym_put_statement_token1] = ACTIONS(6629), + [aux_sym_unlock_statement_token1] = ACTIONS(6629), + [aux_sym_seek_statement_token1] = ACTIONS(6629), + [sym_reset_statement] = ACTIONS(6629), + [aux_sym_raise_event_statement_token1] = ACTIONS(6629), + [sym_stop_statement] = ACTIONS(6629), + [sym_beep_statement] = ACTIONS(6629), + [aux_sym_unload_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token2] = ACTIONS(6629), + [aux_sym_def_type_statement_token3] = ACTIONS(6629), + [aux_sym_def_type_statement_token4] = ACTIONS(6629), + [aux_sym_def_type_statement_token5] = ACTIONS(6629), + [aux_sym_def_type_statement_token6] = ACTIONS(6629), + [aux_sym_def_type_statement_token7] = ACTIONS(6629), + [aux_sym_def_type_statement_token8] = ACTIONS(6629), + [aux_sym_def_type_statement_token9] = ACTIONS(6629), + [aux_sym_def_type_statement_token10] = ACTIONS(6629), + [aux_sym_def_type_statement_token11] = ACTIONS(6629), + [aux_sym_def_type_statement_token12] = ACTIONS(6629), + [aux_sym_def_type_statement_token13] = ACTIONS(6629), + [aux_sym_def_type_statement_token14] = ACTIONS(6629), + [aux_sym_call_statement_token1] = ACTIONS(6629), + [sym__ambiguous_call_statement] = ACTIONS(6629), + [aux_sym_addressof_expression_token1] = ACTIONS(6629), + [aux_sym_type_of_expression_token1] = ACTIONS(6629), + [aux_sym_unary_expression_token1] = ACTIONS(6629), + [sym_string_literal] = ACTIONS(6631), + [sym_number_literal] = ACTIONS(6631), + [aux_sym_boolean_literal_token1] = ACTIONS(6629), + [aux_sym_boolean_literal_token2] = ACTIONS(6629), + [sym_nothing_literal] = ACTIONS(6629), + [sym_null_literal] = ACTIONS(6629), + [sym_empty_literal] = ACTIONS(6629), + [sym_date_literal] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6629), + }, + [STATE(6352)] = { + [sym_identifier] = ACTIONS(6621), + [sym_newline] = ACTIONS(6623), + [anon_sym_COLON] = ACTIONS(6623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6621), + [aux_sym_frm_property_statement_token1] = ACTIONS(6621), + [anon_sym_DOT] = ACTIONS(6621), + [anon_sym_BANG] = ACTIONS(6623), + [aux_sym__attribute_identifier_token1] = ACTIONS(6621), + [aux_sym_option_statement_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6621), + [aux_sym_preprocessor_const_token1] = ACTIONS(6621), + [sym_static_modifier] = ACTIONS(6621), + [sym__dim_keyword] = ACTIONS(6621), + [sym__redim_keyword] = ACTIONS(6621), + [aux_sym_get_accessor_token1] = ACTIONS(6621), + [aux_sym_set_accessor_token1] = ACTIONS(6621), + [aux_sym_const_declaration_token1] = ACTIONS(6621), + [anon_sym_LPAREN] = ACTIONS(6623), + [aux_sym_as_type_clause_token2] = ACTIONS(6621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6621), + [aux_sym_visibility_token1] = ACTIONS(6621), + [aux_sym_visibility_token2] = ACTIONS(6621), + [aux_sym_elseif_fragment_token1] = ACTIONS(6621), + [aux_sym_else_fragment_token1] = ACTIONS(6621), + [aux_sym_select_statement_token1] = ACTIONS(6621), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6621), + [aux_sym__for_header_token1] = ACTIONS(6621), + [aux_sym_do_statement_token1] = ACTIONS(6621), + [aux_sym_do_condition_token1] = ACTIONS(6621), + [aux_sym_with_statement_token1] = ACTIONS(6621), + [aux_sym_exit_statement_token1] = ACTIONS(6621), + [sym_end_statement] = ACTIONS(6623), + [aux_sym_on_goto_statement_token1] = ACTIONS(6621), + [aux_sym_on_goto_statement_token2] = ACTIONS(6621), + [aux_sym_on_error_statement_token2] = ACTIONS(6621), + [sym__ambiguous_redim_statement] = ACTIONS(6623), + [aux_sym_erase_statement_token1] = ACTIONS(6621), + [aux_sym_open_statement_token1] = ACTIONS(6621), + [aux_sym_file_mode_token2] = ACTIONS(6621), + [aux_sym_file_access_token2] = ACTIONS(6621), + [aux_sym_file_lock_token2] = ACTIONS(6621), + [aux_sym_print_statement_token1] = ACTIONS(6621), + [anon_sym_PLUS] = ACTIONS(6623), + [anon_sym_DASH] = ACTIONS(6621), + [anon_sym_QMARK] = ACTIONS(6623), + [aux_sym_close_statement_token1] = ACTIONS(6621), + [aux_sym_put_statement_token1] = ACTIONS(6621), + [aux_sym_unlock_statement_token1] = ACTIONS(6621), + [aux_sym_seek_statement_token1] = ACTIONS(6621), + [sym_reset_statement] = ACTIONS(6621), + [aux_sym_raise_event_statement_token1] = ACTIONS(6621), + [sym_stop_statement] = ACTIONS(6621), + [sym_beep_statement] = ACTIONS(6621), + [aux_sym_unload_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token2] = ACTIONS(6621), + [aux_sym_def_type_statement_token3] = ACTIONS(6621), + [aux_sym_def_type_statement_token4] = ACTIONS(6621), + [aux_sym_def_type_statement_token5] = ACTIONS(6621), + [aux_sym_def_type_statement_token6] = ACTIONS(6621), + [aux_sym_def_type_statement_token7] = ACTIONS(6621), + [aux_sym_def_type_statement_token8] = ACTIONS(6621), + [aux_sym_def_type_statement_token9] = ACTIONS(6621), + [aux_sym_def_type_statement_token10] = ACTIONS(6621), + [aux_sym_def_type_statement_token11] = ACTIONS(6621), + [aux_sym_def_type_statement_token12] = ACTIONS(6621), + [aux_sym_def_type_statement_token13] = ACTIONS(6621), + [aux_sym_def_type_statement_token14] = ACTIONS(6621), + [aux_sym_call_statement_token1] = ACTIONS(6621), + [sym__ambiguous_call_statement] = ACTIONS(6621), + [aux_sym_addressof_expression_token1] = ACTIONS(6621), + [aux_sym_type_of_expression_token1] = ACTIONS(6621), + [aux_sym_unary_expression_token1] = ACTIONS(6621), + [sym_string_literal] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [aux_sym_boolean_literal_token1] = ACTIONS(6621), + [aux_sym_boolean_literal_token2] = ACTIONS(6621), + [sym_nothing_literal] = ACTIONS(6621), + [sym_null_literal] = ACTIONS(6621), + [sym_empty_literal] = ACTIONS(6621), + [sym_date_literal] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6621), + }, + [STATE(6353)] = { + [sym_identifier] = ACTIONS(9176), + [sym_newline] = ACTIONS(9178), + [anon_sym_COLON] = ACTIONS(9178), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9176), + [aux_sym_frm_property_statement_token1] = ACTIONS(9176), + [anon_sym_DOT] = ACTIONS(9176), + [anon_sym_BANG] = ACTIONS(9178), + [aux_sym__attribute_identifier_token1] = ACTIONS(9176), + [aux_sym_option_statement_token3] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9176), + [aux_sym_preprocessor_const_token1] = ACTIONS(9176), + [sym_static_modifier] = ACTIONS(9176), + [sym__dim_keyword] = ACTIONS(9176), + [sym__redim_keyword] = ACTIONS(9176), + [aux_sym_get_accessor_token1] = ACTIONS(9176), + [aux_sym_set_accessor_token1] = ACTIONS(9176), + [aux_sym_const_declaration_token1] = ACTIONS(9176), + [anon_sym_LPAREN] = ACTIONS(9178), + [aux_sym_as_type_clause_token2] = ACTIONS(9176), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9176), + [aux_sym_visibility_token1] = ACTIONS(9176), + [aux_sym_visibility_token2] = ACTIONS(9176), + [aux_sym_elseif_fragment_token1] = ACTIONS(9176), + [aux_sym_else_fragment_token1] = ACTIONS(9176), + [aux_sym_select_statement_token1] = ACTIONS(9176), + [aux_sym__for_header_token1] = ACTIONS(9176), + [aux_sym_do_statement_token1] = ACTIONS(9176), + [aux_sym_do_condition_token1] = ACTIONS(9176), + [aux_sym_with_statement_token1] = ACTIONS(9176), + [aux_sym_exit_statement_token1] = ACTIONS(9176), + [sym_end_statement] = ACTIONS(9178), + [aux_sym_on_goto_statement_token1] = ACTIONS(9176), + [aux_sym_on_goto_statement_token2] = ACTIONS(9176), + [aux_sym_on_error_statement_token2] = ACTIONS(9176), + [sym__ambiguous_redim_statement] = ACTIONS(9178), + [aux_sym_erase_statement_token1] = ACTIONS(9176), + [aux_sym_open_statement_token1] = ACTIONS(9176), + [aux_sym_file_mode_token2] = ACTIONS(9176), + [aux_sym_file_access_token2] = ACTIONS(9176), + [aux_sym_file_lock_token2] = ACTIONS(9176), + [aux_sym_print_statement_token1] = ACTIONS(9176), + [anon_sym_PLUS] = ACTIONS(9178), + [anon_sym_DASH] = ACTIONS(9176), + [anon_sym_QMARK] = ACTIONS(9178), + [aux_sym_close_statement_token1] = ACTIONS(9176), + [aux_sym_put_statement_token1] = ACTIONS(9176), + [aux_sym_unlock_statement_token1] = ACTIONS(9176), + [aux_sym_seek_statement_token1] = ACTIONS(9176), + [sym_reset_statement] = ACTIONS(9176), + [aux_sym_raise_event_statement_token1] = ACTIONS(9176), + [sym_stop_statement] = ACTIONS(9176), + [sym_beep_statement] = ACTIONS(9176), + [aux_sym_unload_statement_token1] = ACTIONS(9176), + [aux_sym_def_type_statement_token1] = ACTIONS(9176), + [aux_sym_def_type_statement_token2] = ACTIONS(9176), + [aux_sym_def_type_statement_token3] = ACTIONS(9176), + [aux_sym_def_type_statement_token4] = ACTIONS(9176), + [aux_sym_def_type_statement_token5] = ACTIONS(9176), + [aux_sym_def_type_statement_token6] = ACTIONS(9176), + [aux_sym_def_type_statement_token7] = ACTIONS(9176), + [aux_sym_def_type_statement_token8] = ACTIONS(9176), + [aux_sym_def_type_statement_token9] = ACTIONS(9176), + [aux_sym_def_type_statement_token10] = ACTIONS(9176), + [aux_sym_def_type_statement_token11] = ACTIONS(9176), + [aux_sym_def_type_statement_token12] = ACTIONS(9176), + [aux_sym_def_type_statement_token13] = ACTIONS(9176), + [aux_sym_def_type_statement_token14] = ACTIONS(9176), + [aux_sym_call_statement_token1] = ACTIONS(9176), + [sym__ambiguous_call_statement] = ACTIONS(9176), + [aux_sym_addressof_expression_token1] = ACTIONS(9176), + [aux_sym_type_of_expression_token1] = ACTIONS(9176), + [aux_sym_unary_expression_token1] = ACTIONS(9176), + [sym_string_literal] = ACTIONS(9178), + [sym_number_literal] = ACTIONS(9178), + [aux_sym_boolean_literal_token1] = ACTIONS(9176), + [aux_sym_boolean_literal_token2] = ACTIONS(9176), + [sym_nothing_literal] = ACTIONS(9176), + [sym_null_literal] = ACTIONS(9176), + [sym_empty_literal] = ACTIONS(9176), + [sym_date_literal] = ACTIONS(9178), + [anon_sym_POUND] = ACTIONS(9176), + }, + [STATE(6354)] = { + [sym_identifier] = ACTIONS(9598), + [sym_newline] = ACTIONS(9600), + [anon_sym_COLON] = ACTIONS(9600), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9598), + [aux_sym_frm_property_statement_token1] = ACTIONS(9598), + [anon_sym_DOT] = ACTIONS(9598), + [anon_sym_BANG] = ACTIONS(9600), + [aux_sym__attribute_identifier_token1] = ACTIONS(9598), + [aux_sym_option_statement_token3] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9598), + [aux_sym_preprocessor_const_token1] = ACTIONS(9598), + [sym_static_modifier] = ACTIONS(9598), + [sym__dim_keyword] = ACTIONS(9598), + [sym__redim_keyword] = ACTIONS(9598), + [aux_sym_get_accessor_token1] = ACTIONS(9598), + [aux_sym_set_accessor_token1] = ACTIONS(9598), + [aux_sym_const_declaration_token1] = ACTIONS(9598), + [anon_sym_LPAREN] = ACTIONS(9600), + [aux_sym_as_type_clause_token2] = ACTIONS(9598), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9598), + [aux_sym_visibility_token1] = ACTIONS(9598), + [aux_sym_visibility_token2] = ACTIONS(9598), + [aux_sym_elseif_fragment_token1] = ACTIONS(9598), + [aux_sym_else_fragment_token1] = ACTIONS(9598), + [aux_sym_select_statement_token1] = ACTIONS(9598), + [aux_sym__for_header_token1] = ACTIONS(9598), + [aux_sym_do_statement_token1] = ACTIONS(9598), + [aux_sym_do_condition_token1] = ACTIONS(9598), + [aux_sym_with_statement_token1] = ACTIONS(9598), + [aux_sym_exit_statement_token1] = ACTIONS(9598), + [sym_end_statement] = ACTIONS(9600), + [aux_sym_on_goto_statement_token1] = ACTIONS(9598), + [aux_sym_on_goto_statement_token2] = ACTIONS(9598), + [aux_sym_on_error_statement_token2] = ACTIONS(9598), + [sym__ambiguous_redim_statement] = ACTIONS(9600), + [aux_sym_erase_statement_token1] = ACTIONS(9598), + [aux_sym_open_statement_token1] = ACTIONS(9598), + [aux_sym_file_mode_token2] = ACTIONS(9598), + [aux_sym_file_access_token2] = ACTIONS(9598), + [aux_sym_file_lock_token2] = ACTIONS(9598), + [aux_sym_print_statement_token1] = ACTIONS(9598), + [anon_sym_PLUS] = ACTIONS(9600), + [anon_sym_DASH] = ACTIONS(9598), + [anon_sym_QMARK] = ACTIONS(9600), + [aux_sym_close_statement_token1] = ACTIONS(9598), + [aux_sym_put_statement_token1] = ACTIONS(9598), + [aux_sym_unlock_statement_token1] = ACTIONS(9598), + [aux_sym_seek_statement_token1] = ACTIONS(9598), + [sym_reset_statement] = ACTIONS(9598), + [aux_sym_raise_event_statement_token1] = ACTIONS(9598), + [sym_stop_statement] = ACTIONS(9598), + [sym_beep_statement] = ACTIONS(9598), + [aux_sym_unload_statement_token1] = ACTIONS(9598), + [aux_sym_def_type_statement_token1] = ACTIONS(9598), + [aux_sym_def_type_statement_token2] = ACTIONS(9598), + [aux_sym_def_type_statement_token3] = ACTIONS(9598), + [aux_sym_def_type_statement_token4] = ACTIONS(9598), + [aux_sym_def_type_statement_token5] = ACTIONS(9598), + [aux_sym_def_type_statement_token6] = ACTIONS(9598), + [aux_sym_def_type_statement_token7] = ACTIONS(9598), + [aux_sym_def_type_statement_token8] = ACTIONS(9598), + [aux_sym_def_type_statement_token9] = ACTIONS(9598), + [aux_sym_def_type_statement_token10] = ACTIONS(9598), + [aux_sym_def_type_statement_token11] = ACTIONS(9598), + [aux_sym_def_type_statement_token12] = ACTIONS(9598), + [aux_sym_def_type_statement_token13] = ACTIONS(9598), + [aux_sym_def_type_statement_token14] = ACTIONS(9598), + [aux_sym_call_statement_token1] = ACTIONS(9598), + [sym__ambiguous_call_statement] = ACTIONS(9598), + [aux_sym_addressof_expression_token1] = ACTIONS(9598), + [aux_sym_type_of_expression_token1] = ACTIONS(9598), + [aux_sym_unary_expression_token1] = ACTIONS(9598), + [sym_string_literal] = ACTIONS(9600), + [sym_number_literal] = ACTIONS(9600), + [aux_sym_boolean_literal_token1] = ACTIONS(9598), + [aux_sym_boolean_literal_token2] = ACTIONS(9598), + [sym_nothing_literal] = ACTIONS(9598), + [sym_null_literal] = ACTIONS(9598), + [sym_empty_literal] = ACTIONS(9598), + [sym_date_literal] = ACTIONS(9600), + [anon_sym_POUND] = ACTIONS(9598), + }, + [STATE(6355)] = { + [sym_identifier] = ACTIONS(8745), + [sym_newline] = ACTIONS(8747), + [anon_sym_COLON] = ACTIONS(8747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8745), + [aux_sym_frm_property_statement_token1] = ACTIONS(8745), + [anon_sym_DOT] = ACTIONS(8745), + [anon_sym_BANG] = ACTIONS(8747), + [aux_sym__attribute_identifier_token1] = ACTIONS(8745), + [aux_sym_option_statement_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8745), + [aux_sym_preprocessor_const_token1] = ACTIONS(8745), + [sym_static_modifier] = ACTIONS(8745), + [sym__dim_keyword] = ACTIONS(8745), + [sym__redim_keyword] = ACTIONS(8745), + [aux_sym_get_accessor_token1] = ACTIONS(8745), + [aux_sym_set_accessor_token1] = ACTIONS(8745), + [aux_sym_const_declaration_token1] = ACTIONS(8745), + [anon_sym_LPAREN] = ACTIONS(8747), + [aux_sym_as_type_clause_token2] = ACTIONS(8745), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8745), + [aux_sym_visibility_token1] = ACTIONS(8745), + [aux_sym_visibility_token2] = ACTIONS(8745), + [aux_sym_elseif_fragment_token1] = ACTIONS(8745), + [aux_sym_else_fragment_token1] = ACTIONS(8745), + [aux_sym_select_statement_token1] = ACTIONS(8745), + [aux_sym__for_header_token1] = ACTIONS(8745), + [aux_sym_do_statement_token1] = ACTIONS(8745), + [aux_sym_do_statement_token2] = ACTIONS(8745), + [aux_sym_do_condition_token1] = ACTIONS(8745), + [aux_sym_with_statement_token1] = ACTIONS(8745), + [aux_sym_exit_statement_token1] = ACTIONS(8745), + [sym_end_statement] = ACTIONS(8747), + [aux_sym_on_goto_statement_token1] = ACTIONS(8745), + [aux_sym_on_goto_statement_token2] = ACTIONS(8745), + [aux_sym_on_error_statement_token2] = ACTIONS(8745), + [sym__ambiguous_redim_statement] = ACTIONS(8747), + [aux_sym_erase_statement_token1] = ACTIONS(8745), + [aux_sym_open_statement_token1] = ACTIONS(8745), + [aux_sym_file_mode_token2] = ACTIONS(8745), + [aux_sym_file_access_token2] = ACTIONS(8745), + [aux_sym_file_lock_token2] = ACTIONS(8745), + [aux_sym_print_statement_token1] = ACTIONS(8745), + [anon_sym_PLUS] = ACTIONS(8747), + [anon_sym_DASH] = ACTIONS(8745), + [anon_sym_QMARK] = ACTIONS(8747), + [aux_sym_close_statement_token1] = ACTIONS(8745), + [aux_sym_put_statement_token1] = ACTIONS(8745), + [aux_sym_unlock_statement_token1] = ACTIONS(8745), + [aux_sym_seek_statement_token1] = ACTIONS(8745), + [sym_reset_statement] = ACTIONS(8745), + [aux_sym_raise_event_statement_token1] = ACTIONS(8745), + [sym_stop_statement] = ACTIONS(8745), + [sym_beep_statement] = ACTIONS(8745), + [aux_sym_unload_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token2] = ACTIONS(8745), + [aux_sym_def_type_statement_token3] = ACTIONS(8745), + [aux_sym_def_type_statement_token4] = ACTIONS(8745), + [aux_sym_def_type_statement_token5] = ACTIONS(8745), + [aux_sym_def_type_statement_token6] = ACTIONS(8745), + [aux_sym_def_type_statement_token7] = ACTIONS(8745), + [aux_sym_def_type_statement_token8] = ACTIONS(8745), + [aux_sym_def_type_statement_token9] = ACTIONS(8745), + [aux_sym_def_type_statement_token10] = ACTIONS(8745), + [aux_sym_def_type_statement_token11] = ACTIONS(8745), + [aux_sym_def_type_statement_token12] = ACTIONS(8745), + [aux_sym_def_type_statement_token13] = ACTIONS(8745), + [aux_sym_def_type_statement_token14] = ACTIONS(8745), + [aux_sym_call_statement_token1] = ACTIONS(8745), + [sym__ambiguous_call_statement] = ACTIONS(8745), + [aux_sym_addressof_expression_token1] = ACTIONS(8745), + [aux_sym_type_of_expression_token1] = ACTIONS(8745), + [aux_sym_unary_expression_token1] = ACTIONS(8745), + [sym_string_literal] = ACTIONS(8747), + [sym_number_literal] = ACTIONS(8747), + [aux_sym_boolean_literal_token1] = ACTIONS(8745), + [aux_sym_boolean_literal_token2] = ACTIONS(8745), + [sym_nothing_literal] = ACTIONS(8745), + [sym_null_literal] = ACTIONS(8745), + [sym_empty_literal] = ACTIONS(8745), + [sym_date_literal] = ACTIONS(8747), + [anon_sym_POUND] = ACTIONS(8745), + }, + [STATE(6356)] = { + [sym_identifier] = ACTIONS(9138), + [sym_newline] = ACTIONS(9140), + [anon_sym_COLON] = ACTIONS(9140), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9138), + [aux_sym_frm_property_statement_token1] = ACTIONS(9138), + [anon_sym_DOT] = ACTIONS(9138), + [anon_sym_BANG] = ACTIONS(9140), + [aux_sym__attribute_identifier_token1] = ACTIONS(9138), + [aux_sym_option_statement_token3] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9138), + [aux_sym_preprocessor_const_token1] = ACTIONS(9138), + [sym_static_modifier] = ACTIONS(9138), + [sym__dim_keyword] = ACTIONS(9138), + [sym__redim_keyword] = ACTIONS(9138), + [aux_sym_get_accessor_token1] = ACTIONS(9138), + [aux_sym_set_accessor_token1] = ACTIONS(9138), + [aux_sym_const_declaration_token1] = ACTIONS(9138), + [anon_sym_LPAREN] = ACTIONS(9140), + [aux_sym_as_type_clause_token2] = ACTIONS(9138), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9138), + [aux_sym_visibility_token1] = ACTIONS(9138), + [aux_sym_visibility_token2] = ACTIONS(9138), + [aux_sym_elseif_fragment_token1] = ACTIONS(9138), + [aux_sym_else_fragment_token1] = ACTIONS(9138), + [aux_sym_select_statement_token1] = ACTIONS(9138), + [aux_sym_select_statement_token2] = ACTIONS(9138), + [aux_sym__for_header_token1] = ACTIONS(9138), + [aux_sym_do_statement_token1] = ACTIONS(9138), + [aux_sym_do_condition_token1] = ACTIONS(9138), + [aux_sym_with_statement_token1] = ACTIONS(9138), + [aux_sym_exit_statement_token1] = ACTIONS(9138), + [sym_end_statement] = ACTIONS(9140), + [aux_sym_on_goto_statement_token1] = ACTIONS(9138), + [aux_sym_on_goto_statement_token2] = ACTIONS(9138), + [aux_sym_on_error_statement_token2] = ACTIONS(9138), + [sym__ambiguous_redim_statement] = ACTIONS(9140), + [aux_sym_erase_statement_token1] = ACTIONS(9138), + [aux_sym_open_statement_token1] = ACTIONS(9138), + [aux_sym_file_mode_token2] = ACTIONS(9138), + [aux_sym_file_access_token2] = ACTIONS(9138), + [aux_sym_file_lock_token2] = ACTIONS(9138), + [aux_sym_print_statement_token1] = ACTIONS(9138), + [anon_sym_PLUS] = ACTIONS(9140), + [anon_sym_DASH] = ACTIONS(9138), + [anon_sym_QMARK] = ACTIONS(9140), + [aux_sym_close_statement_token1] = ACTIONS(9138), + [aux_sym_put_statement_token1] = ACTIONS(9138), + [aux_sym_unlock_statement_token1] = ACTIONS(9138), + [aux_sym_seek_statement_token1] = ACTIONS(9138), + [sym_reset_statement] = ACTIONS(9138), + [aux_sym_raise_event_statement_token1] = ACTIONS(9138), + [sym_stop_statement] = ACTIONS(9138), + [sym_beep_statement] = ACTIONS(9138), + [aux_sym_unload_statement_token1] = ACTIONS(9138), + [aux_sym_def_type_statement_token1] = ACTIONS(9138), + [aux_sym_def_type_statement_token2] = ACTIONS(9138), + [aux_sym_def_type_statement_token3] = ACTIONS(9138), + [aux_sym_def_type_statement_token4] = ACTIONS(9138), + [aux_sym_def_type_statement_token5] = ACTIONS(9138), + [aux_sym_def_type_statement_token6] = ACTIONS(9138), + [aux_sym_def_type_statement_token7] = ACTIONS(9138), + [aux_sym_def_type_statement_token8] = ACTIONS(9138), + [aux_sym_def_type_statement_token9] = ACTIONS(9138), + [aux_sym_def_type_statement_token10] = ACTIONS(9138), + [aux_sym_def_type_statement_token11] = ACTIONS(9138), + [aux_sym_def_type_statement_token12] = ACTIONS(9138), + [aux_sym_def_type_statement_token13] = ACTIONS(9138), + [aux_sym_def_type_statement_token14] = ACTIONS(9138), + [aux_sym_call_statement_token1] = ACTIONS(9138), + [sym__ambiguous_call_statement] = ACTIONS(9138), + [aux_sym_addressof_expression_token1] = ACTIONS(9138), + [aux_sym_type_of_expression_token1] = ACTIONS(9138), + [aux_sym_unary_expression_token1] = ACTIONS(9138), + [sym_string_literal] = ACTIONS(9140), + [sym_number_literal] = ACTIONS(9140), + [aux_sym_boolean_literal_token1] = ACTIONS(9138), + [aux_sym_boolean_literal_token2] = ACTIONS(9138), + [sym_nothing_literal] = ACTIONS(9138), + [sym_null_literal] = ACTIONS(9138), + [sym_empty_literal] = ACTIONS(9138), + [sym_date_literal] = ACTIONS(9140), + [anon_sym_POUND] = ACTIONS(9138), + }, + [STATE(6357)] = { + [sym_identifier] = ACTIONS(8813), + [sym_newline] = ACTIONS(8815), + [anon_sym_COLON] = ACTIONS(8815), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8813), + [aux_sym_frm_property_statement_token1] = ACTIONS(8813), + [anon_sym_DOT] = ACTIONS(8813), + [anon_sym_BANG] = ACTIONS(8815), + [aux_sym__attribute_identifier_token1] = ACTIONS(8813), + [aux_sym_option_statement_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8813), + [aux_sym_preprocessor_const_token1] = ACTIONS(8813), + [sym_static_modifier] = ACTIONS(8813), + [sym__dim_keyword] = ACTIONS(8813), + [sym__redim_keyword] = ACTIONS(8813), + [aux_sym_get_accessor_token1] = ACTIONS(8813), + [aux_sym_set_accessor_token1] = ACTIONS(8813), + [aux_sym_const_declaration_token1] = ACTIONS(8813), + [anon_sym_LPAREN] = ACTIONS(8815), + [aux_sym_as_type_clause_token2] = ACTIONS(8813), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8813), + [aux_sym_visibility_token1] = ACTIONS(8813), + [aux_sym_visibility_token2] = ACTIONS(8813), + [aux_sym_elseif_fragment_token1] = ACTIONS(8813), + [aux_sym_else_fragment_token1] = ACTIONS(8813), + [aux_sym_select_statement_token1] = ACTIONS(8813), + [aux_sym__for_header_token1] = ACTIONS(8813), + [aux_sym_do_statement_token1] = ACTIONS(8813), + [aux_sym_do_condition_token1] = ACTIONS(8813), + [aux_sym_with_statement_token1] = ACTIONS(8813), + [aux_sym_exit_statement_token1] = ACTIONS(8813), + [sym_end_statement] = ACTIONS(8815), + [aux_sym_on_goto_statement_token1] = ACTIONS(8813), + [aux_sym_on_goto_statement_token2] = ACTIONS(8813), + [aux_sym_on_error_statement_token2] = ACTIONS(8813), + [sym__ambiguous_redim_statement] = ACTIONS(8815), + [aux_sym_erase_statement_token1] = ACTIONS(8813), + [aux_sym_open_statement_token1] = ACTIONS(8813), + [aux_sym_file_mode_token2] = ACTIONS(8813), + [aux_sym_file_access_token2] = ACTIONS(8813), + [aux_sym_file_lock_token2] = ACTIONS(8813), + [aux_sym_print_statement_token1] = ACTIONS(8813), + [anon_sym_PLUS] = ACTIONS(8815), + [anon_sym_DASH] = ACTIONS(8813), + [anon_sym_QMARK] = ACTIONS(8815), + [aux_sym_close_statement_token1] = ACTIONS(8813), + [aux_sym_put_statement_token1] = ACTIONS(8813), + [aux_sym_unlock_statement_token1] = ACTIONS(8813), + [aux_sym_seek_statement_token1] = ACTIONS(8813), + [sym_reset_statement] = ACTIONS(8813), + [aux_sym_raise_event_statement_token1] = ACTIONS(8813), + [sym_stop_statement] = ACTIONS(8813), + [sym_beep_statement] = ACTIONS(8813), + [aux_sym_unload_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token2] = ACTIONS(8813), + [aux_sym_def_type_statement_token3] = ACTIONS(8813), + [aux_sym_def_type_statement_token4] = ACTIONS(8813), + [aux_sym_def_type_statement_token5] = ACTIONS(8813), + [aux_sym_def_type_statement_token6] = ACTIONS(8813), + [aux_sym_def_type_statement_token7] = ACTIONS(8813), + [aux_sym_def_type_statement_token8] = ACTIONS(8813), + [aux_sym_def_type_statement_token9] = ACTIONS(8813), + [aux_sym_def_type_statement_token10] = ACTIONS(8813), + [aux_sym_def_type_statement_token11] = ACTIONS(8813), + [aux_sym_def_type_statement_token12] = ACTIONS(8813), + [aux_sym_def_type_statement_token13] = ACTIONS(8813), + [aux_sym_def_type_statement_token14] = ACTIONS(8813), + [aux_sym_call_statement_token1] = ACTIONS(8813), + [sym__ambiguous_call_statement] = ACTIONS(8813), + [aux_sym_addressof_expression_token1] = ACTIONS(8813), + [aux_sym_type_of_expression_token1] = ACTIONS(8813), + [aux_sym_unary_expression_token1] = ACTIONS(8813), + [sym_string_literal] = ACTIONS(8815), + [sym_number_literal] = ACTIONS(8815), + [aux_sym_boolean_literal_token1] = ACTIONS(8813), + [aux_sym_boolean_literal_token2] = ACTIONS(8813), + [sym_nothing_literal] = ACTIONS(8813), + [sym_null_literal] = ACTIONS(8813), + [sym_empty_literal] = ACTIONS(8813), + [sym_date_literal] = ACTIONS(8815), + [anon_sym_POUND] = ACTIONS(8813), + }, + [STATE(6358)] = { + [sym_identifier] = ACTIONS(9180), + [sym_newline] = ACTIONS(9182), + [anon_sym_COLON] = ACTIONS(9182), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9180), + [aux_sym_frm_property_statement_token1] = ACTIONS(9180), + [anon_sym_DOT] = ACTIONS(9180), + [anon_sym_BANG] = ACTIONS(9182), + [aux_sym__attribute_identifier_token1] = ACTIONS(9180), + [aux_sym_option_statement_token3] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9180), + [aux_sym_preprocessor_const_token1] = ACTIONS(9180), + [sym_static_modifier] = ACTIONS(9180), + [sym__dim_keyword] = ACTIONS(9180), + [sym__redim_keyword] = ACTIONS(9180), + [aux_sym_get_accessor_token1] = ACTIONS(9180), + [aux_sym_set_accessor_token1] = ACTIONS(9180), + [aux_sym_const_declaration_token1] = ACTIONS(9180), + [anon_sym_LPAREN] = ACTIONS(9182), + [aux_sym_as_type_clause_token2] = ACTIONS(9180), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9180), + [aux_sym_visibility_token1] = ACTIONS(9180), + [aux_sym_visibility_token2] = ACTIONS(9180), + [aux_sym_elseif_fragment_token1] = ACTIONS(9180), + [aux_sym_else_fragment_token1] = ACTIONS(9180), + [aux_sym_select_statement_token1] = ACTIONS(9180), + [aux_sym__for_header_token1] = ACTIONS(9180), + [aux_sym_do_statement_token1] = ACTIONS(9180), + [aux_sym_do_condition_token1] = ACTIONS(9180), + [aux_sym_with_statement_token1] = ACTIONS(9180), + [aux_sym_exit_statement_token1] = ACTIONS(9180), + [sym_end_statement] = ACTIONS(9182), + [aux_sym_on_goto_statement_token1] = ACTIONS(9180), + [aux_sym_on_goto_statement_token2] = ACTIONS(9180), + [aux_sym_on_error_statement_token2] = ACTIONS(9180), + [sym__ambiguous_redim_statement] = ACTIONS(9182), + [aux_sym_erase_statement_token1] = ACTIONS(9180), + [aux_sym_open_statement_token1] = ACTIONS(9180), + [aux_sym_file_mode_token2] = ACTIONS(9180), + [aux_sym_file_access_token2] = ACTIONS(9180), + [aux_sym_file_lock_token2] = ACTIONS(9180), + [aux_sym_print_statement_token1] = ACTIONS(9180), + [anon_sym_PLUS] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9180), + [anon_sym_QMARK] = ACTIONS(9182), + [aux_sym_close_statement_token1] = ACTIONS(9180), + [aux_sym_put_statement_token1] = ACTIONS(9180), + [aux_sym_unlock_statement_token1] = ACTIONS(9180), + [aux_sym_seek_statement_token1] = ACTIONS(9180), + [sym_reset_statement] = ACTIONS(9180), + [aux_sym_raise_event_statement_token1] = ACTIONS(9180), + [sym_stop_statement] = ACTIONS(9180), + [sym_beep_statement] = ACTIONS(9180), + [aux_sym_unload_statement_token1] = ACTIONS(9180), + [aux_sym_def_type_statement_token1] = ACTIONS(9180), + [aux_sym_def_type_statement_token2] = ACTIONS(9180), + [aux_sym_def_type_statement_token3] = ACTIONS(9180), + [aux_sym_def_type_statement_token4] = ACTIONS(9180), + [aux_sym_def_type_statement_token5] = ACTIONS(9180), + [aux_sym_def_type_statement_token6] = ACTIONS(9180), + [aux_sym_def_type_statement_token7] = ACTIONS(9180), + [aux_sym_def_type_statement_token8] = ACTIONS(9180), + [aux_sym_def_type_statement_token9] = ACTIONS(9180), + [aux_sym_def_type_statement_token10] = ACTIONS(9180), + [aux_sym_def_type_statement_token11] = ACTIONS(9180), + [aux_sym_def_type_statement_token12] = ACTIONS(9180), + [aux_sym_def_type_statement_token13] = ACTIONS(9180), + [aux_sym_def_type_statement_token14] = ACTIONS(9180), + [aux_sym_call_statement_token1] = ACTIONS(9180), + [sym__ambiguous_call_statement] = ACTIONS(9180), + [aux_sym_addressof_expression_token1] = ACTIONS(9180), + [aux_sym_type_of_expression_token1] = ACTIONS(9180), + [aux_sym_unary_expression_token1] = ACTIONS(9180), + [sym_string_literal] = ACTIONS(9182), + [sym_number_literal] = ACTIONS(9182), + [aux_sym_boolean_literal_token1] = ACTIONS(9180), + [aux_sym_boolean_literal_token2] = ACTIONS(9180), + [sym_nothing_literal] = ACTIONS(9180), + [sym_null_literal] = ACTIONS(9180), + [sym_empty_literal] = ACTIONS(9180), + [sym_date_literal] = ACTIONS(9182), + [anon_sym_POUND] = ACTIONS(9180), + }, + [STATE(6359)] = { + [sym_identifier] = ACTIONS(9072), + [sym_newline] = ACTIONS(9074), + [anon_sym_COLON] = ACTIONS(9074), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9072), + [aux_sym_frm_property_statement_token1] = ACTIONS(9072), + [anon_sym_DOT] = ACTIONS(9072), + [anon_sym_BANG] = ACTIONS(9074), + [aux_sym__attribute_identifier_token1] = ACTIONS(9072), + [aux_sym_option_statement_token3] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9072), + [aux_sym_preprocessor_const_token1] = ACTIONS(9072), + [sym_static_modifier] = ACTIONS(9072), + [sym__dim_keyword] = ACTIONS(9072), + [sym__redim_keyword] = ACTIONS(9072), + [aux_sym_get_accessor_token1] = ACTIONS(9072), + [aux_sym_set_accessor_token1] = ACTIONS(9072), + [aux_sym_const_declaration_token1] = ACTIONS(9072), + [anon_sym_LPAREN] = ACTIONS(9074), + [aux_sym_as_type_clause_token2] = ACTIONS(9072), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9072), + [aux_sym_visibility_token1] = ACTIONS(9072), + [aux_sym_visibility_token2] = ACTIONS(9072), + [aux_sym_elseif_fragment_token1] = ACTIONS(9072), + [aux_sym_else_fragment_token1] = ACTIONS(9072), + [aux_sym_select_statement_token1] = ACTIONS(9072), + [aux_sym__for_header_token1] = ACTIONS(9072), + [aux_sym_do_statement_token1] = ACTIONS(9072), + [aux_sym_do_condition_token1] = ACTIONS(9072), + [aux_sym_while_statement_token1] = ACTIONS(9072), + [aux_sym_with_statement_token1] = ACTIONS(9072), + [aux_sym_exit_statement_token1] = ACTIONS(9072), + [sym_end_statement] = ACTIONS(9074), + [aux_sym_on_goto_statement_token1] = ACTIONS(9072), + [aux_sym_on_goto_statement_token2] = ACTIONS(9072), + [aux_sym_on_error_statement_token2] = ACTIONS(9072), + [sym__ambiguous_redim_statement] = ACTIONS(9074), + [aux_sym_erase_statement_token1] = ACTIONS(9072), + [aux_sym_open_statement_token1] = ACTIONS(9072), + [aux_sym_file_mode_token2] = ACTIONS(9072), + [aux_sym_file_access_token2] = ACTIONS(9072), + [aux_sym_file_lock_token2] = ACTIONS(9072), + [aux_sym_print_statement_token1] = ACTIONS(9072), + [anon_sym_PLUS] = ACTIONS(9074), + [anon_sym_DASH] = ACTIONS(9072), + [anon_sym_QMARK] = ACTIONS(9074), + [aux_sym_close_statement_token1] = ACTIONS(9072), + [aux_sym_put_statement_token1] = ACTIONS(9072), + [aux_sym_unlock_statement_token1] = ACTIONS(9072), + [aux_sym_seek_statement_token1] = ACTIONS(9072), + [sym_reset_statement] = ACTIONS(9072), + [aux_sym_raise_event_statement_token1] = ACTIONS(9072), + [sym_stop_statement] = ACTIONS(9072), + [sym_beep_statement] = ACTIONS(9072), + [aux_sym_unload_statement_token1] = ACTIONS(9072), + [aux_sym_def_type_statement_token1] = ACTIONS(9072), + [aux_sym_def_type_statement_token2] = ACTIONS(9072), + [aux_sym_def_type_statement_token3] = ACTIONS(9072), + [aux_sym_def_type_statement_token4] = ACTIONS(9072), + [aux_sym_def_type_statement_token5] = ACTIONS(9072), + [aux_sym_def_type_statement_token6] = ACTIONS(9072), + [aux_sym_def_type_statement_token7] = ACTIONS(9072), + [aux_sym_def_type_statement_token8] = ACTIONS(9072), + [aux_sym_def_type_statement_token9] = ACTIONS(9072), + [aux_sym_def_type_statement_token10] = ACTIONS(9072), + [aux_sym_def_type_statement_token11] = ACTIONS(9072), + [aux_sym_def_type_statement_token12] = ACTIONS(9072), + [aux_sym_def_type_statement_token13] = ACTIONS(9072), + [aux_sym_def_type_statement_token14] = ACTIONS(9072), + [aux_sym_call_statement_token1] = ACTIONS(9072), + [sym__ambiguous_call_statement] = ACTIONS(9072), + [aux_sym_addressof_expression_token1] = ACTIONS(9072), + [aux_sym_type_of_expression_token1] = ACTIONS(9072), + [aux_sym_unary_expression_token1] = ACTIONS(9072), + [sym_string_literal] = ACTIONS(9074), + [sym_number_literal] = ACTIONS(9074), + [aux_sym_boolean_literal_token1] = ACTIONS(9072), + [aux_sym_boolean_literal_token2] = ACTIONS(9072), + [sym_nothing_literal] = ACTIONS(9072), + [sym_null_literal] = ACTIONS(9072), + [sym_empty_literal] = ACTIONS(9072), + [sym_date_literal] = ACTIONS(9074), + [anon_sym_POUND] = ACTIONS(9072), + }, + [STATE(6360)] = { + [sym_identifier] = ACTIONS(9080), + [sym_newline] = ACTIONS(9082), + [anon_sym_COLON] = ACTIONS(9082), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9080), + [aux_sym_frm_property_statement_token1] = ACTIONS(9080), + [anon_sym_DOT] = ACTIONS(9080), + [anon_sym_BANG] = ACTIONS(9082), + [aux_sym__attribute_identifier_token1] = ACTIONS(9080), + [aux_sym_option_statement_token3] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9080), + [aux_sym_preprocessor_const_token1] = ACTIONS(9080), + [sym_static_modifier] = ACTIONS(9080), + [sym__dim_keyword] = ACTIONS(9080), + [sym__redim_keyword] = ACTIONS(9080), + [aux_sym_get_accessor_token1] = ACTIONS(9080), + [aux_sym_set_accessor_token1] = ACTIONS(9080), + [aux_sym_const_declaration_token1] = ACTIONS(9080), + [anon_sym_LPAREN] = ACTIONS(9082), + [aux_sym_as_type_clause_token2] = ACTIONS(9080), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9080), + [aux_sym_visibility_token1] = ACTIONS(9080), + [aux_sym_visibility_token2] = ACTIONS(9080), + [aux_sym_elseif_fragment_token1] = ACTIONS(9080), + [aux_sym_else_fragment_token1] = ACTIONS(9080), + [aux_sym_select_statement_token1] = ACTIONS(9080), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9080), + [aux_sym__for_header_token1] = ACTIONS(9080), + [aux_sym_do_statement_token1] = ACTIONS(9080), + [aux_sym_do_condition_token1] = ACTIONS(9080), + [aux_sym_with_statement_token1] = ACTIONS(9080), + [aux_sym_exit_statement_token1] = ACTIONS(9080), + [sym_end_statement] = ACTIONS(9082), + [aux_sym_on_goto_statement_token1] = ACTIONS(9080), + [aux_sym_on_goto_statement_token2] = ACTIONS(9080), + [aux_sym_on_error_statement_token2] = ACTIONS(9080), + [sym__ambiguous_redim_statement] = ACTIONS(9082), + [aux_sym_erase_statement_token1] = ACTIONS(9080), + [aux_sym_open_statement_token1] = ACTIONS(9080), + [aux_sym_file_mode_token2] = ACTIONS(9080), + [aux_sym_file_access_token2] = ACTIONS(9080), + [aux_sym_file_lock_token2] = ACTIONS(9080), + [aux_sym_print_statement_token1] = ACTIONS(9080), + [anon_sym_PLUS] = ACTIONS(9082), + [anon_sym_DASH] = ACTIONS(9080), + [anon_sym_QMARK] = ACTIONS(9082), + [aux_sym_close_statement_token1] = ACTIONS(9080), + [aux_sym_put_statement_token1] = ACTIONS(9080), + [aux_sym_unlock_statement_token1] = ACTIONS(9080), + [aux_sym_seek_statement_token1] = ACTIONS(9080), + [sym_reset_statement] = ACTIONS(9080), + [aux_sym_raise_event_statement_token1] = ACTIONS(9080), + [sym_stop_statement] = ACTIONS(9080), + [sym_beep_statement] = ACTIONS(9080), + [aux_sym_unload_statement_token1] = ACTIONS(9080), + [aux_sym_def_type_statement_token1] = ACTIONS(9080), + [aux_sym_def_type_statement_token2] = ACTIONS(9080), + [aux_sym_def_type_statement_token3] = ACTIONS(9080), + [aux_sym_def_type_statement_token4] = ACTIONS(9080), + [aux_sym_def_type_statement_token5] = ACTIONS(9080), + [aux_sym_def_type_statement_token6] = ACTIONS(9080), + [aux_sym_def_type_statement_token7] = ACTIONS(9080), + [aux_sym_def_type_statement_token8] = ACTIONS(9080), + [aux_sym_def_type_statement_token9] = ACTIONS(9080), + [aux_sym_def_type_statement_token10] = ACTIONS(9080), + [aux_sym_def_type_statement_token11] = ACTIONS(9080), + [aux_sym_def_type_statement_token12] = ACTIONS(9080), + [aux_sym_def_type_statement_token13] = ACTIONS(9080), + [aux_sym_def_type_statement_token14] = ACTIONS(9080), + [aux_sym_call_statement_token1] = ACTIONS(9080), + [sym__ambiguous_call_statement] = ACTIONS(9080), + [aux_sym_addressof_expression_token1] = ACTIONS(9080), + [aux_sym_type_of_expression_token1] = ACTIONS(9080), + [aux_sym_unary_expression_token1] = ACTIONS(9080), + [sym_string_literal] = ACTIONS(9082), + [sym_number_literal] = ACTIONS(9082), + [aux_sym_boolean_literal_token1] = ACTIONS(9080), + [aux_sym_boolean_literal_token2] = ACTIONS(9080), + [sym_nothing_literal] = ACTIONS(9080), + [sym_null_literal] = ACTIONS(9080), + [sym_empty_literal] = ACTIONS(9080), + [sym_date_literal] = ACTIONS(9082), + [anon_sym_POUND] = ACTIONS(9080), + }, + [STATE(6361)] = { + [sym_identifier] = ACTIONS(9639), + [sym_newline] = ACTIONS(9641), + [anon_sym_COLON] = ACTIONS(9641), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9639), + [aux_sym_frm_property_statement_token1] = ACTIONS(9639), + [anon_sym_DOT] = ACTIONS(9639), + [anon_sym_BANG] = ACTIONS(9641), + [aux_sym__attribute_identifier_token1] = ACTIONS(9639), + [aux_sym_option_statement_token3] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9639), + [aux_sym_preprocessor_const_token1] = ACTIONS(9639), + [sym_static_modifier] = ACTIONS(9639), + [sym__dim_keyword] = ACTIONS(9639), + [sym__redim_keyword] = ACTIONS(9639), + [aux_sym_get_accessor_token1] = ACTIONS(9639), + [aux_sym_set_accessor_token1] = ACTIONS(9639), + [aux_sym_const_declaration_token1] = ACTIONS(9639), + [anon_sym_LPAREN] = ACTIONS(9641), + [aux_sym_as_type_clause_token2] = ACTIONS(9639), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9639), + [aux_sym_visibility_token1] = ACTIONS(9639), + [aux_sym_visibility_token2] = ACTIONS(9639), + [aux_sym_elseif_fragment_token1] = ACTIONS(9639), + [aux_sym_else_fragment_token1] = ACTIONS(9639), + [aux_sym_select_statement_token1] = ACTIONS(9639), + [aux_sym__for_header_token1] = ACTIONS(9639), + [aux_sym_do_statement_token1] = ACTIONS(9639), + [aux_sym_do_condition_token1] = ACTIONS(9639), + [aux_sym_with_statement_token1] = ACTIONS(9639), + [aux_sym_exit_statement_token1] = ACTIONS(9639), + [sym_end_statement] = ACTIONS(9641), + [aux_sym_on_goto_statement_token1] = ACTIONS(9639), + [aux_sym_on_goto_statement_token2] = ACTIONS(9639), + [aux_sym_on_error_statement_token2] = ACTIONS(9639), + [sym__ambiguous_redim_statement] = ACTIONS(9641), + [aux_sym_erase_statement_token1] = ACTIONS(9639), + [aux_sym_open_statement_token1] = ACTIONS(9639), + [aux_sym_file_mode_token2] = ACTIONS(9639), + [aux_sym_file_access_token2] = ACTIONS(9639), + [aux_sym_file_lock_token2] = ACTIONS(9639), + [aux_sym_print_statement_token1] = ACTIONS(9639), + [anon_sym_PLUS] = ACTIONS(9641), + [anon_sym_DASH] = ACTIONS(9639), + [anon_sym_QMARK] = ACTIONS(9641), + [aux_sym_close_statement_token1] = ACTIONS(9639), + [aux_sym_put_statement_token1] = ACTIONS(9639), + [aux_sym_unlock_statement_token1] = ACTIONS(9639), + [aux_sym_seek_statement_token1] = ACTIONS(9639), + [sym_reset_statement] = ACTIONS(9639), + [aux_sym_raise_event_statement_token1] = ACTIONS(9639), + [sym_stop_statement] = ACTIONS(9639), + [sym_beep_statement] = ACTIONS(9639), + [aux_sym_unload_statement_token1] = ACTIONS(9639), + [aux_sym_def_type_statement_token1] = ACTIONS(9639), + [aux_sym_def_type_statement_token2] = ACTIONS(9639), + [aux_sym_def_type_statement_token3] = ACTIONS(9639), + [aux_sym_def_type_statement_token4] = ACTIONS(9639), + [aux_sym_def_type_statement_token5] = ACTIONS(9639), + [aux_sym_def_type_statement_token6] = ACTIONS(9639), + [aux_sym_def_type_statement_token7] = ACTIONS(9639), + [aux_sym_def_type_statement_token8] = ACTIONS(9639), + [aux_sym_def_type_statement_token9] = ACTIONS(9639), + [aux_sym_def_type_statement_token10] = ACTIONS(9639), + [aux_sym_def_type_statement_token11] = ACTIONS(9639), + [aux_sym_def_type_statement_token12] = ACTIONS(9639), + [aux_sym_def_type_statement_token13] = ACTIONS(9639), + [aux_sym_def_type_statement_token14] = ACTIONS(9639), + [aux_sym_call_statement_token1] = ACTIONS(9639), + [sym__ambiguous_call_statement] = ACTIONS(9639), + [aux_sym_addressof_expression_token1] = ACTIONS(9639), + [aux_sym_type_of_expression_token1] = ACTIONS(9639), + [aux_sym_unary_expression_token1] = ACTIONS(9639), + [sym_string_literal] = ACTIONS(9641), + [sym_number_literal] = ACTIONS(9641), + [aux_sym_boolean_literal_token1] = ACTIONS(9639), + [aux_sym_boolean_literal_token2] = ACTIONS(9639), + [sym_nothing_literal] = ACTIONS(9639), + [sym_null_literal] = ACTIONS(9639), + [sym_empty_literal] = ACTIONS(9639), + [sym_date_literal] = ACTIONS(9641), + [anon_sym_POUND] = ACTIONS(9639), + }, + [STATE(6362)] = { + [sym_identifier] = ACTIONS(9084), + [sym_newline] = ACTIONS(9086), + [anon_sym_COLON] = ACTIONS(9086), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9084), + [aux_sym_frm_property_statement_token1] = ACTIONS(9084), + [anon_sym_DOT] = ACTIONS(9084), + [anon_sym_BANG] = ACTIONS(9086), + [aux_sym__attribute_identifier_token1] = ACTIONS(9084), + [aux_sym_option_statement_token3] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9084), + [aux_sym_preprocessor_const_token1] = ACTIONS(9084), + [sym_static_modifier] = ACTIONS(9084), + [sym__dim_keyword] = ACTIONS(9084), + [sym__redim_keyword] = ACTIONS(9084), + [aux_sym_get_accessor_token1] = ACTIONS(9084), + [aux_sym_set_accessor_token1] = ACTIONS(9084), + [aux_sym_const_declaration_token1] = ACTIONS(9084), + [anon_sym_LPAREN] = ACTIONS(9086), + [aux_sym_as_type_clause_token2] = ACTIONS(9084), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9084), + [aux_sym_visibility_token1] = ACTIONS(9084), + [aux_sym_visibility_token2] = ACTIONS(9084), + [aux_sym_elseif_fragment_token1] = ACTIONS(9084), + [aux_sym_else_fragment_token1] = ACTIONS(9084), + [aux_sym_select_statement_token1] = ACTIONS(9084), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9084), + [aux_sym__for_header_token1] = ACTIONS(9084), + [aux_sym_do_statement_token1] = ACTIONS(9084), + [aux_sym_do_condition_token1] = ACTIONS(9084), + [aux_sym_with_statement_token1] = ACTIONS(9084), + [aux_sym_exit_statement_token1] = ACTIONS(9084), + [sym_end_statement] = ACTIONS(9086), + [aux_sym_on_goto_statement_token1] = ACTIONS(9084), + [aux_sym_on_goto_statement_token2] = ACTIONS(9084), + [aux_sym_on_error_statement_token2] = ACTIONS(9084), + [sym__ambiguous_redim_statement] = ACTIONS(9086), + [aux_sym_erase_statement_token1] = ACTIONS(9084), + [aux_sym_open_statement_token1] = ACTIONS(9084), + [aux_sym_file_mode_token2] = ACTIONS(9084), + [aux_sym_file_access_token2] = ACTIONS(9084), + [aux_sym_file_lock_token2] = ACTIONS(9084), + [aux_sym_print_statement_token1] = ACTIONS(9084), + [anon_sym_PLUS] = ACTIONS(9086), + [anon_sym_DASH] = ACTIONS(9084), + [anon_sym_QMARK] = ACTIONS(9086), + [aux_sym_close_statement_token1] = ACTIONS(9084), + [aux_sym_put_statement_token1] = ACTIONS(9084), + [aux_sym_unlock_statement_token1] = ACTIONS(9084), + [aux_sym_seek_statement_token1] = ACTIONS(9084), + [sym_reset_statement] = ACTIONS(9084), + [aux_sym_raise_event_statement_token1] = ACTIONS(9084), + [sym_stop_statement] = ACTIONS(9084), + [sym_beep_statement] = ACTIONS(9084), + [aux_sym_unload_statement_token1] = ACTIONS(9084), + [aux_sym_def_type_statement_token1] = ACTIONS(9084), + [aux_sym_def_type_statement_token2] = ACTIONS(9084), + [aux_sym_def_type_statement_token3] = ACTIONS(9084), + [aux_sym_def_type_statement_token4] = ACTIONS(9084), + [aux_sym_def_type_statement_token5] = ACTIONS(9084), + [aux_sym_def_type_statement_token6] = ACTIONS(9084), + [aux_sym_def_type_statement_token7] = ACTIONS(9084), + [aux_sym_def_type_statement_token8] = ACTIONS(9084), + [aux_sym_def_type_statement_token9] = ACTIONS(9084), + [aux_sym_def_type_statement_token10] = ACTIONS(9084), + [aux_sym_def_type_statement_token11] = ACTIONS(9084), + [aux_sym_def_type_statement_token12] = ACTIONS(9084), + [aux_sym_def_type_statement_token13] = ACTIONS(9084), + [aux_sym_def_type_statement_token14] = ACTIONS(9084), + [aux_sym_call_statement_token1] = ACTIONS(9084), + [sym__ambiguous_call_statement] = ACTIONS(9084), + [aux_sym_addressof_expression_token1] = ACTIONS(9084), + [aux_sym_type_of_expression_token1] = ACTIONS(9084), + [aux_sym_unary_expression_token1] = ACTIONS(9084), + [sym_string_literal] = ACTIONS(9086), + [sym_number_literal] = ACTIONS(9086), + [aux_sym_boolean_literal_token1] = ACTIONS(9084), + [aux_sym_boolean_literal_token2] = ACTIONS(9084), + [sym_nothing_literal] = ACTIONS(9084), + [sym_null_literal] = ACTIONS(9084), + [sym_empty_literal] = ACTIONS(9084), + [sym_date_literal] = ACTIONS(9086), + [anon_sym_POUND] = ACTIONS(9084), + }, + [STATE(6363)] = { + [sym_identifier] = ACTIONS(9643), + [sym_newline] = ACTIONS(9645), + [anon_sym_COLON] = ACTIONS(9645), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9643), + [aux_sym_frm_property_statement_token1] = ACTIONS(9643), + [anon_sym_DOT] = ACTIONS(9643), + [anon_sym_BANG] = ACTIONS(9645), + [aux_sym__attribute_identifier_token1] = ACTIONS(9643), + [aux_sym_option_statement_token3] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9643), + [aux_sym_preprocessor_const_token1] = ACTIONS(9643), + [sym_static_modifier] = ACTIONS(9643), + [sym__dim_keyword] = ACTIONS(9643), + [sym__redim_keyword] = ACTIONS(9643), + [aux_sym_get_accessor_token1] = ACTIONS(9643), + [aux_sym_set_accessor_token1] = ACTIONS(9643), + [aux_sym_const_declaration_token1] = ACTIONS(9643), + [anon_sym_LPAREN] = ACTIONS(9645), + [aux_sym_as_type_clause_token2] = ACTIONS(9643), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9643), + [aux_sym_visibility_token1] = ACTIONS(9643), + [aux_sym_visibility_token2] = ACTIONS(9643), + [aux_sym_elseif_fragment_token1] = ACTIONS(9643), + [aux_sym_else_fragment_token1] = ACTIONS(9643), + [aux_sym_select_statement_token1] = ACTIONS(9643), + [aux_sym__for_header_token1] = ACTIONS(9643), + [aux_sym_do_statement_token1] = ACTIONS(9643), + [aux_sym_do_condition_token1] = ACTIONS(9643), + [aux_sym_with_statement_token1] = ACTIONS(9643), + [aux_sym_exit_statement_token1] = ACTIONS(9643), + [sym_end_statement] = ACTIONS(9645), + [aux_sym_on_goto_statement_token1] = ACTIONS(9643), + [aux_sym_on_goto_statement_token2] = ACTIONS(9643), + [aux_sym_on_error_statement_token2] = ACTIONS(9643), + [sym__ambiguous_redim_statement] = ACTIONS(9645), + [aux_sym_erase_statement_token1] = ACTIONS(9643), + [aux_sym_open_statement_token1] = ACTIONS(9643), + [aux_sym_file_mode_token2] = ACTIONS(9643), + [aux_sym_file_access_token2] = ACTIONS(9643), + [aux_sym_file_lock_token2] = ACTIONS(9643), + [aux_sym_print_statement_token1] = ACTIONS(9643), + [anon_sym_PLUS] = ACTIONS(9645), + [anon_sym_DASH] = ACTIONS(9643), + [anon_sym_QMARK] = ACTIONS(9645), + [aux_sym_close_statement_token1] = ACTIONS(9643), + [aux_sym_put_statement_token1] = ACTIONS(9643), + [aux_sym_unlock_statement_token1] = ACTIONS(9643), + [aux_sym_seek_statement_token1] = ACTIONS(9643), + [sym_reset_statement] = ACTIONS(9643), + [aux_sym_raise_event_statement_token1] = ACTIONS(9643), + [sym_stop_statement] = ACTIONS(9643), + [sym_beep_statement] = ACTIONS(9643), + [aux_sym_unload_statement_token1] = ACTIONS(9643), + [aux_sym_def_type_statement_token1] = ACTIONS(9643), + [aux_sym_def_type_statement_token2] = ACTIONS(9643), + [aux_sym_def_type_statement_token3] = ACTIONS(9643), + [aux_sym_def_type_statement_token4] = ACTIONS(9643), + [aux_sym_def_type_statement_token5] = ACTIONS(9643), + [aux_sym_def_type_statement_token6] = ACTIONS(9643), + [aux_sym_def_type_statement_token7] = ACTIONS(9643), + [aux_sym_def_type_statement_token8] = ACTIONS(9643), + [aux_sym_def_type_statement_token9] = ACTIONS(9643), + [aux_sym_def_type_statement_token10] = ACTIONS(9643), + [aux_sym_def_type_statement_token11] = ACTIONS(9643), + [aux_sym_def_type_statement_token12] = ACTIONS(9643), + [aux_sym_def_type_statement_token13] = ACTIONS(9643), + [aux_sym_def_type_statement_token14] = ACTIONS(9643), + [aux_sym_call_statement_token1] = ACTIONS(9643), + [sym__ambiguous_call_statement] = ACTIONS(9643), + [aux_sym_addressof_expression_token1] = ACTIONS(9643), + [aux_sym_type_of_expression_token1] = ACTIONS(9643), + [aux_sym_unary_expression_token1] = ACTIONS(9643), + [sym_string_literal] = ACTIONS(9645), + [sym_number_literal] = ACTIONS(9645), + [aux_sym_boolean_literal_token1] = ACTIONS(9643), + [aux_sym_boolean_literal_token2] = ACTIONS(9643), + [sym_nothing_literal] = ACTIONS(9643), + [sym_null_literal] = ACTIONS(9643), + [sym_empty_literal] = ACTIONS(9643), + [sym_date_literal] = ACTIONS(9645), + [anon_sym_POUND] = ACTIONS(9643), + }, + [STATE(6364)] = { + [sym_identifier] = ACTIONS(9647), + [sym_newline] = ACTIONS(9649), + [anon_sym_COLON] = ACTIONS(9649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9647), + [aux_sym_frm_property_statement_token1] = ACTIONS(9647), + [anon_sym_DOT] = ACTIONS(9647), + [anon_sym_BANG] = ACTIONS(9649), + [aux_sym__attribute_identifier_token1] = ACTIONS(9647), + [aux_sym_option_statement_token3] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9647), + [aux_sym_preprocessor_const_token1] = ACTIONS(9647), + [sym_static_modifier] = ACTIONS(9647), + [sym__dim_keyword] = ACTIONS(9647), + [sym__redim_keyword] = ACTIONS(9647), + [aux_sym_get_accessor_token1] = ACTIONS(9647), + [aux_sym_set_accessor_token1] = ACTIONS(9647), + [aux_sym_const_declaration_token1] = ACTIONS(9647), + [anon_sym_LPAREN] = ACTIONS(9649), + [aux_sym_as_type_clause_token2] = ACTIONS(9647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9647), + [aux_sym_visibility_token1] = ACTIONS(9647), + [aux_sym_visibility_token2] = ACTIONS(9647), + [aux_sym_elseif_fragment_token1] = ACTIONS(9647), + [aux_sym_else_fragment_token1] = ACTIONS(9647), + [aux_sym_select_statement_token1] = ACTIONS(9647), + [aux_sym__for_header_token1] = ACTIONS(9647), + [aux_sym_do_statement_token1] = ACTIONS(9647), + [aux_sym_do_condition_token1] = ACTIONS(9647), + [aux_sym_with_statement_token1] = ACTIONS(9647), + [aux_sym_exit_statement_token1] = ACTIONS(9647), + [sym_end_statement] = ACTIONS(9649), + [aux_sym_on_goto_statement_token1] = ACTIONS(9647), + [aux_sym_on_goto_statement_token2] = ACTIONS(9647), + [aux_sym_on_error_statement_token2] = ACTIONS(9647), + [sym__ambiguous_redim_statement] = ACTIONS(9649), + [aux_sym_erase_statement_token1] = ACTIONS(9647), + [aux_sym_open_statement_token1] = ACTIONS(9647), + [aux_sym_file_mode_token2] = ACTIONS(9647), + [aux_sym_file_access_token2] = ACTIONS(9647), + [aux_sym_file_lock_token2] = ACTIONS(9647), + [aux_sym_print_statement_token1] = ACTIONS(9647), + [anon_sym_PLUS] = ACTIONS(9649), + [anon_sym_DASH] = ACTIONS(9647), + [anon_sym_QMARK] = ACTIONS(9649), + [aux_sym_close_statement_token1] = ACTIONS(9647), + [aux_sym_put_statement_token1] = ACTIONS(9647), + [aux_sym_unlock_statement_token1] = ACTIONS(9647), + [aux_sym_seek_statement_token1] = ACTIONS(9647), + [sym_reset_statement] = ACTIONS(9647), + [aux_sym_raise_event_statement_token1] = ACTIONS(9647), + [sym_stop_statement] = ACTIONS(9647), + [sym_beep_statement] = ACTIONS(9647), + [aux_sym_unload_statement_token1] = ACTIONS(9647), + [aux_sym_def_type_statement_token1] = ACTIONS(9647), + [aux_sym_def_type_statement_token2] = ACTIONS(9647), + [aux_sym_def_type_statement_token3] = ACTIONS(9647), + [aux_sym_def_type_statement_token4] = ACTIONS(9647), + [aux_sym_def_type_statement_token5] = ACTIONS(9647), + [aux_sym_def_type_statement_token6] = ACTIONS(9647), + [aux_sym_def_type_statement_token7] = ACTIONS(9647), + [aux_sym_def_type_statement_token8] = ACTIONS(9647), + [aux_sym_def_type_statement_token9] = ACTIONS(9647), + [aux_sym_def_type_statement_token10] = ACTIONS(9647), + [aux_sym_def_type_statement_token11] = ACTIONS(9647), + [aux_sym_def_type_statement_token12] = ACTIONS(9647), + [aux_sym_def_type_statement_token13] = ACTIONS(9647), + [aux_sym_def_type_statement_token14] = ACTIONS(9647), + [aux_sym_call_statement_token1] = ACTIONS(9647), + [sym__ambiguous_call_statement] = ACTIONS(9647), + [aux_sym_addressof_expression_token1] = ACTIONS(9647), + [aux_sym_type_of_expression_token1] = ACTIONS(9647), + [aux_sym_unary_expression_token1] = ACTIONS(9647), + [sym_string_literal] = ACTIONS(9649), + [sym_number_literal] = ACTIONS(9649), + [aux_sym_boolean_literal_token1] = ACTIONS(9647), + [aux_sym_boolean_literal_token2] = ACTIONS(9647), + [sym_nothing_literal] = ACTIONS(9647), + [sym_null_literal] = ACTIONS(9647), + [sym_empty_literal] = ACTIONS(9647), + [sym_date_literal] = ACTIONS(9649), + [anon_sym_POUND] = ACTIONS(9647), + }, + [STATE(6365)] = { + [sym_identifier] = ACTIONS(9654), + [sym_newline] = ACTIONS(9656), + [anon_sym_COLON] = ACTIONS(9656), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9654), + [aux_sym_frm_property_statement_token1] = ACTIONS(9654), + [anon_sym_DOT] = ACTIONS(9654), + [anon_sym_BANG] = ACTIONS(9656), + [aux_sym__attribute_identifier_token1] = ACTIONS(9654), + [aux_sym_option_statement_token3] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9654), + [aux_sym_preprocessor_const_token1] = ACTIONS(9654), + [sym_static_modifier] = ACTIONS(9654), + [sym__dim_keyword] = ACTIONS(9654), + [sym__redim_keyword] = ACTIONS(9654), + [aux_sym_get_accessor_token1] = ACTIONS(9654), + [aux_sym_set_accessor_token1] = ACTIONS(9654), + [aux_sym_const_declaration_token1] = ACTIONS(9654), + [anon_sym_LPAREN] = ACTIONS(9656), + [aux_sym_as_type_clause_token2] = ACTIONS(9654), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9654), + [aux_sym_visibility_token1] = ACTIONS(9654), + [aux_sym_visibility_token2] = ACTIONS(9654), + [aux_sym_elseif_fragment_token1] = ACTIONS(9654), + [aux_sym_else_fragment_token1] = ACTIONS(9654), + [aux_sym_select_statement_token1] = ACTIONS(9654), + [aux_sym__for_header_token1] = ACTIONS(9654), + [aux_sym_do_statement_token1] = ACTIONS(9654), + [aux_sym_do_condition_token1] = ACTIONS(9654), + [aux_sym_with_statement_token1] = ACTIONS(9654), + [aux_sym_exit_statement_token1] = ACTIONS(9654), + [sym_end_statement] = ACTIONS(9656), + [aux_sym_on_goto_statement_token1] = ACTIONS(9654), + [aux_sym_on_goto_statement_token2] = ACTIONS(9654), + [aux_sym_on_error_statement_token2] = ACTIONS(9654), + [sym__ambiguous_redim_statement] = ACTIONS(9656), + [aux_sym_erase_statement_token1] = ACTIONS(9654), + [aux_sym_open_statement_token1] = ACTIONS(9654), + [aux_sym_file_mode_token2] = ACTIONS(9654), + [aux_sym_file_access_token2] = ACTIONS(9654), + [aux_sym_file_lock_token2] = ACTIONS(9654), + [aux_sym_print_statement_token1] = ACTIONS(9654), + [anon_sym_PLUS] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(9654), + [anon_sym_QMARK] = ACTIONS(9656), + [aux_sym_close_statement_token1] = ACTIONS(9654), + [aux_sym_put_statement_token1] = ACTIONS(9654), + [aux_sym_unlock_statement_token1] = ACTIONS(9654), + [aux_sym_seek_statement_token1] = ACTIONS(9654), + [sym_reset_statement] = ACTIONS(9654), + [aux_sym_raise_event_statement_token1] = ACTIONS(9654), + [sym_stop_statement] = ACTIONS(9654), + [sym_beep_statement] = ACTIONS(9654), + [aux_sym_unload_statement_token1] = ACTIONS(9654), + [aux_sym_def_type_statement_token1] = ACTIONS(9654), + [aux_sym_def_type_statement_token2] = ACTIONS(9654), + [aux_sym_def_type_statement_token3] = ACTIONS(9654), + [aux_sym_def_type_statement_token4] = ACTIONS(9654), + [aux_sym_def_type_statement_token5] = ACTIONS(9654), + [aux_sym_def_type_statement_token6] = ACTIONS(9654), + [aux_sym_def_type_statement_token7] = ACTIONS(9654), + [aux_sym_def_type_statement_token8] = ACTIONS(9654), + [aux_sym_def_type_statement_token9] = ACTIONS(9654), + [aux_sym_def_type_statement_token10] = ACTIONS(9654), + [aux_sym_def_type_statement_token11] = ACTIONS(9654), + [aux_sym_def_type_statement_token12] = ACTIONS(9654), + [aux_sym_def_type_statement_token13] = ACTIONS(9654), + [aux_sym_def_type_statement_token14] = ACTIONS(9654), + [aux_sym_call_statement_token1] = ACTIONS(9654), + [sym__ambiguous_call_statement] = ACTIONS(9654), + [aux_sym_addressof_expression_token1] = ACTIONS(9654), + [aux_sym_type_of_expression_token1] = ACTIONS(9654), + [aux_sym_unary_expression_token1] = ACTIONS(9654), + [sym_string_literal] = ACTIONS(9656), + [sym_number_literal] = ACTIONS(9656), + [aux_sym_boolean_literal_token1] = ACTIONS(9654), + [aux_sym_boolean_literal_token2] = ACTIONS(9654), + [sym_nothing_literal] = ACTIONS(9654), + [sym_null_literal] = ACTIONS(9654), + [sym_empty_literal] = ACTIONS(9654), + [sym_date_literal] = ACTIONS(9656), + [anon_sym_POUND] = ACTIONS(9654), + }, + [STATE(6366)] = { + [sym_identifier] = ACTIONS(9088), + [sym_newline] = ACTIONS(9090), + [anon_sym_COLON] = ACTIONS(9090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9088), + [aux_sym_frm_property_statement_token1] = ACTIONS(9088), + [anon_sym_DOT] = ACTIONS(9088), + [anon_sym_BANG] = ACTIONS(9090), + [aux_sym__attribute_identifier_token1] = ACTIONS(9088), + [aux_sym_option_statement_token3] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9088), + [aux_sym_preprocessor_const_token1] = ACTIONS(9088), + [sym_static_modifier] = ACTIONS(9088), + [sym__dim_keyword] = ACTIONS(9088), + [sym__redim_keyword] = ACTIONS(9088), + [aux_sym_get_accessor_token1] = ACTIONS(9088), + [aux_sym_set_accessor_token1] = ACTIONS(9088), + [aux_sym_const_declaration_token1] = ACTIONS(9088), + [anon_sym_LPAREN] = ACTIONS(9090), + [aux_sym_as_type_clause_token2] = ACTIONS(9088), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9088), + [aux_sym_visibility_token1] = ACTIONS(9088), + [aux_sym_visibility_token2] = ACTIONS(9088), + [aux_sym_elseif_fragment_token1] = ACTIONS(9088), + [aux_sym_else_fragment_token1] = ACTIONS(9088), + [aux_sym_select_statement_token1] = ACTIONS(9088), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9088), + [aux_sym__for_header_token1] = ACTIONS(9088), + [aux_sym_do_statement_token1] = ACTIONS(9088), + [aux_sym_do_condition_token1] = ACTIONS(9088), + [aux_sym_with_statement_token1] = ACTIONS(9088), + [aux_sym_exit_statement_token1] = ACTIONS(9088), + [sym_end_statement] = ACTIONS(9090), + [aux_sym_on_goto_statement_token1] = ACTIONS(9088), + [aux_sym_on_goto_statement_token2] = ACTIONS(9088), + [aux_sym_on_error_statement_token2] = ACTIONS(9088), + [sym__ambiguous_redim_statement] = ACTIONS(9090), + [aux_sym_erase_statement_token1] = ACTIONS(9088), + [aux_sym_open_statement_token1] = ACTIONS(9088), + [aux_sym_file_mode_token2] = ACTIONS(9088), + [aux_sym_file_access_token2] = ACTIONS(9088), + [aux_sym_file_lock_token2] = ACTIONS(9088), + [aux_sym_print_statement_token1] = ACTIONS(9088), + [anon_sym_PLUS] = ACTIONS(9090), + [anon_sym_DASH] = ACTIONS(9088), + [anon_sym_QMARK] = ACTIONS(9090), + [aux_sym_close_statement_token1] = ACTIONS(9088), + [aux_sym_put_statement_token1] = ACTIONS(9088), + [aux_sym_unlock_statement_token1] = ACTIONS(9088), + [aux_sym_seek_statement_token1] = ACTIONS(9088), + [sym_reset_statement] = ACTIONS(9088), + [aux_sym_raise_event_statement_token1] = ACTIONS(9088), + [sym_stop_statement] = ACTIONS(9088), + [sym_beep_statement] = ACTIONS(9088), + [aux_sym_unload_statement_token1] = ACTIONS(9088), + [aux_sym_def_type_statement_token1] = ACTIONS(9088), + [aux_sym_def_type_statement_token2] = ACTIONS(9088), + [aux_sym_def_type_statement_token3] = ACTIONS(9088), + [aux_sym_def_type_statement_token4] = ACTIONS(9088), + [aux_sym_def_type_statement_token5] = ACTIONS(9088), + [aux_sym_def_type_statement_token6] = ACTIONS(9088), + [aux_sym_def_type_statement_token7] = ACTIONS(9088), + [aux_sym_def_type_statement_token8] = ACTIONS(9088), + [aux_sym_def_type_statement_token9] = ACTIONS(9088), + [aux_sym_def_type_statement_token10] = ACTIONS(9088), + [aux_sym_def_type_statement_token11] = ACTIONS(9088), + [aux_sym_def_type_statement_token12] = ACTIONS(9088), + [aux_sym_def_type_statement_token13] = ACTIONS(9088), + [aux_sym_def_type_statement_token14] = ACTIONS(9088), + [aux_sym_call_statement_token1] = ACTIONS(9088), + [sym__ambiguous_call_statement] = ACTIONS(9088), + [aux_sym_addressof_expression_token1] = ACTIONS(9088), + [aux_sym_type_of_expression_token1] = ACTIONS(9088), + [aux_sym_unary_expression_token1] = ACTIONS(9088), + [sym_string_literal] = ACTIONS(9090), + [sym_number_literal] = ACTIONS(9090), + [aux_sym_boolean_literal_token1] = ACTIONS(9088), + [aux_sym_boolean_literal_token2] = ACTIONS(9088), + [sym_nothing_literal] = ACTIONS(9088), + [sym_null_literal] = ACTIONS(9088), + [sym_empty_literal] = ACTIONS(9088), + [sym_date_literal] = ACTIONS(9090), + [anon_sym_POUND] = ACTIONS(9088), + }, + [STATE(6367)] = { + [sym_identifier] = ACTIONS(9092), + [sym_newline] = ACTIONS(9094), + [anon_sym_COLON] = ACTIONS(11103), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9092), + [aux_sym_frm_property_statement_token1] = ACTIONS(9092), + [anon_sym_DOT] = ACTIONS(9092), + [anon_sym_BANG] = ACTIONS(9094), + [aux_sym__attribute_identifier_token1] = ACTIONS(9092), + [aux_sym_option_statement_token3] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9092), + [aux_sym_preprocessor_const_token1] = ACTIONS(9092), + [sym_static_modifier] = ACTIONS(9092), + [sym__dim_keyword] = ACTIONS(9092), + [sym__redim_keyword] = ACTIONS(9092), + [aux_sym_get_accessor_token1] = ACTIONS(9092), + [aux_sym_set_accessor_token1] = ACTIONS(9092), + [aux_sym_const_declaration_token1] = ACTIONS(9092), + [anon_sym_LPAREN] = ACTIONS(9094), + [aux_sym_as_type_clause_token2] = ACTIONS(9092), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9092), + [aux_sym_visibility_token1] = ACTIONS(9092), + [aux_sym_visibility_token2] = ACTIONS(9092), + [aux_sym_elseif_fragment_token1] = ACTIONS(9092), + [aux_sym_else_fragment_token1] = ACTIONS(9092), + [aux_sym_select_statement_token1] = ACTIONS(9092), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9092), + [aux_sym__for_header_token1] = ACTIONS(9092), + [aux_sym_do_statement_token1] = ACTIONS(9092), + [aux_sym_do_condition_token1] = ACTIONS(9092), + [aux_sym_with_statement_token1] = ACTIONS(9092), + [aux_sym_exit_statement_token1] = ACTIONS(9092), + [sym_end_statement] = ACTIONS(9094), + [aux_sym_on_goto_statement_token1] = ACTIONS(9092), + [aux_sym_on_goto_statement_token2] = ACTIONS(9092), + [aux_sym_on_error_statement_token2] = ACTIONS(9092), + [sym__ambiguous_redim_statement] = ACTIONS(9094), + [aux_sym_erase_statement_token1] = ACTIONS(9092), + [aux_sym_open_statement_token1] = ACTIONS(9092), + [aux_sym_file_mode_token2] = ACTIONS(9092), + [aux_sym_file_access_token2] = ACTIONS(9092), + [aux_sym_file_lock_token2] = ACTIONS(9092), + [aux_sym_print_statement_token1] = ACTIONS(9092), + [anon_sym_PLUS] = ACTIONS(9094), + [anon_sym_DASH] = ACTIONS(9092), + [anon_sym_QMARK] = ACTIONS(9094), + [aux_sym_close_statement_token1] = ACTIONS(9092), + [aux_sym_put_statement_token1] = ACTIONS(9092), + [aux_sym_unlock_statement_token1] = ACTIONS(9092), + [aux_sym_seek_statement_token1] = ACTIONS(9092), + [sym_reset_statement] = ACTIONS(9092), + [aux_sym_raise_event_statement_token1] = ACTIONS(9092), + [sym_stop_statement] = ACTIONS(9092), + [sym_beep_statement] = ACTIONS(9092), + [aux_sym_unload_statement_token1] = ACTIONS(9092), + [aux_sym_def_type_statement_token1] = ACTIONS(9092), + [aux_sym_def_type_statement_token2] = ACTIONS(9092), + [aux_sym_def_type_statement_token3] = ACTIONS(9092), + [aux_sym_def_type_statement_token4] = ACTIONS(9092), + [aux_sym_def_type_statement_token5] = ACTIONS(9092), + [aux_sym_def_type_statement_token6] = ACTIONS(9092), + [aux_sym_def_type_statement_token7] = ACTIONS(9092), + [aux_sym_def_type_statement_token8] = ACTIONS(9092), + [aux_sym_def_type_statement_token9] = ACTIONS(9092), + [aux_sym_def_type_statement_token10] = ACTIONS(9092), + [aux_sym_def_type_statement_token11] = ACTIONS(9092), + [aux_sym_def_type_statement_token12] = ACTIONS(9092), + [aux_sym_def_type_statement_token13] = ACTIONS(9092), + [aux_sym_def_type_statement_token14] = ACTIONS(9092), + [aux_sym_call_statement_token1] = ACTIONS(9092), + [sym__ambiguous_call_statement] = ACTIONS(9092), + [aux_sym_addressof_expression_token1] = ACTIONS(9092), + [aux_sym_type_of_expression_token1] = ACTIONS(9092), + [aux_sym_unary_expression_token1] = ACTIONS(9092), + [sym_string_literal] = ACTIONS(9094), + [sym_number_literal] = ACTIONS(9094), + [aux_sym_boolean_literal_token1] = ACTIONS(9092), + [aux_sym_boolean_literal_token2] = ACTIONS(9092), + [sym_nothing_literal] = ACTIONS(9092), + [sym_null_literal] = ACTIONS(9092), + [sym_empty_literal] = ACTIONS(9092), + [sym_date_literal] = ACTIONS(9094), + [anon_sym_POUND] = ACTIONS(9092), + }, + [STATE(6368)] = { + [sym_identifier] = ACTIONS(9099), + [sym_newline] = ACTIONS(9101), + [anon_sym_COLON] = ACTIONS(11106), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9099), + [aux_sym_frm_property_statement_token1] = ACTIONS(9099), + [anon_sym_DOT] = ACTIONS(9099), + [anon_sym_BANG] = ACTIONS(9101), + [aux_sym__attribute_identifier_token1] = ACTIONS(9099), + [aux_sym_option_statement_token3] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9099), + [aux_sym_preprocessor_const_token1] = ACTIONS(9099), + [sym_static_modifier] = ACTIONS(9099), + [sym__dim_keyword] = ACTIONS(9099), + [sym__redim_keyword] = ACTIONS(9099), + [aux_sym_get_accessor_token1] = ACTIONS(9099), + [aux_sym_set_accessor_token1] = ACTIONS(9099), + [aux_sym_const_declaration_token1] = ACTIONS(9099), + [anon_sym_LPAREN] = ACTIONS(9101), + [aux_sym_as_type_clause_token2] = ACTIONS(9099), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9099), + [aux_sym_visibility_token1] = ACTIONS(9099), + [aux_sym_visibility_token2] = ACTIONS(9099), + [aux_sym_elseif_fragment_token1] = ACTIONS(9099), + [aux_sym_else_fragment_token1] = ACTIONS(9099), + [aux_sym_select_statement_token1] = ACTIONS(9099), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9099), + [aux_sym__for_header_token1] = ACTIONS(9099), + [aux_sym_do_statement_token1] = ACTIONS(9099), + [aux_sym_do_condition_token1] = ACTIONS(9099), + [aux_sym_with_statement_token1] = ACTIONS(9099), + [aux_sym_exit_statement_token1] = ACTIONS(9099), + [sym_end_statement] = ACTIONS(9101), + [aux_sym_on_goto_statement_token1] = ACTIONS(9099), + [aux_sym_on_goto_statement_token2] = ACTIONS(9099), + [aux_sym_on_error_statement_token2] = ACTIONS(9099), + [sym__ambiguous_redim_statement] = ACTIONS(9101), + [aux_sym_erase_statement_token1] = ACTIONS(9099), + [aux_sym_open_statement_token1] = ACTIONS(9099), + [aux_sym_file_mode_token2] = ACTIONS(9099), + [aux_sym_file_access_token2] = ACTIONS(9099), + [aux_sym_file_lock_token2] = ACTIONS(9099), + [aux_sym_print_statement_token1] = ACTIONS(9099), + [anon_sym_PLUS] = ACTIONS(9101), + [anon_sym_DASH] = ACTIONS(9099), + [anon_sym_QMARK] = ACTIONS(9101), + [aux_sym_close_statement_token1] = ACTIONS(9099), + [aux_sym_put_statement_token1] = ACTIONS(9099), + [aux_sym_unlock_statement_token1] = ACTIONS(9099), + [aux_sym_seek_statement_token1] = ACTIONS(9099), + [sym_reset_statement] = ACTIONS(9099), + [aux_sym_raise_event_statement_token1] = ACTIONS(9099), + [sym_stop_statement] = ACTIONS(9099), + [sym_beep_statement] = ACTIONS(9099), + [aux_sym_unload_statement_token1] = ACTIONS(9099), + [aux_sym_def_type_statement_token1] = ACTIONS(9099), + [aux_sym_def_type_statement_token2] = ACTIONS(9099), + [aux_sym_def_type_statement_token3] = ACTIONS(9099), + [aux_sym_def_type_statement_token4] = ACTIONS(9099), + [aux_sym_def_type_statement_token5] = ACTIONS(9099), + [aux_sym_def_type_statement_token6] = ACTIONS(9099), + [aux_sym_def_type_statement_token7] = ACTIONS(9099), + [aux_sym_def_type_statement_token8] = ACTIONS(9099), + [aux_sym_def_type_statement_token9] = ACTIONS(9099), + [aux_sym_def_type_statement_token10] = ACTIONS(9099), + [aux_sym_def_type_statement_token11] = ACTIONS(9099), + [aux_sym_def_type_statement_token12] = ACTIONS(9099), + [aux_sym_def_type_statement_token13] = ACTIONS(9099), + [aux_sym_def_type_statement_token14] = ACTIONS(9099), + [aux_sym_call_statement_token1] = ACTIONS(9099), + [sym__ambiguous_call_statement] = ACTIONS(9099), + [aux_sym_addressof_expression_token1] = ACTIONS(9099), + [aux_sym_type_of_expression_token1] = ACTIONS(9099), + [aux_sym_unary_expression_token1] = ACTIONS(9099), + [sym_string_literal] = ACTIONS(9101), + [sym_number_literal] = ACTIONS(9101), + [aux_sym_boolean_literal_token1] = ACTIONS(9099), + [aux_sym_boolean_literal_token2] = ACTIONS(9099), + [sym_nothing_literal] = ACTIONS(9099), + [sym_null_literal] = ACTIONS(9099), + [sym_empty_literal] = ACTIONS(9099), + [sym_date_literal] = ACTIONS(9101), + [anon_sym_POUND] = ACTIONS(9099), + }, + [STATE(6369)] = { + [sym_identifier] = ACTIONS(9110), + [sym_newline] = ACTIONS(9112), + [anon_sym_COLON] = ACTIONS(9112), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9110), + [aux_sym_frm_property_statement_token1] = ACTIONS(9110), + [anon_sym_DOT] = ACTIONS(9110), + [anon_sym_BANG] = ACTIONS(9112), + [aux_sym__attribute_identifier_token1] = ACTIONS(9110), + [aux_sym_option_statement_token3] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9110), + [aux_sym_preprocessor_const_token1] = ACTIONS(9110), + [sym_static_modifier] = ACTIONS(9110), + [sym__dim_keyword] = ACTIONS(9110), + [sym__redim_keyword] = ACTIONS(9110), + [aux_sym_get_accessor_token1] = ACTIONS(9110), + [aux_sym_set_accessor_token1] = ACTIONS(9110), + [aux_sym_const_declaration_token1] = ACTIONS(9110), + [anon_sym_LPAREN] = ACTIONS(9112), + [aux_sym_as_type_clause_token2] = ACTIONS(9110), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9110), + [aux_sym_visibility_token1] = ACTIONS(9110), + [aux_sym_visibility_token2] = ACTIONS(9110), + [aux_sym_elseif_fragment_token1] = ACTIONS(9110), + [aux_sym_else_fragment_token1] = ACTIONS(9110), + [aux_sym_select_statement_token1] = ACTIONS(9110), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9110), + [aux_sym__for_header_token1] = ACTIONS(9110), + [aux_sym_do_statement_token1] = ACTIONS(9110), + [aux_sym_do_condition_token1] = ACTIONS(9110), + [aux_sym_with_statement_token1] = ACTIONS(9110), + [aux_sym_exit_statement_token1] = ACTIONS(9110), + [sym_end_statement] = ACTIONS(9112), + [aux_sym_on_goto_statement_token1] = ACTIONS(9110), + [aux_sym_on_goto_statement_token2] = ACTIONS(9110), + [aux_sym_on_error_statement_token2] = ACTIONS(9110), + [sym__ambiguous_redim_statement] = ACTIONS(9112), + [aux_sym_erase_statement_token1] = ACTIONS(9110), + [aux_sym_open_statement_token1] = ACTIONS(9110), + [aux_sym_file_mode_token2] = ACTIONS(9110), + [aux_sym_file_access_token2] = ACTIONS(9110), + [aux_sym_file_lock_token2] = ACTIONS(9110), + [aux_sym_print_statement_token1] = ACTIONS(9110), + [anon_sym_PLUS] = ACTIONS(9112), + [anon_sym_DASH] = ACTIONS(9110), + [anon_sym_QMARK] = ACTIONS(9112), + [aux_sym_close_statement_token1] = ACTIONS(9110), + [aux_sym_put_statement_token1] = ACTIONS(9110), + [aux_sym_unlock_statement_token1] = ACTIONS(9110), + [aux_sym_seek_statement_token1] = ACTIONS(9110), + [sym_reset_statement] = ACTIONS(9110), + [aux_sym_raise_event_statement_token1] = ACTIONS(9110), + [sym_stop_statement] = ACTIONS(9110), + [sym_beep_statement] = ACTIONS(9110), + [aux_sym_unload_statement_token1] = ACTIONS(9110), + [aux_sym_def_type_statement_token1] = ACTIONS(9110), + [aux_sym_def_type_statement_token2] = ACTIONS(9110), + [aux_sym_def_type_statement_token3] = ACTIONS(9110), + [aux_sym_def_type_statement_token4] = ACTIONS(9110), + [aux_sym_def_type_statement_token5] = ACTIONS(9110), + [aux_sym_def_type_statement_token6] = ACTIONS(9110), + [aux_sym_def_type_statement_token7] = ACTIONS(9110), + [aux_sym_def_type_statement_token8] = ACTIONS(9110), + [aux_sym_def_type_statement_token9] = ACTIONS(9110), + [aux_sym_def_type_statement_token10] = ACTIONS(9110), + [aux_sym_def_type_statement_token11] = ACTIONS(9110), + [aux_sym_def_type_statement_token12] = ACTIONS(9110), + [aux_sym_def_type_statement_token13] = ACTIONS(9110), + [aux_sym_def_type_statement_token14] = ACTIONS(9110), + [aux_sym_call_statement_token1] = ACTIONS(9110), + [sym__ambiguous_call_statement] = ACTIONS(9110), + [aux_sym_addressof_expression_token1] = ACTIONS(9110), + [aux_sym_type_of_expression_token1] = ACTIONS(9110), + [aux_sym_unary_expression_token1] = ACTIONS(9110), + [sym_string_literal] = ACTIONS(9112), + [sym_number_literal] = ACTIONS(9112), + [aux_sym_boolean_literal_token1] = ACTIONS(9110), + [aux_sym_boolean_literal_token2] = ACTIONS(9110), + [sym_nothing_literal] = ACTIONS(9110), + [sym_null_literal] = ACTIONS(9110), + [sym_empty_literal] = ACTIONS(9110), + [sym_date_literal] = ACTIONS(9112), + [anon_sym_POUND] = ACTIONS(9110), + }, + [STATE(6370)] = { + [sym_identifier] = ACTIONS(9114), + [sym_newline] = ACTIONS(9116), + [anon_sym_COLON] = ACTIONS(9116), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9114), + [aux_sym_frm_property_statement_token1] = ACTIONS(9114), + [anon_sym_DOT] = ACTIONS(9114), + [anon_sym_BANG] = ACTIONS(9116), + [aux_sym__attribute_identifier_token1] = ACTIONS(9114), + [aux_sym_option_statement_token3] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9114), + [aux_sym_preprocessor_const_token1] = ACTIONS(9114), + [sym_static_modifier] = ACTIONS(9114), + [sym__dim_keyword] = ACTIONS(9114), + [sym__redim_keyword] = ACTIONS(9114), + [aux_sym_get_accessor_token1] = ACTIONS(9114), + [aux_sym_set_accessor_token1] = ACTIONS(9114), + [aux_sym_const_declaration_token1] = ACTIONS(9114), + [anon_sym_LPAREN] = ACTIONS(9116), + [aux_sym_as_type_clause_token2] = ACTIONS(9114), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9114), + [aux_sym_visibility_token1] = ACTIONS(9114), + [aux_sym_visibility_token2] = ACTIONS(9114), + [aux_sym_elseif_fragment_token1] = ACTIONS(9114), + [aux_sym_else_fragment_token1] = ACTIONS(9114), + [aux_sym_select_statement_token1] = ACTIONS(9114), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9114), + [aux_sym__for_header_token1] = ACTIONS(9114), + [aux_sym_do_statement_token1] = ACTIONS(9114), + [aux_sym_do_condition_token1] = ACTIONS(9114), + [aux_sym_with_statement_token1] = ACTIONS(9114), + [aux_sym_exit_statement_token1] = ACTIONS(9114), + [sym_end_statement] = ACTIONS(9116), + [aux_sym_on_goto_statement_token1] = ACTIONS(9114), + [aux_sym_on_goto_statement_token2] = ACTIONS(9114), + [aux_sym_on_error_statement_token2] = ACTIONS(9114), + [sym__ambiguous_redim_statement] = ACTIONS(9116), + [aux_sym_erase_statement_token1] = ACTIONS(9114), + [aux_sym_open_statement_token1] = ACTIONS(9114), + [aux_sym_file_mode_token2] = ACTIONS(9114), + [aux_sym_file_access_token2] = ACTIONS(9114), + [aux_sym_file_lock_token2] = ACTIONS(9114), + [aux_sym_print_statement_token1] = ACTIONS(9114), + [anon_sym_PLUS] = ACTIONS(9116), + [anon_sym_DASH] = ACTIONS(9114), + [anon_sym_QMARK] = ACTIONS(9116), + [aux_sym_close_statement_token1] = ACTIONS(9114), + [aux_sym_put_statement_token1] = ACTIONS(9114), + [aux_sym_unlock_statement_token1] = ACTIONS(9114), + [aux_sym_seek_statement_token1] = ACTIONS(9114), + [sym_reset_statement] = ACTIONS(9114), + [aux_sym_raise_event_statement_token1] = ACTIONS(9114), + [sym_stop_statement] = ACTIONS(9114), + [sym_beep_statement] = ACTIONS(9114), + [aux_sym_unload_statement_token1] = ACTIONS(9114), + [aux_sym_def_type_statement_token1] = ACTIONS(9114), + [aux_sym_def_type_statement_token2] = ACTIONS(9114), + [aux_sym_def_type_statement_token3] = ACTIONS(9114), + [aux_sym_def_type_statement_token4] = ACTIONS(9114), + [aux_sym_def_type_statement_token5] = ACTIONS(9114), + [aux_sym_def_type_statement_token6] = ACTIONS(9114), + [aux_sym_def_type_statement_token7] = ACTIONS(9114), + [aux_sym_def_type_statement_token8] = ACTIONS(9114), + [aux_sym_def_type_statement_token9] = ACTIONS(9114), + [aux_sym_def_type_statement_token10] = ACTIONS(9114), + [aux_sym_def_type_statement_token11] = ACTIONS(9114), + [aux_sym_def_type_statement_token12] = ACTIONS(9114), + [aux_sym_def_type_statement_token13] = ACTIONS(9114), + [aux_sym_def_type_statement_token14] = ACTIONS(9114), + [aux_sym_call_statement_token1] = ACTIONS(9114), + [sym__ambiguous_call_statement] = ACTIONS(9114), + [aux_sym_addressof_expression_token1] = ACTIONS(9114), + [aux_sym_type_of_expression_token1] = ACTIONS(9114), + [aux_sym_unary_expression_token1] = ACTIONS(9114), + [sym_string_literal] = ACTIONS(9116), + [sym_number_literal] = ACTIONS(9116), + [aux_sym_boolean_literal_token1] = ACTIONS(9114), + [aux_sym_boolean_literal_token2] = ACTIONS(9114), + [sym_nothing_literal] = ACTIONS(9114), + [sym_null_literal] = ACTIONS(9114), + [sym_empty_literal] = ACTIONS(9114), + [sym_date_literal] = ACTIONS(9116), + [anon_sym_POUND] = ACTIONS(9114), + }, + [STATE(6371)] = { + [sym_identifier] = ACTIONS(9118), + [sym_newline] = ACTIONS(9120), + [anon_sym_COLON] = ACTIONS(9120), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9118), + [aux_sym_frm_property_statement_token1] = ACTIONS(9118), + [anon_sym_DOT] = ACTIONS(9118), + [anon_sym_BANG] = ACTIONS(9120), + [aux_sym__attribute_identifier_token1] = ACTIONS(9118), + [aux_sym_option_statement_token3] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9118), + [aux_sym_preprocessor_const_token1] = ACTIONS(9118), + [sym_static_modifier] = ACTIONS(9118), + [sym__dim_keyword] = ACTIONS(9118), + [sym__redim_keyword] = ACTIONS(9118), + [aux_sym_get_accessor_token1] = ACTIONS(9118), + [aux_sym_set_accessor_token1] = ACTIONS(9118), + [aux_sym_const_declaration_token1] = ACTIONS(9118), + [anon_sym_LPAREN] = ACTIONS(9120), + [aux_sym_as_type_clause_token2] = ACTIONS(9118), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9118), + [aux_sym_visibility_token1] = ACTIONS(9118), + [aux_sym_visibility_token2] = ACTIONS(9118), + [aux_sym_elseif_fragment_token1] = ACTIONS(9118), + [aux_sym_else_fragment_token1] = ACTIONS(9118), + [aux_sym_select_statement_token1] = ACTIONS(9118), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9118), + [aux_sym__for_header_token1] = ACTIONS(9118), + [aux_sym_do_statement_token1] = ACTIONS(9118), + [aux_sym_do_condition_token1] = ACTIONS(9118), + [aux_sym_with_statement_token1] = ACTIONS(9118), + [aux_sym_exit_statement_token1] = ACTIONS(9118), + [sym_end_statement] = ACTIONS(9120), + [aux_sym_on_goto_statement_token1] = ACTIONS(9118), + [aux_sym_on_goto_statement_token2] = ACTIONS(9118), + [aux_sym_on_error_statement_token2] = ACTIONS(9118), + [sym__ambiguous_redim_statement] = ACTIONS(9120), + [aux_sym_erase_statement_token1] = ACTIONS(9118), + [aux_sym_open_statement_token1] = ACTIONS(9118), + [aux_sym_file_mode_token2] = ACTIONS(9118), + [aux_sym_file_access_token2] = ACTIONS(9118), + [aux_sym_file_lock_token2] = ACTIONS(9118), + [aux_sym_print_statement_token1] = ACTIONS(9118), + [anon_sym_PLUS] = ACTIONS(9120), + [anon_sym_DASH] = ACTIONS(9118), + [anon_sym_QMARK] = ACTIONS(9120), + [aux_sym_close_statement_token1] = ACTIONS(9118), + [aux_sym_put_statement_token1] = ACTIONS(9118), + [aux_sym_unlock_statement_token1] = ACTIONS(9118), + [aux_sym_seek_statement_token1] = ACTIONS(9118), + [sym_reset_statement] = ACTIONS(9118), + [aux_sym_raise_event_statement_token1] = ACTIONS(9118), + [sym_stop_statement] = ACTIONS(9118), + [sym_beep_statement] = ACTIONS(9118), + [aux_sym_unload_statement_token1] = ACTIONS(9118), + [aux_sym_def_type_statement_token1] = ACTIONS(9118), + [aux_sym_def_type_statement_token2] = ACTIONS(9118), + [aux_sym_def_type_statement_token3] = ACTIONS(9118), + [aux_sym_def_type_statement_token4] = ACTIONS(9118), + [aux_sym_def_type_statement_token5] = ACTIONS(9118), + [aux_sym_def_type_statement_token6] = ACTIONS(9118), + [aux_sym_def_type_statement_token7] = ACTIONS(9118), + [aux_sym_def_type_statement_token8] = ACTIONS(9118), + [aux_sym_def_type_statement_token9] = ACTIONS(9118), + [aux_sym_def_type_statement_token10] = ACTIONS(9118), + [aux_sym_def_type_statement_token11] = ACTIONS(9118), + [aux_sym_def_type_statement_token12] = ACTIONS(9118), + [aux_sym_def_type_statement_token13] = ACTIONS(9118), + [aux_sym_def_type_statement_token14] = ACTIONS(9118), + [aux_sym_call_statement_token1] = ACTIONS(9118), + [sym__ambiguous_call_statement] = ACTIONS(9118), + [aux_sym_addressof_expression_token1] = ACTIONS(9118), + [aux_sym_type_of_expression_token1] = ACTIONS(9118), + [aux_sym_unary_expression_token1] = ACTIONS(9118), + [sym_string_literal] = ACTIONS(9120), + [sym_number_literal] = ACTIONS(9120), + [aux_sym_boolean_literal_token1] = ACTIONS(9118), + [aux_sym_boolean_literal_token2] = ACTIONS(9118), + [sym_nothing_literal] = ACTIONS(9118), + [sym_null_literal] = ACTIONS(9118), + [sym_empty_literal] = ACTIONS(9118), + [sym_date_literal] = ACTIONS(9120), + [anon_sym_POUND] = ACTIONS(9118), + }, + [STATE(6372)] = { + [sym_identifier] = ACTIONS(8903), + [sym_newline] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8903), + [aux_sym_frm_property_statement_token1] = ACTIONS(8903), + [anon_sym_DOT] = ACTIONS(8903), + [anon_sym_BANG] = ACTIONS(8905), + [aux_sym__attribute_identifier_token1] = ACTIONS(8903), + [aux_sym_option_statement_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8903), + [aux_sym_preprocessor_const_token1] = ACTIONS(8903), + [sym_static_modifier] = ACTIONS(8903), + [sym__dim_keyword] = ACTIONS(8903), + [sym__redim_keyword] = ACTIONS(8903), + [aux_sym_get_accessor_token1] = ACTIONS(8903), + [aux_sym_set_accessor_token1] = ACTIONS(8903), + [aux_sym_const_declaration_token1] = ACTIONS(8903), + [anon_sym_LPAREN] = ACTIONS(8905), + [aux_sym_as_type_clause_token2] = ACTIONS(8903), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8903), + [aux_sym_visibility_token1] = ACTIONS(8903), + [aux_sym_visibility_token2] = ACTIONS(8903), + [aux_sym_elseif_fragment_token1] = ACTIONS(8903), + [aux_sym_else_fragment_token1] = ACTIONS(8903), + [aux_sym_select_statement_token1] = ACTIONS(8903), + [aux_sym__for_header_token1] = ACTIONS(8903), + [aux_sym_do_statement_token1] = ACTIONS(8903), + [aux_sym_do_statement_token2] = ACTIONS(8903), + [aux_sym_do_condition_token1] = ACTIONS(8903), + [aux_sym_with_statement_token1] = ACTIONS(8903), + [aux_sym_exit_statement_token1] = ACTIONS(8903), + [sym_end_statement] = ACTIONS(8905), + [aux_sym_on_goto_statement_token1] = ACTIONS(8903), + [aux_sym_on_goto_statement_token2] = ACTIONS(8903), + [aux_sym_on_error_statement_token2] = ACTIONS(8903), + [sym__ambiguous_redim_statement] = ACTIONS(8905), + [aux_sym_erase_statement_token1] = ACTIONS(8903), + [aux_sym_open_statement_token1] = ACTIONS(8903), + [aux_sym_file_mode_token2] = ACTIONS(8903), + [aux_sym_file_access_token2] = ACTIONS(8903), + [aux_sym_file_lock_token2] = ACTIONS(8903), + [aux_sym_print_statement_token1] = ACTIONS(8903), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_DASH] = ACTIONS(8903), + [anon_sym_QMARK] = ACTIONS(8905), + [aux_sym_close_statement_token1] = ACTIONS(8903), + [aux_sym_put_statement_token1] = ACTIONS(8903), + [aux_sym_unlock_statement_token1] = ACTIONS(8903), + [aux_sym_seek_statement_token1] = ACTIONS(8903), + [sym_reset_statement] = ACTIONS(8903), + [aux_sym_raise_event_statement_token1] = ACTIONS(8903), + [sym_stop_statement] = ACTIONS(8903), + [sym_beep_statement] = ACTIONS(8903), + [aux_sym_unload_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token2] = ACTIONS(8903), + [aux_sym_def_type_statement_token3] = ACTIONS(8903), + [aux_sym_def_type_statement_token4] = ACTIONS(8903), + [aux_sym_def_type_statement_token5] = ACTIONS(8903), + [aux_sym_def_type_statement_token6] = ACTIONS(8903), + [aux_sym_def_type_statement_token7] = ACTIONS(8903), + [aux_sym_def_type_statement_token8] = ACTIONS(8903), + [aux_sym_def_type_statement_token9] = ACTIONS(8903), + [aux_sym_def_type_statement_token10] = ACTIONS(8903), + [aux_sym_def_type_statement_token11] = ACTIONS(8903), + [aux_sym_def_type_statement_token12] = ACTIONS(8903), + [aux_sym_def_type_statement_token13] = ACTIONS(8903), + [aux_sym_def_type_statement_token14] = ACTIONS(8903), + [aux_sym_call_statement_token1] = ACTIONS(8903), + [sym__ambiguous_call_statement] = ACTIONS(8903), + [aux_sym_addressof_expression_token1] = ACTIONS(8903), + [aux_sym_type_of_expression_token1] = ACTIONS(8903), + [aux_sym_unary_expression_token1] = ACTIONS(8903), + [sym_string_literal] = ACTIONS(8905), + [sym_number_literal] = ACTIONS(8905), + [aux_sym_boolean_literal_token1] = ACTIONS(8903), + [aux_sym_boolean_literal_token2] = ACTIONS(8903), + [sym_nothing_literal] = ACTIONS(8903), + [sym_null_literal] = ACTIONS(8903), + [sym_empty_literal] = ACTIONS(8903), + [sym_date_literal] = ACTIONS(8905), + [anon_sym_POUND] = ACTIONS(8903), + }, + [STATE(6373)] = { + [sym_identifier] = ACTIONS(9768), + [sym_newline] = ACTIONS(9770), + [anon_sym_COLON] = ACTIONS(9770), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9768), + [aux_sym_frm_property_statement_token1] = ACTIONS(9768), + [anon_sym_DOT] = ACTIONS(9768), + [anon_sym_BANG] = ACTIONS(9770), + [aux_sym__attribute_identifier_token1] = ACTIONS(9768), + [aux_sym_option_statement_token3] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9768), + [aux_sym_preprocessor_const_token1] = ACTIONS(9768), + [sym_static_modifier] = ACTIONS(9768), + [sym__dim_keyword] = ACTIONS(9768), + [sym__redim_keyword] = ACTIONS(9768), + [aux_sym_get_accessor_token1] = ACTIONS(9768), + [aux_sym_set_accessor_token1] = ACTIONS(9768), + [aux_sym_const_declaration_token1] = ACTIONS(9768), + [anon_sym_LPAREN] = ACTIONS(9770), + [aux_sym_as_type_clause_token2] = ACTIONS(9768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9768), + [aux_sym_visibility_token1] = ACTIONS(9768), + [aux_sym_visibility_token2] = ACTIONS(9768), + [aux_sym_elseif_fragment_token1] = ACTIONS(9768), + [aux_sym_else_fragment_token1] = ACTIONS(9768), + [aux_sym_select_statement_token1] = ACTIONS(9768), + [aux_sym_select_statement_token2] = ACTIONS(9768), + [aux_sym__for_header_token1] = ACTIONS(9768), + [aux_sym_do_statement_token1] = ACTIONS(9768), + [aux_sym_do_condition_token1] = ACTIONS(9768), + [aux_sym_with_statement_token1] = ACTIONS(9768), + [aux_sym_exit_statement_token1] = ACTIONS(9768), + [sym_end_statement] = ACTIONS(9770), + [aux_sym_on_goto_statement_token1] = ACTIONS(9768), + [aux_sym_on_goto_statement_token2] = ACTIONS(9768), + [aux_sym_on_error_statement_token2] = ACTIONS(9768), + [sym__ambiguous_redim_statement] = ACTIONS(9770), + [aux_sym_erase_statement_token1] = ACTIONS(9768), + [aux_sym_open_statement_token1] = ACTIONS(9768), + [aux_sym_file_mode_token2] = ACTIONS(9768), + [aux_sym_file_access_token2] = ACTIONS(9768), + [aux_sym_file_lock_token2] = ACTIONS(9768), + [aux_sym_print_statement_token1] = ACTIONS(9768), + [anon_sym_PLUS] = ACTIONS(9770), + [anon_sym_DASH] = ACTIONS(9768), + [anon_sym_QMARK] = ACTIONS(9770), + [aux_sym_close_statement_token1] = ACTIONS(9768), + [aux_sym_put_statement_token1] = ACTIONS(9768), + [aux_sym_unlock_statement_token1] = ACTIONS(9768), + [aux_sym_seek_statement_token1] = ACTIONS(9768), + [sym_reset_statement] = ACTIONS(9768), + [aux_sym_raise_event_statement_token1] = ACTIONS(9768), + [sym_stop_statement] = ACTIONS(9768), + [sym_beep_statement] = ACTIONS(9768), + [aux_sym_unload_statement_token1] = ACTIONS(9768), + [aux_sym_def_type_statement_token1] = ACTIONS(9768), + [aux_sym_def_type_statement_token2] = ACTIONS(9768), + [aux_sym_def_type_statement_token3] = ACTIONS(9768), + [aux_sym_def_type_statement_token4] = ACTIONS(9768), + [aux_sym_def_type_statement_token5] = ACTIONS(9768), + [aux_sym_def_type_statement_token6] = ACTIONS(9768), + [aux_sym_def_type_statement_token7] = ACTIONS(9768), + [aux_sym_def_type_statement_token8] = ACTIONS(9768), + [aux_sym_def_type_statement_token9] = ACTIONS(9768), + [aux_sym_def_type_statement_token10] = ACTIONS(9768), + [aux_sym_def_type_statement_token11] = ACTIONS(9768), + [aux_sym_def_type_statement_token12] = ACTIONS(9768), + [aux_sym_def_type_statement_token13] = ACTIONS(9768), + [aux_sym_def_type_statement_token14] = ACTIONS(9768), + [aux_sym_call_statement_token1] = ACTIONS(9768), + [sym__ambiguous_call_statement] = ACTIONS(9768), + [aux_sym_addressof_expression_token1] = ACTIONS(9768), + [aux_sym_type_of_expression_token1] = ACTIONS(9768), + [aux_sym_unary_expression_token1] = ACTIONS(9768), + [sym_string_literal] = ACTIONS(9770), + [sym_number_literal] = ACTIONS(9770), + [aux_sym_boolean_literal_token1] = ACTIONS(9768), + [aux_sym_boolean_literal_token2] = ACTIONS(9768), + [sym_nothing_literal] = ACTIONS(9768), + [sym_null_literal] = ACTIONS(9768), + [sym_empty_literal] = ACTIONS(9768), + [sym_date_literal] = ACTIONS(9770), + [anon_sym_POUND] = ACTIONS(9768), + }, + [STATE(6374)] = { + [sym_identifier] = ACTIONS(8911), + [sym_newline] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8911), + [aux_sym_frm_property_statement_token1] = ACTIONS(8911), + [anon_sym_DOT] = ACTIONS(8911), + [anon_sym_BANG] = ACTIONS(8913), + [aux_sym__attribute_identifier_token1] = ACTIONS(8911), + [aux_sym_option_statement_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8911), + [aux_sym_preprocessor_const_token1] = ACTIONS(8911), + [sym_static_modifier] = ACTIONS(8911), + [sym__dim_keyword] = ACTIONS(8911), + [sym__redim_keyword] = ACTIONS(8911), + [aux_sym_get_accessor_token1] = ACTIONS(8911), + [aux_sym_set_accessor_token1] = ACTIONS(8911), + [aux_sym_const_declaration_token1] = ACTIONS(8911), + [anon_sym_LPAREN] = ACTIONS(8913), + [aux_sym_as_type_clause_token2] = ACTIONS(8911), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8911), + [aux_sym_visibility_token1] = ACTIONS(8911), + [aux_sym_visibility_token2] = ACTIONS(8911), + [aux_sym_elseif_fragment_token1] = ACTIONS(8911), + [aux_sym_else_fragment_token1] = ACTIONS(8911), + [aux_sym_select_statement_token1] = ACTIONS(8911), + [aux_sym__for_header_token1] = ACTIONS(8911), + [aux_sym_do_statement_token1] = ACTIONS(8911), + [aux_sym_do_statement_token2] = ACTIONS(8911), + [aux_sym_do_condition_token1] = ACTIONS(8911), + [aux_sym_with_statement_token1] = ACTIONS(8911), + [aux_sym_exit_statement_token1] = ACTIONS(8911), + [sym_end_statement] = ACTIONS(8913), + [aux_sym_on_goto_statement_token1] = ACTIONS(8911), + [aux_sym_on_goto_statement_token2] = ACTIONS(8911), + [aux_sym_on_error_statement_token2] = ACTIONS(8911), + [sym__ambiguous_redim_statement] = ACTIONS(8913), + [aux_sym_erase_statement_token1] = ACTIONS(8911), + [aux_sym_open_statement_token1] = ACTIONS(8911), + [aux_sym_file_mode_token2] = ACTIONS(8911), + [aux_sym_file_access_token2] = ACTIONS(8911), + [aux_sym_file_lock_token2] = ACTIONS(8911), + [aux_sym_print_statement_token1] = ACTIONS(8911), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_DASH] = ACTIONS(8911), + [anon_sym_QMARK] = ACTIONS(8913), + [aux_sym_close_statement_token1] = ACTIONS(8911), + [aux_sym_put_statement_token1] = ACTIONS(8911), + [aux_sym_unlock_statement_token1] = ACTIONS(8911), + [aux_sym_seek_statement_token1] = ACTIONS(8911), + [sym_reset_statement] = ACTIONS(8911), + [aux_sym_raise_event_statement_token1] = ACTIONS(8911), + [sym_stop_statement] = ACTIONS(8911), + [sym_beep_statement] = ACTIONS(8911), + [aux_sym_unload_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token2] = ACTIONS(8911), + [aux_sym_def_type_statement_token3] = ACTIONS(8911), + [aux_sym_def_type_statement_token4] = ACTIONS(8911), + [aux_sym_def_type_statement_token5] = ACTIONS(8911), + [aux_sym_def_type_statement_token6] = ACTIONS(8911), + [aux_sym_def_type_statement_token7] = ACTIONS(8911), + [aux_sym_def_type_statement_token8] = ACTIONS(8911), + [aux_sym_def_type_statement_token9] = ACTIONS(8911), + [aux_sym_def_type_statement_token10] = ACTIONS(8911), + [aux_sym_def_type_statement_token11] = ACTIONS(8911), + [aux_sym_def_type_statement_token12] = ACTIONS(8911), + [aux_sym_def_type_statement_token13] = ACTIONS(8911), + [aux_sym_def_type_statement_token14] = ACTIONS(8911), + [aux_sym_call_statement_token1] = ACTIONS(8911), + [sym__ambiguous_call_statement] = ACTIONS(8911), + [aux_sym_addressof_expression_token1] = ACTIONS(8911), + [aux_sym_type_of_expression_token1] = ACTIONS(8911), + [aux_sym_unary_expression_token1] = ACTIONS(8911), + [sym_string_literal] = ACTIONS(8913), + [sym_number_literal] = ACTIONS(8913), + [aux_sym_boolean_literal_token1] = ACTIONS(8911), + [aux_sym_boolean_literal_token2] = ACTIONS(8911), + [sym_nothing_literal] = ACTIONS(8911), + [sym_null_literal] = ACTIONS(8911), + [sym_empty_literal] = ACTIONS(8911), + [sym_date_literal] = ACTIONS(8913), + [anon_sym_POUND] = ACTIONS(8911), + }, + [STATE(6375)] = { + [sym_identifier] = ACTIONS(9552), + [sym_newline] = ACTIONS(9554), + [anon_sym_COLON] = ACTIONS(9554), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9552), + [aux_sym_frm_property_statement_token1] = ACTIONS(9552), + [anon_sym_DOT] = ACTIONS(9552), + [anon_sym_BANG] = ACTIONS(9554), + [aux_sym__attribute_identifier_token1] = ACTIONS(9552), + [aux_sym_option_statement_token3] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9552), + [aux_sym_preprocessor_const_token1] = ACTIONS(9552), + [sym_static_modifier] = ACTIONS(9552), + [sym__dim_keyword] = ACTIONS(9552), + [sym__redim_keyword] = ACTIONS(9552), + [aux_sym_get_accessor_token1] = ACTIONS(9552), + [aux_sym_set_accessor_token1] = ACTIONS(9552), + [aux_sym_const_declaration_token1] = ACTIONS(9552), + [anon_sym_LPAREN] = ACTIONS(9554), + [aux_sym_as_type_clause_token2] = ACTIONS(9552), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9552), + [aux_sym_visibility_token1] = ACTIONS(9552), + [aux_sym_visibility_token2] = ACTIONS(9552), + [aux_sym_elseif_fragment_token1] = ACTIONS(9552), + [aux_sym_else_fragment_token1] = ACTIONS(9552), + [aux_sym_select_statement_token1] = ACTIONS(9552), + [aux_sym__for_header_token1] = ACTIONS(9552), + [aux_sym_do_statement_token1] = ACTIONS(9552), + [aux_sym_do_statement_token2] = ACTIONS(9552), + [aux_sym_do_condition_token1] = ACTIONS(9552), + [aux_sym_with_statement_token1] = ACTIONS(9552), + [aux_sym_exit_statement_token1] = ACTIONS(9552), + [sym_end_statement] = ACTIONS(9554), + [aux_sym_on_goto_statement_token1] = ACTIONS(9552), + [aux_sym_on_goto_statement_token2] = ACTIONS(9552), + [aux_sym_on_error_statement_token2] = ACTIONS(9552), + [sym__ambiguous_redim_statement] = ACTIONS(9554), + [aux_sym_erase_statement_token1] = ACTIONS(9552), + [aux_sym_open_statement_token1] = ACTIONS(9552), + [aux_sym_file_mode_token2] = ACTIONS(9552), + [aux_sym_file_access_token2] = ACTIONS(9552), + [aux_sym_file_lock_token2] = ACTIONS(9552), + [aux_sym_print_statement_token1] = ACTIONS(9552), + [anon_sym_PLUS] = ACTIONS(9554), + [anon_sym_DASH] = ACTIONS(9552), + [anon_sym_QMARK] = ACTIONS(9554), + [aux_sym_close_statement_token1] = ACTIONS(9552), + [aux_sym_put_statement_token1] = ACTIONS(9552), + [aux_sym_unlock_statement_token1] = ACTIONS(9552), + [aux_sym_seek_statement_token1] = ACTIONS(9552), + [sym_reset_statement] = ACTIONS(9552), + [aux_sym_raise_event_statement_token1] = ACTIONS(9552), + [sym_stop_statement] = ACTIONS(9552), + [sym_beep_statement] = ACTIONS(9552), + [aux_sym_unload_statement_token1] = ACTIONS(9552), + [aux_sym_def_type_statement_token1] = ACTIONS(9552), + [aux_sym_def_type_statement_token2] = ACTIONS(9552), + [aux_sym_def_type_statement_token3] = ACTIONS(9552), + [aux_sym_def_type_statement_token4] = ACTIONS(9552), + [aux_sym_def_type_statement_token5] = ACTIONS(9552), + [aux_sym_def_type_statement_token6] = ACTIONS(9552), + [aux_sym_def_type_statement_token7] = ACTIONS(9552), + [aux_sym_def_type_statement_token8] = ACTIONS(9552), + [aux_sym_def_type_statement_token9] = ACTIONS(9552), + [aux_sym_def_type_statement_token10] = ACTIONS(9552), + [aux_sym_def_type_statement_token11] = ACTIONS(9552), + [aux_sym_def_type_statement_token12] = ACTIONS(9552), + [aux_sym_def_type_statement_token13] = ACTIONS(9552), + [aux_sym_def_type_statement_token14] = ACTIONS(9552), + [aux_sym_call_statement_token1] = ACTIONS(9552), + [sym__ambiguous_call_statement] = ACTIONS(9552), + [aux_sym_addressof_expression_token1] = ACTIONS(9552), + [aux_sym_type_of_expression_token1] = ACTIONS(9552), + [aux_sym_unary_expression_token1] = ACTIONS(9552), + [sym_string_literal] = ACTIONS(9554), + [sym_number_literal] = ACTIONS(9554), + [aux_sym_boolean_literal_token1] = ACTIONS(9552), + [aux_sym_boolean_literal_token2] = ACTIONS(9552), + [sym_nothing_literal] = ACTIONS(9552), + [sym_null_literal] = ACTIONS(9552), + [sym_empty_literal] = ACTIONS(9552), + [sym_date_literal] = ACTIONS(9554), + [anon_sym_POUND] = ACTIONS(9552), + }, + [STATE(6376)] = { + [sym_identifier] = ACTIONS(9662), + [sym_newline] = ACTIONS(9664), + [anon_sym_COLON] = ACTIONS(9664), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9662), + [aux_sym_frm_property_statement_token1] = ACTIONS(9662), + [anon_sym_DOT] = ACTIONS(9662), + [anon_sym_BANG] = ACTIONS(9664), + [aux_sym__attribute_identifier_token1] = ACTIONS(9662), + [aux_sym_option_statement_token3] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9662), + [aux_sym_preprocessor_const_token1] = ACTIONS(9662), + [sym_static_modifier] = ACTIONS(9662), + [sym__dim_keyword] = ACTIONS(9662), + [sym__redim_keyword] = ACTIONS(9662), + [aux_sym_get_accessor_token1] = ACTIONS(9662), + [aux_sym_set_accessor_token1] = ACTIONS(9662), + [aux_sym_const_declaration_token1] = ACTIONS(9662), + [anon_sym_LPAREN] = ACTIONS(9664), + [aux_sym_as_type_clause_token2] = ACTIONS(9662), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9662), + [aux_sym_visibility_token1] = ACTIONS(9662), + [aux_sym_visibility_token2] = ACTIONS(9662), + [aux_sym_elseif_fragment_token1] = ACTIONS(9662), + [aux_sym_else_fragment_token1] = ACTIONS(9662), + [aux_sym_select_statement_token1] = ACTIONS(9662), + [aux_sym__for_header_token1] = ACTIONS(9662), + [aux_sym_do_statement_token1] = ACTIONS(9662), + [aux_sym_do_condition_token1] = ACTIONS(9662), + [aux_sym_with_statement_token1] = ACTIONS(9662), + [aux_sym_exit_statement_token1] = ACTIONS(9662), + [sym_end_statement] = ACTIONS(9664), + [aux_sym_on_goto_statement_token1] = ACTIONS(9662), + [aux_sym_on_goto_statement_token2] = ACTIONS(9662), + [aux_sym_on_error_statement_token2] = ACTIONS(9662), + [sym__ambiguous_redim_statement] = ACTIONS(9664), + [aux_sym_erase_statement_token1] = ACTIONS(9662), + [aux_sym_open_statement_token1] = ACTIONS(9662), + [aux_sym_file_mode_token2] = ACTIONS(9662), + [aux_sym_file_access_token2] = ACTIONS(9662), + [aux_sym_file_lock_token2] = ACTIONS(9662), + [aux_sym_print_statement_token1] = ACTIONS(9662), + [anon_sym_PLUS] = ACTIONS(9664), + [anon_sym_DASH] = ACTIONS(9662), + [anon_sym_QMARK] = ACTIONS(9664), + [aux_sym_close_statement_token1] = ACTIONS(9662), + [aux_sym_put_statement_token1] = ACTIONS(9662), + [aux_sym_unlock_statement_token1] = ACTIONS(9662), + [aux_sym_seek_statement_token1] = ACTIONS(9662), + [sym_reset_statement] = ACTIONS(9662), + [aux_sym_raise_event_statement_token1] = ACTIONS(9662), + [sym_stop_statement] = ACTIONS(9662), + [sym_beep_statement] = ACTIONS(9662), + [aux_sym_unload_statement_token1] = ACTIONS(9662), + [aux_sym_def_type_statement_token1] = ACTIONS(9662), + [aux_sym_def_type_statement_token2] = ACTIONS(9662), + [aux_sym_def_type_statement_token3] = ACTIONS(9662), + [aux_sym_def_type_statement_token4] = ACTIONS(9662), + [aux_sym_def_type_statement_token5] = ACTIONS(9662), + [aux_sym_def_type_statement_token6] = ACTIONS(9662), + [aux_sym_def_type_statement_token7] = ACTIONS(9662), + [aux_sym_def_type_statement_token8] = ACTIONS(9662), + [aux_sym_def_type_statement_token9] = ACTIONS(9662), + [aux_sym_def_type_statement_token10] = ACTIONS(9662), + [aux_sym_def_type_statement_token11] = ACTIONS(9662), + [aux_sym_def_type_statement_token12] = ACTIONS(9662), + [aux_sym_def_type_statement_token13] = ACTIONS(9662), + [aux_sym_def_type_statement_token14] = ACTIONS(9662), + [aux_sym_call_statement_token1] = ACTIONS(9662), + [sym__ambiguous_call_statement] = ACTIONS(9662), + [aux_sym_addressof_expression_token1] = ACTIONS(9662), + [aux_sym_type_of_expression_token1] = ACTIONS(9662), + [aux_sym_unary_expression_token1] = ACTIONS(9662), + [sym_string_literal] = ACTIONS(9664), + [sym_number_literal] = ACTIONS(9664), + [aux_sym_boolean_literal_token1] = ACTIONS(9662), + [aux_sym_boolean_literal_token2] = ACTIONS(9662), + [sym_nothing_literal] = ACTIONS(9662), + [sym_null_literal] = ACTIONS(9662), + [sym_empty_literal] = ACTIONS(9662), + [sym_date_literal] = ACTIONS(9664), + [anon_sym_POUND] = ACTIONS(9662), + }, + [STATE(6377)] = { + [sym_identifier] = ACTIONS(8660), + [sym_newline] = ACTIONS(8662), + [anon_sym_COLON] = ACTIONS(8662), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8660), + [aux_sym_frm_property_statement_token1] = ACTIONS(8660), + [anon_sym_DOT] = ACTIONS(8660), + [anon_sym_BANG] = ACTIONS(8662), + [aux_sym__attribute_identifier_token1] = ACTIONS(8660), + [aux_sym_option_statement_token3] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8660), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8660), + [aux_sym_preprocessor_const_token1] = ACTIONS(8660), + [sym_static_modifier] = ACTIONS(8660), + [sym__dim_keyword] = ACTIONS(8660), + [sym__redim_keyword] = ACTIONS(8660), + [aux_sym_get_accessor_token1] = ACTIONS(8660), + [aux_sym_set_accessor_token1] = ACTIONS(8660), + [anon_sym_COMMA] = ACTIONS(11109), + [aux_sym_const_declaration_token1] = ACTIONS(8660), + [anon_sym_LPAREN] = ACTIONS(8662), + [aux_sym_as_type_clause_token2] = ACTIONS(8660), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8660), + [aux_sym_visibility_token1] = ACTIONS(8660), + [aux_sym_visibility_token2] = ACTIONS(8660), + [aux_sym_elseif_fragment_token1] = ACTIONS(8660), + [aux_sym_else_fragment_token1] = ACTIONS(8660), + [aux_sym_select_statement_token1] = ACTIONS(8660), + [aux_sym__for_header_token1] = ACTIONS(8660), + [aux_sym_do_statement_token1] = ACTIONS(8660), + [aux_sym_do_condition_token1] = ACTIONS(8660), + [aux_sym_with_statement_token1] = ACTIONS(8660), + [aux_sym_exit_statement_token1] = ACTIONS(8660), + [sym_end_statement] = ACTIONS(8662), + [aux_sym_on_goto_statement_token1] = ACTIONS(8660), + [aux_sym_on_goto_statement_token2] = ACTIONS(8660), + [aux_sym_on_error_statement_token2] = ACTIONS(8660), + [sym__ambiguous_redim_statement] = ACTIONS(8662), + [aux_sym_erase_statement_token1] = ACTIONS(8660), + [aux_sym_open_statement_token1] = ACTIONS(8660), + [aux_sym_file_mode_token2] = ACTIONS(8660), + [aux_sym_file_access_token2] = ACTIONS(8660), + [aux_sym_file_lock_token2] = ACTIONS(8660), + [aux_sym_print_statement_token1] = ACTIONS(8660), + [anon_sym_PLUS] = ACTIONS(8662), + [anon_sym_DASH] = ACTIONS(8660), + [anon_sym_QMARK] = ACTIONS(8662), + [aux_sym_close_statement_token1] = ACTIONS(8660), + [aux_sym_put_statement_token1] = ACTIONS(8660), + [aux_sym_unlock_statement_token1] = ACTIONS(8660), + [aux_sym_seek_statement_token1] = ACTIONS(8660), + [sym_reset_statement] = ACTIONS(8660), + [aux_sym_raise_event_statement_token1] = ACTIONS(8660), + [sym_stop_statement] = ACTIONS(8660), + [sym_beep_statement] = ACTIONS(8660), + [aux_sym_unload_statement_token1] = ACTIONS(8660), + [aux_sym_def_type_statement_token1] = ACTIONS(8660), + [aux_sym_def_type_statement_token2] = ACTIONS(8660), + [aux_sym_def_type_statement_token3] = ACTIONS(8660), + [aux_sym_def_type_statement_token4] = ACTIONS(8660), + [aux_sym_def_type_statement_token5] = ACTIONS(8660), + [aux_sym_def_type_statement_token6] = ACTIONS(8660), + [aux_sym_def_type_statement_token7] = ACTIONS(8660), + [aux_sym_def_type_statement_token8] = ACTIONS(8660), + [aux_sym_def_type_statement_token9] = ACTIONS(8660), + [aux_sym_def_type_statement_token10] = ACTIONS(8660), + [aux_sym_def_type_statement_token11] = ACTIONS(8660), + [aux_sym_def_type_statement_token12] = ACTIONS(8660), + [aux_sym_def_type_statement_token13] = ACTIONS(8660), + [aux_sym_def_type_statement_token14] = ACTIONS(8660), + [aux_sym_call_statement_token1] = ACTIONS(8660), + [sym__ambiguous_call_statement] = ACTIONS(8660), + [aux_sym_addressof_expression_token1] = ACTIONS(8660), + [aux_sym_type_of_expression_token1] = ACTIONS(8660), + [aux_sym_unary_expression_token1] = ACTIONS(8660), + [sym_string_literal] = ACTIONS(8662), + [sym_number_literal] = ACTIONS(8662), + [aux_sym_boolean_literal_token1] = ACTIONS(8660), + [aux_sym_boolean_literal_token2] = ACTIONS(8660), + [sym_nothing_literal] = ACTIONS(8660), + [sym_null_literal] = ACTIONS(8660), + [sym_empty_literal] = ACTIONS(8660), + [sym_date_literal] = ACTIONS(8662), + [anon_sym_POUND] = ACTIONS(8660), + }, + [STATE(6378)] = { + [sym_identifier] = ACTIONS(8666), + [sym_newline] = ACTIONS(8668), + [anon_sym_COLON] = ACTIONS(8668), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8666), + [aux_sym_frm_property_statement_token1] = ACTIONS(8666), + [anon_sym_DOT] = ACTIONS(8666), + [anon_sym_BANG] = ACTIONS(8668), + [aux_sym__attribute_identifier_token1] = ACTIONS(8666), + [aux_sym_option_statement_token3] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8666), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8666), + [aux_sym_preprocessor_const_token1] = ACTIONS(8666), + [sym_static_modifier] = ACTIONS(8666), + [sym__dim_keyword] = ACTIONS(8666), + [sym__redim_keyword] = ACTIONS(8666), + [aux_sym_get_accessor_token1] = ACTIONS(8666), + [aux_sym_set_accessor_token1] = ACTIONS(8666), + [anon_sym_COMMA] = ACTIONS(11111), + [aux_sym_const_declaration_token1] = ACTIONS(8666), + [anon_sym_LPAREN] = ACTIONS(8668), + [aux_sym_as_type_clause_token2] = ACTIONS(8666), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8666), + [aux_sym_visibility_token1] = ACTIONS(8666), + [aux_sym_visibility_token2] = ACTIONS(8666), + [aux_sym_elseif_fragment_token1] = ACTIONS(8666), + [aux_sym_else_fragment_token1] = ACTIONS(8666), + [aux_sym_select_statement_token1] = ACTIONS(8666), + [aux_sym__for_header_token1] = ACTIONS(8666), + [aux_sym_do_statement_token1] = ACTIONS(8666), + [aux_sym_do_condition_token1] = ACTIONS(8666), + [aux_sym_with_statement_token1] = ACTIONS(8666), + [aux_sym_exit_statement_token1] = ACTIONS(8666), + [sym_end_statement] = ACTIONS(8668), + [aux_sym_on_goto_statement_token1] = ACTIONS(8666), + [aux_sym_on_goto_statement_token2] = ACTIONS(8666), + [aux_sym_on_error_statement_token2] = ACTIONS(8666), + [sym__ambiguous_redim_statement] = ACTIONS(8668), + [aux_sym_erase_statement_token1] = ACTIONS(8666), + [aux_sym_open_statement_token1] = ACTIONS(8666), + [aux_sym_file_mode_token2] = ACTIONS(8666), + [aux_sym_file_access_token2] = ACTIONS(8666), + [aux_sym_file_lock_token2] = ACTIONS(8666), + [aux_sym_print_statement_token1] = ACTIONS(8666), + [anon_sym_PLUS] = ACTIONS(8668), + [anon_sym_DASH] = ACTIONS(8666), + [anon_sym_QMARK] = ACTIONS(8668), + [aux_sym_close_statement_token1] = ACTIONS(8666), + [aux_sym_put_statement_token1] = ACTIONS(8666), + [aux_sym_unlock_statement_token1] = ACTIONS(8666), + [aux_sym_seek_statement_token1] = ACTIONS(8666), + [sym_reset_statement] = ACTIONS(8666), + [aux_sym_raise_event_statement_token1] = ACTIONS(8666), + [sym_stop_statement] = ACTIONS(8666), + [sym_beep_statement] = ACTIONS(8666), + [aux_sym_unload_statement_token1] = ACTIONS(8666), + [aux_sym_def_type_statement_token1] = ACTIONS(8666), + [aux_sym_def_type_statement_token2] = ACTIONS(8666), + [aux_sym_def_type_statement_token3] = ACTIONS(8666), + [aux_sym_def_type_statement_token4] = ACTIONS(8666), + [aux_sym_def_type_statement_token5] = ACTIONS(8666), + [aux_sym_def_type_statement_token6] = ACTIONS(8666), + [aux_sym_def_type_statement_token7] = ACTIONS(8666), + [aux_sym_def_type_statement_token8] = ACTIONS(8666), + [aux_sym_def_type_statement_token9] = ACTIONS(8666), + [aux_sym_def_type_statement_token10] = ACTIONS(8666), + [aux_sym_def_type_statement_token11] = ACTIONS(8666), + [aux_sym_def_type_statement_token12] = ACTIONS(8666), + [aux_sym_def_type_statement_token13] = ACTIONS(8666), + [aux_sym_def_type_statement_token14] = ACTIONS(8666), + [aux_sym_call_statement_token1] = ACTIONS(8666), + [sym__ambiguous_call_statement] = ACTIONS(8666), + [aux_sym_addressof_expression_token1] = ACTIONS(8666), + [aux_sym_type_of_expression_token1] = ACTIONS(8666), + [aux_sym_unary_expression_token1] = ACTIONS(8666), + [sym_string_literal] = ACTIONS(8668), + [sym_number_literal] = ACTIONS(8668), + [aux_sym_boolean_literal_token1] = ACTIONS(8666), + [aux_sym_boolean_literal_token2] = ACTIONS(8666), + [sym_nothing_literal] = ACTIONS(8666), + [sym_null_literal] = ACTIONS(8666), + [sym_empty_literal] = ACTIONS(8666), + [sym_date_literal] = ACTIONS(8668), + [anon_sym_POUND] = ACTIONS(8666), + }, + [STATE(6379)] = { + [sym_identifier] = ACTIONS(9556), + [sym_newline] = ACTIONS(9558), + [anon_sym_COLON] = ACTIONS(9558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9556), + [aux_sym_frm_property_statement_token1] = ACTIONS(9556), + [anon_sym_DOT] = ACTIONS(9556), + [anon_sym_BANG] = ACTIONS(9558), + [aux_sym__attribute_identifier_token1] = ACTIONS(9556), + [aux_sym_option_statement_token3] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9556), + [aux_sym_preprocessor_const_token1] = ACTIONS(9556), + [sym_static_modifier] = ACTIONS(9556), + [sym__dim_keyword] = ACTIONS(9556), + [sym__redim_keyword] = ACTIONS(9556), + [aux_sym_get_accessor_token1] = ACTIONS(9556), + [aux_sym_set_accessor_token1] = ACTIONS(9556), + [aux_sym_const_declaration_token1] = ACTIONS(9556), + [anon_sym_LPAREN] = ACTIONS(9558), + [aux_sym_as_type_clause_token2] = ACTIONS(9556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9556), + [aux_sym_visibility_token1] = ACTIONS(9556), + [aux_sym_visibility_token2] = ACTIONS(9556), + [aux_sym_elseif_fragment_token1] = ACTIONS(9556), + [aux_sym_else_fragment_token1] = ACTIONS(9556), + [aux_sym_select_statement_token1] = ACTIONS(9556), + [aux_sym__for_header_token1] = ACTIONS(9556), + [aux_sym_do_statement_token1] = ACTIONS(9556), + [aux_sym_do_statement_token2] = ACTIONS(9556), + [aux_sym_do_condition_token1] = ACTIONS(9556), + [aux_sym_with_statement_token1] = ACTIONS(9556), + [aux_sym_exit_statement_token1] = ACTIONS(9556), + [sym_end_statement] = ACTIONS(9558), + [aux_sym_on_goto_statement_token1] = ACTIONS(9556), + [aux_sym_on_goto_statement_token2] = ACTIONS(9556), + [aux_sym_on_error_statement_token2] = ACTIONS(9556), + [sym__ambiguous_redim_statement] = ACTIONS(9558), + [aux_sym_erase_statement_token1] = ACTIONS(9556), + [aux_sym_open_statement_token1] = ACTIONS(9556), + [aux_sym_file_mode_token2] = ACTIONS(9556), + [aux_sym_file_access_token2] = ACTIONS(9556), + [aux_sym_file_lock_token2] = ACTIONS(9556), + [aux_sym_print_statement_token1] = ACTIONS(9556), + [anon_sym_PLUS] = ACTIONS(9558), + [anon_sym_DASH] = ACTIONS(9556), + [anon_sym_QMARK] = ACTIONS(9558), + [aux_sym_close_statement_token1] = ACTIONS(9556), + [aux_sym_put_statement_token1] = ACTIONS(9556), + [aux_sym_unlock_statement_token1] = ACTIONS(9556), + [aux_sym_seek_statement_token1] = ACTIONS(9556), + [sym_reset_statement] = ACTIONS(9556), + [aux_sym_raise_event_statement_token1] = ACTIONS(9556), + [sym_stop_statement] = ACTIONS(9556), + [sym_beep_statement] = ACTIONS(9556), + [aux_sym_unload_statement_token1] = ACTIONS(9556), + [aux_sym_def_type_statement_token1] = ACTIONS(9556), + [aux_sym_def_type_statement_token2] = ACTIONS(9556), + [aux_sym_def_type_statement_token3] = ACTIONS(9556), + [aux_sym_def_type_statement_token4] = ACTIONS(9556), + [aux_sym_def_type_statement_token5] = ACTIONS(9556), + [aux_sym_def_type_statement_token6] = ACTIONS(9556), + [aux_sym_def_type_statement_token7] = ACTIONS(9556), + [aux_sym_def_type_statement_token8] = ACTIONS(9556), + [aux_sym_def_type_statement_token9] = ACTIONS(9556), + [aux_sym_def_type_statement_token10] = ACTIONS(9556), + [aux_sym_def_type_statement_token11] = ACTIONS(9556), + [aux_sym_def_type_statement_token12] = ACTIONS(9556), + [aux_sym_def_type_statement_token13] = ACTIONS(9556), + [aux_sym_def_type_statement_token14] = ACTIONS(9556), + [aux_sym_call_statement_token1] = ACTIONS(9556), + [sym__ambiguous_call_statement] = ACTIONS(9556), + [aux_sym_addressof_expression_token1] = ACTIONS(9556), + [aux_sym_type_of_expression_token1] = ACTIONS(9556), + [aux_sym_unary_expression_token1] = ACTIONS(9556), + [sym_string_literal] = ACTIONS(9558), + [sym_number_literal] = ACTIONS(9558), + [aux_sym_boolean_literal_token1] = ACTIONS(9556), + [aux_sym_boolean_literal_token2] = ACTIONS(9556), + [sym_nothing_literal] = ACTIONS(9556), + [sym_null_literal] = ACTIONS(9556), + [sym_empty_literal] = ACTIONS(9556), + [sym_date_literal] = ACTIONS(9558), + [anon_sym_POUND] = ACTIONS(9556), + }, + [STATE(6380)] = { + [sym_identifier] = ACTIONS(9560), + [sym_newline] = ACTIONS(9562), + [anon_sym_COLON] = ACTIONS(9562), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9560), + [aux_sym_frm_property_statement_token1] = ACTIONS(9560), + [anon_sym_DOT] = ACTIONS(9560), + [anon_sym_BANG] = ACTIONS(9562), + [aux_sym__attribute_identifier_token1] = ACTIONS(9560), + [aux_sym_option_statement_token3] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9560), + [aux_sym_preprocessor_const_token1] = ACTIONS(9560), + [sym_static_modifier] = ACTIONS(9560), + [sym__dim_keyword] = ACTIONS(9560), + [sym__redim_keyword] = ACTIONS(9560), + [aux_sym_get_accessor_token1] = ACTIONS(9560), + [aux_sym_set_accessor_token1] = ACTIONS(9560), + [aux_sym_const_declaration_token1] = ACTIONS(9560), + [anon_sym_LPAREN] = ACTIONS(9562), + [aux_sym_as_type_clause_token2] = ACTIONS(9560), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9560), + [aux_sym_visibility_token1] = ACTIONS(9560), + [aux_sym_visibility_token2] = ACTIONS(9560), + [aux_sym_elseif_fragment_token1] = ACTIONS(9560), + [aux_sym_else_fragment_token1] = ACTIONS(9560), + [aux_sym_select_statement_token1] = ACTIONS(9560), + [aux_sym__for_header_token1] = ACTIONS(9560), + [aux_sym_do_statement_token1] = ACTIONS(9560), + [aux_sym_do_statement_token2] = ACTIONS(9560), + [aux_sym_do_condition_token1] = ACTIONS(9560), + [aux_sym_with_statement_token1] = ACTIONS(9560), + [aux_sym_exit_statement_token1] = ACTIONS(9560), + [sym_end_statement] = ACTIONS(9562), + [aux_sym_on_goto_statement_token1] = ACTIONS(9560), + [aux_sym_on_goto_statement_token2] = ACTIONS(9560), + [aux_sym_on_error_statement_token2] = ACTIONS(9560), + [sym__ambiguous_redim_statement] = ACTIONS(9562), + [aux_sym_erase_statement_token1] = ACTIONS(9560), + [aux_sym_open_statement_token1] = ACTIONS(9560), + [aux_sym_file_mode_token2] = ACTIONS(9560), + [aux_sym_file_access_token2] = ACTIONS(9560), + [aux_sym_file_lock_token2] = ACTIONS(9560), + [aux_sym_print_statement_token1] = ACTIONS(9560), + [anon_sym_PLUS] = ACTIONS(9562), + [anon_sym_DASH] = ACTIONS(9560), + [anon_sym_QMARK] = ACTIONS(9562), + [aux_sym_close_statement_token1] = ACTIONS(9560), + [aux_sym_put_statement_token1] = ACTIONS(9560), + [aux_sym_unlock_statement_token1] = ACTIONS(9560), + [aux_sym_seek_statement_token1] = ACTIONS(9560), + [sym_reset_statement] = ACTIONS(9560), + [aux_sym_raise_event_statement_token1] = ACTIONS(9560), + [sym_stop_statement] = ACTIONS(9560), + [sym_beep_statement] = ACTIONS(9560), + [aux_sym_unload_statement_token1] = ACTIONS(9560), + [aux_sym_def_type_statement_token1] = ACTIONS(9560), + [aux_sym_def_type_statement_token2] = ACTIONS(9560), + [aux_sym_def_type_statement_token3] = ACTIONS(9560), + [aux_sym_def_type_statement_token4] = ACTIONS(9560), + [aux_sym_def_type_statement_token5] = ACTIONS(9560), + [aux_sym_def_type_statement_token6] = ACTIONS(9560), + [aux_sym_def_type_statement_token7] = ACTIONS(9560), + [aux_sym_def_type_statement_token8] = ACTIONS(9560), + [aux_sym_def_type_statement_token9] = ACTIONS(9560), + [aux_sym_def_type_statement_token10] = ACTIONS(9560), + [aux_sym_def_type_statement_token11] = ACTIONS(9560), + [aux_sym_def_type_statement_token12] = ACTIONS(9560), + [aux_sym_def_type_statement_token13] = ACTIONS(9560), + [aux_sym_def_type_statement_token14] = ACTIONS(9560), + [aux_sym_call_statement_token1] = ACTIONS(9560), + [sym__ambiguous_call_statement] = ACTIONS(9560), + [aux_sym_addressof_expression_token1] = ACTIONS(9560), + [aux_sym_type_of_expression_token1] = ACTIONS(9560), + [aux_sym_unary_expression_token1] = ACTIONS(9560), + [sym_string_literal] = ACTIONS(9562), + [sym_number_literal] = ACTIONS(9562), + [aux_sym_boolean_literal_token1] = ACTIONS(9560), + [aux_sym_boolean_literal_token2] = ACTIONS(9560), + [sym_nothing_literal] = ACTIONS(9560), + [sym_null_literal] = ACTIONS(9560), + [sym_empty_literal] = ACTIONS(9560), + [sym_date_literal] = ACTIONS(9562), + [anon_sym_POUND] = ACTIONS(9560), + }, + [STATE(6381)] = { + [sym_identifier] = ACTIONS(9666), + [sym_newline] = ACTIONS(9668), + [anon_sym_COLON] = ACTIONS(9668), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9666), + [aux_sym_frm_property_statement_token1] = ACTIONS(9666), + [anon_sym_DOT] = ACTIONS(9666), + [anon_sym_BANG] = ACTIONS(9668), + [aux_sym__attribute_identifier_token1] = ACTIONS(9666), + [aux_sym_option_statement_token3] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9666), + [aux_sym_preprocessor_const_token1] = ACTIONS(9666), + [sym_static_modifier] = ACTIONS(9666), + [sym__dim_keyword] = ACTIONS(9666), + [sym__redim_keyword] = ACTIONS(9666), + [aux_sym_get_accessor_token1] = ACTIONS(9666), + [aux_sym_set_accessor_token1] = ACTIONS(9666), + [aux_sym_const_declaration_token1] = ACTIONS(9666), + [anon_sym_LPAREN] = ACTIONS(9668), + [aux_sym_as_type_clause_token2] = ACTIONS(9666), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9666), + [aux_sym_visibility_token1] = ACTIONS(9666), + [aux_sym_visibility_token2] = ACTIONS(9666), + [aux_sym_elseif_fragment_token1] = ACTIONS(9666), + [aux_sym_else_fragment_token1] = ACTIONS(9666), + [aux_sym_select_statement_token1] = ACTIONS(9666), + [aux_sym__for_header_token1] = ACTIONS(9666), + [aux_sym_do_statement_token1] = ACTIONS(9666), + [aux_sym_do_condition_token1] = ACTIONS(9666), + [aux_sym_with_statement_token1] = ACTIONS(9666), + [aux_sym_exit_statement_token1] = ACTIONS(9666), + [sym_end_statement] = ACTIONS(9668), + [aux_sym_on_goto_statement_token1] = ACTIONS(9666), + [aux_sym_on_goto_statement_token2] = ACTIONS(9666), + [aux_sym_on_error_statement_token2] = ACTIONS(9666), + [sym__ambiguous_redim_statement] = ACTIONS(9668), + [aux_sym_erase_statement_token1] = ACTIONS(9666), + [aux_sym_open_statement_token1] = ACTIONS(9666), + [aux_sym_file_mode_token2] = ACTIONS(9666), + [aux_sym_file_access_token2] = ACTIONS(9666), + [aux_sym_file_lock_token2] = ACTIONS(9666), + [aux_sym_print_statement_token1] = ACTIONS(9666), + [anon_sym_PLUS] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(9666), + [anon_sym_QMARK] = ACTIONS(9668), + [aux_sym_close_statement_token1] = ACTIONS(9666), + [aux_sym_put_statement_token1] = ACTIONS(9666), + [aux_sym_unlock_statement_token1] = ACTIONS(9666), + [aux_sym_seek_statement_token1] = ACTIONS(9666), + [sym_reset_statement] = ACTIONS(9666), + [aux_sym_raise_event_statement_token1] = ACTIONS(9666), + [sym_stop_statement] = ACTIONS(9666), + [sym_beep_statement] = ACTIONS(9666), + [aux_sym_unload_statement_token1] = ACTIONS(9666), + [aux_sym_def_type_statement_token1] = ACTIONS(9666), + [aux_sym_def_type_statement_token2] = ACTIONS(9666), + [aux_sym_def_type_statement_token3] = ACTIONS(9666), + [aux_sym_def_type_statement_token4] = ACTIONS(9666), + [aux_sym_def_type_statement_token5] = ACTIONS(9666), + [aux_sym_def_type_statement_token6] = ACTIONS(9666), + [aux_sym_def_type_statement_token7] = ACTIONS(9666), + [aux_sym_def_type_statement_token8] = ACTIONS(9666), + [aux_sym_def_type_statement_token9] = ACTIONS(9666), + [aux_sym_def_type_statement_token10] = ACTIONS(9666), + [aux_sym_def_type_statement_token11] = ACTIONS(9666), + [aux_sym_def_type_statement_token12] = ACTIONS(9666), + [aux_sym_def_type_statement_token13] = ACTIONS(9666), + [aux_sym_def_type_statement_token14] = ACTIONS(9666), + [aux_sym_call_statement_token1] = ACTIONS(9666), + [sym__ambiguous_call_statement] = ACTIONS(9666), + [aux_sym_addressof_expression_token1] = ACTIONS(9666), + [aux_sym_type_of_expression_token1] = ACTIONS(9666), + [aux_sym_unary_expression_token1] = ACTIONS(9666), + [sym_string_literal] = ACTIONS(9668), + [sym_number_literal] = ACTIONS(9668), + [aux_sym_boolean_literal_token1] = ACTIONS(9666), + [aux_sym_boolean_literal_token2] = ACTIONS(9666), + [sym_nothing_literal] = ACTIONS(9666), + [sym_null_literal] = ACTIONS(9666), + [sym_empty_literal] = ACTIONS(9666), + [sym_date_literal] = ACTIONS(9668), + [anon_sym_POUND] = ACTIONS(9666), + }, + [STATE(6382)] = { + [sym_identifier] = ACTIONS(9184), + [sym_newline] = ACTIONS(9186), + [anon_sym_COLON] = ACTIONS(9186), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9184), + [aux_sym_frm_property_statement_token1] = ACTIONS(9184), + [anon_sym_DOT] = ACTIONS(9184), + [anon_sym_BANG] = ACTIONS(9186), + [aux_sym__attribute_identifier_token1] = ACTIONS(9184), + [aux_sym_option_statement_token3] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9184), + [aux_sym_preprocessor_const_token1] = ACTIONS(9184), + [sym_static_modifier] = ACTIONS(9184), + [sym__dim_keyword] = ACTIONS(9184), + [sym__redim_keyword] = ACTIONS(9184), + [aux_sym_get_accessor_token1] = ACTIONS(9184), + [aux_sym_set_accessor_token1] = ACTIONS(9184), + [aux_sym_const_declaration_token1] = ACTIONS(9184), + [anon_sym_LPAREN] = ACTIONS(9186), + [aux_sym_as_type_clause_token2] = ACTIONS(9184), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9184), + [aux_sym_visibility_token1] = ACTIONS(9184), + [aux_sym_visibility_token2] = ACTIONS(9184), + [aux_sym_elseif_fragment_token1] = ACTIONS(9184), + [aux_sym_else_fragment_token1] = ACTIONS(9184), + [aux_sym_select_statement_token1] = ACTIONS(9184), + [aux_sym__for_header_token1] = ACTIONS(9184), + [aux_sym_do_statement_token1] = ACTIONS(9184), + [aux_sym_do_condition_token1] = ACTIONS(9184), + [aux_sym_with_statement_token1] = ACTIONS(9184), + [aux_sym_exit_statement_token1] = ACTIONS(9184), + [sym_end_statement] = ACTIONS(9186), + [aux_sym_on_goto_statement_token1] = ACTIONS(9184), + [aux_sym_on_goto_statement_token2] = ACTIONS(9184), + [aux_sym_on_error_statement_token2] = ACTIONS(9184), + [sym__ambiguous_redim_statement] = ACTIONS(9186), + [aux_sym_erase_statement_token1] = ACTIONS(9184), + [aux_sym_open_statement_token1] = ACTIONS(9184), + [aux_sym_file_mode_token2] = ACTIONS(9184), + [aux_sym_file_access_token2] = ACTIONS(9184), + [aux_sym_file_lock_token2] = ACTIONS(9184), + [aux_sym_print_statement_token1] = ACTIONS(9184), + [anon_sym_PLUS] = ACTIONS(9186), + [anon_sym_DASH] = ACTIONS(9184), + [anon_sym_QMARK] = ACTIONS(9186), + [aux_sym_close_statement_token1] = ACTIONS(9184), + [aux_sym_put_statement_token1] = ACTIONS(9184), + [aux_sym_unlock_statement_token1] = ACTIONS(9184), + [aux_sym_seek_statement_token1] = ACTIONS(9184), + [sym_reset_statement] = ACTIONS(9184), + [aux_sym_raise_event_statement_token1] = ACTIONS(9184), + [sym_stop_statement] = ACTIONS(9184), + [sym_beep_statement] = ACTIONS(9184), + [aux_sym_unload_statement_token1] = ACTIONS(9184), + [aux_sym_def_type_statement_token1] = ACTIONS(9184), + [aux_sym_def_type_statement_token2] = ACTIONS(9184), + [aux_sym_def_type_statement_token3] = ACTIONS(9184), + [aux_sym_def_type_statement_token4] = ACTIONS(9184), + [aux_sym_def_type_statement_token5] = ACTIONS(9184), + [aux_sym_def_type_statement_token6] = ACTIONS(9184), + [aux_sym_def_type_statement_token7] = ACTIONS(9184), + [aux_sym_def_type_statement_token8] = ACTIONS(9184), + [aux_sym_def_type_statement_token9] = ACTIONS(9184), + [aux_sym_def_type_statement_token10] = ACTIONS(9184), + [aux_sym_def_type_statement_token11] = ACTIONS(9184), + [aux_sym_def_type_statement_token12] = ACTIONS(9184), + [aux_sym_def_type_statement_token13] = ACTIONS(9184), + [aux_sym_def_type_statement_token14] = ACTIONS(9184), + [aux_sym_call_statement_token1] = ACTIONS(9184), + [sym__ambiguous_call_statement] = ACTIONS(9184), + [aux_sym_addressof_expression_token1] = ACTIONS(9184), + [aux_sym_type_of_expression_token1] = ACTIONS(9184), + [aux_sym_unary_expression_token1] = ACTIONS(9184), + [sym_string_literal] = ACTIONS(9186), + [sym_number_literal] = ACTIONS(9186), + [aux_sym_boolean_literal_token1] = ACTIONS(9184), + [aux_sym_boolean_literal_token2] = ACTIONS(9184), + [sym_nothing_literal] = ACTIONS(9184), + [sym_null_literal] = ACTIONS(9184), + [sym_empty_literal] = ACTIONS(9184), + [sym_date_literal] = ACTIONS(9186), + [anon_sym_POUND] = ACTIONS(9184), + }, + [STATE(6383)] = { + [sym_identifier] = ACTIONS(9564), + [sym_newline] = ACTIONS(9566), + [anon_sym_COLON] = ACTIONS(9566), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9564), + [aux_sym_frm_property_statement_token1] = ACTIONS(9564), + [anon_sym_DOT] = ACTIONS(9564), + [anon_sym_BANG] = ACTIONS(9566), + [aux_sym__attribute_identifier_token1] = ACTIONS(9564), + [aux_sym_option_statement_token3] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9564), + [aux_sym_preprocessor_const_token1] = ACTIONS(9564), + [sym_static_modifier] = ACTIONS(9564), + [sym__dim_keyword] = ACTIONS(9564), + [sym__redim_keyword] = ACTIONS(9564), + [aux_sym_get_accessor_token1] = ACTIONS(9564), + [aux_sym_set_accessor_token1] = ACTIONS(9564), + [aux_sym_const_declaration_token1] = ACTIONS(9564), + [anon_sym_LPAREN] = ACTIONS(9566), + [aux_sym_as_type_clause_token2] = ACTIONS(9564), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9564), + [aux_sym_visibility_token1] = ACTIONS(9564), + [aux_sym_visibility_token2] = ACTIONS(9564), + [aux_sym_elseif_fragment_token1] = ACTIONS(9564), + [aux_sym_else_fragment_token1] = ACTIONS(9564), + [aux_sym_select_statement_token1] = ACTIONS(9564), + [aux_sym__for_header_token1] = ACTIONS(9564), + [aux_sym_do_statement_token1] = ACTIONS(9564), + [aux_sym_do_statement_token2] = ACTIONS(9564), + [aux_sym_do_condition_token1] = ACTIONS(9564), + [aux_sym_with_statement_token1] = ACTIONS(9564), + [aux_sym_exit_statement_token1] = ACTIONS(9564), + [sym_end_statement] = ACTIONS(9566), + [aux_sym_on_goto_statement_token1] = ACTIONS(9564), + [aux_sym_on_goto_statement_token2] = ACTIONS(9564), + [aux_sym_on_error_statement_token2] = ACTIONS(9564), + [sym__ambiguous_redim_statement] = ACTIONS(9566), + [aux_sym_erase_statement_token1] = ACTIONS(9564), + [aux_sym_open_statement_token1] = ACTIONS(9564), + [aux_sym_file_mode_token2] = ACTIONS(9564), + [aux_sym_file_access_token2] = ACTIONS(9564), + [aux_sym_file_lock_token2] = ACTIONS(9564), + [aux_sym_print_statement_token1] = ACTIONS(9564), + [anon_sym_PLUS] = ACTIONS(9566), + [anon_sym_DASH] = ACTIONS(9564), + [anon_sym_QMARK] = ACTIONS(9566), + [aux_sym_close_statement_token1] = ACTIONS(9564), + [aux_sym_put_statement_token1] = ACTIONS(9564), + [aux_sym_unlock_statement_token1] = ACTIONS(9564), + [aux_sym_seek_statement_token1] = ACTIONS(9564), + [sym_reset_statement] = ACTIONS(9564), + [aux_sym_raise_event_statement_token1] = ACTIONS(9564), + [sym_stop_statement] = ACTIONS(9564), + [sym_beep_statement] = ACTIONS(9564), + [aux_sym_unload_statement_token1] = ACTIONS(9564), + [aux_sym_def_type_statement_token1] = ACTIONS(9564), + [aux_sym_def_type_statement_token2] = ACTIONS(9564), + [aux_sym_def_type_statement_token3] = ACTIONS(9564), + [aux_sym_def_type_statement_token4] = ACTIONS(9564), + [aux_sym_def_type_statement_token5] = ACTIONS(9564), + [aux_sym_def_type_statement_token6] = ACTIONS(9564), + [aux_sym_def_type_statement_token7] = ACTIONS(9564), + [aux_sym_def_type_statement_token8] = ACTIONS(9564), + [aux_sym_def_type_statement_token9] = ACTIONS(9564), + [aux_sym_def_type_statement_token10] = ACTIONS(9564), + [aux_sym_def_type_statement_token11] = ACTIONS(9564), + [aux_sym_def_type_statement_token12] = ACTIONS(9564), + [aux_sym_def_type_statement_token13] = ACTIONS(9564), + [aux_sym_def_type_statement_token14] = ACTIONS(9564), + [aux_sym_call_statement_token1] = ACTIONS(9564), + [sym__ambiguous_call_statement] = ACTIONS(9564), + [aux_sym_addressof_expression_token1] = ACTIONS(9564), + [aux_sym_type_of_expression_token1] = ACTIONS(9564), + [aux_sym_unary_expression_token1] = ACTIONS(9564), + [sym_string_literal] = ACTIONS(9566), + [sym_number_literal] = ACTIONS(9566), + [aux_sym_boolean_literal_token1] = ACTIONS(9564), + [aux_sym_boolean_literal_token2] = ACTIONS(9564), + [sym_nothing_literal] = ACTIONS(9564), + [sym_null_literal] = ACTIONS(9564), + [sym_empty_literal] = ACTIONS(9564), + [sym_date_literal] = ACTIONS(9566), + [anon_sym_POUND] = ACTIONS(9564), + }, + [STATE(6384)] = { + [sym_identifier] = ACTIONS(9670), + [sym_newline] = ACTIONS(9672), + [anon_sym_COLON] = ACTIONS(9672), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9670), + [aux_sym_frm_property_statement_token1] = ACTIONS(9670), + [anon_sym_DOT] = ACTIONS(9670), + [anon_sym_BANG] = ACTIONS(9672), + [aux_sym__attribute_identifier_token1] = ACTIONS(9670), + [aux_sym_option_statement_token3] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9670), + [aux_sym_preprocessor_const_token1] = ACTIONS(9670), + [sym_static_modifier] = ACTIONS(9670), + [sym__dim_keyword] = ACTIONS(9670), + [sym__redim_keyword] = ACTIONS(9670), + [aux_sym_get_accessor_token1] = ACTIONS(9670), + [aux_sym_set_accessor_token1] = ACTIONS(9670), + [aux_sym_const_declaration_token1] = ACTIONS(9670), + [anon_sym_LPAREN] = ACTIONS(9672), + [aux_sym_as_type_clause_token2] = ACTIONS(9670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9670), + [aux_sym_visibility_token1] = ACTIONS(9670), + [aux_sym_visibility_token2] = ACTIONS(9670), + [aux_sym_elseif_fragment_token1] = ACTIONS(9670), + [aux_sym_else_fragment_token1] = ACTIONS(9670), + [aux_sym_select_statement_token1] = ACTIONS(9670), + [aux_sym__for_header_token1] = ACTIONS(9670), + [aux_sym_do_statement_token1] = ACTIONS(9670), + [aux_sym_do_condition_token1] = ACTIONS(9670), + [aux_sym_with_statement_token1] = ACTIONS(9670), + [aux_sym_exit_statement_token1] = ACTIONS(9670), + [sym_end_statement] = ACTIONS(9672), + [aux_sym_on_goto_statement_token1] = ACTIONS(9670), + [aux_sym_on_goto_statement_token2] = ACTIONS(9670), + [aux_sym_on_error_statement_token2] = ACTIONS(9670), + [sym__ambiguous_redim_statement] = ACTIONS(9672), + [aux_sym_erase_statement_token1] = ACTIONS(9670), + [aux_sym_open_statement_token1] = ACTIONS(9670), + [aux_sym_file_mode_token2] = ACTIONS(9670), + [aux_sym_file_access_token2] = ACTIONS(9670), + [aux_sym_file_lock_token2] = ACTIONS(9670), + [aux_sym_print_statement_token1] = ACTIONS(9670), + [anon_sym_PLUS] = ACTIONS(9672), + [anon_sym_DASH] = ACTIONS(9670), + [anon_sym_QMARK] = ACTIONS(9672), + [aux_sym_close_statement_token1] = ACTIONS(9670), + [aux_sym_put_statement_token1] = ACTIONS(9670), + [aux_sym_unlock_statement_token1] = ACTIONS(9670), + [aux_sym_seek_statement_token1] = ACTIONS(9670), + [sym_reset_statement] = ACTIONS(9670), + [aux_sym_raise_event_statement_token1] = ACTIONS(9670), + [sym_stop_statement] = ACTIONS(9670), + [sym_beep_statement] = ACTIONS(9670), + [aux_sym_unload_statement_token1] = ACTIONS(9670), + [aux_sym_def_type_statement_token1] = ACTIONS(9670), + [aux_sym_def_type_statement_token2] = ACTIONS(9670), + [aux_sym_def_type_statement_token3] = ACTIONS(9670), + [aux_sym_def_type_statement_token4] = ACTIONS(9670), + [aux_sym_def_type_statement_token5] = ACTIONS(9670), + [aux_sym_def_type_statement_token6] = ACTIONS(9670), + [aux_sym_def_type_statement_token7] = ACTIONS(9670), + [aux_sym_def_type_statement_token8] = ACTIONS(9670), + [aux_sym_def_type_statement_token9] = ACTIONS(9670), + [aux_sym_def_type_statement_token10] = ACTIONS(9670), + [aux_sym_def_type_statement_token11] = ACTIONS(9670), + [aux_sym_def_type_statement_token12] = ACTIONS(9670), + [aux_sym_def_type_statement_token13] = ACTIONS(9670), + [aux_sym_def_type_statement_token14] = ACTIONS(9670), + [aux_sym_call_statement_token1] = ACTIONS(9670), + [sym__ambiguous_call_statement] = ACTIONS(9670), + [aux_sym_addressof_expression_token1] = ACTIONS(9670), + [aux_sym_type_of_expression_token1] = ACTIONS(9670), + [aux_sym_unary_expression_token1] = ACTIONS(9670), + [sym_string_literal] = ACTIONS(9672), + [sym_number_literal] = ACTIONS(9672), + [aux_sym_boolean_literal_token1] = ACTIONS(9670), + [aux_sym_boolean_literal_token2] = ACTIONS(9670), + [sym_nothing_literal] = ACTIONS(9670), + [sym_null_literal] = ACTIONS(9670), + [sym_empty_literal] = ACTIONS(9670), + [sym_date_literal] = ACTIONS(9672), + [anon_sym_POUND] = ACTIONS(9670), + }, + [STATE(6385)] = { + [sym_identifier] = ACTIONS(9142), + [sym_newline] = ACTIONS(9144), + [anon_sym_COLON] = ACTIONS(9144), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9142), + [aux_sym_frm_property_statement_token1] = ACTIONS(9142), + [anon_sym_DOT] = ACTIONS(9142), + [anon_sym_BANG] = ACTIONS(9144), + [aux_sym__attribute_identifier_token1] = ACTIONS(9142), + [aux_sym_option_statement_token3] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9142), + [aux_sym_preprocessor_const_token1] = ACTIONS(9142), + [sym_static_modifier] = ACTIONS(9142), + [sym__dim_keyword] = ACTIONS(9142), + [sym__redim_keyword] = ACTIONS(9142), + [aux_sym_get_accessor_token1] = ACTIONS(9142), + [aux_sym_set_accessor_token1] = ACTIONS(9142), + [aux_sym_const_declaration_token1] = ACTIONS(9142), + [anon_sym_LPAREN] = ACTIONS(9144), + [aux_sym_as_type_clause_token2] = ACTIONS(9142), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9142), + [aux_sym_visibility_token1] = ACTIONS(9142), + [aux_sym_visibility_token2] = ACTIONS(9142), + [aux_sym_elseif_fragment_token1] = ACTIONS(9142), + [aux_sym_else_fragment_token1] = ACTIONS(9142), + [aux_sym_select_statement_token1] = ACTIONS(9142), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9142), + [aux_sym__for_header_token1] = ACTIONS(9142), + [aux_sym_do_statement_token1] = ACTIONS(9142), + [aux_sym_do_condition_token1] = ACTIONS(9142), + [aux_sym_with_statement_token1] = ACTIONS(9142), + [aux_sym_exit_statement_token1] = ACTIONS(9142), + [sym_end_statement] = ACTIONS(9144), + [aux_sym_on_goto_statement_token1] = ACTIONS(9142), + [aux_sym_on_goto_statement_token2] = ACTIONS(9142), + [aux_sym_on_error_statement_token2] = ACTIONS(9142), + [sym__ambiguous_redim_statement] = ACTIONS(9144), + [aux_sym_erase_statement_token1] = ACTIONS(9142), + [aux_sym_open_statement_token1] = ACTIONS(9142), + [aux_sym_file_mode_token2] = ACTIONS(9142), + [aux_sym_file_access_token2] = ACTIONS(9142), + [aux_sym_file_lock_token2] = ACTIONS(9142), + [aux_sym_print_statement_token1] = ACTIONS(9142), + [anon_sym_PLUS] = ACTIONS(9144), + [anon_sym_DASH] = ACTIONS(9142), + [anon_sym_QMARK] = ACTIONS(9144), + [aux_sym_close_statement_token1] = ACTIONS(9142), + [aux_sym_put_statement_token1] = ACTIONS(9142), + [aux_sym_unlock_statement_token1] = ACTIONS(9142), + [aux_sym_seek_statement_token1] = ACTIONS(9142), + [sym_reset_statement] = ACTIONS(9142), + [aux_sym_raise_event_statement_token1] = ACTIONS(9142), + [sym_stop_statement] = ACTIONS(9142), + [sym_beep_statement] = ACTIONS(9142), + [aux_sym_unload_statement_token1] = ACTIONS(9142), + [aux_sym_def_type_statement_token1] = ACTIONS(9142), + [aux_sym_def_type_statement_token2] = ACTIONS(9142), + [aux_sym_def_type_statement_token3] = ACTIONS(9142), + [aux_sym_def_type_statement_token4] = ACTIONS(9142), + [aux_sym_def_type_statement_token5] = ACTIONS(9142), + [aux_sym_def_type_statement_token6] = ACTIONS(9142), + [aux_sym_def_type_statement_token7] = ACTIONS(9142), + [aux_sym_def_type_statement_token8] = ACTIONS(9142), + [aux_sym_def_type_statement_token9] = ACTIONS(9142), + [aux_sym_def_type_statement_token10] = ACTIONS(9142), + [aux_sym_def_type_statement_token11] = ACTIONS(9142), + [aux_sym_def_type_statement_token12] = ACTIONS(9142), + [aux_sym_def_type_statement_token13] = ACTIONS(9142), + [aux_sym_def_type_statement_token14] = ACTIONS(9142), + [aux_sym_call_statement_token1] = ACTIONS(9142), + [sym__ambiguous_call_statement] = ACTIONS(9142), + [aux_sym_addressof_expression_token1] = ACTIONS(9142), + [aux_sym_type_of_expression_token1] = ACTIONS(9142), + [aux_sym_unary_expression_token1] = ACTIONS(9142), + [sym_string_literal] = ACTIONS(9144), + [sym_number_literal] = ACTIONS(9144), + [aux_sym_boolean_literal_token1] = ACTIONS(9142), + [aux_sym_boolean_literal_token2] = ACTIONS(9142), + [sym_nothing_literal] = ACTIONS(9142), + [sym_null_literal] = ACTIONS(9142), + [sym_empty_literal] = ACTIONS(9142), + [sym_date_literal] = ACTIONS(9144), + [anon_sym_POUND] = ACTIONS(9142), + }, + [STATE(6386)] = { + [sym_identifier] = ACTIONS(9677), + [sym_newline] = ACTIONS(9679), + [anon_sym_COLON] = ACTIONS(9679), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9677), + [aux_sym_frm_property_statement_token1] = ACTIONS(9677), + [anon_sym_DOT] = ACTIONS(9677), + [anon_sym_BANG] = ACTIONS(9679), + [aux_sym__attribute_identifier_token1] = ACTIONS(9677), + [aux_sym_option_statement_token3] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9677), + [aux_sym_preprocessor_const_token1] = ACTIONS(9677), + [sym_static_modifier] = ACTIONS(9677), + [sym__dim_keyword] = ACTIONS(9677), + [sym__redim_keyword] = ACTIONS(9677), + [aux_sym_get_accessor_token1] = ACTIONS(9677), + [aux_sym_set_accessor_token1] = ACTIONS(9677), + [aux_sym_const_declaration_token1] = ACTIONS(9677), + [anon_sym_LPAREN] = ACTIONS(9679), + [aux_sym_as_type_clause_token2] = ACTIONS(9677), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9677), + [aux_sym_visibility_token1] = ACTIONS(9677), + [aux_sym_visibility_token2] = ACTIONS(9677), + [aux_sym_elseif_fragment_token1] = ACTIONS(9677), + [aux_sym_else_fragment_token1] = ACTIONS(9677), + [aux_sym_select_statement_token1] = ACTIONS(9677), + [aux_sym__for_header_token1] = ACTIONS(9677), + [aux_sym_do_statement_token1] = ACTIONS(9677), + [aux_sym_do_condition_token1] = ACTIONS(9677), + [aux_sym_with_statement_token1] = ACTIONS(9677), + [aux_sym_exit_statement_token1] = ACTIONS(9677), + [sym_end_statement] = ACTIONS(9679), + [aux_sym_on_goto_statement_token1] = ACTIONS(9677), + [aux_sym_on_goto_statement_token2] = ACTIONS(9677), + [aux_sym_on_error_statement_token2] = ACTIONS(9677), + [sym__ambiguous_redim_statement] = ACTIONS(9679), + [aux_sym_erase_statement_token1] = ACTIONS(9677), + [aux_sym_open_statement_token1] = ACTIONS(9677), + [aux_sym_file_mode_token2] = ACTIONS(9677), + [aux_sym_file_access_token2] = ACTIONS(9677), + [aux_sym_file_lock_token2] = ACTIONS(9677), + [aux_sym_print_statement_token1] = ACTIONS(9677), + [anon_sym_PLUS] = ACTIONS(9679), + [anon_sym_DASH] = ACTIONS(9677), + [anon_sym_QMARK] = ACTIONS(9679), + [aux_sym_close_statement_token1] = ACTIONS(9677), + [aux_sym_put_statement_token1] = ACTIONS(9677), + [aux_sym_unlock_statement_token1] = ACTIONS(9677), + [aux_sym_seek_statement_token1] = ACTIONS(9677), + [sym_reset_statement] = ACTIONS(9677), + [aux_sym_raise_event_statement_token1] = ACTIONS(9677), + [sym_stop_statement] = ACTIONS(9677), + [sym_beep_statement] = ACTIONS(9677), + [aux_sym_unload_statement_token1] = ACTIONS(9677), + [aux_sym_def_type_statement_token1] = ACTIONS(9677), + [aux_sym_def_type_statement_token2] = ACTIONS(9677), + [aux_sym_def_type_statement_token3] = ACTIONS(9677), + [aux_sym_def_type_statement_token4] = ACTIONS(9677), + [aux_sym_def_type_statement_token5] = ACTIONS(9677), + [aux_sym_def_type_statement_token6] = ACTIONS(9677), + [aux_sym_def_type_statement_token7] = ACTIONS(9677), + [aux_sym_def_type_statement_token8] = ACTIONS(9677), + [aux_sym_def_type_statement_token9] = ACTIONS(9677), + [aux_sym_def_type_statement_token10] = ACTIONS(9677), + [aux_sym_def_type_statement_token11] = ACTIONS(9677), + [aux_sym_def_type_statement_token12] = ACTIONS(9677), + [aux_sym_def_type_statement_token13] = ACTIONS(9677), + [aux_sym_def_type_statement_token14] = ACTIONS(9677), + [aux_sym_call_statement_token1] = ACTIONS(9677), + [sym__ambiguous_call_statement] = ACTIONS(9677), + [aux_sym_addressof_expression_token1] = ACTIONS(9677), + [aux_sym_type_of_expression_token1] = ACTIONS(9677), + [aux_sym_unary_expression_token1] = ACTIONS(9677), + [sym_string_literal] = ACTIONS(9679), + [sym_number_literal] = ACTIONS(9679), + [aux_sym_boolean_literal_token1] = ACTIONS(9677), + [aux_sym_boolean_literal_token2] = ACTIONS(9677), + [sym_nothing_literal] = ACTIONS(9677), + [sym_null_literal] = ACTIONS(9677), + [sym_empty_literal] = ACTIONS(9677), + [sym_date_literal] = ACTIONS(9679), + [anon_sym_POUND] = ACTIONS(9677), + }, + [STATE(6387)] = { + [sym_identifier] = ACTIONS(9568), + [sym_newline] = ACTIONS(9570), + [anon_sym_COLON] = ACTIONS(9570), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9568), + [aux_sym_frm_property_statement_token1] = ACTIONS(9568), + [anon_sym_DOT] = ACTIONS(9568), + [anon_sym_BANG] = ACTIONS(9570), + [aux_sym__attribute_identifier_token1] = ACTIONS(9568), + [aux_sym_option_statement_token3] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9568), + [aux_sym_preprocessor_const_token1] = ACTIONS(9568), + [sym_static_modifier] = ACTIONS(9568), + [sym__dim_keyword] = ACTIONS(9568), + [sym__redim_keyword] = ACTIONS(9568), + [aux_sym_get_accessor_token1] = ACTIONS(9568), + [aux_sym_set_accessor_token1] = ACTIONS(9568), + [aux_sym_const_declaration_token1] = ACTIONS(9568), + [anon_sym_LPAREN] = ACTIONS(9570), + [aux_sym_as_type_clause_token2] = ACTIONS(9568), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9568), + [aux_sym_visibility_token1] = ACTIONS(9568), + [aux_sym_visibility_token2] = ACTIONS(9568), + [aux_sym_elseif_fragment_token1] = ACTIONS(9568), + [aux_sym_else_fragment_token1] = ACTIONS(9568), + [aux_sym_select_statement_token1] = ACTIONS(9568), + [aux_sym__for_header_token1] = ACTIONS(9568), + [aux_sym_do_statement_token1] = ACTIONS(9568), + [aux_sym_do_statement_token2] = ACTIONS(9568), + [aux_sym_do_condition_token1] = ACTIONS(9568), + [aux_sym_with_statement_token1] = ACTIONS(9568), + [aux_sym_exit_statement_token1] = ACTIONS(9568), + [sym_end_statement] = ACTIONS(9570), + [aux_sym_on_goto_statement_token1] = ACTIONS(9568), + [aux_sym_on_goto_statement_token2] = ACTIONS(9568), + [aux_sym_on_error_statement_token2] = ACTIONS(9568), + [sym__ambiguous_redim_statement] = ACTIONS(9570), + [aux_sym_erase_statement_token1] = ACTIONS(9568), + [aux_sym_open_statement_token1] = ACTIONS(9568), + [aux_sym_file_mode_token2] = ACTIONS(9568), + [aux_sym_file_access_token2] = ACTIONS(9568), + [aux_sym_file_lock_token2] = ACTIONS(9568), + [aux_sym_print_statement_token1] = ACTIONS(9568), + [anon_sym_PLUS] = ACTIONS(9570), + [anon_sym_DASH] = ACTIONS(9568), + [anon_sym_QMARK] = ACTIONS(9570), + [aux_sym_close_statement_token1] = ACTIONS(9568), + [aux_sym_put_statement_token1] = ACTIONS(9568), + [aux_sym_unlock_statement_token1] = ACTIONS(9568), + [aux_sym_seek_statement_token1] = ACTIONS(9568), + [sym_reset_statement] = ACTIONS(9568), + [aux_sym_raise_event_statement_token1] = ACTIONS(9568), + [sym_stop_statement] = ACTIONS(9568), + [sym_beep_statement] = ACTIONS(9568), + [aux_sym_unload_statement_token1] = ACTIONS(9568), + [aux_sym_def_type_statement_token1] = ACTIONS(9568), + [aux_sym_def_type_statement_token2] = ACTIONS(9568), + [aux_sym_def_type_statement_token3] = ACTIONS(9568), + [aux_sym_def_type_statement_token4] = ACTIONS(9568), + [aux_sym_def_type_statement_token5] = ACTIONS(9568), + [aux_sym_def_type_statement_token6] = ACTIONS(9568), + [aux_sym_def_type_statement_token7] = ACTIONS(9568), + [aux_sym_def_type_statement_token8] = ACTIONS(9568), + [aux_sym_def_type_statement_token9] = ACTIONS(9568), + [aux_sym_def_type_statement_token10] = ACTIONS(9568), + [aux_sym_def_type_statement_token11] = ACTIONS(9568), + [aux_sym_def_type_statement_token12] = ACTIONS(9568), + [aux_sym_def_type_statement_token13] = ACTIONS(9568), + [aux_sym_def_type_statement_token14] = ACTIONS(9568), + [aux_sym_call_statement_token1] = ACTIONS(9568), + [sym__ambiguous_call_statement] = ACTIONS(9568), + [aux_sym_addressof_expression_token1] = ACTIONS(9568), + [aux_sym_type_of_expression_token1] = ACTIONS(9568), + [aux_sym_unary_expression_token1] = ACTIONS(9568), + [sym_string_literal] = ACTIONS(9570), + [sym_number_literal] = ACTIONS(9570), + [aux_sym_boolean_literal_token1] = ACTIONS(9568), + [aux_sym_boolean_literal_token2] = ACTIONS(9568), + [sym_nothing_literal] = ACTIONS(9568), + [sym_null_literal] = ACTIONS(9568), + [sym_empty_literal] = ACTIONS(9568), + [sym_date_literal] = ACTIONS(9570), + [anon_sym_POUND] = ACTIONS(9568), + }, + [STATE(6388)] = { + [sym_identifier] = ACTIONS(9150), + [sym_newline] = ACTIONS(9152), + [anon_sym_COLON] = ACTIONS(9152), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9154), + [aux_sym_frm_property_statement_token1] = ACTIONS(9150), + [anon_sym_DOT] = ACTIONS(9150), + [anon_sym_BANG] = ACTIONS(9152), + [aux_sym__attribute_identifier_token1] = ACTIONS(9150), + [aux_sym_option_statement_token3] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9154), + [aux_sym_preprocessor_const_token1] = ACTIONS(9150), + [sym_static_modifier] = ACTIONS(9150), + [sym__dim_keyword] = ACTIONS(9150), + [sym__redim_keyword] = ACTIONS(9150), + [aux_sym_get_accessor_token1] = ACTIONS(9150), + [aux_sym_set_accessor_token1] = ACTIONS(9150), + [aux_sym_const_declaration_token1] = ACTIONS(9150), + [anon_sym_LPAREN] = ACTIONS(9152), + [aux_sym_as_type_clause_token2] = ACTIONS(9150), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9150), + [aux_sym_visibility_token1] = ACTIONS(9150), + [aux_sym_visibility_token2] = ACTIONS(9150), + [aux_sym_elseif_fragment_token1] = ACTIONS(9154), + [aux_sym_else_fragment_token1] = ACTIONS(9154), + [aux_sym_select_statement_token1] = ACTIONS(9154), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9150), + [aux_sym__for_header_token1] = ACTIONS(9154), + [aux_sym_do_statement_token1] = ACTIONS(9154), + [aux_sym_do_condition_token1] = ACTIONS(9154), + [aux_sym_with_statement_token1] = ACTIONS(9154), + [aux_sym_exit_statement_token1] = ACTIONS(9150), + [sym_end_statement] = ACTIONS(9152), + [aux_sym_on_goto_statement_token1] = ACTIONS(9150), + [aux_sym_on_goto_statement_token2] = ACTIONS(9150), + [aux_sym_on_error_statement_token2] = ACTIONS(9150), + [sym__ambiguous_redim_statement] = ACTIONS(9152), + [aux_sym_erase_statement_token1] = ACTIONS(9150), + [aux_sym_open_statement_token1] = ACTIONS(9150), + [aux_sym_file_mode_token2] = ACTIONS(9150), + [aux_sym_file_access_token2] = ACTIONS(9150), + [aux_sym_file_lock_token2] = ACTIONS(9150), + [aux_sym_print_statement_token1] = ACTIONS(9150), + [anon_sym_PLUS] = ACTIONS(9152), + [anon_sym_DASH] = ACTIONS(9150), + [anon_sym_QMARK] = ACTIONS(9152), + [aux_sym_close_statement_token1] = ACTIONS(9150), + [aux_sym_put_statement_token1] = ACTIONS(9150), + [aux_sym_unlock_statement_token1] = ACTIONS(9150), + [aux_sym_seek_statement_token1] = ACTIONS(9150), + [sym_reset_statement] = ACTIONS(9150), + [aux_sym_raise_event_statement_token1] = ACTIONS(9150), + [sym_stop_statement] = ACTIONS(9150), + [sym_beep_statement] = ACTIONS(9150), + [aux_sym_unload_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token2] = ACTIONS(9150), + [aux_sym_def_type_statement_token3] = ACTIONS(9150), + [aux_sym_def_type_statement_token4] = ACTIONS(9150), + [aux_sym_def_type_statement_token5] = ACTIONS(9150), + [aux_sym_def_type_statement_token6] = ACTIONS(9150), + [aux_sym_def_type_statement_token7] = ACTIONS(9150), + [aux_sym_def_type_statement_token8] = ACTIONS(9150), + [aux_sym_def_type_statement_token9] = ACTIONS(9150), + [aux_sym_def_type_statement_token10] = ACTIONS(9150), + [aux_sym_def_type_statement_token11] = ACTIONS(9150), + [aux_sym_def_type_statement_token12] = ACTIONS(9150), + [aux_sym_def_type_statement_token13] = ACTIONS(9150), + [aux_sym_def_type_statement_token14] = ACTIONS(9150), + [aux_sym_call_statement_token1] = ACTIONS(9150), + [sym__ambiguous_call_statement] = ACTIONS(9150), + [aux_sym_addressof_expression_token1] = ACTIONS(9150), + [aux_sym_type_of_expression_token1] = ACTIONS(9150), + [aux_sym_unary_expression_token1] = ACTIONS(9150), + [sym_string_literal] = ACTIONS(9152), + [sym_number_literal] = ACTIONS(9152), + [aux_sym_boolean_literal_token1] = ACTIONS(9150), + [aux_sym_boolean_literal_token2] = ACTIONS(9150), + [sym_nothing_literal] = ACTIONS(9150), + [sym_null_literal] = ACTIONS(9150), + [sym_empty_literal] = ACTIONS(9150), + [sym_date_literal] = ACTIONS(9152), + [anon_sym_POUND] = ACTIONS(9150), + }, + [STATE(6389)] = { + [sym_identifier] = ACTIONS(9575), + [sym_newline] = ACTIONS(9577), + [anon_sym_COLON] = ACTIONS(9577), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9575), + [aux_sym_frm_property_statement_token1] = ACTIONS(9575), + [anon_sym_DOT] = ACTIONS(9575), + [anon_sym_BANG] = ACTIONS(9577), + [aux_sym__attribute_identifier_token1] = ACTIONS(9575), + [aux_sym_option_statement_token3] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9575), + [aux_sym_preprocessor_const_token1] = ACTIONS(9575), + [sym_static_modifier] = ACTIONS(9575), + [sym__dim_keyword] = ACTIONS(9575), + [sym__redim_keyword] = ACTIONS(9575), + [aux_sym_get_accessor_token1] = ACTIONS(9575), + [aux_sym_set_accessor_token1] = ACTIONS(9575), + [aux_sym_const_declaration_token1] = ACTIONS(9575), + [anon_sym_LPAREN] = ACTIONS(9577), + [aux_sym_as_type_clause_token2] = ACTIONS(9575), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9575), + [aux_sym_visibility_token1] = ACTIONS(9575), + [aux_sym_visibility_token2] = ACTIONS(9575), + [aux_sym_elseif_fragment_token1] = ACTIONS(9575), + [aux_sym_else_fragment_token1] = ACTIONS(9575), + [aux_sym_select_statement_token1] = ACTIONS(9575), + [aux_sym__for_header_token1] = ACTIONS(9575), + [aux_sym_do_statement_token1] = ACTIONS(9575), + [aux_sym_do_statement_token2] = ACTIONS(9575), + [aux_sym_do_condition_token1] = ACTIONS(9575), + [aux_sym_with_statement_token1] = ACTIONS(9575), + [aux_sym_exit_statement_token1] = ACTIONS(9575), + [sym_end_statement] = ACTIONS(9577), + [aux_sym_on_goto_statement_token1] = ACTIONS(9575), + [aux_sym_on_goto_statement_token2] = ACTIONS(9575), + [aux_sym_on_error_statement_token2] = ACTIONS(9575), + [sym__ambiguous_redim_statement] = ACTIONS(9577), + [aux_sym_erase_statement_token1] = ACTIONS(9575), + [aux_sym_open_statement_token1] = ACTIONS(9575), + [aux_sym_file_mode_token2] = ACTIONS(9575), + [aux_sym_file_access_token2] = ACTIONS(9575), + [aux_sym_file_lock_token2] = ACTIONS(9575), + [aux_sym_print_statement_token1] = ACTIONS(9575), + [anon_sym_PLUS] = ACTIONS(9577), + [anon_sym_DASH] = ACTIONS(9575), + [anon_sym_QMARK] = ACTIONS(9577), + [aux_sym_close_statement_token1] = ACTIONS(9575), + [aux_sym_put_statement_token1] = ACTIONS(9575), + [aux_sym_unlock_statement_token1] = ACTIONS(9575), + [aux_sym_seek_statement_token1] = ACTIONS(9575), + [sym_reset_statement] = ACTIONS(9575), + [aux_sym_raise_event_statement_token1] = ACTIONS(9575), + [sym_stop_statement] = ACTIONS(9575), + [sym_beep_statement] = ACTIONS(9575), + [aux_sym_unload_statement_token1] = ACTIONS(9575), + [aux_sym_def_type_statement_token1] = ACTIONS(9575), + [aux_sym_def_type_statement_token2] = ACTIONS(9575), + [aux_sym_def_type_statement_token3] = ACTIONS(9575), + [aux_sym_def_type_statement_token4] = ACTIONS(9575), + [aux_sym_def_type_statement_token5] = ACTIONS(9575), + [aux_sym_def_type_statement_token6] = ACTIONS(9575), + [aux_sym_def_type_statement_token7] = ACTIONS(9575), + [aux_sym_def_type_statement_token8] = ACTIONS(9575), + [aux_sym_def_type_statement_token9] = ACTIONS(9575), + [aux_sym_def_type_statement_token10] = ACTIONS(9575), + [aux_sym_def_type_statement_token11] = ACTIONS(9575), + [aux_sym_def_type_statement_token12] = ACTIONS(9575), + [aux_sym_def_type_statement_token13] = ACTIONS(9575), + [aux_sym_def_type_statement_token14] = ACTIONS(9575), + [aux_sym_call_statement_token1] = ACTIONS(9575), + [sym__ambiguous_call_statement] = ACTIONS(9575), + [aux_sym_addressof_expression_token1] = ACTIONS(9575), + [aux_sym_type_of_expression_token1] = ACTIONS(9575), + [aux_sym_unary_expression_token1] = ACTIONS(9575), + [sym_string_literal] = ACTIONS(9577), + [sym_number_literal] = ACTIONS(9577), + [aux_sym_boolean_literal_token1] = ACTIONS(9575), + [aux_sym_boolean_literal_token2] = ACTIONS(9575), + [sym_nothing_literal] = ACTIONS(9575), + [sym_null_literal] = ACTIONS(9575), + [sym_empty_literal] = ACTIONS(9575), + [sym_date_literal] = ACTIONS(9577), + [anon_sym_POUND] = ACTIONS(9575), + }, + [STATE(6390)] = { + [sym_identifier] = ACTIONS(9582), + [sym_newline] = ACTIONS(9584), + [anon_sym_COLON] = ACTIONS(9584), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9582), + [aux_sym_frm_property_statement_token1] = ACTIONS(9582), + [anon_sym_DOT] = ACTIONS(9582), + [anon_sym_BANG] = ACTIONS(9584), + [aux_sym__attribute_identifier_token1] = ACTIONS(9582), + [aux_sym_option_statement_token3] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9582), + [aux_sym_preprocessor_const_token1] = ACTIONS(9582), + [sym_static_modifier] = ACTIONS(9582), + [sym__dim_keyword] = ACTIONS(9582), + [sym__redim_keyword] = ACTIONS(9582), + [aux_sym_get_accessor_token1] = ACTIONS(9582), + [aux_sym_set_accessor_token1] = ACTIONS(9582), + [aux_sym_const_declaration_token1] = ACTIONS(9582), + [anon_sym_LPAREN] = ACTIONS(9584), + [aux_sym_as_type_clause_token2] = ACTIONS(9582), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9582), + [aux_sym_visibility_token1] = ACTIONS(9582), + [aux_sym_visibility_token2] = ACTIONS(9582), + [aux_sym_elseif_fragment_token1] = ACTIONS(9582), + [aux_sym_else_fragment_token1] = ACTIONS(9582), + [aux_sym_select_statement_token1] = ACTIONS(9582), + [aux_sym__for_header_token1] = ACTIONS(9582), + [aux_sym_do_statement_token1] = ACTIONS(9582), + [aux_sym_do_statement_token2] = ACTIONS(9582), + [aux_sym_do_condition_token1] = ACTIONS(9582), + [aux_sym_with_statement_token1] = ACTIONS(9582), + [aux_sym_exit_statement_token1] = ACTIONS(9582), + [sym_end_statement] = ACTIONS(9584), + [aux_sym_on_goto_statement_token1] = ACTIONS(9582), + [aux_sym_on_goto_statement_token2] = ACTIONS(9582), + [aux_sym_on_error_statement_token2] = ACTIONS(9582), + [sym__ambiguous_redim_statement] = ACTIONS(9584), + [aux_sym_erase_statement_token1] = ACTIONS(9582), + [aux_sym_open_statement_token1] = ACTIONS(9582), + [aux_sym_file_mode_token2] = ACTIONS(9582), + [aux_sym_file_access_token2] = ACTIONS(9582), + [aux_sym_file_lock_token2] = ACTIONS(9582), + [aux_sym_print_statement_token1] = ACTIONS(9582), + [anon_sym_PLUS] = ACTIONS(9584), + [anon_sym_DASH] = ACTIONS(9582), + [anon_sym_QMARK] = ACTIONS(9584), + [aux_sym_close_statement_token1] = ACTIONS(9582), + [aux_sym_put_statement_token1] = ACTIONS(9582), + [aux_sym_unlock_statement_token1] = ACTIONS(9582), + [aux_sym_seek_statement_token1] = ACTIONS(9582), + [sym_reset_statement] = ACTIONS(9582), + [aux_sym_raise_event_statement_token1] = ACTIONS(9582), + [sym_stop_statement] = ACTIONS(9582), + [sym_beep_statement] = ACTIONS(9582), + [aux_sym_unload_statement_token1] = ACTIONS(9582), + [aux_sym_def_type_statement_token1] = ACTIONS(9582), + [aux_sym_def_type_statement_token2] = ACTIONS(9582), + [aux_sym_def_type_statement_token3] = ACTIONS(9582), + [aux_sym_def_type_statement_token4] = ACTIONS(9582), + [aux_sym_def_type_statement_token5] = ACTIONS(9582), + [aux_sym_def_type_statement_token6] = ACTIONS(9582), + [aux_sym_def_type_statement_token7] = ACTIONS(9582), + [aux_sym_def_type_statement_token8] = ACTIONS(9582), + [aux_sym_def_type_statement_token9] = ACTIONS(9582), + [aux_sym_def_type_statement_token10] = ACTIONS(9582), + [aux_sym_def_type_statement_token11] = ACTIONS(9582), + [aux_sym_def_type_statement_token12] = ACTIONS(9582), + [aux_sym_def_type_statement_token13] = ACTIONS(9582), + [aux_sym_def_type_statement_token14] = ACTIONS(9582), + [aux_sym_call_statement_token1] = ACTIONS(9582), + [sym__ambiguous_call_statement] = ACTIONS(9582), + [aux_sym_addressof_expression_token1] = ACTIONS(9582), + [aux_sym_type_of_expression_token1] = ACTIONS(9582), + [aux_sym_unary_expression_token1] = ACTIONS(9582), + [sym_string_literal] = ACTIONS(9584), + [sym_number_literal] = ACTIONS(9584), + [aux_sym_boolean_literal_token1] = ACTIONS(9582), + [aux_sym_boolean_literal_token2] = ACTIONS(9582), + [sym_nothing_literal] = ACTIONS(9582), + [sym_null_literal] = ACTIONS(9582), + [sym_empty_literal] = ACTIONS(9582), + [sym_date_literal] = ACTIONS(9584), + [anon_sym_POUND] = ACTIONS(9582), + }, + [STATE(6391)] = { + [sym_identifier] = ACTIONS(9586), + [sym_newline] = ACTIONS(9588), + [anon_sym_COLON] = ACTIONS(9588), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9586), + [aux_sym_frm_property_statement_token1] = ACTIONS(9586), + [anon_sym_DOT] = ACTIONS(9586), + [anon_sym_BANG] = ACTIONS(9588), + [aux_sym__attribute_identifier_token1] = ACTIONS(9586), + [aux_sym_option_statement_token3] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9586), + [aux_sym_preprocessor_const_token1] = ACTIONS(9586), + [sym_static_modifier] = ACTIONS(9586), + [sym__dim_keyword] = ACTIONS(9586), + [sym__redim_keyword] = ACTIONS(9586), + [aux_sym_get_accessor_token1] = ACTIONS(9586), + [aux_sym_set_accessor_token1] = ACTIONS(9586), + [aux_sym_const_declaration_token1] = ACTIONS(9586), + [anon_sym_LPAREN] = ACTIONS(9588), + [aux_sym_as_type_clause_token2] = ACTIONS(9586), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9586), + [aux_sym_visibility_token1] = ACTIONS(9586), + [aux_sym_visibility_token2] = ACTIONS(9586), + [aux_sym_elseif_fragment_token1] = ACTIONS(9586), + [aux_sym_else_fragment_token1] = ACTIONS(9586), + [aux_sym_select_statement_token1] = ACTIONS(9586), + [aux_sym__for_header_token1] = ACTIONS(9586), + [aux_sym_do_statement_token1] = ACTIONS(9586), + [aux_sym_do_statement_token2] = ACTIONS(9586), + [aux_sym_do_condition_token1] = ACTIONS(9586), + [aux_sym_with_statement_token1] = ACTIONS(9586), + [aux_sym_exit_statement_token1] = ACTIONS(9586), + [sym_end_statement] = ACTIONS(9588), + [aux_sym_on_goto_statement_token1] = ACTIONS(9586), + [aux_sym_on_goto_statement_token2] = ACTIONS(9586), + [aux_sym_on_error_statement_token2] = ACTIONS(9586), + [sym__ambiguous_redim_statement] = ACTIONS(9588), + [aux_sym_erase_statement_token1] = ACTIONS(9586), + [aux_sym_open_statement_token1] = ACTIONS(9586), + [aux_sym_file_mode_token2] = ACTIONS(9586), + [aux_sym_file_access_token2] = ACTIONS(9586), + [aux_sym_file_lock_token2] = ACTIONS(9586), + [aux_sym_print_statement_token1] = ACTIONS(9586), + [anon_sym_PLUS] = ACTIONS(9588), + [anon_sym_DASH] = ACTIONS(9586), + [anon_sym_QMARK] = ACTIONS(9588), + [aux_sym_close_statement_token1] = ACTIONS(9586), + [aux_sym_put_statement_token1] = ACTIONS(9586), + [aux_sym_unlock_statement_token1] = ACTIONS(9586), + [aux_sym_seek_statement_token1] = ACTIONS(9586), + [sym_reset_statement] = ACTIONS(9586), + [aux_sym_raise_event_statement_token1] = ACTIONS(9586), + [sym_stop_statement] = ACTIONS(9586), + [sym_beep_statement] = ACTIONS(9586), + [aux_sym_unload_statement_token1] = ACTIONS(9586), + [aux_sym_def_type_statement_token1] = ACTIONS(9586), + [aux_sym_def_type_statement_token2] = ACTIONS(9586), + [aux_sym_def_type_statement_token3] = ACTIONS(9586), + [aux_sym_def_type_statement_token4] = ACTIONS(9586), + [aux_sym_def_type_statement_token5] = ACTIONS(9586), + [aux_sym_def_type_statement_token6] = ACTIONS(9586), + [aux_sym_def_type_statement_token7] = ACTIONS(9586), + [aux_sym_def_type_statement_token8] = ACTIONS(9586), + [aux_sym_def_type_statement_token9] = ACTIONS(9586), + [aux_sym_def_type_statement_token10] = ACTIONS(9586), + [aux_sym_def_type_statement_token11] = ACTIONS(9586), + [aux_sym_def_type_statement_token12] = ACTIONS(9586), + [aux_sym_def_type_statement_token13] = ACTIONS(9586), + [aux_sym_def_type_statement_token14] = ACTIONS(9586), + [aux_sym_call_statement_token1] = ACTIONS(9586), + [sym__ambiguous_call_statement] = ACTIONS(9586), + [aux_sym_addressof_expression_token1] = ACTIONS(9586), + [aux_sym_type_of_expression_token1] = ACTIONS(9586), + [aux_sym_unary_expression_token1] = ACTIONS(9586), + [sym_string_literal] = ACTIONS(9588), + [sym_number_literal] = ACTIONS(9588), + [aux_sym_boolean_literal_token1] = ACTIONS(9586), + [aux_sym_boolean_literal_token2] = ACTIONS(9586), + [sym_nothing_literal] = ACTIONS(9586), + [sym_null_literal] = ACTIONS(9586), + [sym_empty_literal] = ACTIONS(9586), + [sym_date_literal] = ACTIONS(9588), + [anon_sym_POUND] = ACTIONS(9586), + }, + [STATE(6392)] = { + [sym_identifier] = ACTIONS(9590), + [sym_newline] = ACTIONS(9592), + [anon_sym_COLON] = ACTIONS(9592), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9590), + [aux_sym_frm_property_statement_token1] = ACTIONS(9590), + [anon_sym_DOT] = ACTIONS(9590), + [anon_sym_BANG] = ACTIONS(9592), + [aux_sym__attribute_identifier_token1] = ACTIONS(9590), + [aux_sym_option_statement_token3] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9590), + [aux_sym_preprocessor_const_token1] = ACTIONS(9590), + [sym_static_modifier] = ACTIONS(9590), + [sym__dim_keyword] = ACTIONS(9590), + [sym__redim_keyword] = ACTIONS(9590), + [aux_sym_get_accessor_token1] = ACTIONS(9590), + [aux_sym_set_accessor_token1] = ACTIONS(9590), + [aux_sym_const_declaration_token1] = ACTIONS(9590), + [anon_sym_LPAREN] = ACTIONS(9592), + [aux_sym_as_type_clause_token2] = ACTIONS(9590), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9590), + [aux_sym_visibility_token1] = ACTIONS(9590), + [aux_sym_visibility_token2] = ACTIONS(9590), + [aux_sym_elseif_fragment_token1] = ACTIONS(9590), + [aux_sym_else_fragment_token1] = ACTIONS(9590), + [aux_sym_select_statement_token1] = ACTIONS(9590), + [aux_sym__for_header_token1] = ACTIONS(9590), + [aux_sym_do_statement_token1] = ACTIONS(9590), + [aux_sym_do_statement_token2] = ACTIONS(9590), + [aux_sym_do_condition_token1] = ACTIONS(9590), + [aux_sym_with_statement_token1] = ACTIONS(9590), + [aux_sym_exit_statement_token1] = ACTIONS(9590), + [sym_end_statement] = ACTIONS(9592), + [aux_sym_on_goto_statement_token1] = ACTIONS(9590), + [aux_sym_on_goto_statement_token2] = ACTIONS(9590), + [aux_sym_on_error_statement_token2] = ACTIONS(9590), + [sym__ambiguous_redim_statement] = ACTIONS(9592), + [aux_sym_erase_statement_token1] = ACTIONS(9590), + [aux_sym_open_statement_token1] = ACTIONS(9590), + [aux_sym_file_mode_token2] = ACTIONS(9590), + [aux_sym_file_access_token2] = ACTIONS(9590), + [aux_sym_file_lock_token2] = ACTIONS(9590), + [aux_sym_print_statement_token1] = ACTIONS(9590), + [anon_sym_PLUS] = ACTIONS(9592), + [anon_sym_DASH] = ACTIONS(9590), + [anon_sym_QMARK] = ACTIONS(9592), + [aux_sym_close_statement_token1] = ACTIONS(9590), + [aux_sym_put_statement_token1] = ACTIONS(9590), + [aux_sym_unlock_statement_token1] = ACTIONS(9590), + [aux_sym_seek_statement_token1] = ACTIONS(9590), + [sym_reset_statement] = ACTIONS(9590), + [aux_sym_raise_event_statement_token1] = ACTIONS(9590), + [sym_stop_statement] = ACTIONS(9590), + [sym_beep_statement] = ACTIONS(9590), + [aux_sym_unload_statement_token1] = ACTIONS(9590), + [aux_sym_def_type_statement_token1] = ACTIONS(9590), + [aux_sym_def_type_statement_token2] = ACTIONS(9590), + [aux_sym_def_type_statement_token3] = ACTIONS(9590), + [aux_sym_def_type_statement_token4] = ACTIONS(9590), + [aux_sym_def_type_statement_token5] = ACTIONS(9590), + [aux_sym_def_type_statement_token6] = ACTIONS(9590), + [aux_sym_def_type_statement_token7] = ACTIONS(9590), + [aux_sym_def_type_statement_token8] = ACTIONS(9590), + [aux_sym_def_type_statement_token9] = ACTIONS(9590), + [aux_sym_def_type_statement_token10] = ACTIONS(9590), + [aux_sym_def_type_statement_token11] = ACTIONS(9590), + [aux_sym_def_type_statement_token12] = ACTIONS(9590), + [aux_sym_def_type_statement_token13] = ACTIONS(9590), + [aux_sym_def_type_statement_token14] = ACTIONS(9590), + [aux_sym_call_statement_token1] = ACTIONS(9590), + [sym__ambiguous_call_statement] = ACTIONS(9590), + [aux_sym_addressof_expression_token1] = ACTIONS(9590), + [aux_sym_type_of_expression_token1] = ACTIONS(9590), + [aux_sym_unary_expression_token1] = ACTIONS(9590), + [sym_string_literal] = ACTIONS(9592), + [sym_number_literal] = ACTIONS(9592), + [aux_sym_boolean_literal_token1] = ACTIONS(9590), + [aux_sym_boolean_literal_token2] = ACTIONS(9590), + [sym_nothing_literal] = ACTIONS(9590), + [sym_null_literal] = ACTIONS(9590), + [sym_empty_literal] = ACTIONS(9590), + [sym_date_literal] = ACTIONS(9592), + [anon_sym_POUND] = ACTIONS(9590), + }, + [STATE(6393)] = { + [sym_identifier] = ACTIONS(9594), + [sym_newline] = ACTIONS(9596), + [anon_sym_COLON] = ACTIONS(9596), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9594), + [aux_sym_frm_property_statement_token1] = ACTIONS(9594), + [anon_sym_DOT] = ACTIONS(9594), + [anon_sym_BANG] = ACTIONS(9596), + [aux_sym__attribute_identifier_token1] = ACTIONS(9594), + [aux_sym_option_statement_token3] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9594), + [aux_sym_preprocessor_const_token1] = ACTIONS(9594), + [sym_static_modifier] = ACTIONS(9594), + [sym__dim_keyword] = ACTIONS(9594), + [sym__redim_keyword] = ACTIONS(9594), + [aux_sym_get_accessor_token1] = ACTIONS(9594), + [aux_sym_set_accessor_token1] = ACTIONS(9594), + [aux_sym_const_declaration_token1] = ACTIONS(9594), + [anon_sym_LPAREN] = ACTIONS(9596), + [aux_sym_as_type_clause_token2] = ACTIONS(9594), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9594), + [aux_sym_visibility_token1] = ACTIONS(9594), + [aux_sym_visibility_token2] = ACTIONS(9594), + [aux_sym_elseif_fragment_token1] = ACTIONS(9594), + [aux_sym_else_fragment_token1] = ACTIONS(9594), + [aux_sym_select_statement_token1] = ACTIONS(9594), + [aux_sym__for_header_token1] = ACTIONS(9594), + [aux_sym_do_statement_token1] = ACTIONS(9594), + [aux_sym_do_statement_token2] = ACTIONS(9594), + [aux_sym_do_condition_token1] = ACTIONS(9594), + [aux_sym_with_statement_token1] = ACTIONS(9594), + [aux_sym_exit_statement_token1] = ACTIONS(9594), + [sym_end_statement] = ACTIONS(9596), + [aux_sym_on_goto_statement_token1] = ACTIONS(9594), + [aux_sym_on_goto_statement_token2] = ACTIONS(9594), + [aux_sym_on_error_statement_token2] = ACTIONS(9594), + [sym__ambiguous_redim_statement] = ACTIONS(9596), + [aux_sym_erase_statement_token1] = ACTIONS(9594), + [aux_sym_open_statement_token1] = ACTIONS(9594), + [aux_sym_file_mode_token2] = ACTIONS(9594), + [aux_sym_file_access_token2] = ACTIONS(9594), + [aux_sym_file_lock_token2] = ACTIONS(9594), + [aux_sym_print_statement_token1] = ACTIONS(9594), + [anon_sym_PLUS] = ACTIONS(9596), + [anon_sym_DASH] = ACTIONS(9594), + [anon_sym_QMARK] = ACTIONS(9596), + [aux_sym_close_statement_token1] = ACTIONS(9594), + [aux_sym_put_statement_token1] = ACTIONS(9594), + [aux_sym_unlock_statement_token1] = ACTIONS(9594), + [aux_sym_seek_statement_token1] = ACTIONS(9594), + [sym_reset_statement] = ACTIONS(9594), + [aux_sym_raise_event_statement_token1] = ACTIONS(9594), + [sym_stop_statement] = ACTIONS(9594), + [sym_beep_statement] = ACTIONS(9594), + [aux_sym_unload_statement_token1] = ACTIONS(9594), + [aux_sym_def_type_statement_token1] = ACTIONS(9594), + [aux_sym_def_type_statement_token2] = ACTIONS(9594), + [aux_sym_def_type_statement_token3] = ACTIONS(9594), + [aux_sym_def_type_statement_token4] = ACTIONS(9594), + [aux_sym_def_type_statement_token5] = ACTIONS(9594), + [aux_sym_def_type_statement_token6] = ACTIONS(9594), + [aux_sym_def_type_statement_token7] = ACTIONS(9594), + [aux_sym_def_type_statement_token8] = ACTIONS(9594), + [aux_sym_def_type_statement_token9] = ACTIONS(9594), + [aux_sym_def_type_statement_token10] = ACTIONS(9594), + [aux_sym_def_type_statement_token11] = ACTIONS(9594), + [aux_sym_def_type_statement_token12] = ACTIONS(9594), + [aux_sym_def_type_statement_token13] = ACTIONS(9594), + [aux_sym_def_type_statement_token14] = ACTIONS(9594), + [aux_sym_call_statement_token1] = ACTIONS(9594), + [sym__ambiguous_call_statement] = ACTIONS(9594), + [aux_sym_addressof_expression_token1] = ACTIONS(9594), + [aux_sym_type_of_expression_token1] = ACTIONS(9594), + [aux_sym_unary_expression_token1] = ACTIONS(9594), + [sym_string_literal] = ACTIONS(9596), + [sym_number_literal] = ACTIONS(9596), + [aux_sym_boolean_literal_token1] = ACTIONS(9594), + [aux_sym_boolean_literal_token2] = ACTIONS(9594), + [sym_nothing_literal] = ACTIONS(9594), + [sym_null_literal] = ACTIONS(9594), + [sym_empty_literal] = ACTIONS(9594), + [sym_date_literal] = ACTIONS(9596), + [anon_sym_POUND] = ACTIONS(9594), + }, + [STATE(6394)] = { + [sym_identifier] = ACTIONS(9684), + [sym_newline] = ACTIONS(9686), + [anon_sym_COLON] = ACTIONS(9686), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9684), + [aux_sym_frm_property_statement_token1] = ACTIONS(9684), + [anon_sym_DOT] = ACTIONS(9684), + [anon_sym_BANG] = ACTIONS(9686), + [aux_sym__attribute_identifier_token1] = ACTIONS(9684), + [aux_sym_option_statement_token3] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9684), + [aux_sym_preprocessor_const_token1] = ACTIONS(9684), + [sym_static_modifier] = ACTIONS(9684), + [sym__dim_keyword] = ACTIONS(9684), + [sym__redim_keyword] = ACTIONS(9684), + [aux_sym_get_accessor_token1] = ACTIONS(9684), + [aux_sym_set_accessor_token1] = ACTIONS(9684), + [aux_sym_const_declaration_token1] = ACTIONS(9684), + [anon_sym_LPAREN] = ACTIONS(9686), + [aux_sym_as_type_clause_token2] = ACTIONS(9684), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9684), + [aux_sym_visibility_token1] = ACTIONS(9684), + [aux_sym_visibility_token2] = ACTIONS(9684), + [aux_sym_elseif_fragment_token1] = ACTIONS(9684), + [aux_sym_else_fragment_token1] = ACTIONS(9684), + [aux_sym_select_statement_token1] = ACTIONS(9684), + [aux_sym__for_header_token1] = ACTIONS(9684), + [aux_sym_do_statement_token1] = ACTIONS(9684), + [aux_sym_do_condition_token1] = ACTIONS(9684), + [aux_sym_with_statement_token1] = ACTIONS(9684), + [aux_sym_exit_statement_token1] = ACTIONS(9684), + [sym_end_statement] = ACTIONS(9686), + [aux_sym_on_goto_statement_token1] = ACTIONS(9684), + [aux_sym_on_goto_statement_token2] = ACTIONS(9684), + [aux_sym_on_error_statement_token2] = ACTIONS(9684), + [sym__ambiguous_redim_statement] = ACTIONS(9686), + [aux_sym_erase_statement_token1] = ACTIONS(9684), + [aux_sym_open_statement_token1] = ACTIONS(9684), + [aux_sym_file_mode_token2] = ACTIONS(9684), + [aux_sym_file_access_token2] = ACTIONS(9684), + [aux_sym_file_lock_token2] = ACTIONS(9684), + [aux_sym_print_statement_token1] = ACTIONS(9684), + [anon_sym_PLUS] = ACTIONS(9686), + [anon_sym_DASH] = ACTIONS(9684), + [anon_sym_QMARK] = ACTIONS(9686), + [aux_sym_close_statement_token1] = ACTIONS(9684), + [aux_sym_put_statement_token1] = ACTIONS(9684), + [aux_sym_unlock_statement_token1] = ACTIONS(9684), + [aux_sym_seek_statement_token1] = ACTIONS(9684), + [sym_reset_statement] = ACTIONS(9684), + [aux_sym_raise_event_statement_token1] = ACTIONS(9684), + [sym_stop_statement] = ACTIONS(9684), + [sym_beep_statement] = ACTIONS(9684), + [aux_sym_unload_statement_token1] = ACTIONS(9684), + [aux_sym_def_type_statement_token1] = ACTIONS(9684), + [aux_sym_def_type_statement_token2] = ACTIONS(9684), + [aux_sym_def_type_statement_token3] = ACTIONS(9684), + [aux_sym_def_type_statement_token4] = ACTIONS(9684), + [aux_sym_def_type_statement_token5] = ACTIONS(9684), + [aux_sym_def_type_statement_token6] = ACTIONS(9684), + [aux_sym_def_type_statement_token7] = ACTIONS(9684), + [aux_sym_def_type_statement_token8] = ACTIONS(9684), + [aux_sym_def_type_statement_token9] = ACTIONS(9684), + [aux_sym_def_type_statement_token10] = ACTIONS(9684), + [aux_sym_def_type_statement_token11] = ACTIONS(9684), + [aux_sym_def_type_statement_token12] = ACTIONS(9684), + [aux_sym_def_type_statement_token13] = ACTIONS(9684), + [aux_sym_def_type_statement_token14] = ACTIONS(9684), + [aux_sym_call_statement_token1] = ACTIONS(9684), + [sym__ambiguous_call_statement] = ACTIONS(9684), + [aux_sym_addressof_expression_token1] = ACTIONS(9684), + [aux_sym_type_of_expression_token1] = ACTIONS(9684), + [aux_sym_unary_expression_token1] = ACTIONS(9684), + [sym_string_literal] = ACTIONS(9686), + [sym_number_literal] = ACTIONS(9686), + [aux_sym_boolean_literal_token1] = ACTIONS(9684), + [aux_sym_boolean_literal_token2] = ACTIONS(9684), + [sym_nothing_literal] = ACTIONS(9684), + [sym_null_literal] = ACTIONS(9684), + [sym_empty_literal] = ACTIONS(9684), + [sym_date_literal] = ACTIONS(9686), + [anon_sym_POUND] = ACTIONS(9684), + }, + [STATE(6395)] = { + [sym_identifier] = ACTIONS(9688), + [sym_newline] = ACTIONS(9690), + [anon_sym_COLON] = ACTIONS(9690), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9688), + [aux_sym_frm_property_statement_token1] = ACTIONS(9688), + [anon_sym_DOT] = ACTIONS(9688), + [anon_sym_BANG] = ACTIONS(9690), + [aux_sym__attribute_identifier_token1] = ACTIONS(9688), + [aux_sym_option_statement_token3] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9688), + [aux_sym_preprocessor_const_token1] = ACTIONS(9688), + [sym_static_modifier] = ACTIONS(9688), + [sym__dim_keyword] = ACTIONS(9688), + [sym__redim_keyword] = ACTIONS(9688), + [aux_sym_get_accessor_token1] = ACTIONS(9688), + [aux_sym_set_accessor_token1] = ACTIONS(9688), + [aux_sym_const_declaration_token1] = ACTIONS(9688), + [anon_sym_LPAREN] = ACTIONS(9690), + [aux_sym_as_type_clause_token2] = ACTIONS(9688), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9688), + [aux_sym_visibility_token1] = ACTIONS(9688), + [aux_sym_visibility_token2] = ACTIONS(9688), + [aux_sym_elseif_fragment_token1] = ACTIONS(9688), + [aux_sym_else_fragment_token1] = ACTIONS(9688), + [aux_sym_select_statement_token1] = ACTIONS(9688), + [aux_sym__for_header_token1] = ACTIONS(9688), + [aux_sym_do_statement_token1] = ACTIONS(9688), + [aux_sym_do_condition_token1] = ACTIONS(9688), + [aux_sym_with_statement_token1] = ACTIONS(9688), + [aux_sym_exit_statement_token1] = ACTIONS(9688), + [sym_end_statement] = ACTIONS(9690), + [aux_sym_on_goto_statement_token1] = ACTIONS(9688), + [aux_sym_on_goto_statement_token2] = ACTIONS(9688), + [aux_sym_on_error_statement_token2] = ACTIONS(9688), + [sym__ambiguous_redim_statement] = ACTIONS(9690), + [aux_sym_erase_statement_token1] = ACTIONS(9688), + [aux_sym_open_statement_token1] = ACTIONS(9688), + [aux_sym_file_mode_token2] = ACTIONS(9688), + [aux_sym_file_access_token2] = ACTIONS(9688), + [aux_sym_file_lock_token2] = ACTIONS(9688), + [aux_sym_print_statement_token1] = ACTIONS(9688), + [anon_sym_PLUS] = ACTIONS(9690), + [anon_sym_DASH] = ACTIONS(9688), + [anon_sym_QMARK] = ACTIONS(9690), + [aux_sym_close_statement_token1] = ACTIONS(9688), + [aux_sym_put_statement_token1] = ACTIONS(9688), + [aux_sym_unlock_statement_token1] = ACTIONS(9688), + [aux_sym_seek_statement_token1] = ACTIONS(9688), + [sym_reset_statement] = ACTIONS(9688), + [aux_sym_raise_event_statement_token1] = ACTIONS(9688), + [sym_stop_statement] = ACTIONS(9688), + [sym_beep_statement] = ACTIONS(9688), + [aux_sym_unload_statement_token1] = ACTIONS(9688), + [aux_sym_def_type_statement_token1] = ACTIONS(9688), + [aux_sym_def_type_statement_token2] = ACTIONS(9688), + [aux_sym_def_type_statement_token3] = ACTIONS(9688), + [aux_sym_def_type_statement_token4] = ACTIONS(9688), + [aux_sym_def_type_statement_token5] = ACTIONS(9688), + [aux_sym_def_type_statement_token6] = ACTIONS(9688), + [aux_sym_def_type_statement_token7] = ACTIONS(9688), + [aux_sym_def_type_statement_token8] = ACTIONS(9688), + [aux_sym_def_type_statement_token9] = ACTIONS(9688), + [aux_sym_def_type_statement_token10] = ACTIONS(9688), + [aux_sym_def_type_statement_token11] = ACTIONS(9688), + [aux_sym_def_type_statement_token12] = ACTIONS(9688), + [aux_sym_def_type_statement_token13] = ACTIONS(9688), + [aux_sym_def_type_statement_token14] = ACTIONS(9688), + [aux_sym_call_statement_token1] = ACTIONS(9688), + [sym__ambiguous_call_statement] = ACTIONS(9688), + [aux_sym_addressof_expression_token1] = ACTIONS(9688), + [aux_sym_type_of_expression_token1] = ACTIONS(9688), + [aux_sym_unary_expression_token1] = ACTIONS(9688), + [sym_string_literal] = ACTIONS(9690), + [sym_number_literal] = ACTIONS(9690), + [aux_sym_boolean_literal_token1] = ACTIONS(9688), + [aux_sym_boolean_literal_token2] = ACTIONS(9688), + [sym_nothing_literal] = ACTIONS(9688), + [sym_null_literal] = ACTIONS(9688), + [sym_empty_literal] = ACTIONS(9688), + [sym_date_literal] = ACTIONS(9690), + [anon_sym_POUND] = ACTIONS(9688), + }, + [STATE(6396)] = { + [sym_identifier] = ACTIONS(9692), + [sym_newline] = ACTIONS(9694), + [anon_sym_COLON] = ACTIONS(9694), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9692), + [aux_sym_frm_property_statement_token1] = ACTIONS(9692), + [anon_sym_DOT] = ACTIONS(9692), + [anon_sym_BANG] = ACTIONS(9694), + [aux_sym__attribute_identifier_token1] = ACTIONS(9692), + [aux_sym_option_statement_token3] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9692), + [aux_sym_preprocessor_const_token1] = ACTIONS(9692), + [sym_static_modifier] = ACTIONS(9692), + [sym__dim_keyword] = ACTIONS(9692), + [sym__redim_keyword] = ACTIONS(9692), + [aux_sym_get_accessor_token1] = ACTIONS(9692), + [aux_sym_set_accessor_token1] = ACTIONS(9692), + [aux_sym_const_declaration_token1] = ACTIONS(9692), + [anon_sym_LPAREN] = ACTIONS(9694), + [aux_sym_as_type_clause_token2] = ACTIONS(9692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9692), + [aux_sym_visibility_token1] = ACTIONS(9692), + [aux_sym_visibility_token2] = ACTIONS(9692), + [aux_sym_elseif_fragment_token1] = ACTIONS(9692), + [aux_sym_else_fragment_token1] = ACTIONS(9692), + [aux_sym_select_statement_token1] = ACTIONS(9692), + [aux_sym__for_header_token1] = ACTIONS(9692), + [aux_sym_do_statement_token1] = ACTIONS(9692), + [aux_sym_do_condition_token1] = ACTIONS(9692), + [aux_sym_with_statement_token1] = ACTIONS(9692), + [aux_sym_exit_statement_token1] = ACTIONS(9692), + [sym_end_statement] = ACTIONS(9694), + [aux_sym_on_goto_statement_token1] = ACTIONS(9692), + [aux_sym_on_goto_statement_token2] = ACTIONS(9692), + [aux_sym_on_error_statement_token2] = ACTIONS(9692), + [sym__ambiguous_redim_statement] = ACTIONS(9694), + [aux_sym_erase_statement_token1] = ACTIONS(9692), + [aux_sym_open_statement_token1] = ACTIONS(9692), + [aux_sym_file_mode_token2] = ACTIONS(9692), + [aux_sym_file_access_token2] = ACTIONS(9692), + [aux_sym_file_lock_token2] = ACTIONS(9692), + [aux_sym_print_statement_token1] = ACTIONS(9692), + [anon_sym_PLUS] = ACTIONS(9694), + [anon_sym_DASH] = ACTIONS(9692), + [anon_sym_QMARK] = ACTIONS(9694), + [aux_sym_close_statement_token1] = ACTIONS(9692), + [aux_sym_put_statement_token1] = ACTIONS(9692), + [aux_sym_unlock_statement_token1] = ACTIONS(9692), + [aux_sym_seek_statement_token1] = ACTIONS(9692), + [sym_reset_statement] = ACTIONS(9692), + [aux_sym_raise_event_statement_token1] = ACTIONS(9692), + [sym_stop_statement] = ACTIONS(9692), + [sym_beep_statement] = ACTIONS(9692), + [aux_sym_unload_statement_token1] = ACTIONS(9692), + [aux_sym_def_type_statement_token1] = ACTIONS(9692), + [aux_sym_def_type_statement_token2] = ACTIONS(9692), + [aux_sym_def_type_statement_token3] = ACTIONS(9692), + [aux_sym_def_type_statement_token4] = ACTIONS(9692), + [aux_sym_def_type_statement_token5] = ACTIONS(9692), + [aux_sym_def_type_statement_token6] = ACTIONS(9692), + [aux_sym_def_type_statement_token7] = ACTIONS(9692), + [aux_sym_def_type_statement_token8] = ACTIONS(9692), + [aux_sym_def_type_statement_token9] = ACTIONS(9692), + [aux_sym_def_type_statement_token10] = ACTIONS(9692), + [aux_sym_def_type_statement_token11] = ACTIONS(9692), + [aux_sym_def_type_statement_token12] = ACTIONS(9692), + [aux_sym_def_type_statement_token13] = ACTIONS(9692), + [aux_sym_def_type_statement_token14] = ACTIONS(9692), + [aux_sym_call_statement_token1] = ACTIONS(9692), + [sym__ambiguous_call_statement] = ACTIONS(9692), + [aux_sym_addressof_expression_token1] = ACTIONS(9692), + [aux_sym_type_of_expression_token1] = ACTIONS(9692), + [aux_sym_unary_expression_token1] = ACTIONS(9692), + [sym_string_literal] = ACTIONS(9694), + [sym_number_literal] = ACTIONS(9694), + [aux_sym_boolean_literal_token1] = ACTIONS(9692), + [aux_sym_boolean_literal_token2] = ACTIONS(9692), + [sym_nothing_literal] = ACTIONS(9692), + [sym_null_literal] = ACTIONS(9692), + [sym_empty_literal] = ACTIONS(9692), + [sym_date_literal] = ACTIONS(9694), + [anon_sym_POUND] = ACTIONS(9692), + }, + [STATE(6397)] = { + [sym_identifier] = ACTIONS(9598), + [sym_newline] = ACTIONS(9600), + [anon_sym_COLON] = ACTIONS(9600), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9598), + [aux_sym_frm_property_statement_token1] = ACTIONS(9598), + [anon_sym_DOT] = ACTIONS(9598), + [anon_sym_BANG] = ACTIONS(9600), + [aux_sym__attribute_identifier_token1] = ACTIONS(9598), + [aux_sym_option_statement_token3] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9598), + [aux_sym_preprocessor_const_token1] = ACTIONS(9598), + [sym_static_modifier] = ACTIONS(9598), + [sym__dim_keyword] = ACTIONS(9598), + [sym__redim_keyword] = ACTIONS(9598), + [aux_sym_get_accessor_token1] = ACTIONS(9598), + [aux_sym_set_accessor_token1] = ACTIONS(9598), + [aux_sym_const_declaration_token1] = ACTIONS(9598), + [anon_sym_LPAREN] = ACTIONS(9600), + [aux_sym_as_type_clause_token2] = ACTIONS(9598), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9598), + [aux_sym_visibility_token1] = ACTIONS(9598), + [aux_sym_visibility_token2] = ACTIONS(9598), + [aux_sym_elseif_fragment_token1] = ACTIONS(9598), + [aux_sym_else_fragment_token1] = ACTIONS(9598), + [aux_sym_select_statement_token1] = ACTIONS(9598), + [aux_sym__for_header_token1] = ACTIONS(9598), + [aux_sym_do_statement_token1] = ACTIONS(9598), + [aux_sym_do_statement_token2] = ACTIONS(9598), + [aux_sym_do_condition_token1] = ACTIONS(9598), + [aux_sym_with_statement_token1] = ACTIONS(9598), + [aux_sym_exit_statement_token1] = ACTIONS(9598), + [sym_end_statement] = ACTIONS(9600), + [aux_sym_on_goto_statement_token1] = ACTIONS(9598), + [aux_sym_on_goto_statement_token2] = ACTIONS(9598), + [aux_sym_on_error_statement_token2] = ACTIONS(9598), + [sym__ambiguous_redim_statement] = ACTIONS(9600), + [aux_sym_erase_statement_token1] = ACTIONS(9598), + [aux_sym_open_statement_token1] = ACTIONS(9598), + [aux_sym_file_mode_token2] = ACTIONS(9598), + [aux_sym_file_access_token2] = ACTIONS(9598), + [aux_sym_file_lock_token2] = ACTIONS(9598), + [aux_sym_print_statement_token1] = ACTIONS(9598), + [anon_sym_PLUS] = ACTIONS(9600), + [anon_sym_DASH] = ACTIONS(9598), + [anon_sym_QMARK] = ACTIONS(9600), + [aux_sym_close_statement_token1] = ACTIONS(9598), + [aux_sym_put_statement_token1] = ACTIONS(9598), + [aux_sym_unlock_statement_token1] = ACTIONS(9598), + [aux_sym_seek_statement_token1] = ACTIONS(9598), + [sym_reset_statement] = ACTIONS(9598), + [aux_sym_raise_event_statement_token1] = ACTIONS(9598), + [sym_stop_statement] = ACTIONS(9598), + [sym_beep_statement] = ACTIONS(9598), + [aux_sym_unload_statement_token1] = ACTIONS(9598), + [aux_sym_def_type_statement_token1] = ACTIONS(9598), + [aux_sym_def_type_statement_token2] = ACTIONS(9598), + [aux_sym_def_type_statement_token3] = ACTIONS(9598), + [aux_sym_def_type_statement_token4] = ACTIONS(9598), + [aux_sym_def_type_statement_token5] = ACTIONS(9598), + [aux_sym_def_type_statement_token6] = ACTIONS(9598), + [aux_sym_def_type_statement_token7] = ACTIONS(9598), + [aux_sym_def_type_statement_token8] = ACTIONS(9598), + [aux_sym_def_type_statement_token9] = ACTIONS(9598), + [aux_sym_def_type_statement_token10] = ACTIONS(9598), + [aux_sym_def_type_statement_token11] = ACTIONS(9598), + [aux_sym_def_type_statement_token12] = ACTIONS(9598), + [aux_sym_def_type_statement_token13] = ACTIONS(9598), + [aux_sym_def_type_statement_token14] = ACTIONS(9598), + [aux_sym_call_statement_token1] = ACTIONS(9598), + [sym__ambiguous_call_statement] = ACTIONS(9598), + [aux_sym_addressof_expression_token1] = ACTIONS(9598), + [aux_sym_type_of_expression_token1] = ACTIONS(9598), + [aux_sym_unary_expression_token1] = ACTIONS(9598), + [sym_string_literal] = ACTIONS(9600), + [sym_number_literal] = ACTIONS(9600), + [aux_sym_boolean_literal_token1] = ACTIONS(9598), + [aux_sym_boolean_literal_token2] = ACTIONS(9598), + [sym_nothing_literal] = ACTIONS(9598), + [sym_null_literal] = ACTIONS(9598), + [sym_empty_literal] = ACTIONS(9598), + [sym_date_literal] = ACTIONS(9600), + [anon_sym_POUND] = ACTIONS(9598), + }, + [STATE(6398)] = { + [sym_identifier] = ACTIONS(9696), + [sym_newline] = ACTIONS(9698), + [anon_sym_COLON] = ACTIONS(9698), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9696), + [aux_sym_frm_property_statement_token1] = ACTIONS(9696), + [anon_sym_DOT] = ACTIONS(9696), + [anon_sym_BANG] = ACTIONS(9698), + [aux_sym__attribute_identifier_token1] = ACTIONS(9696), + [aux_sym_option_statement_token3] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9696), + [aux_sym_preprocessor_const_token1] = ACTIONS(9696), + [sym_static_modifier] = ACTIONS(9696), + [sym__dim_keyword] = ACTIONS(9696), + [sym__redim_keyword] = ACTIONS(9696), + [aux_sym_get_accessor_token1] = ACTIONS(9696), + [aux_sym_set_accessor_token1] = ACTIONS(9696), + [aux_sym_const_declaration_token1] = ACTIONS(9696), + [anon_sym_LPAREN] = ACTIONS(9698), + [aux_sym_as_type_clause_token2] = ACTIONS(9696), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9696), + [aux_sym_visibility_token1] = ACTIONS(9696), + [aux_sym_visibility_token2] = ACTIONS(9696), + [aux_sym_elseif_fragment_token1] = ACTIONS(9696), + [aux_sym_else_fragment_token1] = ACTIONS(9696), + [aux_sym_select_statement_token1] = ACTIONS(9696), + [aux_sym__for_header_token1] = ACTIONS(9696), + [aux_sym_do_statement_token1] = ACTIONS(9696), + [aux_sym_do_condition_token1] = ACTIONS(9696), + [aux_sym_with_statement_token1] = ACTIONS(9696), + [aux_sym_exit_statement_token1] = ACTIONS(9696), + [sym_end_statement] = ACTIONS(9698), + [aux_sym_on_goto_statement_token1] = ACTIONS(9696), + [aux_sym_on_goto_statement_token2] = ACTIONS(9696), + [aux_sym_on_error_statement_token2] = ACTIONS(9696), + [sym__ambiguous_redim_statement] = ACTIONS(9698), + [aux_sym_erase_statement_token1] = ACTIONS(9696), + [aux_sym_open_statement_token1] = ACTIONS(9696), + [aux_sym_file_mode_token2] = ACTIONS(9696), + [aux_sym_file_access_token2] = ACTIONS(9696), + [aux_sym_file_lock_token2] = ACTIONS(9696), + [aux_sym_print_statement_token1] = ACTIONS(9696), + [anon_sym_PLUS] = ACTIONS(9698), + [anon_sym_DASH] = ACTIONS(9696), + [anon_sym_QMARK] = ACTIONS(9698), + [aux_sym_close_statement_token1] = ACTIONS(9696), + [aux_sym_put_statement_token1] = ACTIONS(9696), + [aux_sym_unlock_statement_token1] = ACTIONS(9696), + [aux_sym_seek_statement_token1] = ACTIONS(9696), + [sym_reset_statement] = ACTIONS(9696), + [aux_sym_raise_event_statement_token1] = ACTIONS(9696), + [sym_stop_statement] = ACTIONS(9696), + [sym_beep_statement] = ACTIONS(9696), + [aux_sym_unload_statement_token1] = ACTIONS(9696), + [aux_sym_def_type_statement_token1] = ACTIONS(9696), + [aux_sym_def_type_statement_token2] = ACTIONS(9696), + [aux_sym_def_type_statement_token3] = ACTIONS(9696), + [aux_sym_def_type_statement_token4] = ACTIONS(9696), + [aux_sym_def_type_statement_token5] = ACTIONS(9696), + [aux_sym_def_type_statement_token6] = ACTIONS(9696), + [aux_sym_def_type_statement_token7] = ACTIONS(9696), + [aux_sym_def_type_statement_token8] = ACTIONS(9696), + [aux_sym_def_type_statement_token9] = ACTIONS(9696), + [aux_sym_def_type_statement_token10] = ACTIONS(9696), + [aux_sym_def_type_statement_token11] = ACTIONS(9696), + [aux_sym_def_type_statement_token12] = ACTIONS(9696), + [aux_sym_def_type_statement_token13] = ACTIONS(9696), + [aux_sym_def_type_statement_token14] = ACTIONS(9696), + [aux_sym_call_statement_token1] = ACTIONS(9696), + [sym__ambiguous_call_statement] = ACTIONS(9696), + [aux_sym_addressof_expression_token1] = ACTIONS(9696), + [aux_sym_type_of_expression_token1] = ACTIONS(9696), + [aux_sym_unary_expression_token1] = ACTIONS(9696), + [sym_string_literal] = ACTIONS(9698), + [sym_number_literal] = ACTIONS(9698), + [aux_sym_boolean_literal_token1] = ACTIONS(9696), + [aux_sym_boolean_literal_token2] = ACTIONS(9696), + [sym_nothing_literal] = ACTIONS(9696), + [sym_null_literal] = ACTIONS(9696), + [sym_empty_literal] = ACTIONS(9696), + [sym_date_literal] = ACTIONS(9698), + [anon_sym_POUND] = ACTIONS(9696), + }, + [STATE(6399)] = { + [sym_identifier] = ACTIONS(9700), + [sym_newline] = ACTIONS(9702), + [anon_sym_COLON] = ACTIONS(9702), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9700), + [aux_sym_frm_property_statement_token1] = ACTIONS(9700), + [anon_sym_DOT] = ACTIONS(9700), + [anon_sym_BANG] = ACTIONS(9702), + [aux_sym__attribute_identifier_token1] = ACTIONS(9700), + [aux_sym_option_statement_token3] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9700), + [aux_sym_preprocessor_const_token1] = ACTIONS(9700), + [sym_static_modifier] = ACTIONS(9700), + [sym__dim_keyword] = ACTIONS(9700), + [sym__redim_keyword] = ACTIONS(9700), + [aux_sym_get_accessor_token1] = ACTIONS(9700), + [aux_sym_set_accessor_token1] = ACTIONS(9700), + [aux_sym_const_declaration_token1] = ACTIONS(9700), + [anon_sym_LPAREN] = ACTIONS(9702), + [aux_sym_as_type_clause_token2] = ACTIONS(9700), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9700), + [aux_sym_visibility_token1] = ACTIONS(9700), + [aux_sym_visibility_token2] = ACTIONS(9700), + [aux_sym_elseif_fragment_token1] = ACTIONS(9700), + [aux_sym_else_fragment_token1] = ACTIONS(9700), + [aux_sym_select_statement_token1] = ACTIONS(9700), + [aux_sym__for_header_token1] = ACTIONS(9700), + [aux_sym_do_statement_token1] = ACTIONS(9700), + [aux_sym_do_condition_token1] = ACTIONS(9700), + [aux_sym_with_statement_token1] = ACTIONS(9700), + [aux_sym_exit_statement_token1] = ACTIONS(9700), + [sym_end_statement] = ACTIONS(9702), + [aux_sym_on_goto_statement_token1] = ACTIONS(9700), + [aux_sym_on_goto_statement_token2] = ACTIONS(9700), + [aux_sym_on_error_statement_token2] = ACTIONS(9700), + [sym__ambiguous_redim_statement] = ACTIONS(9702), + [aux_sym_erase_statement_token1] = ACTIONS(9700), + [aux_sym_open_statement_token1] = ACTIONS(9700), + [aux_sym_file_mode_token2] = ACTIONS(9700), + [aux_sym_file_access_token2] = ACTIONS(9700), + [aux_sym_file_lock_token2] = ACTIONS(9700), + [aux_sym_print_statement_token1] = ACTIONS(9700), + [anon_sym_PLUS] = ACTIONS(9702), + [anon_sym_DASH] = ACTIONS(9700), + [anon_sym_QMARK] = ACTIONS(9702), + [aux_sym_close_statement_token1] = ACTIONS(9700), + [aux_sym_put_statement_token1] = ACTIONS(9700), + [aux_sym_unlock_statement_token1] = ACTIONS(9700), + [aux_sym_seek_statement_token1] = ACTIONS(9700), + [sym_reset_statement] = ACTIONS(9700), + [aux_sym_raise_event_statement_token1] = ACTIONS(9700), + [sym_stop_statement] = ACTIONS(9700), + [sym_beep_statement] = ACTIONS(9700), + [aux_sym_unload_statement_token1] = ACTIONS(9700), + [aux_sym_def_type_statement_token1] = ACTIONS(9700), + [aux_sym_def_type_statement_token2] = ACTIONS(9700), + [aux_sym_def_type_statement_token3] = ACTIONS(9700), + [aux_sym_def_type_statement_token4] = ACTIONS(9700), + [aux_sym_def_type_statement_token5] = ACTIONS(9700), + [aux_sym_def_type_statement_token6] = ACTIONS(9700), + [aux_sym_def_type_statement_token7] = ACTIONS(9700), + [aux_sym_def_type_statement_token8] = ACTIONS(9700), + [aux_sym_def_type_statement_token9] = ACTIONS(9700), + [aux_sym_def_type_statement_token10] = ACTIONS(9700), + [aux_sym_def_type_statement_token11] = ACTIONS(9700), + [aux_sym_def_type_statement_token12] = ACTIONS(9700), + [aux_sym_def_type_statement_token13] = ACTIONS(9700), + [aux_sym_def_type_statement_token14] = ACTIONS(9700), + [aux_sym_call_statement_token1] = ACTIONS(9700), + [sym__ambiguous_call_statement] = ACTIONS(9700), + [aux_sym_addressof_expression_token1] = ACTIONS(9700), + [aux_sym_type_of_expression_token1] = ACTIONS(9700), + [aux_sym_unary_expression_token1] = ACTIONS(9700), + [sym_string_literal] = ACTIONS(9702), + [sym_number_literal] = ACTIONS(9702), + [aux_sym_boolean_literal_token1] = ACTIONS(9700), + [aux_sym_boolean_literal_token2] = ACTIONS(9700), + [sym_nothing_literal] = ACTIONS(9700), + [sym_null_literal] = ACTIONS(9700), + [sym_empty_literal] = ACTIONS(9700), + [sym_date_literal] = ACTIONS(9702), + [anon_sym_POUND] = ACTIONS(9700), + }, + [STATE(6400)] = { + [sym_identifier] = ACTIONS(9704), + [sym_newline] = ACTIONS(9706), + [anon_sym_COLON] = ACTIONS(9706), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9704), + [aux_sym_frm_property_statement_token1] = ACTIONS(9704), + [anon_sym_DOT] = ACTIONS(9704), + [anon_sym_BANG] = ACTIONS(9706), + [aux_sym__attribute_identifier_token1] = ACTIONS(9704), + [aux_sym_option_statement_token3] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9704), + [aux_sym_preprocessor_const_token1] = ACTIONS(9704), + [sym_static_modifier] = ACTIONS(9704), + [sym__dim_keyword] = ACTIONS(9704), + [sym__redim_keyword] = ACTIONS(9704), + [aux_sym_get_accessor_token1] = ACTIONS(9704), + [aux_sym_set_accessor_token1] = ACTIONS(9704), + [aux_sym_const_declaration_token1] = ACTIONS(9704), + [anon_sym_LPAREN] = ACTIONS(9706), + [aux_sym_as_type_clause_token2] = ACTIONS(9704), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9704), + [aux_sym_visibility_token1] = ACTIONS(9704), + [aux_sym_visibility_token2] = ACTIONS(9704), + [aux_sym_elseif_fragment_token1] = ACTIONS(9704), + [aux_sym_else_fragment_token1] = ACTIONS(9704), + [aux_sym_select_statement_token1] = ACTIONS(9704), + [aux_sym__for_header_token1] = ACTIONS(9704), + [aux_sym_do_statement_token1] = ACTIONS(9704), + [aux_sym_do_condition_token1] = ACTIONS(9704), + [aux_sym_with_statement_token1] = ACTIONS(9704), + [aux_sym_exit_statement_token1] = ACTIONS(9704), + [sym_end_statement] = ACTIONS(9706), + [aux_sym_on_goto_statement_token1] = ACTIONS(9704), + [aux_sym_on_goto_statement_token2] = ACTIONS(9704), + [aux_sym_on_error_statement_token2] = ACTIONS(9704), + [sym__ambiguous_redim_statement] = ACTIONS(9706), + [aux_sym_erase_statement_token1] = ACTIONS(9704), + [aux_sym_open_statement_token1] = ACTIONS(9704), + [aux_sym_file_mode_token2] = ACTIONS(9704), + [aux_sym_file_access_token2] = ACTIONS(9704), + [aux_sym_file_lock_token2] = ACTIONS(9704), + [aux_sym_print_statement_token1] = ACTIONS(9704), + [anon_sym_PLUS] = ACTIONS(9706), + [anon_sym_DASH] = ACTIONS(9704), + [anon_sym_QMARK] = ACTIONS(9706), + [aux_sym_close_statement_token1] = ACTIONS(9704), + [aux_sym_put_statement_token1] = ACTIONS(9704), + [aux_sym_unlock_statement_token1] = ACTIONS(9704), + [aux_sym_seek_statement_token1] = ACTIONS(9704), + [sym_reset_statement] = ACTIONS(9704), + [aux_sym_raise_event_statement_token1] = ACTIONS(9704), + [sym_stop_statement] = ACTIONS(9704), + [sym_beep_statement] = ACTIONS(9704), + [aux_sym_unload_statement_token1] = ACTIONS(9704), + [aux_sym_def_type_statement_token1] = ACTIONS(9704), + [aux_sym_def_type_statement_token2] = ACTIONS(9704), + [aux_sym_def_type_statement_token3] = ACTIONS(9704), + [aux_sym_def_type_statement_token4] = ACTIONS(9704), + [aux_sym_def_type_statement_token5] = ACTIONS(9704), + [aux_sym_def_type_statement_token6] = ACTIONS(9704), + [aux_sym_def_type_statement_token7] = ACTIONS(9704), + [aux_sym_def_type_statement_token8] = ACTIONS(9704), + [aux_sym_def_type_statement_token9] = ACTIONS(9704), + [aux_sym_def_type_statement_token10] = ACTIONS(9704), + [aux_sym_def_type_statement_token11] = ACTIONS(9704), + [aux_sym_def_type_statement_token12] = ACTIONS(9704), + [aux_sym_def_type_statement_token13] = ACTIONS(9704), + [aux_sym_def_type_statement_token14] = ACTIONS(9704), + [aux_sym_call_statement_token1] = ACTIONS(9704), + [sym__ambiguous_call_statement] = ACTIONS(9704), + [aux_sym_addressof_expression_token1] = ACTIONS(9704), + [aux_sym_type_of_expression_token1] = ACTIONS(9704), + [aux_sym_unary_expression_token1] = ACTIONS(9704), + [sym_string_literal] = ACTIONS(9706), + [sym_number_literal] = ACTIONS(9706), + [aux_sym_boolean_literal_token1] = ACTIONS(9704), + [aux_sym_boolean_literal_token2] = ACTIONS(9704), + [sym_nothing_literal] = ACTIONS(9704), + [sym_null_literal] = ACTIONS(9704), + [sym_empty_literal] = ACTIONS(9704), + [sym_date_literal] = ACTIONS(9706), + [anon_sym_POUND] = ACTIONS(9704), + }, + [STATE(6401)] = { + [sym_identifier] = ACTIONS(9708), + [sym_newline] = ACTIONS(9710), + [anon_sym_COLON] = ACTIONS(9710), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9708), + [aux_sym_frm_property_statement_token1] = ACTIONS(9708), + [anon_sym_DOT] = ACTIONS(9708), + [anon_sym_BANG] = ACTIONS(9710), + [aux_sym__attribute_identifier_token1] = ACTIONS(9708), + [aux_sym_option_statement_token3] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9708), + [aux_sym_preprocessor_const_token1] = ACTIONS(9708), + [sym_static_modifier] = ACTIONS(9708), + [sym__dim_keyword] = ACTIONS(9708), + [sym__redim_keyword] = ACTIONS(9708), + [aux_sym_get_accessor_token1] = ACTIONS(9708), + [aux_sym_set_accessor_token1] = ACTIONS(9708), + [aux_sym_const_declaration_token1] = ACTIONS(9708), + [anon_sym_LPAREN] = ACTIONS(9710), + [aux_sym_as_type_clause_token2] = ACTIONS(9708), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9708), + [aux_sym_visibility_token1] = ACTIONS(9708), + [aux_sym_visibility_token2] = ACTIONS(9708), + [aux_sym_elseif_fragment_token1] = ACTIONS(9708), + [aux_sym_else_fragment_token1] = ACTIONS(9708), + [aux_sym_select_statement_token1] = ACTIONS(9708), + [aux_sym__for_header_token1] = ACTIONS(9708), + [aux_sym_do_statement_token1] = ACTIONS(9708), + [aux_sym_do_condition_token1] = ACTIONS(9708), + [aux_sym_with_statement_token1] = ACTIONS(9708), + [aux_sym_exit_statement_token1] = ACTIONS(9708), + [sym_end_statement] = ACTIONS(9710), + [aux_sym_on_goto_statement_token1] = ACTIONS(9708), + [aux_sym_on_goto_statement_token2] = ACTIONS(9708), + [aux_sym_on_error_statement_token2] = ACTIONS(9708), + [sym__ambiguous_redim_statement] = ACTIONS(9710), + [aux_sym_erase_statement_token1] = ACTIONS(9708), + [aux_sym_open_statement_token1] = ACTIONS(9708), + [aux_sym_file_mode_token2] = ACTIONS(9708), + [aux_sym_file_access_token2] = ACTIONS(9708), + [aux_sym_file_lock_token2] = ACTIONS(9708), + [aux_sym_print_statement_token1] = ACTIONS(9708), + [anon_sym_PLUS] = ACTIONS(9710), + [anon_sym_DASH] = ACTIONS(9708), + [anon_sym_QMARK] = ACTIONS(9710), + [aux_sym_close_statement_token1] = ACTIONS(9708), + [aux_sym_put_statement_token1] = ACTIONS(9708), + [aux_sym_unlock_statement_token1] = ACTIONS(9708), + [aux_sym_seek_statement_token1] = ACTIONS(9708), + [sym_reset_statement] = ACTIONS(9708), + [aux_sym_raise_event_statement_token1] = ACTIONS(9708), + [sym_stop_statement] = ACTIONS(9708), + [sym_beep_statement] = ACTIONS(9708), + [aux_sym_unload_statement_token1] = ACTIONS(9708), + [aux_sym_def_type_statement_token1] = ACTIONS(9708), + [aux_sym_def_type_statement_token2] = ACTIONS(9708), + [aux_sym_def_type_statement_token3] = ACTIONS(9708), + [aux_sym_def_type_statement_token4] = ACTIONS(9708), + [aux_sym_def_type_statement_token5] = ACTIONS(9708), + [aux_sym_def_type_statement_token6] = ACTIONS(9708), + [aux_sym_def_type_statement_token7] = ACTIONS(9708), + [aux_sym_def_type_statement_token8] = ACTIONS(9708), + [aux_sym_def_type_statement_token9] = ACTIONS(9708), + [aux_sym_def_type_statement_token10] = ACTIONS(9708), + [aux_sym_def_type_statement_token11] = ACTIONS(9708), + [aux_sym_def_type_statement_token12] = ACTIONS(9708), + [aux_sym_def_type_statement_token13] = ACTIONS(9708), + [aux_sym_def_type_statement_token14] = ACTIONS(9708), + [aux_sym_call_statement_token1] = ACTIONS(9708), + [sym__ambiguous_call_statement] = ACTIONS(9708), + [aux_sym_addressof_expression_token1] = ACTIONS(9708), + [aux_sym_type_of_expression_token1] = ACTIONS(9708), + [aux_sym_unary_expression_token1] = ACTIONS(9708), + [sym_string_literal] = ACTIONS(9710), + [sym_number_literal] = ACTIONS(9710), + [aux_sym_boolean_literal_token1] = ACTIONS(9708), + [aux_sym_boolean_literal_token2] = ACTIONS(9708), + [sym_nothing_literal] = ACTIONS(9708), + [sym_null_literal] = ACTIONS(9708), + [sym_empty_literal] = ACTIONS(9708), + [sym_date_literal] = ACTIONS(9710), + [anon_sym_POUND] = ACTIONS(9708), + }, + [STATE(6402)] = { + [sym_identifier] = ACTIONS(9146), + [sym_newline] = ACTIONS(9148), + [anon_sym_COLON] = ACTIONS(9148), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9146), + [aux_sym_frm_property_statement_token1] = ACTIONS(9146), + [anon_sym_DOT] = ACTIONS(9146), + [anon_sym_BANG] = ACTIONS(9148), + [aux_sym__attribute_identifier_token1] = ACTIONS(9146), + [aux_sym_option_statement_token3] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9146), + [aux_sym_preprocessor_const_token1] = ACTIONS(9146), + [sym_static_modifier] = ACTIONS(9146), + [sym__dim_keyword] = ACTIONS(9146), + [sym__redim_keyword] = ACTIONS(9146), + [aux_sym_get_accessor_token1] = ACTIONS(9146), + [aux_sym_set_accessor_token1] = ACTIONS(9146), + [aux_sym_const_declaration_token1] = ACTIONS(9146), + [anon_sym_LPAREN] = ACTIONS(9148), + [aux_sym_as_type_clause_token2] = ACTIONS(9146), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9146), + [aux_sym_visibility_token1] = ACTIONS(9146), + [aux_sym_visibility_token2] = ACTIONS(9146), + [aux_sym_elseif_fragment_token1] = ACTIONS(9146), + [aux_sym_else_fragment_token1] = ACTIONS(9146), + [aux_sym_select_statement_token1] = ACTIONS(9146), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9146), + [aux_sym__for_header_token1] = ACTIONS(9146), + [aux_sym_do_statement_token1] = ACTIONS(9146), + [aux_sym_do_condition_token1] = ACTIONS(9146), + [aux_sym_with_statement_token1] = ACTIONS(9146), + [aux_sym_exit_statement_token1] = ACTIONS(9146), + [sym_end_statement] = ACTIONS(9148), + [aux_sym_on_goto_statement_token1] = ACTIONS(9146), + [aux_sym_on_goto_statement_token2] = ACTIONS(9146), + [aux_sym_on_error_statement_token2] = ACTIONS(9146), + [sym__ambiguous_redim_statement] = ACTIONS(9148), + [aux_sym_erase_statement_token1] = ACTIONS(9146), + [aux_sym_open_statement_token1] = ACTIONS(9146), + [aux_sym_file_mode_token2] = ACTIONS(9146), + [aux_sym_file_access_token2] = ACTIONS(9146), + [aux_sym_file_lock_token2] = ACTIONS(9146), + [aux_sym_print_statement_token1] = ACTIONS(9146), + [anon_sym_PLUS] = ACTIONS(9148), + [anon_sym_DASH] = ACTIONS(9146), + [anon_sym_QMARK] = ACTIONS(9148), + [aux_sym_close_statement_token1] = ACTIONS(9146), + [aux_sym_put_statement_token1] = ACTIONS(9146), + [aux_sym_unlock_statement_token1] = ACTIONS(9146), + [aux_sym_seek_statement_token1] = ACTIONS(9146), + [sym_reset_statement] = ACTIONS(9146), + [aux_sym_raise_event_statement_token1] = ACTIONS(9146), + [sym_stop_statement] = ACTIONS(9146), + [sym_beep_statement] = ACTIONS(9146), + [aux_sym_unload_statement_token1] = ACTIONS(9146), + [aux_sym_def_type_statement_token1] = ACTIONS(9146), + [aux_sym_def_type_statement_token2] = ACTIONS(9146), + [aux_sym_def_type_statement_token3] = ACTIONS(9146), + [aux_sym_def_type_statement_token4] = ACTIONS(9146), + [aux_sym_def_type_statement_token5] = ACTIONS(9146), + [aux_sym_def_type_statement_token6] = ACTIONS(9146), + [aux_sym_def_type_statement_token7] = ACTIONS(9146), + [aux_sym_def_type_statement_token8] = ACTIONS(9146), + [aux_sym_def_type_statement_token9] = ACTIONS(9146), + [aux_sym_def_type_statement_token10] = ACTIONS(9146), + [aux_sym_def_type_statement_token11] = ACTIONS(9146), + [aux_sym_def_type_statement_token12] = ACTIONS(9146), + [aux_sym_def_type_statement_token13] = ACTIONS(9146), + [aux_sym_def_type_statement_token14] = ACTIONS(9146), + [aux_sym_call_statement_token1] = ACTIONS(9146), + [sym__ambiguous_call_statement] = ACTIONS(9146), + [aux_sym_addressof_expression_token1] = ACTIONS(9146), + [aux_sym_type_of_expression_token1] = ACTIONS(9146), + [aux_sym_unary_expression_token1] = ACTIONS(9146), + [sym_string_literal] = ACTIONS(9148), + [sym_number_literal] = ACTIONS(9148), + [aux_sym_boolean_literal_token1] = ACTIONS(9146), + [aux_sym_boolean_literal_token2] = ACTIONS(9146), + [sym_nothing_literal] = ACTIONS(9146), + [sym_null_literal] = ACTIONS(9146), + [sym_empty_literal] = ACTIONS(9146), + [sym_date_literal] = ACTIONS(9148), + [anon_sym_POUND] = ACTIONS(9146), + }, + [STATE(6403)] = { + [sym_identifier] = ACTIONS(9188), + [sym_newline] = ACTIONS(9190), + [anon_sym_COLON] = ACTIONS(9190), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9188), + [aux_sym_frm_property_statement_token1] = ACTIONS(9188), + [anon_sym_DOT] = ACTIONS(9188), + [anon_sym_BANG] = ACTIONS(9190), + [aux_sym__attribute_identifier_token1] = ACTIONS(9188), + [aux_sym_option_statement_token3] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9188), + [aux_sym_preprocessor_const_token1] = ACTIONS(9188), + [sym_static_modifier] = ACTIONS(9188), + [sym__dim_keyword] = ACTIONS(9188), + [sym__redim_keyword] = ACTIONS(9188), + [aux_sym_get_accessor_token1] = ACTIONS(9188), + [aux_sym_set_accessor_token1] = ACTIONS(9188), + [aux_sym_const_declaration_token1] = ACTIONS(9188), + [anon_sym_LPAREN] = ACTIONS(9190), + [aux_sym_as_type_clause_token2] = ACTIONS(9188), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9188), + [aux_sym_visibility_token1] = ACTIONS(9188), + [aux_sym_visibility_token2] = ACTIONS(9188), + [aux_sym_elseif_fragment_token1] = ACTIONS(9188), + [aux_sym_else_fragment_token1] = ACTIONS(9188), + [aux_sym_select_statement_token1] = ACTIONS(9188), + [aux_sym__for_header_token1] = ACTIONS(9188), + [aux_sym_do_statement_token1] = ACTIONS(9188), + [aux_sym_do_condition_token1] = ACTIONS(9188), + [aux_sym_with_statement_token1] = ACTIONS(9188), + [aux_sym_exit_statement_token1] = ACTIONS(9188), + [sym_end_statement] = ACTIONS(9190), + [aux_sym_on_goto_statement_token1] = ACTIONS(9188), + [aux_sym_on_goto_statement_token2] = ACTIONS(9188), + [aux_sym_on_error_statement_token2] = ACTIONS(9188), + [sym__ambiguous_redim_statement] = ACTIONS(9190), + [aux_sym_erase_statement_token1] = ACTIONS(9188), + [aux_sym_open_statement_token1] = ACTIONS(9188), + [aux_sym_file_mode_token2] = ACTIONS(9188), + [aux_sym_file_access_token2] = ACTIONS(9188), + [aux_sym_file_lock_token2] = ACTIONS(9188), + [aux_sym_print_statement_token1] = ACTIONS(9188), + [anon_sym_PLUS] = ACTIONS(9190), + [anon_sym_DASH] = ACTIONS(9188), + [anon_sym_QMARK] = ACTIONS(9190), + [aux_sym_close_statement_token1] = ACTIONS(9188), + [aux_sym_put_statement_token1] = ACTIONS(9188), + [aux_sym_unlock_statement_token1] = ACTIONS(9188), + [aux_sym_seek_statement_token1] = ACTIONS(9188), + [sym_reset_statement] = ACTIONS(9188), + [aux_sym_raise_event_statement_token1] = ACTIONS(9188), + [sym_stop_statement] = ACTIONS(9188), + [sym_beep_statement] = ACTIONS(9188), + [aux_sym_unload_statement_token1] = ACTIONS(9188), + [aux_sym_def_type_statement_token1] = ACTIONS(9188), + [aux_sym_def_type_statement_token2] = ACTIONS(9188), + [aux_sym_def_type_statement_token3] = ACTIONS(9188), + [aux_sym_def_type_statement_token4] = ACTIONS(9188), + [aux_sym_def_type_statement_token5] = ACTIONS(9188), + [aux_sym_def_type_statement_token6] = ACTIONS(9188), + [aux_sym_def_type_statement_token7] = ACTIONS(9188), + [aux_sym_def_type_statement_token8] = ACTIONS(9188), + [aux_sym_def_type_statement_token9] = ACTIONS(9188), + [aux_sym_def_type_statement_token10] = ACTIONS(9188), + [aux_sym_def_type_statement_token11] = ACTIONS(9188), + [aux_sym_def_type_statement_token12] = ACTIONS(9188), + [aux_sym_def_type_statement_token13] = ACTIONS(9188), + [aux_sym_def_type_statement_token14] = ACTIONS(9188), + [aux_sym_call_statement_token1] = ACTIONS(9188), + [sym__ambiguous_call_statement] = ACTIONS(9188), + [aux_sym_addressof_expression_token1] = ACTIONS(9188), + [aux_sym_type_of_expression_token1] = ACTIONS(9188), + [aux_sym_unary_expression_token1] = ACTIONS(9188), + [sym_string_literal] = ACTIONS(9190), + [sym_number_literal] = ACTIONS(9190), + [aux_sym_boolean_literal_token1] = ACTIONS(9188), + [aux_sym_boolean_literal_token2] = ACTIONS(9188), + [sym_nothing_literal] = ACTIONS(9188), + [sym_null_literal] = ACTIONS(9188), + [sym_empty_literal] = ACTIONS(9188), + [sym_date_literal] = ACTIONS(9190), + [anon_sym_POUND] = ACTIONS(9188), + }, + [STATE(6404)] = { + [sym_identifier] = ACTIONS(9150), + [sym_newline] = ACTIONS(9152), + [anon_sym_COLON] = ACTIONS(9152), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9154), + [aux_sym_frm_property_statement_token1] = ACTIONS(9150), + [anon_sym_DOT] = ACTIONS(9150), + [anon_sym_BANG] = ACTIONS(9152), + [aux_sym__attribute_identifier_token1] = ACTIONS(9150), + [aux_sym_option_statement_token3] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9154), + [aux_sym_preprocessor_const_token1] = ACTIONS(9150), + [sym_static_modifier] = ACTIONS(9150), + [sym__dim_keyword] = ACTIONS(9150), + [sym__redim_keyword] = ACTIONS(9150), + [aux_sym_get_accessor_token1] = ACTIONS(9150), + [aux_sym_set_accessor_token1] = ACTIONS(9150), + [aux_sym_const_declaration_token1] = ACTIONS(9150), + [anon_sym_LPAREN] = ACTIONS(9152), + [aux_sym_as_type_clause_token2] = ACTIONS(9150), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9150), + [aux_sym_visibility_token1] = ACTIONS(9150), + [aux_sym_visibility_token2] = ACTIONS(9150), + [aux_sym_elseif_fragment_token1] = ACTIONS(9154), + [aux_sym_else_fragment_token1] = ACTIONS(9154), + [aux_sym_select_statement_token1] = ACTIONS(9154), + [aux_sym__for_header_token1] = ACTIONS(9154), + [aux_sym_do_statement_token1] = ACTIONS(9154), + [aux_sym_do_statement_token2] = ACTIONS(9150), + [aux_sym_do_condition_token1] = ACTIONS(9154), + [aux_sym_with_statement_token1] = ACTIONS(9154), + [aux_sym_exit_statement_token1] = ACTIONS(9150), + [sym_end_statement] = ACTIONS(9152), + [aux_sym_on_goto_statement_token1] = ACTIONS(9150), + [aux_sym_on_goto_statement_token2] = ACTIONS(9150), + [aux_sym_on_error_statement_token2] = ACTIONS(9150), + [sym__ambiguous_redim_statement] = ACTIONS(9152), + [aux_sym_erase_statement_token1] = ACTIONS(9150), + [aux_sym_open_statement_token1] = ACTIONS(9150), + [aux_sym_file_mode_token2] = ACTIONS(9150), + [aux_sym_file_access_token2] = ACTIONS(9150), + [aux_sym_file_lock_token2] = ACTIONS(9150), + [aux_sym_print_statement_token1] = ACTIONS(9150), + [anon_sym_PLUS] = ACTIONS(9152), + [anon_sym_DASH] = ACTIONS(9150), + [anon_sym_QMARK] = ACTIONS(9152), + [aux_sym_close_statement_token1] = ACTIONS(9150), + [aux_sym_put_statement_token1] = ACTIONS(9150), + [aux_sym_unlock_statement_token1] = ACTIONS(9150), + [aux_sym_seek_statement_token1] = ACTIONS(9150), + [sym_reset_statement] = ACTIONS(9150), + [aux_sym_raise_event_statement_token1] = ACTIONS(9150), + [sym_stop_statement] = ACTIONS(9150), + [sym_beep_statement] = ACTIONS(9150), + [aux_sym_unload_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token2] = ACTIONS(9150), + [aux_sym_def_type_statement_token3] = ACTIONS(9150), + [aux_sym_def_type_statement_token4] = ACTIONS(9150), + [aux_sym_def_type_statement_token5] = ACTIONS(9150), + [aux_sym_def_type_statement_token6] = ACTIONS(9150), + [aux_sym_def_type_statement_token7] = ACTIONS(9150), + [aux_sym_def_type_statement_token8] = ACTIONS(9150), + [aux_sym_def_type_statement_token9] = ACTIONS(9150), + [aux_sym_def_type_statement_token10] = ACTIONS(9150), + [aux_sym_def_type_statement_token11] = ACTIONS(9150), + [aux_sym_def_type_statement_token12] = ACTIONS(9150), + [aux_sym_def_type_statement_token13] = ACTIONS(9150), + [aux_sym_def_type_statement_token14] = ACTIONS(9150), + [aux_sym_call_statement_token1] = ACTIONS(9150), + [sym__ambiguous_call_statement] = ACTIONS(9150), + [aux_sym_addressof_expression_token1] = ACTIONS(9150), + [aux_sym_type_of_expression_token1] = ACTIONS(9150), + [aux_sym_unary_expression_token1] = ACTIONS(9150), + [sym_string_literal] = ACTIONS(9152), + [sym_number_literal] = ACTIONS(9152), + [aux_sym_boolean_literal_token1] = ACTIONS(9150), + [aux_sym_boolean_literal_token2] = ACTIONS(9150), + [sym_nothing_literal] = ACTIONS(9150), + [sym_null_literal] = ACTIONS(9150), + [sym_empty_literal] = ACTIONS(9150), + [sym_date_literal] = ACTIONS(9152), + [anon_sym_POUND] = ACTIONS(9150), + }, + [STATE(6405)] = { + [sym_identifier] = ACTIONS(9712), + [sym_newline] = ACTIONS(9714), + [anon_sym_COLON] = ACTIONS(9714), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9712), + [aux_sym_frm_property_statement_token1] = ACTIONS(9712), + [anon_sym_DOT] = ACTIONS(9712), + [anon_sym_BANG] = ACTIONS(9714), + [aux_sym__attribute_identifier_token1] = ACTIONS(9712), + [aux_sym_option_statement_token3] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9712), + [aux_sym_preprocessor_const_token1] = ACTIONS(9712), + [sym_static_modifier] = ACTIONS(9712), + [sym__dim_keyword] = ACTIONS(9712), + [sym__redim_keyword] = ACTIONS(9712), + [aux_sym_get_accessor_token1] = ACTIONS(9712), + [aux_sym_set_accessor_token1] = ACTIONS(9712), + [aux_sym_const_declaration_token1] = ACTIONS(9712), + [anon_sym_LPAREN] = ACTIONS(9714), + [aux_sym_as_type_clause_token2] = ACTIONS(9712), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9712), + [aux_sym_visibility_token1] = ACTIONS(9712), + [aux_sym_visibility_token2] = ACTIONS(9712), + [aux_sym_elseif_fragment_token1] = ACTIONS(9712), + [aux_sym_else_fragment_token1] = ACTIONS(9712), + [aux_sym_select_statement_token1] = ACTIONS(9712), + [aux_sym__for_header_token1] = ACTIONS(9712), + [aux_sym_do_statement_token1] = ACTIONS(9712), + [aux_sym_do_condition_token1] = ACTIONS(9712), + [aux_sym_with_statement_token1] = ACTIONS(9712), + [aux_sym_exit_statement_token1] = ACTIONS(9712), + [sym_end_statement] = ACTIONS(9714), + [aux_sym_on_goto_statement_token1] = ACTIONS(9712), + [aux_sym_on_goto_statement_token2] = ACTIONS(9712), + [aux_sym_on_error_statement_token2] = ACTIONS(9712), + [sym__ambiguous_redim_statement] = ACTIONS(9714), + [aux_sym_erase_statement_token1] = ACTIONS(9712), + [aux_sym_open_statement_token1] = ACTIONS(9712), + [aux_sym_file_mode_token2] = ACTIONS(9712), + [aux_sym_file_access_token2] = ACTIONS(9712), + [aux_sym_file_lock_token2] = ACTIONS(9712), + [aux_sym_print_statement_token1] = ACTIONS(9712), + [anon_sym_PLUS] = ACTIONS(9714), + [anon_sym_DASH] = ACTIONS(9712), + [anon_sym_QMARK] = ACTIONS(9714), + [aux_sym_close_statement_token1] = ACTIONS(9712), + [aux_sym_put_statement_token1] = ACTIONS(9712), + [aux_sym_unlock_statement_token1] = ACTIONS(9712), + [aux_sym_seek_statement_token1] = ACTIONS(9712), + [sym_reset_statement] = ACTIONS(9712), + [aux_sym_raise_event_statement_token1] = ACTIONS(9712), + [sym_stop_statement] = ACTIONS(9712), + [sym_beep_statement] = ACTIONS(9712), + [aux_sym_unload_statement_token1] = ACTIONS(9712), + [aux_sym_def_type_statement_token1] = ACTIONS(9712), + [aux_sym_def_type_statement_token2] = ACTIONS(9712), + [aux_sym_def_type_statement_token3] = ACTIONS(9712), + [aux_sym_def_type_statement_token4] = ACTIONS(9712), + [aux_sym_def_type_statement_token5] = ACTIONS(9712), + [aux_sym_def_type_statement_token6] = ACTIONS(9712), + [aux_sym_def_type_statement_token7] = ACTIONS(9712), + [aux_sym_def_type_statement_token8] = ACTIONS(9712), + [aux_sym_def_type_statement_token9] = ACTIONS(9712), + [aux_sym_def_type_statement_token10] = ACTIONS(9712), + [aux_sym_def_type_statement_token11] = ACTIONS(9712), + [aux_sym_def_type_statement_token12] = ACTIONS(9712), + [aux_sym_def_type_statement_token13] = ACTIONS(9712), + [aux_sym_def_type_statement_token14] = ACTIONS(9712), + [aux_sym_call_statement_token1] = ACTIONS(9712), + [sym__ambiguous_call_statement] = ACTIONS(9712), + [aux_sym_addressof_expression_token1] = ACTIONS(9712), + [aux_sym_type_of_expression_token1] = ACTIONS(9712), + [aux_sym_unary_expression_token1] = ACTIONS(9712), + [sym_string_literal] = ACTIONS(9714), + [sym_number_literal] = ACTIONS(9714), + [aux_sym_boolean_literal_token1] = ACTIONS(9712), + [aux_sym_boolean_literal_token2] = ACTIONS(9712), + [sym_nothing_literal] = ACTIONS(9712), + [sym_null_literal] = ACTIONS(9712), + [sym_empty_literal] = ACTIONS(9712), + [sym_date_literal] = ACTIONS(9714), + [anon_sym_POUND] = ACTIONS(9712), + }, + [STATE(6406)] = { + [sym_identifier] = ACTIONS(8312), + [sym_newline] = ACTIONS(8314), + [anon_sym_COLON] = ACTIONS(8314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8312), + [aux_sym_frm_property_statement_token1] = ACTIONS(8312), + [anon_sym_DOT] = ACTIONS(8312), + [anon_sym_BANG] = ACTIONS(8314), + [aux_sym__attribute_identifier_token1] = ACTIONS(8312), + [aux_sym_option_statement_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8312), + [aux_sym_preprocessor_const_token1] = ACTIONS(8312), + [sym_static_modifier] = ACTIONS(8312), + [sym__dim_keyword] = ACTIONS(8312), + [sym__redim_keyword] = ACTIONS(8312), + [aux_sym_get_accessor_token1] = ACTIONS(8312), + [aux_sym_set_accessor_token1] = ACTIONS(8312), + [aux_sym_const_declaration_token1] = ACTIONS(8312), + [anon_sym_LPAREN] = ACTIONS(8314), + [aux_sym_as_type_clause_token2] = ACTIONS(8312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8312), + [aux_sym_visibility_token1] = ACTIONS(8312), + [aux_sym_visibility_token2] = ACTIONS(8312), + [aux_sym_elseif_fragment_token1] = ACTIONS(8312), + [aux_sym_else_fragment_token1] = ACTIONS(8312), + [aux_sym_select_statement_token1] = ACTIONS(8312), + [aux_sym__for_header_token1] = ACTIONS(8312), + [aux_sym_do_statement_token1] = ACTIONS(8312), + [aux_sym_do_condition_token1] = ACTIONS(8312), + [aux_sym_while_statement_token1] = ACTIONS(8312), + [aux_sym_with_statement_token1] = ACTIONS(8312), + [aux_sym_exit_statement_token1] = ACTIONS(8312), + [sym_end_statement] = ACTIONS(8314), + [aux_sym_on_goto_statement_token1] = ACTIONS(8312), + [aux_sym_on_goto_statement_token2] = ACTIONS(8312), + [aux_sym_on_error_statement_token2] = ACTIONS(8312), + [sym__ambiguous_redim_statement] = ACTIONS(8314), + [aux_sym_erase_statement_token1] = ACTIONS(8312), + [aux_sym_open_statement_token1] = ACTIONS(8312), + [aux_sym_file_mode_token2] = ACTIONS(8312), + [aux_sym_file_access_token2] = ACTIONS(8312), + [aux_sym_file_lock_token2] = ACTIONS(8312), + [aux_sym_print_statement_token1] = ACTIONS(8312), + [anon_sym_PLUS] = ACTIONS(8314), + [anon_sym_DASH] = ACTIONS(8312), + [anon_sym_QMARK] = ACTIONS(8314), + [aux_sym_close_statement_token1] = ACTIONS(8312), + [aux_sym_put_statement_token1] = ACTIONS(8312), + [aux_sym_unlock_statement_token1] = ACTIONS(8312), + [aux_sym_seek_statement_token1] = ACTIONS(8312), + [sym_reset_statement] = ACTIONS(8312), + [aux_sym_raise_event_statement_token1] = ACTIONS(8312), + [sym_stop_statement] = ACTIONS(8312), + [sym_beep_statement] = ACTIONS(8312), + [aux_sym_unload_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token2] = ACTIONS(8312), + [aux_sym_def_type_statement_token3] = ACTIONS(8312), + [aux_sym_def_type_statement_token4] = ACTIONS(8312), + [aux_sym_def_type_statement_token5] = ACTIONS(8312), + [aux_sym_def_type_statement_token6] = ACTIONS(8312), + [aux_sym_def_type_statement_token7] = ACTIONS(8312), + [aux_sym_def_type_statement_token8] = ACTIONS(8312), + [aux_sym_def_type_statement_token9] = ACTIONS(8312), + [aux_sym_def_type_statement_token10] = ACTIONS(8312), + [aux_sym_def_type_statement_token11] = ACTIONS(8312), + [aux_sym_def_type_statement_token12] = ACTIONS(8312), + [aux_sym_def_type_statement_token13] = ACTIONS(8312), + [aux_sym_def_type_statement_token14] = ACTIONS(8312), + [aux_sym_call_statement_token1] = ACTIONS(8312), + [sym__ambiguous_call_statement] = ACTIONS(8312), + [aux_sym_addressof_expression_token1] = ACTIONS(8312), + [aux_sym_type_of_expression_token1] = ACTIONS(8312), + [aux_sym_unary_expression_token1] = ACTIONS(8312), + [sym_string_literal] = ACTIONS(8314), + [sym_number_literal] = ACTIONS(8314), + [aux_sym_boolean_literal_token1] = ACTIONS(8312), + [aux_sym_boolean_literal_token2] = ACTIONS(8312), + [sym_nothing_literal] = ACTIONS(8312), + [sym_null_literal] = ACTIONS(8312), + [sym_empty_literal] = ACTIONS(8312), + [sym_date_literal] = ACTIONS(8314), + [anon_sym_POUND] = ACTIONS(8312), + }, + [STATE(6407)] = { + [sym_identifier] = ACTIONS(9156), + [sym_newline] = ACTIONS(9158), + [anon_sym_COLON] = ACTIONS(9158), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9156), + [aux_sym_frm_property_statement_token1] = ACTIONS(9156), + [anon_sym_DOT] = ACTIONS(9156), + [anon_sym_BANG] = ACTIONS(9158), + [aux_sym__attribute_identifier_token1] = ACTIONS(9156), + [aux_sym_option_statement_token3] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9156), + [aux_sym_preprocessor_const_token1] = ACTIONS(9156), + [sym_static_modifier] = ACTIONS(9156), + [sym__dim_keyword] = ACTIONS(9156), + [sym__redim_keyword] = ACTIONS(9156), + [aux_sym_get_accessor_token1] = ACTIONS(9156), + [aux_sym_set_accessor_token1] = ACTIONS(9156), + [aux_sym_const_declaration_token1] = ACTIONS(9156), + [anon_sym_LPAREN] = ACTIONS(9158), + [aux_sym_as_type_clause_token2] = ACTIONS(9156), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9156), + [aux_sym_visibility_token1] = ACTIONS(9156), + [aux_sym_visibility_token2] = ACTIONS(9156), + [aux_sym_elseif_fragment_token1] = ACTIONS(9156), + [aux_sym_else_fragment_token1] = ACTIONS(9156), + [aux_sym_select_statement_token1] = ACTIONS(9156), + [aux_sym__for_header_token1] = ACTIONS(9156), + [aux_sym_do_statement_token1] = ACTIONS(9156), + [aux_sym_do_condition_token1] = ACTIONS(9156), + [aux_sym_while_statement_token1] = ACTIONS(9156), + [aux_sym_with_statement_token1] = ACTIONS(9156), + [aux_sym_exit_statement_token1] = ACTIONS(9156), + [sym_end_statement] = ACTIONS(9158), + [aux_sym_on_goto_statement_token1] = ACTIONS(9156), + [aux_sym_on_goto_statement_token2] = ACTIONS(9156), + [aux_sym_on_error_statement_token2] = ACTIONS(9156), + [sym__ambiguous_redim_statement] = ACTIONS(9158), + [aux_sym_erase_statement_token1] = ACTIONS(9156), + [aux_sym_open_statement_token1] = ACTIONS(9156), + [aux_sym_file_mode_token2] = ACTIONS(9156), + [aux_sym_file_access_token2] = ACTIONS(9156), + [aux_sym_file_lock_token2] = ACTIONS(9156), + [aux_sym_print_statement_token1] = ACTIONS(9156), + [anon_sym_PLUS] = ACTIONS(9158), + [anon_sym_DASH] = ACTIONS(9156), + [anon_sym_QMARK] = ACTIONS(9158), + [aux_sym_close_statement_token1] = ACTIONS(9156), + [aux_sym_put_statement_token1] = ACTIONS(9156), + [aux_sym_unlock_statement_token1] = ACTIONS(9156), + [aux_sym_seek_statement_token1] = ACTIONS(9156), + [sym_reset_statement] = ACTIONS(9156), + [aux_sym_raise_event_statement_token1] = ACTIONS(9156), + [sym_stop_statement] = ACTIONS(9156), + [sym_beep_statement] = ACTIONS(9156), + [aux_sym_unload_statement_token1] = ACTIONS(9156), + [aux_sym_def_type_statement_token1] = ACTIONS(9156), + [aux_sym_def_type_statement_token2] = ACTIONS(9156), + [aux_sym_def_type_statement_token3] = ACTIONS(9156), + [aux_sym_def_type_statement_token4] = ACTIONS(9156), + [aux_sym_def_type_statement_token5] = ACTIONS(9156), + [aux_sym_def_type_statement_token6] = ACTIONS(9156), + [aux_sym_def_type_statement_token7] = ACTIONS(9156), + [aux_sym_def_type_statement_token8] = ACTIONS(9156), + [aux_sym_def_type_statement_token9] = ACTIONS(9156), + [aux_sym_def_type_statement_token10] = ACTIONS(9156), + [aux_sym_def_type_statement_token11] = ACTIONS(9156), + [aux_sym_def_type_statement_token12] = ACTIONS(9156), + [aux_sym_def_type_statement_token13] = ACTIONS(9156), + [aux_sym_def_type_statement_token14] = ACTIONS(9156), + [aux_sym_call_statement_token1] = ACTIONS(9156), + [sym__ambiguous_call_statement] = ACTIONS(9156), + [aux_sym_addressof_expression_token1] = ACTIONS(9156), + [aux_sym_type_of_expression_token1] = ACTIONS(9156), + [aux_sym_unary_expression_token1] = ACTIONS(9156), + [sym_string_literal] = ACTIONS(9158), + [sym_number_literal] = ACTIONS(9158), + [aux_sym_boolean_literal_token1] = ACTIONS(9156), + [aux_sym_boolean_literal_token2] = ACTIONS(9156), + [sym_nothing_literal] = ACTIONS(9156), + [sym_null_literal] = ACTIONS(9156), + [sym_empty_literal] = ACTIONS(9156), + [sym_date_literal] = ACTIONS(9158), + [anon_sym_POUND] = ACTIONS(9156), + }, + [STATE(6408)] = { + [sym_identifier] = ACTIONS(9716), + [sym_newline] = ACTIONS(9718), + [anon_sym_COLON] = ACTIONS(9718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9716), + [aux_sym_frm_property_statement_token1] = ACTIONS(9716), + [anon_sym_DOT] = ACTIONS(9716), + [anon_sym_BANG] = ACTIONS(9718), + [aux_sym__attribute_identifier_token1] = ACTIONS(9716), + [aux_sym_option_statement_token3] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9716), + [aux_sym_preprocessor_const_token1] = ACTIONS(9716), + [sym_static_modifier] = ACTIONS(9716), + [sym__dim_keyword] = ACTIONS(9716), + [sym__redim_keyword] = ACTIONS(9716), + [aux_sym_get_accessor_token1] = ACTIONS(9716), + [aux_sym_set_accessor_token1] = ACTIONS(9716), + [aux_sym_const_declaration_token1] = ACTIONS(9716), + [anon_sym_LPAREN] = ACTIONS(9718), + [aux_sym_as_type_clause_token2] = ACTIONS(9716), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9716), + [aux_sym_visibility_token1] = ACTIONS(9716), + [aux_sym_visibility_token2] = ACTIONS(9716), + [aux_sym_elseif_fragment_token1] = ACTIONS(9716), + [aux_sym_else_fragment_token1] = ACTIONS(9716), + [aux_sym_select_statement_token1] = ACTIONS(9716), + [aux_sym__for_header_token1] = ACTIONS(9716), + [aux_sym_do_statement_token1] = ACTIONS(9716), + [aux_sym_do_condition_token1] = ACTIONS(9716), + [aux_sym_with_statement_token1] = ACTIONS(9716), + [aux_sym_exit_statement_token1] = ACTIONS(9716), + [sym_end_statement] = ACTIONS(9718), + [aux_sym_on_goto_statement_token1] = ACTIONS(9716), + [aux_sym_on_goto_statement_token2] = ACTIONS(9716), + [aux_sym_on_error_statement_token2] = ACTIONS(9716), + [sym__ambiguous_redim_statement] = ACTIONS(9718), + [aux_sym_erase_statement_token1] = ACTIONS(9716), + [aux_sym_open_statement_token1] = ACTIONS(9716), + [aux_sym_file_mode_token2] = ACTIONS(9716), + [aux_sym_file_access_token2] = ACTIONS(9716), + [aux_sym_file_lock_token2] = ACTIONS(9716), + [aux_sym_print_statement_token1] = ACTIONS(9716), + [anon_sym_PLUS] = ACTIONS(9718), + [anon_sym_DASH] = ACTIONS(9716), + [anon_sym_QMARK] = ACTIONS(9718), + [aux_sym_close_statement_token1] = ACTIONS(9716), + [aux_sym_put_statement_token1] = ACTIONS(9716), + [aux_sym_unlock_statement_token1] = ACTIONS(9716), + [aux_sym_seek_statement_token1] = ACTIONS(9716), + [sym_reset_statement] = ACTIONS(9716), + [aux_sym_raise_event_statement_token1] = ACTIONS(9716), + [sym_stop_statement] = ACTIONS(9716), + [sym_beep_statement] = ACTIONS(9716), + [aux_sym_unload_statement_token1] = ACTIONS(9716), + [aux_sym_def_type_statement_token1] = ACTIONS(9716), + [aux_sym_def_type_statement_token2] = ACTIONS(9716), + [aux_sym_def_type_statement_token3] = ACTIONS(9716), + [aux_sym_def_type_statement_token4] = ACTIONS(9716), + [aux_sym_def_type_statement_token5] = ACTIONS(9716), + [aux_sym_def_type_statement_token6] = ACTIONS(9716), + [aux_sym_def_type_statement_token7] = ACTIONS(9716), + [aux_sym_def_type_statement_token8] = ACTIONS(9716), + [aux_sym_def_type_statement_token9] = ACTIONS(9716), + [aux_sym_def_type_statement_token10] = ACTIONS(9716), + [aux_sym_def_type_statement_token11] = ACTIONS(9716), + [aux_sym_def_type_statement_token12] = ACTIONS(9716), + [aux_sym_def_type_statement_token13] = ACTIONS(9716), + [aux_sym_def_type_statement_token14] = ACTIONS(9716), + [aux_sym_call_statement_token1] = ACTIONS(9716), + [sym__ambiguous_call_statement] = ACTIONS(9716), + [aux_sym_addressof_expression_token1] = ACTIONS(9716), + [aux_sym_type_of_expression_token1] = ACTIONS(9716), + [aux_sym_unary_expression_token1] = ACTIONS(9716), + [sym_string_literal] = ACTIONS(9718), + [sym_number_literal] = ACTIONS(9718), + [aux_sym_boolean_literal_token1] = ACTIONS(9716), + [aux_sym_boolean_literal_token2] = ACTIONS(9716), + [sym_nothing_literal] = ACTIONS(9716), + [sym_null_literal] = ACTIONS(9716), + [sym_empty_literal] = ACTIONS(9716), + [sym_date_literal] = ACTIONS(9718), + [anon_sym_POUND] = ACTIONS(9716), + }, + [STATE(6409)] = { + [sym_identifier] = ACTIONS(9192), + [sym_newline] = ACTIONS(9194), + [anon_sym_COLON] = ACTIONS(9194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9192), + [aux_sym_frm_property_statement_token1] = ACTIONS(9192), + [anon_sym_DOT] = ACTIONS(9192), + [anon_sym_BANG] = ACTIONS(9194), + [aux_sym__attribute_identifier_token1] = ACTIONS(9192), + [aux_sym_option_statement_token3] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9192), + [aux_sym_preprocessor_const_token1] = ACTIONS(9192), + [sym_static_modifier] = ACTIONS(9192), + [sym__dim_keyword] = ACTIONS(9192), + [sym__redim_keyword] = ACTIONS(9192), + [aux_sym_get_accessor_token1] = ACTIONS(9192), + [aux_sym_set_accessor_token1] = ACTIONS(9192), + [aux_sym_const_declaration_token1] = ACTIONS(9192), + [anon_sym_LPAREN] = ACTIONS(9194), + [aux_sym_as_type_clause_token2] = ACTIONS(9192), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9192), + [aux_sym_visibility_token1] = ACTIONS(9192), + [aux_sym_visibility_token2] = ACTIONS(9192), + [aux_sym_elseif_fragment_token1] = ACTIONS(9192), + [aux_sym_else_fragment_token1] = ACTIONS(9192), + [aux_sym_select_statement_token1] = ACTIONS(9192), + [aux_sym__for_header_token1] = ACTIONS(9192), + [aux_sym_do_statement_token1] = ACTIONS(9192), + [aux_sym_do_condition_token1] = ACTIONS(9192), + [aux_sym_with_statement_token1] = ACTIONS(9192), + [aux_sym_exit_statement_token1] = ACTIONS(9192), + [sym_end_statement] = ACTIONS(9194), + [aux_sym_on_goto_statement_token1] = ACTIONS(9192), + [aux_sym_on_goto_statement_token2] = ACTIONS(9192), + [aux_sym_on_error_statement_token2] = ACTIONS(9192), + [sym__ambiguous_redim_statement] = ACTIONS(9194), + [aux_sym_erase_statement_token1] = ACTIONS(9192), + [aux_sym_open_statement_token1] = ACTIONS(9192), + [aux_sym_file_mode_token2] = ACTIONS(9192), + [aux_sym_file_access_token2] = ACTIONS(9192), + [aux_sym_file_lock_token2] = ACTIONS(9192), + [aux_sym_print_statement_token1] = ACTIONS(9192), + [anon_sym_PLUS] = ACTIONS(9194), + [anon_sym_DASH] = ACTIONS(9192), + [anon_sym_QMARK] = ACTIONS(9194), + [aux_sym_close_statement_token1] = ACTIONS(9192), + [aux_sym_put_statement_token1] = ACTIONS(9192), + [aux_sym_unlock_statement_token1] = ACTIONS(9192), + [aux_sym_seek_statement_token1] = ACTIONS(9192), + [sym_reset_statement] = ACTIONS(9192), + [aux_sym_raise_event_statement_token1] = ACTIONS(9192), + [sym_stop_statement] = ACTIONS(9192), + [sym_beep_statement] = ACTIONS(9192), + [aux_sym_unload_statement_token1] = ACTIONS(9192), + [aux_sym_def_type_statement_token1] = ACTIONS(9192), + [aux_sym_def_type_statement_token2] = ACTIONS(9192), + [aux_sym_def_type_statement_token3] = ACTIONS(9192), + [aux_sym_def_type_statement_token4] = ACTIONS(9192), + [aux_sym_def_type_statement_token5] = ACTIONS(9192), + [aux_sym_def_type_statement_token6] = ACTIONS(9192), + [aux_sym_def_type_statement_token7] = ACTIONS(9192), + [aux_sym_def_type_statement_token8] = ACTIONS(9192), + [aux_sym_def_type_statement_token9] = ACTIONS(9192), + [aux_sym_def_type_statement_token10] = ACTIONS(9192), + [aux_sym_def_type_statement_token11] = ACTIONS(9192), + [aux_sym_def_type_statement_token12] = ACTIONS(9192), + [aux_sym_def_type_statement_token13] = ACTIONS(9192), + [aux_sym_def_type_statement_token14] = ACTIONS(9192), + [aux_sym_call_statement_token1] = ACTIONS(9192), + [sym__ambiguous_call_statement] = ACTIONS(9192), + [aux_sym_addressof_expression_token1] = ACTIONS(9192), + [aux_sym_type_of_expression_token1] = ACTIONS(9192), + [aux_sym_unary_expression_token1] = ACTIONS(9192), + [sym_string_literal] = ACTIONS(9194), + [sym_number_literal] = ACTIONS(9194), + [aux_sym_boolean_literal_token1] = ACTIONS(9192), + [aux_sym_boolean_literal_token2] = ACTIONS(9192), + [sym_nothing_literal] = ACTIONS(9192), + [sym_null_literal] = ACTIONS(9192), + [sym_empty_literal] = ACTIONS(9192), + [sym_date_literal] = ACTIONS(9194), + [anon_sym_POUND] = ACTIONS(9192), + }, + [STATE(6410)] = { + [sym_identifier] = ACTIONS(9360), + [sym_newline] = ACTIONS(9362), + [anon_sym_COLON] = ACTIONS(9362), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9360), + [aux_sym_frm_property_statement_token1] = ACTIONS(9360), + [anon_sym_DOT] = ACTIONS(9360), + [anon_sym_BANG] = ACTIONS(9362), + [aux_sym__attribute_identifier_token1] = ACTIONS(9360), + [aux_sym_option_statement_token3] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9360), + [aux_sym_preprocessor_const_token1] = ACTIONS(9360), + [sym_static_modifier] = ACTIONS(9360), + [sym__dim_keyword] = ACTIONS(9360), + [sym__redim_keyword] = ACTIONS(9360), + [aux_sym_get_accessor_token1] = ACTIONS(9360), + [aux_sym_set_accessor_token1] = ACTIONS(9360), + [aux_sym_const_declaration_token1] = ACTIONS(9360), + [anon_sym_LPAREN] = ACTIONS(9362), + [aux_sym_as_type_clause_token2] = ACTIONS(9360), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9360), + [aux_sym_visibility_token1] = ACTIONS(9360), + [aux_sym_visibility_token2] = ACTIONS(9360), + [aux_sym_elseif_fragment_token1] = ACTIONS(9360), + [aux_sym_else_fragment_token1] = ACTIONS(9360), + [aux_sym_select_statement_token1] = ACTIONS(9360), + [aux_sym_select_statement_token2] = ACTIONS(9360), + [aux_sym__for_header_token1] = ACTIONS(9360), + [aux_sym_do_statement_token1] = ACTIONS(9360), + [aux_sym_do_condition_token1] = ACTIONS(9360), + [aux_sym_with_statement_token1] = ACTIONS(9360), + [aux_sym_exit_statement_token1] = ACTIONS(9360), + [sym_end_statement] = ACTIONS(9362), + [aux_sym_on_goto_statement_token1] = ACTIONS(9360), + [aux_sym_on_goto_statement_token2] = ACTIONS(9360), + [aux_sym_on_error_statement_token2] = ACTIONS(9360), + [sym__ambiguous_redim_statement] = ACTIONS(9362), + [aux_sym_erase_statement_token1] = ACTIONS(9360), + [aux_sym_open_statement_token1] = ACTIONS(9360), + [aux_sym_file_mode_token2] = ACTIONS(9360), + [aux_sym_file_access_token2] = ACTIONS(9360), + [aux_sym_file_lock_token2] = ACTIONS(9360), + [aux_sym_print_statement_token1] = ACTIONS(9360), + [anon_sym_PLUS] = ACTIONS(9362), + [anon_sym_DASH] = ACTIONS(9360), + [anon_sym_QMARK] = ACTIONS(9362), + [aux_sym_close_statement_token1] = ACTIONS(9360), + [aux_sym_put_statement_token1] = ACTIONS(9360), + [aux_sym_unlock_statement_token1] = ACTIONS(9360), + [aux_sym_seek_statement_token1] = ACTIONS(9360), + [sym_reset_statement] = ACTIONS(9360), + [aux_sym_raise_event_statement_token1] = ACTIONS(9360), + [sym_stop_statement] = ACTIONS(9360), + [sym_beep_statement] = ACTIONS(9360), + [aux_sym_unload_statement_token1] = ACTIONS(9360), + [aux_sym_def_type_statement_token1] = ACTIONS(9360), + [aux_sym_def_type_statement_token2] = ACTIONS(9360), + [aux_sym_def_type_statement_token3] = ACTIONS(9360), + [aux_sym_def_type_statement_token4] = ACTIONS(9360), + [aux_sym_def_type_statement_token5] = ACTIONS(9360), + [aux_sym_def_type_statement_token6] = ACTIONS(9360), + [aux_sym_def_type_statement_token7] = ACTIONS(9360), + [aux_sym_def_type_statement_token8] = ACTIONS(9360), + [aux_sym_def_type_statement_token9] = ACTIONS(9360), + [aux_sym_def_type_statement_token10] = ACTIONS(9360), + [aux_sym_def_type_statement_token11] = ACTIONS(9360), + [aux_sym_def_type_statement_token12] = ACTIONS(9360), + [aux_sym_def_type_statement_token13] = ACTIONS(9360), + [aux_sym_def_type_statement_token14] = ACTIONS(9360), + [aux_sym_call_statement_token1] = ACTIONS(9360), + [sym__ambiguous_call_statement] = ACTIONS(9360), + [aux_sym_addressof_expression_token1] = ACTIONS(9360), + [aux_sym_type_of_expression_token1] = ACTIONS(9360), + [aux_sym_unary_expression_token1] = ACTIONS(9360), + [sym_string_literal] = ACTIONS(9362), + [sym_number_literal] = ACTIONS(9362), + [aux_sym_boolean_literal_token1] = ACTIONS(9360), + [aux_sym_boolean_literal_token2] = ACTIONS(9360), + [sym_nothing_literal] = ACTIONS(9360), + [sym_null_literal] = ACTIONS(9360), + [sym_empty_literal] = ACTIONS(9360), + [sym_date_literal] = ACTIONS(9362), + [anon_sym_POUND] = ACTIONS(9360), + }, + [STATE(6411)] = { + [sym_identifier] = ACTIONS(9160), + [sym_newline] = ACTIONS(9162), + [anon_sym_COLON] = ACTIONS(9162), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9160), + [aux_sym_frm_property_statement_token1] = ACTIONS(9160), + [anon_sym_DOT] = ACTIONS(9160), + [anon_sym_BANG] = ACTIONS(9162), + [aux_sym__attribute_identifier_token1] = ACTIONS(9160), + [aux_sym_option_statement_token3] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9160), + [aux_sym_preprocessor_const_token1] = ACTIONS(9160), + [sym_static_modifier] = ACTIONS(9160), + [sym__dim_keyword] = ACTIONS(9160), + [sym__redim_keyword] = ACTIONS(9160), + [aux_sym_get_accessor_token1] = ACTIONS(9160), + [aux_sym_set_accessor_token1] = ACTIONS(9160), + [aux_sym_const_declaration_token1] = ACTIONS(9160), + [anon_sym_LPAREN] = ACTIONS(9162), + [aux_sym_as_type_clause_token2] = ACTIONS(9160), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9160), + [aux_sym_visibility_token1] = ACTIONS(9160), + [aux_sym_visibility_token2] = ACTIONS(9160), + [aux_sym_elseif_fragment_token1] = ACTIONS(9160), + [aux_sym_else_fragment_token1] = ACTIONS(9160), + [aux_sym_select_statement_token1] = ACTIONS(9160), + [aux_sym__for_header_token1] = ACTIONS(9160), + [aux_sym_do_statement_token1] = ACTIONS(9160), + [aux_sym_do_condition_token1] = ACTIONS(9160), + [aux_sym_while_statement_token1] = ACTIONS(9160), + [aux_sym_with_statement_token1] = ACTIONS(9160), + [aux_sym_exit_statement_token1] = ACTIONS(9160), + [sym_end_statement] = ACTIONS(9162), + [aux_sym_on_goto_statement_token1] = ACTIONS(9160), + [aux_sym_on_goto_statement_token2] = ACTIONS(9160), + [aux_sym_on_error_statement_token2] = ACTIONS(9160), + [sym__ambiguous_redim_statement] = ACTIONS(9162), + [aux_sym_erase_statement_token1] = ACTIONS(9160), + [aux_sym_open_statement_token1] = ACTIONS(9160), + [aux_sym_file_mode_token2] = ACTIONS(9160), + [aux_sym_file_access_token2] = ACTIONS(9160), + [aux_sym_file_lock_token2] = ACTIONS(9160), + [aux_sym_print_statement_token1] = ACTIONS(9160), + [anon_sym_PLUS] = ACTIONS(9162), + [anon_sym_DASH] = ACTIONS(9160), + [anon_sym_QMARK] = ACTIONS(9162), + [aux_sym_close_statement_token1] = ACTIONS(9160), + [aux_sym_put_statement_token1] = ACTIONS(9160), + [aux_sym_unlock_statement_token1] = ACTIONS(9160), + [aux_sym_seek_statement_token1] = ACTIONS(9160), + [sym_reset_statement] = ACTIONS(9160), + [aux_sym_raise_event_statement_token1] = ACTIONS(9160), + [sym_stop_statement] = ACTIONS(9160), + [sym_beep_statement] = ACTIONS(9160), + [aux_sym_unload_statement_token1] = ACTIONS(9160), + [aux_sym_def_type_statement_token1] = ACTIONS(9160), + [aux_sym_def_type_statement_token2] = ACTIONS(9160), + [aux_sym_def_type_statement_token3] = ACTIONS(9160), + [aux_sym_def_type_statement_token4] = ACTIONS(9160), + [aux_sym_def_type_statement_token5] = ACTIONS(9160), + [aux_sym_def_type_statement_token6] = ACTIONS(9160), + [aux_sym_def_type_statement_token7] = ACTIONS(9160), + [aux_sym_def_type_statement_token8] = ACTIONS(9160), + [aux_sym_def_type_statement_token9] = ACTIONS(9160), + [aux_sym_def_type_statement_token10] = ACTIONS(9160), + [aux_sym_def_type_statement_token11] = ACTIONS(9160), + [aux_sym_def_type_statement_token12] = ACTIONS(9160), + [aux_sym_def_type_statement_token13] = ACTIONS(9160), + [aux_sym_def_type_statement_token14] = ACTIONS(9160), + [aux_sym_call_statement_token1] = ACTIONS(9160), + [sym__ambiguous_call_statement] = ACTIONS(9160), + [aux_sym_addressof_expression_token1] = ACTIONS(9160), + [aux_sym_type_of_expression_token1] = ACTIONS(9160), + [aux_sym_unary_expression_token1] = ACTIONS(9160), + [sym_string_literal] = ACTIONS(9162), + [sym_number_literal] = ACTIONS(9162), + [aux_sym_boolean_literal_token1] = ACTIONS(9160), + [aux_sym_boolean_literal_token2] = ACTIONS(9160), + [sym_nothing_literal] = ACTIONS(9160), + [sym_null_literal] = ACTIONS(9160), + [sym_empty_literal] = ACTIONS(9160), + [sym_date_literal] = ACTIONS(9162), + [anon_sym_POUND] = ACTIONS(9160), + }, + [STATE(6412)] = { + [sym_identifier] = ACTIONS(8809), + [sym_newline] = ACTIONS(8811), + [anon_sym_COLON] = ACTIONS(8811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8809), + [aux_sym_frm_property_statement_token1] = ACTIONS(8809), + [anon_sym_DOT] = ACTIONS(8809), + [anon_sym_BANG] = ACTIONS(8811), + [aux_sym__attribute_identifier_token1] = ACTIONS(8809), + [aux_sym_option_statement_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8809), + [aux_sym_preprocessor_const_token1] = ACTIONS(8809), + [sym_static_modifier] = ACTIONS(8809), + [sym__dim_keyword] = ACTIONS(8809), + [sym__redim_keyword] = ACTIONS(8809), + [aux_sym_get_accessor_token1] = ACTIONS(8809), + [aux_sym_set_accessor_token1] = ACTIONS(8809), + [aux_sym_const_declaration_token1] = ACTIONS(8809), + [anon_sym_LPAREN] = ACTIONS(8811), + [aux_sym_as_type_clause_token2] = ACTIONS(8809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8809), + [aux_sym_visibility_token1] = ACTIONS(8809), + [aux_sym_visibility_token2] = ACTIONS(8809), + [aux_sym_elseif_fragment_token1] = ACTIONS(8809), + [aux_sym_else_fragment_token1] = ACTIONS(8809), + [aux_sym_select_statement_token1] = ACTIONS(8809), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8809), + [aux_sym__for_header_token1] = ACTIONS(8809), + [aux_sym_do_statement_token1] = ACTIONS(8809), + [aux_sym_do_condition_token1] = ACTIONS(8809), + [aux_sym_with_statement_token1] = ACTIONS(8809), + [aux_sym_exit_statement_token1] = ACTIONS(8809), + [sym_end_statement] = ACTIONS(8811), + [aux_sym_on_goto_statement_token1] = ACTIONS(8809), + [aux_sym_on_goto_statement_token2] = ACTIONS(8809), + [aux_sym_on_error_statement_token2] = ACTIONS(8809), + [sym__ambiguous_redim_statement] = ACTIONS(8811), + [aux_sym_erase_statement_token1] = ACTIONS(8809), + [aux_sym_open_statement_token1] = ACTIONS(8809), + [aux_sym_file_mode_token2] = ACTIONS(8809), + [aux_sym_file_access_token2] = ACTIONS(8809), + [aux_sym_file_lock_token2] = ACTIONS(8809), + [aux_sym_print_statement_token1] = ACTIONS(8809), + [anon_sym_PLUS] = ACTIONS(8811), + [anon_sym_DASH] = ACTIONS(8809), + [anon_sym_QMARK] = ACTIONS(8811), + [aux_sym_close_statement_token1] = ACTIONS(8809), + [aux_sym_put_statement_token1] = ACTIONS(8809), + [aux_sym_unlock_statement_token1] = ACTIONS(8809), + [aux_sym_seek_statement_token1] = ACTIONS(8809), + [sym_reset_statement] = ACTIONS(8809), + [aux_sym_raise_event_statement_token1] = ACTIONS(8809), + [sym_stop_statement] = ACTIONS(8809), + [sym_beep_statement] = ACTIONS(8809), + [aux_sym_unload_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token2] = ACTIONS(8809), + [aux_sym_def_type_statement_token3] = ACTIONS(8809), + [aux_sym_def_type_statement_token4] = ACTIONS(8809), + [aux_sym_def_type_statement_token5] = ACTIONS(8809), + [aux_sym_def_type_statement_token6] = ACTIONS(8809), + [aux_sym_def_type_statement_token7] = ACTIONS(8809), + [aux_sym_def_type_statement_token8] = ACTIONS(8809), + [aux_sym_def_type_statement_token9] = ACTIONS(8809), + [aux_sym_def_type_statement_token10] = ACTIONS(8809), + [aux_sym_def_type_statement_token11] = ACTIONS(8809), + [aux_sym_def_type_statement_token12] = ACTIONS(8809), + [aux_sym_def_type_statement_token13] = ACTIONS(8809), + [aux_sym_def_type_statement_token14] = ACTIONS(8809), + [aux_sym_call_statement_token1] = ACTIONS(8809), + [sym__ambiguous_call_statement] = ACTIONS(8809), + [aux_sym_addressof_expression_token1] = ACTIONS(8809), + [aux_sym_type_of_expression_token1] = ACTIONS(8809), + [aux_sym_unary_expression_token1] = ACTIONS(8809), + [sym_string_literal] = ACTIONS(8811), + [sym_number_literal] = ACTIONS(8811), + [aux_sym_boolean_literal_token1] = ACTIONS(8809), + [aux_sym_boolean_literal_token2] = ACTIONS(8809), + [sym_nothing_literal] = ACTIONS(8809), + [sym_null_literal] = ACTIONS(8809), + [sym_empty_literal] = ACTIONS(8809), + [sym_date_literal] = ACTIONS(8811), + [anon_sym_POUND] = ACTIONS(8809), + }, + [STATE(6413)] = { + [sym_identifier] = ACTIONS(8877), + [sym_newline] = ACTIONS(8879), + [anon_sym_COLON] = ACTIONS(8879), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8877), + [aux_sym_frm_property_statement_token1] = ACTIONS(8877), + [anon_sym_DOT] = ACTIONS(8877), + [anon_sym_BANG] = ACTIONS(8879), + [aux_sym__attribute_identifier_token1] = ACTIONS(8877), + [aux_sym_option_statement_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8877), + [aux_sym_preprocessor_const_token1] = ACTIONS(8877), + [sym_static_modifier] = ACTIONS(8877), + [sym__dim_keyword] = ACTIONS(8877), + [sym__redim_keyword] = ACTIONS(8877), + [aux_sym_get_accessor_token1] = ACTIONS(8877), + [aux_sym_set_accessor_token1] = ACTIONS(8877), + [aux_sym_const_declaration_token1] = ACTIONS(8877), + [anon_sym_LPAREN] = ACTIONS(8879), + [aux_sym_as_type_clause_token2] = ACTIONS(8877), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8877), + [aux_sym_visibility_token1] = ACTIONS(8877), + [aux_sym_visibility_token2] = ACTIONS(8877), + [aux_sym_elseif_fragment_token1] = ACTIONS(8877), + [aux_sym_else_fragment_token1] = ACTIONS(8877), + [aux_sym_select_statement_token1] = ACTIONS(8877), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8877), + [aux_sym__for_header_token1] = ACTIONS(8877), + [aux_sym_do_statement_token1] = ACTIONS(8877), + [aux_sym_do_condition_token1] = ACTIONS(8877), + [aux_sym_with_statement_token1] = ACTIONS(8877), + [aux_sym_exit_statement_token1] = ACTIONS(8877), + [sym_end_statement] = ACTIONS(8879), + [aux_sym_on_goto_statement_token1] = ACTIONS(8877), + [aux_sym_on_goto_statement_token2] = ACTIONS(8877), + [aux_sym_on_error_statement_token2] = ACTIONS(8877), + [sym__ambiguous_redim_statement] = ACTIONS(8879), + [aux_sym_erase_statement_token1] = ACTIONS(8877), + [aux_sym_open_statement_token1] = ACTIONS(8877), + [aux_sym_file_mode_token2] = ACTIONS(8877), + [aux_sym_file_access_token2] = ACTIONS(8877), + [aux_sym_file_lock_token2] = ACTIONS(8877), + [aux_sym_print_statement_token1] = ACTIONS(8877), + [anon_sym_PLUS] = ACTIONS(8879), + [anon_sym_DASH] = ACTIONS(8877), + [anon_sym_QMARK] = ACTIONS(8879), + [aux_sym_close_statement_token1] = ACTIONS(8877), + [aux_sym_put_statement_token1] = ACTIONS(8877), + [aux_sym_unlock_statement_token1] = ACTIONS(8877), + [aux_sym_seek_statement_token1] = ACTIONS(8877), + [sym_reset_statement] = ACTIONS(8877), + [aux_sym_raise_event_statement_token1] = ACTIONS(8877), + [sym_stop_statement] = ACTIONS(8877), + [sym_beep_statement] = ACTIONS(8877), + [aux_sym_unload_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token2] = ACTIONS(8877), + [aux_sym_def_type_statement_token3] = ACTIONS(8877), + [aux_sym_def_type_statement_token4] = ACTIONS(8877), + [aux_sym_def_type_statement_token5] = ACTIONS(8877), + [aux_sym_def_type_statement_token6] = ACTIONS(8877), + [aux_sym_def_type_statement_token7] = ACTIONS(8877), + [aux_sym_def_type_statement_token8] = ACTIONS(8877), + [aux_sym_def_type_statement_token9] = ACTIONS(8877), + [aux_sym_def_type_statement_token10] = ACTIONS(8877), + [aux_sym_def_type_statement_token11] = ACTIONS(8877), + [aux_sym_def_type_statement_token12] = ACTIONS(8877), + [aux_sym_def_type_statement_token13] = ACTIONS(8877), + [aux_sym_def_type_statement_token14] = ACTIONS(8877), + [aux_sym_call_statement_token1] = ACTIONS(8877), + [sym__ambiguous_call_statement] = ACTIONS(8877), + [aux_sym_addressof_expression_token1] = ACTIONS(8877), + [aux_sym_type_of_expression_token1] = ACTIONS(8877), + [aux_sym_unary_expression_token1] = ACTIONS(8877), + [sym_string_literal] = ACTIONS(8879), + [sym_number_literal] = ACTIONS(8879), + [aux_sym_boolean_literal_token1] = ACTIONS(8877), + [aux_sym_boolean_literal_token2] = ACTIONS(8877), + [sym_nothing_literal] = ACTIONS(8877), + [sym_null_literal] = ACTIONS(8877), + [sym_empty_literal] = ACTIONS(8877), + [sym_date_literal] = ACTIONS(8879), + [anon_sym_POUND] = ACTIONS(8877), + }, + [STATE(6414)] = { + [sym_identifier] = ACTIONS(8907), + [sym_newline] = ACTIONS(8909), + [anon_sym_COLON] = ACTIONS(8909), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8907), + [aux_sym_frm_property_statement_token1] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8907), + [anon_sym_BANG] = ACTIONS(8909), + [aux_sym__attribute_identifier_token1] = ACTIONS(8907), + [aux_sym_option_statement_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8907), + [aux_sym_preprocessor_const_token1] = ACTIONS(8907), + [sym_static_modifier] = ACTIONS(8907), + [sym__dim_keyword] = ACTIONS(8907), + [sym__redim_keyword] = ACTIONS(8907), + [aux_sym_get_accessor_token1] = ACTIONS(8907), + [aux_sym_set_accessor_token1] = ACTIONS(8907), + [aux_sym_const_declaration_token1] = ACTIONS(8907), + [anon_sym_LPAREN] = ACTIONS(8909), + [aux_sym_as_type_clause_token2] = ACTIONS(8907), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8907), + [aux_sym_visibility_token1] = ACTIONS(8907), + [aux_sym_visibility_token2] = ACTIONS(8907), + [aux_sym_elseif_fragment_token1] = ACTIONS(8907), + [aux_sym_else_fragment_token1] = ACTIONS(8907), + [aux_sym_select_statement_token1] = ACTIONS(8907), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8907), + [aux_sym__for_header_token1] = ACTIONS(8907), + [aux_sym_do_statement_token1] = ACTIONS(8907), + [aux_sym_do_condition_token1] = ACTIONS(8907), + [aux_sym_with_statement_token1] = ACTIONS(8907), + [aux_sym_exit_statement_token1] = ACTIONS(8907), + [sym_end_statement] = ACTIONS(8909), + [aux_sym_on_goto_statement_token1] = ACTIONS(8907), + [aux_sym_on_goto_statement_token2] = ACTIONS(8907), + [aux_sym_on_error_statement_token2] = ACTIONS(8907), + [sym__ambiguous_redim_statement] = ACTIONS(8909), + [aux_sym_erase_statement_token1] = ACTIONS(8907), + [aux_sym_open_statement_token1] = ACTIONS(8907), + [aux_sym_file_mode_token2] = ACTIONS(8907), + [aux_sym_file_access_token2] = ACTIONS(8907), + [aux_sym_file_lock_token2] = ACTIONS(8907), + [aux_sym_print_statement_token1] = ACTIONS(8907), + [anon_sym_PLUS] = ACTIONS(8909), + [anon_sym_DASH] = ACTIONS(8907), + [anon_sym_QMARK] = ACTIONS(8909), + [aux_sym_close_statement_token1] = ACTIONS(8907), + [aux_sym_put_statement_token1] = ACTIONS(8907), + [aux_sym_unlock_statement_token1] = ACTIONS(8907), + [aux_sym_seek_statement_token1] = ACTIONS(8907), + [sym_reset_statement] = ACTIONS(8907), + [aux_sym_raise_event_statement_token1] = ACTIONS(8907), + [sym_stop_statement] = ACTIONS(8907), + [sym_beep_statement] = ACTIONS(8907), + [aux_sym_unload_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token2] = ACTIONS(8907), + [aux_sym_def_type_statement_token3] = ACTIONS(8907), + [aux_sym_def_type_statement_token4] = ACTIONS(8907), + [aux_sym_def_type_statement_token5] = ACTIONS(8907), + [aux_sym_def_type_statement_token6] = ACTIONS(8907), + [aux_sym_def_type_statement_token7] = ACTIONS(8907), + [aux_sym_def_type_statement_token8] = ACTIONS(8907), + [aux_sym_def_type_statement_token9] = ACTIONS(8907), + [aux_sym_def_type_statement_token10] = ACTIONS(8907), + [aux_sym_def_type_statement_token11] = ACTIONS(8907), + [aux_sym_def_type_statement_token12] = ACTIONS(8907), + [aux_sym_def_type_statement_token13] = ACTIONS(8907), + [aux_sym_def_type_statement_token14] = ACTIONS(8907), + [aux_sym_call_statement_token1] = ACTIONS(8907), + [sym__ambiguous_call_statement] = ACTIONS(8907), + [aux_sym_addressof_expression_token1] = ACTIONS(8907), + [aux_sym_type_of_expression_token1] = ACTIONS(8907), + [aux_sym_unary_expression_token1] = ACTIONS(8907), + [sym_string_literal] = ACTIONS(8909), + [sym_number_literal] = ACTIONS(8909), + [aux_sym_boolean_literal_token1] = ACTIONS(8907), + [aux_sym_boolean_literal_token2] = ACTIONS(8907), + [sym_nothing_literal] = ACTIONS(8907), + [sym_null_literal] = ACTIONS(8907), + [sym_empty_literal] = ACTIONS(8907), + [sym_date_literal] = ACTIONS(8909), + [anon_sym_POUND] = ACTIONS(8907), + }, + [STATE(6415)] = { + [sym_identifier] = ACTIONS(8927), + [sym_newline] = ACTIONS(8929), + [anon_sym_COLON] = ACTIONS(8929), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8927), + [aux_sym_frm_property_statement_token1] = ACTIONS(8927), + [anon_sym_DOT] = ACTIONS(8927), + [anon_sym_BANG] = ACTIONS(8929), + [aux_sym__attribute_identifier_token1] = ACTIONS(8927), + [aux_sym_option_statement_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8927), + [aux_sym_preprocessor_const_token1] = ACTIONS(8927), + [sym_static_modifier] = ACTIONS(8927), + [sym__dim_keyword] = ACTIONS(8927), + [sym__redim_keyword] = ACTIONS(8927), + [aux_sym_get_accessor_token1] = ACTIONS(8927), + [aux_sym_set_accessor_token1] = ACTIONS(8927), + [aux_sym_const_declaration_token1] = ACTIONS(8927), + [anon_sym_LPAREN] = ACTIONS(8929), + [aux_sym_as_type_clause_token2] = ACTIONS(8927), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8927), + [aux_sym_visibility_token1] = ACTIONS(8927), + [aux_sym_visibility_token2] = ACTIONS(8927), + [aux_sym_elseif_fragment_token1] = ACTIONS(8927), + [aux_sym_else_fragment_token1] = ACTIONS(8927), + [aux_sym_select_statement_token1] = ACTIONS(8927), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8927), + [aux_sym__for_header_token1] = ACTIONS(8927), + [aux_sym_do_statement_token1] = ACTIONS(8927), + [aux_sym_do_condition_token1] = ACTIONS(8927), + [aux_sym_with_statement_token1] = ACTIONS(8927), + [aux_sym_exit_statement_token1] = ACTIONS(8927), + [sym_end_statement] = ACTIONS(8929), + [aux_sym_on_goto_statement_token1] = ACTIONS(8927), + [aux_sym_on_goto_statement_token2] = ACTIONS(8927), + [aux_sym_on_error_statement_token2] = ACTIONS(8927), + [sym__ambiguous_redim_statement] = ACTIONS(8929), + [aux_sym_erase_statement_token1] = ACTIONS(8927), + [aux_sym_open_statement_token1] = ACTIONS(8927), + [aux_sym_file_mode_token2] = ACTIONS(8927), + [aux_sym_file_access_token2] = ACTIONS(8927), + [aux_sym_file_lock_token2] = ACTIONS(8927), + [aux_sym_print_statement_token1] = ACTIONS(8927), + [anon_sym_PLUS] = ACTIONS(8929), + [anon_sym_DASH] = ACTIONS(8927), + [anon_sym_QMARK] = ACTIONS(8929), + [aux_sym_close_statement_token1] = ACTIONS(8927), + [aux_sym_put_statement_token1] = ACTIONS(8927), + [aux_sym_unlock_statement_token1] = ACTIONS(8927), + [aux_sym_seek_statement_token1] = ACTIONS(8927), + [sym_reset_statement] = ACTIONS(8927), + [aux_sym_raise_event_statement_token1] = ACTIONS(8927), + [sym_stop_statement] = ACTIONS(8927), + [sym_beep_statement] = ACTIONS(8927), + [aux_sym_unload_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token2] = ACTIONS(8927), + [aux_sym_def_type_statement_token3] = ACTIONS(8927), + [aux_sym_def_type_statement_token4] = ACTIONS(8927), + [aux_sym_def_type_statement_token5] = ACTIONS(8927), + [aux_sym_def_type_statement_token6] = ACTIONS(8927), + [aux_sym_def_type_statement_token7] = ACTIONS(8927), + [aux_sym_def_type_statement_token8] = ACTIONS(8927), + [aux_sym_def_type_statement_token9] = ACTIONS(8927), + [aux_sym_def_type_statement_token10] = ACTIONS(8927), + [aux_sym_def_type_statement_token11] = ACTIONS(8927), + [aux_sym_def_type_statement_token12] = ACTIONS(8927), + [aux_sym_def_type_statement_token13] = ACTIONS(8927), + [aux_sym_def_type_statement_token14] = ACTIONS(8927), + [aux_sym_call_statement_token1] = ACTIONS(8927), + [sym__ambiguous_call_statement] = ACTIONS(8927), + [aux_sym_addressof_expression_token1] = ACTIONS(8927), + [aux_sym_type_of_expression_token1] = ACTIONS(8927), + [aux_sym_unary_expression_token1] = ACTIONS(8927), + [sym_string_literal] = ACTIONS(8929), + [sym_number_literal] = ACTIONS(8929), + [aux_sym_boolean_literal_token1] = ACTIONS(8927), + [aux_sym_boolean_literal_token2] = ACTIONS(8927), + [sym_nothing_literal] = ACTIONS(8927), + [sym_null_literal] = ACTIONS(8927), + [sym_empty_literal] = ACTIONS(8927), + [sym_date_literal] = ACTIONS(8929), + [anon_sym_POUND] = ACTIONS(8927), + }, + [STATE(6416)] = { + [sym_identifier] = ACTIONS(8931), + [sym_newline] = ACTIONS(8933), + [anon_sym_COLON] = ACTIONS(8933), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8931), + [aux_sym_frm_property_statement_token1] = ACTIONS(8931), + [anon_sym_DOT] = ACTIONS(8931), + [anon_sym_BANG] = ACTIONS(8933), + [aux_sym__attribute_identifier_token1] = ACTIONS(8931), + [aux_sym_option_statement_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8931), + [aux_sym_preprocessor_const_token1] = ACTIONS(8931), + [sym_static_modifier] = ACTIONS(8931), + [sym__dim_keyword] = ACTIONS(8931), + [sym__redim_keyword] = ACTIONS(8931), + [aux_sym_get_accessor_token1] = ACTIONS(8931), + [aux_sym_set_accessor_token1] = ACTIONS(8931), + [aux_sym_const_declaration_token1] = ACTIONS(8931), + [anon_sym_LPAREN] = ACTIONS(8933), + [aux_sym_as_type_clause_token2] = ACTIONS(8931), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8931), + [aux_sym_visibility_token1] = ACTIONS(8931), + [aux_sym_visibility_token2] = ACTIONS(8931), + [aux_sym_elseif_fragment_token1] = ACTIONS(8931), + [aux_sym_else_fragment_token1] = ACTIONS(8931), + [aux_sym_select_statement_token1] = ACTIONS(8931), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8931), + [aux_sym__for_header_token1] = ACTIONS(8931), + [aux_sym_do_statement_token1] = ACTIONS(8931), + [aux_sym_do_condition_token1] = ACTIONS(8931), + [aux_sym_with_statement_token1] = ACTIONS(8931), + [aux_sym_exit_statement_token1] = ACTIONS(8931), + [sym_end_statement] = ACTIONS(8933), + [aux_sym_on_goto_statement_token1] = ACTIONS(8931), + [aux_sym_on_goto_statement_token2] = ACTIONS(8931), + [aux_sym_on_error_statement_token2] = ACTIONS(8931), + [sym__ambiguous_redim_statement] = ACTIONS(8933), + [aux_sym_erase_statement_token1] = ACTIONS(8931), + [aux_sym_open_statement_token1] = ACTIONS(8931), + [aux_sym_file_mode_token2] = ACTIONS(8931), + [aux_sym_file_access_token2] = ACTIONS(8931), + [aux_sym_file_lock_token2] = ACTIONS(8931), + [aux_sym_print_statement_token1] = ACTIONS(8931), + [anon_sym_PLUS] = ACTIONS(8933), + [anon_sym_DASH] = ACTIONS(8931), + [anon_sym_QMARK] = ACTIONS(8933), + [aux_sym_close_statement_token1] = ACTIONS(8931), + [aux_sym_put_statement_token1] = ACTIONS(8931), + [aux_sym_unlock_statement_token1] = ACTIONS(8931), + [aux_sym_seek_statement_token1] = ACTIONS(8931), + [sym_reset_statement] = ACTIONS(8931), + [aux_sym_raise_event_statement_token1] = ACTIONS(8931), + [sym_stop_statement] = ACTIONS(8931), + [sym_beep_statement] = ACTIONS(8931), + [aux_sym_unload_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token2] = ACTIONS(8931), + [aux_sym_def_type_statement_token3] = ACTIONS(8931), + [aux_sym_def_type_statement_token4] = ACTIONS(8931), + [aux_sym_def_type_statement_token5] = ACTIONS(8931), + [aux_sym_def_type_statement_token6] = ACTIONS(8931), + [aux_sym_def_type_statement_token7] = ACTIONS(8931), + [aux_sym_def_type_statement_token8] = ACTIONS(8931), + [aux_sym_def_type_statement_token9] = ACTIONS(8931), + [aux_sym_def_type_statement_token10] = ACTIONS(8931), + [aux_sym_def_type_statement_token11] = ACTIONS(8931), + [aux_sym_def_type_statement_token12] = ACTIONS(8931), + [aux_sym_def_type_statement_token13] = ACTIONS(8931), + [aux_sym_def_type_statement_token14] = ACTIONS(8931), + [aux_sym_call_statement_token1] = ACTIONS(8931), + [sym__ambiguous_call_statement] = ACTIONS(8931), + [aux_sym_addressof_expression_token1] = ACTIONS(8931), + [aux_sym_type_of_expression_token1] = ACTIONS(8931), + [aux_sym_unary_expression_token1] = ACTIONS(8931), + [sym_string_literal] = ACTIONS(8933), + [sym_number_literal] = ACTIONS(8933), + [aux_sym_boolean_literal_token1] = ACTIONS(8931), + [aux_sym_boolean_literal_token2] = ACTIONS(8931), + [sym_nothing_literal] = ACTIONS(8931), + [sym_null_literal] = ACTIONS(8931), + [sym_empty_literal] = ACTIONS(8931), + [sym_date_literal] = ACTIONS(8933), + [anon_sym_POUND] = ACTIONS(8931), + }, + [STATE(6417)] = { + [sym_identifier] = ACTIONS(9172), + [sym_newline] = ACTIONS(9174), + [anon_sym_COLON] = ACTIONS(9174), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9172), + [aux_sym_frm_property_statement_token1] = ACTIONS(9172), + [anon_sym_DOT] = ACTIONS(9172), + [anon_sym_BANG] = ACTIONS(9174), + [aux_sym__attribute_identifier_token1] = ACTIONS(9172), + [aux_sym_option_statement_token3] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9172), + [aux_sym_preprocessor_const_token1] = ACTIONS(9172), + [sym_static_modifier] = ACTIONS(9172), + [sym__dim_keyword] = ACTIONS(9172), + [sym__redim_keyword] = ACTIONS(9172), + [aux_sym_get_accessor_token1] = ACTIONS(9172), + [aux_sym_set_accessor_token1] = ACTIONS(9172), + [aux_sym_const_declaration_token1] = ACTIONS(9172), + [anon_sym_LPAREN] = ACTIONS(9174), + [aux_sym_as_type_clause_token2] = ACTIONS(9172), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9172), + [aux_sym_visibility_token1] = ACTIONS(9172), + [aux_sym_visibility_token2] = ACTIONS(9172), + [aux_sym_elseif_fragment_token1] = ACTIONS(9172), + [aux_sym_else_fragment_token1] = ACTIONS(9172), + [aux_sym_select_statement_token1] = ACTIONS(9172), + [aux_sym__for_header_token1] = ACTIONS(9172), + [aux_sym_do_statement_token1] = ACTIONS(9172), + [aux_sym_do_condition_token1] = ACTIONS(9172), + [aux_sym_while_statement_token1] = ACTIONS(9172), + [aux_sym_with_statement_token1] = ACTIONS(9172), + [aux_sym_exit_statement_token1] = ACTIONS(9172), + [sym_end_statement] = ACTIONS(9174), + [aux_sym_on_goto_statement_token1] = ACTIONS(9172), + [aux_sym_on_goto_statement_token2] = ACTIONS(9172), + [aux_sym_on_error_statement_token2] = ACTIONS(9172), + [sym__ambiguous_redim_statement] = ACTIONS(9174), + [aux_sym_erase_statement_token1] = ACTIONS(9172), + [aux_sym_open_statement_token1] = ACTIONS(9172), + [aux_sym_file_mode_token2] = ACTIONS(9172), + [aux_sym_file_access_token2] = ACTIONS(9172), + [aux_sym_file_lock_token2] = ACTIONS(9172), + [aux_sym_print_statement_token1] = ACTIONS(9172), + [anon_sym_PLUS] = ACTIONS(9174), + [anon_sym_DASH] = ACTIONS(9172), + [anon_sym_QMARK] = ACTIONS(9174), + [aux_sym_close_statement_token1] = ACTIONS(9172), + [aux_sym_put_statement_token1] = ACTIONS(9172), + [aux_sym_unlock_statement_token1] = ACTIONS(9172), + [aux_sym_seek_statement_token1] = ACTIONS(9172), + [sym_reset_statement] = ACTIONS(9172), + [aux_sym_raise_event_statement_token1] = ACTIONS(9172), + [sym_stop_statement] = ACTIONS(9172), + [sym_beep_statement] = ACTIONS(9172), + [aux_sym_unload_statement_token1] = ACTIONS(9172), + [aux_sym_def_type_statement_token1] = ACTIONS(9172), + [aux_sym_def_type_statement_token2] = ACTIONS(9172), + [aux_sym_def_type_statement_token3] = ACTIONS(9172), + [aux_sym_def_type_statement_token4] = ACTIONS(9172), + [aux_sym_def_type_statement_token5] = ACTIONS(9172), + [aux_sym_def_type_statement_token6] = ACTIONS(9172), + [aux_sym_def_type_statement_token7] = ACTIONS(9172), + [aux_sym_def_type_statement_token8] = ACTIONS(9172), + [aux_sym_def_type_statement_token9] = ACTIONS(9172), + [aux_sym_def_type_statement_token10] = ACTIONS(9172), + [aux_sym_def_type_statement_token11] = ACTIONS(9172), + [aux_sym_def_type_statement_token12] = ACTIONS(9172), + [aux_sym_def_type_statement_token13] = ACTIONS(9172), + [aux_sym_def_type_statement_token14] = ACTIONS(9172), + [aux_sym_call_statement_token1] = ACTIONS(9172), + [sym__ambiguous_call_statement] = ACTIONS(9172), + [aux_sym_addressof_expression_token1] = ACTIONS(9172), + [aux_sym_type_of_expression_token1] = ACTIONS(9172), + [aux_sym_unary_expression_token1] = ACTIONS(9172), + [sym_string_literal] = ACTIONS(9174), + [sym_number_literal] = ACTIONS(9174), + [aux_sym_boolean_literal_token1] = ACTIONS(9172), + [aux_sym_boolean_literal_token2] = ACTIONS(9172), + [sym_nothing_literal] = ACTIONS(9172), + [sym_null_literal] = ACTIONS(9172), + [sym_empty_literal] = ACTIONS(9172), + [sym_date_literal] = ACTIONS(9174), + [anon_sym_POUND] = ACTIONS(9172), + }, + [STATE(6418)] = { + [sym_identifier] = ACTIONS(9752), + [sym_newline] = ACTIONS(9754), + [anon_sym_COLON] = ACTIONS(9754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9752), + [aux_sym_frm_property_statement_token1] = ACTIONS(9752), + [anon_sym_DOT] = ACTIONS(9752), + [anon_sym_BANG] = ACTIONS(9754), + [aux_sym__attribute_identifier_token1] = ACTIONS(9752), + [aux_sym_option_statement_token3] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9752), + [aux_sym_preprocessor_const_token1] = ACTIONS(9752), + [sym_static_modifier] = ACTIONS(9752), + [sym__dim_keyword] = ACTIONS(9752), + [sym__redim_keyword] = ACTIONS(9752), + [aux_sym_get_accessor_token1] = ACTIONS(9752), + [aux_sym_set_accessor_token1] = ACTIONS(9752), + [aux_sym_const_declaration_token1] = ACTIONS(9752), + [anon_sym_LPAREN] = ACTIONS(9754), + [aux_sym_as_type_clause_token2] = ACTIONS(9752), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9752), + [aux_sym_visibility_token1] = ACTIONS(9752), + [aux_sym_visibility_token2] = ACTIONS(9752), + [aux_sym_elseif_fragment_token1] = ACTIONS(9752), + [aux_sym_else_fragment_token1] = ACTIONS(9752), + [aux_sym_select_statement_token1] = ACTIONS(9752), + [aux_sym__for_header_token1] = ACTIONS(9752), + [aux_sym_do_statement_token1] = ACTIONS(9752), + [aux_sym_do_condition_token1] = ACTIONS(9752), + [aux_sym_with_statement_token1] = ACTIONS(9752), + [aux_sym_exit_statement_token1] = ACTIONS(9752), + [sym_end_statement] = ACTIONS(9754), + [aux_sym_on_goto_statement_token1] = ACTIONS(9752), + [aux_sym_on_goto_statement_token2] = ACTIONS(9752), + [aux_sym_on_error_statement_token2] = ACTIONS(9752), + [sym__ambiguous_redim_statement] = ACTIONS(9754), + [aux_sym_erase_statement_token1] = ACTIONS(9752), + [aux_sym_open_statement_token1] = ACTIONS(9752), + [aux_sym_file_mode_token2] = ACTIONS(9752), + [aux_sym_file_access_token2] = ACTIONS(9752), + [aux_sym_file_lock_token2] = ACTIONS(9752), + [aux_sym_print_statement_token1] = ACTIONS(9752), + [anon_sym_PLUS] = ACTIONS(9754), + [anon_sym_DASH] = ACTIONS(9752), + [anon_sym_QMARK] = ACTIONS(9754), + [aux_sym_close_statement_token1] = ACTIONS(9752), + [aux_sym_put_statement_token1] = ACTIONS(9752), + [aux_sym_unlock_statement_token1] = ACTIONS(9752), + [aux_sym_seek_statement_token1] = ACTIONS(9752), + [sym_reset_statement] = ACTIONS(9752), + [aux_sym_raise_event_statement_token1] = ACTIONS(9752), + [sym_stop_statement] = ACTIONS(9752), + [sym_beep_statement] = ACTIONS(9752), + [aux_sym_unload_statement_token1] = ACTIONS(9752), + [aux_sym_def_type_statement_token1] = ACTIONS(9752), + [aux_sym_def_type_statement_token2] = ACTIONS(9752), + [aux_sym_def_type_statement_token3] = ACTIONS(9752), + [aux_sym_def_type_statement_token4] = ACTIONS(9752), + [aux_sym_def_type_statement_token5] = ACTIONS(9752), + [aux_sym_def_type_statement_token6] = ACTIONS(9752), + [aux_sym_def_type_statement_token7] = ACTIONS(9752), + [aux_sym_def_type_statement_token8] = ACTIONS(9752), + [aux_sym_def_type_statement_token9] = ACTIONS(9752), + [aux_sym_def_type_statement_token10] = ACTIONS(9752), + [aux_sym_def_type_statement_token11] = ACTIONS(9752), + [aux_sym_def_type_statement_token12] = ACTIONS(9752), + [aux_sym_def_type_statement_token13] = ACTIONS(9752), + [aux_sym_def_type_statement_token14] = ACTIONS(9752), + [aux_sym_call_statement_token1] = ACTIONS(9752), + [sym__ambiguous_call_statement] = ACTIONS(9752), + [aux_sym_addressof_expression_token1] = ACTIONS(9752), + [aux_sym_type_of_expression_token1] = ACTIONS(9752), + [aux_sym_unary_expression_token1] = ACTIONS(9752), + [sym_string_literal] = ACTIONS(9754), + [sym_number_literal] = ACTIONS(9754), + [aux_sym_boolean_literal_token1] = ACTIONS(9752), + [aux_sym_boolean_literal_token2] = ACTIONS(9752), + [sym_nothing_literal] = ACTIONS(9752), + [sym_null_literal] = ACTIONS(9752), + [sym_empty_literal] = ACTIONS(9752), + [sym_date_literal] = ACTIONS(9754), + [anon_sym_POUND] = ACTIONS(9752), + }, + [STATE(6419)] = { + [sym_identifier] = ACTIONS(9756), + [sym_newline] = ACTIONS(9758), + [anon_sym_COLON] = ACTIONS(9758), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9756), + [aux_sym_frm_property_statement_token1] = ACTIONS(9756), + [anon_sym_DOT] = ACTIONS(9756), + [anon_sym_BANG] = ACTIONS(9758), + [aux_sym__attribute_identifier_token1] = ACTIONS(9756), + [aux_sym_option_statement_token3] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9756), + [aux_sym_preprocessor_const_token1] = ACTIONS(9756), + [sym_static_modifier] = ACTIONS(9756), + [sym__dim_keyword] = ACTIONS(9756), + [sym__redim_keyword] = ACTIONS(9756), + [aux_sym_get_accessor_token1] = ACTIONS(9756), + [aux_sym_set_accessor_token1] = ACTIONS(9756), + [aux_sym_const_declaration_token1] = ACTIONS(9756), + [anon_sym_LPAREN] = ACTIONS(9758), + [aux_sym_as_type_clause_token2] = ACTIONS(9756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9756), + [aux_sym_visibility_token1] = ACTIONS(9756), + [aux_sym_visibility_token2] = ACTIONS(9756), + [aux_sym_elseif_fragment_token1] = ACTIONS(9756), + [aux_sym_else_fragment_token1] = ACTIONS(9756), + [aux_sym_select_statement_token1] = ACTIONS(9756), + [aux_sym__for_header_token1] = ACTIONS(9756), + [aux_sym_do_statement_token1] = ACTIONS(9756), + [aux_sym_do_condition_token1] = ACTIONS(9756), + [aux_sym_with_statement_token1] = ACTIONS(9756), + [aux_sym_exit_statement_token1] = ACTIONS(9756), + [sym_end_statement] = ACTIONS(9758), + [aux_sym_on_goto_statement_token1] = ACTIONS(9756), + [aux_sym_on_goto_statement_token2] = ACTIONS(9756), + [aux_sym_on_error_statement_token2] = ACTIONS(9756), + [sym__ambiguous_redim_statement] = ACTIONS(9758), + [aux_sym_erase_statement_token1] = ACTIONS(9756), + [aux_sym_open_statement_token1] = ACTIONS(9756), + [aux_sym_file_mode_token2] = ACTIONS(9756), + [aux_sym_file_access_token2] = ACTIONS(9756), + [aux_sym_file_lock_token2] = ACTIONS(9756), + [aux_sym_print_statement_token1] = ACTIONS(9756), + [anon_sym_PLUS] = ACTIONS(9758), + [anon_sym_DASH] = ACTIONS(9756), + [anon_sym_QMARK] = ACTIONS(9758), + [aux_sym_close_statement_token1] = ACTIONS(9756), + [aux_sym_put_statement_token1] = ACTIONS(9756), + [aux_sym_unlock_statement_token1] = ACTIONS(9756), + [aux_sym_seek_statement_token1] = ACTIONS(9756), + [sym_reset_statement] = ACTIONS(9756), + [aux_sym_raise_event_statement_token1] = ACTIONS(9756), + [sym_stop_statement] = ACTIONS(9756), + [sym_beep_statement] = ACTIONS(9756), + [aux_sym_unload_statement_token1] = ACTIONS(9756), + [aux_sym_def_type_statement_token1] = ACTIONS(9756), + [aux_sym_def_type_statement_token2] = ACTIONS(9756), + [aux_sym_def_type_statement_token3] = ACTIONS(9756), + [aux_sym_def_type_statement_token4] = ACTIONS(9756), + [aux_sym_def_type_statement_token5] = ACTIONS(9756), + [aux_sym_def_type_statement_token6] = ACTIONS(9756), + [aux_sym_def_type_statement_token7] = ACTIONS(9756), + [aux_sym_def_type_statement_token8] = ACTIONS(9756), + [aux_sym_def_type_statement_token9] = ACTIONS(9756), + [aux_sym_def_type_statement_token10] = ACTIONS(9756), + [aux_sym_def_type_statement_token11] = ACTIONS(9756), + [aux_sym_def_type_statement_token12] = ACTIONS(9756), + [aux_sym_def_type_statement_token13] = ACTIONS(9756), + [aux_sym_def_type_statement_token14] = ACTIONS(9756), + [aux_sym_call_statement_token1] = ACTIONS(9756), + [sym__ambiguous_call_statement] = ACTIONS(9756), + [aux_sym_addressof_expression_token1] = ACTIONS(9756), + [aux_sym_type_of_expression_token1] = ACTIONS(9756), + [aux_sym_unary_expression_token1] = ACTIONS(9756), + [sym_string_literal] = ACTIONS(9758), + [sym_number_literal] = ACTIONS(9758), + [aux_sym_boolean_literal_token1] = ACTIONS(9756), + [aux_sym_boolean_literal_token2] = ACTIONS(9756), + [sym_nothing_literal] = ACTIONS(9756), + [sym_null_literal] = ACTIONS(9756), + [sym_empty_literal] = ACTIONS(9756), + [sym_date_literal] = ACTIONS(9758), + [anon_sym_POUND] = ACTIONS(9756), + }, + [STATE(6420)] = { + [sym_identifier] = ACTIONS(9176), + [sym_newline] = ACTIONS(9178), + [anon_sym_COLON] = ACTIONS(9178), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9176), + [aux_sym_frm_property_statement_token1] = ACTIONS(9176), + [anon_sym_DOT] = ACTIONS(9176), + [anon_sym_BANG] = ACTIONS(9178), + [aux_sym__attribute_identifier_token1] = ACTIONS(9176), + [aux_sym_option_statement_token3] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9176), + [aux_sym_preprocessor_const_token1] = ACTIONS(9176), + [sym_static_modifier] = ACTIONS(9176), + [sym__dim_keyword] = ACTIONS(9176), + [sym__redim_keyword] = ACTIONS(9176), + [aux_sym_get_accessor_token1] = ACTIONS(9176), + [aux_sym_set_accessor_token1] = ACTIONS(9176), + [aux_sym_const_declaration_token1] = ACTIONS(9176), + [anon_sym_LPAREN] = ACTIONS(9178), + [aux_sym_as_type_clause_token2] = ACTIONS(9176), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9176), + [aux_sym_visibility_token1] = ACTIONS(9176), + [aux_sym_visibility_token2] = ACTIONS(9176), + [aux_sym_elseif_fragment_token1] = ACTIONS(9176), + [aux_sym_else_fragment_token1] = ACTIONS(9176), + [aux_sym_select_statement_token1] = ACTIONS(9176), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9176), + [aux_sym__for_header_token1] = ACTIONS(9176), + [aux_sym_do_statement_token1] = ACTIONS(9176), + [aux_sym_do_condition_token1] = ACTIONS(9176), + [aux_sym_with_statement_token1] = ACTIONS(9176), + [aux_sym_exit_statement_token1] = ACTIONS(9176), + [sym_end_statement] = ACTIONS(9178), + [aux_sym_on_goto_statement_token1] = ACTIONS(9176), + [aux_sym_on_goto_statement_token2] = ACTIONS(9176), + [aux_sym_on_error_statement_token2] = ACTIONS(9176), + [sym__ambiguous_redim_statement] = ACTIONS(9178), + [aux_sym_erase_statement_token1] = ACTIONS(9176), + [aux_sym_open_statement_token1] = ACTIONS(9176), + [aux_sym_file_mode_token2] = ACTIONS(9176), + [aux_sym_file_access_token2] = ACTIONS(9176), + [aux_sym_file_lock_token2] = ACTIONS(9176), + [aux_sym_print_statement_token1] = ACTIONS(9176), + [anon_sym_PLUS] = ACTIONS(9178), + [anon_sym_DASH] = ACTIONS(9176), + [anon_sym_QMARK] = ACTIONS(9178), + [aux_sym_close_statement_token1] = ACTIONS(9176), + [aux_sym_put_statement_token1] = ACTIONS(9176), + [aux_sym_unlock_statement_token1] = ACTIONS(9176), + [aux_sym_seek_statement_token1] = ACTIONS(9176), + [sym_reset_statement] = ACTIONS(9176), + [aux_sym_raise_event_statement_token1] = ACTIONS(9176), + [sym_stop_statement] = ACTIONS(9176), + [sym_beep_statement] = ACTIONS(9176), + [aux_sym_unload_statement_token1] = ACTIONS(9176), + [aux_sym_def_type_statement_token1] = ACTIONS(9176), + [aux_sym_def_type_statement_token2] = ACTIONS(9176), + [aux_sym_def_type_statement_token3] = ACTIONS(9176), + [aux_sym_def_type_statement_token4] = ACTIONS(9176), + [aux_sym_def_type_statement_token5] = ACTIONS(9176), + [aux_sym_def_type_statement_token6] = ACTIONS(9176), + [aux_sym_def_type_statement_token7] = ACTIONS(9176), + [aux_sym_def_type_statement_token8] = ACTIONS(9176), + [aux_sym_def_type_statement_token9] = ACTIONS(9176), + [aux_sym_def_type_statement_token10] = ACTIONS(9176), + [aux_sym_def_type_statement_token11] = ACTIONS(9176), + [aux_sym_def_type_statement_token12] = ACTIONS(9176), + [aux_sym_def_type_statement_token13] = ACTIONS(9176), + [aux_sym_def_type_statement_token14] = ACTIONS(9176), + [aux_sym_call_statement_token1] = ACTIONS(9176), + [sym__ambiguous_call_statement] = ACTIONS(9176), + [aux_sym_addressof_expression_token1] = ACTIONS(9176), + [aux_sym_type_of_expression_token1] = ACTIONS(9176), + [aux_sym_unary_expression_token1] = ACTIONS(9176), + [sym_string_literal] = ACTIONS(9178), + [sym_number_literal] = ACTIONS(9178), + [aux_sym_boolean_literal_token1] = ACTIONS(9176), + [aux_sym_boolean_literal_token2] = ACTIONS(9176), + [sym_nothing_literal] = ACTIONS(9176), + [sym_null_literal] = ACTIONS(9176), + [sym_empty_literal] = ACTIONS(9176), + [sym_date_literal] = ACTIONS(9178), + [anon_sym_POUND] = ACTIONS(9176), + }, + [STATE(6421)] = { + [sym_identifier] = ACTIONS(9180), + [sym_newline] = ACTIONS(9182), + [anon_sym_COLON] = ACTIONS(9182), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9180), + [aux_sym_frm_property_statement_token1] = ACTIONS(9180), + [anon_sym_DOT] = ACTIONS(9180), + [anon_sym_BANG] = ACTIONS(9182), + [aux_sym__attribute_identifier_token1] = ACTIONS(9180), + [aux_sym_option_statement_token3] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9180), + [aux_sym_preprocessor_const_token1] = ACTIONS(9180), + [sym_static_modifier] = ACTIONS(9180), + [sym__dim_keyword] = ACTIONS(9180), + [sym__redim_keyword] = ACTIONS(9180), + [aux_sym_get_accessor_token1] = ACTIONS(9180), + [aux_sym_set_accessor_token1] = ACTIONS(9180), + [aux_sym_const_declaration_token1] = ACTIONS(9180), + [anon_sym_LPAREN] = ACTIONS(9182), + [aux_sym_as_type_clause_token2] = ACTIONS(9180), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9180), + [aux_sym_visibility_token1] = ACTIONS(9180), + [aux_sym_visibility_token2] = ACTIONS(9180), + [aux_sym_elseif_fragment_token1] = ACTIONS(9180), + [aux_sym_else_fragment_token1] = ACTIONS(9180), + [aux_sym_select_statement_token1] = ACTIONS(9180), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9180), + [aux_sym__for_header_token1] = ACTIONS(9180), + [aux_sym_do_statement_token1] = ACTIONS(9180), + [aux_sym_do_condition_token1] = ACTIONS(9180), + [aux_sym_with_statement_token1] = ACTIONS(9180), + [aux_sym_exit_statement_token1] = ACTIONS(9180), + [sym_end_statement] = ACTIONS(9182), + [aux_sym_on_goto_statement_token1] = ACTIONS(9180), + [aux_sym_on_goto_statement_token2] = ACTIONS(9180), + [aux_sym_on_error_statement_token2] = ACTIONS(9180), + [sym__ambiguous_redim_statement] = ACTIONS(9182), + [aux_sym_erase_statement_token1] = ACTIONS(9180), + [aux_sym_open_statement_token1] = ACTIONS(9180), + [aux_sym_file_mode_token2] = ACTIONS(9180), + [aux_sym_file_access_token2] = ACTIONS(9180), + [aux_sym_file_lock_token2] = ACTIONS(9180), + [aux_sym_print_statement_token1] = ACTIONS(9180), + [anon_sym_PLUS] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9180), + [anon_sym_QMARK] = ACTIONS(9182), + [aux_sym_close_statement_token1] = ACTIONS(9180), + [aux_sym_put_statement_token1] = ACTIONS(9180), + [aux_sym_unlock_statement_token1] = ACTIONS(9180), + [aux_sym_seek_statement_token1] = ACTIONS(9180), + [sym_reset_statement] = ACTIONS(9180), + [aux_sym_raise_event_statement_token1] = ACTIONS(9180), + [sym_stop_statement] = ACTIONS(9180), + [sym_beep_statement] = ACTIONS(9180), + [aux_sym_unload_statement_token1] = ACTIONS(9180), + [aux_sym_def_type_statement_token1] = ACTIONS(9180), + [aux_sym_def_type_statement_token2] = ACTIONS(9180), + [aux_sym_def_type_statement_token3] = ACTIONS(9180), + [aux_sym_def_type_statement_token4] = ACTIONS(9180), + [aux_sym_def_type_statement_token5] = ACTIONS(9180), + [aux_sym_def_type_statement_token6] = ACTIONS(9180), + [aux_sym_def_type_statement_token7] = ACTIONS(9180), + [aux_sym_def_type_statement_token8] = ACTIONS(9180), + [aux_sym_def_type_statement_token9] = ACTIONS(9180), + [aux_sym_def_type_statement_token10] = ACTIONS(9180), + [aux_sym_def_type_statement_token11] = ACTIONS(9180), + [aux_sym_def_type_statement_token12] = ACTIONS(9180), + [aux_sym_def_type_statement_token13] = ACTIONS(9180), + [aux_sym_def_type_statement_token14] = ACTIONS(9180), + [aux_sym_call_statement_token1] = ACTIONS(9180), + [sym__ambiguous_call_statement] = ACTIONS(9180), + [aux_sym_addressof_expression_token1] = ACTIONS(9180), + [aux_sym_type_of_expression_token1] = ACTIONS(9180), + [aux_sym_unary_expression_token1] = ACTIONS(9180), + [sym_string_literal] = ACTIONS(9182), + [sym_number_literal] = ACTIONS(9182), + [aux_sym_boolean_literal_token1] = ACTIONS(9180), + [aux_sym_boolean_literal_token2] = ACTIONS(9180), + [sym_nothing_literal] = ACTIONS(9180), + [sym_null_literal] = ACTIONS(9180), + [sym_empty_literal] = ACTIONS(9180), + [sym_date_literal] = ACTIONS(9182), + [anon_sym_POUND] = ACTIONS(9180), + }, + [STATE(6422)] = { + [sym_identifier] = ACTIONS(8813), + [sym_newline] = ACTIONS(8815), + [anon_sym_COLON] = ACTIONS(8815), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8813), + [aux_sym_frm_property_statement_token1] = ACTIONS(8813), + [anon_sym_DOT] = ACTIONS(8813), + [anon_sym_BANG] = ACTIONS(8815), + [aux_sym__attribute_identifier_token1] = ACTIONS(8813), + [aux_sym_option_statement_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8813), + [aux_sym_preprocessor_const_token1] = ACTIONS(8813), + [sym_static_modifier] = ACTIONS(8813), + [sym__dim_keyword] = ACTIONS(8813), + [sym__redim_keyword] = ACTIONS(8813), + [aux_sym_get_accessor_token1] = ACTIONS(8813), + [aux_sym_set_accessor_token1] = ACTIONS(8813), + [aux_sym_const_declaration_token1] = ACTIONS(8813), + [anon_sym_LPAREN] = ACTIONS(8815), + [aux_sym_as_type_clause_token2] = ACTIONS(8813), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8813), + [aux_sym_visibility_token1] = ACTIONS(8813), + [aux_sym_visibility_token2] = ACTIONS(8813), + [aux_sym_elseif_fragment_token1] = ACTIONS(8813), + [aux_sym_else_fragment_token1] = ACTIONS(8813), + [aux_sym_select_statement_token1] = ACTIONS(8813), + [aux_sym__for_header_token1] = ACTIONS(8813), + [aux_sym_do_statement_token1] = ACTIONS(8813), + [aux_sym_do_statement_token2] = ACTIONS(8813), + [aux_sym_do_condition_token1] = ACTIONS(8813), + [aux_sym_with_statement_token1] = ACTIONS(8813), + [aux_sym_exit_statement_token1] = ACTIONS(8813), + [sym_end_statement] = ACTIONS(8815), + [aux_sym_on_goto_statement_token1] = ACTIONS(8813), + [aux_sym_on_goto_statement_token2] = ACTIONS(8813), + [aux_sym_on_error_statement_token2] = ACTIONS(8813), + [sym__ambiguous_redim_statement] = ACTIONS(8815), + [aux_sym_erase_statement_token1] = ACTIONS(8813), + [aux_sym_open_statement_token1] = ACTIONS(8813), + [aux_sym_file_mode_token2] = ACTIONS(8813), + [aux_sym_file_access_token2] = ACTIONS(8813), + [aux_sym_file_lock_token2] = ACTIONS(8813), + [aux_sym_print_statement_token1] = ACTIONS(8813), + [anon_sym_PLUS] = ACTIONS(8815), + [anon_sym_DASH] = ACTIONS(8813), + [anon_sym_QMARK] = ACTIONS(8815), + [aux_sym_close_statement_token1] = ACTIONS(8813), + [aux_sym_put_statement_token1] = ACTIONS(8813), + [aux_sym_unlock_statement_token1] = ACTIONS(8813), + [aux_sym_seek_statement_token1] = ACTIONS(8813), + [sym_reset_statement] = ACTIONS(8813), + [aux_sym_raise_event_statement_token1] = ACTIONS(8813), + [sym_stop_statement] = ACTIONS(8813), + [sym_beep_statement] = ACTIONS(8813), + [aux_sym_unload_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token2] = ACTIONS(8813), + [aux_sym_def_type_statement_token3] = ACTIONS(8813), + [aux_sym_def_type_statement_token4] = ACTIONS(8813), + [aux_sym_def_type_statement_token5] = ACTIONS(8813), + [aux_sym_def_type_statement_token6] = ACTIONS(8813), + [aux_sym_def_type_statement_token7] = ACTIONS(8813), + [aux_sym_def_type_statement_token8] = ACTIONS(8813), + [aux_sym_def_type_statement_token9] = ACTIONS(8813), + [aux_sym_def_type_statement_token10] = ACTIONS(8813), + [aux_sym_def_type_statement_token11] = ACTIONS(8813), + [aux_sym_def_type_statement_token12] = ACTIONS(8813), + [aux_sym_def_type_statement_token13] = ACTIONS(8813), + [aux_sym_def_type_statement_token14] = ACTIONS(8813), + [aux_sym_call_statement_token1] = ACTIONS(8813), + [sym__ambiguous_call_statement] = ACTIONS(8813), + [aux_sym_addressof_expression_token1] = ACTIONS(8813), + [aux_sym_type_of_expression_token1] = ACTIONS(8813), + [aux_sym_unary_expression_token1] = ACTIONS(8813), + [sym_string_literal] = ACTIONS(8815), + [sym_number_literal] = ACTIONS(8815), + [aux_sym_boolean_literal_token1] = ACTIONS(8813), + [aux_sym_boolean_literal_token2] = ACTIONS(8813), + [sym_nothing_literal] = ACTIONS(8813), + [sym_null_literal] = ACTIONS(8813), + [sym_empty_literal] = ACTIONS(8813), + [sym_date_literal] = ACTIONS(8815), + [anon_sym_POUND] = ACTIONS(8813), + }, + [STATE(6423)] = { + [sym_identifier] = ACTIONS(9184), + [sym_newline] = ACTIONS(9186), + [anon_sym_COLON] = ACTIONS(9186), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9184), + [aux_sym_frm_property_statement_token1] = ACTIONS(9184), + [anon_sym_DOT] = ACTIONS(9184), + [anon_sym_BANG] = ACTIONS(9186), + [aux_sym__attribute_identifier_token1] = ACTIONS(9184), + [aux_sym_option_statement_token3] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9184), + [aux_sym_preprocessor_const_token1] = ACTIONS(9184), + [sym_static_modifier] = ACTIONS(9184), + [sym__dim_keyword] = ACTIONS(9184), + [sym__redim_keyword] = ACTIONS(9184), + [aux_sym_get_accessor_token1] = ACTIONS(9184), + [aux_sym_set_accessor_token1] = ACTIONS(9184), + [aux_sym_const_declaration_token1] = ACTIONS(9184), + [anon_sym_LPAREN] = ACTIONS(9186), + [aux_sym_as_type_clause_token2] = ACTIONS(9184), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9184), + [aux_sym_visibility_token1] = ACTIONS(9184), + [aux_sym_visibility_token2] = ACTIONS(9184), + [aux_sym_elseif_fragment_token1] = ACTIONS(9184), + [aux_sym_else_fragment_token1] = ACTIONS(9184), + [aux_sym_select_statement_token1] = ACTIONS(9184), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9184), + [aux_sym__for_header_token1] = ACTIONS(9184), + [aux_sym_do_statement_token1] = ACTIONS(9184), + [aux_sym_do_condition_token1] = ACTIONS(9184), + [aux_sym_with_statement_token1] = ACTIONS(9184), + [aux_sym_exit_statement_token1] = ACTIONS(9184), + [sym_end_statement] = ACTIONS(9186), + [aux_sym_on_goto_statement_token1] = ACTIONS(9184), + [aux_sym_on_goto_statement_token2] = ACTIONS(9184), + [aux_sym_on_error_statement_token2] = ACTIONS(9184), + [sym__ambiguous_redim_statement] = ACTIONS(9186), + [aux_sym_erase_statement_token1] = ACTIONS(9184), + [aux_sym_open_statement_token1] = ACTIONS(9184), + [aux_sym_file_mode_token2] = ACTIONS(9184), + [aux_sym_file_access_token2] = ACTIONS(9184), + [aux_sym_file_lock_token2] = ACTIONS(9184), + [aux_sym_print_statement_token1] = ACTIONS(9184), + [anon_sym_PLUS] = ACTIONS(9186), + [anon_sym_DASH] = ACTIONS(9184), + [anon_sym_QMARK] = ACTIONS(9186), + [aux_sym_close_statement_token1] = ACTIONS(9184), + [aux_sym_put_statement_token1] = ACTIONS(9184), + [aux_sym_unlock_statement_token1] = ACTIONS(9184), + [aux_sym_seek_statement_token1] = ACTIONS(9184), + [sym_reset_statement] = ACTIONS(9184), + [aux_sym_raise_event_statement_token1] = ACTIONS(9184), + [sym_stop_statement] = ACTIONS(9184), + [sym_beep_statement] = ACTIONS(9184), + [aux_sym_unload_statement_token1] = ACTIONS(9184), + [aux_sym_def_type_statement_token1] = ACTIONS(9184), + [aux_sym_def_type_statement_token2] = ACTIONS(9184), + [aux_sym_def_type_statement_token3] = ACTIONS(9184), + [aux_sym_def_type_statement_token4] = ACTIONS(9184), + [aux_sym_def_type_statement_token5] = ACTIONS(9184), + [aux_sym_def_type_statement_token6] = ACTIONS(9184), + [aux_sym_def_type_statement_token7] = ACTIONS(9184), + [aux_sym_def_type_statement_token8] = ACTIONS(9184), + [aux_sym_def_type_statement_token9] = ACTIONS(9184), + [aux_sym_def_type_statement_token10] = ACTIONS(9184), + [aux_sym_def_type_statement_token11] = ACTIONS(9184), + [aux_sym_def_type_statement_token12] = ACTIONS(9184), + [aux_sym_def_type_statement_token13] = ACTIONS(9184), + [aux_sym_def_type_statement_token14] = ACTIONS(9184), + [aux_sym_call_statement_token1] = ACTIONS(9184), + [sym__ambiguous_call_statement] = ACTIONS(9184), + [aux_sym_addressof_expression_token1] = ACTIONS(9184), + [aux_sym_type_of_expression_token1] = ACTIONS(9184), + [aux_sym_unary_expression_token1] = ACTIONS(9184), + [sym_string_literal] = ACTIONS(9186), + [sym_number_literal] = ACTIONS(9186), + [aux_sym_boolean_literal_token1] = ACTIONS(9184), + [aux_sym_boolean_literal_token2] = ACTIONS(9184), + [sym_nothing_literal] = ACTIONS(9184), + [sym_null_literal] = ACTIONS(9184), + [sym_empty_literal] = ACTIONS(9184), + [sym_date_literal] = ACTIONS(9186), + [anon_sym_POUND] = ACTIONS(9184), + }, + [STATE(6424)] = { + [sym_identifier] = ACTIONS(9760), + [sym_newline] = ACTIONS(9762), + [anon_sym_COLON] = ACTIONS(9762), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9760), + [aux_sym_frm_property_statement_token1] = ACTIONS(9760), + [anon_sym_DOT] = ACTIONS(9760), + [anon_sym_BANG] = ACTIONS(9762), + [aux_sym__attribute_identifier_token1] = ACTIONS(9760), + [aux_sym_option_statement_token3] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9760), + [aux_sym_preprocessor_const_token1] = ACTIONS(9760), + [sym_static_modifier] = ACTIONS(9760), + [sym__dim_keyword] = ACTIONS(9760), + [sym__redim_keyword] = ACTIONS(9760), + [aux_sym_get_accessor_token1] = ACTIONS(9760), + [aux_sym_set_accessor_token1] = ACTIONS(9760), + [aux_sym_const_declaration_token1] = ACTIONS(9760), + [anon_sym_LPAREN] = ACTIONS(9762), + [aux_sym_as_type_clause_token2] = ACTIONS(9760), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9760), + [aux_sym_visibility_token1] = ACTIONS(9760), + [aux_sym_visibility_token2] = ACTIONS(9760), + [aux_sym_elseif_fragment_token1] = ACTIONS(9760), + [aux_sym_else_fragment_token1] = ACTIONS(9760), + [aux_sym_select_statement_token1] = ACTIONS(9760), + [aux_sym__for_header_token1] = ACTIONS(9760), + [aux_sym_do_statement_token1] = ACTIONS(9760), + [aux_sym_do_condition_token1] = ACTIONS(9760), + [aux_sym_with_statement_token1] = ACTIONS(9760), + [aux_sym_exit_statement_token1] = ACTIONS(9760), + [sym_end_statement] = ACTIONS(9762), + [aux_sym_on_goto_statement_token1] = ACTIONS(9760), + [aux_sym_on_goto_statement_token2] = ACTIONS(9760), + [aux_sym_on_error_statement_token2] = ACTIONS(9760), + [sym__ambiguous_redim_statement] = ACTIONS(9762), + [aux_sym_erase_statement_token1] = ACTIONS(9760), + [aux_sym_open_statement_token1] = ACTIONS(9760), + [aux_sym_file_mode_token2] = ACTIONS(9760), + [aux_sym_file_access_token2] = ACTIONS(9760), + [aux_sym_file_lock_token2] = ACTIONS(9760), + [aux_sym_print_statement_token1] = ACTIONS(9760), + [anon_sym_PLUS] = ACTIONS(9762), + [anon_sym_DASH] = ACTIONS(9760), + [anon_sym_QMARK] = ACTIONS(9762), + [aux_sym_close_statement_token1] = ACTIONS(9760), + [aux_sym_put_statement_token1] = ACTIONS(9760), + [aux_sym_unlock_statement_token1] = ACTIONS(9760), + [aux_sym_seek_statement_token1] = ACTIONS(9760), + [sym_reset_statement] = ACTIONS(9760), + [aux_sym_raise_event_statement_token1] = ACTIONS(9760), + [sym_stop_statement] = ACTIONS(9760), + [sym_beep_statement] = ACTIONS(9760), + [aux_sym_unload_statement_token1] = ACTIONS(9760), + [aux_sym_def_type_statement_token1] = ACTIONS(9760), + [aux_sym_def_type_statement_token2] = ACTIONS(9760), + [aux_sym_def_type_statement_token3] = ACTIONS(9760), + [aux_sym_def_type_statement_token4] = ACTIONS(9760), + [aux_sym_def_type_statement_token5] = ACTIONS(9760), + [aux_sym_def_type_statement_token6] = ACTIONS(9760), + [aux_sym_def_type_statement_token7] = ACTIONS(9760), + [aux_sym_def_type_statement_token8] = ACTIONS(9760), + [aux_sym_def_type_statement_token9] = ACTIONS(9760), + [aux_sym_def_type_statement_token10] = ACTIONS(9760), + [aux_sym_def_type_statement_token11] = ACTIONS(9760), + [aux_sym_def_type_statement_token12] = ACTIONS(9760), + [aux_sym_def_type_statement_token13] = ACTIONS(9760), + [aux_sym_def_type_statement_token14] = ACTIONS(9760), + [aux_sym_call_statement_token1] = ACTIONS(9760), + [sym__ambiguous_call_statement] = ACTIONS(9760), + [aux_sym_addressof_expression_token1] = ACTIONS(9760), + [aux_sym_type_of_expression_token1] = ACTIONS(9760), + [aux_sym_unary_expression_token1] = ACTIONS(9760), + [sym_string_literal] = ACTIONS(9762), + [sym_number_literal] = ACTIONS(9762), + [aux_sym_boolean_literal_token1] = ACTIONS(9760), + [aux_sym_boolean_literal_token2] = ACTIONS(9760), + [sym_nothing_literal] = ACTIONS(9760), + [sym_null_literal] = ACTIONS(9760), + [sym_empty_literal] = ACTIONS(9760), + [sym_date_literal] = ACTIONS(9762), + [anon_sym_POUND] = ACTIONS(9760), + }, + [STATE(6425)] = { + [sym_identifier] = ACTIONS(9188), + [sym_newline] = ACTIONS(9190), + [anon_sym_COLON] = ACTIONS(9190), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9188), + [aux_sym_frm_property_statement_token1] = ACTIONS(9188), + [anon_sym_DOT] = ACTIONS(9188), + [anon_sym_BANG] = ACTIONS(9190), + [aux_sym__attribute_identifier_token1] = ACTIONS(9188), + [aux_sym_option_statement_token3] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9188), + [aux_sym_preprocessor_const_token1] = ACTIONS(9188), + [sym_static_modifier] = ACTIONS(9188), + [sym__dim_keyword] = ACTIONS(9188), + [sym__redim_keyword] = ACTIONS(9188), + [aux_sym_get_accessor_token1] = ACTIONS(9188), + [aux_sym_set_accessor_token1] = ACTIONS(9188), + [aux_sym_const_declaration_token1] = ACTIONS(9188), + [anon_sym_LPAREN] = ACTIONS(9190), + [aux_sym_as_type_clause_token2] = ACTIONS(9188), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9188), + [aux_sym_visibility_token1] = ACTIONS(9188), + [aux_sym_visibility_token2] = ACTIONS(9188), + [aux_sym_elseif_fragment_token1] = ACTIONS(9188), + [aux_sym_else_fragment_token1] = ACTIONS(9188), + [aux_sym_select_statement_token1] = ACTIONS(9188), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9188), + [aux_sym__for_header_token1] = ACTIONS(9188), + [aux_sym_do_statement_token1] = ACTIONS(9188), + [aux_sym_do_condition_token1] = ACTIONS(9188), + [aux_sym_with_statement_token1] = ACTIONS(9188), + [aux_sym_exit_statement_token1] = ACTIONS(9188), + [sym_end_statement] = ACTIONS(9190), + [aux_sym_on_goto_statement_token1] = ACTIONS(9188), + [aux_sym_on_goto_statement_token2] = ACTIONS(9188), + [aux_sym_on_error_statement_token2] = ACTIONS(9188), + [sym__ambiguous_redim_statement] = ACTIONS(9190), + [aux_sym_erase_statement_token1] = ACTIONS(9188), + [aux_sym_open_statement_token1] = ACTIONS(9188), + [aux_sym_file_mode_token2] = ACTIONS(9188), + [aux_sym_file_access_token2] = ACTIONS(9188), + [aux_sym_file_lock_token2] = ACTIONS(9188), + [aux_sym_print_statement_token1] = ACTIONS(9188), + [anon_sym_PLUS] = ACTIONS(9190), + [anon_sym_DASH] = ACTIONS(9188), + [anon_sym_QMARK] = ACTIONS(9190), + [aux_sym_close_statement_token1] = ACTIONS(9188), + [aux_sym_put_statement_token1] = ACTIONS(9188), + [aux_sym_unlock_statement_token1] = ACTIONS(9188), + [aux_sym_seek_statement_token1] = ACTIONS(9188), + [sym_reset_statement] = ACTIONS(9188), + [aux_sym_raise_event_statement_token1] = ACTIONS(9188), + [sym_stop_statement] = ACTIONS(9188), + [sym_beep_statement] = ACTIONS(9188), + [aux_sym_unload_statement_token1] = ACTIONS(9188), + [aux_sym_def_type_statement_token1] = ACTIONS(9188), + [aux_sym_def_type_statement_token2] = ACTIONS(9188), + [aux_sym_def_type_statement_token3] = ACTIONS(9188), + [aux_sym_def_type_statement_token4] = ACTIONS(9188), + [aux_sym_def_type_statement_token5] = ACTIONS(9188), + [aux_sym_def_type_statement_token6] = ACTIONS(9188), + [aux_sym_def_type_statement_token7] = ACTIONS(9188), + [aux_sym_def_type_statement_token8] = ACTIONS(9188), + [aux_sym_def_type_statement_token9] = ACTIONS(9188), + [aux_sym_def_type_statement_token10] = ACTIONS(9188), + [aux_sym_def_type_statement_token11] = ACTIONS(9188), + [aux_sym_def_type_statement_token12] = ACTIONS(9188), + [aux_sym_def_type_statement_token13] = ACTIONS(9188), + [aux_sym_def_type_statement_token14] = ACTIONS(9188), + [aux_sym_call_statement_token1] = ACTIONS(9188), + [sym__ambiguous_call_statement] = ACTIONS(9188), + [aux_sym_addressof_expression_token1] = ACTIONS(9188), + [aux_sym_type_of_expression_token1] = ACTIONS(9188), + [aux_sym_unary_expression_token1] = ACTIONS(9188), + [sym_string_literal] = ACTIONS(9190), + [sym_number_literal] = ACTIONS(9190), + [aux_sym_boolean_literal_token1] = ACTIONS(9188), + [aux_sym_boolean_literal_token2] = ACTIONS(9188), + [sym_nothing_literal] = ACTIONS(9188), + [sym_null_literal] = ACTIONS(9188), + [sym_empty_literal] = ACTIONS(9188), + [sym_date_literal] = ACTIONS(9190), + [anon_sym_POUND] = ACTIONS(9188), + }, + [STATE(6426)] = { + [sym_identifier] = ACTIONS(9192), + [sym_newline] = ACTIONS(9194), + [anon_sym_COLON] = ACTIONS(9194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9192), + [aux_sym_frm_property_statement_token1] = ACTIONS(9192), + [anon_sym_DOT] = ACTIONS(9192), + [anon_sym_BANG] = ACTIONS(9194), + [aux_sym__attribute_identifier_token1] = ACTIONS(9192), + [aux_sym_option_statement_token3] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9192), + [aux_sym_preprocessor_const_token1] = ACTIONS(9192), + [sym_static_modifier] = ACTIONS(9192), + [sym__dim_keyword] = ACTIONS(9192), + [sym__redim_keyword] = ACTIONS(9192), + [aux_sym_get_accessor_token1] = ACTIONS(9192), + [aux_sym_set_accessor_token1] = ACTIONS(9192), + [aux_sym_const_declaration_token1] = ACTIONS(9192), + [anon_sym_LPAREN] = ACTIONS(9194), + [aux_sym_as_type_clause_token2] = ACTIONS(9192), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9192), + [aux_sym_visibility_token1] = ACTIONS(9192), + [aux_sym_visibility_token2] = ACTIONS(9192), + [aux_sym_elseif_fragment_token1] = ACTIONS(9192), + [aux_sym_else_fragment_token1] = ACTIONS(9192), + [aux_sym_select_statement_token1] = ACTIONS(9192), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9192), + [aux_sym__for_header_token1] = ACTIONS(9192), + [aux_sym_do_statement_token1] = ACTIONS(9192), + [aux_sym_do_condition_token1] = ACTIONS(9192), + [aux_sym_with_statement_token1] = ACTIONS(9192), + [aux_sym_exit_statement_token1] = ACTIONS(9192), + [sym_end_statement] = ACTIONS(9194), + [aux_sym_on_goto_statement_token1] = ACTIONS(9192), + [aux_sym_on_goto_statement_token2] = ACTIONS(9192), + [aux_sym_on_error_statement_token2] = ACTIONS(9192), + [sym__ambiguous_redim_statement] = ACTIONS(9194), + [aux_sym_erase_statement_token1] = ACTIONS(9192), + [aux_sym_open_statement_token1] = ACTIONS(9192), + [aux_sym_file_mode_token2] = ACTIONS(9192), + [aux_sym_file_access_token2] = ACTIONS(9192), + [aux_sym_file_lock_token2] = ACTIONS(9192), + [aux_sym_print_statement_token1] = ACTIONS(9192), + [anon_sym_PLUS] = ACTIONS(9194), + [anon_sym_DASH] = ACTIONS(9192), + [anon_sym_QMARK] = ACTIONS(9194), + [aux_sym_close_statement_token1] = ACTIONS(9192), + [aux_sym_put_statement_token1] = ACTIONS(9192), + [aux_sym_unlock_statement_token1] = ACTIONS(9192), + [aux_sym_seek_statement_token1] = ACTIONS(9192), + [sym_reset_statement] = ACTIONS(9192), + [aux_sym_raise_event_statement_token1] = ACTIONS(9192), + [sym_stop_statement] = ACTIONS(9192), + [sym_beep_statement] = ACTIONS(9192), + [aux_sym_unload_statement_token1] = ACTIONS(9192), + [aux_sym_def_type_statement_token1] = ACTIONS(9192), + [aux_sym_def_type_statement_token2] = ACTIONS(9192), + [aux_sym_def_type_statement_token3] = ACTIONS(9192), + [aux_sym_def_type_statement_token4] = ACTIONS(9192), + [aux_sym_def_type_statement_token5] = ACTIONS(9192), + [aux_sym_def_type_statement_token6] = ACTIONS(9192), + [aux_sym_def_type_statement_token7] = ACTIONS(9192), + [aux_sym_def_type_statement_token8] = ACTIONS(9192), + [aux_sym_def_type_statement_token9] = ACTIONS(9192), + [aux_sym_def_type_statement_token10] = ACTIONS(9192), + [aux_sym_def_type_statement_token11] = ACTIONS(9192), + [aux_sym_def_type_statement_token12] = ACTIONS(9192), + [aux_sym_def_type_statement_token13] = ACTIONS(9192), + [aux_sym_def_type_statement_token14] = ACTIONS(9192), + [aux_sym_call_statement_token1] = ACTIONS(9192), + [sym__ambiguous_call_statement] = ACTIONS(9192), + [aux_sym_addressof_expression_token1] = ACTIONS(9192), + [aux_sym_type_of_expression_token1] = ACTIONS(9192), + [aux_sym_unary_expression_token1] = ACTIONS(9192), + [sym_string_literal] = ACTIONS(9194), + [sym_number_literal] = ACTIONS(9194), + [aux_sym_boolean_literal_token1] = ACTIONS(9192), + [aux_sym_boolean_literal_token2] = ACTIONS(9192), + [sym_nothing_literal] = ACTIONS(9192), + [sym_null_literal] = ACTIONS(9192), + [sym_empty_literal] = ACTIONS(9192), + [sym_date_literal] = ACTIONS(9194), + [anon_sym_POUND] = ACTIONS(9192), + }, + [STATE(6427)] = { + [sym_identifier] = ACTIONS(9764), + [sym_newline] = ACTIONS(9766), + [anon_sym_COLON] = ACTIONS(9766), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9764), + [aux_sym_frm_property_statement_token1] = ACTIONS(9764), + [anon_sym_DOT] = ACTIONS(9764), + [anon_sym_BANG] = ACTIONS(9766), + [aux_sym__attribute_identifier_token1] = ACTIONS(9764), + [aux_sym_option_statement_token3] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9764), + [aux_sym_preprocessor_const_token1] = ACTIONS(9764), + [sym_static_modifier] = ACTIONS(9764), + [sym__dim_keyword] = ACTIONS(9764), + [sym__redim_keyword] = ACTIONS(9764), + [aux_sym_get_accessor_token1] = ACTIONS(9764), + [aux_sym_set_accessor_token1] = ACTIONS(9764), + [aux_sym_const_declaration_token1] = ACTIONS(9764), + [anon_sym_LPAREN] = ACTIONS(9766), + [aux_sym_as_type_clause_token2] = ACTIONS(9764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9764), + [aux_sym_visibility_token1] = ACTIONS(9764), + [aux_sym_visibility_token2] = ACTIONS(9764), + [aux_sym_elseif_fragment_token1] = ACTIONS(9764), + [aux_sym_else_fragment_token1] = ACTIONS(9764), + [aux_sym_select_statement_token1] = ACTIONS(9764), + [aux_sym__for_header_token1] = ACTIONS(9764), + [aux_sym_do_statement_token1] = ACTIONS(9764), + [aux_sym_do_condition_token1] = ACTIONS(9764), + [aux_sym_with_statement_token1] = ACTIONS(9764), + [aux_sym_exit_statement_token1] = ACTIONS(9764), + [sym_end_statement] = ACTIONS(9766), + [aux_sym_on_goto_statement_token1] = ACTIONS(9764), + [aux_sym_on_goto_statement_token2] = ACTIONS(9764), + [aux_sym_on_error_statement_token2] = ACTIONS(9764), + [sym__ambiguous_redim_statement] = ACTIONS(9766), + [aux_sym_erase_statement_token1] = ACTIONS(9764), + [aux_sym_open_statement_token1] = ACTIONS(9764), + [aux_sym_file_mode_token2] = ACTIONS(9764), + [aux_sym_file_access_token2] = ACTIONS(9764), + [aux_sym_file_lock_token2] = ACTIONS(9764), + [aux_sym_print_statement_token1] = ACTIONS(9764), + [anon_sym_PLUS] = ACTIONS(9766), + [anon_sym_DASH] = ACTIONS(9764), + [anon_sym_QMARK] = ACTIONS(9766), + [aux_sym_close_statement_token1] = ACTIONS(9764), + [aux_sym_put_statement_token1] = ACTIONS(9764), + [aux_sym_unlock_statement_token1] = ACTIONS(9764), + [aux_sym_seek_statement_token1] = ACTIONS(9764), + [sym_reset_statement] = ACTIONS(9764), + [aux_sym_raise_event_statement_token1] = ACTIONS(9764), + [sym_stop_statement] = ACTIONS(9764), + [sym_beep_statement] = ACTIONS(9764), + [aux_sym_unload_statement_token1] = ACTIONS(9764), + [aux_sym_def_type_statement_token1] = ACTIONS(9764), + [aux_sym_def_type_statement_token2] = ACTIONS(9764), + [aux_sym_def_type_statement_token3] = ACTIONS(9764), + [aux_sym_def_type_statement_token4] = ACTIONS(9764), + [aux_sym_def_type_statement_token5] = ACTIONS(9764), + [aux_sym_def_type_statement_token6] = ACTIONS(9764), + [aux_sym_def_type_statement_token7] = ACTIONS(9764), + [aux_sym_def_type_statement_token8] = ACTIONS(9764), + [aux_sym_def_type_statement_token9] = ACTIONS(9764), + [aux_sym_def_type_statement_token10] = ACTIONS(9764), + [aux_sym_def_type_statement_token11] = ACTIONS(9764), + [aux_sym_def_type_statement_token12] = ACTIONS(9764), + [aux_sym_def_type_statement_token13] = ACTIONS(9764), + [aux_sym_def_type_statement_token14] = ACTIONS(9764), + [aux_sym_call_statement_token1] = ACTIONS(9764), + [sym__ambiguous_call_statement] = ACTIONS(9764), + [aux_sym_addressof_expression_token1] = ACTIONS(9764), + [aux_sym_type_of_expression_token1] = ACTIONS(9764), + [aux_sym_unary_expression_token1] = ACTIONS(9764), + [sym_string_literal] = ACTIONS(9766), + [sym_number_literal] = ACTIONS(9766), + [aux_sym_boolean_literal_token1] = ACTIONS(9764), + [aux_sym_boolean_literal_token2] = ACTIONS(9764), + [sym_nothing_literal] = ACTIONS(9764), + [sym_null_literal] = ACTIONS(9764), + [sym_empty_literal] = ACTIONS(9764), + [sym_date_literal] = ACTIONS(9766), + [anon_sym_POUND] = ACTIONS(9764), + }, + [STATE(6428)] = { + [sym_identifier] = ACTIONS(9768), + [sym_newline] = ACTIONS(9770), + [anon_sym_COLON] = ACTIONS(9770), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9768), + [aux_sym_frm_property_statement_token1] = ACTIONS(9768), + [anon_sym_DOT] = ACTIONS(9768), + [anon_sym_BANG] = ACTIONS(9770), + [aux_sym__attribute_identifier_token1] = ACTIONS(9768), + [aux_sym_option_statement_token3] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9768), + [aux_sym_preprocessor_const_token1] = ACTIONS(9768), + [sym_static_modifier] = ACTIONS(9768), + [sym__dim_keyword] = ACTIONS(9768), + [sym__redim_keyword] = ACTIONS(9768), + [aux_sym_get_accessor_token1] = ACTIONS(9768), + [aux_sym_set_accessor_token1] = ACTIONS(9768), + [aux_sym_const_declaration_token1] = ACTIONS(9768), + [anon_sym_LPAREN] = ACTIONS(9770), + [aux_sym_as_type_clause_token2] = ACTIONS(9768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9768), + [aux_sym_visibility_token1] = ACTIONS(9768), + [aux_sym_visibility_token2] = ACTIONS(9768), + [aux_sym_elseif_fragment_token1] = ACTIONS(9768), + [aux_sym_else_fragment_token1] = ACTIONS(9768), + [aux_sym_select_statement_token1] = ACTIONS(9768), + [aux_sym__for_header_token1] = ACTIONS(9768), + [aux_sym_do_statement_token1] = ACTIONS(9768), + [aux_sym_do_condition_token1] = ACTIONS(9768), + [aux_sym_with_statement_token1] = ACTIONS(9768), + [aux_sym_exit_statement_token1] = ACTIONS(9768), + [sym_end_statement] = ACTIONS(9770), + [aux_sym_on_goto_statement_token1] = ACTIONS(9768), + [aux_sym_on_goto_statement_token2] = ACTIONS(9768), + [aux_sym_on_error_statement_token2] = ACTIONS(9768), + [sym__ambiguous_redim_statement] = ACTIONS(9770), + [aux_sym_erase_statement_token1] = ACTIONS(9768), + [aux_sym_open_statement_token1] = ACTIONS(9768), + [aux_sym_file_mode_token2] = ACTIONS(9768), + [aux_sym_file_access_token2] = ACTIONS(9768), + [aux_sym_file_lock_token2] = ACTIONS(9768), + [aux_sym_print_statement_token1] = ACTIONS(9768), + [anon_sym_PLUS] = ACTIONS(9770), + [anon_sym_DASH] = ACTIONS(9768), + [anon_sym_QMARK] = ACTIONS(9770), + [aux_sym_close_statement_token1] = ACTIONS(9768), + [aux_sym_put_statement_token1] = ACTIONS(9768), + [aux_sym_unlock_statement_token1] = ACTIONS(9768), + [aux_sym_seek_statement_token1] = ACTIONS(9768), + [sym_reset_statement] = ACTIONS(9768), + [aux_sym_raise_event_statement_token1] = ACTIONS(9768), + [sym_stop_statement] = ACTIONS(9768), + [sym_beep_statement] = ACTIONS(9768), + [aux_sym_unload_statement_token1] = ACTIONS(9768), + [aux_sym_def_type_statement_token1] = ACTIONS(9768), + [aux_sym_def_type_statement_token2] = ACTIONS(9768), + [aux_sym_def_type_statement_token3] = ACTIONS(9768), + [aux_sym_def_type_statement_token4] = ACTIONS(9768), + [aux_sym_def_type_statement_token5] = ACTIONS(9768), + [aux_sym_def_type_statement_token6] = ACTIONS(9768), + [aux_sym_def_type_statement_token7] = ACTIONS(9768), + [aux_sym_def_type_statement_token8] = ACTIONS(9768), + [aux_sym_def_type_statement_token9] = ACTIONS(9768), + [aux_sym_def_type_statement_token10] = ACTIONS(9768), + [aux_sym_def_type_statement_token11] = ACTIONS(9768), + [aux_sym_def_type_statement_token12] = ACTIONS(9768), + [aux_sym_def_type_statement_token13] = ACTIONS(9768), + [aux_sym_def_type_statement_token14] = ACTIONS(9768), + [aux_sym_call_statement_token1] = ACTIONS(9768), + [sym__ambiguous_call_statement] = ACTIONS(9768), + [aux_sym_addressof_expression_token1] = ACTIONS(9768), + [aux_sym_type_of_expression_token1] = ACTIONS(9768), + [aux_sym_unary_expression_token1] = ACTIONS(9768), + [sym_string_literal] = ACTIONS(9770), + [sym_number_literal] = ACTIONS(9770), + [aux_sym_boolean_literal_token1] = ACTIONS(9768), + [aux_sym_boolean_literal_token2] = ACTIONS(9768), + [sym_nothing_literal] = ACTIONS(9768), + [sym_null_literal] = ACTIONS(9768), + [sym_empty_literal] = ACTIONS(9768), + [sym_date_literal] = ACTIONS(9770), + [anon_sym_POUND] = ACTIONS(9768), + }, + [STATE(6429)] = { + [sym_identifier] = ACTIONS(9364), + [sym_newline] = ACTIONS(9366), + [anon_sym_COLON] = ACTIONS(9366), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9364), + [aux_sym_frm_property_statement_token1] = ACTIONS(9364), + [anon_sym_DOT] = ACTIONS(9364), + [anon_sym_BANG] = ACTIONS(9366), + [aux_sym__attribute_identifier_token1] = ACTIONS(9364), + [aux_sym_option_statement_token3] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9364), + [aux_sym_preprocessor_const_token1] = ACTIONS(9364), + [sym_static_modifier] = ACTIONS(9364), + [sym__dim_keyword] = ACTIONS(9364), + [sym__redim_keyword] = ACTIONS(9364), + [aux_sym_get_accessor_token1] = ACTIONS(9364), + [aux_sym_set_accessor_token1] = ACTIONS(9364), + [aux_sym_const_declaration_token1] = ACTIONS(9364), + [anon_sym_LPAREN] = ACTIONS(9366), + [aux_sym_as_type_clause_token2] = ACTIONS(9364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9364), + [aux_sym_visibility_token1] = ACTIONS(9364), + [aux_sym_visibility_token2] = ACTIONS(9364), + [aux_sym_elseif_fragment_token1] = ACTIONS(9364), + [aux_sym_else_fragment_token1] = ACTIONS(9364), + [aux_sym_select_statement_token1] = ACTIONS(9364), + [aux_sym_select_statement_token2] = ACTIONS(9364), + [aux_sym__for_header_token1] = ACTIONS(9364), + [aux_sym_do_statement_token1] = ACTIONS(9364), + [aux_sym_do_condition_token1] = ACTIONS(9364), + [aux_sym_with_statement_token1] = ACTIONS(9364), + [aux_sym_exit_statement_token1] = ACTIONS(9364), + [sym_end_statement] = ACTIONS(9366), + [aux_sym_on_goto_statement_token1] = ACTIONS(9364), + [aux_sym_on_goto_statement_token2] = ACTIONS(9364), + [aux_sym_on_error_statement_token2] = ACTIONS(9364), + [sym__ambiguous_redim_statement] = ACTIONS(9366), + [aux_sym_erase_statement_token1] = ACTIONS(9364), + [aux_sym_open_statement_token1] = ACTIONS(9364), + [aux_sym_file_mode_token2] = ACTIONS(9364), + [aux_sym_file_access_token2] = ACTIONS(9364), + [aux_sym_file_lock_token2] = ACTIONS(9364), + [aux_sym_print_statement_token1] = ACTIONS(9364), + [anon_sym_PLUS] = ACTIONS(9366), + [anon_sym_DASH] = ACTIONS(9364), + [anon_sym_QMARK] = ACTIONS(9366), + [aux_sym_close_statement_token1] = ACTIONS(9364), + [aux_sym_put_statement_token1] = ACTIONS(9364), + [aux_sym_unlock_statement_token1] = ACTIONS(9364), + [aux_sym_seek_statement_token1] = ACTIONS(9364), + [sym_reset_statement] = ACTIONS(9364), + [aux_sym_raise_event_statement_token1] = ACTIONS(9364), + [sym_stop_statement] = ACTIONS(9364), + [sym_beep_statement] = ACTIONS(9364), + [aux_sym_unload_statement_token1] = ACTIONS(9364), + [aux_sym_def_type_statement_token1] = ACTIONS(9364), + [aux_sym_def_type_statement_token2] = ACTIONS(9364), + [aux_sym_def_type_statement_token3] = ACTIONS(9364), + [aux_sym_def_type_statement_token4] = ACTIONS(9364), + [aux_sym_def_type_statement_token5] = ACTIONS(9364), + [aux_sym_def_type_statement_token6] = ACTIONS(9364), + [aux_sym_def_type_statement_token7] = ACTIONS(9364), + [aux_sym_def_type_statement_token8] = ACTIONS(9364), + [aux_sym_def_type_statement_token9] = ACTIONS(9364), + [aux_sym_def_type_statement_token10] = ACTIONS(9364), + [aux_sym_def_type_statement_token11] = ACTIONS(9364), + [aux_sym_def_type_statement_token12] = ACTIONS(9364), + [aux_sym_def_type_statement_token13] = ACTIONS(9364), + [aux_sym_def_type_statement_token14] = ACTIONS(9364), + [aux_sym_call_statement_token1] = ACTIONS(9364), + [sym__ambiguous_call_statement] = ACTIONS(9364), + [aux_sym_addressof_expression_token1] = ACTIONS(9364), + [aux_sym_type_of_expression_token1] = ACTIONS(9364), + [aux_sym_unary_expression_token1] = ACTIONS(9364), + [sym_string_literal] = ACTIONS(9366), + [sym_number_literal] = ACTIONS(9366), + [aux_sym_boolean_literal_token1] = ACTIONS(9364), + [aux_sym_boolean_literal_token2] = ACTIONS(9364), + [sym_nothing_literal] = ACTIONS(9364), + [sym_null_literal] = ACTIONS(9364), + [sym_empty_literal] = ACTIONS(9364), + [sym_date_literal] = ACTIONS(9366), + [anon_sym_POUND] = ACTIONS(9364), + }, + [STATE(6430)] = { + [sym_identifier] = ACTIONS(9631), + [sym_newline] = ACTIONS(9633), + [anon_sym_COLON] = ACTIONS(9633), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9631), + [aux_sym_frm_property_statement_token1] = ACTIONS(9631), + [anon_sym_DOT] = ACTIONS(9631), + [anon_sym_BANG] = ACTIONS(9633), + [aux_sym__attribute_identifier_token1] = ACTIONS(9631), + [aux_sym_option_statement_token3] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9631), + [aux_sym_preprocessor_const_token1] = ACTIONS(9631), + [sym_static_modifier] = ACTIONS(9631), + [sym__dim_keyword] = ACTIONS(9631), + [sym__redim_keyword] = ACTIONS(9631), + [aux_sym_get_accessor_token1] = ACTIONS(9631), + [aux_sym_set_accessor_token1] = ACTIONS(9631), + [aux_sym_const_declaration_token1] = ACTIONS(9631), + [anon_sym_LPAREN] = ACTIONS(9633), + [aux_sym_as_type_clause_token2] = ACTIONS(9631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9631), + [aux_sym_visibility_token1] = ACTIONS(9631), + [aux_sym_visibility_token2] = ACTIONS(9631), + [aux_sym_elseif_fragment_token1] = ACTIONS(9631), + [aux_sym_else_fragment_token1] = ACTIONS(9631), + [aux_sym_select_statement_token1] = ACTIONS(9631), + [aux_sym__for_header_token1] = ACTIONS(9631), + [aux_sym_do_statement_token1] = ACTIONS(9631), + [aux_sym_do_statement_token2] = ACTIONS(9631), + [aux_sym_do_condition_token1] = ACTIONS(9631), + [aux_sym_with_statement_token1] = ACTIONS(9631), + [aux_sym_exit_statement_token1] = ACTIONS(9631), + [sym_end_statement] = ACTIONS(9633), + [aux_sym_on_goto_statement_token1] = ACTIONS(9631), + [aux_sym_on_goto_statement_token2] = ACTIONS(9631), + [aux_sym_on_error_statement_token2] = ACTIONS(9631), + [sym__ambiguous_redim_statement] = ACTIONS(9633), + [aux_sym_erase_statement_token1] = ACTIONS(9631), + [aux_sym_open_statement_token1] = ACTIONS(9631), + [aux_sym_file_mode_token2] = ACTIONS(9631), + [aux_sym_file_access_token2] = ACTIONS(9631), + [aux_sym_file_lock_token2] = ACTIONS(9631), + [aux_sym_print_statement_token1] = ACTIONS(9631), + [anon_sym_PLUS] = ACTIONS(9633), + [anon_sym_DASH] = ACTIONS(9631), + [anon_sym_QMARK] = ACTIONS(9633), + [aux_sym_close_statement_token1] = ACTIONS(9631), + [aux_sym_put_statement_token1] = ACTIONS(9631), + [aux_sym_unlock_statement_token1] = ACTIONS(9631), + [aux_sym_seek_statement_token1] = ACTIONS(9631), + [sym_reset_statement] = ACTIONS(9631), + [aux_sym_raise_event_statement_token1] = ACTIONS(9631), + [sym_stop_statement] = ACTIONS(9631), + [sym_beep_statement] = ACTIONS(9631), + [aux_sym_unload_statement_token1] = ACTIONS(9631), + [aux_sym_def_type_statement_token1] = ACTIONS(9631), + [aux_sym_def_type_statement_token2] = ACTIONS(9631), + [aux_sym_def_type_statement_token3] = ACTIONS(9631), + [aux_sym_def_type_statement_token4] = ACTIONS(9631), + [aux_sym_def_type_statement_token5] = ACTIONS(9631), + [aux_sym_def_type_statement_token6] = ACTIONS(9631), + [aux_sym_def_type_statement_token7] = ACTIONS(9631), + [aux_sym_def_type_statement_token8] = ACTIONS(9631), + [aux_sym_def_type_statement_token9] = ACTIONS(9631), + [aux_sym_def_type_statement_token10] = ACTIONS(9631), + [aux_sym_def_type_statement_token11] = ACTIONS(9631), + [aux_sym_def_type_statement_token12] = ACTIONS(9631), + [aux_sym_def_type_statement_token13] = ACTIONS(9631), + [aux_sym_def_type_statement_token14] = ACTIONS(9631), + [aux_sym_call_statement_token1] = ACTIONS(9631), + [sym__ambiguous_call_statement] = ACTIONS(9631), + [aux_sym_addressof_expression_token1] = ACTIONS(9631), + [aux_sym_type_of_expression_token1] = ACTIONS(9631), + [aux_sym_unary_expression_token1] = ACTIONS(9631), + [sym_string_literal] = ACTIONS(9633), + [sym_number_literal] = ACTIONS(9633), + [aux_sym_boolean_literal_token1] = ACTIONS(9631), + [aux_sym_boolean_literal_token2] = ACTIONS(9631), + [sym_nothing_literal] = ACTIONS(9631), + [sym_null_literal] = ACTIONS(9631), + [sym_empty_literal] = ACTIONS(9631), + [sym_date_literal] = ACTIONS(9633), + [anon_sym_POUND] = ACTIONS(9631), + }, + [STATE(6431)] = { + [sym_identifier] = ACTIONS(9635), + [sym_newline] = ACTIONS(9637), + [anon_sym_COLON] = ACTIONS(9637), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9635), + [aux_sym_frm_property_statement_token1] = ACTIONS(9635), + [anon_sym_DOT] = ACTIONS(9635), + [anon_sym_BANG] = ACTIONS(9637), + [aux_sym__attribute_identifier_token1] = ACTIONS(9635), + [aux_sym_option_statement_token3] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9635), + [aux_sym_preprocessor_const_token1] = ACTIONS(9635), + [sym_static_modifier] = ACTIONS(9635), + [sym__dim_keyword] = ACTIONS(9635), + [sym__redim_keyword] = ACTIONS(9635), + [aux_sym_get_accessor_token1] = ACTIONS(9635), + [aux_sym_set_accessor_token1] = ACTIONS(9635), + [aux_sym_const_declaration_token1] = ACTIONS(9635), + [anon_sym_LPAREN] = ACTIONS(9637), + [aux_sym_as_type_clause_token2] = ACTIONS(9635), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9635), + [aux_sym_visibility_token1] = ACTIONS(9635), + [aux_sym_visibility_token2] = ACTIONS(9635), + [aux_sym_elseif_fragment_token1] = ACTIONS(9635), + [aux_sym_else_fragment_token1] = ACTIONS(9635), + [aux_sym_select_statement_token1] = ACTIONS(9635), + [aux_sym__for_header_token1] = ACTIONS(9635), + [aux_sym_do_statement_token1] = ACTIONS(9635), + [aux_sym_do_statement_token2] = ACTIONS(9635), + [aux_sym_do_condition_token1] = ACTIONS(9635), + [aux_sym_with_statement_token1] = ACTIONS(9635), + [aux_sym_exit_statement_token1] = ACTIONS(9635), + [sym_end_statement] = ACTIONS(9637), + [aux_sym_on_goto_statement_token1] = ACTIONS(9635), + [aux_sym_on_goto_statement_token2] = ACTIONS(9635), + [aux_sym_on_error_statement_token2] = ACTIONS(9635), + [sym__ambiguous_redim_statement] = ACTIONS(9637), + [aux_sym_erase_statement_token1] = ACTIONS(9635), + [aux_sym_open_statement_token1] = ACTIONS(9635), + [aux_sym_file_mode_token2] = ACTIONS(9635), + [aux_sym_file_access_token2] = ACTIONS(9635), + [aux_sym_file_lock_token2] = ACTIONS(9635), + [aux_sym_print_statement_token1] = ACTIONS(9635), + [anon_sym_PLUS] = ACTIONS(9637), + [anon_sym_DASH] = ACTIONS(9635), + [anon_sym_QMARK] = ACTIONS(9637), + [aux_sym_close_statement_token1] = ACTIONS(9635), + [aux_sym_put_statement_token1] = ACTIONS(9635), + [aux_sym_unlock_statement_token1] = ACTIONS(9635), + [aux_sym_seek_statement_token1] = ACTIONS(9635), + [sym_reset_statement] = ACTIONS(9635), + [aux_sym_raise_event_statement_token1] = ACTIONS(9635), + [sym_stop_statement] = ACTIONS(9635), + [sym_beep_statement] = ACTIONS(9635), + [aux_sym_unload_statement_token1] = ACTIONS(9635), + [aux_sym_def_type_statement_token1] = ACTIONS(9635), + [aux_sym_def_type_statement_token2] = ACTIONS(9635), + [aux_sym_def_type_statement_token3] = ACTIONS(9635), + [aux_sym_def_type_statement_token4] = ACTIONS(9635), + [aux_sym_def_type_statement_token5] = ACTIONS(9635), + [aux_sym_def_type_statement_token6] = ACTIONS(9635), + [aux_sym_def_type_statement_token7] = ACTIONS(9635), + [aux_sym_def_type_statement_token8] = ACTIONS(9635), + [aux_sym_def_type_statement_token9] = ACTIONS(9635), + [aux_sym_def_type_statement_token10] = ACTIONS(9635), + [aux_sym_def_type_statement_token11] = ACTIONS(9635), + [aux_sym_def_type_statement_token12] = ACTIONS(9635), + [aux_sym_def_type_statement_token13] = ACTIONS(9635), + [aux_sym_def_type_statement_token14] = ACTIONS(9635), + [aux_sym_call_statement_token1] = ACTIONS(9635), + [sym__ambiguous_call_statement] = ACTIONS(9635), + [aux_sym_addressof_expression_token1] = ACTIONS(9635), + [aux_sym_type_of_expression_token1] = ACTIONS(9635), + [aux_sym_unary_expression_token1] = ACTIONS(9635), + [sym_string_literal] = ACTIONS(9637), + [sym_number_literal] = ACTIONS(9637), + [aux_sym_boolean_literal_token1] = ACTIONS(9635), + [aux_sym_boolean_literal_token2] = ACTIONS(9635), + [sym_nothing_literal] = ACTIONS(9635), + [sym_null_literal] = ACTIONS(9635), + [sym_empty_literal] = ACTIONS(9635), + [sym_date_literal] = ACTIONS(9637), + [anon_sym_POUND] = ACTIONS(9635), + }, + [STATE(6432)] = { + [sym_identifier] = ACTIONS(8809), + [sym_newline] = ACTIONS(8811), + [anon_sym_COLON] = ACTIONS(8811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8809), + [aux_sym_frm_property_statement_token1] = ACTIONS(8809), + [anon_sym_DOT] = ACTIONS(8809), + [anon_sym_BANG] = ACTIONS(8811), + [aux_sym__attribute_identifier_token1] = ACTIONS(8809), + [aux_sym_option_statement_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8809), + [aux_sym_preprocessor_const_token1] = ACTIONS(8809), + [sym_static_modifier] = ACTIONS(8809), + [sym__dim_keyword] = ACTIONS(8809), + [sym__redim_keyword] = ACTIONS(8809), + [aux_sym_get_accessor_token1] = ACTIONS(8809), + [aux_sym_set_accessor_token1] = ACTIONS(8809), + [aux_sym_const_declaration_token1] = ACTIONS(8809), + [anon_sym_LPAREN] = ACTIONS(8811), + [aux_sym_as_type_clause_token2] = ACTIONS(8809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8809), + [aux_sym_visibility_token1] = ACTIONS(8809), + [aux_sym_visibility_token2] = ACTIONS(8809), + [aux_sym_elseif_fragment_token1] = ACTIONS(8809), + [aux_sym_else_fragment_token1] = ACTIONS(8809), + [aux_sym_select_statement_token1] = ACTIONS(8809), + [aux_sym_select_statement_token2] = ACTIONS(8809), + [aux_sym__for_header_token1] = ACTIONS(8809), + [aux_sym_do_statement_token1] = ACTIONS(8809), + [aux_sym_do_condition_token1] = ACTIONS(8809), + [aux_sym_with_statement_token1] = ACTIONS(8809), + [aux_sym_exit_statement_token1] = ACTIONS(8809), + [sym_end_statement] = ACTIONS(8811), + [aux_sym_on_goto_statement_token1] = ACTIONS(8809), + [aux_sym_on_goto_statement_token2] = ACTIONS(8809), + [aux_sym_on_error_statement_token2] = ACTIONS(8809), + [sym__ambiguous_redim_statement] = ACTIONS(8811), + [aux_sym_erase_statement_token1] = ACTIONS(8809), + [aux_sym_open_statement_token1] = ACTIONS(8809), + [aux_sym_file_mode_token2] = ACTIONS(8809), + [aux_sym_file_access_token2] = ACTIONS(8809), + [aux_sym_file_lock_token2] = ACTIONS(8809), + [aux_sym_print_statement_token1] = ACTIONS(8809), + [anon_sym_PLUS] = ACTIONS(8811), + [anon_sym_DASH] = ACTIONS(8809), + [anon_sym_QMARK] = ACTIONS(8811), + [aux_sym_close_statement_token1] = ACTIONS(8809), + [aux_sym_put_statement_token1] = ACTIONS(8809), + [aux_sym_unlock_statement_token1] = ACTIONS(8809), + [aux_sym_seek_statement_token1] = ACTIONS(8809), + [sym_reset_statement] = ACTIONS(8809), + [aux_sym_raise_event_statement_token1] = ACTIONS(8809), + [sym_stop_statement] = ACTIONS(8809), + [sym_beep_statement] = ACTIONS(8809), + [aux_sym_unload_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token2] = ACTIONS(8809), + [aux_sym_def_type_statement_token3] = ACTIONS(8809), + [aux_sym_def_type_statement_token4] = ACTIONS(8809), + [aux_sym_def_type_statement_token5] = ACTIONS(8809), + [aux_sym_def_type_statement_token6] = ACTIONS(8809), + [aux_sym_def_type_statement_token7] = ACTIONS(8809), + [aux_sym_def_type_statement_token8] = ACTIONS(8809), + [aux_sym_def_type_statement_token9] = ACTIONS(8809), + [aux_sym_def_type_statement_token10] = ACTIONS(8809), + [aux_sym_def_type_statement_token11] = ACTIONS(8809), + [aux_sym_def_type_statement_token12] = ACTIONS(8809), + [aux_sym_def_type_statement_token13] = ACTIONS(8809), + [aux_sym_def_type_statement_token14] = ACTIONS(8809), + [aux_sym_call_statement_token1] = ACTIONS(8809), + [sym__ambiguous_call_statement] = ACTIONS(8809), + [aux_sym_addressof_expression_token1] = ACTIONS(8809), + [aux_sym_type_of_expression_token1] = ACTIONS(8809), + [aux_sym_unary_expression_token1] = ACTIONS(8809), + [sym_string_literal] = ACTIONS(8811), + [sym_number_literal] = ACTIONS(8811), + [aux_sym_boolean_literal_token1] = ACTIONS(8809), + [aux_sym_boolean_literal_token2] = ACTIONS(8809), + [sym_nothing_literal] = ACTIONS(8809), + [sym_null_literal] = ACTIONS(8809), + [sym_empty_literal] = ACTIONS(8809), + [sym_date_literal] = ACTIONS(8811), + [anon_sym_POUND] = ACTIONS(8809), + }, + [STATE(6433)] = { + [sym_identifier] = ACTIONS(8877), + [sym_newline] = ACTIONS(8879), + [anon_sym_COLON] = ACTIONS(8879), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8877), + [aux_sym_frm_property_statement_token1] = ACTIONS(8877), + [anon_sym_DOT] = ACTIONS(8877), + [anon_sym_BANG] = ACTIONS(8879), + [aux_sym__attribute_identifier_token1] = ACTIONS(8877), + [aux_sym_option_statement_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8877), + [aux_sym_preprocessor_const_token1] = ACTIONS(8877), + [sym_static_modifier] = ACTIONS(8877), + [sym__dim_keyword] = ACTIONS(8877), + [sym__redim_keyword] = ACTIONS(8877), + [aux_sym_get_accessor_token1] = ACTIONS(8877), + [aux_sym_set_accessor_token1] = ACTIONS(8877), + [aux_sym_const_declaration_token1] = ACTIONS(8877), + [anon_sym_LPAREN] = ACTIONS(8879), + [aux_sym_as_type_clause_token2] = ACTIONS(8877), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8877), + [aux_sym_visibility_token1] = ACTIONS(8877), + [aux_sym_visibility_token2] = ACTIONS(8877), + [aux_sym_elseif_fragment_token1] = ACTIONS(8877), + [aux_sym_else_fragment_token1] = ACTIONS(8877), + [aux_sym_select_statement_token1] = ACTIONS(8877), + [aux_sym_select_statement_token2] = ACTIONS(8877), + [aux_sym__for_header_token1] = ACTIONS(8877), + [aux_sym_do_statement_token1] = ACTIONS(8877), + [aux_sym_do_condition_token1] = ACTIONS(8877), + [aux_sym_with_statement_token1] = ACTIONS(8877), + [aux_sym_exit_statement_token1] = ACTIONS(8877), + [sym_end_statement] = ACTIONS(8879), + [aux_sym_on_goto_statement_token1] = ACTIONS(8877), + [aux_sym_on_goto_statement_token2] = ACTIONS(8877), + [aux_sym_on_error_statement_token2] = ACTIONS(8877), + [sym__ambiguous_redim_statement] = ACTIONS(8879), + [aux_sym_erase_statement_token1] = ACTIONS(8877), + [aux_sym_open_statement_token1] = ACTIONS(8877), + [aux_sym_file_mode_token2] = ACTIONS(8877), + [aux_sym_file_access_token2] = ACTIONS(8877), + [aux_sym_file_lock_token2] = ACTIONS(8877), + [aux_sym_print_statement_token1] = ACTIONS(8877), + [anon_sym_PLUS] = ACTIONS(8879), + [anon_sym_DASH] = ACTIONS(8877), + [anon_sym_QMARK] = ACTIONS(8879), + [aux_sym_close_statement_token1] = ACTIONS(8877), + [aux_sym_put_statement_token1] = ACTIONS(8877), + [aux_sym_unlock_statement_token1] = ACTIONS(8877), + [aux_sym_seek_statement_token1] = ACTIONS(8877), + [sym_reset_statement] = ACTIONS(8877), + [aux_sym_raise_event_statement_token1] = ACTIONS(8877), + [sym_stop_statement] = ACTIONS(8877), + [sym_beep_statement] = ACTIONS(8877), + [aux_sym_unload_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token2] = ACTIONS(8877), + [aux_sym_def_type_statement_token3] = ACTIONS(8877), + [aux_sym_def_type_statement_token4] = ACTIONS(8877), + [aux_sym_def_type_statement_token5] = ACTIONS(8877), + [aux_sym_def_type_statement_token6] = ACTIONS(8877), + [aux_sym_def_type_statement_token7] = ACTIONS(8877), + [aux_sym_def_type_statement_token8] = ACTIONS(8877), + [aux_sym_def_type_statement_token9] = ACTIONS(8877), + [aux_sym_def_type_statement_token10] = ACTIONS(8877), + [aux_sym_def_type_statement_token11] = ACTIONS(8877), + [aux_sym_def_type_statement_token12] = ACTIONS(8877), + [aux_sym_def_type_statement_token13] = ACTIONS(8877), + [aux_sym_def_type_statement_token14] = ACTIONS(8877), + [aux_sym_call_statement_token1] = ACTIONS(8877), + [sym__ambiguous_call_statement] = ACTIONS(8877), + [aux_sym_addressof_expression_token1] = ACTIONS(8877), + [aux_sym_type_of_expression_token1] = ACTIONS(8877), + [aux_sym_unary_expression_token1] = ACTIONS(8877), + [sym_string_literal] = ACTIONS(8879), + [sym_number_literal] = ACTIONS(8879), + [aux_sym_boolean_literal_token1] = ACTIONS(8877), + [aux_sym_boolean_literal_token2] = ACTIONS(8877), + [sym_nothing_literal] = ACTIONS(8877), + [sym_null_literal] = ACTIONS(8877), + [sym_empty_literal] = ACTIONS(8877), + [sym_date_literal] = ACTIONS(8879), + [anon_sym_POUND] = ACTIONS(8877), + }, + [STATE(6434)] = { + [sym_identifier] = ACTIONS(8196), + [sym_newline] = ACTIONS(8198), + [anon_sym_COLON] = ACTIONS(8198), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8196), + [aux_sym_frm_property_statement_token1] = ACTIONS(8196), + [anon_sym_DOT] = ACTIONS(8196), + [anon_sym_BANG] = ACTIONS(8198), + [aux_sym__attribute_identifier_token1] = ACTIONS(8196), + [aux_sym_option_statement_token3] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8196), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8196), + [aux_sym_preprocessor_const_token1] = ACTIONS(8196), + [sym_static_modifier] = ACTIONS(8196), + [sym__dim_keyword] = ACTIONS(8196), + [sym__redim_keyword] = ACTIONS(8196), + [aux_sym_get_accessor_token1] = ACTIONS(8196), + [aux_sym_set_accessor_token1] = ACTIONS(8196), + [anon_sym_COMMA] = ACTIONS(8198), + [aux_sym_const_declaration_token1] = ACTIONS(8196), + [anon_sym_LPAREN] = ACTIONS(8198), + [aux_sym_as_type_clause_token2] = ACTIONS(8196), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8196), + [aux_sym_visibility_token1] = ACTIONS(8196), + [aux_sym_visibility_token2] = ACTIONS(8196), + [aux_sym_elseif_fragment_token1] = ACTIONS(8196), + [aux_sym_else_fragment_token1] = ACTIONS(8196), + [aux_sym_select_statement_token1] = ACTIONS(8196), + [aux_sym__for_header_token1] = ACTIONS(8196), + [aux_sym_do_statement_token1] = ACTIONS(8196), + [aux_sym_do_condition_token1] = ACTIONS(8196), + [aux_sym_with_statement_token1] = ACTIONS(8196), + [aux_sym_exit_statement_token1] = ACTIONS(8196), + [sym_end_statement] = ACTIONS(8198), + [aux_sym_on_goto_statement_token1] = ACTIONS(8196), + [aux_sym_on_goto_statement_token2] = ACTIONS(8196), + [aux_sym_on_error_statement_token2] = ACTIONS(8196), + [sym__ambiguous_redim_statement] = ACTIONS(8198), + [aux_sym_erase_statement_token1] = ACTIONS(8196), + [aux_sym_open_statement_token1] = ACTIONS(8196), + [aux_sym_file_mode_token2] = ACTIONS(8196), + [aux_sym_file_access_token2] = ACTIONS(8196), + [aux_sym_file_lock_token2] = ACTIONS(8196), + [aux_sym_print_statement_token1] = ACTIONS(8196), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_DASH] = ACTIONS(8196), + [anon_sym_QMARK] = ACTIONS(8198), + [aux_sym_close_statement_token1] = ACTIONS(8196), + [aux_sym_put_statement_token1] = ACTIONS(8196), + [aux_sym_unlock_statement_token1] = ACTIONS(8196), + [aux_sym_seek_statement_token1] = ACTIONS(8196), + [sym_reset_statement] = ACTIONS(8196), + [aux_sym_raise_event_statement_token1] = ACTIONS(8196), + [sym_stop_statement] = ACTIONS(8196), + [sym_beep_statement] = ACTIONS(8196), + [aux_sym_unload_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token1] = ACTIONS(8196), + [aux_sym_def_type_statement_token2] = ACTIONS(8196), + [aux_sym_def_type_statement_token3] = ACTIONS(8196), + [aux_sym_def_type_statement_token4] = ACTIONS(8196), + [aux_sym_def_type_statement_token5] = ACTIONS(8196), + [aux_sym_def_type_statement_token6] = ACTIONS(8196), + [aux_sym_def_type_statement_token7] = ACTIONS(8196), + [aux_sym_def_type_statement_token8] = ACTIONS(8196), + [aux_sym_def_type_statement_token9] = ACTIONS(8196), + [aux_sym_def_type_statement_token10] = ACTIONS(8196), + [aux_sym_def_type_statement_token11] = ACTIONS(8196), + [aux_sym_def_type_statement_token12] = ACTIONS(8196), + [aux_sym_def_type_statement_token13] = ACTIONS(8196), + [aux_sym_def_type_statement_token14] = ACTIONS(8196), + [aux_sym_call_statement_token1] = ACTIONS(8196), + [sym__ambiguous_call_statement] = ACTIONS(8196), + [aux_sym_addressof_expression_token1] = ACTIONS(8196), + [aux_sym_type_of_expression_token1] = ACTIONS(8196), + [aux_sym_unary_expression_token1] = ACTIONS(8196), + [sym_string_literal] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8198), + [aux_sym_boolean_literal_token1] = ACTIONS(8196), + [aux_sym_boolean_literal_token2] = ACTIONS(8196), + [sym_nothing_literal] = ACTIONS(8196), + [sym_null_literal] = ACTIONS(8196), + [sym_empty_literal] = ACTIONS(8196), + [sym_date_literal] = ACTIONS(8198), + [anon_sym_POUND] = ACTIONS(8196), + }, + [STATE(6435)] = { + [sym_identifier] = ACTIONS(8907), + [sym_newline] = ACTIONS(8909), + [anon_sym_COLON] = ACTIONS(8909), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8907), + [aux_sym_frm_property_statement_token1] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8907), + [anon_sym_BANG] = ACTIONS(8909), + [aux_sym__attribute_identifier_token1] = ACTIONS(8907), + [aux_sym_option_statement_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8907), + [aux_sym_preprocessor_const_token1] = ACTIONS(8907), + [sym_static_modifier] = ACTIONS(8907), + [sym__dim_keyword] = ACTIONS(8907), + [sym__redim_keyword] = ACTIONS(8907), + [aux_sym_get_accessor_token1] = ACTIONS(8907), + [aux_sym_set_accessor_token1] = ACTIONS(8907), + [aux_sym_const_declaration_token1] = ACTIONS(8907), + [anon_sym_LPAREN] = ACTIONS(8909), + [aux_sym_as_type_clause_token2] = ACTIONS(8907), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8907), + [aux_sym_visibility_token1] = ACTIONS(8907), + [aux_sym_visibility_token2] = ACTIONS(8907), + [aux_sym_elseif_fragment_token1] = ACTIONS(8907), + [aux_sym_else_fragment_token1] = ACTIONS(8907), + [aux_sym_select_statement_token1] = ACTIONS(8907), + [aux_sym_select_statement_token2] = ACTIONS(8907), + [aux_sym__for_header_token1] = ACTIONS(8907), + [aux_sym_do_statement_token1] = ACTIONS(8907), + [aux_sym_do_condition_token1] = ACTIONS(8907), + [aux_sym_with_statement_token1] = ACTIONS(8907), + [aux_sym_exit_statement_token1] = ACTIONS(8907), + [sym_end_statement] = ACTIONS(8909), + [aux_sym_on_goto_statement_token1] = ACTIONS(8907), + [aux_sym_on_goto_statement_token2] = ACTIONS(8907), + [aux_sym_on_error_statement_token2] = ACTIONS(8907), + [sym__ambiguous_redim_statement] = ACTIONS(8909), + [aux_sym_erase_statement_token1] = ACTIONS(8907), + [aux_sym_open_statement_token1] = ACTIONS(8907), + [aux_sym_file_mode_token2] = ACTIONS(8907), + [aux_sym_file_access_token2] = ACTIONS(8907), + [aux_sym_file_lock_token2] = ACTIONS(8907), + [aux_sym_print_statement_token1] = ACTIONS(8907), + [anon_sym_PLUS] = ACTIONS(8909), + [anon_sym_DASH] = ACTIONS(8907), + [anon_sym_QMARK] = ACTIONS(8909), + [aux_sym_close_statement_token1] = ACTIONS(8907), + [aux_sym_put_statement_token1] = ACTIONS(8907), + [aux_sym_unlock_statement_token1] = ACTIONS(8907), + [aux_sym_seek_statement_token1] = ACTIONS(8907), + [sym_reset_statement] = ACTIONS(8907), + [aux_sym_raise_event_statement_token1] = ACTIONS(8907), + [sym_stop_statement] = ACTIONS(8907), + [sym_beep_statement] = ACTIONS(8907), + [aux_sym_unload_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token2] = ACTIONS(8907), + [aux_sym_def_type_statement_token3] = ACTIONS(8907), + [aux_sym_def_type_statement_token4] = ACTIONS(8907), + [aux_sym_def_type_statement_token5] = ACTIONS(8907), + [aux_sym_def_type_statement_token6] = ACTIONS(8907), + [aux_sym_def_type_statement_token7] = ACTIONS(8907), + [aux_sym_def_type_statement_token8] = ACTIONS(8907), + [aux_sym_def_type_statement_token9] = ACTIONS(8907), + [aux_sym_def_type_statement_token10] = ACTIONS(8907), + [aux_sym_def_type_statement_token11] = ACTIONS(8907), + [aux_sym_def_type_statement_token12] = ACTIONS(8907), + [aux_sym_def_type_statement_token13] = ACTIONS(8907), + [aux_sym_def_type_statement_token14] = ACTIONS(8907), + [aux_sym_call_statement_token1] = ACTIONS(8907), + [sym__ambiguous_call_statement] = ACTIONS(8907), + [aux_sym_addressof_expression_token1] = ACTIONS(8907), + [aux_sym_type_of_expression_token1] = ACTIONS(8907), + [aux_sym_unary_expression_token1] = ACTIONS(8907), + [sym_string_literal] = ACTIONS(8909), + [sym_number_literal] = ACTIONS(8909), + [aux_sym_boolean_literal_token1] = ACTIONS(8907), + [aux_sym_boolean_literal_token2] = ACTIONS(8907), + [sym_nothing_literal] = ACTIONS(8907), + [sym_null_literal] = ACTIONS(8907), + [sym_empty_literal] = ACTIONS(8907), + [sym_date_literal] = ACTIONS(8909), + [anon_sym_POUND] = ACTIONS(8907), + }, + [STATE(6436)] = { + [sym_identifier] = ACTIONS(8927), + [sym_newline] = ACTIONS(8929), + [anon_sym_COLON] = ACTIONS(8929), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8927), + [aux_sym_frm_property_statement_token1] = ACTIONS(8927), + [anon_sym_DOT] = ACTIONS(8927), + [anon_sym_BANG] = ACTIONS(8929), + [aux_sym__attribute_identifier_token1] = ACTIONS(8927), + [aux_sym_option_statement_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8927), + [aux_sym_preprocessor_const_token1] = ACTIONS(8927), + [sym_static_modifier] = ACTIONS(8927), + [sym__dim_keyword] = ACTIONS(8927), + [sym__redim_keyword] = ACTIONS(8927), + [aux_sym_get_accessor_token1] = ACTIONS(8927), + [aux_sym_set_accessor_token1] = ACTIONS(8927), + [aux_sym_const_declaration_token1] = ACTIONS(8927), + [anon_sym_LPAREN] = ACTIONS(8929), + [aux_sym_as_type_clause_token2] = ACTIONS(8927), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8927), + [aux_sym_visibility_token1] = ACTIONS(8927), + [aux_sym_visibility_token2] = ACTIONS(8927), + [aux_sym_elseif_fragment_token1] = ACTIONS(8927), + [aux_sym_else_fragment_token1] = ACTIONS(8927), + [aux_sym_select_statement_token1] = ACTIONS(8927), + [aux_sym_select_statement_token2] = ACTIONS(8927), + [aux_sym__for_header_token1] = ACTIONS(8927), + [aux_sym_do_statement_token1] = ACTIONS(8927), + [aux_sym_do_condition_token1] = ACTIONS(8927), + [aux_sym_with_statement_token1] = ACTIONS(8927), + [aux_sym_exit_statement_token1] = ACTIONS(8927), + [sym_end_statement] = ACTIONS(8929), + [aux_sym_on_goto_statement_token1] = ACTIONS(8927), + [aux_sym_on_goto_statement_token2] = ACTIONS(8927), + [aux_sym_on_error_statement_token2] = ACTIONS(8927), + [sym__ambiguous_redim_statement] = ACTIONS(8929), + [aux_sym_erase_statement_token1] = ACTIONS(8927), + [aux_sym_open_statement_token1] = ACTIONS(8927), + [aux_sym_file_mode_token2] = ACTIONS(8927), + [aux_sym_file_access_token2] = ACTIONS(8927), + [aux_sym_file_lock_token2] = ACTIONS(8927), + [aux_sym_print_statement_token1] = ACTIONS(8927), + [anon_sym_PLUS] = ACTIONS(8929), + [anon_sym_DASH] = ACTIONS(8927), + [anon_sym_QMARK] = ACTIONS(8929), + [aux_sym_close_statement_token1] = ACTIONS(8927), + [aux_sym_put_statement_token1] = ACTIONS(8927), + [aux_sym_unlock_statement_token1] = ACTIONS(8927), + [aux_sym_seek_statement_token1] = ACTIONS(8927), + [sym_reset_statement] = ACTIONS(8927), + [aux_sym_raise_event_statement_token1] = ACTIONS(8927), + [sym_stop_statement] = ACTIONS(8927), + [sym_beep_statement] = ACTIONS(8927), + [aux_sym_unload_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token2] = ACTIONS(8927), + [aux_sym_def_type_statement_token3] = ACTIONS(8927), + [aux_sym_def_type_statement_token4] = ACTIONS(8927), + [aux_sym_def_type_statement_token5] = ACTIONS(8927), + [aux_sym_def_type_statement_token6] = ACTIONS(8927), + [aux_sym_def_type_statement_token7] = ACTIONS(8927), + [aux_sym_def_type_statement_token8] = ACTIONS(8927), + [aux_sym_def_type_statement_token9] = ACTIONS(8927), + [aux_sym_def_type_statement_token10] = ACTIONS(8927), + [aux_sym_def_type_statement_token11] = ACTIONS(8927), + [aux_sym_def_type_statement_token12] = ACTIONS(8927), + [aux_sym_def_type_statement_token13] = ACTIONS(8927), + [aux_sym_def_type_statement_token14] = ACTIONS(8927), + [aux_sym_call_statement_token1] = ACTIONS(8927), + [sym__ambiguous_call_statement] = ACTIONS(8927), + [aux_sym_addressof_expression_token1] = ACTIONS(8927), + [aux_sym_type_of_expression_token1] = ACTIONS(8927), + [aux_sym_unary_expression_token1] = ACTIONS(8927), + [sym_string_literal] = ACTIONS(8929), + [sym_number_literal] = ACTIONS(8929), + [aux_sym_boolean_literal_token1] = ACTIONS(8927), + [aux_sym_boolean_literal_token2] = ACTIONS(8927), + [sym_nothing_literal] = ACTIONS(8927), + [sym_null_literal] = ACTIONS(8927), + [sym_empty_literal] = ACTIONS(8927), + [sym_date_literal] = ACTIONS(8929), + [anon_sym_POUND] = ACTIONS(8927), + }, + [STATE(6437)] = { + [sym_identifier] = ACTIONS(8931), + [sym_newline] = ACTIONS(8933), + [anon_sym_COLON] = ACTIONS(8933), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8931), + [aux_sym_frm_property_statement_token1] = ACTIONS(8931), + [anon_sym_DOT] = ACTIONS(8931), + [anon_sym_BANG] = ACTIONS(8933), + [aux_sym__attribute_identifier_token1] = ACTIONS(8931), + [aux_sym_option_statement_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8931), + [aux_sym_preprocessor_const_token1] = ACTIONS(8931), + [sym_static_modifier] = ACTIONS(8931), + [sym__dim_keyword] = ACTIONS(8931), + [sym__redim_keyword] = ACTIONS(8931), + [aux_sym_get_accessor_token1] = ACTIONS(8931), + [aux_sym_set_accessor_token1] = ACTIONS(8931), + [aux_sym_const_declaration_token1] = ACTIONS(8931), + [anon_sym_LPAREN] = ACTIONS(8933), + [aux_sym_as_type_clause_token2] = ACTIONS(8931), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8931), + [aux_sym_visibility_token1] = ACTIONS(8931), + [aux_sym_visibility_token2] = ACTIONS(8931), + [aux_sym_elseif_fragment_token1] = ACTIONS(8931), + [aux_sym_else_fragment_token1] = ACTIONS(8931), + [aux_sym_select_statement_token1] = ACTIONS(8931), + [aux_sym_select_statement_token2] = ACTIONS(8931), + [aux_sym__for_header_token1] = ACTIONS(8931), + [aux_sym_do_statement_token1] = ACTIONS(8931), + [aux_sym_do_condition_token1] = ACTIONS(8931), + [aux_sym_with_statement_token1] = ACTIONS(8931), + [aux_sym_exit_statement_token1] = ACTIONS(8931), + [sym_end_statement] = ACTIONS(8933), + [aux_sym_on_goto_statement_token1] = ACTIONS(8931), + [aux_sym_on_goto_statement_token2] = ACTIONS(8931), + [aux_sym_on_error_statement_token2] = ACTIONS(8931), + [sym__ambiguous_redim_statement] = ACTIONS(8933), + [aux_sym_erase_statement_token1] = ACTIONS(8931), + [aux_sym_open_statement_token1] = ACTIONS(8931), + [aux_sym_file_mode_token2] = ACTIONS(8931), + [aux_sym_file_access_token2] = ACTIONS(8931), + [aux_sym_file_lock_token2] = ACTIONS(8931), + [aux_sym_print_statement_token1] = ACTIONS(8931), + [anon_sym_PLUS] = ACTIONS(8933), + [anon_sym_DASH] = ACTIONS(8931), + [anon_sym_QMARK] = ACTIONS(8933), + [aux_sym_close_statement_token1] = ACTIONS(8931), + [aux_sym_put_statement_token1] = ACTIONS(8931), + [aux_sym_unlock_statement_token1] = ACTIONS(8931), + [aux_sym_seek_statement_token1] = ACTIONS(8931), + [sym_reset_statement] = ACTIONS(8931), + [aux_sym_raise_event_statement_token1] = ACTIONS(8931), + [sym_stop_statement] = ACTIONS(8931), + [sym_beep_statement] = ACTIONS(8931), + [aux_sym_unload_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token2] = ACTIONS(8931), + [aux_sym_def_type_statement_token3] = ACTIONS(8931), + [aux_sym_def_type_statement_token4] = ACTIONS(8931), + [aux_sym_def_type_statement_token5] = ACTIONS(8931), + [aux_sym_def_type_statement_token6] = ACTIONS(8931), + [aux_sym_def_type_statement_token7] = ACTIONS(8931), + [aux_sym_def_type_statement_token8] = ACTIONS(8931), + [aux_sym_def_type_statement_token9] = ACTIONS(8931), + [aux_sym_def_type_statement_token10] = ACTIONS(8931), + [aux_sym_def_type_statement_token11] = ACTIONS(8931), + [aux_sym_def_type_statement_token12] = ACTIONS(8931), + [aux_sym_def_type_statement_token13] = ACTIONS(8931), + [aux_sym_def_type_statement_token14] = ACTIONS(8931), + [aux_sym_call_statement_token1] = ACTIONS(8931), + [sym__ambiguous_call_statement] = ACTIONS(8931), + [aux_sym_addressof_expression_token1] = ACTIONS(8931), + [aux_sym_type_of_expression_token1] = ACTIONS(8931), + [aux_sym_unary_expression_token1] = ACTIONS(8931), + [sym_string_literal] = ACTIONS(8933), + [sym_number_literal] = ACTIONS(8933), + [aux_sym_boolean_literal_token1] = ACTIONS(8931), + [aux_sym_boolean_literal_token2] = ACTIONS(8931), + [sym_nothing_literal] = ACTIONS(8931), + [sym_null_literal] = ACTIONS(8931), + [sym_empty_literal] = ACTIONS(8931), + [sym_date_literal] = ACTIONS(8933), + [anon_sym_POUND] = ACTIONS(8931), + }, + [STATE(6438)] = { + [sym_identifier] = ACTIONS(9260), + [sym_newline] = ACTIONS(9262), + [anon_sym_COLON] = ACTIONS(9262), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9260), + [aux_sym_frm_property_statement_token1] = ACTIONS(9260), + [anon_sym_DOT] = ACTIONS(9260), + [anon_sym_BANG] = ACTIONS(9262), + [aux_sym__attribute_identifier_token1] = ACTIONS(9260), + [aux_sym_option_statement_token3] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9260), + [aux_sym_preprocessor_const_token1] = ACTIONS(9260), + [sym_static_modifier] = ACTIONS(9260), + [sym__dim_keyword] = ACTIONS(9260), + [sym__redim_keyword] = ACTIONS(9260), + [aux_sym_get_accessor_token1] = ACTIONS(9260), + [aux_sym_set_accessor_token1] = ACTIONS(9260), + [aux_sym_const_declaration_token1] = ACTIONS(9260), + [anon_sym_LPAREN] = ACTIONS(9262), + [aux_sym_as_type_clause_token2] = ACTIONS(9260), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9260), + [aux_sym_visibility_token1] = ACTIONS(9260), + [aux_sym_visibility_token2] = ACTIONS(9260), + [aux_sym_elseif_fragment_token1] = ACTIONS(9260), + [aux_sym_else_fragment_token1] = ACTIONS(9260), + [aux_sym_select_statement_token1] = ACTIONS(9260), + [aux_sym__for_header_token1] = ACTIONS(9260), + [aux_sym_do_statement_token1] = ACTIONS(9260), + [aux_sym_do_condition_token1] = ACTIONS(9260), + [aux_sym_while_statement_token1] = ACTIONS(9260), + [aux_sym_with_statement_token1] = ACTIONS(9260), + [aux_sym_exit_statement_token1] = ACTIONS(9260), + [sym_end_statement] = ACTIONS(9262), + [aux_sym_on_goto_statement_token1] = ACTIONS(9260), + [aux_sym_on_goto_statement_token2] = ACTIONS(9260), + [aux_sym_on_error_statement_token2] = ACTIONS(9260), + [sym__ambiguous_redim_statement] = ACTIONS(9262), + [aux_sym_erase_statement_token1] = ACTIONS(9260), + [aux_sym_open_statement_token1] = ACTIONS(9260), + [aux_sym_file_mode_token2] = ACTIONS(9260), + [aux_sym_file_access_token2] = ACTIONS(9260), + [aux_sym_file_lock_token2] = ACTIONS(9260), + [aux_sym_print_statement_token1] = ACTIONS(9260), + [anon_sym_PLUS] = ACTIONS(9262), + [anon_sym_DASH] = ACTIONS(9260), + [anon_sym_QMARK] = ACTIONS(9262), + [aux_sym_close_statement_token1] = ACTIONS(9260), + [aux_sym_put_statement_token1] = ACTIONS(9260), + [aux_sym_unlock_statement_token1] = ACTIONS(9260), + [aux_sym_seek_statement_token1] = ACTIONS(9260), + [sym_reset_statement] = ACTIONS(9260), + [aux_sym_raise_event_statement_token1] = ACTIONS(9260), + [sym_stop_statement] = ACTIONS(9260), + [sym_beep_statement] = ACTIONS(9260), + [aux_sym_unload_statement_token1] = ACTIONS(9260), + [aux_sym_def_type_statement_token1] = ACTIONS(9260), + [aux_sym_def_type_statement_token2] = ACTIONS(9260), + [aux_sym_def_type_statement_token3] = ACTIONS(9260), + [aux_sym_def_type_statement_token4] = ACTIONS(9260), + [aux_sym_def_type_statement_token5] = ACTIONS(9260), + [aux_sym_def_type_statement_token6] = ACTIONS(9260), + [aux_sym_def_type_statement_token7] = ACTIONS(9260), + [aux_sym_def_type_statement_token8] = ACTIONS(9260), + [aux_sym_def_type_statement_token9] = ACTIONS(9260), + [aux_sym_def_type_statement_token10] = ACTIONS(9260), + [aux_sym_def_type_statement_token11] = ACTIONS(9260), + [aux_sym_def_type_statement_token12] = ACTIONS(9260), + [aux_sym_def_type_statement_token13] = ACTIONS(9260), + [aux_sym_def_type_statement_token14] = ACTIONS(9260), + [aux_sym_call_statement_token1] = ACTIONS(9260), + [sym__ambiguous_call_statement] = ACTIONS(9260), + [aux_sym_addressof_expression_token1] = ACTIONS(9260), + [aux_sym_type_of_expression_token1] = ACTIONS(9260), + [aux_sym_unary_expression_token1] = ACTIONS(9260), + [sym_string_literal] = ACTIONS(9262), + [sym_number_literal] = ACTIONS(9262), + [aux_sym_boolean_literal_token1] = ACTIONS(9260), + [aux_sym_boolean_literal_token2] = ACTIONS(9260), + [sym_nothing_literal] = ACTIONS(9260), + [sym_null_literal] = ACTIONS(9260), + [sym_empty_literal] = ACTIONS(9260), + [sym_date_literal] = ACTIONS(9262), + [anon_sym_POUND] = ACTIONS(9260), + }, + [STATE(6439)] = { + [sym_identifier] = ACTIONS(9639), + [sym_newline] = ACTIONS(9641), + [anon_sym_COLON] = ACTIONS(9641), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9639), + [aux_sym_frm_property_statement_token1] = ACTIONS(9639), + [anon_sym_DOT] = ACTIONS(9639), + [anon_sym_BANG] = ACTIONS(9641), + [aux_sym__attribute_identifier_token1] = ACTIONS(9639), + [aux_sym_option_statement_token3] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9639), + [aux_sym_preprocessor_const_token1] = ACTIONS(9639), + [sym_static_modifier] = ACTIONS(9639), + [sym__dim_keyword] = ACTIONS(9639), + [sym__redim_keyword] = ACTIONS(9639), + [aux_sym_get_accessor_token1] = ACTIONS(9639), + [aux_sym_set_accessor_token1] = ACTIONS(9639), + [aux_sym_const_declaration_token1] = ACTIONS(9639), + [anon_sym_LPAREN] = ACTIONS(9641), + [aux_sym_as_type_clause_token2] = ACTIONS(9639), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9639), + [aux_sym_visibility_token1] = ACTIONS(9639), + [aux_sym_visibility_token2] = ACTIONS(9639), + [aux_sym_elseif_fragment_token1] = ACTIONS(9639), + [aux_sym_else_fragment_token1] = ACTIONS(9639), + [aux_sym_select_statement_token1] = ACTIONS(9639), + [aux_sym__for_header_token1] = ACTIONS(9639), + [aux_sym_do_statement_token1] = ACTIONS(9639), + [aux_sym_do_statement_token2] = ACTIONS(9639), + [aux_sym_do_condition_token1] = ACTIONS(9639), + [aux_sym_with_statement_token1] = ACTIONS(9639), + [aux_sym_exit_statement_token1] = ACTIONS(9639), + [sym_end_statement] = ACTIONS(9641), + [aux_sym_on_goto_statement_token1] = ACTIONS(9639), + [aux_sym_on_goto_statement_token2] = ACTIONS(9639), + [aux_sym_on_error_statement_token2] = ACTIONS(9639), + [sym__ambiguous_redim_statement] = ACTIONS(9641), + [aux_sym_erase_statement_token1] = ACTIONS(9639), + [aux_sym_open_statement_token1] = ACTIONS(9639), + [aux_sym_file_mode_token2] = ACTIONS(9639), + [aux_sym_file_access_token2] = ACTIONS(9639), + [aux_sym_file_lock_token2] = ACTIONS(9639), + [aux_sym_print_statement_token1] = ACTIONS(9639), + [anon_sym_PLUS] = ACTIONS(9641), + [anon_sym_DASH] = ACTIONS(9639), + [anon_sym_QMARK] = ACTIONS(9641), + [aux_sym_close_statement_token1] = ACTIONS(9639), + [aux_sym_put_statement_token1] = ACTIONS(9639), + [aux_sym_unlock_statement_token1] = ACTIONS(9639), + [aux_sym_seek_statement_token1] = ACTIONS(9639), + [sym_reset_statement] = ACTIONS(9639), + [aux_sym_raise_event_statement_token1] = ACTIONS(9639), + [sym_stop_statement] = ACTIONS(9639), + [sym_beep_statement] = ACTIONS(9639), + [aux_sym_unload_statement_token1] = ACTIONS(9639), + [aux_sym_def_type_statement_token1] = ACTIONS(9639), + [aux_sym_def_type_statement_token2] = ACTIONS(9639), + [aux_sym_def_type_statement_token3] = ACTIONS(9639), + [aux_sym_def_type_statement_token4] = ACTIONS(9639), + [aux_sym_def_type_statement_token5] = ACTIONS(9639), + [aux_sym_def_type_statement_token6] = ACTIONS(9639), + [aux_sym_def_type_statement_token7] = ACTIONS(9639), + [aux_sym_def_type_statement_token8] = ACTIONS(9639), + [aux_sym_def_type_statement_token9] = ACTIONS(9639), + [aux_sym_def_type_statement_token10] = ACTIONS(9639), + [aux_sym_def_type_statement_token11] = ACTIONS(9639), + [aux_sym_def_type_statement_token12] = ACTIONS(9639), + [aux_sym_def_type_statement_token13] = ACTIONS(9639), + [aux_sym_def_type_statement_token14] = ACTIONS(9639), + [aux_sym_call_statement_token1] = ACTIONS(9639), + [sym__ambiguous_call_statement] = ACTIONS(9639), + [aux_sym_addressof_expression_token1] = ACTIONS(9639), + [aux_sym_type_of_expression_token1] = ACTIONS(9639), + [aux_sym_unary_expression_token1] = ACTIONS(9639), + [sym_string_literal] = ACTIONS(9641), + [sym_number_literal] = ACTIONS(9641), + [aux_sym_boolean_literal_token1] = ACTIONS(9639), + [aux_sym_boolean_literal_token2] = ACTIONS(9639), + [sym_nothing_literal] = ACTIONS(9639), + [sym_null_literal] = ACTIONS(9639), + [sym_empty_literal] = ACTIONS(9639), + [sym_date_literal] = ACTIONS(9641), + [anon_sym_POUND] = ACTIONS(9639), + }, + [STATE(6440)] = { + [sym_identifier] = ACTIONS(9784), + [sym_newline] = ACTIONS(9786), + [anon_sym_COLON] = ACTIONS(9786), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9784), + [aux_sym_frm_property_statement_token1] = ACTIONS(9784), + [anon_sym_DOT] = ACTIONS(9784), + [anon_sym_BANG] = ACTIONS(9786), + [aux_sym__attribute_identifier_token1] = ACTIONS(9784), + [aux_sym_option_statement_token3] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9784), + [aux_sym_preprocessor_const_token1] = ACTIONS(9784), + [sym_static_modifier] = ACTIONS(9784), + [sym__dim_keyword] = ACTIONS(9784), + [sym__redim_keyword] = ACTIONS(9784), + [aux_sym_get_accessor_token1] = ACTIONS(9784), + [aux_sym_set_accessor_token1] = ACTIONS(9784), + [aux_sym_const_declaration_token1] = ACTIONS(9784), + [anon_sym_LPAREN] = ACTIONS(9786), + [aux_sym_as_type_clause_token2] = ACTIONS(9784), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9784), + [aux_sym_visibility_token1] = ACTIONS(9784), + [aux_sym_visibility_token2] = ACTIONS(9784), + [aux_sym_elseif_fragment_token1] = ACTIONS(9784), + [aux_sym_else_fragment_token1] = ACTIONS(9784), + [aux_sym_select_statement_token1] = ACTIONS(9784), + [aux_sym__for_header_token1] = ACTIONS(9784), + [aux_sym_do_statement_token1] = ACTIONS(9784), + [aux_sym_do_condition_token1] = ACTIONS(9784), + [aux_sym_with_statement_token1] = ACTIONS(9784), + [aux_sym_exit_statement_token1] = ACTIONS(9784), + [sym_end_statement] = ACTIONS(9786), + [aux_sym_on_goto_statement_token1] = ACTIONS(9784), + [aux_sym_on_goto_statement_token2] = ACTIONS(9784), + [aux_sym_on_error_statement_token2] = ACTIONS(9784), + [sym__ambiguous_redim_statement] = ACTIONS(9786), + [aux_sym_erase_statement_token1] = ACTIONS(9784), + [aux_sym_open_statement_token1] = ACTIONS(9784), + [aux_sym_file_mode_token2] = ACTIONS(9784), + [aux_sym_file_access_token2] = ACTIONS(9784), + [aux_sym_file_lock_token2] = ACTIONS(9784), + [aux_sym_print_statement_token1] = ACTIONS(9784), + [anon_sym_PLUS] = ACTIONS(9786), + [anon_sym_DASH] = ACTIONS(9784), + [anon_sym_QMARK] = ACTIONS(9786), + [aux_sym_close_statement_token1] = ACTIONS(9784), + [aux_sym_put_statement_token1] = ACTIONS(9784), + [aux_sym_unlock_statement_token1] = ACTIONS(9784), + [aux_sym_seek_statement_token1] = ACTIONS(9784), + [sym_reset_statement] = ACTIONS(9784), + [aux_sym_raise_event_statement_token1] = ACTIONS(9784), + [sym_stop_statement] = ACTIONS(9784), + [sym_beep_statement] = ACTIONS(9784), + [aux_sym_unload_statement_token1] = ACTIONS(9784), + [aux_sym_def_type_statement_token1] = ACTIONS(9784), + [aux_sym_def_type_statement_token2] = ACTIONS(9784), + [aux_sym_def_type_statement_token3] = ACTIONS(9784), + [aux_sym_def_type_statement_token4] = ACTIONS(9784), + [aux_sym_def_type_statement_token5] = ACTIONS(9784), + [aux_sym_def_type_statement_token6] = ACTIONS(9784), + [aux_sym_def_type_statement_token7] = ACTIONS(9784), + [aux_sym_def_type_statement_token8] = ACTIONS(9784), + [aux_sym_def_type_statement_token9] = ACTIONS(9784), + [aux_sym_def_type_statement_token10] = ACTIONS(9784), + [aux_sym_def_type_statement_token11] = ACTIONS(9784), + [aux_sym_def_type_statement_token12] = ACTIONS(9784), + [aux_sym_def_type_statement_token13] = ACTIONS(9784), + [aux_sym_def_type_statement_token14] = ACTIONS(9784), + [aux_sym_call_statement_token1] = ACTIONS(9784), + [sym__ambiguous_call_statement] = ACTIONS(9784), + [aux_sym_addressof_expression_token1] = ACTIONS(9784), + [aux_sym_type_of_expression_token1] = ACTIONS(9784), + [aux_sym_unary_expression_token1] = ACTIONS(9784), + [sym_string_literal] = ACTIONS(9786), + [sym_number_literal] = ACTIONS(9786), + [aux_sym_boolean_literal_token1] = ACTIONS(9784), + [aux_sym_boolean_literal_token2] = ACTIONS(9784), + [sym_nothing_literal] = ACTIONS(9784), + [sym_null_literal] = ACTIONS(9784), + [sym_empty_literal] = ACTIONS(9784), + [sym_date_literal] = ACTIONS(9786), + [anon_sym_POUND] = ACTIONS(9784), + }, + [STATE(6441)] = { + [sym_identifier] = ACTIONS(9643), + [sym_newline] = ACTIONS(9645), + [anon_sym_COLON] = ACTIONS(9645), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9643), + [aux_sym_frm_property_statement_token1] = ACTIONS(9643), + [anon_sym_DOT] = ACTIONS(9643), + [anon_sym_BANG] = ACTIONS(9645), + [aux_sym__attribute_identifier_token1] = ACTIONS(9643), + [aux_sym_option_statement_token3] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9643), + [aux_sym_preprocessor_const_token1] = ACTIONS(9643), + [sym_static_modifier] = ACTIONS(9643), + [sym__dim_keyword] = ACTIONS(9643), + [sym__redim_keyword] = ACTIONS(9643), + [aux_sym_get_accessor_token1] = ACTIONS(9643), + [aux_sym_set_accessor_token1] = ACTIONS(9643), + [aux_sym_const_declaration_token1] = ACTIONS(9643), + [anon_sym_LPAREN] = ACTIONS(9645), + [aux_sym_as_type_clause_token2] = ACTIONS(9643), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9643), + [aux_sym_visibility_token1] = ACTIONS(9643), + [aux_sym_visibility_token2] = ACTIONS(9643), + [aux_sym_elseif_fragment_token1] = ACTIONS(9643), + [aux_sym_else_fragment_token1] = ACTIONS(9643), + [aux_sym_select_statement_token1] = ACTIONS(9643), + [aux_sym__for_header_token1] = ACTIONS(9643), + [aux_sym_do_statement_token1] = ACTIONS(9643), + [aux_sym_do_statement_token2] = ACTIONS(9643), + [aux_sym_do_condition_token1] = ACTIONS(9643), + [aux_sym_with_statement_token1] = ACTIONS(9643), + [aux_sym_exit_statement_token1] = ACTIONS(9643), + [sym_end_statement] = ACTIONS(9645), + [aux_sym_on_goto_statement_token1] = ACTIONS(9643), + [aux_sym_on_goto_statement_token2] = ACTIONS(9643), + [aux_sym_on_error_statement_token2] = ACTIONS(9643), + [sym__ambiguous_redim_statement] = ACTIONS(9645), + [aux_sym_erase_statement_token1] = ACTIONS(9643), + [aux_sym_open_statement_token1] = ACTIONS(9643), + [aux_sym_file_mode_token2] = ACTIONS(9643), + [aux_sym_file_access_token2] = ACTIONS(9643), + [aux_sym_file_lock_token2] = ACTIONS(9643), + [aux_sym_print_statement_token1] = ACTIONS(9643), + [anon_sym_PLUS] = ACTIONS(9645), + [anon_sym_DASH] = ACTIONS(9643), + [anon_sym_QMARK] = ACTIONS(9645), + [aux_sym_close_statement_token1] = ACTIONS(9643), + [aux_sym_put_statement_token1] = ACTIONS(9643), + [aux_sym_unlock_statement_token1] = ACTIONS(9643), + [aux_sym_seek_statement_token1] = ACTIONS(9643), + [sym_reset_statement] = ACTIONS(9643), + [aux_sym_raise_event_statement_token1] = ACTIONS(9643), + [sym_stop_statement] = ACTIONS(9643), + [sym_beep_statement] = ACTIONS(9643), + [aux_sym_unload_statement_token1] = ACTIONS(9643), + [aux_sym_def_type_statement_token1] = ACTIONS(9643), + [aux_sym_def_type_statement_token2] = ACTIONS(9643), + [aux_sym_def_type_statement_token3] = ACTIONS(9643), + [aux_sym_def_type_statement_token4] = ACTIONS(9643), + [aux_sym_def_type_statement_token5] = ACTIONS(9643), + [aux_sym_def_type_statement_token6] = ACTIONS(9643), + [aux_sym_def_type_statement_token7] = ACTIONS(9643), + [aux_sym_def_type_statement_token8] = ACTIONS(9643), + [aux_sym_def_type_statement_token9] = ACTIONS(9643), + [aux_sym_def_type_statement_token10] = ACTIONS(9643), + [aux_sym_def_type_statement_token11] = ACTIONS(9643), + [aux_sym_def_type_statement_token12] = ACTIONS(9643), + [aux_sym_def_type_statement_token13] = ACTIONS(9643), + [aux_sym_def_type_statement_token14] = ACTIONS(9643), + [aux_sym_call_statement_token1] = ACTIONS(9643), + [sym__ambiguous_call_statement] = ACTIONS(9643), + [aux_sym_addressof_expression_token1] = ACTIONS(9643), + [aux_sym_type_of_expression_token1] = ACTIONS(9643), + [aux_sym_unary_expression_token1] = ACTIONS(9643), + [sym_string_literal] = ACTIONS(9645), + [sym_number_literal] = ACTIONS(9645), + [aux_sym_boolean_literal_token1] = ACTIONS(9643), + [aux_sym_boolean_literal_token2] = ACTIONS(9643), + [sym_nothing_literal] = ACTIONS(9643), + [sym_null_literal] = ACTIONS(9643), + [sym_empty_literal] = ACTIONS(9643), + [sym_date_literal] = ACTIONS(9645), + [anon_sym_POUND] = ACTIONS(9643), + }, + [STATE(6442)] = { + [sym_identifier] = ACTIONS(8702), + [sym_newline] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(8704), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8702), + [aux_sym_frm_property_statement_token1] = ACTIONS(8702), + [anon_sym_DOT] = ACTIONS(8702), + [anon_sym_BANG] = ACTIONS(8704), + [aux_sym__attribute_identifier_token1] = ACTIONS(8702), + [aux_sym_option_statement_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8702), + [aux_sym_preprocessor_const_token1] = ACTIONS(8702), + [sym_static_modifier] = ACTIONS(8702), + [sym__dim_keyword] = ACTIONS(8702), + [sym__redim_keyword] = ACTIONS(8702), + [aux_sym_get_accessor_token1] = ACTIONS(8702), + [aux_sym_set_accessor_token1] = ACTIONS(8702), + [aux_sym_const_declaration_token1] = ACTIONS(8702), + [anon_sym_LPAREN] = ACTIONS(8704), + [aux_sym_as_type_clause_token2] = ACTIONS(8702), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8702), + [aux_sym_visibility_token1] = ACTIONS(8702), + [aux_sym_visibility_token2] = ACTIONS(8702), + [aux_sym_elseif_fragment_token1] = ACTIONS(8702), + [aux_sym_else_fragment_token1] = ACTIONS(8702), + [aux_sym_select_statement_token1] = ACTIONS(8702), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8702), + [aux_sym__for_header_token1] = ACTIONS(8702), + [aux_sym_do_statement_token1] = ACTIONS(8702), + [aux_sym_do_condition_token1] = ACTIONS(8702), + [aux_sym_with_statement_token1] = ACTIONS(8702), + [aux_sym_exit_statement_token1] = ACTIONS(8702), + [sym_end_statement] = ACTIONS(8704), + [aux_sym_on_goto_statement_token1] = ACTIONS(8702), + [aux_sym_on_goto_statement_token2] = ACTIONS(8702), + [aux_sym_on_error_statement_token2] = ACTIONS(8702), + [sym__ambiguous_redim_statement] = ACTIONS(8704), + [aux_sym_erase_statement_token1] = ACTIONS(8702), + [aux_sym_open_statement_token1] = ACTIONS(8702), + [aux_sym_file_mode_token2] = ACTIONS(8702), + [aux_sym_file_access_token2] = ACTIONS(8702), + [aux_sym_file_lock_token2] = ACTIONS(8702), + [aux_sym_print_statement_token1] = ACTIONS(8702), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_DASH] = ACTIONS(8702), + [anon_sym_QMARK] = ACTIONS(8704), + [aux_sym_close_statement_token1] = ACTIONS(8702), + [aux_sym_put_statement_token1] = ACTIONS(8702), + [aux_sym_unlock_statement_token1] = ACTIONS(8702), + [aux_sym_seek_statement_token1] = ACTIONS(8702), + [sym_reset_statement] = ACTIONS(8702), + [aux_sym_raise_event_statement_token1] = ACTIONS(8702), + [sym_stop_statement] = ACTIONS(8702), + [sym_beep_statement] = ACTIONS(8702), + [aux_sym_unload_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token2] = ACTIONS(8702), + [aux_sym_def_type_statement_token3] = ACTIONS(8702), + [aux_sym_def_type_statement_token4] = ACTIONS(8702), + [aux_sym_def_type_statement_token5] = ACTIONS(8702), + [aux_sym_def_type_statement_token6] = ACTIONS(8702), + [aux_sym_def_type_statement_token7] = ACTIONS(8702), + [aux_sym_def_type_statement_token8] = ACTIONS(8702), + [aux_sym_def_type_statement_token9] = ACTIONS(8702), + [aux_sym_def_type_statement_token10] = ACTIONS(8702), + [aux_sym_def_type_statement_token11] = ACTIONS(8702), + [aux_sym_def_type_statement_token12] = ACTIONS(8702), + [aux_sym_def_type_statement_token13] = ACTIONS(8702), + [aux_sym_def_type_statement_token14] = ACTIONS(8702), + [aux_sym_call_statement_token1] = ACTIONS(8702), + [sym__ambiguous_call_statement] = ACTIONS(8702), + [aux_sym_addressof_expression_token1] = ACTIONS(8702), + [aux_sym_type_of_expression_token1] = ACTIONS(8702), + [aux_sym_unary_expression_token1] = ACTIONS(8702), + [sym_string_literal] = ACTIONS(8704), + [sym_number_literal] = ACTIONS(8704), + [aux_sym_boolean_literal_token1] = ACTIONS(8702), + [aux_sym_boolean_literal_token2] = ACTIONS(8702), + [sym_nothing_literal] = ACTIONS(8702), + [sym_null_literal] = ACTIONS(8702), + [sym_empty_literal] = ACTIONS(8702), + [sym_date_literal] = ACTIONS(8704), + [anon_sym_POUND] = ACTIONS(8702), + }, + [STATE(6443)] = { + [sym_identifier] = ACTIONS(8992), + [sym_newline] = ACTIONS(8994), + [anon_sym_COLON] = ACTIONS(8994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8992), + [aux_sym_frm_property_statement_token1] = ACTIONS(8992), + [anon_sym_DOT] = ACTIONS(8992), + [anon_sym_BANG] = ACTIONS(8994), + [aux_sym__attribute_identifier_token1] = ACTIONS(8992), + [aux_sym_option_statement_token3] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8992), + [aux_sym_preprocessor_const_token1] = ACTIONS(8992), + [sym_static_modifier] = ACTIONS(8992), + [sym__dim_keyword] = ACTIONS(8992), + [sym__redim_keyword] = ACTIONS(8992), + [aux_sym_get_accessor_token1] = ACTIONS(8992), + [aux_sym_set_accessor_token1] = ACTIONS(8992), + [aux_sym_const_declaration_token1] = ACTIONS(8992), + [anon_sym_LPAREN] = ACTIONS(8994), + [aux_sym_as_type_clause_token2] = ACTIONS(8992), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8992), + [aux_sym_visibility_token1] = ACTIONS(8992), + [aux_sym_visibility_token2] = ACTIONS(8992), + [aux_sym_elseif_fragment_token1] = ACTIONS(8992), + [aux_sym_else_fragment_token1] = ACTIONS(8992), + [aux_sym_select_statement_token1] = ACTIONS(8992), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8992), + [aux_sym__for_header_token1] = ACTIONS(8992), + [aux_sym_do_statement_token1] = ACTIONS(8992), + [aux_sym_do_condition_token1] = ACTIONS(8992), + [aux_sym_with_statement_token1] = ACTIONS(8992), + [aux_sym_exit_statement_token1] = ACTIONS(8992), + [sym_end_statement] = ACTIONS(8994), + [aux_sym_on_goto_statement_token1] = ACTIONS(8992), + [aux_sym_on_goto_statement_token2] = ACTIONS(8992), + [aux_sym_on_error_statement_token2] = ACTIONS(8992), + [sym__ambiguous_redim_statement] = ACTIONS(8994), + [aux_sym_erase_statement_token1] = ACTIONS(8992), + [aux_sym_open_statement_token1] = ACTIONS(8992), + [aux_sym_file_mode_token2] = ACTIONS(8992), + [aux_sym_file_access_token2] = ACTIONS(8992), + [aux_sym_file_lock_token2] = ACTIONS(8992), + [aux_sym_print_statement_token1] = ACTIONS(8992), + [anon_sym_PLUS] = ACTIONS(8994), + [anon_sym_DASH] = ACTIONS(8992), + [anon_sym_QMARK] = ACTIONS(8994), + [aux_sym_close_statement_token1] = ACTIONS(8992), + [aux_sym_put_statement_token1] = ACTIONS(8992), + [aux_sym_unlock_statement_token1] = ACTIONS(8992), + [aux_sym_seek_statement_token1] = ACTIONS(8992), + [sym_reset_statement] = ACTIONS(8992), + [aux_sym_raise_event_statement_token1] = ACTIONS(8992), + [sym_stop_statement] = ACTIONS(8992), + [sym_beep_statement] = ACTIONS(8992), + [aux_sym_unload_statement_token1] = ACTIONS(8992), + [aux_sym_def_type_statement_token1] = ACTIONS(8992), + [aux_sym_def_type_statement_token2] = ACTIONS(8992), + [aux_sym_def_type_statement_token3] = ACTIONS(8992), + [aux_sym_def_type_statement_token4] = ACTIONS(8992), + [aux_sym_def_type_statement_token5] = ACTIONS(8992), + [aux_sym_def_type_statement_token6] = ACTIONS(8992), + [aux_sym_def_type_statement_token7] = ACTIONS(8992), + [aux_sym_def_type_statement_token8] = ACTIONS(8992), + [aux_sym_def_type_statement_token9] = ACTIONS(8992), + [aux_sym_def_type_statement_token10] = ACTIONS(8992), + [aux_sym_def_type_statement_token11] = ACTIONS(8992), + [aux_sym_def_type_statement_token12] = ACTIONS(8992), + [aux_sym_def_type_statement_token13] = ACTIONS(8992), + [aux_sym_def_type_statement_token14] = ACTIONS(8992), + [aux_sym_call_statement_token1] = ACTIONS(8992), + [sym__ambiguous_call_statement] = ACTIONS(8992), + [aux_sym_addressof_expression_token1] = ACTIONS(8992), + [aux_sym_type_of_expression_token1] = ACTIONS(8992), + [aux_sym_unary_expression_token1] = ACTIONS(8992), + [sym_string_literal] = ACTIONS(8994), + [sym_number_literal] = ACTIONS(8994), + [aux_sym_boolean_literal_token1] = ACTIONS(8992), + [aux_sym_boolean_literal_token2] = ACTIONS(8992), + [sym_nothing_literal] = ACTIONS(8992), + [sym_null_literal] = ACTIONS(8992), + [sym_empty_literal] = ACTIONS(8992), + [sym_date_literal] = ACTIONS(8994), + [anon_sym_POUND] = ACTIONS(8992), + }, + [STATE(6444)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6904), + [sym_identifier] = ACTIONS(8935), + [sym_newline] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(11113), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8935), + [aux_sym_frm_property_statement_token1] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_BANG] = ACTIONS(8937), + [aux_sym__attribute_identifier_token1] = ACTIONS(8935), + [aux_sym_option_statement_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8935), + [aux_sym_preprocessor_const_token1] = ACTIONS(8935), + [sym_static_modifier] = ACTIONS(8935), + [sym__dim_keyword] = ACTIONS(8935), + [sym__redim_keyword] = ACTIONS(8935), + [aux_sym_get_accessor_token1] = ACTIONS(8935), + [aux_sym_set_accessor_token1] = ACTIONS(8935), + [aux_sym_const_declaration_token1] = ACTIONS(8935), + [anon_sym_LPAREN] = ACTIONS(8937), + [aux_sym_as_type_clause_token2] = ACTIONS(8935), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8935), + [aux_sym_visibility_token1] = ACTIONS(8935), + [aux_sym_visibility_token2] = ACTIONS(8935), + [aux_sym_elseif_fragment_token1] = ACTIONS(8935), + [aux_sym_else_fragment_token1] = ACTIONS(8935), + [aux_sym_select_statement_token1] = ACTIONS(8935), + [aux_sym__for_header_token1] = ACTIONS(8935), + [aux_sym_do_statement_token1] = ACTIONS(8935), + [aux_sym_do_condition_token1] = ACTIONS(8935), + [aux_sym_with_statement_token1] = ACTIONS(8935), + [aux_sym_exit_statement_token1] = ACTIONS(8935), + [sym_end_statement] = ACTIONS(8937), + [aux_sym_on_goto_statement_token1] = ACTIONS(8935), + [aux_sym_on_goto_statement_token2] = ACTIONS(8935), + [aux_sym_on_error_statement_token2] = ACTIONS(8935), + [sym__ambiguous_redim_statement] = ACTIONS(8937), + [aux_sym_erase_statement_token1] = ACTIONS(8935), + [aux_sym_open_statement_token1] = ACTIONS(8935), + [aux_sym_file_mode_token2] = ACTIONS(8935), + [aux_sym_file_access_token2] = ACTIONS(8935), + [aux_sym_file_lock_token2] = ACTIONS(8935), + [aux_sym_print_statement_token1] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [aux_sym_close_statement_token1] = ACTIONS(8935), + [aux_sym_put_statement_token1] = ACTIONS(8935), + [aux_sym_unlock_statement_token1] = ACTIONS(8935), + [aux_sym_seek_statement_token1] = ACTIONS(8935), + [sym_reset_statement] = ACTIONS(8935), + [aux_sym_raise_event_statement_token1] = ACTIONS(8935), + [sym_stop_statement] = ACTIONS(8935), + [sym_beep_statement] = ACTIONS(8935), + [aux_sym_unload_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token2] = ACTIONS(8935), + [aux_sym_def_type_statement_token3] = ACTIONS(8935), + [aux_sym_def_type_statement_token4] = ACTIONS(8935), + [aux_sym_def_type_statement_token5] = ACTIONS(8935), + [aux_sym_def_type_statement_token6] = ACTIONS(8935), + [aux_sym_def_type_statement_token7] = ACTIONS(8935), + [aux_sym_def_type_statement_token8] = ACTIONS(8935), + [aux_sym_def_type_statement_token9] = ACTIONS(8935), + [aux_sym_def_type_statement_token10] = ACTIONS(8935), + [aux_sym_def_type_statement_token11] = ACTIONS(8935), + [aux_sym_def_type_statement_token12] = ACTIONS(8935), + [aux_sym_def_type_statement_token13] = ACTIONS(8935), + [aux_sym_def_type_statement_token14] = ACTIONS(8935), + [aux_sym_call_statement_token1] = ACTIONS(8935), + [sym__ambiguous_call_statement] = ACTIONS(8935), + [aux_sym_addressof_expression_token1] = ACTIONS(8935), + [aux_sym_type_of_expression_token1] = ACTIONS(8935), + [aux_sym_unary_expression_token1] = ACTIONS(8935), + [sym_string_literal] = ACTIONS(8937), + [sym_number_literal] = ACTIONS(8937), + [aux_sym_boolean_literal_token1] = ACTIONS(8935), + [aux_sym_boolean_literal_token2] = ACTIONS(8935), + [sym_nothing_literal] = ACTIONS(8935), + [sym_null_literal] = ACTIONS(8935), + [sym_empty_literal] = ACTIONS(8935), + [sym_date_literal] = ACTIONS(8937), + [anon_sym_POUND] = ACTIONS(8935), + }, + [STATE(6445)] = { + [sym_identifier] = ACTIONS(8996), + [sym_newline] = ACTIONS(8998), + [anon_sym_COLON] = ACTIONS(8998), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8996), + [aux_sym_frm_property_statement_token1] = ACTIONS(8996), + [anon_sym_DOT] = ACTIONS(8996), + [anon_sym_BANG] = ACTIONS(8998), + [aux_sym__attribute_identifier_token1] = ACTIONS(8996), + [aux_sym_option_statement_token3] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8996), + [aux_sym_preprocessor_const_token1] = ACTIONS(8996), + [sym_static_modifier] = ACTIONS(8996), + [sym__dim_keyword] = ACTIONS(8996), + [sym__redim_keyword] = ACTIONS(8996), + [aux_sym_get_accessor_token1] = ACTIONS(8996), + [aux_sym_set_accessor_token1] = ACTIONS(8996), + [aux_sym_const_declaration_token1] = ACTIONS(8996), + [anon_sym_LPAREN] = ACTIONS(8998), + [aux_sym_as_type_clause_token2] = ACTIONS(8996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8996), + [aux_sym_visibility_token1] = ACTIONS(8996), + [aux_sym_visibility_token2] = ACTIONS(8996), + [aux_sym_elseif_fragment_token1] = ACTIONS(8996), + [aux_sym_else_fragment_token1] = ACTIONS(8996), + [aux_sym_select_statement_token1] = ACTIONS(8996), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8996), + [aux_sym__for_header_token1] = ACTIONS(8996), + [aux_sym_do_statement_token1] = ACTIONS(8996), + [aux_sym_do_condition_token1] = ACTIONS(8996), + [aux_sym_with_statement_token1] = ACTIONS(8996), + [aux_sym_exit_statement_token1] = ACTIONS(8996), + [sym_end_statement] = ACTIONS(8998), + [aux_sym_on_goto_statement_token1] = ACTIONS(8996), + [aux_sym_on_goto_statement_token2] = ACTIONS(8996), + [aux_sym_on_error_statement_token2] = ACTIONS(8996), + [sym__ambiguous_redim_statement] = ACTIONS(8998), + [aux_sym_erase_statement_token1] = ACTIONS(8996), + [aux_sym_open_statement_token1] = ACTIONS(8996), + [aux_sym_file_mode_token2] = ACTIONS(8996), + [aux_sym_file_access_token2] = ACTIONS(8996), + [aux_sym_file_lock_token2] = ACTIONS(8996), + [aux_sym_print_statement_token1] = ACTIONS(8996), + [anon_sym_PLUS] = ACTIONS(8998), + [anon_sym_DASH] = ACTIONS(8996), + [anon_sym_QMARK] = ACTIONS(8998), + [aux_sym_close_statement_token1] = ACTIONS(8996), + [aux_sym_put_statement_token1] = ACTIONS(8996), + [aux_sym_unlock_statement_token1] = ACTIONS(8996), + [aux_sym_seek_statement_token1] = ACTIONS(8996), + [sym_reset_statement] = ACTIONS(8996), + [aux_sym_raise_event_statement_token1] = ACTIONS(8996), + [sym_stop_statement] = ACTIONS(8996), + [sym_beep_statement] = ACTIONS(8996), + [aux_sym_unload_statement_token1] = ACTIONS(8996), + [aux_sym_def_type_statement_token1] = ACTIONS(8996), + [aux_sym_def_type_statement_token2] = ACTIONS(8996), + [aux_sym_def_type_statement_token3] = ACTIONS(8996), + [aux_sym_def_type_statement_token4] = ACTIONS(8996), + [aux_sym_def_type_statement_token5] = ACTIONS(8996), + [aux_sym_def_type_statement_token6] = ACTIONS(8996), + [aux_sym_def_type_statement_token7] = ACTIONS(8996), + [aux_sym_def_type_statement_token8] = ACTIONS(8996), + [aux_sym_def_type_statement_token9] = ACTIONS(8996), + [aux_sym_def_type_statement_token10] = ACTIONS(8996), + [aux_sym_def_type_statement_token11] = ACTIONS(8996), + [aux_sym_def_type_statement_token12] = ACTIONS(8996), + [aux_sym_def_type_statement_token13] = ACTIONS(8996), + [aux_sym_def_type_statement_token14] = ACTIONS(8996), + [aux_sym_call_statement_token1] = ACTIONS(8996), + [sym__ambiguous_call_statement] = ACTIONS(8996), + [aux_sym_addressof_expression_token1] = ACTIONS(8996), + [aux_sym_type_of_expression_token1] = ACTIONS(8996), + [aux_sym_unary_expression_token1] = ACTIONS(8996), + [sym_string_literal] = ACTIONS(8998), + [sym_number_literal] = ACTIONS(8998), + [aux_sym_boolean_literal_token1] = ACTIONS(8996), + [aux_sym_boolean_literal_token2] = ACTIONS(8996), + [sym_nothing_literal] = ACTIONS(8996), + [sym_null_literal] = ACTIONS(8996), + [sym_empty_literal] = ACTIONS(8996), + [sym_date_literal] = ACTIONS(8998), + [anon_sym_POUND] = ACTIONS(8996), + }, + [STATE(6446)] = { + [sym_identifier] = ACTIONS(9000), + [sym_newline] = ACTIONS(9002), + [anon_sym_COLON] = ACTIONS(9002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9000), + [aux_sym_frm_property_statement_token1] = ACTIONS(9000), + [anon_sym_DOT] = ACTIONS(9000), + [anon_sym_BANG] = ACTIONS(9002), + [aux_sym__attribute_identifier_token1] = ACTIONS(9000), + [aux_sym_option_statement_token3] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9000), + [aux_sym_preprocessor_const_token1] = ACTIONS(9000), + [sym_static_modifier] = ACTIONS(9000), + [sym__dim_keyword] = ACTIONS(9000), + [sym__redim_keyword] = ACTIONS(9000), + [aux_sym_get_accessor_token1] = ACTIONS(9000), + [aux_sym_set_accessor_token1] = ACTIONS(9000), + [aux_sym_const_declaration_token1] = ACTIONS(9000), + [anon_sym_LPAREN] = ACTIONS(9002), + [aux_sym_as_type_clause_token2] = ACTIONS(9000), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9000), + [aux_sym_visibility_token1] = ACTIONS(9000), + [aux_sym_visibility_token2] = ACTIONS(9000), + [aux_sym_elseif_fragment_token1] = ACTIONS(9000), + [aux_sym_else_fragment_token1] = ACTIONS(9000), + [aux_sym_select_statement_token1] = ACTIONS(9000), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9000), + [aux_sym__for_header_token1] = ACTIONS(9000), + [aux_sym_do_statement_token1] = ACTIONS(9000), + [aux_sym_do_condition_token1] = ACTIONS(9000), + [aux_sym_with_statement_token1] = ACTIONS(9000), + [aux_sym_exit_statement_token1] = ACTIONS(9000), + [sym_end_statement] = ACTIONS(9002), + [aux_sym_on_goto_statement_token1] = ACTIONS(9000), + [aux_sym_on_goto_statement_token2] = ACTIONS(9000), + [aux_sym_on_error_statement_token2] = ACTIONS(9000), + [sym__ambiguous_redim_statement] = ACTIONS(9002), + [aux_sym_erase_statement_token1] = ACTIONS(9000), + [aux_sym_open_statement_token1] = ACTIONS(9000), + [aux_sym_file_mode_token2] = ACTIONS(9000), + [aux_sym_file_access_token2] = ACTIONS(9000), + [aux_sym_file_lock_token2] = ACTIONS(9000), + [aux_sym_print_statement_token1] = ACTIONS(9000), + [anon_sym_PLUS] = ACTIONS(9002), + [anon_sym_DASH] = ACTIONS(9000), + [anon_sym_QMARK] = ACTIONS(9002), + [aux_sym_close_statement_token1] = ACTIONS(9000), + [aux_sym_put_statement_token1] = ACTIONS(9000), + [aux_sym_unlock_statement_token1] = ACTIONS(9000), + [aux_sym_seek_statement_token1] = ACTIONS(9000), + [sym_reset_statement] = ACTIONS(9000), + [aux_sym_raise_event_statement_token1] = ACTIONS(9000), + [sym_stop_statement] = ACTIONS(9000), + [sym_beep_statement] = ACTIONS(9000), + [aux_sym_unload_statement_token1] = ACTIONS(9000), + [aux_sym_def_type_statement_token1] = ACTIONS(9000), + [aux_sym_def_type_statement_token2] = ACTIONS(9000), + [aux_sym_def_type_statement_token3] = ACTIONS(9000), + [aux_sym_def_type_statement_token4] = ACTIONS(9000), + [aux_sym_def_type_statement_token5] = ACTIONS(9000), + [aux_sym_def_type_statement_token6] = ACTIONS(9000), + [aux_sym_def_type_statement_token7] = ACTIONS(9000), + [aux_sym_def_type_statement_token8] = ACTIONS(9000), + [aux_sym_def_type_statement_token9] = ACTIONS(9000), + [aux_sym_def_type_statement_token10] = ACTIONS(9000), + [aux_sym_def_type_statement_token11] = ACTIONS(9000), + [aux_sym_def_type_statement_token12] = ACTIONS(9000), + [aux_sym_def_type_statement_token13] = ACTIONS(9000), + [aux_sym_def_type_statement_token14] = ACTIONS(9000), + [aux_sym_call_statement_token1] = ACTIONS(9000), + [sym__ambiguous_call_statement] = ACTIONS(9000), + [aux_sym_addressof_expression_token1] = ACTIONS(9000), + [aux_sym_type_of_expression_token1] = ACTIONS(9000), + [aux_sym_unary_expression_token1] = ACTIONS(9000), + [sym_string_literal] = ACTIONS(9002), + [sym_number_literal] = ACTIONS(9002), + [aux_sym_boolean_literal_token1] = ACTIONS(9000), + [aux_sym_boolean_literal_token2] = ACTIONS(9000), + [sym_nothing_literal] = ACTIONS(9000), + [sym_null_literal] = ACTIONS(9000), + [sym_empty_literal] = ACTIONS(9000), + [sym_date_literal] = ACTIONS(9002), + [anon_sym_POUND] = ACTIONS(9000), + }, + [STATE(6447)] = { + [sym_identifier] = ACTIONS(9004), + [sym_newline] = ACTIONS(9006), + [anon_sym_COLON] = ACTIONS(9006), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9004), + [aux_sym_frm_property_statement_token1] = ACTIONS(9004), + [anon_sym_DOT] = ACTIONS(9004), + [anon_sym_BANG] = ACTIONS(9006), + [aux_sym__attribute_identifier_token1] = ACTIONS(9004), + [aux_sym_option_statement_token3] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9004), + [aux_sym_preprocessor_const_token1] = ACTIONS(9004), + [sym_static_modifier] = ACTIONS(9004), + [sym__dim_keyword] = ACTIONS(9004), + [sym__redim_keyword] = ACTIONS(9004), + [aux_sym_get_accessor_token1] = ACTIONS(9004), + [aux_sym_set_accessor_token1] = ACTIONS(9004), + [aux_sym_const_declaration_token1] = ACTIONS(9004), + [anon_sym_LPAREN] = ACTIONS(9006), + [aux_sym_as_type_clause_token2] = ACTIONS(9004), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9004), + [aux_sym_visibility_token1] = ACTIONS(9004), + [aux_sym_visibility_token2] = ACTIONS(9004), + [aux_sym_elseif_fragment_token1] = ACTIONS(9004), + [aux_sym_else_fragment_token1] = ACTIONS(9004), + [aux_sym_select_statement_token1] = ACTIONS(9004), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9004), + [aux_sym__for_header_token1] = ACTIONS(9004), + [aux_sym_do_statement_token1] = ACTIONS(9004), + [aux_sym_do_condition_token1] = ACTIONS(9004), + [aux_sym_with_statement_token1] = ACTIONS(9004), + [aux_sym_exit_statement_token1] = ACTIONS(9004), + [sym_end_statement] = ACTIONS(9006), + [aux_sym_on_goto_statement_token1] = ACTIONS(9004), + [aux_sym_on_goto_statement_token2] = ACTIONS(9004), + [aux_sym_on_error_statement_token2] = ACTIONS(9004), + [sym__ambiguous_redim_statement] = ACTIONS(9006), + [aux_sym_erase_statement_token1] = ACTIONS(9004), + [aux_sym_open_statement_token1] = ACTIONS(9004), + [aux_sym_file_mode_token2] = ACTIONS(9004), + [aux_sym_file_access_token2] = ACTIONS(9004), + [aux_sym_file_lock_token2] = ACTIONS(9004), + [aux_sym_print_statement_token1] = ACTIONS(9004), + [anon_sym_PLUS] = ACTIONS(9006), + [anon_sym_DASH] = ACTIONS(9004), + [anon_sym_QMARK] = ACTIONS(9006), + [aux_sym_close_statement_token1] = ACTIONS(9004), + [aux_sym_put_statement_token1] = ACTIONS(9004), + [aux_sym_unlock_statement_token1] = ACTIONS(9004), + [aux_sym_seek_statement_token1] = ACTIONS(9004), + [sym_reset_statement] = ACTIONS(9004), + [aux_sym_raise_event_statement_token1] = ACTIONS(9004), + [sym_stop_statement] = ACTIONS(9004), + [sym_beep_statement] = ACTIONS(9004), + [aux_sym_unload_statement_token1] = ACTIONS(9004), + [aux_sym_def_type_statement_token1] = ACTIONS(9004), + [aux_sym_def_type_statement_token2] = ACTIONS(9004), + [aux_sym_def_type_statement_token3] = ACTIONS(9004), + [aux_sym_def_type_statement_token4] = ACTIONS(9004), + [aux_sym_def_type_statement_token5] = ACTIONS(9004), + [aux_sym_def_type_statement_token6] = ACTIONS(9004), + [aux_sym_def_type_statement_token7] = ACTIONS(9004), + [aux_sym_def_type_statement_token8] = ACTIONS(9004), + [aux_sym_def_type_statement_token9] = ACTIONS(9004), + [aux_sym_def_type_statement_token10] = ACTIONS(9004), + [aux_sym_def_type_statement_token11] = ACTIONS(9004), + [aux_sym_def_type_statement_token12] = ACTIONS(9004), + [aux_sym_def_type_statement_token13] = ACTIONS(9004), + [aux_sym_def_type_statement_token14] = ACTIONS(9004), + [aux_sym_call_statement_token1] = ACTIONS(9004), + [sym__ambiguous_call_statement] = ACTIONS(9004), + [aux_sym_addressof_expression_token1] = ACTIONS(9004), + [aux_sym_type_of_expression_token1] = ACTIONS(9004), + [aux_sym_unary_expression_token1] = ACTIONS(9004), + [sym_string_literal] = ACTIONS(9006), + [sym_number_literal] = ACTIONS(9006), + [aux_sym_boolean_literal_token1] = ACTIONS(9004), + [aux_sym_boolean_literal_token2] = ACTIONS(9004), + [sym_nothing_literal] = ACTIONS(9004), + [sym_null_literal] = ACTIONS(9004), + [sym_empty_literal] = ACTIONS(9004), + [sym_date_literal] = ACTIONS(9006), + [anon_sym_POUND] = ACTIONS(9004), + }, + [STATE(6448)] = { + [sym_identifier] = ACTIONS(8501), + [sym_newline] = ACTIONS(8503), + [anon_sym_COLON] = ACTIONS(8503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8501), + [aux_sym_frm_property_statement_token1] = ACTIONS(8501), + [anon_sym_DOT] = ACTIONS(8501), + [anon_sym_BANG] = ACTIONS(8503), + [aux_sym__attribute_identifier_token1] = ACTIONS(8501), + [aux_sym_option_statement_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8501), + [aux_sym_preprocessor_const_token1] = ACTIONS(8501), + [sym_static_modifier] = ACTIONS(8501), + [sym__dim_keyword] = ACTIONS(8501), + [sym__redim_keyword] = ACTIONS(8501), + [aux_sym_get_accessor_token1] = ACTIONS(8501), + [aux_sym_set_accessor_token1] = ACTIONS(8501), + [aux_sym_const_declaration_token1] = ACTIONS(8501), + [anon_sym_LPAREN] = ACTIONS(8503), + [aux_sym_as_type_clause_token2] = ACTIONS(8501), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8501), + [aux_sym_visibility_token1] = ACTIONS(8501), + [aux_sym_visibility_token2] = ACTIONS(8501), + [aux_sym_elseif_fragment_token1] = ACTIONS(8501), + [aux_sym_else_fragment_token1] = ACTIONS(8501), + [aux_sym_select_statement_token1] = ACTIONS(8501), + [aux_sym__for_header_token1] = ACTIONS(8501), + [aux_sym_do_statement_token1] = ACTIONS(8501), + [aux_sym_do_statement_token2] = ACTIONS(8501), + [aux_sym_do_condition_token1] = ACTIONS(8501), + [aux_sym_with_statement_token1] = ACTIONS(8501), + [aux_sym_exit_statement_token1] = ACTIONS(8501), + [sym_end_statement] = ACTIONS(8503), + [aux_sym_on_goto_statement_token1] = ACTIONS(8501), + [aux_sym_on_goto_statement_token2] = ACTIONS(8501), + [aux_sym_on_error_statement_token2] = ACTIONS(8501), + [sym__ambiguous_redim_statement] = ACTIONS(8503), + [aux_sym_erase_statement_token1] = ACTIONS(8501), + [aux_sym_open_statement_token1] = ACTIONS(8501), + [aux_sym_file_mode_token2] = ACTIONS(8501), + [aux_sym_file_access_token2] = ACTIONS(8501), + [aux_sym_file_lock_token2] = ACTIONS(8501), + [aux_sym_print_statement_token1] = ACTIONS(8501), + [anon_sym_PLUS] = ACTIONS(8503), + [anon_sym_DASH] = ACTIONS(8501), + [anon_sym_QMARK] = ACTIONS(8503), + [aux_sym_close_statement_token1] = ACTIONS(8501), + [aux_sym_put_statement_token1] = ACTIONS(8501), + [aux_sym_unlock_statement_token1] = ACTIONS(8501), + [aux_sym_seek_statement_token1] = ACTIONS(8501), + [sym_reset_statement] = ACTIONS(8501), + [aux_sym_raise_event_statement_token1] = ACTIONS(8501), + [sym_stop_statement] = ACTIONS(8501), + [sym_beep_statement] = ACTIONS(8501), + [aux_sym_unload_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token2] = ACTIONS(8501), + [aux_sym_def_type_statement_token3] = ACTIONS(8501), + [aux_sym_def_type_statement_token4] = ACTIONS(8501), + [aux_sym_def_type_statement_token5] = ACTIONS(8501), + [aux_sym_def_type_statement_token6] = ACTIONS(8501), + [aux_sym_def_type_statement_token7] = ACTIONS(8501), + [aux_sym_def_type_statement_token8] = ACTIONS(8501), + [aux_sym_def_type_statement_token9] = ACTIONS(8501), + [aux_sym_def_type_statement_token10] = ACTIONS(8501), + [aux_sym_def_type_statement_token11] = ACTIONS(8501), + [aux_sym_def_type_statement_token12] = ACTIONS(8501), + [aux_sym_def_type_statement_token13] = ACTIONS(8501), + [aux_sym_def_type_statement_token14] = ACTIONS(8501), + [aux_sym_call_statement_token1] = ACTIONS(8501), + [sym__ambiguous_call_statement] = ACTIONS(8501), + [aux_sym_addressof_expression_token1] = ACTIONS(8501), + [aux_sym_type_of_expression_token1] = ACTIONS(8501), + [aux_sym_unary_expression_token1] = ACTIONS(8501), + [sym_string_literal] = ACTIONS(8503), + [sym_number_literal] = ACTIONS(8503), + [aux_sym_boolean_literal_token1] = ACTIONS(8501), + [aux_sym_boolean_literal_token2] = ACTIONS(8501), + [sym_nothing_literal] = ACTIONS(8501), + [sym_null_literal] = ACTIONS(8501), + [sym_empty_literal] = ACTIONS(8501), + [sym_date_literal] = ACTIONS(8503), + [anon_sym_POUND] = ACTIONS(8501), + }, + [STATE(6449)] = { + [sym_identifier] = ACTIONS(9374), + [sym_newline] = ACTIONS(9376), + [anon_sym_COLON] = ACTIONS(9376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9374), + [aux_sym_frm_property_statement_token1] = ACTIONS(9374), + [anon_sym_DOT] = ACTIONS(9374), + [anon_sym_BANG] = ACTIONS(9376), + [aux_sym__attribute_identifier_token1] = ACTIONS(9374), + [aux_sym_option_statement_token3] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9374), + [aux_sym_preprocessor_const_token1] = ACTIONS(9374), + [sym_static_modifier] = ACTIONS(9374), + [sym__dim_keyword] = ACTIONS(9374), + [sym__redim_keyword] = ACTIONS(9374), + [aux_sym_get_accessor_token1] = ACTIONS(9374), + [aux_sym_set_accessor_token1] = ACTIONS(9374), + [aux_sym_const_declaration_token1] = ACTIONS(9374), + [anon_sym_LPAREN] = ACTIONS(9376), + [aux_sym_as_type_clause_token2] = ACTIONS(9374), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9374), + [aux_sym_visibility_token1] = ACTIONS(9374), + [aux_sym_visibility_token2] = ACTIONS(9374), + [aux_sym_elseif_fragment_token1] = ACTIONS(9374), + [aux_sym_else_fragment_token1] = ACTIONS(9374), + [aux_sym_select_statement_token1] = ACTIONS(9374), + [aux_sym__for_header_token1] = ACTIONS(9374), + [aux_sym_do_statement_token1] = ACTIONS(9374), + [aux_sym_do_statement_token2] = ACTIONS(9374), + [aux_sym_do_condition_token1] = ACTIONS(9374), + [aux_sym_with_statement_token1] = ACTIONS(9374), + [aux_sym_exit_statement_token1] = ACTIONS(9374), + [sym_end_statement] = ACTIONS(9376), + [aux_sym_on_goto_statement_token1] = ACTIONS(9374), + [aux_sym_on_goto_statement_token2] = ACTIONS(9374), + [aux_sym_on_error_statement_token2] = ACTIONS(9374), + [sym__ambiguous_redim_statement] = ACTIONS(9376), + [aux_sym_erase_statement_token1] = ACTIONS(9374), + [aux_sym_open_statement_token1] = ACTIONS(9374), + [aux_sym_file_mode_token2] = ACTIONS(9374), + [aux_sym_file_access_token2] = ACTIONS(9374), + [aux_sym_file_lock_token2] = ACTIONS(9374), + [aux_sym_print_statement_token1] = ACTIONS(9374), + [anon_sym_PLUS] = ACTIONS(9376), + [anon_sym_DASH] = ACTIONS(9374), + [anon_sym_QMARK] = ACTIONS(9376), + [aux_sym_close_statement_token1] = ACTIONS(9374), + [aux_sym_put_statement_token1] = ACTIONS(9374), + [aux_sym_unlock_statement_token1] = ACTIONS(9374), + [aux_sym_seek_statement_token1] = ACTIONS(9374), + [sym_reset_statement] = ACTIONS(9374), + [aux_sym_raise_event_statement_token1] = ACTIONS(9374), + [sym_stop_statement] = ACTIONS(9374), + [sym_beep_statement] = ACTIONS(9374), + [aux_sym_unload_statement_token1] = ACTIONS(9374), + [aux_sym_def_type_statement_token1] = ACTIONS(9374), + [aux_sym_def_type_statement_token2] = ACTIONS(9374), + [aux_sym_def_type_statement_token3] = ACTIONS(9374), + [aux_sym_def_type_statement_token4] = ACTIONS(9374), + [aux_sym_def_type_statement_token5] = ACTIONS(9374), + [aux_sym_def_type_statement_token6] = ACTIONS(9374), + [aux_sym_def_type_statement_token7] = ACTIONS(9374), + [aux_sym_def_type_statement_token8] = ACTIONS(9374), + [aux_sym_def_type_statement_token9] = ACTIONS(9374), + [aux_sym_def_type_statement_token10] = ACTIONS(9374), + [aux_sym_def_type_statement_token11] = ACTIONS(9374), + [aux_sym_def_type_statement_token12] = ACTIONS(9374), + [aux_sym_def_type_statement_token13] = ACTIONS(9374), + [aux_sym_def_type_statement_token14] = ACTIONS(9374), + [aux_sym_call_statement_token1] = ACTIONS(9374), + [sym__ambiguous_call_statement] = ACTIONS(9374), + [aux_sym_addressof_expression_token1] = ACTIONS(9374), + [aux_sym_type_of_expression_token1] = ACTIONS(9374), + [aux_sym_unary_expression_token1] = ACTIONS(9374), + [sym_string_literal] = ACTIONS(9376), + [sym_number_literal] = ACTIONS(9376), + [aux_sym_boolean_literal_token1] = ACTIONS(9374), + [aux_sym_boolean_literal_token2] = ACTIONS(9374), + [sym_nothing_literal] = ACTIONS(9374), + [sym_null_literal] = ACTIONS(9374), + [sym_empty_literal] = ACTIONS(9374), + [sym_date_literal] = ACTIONS(9376), + [anon_sym_POUND] = ACTIONS(9374), + }, + [STATE(6450)] = { + [sym_identifier] = ACTIONS(9378), + [sym_newline] = ACTIONS(9380), + [anon_sym_COLON] = ACTIONS(9380), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9378), + [aux_sym_frm_property_statement_token1] = ACTIONS(9378), + [anon_sym_DOT] = ACTIONS(9378), + [anon_sym_BANG] = ACTIONS(9380), + [aux_sym__attribute_identifier_token1] = ACTIONS(9378), + [aux_sym_option_statement_token3] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9378), + [aux_sym_preprocessor_const_token1] = ACTIONS(9378), + [sym_static_modifier] = ACTIONS(9378), + [sym__dim_keyword] = ACTIONS(9378), + [sym__redim_keyword] = ACTIONS(9378), + [aux_sym_get_accessor_token1] = ACTIONS(9378), + [aux_sym_set_accessor_token1] = ACTIONS(9378), + [aux_sym_const_declaration_token1] = ACTIONS(9378), + [anon_sym_LPAREN] = ACTIONS(9380), + [aux_sym_as_type_clause_token2] = ACTIONS(9378), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9378), + [aux_sym_visibility_token1] = ACTIONS(9378), + [aux_sym_visibility_token2] = ACTIONS(9378), + [aux_sym_elseif_fragment_token1] = ACTIONS(9378), + [aux_sym_else_fragment_token1] = ACTIONS(9378), + [aux_sym_select_statement_token1] = ACTIONS(9378), + [aux_sym__for_header_token1] = ACTIONS(9378), + [aux_sym_do_statement_token1] = ACTIONS(9378), + [aux_sym_do_statement_token2] = ACTIONS(9378), + [aux_sym_do_condition_token1] = ACTIONS(9378), + [aux_sym_with_statement_token1] = ACTIONS(9378), + [aux_sym_exit_statement_token1] = ACTIONS(9378), + [sym_end_statement] = ACTIONS(9380), + [aux_sym_on_goto_statement_token1] = ACTIONS(9378), + [aux_sym_on_goto_statement_token2] = ACTIONS(9378), + [aux_sym_on_error_statement_token2] = ACTIONS(9378), + [sym__ambiguous_redim_statement] = ACTIONS(9380), + [aux_sym_erase_statement_token1] = ACTIONS(9378), + [aux_sym_open_statement_token1] = ACTIONS(9378), + [aux_sym_file_mode_token2] = ACTIONS(9378), + [aux_sym_file_access_token2] = ACTIONS(9378), + [aux_sym_file_lock_token2] = ACTIONS(9378), + [aux_sym_print_statement_token1] = ACTIONS(9378), + [anon_sym_PLUS] = ACTIONS(9380), + [anon_sym_DASH] = ACTIONS(9378), + [anon_sym_QMARK] = ACTIONS(9380), + [aux_sym_close_statement_token1] = ACTIONS(9378), + [aux_sym_put_statement_token1] = ACTIONS(9378), + [aux_sym_unlock_statement_token1] = ACTIONS(9378), + [aux_sym_seek_statement_token1] = ACTIONS(9378), + [sym_reset_statement] = ACTIONS(9378), + [aux_sym_raise_event_statement_token1] = ACTIONS(9378), + [sym_stop_statement] = ACTIONS(9378), + [sym_beep_statement] = ACTIONS(9378), + [aux_sym_unload_statement_token1] = ACTIONS(9378), + [aux_sym_def_type_statement_token1] = ACTIONS(9378), + [aux_sym_def_type_statement_token2] = ACTIONS(9378), + [aux_sym_def_type_statement_token3] = ACTIONS(9378), + [aux_sym_def_type_statement_token4] = ACTIONS(9378), + [aux_sym_def_type_statement_token5] = ACTIONS(9378), + [aux_sym_def_type_statement_token6] = ACTIONS(9378), + [aux_sym_def_type_statement_token7] = ACTIONS(9378), + [aux_sym_def_type_statement_token8] = ACTIONS(9378), + [aux_sym_def_type_statement_token9] = ACTIONS(9378), + [aux_sym_def_type_statement_token10] = ACTIONS(9378), + [aux_sym_def_type_statement_token11] = ACTIONS(9378), + [aux_sym_def_type_statement_token12] = ACTIONS(9378), + [aux_sym_def_type_statement_token13] = ACTIONS(9378), + [aux_sym_def_type_statement_token14] = ACTIONS(9378), + [aux_sym_call_statement_token1] = ACTIONS(9378), + [sym__ambiguous_call_statement] = ACTIONS(9378), + [aux_sym_addressof_expression_token1] = ACTIONS(9378), + [aux_sym_type_of_expression_token1] = ACTIONS(9378), + [aux_sym_unary_expression_token1] = ACTIONS(9378), + [sym_string_literal] = ACTIONS(9380), + [sym_number_literal] = ACTIONS(9380), + [aux_sym_boolean_literal_token1] = ACTIONS(9378), + [aux_sym_boolean_literal_token2] = ACTIONS(9378), + [sym_nothing_literal] = ACTIONS(9378), + [sym_null_literal] = ACTIONS(9378), + [sym_empty_literal] = ACTIONS(9378), + [sym_date_literal] = ACTIONS(9380), + [anon_sym_POUND] = ACTIONS(9378), + }, + [STATE(6451)] = { + [sym_identifier] = ACTIONS(9647), + [sym_newline] = ACTIONS(9649), + [anon_sym_COLON] = ACTIONS(9649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9647), + [aux_sym_frm_property_statement_token1] = ACTIONS(9647), + [anon_sym_DOT] = ACTIONS(9647), + [anon_sym_BANG] = ACTIONS(9649), + [aux_sym__attribute_identifier_token1] = ACTIONS(9647), + [aux_sym_option_statement_token3] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9647), + [aux_sym_preprocessor_const_token1] = ACTIONS(9647), + [sym_static_modifier] = ACTIONS(9647), + [sym__dim_keyword] = ACTIONS(9647), + [sym__redim_keyword] = ACTIONS(9647), + [aux_sym_get_accessor_token1] = ACTIONS(9647), + [aux_sym_set_accessor_token1] = ACTIONS(9647), + [aux_sym_const_declaration_token1] = ACTIONS(9647), + [anon_sym_LPAREN] = ACTIONS(9649), + [aux_sym_as_type_clause_token2] = ACTIONS(9647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9647), + [aux_sym_visibility_token1] = ACTIONS(9647), + [aux_sym_visibility_token2] = ACTIONS(9647), + [aux_sym_elseif_fragment_token1] = ACTIONS(9647), + [aux_sym_else_fragment_token1] = ACTIONS(9647), + [aux_sym_select_statement_token1] = ACTIONS(9647), + [aux_sym__for_header_token1] = ACTIONS(9647), + [aux_sym_do_statement_token1] = ACTIONS(9647), + [aux_sym_do_statement_token2] = ACTIONS(9647), + [aux_sym_do_condition_token1] = ACTIONS(9647), + [aux_sym_with_statement_token1] = ACTIONS(9647), + [aux_sym_exit_statement_token1] = ACTIONS(9647), + [sym_end_statement] = ACTIONS(9649), + [aux_sym_on_goto_statement_token1] = ACTIONS(9647), + [aux_sym_on_goto_statement_token2] = ACTIONS(9647), + [aux_sym_on_error_statement_token2] = ACTIONS(9647), + [sym__ambiguous_redim_statement] = ACTIONS(9649), + [aux_sym_erase_statement_token1] = ACTIONS(9647), + [aux_sym_open_statement_token1] = ACTIONS(9647), + [aux_sym_file_mode_token2] = ACTIONS(9647), + [aux_sym_file_access_token2] = ACTIONS(9647), + [aux_sym_file_lock_token2] = ACTIONS(9647), + [aux_sym_print_statement_token1] = ACTIONS(9647), + [anon_sym_PLUS] = ACTIONS(9649), + [anon_sym_DASH] = ACTIONS(9647), + [anon_sym_QMARK] = ACTIONS(9649), + [aux_sym_close_statement_token1] = ACTIONS(9647), + [aux_sym_put_statement_token1] = ACTIONS(9647), + [aux_sym_unlock_statement_token1] = ACTIONS(9647), + [aux_sym_seek_statement_token1] = ACTIONS(9647), + [sym_reset_statement] = ACTIONS(9647), + [aux_sym_raise_event_statement_token1] = ACTIONS(9647), + [sym_stop_statement] = ACTIONS(9647), + [sym_beep_statement] = ACTIONS(9647), + [aux_sym_unload_statement_token1] = ACTIONS(9647), + [aux_sym_def_type_statement_token1] = ACTIONS(9647), + [aux_sym_def_type_statement_token2] = ACTIONS(9647), + [aux_sym_def_type_statement_token3] = ACTIONS(9647), + [aux_sym_def_type_statement_token4] = ACTIONS(9647), + [aux_sym_def_type_statement_token5] = ACTIONS(9647), + [aux_sym_def_type_statement_token6] = ACTIONS(9647), + [aux_sym_def_type_statement_token7] = ACTIONS(9647), + [aux_sym_def_type_statement_token8] = ACTIONS(9647), + [aux_sym_def_type_statement_token9] = ACTIONS(9647), + [aux_sym_def_type_statement_token10] = ACTIONS(9647), + [aux_sym_def_type_statement_token11] = ACTIONS(9647), + [aux_sym_def_type_statement_token12] = ACTIONS(9647), + [aux_sym_def_type_statement_token13] = ACTIONS(9647), + [aux_sym_def_type_statement_token14] = ACTIONS(9647), + [aux_sym_call_statement_token1] = ACTIONS(9647), + [sym__ambiguous_call_statement] = ACTIONS(9647), + [aux_sym_addressof_expression_token1] = ACTIONS(9647), + [aux_sym_type_of_expression_token1] = ACTIONS(9647), + [aux_sym_unary_expression_token1] = ACTIONS(9647), + [sym_string_literal] = ACTIONS(9649), + [sym_number_literal] = ACTIONS(9649), + [aux_sym_boolean_literal_token1] = ACTIONS(9647), + [aux_sym_boolean_literal_token2] = ACTIONS(9647), + [sym_nothing_literal] = ACTIONS(9647), + [sym_null_literal] = ACTIONS(9647), + [sym_empty_literal] = ACTIONS(9647), + [sym_date_literal] = ACTIONS(9649), + [anon_sym_POUND] = ACTIONS(9647), + }, + [STATE(6452)] = { + [sym_identifier] = ACTIONS(9264), + [sym_newline] = ACTIONS(9266), + [anon_sym_COLON] = ACTIONS(9266), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9264), + [aux_sym_frm_property_statement_token1] = ACTIONS(9264), + [anon_sym_DOT] = ACTIONS(9264), + [anon_sym_BANG] = ACTIONS(9266), + [aux_sym__attribute_identifier_token1] = ACTIONS(9264), + [aux_sym_option_statement_token3] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9264), + [aux_sym_preprocessor_const_token1] = ACTIONS(9264), + [sym_static_modifier] = ACTIONS(9264), + [sym__dim_keyword] = ACTIONS(9264), + [sym__redim_keyword] = ACTIONS(9264), + [aux_sym_get_accessor_token1] = ACTIONS(9264), + [aux_sym_set_accessor_token1] = ACTIONS(9264), + [aux_sym_const_declaration_token1] = ACTIONS(9264), + [anon_sym_LPAREN] = ACTIONS(9266), + [aux_sym_as_type_clause_token2] = ACTIONS(9264), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9264), + [aux_sym_visibility_token1] = ACTIONS(9264), + [aux_sym_visibility_token2] = ACTIONS(9264), + [aux_sym_elseif_fragment_token1] = ACTIONS(9264), + [aux_sym_else_fragment_token1] = ACTIONS(9264), + [aux_sym_select_statement_token1] = ACTIONS(9264), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9264), + [aux_sym__for_header_token1] = ACTIONS(9264), + [aux_sym_do_statement_token1] = ACTIONS(9264), + [aux_sym_do_condition_token1] = ACTIONS(9264), + [aux_sym_with_statement_token1] = ACTIONS(9264), + [aux_sym_exit_statement_token1] = ACTIONS(9264), + [sym_end_statement] = ACTIONS(9266), + [aux_sym_on_goto_statement_token1] = ACTIONS(9264), + [aux_sym_on_goto_statement_token2] = ACTIONS(9264), + [aux_sym_on_error_statement_token2] = ACTIONS(9264), + [sym__ambiguous_redim_statement] = ACTIONS(9266), + [aux_sym_erase_statement_token1] = ACTIONS(9264), + [aux_sym_open_statement_token1] = ACTIONS(9264), + [aux_sym_file_mode_token2] = ACTIONS(9264), + [aux_sym_file_access_token2] = ACTIONS(9264), + [aux_sym_file_lock_token2] = ACTIONS(9264), + [aux_sym_print_statement_token1] = ACTIONS(9264), + [anon_sym_PLUS] = ACTIONS(9266), + [anon_sym_DASH] = ACTIONS(9264), + [anon_sym_QMARK] = ACTIONS(9266), + [aux_sym_close_statement_token1] = ACTIONS(9264), + [aux_sym_put_statement_token1] = ACTIONS(9264), + [aux_sym_unlock_statement_token1] = ACTIONS(9264), + [aux_sym_seek_statement_token1] = ACTIONS(9264), + [sym_reset_statement] = ACTIONS(9264), + [aux_sym_raise_event_statement_token1] = ACTIONS(9264), + [sym_stop_statement] = ACTIONS(9264), + [sym_beep_statement] = ACTIONS(9264), + [aux_sym_unload_statement_token1] = ACTIONS(9264), + [aux_sym_def_type_statement_token1] = ACTIONS(9264), + [aux_sym_def_type_statement_token2] = ACTIONS(9264), + [aux_sym_def_type_statement_token3] = ACTIONS(9264), + [aux_sym_def_type_statement_token4] = ACTIONS(9264), + [aux_sym_def_type_statement_token5] = ACTIONS(9264), + [aux_sym_def_type_statement_token6] = ACTIONS(9264), + [aux_sym_def_type_statement_token7] = ACTIONS(9264), + [aux_sym_def_type_statement_token8] = ACTIONS(9264), + [aux_sym_def_type_statement_token9] = ACTIONS(9264), + [aux_sym_def_type_statement_token10] = ACTIONS(9264), + [aux_sym_def_type_statement_token11] = ACTIONS(9264), + [aux_sym_def_type_statement_token12] = ACTIONS(9264), + [aux_sym_def_type_statement_token13] = ACTIONS(9264), + [aux_sym_def_type_statement_token14] = ACTIONS(9264), + [aux_sym_call_statement_token1] = ACTIONS(9264), + [sym__ambiguous_call_statement] = ACTIONS(9264), + [aux_sym_addressof_expression_token1] = ACTIONS(9264), + [aux_sym_type_of_expression_token1] = ACTIONS(9264), + [aux_sym_unary_expression_token1] = ACTIONS(9264), + [sym_string_literal] = ACTIONS(9266), + [sym_number_literal] = ACTIONS(9266), + [aux_sym_boolean_literal_token1] = ACTIONS(9264), + [aux_sym_boolean_literal_token2] = ACTIONS(9264), + [sym_nothing_literal] = ACTIONS(9264), + [sym_null_literal] = ACTIONS(9264), + [sym_empty_literal] = ACTIONS(9264), + [sym_date_literal] = ACTIONS(9266), + [anon_sym_POUND] = ACTIONS(9264), + }, + [STATE(6453)] = { + [sym_identifier] = ACTIONS(8951), + [sym_newline] = ACTIONS(8953), + [anon_sym_COLON] = ACTIONS(8955), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8951), + [aux_sym_frm_property_statement_token1] = ACTIONS(8951), + [anon_sym_DOT] = ACTIONS(8951), + [anon_sym_BANG] = ACTIONS(8953), + [aux_sym__attribute_identifier_token1] = ACTIONS(8951), + [aux_sym_option_statement_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8951), + [aux_sym_preprocessor_const_token1] = ACTIONS(8951), + [sym_static_modifier] = ACTIONS(8951), + [sym__dim_keyword] = ACTIONS(8951), + [sym__redim_keyword] = ACTIONS(8951), + [aux_sym_get_accessor_token1] = ACTIONS(8951), + [aux_sym_set_accessor_token1] = ACTIONS(8951), + [aux_sym_const_declaration_token1] = ACTIONS(8951), + [anon_sym_LPAREN] = ACTIONS(8953), + [aux_sym_as_type_clause_token2] = ACTIONS(8951), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8951), + [aux_sym_visibility_token1] = ACTIONS(8951), + [aux_sym_visibility_token2] = ACTIONS(8951), + [aux_sym_elseif_fragment_token1] = ACTIONS(8951), + [aux_sym_else_fragment_token1] = ACTIONS(8951), + [aux_sym_select_statement_token1] = ACTIONS(8951), + [aux_sym_select_statement_token2] = ACTIONS(8951), + [aux_sym__for_header_token1] = ACTIONS(8951), + [aux_sym_do_statement_token1] = ACTIONS(8951), + [aux_sym_do_condition_token1] = ACTIONS(8951), + [aux_sym_with_statement_token1] = ACTIONS(8951), + [aux_sym_exit_statement_token1] = ACTIONS(8951), + [sym_end_statement] = ACTIONS(8953), + [aux_sym_on_goto_statement_token1] = ACTIONS(8951), + [aux_sym_on_goto_statement_token2] = ACTIONS(8951), + [aux_sym_on_error_statement_token2] = ACTIONS(8951), + [sym__ambiguous_redim_statement] = ACTIONS(8953), + [aux_sym_erase_statement_token1] = ACTIONS(8951), + [aux_sym_open_statement_token1] = ACTIONS(8951), + [aux_sym_file_mode_token2] = ACTIONS(8951), + [aux_sym_file_access_token2] = ACTIONS(8951), + [aux_sym_file_lock_token2] = ACTIONS(8951), + [aux_sym_print_statement_token1] = ACTIONS(8951), + [anon_sym_PLUS] = ACTIONS(8953), + [anon_sym_DASH] = ACTIONS(8951), + [anon_sym_QMARK] = ACTIONS(8953), + [aux_sym_close_statement_token1] = ACTIONS(8951), + [aux_sym_put_statement_token1] = ACTIONS(8951), + [aux_sym_unlock_statement_token1] = ACTIONS(8951), + [aux_sym_seek_statement_token1] = ACTIONS(8951), + [sym_reset_statement] = ACTIONS(8951), + [aux_sym_raise_event_statement_token1] = ACTIONS(8951), + [sym_stop_statement] = ACTIONS(8951), + [sym_beep_statement] = ACTIONS(8951), + [aux_sym_unload_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token2] = ACTIONS(8951), + [aux_sym_def_type_statement_token3] = ACTIONS(8951), + [aux_sym_def_type_statement_token4] = ACTIONS(8951), + [aux_sym_def_type_statement_token5] = ACTIONS(8951), + [aux_sym_def_type_statement_token6] = ACTIONS(8951), + [aux_sym_def_type_statement_token7] = ACTIONS(8951), + [aux_sym_def_type_statement_token8] = ACTIONS(8951), + [aux_sym_def_type_statement_token9] = ACTIONS(8951), + [aux_sym_def_type_statement_token10] = ACTIONS(8951), + [aux_sym_def_type_statement_token11] = ACTIONS(8951), + [aux_sym_def_type_statement_token12] = ACTIONS(8951), + [aux_sym_def_type_statement_token13] = ACTIONS(8951), + [aux_sym_def_type_statement_token14] = ACTIONS(8951), + [aux_sym_call_statement_token1] = ACTIONS(8951), + [sym__ambiguous_call_statement] = ACTIONS(8951), + [aux_sym_addressof_expression_token1] = ACTIONS(8951), + [aux_sym_type_of_expression_token1] = ACTIONS(8951), + [aux_sym_unary_expression_token1] = ACTIONS(8951), + [sym_string_literal] = ACTIONS(8953), + [sym_number_literal] = ACTIONS(8955), + [aux_sym_boolean_literal_token1] = ACTIONS(8951), + [aux_sym_boolean_literal_token2] = ACTIONS(8951), + [sym_nothing_literal] = ACTIONS(8951), + [sym_null_literal] = ACTIONS(8951), + [sym_empty_literal] = ACTIONS(8951), + [sym_date_literal] = ACTIONS(8953), + [anon_sym_POUND] = ACTIONS(8951), + }, + [STATE(6454)] = { + [sym_identifier] = ACTIONS(8645), + [sym_newline] = ACTIONS(8647), + [anon_sym_COLON] = ACTIONS(8649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8645), + [aux_sym_frm_property_statement_token1] = ACTIONS(8645), + [anon_sym_DOT] = ACTIONS(8645), + [anon_sym_BANG] = ACTIONS(8647), + [aux_sym__attribute_identifier_token1] = ACTIONS(8645), + [aux_sym_option_statement_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8645), + [aux_sym_preprocessor_const_token1] = ACTIONS(8645), + [sym_static_modifier] = ACTIONS(8645), + [sym__dim_keyword] = ACTIONS(8645), + [sym__redim_keyword] = ACTIONS(8645), + [aux_sym_get_accessor_token1] = ACTIONS(8645), + [aux_sym_set_accessor_token1] = ACTIONS(8645), + [aux_sym_const_declaration_token1] = ACTIONS(8645), + [anon_sym_LPAREN] = ACTIONS(8647), + [aux_sym_as_type_clause_token2] = ACTIONS(8645), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8645), + [aux_sym_visibility_token1] = ACTIONS(8645), + [aux_sym_visibility_token2] = ACTIONS(8645), + [aux_sym_elseif_fragment_token1] = ACTIONS(8645), + [aux_sym_else_fragment_token1] = ACTIONS(8645), + [aux_sym_select_statement_token1] = ACTIONS(8645), + [aux_sym_select_statement_token2] = ACTIONS(8645), + [aux_sym__for_header_token1] = ACTIONS(8645), + [aux_sym_do_statement_token1] = ACTIONS(8645), + [aux_sym_do_condition_token1] = ACTIONS(8645), + [aux_sym_with_statement_token1] = ACTIONS(8645), + [aux_sym_exit_statement_token1] = ACTIONS(8645), + [sym_end_statement] = ACTIONS(8647), + [aux_sym_on_goto_statement_token1] = ACTIONS(8645), + [aux_sym_on_goto_statement_token2] = ACTIONS(8645), + [aux_sym_on_error_statement_token2] = ACTIONS(8645), + [sym__ambiguous_redim_statement] = ACTIONS(8647), + [aux_sym_erase_statement_token1] = ACTIONS(8645), + [aux_sym_open_statement_token1] = ACTIONS(8645), + [aux_sym_file_mode_token2] = ACTIONS(8645), + [aux_sym_file_access_token2] = ACTIONS(8645), + [aux_sym_file_lock_token2] = ACTIONS(8645), + [aux_sym_print_statement_token1] = ACTIONS(8645), + [anon_sym_PLUS] = ACTIONS(8647), + [anon_sym_DASH] = ACTIONS(8645), + [anon_sym_QMARK] = ACTIONS(8647), + [aux_sym_close_statement_token1] = ACTIONS(8645), + [aux_sym_put_statement_token1] = ACTIONS(8645), + [aux_sym_unlock_statement_token1] = ACTIONS(8645), + [aux_sym_seek_statement_token1] = ACTIONS(8645), + [sym_reset_statement] = ACTIONS(8645), + [aux_sym_raise_event_statement_token1] = ACTIONS(8645), + [sym_stop_statement] = ACTIONS(8645), + [sym_beep_statement] = ACTIONS(8645), + [aux_sym_unload_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token2] = ACTIONS(8645), + [aux_sym_def_type_statement_token3] = ACTIONS(8645), + [aux_sym_def_type_statement_token4] = ACTIONS(8645), + [aux_sym_def_type_statement_token5] = ACTIONS(8645), + [aux_sym_def_type_statement_token6] = ACTIONS(8645), + [aux_sym_def_type_statement_token7] = ACTIONS(8645), + [aux_sym_def_type_statement_token8] = ACTIONS(8645), + [aux_sym_def_type_statement_token9] = ACTIONS(8645), + [aux_sym_def_type_statement_token10] = ACTIONS(8645), + [aux_sym_def_type_statement_token11] = ACTIONS(8645), + [aux_sym_def_type_statement_token12] = ACTIONS(8645), + [aux_sym_def_type_statement_token13] = ACTIONS(8645), + [aux_sym_def_type_statement_token14] = ACTIONS(8645), + [aux_sym_call_statement_token1] = ACTIONS(8645), + [sym__ambiguous_call_statement] = ACTIONS(8645), + [aux_sym_addressof_expression_token1] = ACTIONS(8645), + [aux_sym_type_of_expression_token1] = ACTIONS(8645), + [aux_sym_unary_expression_token1] = ACTIONS(8645), + [sym_string_literal] = ACTIONS(8647), + [sym_number_literal] = ACTIONS(8649), + [aux_sym_boolean_literal_token1] = ACTIONS(8645), + [aux_sym_boolean_literal_token2] = ACTIONS(8645), + [sym_nothing_literal] = ACTIONS(8645), + [sym_null_literal] = ACTIONS(8645), + [sym_empty_literal] = ACTIONS(8645), + [sym_date_literal] = ACTIONS(8647), + [anon_sym_POUND] = ACTIONS(8645), + }, + [STATE(6455)] = { + [sym_identifier] = ACTIONS(8749), + [sym_newline] = ACTIONS(8751), + [anon_sym_COLON] = ACTIONS(8753), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8749), + [aux_sym_frm_property_statement_token1] = ACTIONS(8749), + [anon_sym_DOT] = ACTIONS(8749), + [anon_sym_BANG] = ACTIONS(8751), + [aux_sym__attribute_identifier_token1] = ACTIONS(8749), + [aux_sym_option_statement_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8749), + [aux_sym_preprocessor_const_token1] = ACTIONS(8749), + [sym_static_modifier] = ACTIONS(8749), + [sym__dim_keyword] = ACTIONS(8749), + [sym__redim_keyword] = ACTIONS(8749), + [aux_sym_get_accessor_token1] = ACTIONS(8749), + [aux_sym_set_accessor_token1] = ACTIONS(8749), + [aux_sym_const_declaration_token1] = ACTIONS(8749), + [anon_sym_LPAREN] = ACTIONS(8751), + [aux_sym_as_type_clause_token2] = ACTIONS(8749), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8749), + [aux_sym_visibility_token1] = ACTIONS(8749), + [aux_sym_visibility_token2] = ACTIONS(8749), + [aux_sym_elseif_fragment_token1] = ACTIONS(8749), + [aux_sym_else_fragment_token1] = ACTIONS(8749), + [aux_sym_select_statement_token1] = ACTIONS(8749), + [aux_sym_select_statement_token2] = ACTIONS(8749), + [aux_sym__for_header_token1] = ACTIONS(8749), + [aux_sym_do_statement_token1] = ACTIONS(8749), + [aux_sym_do_condition_token1] = ACTIONS(8749), + [aux_sym_with_statement_token1] = ACTIONS(8749), + [aux_sym_exit_statement_token1] = ACTIONS(8749), + [sym_end_statement] = ACTIONS(8751), + [aux_sym_on_goto_statement_token1] = ACTIONS(8749), + [aux_sym_on_goto_statement_token2] = ACTIONS(8749), + [aux_sym_on_error_statement_token2] = ACTIONS(8749), + [sym__ambiguous_redim_statement] = ACTIONS(8751), + [aux_sym_erase_statement_token1] = ACTIONS(8749), + [aux_sym_open_statement_token1] = ACTIONS(8749), + [aux_sym_file_mode_token2] = ACTIONS(8749), + [aux_sym_file_access_token2] = ACTIONS(8749), + [aux_sym_file_lock_token2] = ACTIONS(8749), + [aux_sym_print_statement_token1] = ACTIONS(8749), + [anon_sym_PLUS] = ACTIONS(8751), + [anon_sym_DASH] = ACTIONS(8749), + [anon_sym_QMARK] = ACTIONS(8751), + [aux_sym_close_statement_token1] = ACTIONS(8749), + [aux_sym_put_statement_token1] = ACTIONS(8749), + [aux_sym_unlock_statement_token1] = ACTIONS(8749), + [aux_sym_seek_statement_token1] = ACTIONS(8749), + [sym_reset_statement] = ACTIONS(8749), + [aux_sym_raise_event_statement_token1] = ACTIONS(8749), + [sym_stop_statement] = ACTIONS(8749), + [sym_beep_statement] = ACTIONS(8749), + [aux_sym_unload_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token2] = ACTIONS(8749), + [aux_sym_def_type_statement_token3] = ACTIONS(8749), + [aux_sym_def_type_statement_token4] = ACTIONS(8749), + [aux_sym_def_type_statement_token5] = ACTIONS(8749), + [aux_sym_def_type_statement_token6] = ACTIONS(8749), + [aux_sym_def_type_statement_token7] = ACTIONS(8749), + [aux_sym_def_type_statement_token8] = ACTIONS(8749), + [aux_sym_def_type_statement_token9] = ACTIONS(8749), + [aux_sym_def_type_statement_token10] = ACTIONS(8749), + [aux_sym_def_type_statement_token11] = ACTIONS(8749), + [aux_sym_def_type_statement_token12] = ACTIONS(8749), + [aux_sym_def_type_statement_token13] = ACTIONS(8749), + [aux_sym_def_type_statement_token14] = ACTIONS(8749), + [aux_sym_call_statement_token1] = ACTIONS(8749), + [sym__ambiguous_call_statement] = ACTIONS(8749), + [aux_sym_addressof_expression_token1] = ACTIONS(8749), + [aux_sym_type_of_expression_token1] = ACTIONS(8749), + [aux_sym_unary_expression_token1] = ACTIONS(8749), + [sym_string_literal] = ACTIONS(8751), + [sym_number_literal] = ACTIONS(8753), + [aux_sym_boolean_literal_token1] = ACTIONS(8749), + [aux_sym_boolean_literal_token2] = ACTIONS(8749), + [sym_nothing_literal] = ACTIONS(8749), + [sym_null_literal] = ACTIONS(8749), + [sym_empty_literal] = ACTIONS(8749), + [sym_date_literal] = ACTIONS(8751), + [anon_sym_POUND] = ACTIONS(8749), + }, + [STATE(6456)] = { + [sym_identifier] = ACTIONS(9268), + [sym_newline] = ACTIONS(9270), + [anon_sym_COLON] = ACTIONS(9270), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9268), + [aux_sym_frm_property_statement_token1] = ACTIONS(9268), + [anon_sym_DOT] = ACTIONS(9268), + [anon_sym_BANG] = ACTIONS(9270), + [aux_sym__attribute_identifier_token1] = ACTIONS(9268), + [aux_sym_option_statement_token3] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9268), + [aux_sym_preprocessor_const_token1] = ACTIONS(9268), + [sym_static_modifier] = ACTIONS(9268), + [sym__dim_keyword] = ACTIONS(9268), + [sym__redim_keyword] = ACTIONS(9268), + [aux_sym_get_accessor_token1] = ACTIONS(9268), + [aux_sym_set_accessor_token1] = ACTIONS(9268), + [aux_sym_const_declaration_token1] = ACTIONS(9268), + [anon_sym_LPAREN] = ACTIONS(9270), + [aux_sym_as_type_clause_token2] = ACTIONS(9268), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9268), + [aux_sym_visibility_token1] = ACTIONS(9268), + [aux_sym_visibility_token2] = ACTIONS(9268), + [aux_sym_elseif_fragment_token1] = ACTIONS(9268), + [aux_sym_else_fragment_token1] = ACTIONS(9268), + [aux_sym_select_statement_token1] = ACTIONS(9268), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9268), + [aux_sym__for_header_token1] = ACTIONS(9268), + [aux_sym_do_statement_token1] = ACTIONS(9268), + [aux_sym_do_condition_token1] = ACTIONS(9268), + [aux_sym_with_statement_token1] = ACTIONS(9268), + [aux_sym_exit_statement_token1] = ACTIONS(9268), + [sym_end_statement] = ACTIONS(9270), + [aux_sym_on_goto_statement_token1] = ACTIONS(9268), + [aux_sym_on_goto_statement_token2] = ACTIONS(9268), + [aux_sym_on_error_statement_token2] = ACTIONS(9268), + [sym__ambiguous_redim_statement] = ACTIONS(9270), + [aux_sym_erase_statement_token1] = ACTIONS(9268), + [aux_sym_open_statement_token1] = ACTIONS(9268), + [aux_sym_file_mode_token2] = ACTIONS(9268), + [aux_sym_file_access_token2] = ACTIONS(9268), + [aux_sym_file_lock_token2] = ACTIONS(9268), + [aux_sym_print_statement_token1] = ACTIONS(9268), + [anon_sym_PLUS] = ACTIONS(9270), + [anon_sym_DASH] = ACTIONS(9268), + [anon_sym_QMARK] = ACTIONS(9270), + [aux_sym_close_statement_token1] = ACTIONS(9268), + [aux_sym_put_statement_token1] = ACTIONS(9268), + [aux_sym_unlock_statement_token1] = ACTIONS(9268), + [aux_sym_seek_statement_token1] = ACTIONS(9268), + [sym_reset_statement] = ACTIONS(9268), + [aux_sym_raise_event_statement_token1] = ACTIONS(9268), + [sym_stop_statement] = ACTIONS(9268), + [sym_beep_statement] = ACTIONS(9268), + [aux_sym_unload_statement_token1] = ACTIONS(9268), + [aux_sym_def_type_statement_token1] = ACTIONS(9268), + [aux_sym_def_type_statement_token2] = ACTIONS(9268), + [aux_sym_def_type_statement_token3] = ACTIONS(9268), + [aux_sym_def_type_statement_token4] = ACTIONS(9268), + [aux_sym_def_type_statement_token5] = ACTIONS(9268), + [aux_sym_def_type_statement_token6] = ACTIONS(9268), + [aux_sym_def_type_statement_token7] = ACTIONS(9268), + [aux_sym_def_type_statement_token8] = ACTIONS(9268), + [aux_sym_def_type_statement_token9] = ACTIONS(9268), + [aux_sym_def_type_statement_token10] = ACTIONS(9268), + [aux_sym_def_type_statement_token11] = ACTIONS(9268), + [aux_sym_def_type_statement_token12] = ACTIONS(9268), + [aux_sym_def_type_statement_token13] = ACTIONS(9268), + [aux_sym_def_type_statement_token14] = ACTIONS(9268), + [aux_sym_call_statement_token1] = ACTIONS(9268), + [sym__ambiguous_call_statement] = ACTIONS(9268), + [aux_sym_addressof_expression_token1] = ACTIONS(9268), + [aux_sym_type_of_expression_token1] = ACTIONS(9268), + [aux_sym_unary_expression_token1] = ACTIONS(9268), + [sym_string_literal] = ACTIONS(9270), + [sym_number_literal] = ACTIONS(9270), + [aux_sym_boolean_literal_token1] = ACTIONS(9268), + [aux_sym_boolean_literal_token2] = ACTIONS(9268), + [sym_nothing_literal] = ACTIONS(9268), + [sym_null_literal] = ACTIONS(9268), + [sym_empty_literal] = ACTIONS(9268), + [sym_date_literal] = ACTIONS(9270), + [anon_sym_POUND] = ACTIONS(9268), + }, + [STATE(6457)] = { + [sym_identifier] = ACTIONS(9272), + [sym_newline] = ACTIONS(9274), + [anon_sym_COLON] = ACTIONS(9274), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9272), + [aux_sym_frm_property_statement_token1] = ACTIONS(9272), + [anon_sym_DOT] = ACTIONS(9272), + [anon_sym_BANG] = ACTIONS(9274), + [aux_sym__attribute_identifier_token1] = ACTIONS(9272), + [aux_sym_option_statement_token3] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9272), + [aux_sym_preprocessor_const_token1] = ACTIONS(9272), + [sym_static_modifier] = ACTIONS(9272), + [sym__dim_keyword] = ACTIONS(9272), + [sym__redim_keyword] = ACTIONS(9272), + [aux_sym_get_accessor_token1] = ACTIONS(9272), + [aux_sym_set_accessor_token1] = ACTIONS(9272), + [aux_sym_const_declaration_token1] = ACTIONS(9272), + [anon_sym_LPAREN] = ACTIONS(9274), + [aux_sym_as_type_clause_token2] = ACTIONS(9272), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9272), + [aux_sym_visibility_token1] = ACTIONS(9272), + [aux_sym_visibility_token2] = ACTIONS(9272), + [aux_sym_elseif_fragment_token1] = ACTIONS(9272), + [aux_sym_else_fragment_token1] = ACTIONS(9272), + [aux_sym_select_statement_token1] = ACTIONS(9272), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9272), + [aux_sym__for_header_token1] = ACTIONS(9272), + [aux_sym_do_statement_token1] = ACTIONS(9272), + [aux_sym_do_condition_token1] = ACTIONS(9272), + [aux_sym_with_statement_token1] = ACTIONS(9272), + [aux_sym_exit_statement_token1] = ACTIONS(9272), + [sym_end_statement] = ACTIONS(9274), + [aux_sym_on_goto_statement_token1] = ACTIONS(9272), + [aux_sym_on_goto_statement_token2] = ACTIONS(9272), + [aux_sym_on_error_statement_token2] = ACTIONS(9272), + [sym__ambiguous_redim_statement] = ACTIONS(9274), + [aux_sym_erase_statement_token1] = ACTIONS(9272), + [aux_sym_open_statement_token1] = ACTIONS(9272), + [aux_sym_file_mode_token2] = ACTIONS(9272), + [aux_sym_file_access_token2] = ACTIONS(9272), + [aux_sym_file_lock_token2] = ACTIONS(9272), + [aux_sym_print_statement_token1] = ACTIONS(9272), + [anon_sym_PLUS] = ACTIONS(9274), + [anon_sym_DASH] = ACTIONS(9272), + [anon_sym_QMARK] = ACTIONS(9274), + [aux_sym_close_statement_token1] = ACTIONS(9272), + [aux_sym_put_statement_token1] = ACTIONS(9272), + [aux_sym_unlock_statement_token1] = ACTIONS(9272), + [aux_sym_seek_statement_token1] = ACTIONS(9272), + [sym_reset_statement] = ACTIONS(9272), + [aux_sym_raise_event_statement_token1] = ACTIONS(9272), + [sym_stop_statement] = ACTIONS(9272), + [sym_beep_statement] = ACTIONS(9272), + [aux_sym_unload_statement_token1] = ACTIONS(9272), + [aux_sym_def_type_statement_token1] = ACTIONS(9272), + [aux_sym_def_type_statement_token2] = ACTIONS(9272), + [aux_sym_def_type_statement_token3] = ACTIONS(9272), + [aux_sym_def_type_statement_token4] = ACTIONS(9272), + [aux_sym_def_type_statement_token5] = ACTIONS(9272), + [aux_sym_def_type_statement_token6] = ACTIONS(9272), + [aux_sym_def_type_statement_token7] = ACTIONS(9272), + [aux_sym_def_type_statement_token8] = ACTIONS(9272), + [aux_sym_def_type_statement_token9] = ACTIONS(9272), + [aux_sym_def_type_statement_token10] = ACTIONS(9272), + [aux_sym_def_type_statement_token11] = ACTIONS(9272), + [aux_sym_def_type_statement_token12] = ACTIONS(9272), + [aux_sym_def_type_statement_token13] = ACTIONS(9272), + [aux_sym_def_type_statement_token14] = ACTIONS(9272), + [aux_sym_call_statement_token1] = ACTIONS(9272), + [sym__ambiguous_call_statement] = ACTIONS(9272), + [aux_sym_addressof_expression_token1] = ACTIONS(9272), + [aux_sym_type_of_expression_token1] = ACTIONS(9272), + [aux_sym_unary_expression_token1] = ACTIONS(9272), + [sym_string_literal] = ACTIONS(9274), + [sym_number_literal] = ACTIONS(9274), + [aux_sym_boolean_literal_token1] = ACTIONS(9272), + [aux_sym_boolean_literal_token2] = ACTIONS(9272), + [sym_nothing_literal] = ACTIONS(9272), + [sym_null_literal] = ACTIONS(9272), + [sym_empty_literal] = ACTIONS(9272), + [sym_date_literal] = ACTIONS(9274), + [anon_sym_POUND] = ACTIONS(9272), + }, + [STATE(6458)] = { + [sym_identifier] = ACTIONS(9276), + [sym_newline] = ACTIONS(9278), + [anon_sym_COLON] = ACTIONS(9278), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9276), + [aux_sym_frm_property_statement_token1] = ACTIONS(9276), + [anon_sym_DOT] = ACTIONS(9276), + [anon_sym_BANG] = ACTIONS(9278), + [aux_sym__attribute_identifier_token1] = ACTIONS(9276), + [aux_sym_option_statement_token3] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9276), + [aux_sym_preprocessor_const_token1] = ACTIONS(9276), + [sym_static_modifier] = ACTIONS(9276), + [sym__dim_keyword] = ACTIONS(9276), + [sym__redim_keyword] = ACTIONS(9276), + [aux_sym_get_accessor_token1] = ACTIONS(9276), + [aux_sym_set_accessor_token1] = ACTIONS(9276), + [aux_sym_const_declaration_token1] = ACTIONS(9276), + [anon_sym_LPAREN] = ACTIONS(9278), + [aux_sym_as_type_clause_token2] = ACTIONS(9276), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9276), + [aux_sym_visibility_token1] = ACTIONS(9276), + [aux_sym_visibility_token2] = ACTIONS(9276), + [aux_sym_elseif_fragment_token1] = ACTIONS(9276), + [aux_sym_else_fragment_token1] = ACTIONS(9276), + [aux_sym_select_statement_token1] = ACTIONS(9276), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9276), + [aux_sym__for_header_token1] = ACTIONS(9276), + [aux_sym_do_statement_token1] = ACTIONS(9276), + [aux_sym_do_condition_token1] = ACTIONS(9276), + [aux_sym_with_statement_token1] = ACTIONS(9276), + [aux_sym_exit_statement_token1] = ACTIONS(9276), + [sym_end_statement] = ACTIONS(9278), + [aux_sym_on_goto_statement_token1] = ACTIONS(9276), + [aux_sym_on_goto_statement_token2] = ACTIONS(9276), + [aux_sym_on_error_statement_token2] = ACTIONS(9276), + [sym__ambiguous_redim_statement] = ACTIONS(9278), + [aux_sym_erase_statement_token1] = ACTIONS(9276), + [aux_sym_open_statement_token1] = ACTIONS(9276), + [aux_sym_file_mode_token2] = ACTIONS(9276), + [aux_sym_file_access_token2] = ACTIONS(9276), + [aux_sym_file_lock_token2] = ACTIONS(9276), + [aux_sym_print_statement_token1] = ACTIONS(9276), + [anon_sym_PLUS] = ACTIONS(9278), + [anon_sym_DASH] = ACTIONS(9276), + [anon_sym_QMARK] = ACTIONS(9278), + [aux_sym_close_statement_token1] = ACTIONS(9276), + [aux_sym_put_statement_token1] = ACTIONS(9276), + [aux_sym_unlock_statement_token1] = ACTIONS(9276), + [aux_sym_seek_statement_token1] = ACTIONS(9276), + [sym_reset_statement] = ACTIONS(9276), + [aux_sym_raise_event_statement_token1] = ACTIONS(9276), + [sym_stop_statement] = ACTIONS(9276), + [sym_beep_statement] = ACTIONS(9276), + [aux_sym_unload_statement_token1] = ACTIONS(9276), + [aux_sym_def_type_statement_token1] = ACTIONS(9276), + [aux_sym_def_type_statement_token2] = ACTIONS(9276), + [aux_sym_def_type_statement_token3] = ACTIONS(9276), + [aux_sym_def_type_statement_token4] = ACTIONS(9276), + [aux_sym_def_type_statement_token5] = ACTIONS(9276), + [aux_sym_def_type_statement_token6] = ACTIONS(9276), + [aux_sym_def_type_statement_token7] = ACTIONS(9276), + [aux_sym_def_type_statement_token8] = ACTIONS(9276), + [aux_sym_def_type_statement_token9] = ACTIONS(9276), + [aux_sym_def_type_statement_token10] = ACTIONS(9276), + [aux_sym_def_type_statement_token11] = ACTIONS(9276), + [aux_sym_def_type_statement_token12] = ACTIONS(9276), + [aux_sym_def_type_statement_token13] = ACTIONS(9276), + [aux_sym_def_type_statement_token14] = ACTIONS(9276), + [aux_sym_call_statement_token1] = ACTIONS(9276), + [sym__ambiguous_call_statement] = ACTIONS(9276), + [aux_sym_addressof_expression_token1] = ACTIONS(9276), + [aux_sym_type_of_expression_token1] = ACTIONS(9276), + [aux_sym_unary_expression_token1] = ACTIONS(9276), + [sym_string_literal] = ACTIONS(9278), + [sym_number_literal] = ACTIONS(9278), + [aux_sym_boolean_literal_token1] = ACTIONS(9276), + [aux_sym_boolean_literal_token2] = ACTIONS(9276), + [sym_nothing_literal] = ACTIONS(9276), + [sym_null_literal] = ACTIONS(9276), + [sym_empty_literal] = ACTIONS(9276), + [sym_date_literal] = ACTIONS(9278), + [anon_sym_POUND] = ACTIONS(9276), + }, + [STATE(6459)] = { + [sym_identifier] = ACTIONS(9654), + [sym_newline] = ACTIONS(9656), + [anon_sym_COLON] = ACTIONS(9656), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9654), + [aux_sym_frm_property_statement_token1] = ACTIONS(9654), + [anon_sym_DOT] = ACTIONS(9654), + [anon_sym_BANG] = ACTIONS(9656), + [aux_sym__attribute_identifier_token1] = ACTIONS(9654), + [aux_sym_option_statement_token3] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9654), + [aux_sym_preprocessor_const_token1] = ACTIONS(9654), + [sym_static_modifier] = ACTIONS(9654), + [sym__dim_keyword] = ACTIONS(9654), + [sym__redim_keyword] = ACTIONS(9654), + [aux_sym_get_accessor_token1] = ACTIONS(9654), + [aux_sym_set_accessor_token1] = ACTIONS(9654), + [aux_sym_const_declaration_token1] = ACTIONS(9654), + [anon_sym_LPAREN] = ACTIONS(9656), + [aux_sym_as_type_clause_token2] = ACTIONS(9654), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9654), + [aux_sym_visibility_token1] = ACTIONS(9654), + [aux_sym_visibility_token2] = ACTIONS(9654), + [aux_sym_elseif_fragment_token1] = ACTIONS(9654), + [aux_sym_else_fragment_token1] = ACTIONS(9654), + [aux_sym_select_statement_token1] = ACTIONS(9654), + [aux_sym__for_header_token1] = ACTIONS(9654), + [aux_sym_do_statement_token1] = ACTIONS(9654), + [aux_sym_do_statement_token2] = ACTIONS(9654), + [aux_sym_do_condition_token1] = ACTIONS(9654), + [aux_sym_with_statement_token1] = ACTIONS(9654), + [aux_sym_exit_statement_token1] = ACTIONS(9654), + [sym_end_statement] = ACTIONS(9656), + [aux_sym_on_goto_statement_token1] = ACTIONS(9654), + [aux_sym_on_goto_statement_token2] = ACTIONS(9654), + [aux_sym_on_error_statement_token2] = ACTIONS(9654), + [sym__ambiguous_redim_statement] = ACTIONS(9656), + [aux_sym_erase_statement_token1] = ACTIONS(9654), + [aux_sym_open_statement_token1] = ACTIONS(9654), + [aux_sym_file_mode_token2] = ACTIONS(9654), + [aux_sym_file_access_token2] = ACTIONS(9654), + [aux_sym_file_lock_token2] = ACTIONS(9654), + [aux_sym_print_statement_token1] = ACTIONS(9654), + [anon_sym_PLUS] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(9654), + [anon_sym_QMARK] = ACTIONS(9656), + [aux_sym_close_statement_token1] = ACTIONS(9654), + [aux_sym_put_statement_token1] = ACTIONS(9654), + [aux_sym_unlock_statement_token1] = ACTIONS(9654), + [aux_sym_seek_statement_token1] = ACTIONS(9654), + [sym_reset_statement] = ACTIONS(9654), + [aux_sym_raise_event_statement_token1] = ACTIONS(9654), + [sym_stop_statement] = ACTIONS(9654), + [sym_beep_statement] = ACTIONS(9654), + [aux_sym_unload_statement_token1] = ACTIONS(9654), + [aux_sym_def_type_statement_token1] = ACTIONS(9654), + [aux_sym_def_type_statement_token2] = ACTIONS(9654), + [aux_sym_def_type_statement_token3] = ACTIONS(9654), + [aux_sym_def_type_statement_token4] = ACTIONS(9654), + [aux_sym_def_type_statement_token5] = ACTIONS(9654), + [aux_sym_def_type_statement_token6] = ACTIONS(9654), + [aux_sym_def_type_statement_token7] = ACTIONS(9654), + [aux_sym_def_type_statement_token8] = ACTIONS(9654), + [aux_sym_def_type_statement_token9] = ACTIONS(9654), + [aux_sym_def_type_statement_token10] = ACTIONS(9654), + [aux_sym_def_type_statement_token11] = ACTIONS(9654), + [aux_sym_def_type_statement_token12] = ACTIONS(9654), + [aux_sym_def_type_statement_token13] = ACTIONS(9654), + [aux_sym_def_type_statement_token14] = ACTIONS(9654), + [aux_sym_call_statement_token1] = ACTIONS(9654), + [sym__ambiguous_call_statement] = ACTIONS(9654), + [aux_sym_addressof_expression_token1] = ACTIONS(9654), + [aux_sym_type_of_expression_token1] = ACTIONS(9654), + [aux_sym_unary_expression_token1] = ACTIONS(9654), + [sym_string_literal] = ACTIONS(9656), + [sym_number_literal] = ACTIONS(9656), + [aux_sym_boolean_literal_token1] = ACTIONS(9654), + [aux_sym_boolean_literal_token2] = ACTIONS(9654), + [sym_nothing_literal] = ACTIONS(9654), + [sym_null_literal] = ACTIONS(9654), + [sym_empty_literal] = ACTIONS(9654), + [sym_date_literal] = ACTIONS(9656), + [anon_sym_POUND] = ACTIONS(9654), + }, + [STATE(6460)] = { + [sym_identifier] = ACTIONS(8881), + [sym_newline] = ACTIONS(8884), + [anon_sym_COLON] = ACTIONS(8884), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8881), + [aux_sym_frm_property_statement_token1] = ACTIONS(8881), + [anon_sym_DOT] = ACTIONS(8881), + [anon_sym_BANG] = ACTIONS(8884), + [aux_sym__attribute_identifier_token1] = ACTIONS(8881), + [aux_sym_option_statement_token3] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8881), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8881), + [aux_sym_preprocessor_const_token1] = ACTIONS(8881), + [sym_static_modifier] = ACTIONS(8881), + [sym__dim_keyword] = ACTIONS(8881), + [sym__redim_keyword] = ACTIONS(8881), + [aux_sym_get_accessor_token1] = ACTIONS(8881), + [aux_sym_set_accessor_token1] = ACTIONS(8881), + [aux_sym_const_declaration_token1] = ACTIONS(8881), + [anon_sym_LPAREN] = ACTIONS(8884), + [aux_sym_as_type_clause_token2] = ACTIONS(8881), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8881), + [aux_sym_visibility_token1] = ACTIONS(8881), + [aux_sym_visibility_token2] = ACTIONS(8881), + [aux_sym_elseif_fragment_token1] = ACTIONS(8881), + [aux_sym_else_fragment_token1] = ACTIONS(8881), + [aux_sym_select_statement_token1] = ACTIONS(8881), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8881), + [aux_sym__for_header_token1] = ACTIONS(8881), + [aux_sym_do_statement_token1] = ACTIONS(8881), + [aux_sym_do_condition_token1] = ACTIONS(8881), + [aux_sym_with_statement_token1] = ACTIONS(8881), + [aux_sym_exit_statement_token1] = ACTIONS(8881), + [sym_end_statement] = ACTIONS(8884), + [aux_sym_on_goto_statement_token1] = ACTIONS(8881), + [aux_sym_on_goto_statement_token2] = ACTIONS(8881), + [aux_sym_on_error_statement_token2] = ACTIONS(8881), + [sym__ambiguous_redim_statement] = ACTIONS(8884), + [aux_sym_erase_statement_token1] = ACTIONS(8881), + [aux_sym_open_statement_token1] = ACTIONS(8881), + [aux_sym_file_mode_token2] = ACTIONS(8881), + [aux_sym_file_access_token2] = ACTIONS(8881), + [aux_sym_file_lock_token2] = ACTIONS(8881), + [aux_sym_print_statement_token1] = ACTIONS(8881), + [anon_sym_PLUS] = ACTIONS(8884), + [anon_sym_DASH] = ACTIONS(8881), + [anon_sym_QMARK] = ACTIONS(8884), + [aux_sym_close_statement_token1] = ACTIONS(8881), + [aux_sym_put_statement_token1] = ACTIONS(8881), + [aux_sym_unlock_statement_token1] = ACTIONS(8881), + [aux_sym_seek_statement_token1] = ACTIONS(8881), + [sym_reset_statement] = ACTIONS(8881), + [aux_sym_raise_event_statement_token1] = ACTIONS(8881), + [sym_stop_statement] = ACTIONS(8881), + [sym_beep_statement] = ACTIONS(8881), + [aux_sym_unload_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token1] = ACTIONS(8881), + [aux_sym_def_type_statement_token2] = ACTIONS(8881), + [aux_sym_def_type_statement_token3] = ACTIONS(8881), + [aux_sym_def_type_statement_token4] = ACTIONS(8881), + [aux_sym_def_type_statement_token5] = ACTIONS(8881), + [aux_sym_def_type_statement_token6] = ACTIONS(8881), + [aux_sym_def_type_statement_token7] = ACTIONS(8881), + [aux_sym_def_type_statement_token8] = ACTIONS(8881), + [aux_sym_def_type_statement_token9] = ACTIONS(8881), + [aux_sym_def_type_statement_token10] = ACTIONS(8881), + [aux_sym_def_type_statement_token11] = ACTIONS(8881), + [aux_sym_def_type_statement_token12] = ACTIONS(8881), + [aux_sym_def_type_statement_token13] = ACTIONS(8881), + [aux_sym_def_type_statement_token14] = ACTIONS(8881), + [aux_sym_call_statement_token1] = ACTIONS(8881), + [sym__ambiguous_call_statement] = ACTIONS(8881), + [aux_sym_addressof_expression_token1] = ACTIONS(8881), + [aux_sym_type_of_expression_token1] = ACTIONS(8881), + [aux_sym_unary_expression_token1] = ACTIONS(8881), + [sym_string_literal] = ACTIONS(8884), + [sym_number_literal] = ACTIONS(8884), + [aux_sym_boolean_literal_token1] = ACTIONS(8881), + [aux_sym_boolean_literal_token2] = ACTIONS(8881), + [sym_nothing_literal] = ACTIONS(8881), + [sym_null_literal] = ACTIONS(8881), + [sym_empty_literal] = ACTIONS(8881), + [sym_date_literal] = ACTIONS(8884), + [anon_sym_POUND] = ACTIONS(8881), + }, + [STATE(6461)] = { + [sym_identifier] = ACTIONS(8915), + [sym_newline] = ACTIONS(8918), + [anon_sym_COLON] = ACTIONS(8918), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8915), + [aux_sym_frm_property_statement_token1] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8915), + [anon_sym_BANG] = ACTIONS(8918), + [aux_sym__attribute_identifier_token1] = ACTIONS(8915), + [aux_sym_option_statement_token3] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8915), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8915), + [aux_sym_preprocessor_const_token1] = ACTIONS(8915), + [sym_static_modifier] = ACTIONS(8915), + [sym__dim_keyword] = ACTIONS(8915), + [sym__redim_keyword] = ACTIONS(8915), + [aux_sym_get_accessor_token1] = ACTIONS(8915), + [aux_sym_set_accessor_token1] = ACTIONS(8915), + [aux_sym_const_declaration_token1] = ACTIONS(8915), + [anon_sym_LPAREN] = ACTIONS(8918), + [aux_sym_as_type_clause_token2] = ACTIONS(8915), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8915), + [aux_sym_visibility_token1] = ACTIONS(8915), + [aux_sym_visibility_token2] = ACTIONS(8915), + [aux_sym_elseif_fragment_token1] = ACTIONS(8915), + [aux_sym_else_fragment_token1] = ACTIONS(8915), + [aux_sym_select_statement_token1] = ACTIONS(8915), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8915), + [aux_sym__for_header_token1] = ACTIONS(8915), + [aux_sym_do_statement_token1] = ACTIONS(8915), + [aux_sym_do_condition_token1] = ACTIONS(8915), + [aux_sym_with_statement_token1] = ACTIONS(8915), + [aux_sym_exit_statement_token1] = ACTIONS(8915), + [sym_end_statement] = ACTIONS(8918), + [aux_sym_on_goto_statement_token1] = ACTIONS(8915), + [aux_sym_on_goto_statement_token2] = ACTIONS(8915), + [aux_sym_on_error_statement_token2] = ACTIONS(8915), + [sym__ambiguous_redim_statement] = ACTIONS(8918), + [aux_sym_erase_statement_token1] = ACTIONS(8915), + [aux_sym_open_statement_token1] = ACTIONS(8915), + [aux_sym_file_mode_token2] = ACTIONS(8915), + [aux_sym_file_access_token2] = ACTIONS(8915), + [aux_sym_file_lock_token2] = ACTIONS(8915), + [aux_sym_print_statement_token1] = ACTIONS(8915), + [anon_sym_PLUS] = ACTIONS(8918), + [anon_sym_DASH] = ACTIONS(8915), + [anon_sym_QMARK] = ACTIONS(8918), + [aux_sym_close_statement_token1] = ACTIONS(8915), + [aux_sym_put_statement_token1] = ACTIONS(8915), + [aux_sym_unlock_statement_token1] = ACTIONS(8915), + [aux_sym_seek_statement_token1] = ACTIONS(8915), + [sym_reset_statement] = ACTIONS(8915), + [aux_sym_raise_event_statement_token1] = ACTIONS(8915), + [sym_stop_statement] = ACTIONS(8915), + [sym_beep_statement] = ACTIONS(8915), + [aux_sym_unload_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token1] = ACTIONS(8915), + [aux_sym_def_type_statement_token2] = ACTIONS(8915), + [aux_sym_def_type_statement_token3] = ACTIONS(8915), + [aux_sym_def_type_statement_token4] = ACTIONS(8915), + [aux_sym_def_type_statement_token5] = ACTIONS(8915), + [aux_sym_def_type_statement_token6] = ACTIONS(8915), + [aux_sym_def_type_statement_token7] = ACTIONS(8915), + [aux_sym_def_type_statement_token8] = ACTIONS(8915), + [aux_sym_def_type_statement_token9] = ACTIONS(8915), + [aux_sym_def_type_statement_token10] = ACTIONS(8915), + [aux_sym_def_type_statement_token11] = ACTIONS(8915), + [aux_sym_def_type_statement_token12] = ACTIONS(8915), + [aux_sym_def_type_statement_token13] = ACTIONS(8915), + [aux_sym_def_type_statement_token14] = ACTIONS(8915), + [aux_sym_call_statement_token1] = ACTIONS(8915), + [sym__ambiguous_call_statement] = ACTIONS(8915), + [aux_sym_addressof_expression_token1] = ACTIONS(8915), + [aux_sym_type_of_expression_token1] = ACTIONS(8915), + [aux_sym_unary_expression_token1] = ACTIONS(8915), + [sym_string_literal] = ACTIONS(8918), + [sym_number_literal] = ACTIONS(8918), + [aux_sym_boolean_literal_token1] = ACTIONS(8915), + [aux_sym_boolean_literal_token2] = ACTIONS(8915), + [sym_nothing_literal] = ACTIONS(8915), + [sym_null_literal] = ACTIONS(8915), + [sym_empty_literal] = ACTIONS(8915), + [sym_date_literal] = ACTIONS(8918), + [anon_sym_POUND] = ACTIONS(8915), + }, + [STATE(6462)] = { + [sym_identifier] = ACTIONS(8756), + [sym_newline] = ACTIONS(8759), + [anon_sym_COLON] = ACTIONS(8759), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8756), + [aux_sym_frm_property_statement_token1] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8756), + [anon_sym_BANG] = ACTIONS(8759), + [aux_sym__attribute_identifier_token1] = ACTIONS(8756), + [aux_sym_option_statement_token3] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8756), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8756), + [aux_sym_preprocessor_const_token1] = ACTIONS(8756), + [sym_static_modifier] = ACTIONS(8756), + [sym__dim_keyword] = ACTIONS(8756), + [sym__redim_keyword] = ACTIONS(8756), + [aux_sym_get_accessor_token1] = ACTIONS(8756), + [aux_sym_set_accessor_token1] = ACTIONS(8756), + [aux_sym_const_declaration_token1] = ACTIONS(8756), + [anon_sym_LPAREN] = ACTIONS(8759), + [aux_sym_as_type_clause_token2] = ACTIONS(8756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8756), + [aux_sym_visibility_token1] = ACTIONS(8756), + [aux_sym_visibility_token2] = ACTIONS(8756), + [aux_sym_elseif_fragment_token1] = ACTIONS(8756), + [aux_sym_else_fragment_token1] = ACTIONS(8756), + [aux_sym_select_statement_token1] = ACTIONS(8756), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8756), + [aux_sym__for_header_token1] = ACTIONS(8756), + [aux_sym_do_statement_token1] = ACTIONS(8756), + [aux_sym_do_condition_token1] = ACTIONS(8756), + [aux_sym_with_statement_token1] = ACTIONS(8756), + [aux_sym_exit_statement_token1] = ACTIONS(8756), + [sym_end_statement] = ACTIONS(8759), + [aux_sym_on_goto_statement_token1] = ACTIONS(8756), + [aux_sym_on_goto_statement_token2] = ACTIONS(8756), + [aux_sym_on_error_statement_token2] = ACTIONS(8756), + [sym__ambiguous_redim_statement] = ACTIONS(8759), + [aux_sym_erase_statement_token1] = ACTIONS(8756), + [aux_sym_open_statement_token1] = ACTIONS(8756), + [aux_sym_file_mode_token2] = ACTIONS(8756), + [aux_sym_file_access_token2] = ACTIONS(8756), + [aux_sym_file_lock_token2] = ACTIONS(8756), + [aux_sym_print_statement_token1] = ACTIONS(8756), + [anon_sym_PLUS] = ACTIONS(8759), + [anon_sym_DASH] = ACTIONS(8756), + [anon_sym_QMARK] = ACTIONS(8759), + [aux_sym_close_statement_token1] = ACTIONS(8756), + [aux_sym_put_statement_token1] = ACTIONS(8756), + [aux_sym_unlock_statement_token1] = ACTIONS(8756), + [aux_sym_seek_statement_token1] = ACTIONS(8756), + [sym_reset_statement] = ACTIONS(8756), + [aux_sym_raise_event_statement_token1] = ACTIONS(8756), + [sym_stop_statement] = ACTIONS(8756), + [sym_beep_statement] = ACTIONS(8756), + [aux_sym_unload_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token1] = ACTIONS(8756), + [aux_sym_def_type_statement_token2] = ACTIONS(8756), + [aux_sym_def_type_statement_token3] = ACTIONS(8756), + [aux_sym_def_type_statement_token4] = ACTIONS(8756), + [aux_sym_def_type_statement_token5] = ACTIONS(8756), + [aux_sym_def_type_statement_token6] = ACTIONS(8756), + [aux_sym_def_type_statement_token7] = ACTIONS(8756), + [aux_sym_def_type_statement_token8] = ACTIONS(8756), + [aux_sym_def_type_statement_token9] = ACTIONS(8756), + [aux_sym_def_type_statement_token10] = ACTIONS(8756), + [aux_sym_def_type_statement_token11] = ACTIONS(8756), + [aux_sym_def_type_statement_token12] = ACTIONS(8756), + [aux_sym_def_type_statement_token13] = ACTIONS(8756), + [aux_sym_def_type_statement_token14] = ACTIONS(8756), + [aux_sym_call_statement_token1] = ACTIONS(8756), + [sym__ambiguous_call_statement] = ACTIONS(8756), + [aux_sym_addressof_expression_token1] = ACTIONS(8756), + [aux_sym_type_of_expression_token1] = ACTIONS(8756), + [aux_sym_unary_expression_token1] = ACTIONS(8756), + [sym_string_literal] = ACTIONS(8759), + [sym_number_literal] = ACTIONS(8759), + [aux_sym_boolean_literal_token1] = ACTIONS(8756), + [aux_sym_boolean_literal_token2] = ACTIONS(8756), + [sym_nothing_literal] = ACTIONS(8756), + [sym_null_literal] = ACTIONS(8756), + [sym_empty_literal] = ACTIONS(8756), + [sym_date_literal] = ACTIONS(8759), + [anon_sym_POUND] = ACTIONS(8756), + }, + [STATE(6463)] = { + [sym_identifier] = ACTIONS(9264), + [sym_newline] = ACTIONS(9266), + [anon_sym_COLON] = ACTIONS(9266), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9264), + [aux_sym_frm_property_statement_token1] = ACTIONS(9264), + [anon_sym_DOT] = ACTIONS(9264), + [anon_sym_BANG] = ACTIONS(9266), + [aux_sym__attribute_identifier_token1] = ACTIONS(9264), + [aux_sym_option_statement_token3] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9264), + [aux_sym_preprocessor_const_token1] = ACTIONS(9264), + [sym_static_modifier] = ACTIONS(9264), + [sym__dim_keyword] = ACTIONS(9264), + [sym__redim_keyword] = ACTIONS(9264), + [aux_sym_get_accessor_token1] = ACTIONS(9264), + [aux_sym_set_accessor_token1] = ACTIONS(9264), + [aux_sym_const_declaration_token1] = ACTIONS(9264), + [anon_sym_LPAREN] = ACTIONS(9266), + [aux_sym_as_type_clause_token2] = ACTIONS(9264), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9264), + [aux_sym_visibility_token1] = ACTIONS(9264), + [aux_sym_visibility_token2] = ACTIONS(9264), + [aux_sym_elseif_fragment_token1] = ACTIONS(9264), + [aux_sym_else_fragment_token1] = ACTIONS(9264), + [aux_sym_select_statement_token1] = ACTIONS(9264), + [aux_sym__for_header_token1] = ACTIONS(9264), + [aux_sym_do_statement_token1] = ACTIONS(9264), + [aux_sym_do_statement_token2] = ACTIONS(9264), + [aux_sym_do_condition_token1] = ACTIONS(9264), + [aux_sym_with_statement_token1] = ACTIONS(9264), + [aux_sym_exit_statement_token1] = ACTIONS(9264), + [sym_end_statement] = ACTIONS(9266), + [aux_sym_on_goto_statement_token1] = ACTIONS(9264), + [aux_sym_on_goto_statement_token2] = ACTIONS(9264), + [aux_sym_on_error_statement_token2] = ACTIONS(9264), + [sym__ambiguous_redim_statement] = ACTIONS(9266), + [aux_sym_erase_statement_token1] = ACTIONS(9264), + [aux_sym_open_statement_token1] = ACTIONS(9264), + [aux_sym_file_mode_token2] = ACTIONS(9264), + [aux_sym_file_access_token2] = ACTIONS(9264), + [aux_sym_file_lock_token2] = ACTIONS(9264), + [aux_sym_print_statement_token1] = ACTIONS(9264), + [anon_sym_PLUS] = ACTIONS(9266), + [anon_sym_DASH] = ACTIONS(9264), + [anon_sym_QMARK] = ACTIONS(9266), + [aux_sym_close_statement_token1] = ACTIONS(9264), + [aux_sym_put_statement_token1] = ACTIONS(9264), + [aux_sym_unlock_statement_token1] = ACTIONS(9264), + [aux_sym_seek_statement_token1] = ACTIONS(9264), + [sym_reset_statement] = ACTIONS(9264), + [aux_sym_raise_event_statement_token1] = ACTIONS(9264), + [sym_stop_statement] = ACTIONS(9264), + [sym_beep_statement] = ACTIONS(9264), + [aux_sym_unload_statement_token1] = ACTIONS(9264), + [aux_sym_def_type_statement_token1] = ACTIONS(9264), + [aux_sym_def_type_statement_token2] = ACTIONS(9264), + [aux_sym_def_type_statement_token3] = ACTIONS(9264), + [aux_sym_def_type_statement_token4] = ACTIONS(9264), + [aux_sym_def_type_statement_token5] = ACTIONS(9264), + [aux_sym_def_type_statement_token6] = ACTIONS(9264), + [aux_sym_def_type_statement_token7] = ACTIONS(9264), + [aux_sym_def_type_statement_token8] = ACTIONS(9264), + [aux_sym_def_type_statement_token9] = ACTIONS(9264), + [aux_sym_def_type_statement_token10] = ACTIONS(9264), + [aux_sym_def_type_statement_token11] = ACTIONS(9264), + [aux_sym_def_type_statement_token12] = ACTIONS(9264), + [aux_sym_def_type_statement_token13] = ACTIONS(9264), + [aux_sym_def_type_statement_token14] = ACTIONS(9264), + [aux_sym_call_statement_token1] = ACTIONS(9264), + [sym__ambiguous_call_statement] = ACTIONS(9264), + [aux_sym_addressof_expression_token1] = ACTIONS(9264), + [aux_sym_type_of_expression_token1] = ACTIONS(9264), + [aux_sym_unary_expression_token1] = ACTIONS(9264), + [sym_string_literal] = ACTIONS(9266), + [sym_number_literal] = ACTIONS(9266), + [aux_sym_boolean_literal_token1] = ACTIONS(9264), + [aux_sym_boolean_literal_token2] = ACTIONS(9264), + [sym_nothing_literal] = ACTIONS(9264), + [sym_null_literal] = ACTIONS(9264), + [sym_empty_literal] = ACTIONS(9264), + [sym_date_literal] = ACTIONS(9266), + [anon_sym_POUND] = ACTIONS(9264), + }, + [STATE(6464)] = { + [sym_identifier] = ACTIONS(8951), + [sym_newline] = ACTIONS(8953), + [anon_sym_COLON] = ACTIONS(8955), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8951), + [aux_sym_frm_property_statement_token1] = ACTIONS(8951), + [anon_sym_DOT] = ACTIONS(8951), + [anon_sym_BANG] = ACTIONS(8953), + [aux_sym__attribute_identifier_token1] = ACTIONS(8951), + [aux_sym_option_statement_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8951), + [aux_sym_preprocessor_const_token1] = ACTIONS(8951), + [sym_static_modifier] = ACTIONS(8951), + [sym__dim_keyword] = ACTIONS(8951), + [sym__redim_keyword] = ACTIONS(8951), + [aux_sym_get_accessor_token1] = ACTIONS(8951), + [aux_sym_set_accessor_token1] = ACTIONS(8951), + [aux_sym_const_declaration_token1] = ACTIONS(8951), + [anon_sym_LPAREN] = ACTIONS(8953), + [aux_sym_as_type_clause_token2] = ACTIONS(8951), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8951), + [aux_sym_visibility_token1] = ACTIONS(8951), + [aux_sym_visibility_token2] = ACTIONS(8951), + [aux_sym_elseif_fragment_token1] = ACTIONS(8951), + [aux_sym_else_fragment_token1] = ACTIONS(8951), + [aux_sym_select_statement_token1] = ACTIONS(8951), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8951), + [aux_sym__for_header_token1] = ACTIONS(8951), + [aux_sym_do_statement_token1] = ACTIONS(8951), + [aux_sym_do_condition_token1] = ACTIONS(8951), + [aux_sym_with_statement_token1] = ACTIONS(8951), + [aux_sym_exit_statement_token1] = ACTIONS(8951), + [sym_end_statement] = ACTIONS(8953), + [aux_sym_on_goto_statement_token1] = ACTIONS(8951), + [aux_sym_on_goto_statement_token2] = ACTIONS(8951), + [aux_sym_on_error_statement_token2] = ACTIONS(8951), + [sym__ambiguous_redim_statement] = ACTIONS(8953), + [aux_sym_erase_statement_token1] = ACTIONS(8951), + [aux_sym_open_statement_token1] = ACTIONS(8951), + [aux_sym_file_mode_token2] = ACTIONS(8951), + [aux_sym_file_access_token2] = ACTIONS(8951), + [aux_sym_file_lock_token2] = ACTIONS(8951), + [aux_sym_print_statement_token1] = ACTIONS(8951), + [anon_sym_PLUS] = ACTIONS(8953), + [anon_sym_DASH] = ACTIONS(8951), + [anon_sym_QMARK] = ACTIONS(8953), + [aux_sym_close_statement_token1] = ACTIONS(8951), + [aux_sym_put_statement_token1] = ACTIONS(8951), + [aux_sym_unlock_statement_token1] = ACTIONS(8951), + [aux_sym_seek_statement_token1] = ACTIONS(8951), + [sym_reset_statement] = ACTIONS(8951), + [aux_sym_raise_event_statement_token1] = ACTIONS(8951), + [sym_stop_statement] = ACTIONS(8951), + [sym_beep_statement] = ACTIONS(8951), + [aux_sym_unload_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token2] = ACTIONS(8951), + [aux_sym_def_type_statement_token3] = ACTIONS(8951), + [aux_sym_def_type_statement_token4] = ACTIONS(8951), + [aux_sym_def_type_statement_token5] = ACTIONS(8951), + [aux_sym_def_type_statement_token6] = ACTIONS(8951), + [aux_sym_def_type_statement_token7] = ACTIONS(8951), + [aux_sym_def_type_statement_token8] = ACTIONS(8951), + [aux_sym_def_type_statement_token9] = ACTIONS(8951), + [aux_sym_def_type_statement_token10] = ACTIONS(8951), + [aux_sym_def_type_statement_token11] = ACTIONS(8951), + [aux_sym_def_type_statement_token12] = ACTIONS(8951), + [aux_sym_def_type_statement_token13] = ACTIONS(8951), + [aux_sym_def_type_statement_token14] = ACTIONS(8951), + [aux_sym_call_statement_token1] = ACTIONS(8951), + [sym__ambiguous_call_statement] = ACTIONS(8951), + [aux_sym_addressof_expression_token1] = ACTIONS(8951), + [aux_sym_type_of_expression_token1] = ACTIONS(8951), + [aux_sym_unary_expression_token1] = ACTIONS(8951), + [sym_string_literal] = ACTIONS(8953), + [sym_number_literal] = ACTIONS(8955), + [aux_sym_boolean_literal_token1] = ACTIONS(8951), + [aux_sym_boolean_literal_token2] = ACTIONS(8951), + [sym_nothing_literal] = ACTIONS(8951), + [sym_null_literal] = ACTIONS(8951), + [sym_empty_literal] = ACTIONS(8951), + [sym_date_literal] = ACTIONS(8953), + [anon_sym_POUND] = ACTIONS(8951), + }, + [STATE(6465)] = { + [sym_identifier] = ACTIONS(9106), + [sym_newline] = ACTIONS(9108), + [anon_sym_COLON] = ACTIONS(9108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9106), + [aux_sym_frm_property_statement_token1] = ACTIONS(9106), + [anon_sym_DOT] = ACTIONS(9106), + [anon_sym_BANG] = ACTIONS(9108), + [aux_sym__attribute_identifier_token1] = ACTIONS(9106), + [aux_sym_option_statement_token3] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9106), + [aux_sym_preprocessor_const_token1] = ACTIONS(9106), + [sym_static_modifier] = ACTIONS(9106), + [sym__dim_keyword] = ACTIONS(9106), + [sym__redim_keyword] = ACTIONS(9106), + [aux_sym_get_accessor_token1] = ACTIONS(9106), + [aux_sym_set_accessor_token1] = ACTIONS(9106), + [aux_sym_const_declaration_token1] = ACTIONS(9106), + [anon_sym_LPAREN] = ACTIONS(9108), + [aux_sym_as_type_clause_token2] = ACTIONS(9106), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9106), + [aux_sym_visibility_token1] = ACTIONS(9106), + [aux_sym_visibility_token2] = ACTIONS(9106), + [aux_sym_elseif_fragment_token1] = ACTIONS(9106), + [aux_sym_else_fragment_token1] = ACTIONS(9106), + [aux_sym_select_statement_token1] = ACTIONS(9106), + [aux_sym__for_header_token1] = ACTIONS(9106), + [aux_sym_do_statement_token1] = ACTIONS(9106), + [aux_sym_do_condition_token1] = ACTIONS(9106), + [aux_sym_while_statement_token1] = ACTIONS(9106), + [aux_sym_with_statement_token1] = ACTIONS(9106), + [aux_sym_exit_statement_token1] = ACTIONS(9106), + [sym_end_statement] = ACTIONS(9108), + [aux_sym_on_goto_statement_token1] = ACTIONS(9106), + [aux_sym_on_goto_statement_token2] = ACTIONS(9106), + [aux_sym_on_error_statement_token2] = ACTIONS(9106), + [sym__ambiguous_redim_statement] = ACTIONS(9108), + [aux_sym_erase_statement_token1] = ACTIONS(9106), + [aux_sym_open_statement_token1] = ACTIONS(9106), + [aux_sym_file_mode_token2] = ACTIONS(9106), + [aux_sym_file_access_token2] = ACTIONS(9106), + [aux_sym_file_lock_token2] = ACTIONS(9106), + [aux_sym_print_statement_token1] = ACTIONS(9106), + [anon_sym_PLUS] = ACTIONS(9108), + [anon_sym_DASH] = ACTIONS(9106), + [anon_sym_QMARK] = ACTIONS(9108), + [aux_sym_close_statement_token1] = ACTIONS(9106), + [aux_sym_put_statement_token1] = ACTIONS(9106), + [aux_sym_unlock_statement_token1] = ACTIONS(9106), + [aux_sym_seek_statement_token1] = ACTIONS(9106), + [sym_reset_statement] = ACTIONS(9106), + [aux_sym_raise_event_statement_token1] = ACTIONS(9106), + [sym_stop_statement] = ACTIONS(9106), + [sym_beep_statement] = ACTIONS(9106), + [aux_sym_unload_statement_token1] = ACTIONS(9106), + [aux_sym_def_type_statement_token1] = ACTIONS(9106), + [aux_sym_def_type_statement_token2] = ACTIONS(9106), + [aux_sym_def_type_statement_token3] = ACTIONS(9106), + [aux_sym_def_type_statement_token4] = ACTIONS(9106), + [aux_sym_def_type_statement_token5] = ACTIONS(9106), + [aux_sym_def_type_statement_token6] = ACTIONS(9106), + [aux_sym_def_type_statement_token7] = ACTIONS(9106), + [aux_sym_def_type_statement_token8] = ACTIONS(9106), + [aux_sym_def_type_statement_token9] = ACTIONS(9106), + [aux_sym_def_type_statement_token10] = ACTIONS(9106), + [aux_sym_def_type_statement_token11] = ACTIONS(9106), + [aux_sym_def_type_statement_token12] = ACTIONS(9106), + [aux_sym_def_type_statement_token13] = ACTIONS(9106), + [aux_sym_def_type_statement_token14] = ACTIONS(9106), + [aux_sym_call_statement_token1] = ACTIONS(9106), + [sym__ambiguous_call_statement] = ACTIONS(9106), + [aux_sym_addressof_expression_token1] = ACTIONS(9106), + [aux_sym_type_of_expression_token1] = ACTIONS(9106), + [aux_sym_unary_expression_token1] = ACTIONS(9106), + [sym_string_literal] = ACTIONS(9108), + [sym_number_literal] = ACTIONS(9108), + [aux_sym_boolean_literal_token1] = ACTIONS(9106), + [aux_sym_boolean_literal_token2] = ACTIONS(9106), + [sym_nothing_literal] = ACTIONS(9106), + [sym_null_literal] = ACTIONS(9106), + [sym_empty_literal] = ACTIONS(9106), + [sym_date_literal] = ACTIONS(9108), + [anon_sym_POUND] = ACTIONS(9106), + }, + [STATE(6466)] = { + [sym_identifier] = ACTIONS(8645), + [sym_newline] = ACTIONS(8647), + [anon_sym_COLON] = ACTIONS(8649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8645), + [aux_sym_frm_property_statement_token1] = ACTIONS(8645), + [anon_sym_DOT] = ACTIONS(8645), + [anon_sym_BANG] = ACTIONS(8647), + [aux_sym__attribute_identifier_token1] = ACTIONS(8645), + [aux_sym_option_statement_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8645), + [aux_sym_preprocessor_const_token1] = ACTIONS(8645), + [sym_static_modifier] = ACTIONS(8645), + [sym__dim_keyword] = ACTIONS(8645), + [sym__redim_keyword] = ACTIONS(8645), + [aux_sym_get_accessor_token1] = ACTIONS(8645), + [aux_sym_set_accessor_token1] = ACTIONS(8645), + [aux_sym_const_declaration_token1] = ACTIONS(8645), + [anon_sym_LPAREN] = ACTIONS(8647), + [aux_sym_as_type_clause_token2] = ACTIONS(8645), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8645), + [aux_sym_visibility_token1] = ACTIONS(8645), + [aux_sym_visibility_token2] = ACTIONS(8645), + [aux_sym_elseif_fragment_token1] = ACTIONS(8645), + [aux_sym_else_fragment_token1] = ACTIONS(8645), + [aux_sym_select_statement_token1] = ACTIONS(8645), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8645), + [aux_sym__for_header_token1] = ACTIONS(8645), + [aux_sym_do_statement_token1] = ACTIONS(8645), + [aux_sym_do_condition_token1] = ACTIONS(8645), + [aux_sym_with_statement_token1] = ACTIONS(8645), + [aux_sym_exit_statement_token1] = ACTIONS(8645), + [sym_end_statement] = ACTIONS(8647), + [aux_sym_on_goto_statement_token1] = ACTIONS(8645), + [aux_sym_on_goto_statement_token2] = ACTIONS(8645), + [aux_sym_on_error_statement_token2] = ACTIONS(8645), + [sym__ambiguous_redim_statement] = ACTIONS(8647), + [aux_sym_erase_statement_token1] = ACTIONS(8645), + [aux_sym_open_statement_token1] = ACTIONS(8645), + [aux_sym_file_mode_token2] = ACTIONS(8645), + [aux_sym_file_access_token2] = ACTIONS(8645), + [aux_sym_file_lock_token2] = ACTIONS(8645), + [aux_sym_print_statement_token1] = ACTIONS(8645), + [anon_sym_PLUS] = ACTIONS(8647), + [anon_sym_DASH] = ACTIONS(8645), + [anon_sym_QMARK] = ACTIONS(8647), + [aux_sym_close_statement_token1] = ACTIONS(8645), + [aux_sym_put_statement_token1] = ACTIONS(8645), + [aux_sym_unlock_statement_token1] = ACTIONS(8645), + [aux_sym_seek_statement_token1] = ACTIONS(8645), + [sym_reset_statement] = ACTIONS(8645), + [aux_sym_raise_event_statement_token1] = ACTIONS(8645), + [sym_stop_statement] = ACTIONS(8645), + [sym_beep_statement] = ACTIONS(8645), + [aux_sym_unload_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token2] = ACTIONS(8645), + [aux_sym_def_type_statement_token3] = ACTIONS(8645), + [aux_sym_def_type_statement_token4] = ACTIONS(8645), + [aux_sym_def_type_statement_token5] = ACTIONS(8645), + [aux_sym_def_type_statement_token6] = ACTIONS(8645), + [aux_sym_def_type_statement_token7] = ACTIONS(8645), + [aux_sym_def_type_statement_token8] = ACTIONS(8645), + [aux_sym_def_type_statement_token9] = ACTIONS(8645), + [aux_sym_def_type_statement_token10] = ACTIONS(8645), + [aux_sym_def_type_statement_token11] = ACTIONS(8645), + [aux_sym_def_type_statement_token12] = ACTIONS(8645), + [aux_sym_def_type_statement_token13] = ACTIONS(8645), + [aux_sym_def_type_statement_token14] = ACTIONS(8645), + [aux_sym_call_statement_token1] = ACTIONS(8645), + [sym__ambiguous_call_statement] = ACTIONS(8645), + [aux_sym_addressof_expression_token1] = ACTIONS(8645), + [aux_sym_type_of_expression_token1] = ACTIONS(8645), + [aux_sym_unary_expression_token1] = ACTIONS(8645), + [sym_string_literal] = ACTIONS(8647), + [sym_number_literal] = ACTIONS(8649), + [aux_sym_boolean_literal_token1] = ACTIONS(8645), + [aux_sym_boolean_literal_token2] = ACTIONS(8645), + [sym_nothing_literal] = ACTIONS(8645), + [sym_null_literal] = ACTIONS(8645), + [sym_empty_literal] = ACTIONS(8645), + [sym_date_literal] = ACTIONS(8647), + [anon_sym_POUND] = ACTIONS(8645), + }, + [STATE(6467)] = { + [sym_identifier] = ACTIONS(8749), + [sym_newline] = ACTIONS(8751), + [anon_sym_COLON] = ACTIONS(8753), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8749), + [aux_sym_frm_property_statement_token1] = ACTIONS(8749), + [anon_sym_DOT] = ACTIONS(8749), + [anon_sym_BANG] = ACTIONS(8751), + [aux_sym__attribute_identifier_token1] = ACTIONS(8749), + [aux_sym_option_statement_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8749), + [aux_sym_preprocessor_const_token1] = ACTIONS(8749), + [sym_static_modifier] = ACTIONS(8749), + [sym__dim_keyword] = ACTIONS(8749), + [sym__redim_keyword] = ACTIONS(8749), + [aux_sym_get_accessor_token1] = ACTIONS(8749), + [aux_sym_set_accessor_token1] = ACTIONS(8749), + [aux_sym_const_declaration_token1] = ACTIONS(8749), + [anon_sym_LPAREN] = ACTIONS(8751), + [aux_sym_as_type_clause_token2] = ACTIONS(8749), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8749), + [aux_sym_visibility_token1] = ACTIONS(8749), + [aux_sym_visibility_token2] = ACTIONS(8749), + [aux_sym_elseif_fragment_token1] = ACTIONS(8749), + [aux_sym_else_fragment_token1] = ACTIONS(8749), + [aux_sym_select_statement_token1] = ACTIONS(8749), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8749), + [aux_sym__for_header_token1] = ACTIONS(8749), + [aux_sym_do_statement_token1] = ACTIONS(8749), + [aux_sym_do_condition_token1] = ACTIONS(8749), + [aux_sym_with_statement_token1] = ACTIONS(8749), + [aux_sym_exit_statement_token1] = ACTIONS(8749), + [sym_end_statement] = ACTIONS(8751), + [aux_sym_on_goto_statement_token1] = ACTIONS(8749), + [aux_sym_on_goto_statement_token2] = ACTIONS(8749), + [aux_sym_on_error_statement_token2] = ACTIONS(8749), + [sym__ambiguous_redim_statement] = ACTIONS(8751), + [aux_sym_erase_statement_token1] = ACTIONS(8749), + [aux_sym_open_statement_token1] = ACTIONS(8749), + [aux_sym_file_mode_token2] = ACTIONS(8749), + [aux_sym_file_access_token2] = ACTIONS(8749), + [aux_sym_file_lock_token2] = ACTIONS(8749), + [aux_sym_print_statement_token1] = ACTIONS(8749), + [anon_sym_PLUS] = ACTIONS(8751), + [anon_sym_DASH] = ACTIONS(8749), + [anon_sym_QMARK] = ACTIONS(8751), + [aux_sym_close_statement_token1] = ACTIONS(8749), + [aux_sym_put_statement_token1] = ACTIONS(8749), + [aux_sym_unlock_statement_token1] = ACTIONS(8749), + [aux_sym_seek_statement_token1] = ACTIONS(8749), + [sym_reset_statement] = ACTIONS(8749), + [aux_sym_raise_event_statement_token1] = ACTIONS(8749), + [sym_stop_statement] = ACTIONS(8749), + [sym_beep_statement] = ACTIONS(8749), + [aux_sym_unload_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token2] = ACTIONS(8749), + [aux_sym_def_type_statement_token3] = ACTIONS(8749), + [aux_sym_def_type_statement_token4] = ACTIONS(8749), + [aux_sym_def_type_statement_token5] = ACTIONS(8749), + [aux_sym_def_type_statement_token6] = ACTIONS(8749), + [aux_sym_def_type_statement_token7] = ACTIONS(8749), + [aux_sym_def_type_statement_token8] = ACTIONS(8749), + [aux_sym_def_type_statement_token9] = ACTIONS(8749), + [aux_sym_def_type_statement_token10] = ACTIONS(8749), + [aux_sym_def_type_statement_token11] = ACTIONS(8749), + [aux_sym_def_type_statement_token12] = ACTIONS(8749), + [aux_sym_def_type_statement_token13] = ACTIONS(8749), + [aux_sym_def_type_statement_token14] = ACTIONS(8749), + [aux_sym_call_statement_token1] = ACTIONS(8749), + [sym__ambiguous_call_statement] = ACTIONS(8749), + [aux_sym_addressof_expression_token1] = ACTIONS(8749), + [aux_sym_type_of_expression_token1] = ACTIONS(8749), + [aux_sym_unary_expression_token1] = ACTIONS(8749), + [sym_string_literal] = ACTIONS(8751), + [sym_number_literal] = ACTIONS(8753), + [aux_sym_boolean_literal_token1] = ACTIONS(8749), + [aux_sym_boolean_literal_token2] = ACTIONS(8749), + [sym_nothing_literal] = ACTIONS(8749), + [sym_null_literal] = ACTIONS(8749), + [sym_empty_literal] = ACTIONS(8749), + [sym_date_literal] = ACTIONS(8751), + [anon_sym_POUND] = ACTIONS(8749), + }, + [STATE(6468)] = { + [sym_identifier] = ACTIONS(9284), + [sym_newline] = ACTIONS(9286), + [anon_sym_COLON] = ACTIONS(9286), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9284), + [aux_sym_frm_property_statement_token1] = ACTIONS(9284), + [anon_sym_DOT] = ACTIONS(9284), + [anon_sym_BANG] = ACTIONS(9286), + [aux_sym__attribute_identifier_token1] = ACTIONS(9284), + [aux_sym_option_statement_token3] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9284), + [aux_sym_preprocessor_const_token1] = ACTIONS(9284), + [sym_static_modifier] = ACTIONS(9284), + [sym__dim_keyword] = ACTIONS(9284), + [sym__redim_keyword] = ACTIONS(9284), + [aux_sym_get_accessor_token1] = ACTIONS(9284), + [aux_sym_set_accessor_token1] = ACTIONS(9284), + [aux_sym_const_declaration_token1] = ACTIONS(9284), + [anon_sym_LPAREN] = ACTIONS(9286), + [aux_sym_as_type_clause_token2] = ACTIONS(9284), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9284), + [aux_sym_visibility_token1] = ACTIONS(9284), + [aux_sym_visibility_token2] = ACTIONS(9284), + [aux_sym_elseif_fragment_token1] = ACTIONS(9284), + [aux_sym_else_fragment_token1] = ACTIONS(9284), + [aux_sym_select_statement_token1] = ACTIONS(9284), + [aux_sym__for_header_token1] = ACTIONS(9284), + [aux_sym_do_statement_token1] = ACTIONS(9284), + [aux_sym_do_condition_token1] = ACTIONS(9284), + [aux_sym_while_statement_token1] = ACTIONS(9284), + [aux_sym_with_statement_token1] = ACTIONS(9284), + [aux_sym_exit_statement_token1] = ACTIONS(9284), + [sym_end_statement] = ACTIONS(9286), + [aux_sym_on_goto_statement_token1] = ACTIONS(9284), + [aux_sym_on_goto_statement_token2] = ACTIONS(9284), + [aux_sym_on_error_statement_token2] = ACTIONS(9284), + [sym__ambiguous_redim_statement] = ACTIONS(9286), + [aux_sym_erase_statement_token1] = ACTIONS(9284), + [aux_sym_open_statement_token1] = ACTIONS(9284), + [aux_sym_file_mode_token2] = ACTIONS(9284), + [aux_sym_file_access_token2] = ACTIONS(9284), + [aux_sym_file_lock_token2] = ACTIONS(9284), + [aux_sym_print_statement_token1] = ACTIONS(9284), + [anon_sym_PLUS] = ACTIONS(9286), + [anon_sym_DASH] = ACTIONS(9284), + [anon_sym_QMARK] = ACTIONS(9286), + [aux_sym_close_statement_token1] = ACTIONS(9284), + [aux_sym_put_statement_token1] = ACTIONS(9284), + [aux_sym_unlock_statement_token1] = ACTIONS(9284), + [aux_sym_seek_statement_token1] = ACTIONS(9284), + [sym_reset_statement] = ACTIONS(9284), + [aux_sym_raise_event_statement_token1] = ACTIONS(9284), + [sym_stop_statement] = ACTIONS(9284), + [sym_beep_statement] = ACTIONS(9284), + [aux_sym_unload_statement_token1] = ACTIONS(9284), + [aux_sym_def_type_statement_token1] = ACTIONS(9284), + [aux_sym_def_type_statement_token2] = ACTIONS(9284), + [aux_sym_def_type_statement_token3] = ACTIONS(9284), + [aux_sym_def_type_statement_token4] = ACTIONS(9284), + [aux_sym_def_type_statement_token5] = ACTIONS(9284), + [aux_sym_def_type_statement_token6] = ACTIONS(9284), + [aux_sym_def_type_statement_token7] = ACTIONS(9284), + [aux_sym_def_type_statement_token8] = ACTIONS(9284), + [aux_sym_def_type_statement_token9] = ACTIONS(9284), + [aux_sym_def_type_statement_token10] = ACTIONS(9284), + [aux_sym_def_type_statement_token11] = ACTIONS(9284), + [aux_sym_def_type_statement_token12] = ACTIONS(9284), + [aux_sym_def_type_statement_token13] = ACTIONS(9284), + [aux_sym_def_type_statement_token14] = ACTIONS(9284), + [aux_sym_call_statement_token1] = ACTIONS(9284), + [sym__ambiguous_call_statement] = ACTIONS(9284), + [aux_sym_addressof_expression_token1] = ACTIONS(9284), + [aux_sym_type_of_expression_token1] = ACTIONS(9284), + [aux_sym_unary_expression_token1] = ACTIONS(9284), + [sym_string_literal] = ACTIONS(9286), + [sym_number_literal] = ACTIONS(9286), + [aux_sym_boolean_literal_token1] = ACTIONS(9284), + [aux_sym_boolean_literal_token2] = ACTIONS(9284), + [sym_nothing_literal] = ACTIONS(9284), + [sym_null_literal] = ACTIONS(9284), + [sym_empty_literal] = ACTIONS(9284), + [sym_date_literal] = ACTIONS(9286), + [anon_sym_POUND] = ACTIONS(9284), + }, + [STATE(6469)] = { + [sym_identifier] = ACTIONS(8729), + [sym_newline] = ACTIONS(8731), + [anon_sym_COLON] = ACTIONS(8731), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8729), + [aux_sym_frm_property_statement_token1] = ACTIONS(8729), + [anon_sym_DOT] = ACTIONS(8729), + [anon_sym_BANG] = ACTIONS(8731), + [aux_sym__attribute_identifier_token1] = ACTIONS(8729), + [aux_sym_option_statement_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8729), + [aux_sym_preprocessor_const_token1] = ACTIONS(8729), + [sym_static_modifier] = ACTIONS(8729), + [sym__dim_keyword] = ACTIONS(8729), + [sym__redim_keyword] = ACTIONS(8729), + [aux_sym_get_accessor_token1] = ACTIONS(8729), + [aux_sym_set_accessor_token1] = ACTIONS(8729), + [aux_sym_const_declaration_token1] = ACTIONS(8729), + [anon_sym_LPAREN] = ACTIONS(8731), + [aux_sym_as_type_clause_token2] = ACTIONS(8729), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8729), + [aux_sym_visibility_token1] = ACTIONS(8729), + [aux_sym_visibility_token2] = ACTIONS(8729), + [aux_sym_elseif_fragment_token1] = ACTIONS(8729), + [aux_sym_else_fragment_token1] = ACTIONS(8729), + [aux_sym_select_statement_token1] = ACTIONS(8729), + [aux_sym_select_statement_token2] = ACTIONS(8729), + [aux_sym__for_header_token1] = ACTIONS(8729), + [aux_sym_do_statement_token1] = ACTIONS(8729), + [aux_sym_do_condition_token1] = ACTIONS(8729), + [aux_sym_with_statement_token1] = ACTIONS(8729), + [aux_sym_exit_statement_token1] = ACTIONS(8729), + [sym_end_statement] = ACTIONS(8731), + [aux_sym_on_goto_statement_token1] = ACTIONS(8729), + [aux_sym_on_goto_statement_token2] = ACTIONS(8729), + [aux_sym_on_error_statement_token2] = ACTIONS(8729), + [sym__ambiguous_redim_statement] = ACTIONS(8731), + [aux_sym_erase_statement_token1] = ACTIONS(8729), + [aux_sym_open_statement_token1] = ACTIONS(8729), + [aux_sym_file_mode_token2] = ACTIONS(8729), + [aux_sym_file_access_token2] = ACTIONS(8729), + [aux_sym_file_lock_token2] = ACTIONS(8729), + [aux_sym_print_statement_token1] = ACTIONS(8729), + [anon_sym_PLUS] = ACTIONS(8731), + [anon_sym_DASH] = ACTIONS(8729), + [anon_sym_QMARK] = ACTIONS(8731), + [aux_sym_close_statement_token1] = ACTIONS(8729), + [aux_sym_put_statement_token1] = ACTIONS(8729), + [aux_sym_unlock_statement_token1] = ACTIONS(8729), + [aux_sym_seek_statement_token1] = ACTIONS(8729), + [sym_reset_statement] = ACTIONS(8729), + [aux_sym_raise_event_statement_token1] = ACTIONS(8729), + [sym_stop_statement] = ACTIONS(8729), + [sym_beep_statement] = ACTIONS(8729), + [aux_sym_unload_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token2] = ACTIONS(8729), + [aux_sym_def_type_statement_token3] = ACTIONS(8729), + [aux_sym_def_type_statement_token4] = ACTIONS(8729), + [aux_sym_def_type_statement_token5] = ACTIONS(8729), + [aux_sym_def_type_statement_token6] = ACTIONS(8729), + [aux_sym_def_type_statement_token7] = ACTIONS(8729), + [aux_sym_def_type_statement_token8] = ACTIONS(8729), + [aux_sym_def_type_statement_token9] = ACTIONS(8729), + [aux_sym_def_type_statement_token10] = ACTIONS(8729), + [aux_sym_def_type_statement_token11] = ACTIONS(8729), + [aux_sym_def_type_statement_token12] = ACTIONS(8729), + [aux_sym_def_type_statement_token13] = ACTIONS(8729), + [aux_sym_def_type_statement_token14] = ACTIONS(8729), + [aux_sym_call_statement_token1] = ACTIONS(8729), + [sym__ambiguous_call_statement] = ACTIONS(8729), + [aux_sym_addressof_expression_token1] = ACTIONS(8729), + [aux_sym_type_of_expression_token1] = ACTIONS(8729), + [aux_sym_unary_expression_token1] = ACTIONS(8729), + [sym_string_literal] = ACTIONS(8731), + [sym_number_literal] = ACTIONS(8731), + [aux_sym_boolean_literal_token1] = ACTIONS(8729), + [aux_sym_boolean_literal_token2] = ACTIONS(8729), + [sym_nothing_literal] = ACTIONS(8729), + [sym_null_literal] = ACTIONS(8729), + [sym_empty_literal] = ACTIONS(8729), + [sym_date_literal] = ACTIONS(8731), + [anon_sym_POUND] = ACTIONS(8729), + }, + [STATE(6470)] = { + [sym_identifier] = ACTIONS(8951), + [sym_newline] = ACTIONS(8953), + [anon_sym_COLON] = ACTIONS(8955), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8951), + [aux_sym_frm_property_statement_token1] = ACTIONS(8951), + [anon_sym_DOT] = ACTIONS(8951), + [anon_sym_BANG] = ACTIONS(8953), + [aux_sym__attribute_identifier_token1] = ACTIONS(8951), + [aux_sym_option_statement_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8951), + [aux_sym_preprocessor_const_token1] = ACTIONS(8951), + [sym_static_modifier] = ACTIONS(8951), + [sym__dim_keyword] = ACTIONS(8951), + [sym__redim_keyword] = ACTIONS(8951), + [aux_sym_get_accessor_token1] = ACTIONS(8951), + [aux_sym_set_accessor_token1] = ACTIONS(8951), + [aux_sym_const_declaration_token1] = ACTIONS(8951), + [anon_sym_LPAREN] = ACTIONS(8953), + [aux_sym_as_type_clause_token2] = ACTIONS(8951), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8951), + [aux_sym_visibility_token1] = ACTIONS(8951), + [aux_sym_visibility_token2] = ACTIONS(8951), + [aux_sym_elseif_fragment_token1] = ACTIONS(8951), + [aux_sym_else_fragment_token1] = ACTIONS(8951), + [aux_sym_select_statement_token1] = ACTIONS(8951), + [aux_sym__for_header_token1] = ACTIONS(8951), + [aux_sym_do_statement_token1] = ACTIONS(8951), + [aux_sym_do_statement_token2] = ACTIONS(8951), + [aux_sym_do_condition_token1] = ACTIONS(8951), + [aux_sym_with_statement_token1] = ACTIONS(8951), + [aux_sym_exit_statement_token1] = ACTIONS(8951), + [sym_end_statement] = ACTIONS(8953), + [aux_sym_on_goto_statement_token1] = ACTIONS(8951), + [aux_sym_on_goto_statement_token2] = ACTIONS(8951), + [aux_sym_on_error_statement_token2] = ACTIONS(8951), + [sym__ambiguous_redim_statement] = ACTIONS(8953), + [aux_sym_erase_statement_token1] = ACTIONS(8951), + [aux_sym_open_statement_token1] = ACTIONS(8951), + [aux_sym_file_mode_token2] = ACTIONS(8951), + [aux_sym_file_access_token2] = ACTIONS(8951), + [aux_sym_file_lock_token2] = ACTIONS(8951), + [aux_sym_print_statement_token1] = ACTIONS(8951), + [anon_sym_PLUS] = ACTIONS(8953), + [anon_sym_DASH] = ACTIONS(8951), + [anon_sym_QMARK] = ACTIONS(8953), + [aux_sym_close_statement_token1] = ACTIONS(8951), + [aux_sym_put_statement_token1] = ACTIONS(8951), + [aux_sym_unlock_statement_token1] = ACTIONS(8951), + [aux_sym_seek_statement_token1] = ACTIONS(8951), + [sym_reset_statement] = ACTIONS(8951), + [aux_sym_raise_event_statement_token1] = ACTIONS(8951), + [sym_stop_statement] = ACTIONS(8951), + [sym_beep_statement] = ACTIONS(8951), + [aux_sym_unload_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token2] = ACTIONS(8951), + [aux_sym_def_type_statement_token3] = ACTIONS(8951), + [aux_sym_def_type_statement_token4] = ACTIONS(8951), + [aux_sym_def_type_statement_token5] = ACTIONS(8951), + [aux_sym_def_type_statement_token6] = ACTIONS(8951), + [aux_sym_def_type_statement_token7] = ACTIONS(8951), + [aux_sym_def_type_statement_token8] = ACTIONS(8951), + [aux_sym_def_type_statement_token9] = ACTIONS(8951), + [aux_sym_def_type_statement_token10] = ACTIONS(8951), + [aux_sym_def_type_statement_token11] = ACTIONS(8951), + [aux_sym_def_type_statement_token12] = ACTIONS(8951), + [aux_sym_def_type_statement_token13] = ACTIONS(8951), + [aux_sym_def_type_statement_token14] = ACTIONS(8951), + [aux_sym_call_statement_token1] = ACTIONS(8951), + [sym__ambiguous_call_statement] = ACTIONS(8951), + [aux_sym_addressof_expression_token1] = ACTIONS(8951), + [aux_sym_type_of_expression_token1] = ACTIONS(8951), + [aux_sym_unary_expression_token1] = ACTIONS(8951), + [sym_string_literal] = ACTIONS(8953), + [sym_number_literal] = ACTIONS(8955), + [aux_sym_boolean_literal_token1] = ACTIONS(8951), + [aux_sym_boolean_literal_token2] = ACTIONS(8951), + [sym_nothing_literal] = ACTIONS(8951), + [sym_null_literal] = ACTIONS(8951), + [sym_empty_literal] = ACTIONS(8951), + [sym_date_literal] = ACTIONS(8953), + [anon_sym_POUND] = ACTIONS(8951), + }, + [STATE(6471)] = { + [sym_identifier] = ACTIONS(9658), + [sym_newline] = ACTIONS(9660), + [anon_sym_COLON] = ACTIONS(9660), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9658), + [aux_sym_frm_property_statement_token1] = ACTIONS(9658), + [anon_sym_DOT] = ACTIONS(9658), + [anon_sym_BANG] = ACTIONS(9660), + [aux_sym__attribute_identifier_token1] = ACTIONS(9658), + [aux_sym_option_statement_token3] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9658), + [aux_sym_preprocessor_const_token1] = ACTIONS(9658), + [sym_static_modifier] = ACTIONS(9658), + [sym__dim_keyword] = ACTIONS(9658), + [sym__redim_keyword] = ACTIONS(9658), + [aux_sym_get_accessor_token1] = ACTIONS(9658), + [aux_sym_set_accessor_token1] = ACTIONS(9658), + [aux_sym_const_declaration_token1] = ACTIONS(9658), + [anon_sym_LPAREN] = ACTIONS(9660), + [aux_sym_as_type_clause_token2] = ACTIONS(9658), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9658), + [aux_sym_visibility_token1] = ACTIONS(9658), + [aux_sym_visibility_token2] = ACTIONS(9658), + [aux_sym_elseif_fragment_token1] = ACTIONS(9658), + [aux_sym_else_fragment_token1] = ACTIONS(9658), + [aux_sym_select_statement_token1] = ACTIONS(9658), + [aux_sym__for_header_token1] = ACTIONS(9658), + [aux_sym_do_statement_token1] = ACTIONS(9658), + [aux_sym_do_statement_token2] = ACTIONS(9658), + [aux_sym_do_condition_token1] = ACTIONS(9658), + [aux_sym_with_statement_token1] = ACTIONS(9658), + [aux_sym_exit_statement_token1] = ACTIONS(9658), + [sym_end_statement] = ACTIONS(9660), + [aux_sym_on_goto_statement_token1] = ACTIONS(9658), + [aux_sym_on_goto_statement_token2] = ACTIONS(9658), + [aux_sym_on_error_statement_token2] = ACTIONS(9658), + [sym__ambiguous_redim_statement] = ACTIONS(9660), + [aux_sym_erase_statement_token1] = ACTIONS(9658), + [aux_sym_open_statement_token1] = ACTIONS(9658), + [aux_sym_file_mode_token2] = ACTIONS(9658), + [aux_sym_file_access_token2] = ACTIONS(9658), + [aux_sym_file_lock_token2] = ACTIONS(9658), + [aux_sym_print_statement_token1] = ACTIONS(9658), + [anon_sym_PLUS] = ACTIONS(9660), + [anon_sym_DASH] = ACTIONS(9658), + [anon_sym_QMARK] = ACTIONS(9660), + [aux_sym_close_statement_token1] = ACTIONS(9658), + [aux_sym_put_statement_token1] = ACTIONS(9658), + [aux_sym_unlock_statement_token1] = ACTIONS(9658), + [aux_sym_seek_statement_token1] = ACTIONS(9658), + [sym_reset_statement] = ACTIONS(9658), + [aux_sym_raise_event_statement_token1] = ACTIONS(9658), + [sym_stop_statement] = ACTIONS(9658), + [sym_beep_statement] = ACTIONS(9658), + [aux_sym_unload_statement_token1] = ACTIONS(9658), + [aux_sym_def_type_statement_token1] = ACTIONS(9658), + [aux_sym_def_type_statement_token2] = ACTIONS(9658), + [aux_sym_def_type_statement_token3] = ACTIONS(9658), + [aux_sym_def_type_statement_token4] = ACTIONS(9658), + [aux_sym_def_type_statement_token5] = ACTIONS(9658), + [aux_sym_def_type_statement_token6] = ACTIONS(9658), + [aux_sym_def_type_statement_token7] = ACTIONS(9658), + [aux_sym_def_type_statement_token8] = ACTIONS(9658), + [aux_sym_def_type_statement_token9] = ACTIONS(9658), + [aux_sym_def_type_statement_token10] = ACTIONS(9658), + [aux_sym_def_type_statement_token11] = ACTIONS(9658), + [aux_sym_def_type_statement_token12] = ACTIONS(9658), + [aux_sym_def_type_statement_token13] = ACTIONS(9658), + [aux_sym_def_type_statement_token14] = ACTIONS(9658), + [aux_sym_call_statement_token1] = ACTIONS(9658), + [sym__ambiguous_call_statement] = ACTIONS(9658), + [aux_sym_addressof_expression_token1] = ACTIONS(9658), + [aux_sym_type_of_expression_token1] = ACTIONS(9658), + [aux_sym_unary_expression_token1] = ACTIONS(9658), + [sym_string_literal] = ACTIONS(9660), + [sym_number_literal] = ACTIONS(9660), + [aux_sym_boolean_literal_token1] = ACTIONS(9658), + [aux_sym_boolean_literal_token2] = ACTIONS(9658), + [sym_nothing_literal] = ACTIONS(9658), + [sym_null_literal] = ACTIONS(9658), + [sym_empty_literal] = ACTIONS(9658), + [sym_date_literal] = ACTIONS(9660), + [anon_sym_POUND] = ACTIONS(9658), + }, + [STATE(6472)] = { + [sym_identifier] = ACTIONS(8745), + [sym_newline] = ACTIONS(8747), + [anon_sym_COLON] = ACTIONS(8747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8745), + [aux_sym_frm_property_statement_token1] = ACTIONS(8745), + [anon_sym_DOT] = ACTIONS(8745), + [anon_sym_BANG] = ACTIONS(8747), + [aux_sym__attribute_identifier_token1] = ACTIONS(8745), + [aux_sym_option_statement_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8745), + [aux_sym_preprocessor_const_token1] = ACTIONS(8745), + [sym_static_modifier] = ACTIONS(8745), + [sym__dim_keyword] = ACTIONS(8745), + [sym__redim_keyword] = ACTIONS(8745), + [aux_sym_get_accessor_token1] = ACTIONS(8745), + [aux_sym_set_accessor_token1] = ACTIONS(8745), + [aux_sym_const_declaration_token1] = ACTIONS(8745), + [anon_sym_LPAREN] = ACTIONS(8747), + [aux_sym_as_type_clause_token2] = ACTIONS(8745), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8745), + [aux_sym_visibility_token1] = ACTIONS(8745), + [aux_sym_visibility_token2] = ACTIONS(8745), + [aux_sym_elseif_fragment_token1] = ACTIONS(8745), + [aux_sym_else_fragment_token1] = ACTIONS(8745), + [aux_sym_select_statement_token1] = ACTIONS(8745), + [aux_sym_select_statement_token2] = ACTIONS(8745), + [aux_sym__for_header_token1] = ACTIONS(8745), + [aux_sym_do_statement_token1] = ACTIONS(8745), + [aux_sym_do_condition_token1] = ACTIONS(8745), + [aux_sym_with_statement_token1] = ACTIONS(8745), + [aux_sym_exit_statement_token1] = ACTIONS(8745), + [sym_end_statement] = ACTIONS(8747), + [aux_sym_on_goto_statement_token1] = ACTIONS(8745), + [aux_sym_on_goto_statement_token2] = ACTIONS(8745), + [aux_sym_on_error_statement_token2] = ACTIONS(8745), + [sym__ambiguous_redim_statement] = ACTIONS(8747), + [aux_sym_erase_statement_token1] = ACTIONS(8745), + [aux_sym_open_statement_token1] = ACTIONS(8745), + [aux_sym_file_mode_token2] = ACTIONS(8745), + [aux_sym_file_access_token2] = ACTIONS(8745), + [aux_sym_file_lock_token2] = ACTIONS(8745), + [aux_sym_print_statement_token1] = ACTIONS(8745), + [anon_sym_PLUS] = ACTIONS(8747), + [anon_sym_DASH] = ACTIONS(8745), + [anon_sym_QMARK] = ACTIONS(8747), + [aux_sym_close_statement_token1] = ACTIONS(8745), + [aux_sym_put_statement_token1] = ACTIONS(8745), + [aux_sym_unlock_statement_token1] = ACTIONS(8745), + [aux_sym_seek_statement_token1] = ACTIONS(8745), + [sym_reset_statement] = ACTIONS(8745), + [aux_sym_raise_event_statement_token1] = ACTIONS(8745), + [sym_stop_statement] = ACTIONS(8745), + [sym_beep_statement] = ACTIONS(8745), + [aux_sym_unload_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token2] = ACTIONS(8745), + [aux_sym_def_type_statement_token3] = ACTIONS(8745), + [aux_sym_def_type_statement_token4] = ACTIONS(8745), + [aux_sym_def_type_statement_token5] = ACTIONS(8745), + [aux_sym_def_type_statement_token6] = ACTIONS(8745), + [aux_sym_def_type_statement_token7] = ACTIONS(8745), + [aux_sym_def_type_statement_token8] = ACTIONS(8745), + [aux_sym_def_type_statement_token9] = ACTIONS(8745), + [aux_sym_def_type_statement_token10] = ACTIONS(8745), + [aux_sym_def_type_statement_token11] = ACTIONS(8745), + [aux_sym_def_type_statement_token12] = ACTIONS(8745), + [aux_sym_def_type_statement_token13] = ACTIONS(8745), + [aux_sym_def_type_statement_token14] = ACTIONS(8745), + [aux_sym_call_statement_token1] = ACTIONS(8745), + [sym__ambiguous_call_statement] = ACTIONS(8745), + [aux_sym_addressof_expression_token1] = ACTIONS(8745), + [aux_sym_type_of_expression_token1] = ACTIONS(8745), + [aux_sym_unary_expression_token1] = ACTIONS(8745), + [sym_string_literal] = ACTIONS(8747), + [sym_number_literal] = ACTIONS(8747), + [aux_sym_boolean_literal_token1] = ACTIONS(8745), + [aux_sym_boolean_literal_token2] = ACTIONS(8745), + [sym_nothing_literal] = ACTIONS(8745), + [sym_null_literal] = ACTIONS(8745), + [sym_empty_literal] = ACTIONS(8745), + [sym_date_literal] = ACTIONS(8747), + [anon_sym_POUND] = ACTIONS(8745), + }, + [STATE(6473)] = { + [sym_identifier] = ACTIONS(8831), + [sym_newline] = ACTIONS(8833), + [anon_sym_COLON] = ACTIONS(8833), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8831), + [aux_sym_frm_property_statement_token1] = ACTIONS(8831), + [anon_sym_DOT] = ACTIONS(8831), + [anon_sym_BANG] = ACTIONS(8833), + [aux_sym__attribute_identifier_token1] = ACTIONS(8831), + [aux_sym_option_statement_token3] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8831), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8831), + [aux_sym_preprocessor_const_token1] = ACTIONS(8831), + [sym_static_modifier] = ACTIONS(8831), + [sym__dim_keyword] = ACTIONS(8831), + [sym__redim_keyword] = ACTIONS(8831), + [aux_sym_get_accessor_token1] = ACTIONS(8831), + [aux_sym_set_accessor_token1] = ACTIONS(8831), + [anon_sym_COMMA] = ACTIONS(8833), + [aux_sym_const_declaration_token1] = ACTIONS(8831), + [anon_sym_LPAREN] = ACTIONS(8833), + [aux_sym_as_type_clause_token2] = ACTIONS(8831), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8831), + [aux_sym_visibility_token1] = ACTIONS(8831), + [aux_sym_visibility_token2] = ACTIONS(8831), + [aux_sym_elseif_fragment_token1] = ACTIONS(8831), + [aux_sym_else_fragment_token1] = ACTIONS(8831), + [aux_sym_select_statement_token1] = ACTIONS(8831), + [aux_sym__for_header_token1] = ACTIONS(8831), + [aux_sym_do_statement_token1] = ACTIONS(8831), + [aux_sym_do_condition_token1] = ACTIONS(8831), + [aux_sym_with_statement_token1] = ACTIONS(8831), + [aux_sym_exit_statement_token1] = ACTIONS(8831), + [sym_end_statement] = ACTIONS(8833), + [aux_sym_on_goto_statement_token1] = ACTIONS(8831), + [aux_sym_on_goto_statement_token2] = ACTIONS(8831), + [aux_sym_on_error_statement_token2] = ACTIONS(8831), + [sym__ambiguous_redim_statement] = ACTIONS(8833), + [aux_sym_erase_statement_token1] = ACTIONS(8831), + [aux_sym_open_statement_token1] = ACTIONS(8831), + [aux_sym_file_mode_token2] = ACTIONS(8831), + [aux_sym_file_access_token2] = ACTIONS(8831), + [aux_sym_file_lock_token2] = ACTIONS(8831), + [aux_sym_print_statement_token1] = ACTIONS(8831), + [anon_sym_PLUS] = ACTIONS(8833), + [anon_sym_DASH] = ACTIONS(8831), + [anon_sym_QMARK] = ACTIONS(8833), + [aux_sym_close_statement_token1] = ACTIONS(8831), + [aux_sym_put_statement_token1] = ACTIONS(8831), + [aux_sym_unlock_statement_token1] = ACTIONS(8831), + [aux_sym_seek_statement_token1] = ACTIONS(8831), + [sym_reset_statement] = ACTIONS(8831), + [aux_sym_raise_event_statement_token1] = ACTIONS(8831), + [sym_stop_statement] = ACTIONS(8831), + [sym_beep_statement] = ACTIONS(8831), + [aux_sym_unload_statement_token1] = ACTIONS(8831), + [aux_sym_def_type_statement_token1] = ACTIONS(8831), + [aux_sym_def_type_statement_token2] = ACTIONS(8831), + [aux_sym_def_type_statement_token3] = ACTIONS(8831), + [aux_sym_def_type_statement_token4] = ACTIONS(8831), + [aux_sym_def_type_statement_token5] = ACTIONS(8831), + [aux_sym_def_type_statement_token6] = ACTIONS(8831), + [aux_sym_def_type_statement_token7] = ACTIONS(8831), + [aux_sym_def_type_statement_token8] = ACTIONS(8831), + [aux_sym_def_type_statement_token9] = ACTIONS(8831), + [aux_sym_def_type_statement_token10] = ACTIONS(8831), + [aux_sym_def_type_statement_token11] = ACTIONS(8831), + [aux_sym_def_type_statement_token12] = ACTIONS(8831), + [aux_sym_def_type_statement_token13] = ACTIONS(8831), + [aux_sym_def_type_statement_token14] = ACTIONS(8831), + [aux_sym_call_statement_token1] = ACTIONS(8831), + [sym__ambiguous_call_statement] = ACTIONS(8831), + [aux_sym_addressof_expression_token1] = ACTIONS(8831), + [aux_sym_type_of_expression_token1] = ACTIONS(8831), + [aux_sym_unary_expression_token1] = ACTIONS(8831), + [sym_string_literal] = ACTIONS(8833), + [sym_number_literal] = ACTIONS(8833), + [aux_sym_boolean_literal_token1] = ACTIONS(8831), + [aux_sym_boolean_literal_token2] = ACTIONS(8831), + [sym_nothing_literal] = ACTIONS(8831), + [sym_null_literal] = ACTIONS(8831), + [sym_empty_literal] = ACTIONS(8831), + [sym_date_literal] = ACTIONS(8833), + [anon_sym_POUND] = ACTIONS(8831), + }, + [STATE(6474)] = { + [sym_identifier] = ACTIONS(9662), + [sym_newline] = ACTIONS(9664), + [anon_sym_COLON] = ACTIONS(9664), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9662), + [aux_sym_frm_property_statement_token1] = ACTIONS(9662), + [anon_sym_DOT] = ACTIONS(9662), + [anon_sym_BANG] = ACTIONS(9664), + [aux_sym__attribute_identifier_token1] = ACTIONS(9662), + [aux_sym_option_statement_token3] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9662), + [aux_sym_preprocessor_const_token1] = ACTIONS(9662), + [sym_static_modifier] = ACTIONS(9662), + [sym__dim_keyword] = ACTIONS(9662), + [sym__redim_keyword] = ACTIONS(9662), + [aux_sym_get_accessor_token1] = ACTIONS(9662), + [aux_sym_set_accessor_token1] = ACTIONS(9662), + [aux_sym_const_declaration_token1] = ACTIONS(9662), + [anon_sym_LPAREN] = ACTIONS(9664), + [aux_sym_as_type_clause_token2] = ACTIONS(9662), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9662), + [aux_sym_visibility_token1] = ACTIONS(9662), + [aux_sym_visibility_token2] = ACTIONS(9662), + [aux_sym_elseif_fragment_token1] = ACTIONS(9662), + [aux_sym_else_fragment_token1] = ACTIONS(9662), + [aux_sym_select_statement_token1] = ACTIONS(9662), + [aux_sym__for_header_token1] = ACTIONS(9662), + [aux_sym_do_statement_token1] = ACTIONS(9662), + [aux_sym_do_statement_token2] = ACTIONS(9662), + [aux_sym_do_condition_token1] = ACTIONS(9662), + [aux_sym_with_statement_token1] = ACTIONS(9662), + [aux_sym_exit_statement_token1] = ACTIONS(9662), + [sym_end_statement] = ACTIONS(9664), + [aux_sym_on_goto_statement_token1] = ACTIONS(9662), + [aux_sym_on_goto_statement_token2] = ACTIONS(9662), + [aux_sym_on_error_statement_token2] = ACTIONS(9662), + [sym__ambiguous_redim_statement] = ACTIONS(9664), + [aux_sym_erase_statement_token1] = ACTIONS(9662), + [aux_sym_open_statement_token1] = ACTIONS(9662), + [aux_sym_file_mode_token2] = ACTIONS(9662), + [aux_sym_file_access_token2] = ACTIONS(9662), + [aux_sym_file_lock_token2] = ACTIONS(9662), + [aux_sym_print_statement_token1] = ACTIONS(9662), + [anon_sym_PLUS] = ACTIONS(9664), + [anon_sym_DASH] = ACTIONS(9662), + [anon_sym_QMARK] = ACTIONS(9664), + [aux_sym_close_statement_token1] = ACTIONS(9662), + [aux_sym_put_statement_token1] = ACTIONS(9662), + [aux_sym_unlock_statement_token1] = ACTIONS(9662), + [aux_sym_seek_statement_token1] = ACTIONS(9662), + [sym_reset_statement] = ACTIONS(9662), + [aux_sym_raise_event_statement_token1] = ACTIONS(9662), + [sym_stop_statement] = ACTIONS(9662), + [sym_beep_statement] = ACTIONS(9662), + [aux_sym_unload_statement_token1] = ACTIONS(9662), + [aux_sym_def_type_statement_token1] = ACTIONS(9662), + [aux_sym_def_type_statement_token2] = ACTIONS(9662), + [aux_sym_def_type_statement_token3] = ACTIONS(9662), + [aux_sym_def_type_statement_token4] = ACTIONS(9662), + [aux_sym_def_type_statement_token5] = ACTIONS(9662), + [aux_sym_def_type_statement_token6] = ACTIONS(9662), + [aux_sym_def_type_statement_token7] = ACTIONS(9662), + [aux_sym_def_type_statement_token8] = ACTIONS(9662), + [aux_sym_def_type_statement_token9] = ACTIONS(9662), + [aux_sym_def_type_statement_token10] = ACTIONS(9662), + [aux_sym_def_type_statement_token11] = ACTIONS(9662), + [aux_sym_def_type_statement_token12] = ACTIONS(9662), + [aux_sym_def_type_statement_token13] = ACTIONS(9662), + [aux_sym_def_type_statement_token14] = ACTIONS(9662), + [aux_sym_call_statement_token1] = ACTIONS(9662), + [sym__ambiguous_call_statement] = ACTIONS(9662), + [aux_sym_addressof_expression_token1] = ACTIONS(9662), + [aux_sym_type_of_expression_token1] = ACTIONS(9662), + [aux_sym_unary_expression_token1] = ACTIONS(9662), + [sym_string_literal] = ACTIONS(9664), + [sym_number_literal] = ACTIONS(9664), + [aux_sym_boolean_literal_token1] = ACTIONS(9662), + [aux_sym_boolean_literal_token2] = ACTIONS(9662), + [sym_nothing_literal] = ACTIONS(9662), + [sym_null_literal] = ACTIONS(9662), + [sym_empty_literal] = ACTIONS(9662), + [sym_date_literal] = ACTIONS(9664), + [anon_sym_POUND] = ACTIONS(9662), + }, + [STATE(6475)] = { + [sym_identifier] = ACTIONS(9666), + [sym_newline] = ACTIONS(9668), + [anon_sym_COLON] = ACTIONS(9668), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9666), + [aux_sym_frm_property_statement_token1] = ACTIONS(9666), + [anon_sym_DOT] = ACTIONS(9666), + [anon_sym_BANG] = ACTIONS(9668), + [aux_sym__attribute_identifier_token1] = ACTIONS(9666), + [aux_sym_option_statement_token3] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9666), + [aux_sym_preprocessor_const_token1] = ACTIONS(9666), + [sym_static_modifier] = ACTIONS(9666), + [sym__dim_keyword] = ACTIONS(9666), + [sym__redim_keyword] = ACTIONS(9666), + [aux_sym_get_accessor_token1] = ACTIONS(9666), + [aux_sym_set_accessor_token1] = ACTIONS(9666), + [aux_sym_const_declaration_token1] = ACTIONS(9666), + [anon_sym_LPAREN] = ACTIONS(9668), + [aux_sym_as_type_clause_token2] = ACTIONS(9666), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9666), + [aux_sym_visibility_token1] = ACTIONS(9666), + [aux_sym_visibility_token2] = ACTIONS(9666), + [aux_sym_elseif_fragment_token1] = ACTIONS(9666), + [aux_sym_else_fragment_token1] = ACTIONS(9666), + [aux_sym_select_statement_token1] = ACTIONS(9666), + [aux_sym__for_header_token1] = ACTIONS(9666), + [aux_sym_do_statement_token1] = ACTIONS(9666), + [aux_sym_do_statement_token2] = ACTIONS(9666), + [aux_sym_do_condition_token1] = ACTIONS(9666), + [aux_sym_with_statement_token1] = ACTIONS(9666), + [aux_sym_exit_statement_token1] = ACTIONS(9666), + [sym_end_statement] = ACTIONS(9668), + [aux_sym_on_goto_statement_token1] = ACTIONS(9666), + [aux_sym_on_goto_statement_token2] = ACTIONS(9666), + [aux_sym_on_error_statement_token2] = ACTIONS(9666), + [sym__ambiguous_redim_statement] = ACTIONS(9668), + [aux_sym_erase_statement_token1] = ACTIONS(9666), + [aux_sym_open_statement_token1] = ACTIONS(9666), + [aux_sym_file_mode_token2] = ACTIONS(9666), + [aux_sym_file_access_token2] = ACTIONS(9666), + [aux_sym_file_lock_token2] = ACTIONS(9666), + [aux_sym_print_statement_token1] = ACTIONS(9666), + [anon_sym_PLUS] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(9666), + [anon_sym_QMARK] = ACTIONS(9668), + [aux_sym_close_statement_token1] = ACTIONS(9666), + [aux_sym_put_statement_token1] = ACTIONS(9666), + [aux_sym_unlock_statement_token1] = ACTIONS(9666), + [aux_sym_seek_statement_token1] = ACTIONS(9666), + [sym_reset_statement] = ACTIONS(9666), + [aux_sym_raise_event_statement_token1] = ACTIONS(9666), + [sym_stop_statement] = ACTIONS(9666), + [sym_beep_statement] = ACTIONS(9666), + [aux_sym_unload_statement_token1] = ACTIONS(9666), + [aux_sym_def_type_statement_token1] = ACTIONS(9666), + [aux_sym_def_type_statement_token2] = ACTIONS(9666), + [aux_sym_def_type_statement_token3] = ACTIONS(9666), + [aux_sym_def_type_statement_token4] = ACTIONS(9666), + [aux_sym_def_type_statement_token5] = ACTIONS(9666), + [aux_sym_def_type_statement_token6] = ACTIONS(9666), + [aux_sym_def_type_statement_token7] = ACTIONS(9666), + [aux_sym_def_type_statement_token8] = ACTIONS(9666), + [aux_sym_def_type_statement_token9] = ACTIONS(9666), + [aux_sym_def_type_statement_token10] = ACTIONS(9666), + [aux_sym_def_type_statement_token11] = ACTIONS(9666), + [aux_sym_def_type_statement_token12] = ACTIONS(9666), + [aux_sym_def_type_statement_token13] = ACTIONS(9666), + [aux_sym_def_type_statement_token14] = ACTIONS(9666), + [aux_sym_call_statement_token1] = ACTIONS(9666), + [sym__ambiguous_call_statement] = ACTIONS(9666), + [aux_sym_addressof_expression_token1] = ACTIONS(9666), + [aux_sym_type_of_expression_token1] = ACTIONS(9666), + [aux_sym_unary_expression_token1] = ACTIONS(9666), + [sym_string_literal] = ACTIONS(9668), + [sym_number_literal] = ACTIONS(9668), + [aux_sym_boolean_literal_token1] = ACTIONS(9666), + [aux_sym_boolean_literal_token2] = ACTIONS(9666), + [sym_nothing_literal] = ACTIONS(9666), + [sym_null_literal] = ACTIONS(9666), + [sym_empty_literal] = ACTIONS(9666), + [sym_date_literal] = ACTIONS(9668), + [anon_sym_POUND] = ACTIONS(9666), + }, + [STATE(6476)] = { + [sym_identifier] = ACTIONS(8645), + [sym_newline] = ACTIONS(8647), + [anon_sym_COLON] = ACTIONS(8649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8645), + [aux_sym_frm_property_statement_token1] = ACTIONS(8645), + [anon_sym_DOT] = ACTIONS(8645), + [anon_sym_BANG] = ACTIONS(8647), + [aux_sym__attribute_identifier_token1] = ACTIONS(8645), + [aux_sym_option_statement_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8645), + [aux_sym_preprocessor_const_token1] = ACTIONS(8645), + [sym_static_modifier] = ACTIONS(8645), + [sym__dim_keyword] = ACTIONS(8645), + [sym__redim_keyword] = ACTIONS(8645), + [aux_sym_get_accessor_token1] = ACTIONS(8645), + [aux_sym_set_accessor_token1] = ACTIONS(8645), + [aux_sym_const_declaration_token1] = ACTIONS(8645), + [anon_sym_LPAREN] = ACTIONS(8647), + [aux_sym_as_type_clause_token2] = ACTIONS(8645), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8645), + [aux_sym_visibility_token1] = ACTIONS(8645), + [aux_sym_visibility_token2] = ACTIONS(8645), + [aux_sym_elseif_fragment_token1] = ACTIONS(8645), + [aux_sym_else_fragment_token1] = ACTIONS(8645), + [aux_sym_select_statement_token1] = ACTIONS(8645), + [aux_sym__for_header_token1] = ACTIONS(8645), + [aux_sym_do_statement_token1] = ACTIONS(8645), + [aux_sym_do_statement_token2] = ACTIONS(8645), + [aux_sym_do_condition_token1] = ACTIONS(8645), + [aux_sym_with_statement_token1] = ACTIONS(8645), + [aux_sym_exit_statement_token1] = ACTIONS(8645), + [sym_end_statement] = ACTIONS(8647), + [aux_sym_on_goto_statement_token1] = ACTIONS(8645), + [aux_sym_on_goto_statement_token2] = ACTIONS(8645), + [aux_sym_on_error_statement_token2] = ACTIONS(8645), + [sym__ambiguous_redim_statement] = ACTIONS(8647), + [aux_sym_erase_statement_token1] = ACTIONS(8645), + [aux_sym_open_statement_token1] = ACTIONS(8645), + [aux_sym_file_mode_token2] = ACTIONS(8645), + [aux_sym_file_access_token2] = ACTIONS(8645), + [aux_sym_file_lock_token2] = ACTIONS(8645), + [aux_sym_print_statement_token1] = ACTIONS(8645), + [anon_sym_PLUS] = ACTIONS(8647), + [anon_sym_DASH] = ACTIONS(8645), + [anon_sym_QMARK] = ACTIONS(8647), + [aux_sym_close_statement_token1] = ACTIONS(8645), + [aux_sym_put_statement_token1] = ACTIONS(8645), + [aux_sym_unlock_statement_token1] = ACTIONS(8645), + [aux_sym_seek_statement_token1] = ACTIONS(8645), + [sym_reset_statement] = ACTIONS(8645), + [aux_sym_raise_event_statement_token1] = ACTIONS(8645), + [sym_stop_statement] = ACTIONS(8645), + [sym_beep_statement] = ACTIONS(8645), + [aux_sym_unload_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token2] = ACTIONS(8645), + [aux_sym_def_type_statement_token3] = ACTIONS(8645), + [aux_sym_def_type_statement_token4] = ACTIONS(8645), + [aux_sym_def_type_statement_token5] = ACTIONS(8645), + [aux_sym_def_type_statement_token6] = ACTIONS(8645), + [aux_sym_def_type_statement_token7] = ACTIONS(8645), + [aux_sym_def_type_statement_token8] = ACTIONS(8645), + [aux_sym_def_type_statement_token9] = ACTIONS(8645), + [aux_sym_def_type_statement_token10] = ACTIONS(8645), + [aux_sym_def_type_statement_token11] = ACTIONS(8645), + [aux_sym_def_type_statement_token12] = ACTIONS(8645), + [aux_sym_def_type_statement_token13] = ACTIONS(8645), + [aux_sym_def_type_statement_token14] = ACTIONS(8645), + [aux_sym_call_statement_token1] = ACTIONS(8645), + [sym__ambiguous_call_statement] = ACTIONS(8645), + [aux_sym_addressof_expression_token1] = ACTIONS(8645), + [aux_sym_type_of_expression_token1] = ACTIONS(8645), + [aux_sym_unary_expression_token1] = ACTIONS(8645), + [sym_string_literal] = ACTIONS(8647), + [sym_number_literal] = ACTIONS(8649), + [aux_sym_boolean_literal_token1] = ACTIONS(8645), + [aux_sym_boolean_literal_token2] = ACTIONS(8645), + [sym_nothing_literal] = ACTIONS(8645), + [sym_null_literal] = ACTIONS(8645), + [sym_empty_literal] = ACTIONS(8645), + [sym_date_literal] = ACTIONS(8647), + [anon_sym_POUND] = ACTIONS(8645), + }, + [STATE(6477)] = { + [sym_identifier] = ACTIONS(9106), + [sym_newline] = ACTIONS(9108), + [anon_sym_COLON] = ACTIONS(9108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9106), + [aux_sym_frm_property_statement_token1] = ACTIONS(9106), + [anon_sym_DOT] = ACTIONS(9106), + [anon_sym_BANG] = ACTIONS(9108), + [aux_sym__attribute_identifier_token1] = ACTIONS(9106), + [aux_sym_option_statement_token3] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9106), + [aux_sym_preprocessor_const_token1] = ACTIONS(9106), + [sym_static_modifier] = ACTIONS(9106), + [sym__dim_keyword] = ACTIONS(9106), + [sym__redim_keyword] = ACTIONS(9106), + [aux_sym_get_accessor_token1] = ACTIONS(9106), + [aux_sym_set_accessor_token1] = ACTIONS(9106), + [aux_sym_const_declaration_token1] = ACTIONS(9106), + [anon_sym_LPAREN] = ACTIONS(9108), + [aux_sym_as_type_clause_token2] = ACTIONS(9106), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9106), + [aux_sym_visibility_token1] = ACTIONS(9106), + [aux_sym_visibility_token2] = ACTIONS(9106), + [aux_sym_elseif_fragment_token1] = ACTIONS(9106), + [aux_sym_else_fragment_token1] = ACTIONS(9106), + [aux_sym_select_statement_token1] = ACTIONS(9106), + [aux_sym__for_header_token1] = ACTIONS(9106), + [aux_sym_do_statement_token1] = ACTIONS(9106), + [aux_sym_do_statement_token2] = ACTIONS(9106), + [aux_sym_do_condition_token1] = ACTIONS(9106), + [aux_sym_with_statement_token1] = ACTIONS(9106), + [aux_sym_exit_statement_token1] = ACTIONS(9106), + [sym_end_statement] = ACTIONS(9108), + [aux_sym_on_goto_statement_token1] = ACTIONS(9106), + [aux_sym_on_goto_statement_token2] = ACTIONS(9106), + [aux_sym_on_error_statement_token2] = ACTIONS(9106), + [sym__ambiguous_redim_statement] = ACTIONS(9108), + [aux_sym_erase_statement_token1] = ACTIONS(9106), + [aux_sym_open_statement_token1] = ACTIONS(9106), + [aux_sym_file_mode_token2] = ACTIONS(9106), + [aux_sym_file_access_token2] = ACTIONS(9106), + [aux_sym_file_lock_token2] = ACTIONS(9106), + [aux_sym_print_statement_token1] = ACTIONS(9106), + [anon_sym_PLUS] = ACTIONS(9108), + [anon_sym_DASH] = ACTIONS(9106), + [anon_sym_QMARK] = ACTIONS(9108), + [aux_sym_close_statement_token1] = ACTIONS(9106), + [aux_sym_put_statement_token1] = ACTIONS(9106), + [aux_sym_unlock_statement_token1] = ACTIONS(9106), + [aux_sym_seek_statement_token1] = ACTIONS(9106), + [sym_reset_statement] = ACTIONS(9106), + [aux_sym_raise_event_statement_token1] = ACTIONS(9106), + [sym_stop_statement] = ACTIONS(9106), + [sym_beep_statement] = ACTIONS(9106), + [aux_sym_unload_statement_token1] = ACTIONS(9106), + [aux_sym_def_type_statement_token1] = ACTIONS(9106), + [aux_sym_def_type_statement_token2] = ACTIONS(9106), + [aux_sym_def_type_statement_token3] = ACTIONS(9106), + [aux_sym_def_type_statement_token4] = ACTIONS(9106), + [aux_sym_def_type_statement_token5] = ACTIONS(9106), + [aux_sym_def_type_statement_token6] = ACTIONS(9106), + [aux_sym_def_type_statement_token7] = ACTIONS(9106), + [aux_sym_def_type_statement_token8] = ACTIONS(9106), + [aux_sym_def_type_statement_token9] = ACTIONS(9106), + [aux_sym_def_type_statement_token10] = ACTIONS(9106), + [aux_sym_def_type_statement_token11] = ACTIONS(9106), + [aux_sym_def_type_statement_token12] = ACTIONS(9106), + [aux_sym_def_type_statement_token13] = ACTIONS(9106), + [aux_sym_def_type_statement_token14] = ACTIONS(9106), + [aux_sym_call_statement_token1] = ACTIONS(9106), + [sym__ambiguous_call_statement] = ACTIONS(9106), + [aux_sym_addressof_expression_token1] = ACTIONS(9106), + [aux_sym_type_of_expression_token1] = ACTIONS(9106), + [aux_sym_unary_expression_token1] = ACTIONS(9106), + [sym_string_literal] = ACTIONS(9108), + [sym_number_literal] = ACTIONS(9108), + [aux_sym_boolean_literal_token1] = ACTIONS(9106), + [aux_sym_boolean_literal_token2] = ACTIONS(9106), + [sym_nothing_literal] = ACTIONS(9106), + [sym_null_literal] = ACTIONS(9106), + [sym_empty_literal] = ACTIONS(9106), + [sym_date_literal] = ACTIONS(9108), + [anon_sym_POUND] = ACTIONS(9106), + }, + [STATE(6478)] = { + [sym_identifier] = ACTIONS(8839), + [sym_newline] = ACTIONS(8841), + [anon_sym_COLON] = ACTIONS(8841), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8839), + [aux_sym_frm_property_statement_token1] = ACTIONS(8839), + [anon_sym_DOT] = ACTIONS(8839), + [anon_sym_BANG] = ACTIONS(8841), + [aux_sym__attribute_identifier_token1] = ACTIONS(8839), + [aux_sym_option_statement_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8839), + [aux_sym_preprocessor_const_token1] = ACTIONS(8839), + [sym_static_modifier] = ACTIONS(8839), + [sym__dim_keyword] = ACTIONS(8839), + [sym__redim_keyword] = ACTIONS(8839), + [aux_sym_get_accessor_token1] = ACTIONS(8839), + [aux_sym_set_accessor_token1] = ACTIONS(8839), + [aux_sym_const_declaration_token1] = ACTIONS(8839), + [anon_sym_LPAREN] = ACTIONS(8841), + [aux_sym_as_type_clause_token2] = ACTIONS(8839), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8839), + [aux_sym_visibility_token1] = ACTIONS(8839), + [aux_sym_visibility_token2] = ACTIONS(8839), + [aux_sym_elseif_fragment_token1] = ACTIONS(8839), + [aux_sym_else_fragment_token1] = ACTIONS(8839), + [aux_sym_select_statement_token1] = ACTIONS(8839), + [aux_sym_select_statement_token2] = ACTIONS(8839), + [aux_sym__for_header_token1] = ACTIONS(8839), + [aux_sym_do_statement_token1] = ACTIONS(8839), + [aux_sym_do_condition_token1] = ACTIONS(8839), + [aux_sym_with_statement_token1] = ACTIONS(8839), + [aux_sym_exit_statement_token1] = ACTIONS(8839), + [sym_end_statement] = ACTIONS(8841), + [aux_sym_on_goto_statement_token1] = ACTIONS(8839), + [aux_sym_on_goto_statement_token2] = ACTIONS(8839), + [aux_sym_on_error_statement_token2] = ACTIONS(8839), + [sym__ambiguous_redim_statement] = ACTIONS(8841), + [aux_sym_erase_statement_token1] = ACTIONS(8839), + [aux_sym_open_statement_token1] = ACTIONS(8839), + [aux_sym_file_mode_token2] = ACTIONS(8839), + [aux_sym_file_access_token2] = ACTIONS(8839), + [aux_sym_file_lock_token2] = ACTIONS(8839), + [aux_sym_print_statement_token1] = ACTIONS(8839), + [anon_sym_PLUS] = ACTIONS(8841), + [anon_sym_DASH] = ACTIONS(8839), + [anon_sym_QMARK] = ACTIONS(8841), + [aux_sym_close_statement_token1] = ACTIONS(8839), + [aux_sym_put_statement_token1] = ACTIONS(8839), + [aux_sym_unlock_statement_token1] = ACTIONS(8839), + [aux_sym_seek_statement_token1] = ACTIONS(8839), + [sym_reset_statement] = ACTIONS(8839), + [aux_sym_raise_event_statement_token1] = ACTIONS(8839), + [sym_stop_statement] = ACTIONS(8839), + [sym_beep_statement] = ACTIONS(8839), + [aux_sym_unload_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token2] = ACTIONS(8839), + [aux_sym_def_type_statement_token3] = ACTIONS(8839), + [aux_sym_def_type_statement_token4] = ACTIONS(8839), + [aux_sym_def_type_statement_token5] = ACTIONS(8839), + [aux_sym_def_type_statement_token6] = ACTIONS(8839), + [aux_sym_def_type_statement_token7] = ACTIONS(8839), + [aux_sym_def_type_statement_token8] = ACTIONS(8839), + [aux_sym_def_type_statement_token9] = ACTIONS(8839), + [aux_sym_def_type_statement_token10] = ACTIONS(8839), + [aux_sym_def_type_statement_token11] = ACTIONS(8839), + [aux_sym_def_type_statement_token12] = ACTIONS(8839), + [aux_sym_def_type_statement_token13] = ACTIONS(8839), + [aux_sym_def_type_statement_token14] = ACTIONS(8839), + [aux_sym_call_statement_token1] = ACTIONS(8839), + [sym__ambiguous_call_statement] = ACTIONS(8839), + [aux_sym_addressof_expression_token1] = ACTIONS(8839), + [aux_sym_type_of_expression_token1] = ACTIONS(8839), + [aux_sym_unary_expression_token1] = ACTIONS(8839), + [sym_string_literal] = ACTIONS(8841), + [sym_number_literal] = ACTIONS(8841), + [aux_sym_boolean_literal_token1] = ACTIONS(8839), + [aux_sym_boolean_literal_token2] = ACTIONS(8839), + [sym_nothing_literal] = ACTIONS(8839), + [sym_null_literal] = ACTIONS(8839), + [sym_empty_literal] = ACTIONS(8839), + [sym_date_literal] = ACTIONS(8841), + [anon_sym_POUND] = ACTIONS(8839), + }, + [STATE(6479)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6904), + [sym_identifier] = ACTIONS(8733), + [sym_newline] = ACTIONS(8735), + [anon_sym_COLON] = ACTIONS(11113), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8733), + [aux_sym_frm_property_statement_token1] = ACTIONS(8733), + [anon_sym_DOT] = ACTIONS(8733), + [anon_sym_BANG] = ACTIONS(8735), + [aux_sym__attribute_identifier_token1] = ACTIONS(8733), + [aux_sym_option_statement_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8733), + [aux_sym_preprocessor_const_token1] = ACTIONS(8733), + [sym_static_modifier] = ACTIONS(8733), + [sym__dim_keyword] = ACTIONS(8733), + [sym__redim_keyword] = ACTIONS(8733), + [aux_sym_get_accessor_token1] = ACTIONS(8733), + [aux_sym_set_accessor_token1] = ACTIONS(8733), + [aux_sym_const_declaration_token1] = ACTIONS(8733), + [anon_sym_LPAREN] = ACTIONS(8735), + [aux_sym_as_type_clause_token2] = ACTIONS(8733), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8733), + [aux_sym_visibility_token1] = ACTIONS(8733), + [aux_sym_visibility_token2] = ACTIONS(8733), + [aux_sym_elseif_fragment_token1] = ACTIONS(8733), + [aux_sym_else_fragment_token1] = ACTIONS(11115), + [aux_sym_select_statement_token1] = ACTIONS(8733), + [aux_sym__for_header_token1] = ACTIONS(8733), + [aux_sym_do_statement_token1] = ACTIONS(8733), + [aux_sym_do_condition_token1] = ACTIONS(8733), + [aux_sym_with_statement_token1] = ACTIONS(8733), + [aux_sym_exit_statement_token1] = ACTIONS(8733), + [sym_end_statement] = ACTIONS(8735), + [aux_sym_on_goto_statement_token1] = ACTIONS(8733), + [aux_sym_on_goto_statement_token2] = ACTIONS(8733), + [aux_sym_on_error_statement_token2] = ACTIONS(8733), + [sym__ambiguous_redim_statement] = ACTIONS(8735), + [aux_sym_erase_statement_token1] = ACTIONS(8733), + [aux_sym_open_statement_token1] = ACTIONS(8733), + [aux_sym_file_mode_token2] = ACTIONS(8733), + [aux_sym_file_access_token2] = ACTIONS(8733), + [aux_sym_file_lock_token2] = ACTIONS(8733), + [aux_sym_print_statement_token1] = ACTIONS(8733), + [anon_sym_PLUS] = ACTIONS(8735), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_QMARK] = ACTIONS(8735), + [aux_sym_close_statement_token1] = ACTIONS(8733), + [aux_sym_put_statement_token1] = ACTIONS(8733), + [aux_sym_unlock_statement_token1] = ACTIONS(8733), + [aux_sym_seek_statement_token1] = ACTIONS(8733), + [sym_reset_statement] = ACTIONS(8733), + [aux_sym_raise_event_statement_token1] = ACTIONS(8733), + [sym_stop_statement] = ACTIONS(8733), + [sym_beep_statement] = ACTIONS(8733), + [aux_sym_unload_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token2] = ACTIONS(8733), + [aux_sym_def_type_statement_token3] = ACTIONS(8733), + [aux_sym_def_type_statement_token4] = ACTIONS(8733), + [aux_sym_def_type_statement_token5] = ACTIONS(8733), + [aux_sym_def_type_statement_token6] = ACTIONS(8733), + [aux_sym_def_type_statement_token7] = ACTIONS(8733), + [aux_sym_def_type_statement_token8] = ACTIONS(8733), + [aux_sym_def_type_statement_token9] = ACTIONS(8733), + [aux_sym_def_type_statement_token10] = ACTIONS(8733), + [aux_sym_def_type_statement_token11] = ACTIONS(8733), + [aux_sym_def_type_statement_token12] = ACTIONS(8733), + [aux_sym_def_type_statement_token13] = ACTIONS(8733), + [aux_sym_def_type_statement_token14] = ACTIONS(8733), + [aux_sym_call_statement_token1] = ACTIONS(8733), + [sym__ambiguous_call_statement] = ACTIONS(8733), + [aux_sym_addressof_expression_token1] = ACTIONS(8733), + [aux_sym_type_of_expression_token1] = ACTIONS(8733), + [aux_sym_unary_expression_token1] = ACTIONS(8733), + [sym_string_literal] = ACTIONS(8735), + [sym_number_literal] = ACTIONS(8735), + [aux_sym_boolean_literal_token1] = ACTIONS(8733), + [aux_sym_boolean_literal_token2] = ACTIONS(8733), + [sym_nothing_literal] = ACTIONS(8733), + [sym_null_literal] = ACTIONS(8733), + [sym_empty_literal] = ACTIONS(8733), + [sym_date_literal] = ACTIONS(8735), + [anon_sym_POUND] = ACTIONS(8733), + }, + [STATE(6480)] = { + [sym_identifier] = ACTIONS(8853), + [sym_newline] = ACTIONS(8855), + [anon_sym_COLON] = ACTIONS(8855), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8853), + [aux_sym_frm_property_statement_token1] = ACTIONS(8853), + [anon_sym_DOT] = ACTIONS(8853), + [anon_sym_BANG] = ACTIONS(8855), + [aux_sym__attribute_identifier_token1] = ACTIONS(8853), + [aux_sym_option_statement_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8853), + [aux_sym_preprocessor_const_token1] = ACTIONS(8853), + [sym_static_modifier] = ACTIONS(8853), + [sym__dim_keyword] = ACTIONS(8853), + [sym__redim_keyword] = ACTIONS(8853), + [aux_sym_get_accessor_token1] = ACTIONS(8853), + [aux_sym_set_accessor_token1] = ACTIONS(8853), + [aux_sym_const_declaration_token1] = ACTIONS(8853), + [anon_sym_LPAREN] = ACTIONS(8855), + [aux_sym_as_type_clause_token2] = ACTIONS(8853), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8853), + [aux_sym_visibility_token1] = ACTIONS(8853), + [aux_sym_visibility_token2] = ACTIONS(8853), + [aux_sym_elseif_fragment_token1] = ACTIONS(8853), + [aux_sym_else_fragment_token1] = ACTIONS(8853), + [aux_sym_select_statement_token1] = ACTIONS(8853), + [aux_sym_select_statement_token2] = ACTIONS(8853), + [aux_sym__for_header_token1] = ACTIONS(8853), + [aux_sym_do_statement_token1] = ACTIONS(8853), + [aux_sym_do_condition_token1] = ACTIONS(8853), + [aux_sym_with_statement_token1] = ACTIONS(8853), + [aux_sym_exit_statement_token1] = ACTIONS(8853), + [sym_end_statement] = ACTIONS(8855), + [aux_sym_on_goto_statement_token1] = ACTIONS(8853), + [aux_sym_on_goto_statement_token2] = ACTIONS(8853), + [aux_sym_on_error_statement_token2] = ACTIONS(8853), + [sym__ambiguous_redim_statement] = ACTIONS(8855), + [aux_sym_erase_statement_token1] = ACTIONS(8853), + [aux_sym_open_statement_token1] = ACTIONS(8853), + [aux_sym_file_mode_token2] = ACTIONS(8853), + [aux_sym_file_access_token2] = ACTIONS(8853), + [aux_sym_file_lock_token2] = ACTIONS(8853), + [aux_sym_print_statement_token1] = ACTIONS(8853), + [anon_sym_PLUS] = ACTIONS(8855), + [anon_sym_DASH] = ACTIONS(8853), + [anon_sym_QMARK] = ACTIONS(8855), + [aux_sym_close_statement_token1] = ACTIONS(8853), + [aux_sym_put_statement_token1] = ACTIONS(8853), + [aux_sym_unlock_statement_token1] = ACTIONS(8853), + [aux_sym_seek_statement_token1] = ACTIONS(8853), + [sym_reset_statement] = ACTIONS(8853), + [aux_sym_raise_event_statement_token1] = ACTIONS(8853), + [sym_stop_statement] = ACTIONS(8853), + [sym_beep_statement] = ACTIONS(8853), + [aux_sym_unload_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token2] = ACTIONS(8853), + [aux_sym_def_type_statement_token3] = ACTIONS(8853), + [aux_sym_def_type_statement_token4] = ACTIONS(8853), + [aux_sym_def_type_statement_token5] = ACTIONS(8853), + [aux_sym_def_type_statement_token6] = ACTIONS(8853), + [aux_sym_def_type_statement_token7] = ACTIONS(8853), + [aux_sym_def_type_statement_token8] = ACTIONS(8853), + [aux_sym_def_type_statement_token9] = ACTIONS(8853), + [aux_sym_def_type_statement_token10] = ACTIONS(8853), + [aux_sym_def_type_statement_token11] = ACTIONS(8853), + [aux_sym_def_type_statement_token12] = ACTIONS(8853), + [aux_sym_def_type_statement_token13] = ACTIONS(8853), + [aux_sym_def_type_statement_token14] = ACTIONS(8853), + [aux_sym_call_statement_token1] = ACTIONS(8853), + [sym__ambiguous_call_statement] = ACTIONS(8853), + [aux_sym_addressof_expression_token1] = ACTIONS(8853), + [aux_sym_type_of_expression_token1] = ACTIONS(8853), + [aux_sym_unary_expression_token1] = ACTIONS(8853), + [sym_string_literal] = ACTIONS(8855), + [sym_number_literal] = ACTIONS(8855), + [aux_sym_boolean_literal_token1] = ACTIONS(8853), + [aux_sym_boolean_literal_token2] = ACTIONS(8853), + [sym_nothing_literal] = ACTIONS(8853), + [sym_null_literal] = ACTIONS(8853), + [sym_empty_literal] = ACTIONS(8853), + [sym_date_literal] = ACTIONS(8855), + [anon_sym_POUND] = ACTIONS(8853), + }, + [STATE(6481)] = { + [sym_identifier] = ACTIONS(8857), + [sym_newline] = ACTIONS(8859), + [anon_sym_COLON] = ACTIONS(8859), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8857), + [aux_sym_frm_property_statement_token1] = ACTIONS(8857), + [anon_sym_DOT] = ACTIONS(8857), + [anon_sym_BANG] = ACTIONS(8859), + [aux_sym__attribute_identifier_token1] = ACTIONS(8857), + [aux_sym_option_statement_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8857), + [aux_sym_preprocessor_const_token1] = ACTIONS(8857), + [sym_static_modifier] = ACTIONS(8857), + [sym__dim_keyword] = ACTIONS(8857), + [sym__redim_keyword] = ACTIONS(8857), + [aux_sym_get_accessor_token1] = ACTIONS(8857), + [aux_sym_set_accessor_token1] = ACTIONS(8857), + [aux_sym_const_declaration_token1] = ACTIONS(8857), + [anon_sym_LPAREN] = ACTIONS(8859), + [aux_sym_as_type_clause_token2] = ACTIONS(8857), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8857), + [aux_sym_visibility_token1] = ACTIONS(8857), + [aux_sym_visibility_token2] = ACTIONS(8857), + [aux_sym_elseif_fragment_token1] = ACTIONS(8857), + [aux_sym_else_fragment_token1] = ACTIONS(8857), + [aux_sym_select_statement_token1] = ACTIONS(8857), + [aux_sym_select_statement_token2] = ACTIONS(8857), + [aux_sym__for_header_token1] = ACTIONS(8857), + [aux_sym_do_statement_token1] = ACTIONS(8857), + [aux_sym_do_condition_token1] = ACTIONS(8857), + [aux_sym_with_statement_token1] = ACTIONS(8857), + [aux_sym_exit_statement_token1] = ACTIONS(8857), + [sym_end_statement] = ACTIONS(8859), + [aux_sym_on_goto_statement_token1] = ACTIONS(8857), + [aux_sym_on_goto_statement_token2] = ACTIONS(8857), + [aux_sym_on_error_statement_token2] = ACTIONS(8857), + [sym__ambiguous_redim_statement] = ACTIONS(8859), + [aux_sym_erase_statement_token1] = ACTIONS(8857), + [aux_sym_open_statement_token1] = ACTIONS(8857), + [aux_sym_file_mode_token2] = ACTIONS(8857), + [aux_sym_file_access_token2] = ACTIONS(8857), + [aux_sym_file_lock_token2] = ACTIONS(8857), + [aux_sym_print_statement_token1] = ACTIONS(8857), + [anon_sym_PLUS] = ACTIONS(8859), + [anon_sym_DASH] = ACTIONS(8857), + [anon_sym_QMARK] = ACTIONS(8859), + [aux_sym_close_statement_token1] = ACTIONS(8857), + [aux_sym_put_statement_token1] = ACTIONS(8857), + [aux_sym_unlock_statement_token1] = ACTIONS(8857), + [aux_sym_seek_statement_token1] = ACTIONS(8857), + [sym_reset_statement] = ACTIONS(8857), + [aux_sym_raise_event_statement_token1] = ACTIONS(8857), + [sym_stop_statement] = ACTIONS(8857), + [sym_beep_statement] = ACTIONS(8857), + [aux_sym_unload_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token2] = ACTIONS(8857), + [aux_sym_def_type_statement_token3] = ACTIONS(8857), + [aux_sym_def_type_statement_token4] = ACTIONS(8857), + [aux_sym_def_type_statement_token5] = ACTIONS(8857), + [aux_sym_def_type_statement_token6] = ACTIONS(8857), + [aux_sym_def_type_statement_token7] = ACTIONS(8857), + [aux_sym_def_type_statement_token8] = ACTIONS(8857), + [aux_sym_def_type_statement_token9] = ACTIONS(8857), + [aux_sym_def_type_statement_token10] = ACTIONS(8857), + [aux_sym_def_type_statement_token11] = ACTIONS(8857), + [aux_sym_def_type_statement_token12] = ACTIONS(8857), + [aux_sym_def_type_statement_token13] = ACTIONS(8857), + [aux_sym_def_type_statement_token14] = ACTIONS(8857), + [aux_sym_call_statement_token1] = ACTIONS(8857), + [sym__ambiguous_call_statement] = ACTIONS(8857), + [aux_sym_addressof_expression_token1] = ACTIONS(8857), + [aux_sym_type_of_expression_token1] = ACTIONS(8857), + [aux_sym_unary_expression_token1] = ACTIONS(8857), + [sym_string_literal] = ACTIONS(8859), + [sym_number_literal] = ACTIONS(8859), + [aux_sym_boolean_literal_token1] = ACTIONS(8857), + [aux_sym_boolean_literal_token2] = ACTIONS(8857), + [sym_nothing_literal] = ACTIONS(8857), + [sym_null_literal] = ACTIONS(8857), + [sym_empty_literal] = ACTIONS(8857), + [sym_date_literal] = ACTIONS(8859), + [anon_sym_POUND] = ACTIONS(8857), + }, + [STATE(6482)] = { + [sym_identifier] = ACTIONS(9670), + [sym_newline] = ACTIONS(9672), + [anon_sym_COLON] = ACTIONS(9672), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9670), + [aux_sym_frm_property_statement_token1] = ACTIONS(9670), + [anon_sym_DOT] = ACTIONS(9670), + [anon_sym_BANG] = ACTIONS(9672), + [aux_sym__attribute_identifier_token1] = ACTIONS(9670), + [aux_sym_option_statement_token3] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9670), + [aux_sym_preprocessor_const_token1] = ACTIONS(9670), + [sym_static_modifier] = ACTIONS(9670), + [sym__dim_keyword] = ACTIONS(9670), + [sym__redim_keyword] = ACTIONS(9670), + [aux_sym_get_accessor_token1] = ACTIONS(9670), + [aux_sym_set_accessor_token1] = ACTIONS(9670), + [aux_sym_const_declaration_token1] = ACTIONS(9670), + [anon_sym_LPAREN] = ACTIONS(9672), + [aux_sym_as_type_clause_token2] = ACTIONS(9670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9670), + [aux_sym_visibility_token1] = ACTIONS(9670), + [aux_sym_visibility_token2] = ACTIONS(9670), + [aux_sym_elseif_fragment_token1] = ACTIONS(9670), + [aux_sym_else_fragment_token1] = ACTIONS(9670), + [aux_sym_select_statement_token1] = ACTIONS(9670), + [aux_sym__for_header_token1] = ACTIONS(9670), + [aux_sym_do_statement_token1] = ACTIONS(9670), + [aux_sym_do_statement_token2] = ACTIONS(9670), + [aux_sym_do_condition_token1] = ACTIONS(9670), + [aux_sym_with_statement_token1] = ACTIONS(9670), + [aux_sym_exit_statement_token1] = ACTIONS(9670), + [sym_end_statement] = ACTIONS(9672), + [aux_sym_on_goto_statement_token1] = ACTIONS(9670), + [aux_sym_on_goto_statement_token2] = ACTIONS(9670), + [aux_sym_on_error_statement_token2] = ACTIONS(9670), + [sym__ambiguous_redim_statement] = ACTIONS(9672), + [aux_sym_erase_statement_token1] = ACTIONS(9670), + [aux_sym_open_statement_token1] = ACTIONS(9670), + [aux_sym_file_mode_token2] = ACTIONS(9670), + [aux_sym_file_access_token2] = ACTIONS(9670), + [aux_sym_file_lock_token2] = ACTIONS(9670), + [aux_sym_print_statement_token1] = ACTIONS(9670), + [anon_sym_PLUS] = ACTIONS(9672), + [anon_sym_DASH] = ACTIONS(9670), + [anon_sym_QMARK] = ACTIONS(9672), + [aux_sym_close_statement_token1] = ACTIONS(9670), + [aux_sym_put_statement_token1] = ACTIONS(9670), + [aux_sym_unlock_statement_token1] = ACTIONS(9670), + [aux_sym_seek_statement_token1] = ACTIONS(9670), + [sym_reset_statement] = ACTIONS(9670), + [aux_sym_raise_event_statement_token1] = ACTIONS(9670), + [sym_stop_statement] = ACTIONS(9670), + [sym_beep_statement] = ACTIONS(9670), + [aux_sym_unload_statement_token1] = ACTIONS(9670), + [aux_sym_def_type_statement_token1] = ACTIONS(9670), + [aux_sym_def_type_statement_token2] = ACTIONS(9670), + [aux_sym_def_type_statement_token3] = ACTIONS(9670), + [aux_sym_def_type_statement_token4] = ACTIONS(9670), + [aux_sym_def_type_statement_token5] = ACTIONS(9670), + [aux_sym_def_type_statement_token6] = ACTIONS(9670), + [aux_sym_def_type_statement_token7] = ACTIONS(9670), + [aux_sym_def_type_statement_token8] = ACTIONS(9670), + [aux_sym_def_type_statement_token9] = ACTIONS(9670), + [aux_sym_def_type_statement_token10] = ACTIONS(9670), + [aux_sym_def_type_statement_token11] = ACTIONS(9670), + [aux_sym_def_type_statement_token12] = ACTIONS(9670), + [aux_sym_def_type_statement_token13] = ACTIONS(9670), + [aux_sym_def_type_statement_token14] = ACTIONS(9670), + [aux_sym_call_statement_token1] = ACTIONS(9670), + [sym__ambiguous_call_statement] = ACTIONS(9670), + [aux_sym_addressof_expression_token1] = ACTIONS(9670), + [aux_sym_type_of_expression_token1] = ACTIONS(9670), + [aux_sym_unary_expression_token1] = ACTIONS(9670), + [sym_string_literal] = ACTIONS(9672), + [sym_number_literal] = ACTIONS(9672), + [aux_sym_boolean_literal_token1] = ACTIONS(9670), + [aux_sym_boolean_literal_token2] = ACTIONS(9670), + [sym_nothing_literal] = ACTIONS(9670), + [sym_null_literal] = ACTIONS(9670), + [sym_empty_literal] = ACTIONS(9670), + [sym_date_literal] = ACTIONS(9672), + [anon_sym_POUND] = ACTIONS(9670), + }, + [STATE(6483)] = { + [sym_identifier] = ACTIONS(8733), + [sym_newline] = ACTIONS(8735), + [anon_sym_COLON] = ACTIONS(8735), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8733), + [aux_sym_frm_property_statement_token1] = ACTIONS(8733), + [anon_sym_DOT] = ACTIONS(8733), + [anon_sym_BANG] = ACTIONS(8735), + [aux_sym__attribute_identifier_token1] = ACTIONS(8733), + [aux_sym_option_statement_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8733), + [aux_sym_preprocessor_const_token1] = ACTIONS(8733), + [sym_static_modifier] = ACTIONS(8733), + [sym__dim_keyword] = ACTIONS(8733), + [sym__redim_keyword] = ACTIONS(8733), + [aux_sym_get_accessor_token1] = ACTIONS(8733), + [aux_sym_set_accessor_token1] = ACTIONS(8733), + [aux_sym_const_declaration_token1] = ACTIONS(8733), + [anon_sym_LPAREN] = ACTIONS(8735), + [aux_sym_as_type_clause_token2] = ACTIONS(8733), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8733), + [aux_sym_visibility_token1] = ACTIONS(8733), + [aux_sym_visibility_token2] = ACTIONS(8733), + [aux_sym_elseif_fragment_token1] = ACTIONS(8733), + [aux_sym_else_fragment_token1] = ACTIONS(10850), + [aux_sym_select_statement_token1] = ACTIONS(8733), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8733), + [aux_sym__for_header_token1] = ACTIONS(8733), + [aux_sym_do_statement_token1] = ACTIONS(8733), + [aux_sym_do_condition_token1] = ACTIONS(8733), + [aux_sym_with_statement_token1] = ACTIONS(8733), + [aux_sym_exit_statement_token1] = ACTIONS(8733), + [sym_end_statement] = ACTIONS(8735), + [aux_sym_on_goto_statement_token1] = ACTIONS(8733), + [aux_sym_on_goto_statement_token2] = ACTIONS(8733), + [aux_sym_on_error_statement_token2] = ACTIONS(8733), + [sym__ambiguous_redim_statement] = ACTIONS(8735), + [aux_sym_erase_statement_token1] = ACTIONS(8733), + [aux_sym_open_statement_token1] = ACTIONS(8733), + [aux_sym_file_mode_token2] = ACTIONS(8733), + [aux_sym_file_access_token2] = ACTIONS(8733), + [aux_sym_file_lock_token2] = ACTIONS(8733), + [aux_sym_print_statement_token1] = ACTIONS(8733), + [anon_sym_PLUS] = ACTIONS(8735), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_QMARK] = ACTIONS(8735), + [aux_sym_close_statement_token1] = ACTIONS(8733), + [aux_sym_put_statement_token1] = ACTIONS(8733), + [aux_sym_unlock_statement_token1] = ACTIONS(8733), + [aux_sym_seek_statement_token1] = ACTIONS(8733), + [sym_reset_statement] = ACTIONS(8733), + [aux_sym_raise_event_statement_token1] = ACTIONS(8733), + [sym_stop_statement] = ACTIONS(8733), + [sym_beep_statement] = ACTIONS(8733), + [aux_sym_unload_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token2] = ACTIONS(8733), + [aux_sym_def_type_statement_token3] = ACTIONS(8733), + [aux_sym_def_type_statement_token4] = ACTIONS(8733), + [aux_sym_def_type_statement_token5] = ACTIONS(8733), + [aux_sym_def_type_statement_token6] = ACTIONS(8733), + [aux_sym_def_type_statement_token7] = ACTIONS(8733), + [aux_sym_def_type_statement_token8] = ACTIONS(8733), + [aux_sym_def_type_statement_token9] = ACTIONS(8733), + [aux_sym_def_type_statement_token10] = ACTIONS(8733), + [aux_sym_def_type_statement_token11] = ACTIONS(8733), + [aux_sym_def_type_statement_token12] = ACTIONS(8733), + [aux_sym_def_type_statement_token13] = ACTIONS(8733), + [aux_sym_def_type_statement_token14] = ACTIONS(8733), + [aux_sym_call_statement_token1] = ACTIONS(8733), + [sym__ambiguous_call_statement] = ACTIONS(8733), + [aux_sym_addressof_expression_token1] = ACTIONS(8733), + [aux_sym_type_of_expression_token1] = ACTIONS(8733), + [aux_sym_unary_expression_token1] = ACTIONS(8733), + [sym_string_literal] = ACTIONS(8735), + [sym_number_literal] = ACTIONS(8735), + [aux_sym_boolean_literal_token1] = ACTIONS(8733), + [aux_sym_boolean_literal_token2] = ACTIONS(8733), + [sym_nothing_literal] = ACTIONS(8733), + [sym_null_literal] = ACTIONS(8733), + [sym_empty_literal] = ACTIONS(8733), + [sym_date_literal] = ACTIONS(8735), + [anon_sym_POUND] = ACTIONS(8733), + }, + [STATE(6484)] = { + [sym_identifier] = ACTIONS(8861), + [sym_newline] = ACTIONS(8863), + [anon_sym_COLON] = ACTIONS(8863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8861), + [aux_sym_frm_property_statement_token1] = ACTIONS(8861), + [anon_sym_DOT] = ACTIONS(8861), + [anon_sym_BANG] = ACTIONS(8863), + [aux_sym__attribute_identifier_token1] = ACTIONS(8861), + [aux_sym_option_statement_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8861), + [aux_sym_preprocessor_const_token1] = ACTIONS(8861), + [sym_static_modifier] = ACTIONS(8861), + [sym__dim_keyword] = ACTIONS(8861), + [sym__redim_keyword] = ACTIONS(8861), + [aux_sym_get_accessor_token1] = ACTIONS(8861), + [aux_sym_set_accessor_token1] = ACTIONS(8861), + [aux_sym_const_declaration_token1] = ACTIONS(8861), + [anon_sym_LPAREN] = ACTIONS(8863), + [aux_sym_as_type_clause_token2] = ACTIONS(8861), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8861), + [aux_sym_visibility_token1] = ACTIONS(8861), + [aux_sym_visibility_token2] = ACTIONS(8861), + [aux_sym_elseif_fragment_token1] = ACTIONS(8861), + [aux_sym_else_fragment_token1] = ACTIONS(8861), + [aux_sym_select_statement_token1] = ACTIONS(8861), + [aux_sym_select_statement_token2] = ACTIONS(8861), + [aux_sym__for_header_token1] = ACTIONS(8861), + [aux_sym_do_statement_token1] = ACTIONS(8861), + [aux_sym_do_condition_token1] = ACTIONS(8861), + [aux_sym_with_statement_token1] = ACTIONS(8861), + [aux_sym_exit_statement_token1] = ACTIONS(8861), + [sym_end_statement] = ACTIONS(8863), + [aux_sym_on_goto_statement_token1] = ACTIONS(8861), + [aux_sym_on_goto_statement_token2] = ACTIONS(8861), + [aux_sym_on_error_statement_token2] = ACTIONS(8861), + [sym__ambiguous_redim_statement] = ACTIONS(8863), + [aux_sym_erase_statement_token1] = ACTIONS(8861), + [aux_sym_open_statement_token1] = ACTIONS(8861), + [aux_sym_file_mode_token2] = ACTIONS(8861), + [aux_sym_file_access_token2] = ACTIONS(8861), + [aux_sym_file_lock_token2] = ACTIONS(8861), + [aux_sym_print_statement_token1] = ACTIONS(8861), + [anon_sym_PLUS] = ACTIONS(8863), + [anon_sym_DASH] = ACTIONS(8861), + [anon_sym_QMARK] = ACTIONS(8863), + [aux_sym_close_statement_token1] = ACTIONS(8861), + [aux_sym_put_statement_token1] = ACTIONS(8861), + [aux_sym_unlock_statement_token1] = ACTIONS(8861), + [aux_sym_seek_statement_token1] = ACTIONS(8861), + [sym_reset_statement] = ACTIONS(8861), + [aux_sym_raise_event_statement_token1] = ACTIONS(8861), + [sym_stop_statement] = ACTIONS(8861), + [sym_beep_statement] = ACTIONS(8861), + [aux_sym_unload_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token2] = ACTIONS(8861), + [aux_sym_def_type_statement_token3] = ACTIONS(8861), + [aux_sym_def_type_statement_token4] = ACTIONS(8861), + [aux_sym_def_type_statement_token5] = ACTIONS(8861), + [aux_sym_def_type_statement_token6] = ACTIONS(8861), + [aux_sym_def_type_statement_token7] = ACTIONS(8861), + [aux_sym_def_type_statement_token8] = ACTIONS(8861), + [aux_sym_def_type_statement_token9] = ACTIONS(8861), + [aux_sym_def_type_statement_token10] = ACTIONS(8861), + [aux_sym_def_type_statement_token11] = ACTIONS(8861), + [aux_sym_def_type_statement_token12] = ACTIONS(8861), + [aux_sym_def_type_statement_token13] = ACTIONS(8861), + [aux_sym_def_type_statement_token14] = ACTIONS(8861), + [aux_sym_call_statement_token1] = ACTIONS(8861), + [sym__ambiguous_call_statement] = ACTIONS(8861), + [aux_sym_addressof_expression_token1] = ACTIONS(8861), + [aux_sym_type_of_expression_token1] = ACTIONS(8861), + [aux_sym_unary_expression_token1] = ACTIONS(8861), + [sym_string_literal] = ACTIONS(8863), + [sym_number_literal] = ACTIONS(8863), + [aux_sym_boolean_literal_token1] = ACTIONS(8861), + [aux_sym_boolean_literal_token2] = ACTIONS(8861), + [sym_nothing_literal] = ACTIONS(8861), + [sym_null_literal] = ACTIONS(8861), + [sym_empty_literal] = ACTIONS(8861), + [sym_date_literal] = ACTIONS(8863), + [anon_sym_POUND] = ACTIONS(8861), + }, + [STATE(6485)] = { + [sym_identifier] = ACTIONS(8903), + [sym_newline] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8903), + [aux_sym_frm_property_statement_token1] = ACTIONS(8903), + [anon_sym_DOT] = ACTIONS(8903), + [anon_sym_BANG] = ACTIONS(8905), + [aux_sym__attribute_identifier_token1] = ACTIONS(8903), + [aux_sym_option_statement_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8903), + [aux_sym_preprocessor_const_token1] = ACTIONS(8903), + [sym_static_modifier] = ACTIONS(8903), + [sym__dim_keyword] = ACTIONS(8903), + [sym__redim_keyword] = ACTIONS(8903), + [aux_sym_get_accessor_token1] = ACTIONS(8903), + [aux_sym_set_accessor_token1] = ACTIONS(8903), + [aux_sym_const_declaration_token1] = ACTIONS(8903), + [anon_sym_LPAREN] = ACTIONS(8905), + [aux_sym_as_type_clause_token2] = ACTIONS(8903), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8903), + [aux_sym_visibility_token1] = ACTIONS(8903), + [aux_sym_visibility_token2] = ACTIONS(8903), + [aux_sym_elseif_fragment_token1] = ACTIONS(8903), + [aux_sym_else_fragment_token1] = ACTIONS(8903), + [aux_sym_select_statement_token1] = ACTIONS(8903), + [aux_sym_select_statement_token2] = ACTIONS(8903), + [aux_sym__for_header_token1] = ACTIONS(8903), + [aux_sym_do_statement_token1] = ACTIONS(8903), + [aux_sym_do_condition_token1] = ACTIONS(8903), + [aux_sym_with_statement_token1] = ACTIONS(8903), + [aux_sym_exit_statement_token1] = ACTIONS(8903), + [sym_end_statement] = ACTIONS(8905), + [aux_sym_on_goto_statement_token1] = ACTIONS(8903), + [aux_sym_on_goto_statement_token2] = ACTIONS(8903), + [aux_sym_on_error_statement_token2] = ACTIONS(8903), + [sym__ambiguous_redim_statement] = ACTIONS(8905), + [aux_sym_erase_statement_token1] = ACTIONS(8903), + [aux_sym_open_statement_token1] = ACTIONS(8903), + [aux_sym_file_mode_token2] = ACTIONS(8903), + [aux_sym_file_access_token2] = ACTIONS(8903), + [aux_sym_file_lock_token2] = ACTIONS(8903), + [aux_sym_print_statement_token1] = ACTIONS(8903), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_DASH] = ACTIONS(8903), + [anon_sym_QMARK] = ACTIONS(8905), + [aux_sym_close_statement_token1] = ACTIONS(8903), + [aux_sym_put_statement_token1] = ACTIONS(8903), + [aux_sym_unlock_statement_token1] = ACTIONS(8903), + [aux_sym_seek_statement_token1] = ACTIONS(8903), + [sym_reset_statement] = ACTIONS(8903), + [aux_sym_raise_event_statement_token1] = ACTIONS(8903), + [sym_stop_statement] = ACTIONS(8903), + [sym_beep_statement] = ACTIONS(8903), + [aux_sym_unload_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token2] = ACTIONS(8903), + [aux_sym_def_type_statement_token3] = ACTIONS(8903), + [aux_sym_def_type_statement_token4] = ACTIONS(8903), + [aux_sym_def_type_statement_token5] = ACTIONS(8903), + [aux_sym_def_type_statement_token6] = ACTIONS(8903), + [aux_sym_def_type_statement_token7] = ACTIONS(8903), + [aux_sym_def_type_statement_token8] = ACTIONS(8903), + [aux_sym_def_type_statement_token9] = ACTIONS(8903), + [aux_sym_def_type_statement_token10] = ACTIONS(8903), + [aux_sym_def_type_statement_token11] = ACTIONS(8903), + [aux_sym_def_type_statement_token12] = ACTIONS(8903), + [aux_sym_def_type_statement_token13] = ACTIONS(8903), + [aux_sym_def_type_statement_token14] = ACTIONS(8903), + [aux_sym_call_statement_token1] = ACTIONS(8903), + [sym__ambiguous_call_statement] = ACTIONS(8903), + [aux_sym_addressof_expression_token1] = ACTIONS(8903), + [aux_sym_type_of_expression_token1] = ACTIONS(8903), + [aux_sym_unary_expression_token1] = ACTIONS(8903), + [sym_string_literal] = ACTIONS(8905), + [sym_number_literal] = ACTIONS(8905), + [aux_sym_boolean_literal_token1] = ACTIONS(8903), + [aux_sym_boolean_literal_token2] = ACTIONS(8903), + [sym_nothing_literal] = ACTIONS(8903), + [sym_null_literal] = ACTIONS(8903), + [sym_empty_literal] = ACTIONS(8903), + [sym_date_literal] = ACTIONS(8905), + [anon_sym_POUND] = ACTIONS(8903), + }, + [STATE(6486)] = { + [sym_identifier] = ACTIONS(8456), + [sym_newline] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8458), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8456), + [aux_sym_frm_property_statement_token1] = ACTIONS(8456), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_BANG] = ACTIONS(8458), + [aux_sym__attribute_identifier_token1] = ACTIONS(8456), + [aux_sym_option_statement_token3] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8456), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8456), + [aux_sym_preprocessor_const_token1] = ACTIONS(8456), + [sym_static_modifier] = ACTIONS(8456), + [sym__dim_keyword] = ACTIONS(8456), + [sym__redim_keyword] = ACTIONS(8456), + [aux_sym_get_accessor_token1] = ACTIONS(8456), + [aux_sym_set_accessor_token1] = ACTIONS(8456), + [anon_sym_COMMA] = ACTIONS(8458), + [aux_sym_const_declaration_token1] = ACTIONS(8456), + [anon_sym_LPAREN] = ACTIONS(8458), + [aux_sym_as_type_clause_token2] = ACTIONS(8456), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8456), + [aux_sym_visibility_token1] = ACTIONS(8456), + [aux_sym_visibility_token2] = ACTIONS(8456), + [aux_sym_elseif_fragment_token1] = ACTIONS(8456), + [aux_sym_else_fragment_token1] = ACTIONS(8456), + [aux_sym_select_statement_token1] = ACTIONS(8456), + [aux_sym__for_header_token1] = ACTIONS(8456), + [aux_sym_do_statement_token1] = ACTIONS(8456), + [aux_sym_do_condition_token1] = ACTIONS(8456), + [aux_sym_with_statement_token1] = ACTIONS(8456), + [aux_sym_exit_statement_token1] = ACTIONS(8456), + [sym_end_statement] = ACTIONS(8458), + [aux_sym_on_goto_statement_token1] = ACTIONS(8456), + [aux_sym_on_goto_statement_token2] = ACTIONS(8456), + [aux_sym_on_error_statement_token2] = ACTIONS(8456), + [sym__ambiguous_redim_statement] = ACTIONS(8458), + [aux_sym_erase_statement_token1] = ACTIONS(8456), + [aux_sym_open_statement_token1] = ACTIONS(8456), + [aux_sym_file_mode_token2] = ACTIONS(8456), + [aux_sym_file_access_token2] = ACTIONS(8456), + [aux_sym_file_lock_token2] = ACTIONS(8456), + [aux_sym_print_statement_token1] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8458), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8458), + [aux_sym_close_statement_token1] = ACTIONS(8456), + [aux_sym_put_statement_token1] = ACTIONS(8456), + [aux_sym_unlock_statement_token1] = ACTIONS(8456), + [aux_sym_seek_statement_token1] = ACTIONS(8456), + [sym_reset_statement] = ACTIONS(8456), + [aux_sym_raise_event_statement_token1] = ACTIONS(8456), + [sym_stop_statement] = ACTIONS(8456), + [sym_beep_statement] = ACTIONS(8456), + [aux_sym_unload_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token1] = ACTIONS(8456), + [aux_sym_def_type_statement_token2] = ACTIONS(8456), + [aux_sym_def_type_statement_token3] = ACTIONS(8456), + [aux_sym_def_type_statement_token4] = ACTIONS(8456), + [aux_sym_def_type_statement_token5] = ACTIONS(8456), + [aux_sym_def_type_statement_token6] = ACTIONS(8456), + [aux_sym_def_type_statement_token7] = ACTIONS(8456), + [aux_sym_def_type_statement_token8] = ACTIONS(8456), + [aux_sym_def_type_statement_token9] = ACTIONS(8456), + [aux_sym_def_type_statement_token10] = ACTIONS(8456), + [aux_sym_def_type_statement_token11] = ACTIONS(8456), + [aux_sym_def_type_statement_token12] = ACTIONS(8456), + [aux_sym_def_type_statement_token13] = ACTIONS(8456), + [aux_sym_def_type_statement_token14] = ACTIONS(8456), + [aux_sym_call_statement_token1] = ACTIONS(8456), + [sym__ambiguous_call_statement] = ACTIONS(8456), + [aux_sym_addressof_expression_token1] = ACTIONS(8456), + [aux_sym_type_of_expression_token1] = ACTIONS(8456), + [aux_sym_unary_expression_token1] = ACTIONS(8456), + [sym_string_literal] = ACTIONS(8458), + [sym_number_literal] = ACTIONS(8458), + [aux_sym_boolean_literal_token1] = ACTIONS(8456), + [aux_sym_boolean_literal_token2] = ACTIONS(8456), + [sym_nothing_literal] = ACTIONS(8456), + [sym_null_literal] = ACTIONS(8456), + [sym_empty_literal] = ACTIONS(8456), + [sym_date_literal] = ACTIONS(8458), + [anon_sym_POUND] = ACTIONS(8456), + }, + [STATE(6487)] = { + [sym_identifier] = ACTIONS(6629), + [sym_newline] = ACTIONS(6631), + [anon_sym_COLON] = ACTIONS(6631), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6629), + [aux_sym_frm_property_statement_token1] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6631), + [aux_sym__attribute_identifier_token1] = ACTIONS(6629), + [aux_sym_option_statement_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6629), + [aux_sym_preprocessor_const_token1] = ACTIONS(6629), + [sym_static_modifier] = ACTIONS(6629), + [sym__dim_keyword] = ACTIONS(6629), + [sym__redim_keyword] = ACTIONS(6629), + [aux_sym_get_accessor_token1] = ACTIONS(6629), + [aux_sym_set_accessor_token1] = ACTIONS(6629), + [aux_sym_const_declaration_token1] = ACTIONS(6629), + [anon_sym_LPAREN] = ACTIONS(6631), + [aux_sym_as_type_clause_token2] = ACTIONS(6629), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6629), + [aux_sym_visibility_token1] = ACTIONS(6629), + [aux_sym_visibility_token2] = ACTIONS(6629), + [aux_sym_elseif_fragment_token1] = ACTIONS(6629), + [aux_sym_else_fragment_token1] = ACTIONS(6629), + [aux_sym_select_statement_token1] = ACTIONS(6629), + [aux_sym__multiline_for_tail_token1] = ACTIONS(6629), + [aux_sym__for_header_token1] = ACTIONS(6629), + [aux_sym_do_statement_token1] = ACTIONS(6629), + [aux_sym_do_condition_token1] = ACTIONS(6629), + [aux_sym_with_statement_token1] = ACTIONS(6629), + [aux_sym_exit_statement_token1] = ACTIONS(6629), + [sym_end_statement] = ACTIONS(6631), + [aux_sym_on_goto_statement_token1] = ACTIONS(6629), + [aux_sym_on_goto_statement_token2] = ACTIONS(6629), + [aux_sym_on_error_statement_token2] = ACTIONS(6629), + [sym__ambiguous_redim_statement] = ACTIONS(6631), + [aux_sym_erase_statement_token1] = ACTIONS(6629), + [aux_sym_open_statement_token1] = ACTIONS(6629), + [aux_sym_file_mode_token2] = ACTIONS(6629), + [aux_sym_file_access_token2] = ACTIONS(6629), + [aux_sym_file_lock_token2] = ACTIONS(6629), + [aux_sym_print_statement_token1] = ACTIONS(6629), + [anon_sym_PLUS] = ACTIONS(6631), + [anon_sym_DASH] = ACTIONS(6629), + [anon_sym_QMARK] = ACTIONS(6631), + [aux_sym_close_statement_token1] = ACTIONS(6629), + [aux_sym_put_statement_token1] = ACTIONS(6629), + [aux_sym_unlock_statement_token1] = ACTIONS(6629), + [aux_sym_seek_statement_token1] = ACTIONS(6629), + [sym_reset_statement] = ACTIONS(6629), + [aux_sym_raise_event_statement_token1] = ACTIONS(6629), + [sym_stop_statement] = ACTIONS(6629), + [sym_beep_statement] = ACTIONS(6629), + [aux_sym_unload_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token2] = ACTIONS(6629), + [aux_sym_def_type_statement_token3] = ACTIONS(6629), + [aux_sym_def_type_statement_token4] = ACTIONS(6629), + [aux_sym_def_type_statement_token5] = ACTIONS(6629), + [aux_sym_def_type_statement_token6] = ACTIONS(6629), + [aux_sym_def_type_statement_token7] = ACTIONS(6629), + [aux_sym_def_type_statement_token8] = ACTIONS(6629), + [aux_sym_def_type_statement_token9] = ACTIONS(6629), + [aux_sym_def_type_statement_token10] = ACTIONS(6629), + [aux_sym_def_type_statement_token11] = ACTIONS(6629), + [aux_sym_def_type_statement_token12] = ACTIONS(6629), + [aux_sym_def_type_statement_token13] = ACTIONS(6629), + [aux_sym_def_type_statement_token14] = ACTIONS(6629), + [aux_sym_call_statement_token1] = ACTIONS(6629), + [sym__ambiguous_call_statement] = ACTIONS(6629), + [aux_sym_addressof_expression_token1] = ACTIONS(6629), + [aux_sym_type_of_expression_token1] = ACTIONS(6629), + [aux_sym_unary_expression_token1] = ACTIONS(6629), + [sym_string_literal] = ACTIONS(6631), + [sym_number_literal] = ACTIONS(6631), + [aux_sym_boolean_literal_token1] = ACTIONS(6629), + [aux_sym_boolean_literal_token2] = ACTIONS(6629), + [sym_nothing_literal] = ACTIONS(6629), + [sym_null_literal] = ACTIONS(6629), + [sym_empty_literal] = ACTIONS(6629), + [sym_date_literal] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6629), + }, + [STATE(6488)] = { + [sym_identifier] = ACTIONS(8501), + [sym_newline] = ACTIONS(8503), + [anon_sym_COLON] = ACTIONS(8503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8501), + [aux_sym_frm_property_statement_token1] = ACTIONS(8501), + [anon_sym_DOT] = ACTIONS(8501), + [anon_sym_BANG] = ACTIONS(8503), + [aux_sym__attribute_identifier_token1] = ACTIONS(8501), + [aux_sym_option_statement_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8501), + [aux_sym_preprocessor_const_token1] = ACTIONS(8501), + [sym_static_modifier] = ACTIONS(8501), + [sym__dim_keyword] = ACTIONS(8501), + [sym__redim_keyword] = ACTIONS(8501), + [aux_sym_get_accessor_token1] = ACTIONS(8501), + [aux_sym_set_accessor_token1] = ACTIONS(8501), + [aux_sym_const_declaration_token1] = ACTIONS(8501), + [anon_sym_LPAREN] = ACTIONS(8503), + [aux_sym_as_type_clause_token2] = ACTIONS(8501), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8501), + [aux_sym_visibility_token1] = ACTIONS(8501), + [aux_sym_visibility_token2] = ACTIONS(8501), + [aux_sym_elseif_fragment_token1] = ACTIONS(8501), + [aux_sym_else_fragment_token1] = ACTIONS(8501), + [aux_sym_select_statement_token1] = ACTIONS(8501), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8501), + [aux_sym__for_header_token1] = ACTIONS(8501), + [aux_sym_do_statement_token1] = ACTIONS(8501), + [aux_sym_do_condition_token1] = ACTIONS(8501), + [aux_sym_with_statement_token1] = ACTIONS(8501), + [aux_sym_exit_statement_token1] = ACTIONS(8501), + [sym_end_statement] = ACTIONS(8503), + [aux_sym_on_goto_statement_token1] = ACTIONS(8501), + [aux_sym_on_goto_statement_token2] = ACTIONS(8501), + [aux_sym_on_error_statement_token2] = ACTIONS(8501), + [sym__ambiguous_redim_statement] = ACTIONS(8503), + [aux_sym_erase_statement_token1] = ACTIONS(8501), + [aux_sym_open_statement_token1] = ACTIONS(8501), + [aux_sym_file_mode_token2] = ACTIONS(8501), + [aux_sym_file_access_token2] = ACTIONS(8501), + [aux_sym_file_lock_token2] = ACTIONS(8501), + [aux_sym_print_statement_token1] = ACTIONS(8501), + [anon_sym_PLUS] = ACTIONS(8503), + [anon_sym_DASH] = ACTIONS(8501), + [anon_sym_QMARK] = ACTIONS(8503), + [aux_sym_close_statement_token1] = ACTIONS(8501), + [aux_sym_put_statement_token1] = ACTIONS(8501), + [aux_sym_unlock_statement_token1] = ACTIONS(8501), + [aux_sym_seek_statement_token1] = ACTIONS(8501), + [sym_reset_statement] = ACTIONS(8501), + [aux_sym_raise_event_statement_token1] = ACTIONS(8501), + [sym_stop_statement] = ACTIONS(8501), + [sym_beep_statement] = ACTIONS(8501), + [aux_sym_unload_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token2] = ACTIONS(8501), + [aux_sym_def_type_statement_token3] = ACTIONS(8501), + [aux_sym_def_type_statement_token4] = ACTIONS(8501), + [aux_sym_def_type_statement_token5] = ACTIONS(8501), + [aux_sym_def_type_statement_token6] = ACTIONS(8501), + [aux_sym_def_type_statement_token7] = ACTIONS(8501), + [aux_sym_def_type_statement_token8] = ACTIONS(8501), + [aux_sym_def_type_statement_token9] = ACTIONS(8501), + [aux_sym_def_type_statement_token10] = ACTIONS(8501), + [aux_sym_def_type_statement_token11] = ACTIONS(8501), + [aux_sym_def_type_statement_token12] = ACTIONS(8501), + [aux_sym_def_type_statement_token13] = ACTIONS(8501), + [aux_sym_def_type_statement_token14] = ACTIONS(8501), + [aux_sym_call_statement_token1] = ACTIONS(8501), + [sym__ambiguous_call_statement] = ACTIONS(8501), + [aux_sym_addressof_expression_token1] = ACTIONS(8501), + [aux_sym_type_of_expression_token1] = ACTIONS(8501), + [aux_sym_unary_expression_token1] = ACTIONS(8501), + [sym_string_literal] = ACTIONS(8503), + [sym_number_literal] = ACTIONS(8503), + [aux_sym_boolean_literal_token1] = ACTIONS(8501), + [aux_sym_boolean_literal_token2] = ACTIONS(8501), + [sym_nothing_literal] = ACTIONS(8501), + [sym_null_literal] = ACTIONS(8501), + [sym_empty_literal] = ACTIONS(8501), + [sym_date_literal] = ACTIONS(8503), + [anon_sym_POUND] = ACTIONS(8501), + }, + [STATE(6489)] = { + [sym_identifier] = ACTIONS(8911), + [sym_newline] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8911), + [aux_sym_frm_property_statement_token1] = ACTIONS(8911), + [anon_sym_DOT] = ACTIONS(8911), + [anon_sym_BANG] = ACTIONS(8913), + [aux_sym__attribute_identifier_token1] = ACTIONS(8911), + [aux_sym_option_statement_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8911), + [aux_sym_preprocessor_const_token1] = ACTIONS(8911), + [sym_static_modifier] = ACTIONS(8911), + [sym__dim_keyword] = ACTIONS(8911), + [sym__redim_keyword] = ACTIONS(8911), + [aux_sym_get_accessor_token1] = ACTIONS(8911), + [aux_sym_set_accessor_token1] = ACTIONS(8911), + [aux_sym_const_declaration_token1] = ACTIONS(8911), + [anon_sym_LPAREN] = ACTIONS(8913), + [aux_sym_as_type_clause_token2] = ACTIONS(8911), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8911), + [aux_sym_visibility_token1] = ACTIONS(8911), + [aux_sym_visibility_token2] = ACTIONS(8911), + [aux_sym_elseif_fragment_token1] = ACTIONS(8911), + [aux_sym_else_fragment_token1] = ACTIONS(8911), + [aux_sym_select_statement_token1] = ACTIONS(8911), + [aux_sym_select_statement_token2] = ACTIONS(8911), + [aux_sym__for_header_token1] = ACTIONS(8911), + [aux_sym_do_statement_token1] = ACTIONS(8911), + [aux_sym_do_condition_token1] = ACTIONS(8911), + [aux_sym_with_statement_token1] = ACTIONS(8911), + [aux_sym_exit_statement_token1] = ACTIONS(8911), + [sym_end_statement] = ACTIONS(8913), + [aux_sym_on_goto_statement_token1] = ACTIONS(8911), + [aux_sym_on_goto_statement_token2] = ACTIONS(8911), + [aux_sym_on_error_statement_token2] = ACTIONS(8911), + [sym__ambiguous_redim_statement] = ACTIONS(8913), + [aux_sym_erase_statement_token1] = ACTIONS(8911), + [aux_sym_open_statement_token1] = ACTIONS(8911), + [aux_sym_file_mode_token2] = ACTIONS(8911), + [aux_sym_file_access_token2] = ACTIONS(8911), + [aux_sym_file_lock_token2] = ACTIONS(8911), + [aux_sym_print_statement_token1] = ACTIONS(8911), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_DASH] = ACTIONS(8911), + [anon_sym_QMARK] = ACTIONS(8913), + [aux_sym_close_statement_token1] = ACTIONS(8911), + [aux_sym_put_statement_token1] = ACTIONS(8911), + [aux_sym_unlock_statement_token1] = ACTIONS(8911), + [aux_sym_seek_statement_token1] = ACTIONS(8911), + [sym_reset_statement] = ACTIONS(8911), + [aux_sym_raise_event_statement_token1] = ACTIONS(8911), + [sym_stop_statement] = ACTIONS(8911), + [sym_beep_statement] = ACTIONS(8911), + [aux_sym_unload_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token2] = ACTIONS(8911), + [aux_sym_def_type_statement_token3] = ACTIONS(8911), + [aux_sym_def_type_statement_token4] = ACTIONS(8911), + [aux_sym_def_type_statement_token5] = ACTIONS(8911), + [aux_sym_def_type_statement_token6] = ACTIONS(8911), + [aux_sym_def_type_statement_token7] = ACTIONS(8911), + [aux_sym_def_type_statement_token8] = ACTIONS(8911), + [aux_sym_def_type_statement_token9] = ACTIONS(8911), + [aux_sym_def_type_statement_token10] = ACTIONS(8911), + [aux_sym_def_type_statement_token11] = ACTIONS(8911), + [aux_sym_def_type_statement_token12] = ACTIONS(8911), + [aux_sym_def_type_statement_token13] = ACTIONS(8911), + [aux_sym_def_type_statement_token14] = ACTIONS(8911), + [aux_sym_call_statement_token1] = ACTIONS(8911), + [sym__ambiguous_call_statement] = ACTIONS(8911), + [aux_sym_addressof_expression_token1] = ACTIONS(8911), + [aux_sym_type_of_expression_token1] = ACTIONS(8911), + [aux_sym_unary_expression_token1] = ACTIONS(8911), + [sym_string_literal] = ACTIONS(8913), + [sym_number_literal] = ACTIONS(8913), + [aux_sym_boolean_literal_token1] = ACTIONS(8911), + [aux_sym_boolean_literal_token2] = ACTIONS(8911), + [sym_nothing_literal] = ACTIONS(8911), + [sym_null_literal] = ACTIONS(8911), + [sym_empty_literal] = ACTIONS(8911), + [sym_date_literal] = ACTIONS(8913), + [anon_sym_POUND] = ACTIONS(8911), + }, + [STATE(6490)] = { + [sym_identifier] = ACTIONS(8509), + [sym_newline] = ACTIONS(8511), + [anon_sym_COLON] = ACTIONS(8511), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8509), + [aux_sym_frm_property_statement_token1] = ACTIONS(8509), + [anon_sym_DOT] = ACTIONS(8509), + [anon_sym_BANG] = ACTIONS(8511), + [aux_sym__attribute_identifier_token1] = ACTIONS(8509), + [aux_sym_option_statement_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8509), + [aux_sym_preprocessor_const_token1] = ACTIONS(8509), + [sym_static_modifier] = ACTIONS(8509), + [sym__dim_keyword] = ACTIONS(8509), + [sym__redim_keyword] = ACTIONS(8509), + [aux_sym_get_accessor_token1] = ACTIONS(8509), + [aux_sym_set_accessor_token1] = ACTIONS(8509), + [aux_sym_const_declaration_token1] = ACTIONS(8509), + [anon_sym_LPAREN] = ACTIONS(8511), + [aux_sym_as_type_clause_token2] = ACTIONS(8509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8509), + [aux_sym_visibility_token1] = ACTIONS(8509), + [aux_sym_visibility_token2] = ACTIONS(8509), + [aux_sym_elseif_fragment_token1] = ACTIONS(8509), + [aux_sym_else_fragment_token1] = ACTIONS(8509), + [aux_sym_select_statement_token1] = ACTIONS(8509), + [aux_sym__for_header_token1] = ACTIONS(8509), + [aux_sym_do_statement_token1] = ACTIONS(8509), + [aux_sym_do_statement_token2] = ACTIONS(8509), + [aux_sym_do_condition_token1] = ACTIONS(8509), + [aux_sym_with_statement_token1] = ACTIONS(8509), + [aux_sym_exit_statement_token1] = ACTIONS(8509), + [sym_end_statement] = ACTIONS(8511), + [aux_sym_on_goto_statement_token1] = ACTIONS(8509), + [aux_sym_on_goto_statement_token2] = ACTIONS(8509), + [aux_sym_on_error_statement_token2] = ACTIONS(8509), + [sym__ambiguous_redim_statement] = ACTIONS(8511), + [aux_sym_erase_statement_token1] = ACTIONS(8509), + [aux_sym_open_statement_token1] = ACTIONS(8509), + [aux_sym_file_mode_token2] = ACTIONS(8509), + [aux_sym_file_access_token2] = ACTIONS(8509), + [aux_sym_file_lock_token2] = ACTIONS(8509), + [aux_sym_print_statement_token1] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(8511), + [anon_sym_DASH] = ACTIONS(8509), + [anon_sym_QMARK] = ACTIONS(8511), + [aux_sym_close_statement_token1] = ACTIONS(8509), + [aux_sym_put_statement_token1] = ACTIONS(8509), + [aux_sym_unlock_statement_token1] = ACTIONS(8509), + [aux_sym_seek_statement_token1] = ACTIONS(8509), + [sym_reset_statement] = ACTIONS(8509), + [aux_sym_raise_event_statement_token1] = ACTIONS(8509), + [sym_stop_statement] = ACTIONS(8509), + [sym_beep_statement] = ACTIONS(8509), + [aux_sym_unload_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token2] = ACTIONS(8509), + [aux_sym_def_type_statement_token3] = ACTIONS(8509), + [aux_sym_def_type_statement_token4] = ACTIONS(8509), + [aux_sym_def_type_statement_token5] = ACTIONS(8509), + [aux_sym_def_type_statement_token6] = ACTIONS(8509), + [aux_sym_def_type_statement_token7] = ACTIONS(8509), + [aux_sym_def_type_statement_token8] = ACTIONS(8509), + [aux_sym_def_type_statement_token9] = ACTIONS(8509), + [aux_sym_def_type_statement_token10] = ACTIONS(8509), + [aux_sym_def_type_statement_token11] = ACTIONS(8509), + [aux_sym_def_type_statement_token12] = ACTIONS(8509), + [aux_sym_def_type_statement_token13] = ACTIONS(8509), + [aux_sym_def_type_statement_token14] = ACTIONS(8509), + [aux_sym_call_statement_token1] = ACTIONS(8509), + [sym__ambiguous_call_statement] = ACTIONS(8509), + [aux_sym_addressof_expression_token1] = ACTIONS(8509), + [aux_sym_type_of_expression_token1] = ACTIONS(8509), + [aux_sym_unary_expression_token1] = ACTIONS(8509), + [sym_string_literal] = ACTIONS(8511), + [sym_number_literal] = ACTIONS(8511), + [aux_sym_boolean_literal_token1] = ACTIONS(8509), + [aux_sym_boolean_literal_token2] = ACTIONS(8509), + [sym_nothing_literal] = ACTIONS(8509), + [sym_null_literal] = ACTIONS(8509), + [sym_empty_literal] = ACTIONS(8509), + [sym_date_literal] = ACTIONS(8511), + [anon_sym_POUND] = ACTIONS(8509), + }, + [STATE(6491)] = { + [sym_identifier] = ACTIONS(8509), + [sym_newline] = ACTIONS(8511), + [anon_sym_COLON] = ACTIONS(8511), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8509), + [aux_sym_frm_property_statement_token1] = ACTIONS(8509), + [anon_sym_DOT] = ACTIONS(8509), + [anon_sym_BANG] = ACTIONS(8511), + [aux_sym__attribute_identifier_token1] = ACTIONS(8509), + [aux_sym_option_statement_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8509), + [aux_sym_preprocessor_const_token1] = ACTIONS(8509), + [sym_static_modifier] = ACTIONS(8509), + [sym__dim_keyword] = ACTIONS(8509), + [sym__redim_keyword] = ACTIONS(8509), + [aux_sym_get_accessor_token1] = ACTIONS(8509), + [aux_sym_set_accessor_token1] = ACTIONS(8509), + [aux_sym_const_declaration_token1] = ACTIONS(8509), + [anon_sym_LPAREN] = ACTIONS(8511), + [aux_sym_as_type_clause_token2] = ACTIONS(8509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8509), + [aux_sym_visibility_token1] = ACTIONS(8509), + [aux_sym_visibility_token2] = ACTIONS(8509), + [aux_sym_elseif_fragment_token1] = ACTIONS(8509), + [aux_sym_else_fragment_token1] = ACTIONS(8509), + [aux_sym_select_statement_token1] = ACTIONS(8509), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8509), + [aux_sym__for_header_token1] = ACTIONS(8509), + [aux_sym_do_statement_token1] = ACTIONS(8509), + [aux_sym_do_condition_token1] = ACTIONS(8509), + [aux_sym_with_statement_token1] = ACTIONS(8509), + [aux_sym_exit_statement_token1] = ACTIONS(8509), + [sym_end_statement] = ACTIONS(8511), + [aux_sym_on_goto_statement_token1] = ACTIONS(8509), + [aux_sym_on_goto_statement_token2] = ACTIONS(8509), + [aux_sym_on_error_statement_token2] = ACTIONS(8509), + [sym__ambiguous_redim_statement] = ACTIONS(8511), + [aux_sym_erase_statement_token1] = ACTIONS(8509), + [aux_sym_open_statement_token1] = ACTIONS(8509), + [aux_sym_file_mode_token2] = ACTIONS(8509), + [aux_sym_file_access_token2] = ACTIONS(8509), + [aux_sym_file_lock_token2] = ACTIONS(8509), + [aux_sym_print_statement_token1] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(8511), + [anon_sym_DASH] = ACTIONS(8509), + [anon_sym_QMARK] = ACTIONS(8511), + [aux_sym_close_statement_token1] = ACTIONS(8509), + [aux_sym_put_statement_token1] = ACTIONS(8509), + [aux_sym_unlock_statement_token1] = ACTIONS(8509), + [aux_sym_seek_statement_token1] = ACTIONS(8509), + [sym_reset_statement] = ACTIONS(8509), + [aux_sym_raise_event_statement_token1] = ACTIONS(8509), + [sym_stop_statement] = ACTIONS(8509), + [sym_beep_statement] = ACTIONS(8509), + [aux_sym_unload_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token2] = ACTIONS(8509), + [aux_sym_def_type_statement_token3] = ACTIONS(8509), + [aux_sym_def_type_statement_token4] = ACTIONS(8509), + [aux_sym_def_type_statement_token5] = ACTIONS(8509), + [aux_sym_def_type_statement_token6] = ACTIONS(8509), + [aux_sym_def_type_statement_token7] = ACTIONS(8509), + [aux_sym_def_type_statement_token8] = ACTIONS(8509), + [aux_sym_def_type_statement_token9] = ACTIONS(8509), + [aux_sym_def_type_statement_token10] = ACTIONS(8509), + [aux_sym_def_type_statement_token11] = ACTIONS(8509), + [aux_sym_def_type_statement_token12] = ACTIONS(8509), + [aux_sym_def_type_statement_token13] = ACTIONS(8509), + [aux_sym_def_type_statement_token14] = ACTIONS(8509), + [aux_sym_call_statement_token1] = ACTIONS(8509), + [sym__ambiguous_call_statement] = ACTIONS(8509), + [aux_sym_addressof_expression_token1] = ACTIONS(8509), + [aux_sym_type_of_expression_token1] = ACTIONS(8509), + [aux_sym_unary_expression_token1] = ACTIONS(8509), + [sym_string_literal] = ACTIONS(8511), + [sym_number_literal] = ACTIONS(8511), + [aux_sym_boolean_literal_token1] = ACTIONS(8509), + [aux_sym_boolean_literal_token2] = ACTIONS(8509), + [sym_nothing_literal] = ACTIONS(8509), + [sym_null_literal] = ACTIONS(8509), + [sym_empty_literal] = ACTIONS(8509), + [sym_date_literal] = ACTIONS(8511), + [anon_sym_POUND] = ACTIONS(8509), + }, + [STATE(6492)] = { + [sym_identifier] = ACTIONS(9677), + [sym_newline] = ACTIONS(9679), + [anon_sym_COLON] = ACTIONS(9679), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9677), + [aux_sym_frm_property_statement_token1] = ACTIONS(9677), + [anon_sym_DOT] = ACTIONS(9677), + [anon_sym_BANG] = ACTIONS(9679), + [aux_sym__attribute_identifier_token1] = ACTIONS(9677), + [aux_sym_option_statement_token3] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9677), + [aux_sym_preprocessor_const_token1] = ACTIONS(9677), + [sym_static_modifier] = ACTIONS(9677), + [sym__dim_keyword] = ACTIONS(9677), + [sym__redim_keyword] = ACTIONS(9677), + [aux_sym_get_accessor_token1] = ACTIONS(9677), + [aux_sym_set_accessor_token1] = ACTIONS(9677), + [aux_sym_const_declaration_token1] = ACTIONS(9677), + [anon_sym_LPAREN] = ACTIONS(9679), + [aux_sym_as_type_clause_token2] = ACTIONS(9677), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9677), + [aux_sym_visibility_token1] = ACTIONS(9677), + [aux_sym_visibility_token2] = ACTIONS(9677), + [aux_sym_elseif_fragment_token1] = ACTIONS(9677), + [aux_sym_else_fragment_token1] = ACTIONS(9677), + [aux_sym_select_statement_token1] = ACTIONS(9677), + [aux_sym__for_header_token1] = ACTIONS(9677), + [aux_sym_do_statement_token1] = ACTIONS(9677), + [aux_sym_do_statement_token2] = ACTIONS(9677), + [aux_sym_do_condition_token1] = ACTIONS(9677), + [aux_sym_with_statement_token1] = ACTIONS(9677), + [aux_sym_exit_statement_token1] = ACTIONS(9677), + [sym_end_statement] = ACTIONS(9679), + [aux_sym_on_goto_statement_token1] = ACTIONS(9677), + [aux_sym_on_goto_statement_token2] = ACTIONS(9677), + [aux_sym_on_error_statement_token2] = ACTIONS(9677), + [sym__ambiguous_redim_statement] = ACTIONS(9679), + [aux_sym_erase_statement_token1] = ACTIONS(9677), + [aux_sym_open_statement_token1] = ACTIONS(9677), + [aux_sym_file_mode_token2] = ACTIONS(9677), + [aux_sym_file_access_token2] = ACTIONS(9677), + [aux_sym_file_lock_token2] = ACTIONS(9677), + [aux_sym_print_statement_token1] = ACTIONS(9677), + [anon_sym_PLUS] = ACTIONS(9679), + [anon_sym_DASH] = ACTIONS(9677), + [anon_sym_QMARK] = ACTIONS(9679), + [aux_sym_close_statement_token1] = ACTIONS(9677), + [aux_sym_put_statement_token1] = ACTIONS(9677), + [aux_sym_unlock_statement_token1] = ACTIONS(9677), + [aux_sym_seek_statement_token1] = ACTIONS(9677), + [sym_reset_statement] = ACTIONS(9677), + [aux_sym_raise_event_statement_token1] = ACTIONS(9677), + [sym_stop_statement] = ACTIONS(9677), + [sym_beep_statement] = ACTIONS(9677), + [aux_sym_unload_statement_token1] = ACTIONS(9677), + [aux_sym_def_type_statement_token1] = ACTIONS(9677), + [aux_sym_def_type_statement_token2] = ACTIONS(9677), + [aux_sym_def_type_statement_token3] = ACTIONS(9677), + [aux_sym_def_type_statement_token4] = ACTIONS(9677), + [aux_sym_def_type_statement_token5] = ACTIONS(9677), + [aux_sym_def_type_statement_token6] = ACTIONS(9677), + [aux_sym_def_type_statement_token7] = ACTIONS(9677), + [aux_sym_def_type_statement_token8] = ACTIONS(9677), + [aux_sym_def_type_statement_token9] = ACTIONS(9677), + [aux_sym_def_type_statement_token10] = ACTIONS(9677), + [aux_sym_def_type_statement_token11] = ACTIONS(9677), + [aux_sym_def_type_statement_token12] = ACTIONS(9677), + [aux_sym_def_type_statement_token13] = ACTIONS(9677), + [aux_sym_def_type_statement_token14] = ACTIONS(9677), + [aux_sym_call_statement_token1] = ACTIONS(9677), + [sym__ambiguous_call_statement] = ACTIONS(9677), + [aux_sym_addressof_expression_token1] = ACTIONS(9677), + [aux_sym_type_of_expression_token1] = ACTIONS(9677), + [aux_sym_unary_expression_token1] = ACTIONS(9677), + [sym_string_literal] = ACTIONS(9679), + [sym_number_literal] = ACTIONS(9679), + [aux_sym_boolean_literal_token1] = ACTIONS(9677), + [aux_sym_boolean_literal_token2] = ACTIONS(9677), + [sym_nothing_literal] = ACTIONS(9677), + [sym_null_literal] = ACTIONS(9677), + [sym_empty_literal] = ACTIONS(9677), + [sym_date_literal] = ACTIONS(9679), + [anon_sym_POUND] = ACTIONS(9677), + }, + [STATE(6493)] = { + [sym_identifier] = ACTIONS(9684), + [sym_newline] = ACTIONS(9686), + [anon_sym_COLON] = ACTIONS(9686), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9684), + [aux_sym_frm_property_statement_token1] = ACTIONS(9684), + [anon_sym_DOT] = ACTIONS(9684), + [anon_sym_BANG] = ACTIONS(9686), + [aux_sym__attribute_identifier_token1] = ACTIONS(9684), + [aux_sym_option_statement_token3] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9684), + [aux_sym_preprocessor_const_token1] = ACTIONS(9684), + [sym_static_modifier] = ACTIONS(9684), + [sym__dim_keyword] = ACTIONS(9684), + [sym__redim_keyword] = ACTIONS(9684), + [aux_sym_get_accessor_token1] = ACTIONS(9684), + [aux_sym_set_accessor_token1] = ACTIONS(9684), + [aux_sym_const_declaration_token1] = ACTIONS(9684), + [anon_sym_LPAREN] = ACTIONS(9686), + [aux_sym_as_type_clause_token2] = ACTIONS(9684), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9684), + [aux_sym_visibility_token1] = ACTIONS(9684), + [aux_sym_visibility_token2] = ACTIONS(9684), + [aux_sym_elseif_fragment_token1] = ACTIONS(9684), + [aux_sym_else_fragment_token1] = ACTIONS(9684), + [aux_sym_select_statement_token1] = ACTIONS(9684), + [aux_sym__for_header_token1] = ACTIONS(9684), + [aux_sym_do_statement_token1] = ACTIONS(9684), + [aux_sym_do_statement_token2] = ACTIONS(9684), + [aux_sym_do_condition_token1] = ACTIONS(9684), + [aux_sym_with_statement_token1] = ACTIONS(9684), + [aux_sym_exit_statement_token1] = ACTIONS(9684), + [sym_end_statement] = ACTIONS(9686), + [aux_sym_on_goto_statement_token1] = ACTIONS(9684), + [aux_sym_on_goto_statement_token2] = ACTIONS(9684), + [aux_sym_on_error_statement_token2] = ACTIONS(9684), + [sym__ambiguous_redim_statement] = ACTIONS(9686), + [aux_sym_erase_statement_token1] = ACTIONS(9684), + [aux_sym_open_statement_token1] = ACTIONS(9684), + [aux_sym_file_mode_token2] = ACTIONS(9684), + [aux_sym_file_access_token2] = ACTIONS(9684), + [aux_sym_file_lock_token2] = ACTIONS(9684), + [aux_sym_print_statement_token1] = ACTIONS(9684), + [anon_sym_PLUS] = ACTIONS(9686), + [anon_sym_DASH] = ACTIONS(9684), + [anon_sym_QMARK] = ACTIONS(9686), + [aux_sym_close_statement_token1] = ACTIONS(9684), + [aux_sym_put_statement_token1] = ACTIONS(9684), + [aux_sym_unlock_statement_token1] = ACTIONS(9684), + [aux_sym_seek_statement_token1] = ACTIONS(9684), + [sym_reset_statement] = ACTIONS(9684), + [aux_sym_raise_event_statement_token1] = ACTIONS(9684), + [sym_stop_statement] = ACTIONS(9684), + [sym_beep_statement] = ACTIONS(9684), + [aux_sym_unload_statement_token1] = ACTIONS(9684), + [aux_sym_def_type_statement_token1] = ACTIONS(9684), + [aux_sym_def_type_statement_token2] = ACTIONS(9684), + [aux_sym_def_type_statement_token3] = ACTIONS(9684), + [aux_sym_def_type_statement_token4] = ACTIONS(9684), + [aux_sym_def_type_statement_token5] = ACTIONS(9684), + [aux_sym_def_type_statement_token6] = ACTIONS(9684), + [aux_sym_def_type_statement_token7] = ACTIONS(9684), + [aux_sym_def_type_statement_token8] = ACTIONS(9684), + [aux_sym_def_type_statement_token9] = ACTIONS(9684), + [aux_sym_def_type_statement_token10] = ACTIONS(9684), + [aux_sym_def_type_statement_token11] = ACTIONS(9684), + [aux_sym_def_type_statement_token12] = ACTIONS(9684), + [aux_sym_def_type_statement_token13] = ACTIONS(9684), + [aux_sym_def_type_statement_token14] = ACTIONS(9684), + [aux_sym_call_statement_token1] = ACTIONS(9684), + [sym__ambiguous_call_statement] = ACTIONS(9684), + [aux_sym_addressof_expression_token1] = ACTIONS(9684), + [aux_sym_type_of_expression_token1] = ACTIONS(9684), + [aux_sym_unary_expression_token1] = ACTIONS(9684), + [sym_string_literal] = ACTIONS(9686), + [sym_number_literal] = ACTIONS(9686), + [aux_sym_boolean_literal_token1] = ACTIONS(9684), + [aux_sym_boolean_literal_token2] = ACTIONS(9684), + [sym_nothing_literal] = ACTIONS(9684), + [sym_null_literal] = ACTIONS(9684), + [sym_empty_literal] = ACTIONS(9684), + [sym_date_literal] = ACTIONS(9686), + [anon_sym_POUND] = ACTIONS(9684), + }, + [STATE(6494)] = { + [sym_identifier] = ACTIONS(9688), + [sym_newline] = ACTIONS(9690), + [anon_sym_COLON] = ACTIONS(9690), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9688), + [aux_sym_frm_property_statement_token1] = ACTIONS(9688), + [anon_sym_DOT] = ACTIONS(9688), + [anon_sym_BANG] = ACTIONS(9690), + [aux_sym__attribute_identifier_token1] = ACTIONS(9688), + [aux_sym_option_statement_token3] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9688), + [aux_sym_preprocessor_const_token1] = ACTIONS(9688), + [sym_static_modifier] = ACTIONS(9688), + [sym__dim_keyword] = ACTIONS(9688), + [sym__redim_keyword] = ACTIONS(9688), + [aux_sym_get_accessor_token1] = ACTIONS(9688), + [aux_sym_set_accessor_token1] = ACTIONS(9688), + [aux_sym_const_declaration_token1] = ACTIONS(9688), + [anon_sym_LPAREN] = ACTIONS(9690), + [aux_sym_as_type_clause_token2] = ACTIONS(9688), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9688), + [aux_sym_visibility_token1] = ACTIONS(9688), + [aux_sym_visibility_token2] = ACTIONS(9688), + [aux_sym_elseif_fragment_token1] = ACTIONS(9688), + [aux_sym_else_fragment_token1] = ACTIONS(9688), + [aux_sym_select_statement_token1] = ACTIONS(9688), + [aux_sym__for_header_token1] = ACTIONS(9688), + [aux_sym_do_statement_token1] = ACTIONS(9688), + [aux_sym_do_statement_token2] = ACTIONS(9688), + [aux_sym_do_condition_token1] = ACTIONS(9688), + [aux_sym_with_statement_token1] = ACTIONS(9688), + [aux_sym_exit_statement_token1] = ACTIONS(9688), + [sym_end_statement] = ACTIONS(9690), + [aux_sym_on_goto_statement_token1] = ACTIONS(9688), + [aux_sym_on_goto_statement_token2] = ACTIONS(9688), + [aux_sym_on_error_statement_token2] = ACTIONS(9688), + [sym__ambiguous_redim_statement] = ACTIONS(9690), + [aux_sym_erase_statement_token1] = ACTIONS(9688), + [aux_sym_open_statement_token1] = ACTIONS(9688), + [aux_sym_file_mode_token2] = ACTIONS(9688), + [aux_sym_file_access_token2] = ACTIONS(9688), + [aux_sym_file_lock_token2] = ACTIONS(9688), + [aux_sym_print_statement_token1] = ACTIONS(9688), + [anon_sym_PLUS] = ACTIONS(9690), + [anon_sym_DASH] = ACTIONS(9688), + [anon_sym_QMARK] = ACTIONS(9690), + [aux_sym_close_statement_token1] = ACTIONS(9688), + [aux_sym_put_statement_token1] = ACTIONS(9688), + [aux_sym_unlock_statement_token1] = ACTIONS(9688), + [aux_sym_seek_statement_token1] = ACTIONS(9688), + [sym_reset_statement] = ACTIONS(9688), + [aux_sym_raise_event_statement_token1] = ACTIONS(9688), + [sym_stop_statement] = ACTIONS(9688), + [sym_beep_statement] = ACTIONS(9688), + [aux_sym_unload_statement_token1] = ACTIONS(9688), + [aux_sym_def_type_statement_token1] = ACTIONS(9688), + [aux_sym_def_type_statement_token2] = ACTIONS(9688), + [aux_sym_def_type_statement_token3] = ACTIONS(9688), + [aux_sym_def_type_statement_token4] = ACTIONS(9688), + [aux_sym_def_type_statement_token5] = ACTIONS(9688), + [aux_sym_def_type_statement_token6] = ACTIONS(9688), + [aux_sym_def_type_statement_token7] = ACTIONS(9688), + [aux_sym_def_type_statement_token8] = ACTIONS(9688), + [aux_sym_def_type_statement_token9] = ACTIONS(9688), + [aux_sym_def_type_statement_token10] = ACTIONS(9688), + [aux_sym_def_type_statement_token11] = ACTIONS(9688), + [aux_sym_def_type_statement_token12] = ACTIONS(9688), + [aux_sym_def_type_statement_token13] = ACTIONS(9688), + [aux_sym_def_type_statement_token14] = ACTIONS(9688), + [aux_sym_call_statement_token1] = ACTIONS(9688), + [sym__ambiguous_call_statement] = ACTIONS(9688), + [aux_sym_addressof_expression_token1] = ACTIONS(9688), + [aux_sym_type_of_expression_token1] = ACTIONS(9688), + [aux_sym_unary_expression_token1] = ACTIONS(9688), + [sym_string_literal] = ACTIONS(9690), + [sym_number_literal] = ACTIONS(9690), + [aux_sym_boolean_literal_token1] = ACTIONS(9688), + [aux_sym_boolean_literal_token2] = ACTIONS(9688), + [sym_nothing_literal] = ACTIONS(9688), + [sym_null_literal] = ACTIONS(9688), + [sym_empty_literal] = ACTIONS(9688), + [sym_date_literal] = ACTIONS(9690), + [anon_sym_POUND] = ACTIONS(9688), + }, + [STATE(6495)] = { + [sym_identifier] = ACTIONS(8680), + [sym_newline] = ACTIONS(8682), + [anon_sym_COLON] = ACTIONS(8682), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8680), + [aux_sym_frm_property_statement_token1] = ACTIONS(8680), + [anon_sym_DOT] = ACTIONS(8680), + [anon_sym_BANG] = ACTIONS(8682), + [aux_sym__attribute_identifier_token1] = ACTIONS(8680), + [aux_sym_option_statement_token3] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8680), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8680), + [aux_sym_preprocessor_const_token1] = ACTIONS(8680), + [sym_static_modifier] = ACTIONS(8680), + [sym__dim_keyword] = ACTIONS(8680), + [sym__redim_keyword] = ACTIONS(8680), + [aux_sym_get_accessor_token1] = ACTIONS(8680), + [aux_sym_set_accessor_token1] = ACTIONS(8680), + [anon_sym_COMMA] = ACTIONS(8682), + [aux_sym_const_declaration_token1] = ACTIONS(8680), + [anon_sym_LPAREN] = ACTIONS(8682), + [aux_sym_as_type_clause_token2] = ACTIONS(8680), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8680), + [aux_sym_visibility_token1] = ACTIONS(8680), + [aux_sym_visibility_token2] = ACTIONS(8680), + [aux_sym_elseif_fragment_token1] = ACTIONS(8680), + [aux_sym_else_fragment_token1] = ACTIONS(8680), + [aux_sym_select_statement_token1] = ACTIONS(8680), + [aux_sym__for_header_token1] = ACTIONS(8680), + [aux_sym_do_statement_token1] = ACTIONS(8680), + [aux_sym_do_condition_token1] = ACTIONS(8680), + [aux_sym_with_statement_token1] = ACTIONS(8680), + [aux_sym_exit_statement_token1] = ACTIONS(8680), + [sym_end_statement] = ACTIONS(8682), + [aux_sym_on_goto_statement_token1] = ACTIONS(8680), + [aux_sym_on_goto_statement_token2] = ACTIONS(8680), + [aux_sym_on_error_statement_token2] = ACTIONS(8680), + [sym__ambiguous_redim_statement] = ACTIONS(8682), + [aux_sym_erase_statement_token1] = ACTIONS(8680), + [aux_sym_open_statement_token1] = ACTIONS(8680), + [aux_sym_file_mode_token2] = ACTIONS(8680), + [aux_sym_file_access_token2] = ACTIONS(8680), + [aux_sym_file_lock_token2] = ACTIONS(8680), + [aux_sym_print_statement_token1] = ACTIONS(8680), + [anon_sym_PLUS] = ACTIONS(8682), + [anon_sym_DASH] = ACTIONS(8680), + [anon_sym_QMARK] = ACTIONS(8682), + [aux_sym_close_statement_token1] = ACTIONS(8680), + [aux_sym_put_statement_token1] = ACTIONS(8680), + [aux_sym_unlock_statement_token1] = ACTIONS(8680), + [aux_sym_seek_statement_token1] = ACTIONS(8680), + [sym_reset_statement] = ACTIONS(8680), + [aux_sym_raise_event_statement_token1] = ACTIONS(8680), + [sym_stop_statement] = ACTIONS(8680), + [sym_beep_statement] = ACTIONS(8680), + [aux_sym_unload_statement_token1] = ACTIONS(8680), + [aux_sym_def_type_statement_token1] = ACTIONS(8680), + [aux_sym_def_type_statement_token2] = ACTIONS(8680), + [aux_sym_def_type_statement_token3] = ACTIONS(8680), + [aux_sym_def_type_statement_token4] = ACTIONS(8680), + [aux_sym_def_type_statement_token5] = ACTIONS(8680), + [aux_sym_def_type_statement_token6] = ACTIONS(8680), + [aux_sym_def_type_statement_token7] = ACTIONS(8680), + [aux_sym_def_type_statement_token8] = ACTIONS(8680), + [aux_sym_def_type_statement_token9] = ACTIONS(8680), + [aux_sym_def_type_statement_token10] = ACTIONS(8680), + [aux_sym_def_type_statement_token11] = ACTIONS(8680), + [aux_sym_def_type_statement_token12] = ACTIONS(8680), + [aux_sym_def_type_statement_token13] = ACTIONS(8680), + [aux_sym_def_type_statement_token14] = ACTIONS(8680), + [aux_sym_call_statement_token1] = ACTIONS(8680), + [sym__ambiguous_call_statement] = ACTIONS(8680), + [aux_sym_addressof_expression_token1] = ACTIONS(8680), + [aux_sym_type_of_expression_token1] = ACTIONS(8680), + [aux_sym_unary_expression_token1] = ACTIONS(8680), + [sym_string_literal] = ACTIONS(8682), + [sym_number_literal] = ACTIONS(8682), + [aux_sym_boolean_literal_token1] = ACTIONS(8680), + [aux_sym_boolean_literal_token2] = ACTIONS(8680), + [sym_nothing_literal] = ACTIONS(8680), + [sym_null_literal] = ACTIONS(8680), + [sym_empty_literal] = ACTIONS(8680), + [sym_date_literal] = ACTIONS(8682), + [anon_sym_POUND] = ACTIONS(8680), + }, + [STATE(6496)] = { + [sym_identifier] = ACTIONS(9332), + [sym_newline] = ACTIONS(9334), + [anon_sym_COLON] = ACTIONS(9334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9332), + [aux_sym_frm_property_statement_token1] = ACTIONS(9332), + [anon_sym_DOT] = ACTIONS(9332), + [anon_sym_BANG] = ACTIONS(9334), + [aux_sym__attribute_identifier_token1] = ACTIONS(9332), + [aux_sym_option_statement_token3] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9332), + [aux_sym_preprocessor_const_token1] = ACTIONS(9332), + [sym_static_modifier] = ACTIONS(9332), + [sym__dim_keyword] = ACTIONS(9332), + [sym__redim_keyword] = ACTIONS(9332), + [aux_sym_get_accessor_token1] = ACTIONS(9332), + [aux_sym_set_accessor_token1] = ACTIONS(9332), + [aux_sym_const_declaration_token1] = ACTIONS(9332), + [anon_sym_LPAREN] = ACTIONS(9334), + [aux_sym_as_type_clause_token2] = ACTIONS(9332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9332), + [aux_sym_visibility_token1] = ACTIONS(9332), + [aux_sym_visibility_token2] = ACTIONS(9332), + [aux_sym_elseif_fragment_token1] = ACTIONS(9332), + [aux_sym_else_fragment_token1] = ACTIONS(9332), + [aux_sym_select_statement_token1] = ACTIONS(9332), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9332), + [aux_sym__for_header_token1] = ACTIONS(9332), + [aux_sym_do_statement_token1] = ACTIONS(9332), + [aux_sym_do_condition_token1] = ACTIONS(9332), + [aux_sym_with_statement_token1] = ACTIONS(9332), + [aux_sym_exit_statement_token1] = ACTIONS(9332), + [sym_end_statement] = ACTIONS(9334), + [aux_sym_on_goto_statement_token1] = ACTIONS(9332), + [aux_sym_on_goto_statement_token2] = ACTIONS(9332), + [aux_sym_on_error_statement_token2] = ACTIONS(9332), + [sym__ambiguous_redim_statement] = ACTIONS(9334), + [aux_sym_erase_statement_token1] = ACTIONS(9332), + [aux_sym_open_statement_token1] = ACTIONS(9332), + [aux_sym_file_mode_token2] = ACTIONS(9332), + [aux_sym_file_access_token2] = ACTIONS(9332), + [aux_sym_file_lock_token2] = ACTIONS(9332), + [aux_sym_print_statement_token1] = ACTIONS(9332), + [anon_sym_PLUS] = ACTIONS(9334), + [anon_sym_DASH] = ACTIONS(9332), + [anon_sym_QMARK] = ACTIONS(9334), + [aux_sym_close_statement_token1] = ACTIONS(9332), + [aux_sym_put_statement_token1] = ACTIONS(9332), + [aux_sym_unlock_statement_token1] = ACTIONS(9332), + [aux_sym_seek_statement_token1] = ACTIONS(9332), + [sym_reset_statement] = ACTIONS(9332), + [aux_sym_raise_event_statement_token1] = ACTIONS(9332), + [sym_stop_statement] = ACTIONS(9332), + [sym_beep_statement] = ACTIONS(9332), + [aux_sym_unload_statement_token1] = ACTIONS(9332), + [aux_sym_def_type_statement_token1] = ACTIONS(9332), + [aux_sym_def_type_statement_token2] = ACTIONS(9332), + [aux_sym_def_type_statement_token3] = ACTIONS(9332), + [aux_sym_def_type_statement_token4] = ACTIONS(9332), + [aux_sym_def_type_statement_token5] = ACTIONS(9332), + [aux_sym_def_type_statement_token6] = ACTIONS(9332), + [aux_sym_def_type_statement_token7] = ACTIONS(9332), + [aux_sym_def_type_statement_token8] = ACTIONS(9332), + [aux_sym_def_type_statement_token9] = ACTIONS(9332), + [aux_sym_def_type_statement_token10] = ACTIONS(9332), + [aux_sym_def_type_statement_token11] = ACTIONS(9332), + [aux_sym_def_type_statement_token12] = ACTIONS(9332), + [aux_sym_def_type_statement_token13] = ACTIONS(9332), + [aux_sym_def_type_statement_token14] = ACTIONS(9332), + [aux_sym_call_statement_token1] = ACTIONS(9332), + [sym__ambiguous_call_statement] = ACTIONS(9332), + [aux_sym_addressof_expression_token1] = ACTIONS(9332), + [aux_sym_type_of_expression_token1] = ACTIONS(9332), + [aux_sym_unary_expression_token1] = ACTIONS(9332), + [sym_string_literal] = ACTIONS(9334), + [sym_number_literal] = ACTIONS(9334), + [aux_sym_boolean_literal_token1] = ACTIONS(9332), + [aux_sym_boolean_literal_token2] = ACTIONS(9332), + [sym_nothing_literal] = ACTIONS(9332), + [sym_null_literal] = ACTIONS(9332), + [sym_empty_literal] = ACTIONS(9332), + [sym_date_literal] = ACTIONS(9334), + [anon_sym_POUND] = ACTIONS(9332), + }, + [STATE(6497)] = { + [sym_identifier] = ACTIONS(9336), + [sym_newline] = ACTIONS(9338), + [anon_sym_COLON] = ACTIONS(9338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9336), + [aux_sym_frm_property_statement_token1] = ACTIONS(9336), + [anon_sym_DOT] = ACTIONS(9336), + [anon_sym_BANG] = ACTIONS(9338), + [aux_sym__attribute_identifier_token1] = ACTIONS(9336), + [aux_sym_option_statement_token3] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9336), + [aux_sym_preprocessor_const_token1] = ACTIONS(9336), + [sym_static_modifier] = ACTIONS(9336), + [sym__dim_keyword] = ACTIONS(9336), + [sym__redim_keyword] = ACTIONS(9336), + [aux_sym_get_accessor_token1] = ACTIONS(9336), + [aux_sym_set_accessor_token1] = ACTIONS(9336), + [aux_sym_const_declaration_token1] = ACTIONS(9336), + [anon_sym_LPAREN] = ACTIONS(9338), + [aux_sym_as_type_clause_token2] = ACTIONS(9336), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9336), + [aux_sym_visibility_token1] = ACTIONS(9336), + [aux_sym_visibility_token2] = ACTIONS(9336), + [aux_sym_elseif_fragment_token1] = ACTIONS(9336), + [aux_sym_else_fragment_token1] = ACTIONS(9336), + [aux_sym_select_statement_token1] = ACTIONS(9336), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9336), + [aux_sym__for_header_token1] = ACTIONS(9336), + [aux_sym_do_statement_token1] = ACTIONS(9336), + [aux_sym_do_condition_token1] = ACTIONS(9336), + [aux_sym_with_statement_token1] = ACTIONS(9336), + [aux_sym_exit_statement_token1] = ACTIONS(9336), + [sym_end_statement] = ACTIONS(9338), + [aux_sym_on_goto_statement_token1] = ACTIONS(9336), + [aux_sym_on_goto_statement_token2] = ACTIONS(9336), + [aux_sym_on_error_statement_token2] = ACTIONS(9336), + [sym__ambiguous_redim_statement] = ACTIONS(9338), + [aux_sym_erase_statement_token1] = ACTIONS(9336), + [aux_sym_open_statement_token1] = ACTIONS(9336), + [aux_sym_file_mode_token2] = ACTIONS(9336), + [aux_sym_file_access_token2] = ACTIONS(9336), + [aux_sym_file_lock_token2] = ACTIONS(9336), + [aux_sym_print_statement_token1] = ACTIONS(9336), + [anon_sym_PLUS] = ACTIONS(9338), + [anon_sym_DASH] = ACTIONS(9336), + [anon_sym_QMARK] = ACTIONS(9338), + [aux_sym_close_statement_token1] = ACTIONS(9336), + [aux_sym_put_statement_token1] = ACTIONS(9336), + [aux_sym_unlock_statement_token1] = ACTIONS(9336), + [aux_sym_seek_statement_token1] = ACTIONS(9336), + [sym_reset_statement] = ACTIONS(9336), + [aux_sym_raise_event_statement_token1] = ACTIONS(9336), + [sym_stop_statement] = ACTIONS(9336), + [sym_beep_statement] = ACTIONS(9336), + [aux_sym_unload_statement_token1] = ACTIONS(9336), + [aux_sym_def_type_statement_token1] = ACTIONS(9336), + [aux_sym_def_type_statement_token2] = ACTIONS(9336), + [aux_sym_def_type_statement_token3] = ACTIONS(9336), + [aux_sym_def_type_statement_token4] = ACTIONS(9336), + [aux_sym_def_type_statement_token5] = ACTIONS(9336), + [aux_sym_def_type_statement_token6] = ACTIONS(9336), + [aux_sym_def_type_statement_token7] = ACTIONS(9336), + [aux_sym_def_type_statement_token8] = ACTIONS(9336), + [aux_sym_def_type_statement_token9] = ACTIONS(9336), + [aux_sym_def_type_statement_token10] = ACTIONS(9336), + [aux_sym_def_type_statement_token11] = ACTIONS(9336), + [aux_sym_def_type_statement_token12] = ACTIONS(9336), + [aux_sym_def_type_statement_token13] = ACTIONS(9336), + [aux_sym_def_type_statement_token14] = ACTIONS(9336), + [aux_sym_call_statement_token1] = ACTIONS(9336), + [sym__ambiguous_call_statement] = ACTIONS(9336), + [aux_sym_addressof_expression_token1] = ACTIONS(9336), + [aux_sym_type_of_expression_token1] = ACTIONS(9336), + [aux_sym_unary_expression_token1] = ACTIONS(9336), + [sym_string_literal] = ACTIONS(9338), + [sym_number_literal] = ACTIONS(9338), + [aux_sym_boolean_literal_token1] = ACTIONS(9336), + [aux_sym_boolean_literal_token2] = ACTIONS(9336), + [sym_nothing_literal] = ACTIONS(9336), + [sym_null_literal] = ACTIONS(9336), + [sym_empty_literal] = ACTIONS(9336), + [sym_date_literal] = ACTIONS(9338), + [anon_sym_POUND] = ACTIONS(9336), + }, + [STATE(6498)] = { + [sym_identifier] = ACTIONS(9340), + [sym_newline] = ACTIONS(9342), + [anon_sym_COLON] = ACTIONS(9342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9340), + [aux_sym_frm_property_statement_token1] = ACTIONS(9340), + [anon_sym_DOT] = ACTIONS(9340), + [anon_sym_BANG] = ACTIONS(9342), + [aux_sym__attribute_identifier_token1] = ACTIONS(9340), + [aux_sym_option_statement_token3] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9340), + [aux_sym_preprocessor_const_token1] = ACTIONS(9340), + [sym_static_modifier] = ACTIONS(9340), + [sym__dim_keyword] = ACTIONS(9340), + [sym__redim_keyword] = ACTIONS(9340), + [aux_sym_get_accessor_token1] = ACTIONS(9340), + [aux_sym_set_accessor_token1] = ACTIONS(9340), + [aux_sym_const_declaration_token1] = ACTIONS(9340), + [anon_sym_LPAREN] = ACTIONS(9342), + [aux_sym_as_type_clause_token2] = ACTIONS(9340), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9340), + [aux_sym_visibility_token1] = ACTIONS(9340), + [aux_sym_visibility_token2] = ACTIONS(9340), + [aux_sym_elseif_fragment_token1] = ACTIONS(9340), + [aux_sym_else_fragment_token1] = ACTIONS(9340), + [aux_sym_select_statement_token1] = ACTIONS(9340), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9340), + [aux_sym__for_header_token1] = ACTIONS(9340), + [aux_sym_do_statement_token1] = ACTIONS(9340), + [aux_sym_do_condition_token1] = ACTIONS(9340), + [aux_sym_with_statement_token1] = ACTIONS(9340), + [aux_sym_exit_statement_token1] = ACTIONS(9340), + [sym_end_statement] = ACTIONS(9342), + [aux_sym_on_goto_statement_token1] = ACTIONS(9340), + [aux_sym_on_goto_statement_token2] = ACTIONS(9340), + [aux_sym_on_error_statement_token2] = ACTIONS(9340), + [sym__ambiguous_redim_statement] = ACTIONS(9342), + [aux_sym_erase_statement_token1] = ACTIONS(9340), + [aux_sym_open_statement_token1] = ACTIONS(9340), + [aux_sym_file_mode_token2] = ACTIONS(9340), + [aux_sym_file_access_token2] = ACTIONS(9340), + [aux_sym_file_lock_token2] = ACTIONS(9340), + [aux_sym_print_statement_token1] = ACTIONS(9340), + [anon_sym_PLUS] = ACTIONS(9342), + [anon_sym_DASH] = ACTIONS(9340), + [anon_sym_QMARK] = ACTIONS(9342), + [aux_sym_close_statement_token1] = ACTIONS(9340), + [aux_sym_put_statement_token1] = ACTIONS(9340), + [aux_sym_unlock_statement_token1] = ACTIONS(9340), + [aux_sym_seek_statement_token1] = ACTIONS(9340), + [sym_reset_statement] = ACTIONS(9340), + [aux_sym_raise_event_statement_token1] = ACTIONS(9340), + [sym_stop_statement] = ACTIONS(9340), + [sym_beep_statement] = ACTIONS(9340), + [aux_sym_unload_statement_token1] = ACTIONS(9340), + [aux_sym_def_type_statement_token1] = ACTIONS(9340), + [aux_sym_def_type_statement_token2] = ACTIONS(9340), + [aux_sym_def_type_statement_token3] = ACTIONS(9340), + [aux_sym_def_type_statement_token4] = ACTIONS(9340), + [aux_sym_def_type_statement_token5] = ACTIONS(9340), + [aux_sym_def_type_statement_token6] = ACTIONS(9340), + [aux_sym_def_type_statement_token7] = ACTIONS(9340), + [aux_sym_def_type_statement_token8] = ACTIONS(9340), + [aux_sym_def_type_statement_token9] = ACTIONS(9340), + [aux_sym_def_type_statement_token10] = ACTIONS(9340), + [aux_sym_def_type_statement_token11] = ACTIONS(9340), + [aux_sym_def_type_statement_token12] = ACTIONS(9340), + [aux_sym_def_type_statement_token13] = ACTIONS(9340), + [aux_sym_def_type_statement_token14] = ACTIONS(9340), + [aux_sym_call_statement_token1] = ACTIONS(9340), + [sym__ambiguous_call_statement] = ACTIONS(9340), + [aux_sym_addressof_expression_token1] = ACTIONS(9340), + [aux_sym_type_of_expression_token1] = ACTIONS(9340), + [aux_sym_unary_expression_token1] = ACTIONS(9340), + [sym_string_literal] = ACTIONS(9342), + [sym_number_literal] = ACTIONS(9342), + [aux_sym_boolean_literal_token1] = ACTIONS(9340), + [aux_sym_boolean_literal_token2] = ACTIONS(9340), + [sym_nothing_literal] = ACTIONS(9340), + [sym_null_literal] = ACTIONS(9340), + [sym_empty_literal] = ACTIONS(9340), + [sym_date_literal] = ACTIONS(9342), + [anon_sym_POUND] = ACTIONS(9340), + }, + [STATE(6499)] = { + [sym_identifier] = ACTIONS(8958), + [sym_newline] = ACTIONS(8960), + [anon_sym_COLON] = ACTIONS(8960), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8958), + [aux_sym_frm_property_statement_token1] = ACTIONS(8958), + [anon_sym_DOT] = ACTIONS(8958), + [anon_sym_BANG] = ACTIONS(8960), + [aux_sym__attribute_identifier_token1] = ACTIONS(8958), + [aux_sym_option_statement_token3] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8958), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8958), + [aux_sym_preprocessor_const_token1] = ACTIONS(8958), + [sym_static_modifier] = ACTIONS(8958), + [sym__dim_keyword] = ACTIONS(8958), + [sym__redim_keyword] = ACTIONS(8958), + [aux_sym_get_accessor_token1] = ACTIONS(8958), + [aux_sym_set_accessor_token1] = ACTIONS(8958), + [anon_sym_COMMA] = ACTIONS(8960), + [aux_sym_const_declaration_token1] = ACTIONS(8958), + [anon_sym_LPAREN] = ACTIONS(8960), + [aux_sym_as_type_clause_token2] = ACTIONS(8958), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8958), + [aux_sym_visibility_token1] = ACTIONS(8958), + [aux_sym_visibility_token2] = ACTIONS(8958), + [aux_sym_elseif_fragment_token1] = ACTIONS(8958), + [aux_sym_else_fragment_token1] = ACTIONS(8958), + [aux_sym_select_statement_token1] = ACTIONS(8958), + [aux_sym__for_header_token1] = ACTIONS(8958), + [aux_sym_do_statement_token1] = ACTIONS(8958), + [aux_sym_do_condition_token1] = ACTIONS(8958), + [aux_sym_with_statement_token1] = ACTIONS(8958), + [aux_sym_exit_statement_token1] = ACTIONS(8958), + [sym_end_statement] = ACTIONS(8960), + [aux_sym_on_goto_statement_token1] = ACTIONS(8958), + [aux_sym_on_goto_statement_token2] = ACTIONS(8958), + [aux_sym_on_error_statement_token2] = ACTIONS(8958), + [sym__ambiguous_redim_statement] = ACTIONS(8960), + [aux_sym_erase_statement_token1] = ACTIONS(8958), + [aux_sym_open_statement_token1] = ACTIONS(8958), + [aux_sym_file_mode_token2] = ACTIONS(8958), + [aux_sym_file_access_token2] = ACTIONS(8958), + [aux_sym_file_lock_token2] = ACTIONS(8958), + [aux_sym_print_statement_token1] = ACTIONS(8958), + [anon_sym_PLUS] = ACTIONS(8960), + [anon_sym_DASH] = ACTIONS(8958), + [anon_sym_QMARK] = ACTIONS(8960), + [aux_sym_close_statement_token1] = ACTIONS(8958), + [aux_sym_put_statement_token1] = ACTIONS(8958), + [aux_sym_unlock_statement_token1] = ACTIONS(8958), + [aux_sym_seek_statement_token1] = ACTIONS(8958), + [sym_reset_statement] = ACTIONS(8958), + [aux_sym_raise_event_statement_token1] = ACTIONS(8958), + [sym_stop_statement] = ACTIONS(8958), + [sym_beep_statement] = ACTIONS(8958), + [aux_sym_unload_statement_token1] = ACTIONS(8958), + [aux_sym_def_type_statement_token1] = ACTIONS(8958), + [aux_sym_def_type_statement_token2] = ACTIONS(8958), + [aux_sym_def_type_statement_token3] = ACTIONS(8958), + [aux_sym_def_type_statement_token4] = ACTIONS(8958), + [aux_sym_def_type_statement_token5] = ACTIONS(8958), + [aux_sym_def_type_statement_token6] = ACTIONS(8958), + [aux_sym_def_type_statement_token7] = ACTIONS(8958), + [aux_sym_def_type_statement_token8] = ACTIONS(8958), + [aux_sym_def_type_statement_token9] = ACTIONS(8958), + [aux_sym_def_type_statement_token10] = ACTIONS(8958), + [aux_sym_def_type_statement_token11] = ACTIONS(8958), + [aux_sym_def_type_statement_token12] = ACTIONS(8958), + [aux_sym_def_type_statement_token13] = ACTIONS(8958), + [aux_sym_def_type_statement_token14] = ACTIONS(8958), + [aux_sym_call_statement_token1] = ACTIONS(8958), + [sym__ambiguous_call_statement] = ACTIONS(8958), + [aux_sym_addressof_expression_token1] = ACTIONS(8958), + [aux_sym_type_of_expression_token1] = ACTIONS(8958), + [aux_sym_unary_expression_token1] = ACTIONS(8958), + [sym_string_literal] = ACTIONS(8960), + [sym_number_literal] = ACTIONS(8960), + [aux_sym_boolean_literal_token1] = ACTIONS(8958), + [aux_sym_boolean_literal_token2] = ACTIONS(8958), + [sym_nothing_literal] = ACTIONS(8958), + [sym_null_literal] = ACTIONS(8958), + [sym_empty_literal] = ACTIONS(8958), + [sym_date_literal] = ACTIONS(8960), + [anon_sym_POUND] = ACTIONS(8958), + }, + [STATE(6500)] = { + [sym_identifier] = ACTIONS(9344), + [sym_newline] = ACTIONS(9346), + [anon_sym_COLON] = ACTIONS(9346), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9344), + [aux_sym_frm_property_statement_token1] = ACTIONS(9344), + [anon_sym_DOT] = ACTIONS(9344), + [anon_sym_BANG] = ACTIONS(9346), + [aux_sym__attribute_identifier_token1] = ACTIONS(9344), + [aux_sym_option_statement_token3] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9344), + [aux_sym_preprocessor_const_token1] = ACTIONS(9344), + [sym_static_modifier] = ACTIONS(9344), + [sym__dim_keyword] = ACTIONS(9344), + [sym__redim_keyword] = ACTIONS(9344), + [aux_sym_get_accessor_token1] = ACTIONS(9344), + [aux_sym_set_accessor_token1] = ACTIONS(9344), + [aux_sym_const_declaration_token1] = ACTIONS(9344), + [anon_sym_LPAREN] = ACTIONS(9346), + [aux_sym_as_type_clause_token2] = ACTIONS(9344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9344), + [aux_sym_visibility_token1] = ACTIONS(9344), + [aux_sym_visibility_token2] = ACTIONS(9344), + [aux_sym_elseif_fragment_token1] = ACTIONS(9344), + [aux_sym_else_fragment_token1] = ACTIONS(9344), + [aux_sym_select_statement_token1] = ACTIONS(9344), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9344), + [aux_sym__for_header_token1] = ACTIONS(9344), + [aux_sym_do_statement_token1] = ACTIONS(9344), + [aux_sym_do_condition_token1] = ACTIONS(9344), + [aux_sym_with_statement_token1] = ACTIONS(9344), + [aux_sym_exit_statement_token1] = ACTIONS(9344), + [sym_end_statement] = ACTIONS(9346), + [aux_sym_on_goto_statement_token1] = ACTIONS(9344), + [aux_sym_on_goto_statement_token2] = ACTIONS(9344), + [aux_sym_on_error_statement_token2] = ACTIONS(9344), + [sym__ambiguous_redim_statement] = ACTIONS(9346), + [aux_sym_erase_statement_token1] = ACTIONS(9344), + [aux_sym_open_statement_token1] = ACTIONS(9344), + [aux_sym_file_mode_token2] = ACTIONS(9344), + [aux_sym_file_access_token2] = ACTIONS(9344), + [aux_sym_file_lock_token2] = ACTIONS(9344), + [aux_sym_print_statement_token1] = ACTIONS(9344), + [anon_sym_PLUS] = ACTIONS(9346), + [anon_sym_DASH] = ACTIONS(9344), + [anon_sym_QMARK] = ACTIONS(9346), + [aux_sym_close_statement_token1] = ACTIONS(9344), + [aux_sym_put_statement_token1] = ACTIONS(9344), + [aux_sym_unlock_statement_token1] = ACTIONS(9344), + [aux_sym_seek_statement_token1] = ACTIONS(9344), + [sym_reset_statement] = ACTIONS(9344), + [aux_sym_raise_event_statement_token1] = ACTIONS(9344), + [sym_stop_statement] = ACTIONS(9344), + [sym_beep_statement] = ACTIONS(9344), + [aux_sym_unload_statement_token1] = ACTIONS(9344), + [aux_sym_def_type_statement_token1] = ACTIONS(9344), + [aux_sym_def_type_statement_token2] = ACTIONS(9344), + [aux_sym_def_type_statement_token3] = ACTIONS(9344), + [aux_sym_def_type_statement_token4] = ACTIONS(9344), + [aux_sym_def_type_statement_token5] = ACTIONS(9344), + [aux_sym_def_type_statement_token6] = ACTIONS(9344), + [aux_sym_def_type_statement_token7] = ACTIONS(9344), + [aux_sym_def_type_statement_token8] = ACTIONS(9344), + [aux_sym_def_type_statement_token9] = ACTIONS(9344), + [aux_sym_def_type_statement_token10] = ACTIONS(9344), + [aux_sym_def_type_statement_token11] = ACTIONS(9344), + [aux_sym_def_type_statement_token12] = ACTIONS(9344), + [aux_sym_def_type_statement_token13] = ACTIONS(9344), + [aux_sym_def_type_statement_token14] = ACTIONS(9344), + [aux_sym_call_statement_token1] = ACTIONS(9344), + [sym__ambiguous_call_statement] = ACTIONS(9344), + [aux_sym_addressof_expression_token1] = ACTIONS(9344), + [aux_sym_type_of_expression_token1] = ACTIONS(9344), + [aux_sym_unary_expression_token1] = ACTIONS(9344), + [sym_string_literal] = ACTIONS(9346), + [sym_number_literal] = ACTIONS(9346), + [aux_sym_boolean_literal_token1] = ACTIONS(9344), + [aux_sym_boolean_literal_token2] = ACTIONS(9344), + [sym_nothing_literal] = ACTIONS(9344), + [sym_null_literal] = ACTIONS(9344), + [sym_empty_literal] = ACTIONS(9344), + [sym_date_literal] = ACTIONS(9346), + [anon_sym_POUND] = ACTIONS(9344), + }, + [STATE(6501)] = { + [sym_identifier] = ACTIONS(9692), + [sym_newline] = ACTIONS(9694), + [anon_sym_COLON] = ACTIONS(9694), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9692), + [aux_sym_frm_property_statement_token1] = ACTIONS(9692), + [anon_sym_DOT] = ACTIONS(9692), + [anon_sym_BANG] = ACTIONS(9694), + [aux_sym__attribute_identifier_token1] = ACTIONS(9692), + [aux_sym_option_statement_token3] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9692), + [aux_sym_preprocessor_const_token1] = ACTIONS(9692), + [sym_static_modifier] = ACTIONS(9692), + [sym__dim_keyword] = ACTIONS(9692), + [sym__redim_keyword] = ACTIONS(9692), + [aux_sym_get_accessor_token1] = ACTIONS(9692), + [aux_sym_set_accessor_token1] = ACTIONS(9692), + [aux_sym_const_declaration_token1] = ACTIONS(9692), + [anon_sym_LPAREN] = ACTIONS(9694), + [aux_sym_as_type_clause_token2] = ACTIONS(9692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9692), + [aux_sym_visibility_token1] = ACTIONS(9692), + [aux_sym_visibility_token2] = ACTIONS(9692), + [aux_sym_elseif_fragment_token1] = ACTIONS(9692), + [aux_sym_else_fragment_token1] = ACTIONS(9692), + [aux_sym_select_statement_token1] = ACTIONS(9692), + [aux_sym__for_header_token1] = ACTIONS(9692), + [aux_sym_do_statement_token1] = ACTIONS(9692), + [aux_sym_do_statement_token2] = ACTIONS(9692), + [aux_sym_do_condition_token1] = ACTIONS(9692), + [aux_sym_with_statement_token1] = ACTIONS(9692), + [aux_sym_exit_statement_token1] = ACTIONS(9692), + [sym_end_statement] = ACTIONS(9694), + [aux_sym_on_goto_statement_token1] = ACTIONS(9692), + [aux_sym_on_goto_statement_token2] = ACTIONS(9692), + [aux_sym_on_error_statement_token2] = ACTIONS(9692), + [sym__ambiguous_redim_statement] = ACTIONS(9694), + [aux_sym_erase_statement_token1] = ACTIONS(9692), + [aux_sym_open_statement_token1] = ACTIONS(9692), + [aux_sym_file_mode_token2] = ACTIONS(9692), + [aux_sym_file_access_token2] = ACTIONS(9692), + [aux_sym_file_lock_token2] = ACTIONS(9692), + [aux_sym_print_statement_token1] = ACTIONS(9692), + [anon_sym_PLUS] = ACTIONS(9694), + [anon_sym_DASH] = ACTIONS(9692), + [anon_sym_QMARK] = ACTIONS(9694), + [aux_sym_close_statement_token1] = ACTIONS(9692), + [aux_sym_put_statement_token1] = ACTIONS(9692), + [aux_sym_unlock_statement_token1] = ACTIONS(9692), + [aux_sym_seek_statement_token1] = ACTIONS(9692), + [sym_reset_statement] = ACTIONS(9692), + [aux_sym_raise_event_statement_token1] = ACTIONS(9692), + [sym_stop_statement] = ACTIONS(9692), + [sym_beep_statement] = ACTIONS(9692), + [aux_sym_unload_statement_token1] = ACTIONS(9692), + [aux_sym_def_type_statement_token1] = ACTIONS(9692), + [aux_sym_def_type_statement_token2] = ACTIONS(9692), + [aux_sym_def_type_statement_token3] = ACTIONS(9692), + [aux_sym_def_type_statement_token4] = ACTIONS(9692), + [aux_sym_def_type_statement_token5] = ACTIONS(9692), + [aux_sym_def_type_statement_token6] = ACTIONS(9692), + [aux_sym_def_type_statement_token7] = ACTIONS(9692), + [aux_sym_def_type_statement_token8] = ACTIONS(9692), + [aux_sym_def_type_statement_token9] = ACTIONS(9692), + [aux_sym_def_type_statement_token10] = ACTIONS(9692), + [aux_sym_def_type_statement_token11] = ACTIONS(9692), + [aux_sym_def_type_statement_token12] = ACTIONS(9692), + [aux_sym_def_type_statement_token13] = ACTIONS(9692), + [aux_sym_def_type_statement_token14] = ACTIONS(9692), + [aux_sym_call_statement_token1] = ACTIONS(9692), + [sym__ambiguous_call_statement] = ACTIONS(9692), + [aux_sym_addressof_expression_token1] = ACTIONS(9692), + [aux_sym_type_of_expression_token1] = ACTIONS(9692), + [aux_sym_unary_expression_token1] = ACTIONS(9692), + [sym_string_literal] = ACTIONS(9694), + [sym_number_literal] = ACTIONS(9694), + [aux_sym_boolean_literal_token1] = ACTIONS(9692), + [aux_sym_boolean_literal_token2] = ACTIONS(9692), + [sym_nothing_literal] = ACTIONS(9692), + [sym_null_literal] = ACTIONS(9692), + [sym_empty_literal] = ACTIONS(9692), + [sym_date_literal] = ACTIONS(9694), + [anon_sym_POUND] = ACTIONS(9692), + }, + [STATE(6502)] = { + [sym_identifier] = ACTIONS(9696), + [sym_newline] = ACTIONS(9698), + [anon_sym_COLON] = ACTIONS(9698), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9696), + [aux_sym_frm_property_statement_token1] = ACTIONS(9696), + [anon_sym_DOT] = ACTIONS(9696), + [anon_sym_BANG] = ACTIONS(9698), + [aux_sym__attribute_identifier_token1] = ACTIONS(9696), + [aux_sym_option_statement_token3] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9696), + [aux_sym_preprocessor_const_token1] = ACTIONS(9696), + [sym_static_modifier] = ACTIONS(9696), + [sym__dim_keyword] = ACTIONS(9696), + [sym__redim_keyword] = ACTIONS(9696), + [aux_sym_get_accessor_token1] = ACTIONS(9696), + [aux_sym_set_accessor_token1] = ACTIONS(9696), + [aux_sym_const_declaration_token1] = ACTIONS(9696), + [anon_sym_LPAREN] = ACTIONS(9698), + [aux_sym_as_type_clause_token2] = ACTIONS(9696), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9696), + [aux_sym_visibility_token1] = ACTIONS(9696), + [aux_sym_visibility_token2] = ACTIONS(9696), + [aux_sym_elseif_fragment_token1] = ACTIONS(9696), + [aux_sym_else_fragment_token1] = ACTIONS(9696), + [aux_sym_select_statement_token1] = ACTIONS(9696), + [aux_sym__for_header_token1] = ACTIONS(9696), + [aux_sym_do_statement_token1] = ACTIONS(9696), + [aux_sym_do_statement_token2] = ACTIONS(9696), + [aux_sym_do_condition_token1] = ACTIONS(9696), + [aux_sym_with_statement_token1] = ACTIONS(9696), + [aux_sym_exit_statement_token1] = ACTIONS(9696), + [sym_end_statement] = ACTIONS(9698), + [aux_sym_on_goto_statement_token1] = ACTIONS(9696), + [aux_sym_on_goto_statement_token2] = ACTIONS(9696), + [aux_sym_on_error_statement_token2] = ACTIONS(9696), + [sym__ambiguous_redim_statement] = ACTIONS(9698), + [aux_sym_erase_statement_token1] = ACTIONS(9696), + [aux_sym_open_statement_token1] = ACTIONS(9696), + [aux_sym_file_mode_token2] = ACTIONS(9696), + [aux_sym_file_access_token2] = ACTIONS(9696), + [aux_sym_file_lock_token2] = ACTIONS(9696), + [aux_sym_print_statement_token1] = ACTIONS(9696), + [anon_sym_PLUS] = ACTIONS(9698), + [anon_sym_DASH] = ACTIONS(9696), + [anon_sym_QMARK] = ACTIONS(9698), + [aux_sym_close_statement_token1] = ACTIONS(9696), + [aux_sym_put_statement_token1] = ACTIONS(9696), + [aux_sym_unlock_statement_token1] = ACTIONS(9696), + [aux_sym_seek_statement_token1] = ACTIONS(9696), + [sym_reset_statement] = ACTIONS(9696), + [aux_sym_raise_event_statement_token1] = ACTIONS(9696), + [sym_stop_statement] = ACTIONS(9696), + [sym_beep_statement] = ACTIONS(9696), + [aux_sym_unload_statement_token1] = ACTIONS(9696), + [aux_sym_def_type_statement_token1] = ACTIONS(9696), + [aux_sym_def_type_statement_token2] = ACTIONS(9696), + [aux_sym_def_type_statement_token3] = ACTIONS(9696), + [aux_sym_def_type_statement_token4] = ACTIONS(9696), + [aux_sym_def_type_statement_token5] = ACTIONS(9696), + [aux_sym_def_type_statement_token6] = ACTIONS(9696), + [aux_sym_def_type_statement_token7] = ACTIONS(9696), + [aux_sym_def_type_statement_token8] = ACTIONS(9696), + [aux_sym_def_type_statement_token9] = ACTIONS(9696), + [aux_sym_def_type_statement_token10] = ACTIONS(9696), + [aux_sym_def_type_statement_token11] = ACTIONS(9696), + [aux_sym_def_type_statement_token12] = ACTIONS(9696), + [aux_sym_def_type_statement_token13] = ACTIONS(9696), + [aux_sym_def_type_statement_token14] = ACTIONS(9696), + [aux_sym_call_statement_token1] = ACTIONS(9696), + [sym__ambiguous_call_statement] = ACTIONS(9696), + [aux_sym_addressof_expression_token1] = ACTIONS(9696), + [aux_sym_type_of_expression_token1] = ACTIONS(9696), + [aux_sym_unary_expression_token1] = ACTIONS(9696), + [sym_string_literal] = ACTIONS(9698), + [sym_number_literal] = ACTIONS(9698), + [aux_sym_boolean_literal_token1] = ACTIONS(9696), + [aux_sym_boolean_literal_token2] = ACTIONS(9696), + [sym_nothing_literal] = ACTIONS(9696), + [sym_null_literal] = ACTIONS(9696), + [sym_empty_literal] = ACTIONS(9696), + [sym_date_literal] = ACTIONS(9698), + [anon_sym_POUND] = ACTIONS(9696), + }, + [STATE(6503)] = { + [sym_identifier] = ACTIONS(8970), + [sym_newline] = ACTIONS(8972), + [anon_sym_COLON] = ACTIONS(8972), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8970), + [aux_sym_frm_property_statement_token1] = ACTIONS(8970), + [anon_sym_DOT] = ACTIONS(8970), + [anon_sym_BANG] = ACTIONS(8972), + [aux_sym__attribute_identifier_token1] = ACTIONS(8970), + [aux_sym_option_statement_token3] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8970), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8970), + [aux_sym_preprocessor_const_token1] = ACTIONS(8970), + [sym_static_modifier] = ACTIONS(8970), + [sym__dim_keyword] = ACTIONS(8970), + [sym__redim_keyword] = ACTIONS(8970), + [aux_sym_get_accessor_token1] = ACTIONS(8970), + [aux_sym_set_accessor_token1] = ACTIONS(8970), + [anon_sym_COMMA] = ACTIONS(8972), + [aux_sym_const_declaration_token1] = ACTIONS(8970), + [anon_sym_LPAREN] = ACTIONS(8972), + [aux_sym_as_type_clause_token2] = ACTIONS(8970), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8970), + [aux_sym_visibility_token1] = ACTIONS(8970), + [aux_sym_visibility_token2] = ACTIONS(8970), + [aux_sym_elseif_fragment_token1] = ACTIONS(8970), + [aux_sym_else_fragment_token1] = ACTIONS(8970), + [aux_sym_select_statement_token1] = ACTIONS(8970), + [aux_sym__for_header_token1] = ACTIONS(8970), + [aux_sym_do_statement_token1] = ACTIONS(8970), + [aux_sym_do_condition_token1] = ACTIONS(8970), + [aux_sym_with_statement_token1] = ACTIONS(8970), + [aux_sym_exit_statement_token1] = ACTIONS(8970), + [sym_end_statement] = ACTIONS(8972), + [aux_sym_on_goto_statement_token1] = ACTIONS(8970), + [aux_sym_on_goto_statement_token2] = ACTIONS(8970), + [aux_sym_on_error_statement_token2] = ACTIONS(8970), + [sym__ambiguous_redim_statement] = ACTIONS(8972), + [aux_sym_erase_statement_token1] = ACTIONS(8970), + [aux_sym_open_statement_token1] = ACTIONS(8970), + [aux_sym_file_mode_token2] = ACTIONS(8970), + [aux_sym_file_access_token2] = ACTIONS(8970), + [aux_sym_file_lock_token2] = ACTIONS(8970), + [aux_sym_print_statement_token1] = ACTIONS(8970), + [anon_sym_PLUS] = ACTIONS(8972), + [anon_sym_DASH] = ACTIONS(8970), + [anon_sym_QMARK] = ACTIONS(8972), + [aux_sym_close_statement_token1] = ACTIONS(8970), + [aux_sym_put_statement_token1] = ACTIONS(8970), + [aux_sym_unlock_statement_token1] = ACTIONS(8970), + [aux_sym_seek_statement_token1] = ACTIONS(8970), + [sym_reset_statement] = ACTIONS(8970), + [aux_sym_raise_event_statement_token1] = ACTIONS(8970), + [sym_stop_statement] = ACTIONS(8970), + [sym_beep_statement] = ACTIONS(8970), + [aux_sym_unload_statement_token1] = ACTIONS(8970), + [aux_sym_def_type_statement_token1] = ACTIONS(8970), + [aux_sym_def_type_statement_token2] = ACTIONS(8970), + [aux_sym_def_type_statement_token3] = ACTIONS(8970), + [aux_sym_def_type_statement_token4] = ACTIONS(8970), + [aux_sym_def_type_statement_token5] = ACTIONS(8970), + [aux_sym_def_type_statement_token6] = ACTIONS(8970), + [aux_sym_def_type_statement_token7] = ACTIONS(8970), + [aux_sym_def_type_statement_token8] = ACTIONS(8970), + [aux_sym_def_type_statement_token9] = ACTIONS(8970), + [aux_sym_def_type_statement_token10] = ACTIONS(8970), + [aux_sym_def_type_statement_token11] = ACTIONS(8970), + [aux_sym_def_type_statement_token12] = ACTIONS(8970), + [aux_sym_def_type_statement_token13] = ACTIONS(8970), + [aux_sym_def_type_statement_token14] = ACTIONS(8970), + [aux_sym_call_statement_token1] = ACTIONS(8970), + [sym__ambiguous_call_statement] = ACTIONS(8970), + [aux_sym_addressof_expression_token1] = ACTIONS(8970), + [aux_sym_type_of_expression_token1] = ACTIONS(8970), + [aux_sym_unary_expression_token1] = ACTIONS(8970), + [sym_string_literal] = ACTIONS(8972), + [sym_number_literal] = ACTIONS(8972), + [aux_sym_boolean_literal_token1] = ACTIONS(8970), + [aux_sym_boolean_literal_token2] = ACTIONS(8970), + [sym_nothing_literal] = ACTIONS(8970), + [sym_null_literal] = ACTIONS(8970), + [sym_empty_literal] = ACTIONS(8970), + [sym_date_literal] = ACTIONS(8972), + [anon_sym_POUND] = ACTIONS(8970), + }, + [STATE(6504)] = { + [sym_identifier] = ACTIONS(9348), + [sym_newline] = ACTIONS(9350), + [anon_sym_COLON] = ACTIONS(9350), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9348), + [aux_sym_frm_property_statement_token1] = ACTIONS(9348), + [anon_sym_DOT] = ACTIONS(9348), + [anon_sym_BANG] = ACTIONS(9350), + [aux_sym__attribute_identifier_token1] = ACTIONS(9348), + [aux_sym_option_statement_token3] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9348), + [aux_sym_preprocessor_const_token1] = ACTIONS(9348), + [sym_static_modifier] = ACTIONS(9348), + [sym__dim_keyword] = ACTIONS(9348), + [sym__redim_keyword] = ACTIONS(9348), + [aux_sym_get_accessor_token1] = ACTIONS(9348), + [aux_sym_set_accessor_token1] = ACTIONS(9348), + [aux_sym_const_declaration_token1] = ACTIONS(9348), + [anon_sym_LPAREN] = ACTIONS(9350), + [aux_sym_as_type_clause_token2] = ACTIONS(9348), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9348), + [aux_sym_visibility_token1] = ACTIONS(9348), + [aux_sym_visibility_token2] = ACTIONS(9348), + [aux_sym_elseif_fragment_token1] = ACTIONS(9348), + [aux_sym_else_fragment_token1] = ACTIONS(9348), + [aux_sym_select_statement_token1] = ACTIONS(9348), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9348), + [aux_sym__for_header_token1] = ACTIONS(9348), + [aux_sym_do_statement_token1] = ACTIONS(9348), + [aux_sym_do_condition_token1] = ACTIONS(9348), + [aux_sym_with_statement_token1] = ACTIONS(9348), + [aux_sym_exit_statement_token1] = ACTIONS(9348), + [sym_end_statement] = ACTIONS(9350), + [aux_sym_on_goto_statement_token1] = ACTIONS(9348), + [aux_sym_on_goto_statement_token2] = ACTIONS(9348), + [aux_sym_on_error_statement_token2] = ACTIONS(9348), + [sym__ambiguous_redim_statement] = ACTIONS(9350), + [aux_sym_erase_statement_token1] = ACTIONS(9348), + [aux_sym_open_statement_token1] = ACTIONS(9348), + [aux_sym_file_mode_token2] = ACTIONS(9348), + [aux_sym_file_access_token2] = ACTIONS(9348), + [aux_sym_file_lock_token2] = ACTIONS(9348), + [aux_sym_print_statement_token1] = ACTIONS(9348), + [anon_sym_PLUS] = ACTIONS(9350), + [anon_sym_DASH] = ACTIONS(9348), + [anon_sym_QMARK] = ACTIONS(9350), + [aux_sym_close_statement_token1] = ACTIONS(9348), + [aux_sym_put_statement_token1] = ACTIONS(9348), + [aux_sym_unlock_statement_token1] = ACTIONS(9348), + [aux_sym_seek_statement_token1] = ACTIONS(9348), + [sym_reset_statement] = ACTIONS(9348), + [aux_sym_raise_event_statement_token1] = ACTIONS(9348), + [sym_stop_statement] = ACTIONS(9348), + [sym_beep_statement] = ACTIONS(9348), + [aux_sym_unload_statement_token1] = ACTIONS(9348), + [aux_sym_def_type_statement_token1] = ACTIONS(9348), + [aux_sym_def_type_statement_token2] = ACTIONS(9348), + [aux_sym_def_type_statement_token3] = ACTIONS(9348), + [aux_sym_def_type_statement_token4] = ACTIONS(9348), + [aux_sym_def_type_statement_token5] = ACTIONS(9348), + [aux_sym_def_type_statement_token6] = ACTIONS(9348), + [aux_sym_def_type_statement_token7] = ACTIONS(9348), + [aux_sym_def_type_statement_token8] = ACTIONS(9348), + [aux_sym_def_type_statement_token9] = ACTIONS(9348), + [aux_sym_def_type_statement_token10] = ACTIONS(9348), + [aux_sym_def_type_statement_token11] = ACTIONS(9348), + [aux_sym_def_type_statement_token12] = ACTIONS(9348), + [aux_sym_def_type_statement_token13] = ACTIONS(9348), + [aux_sym_def_type_statement_token14] = ACTIONS(9348), + [aux_sym_call_statement_token1] = ACTIONS(9348), + [sym__ambiguous_call_statement] = ACTIONS(9348), + [aux_sym_addressof_expression_token1] = ACTIONS(9348), + [aux_sym_type_of_expression_token1] = ACTIONS(9348), + [aux_sym_unary_expression_token1] = ACTIONS(9348), + [sym_string_literal] = ACTIONS(9350), + [sym_number_literal] = ACTIONS(9350), + [aux_sym_boolean_literal_token1] = ACTIONS(9348), + [aux_sym_boolean_literal_token2] = ACTIONS(9348), + [sym_nothing_literal] = ACTIONS(9348), + [sym_null_literal] = ACTIONS(9348), + [sym_empty_literal] = ACTIONS(9348), + [sym_date_literal] = ACTIONS(9350), + [anon_sym_POUND] = ACTIONS(9348), + }, + [STATE(6505)] = { + [sym_identifier] = ACTIONS(9352), + [sym_newline] = ACTIONS(9354), + [anon_sym_COLON] = ACTIONS(9354), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9352), + [aux_sym_frm_property_statement_token1] = ACTIONS(9352), + [anon_sym_DOT] = ACTIONS(9352), + [anon_sym_BANG] = ACTIONS(9354), + [aux_sym__attribute_identifier_token1] = ACTIONS(9352), + [aux_sym_option_statement_token3] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9352), + [aux_sym_preprocessor_const_token1] = ACTIONS(9352), + [sym_static_modifier] = ACTIONS(9352), + [sym__dim_keyword] = ACTIONS(9352), + [sym__redim_keyword] = ACTIONS(9352), + [aux_sym_get_accessor_token1] = ACTIONS(9352), + [aux_sym_set_accessor_token1] = ACTIONS(9352), + [aux_sym_const_declaration_token1] = ACTIONS(9352), + [anon_sym_LPAREN] = ACTIONS(9354), + [aux_sym_as_type_clause_token2] = ACTIONS(9352), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9352), + [aux_sym_visibility_token1] = ACTIONS(9352), + [aux_sym_visibility_token2] = ACTIONS(9352), + [aux_sym_elseif_fragment_token1] = ACTIONS(9352), + [aux_sym_else_fragment_token1] = ACTIONS(9352), + [aux_sym_select_statement_token1] = ACTIONS(9352), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9352), + [aux_sym__for_header_token1] = ACTIONS(9352), + [aux_sym_do_statement_token1] = ACTIONS(9352), + [aux_sym_do_condition_token1] = ACTIONS(9352), + [aux_sym_with_statement_token1] = ACTIONS(9352), + [aux_sym_exit_statement_token1] = ACTIONS(9352), + [sym_end_statement] = ACTIONS(9354), + [aux_sym_on_goto_statement_token1] = ACTIONS(9352), + [aux_sym_on_goto_statement_token2] = ACTIONS(9352), + [aux_sym_on_error_statement_token2] = ACTIONS(9352), + [sym__ambiguous_redim_statement] = ACTIONS(9354), + [aux_sym_erase_statement_token1] = ACTIONS(9352), + [aux_sym_open_statement_token1] = ACTIONS(9352), + [aux_sym_file_mode_token2] = ACTIONS(9352), + [aux_sym_file_access_token2] = ACTIONS(9352), + [aux_sym_file_lock_token2] = ACTIONS(9352), + [aux_sym_print_statement_token1] = ACTIONS(9352), + [anon_sym_PLUS] = ACTIONS(9354), + [anon_sym_DASH] = ACTIONS(9352), + [anon_sym_QMARK] = ACTIONS(9354), + [aux_sym_close_statement_token1] = ACTIONS(9352), + [aux_sym_put_statement_token1] = ACTIONS(9352), + [aux_sym_unlock_statement_token1] = ACTIONS(9352), + [aux_sym_seek_statement_token1] = ACTIONS(9352), + [sym_reset_statement] = ACTIONS(9352), + [aux_sym_raise_event_statement_token1] = ACTIONS(9352), + [sym_stop_statement] = ACTIONS(9352), + [sym_beep_statement] = ACTIONS(9352), + [aux_sym_unload_statement_token1] = ACTIONS(9352), + [aux_sym_def_type_statement_token1] = ACTIONS(9352), + [aux_sym_def_type_statement_token2] = ACTIONS(9352), + [aux_sym_def_type_statement_token3] = ACTIONS(9352), + [aux_sym_def_type_statement_token4] = ACTIONS(9352), + [aux_sym_def_type_statement_token5] = ACTIONS(9352), + [aux_sym_def_type_statement_token6] = ACTIONS(9352), + [aux_sym_def_type_statement_token7] = ACTIONS(9352), + [aux_sym_def_type_statement_token8] = ACTIONS(9352), + [aux_sym_def_type_statement_token9] = ACTIONS(9352), + [aux_sym_def_type_statement_token10] = ACTIONS(9352), + [aux_sym_def_type_statement_token11] = ACTIONS(9352), + [aux_sym_def_type_statement_token12] = ACTIONS(9352), + [aux_sym_def_type_statement_token13] = ACTIONS(9352), + [aux_sym_def_type_statement_token14] = ACTIONS(9352), + [aux_sym_call_statement_token1] = ACTIONS(9352), + [sym__ambiguous_call_statement] = ACTIONS(9352), + [aux_sym_addressof_expression_token1] = ACTIONS(9352), + [aux_sym_type_of_expression_token1] = ACTIONS(9352), + [aux_sym_unary_expression_token1] = ACTIONS(9352), + [sym_string_literal] = ACTIONS(9354), + [sym_number_literal] = ACTIONS(9354), + [aux_sym_boolean_literal_token1] = ACTIONS(9352), + [aux_sym_boolean_literal_token2] = ACTIONS(9352), + [sym_nothing_literal] = ACTIONS(9352), + [sym_null_literal] = ACTIONS(9352), + [sym_empty_literal] = ACTIONS(9352), + [sym_date_literal] = ACTIONS(9354), + [anon_sym_POUND] = ACTIONS(9352), + }, + [STATE(6506)] = { + [sym_identifier] = ACTIONS(9700), + [sym_newline] = ACTIONS(9702), + [anon_sym_COLON] = ACTIONS(9702), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9700), + [aux_sym_frm_property_statement_token1] = ACTIONS(9700), + [anon_sym_DOT] = ACTIONS(9700), + [anon_sym_BANG] = ACTIONS(9702), + [aux_sym__attribute_identifier_token1] = ACTIONS(9700), + [aux_sym_option_statement_token3] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9700), + [aux_sym_preprocessor_const_token1] = ACTIONS(9700), + [sym_static_modifier] = ACTIONS(9700), + [sym__dim_keyword] = ACTIONS(9700), + [sym__redim_keyword] = ACTIONS(9700), + [aux_sym_get_accessor_token1] = ACTIONS(9700), + [aux_sym_set_accessor_token1] = ACTIONS(9700), + [aux_sym_const_declaration_token1] = ACTIONS(9700), + [anon_sym_LPAREN] = ACTIONS(9702), + [aux_sym_as_type_clause_token2] = ACTIONS(9700), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9700), + [aux_sym_visibility_token1] = ACTIONS(9700), + [aux_sym_visibility_token2] = ACTIONS(9700), + [aux_sym_elseif_fragment_token1] = ACTIONS(9700), + [aux_sym_else_fragment_token1] = ACTIONS(9700), + [aux_sym_select_statement_token1] = ACTIONS(9700), + [aux_sym__for_header_token1] = ACTIONS(9700), + [aux_sym_do_statement_token1] = ACTIONS(9700), + [aux_sym_do_statement_token2] = ACTIONS(9700), + [aux_sym_do_condition_token1] = ACTIONS(9700), + [aux_sym_with_statement_token1] = ACTIONS(9700), + [aux_sym_exit_statement_token1] = ACTIONS(9700), + [sym_end_statement] = ACTIONS(9702), + [aux_sym_on_goto_statement_token1] = ACTIONS(9700), + [aux_sym_on_goto_statement_token2] = ACTIONS(9700), + [aux_sym_on_error_statement_token2] = ACTIONS(9700), + [sym__ambiguous_redim_statement] = ACTIONS(9702), + [aux_sym_erase_statement_token1] = ACTIONS(9700), + [aux_sym_open_statement_token1] = ACTIONS(9700), + [aux_sym_file_mode_token2] = ACTIONS(9700), + [aux_sym_file_access_token2] = ACTIONS(9700), + [aux_sym_file_lock_token2] = ACTIONS(9700), + [aux_sym_print_statement_token1] = ACTIONS(9700), + [anon_sym_PLUS] = ACTIONS(9702), + [anon_sym_DASH] = ACTIONS(9700), + [anon_sym_QMARK] = ACTIONS(9702), + [aux_sym_close_statement_token1] = ACTIONS(9700), + [aux_sym_put_statement_token1] = ACTIONS(9700), + [aux_sym_unlock_statement_token1] = ACTIONS(9700), + [aux_sym_seek_statement_token1] = ACTIONS(9700), + [sym_reset_statement] = ACTIONS(9700), + [aux_sym_raise_event_statement_token1] = ACTIONS(9700), + [sym_stop_statement] = ACTIONS(9700), + [sym_beep_statement] = ACTIONS(9700), + [aux_sym_unload_statement_token1] = ACTIONS(9700), + [aux_sym_def_type_statement_token1] = ACTIONS(9700), + [aux_sym_def_type_statement_token2] = ACTIONS(9700), + [aux_sym_def_type_statement_token3] = ACTIONS(9700), + [aux_sym_def_type_statement_token4] = ACTIONS(9700), + [aux_sym_def_type_statement_token5] = ACTIONS(9700), + [aux_sym_def_type_statement_token6] = ACTIONS(9700), + [aux_sym_def_type_statement_token7] = ACTIONS(9700), + [aux_sym_def_type_statement_token8] = ACTIONS(9700), + [aux_sym_def_type_statement_token9] = ACTIONS(9700), + [aux_sym_def_type_statement_token10] = ACTIONS(9700), + [aux_sym_def_type_statement_token11] = ACTIONS(9700), + [aux_sym_def_type_statement_token12] = ACTIONS(9700), + [aux_sym_def_type_statement_token13] = ACTIONS(9700), + [aux_sym_def_type_statement_token14] = ACTIONS(9700), + [aux_sym_call_statement_token1] = ACTIONS(9700), + [sym__ambiguous_call_statement] = ACTIONS(9700), + [aux_sym_addressof_expression_token1] = ACTIONS(9700), + [aux_sym_type_of_expression_token1] = ACTIONS(9700), + [aux_sym_unary_expression_token1] = ACTIONS(9700), + [sym_string_literal] = ACTIONS(9702), + [sym_number_literal] = ACTIONS(9702), + [aux_sym_boolean_literal_token1] = ACTIONS(9700), + [aux_sym_boolean_literal_token2] = ACTIONS(9700), + [sym_nothing_literal] = ACTIONS(9700), + [sym_null_literal] = ACTIONS(9700), + [sym_empty_literal] = ACTIONS(9700), + [sym_date_literal] = ACTIONS(9702), + [anon_sym_POUND] = ACTIONS(9700), + }, + [STATE(6507)] = { + [sym_identifier] = ACTIONS(9704), + [sym_newline] = ACTIONS(9706), + [anon_sym_COLON] = ACTIONS(9706), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9704), + [aux_sym_frm_property_statement_token1] = ACTIONS(9704), + [anon_sym_DOT] = ACTIONS(9704), + [anon_sym_BANG] = ACTIONS(9706), + [aux_sym__attribute_identifier_token1] = ACTIONS(9704), + [aux_sym_option_statement_token3] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9704), + [aux_sym_preprocessor_const_token1] = ACTIONS(9704), + [sym_static_modifier] = ACTIONS(9704), + [sym__dim_keyword] = ACTIONS(9704), + [sym__redim_keyword] = ACTIONS(9704), + [aux_sym_get_accessor_token1] = ACTIONS(9704), + [aux_sym_set_accessor_token1] = ACTIONS(9704), + [aux_sym_const_declaration_token1] = ACTIONS(9704), + [anon_sym_LPAREN] = ACTIONS(9706), + [aux_sym_as_type_clause_token2] = ACTIONS(9704), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9704), + [aux_sym_visibility_token1] = ACTIONS(9704), + [aux_sym_visibility_token2] = ACTIONS(9704), + [aux_sym_elseif_fragment_token1] = ACTIONS(9704), + [aux_sym_else_fragment_token1] = ACTIONS(9704), + [aux_sym_select_statement_token1] = ACTIONS(9704), + [aux_sym__for_header_token1] = ACTIONS(9704), + [aux_sym_do_statement_token1] = ACTIONS(9704), + [aux_sym_do_statement_token2] = ACTIONS(9704), + [aux_sym_do_condition_token1] = ACTIONS(9704), + [aux_sym_with_statement_token1] = ACTIONS(9704), + [aux_sym_exit_statement_token1] = ACTIONS(9704), + [sym_end_statement] = ACTIONS(9706), + [aux_sym_on_goto_statement_token1] = ACTIONS(9704), + [aux_sym_on_goto_statement_token2] = ACTIONS(9704), + [aux_sym_on_error_statement_token2] = ACTIONS(9704), + [sym__ambiguous_redim_statement] = ACTIONS(9706), + [aux_sym_erase_statement_token1] = ACTIONS(9704), + [aux_sym_open_statement_token1] = ACTIONS(9704), + [aux_sym_file_mode_token2] = ACTIONS(9704), + [aux_sym_file_access_token2] = ACTIONS(9704), + [aux_sym_file_lock_token2] = ACTIONS(9704), + [aux_sym_print_statement_token1] = ACTIONS(9704), + [anon_sym_PLUS] = ACTIONS(9706), + [anon_sym_DASH] = ACTIONS(9704), + [anon_sym_QMARK] = ACTIONS(9706), + [aux_sym_close_statement_token1] = ACTIONS(9704), + [aux_sym_put_statement_token1] = ACTIONS(9704), + [aux_sym_unlock_statement_token1] = ACTIONS(9704), + [aux_sym_seek_statement_token1] = ACTIONS(9704), + [sym_reset_statement] = ACTIONS(9704), + [aux_sym_raise_event_statement_token1] = ACTIONS(9704), + [sym_stop_statement] = ACTIONS(9704), + [sym_beep_statement] = ACTIONS(9704), + [aux_sym_unload_statement_token1] = ACTIONS(9704), + [aux_sym_def_type_statement_token1] = ACTIONS(9704), + [aux_sym_def_type_statement_token2] = ACTIONS(9704), + [aux_sym_def_type_statement_token3] = ACTIONS(9704), + [aux_sym_def_type_statement_token4] = ACTIONS(9704), + [aux_sym_def_type_statement_token5] = ACTIONS(9704), + [aux_sym_def_type_statement_token6] = ACTIONS(9704), + [aux_sym_def_type_statement_token7] = ACTIONS(9704), + [aux_sym_def_type_statement_token8] = ACTIONS(9704), + [aux_sym_def_type_statement_token9] = ACTIONS(9704), + [aux_sym_def_type_statement_token10] = ACTIONS(9704), + [aux_sym_def_type_statement_token11] = ACTIONS(9704), + [aux_sym_def_type_statement_token12] = ACTIONS(9704), + [aux_sym_def_type_statement_token13] = ACTIONS(9704), + [aux_sym_def_type_statement_token14] = ACTIONS(9704), + [aux_sym_call_statement_token1] = ACTIONS(9704), + [sym__ambiguous_call_statement] = ACTIONS(9704), + [aux_sym_addressof_expression_token1] = ACTIONS(9704), + [aux_sym_type_of_expression_token1] = ACTIONS(9704), + [aux_sym_unary_expression_token1] = ACTIONS(9704), + [sym_string_literal] = ACTIONS(9706), + [sym_number_literal] = ACTIONS(9706), + [aux_sym_boolean_literal_token1] = ACTIONS(9704), + [aux_sym_boolean_literal_token2] = ACTIONS(9704), + [sym_nothing_literal] = ACTIONS(9704), + [sym_null_literal] = ACTIONS(9704), + [sym_empty_literal] = ACTIONS(9704), + [sym_date_literal] = ACTIONS(9706), + [anon_sym_POUND] = ACTIONS(9704), + }, + [STATE(6508)] = { + [sym_identifier] = ACTIONS(9708), + [sym_newline] = ACTIONS(9710), + [anon_sym_COLON] = ACTIONS(9710), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9708), + [aux_sym_frm_property_statement_token1] = ACTIONS(9708), + [anon_sym_DOT] = ACTIONS(9708), + [anon_sym_BANG] = ACTIONS(9710), + [aux_sym__attribute_identifier_token1] = ACTIONS(9708), + [aux_sym_option_statement_token3] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9708), + [aux_sym_preprocessor_const_token1] = ACTIONS(9708), + [sym_static_modifier] = ACTIONS(9708), + [sym__dim_keyword] = ACTIONS(9708), + [sym__redim_keyword] = ACTIONS(9708), + [aux_sym_get_accessor_token1] = ACTIONS(9708), + [aux_sym_set_accessor_token1] = ACTIONS(9708), + [aux_sym_const_declaration_token1] = ACTIONS(9708), + [anon_sym_LPAREN] = ACTIONS(9710), + [aux_sym_as_type_clause_token2] = ACTIONS(9708), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9708), + [aux_sym_visibility_token1] = ACTIONS(9708), + [aux_sym_visibility_token2] = ACTIONS(9708), + [aux_sym_elseif_fragment_token1] = ACTIONS(9708), + [aux_sym_else_fragment_token1] = ACTIONS(9708), + [aux_sym_select_statement_token1] = ACTIONS(9708), + [aux_sym__for_header_token1] = ACTIONS(9708), + [aux_sym_do_statement_token1] = ACTIONS(9708), + [aux_sym_do_statement_token2] = ACTIONS(9708), + [aux_sym_do_condition_token1] = ACTIONS(9708), + [aux_sym_with_statement_token1] = ACTIONS(9708), + [aux_sym_exit_statement_token1] = ACTIONS(9708), + [sym_end_statement] = ACTIONS(9710), + [aux_sym_on_goto_statement_token1] = ACTIONS(9708), + [aux_sym_on_goto_statement_token2] = ACTIONS(9708), + [aux_sym_on_error_statement_token2] = ACTIONS(9708), + [sym__ambiguous_redim_statement] = ACTIONS(9710), + [aux_sym_erase_statement_token1] = ACTIONS(9708), + [aux_sym_open_statement_token1] = ACTIONS(9708), + [aux_sym_file_mode_token2] = ACTIONS(9708), + [aux_sym_file_access_token2] = ACTIONS(9708), + [aux_sym_file_lock_token2] = ACTIONS(9708), + [aux_sym_print_statement_token1] = ACTIONS(9708), + [anon_sym_PLUS] = ACTIONS(9710), + [anon_sym_DASH] = ACTIONS(9708), + [anon_sym_QMARK] = ACTIONS(9710), + [aux_sym_close_statement_token1] = ACTIONS(9708), + [aux_sym_put_statement_token1] = ACTIONS(9708), + [aux_sym_unlock_statement_token1] = ACTIONS(9708), + [aux_sym_seek_statement_token1] = ACTIONS(9708), + [sym_reset_statement] = ACTIONS(9708), + [aux_sym_raise_event_statement_token1] = ACTIONS(9708), + [sym_stop_statement] = ACTIONS(9708), + [sym_beep_statement] = ACTIONS(9708), + [aux_sym_unload_statement_token1] = ACTIONS(9708), + [aux_sym_def_type_statement_token1] = ACTIONS(9708), + [aux_sym_def_type_statement_token2] = ACTIONS(9708), + [aux_sym_def_type_statement_token3] = ACTIONS(9708), + [aux_sym_def_type_statement_token4] = ACTIONS(9708), + [aux_sym_def_type_statement_token5] = ACTIONS(9708), + [aux_sym_def_type_statement_token6] = ACTIONS(9708), + [aux_sym_def_type_statement_token7] = ACTIONS(9708), + [aux_sym_def_type_statement_token8] = ACTIONS(9708), + [aux_sym_def_type_statement_token9] = ACTIONS(9708), + [aux_sym_def_type_statement_token10] = ACTIONS(9708), + [aux_sym_def_type_statement_token11] = ACTIONS(9708), + [aux_sym_def_type_statement_token12] = ACTIONS(9708), + [aux_sym_def_type_statement_token13] = ACTIONS(9708), + [aux_sym_def_type_statement_token14] = ACTIONS(9708), + [aux_sym_call_statement_token1] = ACTIONS(9708), + [sym__ambiguous_call_statement] = ACTIONS(9708), + [aux_sym_addressof_expression_token1] = ACTIONS(9708), + [aux_sym_type_of_expression_token1] = ACTIONS(9708), + [aux_sym_unary_expression_token1] = ACTIONS(9708), + [sym_string_literal] = ACTIONS(9710), + [sym_number_literal] = ACTIONS(9710), + [aux_sym_boolean_literal_token1] = ACTIONS(9708), + [aux_sym_boolean_literal_token2] = ACTIONS(9708), + [sym_nothing_literal] = ACTIONS(9708), + [sym_null_literal] = ACTIONS(9708), + [sym_empty_literal] = ACTIONS(9708), + [sym_date_literal] = ACTIONS(9710), + [anon_sym_POUND] = ACTIONS(9708), + }, + [STATE(6509)] = { + [sym_identifier] = ACTIONS(9356), + [sym_newline] = ACTIONS(9358), + [anon_sym_COLON] = ACTIONS(9358), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9356), + [aux_sym_frm_property_statement_token1] = ACTIONS(9356), + [anon_sym_DOT] = ACTIONS(9356), + [anon_sym_BANG] = ACTIONS(9358), + [aux_sym__attribute_identifier_token1] = ACTIONS(9356), + [aux_sym_option_statement_token3] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9356), + [aux_sym_preprocessor_const_token1] = ACTIONS(9356), + [sym_static_modifier] = ACTIONS(9356), + [sym__dim_keyword] = ACTIONS(9356), + [sym__redim_keyword] = ACTIONS(9356), + [aux_sym_get_accessor_token1] = ACTIONS(9356), + [aux_sym_set_accessor_token1] = ACTIONS(9356), + [aux_sym_const_declaration_token1] = ACTIONS(9356), + [anon_sym_LPAREN] = ACTIONS(9358), + [aux_sym_as_type_clause_token2] = ACTIONS(9356), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9356), + [aux_sym_visibility_token1] = ACTIONS(9356), + [aux_sym_visibility_token2] = ACTIONS(9356), + [aux_sym_elseif_fragment_token1] = ACTIONS(9356), + [aux_sym_else_fragment_token1] = ACTIONS(9356), + [aux_sym_select_statement_token1] = ACTIONS(9356), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9356), + [aux_sym__for_header_token1] = ACTIONS(9356), + [aux_sym_do_statement_token1] = ACTIONS(9356), + [aux_sym_do_condition_token1] = ACTIONS(9356), + [aux_sym_with_statement_token1] = ACTIONS(9356), + [aux_sym_exit_statement_token1] = ACTIONS(9356), + [sym_end_statement] = ACTIONS(9358), + [aux_sym_on_goto_statement_token1] = ACTIONS(9356), + [aux_sym_on_goto_statement_token2] = ACTIONS(9356), + [aux_sym_on_error_statement_token2] = ACTIONS(9356), + [sym__ambiguous_redim_statement] = ACTIONS(9358), + [aux_sym_erase_statement_token1] = ACTIONS(9356), + [aux_sym_open_statement_token1] = ACTIONS(9356), + [aux_sym_file_mode_token2] = ACTIONS(9356), + [aux_sym_file_access_token2] = ACTIONS(9356), + [aux_sym_file_lock_token2] = ACTIONS(9356), + [aux_sym_print_statement_token1] = ACTIONS(9356), + [anon_sym_PLUS] = ACTIONS(9358), + [anon_sym_DASH] = ACTIONS(9356), + [anon_sym_QMARK] = ACTIONS(9358), + [aux_sym_close_statement_token1] = ACTIONS(9356), + [aux_sym_put_statement_token1] = ACTIONS(9356), + [aux_sym_unlock_statement_token1] = ACTIONS(9356), + [aux_sym_seek_statement_token1] = ACTIONS(9356), + [sym_reset_statement] = ACTIONS(9356), + [aux_sym_raise_event_statement_token1] = ACTIONS(9356), + [sym_stop_statement] = ACTIONS(9356), + [sym_beep_statement] = ACTIONS(9356), + [aux_sym_unload_statement_token1] = ACTIONS(9356), + [aux_sym_def_type_statement_token1] = ACTIONS(9356), + [aux_sym_def_type_statement_token2] = ACTIONS(9356), + [aux_sym_def_type_statement_token3] = ACTIONS(9356), + [aux_sym_def_type_statement_token4] = ACTIONS(9356), + [aux_sym_def_type_statement_token5] = ACTIONS(9356), + [aux_sym_def_type_statement_token6] = ACTIONS(9356), + [aux_sym_def_type_statement_token7] = ACTIONS(9356), + [aux_sym_def_type_statement_token8] = ACTIONS(9356), + [aux_sym_def_type_statement_token9] = ACTIONS(9356), + [aux_sym_def_type_statement_token10] = ACTIONS(9356), + [aux_sym_def_type_statement_token11] = ACTIONS(9356), + [aux_sym_def_type_statement_token12] = ACTIONS(9356), + [aux_sym_def_type_statement_token13] = ACTIONS(9356), + [aux_sym_def_type_statement_token14] = ACTIONS(9356), + [aux_sym_call_statement_token1] = ACTIONS(9356), + [sym__ambiguous_call_statement] = ACTIONS(9356), + [aux_sym_addressof_expression_token1] = ACTIONS(9356), + [aux_sym_type_of_expression_token1] = ACTIONS(9356), + [aux_sym_unary_expression_token1] = ACTIONS(9356), + [sym_string_literal] = ACTIONS(9358), + [sym_number_literal] = ACTIONS(9358), + [aux_sym_boolean_literal_token1] = ACTIONS(9356), + [aux_sym_boolean_literal_token2] = ACTIONS(9356), + [sym_nothing_literal] = ACTIONS(9356), + [sym_null_literal] = ACTIONS(9356), + [sym_empty_literal] = ACTIONS(9356), + [sym_date_literal] = ACTIONS(9358), + [anon_sym_POUND] = ACTIONS(9356), + }, + [STATE(6510)] = { + [sym_identifier] = ACTIONS(8749), + [sym_newline] = ACTIONS(8751), + [anon_sym_COLON] = ACTIONS(8753), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8749), + [aux_sym_frm_property_statement_token1] = ACTIONS(8749), + [anon_sym_DOT] = ACTIONS(8749), + [anon_sym_BANG] = ACTIONS(8751), + [aux_sym__attribute_identifier_token1] = ACTIONS(8749), + [aux_sym_option_statement_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8749), + [aux_sym_preprocessor_const_token1] = ACTIONS(8749), + [sym_static_modifier] = ACTIONS(8749), + [sym__dim_keyword] = ACTIONS(8749), + [sym__redim_keyword] = ACTIONS(8749), + [aux_sym_get_accessor_token1] = ACTIONS(8749), + [aux_sym_set_accessor_token1] = ACTIONS(8749), + [aux_sym_const_declaration_token1] = ACTIONS(8749), + [anon_sym_LPAREN] = ACTIONS(8751), + [aux_sym_as_type_clause_token2] = ACTIONS(8749), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8749), + [aux_sym_visibility_token1] = ACTIONS(8749), + [aux_sym_visibility_token2] = ACTIONS(8749), + [aux_sym_elseif_fragment_token1] = ACTIONS(8749), + [aux_sym_else_fragment_token1] = ACTIONS(8749), + [aux_sym_select_statement_token1] = ACTIONS(8749), + [aux_sym__for_header_token1] = ACTIONS(8749), + [aux_sym_do_statement_token1] = ACTIONS(8749), + [aux_sym_do_statement_token2] = ACTIONS(8749), + [aux_sym_do_condition_token1] = ACTIONS(8749), + [aux_sym_with_statement_token1] = ACTIONS(8749), + [aux_sym_exit_statement_token1] = ACTIONS(8749), + [sym_end_statement] = ACTIONS(8751), + [aux_sym_on_goto_statement_token1] = ACTIONS(8749), + [aux_sym_on_goto_statement_token2] = ACTIONS(8749), + [aux_sym_on_error_statement_token2] = ACTIONS(8749), + [sym__ambiguous_redim_statement] = ACTIONS(8751), + [aux_sym_erase_statement_token1] = ACTIONS(8749), + [aux_sym_open_statement_token1] = ACTIONS(8749), + [aux_sym_file_mode_token2] = ACTIONS(8749), + [aux_sym_file_access_token2] = ACTIONS(8749), + [aux_sym_file_lock_token2] = ACTIONS(8749), + [aux_sym_print_statement_token1] = ACTIONS(8749), + [anon_sym_PLUS] = ACTIONS(8751), + [anon_sym_DASH] = ACTIONS(8749), + [anon_sym_QMARK] = ACTIONS(8751), + [aux_sym_close_statement_token1] = ACTIONS(8749), + [aux_sym_put_statement_token1] = ACTIONS(8749), + [aux_sym_unlock_statement_token1] = ACTIONS(8749), + [aux_sym_seek_statement_token1] = ACTIONS(8749), + [sym_reset_statement] = ACTIONS(8749), + [aux_sym_raise_event_statement_token1] = ACTIONS(8749), + [sym_stop_statement] = ACTIONS(8749), + [sym_beep_statement] = ACTIONS(8749), + [aux_sym_unload_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token2] = ACTIONS(8749), + [aux_sym_def_type_statement_token3] = ACTIONS(8749), + [aux_sym_def_type_statement_token4] = ACTIONS(8749), + [aux_sym_def_type_statement_token5] = ACTIONS(8749), + [aux_sym_def_type_statement_token6] = ACTIONS(8749), + [aux_sym_def_type_statement_token7] = ACTIONS(8749), + [aux_sym_def_type_statement_token8] = ACTIONS(8749), + [aux_sym_def_type_statement_token9] = ACTIONS(8749), + [aux_sym_def_type_statement_token10] = ACTIONS(8749), + [aux_sym_def_type_statement_token11] = ACTIONS(8749), + [aux_sym_def_type_statement_token12] = ACTIONS(8749), + [aux_sym_def_type_statement_token13] = ACTIONS(8749), + [aux_sym_def_type_statement_token14] = ACTIONS(8749), + [aux_sym_call_statement_token1] = ACTIONS(8749), + [sym__ambiguous_call_statement] = ACTIONS(8749), + [aux_sym_addressof_expression_token1] = ACTIONS(8749), + [aux_sym_type_of_expression_token1] = ACTIONS(8749), + [aux_sym_unary_expression_token1] = ACTIONS(8749), + [sym_string_literal] = ACTIONS(8751), + [sym_number_literal] = ACTIONS(8753), + [aux_sym_boolean_literal_token1] = ACTIONS(8749), + [aux_sym_boolean_literal_token2] = ACTIONS(8749), + [sym_nothing_literal] = ACTIONS(8749), + [sym_null_literal] = ACTIONS(8749), + [sym_empty_literal] = ACTIONS(8749), + [sym_date_literal] = ACTIONS(8751), + [anon_sym_POUND] = ACTIONS(8749), + }, + [STATE(6511)] = { + [sym_identifier] = ACTIONS(9712), + [sym_newline] = ACTIONS(9714), + [anon_sym_COLON] = ACTIONS(9714), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9712), + [aux_sym_frm_property_statement_token1] = ACTIONS(9712), + [anon_sym_DOT] = ACTIONS(9712), + [anon_sym_BANG] = ACTIONS(9714), + [aux_sym__attribute_identifier_token1] = ACTIONS(9712), + [aux_sym_option_statement_token3] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9712), + [aux_sym_preprocessor_const_token1] = ACTIONS(9712), + [sym_static_modifier] = ACTIONS(9712), + [sym__dim_keyword] = ACTIONS(9712), + [sym__redim_keyword] = ACTIONS(9712), + [aux_sym_get_accessor_token1] = ACTIONS(9712), + [aux_sym_set_accessor_token1] = ACTIONS(9712), + [aux_sym_const_declaration_token1] = ACTIONS(9712), + [anon_sym_LPAREN] = ACTIONS(9714), + [aux_sym_as_type_clause_token2] = ACTIONS(9712), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9712), + [aux_sym_visibility_token1] = ACTIONS(9712), + [aux_sym_visibility_token2] = ACTIONS(9712), + [aux_sym_elseif_fragment_token1] = ACTIONS(9712), + [aux_sym_else_fragment_token1] = ACTIONS(9712), + [aux_sym_select_statement_token1] = ACTIONS(9712), + [aux_sym__for_header_token1] = ACTIONS(9712), + [aux_sym_do_statement_token1] = ACTIONS(9712), + [aux_sym_do_statement_token2] = ACTIONS(9712), + [aux_sym_do_condition_token1] = ACTIONS(9712), + [aux_sym_with_statement_token1] = ACTIONS(9712), + [aux_sym_exit_statement_token1] = ACTIONS(9712), + [sym_end_statement] = ACTIONS(9714), + [aux_sym_on_goto_statement_token1] = ACTIONS(9712), + [aux_sym_on_goto_statement_token2] = ACTIONS(9712), + [aux_sym_on_error_statement_token2] = ACTIONS(9712), + [sym__ambiguous_redim_statement] = ACTIONS(9714), + [aux_sym_erase_statement_token1] = ACTIONS(9712), + [aux_sym_open_statement_token1] = ACTIONS(9712), + [aux_sym_file_mode_token2] = ACTIONS(9712), + [aux_sym_file_access_token2] = ACTIONS(9712), + [aux_sym_file_lock_token2] = ACTIONS(9712), + [aux_sym_print_statement_token1] = ACTIONS(9712), + [anon_sym_PLUS] = ACTIONS(9714), + [anon_sym_DASH] = ACTIONS(9712), + [anon_sym_QMARK] = ACTIONS(9714), + [aux_sym_close_statement_token1] = ACTIONS(9712), + [aux_sym_put_statement_token1] = ACTIONS(9712), + [aux_sym_unlock_statement_token1] = ACTIONS(9712), + [aux_sym_seek_statement_token1] = ACTIONS(9712), + [sym_reset_statement] = ACTIONS(9712), + [aux_sym_raise_event_statement_token1] = ACTIONS(9712), + [sym_stop_statement] = ACTIONS(9712), + [sym_beep_statement] = ACTIONS(9712), + [aux_sym_unload_statement_token1] = ACTIONS(9712), + [aux_sym_def_type_statement_token1] = ACTIONS(9712), + [aux_sym_def_type_statement_token2] = ACTIONS(9712), + [aux_sym_def_type_statement_token3] = ACTIONS(9712), + [aux_sym_def_type_statement_token4] = ACTIONS(9712), + [aux_sym_def_type_statement_token5] = ACTIONS(9712), + [aux_sym_def_type_statement_token6] = ACTIONS(9712), + [aux_sym_def_type_statement_token7] = ACTIONS(9712), + [aux_sym_def_type_statement_token8] = ACTIONS(9712), + [aux_sym_def_type_statement_token9] = ACTIONS(9712), + [aux_sym_def_type_statement_token10] = ACTIONS(9712), + [aux_sym_def_type_statement_token11] = ACTIONS(9712), + [aux_sym_def_type_statement_token12] = ACTIONS(9712), + [aux_sym_def_type_statement_token13] = ACTIONS(9712), + [aux_sym_def_type_statement_token14] = ACTIONS(9712), + [aux_sym_call_statement_token1] = ACTIONS(9712), + [sym__ambiguous_call_statement] = ACTIONS(9712), + [aux_sym_addressof_expression_token1] = ACTIONS(9712), + [aux_sym_type_of_expression_token1] = ACTIONS(9712), + [aux_sym_unary_expression_token1] = ACTIONS(9712), + [sym_string_literal] = ACTIONS(9714), + [sym_number_literal] = ACTIONS(9714), + [aux_sym_boolean_literal_token1] = ACTIONS(9712), + [aux_sym_boolean_literal_token2] = ACTIONS(9712), + [sym_nothing_literal] = ACTIONS(9712), + [sym_null_literal] = ACTIONS(9712), + [sym_empty_literal] = ACTIONS(9712), + [sym_date_literal] = ACTIONS(9714), + [anon_sym_POUND] = ACTIONS(9712), + }, + [STATE(6512)] = { + [sym_identifier] = ACTIONS(9716), + [sym_newline] = ACTIONS(9718), + [anon_sym_COLON] = ACTIONS(9718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9716), + [aux_sym_frm_property_statement_token1] = ACTIONS(9716), + [anon_sym_DOT] = ACTIONS(9716), + [anon_sym_BANG] = ACTIONS(9718), + [aux_sym__attribute_identifier_token1] = ACTIONS(9716), + [aux_sym_option_statement_token3] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9716), + [aux_sym_preprocessor_const_token1] = ACTIONS(9716), + [sym_static_modifier] = ACTIONS(9716), + [sym__dim_keyword] = ACTIONS(9716), + [sym__redim_keyword] = ACTIONS(9716), + [aux_sym_get_accessor_token1] = ACTIONS(9716), + [aux_sym_set_accessor_token1] = ACTIONS(9716), + [aux_sym_const_declaration_token1] = ACTIONS(9716), + [anon_sym_LPAREN] = ACTIONS(9718), + [aux_sym_as_type_clause_token2] = ACTIONS(9716), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9716), + [aux_sym_visibility_token1] = ACTIONS(9716), + [aux_sym_visibility_token2] = ACTIONS(9716), + [aux_sym_elseif_fragment_token1] = ACTIONS(9716), + [aux_sym_else_fragment_token1] = ACTIONS(9716), + [aux_sym_select_statement_token1] = ACTIONS(9716), + [aux_sym__for_header_token1] = ACTIONS(9716), + [aux_sym_do_statement_token1] = ACTIONS(9716), + [aux_sym_do_statement_token2] = ACTIONS(9716), + [aux_sym_do_condition_token1] = ACTIONS(9716), + [aux_sym_with_statement_token1] = ACTIONS(9716), + [aux_sym_exit_statement_token1] = ACTIONS(9716), + [sym_end_statement] = ACTIONS(9718), + [aux_sym_on_goto_statement_token1] = ACTIONS(9716), + [aux_sym_on_goto_statement_token2] = ACTIONS(9716), + [aux_sym_on_error_statement_token2] = ACTIONS(9716), + [sym__ambiguous_redim_statement] = ACTIONS(9718), + [aux_sym_erase_statement_token1] = ACTIONS(9716), + [aux_sym_open_statement_token1] = ACTIONS(9716), + [aux_sym_file_mode_token2] = ACTIONS(9716), + [aux_sym_file_access_token2] = ACTIONS(9716), + [aux_sym_file_lock_token2] = ACTIONS(9716), + [aux_sym_print_statement_token1] = ACTIONS(9716), + [anon_sym_PLUS] = ACTIONS(9718), + [anon_sym_DASH] = ACTIONS(9716), + [anon_sym_QMARK] = ACTIONS(9718), + [aux_sym_close_statement_token1] = ACTIONS(9716), + [aux_sym_put_statement_token1] = ACTIONS(9716), + [aux_sym_unlock_statement_token1] = ACTIONS(9716), + [aux_sym_seek_statement_token1] = ACTIONS(9716), + [sym_reset_statement] = ACTIONS(9716), + [aux_sym_raise_event_statement_token1] = ACTIONS(9716), + [sym_stop_statement] = ACTIONS(9716), + [sym_beep_statement] = ACTIONS(9716), + [aux_sym_unload_statement_token1] = ACTIONS(9716), + [aux_sym_def_type_statement_token1] = ACTIONS(9716), + [aux_sym_def_type_statement_token2] = ACTIONS(9716), + [aux_sym_def_type_statement_token3] = ACTIONS(9716), + [aux_sym_def_type_statement_token4] = ACTIONS(9716), + [aux_sym_def_type_statement_token5] = ACTIONS(9716), + [aux_sym_def_type_statement_token6] = ACTIONS(9716), + [aux_sym_def_type_statement_token7] = ACTIONS(9716), + [aux_sym_def_type_statement_token8] = ACTIONS(9716), + [aux_sym_def_type_statement_token9] = ACTIONS(9716), + [aux_sym_def_type_statement_token10] = ACTIONS(9716), + [aux_sym_def_type_statement_token11] = ACTIONS(9716), + [aux_sym_def_type_statement_token12] = ACTIONS(9716), + [aux_sym_def_type_statement_token13] = ACTIONS(9716), + [aux_sym_def_type_statement_token14] = ACTIONS(9716), + [aux_sym_call_statement_token1] = ACTIONS(9716), + [sym__ambiguous_call_statement] = ACTIONS(9716), + [aux_sym_addressof_expression_token1] = ACTIONS(9716), + [aux_sym_type_of_expression_token1] = ACTIONS(9716), + [aux_sym_unary_expression_token1] = ACTIONS(9716), + [sym_string_literal] = ACTIONS(9718), + [sym_number_literal] = ACTIONS(9718), + [aux_sym_boolean_literal_token1] = ACTIONS(9716), + [aux_sym_boolean_literal_token2] = ACTIONS(9716), + [sym_nothing_literal] = ACTIONS(9716), + [sym_null_literal] = ACTIONS(9716), + [sym_empty_literal] = ACTIONS(9716), + [sym_date_literal] = ACTIONS(9718), + [anon_sym_POUND] = ACTIONS(9716), + }, + [STATE(6513)] = { + [sym_identifier] = ACTIONS(9360), + [sym_newline] = ACTIONS(9362), + [anon_sym_COLON] = ACTIONS(9362), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9360), + [aux_sym_frm_property_statement_token1] = ACTIONS(9360), + [anon_sym_DOT] = ACTIONS(9360), + [anon_sym_BANG] = ACTIONS(9362), + [aux_sym__attribute_identifier_token1] = ACTIONS(9360), + [aux_sym_option_statement_token3] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9360), + [aux_sym_preprocessor_const_token1] = ACTIONS(9360), + [sym_static_modifier] = ACTIONS(9360), + [sym__dim_keyword] = ACTIONS(9360), + [sym__redim_keyword] = ACTIONS(9360), + [aux_sym_get_accessor_token1] = ACTIONS(9360), + [aux_sym_set_accessor_token1] = ACTIONS(9360), + [aux_sym_const_declaration_token1] = ACTIONS(9360), + [anon_sym_LPAREN] = ACTIONS(9362), + [aux_sym_as_type_clause_token2] = ACTIONS(9360), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9360), + [aux_sym_visibility_token1] = ACTIONS(9360), + [aux_sym_visibility_token2] = ACTIONS(9360), + [aux_sym_elseif_fragment_token1] = ACTIONS(9360), + [aux_sym_else_fragment_token1] = ACTIONS(9360), + [aux_sym_select_statement_token1] = ACTIONS(9360), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9360), + [aux_sym__for_header_token1] = ACTIONS(9360), + [aux_sym_do_statement_token1] = ACTIONS(9360), + [aux_sym_do_condition_token1] = ACTIONS(9360), + [aux_sym_with_statement_token1] = ACTIONS(9360), + [aux_sym_exit_statement_token1] = ACTIONS(9360), + [sym_end_statement] = ACTIONS(9362), + [aux_sym_on_goto_statement_token1] = ACTIONS(9360), + [aux_sym_on_goto_statement_token2] = ACTIONS(9360), + [aux_sym_on_error_statement_token2] = ACTIONS(9360), + [sym__ambiguous_redim_statement] = ACTIONS(9362), + [aux_sym_erase_statement_token1] = ACTIONS(9360), + [aux_sym_open_statement_token1] = ACTIONS(9360), + [aux_sym_file_mode_token2] = ACTIONS(9360), + [aux_sym_file_access_token2] = ACTIONS(9360), + [aux_sym_file_lock_token2] = ACTIONS(9360), + [aux_sym_print_statement_token1] = ACTIONS(9360), + [anon_sym_PLUS] = ACTIONS(9362), + [anon_sym_DASH] = ACTIONS(9360), + [anon_sym_QMARK] = ACTIONS(9362), + [aux_sym_close_statement_token1] = ACTIONS(9360), + [aux_sym_put_statement_token1] = ACTIONS(9360), + [aux_sym_unlock_statement_token1] = ACTIONS(9360), + [aux_sym_seek_statement_token1] = ACTIONS(9360), + [sym_reset_statement] = ACTIONS(9360), + [aux_sym_raise_event_statement_token1] = ACTIONS(9360), + [sym_stop_statement] = ACTIONS(9360), + [sym_beep_statement] = ACTIONS(9360), + [aux_sym_unload_statement_token1] = ACTIONS(9360), + [aux_sym_def_type_statement_token1] = ACTIONS(9360), + [aux_sym_def_type_statement_token2] = ACTIONS(9360), + [aux_sym_def_type_statement_token3] = ACTIONS(9360), + [aux_sym_def_type_statement_token4] = ACTIONS(9360), + [aux_sym_def_type_statement_token5] = ACTIONS(9360), + [aux_sym_def_type_statement_token6] = ACTIONS(9360), + [aux_sym_def_type_statement_token7] = ACTIONS(9360), + [aux_sym_def_type_statement_token8] = ACTIONS(9360), + [aux_sym_def_type_statement_token9] = ACTIONS(9360), + [aux_sym_def_type_statement_token10] = ACTIONS(9360), + [aux_sym_def_type_statement_token11] = ACTIONS(9360), + [aux_sym_def_type_statement_token12] = ACTIONS(9360), + [aux_sym_def_type_statement_token13] = ACTIONS(9360), + [aux_sym_def_type_statement_token14] = ACTIONS(9360), + [aux_sym_call_statement_token1] = ACTIONS(9360), + [sym__ambiguous_call_statement] = ACTIONS(9360), + [aux_sym_addressof_expression_token1] = ACTIONS(9360), + [aux_sym_type_of_expression_token1] = ACTIONS(9360), + [aux_sym_unary_expression_token1] = ACTIONS(9360), + [sym_string_literal] = ACTIONS(9362), + [sym_number_literal] = ACTIONS(9362), + [aux_sym_boolean_literal_token1] = ACTIONS(9360), + [aux_sym_boolean_literal_token2] = ACTIONS(9360), + [sym_nothing_literal] = ACTIONS(9360), + [sym_null_literal] = ACTIONS(9360), + [sym_empty_literal] = ACTIONS(9360), + [sym_date_literal] = ACTIONS(9362), + [anon_sym_POUND] = ACTIONS(9360), + }, + [STATE(6514)] = { + [sym_identifier] = ACTIONS(9284), + [sym_newline] = ACTIONS(9286), + [anon_sym_COLON] = ACTIONS(9286), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9284), + [aux_sym_frm_property_statement_token1] = ACTIONS(9284), + [anon_sym_DOT] = ACTIONS(9284), + [anon_sym_BANG] = ACTIONS(9286), + [aux_sym__attribute_identifier_token1] = ACTIONS(9284), + [aux_sym_option_statement_token3] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9284), + [aux_sym_preprocessor_const_token1] = ACTIONS(9284), + [sym_static_modifier] = ACTIONS(9284), + [sym__dim_keyword] = ACTIONS(9284), + [sym__redim_keyword] = ACTIONS(9284), + [aux_sym_get_accessor_token1] = ACTIONS(9284), + [aux_sym_set_accessor_token1] = ACTIONS(9284), + [aux_sym_const_declaration_token1] = ACTIONS(9284), + [anon_sym_LPAREN] = ACTIONS(9286), + [aux_sym_as_type_clause_token2] = ACTIONS(9284), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9284), + [aux_sym_visibility_token1] = ACTIONS(9284), + [aux_sym_visibility_token2] = ACTIONS(9284), + [aux_sym_elseif_fragment_token1] = ACTIONS(9284), + [aux_sym_else_fragment_token1] = ACTIONS(9284), + [aux_sym_select_statement_token1] = ACTIONS(9284), + [aux_sym__for_header_token1] = ACTIONS(9284), + [aux_sym_do_statement_token1] = ACTIONS(9284), + [aux_sym_do_statement_token2] = ACTIONS(9284), + [aux_sym_do_condition_token1] = ACTIONS(9284), + [aux_sym_with_statement_token1] = ACTIONS(9284), + [aux_sym_exit_statement_token1] = ACTIONS(9284), + [sym_end_statement] = ACTIONS(9286), + [aux_sym_on_goto_statement_token1] = ACTIONS(9284), + [aux_sym_on_goto_statement_token2] = ACTIONS(9284), + [aux_sym_on_error_statement_token2] = ACTIONS(9284), + [sym__ambiguous_redim_statement] = ACTIONS(9286), + [aux_sym_erase_statement_token1] = ACTIONS(9284), + [aux_sym_open_statement_token1] = ACTIONS(9284), + [aux_sym_file_mode_token2] = ACTIONS(9284), + [aux_sym_file_access_token2] = ACTIONS(9284), + [aux_sym_file_lock_token2] = ACTIONS(9284), + [aux_sym_print_statement_token1] = ACTIONS(9284), + [anon_sym_PLUS] = ACTIONS(9286), + [anon_sym_DASH] = ACTIONS(9284), + [anon_sym_QMARK] = ACTIONS(9286), + [aux_sym_close_statement_token1] = ACTIONS(9284), + [aux_sym_put_statement_token1] = ACTIONS(9284), + [aux_sym_unlock_statement_token1] = ACTIONS(9284), + [aux_sym_seek_statement_token1] = ACTIONS(9284), + [sym_reset_statement] = ACTIONS(9284), + [aux_sym_raise_event_statement_token1] = ACTIONS(9284), + [sym_stop_statement] = ACTIONS(9284), + [sym_beep_statement] = ACTIONS(9284), + [aux_sym_unload_statement_token1] = ACTIONS(9284), + [aux_sym_def_type_statement_token1] = ACTIONS(9284), + [aux_sym_def_type_statement_token2] = ACTIONS(9284), + [aux_sym_def_type_statement_token3] = ACTIONS(9284), + [aux_sym_def_type_statement_token4] = ACTIONS(9284), + [aux_sym_def_type_statement_token5] = ACTIONS(9284), + [aux_sym_def_type_statement_token6] = ACTIONS(9284), + [aux_sym_def_type_statement_token7] = ACTIONS(9284), + [aux_sym_def_type_statement_token8] = ACTIONS(9284), + [aux_sym_def_type_statement_token9] = ACTIONS(9284), + [aux_sym_def_type_statement_token10] = ACTIONS(9284), + [aux_sym_def_type_statement_token11] = ACTIONS(9284), + [aux_sym_def_type_statement_token12] = ACTIONS(9284), + [aux_sym_def_type_statement_token13] = ACTIONS(9284), + [aux_sym_def_type_statement_token14] = ACTIONS(9284), + [aux_sym_call_statement_token1] = ACTIONS(9284), + [sym__ambiguous_call_statement] = ACTIONS(9284), + [aux_sym_addressof_expression_token1] = ACTIONS(9284), + [aux_sym_type_of_expression_token1] = ACTIONS(9284), + [aux_sym_unary_expression_token1] = ACTIONS(9284), + [sym_string_literal] = ACTIONS(9286), + [sym_number_literal] = ACTIONS(9286), + [aux_sym_boolean_literal_token1] = ACTIONS(9284), + [aux_sym_boolean_literal_token2] = ACTIONS(9284), + [sym_nothing_literal] = ACTIONS(9284), + [sym_null_literal] = ACTIONS(9284), + [sym_empty_literal] = ACTIONS(9284), + [sym_date_literal] = ACTIONS(9286), + [anon_sym_POUND] = ACTIONS(9284), + }, + [STATE(6515)] = { + [sym_identifier] = ACTIONS(9364), + [sym_newline] = ACTIONS(9366), + [anon_sym_COLON] = ACTIONS(9366), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9364), + [aux_sym_frm_property_statement_token1] = ACTIONS(9364), + [anon_sym_DOT] = ACTIONS(9364), + [anon_sym_BANG] = ACTIONS(9366), + [aux_sym__attribute_identifier_token1] = ACTIONS(9364), + [aux_sym_option_statement_token3] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9364), + [aux_sym_preprocessor_const_token1] = ACTIONS(9364), + [sym_static_modifier] = ACTIONS(9364), + [sym__dim_keyword] = ACTIONS(9364), + [sym__redim_keyword] = ACTIONS(9364), + [aux_sym_get_accessor_token1] = ACTIONS(9364), + [aux_sym_set_accessor_token1] = ACTIONS(9364), + [aux_sym_const_declaration_token1] = ACTIONS(9364), + [anon_sym_LPAREN] = ACTIONS(9366), + [aux_sym_as_type_clause_token2] = ACTIONS(9364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9364), + [aux_sym_visibility_token1] = ACTIONS(9364), + [aux_sym_visibility_token2] = ACTIONS(9364), + [aux_sym_elseif_fragment_token1] = ACTIONS(9364), + [aux_sym_else_fragment_token1] = ACTIONS(9364), + [aux_sym_select_statement_token1] = ACTIONS(9364), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9364), + [aux_sym__for_header_token1] = ACTIONS(9364), + [aux_sym_do_statement_token1] = ACTIONS(9364), + [aux_sym_do_condition_token1] = ACTIONS(9364), + [aux_sym_with_statement_token1] = ACTIONS(9364), + [aux_sym_exit_statement_token1] = ACTIONS(9364), + [sym_end_statement] = ACTIONS(9366), + [aux_sym_on_goto_statement_token1] = ACTIONS(9364), + [aux_sym_on_goto_statement_token2] = ACTIONS(9364), + [aux_sym_on_error_statement_token2] = ACTIONS(9364), + [sym__ambiguous_redim_statement] = ACTIONS(9366), + [aux_sym_erase_statement_token1] = ACTIONS(9364), + [aux_sym_open_statement_token1] = ACTIONS(9364), + [aux_sym_file_mode_token2] = ACTIONS(9364), + [aux_sym_file_access_token2] = ACTIONS(9364), + [aux_sym_file_lock_token2] = ACTIONS(9364), + [aux_sym_print_statement_token1] = ACTIONS(9364), + [anon_sym_PLUS] = ACTIONS(9366), + [anon_sym_DASH] = ACTIONS(9364), + [anon_sym_QMARK] = ACTIONS(9366), + [aux_sym_close_statement_token1] = ACTIONS(9364), + [aux_sym_put_statement_token1] = ACTIONS(9364), + [aux_sym_unlock_statement_token1] = ACTIONS(9364), + [aux_sym_seek_statement_token1] = ACTIONS(9364), + [sym_reset_statement] = ACTIONS(9364), + [aux_sym_raise_event_statement_token1] = ACTIONS(9364), + [sym_stop_statement] = ACTIONS(9364), + [sym_beep_statement] = ACTIONS(9364), + [aux_sym_unload_statement_token1] = ACTIONS(9364), + [aux_sym_def_type_statement_token1] = ACTIONS(9364), + [aux_sym_def_type_statement_token2] = ACTIONS(9364), + [aux_sym_def_type_statement_token3] = ACTIONS(9364), + [aux_sym_def_type_statement_token4] = ACTIONS(9364), + [aux_sym_def_type_statement_token5] = ACTIONS(9364), + [aux_sym_def_type_statement_token6] = ACTIONS(9364), + [aux_sym_def_type_statement_token7] = ACTIONS(9364), + [aux_sym_def_type_statement_token8] = ACTIONS(9364), + [aux_sym_def_type_statement_token9] = ACTIONS(9364), + [aux_sym_def_type_statement_token10] = ACTIONS(9364), + [aux_sym_def_type_statement_token11] = ACTIONS(9364), + [aux_sym_def_type_statement_token12] = ACTIONS(9364), + [aux_sym_def_type_statement_token13] = ACTIONS(9364), + [aux_sym_def_type_statement_token14] = ACTIONS(9364), + [aux_sym_call_statement_token1] = ACTIONS(9364), + [sym__ambiguous_call_statement] = ACTIONS(9364), + [aux_sym_addressof_expression_token1] = ACTIONS(9364), + [aux_sym_type_of_expression_token1] = ACTIONS(9364), + [aux_sym_unary_expression_token1] = ACTIONS(9364), + [sym_string_literal] = ACTIONS(9366), + [sym_number_literal] = ACTIONS(9366), + [aux_sym_boolean_literal_token1] = ACTIONS(9364), + [aux_sym_boolean_literal_token2] = ACTIONS(9364), + [sym_nothing_literal] = ACTIONS(9364), + [sym_null_literal] = ACTIONS(9364), + [sym_empty_literal] = ACTIONS(9364), + [sym_date_literal] = ACTIONS(9366), + [anon_sym_POUND] = ACTIONS(9364), + }, + [STATE(6516)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6516), + [sym_identifier] = ACTIONS(8702), + [sym_newline] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(11117), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8702), + [aux_sym_frm_property_statement_token1] = ACTIONS(8702), + [anon_sym_DOT] = ACTIONS(8702), + [anon_sym_BANG] = ACTIONS(8704), + [aux_sym__attribute_identifier_token1] = ACTIONS(8702), + [aux_sym_option_statement_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8702), + [aux_sym_preprocessor_const_token1] = ACTIONS(8702), + [sym_static_modifier] = ACTIONS(8702), + [sym__dim_keyword] = ACTIONS(8702), + [sym__redim_keyword] = ACTIONS(8702), + [aux_sym_get_accessor_token1] = ACTIONS(8702), + [aux_sym_set_accessor_token1] = ACTIONS(8702), + [aux_sym_const_declaration_token1] = ACTIONS(8702), + [anon_sym_LPAREN] = ACTIONS(8704), + [aux_sym_as_type_clause_token2] = ACTIONS(8702), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8702), + [aux_sym_visibility_token1] = ACTIONS(8702), + [aux_sym_visibility_token2] = ACTIONS(8702), + [aux_sym_elseif_fragment_token1] = ACTIONS(8702), + [aux_sym_else_fragment_token1] = ACTIONS(8702), + [aux_sym_select_statement_token1] = ACTIONS(8702), + [aux_sym__for_header_token1] = ACTIONS(8702), + [aux_sym_do_statement_token1] = ACTIONS(8702), + [aux_sym_do_condition_token1] = ACTIONS(8702), + [aux_sym_with_statement_token1] = ACTIONS(8702), + [aux_sym_exit_statement_token1] = ACTIONS(8702), + [sym_end_statement] = ACTIONS(8704), + [aux_sym_on_goto_statement_token1] = ACTIONS(8702), + [aux_sym_on_goto_statement_token2] = ACTIONS(8702), + [aux_sym_on_error_statement_token2] = ACTIONS(8702), + [sym__ambiguous_redim_statement] = ACTIONS(8704), + [aux_sym_erase_statement_token1] = ACTIONS(8702), + [aux_sym_open_statement_token1] = ACTIONS(8702), + [aux_sym_file_mode_token2] = ACTIONS(8702), + [aux_sym_file_access_token2] = ACTIONS(8702), + [aux_sym_file_lock_token2] = ACTIONS(8702), + [aux_sym_print_statement_token1] = ACTIONS(8702), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_DASH] = ACTIONS(8702), + [anon_sym_QMARK] = ACTIONS(8704), + [aux_sym_close_statement_token1] = ACTIONS(8702), + [aux_sym_put_statement_token1] = ACTIONS(8702), + [aux_sym_unlock_statement_token1] = ACTIONS(8702), + [aux_sym_seek_statement_token1] = ACTIONS(8702), + [sym_reset_statement] = ACTIONS(8702), + [aux_sym_raise_event_statement_token1] = ACTIONS(8702), + [sym_stop_statement] = ACTIONS(8702), + [sym_beep_statement] = ACTIONS(8702), + [aux_sym_unload_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token2] = ACTIONS(8702), + [aux_sym_def_type_statement_token3] = ACTIONS(8702), + [aux_sym_def_type_statement_token4] = ACTIONS(8702), + [aux_sym_def_type_statement_token5] = ACTIONS(8702), + [aux_sym_def_type_statement_token6] = ACTIONS(8702), + [aux_sym_def_type_statement_token7] = ACTIONS(8702), + [aux_sym_def_type_statement_token8] = ACTIONS(8702), + [aux_sym_def_type_statement_token9] = ACTIONS(8702), + [aux_sym_def_type_statement_token10] = ACTIONS(8702), + [aux_sym_def_type_statement_token11] = ACTIONS(8702), + [aux_sym_def_type_statement_token12] = ACTIONS(8702), + [aux_sym_def_type_statement_token13] = ACTIONS(8702), + [aux_sym_def_type_statement_token14] = ACTIONS(8702), + [aux_sym_call_statement_token1] = ACTIONS(8702), + [sym__ambiguous_call_statement] = ACTIONS(8702), + [aux_sym_addressof_expression_token1] = ACTIONS(8702), + [aux_sym_type_of_expression_token1] = ACTIONS(8702), + [aux_sym_unary_expression_token1] = ACTIONS(8702), + [sym_string_literal] = ACTIONS(8704), + [sym_number_literal] = ACTIONS(8704), + [aux_sym_boolean_literal_token1] = ACTIONS(8702), + [aux_sym_boolean_literal_token2] = ACTIONS(8702), + [sym_nothing_literal] = ACTIONS(8702), + [sym_null_literal] = ACTIONS(8702), + [sym_empty_literal] = ACTIONS(8702), + [sym_date_literal] = ACTIONS(8704), + [anon_sym_POUND] = ACTIONS(8702), + }, + [STATE(6517)] = { + [sym_identifier] = ACTIONS(9122), + [sym_newline] = ACTIONS(9124), + [anon_sym_COLON] = ACTIONS(9124), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9122), + [aux_sym_frm_property_statement_token1] = ACTIONS(9122), + [anon_sym_DOT] = ACTIONS(9122), + [anon_sym_BANG] = ACTIONS(9124), + [aux_sym__attribute_identifier_token1] = ACTIONS(9122), + [aux_sym_option_statement_token3] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9122), + [aux_sym_preprocessor_const_token1] = ACTIONS(9122), + [sym_static_modifier] = ACTIONS(9122), + [sym__dim_keyword] = ACTIONS(9122), + [sym__redim_keyword] = ACTIONS(9122), + [aux_sym_get_accessor_token1] = ACTIONS(9122), + [aux_sym_set_accessor_token1] = ACTIONS(9122), + [aux_sym_const_declaration_token1] = ACTIONS(9122), + [anon_sym_LPAREN] = ACTIONS(9124), + [aux_sym_as_type_clause_token2] = ACTIONS(9122), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9122), + [aux_sym_visibility_token1] = ACTIONS(9122), + [aux_sym_visibility_token2] = ACTIONS(9122), + [aux_sym_elseif_fragment_token1] = ACTIONS(9122), + [aux_sym_else_fragment_token1] = ACTIONS(9122), + [aux_sym_select_statement_token1] = ACTIONS(9122), + [aux_sym__for_header_token1] = ACTIONS(9122), + [aux_sym_do_statement_token1] = ACTIONS(9122), + [aux_sym_do_condition_token1] = ACTIONS(9122), + [aux_sym_while_statement_token1] = ACTIONS(9122), + [aux_sym_with_statement_token1] = ACTIONS(9122), + [aux_sym_exit_statement_token1] = ACTIONS(9122), + [sym_end_statement] = ACTIONS(9124), + [aux_sym_on_goto_statement_token1] = ACTIONS(9122), + [aux_sym_on_goto_statement_token2] = ACTIONS(9122), + [aux_sym_on_error_statement_token2] = ACTIONS(9122), + [sym__ambiguous_redim_statement] = ACTIONS(9124), + [aux_sym_erase_statement_token1] = ACTIONS(9122), + [aux_sym_open_statement_token1] = ACTIONS(9122), + [aux_sym_file_mode_token2] = ACTIONS(9122), + [aux_sym_file_access_token2] = ACTIONS(9122), + [aux_sym_file_lock_token2] = ACTIONS(9122), + [aux_sym_print_statement_token1] = ACTIONS(9122), + [anon_sym_PLUS] = ACTIONS(9124), + [anon_sym_DASH] = ACTIONS(9122), + [anon_sym_QMARK] = ACTIONS(9124), + [aux_sym_close_statement_token1] = ACTIONS(9122), + [aux_sym_put_statement_token1] = ACTIONS(9122), + [aux_sym_unlock_statement_token1] = ACTIONS(9122), + [aux_sym_seek_statement_token1] = ACTIONS(9122), + [sym_reset_statement] = ACTIONS(9122), + [aux_sym_raise_event_statement_token1] = ACTIONS(9122), + [sym_stop_statement] = ACTIONS(9122), + [sym_beep_statement] = ACTIONS(9122), + [aux_sym_unload_statement_token1] = ACTIONS(9122), + [aux_sym_def_type_statement_token1] = ACTIONS(9122), + [aux_sym_def_type_statement_token2] = ACTIONS(9122), + [aux_sym_def_type_statement_token3] = ACTIONS(9122), + [aux_sym_def_type_statement_token4] = ACTIONS(9122), + [aux_sym_def_type_statement_token5] = ACTIONS(9122), + [aux_sym_def_type_statement_token6] = ACTIONS(9122), + [aux_sym_def_type_statement_token7] = ACTIONS(9122), + [aux_sym_def_type_statement_token8] = ACTIONS(9122), + [aux_sym_def_type_statement_token9] = ACTIONS(9122), + [aux_sym_def_type_statement_token10] = ACTIONS(9122), + [aux_sym_def_type_statement_token11] = ACTIONS(9122), + [aux_sym_def_type_statement_token12] = ACTIONS(9122), + [aux_sym_def_type_statement_token13] = ACTIONS(9122), + [aux_sym_def_type_statement_token14] = ACTIONS(9122), + [aux_sym_call_statement_token1] = ACTIONS(9122), + [sym__ambiguous_call_statement] = ACTIONS(9122), + [aux_sym_addressof_expression_token1] = ACTIONS(9122), + [aux_sym_type_of_expression_token1] = ACTIONS(9122), + [aux_sym_unary_expression_token1] = ACTIONS(9122), + [sym_string_literal] = ACTIONS(9124), + [sym_number_literal] = ACTIONS(9124), + [aux_sym_boolean_literal_token1] = ACTIONS(9122), + [aux_sym_boolean_literal_token2] = ACTIONS(9122), + [sym_nothing_literal] = ACTIONS(9122), + [sym_null_literal] = ACTIONS(9122), + [sym_empty_literal] = ACTIONS(9122), + [sym_date_literal] = ACTIONS(9124), + [anon_sym_POUND] = ACTIONS(9122), + }, + [STATE(6518)] = { + [sym_identifier] = ACTIONS(9126), + [sym_newline] = ACTIONS(9128), + [anon_sym_COLON] = ACTIONS(9128), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9126), + [aux_sym_frm_property_statement_token1] = ACTIONS(9126), + [anon_sym_DOT] = ACTIONS(9126), + [anon_sym_BANG] = ACTIONS(9128), + [aux_sym__attribute_identifier_token1] = ACTIONS(9126), + [aux_sym_option_statement_token3] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9126), + [aux_sym_preprocessor_const_token1] = ACTIONS(9126), + [sym_static_modifier] = ACTIONS(9126), + [sym__dim_keyword] = ACTIONS(9126), + [sym__redim_keyword] = ACTIONS(9126), + [aux_sym_get_accessor_token1] = ACTIONS(9126), + [aux_sym_set_accessor_token1] = ACTIONS(9126), + [aux_sym_const_declaration_token1] = ACTIONS(9126), + [anon_sym_LPAREN] = ACTIONS(9128), + [aux_sym_as_type_clause_token2] = ACTIONS(9126), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9126), + [aux_sym_visibility_token1] = ACTIONS(9126), + [aux_sym_visibility_token2] = ACTIONS(9126), + [aux_sym_elseif_fragment_token1] = ACTIONS(9126), + [aux_sym_else_fragment_token1] = ACTIONS(9126), + [aux_sym_select_statement_token1] = ACTIONS(9126), + [aux_sym__for_header_token1] = ACTIONS(9126), + [aux_sym_do_statement_token1] = ACTIONS(9126), + [aux_sym_do_condition_token1] = ACTIONS(9126), + [aux_sym_while_statement_token1] = ACTIONS(9126), + [aux_sym_with_statement_token1] = ACTIONS(9126), + [aux_sym_exit_statement_token1] = ACTIONS(9126), + [sym_end_statement] = ACTIONS(9128), + [aux_sym_on_goto_statement_token1] = ACTIONS(9126), + [aux_sym_on_goto_statement_token2] = ACTIONS(9126), + [aux_sym_on_error_statement_token2] = ACTIONS(9126), + [sym__ambiguous_redim_statement] = ACTIONS(9128), + [aux_sym_erase_statement_token1] = ACTIONS(9126), + [aux_sym_open_statement_token1] = ACTIONS(9126), + [aux_sym_file_mode_token2] = ACTIONS(9126), + [aux_sym_file_access_token2] = ACTIONS(9126), + [aux_sym_file_lock_token2] = ACTIONS(9126), + [aux_sym_print_statement_token1] = ACTIONS(9126), + [anon_sym_PLUS] = ACTIONS(9128), + [anon_sym_DASH] = ACTIONS(9126), + [anon_sym_QMARK] = ACTIONS(9128), + [aux_sym_close_statement_token1] = ACTIONS(9126), + [aux_sym_put_statement_token1] = ACTIONS(9126), + [aux_sym_unlock_statement_token1] = ACTIONS(9126), + [aux_sym_seek_statement_token1] = ACTIONS(9126), + [sym_reset_statement] = ACTIONS(9126), + [aux_sym_raise_event_statement_token1] = ACTIONS(9126), + [sym_stop_statement] = ACTIONS(9126), + [sym_beep_statement] = ACTIONS(9126), + [aux_sym_unload_statement_token1] = ACTIONS(9126), + [aux_sym_def_type_statement_token1] = ACTIONS(9126), + [aux_sym_def_type_statement_token2] = ACTIONS(9126), + [aux_sym_def_type_statement_token3] = ACTIONS(9126), + [aux_sym_def_type_statement_token4] = ACTIONS(9126), + [aux_sym_def_type_statement_token5] = ACTIONS(9126), + [aux_sym_def_type_statement_token6] = ACTIONS(9126), + [aux_sym_def_type_statement_token7] = ACTIONS(9126), + [aux_sym_def_type_statement_token8] = ACTIONS(9126), + [aux_sym_def_type_statement_token9] = ACTIONS(9126), + [aux_sym_def_type_statement_token10] = ACTIONS(9126), + [aux_sym_def_type_statement_token11] = ACTIONS(9126), + [aux_sym_def_type_statement_token12] = ACTIONS(9126), + [aux_sym_def_type_statement_token13] = ACTIONS(9126), + [aux_sym_def_type_statement_token14] = ACTIONS(9126), + [aux_sym_call_statement_token1] = ACTIONS(9126), + [sym__ambiguous_call_statement] = ACTIONS(9126), + [aux_sym_addressof_expression_token1] = ACTIONS(9126), + [aux_sym_type_of_expression_token1] = ACTIONS(9126), + [aux_sym_unary_expression_token1] = ACTIONS(9126), + [sym_string_literal] = ACTIONS(9128), + [sym_number_literal] = ACTIONS(9128), + [aux_sym_boolean_literal_token1] = ACTIONS(9126), + [aux_sym_boolean_literal_token2] = ACTIONS(9126), + [sym_nothing_literal] = ACTIONS(9126), + [sym_null_literal] = ACTIONS(9126), + [sym_empty_literal] = ACTIONS(9126), + [sym_date_literal] = ACTIONS(9128), + [anon_sym_POUND] = ACTIONS(9126), + }, + [STATE(6519)] = { + [sym_identifier] = ACTIONS(8279), + [sym_newline] = ACTIONS(8281), + [anon_sym_COLON] = ACTIONS(8281), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8279), + [aux_sym_frm_property_statement_token1] = ACTIONS(8279), + [anon_sym_DOT] = ACTIONS(8279), + [anon_sym_BANG] = ACTIONS(8281), + [aux_sym__attribute_identifier_token1] = ACTIONS(8279), + [aux_sym_option_statement_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8279), + [aux_sym_preprocessor_const_token1] = ACTIONS(8279), + [sym_static_modifier] = ACTIONS(8279), + [sym__dim_keyword] = ACTIONS(8279), + [sym__redim_keyword] = ACTIONS(8279), + [aux_sym_get_accessor_token1] = ACTIONS(8279), + [aux_sym_set_accessor_token1] = ACTIONS(8279), + [aux_sym_const_declaration_token1] = ACTIONS(8279), + [anon_sym_LPAREN] = ACTIONS(8281), + [aux_sym_as_type_clause_token2] = ACTIONS(8279), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8279), + [aux_sym_visibility_token1] = ACTIONS(8279), + [aux_sym_visibility_token2] = ACTIONS(8279), + [aux_sym_elseif_fragment_token1] = ACTIONS(8279), + [aux_sym_else_fragment_token1] = ACTIONS(8279), + [aux_sym_select_statement_token1] = ACTIONS(8279), + [aux_sym_select_statement_token2] = ACTIONS(8279), + [aux_sym__for_header_token1] = ACTIONS(8279), + [aux_sym_do_statement_token1] = ACTIONS(8279), + [aux_sym_do_condition_token1] = ACTIONS(8279), + [aux_sym_with_statement_token1] = ACTIONS(8279), + [aux_sym_exit_statement_token1] = ACTIONS(8279), + [sym_end_statement] = ACTIONS(8281), + [aux_sym_on_goto_statement_token1] = ACTIONS(8279), + [aux_sym_on_goto_statement_token2] = ACTIONS(8279), + [aux_sym_on_error_statement_token2] = ACTIONS(8279), + [sym__ambiguous_redim_statement] = ACTIONS(8281), + [aux_sym_erase_statement_token1] = ACTIONS(8279), + [aux_sym_open_statement_token1] = ACTIONS(8279), + [aux_sym_file_mode_token2] = ACTIONS(8279), + [aux_sym_file_access_token2] = ACTIONS(8279), + [aux_sym_file_lock_token2] = ACTIONS(8279), + [aux_sym_print_statement_token1] = ACTIONS(8279), + [anon_sym_PLUS] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8279), + [anon_sym_QMARK] = ACTIONS(8281), + [aux_sym_close_statement_token1] = ACTIONS(8279), + [aux_sym_put_statement_token1] = ACTIONS(8279), + [aux_sym_unlock_statement_token1] = ACTIONS(8279), + [aux_sym_seek_statement_token1] = ACTIONS(8279), + [sym_reset_statement] = ACTIONS(8279), + [aux_sym_raise_event_statement_token1] = ACTIONS(8279), + [sym_stop_statement] = ACTIONS(8279), + [sym_beep_statement] = ACTIONS(8279), + [aux_sym_unload_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token2] = ACTIONS(8279), + [aux_sym_def_type_statement_token3] = ACTIONS(8279), + [aux_sym_def_type_statement_token4] = ACTIONS(8279), + [aux_sym_def_type_statement_token5] = ACTIONS(8279), + [aux_sym_def_type_statement_token6] = ACTIONS(8279), + [aux_sym_def_type_statement_token7] = ACTIONS(8279), + [aux_sym_def_type_statement_token8] = ACTIONS(8279), + [aux_sym_def_type_statement_token9] = ACTIONS(8279), + [aux_sym_def_type_statement_token10] = ACTIONS(8279), + [aux_sym_def_type_statement_token11] = ACTIONS(8279), + [aux_sym_def_type_statement_token12] = ACTIONS(8279), + [aux_sym_def_type_statement_token13] = ACTIONS(8279), + [aux_sym_def_type_statement_token14] = ACTIONS(8279), + [aux_sym_call_statement_token1] = ACTIONS(8279), + [sym__ambiguous_call_statement] = ACTIONS(8279), + [aux_sym_addressof_expression_token1] = ACTIONS(8279), + [aux_sym_type_of_expression_token1] = ACTIONS(8279), + [aux_sym_unary_expression_token1] = ACTIONS(8279), + [sym_string_literal] = ACTIONS(8281), + [sym_number_literal] = ACTIONS(8281), + [aux_sym_boolean_literal_token1] = ACTIONS(8279), + [aux_sym_boolean_literal_token2] = ACTIONS(8279), + [sym_nothing_literal] = ACTIONS(8279), + [sym_null_literal] = ACTIONS(8279), + [sym_empty_literal] = ACTIONS(8279), + [sym_date_literal] = ACTIONS(8281), + [anon_sym_POUND] = ACTIONS(8279), + }, + [STATE(6520)] = { + [sym_identifier] = ACTIONS(9740), + [sym_newline] = ACTIONS(9742), + [anon_sym_COLON] = ACTIONS(9742), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9740), + [aux_sym_frm_property_statement_token1] = ACTIONS(9740), + [anon_sym_DOT] = ACTIONS(9740), + [anon_sym_BANG] = ACTIONS(9742), + [aux_sym__attribute_identifier_token1] = ACTIONS(9740), + [aux_sym_option_statement_token3] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9740), + [aux_sym_preprocessor_const_token1] = ACTIONS(9740), + [sym_static_modifier] = ACTIONS(9740), + [sym__dim_keyword] = ACTIONS(9740), + [sym__redim_keyword] = ACTIONS(9740), + [aux_sym_get_accessor_token1] = ACTIONS(9740), + [aux_sym_set_accessor_token1] = ACTIONS(9740), + [aux_sym_const_declaration_token1] = ACTIONS(9740), + [anon_sym_LPAREN] = ACTIONS(9742), + [aux_sym_as_type_clause_token2] = ACTIONS(9740), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9740), + [aux_sym_visibility_token1] = ACTIONS(9740), + [aux_sym_visibility_token2] = ACTIONS(9740), + [aux_sym_elseif_fragment_token1] = ACTIONS(9740), + [aux_sym_else_fragment_token1] = ACTIONS(9740), + [aux_sym_select_statement_token1] = ACTIONS(9740), + [aux_sym__for_header_token1] = ACTIONS(9740), + [aux_sym_do_statement_token1] = ACTIONS(9740), + [aux_sym_do_statement_token2] = ACTIONS(9740), + [aux_sym_do_condition_token1] = ACTIONS(9740), + [aux_sym_with_statement_token1] = ACTIONS(9740), + [aux_sym_exit_statement_token1] = ACTIONS(9740), + [sym_end_statement] = ACTIONS(9742), + [aux_sym_on_goto_statement_token1] = ACTIONS(9740), + [aux_sym_on_goto_statement_token2] = ACTIONS(9740), + [aux_sym_on_error_statement_token2] = ACTIONS(9740), + [sym__ambiguous_redim_statement] = ACTIONS(9742), + [aux_sym_erase_statement_token1] = ACTIONS(9740), + [aux_sym_open_statement_token1] = ACTIONS(9740), + [aux_sym_file_mode_token2] = ACTIONS(9740), + [aux_sym_file_access_token2] = ACTIONS(9740), + [aux_sym_file_lock_token2] = ACTIONS(9740), + [aux_sym_print_statement_token1] = ACTIONS(9740), + [anon_sym_PLUS] = ACTIONS(9742), + [anon_sym_DASH] = ACTIONS(9740), + [anon_sym_QMARK] = ACTIONS(9742), + [aux_sym_close_statement_token1] = ACTIONS(9740), + [aux_sym_put_statement_token1] = ACTIONS(9740), + [aux_sym_unlock_statement_token1] = ACTIONS(9740), + [aux_sym_seek_statement_token1] = ACTIONS(9740), + [sym_reset_statement] = ACTIONS(9740), + [aux_sym_raise_event_statement_token1] = ACTIONS(9740), + [sym_stop_statement] = ACTIONS(9740), + [sym_beep_statement] = ACTIONS(9740), + [aux_sym_unload_statement_token1] = ACTIONS(9740), + [aux_sym_def_type_statement_token1] = ACTIONS(9740), + [aux_sym_def_type_statement_token2] = ACTIONS(9740), + [aux_sym_def_type_statement_token3] = ACTIONS(9740), + [aux_sym_def_type_statement_token4] = ACTIONS(9740), + [aux_sym_def_type_statement_token5] = ACTIONS(9740), + [aux_sym_def_type_statement_token6] = ACTIONS(9740), + [aux_sym_def_type_statement_token7] = ACTIONS(9740), + [aux_sym_def_type_statement_token8] = ACTIONS(9740), + [aux_sym_def_type_statement_token9] = ACTIONS(9740), + [aux_sym_def_type_statement_token10] = ACTIONS(9740), + [aux_sym_def_type_statement_token11] = ACTIONS(9740), + [aux_sym_def_type_statement_token12] = ACTIONS(9740), + [aux_sym_def_type_statement_token13] = ACTIONS(9740), + [aux_sym_def_type_statement_token14] = ACTIONS(9740), + [aux_sym_call_statement_token1] = ACTIONS(9740), + [sym__ambiguous_call_statement] = ACTIONS(9740), + [aux_sym_addressof_expression_token1] = ACTIONS(9740), + [aux_sym_type_of_expression_token1] = ACTIONS(9740), + [aux_sym_unary_expression_token1] = ACTIONS(9740), + [sym_string_literal] = ACTIONS(9742), + [sym_number_literal] = ACTIONS(9742), + [aux_sym_boolean_literal_token1] = ACTIONS(9740), + [aux_sym_boolean_literal_token2] = ACTIONS(9740), + [sym_nothing_literal] = ACTIONS(9740), + [sym_null_literal] = ACTIONS(9740), + [sym_empty_literal] = ACTIONS(9740), + [sym_date_literal] = ACTIONS(9742), + [anon_sym_POUND] = ACTIONS(9740), + }, + [STATE(6521)] = { + [sym_identifier] = ACTIONS(8702), + [sym_newline] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(8704), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8702), + [aux_sym_frm_property_statement_token1] = ACTIONS(8702), + [anon_sym_DOT] = ACTIONS(8702), + [anon_sym_BANG] = ACTIONS(8704), + [aux_sym__attribute_identifier_token1] = ACTIONS(8702), + [aux_sym_option_statement_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8702), + [aux_sym_preprocessor_const_token1] = ACTIONS(8702), + [sym_static_modifier] = ACTIONS(8702), + [sym__dim_keyword] = ACTIONS(8702), + [sym__redim_keyword] = ACTIONS(8702), + [aux_sym_get_accessor_token1] = ACTIONS(8702), + [aux_sym_set_accessor_token1] = ACTIONS(8702), + [aux_sym_const_declaration_token1] = ACTIONS(8702), + [anon_sym_LPAREN] = ACTIONS(8704), + [aux_sym_as_type_clause_token2] = ACTIONS(8702), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8702), + [aux_sym_visibility_token1] = ACTIONS(8702), + [aux_sym_visibility_token2] = ACTIONS(8702), + [aux_sym_elseif_fragment_token1] = ACTIONS(8702), + [aux_sym_else_fragment_token1] = ACTIONS(8702), + [aux_sym_select_statement_token1] = ACTIONS(8702), + [aux_sym__for_header_token1] = ACTIONS(8702), + [aux_sym_do_statement_token1] = ACTIONS(8702), + [aux_sym_do_condition_token1] = ACTIONS(8702), + [aux_sym_with_statement_token1] = ACTIONS(8702), + [aux_sym_exit_statement_token1] = ACTIONS(8702), + [sym_end_statement] = ACTIONS(8704), + [aux_sym_on_goto_statement_token1] = ACTIONS(8702), + [aux_sym_on_goto_statement_token2] = ACTIONS(8702), + [aux_sym_on_error_statement_token2] = ACTIONS(8702), + [sym__ambiguous_redim_statement] = ACTIONS(8704), + [aux_sym_erase_statement_token1] = ACTIONS(8702), + [aux_sym_open_statement_token1] = ACTIONS(8702), + [aux_sym_file_mode_token2] = ACTIONS(8702), + [aux_sym_file_access_token2] = ACTIONS(8702), + [aux_sym_file_lock_token2] = ACTIONS(8702), + [aux_sym_print_statement_token1] = ACTIONS(8702), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_DASH] = ACTIONS(8702), + [anon_sym_QMARK] = ACTIONS(8704), + [aux_sym_close_statement_token1] = ACTIONS(8702), + [aux_sym_put_statement_token1] = ACTIONS(8702), + [aux_sym_unlock_statement_token1] = ACTIONS(8702), + [aux_sym_seek_statement_token1] = ACTIONS(8702), + [sym_reset_statement] = ACTIONS(8702), + [aux_sym_raise_event_statement_token1] = ACTIONS(8702), + [sym_stop_statement] = ACTIONS(8702), + [sym_beep_statement] = ACTIONS(8702), + [aux_sym_unload_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token2] = ACTIONS(8702), + [aux_sym_def_type_statement_token3] = ACTIONS(8702), + [aux_sym_def_type_statement_token4] = ACTIONS(8702), + [aux_sym_def_type_statement_token5] = ACTIONS(8702), + [aux_sym_def_type_statement_token6] = ACTIONS(8702), + [aux_sym_def_type_statement_token7] = ACTIONS(8702), + [aux_sym_def_type_statement_token8] = ACTIONS(8702), + [aux_sym_def_type_statement_token9] = ACTIONS(8702), + [aux_sym_def_type_statement_token10] = ACTIONS(8702), + [aux_sym_def_type_statement_token11] = ACTIONS(8702), + [aux_sym_def_type_statement_token12] = ACTIONS(8702), + [aux_sym_def_type_statement_token13] = ACTIONS(8702), + [aux_sym_def_type_statement_token14] = ACTIONS(8702), + [aux_sym_call_statement_token1] = ACTIONS(8702), + [sym__ambiguous_call_statement] = ACTIONS(8702), + [aux_sym_addressof_expression_token1] = ACTIONS(8702), + [aux_sym_type_of_expression_token1] = ACTIONS(8702), + [aux_sym_unary_expression_token1] = ACTIONS(8702), + [sym_string_literal] = ACTIONS(8704), + [sym_number_literal] = ACTIONS(8704), + [aux_sym_boolean_literal_token1] = ACTIONS(8702), + [aux_sym_boolean_literal_token2] = ACTIONS(8702), + [sym_nothing_literal] = ACTIONS(8702), + [sym_null_literal] = ACTIONS(8702), + [sym_empty_literal] = ACTIONS(8702), + [sym_date_literal] = ACTIONS(8704), + [anon_sym_POUND] = ACTIONS(8702), + }, + [STATE(6522)] = { + [sym_identifier] = ACTIONS(8980), + [sym_newline] = ACTIONS(8982), + [anon_sym_COLON] = ACTIONS(8982), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8980), + [aux_sym_frm_property_statement_token1] = ACTIONS(8980), + [anon_sym_DOT] = ACTIONS(8980), + [anon_sym_BANG] = ACTIONS(8982), + [aux_sym__attribute_identifier_token1] = ACTIONS(8980), + [aux_sym_option_statement_token3] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8980), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8980), + [aux_sym_preprocessor_const_token1] = ACTIONS(8980), + [sym_static_modifier] = ACTIONS(8980), + [sym__dim_keyword] = ACTIONS(8980), + [sym__redim_keyword] = ACTIONS(8980), + [aux_sym_get_accessor_token1] = ACTIONS(8980), + [aux_sym_set_accessor_token1] = ACTIONS(8980), + [aux_sym_const_declaration_token1] = ACTIONS(8980), + [anon_sym_LPAREN] = ACTIONS(8982), + [aux_sym_as_type_clause_token2] = ACTIONS(8980), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8980), + [aux_sym_visibility_token1] = ACTIONS(8980), + [aux_sym_visibility_token2] = ACTIONS(8980), + [aux_sym_elseif_fragment_token1] = ACTIONS(8980), + [aux_sym_else_fragment_token1] = ACTIONS(8980), + [aux_sym_select_statement_token1] = ACTIONS(8980), + [aux_sym__for_header_token1] = ACTIONS(8980), + [aux_sym_do_statement_token1] = ACTIONS(8980), + [aux_sym_do_condition_token1] = ACTIONS(8980), + [aux_sym_with_statement_token1] = ACTIONS(8980), + [aux_sym_exit_statement_token1] = ACTIONS(8980), + [sym_end_statement] = ACTIONS(8982), + [aux_sym_on_goto_statement_token1] = ACTIONS(8980), + [aux_sym_on_goto_statement_token2] = ACTIONS(8980), + [aux_sym_on_error_statement_token2] = ACTIONS(8980), + [sym__ambiguous_redim_statement] = ACTIONS(8982), + [aux_sym_erase_statement_token1] = ACTIONS(8980), + [aux_sym_open_statement_token1] = ACTIONS(8980), + [aux_sym_open_statement_token3] = ACTIONS(11120), + [aux_sym_file_mode_token2] = ACTIONS(8980), + [aux_sym_file_access_token2] = ACTIONS(8980), + [aux_sym_file_lock_token2] = ACTIONS(8980), + [aux_sym_print_statement_token1] = ACTIONS(8980), + [anon_sym_PLUS] = ACTIONS(8982), + [anon_sym_DASH] = ACTIONS(8980), + [anon_sym_QMARK] = ACTIONS(8982), + [aux_sym_close_statement_token1] = ACTIONS(8980), + [aux_sym_put_statement_token1] = ACTIONS(8980), + [aux_sym_unlock_statement_token1] = ACTIONS(8980), + [aux_sym_seek_statement_token1] = ACTIONS(8980), + [sym_reset_statement] = ACTIONS(8980), + [aux_sym_raise_event_statement_token1] = ACTIONS(8980), + [sym_stop_statement] = ACTIONS(8980), + [sym_beep_statement] = ACTIONS(8980), + [aux_sym_unload_statement_token1] = ACTIONS(8980), + [aux_sym_def_type_statement_token1] = ACTIONS(8980), + [aux_sym_def_type_statement_token2] = ACTIONS(8980), + [aux_sym_def_type_statement_token3] = ACTIONS(8980), + [aux_sym_def_type_statement_token4] = ACTIONS(8980), + [aux_sym_def_type_statement_token5] = ACTIONS(8980), + [aux_sym_def_type_statement_token6] = ACTIONS(8980), + [aux_sym_def_type_statement_token7] = ACTIONS(8980), + [aux_sym_def_type_statement_token8] = ACTIONS(8980), + [aux_sym_def_type_statement_token9] = ACTIONS(8980), + [aux_sym_def_type_statement_token10] = ACTIONS(8980), + [aux_sym_def_type_statement_token11] = ACTIONS(8980), + [aux_sym_def_type_statement_token12] = ACTIONS(8980), + [aux_sym_def_type_statement_token13] = ACTIONS(8980), + [aux_sym_def_type_statement_token14] = ACTIONS(8980), + [aux_sym_call_statement_token1] = ACTIONS(8980), + [sym__ambiguous_call_statement] = ACTIONS(8980), + [aux_sym_addressof_expression_token1] = ACTIONS(8980), + [aux_sym_type_of_expression_token1] = ACTIONS(8980), + [aux_sym_unary_expression_token1] = ACTIONS(8980), + [sym_string_literal] = ACTIONS(8982), + [sym_number_literal] = ACTIONS(8982), + [aux_sym_boolean_literal_token1] = ACTIONS(8980), + [aux_sym_boolean_literal_token2] = ACTIONS(8980), + [sym_nothing_literal] = ACTIONS(8980), + [sym_null_literal] = ACTIONS(8980), + [sym_empty_literal] = ACTIONS(8980), + [sym_date_literal] = ACTIONS(8982), + [anon_sym_POUND] = ACTIONS(8980), + }, + [STATE(6523)] = { + [sym_identifier] = ACTIONS(9744), + [sym_newline] = ACTIONS(9746), + [anon_sym_COLON] = ACTIONS(9746), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9744), + [aux_sym_frm_property_statement_token1] = ACTIONS(9744), + [anon_sym_DOT] = ACTIONS(9744), + [anon_sym_BANG] = ACTIONS(9746), + [aux_sym__attribute_identifier_token1] = ACTIONS(9744), + [aux_sym_option_statement_token3] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9744), + [aux_sym_preprocessor_const_token1] = ACTIONS(9744), + [sym_static_modifier] = ACTIONS(9744), + [sym__dim_keyword] = ACTIONS(9744), + [sym__redim_keyword] = ACTIONS(9744), + [aux_sym_get_accessor_token1] = ACTIONS(9744), + [aux_sym_set_accessor_token1] = ACTIONS(9744), + [aux_sym_const_declaration_token1] = ACTIONS(9744), + [anon_sym_LPAREN] = ACTIONS(9746), + [aux_sym_as_type_clause_token2] = ACTIONS(9744), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9744), + [aux_sym_visibility_token1] = ACTIONS(9744), + [aux_sym_visibility_token2] = ACTIONS(9744), + [aux_sym_elseif_fragment_token1] = ACTIONS(9744), + [aux_sym_else_fragment_token1] = ACTIONS(9744), + [aux_sym_select_statement_token1] = ACTIONS(9744), + [aux_sym__for_header_token1] = ACTIONS(9744), + [aux_sym_do_statement_token1] = ACTIONS(9744), + [aux_sym_do_statement_token2] = ACTIONS(9744), + [aux_sym_do_condition_token1] = ACTIONS(9744), + [aux_sym_with_statement_token1] = ACTIONS(9744), + [aux_sym_exit_statement_token1] = ACTIONS(9744), + [sym_end_statement] = ACTIONS(9746), + [aux_sym_on_goto_statement_token1] = ACTIONS(9744), + [aux_sym_on_goto_statement_token2] = ACTIONS(9744), + [aux_sym_on_error_statement_token2] = ACTIONS(9744), + [sym__ambiguous_redim_statement] = ACTIONS(9746), + [aux_sym_erase_statement_token1] = ACTIONS(9744), + [aux_sym_open_statement_token1] = ACTIONS(9744), + [aux_sym_file_mode_token2] = ACTIONS(9744), + [aux_sym_file_access_token2] = ACTIONS(9744), + [aux_sym_file_lock_token2] = ACTIONS(9744), + [aux_sym_print_statement_token1] = ACTIONS(9744), + [anon_sym_PLUS] = ACTIONS(9746), + [anon_sym_DASH] = ACTIONS(9744), + [anon_sym_QMARK] = ACTIONS(9746), + [aux_sym_close_statement_token1] = ACTIONS(9744), + [aux_sym_put_statement_token1] = ACTIONS(9744), + [aux_sym_unlock_statement_token1] = ACTIONS(9744), + [aux_sym_seek_statement_token1] = ACTIONS(9744), + [sym_reset_statement] = ACTIONS(9744), + [aux_sym_raise_event_statement_token1] = ACTIONS(9744), + [sym_stop_statement] = ACTIONS(9744), + [sym_beep_statement] = ACTIONS(9744), + [aux_sym_unload_statement_token1] = ACTIONS(9744), + [aux_sym_def_type_statement_token1] = ACTIONS(9744), + [aux_sym_def_type_statement_token2] = ACTIONS(9744), + [aux_sym_def_type_statement_token3] = ACTIONS(9744), + [aux_sym_def_type_statement_token4] = ACTIONS(9744), + [aux_sym_def_type_statement_token5] = ACTIONS(9744), + [aux_sym_def_type_statement_token6] = ACTIONS(9744), + [aux_sym_def_type_statement_token7] = ACTIONS(9744), + [aux_sym_def_type_statement_token8] = ACTIONS(9744), + [aux_sym_def_type_statement_token9] = ACTIONS(9744), + [aux_sym_def_type_statement_token10] = ACTIONS(9744), + [aux_sym_def_type_statement_token11] = ACTIONS(9744), + [aux_sym_def_type_statement_token12] = ACTIONS(9744), + [aux_sym_def_type_statement_token13] = ACTIONS(9744), + [aux_sym_def_type_statement_token14] = ACTIONS(9744), + [aux_sym_call_statement_token1] = ACTIONS(9744), + [sym__ambiguous_call_statement] = ACTIONS(9744), + [aux_sym_addressof_expression_token1] = ACTIONS(9744), + [aux_sym_type_of_expression_token1] = ACTIONS(9744), + [aux_sym_unary_expression_token1] = ACTIONS(9744), + [sym_string_literal] = ACTIONS(9746), + [sym_number_literal] = ACTIONS(9746), + [aux_sym_boolean_literal_token1] = ACTIONS(9744), + [aux_sym_boolean_literal_token2] = ACTIONS(9744), + [sym_nothing_literal] = ACTIONS(9744), + [sym_null_literal] = ACTIONS(9744), + [sym_empty_literal] = ACTIONS(9744), + [sym_date_literal] = ACTIONS(9746), + [anon_sym_POUND] = ACTIONS(9744), + }, + [STATE(6524)] = { + [sym_identifier] = ACTIONS(9748), + [sym_newline] = ACTIONS(9750), + [anon_sym_COLON] = ACTIONS(9750), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9748), + [aux_sym_frm_property_statement_token1] = ACTIONS(9748), + [anon_sym_DOT] = ACTIONS(9748), + [anon_sym_BANG] = ACTIONS(9750), + [aux_sym__attribute_identifier_token1] = ACTIONS(9748), + [aux_sym_option_statement_token3] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9748), + [aux_sym_preprocessor_const_token1] = ACTIONS(9748), + [sym_static_modifier] = ACTIONS(9748), + [sym__dim_keyword] = ACTIONS(9748), + [sym__redim_keyword] = ACTIONS(9748), + [aux_sym_get_accessor_token1] = ACTIONS(9748), + [aux_sym_set_accessor_token1] = ACTIONS(9748), + [aux_sym_const_declaration_token1] = ACTIONS(9748), + [anon_sym_LPAREN] = ACTIONS(9750), + [aux_sym_as_type_clause_token2] = ACTIONS(9748), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9748), + [aux_sym_visibility_token1] = ACTIONS(9748), + [aux_sym_visibility_token2] = ACTIONS(9748), + [aux_sym_elseif_fragment_token1] = ACTIONS(9748), + [aux_sym_else_fragment_token1] = ACTIONS(9748), + [aux_sym_select_statement_token1] = ACTIONS(9748), + [aux_sym__for_header_token1] = ACTIONS(9748), + [aux_sym_do_statement_token1] = ACTIONS(9748), + [aux_sym_do_statement_token2] = ACTIONS(9748), + [aux_sym_do_condition_token1] = ACTIONS(9748), + [aux_sym_with_statement_token1] = ACTIONS(9748), + [aux_sym_exit_statement_token1] = ACTIONS(9748), + [sym_end_statement] = ACTIONS(9750), + [aux_sym_on_goto_statement_token1] = ACTIONS(9748), + [aux_sym_on_goto_statement_token2] = ACTIONS(9748), + [aux_sym_on_error_statement_token2] = ACTIONS(9748), + [sym__ambiguous_redim_statement] = ACTIONS(9750), + [aux_sym_erase_statement_token1] = ACTIONS(9748), + [aux_sym_open_statement_token1] = ACTIONS(9748), + [aux_sym_file_mode_token2] = ACTIONS(9748), + [aux_sym_file_access_token2] = ACTIONS(9748), + [aux_sym_file_lock_token2] = ACTIONS(9748), + [aux_sym_print_statement_token1] = ACTIONS(9748), + [anon_sym_PLUS] = ACTIONS(9750), + [anon_sym_DASH] = ACTIONS(9748), + [anon_sym_QMARK] = ACTIONS(9750), + [aux_sym_close_statement_token1] = ACTIONS(9748), + [aux_sym_put_statement_token1] = ACTIONS(9748), + [aux_sym_unlock_statement_token1] = ACTIONS(9748), + [aux_sym_seek_statement_token1] = ACTIONS(9748), + [sym_reset_statement] = ACTIONS(9748), + [aux_sym_raise_event_statement_token1] = ACTIONS(9748), + [sym_stop_statement] = ACTIONS(9748), + [sym_beep_statement] = ACTIONS(9748), + [aux_sym_unload_statement_token1] = ACTIONS(9748), + [aux_sym_def_type_statement_token1] = ACTIONS(9748), + [aux_sym_def_type_statement_token2] = ACTIONS(9748), + [aux_sym_def_type_statement_token3] = ACTIONS(9748), + [aux_sym_def_type_statement_token4] = ACTIONS(9748), + [aux_sym_def_type_statement_token5] = ACTIONS(9748), + [aux_sym_def_type_statement_token6] = ACTIONS(9748), + [aux_sym_def_type_statement_token7] = ACTIONS(9748), + [aux_sym_def_type_statement_token8] = ACTIONS(9748), + [aux_sym_def_type_statement_token9] = ACTIONS(9748), + [aux_sym_def_type_statement_token10] = ACTIONS(9748), + [aux_sym_def_type_statement_token11] = ACTIONS(9748), + [aux_sym_def_type_statement_token12] = ACTIONS(9748), + [aux_sym_def_type_statement_token13] = ACTIONS(9748), + [aux_sym_def_type_statement_token14] = ACTIONS(9748), + [aux_sym_call_statement_token1] = ACTIONS(9748), + [sym__ambiguous_call_statement] = ACTIONS(9748), + [aux_sym_addressof_expression_token1] = ACTIONS(9748), + [aux_sym_type_of_expression_token1] = ACTIONS(9748), + [aux_sym_unary_expression_token1] = ACTIONS(9748), + [sym_string_literal] = ACTIONS(9750), + [sym_number_literal] = ACTIONS(9750), + [aux_sym_boolean_literal_token1] = ACTIONS(9748), + [aux_sym_boolean_literal_token2] = ACTIONS(9748), + [sym_nothing_literal] = ACTIONS(9748), + [sym_null_literal] = ACTIONS(9748), + [sym_empty_literal] = ACTIONS(9748), + [sym_date_literal] = ACTIONS(9750), + [anon_sym_POUND] = ACTIONS(9748), + }, + [STATE(6525)] = { + [sym_identifier] = ACTIONS(9752), + [sym_newline] = ACTIONS(9754), + [anon_sym_COLON] = ACTIONS(9754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9752), + [aux_sym_frm_property_statement_token1] = ACTIONS(9752), + [anon_sym_DOT] = ACTIONS(9752), + [anon_sym_BANG] = ACTIONS(9754), + [aux_sym__attribute_identifier_token1] = ACTIONS(9752), + [aux_sym_option_statement_token3] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9752), + [aux_sym_preprocessor_const_token1] = ACTIONS(9752), + [sym_static_modifier] = ACTIONS(9752), + [sym__dim_keyword] = ACTIONS(9752), + [sym__redim_keyword] = ACTIONS(9752), + [aux_sym_get_accessor_token1] = ACTIONS(9752), + [aux_sym_set_accessor_token1] = ACTIONS(9752), + [aux_sym_const_declaration_token1] = ACTIONS(9752), + [anon_sym_LPAREN] = ACTIONS(9754), + [aux_sym_as_type_clause_token2] = ACTIONS(9752), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9752), + [aux_sym_visibility_token1] = ACTIONS(9752), + [aux_sym_visibility_token2] = ACTIONS(9752), + [aux_sym_elseif_fragment_token1] = ACTIONS(9752), + [aux_sym_else_fragment_token1] = ACTIONS(9752), + [aux_sym_select_statement_token1] = ACTIONS(9752), + [aux_sym__for_header_token1] = ACTIONS(9752), + [aux_sym_do_statement_token1] = ACTIONS(9752), + [aux_sym_do_statement_token2] = ACTIONS(9752), + [aux_sym_do_condition_token1] = ACTIONS(9752), + [aux_sym_with_statement_token1] = ACTIONS(9752), + [aux_sym_exit_statement_token1] = ACTIONS(9752), + [sym_end_statement] = ACTIONS(9754), + [aux_sym_on_goto_statement_token1] = ACTIONS(9752), + [aux_sym_on_goto_statement_token2] = ACTIONS(9752), + [aux_sym_on_error_statement_token2] = ACTIONS(9752), + [sym__ambiguous_redim_statement] = ACTIONS(9754), + [aux_sym_erase_statement_token1] = ACTIONS(9752), + [aux_sym_open_statement_token1] = ACTIONS(9752), + [aux_sym_file_mode_token2] = ACTIONS(9752), + [aux_sym_file_access_token2] = ACTIONS(9752), + [aux_sym_file_lock_token2] = ACTIONS(9752), + [aux_sym_print_statement_token1] = ACTIONS(9752), + [anon_sym_PLUS] = ACTIONS(9754), + [anon_sym_DASH] = ACTIONS(9752), + [anon_sym_QMARK] = ACTIONS(9754), + [aux_sym_close_statement_token1] = ACTIONS(9752), + [aux_sym_put_statement_token1] = ACTIONS(9752), + [aux_sym_unlock_statement_token1] = ACTIONS(9752), + [aux_sym_seek_statement_token1] = ACTIONS(9752), + [sym_reset_statement] = ACTIONS(9752), + [aux_sym_raise_event_statement_token1] = ACTIONS(9752), + [sym_stop_statement] = ACTIONS(9752), + [sym_beep_statement] = ACTIONS(9752), + [aux_sym_unload_statement_token1] = ACTIONS(9752), + [aux_sym_def_type_statement_token1] = ACTIONS(9752), + [aux_sym_def_type_statement_token2] = ACTIONS(9752), + [aux_sym_def_type_statement_token3] = ACTIONS(9752), + [aux_sym_def_type_statement_token4] = ACTIONS(9752), + [aux_sym_def_type_statement_token5] = ACTIONS(9752), + [aux_sym_def_type_statement_token6] = ACTIONS(9752), + [aux_sym_def_type_statement_token7] = ACTIONS(9752), + [aux_sym_def_type_statement_token8] = ACTIONS(9752), + [aux_sym_def_type_statement_token9] = ACTIONS(9752), + [aux_sym_def_type_statement_token10] = ACTIONS(9752), + [aux_sym_def_type_statement_token11] = ACTIONS(9752), + [aux_sym_def_type_statement_token12] = ACTIONS(9752), + [aux_sym_def_type_statement_token13] = ACTIONS(9752), + [aux_sym_def_type_statement_token14] = ACTIONS(9752), + [aux_sym_call_statement_token1] = ACTIONS(9752), + [sym__ambiguous_call_statement] = ACTIONS(9752), + [aux_sym_addressof_expression_token1] = ACTIONS(9752), + [aux_sym_type_of_expression_token1] = ACTIONS(9752), + [aux_sym_unary_expression_token1] = ACTIONS(9752), + [sym_string_literal] = ACTIONS(9754), + [sym_number_literal] = ACTIONS(9754), + [aux_sym_boolean_literal_token1] = ACTIONS(9752), + [aux_sym_boolean_literal_token2] = ACTIONS(9752), + [sym_nothing_literal] = ACTIONS(9752), + [sym_null_literal] = ACTIONS(9752), + [sym_empty_literal] = ACTIONS(9752), + [sym_date_literal] = ACTIONS(9754), + [anon_sym_POUND] = ACTIONS(9752), + }, + [STATE(6526)] = { + [sym_identifier] = ACTIONS(9756), + [sym_newline] = ACTIONS(9758), + [anon_sym_COLON] = ACTIONS(9758), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9756), + [aux_sym_frm_property_statement_token1] = ACTIONS(9756), + [anon_sym_DOT] = ACTIONS(9756), + [anon_sym_BANG] = ACTIONS(9758), + [aux_sym__attribute_identifier_token1] = ACTIONS(9756), + [aux_sym_option_statement_token3] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9756), + [aux_sym_preprocessor_const_token1] = ACTIONS(9756), + [sym_static_modifier] = ACTIONS(9756), + [sym__dim_keyword] = ACTIONS(9756), + [sym__redim_keyword] = ACTIONS(9756), + [aux_sym_get_accessor_token1] = ACTIONS(9756), + [aux_sym_set_accessor_token1] = ACTIONS(9756), + [aux_sym_const_declaration_token1] = ACTIONS(9756), + [anon_sym_LPAREN] = ACTIONS(9758), + [aux_sym_as_type_clause_token2] = ACTIONS(9756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9756), + [aux_sym_visibility_token1] = ACTIONS(9756), + [aux_sym_visibility_token2] = ACTIONS(9756), + [aux_sym_elseif_fragment_token1] = ACTIONS(9756), + [aux_sym_else_fragment_token1] = ACTIONS(9756), + [aux_sym_select_statement_token1] = ACTIONS(9756), + [aux_sym__for_header_token1] = ACTIONS(9756), + [aux_sym_do_statement_token1] = ACTIONS(9756), + [aux_sym_do_statement_token2] = ACTIONS(9756), + [aux_sym_do_condition_token1] = ACTIONS(9756), + [aux_sym_with_statement_token1] = ACTIONS(9756), + [aux_sym_exit_statement_token1] = ACTIONS(9756), + [sym_end_statement] = ACTIONS(9758), + [aux_sym_on_goto_statement_token1] = ACTIONS(9756), + [aux_sym_on_goto_statement_token2] = ACTIONS(9756), + [aux_sym_on_error_statement_token2] = ACTIONS(9756), + [sym__ambiguous_redim_statement] = ACTIONS(9758), + [aux_sym_erase_statement_token1] = ACTIONS(9756), + [aux_sym_open_statement_token1] = ACTIONS(9756), + [aux_sym_file_mode_token2] = ACTIONS(9756), + [aux_sym_file_access_token2] = ACTIONS(9756), + [aux_sym_file_lock_token2] = ACTIONS(9756), + [aux_sym_print_statement_token1] = ACTIONS(9756), + [anon_sym_PLUS] = ACTIONS(9758), + [anon_sym_DASH] = ACTIONS(9756), + [anon_sym_QMARK] = ACTIONS(9758), + [aux_sym_close_statement_token1] = ACTIONS(9756), + [aux_sym_put_statement_token1] = ACTIONS(9756), + [aux_sym_unlock_statement_token1] = ACTIONS(9756), + [aux_sym_seek_statement_token1] = ACTIONS(9756), + [sym_reset_statement] = ACTIONS(9756), + [aux_sym_raise_event_statement_token1] = ACTIONS(9756), + [sym_stop_statement] = ACTIONS(9756), + [sym_beep_statement] = ACTIONS(9756), + [aux_sym_unload_statement_token1] = ACTIONS(9756), + [aux_sym_def_type_statement_token1] = ACTIONS(9756), + [aux_sym_def_type_statement_token2] = ACTIONS(9756), + [aux_sym_def_type_statement_token3] = ACTIONS(9756), + [aux_sym_def_type_statement_token4] = ACTIONS(9756), + [aux_sym_def_type_statement_token5] = ACTIONS(9756), + [aux_sym_def_type_statement_token6] = ACTIONS(9756), + [aux_sym_def_type_statement_token7] = ACTIONS(9756), + [aux_sym_def_type_statement_token8] = ACTIONS(9756), + [aux_sym_def_type_statement_token9] = ACTIONS(9756), + [aux_sym_def_type_statement_token10] = ACTIONS(9756), + [aux_sym_def_type_statement_token11] = ACTIONS(9756), + [aux_sym_def_type_statement_token12] = ACTIONS(9756), + [aux_sym_def_type_statement_token13] = ACTIONS(9756), + [aux_sym_def_type_statement_token14] = ACTIONS(9756), + [aux_sym_call_statement_token1] = ACTIONS(9756), + [sym__ambiguous_call_statement] = ACTIONS(9756), + [aux_sym_addressof_expression_token1] = ACTIONS(9756), + [aux_sym_type_of_expression_token1] = ACTIONS(9756), + [aux_sym_unary_expression_token1] = ACTIONS(9756), + [sym_string_literal] = ACTIONS(9758), + [sym_number_literal] = ACTIONS(9758), + [aux_sym_boolean_literal_token1] = ACTIONS(9756), + [aux_sym_boolean_literal_token2] = ACTIONS(9756), + [sym_nothing_literal] = ACTIONS(9756), + [sym_null_literal] = ACTIONS(9756), + [sym_empty_literal] = ACTIONS(9756), + [sym_date_literal] = ACTIONS(9758), + [anon_sym_POUND] = ACTIONS(9756), + }, + [STATE(6527)] = { + [sym_identifier] = ACTIONS(9370), + [sym_newline] = ACTIONS(9372), + [anon_sym_COLON] = ACTIONS(9372), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9370), + [aux_sym_frm_property_statement_token1] = ACTIONS(9370), + [anon_sym_DOT] = ACTIONS(9370), + [anon_sym_BANG] = ACTIONS(9372), + [aux_sym__attribute_identifier_token1] = ACTIONS(9370), + [aux_sym_option_statement_token3] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9370), + [aux_sym_preprocessor_const_token1] = ACTIONS(9370), + [sym_static_modifier] = ACTIONS(9370), + [sym__dim_keyword] = ACTIONS(9370), + [sym__redim_keyword] = ACTIONS(9370), + [aux_sym_get_accessor_token1] = ACTIONS(9370), + [aux_sym_set_accessor_token1] = ACTIONS(9370), + [aux_sym_const_declaration_token1] = ACTIONS(9370), + [anon_sym_LPAREN] = ACTIONS(9372), + [aux_sym_as_type_clause_token2] = ACTIONS(9370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9370), + [aux_sym_visibility_token1] = ACTIONS(9370), + [aux_sym_visibility_token2] = ACTIONS(9370), + [aux_sym_elseif_fragment_token1] = ACTIONS(9370), + [aux_sym_else_fragment_token1] = ACTIONS(9370), + [aux_sym_select_statement_token1] = ACTIONS(9370), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9370), + [aux_sym__for_header_token1] = ACTIONS(9370), + [aux_sym_do_statement_token1] = ACTIONS(9370), + [aux_sym_do_condition_token1] = ACTIONS(9370), + [aux_sym_with_statement_token1] = ACTIONS(9370), + [aux_sym_exit_statement_token1] = ACTIONS(9370), + [sym_end_statement] = ACTIONS(9372), + [aux_sym_on_goto_statement_token1] = ACTIONS(9370), + [aux_sym_on_goto_statement_token2] = ACTIONS(9370), + [aux_sym_on_error_statement_token2] = ACTIONS(9370), + [sym__ambiguous_redim_statement] = ACTIONS(9372), + [aux_sym_erase_statement_token1] = ACTIONS(9370), + [aux_sym_open_statement_token1] = ACTIONS(9370), + [aux_sym_file_mode_token2] = ACTIONS(9370), + [aux_sym_file_access_token2] = ACTIONS(9370), + [aux_sym_file_lock_token2] = ACTIONS(9370), + [aux_sym_print_statement_token1] = ACTIONS(9370), + [anon_sym_PLUS] = ACTIONS(9372), + [anon_sym_DASH] = ACTIONS(9370), + [anon_sym_QMARK] = ACTIONS(9372), + [aux_sym_close_statement_token1] = ACTIONS(9370), + [aux_sym_put_statement_token1] = ACTIONS(9370), + [aux_sym_unlock_statement_token1] = ACTIONS(9370), + [aux_sym_seek_statement_token1] = ACTIONS(9370), + [sym_reset_statement] = ACTIONS(9370), + [aux_sym_raise_event_statement_token1] = ACTIONS(9370), + [sym_stop_statement] = ACTIONS(9370), + [sym_beep_statement] = ACTIONS(9370), + [aux_sym_unload_statement_token1] = ACTIONS(9370), + [aux_sym_def_type_statement_token1] = ACTIONS(9370), + [aux_sym_def_type_statement_token2] = ACTIONS(9370), + [aux_sym_def_type_statement_token3] = ACTIONS(9370), + [aux_sym_def_type_statement_token4] = ACTIONS(9370), + [aux_sym_def_type_statement_token5] = ACTIONS(9370), + [aux_sym_def_type_statement_token6] = ACTIONS(9370), + [aux_sym_def_type_statement_token7] = ACTIONS(9370), + [aux_sym_def_type_statement_token8] = ACTIONS(9370), + [aux_sym_def_type_statement_token9] = ACTIONS(9370), + [aux_sym_def_type_statement_token10] = ACTIONS(9370), + [aux_sym_def_type_statement_token11] = ACTIONS(9370), + [aux_sym_def_type_statement_token12] = ACTIONS(9370), + [aux_sym_def_type_statement_token13] = ACTIONS(9370), + [aux_sym_def_type_statement_token14] = ACTIONS(9370), + [aux_sym_call_statement_token1] = ACTIONS(9370), + [sym__ambiguous_call_statement] = ACTIONS(9370), + [aux_sym_addressof_expression_token1] = ACTIONS(9370), + [aux_sym_type_of_expression_token1] = ACTIONS(9370), + [aux_sym_unary_expression_token1] = ACTIONS(9370), + [sym_string_literal] = ACTIONS(9372), + [sym_number_literal] = ACTIONS(9372), + [aux_sym_boolean_literal_token1] = ACTIONS(9370), + [aux_sym_boolean_literal_token2] = ACTIONS(9370), + [sym_nothing_literal] = ACTIONS(9370), + [sym_null_literal] = ACTIONS(9370), + [sym_empty_literal] = ACTIONS(9370), + [sym_date_literal] = ACTIONS(9372), + [anon_sym_POUND] = ACTIONS(9370), + }, + [STATE(6528)] = { + [sym_identifier] = ACTIONS(9760), + [sym_newline] = ACTIONS(9762), + [anon_sym_COLON] = ACTIONS(9762), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9760), + [aux_sym_frm_property_statement_token1] = ACTIONS(9760), + [anon_sym_DOT] = ACTIONS(9760), + [anon_sym_BANG] = ACTIONS(9762), + [aux_sym__attribute_identifier_token1] = ACTIONS(9760), + [aux_sym_option_statement_token3] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9760), + [aux_sym_preprocessor_const_token1] = ACTIONS(9760), + [sym_static_modifier] = ACTIONS(9760), + [sym__dim_keyword] = ACTIONS(9760), + [sym__redim_keyword] = ACTIONS(9760), + [aux_sym_get_accessor_token1] = ACTIONS(9760), + [aux_sym_set_accessor_token1] = ACTIONS(9760), + [aux_sym_const_declaration_token1] = ACTIONS(9760), + [anon_sym_LPAREN] = ACTIONS(9762), + [aux_sym_as_type_clause_token2] = ACTIONS(9760), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9760), + [aux_sym_visibility_token1] = ACTIONS(9760), + [aux_sym_visibility_token2] = ACTIONS(9760), + [aux_sym_elseif_fragment_token1] = ACTIONS(9760), + [aux_sym_else_fragment_token1] = ACTIONS(9760), + [aux_sym_select_statement_token1] = ACTIONS(9760), + [aux_sym__for_header_token1] = ACTIONS(9760), + [aux_sym_do_statement_token1] = ACTIONS(9760), + [aux_sym_do_statement_token2] = ACTIONS(9760), + [aux_sym_do_condition_token1] = ACTIONS(9760), + [aux_sym_with_statement_token1] = ACTIONS(9760), + [aux_sym_exit_statement_token1] = ACTIONS(9760), + [sym_end_statement] = ACTIONS(9762), + [aux_sym_on_goto_statement_token1] = ACTIONS(9760), + [aux_sym_on_goto_statement_token2] = ACTIONS(9760), + [aux_sym_on_error_statement_token2] = ACTIONS(9760), + [sym__ambiguous_redim_statement] = ACTIONS(9762), + [aux_sym_erase_statement_token1] = ACTIONS(9760), + [aux_sym_open_statement_token1] = ACTIONS(9760), + [aux_sym_file_mode_token2] = ACTIONS(9760), + [aux_sym_file_access_token2] = ACTIONS(9760), + [aux_sym_file_lock_token2] = ACTIONS(9760), + [aux_sym_print_statement_token1] = ACTIONS(9760), + [anon_sym_PLUS] = ACTIONS(9762), + [anon_sym_DASH] = ACTIONS(9760), + [anon_sym_QMARK] = ACTIONS(9762), + [aux_sym_close_statement_token1] = ACTIONS(9760), + [aux_sym_put_statement_token1] = ACTIONS(9760), + [aux_sym_unlock_statement_token1] = ACTIONS(9760), + [aux_sym_seek_statement_token1] = ACTIONS(9760), + [sym_reset_statement] = ACTIONS(9760), + [aux_sym_raise_event_statement_token1] = ACTIONS(9760), + [sym_stop_statement] = ACTIONS(9760), + [sym_beep_statement] = ACTIONS(9760), + [aux_sym_unload_statement_token1] = ACTIONS(9760), + [aux_sym_def_type_statement_token1] = ACTIONS(9760), + [aux_sym_def_type_statement_token2] = ACTIONS(9760), + [aux_sym_def_type_statement_token3] = ACTIONS(9760), + [aux_sym_def_type_statement_token4] = ACTIONS(9760), + [aux_sym_def_type_statement_token5] = ACTIONS(9760), + [aux_sym_def_type_statement_token6] = ACTIONS(9760), + [aux_sym_def_type_statement_token7] = ACTIONS(9760), + [aux_sym_def_type_statement_token8] = ACTIONS(9760), + [aux_sym_def_type_statement_token9] = ACTIONS(9760), + [aux_sym_def_type_statement_token10] = ACTIONS(9760), + [aux_sym_def_type_statement_token11] = ACTIONS(9760), + [aux_sym_def_type_statement_token12] = ACTIONS(9760), + [aux_sym_def_type_statement_token13] = ACTIONS(9760), + [aux_sym_def_type_statement_token14] = ACTIONS(9760), + [aux_sym_call_statement_token1] = ACTIONS(9760), + [sym__ambiguous_call_statement] = ACTIONS(9760), + [aux_sym_addressof_expression_token1] = ACTIONS(9760), + [aux_sym_type_of_expression_token1] = ACTIONS(9760), + [aux_sym_unary_expression_token1] = ACTIONS(9760), + [sym_string_literal] = ACTIONS(9762), + [sym_number_literal] = ACTIONS(9762), + [aux_sym_boolean_literal_token1] = ACTIONS(9760), + [aux_sym_boolean_literal_token2] = ACTIONS(9760), + [sym_nothing_literal] = ACTIONS(9760), + [sym_null_literal] = ACTIONS(9760), + [sym_empty_literal] = ACTIONS(9760), + [sym_date_literal] = ACTIONS(9762), + [anon_sym_POUND] = ACTIONS(9760), + }, + [STATE(6529)] = { + [sym_identifier] = ACTIONS(8729), + [sym_newline] = ACTIONS(8731), + [anon_sym_COLON] = ACTIONS(8731), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8729), + [aux_sym_frm_property_statement_token1] = ACTIONS(8729), + [anon_sym_DOT] = ACTIONS(8729), + [anon_sym_BANG] = ACTIONS(8731), + [aux_sym__attribute_identifier_token1] = ACTIONS(8729), + [aux_sym_option_statement_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8729), + [aux_sym_preprocessor_const_token1] = ACTIONS(8729), + [sym_static_modifier] = ACTIONS(8729), + [sym__dim_keyword] = ACTIONS(8729), + [sym__redim_keyword] = ACTIONS(8729), + [aux_sym_get_accessor_token1] = ACTIONS(8729), + [aux_sym_set_accessor_token1] = ACTIONS(8729), + [aux_sym_const_declaration_token1] = ACTIONS(8729), + [anon_sym_LPAREN] = ACTIONS(8731), + [aux_sym_as_type_clause_token2] = ACTIONS(8729), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8729), + [aux_sym_visibility_token1] = ACTIONS(8729), + [aux_sym_visibility_token2] = ACTIONS(8729), + [aux_sym_elseif_fragment_token1] = ACTIONS(8729), + [aux_sym_else_fragment_token1] = ACTIONS(8729), + [aux_sym_select_statement_token1] = ACTIONS(8729), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8729), + [aux_sym__for_header_token1] = ACTIONS(8729), + [aux_sym_do_statement_token1] = ACTIONS(8729), + [aux_sym_do_condition_token1] = ACTIONS(8729), + [aux_sym_with_statement_token1] = ACTIONS(8729), + [aux_sym_exit_statement_token1] = ACTIONS(8729), + [sym_end_statement] = ACTIONS(8731), + [aux_sym_on_goto_statement_token1] = ACTIONS(8729), + [aux_sym_on_goto_statement_token2] = ACTIONS(8729), + [aux_sym_on_error_statement_token2] = ACTIONS(8729), + [sym__ambiguous_redim_statement] = ACTIONS(8731), + [aux_sym_erase_statement_token1] = ACTIONS(8729), + [aux_sym_open_statement_token1] = ACTIONS(8729), + [aux_sym_file_mode_token2] = ACTIONS(8729), + [aux_sym_file_access_token2] = ACTIONS(8729), + [aux_sym_file_lock_token2] = ACTIONS(8729), + [aux_sym_print_statement_token1] = ACTIONS(8729), + [anon_sym_PLUS] = ACTIONS(8731), + [anon_sym_DASH] = ACTIONS(8729), + [anon_sym_QMARK] = ACTIONS(8731), + [aux_sym_close_statement_token1] = ACTIONS(8729), + [aux_sym_put_statement_token1] = ACTIONS(8729), + [aux_sym_unlock_statement_token1] = ACTIONS(8729), + [aux_sym_seek_statement_token1] = ACTIONS(8729), + [sym_reset_statement] = ACTIONS(8729), + [aux_sym_raise_event_statement_token1] = ACTIONS(8729), + [sym_stop_statement] = ACTIONS(8729), + [sym_beep_statement] = ACTIONS(8729), + [aux_sym_unload_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token2] = ACTIONS(8729), + [aux_sym_def_type_statement_token3] = ACTIONS(8729), + [aux_sym_def_type_statement_token4] = ACTIONS(8729), + [aux_sym_def_type_statement_token5] = ACTIONS(8729), + [aux_sym_def_type_statement_token6] = ACTIONS(8729), + [aux_sym_def_type_statement_token7] = ACTIONS(8729), + [aux_sym_def_type_statement_token8] = ACTIONS(8729), + [aux_sym_def_type_statement_token9] = ACTIONS(8729), + [aux_sym_def_type_statement_token10] = ACTIONS(8729), + [aux_sym_def_type_statement_token11] = ACTIONS(8729), + [aux_sym_def_type_statement_token12] = ACTIONS(8729), + [aux_sym_def_type_statement_token13] = ACTIONS(8729), + [aux_sym_def_type_statement_token14] = ACTIONS(8729), + [aux_sym_call_statement_token1] = ACTIONS(8729), + [sym__ambiguous_call_statement] = ACTIONS(8729), + [aux_sym_addressof_expression_token1] = ACTIONS(8729), + [aux_sym_type_of_expression_token1] = ACTIONS(8729), + [aux_sym_unary_expression_token1] = ACTIONS(8729), + [sym_string_literal] = ACTIONS(8731), + [sym_number_literal] = ACTIONS(8731), + [aux_sym_boolean_literal_token1] = ACTIONS(8729), + [aux_sym_boolean_literal_token2] = ACTIONS(8729), + [sym_nothing_literal] = ACTIONS(8729), + [sym_null_literal] = ACTIONS(8729), + [sym_empty_literal] = ACTIONS(8729), + [sym_date_literal] = ACTIONS(8731), + [anon_sym_POUND] = ACTIONS(8729), + }, + [STATE(6530)] = { + [sym_identifier] = ACTIONS(8992), + [sym_newline] = ACTIONS(8994), + [anon_sym_COLON] = ACTIONS(8994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8992), + [aux_sym_frm_property_statement_token1] = ACTIONS(8992), + [anon_sym_DOT] = ACTIONS(8992), + [anon_sym_BANG] = ACTIONS(8994), + [aux_sym__attribute_identifier_token1] = ACTIONS(8992), + [aux_sym_option_statement_token3] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8992), + [aux_sym_preprocessor_const_token1] = ACTIONS(8992), + [sym_static_modifier] = ACTIONS(8992), + [sym__dim_keyword] = ACTIONS(8992), + [sym__redim_keyword] = ACTIONS(8992), + [aux_sym_get_accessor_token1] = ACTIONS(8992), + [aux_sym_set_accessor_token1] = ACTIONS(8992), + [aux_sym_const_declaration_token1] = ACTIONS(8992), + [anon_sym_LPAREN] = ACTIONS(8994), + [aux_sym_as_type_clause_token2] = ACTIONS(8992), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8992), + [aux_sym_visibility_token1] = ACTIONS(8992), + [aux_sym_visibility_token2] = ACTIONS(8992), + [aux_sym_elseif_fragment_token1] = ACTIONS(8992), + [aux_sym_else_fragment_token1] = ACTIONS(8992), + [aux_sym_select_statement_token1] = ACTIONS(8992), + [aux_sym__for_header_token1] = ACTIONS(8992), + [aux_sym_do_statement_token1] = ACTIONS(8992), + [aux_sym_do_condition_token1] = ACTIONS(8992), + [aux_sym_with_statement_token1] = ACTIONS(8992), + [aux_sym_exit_statement_token1] = ACTIONS(8992), + [sym_end_statement] = ACTIONS(8994), + [aux_sym_on_goto_statement_token1] = ACTIONS(8992), + [aux_sym_on_goto_statement_token2] = ACTIONS(8992), + [aux_sym_on_error_statement_token2] = ACTIONS(8992), + [sym__ambiguous_redim_statement] = ACTIONS(8994), + [aux_sym_erase_statement_token1] = ACTIONS(8992), + [aux_sym_open_statement_token1] = ACTIONS(8992), + [aux_sym_file_mode_token2] = ACTIONS(8992), + [aux_sym_file_access_token2] = ACTIONS(8992), + [aux_sym_file_lock_token2] = ACTIONS(8992), + [aux_sym_print_statement_token1] = ACTIONS(8992), + [anon_sym_PLUS] = ACTIONS(8994), + [anon_sym_DASH] = ACTIONS(8992), + [anon_sym_QMARK] = ACTIONS(8994), + [aux_sym_close_statement_token1] = ACTIONS(8992), + [aux_sym_put_statement_token1] = ACTIONS(8992), + [aux_sym_unlock_statement_token1] = ACTIONS(8992), + [aux_sym_seek_statement_token1] = ACTIONS(8992), + [sym_reset_statement] = ACTIONS(8992), + [aux_sym_raise_event_statement_token1] = ACTIONS(8992), + [sym_stop_statement] = ACTIONS(8992), + [sym_beep_statement] = ACTIONS(8992), + [aux_sym_unload_statement_token1] = ACTIONS(8992), + [aux_sym_def_type_statement_token1] = ACTIONS(8992), + [aux_sym_def_type_statement_token2] = ACTIONS(8992), + [aux_sym_def_type_statement_token3] = ACTIONS(8992), + [aux_sym_def_type_statement_token4] = ACTIONS(8992), + [aux_sym_def_type_statement_token5] = ACTIONS(8992), + [aux_sym_def_type_statement_token6] = ACTIONS(8992), + [aux_sym_def_type_statement_token7] = ACTIONS(8992), + [aux_sym_def_type_statement_token8] = ACTIONS(8992), + [aux_sym_def_type_statement_token9] = ACTIONS(8992), + [aux_sym_def_type_statement_token10] = ACTIONS(8992), + [aux_sym_def_type_statement_token11] = ACTIONS(8992), + [aux_sym_def_type_statement_token12] = ACTIONS(8992), + [aux_sym_def_type_statement_token13] = ACTIONS(8992), + [aux_sym_def_type_statement_token14] = ACTIONS(8992), + [aux_sym_call_statement_token1] = ACTIONS(8992), + [sym__ambiguous_call_statement] = ACTIONS(8992), + [aux_sym_addressof_expression_token1] = ACTIONS(8992), + [aux_sym_type_of_expression_token1] = ACTIONS(8992), + [aux_sym_unary_expression_token1] = ACTIONS(8992), + [sym_string_literal] = ACTIONS(8994), + [sym_number_literal] = ACTIONS(8994), + [aux_sym_boolean_literal_token1] = ACTIONS(8992), + [aux_sym_boolean_literal_token2] = ACTIONS(8992), + [sym_nothing_literal] = ACTIONS(8992), + [sym_null_literal] = ACTIONS(8992), + [sym_empty_literal] = ACTIONS(8992), + [sym_date_literal] = ACTIONS(8994), + [anon_sym_POUND] = ACTIONS(8992), + }, + [STATE(6531)] = { + [sym_identifier] = ACTIONS(8996), + [sym_newline] = ACTIONS(8998), + [anon_sym_COLON] = ACTIONS(8998), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8996), + [aux_sym_frm_property_statement_token1] = ACTIONS(8996), + [anon_sym_DOT] = ACTIONS(8996), + [anon_sym_BANG] = ACTIONS(8998), + [aux_sym__attribute_identifier_token1] = ACTIONS(8996), + [aux_sym_option_statement_token3] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8996), + [aux_sym_preprocessor_const_token1] = ACTIONS(8996), + [sym_static_modifier] = ACTIONS(8996), + [sym__dim_keyword] = ACTIONS(8996), + [sym__redim_keyword] = ACTIONS(8996), + [aux_sym_get_accessor_token1] = ACTIONS(8996), + [aux_sym_set_accessor_token1] = ACTIONS(8996), + [aux_sym_const_declaration_token1] = ACTIONS(8996), + [anon_sym_LPAREN] = ACTIONS(8998), + [aux_sym_as_type_clause_token2] = ACTIONS(8996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8996), + [aux_sym_visibility_token1] = ACTIONS(8996), + [aux_sym_visibility_token2] = ACTIONS(8996), + [aux_sym_elseif_fragment_token1] = ACTIONS(8996), + [aux_sym_else_fragment_token1] = ACTIONS(8996), + [aux_sym_select_statement_token1] = ACTIONS(8996), + [aux_sym__for_header_token1] = ACTIONS(8996), + [aux_sym_do_statement_token1] = ACTIONS(8996), + [aux_sym_do_condition_token1] = ACTIONS(8996), + [aux_sym_with_statement_token1] = ACTIONS(8996), + [aux_sym_exit_statement_token1] = ACTIONS(8996), + [sym_end_statement] = ACTIONS(8998), + [aux_sym_on_goto_statement_token1] = ACTIONS(8996), + [aux_sym_on_goto_statement_token2] = ACTIONS(8996), + [aux_sym_on_error_statement_token2] = ACTIONS(8996), + [sym__ambiguous_redim_statement] = ACTIONS(8998), + [aux_sym_erase_statement_token1] = ACTIONS(8996), + [aux_sym_open_statement_token1] = ACTIONS(8996), + [aux_sym_file_mode_token2] = ACTIONS(8996), + [aux_sym_file_access_token2] = ACTIONS(8996), + [aux_sym_file_lock_token2] = ACTIONS(8996), + [aux_sym_print_statement_token1] = ACTIONS(8996), + [anon_sym_PLUS] = ACTIONS(8998), + [anon_sym_DASH] = ACTIONS(8996), + [anon_sym_QMARK] = ACTIONS(8998), + [aux_sym_close_statement_token1] = ACTIONS(8996), + [aux_sym_put_statement_token1] = ACTIONS(8996), + [aux_sym_unlock_statement_token1] = ACTIONS(8996), + [aux_sym_seek_statement_token1] = ACTIONS(8996), + [sym_reset_statement] = ACTIONS(8996), + [aux_sym_raise_event_statement_token1] = ACTIONS(8996), + [sym_stop_statement] = ACTIONS(8996), + [sym_beep_statement] = ACTIONS(8996), + [aux_sym_unload_statement_token1] = ACTIONS(8996), + [aux_sym_def_type_statement_token1] = ACTIONS(8996), + [aux_sym_def_type_statement_token2] = ACTIONS(8996), + [aux_sym_def_type_statement_token3] = ACTIONS(8996), + [aux_sym_def_type_statement_token4] = ACTIONS(8996), + [aux_sym_def_type_statement_token5] = ACTIONS(8996), + [aux_sym_def_type_statement_token6] = ACTIONS(8996), + [aux_sym_def_type_statement_token7] = ACTIONS(8996), + [aux_sym_def_type_statement_token8] = ACTIONS(8996), + [aux_sym_def_type_statement_token9] = ACTIONS(8996), + [aux_sym_def_type_statement_token10] = ACTIONS(8996), + [aux_sym_def_type_statement_token11] = ACTIONS(8996), + [aux_sym_def_type_statement_token12] = ACTIONS(8996), + [aux_sym_def_type_statement_token13] = ACTIONS(8996), + [aux_sym_def_type_statement_token14] = ACTIONS(8996), + [aux_sym_call_statement_token1] = ACTIONS(8996), + [sym__ambiguous_call_statement] = ACTIONS(8996), + [aux_sym_addressof_expression_token1] = ACTIONS(8996), + [aux_sym_type_of_expression_token1] = ACTIONS(8996), + [aux_sym_unary_expression_token1] = ACTIONS(8996), + [sym_string_literal] = ACTIONS(8998), + [sym_number_literal] = ACTIONS(8998), + [aux_sym_boolean_literal_token1] = ACTIONS(8996), + [aux_sym_boolean_literal_token2] = ACTIONS(8996), + [sym_nothing_literal] = ACTIONS(8996), + [sym_null_literal] = ACTIONS(8996), + [sym_empty_literal] = ACTIONS(8996), + [sym_date_literal] = ACTIONS(8998), + [anon_sym_POUND] = ACTIONS(8996), + }, + [STATE(6532)] = { + [sym_identifier] = ACTIONS(8745), + [sym_newline] = ACTIONS(8747), + [anon_sym_COLON] = ACTIONS(8747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8745), + [aux_sym_frm_property_statement_token1] = ACTIONS(8745), + [anon_sym_DOT] = ACTIONS(8745), + [anon_sym_BANG] = ACTIONS(8747), + [aux_sym__attribute_identifier_token1] = ACTIONS(8745), + [aux_sym_option_statement_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8745), + [aux_sym_preprocessor_const_token1] = ACTIONS(8745), + [sym_static_modifier] = ACTIONS(8745), + [sym__dim_keyword] = ACTIONS(8745), + [sym__redim_keyword] = ACTIONS(8745), + [aux_sym_get_accessor_token1] = ACTIONS(8745), + [aux_sym_set_accessor_token1] = ACTIONS(8745), + [aux_sym_const_declaration_token1] = ACTIONS(8745), + [anon_sym_LPAREN] = ACTIONS(8747), + [aux_sym_as_type_clause_token2] = ACTIONS(8745), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8745), + [aux_sym_visibility_token1] = ACTIONS(8745), + [aux_sym_visibility_token2] = ACTIONS(8745), + [aux_sym_elseif_fragment_token1] = ACTIONS(8745), + [aux_sym_else_fragment_token1] = ACTIONS(8745), + [aux_sym_select_statement_token1] = ACTIONS(8745), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8745), + [aux_sym__for_header_token1] = ACTIONS(8745), + [aux_sym_do_statement_token1] = ACTIONS(8745), + [aux_sym_do_condition_token1] = ACTIONS(8745), + [aux_sym_with_statement_token1] = ACTIONS(8745), + [aux_sym_exit_statement_token1] = ACTIONS(8745), + [sym_end_statement] = ACTIONS(8747), + [aux_sym_on_goto_statement_token1] = ACTIONS(8745), + [aux_sym_on_goto_statement_token2] = ACTIONS(8745), + [aux_sym_on_error_statement_token2] = ACTIONS(8745), + [sym__ambiguous_redim_statement] = ACTIONS(8747), + [aux_sym_erase_statement_token1] = ACTIONS(8745), + [aux_sym_open_statement_token1] = ACTIONS(8745), + [aux_sym_file_mode_token2] = ACTIONS(8745), + [aux_sym_file_access_token2] = ACTIONS(8745), + [aux_sym_file_lock_token2] = ACTIONS(8745), + [aux_sym_print_statement_token1] = ACTIONS(8745), + [anon_sym_PLUS] = ACTIONS(8747), + [anon_sym_DASH] = ACTIONS(8745), + [anon_sym_QMARK] = ACTIONS(8747), + [aux_sym_close_statement_token1] = ACTIONS(8745), + [aux_sym_put_statement_token1] = ACTIONS(8745), + [aux_sym_unlock_statement_token1] = ACTIONS(8745), + [aux_sym_seek_statement_token1] = ACTIONS(8745), + [sym_reset_statement] = ACTIONS(8745), + [aux_sym_raise_event_statement_token1] = ACTIONS(8745), + [sym_stop_statement] = ACTIONS(8745), + [sym_beep_statement] = ACTIONS(8745), + [aux_sym_unload_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token2] = ACTIONS(8745), + [aux_sym_def_type_statement_token3] = ACTIONS(8745), + [aux_sym_def_type_statement_token4] = ACTIONS(8745), + [aux_sym_def_type_statement_token5] = ACTIONS(8745), + [aux_sym_def_type_statement_token6] = ACTIONS(8745), + [aux_sym_def_type_statement_token7] = ACTIONS(8745), + [aux_sym_def_type_statement_token8] = ACTIONS(8745), + [aux_sym_def_type_statement_token9] = ACTIONS(8745), + [aux_sym_def_type_statement_token10] = ACTIONS(8745), + [aux_sym_def_type_statement_token11] = ACTIONS(8745), + [aux_sym_def_type_statement_token12] = ACTIONS(8745), + [aux_sym_def_type_statement_token13] = ACTIONS(8745), + [aux_sym_def_type_statement_token14] = ACTIONS(8745), + [aux_sym_call_statement_token1] = ACTIONS(8745), + [sym__ambiguous_call_statement] = ACTIONS(8745), + [aux_sym_addressof_expression_token1] = ACTIONS(8745), + [aux_sym_type_of_expression_token1] = ACTIONS(8745), + [aux_sym_unary_expression_token1] = ACTIONS(8745), + [sym_string_literal] = ACTIONS(8747), + [sym_number_literal] = ACTIONS(8747), + [aux_sym_boolean_literal_token1] = ACTIONS(8745), + [aux_sym_boolean_literal_token2] = ACTIONS(8745), + [sym_nothing_literal] = ACTIONS(8745), + [sym_null_literal] = ACTIONS(8745), + [sym_empty_literal] = ACTIONS(8745), + [sym_date_literal] = ACTIONS(8747), + [anon_sym_POUND] = ACTIONS(8745), + }, + [STATE(6533)] = { + [sym_identifier] = ACTIONS(9764), + [sym_newline] = ACTIONS(9766), + [anon_sym_COLON] = ACTIONS(9766), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9764), + [aux_sym_frm_property_statement_token1] = ACTIONS(9764), + [anon_sym_DOT] = ACTIONS(9764), + [anon_sym_BANG] = ACTIONS(9766), + [aux_sym__attribute_identifier_token1] = ACTIONS(9764), + [aux_sym_option_statement_token3] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9764), + [aux_sym_preprocessor_const_token1] = ACTIONS(9764), + [sym_static_modifier] = ACTIONS(9764), + [sym__dim_keyword] = ACTIONS(9764), + [sym__redim_keyword] = ACTIONS(9764), + [aux_sym_get_accessor_token1] = ACTIONS(9764), + [aux_sym_set_accessor_token1] = ACTIONS(9764), + [aux_sym_const_declaration_token1] = ACTIONS(9764), + [anon_sym_LPAREN] = ACTIONS(9766), + [aux_sym_as_type_clause_token2] = ACTIONS(9764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9764), + [aux_sym_visibility_token1] = ACTIONS(9764), + [aux_sym_visibility_token2] = ACTIONS(9764), + [aux_sym_elseif_fragment_token1] = ACTIONS(9764), + [aux_sym_else_fragment_token1] = ACTIONS(9764), + [aux_sym_select_statement_token1] = ACTIONS(9764), + [aux_sym__for_header_token1] = ACTIONS(9764), + [aux_sym_do_statement_token1] = ACTIONS(9764), + [aux_sym_do_statement_token2] = ACTIONS(9764), + [aux_sym_do_condition_token1] = ACTIONS(9764), + [aux_sym_with_statement_token1] = ACTIONS(9764), + [aux_sym_exit_statement_token1] = ACTIONS(9764), + [sym_end_statement] = ACTIONS(9766), + [aux_sym_on_goto_statement_token1] = ACTIONS(9764), + [aux_sym_on_goto_statement_token2] = ACTIONS(9764), + [aux_sym_on_error_statement_token2] = ACTIONS(9764), + [sym__ambiguous_redim_statement] = ACTIONS(9766), + [aux_sym_erase_statement_token1] = ACTIONS(9764), + [aux_sym_open_statement_token1] = ACTIONS(9764), + [aux_sym_file_mode_token2] = ACTIONS(9764), + [aux_sym_file_access_token2] = ACTIONS(9764), + [aux_sym_file_lock_token2] = ACTIONS(9764), + [aux_sym_print_statement_token1] = ACTIONS(9764), + [anon_sym_PLUS] = ACTIONS(9766), + [anon_sym_DASH] = ACTIONS(9764), + [anon_sym_QMARK] = ACTIONS(9766), + [aux_sym_close_statement_token1] = ACTIONS(9764), + [aux_sym_put_statement_token1] = ACTIONS(9764), + [aux_sym_unlock_statement_token1] = ACTIONS(9764), + [aux_sym_seek_statement_token1] = ACTIONS(9764), + [sym_reset_statement] = ACTIONS(9764), + [aux_sym_raise_event_statement_token1] = ACTIONS(9764), + [sym_stop_statement] = ACTIONS(9764), + [sym_beep_statement] = ACTIONS(9764), + [aux_sym_unload_statement_token1] = ACTIONS(9764), + [aux_sym_def_type_statement_token1] = ACTIONS(9764), + [aux_sym_def_type_statement_token2] = ACTIONS(9764), + [aux_sym_def_type_statement_token3] = ACTIONS(9764), + [aux_sym_def_type_statement_token4] = ACTIONS(9764), + [aux_sym_def_type_statement_token5] = ACTIONS(9764), + [aux_sym_def_type_statement_token6] = ACTIONS(9764), + [aux_sym_def_type_statement_token7] = ACTIONS(9764), + [aux_sym_def_type_statement_token8] = ACTIONS(9764), + [aux_sym_def_type_statement_token9] = ACTIONS(9764), + [aux_sym_def_type_statement_token10] = ACTIONS(9764), + [aux_sym_def_type_statement_token11] = ACTIONS(9764), + [aux_sym_def_type_statement_token12] = ACTIONS(9764), + [aux_sym_def_type_statement_token13] = ACTIONS(9764), + [aux_sym_def_type_statement_token14] = ACTIONS(9764), + [aux_sym_call_statement_token1] = ACTIONS(9764), + [sym__ambiguous_call_statement] = ACTIONS(9764), + [aux_sym_addressof_expression_token1] = ACTIONS(9764), + [aux_sym_type_of_expression_token1] = ACTIONS(9764), + [aux_sym_unary_expression_token1] = ACTIONS(9764), + [sym_string_literal] = ACTIONS(9766), + [sym_number_literal] = ACTIONS(9766), + [aux_sym_boolean_literal_token1] = ACTIONS(9764), + [aux_sym_boolean_literal_token2] = ACTIONS(9764), + [sym_nothing_literal] = ACTIONS(9764), + [sym_null_literal] = ACTIONS(9764), + [sym_empty_literal] = ACTIONS(9764), + [sym_date_literal] = ACTIONS(9766), + [anon_sym_POUND] = ACTIONS(9764), + }, + [STATE(6534)] = { + [sym_identifier] = ACTIONS(9768), + [sym_newline] = ACTIONS(9770), + [anon_sym_COLON] = ACTIONS(9770), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9768), + [aux_sym_frm_property_statement_token1] = ACTIONS(9768), + [anon_sym_DOT] = ACTIONS(9768), + [anon_sym_BANG] = ACTIONS(9770), + [aux_sym__attribute_identifier_token1] = ACTIONS(9768), + [aux_sym_option_statement_token3] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9768), + [aux_sym_preprocessor_const_token1] = ACTIONS(9768), + [sym_static_modifier] = ACTIONS(9768), + [sym__dim_keyword] = ACTIONS(9768), + [sym__redim_keyword] = ACTIONS(9768), + [aux_sym_get_accessor_token1] = ACTIONS(9768), + [aux_sym_set_accessor_token1] = ACTIONS(9768), + [aux_sym_const_declaration_token1] = ACTIONS(9768), + [anon_sym_LPAREN] = ACTIONS(9770), + [aux_sym_as_type_clause_token2] = ACTIONS(9768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9768), + [aux_sym_visibility_token1] = ACTIONS(9768), + [aux_sym_visibility_token2] = ACTIONS(9768), + [aux_sym_elseif_fragment_token1] = ACTIONS(9768), + [aux_sym_else_fragment_token1] = ACTIONS(9768), + [aux_sym_select_statement_token1] = ACTIONS(9768), + [aux_sym__for_header_token1] = ACTIONS(9768), + [aux_sym_do_statement_token1] = ACTIONS(9768), + [aux_sym_do_statement_token2] = ACTIONS(9768), + [aux_sym_do_condition_token1] = ACTIONS(9768), + [aux_sym_with_statement_token1] = ACTIONS(9768), + [aux_sym_exit_statement_token1] = ACTIONS(9768), + [sym_end_statement] = ACTIONS(9770), + [aux_sym_on_goto_statement_token1] = ACTIONS(9768), + [aux_sym_on_goto_statement_token2] = ACTIONS(9768), + [aux_sym_on_error_statement_token2] = ACTIONS(9768), + [sym__ambiguous_redim_statement] = ACTIONS(9770), + [aux_sym_erase_statement_token1] = ACTIONS(9768), + [aux_sym_open_statement_token1] = ACTIONS(9768), + [aux_sym_file_mode_token2] = ACTIONS(9768), + [aux_sym_file_access_token2] = ACTIONS(9768), + [aux_sym_file_lock_token2] = ACTIONS(9768), + [aux_sym_print_statement_token1] = ACTIONS(9768), + [anon_sym_PLUS] = ACTIONS(9770), + [anon_sym_DASH] = ACTIONS(9768), + [anon_sym_QMARK] = ACTIONS(9770), + [aux_sym_close_statement_token1] = ACTIONS(9768), + [aux_sym_put_statement_token1] = ACTIONS(9768), + [aux_sym_unlock_statement_token1] = ACTIONS(9768), + [aux_sym_seek_statement_token1] = ACTIONS(9768), + [sym_reset_statement] = ACTIONS(9768), + [aux_sym_raise_event_statement_token1] = ACTIONS(9768), + [sym_stop_statement] = ACTIONS(9768), + [sym_beep_statement] = ACTIONS(9768), + [aux_sym_unload_statement_token1] = ACTIONS(9768), + [aux_sym_def_type_statement_token1] = ACTIONS(9768), + [aux_sym_def_type_statement_token2] = ACTIONS(9768), + [aux_sym_def_type_statement_token3] = ACTIONS(9768), + [aux_sym_def_type_statement_token4] = ACTIONS(9768), + [aux_sym_def_type_statement_token5] = ACTIONS(9768), + [aux_sym_def_type_statement_token6] = ACTIONS(9768), + [aux_sym_def_type_statement_token7] = ACTIONS(9768), + [aux_sym_def_type_statement_token8] = ACTIONS(9768), + [aux_sym_def_type_statement_token9] = ACTIONS(9768), + [aux_sym_def_type_statement_token10] = ACTIONS(9768), + [aux_sym_def_type_statement_token11] = ACTIONS(9768), + [aux_sym_def_type_statement_token12] = ACTIONS(9768), + [aux_sym_def_type_statement_token13] = ACTIONS(9768), + [aux_sym_def_type_statement_token14] = ACTIONS(9768), + [aux_sym_call_statement_token1] = ACTIONS(9768), + [sym__ambiguous_call_statement] = ACTIONS(9768), + [aux_sym_addressof_expression_token1] = ACTIONS(9768), + [aux_sym_type_of_expression_token1] = ACTIONS(9768), + [aux_sym_unary_expression_token1] = ACTIONS(9768), + [sym_string_literal] = ACTIONS(9770), + [sym_number_literal] = ACTIONS(9770), + [aux_sym_boolean_literal_token1] = ACTIONS(9768), + [aux_sym_boolean_literal_token2] = ACTIONS(9768), + [sym_nothing_literal] = ACTIONS(9768), + [sym_null_literal] = ACTIONS(9768), + [sym_empty_literal] = ACTIONS(9768), + [sym_date_literal] = ACTIONS(9770), + [anon_sym_POUND] = ACTIONS(9768), + }, + [STATE(6535)] = { + [sym_identifier] = ACTIONS(9374), + [sym_newline] = ACTIONS(9376), + [anon_sym_COLON] = ACTIONS(9376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9374), + [aux_sym_frm_property_statement_token1] = ACTIONS(9374), + [anon_sym_DOT] = ACTIONS(9374), + [anon_sym_BANG] = ACTIONS(9376), + [aux_sym__attribute_identifier_token1] = ACTIONS(9374), + [aux_sym_option_statement_token3] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9374), + [aux_sym_preprocessor_const_token1] = ACTIONS(9374), + [sym_static_modifier] = ACTIONS(9374), + [sym__dim_keyword] = ACTIONS(9374), + [sym__redim_keyword] = ACTIONS(9374), + [aux_sym_get_accessor_token1] = ACTIONS(9374), + [aux_sym_set_accessor_token1] = ACTIONS(9374), + [aux_sym_const_declaration_token1] = ACTIONS(9374), + [anon_sym_LPAREN] = ACTIONS(9376), + [aux_sym_as_type_clause_token2] = ACTIONS(9374), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9374), + [aux_sym_visibility_token1] = ACTIONS(9374), + [aux_sym_visibility_token2] = ACTIONS(9374), + [aux_sym_elseif_fragment_token1] = ACTIONS(9374), + [aux_sym_else_fragment_token1] = ACTIONS(9374), + [aux_sym_select_statement_token1] = ACTIONS(9374), + [aux_sym__for_header_token1] = ACTIONS(9374), + [aux_sym_do_statement_token1] = ACTIONS(9374), + [aux_sym_do_condition_token1] = ACTIONS(9374), + [aux_sym_while_statement_token1] = ACTIONS(9374), + [aux_sym_with_statement_token1] = ACTIONS(9374), + [aux_sym_exit_statement_token1] = ACTIONS(9374), + [sym_end_statement] = ACTIONS(9376), + [aux_sym_on_goto_statement_token1] = ACTIONS(9374), + [aux_sym_on_goto_statement_token2] = ACTIONS(9374), + [aux_sym_on_error_statement_token2] = ACTIONS(9374), + [sym__ambiguous_redim_statement] = ACTIONS(9376), + [aux_sym_erase_statement_token1] = ACTIONS(9374), + [aux_sym_open_statement_token1] = ACTIONS(9374), + [aux_sym_file_mode_token2] = ACTIONS(9374), + [aux_sym_file_access_token2] = ACTIONS(9374), + [aux_sym_file_lock_token2] = ACTIONS(9374), + [aux_sym_print_statement_token1] = ACTIONS(9374), + [anon_sym_PLUS] = ACTIONS(9376), + [anon_sym_DASH] = ACTIONS(9374), + [anon_sym_QMARK] = ACTIONS(9376), + [aux_sym_close_statement_token1] = ACTIONS(9374), + [aux_sym_put_statement_token1] = ACTIONS(9374), + [aux_sym_unlock_statement_token1] = ACTIONS(9374), + [aux_sym_seek_statement_token1] = ACTIONS(9374), + [sym_reset_statement] = ACTIONS(9374), + [aux_sym_raise_event_statement_token1] = ACTIONS(9374), + [sym_stop_statement] = ACTIONS(9374), + [sym_beep_statement] = ACTIONS(9374), + [aux_sym_unload_statement_token1] = ACTIONS(9374), + [aux_sym_def_type_statement_token1] = ACTIONS(9374), + [aux_sym_def_type_statement_token2] = ACTIONS(9374), + [aux_sym_def_type_statement_token3] = ACTIONS(9374), + [aux_sym_def_type_statement_token4] = ACTIONS(9374), + [aux_sym_def_type_statement_token5] = ACTIONS(9374), + [aux_sym_def_type_statement_token6] = ACTIONS(9374), + [aux_sym_def_type_statement_token7] = ACTIONS(9374), + [aux_sym_def_type_statement_token8] = ACTIONS(9374), + [aux_sym_def_type_statement_token9] = ACTIONS(9374), + [aux_sym_def_type_statement_token10] = ACTIONS(9374), + [aux_sym_def_type_statement_token11] = ACTIONS(9374), + [aux_sym_def_type_statement_token12] = ACTIONS(9374), + [aux_sym_def_type_statement_token13] = ACTIONS(9374), + [aux_sym_def_type_statement_token14] = ACTIONS(9374), + [aux_sym_call_statement_token1] = ACTIONS(9374), + [sym__ambiguous_call_statement] = ACTIONS(9374), + [aux_sym_addressof_expression_token1] = ACTIONS(9374), + [aux_sym_type_of_expression_token1] = ACTIONS(9374), + [aux_sym_unary_expression_token1] = ACTIONS(9374), + [sym_string_literal] = ACTIONS(9376), + [sym_number_literal] = ACTIONS(9376), + [aux_sym_boolean_literal_token1] = ACTIONS(9374), + [aux_sym_boolean_literal_token2] = ACTIONS(9374), + [sym_nothing_literal] = ACTIONS(9374), + [sym_null_literal] = ACTIONS(9374), + [sym_empty_literal] = ACTIONS(9374), + [sym_date_literal] = ACTIONS(9376), + [anon_sym_POUND] = ACTIONS(9374), + }, + [STATE(6536)] = { + [sym_identifier] = ACTIONS(9378), + [sym_newline] = ACTIONS(9380), + [anon_sym_COLON] = ACTIONS(9380), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9378), + [aux_sym_frm_property_statement_token1] = ACTIONS(9378), + [anon_sym_DOT] = ACTIONS(9378), + [anon_sym_BANG] = ACTIONS(9380), + [aux_sym__attribute_identifier_token1] = ACTIONS(9378), + [aux_sym_option_statement_token3] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9378), + [aux_sym_preprocessor_const_token1] = ACTIONS(9378), + [sym_static_modifier] = ACTIONS(9378), + [sym__dim_keyword] = ACTIONS(9378), + [sym__redim_keyword] = ACTIONS(9378), + [aux_sym_get_accessor_token1] = ACTIONS(9378), + [aux_sym_set_accessor_token1] = ACTIONS(9378), + [aux_sym_const_declaration_token1] = ACTIONS(9378), + [anon_sym_LPAREN] = ACTIONS(9380), + [aux_sym_as_type_clause_token2] = ACTIONS(9378), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9378), + [aux_sym_visibility_token1] = ACTIONS(9378), + [aux_sym_visibility_token2] = ACTIONS(9378), + [aux_sym_elseif_fragment_token1] = ACTIONS(9378), + [aux_sym_else_fragment_token1] = ACTIONS(9378), + [aux_sym_select_statement_token1] = ACTIONS(9378), + [aux_sym__for_header_token1] = ACTIONS(9378), + [aux_sym_do_statement_token1] = ACTIONS(9378), + [aux_sym_do_condition_token1] = ACTIONS(9378), + [aux_sym_while_statement_token1] = ACTIONS(9378), + [aux_sym_with_statement_token1] = ACTIONS(9378), + [aux_sym_exit_statement_token1] = ACTIONS(9378), + [sym_end_statement] = ACTIONS(9380), + [aux_sym_on_goto_statement_token1] = ACTIONS(9378), + [aux_sym_on_goto_statement_token2] = ACTIONS(9378), + [aux_sym_on_error_statement_token2] = ACTIONS(9378), + [sym__ambiguous_redim_statement] = ACTIONS(9380), + [aux_sym_erase_statement_token1] = ACTIONS(9378), + [aux_sym_open_statement_token1] = ACTIONS(9378), + [aux_sym_file_mode_token2] = ACTIONS(9378), + [aux_sym_file_access_token2] = ACTIONS(9378), + [aux_sym_file_lock_token2] = ACTIONS(9378), + [aux_sym_print_statement_token1] = ACTIONS(9378), + [anon_sym_PLUS] = ACTIONS(9380), + [anon_sym_DASH] = ACTIONS(9378), + [anon_sym_QMARK] = ACTIONS(9380), + [aux_sym_close_statement_token1] = ACTIONS(9378), + [aux_sym_put_statement_token1] = ACTIONS(9378), + [aux_sym_unlock_statement_token1] = ACTIONS(9378), + [aux_sym_seek_statement_token1] = ACTIONS(9378), + [sym_reset_statement] = ACTIONS(9378), + [aux_sym_raise_event_statement_token1] = ACTIONS(9378), + [sym_stop_statement] = ACTIONS(9378), + [sym_beep_statement] = ACTIONS(9378), + [aux_sym_unload_statement_token1] = ACTIONS(9378), + [aux_sym_def_type_statement_token1] = ACTIONS(9378), + [aux_sym_def_type_statement_token2] = ACTIONS(9378), + [aux_sym_def_type_statement_token3] = ACTIONS(9378), + [aux_sym_def_type_statement_token4] = ACTIONS(9378), + [aux_sym_def_type_statement_token5] = ACTIONS(9378), + [aux_sym_def_type_statement_token6] = ACTIONS(9378), + [aux_sym_def_type_statement_token7] = ACTIONS(9378), + [aux_sym_def_type_statement_token8] = ACTIONS(9378), + [aux_sym_def_type_statement_token9] = ACTIONS(9378), + [aux_sym_def_type_statement_token10] = ACTIONS(9378), + [aux_sym_def_type_statement_token11] = ACTIONS(9378), + [aux_sym_def_type_statement_token12] = ACTIONS(9378), + [aux_sym_def_type_statement_token13] = ACTIONS(9378), + [aux_sym_def_type_statement_token14] = ACTIONS(9378), + [aux_sym_call_statement_token1] = ACTIONS(9378), + [sym__ambiguous_call_statement] = ACTIONS(9378), + [aux_sym_addressof_expression_token1] = ACTIONS(9378), + [aux_sym_type_of_expression_token1] = ACTIONS(9378), + [aux_sym_unary_expression_token1] = ACTIONS(9378), + [sym_string_literal] = ACTIONS(9380), + [sym_number_literal] = ACTIONS(9380), + [aux_sym_boolean_literal_token1] = ACTIONS(9378), + [aux_sym_boolean_literal_token2] = ACTIONS(9378), + [sym_nothing_literal] = ACTIONS(9378), + [sym_null_literal] = ACTIONS(9378), + [sym_empty_literal] = ACTIONS(9378), + [sym_date_literal] = ACTIONS(9380), + [anon_sym_POUND] = ACTIONS(9378), + }, + [STATE(6537)] = { + [sym_identifier] = ACTIONS(8809), + [sym_newline] = ACTIONS(8811), + [anon_sym_COLON] = ACTIONS(8811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8809), + [aux_sym_frm_property_statement_token1] = ACTIONS(8809), + [anon_sym_DOT] = ACTIONS(8809), + [anon_sym_BANG] = ACTIONS(8811), + [aux_sym__attribute_identifier_token1] = ACTIONS(8809), + [aux_sym_option_statement_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8809), + [aux_sym_preprocessor_const_token1] = ACTIONS(8809), + [sym_static_modifier] = ACTIONS(8809), + [sym__dim_keyword] = ACTIONS(8809), + [sym__redim_keyword] = ACTIONS(8809), + [aux_sym_get_accessor_token1] = ACTIONS(8809), + [aux_sym_set_accessor_token1] = ACTIONS(8809), + [aux_sym_const_declaration_token1] = ACTIONS(8809), + [anon_sym_LPAREN] = ACTIONS(8811), + [aux_sym_as_type_clause_token2] = ACTIONS(8809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8809), + [aux_sym_visibility_token1] = ACTIONS(8809), + [aux_sym_visibility_token2] = ACTIONS(8809), + [aux_sym_elseif_fragment_token1] = ACTIONS(8809), + [aux_sym_else_fragment_token1] = ACTIONS(8809), + [aux_sym_select_statement_token1] = ACTIONS(8809), + [aux_sym__for_header_token1] = ACTIONS(8809), + [aux_sym_do_statement_token1] = ACTIONS(8809), + [aux_sym_do_condition_token1] = ACTIONS(8809), + [aux_sym_with_statement_token1] = ACTIONS(8809), + [aux_sym_exit_statement_token1] = ACTIONS(8809), + [sym_end_statement] = ACTIONS(8811), + [aux_sym_on_goto_statement_token1] = ACTIONS(8809), + [aux_sym_on_goto_statement_token2] = ACTIONS(8809), + [aux_sym_on_error_statement_token2] = ACTIONS(8809), + [sym__ambiguous_redim_statement] = ACTIONS(8811), + [aux_sym_erase_statement_token1] = ACTIONS(8809), + [aux_sym_open_statement_token1] = ACTIONS(8809), + [aux_sym_file_mode_token2] = ACTIONS(8809), + [aux_sym_file_access_token2] = ACTIONS(8809), + [aux_sym_file_lock_token2] = ACTIONS(8809), + [aux_sym_print_statement_token1] = ACTIONS(8809), + [anon_sym_PLUS] = ACTIONS(8811), + [anon_sym_DASH] = ACTIONS(8809), + [anon_sym_QMARK] = ACTIONS(8811), + [aux_sym_close_statement_token1] = ACTIONS(8809), + [aux_sym_put_statement_token1] = ACTIONS(8809), + [aux_sym_unlock_statement_token1] = ACTIONS(8809), + [aux_sym_seek_statement_token1] = ACTIONS(8809), + [sym_reset_statement] = ACTIONS(8809), + [aux_sym_raise_event_statement_token1] = ACTIONS(8809), + [sym_stop_statement] = ACTIONS(8809), + [sym_beep_statement] = ACTIONS(8809), + [aux_sym_unload_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token2] = ACTIONS(8809), + [aux_sym_def_type_statement_token3] = ACTIONS(8809), + [aux_sym_def_type_statement_token4] = ACTIONS(8809), + [aux_sym_def_type_statement_token5] = ACTIONS(8809), + [aux_sym_def_type_statement_token6] = ACTIONS(8809), + [aux_sym_def_type_statement_token7] = ACTIONS(8809), + [aux_sym_def_type_statement_token8] = ACTIONS(8809), + [aux_sym_def_type_statement_token9] = ACTIONS(8809), + [aux_sym_def_type_statement_token10] = ACTIONS(8809), + [aux_sym_def_type_statement_token11] = ACTIONS(8809), + [aux_sym_def_type_statement_token12] = ACTIONS(8809), + [aux_sym_def_type_statement_token13] = ACTIONS(8809), + [aux_sym_def_type_statement_token14] = ACTIONS(8809), + [aux_sym_call_statement_token1] = ACTIONS(8809), + [sym__ambiguous_call_statement] = ACTIONS(8809), + [aux_sym_addressof_expression_token1] = ACTIONS(8809), + [aux_sym_type_of_expression_token1] = ACTIONS(8809), + [aux_sym_unary_expression_token1] = ACTIONS(8809), + [sym_string_literal] = ACTIONS(8811), + [sym_number_literal] = ACTIONS(8811), + [aux_sym_boolean_literal_token1] = ACTIONS(8809), + [aux_sym_boolean_literal_token2] = ACTIONS(8809), + [sym_nothing_literal] = ACTIONS(8809), + [sym_null_literal] = ACTIONS(8809), + [sym_empty_literal] = ACTIONS(8809), + [sym_date_literal] = ACTIONS(8811), + [anon_sym_POUND] = ACTIONS(8809), + }, + [STATE(6538)] = { + [sym_identifier] = ACTIONS(8877), + [sym_newline] = ACTIONS(8879), + [anon_sym_COLON] = ACTIONS(8879), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8877), + [aux_sym_frm_property_statement_token1] = ACTIONS(8877), + [anon_sym_DOT] = ACTIONS(8877), + [anon_sym_BANG] = ACTIONS(8879), + [aux_sym__attribute_identifier_token1] = ACTIONS(8877), + [aux_sym_option_statement_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8877), + [aux_sym_preprocessor_const_token1] = ACTIONS(8877), + [sym_static_modifier] = ACTIONS(8877), + [sym__dim_keyword] = ACTIONS(8877), + [sym__redim_keyword] = ACTIONS(8877), + [aux_sym_get_accessor_token1] = ACTIONS(8877), + [aux_sym_set_accessor_token1] = ACTIONS(8877), + [aux_sym_const_declaration_token1] = ACTIONS(8877), + [anon_sym_LPAREN] = ACTIONS(8879), + [aux_sym_as_type_clause_token2] = ACTIONS(8877), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8877), + [aux_sym_visibility_token1] = ACTIONS(8877), + [aux_sym_visibility_token2] = ACTIONS(8877), + [aux_sym_elseif_fragment_token1] = ACTIONS(8877), + [aux_sym_else_fragment_token1] = ACTIONS(8877), + [aux_sym_select_statement_token1] = ACTIONS(8877), + [aux_sym__for_header_token1] = ACTIONS(8877), + [aux_sym_do_statement_token1] = ACTIONS(8877), + [aux_sym_do_condition_token1] = ACTIONS(8877), + [aux_sym_with_statement_token1] = ACTIONS(8877), + [aux_sym_exit_statement_token1] = ACTIONS(8877), + [sym_end_statement] = ACTIONS(8879), + [aux_sym_on_goto_statement_token1] = ACTIONS(8877), + [aux_sym_on_goto_statement_token2] = ACTIONS(8877), + [aux_sym_on_error_statement_token2] = ACTIONS(8877), + [sym__ambiguous_redim_statement] = ACTIONS(8879), + [aux_sym_erase_statement_token1] = ACTIONS(8877), + [aux_sym_open_statement_token1] = ACTIONS(8877), + [aux_sym_file_mode_token2] = ACTIONS(8877), + [aux_sym_file_access_token2] = ACTIONS(8877), + [aux_sym_file_lock_token2] = ACTIONS(8877), + [aux_sym_print_statement_token1] = ACTIONS(8877), + [anon_sym_PLUS] = ACTIONS(8879), + [anon_sym_DASH] = ACTIONS(8877), + [anon_sym_QMARK] = ACTIONS(8879), + [aux_sym_close_statement_token1] = ACTIONS(8877), + [aux_sym_put_statement_token1] = ACTIONS(8877), + [aux_sym_unlock_statement_token1] = ACTIONS(8877), + [aux_sym_seek_statement_token1] = ACTIONS(8877), + [sym_reset_statement] = ACTIONS(8877), + [aux_sym_raise_event_statement_token1] = ACTIONS(8877), + [sym_stop_statement] = ACTIONS(8877), + [sym_beep_statement] = ACTIONS(8877), + [aux_sym_unload_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token2] = ACTIONS(8877), + [aux_sym_def_type_statement_token3] = ACTIONS(8877), + [aux_sym_def_type_statement_token4] = ACTIONS(8877), + [aux_sym_def_type_statement_token5] = ACTIONS(8877), + [aux_sym_def_type_statement_token6] = ACTIONS(8877), + [aux_sym_def_type_statement_token7] = ACTIONS(8877), + [aux_sym_def_type_statement_token8] = ACTIONS(8877), + [aux_sym_def_type_statement_token9] = ACTIONS(8877), + [aux_sym_def_type_statement_token10] = ACTIONS(8877), + [aux_sym_def_type_statement_token11] = ACTIONS(8877), + [aux_sym_def_type_statement_token12] = ACTIONS(8877), + [aux_sym_def_type_statement_token13] = ACTIONS(8877), + [aux_sym_def_type_statement_token14] = ACTIONS(8877), + [aux_sym_call_statement_token1] = ACTIONS(8877), + [sym__ambiguous_call_statement] = ACTIONS(8877), + [aux_sym_addressof_expression_token1] = ACTIONS(8877), + [aux_sym_type_of_expression_token1] = ACTIONS(8877), + [aux_sym_unary_expression_token1] = ACTIONS(8877), + [sym_string_literal] = ACTIONS(8879), + [sym_number_literal] = ACTIONS(8879), + [aux_sym_boolean_literal_token1] = ACTIONS(8877), + [aux_sym_boolean_literal_token2] = ACTIONS(8877), + [sym_nothing_literal] = ACTIONS(8877), + [sym_null_literal] = ACTIONS(8877), + [sym_empty_literal] = ACTIONS(8877), + [sym_date_literal] = ACTIONS(8879), + [anon_sym_POUND] = ACTIONS(8877), + }, + [STATE(6539)] = { + [sym_identifier] = ACTIONS(8907), + [sym_newline] = ACTIONS(8909), + [anon_sym_COLON] = ACTIONS(8909), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8907), + [aux_sym_frm_property_statement_token1] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8907), + [anon_sym_BANG] = ACTIONS(8909), + [aux_sym__attribute_identifier_token1] = ACTIONS(8907), + [aux_sym_option_statement_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8907), + [aux_sym_preprocessor_const_token1] = ACTIONS(8907), + [sym_static_modifier] = ACTIONS(8907), + [sym__dim_keyword] = ACTIONS(8907), + [sym__redim_keyword] = ACTIONS(8907), + [aux_sym_get_accessor_token1] = ACTIONS(8907), + [aux_sym_set_accessor_token1] = ACTIONS(8907), + [aux_sym_const_declaration_token1] = ACTIONS(8907), + [anon_sym_LPAREN] = ACTIONS(8909), + [aux_sym_as_type_clause_token2] = ACTIONS(8907), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8907), + [aux_sym_visibility_token1] = ACTIONS(8907), + [aux_sym_visibility_token2] = ACTIONS(8907), + [aux_sym_elseif_fragment_token1] = ACTIONS(8907), + [aux_sym_else_fragment_token1] = ACTIONS(8907), + [aux_sym_select_statement_token1] = ACTIONS(8907), + [aux_sym__for_header_token1] = ACTIONS(8907), + [aux_sym_do_statement_token1] = ACTIONS(8907), + [aux_sym_do_condition_token1] = ACTIONS(8907), + [aux_sym_with_statement_token1] = ACTIONS(8907), + [aux_sym_exit_statement_token1] = ACTIONS(8907), + [sym_end_statement] = ACTIONS(8909), + [aux_sym_on_goto_statement_token1] = ACTIONS(8907), + [aux_sym_on_goto_statement_token2] = ACTIONS(8907), + [aux_sym_on_error_statement_token2] = ACTIONS(8907), + [sym__ambiguous_redim_statement] = ACTIONS(8909), + [aux_sym_erase_statement_token1] = ACTIONS(8907), + [aux_sym_open_statement_token1] = ACTIONS(8907), + [aux_sym_file_mode_token2] = ACTIONS(8907), + [aux_sym_file_access_token2] = ACTIONS(8907), + [aux_sym_file_lock_token2] = ACTIONS(8907), + [aux_sym_print_statement_token1] = ACTIONS(8907), + [anon_sym_PLUS] = ACTIONS(8909), + [anon_sym_DASH] = ACTIONS(8907), + [anon_sym_QMARK] = ACTIONS(8909), + [aux_sym_close_statement_token1] = ACTIONS(8907), + [aux_sym_put_statement_token1] = ACTIONS(8907), + [aux_sym_unlock_statement_token1] = ACTIONS(8907), + [aux_sym_seek_statement_token1] = ACTIONS(8907), + [sym_reset_statement] = ACTIONS(8907), + [aux_sym_raise_event_statement_token1] = ACTIONS(8907), + [sym_stop_statement] = ACTIONS(8907), + [sym_beep_statement] = ACTIONS(8907), + [aux_sym_unload_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token2] = ACTIONS(8907), + [aux_sym_def_type_statement_token3] = ACTIONS(8907), + [aux_sym_def_type_statement_token4] = ACTIONS(8907), + [aux_sym_def_type_statement_token5] = ACTIONS(8907), + [aux_sym_def_type_statement_token6] = ACTIONS(8907), + [aux_sym_def_type_statement_token7] = ACTIONS(8907), + [aux_sym_def_type_statement_token8] = ACTIONS(8907), + [aux_sym_def_type_statement_token9] = ACTIONS(8907), + [aux_sym_def_type_statement_token10] = ACTIONS(8907), + [aux_sym_def_type_statement_token11] = ACTIONS(8907), + [aux_sym_def_type_statement_token12] = ACTIONS(8907), + [aux_sym_def_type_statement_token13] = ACTIONS(8907), + [aux_sym_def_type_statement_token14] = ACTIONS(8907), + [aux_sym_call_statement_token1] = ACTIONS(8907), + [sym__ambiguous_call_statement] = ACTIONS(8907), + [aux_sym_addressof_expression_token1] = ACTIONS(8907), + [aux_sym_type_of_expression_token1] = ACTIONS(8907), + [aux_sym_unary_expression_token1] = ACTIONS(8907), + [sym_string_literal] = ACTIONS(8909), + [sym_number_literal] = ACTIONS(8909), + [aux_sym_boolean_literal_token1] = ACTIONS(8907), + [aux_sym_boolean_literal_token2] = ACTIONS(8907), + [sym_nothing_literal] = ACTIONS(8907), + [sym_null_literal] = ACTIONS(8907), + [sym_empty_literal] = ACTIONS(8907), + [sym_date_literal] = ACTIONS(8909), + [anon_sym_POUND] = ACTIONS(8907), + }, + [STATE(6540)] = { + [sym_identifier] = ACTIONS(8927), + [sym_newline] = ACTIONS(8929), + [anon_sym_COLON] = ACTIONS(8929), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8927), + [aux_sym_frm_property_statement_token1] = ACTIONS(8927), + [anon_sym_DOT] = ACTIONS(8927), + [anon_sym_BANG] = ACTIONS(8929), + [aux_sym__attribute_identifier_token1] = ACTIONS(8927), + [aux_sym_option_statement_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8927), + [aux_sym_preprocessor_const_token1] = ACTIONS(8927), + [sym_static_modifier] = ACTIONS(8927), + [sym__dim_keyword] = ACTIONS(8927), + [sym__redim_keyword] = ACTIONS(8927), + [aux_sym_get_accessor_token1] = ACTIONS(8927), + [aux_sym_set_accessor_token1] = ACTIONS(8927), + [aux_sym_const_declaration_token1] = ACTIONS(8927), + [anon_sym_LPAREN] = ACTIONS(8929), + [aux_sym_as_type_clause_token2] = ACTIONS(8927), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8927), + [aux_sym_visibility_token1] = ACTIONS(8927), + [aux_sym_visibility_token2] = ACTIONS(8927), + [aux_sym_elseif_fragment_token1] = ACTIONS(8927), + [aux_sym_else_fragment_token1] = ACTIONS(8927), + [aux_sym_select_statement_token1] = ACTIONS(8927), + [aux_sym__for_header_token1] = ACTIONS(8927), + [aux_sym_do_statement_token1] = ACTIONS(8927), + [aux_sym_do_condition_token1] = ACTIONS(8927), + [aux_sym_with_statement_token1] = ACTIONS(8927), + [aux_sym_exit_statement_token1] = ACTIONS(8927), + [sym_end_statement] = ACTIONS(8929), + [aux_sym_on_goto_statement_token1] = ACTIONS(8927), + [aux_sym_on_goto_statement_token2] = ACTIONS(8927), + [aux_sym_on_error_statement_token2] = ACTIONS(8927), + [sym__ambiguous_redim_statement] = ACTIONS(8929), + [aux_sym_erase_statement_token1] = ACTIONS(8927), + [aux_sym_open_statement_token1] = ACTIONS(8927), + [aux_sym_file_mode_token2] = ACTIONS(8927), + [aux_sym_file_access_token2] = ACTIONS(8927), + [aux_sym_file_lock_token2] = ACTIONS(8927), + [aux_sym_print_statement_token1] = ACTIONS(8927), + [anon_sym_PLUS] = ACTIONS(8929), + [anon_sym_DASH] = ACTIONS(8927), + [anon_sym_QMARK] = ACTIONS(8929), + [aux_sym_close_statement_token1] = ACTIONS(8927), + [aux_sym_put_statement_token1] = ACTIONS(8927), + [aux_sym_unlock_statement_token1] = ACTIONS(8927), + [aux_sym_seek_statement_token1] = ACTIONS(8927), + [sym_reset_statement] = ACTIONS(8927), + [aux_sym_raise_event_statement_token1] = ACTIONS(8927), + [sym_stop_statement] = ACTIONS(8927), + [sym_beep_statement] = ACTIONS(8927), + [aux_sym_unload_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token2] = ACTIONS(8927), + [aux_sym_def_type_statement_token3] = ACTIONS(8927), + [aux_sym_def_type_statement_token4] = ACTIONS(8927), + [aux_sym_def_type_statement_token5] = ACTIONS(8927), + [aux_sym_def_type_statement_token6] = ACTIONS(8927), + [aux_sym_def_type_statement_token7] = ACTIONS(8927), + [aux_sym_def_type_statement_token8] = ACTIONS(8927), + [aux_sym_def_type_statement_token9] = ACTIONS(8927), + [aux_sym_def_type_statement_token10] = ACTIONS(8927), + [aux_sym_def_type_statement_token11] = ACTIONS(8927), + [aux_sym_def_type_statement_token12] = ACTIONS(8927), + [aux_sym_def_type_statement_token13] = ACTIONS(8927), + [aux_sym_def_type_statement_token14] = ACTIONS(8927), + [aux_sym_call_statement_token1] = ACTIONS(8927), + [sym__ambiguous_call_statement] = ACTIONS(8927), + [aux_sym_addressof_expression_token1] = ACTIONS(8927), + [aux_sym_type_of_expression_token1] = ACTIONS(8927), + [aux_sym_unary_expression_token1] = ACTIONS(8927), + [sym_string_literal] = ACTIONS(8929), + [sym_number_literal] = ACTIONS(8929), + [aux_sym_boolean_literal_token1] = ACTIONS(8927), + [aux_sym_boolean_literal_token2] = ACTIONS(8927), + [sym_nothing_literal] = ACTIONS(8927), + [sym_null_literal] = ACTIONS(8927), + [sym_empty_literal] = ACTIONS(8927), + [sym_date_literal] = ACTIONS(8929), + [anon_sym_POUND] = ACTIONS(8927), + }, + [STATE(6541)] = { + [sym_identifier] = ACTIONS(8931), + [sym_newline] = ACTIONS(8933), + [anon_sym_COLON] = ACTIONS(8933), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8931), + [aux_sym_frm_property_statement_token1] = ACTIONS(8931), + [anon_sym_DOT] = ACTIONS(8931), + [anon_sym_BANG] = ACTIONS(8933), + [aux_sym__attribute_identifier_token1] = ACTIONS(8931), + [aux_sym_option_statement_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8931), + [aux_sym_preprocessor_const_token1] = ACTIONS(8931), + [sym_static_modifier] = ACTIONS(8931), + [sym__dim_keyword] = ACTIONS(8931), + [sym__redim_keyword] = ACTIONS(8931), + [aux_sym_get_accessor_token1] = ACTIONS(8931), + [aux_sym_set_accessor_token1] = ACTIONS(8931), + [aux_sym_const_declaration_token1] = ACTIONS(8931), + [anon_sym_LPAREN] = ACTIONS(8933), + [aux_sym_as_type_clause_token2] = ACTIONS(8931), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8931), + [aux_sym_visibility_token1] = ACTIONS(8931), + [aux_sym_visibility_token2] = ACTIONS(8931), + [aux_sym_elseif_fragment_token1] = ACTIONS(8931), + [aux_sym_else_fragment_token1] = ACTIONS(8931), + [aux_sym_select_statement_token1] = ACTIONS(8931), + [aux_sym__for_header_token1] = ACTIONS(8931), + [aux_sym_do_statement_token1] = ACTIONS(8931), + [aux_sym_do_condition_token1] = ACTIONS(8931), + [aux_sym_with_statement_token1] = ACTIONS(8931), + [aux_sym_exit_statement_token1] = ACTIONS(8931), + [sym_end_statement] = ACTIONS(8933), + [aux_sym_on_goto_statement_token1] = ACTIONS(8931), + [aux_sym_on_goto_statement_token2] = ACTIONS(8931), + [aux_sym_on_error_statement_token2] = ACTIONS(8931), + [sym__ambiguous_redim_statement] = ACTIONS(8933), + [aux_sym_erase_statement_token1] = ACTIONS(8931), + [aux_sym_open_statement_token1] = ACTIONS(8931), + [aux_sym_file_mode_token2] = ACTIONS(8931), + [aux_sym_file_access_token2] = ACTIONS(8931), + [aux_sym_file_lock_token2] = ACTIONS(8931), + [aux_sym_print_statement_token1] = ACTIONS(8931), + [anon_sym_PLUS] = ACTIONS(8933), + [anon_sym_DASH] = ACTIONS(8931), + [anon_sym_QMARK] = ACTIONS(8933), + [aux_sym_close_statement_token1] = ACTIONS(8931), + [aux_sym_put_statement_token1] = ACTIONS(8931), + [aux_sym_unlock_statement_token1] = ACTIONS(8931), + [aux_sym_seek_statement_token1] = ACTIONS(8931), + [sym_reset_statement] = ACTIONS(8931), + [aux_sym_raise_event_statement_token1] = ACTIONS(8931), + [sym_stop_statement] = ACTIONS(8931), + [sym_beep_statement] = ACTIONS(8931), + [aux_sym_unload_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token2] = ACTIONS(8931), + [aux_sym_def_type_statement_token3] = ACTIONS(8931), + [aux_sym_def_type_statement_token4] = ACTIONS(8931), + [aux_sym_def_type_statement_token5] = ACTIONS(8931), + [aux_sym_def_type_statement_token6] = ACTIONS(8931), + [aux_sym_def_type_statement_token7] = ACTIONS(8931), + [aux_sym_def_type_statement_token8] = ACTIONS(8931), + [aux_sym_def_type_statement_token9] = ACTIONS(8931), + [aux_sym_def_type_statement_token10] = ACTIONS(8931), + [aux_sym_def_type_statement_token11] = ACTIONS(8931), + [aux_sym_def_type_statement_token12] = ACTIONS(8931), + [aux_sym_def_type_statement_token13] = ACTIONS(8931), + [aux_sym_def_type_statement_token14] = ACTIONS(8931), + [aux_sym_call_statement_token1] = ACTIONS(8931), + [sym__ambiguous_call_statement] = ACTIONS(8931), + [aux_sym_addressof_expression_token1] = ACTIONS(8931), + [aux_sym_type_of_expression_token1] = ACTIONS(8931), + [aux_sym_unary_expression_token1] = ACTIONS(8931), + [sym_string_literal] = ACTIONS(8933), + [sym_number_literal] = ACTIONS(8933), + [aux_sym_boolean_literal_token1] = ACTIONS(8931), + [aux_sym_boolean_literal_token2] = ACTIONS(8931), + [sym_nothing_literal] = ACTIONS(8931), + [sym_null_literal] = ACTIONS(8931), + [sym_empty_literal] = ACTIONS(8931), + [sym_date_literal] = ACTIONS(8933), + [anon_sym_POUND] = ACTIONS(8931), + }, + [STATE(6542)] = { + [sym_identifier] = ACTIONS(9000), + [sym_newline] = ACTIONS(9002), + [anon_sym_COLON] = ACTIONS(9002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9000), + [aux_sym_frm_property_statement_token1] = ACTIONS(9000), + [anon_sym_DOT] = ACTIONS(9000), + [anon_sym_BANG] = ACTIONS(9002), + [aux_sym__attribute_identifier_token1] = ACTIONS(9000), + [aux_sym_option_statement_token3] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9000), + [aux_sym_preprocessor_const_token1] = ACTIONS(9000), + [sym_static_modifier] = ACTIONS(9000), + [sym__dim_keyword] = ACTIONS(9000), + [sym__redim_keyword] = ACTIONS(9000), + [aux_sym_get_accessor_token1] = ACTIONS(9000), + [aux_sym_set_accessor_token1] = ACTIONS(9000), + [aux_sym_const_declaration_token1] = ACTIONS(9000), + [anon_sym_LPAREN] = ACTIONS(9002), + [aux_sym_as_type_clause_token2] = ACTIONS(9000), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9000), + [aux_sym_visibility_token1] = ACTIONS(9000), + [aux_sym_visibility_token2] = ACTIONS(9000), + [aux_sym_elseif_fragment_token1] = ACTIONS(9000), + [aux_sym_else_fragment_token1] = ACTIONS(9000), + [aux_sym_select_statement_token1] = ACTIONS(9000), + [aux_sym__for_header_token1] = ACTIONS(9000), + [aux_sym_do_statement_token1] = ACTIONS(9000), + [aux_sym_do_condition_token1] = ACTIONS(9000), + [aux_sym_with_statement_token1] = ACTIONS(9000), + [aux_sym_exit_statement_token1] = ACTIONS(9000), + [sym_end_statement] = ACTIONS(9002), + [aux_sym_on_goto_statement_token1] = ACTIONS(9000), + [aux_sym_on_goto_statement_token2] = ACTIONS(9000), + [aux_sym_on_error_statement_token2] = ACTIONS(9000), + [sym__ambiguous_redim_statement] = ACTIONS(9002), + [aux_sym_erase_statement_token1] = ACTIONS(9000), + [aux_sym_open_statement_token1] = ACTIONS(9000), + [aux_sym_file_mode_token2] = ACTIONS(9000), + [aux_sym_file_access_token2] = ACTIONS(9000), + [aux_sym_file_lock_token2] = ACTIONS(9000), + [aux_sym_print_statement_token1] = ACTIONS(9000), + [anon_sym_PLUS] = ACTIONS(9002), + [anon_sym_DASH] = ACTIONS(9000), + [anon_sym_QMARK] = ACTIONS(9002), + [aux_sym_close_statement_token1] = ACTIONS(9000), + [aux_sym_put_statement_token1] = ACTIONS(9000), + [aux_sym_unlock_statement_token1] = ACTIONS(9000), + [aux_sym_seek_statement_token1] = ACTIONS(9000), + [sym_reset_statement] = ACTIONS(9000), + [aux_sym_raise_event_statement_token1] = ACTIONS(9000), + [sym_stop_statement] = ACTIONS(9000), + [sym_beep_statement] = ACTIONS(9000), + [aux_sym_unload_statement_token1] = ACTIONS(9000), + [aux_sym_def_type_statement_token1] = ACTIONS(9000), + [aux_sym_def_type_statement_token2] = ACTIONS(9000), + [aux_sym_def_type_statement_token3] = ACTIONS(9000), + [aux_sym_def_type_statement_token4] = ACTIONS(9000), + [aux_sym_def_type_statement_token5] = ACTIONS(9000), + [aux_sym_def_type_statement_token6] = ACTIONS(9000), + [aux_sym_def_type_statement_token7] = ACTIONS(9000), + [aux_sym_def_type_statement_token8] = ACTIONS(9000), + [aux_sym_def_type_statement_token9] = ACTIONS(9000), + [aux_sym_def_type_statement_token10] = ACTIONS(9000), + [aux_sym_def_type_statement_token11] = ACTIONS(9000), + [aux_sym_def_type_statement_token12] = ACTIONS(9000), + [aux_sym_def_type_statement_token13] = ACTIONS(9000), + [aux_sym_def_type_statement_token14] = ACTIONS(9000), + [aux_sym_call_statement_token1] = ACTIONS(9000), + [sym__ambiguous_call_statement] = ACTIONS(9000), + [aux_sym_addressof_expression_token1] = ACTIONS(9000), + [aux_sym_type_of_expression_token1] = ACTIONS(9000), + [aux_sym_unary_expression_token1] = ACTIONS(9000), + [sym_string_literal] = ACTIONS(9002), + [sym_number_literal] = ACTIONS(9002), + [aux_sym_boolean_literal_token1] = ACTIONS(9000), + [aux_sym_boolean_literal_token2] = ACTIONS(9000), + [sym_nothing_literal] = ACTIONS(9000), + [sym_null_literal] = ACTIONS(9000), + [sym_empty_literal] = ACTIONS(9000), + [sym_date_literal] = ACTIONS(9002), + [anon_sym_POUND] = ACTIONS(9000), + }, + [STATE(6543)] = { + [sym_identifier] = ACTIONS(9004), + [sym_newline] = ACTIONS(9006), + [anon_sym_COLON] = ACTIONS(9006), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9004), + [aux_sym_frm_property_statement_token1] = ACTIONS(9004), + [anon_sym_DOT] = ACTIONS(9004), + [anon_sym_BANG] = ACTIONS(9006), + [aux_sym__attribute_identifier_token1] = ACTIONS(9004), + [aux_sym_option_statement_token3] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9004), + [aux_sym_preprocessor_const_token1] = ACTIONS(9004), + [sym_static_modifier] = ACTIONS(9004), + [sym__dim_keyword] = ACTIONS(9004), + [sym__redim_keyword] = ACTIONS(9004), + [aux_sym_get_accessor_token1] = ACTIONS(9004), + [aux_sym_set_accessor_token1] = ACTIONS(9004), + [aux_sym_const_declaration_token1] = ACTIONS(9004), + [anon_sym_LPAREN] = ACTIONS(9006), + [aux_sym_as_type_clause_token2] = ACTIONS(9004), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9004), + [aux_sym_visibility_token1] = ACTIONS(9004), + [aux_sym_visibility_token2] = ACTIONS(9004), + [aux_sym_elseif_fragment_token1] = ACTIONS(9004), + [aux_sym_else_fragment_token1] = ACTIONS(9004), + [aux_sym_select_statement_token1] = ACTIONS(9004), + [aux_sym__for_header_token1] = ACTIONS(9004), + [aux_sym_do_statement_token1] = ACTIONS(9004), + [aux_sym_do_condition_token1] = ACTIONS(9004), + [aux_sym_with_statement_token1] = ACTIONS(9004), + [aux_sym_exit_statement_token1] = ACTIONS(9004), + [sym_end_statement] = ACTIONS(9006), + [aux_sym_on_goto_statement_token1] = ACTIONS(9004), + [aux_sym_on_goto_statement_token2] = ACTIONS(9004), + [aux_sym_on_error_statement_token2] = ACTIONS(9004), + [sym__ambiguous_redim_statement] = ACTIONS(9006), + [aux_sym_erase_statement_token1] = ACTIONS(9004), + [aux_sym_open_statement_token1] = ACTIONS(9004), + [aux_sym_file_mode_token2] = ACTIONS(9004), + [aux_sym_file_access_token2] = ACTIONS(9004), + [aux_sym_file_lock_token2] = ACTIONS(9004), + [aux_sym_print_statement_token1] = ACTIONS(9004), + [anon_sym_PLUS] = ACTIONS(9006), + [anon_sym_DASH] = ACTIONS(9004), + [anon_sym_QMARK] = ACTIONS(9006), + [aux_sym_close_statement_token1] = ACTIONS(9004), + [aux_sym_put_statement_token1] = ACTIONS(9004), + [aux_sym_unlock_statement_token1] = ACTIONS(9004), + [aux_sym_seek_statement_token1] = ACTIONS(9004), + [sym_reset_statement] = ACTIONS(9004), + [aux_sym_raise_event_statement_token1] = ACTIONS(9004), + [sym_stop_statement] = ACTIONS(9004), + [sym_beep_statement] = ACTIONS(9004), + [aux_sym_unload_statement_token1] = ACTIONS(9004), + [aux_sym_def_type_statement_token1] = ACTIONS(9004), + [aux_sym_def_type_statement_token2] = ACTIONS(9004), + [aux_sym_def_type_statement_token3] = ACTIONS(9004), + [aux_sym_def_type_statement_token4] = ACTIONS(9004), + [aux_sym_def_type_statement_token5] = ACTIONS(9004), + [aux_sym_def_type_statement_token6] = ACTIONS(9004), + [aux_sym_def_type_statement_token7] = ACTIONS(9004), + [aux_sym_def_type_statement_token8] = ACTIONS(9004), + [aux_sym_def_type_statement_token9] = ACTIONS(9004), + [aux_sym_def_type_statement_token10] = ACTIONS(9004), + [aux_sym_def_type_statement_token11] = ACTIONS(9004), + [aux_sym_def_type_statement_token12] = ACTIONS(9004), + [aux_sym_def_type_statement_token13] = ACTIONS(9004), + [aux_sym_def_type_statement_token14] = ACTIONS(9004), + [aux_sym_call_statement_token1] = ACTIONS(9004), + [sym__ambiguous_call_statement] = ACTIONS(9004), + [aux_sym_addressof_expression_token1] = ACTIONS(9004), + [aux_sym_type_of_expression_token1] = ACTIONS(9004), + [aux_sym_unary_expression_token1] = ACTIONS(9004), + [sym_string_literal] = ACTIONS(9006), + [sym_number_literal] = ACTIONS(9006), + [aux_sym_boolean_literal_token1] = ACTIONS(9004), + [aux_sym_boolean_literal_token2] = ACTIONS(9004), + [sym_nothing_literal] = ACTIONS(9004), + [sym_null_literal] = ACTIONS(9004), + [sym_empty_literal] = ACTIONS(9004), + [sym_date_literal] = ACTIONS(9006), + [anon_sym_POUND] = ACTIONS(9004), + }, + [STATE(6544)] = { + [sym_identifier] = ACTIONS(9122), + [sym_newline] = ACTIONS(9124), + [anon_sym_COLON] = ACTIONS(9124), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9122), + [aux_sym_frm_property_statement_token1] = ACTIONS(9122), + [anon_sym_DOT] = ACTIONS(9122), + [anon_sym_BANG] = ACTIONS(9124), + [aux_sym__attribute_identifier_token1] = ACTIONS(9122), + [aux_sym_option_statement_token3] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9122), + [aux_sym_preprocessor_const_token1] = ACTIONS(9122), + [sym_static_modifier] = ACTIONS(9122), + [sym__dim_keyword] = ACTIONS(9122), + [sym__redim_keyword] = ACTIONS(9122), + [aux_sym_get_accessor_token1] = ACTIONS(9122), + [aux_sym_set_accessor_token1] = ACTIONS(9122), + [aux_sym_const_declaration_token1] = ACTIONS(9122), + [anon_sym_LPAREN] = ACTIONS(9124), + [aux_sym_as_type_clause_token2] = ACTIONS(9122), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9122), + [aux_sym_visibility_token1] = ACTIONS(9122), + [aux_sym_visibility_token2] = ACTIONS(9122), + [aux_sym_elseif_fragment_token1] = ACTIONS(9122), + [aux_sym_else_fragment_token1] = ACTIONS(9122), + [aux_sym_select_statement_token1] = ACTIONS(9122), + [aux_sym__for_header_token1] = ACTIONS(9122), + [aux_sym_do_statement_token1] = ACTIONS(9122), + [aux_sym_do_statement_token2] = ACTIONS(9122), + [aux_sym_do_condition_token1] = ACTIONS(9122), + [aux_sym_with_statement_token1] = ACTIONS(9122), + [aux_sym_exit_statement_token1] = ACTIONS(9122), + [sym_end_statement] = ACTIONS(9124), + [aux_sym_on_goto_statement_token1] = ACTIONS(9122), + [aux_sym_on_goto_statement_token2] = ACTIONS(9122), + [aux_sym_on_error_statement_token2] = ACTIONS(9122), + [sym__ambiguous_redim_statement] = ACTIONS(9124), + [aux_sym_erase_statement_token1] = ACTIONS(9122), + [aux_sym_open_statement_token1] = ACTIONS(9122), + [aux_sym_file_mode_token2] = ACTIONS(9122), + [aux_sym_file_access_token2] = ACTIONS(9122), + [aux_sym_file_lock_token2] = ACTIONS(9122), + [aux_sym_print_statement_token1] = ACTIONS(9122), + [anon_sym_PLUS] = ACTIONS(9124), + [anon_sym_DASH] = ACTIONS(9122), + [anon_sym_QMARK] = ACTIONS(9124), + [aux_sym_close_statement_token1] = ACTIONS(9122), + [aux_sym_put_statement_token1] = ACTIONS(9122), + [aux_sym_unlock_statement_token1] = ACTIONS(9122), + [aux_sym_seek_statement_token1] = ACTIONS(9122), + [sym_reset_statement] = ACTIONS(9122), + [aux_sym_raise_event_statement_token1] = ACTIONS(9122), + [sym_stop_statement] = ACTIONS(9122), + [sym_beep_statement] = ACTIONS(9122), + [aux_sym_unload_statement_token1] = ACTIONS(9122), + [aux_sym_def_type_statement_token1] = ACTIONS(9122), + [aux_sym_def_type_statement_token2] = ACTIONS(9122), + [aux_sym_def_type_statement_token3] = ACTIONS(9122), + [aux_sym_def_type_statement_token4] = ACTIONS(9122), + [aux_sym_def_type_statement_token5] = ACTIONS(9122), + [aux_sym_def_type_statement_token6] = ACTIONS(9122), + [aux_sym_def_type_statement_token7] = ACTIONS(9122), + [aux_sym_def_type_statement_token8] = ACTIONS(9122), + [aux_sym_def_type_statement_token9] = ACTIONS(9122), + [aux_sym_def_type_statement_token10] = ACTIONS(9122), + [aux_sym_def_type_statement_token11] = ACTIONS(9122), + [aux_sym_def_type_statement_token12] = ACTIONS(9122), + [aux_sym_def_type_statement_token13] = ACTIONS(9122), + [aux_sym_def_type_statement_token14] = ACTIONS(9122), + [aux_sym_call_statement_token1] = ACTIONS(9122), + [sym__ambiguous_call_statement] = ACTIONS(9122), + [aux_sym_addressof_expression_token1] = ACTIONS(9122), + [aux_sym_type_of_expression_token1] = ACTIONS(9122), + [aux_sym_unary_expression_token1] = ACTIONS(9122), + [sym_string_literal] = ACTIONS(9124), + [sym_number_literal] = ACTIONS(9124), + [aux_sym_boolean_literal_token1] = ACTIONS(9122), + [aux_sym_boolean_literal_token2] = ACTIONS(9122), + [sym_nothing_literal] = ACTIONS(9122), + [sym_null_literal] = ACTIONS(9122), + [sym_empty_literal] = ACTIONS(9122), + [sym_date_literal] = ACTIONS(9124), + [anon_sym_POUND] = ACTIONS(9122), + }, + [STATE(6545)] = { + [sym_identifier] = ACTIONS(9126), + [sym_newline] = ACTIONS(9128), + [anon_sym_COLON] = ACTIONS(9128), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9126), + [aux_sym_frm_property_statement_token1] = ACTIONS(9126), + [anon_sym_DOT] = ACTIONS(9126), + [anon_sym_BANG] = ACTIONS(9128), + [aux_sym__attribute_identifier_token1] = ACTIONS(9126), + [aux_sym_option_statement_token3] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9126), + [aux_sym_preprocessor_const_token1] = ACTIONS(9126), + [sym_static_modifier] = ACTIONS(9126), + [sym__dim_keyword] = ACTIONS(9126), + [sym__redim_keyword] = ACTIONS(9126), + [aux_sym_get_accessor_token1] = ACTIONS(9126), + [aux_sym_set_accessor_token1] = ACTIONS(9126), + [aux_sym_const_declaration_token1] = ACTIONS(9126), + [anon_sym_LPAREN] = ACTIONS(9128), + [aux_sym_as_type_clause_token2] = ACTIONS(9126), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9126), + [aux_sym_visibility_token1] = ACTIONS(9126), + [aux_sym_visibility_token2] = ACTIONS(9126), + [aux_sym_elseif_fragment_token1] = ACTIONS(9126), + [aux_sym_else_fragment_token1] = ACTIONS(9126), + [aux_sym_select_statement_token1] = ACTIONS(9126), + [aux_sym__for_header_token1] = ACTIONS(9126), + [aux_sym_do_statement_token1] = ACTIONS(9126), + [aux_sym_do_statement_token2] = ACTIONS(9126), + [aux_sym_do_condition_token1] = ACTIONS(9126), + [aux_sym_with_statement_token1] = ACTIONS(9126), + [aux_sym_exit_statement_token1] = ACTIONS(9126), + [sym_end_statement] = ACTIONS(9128), + [aux_sym_on_goto_statement_token1] = ACTIONS(9126), + [aux_sym_on_goto_statement_token2] = ACTIONS(9126), + [aux_sym_on_error_statement_token2] = ACTIONS(9126), + [sym__ambiguous_redim_statement] = ACTIONS(9128), + [aux_sym_erase_statement_token1] = ACTIONS(9126), + [aux_sym_open_statement_token1] = ACTIONS(9126), + [aux_sym_file_mode_token2] = ACTIONS(9126), + [aux_sym_file_access_token2] = ACTIONS(9126), + [aux_sym_file_lock_token2] = ACTIONS(9126), + [aux_sym_print_statement_token1] = ACTIONS(9126), + [anon_sym_PLUS] = ACTIONS(9128), + [anon_sym_DASH] = ACTIONS(9126), + [anon_sym_QMARK] = ACTIONS(9128), + [aux_sym_close_statement_token1] = ACTIONS(9126), + [aux_sym_put_statement_token1] = ACTIONS(9126), + [aux_sym_unlock_statement_token1] = ACTIONS(9126), + [aux_sym_seek_statement_token1] = ACTIONS(9126), + [sym_reset_statement] = ACTIONS(9126), + [aux_sym_raise_event_statement_token1] = ACTIONS(9126), + [sym_stop_statement] = ACTIONS(9126), + [sym_beep_statement] = ACTIONS(9126), + [aux_sym_unload_statement_token1] = ACTIONS(9126), + [aux_sym_def_type_statement_token1] = ACTIONS(9126), + [aux_sym_def_type_statement_token2] = ACTIONS(9126), + [aux_sym_def_type_statement_token3] = ACTIONS(9126), + [aux_sym_def_type_statement_token4] = ACTIONS(9126), + [aux_sym_def_type_statement_token5] = ACTIONS(9126), + [aux_sym_def_type_statement_token6] = ACTIONS(9126), + [aux_sym_def_type_statement_token7] = ACTIONS(9126), + [aux_sym_def_type_statement_token8] = ACTIONS(9126), + [aux_sym_def_type_statement_token9] = ACTIONS(9126), + [aux_sym_def_type_statement_token10] = ACTIONS(9126), + [aux_sym_def_type_statement_token11] = ACTIONS(9126), + [aux_sym_def_type_statement_token12] = ACTIONS(9126), + [aux_sym_def_type_statement_token13] = ACTIONS(9126), + [aux_sym_def_type_statement_token14] = ACTIONS(9126), + [aux_sym_call_statement_token1] = ACTIONS(9126), + [sym__ambiguous_call_statement] = ACTIONS(9126), + [aux_sym_addressof_expression_token1] = ACTIONS(9126), + [aux_sym_type_of_expression_token1] = ACTIONS(9126), + [aux_sym_unary_expression_token1] = ACTIONS(9126), + [sym_string_literal] = ACTIONS(9128), + [sym_number_literal] = ACTIONS(9128), + [aux_sym_boolean_literal_token1] = ACTIONS(9126), + [aux_sym_boolean_literal_token2] = ACTIONS(9126), + [sym_nothing_literal] = ACTIONS(9126), + [sym_null_literal] = ACTIONS(9126), + [sym_empty_literal] = ACTIONS(9126), + [sym_date_literal] = ACTIONS(9128), + [anon_sym_POUND] = ACTIONS(9126), + }, + [STATE(6546)] = { + [sym_identifier] = ACTIONS(8733), + [sym_newline] = ACTIONS(8735), + [anon_sym_COLON] = ACTIONS(8735), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8733), + [aux_sym_frm_property_statement_token1] = ACTIONS(8733), + [anon_sym_DOT] = ACTIONS(8733), + [anon_sym_BANG] = ACTIONS(8735), + [aux_sym__attribute_identifier_token1] = ACTIONS(8733), + [aux_sym_option_statement_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8733), + [aux_sym_preprocessor_const_token1] = ACTIONS(8733), + [sym_static_modifier] = ACTIONS(8733), + [sym__dim_keyword] = ACTIONS(8733), + [sym__redim_keyword] = ACTIONS(8733), + [aux_sym_get_accessor_token1] = ACTIONS(8733), + [aux_sym_set_accessor_token1] = ACTIONS(8733), + [aux_sym_const_declaration_token1] = ACTIONS(8733), + [anon_sym_LPAREN] = ACTIONS(8735), + [aux_sym_as_type_clause_token2] = ACTIONS(8733), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8733), + [aux_sym_visibility_token1] = ACTIONS(8733), + [aux_sym_visibility_token2] = ACTIONS(8733), + [aux_sym_elseif_fragment_token1] = ACTIONS(8733), + [aux_sym_else_fragment_token1] = ACTIONS(10984), + [aux_sym_select_statement_token1] = ACTIONS(8733), + [aux_sym_select_statement_token2] = ACTIONS(8733), + [aux_sym__for_header_token1] = ACTIONS(8733), + [aux_sym_do_statement_token1] = ACTIONS(8733), + [aux_sym_do_condition_token1] = ACTIONS(8733), + [aux_sym_with_statement_token1] = ACTIONS(8733), + [aux_sym_exit_statement_token1] = ACTIONS(8733), + [sym_end_statement] = ACTIONS(8735), + [aux_sym_on_goto_statement_token1] = ACTIONS(8733), + [aux_sym_on_goto_statement_token2] = ACTIONS(8733), + [aux_sym_on_error_statement_token2] = ACTIONS(8733), + [sym__ambiguous_redim_statement] = ACTIONS(8735), + [aux_sym_erase_statement_token1] = ACTIONS(8733), + [aux_sym_open_statement_token1] = ACTIONS(8733), + [aux_sym_file_mode_token2] = ACTIONS(8733), + [aux_sym_file_access_token2] = ACTIONS(8733), + [aux_sym_file_lock_token2] = ACTIONS(8733), + [aux_sym_print_statement_token1] = ACTIONS(8733), + [anon_sym_PLUS] = ACTIONS(8735), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_QMARK] = ACTIONS(8735), + [aux_sym_close_statement_token1] = ACTIONS(8733), + [aux_sym_put_statement_token1] = ACTIONS(8733), + [aux_sym_unlock_statement_token1] = ACTIONS(8733), + [aux_sym_seek_statement_token1] = ACTIONS(8733), + [sym_reset_statement] = ACTIONS(8733), + [aux_sym_raise_event_statement_token1] = ACTIONS(8733), + [sym_stop_statement] = ACTIONS(8733), + [sym_beep_statement] = ACTIONS(8733), + [aux_sym_unload_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token2] = ACTIONS(8733), + [aux_sym_def_type_statement_token3] = ACTIONS(8733), + [aux_sym_def_type_statement_token4] = ACTIONS(8733), + [aux_sym_def_type_statement_token5] = ACTIONS(8733), + [aux_sym_def_type_statement_token6] = ACTIONS(8733), + [aux_sym_def_type_statement_token7] = ACTIONS(8733), + [aux_sym_def_type_statement_token8] = ACTIONS(8733), + [aux_sym_def_type_statement_token9] = ACTIONS(8733), + [aux_sym_def_type_statement_token10] = ACTIONS(8733), + [aux_sym_def_type_statement_token11] = ACTIONS(8733), + [aux_sym_def_type_statement_token12] = ACTIONS(8733), + [aux_sym_def_type_statement_token13] = ACTIONS(8733), + [aux_sym_def_type_statement_token14] = ACTIONS(8733), + [aux_sym_call_statement_token1] = ACTIONS(8733), + [sym__ambiguous_call_statement] = ACTIONS(8733), + [aux_sym_addressof_expression_token1] = ACTIONS(8733), + [aux_sym_type_of_expression_token1] = ACTIONS(8733), + [aux_sym_unary_expression_token1] = ACTIONS(8733), + [sym_string_literal] = ACTIONS(8735), + [sym_number_literal] = ACTIONS(8735), + [aux_sym_boolean_literal_token1] = ACTIONS(8733), + [aux_sym_boolean_literal_token2] = ACTIONS(8733), + [sym_nothing_literal] = ACTIONS(8733), + [sym_null_literal] = ACTIONS(8733), + [sym_empty_literal] = ACTIONS(8733), + [sym_date_literal] = ACTIONS(8735), + [anon_sym_POUND] = ACTIONS(8733), + }, + [STATE(6547)] = { + [sym_identifier] = ACTIONS(8692), + [sym_newline] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(8694), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8692), + [aux_sym_frm_property_statement_token1] = ACTIONS(8692), + [anon_sym_DOT] = ACTIONS(8692), + [anon_sym_BANG] = ACTIONS(8694), + [aux_sym__attribute_identifier_token1] = ACTIONS(8692), + [aux_sym_option_statement_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8692), + [aux_sym_preprocessor_const_token1] = ACTIONS(8692), + [sym_static_modifier] = ACTIONS(8692), + [sym__dim_keyword] = ACTIONS(8692), + [sym__redim_keyword] = ACTIONS(8692), + [aux_sym_get_accessor_token1] = ACTIONS(8692), + [aux_sym_set_accessor_token1] = ACTIONS(8692), + [aux_sym_const_declaration_token1] = ACTIONS(8692), + [anon_sym_LPAREN] = ACTIONS(8694), + [aux_sym_as_type_clause_token2] = ACTIONS(8692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8692), + [aux_sym_visibility_token1] = ACTIONS(8692), + [aux_sym_visibility_token2] = ACTIONS(8692), + [aux_sym_elseif_fragment_token1] = ACTIONS(8692), + [aux_sym_else_fragment_token1] = ACTIONS(10914), + [aux_sym_select_statement_token1] = ACTIONS(8692), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8692), + [aux_sym__for_header_token1] = ACTIONS(8692), + [aux_sym_do_statement_token1] = ACTIONS(8692), + [aux_sym_do_condition_token1] = ACTIONS(8692), + [aux_sym_with_statement_token1] = ACTIONS(8692), + [aux_sym_exit_statement_token1] = ACTIONS(8692), + [sym_end_statement] = ACTIONS(8694), + [aux_sym_on_goto_statement_token1] = ACTIONS(8692), + [aux_sym_on_goto_statement_token2] = ACTIONS(8692), + [aux_sym_on_error_statement_token2] = ACTIONS(8692), + [sym__ambiguous_redim_statement] = ACTIONS(8694), + [aux_sym_erase_statement_token1] = ACTIONS(8692), + [aux_sym_open_statement_token1] = ACTIONS(8692), + [aux_sym_file_mode_token2] = ACTIONS(8692), + [aux_sym_file_access_token2] = ACTIONS(8692), + [aux_sym_file_lock_token2] = ACTIONS(8692), + [aux_sym_print_statement_token1] = ACTIONS(8692), + [anon_sym_PLUS] = ACTIONS(8694), + [anon_sym_DASH] = ACTIONS(8692), + [anon_sym_QMARK] = ACTIONS(8694), + [aux_sym_close_statement_token1] = ACTIONS(8692), + [aux_sym_put_statement_token1] = ACTIONS(8692), + [aux_sym_unlock_statement_token1] = ACTIONS(8692), + [aux_sym_seek_statement_token1] = ACTIONS(8692), + [sym_reset_statement] = ACTIONS(8692), + [aux_sym_raise_event_statement_token1] = ACTIONS(8692), + [sym_stop_statement] = ACTIONS(8692), + [sym_beep_statement] = ACTIONS(8692), + [aux_sym_unload_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token2] = ACTIONS(8692), + [aux_sym_def_type_statement_token3] = ACTIONS(8692), + [aux_sym_def_type_statement_token4] = ACTIONS(8692), + [aux_sym_def_type_statement_token5] = ACTIONS(8692), + [aux_sym_def_type_statement_token6] = ACTIONS(8692), + [aux_sym_def_type_statement_token7] = ACTIONS(8692), + [aux_sym_def_type_statement_token8] = ACTIONS(8692), + [aux_sym_def_type_statement_token9] = ACTIONS(8692), + [aux_sym_def_type_statement_token10] = ACTIONS(8692), + [aux_sym_def_type_statement_token11] = ACTIONS(8692), + [aux_sym_def_type_statement_token12] = ACTIONS(8692), + [aux_sym_def_type_statement_token13] = ACTIONS(8692), + [aux_sym_def_type_statement_token14] = ACTIONS(8692), + [aux_sym_call_statement_token1] = ACTIONS(8692), + [sym__ambiguous_call_statement] = ACTIONS(8692), + [aux_sym_addressof_expression_token1] = ACTIONS(8692), + [aux_sym_type_of_expression_token1] = ACTIONS(8692), + [aux_sym_unary_expression_token1] = ACTIONS(8692), + [sym_string_literal] = ACTIONS(8694), + [sym_number_literal] = ACTIONS(8694), + [aux_sym_boolean_literal_token1] = ACTIONS(8692), + [aux_sym_boolean_literal_token2] = ACTIONS(8692), + [sym_nothing_literal] = ACTIONS(8692), + [sym_null_literal] = ACTIONS(8692), + [sym_empty_literal] = ACTIONS(8692), + [sym_date_literal] = ACTIONS(8694), + [anon_sym_POUND] = ACTIONS(8692), + }, + [STATE(6548)] = { + [sym_identifier] = ACTIONS(8283), + [sym_newline] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8283), + [aux_sym_frm_property_statement_token1] = ACTIONS(8283), + [anon_sym_DOT] = ACTIONS(8283), + [anon_sym_BANG] = ACTIONS(8285), + [aux_sym__attribute_identifier_token1] = ACTIONS(8283), + [aux_sym_option_statement_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8283), + [aux_sym_preprocessor_const_token1] = ACTIONS(8283), + [sym_static_modifier] = ACTIONS(8283), + [sym__dim_keyword] = ACTIONS(8283), + [sym__redim_keyword] = ACTIONS(8283), + [aux_sym_get_accessor_token1] = ACTIONS(8283), + [aux_sym_set_accessor_token1] = ACTIONS(8283), + [aux_sym_const_declaration_token1] = ACTIONS(8283), + [anon_sym_LPAREN] = ACTIONS(8285), + [aux_sym_as_type_clause_token2] = ACTIONS(8283), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8283), + [aux_sym_visibility_token1] = ACTIONS(8283), + [aux_sym_visibility_token2] = ACTIONS(8283), + [aux_sym_elseif_fragment_token1] = ACTIONS(8283), + [aux_sym_else_fragment_token1] = ACTIONS(8283), + [aux_sym_select_statement_token1] = ACTIONS(8283), + [aux_sym_select_statement_token2] = ACTIONS(8283), + [aux_sym__for_header_token1] = ACTIONS(8283), + [aux_sym_do_statement_token1] = ACTIONS(8283), + [aux_sym_do_condition_token1] = ACTIONS(8283), + [aux_sym_with_statement_token1] = ACTIONS(8283), + [aux_sym_exit_statement_token1] = ACTIONS(8283), + [sym_end_statement] = ACTIONS(8285), + [aux_sym_on_goto_statement_token1] = ACTIONS(8283), + [aux_sym_on_goto_statement_token2] = ACTIONS(8283), + [aux_sym_on_error_statement_token2] = ACTIONS(8283), + [sym__ambiguous_redim_statement] = ACTIONS(8285), + [aux_sym_erase_statement_token1] = ACTIONS(8283), + [aux_sym_open_statement_token1] = ACTIONS(8283), + [aux_sym_file_mode_token2] = ACTIONS(8283), + [aux_sym_file_access_token2] = ACTIONS(8283), + [aux_sym_file_lock_token2] = ACTIONS(8283), + [aux_sym_print_statement_token1] = ACTIONS(8283), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_DASH] = ACTIONS(8283), + [anon_sym_QMARK] = ACTIONS(8285), + [aux_sym_close_statement_token1] = ACTIONS(8283), + [aux_sym_put_statement_token1] = ACTIONS(8283), + [aux_sym_unlock_statement_token1] = ACTIONS(8283), + [aux_sym_seek_statement_token1] = ACTIONS(8283), + [sym_reset_statement] = ACTIONS(8283), + [aux_sym_raise_event_statement_token1] = ACTIONS(8283), + [sym_stop_statement] = ACTIONS(8283), + [sym_beep_statement] = ACTIONS(8283), + [aux_sym_unload_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token2] = ACTIONS(8283), + [aux_sym_def_type_statement_token3] = ACTIONS(8283), + [aux_sym_def_type_statement_token4] = ACTIONS(8283), + [aux_sym_def_type_statement_token5] = ACTIONS(8283), + [aux_sym_def_type_statement_token6] = ACTIONS(8283), + [aux_sym_def_type_statement_token7] = ACTIONS(8283), + [aux_sym_def_type_statement_token8] = ACTIONS(8283), + [aux_sym_def_type_statement_token9] = ACTIONS(8283), + [aux_sym_def_type_statement_token10] = ACTIONS(8283), + [aux_sym_def_type_statement_token11] = ACTIONS(8283), + [aux_sym_def_type_statement_token12] = ACTIONS(8283), + [aux_sym_def_type_statement_token13] = ACTIONS(8283), + [aux_sym_def_type_statement_token14] = ACTIONS(8283), + [aux_sym_call_statement_token1] = ACTIONS(8283), + [sym__ambiguous_call_statement] = ACTIONS(8283), + [aux_sym_addressof_expression_token1] = ACTIONS(8283), + [aux_sym_type_of_expression_token1] = ACTIONS(8283), + [aux_sym_unary_expression_token1] = ACTIONS(8283), + [sym_string_literal] = ACTIONS(8285), + [sym_number_literal] = ACTIONS(8285), + [aux_sym_boolean_literal_token1] = ACTIONS(8283), + [aux_sym_boolean_literal_token2] = ACTIONS(8283), + [sym_nothing_literal] = ACTIONS(8283), + [sym_null_literal] = ACTIONS(8283), + [sym_empty_literal] = ACTIONS(8283), + [sym_date_literal] = ACTIONS(8285), + [anon_sym_POUND] = ACTIONS(8283), + }, + [STATE(6549)] = { + [sym_identifier] = ACTIONS(9405), + [sym_newline] = ACTIONS(9407), + [anon_sym_COLON] = ACTIONS(9407), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9405), + [aux_sym_frm_property_statement_token1] = ACTIONS(9405), + [anon_sym_DOT] = ACTIONS(9405), + [anon_sym_BANG] = ACTIONS(9407), + [aux_sym__attribute_identifier_token1] = ACTIONS(9405), + [aux_sym_option_statement_token3] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9405), + [aux_sym_preprocessor_const_token1] = ACTIONS(9405), + [sym_static_modifier] = ACTIONS(9405), + [sym__dim_keyword] = ACTIONS(9405), + [sym__redim_keyword] = ACTIONS(9405), + [aux_sym_get_accessor_token1] = ACTIONS(9405), + [aux_sym_set_accessor_token1] = ACTIONS(9405), + [aux_sym_const_declaration_token1] = ACTIONS(9405), + [anon_sym_LPAREN] = ACTIONS(9407), + [aux_sym_as_type_clause_token2] = ACTIONS(9405), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9405), + [aux_sym_visibility_token1] = ACTIONS(9405), + [aux_sym_visibility_token2] = ACTIONS(9405), + [aux_sym_elseif_fragment_token1] = ACTIONS(9405), + [aux_sym_else_fragment_token1] = ACTIONS(9405), + [aux_sym_select_statement_token1] = ACTIONS(9405), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9405), + [aux_sym__for_header_token1] = ACTIONS(9405), + [aux_sym_do_statement_token1] = ACTIONS(9405), + [aux_sym_do_condition_token1] = ACTIONS(9405), + [aux_sym_with_statement_token1] = ACTIONS(9405), + [aux_sym_exit_statement_token1] = ACTIONS(9405), + [sym_end_statement] = ACTIONS(9407), + [aux_sym_on_goto_statement_token1] = ACTIONS(9405), + [aux_sym_on_goto_statement_token2] = ACTIONS(9405), + [aux_sym_on_error_statement_token2] = ACTIONS(9405), + [sym__ambiguous_redim_statement] = ACTIONS(9407), + [aux_sym_erase_statement_token1] = ACTIONS(9405), + [aux_sym_open_statement_token1] = ACTIONS(9405), + [aux_sym_file_mode_token2] = ACTIONS(9405), + [aux_sym_file_access_token2] = ACTIONS(9405), + [aux_sym_file_lock_token2] = ACTIONS(9405), + [aux_sym_print_statement_token1] = ACTIONS(9405), + [anon_sym_PLUS] = ACTIONS(9407), + [anon_sym_DASH] = ACTIONS(9405), + [anon_sym_QMARK] = ACTIONS(9407), + [aux_sym_close_statement_token1] = ACTIONS(9405), + [aux_sym_put_statement_token1] = ACTIONS(9405), + [aux_sym_unlock_statement_token1] = ACTIONS(9405), + [aux_sym_seek_statement_token1] = ACTIONS(9405), + [sym_reset_statement] = ACTIONS(9405), + [aux_sym_raise_event_statement_token1] = ACTIONS(9405), + [sym_stop_statement] = ACTIONS(9405), + [sym_beep_statement] = ACTIONS(9405), + [aux_sym_unload_statement_token1] = ACTIONS(9405), + [aux_sym_def_type_statement_token1] = ACTIONS(9405), + [aux_sym_def_type_statement_token2] = ACTIONS(9405), + [aux_sym_def_type_statement_token3] = ACTIONS(9405), + [aux_sym_def_type_statement_token4] = ACTIONS(9405), + [aux_sym_def_type_statement_token5] = ACTIONS(9405), + [aux_sym_def_type_statement_token6] = ACTIONS(9405), + [aux_sym_def_type_statement_token7] = ACTIONS(9405), + [aux_sym_def_type_statement_token8] = ACTIONS(9405), + [aux_sym_def_type_statement_token9] = ACTIONS(9405), + [aux_sym_def_type_statement_token10] = ACTIONS(9405), + [aux_sym_def_type_statement_token11] = ACTIONS(9405), + [aux_sym_def_type_statement_token12] = ACTIONS(9405), + [aux_sym_def_type_statement_token13] = ACTIONS(9405), + [aux_sym_def_type_statement_token14] = ACTIONS(9405), + [aux_sym_call_statement_token1] = ACTIONS(9405), + [sym__ambiguous_call_statement] = ACTIONS(9405), + [aux_sym_addressof_expression_token1] = ACTIONS(9405), + [aux_sym_type_of_expression_token1] = ACTIONS(9405), + [aux_sym_unary_expression_token1] = ACTIONS(9405), + [sym_string_literal] = ACTIONS(9407), + [sym_number_literal] = ACTIONS(9407), + [aux_sym_boolean_literal_token1] = ACTIONS(9405), + [aux_sym_boolean_literal_token2] = ACTIONS(9405), + [sym_nothing_literal] = ACTIONS(9405), + [sym_null_literal] = ACTIONS(9405), + [sym_empty_literal] = ACTIONS(9405), + [sym_date_literal] = ACTIONS(9407), + [anon_sym_POUND] = ACTIONS(9405), + }, + [STATE(6550)] = { + [sym_identifier] = ACTIONS(9409), + [sym_newline] = ACTIONS(9411), + [anon_sym_COLON] = ACTIONS(9411), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9409), + [aux_sym_frm_property_statement_token1] = ACTIONS(9409), + [anon_sym_DOT] = ACTIONS(9409), + [anon_sym_BANG] = ACTIONS(9411), + [aux_sym__attribute_identifier_token1] = ACTIONS(9409), + [aux_sym_option_statement_token3] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9409), + [aux_sym_preprocessor_const_token1] = ACTIONS(9409), + [sym_static_modifier] = ACTIONS(9409), + [sym__dim_keyword] = ACTIONS(9409), + [sym__redim_keyword] = ACTIONS(9409), + [aux_sym_get_accessor_token1] = ACTIONS(9409), + [aux_sym_set_accessor_token1] = ACTIONS(9409), + [aux_sym_const_declaration_token1] = ACTIONS(9409), + [anon_sym_LPAREN] = ACTIONS(9411), + [aux_sym_as_type_clause_token2] = ACTIONS(9409), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9409), + [aux_sym_visibility_token1] = ACTIONS(9409), + [aux_sym_visibility_token2] = ACTIONS(9409), + [aux_sym_elseif_fragment_token1] = ACTIONS(9409), + [aux_sym_else_fragment_token1] = ACTIONS(9409), + [aux_sym_select_statement_token1] = ACTIONS(9409), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9409), + [aux_sym__for_header_token1] = ACTIONS(9409), + [aux_sym_do_statement_token1] = ACTIONS(9409), + [aux_sym_do_condition_token1] = ACTIONS(9409), + [aux_sym_with_statement_token1] = ACTIONS(9409), + [aux_sym_exit_statement_token1] = ACTIONS(9409), + [sym_end_statement] = ACTIONS(9411), + [aux_sym_on_goto_statement_token1] = ACTIONS(9409), + [aux_sym_on_goto_statement_token2] = ACTIONS(9409), + [aux_sym_on_error_statement_token2] = ACTIONS(9409), + [sym__ambiguous_redim_statement] = ACTIONS(9411), + [aux_sym_erase_statement_token1] = ACTIONS(9409), + [aux_sym_open_statement_token1] = ACTIONS(9409), + [aux_sym_file_mode_token2] = ACTIONS(9409), + [aux_sym_file_access_token2] = ACTIONS(9409), + [aux_sym_file_lock_token2] = ACTIONS(9409), + [aux_sym_print_statement_token1] = ACTIONS(9409), + [anon_sym_PLUS] = ACTIONS(9411), + [anon_sym_DASH] = ACTIONS(9409), + [anon_sym_QMARK] = ACTIONS(9411), + [aux_sym_close_statement_token1] = ACTIONS(9409), + [aux_sym_put_statement_token1] = ACTIONS(9409), + [aux_sym_unlock_statement_token1] = ACTIONS(9409), + [aux_sym_seek_statement_token1] = ACTIONS(9409), + [sym_reset_statement] = ACTIONS(9409), + [aux_sym_raise_event_statement_token1] = ACTIONS(9409), + [sym_stop_statement] = ACTIONS(9409), + [sym_beep_statement] = ACTIONS(9409), + [aux_sym_unload_statement_token1] = ACTIONS(9409), + [aux_sym_def_type_statement_token1] = ACTIONS(9409), + [aux_sym_def_type_statement_token2] = ACTIONS(9409), + [aux_sym_def_type_statement_token3] = ACTIONS(9409), + [aux_sym_def_type_statement_token4] = ACTIONS(9409), + [aux_sym_def_type_statement_token5] = ACTIONS(9409), + [aux_sym_def_type_statement_token6] = ACTIONS(9409), + [aux_sym_def_type_statement_token7] = ACTIONS(9409), + [aux_sym_def_type_statement_token8] = ACTIONS(9409), + [aux_sym_def_type_statement_token9] = ACTIONS(9409), + [aux_sym_def_type_statement_token10] = ACTIONS(9409), + [aux_sym_def_type_statement_token11] = ACTIONS(9409), + [aux_sym_def_type_statement_token12] = ACTIONS(9409), + [aux_sym_def_type_statement_token13] = ACTIONS(9409), + [aux_sym_def_type_statement_token14] = ACTIONS(9409), + [aux_sym_call_statement_token1] = ACTIONS(9409), + [sym__ambiguous_call_statement] = ACTIONS(9409), + [aux_sym_addressof_expression_token1] = ACTIONS(9409), + [aux_sym_type_of_expression_token1] = ACTIONS(9409), + [aux_sym_unary_expression_token1] = ACTIONS(9409), + [sym_string_literal] = ACTIONS(9411), + [sym_number_literal] = ACTIONS(9411), + [aux_sym_boolean_literal_token1] = ACTIONS(9409), + [aux_sym_boolean_literal_token2] = ACTIONS(9409), + [sym_nothing_literal] = ACTIONS(9409), + [sym_null_literal] = ACTIONS(9409), + [sym_empty_literal] = ACTIONS(9409), + [sym_date_literal] = ACTIONS(9411), + [anon_sym_POUND] = ACTIONS(9409), + }, + [STATE(6551)] = { + [sym_identifier] = ACTIONS(3996), + [sym_newline] = ACTIONS(3994), + [anon_sym_COLON] = ACTIONS(3994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(3996), + [aux_sym_frm_property_statement_token1] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3994), + [aux_sym__attribute_identifier_token1] = ACTIONS(3996), + [aux_sym_option_statement_token3] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(3996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(3996), + [aux_sym_preprocessor_const_token1] = ACTIONS(3996), + [sym_static_modifier] = ACTIONS(3996), + [sym__dim_keyword] = ACTIONS(3996), + [sym__redim_keyword] = ACTIONS(3996), + [aux_sym_get_accessor_token1] = ACTIONS(3996), + [aux_sym_set_accessor_token1] = ACTIONS(3996), + [anon_sym_COMMA] = ACTIONS(3994), + [aux_sym_const_declaration_token1] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3994), + [aux_sym_as_type_clause_token2] = ACTIONS(3996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(3996), + [aux_sym_visibility_token1] = ACTIONS(3996), + [aux_sym_visibility_token2] = ACTIONS(3996), + [aux_sym_elseif_fragment_token1] = ACTIONS(3996), + [aux_sym_else_fragment_token1] = ACTIONS(3996), + [aux_sym_select_statement_token1] = ACTIONS(3996), + [aux_sym__for_header_token1] = ACTIONS(3996), + [aux_sym_do_statement_token1] = ACTIONS(3996), + [aux_sym_do_condition_token1] = ACTIONS(3996), + [aux_sym_with_statement_token1] = ACTIONS(3996), + [aux_sym_exit_statement_token1] = ACTIONS(3996), + [sym_end_statement] = ACTIONS(3994), + [aux_sym_on_goto_statement_token1] = ACTIONS(3996), + [aux_sym_on_goto_statement_token2] = ACTIONS(3996), + [aux_sym_on_error_statement_token2] = ACTIONS(3996), + [sym__ambiguous_redim_statement] = ACTIONS(3994), + [aux_sym_erase_statement_token1] = ACTIONS(3996), + [aux_sym_open_statement_token1] = ACTIONS(3996), + [aux_sym_file_mode_token2] = ACTIONS(3996), + [aux_sym_file_access_token2] = ACTIONS(3996), + [aux_sym_file_lock_token2] = ACTIONS(3996), + [aux_sym_print_statement_token1] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3994), + [aux_sym_close_statement_token1] = ACTIONS(3996), + [aux_sym_put_statement_token1] = ACTIONS(3996), + [aux_sym_unlock_statement_token1] = ACTIONS(3996), + [aux_sym_seek_statement_token1] = ACTIONS(3996), + [sym_reset_statement] = ACTIONS(3996), + [aux_sym_raise_event_statement_token1] = ACTIONS(3996), + [sym_stop_statement] = ACTIONS(3996), + [sym_beep_statement] = ACTIONS(3996), + [aux_sym_unload_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token1] = ACTIONS(3996), + [aux_sym_def_type_statement_token2] = ACTIONS(3996), + [aux_sym_def_type_statement_token3] = ACTIONS(3996), + [aux_sym_def_type_statement_token4] = ACTIONS(3996), + [aux_sym_def_type_statement_token5] = ACTIONS(3996), + [aux_sym_def_type_statement_token6] = ACTIONS(3996), + [aux_sym_def_type_statement_token7] = ACTIONS(3996), + [aux_sym_def_type_statement_token8] = ACTIONS(3996), + [aux_sym_def_type_statement_token9] = ACTIONS(3996), + [aux_sym_def_type_statement_token10] = ACTIONS(3996), + [aux_sym_def_type_statement_token11] = ACTIONS(3996), + [aux_sym_def_type_statement_token12] = ACTIONS(3996), + [aux_sym_def_type_statement_token13] = ACTIONS(3996), + [aux_sym_def_type_statement_token14] = ACTIONS(3996), + [aux_sym_call_statement_token1] = ACTIONS(3996), + [sym__ambiguous_call_statement] = ACTIONS(3996), + [aux_sym_addressof_expression_token1] = ACTIONS(3996), + [aux_sym_type_of_expression_token1] = ACTIONS(3996), + [aux_sym_unary_expression_token1] = ACTIONS(3996), + [sym_string_literal] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(3994), + [aux_sym_boolean_literal_token1] = ACTIONS(3996), + [aux_sym_boolean_literal_token2] = ACTIONS(3996), + [sym_nothing_literal] = ACTIONS(3996), + [sym_null_literal] = ACTIONS(3996), + [sym_empty_literal] = ACTIONS(3996), + [sym_date_literal] = ACTIONS(3994), + [anon_sym_POUND] = ACTIONS(3996), + }, + [STATE(6552)] = { + [sym_identifier] = ACTIONS(9413), + [sym_newline] = ACTIONS(9415), + [anon_sym_COLON] = ACTIONS(9415), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9413), + [aux_sym_frm_property_statement_token1] = ACTIONS(9413), + [anon_sym_DOT] = ACTIONS(9413), + [anon_sym_BANG] = ACTIONS(9415), + [aux_sym__attribute_identifier_token1] = ACTIONS(9413), + [aux_sym_option_statement_token3] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9413), + [aux_sym_preprocessor_const_token1] = ACTIONS(9413), + [sym_static_modifier] = ACTIONS(9413), + [sym__dim_keyword] = ACTIONS(9413), + [sym__redim_keyword] = ACTIONS(9413), + [aux_sym_get_accessor_token1] = ACTIONS(9413), + [aux_sym_set_accessor_token1] = ACTIONS(9413), + [aux_sym_const_declaration_token1] = ACTIONS(9413), + [anon_sym_LPAREN] = ACTIONS(9415), + [aux_sym_as_type_clause_token2] = ACTIONS(9413), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9413), + [aux_sym_visibility_token1] = ACTIONS(9413), + [aux_sym_visibility_token2] = ACTIONS(9413), + [aux_sym_elseif_fragment_token1] = ACTIONS(9413), + [aux_sym_else_fragment_token1] = ACTIONS(9413), + [aux_sym_select_statement_token1] = ACTIONS(9413), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9413), + [aux_sym__for_header_token1] = ACTIONS(9413), + [aux_sym_do_statement_token1] = ACTIONS(9413), + [aux_sym_do_condition_token1] = ACTIONS(9413), + [aux_sym_with_statement_token1] = ACTIONS(9413), + [aux_sym_exit_statement_token1] = ACTIONS(9413), + [sym_end_statement] = ACTIONS(9415), + [aux_sym_on_goto_statement_token1] = ACTIONS(9413), + [aux_sym_on_goto_statement_token2] = ACTIONS(9413), + [aux_sym_on_error_statement_token2] = ACTIONS(9413), + [sym__ambiguous_redim_statement] = ACTIONS(9415), + [aux_sym_erase_statement_token1] = ACTIONS(9413), + [aux_sym_open_statement_token1] = ACTIONS(9413), + [aux_sym_file_mode_token2] = ACTIONS(9413), + [aux_sym_file_access_token2] = ACTIONS(9413), + [aux_sym_file_lock_token2] = ACTIONS(9413), + [aux_sym_print_statement_token1] = ACTIONS(9413), + [anon_sym_PLUS] = ACTIONS(9415), + [anon_sym_DASH] = ACTIONS(9413), + [anon_sym_QMARK] = ACTIONS(9415), + [aux_sym_close_statement_token1] = ACTIONS(9413), + [aux_sym_put_statement_token1] = ACTIONS(9413), + [aux_sym_unlock_statement_token1] = ACTIONS(9413), + [aux_sym_seek_statement_token1] = ACTIONS(9413), + [sym_reset_statement] = ACTIONS(9413), + [aux_sym_raise_event_statement_token1] = ACTIONS(9413), + [sym_stop_statement] = ACTIONS(9413), + [sym_beep_statement] = ACTIONS(9413), + [aux_sym_unload_statement_token1] = ACTIONS(9413), + [aux_sym_def_type_statement_token1] = ACTIONS(9413), + [aux_sym_def_type_statement_token2] = ACTIONS(9413), + [aux_sym_def_type_statement_token3] = ACTIONS(9413), + [aux_sym_def_type_statement_token4] = ACTIONS(9413), + [aux_sym_def_type_statement_token5] = ACTIONS(9413), + [aux_sym_def_type_statement_token6] = ACTIONS(9413), + [aux_sym_def_type_statement_token7] = ACTIONS(9413), + [aux_sym_def_type_statement_token8] = ACTIONS(9413), + [aux_sym_def_type_statement_token9] = ACTIONS(9413), + [aux_sym_def_type_statement_token10] = ACTIONS(9413), + [aux_sym_def_type_statement_token11] = ACTIONS(9413), + [aux_sym_def_type_statement_token12] = ACTIONS(9413), + [aux_sym_def_type_statement_token13] = ACTIONS(9413), + [aux_sym_def_type_statement_token14] = ACTIONS(9413), + [aux_sym_call_statement_token1] = ACTIONS(9413), + [sym__ambiguous_call_statement] = ACTIONS(9413), + [aux_sym_addressof_expression_token1] = ACTIONS(9413), + [aux_sym_type_of_expression_token1] = ACTIONS(9413), + [aux_sym_unary_expression_token1] = ACTIONS(9413), + [sym_string_literal] = ACTIONS(9415), + [sym_number_literal] = ACTIONS(9415), + [aux_sym_boolean_literal_token1] = ACTIONS(9413), + [aux_sym_boolean_literal_token2] = ACTIONS(9413), + [sym_nothing_literal] = ACTIONS(9413), + [sym_null_literal] = ACTIONS(9413), + [sym_empty_literal] = ACTIONS(9413), + [sym_date_literal] = ACTIONS(9415), + [anon_sym_POUND] = ACTIONS(9413), + }, + [STATE(6553)] = { + [sym_identifier] = ACTIONS(9374), + [sym_newline] = ACTIONS(9376), + [anon_sym_COLON] = ACTIONS(9376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9374), + [aux_sym_frm_property_statement_token1] = ACTIONS(9374), + [anon_sym_DOT] = ACTIONS(9374), + [anon_sym_BANG] = ACTIONS(9376), + [aux_sym__attribute_identifier_token1] = ACTIONS(9374), + [aux_sym_option_statement_token3] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9374), + [aux_sym_preprocessor_const_token1] = ACTIONS(9374), + [sym_static_modifier] = ACTIONS(9374), + [sym__dim_keyword] = ACTIONS(9374), + [sym__redim_keyword] = ACTIONS(9374), + [aux_sym_get_accessor_token1] = ACTIONS(9374), + [aux_sym_set_accessor_token1] = ACTIONS(9374), + [aux_sym_const_declaration_token1] = ACTIONS(9374), + [anon_sym_LPAREN] = ACTIONS(9376), + [aux_sym_as_type_clause_token2] = ACTIONS(9374), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9374), + [aux_sym_visibility_token1] = ACTIONS(9374), + [aux_sym_visibility_token2] = ACTIONS(9374), + [aux_sym_elseif_fragment_token1] = ACTIONS(9374), + [aux_sym_else_fragment_token1] = ACTIONS(9374), + [aux_sym_select_statement_token1] = ACTIONS(9374), + [aux_sym__for_header_token1] = ACTIONS(9374), + [aux_sym_do_statement_token1] = ACTIONS(9374), + [aux_sym_do_condition_token1] = ACTIONS(9374), + [aux_sym_with_statement_token1] = ACTIONS(9374), + [aux_sym_exit_statement_token1] = ACTIONS(9374), + [sym_end_statement] = ACTIONS(9376), + [aux_sym_on_goto_statement_token1] = ACTIONS(9374), + [aux_sym_on_goto_statement_token2] = ACTIONS(9374), + [aux_sym_on_error_statement_token2] = ACTIONS(9374), + [sym__ambiguous_redim_statement] = ACTIONS(9376), + [aux_sym_erase_statement_token1] = ACTIONS(9374), + [aux_sym_open_statement_token1] = ACTIONS(9374), + [aux_sym_file_mode_token2] = ACTIONS(9374), + [aux_sym_file_access_token2] = ACTIONS(9374), + [aux_sym_file_lock_token2] = ACTIONS(9374), + [aux_sym_print_statement_token1] = ACTIONS(9374), + [anon_sym_PLUS] = ACTIONS(9376), + [anon_sym_DASH] = ACTIONS(9374), + [anon_sym_QMARK] = ACTIONS(9376), + [aux_sym_close_statement_token1] = ACTIONS(9374), + [aux_sym_put_statement_token1] = ACTIONS(9374), + [aux_sym_unlock_statement_token1] = ACTIONS(9374), + [aux_sym_seek_statement_token1] = ACTIONS(9374), + [sym_reset_statement] = ACTIONS(9374), + [aux_sym_raise_event_statement_token1] = ACTIONS(9374), + [sym_stop_statement] = ACTIONS(9374), + [sym_beep_statement] = ACTIONS(9374), + [aux_sym_unload_statement_token1] = ACTIONS(9374), + [aux_sym_def_type_statement_token1] = ACTIONS(9374), + [aux_sym_def_type_statement_token2] = ACTIONS(9374), + [aux_sym_def_type_statement_token3] = ACTIONS(9374), + [aux_sym_def_type_statement_token4] = ACTIONS(9374), + [aux_sym_def_type_statement_token5] = ACTIONS(9374), + [aux_sym_def_type_statement_token6] = ACTIONS(9374), + [aux_sym_def_type_statement_token7] = ACTIONS(9374), + [aux_sym_def_type_statement_token8] = ACTIONS(9374), + [aux_sym_def_type_statement_token9] = ACTIONS(9374), + [aux_sym_def_type_statement_token10] = ACTIONS(9374), + [aux_sym_def_type_statement_token11] = ACTIONS(9374), + [aux_sym_def_type_statement_token12] = ACTIONS(9374), + [aux_sym_def_type_statement_token13] = ACTIONS(9374), + [aux_sym_def_type_statement_token14] = ACTIONS(9374), + [aux_sym_call_statement_token1] = ACTIONS(9374), + [sym__ambiguous_call_statement] = ACTIONS(9374), + [aux_sym_addressof_expression_token1] = ACTIONS(9374), + [aux_sym_type_of_expression_token1] = ACTIONS(9374), + [aux_sym_unary_expression_token1] = ACTIONS(9374), + [sym_string_literal] = ACTIONS(9376), + [sym_number_literal] = ACTIONS(9376), + [aux_sym_boolean_literal_token1] = ACTIONS(9374), + [aux_sym_boolean_literal_token2] = ACTIONS(9374), + [sym_nothing_literal] = ACTIONS(9374), + [sym_null_literal] = ACTIONS(9374), + [sym_empty_literal] = ACTIONS(9374), + [sym_date_literal] = ACTIONS(9376), + [anon_sym_POUND] = ACTIONS(9374), + }, + [STATE(6554)] = { + [sym_identifier] = ACTIONS(9419), + [sym_newline] = ACTIONS(9421), + [anon_sym_COLON] = ACTIONS(9421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9419), + [aux_sym_frm_property_statement_token1] = ACTIONS(9419), + [anon_sym_DOT] = ACTIONS(9419), + [anon_sym_BANG] = ACTIONS(9421), + [aux_sym__attribute_identifier_token1] = ACTIONS(9419), + [aux_sym_option_statement_token3] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9419), + [aux_sym_preprocessor_const_token1] = ACTIONS(9419), + [sym_static_modifier] = ACTIONS(9419), + [sym__dim_keyword] = ACTIONS(9419), + [sym__redim_keyword] = ACTIONS(9419), + [aux_sym_get_accessor_token1] = ACTIONS(9419), + [aux_sym_set_accessor_token1] = ACTIONS(9419), + [aux_sym_const_declaration_token1] = ACTIONS(9419), + [anon_sym_LPAREN] = ACTIONS(9421), + [aux_sym_as_type_clause_token2] = ACTIONS(9419), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9419), + [aux_sym_visibility_token1] = ACTIONS(9419), + [aux_sym_visibility_token2] = ACTIONS(9419), + [aux_sym_elseif_fragment_token1] = ACTIONS(9419), + [aux_sym_else_fragment_token1] = ACTIONS(9419), + [aux_sym_select_statement_token1] = ACTIONS(9419), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9419), + [aux_sym__for_header_token1] = ACTIONS(9419), + [aux_sym_do_statement_token1] = ACTIONS(9419), + [aux_sym_do_condition_token1] = ACTIONS(9419), + [aux_sym_with_statement_token1] = ACTIONS(9419), + [aux_sym_exit_statement_token1] = ACTIONS(9419), + [sym_end_statement] = ACTIONS(9421), + [aux_sym_on_goto_statement_token1] = ACTIONS(9419), + [aux_sym_on_goto_statement_token2] = ACTIONS(9419), + [aux_sym_on_error_statement_token2] = ACTIONS(9419), + [sym__ambiguous_redim_statement] = ACTIONS(9421), + [aux_sym_erase_statement_token1] = ACTIONS(9419), + [aux_sym_open_statement_token1] = ACTIONS(9419), + [aux_sym_file_mode_token2] = ACTIONS(9419), + [aux_sym_file_access_token2] = ACTIONS(9419), + [aux_sym_file_lock_token2] = ACTIONS(9419), + [aux_sym_print_statement_token1] = ACTIONS(9419), + [anon_sym_PLUS] = ACTIONS(9421), + [anon_sym_DASH] = ACTIONS(9419), + [anon_sym_QMARK] = ACTIONS(9421), + [aux_sym_close_statement_token1] = ACTIONS(9419), + [aux_sym_put_statement_token1] = ACTIONS(9419), + [aux_sym_unlock_statement_token1] = ACTIONS(9419), + [aux_sym_seek_statement_token1] = ACTIONS(9419), + [sym_reset_statement] = ACTIONS(9419), + [aux_sym_raise_event_statement_token1] = ACTIONS(9419), + [sym_stop_statement] = ACTIONS(9419), + [sym_beep_statement] = ACTIONS(9419), + [aux_sym_unload_statement_token1] = ACTIONS(9419), + [aux_sym_def_type_statement_token1] = ACTIONS(9419), + [aux_sym_def_type_statement_token2] = ACTIONS(9419), + [aux_sym_def_type_statement_token3] = ACTIONS(9419), + [aux_sym_def_type_statement_token4] = ACTIONS(9419), + [aux_sym_def_type_statement_token5] = ACTIONS(9419), + [aux_sym_def_type_statement_token6] = ACTIONS(9419), + [aux_sym_def_type_statement_token7] = ACTIONS(9419), + [aux_sym_def_type_statement_token8] = ACTIONS(9419), + [aux_sym_def_type_statement_token9] = ACTIONS(9419), + [aux_sym_def_type_statement_token10] = ACTIONS(9419), + [aux_sym_def_type_statement_token11] = ACTIONS(9419), + [aux_sym_def_type_statement_token12] = ACTIONS(9419), + [aux_sym_def_type_statement_token13] = ACTIONS(9419), + [aux_sym_def_type_statement_token14] = ACTIONS(9419), + [aux_sym_call_statement_token1] = ACTIONS(9419), + [sym__ambiguous_call_statement] = ACTIONS(9419), + [aux_sym_addressof_expression_token1] = ACTIONS(9419), + [aux_sym_type_of_expression_token1] = ACTIONS(9419), + [aux_sym_unary_expression_token1] = ACTIONS(9419), + [sym_string_literal] = ACTIONS(9421), + [sym_number_literal] = ACTIONS(9421), + [aux_sym_boolean_literal_token1] = ACTIONS(9419), + [aux_sym_boolean_literal_token2] = ACTIONS(9419), + [sym_nothing_literal] = ACTIONS(9419), + [sym_null_literal] = ACTIONS(9419), + [sym_empty_literal] = ACTIONS(9419), + [sym_date_literal] = ACTIONS(9421), + [anon_sym_POUND] = ACTIONS(9419), + }, + [STATE(6555)] = { + [sym_identifier] = ACTIONS(9423), + [sym_newline] = ACTIONS(9425), + [anon_sym_COLON] = ACTIONS(9425), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9423), + [aux_sym_frm_property_statement_token1] = ACTIONS(9423), + [anon_sym_DOT] = ACTIONS(9423), + [anon_sym_BANG] = ACTIONS(9425), + [aux_sym__attribute_identifier_token1] = ACTIONS(9423), + [aux_sym_option_statement_token3] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9423), + [aux_sym_preprocessor_const_token1] = ACTIONS(9423), + [sym_static_modifier] = ACTIONS(9423), + [sym__dim_keyword] = ACTIONS(9423), + [sym__redim_keyword] = ACTIONS(9423), + [aux_sym_get_accessor_token1] = ACTIONS(9423), + [aux_sym_set_accessor_token1] = ACTIONS(9423), + [aux_sym_const_declaration_token1] = ACTIONS(9423), + [anon_sym_LPAREN] = ACTIONS(9425), + [aux_sym_as_type_clause_token2] = ACTIONS(9423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9423), + [aux_sym_visibility_token1] = ACTIONS(9423), + [aux_sym_visibility_token2] = ACTIONS(9423), + [aux_sym_elseif_fragment_token1] = ACTIONS(9423), + [aux_sym_else_fragment_token1] = ACTIONS(9423), + [aux_sym_select_statement_token1] = ACTIONS(9423), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9423), + [aux_sym__for_header_token1] = ACTIONS(9423), + [aux_sym_do_statement_token1] = ACTIONS(9423), + [aux_sym_do_condition_token1] = ACTIONS(9423), + [aux_sym_with_statement_token1] = ACTIONS(9423), + [aux_sym_exit_statement_token1] = ACTIONS(9423), + [sym_end_statement] = ACTIONS(9425), + [aux_sym_on_goto_statement_token1] = ACTIONS(9423), + [aux_sym_on_goto_statement_token2] = ACTIONS(9423), + [aux_sym_on_error_statement_token2] = ACTIONS(9423), + [sym__ambiguous_redim_statement] = ACTIONS(9425), + [aux_sym_erase_statement_token1] = ACTIONS(9423), + [aux_sym_open_statement_token1] = ACTIONS(9423), + [aux_sym_file_mode_token2] = ACTIONS(9423), + [aux_sym_file_access_token2] = ACTIONS(9423), + [aux_sym_file_lock_token2] = ACTIONS(9423), + [aux_sym_print_statement_token1] = ACTIONS(9423), + [anon_sym_PLUS] = ACTIONS(9425), + [anon_sym_DASH] = ACTIONS(9423), + [anon_sym_QMARK] = ACTIONS(9425), + [aux_sym_close_statement_token1] = ACTIONS(9423), + [aux_sym_put_statement_token1] = ACTIONS(9423), + [aux_sym_unlock_statement_token1] = ACTIONS(9423), + [aux_sym_seek_statement_token1] = ACTIONS(9423), + [sym_reset_statement] = ACTIONS(9423), + [aux_sym_raise_event_statement_token1] = ACTIONS(9423), + [sym_stop_statement] = ACTIONS(9423), + [sym_beep_statement] = ACTIONS(9423), + [aux_sym_unload_statement_token1] = ACTIONS(9423), + [aux_sym_def_type_statement_token1] = ACTIONS(9423), + [aux_sym_def_type_statement_token2] = ACTIONS(9423), + [aux_sym_def_type_statement_token3] = ACTIONS(9423), + [aux_sym_def_type_statement_token4] = ACTIONS(9423), + [aux_sym_def_type_statement_token5] = ACTIONS(9423), + [aux_sym_def_type_statement_token6] = ACTIONS(9423), + [aux_sym_def_type_statement_token7] = ACTIONS(9423), + [aux_sym_def_type_statement_token8] = ACTIONS(9423), + [aux_sym_def_type_statement_token9] = ACTIONS(9423), + [aux_sym_def_type_statement_token10] = ACTIONS(9423), + [aux_sym_def_type_statement_token11] = ACTIONS(9423), + [aux_sym_def_type_statement_token12] = ACTIONS(9423), + [aux_sym_def_type_statement_token13] = ACTIONS(9423), + [aux_sym_def_type_statement_token14] = ACTIONS(9423), + [aux_sym_call_statement_token1] = ACTIONS(9423), + [sym__ambiguous_call_statement] = ACTIONS(9423), + [aux_sym_addressof_expression_token1] = ACTIONS(9423), + [aux_sym_type_of_expression_token1] = ACTIONS(9423), + [aux_sym_unary_expression_token1] = ACTIONS(9423), + [sym_string_literal] = ACTIONS(9425), + [sym_number_literal] = ACTIONS(9425), + [aux_sym_boolean_literal_token1] = ACTIONS(9423), + [aux_sym_boolean_literal_token2] = ACTIONS(9423), + [sym_nothing_literal] = ACTIONS(9423), + [sym_null_literal] = ACTIONS(9423), + [sym_empty_literal] = ACTIONS(9423), + [sym_date_literal] = ACTIONS(9425), + [anon_sym_POUND] = ACTIONS(9423), + }, + [STATE(6556)] = { + [sym_identifier] = ACTIONS(8951), + [sym_newline] = ACTIONS(8953), + [anon_sym_COLON] = ACTIONS(8955), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8951), + [aux_sym_frm_property_statement_token1] = ACTIONS(8951), + [anon_sym_DOT] = ACTIONS(8951), + [anon_sym_BANG] = ACTIONS(8953), + [aux_sym__attribute_identifier_token1] = ACTIONS(8951), + [aux_sym_option_statement_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8951), + [aux_sym_preprocessor_const_token1] = ACTIONS(8951), + [sym_static_modifier] = ACTIONS(8951), + [sym__dim_keyword] = ACTIONS(8951), + [sym__redim_keyword] = ACTIONS(8951), + [aux_sym_get_accessor_token1] = ACTIONS(8951), + [aux_sym_set_accessor_token1] = ACTIONS(8951), + [aux_sym_const_declaration_token1] = ACTIONS(8951), + [anon_sym_LPAREN] = ACTIONS(8953), + [aux_sym_as_type_clause_token2] = ACTIONS(8951), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8951), + [aux_sym_visibility_token1] = ACTIONS(8951), + [aux_sym_visibility_token2] = ACTIONS(8951), + [aux_sym_elseif_fragment_token1] = ACTIONS(8951), + [aux_sym_else_fragment_token1] = ACTIONS(8951), + [aux_sym_select_statement_token1] = ACTIONS(8951), + [aux_sym__for_header_token1] = ACTIONS(8951), + [aux_sym_do_statement_token1] = ACTIONS(8951), + [aux_sym_do_condition_token1] = ACTIONS(8951), + [aux_sym_with_statement_token1] = ACTIONS(8951), + [aux_sym_exit_statement_token1] = ACTIONS(8951), + [sym_end_statement] = ACTIONS(8953), + [aux_sym_on_goto_statement_token1] = ACTIONS(8951), + [aux_sym_on_goto_statement_token2] = ACTIONS(8951), + [aux_sym_on_error_statement_token2] = ACTIONS(8951), + [sym__ambiguous_redim_statement] = ACTIONS(8953), + [aux_sym_erase_statement_token1] = ACTIONS(8951), + [aux_sym_open_statement_token1] = ACTIONS(8951), + [aux_sym_file_mode_token2] = ACTIONS(8951), + [aux_sym_file_access_token2] = ACTIONS(8951), + [aux_sym_file_lock_token2] = ACTIONS(8951), + [aux_sym_print_statement_token1] = ACTIONS(8951), + [anon_sym_PLUS] = ACTIONS(8953), + [anon_sym_DASH] = ACTIONS(8951), + [anon_sym_QMARK] = ACTIONS(8953), + [aux_sym_close_statement_token1] = ACTIONS(8951), + [aux_sym_put_statement_token1] = ACTIONS(8951), + [aux_sym_unlock_statement_token1] = ACTIONS(8951), + [aux_sym_seek_statement_token1] = ACTIONS(8951), + [sym_reset_statement] = ACTIONS(8951), + [aux_sym_raise_event_statement_token1] = ACTIONS(8951), + [sym_stop_statement] = ACTIONS(8951), + [sym_beep_statement] = ACTIONS(8951), + [aux_sym_unload_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token2] = ACTIONS(8951), + [aux_sym_def_type_statement_token3] = ACTIONS(8951), + [aux_sym_def_type_statement_token4] = ACTIONS(8951), + [aux_sym_def_type_statement_token5] = ACTIONS(8951), + [aux_sym_def_type_statement_token6] = ACTIONS(8951), + [aux_sym_def_type_statement_token7] = ACTIONS(8951), + [aux_sym_def_type_statement_token8] = ACTIONS(8951), + [aux_sym_def_type_statement_token9] = ACTIONS(8951), + [aux_sym_def_type_statement_token10] = ACTIONS(8951), + [aux_sym_def_type_statement_token11] = ACTIONS(8951), + [aux_sym_def_type_statement_token12] = ACTIONS(8951), + [aux_sym_def_type_statement_token13] = ACTIONS(8951), + [aux_sym_def_type_statement_token14] = ACTIONS(8951), + [aux_sym_call_statement_token1] = ACTIONS(8951), + [sym__ambiguous_call_statement] = ACTIONS(8951), + [aux_sym_addressof_expression_token1] = ACTIONS(8951), + [aux_sym_type_of_expression_token1] = ACTIONS(8951), + [aux_sym_unary_expression_token1] = ACTIONS(8951), + [sym_string_literal] = ACTIONS(8953), + [sym_number_literal] = ACTIONS(8955), + [aux_sym_boolean_literal_token1] = ACTIONS(8951), + [aux_sym_boolean_literal_token2] = ACTIONS(8951), + [sym_nothing_literal] = ACTIONS(8951), + [sym_null_literal] = ACTIONS(8951), + [sym_empty_literal] = ACTIONS(8951), + [sym_date_literal] = ACTIONS(8953), + [anon_sym_POUND] = ACTIONS(8951), + }, + [STATE(6557)] = { + [sym_identifier] = ACTIONS(8645), + [sym_newline] = ACTIONS(8647), + [anon_sym_COLON] = ACTIONS(8649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8645), + [aux_sym_frm_property_statement_token1] = ACTIONS(8645), + [anon_sym_DOT] = ACTIONS(8645), + [anon_sym_BANG] = ACTIONS(8647), + [aux_sym__attribute_identifier_token1] = ACTIONS(8645), + [aux_sym_option_statement_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8645), + [aux_sym_preprocessor_const_token1] = ACTIONS(8645), + [sym_static_modifier] = ACTIONS(8645), + [sym__dim_keyword] = ACTIONS(8645), + [sym__redim_keyword] = ACTIONS(8645), + [aux_sym_get_accessor_token1] = ACTIONS(8645), + [aux_sym_set_accessor_token1] = ACTIONS(8645), + [aux_sym_const_declaration_token1] = ACTIONS(8645), + [anon_sym_LPAREN] = ACTIONS(8647), + [aux_sym_as_type_clause_token2] = ACTIONS(8645), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8645), + [aux_sym_visibility_token1] = ACTIONS(8645), + [aux_sym_visibility_token2] = ACTIONS(8645), + [aux_sym_elseif_fragment_token1] = ACTIONS(8645), + [aux_sym_else_fragment_token1] = ACTIONS(8645), + [aux_sym_select_statement_token1] = ACTIONS(8645), + [aux_sym__for_header_token1] = ACTIONS(8645), + [aux_sym_do_statement_token1] = ACTIONS(8645), + [aux_sym_do_condition_token1] = ACTIONS(8645), + [aux_sym_with_statement_token1] = ACTIONS(8645), + [aux_sym_exit_statement_token1] = ACTIONS(8645), + [sym_end_statement] = ACTIONS(8647), + [aux_sym_on_goto_statement_token1] = ACTIONS(8645), + [aux_sym_on_goto_statement_token2] = ACTIONS(8645), + [aux_sym_on_error_statement_token2] = ACTIONS(8645), + [sym__ambiguous_redim_statement] = ACTIONS(8647), + [aux_sym_erase_statement_token1] = ACTIONS(8645), + [aux_sym_open_statement_token1] = ACTIONS(8645), + [aux_sym_file_mode_token2] = ACTIONS(8645), + [aux_sym_file_access_token2] = ACTIONS(8645), + [aux_sym_file_lock_token2] = ACTIONS(8645), + [aux_sym_print_statement_token1] = ACTIONS(8645), + [anon_sym_PLUS] = ACTIONS(8647), + [anon_sym_DASH] = ACTIONS(8645), + [anon_sym_QMARK] = ACTIONS(8647), + [aux_sym_close_statement_token1] = ACTIONS(8645), + [aux_sym_put_statement_token1] = ACTIONS(8645), + [aux_sym_unlock_statement_token1] = ACTIONS(8645), + [aux_sym_seek_statement_token1] = ACTIONS(8645), + [sym_reset_statement] = ACTIONS(8645), + [aux_sym_raise_event_statement_token1] = ACTIONS(8645), + [sym_stop_statement] = ACTIONS(8645), + [sym_beep_statement] = ACTIONS(8645), + [aux_sym_unload_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token2] = ACTIONS(8645), + [aux_sym_def_type_statement_token3] = ACTIONS(8645), + [aux_sym_def_type_statement_token4] = ACTIONS(8645), + [aux_sym_def_type_statement_token5] = ACTIONS(8645), + [aux_sym_def_type_statement_token6] = ACTIONS(8645), + [aux_sym_def_type_statement_token7] = ACTIONS(8645), + [aux_sym_def_type_statement_token8] = ACTIONS(8645), + [aux_sym_def_type_statement_token9] = ACTIONS(8645), + [aux_sym_def_type_statement_token10] = ACTIONS(8645), + [aux_sym_def_type_statement_token11] = ACTIONS(8645), + [aux_sym_def_type_statement_token12] = ACTIONS(8645), + [aux_sym_def_type_statement_token13] = ACTIONS(8645), + [aux_sym_def_type_statement_token14] = ACTIONS(8645), + [aux_sym_call_statement_token1] = ACTIONS(8645), + [sym__ambiguous_call_statement] = ACTIONS(8645), + [aux_sym_addressof_expression_token1] = ACTIONS(8645), + [aux_sym_type_of_expression_token1] = ACTIONS(8645), + [aux_sym_unary_expression_token1] = ACTIONS(8645), + [sym_string_literal] = ACTIONS(8647), + [sym_number_literal] = ACTIONS(8649), + [aux_sym_boolean_literal_token1] = ACTIONS(8645), + [aux_sym_boolean_literal_token2] = ACTIONS(8645), + [sym_nothing_literal] = ACTIONS(8645), + [sym_null_literal] = ACTIONS(8645), + [sym_empty_literal] = ACTIONS(8645), + [sym_date_literal] = ACTIONS(8647), + [anon_sym_POUND] = ACTIONS(8645), + }, + [STATE(6558)] = { + [sym_identifier] = ACTIONS(9427), + [sym_newline] = ACTIONS(9429), + [anon_sym_COLON] = ACTIONS(9429), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9427), + [aux_sym_frm_property_statement_token1] = ACTIONS(9427), + [anon_sym_DOT] = ACTIONS(9427), + [anon_sym_BANG] = ACTIONS(9429), + [aux_sym__attribute_identifier_token1] = ACTIONS(9427), + [aux_sym_option_statement_token3] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9427), + [aux_sym_preprocessor_const_token1] = ACTIONS(9427), + [sym_static_modifier] = ACTIONS(9427), + [sym__dim_keyword] = ACTIONS(9427), + [sym__redim_keyword] = ACTIONS(9427), + [aux_sym_get_accessor_token1] = ACTIONS(9427), + [aux_sym_set_accessor_token1] = ACTIONS(9427), + [aux_sym_const_declaration_token1] = ACTIONS(9427), + [anon_sym_LPAREN] = ACTIONS(9429), + [aux_sym_as_type_clause_token2] = ACTIONS(9427), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9427), + [aux_sym_visibility_token1] = ACTIONS(9427), + [aux_sym_visibility_token2] = ACTIONS(9427), + [aux_sym_elseif_fragment_token1] = ACTIONS(9427), + [aux_sym_else_fragment_token1] = ACTIONS(9427), + [aux_sym_select_statement_token1] = ACTIONS(9427), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9427), + [aux_sym__for_header_token1] = ACTIONS(9427), + [aux_sym_do_statement_token1] = ACTIONS(9427), + [aux_sym_do_condition_token1] = ACTIONS(9427), + [aux_sym_with_statement_token1] = ACTIONS(9427), + [aux_sym_exit_statement_token1] = ACTIONS(9427), + [sym_end_statement] = ACTIONS(9429), + [aux_sym_on_goto_statement_token1] = ACTIONS(9427), + [aux_sym_on_goto_statement_token2] = ACTIONS(9427), + [aux_sym_on_error_statement_token2] = ACTIONS(9427), + [sym__ambiguous_redim_statement] = ACTIONS(9429), + [aux_sym_erase_statement_token1] = ACTIONS(9427), + [aux_sym_open_statement_token1] = ACTIONS(9427), + [aux_sym_file_mode_token2] = ACTIONS(9427), + [aux_sym_file_access_token2] = ACTIONS(9427), + [aux_sym_file_lock_token2] = ACTIONS(9427), + [aux_sym_print_statement_token1] = ACTIONS(9427), + [anon_sym_PLUS] = ACTIONS(9429), + [anon_sym_DASH] = ACTIONS(9427), + [anon_sym_QMARK] = ACTIONS(9429), + [aux_sym_close_statement_token1] = ACTIONS(9427), + [aux_sym_put_statement_token1] = ACTIONS(9427), + [aux_sym_unlock_statement_token1] = ACTIONS(9427), + [aux_sym_seek_statement_token1] = ACTIONS(9427), + [sym_reset_statement] = ACTIONS(9427), + [aux_sym_raise_event_statement_token1] = ACTIONS(9427), + [sym_stop_statement] = ACTIONS(9427), + [sym_beep_statement] = ACTIONS(9427), + [aux_sym_unload_statement_token1] = ACTIONS(9427), + [aux_sym_def_type_statement_token1] = ACTIONS(9427), + [aux_sym_def_type_statement_token2] = ACTIONS(9427), + [aux_sym_def_type_statement_token3] = ACTIONS(9427), + [aux_sym_def_type_statement_token4] = ACTIONS(9427), + [aux_sym_def_type_statement_token5] = ACTIONS(9427), + [aux_sym_def_type_statement_token6] = ACTIONS(9427), + [aux_sym_def_type_statement_token7] = ACTIONS(9427), + [aux_sym_def_type_statement_token8] = ACTIONS(9427), + [aux_sym_def_type_statement_token9] = ACTIONS(9427), + [aux_sym_def_type_statement_token10] = ACTIONS(9427), + [aux_sym_def_type_statement_token11] = ACTIONS(9427), + [aux_sym_def_type_statement_token12] = ACTIONS(9427), + [aux_sym_def_type_statement_token13] = ACTIONS(9427), + [aux_sym_def_type_statement_token14] = ACTIONS(9427), + [aux_sym_call_statement_token1] = ACTIONS(9427), + [sym__ambiguous_call_statement] = ACTIONS(9427), + [aux_sym_addressof_expression_token1] = ACTIONS(9427), + [aux_sym_type_of_expression_token1] = ACTIONS(9427), + [aux_sym_unary_expression_token1] = ACTIONS(9427), + [sym_string_literal] = ACTIONS(9429), + [sym_number_literal] = ACTIONS(9429), + [aux_sym_boolean_literal_token1] = ACTIONS(9427), + [aux_sym_boolean_literal_token2] = ACTIONS(9427), + [sym_nothing_literal] = ACTIONS(9427), + [sym_null_literal] = ACTIONS(9427), + [sym_empty_literal] = ACTIONS(9427), + [sym_date_literal] = ACTIONS(9429), + [anon_sym_POUND] = ACTIONS(9427), + }, + [STATE(6559)] = { + [sym_identifier] = ACTIONS(8749), + [sym_newline] = ACTIONS(8751), + [anon_sym_COLON] = ACTIONS(8753), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8749), + [aux_sym_frm_property_statement_token1] = ACTIONS(8749), + [anon_sym_DOT] = ACTIONS(8749), + [anon_sym_BANG] = ACTIONS(8751), + [aux_sym__attribute_identifier_token1] = ACTIONS(8749), + [aux_sym_option_statement_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8749), + [aux_sym_preprocessor_const_token1] = ACTIONS(8749), + [sym_static_modifier] = ACTIONS(8749), + [sym__dim_keyword] = ACTIONS(8749), + [sym__redim_keyword] = ACTIONS(8749), + [aux_sym_get_accessor_token1] = ACTIONS(8749), + [aux_sym_set_accessor_token1] = ACTIONS(8749), + [aux_sym_const_declaration_token1] = ACTIONS(8749), + [anon_sym_LPAREN] = ACTIONS(8751), + [aux_sym_as_type_clause_token2] = ACTIONS(8749), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8749), + [aux_sym_visibility_token1] = ACTIONS(8749), + [aux_sym_visibility_token2] = ACTIONS(8749), + [aux_sym_elseif_fragment_token1] = ACTIONS(8749), + [aux_sym_else_fragment_token1] = ACTIONS(8749), + [aux_sym_select_statement_token1] = ACTIONS(8749), + [aux_sym__for_header_token1] = ACTIONS(8749), + [aux_sym_do_statement_token1] = ACTIONS(8749), + [aux_sym_do_condition_token1] = ACTIONS(8749), + [aux_sym_with_statement_token1] = ACTIONS(8749), + [aux_sym_exit_statement_token1] = ACTIONS(8749), + [sym_end_statement] = ACTIONS(8751), + [aux_sym_on_goto_statement_token1] = ACTIONS(8749), + [aux_sym_on_goto_statement_token2] = ACTIONS(8749), + [aux_sym_on_error_statement_token2] = ACTIONS(8749), + [sym__ambiguous_redim_statement] = ACTIONS(8751), + [aux_sym_erase_statement_token1] = ACTIONS(8749), + [aux_sym_open_statement_token1] = ACTIONS(8749), + [aux_sym_file_mode_token2] = ACTIONS(8749), + [aux_sym_file_access_token2] = ACTIONS(8749), + [aux_sym_file_lock_token2] = ACTIONS(8749), + [aux_sym_print_statement_token1] = ACTIONS(8749), + [anon_sym_PLUS] = ACTIONS(8751), + [anon_sym_DASH] = ACTIONS(8749), + [anon_sym_QMARK] = ACTIONS(8751), + [aux_sym_close_statement_token1] = ACTIONS(8749), + [aux_sym_put_statement_token1] = ACTIONS(8749), + [aux_sym_unlock_statement_token1] = ACTIONS(8749), + [aux_sym_seek_statement_token1] = ACTIONS(8749), + [sym_reset_statement] = ACTIONS(8749), + [aux_sym_raise_event_statement_token1] = ACTIONS(8749), + [sym_stop_statement] = ACTIONS(8749), + [sym_beep_statement] = ACTIONS(8749), + [aux_sym_unload_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token2] = ACTIONS(8749), + [aux_sym_def_type_statement_token3] = ACTIONS(8749), + [aux_sym_def_type_statement_token4] = ACTIONS(8749), + [aux_sym_def_type_statement_token5] = ACTIONS(8749), + [aux_sym_def_type_statement_token6] = ACTIONS(8749), + [aux_sym_def_type_statement_token7] = ACTIONS(8749), + [aux_sym_def_type_statement_token8] = ACTIONS(8749), + [aux_sym_def_type_statement_token9] = ACTIONS(8749), + [aux_sym_def_type_statement_token10] = ACTIONS(8749), + [aux_sym_def_type_statement_token11] = ACTIONS(8749), + [aux_sym_def_type_statement_token12] = ACTIONS(8749), + [aux_sym_def_type_statement_token13] = ACTIONS(8749), + [aux_sym_def_type_statement_token14] = ACTIONS(8749), + [aux_sym_call_statement_token1] = ACTIONS(8749), + [sym__ambiguous_call_statement] = ACTIONS(8749), + [aux_sym_addressof_expression_token1] = ACTIONS(8749), + [aux_sym_type_of_expression_token1] = ACTIONS(8749), + [aux_sym_unary_expression_token1] = ACTIONS(8749), + [sym_string_literal] = ACTIONS(8751), + [sym_number_literal] = ACTIONS(8753), + [aux_sym_boolean_literal_token1] = ACTIONS(8749), + [aux_sym_boolean_literal_token2] = ACTIONS(8749), + [sym_nothing_literal] = ACTIONS(8749), + [sym_null_literal] = ACTIONS(8749), + [sym_empty_literal] = ACTIONS(8749), + [sym_date_literal] = ACTIONS(8751), + [anon_sym_POUND] = ACTIONS(8749), + }, + [STATE(6560)] = { + [sym_identifier] = ACTIONS(9378), + [sym_newline] = ACTIONS(9380), + [anon_sym_COLON] = ACTIONS(9380), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9378), + [aux_sym_frm_property_statement_token1] = ACTIONS(9378), + [anon_sym_DOT] = ACTIONS(9378), + [anon_sym_BANG] = ACTIONS(9380), + [aux_sym__attribute_identifier_token1] = ACTIONS(9378), + [aux_sym_option_statement_token3] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9378), + [aux_sym_preprocessor_const_token1] = ACTIONS(9378), + [sym_static_modifier] = ACTIONS(9378), + [sym__dim_keyword] = ACTIONS(9378), + [sym__redim_keyword] = ACTIONS(9378), + [aux_sym_get_accessor_token1] = ACTIONS(9378), + [aux_sym_set_accessor_token1] = ACTIONS(9378), + [aux_sym_const_declaration_token1] = ACTIONS(9378), + [anon_sym_LPAREN] = ACTIONS(9380), + [aux_sym_as_type_clause_token2] = ACTIONS(9378), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9378), + [aux_sym_visibility_token1] = ACTIONS(9378), + [aux_sym_visibility_token2] = ACTIONS(9378), + [aux_sym_elseif_fragment_token1] = ACTIONS(9378), + [aux_sym_else_fragment_token1] = ACTIONS(9378), + [aux_sym_select_statement_token1] = ACTIONS(9378), + [aux_sym__for_header_token1] = ACTIONS(9378), + [aux_sym_do_statement_token1] = ACTIONS(9378), + [aux_sym_do_condition_token1] = ACTIONS(9378), + [aux_sym_with_statement_token1] = ACTIONS(9378), + [aux_sym_exit_statement_token1] = ACTIONS(9378), + [sym_end_statement] = ACTIONS(9380), + [aux_sym_on_goto_statement_token1] = ACTIONS(9378), + [aux_sym_on_goto_statement_token2] = ACTIONS(9378), + [aux_sym_on_error_statement_token2] = ACTIONS(9378), + [sym__ambiguous_redim_statement] = ACTIONS(9380), + [aux_sym_erase_statement_token1] = ACTIONS(9378), + [aux_sym_open_statement_token1] = ACTIONS(9378), + [aux_sym_file_mode_token2] = ACTIONS(9378), + [aux_sym_file_access_token2] = ACTIONS(9378), + [aux_sym_file_lock_token2] = ACTIONS(9378), + [aux_sym_print_statement_token1] = ACTIONS(9378), + [anon_sym_PLUS] = ACTIONS(9380), + [anon_sym_DASH] = ACTIONS(9378), + [anon_sym_QMARK] = ACTIONS(9380), + [aux_sym_close_statement_token1] = ACTIONS(9378), + [aux_sym_put_statement_token1] = ACTIONS(9378), + [aux_sym_unlock_statement_token1] = ACTIONS(9378), + [aux_sym_seek_statement_token1] = ACTIONS(9378), + [sym_reset_statement] = ACTIONS(9378), + [aux_sym_raise_event_statement_token1] = ACTIONS(9378), + [sym_stop_statement] = ACTIONS(9378), + [sym_beep_statement] = ACTIONS(9378), + [aux_sym_unload_statement_token1] = ACTIONS(9378), + [aux_sym_def_type_statement_token1] = ACTIONS(9378), + [aux_sym_def_type_statement_token2] = ACTIONS(9378), + [aux_sym_def_type_statement_token3] = ACTIONS(9378), + [aux_sym_def_type_statement_token4] = ACTIONS(9378), + [aux_sym_def_type_statement_token5] = ACTIONS(9378), + [aux_sym_def_type_statement_token6] = ACTIONS(9378), + [aux_sym_def_type_statement_token7] = ACTIONS(9378), + [aux_sym_def_type_statement_token8] = ACTIONS(9378), + [aux_sym_def_type_statement_token9] = ACTIONS(9378), + [aux_sym_def_type_statement_token10] = ACTIONS(9378), + [aux_sym_def_type_statement_token11] = ACTIONS(9378), + [aux_sym_def_type_statement_token12] = ACTIONS(9378), + [aux_sym_def_type_statement_token13] = ACTIONS(9378), + [aux_sym_def_type_statement_token14] = ACTIONS(9378), + [aux_sym_call_statement_token1] = ACTIONS(9378), + [sym__ambiguous_call_statement] = ACTIONS(9378), + [aux_sym_addressof_expression_token1] = ACTIONS(9378), + [aux_sym_type_of_expression_token1] = ACTIONS(9378), + [aux_sym_unary_expression_token1] = ACTIONS(9378), + [sym_string_literal] = ACTIONS(9380), + [sym_number_literal] = ACTIONS(9380), + [aux_sym_boolean_literal_token1] = ACTIONS(9378), + [aux_sym_boolean_literal_token2] = ACTIONS(9378), + [sym_nothing_literal] = ACTIONS(9378), + [sym_null_literal] = ACTIONS(9378), + [sym_empty_literal] = ACTIONS(9378), + [sym_date_literal] = ACTIONS(9380), + [anon_sym_POUND] = ACTIONS(9378), + }, + [STATE(6561)] = { + [sym_identifier] = ACTIONS(9431), + [sym_newline] = ACTIONS(9433), + [anon_sym_COLON] = ACTIONS(9433), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9431), + [aux_sym_frm_property_statement_token1] = ACTIONS(9431), + [anon_sym_DOT] = ACTIONS(9431), + [anon_sym_BANG] = ACTIONS(9433), + [aux_sym__attribute_identifier_token1] = ACTIONS(9431), + [aux_sym_option_statement_token3] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9431), + [aux_sym_preprocessor_const_token1] = ACTIONS(9431), + [sym_static_modifier] = ACTIONS(9431), + [sym__dim_keyword] = ACTIONS(9431), + [sym__redim_keyword] = ACTIONS(9431), + [aux_sym_get_accessor_token1] = ACTIONS(9431), + [aux_sym_set_accessor_token1] = ACTIONS(9431), + [aux_sym_const_declaration_token1] = ACTIONS(9431), + [anon_sym_LPAREN] = ACTIONS(9433), + [aux_sym_as_type_clause_token2] = ACTIONS(9431), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9431), + [aux_sym_visibility_token1] = ACTIONS(9431), + [aux_sym_visibility_token2] = ACTIONS(9431), + [aux_sym_elseif_fragment_token1] = ACTIONS(9431), + [aux_sym_else_fragment_token1] = ACTIONS(9431), + [aux_sym_select_statement_token1] = ACTIONS(9431), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9431), + [aux_sym__for_header_token1] = ACTIONS(9431), + [aux_sym_do_statement_token1] = ACTIONS(9431), + [aux_sym_do_condition_token1] = ACTIONS(9431), + [aux_sym_with_statement_token1] = ACTIONS(9431), + [aux_sym_exit_statement_token1] = ACTIONS(9431), + [sym_end_statement] = ACTIONS(9433), + [aux_sym_on_goto_statement_token1] = ACTIONS(9431), + [aux_sym_on_goto_statement_token2] = ACTIONS(9431), + [aux_sym_on_error_statement_token2] = ACTIONS(9431), + [sym__ambiguous_redim_statement] = ACTIONS(9433), + [aux_sym_erase_statement_token1] = ACTIONS(9431), + [aux_sym_open_statement_token1] = ACTIONS(9431), + [aux_sym_file_mode_token2] = ACTIONS(9431), + [aux_sym_file_access_token2] = ACTIONS(9431), + [aux_sym_file_lock_token2] = ACTIONS(9431), + [aux_sym_print_statement_token1] = ACTIONS(9431), + [anon_sym_PLUS] = ACTIONS(9433), + [anon_sym_DASH] = ACTIONS(9431), + [anon_sym_QMARK] = ACTIONS(9433), + [aux_sym_close_statement_token1] = ACTIONS(9431), + [aux_sym_put_statement_token1] = ACTIONS(9431), + [aux_sym_unlock_statement_token1] = ACTIONS(9431), + [aux_sym_seek_statement_token1] = ACTIONS(9431), + [sym_reset_statement] = ACTIONS(9431), + [aux_sym_raise_event_statement_token1] = ACTIONS(9431), + [sym_stop_statement] = ACTIONS(9431), + [sym_beep_statement] = ACTIONS(9431), + [aux_sym_unload_statement_token1] = ACTIONS(9431), + [aux_sym_def_type_statement_token1] = ACTIONS(9431), + [aux_sym_def_type_statement_token2] = ACTIONS(9431), + [aux_sym_def_type_statement_token3] = ACTIONS(9431), + [aux_sym_def_type_statement_token4] = ACTIONS(9431), + [aux_sym_def_type_statement_token5] = ACTIONS(9431), + [aux_sym_def_type_statement_token6] = ACTIONS(9431), + [aux_sym_def_type_statement_token7] = ACTIONS(9431), + [aux_sym_def_type_statement_token8] = ACTIONS(9431), + [aux_sym_def_type_statement_token9] = ACTIONS(9431), + [aux_sym_def_type_statement_token10] = ACTIONS(9431), + [aux_sym_def_type_statement_token11] = ACTIONS(9431), + [aux_sym_def_type_statement_token12] = ACTIONS(9431), + [aux_sym_def_type_statement_token13] = ACTIONS(9431), + [aux_sym_def_type_statement_token14] = ACTIONS(9431), + [aux_sym_call_statement_token1] = ACTIONS(9431), + [sym__ambiguous_call_statement] = ACTIONS(9431), + [aux_sym_addressof_expression_token1] = ACTIONS(9431), + [aux_sym_type_of_expression_token1] = ACTIONS(9431), + [aux_sym_unary_expression_token1] = ACTIONS(9431), + [sym_string_literal] = ACTIONS(9433), + [sym_number_literal] = ACTIONS(9433), + [aux_sym_boolean_literal_token1] = ACTIONS(9431), + [aux_sym_boolean_literal_token2] = ACTIONS(9431), + [sym_nothing_literal] = ACTIONS(9431), + [sym_null_literal] = ACTIONS(9431), + [sym_empty_literal] = ACTIONS(9431), + [sym_date_literal] = ACTIONS(9433), + [anon_sym_POUND] = ACTIONS(9431), + }, + [STATE(6562)] = { + [sym_identifier] = ACTIONS(8729), + [sym_newline] = ACTIONS(8731), + [anon_sym_COLON] = ACTIONS(8731), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8729), + [aux_sym_frm_property_statement_token1] = ACTIONS(8729), + [anon_sym_DOT] = ACTIONS(8729), + [anon_sym_BANG] = ACTIONS(8731), + [aux_sym__attribute_identifier_token1] = ACTIONS(8729), + [aux_sym_option_statement_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8729), + [aux_sym_preprocessor_const_token1] = ACTIONS(8729), + [sym_static_modifier] = ACTIONS(8729), + [sym__dim_keyword] = ACTIONS(8729), + [sym__redim_keyword] = ACTIONS(8729), + [aux_sym_get_accessor_token1] = ACTIONS(8729), + [aux_sym_set_accessor_token1] = ACTIONS(8729), + [aux_sym_const_declaration_token1] = ACTIONS(8729), + [anon_sym_LPAREN] = ACTIONS(8731), + [aux_sym_as_type_clause_token2] = ACTIONS(8729), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8729), + [aux_sym_visibility_token1] = ACTIONS(8729), + [aux_sym_visibility_token2] = ACTIONS(8729), + [aux_sym_elseif_fragment_token1] = ACTIONS(8729), + [aux_sym_else_fragment_token1] = ACTIONS(8729), + [aux_sym_select_statement_token1] = ACTIONS(8729), + [aux_sym__for_header_token1] = ACTIONS(8729), + [aux_sym_do_statement_token1] = ACTIONS(8729), + [aux_sym_do_condition_token1] = ACTIONS(8729), + [aux_sym_with_statement_token1] = ACTIONS(8729), + [aux_sym_exit_statement_token1] = ACTIONS(8729), + [sym_end_statement] = ACTIONS(8731), + [aux_sym_on_goto_statement_token1] = ACTIONS(8729), + [aux_sym_on_goto_statement_token2] = ACTIONS(8729), + [aux_sym_on_error_statement_token2] = ACTIONS(8729), + [sym__ambiguous_redim_statement] = ACTIONS(8731), + [aux_sym_erase_statement_token1] = ACTIONS(8729), + [aux_sym_open_statement_token1] = ACTIONS(8729), + [aux_sym_file_mode_token2] = ACTIONS(8729), + [aux_sym_file_access_token2] = ACTIONS(8729), + [aux_sym_file_lock_token2] = ACTIONS(8729), + [aux_sym_print_statement_token1] = ACTIONS(8729), + [anon_sym_PLUS] = ACTIONS(8731), + [anon_sym_DASH] = ACTIONS(8729), + [anon_sym_QMARK] = ACTIONS(8731), + [aux_sym_close_statement_token1] = ACTIONS(8729), + [aux_sym_put_statement_token1] = ACTIONS(8729), + [aux_sym_unlock_statement_token1] = ACTIONS(8729), + [aux_sym_seek_statement_token1] = ACTIONS(8729), + [sym_reset_statement] = ACTIONS(8729), + [aux_sym_raise_event_statement_token1] = ACTIONS(8729), + [sym_stop_statement] = ACTIONS(8729), + [sym_beep_statement] = ACTIONS(8729), + [aux_sym_unload_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token2] = ACTIONS(8729), + [aux_sym_def_type_statement_token3] = ACTIONS(8729), + [aux_sym_def_type_statement_token4] = ACTIONS(8729), + [aux_sym_def_type_statement_token5] = ACTIONS(8729), + [aux_sym_def_type_statement_token6] = ACTIONS(8729), + [aux_sym_def_type_statement_token7] = ACTIONS(8729), + [aux_sym_def_type_statement_token8] = ACTIONS(8729), + [aux_sym_def_type_statement_token9] = ACTIONS(8729), + [aux_sym_def_type_statement_token10] = ACTIONS(8729), + [aux_sym_def_type_statement_token11] = ACTIONS(8729), + [aux_sym_def_type_statement_token12] = ACTIONS(8729), + [aux_sym_def_type_statement_token13] = ACTIONS(8729), + [aux_sym_def_type_statement_token14] = ACTIONS(8729), + [aux_sym_call_statement_token1] = ACTIONS(8729), + [sym__ambiguous_call_statement] = ACTIONS(8729), + [aux_sym_addressof_expression_token1] = ACTIONS(8729), + [aux_sym_type_of_expression_token1] = ACTIONS(8729), + [aux_sym_unary_expression_token1] = ACTIONS(8729), + [sym_string_literal] = ACTIONS(8731), + [sym_number_literal] = ACTIONS(8731), + [aux_sym_boolean_literal_token1] = ACTIONS(8729), + [aux_sym_boolean_literal_token2] = ACTIONS(8729), + [sym_nothing_literal] = ACTIONS(8729), + [sym_null_literal] = ACTIONS(8729), + [sym_empty_literal] = ACTIONS(8729), + [sym_date_literal] = ACTIONS(8731), + [anon_sym_POUND] = ACTIONS(8729), + }, + [STATE(6563)] = { + [sym_identifier] = ACTIONS(9435), + [sym_newline] = ACTIONS(9437), + [anon_sym_COLON] = ACTIONS(9437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9435), + [aux_sym_frm_property_statement_token1] = ACTIONS(9435), + [anon_sym_DOT] = ACTIONS(9435), + [anon_sym_BANG] = ACTIONS(9437), + [aux_sym__attribute_identifier_token1] = ACTIONS(9435), + [aux_sym_option_statement_token3] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9435), + [aux_sym_preprocessor_const_token1] = ACTIONS(9435), + [sym_static_modifier] = ACTIONS(9435), + [sym__dim_keyword] = ACTIONS(9435), + [sym__redim_keyword] = ACTIONS(9435), + [aux_sym_get_accessor_token1] = ACTIONS(9435), + [aux_sym_set_accessor_token1] = ACTIONS(9435), + [aux_sym_const_declaration_token1] = ACTIONS(9435), + [anon_sym_LPAREN] = ACTIONS(9437), + [aux_sym_as_type_clause_token2] = ACTIONS(9435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9435), + [aux_sym_visibility_token1] = ACTIONS(9435), + [aux_sym_visibility_token2] = ACTIONS(9435), + [aux_sym_elseif_fragment_token1] = ACTIONS(9435), + [aux_sym_else_fragment_token1] = ACTIONS(9435), + [aux_sym_select_statement_token1] = ACTIONS(9435), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9435), + [aux_sym__for_header_token1] = ACTIONS(9435), + [aux_sym_do_statement_token1] = ACTIONS(9435), + [aux_sym_do_condition_token1] = ACTIONS(9435), + [aux_sym_with_statement_token1] = ACTIONS(9435), + [aux_sym_exit_statement_token1] = ACTIONS(9435), + [sym_end_statement] = ACTIONS(9437), + [aux_sym_on_goto_statement_token1] = ACTIONS(9435), + [aux_sym_on_goto_statement_token2] = ACTIONS(9435), + [aux_sym_on_error_statement_token2] = ACTIONS(9435), + [sym__ambiguous_redim_statement] = ACTIONS(9437), + [aux_sym_erase_statement_token1] = ACTIONS(9435), + [aux_sym_open_statement_token1] = ACTIONS(9435), + [aux_sym_file_mode_token2] = ACTIONS(9435), + [aux_sym_file_access_token2] = ACTIONS(9435), + [aux_sym_file_lock_token2] = ACTIONS(9435), + [aux_sym_print_statement_token1] = ACTIONS(9435), + [anon_sym_PLUS] = ACTIONS(9437), + [anon_sym_DASH] = ACTIONS(9435), + [anon_sym_QMARK] = ACTIONS(9437), + [aux_sym_close_statement_token1] = ACTIONS(9435), + [aux_sym_put_statement_token1] = ACTIONS(9435), + [aux_sym_unlock_statement_token1] = ACTIONS(9435), + [aux_sym_seek_statement_token1] = ACTIONS(9435), + [sym_reset_statement] = ACTIONS(9435), + [aux_sym_raise_event_statement_token1] = ACTIONS(9435), + [sym_stop_statement] = ACTIONS(9435), + [sym_beep_statement] = ACTIONS(9435), + [aux_sym_unload_statement_token1] = ACTIONS(9435), + [aux_sym_def_type_statement_token1] = ACTIONS(9435), + [aux_sym_def_type_statement_token2] = ACTIONS(9435), + [aux_sym_def_type_statement_token3] = ACTIONS(9435), + [aux_sym_def_type_statement_token4] = ACTIONS(9435), + [aux_sym_def_type_statement_token5] = ACTIONS(9435), + [aux_sym_def_type_statement_token6] = ACTIONS(9435), + [aux_sym_def_type_statement_token7] = ACTIONS(9435), + [aux_sym_def_type_statement_token8] = ACTIONS(9435), + [aux_sym_def_type_statement_token9] = ACTIONS(9435), + [aux_sym_def_type_statement_token10] = ACTIONS(9435), + [aux_sym_def_type_statement_token11] = ACTIONS(9435), + [aux_sym_def_type_statement_token12] = ACTIONS(9435), + [aux_sym_def_type_statement_token13] = ACTIONS(9435), + [aux_sym_def_type_statement_token14] = ACTIONS(9435), + [aux_sym_call_statement_token1] = ACTIONS(9435), + [sym__ambiguous_call_statement] = ACTIONS(9435), + [aux_sym_addressof_expression_token1] = ACTIONS(9435), + [aux_sym_type_of_expression_token1] = ACTIONS(9435), + [aux_sym_unary_expression_token1] = ACTIONS(9435), + [sym_string_literal] = ACTIONS(9437), + [sym_number_literal] = ACTIONS(9437), + [aux_sym_boolean_literal_token1] = ACTIONS(9435), + [aux_sym_boolean_literal_token2] = ACTIONS(9435), + [sym_nothing_literal] = ACTIONS(9435), + [sym_null_literal] = ACTIONS(9435), + [sym_empty_literal] = ACTIONS(9435), + [sym_date_literal] = ACTIONS(9437), + [anon_sym_POUND] = ACTIONS(9435), + }, + [STATE(6564)] = { + [sym_identifier] = ACTIONS(9439), + [sym_newline] = ACTIONS(9441), + [anon_sym_COLON] = ACTIONS(9441), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9439), + [aux_sym_frm_property_statement_token1] = ACTIONS(9439), + [anon_sym_DOT] = ACTIONS(9439), + [anon_sym_BANG] = ACTIONS(9441), + [aux_sym__attribute_identifier_token1] = ACTIONS(9439), + [aux_sym_option_statement_token3] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9439), + [aux_sym_preprocessor_const_token1] = ACTIONS(9439), + [sym_static_modifier] = ACTIONS(9439), + [sym__dim_keyword] = ACTIONS(9439), + [sym__redim_keyword] = ACTIONS(9439), + [aux_sym_get_accessor_token1] = ACTIONS(9439), + [aux_sym_set_accessor_token1] = ACTIONS(9439), + [aux_sym_const_declaration_token1] = ACTIONS(9439), + [anon_sym_LPAREN] = ACTIONS(9441), + [aux_sym_as_type_clause_token2] = ACTIONS(9439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9439), + [aux_sym_visibility_token1] = ACTIONS(9439), + [aux_sym_visibility_token2] = ACTIONS(9439), + [aux_sym_elseif_fragment_token1] = ACTIONS(9439), + [aux_sym_else_fragment_token1] = ACTIONS(9439), + [aux_sym_select_statement_token1] = ACTIONS(9439), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9439), + [aux_sym__for_header_token1] = ACTIONS(9439), + [aux_sym_do_statement_token1] = ACTIONS(9439), + [aux_sym_do_condition_token1] = ACTIONS(9439), + [aux_sym_with_statement_token1] = ACTIONS(9439), + [aux_sym_exit_statement_token1] = ACTIONS(9439), + [sym_end_statement] = ACTIONS(9441), + [aux_sym_on_goto_statement_token1] = ACTIONS(9439), + [aux_sym_on_goto_statement_token2] = ACTIONS(9439), + [aux_sym_on_error_statement_token2] = ACTIONS(9439), + [sym__ambiguous_redim_statement] = ACTIONS(9441), + [aux_sym_erase_statement_token1] = ACTIONS(9439), + [aux_sym_open_statement_token1] = ACTIONS(9439), + [aux_sym_file_mode_token2] = ACTIONS(9439), + [aux_sym_file_access_token2] = ACTIONS(9439), + [aux_sym_file_lock_token2] = ACTIONS(9439), + [aux_sym_print_statement_token1] = ACTIONS(9439), + [anon_sym_PLUS] = ACTIONS(9441), + [anon_sym_DASH] = ACTIONS(9439), + [anon_sym_QMARK] = ACTIONS(9441), + [aux_sym_close_statement_token1] = ACTIONS(9439), + [aux_sym_put_statement_token1] = ACTIONS(9439), + [aux_sym_unlock_statement_token1] = ACTIONS(9439), + [aux_sym_seek_statement_token1] = ACTIONS(9439), + [sym_reset_statement] = ACTIONS(9439), + [aux_sym_raise_event_statement_token1] = ACTIONS(9439), + [sym_stop_statement] = ACTIONS(9439), + [sym_beep_statement] = ACTIONS(9439), + [aux_sym_unload_statement_token1] = ACTIONS(9439), + [aux_sym_def_type_statement_token1] = ACTIONS(9439), + [aux_sym_def_type_statement_token2] = ACTIONS(9439), + [aux_sym_def_type_statement_token3] = ACTIONS(9439), + [aux_sym_def_type_statement_token4] = ACTIONS(9439), + [aux_sym_def_type_statement_token5] = ACTIONS(9439), + [aux_sym_def_type_statement_token6] = ACTIONS(9439), + [aux_sym_def_type_statement_token7] = ACTIONS(9439), + [aux_sym_def_type_statement_token8] = ACTIONS(9439), + [aux_sym_def_type_statement_token9] = ACTIONS(9439), + [aux_sym_def_type_statement_token10] = ACTIONS(9439), + [aux_sym_def_type_statement_token11] = ACTIONS(9439), + [aux_sym_def_type_statement_token12] = ACTIONS(9439), + [aux_sym_def_type_statement_token13] = ACTIONS(9439), + [aux_sym_def_type_statement_token14] = ACTIONS(9439), + [aux_sym_call_statement_token1] = ACTIONS(9439), + [sym__ambiguous_call_statement] = ACTIONS(9439), + [aux_sym_addressof_expression_token1] = ACTIONS(9439), + [aux_sym_type_of_expression_token1] = ACTIONS(9439), + [aux_sym_unary_expression_token1] = ACTIONS(9439), + [sym_string_literal] = ACTIONS(9441), + [sym_number_literal] = ACTIONS(9441), + [aux_sym_boolean_literal_token1] = ACTIONS(9439), + [aux_sym_boolean_literal_token2] = ACTIONS(9439), + [sym_nothing_literal] = ACTIONS(9439), + [sym_null_literal] = ACTIONS(9439), + [sym_empty_literal] = ACTIONS(9439), + [sym_date_literal] = ACTIONS(9441), + [anon_sym_POUND] = ACTIONS(9439), + }, + [STATE(6565)] = { + [sym_identifier] = ACTIONS(9130), + [sym_newline] = ACTIONS(9132), + [anon_sym_COLON] = ACTIONS(9132), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9130), + [aux_sym_frm_property_statement_token1] = ACTIONS(9130), + [anon_sym_DOT] = ACTIONS(9130), + [anon_sym_BANG] = ACTIONS(9132), + [aux_sym__attribute_identifier_token1] = ACTIONS(9130), + [aux_sym_option_statement_token3] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9130), + [aux_sym_preprocessor_const_token1] = ACTIONS(9130), + [sym_static_modifier] = ACTIONS(9130), + [sym__dim_keyword] = ACTIONS(9130), + [sym__redim_keyword] = ACTIONS(9130), + [aux_sym_get_accessor_token1] = ACTIONS(9130), + [aux_sym_set_accessor_token1] = ACTIONS(9130), + [aux_sym_const_declaration_token1] = ACTIONS(9130), + [anon_sym_LPAREN] = ACTIONS(9132), + [aux_sym_as_type_clause_token2] = ACTIONS(9130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9130), + [aux_sym_visibility_token1] = ACTIONS(9130), + [aux_sym_visibility_token2] = ACTIONS(9130), + [aux_sym_elseif_fragment_token1] = ACTIONS(9130), + [aux_sym_else_fragment_token1] = ACTIONS(9130), + [aux_sym_select_statement_token1] = ACTIONS(9130), + [aux_sym__for_header_token1] = ACTIONS(9130), + [aux_sym_do_statement_token1] = ACTIONS(9130), + [aux_sym_do_condition_token1] = ACTIONS(9130), + [aux_sym_while_statement_token1] = ACTIONS(9130), + [aux_sym_with_statement_token1] = ACTIONS(9130), + [aux_sym_exit_statement_token1] = ACTIONS(9130), + [sym_end_statement] = ACTIONS(9132), + [aux_sym_on_goto_statement_token1] = ACTIONS(9130), + [aux_sym_on_goto_statement_token2] = ACTIONS(9130), + [aux_sym_on_error_statement_token2] = ACTIONS(9130), + [sym__ambiguous_redim_statement] = ACTIONS(9132), + [aux_sym_erase_statement_token1] = ACTIONS(9130), + [aux_sym_open_statement_token1] = ACTIONS(9130), + [aux_sym_file_mode_token2] = ACTIONS(9130), + [aux_sym_file_access_token2] = ACTIONS(9130), + [aux_sym_file_lock_token2] = ACTIONS(9130), + [aux_sym_print_statement_token1] = ACTIONS(9130), + [anon_sym_PLUS] = ACTIONS(9132), + [anon_sym_DASH] = ACTIONS(9130), + [anon_sym_QMARK] = ACTIONS(9132), + [aux_sym_close_statement_token1] = ACTIONS(9130), + [aux_sym_put_statement_token1] = ACTIONS(9130), + [aux_sym_unlock_statement_token1] = ACTIONS(9130), + [aux_sym_seek_statement_token1] = ACTIONS(9130), + [sym_reset_statement] = ACTIONS(9130), + [aux_sym_raise_event_statement_token1] = ACTIONS(9130), + [sym_stop_statement] = ACTIONS(9130), + [sym_beep_statement] = ACTIONS(9130), + [aux_sym_unload_statement_token1] = ACTIONS(9130), + [aux_sym_def_type_statement_token1] = ACTIONS(9130), + [aux_sym_def_type_statement_token2] = ACTIONS(9130), + [aux_sym_def_type_statement_token3] = ACTIONS(9130), + [aux_sym_def_type_statement_token4] = ACTIONS(9130), + [aux_sym_def_type_statement_token5] = ACTIONS(9130), + [aux_sym_def_type_statement_token6] = ACTIONS(9130), + [aux_sym_def_type_statement_token7] = ACTIONS(9130), + [aux_sym_def_type_statement_token8] = ACTIONS(9130), + [aux_sym_def_type_statement_token9] = ACTIONS(9130), + [aux_sym_def_type_statement_token10] = ACTIONS(9130), + [aux_sym_def_type_statement_token11] = ACTIONS(9130), + [aux_sym_def_type_statement_token12] = ACTIONS(9130), + [aux_sym_def_type_statement_token13] = ACTIONS(9130), + [aux_sym_def_type_statement_token14] = ACTIONS(9130), + [aux_sym_call_statement_token1] = ACTIONS(9130), + [sym__ambiguous_call_statement] = ACTIONS(9130), + [aux_sym_addressof_expression_token1] = ACTIONS(9130), + [aux_sym_type_of_expression_token1] = ACTIONS(9130), + [aux_sym_unary_expression_token1] = ACTIONS(9130), + [sym_string_literal] = ACTIONS(9132), + [sym_number_literal] = ACTIONS(9132), + [aux_sym_boolean_literal_token1] = ACTIONS(9130), + [aux_sym_boolean_literal_token2] = ACTIONS(9130), + [sym_nothing_literal] = ACTIONS(9130), + [sym_null_literal] = ACTIONS(9130), + [sym_empty_literal] = ACTIONS(9130), + [sym_date_literal] = ACTIONS(9132), + [anon_sym_POUND] = ACTIONS(9130), + }, + [STATE(6566)] = { + [sym_identifier] = ACTIONS(9134), + [sym_newline] = ACTIONS(9136), + [anon_sym_COLON] = ACTIONS(9136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9134), + [aux_sym_frm_property_statement_token1] = ACTIONS(9134), + [anon_sym_DOT] = ACTIONS(9134), + [anon_sym_BANG] = ACTIONS(9136), + [aux_sym__attribute_identifier_token1] = ACTIONS(9134), + [aux_sym_option_statement_token3] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9134), + [aux_sym_preprocessor_const_token1] = ACTIONS(9134), + [sym_static_modifier] = ACTIONS(9134), + [sym__dim_keyword] = ACTIONS(9134), + [sym__redim_keyword] = ACTIONS(9134), + [aux_sym_get_accessor_token1] = ACTIONS(9134), + [aux_sym_set_accessor_token1] = ACTIONS(9134), + [aux_sym_const_declaration_token1] = ACTIONS(9134), + [anon_sym_LPAREN] = ACTIONS(9136), + [aux_sym_as_type_clause_token2] = ACTIONS(9134), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9134), + [aux_sym_visibility_token1] = ACTIONS(9134), + [aux_sym_visibility_token2] = ACTIONS(9134), + [aux_sym_elseif_fragment_token1] = ACTIONS(9134), + [aux_sym_else_fragment_token1] = ACTIONS(9134), + [aux_sym_select_statement_token1] = ACTIONS(9134), + [aux_sym__for_header_token1] = ACTIONS(9134), + [aux_sym_do_statement_token1] = ACTIONS(9134), + [aux_sym_do_condition_token1] = ACTIONS(9134), + [aux_sym_while_statement_token1] = ACTIONS(9134), + [aux_sym_with_statement_token1] = ACTIONS(9134), + [aux_sym_exit_statement_token1] = ACTIONS(9134), + [sym_end_statement] = ACTIONS(9136), + [aux_sym_on_goto_statement_token1] = ACTIONS(9134), + [aux_sym_on_goto_statement_token2] = ACTIONS(9134), + [aux_sym_on_error_statement_token2] = ACTIONS(9134), + [sym__ambiguous_redim_statement] = ACTIONS(9136), + [aux_sym_erase_statement_token1] = ACTIONS(9134), + [aux_sym_open_statement_token1] = ACTIONS(9134), + [aux_sym_file_mode_token2] = ACTIONS(9134), + [aux_sym_file_access_token2] = ACTIONS(9134), + [aux_sym_file_lock_token2] = ACTIONS(9134), + [aux_sym_print_statement_token1] = ACTIONS(9134), + [anon_sym_PLUS] = ACTIONS(9136), + [anon_sym_DASH] = ACTIONS(9134), + [anon_sym_QMARK] = ACTIONS(9136), + [aux_sym_close_statement_token1] = ACTIONS(9134), + [aux_sym_put_statement_token1] = ACTIONS(9134), + [aux_sym_unlock_statement_token1] = ACTIONS(9134), + [aux_sym_seek_statement_token1] = ACTIONS(9134), + [sym_reset_statement] = ACTIONS(9134), + [aux_sym_raise_event_statement_token1] = ACTIONS(9134), + [sym_stop_statement] = ACTIONS(9134), + [sym_beep_statement] = ACTIONS(9134), + [aux_sym_unload_statement_token1] = ACTIONS(9134), + [aux_sym_def_type_statement_token1] = ACTIONS(9134), + [aux_sym_def_type_statement_token2] = ACTIONS(9134), + [aux_sym_def_type_statement_token3] = ACTIONS(9134), + [aux_sym_def_type_statement_token4] = ACTIONS(9134), + [aux_sym_def_type_statement_token5] = ACTIONS(9134), + [aux_sym_def_type_statement_token6] = ACTIONS(9134), + [aux_sym_def_type_statement_token7] = ACTIONS(9134), + [aux_sym_def_type_statement_token8] = ACTIONS(9134), + [aux_sym_def_type_statement_token9] = ACTIONS(9134), + [aux_sym_def_type_statement_token10] = ACTIONS(9134), + [aux_sym_def_type_statement_token11] = ACTIONS(9134), + [aux_sym_def_type_statement_token12] = ACTIONS(9134), + [aux_sym_def_type_statement_token13] = ACTIONS(9134), + [aux_sym_def_type_statement_token14] = ACTIONS(9134), + [aux_sym_call_statement_token1] = ACTIONS(9134), + [sym__ambiguous_call_statement] = ACTIONS(9134), + [aux_sym_addressof_expression_token1] = ACTIONS(9134), + [aux_sym_type_of_expression_token1] = ACTIONS(9134), + [aux_sym_unary_expression_token1] = ACTIONS(9134), + [sym_string_literal] = ACTIONS(9136), + [sym_number_literal] = ACTIONS(9136), + [aux_sym_boolean_literal_token1] = ACTIONS(9134), + [aux_sym_boolean_literal_token2] = ACTIONS(9134), + [sym_nothing_literal] = ACTIONS(9134), + [sym_null_literal] = ACTIONS(9134), + [sym_empty_literal] = ACTIONS(9134), + [sym_date_literal] = ACTIONS(9136), + [anon_sym_POUND] = ACTIONS(9134), + }, + [STATE(6567)] = { + [sym_identifier] = ACTIONS(9443), + [sym_newline] = ACTIONS(9445), + [anon_sym_COLON] = ACTIONS(9445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9443), + [aux_sym_frm_property_statement_token1] = ACTIONS(9443), + [anon_sym_DOT] = ACTIONS(9443), + [anon_sym_BANG] = ACTIONS(9445), + [aux_sym__attribute_identifier_token1] = ACTIONS(9443), + [aux_sym_option_statement_token3] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9443), + [aux_sym_preprocessor_const_token1] = ACTIONS(9443), + [sym_static_modifier] = ACTIONS(9443), + [sym__dim_keyword] = ACTIONS(9443), + [sym__redim_keyword] = ACTIONS(9443), + [aux_sym_get_accessor_token1] = ACTIONS(9443), + [aux_sym_set_accessor_token1] = ACTIONS(9443), + [aux_sym_const_declaration_token1] = ACTIONS(9443), + [anon_sym_LPAREN] = ACTIONS(9445), + [aux_sym_as_type_clause_token2] = ACTIONS(9443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9443), + [aux_sym_visibility_token1] = ACTIONS(9443), + [aux_sym_visibility_token2] = ACTIONS(9443), + [aux_sym_elseif_fragment_token1] = ACTIONS(9443), + [aux_sym_else_fragment_token1] = ACTIONS(9443), + [aux_sym_select_statement_token1] = ACTIONS(9443), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9443), + [aux_sym__for_header_token1] = ACTIONS(9443), + [aux_sym_do_statement_token1] = ACTIONS(9443), + [aux_sym_do_condition_token1] = ACTIONS(9443), + [aux_sym_with_statement_token1] = ACTIONS(9443), + [aux_sym_exit_statement_token1] = ACTIONS(9443), + [sym_end_statement] = ACTIONS(9445), + [aux_sym_on_goto_statement_token1] = ACTIONS(9443), + [aux_sym_on_goto_statement_token2] = ACTIONS(9443), + [aux_sym_on_error_statement_token2] = ACTIONS(9443), + [sym__ambiguous_redim_statement] = ACTIONS(9445), + [aux_sym_erase_statement_token1] = ACTIONS(9443), + [aux_sym_open_statement_token1] = ACTIONS(9443), + [aux_sym_file_mode_token2] = ACTIONS(9443), + [aux_sym_file_access_token2] = ACTIONS(9443), + [aux_sym_file_lock_token2] = ACTIONS(9443), + [aux_sym_print_statement_token1] = ACTIONS(9443), + [anon_sym_PLUS] = ACTIONS(9445), + [anon_sym_DASH] = ACTIONS(9443), + [anon_sym_QMARK] = ACTIONS(9445), + [aux_sym_close_statement_token1] = ACTIONS(9443), + [aux_sym_put_statement_token1] = ACTIONS(9443), + [aux_sym_unlock_statement_token1] = ACTIONS(9443), + [aux_sym_seek_statement_token1] = ACTIONS(9443), + [sym_reset_statement] = ACTIONS(9443), + [aux_sym_raise_event_statement_token1] = ACTIONS(9443), + [sym_stop_statement] = ACTIONS(9443), + [sym_beep_statement] = ACTIONS(9443), + [aux_sym_unload_statement_token1] = ACTIONS(9443), + [aux_sym_def_type_statement_token1] = ACTIONS(9443), + [aux_sym_def_type_statement_token2] = ACTIONS(9443), + [aux_sym_def_type_statement_token3] = ACTIONS(9443), + [aux_sym_def_type_statement_token4] = ACTIONS(9443), + [aux_sym_def_type_statement_token5] = ACTIONS(9443), + [aux_sym_def_type_statement_token6] = ACTIONS(9443), + [aux_sym_def_type_statement_token7] = ACTIONS(9443), + [aux_sym_def_type_statement_token8] = ACTIONS(9443), + [aux_sym_def_type_statement_token9] = ACTIONS(9443), + [aux_sym_def_type_statement_token10] = ACTIONS(9443), + [aux_sym_def_type_statement_token11] = ACTIONS(9443), + [aux_sym_def_type_statement_token12] = ACTIONS(9443), + [aux_sym_def_type_statement_token13] = ACTIONS(9443), + [aux_sym_def_type_statement_token14] = ACTIONS(9443), + [aux_sym_call_statement_token1] = ACTIONS(9443), + [sym__ambiguous_call_statement] = ACTIONS(9443), + [aux_sym_addressof_expression_token1] = ACTIONS(9443), + [aux_sym_type_of_expression_token1] = ACTIONS(9443), + [aux_sym_unary_expression_token1] = ACTIONS(9443), + [sym_string_literal] = ACTIONS(9445), + [sym_number_literal] = ACTIONS(9445), + [aux_sym_boolean_literal_token1] = ACTIONS(9443), + [aux_sym_boolean_literal_token2] = ACTIONS(9443), + [sym_nothing_literal] = ACTIONS(9443), + [sym_null_literal] = ACTIONS(9443), + [sym_empty_literal] = ACTIONS(9443), + [sym_date_literal] = ACTIONS(9445), + [anon_sym_POUND] = ACTIONS(9443), + }, + [STATE(6568)] = { + [sym_identifier] = ACTIONS(9447), + [sym_newline] = ACTIONS(9449), + [anon_sym_COLON] = ACTIONS(9449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9447), + [aux_sym_frm_property_statement_token1] = ACTIONS(9447), + [anon_sym_DOT] = ACTIONS(9447), + [anon_sym_BANG] = ACTIONS(9449), + [aux_sym__attribute_identifier_token1] = ACTIONS(9447), + [aux_sym_option_statement_token3] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9447), + [aux_sym_preprocessor_const_token1] = ACTIONS(9447), + [sym_static_modifier] = ACTIONS(9447), + [sym__dim_keyword] = ACTIONS(9447), + [sym__redim_keyword] = ACTIONS(9447), + [aux_sym_get_accessor_token1] = ACTIONS(9447), + [aux_sym_set_accessor_token1] = ACTIONS(9447), + [aux_sym_const_declaration_token1] = ACTIONS(9447), + [anon_sym_LPAREN] = ACTIONS(9449), + [aux_sym_as_type_clause_token2] = ACTIONS(9447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9447), + [aux_sym_visibility_token1] = ACTIONS(9447), + [aux_sym_visibility_token2] = ACTIONS(9447), + [aux_sym_elseif_fragment_token1] = ACTIONS(9447), + [aux_sym_else_fragment_token1] = ACTIONS(9447), + [aux_sym_select_statement_token1] = ACTIONS(9447), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9447), + [aux_sym__for_header_token1] = ACTIONS(9447), + [aux_sym_do_statement_token1] = ACTIONS(9447), + [aux_sym_do_condition_token1] = ACTIONS(9447), + [aux_sym_with_statement_token1] = ACTIONS(9447), + [aux_sym_exit_statement_token1] = ACTIONS(9447), + [sym_end_statement] = ACTIONS(9449), + [aux_sym_on_goto_statement_token1] = ACTIONS(9447), + [aux_sym_on_goto_statement_token2] = ACTIONS(9447), + [aux_sym_on_error_statement_token2] = ACTIONS(9447), + [sym__ambiguous_redim_statement] = ACTIONS(9449), + [aux_sym_erase_statement_token1] = ACTIONS(9447), + [aux_sym_open_statement_token1] = ACTIONS(9447), + [aux_sym_file_mode_token2] = ACTIONS(9447), + [aux_sym_file_access_token2] = ACTIONS(9447), + [aux_sym_file_lock_token2] = ACTIONS(9447), + [aux_sym_print_statement_token1] = ACTIONS(9447), + [anon_sym_PLUS] = ACTIONS(9449), + [anon_sym_DASH] = ACTIONS(9447), + [anon_sym_QMARK] = ACTIONS(9449), + [aux_sym_close_statement_token1] = ACTIONS(9447), + [aux_sym_put_statement_token1] = ACTIONS(9447), + [aux_sym_unlock_statement_token1] = ACTIONS(9447), + [aux_sym_seek_statement_token1] = ACTIONS(9447), + [sym_reset_statement] = ACTIONS(9447), + [aux_sym_raise_event_statement_token1] = ACTIONS(9447), + [sym_stop_statement] = ACTIONS(9447), + [sym_beep_statement] = ACTIONS(9447), + [aux_sym_unload_statement_token1] = ACTIONS(9447), + [aux_sym_def_type_statement_token1] = ACTIONS(9447), + [aux_sym_def_type_statement_token2] = ACTIONS(9447), + [aux_sym_def_type_statement_token3] = ACTIONS(9447), + [aux_sym_def_type_statement_token4] = ACTIONS(9447), + [aux_sym_def_type_statement_token5] = ACTIONS(9447), + [aux_sym_def_type_statement_token6] = ACTIONS(9447), + [aux_sym_def_type_statement_token7] = ACTIONS(9447), + [aux_sym_def_type_statement_token8] = ACTIONS(9447), + [aux_sym_def_type_statement_token9] = ACTIONS(9447), + [aux_sym_def_type_statement_token10] = ACTIONS(9447), + [aux_sym_def_type_statement_token11] = ACTIONS(9447), + [aux_sym_def_type_statement_token12] = ACTIONS(9447), + [aux_sym_def_type_statement_token13] = ACTIONS(9447), + [aux_sym_def_type_statement_token14] = ACTIONS(9447), + [aux_sym_call_statement_token1] = ACTIONS(9447), + [sym__ambiguous_call_statement] = ACTIONS(9447), + [aux_sym_addressof_expression_token1] = ACTIONS(9447), + [aux_sym_type_of_expression_token1] = ACTIONS(9447), + [aux_sym_unary_expression_token1] = ACTIONS(9447), + [sym_string_literal] = ACTIONS(9449), + [sym_number_literal] = ACTIONS(9449), + [aux_sym_boolean_literal_token1] = ACTIONS(9447), + [aux_sym_boolean_literal_token2] = ACTIONS(9447), + [sym_nothing_literal] = ACTIONS(9447), + [sym_null_literal] = ACTIONS(9447), + [sym_empty_literal] = ACTIONS(9447), + [sym_date_literal] = ACTIONS(9449), + [anon_sym_POUND] = ACTIONS(9447), + }, + [STATE(6569)] = { + [sym_identifier] = ACTIONS(9451), + [sym_newline] = ACTIONS(9453), + [anon_sym_COLON] = ACTIONS(9453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9451), + [aux_sym_frm_property_statement_token1] = ACTIONS(9451), + [anon_sym_DOT] = ACTIONS(9451), + [anon_sym_BANG] = ACTIONS(9453), + [aux_sym__attribute_identifier_token1] = ACTIONS(9451), + [aux_sym_option_statement_token3] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9451), + [aux_sym_preprocessor_const_token1] = ACTIONS(9451), + [sym_static_modifier] = ACTIONS(9451), + [sym__dim_keyword] = ACTIONS(9451), + [sym__redim_keyword] = ACTIONS(9451), + [aux_sym_get_accessor_token1] = ACTIONS(9451), + [aux_sym_set_accessor_token1] = ACTIONS(9451), + [aux_sym_const_declaration_token1] = ACTIONS(9451), + [anon_sym_LPAREN] = ACTIONS(9453), + [aux_sym_as_type_clause_token2] = ACTIONS(9451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9451), + [aux_sym_visibility_token1] = ACTIONS(9451), + [aux_sym_visibility_token2] = ACTIONS(9451), + [aux_sym_elseif_fragment_token1] = ACTIONS(9451), + [aux_sym_else_fragment_token1] = ACTIONS(9451), + [aux_sym_select_statement_token1] = ACTIONS(9451), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9451), + [aux_sym__for_header_token1] = ACTIONS(9451), + [aux_sym_do_statement_token1] = ACTIONS(9451), + [aux_sym_do_condition_token1] = ACTIONS(9451), + [aux_sym_with_statement_token1] = ACTIONS(9451), + [aux_sym_exit_statement_token1] = ACTIONS(9451), + [sym_end_statement] = ACTIONS(9453), + [aux_sym_on_goto_statement_token1] = ACTIONS(9451), + [aux_sym_on_goto_statement_token2] = ACTIONS(9451), + [aux_sym_on_error_statement_token2] = ACTIONS(9451), + [sym__ambiguous_redim_statement] = ACTIONS(9453), + [aux_sym_erase_statement_token1] = ACTIONS(9451), + [aux_sym_open_statement_token1] = ACTIONS(9451), + [aux_sym_file_mode_token2] = ACTIONS(9451), + [aux_sym_file_access_token2] = ACTIONS(9451), + [aux_sym_file_lock_token2] = ACTIONS(9451), + [aux_sym_print_statement_token1] = ACTIONS(9451), + [anon_sym_PLUS] = ACTIONS(9453), + [anon_sym_DASH] = ACTIONS(9451), + [anon_sym_QMARK] = ACTIONS(9453), + [aux_sym_close_statement_token1] = ACTIONS(9451), + [aux_sym_put_statement_token1] = ACTIONS(9451), + [aux_sym_unlock_statement_token1] = ACTIONS(9451), + [aux_sym_seek_statement_token1] = ACTIONS(9451), + [sym_reset_statement] = ACTIONS(9451), + [aux_sym_raise_event_statement_token1] = ACTIONS(9451), + [sym_stop_statement] = ACTIONS(9451), + [sym_beep_statement] = ACTIONS(9451), + [aux_sym_unload_statement_token1] = ACTIONS(9451), + [aux_sym_def_type_statement_token1] = ACTIONS(9451), + [aux_sym_def_type_statement_token2] = ACTIONS(9451), + [aux_sym_def_type_statement_token3] = ACTIONS(9451), + [aux_sym_def_type_statement_token4] = ACTIONS(9451), + [aux_sym_def_type_statement_token5] = ACTIONS(9451), + [aux_sym_def_type_statement_token6] = ACTIONS(9451), + [aux_sym_def_type_statement_token7] = ACTIONS(9451), + [aux_sym_def_type_statement_token8] = ACTIONS(9451), + [aux_sym_def_type_statement_token9] = ACTIONS(9451), + [aux_sym_def_type_statement_token10] = ACTIONS(9451), + [aux_sym_def_type_statement_token11] = ACTIONS(9451), + [aux_sym_def_type_statement_token12] = ACTIONS(9451), + [aux_sym_def_type_statement_token13] = ACTIONS(9451), + [aux_sym_def_type_statement_token14] = ACTIONS(9451), + [aux_sym_call_statement_token1] = ACTIONS(9451), + [sym__ambiguous_call_statement] = ACTIONS(9451), + [aux_sym_addressof_expression_token1] = ACTIONS(9451), + [aux_sym_type_of_expression_token1] = ACTIONS(9451), + [aux_sym_unary_expression_token1] = ACTIONS(9451), + [sym_string_literal] = ACTIONS(9453), + [sym_number_literal] = ACTIONS(9453), + [aux_sym_boolean_literal_token1] = ACTIONS(9451), + [aux_sym_boolean_literal_token2] = ACTIONS(9451), + [sym_nothing_literal] = ACTIONS(9451), + [sym_null_literal] = ACTIONS(9451), + [sym_empty_literal] = ACTIONS(9451), + [sym_date_literal] = ACTIONS(9453), + [anon_sym_POUND] = ACTIONS(9451), + }, + [STATE(6570)] = { + [sym_identifier] = ACTIONS(9264), + [sym_newline] = ACTIONS(9266), + [anon_sym_COLON] = ACTIONS(9266), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9264), + [aux_sym_frm_property_statement_token1] = ACTIONS(9264), + [anon_sym_DOT] = ACTIONS(9264), + [anon_sym_BANG] = ACTIONS(9266), + [aux_sym__attribute_identifier_token1] = ACTIONS(9264), + [aux_sym_option_statement_token3] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9264), + [aux_sym_preprocessor_const_token1] = ACTIONS(9264), + [sym_static_modifier] = ACTIONS(9264), + [sym__dim_keyword] = ACTIONS(9264), + [sym__redim_keyword] = ACTIONS(9264), + [aux_sym_get_accessor_token1] = ACTIONS(9264), + [aux_sym_set_accessor_token1] = ACTIONS(9264), + [aux_sym_const_declaration_token1] = ACTIONS(9264), + [anon_sym_LPAREN] = ACTIONS(9266), + [aux_sym_as_type_clause_token2] = ACTIONS(9264), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9264), + [aux_sym_visibility_token1] = ACTIONS(9264), + [aux_sym_visibility_token2] = ACTIONS(9264), + [aux_sym_elseif_fragment_token1] = ACTIONS(9264), + [aux_sym_else_fragment_token1] = ACTIONS(9264), + [aux_sym_select_statement_token1] = ACTIONS(9264), + [aux_sym_select_statement_token2] = ACTIONS(9264), + [aux_sym__for_header_token1] = ACTIONS(9264), + [aux_sym_do_statement_token1] = ACTIONS(9264), + [aux_sym_do_condition_token1] = ACTIONS(9264), + [aux_sym_with_statement_token1] = ACTIONS(9264), + [aux_sym_exit_statement_token1] = ACTIONS(9264), + [sym_end_statement] = ACTIONS(9266), + [aux_sym_on_goto_statement_token1] = ACTIONS(9264), + [aux_sym_on_goto_statement_token2] = ACTIONS(9264), + [aux_sym_on_error_statement_token2] = ACTIONS(9264), + [sym__ambiguous_redim_statement] = ACTIONS(9266), + [aux_sym_erase_statement_token1] = ACTIONS(9264), + [aux_sym_open_statement_token1] = ACTIONS(9264), + [aux_sym_file_mode_token2] = ACTIONS(9264), + [aux_sym_file_access_token2] = ACTIONS(9264), + [aux_sym_file_lock_token2] = ACTIONS(9264), + [aux_sym_print_statement_token1] = ACTIONS(9264), + [anon_sym_PLUS] = ACTIONS(9266), + [anon_sym_DASH] = ACTIONS(9264), + [anon_sym_QMARK] = ACTIONS(9266), + [aux_sym_close_statement_token1] = ACTIONS(9264), + [aux_sym_put_statement_token1] = ACTIONS(9264), + [aux_sym_unlock_statement_token1] = ACTIONS(9264), + [aux_sym_seek_statement_token1] = ACTIONS(9264), + [sym_reset_statement] = ACTIONS(9264), + [aux_sym_raise_event_statement_token1] = ACTIONS(9264), + [sym_stop_statement] = ACTIONS(9264), + [sym_beep_statement] = ACTIONS(9264), + [aux_sym_unload_statement_token1] = ACTIONS(9264), + [aux_sym_def_type_statement_token1] = ACTIONS(9264), + [aux_sym_def_type_statement_token2] = ACTIONS(9264), + [aux_sym_def_type_statement_token3] = ACTIONS(9264), + [aux_sym_def_type_statement_token4] = ACTIONS(9264), + [aux_sym_def_type_statement_token5] = ACTIONS(9264), + [aux_sym_def_type_statement_token6] = ACTIONS(9264), + [aux_sym_def_type_statement_token7] = ACTIONS(9264), + [aux_sym_def_type_statement_token8] = ACTIONS(9264), + [aux_sym_def_type_statement_token9] = ACTIONS(9264), + [aux_sym_def_type_statement_token10] = ACTIONS(9264), + [aux_sym_def_type_statement_token11] = ACTIONS(9264), + [aux_sym_def_type_statement_token12] = ACTIONS(9264), + [aux_sym_def_type_statement_token13] = ACTIONS(9264), + [aux_sym_def_type_statement_token14] = ACTIONS(9264), + [aux_sym_call_statement_token1] = ACTIONS(9264), + [sym__ambiguous_call_statement] = ACTIONS(9264), + [aux_sym_addressof_expression_token1] = ACTIONS(9264), + [aux_sym_type_of_expression_token1] = ACTIONS(9264), + [aux_sym_unary_expression_token1] = ACTIONS(9264), + [sym_string_literal] = ACTIONS(9266), + [sym_number_literal] = ACTIONS(9266), + [aux_sym_boolean_literal_token1] = ACTIONS(9264), + [aux_sym_boolean_literal_token2] = ACTIONS(9264), + [sym_nothing_literal] = ACTIONS(9264), + [sym_null_literal] = ACTIONS(9264), + [sym_empty_literal] = ACTIONS(9264), + [sym_date_literal] = ACTIONS(9266), + [anon_sym_POUND] = ACTIONS(9264), + }, + [STATE(6571)] = { + [sym_identifier] = ACTIONS(9332), + [sym_newline] = ACTIONS(9334), + [anon_sym_COLON] = ACTIONS(9334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9332), + [aux_sym_frm_property_statement_token1] = ACTIONS(9332), + [anon_sym_DOT] = ACTIONS(9332), + [anon_sym_BANG] = ACTIONS(9334), + [aux_sym__attribute_identifier_token1] = ACTIONS(9332), + [aux_sym_option_statement_token3] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9332), + [aux_sym_preprocessor_const_token1] = ACTIONS(9332), + [sym_static_modifier] = ACTIONS(9332), + [sym__dim_keyword] = ACTIONS(9332), + [sym__redim_keyword] = ACTIONS(9332), + [aux_sym_get_accessor_token1] = ACTIONS(9332), + [aux_sym_set_accessor_token1] = ACTIONS(9332), + [aux_sym_const_declaration_token1] = ACTIONS(9332), + [anon_sym_LPAREN] = ACTIONS(9334), + [aux_sym_as_type_clause_token2] = ACTIONS(9332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9332), + [aux_sym_visibility_token1] = ACTIONS(9332), + [aux_sym_visibility_token2] = ACTIONS(9332), + [aux_sym_elseif_fragment_token1] = ACTIONS(9332), + [aux_sym_else_fragment_token1] = ACTIONS(9332), + [aux_sym_select_statement_token1] = ACTIONS(9332), + [aux_sym__for_header_token1] = ACTIONS(9332), + [aux_sym_do_statement_token1] = ACTIONS(9332), + [aux_sym_do_statement_token2] = ACTIONS(9332), + [aux_sym_do_condition_token1] = ACTIONS(9332), + [aux_sym_with_statement_token1] = ACTIONS(9332), + [aux_sym_exit_statement_token1] = ACTIONS(9332), + [sym_end_statement] = ACTIONS(9334), + [aux_sym_on_goto_statement_token1] = ACTIONS(9332), + [aux_sym_on_goto_statement_token2] = ACTIONS(9332), + [aux_sym_on_error_statement_token2] = ACTIONS(9332), + [sym__ambiguous_redim_statement] = ACTIONS(9334), + [aux_sym_erase_statement_token1] = ACTIONS(9332), + [aux_sym_open_statement_token1] = ACTIONS(9332), + [aux_sym_file_mode_token2] = ACTIONS(9332), + [aux_sym_file_access_token2] = ACTIONS(9332), + [aux_sym_file_lock_token2] = ACTIONS(9332), + [aux_sym_print_statement_token1] = ACTIONS(9332), + [anon_sym_PLUS] = ACTIONS(9334), + [anon_sym_DASH] = ACTIONS(9332), + [anon_sym_QMARK] = ACTIONS(9334), + [aux_sym_close_statement_token1] = ACTIONS(9332), + [aux_sym_put_statement_token1] = ACTIONS(9332), + [aux_sym_unlock_statement_token1] = ACTIONS(9332), + [aux_sym_seek_statement_token1] = ACTIONS(9332), + [sym_reset_statement] = ACTIONS(9332), + [aux_sym_raise_event_statement_token1] = ACTIONS(9332), + [sym_stop_statement] = ACTIONS(9332), + [sym_beep_statement] = ACTIONS(9332), + [aux_sym_unload_statement_token1] = ACTIONS(9332), + [aux_sym_def_type_statement_token1] = ACTIONS(9332), + [aux_sym_def_type_statement_token2] = ACTIONS(9332), + [aux_sym_def_type_statement_token3] = ACTIONS(9332), + [aux_sym_def_type_statement_token4] = ACTIONS(9332), + [aux_sym_def_type_statement_token5] = ACTIONS(9332), + [aux_sym_def_type_statement_token6] = ACTIONS(9332), + [aux_sym_def_type_statement_token7] = ACTIONS(9332), + [aux_sym_def_type_statement_token8] = ACTIONS(9332), + [aux_sym_def_type_statement_token9] = ACTIONS(9332), + [aux_sym_def_type_statement_token10] = ACTIONS(9332), + [aux_sym_def_type_statement_token11] = ACTIONS(9332), + [aux_sym_def_type_statement_token12] = ACTIONS(9332), + [aux_sym_def_type_statement_token13] = ACTIONS(9332), + [aux_sym_def_type_statement_token14] = ACTIONS(9332), + [aux_sym_call_statement_token1] = ACTIONS(9332), + [sym__ambiguous_call_statement] = ACTIONS(9332), + [aux_sym_addressof_expression_token1] = ACTIONS(9332), + [aux_sym_type_of_expression_token1] = ACTIONS(9332), + [aux_sym_unary_expression_token1] = ACTIONS(9332), + [sym_string_literal] = ACTIONS(9334), + [sym_number_literal] = ACTIONS(9334), + [aux_sym_boolean_literal_token1] = ACTIONS(9332), + [aux_sym_boolean_literal_token2] = ACTIONS(9332), + [sym_nothing_literal] = ACTIONS(9332), + [sym_null_literal] = ACTIONS(9332), + [sym_empty_literal] = ACTIONS(9332), + [sym_date_literal] = ACTIONS(9334), + [anon_sym_POUND] = ACTIONS(9332), + }, + [STATE(6572)] = { + [sym_identifier] = ACTIONS(8745), + [sym_newline] = ACTIONS(8747), + [anon_sym_COLON] = ACTIONS(8747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8745), + [aux_sym_frm_property_statement_token1] = ACTIONS(8745), + [anon_sym_DOT] = ACTIONS(8745), + [anon_sym_BANG] = ACTIONS(8747), + [aux_sym__attribute_identifier_token1] = ACTIONS(8745), + [aux_sym_option_statement_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8745), + [aux_sym_preprocessor_const_token1] = ACTIONS(8745), + [sym_static_modifier] = ACTIONS(8745), + [sym__dim_keyword] = ACTIONS(8745), + [sym__redim_keyword] = ACTIONS(8745), + [aux_sym_get_accessor_token1] = ACTIONS(8745), + [aux_sym_set_accessor_token1] = ACTIONS(8745), + [aux_sym_const_declaration_token1] = ACTIONS(8745), + [anon_sym_LPAREN] = ACTIONS(8747), + [aux_sym_as_type_clause_token2] = ACTIONS(8745), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8745), + [aux_sym_visibility_token1] = ACTIONS(8745), + [aux_sym_visibility_token2] = ACTIONS(8745), + [aux_sym_elseif_fragment_token1] = ACTIONS(8745), + [aux_sym_else_fragment_token1] = ACTIONS(8745), + [aux_sym_select_statement_token1] = ACTIONS(8745), + [aux_sym__for_header_token1] = ACTIONS(8745), + [aux_sym_do_statement_token1] = ACTIONS(8745), + [aux_sym_do_condition_token1] = ACTIONS(8745), + [aux_sym_with_statement_token1] = ACTIONS(8745), + [aux_sym_exit_statement_token1] = ACTIONS(8745), + [sym_end_statement] = ACTIONS(8747), + [aux_sym_on_goto_statement_token1] = ACTIONS(8745), + [aux_sym_on_goto_statement_token2] = ACTIONS(8745), + [aux_sym_on_error_statement_token2] = ACTIONS(8745), + [sym__ambiguous_redim_statement] = ACTIONS(8747), + [aux_sym_erase_statement_token1] = ACTIONS(8745), + [aux_sym_open_statement_token1] = ACTIONS(8745), + [aux_sym_file_mode_token2] = ACTIONS(8745), + [aux_sym_file_access_token2] = ACTIONS(8745), + [aux_sym_file_lock_token2] = ACTIONS(8745), + [aux_sym_print_statement_token1] = ACTIONS(8745), + [anon_sym_PLUS] = ACTIONS(8747), + [anon_sym_DASH] = ACTIONS(8745), + [anon_sym_QMARK] = ACTIONS(8747), + [aux_sym_close_statement_token1] = ACTIONS(8745), + [aux_sym_put_statement_token1] = ACTIONS(8745), + [aux_sym_unlock_statement_token1] = ACTIONS(8745), + [aux_sym_seek_statement_token1] = ACTIONS(8745), + [sym_reset_statement] = ACTIONS(8745), + [aux_sym_raise_event_statement_token1] = ACTIONS(8745), + [sym_stop_statement] = ACTIONS(8745), + [sym_beep_statement] = ACTIONS(8745), + [aux_sym_unload_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token2] = ACTIONS(8745), + [aux_sym_def_type_statement_token3] = ACTIONS(8745), + [aux_sym_def_type_statement_token4] = ACTIONS(8745), + [aux_sym_def_type_statement_token5] = ACTIONS(8745), + [aux_sym_def_type_statement_token6] = ACTIONS(8745), + [aux_sym_def_type_statement_token7] = ACTIONS(8745), + [aux_sym_def_type_statement_token8] = ACTIONS(8745), + [aux_sym_def_type_statement_token9] = ACTIONS(8745), + [aux_sym_def_type_statement_token10] = ACTIONS(8745), + [aux_sym_def_type_statement_token11] = ACTIONS(8745), + [aux_sym_def_type_statement_token12] = ACTIONS(8745), + [aux_sym_def_type_statement_token13] = ACTIONS(8745), + [aux_sym_def_type_statement_token14] = ACTIONS(8745), + [aux_sym_call_statement_token1] = ACTIONS(8745), + [sym__ambiguous_call_statement] = ACTIONS(8745), + [aux_sym_addressof_expression_token1] = ACTIONS(8745), + [aux_sym_type_of_expression_token1] = ACTIONS(8745), + [aux_sym_unary_expression_token1] = ACTIONS(8745), + [sym_string_literal] = ACTIONS(8747), + [sym_number_literal] = ACTIONS(8747), + [aux_sym_boolean_literal_token1] = ACTIONS(8745), + [aux_sym_boolean_literal_token2] = ACTIONS(8745), + [sym_nothing_literal] = ACTIONS(8745), + [sym_null_literal] = ACTIONS(8745), + [sym_empty_literal] = ACTIONS(8745), + [sym_date_literal] = ACTIONS(8747), + [anon_sym_POUND] = ACTIONS(8745), + }, + [STATE(6573)] = { + [sym_identifier] = ACTIONS(8839), + [sym_newline] = ACTIONS(8841), + [anon_sym_COLON] = ACTIONS(8841), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8839), + [aux_sym_frm_property_statement_token1] = ACTIONS(8839), + [anon_sym_DOT] = ACTIONS(8839), + [anon_sym_BANG] = ACTIONS(8841), + [aux_sym__attribute_identifier_token1] = ACTIONS(8839), + [aux_sym_option_statement_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8839), + [aux_sym_preprocessor_const_token1] = ACTIONS(8839), + [sym_static_modifier] = ACTIONS(8839), + [sym__dim_keyword] = ACTIONS(8839), + [sym__redim_keyword] = ACTIONS(8839), + [aux_sym_get_accessor_token1] = ACTIONS(8839), + [aux_sym_set_accessor_token1] = ACTIONS(8839), + [aux_sym_const_declaration_token1] = ACTIONS(8839), + [anon_sym_LPAREN] = ACTIONS(8841), + [aux_sym_as_type_clause_token2] = ACTIONS(8839), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8839), + [aux_sym_visibility_token1] = ACTIONS(8839), + [aux_sym_visibility_token2] = ACTIONS(8839), + [aux_sym_elseif_fragment_token1] = ACTIONS(8839), + [aux_sym_else_fragment_token1] = ACTIONS(8839), + [aux_sym_select_statement_token1] = ACTIONS(8839), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8839), + [aux_sym__for_header_token1] = ACTIONS(8839), + [aux_sym_do_statement_token1] = ACTIONS(8839), + [aux_sym_do_condition_token1] = ACTIONS(8839), + [aux_sym_with_statement_token1] = ACTIONS(8839), + [aux_sym_exit_statement_token1] = ACTIONS(8839), + [sym_end_statement] = ACTIONS(8841), + [aux_sym_on_goto_statement_token1] = ACTIONS(8839), + [aux_sym_on_goto_statement_token2] = ACTIONS(8839), + [aux_sym_on_error_statement_token2] = ACTIONS(8839), + [sym__ambiguous_redim_statement] = ACTIONS(8841), + [aux_sym_erase_statement_token1] = ACTIONS(8839), + [aux_sym_open_statement_token1] = ACTIONS(8839), + [aux_sym_file_mode_token2] = ACTIONS(8839), + [aux_sym_file_access_token2] = ACTIONS(8839), + [aux_sym_file_lock_token2] = ACTIONS(8839), + [aux_sym_print_statement_token1] = ACTIONS(8839), + [anon_sym_PLUS] = ACTIONS(8841), + [anon_sym_DASH] = ACTIONS(8839), + [anon_sym_QMARK] = ACTIONS(8841), + [aux_sym_close_statement_token1] = ACTIONS(8839), + [aux_sym_put_statement_token1] = ACTIONS(8839), + [aux_sym_unlock_statement_token1] = ACTIONS(8839), + [aux_sym_seek_statement_token1] = ACTIONS(8839), + [sym_reset_statement] = ACTIONS(8839), + [aux_sym_raise_event_statement_token1] = ACTIONS(8839), + [sym_stop_statement] = ACTIONS(8839), + [sym_beep_statement] = ACTIONS(8839), + [aux_sym_unload_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token2] = ACTIONS(8839), + [aux_sym_def_type_statement_token3] = ACTIONS(8839), + [aux_sym_def_type_statement_token4] = ACTIONS(8839), + [aux_sym_def_type_statement_token5] = ACTIONS(8839), + [aux_sym_def_type_statement_token6] = ACTIONS(8839), + [aux_sym_def_type_statement_token7] = ACTIONS(8839), + [aux_sym_def_type_statement_token8] = ACTIONS(8839), + [aux_sym_def_type_statement_token9] = ACTIONS(8839), + [aux_sym_def_type_statement_token10] = ACTIONS(8839), + [aux_sym_def_type_statement_token11] = ACTIONS(8839), + [aux_sym_def_type_statement_token12] = ACTIONS(8839), + [aux_sym_def_type_statement_token13] = ACTIONS(8839), + [aux_sym_def_type_statement_token14] = ACTIONS(8839), + [aux_sym_call_statement_token1] = ACTIONS(8839), + [sym__ambiguous_call_statement] = ACTIONS(8839), + [aux_sym_addressof_expression_token1] = ACTIONS(8839), + [aux_sym_type_of_expression_token1] = ACTIONS(8839), + [aux_sym_unary_expression_token1] = ACTIONS(8839), + [sym_string_literal] = ACTIONS(8841), + [sym_number_literal] = ACTIONS(8841), + [aux_sym_boolean_literal_token1] = ACTIONS(8839), + [aux_sym_boolean_literal_token2] = ACTIONS(8839), + [sym_nothing_literal] = ACTIONS(8839), + [sym_null_literal] = ACTIONS(8839), + [sym_empty_literal] = ACTIONS(8839), + [sym_date_literal] = ACTIONS(8841), + [anon_sym_POUND] = ACTIONS(8839), + }, + [STATE(6574)] = { + [sym_identifier] = ACTIONS(9336), + [sym_newline] = ACTIONS(9338), + [anon_sym_COLON] = ACTIONS(9338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9336), + [aux_sym_frm_property_statement_token1] = ACTIONS(9336), + [anon_sym_DOT] = ACTIONS(9336), + [anon_sym_BANG] = ACTIONS(9338), + [aux_sym__attribute_identifier_token1] = ACTIONS(9336), + [aux_sym_option_statement_token3] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9336), + [aux_sym_preprocessor_const_token1] = ACTIONS(9336), + [sym_static_modifier] = ACTIONS(9336), + [sym__dim_keyword] = ACTIONS(9336), + [sym__redim_keyword] = ACTIONS(9336), + [aux_sym_get_accessor_token1] = ACTIONS(9336), + [aux_sym_set_accessor_token1] = ACTIONS(9336), + [aux_sym_const_declaration_token1] = ACTIONS(9336), + [anon_sym_LPAREN] = ACTIONS(9338), + [aux_sym_as_type_clause_token2] = ACTIONS(9336), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9336), + [aux_sym_visibility_token1] = ACTIONS(9336), + [aux_sym_visibility_token2] = ACTIONS(9336), + [aux_sym_elseif_fragment_token1] = ACTIONS(9336), + [aux_sym_else_fragment_token1] = ACTIONS(9336), + [aux_sym_select_statement_token1] = ACTIONS(9336), + [aux_sym__for_header_token1] = ACTIONS(9336), + [aux_sym_do_statement_token1] = ACTIONS(9336), + [aux_sym_do_statement_token2] = ACTIONS(9336), + [aux_sym_do_condition_token1] = ACTIONS(9336), + [aux_sym_with_statement_token1] = ACTIONS(9336), + [aux_sym_exit_statement_token1] = ACTIONS(9336), + [sym_end_statement] = ACTIONS(9338), + [aux_sym_on_goto_statement_token1] = ACTIONS(9336), + [aux_sym_on_goto_statement_token2] = ACTIONS(9336), + [aux_sym_on_error_statement_token2] = ACTIONS(9336), + [sym__ambiguous_redim_statement] = ACTIONS(9338), + [aux_sym_erase_statement_token1] = ACTIONS(9336), + [aux_sym_open_statement_token1] = ACTIONS(9336), + [aux_sym_file_mode_token2] = ACTIONS(9336), + [aux_sym_file_access_token2] = ACTIONS(9336), + [aux_sym_file_lock_token2] = ACTIONS(9336), + [aux_sym_print_statement_token1] = ACTIONS(9336), + [anon_sym_PLUS] = ACTIONS(9338), + [anon_sym_DASH] = ACTIONS(9336), + [anon_sym_QMARK] = ACTIONS(9338), + [aux_sym_close_statement_token1] = ACTIONS(9336), + [aux_sym_put_statement_token1] = ACTIONS(9336), + [aux_sym_unlock_statement_token1] = ACTIONS(9336), + [aux_sym_seek_statement_token1] = ACTIONS(9336), + [sym_reset_statement] = ACTIONS(9336), + [aux_sym_raise_event_statement_token1] = ACTIONS(9336), + [sym_stop_statement] = ACTIONS(9336), + [sym_beep_statement] = ACTIONS(9336), + [aux_sym_unload_statement_token1] = ACTIONS(9336), + [aux_sym_def_type_statement_token1] = ACTIONS(9336), + [aux_sym_def_type_statement_token2] = ACTIONS(9336), + [aux_sym_def_type_statement_token3] = ACTIONS(9336), + [aux_sym_def_type_statement_token4] = ACTIONS(9336), + [aux_sym_def_type_statement_token5] = ACTIONS(9336), + [aux_sym_def_type_statement_token6] = ACTIONS(9336), + [aux_sym_def_type_statement_token7] = ACTIONS(9336), + [aux_sym_def_type_statement_token8] = ACTIONS(9336), + [aux_sym_def_type_statement_token9] = ACTIONS(9336), + [aux_sym_def_type_statement_token10] = ACTIONS(9336), + [aux_sym_def_type_statement_token11] = ACTIONS(9336), + [aux_sym_def_type_statement_token12] = ACTIONS(9336), + [aux_sym_def_type_statement_token13] = ACTIONS(9336), + [aux_sym_def_type_statement_token14] = ACTIONS(9336), + [aux_sym_call_statement_token1] = ACTIONS(9336), + [sym__ambiguous_call_statement] = ACTIONS(9336), + [aux_sym_addressof_expression_token1] = ACTIONS(9336), + [aux_sym_type_of_expression_token1] = ACTIONS(9336), + [aux_sym_unary_expression_token1] = ACTIONS(9336), + [sym_string_literal] = ACTIONS(9338), + [sym_number_literal] = ACTIONS(9338), + [aux_sym_boolean_literal_token1] = ACTIONS(9336), + [aux_sym_boolean_literal_token2] = ACTIONS(9336), + [sym_nothing_literal] = ACTIONS(9336), + [sym_null_literal] = ACTIONS(9336), + [sym_empty_literal] = ACTIONS(9336), + [sym_date_literal] = ACTIONS(9338), + [anon_sym_POUND] = ACTIONS(9336), + }, + [STATE(6575)] = { + [sym_identifier] = ACTIONS(8853), + [sym_newline] = ACTIONS(8855), + [anon_sym_COLON] = ACTIONS(8855), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8853), + [aux_sym_frm_property_statement_token1] = ACTIONS(8853), + [anon_sym_DOT] = ACTIONS(8853), + [anon_sym_BANG] = ACTIONS(8855), + [aux_sym__attribute_identifier_token1] = ACTIONS(8853), + [aux_sym_option_statement_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8853), + [aux_sym_preprocessor_const_token1] = ACTIONS(8853), + [sym_static_modifier] = ACTIONS(8853), + [sym__dim_keyword] = ACTIONS(8853), + [sym__redim_keyword] = ACTIONS(8853), + [aux_sym_get_accessor_token1] = ACTIONS(8853), + [aux_sym_set_accessor_token1] = ACTIONS(8853), + [aux_sym_const_declaration_token1] = ACTIONS(8853), + [anon_sym_LPAREN] = ACTIONS(8855), + [aux_sym_as_type_clause_token2] = ACTIONS(8853), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8853), + [aux_sym_visibility_token1] = ACTIONS(8853), + [aux_sym_visibility_token2] = ACTIONS(8853), + [aux_sym_elseif_fragment_token1] = ACTIONS(8853), + [aux_sym_else_fragment_token1] = ACTIONS(8853), + [aux_sym_select_statement_token1] = ACTIONS(8853), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8853), + [aux_sym__for_header_token1] = ACTIONS(8853), + [aux_sym_do_statement_token1] = ACTIONS(8853), + [aux_sym_do_condition_token1] = ACTIONS(8853), + [aux_sym_with_statement_token1] = ACTIONS(8853), + [aux_sym_exit_statement_token1] = ACTIONS(8853), + [sym_end_statement] = ACTIONS(8855), + [aux_sym_on_goto_statement_token1] = ACTIONS(8853), + [aux_sym_on_goto_statement_token2] = ACTIONS(8853), + [aux_sym_on_error_statement_token2] = ACTIONS(8853), + [sym__ambiguous_redim_statement] = ACTIONS(8855), + [aux_sym_erase_statement_token1] = ACTIONS(8853), + [aux_sym_open_statement_token1] = ACTIONS(8853), + [aux_sym_file_mode_token2] = ACTIONS(8853), + [aux_sym_file_access_token2] = ACTIONS(8853), + [aux_sym_file_lock_token2] = ACTIONS(8853), + [aux_sym_print_statement_token1] = ACTIONS(8853), + [anon_sym_PLUS] = ACTIONS(8855), + [anon_sym_DASH] = ACTIONS(8853), + [anon_sym_QMARK] = ACTIONS(8855), + [aux_sym_close_statement_token1] = ACTIONS(8853), + [aux_sym_put_statement_token1] = ACTIONS(8853), + [aux_sym_unlock_statement_token1] = ACTIONS(8853), + [aux_sym_seek_statement_token1] = ACTIONS(8853), + [sym_reset_statement] = ACTIONS(8853), + [aux_sym_raise_event_statement_token1] = ACTIONS(8853), + [sym_stop_statement] = ACTIONS(8853), + [sym_beep_statement] = ACTIONS(8853), + [aux_sym_unload_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token2] = ACTIONS(8853), + [aux_sym_def_type_statement_token3] = ACTIONS(8853), + [aux_sym_def_type_statement_token4] = ACTIONS(8853), + [aux_sym_def_type_statement_token5] = ACTIONS(8853), + [aux_sym_def_type_statement_token6] = ACTIONS(8853), + [aux_sym_def_type_statement_token7] = ACTIONS(8853), + [aux_sym_def_type_statement_token8] = ACTIONS(8853), + [aux_sym_def_type_statement_token9] = ACTIONS(8853), + [aux_sym_def_type_statement_token10] = ACTIONS(8853), + [aux_sym_def_type_statement_token11] = ACTIONS(8853), + [aux_sym_def_type_statement_token12] = ACTIONS(8853), + [aux_sym_def_type_statement_token13] = ACTIONS(8853), + [aux_sym_def_type_statement_token14] = ACTIONS(8853), + [aux_sym_call_statement_token1] = ACTIONS(8853), + [sym__ambiguous_call_statement] = ACTIONS(8853), + [aux_sym_addressof_expression_token1] = ACTIONS(8853), + [aux_sym_type_of_expression_token1] = ACTIONS(8853), + [aux_sym_unary_expression_token1] = ACTIONS(8853), + [sym_string_literal] = ACTIONS(8855), + [sym_number_literal] = ACTIONS(8855), + [aux_sym_boolean_literal_token1] = ACTIONS(8853), + [aux_sym_boolean_literal_token2] = ACTIONS(8853), + [sym_nothing_literal] = ACTIONS(8853), + [sym_null_literal] = ACTIONS(8853), + [sym_empty_literal] = ACTIONS(8853), + [sym_date_literal] = ACTIONS(8855), + [anon_sym_POUND] = ACTIONS(8853), + }, + [STATE(6576)] = { + [sym_identifier] = ACTIONS(8857), + [sym_newline] = ACTIONS(8859), + [anon_sym_COLON] = ACTIONS(8859), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8857), + [aux_sym_frm_property_statement_token1] = ACTIONS(8857), + [anon_sym_DOT] = ACTIONS(8857), + [anon_sym_BANG] = ACTIONS(8859), + [aux_sym__attribute_identifier_token1] = ACTIONS(8857), + [aux_sym_option_statement_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8857), + [aux_sym_preprocessor_const_token1] = ACTIONS(8857), + [sym_static_modifier] = ACTIONS(8857), + [sym__dim_keyword] = ACTIONS(8857), + [sym__redim_keyword] = ACTIONS(8857), + [aux_sym_get_accessor_token1] = ACTIONS(8857), + [aux_sym_set_accessor_token1] = ACTIONS(8857), + [aux_sym_const_declaration_token1] = ACTIONS(8857), + [anon_sym_LPAREN] = ACTIONS(8859), + [aux_sym_as_type_clause_token2] = ACTIONS(8857), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8857), + [aux_sym_visibility_token1] = ACTIONS(8857), + [aux_sym_visibility_token2] = ACTIONS(8857), + [aux_sym_elseif_fragment_token1] = ACTIONS(8857), + [aux_sym_else_fragment_token1] = ACTIONS(8857), + [aux_sym_select_statement_token1] = ACTIONS(8857), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8857), + [aux_sym__for_header_token1] = ACTIONS(8857), + [aux_sym_do_statement_token1] = ACTIONS(8857), + [aux_sym_do_condition_token1] = ACTIONS(8857), + [aux_sym_with_statement_token1] = ACTIONS(8857), + [aux_sym_exit_statement_token1] = ACTIONS(8857), + [sym_end_statement] = ACTIONS(8859), + [aux_sym_on_goto_statement_token1] = ACTIONS(8857), + [aux_sym_on_goto_statement_token2] = ACTIONS(8857), + [aux_sym_on_error_statement_token2] = ACTIONS(8857), + [sym__ambiguous_redim_statement] = ACTIONS(8859), + [aux_sym_erase_statement_token1] = ACTIONS(8857), + [aux_sym_open_statement_token1] = ACTIONS(8857), + [aux_sym_file_mode_token2] = ACTIONS(8857), + [aux_sym_file_access_token2] = ACTIONS(8857), + [aux_sym_file_lock_token2] = ACTIONS(8857), + [aux_sym_print_statement_token1] = ACTIONS(8857), + [anon_sym_PLUS] = ACTIONS(8859), + [anon_sym_DASH] = ACTIONS(8857), + [anon_sym_QMARK] = ACTIONS(8859), + [aux_sym_close_statement_token1] = ACTIONS(8857), + [aux_sym_put_statement_token1] = ACTIONS(8857), + [aux_sym_unlock_statement_token1] = ACTIONS(8857), + [aux_sym_seek_statement_token1] = ACTIONS(8857), + [sym_reset_statement] = ACTIONS(8857), + [aux_sym_raise_event_statement_token1] = ACTIONS(8857), + [sym_stop_statement] = ACTIONS(8857), + [sym_beep_statement] = ACTIONS(8857), + [aux_sym_unload_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token2] = ACTIONS(8857), + [aux_sym_def_type_statement_token3] = ACTIONS(8857), + [aux_sym_def_type_statement_token4] = ACTIONS(8857), + [aux_sym_def_type_statement_token5] = ACTIONS(8857), + [aux_sym_def_type_statement_token6] = ACTIONS(8857), + [aux_sym_def_type_statement_token7] = ACTIONS(8857), + [aux_sym_def_type_statement_token8] = ACTIONS(8857), + [aux_sym_def_type_statement_token9] = ACTIONS(8857), + [aux_sym_def_type_statement_token10] = ACTIONS(8857), + [aux_sym_def_type_statement_token11] = ACTIONS(8857), + [aux_sym_def_type_statement_token12] = ACTIONS(8857), + [aux_sym_def_type_statement_token13] = ACTIONS(8857), + [aux_sym_def_type_statement_token14] = ACTIONS(8857), + [aux_sym_call_statement_token1] = ACTIONS(8857), + [sym__ambiguous_call_statement] = ACTIONS(8857), + [aux_sym_addressof_expression_token1] = ACTIONS(8857), + [aux_sym_type_of_expression_token1] = ACTIONS(8857), + [aux_sym_unary_expression_token1] = ACTIONS(8857), + [sym_string_literal] = ACTIONS(8859), + [sym_number_literal] = ACTIONS(8859), + [aux_sym_boolean_literal_token1] = ACTIONS(8857), + [aux_sym_boolean_literal_token2] = ACTIONS(8857), + [sym_nothing_literal] = ACTIONS(8857), + [sym_null_literal] = ACTIONS(8857), + [sym_empty_literal] = ACTIONS(8857), + [sym_date_literal] = ACTIONS(8859), + [anon_sym_POUND] = ACTIONS(8857), + }, + [STATE(6577)] = { + [sym_identifier] = ACTIONS(9340), + [sym_newline] = ACTIONS(9342), + [anon_sym_COLON] = ACTIONS(9342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9340), + [aux_sym_frm_property_statement_token1] = ACTIONS(9340), + [anon_sym_DOT] = ACTIONS(9340), + [anon_sym_BANG] = ACTIONS(9342), + [aux_sym__attribute_identifier_token1] = ACTIONS(9340), + [aux_sym_option_statement_token3] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9340), + [aux_sym_preprocessor_const_token1] = ACTIONS(9340), + [sym_static_modifier] = ACTIONS(9340), + [sym__dim_keyword] = ACTIONS(9340), + [sym__redim_keyword] = ACTIONS(9340), + [aux_sym_get_accessor_token1] = ACTIONS(9340), + [aux_sym_set_accessor_token1] = ACTIONS(9340), + [aux_sym_const_declaration_token1] = ACTIONS(9340), + [anon_sym_LPAREN] = ACTIONS(9342), + [aux_sym_as_type_clause_token2] = ACTIONS(9340), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9340), + [aux_sym_visibility_token1] = ACTIONS(9340), + [aux_sym_visibility_token2] = ACTIONS(9340), + [aux_sym_elseif_fragment_token1] = ACTIONS(9340), + [aux_sym_else_fragment_token1] = ACTIONS(9340), + [aux_sym_select_statement_token1] = ACTIONS(9340), + [aux_sym__for_header_token1] = ACTIONS(9340), + [aux_sym_do_statement_token1] = ACTIONS(9340), + [aux_sym_do_statement_token2] = ACTIONS(9340), + [aux_sym_do_condition_token1] = ACTIONS(9340), + [aux_sym_with_statement_token1] = ACTIONS(9340), + [aux_sym_exit_statement_token1] = ACTIONS(9340), + [sym_end_statement] = ACTIONS(9342), + [aux_sym_on_goto_statement_token1] = ACTIONS(9340), + [aux_sym_on_goto_statement_token2] = ACTIONS(9340), + [aux_sym_on_error_statement_token2] = ACTIONS(9340), + [sym__ambiguous_redim_statement] = ACTIONS(9342), + [aux_sym_erase_statement_token1] = ACTIONS(9340), + [aux_sym_open_statement_token1] = ACTIONS(9340), + [aux_sym_file_mode_token2] = ACTIONS(9340), + [aux_sym_file_access_token2] = ACTIONS(9340), + [aux_sym_file_lock_token2] = ACTIONS(9340), + [aux_sym_print_statement_token1] = ACTIONS(9340), + [anon_sym_PLUS] = ACTIONS(9342), + [anon_sym_DASH] = ACTIONS(9340), + [anon_sym_QMARK] = ACTIONS(9342), + [aux_sym_close_statement_token1] = ACTIONS(9340), + [aux_sym_put_statement_token1] = ACTIONS(9340), + [aux_sym_unlock_statement_token1] = ACTIONS(9340), + [aux_sym_seek_statement_token1] = ACTIONS(9340), + [sym_reset_statement] = ACTIONS(9340), + [aux_sym_raise_event_statement_token1] = ACTIONS(9340), + [sym_stop_statement] = ACTIONS(9340), + [sym_beep_statement] = ACTIONS(9340), + [aux_sym_unload_statement_token1] = ACTIONS(9340), + [aux_sym_def_type_statement_token1] = ACTIONS(9340), + [aux_sym_def_type_statement_token2] = ACTIONS(9340), + [aux_sym_def_type_statement_token3] = ACTIONS(9340), + [aux_sym_def_type_statement_token4] = ACTIONS(9340), + [aux_sym_def_type_statement_token5] = ACTIONS(9340), + [aux_sym_def_type_statement_token6] = ACTIONS(9340), + [aux_sym_def_type_statement_token7] = ACTIONS(9340), + [aux_sym_def_type_statement_token8] = ACTIONS(9340), + [aux_sym_def_type_statement_token9] = ACTIONS(9340), + [aux_sym_def_type_statement_token10] = ACTIONS(9340), + [aux_sym_def_type_statement_token11] = ACTIONS(9340), + [aux_sym_def_type_statement_token12] = ACTIONS(9340), + [aux_sym_def_type_statement_token13] = ACTIONS(9340), + [aux_sym_def_type_statement_token14] = ACTIONS(9340), + [aux_sym_call_statement_token1] = ACTIONS(9340), + [sym__ambiguous_call_statement] = ACTIONS(9340), + [aux_sym_addressof_expression_token1] = ACTIONS(9340), + [aux_sym_type_of_expression_token1] = ACTIONS(9340), + [aux_sym_unary_expression_token1] = ACTIONS(9340), + [sym_string_literal] = ACTIONS(9342), + [sym_number_literal] = ACTIONS(9342), + [aux_sym_boolean_literal_token1] = ACTIONS(9340), + [aux_sym_boolean_literal_token2] = ACTIONS(9340), + [sym_nothing_literal] = ACTIONS(9340), + [sym_null_literal] = ACTIONS(9340), + [sym_empty_literal] = ACTIONS(9340), + [sym_date_literal] = ACTIONS(9342), + [anon_sym_POUND] = ACTIONS(9340), + }, + [STATE(6578)] = { + [sym_identifier] = ACTIONS(8861), + [sym_newline] = ACTIONS(8863), + [anon_sym_COLON] = ACTIONS(8863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8861), + [aux_sym_frm_property_statement_token1] = ACTIONS(8861), + [anon_sym_DOT] = ACTIONS(8861), + [anon_sym_BANG] = ACTIONS(8863), + [aux_sym__attribute_identifier_token1] = ACTIONS(8861), + [aux_sym_option_statement_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8861), + [aux_sym_preprocessor_const_token1] = ACTIONS(8861), + [sym_static_modifier] = ACTIONS(8861), + [sym__dim_keyword] = ACTIONS(8861), + [sym__redim_keyword] = ACTIONS(8861), + [aux_sym_get_accessor_token1] = ACTIONS(8861), + [aux_sym_set_accessor_token1] = ACTIONS(8861), + [aux_sym_const_declaration_token1] = ACTIONS(8861), + [anon_sym_LPAREN] = ACTIONS(8863), + [aux_sym_as_type_clause_token2] = ACTIONS(8861), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8861), + [aux_sym_visibility_token1] = ACTIONS(8861), + [aux_sym_visibility_token2] = ACTIONS(8861), + [aux_sym_elseif_fragment_token1] = ACTIONS(8861), + [aux_sym_else_fragment_token1] = ACTIONS(8861), + [aux_sym_select_statement_token1] = ACTIONS(8861), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8861), + [aux_sym__for_header_token1] = ACTIONS(8861), + [aux_sym_do_statement_token1] = ACTIONS(8861), + [aux_sym_do_condition_token1] = ACTIONS(8861), + [aux_sym_with_statement_token1] = ACTIONS(8861), + [aux_sym_exit_statement_token1] = ACTIONS(8861), + [sym_end_statement] = ACTIONS(8863), + [aux_sym_on_goto_statement_token1] = ACTIONS(8861), + [aux_sym_on_goto_statement_token2] = ACTIONS(8861), + [aux_sym_on_error_statement_token2] = ACTIONS(8861), + [sym__ambiguous_redim_statement] = ACTIONS(8863), + [aux_sym_erase_statement_token1] = ACTIONS(8861), + [aux_sym_open_statement_token1] = ACTIONS(8861), + [aux_sym_file_mode_token2] = ACTIONS(8861), + [aux_sym_file_access_token2] = ACTIONS(8861), + [aux_sym_file_lock_token2] = ACTIONS(8861), + [aux_sym_print_statement_token1] = ACTIONS(8861), + [anon_sym_PLUS] = ACTIONS(8863), + [anon_sym_DASH] = ACTIONS(8861), + [anon_sym_QMARK] = ACTIONS(8863), + [aux_sym_close_statement_token1] = ACTIONS(8861), + [aux_sym_put_statement_token1] = ACTIONS(8861), + [aux_sym_unlock_statement_token1] = ACTIONS(8861), + [aux_sym_seek_statement_token1] = ACTIONS(8861), + [sym_reset_statement] = ACTIONS(8861), + [aux_sym_raise_event_statement_token1] = ACTIONS(8861), + [sym_stop_statement] = ACTIONS(8861), + [sym_beep_statement] = ACTIONS(8861), + [aux_sym_unload_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token2] = ACTIONS(8861), + [aux_sym_def_type_statement_token3] = ACTIONS(8861), + [aux_sym_def_type_statement_token4] = ACTIONS(8861), + [aux_sym_def_type_statement_token5] = ACTIONS(8861), + [aux_sym_def_type_statement_token6] = ACTIONS(8861), + [aux_sym_def_type_statement_token7] = ACTIONS(8861), + [aux_sym_def_type_statement_token8] = ACTIONS(8861), + [aux_sym_def_type_statement_token9] = ACTIONS(8861), + [aux_sym_def_type_statement_token10] = ACTIONS(8861), + [aux_sym_def_type_statement_token11] = ACTIONS(8861), + [aux_sym_def_type_statement_token12] = ACTIONS(8861), + [aux_sym_def_type_statement_token13] = ACTIONS(8861), + [aux_sym_def_type_statement_token14] = ACTIONS(8861), + [aux_sym_call_statement_token1] = ACTIONS(8861), + [sym__ambiguous_call_statement] = ACTIONS(8861), + [aux_sym_addressof_expression_token1] = ACTIONS(8861), + [aux_sym_type_of_expression_token1] = ACTIONS(8861), + [aux_sym_unary_expression_token1] = ACTIONS(8861), + [sym_string_literal] = ACTIONS(8863), + [sym_number_literal] = ACTIONS(8863), + [aux_sym_boolean_literal_token1] = ACTIONS(8861), + [aux_sym_boolean_literal_token2] = ACTIONS(8861), + [sym_nothing_literal] = ACTIONS(8861), + [sym_null_literal] = ACTIONS(8861), + [sym_empty_literal] = ACTIONS(8861), + [sym_date_literal] = ACTIONS(8863), + [anon_sym_POUND] = ACTIONS(8861), + }, + [STATE(6579)] = { + [sym_identifier] = ACTIONS(8279), + [sym_newline] = ACTIONS(8281), + [anon_sym_COLON] = ACTIONS(8281), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8279), + [aux_sym_frm_property_statement_token1] = ACTIONS(8279), + [anon_sym_DOT] = ACTIONS(8279), + [anon_sym_BANG] = ACTIONS(8281), + [aux_sym__attribute_identifier_token1] = ACTIONS(8279), + [aux_sym_option_statement_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8279), + [aux_sym_preprocessor_const_token1] = ACTIONS(8279), + [sym_static_modifier] = ACTIONS(8279), + [sym__dim_keyword] = ACTIONS(8279), + [sym__redim_keyword] = ACTIONS(8279), + [aux_sym_get_accessor_token1] = ACTIONS(8279), + [aux_sym_set_accessor_token1] = ACTIONS(8279), + [aux_sym_const_declaration_token1] = ACTIONS(8279), + [anon_sym_LPAREN] = ACTIONS(8281), + [aux_sym_as_type_clause_token2] = ACTIONS(8279), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8279), + [aux_sym_visibility_token1] = ACTIONS(8279), + [aux_sym_visibility_token2] = ACTIONS(8279), + [aux_sym_elseif_fragment_token1] = ACTIONS(8279), + [aux_sym_else_fragment_token1] = ACTIONS(8279), + [aux_sym_select_statement_token1] = ACTIONS(8279), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8279), + [aux_sym__for_header_token1] = ACTIONS(8279), + [aux_sym_do_statement_token1] = ACTIONS(8279), + [aux_sym_do_condition_token1] = ACTIONS(8279), + [aux_sym_with_statement_token1] = ACTIONS(8279), + [aux_sym_exit_statement_token1] = ACTIONS(8279), + [sym_end_statement] = ACTIONS(8281), + [aux_sym_on_goto_statement_token1] = ACTIONS(8279), + [aux_sym_on_goto_statement_token2] = ACTIONS(8279), + [aux_sym_on_error_statement_token2] = ACTIONS(8279), + [sym__ambiguous_redim_statement] = ACTIONS(8281), + [aux_sym_erase_statement_token1] = ACTIONS(8279), + [aux_sym_open_statement_token1] = ACTIONS(8279), + [aux_sym_file_mode_token2] = ACTIONS(8279), + [aux_sym_file_access_token2] = ACTIONS(8279), + [aux_sym_file_lock_token2] = ACTIONS(8279), + [aux_sym_print_statement_token1] = ACTIONS(8279), + [anon_sym_PLUS] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8279), + [anon_sym_QMARK] = ACTIONS(8281), + [aux_sym_close_statement_token1] = ACTIONS(8279), + [aux_sym_put_statement_token1] = ACTIONS(8279), + [aux_sym_unlock_statement_token1] = ACTIONS(8279), + [aux_sym_seek_statement_token1] = ACTIONS(8279), + [sym_reset_statement] = ACTIONS(8279), + [aux_sym_raise_event_statement_token1] = ACTIONS(8279), + [sym_stop_statement] = ACTIONS(8279), + [sym_beep_statement] = ACTIONS(8279), + [aux_sym_unload_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token2] = ACTIONS(8279), + [aux_sym_def_type_statement_token3] = ACTIONS(8279), + [aux_sym_def_type_statement_token4] = ACTIONS(8279), + [aux_sym_def_type_statement_token5] = ACTIONS(8279), + [aux_sym_def_type_statement_token6] = ACTIONS(8279), + [aux_sym_def_type_statement_token7] = ACTIONS(8279), + [aux_sym_def_type_statement_token8] = ACTIONS(8279), + [aux_sym_def_type_statement_token9] = ACTIONS(8279), + [aux_sym_def_type_statement_token10] = ACTIONS(8279), + [aux_sym_def_type_statement_token11] = ACTIONS(8279), + [aux_sym_def_type_statement_token12] = ACTIONS(8279), + [aux_sym_def_type_statement_token13] = ACTIONS(8279), + [aux_sym_def_type_statement_token14] = ACTIONS(8279), + [aux_sym_call_statement_token1] = ACTIONS(8279), + [sym__ambiguous_call_statement] = ACTIONS(8279), + [aux_sym_addressof_expression_token1] = ACTIONS(8279), + [aux_sym_type_of_expression_token1] = ACTIONS(8279), + [aux_sym_unary_expression_token1] = ACTIONS(8279), + [sym_string_literal] = ACTIONS(8281), + [sym_number_literal] = ACTIONS(8281), + [aux_sym_boolean_literal_token1] = ACTIONS(8279), + [aux_sym_boolean_literal_token2] = ACTIONS(8279), + [sym_nothing_literal] = ACTIONS(8279), + [sym_null_literal] = ACTIONS(8279), + [sym_empty_literal] = ACTIONS(8279), + [sym_date_literal] = ACTIONS(8281), + [anon_sym_POUND] = ACTIONS(8279), + }, + [STATE(6580)] = { + [sym_identifier] = ACTIONS(9344), + [sym_newline] = ACTIONS(9346), + [anon_sym_COLON] = ACTIONS(9346), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9344), + [aux_sym_frm_property_statement_token1] = ACTIONS(9344), + [anon_sym_DOT] = ACTIONS(9344), + [anon_sym_BANG] = ACTIONS(9346), + [aux_sym__attribute_identifier_token1] = ACTIONS(9344), + [aux_sym_option_statement_token3] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9344), + [aux_sym_preprocessor_const_token1] = ACTIONS(9344), + [sym_static_modifier] = ACTIONS(9344), + [sym__dim_keyword] = ACTIONS(9344), + [sym__redim_keyword] = ACTIONS(9344), + [aux_sym_get_accessor_token1] = ACTIONS(9344), + [aux_sym_set_accessor_token1] = ACTIONS(9344), + [aux_sym_const_declaration_token1] = ACTIONS(9344), + [anon_sym_LPAREN] = ACTIONS(9346), + [aux_sym_as_type_clause_token2] = ACTIONS(9344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9344), + [aux_sym_visibility_token1] = ACTIONS(9344), + [aux_sym_visibility_token2] = ACTIONS(9344), + [aux_sym_elseif_fragment_token1] = ACTIONS(9344), + [aux_sym_else_fragment_token1] = ACTIONS(9344), + [aux_sym_select_statement_token1] = ACTIONS(9344), + [aux_sym__for_header_token1] = ACTIONS(9344), + [aux_sym_do_statement_token1] = ACTIONS(9344), + [aux_sym_do_statement_token2] = ACTIONS(9344), + [aux_sym_do_condition_token1] = ACTIONS(9344), + [aux_sym_with_statement_token1] = ACTIONS(9344), + [aux_sym_exit_statement_token1] = ACTIONS(9344), + [sym_end_statement] = ACTIONS(9346), + [aux_sym_on_goto_statement_token1] = ACTIONS(9344), + [aux_sym_on_goto_statement_token2] = ACTIONS(9344), + [aux_sym_on_error_statement_token2] = ACTIONS(9344), + [sym__ambiguous_redim_statement] = ACTIONS(9346), + [aux_sym_erase_statement_token1] = ACTIONS(9344), + [aux_sym_open_statement_token1] = ACTIONS(9344), + [aux_sym_file_mode_token2] = ACTIONS(9344), + [aux_sym_file_access_token2] = ACTIONS(9344), + [aux_sym_file_lock_token2] = ACTIONS(9344), + [aux_sym_print_statement_token1] = ACTIONS(9344), + [anon_sym_PLUS] = ACTIONS(9346), + [anon_sym_DASH] = ACTIONS(9344), + [anon_sym_QMARK] = ACTIONS(9346), + [aux_sym_close_statement_token1] = ACTIONS(9344), + [aux_sym_put_statement_token1] = ACTIONS(9344), + [aux_sym_unlock_statement_token1] = ACTIONS(9344), + [aux_sym_seek_statement_token1] = ACTIONS(9344), + [sym_reset_statement] = ACTIONS(9344), + [aux_sym_raise_event_statement_token1] = ACTIONS(9344), + [sym_stop_statement] = ACTIONS(9344), + [sym_beep_statement] = ACTIONS(9344), + [aux_sym_unload_statement_token1] = ACTIONS(9344), + [aux_sym_def_type_statement_token1] = ACTIONS(9344), + [aux_sym_def_type_statement_token2] = ACTIONS(9344), + [aux_sym_def_type_statement_token3] = ACTIONS(9344), + [aux_sym_def_type_statement_token4] = ACTIONS(9344), + [aux_sym_def_type_statement_token5] = ACTIONS(9344), + [aux_sym_def_type_statement_token6] = ACTIONS(9344), + [aux_sym_def_type_statement_token7] = ACTIONS(9344), + [aux_sym_def_type_statement_token8] = ACTIONS(9344), + [aux_sym_def_type_statement_token9] = ACTIONS(9344), + [aux_sym_def_type_statement_token10] = ACTIONS(9344), + [aux_sym_def_type_statement_token11] = ACTIONS(9344), + [aux_sym_def_type_statement_token12] = ACTIONS(9344), + [aux_sym_def_type_statement_token13] = ACTIONS(9344), + [aux_sym_def_type_statement_token14] = ACTIONS(9344), + [aux_sym_call_statement_token1] = ACTIONS(9344), + [sym__ambiguous_call_statement] = ACTIONS(9344), + [aux_sym_addressof_expression_token1] = ACTIONS(9344), + [aux_sym_type_of_expression_token1] = ACTIONS(9344), + [aux_sym_unary_expression_token1] = ACTIONS(9344), + [sym_string_literal] = ACTIONS(9346), + [sym_number_literal] = ACTIONS(9346), + [aux_sym_boolean_literal_token1] = ACTIONS(9344), + [aux_sym_boolean_literal_token2] = ACTIONS(9344), + [sym_nothing_literal] = ACTIONS(9344), + [sym_null_literal] = ACTIONS(9344), + [sym_empty_literal] = ACTIONS(9344), + [sym_date_literal] = ACTIONS(9346), + [anon_sym_POUND] = ACTIONS(9344), + }, + [STATE(6581)] = { + [sym_identifier] = ACTIONS(8839), + [sym_newline] = ACTIONS(8841), + [anon_sym_COLON] = ACTIONS(8841), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8839), + [aux_sym_frm_property_statement_token1] = ACTIONS(8839), + [anon_sym_DOT] = ACTIONS(8839), + [anon_sym_BANG] = ACTIONS(8841), + [aux_sym__attribute_identifier_token1] = ACTIONS(8839), + [aux_sym_option_statement_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8839), + [aux_sym_preprocessor_const_token1] = ACTIONS(8839), + [sym_static_modifier] = ACTIONS(8839), + [sym__dim_keyword] = ACTIONS(8839), + [sym__redim_keyword] = ACTIONS(8839), + [aux_sym_get_accessor_token1] = ACTIONS(8839), + [aux_sym_set_accessor_token1] = ACTIONS(8839), + [aux_sym_const_declaration_token1] = ACTIONS(8839), + [anon_sym_LPAREN] = ACTIONS(8841), + [aux_sym_as_type_clause_token2] = ACTIONS(8839), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8839), + [aux_sym_visibility_token1] = ACTIONS(8839), + [aux_sym_visibility_token2] = ACTIONS(8839), + [aux_sym_elseif_fragment_token1] = ACTIONS(8839), + [aux_sym_else_fragment_token1] = ACTIONS(8839), + [aux_sym_select_statement_token1] = ACTIONS(8839), + [aux_sym__for_header_token1] = ACTIONS(8839), + [aux_sym_do_statement_token1] = ACTIONS(8839), + [aux_sym_do_condition_token1] = ACTIONS(8839), + [aux_sym_with_statement_token1] = ACTIONS(8839), + [aux_sym_exit_statement_token1] = ACTIONS(8839), + [sym_end_statement] = ACTIONS(8841), + [aux_sym_on_goto_statement_token1] = ACTIONS(8839), + [aux_sym_on_goto_statement_token2] = ACTIONS(8839), + [aux_sym_on_error_statement_token2] = ACTIONS(8839), + [sym__ambiguous_redim_statement] = ACTIONS(8841), + [aux_sym_erase_statement_token1] = ACTIONS(8839), + [aux_sym_open_statement_token1] = ACTIONS(8839), + [aux_sym_file_mode_token2] = ACTIONS(8839), + [aux_sym_file_access_token2] = ACTIONS(8839), + [aux_sym_file_lock_token2] = ACTIONS(8839), + [aux_sym_print_statement_token1] = ACTIONS(8839), + [anon_sym_PLUS] = ACTIONS(8841), + [anon_sym_DASH] = ACTIONS(8839), + [anon_sym_QMARK] = ACTIONS(8841), + [aux_sym_close_statement_token1] = ACTIONS(8839), + [aux_sym_put_statement_token1] = ACTIONS(8839), + [aux_sym_unlock_statement_token1] = ACTIONS(8839), + [aux_sym_seek_statement_token1] = ACTIONS(8839), + [sym_reset_statement] = ACTIONS(8839), + [aux_sym_raise_event_statement_token1] = ACTIONS(8839), + [sym_stop_statement] = ACTIONS(8839), + [sym_beep_statement] = ACTIONS(8839), + [aux_sym_unload_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token2] = ACTIONS(8839), + [aux_sym_def_type_statement_token3] = ACTIONS(8839), + [aux_sym_def_type_statement_token4] = ACTIONS(8839), + [aux_sym_def_type_statement_token5] = ACTIONS(8839), + [aux_sym_def_type_statement_token6] = ACTIONS(8839), + [aux_sym_def_type_statement_token7] = ACTIONS(8839), + [aux_sym_def_type_statement_token8] = ACTIONS(8839), + [aux_sym_def_type_statement_token9] = ACTIONS(8839), + [aux_sym_def_type_statement_token10] = ACTIONS(8839), + [aux_sym_def_type_statement_token11] = ACTIONS(8839), + [aux_sym_def_type_statement_token12] = ACTIONS(8839), + [aux_sym_def_type_statement_token13] = ACTIONS(8839), + [aux_sym_def_type_statement_token14] = ACTIONS(8839), + [aux_sym_call_statement_token1] = ACTIONS(8839), + [sym__ambiguous_call_statement] = ACTIONS(8839), + [aux_sym_addressof_expression_token1] = ACTIONS(8839), + [aux_sym_type_of_expression_token1] = ACTIONS(8839), + [aux_sym_unary_expression_token1] = ACTIONS(8839), + [sym_string_literal] = ACTIONS(8841), + [sym_number_literal] = ACTIONS(8841), + [aux_sym_boolean_literal_token1] = ACTIONS(8839), + [aux_sym_boolean_literal_token2] = ACTIONS(8839), + [sym_nothing_literal] = ACTIONS(8839), + [sym_null_literal] = ACTIONS(8839), + [sym_empty_literal] = ACTIONS(8839), + [sym_date_literal] = ACTIONS(8841), + [anon_sym_POUND] = ACTIONS(8839), + }, + [STATE(6582)] = { + [sym_identifier] = ACTIONS(8283), + [sym_newline] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8283), + [aux_sym_frm_property_statement_token1] = ACTIONS(8283), + [anon_sym_DOT] = ACTIONS(8283), + [anon_sym_BANG] = ACTIONS(8285), + [aux_sym__attribute_identifier_token1] = ACTIONS(8283), + [aux_sym_option_statement_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8283), + [aux_sym_preprocessor_const_token1] = ACTIONS(8283), + [sym_static_modifier] = ACTIONS(8283), + [sym__dim_keyword] = ACTIONS(8283), + [sym__redim_keyword] = ACTIONS(8283), + [aux_sym_get_accessor_token1] = ACTIONS(8283), + [aux_sym_set_accessor_token1] = ACTIONS(8283), + [aux_sym_const_declaration_token1] = ACTIONS(8283), + [anon_sym_LPAREN] = ACTIONS(8285), + [aux_sym_as_type_clause_token2] = ACTIONS(8283), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8283), + [aux_sym_visibility_token1] = ACTIONS(8283), + [aux_sym_visibility_token2] = ACTIONS(8283), + [aux_sym_elseif_fragment_token1] = ACTIONS(8283), + [aux_sym_else_fragment_token1] = ACTIONS(8283), + [aux_sym_select_statement_token1] = ACTIONS(8283), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8283), + [aux_sym__for_header_token1] = ACTIONS(8283), + [aux_sym_do_statement_token1] = ACTIONS(8283), + [aux_sym_do_condition_token1] = ACTIONS(8283), + [aux_sym_with_statement_token1] = ACTIONS(8283), + [aux_sym_exit_statement_token1] = ACTIONS(8283), + [sym_end_statement] = ACTIONS(8285), + [aux_sym_on_goto_statement_token1] = ACTIONS(8283), + [aux_sym_on_goto_statement_token2] = ACTIONS(8283), + [aux_sym_on_error_statement_token2] = ACTIONS(8283), + [sym__ambiguous_redim_statement] = ACTIONS(8285), + [aux_sym_erase_statement_token1] = ACTIONS(8283), + [aux_sym_open_statement_token1] = ACTIONS(8283), + [aux_sym_file_mode_token2] = ACTIONS(8283), + [aux_sym_file_access_token2] = ACTIONS(8283), + [aux_sym_file_lock_token2] = ACTIONS(8283), + [aux_sym_print_statement_token1] = ACTIONS(8283), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_DASH] = ACTIONS(8283), + [anon_sym_QMARK] = ACTIONS(8285), + [aux_sym_close_statement_token1] = ACTIONS(8283), + [aux_sym_put_statement_token1] = ACTIONS(8283), + [aux_sym_unlock_statement_token1] = ACTIONS(8283), + [aux_sym_seek_statement_token1] = ACTIONS(8283), + [sym_reset_statement] = ACTIONS(8283), + [aux_sym_raise_event_statement_token1] = ACTIONS(8283), + [sym_stop_statement] = ACTIONS(8283), + [sym_beep_statement] = ACTIONS(8283), + [aux_sym_unload_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token2] = ACTIONS(8283), + [aux_sym_def_type_statement_token3] = ACTIONS(8283), + [aux_sym_def_type_statement_token4] = ACTIONS(8283), + [aux_sym_def_type_statement_token5] = ACTIONS(8283), + [aux_sym_def_type_statement_token6] = ACTIONS(8283), + [aux_sym_def_type_statement_token7] = ACTIONS(8283), + [aux_sym_def_type_statement_token8] = ACTIONS(8283), + [aux_sym_def_type_statement_token9] = ACTIONS(8283), + [aux_sym_def_type_statement_token10] = ACTIONS(8283), + [aux_sym_def_type_statement_token11] = ACTIONS(8283), + [aux_sym_def_type_statement_token12] = ACTIONS(8283), + [aux_sym_def_type_statement_token13] = ACTIONS(8283), + [aux_sym_def_type_statement_token14] = ACTIONS(8283), + [aux_sym_call_statement_token1] = ACTIONS(8283), + [sym__ambiguous_call_statement] = ACTIONS(8283), + [aux_sym_addressof_expression_token1] = ACTIONS(8283), + [aux_sym_type_of_expression_token1] = ACTIONS(8283), + [aux_sym_unary_expression_token1] = ACTIONS(8283), + [sym_string_literal] = ACTIONS(8285), + [sym_number_literal] = ACTIONS(8285), + [aux_sym_boolean_literal_token1] = ACTIONS(8283), + [aux_sym_boolean_literal_token2] = ACTIONS(8283), + [sym_nothing_literal] = ACTIONS(8283), + [sym_null_literal] = ACTIONS(8283), + [sym_empty_literal] = ACTIONS(8283), + [sym_date_literal] = ACTIONS(8285), + [anon_sym_POUND] = ACTIONS(8283), + }, + [STATE(6583)] = { + [sym_identifier] = ACTIONS(9455), + [sym_newline] = ACTIONS(9457), + [anon_sym_COLON] = ACTIONS(9457), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9455), + [aux_sym_frm_property_statement_token1] = ACTIONS(9455), + [anon_sym_DOT] = ACTIONS(9455), + [anon_sym_BANG] = ACTIONS(9457), + [aux_sym__attribute_identifier_token1] = ACTIONS(9455), + [aux_sym_option_statement_token3] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9455), + [aux_sym_preprocessor_const_token1] = ACTIONS(9455), + [sym_static_modifier] = ACTIONS(9455), + [sym__dim_keyword] = ACTIONS(9455), + [sym__redim_keyword] = ACTIONS(9455), + [aux_sym_get_accessor_token1] = ACTIONS(9455), + [aux_sym_set_accessor_token1] = ACTIONS(9455), + [aux_sym_const_declaration_token1] = ACTIONS(9455), + [anon_sym_LPAREN] = ACTIONS(9457), + [aux_sym_as_type_clause_token2] = ACTIONS(9455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9455), + [aux_sym_visibility_token1] = ACTIONS(9455), + [aux_sym_visibility_token2] = ACTIONS(9455), + [aux_sym_elseif_fragment_token1] = ACTIONS(9455), + [aux_sym_else_fragment_token1] = ACTIONS(9455), + [aux_sym_select_statement_token1] = ACTIONS(9455), + [aux_sym_select_statement_token2] = ACTIONS(9455), + [aux_sym__for_header_token1] = ACTIONS(9455), + [aux_sym_do_statement_token1] = ACTIONS(9455), + [aux_sym_do_condition_token1] = ACTIONS(9455), + [aux_sym_with_statement_token1] = ACTIONS(9455), + [aux_sym_exit_statement_token1] = ACTIONS(9455), + [sym_end_statement] = ACTIONS(9457), + [aux_sym_on_goto_statement_token1] = ACTIONS(9455), + [aux_sym_on_goto_statement_token2] = ACTIONS(9455), + [aux_sym_on_error_statement_token2] = ACTIONS(9455), + [sym__ambiguous_redim_statement] = ACTIONS(9457), + [aux_sym_erase_statement_token1] = ACTIONS(9455), + [aux_sym_open_statement_token1] = ACTIONS(9455), + [aux_sym_file_mode_token2] = ACTIONS(9455), + [aux_sym_file_access_token2] = ACTIONS(9455), + [aux_sym_file_lock_token2] = ACTIONS(9455), + [aux_sym_print_statement_token1] = ACTIONS(9455), + [anon_sym_PLUS] = ACTIONS(9457), + [anon_sym_DASH] = ACTIONS(9455), + [anon_sym_QMARK] = ACTIONS(9457), + [aux_sym_close_statement_token1] = ACTIONS(9455), + [aux_sym_put_statement_token1] = ACTIONS(9455), + [aux_sym_unlock_statement_token1] = ACTIONS(9455), + [aux_sym_seek_statement_token1] = ACTIONS(9455), + [sym_reset_statement] = ACTIONS(9455), + [aux_sym_raise_event_statement_token1] = ACTIONS(9455), + [sym_stop_statement] = ACTIONS(9455), + [sym_beep_statement] = ACTIONS(9455), + [aux_sym_unload_statement_token1] = ACTIONS(9455), + [aux_sym_def_type_statement_token1] = ACTIONS(9455), + [aux_sym_def_type_statement_token2] = ACTIONS(9455), + [aux_sym_def_type_statement_token3] = ACTIONS(9455), + [aux_sym_def_type_statement_token4] = ACTIONS(9455), + [aux_sym_def_type_statement_token5] = ACTIONS(9455), + [aux_sym_def_type_statement_token6] = ACTIONS(9455), + [aux_sym_def_type_statement_token7] = ACTIONS(9455), + [aux_sym_def_type_statement_token8] = ACTIONS(9455), + [aux_sym_def_type_statement_token9] = ACTIONS(9455), + [aux_sym_def_type_statement_token10] = ACTIONS(9455), + [aux_sym_def_type_statement_token11] = ACTIONS(9455), + [aux_sym_def_type_statement_token12] = ACTIONS(9455), + [aux_sym_def_type_statement_token13] = ACTIONS(9455), + [aux_sym_def_type_statement_token14] = ACTIONS(9455), + [aux_sym_call_statement_token1] = ACTIONS(9455), + [sym__ambiguous_call_statement] = ACTIONS(9455), + [aux_sym_addressof_expression_token1] = ACTIONS(9455), + [aux_sym_type_of_expression_token1] = ACTIONS(9455), + [aux_sym_unary_expression_token1] = ACTIONS(9455), + [sym_string_literal] = ACTIONS(9457), + [sym_number_literal] = ACTIONS(9457), + [aux_sym_boolean_literal_token1] = ACTIONS(9455), + [aux_sym_boolean_literal_token2] = ACTIONS(9455), + [sym_nothing_literal] = ACTIONS(9455), + [sym_null_literal] = ACTIONS(9455), + [sym_empty_literal] = ACTIONS(9455), + [sym_date_literal] = ACTIONS(9457), + [anon_sym_POUND] = ACTIONS(9455), + }, + [STATE(6584)] = { + [sym_identifier] = ACTIONS(8853), + [sym_newline] = ACTIONS(8855), + [anon_sym_COLON] = ACTIONS(8855), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8853), + [aux_sym_frm_property_statement_token1] = ACTIONS(8853), + [anon_sym_DOT] = ACTIONS(8853), + [anon_sym_BANG] = ACTIONS(8855), + [aux_sym__attribute_identifier_token1] = ACTIONS(8853), + [aux_sym_option_statement_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8853), + [aux_sym_preprocessor_const_token1] = ACTIONS(8853), + [sym_static_modifier] = ACTIONS(8853), + [sym__dim_keyword] = ACTIONS(8853), + [sym__redim_keyword] = ACTIONS(8853), + [aux_sym_get_accessor_token1] = ACTIONS(8853), + [aux_sym_set_accessor_token1] = ACTIONS(8853), + [aux_sym_const_declaration_token1] = ACTIONS(8853), + [anon_sym_LPAREN] = ACTIONS(8855), + [aux_sym_as_type_clause_token2] = ACTIONS(8853), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8853), + [aux_sym_visibility_token1] = ACTIONS(8853), + [aux_sym_visibility_token2] = ACTIONS(8853), + [aux_sym_elseif_fragment_token1] = ACTIONS(8853), + [aux_sym_else_fragment_token1] = ACTIONS(8853), + [aux_sym_select_statement_token1] = ACTIONS(8853), + [aux_sym__for_header_token1] = ACTIONS(8853), + [aux_sym_do_statement_token1] = ACTIONS(8853), + [aux_sym_do_condition_token1] = ACTIONS(8853), + [aux_sym_with_statement_token1] = ACTIONS(8853), + [aux_sym_exit_statement_token1] = ACTIONS(8853), + [sym_end_statement] = ACTIONS(8855), + [aux_sym_on_goto_statement_token1] = ACTIONS(8853), + [aux_sym_on_goto_statement_token2] = ACTIONS(8853), + [aux_sym_on_error_statement_token2] = ACTIONS(8853), + [sym__ambiguous_redim_statement] = ACTIONS(8855), + [aux_sym_erase_statement_token1] = ACTIONS(8853), + [aux_sym_open_statement_token1] = ACTIONS(8853), + [aux_sym_file_mode_token2] = ACTIONS(8853), + [aux_sym_file_access_token2] = ACTIONS(8853), + [aux_sym_file_lock_token2] = ACTIONS(8853), + [aux_sym_print_statement_token1] = ACTIONS(8853), + [anon_sym_PLUS] = ACTIONS(8855), + [anon_sym_DASH] = ACTIONS(8853), + [anon_sym_QMARK] = ACTIONS(8855), + [aux_sym_close_statement_token1] = ACTIONS(8853), + [aux_sym_put_statement_token1] = ACTIONS(8853), + [aux_sym_unlock_statement_token1] = ACTIONS(8853), + [aux_sym_seek_statement_token1] = ACTIONS(8853), + [sym_reset_statement] = ACTIONS(8853), + [aux_sym_raise_event_statement_token1] = ACTIONS(8853), + [sym_stop_statement] = ACTIONS(8853), + [sym_beep_statement] = ACTIONS(8853), + [aux_sym_unload_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token2] = ACTIONS(8853), + [aux_sym_def_type_statement_token3] = ACTIONS(8853), + [aux_sym_def_type_statement_token4] = ACTIONS(8853), + [aux_sym_def_type_statement_token5] = ACTIONS(8853), + [aux_sym_def_type_statement_token6] = ACTIONS(8853), + [aux_sym_def_type_statement_token7] = ACTIONS(8853), + [aux_sym_def_type_statement_token8] = ACTIONS(8853), + [aux_sym_def_type_statement_token9] = ACTIONS(8853), + [aux_sym_def_type_statement_token10] = ACTIONS(8853), + [aux_sym_def_type_statement_token11] = ACTIONS(8853), + [aux_sym_def_type_statement_token12] = ACTIONS(8853), + [aux_sym_def_type_statement_token13] = ACTIONS(8853), + [aux_sym_def_type_statement_token14] = ACTIONS(8853), + [aux_sym_call_statement_token1] = ACTIONS(8853), + [sym__ambiguous_call_statement] = ACTIONS(8853), + [aux_sym_addressof_expression_token1] = ACTIONS(8853), + [aux_sym_type_of_expression_token1] = ACTIONS(8853), + [aux_sym_unary_expression_token1] = ACTIONS(8853), + [sym_string_literal] = ACTIONS(8855), + [sym_number_literal] = ACTIONS(8855), + [aux_sym_boolean_literal_token1] = ACTIONS(8853), + [aux_sym_boolean_literal_token2] = ACTIONS(8853), + [sym_nothing_literal] = ACTIONS(8853), + [sym_null_literal] = ACTIONS(8853), + [sym_empty_literal] = ACTIONS(8853), + [sym_date_literal] = ACTIONS(8855), + [anon_sym_POUND] = ACTIONS(8853), + }, + [STATE(6585)] = { + [sym_identifier] = ACTIONS(8857), + [sym_newline] = ACTIONS(8859), + [anon_sym_COLON] = ACTIONS(8859), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8857), + [aux_sym_frm_property_statement_token1] = ACTIONS(8857), + [anon_sym_DOT] = ACTIONS(8857), + [anon_sym_BANG] = ACTIONS(8859), + [aux_sym__attribute_identifier_token1] = ACTIONS(8857), + [aux_sym_option_statement_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8857), + [aux_sym_preprocessor_const_token1] = ACTIONS(8857), + [sym_static_modifier] = ACTIONS(8857), + [sym__dim_keyword] = ACTIONS(8857), + [sym__redim_keyword] = ACTIONS(8857), + [aux_sym_get_accessor_token1] = ACTIONS(8857), + [aux_sym_set_accessor_token1] = ACTIONS(8857), + [aux_sym_const_declaration_token1] = ACTIONS(8857), + [anon_sym_LPAREN] = ACTIONS(8859), + [aux_sym_as_type_clause_token2] = ACTIONS(8857), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8857), + [aux_sym_visibility_token1] = ACTIONS(8857), + [aux_sym_visibility_token2] = ACTIONS(8857), + [aux_sym_elseif_fragment_token1] = ACTIONS(8857), + [aux_sym_else_fragment_token1] = ACTIONS(8857), + [aux_sym_select_statement_token1] = ACTIONS(8857), + [aux_sym__for_header_token1] = ACTIONS(8857), + [aux_sym_do_statement_token1] = ACTIONS(8857), + [aux_sym_do_condition_token1] = ACTIONS(8857), + [aux_sym_with_statement_token1] = ACTIONS(8857), + [aux_sym_exit_statement_token1] = ACTIONS(8857), + [sym_end_statement] = ACTIONS(8859), + [aux_sym_on_goto_statement_token1] = ACTIONS(8857), + [aux_sym_on_goto_statement_token2] = ACTIONS(8857), + [aux_sym_on_error_statement_token2] = ACTIONS(8857), + [sym__ambiguous_redim_statement] = ACTIONS(8859), + [aux_sym_erase_statement_token1] = ACTIONS(8857), + [aux_sym_open_statement_token1] = ACTIONS(8857), + [aux_sym_file_mode_token2] = ACTIONS(8857), + [aux_sym_file_access_token2] = ACTIONS(8857), + [aux_sym_file_lock_token2] = ACTIONS(8857), + [aux_sym_print_statement_token1] = ACTIONS(8857), + [anon_sym_PLUS] = ACTIONS(8859), + [anon_sym_DASH] = ACTIONS(8857), + [anon_sym_QMARK] = ACTIONS(8859), + [aux_sym_close_statement_token1] = ACTIONS(8857), + [aux_sym_put_statement_token1] = ACTIONS(8857), + [aux_sym_unlock_statement_token1] = ACTIONS(8857), + [aux_sym_seek_statement_token1] = ACTIONS(8857), + [sym_reset_statement] = ACTIONS(8857), + [aux_sym_raise_event_statement_token1] = ACTIONS(8857), + [sym_stop_statement] = ACTIONS(8857), + [sym_beep_statement] = ACTIONS(8857), + [aux_sym_unload_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token2] = ACTIONS(8857), + [aux_sym_def_type_statement_token3] = ACTIONS(8857), + [aux_sym_def_type_statement_token4] = ACTIONS(8857), + [aux_sym_def_type_statement_token5] = ACTIONS(8857), + [aux_sym_def_type_statement_token6] = ACTIONS(8857), + [aux_sym_def_type_statement_token7] = ACTIONS(8857), + [aux_sym_def_type_statement_token8] = ACTIONS(8857), + [aux_sym_def_type_statement_token9] = ACTIONS(8857), + [aux_sym_def_type_statement_token10] = ACTIONS(8857), + [aux_sym_def_type_statement_token11] = ACTIONS(8857), + [aux_sym_def_type_statement_token12] = ACTIONS(8857), + [aux_sym_def_type_statement_token13] = ACTIONS(8857), + [aux_sym_def_type_statement_token14] = ACTIONS(8857), + [aux_sym_call_statement_token1] = ACTIONS(8857), + [sym__ambiguous_call_statement] = ACTIONS(8857), + [aux_sym_addressof_expression_token1] = ACTIONS(8857), + [aux_sym_type_of_expression_token1] = ACTIONS(8857), + [aux_sym_unary_expression_token1] = ACTIONS(8857), + [sym_string_literal] = ACTIONS(8859), + [sym_number_literal] = ACTIONS(8859), + [aux_sym_boolean_literal_token1] = ACTIONS(8857), + [aux_sym_boolean_literal_token2] = ACTIONS(8857), + [sym_nothing_literal] = ACTIONS(8857), + [sym_null_literal] = ACTIONS(8857), + [sym_empty_literal] = ACTIONS(8857), + [sym_date_literal] = ACTIONS(8859), + [anon_sym_POUND] = ACTIONS(8857), + }, + [STATE(6586)] = { + [sym_identifier] = ACTIONS(9268), + [sym_newline] = ACTIONS(9270), + [anon_sym_COLON] = ACTIONS(9270), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9268), + [aux_sym_frm_property_statement_token1] = ACTIONS(9268), + [anon_sym_DOT] = ACTIONS(9268), + [anon_sym_BANG] = ACTIONS(9270), + [aux_sym__attribute_identifier_token1] = ACTIONS(9268), + [aux_sym_option_statement_token3] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9268), + [aux_sym_preprocessor_const_token1] = ACTIONS(9268), + [sym_static_modifier] = ACTIONS(9268), + [sym__dim_keyword] = ACTIONS(9268), + [sym__redim_keyword] = ACTIONS(9268), + [aux_sym_get_accessor_token1] = ACTIONS(9268), + [aux_sym_set_accessor_token1] = ACTIONS(9268), + [aux_sym_const_declaration_token1] = ACTIONS(9268), + [anon_sym_LPAREN] = ACTIONS(9270), + [aux_sym_as_type_clause_token2] = ACTIONS(9268), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9268), + [aux_sym_visibility_token1] = ACTIONS(9268), + [aux_sym_visibility_token2] = ACTIONS(9268), + [aux_sym_elseif_fragment_token1] = ACTIONS(9268), + [aux_sym_else_fragment_token1] = ACTIONS(9268), + [aux_sym_select_statement_token1] = ACTIONS(9268), + [aux_sym__for_header_token1] = ACTIONS(9268), + [aux_sym_do_statement_token1] = ACTIONS(9268), + [aux_sym_do_condition_token1] = ACTIONS(9268), + [aux_sym_with_statement_token1] = ACTIONS(9268), + [aux_sym_exit_statement_token1] = ACTIONS(9268), + [sym_end_statement] = ACTIONS(9270), + [aux_sym_on_goto_statement_token1] = ACTIONS(9268), + [aux_sym_on_goto_statement_token2] = ACTIONS(9268), + [aux_sym_on_error_statement_token2] = ACTIONS(9268), + [sym__ambiguous_redim_statement] = ACTIONS(9270), + [aux_sym_erase_statement_token1] = ACTIONS(9268), + [aux_sym_open_statement_token1] = ACTIONS(9268), + [aux_sym_file_mode_token2] = ACTIONS(9268), + [aux_sym_file_access_token2] = ACTIONS(9268), + [aux_sym_file_lock_token2] = ACTIONS(9268), + [aux_sym_print_statement_token1] = ACTIONS(9268), + [anon_sym_PLUS] = ACTIONS(9270), + [anon_sym_DASH] = ACTIONS(9268), + [anon_sym_QMARK] = ACTIONS(9270), + [aux_sym_close_statement_token1] = ACTIONS(9268), + [aux_sym_put_statement_token1] = ACTIONS(9268), + [aux_sym_unlock_statement_token1] = ACTIONS(9268), + [aux_sym_seek_statement_token1] = ACTIONS(9268), + [sym_reset_statement] = ACTIONS(9268), + [aux_sym_raise_event_statement_token1] = ACTIONS(9268), + [sym_stop_statement] = ACTIONS(9268), + [sym_beep_statement] = ACTIONS(9268), + [aux_sym_unload_statement_token1] = ACTIONS(9268), + [aux_sym_def_type_statement_token1] = ACTIONS(9268), + [aux_sym_def_type_statement_token2] = ACTIONS(9268), + [aux_sym_def_type_statement_token3] = ACTIONS(9268), + [aux_sym_def_type_statement_token4] = ACTIONS(9268), + [aux_sym_def_type_statement_token5] = ACTIONS(9268), + [aux_sym_def_type_statement_token6] = ACTIONS(9268), + [aux_sym_def_type_statement_token7] = ACTIONS(9268), + [aux_sym_def_type_statement_token8] = ACTIONS(9268), + [aux_sym_def_type_statement_token9] = ACTIONS(9268), + [aux_sym_def_type_statement_token10] = ACTIONS(9268), + [aux_sym_def_type_statement_token11] = ACTIONS(9268), + [aux_sym_def_type_statement_token12] = ACTIONS(9268), + [aux_sym_def_type_statement_token13] = ACTIONS(9268), + [aux_sym_def_type_statement_token14] = ACTIONS(9268), + [aux_sym_call_statement_token1] = ACTIONS(9268), + [sym__ambiguous_call_statement] = ACTIONS(9268), + [aux_sym_addressof_expression_token1] = ACTIONS(9268), + [aux_sym_type_of_expression_token1] = ACTIONS(9268), + [aux_sym_unary_expression_token1] = ACTIONS(9268), + [sym_string_literal] = ACTIONS(9270), + [sym_number_literal] = ACTIONS(9270), + [aux_sym_boolean_literal_token1] = ACTIONS(9268), + [aux_sym_boolean_literal_token2] = ACTIONS(9268), + [sym_nothing_literal] = ACTIONS(9268), + [sym_null_literal] = ACTIONS(9268), + [sym_empty_literal] = ACTIONS(9268), + [sym_date_literal] = ACTIONS(9270), + [anon_sym_POUND] = ACTIONS(9268), + }, + [STATE(6587)] = { + [sym_identifier] = ACTIONS(9455), + [sym_newline] = ACTIONS(9457), + [anon_sym_COLON] = ACTIONS(9457), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9455), + [aux_sym_frm_property_statement_token1] = ACTIONS(9455), + [anon_sym_DOT] = ACTIONS(9455), + [anon_sym_BANG] = ACTIONS(9457), + [aux_sym__attribute_identifier_token1] = ACTIONS(9455), + [aux_sym_option_statement_token3] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9455), + [aux_sym_preprocessor_const_token1] = ACTIONS(9455), + [sym_static_modifier] = ACTIONS(9455), + [sym__dim_keyword] = ACTIONS(9455), + [sym__redim_keyword] = ACTIONS(9455), + [aux_sym_get_accessor_token1] = ACTIONS(9455), + [aux_sym_set_accessor_token1] = ACTIONS(9455), + [aux_sym_const_declaration_token1] = ACTIONS(9455), + [anon_sym_LPAREN] = ACTIONS(9457), + [aux_sym_as_type_clause_token2] = ACTIONS(9455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9455), + [aux_sym_visibility_token1] = ACTIONS(9455), + [aux_sym_visibility_token2] = ACTIONS(9455), + [aux_sym_elseif_fragment_token1] = ACTIONS(9455), + [aux_sym_else_fragment_token1] = ACTIONS(9455), + [aux_sym_select_statement_token1] = ACTIONS(9455), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9455), + [aux_sym__for_header_token1] = ACTIONS(9455), + [aux_sym_do_statement_token1] = ACTIONS(9455), + [aux_sym_do_condition_token1] = ACTIONS(9455), + [aux_sym_with_statement_token1] = ACTIONS(9455), + [aux_sym_exit_statement_token1] = ACTIONS(9455), + [sym_end_statement] = ACTIONS(9457), + [aux_sym_on_goto_statement_token1] = ACTIONS(9455), + [aux_sym_on_goto_statement_token2] = ACTIONS(9455), + [aux_sym_on_error_statement_token2] = ACTIONS(9455), + [sym__ambiguous_redim_statement] = ACTIONS(9457), + [aux_sym_erase_statement_token1] = ACTIONS(9455), + [aux_sym_open_statement_token1] = ACTIONS(9455), + [aux_sym_file_mode_token2] = ACTIONS(9455), + [aux_sym_file_access_token2] = ACTIONS(9455), + [aux_sym_file_lock_token2] = ACTIONS(9455), + [aux_sym_print_statement_token1] = ACTIONS(9455), + [anon_sym_PLUS] = ACTIONS(9457), + [anon_sym_DASH] = ACTIONS(9455), + [anon_sym_QMARK] = ACTIONS(9457), + [aux_sym_close_statement_token1] = ACTIONS(9455), + [aux_sym_put_statement_token1] = ACTIONS(9455), + [aux_sym_unlock_statement_token1] = ACTIONS(9455), + [aux_sym_seek_statement_token1] = ACTIONS(9455), + [sym_reset_statement] = ACTIONS(9455), + [aux_sym_raise_event_statement_token1] = ACTIONS(9455), + [sym_stop_statement] = ACTIONS(9455), + [sym_beep_statement] = ACTIONS(9455), + [aux_sym_unload_statement_token1] = ACTIONS(9455), + [aux_sym_def_type_statement_token1] = ACTIONS(9455), + [aux_sym_def_type_statement_token2] = ACTIONS(9455), + [aux_sym_def_type_statement_token3] = ACTIONS(9455), + [aux_sym_def_type_statement_token4] = ACTIONS(9455), + [aux_sym_def_type_statement_token5] = ACTIONS(9455), + [aux_sym_def_type_statement_token6] = ACTIONS(9455), + [aux_sym_def_type_statement_token7] = ACTIONS(9455), + [aux_sym_def_type_statement_token8] = ACTIONS(9455), + [aux_sym_def_type_statement_token9] = ACTIONS(9455), + [aux_sym_def_type_statement_token10] = ACTIONS(9455), + [aux_sym_def_type_statement_token11] = ACTIONS(9455), + [aux_sym_def_type_statement_token12] = ACTIONS(9455), + [aux_sym_def_type_statement_token13] = ACTIONS(9455), + [aux_sym_def_type_statement_token14] = ACTIONS(9455), + [aux_sym_call_statement_token1] = ACTIONS(9455), + [sym__ambiguous_call_statement] = ACTIONS(9455), + [aux_sym_addressof_expression_token1] = ACTIONS(9455), + [aux_sym_type_of_expression_token1] = ACTIONS(9455), + [aux_sym_unary_expression_token1] = ACTIONS(9455), + [sym_string_literal] = ACTIONS(9457), + [sym_number_literal] = ACTIONS(9457), + [aux_sym_boolean_literal_token1] = ACTIONS(9455), + [aux_sym_boolean_literal_token2] = ACTIONS(9455), + [sym_nothing_literal] = ACTIONS(9455), + [sym_null_literal] = ACTIONS(9455), + [sym_empty_literal] = ACTIONS(9455), + [sym_date_literal] = ACTIONS(9457), + [anon_sym_POUND] = ACTIONS(9455), + }, + [STATE(6588)] = { + [sym_identifier] = ACTIONS(8861), + [sym_newline] = ACTIONS(8863), + [anon_sym_COLON] = ACTIONS(8863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8861), + [aux_sym_frm_property_statement_token1] = ACTIONS(8861), + [anon_sym_DOT] = ACTIONS(8861), + [anon_sym_BANG] = ACTIONS(8863), + [aux_sym__attribute_identifier_token1] = ACTIONS(8861), + [aux_sym_option_statement_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8861), + [aux_sym_preprocessor_const_token1] = ACTIONS(8861), + [sym_static_modifier] = ACTIONS(8861), + [sym__dim_keyword] = ACTIONS(8861), + [sym__redim_keyword] = ACTIONS(8861), + [aux_sym_get_accessor_token1] = ACTIONS(8861), + [aux_sym_set_accessor_token1] = ACTIONS(8861), + [aux_sym_const_declaration_token1] = ACTIONS(8861), + [anon_sym_LPAREN] = ACTIONS(8863), + [aux_sym_as_type_clause_token2] = ACTIONS(8861), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8861), + [aux_sym_visibility_token1] = ACTIONS(8861), + [aux_sym_visibility_token2] = ACTIONS(8861), + [aux_sym_elseif_fragment_token1] = ACTIONS(8861), + [aux_sym_else_fragment_token1] = ACTIONS(8861), + [aux_sym_select_statement_token1] = ACTIONS(8861), + [aux_sym__for_header_token1] = ACTIONS(8861), + [aux_sym_do_statement_token1] = ACTIONS(8861), + [aux_sym_do_condition_token1] = ACTIONS(8861), + [aux_sym_with_statement_token1] = ACTIONS(8861), + [aux_sym_exit_statement_token1] = ACTIONS(8861), + [sym_end_statement] = ACTIONS(8863), + [aux_sym_on_goto_statement_token1] = ACTIONS(8861), + [aux_sym_on_goto_statement_token2] = ACTIONS(8861), + [aux_sym_on_error_statement_token2] = ACTIONS(8861), + [sym__ambiguous_redim_statement] = ACTIONS(8863), + [aux_sym_erase_statement_token1] = ACTIONS(8861), + [aux_sym_open_statement_token1] = ACTIONS(8861), + [aux_sym_file_mode_token2] = ACTIONS(8861), + [aux_sym_file_access_token2] = ACTIONS(8861), + [aux_sym_file_lock_token2] = ACTIONS(8861), + [aux_sym_print_statement_token1] = ACTIONS(8861), + [anon_sym_PLUS] = ACTIONS(8863), + [anon_sym_DASH] = ACTIONS(8861), + [anon_sym_QMARK] = ACTIONS(8863), + [aux_sym_close_statement_token1] = ACTIONS(8861), + [aux_sym_put_statement_token1] = ACTIONS(8861), + [aux_sym_unlock_statement_token1] = ACTIONS(8861), + [aux_sym_seek_statement_token1] = ACTIONS(8861), + [sym_reset_statement] = ACTIONS(8861), + [aux_sym_raise_event_statement_token1] = ACTIONS(8861), + [sym_stop_statement] = ACTIONS(8861), + [sym_beep_statement] = ACTIONS(8861), + [aux_sym_unload_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token2] = ACTIONS(8861), + [aux_sym_def_type_statement_token3] = ACTIONS(8861), + [aux_sym_def_type_statement_token4] = ACTIONS(8861), + [aux_sym_def_type_statement_token5] = ACTIONS(8861), + [aux_sym_def_type_statement_token6] = ACTIONS(8861), + [aux_sym_def_type_statement_token7] = ACTIONS(8861), + [aux_sym_def_type_statement_token8] = ACTIONS(8861), + [aux_sym_def_type_statement_token9] = ACTIONS(8861), + [aux_sym_def_type_statement_token10] = ACTIONS(8861), + [aux_sym_def_type_statement_token11] = ACTIONS(8861), + [aux_sym_def_type_statement_token12] = ACTIONS(8861), + [aux_sym_def_type_statement_token13] = ACTIONS(8861), + [aux_sym_def_type_statement_token14] = ACTIONS(8861), + [aux_sym_call_statement_token1] = ACTIONS(8861), + [sym__ambiguous_call_statement] = ACTIONS(8861), + [aux_sym_addressof_expression_token1] = ACTIONS(8861), + [aux_sym_type_of_expression_token1] = ACTIONS(8861), + [aux_sym_unary_expression_token1] = ACTIONS(8861), + [sym_string_literal] = ACTIONS(8863), + [sym_number_literal] = ACTIONS(8863), + [aux_sym_boolean_literal_token1] = ACTIONS(8861), + [aux_sym_boolean_literal_token2] = ACTIONS(8861), + [sym_nothing_literal] = ACTIONS(8861), + [sym_null_literal] = ACTIONS(8861), + [sym_empty_literal] = ACTIONS(8861), + [sym_date_literal] = ACTIONS(8863), + [anon_sym_POUND] = ACTIONS(8861), + }, + [STATE(6589)] = { + [sym_identifier] = ACTIONS(9048), + [sym_newline] = ACTIONS(9050), + [anon_sym_COLON] = ACTIONS(9050), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9048), + [aux_sym_frm_property_statement_token1] = ACTIONS(9048), + [anon_sym_DOT] = ACTIONS(9048), + [anon_sym_BANG] = ACTIONS(9050), + [aux_sym__attribute_identifier_token1] = ACTIONS(9048), + [aux_sym_option_statement_token3] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9048), + [aux_sym_preprocessor_const_token1] = ACTIONS(9048), + [sym_static_modifier] = ACTIONS(9048), + [sym__dim_keyword] = ACTIONS(9048), + [sym__redim_keyword] = ACTIONS(9048), + [aux_sym_get_accessor_token1] = ACTIONS(9048), + [aux_sym_set_accessor_token1] = ACTIONS(9048), + [aux_sym_const_declaration_token1] = ACTIONS(9048), + [anon_sym_LPAREN] = ACTIONS(9050), + [aux_sym_as_type_clause_token2] = ACTIONS(9048), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9048), + [aux_sym_visibility_token1] = ACTIONS(9048), + [aux_sym_visibility_token2] = ACTIONS(9048), + [aux_sym_elseif_fragment_token1] = ACTIONS(9048), + [aux_sym_else_fragment_token1] = ACTIONS(9048), + [aux_sym_select_statement_token1] = ACTIONS(9048), + [aux_sym__for_header_token1] = ACTIONS(9048), + [aux_sym_do_statement_token1] = ACTIONS(9048), + [aux_sym_do_condition_token1] = ACTIONS(9048), + [aux_sym_with_statement_token1] = ACTIONS(9048), + [aux_sym_exit_statement_token1] = ACTIONS(9048), + [sym_end_statement] = ACTIONS(9050), + [aux_sym_on_goto_statement_token1] = ACTIONS(9048), + [aux_sym_on_goto_statement_token2] = ACTIONS(9048), + [aux_sym_on_error_statement_token2] = ACTIONS(9048), + [sym__ambiguous_redim_statement] = ACTIONS(9050), + [aux_sym_erase_statement_token1] = ACTIONS(9048), + [aux_sym_open_statement_token1] = ACTIONS(9048), + [aux_sym_file_mode_token2] = ACTIONS(9048), + [aux_sym_file_access_token2] = ACTIONS(9048), + [aux_sym_file_lock_token2] = ACTIONS(9048), + [aux_sym_print_statement_token1] = ACTIONS(9048), + [anon_sym_PLUS] = ACTIONS(9050), + [anon_sym_DASH] = ACTIONS(9048), + [anon_sym_QMARK] = ACTIONS(9050), + [aux_sym_close_statement_token1] = ACTIONS(9048), + [aux_sym_put_statement_token1] = ACTIONS(9048), + [aux_sym_unlock_statement_token1] = ACTIONS(9048), + [aux_sym_seek_statement_token1] = ACTIONS(9048), + [sym_reset_statement] = ACTIONS(9048), + [aux_sym_raise_event_statement_token1] = ACTIONS(9048), + [sym_stop_statement] = ACTIONS(9048), + [sym_beep_statement] = ACTIONS(9048), + [aux_sym_unload_statement_token1] = ACTIONS(9048), + [aux_sym_def_type_statement_token1] = ACTIONS(9048), + [aux_sym_def_type_statement_token2] = ACTIONS(9048), + [aux_sym_def_type_statement_token3] = ACTIONS(9048), + [aux_sym_def_type_statement_token4] = ACTIONS(9048), + [aux_sym_def_type_statement_token5] = ACTIONS(9048), + [aux_sym_def_type_statement_token6] = ACTIONS(9048), + [aux_sym_def_type_statement_token7] = ACTIONS(9048), + [aux_sym_def_type_statement_token8] = ACTIONS(9048), + [aux_sym_def_type_statement_token9] = ACTIONS(9048), + [aux_sym_def_type_statement_token10] = ACTIONS(9048), + [aux_sym_def_type_statement_token11] = ACTIONS(9048), + [aux_sym_def_type_statement_token12] = ACTIONS(9048), + [aux_sym_def_type_statement_token13] = ACTIONS(9048), + [aux_sym_def_type_statement_token14] = ACTIONS(9048), + [aux_sym_call_statement_token1] = ACTIONS(9048), + [sym__ambiguous_call_statement] = ACTIONS(9048), + [aux_sym_addressof_expression_token1] = ACTIONS(9048), + [aux_sym_type_of_expression_token1] = ACTIONS(9048), + [aux_sym_unary_expression_token1] = ACTIONS(9048), + [sym_string_literal] = ACTIONS(9050), + [sym_number_literal] = ACTIONS(9050), + [aux_sym_boolean_literal_token1] = ACTIONS(9048), + [aux_sym_boolean_literal_token2] = ACTIONS(9048), + [sym_nothing_literal] = ACTIONS(9048), + [sym_null_literal] = ACTIONS(9048), + [sym_empty_literal] = ACTIONS(9048), + [sym_date_literal] = ACTIONS(9050), + [anon_sym_POUND] = ACTIONS(9048), + }, + [STATE(6590)] = { + [sym_identifier] = ACTIONS(8988), + [sym_newline] = ACTIONS(8990), + [anon_sym_COLON] = ACTIONS(8990), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8988), + [aux_sym_frm_property_statement_token1] = ACTIONS(8988), + [anon_sym_DOT] = ACTIONS(8988), + [anon_sym_BANG] = ACTIONS(8990), + [aux_sym__attribute_identifier_token1] = ACTIONS(8988), + [aux_sym_option_statement_token3] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8988), + [aux_sym_preprocessor_const_token1] = ACTIONS(8988), + [sym_static_modifier] = ACTIONS(8988), + [sym__dim_keyword] = ACTIONS(8988), + [sym__redim_keyword] = ACTIONS(8988), + [aux_sym_get_accessor_token1] = ACTIONS(8988), + [aux_sym_set_accessor_token1] = ACTIONS(8988), + [aux_sym_const_declaration_token1] = ACTIONS(8988), + [anon_sym_LPAREN] = ACTIONS(8990), + [aux_sym_as_type_clause_token2] = ACTIONS(8988), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8988), + [aux_sym_visibility_token1] = ACTIONS(8988), + [aux_sym_visibility_token2] = ACTIONS(8988), + [aux_sym_elseif_fragment_token1] = ACTIONS(8988), + [aux_sym_else_fragment_token1] = ACTIONS(8988), + [aux_sym_select_statement_token1] = ACTIONS(8988), + [aux_sym__for_header_token1] = ACTIONS(8988), + [aux_sym_do_statement_token1] = ACTIONS(8988), + [aux_sym_do_condition_token1] = ACTIONS(8988), + [aux_sym_with_statement_token1] = ACTIONS(8988), + [aux_sym_exit_statement_token1] = ACTIONS(8988), + [sym_end_statement] = ACTIONS(8990), + [aux_sym_on_goto_statement_token1] = ACTIONS(8988), + [aux_sym_on_goto_statement_token2] = ACTIONS(8988), + [aux_sym_on_error_statement_token2] = ACTIONS(8988), + [sym__ambiguous_redim_statement] = ACTIONS(8990), + [aux_sym_erase_statement_token1] = ACTIONS(8988), + [aux_sym_open_statement_token1] = ACTIONS(8988), + [aux_sym_file_mode_token2] = ACTIONS(8988), + [aux_sym_file_access_token2] = ACTIONS(8988), + [aux_sym_file_lock_token2] = ACTIONS(8988), + [aux_sym_print_statement_token1] = ACTIONS(8988), + [anon_sym_PLUS] = ACTIONS(8990), + [anon_sym_DASH] = ACTIONS(8988), + [anon_sym_QMARK] = ACTIONS(8990), + [aux_sym_close_statement_token1] = ACTIONS(8988), + [aux_sym_put_statement_token1] = ACTIONS(8988), + [aux_sym_unlock_statement_token1] = ACTIONS(8988), + [aux_sym_seek_statement_token1] = ACTIONS(8988), + [sym_reset_statement] = ACTIONS(8988), + [aux_sym_raise_event_statement_token1] = ACTIONS(8988), + [sym_stop_statement] = ACTIONS(8988), + [sym_beep_statement] = ACTIONS(8988), + [aux_sym_unload_statement_token1] = ACTIONS(8988), + [aux_sym_def_type_statement_token1] = ACTIONS(8988), + [aux_sym_def_type_statement_token2] = ACTIONS(8988), + [aux_sym_def_type_statement_token3] = ACTIONS(8988), + [aux_sym_def_type_statement_token4] = ACTIONS(8988), + [aux_sym_def_type_statement_token5] = ACTIONS(8988), + [aux_sym_def_type_statement_token6] = ACTIONS(8988), + [aux_sym_def_type_statement_token7] = ACTIONS(8988), + [aux_sym_def_type_statement_token8] = ACTIONS(8988), + [aux_sym_def_type_statement_token9] = ACTIONS(8988), + [aux_sym_def_type_statement_token10] = ACTIONS(8988), + [aux_sym_def_type_statement_token11] = ACTIONS(8988), + [aux_sym_def_type_statement_token12] = ACTIONS(8988), + [aux_sym_def_type_statement_token13] = ACTIONS(8988), + [aux_sym_def_type_statement_token14] = ACTIONS(8988), + [aux_sym_call_statement_token1] = ACTIONS(8988), + [sym__ambiguous_call_statement] = ACTIONS(8988), + [aux_sym_addressof_expression_token1] = ACTIONS(8988), + [aux_sym_type_of_expression_token1] = ACTIONS(8988), + [aux_sym_unary_expression_token1] = ACTIONS(8988), + [sym_string_literal] = ACTIONS(8990), + [sym_number_literal] = ACTIONS(8990), + [aux_sym_boolean_literal_token1] = ACTIONS(8988), + [aux_sym_boolean_literal_token2] = ACTIONS(8988), + [sym_nothing_literal] = ACTIONS(8988), + [sym_null_literal] = ACTIONS(8988), + [sym_empty_literal] = ACTIONS(8988), + [sym_date_literal] = ACTIONS(8990), + [anon_sym_POUND] = ACTIONS(8988), + }, + [STATE(6591)] = { + [sym_identifier] = ACTIONS(8903), + [sym_newline] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8903), + [aux_sym_frm_property_statement_token1] = ACTIONS(8903), + [anon_sym_DOT] = ACTIONS(8903), + [anon_sym_BANG] = ACTIONS(8905), + [aux_sym__attribute_identifier_token1] = ACTIONS(8903), + [aux_sym_option_statement_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8903), + [aux_sym_preprocessor_const_token1] = ACTIONS(8903), + [sym_static_modifier] = ACTIONS(8903), + [sym__dim_keyword] = ACTIONS(8903), + [sym__redim_keyword] = ACTIONS(8903), + [aux_sym_get_accessor_token1] = ACTIONS(8903), + [aux_sym_set_accessor_token1] = ACTIONS(8903), + [aux_sym_const_declaration_token1] = ACTIONS(8903), + [anon_sym_LPAREN] = ACTIONS(8905), + [aux_sym_as_type_clause_token2] = ACTIONS(8903), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8903), + [aux_sym_visibility_token1] = ACTIONS(8903), + [aux_sym_visibility_token2] = ACTIONS(8903), + [aux_sym_elseif_fragment_token1] = ACTIONS(8903), + [aux_sym_else_fragment_token1] = ACTIONS(8903), + [aux_sym_select_statement_token1] = ACTIONS(8903), + [aux_sym__for_header_token1] = ACTIONS(8903), + [aux_sym_do_statement_token1] = ACTIONS(8903), + [aux_sym_do_condition_token1] = ACTIONS(8903), + [aux_sym_with_statement_token1] = ACTIONS(8903), + [aux_sym_exit_statement_token1] = ACTIONS(8903), + [sym_end_statement] = ACTIONS(8905), + [aux_sym_on_goto_statement_token1] = ACTIONS(8903), + [aux_sym_on_goto_statement_token2] = ACTIONS(8903), + [aux_sym_on_error_statement_token2] = ACTIONS(8903), + [sym__ambiguous_redim_statement] = ACTIONS(8905), + [aux_sym_erase_statement_token1] = ACTIONS(8903), + [aux_sym_open_statement_token1] = ACTIONS(8903), + [aux_sym_file_mode_token2] = ACTIONS(8903), + [aux_sym_file_access_token2] = ACTIONS(8903), + [aux_sym_file_lock_token2] = ACTIONS(8903), + [aux_sym_print_statement_token1] = ACTIONS(8903), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_DASH] = ACTIONS(8903), + [anon_sym_QMARK] = ACTIONS(8905), + [aux_sym_close_statement_token1] = ACTIONS(8903), + [aux_sym_put_statement_token1] = ACTIONS(8903), + [aux_sym_unlock_statement_token1] = ACTIONS(8903), + [aux_sym_seek_statement_token1] = ACTIONS(8903), + [sym_reset_statement] = ACTIONS(8903), + [aux_sym_raise_event_statement_token1] = ACTIONS(8903), + [sym_stop_statement] = ACTIONS(8903), + [sym_beep_statement] = ACTIONS(8903), + [aux_sym_unload_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token2] = ACTIONS(8903), + [aux_sym_def_type_statement_token3] = ACTIONS(8903), + [aux_sym_def_type_statement_token4] = ACTIONS(8903), + [aux_sym_def_type_statement_token5] = ACTIONS(8903), + [aux_sym_def_type_statement_token6] = ACTIONS(8903), + [aux_sym_def_type_statement_token7] = ACTIONS(8903), + [aux_sym_def_type_statement_token8] = ACTIONS(8903), + [aux_sym_def_type_statement_token9] = ACTIONS(8903), + [aux_sym_def_type_statement_token10] = ACTIONS(8903), + [aux_sym_def_type_statement_token11] = ACTIONS(8903), + [aux_sym_def_type_statement_token12] = ACTIONS(8903), + [aux_sym_def_type_statement_token13] = ACTIONS(8903), + [aux_sym_def_type_statement_token14] = ACTIONS(8903), + [aux_sym_call_statement_token1] = ACTIONS(8903), + [sym__ambiguous_call_statement] = ACTIONS(8903), + [aux_sym_addressof_expression_token1] = ACTIONS(8903), + [aux_sym_type_of_expression_token1] = ACTIONS(8903), + [aux_sym_unary_expression_token1] = ACTIONS(8903), + [sym_string_literal] = ACTIONS(8905), + [sym_number_literal] = ACTIONS(8905), + [aux_sym_boolean_literal_token1] = ACTIONS(8903), + [aux_sym_boolean_literal_token2] = ACTIONS(8903), + [sym_nothing_literal] = ACTIONS(8903), + [sym_null_literal] = ACTIONS(8903), + [sym_empty_literal] = ACTIONS(8903), + [sym_date_literal] = ACTIONS(8905), + [anon_sym_POUND] = ACTIONS(8903), + }, + [STATE(6592)] = { + [sym_identifier] = ACTIONS(9130), + [sym_newline] = ACTIONS(9132), + [anon_sym_COLON] = ACTIONS(9132), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9130), + [aux_sym_frm_property_statement_token1] = ACTIONS(9130), + [anon_sym_DOT] = ACTIONS(9130), + [anon_sym_BANG] = ACTIONS(9132), + [aux_sym__attribute_identifier_token1] = ACTIONS(9130), + [aux_sym_option_statement_token3] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9130), + [aux_sym_preprocessor_const_token1] = ACTIONS(9130), + [sym_static_modifier] = ACTIONS(9130), + [sym__dim_keyword] = ACTIONS(9130), + [sym__redim_keyword] = ACTIONS(9130), + [aux_sym_get_accessor_token1] = ACTIONS(9130), + [aux_sym_set_accessor_token1] = ACTIONS(9130), + [aux_sym_const_declaration_token1] = ACTIONS(9130), + [anon_sym_LPAREN] = ACTIONS(9132), + [aux_sym_as_type_clause_token2] = ACTIONS(9130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9130), + [aux_sym_visibility_token1] = ACTIONS(9130), + [aux_sym_visibility_token2] = ACTIONS(9130), + [aux_sym_elseif_fragment_token1] = ACTIONS(9130), + [aux_sym_else_fragment_token1] = ACTIONS(9130), + [aux_sym_select_statement_token1] = ACTIONS(9130), + [aux_sym__for_header_token1] = ACTIONS(9130), + [aux_sym_do_statement_token1] = ACTIONS(9130), + [aux_sym_do_statement_token2] = ACTIONS(9130), + [aux_sym_do_condition_token1] = ACTIONS(9130), + [aux_sym_with_statement_token1] = ACTIONS(9130), + [aux_sym_exit_statement_token1] = ACTIONS(9130), + [sym_end_statement] = ACTIONS(9132), + [aux_sym_on_goto_statement_token1] = ACTIONS(9130), + [aux_sym_on_goto_statement_token2] = ACTIONS(9130), + [aux_sym_on_error_statement_token2] = ACTIONS(9130), + [sym__ambiguous_redim_statement] = ACTIONS(9132), + [aux_sym_erase_statement_token1] = ACTIONS(9130), + [aux_sym_open_statement_token1] = ACTIONS(9130), + [aux_sym_file_mode_token2] = ACTIONS(9130), + [aux_sym_file_access_token2] = ACTIONS(9130), + [aux_sym_file_lock_token2] = ACTIONS(9130), + [aux_sym_print_statement_token1] = ACTIONS(9130), + [anon_sym_PLUS] = ACTIONS(9132), + [anon_sym_DASH] = ACTIONS(9130), + [anon_sym_QMARK] = ACTIONS(9132), + [aux_sym_close_statement_token1] = ACTIONS(9130), + [aux_sym_put_statement_token1] = ACTIONS(9130), + [aux_sym_unlock_statement_token1] = ACTIONS(9130), + [aux_sym_seek_statement_token1] = ACTIONS(9130), + [sym_reset_statement] = ACTIONS(9130), + [aux_sym_raise_event_statement_token1] = ACTIONS(9130), + [sym_stop_statement] = ACTIONS(9130), + [sym_beep_statement] = ACTIONS(9130), + [aux_sym_unload_statement_token1] = ACTIONS(9130), + [aux_sym_def_type_statement_token1] = ACTIONS(9130), + [aux_sym_def_type_statement_token2] = ACTIONS(9130), + [aux_sym_def_type_statement_token3] = ACTIONS(9130), + [aux_sym_def_type_statement_token4] = ACTIONS(9130), + [aux_sym_def_type_statement_token5] = ACTIONS(9130), + [aux_sym_def_type_statement_token6] = ACTIONS(9130), + [aux_sym_def_type_statement_token7] = ACTIONS(9130), + [aux_sym_def_type_statement_token8] = ACTIONS(9130), + [aux_sym_def_type_statement_token9] = ACTIONS(9130), + [aux_sym_def_type_statement_token10] = ACTIONS(9130), + [aux_sym_def_type_statement_token11] = ACTIONS(9130), + [aux_sym_def_type_statement_token12] = ACTIONS(9130), + [aux_sym_def_type_statement_token13] = ACTIONS(9130), + [aux_sym_def_type_statement_token14] = ACTIONS(9130), + [aux_sym_call_statement_token1] = ACTIONS(9130), + [sym__ambiguous_call_statement] = ACTIONS(9130), + [aux_sym_addressof_expression_token1] = ACTIONS(9130), + [aux_sym_type_of_expression_token1] = ACTIONS(9130), + [aux_sym_unary_expression_token1] = ACTIONS(9130), + [sym_string_literal] = ACTIONS(9132), + [sym_number_literal] = ACTIONS(9132), + [aux_sym_boolean_literal_token1] = ACTIONS(9130), + [aux_sym_boolean_literal_token2] = ACTIONS(9130), + [sym_nothing_literal] = ACTIONS(9130), + [sym_null_literal] = ACTIONS(9130), + [sym_empty_literal] = ACTIONS(9130), + [sym_date_literal] = ACTIONS(9132), + [anon_sym_POUND] = ACTIONS(9130), + }, + [STATE(6593)] = { + [sym_identifier] = ACTIONS(9134), + [sym_newline] = ACTIONS(9136), + [anon_sym_COLON] = ACTIONS(9136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9134), + [aux_sym_frm_property_statement_token1] = ACTIONS(9134), + [anon_sym_DOT] = ACTIONS(9134), + [anon_sym_BANG] = ACTIONS(9136), + [aux_sym__attribute_identifier_token1] = ACTIONS(9134), + [aux_sym_option_statement_token3] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9134), + [aux_sym_preprocessor_const_token1] = ACTIONS(9134), + [sym_static_modifier] = ACTIONS(9134), + [sym__dim_keyword] = ACTIONS(9134), + [sym__redim_keyword] = ACTIONS(9134), + [aux_sym_get_accessor_token1] = ACTIONS(9134), + [aux_sym_set_accessor_token1] = ACTIONS(9134), + [aux_sym_const_declaration_token1] = ACTIONS(9134), + [anon_sym_LPAREN] = ACTIONS(9136), + [aux_sym_as_type_clause_token2] = ACTIONS(9134), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9134), + [aux_sym_visibility_token1] = ACTIONS(9134), + [aux_sym_visibility_token2] = ACTIONS(9134), + [aux_sym_elseif_fragment_token1] = ACTIONS(9134), + [aux_sym_else_fragment_token1] = ACTIONS(9134), + [aux_sym_select_statement_token1] = ACTIONS(9134), + [aux_sym__for_header_token1] = ACTIONS(9134), + [aux_sym_do_statement_token1] = ACTIONS(9134), + [aux_sym_do_statement_token2] = ACTIONS(9134), + [aux_sym_do_condition_token1] = ACTIONS(9134), + [aux_sym_with_statement_token1] = ACTIONS(9134), + [aux_sym_exit_statement_token1] = ACTIONS(9134), + [sym_end_statement] = ACTIONS(9136), + [aux_sym_on_goto_statement_token1] = ACTIONS(9134), + [aux_sym_on_goto_statement_token2] = ACTIONS(9134), + [aux_sym_on_error_statement_token2] = ACTIONS(9134), + [sym__ambiguous_redim_statement] = ACTIONS(9136), + [aux_sym_erase_statement_token1] = ACTIONS(9134), + [aux_sym_open_statement_token1] = ACTIONS(9134), + [aux_sym_file_mode_token2] = ACTIONS(9134), + [aux_sym_file_access_token2] = ACTIONS(9134), + [aux_sym_file_lock_token2] = ACTIONS(9134), + [aux_sym_print_statement_token1] = ACTIONS(9134), + [anon_sym_PLUS] = ACTIONS(9136), + [anon_sym_DASH] = ACTIONS(9134), + [anon_sym_QMARK] = ACTIONS(9136), + [aux_sym_close_statement_token1] = ACTIONS(9134), + [aux_sym_put_statement_token1] = ACTIONS(9134), + [aux_sym_unlock_statement_token1] = ACTIONS(9134), + [aux_sym_seek_statement_token1] = ACTIONS(9134), + [sym_reset_statement] = ACTIONS(9134), + [aux_sym_raise_event_statement_token1] = ACTIONS(9134), + [sym_stop_statement] = ACTIONS(9134), + [sym_beep_statement] = ACTIONS(9134), + [aux_sym_unload_statement_token1] = ACTIONS(9134), + [aux_sym_def_type_statement_token1] = ACTIONS(9134), + [aux_sym_def_type_statement_token2] = ACTIONS(9134), + [aux_sym_def_type_statement_token3] = ACTIONS(9134), + [aux_sym_def_type_statement_token4] = ACTIONS(9134), + [aux_sym_def_type_statement_token5] = ACTIONS(9134), + [aux_sym_def_type_statement_token6] = ACTIONS(9134), + [aux_sym_def_type_statement_token7] = ACTIONS(9134), + [aux_sym_def_type_statement_token8] = ACTIONS(9134), + [aux_sym_def_type_statement_token9] = ACTIONS(9134), + [aux_sym_def_type_statement_token10] = ACTIONS(9134), + [aux_sym_def_type_statement_token11] = ACTIONS(9134), + [aux_sym_def_type_statement_token12] = ACTIONS(9134), + [aux_sym_def_type_statement_token13] = ACTIONS(9134), + [aux_sym_def_type_statement_token14] = ACTIONS(9134), + [aux_sym_call_statement_token1] = ACTIONS(9134), + [sym__ambiguous_call_statement] = ACTIONS(9134), + [aux_sym_addressof_expression_token1] = ACTIONS(9134), + [aux_sym_type_of_expression_token1] = ACTIONS(9134), + [aux_sym_unary_expression_token1] = ACTIONS(9134), + [sym_string_literal] = ACTIONS(9136), + [sym_number_literal] = ACTIONS(9136), + [aux_sym_boolean_literal_token1] = ACTIONS(9134), + [aux_sym_boolean_literal_token2] = ACTIONS(9134), + [sym_nothing_literal] = ACTIONS(9134), + [sym_null_literal] = ACTIONS(9134), + [sym_empty_literal] = ACTIONS(9134), + [sym_date_literal] = ACTIONS(9136), + [anon_sym_POUND] = ACTIONS(9134), + }, + [STATE(6594)] = { + [sym_identifier] = ACTIONS(8911), + [sym_newline] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8911), + [aux_sym_frm_property_statement_token1] = ACTIONS(8911), + [anon_sym_DOT] = ACTIONS(8911), + [anon_sym_BANG] = ACTIONS(8913), + [aux_sym__attribute_identifier_token1] = ACTIONS(8911), + [aux_sym_option_statement_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8911), + [aux_sym_preprocessor_const_token1] = ACTIONS(8911), + [sym_static_modifier] = ACTIONS(8911), + [sym__dim_keyword] = ACTIONS(8911), + [sym__redim_keyword] = ACTIONS(8911), + [aux_sym_get_accessor_token1] = ACTIONS(8911), + [aux_sym_set_accessor_token1] = ACTIONS(8911), + [aux_sym_const_declaration_token1] = ACTIONS(8911), + [anon_sym_LPAREN] = ACTIONS(8913), + [aux_sym_as_type_clause_token2] = ACTIONS(8911), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8911), + [aux_sym_visibility_token1] = ACTIONS(8911), + [aux_sym_visibility_token2] = ACTIONS(8911), + [aux_sym_elseif_fragment_token1] = ACTIONS(8911), + [aux_sym_else_fragment_token1] = ACTIONS(8911), + [aux_sym_select_statement_token1] = ACTIONS(8911), + [aux_sym__for_header_token1] = ACTIONS(8911), + [aux_sym_do_statement_token1] = ACTIONS(8911), + [aux_sym_do_condition_token1] = ACTIONS(8911), + [aux_sym_with_statement_token1] = ACTIONS(8911), + [aux_sym_exit_statement_token1] = ACTIONS(8911), + [sym_end_statement] = ACTIONS(8913), + [aux_sym_on_goto_statement_token1] = ACTIONS(8911), + [aux_sym_on_goto_statement_token2] = ACTIONS(8911), + [aux_sym_on_error_statement_token2] = ACTIONS(8911), + [sym__ambiguous_redim_statement] = ACTIONS(8913), + [aux_sym_erase_statement_token1] = ACTIONS(8911), + [aux_sym_open_statement_token1] = ACTIONS(8911), + [aux_sym_file_mode_token2] = ACTIONS(8911), + [aux_sym_file_access_token2] = ACTIONS(8911), + [aux_sym_file_lock_token2] = ACTIONS(8911), + [aux_sym_print_statement_token1] = ACTIONS(8911), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_DASH] = ACTIONS(8911), + [anon_sym_QMARK] = ACTIONS(8913), + [aux_sym_close_statement_token1] = ACTIONS(8911), + [aux_sym_put_statement_token1] = ACTIONS(8911), + [aux_sym_unlock_statement_token1] = ACTIONS(8911), + [aux_sym_seek_statement_token1] = ACTIONS(8911), + [sym_reset_statement] = ACTIONS(8911), + [aux_sym_raise_event_statement_token1] = ACTIONS(8911), + [sym_stop_statement] = ACTIONS(8911), + [sym_beep_statement] = ACTIONS(8911), + [aux_sym_unload_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token2] = ACTIONS(8911), + [aux_sym_def_type_statement_token3] = ACTIONS(8911), + [aux_sym_def_type_statement_token4] = ACTIONS(8911), + [aux_sym_def_type_statement_token5] = ACTIONS(8911), + [aux_sym_def_type_statement_token6] = ACTIONS(8911), + [aux_sym_def_type_statement_token7] = ACTIONS(8911), + [aux_sym_def_type_statement_token8] = ACTIONS(8911), + [aux_sym_def_type_statement_token9] = ACTIONS(8911), + [aux_sym_def_type_statement_token10] = ACTIONS(8911), + [aux_sym_def_type_statement_token11] = ACTIONS(8911), + [aux_sym_def_type_statement_token12] = ACTIONS(8911), + [aux_sym_def_type_statement_token13] = ACTIONS(8911), + [aux_sym_def_type_statement_token14] = ACTIONS(8911), + [aux_sym_call_statement_token1] = ACTIONS(8911), + [sym__ambiguous_call_statement] = ACTIONS(8911), + [aux_sym_addressof_expression_token1] = ACTIONS(8911), + [aux_sym_type_of_expression_token1] = ACTIONS(8911), + [aux_sym_unary_expression_token1] = ACTIONS(8911), + [sym_string_literal] = ACTIONS(8913), + [sym_number_literal] = ACTIONS(8913), + [aux_sym_boolean_literal_token1] = ACTIONS(8911), + [aux_sym_boolean_literal_token2] = ACTIONS(8911), + [sym_nothing_literal] = ACTIONS(8911), + [sym_null_literal] = ACTIONS(8911), + [sym_empty_literal] = ACTIONS(8911), + [sym_date_literal] = ACTIONS(8913), + [anon_sym_POUND] = ACTIONS(8911), + }, + [STATE(6595)] = { + [sym_identifier] = ACTIONS(8935), + [sym_newline] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(8937), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8935), + [aux_sym_frm_property_statement_token1] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_BANG] = ACTIONS(8937), + [aux_sym__attribute_identifier_token1] = ACTIONS(8935), + [aux_sym_option_statement_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8935), + [aux_sym_preprocessor_const_token1] = ACTIONS(8935), + [sym_static_modifier] = ACTIONS(8935), + [sym__dim_keyword] = ACTIONS(8935), + [sym__redim_keyword] = ACTIONS(8935), + [aux_sym_get_accessor_token1] = ACTIONS(8935), + [aux_sym_set_accessor_token1] = ACTIONS(8935), + [aux_sym_const_declaration_token1] = ACTIONS(8935), + [anon_sym_LPAREN] = ACTIONS(8937), + [aux_sym_as_type_clause_token2] = ACTIONS(8935), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8935), + [aux_sym_visibility_token1] = ACTIONS(8935), + [aux_sym_visibility_token2] = ACTIONS(8935), + [aux_sym_elseif_fragment_token1] = ACTIONS(8935), + [aux_sym_else_fragment_token1] = ACTIONS(8935), + [aux_sym_select_statement_token1] = ACTIONS(8935), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8935), + [aux_sym__for_header_token1] = ACTIONS(8935), + [aux_sym_do_statement_token1] = ACTIONS(8935), + [aux_sym_do_condition_token1] = ACTIONS(8935), + [aux_sym_with_statement_token1] = ACTIONS(8935), + [aux_sym_exit_statement_token1] = ACTIONS(8935), + [sym_end_statement] = ACTIONS(8937), + [aux_sym_on_goto_statement_token1] = ACTIONS(8935), + [aux_sym_on_goto_statement_token2] = ACTIONS(8935), + [aux_sym_on_error_statement_token2] = ACTIONS(8935), + [sym__ambiguous_redim_statement] = ACTIONS(8937), + [aux_sym_erase_statement_token1] = ACTIONS(8935), + [aux_sym_open_statement_token1] = ACTIONS(8935), + [aux_sym_file_mode_token2] = ACTIONS(8935), + [aux_sym_file_access_token2] = ACTIONS(8935), + [aux_sym_file_lock_token2] = ACTIONS(8935), + [aux_sym_print_statement_token1] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [aux_sym_close_statement_token1] = ACTIONS(8935), + [aux_sym_put_statement_token1] = ACTIONS(8935), + [aux_sym_unlock_statement_token1] = ACTIONS(8935), + [aux_sym_seek_statement_token1] = ACTIONS(8935), + [sym_reset_statement] = ACTIONS(8935), + [aux_sym_raise_event_statement_token1] = ACTIONS(8935), + [sym_stop_statement] = ACTIONS(8935), + [sym_beep_statement] = ACTIONS(8935), + [aux_sym_unload_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token2] = ACTIONS(8935), + [aux_sym_def_type_statement_token3] = ACTIONS(8935), + [aux_sym_def_type_statement_token4] = ACTIONS(8935), + [aux_sym_def_type_statement_token5] = ACTIONS(8935), + [aux_sym_def_type_statement_token6] = ACTIONS(8935), + [aux_sym_def_type_statement_token7] = ACTIONS(8935), + [aux_sym_def_type_statement_token8] = ACTIONS(8935), + [aux_sym_def_type_statement_token9] = ACTIONS(8935), + [aux_sym_def_type_statement_token10] = ACTIONS(8935), + [aux_sym_def_type_statement_token11] = ACTIONS(8935), + [aux_sym_def_type_statement_token12] = ACTIONS(8935), + [aux_sym_def_type_statement_token13] = ACTIONS(8935), + [aux_sym_def_type_statement_token14] = ACTIONS(8935), + [aux_sym_call_statement_token1] = ACTIONS(8935), + [sym__ambiguous_call_statement] = ACTIONS(8935), + [aux_sym_addressof_expression_token1] = ACTIONS(8935), + [aux_sym_type_of_expression_token1] = ACTIONS(8935), + [aux_sym_unary_expression_token1] = ACTIONS(8935), + [sym_string_literal] = ACTIONS(8937), + [sym_number_literal] = ACTIONS(8937), + [aux_sym_boolean_literal_token1] = ACTIONS(8935), + [aux_sym_boolean_literal_token2] = ACTIONS(8935), + [sym_nothing_literal] = ACTIONS(8935), + [sym_null_literal] = ACTIONS(8935), + [sym_empty_literal] = ACTIONS(8935), + [sym_date_literal] = ACTIONS(8937), + [anon_sym_POUND] = ACTIONS(8935), + }, + [STATE(6596)] = { + [sym_identifier] = ACTIONS(9496), + [sym_newline] = ACTIONS(9498), + [anon_sym_COLON] = ACTIONS(9498), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9496), + [aux_sym_frm_property_statement_token1] = ACTIONS(9496), + [anon_sym_DOT] = ACTIONS(9496), + [anon_sym_BANG] = ACTIONS(9498), + [aux_sym__attribute_identifier_token1] = ACTIONS(9496), + [aux_sym_option_statement_token3] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9496), + [aux_sym_preprocessor_const_token1] = ACTIONS(9496), + [sym_static_modifier] = ACTIONS(9496), + [sym__dim_keyword] = ACTIONS(9496), + [sym__redim_keyword] = ACTIONS(9496), + [aux_sym_get_accessor_token1] = ACTIONS(9496), + [aux_sym_set_accessor_token1] = ACTIONS(9496), + [aux_sym_const_declaration_token1] = ACTIONS(9496), + [anon_sym_LPAREN] = ACTIONS(9498), + [aux_sym_as_type_clause_token2] = ACTIONS(9496), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9496), + [aux_sym_visibility_token1] = ACTIONS(9496), + [aux_sym_visibility_token2] = ACTIONS(9496), + [aux_sym_elseif_fragment_token1] = ACTIONS(9496), + [aux_sym_else_fragment_token1] = ACTIONS(9496), + [aux_sym_select_statement_token1] = ACTIONS(9496), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9496), + [aux_sym__for_header_token1] = ACTIONS(9496), + [aux_sym_do_statement_token1] = ACTIONS(9496), + [aux_sym_do_condition_token1] = ACTIONS(9496), + [aux_sym_with_statement_token1] = ACTIONS(9496), + [aux_sym_exit_statement_token1] = ACTIONS(9496), + [sym_end_statement] = ACTIONS(9498), + [aux_sym_on_goto_statement_token1] = ACTIONS(9496), + [aux_sym_on_goto_statement_token2] = ACTIONS(9496), + [aux_sym_on_error_statement_token2] = ACTIONS(9496), + [sym__ambiguous_redim_statement] = ACTIONS(9498), + [aux_sym_erase_statement_token1] = ACTIONS(9496), + [aux_sym_open_statement_token1] = ACTIONS(9496), + [aux_sym_file_mode_token2] = ACTIONS(9496), + [aux_sym_file_access_token2] = ACTIONS(9496), + [aux_sym_file_lock_token2] = ACTIONS(9496), + [aux_sym_print_statement_token1] = ACTIONS(9496), + [anon_sym_PLUS] = ACTIONS(9498), + [anon_sym_DASH] = ACTIONS(9496), + [anon_sym_QMARK] = ACTIONS(9498), + [aux_sym_close_statement_token1] = ACTIONS(9496), + [aux_sym_put_statement_token1] = ACTIONS(9496), + [aux_sym_unlock_statement_token1] = ACTIONS(9496), + [aux_sym_seek_statement_token1] = ACTIONS(9496), + [sym_reset_statement] = ACTIONS(9496), + [aux_sym_raise_event_statement_token1] = ACTIONS(9496), + [sym_stop_statement] = ACTIONS(9496), + [sym_beep_statement] = ACTIONS(9496), + [aux_sym_unload_statement_token1] = ACTIONS(9496), + [aux_sym_def_type_statement_token1] = ACTIONS(9496), + [aux_sym_def_type_statement_token2] = ACTIONS(9496), + [aux_sym_def_type_statement_token3] = ACTIONS(9496), + [aux_sym_def_type_statement_token4] = ACTIONS(9496), + [aux_sym_def_type_statement_token5] = ACTIONS(9496), + [aux_sym_def_type_statement_token6] = ACTIONS(9496), + [aux_sym_def_type_statement_token7] = ACTIONS(9496), + [aux_sym_def_type_statement_token8] = ACTIONS(9496), + [aux_sym_def_type_statement_token9] = ACTIONS(9496), + [aux_sym_def_type_statement_token10] = ACTIONS(9496), + [aux_sym_def_type_statement_token11] = ACTIONS(9496), + [aux_sym_def_type_statement_token12] = ACTIONS(9496), + [aux_sym_def_type_statement_token13] = ACTIONS(9496), + [aux_sym_def_type_statement_token14] = ACTIONS(9496), + [aux_sym_call_statement_token1] = ACTIONS(9496), + [sym__ambiguous_call_statement] = ACTIONS(9496), + [aux_sym_addressof_expression_token1] = ACTIONS(9496), + [aux_sym_type_of_expression_token1] = ACTIONS(9496), + [aux_sym_unary_expression_token1] = ACTIONS(9496), + [sym_string_literal] = ACTIONS(9498), + [sym_number_literal] = ACTIONS(9498), + [aux_sym_boolean_literal_token1] = ACTIONS(9496), + [aux_sym_boolean_literal_token2] = ACTIONS(9496), + [sym_nothing_literal] = ACTIONS(9496), + [sym_null_literal] = ACTIONS(9496), + [sym_empty_literal] = ACTIONS(9496), + [sym_date_literal] = ACTIONS(9498), + [anon_sym_POUND] = ACTIONS(9496), + }, + [STATE(6597)] = { + [sym_identifier] = ACTIONS(9500), + [sym_newline] = ACTIONS(9502), + [anon_sym_COLON] = ACTIONS(9502), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9500), + [aux_sym_frm_property_statement_token1] = ACTIONS(9500), + [anon_sym_DOT] = ACTIONS(9500), + [anon_sym_BANG] = ACTIONS(9502), + [aux_sym__attribute_identifier_token1] = ACTIONS(9500), + [aux_sym_option_statement_token3] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9500), + [aux_sym_preprocessor_const_token1] = ACTIONS(9500), + [sym_static_modifier] = ACTIONS(9500), + [sym__dim_keyword] = ACTIONS(9500), + [sym__redim_keyword] = ACTIONS(9500), + [aux_sym_get_accessor_token1] = ACTIONS(9500), + [aux_sym_set_accessor_token1] = ACTIONS(9500), + [aux_sym_const_declaration_token1] = ACTIONS(9500), + [anon_sym_LPAREN] = ACTIONS(9502), + [aux_sym_as_type_clause_token2] = ACTIONS(9500), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9500), + [aux_sym_visibility_token1] = ACTIONS(9500), + [aux_sym_visibility_token2] = ACTIONS(9500), + [aux_sym_elseif_fragment_token1] = ACTIONS(9500), + [aux_sym_else_fragment_token1] = ACTIONS(9500), + [aux_sym_select_statement_token1] = ACTIONS(9500), + [aux_sym__for_header_token1] = ACTIONS(9500), + [aux_sym_do_statement_token1] = ACTIONS(9500), + [aux_sym_do_condition_token1] = ACTIONS(9500), + [aux_sym_while_statement_token1] = ACTIONS(9500), + [aux_sym_with_statement_token1] = ACTIONS(9500), + [aux_sym_exit_statement_token1] = ACTIONS(9500), + [sym_end_statement] = ACTIONS(9502), + [aux_sym_on_goto_statement_token1] = ACTIONS(9500), + [aux_sym_on_goto_statement_token2] = ACTIONS(9500), + [aux_sym_on_error_statement_token2] = ACTIONS(9500), + [sym__ambiguous_redim_statement] = ACTIONS(9502), + [aux_sym_erase_statement_token1] = ACTIONS(9500), + [aux_sym_open_statement_token1] = ACTIONS(9500), + [aux_sym_file_mode_token2] = ACTIONS(9500), + [aux_sym_file_access_token2] = ACTIONS(9500), + [aux_sym_file_lock_token2] = ACTIONS(9500), + [aux_sym_print_statement_token1] = ACTIONS(9500), + [anon_sym_PLUS] = ACTIONS(9502), + [anon_sym_DASH] = ACTIONS(9500), + [anon_sym_QMARK] = ACTIONS(9502), + [aux_sym_close_statement_token1] = ACTIONS(9500), + [aux_sym_put_statement_token1] = ACTIONS(9500), + [aux_sym_unlock_statement_token1] = ACTIONS(9500), + [aux_sym_seek_statement_token1] = ACTIONS(9500), + [sym_reset_statement] = ACTIONS(9500), + [aux_sym_raise_event_statement_token1] = ACTIONS(9500), + [sym_stop_statement] = ACTIONS(9500), + [sym_beep_statement] = ACTIONS(9500), + [aux_sym_unload_statement_token1] = ACTIONS(9500), + [aux_sym_def_type_statement_token1] = ACTIONS(9500), + [aux_sym_def_type_statement_token2] = ACTIONS(9500), + [aux_sym_def_type_statement_token3] = ACTIONS(9500), + [aux_sym_def_type_statement_token4] = ACTIONS(9500), + [aux_sym_def_type_statement_token5] = ACTIONS(9500), + [aux_sym_def_type_statement_token6] = ACTIONS(9500), + [aux_sym_def_type_statement_token7] = ACTIONS(9500), + [aux_sym_def_type_statement_token8] = ACTIONS(9500), + [aux_sym_def_type_statement_token9] = ACTIONS(9500), + [aux_sym_def_type_statement_token10] = ACTIONS(9500), + [aux_sym_def_type_statement_token11] = ACTIONS(9500), + [aux_sym_def_type_statement_token12] = ACTIONS(9500), + [aux_sym_def_type_statement_token13] = ACTIONS(9500), + [aux_sym_def_type_statement_token14] = ACTIONS(9500), + [aux_sym_call_statement_token1] = ACTIONS(9500), + [sym__ambiguous_call_statement] = ACTIONS(9500), + [aux_sym_addressof_expression_token1] = ACTIONS(9500), + [aux_sym_type_of_expression_token1] = ACTIONS(9500), + [aux_sym_unary_expression_token1] = ACTIONS(9500), + [sym_string_literal] = ACTIONS(9502), + [sym_number_literal] = ACTIONS(9502), + [aux_sym_boolean_literal_token1] = ACTIONS(9500), + [aux_sym_boolean_literal_token2] = ACTIONS(9500), + [sym_nothing_literal] = ACTIONS(9500), + [sym_null_literal] = ACTIONS(9500), + [sym_empty_literal] = ACTIONS(9500), + [sym_date_literal] = ACTIONS(9502), + [anon_sym_POUND] = ACTIONS(9500), + }, + [STATE(6598)] = { + [sym_identifier] = ACTIONS(9506), + [sym_newline] = ACTIONS(9508), + [anon_sym_COLON] = ACTIONS(9508), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9506), + [aux_sym_frm_property_statement_token1] = ACTIONS(9506), + [anon_sym_DOT] = ACTIONS(9506), + [anon_sym_BANG] = ACTIONS(9508), + [aux_sym__attribute_identifier_token1] = ACTIONS(9506), + [aux_sym_option_statement_token3] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9506), + [aux_sym_preprocessor_const_token1] = ACTIONS(9506), + [sym_static_modifier] = ACTIONS(9506), + [sym__dim_keyword] = ACTIONS(9506), + [sym__redim_keyword] = ACTIONS(9506), + [aux_sym_get_accessor_token1] = ACTIONS(9506), + [aux_sym_set_accessor_token1] = ACTIONS(9506), + [aux_sym_const_declaration_token1] = ACTIONS(9506), + [anon_sym_LPAREN] = ACTIONS(9508), + [aux_sym_as_type_clause_token2] = ACTIONS(9506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9506), + [aux_sym_visibility_token1] = ACTIONS(9506), + [aux_sym_visibility_token2] = ACTIONS(9506), + [aux_sym_elseif_fragment_token1] = ACTIONS(9506), + [aux_sym_else_fragment_token1] = ACTIONS(9506), + [aux_sym_select_statement_token1] = ACTIONS(9506), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9506), + [aux_sym__for_header_token1] = ACTIONS(9506), + [aux_sym_do_statement_token1] = ACTIONS(9506), + [aux_sym_do_condition_token1] = ACTIONS(9506), + [aux_sym_with_statement_token1] = ACTIONS(9506), + [aux_sym_exit_statement_token1] = ACTIONS(9506), + [sym_end_statement] = ACTIONS(9508), + [aux_sym_on_goto_statement_token1] = ACTIONS(9506), + [aux_sym_on_goto_statement_token2] = ACTIONS(9506), + [aux_sym_on_error_statement_token2] = ACTIONS(9506), + [sym__ambiguous_redim_statement] = ACTIONS(9508), + [aux_sym_erase_statement_token1] = ACTIONS(9506), + [aux_sym_open_statement_token1] = ACTIONS(9506), + [aux_sym_file_mode_token2] = ACTIONS(9506), + [aux_sym_file_access_token2] = ACTIONS(9506), + [aux_sym_file_lock_token2] = ACTIONS(9506), + [aux_sym_print_statement_token1] = ACTIONS(9506), + [anon_sym_PLUS] = ACTIONS(9508), + [anon_sym_DASH] = ACTIONS(9506), + [anon_sym_QMARK] = ACTIONS(9508), + [aux_sym_close_statement_token1] = ACTIONS(9506), + [aux_sym_put_statement_token1] = ACTIONS(9506), + [aux_sym_unlock_statement_token1] = ACTIONS(9506), + [aux_sym_seek_statement_token1] = ACTIONS(9506), + [sym_reset_statement] = ACTIONS(9506), + [aux_sym_raise_event_statement_token1] = ACTIONS(9506), + [sym_stop_statement] = ACTIONS(9506), + [sym_beep_statement] = ACTIONS(9506), + [aux_sym_unload_statement_token1] = ACTIONS(9506), + [aux_sym_def_type_statement_token1] = ACTIONS(9506), + [aux_sym_def_type_statement_token2] = ACTIONS(9506), + [aux_sym_def_type_statement_token3] = ACTIONS(9506), + [aux_sym_def_type_statement_token4] = ACTIONS(9506), + [aux_sym_def_type_statement_token5] = ACTIONS(9506), + [aux_sym_def_type_statement_token6] = ACTIONS(9506), + [aux_sym_def_type_statement_token7] = ACTIONS(9506), + [aux_sym_def_type_statement_token8] = ACTIONS(9506), + [aux_sym_def_type_statement_token9] = ACTIONS(9506), + [aux_sym_def_type_statement_token10] = ACTIONS(9506), + [aux_sym_def_type_statement_token11] = ACTIONS(9506), + [aux_sym_def_type_statement_token12] = ACTIONS(9506), + [aux_sym_def_type_statement_token13] = ACTIONS(9506), + [aux_sym_def_type_statement_token14] = ACTIONS(9506), + [aux_sym_call_statement_token1] = ACTIONS(9506), + [sym__ambiguous_call_statement] = ACTIONS(9506), + [aux_sym_addressof_expression_token1] = ACTIONS(9506), + [aux_sym_type_of_expression_token1] = ACTIONS(9506), + [aux_sym_unary_expression_token1] = ACTIONS(9506), + [sym_string_literal] = ACTIONS(9508), + [sym_number_literal] = ACTIONS(9508), + [aux_sym_boolean_literal_token1] = ACTIONS(9506), + [aux_sym_boolean_literal_token2] = ACTIONS(9506), + [sym_nothing_literal] = ACTIONS(9506), + [sym_null_literal] = ACTIONS(9506), + [sym_empty_literal] = ACTIONS(9506), + [sym_date_literal] = ACTIONS(9508), + [anon_sym_POUND] = ACTIONS(9506), + }, + [STATE(6599)] = { + [sym_identifier] = ACTIONS(9510), + [sym_newline] = ACTIONS(9512), + [anon_sym_COLON] = ACTIONS(9512), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9510), + [aux_sym_frm_property_statement_token1] = ACTIONS(9510), + [anon_sym_DOT] = ACTIONS(9510), + [anon_sym_BANG] = ACTIONS(9512), + [aux_sym__attribute_identifier_token1] = ACTIONS(9510), + [aux_sym_option_statement_token3] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9510), + [aux_sym_preprocessor_const_token1] = ACTIONS(9510), + [sym_static_modifier] = ACTIONS(9510), + [sym__dim_keyword] = ACTIONS(9510), + [sym__redim_keyword] = ACTIONS(9510), + [aux_sym_get_accessor_token1] = ACTIONS(9510), + [aux_sym_set_accessor_token1] = ACTIONS(9510), + [aux_sym_const_declaration_token1] = ACTIONS(9510), + [anon_sym_LPAREN] = ACTIONS(9512), + [aux_sym_as_type_clause_token2] = ACTIONS(9510), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9510), + [aux_sym_visibility_token1] = ACTIONS(9510), + [aux_sym_visibility_token2] = ACTIONS(9510), + [aux_sym_elseif_fragment_token1] = ACTIONS(9510), + [aux_sym_else_fragment_token1] = ACTIONS(9510), + [aux_sym_select_statement_token1] = ACTIONS(9510), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9510), + [aux_sym__for_header_token1] = ACTIONS(9510), + [aux_sym_do_statement_token1] = ACTIONS(9510), + [aux_sym_do_condition_token1] = ACTIONS(9510), + [aux_sym_with_statement_token1] = ACTIONS(9510), + [aux_sym_exit_statement_token1] = ACTIONS(9510), + [sym_end_statement] = ACTIONS(9512), + [aux_sym_on_goto_statement_token1] = ACTIONS(9510), + [aux_sym_on_goto_statement_token2] = ACTIONS(9510), + [aux_sym_on_error_statement_token2] = ACTIONS(9510), + [sym__ambiguous_redim_statement] = ACTIONS(9512), + [aux_sym_erase_statement_token1] = ACTIONS(9510), + [aux_sym_open_statement_token1] = ACTIONS(9510), + [aux_sym_file_mode_token2] = ACTIONS(9510), + [aux_sym_file_access_token2] = ACTIONS(9510), + [aux_sym_file_lock_token2] = ACTIONS(9510), + [aux_sym_print_statement_token1] = ACTIONS(9510), + [anon_sym_PLUS] = ACTIONS(9512), + [anon_sym_DASH] = ACTIONS(9510), + [anon_sym_QMARK] = ACTIONS(9512), + [aux_sym_close_statement_token1] = ACTIONS(9510), + [aux_sym_put_statement_token1] = ACTIONS(9510), + [aux_sym_unlock_statement_token1] = ACTIONS(9510), + [aux_sym_seek_statement_token1] = ACTIONS(9510), + [sym_reset_statement] = ACTIONS(9510), + [aux_sym_raise_event_statement_token1] = ACTIONS(9510), + [sym_stop_statement] = ACTIONS(9510), + [sym_beep_statement] = ACTIONS(9510), + [aux_sym_unload_statement_token1] = ACTIONS(9510), + [aux_sym_def_type_statement_token1] = ACTIONS(9510), + [aux_sym_def_type_statement_token2] = ACTIONS(9510), + [aux_sym_def_type_statement_token3] = ACTIONS(9510), + [aux_sym_def_type_statement_token4] = ACTIONS(9510), + [aux_sym_def_type_statement_token5] = ACTIONS(9510), + [aux_sym_def_type_statement_token6] = ACTIONS(9510), + [aux_sym_def_type_statement_token7] = ACTIONS(9510), + [aux_sym_def_type_statement_token8] = ACTIONS(9510), + [aux_sym_def_type_statement_token9] = ACTIONS(9510), + [aux_sym_def_type_statement_token10] = ACTIONS(9510), + [aux_sym_def_type_statement_token11] = ACTIONS(9510), + [aux_sym_def_type_statement_token12] = ACTIONS(9510), + [aux_sym_def_type_statement_token13] = ACTIONS(9510), + [aux_sym_def_type_statement_token14] = ACTIONS(9510), + [aux_sym_call_statement_token1] = ACTIONS(9510), + [sym__ambiguous_call_statement] = ACTIONS(9510), + [aux_sym_addressof_expression_token1] = ACTIONS(9510), + [aux_sym_type_of_expression_token1] = ACTIONS(9510), + [aux_sym_unary_expression_token1] = ACTIONS(9510), + [sym_string_literal] = ACTIONS(9512), + [sym_number_literal] = ACTIONS(9512), + [aux_sym_boolean_literal_token1] = ACTIONS(9510), + [aux_sym_boolean_literal_token2] = ACTIONS(9510), + [sym_nothing_literal] = ACTIONS(9510), + [sym_null_literal] = ACTIONS(9510), + [sym_empty_literal] = ACTIONS(9510), + [sym_date_literal] = ACTIONS(9512), + [anon_sym_POUND] = ACTIONS(9510), + }, + [STATE(6600)] = { + [sym_identifier] = ACTIONS(9272), + [sym_newline] = ACTIONS(9274), + [anon_sym_COLON] = ACTIONS(9274), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9272), + [aux_sym_frm_property_statement_token1] = ACTIONS(9272), + [anon_sym_DOT] = ACTIONS(9272), + [anon_sym_BANG] = ACTIONS(9274), + [aux_sym__attribute_identifier_token1] = ACTIONS(9272), + [aux_sym_option_statement_token3] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9272), + [aux_sym_preprocessor_const_token1] = ACTIONS(9272), + [sym_static_modifier] = ACTIONS(9272), + [sym__dim_keyword] = ACTIONS(9272), + [sym__redim_keyword] = ACTIONS(9272), + [aux_sym_get_accessor_token1] = ACTIONS(9272), + [aux_sym_set_accessor_token1] = ACTIONS(9272), + [aux_sym_const_declaration_token1] = ACTIONS(9272), + [anon_sym_LPAREN] = ACTIONS(9274), + [aux_sym_as_type_clause_token2] = ACTIONS(9272), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9272), + [aux_sym_visibility_token1] = ACTIONS(9272), + [aux_sym_visibility_token2] = ACTIONS(9272), + [aux_sym_elseif_fragment_token1] = ACTIONS(9272), + [aux_sym_else_fragment_token1] = ACTIONS(9272), + [aux_sym_select_statement_token1] = ACTIONS(9272), + [aux_sym__for_header_token1] = ACTIONS(9272), + [aux_sym_do_statement_token1] = ACTIONS(9272), + [aux_sym_do_condition_token1] = ACTIONS(9272), + [aux_sym_with_statement_token1] = ACTIONS(9272), + [aux_sym_exit_statement_token1] = ACTIONS(9272), + [sym_end_statement] = ACTIONS(9274), + [aux_sym_on_goto_statement_token1] = ACTIONS(9272), + [aux_sym_on_goto_statement_token2] = ACTIONS(9272), + [aux_sym_on_error_statement_token2] = ACTIONS(9272), + [sym__ambiguous_redim_statement] = ACTIONS(9274), + [aux_sym_erase_statement_token1] = ACTIONS(9272), + [aux_sym_open_statement_token1] = ACTIONS(9272), + [aux_sym_file_mode_token2] = ACTIONS(9272), + [aux_sym_file_access_token2] = ACTIONS(9272), + [aux_sym_file_lock_token2] = ACTIONS(9272), + [aux_sym_print_statement_token1] = ACTIONS(9272), + [anon_sym_PLUS] = ACTIONS(9274), + [anon_sym_DASH] = ACTIONS(9272), + [anon_sym_QMARK] = ACTIONS(9274), + [aux_sym_close_statement_token1] = ACTIONS(9272), + [aux_sym_put_statement_token1] = ACTIONS(9272), + [aux_sym_unlock_statement_token1] = ACTIONS(9272), + [aux_sym_seek_statement_token1] = ACTIONS(9272), + [sym_reset_statement] = ACTIONS(9272), + [aux_sym_raise_event_statement_token1] = ACTIONS(9272), + [sym_stop_statement] = ACTIONS(9272), + [sym_beep_statement] = ACTIONS(9272), + [aux_sym_unload_statement_token1] = ACTIONS(9272), + [aux_sym_def_type_statement_token1] = ACTIONS(9272), + [aux_sym_def_type_statement_token2] = ACTIONS(9272), + [aux_sym_def_type_statement_token3] = ACTIONS(9272), + [aux_sym_def_type_statement_token4] = ACTIONS(9272), + [aux_sym_def_type_statement_token5] = ACTIONS(9272), + [aux_sym_def_type_statement_token6] = ACTIONS(9272), + [aux_sym_def_type_statement_token7] = ACTIONS(9272), + [aux_sym_def_type_statement_token8] = ACTIONS(9272), + [aux_sym_def_type_statement_token9] = ACTIONS(9272), + [aux_sym_def_type_statement_token10] = ACTIONS(9272), + [aux_sym_def_type_statement_token11] = ACTIONS(9272), + [aux_sym_def_type_statement_token12] = ACTIONS(9272), + [aux_sym_def_type_statement_token13] = ACTIONS(9272), + [aux_sym_def_type_statement_token14] = ACTIONS(9272), + [aux_sym_call_statement_token1] = ACTIONS(9272), + [sym__ambiguous_call_statement] = ACTIONS(9272), + [aux_sym_addressof_expression_token1] = ACTIONS(9272), + [aux_sym_type_of_expression_token1] = ACTIONS(9272), + [aux_sym_unary_expression_token1] = ACTIONS(9272), + [sym_string_literal] = ACTIONS(9274), + [sym_number_literal] = ACTIONS(9274), + [aux_sym_boolean_literal_token1] = ACTIONS(9272), + [aux_sym_boolean_literal_token2] = ACTIONS(9272), + [sym_nothing_literal] = ACTIONS(9272), + [sym_null_literal] = ACTIONS(9272), + [sym_empty_literal] = ACTIONS(9272), + [sym_date_literal] = ACTIONS(9274), + [anon_sym_POUND] = ACTIONS(9272), + }, + [STATE(6601)] = { + [sym_identifier] = ACTIONS(9514), + [sym_newline] = ACTIONS(9516), + [anon_sym_COLON] = ACTIONS(9516), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9514), + [aux_sym_frm_property_statement_token1] = ACTIONS(9514), + [anon_sym_DOT] = ACTIONS(9514), + [anon_sym_BANG] = ACTIONS(9516), + [aux_sym__attribute_identifier_token1] = ACTIONS(9514), + [aux_sym_option_statement_token3] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9514), + [aux_sym_preprocessor_const_token1] = ACTIONS(9514), + [sym_static_modifier] = ACTIONS(9514), + [sym__dim_keyword] = ACTIONS(9514), + [sym__redim_keyword] = ACTIONS(9514), + [aux_sym_get_accessor_token1] = ACTIONS(9514), + [aux_sym_set_accessor_token1] = ACTIONS(9514), + [aux_sym_const_declaration_token1] = ACTIONS(9514), + [anon_sym_LPAREN] = ACTIONS(9516), + [aux_sym_as_type_clause_token2] = ACTIONS(9514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9514), + [aux_sym_visibility_token1] = ACTIONS(9514), + [aux_sym_visibility_token2] = ACTIONS(9514), + [aux_sym_elseif_fragment_token1] = ACTIONS(9514), + [aux_sym_else_fragment_token1] = ACTIONS(9514), + [aux_sym_select_statement_token1] = ACTIONS(9514), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9514), + [aux_sym__for_header_token1] = ACTIONS(9514), + [aux_sym_do_statement_token1] = ACTIONS(9514), + [aux_sym_do_condition_token1] = ACTIONS(9514), + [aux_sym_with_statement_token1] = ACTIONS(9514), + [aux_sym_exit_statement_token1] = ACTIONS(9514), + [sym_end_statement] = ACTIONS(9516), + [aux_sym_on_goto_statement_token1] = ACTIONS(9514), + [aux_sym_on_goto_statement_token2] = ACTIONS(9514), + [aux_sym_on_error_statement_token2] = ACTIONS(9514), + [sym__ambiguous_redim_statement] = ACTIONS(9516), + [aux_sym_erase_statement_token1] = ACTIONS(9514), + [aux_sym_open_statement_token1] = ACTIONS(9514), + [aux_sym_file_mode_token2] = ACTIONS(9514), + [aux_sym_file_access_token2] = ACTIONS(9514), + [aux_sym_file_lock_token2] = ACTIONS(9514), + [aux_sym_print_statement_token1] = ACTIONS(9514), + [anon_sym_PLUS] = ACTIONS(9516), + [anon_sym_DASH] = ACTIONS(9514), + [anon_sym_QMARK] = ACTIONS(9516), + [aux_sym_close_statement_token1] = ACTIONS(9514), + [aux_sym_put_statement_token1] = ACTIONS(9514), + [aux_sym_unlock_statement_token1] = ACTIONS(9514), + [aux_sym_seek_statement_token1] = ACTIONS(9514), + [sym_reset_statement] = ACTIONS(9514), + [aux_sym_raise_event_statement_token1] = ACTIONS(9514), + [sym_stop_statement] = ACTIONS(9514), + [sym_beep_statement] = ACTIONS(9514), + [aux_sym_unload_statement_token1] = ACTIONS(9514), + [aux_sym_def_type_statement_token1] = ACTIONS(9514), + [aux_sym_def_type_statement_token2] = ACTIONS(9514), + [aux_sym_def_type_statement_token3] = ACTIONS(9514), + [aux_sym_def_type_statement_token4] = ACTIONS(9514), + [aux_sym_def_type_statement_token5] = ACTIONS(9514), + [aux_sym_def_type_statement_token6] = ACTIONS(9514), + [aux_sym_def_type_statement_token7] = ACTIONS(9514), + [aux_sym_def_type_statement_token8] = ACTIONS(9514), + [aux_sym_def_type_statement_token9] = ACTIONS(9514), + [aux_sym_def_type_statement_token10] = ACTIONS(9514), + [aux_sym_def_type_statement_token11] = ACTIONS(9514), + [aux_sym_def_type_statement_token12] = ACTIONS(9514), + [aux_sym_def_type_statement_token13] = ACTIONS(9514), + [aux_sym_def_type_statement_token14] = ACTIONS(9514), + [aux_sym_call_statement_token1] = ACTIONS(9514), + [sym__ambiguous_call_statement] = ACTIONS(9514), + [aux_sym_addressof_expression_token1] = ACTIONS(9514), + [aux_sym_type_of_expression_token1] = ACTIONS(9514), + [aux_sym_unary_expression_token1] = ACTIONS(9514), + [sym_string_literal] = ACTIONS(9516), + [sym_number_literal] = ACTIONS(9516), + [aux_sym_boolean_literal_token1] = ACTIONS(9514), + [aux_sym_boolean_literal_token2] = ACTIONS(9514), + [sym_nothing_literal] = ACTIONS(9514), + [sym_null_literal] = ACTIONS(9514), + [sym_empty_literal] = ACTIONS(9514), + [sym_date_literal] = ACTIONS(9516), + [anon_sym_POUND] = ACTIONS(9514), + }, + [STATE(6602)] = { + [sym_identifier] = ACTIONS(9518), + [sym_newline] = ACTIONS(9520), + [anon_sym_COLON] = ACTIONS(9520), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9518), + [aux_sym_frm_property_statement_token1] = ACTIONS(9518), + [anon_sym_DOT] = ACTIONS(9518), + [anon_sym_BANG] = ACTIONS(9520), + [aux_sym__attribute_identifier_token1] = ACTIONS(9518), + [aux_sym_option_statement_token3] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9518), + [aux_sym_preprocessor_const_token1] = ACTIONS(9518), + [sym_static_modifier] = ACTIONS(9518), + [sym__dim_keyword] = ACTIONS(9518), + [sym__redim_keyword] = ACTIONS(9518), + [aux_sym_get_accessor_token1] = ACTIONS(9518), + [aux_sym_set_accessor_token1] = ACTIONS(9518), + [aux_sym_const_declaration_token1] = ACTIONS(9518), + [anon_sym_LPAREN] = ACTIONS(9520), + [aux_sym_as_type_clause_token2] = ACTIONS(9518), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9518), + [aux_sym_visibility_token1] = ACTIONS(9518), + [aux_sym_visibility_token2] = ACTIONS(9518), + [aux_sym_elseif_fragment_token1] = ACTIONS(9518), + [aux_sym_else_fragment_token1] = ACTIONS(9518), + [aux_sym_select_statement_token1] = ACTIONS(9518), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9518), + [aux_sym__for_header_token1] = ACTIONS(9518), + [aux_sym_do_statement_token1] = ACTIONS(9518), + [aux_sym_do_condition_token1] = ACTIONS(9518), + [aux_sym_with_statement_token1] = ACTIONS(9518), + [aux_sym_exit_statement_token1] = ACTIONS(9518), + [sym_end_statement] = ACTIONS(9520), + [aux_sym_on_goto_statement_token1] = ACTIONS(9518), + [aux_sym_on_goto_statement_token2] = ACTIONS(9518), + [aux_sym_on_error_statement_token2] = ACTIONS(9518), + [sym__ambiguous_redim_statement] = ACTIONS(9520), + [aux_sym_erase_statement_token1] = ACTIONS(9518), + [aux_sym_open_statement_token1] = ACTIONS(9518), + [aux_sym_file_mode_token2] = ACTIONS(9518), + [aux_sym_file_access_token2] = ACTIONS(9518), + [aux_sym_file_lock_token2] = ACTIONS(9518), + [aux_sym_print_statement_token1] = ACTIONS(9518), + [anon_sym_PLUS] = ACTIONS(9520), + [anon_sym_DASH] = ACTIONS(9518), + [anon_sym_QMARK] = ACTIONS(9520), + [aux_sym_close_statement_token1] = ACTIONS(9518), + [aux_sym_put_statement_token1] = ACTIONS(9518), + [aux_sym_unlock_statement_token1] = ACTIONS(9518), + [aux_sym_seek_statement_token1] = ACTIONS(9518), + [sym_reset_statement] = ACTIONS(9518), + [aux_sym_raise_event_statement_token1] = ACTIONS(9518), + [sym_stop_statement] = ACTIONS(9518), + [sym_beep_statement] = ACTIONS(9518), + [aux_sym_unload_statement_token1] = ACTIONS(9518), + [aux_sym_def_type_statement_token1] = ACTIONS(9518), + [aux_sym_def_type_statement_token2] = ACTIONS(9518), + [aux_sym_def_type_statement_token3] = ACTIONS(9518), + [aux_sym_def_type_statement_token4] = ACTIONS(9518), + [aux_sym_def_type_statement_token5] = ACTIONS(9518), + [aux_sym_def_type_statement_token6] = ACTIONS(9518), + [aux_sym_def_type_statement_token7] = ACTIONS(9518), + [aux_sym_def_type_statement_token8] = ACTIONS(9518), + [aux_sym_def_type_statement_token9] = ACTIONS(9518), + [aux_sym_def_type_statement_token10] = ACTIONS(9518), + [aux_sym_def_type_statement_token11] = ACTIONS(9518), + [aux_sym_def_type_statement_token12] = ACTIONS(9518), + [aux_sym_def_type_statement_token13] = ACTIONS(9518), + [aux_sym_def_type_statement_token14] = ACTIONS(9518), + [aux_sym_call_statement_token1] = ACTIONS(9518), + [sym__ambiguous_call_statement] = ACTIONS(9518), + [aux_sym_addressof_expression_token1] = ACTIONS(9518), + [aux_sym_type_of_expression_token1] = ACTIONS(9518), + [aux_sym_unary_expression_token1] = ACTIONS(9518), + [sym_string_literal] = ACTIONS(9520), + [sym_number_literal] = ACTIONS(9520), + [aux_sym_boolean_literal_token1] = ACTIONS(9518), + [aux_sym_boolean_literal_token2] = ACTIONS(9518), + [sym_nothing_literal] = ACTIONS(9518), + [sym_null_literal] = ACTIONS(9518), + [sym_empty_literal] = ACTIONS(9518), + [sym_date_literal] = ACTIONS(9520), + [anon_sym_POUND] = ACTIONS(9518), + }, + [STATE(6603)] = { + [sym_identifier] = ACTIONS(9522), + [sym_newline] = ACTIONS(9524), + [anon_sym_COLON] = ACTIONS(9524), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9522), + [aux_sym_frm_property_statement_token1] = ACTIONS(9522), + [anon_sym_DOT] = ACTIONS(9522), + [anon_sym_BANG] = ACTIONS(9524), + [aux_sym__attribute_identifier_token1] = ACTIONS(9522), + [aux_sym_option_statement_token3] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9522), + [aux_sym_preprocessor_const_token1] = ACTIONS(9522), + [sym_static_modifier] = ACTIONS(9522), + [sym__dim_keyword] = ACTIONS(9522), + [sym__redim_keyword] = ACTIONS(9522), + [aux_sym_get_accessor_token1] = ACTIONS(9522), + [aux_sym_set_accessor_token1] = ACTIONS(9522), + [aux_sym_const_declaration_token1] = ACTIONS(9522), + [anon_sym_LPAREN] = ACTIONS(9524), + [aux_sym_as_type_clause_token2] = ACTIONS(9522), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9522), + [aux_sym_visibility_token1] = ACTIONS(9522), + [aux_sym_visibility_token2] = ACTIONS(9522), + [aux_sym_elseif_fragment_token1] = ACTIONS(9522), + [aux_sym_else_fragment_token1] = ACTIONS(9522), + [aux_sym_select_statement_token1] = ACTIONS(9522), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9522), + [aux_sym__for_header_token1] = ACTIONS(9522), + [aux_sym_do_statement_token1] = ACTIONS(9522), + [aux_sym_do_condition_token1] = ACTIONS(9522), + [aux_sym_with_statement_token1] = ACTIONS(9522), + [aux_sym_exit_statement_token1] = ACTIONS(9522), + [sym_end_statement] = ACTIONS(9524), + [aux_sym_on_goto_statement_token1] = ACTIONS(9522), + [aux_sym_on_goto_statement_token2] = ACTIONS(9522), + [aux_sym_on_error_statement_token2] = ACTIONS(9522), + [sym__ambiguous_redim_statement] = ACTIONS(9524), + [aux_sym_erase_statement_token1] = ACTIONS(9522), + [aux_sym_open_statement_token1] = ACTIONS(9522), + [aux_sym_file_mode_token2] = ACTIONS(9522), + [aux_sym_file_access_token2] = ACTIONS(9522), + [aux_sym_file_lock_token2] = ACTIONS(9522), + [aux_sym_print_statement_token1] = ACTIONS(9522), + [anon_sym_PLUS] = ACTIONS(9524), + [anon_sym_DASH] = ACTIONS(9522), + [anon_sym_QMARK] = ACTIONS(9524), + [aux_sym_close_statement_token1] = ACTIONS(9522), + [aux_sym_put_statement_token1] = ACTIONS(9522), + [aux_sym_unlock_statement_token1] = ACTIONS(9522), + [aux_sym_seek_statement_token1] = ACTIONS(9522), + [sym_reset_statement] = ACTIONS(9522), + [aux_sym_raise_event_statement_token1] = ACTIONS(9522), + [sym_stop_statement] = ACTIONS(9522), + [sym_beep_statement] = ACTIONS(9522), + [aux_sym_unload_statement_token1] = ACTIONS(9522), + [aux_sym_def_type_statement_token1] = ACTIONS(9522), + [aux_sym_def_type_statement_token2] = ACTIONS(9522), + [aux_sym_def_type_statement_token3] = ACTIONS(9522), + [aux_sym_def_type_statement_token4] = ACTIONS(9522), + [aux_sym_def_type_statement_token5] = ACTIONS(9522), + [aux_sym_def_type_statement_token6] = ACTIONS(9522), + [aux_sym_def_type_statement_token7] = ACTIONS(9522), + [aux_sym_def_type_statement_token8] = ACTIONS(9522), + [aux_sym_def_type_statement_token9] = ACTIONS(9522), + [aux_sym_def_type_statement_token10] = ACTIONS(9522), + [aux_sym_def_type_statement_token11] = ACTIONS(9522), + [aux_sym_def_type_statement_token12] = ACTIONS(9522), + [aux_sym_def_type_statement_token13] = ACTIONS(9522), + [aux_sym_def_type_statement_token14] = ACTIONS(9522), + [aux_sym_call_statement_token1] = ACTIONS(9522), + [sym__ambiguous_call_statement] = ACTIONS(9522), + [aux_sym_addressof_expression_token1] = ACTIONS(9522), + [aux_sym_type_of_expression_token1] = ACTIONS(9522), + [aux_sym_unary_expression_token1] = ACTIONS(9522), + [sym_string_literal] = ACTIONS(9524), + [sym_number_literal] = ACTIONS(9524), + [aux_sym_boolean_literal_token1] = ACTIONS(9522), + [aux_sym_boolean_literal_token2] = ACTIONS(9522), + [sym_nothing_literal] = ACTIONS(9522), + [sym_null_literal] = ACTIONS(9522), + [sym_empty_literal] = ACTIONS(9522), + [sym_date_literal] = ACTIONS(9524), + [anon_sym_POUND] = ACTIONS(9522), + }, + [STATE(6604)] = { + [sym_identifier] = ACTIONS(9526), + [sym_newline] = ACTIONS(9528), + [anon_sym_COLON] = ACTIONS(9528), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9526), + [aux_sym_frm_property_statement_token1] = ACTIONS(9526), + [anon_sym_DOT] = ACTIONS(9526), + [anon_sym_BANG] = ACTIONS(9528), + [aux_sym__attribute_identifier_token1] = ACTIONS(9526), + [aux_sym_option_statement_token3] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9526), + [aux_sym_preprocessor_const_token1] = ACTIONS(9526), + [sym_static_modifier] = ACTIONS(9526), + [sym__dim_keyword] = ACTIONS(9526), + [sym__redim_keyword] = ACTIONS(9526), + [aux_sym_get_accessor_token1] = ACTIONS(9526), + [aux_sym_set_accessor_token1] = ACTIONS(9526), + [aux_sym_const_declaration_token1] = ACTIONS(9526), + [anon_sym_LPAREN] = ACTIONS(9528), + [aux_sym_as_type_clause_token2] = ACTIONS(9526), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9526), + [aux_sym_visibility_token1] = ACTIONS(9526), + [aux_sym_visibility_token2] = ACTIONS(9526), + [aux_sym_elseif_fragment_token1] = ACTIONS(9526), + [aux_sym_else_fragment_token1] = ACTIONS(9526), + [aux_sym_select_statement_token1] = ACTIONS(9526), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9526), + [aux_sym__for_header_token1] = ACTIONS(9526), + [aux_sym_do_statement_token1] = ACTIONS(9526), + [aux_sym_do_condition_token1] = ACTIONS(9526), + [aux_sym_with_statement_token1] = ACTIONS(9526), + [aux_sym_exit_statement_token1] = ACTIONS(9526), + [sym_end_statement] = ACTIONS(9528), + [aux_sym_on_goto_statement_token1] = ACTIONS(9526), + [aux_sym_on_goto_statement_token2] = ACTIONS(9526), + [aux_sym_on_error_statement_token2] = ACTIONS(9526), + [sym__ambiguous_redim_statement] = ACTIONS(9528), + [aux_sym_erase_statement_token1] = ACTIONS(9526), + [aux_sym_open_statement_token1] = ACTIONS(9526), + [aux_sym_file_mode_token2] = ACTIONS(9526), + [aux_sym_file_access_token2] = ACTIONS(9526), + [aux_sym_file_lock_token2] = ACTIONS(9526), + [aux_sym_print_statement_token1] = ACTIONS(9526), + [anon_sym_PLUS] = ACTIONS(9528), + [anon_sym_DASH] = ACTIONS(9526), + [anon_sym_QMARK] = ACTIONS(9528), + [aux_sym_close_statement_token1] = ACTIONS(9526), + [aux_sym_put_statement_token1] = ACTIONS(9526), + [aux_sym_unlock_statement_token1] = ACTIONS(9526), + [aux_sym_seek_statement_token1] = ACTIONS(9526), + [sym_reset_statement] = ACTIONS(9526), + [aux_sym_raise_event_statement_token1] = ACTIONS(9526), + [sym_stop_statement] = ACTIONS(9526), + [sym_beep_statement] = ACTIONS(9526), + [aux_sym_unload_statement_token1] = ACTIONS(9526), + [aux_sym_def_type_statement_token1] = ACTIONS(9526), + [aux_sym_def_type_statement_token2] = ACTIONS(9526), + [aux_sym_def_type_statement_token3] = ACTIONS(9526), + [aux_sym_def_type_statement_token4] = ACTIONS(9526), + [aux_sym_def_type_statement_token5] = ACTIONS(9526), + [aux_sym_def_type_statement_token6] = ACTIONS(9526), + [aux_sym_def_type_statement_token7] = ACTIONS(9526), + [aux_sym_def_type_statement_token8] = ACTIONS(9526), + [aux_sym_def_type_statement_token9] = ACTIONS(9526), + [aux_sym_def_type_statement_token10] = ACTIONS(9526), + [aux_sym_def_type_statement_token11] = ACTIONS(9526), + [aux_sym_def_type_statement_token12] = ACTIONS(9526), + [aux_sym_def_type_statement_token13] = ACTIONS(9526), + [aux_sym_def_type_statement_token14] = ACTIONS(9526), + [aux_sym_call_statement_token1] = ACTIONS(9526), + [sym__ambiguous_call_statement] = ACTIONS(9526), + [aux_sym_addressof_expression_token1] = ACTIONS(9526), + [aux_sym_type_of_expression_token1] = ACTIONS(9526), + [aux_sym_unary_expression_token1] = ACTIONS(9526), + [sym_string_literal] = ACTIONS(9528), + [sym_number_literal] = ACTIONS(9528), + [aux_sym_boolean_literal_token1] = ACTIONS(9526), + [aux_sym_boolean_literal_token2] = ACTIONS(9526), + [sym_nothing_literal] = ACTIONS(9526), + [sym_null_literal] = ACTIONS(9526), + [sym_empty_literal] = ACTIONS(9526), + [sym_date_literal] = ACTIONS(9528), + [anon_sym_POUND] = ACTIONS(9526), + }, + [STATE(6605)] = { + [sym_identifier] = ACTIONS(9818), + [sym_newline] = ACTIONS(9820), + [anon_sym_COLON] = ACTIONS(9820), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9818), + [aux_sym_frm_property_statement_token1] = ACTIONS(9818), + [anon_sym_DOT] = ACTIONS(9818), + [anon_sym_BANG] = ACTIONS(9820), + [aux_sym__attribute_identifier_token1] = ACTIONS(9818), + [aux_sym_option_statement_token3] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9818), + [aux_sym_preprocessor_const_token1] = ACTIONS(9818), + [sym_static_modifier] = ACTIONS(9818), + [sym__dim_keyword] = ACTIONS(9818), + [sym__redim_keyword] = ACTIONS(9818), + [aux_sym_get_accessor_token1] = ACTIONS(9818), + [aux_sym_set_accessor_token1] = ACTIONS(9818), + [aux_sym_const_declaration_token1] = ACTIONS(9818), + [anon_sym_LPAREN] = ACTIONS(9820), + [aux_sym_as_type_clause_token2] = ACTIONS(9818), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9818), + [aux_sym_visibility_token1] = ACTIONS(9818), + [aux_sym_visibility_token2] = ACTIONS(9818), + [aux_sym_elseif_fragment_token1] = ACTIONS(9818), + [aux_sym_else_fragment_token1] = ACTIONS(9818), + [aux_sym_select_statement_token1] = ACTIONS(9818), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9818), + [aux_sym__for_header_token1] = ACTIONS(9818), + [aux_sym_do_statement_token1] = ACTIONS(9818), + [aux_sym_do_condition_token1] = ACTIONS(9818), + [aux_sym_with_statement_token1] = ACTIONS(9818), + [aux_sym_exit_statement_token1] = ACTIONS(9818), + [sym_end_statement] = ACTIONS(9820), + [aux_sym_on_goto_statement_token1] = ACTIONS(9818), + [aux_sym_on_goto_statement_token2] = ACTIONS(9818), + [aux_sym_on_error_statement_token2] = ACTIONS(9818), + [sym__ambiguous_redim_statement] = ACTIONS(9820), + [aux_sym_erase_statement_token1] = ACTIONS(9818), + [aux_sym_open_statement_token1] = ACTIONS(9818), + [aux_sym_file_mode_token2] = ACTIONS(9818), + [aux_sym_file_access_token2] = ACTIONS(9818), + [aux_sym_file_lock_token2] = ACTIONS(9818), + [aux_sym_print_statement_token1] = ACTIONS(9818), + [anon_sym_PLUS] = ACTIONS(9820), + [anon_sym_DASH] = ACTIONS(9818), + [anon_sym_QMARK] = ACTIONS(9820), + [aux_sym_close_statement_token1] = ACTIONS(9818), + [aux_sym_put_statement_token1] = ACTIONS(9818), + [aux_sym_unlock_statement_token1] = ACTIONS(9818), + [aux_sym_seek_statement_token1] = ACTIONS(9818), + [sym_reset_statement] = ACTIONS(9818), + [aux_sym_raise_event_statement_token1] = ACTIONS(9818), + [sym_stop_statement] = ACTIONS(9818), + [sym_beep_statement] = ACTIONS(9818), + [aux_sym_unload_statement_token1] = ACTIONS(9818), + [aux_sym_def_type_statement_token1] = ACTIONS(9818), + [aux_sym_def_type_statement_token2] = ACTIONS(9818), + [aux_sym_def_type_statement_token3] = ACTIONS(9818), + [aux_sym_def_type_statement_token4] = ACTIONS(9818), + [aux_sym_def_type_statement_token5] = ACTIONS(9818), + [aux_sym_def_type_statement_token6] = ACTIONS(9818), + [aux_sym_def_type_statement_token7] = ACTIONS(9818), + [aux_sym_def_type_statement_token8] = ACTIONS(9818), + [aux_sym_def_type_statement_token9] = ACTIONS(9818), + [aux_sym_def_type_statement_token10] = ACTIONS(9818), + [aux_sym_def_type_statement_token11] = ACTIONS(9818), + [aux_sym_def_type_statement_token12] = ACTIONS(9818), + [aux_sym_def_type_statement_token13] = ACTIONS(9818), + [aux_sym_def_type_statement_token14] = ACTIONS(9818), + [aux_sym_call_statement_token1] = ACTIONS(9818), + [sym__ambiguous_call_statement] = ACTIONS(9818), + [aux_sym_addressof_expression_token1] = ACTIONS(9818), + [aux_sym_type_of_expression_token1] = ACTIONS(9818), + [aux_sym_unary_expression_token1] = ACTIONS(9818), + [sym_string_literal] = ACTIONS(9820), + [sym_number_literal] = ACTIONS(9820), + [aux_sym_boolean_literal_token1] = ACTIONS(9818), + [aux_sym_boolean_literal_token2] = ACTIONS(9818), + [sym_nothing_literal] = ACTIONS(9818), + [sym_null_literal] = ACTIONS(9818), + [sym_empty_literal] = ACTIONS(9818), + [sym_date_literal] = ACTIONS(9820), + [anon_sym_POUND] = ACTIONS(9818), + }, + [STATE(6606)] = { + [sym_identifier] = ACTIONS(9532), + [sym_newline] = ACTIONS(9534), + [anon_sym_COLON] = ACTIONS(9534), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9532), + [aux_sym_frm_property_statement_token1] = ACTIONS(9532), + [anon_sym_DOT] = ACTIONS(9532), + [anon_sym_BANG] = ACTIONS(9534), + [aux_sym__attribute_identifier_token1] = ACTIONS(9532), + [aux_sym_option_statement_token3] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9532), + [aux_sym_preprocessor_const_token1] = ACTIONS(9532), + [sym_static_modifier] = ACTIONS(9532), + [sym__dim_keyword] = ACTIONS(9532), + [sym__redim_keyword] = ACTIONS(9532), + [aux_sym_get_accessor_token1] = ACTIONS(9532), + [aux_sym_set_accessor_token1] = ACTIONS(9532), + [aux_sym_const_declaration_token1] = ACTIONS(9532), + [anon_sym_LPAREN] = ACTIONS(9534), + [aux_sym_as_type_clause_token2] = ACTIONS(9532), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9532), + [aux_sym_visibility_token1] = ACTIONS(9532), + [aux_sym_visibility_token2] = ACTIONS(9532), + [aux_sym_elseif_fragment_token1] = ACTIONS(9532), + [aux_sym_else_fragment_token1] = ACTIONS(9532), + [aux_sym_select_statement_token1] = ACTIONS(9532), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9532), + [aux_sym__for_header_token1] = ACTIONS(9532), + [aux_sym_do_statement_token1] = ACTIONS(9532), + [aux_sym_do_condition_token1] = ACTIONS(9532), + [aux_sym_with_statement_token1] = ACTIONS(9532), + [aux_sym_exit_statement_token1] = ACTIONS(9532), + [sym_end_statement] = ACTIONS(9534), + [aux_sym_on_goto_statement_token1] = ACTIONS(9532), + [aux_sym_on_goto_statement_token2] = ACTIONS(9532), + [aux_sym_on_error_statement_token2] = ACTIONS(9532), + [sym__ambiguous_redim_statement] = ACTIONS(9534), + [aux_sym_erase_statement_token1] = ACTIONS(9532), + [aux_sym_open_statement_token1] = ACTIONS(9532), + [aux_sym_file_mode_token2] = ACTIONS(9532), + [aux_sym_file_access_token2] = ACTIONS(9532), + [aux_sym_file_lock_token2] = ACTIONS(9532), + [aux_sym_print_statement_token1] = ACTIONS(9532), + [anon_sym_PLUS] = ACTIONS(9534), + [anon_sym_DASH] = ACTIONS(9532), + [anon_sym_QMARK] = ACTIONS(9534), + [aux_sym_close_statement_token1] = ACTIONS(9532), + [aux_sym_put_statement_token1] = ACTIONS(9532), + [aux_sym_unlock_statement_token1] = ACTIONS(9532), + [aux_sym_seek_statement_token1] = ACTIONS(9532), + [sym_reset_statement] = ACTIONS(9532), + [aux_sym_raise_event_statement_token1] = ACTIONS(9532), + [sym_stop_statement] = ACTIONS(9532), + [sym_beep_statement] = ACTIONS(9532), + [aux_sym_unload_statement_token1] = ACTIONS(9532), + [aux_sym_def_type_statement_token1] = ACTIONS(9532), + [aux_sym_def_type_statement_token2] = ACTIONS(9532), + [aux_sym_def_type_statement_token3] = ACTIONS(9532), + [aux_sym_def_type_statement_token4] = ACTIONS(9532), + [aux_sym_def_type_statement_token5] = ACTIONS(9532), + [aux_sym_def_type_statement_token6] = ACTIONS(9532), + [aux_sym_def_type_statement_token7] = ACTIONS(9532), + [aux_sym_def_type_statement_token8] = ACTIONS(9532), + [aux_sym_def_type_statement_token9] = ACTIONS(9532), + [aux_sym_def_type_statement_token10] = ACTIONS(9532), + [aux_sym_def_type_statement_token11] = ACTIONS(9532), + [aux_sym_def_type_statement_token12] = ACTIONS(9532), + [aux_sym_def_type_statement_token13] = ACTIONS(9532), + [aux_sym_def_type_statement_token14] = ACTIONS(9532), + [aux_sym_call_statement_token1] = ACTIONS(9532), + [sym__ambiguous_call_statement] = ACTIONS(9532), + [aux_sym_addressof_expression_token1] = ACTIONS(9532), + [aux_sym_type_of_expression_token1] = ACTIONS(9532), + [aux_sym_unary_expression_token1] = ACTIONS(9532), + [sym_string_literal] = ACTIONS(9534), + [sym_number_literal] = ACTIONS(9534), + [aux_sym_boolean_literal_token1] = ACTIONS(9532), + [aux_sym_boolean_literal_token2] = ACTIONS(9532), + [sym_nothing_literal] = ACTIONS(9532), + [sym_null_literal] = ACTIONS(9532), + [sym_empty_literal] = ACTIONS(9532), + [sym_date_literal] = ACTIONS(9534), + [anon_sym_POUND] = ACTIONS(9532), + }, + [STATE(6607)] = { + [sym_identifier] = ACTIONS(9536), + [sym_newline] = ACTIONS(9538), + [anon_sym_COLON] = ACTIONS(9538), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9536), + [aux_sym_frm_property_statement_token1] = ACTIONS(9536), + [anon_sym_DOT] = ACTIONS(9536), + [anon_sym_BANG] = ACTIONS(9538), + [aux_sym__attribute_identifier_token1] = ACTIONS(9536), + [aux_sym_option_statement_token3] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9536), + [aux_sym_preprocessor_const_token1] = ACTIONS(9536), + [sym_static_modifier] = ACTIONS(9536), + [sym__dim_keyword] = ACTIONS(9536), + [sym__redim_keyword] = ACTIONS(9536), + [aux_sym_get_accessor_token1] = ACTIONS(9536), + [aux_sym_set_accessor_token1] = ACTIONS(9536), + [aux_sym_const_declaration_token1] = ACTIONS(9536), + [anon_sym_LPAREN] = ACTIONS(9538), + [aux_sym_as_type_clause_token2] = ACTIONS(9536), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9536), + [aux_sym_visibility_token1] = ACTIONS(9536), + [aux_sym_visibility_token2] = ACTIONS(9536), + [aux_sym_elseif_fragment_token1] = ACTIONS(9536), + [aux_sym_else_fragment_token1] = ACTIONS(9536), + [aux_sym_select_statement_token1] = ACTIONS(9536), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9536), + [aux_sym__for_header_token1] = ACTIONS(9536), + [aux_sym_do_statement_token1] = ACTIONS(9536), + [aux_sym_do_condition_token1] = ACTIONS(9536), + [aux_sym_with_statement_token1] = ACTIONS(9536), + [aux_sym_exit_statement_token1] = ACTIONS(9536), + [sym_end_statement] = ACTIONS(9538), + [aux_sym_on_goto_statement_token1] = ACTIONS(9536), + [aux_sym_on_goto_statement_token2] = ACTIONS(9536), + [aux_sym_on_error_statement_token2] = ACTIONS(9536), + [sym__ambiguous_redim_statement] = ACTIONS(9538), + [aux_sym_erase_statement_token1] = ACTIONS(9536), + [aux_sym_open_statement_token1] = ACTIONS(9536), + [aux_sym_file_mode_token2] = ACTIONS(9536), + [aux_sym_file_access_token2] = ACTIONS(9536), + [aux_sym_file_lock_token2] = ACTIONS(9536), + [aux_sym_print_statement_token1] = ACTIONS(9536), + [anon_sym_PLUS] = ACTIONS(9538), + [anon_sym_DASH] = ACTIONS(9536), + [anon_sym_QMARK] = ACTIONS(9538), + [aux_sym_close_statement_token1] = ACTIONS(9536), + [aux_sym_put_statement_token1] = ACTIONS(9536), + [aux_sym_unlock_statement_token1] = ACTIONS(9536), + [aux_sym_seek_statement_token1] = ACTIONS(9536), + [sym_reset_statement] = ACTIONS(9536), + [aux_sym_raise_event_statement_token1] = ACTIONS(9536), + [sym_stop_statement] = ACTIONS(9536), + [sym_beep_statement] = ACTIONS(9536), + [aux_sym_unload_statement_token1] = ACTIONS(9536), + [aux_sym_def_type_statement_token1] = ACTIONS(9536), + [aux_sym_def_type_statement_token2] = ACTIONS(9536), + [aux_sym_def_type_statement_token3] = ACTIONS(9536), + [aux_sym_def_type_statement_token4] = ACTIONS(9536), + [aux_sym_def_type_statement_token5] = ACTIONS(9536), + [aux_sym_def_type_statement_token6] = ACTIONS(9536), + [aux_sym_def_type_statement_token7] = ACTIONS(9536), + [aux_sym_def_type_statement_token8] = ACTIONS(9536), + [aux_sym_def_type_statement_token9] = ACTIONS(9536), + [aux_sym_def_type_statement_token10] = ACTIONS(9536), + [aux_sym_def_type_statement_token11] = ACTIONS(9536), + [aux_sym_def_type_statement_token12] = ACTIONS(9536), + [aux_sym_def_type_statement_token13] = ACTIONS(9536), + [aux_sym_def_type_statement_token14] = ACTIONS(9536), + [aux_sym_call_statement_token1] = ACTIONS(9536), + [sym__ambiguous_call_statement] = ACTIONS(9536), + [aux_sym_addressof_expression_token1] = ACTIONS(9536), + [aux_sym_type_of_expression_token1] = ACTIONS(9536), + [aux_sym_unary_expression_token1] = ACTIONS(9536), + [sym_string_literal] = ACTIONS(9538), + [sym_number_literal] = ACTIONS(9538), + [aux_sym_boolean_literal_token1] = ACTIONS(9536), + [aux_sym_boolean_literal_token2] = ACTIONS(9536), + [sym_nothing_literal] = ACTIONS(9536), + [sym_null_literal] = ACTIONS(9536), + [sym_empty_literal] = ACTIONS(9536), + [sym_date_literal] = ACTIONS(9538), + [anon_sym_POUND] = ACTIONS(9536), + }, + [STATE(6608)] = { + [sym_identifier] = ACTIONS(9542), + [sym_newline] = ACTIONS(9544), + [anon_sym_COLON] = ACTIONS(9544), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9542), + [aux_sym_frm_property_statement_token1] = ACTIONS(9542), + [anon_sym_DOT] = ACTIONS(9542), + [anon_sym_BANG] = ACTIONS(9544), + [aux_sym__attribute_identifier_token1] = ACTIONS(9542), + [aux_sym_option_statement_token3] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9542), + [aux_sym_preprocessor_const_token1] = ACTIONS(9542), + [sym_static_modifier] = ACTIONS(9542), + [sym__dim_keyword] = ACTIONS(9542), + [sym__redim_keyword] = ACTIONS(9542), + [aux_sym_get_accessor_token1] = ACTIONS(9542), + [aux_sym_set_accessor_token1] = ACTIONS(9542), + [aux_sym_const_declaration_token1] = ACTIONS(9542), + [anon_sym_LPAREN] = ACTIONS(9544), + [aux_sym_as_type_clause_token2] = ACTIONS(9542), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9542), + [aux_sym_visibility_token1] = ACTIONS(9542), + [aux_sym_visibility_token2] = ACTIONS(9542), + [aux_sym_elseif_fragment_token1] = ACTIONS(9542), + [aux_sym_else_fragment_token1] = ACTIONS(9542), + [aux_sym_select_statement_token1] = ACTIONS(9542), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9542), + [aux_sym__for_header_token1] = ACTIONS(9542), + [aux_sym_do_statement_token1] = ACTIONS(9542), + [aux_sym_do_condition_token1] = ACTIONS(9542), + [aux_sym_with_statement_token1] = ACTIONS(9542), + [aux_sym_exit_statement_token1] = ACTIONS(9542), + [sym_end_statement] = ACTIONS(9544), + [aux_sym_on_goto_statement_token1] = ACTIONS(9542), + [aux_sym_on_goto_statement_token2] = ACTIONS(9542), + [aux_sym_on_error_statement_token2] = ACTIONS(9542), + [sym__ambiguous_redim_statement] = ACTIONS(9544), + [aux_sym_erase_statement_token1] = ACTIONS(9542), + [aux_sym_open_statement_token1] = ACTIONS(9542), + [aux_sym_file_mode_token2] = ACTIONS(9542), + [aux_sym_file_access_token2] = ACTIONS(9542), + [aux_sym_file_lock_token2] = ACTIONS(9542), + [aux_sym_print_statement_token1] = ACTIONS(9542), + [anon_sym_PLUS] = ACTIONS(9544), + [anon_sym_DASH] = ACTIONS(9542), + [anon_sym_QMARK] = ACTIONS(9544), + [aux_sym_close_statement_token1] = ACTIONS(9542), + [aux_sym_put_statement_token1] = ACTIONS(9542), + [aux_sym_unlock_statement_token1] = ACTIONS(9542), + [aux_sym_seek_statement_token1] = ACTIONS(9542), + [sym_reset_statement] = ACTIONS(9542), + [aux_sym_raise_event_statement_token1] = ACTIONS(9542), + [sym_stop_statement] = ACTIONS(9542), + [sym_beep_statement] = ACTIONS(9542), + [aux_sym_unload_statement_token1] = ACTIONS(9542), + [aux_sym_def_type_statement_token1] = ACTIONS(9542), + [aux_sym_def_type_statement_token2] = ACTIONS(9542), + [aux_sym_def_type_statement_token3] = ACTIONS(9542), + [aux_sym_def_type_statement_token4] = ACTIONS(9542), + [aux_sym_def_type_statement_token5] = ACTIONS(9542), + [aux_sym_def_type_statement_token6] = ACTIONS(9542), + [aux_sym_def_type_statement_token7] = ACTIONS(9542), + [aux_sym_def_type_statement_token8] = ACTIONS(9542), + [aux_sym_def_type_statement_token9] = ACTIONS(9542), + [aux_sym_def_type_statement_token10] = ACTIONS(9542), + [aux_sym_def_type_statement_token11] = ACTIONS(9542), + [aux_sym_def_type_statement_token12] = ACTIONS(9542), + [aux_sym_def_type_statement_token13] = ACTIONS(9542), + [aux_sym_def_type_statement_token14] = ACTIONS(9542), + [aux_sym_call_statement_token1] = ACTIONS(9542), + [sym__ambiguous_call_statement] = ACTIONS(9542), + [aux_sym_addressof_expression_token1] = ACTIONS(9542), + [aux_sym_type_of_expression_token1] = ACTIONS(9542), + [aux_sym_unary_expression_token1] = ACTIONS(9542), + [sym_string_literal] = ACTIONS(9544), + [sym_number_literal] = ACTIONS(9544), + [aux_sym_boolean_literal_token1] = ACTIONS(9542), + [aux_sym_boolean_literal_token2] = ACTIONS(9542), + [sym_nothing_literal] = ACTIONS(9542), + [sym_null_literal] = ACTIONS(9542), + [sym_empty_literal] = ACTIONS(9542), + [sym_date_literal] = ACTIONS(9544), + [anon_sym_POUND] = ACTIONS(9542), + }, + [STATE(6609)] = { + [sym_identifier] = ACTIONS(9546), + [sym_newline] = ACTIONS(9548), + [anon_sym_COLON] = ACTIONS(9548), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9546), + [aux_sym_frm_property_statement_token1] = ACTIONS(9546), + [anon_sym_DOT] = ACTIONS(9546), + [anon_sym_BANG] = ACTIONS(9548), + [aux_sym__attribute_identifier_token1] = ACTIONS(9546), + [aux_sym_option_statement_token3] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9546), + [aux_sym_preprocessor_const_token1] = ACTIONS(9546), + [sym_static_modifier] = ACTIONS(9546), + [sym__dim_keyword] = ACTIONS(9546), + [sym__redim_keyword] = ACTIONS(9546), + [aux_sym_get_accessor_token1] = ACTIONS(9546), + [aux_sym_set_accessor_token1] = ACTIONS(9546), + [aux_sym_const_declaration_token1] = ACTIONS(9546), + [anon_sym_LPAREN] = ACTIONS(9548), + [aux_sym_as_type_clause_token2] = ACTIONS(9546), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9546), + [aux_sym_visibility_token1] = ACTIONS(9546), + [aux_sym_visibility_token2] = ACTIONS(9546), + [aux_sym_elseif_fragment_token1] = ACTIONS(9546), + [aux_sym_else_fragment_token1] = ACTIONS(9546), + [aux_sym_select_statement_token1] = ACTIONS(9546), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9546), + [aux_sym__for_header_token1] = ACTIONS(9546), + [aux_sym_do_statement_token1] = ACTIONS(9546), + [aux_sym_do_condition_token1] = ACTIONS(9546), + [aux_sym_with_statement_token1] = ACTIONS(9546), + [aux_sym_exit_statement_token1] = ACTIONS(9546), + [sym_end_statement] = ACTIONS(9548), + [aux_sym_on_goto_statement_token1] = ACTIONS(9546), + [aux_sym_on_goto_statement_token2] = ACTIONS(9546), + [aux_sym_on_error_statement_token2] = ACTIONS(9546), + [sym__ambiguous_redim_statement] = ACTIONS(9548), + [aux_sym_erase_statement_token1] = ACTIONS(9546), + [aux_sym_open_statement_token1] = ACTIONS(9546), + [aux_sym_file_mode_token2] = ACTIONS(9546), + [aux_sym_file_access_token2] = ACTIONS(9546), + [aux_sym_file_lock_token2] = ACTIONS(9546), + [aux_sym_print_statement_token1] = ACTIONS(9546), + [anon_sym_PLUS] = ACTIONS(9548), + [anon_sym_DASH] = ACTIONS(9546), + [anon_sym_QMARK] = ACTIONS(9548), + [aux_sym_close_statement_token1] = ACTIONS(9546), + [aux_sym_put_statement_token1] = ACTIONS(9546), + [aux_sym_unlock_statement_token1] = ACTIONS(9546), + [aux_sym_seek_statement_token1] = ACTIONS(9546), + [sym_reset_statement] = ACTIONS(9546), + [aux_sym_raise_event_statement_token1] = ACTIONS(9546), + [sym_stop_statement] = ACTIONS(9546), + [sym_beep_statement] = ACTIONS(9546), + [aux_sym_unload_statement_token1] = ACTIONS(9546), + [aux_sym_def_type_statement_token1] = ACTIONS(9546), + [aux_sym_def_type_statement_token2] = ACTIONS(9546), + [aux_sym_def_type_statement_token3] = ACTIONS(9546), + [aux_sym_def_type_statement_token4] = ACTIONS(9546), + [aux_sym_def_type_statement_token5] = ACTIONS(9546), + [aux_sym_def_type_statement_token6] = ACTIONS(9546), + [aux_sym_def_type_statement_token7] = ACTIONS(9546), + [aux_sym_def_type_statement_token8] = ACTIONS(9546), + [aux_sym_def_type_statement_token9] = ACTIONS(9546), + [aux_sym_def_type_statement_token10] = ACTIONS(9546), + [aux_sym_def_type_statement_token11] = ACTIONS(9546), + [aux_sym_def_type_statement_token12] = ACTIONS(9546), + [aux_sym_def_type_statement_token13] = ACTIONS(9546), + [aux_sym_def_type_statement_token14] = ACTIONS(9546), + [aux_sym_call_statement_token1] = ACTIONS(9546), + [sym__ambiguous_call_statement] = ACTIONS(9546), + [aux_sym_addressof_expression_token1] = ACTIONS(9546), + [aux_sym_type_of_expression_token1] = ACTIONS(9546), + [aux_sym_unary_expression_token1] = ACTIONS(9546), + [sym_string_literal] = ACTIONS(9548), + [sym_number_literal] = ACTIONS(9548), + [aux_sym_boolean_literal_token1] = ACTIONS(9546), + [aux_sym_boolean_literal_token2] = ACTIONS(9546), + [sym_nothing_literal] = ACTIONS(9546), + [sym_null_literal] = ACTIONS(9546), + [sym_empty_literal] = ACTIONS(9546), + [sym_date_literal] = ACTIONS(9548), + [anon_sym_POUND] = ACTIONS(9546), + }, + [STATE(6610)] = { + [sym_identifier] = ACTIONS(9138), + [sym_newline] = ACTIONS(9140), + [anon_sym_COLON] = ACTIONS(9140), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9138), + [aux_sym_frm_property_statement_token1] = ACTIONS(9138), + [anon_sym_DOT] = ACTIONS(9138), + [anon_sym_BANG] = ACTIONS(9140), + [aux_sym__attribute_identifier_token1] = ACTIONS(9138), + [aux_sym_option_statement_token3] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9138), + [aux_sym_preprocessor_const_token1] = ACTIONS(9138), + [sym_static_modifier] = ACTIONS(9138), + [sym__dim_keyword] = ACTIONS(9138), + [sym__redim_keyword] = ACTIONS(9138), + [aux_sym_get_accessor_token1] = ACTIONS(9138), + [aux_sym_set_accessor_token1] = ACTIONS(9138), + [aux_sym_const_declaration_token1] = ACTIONS(9138), + [anon_sym_LPAREN] = ACTIONS(9140), + [aux_sym_as_type_clause_token2] = ACTIONS(9138), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9138), + [aux_sym_visibility_token1] = ACTIONS(9138), + [aux_sym_visibility_token2] = ACTIONS(9138), + [aux_sym_elseif_fragment_token1] = ACTIONS(9138), + [aux_sym_else_fragment_token1] = ACTIONS(9138), + [aux_sym_select_statement_token1] = ACTIONS(9138), + [aux_sym__for_header_token1] = ACTIONS(9138), + [aux_sym_do_statement_token1] = ACTIONS(9138), + [aux_sym_do_condition_token1] = ACTIONS(9138), + [aux_sym_while_statement_token1] = ACTIONS(9138), + [aux_sym_with_statement_token1] = ACTIONS(9138), + [aux_sym_exit_statement_token1] = ACTIONS(9138), + [sym_end_statement] = ACTIONS(9140), + [aux_sym_on_goto_statement_token1] = ACTIONS(9138), + [aux_sym_on_goto_statement_token2] = ACTIONS(9138), + [aux_sym_on_error_statement_token2] = ACTIONS(9138), + [sym__ambiguous_redim_statement] = ACTIONS(9140), + [aux_sym_erase_statement_token1] = ACTIONS(9138), + [aux_sym_open_statement_token1] = ACTIONS(9138), + [aux_sym_file_mode_token2] = ACTIONS(9138), + [aux_sym_file_access_token2] = ACTIONS(9138), + [aux_sym_file_lock_token2] = ACTIONS(9138), + [aux_sym_print_statement_token1] = ACTIONS(9138), + [anon_sym_PLUS] = ACTIONS(9140), + [anon_sym_DASH] = ACTIONS(9138), + [anon_sym_QMARK] = ACTIONS(9140), + [aux_sym_close_statement_token1] = ACTIONS(9138), + [aux_sym_put_statement_token1] = ACTIONS(9138), + [aux_sym_unlock_statement_token1] = ACTIONS(9138), + [aux_sym_seek_statement_token1] = ACTIONS(9138), + [sym_reset_statement] = ACTIONS(9138), + [aux_sym_raise_event_statement_token1] = ACTIONS(9138), + [sym_stop_statement] = ACTIONS(9138), + [sym_beep_statement] = ACTIONS(9138), + [aux_sym_unload_statement_token1] = ACTIONS(9138), + [aux_sym_def_type_statement_token1] = ACTIONS(9138), + [aux_sym_def_type_statement_token2] = ACTIONS(9138), + [aux_sym_def_type_statement_token3] = ACTIONS(9138), + [aux_sym_def_type_statement_token4] = ACTIONS(9138), + [aux_sym_def_type_statement_token5] = ACTIONS(9138), + [aux_sym_def_type_statement_token6] = ACTIONS(9138), + [aux_sym_def_type_statement_token7] = ACTIONS(9138), + [aux_sym_def_type_statement_token8] = ACTIONS(9138), + [aux_sym_def_type_statement_token9] = ACTIONS(9138), + [aux_sym_def_type_statement_token10] = ACTIONS(9138), + [aux_sym_def_type_statement_token11] = ACTIONS(9138), + [aux_sym_def_type_statement_token12] = ACTIONS(9138), + [aux_sym_def_type_statement_token13] = ACTIONS(9138), + [aux_sym_def_type_statement_token14] = ACTIONS(9138), + [aux_sym_call_statement_token1] = ACTIONS(9138), + [sym__ambiguous_call_statement] = ACTIONS(9138), + [aux_sym_addressof_expression_token1] = ACTIONS(9138), + [aux_sym_type_of_expression_token1] = ACTIONS(9138), + [aux_sym_unary_expression_token1] = ACTIONS(9138), + [sym_string_literal] = ACTIONS(9140), + [sym_number_literal] = ACTIONS(9140), + [aux_sym_boolean_literal_token1] = ACTIONS(9138), + [aux_sym_boolean_literal_token2] = ACTIONS(9138), + [sym_nothing_literal] = ACTIONS(9138), + [sym_null_literal] = ACTIONS(9138), + [sym_empty_literal] = ACTIONS(9138), + [sym_date_literal] = ACTIONS(9140), + [anon_sym_POUND] = ACTIONS(9138), + }, + [STATE(6611)] = { + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym__attribute_identifier_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [sym__redim_keyword] = ACTIONS(4597), + [aux_sym_get_accessor_token1] = ACTIONS(4597), + [aux_sym_set_accessor_token1] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [aux_sym_as_type_clause_token2] = ACTIONS(4597), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4597), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_elseif_fragment_token1] = ACTIONS(4597), + [aux_sym_else_fragment_token1] = ACTIONS(4597), + [aux_sym_select_statement_token1] = ACTIONS(4597), + [aux_sym__for_header_token1] = ACTIONS(4597), + [aux_sym_do_statement_token1] = ACTIONS(4597), + [aux_sym_do_condition_token1] = ACTIONS(4597), + [aux_sym_with_statement_token1] = ACTIONS(4597), + [aux_sym_exit_statement_token1] = ACTIONS(4597), + [sym_end_statement] = ACTIONS(4599), + [aux_sym_on_goto_statement_token1] = ACTIONS(4597), + [aux_sym_on_goto_statement_token2] = ACTIONS(4597), + [aux_sym_on_error_statement_token2] = ACTIONS(4597), + [sym__ambiguous_redim_statement] = ACTIONS(4599), + [aux_sym_erase_statement_token1] = ACTIONS(4597), + [aux_sym_open_statement_token1] = ACTIONS(4597), + [aux_sym_file_mode_token2] = ACTIONS(4597), + [aux_sym_file_access_token2] = ACTIONS(4597), + [aux_sym_file_lock_token2] = ACTIONS(4597), + [aux_sym_print_statement_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [aux_sym_close_statement_token1] = ACTIONS(4597), + [aux_sym_put_statement_token1] = ACTIONS(4597), + [aux_sym_unlock_statement_token1] = ACTIONS(4597), + [aux_sym_seek_statement_token1] = ACTIONS(4597), + [sym_reset_statement] = ACTIONS(4597), + [aux_sym_raise_event_statement_token1] = ACTIONS(4597), + [sym_stop_statement] = ACTIONS(4597), + [sym_beep_statement] = ACTIONS(4597), + [aux_sym_unload_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_call_statement_token1] = ACTIONS(4597), + [sym__ambiguous_call_statement] = ACTIONS(4597), + [aux_sym_addressof_expression_token1] = ACTIONS(4597), + [aux_sym_type_of_expression_token1] = ACTIONS(4597), + [aux_sym_unary_expression_token1] = ACTIONS(4597), + [sym_string_literal] = ACTIONS(4599), + [sym_number_literal] = ACTIONS(4599), + [aux_sym_boolean_literal_token1] = ACTIONS(4597), + [aux_sym_boolean_literal_token2] = ACTIONS(4597), + [sym_nothing_literal] = ACTIONS(4597), + [sym_null_literal] = ACTIONS(4597), + [sym_empty_literal] = ACTIONS(4597), + [sym_date_literal] = ACTIONS(4599), + [anon_sym_POUND] = ACTIONS(4597), + }, + [STATE(6612)] = { + [sym_identifier] = ACTIONS(9276), + [sym_newline] = ACTIONS(9278), + [anon_sym_COLON] = ACTIONS(9278), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9276), + [aux_sym_frm_property_statement_token1] = ACTIONS(9276), + [anon_sym_DOT] = ACTIONS(9276), + [anon_sym_BANG] = ACTIONS(9278), + [aux_sym__attribute_identifier_token1] = ACTIONS(9276), + [aux_sym_option_statement_token3] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9276), + [aux_sym_preprocessor_const_token1] = ACTIONS(9276), + [sym_static_modifier] = ACTIONS(9276), + [sym__dim_keyword] = ACTIONS(9276), + [sym__redim_keyword] = ACTIONS(9276), + [aux_sym_get_accessor_token1] = ACTIONS(9276), + [aux_sym_set_accessor_token1] = ACTIONS(9276), + [aux_sym_const_declaration_token1] = ACTIONS(9276), + [anon_sym_LPAREN] = ACTIONS(9278), + [aux_sym_as_type_clause_token2] = ACTIONS(9276), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9276), + [aux_sym_visibility_token1] = ACTIONS(9276), + [aux_sym_visibility_token2] = ACTIONS(9276), + [aux_sym_elseif_fragment_token1] = ACTIONS(9276), + [aux_sym_else_fragment_token1] = ACTIONS(9276), + [aux_sym_select_statement_token1] = ACTIONS(9276), + [aux_sym_select_statement_token2] = ACTIONS(9276), + [aux_sym__for_header_token1] = ACTIONS(9276), + [aux_sym_do_statement_token1] = ACTIONS(9276), + [aux_sym_do_condition_token1] = ACTIONS(9276), + [aux_sym_with_statement_token1] = ACTIONS(9276), + [aux_sym_exit_statement_token1] = ACTIONS(9276), + [sym_end_statement] = ACTIONS(9278), + [aux_sym_on_goto_statement_token1] = ACTIONS(9276), + [aux_sym_on_goto_statement_token2] = ACTIONS(9276), + [aux_sym_on_error_statement_token2] = ACTIONS(9276), + [sym__ambiguous_redim_statement] = ACTIONS(9278), + [aux_sym_erase_statement_token1] = ACTIONS(9276), + [aux_sym_open_statement_token1] = ACTIONS(9276), + [aux_sym_file_mode_token2] = ACTIONS(9276), + [aux_sym_file_access_token2] = ACTIONS(9276), + [aux_sym_file_lock_token2] = ACTIONS(9276), + [aux_sym_print_statement_token1] = ACTIONS(9276), + [anon_sym_PLUS] = ACTIONS(9278), + [anon_sym_DASH] = ACTIONS(9276), + [anon_sym_QMARK] = ACTIONS(9278), + [aux_sym_close_statement_token1] = ACTIONS(9276), + [aux_sym_put_statement_token1] = ACTIONS(9276), + [aux_sym_unlock_statement_token1] = ACTIONS(9276), + [aux_sym_seek_statement_token1] = ACTIONS(9276), + [sym_reset_statement] = ACTIONS(9276), + [aux_sym_raise_event_statement_token1] = ACTIONS(9276), + [sym_stop_statement] = ACTIONS(9276), + [sym_beep_statement] = ACTIONS(9276), + [aux_sym_unload_statement_token1] = ACTIONS(9276), + [aux_sym_def_type_statement_token1] = ACTIONS(9276), + [aux_sym_def_type_statement_token2] = ACTIONS(9276), + [aux_sym_def_type_statement_token3] = ACTIONS(9276), + [aux_sym_def_type_statement_token4] = ACTIONS(9276), + [aux_sym_def_type_statement_token5] = ACTIONS(9276), + [aux_sym_def_type_statement_token6] = ACTIONS(9276), + [aux_sym_def_type_statement_token7] = ACTIONS(9276), + [aux_sym_def_type_statement_token8] = ACTIONS(9276), + [aux_sym_def_type_statement_token9] = ACTIONS(9276), + [aux_sym_def_type_statement_token10] = ACTIONS(9276), + [aux_sym_def_type_statement_token11] = ACTIONS(9276), + [aux_sym_def_type_statement_token12] = ACTIONS(9276), + [aux_sym_def_type_statement_token13] = ACTIONS(9276), + [aux_sym_def_type_statement_token14] = ACTIONS(9276), + [aux_sym_call_statement_token1] = ACTIONS(9276), + [sym__ambiguous_call_statement] = ACTIONS(9276), + [aux_sym_addressof_expression_token1] = ACTIONS(9276), + [aux_sym_type_of_expression_token1] = ACTIONS(9276), + [aux_sym_unary_expression_token1] = ACTIONS(9276), + [sym_string_literal] = ACTIONS(9278), + [sym_number_literal] = ACTIONS(9278), + [aux_sym_boolean_literal_token1] = ACTIONS(9276), + [aux_sym_boolean_literal_token2] = ACTIONS(9276), + [sym_nothing_literal] = ACTIONS(9276), + [sym_null_literal] = ACTIONS(9276), + [sym_empty_literal] = ACTIONS(9276), + [sym_date_literal] = ACTIONS(9278), + [anon_sym_POUND] = ACTIONS(9276), + }, + [STATE(6613)] = { + [sym_identifier] = ACTIONS(9784), + [sym_newline] = ACTIONS(9786), + [anon_sym_COLON] = ACTIONS(9786), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9784), + [aux_sym_frm_property_statement_token1] = ACTIONS(9784), + [anon_sym_DOT] = ACTIONS(9784), + [anon_sym_BANG] = ACTIONS(9786), + [aux_sym__attribute_identifier_token1] = ACTIONS(9784), + [aux_sym_option_statement_token3] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9784), + [aux_sym_preprocessor_const_token1] = ACTIONS(9784), + [sym_static_modifier] = ACTIONS(9784), + [sym__dim_keyword] = ACTIONS(9784), + [sym__redim_keyword] = ACTIONS(9784), + [aux_sym_get_accessor_token1] = ACTIONS(9784), + [aux_sym_set_accessor_token1] = ACTIONS(9784), + [aux_sym_const_declaration_token1] = ACTIONS(9784), + [anon_sym_LPAREN] = ACTIONS(9786), + [aux_sym_as_type_clause_token2] = ACTIONS(9784), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9784), + [aux_sym_visibility_token1] = ACTIONS(9784), + [aux_sym_visibility_token2] = ACTIONS(9784), + [aux_sym_elseif_fragment_token1] = ACTIONS(9784), + [aux_sym_else_fragment_token1] = ACTIONS(9784), + [aux_sym_select_statement_token1] = ACTIONS(9784), + [aux_sym__for_header_token1] = ACTIONS(9784), + [aux_sym_do_statement_token1] = ACTIONS(9784), + [aux_sym_do_statement_token2] = ACTIONS(9784), + [aux_sym_do_condition_token1] = ACTIONS(9784), + [aux_sym_with_statement_token1] = ACTIONS(9784), + [aux_sym_exit_statement_token1] = ACTIONS(9784), + [sym_end_statement] = ACTIONS(9786), + [aux_sym_on_goto_statement_token1] = ACTIONS(9784), + [aux_sym_on_goto_statement_token2] = ACTIONS(9784), + [aux_sym_on_error_statement_token2] = ACTIONS(9784), + [sym__ambiguous_redim_statement] = ACTIONS(9786), + [aux_sym_erase_statement_token1] = ACTIONS(9784), + [aux_sym_open_statement_token1] = ACTIONS(9784), + [aux_sym_file_mode_token2] = ACTIONS(9784), + [aux_sym_file_access_token2] = ACTIONS(9784), + [aux_sym_file_lock_token2] = ACTIONS(9784), + [aux_sym_print_statement_token1] = ACTIONS(9784), + [anon_sym_PLUS] = ACTIONS(9786), + [anon_sym_DASH] = ACTIONS(9784), + [anon_sym_QMARK] = ACTIONS(9786), + [aux_sym_close_statement_token1] = ACTIONS(9784), + [aux_sym_put_statement_token1] = ACTIONS(9784), + [aux_sym_unlock_statement_token1] = ACTIONS(9784), + [aux_sym_seek_statement_token1] = ACTIONS(9784), + [sym_reset_statement] = ACTIONS(9784), + [aux_sym_raise_event_statement_token1] = ACTIONS(9784), + [sym_stop_statement] = ACTIONS(9784), + [sym_beep_statement] = ACTIONS(9784), + [aux_sym_unload_statement_token1] = ACTIONS(9784), + [aux_sym_def_type_statement_token1] = ACTIONS(9784), + [aux_sym_def_type_statement_token2] = ACTIONS(9784), + [aux_sym_def_type_statement_token3] = ACTIONS(9784), + [aux_sym_def_type_statement_token4] = ACTIONS(9784), + [aux_sym_def_type_statement_token5] = ACTIONS(9784), + [aux_sym_def_type_statement_token6] = ACTIONS(9784), + [aux_sym_def_type_statement_token7] = ACTIONS(9784), + [aux_sym_def_type_statement_token8] = ACTIONS(9784), + [aux_sym_def_type_statement_token9] = ACTIONS(9784), + [aux_sym_def_type_statement_token10] = ACTIONS(9784), + [aux_sym_def_type_statement_token11] = ACTIONS(9784), + [aux_sym_def_type_statement_token12] = ACTIONS(9784), + [aux_sym_def_type_statement_token13] = ACTIONS(9784), + [aux_sym_def_type_statement_token14] = ACTIONS(9784), + [aux_sym_call_statement_token1] = ACTIONS(9784), + [sym__ambiguous_call_statement] = ACTIONS(9784), + [aux_sym_addressof_expression_token1] = ACTIONS(9784), + [aux_sym_type_of_expression_token1] = ACTIONS(9784), + [aux_sym_unary_expression_token1] = ACTIONS(9784), + [sym_string_literal] = ACTIONS(9786), + [sym_number_literal] = ACTIONS(9786), + [aux_sym_boolean_literal_token1] = ACTIONS(9784), + [aux_sym_boolean_literal_token2] = ACTIONS(9784), + [sym_nothing_literal] = ACTIONS(9784), + [sym_null_literal] = ACTIONS(9784), + [sym_empty_literal] = ACTIONS(9784), + [sym_date_literal] = ACTIONS(9786), + [anon_sym_POUND] = ACTIONS(9784), + }, + [STATE(6614)] = { + [sym_identifier] = ACTIONS(8692), + [sym_newline] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(8694), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8692), + [aux_sym_frm_property_statement_token1] = ACTIONS(8692), + [anon_sym_DOT] = ACTIONS(8692), + [anon_sym_BANG] = ACTIONS(8694), + [aux_sym__attribute_identifier_token1] = ACTIONS(8692), + [aux_sym_option_statement_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8692), + [aux_sym_preprocessor_const_token1] = ACTIONS(8692), + [sym_static_modifier] = ACTIONS(8692), + [sym__dim_keyword] = ACTIONS(8692), + [sym__redim_keyword] = ACTIONS(8692), + [aux_sym_get_accessor_token1] = ACTIONS(8692), + [aux_sym_set_accessor_token1] = ACTIONS(8692), + [aux_sym_const_declaration_token1] = ACTIONS(8692), + [anon_sym_LPAREN] = ACTIONS(8694), + [aux_sym_as_type_clause_token2] = ACTIONS(8692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8692), + [aux_sym_visibility_token1] = ACTIONS(8692), + [aux_sym_visibility_token2] = ACTIONS(8692), + [aux_sym_elseif_fragment_token1] = ACTIONS(8692), + [aux_sym_else_fragment_token1] = ACTIONS(10905), + [aux_sym_select_statement_token1] = ACTIONS(8692), + [aux_sym__for_header_token1] = ACTIONS(8692), + [aux_sym_do_statement_token1] = ACTIONS(8692), + [aux_sym_do_statement_token2] = ACTIONS(8692), + [aux_sym_do_condition_token1] = ACTIONS(8692), + [aux_sym_with_statement_token1] = ACTIONS(8692), + [aux_sym_exit_statement_token1] = ACTIONS(8692), + [sym_end_statement] = ACTIONS(8694), + [aux_sym_on_goto_statement_token1] = ACTIONS(8692), + [aux_sym_on_goto_statement_token2] = ACTIONS(8692), + [aux_sym_on_error_statement_token2] = ACTIONS(8692), + [sym__ambiguous_redim_statement] = ACTIONS(8694), + [aux_sym_erase_statement_token1] = ACTIONS(8692), + [aux_sym_open_statement_token1] = ACTIONS(8692), + [aux_sym_file_mode_token2] = ACTIONS(8692), + [aux_sym_file_access_token2] = ACTIONS(8692), + [aux_sym_file_lock_token2] = ACTIONS(8692), + [aux_sym_print_statement_token1] = ACTIONS(8692), + [anon_sym_PLUS] = ACTIONS(8694), + [anon_sym_DASH] = ACTIONS(8692), + [anon_sym_QMARK] = ACTIONS(8694), + [aux_sym_close_statement_token1] = ACTIONS(8692), + [aux_sym_put_statement_token1] = ACTIONS(8692), + [aux_sym_unlock_statement_token1] = ACTIONS(8692), + [aux_sym_seek_statement_token1] = ACTIONS(8692), + [sym_reset_statement] = ACTIONS(8692), + [aux_sym_raise_event_statement_token1] = ACTIONS(8692), + [sym_stop_statement] = ACTIONS(8692), + [sym_beep_statement] = ACTIONS(8692), + [aux_sym_unload_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token2] = ACTIONS(8692), + [aux_sym_def_type_statement_token3] = ACTIONS(8692), + [aux_sym_def_type_statement_token4] = ACTIONS(8692), + [aux_sym_def_type_statement_token5] = ACTIONS(8692), + [aux_sym_def_type_statement_token6] = ACTIONS(8692), + [aux_sym_def_type_statement_token7] = ACTIONS(8692), + [aux_sym_def_type_statement_token8] = ACTIONS(8692), + [aux_sym_def_type_statement_token9] = ACTIONS(8692), + [aux_sym_def_type_statement_token10] = ACTIONS(8692), + [aux_sym_def_type_statement_token11] = ACTIONS(8692), + [aux_sym_def_type_statement_token12] = ACTIONS(8692), + [aux_sym_def_type_statement_token13] = ACTIONS(8692), + [aux_sym_def_type_statement_token14] = ACTIONS(8692), + [aux_sym_call_statement_token1] = ACTIONS(8692), + [sym__ambiguous_call_statement] = ACTIONS(8692), + [aux_sym_addressof_expression_token1] = ACTIONS(8692), + [aux_sym_type_of_expression_token1] = ACTIONS(8692), + [aux_sym_unary_expression_token1] = ACTIONS(8692), + [sym_string_literal] = ACTIONS(8694), + [sym_number_literal] = ACTIONS(8694), + [aux_sym_boolean_literal_token1] = ACTIONS(8692), + [aux_sym_boolean_literal_token2] = ACTIONS(8692), + [sym_nothing_literal] = ACTIONS(8692), + [sym_null_literal] = ACTIONS(8692), + [sym_empty_literal] = ACTIONS(8692), + [sym_date_literal] = ACTIONS(8694), + [anon_sym_POUND] = ACTIONS(8692), + }, + [STATE(6615)] = { + [sym_identifier] = ACTIONS(8903), + [sym_newline] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8903), + [aux_sym_frm_property_statement_token1] = ACTIONS(8903), + [anon_sym_DOT] = ACTIONS(8903), + [anon_sym_BANG] = ACTIONS(8905), + [aux_sym__attribute_identifier_token1] = ACTIONS(8903), + [aux_sym_option_statement_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8903), + [aux_sym_preprocessor_const_token1] = ACTIONS(8903), + [sym_static_modifier] = ACTIONS(8903), + [sym__dim_keyword] = ACTIONS(8903), + [sym__redim_keyword] = ACTIONS(8903), + [aux_sym_get_accessor_token1] = ACTIONS(8903), + [aux_sym_set_accessor_token1] = ACTIONS(8903), + [aux_sym_const_declaration_token1] = ACTIONS(8903), + [anon_sym_LPAREN] = ACTIONS(8905), + [aux_sym_as_type_clause_token2] = ACTIONS(8903), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8903), + [aux_sym_visibility_token1] = ACTIONS(8903), + [aux_sym_visibility_token2] = ACTIONS(8903), + [aux_sym_elseif_fragment_token1] = ACTIONS(8903), + [aux_sym_else_fragment_token1] = ACTIONS(8903), + [aux_sym_select_statement_token1] = ACTIONS(8903), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8903), + [aux_sym__for_header_token1] = ACTIONS(8903), + [aux_sym_do_statement_token1] = ACTIONS(8903), + [aux_sym_do_condition_token1] = ACTIONS(8903), + [aux_sym_with_statement_token1] = ACTIONS(8903), + [aux_sym_exit_statement_token1] = ACTIONS(8903), + [sym_end_statement] = ACTIONS(8905), + [aux_sym_on_goto_statement_token1] = ACTIONS(8903), + [aux_sym_on_goto_statement_token2] = ACTIONS(8903), + [aux_sym_on_error_statement_token2] = ACTIONS(8903), + [sym__ambiguous_redim_statement] = ACTIONS(8905), + [aux_sym_erase_statement_token1] = ACTIONS(8903), + [aux_sym_open_statement_token1] = ACTIONS(8903), + [aux_sym_file_mode_token2] = ACTIONS(8903), + [aux_sym_file_access_token2] = ACTIONS(8903), + [aux_sym_file_lock_token2] = ACTIONS(8903), + [aux_sym_print_statement_token1] = ACTIONS(8903), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_DASH] = ACTIONS(8903), + [anon_sym_QMARK] = ACTIONS(8905), + [aux_sym_close_statement_token1] = ACTIONS(8903), + [aux_sym_put_statement_token1] = ACTIONS(8903), + [aux_sym_unlock_statement_token1] = ACTIONS(8903), + [aux_sym_seek_statement_token1] = ACTIONS(8903), + [sym_reset_statement] = ACTIONS(8903), + [aux_sym_raise_event_statement_token1] = ACTIONS(8903), + [sym_stop_statement] = ACTIONS(8903), + [sym_beep_statement] = ACTIONS(8903), + [aux_sym_unload_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token2] = ACTIONS(8903), + [aux_sym_def_type_statement_token3] = ACTIONS(8903), + [aux_sym_def_type_statement_token4] = ACTIONS(8903), + [aux_sym_def_type_statement_token5] = ACTIONS(8903), + [aux_sym_def_type_statement_token6] = ACTIONS(8903), + [aux_sym_def_type_statement_token7] = ACTIONS(8903), + [aux_sym_def_type_statement_token8] = ACTIONS(8903), + [aux_sym_def_type_statement_token9] = ACTIONS(8903), + [aux_sym_def_type_statement_token10] = ACTIONS(8903), + [aux_sym_def_type_statement_token11] = ACTIONS(8903), + [aux_sym_def_type_statement_token12] = ACTIONS(8903), + [aux_sym_def_type_statement_token13] = ACTIONS(8903), + [aux_sym_def_type_statement_token14] = ACTIONS(8903), + [aux_sym_call_statement_token1] = ACTIONS(8903), + [sym__ambiguous_call_statement] = ACTIONS(8903), + [aux_sym_addressof_expression_token1] = ACTIONS(8903), + [aux_sym_type_of_expression_token1] = ACTIONS(8903), + [aux_sym_unary_expression_token1] = ACTIONS(8903), + [sym_string_literal] = ACTIONS(8905), + [sym_number_literal] = ACTIONS(8905), + [aux_sym_boolean_literal_token1] = ACTIONS(8903), + [aux_sym_boolean_literal_token2] = ACTIONS(8903), + [sym_nothing_literal] = ACTIONS(8903), + [sym_null_literal] = ACTIONS(8903), + [sym_empty_literal] = ACTIONS(8903), + [sym_date_literal] = ACTIONS(8905), + [anon_sym_POUND] = ACTIONS(8903), + }, + [STATE(6616)] = { + [sym_identifier] = ACTIONS(8911), + [sym_newline] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8911), + [aux_sym_frm_property_statement_token1] = ACTIONS(8911), + [anon_sym_DOT] = ACTIONS(8911), + [anon_sym_BANG] = ACTIONS(8913), + [aux_sym__attribute_identifier_token1] = ACTIONS(8911), + [aux_sym_option_statement_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8911), + [aux_sym_preprocessor_const_token1] = ACTIONS(8911), + [sym_static_modifier] = ACTIONS(8911), + [sym__dim_keyword] = ACTIONS(8911), + [sym__redim_keyword] = ACTIONS(8911), + [aux_sym_get_accessor_token1] = ACTIONS(8911), + [aux_sym_set_accessor_token1] = ACTIONS(8911), + [aux_sym_const_declaration_token1] = ACTIONS(8911), + [anon_sym_LPAREN] = ACTIONS(8913), + [aux_sym_as_type_clause_token2] = ACTIONS(8911), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8911), + [aux_sym_visibility_token1] = ACTIONS(8911), + [aux_sym_visibility_token2] = ACTIONS(8911), + [aux_sym_elseif_fragment_token1] = ACTIONS(8911), + [aux_sym_else_fragment_token1] = ACTIONS(8911), + [aux_sym_select_statement_token1] = ACTIONS(8911), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8911), + [aux_sym__for_header_token1] = ACTIONS(8911), + [aux_sym_do_statement_token1] = ACTIONS(8911), + [aux_sym_do_condition_token1] = ACTIONS(8911), + [aux_sym_with_statement_token1] = ACTIONS(8911), + [aux_sym_exit_statement_token1] = ACTIONS(8911), + [sym_end_statement] = ACTIONS(8913), + [aux_sym_on_goto_statement_token1] = ACTIONS(8911), + [aux_sym_on_goto_statement_token2] = ACTIONS(8911), + [aux_sym_on_error_statement_token2] = ACTIONS(8911), + [sym__ambiguous_redim_statement] = ACTIONS(8913), + [aux_sym_erase_statement_token1] = ACTIONS(8911), + [aux_sym_open_statement_token1] = ACTIONS(8911), + [aux_sym_file_mode_token2] = ACTIONS(8911), + [aux_sym_file_access_token2] = ACTIONS(8911), + [aux_sym_file_lock_token2] = ACTIONS(8911), + [aux_sym_print_statement_token1] = ACTIONS(8911), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_DASH] = ACTIONS(8911), + [anon_sym_QMARK] = ACTIONS(8913), + [aux_sym_close_statement_token1] = ACTIONS(8911), + [aux_sym_put_statement_token1] = ACTIONS(8911), + [aux_sym_unlock_statement_token1] = ACTIONS(8911), + [aux_sym_seek_statement_token1] = ACTIONS(8911), + [sym_reset_statement] = ACTIONS(8911), + [aux_sym_raise_event_statement_token1] = ACTIONS(8911), + [sym_stop_statement] = ACTIONS(8911), + [sym_beep_statement] = ACTIONS(8911), + [aux_sym_unload_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token2] = ACTIONS(8911), + [aux_sym_def_type_statement_token3] = ACTIONS(8911), + [aux_sym_def_type_statement_token4] = ACTIONS(8911), + [aux_sym_def_type_statement_token5] = ACTIONS(8911), + [aux_sym_def_type_statement_token6] = ACTIONS(8911), + [aux_sym_def_type_statement_token7] = ACTIONS(8911), + [aux_sym_def_type_statement_token8] = ACTIONS(8911), + [aux_sym_def_type_statement_token9] = ACTIONS(8911), + [aux_sym_def_type_statement_token10] = ACTIONS(8911), + [aux_sym_def_type_statement_token11] = ACTIONS(8911), + [aux_sym_def_type_statement_token12] = ACTIONS(8911), + [aux_sym_def_type_statement_token13] = ACTIONS(8911), + [aux_sym_def_type_statement_token14] = ACTIONS(8911), + [aux_sym_call_statement_token1] = ACTIONS(8911), + [sym__ambiguous_call_statement] = ACTIONS(8911), + [aux_sym_addressof_expression_token1] = ACTIONS(8911), + [aux_sym_type_of_expression_token1] = ACTIONS(8911), + [aux_sym_unary_expression_token1] = ACTIONS(8911), + [sym_string_literal] = ACTIONS(8913), + [sym_number_literal] = ACTIONS(8913), + [aux_sym_boolean_literal_token1] = ACTIONS(8911), + [aux_sym_boolean_literal_token2] = ACTIONS(8911), + [sym_nothing_literal] = ACTIONS(8911), + [sym_null_literal] = ACTIONS(8911), + [sym_empty_literal] = ACTIONS(8911), + [sym_date_literal] = ACTIONS(8913), + [anon_sym_POUND] = ACTIONS(8911), + }, + [STATE(6617)] = { + [sym_identifier] = ACTIONS(9552), + [sym_newline] = ACTIONS(9554), + [anon_sym_COLON] = ACTIONS(9554), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9552), + [aux_sym_frm_property_statement_token1] = ACTIONS(9552), + [anon_sym_DOT] = ACTIONS(9552), + [anon_sym_BANG] = ACTIONS(9554), + [aux_sym__attribute_identifier_token1] = ACTIONS(9552), + [aux_sym_option_statement_token3] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9552), + [aux_sym_preprocessor_const_token1] = ACTIONS(9552), + [sym_static_modifier] = ACTIONS(9552), + [sym__dim_keyword] = ACTIONS(9552), + [sym__redim_keyword] = ACTIONS(9552), + [aux_sym_get_accessor_token1] = ACTIONS(9552), + [aux_sym_set_accessor_token1] = ACTIONS(9552), + [aux_sym_const_declaration_token1] = ACTIONS(9552), + [anon_sym_LPAREN] = ACTIONS(9554), + [aux_sym_as_type_clause_token2] = ACTIONS(9552), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9552), + [aux_sym_visibility_token1] = ACTIONS(9552), + [aux_sym_visibility_token2] = ACTIONS(9552), + [aux_sym_elseif_fragment_token1] = ACTIONS(9552), + [aux_sym_else_fragment_token1] = ACTIONS(9552), + [aux_sym_select_statement_token1] = ACTIONS(9552), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9552), + [aux_sym__for_header_token1] = ACTIONS(9552), + [aux_sym_do_statement_token1] = ACTIONS(9552), + [aux_sym_do_condition_token1] = ACTIONS(9552), + [aux_sym_with_statement_token1] = ACTIONS(9552), + [aux_sym_exit_statement_token1] = ACTIONS(9552), + [sym_end_statement] = ACTIONS(9554), + [aux_sym_on_goto_statement_token1] = ACTIONS(9552), + [aux_sym_on_goto_statement_token2] = ACTIONS(9552), + [aux_sym_on_error_statement_token2] = ACTIONS(9552), + [sym__ambiguous_redim_statement] = ACTIONS(9554), + [aux_sym_erase_statement_token1] = ACTIONS(9552), + [aux_sym_open_statement_token1] = ACTIONS(9552), + [aux_sym_file_mode_token2] = ACTIONS(9552), + [aux_sym_file_access_token2] = ACTIONS(9552), + [aux_sym_file_lock_token2] = ACTIONS(9552), + [aux_sym_print_statement_token1] = ACTIONS(9552), + [anon_sym_PLUS] = ACTIONS(9554), + [anon_sym_DASH] = ACTIONS(9552), + [anon_sym_QMARK] = ACTIONS(9554), + [aux_sym_close_statement_token1] = ACTIONS(9552), + [aux_sym_put_statement_token1] = ACTIONS(9552), + [aux_sym_unlock_statement_token1] = ACTIONS(9552), + [aux_sym_seek_statement_token1] = ACTIONS(9552), + [sym_reset_statement] = ACTIONS(9552), + [aux_sym_raise_event_statement_token1] = ACTIONS(9552), + [sym_stop_statement] = ACTIONS(9552), + [sym_beep_statement] = ACTIONS(9552), + [aux_sym_unload_statement_token1] = ACTIONS(9552), + [aux_sym_def_type_statement_token1] = ACTIONS(9552), + [aux_sym_def_type_statement_token2] = ACTIONS(9552), + [aux_sym_def_type_statement_token3] = ACTIONS(9552), + [aux_sym_def_type_statement_token4] = ACTIONS(9552), + [aux_sym_def_type_statement_token5] = ACTIONS(9552), + [aux_sym_def_type_statement_token6] = ACTIONS(9552), + [aux_sym_def_type_statement_token7] = ACTIONS(9552), + [aux_sym_def_type_statement_token8] = ACTIONS(9552), + [aux_sym_def_type_statement_token9] = ACTIONS(9552), + [aux_sym_def_type_statement_token10] = ACTIONS(9552), + [aux_sym_def_type_statement_token11] = ACTIONS(9552), + [aux_sym_def_type_statement_token12] = ACTIONS(9552), + [aux_sym_def_type_statement_token13] = ACTIONS(9552), + [aux_sym_def_type_statement_token14] = ACTIONS(9552), + [aux_sym_call_statement_token1] = ACTIONS(9552), + [sym__ambiguous_call_statement] = ACTIONS(9552), + [aux_sym_addressof_expression_token1] = ACTIONS(9552), + [aux_sym_type_of_expression_token1] = ACTIONS(9552), + [aux_sym_unary_expression_token1] = ACTIONS(9552), + [sym_string_literal] = ACTIONS(9554), + [sym_number_literal] = ACTIONS(9554), + [aux_sym_boolean_literal_token1] = ACTIONS(9552), + [aux_sym_boolean_literal_token2] = ACTIONS(9552), + [sym_nothing_literal] = ACTIONS(9552), + [sym_null_literal] = ACTIONS(9552), + [sym_empty_literal] = ACTIONS(9552), + [sym_date_literal] = ACTIONS(9554), + [anon_sym_POUND] = ACTIONS(9552), + }, + [STATE(6618)] = { + [sym_identifier] = ACTIONS(9556), + [sym_newline] = ACTIONS(9558), + [anon_sym_COLON] = ACTIONS(9558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9556), + [aux_sym_frm_property_statement_token1] = ACTIONS(9556), + [anon_sym_DOT] = ACTIONS(9556), + [anon_sym_BANG] = ACTIONS(9558), + [aux_sym__attribute_identifier_token1] = ACTIONS(9556), + [aux_sym_option_statement_token3] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9556), + [aux_sym_preprocessor_const_token1] = ACTIONS(9556), + [sym_static_modifier] = ACTIONS(9556), + [sym__dim_keyword] = ACTIONS(9556), + [sym__redim_keyword] = ACTIONS(9556), + [aux_sym_get_accessor_token1] = ACTIONS(9556), + [aux_sym_set_accessor_token1] = ACTIONS(9556), + [aux_sym_const_declaration_token1] = ACTIONS(9556), + [anon_sym_LPAREN] = ACTIONS(9558), + [aux_sym_as_type_clause_token2] = ACTIONS(9556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9556), + [aux_sym_visibility_token1] = ACTIONS(9556), + [aux_sym_visibility_token2] = ACTIONS(9556), + [aux_sym_elseif_fragment_token1] = ACTIONS(9556), + [aux_sym_else_fragment_token1] = ACTIONS(9556), + [aux_sym_select_statement_token1] = ACTIONS(9556), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9556), + [aux_sym__for_header_token1] = ACTIONS(9556), + [aux_sym_do_statement_token1] = ACTIONS(9556), + [aux_sym_do_condition_token1] = ACTIONS(9556), + [aux_sym_with_statement_token1] = ACTIONS(9556), + [aux_sym_exit_statement_token1] = ACTIONS(9556), + [sym_end_statement] = ACTIONS(9558), + [aux_sym_on_goto_statement_token1] = ACTIONS(9556), + [aux_sym_on_goto_statement_token2] = ACTIONS(9556), + [aux_sym_on_error_statement_token2] = ACTIONS(9556), + [sym__ambiguous_redim_statement] = ACTIONS(9558), + [aux_sym_erase_statement_token1] = ACTIONS(9556), + [aux_sym_open_statement_token1] = ACTIONS(9556), + [aux_sym_file_mode_token2] = ACTIONS(9556), + [aux_sym_file_access_token2] = ACTIONS(9556), + [aux_sym_file_lock_token2] = ACTIONS(9556), + [aux_sym_print_statement_token1] = ACTIONS(9556), + [anon_sym_PLUS] = ACTIONS(9558), + [anon_sym_DASH] = ACTIONS(9556), + [anon_sym_QMARK] = ACTIONS(9558), + [aux_sym_close_statement_token1] = ACTIONS(9556), + [aux_sym_put_statement_token1] = ACTIONS(9556), + [aux_sym_unlock_statement_token1] = ACTIONS(9556), + [aux_sym_seek_statement_token1] = ACTIONS(9556), + [sym_reset_statement] = ACTIONS(9556), + [aux_sym_raise_event_statement_token1] = ACTIONS(9556), + [sym_stop_statement] = ACTIONS(9556), + [sym_beep_statement] = ACTIONS(9556), + [aux_sym_unload_statement_token1] = ACTIONS(9556), + [aux_sym_def_type_statement_token1] = ACTIONS(9556), + [aux_sym_def_type_statement_token2] = ACTIONS(9556), + [aux_sym_def_type_statement_token3] = ACTIONS(9556), + [aux_sym_def_type_statement_token4] = ACTIONS(9556), + [aux_sym_def_type_statement_token5] = ACTIONS(9556), + [aux_sym_def_type_statement_token6] = ACTIONS(9556), + [aux_sym_def_type_statement_token7] = ACTIONS(9556), + [aux_sym_def_type_statement_token8] = ACTIONS(9556), + [aux_sym_def_type_statement_token9] = ACTIONS(9556), + [aux_sym_def_type_statement_token10] = ACTIONS(9556), + [aux_sym_def_type_statement_token11] = ACTIONS(9556), + [aux_sym_def_type_statement_token12] = ACTIONS(9556), + [aux_sym_def_type_statement_token13] = ACTIONS(9556), + [aux_sym_def_type_statement_token14] = ACTIONS(9556), + [aux_sym_call_statement_token1] = ACTIONS(9556), + [sym__ambiguous_call_statement] = ACTIONS(9556), + [aux_sym_addressof_expression_token1] = ACTIONS(9556), + [aux_sym_type_of_expression_token1] = ACTIONS(9556), + [aux_sym_unary_expression_token1] = ACTIONS(9556), + [sym_string_literal] = ACTIONS(9558), + [sym_number_literal] = ACTIONS(9558), + [aux_sym_boolean_literal_token1] = ACTIONS(9556), + [aux_sym_boolean_literal_token2] = ACTIONS(9556), + [sym_nothing_literal] = ACTIONS(9556), + [sym_null_literal] = ACTIONS(9556), + [sym_empty_literal] = ACTIONS(9556), + [sym_date_literal] = ACTIONS(9558), + [anon_sym_POUND] = ACTIONS(9556), + }, + [STATE(6619)] = { + [sym_identifier] = ACTIONS(9560), + [sym_newline] = ACTIONS(9562), + [anon_sym_COLON] = ACTIONS(9562), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9560), + [aux_sym_frm_property_statement_token1] = ACTIONS(9560), + [anon_sym_DOT] = ACTIONS(9560), + [anon_sym_BANG] = ACTIONS(9562), + [aux_sym__attribute_identifier_token1] = ACTIONS(9560), + [aux_sym_option_statement_token3] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9560), + [aux_sym_preprocessor_const_token1] = ACTIONS(9560), + [sym_static_modifier] = ACTIONS(9560), + [sym__dim_keyword] = ACTIONS(9560), + [sym__redim_keyword] = ACTIONS(9560), + [aux_sym_get_accessor_token1] = ACTIONS(9560), + [aux_sym_set_accessor_token1] = ACTIONS(9560), + [aux_sym_const_declaration_token1] = ACTIONS(9560), + [anon_sym_LPAREN] = ACTIONS(9562), + [aux_sym_as_type_clause_token2] = ACTIONS(9560), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9560), + [aux_sym_visibility_token1] = ACTIONS(9560), + [aux_sym_visibility_token2] = ACTIONS(9560), + [aux_sym_elseif_fragment_token1] = ACTIONS(9560), + [aux_sym_else_fragment_token1] = ACTIONS(9560), + [aux_sym_select_statement_token1] = ACTIONS(9560), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9560), + [aux_sym__for_header_token1] = ACTIONS(9560), + [aux_sym_do_statement_token1] = ACTIONS(9560), + [aux_sym_do_condition_token1] = ACTIONS(9560), + [aux_sym_with_statement_token1] = ACTIONS(9560), + [aux_sym_exit_statement_token1] = ACTIONS(9560), + [sym_end_statement] = ACTIONS(9562), + [aux_sym_on_goto_statement_token1] = ACTIONS(9560), + [aux_sym_on_goto_statement_token2] = ACTIONS(9560), + [aux_sym_on_error_statement_token2] = ACTIONS(9560), + [sym__ambiguous_redim_statement] = ACTIONS(9562), + [aux_sym_erase_statement_token1] = ACTIONS(9560), + [aux_sym_open_statement_token1] = ACTIONS(9560), + [aux_sym_file_mode_token2] = ACTIONS(9560), + [aux_sym_file_access_token2] = ACTIONS(9560), + [aux_sym_file_lock_token2] = ACTIONS(9560), + [aux_sym_print_statement_token1] = ACTIONS(9560), + [anon_sym_PLUS] = ACTIONS(9562), + [anon_sym_DASH] = ACTIONS(9560), + [anon_sym_QMARK] = ACTIONS(9562), + [aux_sym_close_statement_token1] = ACTIONS(9560), + [aux_sym_put_statement_token1] = ACTIONS(9560), + [aux_sym_unlock_statement_token1] = ACTIONS(9560), + [aux_sym_seek_statement_token1] = ACTIONS(9560), + [sym_reset_statement] = ACTIONS(9560), + [aux_sym_raise_event_statement_token1] = ACTIONS(9560), + [sym_stop_statement] = ACTIONS(9560), + [sym_beep_statement] = ACTIONS(9560), + [aux_sym_unload_statement_token1] = ACTIONS(9560), + [aux_sym_def_type_statement_token1] = ACTIONS(9560), + [aux_sym_def_type_statement_token2] = ACTIONS(9560), + [aux_sym_def_type_statement_token3] = ACTIONS(9560), + [aux_sym_def_type_statement_token4] = ACTIONS(9560), + [aux_sym_def_type_statement_token5] = ACTIONS(9560), + [aux_sym_def_type_statement_token6] = ACTIONS(9560), + [aux_sym_def_type_statement_token7] = ACTIONS(9560), + [aux_sym_def_type_statement_token8] = ACTIONS(9560), + [aux_sym_def_type_statement_token9] = ACTIONS(9560), + [aux_sym_def_type_statement_token10] = ACTIONS(9560), + [aux_sym_def_type_statement_token11] = ACTIONS(9560), + [aux_sym_def_type_statement_token12] = ACTIONS(9560), + [aux_sym_def_type_statement_token13] = ACTIONS(9560), + [aux_sym_def_type_statement_token14] = ACTIONS(9560), + [aux_sym_call_statement_token1] = ACTIONS(9560), + [sym__ambiguous_call_statement] = ACTIONS(9560), + [aux_sym_addressof_expression_token1] = ACTIONS(9560), + [aux_sym_type_of_expression_token1] = ACTIONS(9560), + [aux_sym_unary_expression_token1] = ACTIONS(9560), + [sym_string_literal] = ACTIONS(9562), + [sym_number_literal] = ACTIONS(9562), + [aux_sym_boolean_literal_token1] = ACTIONS(9560), + [aux_sym_boolean_literal_token2] = ACTIONS(9560), + [sym_nothing_literal] = ACTIONS(9560), + [sym_null_literal] = ACTIONS(9560), + [sym_empty_literal] = ACTIONS(9560), + [sym_date_literal] = ACTIONS(9562), + [anon_sym_POUND] = ACTIONS(9560), + }, + [STATE(6620)] = { + [sym_identifier] = ACTIONS(6629), + [sym_newline] = ACTIONS(6631), + [anon_sym_COLON] = ACTIONS(6631), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6629), + [aux_sym_frm_property_statement_token1] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6631), + [aux_sym__attribute_identifier_token1] = ACTIONS(6629), + [aux_sym_option_statement_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6629), + [aux_sym_preprocessor_const_token1] = ACTIONS(6629), + [sym_static_modifier] = ACTIONS(6629), + [sym__dim_keyword] = ACTIONS(6629), + [sym__redim_keyword] = ACTIONS(6629), + [aux_sym_get_accessor_token1] = ACTIONS(6629), + [aux_sym_set_accessor_token1] = ACTIONS(6629), + [aux_sym_const_declaration_token1] = ACTIONS(6629), + [anon_sym_LPAREN] = ACTIONS(6631), + [aux_sym_as_type_clause_token2] = ACTIONS(6629), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6629), + [aux_sym_visibility_token1] = ACTIONS(6629), + [aux_sym_visibility_token2] = ACTIONS(6629), + [aux_sym_elseif_fragment_token1] = ACTIONS(6629), + [aux_sym_else_fragment_token1] = ACTIONS(6629), + [aux_sym_select_statement_token1] = ACTIONS(6629), + [aux_sym_select_statement_token2] = ACTIONS(6629), + [aux_sym__for_header_token1] = ACTIONS(6629), + [aux_sym_do_statement_token1] = ACTIONS(6629), + [aux_sym_do_condition_token1] = ACTIONS(6629), + [aux_sym_with_statement_token1] = ACTIONS(6629), + [aux_sym_exit_statement_token1] = ACTIONS(6629), + [sym_end_statement] = ACTIONS(6631), + [aux_sym_on_goto_statement_token1] = ACTIONS(6629), + [aux_sym_on_goto_statement_token2] = ACTIONS(6629), + [aux_sym_on_error_statement_token2] = ACTIONS(6629), + [sym__ambiguous_redim_statement] = ACTIONS(6631), + [aux_sym_erase_statement_token1] = ACTIONS(6629), + [aux_sym_open_statement_token1] = ACTIONS(6629), + [aux_sym_file_mode_token2] = ACTIONS(6629), + [aux_sym_file_access_token2] = ACTIONS(6629), + [aux_sym_file_lock_token2] = ACTIONS(6629), + [aux_sym_print_statement_token1] = ACTIONS(6629), + [anon_sym_PLUS] = ACTIONS(6631), + [anon_sym_DASH] = ACTIONS(6629), + [anon_sym_QMARK] = ACTIONS(6631), + [aux_sym_close_statement_token1] = ACTIONS(6629), + [aux_sym_put_statement_token1] = ACTIONS(6629), + [aux_sym_unlock_statement_token1] = ACTIONS(6629), + [aux_sym_seek_statement_token1] = ACTIONS(6629), + [sym_reset_statement] = ACTIONS(6629), + [aux_sym_raise_event_statement_token1] = ACTIONS(6629), + [sym_stop_statement] = ACTIONS(6629), + [sym_beep_statement] = ACTIONS(6629), + [aux_sym_unload_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token2] = ACTIONS(6629), + [aux_sym_def_type_statement_token3] = ACTIONS(6629), + [aux_sym_def_type_statement_token4] = ACTIONS(6629), + [aux_sym_def_type_statement_token5] = ACTIONS(6629), + [aux_sym_def_type_statement_token6] = ACTIONS(6629), + [aux_sym_def_type_statement_token7] = ACTIONS(6629), + [aux_sym_def_type_statement_token8] = ACTIONS(6629), + [aux_sym_def_type_statement_token9] = ACTIONS(6629), + [aux_sym_def_type_statement_token10] = ACTIONS(6629), + [aux_sym_def_type_statement_token11] = ACTIONS(6629), + [aux_sym_def_type_statement_token12] = ACTIONS(6629), + [aux_sym_def_type_statement_token13] = ACTIONS(6629), + [aux_sym_def_type_statement_token14] = ACTIONS(6629), + [aux_sym_call_statement_token1] = ACTIONS(6629), + [sym__ambiguous_call_statement] = ACTIONS(6629), + [aux_sym_addressof_expression_token1] = ACTIONS(6629), + [aux_sym_type_of_expression_token1] = ACTIONS(6629), + [aux_sym_unary_expression_token1] = ACTIONS(6629), + [sym_string_literal] = ACTIONS(6631), + [sym_number_literal] = ACTIONS(6631), + [aux_sym_boolean_literal_token1] = ACTIONS(6629), + [aux_sym_boolean_literal_token2] = ACTIONS(6629), + [sym_nothing_literal] = ACTIONS(6629), + [sym_null_literal] = ACTIONS(6629), + [sym_empty_literal] = ACTIONS(6629), + [sym_date_literal] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6629), + }, + [STATE(6621)] = { + [sym_identifier] = ACTIONS(9564), + [sym_newline] = ACTIONS(9566), + [anon_sym_COLON] = ACTIONS(9566), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9564), + [aux_sym_frm_property_statement_token1] = ACTIONS(9564), + [anon_sym_DOT] = ACTIONS(9564), + [anon_sym_BANG] = ACTIONS(9566), + [aux_sym__attribute_identifier_token1] = ACTIONS(9564), + [aux_sym_option_statement_token3] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9564), + [aux_sym_preprocessor_const_token1] = ACTIONS(9564), + [sym_static_modifier] = ACTIONS(9564), + [sym__dim_keyword] = ACTIONS(9564), + [sym__redim_keyword] = ACTIONS(9564), + [aux_sym_get_accessor_token1] = ACTIONS(9564), + [aux_sym_set_accessor_token1] = ACTIONS(9564), + [aux_sym_const_declaration_token1] = ACTIONS(9564), + [anon_sym_LPAREN] = ACTIONS(9566), + [aux_sym_as_type_clause_token2] = ACTIONS(9564), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9564), + [aux_sym_visibility_token1] = ACTIONS(9564), + [aux_sym_visibility_token2] = ACTIONS(9564), + [aux_sym_elseif_fragment_token1] = ACTIONS(9564), + [aux_sym_else_fragment_token1] = ACTIONS(9564), + [aux_sym_select_statement_token1] = ACTIONS(9564), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9564), + [aux_sym__for_header_token1] = ACTIONS(9564), + [aux_sym_do_statement_token1] = ACTIONS(9564), + [aux_sym_do_condition_token1] = ACTIONS(9564), + [aux_sym_with_statement_token1] = ACTIONS(9564), + [aux_sym_exit_statement_token1] = ACTIONS(9564), + [sym_end_statement] = ACTIONS(9566), + [aux_sym_on_goto_statement_token1] = ACTIONS(9564), + [aux_sym_on_goto_statement_token2] = ACTIONS(9564), + [aux_sym_on_error_statement_token2] = ACTIONS(9564), + [sym__ambiguous_redim_statement] = ACTIONS(9566), + [aux_sym_erase_statement_token1] = ACTIONS(9564), + [aux_sym_open_statement_token1] = ACTIONS(9564), + [aux_sym_file_mode_token2] = ACTIONS(9564), + [aux_sym_file_access_token2] = ACTIONS(9564), + [aux_sym_file_lock_token2] = ACTIONS(9564), + [aux_sym_print_statement_token1] = ACTIONS(9564), + [anon_sym_PLUS] = ACTIONS(9566), + [anon_sym_DASH] = ACTIONS(9564), + [anon_sym_QMARK] = ACTIONS(9566), + [aux_sym_close_statement_token1] = ACTIONS(9564), + [aux_sym_put_statement_token1] = ACTIONS(9564), + [aux_sym_unlock_statement_token1] = ACTIONS(9564), + [aux_sym_seek_statement_token1] = ACTIONS(9564), + [sym_reset_statement] = ACTIONS(9564), + [aux_sym_raise_event_statement_token1] = ACTIONS(9564), + [sym_stop_statement] = ACTIONS(9564), + [sym_beep_statement] = ACTIONS(9564), + [aux_sym_unload_statement_token1] = ACTIONS(9564), + [aux_sym_def_type_statement_token1] = ACTIONS(9564), + [aux_sym_def_type_statement_token2] = ACTIONS(9564), + [aux_sym_def_type_statement_token3] = ACTIONS(9564), + [aux_sym_def_type_statement_token4] = ACTIONS(9564), + [aux_sym_def_type_statement_token5] = ACTIONS(9564), + [aux_sym_def_type_statement_token6] = ACTIONS(9564), + [aux_sym_def_type_statement_token7] = ACTIONS(9564), + [aux_sym_def_type_statement_token8] = ACTIONS(9564), + [aux_sym_def_type_statement_token9] = ACTIONS(9564), + [aux_sym_def_type_statement_token10] = ACTIONS(9564), + [aux_sym_def_type_statement_token11] = ACTIONS(9564), + [aux_sym_def_type_statement_token12] = ACTIONS(9564), + [aux_sym_def_type_statement_token13] = ACTIONS(9564), + [aux_sym_def_type_statement_token14] = ACTIONS(9564), + [aux_sym_call_statement_token1] = ACTIONS(9564), + [sym__ambiguous_call_statement] = ACTIONS(9564), + [aux_sym_addressof_expression_token1] = ACTIONS(9564), + [aux_sym_type_of_expression_token1] = ACTIONS(9564), + [aux_sym_unary_expression_token1] = ACTIONS(9564), + [sym_string_literal] = ACTIONS(9566), + [sym_number_literal] = ACTIONS(9566), + [aux_sym_boolean_literal_token1] = ACTIONS(9564), + [aux_sym_boolean_literal_token2] = ACTIONS(9564), + [sym_nothing_literal] = ACTIONS(9564), + [sym_null_literal] = ACTIONS(9564), + [sym_empty_literal] = ACTIONS(9564), + [sym_date_literal] = ACTIONS(9566), + [anon_sym_POUND] = ACTIONS(9564), + }, + [STATE(6622)] = { + [sym_identifier] = ACTIONS(9568), + [sym_newline] = ACTIONS(9570), + [anon_sym_COLON] = ACTIONS(9570), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9568), + [aux_sym_frm_property_statement_token1] = ACTIONS(9568), + [anon_sym_DOT] = ACTIONS(9568), + [anon_sym_BANG] = ACTIONS(9570), + [aux_sym__attribute_identifier_token1] = ACTIONS(9568), + [aux_sym_option_statement_token3] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9568), + [aux_sym_preprocessor_const_token1] = ACTIONS(9568), + [sym_static_modifier] = ACTIONS(9568), + [sym__dim_keyword] = ACTIONS(9568), + [sym__redim_keyword] = ACTIONS(9568), + [aux_sym_get_accessor_token1] = ACTIONS(9568), + [aux_sym_set_accessor_token1] = ACTIONS(9568), + [aux_sym_const_declaration_token1] = ACTIONS(9568), + [anon_sym_LPAREN] = ACTIONS(9570), + [aux_sym_as_type_clause_token2] = ACTIONS(9568), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9568), + [aux_sym_visibility_token1] = ACTIONS(9568), + [aux_sym_visibility_token2] = ACTIONS(9568), + [aux_sym_elseif_fragment_token1] = ACTIONS(9568), + [aux_sym_else_fragment_token1] = ACTIONS(9568), + [aux_sym_select_statement_token1] = ACTIONS(9568), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9568), + [aux_sym__for_header_token1] = ACTIONS(9568), + [aux_sym_do_statement_token1] = ACTIONS(9568), + [aux_sym_do_condition_token1] = ACTIONS(9568), + [aux_sym_with_statement_token1] = ACTIONS(9568), + [aux_sym_exit_statement_token1] = ACTIONS(9568), + [sym_end_statement] = ACTIONS(9570), + [aux_sym_on_goto_statement_token1] = ACTIONS(9568), + [aux_sym_on_goto_statement_token2] = ACTIONS(9568), + [aux_sym_on_error_statement_token2] = ACTIONS(9568), + [sym__ambiguous_redim_statement] = ACTIONS(9570), + [aux_sym_erase_statement_token1] = ACTIONS(9568), + [aux_sym_open_statement_token1] = ACTIONS(9568), + [aux_sym_file_mode_token2] = ACTIONS(9568), + [aux_sym_file_access_token2] = ACTIONS(9568), + [aux_sym_file_lock_token2] = ACTIONS(9568), + [aux_sym_print_statement_token1] = ACTIONS(9568), + [anon_sym_PLUS] = ACTIONS(9570), + [anon_sym_DASH] = ACTIONS(9568), + [anon_sym_QMARK] = ACTIONS(9570), + [aux_sym_close_statement_token1] = ACTIONS(9568), + [aux_sym_put_statement_token1] = ACTIONS(9568), + [aux_sym_unlock_statement_token1] = ACTIONS(9568), + [aux_sym_seek_statement_token1] = ACTIONS(9568), + [sym_reset_statement] = ACTIONS(9568), + [aux_sym_raise_event_statement_token1] = ACTIONS(9568), + [sym_stop_statement] = ACTIONS(9568), + [sym_beep_statement] = ACTIONS(9568), + [aux_sym_unload_statement_token1] = ACTIONS(9568), + [aux_sym_def_type_statement_token1] = ACTIONS(9568), + [aux_sym_def_type_statement_token2] = ACTIONS(9568), + [aux_sym_def_type_statement_token3] = ACTIONS(9568), + [aux_sym_def_type_statement_token4] = ACTIONS(9568), + [aux_sym_def_type_statement_token5] = ACTIONS(9568), + [aux_sym_def_type_statement_token6] = ACTIONS(9568), + [aux_sym_def_type_statement_token7] = ACTIONS(9568), + [aux_sym_def_type_statement_token8] = ACTIONS(9568), + [aux_sym_def_type_statement_token9] = ACTIONS(9568), + [aux_sym_def_type_statement_token10] = ACTIONS(9568), + [aux_sym_def_type_statement_token11] = ACTIONS(9568), + [aux_sym_def_type_statement_token12] = ACTIONS(9568), + [aux_sym_def_type_statement_token13] = ACTIONS(9568), + [aux_sym_def_type_statement_token14] = ACTIONS(9568), + [aux_sym_call_statement_token1] = ACTIONS(9568), + [sym__ambiguous_call_statement] = ACTIONS(9568), + [aux_sym_addressof_expression_token1] = ACTIONS(9568), + [aux_sym_type_of_expression_token1] = ACTIONS(9568), + [aux_sym_unary_expression_token1] = ACTIONS(9568), + [sym_string_literal] = ACTIONS(9570), + [sym_number_literal] = ACTIONS(9570), + [aux_sym_boolean_literal_token1] = ACTIONS(9568), + [aux_sym_boolean_literal_token2] = ACTIONS(9568), + [sym_nothing_literal] = ACTIONS(9568), + [sym_null_literal] = ACTIONS(9568), + [sym_empty_literal] = ACTIONS(9568), + [sym_date_literal] = ACTIONS(9570), + [anon_sym_POUND] = ACTIONS(9568), + }, + [STATE(6623)] = { + [sym_identifier] = ACTIONS(9575), + [sym_newline] = ACTIONS(9577), + [anon_sym_COLON] = ACTIONS(9577), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9575), + [aux_sym_frm_property_statement_token1] = ACTIONS(9575), + [anon_sym_DOT] = ACTIONS(9575), + [anon_sym_BANG] = ACTIONS(9577), + [aux_sym__attribute_identifier_token1] = ACTIONS(9575), + [aux_sym_option_statement_token3] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9575), + [aux_sym_preprocessor_const_token1] = ACTIONS(9575), + [sym_static_modifier] = ACTIONS(9575), + [sym__dim_keyword] = ACTIONS(9575), + [sym__redim_keyword] = ACTIONS(9575), + [aux_sym_get_accessor_token1] = ACTIONS(9575), + [aux_sym_set_accessor_token1] = ACTIONS(9575), + [aux_sym_const_declaration_token1] = ACTIONS(9575), + [anon_sym_LPAREN] = ACTIONS(9577), + [aux_sym_as_type_clause_token2] = ACTIONS(9575), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9575), + [aux_sym_visibility_token1] = ACTIONS(9575), + [aux_sym_visibility_token2] = ACTIONS(9575), + [aux_sym_elseif_fragment_token1] = ACTIONS(9575), + [aux_sym_else_fragment_token1] = ACTIONS(9575), + [aux_sym_select_statement_token1] = ACTIONS(9575), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9575), + [aux_sym__for_header_token1] = ACTIONS(9575), + [aux_sym_do_statement_token1] = ACTIONS(9575), + [aux_sym_do_condition_token1] = ACTIONS(9575), + [aux_sym_with_statement_token1] = ACTIONS(9575), + [aux_sym_exit_statement_token1] = ACTIONS(9575), + [sym_end_statement] = ACTIONS(9577), + [aux_sym_on_goto_statement_token1] = ACTIONS(9575), + [aux_sym_on_goto_statement_token2] = ACTIONS(9575), + [aux_sym_on_error_statement_token2] = ACTIONS(9575), + [sym__ambiguous_redim_statement] = ACTIONS(9577), + [aux_sym_erase_statement_token1] = ACTIONS(9575), + [aux_sym_open_statement_token1] = ACTIONS(9575), + [aux_sym_file_mode_token2] = ACTIONS(9575), + [aux_sym_file_access_token2] = ACTIONS(9575), + [aux_sym_file_lock_token2] = ACTIONS(9575), + [aux_sym_print_statement_token1] = ACTIONS(9575), + [anon_sym_PLUS] = ACTIONS(9577), + [anon_sym_DASH] = ACTIONS(9575), + [anon_sym_QMARK] = ACTIONS(9577), + [aux_sym_close_statement_token1] = ACTIONS(9575), + [aux_sym_put_statement_token1] = ACTIONS(9575), + [aux_sym_unlock_statement_token1] = ACTIONS(9575), + [aux_sym_seek_statement_token1] = ACTIONS(9575), + [sym_reset_statement] = ACTIONS(9575), + [aux_sym_raise_event_statement_token1] = ACTIONS(9575), + [sym_stop_statement] = ACTIONS(9575), + [sym_beep_statement] = ACTIONS(9575), + [aux_sym_unload_statement_token1] = ACTIONS(9575), + [aux_sym_def_type_statement_token1] = ACTIONS(9575), + [aux_sym_def_type_statement_token2] = ACTIONS(9575), + [aux_sym_def_type_statement_token3] = ACTIONS(9575), + [aux_sym_def_type_statement_token4] = ACTIONS(9575), + [aux_sym_def_type_statement_token5] = ACTIONS(9575), + [aux_sym_def_type_statement_token6] = ACTIONS(9575), + [aux_sym_def_type_statement_token7] = ACTIONS(9575), + [aux_sym_def_type_statement_token8] = ACTIONS(9575), + [aux_sym_def_type_statement_token9] = ACTIONS(9575), + [aux_sym_def_type_statement_token10] = ACTIONS(9575), + [aux_sym_def_type_statement_token11] = ACTIONS(9575), + [aux_sym_def_type_statement_token12] = ACTIONS(9575), + [aux_sym_def_type_statement_token13] = ACTIONS(9575), + [aux_sym_def_type_statement_token14] = ACTIONS(9575), + [aux_sym_call_statement_token1] = ACTIONS(9575), + [sym__ambiguous_call_statement] = ACTIONS(9575), + [aux_sym_addressof_expression_token1] = ACTIONS(9575), + [aux_sym_type_of_expression_token1] = ACTIONS(9575), + [aux_sym_unary_expression_token1] = ACTIONS(9575), + [sym_string_literal] = ACTIONS(9577), + [sym_number_literal] = ACTIONS(9577), + [aux_sym_boolean_literal_token1] = ACTIONS(9575), + [aux_sym_boolean_literal_token2] = ACTIONS(9575), + [sym_nothing_literal] = ACTIONS(9575), + [sym_null_literal] = ACTIONS(9575), + [sym_empty_literal] = ACTIONS(9575), + [sym_date_literal] = ACTIONS(9577), + [anon_sym_POUND] = ACTIONS(9575), + }, + [STATE(6624)] = { + [sym_identifier] = ACTIONS(9582), + [sym_newline] = ACTIONS(9584), + [anon_sym_COLON] = ACTIONS(9584), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9582), + [aux_sym_frm_property_statement_token1] = ACTIONS(9582), + [anon_sym_DOT] = ACTIONS(9582), + [anon_sym_BANG] = ACTIONS(9584), + [aux_sym__attribute_identifier_token1] = ACTIONS(9582), + [aux_sym_option_statement_token3] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9582), + [aux_sym_preprocessor_const_token1] = ACTIONS(9582), + [sym_static_modifier] = ACTIONS(9582), + [sym__dim_keyword] = ACTIONS(9582), + [sym__redim_keyword] = ACTIONS(9582), + [aux_sym_get_accessor_token1] = ACTIONS(9582), + [aux_sym_set_accessor_token1] = ACTIONS(9582), + [aux_sym_const_declaration_token1] = ACTIONS(9582), + [anon_sym_LPAREN] = ACTIONS(9584), + [aux_sym_as_type_clause_token2] = ACTIONS(9582), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9582), + [aux_sym_visibility_token1] = ACTIONS(9582), + [aux_sym_visibility_token2] = ACTIONS(9582), + [aux_sym_elseif_fragment_token1] = ACTIONS(9582), + [aux_sym_else_fragment_token1] = ACTIONS(9582), + [aux_sym_select_statement_token1] = ACTIONS(9582), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9582), + [aux_sym__for_header_token1] = ACTIONS(9582), + [aux_sym_do_statement_token1] = ACTIONS(9582), + [aux_sym_do_condition_token1] = ACTIONS(9582), + [aux_sym_with_statement_token1] = ACTIONS(9582), + [aux_sym_exit_statement_token1] = ACTIONS(9582), + [sym_end_statement] = ACTIONS(9584), + [aux_sym_on_goto_statement_token1] = ACTIONS(9582), + [aux_sym_on_goto_statement_token2] = ACTIONS(9582), + [aux_sym_on_error_statement_token2] = ACTIONS(9582), + [sym__ambiguous_redim_statement] = ACTIONS(9584), + [aux_sym_erase_statement_token1] = ACTIONS(9582), + [aux_sym_open_statement_token1] = ACTIONS(9582), + [aux_sym_file_mode_token2] = ACTIONS(9582), + [aux_sym_file_access_token2] = ACTIONS(9582), + [aux_sym_file_lock_token2] = ACTIONS(9582), + [aux_sym_print_statement_token1] = ACTIONS(9582), + [anon_sym_PLUS] = ACTIONS(9584), + [anon_sym_DASH] = ACTIONS(9582), + [anon_sym_QMARK] = ACTIONS(9584), + [aux_sym_close_statement_token1] = ACTIONS(9582), + [aux_sym_put_statement_token1] = ACTIONS(9582), + [aux_sym_unlock_statement_token1] = ACTIONS(9582), + [aux_sym_seek_statement_token1] = ACTIONS(9582), + [sym_reset_statement] = ACTIONS(9582), + [aux_sym_raise_event_statement_token1] = ACTIONS(9582), + [sym_stop_statement] = ACTIONS(9582), + [sym_beep_statement] = ACTIONS(9582), + [aux_sym_unload_statement_token1] = ACTIONS(9582), + [aux_sym_def_type_statement_token1] = ACTIONS(9582), + [aux_sym_def_type_statement_token2] = ACTIONS(9582), + [aux_sym_def_type_statement_token3] = ACTIONS(9582), + [aux_sym_def_type_statement_token4] = ACTIONS(9582), + [aux_sym_def_type_statement_token5] = ACTIONS(9582), + [aux_sym_def_type_statement_token6] = ACTIONS(9582), + [aux_sym_def_type_statement_token7] = ACTIONS(9582), + [aux_sym_def_type_statement_token8] = ACTIONS(9582), + [aux_sym_def_type_statement_token9] = ACTIONS(9582), + [aux_sym_def_type_statement_token10] = ACTIONS(9582), + [aux_sym_def_type_statement_token11] = ACTIONS(9582), + [aux_sym_def_type_statement_token12] = ACTIONS(9582), + [aux_sym_def_type_statement_token13] = ACTIONS(9582), + [aux_sym_def_type_statement_token14] = ACTIONS(9582), + [aux_sym_call_statement_token1] = ACTIONS(9582), + [sym__ambiguous_call_statement] = ACTIONS(9582), + [aux_sym_addressof_expression_token1] = ACTIONS(9582), + [aux_sym_type_of_expression_token1] = ACTIONS(9582), + [aux_sym_unary_expression_token1] = ACTIONS(9582), + [sym_string_literal] = ACTIONS(9584), + [sym_number_literal] = ACTIONS(9584), + [aux_sym_boolean_literal_token1] = ACTIONS(9582), + [aux_sym_boolean_literal_token2] = ACTIONS(9582), + [sym_nothing_literal] = ACTIONS(9582), + [sym_null_literal] = ACTIONS(9582), + [sym_empty_literal] = ACTIONS(9582), + [sym_date_literal] = ACTIONS(9584), + [anon_sym_POUND] = ACTIONS(9582), + }, + [STATE(6625)] = { + [sym_identifier] = ACTIONS(9586), + [sym_newline] = ACTIONS(9588), + [anon_sym_COLON] = ACTIONS(9588), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9586), + [aux_sym_frm_property_statement_token1] = ACTIONS(9586), + [anon_sym_DOT] = ACTIONS(9586), + [anon_sym_BANG] = ACTIONS(9588), + [aux_sym__attribute_identifier_token1] = ACTIONS(9586), + [aux_sym_option_statement_token3] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9586), + [aux_sym_preprocessor_const_token1] = ACTIONS(9586), + [sym_static_modifier] = ACTIONS(9586), + [sym__dim_keyword] = ACTIONS(9586), + [sym__redim_keyword] = ACTIONS(9586), + [aux_sym_get_accessor_token1] = ACTIONS(9586), + [aux_sym_set_accessor_token1] = ACTIONS(9586), + [aux_sym_const_declaration_token1] = ACTIONS(9586), + [anon_sym_LPAREN] = ACTIONS(9588), + [aux_sym_as_type_clause_token2] = ACTIONS(9586), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9586), + [aux_sym_visibility_token1] = ACTIONS(9586), + [aux_sym_visibility_token2] = ACTIONS(9586), + [aux_sym_elseif_fragment_token1] = ACTIONS(9586), + [aux_sym_else_fragment_token1] = ACTIONS(9586), + [aux_sym_select_statement_token1] = ACTIONS(9586), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9586), + [aux_sym__for_header_token1] = ACTIONS(9586), + [aux_sym_do_statement_token1] = ACTIONS(9586), + [aux_sym_do_condition_token1] = ACTIONS(9586), + [aux_sym_with_statement_token1] = ACTIONS(9586), + [aux_sym_exit_statement_token1] = ACTIONS(9586), + [sym_end_statement] = ACTIONS(9588), + [aux_sym_on_goto_statement_token1] = ACTIONS(9586), + [aux_sym_on_goto_statement_token2] = ACTIONS(9586), + [aux_sym_on_error_statement_token2] = ACTIONS(9586), + [sym__ambiguous_redim_statement] = ACTIONS(9588), + [aux_sym_erase_statement_token1] = ACTIONS(9586), + [aux_sym_open_statement_token1] = ACTIONS(9586), + [aux_sym_file_mode_token2] = ACTIONS(9586), + [aux_sym_file_access_token2] = ACTIONS(9586), + [aux_sym_file_lock_token2] = ACTIONS(9586), + [aux_sym_print_statement_token1] = ACTIONS(9586), + [anon_sym_PLUS] = ACTIONS(9588), + [anon_sym_DASH] = ACTIONS(9586), + [anon_sym_QMARK] = ACTIONS(9588), + [aux_sym_close_statement_token1] = ACTIONS(9586), + [aux_sym_put_statement_token1] = ACTIONS(9586), + [aux_sym_unlock_statement_token1] = ACTIONS(9586), + [aux_sym_seek_statement_token1] = ACTIONS(9586), + [sym_reset_statement] = ACTIONS(9586), + [aux_sym_raise_event_statement_token1] = ACTIONS(9586), + [sym_stop_statement] = ACTIONS(9586), + [sym_beep_statement] = ACTIONS(9586), + [aux_sym_unload_statement_token1] = ACTIONS(9586), + [aux_sym_def_type_statement_token1] = ACTIONS(9586), + [aux_sym_def_type_statement_token2] = ACTIONS(9586), + [aux_sym_def_type_statement_token3] = ACTIONS(9586), + [aux_sym_def_type_statement_token4] = ACTIONS(9586), + [aux_sym_def_type_statement_token5] = ACTIONS(9586), + [aux_sym_def_type_statement_token6] = ACTIONS(9586), + [aux_sym_def_type_statement_token7] = ACTIONS(9586), + [aux_sym_def_type_statement_token8] = ACTIONS(9586), + [aux_sym_def_type_statement_token9] = ACTIONS(9586), + [aux_sym_def_type_statement_token10] = ACTIONS(9586), + [aux_sym_def_type_statement_token11] = ACTIONS(9586), + [aux_sym_def_type_statement_token12] = ACTIONS(9586), + [aux_sym_def_type_statement_token13] = ACTIONS(9586), + [aux_sym_def_type_statement_token14] = ACTIONS(9586), + [aux_sym_call_statement_token1] = ACTIONS(9586), + [sym__ambiguous_call_statement] = ACTIONS(9586), + [aux_sym_addressof_expression_token1] = ACTIONS(9586), + [aux_sym_type_of_expression_token1] = ACTIONS(9586), + [aux_sym_unary_expression_token1] = ACTIONS(9586), + [sym_string_literal] = ACTIONS(9588), + [sym_number_literal] = ACTIONS(9588), + [aux_sym_boolean_literal_token1] = ACTIONS(9586), + [aux_sym_boolean_literal_token2] = ACTIONS(9586), + [sym_nothing_literal] = ACTIONS(9586), + [sym_null_literal] = ACTIONS(9586), + [sym_empty_literal] = ACTIONS(9586), + [sym_date_literal] = ACTIONS(9588), + [anon_sym_POUND] = ACTIONS(9586), + }, + [STATE(6626)] = { + [sym_identifier] = ACTIONS(9590), + [sym_newline] = ACTIONS(9592), + [anon_sym_COLON] = ACTIONS(9592), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9590), + [aux_sym_frm_property_statement_token1] = ACTIONS(9590), + [anon_sym_DOT] = ACTIONS(9590), + [anon_sym_BANG] = ACTIONS(9592), + [aux_sym__attribute_identifier_token1] = ACTIONS(9590), + [aux_sym_option_statement_token3] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9590), + [aux_sym_preprocessor_const_token1] = ACTIONS(9590), + [sym_static_modifier] = ACTIONS(9590), + [sym__dim_keyword] = ACTIONS(9590), + [sym__redim_keyword] = ACTIONS(9590), + [aux_sym_get_accessor_token1] = ACTIONS(9590), + [aux_sym_set_accessor_token1] = ACTIONS(9590), + [aux_sym_const_declaration_token1] = ACTIONS(9590), + [anon_sym_LPAREN] = ACTIONS(9592), + [aux_sym_as_type_clause_token2] = ACTIONS(9590), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9590), + [aux_sym_visibility_token1] = ACTIONS(9590), + [aux_sym_visibility_token2] = ACTIONS(9590), + [aux_sym_elseif_fragment_token1] = ACTIONS(9590), + [aux_sym_else_fragment_token1] = ACTIONS(9590), + [aux_sym_select_statement_token1] = ACTIONS(9590), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9590), + [aux_sym__for_header_token1] = ACTIONS(9590), + [aux_sym_do_statement_token1] = ACTIONS(9590), + [aux_sym_do_condition_token1] = ACTIONS(9590), + [aux_sym_with_statement_token1] = ACTIONS(9590), + [aux_sym_exit_statement_token1] = ACTIONS(9590), + [sym_end_statement] = ACTIONS(9592), + [aux_sym_on_goto_statement_token1] = ACTIONS(9590), + [aux_sym_on_goto_statement_token2] = ACTIONS(9590), + [aux_sym_on_error_statement_token2] = ACTIONS(9590), + [sym__ambiguous_redim_statement] = ACTIONS(9592), + [aux_sym_erase_statement_token1] = ACTIONS(9590), + [aux_sym_open_statement_token1] = ACTIONS(9590), + [aux_sym_file_mode_token2] = ACTIONS(9590), + [aux_sym_file_access_token2] = ACTIONS(9590), + [aux_sym_file_lock_token2] = ACTIONS(9590), + [aux_sym_print_statement_token1] = ACTIONS(9590), + [anon_sym_PLUS] = ACTIONS(9592), + [anon_sym_DASH] = ACTIONS(9590), + [anon_sym_QMARK] = ACTIONS(9592), + [aux_sym_close_statement_token1] = ACTIONS(9590), + [aux_sym_put_statement_token1] = ACTIONS(9590), + [aux_sym_unlock_statement_token1] = ACTIONS(9590), + [aux_sym_seek_statement_token1] = ACTIONS(9590), + [sym_reset_statement] = ACTIONS(9590), + [aux_sym_raise_event_statement_token1] = ACTIONS(9590), + [sym_stop_statement] = ACTIONS(9590), + [sym_beep_statement] = ACTIONS(9590), + [aux_sym_unload_statement_token1] = ACTIONS(9590), + [aux_sym_def_type_statement_token1] = ACTIONS(9590), + [aux_sym_def_type_statement_token2] = ACTIONS(9590), + [aux_sym_def_type_statement_token3] = ACTIONS(9590), + [aux_sym_def_type_statement_token4] = ACTIONS(9590), + [aux_sym_def_type_statement_token5] = ACTIONS(9590), + [aux_sym_def_type_statement_token6] = ACTIONS(9590), + [aux_sym_def_type_statement_token7] = ACTIONS(9590), + [aux_sym_def_type_statement_token8] = ACTIONS(9590), + [aux_sym_def_type_statement_token9] = ACTIONS(9590), + [aux_sym_def_type_statement_token10] = ACTIONS(9590), + [aux_sym_def_type_statement_token11] = ACTIONS(9590), + [aux_sym_def_type_statement_token12] = ACTIONS(9590), + [aux_sym_def_type_statement_token13] = ACTIONS(9590), + [aux_sym_def_type_statement_token14] = ACTIONS(9590), + [aux_sym_call_statement_token1] = ACTIONS(9590), + [sym__ambiguous_call_statement] = ACTIONS(9590), + [aux_sym_addressof_expression_token1] = ACTIONS(9590), + [aux_sym_type_of_expression_token1] = ACTIONS(9590), + [aux_sym_unary_expression_token1] = ACTIONS(9590), + [sym_string_literal] = ACTIONS(9592), + [sym_number_literal] = ACTIONS(9592), + [aux_sym_boolean_literal_token1] = ACTIONS(9590), + [aux_sym_boolean_literal_token2] = ACTIONS(9590), + [sym_nothing_literal] = ACTIONS(9590), + [sym_null_literal] = ACTIONS(9590), + [sym_empty_literal] = ACTIONS(9590), + [sym_date_literal] = ACTIONS(9592), + [anon_sym_POUND] = ACTIONS(9590), + }, + [STATE(6627)] = { + [sym_identifier] = ACTIONS(9594), + [sym_newline] = ACTIONS(9596), + [anon_sym_COLON] = ACTIONS(9596), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9594), + [aux_sym_frm_property_statement_token1] = ACTIONS(9594), + [anon_sym_DOT] = ACTIONS(9594), + [anon_sym_BANG] = ACTIONS(9596), + [aux_sym__attribute_identifier_token1] = ACTIONS(9594), + [aux_sym_option_statement_token3] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9594), + [aux_sym_preprocessor_const_token1] = ACTIONS(9594), + [sym_static_modifier] = ACTIONS(9594), + [sym__dim_keyword] = ACTIONS(9594), + [sym__redim_keyword] = ACTIONS(9594), + [aux_sym_get_accessor_token1] = ACTIONS(9594), + [aux_sym_set_accessor_token1] = ACTIONS(9594), + [aux_sym_const_declaration_token1] = ACTIONS(9594), + [anon_sym_LPAREN] = ACTIONS(9596), + [aux_sym_as_type_clause_token2] = ACTIONS(9594), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9594), + [aux_sym_visibility_token1] = ACTIONS(9594), + [aux_sym_visibility_token2] = ACTIONS(9594), + [aux_sym_elseif_fragment_token1] = ACTIONS(9594), + [aux_sym_else_fragment_token1] = ACTIONS(9594), + [aux_sym_select_statement_token1] = ACTIONS(9594), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9594), + [aux_sym__for_header_token1] = ACTIONS(9594), + [aux_sym_do_statement_token1] = ACTIONS(9594), + [aux_sym_do_condition_token1] = ACTIONS(9594), + [aux_sym_with_statement_token1] = ACTIONS(9594), + [aux_sym_exit_statement_token1] = ACTIONS(9594), + [sym_end_statement] = ACTIONS(9596), + [aux_sym_on_goto_statement_token1] = ACTIONS(9594), + [aux_sym_on_goto_statement_token2] = ACTIONS(9594), + [aux_sym_on_error_statement_token2] = ACTIONS(9594), + [sym__ambiguous_redim_statement] = ACTIONS(9596), + [aux_sym_erase_statement_token1] = ACTIONS(9594), + [aux_sym_open_statement_token1] = ACTIONS(9594), + [aux_sym_file_mode_token2] = ACTIONS(9594), + [aux_sym_file_access_token2] = ACTIONS(9594), + [aux_sym_file_lock_token2] = ACTIONS(9594), + [aux_sym_print_statement_token1] = ACTIONS(9594), + [anon_sym_PLUS] = ACTIONS(9596), + [anon_sym_DASH] = ACTIONS(9594), + [anon_sym_QMARK] = ACTIONS(9596), + [aux_sym_close_statement_token1] = ACTIONS(9594), + [aux_sym_put_statement_token1] = ACTIONS(9594), + [aux_sym_unlock_statement_token1] = ACTIONS(9594), + [aux_sym_seek_statement_token1] = ACTIONS(9594), + [sym_reset_statement] = ACTIONS(9594), + [aux_sym_raise_event_statement_token1] = ACTIONS(9594), + [sym_stop_statement] = ACTIONS(9594), + [sym_beep_statement] = ACTIONS(9594), + [aux_sym_unload_statement_token1] = ACTIONS(9594), + [aux_sym_def_type_statement_token1] = ACTIONS(9594), + [aux_sym_def_type_statement_token2] = ACTIONS(9594), + [aux_sym_def_type_statement_token3] = ACTIONS(9594), + [aux_sym_def_type_statement_token4] = ACTIONS(9594), + [aux_sym_def_type_statement_token5] = ACTIONS(9594), + [aux_sym_def_type_statement_token6] = ACTIONS(9594), + [aux_sym_def_type_statement_token7] = ACTIONS(9594), + [aux_sym_def_type_statement_token8] = ACTIONS(9594), + [aux_sym_def_type_statement_token9] = ACTIONS(9594), + [aux_sym_def_type_statement_token10] = ACTIONS(9594), + [aux_sym_def_type_statement_token11] = ACTIONS(9594), + [aux_sym_def_type_statement_token12] = ACTIONS(9594), + [aux_sym_def_type_statement_token13] = ACTIONS(9594), + [aux_sym_def_type_statement_token14] = ACTIONS(9594), + [aux_sym_call_statement_token1] = ACTIONS(9594), + [sym__ambiguous_call_statement] = ACTIONS(9594), + [aux_sym_addressof_expression_token1] = ACTIONS(9594), + [aux_sym_type_of_expression_token1] = ACTIONS(9594), + [aux_sym_unary_expression_token1] = ACTIONS(9594), + [sym_string_literal] = ACTIONS(9596), + [sym_number_literal] = ACTIONS(9596), + [aux_sym_boolean_literal_token1] = ACTIONS(9594), + [aux_sym_boolean_literal_token2] = ACTIONS(9594), + [sym_nothing_literal] = ACTIONS(9594), + [sym_null_literal] = ACTIONS(9594), + [sym_empty_literal] = ACTIONS(9594), + [sym_date_literal] = ACTIONS(9596), + [anon_sym_POUND] = ACTIONS(9594), + }, + [STATE(6628)] = { + [sym_identifier] = ACTIONS(9598), + [sym_newline] = ACTIONS(9600), + [anon_sym_COLON] = ACTIONS(9600), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9598), + [aux_sym_frm_property_statement_token1] = ACTIONS(9598), + [anon_sym_DOT] = ACTIONS(9598), + [anon_sym_BANG] = ACTIONS(9600), + [aux_sym__attribute_identifier_token1] = ACTIONS(9598), + [aux_sym_option_statement_token3] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9598), + [aux_sym_preprocessor_const_token1] = ACTIONS(9598), + [sym_static_modifier] = ACTIONS(9598), + [sym__dim_keyword] = ACTIONS(9598), + [sym__redim_keyword] = ACTIONS(9598), + [aux_sym_get_accessor_token1] = ACTIONS(9598), + [aux_sym_set_accessor_token1] = ACTIONS(9598), + [aux_sym_const_declaration_token1] = ACTIONS(9598), + [anon_sym_LPAREN] = ACTIONS(9600), + [aux_sym_as_type_clause_token2] = ACTIONS(9598), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9598), + [aux_sym_visibility_token1] = ACTIONS(9598), + [aux_sym_visibility_token2] = ACTIONS(9598), + [aux_sym_elseif_fragment_token1] = ACTIONS(9598), + [aux_sym_else_fragment_token1] = ACTIONS(9598), + [aux_sym_select_statement_token1] = ACTIONS(9598), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9598), + [aux_sym__for_header_token1] = ACTIONS(9598), + [aux_sym_do_statement_token1] = ACTIONS(9598), + [aux_sym_do_condition_token1] = ACTIONS(9598), + [aux_sym_with_statement_token1] = ACTIONS(9598), + [aux_sym_exit_statement_token1] = ACTIONS(9598), + [sym_end_statement] = ACTIONS(9600), + [aux_sym_on_goto_statement_token1] = ACTIONS(9598), + [aux_sym_on_goto_statement_token2] = ACTIONS(9598), + [aux_sym_on_error_statement_token2] = ACTIONS(9598), + [sym__ambiguous_redim_statement] = ACTIONS(9600), + [aux_sym_erase_statement_token1] = ACTIONS(9598), + [aux_sym_open_statement_token1] = ACTIONS(9598), + [aux_sym_file_mode_token2] = ACTIONS(9598), + [aux_sym_file_access_token2] = ACTIONS(9598), + [aux_sym_file_lock_token2] = ACTIONS(9598), + [aux_sym_print_statement_token1] = ACTIONS(9598), + [anon_sym_PLUS] = ACTIONS(9600), + [anon_sym_DASH] = ACTIONS(9598), + [anon_sym_QMARK] = ACTIONS(9600), + [aux_sym_close_statement_token1] = ACTIONS(9598), + [aux_sym_put_statement_token1] = ACTIONS(9598), + [aux_sym_unlock_statement_token1] = ACTIONS(9598), + [aux_sym_seek_statement_token1] = ACTIONS(9598), + [sym_reset_statement] = ACTIONS(9598), + [aux_sym_raise_event_statement_token1] = ACTIONS(9598), + [sym_stop_statement] = ACTIONS(9598), + [sym_beep_statement] = ACTIONS(9598), + [aux_sym_unload_statement_token1] = ACTIONS(9598), + [aux_sym_def_type_statement_token1] = ACTIONS(9598), + [aux_sym_def_type_statement_token2] = ACTIONS(9598), + [aux_sym_def_type_statement_token3] = ACTIONS(9598), + [aux_sym_def_type_statement_token4] = ACTIONS(9598), + [aux_sym_def_type_statement_token5] = ACTIONS(9598), + [aux_sym_def_type_statement_token6] = ACTIONS(9598), + [aux_sym_def_type_statement_token7] = ACTIONS(9598), + [aux_sym_def_type_statement_token8] = ACTIONS(9598), + [aux_sym_def_type_statement_token9] = ACTIONS(9598), + [aux_sym_def_type_statement_token10] = ACTIONS(9598), + [aux_sym_def_type_statement_token11] = ACTIONS(9598), + [aux_sym_def_type_statement_token12] = ACTIONS(9598), + [aux_sym_def_type_statement_token13] = ACTIONS(9598), + [aux_sym_def_type_statement_token14] = ACTIONS(9598), + [aux_sym_call_statement_token1] = ACTIONS(9598), + [sym__ambiguous_call_statement] = ACTIONS(9598), + [aux_sym_addressof_expression_token1] = ACTIONS(9598), + [aux_sym_type_of_expression_token1] = ACTIONS(9598), + [aux_sym_unary_expression_token1] = ACTIONS(9598), + [sym_string_literal] = ACTIONS(9600), + [sym_number_literal] = ACTIONS(9600), + [aux_sym_boolean_literal_token1] = ACTIONS(9598), + [aux_sym_boolean_literal_token2] = ACTIONS(9598), + [sym_nothing_literal] = ACTIONS(9598), + [sym_null_literal] = ACTIONS(9598), + [sym_empty_literal] = ACTIONS(9598), + [sym_date_literal] = ACTIONS(9600), + [anon_sym_POUND] = ACTIONS(9598), + }, + [STATE(6629)] = { + [sym_identifier] = ACTIONS(9138), + [sym_newline] = ACTIONS(9140), + [anon_sym_COLON] = ACTIONS(9140), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9138), + [aux_sym_frm_property_statement_token1] = ACTIONS(9138), + [anon_sym_DOT] = ACTIONS(9138), + [anon_sym_BANG] = ACTIONS(9140), + [aux_sym__attribute_identifier_token1] = ACTIONS(9138), + [aux_sym_option_statement_token3] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9138), + [aux_sym_preprocessor_const_token1] = ACTIONS(9138), + [sym_static_modifier] = ACTIONS(9138), + [sym__dim_keyword] = ACTIONS(9138), + [sym__redim_keyword] = ACTIONS(9138), + [aux_sym_get_accessor_token1] = ACTIONS(9138), + [aux_sym_set_accessor_token1] = ACTIONS(9138), + [aux_sym_const_declaration_token1] = ACTIONS(9138), + [anon_sym_LPAREN] = ACTIONS(9140), + [aux_sym_as_type_clause_token2] = ACTIONS(9138), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9138), + [aux_sym_visibility_token1] = ACTIONS(9138), + [aux_sym_visibility_token2] = ACTIONS(9138), + [aux_sym_elseif_fragment_token1] = ACTIONS(9138), + [aux_sym_else_fragment_token1] = ACTIONS(9138), + [aux_sym_select_statement_token1] = ACTIONS(9138), + [aux_sym__for_header_token1] = ACTIONS(9138), + [aux_sym_do_statement_token1] = ACTIONS(9138), + [aux_sym_do_statement_token2] = ACTIONS(9138), + [aux_sym_do_condition_token1] = ACTIONS(9138), + [aux_sym_with_statement_token1] = ACTIONS(9138), + [aux_sym_exit_statement_token1] = ACTIONS(9138), + [sym_end_statement] = ACTIONS(9140), + [aux_sym_on_goto_statement_token1] = ACTIONS(9138), + [aux_sym_on_goto_statement_token2] = ACTIONS(9138), + [aux_sym_on_error_statement_token2] = ACTIONS(9138), + [sym__ambiguous_redim_statement] = ACTIONS(9140), + [aux_sym_erase_statement_token1] = ACTIONS(9138), + [aux_sym_open_statement_token1] = ACTIONS(9138), + [aux_sym_file_mode_token2] = ACTIONS(9138), + [aux_sym_file_access_token2] = ACTIONS(9138), + [aux_sym_file_lock_token2] = ACTIONS(9138), + [aux_sym_print_statement_token1] = ACTIONS(9138), + [anon_sym_PLUS] = ACTIONS(9140), + [anon_sym_DASH] = ACTIONS(9138), + [anon_sym_QMARK] = ACTIONS(9140), + [aux_sym_close_statement_token1] = ACTIONS(9138), + [aux_sym_put_statement_token1] = ACTIONS(9138), + [aux_sym_unlock_statement_token1] = ACTIONS(9138), + [aux_sym_seek_statement_token1] = ACTIONS(9138), + [sym_reset_statement] = ACTIONS(9138), + [aux_sym_raise_event_statement_token1] = ACTIONS(9138), + [sym_stop_statement] = ACTIONS(9138), + [sym_beep_statement] = ACTIONS(9138), + [aux_sym_unload_statement_token1] = ACTIONS(9138), + [aux_sym_def_type_statement_token1] = ACTIONS(9138), + [aux_sym_def_type_statement_token2] = ACTIONS(9138), + [aux_sym_def_type_statement_token3] = ACTIONS(9138), + [aux_sym_def_type_statement_token4] = ACTIONS(9138), + [aux_sym_def_type_statement_token5] = ACTIONS(9138), + [aux_sym_def_type_statement_token6] = ACTIONS(9138), + [aux_sym_def_type_statement_token7] = ACTIONS(9138), + [aux_sym_def_type_statement_token8] = ACTIONS(9138), + [aux_sym_def_type_statement_token9] = ACTIONS(9138), + [aux_sym_def_type_statement_token10] = ACTIONS(9138), + [aux_sym_def_type_statement_token11] = ACTIONS(9138), + [aux_sym_def_type_statement_token12] = ACTIONS(9138), + [aux_sym_def_type_statement_token13] = ACTIONS(9138), + [aux_sym_def_type_statement_token14] = ACTIONS(9138), + [aux_sym_call_statement_token1] = ACTIONS(9138), + [sym__ambiguous_call_statement] = ACTIONS(9138), + [aux_sym_addressof_expression_token1] = ACTIONS(9138), + [aux_sym_type_of_expression_token1] = ACTIONS(9138), + [aux_sym_unary_expression_token1] = ACTIONS(9138), + [sym_string_literal] = ACTIONS(9140), + [sym_number_literal] = ACTIONS(9140), + [aux_sym_boolean_literal_token1] = ACTIONS(9138), + [aux_sym_boolean_literal_token2] = ACTIONS(9138), + [sym_nothing_literal] = ACTIONS(9138), + [sym_null_literal] = ACTIONS(9138), + [sym_empty_literal] = ACTIONS(9138), + [sym_date_literal] = ACTIONS(9140), + [anon_sym_POUND] = ACTIONS(9138), + }, + [STATE(6630)] = { + [sym_identifier] = ACTIONS(8813), + [sym_newline] = ACTIONS(8815), + [anon_sym_COLON] = ACTIONS(8815), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8813), + [aux_sym_frm_property_statement_token1] = ACTIONS(8813), + [anon_sym_DOT] = ACTIONS(8813), + [anon_sym_BANG] = ACTIONS(8815), + [aux_sym__attribute_identifier_token1] = ACTIONS(8813), + [aux_sym_option_statement_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8813), + [aux_sym_preprocessor_const_token1] = ACTIONS(8813), + [sym_static_modifier] = ACTIONS(8813), + [sym__dim_keyword] = ACTIONS(8813), + [sym__redim_keyword] = ACTIONS(8813), + [aux_sym_get_accessor_token1] = ACTIONS(8813), + [aux_sym_set_accessor_token1] = ACTIONS(8813), + [aux_sym_const_declaration_token1] = ACTIONS(8813), + [anon_sym_LPAREN] = ACTIONS(8815), + [aux_sym_as_type_clause_token2] = ACTIONS(8813), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8813), + [aux_sym_visibility_token1] = ACTIONS(8813), + [aux_sym_visibility_token2] = ACTIONS(8813), + [aux_sym_elseif_fragment_token1] = ACTIONS(8813), + [aux_sym_else_fragment_token1] = ACTIONS(8813), + [aux_sym_select_statement_token1] = ACTIONS(8813), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8813), + [aux_sym__for_header_token1] = ACTIONS(8813), + [aux_sym_do_statement_token1] = ACTIONS(8813), + [aux_sym_do_condition_token1] = ACTIONS(8813), + [aux_sym_with_statement_token1] = ACTIONS(8813), + [aux_sym_exit_statement_token1] = ACTIONS(8813), + [sym_end_statement] = ACTIONS(8815), + [aux_sym_on_goto_statement_token1] = ACTIONS(8813), + [aux_sym_on_goto_statement_token2] = ACTIONS(8813), + [aux_sym_on_error_statement_token2] = ACTIONS(8813), + [sym__ambiguous_redim_statement] = ACTIONS(8815), + [aux_sym_erase_statement_token1] = ACTIONS(8813), + [aux_sym_open_statement_token1] = ACTIONS(8813), + [aux_sym_file_mode_token2] = ACTIONS(8813), + [aux_sym_file_access_token2] = ACTIONS(8813), + [aux_sym_file_lock_token2] = ACTIONS(8813), + [aux_sym_print_statement_token1] = ACTIONS(8813), + [anon_sym_PLUS] = ACTIONS(8815), + [anon_sym_DASH] = ACTIONS(8813), + [anon_sym_QMARK] = ACTIONS(8815), + [aux_sym_close_statement_token1] = ACTIONS(8813), + [aux_sym_put_statement_token1] = ACTIONS(8813), + [aux_sym_unlock_statement_token1] = ACTIONS(8813), + [aux_sym_seek_statement_token1] = ACTIONS(8813), + [sym_reset_statement] = ACTIONS(8813), + [aux_sym_raise_event_statement_token1] = ACTIONS(8813), + [sym_stop_statement] = ACTIONS(8813), + [sym_beep_statement] = ACTIONS(8813), + [aux_sym_unload_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token2] = ACTIONS(8813), + [aux_sym_def_type_statement_token3] = ACTIONS(8813), + [aux_sym_def_type_statement_token4] = ACTIONS(8813), + [aux_sym_def_type_statement_token5] = ACTIONS(8813), + [aux_sym_def_type_statement_token6] = ACTIONS(8813), + [aux_sym_def_type_statement_token7] = ACTIONS(8813), + [aux_sym_def_type_statement_token8] = ACTIONS(8813), + [aux_sym_def_type_statement_token9] = ACTIONS(8813), + [aux_sym_def_type_statement_token10] = ACTIONS(8813), + [aux_sym_def_type_statement_token11] = ACTIONS(8813), + [aux_sym_def_type_statement_token12] = ACTIONS(8813), + [aux_sym_def_type_statement_token13] = ACTIONS(8813), + [aux_sym_def_type_statement_token14] = ACTIONS(8813), + [aux_sym_call_statement_token1] = ACTIONS(8813), + [sym__ambiguous_call_statement] = ACTIONS(8813), + [aux_sym_addressof_expression_token1] = ACTIONS(8813), + [aux_sym_type_of_expression_token1] = ACTIONS(8813), + [aux_sym_unary_expression_token1] = ACTIONS(8813), + [sym_string_literal] = ACTIONS(8815), + [sym_number_literal] = ACTIONS(8815), + [aux_sym_boolean_literal_token1] = ACTIONS(8813), + [aux_sym_boolean_literal_token2] = ACTIONS(8813), + [sym_nothing_literal] = ACTIONS(8813), + [sym_null_literal] = ACTIONS(8813), + [sym_empty_literal] = ACTIONS(8813), + [sym_date_literal] = ACTIONS(8815), + [anon_sym_POUND] = ACTIONS(8813), + }, + [STATE(6631)] = { + [sym_identifier] = ACTIONS(9631), + [sym_newline] = ACTIONS(9633), + [anon_sym_COLON] = ACTIONS(9633), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9631), + [aux_sym_frm_property_statement_token1] = ACTIONS(9631), + [anon_sym_DOT] = ACTIONS(9631), + [anon_sym_BANG] = ACTIONS(9633), + [aux_sym__attribute_identifier_token1] = ACTIONS(9631), + [aux_sym_option_statement_token3] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9631), + [aux_sym_preprocessor_const_token1] = ACTIONS(9631), + [sym_static_modifier] = ACTIONS(9631), + [sym__dim_keyword] = ACTIONS(9631), + [sym__redim_keyword] = ACTIONS(9631), + [aux_sym_get_accessor_token1] = ACTIONS(9631), + [aux_sym_set_accessor_token1] = ACTIONS(9631), + [aux_sym_const_declaration_token1] = ACTIONS(9631), + [anon_sym_LPAREN] = ACTIONS(9633), + [aux_sym_as_type_clause_token2] = ACTIONS(9631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9631), + [aux_sym_visibility_token1] = ACTIONS(9631), + [aux_sym_visibility_token2] = ACTIONS(9631), + [aux_sym_elseif_fragment_token1] = ACTIONS(9631), + [aux_sym_else_fragment_token1] = ACTIONS(9631), + [aux_sym_select_statement_token1] = ACTIONS(9631), + [aux_sym__for_header_token1] = ACTIONS(9631), + [aux_sym_do_statement_token1] = ACTIONS(9631), + [aux_sym_do_condition_token1] = ACTIONS(9631), + [aux_sym_while_statement_token1] = ACTIONS(9631), + [aux_sym_with_statement_token1] = ACTIONS(9631), + [aux_sym_exit_statement_token1] = ACTIONS(9631), + [sym_end_statement] = ACTIONS(9633), + [aux_sym_on_goto_statement_token1] = ACTIONS(9631), + [aux_sym_on_goto_statement_token2] = ACTIONS(9631), + [aux_sym_on_error_statement_token2] = ACTIONS(9631), + [sym__ambiguous_redim_statement] = ACTIONS(9633), + [aux_sym_erase_statement_token1] = ACTIONS(9631), + [aux_sym_open_statement_token1] = ACTIONS(9631), + [aux_sym_file_mode_token2] = ACTIONS(9631), + [aux_sym_file_access_token2] = ACTIONS(9631), + [aux_sym_file_lock_token2] = ACTIONS(9631), + [aux_sym_print_statement_token1] = ACTIONS(9631), + [anon_sym_PLUS] = ACTIONS(9633), + [anon_sym_DASH] = ACTIONS(9631), + [anon_sym_QMARK] = ACTIONS(9633), + [aux_sym_close_statement_token1] = ACTIONS(9631), + [aux_sym_put_statement_token1] = ACTIONS(9631), + [aux_sym_unlock_statement_token1] = ACTIONS(9631), + [aux_sym_seek_statement_token1] = ACTIONS(9631), + [sym_reset_statement] = ACTIONS(9631), + [aux_sym_raise_event_statement_token1] = ACTIONS(9631), + [sym_stop_statement] = ACTIONS(9631), + [sym_beep_statement] = ACTIONS(9631), + [aux_sym_unload_statement_token1] = ACTIONS(9631), + [aux_sym_def_type_statement_token1] = ACTIONS(9631), + [aux_sym_def_type_statement_token2] = ACTIONS(9631), + [aux_sym_def_type_statement_token3] = ACTIONS(9631), + [aux_sym_def_type_statement_token4] = ACTIONS(9631), + [aux_sym_def_type_statement_token5] = ACTIONS(9631), + [aux_sym_def_type_statement_token6] = ACTIONS(9631), + [aux_sym_def_type_statement_token7] = ACTIONS(9631), + [aux_sym_def_type_statement_token8] = ACTIONS(9631), + [aux_sym_def_type_statement_token9] = ACTIONS(9631), + [aux_sym_def_type_statement_token10] = ACTIONS(9631), + [aux_sym_def_type_statement_token11] = ACTIONS(9631), + [aux_sym_def_type_statement_token12] = ACTIONS(9631), + [aux_sym_def_type_statement_token13] = ACTIONS(9631), + [aux_sym_def_type_statement_token14] = ACTIONS(9631), + [aux_sym_call_statement_token1] = ACTIONS(9631), + [sym__ambiguous_call_statement] = ACTIONS(9631), + [aux_sym_addressof_expression_token1] = ACTIONS(9631), + [aux_sym_type_of_expression_token1] = ACTIONS(9631), + [aux_sym_unary_expression_token1] = ACTIONS(9631), + [sym_string_literal] = ACTIONS(9633), + [sym_number_literal] = ACTIONS(9633), + [aux_sym_boolean_literal_token1] = ACTIONS(9631), + [aux_sym_boolean_literal_token2] = ACTIONS(9631), + [sym_nothing_literal] = ACTIONS(9631), + [sym_null_literal] = ACTIONS(9631), + [sym_empty_literal] = ACTIONS(9631), + [sym_date_literal] = ACTIONS(9633), + [anon_sym_POUND] = ACTIONS(9631), + }, + [STATE(6632)] = { + [sym_identifier] = ACTIONS(9635), + [sym_newline] = ACTIONS(9637), + [anon_sym_COLON] = ACTIONS(9637), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9635), + [aux_sym_frm_property_statement_token1] = ACTIONS(9635), + [anon_sym_DOT] = ACTIONS(9635), + [anon_sym_BANG] = ACTIONS(9637), + [aux_sym__attribute_identifier_token1] = ACTIONS(9635), + [aux_sym_option_statement_token3] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9635), + [aux_sym_preprocessor_const_token1] = ACTIONS(9635), + [sym_static_modifier] = ACTIONS(9635), + [sym__dim_keyword] = ACTIONS(9635), + [sym__redim_keyword] = ACTIONS(9635), + [aux_sym_get_accessor_token1] = ACTIONS(9635), + [aux_sym_set_accessor_token1] = ACTIONS(9635), + [aux_sym_const_declaration_token1] = ACTIONS(9635), + [anon_sym_LPAREN] = ACTIONS(9637), + [aux_sym_as_type_clause_token2] = ACTIONS(9635), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9635), + [aux_sym_visibility_token1] = ACTIONS(9635), + [aux_sym_visibility_token2] = ACTIONS(9635), + [aux_sym_elseif_fragment_token1] = ACTIONS(9635), + [aux_sym_else_fragment_token1] = ACTIONS(9635), + [aux_sym_select_statement_token1] = ACTIONS(9635), + [aux_sym__for_header_token1] = ACTIONS(9635), + [aux_sym_do_statement_token1] = ACTIONS(9635), + [aux_sym_do_condition_token1] = ACTIONS(9635), + [aux_sym_while_statement_token1] = ACTIONS(9635), + [aux_sym_with_statement_token1] = ACTIONS(9635), + [aux_sym_exit_statement_token1] = ACTIONS(9635), + [sym_end_statement] = ACTIONS(9637), + [aux_sym_on_goto_statement_token1] = ACTIONS(9635), + [aux_sym_on_goto_statement_token2] = ACTIONS(9635), + [aux_sym_on_error_statement_token2] = ACTIONS(9635), + [sym__ambiguous_redim_statement] = ACTIONS(9637), + [aux_sym_erase_statement_token1] = ACTIONS(9635), + [aux_sym_open_statement_token1] = ACTIONS(9635), + [aux_sym_file_mode_token2] = ACTIONS(9635), + [aux_sym_file_access_token2] = ACTIONS(9635), + [aux_sym_file_lock_token2] = ACTIONS(9635), + [aux_sym_print_statement_token1] = ACTIONS(9635), + [anon_sym_PLUS] = ACTIONS(9637), + [anon_sym_DASH] = ACTIONS(9635), + [anon_sym_QMARK] = ACTIONS(9637), + [aux_sym_close_statement_token1] = ACTIONS(9635), + [aux_sym_put_statement_token1] = ACTIONS(9635), + [aux_sym_unlock_statement_token1] = ACTIONS(9635), + [aux_sym_seek_statement_token1] = ACTIONS(9635), + [sym_reset_statement] = ACTIONS(9635), + [aux_sym_raise_event_statement_token1] = ACTIONS(9635), + [sym_stop_statement] = ACTIONS(9635), + [sym_beep_statement] = ACTIONS(9635), + [aux_sym_unload_statement_token1] = ACTIONS(9635), + [aux_sym_def_type_statement_token1] = ACTIONS(9635), + [aux_sym_def_type_statement_token2] = ACTIONS(9635), + [aux_sym_def_type_statement_token3] = ACTIONS(9635), + [aux_sym_def_type_statement_token4] = ACTIONS(9635), + [aux_sym_def_type_statement_token5] = ACTIONS(9635), + [aux_sym_def_type_statement_token6] = ACTIONS(9635), + [aux_sym_def_type_statement_token7] = ACTIONS(9635), + [aux_sym_def_type_statement_token8] = ACTIONS(9635), + [aux_sym_def_type_statement_token9] = ACTIONS(9635), + [aux_sym_def_type_statement_token10] = ACTIONS(9635), + [aux_sym_def_type_statement_token11] = ACTIONS(9635), + [aux_sym_def_type_statement_token12] = ACTIONS(9635), + [aux_sym_def_type_statement_token13] = ACTIONS(9635), + [aux_sym_def_type_statement_token14] = ACTIONS(9635), + [aux_sym_call_statement_token1] = ACTIONS(9635), + [sym__ambiguous_call_statement] = ACTIONS(9635), + [aux_sym_addressof_expression_token1] = ACTIONS(9635), + [aux_sym_type_of_expression_token1] = ACTIONS(9635), + [aux_sym_unary_expression_token1] = ACTIONS(9635), + [sym_string_literal] = ACTIONS(9637), + [sym_number_literal] = ACTIONS(9637), + [aux_sym_boolean_literal_token1] = ACTIONS(9635), + [aux_sym_boolean_literal_token2] = ACTIONS(9635), + [sym_nothing_literal] = ACTIONS(9635), + [sym_null_literal] = ACTIONS(9635), + [sym_empty_literal] = ACTIONS(9635), + [sym_date_literal] = ACTIONS(9637), + [anon_sym_POUND] = ACTIONS(9635), + }, + [STATE(6633)] = { + [sym_identifier] = ACTIONS(9639), + [sym_newline] = ACTIONS(9641), + [anon_sym_COLON] = ACTIONS(9641), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9639), + [aux_sym_frm_property_statement_token1] = ACTIONS(9639), + [anon_sym_DOT] = ACTIONS(9639), + [anon_sym_BANG] = ACTIONS(9641), + [aux_sym__attribute_identifier_token1] = ACTIONS(9639), + [aux_sym_option_statement_token3] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9639), + [aux_sym_preprocessor_const_token1] = ACTIONS(9639), + [sym_static_modifier] = ACTIONS(9639), + [sym__dim_keyword] = ACTIONS(9639), + [sym__redim_keyword] = ACTIONS(9639), + [aux_sym_get_accessor_token1] = ACTIONS(9639), + [aux_sym_set_accessor_token1] = ACTIONS(9639), + [aux_sym_const_declaration_token1] = ACTIONS(9639), + [anon_sym_LPAREN] = ACTIONS(9641), + [aux_sym_as_type_clause_token2] = ACTIONS(9639), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9639), + [aux_sym_visibility_token1] = ACTIONS(9639), + [aux_sym_visibility_token2] = ACTIONS(9639), + [aux_sym_elseif_fragment_token1] = ACTIONS(9639), + [aux_sym_else_fragment_token1] = ACTIONS(9639), + [aux_sym_select_statement_token1] = ACTIONS(9639), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9639), + [aux_sym__for_header_token1] = ACTIONS(9639), + [aux_sym_do_statement_token1] = ACTIONS(9639), + [aux_sym_do_condition_token1] = ACTIONS(9639), + [aux_sym_with_statement_token1] = ACTIONS(9639), + [aux_sym_exit_statement_token1] = ACTIONS(9639), + [sym_end_statement] = ACTIONS(9641), + [aux_sym_on_goto_statement_token1] = ACTIONS(9639), + [aux_sym_on_goto_statement_token2] = ACTIONS(9639), + [aux_sym_on_error_statement_token2] = ACTIONS(9639), + [sym__ambiguous_redim_statement] = ACTIONS(9641), + [aux_sym_erase_statement_token1] = ACTIONS(9639), + [aux_sym_open_statement_token1] = ACTIONS(9639), + [aux_sym_file_mode_token2] = ACTIONS(9639), + [aux_sym_file_access_token2] = ACTIONS(9639), + [aux_sym_file_lock_token2] = ACTIONS(9639), + [aux_sym_print_statement_token1] = ACTIONS(9639), + [anon_sym_PLUS] = ACTIONS(9641), + [anon_sym_DASH] = ACTIONS(9639), + [anon_sym_QMARK] = ACTIONS(9641), + [aux_sym_close_statement_token1] = ACTIONS(9639), + [aux_sym_put_statement_token1] = ACTIONS(9639), + [aux_sym_unlock_statement_token1] = ACTIONS(9639), + [aux_sym_seek_statement_token1] = ACTIONS(9639), + [sym_reset_statement] = ACTIONS(9639), + [aux_sym_raise_event_statement_token1] = ACTIONS(9639), + [sym_stop_statement] = ACTIONS(9639), + [sym_beep_statement] = ACTIONS(9639), + [aux_sym_unload_statement_token1] = ACTIONS(9639), + [aux_sym_def_type_statement_token1] = ACTIONS(9639), + [aux_sym_def_type_statement_token2] = ACTIONS(9639), + [aux_sym_def_type_statement_token3] = ACTIONS(9639), + [aux_sym_def_type_statement_token4] = ACTIONS(9639), + [aux_sym_def_type_statement_token5] = ACTIONS(9639), + [aux_sym_def_type_statement_token6] = ACTIONS(9639), + [aux_sym_def_type_statement_token7] = ACTIONS(9639), + [aux_sym_def_type_statement_token8] = ACTIONS(9639), + [aux_sym_def_type_statement_token9] = ACTIONS(9639), + [aux_sym_def_type_statement_token10] = ACTIONS(9639), + [aux_sym_def_type_statement_token11] = ACTIONS(9639), + [aux_sym_def_type_statement_token12] = ACTIONS(9639), + [aux_sym_def_type_statement_token13] = ACTIONS(9639), + [aux_sym_def_type_statement_token14] = ACTIONS(9639), + [aux_sym_call_statement_token1] = ACTIONS(9639), + [sym__ambiguous_call_statement] = ACTIONS(9639), + [aux_sym_addressof_expression_token1] = ACTIONS(9639), + [aux_sym_type_of_expression_token1] = ACTIONS(9639), + [aux_sym_unary_expression_token1] = ACTIONS(9639), + [sym_string_literal] = ACTIONS(9641), + [sym_number_literal] = ACTIONS(9641), + [aux_sym_boolean_literal_token1] = ACTIONS(9639), + [aux_sym_boolean_literal_token2] = ACTIONS(9639), + [sym_nothing_literal] = ACTIONS(9639), + [sym_null_literal] = ACTIONS(9639), + [sym_empty_literal] = ACTIONS(9639), + [sym_date_literal] = ACTIONS(9641), + [anon_sym_POUND] = ACTIONS(9639), + }, + [STATE(6634)] = { + [sym_identifier] = ACTIONS(9643), + [sym_newline] = ACTIONS(9645), + [anon_sym_COLON] = ACTIONS(9645), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9643), + [aux_sym_frm_property_statement_token1] = ACTIONS(9643), + [anon_sym_DOT] = ACTIONS(9643), + [anon_sym_BANG] = ACTIONS(9645), + [aux_sym__attribute_identifier_token1] = ACTIONS(9643), + [aux_sym_option_statement_token3] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9643), + [aux_sym_preprocessor_const_token1] = ACTIONS(9643), + [sym_static_modifier] = ACTIONS(9643), + [sym__dim_keyword] = ACTIONS(9643), + [sym__redim_keyword] = ACTIONS(9643), + [aux_sym_get_accessor_token1] = ACTIONS(9643), + [aux_sym_set_accessor_token1] = ACTIONS(9643), + [aux_sym_const_declaration_token1] = ACTIONS(9643), + [anon_sym_LPAREN] = ACTIONS(9645), + [aux_sym_as_type_clause_token2] = ACTIONS(9643), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9643), + [aux_sym_visibility_token1] = ACTIONS(9643), + [aux_sym_visibility_token2] = ACTIONS(9643), + [aux_sym_elseif_fragment_token1] = ACTIONS(9643), + [aux_sym_else_fragment_token1] = ACTIONS(9643), + [aux_sym_select_statement_token1] = ACTIONS(9643), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9643), + [aux_sym__for_header_token1] = ACTIONS(9643), + [aux_sym_do_statement_token1] = ACTIONS(9643), + [aux_sym_do_condition_token1] = ACTIONS(9643), + [aux_sym_with_statement_token1] = ACTIONS(9643), + [aux_sym_exit_statement_token1] = ACTIONS(9643), + [sym_end_statement] = ACTIONS(9645), + [aux_sym_on_goto_statement_token1] = ACTIONS(9643), + [aux_sym_on_goto_statement_token2] = ACTIONS(9643), + [aux_sym_on_error_statement_token2] = ACTIONS(9643), + [sym__ambiguous_redim_statement] = ACTIONS(9645), + [aux_sym_erase_statement_token1] = ACTIONS(9643), + [aux_sym_open_statement_token1] = ACTIONS(9643), + [aux_sym_file_mode_token2] = ACTIONS(9643), + [aux_sym_file_access_token2] = ACTIONS(9643), + [aux_sym_file_lock_token2] = ACTIONS(9643), + [aux_sym_print_statement_token1] = ACTIONS(9643), + [anon_sym_PLUS] = ACTIONS(9645), + [anon_sym_DASH] = ACTIONS(9643), + [anon_sym_QMARK] = ACTIONS(9645), + [aux_sym_close_statement_token1] = ACTIONS(9643), + [aux_sym_put_statement_token1] = ACTIONS(9643), + [aux_sym_unlock_statement_token1] = ACTIONS(9643), + [aux_sym_seek_statement_token1] = ACTIONS(9643), + [sym_reset_statement] = ACTIONS(9643), + [aux_sym_raise_event_statement_token1] = ACTIONS(9643), + [sym_stop_statement] = ACTIONS(9643), + [sym_beep_statement] = ACTIONS(9643), + [aux_sym_unload_statement_token1] = ACTIONS(9643), + [aux_sym_def_type_statement_token1] = ACTIONS(9643), + [aux_sym_def_type_statement_token2] = ACTIONS(9643), + [aux_sym_def_type_statement_token3] = ACTIONS(9643), + [aux_sym_def_type_statement_token4] = ACTIONS(9643), + [aux_sym_def_type_statement_token5] = ACTIONS(9643), + [aux_sym_def_type_statement_token6] = ACTIONS(9643), + [aux_sym_def_type_statement_token7] = ACTIONS(9643), + [aux_sym_def_type_statement_token8] = ACTIONS(9643), + [aux_sym_def_type_statement_token9] = ACTIONS(9643), + [aux_sym_def_type_statement_token10] = ACTIONS(9643), + [aux_sym_def_type_statement_token11] = ACTIONS(9643), + [aux_sym_def_type_statement_token12] = ACTIONS(9643), + [aux_sym_def_type_statement_token13] = ACTIONS(9643), + [aux_sym_def_type_statement_token14] = ACTIONS(9643), + [aux_sym_call_statement_token1] = ACTIONS(9643), + [sym__ambiguous_call_statement] = ACTIONS(9643), + [aux_sym_addressof_expression_token1] = ACTIONS(9643), + [aux_sym_type_of_expression_token1] = ACTIONS(9643), + [aux_sym_unary_expression_token1] = ACTIONS(9643), + [sym_string_literal] = ACTIONS(9645), + [sym_number_literal] = ACTIONS(9645), + [aux_sym_boolean_literal_token1] = ACTIONS(9643), + [aux_sym_boolean_literal_token2] = ACTIONS(9643), + [sym_nothing_literal] = ACTIONS(9643), + [sym_null_literal] = ACTIONS(9643), + [sym_empty_literal] = ACTIONS(9643), + [sym_date_literal] = ACTIONS(9645), + [anon_sym_POUND] = ACTIONS(9643), + }, + [STATE(6635)] = { + [sym_identifier] = ACTIONS(9647), + [sym_newline] = ACTIONS(9649), + [anon_sym_COLON] = ACTIONS(9649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9647), + [aux_sym_frm_property_statement_token1] = ACTIONS(9647), + [anon_sym_DOT] = ACTIONS(9647), + [anon_sym_BANG] = ACTIONS(9649), + [aux_sym__attribute_identifier_token1] = ACTIONS(9647), + [aux_sym_option_statement_token3] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9647), + [aux_sym_preprocessor_const_token1] = ACTIONS(9647), + [sym_static_modifier] = ACTIONS(9647), + [sym__dim_keyword] = ACTIONS(9647), + [sym__redim_keyword] = ACTIONS(9647), + [aux_sym_get_accessor_token1] = ACTIONS(9647), + [aux_sym_set_accessor_token1] = ACTIONS(9647), + [aux_sym_const_declaration_token1] = ACTIONS(9647), + [anon_sym_LPAREN] = ACTIONS(9649), + [aux_sym_as_type_clause_token2] = ACTIONS(9647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9647), + [aux_sym_visibility_token1] = ACTIONS(9647), + [aux_sym_visibility_token2] = ACTIONS(9647), + [aux_sym_elseif_fragment_token1] = ACTIONS(9647), + [aux_sym_else_fragment_token1] = ACTIONS(9647), + [aux_sym_select_statement_token1] = ACTIONS(9647), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9647), + [aux_sym__for_header_token1] = ACTIONS(9647), + [aux_sym_do_statement_token1] = ACTIONS(9647), + [aux_sym_do_condition_token1] = ACTIONS(9647), + [aux_sym_with_statement_token1] = ACTIONS(9647), + [aux_sym_exit_statement_token1] = ACTIONS(9647), + [sym_end_statement] = ACTIONS(9649), + [aux_sym_on_goto_statement_token1] = ACTIONS(9647), + [aux_sym_on_goto_statement_token2] = ACTIONS(9647), + [aux_sym_on_error_statement_token2] = ACTIONS(9647), + [sym__ambiguous_redim_statement] = ACTIONS(9649), + [aux_sym_erase_statement_token1] = ACTIONS(9647), + [aux_sym_open_statement_token1] = ACTIONS(9647), + [aux_sym_file_mode_token2] = ACTIONS(9647), + [aux_sym_file_access_token2] = ACTIONS(9647), + [aux_sym_file_lock_token2] = ACTIONS(9647), + [aux_sym_print_statement_token1] = ACTIONS(9647), + [anon_sym_PLUS] = ACTIONS(9649), + [anon_sym_DASH] = ACTIONS(9647), + [anon_sym_QMARK] = ACTIONS(9649), + [aux_sym_close_statement_token1] = ACTIONS(9647), + [aux_sym_put_statement_token1] = ACTIONS(9647), + [aux_sym_unlock_statement_token1] = ACTIONS(9647), + [aux_sym_seek_statement_token1] = ACTIONS(9647), + [sym_reset_statement] = ACTIONS(9647), + [aux_sym_raise_event_statement_token1] = ACTIONS(9647), + [sym_stop_statement] = ACTIONS(9647), + [sym_beep_statement] = ACTIONS(9647), + [aux_sym_unload_statement_token1] = ACTIONS(9647), + [aux_sym_def_type_statement_token1] = ACTIONS(9647), + [aux_sym_def_type_statement_token2] = ACTIONS(9647), + [aux_sym_def_type_statement_token3] = ACTIONS(9647), + [aux_sym_def_type_statement_token4] = ACTIONS(9647), + [aux_sym_def_type_statement_token5] = ACTIONS(9647), + [aux_sym_def_type_statement_token6] = ACTIONS(9647), + [aux_sym_def_type_statement_token7] = ACTIONS(9647), + [aux_sym_def_type_statement_token8] = ACTIONS(9647), + [aux_sym_def_type_statement_token9] = ACTIONS(9647), + [aux_sym_def_type_statement_token10] = ACTIONS(9647), + [aux_sym_def_type_statement_token11] = ACTIONS(9647), + [aux_sym_def_type_statement_token12] = ACTIONS(9647), + [aux_sym_def_type_statement_token13] = ACTIONS(9647), + [aux_sym_def_type_statement_token14] = ACTIONS(9647), + [aux_sym_call_statement_token1] = ACTIONS(9647), + [sym__ambiguous_call_statement] = ACTIONS(9647), + [aux_sym_addressof_expression_token1] = ACTIONS(9647), + [aux_sym_type_of_expression_token1] = ACTIONS(9647), + [aux_sym_unary_expression_token1] = ACTIONS(9647), + [sym_string_literal] = ACTIONS(9649), + [sym_number_literal] = ACTIONS(9649), + [aux_sym_boolean_literal_token1] = ACTIONS(9647), + [aux_sym_boolean_literal_token2] = ACTIONS(9647), + [sym_nothing_literal] = ACTIONS(9647), + [sym_null_literal] = ACTIONS(9647), + [sym_empty_literal] = ACTIONS(9647), + [sym_date_literal] = ACTIONS(9649), + [anon_sym_POUND] = ACTIONS(9647), + }, + [STATE(6636)] = { + [sym_identifier] = ACTIONS(9654), + [sym_newline] = ACTIONS(9656), + [anon_sym_COLON] = ACTIONS(9656), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9654), + [aux_sym_frm_property_statement_token1] = ACTIONS(9654), + [anon_sym_DOT] = ACTIONS(9654), + [anon_sym_BANG] = ACTIONS(9656), + [aux_sym__attribute_identifier_token1] = ACTIONS(9654), + [aux_sym_option_statement_token3] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9654), + [aux_sym_preprocessor_const_token1] = ACTIONS(9654), + [sym_static_modifier] = ACTIONS(9654), + [sym__dim_keyword] = ACTIONS(9654), + [sym__redim_keyword] = ACTIONS(9654), + [aux_sym_get_accessor_token1] = ACTIONS(9654), + [aux_sym_set_accessor_token1] = ACTIONS(9654), + [aux_sym_const_declaration_token1] = ACTIONS(9654), + [anon_sym_LPAREN] = ACTIONS(9656), + [aux_sym_as_type_clause_token2] = ACTIONS(9654), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9654), + [aux_sym_visibility_token1] = ACTIONS(9654), + [aux_sym_visibility_token2] = ACTIONS(9654), + [aux_sym_elseif_fragment_token1] = ACTIONS(9654), + [aux_sym_else_fragment_token1] = ACTIONS(9654), + [aux_sym_select_statement_token1] = ACTIONS(9654), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9654), + [aux_sym__for_header_token1] = ACTIONS(9654), + [aux_sym_do_statement_token1] = ACTIONS(9654), + [aux_sym_do_condition_token1] = ACTIONS(9654), + [aux_sym_with_statement_token1] = ACTIONS(9654), + [aux_sym_exit_statement_token1] = ACTIONS(9654), + [sym_end_statement] = ACTIONS(9656), + [aux_sym_on_goto_statement_token1] = ACTIONS(9654), + [aux_sym_on_goto_statement_token2] = ACTIONS(9654), + [aux_sym_on_error_statement_token2] = ACTIONS(9654), + [sym__ambiguous_redim_statement] = ACTIONS(9656), + [aux_sym_erase_statement_token1] = ACTIONS(9654), + [aux_sym_open_statement_token1] = ACTIONS(9654), + [aux_sym_file_mode_token2] = ACTIONS(9654), + [aux_sym_file_access_token2] = ACTIONS(9654), + [aux_sym_file_lock_token2] = ACTIONS(9654), + [aux_sym_print_statement_token1] = ACTIONS(9654), + [anon_sym_PLUS] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(9654), + [anon_sym_QMARK] = ACTIONS(9656), + [aux_sym_close_statement_token1] = ACTIONS(9654), + [aux_sym_put_statement_token1] = ACTIONS(9654), + [aux_sym_unlock_statement_token1] = ACTIONS(9654), + [aux_sym_seek_statement_token1] = ACTIONS(9654), + [sym_reset_statement] = ACTIONS(9654), + [aux_sym_raise_event_statement_token1] = ACTIONS(9654), + [sym_stop_statement] = ACTIONS(9654), + [sym_beep_statement] = ACTIONS(9654), + [aux_sym_unload_statement_token1] = ACTIONS(9654), + [aux_sym_def_type_statement_token1] = ACTIONS(9654), + [aux_sym_def_type_statement_token2] = ACTIONS(9654), + [aux_sym_def_type_statement_token3] = ACTIONS(9654), + [aux_sym_def_type_statement_token4] = ACTIONS(9654), + [aux_sym_def_type_statement_token5] = ACTIONS(9654), + [aux_sym_def_type_statement_token6] = ACTIONS(9654), + [aux_sym_def_type_statement_token7] = ACTIONS(9654), + [aux_sym_def_type_statement_token8] = ACTIONS(9654), + [aux_sym_def_type_statement_token9] = ACTIONS(9654), + [aux_sym_def_type_statement_token10] = ACTIONS(9654), + [aux_sym_def_type_statement_token11] = ACTIONS(9654), + [aux_sym_def_type_statement_token12] = ACTIONS(9654), + [aux_sym_def_type_statement_token13] = ACTIONS(9654), + [aux_sym_def_type_statement_token14] = ACTIONS(9654), + [aux_sym_call_statement_token1] = ACTIONS(9654), + [sym__ambiguous_call_statement] = ACTIONS(9654), + [aux_sym_addressof_expression_token1] = ACTIONS(9654), + [aux_sym_type_of_expression_token1] = ACTIONS(9654), + [aux_sym_unary_expression_token1] = ACTIONS(9654), + [sym_string_literal] = ACTIONS(9656), + [sym_number_literal] = ACTIONS(9656), + [aux_sym_boolean_literal_token1] = ACTIONS(9654), + [aux_sym_boolean_literal_token2] = ACTIONS(9654), + [sym_nothing_literal] = ACTIONS(9654), + [sym_null_literal] = ACTIONS(9654), + [sym_empty_literal] = ACTIONS(9654), + [sym_date_literal] = ACTIONS(9656), + [anon_sym_POUND] = ACTIONS(9654), + }, + [STATE(6637)] = { + [sym_identifier] = ACTIONS(9332), + [sym_newline] = ACTIONS(9334), + [anon_sym_COLON] = ACTIONS(9334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9332), + [aux_sym_frm_property_statement_token1] = ACTIONS(9332), + [anon_sym_DOT] = ACTIONS(9332), + [anon_sym_BANG] = ACTIONS(9334), + [aux_sym__attribute_identifier_token1] = ACTIONS(9332), + [aux_sym_option_statement_token3] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9332), + [aux_sym_preprocessor_const_token1] = ACTIONS(9332), + [sym_static_modifier] = ACTIONS(9332), + [sym__dim_keyword] = ACTIONS(9332), + [sym__redim_keyword] = ACTIONS(9332), + [aux_sym_get_accessor_token1] = ACTIONS(9332), + [aux_sym_set_accessor_token1] = ACTIONS(9332), + [aux_sym_const_declaration_token1] = ACTIONS(9332), + [anon_sym_LPAREN] = ACTIONS(9334), + [aux_sym_as_type_clause_token2] = ACTIONS(9332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9332), + [aux_sym_visibility_token1] = ACTIONS(9332), + [aux_sym_visibility_token2] = ACTIONS(9332), + [aux_sym_elseif_fragment_token1] = ACTIONS(9332), + [aux_sym_else_fragment_token1] = ACTIONS(9332), + [aux_sym_select_statement_token1] = ACTIONS(9332), + [aux_sym_select_statement_token2] = ACTIONS(9332), + [aux_sym__for_header_token1] = ACTIONS(9332), + [aux_sym_do_statement_token1] = ACTIONS(9332), + [aux_sym_do_condition_token1] = ACTIONS(9332), + [aux_sym_with_statement_token1] = ACTIONS(9332), + [aux_sym_exit_statement_token1] = ACTIONS(9332), + [sym_end_statement] = ACTIONS(9334), + [aux_sym_on_goto_statement_token1] = ACTIONS(9332), + [aux_sym_on_goto_statement_token2] = ACTIONS(9332), + [aux_sym_on_error_statement_token2] = ACTIONS(9332), + [sym__ambiguous_redim_statement] = ACTIONS(9334), + [aux_sym_erase_statement_token1] = ACTIONS(9332), + [aux_sym_open_statement_token1] = ACTIONS(9332), + [aux_sym_file_mode_token2] = ACTIONS(9332), + [aux_sym_file_access_token2] = ACTIONS(9332), + [aux_sym_file_lock_token2] = ACTIONS(9332), + [aux_sym_print_statement_token1] = ACTIONS(9332), + [anon_sym_PLUS] = ACTIONS(9334), + [anon_sym_DASH] = ACTIONS(9332), + [anon_sym_QMARK] = ACTIONS(9334), + [aux_sym_close_statement_token1] = ACTIONS(9332), + [aux_sym_put_statement_token1] = ACTIONS(9332), + [aux_sym_unlock_statement_token1] = ACTIONS(9332), + [aux_sym_seek_statement_token1] = ACTIONS(9332), + [sym_reset_statement] = ACTIONS(9332), + [aux_sym_raise_event_statement_token1] = ACTIONS(9332), + [sym_stop_statement] = ACTIONS(9332), + [sym_beep_statement] = ACTIONS(9332), + [aux_sym_unload_statement_token1] = ACTIONS(9332), + [aux_sym_def_type_statement_token1] = ACTIONS(9332), + [aux_sym_def_type_statement_token2] = ACTIONS(9332), + [aux_sym_def_type_statement_token3] = ACTIONS(9332), + [aux_sym_def_type_statement_token4] = ACTIONS(9332), + [aux_sym_def_type_statement_token5] = ACTIONS(9332), + [aux_sym_def_type_statement_token6] = ACTIONS(9332), + [aux_sym_def_type_statement_token7] = ACTIONS(9332), + [aux_sym_def_type_statement_token8] = ACTIONS(9332), + [aux_sym_def_type_statement_token9] = ACTIONS(9332), + [aux_sym_def_type_statement_token10] = ACTIONS(9332), + [aux_sym_def_type_statement_token11] = ACTIONS(9332), + [aux_sym_def_type_statement_token12] = ACTIONS(9332), + [aux_sym_def_type_statement_token13] = ACTIONS(9332), + [aux_sym_def_type_statement_token14] = ACTIONS(9332), + [aux_sym_call_statement_token1] = ACTIONS(9332), + [sym__ambiguous_call_statement] = ACTIONS(9332), + [aux_sym_addressof_expression_token1] = ACTIONS(9332), + [aux_sym_type_of_expression_token1] = ACTIONS(9332), + [aux_sym_unary_expression_token1] = ACTIONS(9332), + [sym_string_literal] = ACTIONS(9334), + [sym_number_literal] = ACTIONS(9334), + [aux_sym_boolean_literal_token1] = ACTIONS(9332), + [aux_sym_boolean_literal_token2] = ACTIONS(9332), + [sym_nothing_literal] = ACTIONS(9332), + [sym_null_literal] = ACTIONS(9332), + [sym_empty_literal] = ACTIONS(9332), + [sym_date_literal] = ACTIONS(9334), + [anon_sym_POUND] = ACTIONS(9332), + }, + [STATE(6638)] = { + [sym_identifier] = ACTIONS(9658), + [sym_newline] = ACTIONS(9660), + [anon_sym_COLON] = ACTIONS(9660), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9658), + [aux_sym_frm_property_statement_token1] = ACTIONS(9658), + [anon_sym_DOT] = ACTIONS(9658), + [anon_sym_BANG] = ACTIONS(9660), + [aux_sym__attribute_identifier_token1] = ACTIONS(9658), + [aux_sym_option_statement_token3] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9658), + [aux_sym_preprocessor_const_token1] = ACTIONS(9658), + [sym_static_modifier] = ACTIONS(9658), + [sym__dim_keyword] = ACTIONS(9658), + [sym__redim_keyword] = ACTIONS(9658), + [aux_sym_get_accessor_token1] = ACTIONS(9658), + [aux_sym_set_accessor_token1] = ACTIONS(9658), + [aux_sym_const_declaration_token1] = ACTIONS(9658), + [anon_sym_LPAREN] = ACTIONS(9660), + [aux_sym_as_type_clause_token2] = ACTIONS(9658), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9658), + [aux_sym_visibility_token1] = ACTIONS(9658), + [aux_sym_visibility_token2] = ACTIONS(9658), + [aux_sym_elseif_fragment_token1] = ACTIONS(9658), + [aux_sym_else_fragment_token1] = ACTIONS(9658), + [aux_sym_select_statement_token1] = ACTIONS(9658), + [aux_sym__for_header_token1] = ACTIONS(9658), + [aux_sym_do_statement_token1] = ACTIONS(9658), + [aux_sym_do_condition_token1] = ACTIONS(9658), + [aux_sym_while_statement_token1] = ACTIONS(9658), + [aux_sym_with_statement_token1] = ACTIONS(9658), + [aux_sym_exit_statement_token1] = ACTIONS(9658), + [sym_end_statement] = ACTIONS(9660), + [aux_sym_on_goto_statement_token1] = ACTIONS(9658), + [aux_sym_on_goto_statement_token2] = ACTIONS(9658), + [aux_sym_on_error_statement_token2] = ACTIONS(9658), + [sym__ambiguous_redim_statement] = ACTIONS(9660), + [aux_sym_erase_statement_token1] = ACTIONS(9658), + [aux_sym_open_statement_token1] = ACTIONS(9658), + [aux_sym_file_mode_token2] = ACTIONS(9658), + [aux_sym_file_access_token2] = ACTIONS(9658), + [aux_sym_file_lock_token2] = ACTIONS(9658), + [aux_sym_print_statement_token1] = ACTIONS(9658), + [anon_sym_PLUS] = ACTIONS(9660), + [anon_sym_DASH] = ACTIONS(9658), + [anon_sym_QMARK] = ACTIONS(9660), + [aux_sym_close_statement_token1] = ACTIONS(9658), + [aux_sym_put_statement_token1] = ACTIONS(9658), + [aux_sym_unlock_statement_token1] = ACTIONS(9658), + [aux_sym_seek_statement_token1] = ACTIONS(9658), + [sym_reset_statement] = ACTIONS(9658), + [aux_sym_raise_event_statement_token1] = ACTIONS(9658), + [sym_stop_statement] = ACTIONS(9658), + [sym_beep_statement] = ACTIONS(9658), + [aux_sym_unload_statement_token1] = ACTIONS(9658), + [aux_sym_def_type_statement_token1] = ACTIONS(9658), + [aux_sym_def_type_statement_token2] = ACTIONS(9658), + [aux_sym_def_type_statement_token3] = ACTIONS(9658), + [aux_sym_def_type_statement_token4] = ACTIONS(9658), + [aux_sym_def_type_statement_token5] = ACTIONS(9658), + [aux_sym_def_type_statement_token6] = ACTIONS(9658), + [aux_sym_def_type_statement_token7] = ACTIONS(9658), + [aux_sym_def_type_statement_token8] = ACTIONS(9658), + [aux_sym_def_type_statement_token9] = ACTIONS(9658), + [aux_sym_def_type_statement_token10] = ACTIONS(9658), + [aux_sym_def_type_statement_token11] = ACTIONS(9658), + [aux_sym_def_type_statement_token12] = ACTIONS(9658), + [aux_sym_def_type_statement_token13] = ACTIONS(9658), + [aux_sym_def_type_statement_token14] = ACTIONS(9658), + [aux_sym_call_statement_token1] = ACTIONS(9658), + [sym__ambiguous_call_statement] = ACTIONS(9658), + [aux_sym_addressof_expression_token1] = ACTIONS(9658), + [aux_sym_type_of_expression_token1] = ACTIONS(9658), + [aux_sym_unary_expression_token1] = ACTIONS(9658), + [sym_string_literal] = ACTIONS(9660), + [sym_number_literal] = ACTIONS(9660), + [aux_sym_boolean_literal_token1] = ACTIONS(9658), + [aux_sym_boolean_literal_token2] = ACTIONS(9658), + [sym_nothing_literal] = ACTIONS(9658), + [sym_null_literal] = ACTIONS(9658), + [sym_empty_literal] = ACTIONS(9658), + [sym_date_literal] = ACTIONS(9660), + [anon_sym_POUND] = ACTIONS(9658), + }, + [STATE(6639)] = { + [sym_identifier] = ACTIONS(9662), + [sym_newline] = ACTIONS(9664), + [anon_sym_COLON] = ACTIONS(9664), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9662), + [aux_sym_frm_property_statement_token1] = ACTIONS(9662), + [anon_sym_DOT] = ACTIONS(9662), + [anon_sym_BANG] = ACTIONS(9664), + [aux_sym__attribute_identifier_token1] = ACTIONS(9662), + [aux_sym_option_statement_token3] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9662), + [aux_sym_preprocessor_const_token1] = ACTIONS(9662), + [sym_static_modifier] = ACTIONS(9662), + [sym__dim_keyword] = ACTIONS(9662), + [sym__redim_keyword] = ACTIONS(9662), + [aux_sym_get_accessor_token1] = ACTIONS(9662), + [aux_sym_set_accessor_token1] = ACTIONS(9662), + [aux_sym_const_declaration_token1] = ACTIONS(9662), + [anon_sym_LPAREN] = ACTIONS(9664), + [aux_sym_as_type_clause_token2] = ACTIONS(9662), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9662), + [aux_sym_visibility_token1] = ACTIONS(9662), + [aux_sym_visibility_token2] = ACTIONS(9662), + [aux_sym_elseif_fragment_token1] = ACTIONS(9662), + [aux_sym_else_fragment_token1] = ACTIONS(9662), + [aux_sym_select_statement_token1] = ACTIONS(9662), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9662), + [aux_sym__for_header_token1] = ACTIONS(9662), + [aux_sym_do_statement_token1] = ACTIONS(9662), + [aux_sym_do_condition_token1] = ACTIONS(9662), + [aux_sym_with_statement_token1] = ACTIONS(9662), + [aux_sym_exit_statement_token1] = ACTIONS(9662), + [sym_end_statement] = ACTIONS(9664), + [aux_sym_on_goto_statement_token1] = ACTIONS(9662), + [aux_sym_on_goto_statement_token2] = ACTIONS(9662), + [aux_sym_on_error_statement_token2] = ACTIONS(9662), + [sym__ambiguous_redim_statement] = ACTIONS(9664), + [aux_sym_erase_statement_token1] = ACTIONS(9662), + [aux_sym_open_statement_token1] = ACTIONS(9662), + [aux_sym_file_mode_token2] = ACTIONS(9662), + [aux_sym_file_access_token2] = ACTIONS(9662), + [aux_sym_file_lock_token2] = ACTIONS(9662), + [aux_sym_print_statement_token1] = ACTIONS(9662), + [anon_sym_PLUS] = ACTIONS(9664), + [anon_sym_DASH] = ACTIONS(9662), + [anon_sym_QMARK] = ACTIONS(9664), + [aux_sym_close_statement_token1] = ACTIONS(9662), + [aux_sym_put_statement_token1] = ACTIONS(9662), + [aux_sym_unlock_statement_token1] = ACTIONS(9662), + [aux_sym_seek_statement_token1] = ACTIONS(9662), + [sym_reset_statement] = ACTIONS(9662), + [aux_sym_raise_event_statement_token1] = ACTIONS(9662), + [sym_stop_statement] = ACTIONS(9662), + [sym_beep_statement] = ACTIONS(9662), + [aux_sym_unload_statement_token1] = ACTIONS(9662), + [aux_sym_def_type_statement_token1] = ACTIONS(9662), + [aux_sym_def_type_statement_token2] = ACTIONS(9662), + [aux_sym_def_type_statement_token3] = ACTIONS(9662), + [aux_sym_def_type_statement_token4] = ACTIONS(9662), + [aux_sym_def_type_statement_token5] = ACTIONS(9662), + [aux_sym_def_type_statement_token6] = ACTIONS(9662), + [aux_sym_def_type_statement_token7] = ACTIONS(9662), + [aux_sym_def_type_statement_token8] = ACTIONS(9662), + [aux_sym_def_type_statement_token9] = ACTIONS(9662), + [aux_sym_def_type_statement_token10] = ACTIONS(9662), + [aux_sym_def_type_statement_token11] = ACTIONS(9662), + [aux_sym_def_type_statement_token12] = ACTIONS(9662), + [aux_sym_def_type_statement_token13] = ACTIONS(9662), + [aux_sym_def_type_statement_token14] = ACTIONS(9662), + [aux_sym_call_statement_token1] = ACTIONS(9662), + [sym__ambiguous_call_statement] = ACTIONS(9662), + [aux_sym_addressof_expression_token1] = ACTIONS(9662), + [aux_sym_type_of_expression_token1] = ACTIONS(9662), + [aux_sym_unary_expression_token1] = ACTIONS(9662), + [sym_string_literal] = ACTIONS(9664), + [sym_number_literal] = ACTIONS(9664), + [aux_sym_boolean_literal_token1] = ACTIONS(9662), + [aux_sym_boolean_literal_token2] = ACTIONS(9662), + [sym_nothing_literal] = ACTIONS(9662), + [sym_null_literal] = ACTIONS(9662), + [sym_empty_literal] = ACTIONS(9662), + [sym_date_literal] = ACTIONS(9664), + [anon_sym_POUND] = ACTIONS(9662), + }, + [STATE(6640)] = { + [sym_identifier] = ACTIONS(9666), + [sym_newline] = ACTIONS(9668), + [anon_sym_COLON] = ACTIONS(9668), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9666), + [aux_sym_frm_property_statement_token1] = ACTIONS(9666), + [anon_sym_DOT] = ACTIONS(9666), + [anon_sym_BANG] = ACTIONS(9668), + [aux_sym__attribute_identifier_token1] = ACTIONS(9666), + [aux_sym_option_statement_token3] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9666), + [aux_sym_preprocessor_const_token1] = ACTIONS(9666), + [sym_static_modifier] = ACTIONS(9666), + [sym__dim_keyword] = ACTIONS(9666), + [sym__redim_keyword] = ACTIONS(9666), + [aux_sym_get_accessor_token1] = ACTIONS(9666), + [aux_sym_set_accessor_token1] = ACTIONS(9666), + [aux_sym_const_declaration_token1] = ACTIONS(9666), + [anon_sym_LPAREN] = ACTIONS(9668), + [aux_sym_as_type_clause_token2] = ACTIONS(9666), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9666), + [aux_sym_visibility_token1] = ACTIONS(9666), + [aux_sym_visibility_token2] = ACTIONS(9666), + [aux_sym_elseif_fragment_token1] = ACTIONS(9666), + [aux_sym_else_fragment_token1] = ACTIONS(9666), + [aux_sym_select_statement_token1] = ACTIONS(9666), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9666), + [aux_sym__for_header_token1] = ACTIONS(9666), + [aux_sym_do_statement_token1] = ACTIONS(9666), + [aux_sym_do_condition_token1] = ACTIONS(9666), + [aux_sym_with_statement_token1] = ACTIONS(9666), + [aux_sym_exit_statement_token1] = ACTIONS(9666), + [sym_end_statement] = ACTIONS(9668), + [aux_sym_on_goto_statement_token1] = ACTIONS(9666), + [aux_sym_on_goto_statement_token2] = ACTIONS(9666), + [aux_sym_on_error_statement_token2] = ACTIONS(9666), + [sym__ambiguous_redim_statement] = ACTIONS(9668), + [aux_sym_erase_statement_token1] = ACTIONS(9666), + [aux_sym_open_statement_token1] = ACTIONS(9666), + [aux_sym_file_mode_token2] = ACTIONS(9666), + [aux_sym_file_access_token2] = ACTIONS(9666), + [aux_sym_file_lock_token2] = ACTIONS(9666), + [aux_sym_print_statement_token1] = ACTIONS(9666), + [anon_sym_PLUS] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(9666), + [anon_sym_QMARK] = ACTIONS(9668), + [aux_sym_close_statement_token1] = ACTIONS(9666), + [aux_sym_put_statement_token1] = ACTIONS(9666), + [aux_sym_unlock_statement_token1] = ACTIONS(9666), + [aux_sym_seek_statement_token1] = ACTIONS(9666), + [sym_reset_statement] = ACTIONS(9666), + [aux_sym_raise_event_statement_token1] = ACTIONS(9666), + [sym_stop_statement] = ACTIONS(9666), + [sym_beep_statement] = ACTIONS(9666), + [aux_sym_unload_statement_token1] = ACTIONS(9666), + [aux_sym_def_type_statement_token1] = ACTIONS(9666), + [aux_sym_def_type_statement_token2] = ACTIONS(9666), + [aux_sym_def_type_statement_token3] = ACTIONS(9666), + [aux_sym_def_type_statement_token4] = ACTIONS(9666), + [aux_sym_def_type_statement_token5] = ACTIONS(9666), + [aux_sym_def_type_statement_token6] = ACTIONS(9666), + [aux_sym_def_type_statement_token7] = ACTIONS(9666), + [aux_sym_def_type_statement_token8] = ACTIONS(9666), + [aux_sym_def_type_statement_token9] = ACTIONS(9666), + [aux_sym_def_type_statement_token10] = ACTIONS(9666), + [aux_sym_def_type_statement_token11] = ACTIONS(9666), + [aux_sym_def_type_statement_token12] = ACTIONS(9666), + [aux_sym_def_type_statement_token13] = ACTIONS(9666), + [aux_sym_def_type_statement_token14] = ACTIONS(9666), + [aux_sym_call_statement_token1] = ACTIONS(9666), + [sym__ambiguous_call_statement] = ACTIONS(9666), + [aux_sym_addressof_expression_token1] = ACTIONS(9666), + [aux_sym_type_of_expression_token1] = ACTIONS(9666), + [aux_sym_unary_expression_token1] = ACTIONS(9666), + [sym_string_literal] = ACTIONS(9668), + [sym_number_literal] = ACTIONS(9668), + [aux_sym_boolean_literal_token1] = ACTIONS(9666), + [aux_sym_boolean_literal_token2] = ACTIONS(9666), + [sym_nothing_literal] = ACTIONS(9666), + [sym_null_literal] = ACTIONS(9666), + [sym_empty_literal] = ACTIONS(9666), + [sym_date_literal] = ACTIONS(9668), + [anon_sym_POUND] = ACTIONS(9666), + }, + [STATE(6641)] = { + [sym_identifier] = ACTIONS(11122), + [sym_newline] = ACTIONS(8819), + [anon_sym_COLON] = ACTIONS(8819), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8821), + [aux_sym_frm_property_statement_token1] = ACTIONS(8821), + [anon_sym_DOT] = ACTIONS(8821), + [anon_sym_BANG] = ACTIONS(8819), + [aux_sym__attribute_identifier_token1] = ACTIONS(8821), + [aux_sym_option_statement_token3] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8821), + [aux_sym_preprocessor_const_token1] = ACTIONS(8821), + [sym_static_modifier] = ACTIONS(8821), + [sym__dim_keyword] = ACTIONS(8821), + [sym__redim_keyword] = ACTIONS(8821), + [aux_sym_get_accessor_token1] = ACTIONS(8821), + [aux_sym_set_accessor_token1] = ACTIONS(8821), + [aux_sym_const_declaration_token1] = ACTIONS(8821), + [anon_sym_LPAREN] = ACTIONS(8819), + [aux_sym_as_type_clause_token2] = ACTIONS(8821), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8821), + [aux_sym_visibility_token1] = ACTIONS(8821), + [aux_sym_visibility_token2] = ACTIONS(8821), + [aux_sym_elseif_fragment_token1] = ACTIONS(8821), + [aux_sym_else_fragment_token1] = ACTIONS(8821), + [aux_sym_select_statement_token1] = ACTIONS(8821), + [aux_sym__multiline_for_tail_token1] = ACTIONS(11124), + [aux_sym__for_header_token1] = ACTIONS(8821), + [aux_sym_do_statement_token1] = ACTIONS(8821), + [aux_sym_do_condition_token1] = ACTIONS(8821), + [aux_sym_with_statement_token1] = ACTIONS(8821), + [aux_sym_exit_statement_token1] = ACTIONS(8821), + [sym_end_statement] = ACTIONS(8819), + [aux_sym_on_goto_statement_token1] = ACTIONS(8821), + [aux_sym_on_goto_statement_token2] = ACTIONS(8821), + [aux_sym_on_error_statement_token2] = ACTIONS(8821), + [sym__ambiguous_redim_statement] = ACTIONS(8819), + [aux_sym_erase_statement_token1] = ACTIONS(8821), + [aux_sym_open_statement_token1] = ACTIONS(8821), + [aux_sym_file_mode_token2] = ACTIONS(8821), + [aux_sym_file_access_token2] = ACTIONS(8821), + [aux_sym_file_lock_token2] = ACTIONS(8821), + [aux_sym_print_statement_token1] = ACTIONS(8821), + [anon_sym_PLUS] = ACTIONS(8819), + [anon_sym_DASH] = ACTIONS(8821), + [anon_sym_QMARK] = ACTIONS(8819), + [aux_sym_close_statement_token1] = ACTIONS(8821), + [aux_sym_put_statement_token1] = ACTIONS(8821), + [aux_sym_unlock_statement_token1] = ACTIONS(8821), + [aux_sym_seek_statement_token1] = ACTIONS(8821), + [sym_reset_statement] = ACTIONS(8821), + [aux_sym_raise_event_statement_token1] = ACTIONS(8821), + [sym_stop_statement] = ACTIONS(8821), + [sym_beep_statement] = ACTIONS(8821), + [aux_sym_unload_statement_token1] = ACTIONS(8821), + [aux_sym_def_type_statement_token1] = ACTIONS(8821), + [aux_sym_def_type_statement_token2] = ACTIONS(8821), + [aux_sym_def_type_statement_token3] = ACTIONS(8821), + [aux_sym_def_type_statement_token4] = ACTIONS(8821), + [aux_sym_def_type_statement_token5] = ACTIONS(8821), + [aux_sym_def_type_statement_token6] = ACTIONS(8821), + [aux_sym_def_type_statement_token7] = ACTIONS(8821), + [aux_sym_def_type_statement_token8] = ACTIONS(8821), + [aux_sym_def_type_statement_token9] = ACTIONS(8821), + [aux_sym_def_type_statement_token10] = ACTIONS(8821), + [aux_sym_def_type_statement_token11] = ACTIONS(8821), + [aux_sym_def_type_statement_token12] = ACTIONS(8821), + [aux_sym_def_type_statement_token13] = ACTIONS(8821), + [aux_sym_def_type_statement_token14] = ACTIONS(8821), + [aux_sym_call_statement_token1] = ACTIONS(8821), + [sym__ambiguous_call_statement] = ACTIONS(8821), + [aux_sym_addressof_expression_token1] = ACTIONS(8821), + [aux_sym_type_of_expression_token1] = ACTIONS(8821), + [aux_sym_unary_expression_token1] = ACTIONS(8821), + [sym_string_literal] = ACTIONS(8819), + [sym_number_literal] = ACTIONS(11126), + [aux_sym_boolean_literal_token1] = ACTIONS(8821), + [aux_sym_boolean_literal_token2] = ACTIONS(8821), + [sym_nothing_literal] = ACTIONS(8821), + [sym_null_literal] = ACTIONS(8821), + [sym_empty_literal] = ACTIONS(8821), + [sym_date_literal] = ACTIONS(8819), + [anon_sym_POUND] = ACTIONS(8821), + }, + [STATE(6642)] = { + [sym_identifier] = ACTIONS(9670), + [sym_newline] = ACTIONS(9672), + [anon_sym_COLON] = ACTIONS(9672), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9670), + [aux_sym_frm_property_statement_token1] = ACTIONS(9670), + [anon_sym_DOT] = ACTIONS(9670), + [anon_sym_BANG] = ACTIONS(9672), + [aux_sym__attribute_identifier_token1] = ACTIONS(9670), + [aux_sym_option_statement_token3] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9670), + [aux_sym_preprocessor_const_token1] = ACTIONS(9670), + [sym_static_modifier] = ACTIONS(9670), + [sym__dim_keyword] = ACTIONS(9670), + [sym__redim_keyword] = ACTIONS(9670), + [aux_sym_get_accessor_token1] = ACTIONS(9670), + [aux_sym_set_accessor_token1] = ACTIONS(9670), + [aux_sym_const_declaration_token1] = ACTIONS(9670), + [anon_sym_LPAREN] = ACTIONS(9672), + [aux_sym_as_type_clause_token2] = ACTIONS(9670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9670), + [aux_sym_visibility_token1] = ACTIONS(9670), + [aux_sym_visibility_token2] = ACTIONS(9670), + [aux_sym_elseif_fragment_token1] = ACTIONS(9670), + [aux_sym_else_fragment_token1] = ACTIONS(9670), + [aux_sym_select_statement_token1] = ACTIONS(9670), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9670), + [aux_sym__for_header_token1] = ACTIONS(9670), + [aux_sym_do_statement_token1] = ACTIONS(9670), + [aux_sym_do_condition_token1] = ACTIONS(9670), + [aux_sym_with_statement_token1] = ACTIONS(9670), + [aux_sym_exit_statement_token1] = ACTIONS(9670), + [sym_end_statement] = ACTIONS(9672), + [aux_sym_on_goto_statement_token1] = ACTIONS(9670), + [aux_sym_on_goto_statement_token2] = ACTIONS(9670), + [aux_sym_on_error_statement_token2] = ACTIONS(9670), + [sym__ambiguous_redim_statement] = ACTIONS(9672), + [aux_sym_erase_statement_token1] = ACTIONS(9670), + [aux_sym_open_statement_token1] = ACTIONS(9670), + [aux_sym_file_mode_token2] = ACTIONS(9670), + [aux_sym_file_access_token2] = ACTIONS(9670), + [aux_sym_file_lock_token2] = ACTIONS(9670), + [aux_sym_print_statement_token1] = ACTIONS(9670), + [anon_sym_PLUS] = ACTIONS(9672), + [anon_sym_DASH] = ACTIONS(9670), + [anon_sym_QMARK] = ACTIONS(9672), + [aux_sym_close_statement_token1] = ACTIONS(9670), + [aux_sym_put_statement_token1] = ACTIONS(9670), + [aux_sym_unlock_statement_token1] = ACTIONS(9670), + [aux_sym_seek_statement_token1] = ACTIONS(9670), + [sym_reset_statement] = ACTIONS(9670), + [aux_sym_raise_event_statement_token1] = ACTIONS(9670), + [sym_stop_statement] = ACTIONS(9670), + [sym_beep_statement] = ACTIONS(9670), + [aux_sym_unload_statement_token1] = ACTIONS(9670), + [aux_sym_def_type_statement_token1] = ACTIONS(9670), + [aux_sym_def_type_statement_token2] = ACTIONS(9670), + [aux_sym_def_type_statement_token3] = ACTIONS(9670), + [aux_sym_def_type_statement_token4] = ACTIONS(9670), + [aux_sym_def_type_statement_token5] = ACTIONS(9670), + [aux_sym_def_type_statement_token6] = ACTIONS(9670), + [aux_sym_def_type_statement_token7] = ACTIONS(9670), + [aux_sym_def_type_statement_token8] = ACTIONS(9670), + [aux_sym_def_type_statement_token9] = ACTIONS(9670), + [aux_sym_def_type_statement_token10] = ACTIONS(9670), + [aux_sym_def_type_statement_token11] = ACTIONS(9670), + [aux_sym_def_type_statement_token12] = ACTIONS(9670), + [aux_sym_def_type_statement_token13] = ACTIONS(9670), + [aux_sym_def_type_statement_token14] = ACTIONS(9670), + [aux_sym_call_statement_token1] = ACTIONS(9670), + [sym__ambiguous_call_statement] = ACTIONS(9670), + [aux_sym_addressof_expression_token1] = ACTIONS(9670), + [aux_sym_type_of_expression_token1] = ACTIONS(9670), + [aux_sym_unary_expression_token1] = ACTIONS(9670), + [sym_string_literal] = ACTIONS(9672), + [sym_number_literal] = ACTIONS(9672), + [aux_sym_boolean_literal_token1] = ACTIONS(9670), + [aux_sym_boolean_literal_token2] = ACTIONS(9670), + [sym_nothing_literal] = ACTIONS(9670), + [sym_null_literal] = ACTIONS(9670), + [sym_empty_literal] = ACTIONS(9670), + [sym_date_literal] = ACTIONS(9672), + [anon_sym_POUND] = ACTIONS(9670), + }, + [STATE(6643)] = { + [sym_identifier] = ACTIONS(9677), + [sym_newline] = ACTIONS(9679), + [anon_sym_COLON] = ACTIONS(9679), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9677), + [aux_sym_frm_property_statement_token1] = ACTIONS(9677), + [anon_sym_DOT] = ACTIONS(9677), + [anon_sym_BANG] = ACTIONS(9679), + [aux_sym__attribute_identifier_token1] = ACTIONS(9677), + [aux_sym_option_statement_token3] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9677), + [aux_sym_preprocessor_const_token1] = ACTIONS(9677), + [sym_static_modifier] = ACTIONS(9677), + [sym__dim_keyword] = ACTIONS(9677), + [sym__redim_keyword] = ACTIONS(9677), + [aux_sym_get_accessor_token1] = ACTIONS(9677), + [aux_sym_set_accessor_token1] = ACTIONS(9677), + [aux_sym_const_declaration_token1] = ACTIONS(9677), + [anon_sym_LPAREN] = ACTIONS(9679), + [aux_sym_as_type_clause_token2] = ACTIONS(9677), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9677), + [aux_sym_visibility_token1] = ACTIONS(9677), + [aux_sym_visibility_token2] = ACTIONS(9677), + [aux_sym_elseif_fragment_token1] = ACTIONS(9677), + [aux_sym_else_fragment_token1] = ACTIONS(9677), + [aux_sym_select_statement_token1] = ACTIONS(9677), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9677), + [aux_sym__for_header_token1] = ACTIONS(9677), + [aux_sym_do_statement_token1] = ACTIONS(9677), + [aux_sym_do_condition_token1] = ACTIONS(9677), + [aux_sym_with_statement_token1] = ACTIONS(9677), + [aux_sym_exit_statement_token1] = ACTIONS(9677), + [sym_end_statement] = ACTIONS(9679), + [aux_sym_on_goto_statement_token1] = ACTIONS(9677), + [aux_sym_on_goto_statement_token2] = ACTIONS(9677), + [aux_sym_on_error_statement_token2] = ACTIONS(9677), + [sym__ambiguous_redim_statement] = ACTIONS(9679), + [aux_sym_erase_statement_token1] = ACTIONS(9677), + [aux_sym_open_statement_token1] = ACTIONS(9677), + [aux_sym_file_mode_token2] = ACTIONS(9677), + [aux_sym_file_access_token2] = ACTIONS(9677), + [aux_sym_file_lock_token2] = ACTIONS(9677), + [aux_sym_print_statement_token1] = ACTIONS(9677), + [anon_sym_PLUS] = ACTIONS(9679), + [anon_sym_DASH] = ACTIONS(9677), + [anon_sym_QMARK] = ACTIONS(9679), + [aux_sym_close_statement_token1] = ACTIONS(9677), + [aux_sym_put_statement_token1] = ACTIONS(9677), + [aux_sym_unlock_statement_token1] = ACTIONS(9677), + [aux_sym_seek_statement_token1] = ACTIONS(9677), + [sym_reset_statement] = ACTIONS(9677), + [aux_sym_raise_event_statement_token1] = ACTIONS(9677), + [sym_stop_statement] = ACTIONS(9677), + [sym_beep_statement] = ACTIONS(9677), + [aux_sym_unload_statement_token1] = ACTIONS(9677), + [aux_sym_def_type_statement_token1] = ACTIONS(9677), + [aux_sym_def_type_statement_token2] = ACTIONS(9677), + [aux_sym_def_type_statement_token3] = ACTIONS(9677), + [aux_sym_def_type_statement_token4] = ACTIONS(9677), + [aux_sym_def_type_statement_token5] = ACTIONS(9677), + [aux_sym_def_type_statement_token6] = ACTIONS(9677), + [aux_sym_def_type_statement_token7] = ACTIONS(9677), + [aux_sym_def_type_statement_token8] = ACTIONS(9677), + [aux_sym_def_type_statement_token9] = ACTIONS(9677), + [aux_sym_def_type_statement_token10] = ACTIONS(9677), + [aux_sym_def_type_statement_token11] = ACTIONS(9677), + [aux_sym_def_type_statement_token12] = ACTIONS(9677), + [aux_sym_def_type_statement_token13] = ACTIONS(9677), + [aux_sym_def_type_statement_token14] = ACTIONS(9677), + [aux_sym_call_statement_token1] = ACTIONS(9677), + [sym__ambiguous_call_statement] = ACTIONS(9677), + [aux_sym_addressof_expression_token1] = ACTIONS(9677), + [aux_sym_type_of_expression_token1] = ACTIONS(9677), + [aux_sym_unary_expression_token1] = ACTIONS(9677), + [sym_string_literal] = ACTIONS(9679), + [sym_number_literal] = ACTIONS(9679), + [aux_sym_boolean_literal_token1] = ACTIONS(9677), + [aux_sym_boolean_literal_token2] = ACTIONS(9677), + [sym_nothing_literal] = ACTIONS(9677), + [sym_null_literal] = ACTIONS(9677), + [sym_empty_literal] = ACTIONS(9677), + [sym_date_literal] = ACTIONS(9679), + [anon_sym_POUND] = ACTIONS(9677), + }, + [STATE(6644)] = { + [sym_identifier] = ACTIONS(9405), + [sym_newline] = ACTIONS(9407), + [anon_sym_COLON] = ACTIONS(9407), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9405), + [aux_sym_frm_property_statement_token1] = ACTIONS(9405), + [anon_sym_DOT] = ACTIONS(9405), + [anon_sym_BANG] = ACTIONS(9407), + [aux_sym__attribute_identifier_token1] = ACTIONS(9405), + [aux_sym_option_statement_token3] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9405), + [aux_sym_preprocessor_const_token1] = ACTIONS(9405), + [sym_static_modifier] = ACTIONS(9405), + [sym__dim_keyword] = ACTIONS(9405), + [sym__redim_keyword] = ACTIONS(9405), + [aux_sym_get_accessor_token1] = ACTIONS(9405), + [aux_sym_set_accessor_token1] = ACTIONS(9405), + [aux_sym_const_declaration_token1] = ACTIONS(9405), + [anon_sym_LPAREN] = ACTIONS(9407), + [aux_sym_as_type_clause_token2] = ACTIONS(9405), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9405), + [aux_sym_visibility_token1] = ACTIONS(9405), + [aux_sym_visibility_token2] = ACTIONS(9405), + [aux_sym_elseif_fragment_token1] = ACTIONS(9405), + [aux_sym_else_fragment_token1] = ACTIONS(9405), + [aux_sym_select_statement_token1] = ACTIONS(9405), + [aux_sym__for_header_token1] = ACTIONS(9405), + [aux_sym_do_statement_token1] = ACTIONS(9405), + [aux_sym_do_statement_token2] = ACTIONS(9405), + [aux_sym_do_condition_token1] = ACTIONS(9405), + [aux_sym_with_statement_token1] = ACTIONS(9405), + [aux_sym_exit_statement_token1] = ACTIONS(9405), + [sym_end_statement] = ACTIONS(9407), + [aux_sym_on_goto_statement_token1] = ACTIONS(9405), + [aux_sym_on_goto_statement_token2] = ACTIONS(9405), + [aux_sym_on_error_statement_token2] = ACTIONS(9405), + [sym__ambiguous_redim_statement] = ACTIONS(9407), + [aux_sym_erase_statement_token1] = ACTIONS(9405), + [aux_sym_open_statement_token1] = ACTIONS(9405), + [aux_sym_file_mode_token2] = ACTIONS(9405), + [aux_sym_file_access_token2] = ACTIONS(9405), + [aux_sym_file_lock_token2] = ACTIONS(9405), + [aux_sym_print_statement_token1] = ACTIONS(9405), + [anon_sym_PLUS] = ACTIONS(9407), + [anon_sym_DASH] = ACTIONS(9405), + [anon_sym_QMARK] = ACTIONS(9407), + [aux_sym_close_statement_token1] = ACTIONS(9405), + [aux_sym_put_statement_token1] = ACTIONS(9405), + [aux_sym_unlock_statement_token1] = ACTIONS(9405), + [aux_sym_seek_statement_token1] = ACTIONS(9405), + [sym_reset_statement] = ACTIONS(9405), + [aux_sym_raise_event_statement_token1] = ACTIONS(9405), + [sym_stop_statement] = ACTIONS(9405), + [sym_beep_statement] = ACTIONS(9405), + [aux_sym_unload_statement_token1] = ACTIONS(9405), + [aux_sym_def_type_statement_token1] = ACTIONS(9405), + [aux_sym_def_type_statement_token2] = ACTIONS(9405), + [aux_sym_def_type_statement_token3] = ACTIONS(9405), + [aux_sym_def_type_statement_token4] = ACTIONS(9405), + [aux_sym_def_type_statement_token5] = ACTIONS(9405), + [aux_sym_def_type_statement_token6] = ACTIONS(9405), + [aux_sym_def_type_statement_token7] = ACTIONS(9405), + [aux_sym_def_type_statement_token8] = ACTIONS(9405), + [aux_sym_def_type_statement_token9] = ACTIONS(9405), + [aux_sym_def_type_statement_token10] = ACTIONS(9405), + [aux_sym_def_type_statement_token11] = ACTIONS(9405), + [aux_sym_def_type_statement_token12] = ACTIONS(9405), + [aux_sym_def_type_statement_token13] = ACTIONS(9405), + [aux_sym_def_type_statement_token14] = ACTIONS(9405), + [aux_sym_call_statement_token1] = ACTIONS(9405), + [sym__ambiguous_call_statement] = ACTIONS(9405), + [aux_sym_addressof_expression_token1] = ACTIONS(9405), + [aux_sym_type_of_expression_token1] = ACTIONS(9405), + [aux_sym_unary_expression_token1] = ACTIONS(9405), + [sym_string_literal] = ACTIONS(9407), + [sym_number_literal] = ACTIONS(9407), + [aux_sym_boolean_literal_token1] = ACTIONS(9405), + [aux_sym_boolean_literal_token2] = ACTIONS(9405), + [sym_nothing_literal] = ACTIONS(9405), + [sym_null_literal] = ACTIONS(9405), + [sym_empty_literal] = ACTIONS(9405), + [sym_date_literal] = ACTIONS(9407), + [anon_sym_POUND] = ACTIONS(9405), + }, + [STATE(6645)] = { + [sym_identifier] = ACTIONS(9684), + [sym_newline] = ACTIONS(9686), + [anon_sym_COLON] = ACTIONS(9686), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9684), + [aux_sym_frm_property_statement_token1] = ACTIONS(9684), + [anon_sym_DOT] = ACTIONS(9684), + [anon_sym_BANG] = ACTIONS(9686), + [aux_sym__attribute_identifier_token1] = ACTIONS(9684), + [aux_sym_option_statement_token3] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9684), + [aux_sym_preprocessor_const_token1] = ACTIONS(9684), + [sym_static_modifier] = ACTIONS(9684), + [sym__dim_keyword] = ACTIONS(9684), + [sym__redim_keyword] = ACTIONS(9684), + [aux_sym_get_accessor_token1] = ACTIONS(9684), + [aux_sym_set_accessor_token1] = ACTIONS(9684), + [aux_sym_const_declaration_token1] = ACTIONS(9684), + [anon_sym_LPAREN] = ACTIONS(9686), + [aux_sym_as_type_clause_token2] = ACTIONS(9684), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9684), + [aux_sym_visibility_token1] = ACTIONS(9684), + [aux_sym_visibility_token2] = ACTIONS(9684), + [aux_sym_elseif_fragment_token1] = ACTIONS(9684), + [aux_sym_else_fragment_token1] = ACTIONS(9684), + [aux_sym_select_statement_token1] = ACTIONS(9684), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9684), + [aux_sym__for_header_token1] = ACTIONS(9684), + [aux_sym_do_statement_token1] = ACTIONS(9684), + [aux_sym_do_condition_token1] = ACTIONS(9684), + [aux_sym_with_statement_token1] = ACTIONS(9684), + [aux_sym_exit_statement_token1] = ACTIONS(9684), + [sym_end_statement] = ACTIONS(9686), + [aux_sym_on_goto_statement_token1] = ACTIONS(9684), + [aux_sym_on_goto_statement_token2] = ACTIONS(9684), + [aux_sym_on_error_statement_token2] = ACTIONS(9684), + [sym__ambiguous_redim_statement] = ACTIONS(9686), + [aux_sym_erase_statement_token1] = ACTIONS(9684), + [aux_sym_open_statement_token1] = ACTIONS(9684), + [aux_sym_file_mode_token2] = ACTIONS(9684), + [aux_sym_file_access_token2] = ACTIONS(9684), + [aux_sym_file_lock_token2] = ACTIONS(9684), + [aux_sym_print_statement_token1] = ACTIONS(9684), + [anon_sym_PLUS] = ACTIONS(9686), + [anon_sym_DASH] = ACTIONS(9684), + [anon_sym_QMARK] = ACTIONS(9686), + [aux_sym_close_statement_token1] = ACTIONS(9684), + [aux_sym_put_statement_token1] = ACTIONS(9684), + [aux_sym_unlock_statement_token1] = ACTIONS(9684), + [aux_sym_seek_statement_token1] = ACTIONS(9684), + [sym_reset_statement] = ACTIONS(9684), + [aux_sym_raise_event_statement_token1] = ACTIONS(9684), + [sym_stop_statement] = ACTIONS(9684), + [sym_beep_statement] = ACTIONS(9684), + [aux_sym_unload_statement_token1] = ACTIONS(9684), + [aux_sym_def_type_statement_token1] = ACTIONS(9684), + [aux_sym_def_type_statement_token2] = ACTIONS(9684), + [aux_sym_def_type_statement_token3] = ACTIONS(9684), + [aux_sym_def_type_statement_token4] = ACTIONS(9684), + [aux_sym_def_type_statement_token5] = ACTIONS(9684), + [aux_sym_def_type_statement_token6] = ACTIONS(9684), + [aux_sym_def_type_statement_token7] = ACTIONS(9684), + [aux_sym_def_type_statement_token8] = ACTIONS(9684), + [aux_sym_def_type_statement_token9] = ACTIONS(9684), + [aux_sym_def_type_statement_token10] = ACTIONS(9684), + [aux_sym_def_type_statement_token11] = ACTIONS(9684), + [aux_sym_def_type_statement_token12] = ACTIONS(9684), + [aux_sym_def_type_statement_token13] = ACTIONS(9684), + [aux_sym_def_type_statement_token14] = ACTIONS(9684), + [aux_sym_call_statement_token1] = ACTIONS(9684), + [sym__ambiguous_call_statement] = ACTIONS(9684), + [aux_sym_addressof_expression_token1] = ACTIONS(9684), + [aux_sym_type_of_expression_token1] = ACTIONS(9684), + [aux_sym_unary_expression_token1] = ACTIONS(9684), + [sym_string_literal] = ACTIONS(9686), + [sym_number_literal] = ACTIONS(9686), + [aux_sym_boolean_literal_token1] = ACTIONS(9684), + [aux_sym_boolean_literal_token2] = ACTIONS(9684), + [sym_nothing_literal] = ACTIONS(9684), + [sym_null_literal] = ACTIONS(9684), + [sym_empty_literal] = ACTIONS(9684), + [sym_date_literal] = ACTIONS(9686), + [anon_sym_POUND] = ACTIONS(9684), + }, + [STATE(6646)] = { + [sym_identifier] = ACTIONS(9688), + [sym_newline] = ACTIONS(9690), + [anon_sym_COLON] = ACTIONS(9690), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9688), + [aux_sym_frm_property_statement_token1] = ACTIONS(9688), + [anon_sym_DOT] = ACTIONS(9688), + [anon_sym_BANG] = ACTIONS(9690), + [aux_sym__attribute_identifier_token1] = ACTIONS(9688), + [aux_sym_option_statement_token3] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9688), + [aux_sym_preprocessor_const_token1] = ACTIONS(9688), + [sym_static_modifier] = ACTIONS(9688), + [sym__dim_keyword] = ACTIONS(9688), + [sym__redim_keyword] = ACTIONS(9688), + [aux_sym_get_accessor_token1] = ACTIONS(9688), + [aux_sym_set_accessor_token1] = ACTIONS(9688), + [aux_sym_const_declaration_token1] = ACTIONS(9688), + [anon_sym_LPAREN] = ACTIONS(9690), + [aux_sym_as_type_clause_token2] = ACTIONS(9688), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9688), + [aux_sym_visibility_token1] = ACTIONS(9688), + [aux_sym_visibility_token2] = ACTIONS(9688), + [aux_sym_elseif_fragment_token1] = ACTIONS(9688), + [aux_sym_else_fragment_token1] = ACTIONS(9688), + [aux_sym_select_statement_token1] = ACTIONS(9688), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9688), + [aux_sym__for_header_token1] = ACTIONS(9688), + [aux_sym_do_statement_token1] = ACTIONS(9688), + [aux_sym_do_condition_token1] = ACTIONS(9688), + [aux_sym_with_statement_token1] = ACTIONS(9688), + [aux_sym_exit_statement_token1] = ACTIONS(9688), + [sym_end_statement] = ACTIONS(9690), + [aux_sym_on_goto_statement_token1] = ACTIONS(9688), + [aux_sym_on_goto_statement_token2] = ACTIONS(9688), + [aux_sym_on_error_statement_token2] = ACTIONS(9688), + [sym__ambiguous_redim_statement] = ACTIONS(9690), + [aux_sym_erase_statement_token1] = ACTIONS(9688), + [aux_sym_open_statement_token1] = ACTIONS(9688), + [aux_sym_file_mode_token2] = ACTIONS(9688), + [aux_sym_file_access_token2] = ACTIONS(9688), + [aux_sym_file_lock_token2] = ACTIONS(9688), + [aux_sym_print_statement_token1] = ACTIONS(9688), + [anon_sym_PLUS] = ACTIONS(9690), + [anon_sym_DASH] = ACTIONS(9688), + [anon_sym_QMARK] = ACTIONS(9690), + [aux_sym_close_statement_token1] = ACTIONS(9688), + [aux_sym_put_statement_token1] = ACTIONS(9688), + [aux_sym_unlock_statement_token1] = ACTIONS(9688), + [aux_sym_seek_statement_token1] = ACTIONS(9688), + [sym_reset_statement] = ACTIONS(9688), + [aux_sym_raise_event_statement_token1] = ACTIONS(9688), + [sym_stop_statement] = ACTIONS(9688), + [sym_beep_statement] = ACTIONS(9688), + [aux_sym_unload_statement_token1] = ACTIONS(9688), + [aux_sym_def_type_statement_token1] = ACTIONS(9688), + [aux_sym_def_type_statement_token2] = ACTIONS(9688), + [aux_sym_def_type_statement_token3] = ACTIONS(9688), + [aux_sym_def_type_statement_token4] = ACTIONS(9688), + [aux_sym_def_type_statement_token5] = ACTIONS(9688), + [aux_sym_def_type_statement_token6] = ACTIONS(9688), + [aux_sym_def_type_statement_token7] = ACTIONS(9688), + [aux_sym_def_type_statement_token8] = ACTIONS(9688), + [aux_sym_def_type_statement_token9] = ACTIONS(9688), + [aux_sym_def_type_statement_token10] = ACTIONS(9688), + [aux_sym_def_type_statement_token11] = ACTIONS(9688), + [aux_sym_def_type_statement_token12] = ACTIONS(9688), + [aux_sym_def_type_statement_token13] = ACTIONS(9688), + [aux_sym_def_type_statement_token14] = ACTIONS(9688), + [aux_sym_call_statement_token1] = ACTIONS(9688), + [sym__ambiguous_call_statement] = ACTIONS(9688), + [aux_sym_addressof_expression_token1] = ACTIONS(9688), + [aux_sym_type_of_expression_token1] = ACTIONS(9688), + [aux_sym_unary_expression_token1] = ACTIONS(9688), + [sym_string_literal] = ACTIONS(9690), + [sym_number_literal] = ACTIONS(9690), + [aux_sym_boolean_literal_token1] = ACTIONS(9688), + [aux_sym_boolean_literal_token2] = ACTIONS(9688), + [sym_nothing_literal] = ACTIONS(9688), + [sym_null_literal] = ACTIONS(9688), + [sym_empty_literal] = ACTIONS(9688), + [sym_date_literal] = ACTIONS(9690), + [anon_sym_POUND] = ACTIONS(9688), + }, + [STATE(6647)] = { + [sym_identifier] = ACTIONS(7949), + [sym_newline] = ACTIONS(7951), + [anon_sym_COLON] = ACTIONS(7951), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(7949), + [aux_sym_frm_property_statement_token1] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(7949), + [anon_sym_BANG] = ACTIONS(7951), + [aux_sym__attribute_identifier_token1] = ACTIONS(7949), + [aux_sym_option_statement_token3] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(7949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(7949), + [aux_sym_preprocessor_const_token1] = ACTIONS(7949), + [sym_static_modifier] = ACTIONS(7949), + [sym__dim_keyword] = ACTIONS(7949), + [sym__redim_keyword] = ACTIONS(7949), + [aux_sym_get_accessor_token1] = ACTIONS(7949), + [aux_sym_set_accessor_token1] = ACTIONS(7949), + [anon_sym_COMMA] = ACTIONS(7951), + [aux_sym_const_declaration_token1] = ACTIONS(7949), + [anon_sym_LPAREN] = ACTIONS(7951), + [aux_sym_as_type_clause_token2] = ACTIONS(7949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(7949), + [aux_sym_visibility_token1] = ACTIONS(7949), + [aux_sym_visibility_token2] = ACTIONS(7949), + [aux_sym_elseif_fragment_token1] = ACTIONS(7949), + [aux_sym_else_fragment_token1] = ACTIONS(7949), + [aux_sym_select_statement_token1] = ACTIONS(7949), + [aux_sym__for_header_token1] = ACTIONS(7949), + [aux_sym_do_statement_token1] = ACTIONS(7949), + [aux_sym_do_condition_token1] = ACTIONS(7949), + [aux_sym_with_statement_token1] = ACTIONS(7949), + [aux_sym_exit_statement_token1] = ACTIONS(7949), + [sym_end_statement] = ACTIONS(7951), + [aux_sym_on_goto_statement_token1] = ACTIONS(7949), + [aux_sym_on_goto_statement_token2] = ACTIONS(7949), + [aux_sym_on_error_statement_token2] = ACTIONS(7949), + [sym__ambiguous_redim_statement] = ACTIONS(7951), + [aux_sym_erase_statement_token1] = ACTIONS(7949), + [aux_sym_open_statement_token1] = ACTIONS(7949), + [aux_sym_file_mode_token2] = ACTIONS(7949), + [aux_sym_file_access_token2] = ACTIONS(7949), + [aux_sym_file_lock_token2] = ACTIONS(7949), + [aux_sym_print_statement_token1] = ACTIONS(7949), + [anon_sym_PLUS] = ACTIONS(7951), + [anon_sym_DASH] = ACTIONS(7949), + [anon_sym_QMARK] = ACTIONS(7951), + [aux_sym_close_statement_token1] = ACTIONS(7949), + [aux_sym_put_statement_token1] = ACTIONS(7949), + [aux_sym_unlock_statement_token1] = ACTIONS(7949), + [aux_sym_seek_statement_token1] = ACTIONS(7949), + [sym_reset_statement] = ACTIONS(7949), + [aux_sym_raise_event_statement_token1] = ACTIONS(7949), + [sym_stop_statement] = ACTIONS(7949), + [sym_beep_statement] = ACTIONS(7949), + [aux_sym_unload_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token1] = ACTIONS(7949), + [aux_sym_def_type_statement_token2] = ACTIONS(7949), + [aux_sym_def_type_statement_token3] = ACTIONS(7949), + [aux_sym_def_type_statement_token4] = ACTIONS(7949), + [aux_sym_def_type_statement_token5] = ACTIONS(7949), + [aux_sym_def_type_statement_token6] = ACTIONS(7949), + [aux_sym_def_type_statement_token7] = ACTIONS(7949), + [aux_sym_def_type_statement_token8] = ACTIONS(7949), + [aux_sym_def_type_statement_token9] = ACTIONS(7949), + [aux_sym_def_type_statement_token10] = ACTIONS(7949), + [aux_sym_def_type_statement_token11] = ACTIONS(7949), + [aux_sym_def_type_statement_token12] = ACTIONS(7949), + [aux_sym_def_type_statement_token13] = ACTIONS(7949), + [aux_sym_def_type_statement_token14] = ACTIONS(7949), + [aux_sym_call_statement_token1] = ACTIONS(7949), + [sym__ambiguous_call_statement] = ACTIONS(7949), + [aux_sym_addressof_expression_token1] = ACTIONS(7949), + [aux_sym_type_of_expression_token1] = ACTIONS(7949), + [aux_sym_unary_expression_token1] = ACTIONS(7949), + [sym_string_literal] = ACTIONS(7951), + [sym_number_literal] = ACTIONS(7951), + [aux_sym_boolean_literal_token1] = ACTIONS(7949), + [aux_sym_boolean_literal_token2] = ACTIONS(7949), + [sym_nothing_literal] = ACTIONS(7949), + [sym_null_literal] = ACTIONS(7949), + [sym_empty_literal] = ACTIONS(7949), + [sym_date_literal] = ACTIONS(7951), + [anon_sym_POUND] = ACTIONS(7949), + }, + [STATE(6648)] = { + [sym_identifier] = ACTIONS(9692), + [sym_newline] = ACTIONS(9694), + [anon_sym_COLON] = ACTIONS(9694), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9692), + [aux_sym_frm_property_statement_token1] = ACTIONS(9692), + [anon_sym_DOT] = ACTIONS(9692), + [anon_sym_BANG] = ACTIONS(9694), + [aux_sym__attribute_identifier_token1] = ACTIONS(9692), + [aux_sym_option_statement_token3] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9692), + [aux_sym_preprocessor_const_token1] = ACTIONS(9692), + [sym_static_modifier] = ACTIONS(9692), + [sym__dim_keyword] = ACTIONS(9692), + [sym__redim_keyword] = ACTIONS(9692), + [aux_sym_get_accessor_token1] = ACTIONS(9692), + [aux_sym_set_accessor_token1] = ACTIONS(9692), + [aux_sym_const_declaration_token1] = ACTIONS(9692), + [anon_sym_LPAREN] = ACTIONS(9694), + [aux_sym_as_type_clause_token2] = ACTIONS(9692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9692), + [aux_sym_visibility_token1] = ACTIONS(9692), + [aux_sym_visibility_token2] = ACTIONS(9692), + [aux_sym_elseif_fragment_token1] = ACTIONS(9692), + [aux_sym_else_fragment_token1] = ACTIONS(9692), + [aux_sym_select_statement_token1] = ACTIONS(9692), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9692), + [aux_sym__for_header_token1] = ACTIONS(9692), + [aux_sym_do_statement_token1] = ACTIONS(9692), + [aux_sym_do_condition_token1] = ACTIONS(9692), + [aux_sym_with_statement_token1] = ACTIONS(9692), + [aux_sym_exit_statement_token1] = ACTIONS(9692), + [sym_end_statement] = ACTIONS(9694), + [aux_sym_on_goto_statement_token1] = ACTIONS(9692), + [aux_sym_on_goto_statement_token2] = ACTIONS(9692), + [aux_sym_on_error_statement_token2] = ACTIONS(9692), + [sym__ambiguous_redim_statement] = ACTIONS(9694), + [aux_sym_erase_statement_token1] = ACTIONS(9692), + [aux_sym_open_statement_token1] = ACTIONS(9692), + [aux_sym_file_mode_token2] = ACTIONS(9692), + [aux_sym_file_access_token2] = ACTIONS(9692), + [aux_sym_file_lock_token2] = ACTIONS(9692), + [aux_sym_print_statement_token1] = ACTIONS(9692), + [anon_sym_PLUS] = ACTIONS(9694), + [anon_sym_DASH] = ACTIONS(9692), + [anon_sym_QMARK] = ACTIONS(9694), + [aux_sym_close_statement_token1] = ACTIONS(9692), + [aux_sym_put_statement_token1] = ACTIONS(9692), + [aux_sym_unlock_statement_token1] = ACTIONS(9692), + [aux_sym_seek_statement_token1] = ACTIONS(9692), + [sym_reset_statement] = ACTIONS(9692), + [aux_sym_raise_event_statement_token1] = ACTIONS(9692), + [sym_stop_statement] = ACTIONS(9692), + [sym_beep_statement] = ACTIONS(9692), + [aux_sym_unload_statement_token1] = ACTIONS(9692), + [aux_sym_def_type_statement_token1] = ACTIONS(9692), + [aux_sym_def_type_statement_token2] = ACTIONS(9692), + [aux_sym_def_type_statement_token3] = ACTIONS(9692), + [aux_sym_def_type_statement_token4] = ACTIONS(9692), + [aux_sym_def_type_statement_token5] = ACTIONS(9692), + [aux_sym_def_type_statement_token6] = ACTIONS(9692), + [aux_sym_def_type_statement_token7] = ACTIONS(9692), + [aux_sym_def_type_statement_token8] = ACTIONS(9692), + [aux_sym_def_type_statement_token9] = ACTIONS(9692), + [aux_sym_def_type_statement_token10] = ACTIONS(9692), + [aux_sym_def_type_statement_token11] = ACTIONS(9692), + [aux_sym_def_type_statement_token12] = ACTIONS(9692), + [aux_sym_def_type_statement_token13] = ACTIONS(9692), + [aux_sym_def_type_statement_token14] = ACTIONS(9692), + [aux_sym_call_statement_token1] = ACTIONS(9692), + [sym__ambiguous_call_statement] = ACTIONS(9692), + [aux_sym_addressof_expression_token1] = ACTIONS(9692), + [aux_sym_type_of_expression_token1] = ACTIONS(9692), + [aux_sym_unary_expression_token1] = ACTIONS(9692), + [sym_string_literal] = ACTIONS(9694), + [sym_number_literal] = ACTIONS(9694), + [aux_sym_boolean_literal_token1] = ACTIONS(9692), + [aux_sym_boolean_literal_token2] = ACTIONS(9692), + [sym_nothing_literal] = ACTIONS(9692), + [sym_null_literal] = ACTIONS(9692), + [sym_empty_literal] = ACTIONS(9692), + [sym_date_literal] = ACTIONS(9694), + [anon_sym_POUND] = ACTIONS(9692), + }, + [STATE(6649)] = { + [sym_identifier] = ACTIONS(9696), + [sym_newline] = ACTIONS(9698), + [anon_sym_COLON] = ACTIONS(9698), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9696), + [aux_sym_frm_property_statement_token1] = ACTIONS(9696), + [anon_sym_DOT] = ACTIONS(9696), + [anon_sym_BANG] = ACTIONS(9698), + [aux_sym__attribute_identifier_token1] = ACTIONS(9696), + [aux_sym_option_statement_token3] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9696), + [aux_sym_preprocessor_const_token1] = ACTIONS(9696), + [sym_static_modifier] = ACTIONS(9696), + [sym__dim_keyword] = ACTIONS(9696), + [sym__redim_keyword] = ACTIONS(9696), + [aux_sym_get_accessor_token1] = ACTIONS(9696), + [aux_sym_set_accessor_token1] = ACTIONS(9696), + [aux_sym_const_declaration_token1] = ACTIONS(9696), + [anon_sym_LPAREN] = ACTIONS(9698), + [aux_sym_as_type_clause_token2] = ACTIONS(9696), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9696), + [aux_sym_visibility_token1] = ACTIONS(9696), + [aux_sym_visibility_token2] = ACTIONS(9696), + [aux_sym_elseif_fragment_token1] = ACTIONS(9696), + [aux_sym_else_fragment_token1] = ACTIONS(9696), + [aux_sym_select_statement_token1] = ACTIONS(9696), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9696), + [aux_sym__for_header_token1] = ACTIONS(9696), + [aux_sym_do_statement_token1] = ACTIONS(9696), + [aux_sym_do_condition_token1] = ACTIONS(9696), + [aux_sym_with_statement_token1] = ACTIONS(9696), + [aux_sym_exit_statement_token1] = ACTIONS(9696), + [sym_end_statement] = ACTIONS(9698), + [aux_sym_on_goto_statement_token1] = ACTIONS(9696), + [aux_sym_on_goto_statement_token2] = ACTIONS(9696), + [aux_sym_on_error_statement_token2] = ACTIONS(9696), + [sym__ambiguous_redim_statement] = ACTIONS(9698), + [aux_sym_erase_statement_token1] = ACTIONS(9696), + [aux_sym_open_statement_token1] = ACTIONS(9696), + [aux_sym_file_mode_token2] = ACTIONS(9696), + [aux_sym_file_access_token2] = ACTIONS(9696), + [aux_sym_file_lock_token2] = ACTIONS(9696), + [aux_sym_print_statement_token1] = ACTIONS(9696), + [anon_sym_PLUS] = ACTIONS(9698), + [anon_sym_DASH] = ACTIONS(9696), + [anon_sym_QMARK] = ACTIONS(9698), + [aux_sym_close_statement_token1] = ACTIONS(9696), + [aux_sym_put_statement_token1] = ACTIONS(9696), + [aux_sym_unlock_statement_token1] = ACTIONS(9696), + [aux_sym_seek_statement_token1] = ACTIONS(9696), + [sym_reset_statement] = ACTIONS(9696), + [aux_sym_raise_event_statement_token1] = ACTIONS(9696), + [sym_stop_statement] = ACTIONS(9696), + [sym_beep_statement] = ACTIONS(9696), + [aux_sym_unload_statement_token1] = ACTIONS(9696), + [aux_sym_def_type_statement_token1] = ACTIONS(9696), + [aux_sym_def_type_statement_token2] = ACTIONS(9696), + [aux_sym_def_type_statement_token3] = ACTIONS(9696), + [aux_sym_def_type_statement_token4] = ACTIONS(9696), + [aux_sym_def_type_statement_token5] = ACTIONS(9696), + [aux_sym_def_type_statement_token6] = ACTIONS(9696), + [aux_sym_def_type_statement_token7] = ACTIONS(9696), + [aux_sym_def_type_statement_token8] = ACTIONS(9696), + [aux_sym_def_type_statement_token9] = ACTIONS(9696), + [aux_sym_def_type_statement_token10] = ACTIONS(9696), + [aux_sym_def_type_statement_token11] = ACTIONS(9696), + [aux_sym_def_type_statement_token12] = ACTIONS(9696), + [aux_sym_def_type_statement_token13] = ACTIONS(9696), + [aux_sym_def_type_statement_token14] = ACTIONS(9696), + [aux_sym_call_statement_token1] = ACTIONS(9696), + [sym__ambiguous_call_statement] = ACTIONS(9696), + [aux_sym_addressof_expression_token1] = ACTIONS(9696), + [aux_sym_type_of_expression_token1] = ACTIONS(9696), + [aux_sym_unary_expression_token1] = ACTIONS(9696), + [sym_string_literal] = ACTIONS(9698), + [sym_number_literal] = ACTIONS(9698), + [aux_sym_boolean_literal_token1] = ACTIONS(9696), + [aux_sym_boolean_literal_token2] = ACTIONS(9696), + [sym_nothing_literal] = ACTIONS(9696), + [sym_null_literal] = ACTIONS(9696), + [sym_empty_literal] = ACTIONS(9696), + [sym_date_literal] = ACTIONS(9698), + [anon_sym_POUND] = ACTIONS(9696), + }, + [STATE(6650)] = { + [sym_identifier] = ACTIONS(9700), + [sym_newline] = ACTIONS(9702), + [anon_sym_COLON] = ACTIONS(9702), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9700), + [aux_sym_frm_property_statement_token1] = ACTIONS(9700), + [anon_sym_DOT] = ACTIONS(9700), + [anon_sym_BANG] = ACTIONS(9702), + [aux_sym__attribute_identifier_token1] = ACTIONS(9700), + [aux_sym_option_statement_token3] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9700), + [aux_sym_preprocessor_const_token1] = ACTIONS(9700), + [sym_static_modifier] = ACTIONS(9700), + [sym__dim_keyword] = ACTIONS(9700), + [sym__redim_keyword] = ACTIONS(9700), + [aux_sym_get_accessor_token1] = ACTIONS(9700), + [aux_sym_set_accessor_token1] = ACTIONS(9700), + [aux_sym_const_declaration_token1] = ACTIONS(9700), + [anon_sym_LPAREN] = ACTIONS(9702), + [aux_sym_as_type_clause_token2] = ACTIONS(9700), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9700), + [aux_sym_visibility_token1] = ACTIONS(9700), + [aux_sym_visibility_token2] = ACTIONS(9700), + [aux_sym_elseif_fragment_token1] = ACTIONS(9700), + [aux_sym_else_fragment_token1] = ACTIONS(9700), + [aux_sym_select_statement_token1] = ACTIONS(9700), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9700), + [aux_sym__for_header_token1] = ACTIONS(9700), + [aux_sym_do_statement_token1] = ACTIONS(9700), + [aux_sym_do_condition_token1] = ACTIONS(9700), + [aux_sym_with_statement_token1] = ACTIONS(9700), + [aux_sym_exit_statement_token1] = ACTIONS(9700), + [sym_end_statement] = ACTIONS(9702), + [aux_sym_on_goto_statement_token1] = ACTIONS(9700), + [aux_sym_on_goto_statement_token2] = ACTIONS(9700), + [aux_sym_on_error_statement_token2] = ACTIONS(9700), + [sym__ambiguous_redim_statement] = ACTIONS(9702), + [aux_sym_erase_statement_token1] = ACTIONS(9700), + [aux_sym_open_statement_token1] = ACTIONS(9700), + [aux_sym_file_mode_token2] = ACTIONS(9700), + [aux_sym_file_access_token2] = ACTIONS(9700), + [aux_sym_file_lock_token2] = ACTIONS(9700), + [aux_sym_print_statement_token1] = ACTIONS(9700), + [anon_sym_PLUS] = ACTIONS(9702), + [anon_sym_DASH] = ACTIONS(9700), + [anon_sym_QMARK] = ACTIONS(9702), + [aux_sym_close_statement_token1] = ACTIONS(9700), + [aux_sym_put_statement_token1] = ACTIONS(9700), + [aux_sym_unlock_statement_token1] = ACTIONS(9700), + [aux_sym_seek_statement_token1] = ACTIONS(9700), + [sym_reset_statement] = ACTIONS(9700), + [aux_sym_raise_event_statement_token1] = ACTIONS(9700), + [sym_stop_statement] = ACTIONS(9700), + [sym_beep_statement] = ACTIONS(9700), + [aux_sym_unload_statement_token1] = ACTIONS(9700), + [aux_sym_def_type_statement_token1] = ACTIONS(9700), + [aux_sym_def_type_statement_token2] = ACTIONS(9700), + [aux_sym_def_type_statement_token3] = ACTIONS(9700), + [aux_sym_def_type_statement_token4] = ACTIONS(9700), + [aux_sym_def_type_statement_token5] = ACTIONS(9700), + [aux_sym_def_type_statement_token6] = ACTIONS(9700), + [aux_sym_def_type_statement_token7] = ACTIONS(9700), + [aux_sym_def_type_statement_token8] = ACTIONS(9700), + [aux_sym_def_type_statement_token9] = ACTIONS(9700), + [aux_sym_def_type_statement_token10] = ACTIONS(9700), + [aux_sym_def_type_statement_token11] = ACTIONS(9700), + [aux_sym_def_type_statement_token12] = ACTIONS(9700), + [aux_sym_def_type_statement_token13] = ACTIONS(9700), + [aux_sym_def_type_statement_token14] = ACTIONS(9700), + [aux_sym_call_statement_token1] = ACTIONS(9700), + [sym__ambiguous_call_statement] = ACTIONS(9700), + [aux_sym_addressof_expression_token1] = ACTIONS(9700), + [aux_sym_type_of_expression_token1] = ACTIONS(9700), + [aux_sym_unary_expression_token1] = ACTIONS(9700), + [sym_string_literal] = ACTIONS(9702), + [sym_number_literal] = ACTIONS(9702), + [aux_sym_boolean_literal_token1] = ACTIONS(9700), + [aux_sym_boolean_literal_token2] = ACTIONS(9700), + [sym_nothing_literal] = ACTIONS(9700), + [sym_null_literal] = ACTIONS(9700), + [sym_empty_literal] = ACTIONS(9700), + [sym_date_literal] = ACTIONS(9702), + [anon_sym_POUND] = ACTIONS(9700), + }, + [STATE(6651)] = { + [sym_identifier] = ACTIONS(9704), + [sym_newline] = ACTIONS(9706), + [anon_sym_COLON] = ACTIONS(9706), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9704), + [aux_sym_frm_property_statement_token1] = ACTIONS(9704), + [anon_sym_DOT] = ACTIONS(9704), + [anon_sym_BANG] = ACTIONS(9706), + [aux_sym__attribute_identifier_token1] = ACTIONS(9704), + [aux_sym_option_statement_token3] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9704), + [aux_sym_preprocessor_const_token1] = ACTIONS(9704), + [sym_static_modifier] = ACTIONS(9704), + [sym__dim_keyword] = ACTIONS(9704), + [sym__redim_keyword] = ACTIONS(9704), + [aux_sym_get_accessor_token1] = ACTIONS(9704), + [aux_sym_set_accessor_token1] = ACTIONS(9704), + [aux_sym_const_declaration_token1] = ACTIONS(9704), + [anon_sym_LPAREN] = ACTIONS(9706), + [aux_sym_as_type_clause_token2] = ACTIONS(9704), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9704), + [aux_sym_visibility_token1] = ACTIONS(9704), + [aux_sym_visibility_token2] = ACTIONS(9704), + [aux_sym_elseif_fragment_token1] = ACTIONS(9704), + [aux_sym_else_fragment_token1] = ACTIONS(9704), + [aux_sym_select_statement_token1] = ACTIONS(9704), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9704), + [aux_sym__for_header_token1] = ACTIONS(9704), + [aux_sym_do_statement_token1] = ACTIONS(9704), + [aux_sym_do_condition_token1] = ACTIONS(9704), + [aux_sym_with_statement_token1] = ACTIONS(9704), + [aux_sym_exit_statement_token1] = ACTIONS(9704), + [sym_end_statement] = ACTIONS(9706), + [aux_sym_on_goto_statement_token1] = ACTIONS(9704), + [aux_sym_on_goto_statement_token2] = ACTIONS(9704), + [aux_sym_on_error_statement_token2] = ACTIONS(9704), + [sym__ambiguous_redim_statement] = ACTIONS(9706), + [aux_sym_erase_statement_token1] = ACTIONS(9704), + [aux_sym_open_statement_token1] = ACTIONS(9704), + [aux_sym_file_mode_token2] = ACTIONS(9704), + [aux_sym_file_access_token2] = ACTIONS(9704), + [aux_sym_file_lock_token2] = ACTIONS(9704), + [aux_sym_print_statement_token1] = ACTIONS(9704), + [anon_sym_PLUS] = ACTIONS(9706), + [anon_sym_DASH] = ACTIONS(9704), + [anon_sym_QMARK] = ACTIONS(9706), + [aux_sym_close_statement_token1] = ACTIONS(9704), + [aux_sym_put_statement_token1] = ACTIONS(9704), + [aux_sym_unlock_statement_token1] = ACTIONS(9704), + [aux_sym_seek_statement_token1] = ACTIONS(9704), + [sym_reset_statement] = ACTIONS(9704), + [aux_sym_raise_event_statement_token1] = ACTIONS(9704), + [sym_stop_statement] = ACTIONS(9704), + [sym_beep_statement] = ACTIONS(9704), + [aux_sym_unload_statement_token1] = ACTIONS(9704), + [aux_sym_def_type_statement_token1] = ACTIONS(9704), + [aux_sym_def_type_statement_token2] = ACTIONS(9704), + [aux_sym_def_type_statement_token3] = ACTIONS(9704), + [aux_sym_def_type_statement_token4] = ACTIONS(9704), + [aux_sym_def_type_statement_token5] = ACTIONS(9704), + [aux_sym_def_type_statement_token6] = ACTIONS(9704), + [aux_sym_def_type_statement_token7] = ACTIONS(9704), + [aux_sym_def_type_statement_token8] = ACTIONS(9704), + [aux_sym_def_type_statement_token9] = ACTIONS(9704), + [aux_sym_def_type_statement_token10] = ACTIONS(9704), + [aux_sym_def_type_statement_token11] = ACTIONS(9704), + [aux_sym_def_type_statement_token12] = ACTIONS(9704), + [aux_sym_def_type_statement_token13] = ACTIONS(9704), + [aux_sym_def_type_statement_token14] = ACTIONS(9704), + [aux_sym_call_statement_token1] = ACTIONS(9704), + [sym__ambiguous_call_statement] = ACTIONS(9704), + [aux_sym_addressof_expression_token1] = ACTIONS(9704), + [aux_sym_type_of_expression_token1] = ACTIONS(9704), + [aux_sym_unary_expression_token1] = ACTIONS(9704), + [sym_string_literal] = ACTIONS(9706), + [sym_number_literal] = ACTIONS(9706), + [aux_sym_boolean_literal_token1] = ACTIONS(9704), + [aux_sym_boolean_literal_token2] = ACTIONS(9704), + [sym_nothing_literal] = ACTIONS(9704), + [sym_null_literal] = ACTIONS(9704), + [sym_empty_literal] = ACTIONS(9704), + [sym_date_literal] = ACTIONS(9706), + [anon_sym_POUND] = ACTIONS(9704), + }, + [STATE(6652)] = { + [sym_identifier] = ACTIONS(9708), + [sym_newline] = ACTIONS(9710), + [anon_sym_COLON] = ACTIONS(9710), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9708), + [aux_sym_frm_property_statement_token1] = ACTIONS(9708), + [anon_sym_DOT] = ACTIONS(9708), + [anon_sym_BANG] = ACTIONS(9710), + [aux_sym__attribute_identifier_token1] = ACTIONS(9708), + [aux_sym_option_statement_token3] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9708), + [aux_sym_preprocessor_const_token1] = ACTIONS(9708), + [sym_static_modifier] = ACTIONS(9708), + [sym__dim_keyword] = ACTIONS(9708), + [sym__redim_keyword] = ACTIONS(9708), + [aux_sym_get_accessor_token1] = ACTIONS(9708), + [aux_sym_set_accessor_token1] = ACTIONS(9708), + [aux_sym_const_declaration_token1] = ACTIONS(9708), + [anon_sym_LPAREN] = ACTIONS(9710), + [aux_sym_as_type_clause_token2] = ACTIONS(9708), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9708), + [aux_sym_visibility_token1] = ACTIONS(9708), + [aux_sym_visibility_token2] = ACTIONS(9708), + [aux_sym_elseif_fragment_token1] = ACTIONS(9708), + [aux_sym_else_fragment_token1] = ACTIONS(9708), + [aux_sym_select_statement_token1] = ACTIONS(9708), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9708), + [aux_sym__for_header_token1] = ACTIONS(9708), + [aux_sym_do_statement_token1] = ACTIONS(9708), + [aux_sym_do_condition_token1] = ACTIONS(9708), + [aux_sym_with_statement_token1] = ACTIONS(9708), + [aux_sym_exit_statement_token1] = ACTIONS(9708), + [sym_end_statement] = ACTIONS(9710), + [aux_sym_on_goto_statement_token1] = ACTIONS(9708), + [aux_sym_on_goto_statement_token2] = ACTIONS(9708), + [aux_sym_on_error_statement_token2] = ACTIONS(9708), + [sym__ambiguous_redim_statement] = ACTIONS(9710), + [aux_sym_erase_statement_token1] = ACTIONS(9708), + [aux_sym_open_statement_token1] = ACTIONS(9708), + [aux_sym_file_mode_token2] = ACTIONS(9708), + [aux_sym_file_access_token2] = ACTIONS(9708), + [aux_sym_file_lock_token2] = ACTIONS(9708), + [aux_sym_print_statement_token1] = ACTIONS(9708), + [anon_sym_PLUS] = ACTIONS(9710), + [anon_sym_DASH] = ACTIONS(9708), + [anon_sym_QMARK] = ACTIONS(9710), + [aux_sym_close_statement_token1] = ACTIONS(9708), + [aux_sym_put_statement_token1] = ACTIONS(9708), + [aux_sym_unlock_statement_token1] = ACTIONS(9708), + [aux_sym_seek_statement_token1] = ACTIONS(9708), + [sym_reset_statement] = ACTIONS(9708), + [aux_sym_raise_event_statement_token1] = ACTIONS(9708), + [sym_stop_statement] = ACTIONS(9708), + [sym_beep_statement] = ACTIONS(9708), + [aux_sym_unload_statement_token1] = ACTIONS(9708), + [aux_sym_def_type_statement_token1] = ACTIONS(9708), + [aux_sym_def_type_statement_token2] = ACTIONS(9708), + [aux_sym_def_type_statement_token3] = ACTIONS(9708), + [aux_sym_def_type_statement_token4] = ACTIONS(9708), + [aux_sym_def_type_statement_token5] = ACTIONS(9708), + [aux_sym_def_type_statement_token6] = ACTIONS(9708), + [aux_sym_def_type_statement_token7] = ACTIONS(9708), + [aux_sym_def_type_statement_token8] = ACTIONS(9708), + [aux_sym_def_type_statement_token9] = ACTIONS(9708), + [aux_sym_def_type_statement_token10] = ACTIONS(9708), + [aux_sym_def_type_statement_token11] = ACTIONS(9708), + [aux_sym_def_type_statement_token12] = ACTIONS(9708), + [aux_sym_def_type_statement_token13] = ACTIONS(9708), + [aux_sym_def_type_statement_token14] = ACTIONS(9708), + [aux_sym_call_statement_token1] = ACTIONS(9708), + [sym__ambiguous_call_statement] = ACTIONS(9708), + [aux_sym_addressof_expression_token1] = ACTIONS(9708), + [aux_sym_type_of_expression_token1] = ACTIONS(9708), + [aux_sym_unary_expression_token1] = ACTIONS(9708), + [sym_string_literal] = ACTIONS(9710), + [sym_number_literal] = ACTIONS(9710), + [aux_sym_boolean_literal_token1] = ACTIONS(9708), + [aux_sym_boolean_literal_token2] = ACTIONS(9708), + [sym_nothing_literal] = ACTIONS(9708), + [sym_null_literal] = ACTIONS(9708), + [sym_empty_literal] = ACTIONS(9708), + [sym_date_literal] = ACTIONS(9710), + [anon_sym_POUND] = ACTIONS(9708), + }, + [STATE(6653)] = { + [sym_identifier] = ACTIONS(9409), + [sym_newline] = ACTIONS(9411), + [anon_sym_COLON] = ACTIONS(9411), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9409), + [aux_sym_frm_property_statement_token1] = ACTIONS(9409), + [anon_sym_DOT] = ACTIONS(9409), + [anon_sym_BANG] = ACTIONS(9411), + [aux_sym__attribute_identifier_token1] = ACTIONS(9409), + [aux_sym_option_statement_token3] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9409), + [aux_sym_preprocessor_const_token1] = ACTIONS(9409), + [sym_static_modifier] = ACTIONS(9409), + [sym__dim_keyword] = ACTIONS(9409), + [sym__redim_keyword] = ACTIONS(9409), + [aux_sym_get_accessor_token1] = ACTIONS(9409), + [aux_sym_set_accessor_token1] = ACTIONS(9409), + [aux_sym_const_declaration_token1] = ACTIONS(9409), + [anon_sym_LPAREN] = ACTIONS(9411), + [aux_sym_as_type_clause_token2] = ACTIONS(9409), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9409), + [aux_sym_visibility_token1] = ACTIONS(9409), + [aux_sym_visibility_token2] = ACTIONS(9409), + [aux_sym_elseif_fragment_token1] = ACTIONS(9409), + [aux_sym_else_fragment_token1] = ACTIONS(9409), + [aux_sym_select_statement_token1] = ACTIONS(9409), + [aux_sym__for_header_token1] = ACTIONS(9409), + [aux_sym_do_statement_token1] = ACTIONS(9409), + [aux_sym_do_statement_token2] = ACTIONS(9409), + [aux_sym_do_condition_token1] = ACTIONS(9409), + [aux_sym_with_statement_token1] = ACTIONS(9409), + [aux_sym_exit_statement_token1] = ACTIONS(9409), + [sym_end_statement] = ACTIONS(9411), + [aux_sym_on_goto_statement_token1] = ACTIONS(9409), + [aux_sym_on_goto_statement_token2] = ACTIONS(9409), + [aux_sym_on_error_statement_token2] = ACTIONS(9409), + [sym__ambiguous_redim_statement] = ACTIONS(9411), + [aux_sym_erase_statement_token1] = ACTIONS(9409), + [aux_sym_open_statement_token1] = ACTIONS(9409), + [aux_sym_file_mode_token2] = ACTIONS(9409), + [aux_sym_file_access_token2] = ACTIONS(9409), + [aux_sym_file_lock_token2] = ACTIONS(9409), + [aux_sym_print_statement_token1] = ACTIONS(9409), + [anon_sym_PLUS] = ACTIONS(9411), + [anon_sym_DASH] = ACTIONS(9409), + [anon_sym_QMARK] = ACTIONS(9411), + [aux_sym_close_statement_token1] = ACTIONS(9409), + [aux_sym_put_statement_token1] = ACTIONS(9409), + [aux_sym_unlock_statement_token1] = ACTIONS(9409), + [aux_sym_seek_statement_token1] = ACTIONS(9409), + [sym_reset_statement] = ACTIONS(9409), + [aux_sym_raise_event_statement_token1] = ACTIONS(9409), + [sym_stop_statement] = ACTIONS(9409), + [sym_beep_statement] = ACTIONS(9409), + [aux_sym_unload_statement_token1] = ACTIONS(9409), + [aux_sym_def_type_statement_token1] = ACTIONS(9409), + [aux_sym_def_type_statement_token2] = ACTIONS(9409), + [aux_sym_def_type_statement_token3] = ACTIONS(9409), + [aux_sym_def_type_statement_token4] = ACTIONS(9409), + [aux_sym_def_type_statement_token5] = ACTIONS(9409), + [aux_sym_def_type_statement_token6] = ACTIONS(9409), + [aux_sym_def_type_statement_token7] = ACTIONS(9409), + [aux_sym_def_type_statement_token8] = ACTIONS(9409), + [aux_sym_def_type_statement_token9] = ACTIONS(9409), + [aux_sym_def_type_statement_token10] = ACTIONS(9409), + [aux_sym_def_type_statement_token11] = ACTIONS(9409), + [aux_sym_def_type_statement_token12] = ACTIONS(9409), + [aux_sym_def_type_statement_token13] = ACTIONS(9409), + [aux_sym_def_type_statement_token14] = ACTIONS(9409), + [aux_sym_call_statement_token1] = ACTIONS(9409), + [sym__ambiguous_call_statement] = ACTIONS(9409), + [aux_sym_addressof_expression_token1] = ACTIONS(9409), + [aux_sym_type_of_expression_token1] = ACTIONS(9409), + [aux_sym_unary_expression_token1] = ACTIONS(9409), + [sym_string_literal] = ACTIONS(9411), + [sym_number_literal] = ACTIONS(9411), + [aux_sym_boolean_literal_token1] = ACTIONS(9409), + [aux_sym_boolean_literal_token2] = ACTIONS(9409), + [sym_nothing_literal] = ACTIONS(9409), + [sym_null_literal] = ACTIONS(9409), + [sym_empty_literal] = ACTIONS(9409), + [sym_date_literal] = ACTIONS(9411), + [anon_sym_POUND] = ACTIONS(9409), + }, + [STATE(6654)] = { + [sym_identifier] = ACTIONS(9712), + [sym_newline] = ACTIONS(9714), + [anon_sym_COLON] = ACTIONS(9714), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9712), + [aux_sym_frm_property_statement_token1] = ACTIONS(9712), + [anon_sym_DOT] = ACTIONS(9712), + [anon_sym_BANG] = ACTIONS(9714), + [aux_sym__attribute_identifier_token1] = ACTIONS(9712), + [aux_sym_option_statement_token3] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9712), + [aux_sym_preprocessor_const_token1] = ACTIONS(9712), + [sym_static_modifier] = ACTIONS(9712), + [sym__dim_keyword] = ACTIONS(9712), + [sym__redim_keyword] = ACTIONS(9712), + [aux_sym_get_accessor_token1] = ACTIONS(9712), + [aux_sym_set_accessor_token1] = ACTIONS(9712), + [aux_sym_const_declaration_token1] = ACTIONS(9712), + [anon_sym_LPAREN] = ACTIONS(9714), + [aux_sym_as_type_clause_token2] = ACTIONS(9712), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9712), + [aux_sym_visibility_token1] = ACTIONS(9712), + [aux_sym_visibility_token2] = ACTIONS(9712), + [aux_sym_elseif_fragment_token1] = ACTIONS(9712), + [aux_sym_else_fragment_token1] = ACTIONS(9712), + [aux_sym_select_statement_token1] = ACTIONS(9712), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9712), + [aux_sym__for_header_token1] = ACTIONS(9712), + [aux_sym_do_statement_token1] = ACTIONS(9712), + [aux_sym_do_condition_token1] = ACTIONS(9712), + [aux_sym_with_statement_token1] = ACTIONS(9712), + [aux_sym_exit_statement_token1] = ACTIONS(9712), + [sym_end_statement] = ACTIONS(9714), + [aux_sym_on_goto_statement_token1] = ACTIONS(9712), + [aux_sym_on_goto_statement_token2] = ACTIONS(9712), + [aux_sym_on_error_statement_token2] = ACTIONS(9712), + [sym__ambiguous_redim_statement] = ACTIONS(9714), + [aux_sym_erase_statement_token1] = ACTIONS(9712), + [aux_sym_open_statement_token1] = ACTIONS(9712), + [aux_sym_file_mode_token2] = ACTIONS(9712), + [aux_sym_file_access_token2] = ACTIONS(9712), + [aux_sym_file_lock_token2] = ACTIONS(9712), + [aux_sym_print_statement_token1] = ACTIONS(9712), + [anon_sym_PLUS] = ACTIONS(9714), + [anon_sym_DASH] = ACTIONS(9712), + [anon_sym_QMARK] = ACTIONS(9714), + [aux_sym_close_statement_token1] = ACTIONS(9712), + [aux_sym_put_statement_token1] = ACTIONS(9712), + [aux_sym_unlock_statement_token1] = ACTIONS(9712), + [aux_sym_seek_statement_token1] = ACTIONS(9712), + [sym_reset_statement] = ACTIONS(9712), + [aux_sym_raise_event_statement_token1] = ACTIONS(9712), + [sym_stop_statement] = ACTIONS(9712), + [sym_beep_statement] = ACTIONS(9712), + [aux_sym_unload_statement_token1] = ACTIONS(9712), + [aux_sym_def_type_statement_token1] = ACTIONS(9712), + [aux_sym_def_type_statement_token2] = ACTIONS(9712), + [aux_sym_def_type_statement_token3] = ACTIONS(9712), + [aux_sym_def_type_statement_token4] = ACTIONS(9712), + [aux_sym_def_type_statement_token5] = ACTIONS(9712), + [aux_sym_def_type_statement_token6] = ACTIONS(9712), + [aux_sym_def_type_statement_token7] = ACTIONS(9712), + [aux_sym_def_type_statement_token8] = ACTIONS(9712), + [aux_sym_def_type_statement_token9] = ACTIONS(9712), + [aux_sym_def_type_statement_token10] = ACTIONS(9712), + [aux_sym_def_type_statement_token11] = ACTIONS(9712), + [aux_sym_def_type_statement_token12] = ACTIONS(9712), + [aux_sym_def_type_statement_token13] = ACTIONS(9712), + [aux_sym_def_type_statement_token14] = ACTIONS(9712), + [aux_sym_call_statement_token1] = ACTIONS(9712), + [sym__ambiguous_call_statement] = ACTIONS(9712), + [aux_sym_addressof_expression_token1] = ACTIONS(9712), + [aux_sym_type_of_expression_token1] = ACTIONS(9712), + [aux_sym_unary_expression_token1] = ACTIONS(9712), + [sym_string_literal] = ACTIONS(9714), + [sym_number_literal] = ACTIONS(9714), + [aux_sym_boolean_literal_token1] = ACTIONS(9712), + [aux_sym_boolean_literal_token2] = ACTIONS(9712), + [sym_nothing_literal] = ACTIONS(9712), + [sym_null_literal] = ACTIONS(9712), + [sym_empty_literal] = ACTIONS(9712), + [sym_date_literal] = ACTIONS(9714), + [anon_sym_POUND] = ACTIONS(9712), + }, + [STATE(6655)] = { + [sym_identifier] = ACTIONS(9716), + [sym_newline] = ACTIONS(9718), + [anon_sym_COLON] = ACTIONS(9718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9716), + [aux_sym_frm_property_statement_token1] = ACTIONS(9716), + [anon_sym_DOT] = ACTIONS(9716), + [anon_sym_BANG] = ACTIONS(9718), + [aux_sym__attribute_identifier_token1] = ACTIONS(9716), + [aux_sym_option_statement_token3] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9716), + [aux_sym_preprocessor_const_token1] = ACTIONS(9716), + [sym_static_modifier] = ACTIONS(9716), + [sym__dim_keyword] = ACTIONS(9716), + [sym__redim_keyword] = ACTIONS(9716), + [aux_sym_get_accessor_token1] = ACTIONS(9716), + [aux_sym_set_accessor_token1] = ACTIONS(9716), + [aux_sym_const_declaration_token1] = ACTIONS(9716), + [anon_sym_LPAREN] = ACTIONS(9718), + [aux_sym_as_type_clause_token2] = ACTIONS(9716), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9716), + [aux_sym_visibility_token1] = ACTIONS(9716), + [aux_sym_visibility_token2] = ACTIONS(9716), + [aux_sym_elseif_fragment_token1] = ACTIONS(9716), + [aux_sym_else_fragment_token1] = ACTIONS(9716), + [aux_sym_select_statement_token1] = ACTIONS(9716), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9716), + [aux_sym__for_header_token1] = ACTIONS(9716), + [aux_sym_do_statement_token1] = ACTIONS(9716), + [aux_sym_do_condition_token1] = ACTIONS(9716), + [aux_sym_with_statement_token1] = ACTIONS(9716), + [aux_sym_exit_statement_token1] = ACTIONS(9716), + [sym_end_statement] = ACTIONS(9718), + [aux_sym_on_goto_statement_token1] = ACTIONS(9716), + [aux_sym_on_goto_statement_token2] = ACTIONS(9716), + [aux_sym_on_error_statement_token2] = ACTIONS(9716), + [sym__ambiguous_redim_statement] = ACTIONS(9718), + [aux_sym_erase_statement_token1] = ACTIONS(9716), + [aux_sym_open_statement_token1] = ACTIONS(9716), + [aux_sym_file_mode_token2] = ACTIONS(9716), + [aux_sym_file_access_token2] = ACTIONS(9716), + [aux_sym_file_lock_token2] = ACTIONS(9716), + [aux_sym_print_statement_token1] = ACTIONS(9716), + [anon_sym_PLUS] = ACTIONS(9718), + [anon_sym_DASH] = ACTIONS(9716), + [anon_sym_QMARK] = ACTIONS(9718), + [aux_sym_close_statement_token1] = ACTIONS(9716), + [aux_sym_put_statement_token1] = ACTIONS(9716), + [aux_sym_unlock_statement_token1] = ACTIONS(9716), + [aux_sym_seek_statement_token1] = ACTIONS(9716), + [sym_reset_statement] = ACTIONS(9716), + [aux_sym_raise_event_statement_token1] = ACTIONS(9716), + [sym_stop_statement] = ACTIONS(9716), + [sym_beep_statement] = ACTIONS(9716), + [aux_sym_unload_statement_token1] = ACTIONS(9716), + [aux_sym_def_type_statement_token1] = ACTIONS(9716), + [aux_sym_def_type_statement_token2] = ACTIONS(9716), + [aux_sym_def_type_statement_token3] = ACTIONS(9716), + [aux_sym_def_type_statement_token4] = ACTIONS(9716), + [aux_sym_def_type_statement_token5] = ACTIONS(9716), + [aux_sym_def_type_statement_token6] = ACTIONS(9716), + [aux_sym_def_type_statement_token7] = ACTIONS(9716), + [aux_sym_def_type_statement_token8] = ACTIONS(9716), + [aux_sym_def_type_statement_token9] = ACTIONS(9716), + [aux_sym_def_type_statement_token10] = ACTIONS(9716), + [aux_sym_def_type_statement_token11] = ACTIONS(9716), + [aux_sym_def_type_statement_token12] = ACTIONS(9716), + [aux_sym_def_type_statement_token13] = ACTIONS(9716), + [aux_sym_def_type_statement_token14] = ACTIONS(9716), + [aux_sym_call_statement_token1] = ACTIONS(9716), + [sym__ambiguous_call_statement] = ACTIONS(9716), + [aux_sym_addressof_expression_token1] = ACTIONS(9716), + [aux_sym_type_of_expression_token1] = ACTIONS(9716), + [aux_sym_unary_expression_token1] = ACTIONS(9716), + [sym_string_literal] = ACTIONS(9718), + [sym_number_literal] = ACTIONS(9718), + [aux_sym_boolean_literal_token1] = ACTIONS(9716), + [aux_sym_boolean_literal_token2] = ACTIONS(9716), + [sym_nothing_literal] = ACTIONS(9716), + [sym_null_literal] = ACTIONS(9716), + [sym_empty_literal] = ACTIONS(9716), + [sym_date_literal] = ACTIONS(9718), + [anon_sym_POUND] = ACTIONS(9716), + }, + [STATE(6656)] = { + [sym_identifier] = ACTIONS(9740), + [sym_newline] = ACTIONS(9742), + [anon_sym_COLON] = ACTIONS(9742), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9740), + [aux_sym_frm_property_statement_token1] = ACTIONS(9740), + [anon_sym_DOT] = ACTIONS(9740), + [anon_sym_BANG] = ACTIONS(9742), + [aux_sym__attribute_identifier_token1] = ACTIONS(9740), + [aux_sym_option_statement_token3] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9740), + [aux_sym_preprocessor_const_token1] = ACTIONS(9740), + [sym_static_modifier] = ACTIONS(9740), + [sym__dim_keyword] = ACTIONS(9740), + [sym__redim_keyword] = ACTIONS(9740), + [aux_sym_get_accessor_token1] = ACTIONS(9740), + [aux_sym_set_accessor_token1] = ACTIONS(9740), + [aux_sym_const_declaration_token1] = ACTIONS(9740), + [anon_sym_LPAREN] = ACTIONS(9742), + [aux_sym_as_type_clause_token2] = ACTIONS(9740), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9740), + [aux_sym_visibility_token1] = ACTIONS(9740), + [aux_sym_visibility_token2] = ACTIONS(9740), + [aux_sym_elseif_fragment_token1] = ACTIONS(9740), + [aux_sym_else_fragment_token1] = ACTIONS(9740), + [aux_sym_select_statement_token1] = ACTIONS(9740), + [aux_sym__for_header_token1] = ACTIONS(9740), + [aux_sym_do_statement_token1] = ACTIONS(9740), + [aux_sym_do_condition_token1] = ACTIONS(9740), + [aux_sym_while_statement_token1] = ACTIONS(9740), + [aux_sym_with_statement_token1] = ACTIONS(9740), + [aux_sym_exit_statement_token1] = ACTIONS(9740), + [sym_end_statement] = ACTIONS(9742), + [aux_sym_on_goto_statement_token1] = ACTIONS(9740), + [aux_sym_on_goto_statement_token2] = ACTIONS(9740), + [aux_sym_on_error_statement_token2] = ACTIONS(9740), + [sym__ambiguous_redim_statement] = ACTIONS(9742), + [aux_sym_erase_statement_token1] = ACTIONS(9740), + [aux_sym_open_statement_token1] = ACTIONS(9740), + [aux_sym_file_mode_token2] = ACTIONS(9740), + [aux_sym_file_access_token2] = ACTIONS(9740), + [aux_sym_file_lock_token2] = ACTIONS(9740), + [aux_sym_print_statement_token1] = ACTIONS(9740), + [anon_sym_PLUS] = ACTIONS(9742), + [anon_sym_DASH] = ACTIONS(9740), + [anon_sym_QMARK] = ACTIONS(9742), + [aux_sym_close_statement_token1] = ACTIONS(9740), + [aux_sym_put_statement_token1] = ACTIONS(9740), + [aux_sym_unlock_statement_token1] = ACTIONS(9740), + [aux_sym_seek_statement_token1] = ACTIONS(9740), + [sym_reset_statement] = ACTIONS(9740), + [aux_sym_raise_event_statement_token1] = ACTIONS(9740), + [sym_stop_statement] = ACTIONS(9740), + [sym_beep_statement] = ACTIONS(9740), + [aux_sym_unload_statement_token1] = ACTIONS(9740), + [aux_sym_def_type_statement_token1] = ACTIONS(9740), + [aux_sym_def_type_statement_token2] = ACTIONS(9740), + [aux_sym_def_type_statement_token3] = ACTIONS(9740), + [aux_sym_def_type_statement_token4] = ACTIONS(9740), + [aux_sym_def_type_statement_token5] = ACTIONS(9740), + [aux_sym_def_type_statement_token6] = ACTIONS(9740), + [aux_sym_def_type_statement_token7] = ACTIONS(9740), + [aux_sym_def_type_statement_token8] = ACTIONS(9740), + [aux_sym_def_type_statement_token9] = ACTIONS(9740), + [aux_sym_def_type_statement_token10] = ACTIONS(9740), + [aux_sym_def_type_statement_token11] = ACTIONS(9740), + [aux_sym_def_type_statement_token12] = ACTIONS(9740), + [aux_sym_def_type_statement_token13] = ACTIONS(9740), + [aux_sym_def_type_statement_token14] = ACTIONS(9740), + [aux_sym_call_statement_token1] = ACTIONS(9740), + [sym__ambiguous_call_statement] = ACTIONS(9740), + [aux_sym_addressof_expression_token1] = ACTIONS(9740), + [aux_sym_type_of_expression_token1] = ACTIONS(9740), + [aux_sym_unary_expression_token1] = ACTIONS(9740), + [sym_string_literal] = ACTIONS(9742), + [sym_number_literal] = ACTIONS(9742), + [aux_sym_boolean_literal_token1] = ACTIONS(9740), + [aux_sym_boolean_literal_token2] = ACTIONS(9740), + [sym_nothing_literal] = ACTIONS(9740), + [sym_null_literal] = ACTIONS(9740), + [sym_empty_literal] = ACTIONS(9740), + [sym_date_literal] = ACTIONS(9742), + [anon_sym_POUND] = ACTIONS(9740), + }, + [STATE(6657)] = { + [sym_identifier] = ACTIONS(9744), + [sym_newline] = ACTIONS(9746), + [anon_sym_COLON] = ACTIONS(9746), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9744), + [aux_sym_frm_property_statement_token1] = ACTIONS(9744), + [anon_sym_DOT] = ACTIONS(9744), + [anon_sym_BANG] = ACTIONS(9746), + [aux_sym__attribute_identifier_token1] = ACTIONS(9744), + [aux_sym_option_statement_token3] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9744), + [aux_sym_preprocessor_const_token1] = ACTIONS(9744), + [sym_static_modifier] = ACTIONS(9744), + [sym__dim_keyword] = ACTIONS(9744), + [sym__redim_keyword] = ACTIONS(9744), + [aux_sym_get_accessor_token1] = ACTIONS(9744), + [aux_sym_set_accessor_token1] = ACTIONS(9744), + [aux_sym_const_declaration_token1] = ACTIONS(9744), + [anon_sym_LPAREN] = ACTIONS(9746), + [aux_sym_as_type_clause_token2] = ACTIONS(9744), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9744), + [aux_sym_visibility_token1] = ACTIONS(9744), + [aux_sym_visibility_token2] = ACTIONS(9744), + [aux_sym_elseif_fragment_token1] = ACTIONS(9744), + [aux_sym_else_fragment_token1] = ACTIONS(9744), + [aux_sym_select_statement_token1] = ACTIONS(9744), + [aux_sym__for_header_token1] = ACTIONS(9744), + [aux_sym_do_statement_token1] = ACTIONS(9744), + [aux_sym_do_condition_token1] = ACTIONS(9744), + [aux_sym_while_statement_token1] = ACTIONS(9744), + [aux_sym_with_statement_token1] = ACTIONS(9744), + [aux_sym_exit_statement_token1] = ACTIONS(9744), + [sym_end_statement] = ACTIONS(9746), + [aux_sym_on_goto_statement_token1] = ACTIONS(9744), + [aux_sym_on_goto_statement_token2] = ACTIONS(9744), + [aux_sym_on_error_statement_token2] = ACTIONS(9744), + [sym__ambiguous_redim_statement] = ACTIONS(9746), + [aux_sym_erase_statement_token1] = ACTIONS(9744), + [aux_sym_open_statement_token1] = ACTIONS(9744), + [aux_sym_file_mode_token2] = ACTIONS(9744), + [aux_sym_file_access_token2] = ACTIONS(9744), + [aux_sym_file_lock_token2] = ACTIONS(9744), + [aux_sym_print_statement_token1] = ACTIONS(9744), + [anon_sym_PLUS] = ACTIONS(9746), + [anon_sym_DASH] = ACTIONS(9744), + [anon_sym_QMARK] = ACTIONS(9746), + [aux_sym_close_statement_token1] = ACTIONS(9744), + [aux_sym_put_statement_token1] = ACTIONS(9744), + [aux_sym_unlock_statement_token1] = ACTIONS(9744), + [aux_sym_seek_statement_token1] = ACTIONS(9744), + [sym_reset_statement] = ACTIONS(9744), + [aux_sym_raise_event_statement_token1] = ACTIONS(9744), + [sym_stop_statement] = ACTIONS(9744), + [sym_beep_statement] = ACTIONS(9744), + [aux_sym_unload_statement_token1] = ACTIONS(9744), + [aux_sym_def_type_statement_token1] = ACTIONS(9744), + [aux_sym_def_type_statement_token2] = ACTIONS(9744), + [aux_sym_def_type_statement_token3] = ACTIONS(9744), + [aux_sym_def_type_statement_token4] = ACTIONS(9744), + [aux_sym_def_type_statement_token5] = ACTIONS(9744), + [aux_sym_def_type_statement_token6] = ACTIONS(9744), + [aux_sym_def_type_statement_token7] = ACTIONS(9744), + [aux_sym_def_type_statement_token8] = ACTIONS(9744), + [aux_sym_def_type_statement_token9] = ACTIONS(9744), + [aux_sym_def_type_statement_token10] = ACTIONS(9744), + [aux_sym_def_type_statement_token11] = ACTIONS(9744), + [aux_sym_def_type_statement_token12] = ACTIONS(9744), + [aux_sym_def_type_statement_token13] = ACTIONS(9744), + [aux_sym_def_type_statement_token14] = ACTIONS(9744), + [aux_sym_call_statement_token1] = ACTIONS(9744), + [sym__ambiguous_call_statement] = ACTIONS(9744), + [aux_sym_addressof_expression_token1] = ACTIONS(9744), + [aux_sym_type_of_expression_token1] = ACTIONS(9744), + [aux_sym_unary_expression_token1] = ACTIONS(9744), + [sym_string_literal] = ACTIONS(9746), + [sym_number_literal] = ACTIONS(9746), + [aux_sym_boolean_literal_token1] = ACTIONS(9744), + [aux_sym_boolean_literal_token2] = ACTIONS(9744), + [sym_nothing_literal] = ACTIONS(9744), + [sym_null_literal] = ACTIONS(9744), + [sym_empty_literal] = ACTIONS(9744), + [sym_date_literal] = ACTIONS(9746), + [anon_sym_POUND] = ACTIONS(9744), + }, + [STATE(6658)] = { + [sym_identifier] = ACTIONS(9748), + [sym_newline] = ACTIONS(9750), + [anon_sym_COLON] = ACTIONS(9750), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9748), + [aux_sym_frm_property_statement_token1] = ACTIONS(9748), + [anon_sym_DOT] = ACTIONS(9748), + [anon_sym_BANG] = ACTIONS(9750), + [aux_sym__attribute_identifier_token1] = ACTIONS(9748), + [aux_sym_option_statement_token3] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9748), + [aux_sym_preprocessor_const_token1] = ACTIONS(9748), + [sym_static_modifier] = ACTIONS(9748), + [sym__dim_keyword] = ACTIONS(9748), + [sym__redim_keyword] = ACTIONS(9748), + [aux_sym_get_accessor_token1] = ACTIONS(9748), + [aux_sym_set_accessor_token1] = ACTIONS(9748), + [aux_sym_const_declaration_token1] = ACTIONS(9748), + [anon_sym_LPAREN] = ACTIONS(9750), + [aux_sym_as_type_clause_token2] = ACTIONS(9748), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9748), + [aux_sym_visibility_token1] = ACTIONS(9748), + [aux_sym_visibility_token2] = ACTIONS(9748), + [aux_sym_elseif_fragment_token1] = ACTIONS(9748), + [aux_sym_else_fragment_token1] = ACTIONS(9748), + [aux_sym_select_statement_token1] = ACTIONS(9748), + [aux_sym__for_header_token1] = ACTIONS(9748), + [aux_sym_do_statement_token1] = ACTIONS(9748), + [aux_sym_do_condition_token1] = ACTIONS(9748), + [aux_sym_while_statement_token1] = ACTIONS(9748), + [aux_sym_with_statement_token1] = ACTIONS(9748), + [aux_sym_exit_statement_token1] = ACTIONS(9748), + [sym_end_statement] = ACTIONS(9750), + [aux_sym_on_goto_statement_token1] = ACTIONS(9748), + [aux_sym_on_goto_statement_token2] = ACTIONS(9748), + [aux_sym_on_error_statement_token2] = ACTIONS(9748), + [sym__ambiguous_redim_statement] = ACTIONS(9750), + [aux_sym_erase_statement_token1] = ACTIONS(9748), + [aux_sym_open_statement_token1] = ACTIONS(9748), + [aux_sym_file_mode_token2] = ACTIONS(9748), + [aux_sym_file_access_token2] = ACTIONS(9748), + [aux_sym_file_lock_token2] = ACTIONS(9748), + [aux_sym_print_statement_token1] = ACTIONS(9748), + [anon_sym_PLUS] = ACTIONS(9750), + [anon_sym_DASH] = ACTIONS(9748), + [anon_sym_QMARK] = ACTIONS(9750), + [aux_sym_close_statement_token1] = ACTIONS(9748), + [aux_sym_put_statement_token1] = ACTIONS(9748), + [aux_sym_unlock_statement_token1] = ACTIONS(9748), + [aux_sym_seek_statement_token1] = ACTIONS(9748), + [sym_reset_statement] = ACTIONS(9748), + [aux_sym_raise_event_statement_token1] = ACTIONS(9748), + [sym_stop_statement] = ACTIONS(9748), + [sym_beep_statement] = ACTIONS(9748), + [aux_sym_unload_statement_token1] = ACTIONS(9748), + [aux_sym_def_type_statement_token1] = ACTIONS(9748), + [aux_sym_def_type_statement_token2] = ACTIONS(9748), + [aux_sym_def_type_statement_token3] = ACTIONS(9748), + [aux_sym_def_type_statement_token4] = ACTIONS(9748), + [aux_sym_def_type_statement_token5] = ACTIONS(9748), + [aux_sym_def_type_statement_token6] = ACTIONS(9748), + [aux_sym_def_type_statement_token7] = ACTIONS(9748), + [aux_sym_def_type_statement_token8] = ACTIONS(9748), + [aux_sym_def_type_statement_token9] = ACTIONS(9748), + [aux_sym_def_type_statement_token10] = ACTIONS(9748), + [aux_sym_def_type_statement_token11] = ACTIONS(9748), + [aux_sym_def_type_statement_token12] = ACTIONS(9748), + [aux_sym_def_type_statement_token13] = ACTIONS(9748), + [aux_sym_def_type_statement_token14] = ACTIONS(9748), + [aux_sym_call_statement_token1] = ACTIONS(9748), + [sym__ambiguous_call_statement] = ACTIONS(9748), + [aux_sym_addressof_expression_token1] = ACTIONS(9748), + [aux_sym_type_of_expression_token1] = ACTIONS(9748), + [aux_sym_unary_expression_token1] = ACTIONS(9748), + [sym_string_literal] = ACTIONS(9750), + [sym_number_literal] = ACTIONS(9750), + [aux_sym_boolean_literal_token1] = ACTIONS(9748), + [aux_sym_boolean_literal_token2] = ACTIONS(9748), + [sym_nothing_literal] = ACTIONS(9748), + [sym_null_literal] = ACTIONS(9748), + [sym_empty_literal] = ACTIONS(9748), + [sym_date_literal] = ACTIONS(9750), + [anon_sym_POUND] = ACTIONS(9748), + }, + [STATE(6659)] = { + [sym_identifier] = ACTIONS(9752), + [sym_newline] = ACTIONS(9754), + [anon_sym_COLON] = ACTIONS(9754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9752), + [aux_sym_frm_property_statement_token1] = ACTIONS(9752), + [anon_sym_DOT] = ACTIONS(9752), + [anon_sym_BANG] = ACTIONS(9754), + [aux_sym__attribute_identifier_token1] = ACTIONS(9752), + [aux_sym_option_statement_token3] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9752), + [aux_sym_preprocessor_const_token1] = ACTIONS(9752), + [sym_static_modifier] = ACTIONS(9752), + [sym__dim_keyword] = ACTIONS(9752), + [sym__redim_keyword] = ACTIONS(9752), + [aux_sym_get_accessor_token1] = ACTIONS(9752), + [aux_sym_set_accessor_token1] = ACTIONS(9752), + [aux_sym_const_declaration_token1] = ACTIONS(9752), + [anon_sym_LPAREN] = ACTIONS(9754), + [aux_sym_as_type_clause_token2] = ACTIONS(9752), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9752), + [aux_sym_visibility_token1] = ACTIONS(9752), + [aux_sym_visibility_token2] = ACTIONS(9752), + [aux_sym_elseif_fragment_token1] = ACTIONS(9752), + [aux_sym_else_fragment_token1] = ACTIONS(9752), + [aux_sym_select_statement_token1] = ACTIONS(9752), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9752), + [aux_sym__for_header_token1] = ACTIONS(9752), + [aux_sym_do_statement_token1] = ACTIONS(9752), + [aux_sym_do_condition_token1] = ACTIONS(9752), + [aux_sym_with_statement_token1] = ACTIONS(9752), + [aux_sym_exit_statement_token1] = ACTIONS(9752), + [sym_end_statement] = ACTIONS(9754), + [aux_sym_on_goto_statement_token1] = ACTIONS(9752), + [aux_sym_on_goto_statement_token2] = ACTIONS(9752), + [aux_sym_on_error_statement_token2] = ACTIONS(9752), + [sym__ambiguous_redim_statement] = ACTIONS(9754), + [aux_sym_erase_statement_token1] = ACTIONS(9752), + [aux_sym_open_statement_token1] = ACTIONS(9752), + [aux_sym_file_mode_token2] = ACTIONS(9752), + [aux_sym_file_access_token2] = ACTIONS(9752), + [aux_sym_file_lock_token2] = ACTIONS(9752), + [aux_sym_print_statement_token1] = ACTIONS(9752), + [anon_sym_PLUS] = ACTIONS(9754), + [anon_sym_DASH] = ACTIONS(9752), + [anon_sym_QMARK] = ACTIONS(9754), + [aux_sym_close_statement_token1] = ACTIONS(9752), + [aux_sym_put_statement_token1] = ACTIONS(9752), + [aux_sym_unlock_statement_token1] = ACTIONS(9752), + [aux_sym_seek_statement_token1] = ACTIONS(9752), + [sym_reset_statement] = ACTIONS(9752), + [aux_sym_raise_event_statement_token1] = ACTIONS(9752), + [sym_stop_statement] = ACTIONS(9752), + [sym_beep_statement] = ACTIONS(9752), + [aux_sym_unload_statement_token1] = ACTIONS(9752), + [aux_sym_def_type_statement_token1] = ACTIONS(9752), + [aux_sym_def_type_statement_token2] = ACTIONS(9752), + [aux_sym_def_type_statement_token3] = ACTIONS(9752), + [aux_sym_def_type_statement_token4] = ACTIONS(9752), + [aux_sym_def_type_statement_token5] = ACTIONS(9752), + [aux_sym_def_type_statement_token6] = ACTIONS(9752), + [aux_sym_def_type_statement_token7] = ACTIONS(9752), + [aux_sym_def_type_statement_token8] = ACTIONS(9752), + [aux_sym_def_type_statement_token9] = ACTIONS(9752), + [aux_sym_def_type_statement_token10] = ACTIONS(9752), + [aux_sym_def_type_statement_token11] = ACTIONS(9752), + [aux_sym_def_type_statement_token12] = ACTIONS(9752), + [aux_sym_def_type_statement_token13] = ACTIONS(9752), + [aux_sym_def_type_statement_token14] = ACTIONS(9752), + [aux_sym_call_statement_token1] = ACTIONS(9752), + [sym__ambiguous_call_statement] = ACTIONS(9752), + [aux_sym_addressof_expression_token1] = ACTIONS(9752), + [aux_sym_type_of_expression_token1] = ACTIONS(9752), + [aux_sym_unary_expression_token1] = ACTIONS(9752), + [sym_string_literal] = ACTIONS(9754), + [sym_number_literal] = ACTIONS(9754), + [aux_sym_boolean_literal_token1] = ACTIONS(9752), + [aux_sym_boolean_literal_token2] = ACTIONS(9752), + [sym_nothing_literal] = ACTIONS(9752), + [sym_null_literal] = ACTIONS(9752), + [sym_empty_literal] = ACTIONS(9752), + [sym_date_literal] = ACTIONS(9754), + [anon_sym_POUND] = ACTIONS(9752), + }, + [STATE(6660)] = { + [sym_identifier] = ACTIONS(9756), + [sym_newline] = ACTIONS(9758), + [anon_sym_COLON] = ACTIONS(9758), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9756), + [aux_sym_frm_property_statement_token1] = ACTIONS(9756), + [anon_sym_DOT] = ACTIONS(9756), + [anon_sym_BANG] = ACTIONS(9758), + [aux_sym__attribute_identifier_token1] = ACTIONS(9756), + [aux_sym_option_statement_token3] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9756), + [aux_sym_preprocessor_const_token1] = ACTIONS(9756), + [sym_static_modifier] = ACTIONS(9756), + [sym__dim_keyword] = ACTIONS(9756), + [sym__redim_keyword] = ACTIONS(9756), + [aux_sym_get_accessor_token1] = ACTIONS(9756), + [aux_sym_set_accessor_token1] = ACTIONS(9756), + [aux_sym_const_declaration_token1] = ACTIONS(9756), + [anon_sym_LPAREN] = ACTIONS(9758), + [aux_sym_as_type_clause_token2] = ACTIONS(9756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9756), + [aux_sym_visibility_token1] = ACTIONS(9756), + [aux_sym_visibility_token2] = ACTIONS(9756), + [aux_sym_elseif_fragment_token1] = ACTIONS(9756), + [aux_sym_else_fragment_token1] = ACTIONS(9756), + [aux_sym_select_statement_token1] = ACTIONS(9756), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9756), + [aux_sym__for_header_token1] = ACTIONS(9756), + [aux_sym_do_statement_token1] = ACTIONS(9756), + [aux_sym_do_condition_token1] = ACTIONS(9756), + [aux_sym_with_statement_token1] = ACTIONS(9756), + [aux_sym_exit_statement_token1] = ACTIONS(9756), + [sym_end_statement] = ACTIONS(9758), + [aux_sym_on_goto_statement_token1] = ACTIONS(9756), + [aux_sym_on_goto_statement_token2] = ACTIONS(9756), + [aux_sym_on_error_statement_token2] = ACTIONS(9756), + [sym__ambiguous_redim_statement] = ACTIONS(9758), + [aux_sym_erase_statement_token1] = ACTIONS(9756), + [aux_sym_open_statement_token1] = ACTIONS(9756), + [aux_sym_file_mode_token2] = ACTIONS(9756), + [aux_sym_file_access_token2] = ACTIONS(9756), + [aux_sym_file_lock_token2] = ACTIONS(9756), + [aux_sym_print_statement_token1] = ACTIONS(9756), + [anon_sym_PLUS] = ACTIONS(9758), + [anon_sym_DASH] = ACTIONS(9756), + [anon_sym_QMARK] = ACTIONS(9758), + [aux_sym_close_statement_token1] = ACTIONS(9756), + [aux_sym_put_statement_token1] = ACTIONS(9756), + [aux_sym_unlock_statement_token1] = ACTIONS(9756), + [aux_sym_seek_statement_token1] = ACTIONS(9756), + [sym_reset_statement] = ACTIONS(9756), + [aux_sym_raise_event_statement_token1] = ACTIONS(9756), + [sym_stop_statement] = ACTIONS(9756), + [sym_beep_statement] = ACTIONS(9756), + [aux_sym_unload_statement_token1] = ACTIONS(9756), + [aux_sym_def_type_statement_token1] = ACTIONS(9756), + [aux_sym_def_type_statement_token2] = ACTIONS(9756), + [aux_sym_def_type_statement_token3] = ACTIONS(9756), + [aux_sym_def_type_statement_token4] = ACTIONS(9756), + [aux_sym_def_type_statement_token5] = ACTIONS(9756), + [aux_sym_def_type_statement_token6] = ACTIONS(9756), + [aux_sym_def_type_statement_token7] = ACTIONS(9756), + [aux_sym_def_type_statement_token8] = ACTIONS(9756), + [aux_sym_def_type_statement_token9] = ACTIONS(9756), + [aux_sym_def_type_statement_token10] = ACTIONS(9756), + [aux_sym_def_type_statement_token11] = ACTIONS(9756), + [aux_sym_def_type_statement_token12] = ACTIONS(9756), + [aux_sym_def_type_statement_token13] = ACTIONS(9756), + [aux_sym_def_type_statement_token14] = ACTIONS(9756), + [aux_sym_call_statement_token1] = ACTIONS(9756), + [sym__ambiguous_call_statement] = ACTIONS(9756), + [aux_sym_addressof_expression_token1] = ACTIONS(9756), + [aux_sym_type_of_expression_token1] = ACTIONS(9756), + [aux_sym_unary_expression_token1] = ACTIONS(9756), + [sym_string_literal] = ACTIONS(9758), + [sym_number_literal] = ACTIONS(9758), + [aux_sym_boolean_literal_token1] = ACTIONS(9756), + [aux_sym_boolean_literal_token2] = ACTIONS(9756), + [sym_nothing_literal] = ACTIONS(9756), + [sym_null_literal] = ACTIONS(9756), + [sym_empty_literal] = ACTIONS(9756), + [sym_date_literal] = ACTIONS(9758), + [anon_sym_POUND] = ACTIONS(9756), + }, + [STATE(6661)] = { + [sym_identifier] = ACTIONS(9760), + [sym_newline] = ACTIONS(9762), + [anon_sym_COLON] = ACTIONS(9762), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9760), + [aux_sym_frm_property_statement_token1] = ACTIONS(9760), + [anon_sym_DOT] = ACTIONS(9760), + [anon_sym_BANG] = ACTIONS(9762), + [aux_sym__attribute_identifier_token1] = ACTIONS(9760), + [aux_sym_option_statement_token3] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9760), + [aux_sym_preprocessor_const_token1] = ACTIONS(9760), + [sym_static_modifier] = ACTIONS(9760), + [sym__dim_keyword] = ACTIONS(9760), + [sym__redim_keyword] = ACTIONS(9760), + [aux_sym_get_accessor_token1] = ACTIONS(9760), + [aux_sym_set_accessor_token1] = ACTIONS(9760), + [aux_sym_const_declaration_token1] = ACTIONS(9760), + [anon_sym_LPAREN] = ACTIONS(9762), + [aux_sym_as_type_clause_token2] = ACTIONS(9760), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9760), + [aux_sym_visibility_token1] = ACTIONS(9760), + [aux_sym_visibility_token2] = ACTIONS(9760), + [aux_sym_elseif_fragment_token1] = ACTIONS(9760), + [aux_sym_else_fragment_token1] = ACTIONS(9760), + [aux_sym_select_statement_token1] = ACTIONS(9760), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9760), + [aux_sym__for_header_token1] = ACTIONS(9760), + [aux_sym_do_statement_token1] = ACTIONS(9760), + [aux_sym_do_condition_token1] = ACTIONS(9760), + [aux_sym_with_statement_token1] = ACTIONS(9760), + [aux_sym_exit_statement_token1] = ACTIONS(9760), + [sym_end_statement] = ACTIONS(9762), + [aux_sym_on_goto_statement_token1] = ACTIONS(9760), + [aux_sym_on_goto_statement_token2] = ACTIONS(9760), + [aux_sym_on_error_statement_token2] = ACTIONS(9760), + [sym__ambiguous_redim_statement] = ACTIONS(9762), + [aux_sym_erase_statement_token1] = ACTIONS(9760), + [aux_sym_open_statement_token1] = ACTIONS(9760), + [aux_sym_file_mode_token2] = ACTIONS(9760), + [aux_sym_file_access_token2] = ACTIONS(9760), + [aux_sym_file_lock_token2] = ACTIONS(9760), + [aux_sym_print_statement_token1] = ACTIONS(9760), + [anon_sym_PLUS] = ACTIONS(9762), + [anon_sym_DASH] = ACTIONS(9760), + [anon_sym_QMARK] = ACTIONS(9762), + [aux_sym_close_statement_token1] = ACTIONS(9760), + [aux_sym_put_statement_token1] = ACTIONS(9760), + [aux_sym_unlock_statement_token1] = ACTIONS(9760), + [aux_sym_seek_statement_token1] = ACTIONS(9760), + [sym_reset_statement] = ACTIONS(9760), + [aux_sym_raise_event_statement_token1] = ACTIONS(9760), + [sym_stop_statement] = ACTIONS(9760), + [sym_beep_statement] = ACTIONS(9760), + [aux_sym_unload_statement_token1] = ACTIONS(9760), + [aux_sym_def_type_statement_token1] = ACTIONS(9760), + [aux_sym_def_type_statement_token2] = ACTIONS(9760), + [aux_sym_def_type_statement_token3] = ACTIONS(9760), + [aux_sym_def_type_statement_token4] = ACTIONS(9760), + [aux_sym_def_type_statement_token5] = ACTIONS(9760), + [aux_sym_def_type_statement_token6] = ACTIONS(9760), + [aux_sym_def_type_statement_token7] = ACTIONS(9760), + [aux_sym_def_type_statement_token8] = ACTIONS(9760), + [aux_sym_def_type_statement_token9] = ACTIONS(9760), + [aux_sym_def_type_statement_token10] = ACTIONS(9760), + [aux_sym_def_type_statement_token11] = ACTIONS(9760), + [aux_sym_def_type_statement_token12] = ACTIONS(9760), + [aux_sym_def_type_statement_token13] = ACTIONS(9760), + [aux_sym_def_type_statement_token14] = ACTIONS(9760), + [aux_sym_call_statement_token1] = ACTIONS(9760), + [sym__ambiguous_call_statement] = ACTIONS(9760), + [aux_sym_addressof_expression_token1] = ACTIONS(9760), + [aux_sym_type_of_expression_token1] = ACTIONS(9760), + [aux_sym_unary_expression_token1] = ACTIONS(9760), + [sym_string_literal] = ACTIONS(9762), + [sym_number_literal] = ACTIONS(9762), + [aux_sym_boolean_literal_token1] = ACTIONS(9760), + [aux_sym_boolean_literal_token2] = ACTIONS(9760), + [sym_nothing_literal] = ACTIONS(9760), + [sym_null_literal] = ACTIONS(9760), + [sym_empty_literal] = ACTIONS(9760), + [sym_date_literal] = ACTIONS(9762), + [anon_sym_POUND] = ACTIONS(9760), + }, + [STATE(6662)] = { + [sym_identifier] = ACTIONS(9764), + [sym_newline] = ACTIONS(9766), + [anon_sym_COLON] = ACTIONS(9766), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9764), + [aux_sym_frm_property_statement_token1] = ACTIONS(9764), + [anon_sym_DOT] = ACTIONS(9764), + [anon_sym_BANG] = ACTIONS(9766), + [aux_sym__attribute_identifier_token1] = ACTIONS(9764), + [aux_sym_option_statement_token3] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9764), + [aux_sym_preprocessor_const_token1] = ACTIONS(9764), + [sym_static_modifier] = ACTIONS(9764), + [sym__dim_keyword] = ACTIONS(9764), + [sym__redim_keyword] = ACTIONS(9764), + [aux_sym_get_accessor_token1] = ACTIONS(9764), + [aux_sym_set_accessor_token1] = ACTIONS(9764), + [aux_sym_const_declaration_token1] = ACTIONS(9764), + [anon_sym_LPAREN] = ACTIONS(9766), + [aux_sym_as_type_clause_token2] = ACTIONS(9764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9764), + [aux_sym_visibility_token1] = ACTIONS(9764), + [aux_sym_visibility_token2] = ACTIONS(9764), + [aux_sym_elseif_fragment_token1] = ACTIONS(9764), + [aux_sym_else_fragment_token1] = ACTIONS(9764), + [aux_sym_select_statement_token1] = ACTIONS(9764), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9764), + [aux_sym__for_header_token1] = ACTIONS(9764), + [aux_sym_do_statement_token1] = ACTIONS(9764), + [aux_sym_do_condition_token1] = ACTIONS(9764), + [aux_sym_with_statement_token1] = ACTIONS(9764), + [aux_sym_exit_statement_token1] = ACTIONS(9764), + [sym_end_statement] = ACTIONS(9766), + [aux_sym_on_goto_statement_token1] = ACTIONS(9764), + [aux_sym_on_goto_statement_token2] = ACTIONS(9764), + [aux_sym_on_error_statement_token2] = ACTIONS(9764), + [sym__ambiguous_redim_statement] = ACTIONS(9766), + [aux_sym_erase_statement_token1] = ACTIONS(9764), + [aux_sym_open_statement_token1] = ACTIONS(9764), + [aux_sym_file_mode_token2] = ACTIONS(9764), + [aux_sym_file_access_token2] = ACTIONS(9764), + [aux_sym_file_lock_token2] = ACTIONS(9764), + [aux_sym_print_statement_token1] = ACTIONS(9764), + [anon_sym_PLUS] = ACTIONS(9766), + [anon_sym_DASH] = ACTIONS(9764), + [anon_sym_QMARK] = ACTIONS(9766), + [aux_sym_close_statement_token1] = ACTIONS(9764), + [aux_sym_put_statement_token1] = ACTIONS(9764), + [aux_sym_unlock_statement_token1] = ACTIONS(9764), + [aux_sym_seek_statement_token1] = ACTIONS(9764), + [sym_reset_statement] = ACTIONS(9764), + [aux_sym_raise_event_statement_token1] = ACTIONS(9764), + [sym_stop_statement] = ACTIONS(9764), + [sym_beep_statement] = ACTIONS(9764), + [aux_sym_unload_statement_token1] = ACTIONS(9764), + [aux_sym_def_type_statement_token1] = ACTIONS(9764), + [aux_sym_def_type_statement_token2] = ACTIONS(9764), + [aux_sym_def_type_statement_token3] = ACTIONS(9764), + [aux_sym_def_type_statement_token4] = ACTIONS(9764), + [aux_sym_def_type_statement_token5] = ACTIONS(9764), + [aux_sym_def_type_statement_token6] = ACTIONS(9764), + [aux_sym_def_type_statement_token7] = ACTIONS(9764), + [aux_sym_def_type_statement_token8] = ACTIONS(9764), + [aux_sym_def_type_statement_token9] = ACTIONS(9764), + [aux_sym_def_type_statement_token10] = ACTIONS(9764), + [aux_sym_def_type_statement_token11] = ACTIONS(9764), + [aux_sym_def_type_statement_token12] = ACTIONS(9764), + [aux_sym_def_type_statement_token13] = ACTIONS(9764), + [aux_sym_def_type_statement_token14] = ACTIONS(9764), + [aux_sym_call_statement_token1] = ACTIONS(9764), + [sym__ambiguous_call_statement] = ACTIONS(9764), + [aux_sym_addressof_expression_token1] = ACTIONS(9764), + [aux_sym_type_of_expression_token1] = ACTIONS(9764), + [aux_sym_unary_expression_token1] = ACTIONS(9764), + [sym_string_literal] = ACTIONS(9766), + [sym_number_literal] = ACTIONS(9766), + [aux_sym_boolean_literal_token1] = ACTIONS(9764), + [aux_sym_boolean_literal_token2] = ACTIONS(9764), + [sym_nothing_literal] = ACTIONS(9764), + [sym_null_literal] = ACTIONS(9764), + [sym_empty_literal] = ACTIONS(9764), + [sym_date_literal] = ACTIONS(9766), + [anon_sym_POUND] = ACTIONS(9764), + }, + [STATE(6663)] = { + [sym_identifier] = ACTIONS(9768), + [sym_newline] = ACTIONS(9770), + [anon_sym_COLON] = ACTIONS(9770), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9768), + [aux_sym_frm_property_statement_token1] = ACTIONS(9768), + [anon_sym_DOT] = ACTIONS(9768), + [anon_sym_BANG] = ACTIONS(9770), + [aux_sym__attribute_identifier_token1] = ACTIONS(9768), + [aux_sym_option_statement_token3] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9768), + [aux_sym_preprocessor_const_token1] = ACTIONS(9768), + [sym_static_modifier] = ACTIONS(9768), + [sym__dim_keyword] = ACTIONS(9768), + [sym__redim_keyword] = ACTIONS(9768), + [aux_sym_get_accessor_token1] = ACTIONS(9768), + [aux_sym_set_accessor_token1] = ACTIONS(9768), + [aux_sym_const_declaration_token1] = ACTIONS(9768), + [anon_sym_LPAREN] = ACTIONS(9770), + [aux_sym_as_type_clause_token2] = ACTIONS(9768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9768), + [aux_sym_visibility_token1] = ACTIONS(9768), + [aux_sym_visibility_token2] = ACTIONS(9768), + [aux_sym_elseif_fragment_token1] = ACTIONS(9768), + [aux_sym_else_fragment_token1] = ACTIONS(9768), + [aux_sym_select_statement_token1] = ACTIONS(9768), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9768), + [aux_sym__for_header_token1] = ACTIONS(9768), + [aux_sym_do_statement_token1] = ACTIONS(9768), + [aux_sym_do_condition_token1] = ACTIONS(9768), + [aux_sym_with_statement_token1] = ACTIONS(9768), + [aux_sym_exit_statement_token1] = ACTIONS(9768), + [sym_end_statement] = ACTIONS(9770), + [aux_sym_on_goto_statement_token1] = ACTIONS(9768), + [aux_sym_on_goto_statement_token2] = ACTIONS(9768), + [aux_sym_on_error_statement_token2] = ACTIONS(9768), + [sym__ambiguous_redim_statement] = ACTIONS(9770), + [aux_sym_erase_statement_token1] = ACTIONS(9768), + [aux_sym_open_statement_token1] = ACTIONS(9768), + [aux_sym_file_mode_token2] = ACTIONS(9768), + [aux_sym_file_access_token2] = ACTIONS(9768), + [aux_sym_file_lock_token2] = ACTIONS(9768), + [aux_sym_print_statement_token1] = ACTIONS(9768), + [anon_sym_PLUS] = ACTIONS(9770), + [anon_sym_DASH] = ACTIONS(9768), + [anon_sym_QMARK] = ACTIONS(9770), + [aux_sym_close_statement_token1] = ACTIONS(9768), + [aux_sym_put_statement_token1] = ACTIONS(9768), + [aux_sym_unlock_statement_token1] = ACTIONS(9768), + [aux_sym_seek_statement_token1] = ACTIONS(9768), + [sym_reset_statement] = ACTIONS(9768), + [aux_sym_raise_event_statement_token1] = ACTIONS(9768), + [sym_stop_statement] = ACTIONS(9768), + [sym_beep_statement] = ACTIONS(9768), + [aux_sym_unload_statement_token1] = ACTIONS(9768), + [aux_sym_def_type_statement_token1] = ACTIONS(9768), + [aux_sym_def_type_statement_token2] = ACTIONS(9768), + [aux_sym_def_type_statement_token3] = ACTIONS(9768), + [aux_sym_def_type_statement_token4] = ACTIONS(9768), + [aux_sym_def_type_statement_token5] = ACTIONS(9768), + [aux_sym_def_type_statement_token6] = ACTIONS(9768), + [aux_sym_def_type_statement_token7] = ACTIONS(9768), + [aux_sym_def_type_statement_token8] = ACTIONS(9768), + [aux_sym_def_type_statement_token9] = ACTIONS(9768), + [aux_sym_def_type_statement_token10] = ACTIONS(9768), + [aux_sym_def_type_statement_token11] = ACTIONS(9768), + [aux_sym_def_type_statement_token12] = ACTIONS(9768), + [aux_sym_def_type_statement_token13] = ACTIONS(9768), + [aux_sym_def_type_statement_token14] = ACTIONS(9768), + [aux_sym_call_statement_token1] = ACTIONS(9768), + [sym__ambiguous_call_statement] = ACTIONS(9768), + [aux_sym_addressof_expression_token1] = ACTIONS(9768), + [aux_sym_type_of_expression_token1] = ACTIONS(9768), + [aux_sym_unary_expression_token1] = ACTIONS(9768), + [sym_string_literal] = ACTIONS(9770), + [sym_number_literal] = ACTIONS(9770), + [aux_sym_boolean_literal_token1] = ACTIONS(9768), + [aux_sym_boolean_literal_token2] = ACTIONS(9768), + [sym_nothing_literal] = ACTIONS(9768), + [sym_null_literal] = ACTIONS(9768), + [sym_empty_literal] = ACTIONS(9768), + [sym_date_literal] = ACTIONS(9770), + [anon_sym_POUND] = ACTIONS(9768), + }, + [STATE(6664)] = { + [sym_identifier] = ACTIONS(8935), + [sym_newline] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(8937), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8935), + [aux_sym_frm_property_statement_token1] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_BANG] = ACTIONS(8937), + [aux_sym__attribute_identifier_token1] = ACTIONS(8935), + [aux_sym_option_statement_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8935), + [aux_sym_preprocessor_const_token1] = ACTIONS(8935), + [sym_static_modifier] = ACTIONS(8935), + [sym__dim_keyword] = ACTIONS(8935), + [sym__redim_keyword] = ACTIONS(8935), + [aux_sym_get_accessor_token1] = ACTIONS(8935), + [aux_sym_set_accessor_token1] = ACTIONS(8935), + [aux_sym_const_declaration_token1] = ACTIONS(8935), + [anon_sym_LPAREN] = ACTIONS(8937), + [aux_sym_as_type_clause_token2] = ACTIONS(8935), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8935), + [aux_sym_visibility_token1] = ACTIONS(8935), + [aux_sym_visibility_token2] = ACTIONS(8935), + [aux_sym_elseif_fragment_token1] = ACTIONS(8935), + [aux_sym_else_fragment_token1] = ACTIONS(8935), + [aux_sym_select_statement_token1] = ACTIONS(8935), + [aux_sym_select_statement_token2] = ACTIONS(8935), + [aux_sym__for_header_token1] = ACTIONS(8935), + [aux_sym_do_statement_token1] = ACTIONS(8935), + [aux_sym_do_condition_token1] = ACTIONS(8935), + [aux_sym_with_statement_token1] = ACTIONS(8935), + [aux_sym_exit_statement_token1] = ACTIONS(8935), + [sym_end_statement] = ACTIONS(8937), + [aux_sym_on_goto_statement_token1] = ACTIONS(8935), + [aux_sym_on_goto_statement_token2] = ACTIONS(8935), + [aux_sym_on_error_statement_token2] = ACTIONS(8935), + [sym__ambiguous_redim_statement] = ACTIONS(8937), + [aux_sym_erase_statement_token1] = ACTIONS(8935), + [aux_sym_open_statement_token1] = ACTIONS(8935), + [aux_sym_file_mode_token2] = ACTIONS(8935), + [aux_sym_file_access_token2] = ACTIONS(8935), + [aux_sym_file_lock_token2] = ACTIONS(8935), + [aux_sym_print_statement_token1] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [aux_sym_close_statement_token1] = ACTIONS(8935), + [aux_sym_put_statement_token1] = ACTIONS(8935), + [aux_sym_unlock_statement_token1] = ACTIONS(8935), + [aux_sym_seek_statement_token1] = ACTIONS(8935), + [sym_reset_statement] = ACTIONS(8935), + [aux_sym_raise_event_statement_token1] = ACTIONS(8935), + [sym_stop_statement] = ACTIONS(8935), + [sym_beep_statement] = ACTIONS(8935), + [aux_sym_unload_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token2] = ACTIONS(8935), + [aux_sym_def_type_statement_token3] = ACTIONS(8935), + [aux_sym_def_type_statement_token4] = ACTIONS(8935), + [aux_sym_def_type_statement_token5] = ACTIONS(8935), + [aux_sym_def_type_statement_token6] = ACTIONS(8935), + [aux_sym_def_type_statement_token7] = ACTIONS(8935), + [aux_sym_def_type_statement_token8] = ACTIONS(8935), + [aux_sym_def_type_statement_token9] = ACTIONS(8935), + [aux_sym_def_type_statement_token10] = ACTIONS(8935), + [aux_sym_def_type_statement_token11] = ACTIONS(8935), + [aux_sym_def_type_statement_token12] = ACTIONS(8935), + [aux_sym_def_type_statement_token13] = ACTIONS(8935), + [aux_sym_def_type_statement_token14] = ACTIONS(8935), + [aux_sym_call_statement_token1] = ACTIONS(8935), + [sym__ambiguous_call_statement] = ACTIONS(8935), + [aux_sym_addressof_expression_token1] = ACTIONS(8935), + [aux_sym_type_of_expression_token1] = ACTIONS(8935), + [aux_sym_unary_expression_token1] = ACTIONS(8935), + [sym_string_literal] = ACTIONS(8937), + [sym_number_literal] = ACTIONS(8937), + [aux_sym_boolean_literal_token1] = ACTIONS(8935), + [aux_sym_boolean_literal_token2] = ACTIONS(8935), + [sym_nothing_literal] = ACTIONS(8935), + [sym_null_literal] = ACTIONS(8935), + [sym_empty_literal] = ACTIONS(8935), + [sym_date_literal] = ACTIONS(8937), + [anon_sym_POUND] = ACTIONS(8935), + }, + [STATE(6665)] = { + [sym_identifier] = ACTIONS(9496), + [sym_newline] = ACTIONS(9498), + [anon_sym_COLON] = ACTIONS(9498), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9496), + [aux_sym_frm_property_statement_token1] = ACTIONS(9496), + [anon_sym_DOT] = ACTIONS(9496), + [anon_sym_BANG] = ACTIONS(9498), + [aux_sym__attribute_identifier_token1] = ACTIONS(9496), + [aux_sym_option_statement_token3] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9496), + [aux_sym_preprocessor_const_token1] = ACTIONS(9496), + [sym_static_modifier] = ACTIONS(9496), + [sym__dim_keyword] = ACTIONS(9496), + [sym__redim_keyword] = ACTIONS(9496), + [aux_sym_get_accessor_token1] = ACTIONS(9496), + [aux_sym_set_accessor_token1] = ACTIONS(9496), + [aux_sym_const_declaration_token1] = ACTIONS(9496), + [anon_sym_LPAREN] = ACTIONS(9498), + [aux_sym_as_type_clause_token2] = ACTIONS(9496), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9496), + [aux_sym_visibility_token1] = ACTIONS(9496), + [aux_sym_visibility_token2] = ACTIONS(9496), + [aux_sym_elseif_fragment_token1] = ACTIONS(9496), + [aux_sym_else_fragment_token1] = ACTIONS(9496), + [aux_sym_select_statement_token1] = ACTIONS(9496), + [aux_sym_select_statement_token2] = ACTIONS(9496), + [aux_sym__for_header_token1] = ACTIONS(9496), + [aux_sym_do_statement_token1] = ACTIONS(9496), + [aux_sym_do_condition_token1] = ACTIONS(9496), + [aux_sym_with_statement_token1] = ACTIONS(9496), + [aux_sym_exit_statement_token1] = ACTIONS(9496), + [sym_end_statement] = ACTIONS(9498), + [aux_sym_on_goto_statement_token1] = ACTIONS(9496), + [aux_sym_on_goto_statement_token2] = ACTIONS(9496), + [aux_sym_on_error_statement_token2] = ACTIONS(9496), + [sym__ambiguous_redim_statement] = ACTIONS(9498), + [aux_sym_erase_statement_token1] = ACTIONS(9496), + [aux_sym_open_statement_token1] = ACTIONS(9496), + [aux_sym_file_mode_token2] = ACTIONS(9496), + [aux_sym_file_access_token2] = ACTIONS(9496), + [aux_sym_file_lock_token2] = ACTIONS(9496), + [aux_sym_print_statement_token1] = ACTIONS(9496), + [anon_sym_PLUS] = ACTIONS(9498), + [anon_sym_DASH] = ACTIONS(9496), + [anon_sym_QMARK] = ACTIONS(9498), + [aux_sym_close_statement_token1] = ACTIONS(9496), + [aux_sym_put_statement_token1] = ACTIONS(9496), + [aux_sym_unlock_statement_token1] = ACTIONS(9496), + [aux_sym_seek_statement_token1] = ACTIONS(9496), + [sym_reset_statement] = ACTIONS(9496), + [aux_sym_raise_event_statement_token1] = ACTIONS(9496), + [sym_stop_statement] = ACTIONS(9496), + [sym_beep_statement] = ACTIONS(9496), + [aux_sym_unload_statement_token1] = ACTIONS(9496), + [aux_sym_def_type_statement_token1] = ACTIONS(9496), + [aux_sym_def_type_statement_token2] = ACTIONS(9496), + [aux_sym_def_type_statement_token3] = ACTIONS(9496), + [aux_sym_def_type_statement_token4] = ACTIONS(9496), + [aux_sym_def_type_statement_token5] = ACTIONS(9496), + [aux_sym_def_type_statement_token6] = ACTIONS(9496), + [aux_sym_def_type_statement_token7] = ACTIONS(9496), + [aux_sym_def_type_statement_token8] = ACTIONS(9496), + [aux_sym_def_type_statement_token9] = ACTIONS(9496), + [aux_sym_def_type_statement_token10] = ACTIONS(9496), + [aux_sym_def_type_statement_token11] = ACTIONS(9496), + [aux_sym_def_type_statement_token12] = ACTIONS(9496), + [aux_sym_def_type_statement_token13] = ACTIONS(9496), + [aux_sym_def_type_statement_token14] = ACTIONS(9496), + [aux_sym_call_statement_token1] = ACTIONS(9496), + [sym__ambiguous_call_statement] = ACTIONS(9496), + [aux_sym_addressof_expression_token1] = ACTIONS(9496), + [aux_sym_type_of_expression_token1] = ACTIONS(9496), + [aux_sym_unary_expression_token1] = ACTIONS(9496), + [sym_string_literal] = ACTIONS(9498), + [sym_number_literal] = ACTIONS(9498), + [aux_sym_boolean_literal_token1] = ACTIONS(9496), + [aux_sym_boolean_literal_token2] = ACTIONS(9496), + [sym_nothing_literal] = ACTIONS(9496), + [sym_null_literal] = ACTIONS(9496), + [sym_empty_literal] = ACTIONS(9496), + [sym_date_literal] = ACTIONS(9498), + [anon_sym_POUND] = ACTIONS(9496), + }, + [STATE(6666)] = { + [sym_identifier] = ACTIONS(9500), + [sym_newline] = ACTIONS(9502), + [anon_sym_COLON] = ACTIONS(9502), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9500), + [aux_sym_frm_property_statement_token1] = ACTIONS(9500), + [anon_sym_DOT] = ACTIONS(9500), + [anon_sym_BANG] = ACTIONS(9502), + [aux_sym__attribute_identifier_token1] = ACTIONS(9500), + [aux_sym_option_statement_token3] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9500), + [aux_sym_preprocessor_const_token1] = ACTIONS(9500), + [sym_static_modifier] = ACTIONS(9500), + [sym__dim_keyword] = ACTIONS(9500), + [sym__redim_keyword] = ACTIONS(9500), + [aux_sym_get_accessor_token1] = ACTIONS(9500), + [aux_sym_set_accessor_token1] = ACTIONS(9500), + [aux_sym_const_declaration_token1] = ACTIONS(9500), + [anon_sym_LPAREN] = ACTIONS(9502), + [aux_sym_as_type_clause_token2] = ACTIONS(9500), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9500), + [aux_sym_visibility_token1] = ACTIONS(9500), + [aux_sym_visibility_token2] = ACTIONS(9500), + [aux_sym_elseif_fragment_token1] = ACTIONS(9500), + [aux_sym_else_fragment_token1] = ACTIONS(9500), + [aux_sym_select_statement_token1] = ACTIONS(9500), + [aux_sym__for_header_token1] = ACTIONS(9500), + [aux_sym_do_statement_token1] = ACTIONS(9500), + [aux_sym_do_condition_token1] = ACTIONS(9500), + [aux_sym_with_statement_token1] = ACTIONS(9500), + [aux_sym_exit_statement_token1] = ACTIONS(9500), + [sym_end_statement] = ACTIONS(9502), + [aux_sym_on_goto_statement_token1] = ACTIONS(9500), + [aux_sym_on_goto_statement_token2] = ACTIONS(9500), + [aux_sym_on_error_statement_token2] = ACTIONS(9500), + [sym__ambiguous_redim_statement] = ACTIONS(9502), + [aux_sym_erase_statement_token1] = ACTIONS(9500), + [aux_sym_open_statement_token1] = ACTIONS(9500), + [aux_sym_file_mode_token2] = ACTIONS(9500), + [aux_sym_file_access_token2] = ACTIONS(9500), + [aux_sym_file_lock_token2] = ACTIONS(9500), + [aux_sym_print_statement_token1] = ACTIONS(9500), + [anon_sym_PLUS] = ACTIONS(9502), + [anon_sym_DASH] = ACTIONS(9500), + [anon_sym_QMARK] = ACTIONS(9502), + [aux_sym_close_statement_token1] = ACTIONS(9500), + [aux_sym_put_statement_token1] = ACTIONS(9500), + [aux_sym_unlock_statement_token1] = ACTIONS(9500), + [aux_sym_seek_statement_token1] = ACTIONS(9500), + [sym_reset_statement] = ACTIONS(9500), + [aux_sym_raise_event_statement_token1] = ACTIONS(9500), + [sym_stop_statement] = ACTIONS(9500), + [sym_beep_statement] = ACTIONS(9500), + [aux_sym_unload_statement_token1] = ACTIONS(9500), + [aux_sym_def_type_statement_token1] = ACTIONS(9500), + [aux_sym_def_type_statement_token2] = ACTIONS(9500), + [aux_sym_def_type_statement_token3] = ACTIONS(9500), + [aux_sym_def_type_statement_token4] = ACTIONS(9500), + [aux_sym_def_type_statement_token5] = ACTIONS(9500), + [aux_sym_def_type_statement_token6] = ACTIONS(9500), + [aux_sym_def_type_statement_token7] = ACTIONS(9500), + [aux_sym_def_type_statement_token8] = ACTIONS(9500), + [aux_sym_def_type_statement_token9] = ACTIONS(9500), + [aux_sym_def_type_statement_token10] = ACTIONS(9500), + [aux_sym_def_type_statement_token11] = ACTIONS(9500), + [aux_sym_def_type_statement_token12] = ACTIONS(9500), + [aux_sym_def_type_statement_token13] = ACTIONS(9500), + [aux_sym_def_type_statement_token14] = ACTIONS(9500), + [aux_sym_call_statement_token1] = ACTIONS(9500), + [sym__ambiguous_call_statement] = ACTIONS(9500), + [aux_sym_addressof_expression_token1] = ACTIONS(9500), + [aux_sym_type_of_expression_token1] = ACTIONS(9500), + [aux_sym_unary_expression_token1] = ACTIONS(9500), + [sym_string_literal] = ACTIONS(9502), + [sym_number_literal] = ACTIONS(9502), + [aux_sym_boolean_literal_token1] = ACTIONS(9500), + [aux_sym_boolean_literal_token2] = ACTIONS(9500), + [sym_nothing_literal] = ACTIONS(9500), + [sym_null_literal] = ACTIONS(9500), + [sym_empty_literal] = ACTIONS(9500), + [sym_date_literal] = ACTIONS(9502), + [anon_sym_POUND] = ACTIONS(9500), + }, + [STATE(6667)] = { + [sym_identifier] = ACTIONS(9784), + [sym_newline] = ACTIONS(9786), + [anon_sym_COLON] = ACTIONS(9786), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9784), + [aux_sym_frm_property_statement_token1] = ACTIONS(9784), + [anon_sym_DOT] = ACTIONS(9784), + [anon_sym_BANG] = ACTIONS(9786), + [aux_sym__attribute_identifier_token1] = ACTIONS(9784), + [aux_sym_option_statement_token3] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9784), + [aux_sym_preprocessor_const_token1] = ACTIONS(9784), + [sym_static_modifier] = ACTIONS(9784), + [sym__dim_keyword] = ACTIONS(9784), + [sym__redim_keyword] = ACTIONS(9784), + [aux_sym_get_accessor_token1] = ACTIONS(9784), + [aux_sym_set_accessor_token1] = ACTIONS(9784), + [aux_sym_const_declaration_token1] = ACTIONS(9784), + [anon_sym_LPAREN] = ACTIONS(9786), + [aux_sym_as_type_clause_token2] = ACTIONS(9784), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9784), + [aux_sym_visibility_token1] = ACTIONS(9784), + [aux_sym_visibility_token2] = ACTIONS(9784), + [aux_sym_elseif_fragment_token1] = ACTIONS(9784), + [aux_sym_else_fragment_token1] = ACTIONS(9784), + [aux_sym_select_statement_token1] = ACTIONS(9784), + [aux_sym__for_header_token1] = ACTIONS(9784), + [aux_sym_do_statement_token1] = ACTIONS(9784), + [aux_sym_do_condition_token1] = ACTIONS(9784), + [aux_sym_while_statement_token1] = ACTIONS(9784), + [aux_sym_with_statement_token1] = ACTIONS(9784), + [aux_sym_exit_statement_token1] = ACTIONS(9784), + [sym_end_statement] = ACTIONS(9786), + [aux_sym_on_goto_statement_token1] = ACTIONS(9784), + [aux_sym_on_goto_statement_token2] = ACTIONS(9784), + [aux_sym_on_error_statement_token2] = ACTIONS(9784), + [sym__ambiguous_redim_statement] = ACTIONS(9786), + [aux_sym_erase_statement_token1] = ACTIONS(9784), + [aux_sym_open_statement_token1] = ACTIONS(9784), + [aux_sym_file_mode_token2] = ACTIONS(9784), + [aux_sym_file_access_token2] = ACTIONS(9784), + [aux_sym_file_lock_token2] = ACTIONS(9784), + [aux_sym_print_statement_token1] = ACTIONS(9784), + [anon_sym_PLUS] = ACTIONS(9786), + [anon_sym_DASH] = ACTIONS(9784), + [anon_sym_QMARK] = ACTIONS(9786), + [aux_sym_close_statement_token1] = ACTIONS(9784), + [aux_sym_put_statement_token1] = ACTIONS(9784), + [aux_sym_unlock_statement_token1] = ACTIONS(9784), + [aux_sym_seek_statement_token1] = ACTIONS(9784), + [sym_reset_statement] = ACTIONS(9784), + [aux_sym_raise_event_statement_token1] = ACTIONS(9784), + [sym_stop_statement] = ACTIONS(9784), + [sym_beep_statement] = ACTIONS(9784), + [aux_sym_unload_statement_token1] = ACTIONS(9784), + [aux_sym_def_type_statement_token1] = ACTIONS(9784), + [aux_sym_def_type_statement_token2] = ACTIONS(9784), + [aux_sym_def_type_statement_token3] = ACTIONS(9784), + [aux_sym_def_type_statement_token4] = ACTIONS(9784), + [aux_sym_def_type_statement_token5] = ACTIONS(9784), + [aux_sym_def_type_statement_token6] = ACTIONS(9784), + [aux_sym_def_type_statement_token7] = ACTIONS(9784), + [aux_sym_def_type_statement_token8] = ACTIONS(9784), + [aux_sym_def_type_statement_token9] = ACTIONS(9784), + [aux_sym_def_type_statement_token10] = ACTIONS(9784), + [aux_sym_def_type_statement_token11] = ACTIONS(9784), + [aux_sym_def_type_statement_token12] = ACTIONS(9784), + [aux_sym_def_type_statement_token13] = ACTIONS(9784), + [aux_sym_def_type_statement_token14] = ACTIONS(9784), + [aux_sym_call_statement_token1] = ACTIONS(9784), + [sym__ambiguous_call_statement] = ACTIONS(9784), + [aux_sym_addressof_expression_token1] = ACTIONS(9784), + [aux_sym_type_of_expression_token1] = ACTIONS(9784), + [aux_sym_unary_expression_token1] = ACTIONS(9784), + [sym_string_literal] = ACTIONS(9786), + [sym_number_literal] = ACTIONS(9786), + [aux_sym_boolean_literal_token1] = ACTIONS(9784), + [aux_sym_boolean_literal_token2] = ACTIONS(9784), + [sym_nothing_literal] = ACTIONS(9784), + [sym_null_literal] = ACTIONS(9784), + [sym_empty_literal] = ACTIONS(9784), + [sym_date_literal] = ACTIONS(9786), + [anon_sym_POUND] = ACTIONS(9784), + }, + [STATE(6668)] = { + [sym_identifier] = ACTIONS(8790), + [sym_newline] = ACTIONS(8792), + [anon_sym_COLON] = ACTIONS(8792), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8790), + [aux_sym_frm_property_statement_token1] = ACTIONS(8790), + [anon_sym_DOT] = ACTIONS(8790), + [anon_sym_BANG] = ACTIONS(8792), + [aux_sym__attribute_identifier_token1] = ACTIONS(8790), + [aux_sym_option_statement_token3] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8790), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8790), + [aux_sym_preprocessor_const_token1] = ACTIONS(8790), + [sym_static_modifier] = ACTIONS(8790), + [sym__dim_keyword] = ACTIONS(8790), + [sym__redim_keyword] = ACTIONS(8790), + [aux_sym_get_accessor_token1] = ACTIONS(8790), + [aux_sym_set_accessor_token1] = ACTIONS(8790), + [anon_sym_COMMA] = ACTIONS(8792), + [aux_sym_const_declaration_token1] = ACTIONS(8790), + [anon_sym_LPAREN] = ACTIONS(8792), + [aux_sym_as_type_clause_token2] = ACTIONS(8790), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8790), + [aux_sym_visibility_token1] = ACTIONS(8790), + [aux_sym_visibility_token2] = ACTIONS(8790), + [aux_sym_elseif_fragment_token1] = ACTIONS(8790), + [aux_sym_else_fragment_token1] = ACTIONS(8790), + [aux_sym_select_statement_token1] = ACTIONS(8790), + [aux_sym__for_header_token1] = ACTIONS(8790), + [aux_sym_do_statement_token1] = ACTIONS(8790), + [aux_sym_do_condition_token1] = ACTIONS(8790), + [aux_sym_with_statement_token1] = ACTIONS(8790), + [aux_sym_exit_statement_token1] = ACTIONS(8790), + [sym_end_statement] = ACTIONS(8792), + [aux_sym_on_goto_statement_token1] = ACTIONS(8790), + [aux_sym_on_goto_statement_token2] = ACTIONS(8790), + [aux_sym_on_error_statement_token2] = ACTIONS(8790), + [sym__ambiguous_redim_statement] = ACTIONS(8792), + [aux_sym_erase_statement_token1] = ACTIONS(8790), + [aux_sym_open_statement_token1] = ACTIONS(8790), + [aux_sym_file_mode_token2] = ACTIONS(8790), + [aux_sym_file_access_token2] = ACTIONS(8790), + [aux_sym_file_lock_token2] = ACTIONS(8790), + [aux_sym_print_statement_token1] = ACTIONS(8790), + [anon_sym_PLUS] = ACTIONS(8792), + [anon_sym_DASH] = ACTIONS(8790), + [anon_sym_QMARK] = ACTIONS(8792), + [aux_sym_close_statement_token1] = ACTIONS(8790), + [aux_sym_put_statement_token1] = ACTIONS(8790), + [aux_sym_unlock_statement_token1] = ACTIONS(8790), + [aux_sym_seek_statement_token1] = ACTIONS(8790), + [sym_reset_statement] = ACTIONS(8790), + [aux_sym_raise_event_statement_token1] = ACTIONS(8790), + [sym_stop_statement] = ACTIONS(8790), + [sym_beep_statement] = ACTIONS(8790), + [aux_sym_unload_statement_token1] = ACTIONS(8790), + [aux_sym_def_type_statement_token1] = ACTIONS(8790), + [aux_sym_def_type_statement_token2] = ACTIONS(8790), + [aux_sym_def_type_statement_token3] = ACTIONS(8790), + [aux_sym_def_type_statement_token4] = ACTIONS(8790), + [aux_sym_def_type_statement_token5] = ACTIONS(8790), + [aux_sym_def_type_statement_token6] = ACTIONS(8790), + [aux_sym_def_type_statement_token7] = ACTIONS(8790), + [aux_sym_def_type_statement_token8] = ACTIONS(8790), + [aux_sym_def_type_statement_token9] = ACTIONS(8790), + [aux_sym_def_type_statement_token10] = ACTIONS(8790), + [aux_sym_def_type_statement_token11] = ACTIONS(8790), + [aux_sym_def_type_statement_token12] = ACTIONS(8790), + [aux_sym_def_type_statement_token13] = ACTIONS(8790), + [aux_sym_def_type_statement_token14] = ACTIONS(8790), + [aux_sym_call_statement_token1] = ACTIONS(8790), + [sym__ambiguous_call_statement] = ACTIONS(8790), + [aux_sym_addressof_expression_token1] = ACTIONS(8790), + [aux_sym_type_of_expression_token1] = ACTIONS(8790), + [aux_sym_unary_expression_token1] = ACTIONS(8790), + [sym_string_literal] = ACTIONS(8792), + [sym_number_literal] = ACTIONS(8792), + [aux_sym_boolean_literal_token1] = ACTIONS(8790), + [aux_sym_boolean_literal_token2] = ACTIONS(8790), + [sym_nothing_literal] = ACTIONS(8790), + [sym_null_literal] = ACTIONS(8790), + [sym_empty_literal] = ACTIONS(8790), + [sym_date_literal] = ACTIONS(8792), + [anon_sym_POUND] = ACTIONS(8790), + }, + [STATE(6669)] = { + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym__attribute_identifier_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [sym__redim_keyword] = ACTIONS(4601), + [aux_sym_get_accessor_token1] = ACTIONS(4601), + [aux_sym_set_accessor_token1] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [aux_sym_as_type_clause_token2] = ACTIONS(4601), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4601), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_elseif_fragment_token1] = ACTIONS(4601), + [aux_sym_else_fragment_token1] = ACTIONS(4601), + [aux_sym_select_statement_token1] = ACTIONS(4601), + [aux_sym__for_header_token1] = ACTIONS(4601), + [aux_sym_do_statement_token1] = ACTIONS(4601), + [aux_sym_do_condition_token1] = ACTIONS(4601), + [aux_sym_with_statement_token1] = ACTIONS(4601), + [aux_sym_exit_statement_token1] = ACTIONS(4601), + [sym_end_statement] = ACTIONS(4603), + [aux_sym_on_goto_statement_token1] = ACTIONS(4601), + [aux_sym_on_goto_statement_token2] = ACTIONS(4601), + [aux_sym_on_error_statement_token2] = ACTIONS(4601), + [sym__ambiguous_redim_statement] = ACTIONS(4603), + [aux_sym_erase_statement_token1] = ACTIONS(4601), + [aux_sym_open_statement_token1] = ACTIONS(4601), + [aux_sym_file_mode_token2] = ACTIONS(4601), + [aux_sym_file_access_token2] = ACTIONS(4601), + [aux_sym_file_lock_token2] = ACTIONS(4601), + [aux_sym_print_statement_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_QMARK] = ACTIONS(4603), + [aux_sym_close_statement_token1] = ACTIONS(4601), + [aux_sym_put_statement_token1] = ACTIONS(4601), + [aux_sym_unlock_statement_token1] = ACTIONS(4601), + [aux_sym_seek_statement_token1] = ACTIONS(4601), + [sym_reset_statement] = ACTIONS(4601), + [aux_sym_raise_event_statement_token1] = ACTIONS(4601), + [sym_stop_statement] = ACTIONS(4601), + [sym_beep_statement] = ACTIONS(4601), + [aux_sym_unload_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_call_statement_token1] = ACTIONS(4601), + [sym__ambiguous_call_statement] = ACTIONS(4601), + [aux_sym_addressof_expression_token1] = ACTIONS(4601), + [aux_sym_type_of_expression_token1] = ACTIONS(4601), + [aux_sym_unary_expression_token1] = ACTIONS(4601), + [sym_string_literal] = ACTIONS(4603), + [sym_number_literal] = ACTIONS(4603), + [aux_sym_boolean_literal_token1] = ACTIONS(4601), + [aux_sym_boolean_literal_token2] = ACTIONS(4601), + [sym_nothing_literal] = ACTIONS(4601), + [sym_null_literal] = ACTIONS(4601), + [sym_empty_literal] = ACTIONS(4601), + [sym_date_literal] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + }, + [STATE(6670)] = { + [sym_identifier] = ACTIONS(9016), + [sym_newline] = ACTIONS(9018), + [anon_sym_COLON] = ACTIONS(9018), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9016), + [aux_sym_frm_property_statement_token1] = ACTIONS(9016), + [anon_sym_DOT] = ACTIONS(9016), + [anon_sym_BANG] = ACTIONS(9018), + [aux_sym__attribute_identifier_token1] = ACTIONS(9016), + [aux_sym_option_statement_token3] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9016), + [aux_sym_preprocessor_const_token1] = ACTIONS(9016), + [sym_static_modifier] = ACTIONS(9016), + [sym__dim_keyword] = ACTIONS(9016), + [sym__redim_keyword] = ACTIONS(9016), + [aux_sym_get_accessor_token1] = ACTIONS(9016), + [aux_sym_set_accessor_token1] = ACTIONS(9016), + [aux_sym_const_declaration_token1] = ACTIONS(9016), + [anon_sym_LPAREN] = ACTIONS(9018), + [aux_sym_as_type_clause_token2] = ACTIONS(9016), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9016), + [aux_sym_visibility_token1] = ACTIONS(9016), + [aux_sym_visibility_token2] = ACTIONS(9016), + [aux_sym_elseif_fragment_token1] = ACTIONS(9016), + [aux_sym_else_fragment_token1] = ACTIONS(9016), + [aux_sym_select_statement_token1] = ACTIONS(9016), + [aux_sym_select_statement_token2] = ACTIONS(9016), + [aux_sym__for_header_token1] = ACTIONS(9016), + [aux_sym_do_statement_token1] = ACTIONS(9016), + [aux_sym_do_condition_token1] = ACTIONS(9016), + [aux_sym_with_statement_token1] = ACTIONS(9016), + [aux_sym_exit_statement_token1] = ACTIONS(9016), + [sym_end_statement] = ACTIONS(9018), + [aux_sym_on_goto_statement_token1] = ACTIONS(9016), + [aux_sym_on_goto_statement_token2] = ACTIONS(9016), + [aux_sym_on_error_statement_token2] = ACTIONS(9016), + [sym__ambiguous_redim_statement] = ACTIONS(9018), + [aux_sym_erase_statement_token1] = ACTIONS(9016), + [aux_sym_open_statement_token1] = ACTIONS(9016), + [aux_sym_file_mode_token2] = ACTIONS(9016), + [aux_sym_file_access_token2] = ACTIONS(9016), + [aux_sym_file_lock_token2] = ACTIONS(9016), + [aux_sym_print_statement_token1] = ACTIONS(9016), + [anon_sym_PLUS] = ACTIONS(9018), + [anon_sym_DASH] = ACTIONS(9016), + [anon_sym_QMARK] = ACTIONS(9018), + [aux_sym_close_statement_token1] = ACTIONS(9016), + [aux_sym_put_statement_token1] = ACTIONS(9016), + [aux_sym_unlock_statement_token1] = ACTIONS(9016), + [aux_sym_seek_statement_token1] = ACTIONS(9016), + [sym_reset_statement] = ACTIONS(9016), + [aux_sym_raise_event_statement_token1] = ACTIONS(9016), + [sym_stop_statement] = ACTIONS(9016), + [sym_beep_statement] = ACTIONS(9016), + [aux_sym_unload_statement_token1] = ACTIONS(9016), + [aux_sym_def_type_statement_token1] = ACTIONS(9016), + [aux_sym_def_type_statement_token2] = ACTIONS(9016), + [aux_sym_def_type_statement_token3] = ACTIONS(9016), + [aux_sym_def_type_statement_token4] = ACTIONS(9016), + [aux_sym_def_type_statement_token5] = ACTIONS(9016), + [aux_sym_def_type_statement_token6] = ACTIONS(9016), + [aux_sym_def_type_statement_token7] = ACTIONS(9016), + [aux_sym_def_type_statement_token8] = ACTIONS(9016), + [aux_sym_def_type_statement_token9] = ACTIONS(9016), + [aux_sym_def_type_statement_token10] = ACTIONS(9016), + [aux_sym_def_type_statement_token11] = ACTIONS(9016), + [aux_sym_def_type_statement_token12] = ACTIONS(9016), + [aux_sym_def_type_statement_token13] = ACTIONS(9016), + [aux_sym_def_type_statement_token14] = ACTIONS(9016), + [aux_sym_call_statement_token1] = ACTIONS(9016), + [sym__ambiguous_call_statement] = ACTIONS(9016), + [aux_sym_addressof_expression_token1] = ACTIONS(9016), + [aux_sym_type_of_expression_token1] = ACTIONS(9016), + [aux_sym_unary_expression_token1] = ACTIONS(9016), + [sym_string_literal] = ACTIONS(9018), + [sym_number_literal] = ACTIONS(9018), + [aux_sym_boolean_literal_token1] = ACTIONS(9016), + [aux_sym_boolean_literal_token2] = ACTIONS(9016), + [sym_nothing_literal] = ACTIONS(9016), + [sym_null_literal] = ACTIONS(9016), + [sym_empty_literal] = ACTIONS(9016), + [sym_date_literal] = ACTIONS(9018), + [anon_sym_POUND] = ACTIONS(9016), + }, + [STATE(6671)] = { + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym__attribute_identifier_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [sym__redim_keyword] = ACTIONS(4517), + [aux_sym_get_accessor_token1] = ACTIONS(4517), + [aux_sym_set_accessor_token1] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [aux_sym_as_type_clause_token2] = ACTIONS(4517), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4517), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_elseif_fragment_token1] = ACTIONS(4517), + [aux_sym_else_fragment_token1] = ACTIONS(4517), + [aux_sym_select_statement_token1] = ACTIONS(4517), + [aux_sym__for_header_token1] = ACTIONS(4517), + [aux_sym_do_statement_token1] = ACTIONS(4517), + [aux_sym_do_condition_token1] = ACTIONS(4517), + [aux_sym_with_statement_token1] = ACTIONS(4517), + [aux_sym_exit_statement_token1] = ACTIONS(4517), + [sym_end_statement] = ACTIONS(4519), + [aux_sym_on_goto_statement_token1] = ACTIONS(4517), + [aux_sym_on_goto_statement_token2] = ACTIONS(4517), + [aux_sym_on_error_statement_token2] = ACTIONS(4517), + [sym__ambiguous_redim_statement] = ACTIONS(4519), + [aux_sym_erase_statement_token1] = ACTIONS(4517), + [aux_sym_open_statement_token1] = ACTIONS(4517), + [aux_sym_file_mode_token2] = ACTIONS(4517), + [aux_sym_file_access_token2] = ACTIONS(4517), + [aux_sym_file_lock_token2] = ACTIONS(4517), + [aux_sym_print_statement_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [aux_sym_close_statement_token1] = ACTIONS(4517), + [aux_sym_put_statement_token1] = ACTIONS(4517), + [aux_sym_unlock_statement_token1] = ACTIONS(4517), + [aux_sym_seek_statement_token1] = ACTIONS(4517), + [sym_reset_statement] = ACTIONS(4517), + [aux_sym_raise_event_statement_token1] = ACTIONS(4517), + [sym_stop_statement] = ACTIONS(4517), + [sym_beep_statement] = ACTIONS(4517), + [aux_sym_unload_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_call_statement_token1] = ACTIONS(4517), + [sym__ambiguous_call_statement] = ACTIONS(4517), + [aux_sym_addressof_expression_token1] = ACTIONS(4517), + [aux_sym_type_of_expression_token1] = ACTIONS(4517), + [aux_sym_unary_expression_token1] = ACTIONS(4517), + [sym_string_literal] = ACTIONS(4519), + [sym_number_literal] = ACTIONS(4519), + [aux_sym_boolean_literal_token1] = ACTIONS(4517), + [aux_sym_boolean_literal_token2] = ACTIONS(4517), + [sym_nothing_literal] = ACTIONS(4517), + [sym_null_literal] = ACTIONS(4517), + [sym_empty_literal] = ACTIONS(4517), + [sym_date_literal] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4517), + }, + [STATE(6672)] = { + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [anon_sym_COLON] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym__attribute_identifier_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [sym__redim_keyword] = ACTIONS(4605), + [aux_sym_get_accessor_token1] = ACTIONS(4605), + [aux_sym_set_accessor_token1] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [aux_sym_as_type_clause_token2] = ACTIONS(4605), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4605), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_elseif_fragment_token1] = ACTIONS(4605), + [aux_sym_else_fragment_token1] = ACTIONS(4605), + [aux_sym_select_statement_token1] = ACTIONS(4605), + [aux_sym__for_header_token1] = ACTIONS(4605), + [aux_sym_do_statement_token1] = ACTIONS(4605), + [aux_sym_do_condition_token1] = ACTIONS(4605), + [aux_sym_with_statement_token1] = ACTIONS(4605), + [aux_sym_exit_statement_token1] = ACTIONS(4605), + [sym_end_statement] = ACTIONS(4607), + [aux_sym_on_goto_statement_token1] = ACTIONS(4605), + [aux_sym_on_goto_statement_token2] = ACTIONS(4605), + [aux_sym_on_error_statement_token2] = ACTIONS(4605), + [sym__ambiguous_redim_statement] = ACTIONS(4607), + [aux_sym_erase_statement_token1] = ACTIONS(4605), + [aux_sym_open_statement_token1] = ACTIONS(4605), + [aux_sym_file_mode_token2] = ACTIONS(4605), + [aux_sym_file_access_token2] = ACTIONS(4605), + [aux_sym_file_lock_token2] = ACTIONS(4605), + [aux_sym_print_statement_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [aux_sym_close_statement_token1] = ACTIONS(4605), + [aux_sym_put_statement_token1] = ACTIONS(4605), + [aux_sym_unlock_statement_token1] = ACTIONS(4605), + [aux_sym_seek_statement_token1] = ACTIONS(4605), + [sym_reset_statement] = ACTIONS(4605), + [aux_sym_raise_event_statement_token1] = ACTIONS(4605), + [sym_stop_statement] = ACTIONS(4605), + [sym_beep_statement] = ACTIONS(4605), + [aux_sym_unload_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_call_statement_token1] = ACTIONS(4605), + [sym__ambiguous_call_statement] = ACTIONS(4605), + [aux_sym_addressof_expression_token1] = ACTIONS(4605), + [aux_sym_type_of_expression_token1] = ACTIONS(4605), + [aux_sym_unary_expression_token1] = ACTIONS(4605), + [sym_string_literal] = ACTIONS(4607), + [sym_number_literal] = ACTIONS(4607), + [aux_sym_boolean_literal_token1] = ACTIONS(4605), + [aux_sym_boolean_literal_token2] = ACTIONS(4605), + [sym_nothing_literal] = ACTIONS(4605), + [sym_null_literal] = ACTIONS(4605), + [sym_empty_literal] = ACTIONS(4605), + [sym_date_literal] = ACTIONS(4607), + [anon_sym_POUND] = ACTIONS(4605), + }, + [STATE(6673)] = { + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [anon_sym_COLON] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym__attribute_identifier_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [sym__redim_keyword] = ACTIONS(4609), + [aux_sym_get_accessor_token1] = ACTIONS(4609), + [aux_sym_set_accessor_token1] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [aux_sym_as_type_clause_token2] = ACTIONS(4609), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4609), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_elseif_fragment_token1] = ACTIONS(4609), + [aux_sym_else_fragment_token1] = ACTIONS(4609), + [aux_sym_select_statement_token1] = ACTIONS(4609), + [aux_sym__for_header_token1] = ACTIONS(4609), + [aux_sym_do_statement_token1] = ACTIONS(4609), + [aux_sym_do_condition_token1] = ACTIONS(4609), + [aux_sym_with_statement_token1] = ACTIONS(4609), + [aux_sym_exit_statement_token1] = ACTIONS(4609), + [sym_end_statement] = ACTIONS(4611), + [aux_sym_on_goto_statement_token1] = ACTIONS(4609), + [aux_sym_on_goto_statement_token2] = ACTIONS(4609), + [aux_sym_on_error_statement_token2] = ACTIONS(4609), + [sym__ambiguous_redim_statement] = ACTIONS(4611), + [aux_sym_erase_statement_token1] = ACTIONS(4609), + [aux_sym_open_statement_token1] = ACTIONS(4609), + [aux_sym_file_mode_token2] = ACTIONS(4609), + [aux_sym_file_access_token2] = ACTIONS(4609), + [aux_sym_file_lock_token2] = ACTIONS(4609), + [aux_sym_print_statement_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4611), + [aux_sym_close_statement_token1] = ACTIONS(4609), + [aux_sym_put_statement_token1] = ACTIONS(4609), + [aux_sym_unlock_statement_token1] = ACTIONS(4609), + [aux_sym_seek_statement_token1] = ACTIONS(4609), + [sym_reset_statement] = ACTIONS(4609), + [aux_sym_raise_event_statement_token1] = ACTIONS(4609), + [sym_stop_statement] = ACTIONS(4609), + [sym_beep_statement] = ACTIONS(4609), + [aux_sym_unload_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_call_statement_token1] = ACTIONS(4609), + [sym__ambiguous_call_statement] = ACTIONS(4609), + [aux_sym_addressof_expression_token1] = ACTIONS(4609), + [aux_sym_type_of_expression_token1] = ACTIONS(4609), + [aux_sym_unary_expression_token1] = ACTIONS(4609), + [sym_string_literal] = ACTIONS(4611), + [sym_number_literal] = ACTIONS(4611), + [aux_sym_boolean_literal_token1] = ACTIONS(4609), + [aux_sym_boolean_literal_token2] = ACTIONS(4609), + [sym_nothing_literal] = ACTIONS(4609), + [sym_null_literal] = ACTIONS(4609), + [sym_empty_literal] = ACTIONS(4609), + [sym_date_literal] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + }, + [STATE(6674)] = { + [sym_identifier] = ACTIONS(9413), + [sym_newline] = ACTIONS(9415), + [anon_sym_COLON] = ACTIONS(9415), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9413), + [aux_sym_frm_property_statement_token1] = ACTIONS(9413), + [anon_sym_DOT] = ACTIONS(9413), + [anon_sym_BANG] = ACTIONS(9415), + [aux_sym__attribute_identifier_token1] = ACTIONS(9413), + [aux_sym_option_statement_token3] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9413), + [aux_sym_preprocessor_const_token1] = ACTIONS(9413), + [sym_static_modifier] = ACTIONS(9413), + [sym__dim_keyword] = ACTIONS(9413), + [sym__redim_keyword] = ACTIONS(9413), + [aux_sym_get_accessor_token1] = ACTIONS(9413), + [aux_sym_set_accessor_token1] = ACTIONS(9413), + [aux_sym_const_declaration_token1] = ACTIONS(9413), + [anon_sym_LPAREN] = ACTIONS(9415), + [aux_sym_as_type_clause_token2] = ACTIONS(9413), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9413), + [aux_sym_visibility_token1] = ACTIONS(9413), + [aux_sym_visibility_token2] = ACTIONS(9413), + [aux_sym_elseif_fragment_token1] = ACTIONS(9413), + [aux_sym_else_fragment_token1] = ACTIONS(9413), + [aux_sym_select_statement_token1] = ACTIONS(9413), + [aux_sym__for_header_token1] = ACTIONS(9413), + [aux_sym_do_statement_token1] = ACTIONS(9413), + [aux_sym_do_statement_token2] = ACTIONS(9413), + [aux_sym_do_condition_token1] = ACTIONS(9413), + [aux_sym_with_statement_token1] = ACTIONS(9413), + [aux_sym_exit_statement_token1] = ACTIONS(9413), + [sym_end_statement] = ACTIONS(9415), + [aux_sym_on_goto_statement_token1] = ACTIONS(9413), + [aux_sym_on_goto_statement_token2] = ACTIONS(9413), + [aux_sym_on_error_statement_token2] = ACTIONS(9413), + [sym__ambiguous_redim_statement] = ACTIONS(9415), + [aux_sym_erase_statement_token1] = ACTIONS(9413), + [aux_sym_open_statement_token1] = ACTIONS(9413), + [aux_sym_file_mode_token2] = ACTIONS(9413), + [aux_sym_file_access_token2] = ACTIONS(9413), + [aux_sym_file_lock_token2] = ACTIONS(9413), + [aux_sym_print_statement_token1] = ACTIONS(9413), + [anon_sym_PLUS] = ACTIONS(9415), + [anon_sym_DASH] = ACTIONS(9413), + [anon_sym_QMARK] = ACTIONS(9415), + [aux_sym_close_statement_token1] = ACTIONS(9413), + [aux_sym_put_statement_token1] = ACTIONS(9413), + [aux_sym_unlock_statement_token1] = ACTIONS(9413), + [aux_sym_seek_statement_token1] = ACTIONS(9413), + [sym_reset_statement] = ACTIONS(9413), + [aux_sym_raise_event_statement_token1] = ACTIONS(9413), + [sym_stop_statement] = ACTIONS(9413), + [sym_beep_statement] = ACTIONS(9413), + [aux_sym_unload_statement_token1] = ACTIONS(9413), + [aux_sym_def_type_statement_token1] = ACTIONS(9413), + [aux_sym_def_type_statement_token2] = ACTIONS(9413), + [aux_sym_def_type_statement_token3] = ACTIONS(9413), + [aux_sym_def_type_statement_token4] = ACTIONS(9413), + [aux_sym_def_type_statement_token5] = ACTIONS(9413), + [aux_sym_def_type_statement_token6] = ACTIONS(9413), + [aux_sym_def_type_statement_token7] = ACTIONS(9413), + [aux_sym_def_type_statement_token8] = ACTIONS(9413), + [aux_sym_def_type_statement_token9] = ACTIONS(9413), + [aux_sym_def_type_statement_token10] = ACTIONS(9413), + [aux_sym_def_type_statement_token11] = ACTIONS(9413), + [aux_sym_def_type_statement_token12] = ACTIONS(9413), + [aux_sym_def_type_statement_token13] = ACTIONS(9413), + [aux_sym_def_type_statement_token14] = ACTIONS(9413), + [aux_sym_call_statement_token1] = ACTIONS(9413), + [sym__ambiguous_call_statement] = ACTIONS(9413), + [aux_sym_addressof_expression_token1] = ACTIONS(9413), + [aux_sym_type_of_expression_token1] = ACTIONS(9413), + [aux_sym_unary_expression_token1] = ACTIONS(9413), + [sym_string_literal] = ACTIONS(9415), + [sym_number_literal] = ACTIONS(9415), + [aux_sym_boolean_literal_token1] = ACTIONS(9413), + [aux_sym_boolean_literal_token2] = ACTIONS(9413), + [sym_nothing_literal] = ACTIONS(9413), + [sym_null_literal] = ACTIONS(9413), + [sym_empty_literal] = ACTIONS(9413), + [sym_date_literal] = ACTIONS(9415), + [anon_sym_POUND] = ACTIONS(9413), + }, + [STATE(6675)] = { + [sym_identifier] = ACTIONS(8986), + [sym_newline] = ACTIONS(9032), + [anon_sym_COLON] = ACTIONS(9032), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8986), + [aux_sym_frm_property_statement_token1] = ACTIONS(8986), + [anon_sym_DOT] = ACTIONS(8986), + [anon_sym_BANG] = ACTIONS(9032), + [aux_sym__attribute_identifier_token1] = ACTIONS(8986), + [aux_sym_option_statement_token3] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8986), + [aux_sym_preprocessor_const_token1] = ACTIONS(8986), + [sym_static_modifier] = ACTIONS(8986), + [sym__dim_keyword] = ACTIONS(8986), + [sym__redim_keyword] = ACTIONS(8986), + [aux_sym_get_accessor_token1] = ACTIONS(8986), + [aux_sym_set_accessor_token1] = ACTIONS(8986), + [aux_sym_const_declaration_token1] = ACTIONS(8986), + [anon_sym_LPAREN] = ACTIONS(9032), + [aux_sym_as_type_clause_token2] = ACTIONS(8986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8986), + [aux_sym_visibility_token1] = ACTIONS(8986), + [aux_sym_visibility_token2] = ACTIONS(8986), + [aux_sym_elseif_fragment_token1] = ACTIONS(8986), + [aux_sym_else_fragment_token1] = ACTIONS(8986), + [aux_sym_select_statement_token1] = ACTIONS(8986), + [aux_sym_select_statement_token2] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8986), + [aux_sym_do_statement_token1] = ACTIONS(8986), + [aux_sym_do_condition_token1] = ACTIONS(8986), + [aux_sym_with_statement_token1] = ACTIONS(8986), + [aux_sym_exit_statement_token1] = ACTIONS(8986), + [sym_end_statement] = ACTIONS(9032), + [aux_sym_on_goto_statement_token1] = ACTIONS(8986), + [aux_sym_on_goto_statement_token2] = ACTIONS(8986), + [aux_sym_on_error_statement_token2] = ACTIONS(8986), + [sym__ambiguous_redim_statement] = ACTIONS(9032), + [aux_sym_erase_statement_token1] = ACTIONS(8986), + [aux_sym_open_statement_token1] = ACTIONS(8986), + [aux_sym_file_mode_token2] = ACTIONS(8986), + [aux_sym_file_access_token2] = ACTIONS(8986), + [aux_sym_file_lock_token2] = ACTIONS(8986), + [aux_sym_print_statement_token1] = ACTIONS(8986), + [anon_sym_PLUS] = ACTIONS(9032), + [anon_sym_DASH] = ACTIONS(8986), + [anon_sym_QMARK] = ACTIONS(9032), + [aux_sym_close_statement_token1] = ACTIONS(8986), + [aux_sym_put_statement_token1] = ACTIONS(8986), + [aux_sym_unlock_statement_token1] = ACTIONS(8986), + [aux_sym_seek_statement_token1] = ACTIONS(8986), + [sym_reset_statement] = ACTIONS(8986), + [aux_sym_raise_event_statement_token1] = ACTIONS(8986), + [sym_stop_statement] = ACTIONS(8986), + [sym_beep_statement] = ACTIONS(8986), + [aux_sym_unload_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token2] = ACTIONS(8986), + [aux_sym_def_type_statement_token3] = ACTIONS(8986), + [aux_sym_def_type_statement_token4] = ACTIONS(8986), + [aux_sym_def_type_statement_token5] = ACTIONS(8986), + [aux_sym_def_type_statement_token6] = ACTIONS(8986), + [aux_sym_def_type_statement_token7] = ACTIONS(8986), + [aux_sym_def_type_statement_token8] = ACTIONS(8986), + [aux_sym_def_type_statement_token9] = ACTIONS(8986), + [aux_sym_def_type_statement_token10] = ACTIONS(8986), + [aux_sym_def_type_statement_token11] = ACTIONS(8986), + [aux_sym_def_type_statement_token12] = ACTIONS(8986), + [aux_sym_def_type_statement_token13] = ACTIONS(8986), + [aux_sym_def_type_statement_token14] = ACTIONS(8986), + [aux_sym_call_statement_token1] = ACTIONS(8986), + [sym__ambiguous_call_statement] = ACTIONS(8986), + [aux_sym_addressof_expression_token1] = ACTIONS(8986), + [aux_sym_type_of_expression_token1] = ACTIONS(8986), + [aux_sym_unary_expression_token1] = ACTIONS(8986), + [sym_string_literal] = ACTIONS(9032), + [sym_number_literal] = ACTIONS(9032), + [aux_sym_boolean_literal_token1] = ACTIONS(8986), + [aux_sym_boolean_literal_token2] = ACTIONS(8986), + [sym_nothing_literal] = ACTIONS(8986), + [sym_null_literal] = ACTIONS(8986), + [sym_empty_literal] = ACTIONS(8986), + [sym_date_literal] = ACTIONS(9032), + [anon_sym_POUND] = ACTIONS(8986), + }, + [STATE(6676)] = { + [sym_identifier] = ACTIONS(8764), + [sym_newline] = ACTIONS(9034), + [anon_sym_COLON] = ACTIONS(9034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8764), + [aux_sym_frm_property_statement_token1] = ACTIONS(8764), + [anon_sym_DOT] = ACTIONS(8764), + [anon_sym_BANG] = ACTIONS(9034), + [aux_sym__attribute_identifier_token1] = ACTIONS(8764), + [aux_sym_option_statement_token3] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8764), + [aux_sym_preprocessor_const_token1] = ACTIONS(8764), + [sym_static_modifier] = ACTIONS(8764), + [sym__dim_keyword] = ACTIONS(8764), + [sym__redim_keyword] = ACTIONS(8764), + [aux_sym_get_accessor_token1] = ACTIONS(8764), + [aux_sym_set_accessor_token1] = ACTIONS(8764), + [aux_sym_const_declaration_token1] = ACTIONS(8764), + [anon_sym_LPAREN] = ACTIONS(9034), + [aux_sym_as_type_clause_token2] = ACTIONS(8764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8764), + [aux_sym_visibility_token1] = ACTIONS(8764), + [aux_sym_visibility_token2] = ACTIONS(8764), + [aux_sym_elseif_fragment_token1] = ACTIONS(8764), + [aux_sym_else_fragment_token1] = ACTIONS(8764), + [aux_sym_select_statement_token1] = ACTIONS(8764), + [aux_sym_select_statement_token2] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8764), + [aux_sym_do_statement_token1] = ACTIONS(8764), + [aux_sym_do_condition_token1] = ACTIONS(8764), + [aux_sym_with_statement_token1] = ACTIONS(8764), + [aux_sym_exit_statement_token1] = ACTIONS(8764), + [sym_end_statement] = ACTIONS(9034), + [aux_sym_on_goto_statement_token1] = ACTIONS(8764), + [aux_sym_on_goto_statement_token2] = ACTIONS(8764), + [aux_sym_on_error_statement_token2] = ACTIONS(8764), + [sym__ambiguous_redim_statement] = ACTIONS(9034), + [aux_sym_erase_statement_token1] = ACTIONS(8764), + [aux_sym_open_statement_token1] = ACTIONS(8764), + [aux_sym_file_mode_token2] = ACTIONS(8764), + [aux_sym_file_access_token2] = ACTIONS(8764), + [aux_sym_file_lock_token2] = ACTIONS(8764), + [aux_sym_print_statement_token1] = ACTIONS(8764), + [anon_sym_PLUS] = ACTIONS(9034), + [anon_sym_DASH] = ACTIONS(8764), + [anon_sym_QMARK] = ACTIONS(9034), + [aux_sym_close_statement_token1] = ACTIONS(8764), + [aux_sym_put_statement_token1] = ACTIONS(8764), + [aux_sym_unlock_statement_token1] = ACTIONS(8764), + [aux_sym_seek_statement_token1] = ACTIONS(8764), + [sym_reset_statement] = ACTIONS(8764), + [aux_sym_raise_event_statement_token1] = ACTIONS(8764), + [sym_stop_statement] = ACTIONS(8764), + [sym_beep_statement] = ACTIONS(8764), + [aux_sym_unload_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token2] = ACTIONS(8764), + [aux_sym_def_type_statement_token3] = ACTIONS(8764), + [aux_sym_def_type_statement_token4] = ACTIONS(8764), + [aux_sym_def_type_statement_token5] = ACTIONS(8764), + [aux_sym_def_type_statement_token6] = ACTIONS(8764), + [aux_sym_def_type_statement_token7] = ACTIONS(8764), + [aux_sym_def_type_statement_token8] = ACTIONS(8764), + [aux_sym_def_type_statement_token9] = ACTIONS(8764), + [aux_sym_def_type_statement_token10] = ACTIONS(8764), + [aux_sym_def_type_statement_token11] = ACTIONS(8764), + [aux_sym_def_type_statement_token12] = ACTIONS(8764), + [aux_sym_def_type_statement_token13] = ACTIONS(8764), + [aux_sym_def_type_statement_token14] = ACTIONS(8764), + [aux_sym_call_statement_token1] = ACTIONS(8764), + [sym__ambiguous_call_statement] = ACTIONS(8764), + [aux_sym_addressof_expression_token1] = ACTIONS(8764), + [aux_sym_type_of_expression_token1] = ACTIONS(8764), + [aux_sym_unary_expression_token1] = ACTIONS(8764), + [sym_string_literal] = ACTIONS(9034), + [sym_number_literal] = ACTIONS(9034), + [aux_sym_boolean_literal_token1] = ACTIONS(8764), + [aux_sym_boolean_literal_token2] = ACTIONS(8764), + [sym_nothing_literal] = ACTIONS(8764), + [sym_null_literal] = ACTIONS(8764), + [sym_empty_literal] = ACTIONS(8764), + [sym_date_literal] = ACTIONS(9034), + [anon_sym_POUND] = ACTIONS(8764), + }, + [STATE(6677)] = { + [sym_identifier] = ACTIONS(9036), + [sym_newline] = ACTIONS(9038), + [anon_sym_COLON] = ACTIONS(9038), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9036), + [aux_sym_frm_property_statement_token1] = ACTIONS(9036), + [anon_sym_DOT] = ACTIONS(9036), + [anon_sym_BANG] = ACTIONS(9038), + [aux_sym__attribute_identifier_token1] = ACTIONS(9036), + [aux_sym_option_statement_token3] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9036), + [aux_sym_preprocessor_const_token1] = ACTIONS(9036), + [sym_static_modifier] = ACTIONS(9036), + [sym__dim_keyword] = ACTIONS(9036), + [sym__redim_keyword] = ACTIONS(9036), + [aux_sym_get_accessor_token1] = ACTIONS(9036), + [aux_sym_set_accessor_token1] = ACTIONS(9036), + [aux_sym_const_declaration_token1] = ACTIONS(9036), + [anon_sym_LPAREN] = ACTIONS(9038), + [aux_sym_as_type_clause_token2] = ACTIONS(9036), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9036), + [aux_sym_visibility_token1] = ACTIONS(9036), + [aux_sym_visibility_token2] = ACTIONS(9036), + [aux_sym_elseif_fragment_token1] = ACTIONS(9036), + [aux_sym_else_fragment_token1] = ACTIONS(9036), + [aux_sym_select_statement_token1] = ACTIONS(9036), + [aux_sym_select_statement_token2] = ACTIONS(9036), + [aux_sym__for_header_token1] = ACTIONS(9036), + [aux_sym_do_statement_token1] = ACTIONS(9036), + [aux_sym_do_condition_token1] = ACTIONS(9036), + [aux_sym_with_statement_token1] = ACTIONS(9036), + [aux_sym_exit_statement_token1] = ACTIONS(9036), + [sym_end_statement] = ACTIONS(9038), + [aux_sym_on_goto_statement_token1] = ACTIONS(9036), + [aux_sym_on_goto_statement_token2] = ACTIONS(9036), + [aux_sym_on_error_statement_token2] = ACTIONS(9036), + [sym__ambiguous_redim_statement] = ACTIONS(9038), + [aux_sym_erase_statement_token1] = ACTIONS(9036), + [aux_sym_open_statement_token1] = ACTIONS(9036), + [aux_sym_file_mode_token2] = ACTIONS(9036), + [aux_sym_file_access_token2] = ACTIONS(9036), + [aux_sym_file_lock_token2] = ACTIONS(9036), + [aux_sym_print_statement_token1] = ACTIONS(9036), + [anon_sym_PLUS] = ACTIONS(9038), + [anon_sym_DASH] = ACTIONS(9036), + [anon_sym_QMARK] = ACTIONS(9038), + [aux_sym_close_statement_token1] = ACTIONS(9036), + [aux_sym_put_statement_token1] = ACTIONS(9036), + [aux_sym_unlock_statement_token1] = ACTIONS(9036), + [aux_sym_seek_statement_token1] = ACTIONS(9036), + [sym_reset_statement] = ACTIONS(9036), + [aux_sym_raise_event_statement_token1] = ACTIONS(9036), + [sym_stop_statement] = ACTIONS(9036), + [sym_beep_statement] = ACTIONS(9036), + [aux_sym_unload_statement_token1] = ACTIONS(9036), + [aux_sym_def_type_statement_token1] = ACTIONS(9036), + [aux_sym_def_type_statement_token2] = ACTIONS(9036), + [aux_sym_def_type_statement_token3] = ACTIONS(9036), + [aux_sym_def_type_statement_token4] = ACTIONS(9036), + [aux_sym_def_type_statement_token5] = ACTIONS(9036), + [aux_sym_def_type_statement_token6] = ACTIONS(9036), + [aux_sym_def_type_statement_token7] = ACTIONS(9036), + [aux_sym_def_type_statement_token8] = ACTIONS(9036), + [aux_sym_def_type_statement_token9] = ACTIONS(9036), + [aux_sym_def_type_statement_token10] = ACTIONS(9036), + [aux_sym_def_type_statement_token11] = ACTIONS(9036), + [aux_sym_def_type_statement_token12] = ACTIONS(9036), + [aux_sym_def_type_statement_token13] = ACTIONS(9036), + [aux_sym_def_type_statement_token14] = ACTIONS(9036), + [aux_sym_call_statement_token1] = ACTIONS(9036), + [sym__ambiguous_call_statement] = ACTIONS(9036), + [aux_sym_addressof_expression_token1] = ACTIONS(9036), + [aux_sym_type_of_expression_token1] = ACTIONS(9036), + [aux_sym_unary_expression_token1] = ACTIONS(9036), + [sym_string_literal] = ACTIONS(9038), + [sym_number_literal] = ACTIONS(9038), + [aux_sym_boolean_literal_token1] = ACTIONS(9036), + [aux_sym_boolean_literal_token2] = ACTIONS(9036), + [sym_nothing_literal] = ACTIONS(9036), + [sym_null_literal] = ACTIONS(9036), + [sym_empty_literal] = ACTIONS(9036), + [sym_date_literal] = ACTIONS(9038), + [anon_sym_POUND] = ACTIONS(9036), + }, + [STATE(6678)] = { + [sym_identifier] = ACTIONS(9040), + [sym_newline] = ACTIONS(9042), + [anon_sym_COLON] = ACTIONS(9042), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9040), + [aux_sym_frm_property_statement_token1] = ACTIONS(9040), + [anon_sym_DOT] = ACTIONS(9040), + [anon_sym_BANG] = ACTIONS(9042), + [aux_sym__attribute_identifier_token1] = ACTIONS(9040), + [aux_sym_option_statement_token3] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9040), + [aux_sym_preprocessor_const_token1] = ACTIONS(9040), + [sym_static_modifier] = ACTIONS(9040), + [sym__dim_keyword] = ACTIONS(9040), + [sym__redim_keyword] = ACTIONS(9040), + [aux_sym_get_accessor_token1] = ACTIONS(9040), + [aux_sym_set_accessor_token1] = ACTIONS(9040), + [aux_sym_const_declaration_token1] = ACTIONS(9040), + [anon_sym_LPAREN] = ACTIONS(9042), + [aux_sym_as_type_clause_token2] = ACTIONS(9040), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9040), + [aux_sym_visibility_token1] = ACTIONS(9040), + [aux_sym_visibility_token2] = ACTIONS(9040), + [aux_sym_elseif_fragment_token1] = ACTIONS(9040), + [aux_sym_else_fragment_token1] = ACTIONS(9040), + [aux_sym_select_statement_token1] = ACTIONS(9040), + [aux_sym_select_statement_token2] = ACTIONS(9040), + [aux_sym__for_header_token1] = ACTIONS(9040), + [aux_sym_do_statement_token1] = ACTIONS(9040), + [aux_sym_do_condition_token1] = ACTIONS(9040), + [aux_sym_with_statement_token1] = ACTIONS(9040), + [aux_sym_exit_statement_token1] = ACTIONS(9040), + [sym_end_statement] = ACTIONS(9042), + [aux_sym_on_goto_statement_token1] = ACTIONS(9040), + [aux_sym_on_goto_statement_token2] = ACTIONS(9040), + [aux_sym_on_error_statement_token2] = ACTIONS(9040), + [sym__ambiguous_redim_statement] = ACTIONS(9042), + [aux_sym_erase_statement_token1] = ACTIONS(9040), + [aux_sym_open_statement_token1] = ACTIONS(9040), + [aux_sym_file_mode_token2] = ACTIONS(9040), + [aux_sym_file_access_token2] = ACTIONS(9040), + [aux_sym_file_lock_token2] = ACTIONS(9040), + [aux_sym_print_statement_token1] = ACTIONS(9040), + [anon_sym_PLUS] = ACTIONS(9042), + [anon_sym_DASH] = ACTIONS(9040), + [anon_sym_QMARK] = ACTIONS(9042), + [aux_sym_close_statement_token1] = ACTIONS(9040), + [aux_sym_put_statement_token1] = ACTIONS(9040), + [aux_sym_unlock_statement_token1] = ACTIONS(9040), + [aux_sym_seek_statement_token1] = ACTIONS(9040), + [sym_reset_statement] = ACTIONS(9040), + [aux_sym_raise_event_statement_token1] = ACTIONS(9040), + [sym_stop_statement] = ACTIONS(9040), + [sym_beep_statement] = ACTIONS(9040), + [aux_sym_unload_statement_token1] = ACTIONS(9040), + [aux_sym_def_type_statement_token1] = ACTIONS(9040), + [aux_sym_def_type_statement_token2] = ACTIONS(9040), + [aux_sym_def_type_statement_token3] = ACTIONS(9040), + [aux_sym_def_type_statement_token4] = ACTIONS(9040), + [aux_sym_def_type_statement_token5] = ACTIONS(9040), + [aux_sym_def_type_statement_token6] = ACTIONS(9040), + [aux_sym_def_type_statement_token7] = ACTIONS(9040), + [aux_sym_def_type_statement_token8] = ACTIONS(9040), + [aux_sym_def_type_statement_token9] = ACTIONS(9040), + [aux_sym_def_type_statement_token10] = ACTIONS(9040), + [aux_sym_def_type_statement_token11] = ACTIONS(9040), + [aux_sym_def_type_statement_token12] = ACTIONS(9040), + [aux_sym_def_type_statement_token13] = ACTIONS(9040), + [aux_sym_def_type_statement_token14] = ACTIONS(9040), + [aux_sym_call_statement_token1] = ACTIONS(9040), + [sym__ambiguous_call_statement] = ACTIONS(9040), + [aux_sym_addressof_expression_token1] = ACTIONS(9040), + [aux_sym_type_of_expression_token1] = ACTIONS(9040), + [aux_sym_unary_expression_token1] = ACTIONS(9040), + [sym_string_literal] = ACTIONS(9042), + [sym_number_literal] = ACTIONS(9042), + [aux_sym_boolean_literal_token1] = ACTIONS(9040), + [aux_sym_boolean_literal_token2] = ACTIONS(9040), + [sym_nothing_literal] = ACTIONS(9040), + [sym_null_literal] = ACTIONS(9040), + [sym_empty_literal] = ACTIONS(9040), + [sym_date_literal] = ACTIONS(9042), + [anon_sym_POUND] = ACTIONS(9040), + }, + [STATE(6679)] = { + [sym_identifier] = ACTIONS(9506), + [sym_newline] = ACTIONS(9508), + [anon_sym_COLON] = ACTIONS(9508), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9506), + [aux_sym_frm_property_statement_token1] = ACTIONS(9506), + [anon_sym_DOT] = ACTIONS(9506), + [anon_sym_BANG] = ACTIONS(9508), + [aux_sym__attribute_identifier_token1] = ACTIONS(9506), + [aux_sym_option_statement_token3] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9506), + [aux_sym_preprocessor_const_token1] = ACTIONS(9506), + [sym_static_modifier] = ACTIONS(9506), + [sym__dim_keyword] = ACTIONS(9506), + [sym__redim_keyword] = ACTIONS(9506), + [aux_sym_get_accessor_token1] = ACTIONS(9506), + [aux_sym_set_accessor_token1] = ACTIONS(9506), + [aux_sym_const_declaration_token1] = ACTIONS(9506), + [anon_sym_LPAREN] = ACTIONS(9508), + [aux_sym_as_type_clause_token2] = ACTIONS(9506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9506), + [aux_sym_visibility_token1] = ACTIONS(9506), + [aux_sym_visibility_token2] = ACTIONS(9506), + [aux_sym_elseif_fragment_token1] = ACTIONS(9506), + [aux_sym_else_fragment_token1] = ACTIONS(9506), + [aux_sym_select_statement_token1] = ACTIONS(9506), + [aux_sym_select_statement_token2] = ACTIONS(9506), + [aux_sym__for_header_token1] = ACTIONS(9506), + [aux_sym_do_statement_token1] = ACTIONS(9506), + [aux_sym_do_condition_token1] = ACTIONS(9506), + [aux_sym_with_statement_token1] = ACTIONS(9506), + [aux_sym_exit_statement_token1] = ACTIONS(9506), + [sym_end_statement] = ACTIONS(9508), + [aux_sym_on_goto_statement_token1] = ACTIONS(9506), + [aux_sym_on_goto_statement_token2] = ACTIONS(9506), + [aux_sym_on_error_statement_token2] = ACTIONS(9506), + [sym__ambiguous_redim_statement] = ACTIONS(9508), + [aux_sym_erase_statement_token1] = ACTIONS(9506), + [aux_sym_open_statement_token1] = ACTIONS(9506), + [aux_sym_file_mode_token2] = ACTIONS(9506), + [aux_sym_file_access_token2] = ACTIONS(9506), + [aux_sym_file_lock_token2] = ACTIONS(9506), + [aux_sym_print_statement_token1] = ACTIONS(9506), + [anon_sym_PLUS] = ACTIONS(9508), + [anon_sym_DASH] = ACTIONS(9506), + [anon_sym_QMARK] = ACTIONS(9508), + [aux_sym_close_statement_token1] = ACTIONS(9506), + [aux_sym_put_statement_token1] = ACTIONS(9506), + [aux_sym_unlock_statement_token1] = ACTIONS(9506), + [aux_sym_seek_statement_token1] = ACTIONS(9506), + [sym_reset_statement] = ACTIONS(9506), + [aux_sym_raise_event_statement_token1] = ACTIONS(9506), + [sym_stop_statement] = ACTIONS(9506), + [sym_beep_statement] = ACTIONS(9506), + [aux_sym_unload_statement_token1] = ACTIONS(9506), + [aux_sym_def_type_statement_token1] = ACTIONS(9506), + [aux_sym_def_type_statement_token2] = ACTIONS(9506), + [aux_sym_def_type_statement_token3] = ACTIONS(9506), + [aux_sym_def_type_statement_token4] = ACTIONS(9506), + [aux_sym_def_type_statement_token5] = ACTIONS(9506), + [aux_sym_def_type_statement_token6] = ACTIONS(9506), + [aux_sym_def_type_statement_token7] = ACTIONS(9506), + [aux_sym_def_type_statement_token8] = ACTIONS(9506), + [aux_sym_def_type_statement_token9] = ACTIONS(9506), + [aux_sym_def_type_statement_token10] = ACTIONS(9506), + [aux_sym_def_type_statement_token11] = ACTIONS(9506), + [aux_sym_def_type_statement_token12] = ACTIONS(9506), + [aux_sym_def_type_statement_token13] = ACTIONS(9506), + [aux_sym_def_type_statement_token14] = ACTIONS(9506), + [aux_sym_call_statement_token1] = ACTIONS(9506), + [sym__ambiguous_call_statement] = ACTIONS(9506), + [aux_sym_addressof_expression_token1] = ACTIONS(9506), + [aux_sym_type_of_expression_token1] = ACTIONS(9506), + [aux_sym_unary_expression_token1] = ACTIONS(9506), + [sym_string_literal] = ACTIONS(9508), + [sym_number_literal] = ACTIONS(9508), + [aux_sym_boolean_literal_token1] = ACTIONS(9506), + [aux_sym_boolean_literal_token2] = ACTIONS(9506), + [sym_nothing_literal] = ACTIONS(9506), + [sym_null_literal] = ACTIONS(9506), + [sym_empty_literal] = ACTIONS(9506), + [sym_date_literal] = ACTIONS(9508), + [anon_sym_POUND] = ACTIONS(9506), + }, + [STATE(6680)] = { + [sym_identifier] = ACTIONS(9510), + [sym_newline] = ACTIONS(9512), + [anon_sym_COLON] = ACTIONS(9512), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9510), + [aux_sym_frm_property_statement_token1] = ACTIONS(9510), + [anon_sym_DOT] = ACTIONS(9510), + [anon_sym_BANG] = ACTIONS(9512), + [aux_sym__attribute_identifier_token1] = ACTIONS(9510), + [aux_sym_option_statement_token3] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9510), + [aux_sym_preprocessor_const_token1] = ACTIONS(9510), + [sym_static_modifier] = ACTIONS(9510), + [sym__dim_keyword] = ACTIONS(9510), + [sym__redim_keyword] = ACTIONS(9510), + [aux_sym_get_accessor_token1] = ACTIONS(9510), + [aux_sym_set_accessor_token1] = ACTIONS(9510), + [aux_sym_const_declaration_token1] = ACTIONS(9510), + [anon_sym_LPAREN] = ACTIONS(9512), + [aux_sym_as_type_clause_token2] = ACTIONS(9510), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9510), + [aux_sym_visibility_token1] = ACTIONS(9510), + [aux_sym_visibility_token2] = ACTIONS(9510), + [aux_sym_elseif_fragment_token1] = ACTIONS(9510), + [aux_sym_else_fragment_token1] = ACTIONS(9510), + [aux_sym_select_statement_token1] = ACTIONS(9510), + [aux_sym_select_statement_token2] = ACTIONS(9510), + [aux_sym__for_header_token1] = ACTIONS(9510), + [aux_sym_do_statement_token1] = ACTIONS(9510), + [aux_sym_do_condition_token1] = ACTIONS(9510), + [aux_sym_with_statement_token1] = ACTIONS(9510), + [aux_sym_exit_statement_token1] = ACTIONS(9510), + [sym_end_statement] = ACTIONS(9512), + [aux_sym_on_goto_statement_token1] = ACTIONS(9510), + [aux_sym_on_goto_statement_token2] = ACTIONS(9510), + [aux_sym_on_error_statement_token2] = ACTIONS(9510), + [sym__ambiguous_redim_statement] = ACTIONS(9512), + [aux_sym_erase_statement_token1] = ACTIONS(9510), + [aux_sym_open_statement_token1] = ACTIONS(9510), + [aux_sym_file_mode_token2] = ACTIONS(9510), + [aux_sym_file_access_token2] = ACTIONS(9510), + [aux_sym_file_lock_token2] = ACTIONS(9510), + [aux_sym_print_statement_token1] = ACTIONS(9510), + [anon_sym_PLUS] = ACTIONS(9512), + [anon_sym_DASH] = ACTIONS(9510), + [anon_sym_QMARK] = ACTIONS(9512), + [aux_sym_close_statement_token1] = ACTIONS(9510), + [aux_sym_put_statement_token1] = ACTIONS(9510), + [aux_sym_unlock_statement_token1] = ACTIONS(9510), + [aux_sym_seek_statement_token1] = ACTIONS(9510), + [sym_reset_statement] = ACTIONS(9510), + [aux_sym_raise_event_statement_token1] = ACTIONS(9510), + [sym_stop_statement] = ACTIONS(9510), + [sym_beep_statement] = ACTIONS(9510), + [aux_sym_unload_statement_token1] = ACTIONS(9510), + [aux_sym_def_type_statement_token1] = ACTIONS(9510), + [aux_sym_def_type_statement_token2] = ACTIONS(9510), + [aux_sym_def_type_statement_token3] = ACTIONS(9510), + [aux_sym_def_type_statement_token4] = ACTIONS(9510), + [aux_sym_def_type_statement_token5] = ACTIONS(9510), + [aux_sym_def_type_statement_token6] = ACTIONS(9510), + [aux_sym_def_type_statement_token7] = ACTIONS(9510), + [aux_sym_def_type_statement_token8] = ACTIONS(9510), + [aux_sym_def_type_statement_token9] = ACTIONS(9510), + [aux_sym_def_type_statement_token10] = ACTIONS(9510), + [aux_sym_def_type_statement_token11] = ACTIONS(9510), + [aux_sym_def_type_statement_token12] = ACTIONS(9510), + [aux_sym_def_type_statement_token13] = ACTIONS(9510), + [aux_sym_def_type_statement_token14] = ACTIONS(9510), + [aux_sym_call_statement_token1] = ACTIONS(9510), + [sym__ambiguous_call_statement] = ACTIONS(9510), + [aux_sym_addressof_expression_token1] = ACTIONS(9510), + [aux_sym_type_of_expression_token1] = ACTIONS(9510), + [aux_sym_unary_expression_token1] = ACTIONS(9510), + [sym_string_literal] = ACTIONS(9512), + [sym_number_literal] = ACTIONS(9512), + [aux_sym_boolean_literal_token1] = ACTIONS(9510), + [aux_sym_boolean_literal_token2] = ACTIONS(9510), + [sym_nothing_literal] = ACTIONS(9510), + [sym_null_literal] = ACTIONS(9510), + [sym_empty_literal] = ACTIONS(9510), + [sym_date_literal] = ACTIONS(9512), + [anon_sym_POUND] = ACTIONS(9510), + }, + [STATE(6681)] = { + [sym_identifier] = ACTIONS(9348), + [sym_newline] = ACTIONS(9350), + [anon_sym_COLON] = ACTIONS(9350), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9348), + [aux_sym_frm_property_statement_token1] = ACTIONS(9348), + [anon_sym_DOT] = ACTIONS(9348), + [anon_sym_BANG] = ACTIONS(9350), + [aux_sym__attribute_identifier_token1] = ACTIONS(9348), + [aux_sym_option_statement_token3] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9348), + [aux_sym_preprocessor_const_token1] = ACTIONS(9348), + [sym_static_modifier] = ACTIONS(9348), + [sym__dim_keyword] = ACTIONS(9348), + [sym__redim_keyword] = ACTIONS(9348), + [aux_sym_get_accessor_token1] = ACTIONS(9348), + [aux_sym_set_accessor_token1] = ACTIONS(9348), + [aux_sym_const_declaration_token1] = ACTIONS(9348), + [anon_sym_LPAREN] = ACTIONS(9350), + [aux_sym_as_type_clause_token2] = ACTIONS(9348), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9348), + [aux_sym_visibility_token1] = ACTIONS(9348), + [aux_sym_visibility_token2] = ACTIONS(9348), + [aux_sym_elseif_fragment_token1] = ACTIONS(9348), + [aux_sym_else_fragment_token1] = ACTIONS(9348), + [aux_sym_select_statement_token1] = ACTIONS(9348), + [aux_sym__for_header_token1] = ACTIONS(9348), + [aux_sym_do_statement_token1] = ACTIONS(9348), + [aux_sym_do_statement_token2] = ACTIONS(9348), + [aux_sym_do_condition_token1] = ACTIONS(9348), + [aux_sym_with_statement_token1] = ACTIONS(9348), + [aux_sym_exit_statement_token1] = ACTIONS(9348), + [sym_end_statement] = ACTIONS(9350), + [aux_sym_on_goto_statement_token1] = ACTIONS(9348), + [aux_sym_on_goto_statement_token2] = ACTIONS(9348), + [aux_sym_on_error_statement_token2] = ACTIONS(9348), + [sym__ambiguous_redim_statement] = ACTIONS(9350), + [aux_sym_erase_statement_token1] = ACTIONS(9348), + [aux_sym_open_statement_token1] = ACTIONS(9348), + [aux_sym_file_mode_token2] = ACTIONS(9348), + [aux_sym_file_access_token2] = ACTIONS(9348), + [aux_sym_file_lock_token2] = ACTIONS(9348), + [aux_sym_print_statement_token1] = ACTIONS(9348), + [anon_sym_PLUS] = ACTIONS(9350), + [anon_sym_DASH] = ACTIONS(9348), + [anon_sym_QMARK] = ACTIONS(9350), + [aux_sym_close_statement_token1] = ACTIONS(9348), + [aux_sym_put_statement_token1] = ACTIONS(9348), + [aux_sym_unlock_statement_token1] = ACTIONS(9348), + [aux_sym_seek_statement_token1] = ACTIONS(9348), + [sym_reset_statement] = ACTIONS(9348), + [aux_sym_raise_event_statement_token1] = ACTIONS(9348), + [sym_stop_statement] = ACTIONS(9348), + [sym_beep_statement] = ACTIONS(9348), + [aux_sym_unload_statement_token1] = ACTIONS(9348), + [aux_sym_def_type_statement_token1] = ACTIONS(9348), + [aux_sym_def_type_statement_token2] = ACTIONS(9348), + [aux_sym_def_type_statement_token3] = ACTIONS(9348), + [aux_sym_def_type_statement_token4] = ACTIONS(9348), + [aux_sym_def_type_statement_token5] = ACTIONS(9348), + [aux_sym_def_type_statement_token6] = ACTIONS(9348), + [aux_sym_def_type_statement_token7] = ACTIONS(9348), + [aux_sym_def_type_statement_token8] = ACTIONS(9348), + [aux_sym_def_type_statement_token9] = ACTIONS(9348), + [aux_sym_def_type_statement_token10] = ACTIONS(9348), + [aux_sym_def_type_statement_token11] = ACTIONS(9348), + [aux_sym_def_type_statement_token12] = ACTIONS(9348), + [aux_sym_def_type_statement_token13] = ACTIONS(9348), + [aux_sym_def_type_statement_token14] = ACTIONS(9348), + [aux_sym_call_statement_token1] = ACTIONS(9348), + [sym__ambiguous_call_statement] = ACTIONS(9348), + [aux_sym_addressof_expression_token1] = ACTIONS(9348), + [aux_sym_type_of_expression_token1] = ACTIONS(9348), + [aux_sym_unary_expression_token1] = ACTIONS(9348), + [sym_string_literal] = ACTIONS(9350), + [sym_number_literal] = ACTIONS(9350), + [aux_sym_boolean_literal_token1] = ACTIONS(9348), + [aux_sym_boolean_literal_token2] = ACTIONS(9348), + [sym_nothing_literal] = ACTIONS(9348), + [sym_null_literal] = ACTIONS(9348), + [sym_empty_literal] = ACTIONS(9348), + [sym_date_literal] = ACTIONS(9350), + [anon_sym_POUND] = ACTIONS(9348), + }, + [STATE(6682)] = { + [sym_identifier] = ACTIONS(9336), + [sym_newline] = ACTIONS(9338), + [anon_sym_COLON] = ACTIONS(9338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9336), + [aux_sym_frm_property_statement_token1] = ACTIONS(9336), + [anon_sym_DOT] = ACTIONS(9336), + [anon_sym_BANG] = ACTIONS(9338), + [aux_sym__attribute_identifier_token1] = ACTIONS(9336), + [aux_sym_option_statement_token3] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9336), + [aux_sym_preprocessor_const_token1] = ACTIONS(9336), + [sym_static_modifier] = ACTIONS(9336), + [sym__dim_keyword] = ACTIONS(9336), + [sym__redim_keyword] = ACTIONS(9336), + [aux_sym_get_accessor_token1] = ACTIONS(9336), + [aux_sym_set_accessor_token1] = ACTIONS(9336), + [aux_sym_const_declaration_token1] = ACTIONS(9336), + [anon_sym_LPAREN] = ACTIONS(9338), + [aux_sym_as_type_clause_token2] = ACTIONS(9336), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9336), + [aux_sym_visibility_token1] = ACTIONS(9336), + [aux_sym_visibility_token2] = ACTIONS(9336), + [aux_sym_elseif_fragment_token1] = ACTIONS(9336), + [aux_sym_else_fragment_token1] = ACTIONS(9336), + [aux_sym_select_statement_token1] = ACTIONS(9336), + [aux_sym_select_statement_token2] = ACTIONS(9336), + [aux_sym__for_header_token1] = ACTIONS(9336), + [aux_sym_do_statement_token1] = ACTIONS(9336), + [aux_sym_do_condition_token1] = ACTIONS(9336), + [aux_sym_with_statement_token1] = ACTIONS(9336), + [aux_sym_exit_statement_token1] = ACTIONS(9336), + [sym_end_statement] = ACTIONS(9338), + [aux_sym_on_goto_statement_token1] = ACTIONS(9336), + [aux_sym_on_goto_statement_token2] = ACTIONS(9336), + [aux_sym_on_error_statement_token2] = ACTIONS(9336), + [sym__ambiguous_redim_statement] = ACTIONS(9338), + [aux_sym_erase_statement_token1] = ACTIONS(9336), + [aux_sym_open_statement_token1] = ACTIONS(9336), + [aux_sym_file_mode_token2] = ACTIONS(9336), + [aux_sym_file_access_token2] = ACTIONS(9336), + [aux_sym_file_lock_token2] = ACTIONS(9336), + [aux_sym_print_statement_token1] = ACTIONS(9336), + [anon_sym_PLUS] = ACTIONS(9338), + [anon_sym_DASH] = ACTIONS(9336), + [anon_sym_QMARK] = ACTIONS(9338), + [aux_sym_close_statement_token1] = ACTIONS(9336), + [aux_sym_put_statement_token1] = ACTIONS(9336), + [aux_sym_unlock_statement_token1] = ACTIONS(9336), + [aux_sym_seek_statement_token1] = ACTIONS(9336), + [sym_reset_statement] = ACTIONS(9336), + [aux_sym_raise_event_statement_token1] = ACTIONS(9336), + [sym_stop_statement] = ACTIONS(9336), + [sym_beep_statement] = ACTIONS(9336), + [aux_sym_unload_statement_token1] = ACTIONS(9336), + [aux_sym_def_type_statement_token1] = ACTIONS(9336), + [aux_sym_def_type_statement_token2] = ACTIONS(9336), + [aux_sym_def_type_statement_token3] = ACTIONS(9336), + [aux_sym_def_type_statement_token4] = ACTIONS(9336), + [aux_sym_def_type_statement_token5] = ACTIONS(9336), + [aux_sym_def_type_statement_token6] = ACTIONS(9336), + [aux_sym_def_type_statement_token7] = ACTIONS(9336), + [aux_sym_def_type_statement_token8] = ACTIONS(9336), + [aux_sym_def_type_statement_token9] = ACTIONS(9336), + [aux_sym_def_type_statement_token10] = ACTIONS(9336), + [aux_sym_def_type_statement_token11] = ACTIONS(9336), + [aux_sym_def_type_statement_token12] = ACTIONS(9336), + [aux_sym_def_type_statement_token13] = ACTIONS(9336), + [aux_sym_def_type_statement_token14] = ACTIONS(9336), + [aux_sym_call_statement_token1] = ACTIONS(9336), + [sym__ambiguous_call_statement] = ACTIONS(9336), + [aux_sym_addressof_expression_token1] = ACTIONS(9336), + [aux_sym_type_of_expression_token1] = ACTIONS(9336), + [aux_sym_unary_expression_token1] = ACTIONS(9336), + [sym_string_literal] = ACTIONS(9338), + [sym_number_literal] = ACTIONS(9338), + [aux_sym_boolean_literal_token1] = ACTIONS(9336), + [aux_sym_boolean_literal_token2] = ACTIONS(9336), + [sym_nothing_literal] = ACTIONS(9336), + [sym_null_literal] = ACTIONS(9336), + [sym_empty_literal] = ACTIONS(9336), + [sym_date_literal] = ACTIONS(9338), + [anon_sym_POUND] = ACTIONS(9336), + }, + [STATE(6683)] = { + [sym_identifier] = ACTIONS(9352), + [sym_newline] = ACTIONS(9354), + [anon_sym_COLON] = ACTIONS(9354), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9352), + [aux_sym_frm_property_statement_token1] = ACTIONS(9352), + [anon_sym_DOT] = ACTIONS(9352), + [anon_sym_BANG] = ACTIONS(9354), + [aux_sym__attribute_identifier_token1] = ACTIONS(9352), + [aux_sym_option_statement_token3] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9352), + [aux_sym_preprocessor_const_token1] = ACTIONS(9352), + [sym_static_modifier] = ACTIONS(9352), + [sym__dim_keyword] = ACTIONS(9352), + [sym__redim_keyword] = ACTIONS(9352), + [aux_sym_get_accessor_token1] = ACTIONS(9352), + [aux_sym_set_accessor_token1] = ACTIONS(9352), + [aux_sym_const_declaration_token1] = ACTIONS(9352), + [anon_sym_LPAREN] = ACTIONS(9354), + [aux_sym_as_type_clause_token2] = ACTIONS(9352), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9352), + [aux_sym_visibility_token1] = ACTIONS(9352), + [aux_sym_visibility_token2] = ACTIONS(9352), + [aux_sym_elseif_fragment_token1] = ACTIONS(9352), + [aux_sym_else_fragment_token1] = ACTIONS(9352), + [aux_sym_select_statement_token1] = ACTIONS(9352), + [aux_sym__for_header_token1] = ACTIONS(9352), + [aux_sym_do_statement_token1] = ACTIONS(9352), + [aux_sym_do_statement_token2] = ACTIONS(9352), + [aux_sym_do_condition_token1] = ACTIONS(9352), + [aux_sym_with_statement_token1] = ACTIONS(9352), + [aux_sym_exit_statement_token1] = ACTIONS(9352), + [sym_end_statement] = ACTIONS(9354), + [aux_sym_on_goto_statement_token1] = ACTIONS(9352), + [aux_sym_on_goto_statement_token2] = ACTIONS(9352), + [aux_sym_on_error_statement_token2] = ACTIONS(9352), + [sym__ambiguous_redim_statement] = ACTIONS(9354), + [aux_sym_erase_statement_token1] = ACTIONS(9352), + [aux_sym_open_statement_token1] = ACTIONS(9352), + [aux_sym_file_mode_token2] = ACTIONS(9352), + [aux_sym_file_access_token2] = ACTIONS(9352), + [aux_sym_file_lock_token2] = ACTIONS(9352), + [aux_sym_print_statement_token1] = ACTIONS(9352), + [anon_sym_PLUS] = ACTIONS(9354), + [anon_sym_DASH] = ACTIONS(9352), + [anon_sym_QMARK] = ACTIONS(9354), + [aux_sym_close_statement_token1] = ACTIONS(9352), + [aux_sym_put_statement_token1] = ACTIONS(9352), + [aux_sym_unlock_statement_token1] = ACTIONS(9352), + [aux_sym_seek_statement_token1] = ACTIONS(9352), + [sym_reset_statement] = ACTIONS(9352), + [aux_sym_raise_event_statement_token1] = ACTIONS(9352), + [sym_stop_statement] = ACTIONS(9352), + [sym_beep_statement] = ACTIONS(9352), + [aux_sym_unload_statement_token1] = ACTIONS(9352), + [aux_sym_def_type_statement_token1] = ACTIONS(9352), + [aux_sym_def_type_statement_token2] = ACTIONS(9352), + [aux_sym_def_type_statement_token3] = ACTIONS(9352), + [aux_sym_def_type_statement_token4] = ACTIONS(9352), + [aux_sym_def_type_statement_token5] = ACTIONS(9352), + [aux_sym_def_type_statement_token6] = ACTIONS(9352), + [aux_sym_def_type_statement_token7] = ACTIONS(9352), + [aux_sym_def_type_statement_token8] = ACTIONS(9352), + [aux_sym_def_type_statement_token9] = ACTIONS(9352), + [aux_sym_def_type_statement_token10] = ACTIONS(9352), + [aux_sym_def_type_statement_token11] = ACTIONS(9352), + [aux_sym_def_type_statement_token12] = ACTIONS(9352), + [aux_sym_def_type_statement_token13] = ACTIONS(9352), + [aux_sym_def_type_statement_token14] = ACTIONS(9352), + [aux_sym_call_statement_token1] = ACTIONS(9352), + [sym__ambiguous_call_statement] = ACTIONS(9352), + [aux_sym_addressof_expression_token1] = ACTIONS(9352), + [aux_sym_type_of_expression_token1] = ACTIONS(9352), + [aux_sym_unary_expression_token1] = ACTIONS(9352), + [sym_string_literal] = ACTIONS(9354), + [sym_number_literal] = ACTIONS(9354), + [aux_sym_boolean_literal_token1] = ACTIONS(9352), + [aux_sym_boolean_literal_token2] = ACTIONS(9352), + [sym_nothing_literal] = ACTIONS(9352), + [sym_null_literal] = ACTIONS(9352), + [sym_empty_literal] = ACTIONS(9352), + [sym_date_literal] = ACTIONS(9354), + [anon_sym_POUND] = ACTIONS(9352), + }, + [STATE(6684)] = { + [sym_identifier] = ACTIONS(9514), + [sym_newline] = ACTIONS(9516), + [anon_sym_COLON] = ACTIONS(9516), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9514), + [aux_sym_frm_property_statement_token1] = ACTIONS(9514), + [anon_sym_DOT] = ACTIONS(9514), + [anon_sym_BANG] = ACTIONS(9516), + [aux_sym__attribute_identifier_token1] = ACTIONS(9514), + [aux_sym_option_statement_token3] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9514), + [aux_sym_preprocessor_const_token1] = ACTIONS(9514), + [sym_static_modifier] = ACTIONS(9514), + [sym__dim_keyword] = ACTIONS(9514), + [sym__redim_keyword] = ACTIONS(9514), + [aux_sym_get_accessor_token1] = ACTIONS(9514), + [aux_sym_set_accessor_token1] = ACTIONS(9514), + [aux_sym_const_declaration_token1] = ACTIONS(9514), + [anon_sym_LPAREN] = ACTIONS(9516), + [aux_sym_as_type_clause_token2] = ACTIONS(9514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9514), + [aux_sym_visibility_token1] = ACTIONS(9514), + [aux_sym_visibility_token2] = ACTIONS(9514), + [aux_sym_elseif_fragment_token1] = ACTIONS(9514), + [aux_sym_else_fragment_token1] = ACTIONS(9514), + [aux_sym_select_statement_token1] = ACTIONS(9514), + [aux_sym_select_statement_token2] = ACTIONS(9514), + [aux_sym__for_header_token1] = ACTIONS(9514), + [aux_sym_do_statement_token1] = ACTIONS(9514), + [aux_sym_do_condition_token1] = ACTIONS(9514), + [aux_sym_with_statement_token1] = ACTIONS(9514), + [aux_sym_exit_statement_token1] = ACTIONS(9514), + [sym_end_statement] = ACTIONS(9516), + [aux_sym_on_goto_statement_token1] = ACTIONS(9514), + [aux_sym_on_goto_statement_token2] = ACTIONS(9514), + [aux_sym_on_error_statement_token2] = ACTIONS(9514), + [sym__ambiguous_redim_statement] = ACTIONS(9516), + [aux_sym_erase_statement_token1] = ACTIONS(9514), + [aux_sym_open_statement_token1] = ACTIONS(9514), + [aux_sym_file_mode_token2] = ACTIONS(9514), + [aux_sym_file_access_token2] = ACTIONS(9514), + [aux_sym_file_lock_token2] = ACTIONS(9514), + [aux_sym_print_statement_token1] = ACTIONS(9514), + [anon_sym_PLUS] = ACTIONS(9516), + [anon_sym_DASH] = ACTIONS(9514), + [anon_sym_QMARK] = ACTIONS(9516), + [aux_sym_close_statement_token1] = ACTIONS(9514), + [aux_sym_put_statement_token1] = ACTIONS(9514), + [aux_sym_unlock_statement_token1] = ACTIONS(9514), + [aux_sym_seek_statement_token1] = ACTIONS(9514), + [sym_reset_statement] = ACTIONS(9514), + [aux_sym_raise_event_statement_token1] = ACTIONS(9514), + [sym_stop_statement] = ACTIONS(9514), + [sym_beep_statement] = ACTIONS(9514), + [aux_sym_unload_statement_token1] = ACTIONS(9514), + [aux_sym_def_type_statement_token1] = ACTIONS(9514), + [aux_sym_def_type_statement_token2] = ACTIONS(9514), + [aux_sym_def_type_statement_token3] = ACTIONS(9514), + [aux_sym_def_type_statement_token4] = ACTIONS(9514), + [aux_sym_def_type_statement_token5] = ACTIONS(9514), + [aux_sym_def_type_statement_token6] = ACTIONS(9514), + [aux_sym_def_type_statement_token7] = ACTIONS(9514), + [aux_sym_def_type_statement_token8] = ACTIONS(9514), + [aux_sym_def_type_statement_token9] = ACTIONS(9514), + [aux_sym_def_type_statement_token10] = ACTIONS(9514), + [aux_sym_def_type_statement_token11] = ACTIONS(9514), + [aux_sym_def_type_statement_token12] = ACTIONS(9514), + [aux_sym_def_type_statement_token13] = ACTIONS(9514), + [aux_sym_def_type_statement_token14] = ACTIONS(9514), + [aux_sym_call_statement_token1] = ACTIONS(9514), + [sym__ambiguous_call_statement] = ACTIONS(9514), + [aux_sym_addressof_expression_token1] = ACTIONS(9514), + [aux_sym_type_of_expression_token1] = ACTIONS(9514), + [aux_sym_unary_expression_token1] = ACTIONS(9514), + [sym_string_literal] = ACTIONS(9516), + [sym_number_literal] = ACTIONS(9516), + [aux_sym_boolean_literal_token1] = ACTIONS(9514), + [aux_sym_boolean_literal_token2] = ACTIONS(9514), + [sym_nothing_literal] = ACTIONS(9514), + [sym_null_literal] = ACTIONS(9514), + [sym_empty_literal] = ACTIONS(9514), + [sym_date_literal] = ACTIONS(9516), + [anon_sym_POUND] = ACTIONS(9514), + }, + [STATE(6685)] = { + [sym_identifier] = ACTIONS(9518), + [sym_newline] = ACTIONS(9520), + [anon_sym_COLON] = ACTIONS(9520), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9518), + [aux_sym_frm_property_statement_token1] = ACTIONS(9518), + [anon_sym_DOT] = ACTIONS(9518), + [anon_sym_BANG] = ACTIONS(9520), + [aux_sym__attribute_identifier_token1] = ACTIONS(9518), + [aux_sym_option_statement_token3] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9518), + [aux_sym_preprocessor_const_token1] = ACTIONS(9518), + [sym_static_modifier] = ACTIONS(9518), + [sym__dim_keyword] = ACTIONS(9518), + [sym__redim_keyword] = ACTIONS(9518), + [aux_sym_get_accessor_token1] = ACTIONS(9518), + [aux_sym_set_accessor_token1] = ACTIONS(9518), + [aux_sym_const_declaration_token1] = ACTIONS(9518), + [anon_sym_LPAREN] = ACTIONS(9520), + [aux_sym_as_type_clause_token2] = ACTIONS(9518), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9518), + [aux_sym_visibility_token1] = ACTIONS(9518), + [aux_sym_visibility_token2] = ACTIONS(9518), + [aux_sym_elseif_fragment_token1] = ACTIONS(9518), + [aux_sym_else_fragment_token1] = ACTIONS(9518), + [aux_sym_select_statement_token1] = ACTIONS(9518), + [aux_sym_select_statement_token2] = ACTIONS(9518), + [aux_sym__for_header_token1] = ACTIONS(9518), + [aux_sym_do_statement_token1] = ACTIONS(9518), + [aux_sym_do_condition_token1] = ACTIONS(9518), + [aux_sym_with_statement_token1] = ACTIONS(9518), + [aux_sym_exit_statement_token1] = ACTIONS(9518), + [sym_end_statement] = ACTIONS(9520), + [aux_sym_on_goto_statement_token1] = ACTIONS(9518), + [aux_sym_on_goto_statement_token2] = ACTIONS(9518), + [aux_sym_on_error_statement_token2] = ACTIONS(9518), + [sym__ambiguous_redim_statement] = ACTIONS(9520), + [aux_sym_erase_statement_token1] = ACTIONS(9518), + [aux_sym_open_statement_token1] = ACTIONS(9518), + [aux_sym_file_mode_token2] = ACTIONS(9518), + [aux_sym_file_access_token2] = ACTIONS(9518), + [aux_sym_file_lock_token2] = ACTIONS(9518), + [aux_sym_print_statement_token1] = ACTIONS(9518), + [anon_sym_PLUS] = ACTIONS(9520), + [anon_sym_DASH] = ACTIONS(9518), + [anon_sym_QMARK] = ACTIONS(9520), + [aux_sym_close_statement_token1] = ACTIONS(9518), + [aux_sym_put_statement_token1] = ACTIONS(9518), + [aux_sym_unlock_statement_token1] = ACTIONS(9518), + [aux_sym_seek_statement_token1] = ACTIONS(9518), + [sym_reset_statement] = ACTIONS(9518), + [aux_sym_raise_event_statement_token1] = ACTIONS(9518), + [sym_stop_statement] = ACTIONS(9518), + [sym_beep_statement] = ACTIONS(9518), + [aux_sym_unload_statement_token1] = ACTIONS(9518), + [aux_sym_def_type_statement_token1] = ACTIONS(9518), + [aux_sym_def_type_statement_token2] = ACTIONS(9518), + [aux_sym_def_type_statement_token3] = ACTIONS(9518), + [aux_sym_def_type_statement_token4] = ACTIONS(9518), + [aux_sym_def_type_statement_token5] = ACTIONS(9518), + [aux_sym_def_type_statement_token6] = ACTIONS(9518), + [aux_sym_def_type_statement_token7] = ACTIONS(9518), + [aux_sym_def_type_statement_token8] = ACTIONS(9518), + [aux_sym_def_type_statement_token9] = ACTIONS(9518), + [aux_sym_def_type_statement_token10] = ACTIONS(9518), + [aux_sym_def_type_statement_token11] = ACTIONS(9518), + [aux_sym_def_type_statement_token12] = ACTIONS(9518), + [aux_sym_def_type_statement_token13] = ACTIONS(9518), + [aux_sym_def_type_statement_token14] = ACTIONS(9518), + [aux_sym_call_statement_token1] = ACTIONS(9518), + [sym__ambiguous_call_statement] = ACTIONS(9518), + [aux_sym_addressof_expression_token1] = ACTIONS(9518), + [aux_sym_type_of_expression_token1] = ACTIONS(9518), + [aux_sym_unary_expression_token1] = ACTIONS(9518), + [sym_string_literal] = ACTIONS(9520), + [sym_number_literal] = ACTIONS(9520), + [aux_sym_boolean_literal_token1] = ACTIONS(9518), + [aux_sym_boolean_literal_token2] = ACTIONS(9518), + [sym_nothing_literal] = ACTIONS(9518), + [sym_null_literal] = ACTIONS(9518), + [sym_empty_literal] = ACTIONS(9518), + [sym_date_literal] = ACTIONS(9520), + [anon_sym_POUND] = ACTIONS(9518), + }, + [STATE(6686)] = { + [sym_identifier] = ACTIONS(9522), + [sym_newline] = ACTIONS(9524), + [anon_sym_COLON] = ACTIONS(9524), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9522), + [aux_sym_frm_property_statement_token1] = ACTIONS(9522), + [anon_sym_DOT] = ACTIONS(9522), + [anon_sym_BANG] = ACTIONS(9524), + [aux_sym__attribute_identifier_token1] = ACTIONS(9522), + [aux_sym_option_statement_token3] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9522), + [aux_sym_preprocessor_const_token1] = ACTIONS(9522), + [sym_static_modifier] = ACTIONS(9522), + [sym__dim_keyword] = ACTIONS(9522), + [sym__redim_keyword] = ACTIONS(9522), + [aux_sym_get_accessor_token1] = ACTIONS(9522), + [aux_sym_set_accessor_token1] = ACTIONS(9522), + [aux_sym_const_declaration_token1] = ACTIONS(9522), + [anon_sym_LPAREN] = ACTIONS(9524), + [aux_sym_as_type_clause_token2] = ACTIONS(9522), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9522), + [aux_sym_visibility_token1] = ACTIONS(9522), + [aux_sym_visibility_token2] = ACTIONS(9522), + [aux_sym_elseif_fragment_token1] = ACTIONS(9522), + [aux_sym_else_fragment_token1] = ACTIONS(9522), + [aux_sym_select_statement_token1] = ACTIONS(9522), + [aux_sym_select_statement_token2] = ACTIONS(9522), + [aux_sym__for_header_token1] = ACTIONS(9522), + [aux_sym_do_statement_token1] = ACTIONS(9522), + [aux_sym_do_condition_token1] = ACTIONS(9522), + [aux_sym_with_statement_token1] = ACTIONS(9522), + [aux_sym_exit_statement_token1] = ACTIONS(9522), + [sym_end_statement] = ACTIONS(9524), + [aux_sym_on_goto_statement_token1] = ACTIONS(9522), + [aux_sym_on_goto_statement_token2] = ACTIONS(9522), + [aux_sym_on_error_statement_token2] = ACTIONS(9522), + [sym__ambiguous_redim_statement] = ACTIONS(9524), + [aux_sym_erase_statement_token1] = ACTIONS(9522), + [aux_sym_open_statement_token1] = ACTIONS(9522), + [aux_sym_file_mode_token2] = ACTIONS(9522), + [aux_sym_file_access_token2] = ACTIONS(9522), + [aux_sym_file_lock_token2] = ACTIONS(9522), + [aux_sym_print_statement_token1] = ACTIONS(9522), + [anon_sym_PLUS] = ACTIONS(9524), + [anon_sym_DASH] = ACTIONS(9522), + [anon_sym_QMARK] = ACTIONS(9524), + [aux_sym_close_statement_token1] = ACTIONS(9522), + [aux_sym_put_statement_token1] = ACTIONS(9522), + [aux_sym_unlock_statement_token1] = ACTIONS(9522), + [aux_sym_seek_statement_token1] = ACTIONS(9522), + [sym_reset_statement] = ACTIONS(9522), + [aux_sym_raise_event_statement_token1] = ACTIONS(9522), + [sym_stop_statement] = ACTIONS(9522), + [sym_beep_statement] = ACTIONS(9522), + [aux_sym_unload_statement_token1] = ACTIONS(9522), + [aux_sym_def_type_statement_token1] = ACTIONS(9522), + [aux_sym_def_type_statement_token2] = ACTIONS(9522), + [aux_sym_def_type_statement_token3] = ACTIONS(9522), + [aux_sym_def_type_statement_token4] = ACTIONS(9522), + [aux_sym_def_type_statement_token5] = ACTIONS(9522), + [aux_sym_def_type_statement_token6] = ACTIONS(9522), + [aux_sym_def_type_statement_token7] = ACTIONS(9522), + [aux_sym_def_type_statement_token8] = ACTIONS(9522), + [aux_sym_def_type_statement_token9] = ACTIONS(9522), + [aux_sym_def_type_statement_token10] = ACTIONS(9522), + [aux_sym_def_type_statement_token11] = ACTIONS(9522), + [aux_sym_def_type_statement_token12] = ACTIONS(9522), + [aux_sym_def_type_statement_token13] = ACTIONS(9522), + [aux_sym_def_type_statement_token14] = ACTIONS(9522), + [aux_sym_call_statement_token1] = ACTIONS(9522), + [sym__ambiguous_call_statement] = ACTIONS(9522), + [aux_sym_addressof_expression_token1] = ACTIONS(9522), + [aux_sym_type_of_expression_token1] = ACTIONS(9522), + [aux_sym_unary_expression_token1] = ACTIONS(9522), + [sym_string_literal] = ACTIONS(9524), + [sym_number_literal] = ACTIONS(9524), + [aux_sym_boolean_literal_token1] = ACTIONS(9522), + [aux_sym_boolean_literal_token2] = ACTIONS(9522), + [sym_nothing_literal] = ACTIONS(9522), + [sym_null_literal] = ACTIONS(9522), + [sym_empty_literal] = ACTIONS(9522), + [sym_date_literal] = ACTIONS(9524), + [anon_sym_POUND] = ACTIONS(9522), + }, + [STATE(6687)] = { + [sym_identifier] = ACTIONS(9020), + [sym_newline] = ACTIONS(9022), + [anon_sym_COLON] = ACTIONS(9022), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9020), + [aux_sym_frm_property_statement_token1] = ACTIONS(9020), + [anon_sym_DOT] = ACTIONS(9020), + [anon_sym_BANG] = ACTIONS(9022), + [aux_sym__attribute_identifier_token1] = ACTIONS(9020), + [aux_sym_option_statement_token3] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9020), + [aux_sym_preprocessor_const_token1] = ACTIONS(9020), + [sym_static_modifier] = ACTIONS(9020), + [sym__dim_keyword] = ACTIONS(9020), + [sym__redim_keyword] = ACTIONS(9020), + [aux_sym_get_accessor_token1] = ACTIONS(9020), + [aux_sym_set_accessor_token1] = ACTIONS(9020), + [aux_sym_const_declaration_token1] = ACTIONS(9020), + [anon_sym_LPAREN] = ACTIONS(9022), + [aux_sym_as_type_clause_token2] = ACTIONS(9020), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9020), + [aux_sym_visibility_token1] = ACTIONS(9020), + [aux_sym_visibility_token2] = ACTIONS(9020), + [aux_sym_elseif_fragment_token1] = ACTIONS(9020), + [aux_sym_else_fragment_token1] = ACTIONS(9020), + [aux_sym_select_statement_token1] = ACTIONS(9020), + [aux_sym__for_header_token1] = ACTIONS(9020), + [aux_sym_do_statement_token1] = ACTIONS(9020), + [aux_sym_do_condition_token1] = ACTIONS(9020), + [aux_sym_with_statement_token1] = ACTIONS(9020), + [aux_sym_exit_statement_token1] = ACTIONS(9020), + [sym_end_statement] = ACTIONS(9022), + [aux_sym_on_goto_statement_token1] = ACTIONS(9020), + [aux_sym_on_goto_statement_token2] = ACTIONS(9020), + [aux_sym_on_error_statement_token2] = ACTIONS(9020), + [sym__ambiguous_redim_statement] = ACTIONS(9022), + [aux_sym_erase_statement_token1] = ACTIONS(9020), + [aux_sym_open_statement_token1] = ACTIONS(9020), + [aux_sym_file_mode_token2] = ACTIONS(9020), + [aux_sym_file_access_token2] = ACTIONS(9020), + [aux_sym_file_lock_token2] = ACTIONS(9020), + [aux_sym_print_statement_token1] = ACTIONS(9020), + [anon_sym_PLUS] = ACTIONS(9022), + [anon_sym_DASH] = ACTIONS(9020), + [anon_sym_QMARK] = ACTIONS(9022), + [aux_sym_close_statement_token1] = ACTIONS(9020), + [aux_sym_put_statement_token1] = ACTIONS(9020), + [aux_sym_unlock_statement_token1] = ACTIONS(9020), + [aux_sym_seek_statement_token1] = ACTIONS(9020), + [sym_reset_statement] = ACTIONS(9020), + [aux_sym_raise_event_statement_token1] = ACTIONS(9020), + [sym_stop_statement] = ACTIONS(9020), + [sym_beep_statement] = ACTIONS(9020), + [aux_sym_unload_statement_token1] = ACTIONS(9020), + [aux_sym_def_type_statement_token1] = ACTIONS(9020), + [aux_sym_def_type_statement_token2] = ACTIONS(9020), + [aux_sym_def_type_statement_token3] = ACTIONS(9020), + [aux_sym_def_type_statement_token4] = ACTIONS(9020), + [aux_sym_def_type_statement_token5] = ACTIONS(9020), + [aux_sym_def_type_statement_token6] = ACTIONS(9020), + [aux_sym_def_type_statement_token7] = ACTIONS(9020), + [aux_sym_def_type_statement_token8] = ACTIONS(9020), + [aux_sym_def_type_statement_token9] = ACTIONS(9020), + [aux_sym_def_type_statement_token10] = ACTIONS(9020), + [aux_sym_def_type_statement_token11] = ACTIONS(9020), + [aux_sym_def_type_statement_token12] = ACTIONS(9020), + [aux_sym_def_type_statement_token13] = ACTIONS(9020), + [aux_sym_def_type_statement_token14] = ACTIONS(9020), + [aux_sym_call_statement_token1] = ACTIONS(9020), + [sym__ambiguous_call_statement] = ACTIONS(9020), + [aux_sym_addressof_expression_token1] = ACTIONS(9020), + [aux_sym_type_of_expression_token1] = ACTIONS(9020), + [aux_sym_unary_expression_token1] = ACTIONS(9020), + [sym_string_literal] = ACTIONS(9022), + [sym_number_literal] = ACTIONS(9022), + [aux_sym_boolean_literal_token1] = ACTIONS(9020), + [aux_sym_boolean_literal_token2] = ACTIONS(9020), + [sym_nothing_literal] = ACTIONS(9020), + [sym_null_literal] = ACTIONS(9020), + [sym_empty_literal] = ACTIONS(9020), + [sym_date_literal] = ACTIONS(9022), + [anon_sym_POUND] = ACTIONS(9020), + }, + [STATE(6688)] = { + [sym_identifier] = ACTIONS(9526), + [sym_newline] = ACTIONS(9528), + [anon_sym_COLON] = ACTIONS(9528), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9526), + [aux_sym_frm_property_statement_token1] = ACTIONS(9526), + [anon_sym_DOT] = ACTIONS(9526), + [anon_sym_BANG] = ACTIONS(9528), + [aux_sym__attribute_identifier_token1] = ACTIONS(9526), + [aux_sym_option_statement_token3] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9526), + [aux_sym_preprocessor_const_token1] = ACTIONS(9526), + [sym_static_modifier] = ACTIONS(9526), + [sym__dim_keyword] = ACTIONS(9526), + [sym__redim_keyword] = ACTIONS(9526), + [aux_sym_get_accessor_token1] = ACTIONS(9526), + [aux_sym_set_accessor_token1] = ACTIONS(9526), + [aux_sym_const_declaration_token1] = ACTIONS(9526), + [anon_sym_LPAREN] = ACTIONS(9528), + [aux_sym_as_type_clause_token2] = ACTIONS(9526), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9526), + [aux_sym_visibility_token1] = ACTIONS(9526), + [aux_sym_visibility_token2] = ACTIONS(9526), + [aux_sym_elseif_fragment_token1] = ACTIONS(9526), + [aux_sym_else_fragment_token1] = ACTIONS(9526), + [aux_sym_select_statement_token1] = ACTIONS(9526), + [aux_sym_select_statement_token2] = ACTIONS(9526), + [aux_sym__for_header_token1] = ACTIONS(9526), + [aux_sym_do_statement_token1] = ACTIONS(9526), + [aux_sym_do_condition_token1] = ACTIONS(9526), + [aux_sym_with_statement_token1] = ACTIONS(9526), + [aux_sym_exit_statement_token1] = ACTIONS(9526), + [sym_end_statement] = ACTIONS(9528), + [aux_sym_on_goto_statement_token1] = ACTIONS(9526), + [aux_sym_on_goto_statement_token2] = ACTIONS(9526), + [aux_sym_on_error_statement_token2] = ACTIONS(9526), + [sym__ambiguous_redim_statement] = ACTIONS(9528), + [aux_sym_erase_statement_token1] = ACTIONS(9526), + [aux_sym_open_statement_token1] = ACTIONS(9526), + [aux_sym_file_mode_token2] = ACTIONS(9526), + [aux_sym_file_access_token2] = ACTIONS(9526), + [aux_sym_file_lock_token2] = ACTIONS(9526), + [aux_sym_print_statement_token1] = ACTIONS(9526), + [anon_sym_PLUS] = ACTIONS(9528), + [anon_sym_DASH] = ACTIONS(9526), + [anon_sym_QMARK] = ACTIONS(9528), + [aux_sym_close_statement_token1] = ACTIONS(9526), + [aux_sym_put_statement_token1] = ACTIONS(9526), + [aux_sym_unlock_statement_token1] = ACTIONS(9526), + [aux_sym_seek_statement_token1] = ACTIONS(9526), + [sym_reset_statement] = ACTIONS(9526), + [aux_sym_raise_event_statement_token1] = ACTIONS(9526), + [sym_stop_statement] = ACTIONS(9526), + [sym_beep_statement] = ACTIONS(9526), + [aux_sym_unload_statement_token1] = ACTIONS(9526), + [aux_sym_def_type_statement_token1] = ACTIONS(9526), + [aux_sym_def_type_statement_token2] = ACTIONS(9526), + [aux_sym_def_type_statement_token3] = ACTIONS(9526), + [aux_sym_def_type_statement_token4] = ACTIONS(9526), + [aux_sym_def_type_statement_token5] = ACTIONS(9526), + [aux_sym_def_type_statement_token6] = ACTIONS(9526), + [aux_sym_def_type_statement_token7] = ACTIONS(9526), + [aux_sym_def_type_statement_token8] = ACTIONS(9526), + [aux_sym_def_type_statement_token9] = ACTIONS(9526), + [aux_sym_def_type_statement_token10] = ACTIONS(9526), + [aux_sym_def_type_statement_token11] = ACTIONS(9526), + [aux_sym_def_type_statement_token12] = ACTIONS(9526), + [aux_sym_def_type_statement_token13] = ACTIONS(9526), + [aux_sym_def_type_statement_token14] = ACTIONS(9526), + [aux_sym_call_statement_token1] = ACTIONS(9526), + [sym__ambiguous_call_statement] = ACTIONS(9526), + [aux_sym_addressof_expression_token1] = ACTIONS(9526), + [aux_sym_type_of_expression_token1] = ACTIONS(9526), + [aux_sym_unary_expression_token1] = ACTIONS(9526), + [sym_string_literal] = ACTIONS(9528), + [sym_number_literal] = ACTIONS(9528), + [aux_sym_boolean_literal_token1] = ACTIONS(9526), + [aux_sym_boolean_literal_token2] = ACTIONS(9526), + [sym_nothing_literal] = ACTIONS(9526), + [sym_null_literal] = ACTIONS(9526), + [sym_empty_literal] = ACTIONS(9526), + [sym_date_literal] = ACTIONS(9528), + [anon_sym_POUND] = ACTIONS(9526), + }, + [STATE(6689)] = { + [sym_identifier] = ACTIONS(9080), + [sym_newline] = ACTIONS(9082), + [anon_sym_COLON] = ACTIONS(9082), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9080), + [aux_sym_frm_property_statement_token1] = ACTIONS(9080), + [anon_sym_DOT] = ACTIONS(9080), + [anon_sym_BANG] = ACTIONS(9082), + [aux_sym__attribute_identifier_token1] = ACTIONS(9080), + [aux_sym_option_statement_token3] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9080), + [aux_sym_preprocessor_const_token1] = ACTIONS(9080), + [sym_static_modifier] = ACTIONS(9080), + [sym__dim_keyword] = ACTIONS(9080), + [sym__redim_keyword] = ACTIONS(9080), + [aux_sym_get_accessor_token1] = ACTIONS(9080), + [aux_sym_set_accessor_token1] = ACTIONS(9080), + [aux_sym_const_declaration_token1] = ACTIONS(9080), + [anon_sym_LPAREN] = ACTIONS(9082), + [aux_sym_as_type_clause_token2] = ACTIONS(9080), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9080), + [aux_sym_visibility_token1] = ACTIONS(9080), + [aux_sym_visibility_token2] = ACTIONS(9080), + [aux_sym_elseif_fragment_token1] = ACTIONS(9080), + [aux_sym_else_fragment_token1] = ACTIONS(9080), + [aux_sym_select_statement_token1] = ACTIONS(9080), + [aux_sym__for_header_token1] = ACTIONS(9080), + [aux_sym_do_statement_token1] = ACTIONS(9080), + [aux_sym_do_condition_token1] = ACTIONS(9080), + [aux_sym_with_statement_token1] = ACTIONS(9080), + [aux_sym_exit_statement_token1] = ACTIONS(9080), + [sym_end_statement] = ACTIONS(9082), + [aux_sym_on_goto_statement_token1] = ACTIONS(9080), + [aux_sym_on_goto_statement_token2] = ACTIONS(9080), + [aux_sym_on_error_statement_token2] = ACTIONS(9080), + [sym__ambiguous_redim_statement] = ACTIONS(9082), + [aux_sym_erase_statement_token1] = ACTIONS(9080), + [aux_sym_open_statement_token1] = ACTIONS(9080), + [aux_sym_file_mode_token2] = ACTIONS(9080), + [aux_sym_file_access_token2] = ACTIONS(9080), + [aux_sym_file_lock_token2] = ACTIONS(9080), + [aux_sym_print_statement_token1] = ACTIONS(9080), + [anon_sym_PLUS] = ACTIONS(9082), + [anon_sym_DASH] = ACTIONS(9080), + [anon_sym_QMARK] = ACTIONS(9082), + [aux_sym_close_statement_token1] = ACTIONS(9080), + [aux_sym_put_statement_token1] = ACTIONS(9080), + [aux_sym_unlock_statement_token1] = ACTIONS(9080), + [aux_sym_seek_statement_token1] = ACTIONS(9080), + [sym_reset_statement] = ACTIONS(9080), + [aux_sym_raise_event_statement_token1] = ACTIONS(9080), + [sym_stop_statement] = ACTIONS(9080), + [sym_beep_statement] = ACTIONS(9080), + [aux_sym_unload_statement_token1] = ACTIONS(9080), + [aux_sym_def_type_statement_token1] = ACTIONS(9080), + [aux_sym_def_type_statement_token2] = ACTIONS(9080), + [aux_sym_def_type_statement_token3] = ACTIONS(9080), + [aux_sym_def_type_statement_token4] = ACTIONS(9080), + [aux_sym_def_type_statement_token5] = ACTIONS(9080), + [aux_sym_def_type_statement_token6] = ACTIONS(9080), + [aux_sym_def_type_statement_token7] = ACTIONS(9080), + [aux_sym_def_type_statement_token8] = ACTIONS(9080), + [aux_sym_def_type_statement_token9] = ACTIONS(9080), + [aux_sym_def_type_statement_token10] = ACTIONS(9080), + [aux_sym_def_type_statement_token11] = ACTIONS(9080), + [aux_sym_def_type_statement_token12] = ACTIONS(9080), + [aux_sym_def_type_statement_token13] = ACTIONS(9080), + [aux_sym_def_type_statement_token14] = ACTIONS(9080), + [aux_sym_call_statement_token1] = ACTIONS(9080), + [sym__ambiguous_call_statement] = ACTIONS(9080), + [aux_sym_addressof_expression_token1] = ACTIONS(9080), + [aux_sym_type_of_expression_token1] = ACTIONS(9080), + [aux_sym_unary_expression_token1] = ACTIONS(9080), + [sym_string_literal] = ACTIONS(9082), + [sym_number_literal] = ACTIONS(9082), + [aux_sym_boolean_literal_token1] = ACTIONS(9080), + [aux_sym_boolean_literal_token2] = ACTIONS(9080), + [sym_nothing_literal] = ACTIONS(9080), + [sym_null_literal] = ACTIONS(9080), + [sym_empty_literal] = ACTIONS(9080), + [sym_date_literal] = ACTIONS(9082), + [anon_sym_POUND] = ACTIONS(9080), + }, + [STATE(6690)] = { + [sym_identifier] = ACTIONS(9818), + [sym_newline] = ACTIONS(9820), + [anon_sym_COLON] = ACTIONS(9820), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9818), + [aux_sym_frm_property_statement_token1] = ACTIONS(9818), + [anon_sym_DOT] = ACTIONS(9818), + [anon_sym_BANG] = ACTIONS(9820), + [aux_sym__attribute_identifier_token1] = ACTIONS(9818), + [aux_sym_option_statement_token3] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9818), + [aux_sym_preprocessor_const_token1] = ACTIONS(9818), + [sym_static_modifier] = ACTIONS(9818), + [sym__dim_keyword] = ACTIONS(9818), + [sym__redim_keyword] = ACTIONS(9818), + [aux_sym_get_accessor_token1] = ACTIONS(9818), + [aux_sym_set_accessor_token1] = ACTIONS(9818), + [aux_sym_const_declaration_token1] = ACTIONS(9818), + [anon_sym_LPAREN] = ACTIONS(9820), + [aux_sym_as_type_clause_token2] = ACTIONS(9818), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9818), + [aux_sym_visibility_token1] = ACTIONS(9818), + [aux_sym_visibility_token2] = ACTIONS(9818), + [aux_sym_elseif_fragment_token1] = ACTIONS(9818), + [aux_sym_else_fragment_token1] = ACTIONS(9818), + [aux_sym_select_statement_token1] = ACTIONS(9818), + [aux_sym_select_statement_token2] = ACTIONS(9818), + [aux_sym__for_header_token1] = ACTIONS(9818), + [aux_sym_do_statement_token1] = ACTIONS(9818), + [aux_sym_do_condition_token1] = ACTIONS(9818), + [aux_sym_with_statement_token1] = ACTIONS(9818), + [aux_sym_exit_statement_token1] = ACTIONS(9818), + [sym_end_statement] = ACTIONS(9820), + [aux_sym_on_goto_statement_token1] = ACTIONS(9818), + [aux_sym_on_goto_statement_token2] = ACTIONS(9818), + [aux_sym_on_error_statement_token2] = ACTIONS(9818), + [sym__ambiguous_redim_statement] = ACTIONS(9820), + [aux_sym_erase_statement_token1] = ACTIONS(9818), + [aux_sym_open_statement_token1] = ACTIONS(9818), + [aux_sym_file_mode_token2] = ACTIONS(9818), + [aux_sym_file_access_token2] = ACTIONS(9818), + [aux_sym_file_lock_token2] = ACTIONS(9818), + [aux_sym_print_statement_token1] = ACTIONS(9818), + [anon_sym_PLUS] = ACTIONS(9820), + [anon_sym_DASH] = ACTIONS(9818), + [anon_sym_QMARK] = ACTIONS(9820), + [aux_sym_close_statement_token1] = ACTIONS(9818), + [aux_sym_put_statement_token1] = ACTIONS(9818), + [aux_sym_unlock_statement_token1] = ACTIONS(9818), + [aux_sym_seek_statement_token1] = ACTIONS(9818), + [sym_reset_statement] = ACTIONS(9818), + [aux_sym_raise_event_statement_token1] = ACTIONS(9818), + [sym_stop_statement] = ACTIONS(9818), + [sym_beep_statement] = ACTIONS(9818), + [aux_sym_unload_statement_token1] = ACTIONS(9818), + [aux_sym_def_type_statement_token1] = ACTIONS(9818), + [aux_sym_def_type_statement_token2] = ACTIONS(9818), + [aux_sym_def_type_statement_token3] = ACTIONS(9818), + [aux_sym_def_type_statement_token4] = ACTIONS(9818), + [aux_sym_def_type_statement_token5] = ACTIONS(9818), + [aux_sym_def_type_statement_token6] = ACTIONS(9818), + [aux_sym_def_type_statement_token7] = ACTIONS(9818), + [aux_sym_def_type_statement_token8] = ACTIONS(9818), + [aux_sym_def_type_statement_token9] = ACTIONS(9818), + [aux_sym_def_type_statement_token10] = ACTIONS(9818), + [aux_sym_def_type_statement_token11] = ACTIONS(9818), + [aux_sym_def_type_statement_token12] = ACTIONS(9818), + [aux_sym_def_type_statement_token13] = ACTIONS(9818), + [aux_sym_def_type_statement_token14] = ACTIONS(9818), + [aux_sym_call_statement_token1] = ACTIONS(9818), + [sym__ambiguous_call_statement] = ACTIONS(9818), + [aux_sym_addressof_expression_token1] = ACTIONS(9818), + [aux_sym_type_of_expression_token1] = ACTIONS(9818), + [aux_sym_unary_expression_token1] = ACTIONS(9818), + [sym_string_literal] = ACTIONS(9820), + [sym_number_literal] = ACTIONS(9820), + [aux_sym_boolean_literal_token1] = ACTIONS(9818), + [aux_sym_boolean_literal_token2] = ACTIONS(9818), + [sym_nothing_literal] = ACTIONS(9818), + [sym_null_literal] = ACTIONS(9818), + [sym_empty_literal] = ACTIONS(9818), + [sym_date_literal] = ACTIONS(9820), + [anon_sym_POUND] = ACTIONS(9818), + }, + [STATE(6691)] = { + [sym_identifier] = ACTIONS(9532), + [sym_newline] = ACTIONS(9534), + [anon_sym_COLON] = ACTIONS(9534), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9532), + [aux_sym_frm_property_statement_token1] = ACTIONS(9532), + [anon_sym_DOT] = ACTIONS(9532), + [anon_sym_BANG] = ACTIONS(9534), + [aux_sym__attribute_identifier_token1] = ACTIONS(9532), + [aux_sym_option_statement_token3] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9532), + [aux_sym_preprocessor_const_token1] = ACTIONS(9532), + [sym_static_modifier] = ACTIONS(9532), + [sym__dim_keyword] = ACTIONS(9532), + [sym__redim_keyword] = ACTIONS(9532), + [aux_sym_get_accessor_token1] = ACTIONS(9532), + [aux_sym_set_accessor_token1] = ACTIONS(9532), + [aux_sym_const_declaration_token1] = ACTIONS(9532), + [anon_sym_LPAREN] = ACTIONS(9534), + [aux_sym_as_type_clause_token2] = ACTIONS(9532), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9532), + [aux_sym_visibility_token1] = ACTIONS(9532), + [aux_sym_visibility_token2] = ACTIONS(9532), + [aux_sym_elseif_fragment_token1] = ACTIONS(9532), + [aux_sym_else_fragment_token1] = ACTIONS(9532), + [aux_sym_select_statement_token1] = ACTIONS(9532), + [aux_sym_select_statement_token2] = ACTIONS(9532), + [aux_sym__for_header_token1] = ACTIONS(9532), + [aux_sym_do_statement_token1] = ACTIONS(9532), + [aux_sym_do_condition_token1] = ACTIONS(9532), + [aux_sym_with_statement_token1] = ACTIONS(9532), + [aux_sym_exit_statement_token1] = ACTIONS(9532), + [sym_end_statement] = ACTIONS(9534), + [aux_sym_on_goto_statement_token1] = ACTIONS(9532), + [aux_sym_on_goto_statement_token2] = ACTIONS(9532), + [aux_sym_on_error_statement_token2] = ACTIONS(9532), + [sym__ambiguous_redim_statement] = ACTIONS(9534), + [aux_sym_erase_statement_token1] = ACTIONS(9532), + [aux_sym_open_statement_token1] = ACTIONS(9532), + [aux_sym_file_mode_token2] = ACTIONS(9532), + [aux_sym_file_access_token2] = ACTIONS(9532), + [aux_sym_file_lock_token2] = ACTIONS(9532), + [aux_sym_print_statement_token1] = ACTIONS(9532), + [anon_sym_PLUS] = ACTIONS(9534), + [anon_sym_DASH] = ACTIONS(9532), + [anon_sym_QMARK] = ACTIONS(9534), + [aux_sym_close_statement_token1] = ACTIONS(9532), + [aux_sym_put_statement_token1] = ACTIONS(9532), + [aux_sym_unlock_statement_token1] = ACTIONS(9532), + [aux_sym_seek_statement_token1] = ACTIONS(9532), + [sym_reset_statement] = ACTIONS(9532), + [aux_sym_raise_event_statement_token1] = ACTIONS(9532), + [sym_stop_statement] = ACTIONS(9532), + [sym_beep_statement] = ACTIONS(9532), + [aux_sym_unload_statement_token1] = ACTIONS(9532), + [aux_sym_def_type_statement_token1] = ACTIONS(9532), + [aux_sym_def_type_statement_token2] = ACTIONS(9532), + [aux_sym_def_type_statement_token3] = ACTIONS(9532), + [aux_sym_def_type_statement_token4] = ACTIONS(9532), + [aux_sym_def_type_statement_token5] = ACTIONS(9532), + [aux_sym_def_type_statement_token6] = ACTIONS(9532), + [aux_sym_def_type_statement_token7] = ACTIONS(9532), + [aux_sym_def_type_statement_token8] = ACTIONS(9532), + [aux_sym_def_type_statement_token9] = ACTIONS(9532), + [aux_sym_def_type_statement_token10] = ACTIONS(9532), + [aux_sym_def_type_statement_token11] = ACTIONS(9532), + [aux_sym_def_type_statement_token12] = ACTIONS(9532), + [aux_sym_def_type_statement_token13] = ACTIONS(9532), + [aux_sym_def_type_statement_token14] = ACTIONS(9532), + [aux_sym_call_statement_token1] = ACTIONS(9532), + [sym__ambiguous_call_statement] = ACTIONS(9532), + [aux_sym_addressof_expression_token1] = ACTIONS(9532), + [aux_sym_type_of_expression_token1] = ACTIONS(9532), + [aux_sym_unary_expression_token1] = ACTIONS(9532), + [sym_string_literal] = ACTIONS(9534), + [sym_number_literal] = ACTIONS(9534), + [aux_sym_boolean_literal_token1] = ACTIONS(9532), + [aux_sym_boolean_literal_token2] = ACTIONS(9532), + [sym_nothing_literal] = ACTIONS(9532), + [sym_null_literal] = ACTIONS(9532), + [sym_empty_literal] = ACTIONS(9532), + [sym_date_literal] = ACTIONS(9534), + [anon_sym_POUND] = ACTIONS(9532), + }, + [STATE(6692)] = { + [sym_identifier] = ACTIONS(8780), + [sym_newline] = ACTIONS(8782), + [anon_sym_COLON] = ACTIONS(8782), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8780), + [aux_sym_frm_property_statement_token1] = ACTIONS(8780), + [anon_sym_DOT] = ACTIONS(8780), + [anon_sym_BANG] = ACTIONS(8782), + [aux_sym__attribute_identifier_token1] = ACTIONS(8780), + [aux_sym_option_statement_token3] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8780), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8780), + [aux_sym_preprocessor_const_token1] = ACTIONS(8780), + [sym_static_modifier] = ACTIONS(8780), + [sym__dim_keyword] = ACTIONS(8780), + [sym__redim_keyword] = ACTIONS(8780), + [aux_sym_get_accessor_token1] = ACTIONS(8780), + [aux_sym_set_accessor_token1] = ACTIONS(8780), + [anon_sym_COMMA] = ACTIONS(11128), + [aux_sym_const_declaration_token1] = ACTIONS(8780), + [anon_sym_LPAREN] = ACTIONS(8782), + [aux_sym_as_type_clause_token2] = ACTIONS(8780), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8780), + [aux_sym_visibility_token1] = ACTIONS(8780), + [aux_sym_visibility_token2] = ACTIONS(8780), + [aux_sym_elseif_fragment_token1] = ACTIONS(8780), + [aux_sym_else_fragment_token1] = ACTIONS(8780), + [aux_sym_select_statement_token1] = ACTIONS(8780), + [aux_sym__for_header_token1] = ACTIONS(8780), + [aux_sym_do_statement_token1] = ACTIONS(8780), + [aux_sym_do_condition_token1] = ACTIONS(8780), + [aux_sym_with_statement_token1] = ACTIONS(8780), + [aux_sym_exit_statement_token1] = ACTIONS(8780), + [sym_end_statement] = ACTIONS(8782), + [aux_sym_on_goto_statement_token1] = ACTIONS(8780), + [aux_sym_on_goto_statement_token2] = ACTIONS(8780), + [aux_sym_on_error_statement_token2] = ACTIONS(8780), + [sym__ambiguous_redim_statement] = ACTIONS(8782), + [aux_sym_erase_statement_token1] = ACTIONS(8780), + [aux_sym_open_statement_token1] = ACTIONS(8780), + [aux_sym_file_mode_token2] = ACTIONS(8780), + [aux_sym_file_access_token2] = ACTIONS(8780), + [aux_sym_file_lock_token2] = ACTIONS(8780), + [aux_sym_print_statement_token1] = ACTIONS(8780), + [anon_sym_PLUS] = ACTIONS(8782), + [anon_sym_DASH] = ACTIONS(8780), + [anon_sym_QMARK] = ACTIONS(8782), + [aux_sym_close_statement_token1] = ACTIONS(8780), + [aux_sym_put_statement_token1] = ACTIONS(8780), + [aux_sym_unlock_statement_token1] = ACTIONS(8780), + [aux_sym_seek_statement_token1] = ACTIONS(8780), + [sym_reset_statement] = ACTIONS(8780), + [aux_sym_raise_event_statement_token1] = ACTIONS(8780), + [sym_stop_statement] = ACTIONS(8780), + [sym_beep_statement] = ACTIONS(8780), + [aux_sym_unload_statement_token1] = ACTIONS(8780), + [aux_sym_def_type_statement_token1] = ACTIONS(8780), + [aux_sym_def_type_statement_token2] = ACTIONS(8780), + [aux_sym_def_type_statement_token3] = ACTIONS(8780), + [aux_sym_def_type_statement_token4] = ACTIONS(8780), + [aux_sym_def_type_statement_token5] = ACTIONS(8780), + [aux_sym_def_type_statement_token6] = ACTIONS(8780), + [aux_sym_def_type_statement_token7] = ACTIONS(8780), + [aux_sym_def_type_statement_token8] = ACTIONS(8780), + [aux_sym_def_type_statement_token9] = ACTIONS(8780), + [aux_sym_def_type_statement_token10] = ACTIONS(8780), + [aux_sym_def_type_statement_token11] = ACTIONS(8780), + [aux_sym_def_type_statement_token12] = ACTIONS(8780), + [aux_sym_def_type_statement_token13] = ACTIONS(8780), + [aux_sym_def_type_statement_token14] = ACTIONS(8780), + [aux_sym_call_statement_token1] = ACTIONS(8780), + [sym__ambiguous_call_statement] = ACTIONS(8780), + [aux_sym_addressof_expression_token1] = ACTIONS(8780), + [aux_sym_type_of_expression_token1] = ACTIONS(8780), + [aux_sym_unary_expression_token1] = ACTIONS(8780), + [sym_string_literal] = ACTIONS(8782), + [sym_number_literal] = ACTIONS(8782), + [aux_sym_boolean_literal_token1] = ACTIONS(8780), + [aux_sym_boolean_literal_token2] = ACTIONS(8780), + [sym_nothing_literal] = ACTIONS(8780), + [sym_null_literal] = ACTIONS(8780), + [sym_empty_literal] = ACTIONS(8780), + [sym_date_literal] = ACTIONS(8782), + [anon_sym_POUND] = ACTIONS(8780), + }, + [STATE(6693)] = { + [sym_identifier] = ACTIONS(9106), + [sym_newline] = ACTIONS(9108), + [anon_sym_COLON] = ACTIONS(9108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9106), + [aux_sym_frm_property_statement_token1] = ACTIONS(9106), + [anon_sym_DOT] = ACTIONS(9106), + [anon_sym_BANG] = ACTIONS(9108), + [aux_sym__attribute_identifier_token1] = ACTIONS(9106), + [aux_sym_option_statement_token3] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9106), + [aux_sym_preprocessor_const_token1] = ACTIONS(9106), + [sym_static_modifier] = ACTIONS(9106), + [sym__dim_keyword] = ACTIONS(9106), + [sym__redim_keyword] = ACTIONS(9106), + [aux_sym_get_accessor_token1] = ACTIONS(9106), + [aux_sym_set_accessor_token1] = ACTIONS(9106), + [aux_sym_const_declaration_token1] = ACTIONS(9106), + [anon_sym_LPAREN] = ACTIONS(9108), + [aux_sym_as_type_clause_token2] = ACTIONS(9106), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9106), + [aux_sym_visibility_token1] = ACTIONS(9106), + [aux_sym_visibility_token2] = ACTIONS(9106), + [aux_sym_elseif_fragment_token1] = ACTIONS(9106), + [aux_sym_else_fragment_token1] = ACTIONS(9106), + [aux_sym_select_statement_token1] = ACTIONS(9106), + [aux_sym_select_statement_token2] = ACTIONS(9106), + [aux_sym__for_header_token1] = ACTIONS(9106), + [aux_sym_do_statement_token1] = ACTIONS(9106), + [aux_sym_do_condition_token1] = ACTIONS(9106), + [aux_sym_with_statement_token1] = ACTIONS(9106), + [aux_sym_exit_statement_token1] = ACTIONS(9106), + [sym_end_statement] = ACTIONS(9108), + [aux_sym_on_goto_statement_token1] = ACTIONS(9106), + [aux_sym_on_goto_statement_token2] = ACTIONS(9106), + [aux_sym_on_error_statement_token2] = ACTIONS(9106), + [sym__ambiguous_redim_statement] = ACTIONS(9108), + [aux_sym_erase_statement_token1] = ACTIONS(9106), + [aux_sym_open_statement_token1] = ACTIONS(9106), + [aux_sym_file_mode_token2] = ACTIONS(9106), + [aux_sym_file_access_token2] = ACTIONS(9106), + [aux_sym_file_lock_token2] = ACTIONS(9106), + [aux_sym_print_statement_token1] = ACTIONS(9106), + [anon_sym_PLUS] = ACTIONS(9108), + [anon_sym_DASH] = ACTIONS(9106), + [anon_sym_QMARK] = ACTIONS(9108), + [aux_sym_close_statement_token1] = ACTIONS(9106), + [aux_sym_put_statement_token1] = ACTIONS(9106), + [aux_sym_unlock_statement_token1] = ACTIONS(9106), + [aux_sym_seek_statement_token1] = ACTIONS(9106), + [sym_reset_statement] = ACTIONS(9106), + [aux_sym_raise_event_statement_token1] = ACTIONS(9106), + [sym_stop_statement] = ACTIONS(9106), + [sym_beep_statement] = ACTIONS(9106), + [aux_sym_unload_statement_token1] = ACTIONS(9106), + [aux_sym_def_type_statement_token1] = ACTIONS(9106), + [aux_sym_def_type_statement_token2] = ACTIONS(9106), + [aux_sym_def_type_statement_token3] = ACTIONS(9106), + [aux_sym_def_type_statement_token4] = ACTIONS(9106), + [aux_sym_def_type_statement_token5] = ACTIONS(9106), + [aux_sym_def_type_statement_token6] = ACTIONS(9106), + [aux_sym_def_type_statement_token7] = ACTIONS(9106), + [aux_sym_def_type_statement_token8] = ACTIONS(9106), + [aux_sym_def_type_statement_token9] = ACTIONS(9106), + [aux_sym_def_type_statement_token10] = ACTIONS(9106), + [aux_sym_def_type_statement_token11] = ACTIONS(9106), + [aux_sym_def_type_statement_token12] = ACTIONS(9106), + [aux_sym_def_type_statement_token13] = ACTIONS(9106), + [aux_sym_def_type_statement_token14] = ACTIONS(9106), + [aux_sym_call_statement_token1] = ACTIONS(9106), + [sym__ambiguous_call_statement] = ACTIONS(9106), + [aux_sym_addressof_expression_token1] = ACTIONS(9106), + [aux_sym_type_of_expression_token1] = ACTIONS(9106), + [aux_sym_unary_expression_token1] = ACTIONS(9106), + [sym_string_literal] = ACTIONS(9108), + [sym_number_literal] = ACTIONS(9108), + [aux_sym_boolean_literal_token1] = ACTIONS(9106), + [aux_sym_boolean_literal_token2] = ACTIONS(9106), + [sym_nothing_literal] = ACTIONS(9106), + [sym_null_literal] = ACTIONS(9106), + [sym_empty_literal] = ACTIONS(9106), + [sym_date_literal] = ACTIONS(9108), + [anon_sym_POUND] = ACTIONS(9106), + }, + [STATE(6694)] = { + [sym_identifier] = ACTIONS(9356), + [sym_newline] = ACTIONS(9358), + [anon_sym_COLON] = ACTIONS(9358), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9356), + [aux_sym_frm_property_statement_token1] = ACTIONS(9356), + [anon_sym_DOT] = ACTIONS(9356), + [anon_sym_BANG] = ACTIONS(9358), + [aux_sym__attribute_identifier_token1] = ACTIONS(9356), + [aux_sym_option_statement_token3] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9356), + [aux_sym_preprocessor_const_token1] = ACTIONS(9356), + [sym_static_modifier] = ACTIONS(9356), + [sym__dim_keyword] = ACTIONS(9356), + [sym__redim_keyword] = ACTIONS(9356), + [aux_sym_get_accessor_token1] = ACTIONS(9356), + [aux_sym_set_accessor_token1] = ACTIONS(9356), + [aux_sym_const_declaration_token1] = ACTIONS(9356), + [anon_sym_LPAREN] = ACTIONS(9358), + [aux_sym_as_type_clause_token2] = ACTIONS(9356), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9356), + [aux_sym_visibility_token1] = ACTIONS(9356), + [aux_sym_visibility_token2] = ACTIONS(9356), + [aux_sym_elseif_fragment_token1] = ACTIONS(9356), + [aux_sym_else_fragment_token1] = ACTIONS(9356), + [aux_sym_select_statement_token1] = ACTIONS(9356), + [aux_sym__for_header_token1] = ACTIONS(9356), + [aux_sym_do_statement_token1] = ACTIONS(9356), + [aux_sym_do_statement_token2] = ACTIONS(9356), + [aux_sym_do_condition_token1] = ACTIONS(9356), + [aux_sym_with_statement_token1] = ACTIONS(9356), + [aux_sym_exit_statement_token1] = ACTIONS(9356), + [sym_end_statement] = ACTIONS(9358), + [aux_sym_on_goto_statement_token1] = ACTIONS(9356), + [aux_sym_on_goto_statement_token2] = ACTIONS(9356), + [aux_sym_on_error_statement_token2] = ACTIONS(9356), + [sym__ambiguous_redim_statement] = ACTIONS(9358), + [aux_sym_erase_statement_token1] = ACTIONS(9356), + [aux_sym_open_statement_token1] = ACTIONS(9356), + [aux_sym_file_mode_token2] = ACTIONS(9356), + [aux_sym_file_access_token2] = ACTIONS(9356), + [aux_sym_file_lock_token2] = ACTIONS(9356), + [aux_sym_print_statement_token1] = ACTIONS(9356), + [anon_sym_PLUS] = ACTIONS(9358), + [anon_sym_DASH] = ACTIONS(9356), + [anon_sym_QMARK] = ACTIONS(9358), + [aux_sym_close_statement_token1] = ACTIONS(9356), + [aux_sym_put_statement_token1] = ACTIONS(9356), + [aux_sym_unlock_statement_token1] = ACTIONS(9356), + [aux_sym_seek_statement_token1] = ACTIONS(9356), + [sym_reset_statement] = ACTIONS(9356), + [aux_sym_raise_event_statement_token1] = ACTIONS(9356), + [sym_stop_statement] = ACTIONS(9356), + [sym_beep_statement] = ACTIONS(9356), + [aux_sym_unload_statement_token1] = ACTIONS(9356), + [aux_sym_def_type_statement_token1] = ACTIONS(9356), + [aux_sym_def_type_statement_token2] = ACTIONS(9356), + [aux_sym_def_type_statement_token3] = ACTIONS(9356), + [aux_sym_def_type_statement_token4] = ACTIONS(9356), + [aux_sym_def_type_statement_token5] = ACTIONS(9356), + [aux_sym_def_type_statement_token6] = ACTIONS(9356), + [aux_sym_def_type_statement_token7] = ACTIONS(9356), + [aux_sym_def_type_statement_token8] = ACTIONS(9356), + [aux_sym_def_type_statement_token9] = ACTIONS(9356), + [aux_sym_def_type_statement_token10] = ACTIONS(9356), + [aux_sym_def_type_statement_token11] = ACTIONS(9356), + [aux_sym_def_type_statement_token12] = ACTIONS(9356), + [aux_sym_def_type_statement_token13] = ACTIONS(9356), + [aux_sym_def_type_statement_token14] = ACTIONS(9356), + [aux_sym_call_statement_token1] = ACTIONS(9356), + [sym__ambiguous_call_statement] = ACTIONS(9356), + [aux_sym_addressof_expression_token1] = ACTIONS(9356), + [aux_sym_type_of_expression_token1] = ACTIONS(9356), + [aux_sym_unary_expression_token1] = ACTIONS(9356), + [sym_string_literal] = ACTIONS(9358), + [sym_number_literal] = ACTIONS(9358), + [aux_sym_boolean_literal_token1] = ACTIONS(9356), + [aux_sym_boolean_literal_token2] = ACTIONS(9356), + [sym_nothing_literal] = ACTIONS(9356), + [sym_null_literal] = ACTIONS(9356), + [sym_empty_literal] = ACTIONS(9356), + [sym_date_literal] = ACTIONS(9358), + [anon_sym_POUND] = ACTIONS(9356), + }, + [STATE(6695)] = { + [sym_identifier] = ACTIONS(9419), + [sym_newline] = ACTIONS(9421), + [anon_sym_COLON] = ACTIONS(9421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9419), + [aux_sym_frm_property_statement_token1] = ACTIONS(9419), + [anon_sym_DOT] = ACTIONS(9419), + [anon_sym_BANG] = ACTIONS(9421), + [aux_sym__attribute_identifier_token1] = ACTIONS(9419), + [aux_sym_option_statement_token3] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9419), + [aux_sym_preprocessor_const_token1] = ACTIONS(9419), + [sym_static_modifier] = ACTIONS(9419), + [sym__dim_keyword] = ACTIONS(9419), + [sym__redim_keyword] = ACTIONS(9419), + [aux_sym_get_accessor_token1] = ACTIONS(9419), + [aux_sym_set_accessor_token1] = ACTIONS(9419), + [aux_sym_const_declaration_token1] = ACTIONS(9419), + [anon_sym_LPAREN] = ACTIONS(9421), + [aux_sym_as_type_clause_token2] = ACTIONS(9419), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9419), + [aux_sym_visibility_token1] = ACTIONS(9419), + [aux_sym_visibility_token2] = ACTIONS(9419), + [aux_sym_elseif_fragment_token1] = ACTIONS(9419), + [aux_sym_else_fragment_token1] = ACTIONS(9419), + [aux_sym_select_statement_token1] = ACTIONS(9419), + [aux_sym__for_header_token1] = ACTIONS(9419), + [aux_sym_do_statement_token1] = ACTIONS(9419), + [aux_sym_do_statement_token2] = ACTIONS(9419), + [aux_sym_do_condition_token1] = ACTIONS(9419), + [aux_sym_with_statement_token1] = ACTIONS(9419), + [aux_sym_exit_statement_token1] = ACTIONS(9419), + [sym_end_statement] = ACTIONS(9421), + [aux_sym_on_goto_statement_token1] = ACTIONS(9419), + [aux_sym_on_goto_statement_token2] = ACTIONS(9419), + [aux_sym_on_error_statement_token2] = ACTIONS(9419), + [sym__ambiguous_redim_statement] = ACTIONS(9421), + [aux_sym_erase_statement_token1] = ACTIONS(9419), + [aux_sym_open_statement_token1] = ACTIONS(9419), + [aux_sym_file_mode_token2] = ACTIONS(9419), + [aux_sym_file_access_token2] = ACTIONS(9419), + [aux_sym_file_lock_token2] = ACTIONS(9419), + [aux_sym_print_statement_token1] = ACTIONS(9419), + [anon_sym_PLUS] = ACTIONS(9421), + [anon_sym_DASH] = ACTIONS(9419), + [anon_sym_QMARK] = ACTIONS(9421), + [aux_sym_close_statement_token1] = ACTIONS(9419), + [aux_sym_put_statement_token1] = ACTIONS(9419), + [aux_sym_unlock_statement_token1] = ACTIONS(9419), + [aux_sym_seek_statement_token1] = ACTIONS(9419), + [sym_reset_statement] = ACTIONS(9419), + [aux_sym_raise_event_statement_token1] = ACTIONS(9419), + [sym_stop_statement] = ACTIONS(9419), + [sym_beep_statement] = ACTIONS(9419), + [aux_sym_unload_statement_token1] = ACTIONS(9419), + [aux_sym_def_type_statement_token1] = ACTIONS(9419), + [aux_sym_def_type_statement_token2] = ACTIONS(9419), + [aux_sym_def_type_statement_token3] = ACTIONS(9419), + [aux_sym_def_type_statement_token4] = ACTIONS(9419), + [aux_sym_def_type_statement_token5] = ACTIONS(9419), + [aux_sym_def_type_statement_token6] = ACTIONS(9419), + [aux_sym_def_type_statement_token7] = ACTIONS(9419), + [aux_sym_def_type_statement_token8] = ACTIONS(9419), + [aux_sym_def_type_statement_token9] = ACTIONS(9419), + [aux_sym_def_type_statement_token10] = ACTIONS(9419), + [aux_sym_def_type_statement_token11] = ACTIONS(9419), + [aux_sym_def_type_statement_token12] = ACTIONS(9419), + [aux_sym_def_type_statement_token13] = ACTIONS(9419), + [aux_sym_def_type_statement_token14] = ACTIONS(9419), + [aux_sym_call_statement_token1] = ACTIONS(9419), + [sym__ambiguous_call_statement] = ACTIONS(9419), + [aux_sym_addressof_expression_token1] = ACTIONS(9419), + [aux_sym_type_of_expression_token1] = ACTIONS(9419), + [aux_sym_unary_expression_token1] = ACTIONS(9419), + [sym_string_literal] = ACTIONS(9421), + [sym_number_literal] = ACTIONS(9421), + [aux_sym_boolean_literal_token1] = ACTIONS(9419), + [aux_sym_boolean_literal_token2] = ACTIONS(9419), + [sym_nothing_literal] = ACTIONS(9419), + [sym_null_literal] = ACTIONS(9419), + [sym_empty_literal] = ACTIONS(9419), + [sym_date_literal] = ACTIONS(9421), + [anon_sym_POUND] = ACTIONS(9419), + }, + [STATE(6696)] = { + [sym_identifier] = ACTIONS(9423), + [sym_newline] = ACTIONS(9425), + [anon_sym_COLON] = ACTIONS(9425), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9423), + [aux_sym_frm_property_statement_token1] = ACTIONS(9423), + [anon_sym_DOT] = ACTIONS(9423), + [anon_sym_BANG] = ACTIONS(9425), + [aux_sym__attribute_identifier_token1] = ACTIONS(9423), + [aux_sym_option_statement_token3] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9423), + [aux_sym_preprocessor_const_token1] = ACTIONS(9423), + [sym_static_modifier] = ACTIONS(9423), + [sym__dim_keyword] = ACTIONS(9423), + [sym__redim_keyword] = ACTIONS(9423), + [aux_sym_get_accessor_token1] = ACTIONS(9423), + [aux_sym_set_accessor_token1] = ACTIONS(9423), + [aux_sym_const_declaration_token1] = ACTIONS(9423), + [anon_sym_LPAREN] = ACTIONS(9425), + [aux_sym_as_type_clause_token2] = ACTIONS(9423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9423), + [aux_sym_visibility_token1] = ACTIONS(9423), + [aux_sym_visibility_token2] = ACTIONS(9423), + [aux_sym_elseif_fragment_token1] = ACTIONS(9423), + [aux_sym_else_fragment_token1] = ACTIONS(9423), + [aux_sym_select_statement_token1] = ACTIONS(9423), + [aux_sym__for_header_token1] = ACTIONS(9423), + [aux_sym_do_statement_token1] = ACTIONS(9423), + [aux_sym_do_statement_token2] = ACTIONS(9423), + [aux_sym_do_condition_token1] = ACTIONS(9423), + [aux_sym_with_statement_token1] = ACTIONS(9423), + [aux_sym_exit_statement_token1] = ACTIONS(9423), + [sym_end_statement] = ACTIONS(9425), + [aux_sym_on_goto_statement_token1] = ACTIONS(9423), + [aux_sym_on_goto_statement_token2] = ACTIONS(9423), + [aux_sym_on_error_statement_token2] = ACTIONS(9423), + [sym__ambiguous_redim_statement] = ACTIONS(9425), + [aux_sym_erase_statement_token1] = ACTIONS(9423), + [aux_sym_open_statement_token1] = ACTIONS(9423), + [aux_sym_file_mode_token2] = ACTIONS(9423), + [aux_sym_file_access_token2] = ACTIONS(9423), + [aux_sym_file_lock_token2] = ACTIONS(9423), + [aux_sym_print_statement_token1] = ACTIONS(9423), + [anon_sym_PLUS] = ACTIONS(9425), + [anon_sym_DASH] = ACTIONS(9423), + [anon_sym_QMARK] = ACTIONS(9425), + [aux_sym_close_statement_token1] = ACTIONS(9423), + [aux_sym_put_statement_token1] = ACTIONS(9423), + [aux_sym_unlock_statement_token1] = ACTIONS(9423), + [aux_sym_seek_statement_token1] = ACTIONS(9423), + [sym_reset_statement] = ACTIONS(9423), + [aux_sym_raise_event_statement_token1] = ACTIONS(9423), + [sym_stop_statement] = ACTIONS(9423), + [sym_beep_statement] = ACTIONS(9423), + [aux_sym_unload_statement_token1] = ACTIONS(9423), + [aux_sym_def_type_statement_token1] = ACTIONS(9423), + [aux_sym_def_type_statement_token2] = ACTIONS(9423), + [aux_sym_def_type_statement_token3] = ACTIONS(9423), + [aux_sym_def_type_statement_token4] = ACTIONS(9423), + [aux_sym_def_type_statement_token5] = ACTIONS(9423), + [aux_sym_def_type_statement_token6] = ACTIONS(9423), + [aux_sym_def_type_statement_token7] = ACTIONS(9423), + [aux_sym_def_type_statement_token8] = ACTIONS(9423), + [aux_sym_def_type_statement_token9] = ACTIONS(9423), + [aux_sym_def_type_statement_token10] = ACTIONS(9423), + [aux_sym_def_type_statement_token11] = ACTIONS(9423), + [aux_sym_def_type_statement_token12] = ACTIONS(9423), + [aux_sym_def_type_statement_token13] = ACTIONS(9423), + [aux_sym_def_type_statement_token14] = ACTIONS(9423), + [aux_sym_call_statement_token1] = ACTIONS(9423), + [sym__ambiguous_call_statement] = ACTIONS(9423), + [aux_sym_addressof_expression_token1] = ACTIONS(9423), + [aux_sym_type_of_expression_token1] = ACTIONS(9423), + [aux_sym_unary_expression_token1] = ACTIONS(9423), + [sym_string_literal] = ACTIONS(9425), + [sym_number_literal] = ACTIONS(9425), + [aux_sym_boolean_literal_token1] = ACTIONS(9423), + [aux_sym_boolean_literal_token2] = ACTIONS(9423), + [sym_nothing_literal] = ACTIONS(9423), + [sym_null_literal] = ACTIONS(9423), + [sym_empty_literal] = ACTIONS(9423), + [sym_date_literal] = ACTIONS(9425), + [anon_sym_POUND] = ACTIONS(9423), + }, + [STATE(6697)] = { + [sym_identifier] = ACTIONS(9150), + [sym_newline] = ACTIONS(9152), + [anon_sym_COLON] = ACTIONS(9152), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9154), + [aux_sym_frm_property_statement_token1] = ACTIONS(9150), + [anon_sym_DOT] = ACTIONS(9150), + [anon_sym_BANG] = ACTIONS(9152), + [aux_sym__attribute_identifier_token1] = ACTIONS(9150), + [aux_sym_option_statement_token3] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9154), + [aux_sym_preprocessor_const_token1] = ACTIONS(9150), + [sym_static_modifier] = ACTIONS(9150), + [sym__dim_keyword] = ACTIONS(9150), + [sym__redim_keyword] = ACTIONS(9150), + [aux_sym_get_accessor_token1] = ACTIONS(9150), + [aux_sym_set_accessor_token1] = ACTIONS(9150), + [aux_sym_const_declaration_token1] = ACTIONS(9150), + [anon_sym_LPAREN] = ACTIONS(9152), + [aux_sym_as_type_clause_token2] = ACTIONS(9150), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9150), + [aux_sym_visibility_token1] = ACTIONS(9150), + [aux_sym_visibility_token2] = ACTIONS(9150), + [aux_sym_elseif_fragment_token1] = ACTIONS(9154), + [aux_sym_else_fragment_token1] = ACTIONS(9154), + [aux_sym_select_statement_token1] = ACTIONS(9154), + [aux_sym_select_statement_token2] = ACTIONS(9150), + [aux_sym__for_header_token1] = ACTIONS(9154), + [aux_sym_do_statement_token1] = ACTIONS(9154), + [aux_sym_do_condition_token1] = ACTIONS(9154), + [aux_sym_with_statement_token1] = ACTIONS(9154), + [aux_sym_exit_statement_token1] = ACTIONS(9150), + [sym_end_statement] = ACTIONS(9152), + [aux_sym_on_goto_statement_token1] = ACTIONS(9150), + [aux_sym_on_goto_statement_token2] = ACTIONS(9150), + [aux_sym_on_error_statement_token2] = ACTIONS(9150), + [sym__ambiguous_redim_statement] = ACTIONS(9152), + [aux_sym_erase_statement_token1] = ACTIONS(9150), + [aux_sym_open_statement_token1] = ACTIONS(9150), + [aux_sym_file_mode_token2] = ACTIONS(9150), + [aux_sym_file_access_token2] = ACTIONS(9150), + [aux_sym_file_lock_token2] = ACTIONS(9150), + [aux_sym_print_statement_token1] = ACTIONS(9150), + [anon_sym_PLUS] = ACTIONS(9152), + [anon_sym_DASH] = ACTIONS(9150), + [anon_sym_QMARK] = ACTIONS(9152), + [aux_sym_close_statement_token1] = ACTIONS(9150), + [aux_sym_put_statement_token1] = ACTIONS(9150), + [aux_sym_unlock_statement_token1] = ACTIONS(9150), + [aux_sym_seek_statement_token1] = ACTIONS(9150), + [sym_reset_statement] = ACTIONS(9150), + [aux_sym_raise_event_statement_token1] = ACTIONS(9150), + [sym_stop_statement] = ACTIONS(9150), + [sym_beep_statement] = ACTIONS(9150), + [aux_sym_unload_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token2] = ACTIONS(9150), + [aux_sym_def_type_statement_token3] = ACTIONS(9150), + [aux_sym_def_type_statement_token4] = ACTIONS(9150), + [aux_sym_def_type_statement_token5] = ACTIONS(9150), + [aux_sym_def_type_statement_token6] = ACTIONS(9150), + [aux_sym_def_type_statement_token7] = ACTIONS(9150), + [aux_sym_def_type_statement_token8] = ACTIONS(9150), + [aux_sym_def_type_statement_token9] = ACTIONS(9150), + [aux_sym_def_type_statement_token10] = ACTIONS(9150), + [aux_sym_def_type_statement_token11] = ACTIONS(9150), + [aux_sym_def_type_statement_token12] = ACTIONS(9150), + [aux_sym_def_type_statement_token13] = ACTIONS(9150), + [aux_sym_def_type_statement_token14] = ACTIONS(9150), + [aux_sym_call_statement_token1] = ACTIONS(9150), + [sym__ambiguous_call_statement] = ACTIONS(9150), + [aux_sym_addressof_expression_token1] = ACTIONS(9150), + [aux_sym_type_of_expression_token1] = ACTIONS(9150), + [aux_sym_unary_expression_token1] = ACTIONS(9150), + [sym_string_literal] = ACTIONS(9152), + [sym_number_literal] = ACTIONS(9152), + [aux_sym_boolean_literal_token1] = ACTIONS(9150), + [aux_sym_boolean_literal_token2] = ACTIONS(9150), + [sym_nothing_literal] = ACTIONS(9150), + [sym_null_literal] = ACTIONS(9150), + [sym_empty_literal] = ACTIONS(9150), + [sym_date_literal] = ACTIONS(9152), + [anon_sym_POUND] = ACTIONS(9150), + }, + [STATE(6698)] = { + [sym_identifier] = ACTIONS(9024), + [sym_newline] = ACTIONS(9026), + [anon_sym_COLON] = ACTIONS(9026), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9024), + [aux_sym_frm_property_statement_token1] = ACTIONS(9024), + [anon_sym_DOT] = ACTIONS(9024), + [anon_sym_BANG] = ACTIONS(9026), + [aux_sym__attribute_identifier_token1] = ACTIONS(9024), + [aux_sym_option_statement_token3] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9024), + [aux_sym_preprocessor_const_token1] = ACTIONS(9024), + [sym_static_modifier] = ACTIONS(9024), + [sym__dim_keyword] = ACTIONS(9024), + [sym__redim_keyword] = ACTIONS(9024), + [aux_sym_get_accessor_token1] = ACTIONS(9024), + [aux_sym_set_accessor_token1] = ACTIONS(9024), + [aux_sym_const_declaration_token1] = ACTIONS(9024), + [anon_sym_LPAREN] = ACTIONS(9026), + [aux_sym_as_type_clause_token2] = ACTIONS(9024), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9024), + [aux_sym_visibility_token1] = ACTIONS(9024), + [aux_sym_visibility_token2] = ACTIONS(9024), + [aux_sym_elseif_fragment_token1] = ACTIONS(9024), + [aux_sym_else_fragment_token1] = ACTIONS(9024), + [aux_sym_select_statement_token1] = ACTIONS(9024), + [aux_sym__for_header_token1] = ACTIONS(9024), + [aux_sym_do_statement_token1] = ACTIONS(9024), + [aux_sym_do_condition_token1] = ACTIONS(9024), + [aux_sym_with_statement_token1] = ACTIONS(9024), + [aux_sym_exit_statement_token1] = ACTIONS(9024), + [sym_end_statement] = ACTIONS(9026), + [aux_sym_on_goto_statement_token1] = ACTIONS(9024), + [aux_sym_on_goto_statement_token2] = ACTIONS(9024), + [aux_sym_on_error_statement_token2] = ACTIONS(9024), + [sym__ambiguous_redim_statement] = ACTIONS(9026), + [aux_sym_erase_statement_token1] = ACTIONS(9024), + [aux_sym_open_statement_token1] = ACTIONS(9024), + [aux_sym_file_mode_token2] = ACTIONS(9024), + [aux_sym_file_access_token2] = ACTIONS(9024), + [aux_sym_file_lock_token2] = ACTIONS(9024), + [aux_sym_print_statement_token1] = ACTIONS(9024), + [anon_sym_PLUS] = ACTIONS(9026), + [anon_sym_DASH] = ACTIONS(9024), + [anon_sym_QMARK] = ACTIONS(9026), + [aux_sym_close_statement_token1] = ACTIONS(9024), + [aux_sym_put_statement_token1] = ACTIONS(9024), + [aux_sym_unlock_statement_token1] = ACTIONS(9024), + [aux_sym_seek_statement_token1] = ACTIONS(9024), + [sym_reset_statement] = ACTIONS(9024), + [aux_sym_raise_event_statement_token1] = ACTIONS(9024), + [sym_stop_statement] = ACTIONS(9024), + [sym_beep_statement] = ACTIONS(9024), + [aux_sym_unload_statement_token1] = ACTIONS(9024), + [aux_sym_def_type_statement_token1] = ACTIONS(9024), + [aux_sym_def_type_statement_token2] = ACTIONS(9024), + [aux_sym_def_type_statement_token3] = ACTIONS(9024), + [aux_sym_def_type_statement_token4] = ACTIONS(9024), + [aux_sym_def_type_statement_token5] = ACTIONS(9024), + [aux_sym_def_type_statement_token6] = ACTIONS(9024), + [aux_sym_def_type_statement_token7] = ACTIONS(9024), + [aux_sym_def_type_statement_token8] = ACTIONS(9024), + [aux_sym_def_type_statement_token9] = ACTIONS(9024), + [aux_sym_def_type_statement_token10] = ACTIONS(9024), + [aux_sym_def_type_statement_token11] = ACTIONS(9024), + [aux_sym_def_type_statement_token12] = ACTIONS(9024), + [aux_sym_def_type_statement_token13] = ACTIONS(9024), + [aux_sym_def_type_statement_token14] = ACTIONS(9024), + [aux_sym_call_statement_token1] = ACTIONS(9024), + [sym__ambiguous_call_statement] = ACTIONS(9024), + [aux_sym_addressof_expression_token1] = ACTIONS(9024), + [aux_sym_type_of_expression_token1] = ACTIONS(9024), + [aux_sym_unary_expression_token1] = ACTIONS(9024), + [sym_string_literal] = ACTIONS(9026), + [sym_number_literal] = ACTIONS(9026), + [aux_sym_boolean_literal_token1] = ACTIONS(9024), + [aux_sym_boolean_literal_token2] = ACTIONS(9024), + [sym_nothing_literal] = ACTIONS(9024), + [sym_null_literal] = ACTIONS(9024), + [sym_empty_literal] = ACTIONS(9024), + [sym_date_literal] = ACTIONS(9026), + [anon_sym_POUND] = ACTIONS(9024), + }, + [STATE(6699)] = { + [sym_identifier] = ACTIONS(9536), + [sym_newline] = ACTIONS(9538), + [anon_sym_COLON] = ACTIONS(9538), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9536), + [aux_sym_frm_property_statement_token1] = ACTIONS(9536), + [anon_sym_DOT] = ACTIONS(9536), + [anon_sym_BANG] = ACTIONS(9538), + [aux_sym__attribute_identifier_token1] = ACTIONS(9536), + [aux_sym_option_statement_token3] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9536), + [aux_sym_preprocessor_const_token1] = ACTIONS(9536), + [sym_static_modifier] = ACTIONS(9536), + [sym__dim_keyword] = ACTIONS(9536), + [sym__redim_keyword] = ACTIONS(9536), + [aux_sym_get_accessor_token1] = ACTIONS(9536), + [aux_sym_set_accessor_token1] = ACTIONS(9536), + [aux_sym_const_declaration_token1] = ACTIONS(9536), + [anon_sym_LPAREN] = ACTIONS(9538), + [aux_sym_as_type_clause_token2] = ACTIONS(9536), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9536), + [aux_sym_visibility_token1] = ACTIONS(9536), + [aux_sym_visibility_token2] = ACTIONS(9536), + [aux_sym_elseif_fragment_token1] = ACTIONS(9536), + [aux_sym_else_fragment_token1] = ACTIONS(9536), + [aux_sym_select_statement_token1] = ACTIONS(9536), + [aux_sym_select_statement_token2] = ACTIONS(9536), + [aux_sym__for_header_token1] = ACTIONS(9536), + [aux_sym_do_statement_token1] = ACTIONS(9536), + [aux_sym_do_condition_token1] = ACTIONS(9536), + [aux_sym_with_statement_token1] = ACTIONS(9536), + [aux_sym_exit_statement_token1] = ACTIONS(9536), + [sym_end_statement] = ACTIONS(9538), + [aux_sym_on_goto_statement_token1] = ACTIONS(9536), + [aux_sym_on_goto_statement_token2] = ACTIONS(9536), + [aux_sym_on_error_statement_token2] = ACTIONS(9536), + [sym__ambiguous_redim_statement] = ACTIONS(9538), + [aux_sym_erase_statement_token1] = ACTIONS(9536), + [aux_sym_open_statement_token1] = ACTIONS(9536), + [aux_sym_file_mode_token2] = ACTIONS(9536), + [aux_sym_file_access_token2] = ACTIONS(9536), + [aux_sym_file_lock_token2] = ACTIONS(9536), + [aux_sym_print_statement_token1] = ACTIONS(9536), + [anon_sym_PLUS] = ACTIONS(9538), + [anon_sym_DASH] = ACTIONS(9536), + [anon_sym_QMARK] = ACTIONS(9538), + [aux_sym_close_statement_token1] = ACTIONS(9536), + [aux_sym_put_statement_token1] = ACTIONS(9536), + [aux_sym_unlock_statement_token1] = ACTIONS(9536), + [aux_sym_seek_statement_token1] = ACTIONS(9536), + [sym_reset_statement] = ACTIONS(9536), + [aux_sym_raise_event_statement_token1] = ACTIONS(9536), + [sym_stop_statement] = ACTIONS(9536), + [sym_beep_statement] = ACTIONS(9536), + [aux_sym_unload_statement_token1] = ACTIONS(9536), + [aux_sym_def_type_statement_token1] = ACTIONS(9536), + [aux_sym_def_type_statement_token2] = ACTIONS(9536), + [aux_sym_def_type_statement_token3] = ACTIONS(9536), + [aux_sym_def_type_statement_token4] = ACTIONS(9536), + [aux_sym_def_type_statement_token5] = ACTIONS(9536), + [aux_sym_def_type_statement_token6] = ACTIONS(9536), + [aux_sym_def_type_statement_token7] = ACTIONS(9536), + [aux_sym_def_type_statement_token8] = ACTIONS(9536), + [aux_sym_def_type_statement_token9] = ACTIONS(9536), + [aux_sym_def_type_statement_token10] = ACTIONS(9536), + [aux_sym_def_type_statement_token11] = ACTIONS(9536), + [aux_sym_def_type_statement_token12] = ACTIONS(9536), + [aux_sym_def_type_statement_token13] = ACTIONS(9536), + [aux_sym_def_type_statement_token14] = ACTIONS(9536), + [aux_sym_call_statement_token1] = ACTIONS(9536), + [sym__ambiguous_call_statement] = ACTIONS(9536), + [aux_sym_addressof_expression_token1] = ACTIONS(9536), + [aux_sym_type_of_expression_token1] = ACTIONS(9536), + [aux_sym_unary_expression_token1] = ACTIONS(9536), + [sym_string_literal] = ACTIONS(9538), + [sym_number_literal] = ACTIONS(9538), + [aux_sym_boolean_literal_token1] = ACTIONS(9536), + [aux_sym_boolean_literal_token2] = ACTIONS(9536), + [sym_nothing_literal] = ACTIONS(9536), + [sym_null_literal] = ACTIONS(9536), + [sym_empty_literal] = ACTIONS(9536), + [sym_date_literal] = ACTIONS(9538), + [anon_sym_POUND] = ACTIONS(9536), + }, + [STATE(6700)] = { + [sym_identifier] = ACTIONS(9542), + [sym_newline] = ACTIONS(9544), + [anon_sym_COLON] = ACTIONS(9544), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9542), + [aux_sym_frm_property_statement_token1] = ACTIONS(9542), + [anon_sym_DOT] = ACTIONS(9542), + [anon_sym_BANG] = ACTIONS(9544), + [aux_sym__attribute_identifier_token1] = ACTIONS(9542), + [aux_sym_option_statement_token3] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9542), + [aux_sym_preprocessor_const_token1] = ACTIONS(9542), + [sym_static_modifier] = ACTIONS(9542), + [sym__dim_keyword] = ACTIONS(9542), + [sym__redim_keyword] = ACTIONS(9542), + [aux_sym_get_accessor_token1] = ACTIONS(9542), + [aux_sym_set_accessor_token1] = ACTIONS(9542), + [aux_sym_const_declaration_token1] = ACTIONS(9542), + [anon_sym_LPAREN] = ACTIONS(9544), + [aux_sym_as_type_clause_token2] = ACTIONS(9542), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9542), + [aux_sym_visibility_token1] = ACTIONS(9542), + [aux_sym_visibility_token2] = ACTIONS(9542), + [aux_sym_elseif_fragment_token1] = ACTIONS(9542), + [aux_sym_else_fragment_token1] = ACTIONS(9542), + [aux_sym_select_statement_token1] = ACTIONS(9542), + [aux_sym_select_statement_token2] = ACTIONS(9542), + [aux_sym__for_header_token1] = ACTIONS(9542), + [aux_sym_do_statement_token1] = ACTIONS(9542), + [aux_sym_do_condition_token1] = ACTIONS(9542), + [aux_sym_with_statement_token1] = ACTIONS(9542), + [aux_sym_exit_statement_token1] = ACTIONS(9542), + [sym_end_statement] = ACTIONS(9544), + [aux_sym_on_goto_statement_token1] = ACTIONS(9542), + [aux_sym_on_goto_statement_token2] = ACTIONS(9542), + [aux_sym_on_error_statement_token2] = ACTIONS(9542), + [sym__ambiguous_redim_statement] = ACTIONS(9544), + [aux_sym_erase_statement_token1] = ACTIONS(9542), + [aux_sym_open_statement_token1] = ACTIONS(9542), + [aux_sym_file_mode_token2] = ACTIONS(9542), + [aux_sym_file_access_token2] = ACTIONS(9542), + [aux_sym_file_lock_token2] = ACTIONS(9542), + [aux_sym_print_statement_token1] = ACTIONS(9542), + [anon_sym_PLUS] = ACTIONS(9544), + [anon_sym_DASH] = ACTIONS(9542), + [anon_sym_QMARK] = ACTIONS(9544), + [aux_sym_close_statement_token1] = ACTIONS(9542), + [aux_sym_put_statement_token1] = ACTIONS(9542), + [aux_sym_unlock_statement_token1] = ACTIONS(9542), + [aux_sym_seek_statement_token1] = ACTIONS(9542), + [sym_reset_statement] = ACTIONS(9542), + [aux_sym_raise_event_statement_token1] = ACTIONS(9542), + [sym_stop_statement] = ACTIONS(9542), + [sym_beep_statement] = ACTIONS(9542), + [aux_sym_unload_statement_token1] = ACTIONS(9542), + [aux_sym_def_type_statement_token1] = ACTIONS(9542), + [aux_sym_def_type_statement_token2] = ACTIONS(9542), + [aux_sym_def_type_statement_token3] = ACTIONS(9542), + [aux_sym_def_type_statement_token4] = ACTIONS(9542), + [aux_sym_def_type_statement_token5] = ACTIONS(9542), + [aux_sym_def_type_statement_token6] = ACTIONS(9542), + [aux_sym_def_type_statement_token7] = ACTIONS(9542), + [aux_sym_def_type_statement_token8] = ACTIONS(9542), + [aux_sym_def_type_statement_token9] = ACTIONS(9542), + [aux_sym_def_type_statement_token10] = ACTIONS(9542), + [aux_sym_def_type_statement_token11] = ACTIONS(9542), + [aux_sym_def_type_statement_token12] = ACTIONS(9542), + [aux_sym_def_type_statement_token13] = ACTIONS(9542), + [aux_sym_def_type_statement_token14] = ACTIONS(9542), + [aux_sym_call_statement_token1] = ACTIONS(9542), + [sym__ambiguous_call_statement] = ACTIONS(9542), + [aux_sym_addressof_expression_token1] = ACTIONS(9542), + [aux_sym_type_of_expression_token1] = ACTIONS(9542), + [aux_sym_unary_expression_token1] = ACTIONS(9542), + [sym_string_literal] = ACTIONS(9544), + [sym_number_literal] = ACTIONS(9544), + [aux_sym_boolean_literal_token1] = ACTIONS(9542), + [aux_sym_boolean_literal_token2] = ACTIONS(9542), + [sym_nothing_literal] = ACTIONS(9542), + [sym_null_literal] = ACTIONS(9542), + [sym_empty_literal] = ACTIONS(9542), + [sym_date_literal] = ACTIONS(9544), + [anon_sym_POUND] = ACTIONS(9542), + }, + [STATE(6701)] = { + [sym_identifier] = ACTIONS(9360), + [sym_newline] = ACTIONS(9362), + [anon_sym_COLON] = ACTIONS(9362), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9360), + [aux_sym_frm_property_statement_token1] = ACTIONS(9360), + [anon_sym_DOT] = ACTIONS(9360), + [anon_sym_BANG] = ACTIONS(9362), + [aux_sym__attribute_identifier_token1] = ACTIONS(9360), + [aux_sym_option_statement_token3] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9360), + [aux_sym_preprocessor_const_token1] = ACTIONS(9360), + [sym_static_modifier] = ACTIONS(9360), + [sym__dim_keyword] = ACTIONS(9360), + [sym__redim_keyword] = ACTIONS(9360), + [aux_sym_get_accessor_token1] = ACTIONS(9360), + [aux_sym_set_accessor_token1] = ACTIONS(9360), + [aux_sym_const_declaration_token1] = ACTIONS(9360), + [anon_sym_LPAREN] = ACTIONS(9362), + [aux_sym_as_type_clause_token2] = ACTIONS(9360), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9360), + [aux_sym_visibility_token1] = ACTIONS(9360), + [aux_sym_visibility_token2] = ACTIONS(9360), + [aux_sym_elseif_fragment_token1] = ACTIONS(9360), + [aux_sym_else_fragment_token1] = ACTIONS(9360), + [aux_sym_select_statement_token1] = ACTIONS(9360), + [aux_sym__for_header_token1] = ACTIONS(9360), + [aux_sym_do_statement_token1] = ACTIONS(9360), + [aux_sym_do_statement_token2] = ACTIONS(9360), + [aux_sym_do_condition_token1] = ACTIONS(9360), + [aux_sym_with_statement_token1] = ACTIONS(9360), + [aux_sym_exit_statement_token1] = ACTIONS(9360), + [sym_end_statement] = ACTIONS(9362), + [aux_sym_on_goto_statement_token1] = ACTIONS(9360), + [aux_sym_on_goto_statement_token2] = ACTIONS(9360), + [aux_sym_on_error_statement_token2] = ACTIONS(9360), + [sym__ambiguous_redim_statement] = ACTIONS(9362), + [aux_sym_erase_statement_token1] = ACTIONS(9360), + [aux_sym_open_statement_token1] = ACTIONS(9360), + [aux_sym_file_mode_token2] = ACTIONS(9360), + [aux_sym_file_access_token2] = ACTIONS(9360), + [aux_sym_file_lock_token2] = ACTIONS(9360), + [aux_sym_print_statement_token1] = ACTIONS(9360), + [anon_sym_PLUS] = ACTIONS(9362), + [anon_sym_DASH] = ACTIONS(9360), + [anon_sym_QMARK] = ACTIONS(9362), + [aux_sym_close_statement_token1] = ACTIONS(9360), + [aux_sym_put_statement_token1] = ACTIONS(9360), + [aux_sym_unlock_statement_token1] = ACTIONS(9360), + [aux_sym_seek_statement_token1] = ACTIONS(9360), + [sym_reset_statement] = ACTIONS(9360), + [aux_sym_raise_event_statement_token1] = ACTIONS(9360), + [sym_stop_statement] = ACTIONS(9360), + [sym_beep_statement] = ACTIONS(9360), + [aux_sym_unload_statement_token1] = ACTIONS(9360), + [aux_sym_def_type_statement_token1] = ACTIONS(9360), + [aux_sym_def_type_statement_token2] = ACTIONS(9360), + [aux_sym_def_type_statement_token3] = ACTIONS(9360), + [aux_sym_def_type_statement_token4] = ACTIONS(9360), + [aux_sym_def_type_statement_token5] = ACTIONS(9360), + [aux_sym_def_type_statement_token6] = ACTIONS(9360), + [aux_sym_def_type_statement_token7] = ACTIONS(9360), + [aux_sym_def_type_statement_token8] = ACTIONS(9360), + [aux_sym_def_type_statement_token9] = ACTIONS(9360), + [aux_sym_def_type_statement_token10] = ACTIONS(9360), + [aux_sym_def_type_statement_token11] = ACTIONS(9360), + [aux_sym_def_type_statement_token12] = ACTIONS(9360), + [aux_sym_def_type_statement_token13] = ACTIONS(9360), + [aux_sym_def_type_statement_token14] = ACTIONS(9360), + [aux_sym_call_statement_token1] = ACTIONS(9360), + [sym__ambiguous_call_statement] = ACTIONS(9360), + [aux_sym_addressof_expression_token1] = ACTIONS(9360), + [aux_sym_type_of_expression_token1] = ACTIONS(9360), + [aux_sym_unary_expression_token1] = ACTIONS(9360), + [sym_string_literal] = ACTIONS(9362), + [sym_number_literal] = ACTIONS(9362), + [aux_sym_boolean_literal_token1] = ACTIONS(9360), + [aux_sym_boolean_literal_token2] = ACTIONS(9360), + [sym_nothing_literal] = ACTIONS(9360), + [sym_null_literal] = ACTIONS(9360), + [sym_empty_literal] = ACTIONS(9360), + [sym_date_literal] = ACTIONS(9362), + [anon_sym_POUND] = ACTIONS(9360), + }, + [STATE(6702)] = { + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [anon_sym_COLON] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym__attribute_identifier_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [sym__redim_keyword] = ACTIONS(4621), + [aux_sym_get_accessor_token1] = ACTIONS(4621), + [aux_sym_set_accessor_token1] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [aux_sym_as_type_clause_token2] = ACTIONS(4621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4621), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_elseif_fragment_token1] = ACTIONS(4621), + [aux_sym_else_fragment_token1] = ACTIONS(4621), + [aux_sym_select_statement_token1] = ACTIONS(4621), + [aux_sym__for_header_token1] = ACTIONS(4621), + [aux_sym_do_statement_token1] = ACTIONS(4621), + [aux_sym_do_condition_token1] = ACTIONS(4621), + [aux_sym_with_statement_token1] = ACTIONS(4621), + [aux_sym_exit_statement_token1] = ACTIONS(4621), + [sym_end_statement] = ACTIONS(4623), + [aux_sym_on_goto_statement_token1] = ACTIONS(4621), + [aux_sym_on_goto_statement_token2] = ACTIONS(4621), + [aux_sym_on_error_statement_token2] = ACTIONS(4621), + [sym__ambiguous_redim_statement] = ACTIONS(4623), + [aux_sym_erase_statement_token1] = ACTIONS(4621), + [aux_sym_open_statement_token1] = ACTIONS(4621), + [aux_sym_file_mode_token2] = ACTIONS(4621), + [aux_sym_file_access_token2] = ACTIONS(4621), + [aux_sym_file_lock_token2] = ACTIONS(4621), + [aux_sym_print_statement_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4623), + [aux_sym_close_statement_token1] = ACTIONS(4621), + [aux_sym_put_statement_token1] = ACTIONS(4621), + [aux_sym_unlock_statement_token1] = ACTIONS(4621), + [aux_sym_seek_statement_token1] = ACTIONS(4621), + [sym_reset_statement] = ACTIONS(4621), + [aux_sym_raise_event_statement_token1] = ACTIONS(4621), + [sym_stop_statement] = ACTIONS(4621), + [sym_beep_statement] = ACTIONS(4621), + [aux_sym_unload_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_call_statement_token1] = ACTIONS(4621), + [sym__ambiguous_call_statement] = ACTIONS(4621), + [aux_sym_addressof_expression_token1] = ACTIONS(4621), + [aux_sym_type_of_expression_token1] = ACTIONS(4621), + [aux_sym_unary_expression_token1] = ACTIONS(4621), + [sym_string_literal] = ACTIONS(4623), + [sym_number_literal] = ACTIONS(4623), + [aux_sym_boolean_literal_token1] = ACTIONS(4621), + [aux_sym_boolean_literal_token2] = ACTIONS(4621), + [sym_nothing_literal] = ACTIONS(4621), + [sym_null_literal] = ACTIONS(4621), + [sym_empty_literal] = ACTIONS(4621), + [sym_date_literal] = ACTIONS(4623), + [anon_sym_POUND] = ACTIONS(4621), + }, + [STATE(6703)] = { + [sym_identifier] = ACTIONS(9546), + [sym_newline] = ACTIONS(9548), + [anon_sym_COLON] = ACTIONS(9548), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9546), + [aux_sym_frm_property_statement_token1] = ACTIONS(9546), + [anon_sym_DOT] = ACTIONS(9546), + [anon_sym_BANG] = ACTIONS(9548), + [aux_sym__attribute_identifier_token1] = ACTIONS(9546), + [aux_sym_option_statement_token3] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9546), + [aux_sym_preprocessor_const_token1] = ACTIONS(9546), + [sym_static_modifier] = ACTIONS(9546), + [sym__dim_keyword] = ACTIONS(9546), + [sym__redim_keyword] = ACTIONS(9546), + [aux_sym_get_accessor_token1] = ACTIONS(9546), + [aux_sym_set_accessor_token1] = ACTIONS(9546), + [aux_sym_const_declaration_token1] = ACTIONS(9546), + [anon_sym_LPAREN] = ACTIONS(9548), + [aux_sym_as_type_clause_token2] = ACTIONS(9546), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9546), + [aux_sym_visibility_token1] = ACTIONS(9546), + [aux_sym_visibility_token2] = ACTIONS(9546), + [aux_sym_elseif_fragment_token1] = ACTIONS(9546), + [aux_sym_else_fragment_token1] = ACTIONS(9546), + [aux_sym_select_statement_token1] = ACTIONS(9546), + [aux_sym_select_statement_token2] = ACTIONS(9546), + [aux_sym__for_header_token1] = ACTIONS(9546), + [aux_sym_do_statement_token1] = ACTIONS(9546), + [aux_sym_do_condition_token1] = ACTIONS(9546), + [aux_sym_with_statement_token1] = ACTIONS(9546), + [aux_sym_exit_statement_token1] = ACTIONS(9546), + [sym_end_statement] = ACTIONS(9548), + [aux_sym_on_goto_statement_token1] = ACTIONS(9546), + [aux_sym_on_goto_statement_token2] = ACTIONS(9546), + [aux_sym_on_error_statement_token2] = ACTIONS(9546), + [sym__ambiguous_redim_statement] = ACTIONS(9548), + [aux_sym_erase_statement_token1] = ACTIONS(9546), + [aux_sym_open_statement_token1] = ACTIONS(9546), + [aux_sym_file_mode_token2] = ACTIONS(9546), + [aux_sym_file_access_token2] = ACTIONS(9546), + [aux_sym_file_lock_token2] = ACTIONS(9546), + [aux_sym_print_statement_token1] = ACTIONS(9546), + [anon_sym_PLUS] = ACTIONS(9548), + [anon_sym_DASH] = ACTIONS(9546), + [anon_sym_QMARK] = ACTIONS(9548), + [aux_sym_close_statement_token1] = ACTIONS(9546), + [aux_sym_put_statement_token1] = ACTIONS(9546), + [aux_sym_unlock_statement_token1] = ACTIONS(9546), + [aux_sym_seek_statement_token1] = ACTIONS(9546), + [sym_reset_statement] = ACTIONS(9546), + [aux_sym_raise_event_statement_token1] = ACTIONS(9546), + [sym_stop_statement] = ACTIONS(9546), + [sym_beep_statement] = ACTIONS(9546), + [aux_sym_unload_statement_token1] = ACTIONS(9546), + [aux_sym_def_type_statement_token1] = ACTIONS(9546), + [aux_sym_def_type_statement_token2] = ACTIONS(9546), + [aux_sym_def_type_statement_token3] = ACTIONS(9546), + [aux_sym_def_type_statement_token4] = ACTIONS(9546), + [aux_sym_def_type_statement_token5] = ACTIONS(9546), + [aux_sym_def_type_statement_token6] = ACTIONS(9546), + [aux_sym_def_type_statement_token7] = ACTIONS(9546), + [aux_sym_def_type_statement_token8] = ACTIONS(9546), + [aux_sym_def_type_statement_token9] = ACTIONS(9546), + [aux_sym_def_type_statement_token10] = ACTIONS(9546), + [aux_sym_def_type_statement_token11] = ACTIONS(9546), + [aux_sym_def_type_statement_token12] = ACTIONS(9546), + [aux_sym_def_type_statement_token13] = ACTIONS(9546), + [aux_sym_def_type_statement_token14] = ACTIONS(9546), + [aux_sym_call_statement_token1] = ACTIONS(9546), + [sym__ambiguous_call_statement] = ACTIONS(9546), + [aux_sym_addressof_expression_token1] = ACTIONS(9546), + [aux_sym_type_of_expression_token1] = ACTIONS(9546), + [aux_sym_unary_expression_token1] = ACTIONS(9546), + [sym_string_literal] = ACTIONS(9548), + [sym_number_literal] = ACTIONS(9548), + [aux_sym_boolean_literal_token1] = ACTIONS(9546), + [aux_sym_boolean_literal_token2] = ACTIONS(9546), + [sym_nothing_literal] = ACTIONS(9546), + [sym_null_literal] = ACTIONS(9546), + [sym_empty_literal] = ACTIONS(9546), + [sym_date_literal] = ACTIONS(9548), + [anon_sym_POUND] = ACTIONS(9546), + }, + [STATE(6704)] = { + [sym_identifier] = ACTIONS(8733), + [sym_newline] = ACTIONS(8735), + [anon_sym_COLON] = ACTIONS(8735), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8733), + [aux_sym_frm_property_statement_token1] = ACTIONS(8733), + [anon_sym_DOT] = ACTIONS(8733), + [anon_sym_BANG] = ACTIONS(8735), + [aux_sym__attribute_identifier_token1] = ACTIONS(8733), + [aux_sym_option_statement_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8733), + [aux_sym_preprocessor_const_token1] = ACTIONS(8733), + [sym_static_modifier] = ACTIONS(8733), + [sym__dim_keyword] = ACTIONS(8733), + [sym__redim_keyword] = ACTIONS(8733), + [aux_sym_get_accessor_token1] = ACTIONS(8733), + [aux_sym_set_accessor_token1] = ACTIONS(8733), + [aux_sym_const_declaration_token1] = ACTIONS(8733), + [anon_sym_LPAREN] = ACTIONS(8735), + [aux_sym_as_type_clause_token2] = ACTIONS(8733), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8733), + [aux_sym_visibility_token1] = ACTIONS(8733), + [aux_sym_visibility_token2] = ACTIONS(8733), + [aux_sym_elseif_fragment_token1] = ACTIONS(8733), + [aux_sym_else_fragment_token1] = ACTIONS(11085), + [aux_sym_select_statement_token1] = ACTIONS(8733), + [aux_sym__for_header_token1] = ACTIONS(8733), + [aux_sym_do_statement_token1] = ACTIONS(8733), + [aux_sym_do_condition_token1] = ACTIONS(8733), + [aux_sym_with_statement_token1] = ACTIONS(8733), + [aux_sym_exit_statement_token1] = ACTIONS(8733), + [sym_end_statement] = ACTIONS(8735), + [aux_sym_on_goto_statement_token1] = ACTIONS(8733), + [aux_sym_on_goto_statement_token2] = ACTIONS(8733), + [aux_sym_on_error_statement_token2] = ACTIONS(8733), + [sym__ambiguous_redim_statement] = ACTIONS(8735), + [aux_sym_erase_statement_token1] = ACTIONS(8733), + [aux_sym_open_statement_token1] = ACTIONS(8733), + [aux_sym_file_mode_token2] = ACTIONS(8733), + [aux_sym_file_access_token2] = ACTIONS(8733), + [aux_sym_file_lock_token2] = ACTIONS(8733), + [aux_sym_print_statement_token1] = ACTIONS(8733), + [anon_sym_PLUS] = ACTIONS(8735), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_QMARK] = ACTIONS(8735), + [aux_sym_close_statement_token1] = ACTIONS(8733), + [aux_sym_put_statement_token1] = ACTIONS(8733), + [aux_sym_unlock_statement_token1] = ACTIONS(8733), + [aux_sym_seek_statement_token1] = ACTIONS(8733), + [sym_reset_statement] = ACTIONS(8733), + [aux_sym_raise_event_statement_token1] = ACTIONS(8733), + [sym_stop_statement] = ACTIONS(8733), + [sym_beep_statement] = ACTIONS(8733), + [aux_sym_unload_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token2] = ACTIONS(8733), + [aux_sym_def_type_statement_token3] = ACTIONS(8733), + [aux_sym_def_type_statement_token4] = ACTIONS(8733), + [aux_sym_def_type_statement_token5] = ACTIONS(8733), + [aux_sym_def_type_statement_token6] = ACTIONS(8733), + [aux_sym_def_type_statement_token7] = ACTIONS(8733), + [aux_sym_def_type_statement_token8] = ACTIONS(8733), + [aux_sym_def_type_statement_token9] = ACTIONS(8733), + [aux_sym_def_type_statement_token10] = ACTIONS(8733), + [aux_sym_def_type_statement_token11] = ACTIONS(8733), + [aux_sym_def_type_statement_token12] = ACTIONS(8733), + [aux_sym_def_type_statement_token13] = ACTIONS(8733), + [aux_sym_def_type_statement_token14] = ACTIONS(8733), + [aux_sym_call_statement_token1] = ACTIONS(8733), + [sym__ambiguous_call_statement] = ACTIONS(8733), + [aux_sym_addressof_expression_token1] = ACTIONS(8733), + [aux_sym_type_of_expression_token1] = ACTIONS(8733), + [aux_sym_unary_expression_token1] = ACTIONS(8733), + [sym_string_literal] = ACTIONS(8735), + [sym_number_literal] = ACTIONS(8735), + [aux_sym_boolean_literal_token1] = ACTIONS(8733), + [aux_sym_boolean_literal_token2] = ACTIONS(8733), + [sym_nothing_literal] = ACTIONS(8733), + [sym_null_literal] = ACTIONS(8733), + [sym_empty_literal] = ACTIONS(8733), + [sym_date_literal] = ACTIONS(8735), + [anon_sym_POUND] = ACTIONS(8733), + }, + [STATE(6705)] = { + [sym_identifier] = ACTIONS(9020), + [sym_newline] = ACTIONS(9022), + [anon_sym_COLON] = ACTIONS(9022), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9020), + [aux_sym_frm_property_statement_token1] = ACTIONS(9020), + [anon_sym_DOT] = ACTIONS(9020), + [anon_sym_BANG] = ACTIONS(9022), + [aux_sym__attribute_identifier_token1] = ACTIONS(9020), + [aux_sym_option_statement_token3] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9020), + [aux_sym_preprocessor_const_token1] = ACTIONS(9020), + [sym_static_modifier] = ACTIONS(9020), + [sym__dim_keyword] = ACTIONS(9020), + [sym__redim_keyword] = ACTIONS(9020), + [aux_sym_get_accessor_token1] = ACTIONS(9020), + [aux_sym_set_accessor_token1] = ACTIONS(9020), + [aux_sym_const_declaration_token1] = ACTIONS(9020), + [anon_sym_LPAREN] = ACTIONS(9022), + [aux_sym_as_type_clause_token2] = ACTIONS(9020), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9020), + [aux_sym_visibility_token1] = ACTIONS(9020), + [aux_sym_visibility_token2] = ACTIONS(9020), + [aux_sym_elseif_fragment_token1] = ACTIONS(9020), + [aux_sym_else_fragment_token1] = ACTIONS(9020), + [aux_sym_select_statement_token1] = ACTIONS(9020), + [aux_sym__for_header_token1] = ACTIONS(9020), + [aux_sym_do_statement_token1] = ACTIONS(9020), + [aux_sym_do_condition_token1] = ACTIONS(9020), + [aux_sym_while_statement_token1] = ACTIONS(9020), + [aux_sym_with_statement_token1] = ACTIONS(9020), + [aux_sym_exit_statement_token1] = ACTIONS(9020), + [sym_end_statement] = ACTIONS(9022), + [aux_sym_on_goto_statement_token1] = ACTIONS(9020), + [aux_sym_on_goto_statement_token2] = ACTIONS(9020), + [aux_sym_on_error_statement_token2] = ACTIONS(9020), + [sym__ambiguous_redim_statement] = ACTIONS(9022), + [aux_sym_erase_statement_token1] = ACTIONS(9020), + [aux_sym_open_statement_token1] = ACTIONS(9020), + [aux_sym_file_mode_token2] = ACTIONS(9020), + [aux_sym_file_access_token2] = ACTIONS(9020), + [aux_sym_file_lock_token2] = ACTIONS(9020), + [aux_sym_print_statement_token1] = ACTIONS(9020), + [anon_sym_PLUS] = ACTIONS(9022), + [anon_sym_DASH] = ACTIONS(9020), + [anon_sym_QMARK] = ACTIONS(9022), + [aux_sym_close_statement_token1] = ACTIONS(9020), + [aux_sym_put_statement_token1] = ACTIONS(9020), + [aux_sym_unlock_statement_token1] = ACTIONS(9020), + [aux_sym_seek_statement_token1] = ACTIONS(9020), + [sym_reset_statement] = ACTIONS(9020), + [aux_sym_raise_event_statement_token1] = ACTIONS(9020), + [sym_stop_statement] = ACTIONS(9020), + [sym_beep_statement] = ACTIONS(9020), + [aux_sym_unload_statement_token1] = ACTIONS(9020), + [aux_sym_def_type_statement_token1] = ACTIONS(9020), + [aux_sym_def_type_statement_token2] = ACTIONS(9020), + [aux_sym_def_type_statement_token3] = ACTIONS(9020), + [aux_sym_def_type_statement_token4] = ACTIONS(9020), + [aux_sym_def_type_statement_token5] = ACTIONS(9020), + [aux_sym_def_type_statement_token6] = ACTIONS(9020), + [aux_sym_def_type_statement_token7] = ACTIONS(9020), + [aux_sym_def_type_statement_token8] = ACTIONS(9020), + [aux_sym_def_type_statement_token9] = ACTIONS(9020), + [aux_sym_def_type_statement_token10] = ACTIONS(9020), + [aux_sym_def_type_statement_token11] = ACTIONS(9020), + [aux_sym_def_type_statement_token12] = ACTIONS(9020), + [aux_sym_def_type_statement_token13] = ACTIONS(9020), + [aux_sym_def_type_statement_token14] = ACTIONS(9020), + [aux_sym_call_statement_token1] = ACTIONS(9020), + [sym__ambiguous_call_statement] = ACTIONS(9020), + [aux_sym_addressof_expression_token1] = ACTIONS(9020), + [aux_sym_type_of_expression_token1] = ACTIONS(9020), + [aux_sym_unary_expression_token1] = ACTIONS(9020), + [sym_string_literal] = ACTIONS(9022), + [sym_number_literal] = ACTIONS(9022), + [aux_sym_boolean_literal_token1] = ACTIONS(9020), + [aux_sym_boolean_literal_token2] = ACTIONS(9020), + [sym_nothing_literal] = ACTIONS(9020), + [sym_null_literal] = ACTIONS(9020), + [sym_empty_literal] = ACTIONS(9020), + [sym_date_literal] = ACTIONS(9022), + [anon_sym_POUND] = ACTIONS(9020), + }, + [STATE(6706)] = { + [sym_identifier] = ACTIONS(9072), + [sym_newline] = ACTIONS(9074), + [anon_sym_COLON] = ACTIONS(9074), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9072), + [aux_sym_frm_property_statement_token1] = ACTIONS(9072), + [anon_sym_DOT] = ACTIONS(9072), + [anon_sym_BANG] = ACTIONS(9074), + [aux_sym__attribute_identifier_token1] = ACTIONS(9072), + [aux_sym_option_statement_token3] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9072), + [aux_sym_preprocessor_const_token1] = ACTIONS(9072), + [sym_static_modifier] = ACTIONS(9072), + [sym__dim_keyword] = ACTIONS(9072), + [sym__redim_keyword] = ACTIONS(9072), + [aux_sym_get_accessor_token1] = ACTIONS(9072), + [aux_sym_set_accessor_token1] = ACTIONS(9072), + [aux_sym_const_declaration_token1] = ACTIONS(9072), + [anon_sym_LPAREN] = ACTIONS(9074), + [aux_sym_as_type_clause_token2] = ACTIONS(9072), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9072), + [aux_sym_visibility_token1] = ACTIONS(9072), + [aux_sym_visibility_token2] = ACTIONS(9072), + [aux_sym_elseif_fragment_token1] = ACTIONS(9072), + [aux_sym_else_fragment_token1] = ACTIONS(9072), + [aux_sym_select_statement_token1] = ACTIONS(9072), + [aux_sym_select_statement_token2] = ACTIONS(9072), + [aux_sym__for_header_token1] = ACTIONS(9072), + [aux_sym_do_statement_token1] = ACTIONS(9072), + [aux_sym_do_condition_token1] = ACTIONS(9072), + [aux_sym_with_statement_token1] = ACTIONS(9072), + [aux_sym_exit_statement_token1] = ACTIONS(9072), + [sym_end_statement] = ACTIONS(9074), + [aux_sym_on_goto_statement_token1] = ACTIONS(9072), + [aux_sym_on_goto_statement_token2] = ACTIONS(9072), + [aux_sym_on_error_statement_token2] = ACTIONS(9072), + [sym__ambiguous_redim_statement] = ACTIONS(9074), + [aux_sym_erase_statement_token1] = ACTIONS(9072), + [aux_sym_open_statement_token1] = ACTIONS(9072), + [aux_sym_file_mode_token2] = ACTIONS(9072), + [aux_sym_file_access_token2] = ACTIONS(9072), + [aux_sym_file_lock_token2] = ACTIONS(9072), + [aux_sym_print_statement_token1] = ACTIONS(9072), + [anon_sym_PLUS] = ACTIONS(9074), + [anon_sym_DASH] = ACTIONS(9072), + [anon_sym_QMARK] = ACTIONS(9074), + [aux_sym_close_statement_token1] = ACTIONS(9072), + [aux_sym_put_statement_token1] = ACTIONS(9072), + [aux_sym_unlock_statement_token1] = ACTIONS(9072), + [aux_sym_seek_statement_token1] = ACTIONS(9072), + [sym_reset_statement] = ACTIONS(9072), + [aux_sym_raise_event_statement_token1] = ACTIONS(9072), + [sym_stop_statement] = ACTIONS(9072), + [sym_beep_statement] = ACTIONS(9072), + [aux_sym_unload_statement_token1] = ACTIONS(9072), + [aux_sym_def_type_statement_token1] = ACTIONS(9072), + [aux_sym_def_type_statement_token2] = ACTIONS(9072), + [aux_sym_def_type_statement_token3] = ACTIONS(9072), + [aux_sym_def_type_statement_token4] = ACTIONS(9072), + [aux_sym_def_type_statement_token5] = ACTIONS(9072), + [aux_sym_def_type_statement_token6] = ACTIONS(9072), + [aux_sym_def_type_statement_token7] = ACTIONS(9072), + [aux_sym_def_type_statement_token8] = ACTIONS(9072), + [aux_sym_def_type_statement_token9] = ACTIONS(9072), + [aux_sym_def_type_statement_token10] = ACTIONS(9072), + [aux_sym_def_type_statement_token11] = ACTIONS(9072), + [aux_sym_def_type_statement_token12] = ACTIONS(9072), + [aux_sym_def_type_statement_token13] = ACTIONS(9072), + [aux_sym_def_type_statement_token14] = ACTIONS(9072), + [aux_sym_call_statement_token1] = ACTIONS(9072), + [sym__ambiguous_call_statement] = ACTIONS(9072), + [aux_sym_addressof_expression_token1] = ACTIONS(9072), + [aux_sym_type_of_expression_token1] = ACTIONS(9072), + [aux_sym_unary_expression_token1] = ACTIONS(9072), + [sym_string_literal] = ACTIONS(9074), + [sym_number_literal] = ACTIONS(9074), + [aux_sym_boolean_literal_token1] = ACTIONS(9072), + [aux_sym_boolean_literal_token2] = ACTIONS(9072), + [sym_nothing_literal] = ACTIONS(9072), + [sym_null_literal] = ACTIONS(9072), + [sym_empty_literal] = ACTIONS(9072), + [sym_date_literal] = ACTIONS(9074), + [anon_sym_POUND] = ACTIONS(9072), + }, + [STATE(6707)] = { + [sym_identifier] = ACTIONS(9044), + [sym_newline] = ACTIONS(9046), + [anon_sym_COLON] = ACTIONS(9046), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9044), + [aux_sym_frm_property_statement_token1] = ACTIONS(9044), + [anon_sym_DOT] = ACTIONS(9044), + [anon_sym_BANG] = ACTIONS(9046), + [aux_sym__attribute_identifier_token1] = ACTIONS(9044), + [aux_sym_option_statement_token3] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9044), + [aux_sym_preprocessor_const_token1] = ACTIONS(9044), + [sym_static_modifier] = ACTIONS(9044), + [sym__dim_keyword] = ACTIONS(9044), + [sym__redim_keyword] = ACTIONS(9044), + [aux_sym_get_accessor_token1] = ACTIONS(9044), + [aux_sym_set_accessor_token1] = ACTIONS(9044), + [aux_sym_const_declaration_token1] = ACTIONS(9044), + [anon_sym_LPAREN] = ACTIONS(9046), + [aux_sym_as_type_clause_token2] = ACTIONS(9044), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9044), + [aux_sym_visibility_token1] = ACTIONS(9044), + [aux_sym_visibility_token2] = ACTIONS(9044), + [aux_sym_elseif_fragment_token1] = ACTIONS(9044), + [aux_sym_else_fragment_token1] = ACTIONS(9044), + [aux_sym_select_statement_token1] = ACTIONS(9044), + [aux_sym__for_header_token1] = ACTIONS(9044), + [aux_sym_do_statement_token1] = ACTIONS(9044), + [aux_sym_do_condition_token1] = ACTIONS(9044), + [aux_sym_with_statement_token1] = ACTIONS(9044), + [aux_sym_exit_statement_token1] = ACTIONS(9044), + [sym_end_statement] = ACTIONS(9046), + [aux_sym_on_goto_statement_token1] = ACTIONS(9044), + [aux_sym_on_goto_statement_token2] = ACTIONS(9044), + [aux_sym_on_error_statement_token2] = ACTIONS(9044), + [sym__ambiguous_redim_statement] = ACTIONS(9046), + [aux_sym_erase_statement_token1] = ACTIONS(9044), + [aux_sym_open_statement_token1] = ACTIONS(9044), + [aux_sym_file_mode_token2] = ACTIONS(9044), + [aux_sym_file_access_token2] = ACTIONS(9044), + [aux_sym_file_lock_token2] = ACTIONS(9044), + [aux_sym_print_statement_token1] = ACTIONS(9044), + [anon_sym_PLUS] = ACTIONS(9046), + [anon_sym_DASH] = ACTIONS(9044), + [anon_sym_QMARK] = ACTIONS(9046), + [aux_sym_close_statement_token1] = ACTIONS(9044), + [aux_sym_put_statement_token1] = ACTIONS(9044), + [aux_sym_unlock_statement_token1] = ACTIONS(9044), + [aux_sym_seek_statement_token1] = ACTIONS(9044), + [sym_reset_statement] = ACTIONS(9044), + [aux_sym_raise_event_statement_token1] = ACTIONS(9044), + [sym_stop_statement] = ACTIONS(9044), + [sym_beep_statement] = ACTIONS(9044), + [aux_sym_unload_statement_token1] = ACTIONS(9044), + [aux_sym_def_type_statement_token1] = ACTIONS(9044), + [aux_sym_def_type_statement_token2] = ACTIONS(9044), + [aux_sym_def_type_statement_token3] = ACTIONS(9044), + [aux_sym_def_type_statement_token4] = ACTIONS(9044), + [aux_sym_def_type_statement_token5] = ACTIONS(9044), + [aux_sym_def_type_statement_token6] = ACTIONS(9044), + [aux_sym_def_type_statement_token7] = ACTIONS(9044), + [aux_sym_def_type_statement_token8] = ACTIONS(9044), + [aux_sym_def_type_statement_token9] = ACTIONS(9044), + [aux_sym_def_type_statement_token10] = ACTIONS(9044), + [aux_sym_def_type_statement_token11] = ACTIONS(9044), + [aux_sym_def_type_statement_token12] = ACTIONS(9044), + [aux_sym_def_type_statement_token13] = ACTIONS(9044), + [aux_sym_def_type_statement_token14] = ACTIONS(9044), + [aux_sym_call_statement_token1] = ACTIONS(9044), + [sym__ambiguous_call_statement] = ACTIONS(9044), + [aux_sym_addressof_expression_token1] = ACTIONS(9044), + [aux_sym_type_of_expression_token1] = ACTIONS(9044), + [aux_sym_unary_expression_token1] = ACTIONS(9044), + [sym_string_literal] = ACTIONS(9046), + [sym_number_literal] = ACTIONS(9046), + [aux_sym_boolean_literal_token1] = ACTIONS(9044), + [aux_sym_boolean_literal_token2] = ACTIONS(9044), + [sym_nothing_literal] = ACTIONS(9044), + [sym_null_literal] = ACTIONS(9044), + [sym_empty_literal] = ACTIONS(9044), + [sym_date_literal] = ACTIONS(9046), + [anon_sym_POUND] = ACTIONS(9044), + }, + [STATE(6708)] = { + [sym_identifier] = ACTIONS(9048), + [sym_newline] = ACTIONS(9050), + [anon_sym_COLON] = ACTIONS(9050), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9048), + [aux_sym_frm_property_statement_token1] = ACTIONS(9048), + [anon_sym_DOT] = ACTIONS(9048), + [anon_sym_BANG] = ACTIONS(9050), + [aux_sym__attribute_identifier_token1] = ACTIONS(9048), + [aux_sym_option_statement_token3] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9048), + [aux_sym_preprocessor_const_token1] = ACTIONS(9048), + [sym_static_modifier] = ACTIONS(9048), + [sym__dim_keyword] = ACTIONS(9048), + [sym__redim_keyword] = ACTIONS(9048), + [aux_sym_get_accessor_token1] = ACTIONS(9048), + [aux_sym_set_accessor_token1] = ACTIONS(9048), + [aux_sym_const_declaration_token1] = ACTIONS(9048), + [anon_sym_LPAREN] = ACTIONS(9050), + [aux_sym_as_type_clause_token2] = ACTIONS(9048), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9048), + [aux_sym_visibility_token1] = ACTIONS(9048), + [aux_sym_visibility_token2] = ACTIONS(9048), + [aux_sym_elseif_fragment_token1] = ACTIONS(9048), + [aux_sym_else_fragment_token1] = ACTIONS(9048), + [aux_sym_select_statement_token1] = ACTIONS(9048), + [aux_sym_select_statement_token2] = ACTIONS(9048), + [aux_sym__for_header_token1] = ACTIONS(9048), + [aux_sym_do_statement_token1] = ACTIONS(9048), + [aux_sym_do_condition_token1] = ACTIONS(9048), + [aux_sym_with_statement_token1] = ACTIONS(9048), + [aux_sym_exit_statement_token1] = ACTIONS(9048), + [sym_end_statement] = ACTIONS(9050), + [aux_sym_on_goto_statement_token1] = ACTIONS(9048), + [aux_sym_on_goto_statement_token2] = ACTIONS(9048), + [aux_sym_on_error_statement_token2] = ACTIONS(9048), + [sym__ambiguous_redim_statement] = ACTIONS(9050), + [aux_sym_erase_statement_token1] = ACTIONS(9048), + [aux_sym_open_statement_token1] = ACTIONS(9048), + [aux_sym_file_mode_token2] = ACTIONS(9048), + [aux_sym_file_access_token2] = ACTIONS(9048), + [aux_sym_file_lock_token2] = ACTIONS(9048), + [aux_sym_print_statement_token1] = ACTIONS(9048), + [anon_sym_PLUS] = ACTIONS(9050), + [anon_sym_DASH] = ACTIONS(9048), + [anon_sym_QMARK] = ACTIONS(9050), + [aux_sym_close_statement_token1] = ACTIONS(9048), + [aux_sym_put_statement_token1] = ACTIONS(9048), + [aux_sym_unlock_statement_token1] = ACTIONS(9048), + [aux_sym_seek_statement_token1] = ACTIONS(9048), + [sym_reset_statement] = ACTIONS(9048), + [aux_sym_raise_event_statement_token1] = ACTIONS(9048), + [sym_stop_statement] = ACTIONS(9048), + [sym_beep_statement] = ACTIONS(9048), + [aux_sym_unload_statement_token1] = ACTIONS(9048), + [aux_sym_def_type_statement_token1] = ACTIONS(9048), + [aux_sym_def_type_statement_token2] = ACTIONS(9048), + [aux_sym_def_type_statement_token3] = ACTIONS(9048), + [aux_sym_def_type_statement_token4] = ACTIONS(9048), + [aux_sym_def_type_statement_token5] = ACTIONS(9048), + [aux_sym_def_type_statement_token6] = ACTIONS(9048), + [aux_sym_def_type_statement_token7] = ACTIONS(9048), + [aux_sym_def_type_statement_token8] = ACTIONS(9048), + [aux_sym_def_type_statement_token9] = ACTIONS(9048), + [aux_sym_def_type_statement_token10] = ACTIONS(9048), + [aux_sym_def_type_statement_token11] = ACTIONS(9048), + [aux_sym_def_type_statement_token12] = ACTIONS(9048), + [aux_sym_def_type_statement_token13] = ACTIONS(9048), + [aux_sym_def_type_statement_token14] = ACTIONS(9048), + [aux_sym_call_statement_token1] = ACTIONS(9048), + [sym__ambiguous_call_statement] = ACTIONS(9048), + [aux_sym_addressof_expression_token1] = ACTIONS(9048), + [aux_sym_type_of_expression_token1] = ACTIONS(9048), + [aux_sym_unary_expression_token1] = ACTIONS(9048), + [sym_string_literal] = ACTIONS(9050), + [sym_number_literal] = ACTIONS(9050), + [aux_sym_boolean_literal_token1] = ACTIONS(9048), + [aux_sym_boolean_literal_token2] = ACTIONS(9048), + [sym_nothing_literal] = ACTIONS(9048), + [sym_null_literal] = ACTIONS(9048), + [sym_empty_literal] = ACTIONS(9048), + [sym_date_literal] = ACTIONS(9050), + [anon_sym_POUND] = ACTIONS(9048), + }, + [STATE(6709)] = { + [sym_identifier] = ACTIONS(9024), + [sym_newline] = ACTIONS(9026), + [anon_sym_COLON] = ACTIONS(9026), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9024), + [aux_sym_frm_property_statement_token1] = ACTIONS(9024), + [anon_sym_DOT] = ACTIONS(9024), + [anon_sym_BANG] = ACTIONS(9026), + [aux_sym__attribute_identifier_token1] = ACTIONS(9024), + [aux_sym_option_statement_token3] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9024), + [aux_sym_preprocessor_const_token1] = ACTIONS(9024), + [sym_static_modifier] = ACTIONS(9024), + [sym__dim_keyword] = ACTIONS(9024), + [sym__redim_keyword] = ACTIONS(9024), + [aux_sym_get_accessor_token1] = ACTIONS(9024), + [aux_sym_set_accessor_token1] = ACTIONS(9024), + [aux_sym_const_declaration_token1] = ACTIONS(9024), + [anon_sym_LPAREN] = ACTIONS(9026), + [aux_sym_as_type_clause_token2] = ACTIONS(9024), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9024), + [aux_sym_visibility_token1] = ACTIONS(9024), + [aux_sym_visibility_token2] = ACTIONS(9024), + [aux_sym_elseif_fragment_token1] = ACTIONS(9024), + [aux_sym_else_fragment_token1] = ACTIONS(9024), + [aux_sym_select_statement_token1] = ACTIONS(9024), + [aux_sym__for_header_token1] = ACTIONS(9024), + [aux_sym_do_statement_token1] = ACTIONS(9024), + [aux_sym_do_condition_token1] = ACTIONS(9024), + [aux_sym_while_statement_token1] = ACTIONS(9024), + [aux_sym_with_statement_token1] = ACTIONS(9024), + [aux_sym_exit_statement_token1] = ACTIONS(9024), + [sym_end_statement] = ACTIONS(9026), + [aux_sym_on_goto_statement_token1] = ACTIONS(9024), + [aux_sym_on_goto_statement_token2] = ACTIONS(9024), + [aux_sym_on_error_statement_token2] = ACTIONS(9024), + [sym__ambiguous_redim_statement] = ACTIONS(9026), + [aux_sym_erase_statement_token1] = ACTIONS(9024), + [aux_sym_open_statement_token1] = ACTIONS(9024), + [aux_sym_file_mode_token2] = ACTIONS(9024), + [aux_sym_file_access_token2] = ACTIONS(9024), + [aux_sym_file_lock_token2] = ACTIONS(9024), + [aux_sym_print_statement_token1] = ACTIONS(9024), + [anon_sym_PLUS] = ACTIONS(9026), + [anon_sym_DASH] = ACTIONS(9024), + [anon_sym_QMARK] = ACTIONS(9026), + [aux_sym_close_statement_token1] = ACTIONS(9024), + [aux_sym_put_statement_token1] = ACTIONS(9024), + [aux_sym_unlock_statement_token1] = ACTIONS(9024), + [aux_sym_seek_statement_token1] = ACTIONS(9024), + [sym_reset_statement] = ACTIONS(9024), + [aux_sym_raise_event_statement_token1] = ACTIONS(9024), + [sym_stop_statement] = ACTIONS(9024), + [sym_beep_statement] = ACTIONS(9024), + [aux_sym_unload_statement_token1] = ACTIONS(9024), + [aux_sym_def_type_statement_token1] = ACTIONS(9024), + [aux_sym_def_type_statement_token2] = ACTIONS(9024), + [aux_sym_def_type_statement_token3] = ACTIONS(9024), + [aux_sym_def_type_statement_token4] = ACTIONS(9024), + [aux_sym_def_type_statement_token5] = ACTIONS(9024), + [aux_sym_def_type_statement_token6] = ACTIONS(9024), + [aux_sym_def_type_statement_token7] = ACTIONS(9024), + [aux_sym_def_type_statement_token8] = ACTIONS(9024), + [aux_sym_def_type_statement_token9] = ACTIONS(9024), + [aux_sym_def_type_statement_token10] = ACTIONS(9024), + [aux_sym_def_type_statement_token11] = ACTIONS(9024), + [aux_sym_def_type_statement_token12] = ACTIONS(9024), + [aux_sym_def_type_statement_token13] = ACTIONS(9024), + [aux_sym_def_type_statement_token14] = ACTIONS(9024), + [aux_sym_call_statement_token1] = ACTIONS(9024), + [sym__ambiguous_call_statement] = ACTIONS(9024), + [aux_sym_addressof_expression_token1] = ACTIONS(9024), + [aux_sym_type_of_expression_token1] = ACTIONS(9024), + [aux_sym_unary_expression_token1] = ACTIONS(9024), + [sym_string_literal] = ACTIONS(9026), + [sym_number_literal] = ACTIONS(9026), + [aux_sym_boolean_literal_token1] = ACTIONS(9024), + [aux_sym_boolean_literal_token2] = ACTIONS(9024), + [sym_nothing_literal] = ACTIONS(9024), + [sym_null_literal] = ACTIONS(9024), + [sym_empty_literal] = ACTIONS(9024), + [sym_date_literal] = ACTIONS(9026), + [anon_sym_POUND] = ACTIONS(9024), + }, + [STATE(6710)] = { + [sym_identifier] = ACTIONS(8988), + [sym_newline] = ACTIONS(8990), + [anon_sym_COLON] = ACTIONS(8990), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8988), + [aux_sym_frm_property_statement_token1] = ACTIONS(8988), + [anon_sym_DOT] = ACTIONS(8988), + [anon_sym_BANG] = ACTIONS(8990), + [aux_sym__attribute_identifier_token1] = ACTIONS(8988), + [aux_sym_option_statement_token3] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8988), + [aux_sym_preprocessor_const_token1] = ACTIONS(8988), + [sym_static_modifier] = ACTIONS(8988), + [sym__dim_keyword] = ACTIONS(8988), + [sym__redim_keyword] = ACTIONS(8988), + [aux_sym_get_accessor_token1] = ACTIONS(8988), + [aux_sym_set_accessor_token1] = ACTIONS(8988), + [aux_sym_const_declaration_token1] = ACTIONS(8988), + [anon_sym_LPAREN] = ACTIONS(8990), + [aux_sym_as_type_clause_token2] = ACTIONS(8988), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8988), + [aux_sym_visibility_token1] = ACTIONS(8988), + [aux_sym_visibility_token2] = ACTIONS(8988), + [aux_sym_elseif_fragment_token1] = ACTIONS(8988), + [aux_sym_else_fragment_token1] = ACTIONS(8988), + [aux_sym_select_statement_token1] = ACTIONS(8988), + [aux_sym_select_statement_token2] = ACTIONS(8988), + [aux_sym__for_header_token1] = ACTIONS(8988), + [aux_sym_do_statement_token1] = ACTIONS(8988), + [aux_sym_do_condition_token1] = ACTIONS(8988), + [aux_sym_with_statement_token1] = ACTIONS(8988), + [aux_sym_exit_statement_token1] = ACTIONS(8988), + [sym_end_statement] = ACTIONS(8990), + [aux_sym_on_goto_statement_token1] = ACTIONS(8988), + [aux_sym_on_goto_statement_token2] = ACTIONS(8988), + [aux_sym_on_error_statement_token2] = ACTIONS(8988), + [sym__ambiguous_redim_statement] = ACTIONS(8990), + [aux_sym_erase_statement_token1] = ACTIONS(8988), + [aux_sym_open_statement_token1] = ACTIONS(8988), + [aux_sym_file_mode_token2] = ACTIONS(8988), + [aux_sym_file_access_token2] = ACTIONS(8988), + [aux_sym_file_lock_token2] = ACTIONS(8988), + [aux_sym_print_statement_token1] = ACTIONS(8988), + [anon_sym_PLUS] = ACTIONS(8990), + [anon_sym_DASH] = ACTIONS(8988), + [anon_sym_QMARK] = ACTIONS(8990), + [aux_sym_close_statement_token1] = ACTIONS(8988), + [aux_sym_put_statement_token1] = ACTIONS(8988), + [aux_sym_unlock_statement_token1] = ACTIONS(8988), + [aux_sym_seek_statement_token1] = ACTIONS(8988), + [sym_reset_statement] = ACTIONS(8988), + [aux_sym_raise_event_statement_token1] = ACTIONS(8988), + [sym_stop_statement] = ACTIONS(8988), + [sym_beep_statement] = ACTIONS(8988), + [aux_sym_unload_statement_token1] = ACTIONS(8988), + [aux_sym_def_type_statement_token1] = ACTIONS(8988), + [aux_sym_def_type_statement_token2] = ACTIONS(8988), + [aux_sym_def_type_statement_token3] = ACTIONS(8988), + [aux_sym_def_type_statement_token4] = ACTIONS(8988), + [aux_sym_def_type_statement_token5] = ACTIONS(8988), + [aux_sym_def_type_statement_token6] = ACTIONS(8988), + [aux_sym_def_type_statement_token7] = ACTIONS(8988), + [aux_sym_def_type_statement_token8] = ACTIONS(8988), + [aux_sym_def_type_statement_token9] = ACTIONS(8988), + [aux_sym_def_type_statement_token10] = ACTIONS(8988), + [aux_sym_def_type_statement_token11] = ACTIONS(8988), + [aux_sym_def_type_statement_token12] = ACTIONS(8988), + [aux_sym_def_type_statement_token13] = ACTIONS(8988), + [aux_sym_def_type_statement_token14] = ACTIONS(8988), + [aux_sym_call_statement_token1] = ACTIONS(8988), + [sym__ambiguous_call_statement] = ACTIONS(8988), + [aux_sym_addressof_expression_token1] = ACTIONS(8988), + [aux_sym_type_of_expression_token1] = ACTIONS(8988), + [aux_sym_unary_expression_token1] = ACTIONS(8988), + [sym_string_literal] = ACTIONS(8990), + [sym_number_literal] = ACTIONS(8990), + [aux_sym_boolean_literal_token1] = ACTIONS(8988), + [aux_sym_boolean_literal_token2] = ACTIONS(8988), + [sym_nothing_literal] = ACTIONS(8988), + [sym_null_literal] = ACTIONS(8988), + [sym_empty_literal] = ACTIONS(8988), + [sym_date_literal] = ACTIONS(8990), + [anon_sym_POUND] = ACTIONS(8988), + }, + [STATE(6711)] = { + [sym_identifier] = ACTIONS(9364), + [sym_newline] = ACTIONS(9366), + [anon_sym_COLON] = ACTIONS(9366), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9364), + [aux_sym_frm_property_statement_token1] = ACTIONS(9364), + [anon_sym_DOT] = ACTIONS(9364), + [anon_sym_BANG] = ACTIONS(9366), + [aux_sym__attribute_identifier_token1] = ACTIONS(9364), + [aux_sym_option_statement_token3] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9364), + [aux_sym_preprocessor_const_token1] = ACTIONS(9364), + [sym_static_modifier] = ACTIONS(9364), + [sym__dim_keyword] = ACTIONS(9364), + [sym__redim_keyword] = ACTIONS(9364), + [aux_sym_get_accessor_token1] = ACTIONS(9364), + [aux_sym_set_accessor_token1] = ACTIONS(9364), + [aux_sym_const_declaration_token1] = ACTIONS(9364), + [anon_sym_LPAREN] = ACTIONS(9366), + [aux_sym_as_type_clause_token2] = ACTIONS(9364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9364), + [aux_sym_visibility_token1] = ACTIONS(9364), + [aux_sym_visibility_token2] = ACTIONS(9364), + [aux_sym_elseif_fragment_token1] = ACTIONS(9364), + [aux_sym_else_fragment_token1] = ACTIONS(9364), + [aux_sym_select_statement_token1] = ACTIONS(9364), + [aux_sym__for_header_token1] = ACTIONS(9364), + [aux_sym_do_statement_token1] = ACTIONS(9364), + [aux_sym_do_statement_token2] = ACTIONS(9364), + [aux_sym_do_condition_token1] = ACTIONS(9364), + [aux_sym_with_statement_token1] = ACTIONS(9364), + [aux_sym_exit_statement_token1] = ACTIONS(9364), + [sym_end_statement] = ACTIONS(9366), + [aux_sym_on_goto_statement_token1] = ACTIONS(9364), + [aux_sym_on_goto_statement_token2] = ACTIONS(9364), + [aux_sym_on_error_statement_token2] = ACTIONS(9364), + [sym__ambiguous_redim_statement] = ACTIONS(9366), + [aux_sym_erase_statement_token1] = ACTIONS(9364), + [aux_sym_open_statement_token1] = ACTIONS(9364), + [aux_sym_file_mode_token2] = ACTIONS(9364), + [aux_sym_file_access_token2] = ACTIONS(9364), + [aux_sym_file_lock_token2] = ACTIONS(9364), + [aux_sym_print_statement_token1] = ACTIONS(9364), + [anon_sym_PLUS] = ACTIONS(9366), + [anon_sym_DASH] = ACTIONS(9364), + [anon_sym_QMARK] = ACTIONS(9366), + [aux_sym_close_statement_token1] = ACTIONS(9364), + [aux_sym_put_statement_token1] = ACTIONS(9364), + [aux_sym_unlock_statement_token1] = ACTIONS(9364), + [aux_sym_seek_statement_token1] = ACTIONS(9364), + [sym_reset_statement] = ACTIONS(9364), + [aux_sym_raise_event_statement_token1] = ACTIONS(9364), + [sym_stop_statement] = ACTIONS(9364), + [sym_beep_statement] = ACTIONS(9364), + [aux_sym_unload_statement_token1] = ACTIONS(9364), + [aux_sym_def_type_statement_token1] = ACTIONS(9364), + [aux_sym_def_type_statement_token2] = ACTIONS(9364), + [aux_sym_def_type_statement_token3] = ACTIONS(9364), + [aux_sym_def_type_statement_token4] = ACTIONS(9364), + [aux_sym_def_type_statement_token5] = ACTIONS(9364), + [aux_sym_def_type_statement_token6] = ACTIONS(9364), + [aux_sym_def_type_statement_token7] = ACTIONS(9364), + [aux_sym_def_type_statement_token8] = ACTIONS(9364), + [aux_sym_def_type_statement_token9] = ACTIONS(9364), + [aux_sym_def_type_statement_token10] = ACTIONS(9364), + [aux_sym_def_type_statement_token11] = ACTIONS(9364), + [aux_sym_def_type_statement_token12] = ACTIONS(9364), + [aux_sym_def_type_statement_token13] = ACTIONS(9364), + [aux_sym_def_type_statement_token14] = ACTIONS(9364), + [aux_sym_call_statement_token1] = ACTIONS(9364), + [sym__ambiguous_call_statement] = ACTIONS(9364), + [aux_sym_addressof_expression_token1] = ACTIONS(9364), + [aux_sym_type_of_expression_token1] = ACTIONS(9364), + [aux_sym_unary_expression_token1] = ACTIONS(9364), + [sym_string_literal] = ACTIONS(9366), + [sym_number_literal] = ACTIONS(9366), + [aux_sym_boolean_literal_token1] = ACTIONS(9364), + [aux_sym_boolean_literal_token2] = ACTIONS(9364), + [sym_nothing_literal] = ACTIONS(9364), + [sym_null_literal] = ACTIONS(9364), + [sym_empty_literal] = ACTIONS(9364), + [sym_date_literal] = ACTIONS(9366), + [anon_sym_POUND] = ACTIONS(9364), + }, + [STATE(6712)] = { + [sym_identifier] = ACTIONS(6629), + [sym_newline] = ACTIONS(6631), + [anon_sym_COLON] = ACTIONS(6631), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6629), + [aux_sym_frm_property_statement_token1] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6631), + [aux_sym__attribute_identifier_token1] = ACTIONS(6629), + [aux_sym_option_statement_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6629), + [aux_sym_preprocessor_const_token1] = ACTIONS(6629), + [sym_static_modifier] = ACTIONS(6629), + [sym__dim_keyword] = ACTIONS(6629), + [sym__redim_keyword] = ACTIONS(6629), + [aux_sym_get_accessor_token1] = ACTIONS(6629), + [aux_sym_set_accessor_token1] = ACTIONS(6629), + [aux_sym_const_declaration_token1] = ACTIONS(6629), + [anon_sym_LPAREN] = ACTIONS(6631), + [aux_sym_as_type_clause_token2] = ACTIONS(6629), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6629), + [aux_sym_visibility_token1] = ACTIONS(6629), + [aux_sym_visibility_token2] = ACTIONS(6629), + [aux_sym_elseif_fragment_token1] = ACTIONS(6629), + [aux_sym_else_fragment_token1] = ACTIONS(6629), + [aux_sym_select_statement_token1] = ACTIONS(6629), + [aux_sym__for_header_token1] = ACTIONS(6629), + [aux_sym_do_statement_token1] = ACTIONS(6629), + [aux_sym_do_condition_token1] = ACTIONS(6629), + [aux_sym_with_statement_token1] = ACTIONS(6629), + [aux_sym_exit_statement_token1] = ACTIONS(6629), + [sym_end_statement] = ACTIONS(6631), + [aux_sym_on_goto_statement_token1] = ACTIONS(6629), + [aux_sym_on_goto_statement_token2] = ACTIONS(6629), + [aux_sym_on_error_statement_token2] = ACTIONS(6629), + [sym__ambiguous_redim_statement] = ACTIONS(6631), + [aux_sym_erase_statement_token1] = ACTIONS(6629), + [aux_sym_open_statement_token1] = ACTIONS(6629), + [aux_sym_file_mode_token2] = ACTIONS(6629), + [aux_sym_file_access_token2] = ACTIONS(6629), + [aux_sym_file_lock_token2] = ACTIONS(6629), + [aux_sym_print_statement_token1] = ACTIONS(6629), + [anon_sym_PLUS] = ACTIONS(6631), + [anon_sym_DASH] = ACTIONS(6629), + [anon_sym_QMARK] = ACTIONS(6631), + [aux_sym_close_statement_token1] = ACTIONS(6629), + [aux_sym_put_statement_token1] = ACTIONS(6629), + [aux_sym_unlock_statement_token1] = ACTIONS(6629), + [aux_sym_seek_statement_token1] = ACTIONS(6629), + [sym_reset_statement] = ACTIONS(6629), + [aux_sym_raise_event_statement_token1] = ACTIONS(6629), + [sym_stop_statement] = ACTIONS(6629), + [sym_beep_statement] = ACTIONS(6629), + [aux_sym_unload_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token2] = ACTIONS(6629), + [aux_sym_def_type_statement_token3] = ACTIONS(6629), + [aux_sym_def_type_statement_token4] = ACTIONS(6629), + [aux_sym_def_type_statement_token5] = ACTIONS(6629), + [aux_sym_def_type_statement_token6] = ACTIONS(6629), + [aux_sym_def_type_statement_token7] = ACTIONS(6629), + [aux_sym_def_type_statement_token8] = ACTIONS(6629), + [aux_sym_def_type_statement_token9] = ACTIONS(6629), + [aux_sym_def_type_statement_token10] = ACTIONS(6629), + [aux_sym_def_type_statement_token11] = ACTIONS(6629), + [aux_sym_def_type_statement_token12] = ACTIONS(6629), + [aux_sym_def_type_statement_token13] = ACTIONS(6629), + [aux_sym_def_type_statement_token14] = ACTIONS(6629), + [aux_sym_call_statement_token1] = ACTIONS(6629), + [sym__ambiguous_call_statement] = ACTIONS(6629), + [aux_sym_addressof_expression_token1] = ACTIONS(6629), + [aux_sym_type_of_expression_token1] = ACTIONS(6629), + [aux_sym_unary_expression_token1] = ACTIONS(6629), + [sym_string_literal] = ACTIONS(6631), + [sym_number_literal] = ACTIONS(6631), + [aux_sym_boolean_literal_token1] = ACTIONS(6629), + [aux_sym_boolean_literal_token2] = ACTIONS(6629), + [sym_nothing_literal] = ACTIONS(6629), + [sym_null_literal] = ACTIONS(6629), + [sym_empty_literal] = ACTIONS(6629), + [sym_date_literal] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6629), + }, + [STATE(6713)] = { + [sym_identifier] = ACTIONS(8501), + [sym_newline] = ACTIONS(8503), + [anon_sym_COLON] = ACTIONS(8503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8501), + [aux_sym_frm_property_statement_token1] = ACTIONS(8501), + [anon_sym_DOT] = ACTIONS(8501), + [anon_sym_BANG] = ACTIONS(8503), + [aux_sym__attribute_identifier_token1] = ACTIONS(8501), + [aux_sym_option_statement_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8501), + [aux_sym_preprocessor_const_token1] = ACTIONS(8501), + [sym_static_modifier] = ACTIONS(8501), + [sym__dim_keyword] = ACTIONS(8501), + [sym__redim_keyword] = ACTIONS(8501), + [aux_sym_get_accessor_token1] = ACTIONS(8501), + [aux_sym_set_accessor_token1] = ACTIONS(8501), + [aux_sym_const_declaration_token1] = ACTIONS(8501), + [anon_sym_LPAREN] = ACTIONS(8503), + [aux_sym_as_type_clause_token2] = ACTIONS(8501), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8501), + [aux_sym_visibility_token1] = ACTIONS(8501), + [aux_sym_visibility_token2] = ACTIONS(8501), + [aux_sym_elseif_fragment_token1] = ACTIONS(8501), + [aux_sym_else_fragment_token1] = ACTIONS(8501), + [aux_sym_select_statement_token1] = ACTIONS(8501), + [aux_sym__for_header_token1] = ACTIONS(8501), + [aux_sym_do_statement_token1] = ACTIONS(8501), + [aux_sym_do_condition_token1] = ACTIONS(8501), + [aux_sym_with_statement_token1] = ACTIONS(8501), + [aux_sym_exit_statement_token1] = ACTIONS(8501), + [sym_end_statement] = ACTIONS(8503), + [aux_sym_on_goto_statement_token1] = ACTIONS(8501), + [aux_sym_on_goto_statement_token2] = ACTIONS(8501), + [aux_sym_on_error_statement_token2] = ACTIONS(8501), + [sym__ambiguous_redim_statement] = ACTIONS(8503), + [aux_sym_erase_statement_token1] = ACTIONS(8501), + [aux_sym_open_statement_token1] = ACTIONS(8501), + [aux_sym_file_mode_token2] = ACTIONS(8501), + [aux_sym_file_access_token2] = ACTIONS(8501), + [aux_sym_file_lock_token2] = ACTIONS(8501), + [aux_sym_print_statement_token1] = ACTIONS(8501), + [anon_sym_PLUS] = ACTIONS(8503), + [anon_sym_DASH] = ACTIONS(8501), + [anon_sym_QMARK] = ACTIONS(8503), + [aux_sym_close_statement_token1] = ACTIONS(8501), + [aux_sym_put_statement_token1] = ACTIONS(8501), + [aux_sym_unlock_statement_token1] = ACTIONS(8501), + [aux_sym_seek_statement_token1] = ACTIONS(8501), + [sym_reset_statement] = ACTIONS(8501), + [aux_sym_raise_event_statement_token1] = ACTIONS(8501), + [sym_stop_statement] = ACTIONS(8501), + [sym_beep_statement] = ACTIONS(8501), + [aux_sym_unload_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token2] = ACTIONS(8501), + [aux_sym_def_type_statement_token3] = ACTIONS(8501), + [aux_sym_def_type_statement_token4] = ACTIONS(8501), + [aux_sym_def_type_statement_token5] = ACTIONS(8501), + [aux_sym_def_type_statement_token6] = ACTIONS(8501), + [aux_sym_def_type_statement_token7] = ACTIONS(8501), + [aux_sym_def_type_statement_token8] = ACTIONS(8501), + [aux_sym_def_type_statement_token9] = ACTIONS(8501), + [aux_sym_def_type_statement_token10] = ACTIONS(8501), + [aux_sym_def_type_statement_token11] = ACTIONS(8501), + [aux_sym_def_type_statement_token12] = ACTIONS(8501), + [aux_sym_def_type_statement_token13] = ACTIONS(8501), + [aux_sym_def_type_statement_token14] = ACTIONS(8501), + [aux_sym_call_statement_token1] = ACTIONS(8501), + [sym__ambiguous_call_statement] = ACTIONS(8501), + [aux_sym_addressof_expression_token1] = ACTIONS(8501), + [aux_sym_type_of_expression_token1] = ACTIONS(8501), + [aux_sym_unary_expression_token1] = ACTIONS(8501), + [sym_string_literal] = ACTIONS(8503), + [sym_number_literal] = ACTIONS(8503), + [aux_sym_boolean_literal_token1] = ACTIONS(8501), + [aux_sym_boolean_literal_token2] = ACTIONS(8501), + [sym_nothing_literal] = ACTIONS(8501), + [sym_null_literal] = ACTIONS(8501), + [sym_empty_literal] = ACTIONS(8501), + [sym_date_literal] = ACTIONS(8503), + [anon_sym_POUND] = ACTIONS(8501), + }, + [STATE(6714)] = { + [sym_identifier] = ACTIONS(8865), + [sym_newline] = ACTIONS(8867), + [anon_sym_COLON] = ACTIONS(8867), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8865), + [aux_sym_frm_property_statement_token1] = ACTIONS(8865), + [anon_sym_DOT] = ACTIONS(8865), + [anon_sym_BANG] = ACTIONS(8867), + [aux_sym__attribute_identifier_token1] = ACTIONS(8865), + [aux_sym_option_statement_token3] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8865), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8865), + [aux_sym_preprocessor_const_token1] = ACTIONS(8865), + [sym_static_modifier] = ACTIONS(8865), + [sym__dim_keyword] = ACTIONS(8865), + [sym__redim_keyword] = ACTIONS(8865), + [aux_sym_get_accessor_token1] = ACTIONS(8865), + [aux_sym_set_accessor_token1] = ACTIONS(8865), + [anon_sym_COMMA] = ACTIONS(8867), + [aux_sym_const_declaration_token1] = ACTIONS(8865), + [anon_sym_LPAREN] = ACTIONS(8867), + [aux_sym_as_type_clause_token2] = ACTIONS(8865), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8865), + [aux_sym_visibility_token1] = ACTIONS(8865), + [aux_sym_visibility_token2] = ACTIONS(8865), + [aux_sym_elseif_fragment_token1] = ACTIONS(8865), + [aux_sym_else_fragment_token1] = ACTIONS(8865), + [aux_sym_select_statement_token1] = ACTIONS(8865), + [aux_sym__for_header_token1] = ACTIONS(8865), + [aux_sym_do_statement_token1] = ACTIONS(8865), + [aux_sym_do_condition_token1] = ACTIONS(8865), + [aux_sym_with_statement_token1] = ACTIONS(8865), + [aux_sym_exit_statement_token1] = ACTIONS(8865), + [sym_end_statement] = ACTIONS(8867), + [aux_sym_on_goto_statement_token1] = ACTIONS(8865), + [aux_sym_on_goto_statement_token2] = ACTIONS(8865), + [aux_sym_on_error_statement_token2] = ACTIONS(8865), + [sym__ambiguous_redim_statement] = ACTIONS(8867), + [aux_sym_erase_statement_token1] = ACTIONS(8865), + [aux_sym_open_statement_token1] = ACTIONS(8865), + [aux_sym_file_mode_token2] = ACTIONS(8865), + [aux_sym_file_access_token2] = ACTIONS(8865), + [aux_sym_file_lock_token2] = ACTIONS(8865), + [aux_sym_print_statement_token1] = ACTIONS(8865), + [anon_sym_PLUS] = ACTIONS(8867), + [anon_sym_DASH] = ACTIONS(8865), + [anon_sym_QMARK] = ACTIONS(8867), + [aux_sym_close_statement_token1] = ACTIONS(8865), + [aux_sym_put_statement_token1] = ACTIONS(8865), + [aux_sym_unlock_statement_token1] = ACTIONS(8865), + [aux_sym_seek_statement_token1] = ACTIONS(8865), + [sym_reset_statement] = ACTIONS(8865), + [aux_sym_raise_event_statement_token1] = ACTIONS(8865), + [sym_stop_statement] = ACTIONS(8865), + [sym_beep_statement] = ACTIONS(8865), + [aux_sym_unload_statement_token1] = ACTIONS(8865), + [aux_sym_def_type_statement_token1] = ACTIONS(8865), + [aux_sym_def_type_statement_token2] = ACTIONS(8865), + [aux_sym_def_type_statement_token3] = ACTIONS(8865), + [aux_sym_def_type_statement_token4] = ACTIONS(8865), + [aux_sym_def_type_statement_token5] = ACTIONS(8865), + [aux_sym_def_type_statement_token6] = ACTIONS(8865), + [aux_sym_def_type_statement_token7] = ACTIONS(8865), + [aux_sym_def_type_statement_token8] = ACTIONS(8865), + [aux_sym_def_type_statement_token9] = ACTIONS(8865), + [aux_sym_def_type_statement_token10] = ACTIONS(8865), + [aux_sym_def_type_statement_token11] = ACTIONS(8865), + [aux_sym_def_type_statement_token12] = ACTIONS(8865), + [aux_sym_def_type_statement_token13] = ACTIONS(8865), + [aux_sym_def_type_statement_token14] = ACTIONS(8865), + [aux_sym_call_statement_token1] = ACTIONS(8865), + [sym__ambiguous_call_statement] = ACTIONS(8865), + [aux_sym_addressof_expression_token1] = ACTIONS(8865), + [aux_sym_type_of_expression_token1] = ACTIONS(8865), + [aux_sym_unary_expression_token1] = ACTIONS(8865), + [sym_string_literal] = ACTIONS(8867), + [sym_number_literal] = ACTIONS(8867), + [aux_sym_boolean_literal_token1] = ACTIONS(8865), + [aux_sym_boolean_literal_token2] = ACTIONS(8865), + [sym_nothing_literal] = ACTIONS(8865), + [sym_null_literal] = ACTIONS(8865), + [sym_empty_literal] = ACTIONS(8865), + [sym_date_literal] = ACTIONS(8867), + [anon_sym_POUND] = ACTIONS(8865), + }, + [STATE(6715)] = { + [sym_identifier] = ACTIONS(8509), + [sym_newline] = ACTIONS(8511), + [anon_sym_COLON] = ACTIONS(8511), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8509), + [aux_sym_frm_property_statement_token1] = ACTIONS(8509), + [anon_sym_DOT] = ACTIONS(8509), + [anon_sym_BANG] = ACTIONS(8511), + [aux_sym__attribute_identifier_token1] = ACTIONS(8509), + [aux_sym_option_statement_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8509), + [aux_sym_preprocessor_const_token1] = ACTIONS(8509), + [sym_static_modifier] = ACTIONS(8509), + [sym__dim_keyword] = ACTIONS(8509), + [sym__redim_keyword] = ACTIONS(8509), + [aux_sym_get_accessor_token1] = ACTIONS(8509), + [aux_sym_set_accessor_token1] = ACTIONS(8509), + [aux_sym_const_declaration_token1] = ACTIONS(8509), + [anon_sym_LPAREN] = ACTIONS(8511), + [aux_sym_as_type_clause_token2] = ACTIONS(8509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8509), + [aux_sym_visibility_token1] = ACTIONS(8509), + [aux_sym_visibility_token2] = ACTIONS(8509), + [aux_sym_elseif_fragment_token1] = ACTIONS(8509), + [aux_sym_else_fragment_token1] = ACTIONS(8509), + [aux_sym_select_statement_token1] = ACTIONS(8509), + [aux_sym__for_header_token1] = ACTIONS(8509), + [aux_sym_do_statement_token1] = ACTIONS(8509), + [aux_sym_do_condition_token1] = ACTIONS(8509), + [aux_sym_with_statement_token1] = ACTIONS(8509), + [aux_sym_exit_statement_token1] = ACTIONS(8509), + [sym_end_statement] = ACTIONS(8511), + [aux_sym_on_goto_statement_token1] = ACTIONS(8509), + [aux_sym_on_goto_statement_token2] = ACTIONS(8509), + [aux_sym_on_error_statement_token2] = ACTIONS(8509), + [sym__ambiguous_redim_statement] = ACTIONS(8511), + [aux_sym_erase_statement_token1] = ACTIONS(8509), + [aux_sym_open_statement_token1] = ACTIONS(8509), + [aux_sym_file_mode_token2] = ACTIONS(8509), + [aux_sym_file_access_token2] = ACTIONS(8509), + [aux_sym_file_lock_token2] = ACTIONS(8509), + [aux_sym_print_statement_token1] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(8511), + [anon_sym_DASH] = ACTIONS(8509), + [anon_sym_QMARK] = ACTIONS(8511), + [aux_sym_close_statement_token1] = ACTIONS(8509), + [aux_sym_put_statement_token1] = ACTIONS(8509), + [aux_sym_unlock_statement_token1] = ACTIONS(8509), + [aux_sym_seek_statement_token1] = ACTIONS(8509), + [sym_reset_statement] = ACTIONS(8509), + [aux_sym_raise_event_statement_token1] = ACTIONS(8509), + [sym_stop_statement] = ACTIONS(8509), + [sym_beep_statement] = ACTIONS(8509), + [aux_sym_unload_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token2] = ACTIONS(8509), + [aux_sym_def_type_statement_token3] = ACTIONS(8509), + [aux_sym_def_type_statement_token4] = ACTIONS(8509), + [aux_sym_def_type_statement_token5] = ACTIONS(8509), + [aux_sym_def_type_statement_token6] = ACTIONS(8509), + [aux_sym_def_type_statement_token7] = ACTIONS(8509), + [aux_sym_def_type_statement_token8] = ACTIONS(8509), + [aux_sym_def_type_statement_token9] = ACTIONS(8509), + [aux_sym_def_type_statement_token10] = ACTIONS(8509), + [aux_sym_def_type_statement_token11] = ACTIONS(8509), + [aux_sym_def_type_statement_token12] = ACTIONS(8509), + [aux_sym_def_type_statement_token13] = ACTIONS(8509), + [aux_sym_def_type_statement_token14] = ACTIONS(8509), + [aux_sym_call_statement_token1] = ACTIONS(8509), + [sym__ambiguous_call_statement] = ACTIONS(8509), + [aux_sym_addressof_expression_token1] = ACTIONS(8509), + [aux_sym_type_of_expression_token1] = ACTIONS(8509), + [aux_sym_unary_expression_token1] = ACTIONS(8509), + [sym_string_literal] = ACTIONS(8511), + [sym_number_literal] = ACTIONS(8511), + [aux_sym_boolean_literal_token1] = ACTIONS(8509), + [aux_sym_boolean_literal_token2] = ACTIONS(8509), + [sym_nothing_literal] = ACTIONS(8509), + [sym_null_literal] = ACTIONS(8509), + [sym_empty_literal] = ACTIONS(8509), + [sym_date_literal] = ACTIONS(8511), + [anon_sym_POUND] = ACTIONS(8509), + }, + [STATE(6716)] = { + [sym_identifier] = ACTIONS(9044), + [sym_newline] = ACTIONS(9046), + [anon_sym_COLON] = ACTIONS(9046), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9044), + [aux_sym_frm_property_statement_token1] = ACTIONS(9044), + [anon_sym_DOT] = ACTIONS(9044), + [anon_sym_BANG] = ACTIONS(9046), + [aux_sym__attribute_identifier_token1] = ACTIONS(9044), + [aux_sym_option_statement_token3] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9044), + [aux_sym_preprocessor_const_token1] = ACTIONS(9044), + [sym_static_modifier] = ACTIONS(9044), + [sym__dim_keyword] = ACTIONS(9044), + [sym__redim_keyword] = ACTIONS(9044), + [aux_sym_get_accessor_token1] = ACTIONS(9044), + [aux_sym_set_accessor_token1] = ACTIONS(9044), + [aux_sym_const_declaration_token1] = ACTIONS(9044), + [anon_sym_LPAREN] = ACTIONS(9046), + [aux_sym_as_type_clause_token2] = ACTIONS(9044), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9044), + [aux_sym_visibility_token1] = ACTIONS(9044), + [aux_sym_visibility_token2] = ACTIONS(9044), + [aux_sym_elseif_fragment_token1] = ACTIONS(9044), + [aux_sym_else_fragment_token1] = ACTIONS(9044), + [aux_sym_select_statement_token1] = ACTIONS(9044), + [aux_sym__for_header_token1] = ACTIONS(9044), + [aux_sym_do_statement_token1] = ACTIONS(9044), + [aux_sym_do_condition_token1] = ACTIONS(9044), + [aux_sym_while_statement_token1] = ACTIONS(9044), + [aux_sym_with_statement_token1] = ACTIONS(9044), + [aux_sym_exit_statement_token1] = ACTIONS(9044), + [sym_end_statement] = ACTIONS(9046), + [aux_sym_on_goto_statement_token1] = ACTIONS(9044), + [aux_sym_on_goto_statement_token2] = ACTIONS(9044), + [aux_sym_on_error_statement_token2] = ACTIONS(9044), + [sym__ambiguous_redim_statement] = ACTIONS(9046), + [aux_sym_erase_statement_token1] = ACTIONS(9044), + [aux_sym_open_statement_token1] = ACTIONS(9044), + [aux_sym_file_mode_token2] = ACTIONS(9044), + [aux_sym_file_access_token2] = ACTIONS(9044), + [aux_sym_file_lock_token2] = ACTIONS(9044), + [aux_sym_print_statement_token1] = ACTIONS(9044), + [anon_sym_PLUS] = ACTIONS(9046), + [anon_sym_DASH] = ACTIONS(9044), + [anon_sym_QMARK] = ACTIONS(9046), + [aux_sym_close_statement_token1] = ACTIONS(9044), + [aux_sym_put_statement_token1] = ACTIONS(9044), + [aux_sym_unlock_statement_token1] = ACTIONS(9044), + [aux_sym_seek_statement_token1] = ACTIONS(9044), + [sym_reset_statement] = ACTIONS(9044), + [aux_sym_raise_event_statement_token1] = ACTIONS(9044), + [sym_stop_statement] = ACTIONS(9044), + [sym_beep_statement] = ACTIONS(9044), + [aux_sym_unload_statement_token1] = ACTIONS(9044), + [aux_sym_def_type_statement_token1] = ACTIONS(9044), + [aux_sym_def_type_statement_token2] = ACTIONS(9044), + [aux_sym_def_type_statement_token3] = ACTIONS(9044), + [aux_sym_def_type_statement_token4] = ACTIONS(9044), + [aux_sym_def_type_statement_token5] = ACTIONS(9044), + [aux_sym_def_type_statement_token6] = ACTIONS(9044), + [aux_sym_def_type_statement_token7] = ACTIONS(9044), + [aux_sym_def_type_statement_token8] = ACTIONS(9044), + [aux_sym_def_type_statement_token9] = ACTIONS(9044), + [aux_sym_def_type_statement_token10] = ACTIONS(9044), + [aux_sym_def_type_statement_token11] = ACTIONS(9044), + [aux_sym_def_type_statement_token12] = ACTIONS(9044), + [aux_sym_def_type_statement_token13] = ACTIONS(9044), + [aux_sym_def_type_statement_token14] = ACTIONS(9044), + [aux_sym_call_statement_token1] = ACTIONS(9044), + [sym__ambiguous_call_statement] = ACTIONS(9044), + [aux_sym_addressof_expression_token1] = ACTIONS(9044), + [aux_sym_type_of_expression_token1] = ACTIONS(9044), + [aux_sym_unary_expression_token1] = ACTIONS(9044), + [sym_string_literal] = ACTIONS(9046), + [sym_number_literal] = ACTIONS(9046), + [aux_sym_boolean_literal_token1] = ACTIONS(9044), + [aux_sym_boolean_literal_token2] = ACTIONS(9044), + [sym_nothing_literal] = ACTIONS(9044), + [sym_null_literal] = ACTIONS(9044), + [sym_empty_literal] = ACTIONS(9044), + [sym_date_literal] = ACTIONS(9046), + [anon_sym_POUND] = ACTIONS(9044), + }, + [STATE(6717)] = { + [sym_identifier] = ACTIONS(9048), + [sym_newline] = ACTIONS(9050), + [anon_sym_COLON] = ACTIONS(9050), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9048), + [aux_sym_frm_property_statement_token1] = ACTIONS(9048), + [anon_sym_DOT] = ACTIONS(9048), + [anon_sym_BANG] = ACTIONS(9050), + [aux_sym__attribute_identifier_token1] = ACTIONS(9048), + [aux_sym_option_statement_token3] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9048), + [aux_sym_preprocessor_const_token1] = ACTIONS(9048), + [sym_static_modifier] = ACTIONS(9048), + [sym__dim_keyword] = ACTIONS(9048), + [sym__redim_keyword] = ACTIONS(9048), + [aux_sym_get_accessor_token1] = ACTIONS(9048), + [aux_sym_set_accessor_token1] = ACTIONS(9048), + [aux_sym_const_declaration_token1] = ACTIONS(9048), + [anon_sym_LPAREN] = ACTIONS(9050), + [aux_sym_as_type_clause_token2] = ACTIONS(9048), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9048), + [aux_sym_visibility_token1] = ACTIONS(9048), + [aux_sym_visibility_token2] = ACTIONS(9048), + [aux_sym_elseif_fragment_token1] = ACTIONS(9048), + [aux_sym_else_fragment_token1] = ACTIONS(9048), + [aux_sym_select_statement_token1] = ACTIONS(9048), + [aux_sym__for_header_token1] = ACTIONS(9048), + [aux_sym_do_statement_token1] = ACTIONS(9048), + [aux_sym_do_condition_token1] = ACTIONS(9048), + [aux_sym_while_statement_token1] = ACTIONS(9048), + [aux_sym_with_statement_token1] = ACTIONS(9048), + [aux_sym_exit_statement_token1] = ACTIONS(9048), + [sym_end_statement] = ACTIONS(9050), + [aux_sym_on_goto_statement_token1] = ACTIONS(9048), + [aux_sym_on_goto_statement_token2] = ACTIONS(9048), + [aux_sym_on_error_statement_token2] = ACTIONS(9048), + [sym__ambiguous_redim_statement] = ACTIONS(9050), + [aux_sym_erase_statement_token1] = ACTIONS(9048), + [aux_sym_open_statement_token1] = ACTIONS(9048), + [aux_sym_file_mode_token2] = ACTIONS(9048), + [aux_sym_file_access_token2] = ACTIONS(9048), + [aux_sym_file_lock_token2] = ACTIONS(9048), + [aux_sym_print_statement_token1] = ACTIONS(9048), + [anon_sym_PLUS] = ACTIONS(9050), + [anon_sym_DASH] = ACTIONS(9048), + [anon_sym_QMARK] = ACTIONS(9050), + [aux_sym_close_statement_token1] = ACTIONS(9048), + [aux_sym_put_statement_token1] = ACTIONS(9048), + [aux_sym_unlock_statement_token1] = ACTIONS(9048), + [aux_sym_seek_statement_token1] = ACTIONS(9048), + [sym_reset_statement] = ACTIONS(9048), + [aux_sym_raise_event_statement_token1] = ACTIONS(9048), + [sym_stop_statement] = ACTIONS(9048), + [sym_beep_statement] = ACTIONS(9048), + [aux_sym_unload_statement_token1] = ACTIONS(9048), + [aux_sym_def_type_statement_token1] = ACTIONS(9048), + [aux_sym_def_type_statement_token2] = ACTIONS(9048), + [aux_sym_def_type_statement_token3] = ACTIONS(9048), + [aux_sym_def_type_statement_token4] = ACTIONS(9048), + [aux_sym_def_type_statement_token5] = ACTIONS(9048), + [aux_sym_def_type_statement_token6] = ACTIONS(9048), + [aux_sym_def_type_statement_token7] = ACTIONS(9048), + [aux_sym_def_type_statement_token8] = ACTIONS(9048), + [aux_sym_def_type_statement_token9] = ACTIONS(9048), + [aux_sym_def_type_statement_token10] = ACTIONS(9048), + [aux_sym_def_type_statement_token11] = ACTIONS(9048), + [aux_sym_def_type_statement_token12] = ACTIONS(9048), + [aux_sym_def_type_statement_token13] = ACTIONS(9048), + [aux_sym_def_type_statement_token14] = ACTIONS(9048), + [aux_sym_call_statement_token1] = ACTIONS(9048), + [sym__ambiguous_call_statement] = ACTIONS(9048), + [aux_sym_addressof_expression_token1] = ACTIONS(9048), + [aux_sym_type_of_expression_token1] = ACTIONS(9048), + [aux_sym_unary_expression_token1] = ACTIONS(9048), + [sym_string_literal] = ACTIONS(9050), + [sym_number_literal] = ACTIONS(9050), + [aux_sym_boolean_literal_token1] = ACTIONS(9048), + [aux_sym_boolean_literal_token2] = ACTIONS(9048), + [sym_nothing_literal] = ACTIONS(9048), + [sym_null_literal] = ACTIONS(9048), + [sym_empty_literal] = ACTIONS(9048), + [sym_date_literal] = ACTIONS(9050), + [anon_sym_POUND] = ACTIONS(9048), + }, + [STATE(6718)] = { + [sym_identifier] = ACTIONS(8988), + [sym_newline] = ACTIONS(8990), + [anon_sym_COLON] = ACTIONS(8990), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8988), + [aux_sym_frm_property_statement_token1] = ACTIONS(8988), + [anon_sym_DOT] = ACTIONS(8988), + [anon_sym_BANG] = ACTIONS(8990), + [aux_sym__attribute_identifier_token1] = ACTIONS(8988), + [aux_sym_option_statement_token3] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8988), + [aux_sym_preprocessor_const_token1] = ACTIONS(8988), + [sym_static_modifier] = ACTIONS(8988), + [sym__dim_keyword] = ACTIONS(8988), + [sym__redim_keyword] = ACTIONS(8988), + [aux_sym_get_accessor_token1] = ACTIONS(8988), + [aux_sym_set_accessor_token1] = ACTIONS(8988), + [aux_sym_const_declaration_token1] = ACTIONS(8988), + [anon_sym_LPAREN] = ACTIONS(8990), + [aux_sym_as_type_clause_token2] = ACTIONS(8988), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8988), + [aux_sym_visibility_token1] = ACTIONS(8988), + [aux_sym_visibility_token2] = ACTIONS(8988), + [aux_sym_elseif_fragment_token1] = ACTIONS(8988), + [aux_sym_else_fragment_token1] = ACTIONS(8988), + [aux_sym_select_statement_token1] = ACTIONS(8988), + [aux_sym__for_header_token1] = ACTIONS(8988), + [aux_sym_do_statement_token1] = ACTIONS(8988), + [aux_sym_do_condition_token1] = ACTIONS(8988), + [aux_sym_while_statement_token1] = ACTIONS(8988), + [aux_sym_with_statement_token1] = ACTIONS(8988), + [aux_sym_exit_statement_token1] = ACTIONS(8988), + [sym_end_statement] = ACTIONS(8990), + [aux_sym_on_goto_statement_token1] = ACTIONS(8988), + [aux_sym_on_goto_statement_token2] = ACTIONS(8988), + [aux_sym_on_error_statement_token2] = ACTIONS(8988), + [sym__ambiguous_redim_statement] = ACTIONS(8990), + [aux_sym_erase_statement_token1] = ACTIONS(8988), + [aux_sym_open_statement_token1] = ACTIONS(8988), + [aux_sym_file_mode_token2] = ACTIONS(8988), + [aux_sym_file_access_token2] = ACTIONS(8988), + [aux_sym_file_lock_token2] = ACTIONS(8988), + [aux_sym_print_statement_token1] = ACTIONS(8988), + [anon_sym_PLUS] = ACTIONS(8990), + [anon_sym_DASH] = ACTIONS(8988), + [anon_sym_QMARK] = ACTIONS(8990), + [aux_sym_close_statement_token1] = ACTIONS(8988), + [aux_sym_put_statement_token1] = ACTIONS(8988), + [aux_sym_unlock_statement_token1] = ACTIONS(8988), + [aux_sym_seek_statement_token1] = ACTIONS(8988), + [sym_reset_statement] = ACTIONS(8988), + [aux_sym_raise_event_statement_token1] = ACTIONS(8988), + [sym_stop_statement] = ACTIONS(8988), + [sym_beep_statement] = ACTIONS(8988), + [aux_sym_unload_statement_token1] = ACTIONS(8988), + [aux_sym_def_type_statement_token1] = ACTIONS(8988), + [aux_sym_def_type_statement_token2] = ACTIONS(8988), + [aux_sym_def_type_statement_token3] = ACTIONS(8988), + [aux_sym_def_type_statement_token4] = ACTIONS(8988), + [aux_sym_def_type_statement_token5] = ACTIONS(8988), + [aux_sym_def_type_statement_token6] = ACTIONS(8988), + [aux_sym_def_type_statement_token7] = ACTIONS(8988), + [aux_sym_def_type_statement_token8] = ACTIONS(8988), + [aux_sym_def_type_statement_token9] = ACTIONS(8988), + [aux_sym_def_type_statement_token10] = ACTIONS(8988), + [aux_sym_def_type_statement_token11] = ACTIONS(8988), + [aux_sym_def_type_statement_token12] = ACTIONS(8988), + [aux_sym_def_type_statement_token13] = ACTIONS(8988), + [aux_sym_def_type_statement_token14] = ACTIONS(8988), + [aux_sym_call_statement_token1] = ACTIONS(8988), + [sym__ambiguous_call_statement] = ACTIONS(8988), + [aux_sym_addressof_expression_token1] = ACTIONS(8988), + [aux_sym_type_of_expression_token1] = ACTIONS(8988), + [aux_sym_unary_expression_token1] = ACTIONS(8988), + [sym_string_literal] = ACTIONS(8990), + [sym_number_literal] = ACTIONS(8990), + [aux_sym_boolean_literal_token1] = ACTIONS(8988), + [aux_sym_boolean_literal_token2] = ACTIONS(8988), + [sym_nothing_literal] = ACTIONS(8988), + [sym_null_literal] = ACTIONS(8988), + [sym_empty_literal] = ACTIONS(8988), + [sym_date_literal] = ACTIONS(8990), + [anon_sym_POUND] = ACTIONS(8988), + }, + [STATE(6719)] = { + [sym_identifier] = ACTIONS(8692), + [sym_newline] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(8694), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8692), + [aux_sym_frm_property_statement_token1] = ACTIONS(8692), + [anon_sym_DOT] = ACTIONS(8692), + [anon_sym_BANG] = ACTIONS(8694), + [aux_sym__attribute_identifier_token1] = ACTIONS(8692), + [aux_sym_option_statement_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8692), + [aux_sym_preprocessor_const_token1] = ACTIONS(8692), + [sym_static_modifier] = ACTIONS(8692), + [sym__dim_keyword] = ACTIONS(8692), + [sym__redim_keyword] = ACTIONS(8692), + [aux_sym_get_accessor_token1] = ACTIONS(8692), + [aux_sym_set_accessor_token1] = ACTIONS(8692), + [aux_sym_const_declaration_token1] = ACTIONS(8692), + [anon_sym_LPAREN] = ACTIONS(8694), + [aux_sym_as_type_clause_token2] = ACTIONS(8692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8692), + [aux_sym_visibility_token1] = ACTIONS(8692), + [aux_sym_visibility_token2] = ACTIONS(8692), + [aux_sym_elseif_fragment_token1] = ACTIONS(8692), + [aux_sym_else_fragment_token1] = ACTIONS(11005), + [aux_sym_select_statement_token1] = ACTIONS(8692), + [aux_sym_select_statement_token2] = ACTIONS(8692), + [aux_sym__for_header_token1] = ACTIONS(8692), + [aux_sym_do_statement_token1] = ACTIONS(8692), + [aux_sym_do_condition_token1] = ACTIONS(8692), + [aux_sym_with_statement_token1] = ACTIONS(8692), + [aux_sym_exit_statement_token1] = ACTIONS(8692), + [sym_end_statement] = ACTIONS(8694), + [aux_sym_on_goto_statement_token1] = ACTIONS(8692), + [aux_sym_on_goto_statement_token2] = ACTIONS(8692), + [aux_sym_on_error_statement_token2] = ACTIONS(8692), + [sym__ambiguous_redim_statement] = ACTIONS(8694), + [aux_sym_erase_statement_token1] = ACTIONS(8692), + [aux_sym_open_statement_token1] = ACTIONS(8692), + [aux_sym_file_mode_token2] = ACTIONS(8692), + [aux_sym_file_access_token2] = ACTIONS(8692), + [aux_sym_file_lock_token2] = ACTIONS(8692), + [aux_sym_print_statement_token1] = ACTIONS(8692), + [anon_sym_PLUS] = ACTIONS(8694), + [anon_sym_DASH] = ACTIONS(8692), + [anon_sym_QMARK] = ACTIONS(8694), + [aux_sym_close_statement_token1] = ACTIONS(8692), + [aux_sym_put_statement_token1] = ACTIONS(8692), + [aux_sym_unlock_statement_token1] = ACTIONS(8692), + [aux_sym_seek_statement_token1] = ACTIONS(8692), + [sym_reset_statement] = ACTIONS(8692), + [aux_sym_raise_event_statement_token1] = ACTIONS(8692), + [sym_stop_statement] = ACTIONS(8692), + [sym_beep_statement] = ACTIONS(8692), + [aux_sym_unload_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token2] = ACTIONS(8692), + [aux_sym_def_type_statement_token3] = ACTIONS(8692), + [aux_sym_def_type_statement_token4] = ACTIONS(8692), + [aux_sym_def_type_statement_token5] = ACTIONS(8692), + [aux_sym_def_type_statement_token6] = ACTIONS(8692), + [aux_sym_def_type_statement_token7] = ACTIONS(8692), + [aux_sym_def_type_statement_token8] = ACTIONS(8692), + [aux_sym_def_type_statement_token9] = ACTIONS(8692), + [aux_sym_def_type_statement_token10] = ACTIONS(8692), + [aux_sym_def_type_statement_token11] = ACTIONS(8692), + [aux_sym_def_type_statement_token12] = ACTIONS(8692), + [aux_sym_def_type_statement_token13] = ACTIONS(8692), + [aux_sym_def_type_statement_token14] = ACTIONS(8692), + [aux_sym_call_statement_token1] = ACTIONS(8692), + [sym__ambiguous_call_statement] = ACTIONS(8692), + [aux_sym_addressof_expression_token1] = ACTIONS(8692), + [aux_sym_type_of_expression_token1] = ACTIONS(8692), + [aux_sym_unary_expression_token1] = ACTIONS(8692), + [sym_string_literal] = ACTIONS(8694), + [sym_number_literal] = ACTIONS(8694), + [aux_sym_boolean_literal_token1] = ACTIONS(8692), + [aux_sym_boolean_literal_token2] = ACTIONS(8692), + [sym_nothing_literal] = ACTIONS(8692), + [sym_null_literal] = ACTIONS(8692), + [sym_empty_literal] = ACTIONS(8692), + [sym_date_literal] = ACTIONS(8694), + [anon_sym_POUND] = ACTIONS(8692), + }, + [STATE(6720)] = { + [sym_identifier] = ACTIONS(9340), + [sym_newline] = ACTIONS(9342), + [anon_sym_COLON] = ACTIONS(9342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9340), + [aux_sym_frm_property_statement_token1] = ACTIONS(9340), + [anon_sym_DOT] = ACTIONS(9340), + [anon_sym_BANG] = ACTIONS(9342), + [aux_sym__attribute_identifier_token1] = ACTIONS(9340), + [aux_sym_option_statement_token3] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9340), + [aux_sym_preprocessor_const_token1] = ACTIONS(9340), + [sym_static_modifier] = ACTIONS(9340), + [sym__dim_keyword] = ACTIONS(9340), + [sym__redim_keyword] = ACTIONS(9340), + [aux_sym_get_accessor_token1] = ACTIONS(9340), + [aux_sym_set_accessor_token1] = ACTIONS(9340), + [aux_sym_const_declaration_token1] = ACTIONS(9340), + [anon_sym_LPAREN] = ACTIONS(9342), + [aux_sym_as_type_clause_token2] = ACTIONS(9340), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9340), + [aux_sym_visibility_token1] = ACTIONS(9340), + [aux_sym_visibility_token2] = ACTIONS(9340), + [aux_sym_elseif_fragment_token1] = ACTIONS(9340), + [aux_sym_else_fragment_token1] = ACTIONS(9340), + [aux_sym_select_statement_token1] = ACTIONS(9340), + [aux_sym_select_statement_token2] = ACTIONS(9340), + [aux_sym__for_header_token1] = ACTIONS(9340), + [aux_sym_do_statement_token1] = ACTIONS(9340), + [aux_sym_do_condition_token1] = ACTIONS(9340), + [aux_sym_with_statement_token1] = ACTIONS(9340), + [aux_sym_exit_statement_token1] = ACTIONS(9340), + [sym_end_statement] = ACTIONS(9342), + [aux_sym_on_goto_statement_token1] = ACTIONS(9340), + [aux_sym_on_goto_statement_token2] = ACTIONS(9340), + [aux_sym_on_error_statement_token2] = ACTIONS(9340), + [sym__ambiguous_redim_statement] = ACTIONS(9342), + [aux_sym_erase_statement_token1] = ACTIONS(9340), + [aux_sym_open_statement_token1] = ACTIONS(9340), + [aux_sym_file_mode_token2] = ACTIONS(9340), + [aux_sym_file_access_token2] = ACTIONS(9340), + [aux_sym_file_lock_token2] = ACTIONS(9340), + [aux_sym_print_statement_token1] = ACTIONS(9340), + [anon_sym_PLUS] = ACTIONS(9342), + [anon_sym_DASH] = ACTIONS(9340), + [anon_sym_QMARK] = ACTIONS(9342), + [aux_sym_close_statement_token1] = ACTIONS(9340), + [aux_sym_put_statement_token1] = ACTIONS(9340), + [aux_sym_unlock_statement_token1] = ACTIONS(9340), + [aux_sym_seek_statement_token1] = ACTIONS(9340), + [sym_reset_statement] = ACTIONS(9340), + [aux_sym_raise_event_statement_token1] = ACTIONS(9340), + [sym_stop_statement] = ACTIONS(9340), + [sym_beep_statement] = ACTIONS(9340), + [aux_sym_unload_statement_token1] = ACTIONS(9340), + [aux_sym_def_type_statement_token1] = ACTIONS(9340), + [aux_sym_def_type_statement_token2] = ACTIONS(9340), + [aux_sym_def_type_statement_token3] = ACTIONS(9340), + [aux_sym_def_type_statement_token4] = ACTIONS(9340), + [aux_sym_def_type_statement_token5] = ACTIONS(9340), + [aux_sym_def_type_statement_token6] = ACTIONS(9340), + [aux_sym_def_type_statement_token7] = ACTIONS(9340), + [aux_sym_def_type_statement_token8] = ACTIONS(9340), + [aux_sym_def_type_statement_token9] = ACTIONS(9340), + [aux_sym_def_type_statement_token10] = ACTIONS(9340), + [aux_sym_def_type_statement_token11] = ACTIONS(9340), + [aux_sym_def_type_statement_token12] = ACTIONS(9340), + [aux_sym_def_type_statement_token13] = ACTIONS(9340), + [aux_sym_def_type_statement_token14] = ACTIONS(9340), + [aux_sym_call_statement_token1] = ACTIONS(9340), + [sym__ambiguous_call_statement] = ACTIONS(9340), + [aux_sym_addressof_expression_token1] = ACTIONS(9340), + [aux_sym_type_of_expression_token1] = ACTIONS(9340), + [aux_sym_unary_expression_token1] = ACTIONS(9340), + [sym_string_literal] = ACTIONS(9342), + [sym_number_literal] = ACTIONS(9342), + [aux_sym_boolean_literal_token1] = ACTIONS(9340), + [aux_sym_boolean_literal_token2] = ACTIONS(9340), + [sym_nothing_literal] = ACTIONS(9340), + [sym_null_literal] = ACTIONS(9340), + [sym_empty_literal] = ACTIONS(9340), + [sym_date_literal] = ACTIONS(9342), + [anon_sym_POUND] = ACTIONS(9340), + }, + [STATE(6721)] = { + [sym_identifier] = ACTIONS(9427), + [sym_newline] = ACTIONS(9429), + [anon_sym_COLON] = ACTIONS(9429), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9427), + [aux_sym_frm_property_statement_token1] = ACTIONS(9427), + [anon_sym_DOT] = ACTIONS(9427), + [anon_sym_BANG] = ACTIONS(9429), + [aux_sym__attribute_identifier_token1] = ACTIONS(9427), + [aux_sym_option_statement_token3] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9427), + [aux_sym_preprocessor_const_token1] = ACTIONS(9427), + [sym_static_modifier] = ACTIONS(9427), + [sym__dim_keyword] = ACTIONS(9427), + [sym__redim_keyword] = ACTIONS(9427), + [aux_sym_get_accessor_token1] = ACTIONS(9427), + [aux_sym_set_accessor_token1] = ACTIONS(9427), + [aux_sym_const_declaration_token1] = ACTIONS(9427), + [anon_sym_LPAREN] = ACTIONS(9429), + [aux_sym_as_type_clause_token2] = ACTIONS(9427), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9427), + [aux_sym_visibility_token1] = ACTIONS(9427), + [aux_sym_visibility_token2] = ACTIONS(9427), + [aux_sym_elseif_fragment_token1] = ACTIONS(9427), + [aux_sym_else_fragment_token1] = ACTIONS(9427), + [aux_sym_select_statement_token1] = ACTIONS(9427), + [aux_sym__for_header_token1] = ACTIONS(9427), + [aux_sym_do_statement_token1] = ACTIONS(9427), + [aux_sym_do_statement_token2] = ACTIONS(9427), + [aux_sym_do_condition_token1] = ACTIONS(9427), + [aux_sym_with_statement_token1] = ACTIONS(9427), + [aux_sym_exit_statement_token1] = ACTIONS(9427), + [sym_end_statement] = ACTIONS(9429), + [aux_sym_on_goto_statement_token1] = ACTIONS(9427), + [aux_sym_on_goto_statement_token2] = ACTIONS(9427), + [aux_sym_on_error_statement_token2] = ACTIONS(9427), + [sym__ambiguous_redim_statement] = ACTIONS(9429), + [aux_sym_erase_statement_token1] = ACTIONS(9427), + [aux_sym_open_statement_token1] = ACTIONS(9427), + [aux_sym_file_mode_token2] = ACTIONS(9427), + [aux_sym_file_access_token2] = ACTIONS(9427), + [aux_sym_file_lock_token2] = ACTIONS(9427), + [aux_sym_print_statement_token1] = ACTIONS(9427), + [anon_sym_PLUS] = ACTIONS(9429), + [anon_sym_DASH] = ACTIONS(9427), + [anon_sym_QMARK] = ACTIONS(9429), + [aux_sym_close_statement_token1] = ACTIONS(9427), + [aux_sym_put_statement_token1] = ACTIONS(9427), + [aux_sym_unlock_statement_token1] = ACTIONS(9427), + [aux_sym_seek_statement_token1] = ACTIONS(9427), + [sym_reset_statement] = ACTIONS(9427), + [aux_sym_raise_event_statement_token1] = ACTIONS(9427), + [sym_stop_statement] = ACTIONS(9427), + [sym_beep_statement] = ACTIONS(9427), + [aux_sym_unload_statement_token1] = ACTIONS(9427), + [aux_sym_def_type_statement_token1] = ACTIONS(9427), + [aux_sym_def_type_statement_token2] = ACTIONS(9427), + [aux_sym_def_type_statement_token3] = ACTIONS(9427), + [aux_sym_def_type_statement_token4] = ACTIONS(9427), + [aux_sym_def_type_statement_token5] = ACTIONS(9427), + [aux_sym_def_type_statement_token6] = ACTIONS(9427), + [aux_sym_def_type_statement_token7] = ACTIONS(9427), + [aux_sym_def_type_statement_token8] = ACTIONS(9427), + [aux_sym_def_type_statement_token9] = ACTIONS(9427), + [aux_sym_def_type_statement_token10] = ACTIONS(9427), + [aux_sym_def_type_statement_token11] = ACTIONS(9427), + [aux_sym_def_type_statement_token12] = ACTIONS(9427), + [aux_sym_def_type_statement_token13] = ACTIONS(9427), + [aux_sym_def_type_statement_token14] = ACTIONS(9427), + [aux_sym_call_statement_token1] = ACTIONS(9427), + [sym__ambiguous_call_statement] = ACTIONS(9427), + [aux_sym_addressof_expression_token1] = ACTIONS(9427), + [aux_sym_type_of_expression_token1] = ACTIONS(9427), + [aux_sym_unary_expression_token1] = ACTIONS(9427), + [sym_string_literal] = ACTIONS(9429), + [sym_number_literal] = ACTIONS(9429), + [aux_sym_boolean_literal_token1] = ACTIONS(9427), + [aux_sym_boolean_literal_token2] = ACTIONS(9427), + [sym_nothing_literal] = ACTIONS(9427), + [sym_null_literal] = ACTIONS(9427), + [sym_empty_literal] = ACTIONS(9427), + [sym_date_literal] = ACTIONS(9429), + [anon_sym_POUND] = ACTIONS(9427), + }, + [STATE(6722)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6904), + [sym_identifier] = ACTIONS(8813), + [sym_newline] = ACTIONS(8815), + [anon_sym_COLON] = ACTIONS(11113), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8813), + [aux_sym_frm_property_statement_token1] = ACTIONS(8813), + [anon_sym_DOT] = ACTIONS(8813), + [anon_sym_BANG] = ACTIONS(8815), + [aux_sym__attribute_identifier_token1] = ACTIONS(8813), + [aux_sym_option_statement_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8813), + [aux_sym_preprocessor_const_token1] = ACTIONS(8813), + [sym_static_modifier] = ACTIONS(8813), + [sym__dim_keyword] = ACTIONS(8813), + [sym__redim_keyword] = ACTIONS(8813), + [aux_sym_get_accessor_token1] = ACTIONS(8813), + [aux_sym_set_accessor_token1] = ACTIONS(8813), + [aux_sym_const_declaration_token1] = ACTIONS(8813), + [anon_sym_LPAREN] = ACTIONS(8815), + [aux_sym_as_type_clause_token2] = ACTIONS(8813), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8813), + [aux_sym_visibility_token1] = ACTIONS(8813), + [aux_sym_visibility_token2] = ACTIONS(8813), + [aux_sym_elseif_fragment_token1] = ACTIONS(8813), + [aux_sym_else_fragment_token1] = ACTIONS(8813), + [aux_sym_select_statement_token1] = ACTIONS(8813), + [aux_sym__for_header_token1] = ACTIONS(8813), + [aux_sym_do_statement_token1] = ACTIONS(8813), + [aux_sym_do_condition_token1] = ACTIONS(8813), + [aux_sym_with_statement_token1] = ACTIONS(8813), + [aux_sym_exit_statement_token1] = ACTIONS(8813), + [sym_end_statement] = ACTIONS(8815), + [aux_sym_on_goto_statement_token1] = ACTIONS(8813), + [aux_sym_on_goto_statement_token2] = ACTIONS(8813), + [aux_sym_on_error_statement_token2] = ACTIONS(8813), + [sym__ambiguous_redim_statement] = ACTIONS(8815), + [aux_sym_erase_statement_token1] = ACTIONS(8813), + [aux_sym_open_statement_token1] = ACTIONS(8813), + [aux_sym_file_mode_token2] = ACTIONS(8813), + [aux_sym_file_access_token2] = ACTIONS(8813), + [aux_sym_file_lock_token2] = ACTIONS(8813), + [aux_sym_print_statement_token1] = ACTIONS(8813), + [anon_sym_PLUS] = ACTIONS(8815), + [anon_sym_DASH] = ACTIONS(8813), + [anon_sym_QMARK] = ACTIONS(8815), + [aux_sym_close_statement_token1] = ACTIONS(8813), + [aux_sym_put_statement_token1] = ACTIONS(8813), + [aux_sym_unlock_statement_token1] = ACTIONS(8813), + [aux_sym_seek_statement_token1] = ACTIONS(8813), + [sym_reset_statement] = ACTIONS(8813), + [aux_sym_raise_event_statement_token1] = ACTIONS(8813), + [sym_stop_statement] = ACTIONS(8813), + [sym_beep_statement] = ACTIONS(8813), + [aux_sym_unload_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token2] = ACTIONS(8813), + [aux_sym_def_type_statement_token3] = ACTIONS(8813), + [aux_sym_def_type_statement_token4] = ACTIONS(8813), + [aux_sym_def_type_statement_token5] = ACTIONS(8813), + [aux_sym_def_type_statement_token6] = ACTIONS(8813), + [aux_sym_def_type_statement_token7] = ACTIONS(8813), + [aux_sym_def_type_statement_token8] = ACTIONS(8813), + [aux_sym_def_type_statement_token9] = ACTIONS(8813), + [aux_sym_def_type_statement_token10] = ACTIONS(8813), + [aux_sym_def_type_statement_token11] = ACTIONS(8813), + [aux_sym_def_type_statement_token12] = ACTIONS(8813), + [aux_sym_def_type_statement_token13] = ACTIONS(8813), + [aux_sym_def_type_statement_token14] = ACTIONS(8813), + [aux_sym_call_statement_token1] = ACTIONS(8813), + [sym__ambiguous_call_statement] = ACTIONS(8813), + [aux_sym_addressof_expression_token1] = ACTIONS(8813), + [aux_sym_type_of_expression_token1] = ACTIONS(8813), + [aux_sym_unary_expression_token1] = ACTIONS(8813), + [sym_string_literal] = ACTIONS(8815), + [sym_number_literal] = ACTIONS(8815), + [aux_sym_boolean_literal_token1] = ACTIONS(8813), + [aux_sym_boolean_literal_token2] = ACTIONS(8813), + [sym_nothing_literal] = ACTIONS(8813), + [sym_null_literal] = ACTIONS(8813), + [sym_empty_literal] = ACTIONS(8813), + [sym_date_literal] = ACTIONS(8815), + [anon_sym_POUND] = ACTIONS(8813), + }, + [STATE(6723)] = { + [sym_identifier] = ACTIONS(8847), + [sym_newline] = ACTIONS(8849), + [anon_sym_COLON] = ACTIONS(8849), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8847), + [aux_sym_frm_property_statement_token1] = ACTIONS(8847), + [anon_sym_DOT] = ACTIONS(8847), + [anon_sym_BANG] = ACTIONS(8849), + [aux_sym__attribute_identifier_token1] = ACTIONS(8847), + [aux_sym_option_statement_token3] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8847), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8847), + [aux_sym_preprocessor_const_token1] = ACTIONS(8847), + [sym_static_modifier] = ACTIONS(8847), + [sym__dim_keyword] = ACTIONS(8847), + [sym__redim_keyword] = ACTIONS(8847), + [aux_sym_get_accessor_token1] = ACTIONS(8847), + [aux_sym_set_accessor_token1] = ACTIONS(8847), + [anon_sym_COMMA] = ACTIONS(8849), + [aux_sym_const_declaration_token1] = ACTIONS(8847), + [anon_sym_LPAREN] = ACTIONS(8849), + [aux_sym_as_type_clause_token2] = ACTIONS(8847), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8847), + [aux_sym_visibility_token1] = ACTIONS(8847), + [aux_sym_visibility_token2] = ACTIONS(8847), + [aux_sym_elseif_fragment_token1] = ACTIONS(8847), + [aux_sym_else_fragment_token1] = ACTIONS(8847), + [aux_sym_select_statement_token1] = ACTIONS(8847), + [aux_sym__for_header_token1] = ACTIONS(8847), + [aux_sym_do_statement_token1] = ACTIONS(8847), + [aux_sym_do_condition_token1] = ACTIONS(8847), + [aux_sym_with_statement_token1] = ACTIONS(8847), + [aux_sym_exit_statement_token1] = ACTIONS(8847), + [sym_end_statement] = ACTIONS(8849), + [aux_sym_on_goto_statement_token1] = ACTIONS(8847), + [aux_sym_on_goto_statement_token2] = ACTIONS(8847), + [aux_sym_on_error_statement_token2] = ACTIONS(8847), + [sym__ambiguous_redim_statement] = ACTIONS(8849), + [aux_sym_erase_statement_token1] = ACTIONS(8847), + [aux_sym_open_statement_token1] = ACTIONS(8847), + [aux_sym_file_mode_token2] = ACTIONS(8847), + [aux_sym_file_access_token2] = ACTIONS(8847), + [aux_sym_file_lock_token2] = ACTIONS(8847), + [aux_sym_print_statement_token1] = ACTIONS(8847), + [anon_sym_PLUS] = ACTIONS(8849), + [anon_sym_DASH] = ACTIONS(11130), + [anon_sym_QMARK] = ACTIONS(8849), + [aux_sym_close_statement_token1] = ACTIONS(8847), + [aux_sym_put_statement_token1] = ACTIONS(8847), + [aux_sym_unlock_statement_token1] = ACTIONS(8847), + [aux_sym_seek_statement_token1] = ACTIONS(8847), + [sym_reset_statement] = ACTIONS(8847), + [aux_sym_raise_event_statement_token1] = ACTIONS(8847), + [sym_stop_statement] = ACTIONS(8847), + [sym_beep_statement] = ACTIONS(8847), + [aux_sym_unload_statement_token1] = ACTIONS(8847), + [aux_sym_def_type_statement_token1] = ACTIONS(8847), + [aux_sym_def_type_statement_token2] = ACTIONS(8847), + [aux_sym_def_type_statement_token3] = ACTIONS(8847), + [aux_sym_def_type_statement_token4] = ACTIONS(8847), + [aux_sym_def_type_statement_token5] = ACTIONS(8847), + [aux_sym_def_type_statement_token6] = ACTIONS(8847), + [aux_sym_def_type_statement_token7] = ACTIONS(8847), + [aux_sym_def_type_statement_token8] = ACTIONS(8847), + [aux_sym_def_type_statement_token9] = ACTIONS(8847), + [aux_sym_def_type_statement_token10] = ACTIONS(8847), + [aux_sym_def_type_statement_token11] = ACTIONS(8847), + [aux_sym_def_type_statement_token12] = ACTIONS(8847), + [aux_sym_def_type_statement_token13] = ACTIONS(8847), + [aux_sym_def_type_statement_token14] = ACTIONS(8847), + [aux_sym_call_statement_token1] = ACTIONS(8847), + [sym__ambiguous_call_statement] = ACTIONS(8847), + [aux_sym_addressof_expression_token1] = ACTIONS(8847), + [aux_sym_type_of_expression_token1] = ACTIONS(8847), + [aux_sym_unary_expression_token1] = ACTIONS(8847), + [sym_string_literal] = ACTIONS(8849), + [sym_number_literal] = ACTIONS(8849), + [aux_sym_boolean_literal_token1] = ACTIONS(8847), + [aux_sym_boolean_literal_token2] = ACTIONS(8847), + [sym_nothing_literal] = ACTIONS(8847), + [sym_null_literal] = ACTIONS(8847), + [sym_empty_literal] = ACTIONS(8847), + [sym_date_literal] = ACTIONS(8849), + [anon_sym_POUND] = ACTIONS(8847), + }, + [STATE(6724)] = { + [sym_identifier] = ACTIONS(9264), + [sym_newline] = ACTIONS(9266), + [anon_sym_COLON] = ACTIONS(9266), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9264), + [aux_sym_frm_property_statement_token1] = ACTIONS(9264), + [anon_sym_DOT] = ACTIONS(9264), + [anon_sym_BANG] = ACTIONS(9266), + [aux_sym__attribute_identifier_token1] = ACTIONS(9264), + [aux_sym_option_statement_token3] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9264), + [aux_sym_preprocessor_const_token1] = ACTIONS(9264), + [sym_static_modifier] = ACTIONS(9264), + [sym__dim_keyword] = ACTIONS(9264), + [sym__redim_keyword] = ACTIONS(9264), + [aux_sym_get_accessor_token1] = ACTIONS(9264), + [aux_sym_set_accessor_token1] = ACTIONS(9264), + [aux_sym_const_declaration_token1] = ACTIONS(9264), + [anon_sym_LPAREN] = ACTIONS(9266), + [aux_sym_as_type_clause_token2] = ACTIONS(9264), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9264), + [aux_sym_visibility_token1] = ACTIONS(9264), + [aux_sym_visibility_token2] = ACTIONS(9264), + [aux_sym_elseif_fragment_token1] = ACTIONS(9264), + [aux_sym_else_fragment_token1] = ACTIONS(9264), + [aux_sym_select_statement_token1] = ACTIONS(9264), + [aux_sym__for_header_token1] = ACTIONS(9264), + [aux_sym_do_statement_token1] = ACTIONS(9264), + [aux_sym_do_condition_token1] = ACTIONS(9264), + [aux_sym_with_statement_token1] = ACTIONS(9264), + [aux_sym_exit_statement_token1] = ACTIONS(9264), + [sym_end_statement] = ACTIONS(9266), + [aux_sym_on_goto_statement_token1] = ACTIONS(9264), + [aux_sym_on_goto_statement_token2] = ACTIONS(9264), + [aux_sym_on_error_statement_token2] = ACTIONS(9264), + [sym__ambiguous_redim_statement] = ACTIONS(9266), + [aux_sym_erase_statement_token1] = ACTIONS(9264), + [aux_sym_open_statement_token1] = ACTIONS(9264), + [aux_sym_file_mode_token2] = ACTIONS(9264), + [aux_sym_file_access_token2] = ACTIONS(9264), + [aux_sym_file_lock_token2] = ACTIONS(9264), + [aux_sym_print_statement_token1] = ACTIONS(9264), + [anon_sym_PLUS] = ACTIONS(9266), + [anon_sym_DASH] = ACTIONS(9264), + [anon_sym_QMARK] = ACTIONS(9266), + [aux_sym_close_statement_token1] = ACTIONS(9264), + [aux_sym_put_statement_token1] = ACTIONS(9264), + [aux_sym_unlock_statement_token1] = ACTIONS(9264), + [aux_sym_seek_statement_token1] = ACTIONS(9264), + [sym_reset_statement] = ACTIONS(9264), + [aux_sym_raise_event_statement_token1] = ACTIONS(9264), + [sym_stop_statement] = ACTIONS(9264), + [sym_beep_statement] = ACTIONS(9264), + [aux_sym_unload_statement_token1] = ACTIONS(9264), + [aux_sym_def_type_statement_token1] = ACTIONS(9264), + [aux_sym_def_type_statement_token2] = ACTIONS(9264), + [aux_sym_def_type_statement_token3] = ACTIONS(9264), + [aux_sym_def_type_statement_token4] = ACTIONS(9264), + [aux_sym_def_type_statement_token5] = ACTIONS(9264), + [aux_sym_def_type_statement_token6] = ACTIONS(9264), + [aux_sym_def_type_statement_token7] = ACTIONS(9264), + [aux_sym_def_type_statement_token8] = ACTIONS(9264), + [aux_sym_def_type_statement_token9] = ACTIONS(9264), + [aux_sym_def_type_statement_token10] = ACTIONS(9264), + [aux_sym_def_type_statement_token11] = ACTIONS(9264), + [aux_sym_def_type_statement_token12] = ACTIONS(9264), + [aux_sym_def_type_statement_token13] = ACTIONS(9264), + [aux_sym_def_type_statement_token14] = ACTIONS(9264), + [aux_sym_call_statement_token1] = ACTIONS(9264), + [sym__ambiguous_call_statement] = ACTIONS(9264), + [aux_sym_addressof_expression_token1] = ACTIONS(9264), + [aux_sym_type_of_expression_token1] = ACTIONS(9264), + [aux_sym_unary_expression_token1] = ACTIONS(9264), + [sym_string_literal] = ACTIONS(9266), + [sym_number_literal] = ACTIONS(9266), + [aux_sym_boolean_literal_token1] = ACTIONS(9264), + [aux_sym_boolean_literal_token2] = ACTIONS(9264), + [sym_nothing_literal] = ACTIONS(9264), + [sym_null_literal] = ACTIONS(9264), + [sym_empty_literal] = ACTIONS(9264), + [sym_date_literal] = ACTIONS(9266), + [anon_sym_POUND] = ACTIONS(9264), + }, + [STATE(6725)] = { + [sym_identifier] = ACTIONS(9344), + [sym_newline] = ACTIONS(9346), + [anon_sym_COLON] = ACTIONS(9346), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9344), + [aux_sym_frm_property_statement_token1] = ACTIONS(9344), + [anon_sym_DOT] = ACTIONS(9344), + [anon_sym_BANG] = ACTIONS(9346), + [aux_sym__attribute_identifier_token1] = ACTIONS(9344), + [aux_sym_option_statement_token3] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9344), + [aux_sym_preprocessor_const_token1] = ACTIONS(9344), + [sym_static_modifier] = ACTIONS(9344), + [sym__dim_keyword] = ACTIONS(9344), + [sym__redim_keyword] = ACTIONS(9344), + [aux_sym_get_accessor_token1] = ACTIONS(9344), + [aux_sym_set_accessor_token1] = ACTIONS(9344), + [aux_sym_const_declaration_token1] = ACTIONS(9344), + [anon_sym_LPAREN] = ACTIONS(9346), + [aux_sym_as_type_clause_token2] = ACTIONS(9344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9344), + [aux_sym_visibility_token1] = ACTIONS(9344), + [aux_sym_visibility_token2] = ACTIONS(9344), + [aux_sym_elseif_fragment_token1] = ACTIONS(9344), + [aux_sym_else_fragment_token1] = ACTIONS(9344), + [aux_sym_select_statement_token1] = ACTIONS(9344), + [aux_sym_select_statement_token2] = ACTIONS(9344), + [aux_sym__for_header_token1] = ACTIONS(9344), + [aux_sym_do_statement_token1] = ACTIONS(9344), + [aux_sym_do_condition_token1] = ACTIONS(9344), + [aux_sym_with_statement_token1] = ACTIONS(9344), + [aux_sym_exit_statement_token1] = ACTIONS(9344), + [sym_end_statement] = ACTIONS(9346), + [aux_sym_on_goto_statement_token1] = ACTIONS(9344), + [aux_sym_on_goto_statement_token2] = ACTIONS(9344), + [aux_sym_on_error_statement_token2] = ACTIONS(9344), + [sym__ambiguous_redim_statement] = ACTIONS(9346), + [aux_sym_erase_statement_token1] = ACTIONS(9344), + [aux_sym_open_statement_token1] = ACTIONS(9344), + [aux_sym_file_mode_token2] = ACTIONS(9344), + [aux_sym_file_access_token2] = ACTIONS(9344), + [aux_sym_file_lock_token2] = ACTIONS(9344), + [aux_sym_print_statement_token1] = ACTIONS(9344), + [anon_sym_PLUS] = ACTIONS(9346), + [anon_sym_DASH] = ACTIONS(9344), + [anon_sym_QMARK] = ACTIONS(9346), + [aux_sym_close_statement_token1] = ACTIONS(9344), + [aux_sym_put_statement_token1] = ACTIONS(9344), + [aux_sym_unlock_statement_token1] = ACTIONS(9344), + [aux_sym_seek_statement_token1] = ACTIONS(9344), + [sym_reset_statement] = ACTIONS(9344), + [aux_sym_raise_event_statement_token1] = ACTIONS(9344), + [sym_stop_statement] = ACTIONS(9344), + [sym_beep_statement] = ACTIONS(9344), + [aux_sym_unload_statement_token1] = ACTIONS(9344), + [aux_sym_def_type_statement_token1] = ACTIONS(9344), + [aux_sym_def_type_statement_token2] = ACTIONS(9344), + [aux_sym_def_type_statement_token3] = ACTIONS(9344), + [aux_sym_def_type_statement_token4] = ACTIONS(9344), + [aux_sym_def_type_statement_token5] = ACTIONS(9344), + [aux_sym_def_type_statement_token6] = ACTIONS(9344), + [aux_sym_def_type_statement_token7] = ACTIONS(9344), + [aux_sym_def_type_statement_token8] = ACTIONS(9344), + [aux_sym_def_type_statement_token9] = ACTIONS(9344), + [aux_sym_def_type_statement_token10] = ACTIONS(9344), + [aux_sym_def_type_statement_token11] = ACTIONS(9344), + [aux_sym_def_type_statement_token12] = ACTIONS(9344), + [aux_sym_def_type_statement_token13] = ACTIONS(9344), + [aux_sym_def_type_statement_token14] = ACTIONS(9344), + [aux_sym_call_statement_token1] = ACTIONS(9344), + [sym__ambiguous_call_statement] = ACTIONS(9344), + [aux_sym_addressof_expression_token1] = ACTIONS(9344), + [aux_sym_type_of_expression_token1] = ACTIONS(9344), + [aux_sym_unary_expression_token1] = ACTIONS(9344), + [sym_string_literal] = ACTIONS(9346), + [sym_number_literal] = ACTIONS(9346), + [aux_sym_boolean_literal_token1] = ACTIONS(9344), + [aux_sym_boolean_literal_token2] = ACTIONS(9344), + [sym_nothing_literal] = ACTIONS(9344), + [sym_null_literal] = ACTIONS(9344), + [sym_empty_literal] = ACTIONS(9344), + [sym_date_literal] = ACTIONS(9346), + [anon_sym_POUND] = ACTIONS(9344), + }, + [STATE(6726)] = { + [sym_identifier] = ACTIONS(9332), + [sym_newline] = ACTIONS(9334), + [anon_sym_COLON] = ACTIONS(9334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9332), + [aux_sym_frm_property_statement_token1] = ACTIONS(9332), + [anon_sym_DOT] = ACTIONS(9332), + [anon_sym_BANG] = ACTIONS(9334), + [aux_sym__attribute_identifier_token1] = ACTIONS(9332), + [aux_sym_option_statement_token3] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9332), + [aux_sym_preprocessor_const_token1] = ACTIONS(9332), + [sym_static_modifier] = ACTIONS(9332), + [sym__dim_keyword] = ACTIONS(9332), + [sym__redim_keyword] = ACTIONS(9332), + [aux_sym_get_accessor_token1] = ACTIONS(9332), + [aux_sym_set_accessor_token1] = ACTIONS(9332), + [aux_sym_const_declaration_token1] = ACTIONS(9332), + [anon_sym_LPAREN] = ACTIONS(9334), + [aux_sym_as_type_clause_token2] = ACTIONS(9332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9332), + [aux_sym_visibility_token1] = ACTIONS(9332), + [aux_sym_visibility_token2] = ACTIONS(9332), + [aux_sym_elseif_fragment_token1] = ACTIONS(9332), + [aux_sym_else_fragment_token1] = ACTIONS(9332), + [aux_sym_select_statement_token1] = ACTIONS(9332), + [aux_sym__for_header_token1] = ACTIONS(9332), + [aux_sym_do_statement_token1] = ACTIONS(9332), + [aux_sym_do_condition_token1] = ACTIONS(9332), + [aux_sym_with_statement_token1] = ACTIONS(9332), + [aux_sym_exit_statement_token1] = ACTIONS(9332), + [sym_end_statement] = ACTIONS(9334), + [aux_sym_on_goto_statement_token1] = ACTIONS(9332), + [aux_sym_on_goto_statement_token2] = ACTIONS(9332), + [aux_sym_on_error_statement_token2] = ACTIONS(9332), + [sym__ambiguous_redim_statement] = ACTIONS(9334), + [aux_sym_erase_statement_token1] = ACTIONS(9332), + [aux_sym_open_statement_token1] = ACTIONS(9332), + [aux_sym_file_mode_token2] = ACTIONS(9332), + [aux_sym_file_access_token2] = ACTIONS(9332), + [aux_sym_file_lock_token2] = ACTIONS(9332), + [aux_sym_print_statement_token1] = ACTIONS(9332), + [anon_sym_PLUS] = ACTIONS(9334), + [anon_sym_DASH] = ACTIONS(9332), + [anon_sym_QMARK] = ACTIONS(9334), + [aux_sym_close_statement_token1] = ACTIONS(9332), + [aux_sym_put_statement_token1] = ACTIONS(9332), + [aux_sym_unlock_statement_token1] = ACTIONS(9332), + [aux_sym_seek_statement_token1] = ACTIONS(9332), + [sym_reset_statement] = ACTIONS(9332), + [aux_sym_raise_event_statement_token1] = ACTIONS(9332), + [sym_stop_statement] = ACTIONS(9332), + [sym_beep_statement] = ACTIONS(9332), + [aux_sym_unload_statement_token1] = ACTIONS(9332), + [aux_sym_def_type_statement_token1] = ACTIONS(9332), + [aux_sym_def_type_statement_token2] = ACTIONS(9332), + [aux_sym_def_type_statement_token3] = ACTIONS(9332), + [aux_sym_def_type_statement_token4] = ACTIONS(9332), + [aux_sym_def_type_statement_token5] = ACTIONS(9332), + [aux_sym_def_type_statement_token6] = ACTIONS(9332), + [aux_sym_def_type_statement_token7] = ACTIONS(9332), + [aux_sym_def_type_statement_token8] = ACTIONS(9332), + [aux_sym_def_type_statement_token9] = ACTIONS(9332), + [aux_sym_def_type_statement_token10] = ACTIONS(9332), + [aux_sym_def_type_statement_token11] = ACTIONS(9332), + [aux_sym_def_type_statement_token12] = ACTIONS(9332), + [aux_sym_def_type_statement_token13] = ACTIONS(9332), + [aux_sym_def_type_statement_token14] = ACTIONS(9332), + [aux_sym_call_statement_token1] = ACTIONS(9332), + [sym__ambiguous_call_statement] = ACTIONS(9332), + [aux_sym_addressof_expression_token1] = ACTIONS(9332), + [aux_sym_type_of_expression_token1] = ACTIONS(9332), + [aux_sym_unary_expression_token1] = ACTIONS(9332), + [sym_string_literal] = ACTIONS(9334), + [sym_number_literal] = ACTIONS(9334), + [aux_sym_boolean_literal_token1] = ACTIONS(9332), + [aux_sym_boolean_literal_token2] = ACTIONS(9332), + [sym_nothing_literal] = ACTIONS(9332), + [sym_null_literal] = ACTIONS(9332), + [sym_empty_literal] = ACTIONS(9332), + [sym_date_literal] = ACTIONS(9334), + [anon_sym_POUND] = ACTIONS(9332), + }, + [STATE(6727)] = { + [sym_identifier] = ACTIONS(9431), + [sym_newline] = ACTIONS(9433), + [anon_sym_COLON] = ACTIONS(9433), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9431), + [aux_sym_frm_property_statement_token1] = ACTIONS(9431), + [anon_sym_DOT] = ACTIONS(9431), + [anon_sym_BANG] = ACTIONS(9433), + [aux_sym__attribute_identifier_token1] = ACTIONS(9431), + [aux_sym_option_statement_token3] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9431), + [aux_sym_preprocessor_const_token1] = ACTIONS(9431), + [sym_static_modifier] = ACTIONS(9431), + [sym__dim_keyword] = ACTIONS(9431), + [sym__redim_keyword] = ACTIONS(9431), + [aux_sym_get_accessor_token1] = ACTIONS(9431), + [aux_sym_set_accessor_token1] = ACTIONS(9431), + [aux_sym_const_declaration_token1] = ACTIONS(9431), + [anon_sym_LPAREN] = ACTIONS(9433), + [aux_sym_as_type_clause_token2] = ACTIONS(9431), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9431), + [aux_sym_visibility_token1] = ACTIONS(9431), + [aux_sym_visibility_token2] = ACTIONS(9431), + [aux_sym_elseif_fragment_token1] = ACTIONS(9431), + [aux_sym_else_fragment_token1] = ACTIONS(9431), + [aux_sym_select_statement_token1] = ACTIONS(9431), + [aux_sym__for_header_token1] = ACTIONS(9431), + [aux_sym_do_statement_token1] = ACTIONS(9431), + [aux_sym_do_statement_token2] = ACTIONS(9431), + [aux_sym_do_condition_token1] = ACTIONS(9431), + [aux_sym_with_statement_token1] = ACTIONS(9431), + [aux_sym_exit_statement_token1] = ACTIONS(9431), + [sym_end_statement] = ACTIONS(9433), + [aux_sym_on_goto_statement_token1] = ACTIONS(9431), + [aux_sym_on_goto_statement_token2] = ACTIONS(9431), + [aux_sym_on_error_statement_token2] = ACTIONS(9431), + [sym__ambiguous_redim_statement] = ACTIONS(9433), + [aux_sym_erase_statement_token1] = ACTIONS(9431), + [aux_sym_open_statement_token1] = ACTIONS(9431), + [aux_sym_file_mode_token2] = ACTIONS(9431), + [aux_sym_file_access_token2] = ACTIONS(9431), + [aux_sym_file_lock_token2] = ACTIONS(9431), + [aux_sym_print_statement_token1] = ACTIONS(9431), + [anon_sym_PLUS] = ACTIONS(9433), + [anon_sym_DASH] = ACTIONS(9431), + [anon_sym_QMARK] = ACTIONS(9433), + [aux_sym_close_statement_token1] = ACTIONS(9431), + [aux_sym_put_statement_token1] = ACTIONS(9431), + [aux_sym_unlock_statement_token1] = ACTIONS(9431), + [aux_sym_seek_statement_token1] = ACTIONS(9431), + [sym_reset_statement] = ACTIONS(9431), + [aux_sym_raise_event_statement_token1] = ACTIONS(9431), + [sym_stop_statement] = ACTIONS(9431), + [sym_beep_statement] = ACTIONS(9431), + [aux_sym_unload_statement_token1] = ACTIONS(9431), + [aux_sym_def_type_statement_token1] = ACTIONS(9431), + [aux_sym_def_type_statement_token2] = ACTIONS(9431), + [aux_sym_def_type_statement_token3] = ACTIONS(9431), + [aux_sym_def_type_statement_token4] = ACTIONS(9431), + [aux_sym_def_type_statement_token5] = ACTIONS(9431), + [aux_sym_def_type_statement_token6] = ACTIONS(9431), + [aux_sym_def_type_statement_token7] = ACTIONS(9431), + [aux_sym_def_type_statement_token8] = ACTIONS(9431), + [aux_sym_def_type_statement_token9] = ACTIONS(9431), + [aux_sym_def_type_statement_token10] = ACTIONS(9431), + [aux_sym_def_type_statement_token11] = ACTIONS(9431), + [aux_sym_def_type_statement_token12] = ACTIONS(9431), + [aux_sym_def_type_statement_token13] = ACTIONS(9431), + [aux_sym_def_type_statement_token14] = ACTIONS(9431), + [aux_sym_call_statement_token1] = ACTIONS(9431), + [sym__ambiguous_call_statement] = ACTIONS(9431), + [aux_sym_addressof_expression_token1] = ACTIONS(9431), + [aux_sym_type_of_expression_token1] = ACTIONS(9431), + [aux_sym_unary_expression_token1] = ACTIONS(9431), + [sym_string_literal] = ACTIONS(9433), + [sym_number_literal] = ACTIONS(9433), + [aux_sym_boolean_literal_token1] = ACTIONS(9431), + [aux_sym_boolean_literal_token2] = ACTIONS(9431), + [sym_nothing_literal] = ACTIONS(9431), + [sym_null_literal] = ACTIONS(9431), + [sym_empty_literal] = ACTIONS(9431), + [sym_date_literal] = ACTIONS(9433), + [anon_sym_POUND] = ACTIONS(9431), + }, + [STATE(6728)] = { + [sym_identifier] = ACTIONS(9276), + [sym_newline] = ACTIONS(9278), + [anon_sym_COLON] = ACTIONS(9278), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9276), + [aux_sym_frm_property_statement_token1] = ACTIONS(9276), + [anon_sym_DOT] = ACTIONS(9276), + [anon_sym_BANG] = ACTIONS(9278), + [aux_sym__attribute_identifier_token1] = ACTIONS(9276), + [aux_sym_option_statement_token3] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9276), + [aux_sym_preprocessor_const_token1] = ACTIONS(9276), + [sym_static_modifier] = ACTIONS(9276), + [sym__dim_keyword] = ACTIONS(9276), + [sym__redim_keyword] = ACTIONS(9276), + [aux_sym_get_accessor_token1] = ACTIONS(9276), + [aux_sym_set_accessor_token1] = ACTIONS(9276), + [aux_sym_const_declaration_token1] = ACTIONS(9276), + [anon_sym_LPAREN] = ACTIONS(9278), + [aux_sym_as_type_clause_token2] = ACTIONS(9276), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9276), + [aux_sym_visibility_token1] = ACTIONS(9276), + [aux_sym_visibility_token2] = ACTIONS(9276), + [aux_sym_elseif_fragment_token1] = ACTIONS(9276), + [aux_sym_else_fragment_token1] = ACTIONS(9276), + [aux_sym_select_statement_token1] = ACTIONS(9276), + [aux_sym__for_header_token1] = ACTIONS(9276), + [aux_sym_do_statement_token1] = ACTIONS(9276), + [aux_sym_do_condition_token1] = ACTIONS(9276), + [aux_sym_with_statement_token1] = ACTIONS(9276), + [aux_sym_exit_statement_token1] = ACTIONS(9276), + [sym_end_statement] = ACTIONS(9278), + [aux_sym_on_goto_statement_token1] = ACTIONS(9276), + [aux_sym_on_goto_statement_token2] = ACTIONS(9276), + [aux_sym_on_error_statement_token2] = ACTIONS(9276), + [sym__ambiguous_redim_statement] = ACTIONS(9278), + [aux_sym_erase_statement_token1] = ACTIONS(9276), + [aux_sym_open_statement_token1] = ACTIONS(9276), + [aux_sym_file_mode_token2] = ACTIONS(9276), + [aux_sym_file_access_token2] = ACTIONS(9276), + [aux_sym_file_lock_token2] = ACTIONS(9276), + [aux_sym_print_statement_token1] = ACTIONS(9276), + [anon_sym_PLUS] = ACTIONS(9278), + [anon_sym_DASH] = ACTIONS(9276), + [anon_sym_QMARK] = ACTIONS(9278), + [aux_sym_close_statement_token1] = ACTIONS(9276), + [aux_sym_put_statement_token1] = ACTIONS(9276), + [aux_sym_unlock_statement_token1] = ACTIONS(9276), + [aux_sym_seek_statement_token1] = ACTIONS(9276), + [sym_reset_statement] = ACTIONS(9276), + [aux_sym_raise_event_statement_token1] = ACTIONS(9276), + [sym_stop_statement] = ACTIONS(9276), + [sym_beep_statement] = ACTIONS(9276), + [aux_sym_unload_statement_token1] = ACTIONS(9276), + [aux_sym_def_type_statement_token1] = ACTIONS(9276), + [aux_sym_def_type_statement_token2] = ACTIONS(9276), + [aux_sym_def_type_statement_token3] = ACTIONS(9276), + [aux_sym_def_type_statement_token4] = ACTIONS(9276), + [aux_sym_def_type_statement_token5] = ACTIONS(9276), + [aux_sym_def_type_statement_token6] = ACTIONS(9276), + [aux_sym_def_type_statement_token7] = ACTIONS(9276), + [aux_sym_def_type_statement_token8] = ACTIONS(9276), + [aux_sym_def_type_statement_token9] = ACTIONS(9276), + [aux_sym_def_type_statement_token10] = ACTIONS(9276), + [aux_sym_def_type_statement_token11] = ACTIONS(9276), + [aux_sym_def_type_statement_token12] = ACTIONS(9276), + [aux_sym_def_type_statement_token13] = ACTIONS(9276), + [aux_sym_def_type_statement_token14] = ACTIONS(9276), + [aux_sym_call_statement_token1] = ACTIONS(9276), + [sym__ambiguous_call_statement] = ACTIONS(9276), + [aux_sym_addressof_expression_token1] = ACTIONS(9276), + [aux_sym_type_of_expression_token1] = ACTIONS(9276), + [aux_sym_unary_expression_token1] = ACTIONS(9276), + [sym_string_literal] = ACTIONS(9278), + [sym_number_literal] = ACTIONS(9278), + [aux_sym_boolean_literal_token1] = ACTIONS(9276), + [aux_sym_boolean_literal_token2] = ACTIONS(9276), + [sym_nothing_literal] = ACTIONS(9276), + [sym_null_literal] = ACTIONS(9276), + [sym_empty_literal] = ACTIONS(9276), + [sym_date_literal] = ACTIONS(9278), + [anon_sym_POUND] = ACTIONS(9276), + }, + [STATE(6729)] = { + [sym_identifier] = ACTIONS(8949), + [sym_newline] = ACTIONS(11132), + [anon_sym_COLON] = ACTIONS(8884), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8949), + [aux_sym_frm_property_statement_token1] = ACTIONS(8949), + [anon_sym_DOT] = ACTIONS(8949), + [anon_sym_BANG] = ACTIONS(11132), + [aux_sym__attribute_identifier_token1] = ACTIONS(8949), + [aux_sym_option_statement_token3] = ACTIONS(8949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8949), + [aux_sym_preprocessor_const_token1] = ACTIONS(8949), + [sym_static_modifier] = ACTIONS(8949), + [sym__dim_keyword] = ACTIONS(8949), + [sym__redim_keyword] = ACTIONS(8949), + [aux_sym_get_accessor_token1] = ACTIONS(8949), + [aux_sym_set_accessor_token1] = ACTIONS(8949), + [aux_sym_const_declaration_token1] = ACTIONS(8949), + [anon_sym_LPAREN] = ACTIONS(11132), + [aux_sym_as_type_clause_token2] = ACTIONS(8949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8949), + [aux_sym_visibility_token1] = ACTIONS(8949), + [aux_sym_visibility_token2] = ACTIONS(8949), + [aux_sym_elseif_fragment_token1] = ACTIONS(8949), + [aux_sym_else_fragment_token1] = ACTIONS(8881), + [aux_sym_select_statement_token1] = ACTIONS(8949), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8949), + [aux_sym__for_header_token1] = ACTIONS(8949), + [aux_sym_do_statement_token1] = ACTIONS(8949), + [aux_sym_do_condition_token1] = ACTIONS(8949), + [aux_sym_with_statement_token1] = ACTIONS(8949), + [aux_sym_exit_statement_token1] = ACTIONS(8949), + [sym_end_statement] = ACTIONS(11132), + [aux_sym_on_goto_statement_token1] = ACTIONS(8949), + [aux_sym_on_goto_statement_token2] = ACTIONS(8949), + [aux_sym_on_error_statement_token2] = ACTIONS(8949), + [sym__ambiguous_redim_statement] = ACTIONS(11132), + [aux_sym_erase_statement_token1] = ACTIONS(8949), + [aux_sym_open_statement_token1] = ACTIONS(8949), + [aux_sym_file_mode_token2] = ACTIONS(8949), + [aux_sym_file_access_token2] = ACTIONS(8949), + [aux_sym_file_lock_token2] = ACTIONS(8949), + [aux_sym_print_statement_token1] = ACTIONS(8949), + [anon_sym_PLUS] = ACTIONS(11132), + [anon_sym_DASH] = ACTIONS(8949), + [anon_sym_QMARK] = ACTIONS(11132), + [aux_sym_close_statement_token1] = ACTIONS(8949), + [aux_sym_put_statement_token1] = ACTIONS(8949), + [aux_sym_unlock_statement_token1] = ACTIONS(8949), + [aux_sym_seek_statement_token1] = ACTIONS(8949), + [sym_reset_statement] = ACTIONS(8949), + [aux_sym_raise_event_statement_token1] = ACTIONS(8949), + [sym_stop_statement] = ACTIONS(8949), + [sym_beep_statement] = ACTIONS(8949), + [aux_sym_unload_statement_token1] = ACTIONS(8949), + [aux_sym_def_type_statement_token1] = ACTIONS(8949), + [aux_sym_def_type_statement_token2] = ACTIONS(8949), + [aux_sym_def_type_statement_token3] = ACTIONS(8949), + [aux_sym_def_type_statement_token4] = ACTIONS(8949), + [aux_sym_def_type_statement_token5] = ACTIONS(8949), + [aux_sym_def_type_statement_token6] = ACTIONS(8949), + [aux_sym_def_type_statement_token7] = ACTIONS(8949), + [aux_sym_def_type_statement_token8] = ACTIONS(8949), + [aux_sym_def_type_statement_token9] = ACTIONS(8949), + [aux_sym_def_type_statement_token10] = ACTIONS(8949), + [aux_sym_def_type_statement_token11] = ACTIONS(8949), + [aux_sym_def_type_statement_token12] = ACTIONS(8949), + [aux_sym_def_type_statement_token13] = ACTIONS(8949), + [aux_sym_def_type_statement_token14] = ACTIONS(8949), + [aux_sym_call_statement_token1] = ACTIONS(8949), + [sym__ambiguous_call_statement] = ACTIONS(8949), + [aux_sym_addressof_expression_token1] = ACTIONS(8949), + [aux_sym_type_of_expression_token1] = ACTIONS(8949), + [aux_sym_unary_expression_token1] = ACTIONS(8949), + [sym_string_literal] = ACTIONS(11132), + [sym_number_literal] = ACTIONS(8884), + [aux_sym_boolean_literal_token1] = ACTIONS(8949), + [aux_sym_boolean_literal_token2] = ACTIONS(8949), + [sym_nothing_literal] = ACTIONS(8949), + [sym_null_literal] = ACTIONS(8949), + [sym_empty_literal] = ACTIONS(8949), + [sym_date_literal] = ACTIONS(11132), + [anon_sym_POUND] = ACTIONS(8949), + }, + [STATE(6730)] = { + [sym_identifier] = ACTIONS(8986), + [sym_newline] = ACTIONS(9032), + [anon_sym_COLON] = ACTIONS(8918), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8986), + [aux_sym_frm_property_statement_token1] = ACTIONS(8986), + [anon_sym_DOT] = ACTIONS(8986), + [anon_sym_BANG] = ACTIONS(9032), + [aux_sym__attribute_identifier_token1] = ACTIONS(8986), + [aux_sym_option_statement_token3] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8986), + [aux_sym_preprocessor_const_token1] = ACTIONS(8986), + [sym_static_modifier] = ACTIONS(8986), + [sym__dim_keyword] = ACTIONS(8986), + [sym__redim_keyword] = ACTIONS(8986), + [aux_sym_get_accessor_token1] = ACTIONS(8986), + [aux_sym_set_accessor_token1] = ACTIONS(8986), + [aux_sym_const_declaration_token1] = ACTIONS(8986), + [anon_sym_LPAREN] = ACTIONS(9032), + [aux_sym_as_type_clause_token2] = ACTIONS(8986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8986), + [aux_sym_visibility_token1] = ACTIONS(8986), + [aux_sym_visibility_token2] = ACTIONS(8986), + [aux_sym_elseif_fragment_token1] = ACTIONS(8986), + [aux_sym_else_fragment_token1] = ACTIONS(8915), + [aux_sym_select_statement_token1] = ACTIONS(8986), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8986), + [aux_sym_do_statement_token1] = ACTIONS(8986), + [aux_sym_do_condition_token1] = ACTIONS(8986), + [aux_sym_with_statement_token1] = ACTIONS(8986), + [aux_sym_exit_statement_token1] = ACTIONS(8986), + [sym_end_statement] = ACTIONS(9032), + [aux_sym_on_goto_statement_token1] = ACTIONS(8986), + [aux_sym_on_goto_statement_token2] = ACTIONS(8986), + [aux_sym_on_error_statement_token2] = ACTIONS(8986), + [sym__ambiguous_redim_statement] = ACTIONS(9032), + [aux_sym_erase_statement_token1] = ACTIONS(8986), + [aux_sym_open_statement_token1] = ACTIONS(8986), + [aux_sym_file_mode_token2] = ACTIONS(8986), + [aux_sym_file_access_token2] = ACTIONS(8986), + [aux_sym_file_lock_token2] = ACTIONS(8986), + [aux_sym_print_statement_token1] = ACTIONS(8986), + [anon_sym_PLUS] = ACTIONS(9032), + [anon_sym_DASH] = ACTIONS(8986), + [anon_sym_QMARK] = ACTIONS(9032), + [aux_sym_close_statement_token1] = ACTIONS(8986), + [aux_sym_put_statement_token1] = ACTIONS(8986), + [aux_sym_unlock_statement_token1] = ACTIONS(8986), + [aux_sym_seek_statement_token1] = ACTIONS(8986), + [sym_reset_statement] = ACTIONS(8986), + [aux_sym_raise_event_statement_token1] = ACTIONS(8986), + [sym_stop_statement] = ACTIONS(8986), + [sym_beep_statement] = ACTIONS(8986), + [aux_sym_unload_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token2] = ACTIONS(8986), + [aux_sym_def_type_statement_token3] = ACTIONS(8986), + [aux_sym_def_type_statement_token4] = ACTIONS(8986), + [aux_sym_def_type_statement_token5] = ACTIONS(8986), + [aux_sym_def_type_statement_token6] = ACTIONS(8986), + [aux_sym_def_type_statement_token7] = ACTIONS(8986), + [aux_sym_def_type_statement_token8] = ACTIONS(8986), + [aux_sym_def_type_statement_token9] = ACTIONS(8986), + [aux_sym_def_type_statement_token10] = ACTIONS(8986), + [aux_sym_def_type_statement_token11] = ACTIONS(8986), + [aux_sym_def_type_statement_token12] = ACTIONS(8986), + [aux_sym_def_type_statement_token13] = ACTIONS(8986), + [aux_sym_def_type_statement_token14] = ACTIONS(8986), + [aux_sym_call_statement_token1] = ACTIONS(8986), + [sym__ambiguous_call_statement] = ACTIONS(8986), + [aux_sym_addressof_expression_token1] = ACTIONS(8986), + [aux_sym_type_of_expression_token1] = ACTIONS(8986), + [aux_sym_unary_expression_token1] = ACTIONS(8986), + [sym_string_literal] = ACTIONS(9032), + [sym_number_literal] = ACTIONS(8918), + [aux_sym_boolean_literal_token1] = ACTIONS(8986), + [aux_sym_boolean_literal_token2] = ACTIONS(8986), + [sym_nothing_literal] = ACTIONS(8986), + [sym_null_literal] = ACTIONS(8986), + [sym_empty_literal] = ACTIONS(8986), + [sym_date_literal] = ACTIONS(9032), + [anon_sym_POUND] = ACTIONS(8986), + }, + [STATE(6731)] = { + [sym_identifier] = ACTIONS(9016), + [sym_newline] = ACTIONS(9018), + [anon_sym_COLON] = ACTIONS(9018), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9016), + [aux_sym_frm_property_statement_token1] = ACTIONS(9016), + [anon_sym_DOT] = ACTIONS(9016), + [anon_sym_BANG] = ACTIONS(9018), + [aux_sym__attribute_identifier_token1] = ACTIONS(9016), + [aux_sym_option_statement_token3] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9016), + [aux_sym_preprocessor_const_token1] = ACTIONS(9016), + [sym_static_modifier] = ACTIONS(9016), + [sym__dim_keyword] = ACTIONS(9016), + [sym__redim_keyword] = ACTIONS(9016), + [aux_sym_get_accessor_token1] = ACTIONS(9016), + [aux_sym_set_accessor_token1] = ACTIONS(9016), + [aux_sym_const_declaration_token1] = ACTIONS(9016), + [anon_sym_LPAREN] = ACTIONS(9018), + [aux_sym_as_type_clause_token2] = ACTIONS(9016), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9016), + [aux_sym_visibility_token1] = ACTIONS(9016), + [aux_sym_visibility_token2] = ACTIONS(9016), + [aux_sym_elseif_fragment_token1] = ACTIONS(9016), + [aux_sym_else_fragment_token1] = ACTIONS(9016), + [aux_sym_select_statement_token1] = ACTIONS(9016), + [aux_sym__for_header_token1] = ACTIONS(9016), + [aux_sym_do_statement_token1] = ACTIONS(9016), + [aux_sym_do_statement_token2] = ACTIONS(9016), + [aux_sym_do_condition_token1] = ACTIONS(9016), + [aux_sym_with_statement_token1] = ACTIONS(9016), + [aux_sym_exit_statement_token1] = ACTIONS(9016), + [sym_end_statement] = ACTIONS(9018), + [aux_sym_on_goto_statement_token1] = ACTIONS(9016), + [aux_sym_on_goto_statement_token2] = ACTIONS(9016), + [aux_sym_on_error_statement_token2] = ACTIONS(9016), + [sym__ambiguous_redim_statement] = ACTIONS(9018), + [aux_sym_erase_statement_token1] = ACTIONS(9016), + [aux_sym_open_statement_token1] = ACTIONS(9016), + [aux_sym_file_mode_token2] = ACTIONS(9016), + [aux_sym_file_access_token2] = ACTIONS(9016), + [aux_sym_file_lock_token2] = ACTIONS(9016), + [aux_sym_print_statement_token1] = ACTIONS(9016), + [anon_sym_PLUS] = ACTIONS(9018), + [anon_sym_DASH] = ACTIONS(9016), + [anon_sym_QMARK] = ACTIONS(9018), + [aux_sym_close_statement_token1] = ACTIONS(9016), + [aux_sym_put_statement_token1] = ACTIONS(9016), + [aux_sym_unlock_statement_token1] = ACTIONS(9016), + [aux_sym_seek_statement_token1] = ACTIONS(9016), + [sym_reset_statement] = ACTIONS(9016), + [aux_sym_raise_event_statement_token1] = ACTIONS(9016), + [sym_stop_statement] = ACTIONS(9016), + [sym_beep_statement] = ACTIONS(9016), + [aux_sym_unload_statement_token1] = ACTIONS(9016), + [aux_sym_def_type_statement_token1] = ACTIONS(9016), + [aux_sym_def_type_statement_token2] = ACTIONS(9016), + [aux_sym_def_type_statement_token3] = ACTIONS(9016), + [aux_sym_def_type_statement_token4] = ACTIONS(9016), + [aux_sym_def_type_statement_token5] = ACTIONS(9016), + [aux_sym_def_type_statement_token6] = ACTIONS(9016), + [aux_sym_def_type_statement_token7] = ACTIONS(9016), + [aux_sym_def_type_statement_token8] = ACTIONS(9016), + [aux_sym_def_type_statement_token9] = ACTIONS(9016), + [aux_sym_def_type_statement_token10] = ACTIONS(9016), + [aux_sym_def_type_statement_token11] = ACTIONS(9016), + [aux_sym_def_type_statement_token12] = ACTIONS(9016), + [aux_sym_def_type_statement_token13] = ACTIONS(9016), + [aux_sym_def_type_statement_token14] = ACTIONS(9016), + [aux_sym_call_statement_token1] = ACTIONS(9016), + [sym__ambiguous_call_statement] = ACTIONS(9016), + [aux_sym_addressof_expression_token1] = ACTIONS(9016), + [aux_sym_type_of_expression_token1] = ACTIONS(9016), + [aux_sym_unary_expression_token1] = ACTIONS(9016), + [sym_string_literal] = ACTIONS(9018), + [sym_number_literal] = ACTIONS(9018), + [aux_sym_boolean_literal_token1] = ACTIONS(9016), + [aux_sym_boolean_literal_token2] = ACTIONS(9016), + [sym_nothing_literal] = ACTIONS(9016), + [sym_null_literal] = ACTIONS(9016), + [sym_empty_literal] = ACTIONS(9016), + [sym_date_literal] = ACTIONS(9018), + [anon_sym_POUND] = ACTIONS(9016), + }, + [STATE(6732)] = { + [sym_identifier] = ACTIONS(8764), + [sym_newline] = ACTIONS(9034), + [anon_sym_COLON] = ACTIONS(8759), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8764), + [aux_sym_frm_property_statement_token1] = ACTIONS(8764), + [anon_sym_DOT] = ACTIONS(8764), + [anon_sym_BANG] = ACTIONS(9034), + [aux_sym__attribute_identifier_token1] = ACTIONS(8764), + [aux_sym_option_statement_token3] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8764), + [aux_sym_preprocessor_const_token1] = ACTIONS(8764), + [sym_static_modifier] = ACTIONS(8764), + [sym__dim_keyword] = ACTIONS(8764), + [sym__redim_keyword] = ACTIONS(8764), + [aux_sym_get_accessor_token1] = ACTIONS(8764), + [aux_sym_set_accessor_token1] = ACTIONS(8764), + [aux_sym_const_declaration_token1] = ACTIONS(8764), + [anon_sym_LPAREN] = ACTIONS(9034), + [aux_sym_as_type_clause_token2] = ACTIONS(8764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8764), + [aux_sym_visibility_token1] = ACTIONS(8764), + [aux_sym_visibility_token2] = ACTIONS(8764), + [aux_sym_elseif_fragment_token1] = ACTIONS(8764), + [aux_sym_else_fragment_token1] = ACTIONS(8756), + [aux_sym_select_statement_token1] = ACTIONS(8764), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8764), + [aux_sym_do_statement_token1] = ACTIONS(8764), + [aux_sym_do_condition_token1] = ACTIONS(8764), + [aux_sym_with_statement_token1] = ACTIONS(8764), + [aux_sym_exit_statement_token1] = ACTIONS(8764), + [sym_end_statement] = ACTIONS(9034), + [aux_sym_on_goto_statement_token1] = ACTIONS(8764), + [aux_sym_on_goto_statement_token2] = ACTIONS(8764), + [aux_sym_on_error_statement_token2] = ACTIONS(8764), + [sym__ambiguous_redim_statement] = ACTIONS(9034), + [aux_sym_erase_statement_token1] = ACTIONS(8764), + [aux_sym_open_statement_token1] = ACTIONS(8764), + [aux_sym_file_mode_token2] = ACTIONS(8764), + [aux_sym_file_access_token2] = ACTIONS(8764), + [aux_sym_file_lock_token2] = ACTIONS(8764), + [aux_sym_print_statement_token1] = ACTIONS(8764), + [anon_sym_PLUS] = ACTIONS(9034), + [anon_sym_DASH] = ACTIONS(8764), + [anon_sym_QMARK] = ACTIONS(9034), + [aux_sym_close_statement_token1] = ACTIONS(8764), + [aux_sym_put_statement_token1] = ACTIONS(8764), + [aux_sym_unlock_statement_token1] = ACTIONS(8764), + [aux_sym_seek_statement_token1] = ACTIONS(8764), + [sym_reset_statement] = ACTIONS(8764), + [aux_sym_raise_event_statement_token1] = ACTIONS(8764), + [sym_stop_statement] = ACTIONS(8764), + [sym_beep_statement] = ACTIONS(8764), + [aux_sym_unload_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token2] = ACTIONS(8764), + [aux_sym_def_type_statement_token3] = ACTIONS(8764), + [aux_sym_def_type_statement_token4] = ACTIONS(8764), + [aux_sym_def_type_statement_token5] = ACTIONS(8764), + [aux_sym_def_type_statement_token6] = ACTIONS(8764), + [aux_sym_def_type_statement_token7] = ACTIONS(8764), + [aux_sym_def_type_statement_token8] = ACTIONS(8764), + [aux_sym_def_type_statement_token9] = ACTIONS(8764), + [aux_sym_def_type_statement_token10] = ACTIONS(8764), + [aux_sym_def_type_statement_token11] = ACTIONS(8764), + [aux_sym_def_type_statement_token12] = ACTIONS(8764), + [aux_sym_def_type_statement_token13] = ACTIONS(8764), + [aux_sym_def_type_statement_token14] = ACTIONS(8764), + [aux_sym_call_statement_token1] = ACTIONS(8764), + [sym__ambiguous_call_statement] = ACTIONS(8764), + [aux_sym_addressof_expression_token1] = ACTIONS(8764), + [aux_sym_type_of_expression_token1] = ACTIONS(8764), + [aux_sym_unary_expression_token1] = ACTIONS(8764), + [sym_string_literal] = ACTIONS(9034), + [sym_number_literal] = ACTIONS(8759), + [aux_sym_boolean_literal_token1] = ACTIONS(8764), + [aux_sym_boolean_literal_token2] = ACTIONS(8764), + [sym_nothing_literal] = ACTIONS(8764), + [sym_null_literal] = ACTIONS(8764), + [sym_empty_literal] = ACTIONS(8764), + [sym_date_literal] = ACTIONS(9034), + [anon_sym_POUND] = ACTIONS(8764), + }, + [STATE(6733)] = { + [sym_identifier] = ACTIONS(9336), + [sym_newline] = ACTIONS(9338), + [anon_sym_COLON] = ACTIONS(9338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9336), + [aux_sym_frm_property_statement_token1] = ACTIONS(9336), + [anon_sym_DOT] = ACTIONS(9336), + [anon_sym_BANG] = ACTIONS(9338), + [aux_sym__attribute_identifier_token1] = ACTIONS(9336), + [aux_sym_option_statement_token3] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9336), + [aux_sym_preprocessor_const_token1] = ACTIONS(9336), + [sym_static_modifier] = ACTIONS(9336), + [sym__dim_keyword] = ACTIONS(9336), + [sym__redim_keyword] = ACTIONS(9336), + [aux_sym_get_accessor_token1] = ACTIONS(9336), + [aux_sym_set_accessor_token1] = ACTIONS(9336), + [aux_sym_const_declaration_token1] = ACTIONS(9336), + [anon_sym_LPAREN] = ACTIONS(9338), + [aux_sym_as_type_clause_token2] = ACTIONS(9336), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9336), + [aux_sym_visibility_token1] = ACTIONS(9336), + [aux_sym_visibility_token2] = ACTIONS(9336), + [aux_sym_elseif_fragment_token1] = ACTIONS(9336), + [aux_sym_else_fragment_token1] = ACTIONS(9336), + [aux_sym_select_statement_token1] = ACTIONS(9336), + [aux_sym__for_header_token1] = ACTIONS(9336), + [aux_sym_do_statement_token1] = ACTIONS(9336), + [aux_sym_do_condition_token1] = ACTIONS(9336), + [aux_sym_with_statement_token1] = ACTIONS(9336), + [aux_sym_exit_statement_token1] = ACTIONS(9336), + [sym_end_statement] = ACTIONS(9338), + [aux_sym_on_goto_statement_token1] = ACTIONS(9336), + [aux_sym_on_goto_statement_token2] = ACTIONS(9336), + [aux_sym_on_error_statement_token2] = ACTIONS(9336), + [sym__ambiguous_redim_statement] = ACTIONS(9338), + [aux_sym_erase_statement_token1] = ACTIONS(9336), + [aux_sym_open_statement_token1] = ACTIONS(9336), + [aux_sym_file_mode_token2] = ACTIONS(9336), + [aux_sym_file_access_token2] = ACTIONS(9336), + [aux_sym_file_lock_token2] = ACTIONS(9336), + [aux_sym_print_statement_token1] = ACTIONS(9336), + [anon_sym_PLUS] = ACTIONS(9338), + [anon_sym_DASH] = ACTIONS(9336), + [anon_sym_QMARK] = ACTIONS(9338), + [aux_sym_close_statement_token1] = ACTIONS(9336), + [aux_sym_put_statement_token1] = ACTIONS(9336), + [aux_sym_unlock_statement_token1] = ACTIONS(9336), + [aux_sym_seek_statement_token1] = ACTIONS(9336), + [sym_reset_statement] = ACTIONS(9336), + [aux_sym_raise_event_statement_token1] = ACTIONS(9336), + [sym_stop_statement] = ACTIONS(9336), + [sym_beep_statement] = ACTIONS(9336), + [aux_sym_unload_statement_token1] = ACTIONS(9336), + [aux_sym_def_type_statement_token1] = ACTIONS(9336), + [aux_sym_def_type_statement_token2] = ACTIONS(9336), + [aux_sym_def_type_statement_token3] = ACTIONS(9336), + [aux_sym_def_type_statement_token4] = ACTIONS(9336), + [aux_sym_def_type_statement_token5] = ACTIONS(9336), + [aux_sym_def_type_statement_token6] = ACTIONS(9336), + [aux_sym_def_type_statement_token7] = ACTIONS(9336), + [aux_sym_def_type_statement_token8] = ACTIONS(9336), + [aux_sym_def_type_statement_token9] = ACTIONS(9336), + [aux_sym_def_type_statement_token10] = ACTIONS(9336), + [aux_sym_def_type_statement_token11] = ACTIONS(9336), + [aux_sym_def_type_statement_token12] = ACTIONS(9336), + [aux_sym_def_type_statement_token13] = ACTIONS(9336), + [aux_sym_def_type_statement_token14] = ACTIONS(9336), + [aux_sym_call_statement_token1] = ACTIONS(9336), + [sym__ambiguous_call_statement] = ACTIONS(9336), + [aux_sym_addressof_expression_token1] = ACTIONS(9336), + [aux_sym_type_of_expression_token1] = ACTIONS(9336), + [aux_sym_unary_expression_token1] = ACTIONS(9336), + [sym_string_literal] = ACTIONS(9338), + [sym_number_literal] = ACTIONS(9338), + [aux_sym_boolean_literal_token1] = ACTIONS(9336), + [aux_sym_boolean_literal_token2] = ACTIONS(9336), + [sym_nothing_literal] = ACTIONS(9336), + [sym_null_literal] = ACTIONS(9336), + [sym_empty_literal] = ACTIONS(9336), + [sym_date_literal] = ACTIONS(9338), + [anon_sym_POUND] = ACTIONS(9336), + }, + [STATE(6734)] = { + [sym_identifier] = ACTIONS(9340), + [sym_newline] = ACTIONS(9342), + [anon_sym_COLON] = ACTIONS(9342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9340), + [aux_sym_frm_property_statement_token1] = ACTIONS(9340), + [anon_sym_DOT] = ACTIONS(9340), + [anon_sym_BANG] = ACTIONS(9342), + [aux_sym__attribute_identifier_token1] = ACTIONS(9340), + [aux_sym_option_statement_token3] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9340), + [aux_sym_preprocessor_const_token1] = ACTIONS(9340), + [sym_static_modifier] = ACTIONS(9340), + [sym__dim_keyword] = ACTIONS(9340), + [sym__redim_keyword] = ACTIONS(9340), + [aux_sym_get_accessor_token1] = ACTIONS(9340), + [aux_sym_set_accessor_token1] = ACTIONS(9340), + [aux_sym_const_declaration_token1] = ACTIONS(9340), + [anon_sym_LPAREN] = ACTIONS(9342), + [aux_sym_as_type_clause_token2] = ACTIONS(9340), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9340), + [aux_sym_visibility_token1] = ACTIONS(9340), + [aux_sym_visibility_token2] = ACTIONS(9340), + [aux_sym_elseif_fragment_token1] = ACTIONS(9340), + [aux_sym_else_fragment_token1] = ACTIONS(9340), + [aux_sym_select_statement_token1] = ACTIONS(9340), + [aux_sym__for_header_token1] = ACTIONS(9340), + [aux_sym_do_statement_token1] = ACTIONS(9340), + [aux_sym_do_condition_token1] = ACTIONS(9340), + [aux_sym_with_statement_token1] = ACTIONS(9340), + [aux_sym_exit_statement_token1] = ACTIONS(9340), + [sym_end_statement] = ACTIONS(9342), + [aux_sym_on_goto_statement_token1] = ACTIONS(9340), + [aux_sym_on_goto_statement_token2] = ACTIONS(9340), + [aux_sym_on_error_statement_token2] = ACTIONS(9340), + [sym__ambiguous_redim_statement] = ACTIONS(9342), + [aux_sym_erase_statement_token1] = ACTIONS(9340), + [aux_sym_open_statement_token1] = ACTIONS(9340), + [aux_sym_file_mode_token2] = ACTIONS(9340), + [aux_sym_file_access_token2] = ACTIONS(9340), + [aux_sym_file_lock_token2] = ACTIONS(9340), + [aux_sym_print_statement_token1] = ACTIONS(9340), + [anon_sym_PLUS] = ACTIONS(9342), + [anon_sym_DASH] = ACTIONS(9340), + [anon_sym_QMARK] = ACTIONS(9342), + [aux_sym_close_statement_token1] = ACTIONS(9340), + [aux_sym_put_statement_token1] = ACTIONS(9340), + [aux_sym_unlock_statement_token1] = ACTIONS(9340), + [aux_sym_seek_statement_token1] = ACTIONS(9340), + [sym_reset_statement] = ACTIONS(9340), + [aux_sym_raise_event_statement_token1] = ACTIONS(9340), + [sym_stop_statement] = ACTIONS(9340), + [sym_beep_statement] = ACTIONS(9340), + [aux_sym_unload_statement_token1] = ACTIONS(9340), + [aux_sym_def_type_statement_token1] = ACTIONS(9340), + [aux_sym_def_type_statement_token2] = ACTIONS(9340), + [aux_sym_def_type_statement_token3] = ACTIONS(9340), + [aux_sym_def_type_statement_token4] = ACTIONS(9340), + [aux_sym_def_type_statement_token5] = ACTIONS(9340), + [aux_sym_def_type_statement_token6] = ACTIONS(9340), + [aux_sym_def_type_statement_token7] = ACTIONS(9340), + [aux_sym_def_type_statement_token8] = ACTIONS(9340), + [aux_sym_def_type_statement_token9] = ACTIONS(9340), + [aux_sym_def_type_statement_token10] = ACTIONS(9340), + [aux_sym_def_type_statement_token11] = ACTIONS(9340), + [aux_sym_def_type_statement_token12] = ACTIONS(9340), + [aux_sym_def_type_statement_token13] = ACTIONS(9340), + [aux_sym_def_type_statement_token14] = ACTIONS(9340), + [aux_sym_call_statement_token1] = ACTIONS(9340), + [sym__ambiguous_call_statement] = ACTIONS(9340), + [aux_sym_addressof_expression_token1] = ACTIONS(9340), + [aux_sym_type_of_expression_token1] = ACTIONS(9340), + [aux_sym_unary_expression_token1] = ACTIONS(9340), + [sym_string_literal] = ACTIONS(9342), + [sym_number_literal] = ACTIONS(9342), + [aux_sym_boolean_literal_token1] = ACTIONS(9340), + [aux_sym_boolean_literal_token2] = ACTIONS(9340), + [sym_nothing_literal] = ACTIONS(9340), + [sym_null_literal] = ACTIONS(9340), + [sym_empty_literal] = ACTIONS(9340), + [sym_date_literal] = ACTIONS(9342), + [anon_sym_POUND] = ACTIONS(9340), + }, + [STATE(6735)] = { + [sym_identifier] = ACTIONS(9344), + [sym_newline] = ACTIONS(9346), + [anon_sym_COLON] = ACTIONS(9346), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9344), + [aux_sym_frm_property_statement_token1] = ACTIONS(9344), + [anon_sym_DOT] = ACTIONS(9344), + [anon_sym_BANG] = ACTIONS(9346), + [aux_sym__attribute_identifier_token1] = ACTIONS(9344), + [aux_sym_option_statement_token3] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9344), + [aux_sym_preprocessor_const_token1] = ACTIONS(9344), + [sym_static_modifier] = ACTIONS(9344), + [sym__dim_keyword] = ACTIONS(9344), + [sym__redim_keyword] = ACTIONS(9344), + [aux_sym_get_accessor_token1] = ACTIONS(9344), + [aux_sym_set_accessor_token1] = ACTIONS(9344), + [aux_sym_const_declaration_token1] = ACTIONS(9344), + [anon_sym_LPAREN] = ACTIONS(9346), + [aux_sym_as_type_clause_token2] = ACTIONS(9344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9344), + [aux_sym_visibility_token1] = ACTIONS(9344), + [aux_sym_visibility_token2] = ACTIONS(9344), + [aux_sym_elseif_fragment_token1] = ACTIONS(9344), + [aux_sym_else_fragment_token1] = ACTIONS(9344), + [aux_sym_select_statement_token1] = ACTIONS(9344), + [aux_sym__for_header_token1] = ACTIONS(9344), + [aux_sym_do_statement_token1] = ACTIONS(9344), + [aux_sym_do_condition_token1] = ACTIONS(9344), + [aux_sym_with_statement_token1] = ACTIONS(9344), + [aux_sym_exit_statement_token1] = ACTIONS(9344), + [sym_end_statement] = ACTIONS(9346), + [aux_sym_on_goto_statement_token1] = ACTIONS(9344), + [aux_sym_on_goto_statement_token2] = ACTIONS(9344), + [aux_sym_on_error_statement_token2] = ACTIONS(9344), + [sym__ambiguous_redim_statement] = ACTIONS(9346), + [aux_sym_erase_statement_token1] = ACTIONS(9344), + [aux_sym_open_statement_token1] = ACTIONS(9344), + [aux_sym_file_mode_token2] = ACTIONS(9344), + [aux_sym_file_access_token2] = ACTIONS(9344), + [aux_sym_file_lock_token2] = ACTIONS(9344), + [aux_sym_print_statement_token1] = ACTIONS(9344), + [anon_sym_PLUS] = ACTIONS(9346), + [anon_sym_DASH] = ACTIONS(9344), + [anon_sym_QMARK] = ACTIONS(9346), + [aux_sym_close_statement_token1] = ACTIONS(9344), + [aux_sym_put_statement_token1] = ACTIONS(9344), + [aux_sym_unlock_statement_token1] = ACTIONS(9344), + [aux_sym_seek_statement_token1] = ACTIONS(9344), + [sym_reset_statement] = ACTIONS(9344), + [aux_sym_raise_event_statement_token1] = ACTIONS(9344), + [sym_stop_statement] = ACTIONS(9344), + [sym_beep_statement] = ACTIONS(9344), + [aux_sym_unload_statement_token1] = ACTIONS(9344), + [aux_sym_def_type_statement_token1] = ACTIONS(9344), + [aux_sym_def_type_statement_token2] = ACTIONS(9344), + [aux_sym_def_type_statement_token3] = ACTIONS(9344), + [aux_sym_def_type_statement_token4] = ACTIONS(9344), + [aux_sym_def_type_statement_token5] = ACTIONS(9344), + [aux_sym_def_type_statement_token6] = ACTIONS(9344), + [aux_sym_def_type_statement_token7] = ACTIONS(9344), + [aux_sym_def_type_statement_token8] = ACTIONS(9344), + [aux_sym_def_type_statement_token9] = ACTIONS(9344), + [aux_sym_def_type_statement_token10] = ACTIONS(9344), + [aux_sym_def_type_statement_token11] = ACTIONS(9344), + [aux_sym_def_type_statement_token12] = ACTIONS(9344), + [aux_sym_def_type_statement_token13] = ACTIONS(9344), + [aux_sym_def_type_statement_token14] = ACTIONS(9344), + [aux_sym_call_statement_token1] = ACTIONS(9344), + [sym__ambiguous_call_statement] = ACTIONS(9344), + [aux_sym_addressof_expression_token1] = ACTIONS(9344), + [aux_sym_type_of_expression_token1] = ACTIONS(9344), + [aux_sym_unary_expression_token1] = ACTIONS(9344), + [sym_string_literal] = ACTIONS(9346), + [sym_number_literal] = ACTIONS(9346), + [aux_sym_boolean_literal_token1] = ACTIONS(9344), + [aux_sym_boolean_literal_token2] = ACTIONS(9344), + [sym_nothing_literal] = ACTIONS(9344), + [sym_null_literal] = ACTIONS(9344), + [sym_empty_literal] = ACTIONS(9344), + [sym_date_literal] = ACTIONS(9346), + [anon_sym_POUND] = ACTIONS(9344), + }, + [STATE(6736)] = { + [sym_identifier] = ACTIONS(9020), + [sym_newline] = ACTIONS(9022), + [anon_sym_COLON] = ACTIONS(9022), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9020), + [aux_sym_frm_property_statement_token1] = ACTIONS(9020), + [anon_sym_DOT] = ACTIONS(9020), + [anon_sym_BANG] = ACTIONS(9022), + [aux_sym__attribute_identifier_token1] = ACTIONS(9020), + [aux_sym_option_statement_token3] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9020), + [aux_sym_preprocessor_const_token1] = ACTIONS(9020), + [sym_static_modifier] = ACTIONS(9020), + [sym__dim_keyword] = ACTIONS(9020), + [sym__redim_keyword] = ACTIONS(9020), + [aux_sym_get_accessor_token1] = ACTIONS(9020), + [aux_sym_set_accessor_token1] = ACTIONS(9020), + [aux_sym_const_declaration_token1] = ACTIONS(9020), + [anon_sym_LPAREN] = ACTIONS(9022), + [aux_sym_as_type_clause_token2] = ACTIONS(9020), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9020), + [aux_sym_visibility_token1] = ACTIONS(9020), + [aux_sym_visibility_token2] = ACTIONS(9020), + [aux_sym_elseif_fragment_token1] = ACTIONS(9020), + [aux_sym_else_fragment_token1] = ACTIONS(9020), + [aux_sym_select_statement_token1] = ACTIONS(9020), + [aux_sym__for_header_token1] = ACTIONS(9020), + [aux_sym_do_statement_token1] = ACTIONS(9020), + [aux_sym_do_statement_token2] = ACTIONS(9020), + [aux_sym_do_condition_token1] = ACTIONS(9020), + [aux_sym_with_statement_token1] = ACTIONS(9020), + [aux_sym_exit_statement_token1] = ACTIONS(9020), + [sym_end_statement] = ACTIONS(9022), + [aux_sym_on_goto_statement_token1] = ACTIONS(9020), + [aux_sym_on_goto_statement_token2] = ACTIONS(9020), + [aux_sym_on_error_statement_token2] = ACTIONS(9020), + [sym__ambiguous_redim_statement] = ACTIONS(9022), + [aux_sym_erase_statement_token1] = ACTIONS(9020), + [aux_sym_open_statement_token1] = ACTIONS(9020), + [aux_sym_file_mode_token2] = ACTIONS(9020), + [aux_sym_file_access_token2] = ACTIONS(9020), + [aux_sym_file_lock_token2] = ACTIONS(9020), + [aux_sym_print_statement_token1] = ACTIONS(9020), + [anon_sym_PLUS] = ACTIONS(9022), + [anon_sym_DASH] = ACTIONS(9020), + [anon_sym_QMARK] = ACTIONS(9022), + [aux_sym_close_statement_token1] = ACTIONS(9020), + [aux_sym_put_statement_token1] = ACTIONS(9020), + [aux_sym_unlock_statement_token1] = ACTIONS(9020), + [aux_sym_seek_statement_token1] = ACTIONS(9020), + [sym_reset_statement] = ACTIONS(9020), + [aux_sym_raise_event_statement_token1] = ACTIONS(9020), + [sym_stop_statement] = ACTIONS(9020), + [sym_beep_statement] = ACTIONS(9020), + [aux_sym_unload_statement_token1] = ACTIONS(9020), + [aux_sym_def_type_statement_token1] = ACTIONS(9020), + [aux_sym_def_type_statement_token2] = ACTIONS(9020), + [aux_sym_def_type_statement_token3] = ACTIONS(9020), + [aux_sym_def_type_statement_token4] = ACTIONS(9020), + [aux_sym_def_type_statement_token5] = ACTIONS(9020), + [aux_sym_def_type_statement_token6] = ACTIONS(9020), + [aux_sym_def_type_statement_token7] = ACTIONS(9020), + [aux_sym_def_type_statement_token8] = ACTIONS(9020), + [aux_sym_def_type_statement_token9] = ACTIONS(9020), + [aux_sym_def_type_statement_token10] = ACTIONS(9020), + [aux_sym_def_type_statement_token11] = ACTIONS(9020), + [aux_sym_def_type_statement_token12] = ACTIONS(9020), + [aux_sym_def_type_statement_token13] = ACTIONS(9020), + [aux_sym_def_type_statement_token14] = ACTIONS(9020), + [aux_sym_call_statement_token1] = ACTIONS(9020), + [sym__ambiguous_call_statement] = ACTIONS(9020), + [aux_sym_addressof_expression_token1] = ACTIONS(9020), + [aux_sym_type_of_expression_token1] = ACTIONS(9020), + [aux_sym_unary_expression_token1] = ACTIONS(9020), + [sym_string_literal] = ACTIONS(9022), + [sym_number_literal] = ACTIONS(9022), + [aux_sym_boolean_literal_token1] = ACTIONS(9020), + [aux_sym_boolean_literal_token2] = ACTIONS(9020), + [sym_nothing_literal] = ACTIONS(9020), + [sym_null_literal] = ACTIONS(9020), + [sym_empty_literal] = ACTIONS(9020), + [sym_date_literal] = ACTIONS(9022), + [anon_sym_POUND] = ACTIONS(9020), + }, + [STATE(6737)] = { + [sym_identifier] = ACTIONS(8312), + [sym_newline] = ACTIONS(8314), + [anon_sym_COLON] = ACTIONS(8314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8312), + [aux_sym_frm_property_statement_token1] = ACTIONS(8312), + [anon_sym_DOT] = ACTIONS(8312), + [anon_sym_BANG] = ACTIONS(8314), + [aux_sym__attribute_identifier_token1] = ACTIONS(8312), + [aux_sym_option_statement_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8312), + [aux_sym_preprocessor_const_token1] = ACTIONS(8312), + [sym_static_modifier] = ACTIONS(8312), + [sym__dim_keyword] = ACTIONS(8312), + [sym__redim_keyword] = ACTIONS(8312), + [aux_sym_get_accessor_token1] = ACTIONS(8312), + [aux_sym_set_accessor_token1] = ACTIONS(8312), + [aux_sym_const_declaration_token1] = ACTIONS(8312), + [anon_sym_LPAREN] = ACTIONS(8314), + [aux_sym_as_type_clause_token2] = ACTIONS(8312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8312), + [aux_sym_visibility_token1] = ACTIONS(8312), + [aux_sym_visibility_token2] = ACTIONS(8312), + [aux_sym_elseif_fragment_token1] = ACTIONS(8312), + [aux_sym_else_fragment_token1] = ACTIONS(8312), + [aux_sym_select_statement_token1] = ACTIONS(8312), + [aux_sym_select_statement_token2] = ACTIONS(8312), + [aux_sym__for_header_token1] = ACTIONS(8312), + [aux_sym_do_statement_token1] = ACTIONS(8312), + [aux_sym_do_condition_token1] = ACTIONS(8312), + [aux_sym_with_statement_token1] = ACTIONS(8312), + [aux_sym_exit_statement_token1] = ACTIONS(8312), + [sym_end_statement] = ACTIONS(8314), + [aux_sym_on_goto_statement_token1] = ACTIONS(8312), + [aux_sym_on_goto_statement_token2] = ACTIONS(8312), + [aux_sym_on_error_statement_token2] = ACTIONS(8312), + [sym__ambiguous_redim_statement] = ACTIONS(8314), + [aux_sym_erase_statement_token1] = ACTIONS(8312), + [aux_sym_open_statement_token1] = ACTIONS(8312), + [aux_sym_file_mode_token2] = ACTIONS(8312), + [aux_sym_file_access_token2] = ACTIONS(8312), + [aux_sym_file_lock_token2] = ACTIONS(8312), + [aux_sym_print_statement_token1] = ACTIONS(8312), + [anon_sym_PLUS] = ACTIONS(8314), + [anon_sym_DASH] = ACTIONS(8312), + [anon_sym_QMARK] = ACTIONS(8314), + [aux_sym_close_statement_token1] = ACTIONS(8312), + [aux_sym_put_statement_token1] = ACTIONS(8312), + [aux_sym_unlock_statement_token1] = ACTIONS(8312), + [aux_sym_seek_statement_token1] = ACTIONS(8312), + [sym_reset_statement] = ACTIONS(8312), + [aux_sym_raise_event_statement_token1] = ACTIONS(8312), + [sym_stop_statement] = ACTIONS(8312), + [sym_beep_statement] = ACTIONS(8312), + [aux_sym_unload_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token2] = ACTIONS(8312), + [aux_sym_def_type_statement_token3] = ACTIONS(8312), + [aux_sym_def_type_statement_token4] = ACTIONS(8312), + [aux_sym_def_type_statement_token5] = ACTIONS(8312), + [aux_sym_def_type_statement_token6] = ACTIONS(8312), + [aux_sym_def_type_statement_token7] = ACTIONS(8312), + [aux_sym_def_type_statement_token8] = ACTIONS(8312), + [aux_sym_def_type_statement_token9] = ACTIONS(8312), + [aux_sym_def_type_statement_token10] = ACTIONS(8312), + [aux_sym_def_type_statement_token11] = ACTIONS(8312), + [aux_sym_def_type_statement_token12] = ACTIONS(8312), + [aux_sym_def_type_statement_token13] = ACTIONS(8312), + [aux_sym_def_type_statement_token14] = ACTIONS(8312), + [aux_sym_call_statement_token1] = ACTIONS(8312), + [sym__ambiguous_call_statement] = ACTIONS(8312), + [aux_sym_addressof_expression_token1] = ACTIONS(8312), + [aux_sym_type_of_expression_token1] = ACTIONS(8312), + [aux_sym_unary_expression_token1] = ACTIONS(8312), + [sym_string_literal] = ACTIONS(8314), + [sym_number_literal] = ACTIONS(8314), + [aux_sym_boolean_literal_token1] = ACTIONS(8312), + [aux_sym_boolean_literal_token2] = ACTIONS(8312), + [sym_nothing_literal] = ACTIONS(8312), + [sym_null_literal] = ACTIONS(8312), + [sym_empty_literal] = ACTIONS(8312), + [sym_date_literal] = ACTIONS(8314), + [anon_sym_POUND] = ACTIONS(8312), + }, + [STATE(6738)] = { + [sym_identifier] = ACTIONS(9156), + [sym_newline] = ACTIONS(9158), + [anon_sym_COLON] = ACTIONS(9158), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9156), + [aux_sym_frm_property_statement_token1] = ACTIONS(9156), + [anon_sym_DOT] = ACTIONS(9156), + [anon_sym_BANG] = ACTIONS(9158), + [aux_sym__attribute_identifier_token1] = ACTIONS(9156), + [aux_sym_option_statement_token3] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9156), + [aux_sym_preprocessor_const_token1] = ACTIONS(9156), + [sym_static_modifier] = ACTIONS(9156), + [sym__dim_keyword] = ACTIONS(9156), + [sym__redim_keyword] = ACTIONS(9156), + [aux_sym_get_accessor_token1] = ACTIONS(9156), + [aux_sym_set_accessor_token1] = ACTIONS(9156), + [aux_sym_const_declaration_token1] = ACTIONS(9156), + [anon_sym_LPAREN] = ACTIONS(9158), + [aux_sym_as_type_clause_token2] = ACTIONS(9156), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9156), + [aux_sym_visibility_token1] = ACTIONS(9156), + [aux_sym_visibility_token2] = ACTIONS(9156), + [aux_sym_elseif_fragment_token1] = ACTIONS(9156), + [aux_sym_else_fragment_token1] = ACTIONS(9156), + [aux_sym_select_statement_token1] = ACTIONS(9156), + [aux_sym_select_statement_token2] = ACTIONS(9156), + [aux_sym__for_header_token1] = ACTIONS(9156), + [aux_sym_do_statement_token1] = ACTIONS(9156), + [aux_sym_do_condition_token1] = ACTIONS(9156), + [aux_sym_with_statement_token1] = ACTIONS(9156), + [aux_sym_exit_statement_token1] = ACTIONS(9156), + [sym_end_statement] = ACTIONS(9158), + [aux_sym_on_goto_statement_token1] = ACTIONS(9156), + [aux_sym_on_goto_statement_token2] = ACTIONS(9156), + [aux_sym_on_error_statement_token2] = ACTIONS(9156), + [sym__ambiguous_redim_statement] = ACTIONS(9158), + [aux_sym_erase_statement_token1] = ACTIONS(9156), + [aux_sym_open_statement_token1] = ACTIONS(9156), + [aux_sym_file_mode_token2] = ACTIONS(9156), + [aux_sym_file_access_token2] = ACTIONS(9156), + [aux_sym_file_lock_token2] = ACTIONS(9156), + [aux_sym_print_statement_token1] = ACTIONS(9156), + [anon_sym_PLUS] = ACTIONS(9158), + [anon_sym_DASH] = ACTIONS(9156), + [anon_sym_QMARK] = ACTIONS(9158), + [aux_sym_close_statement_token1] = ACTIONS(9156), + [aux_sym_put_statement_token1] = ACTIONS(9156), + [aux_sym_unlock_statement_token1] = ACTIONS(9156), + [aux_sym_seek_statement_token1] = ACTIONS(9156), + [sym_reset_statement] = ACTIONS(9156), + [aux_sym_raise_event_statement_token1] = ACTIONS(9156), + [sym_stop_statement] = ACTIONS(9156), + [sym_beep_statement] = ACTIONS(9156), + [aux_sym_unload_statement_token1] = ACTIONS(9156), + [aux_sym_def_type_statement_token1] = ACTIONS(9156), + [aux_sym_def_type_statement_token2] = ACTIONS(9156), + [aux_sym_def_type_statement_token3] = ACTIONS(9156), + [aux_sym_def_type_statement_token4] = ACTIONS(9156), + [aux_sym_def_type_statement_token5] = ACTIONS(9156), + [aux_sym_def_type_statement_token6] = ACTIONS(9156), + [aux_sym_def_type_statement_token7] = ACTIONS(9156), + [aux_sym_def_type_statement_token8] = ACTIONS(9156), + [aux_sym_def_type_statement_token9] = ACTIONS(9156), + [aux_sym_def_type_statement_token10] = ACTIONS(9156), + [aux_sym_def_type_statement_token11] = ACTIONS(9156), + [aux_sym_def_type_statement_token12] = ACTIONS(9156), + [aux_sym_def_type_statement_token13] = ACTIONS(9156), + [aux_sym_def_type_statement_token14] = ACTIONS(9156), + [aux_sym_call_statement_token1] = ACTIONS(9156), + [sym__ambiguous_call_statement] = ACTIONS(9156), + [aux_sym_addressof_expression_token1] = ACTIONS(9156), + [aux_sym_type_of_expression_token1] = ACTIONS(9156), + [aux_sym_unary_expression_token1] = ACTIONS(9156), + [sym_string_literal] = ACTIONS(9158), + [sym_number_literal] = ACTIONS(9158), + [aux_sym_boolean_literal_token1] = ACTIONS(9156), + [aux_sym_boolean_literal_token2] = ACTIONS(9156), + [sym_nothing_literal] = ACTIONS(9156), + [sym_null_literal] = ACTIONS(9156), + [sym_empty_literal] = ACTIONS(9156), + [sym_date_literal] = ACTIONS(9158), + [anon_sym_POUND] = ACTIONS(9156), + }, + [STATE(6739)] = { + [sym_identifier] = ACTIONS(9160), + [sym_newline] = ACTIONS(9162), + [anon_sym_COLON] = ACTIONS(9162), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9160), + [aux_sym_frm_property_statement_token1] = ACTIONS(9160), + [anon_sym_DOT] = ACTIONS(9160), + [anon_sym_BANG] = ACTIONS(9162), + [aux_sym__attribute_identifier_token1] = ACTIONS(9160), + [aux_sym_option_statement_token3] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9160), + [aux_sym_preprocessor_const_token1] = ACTIONS(9160), + [sym_static_modifier] = ACTIONS(9160), + [sym__dim_keyword] = ACTIONS(9160), + [sym__redim_keyword] = ACTIONS(9160), + [aux_sym_get_accessor_token1] = ACTIONS(9160), + [aux_sym_set_accessor_token1] = ACTIONS(9160), + [aux_sym_const_declaration_token1] = ACTIONS(9160), + [anon_sym_LPAREN] = ACTIONS(9162), + [aux_sym_as_type_clause_token2] = ACTIONS(9160), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9160), + [aux_sym_visibility_token1] = ACTIONS(9160), + [aux_sym_visibility_token2] = ACTIONS(9160), + [aux_sym_elseif_fragment_token1] = ACTIONS(9160), + [aux_sym_else_fragment_token1] = ACTIONS(9160), + [aux_sym_select_statement_token1] = ACTIONS(9160), + [aux_sym_select_statement_token2] = ACTIONS(9160), + [aux_sym__for_header_token1] = ACTIONS(9160), + [aux_sym_do_statement_token1] = ACTIONS(9160), + [aux_sym_do_condition_token1] = ACTIONS(9160), + [aux_sym_with_statement_token1] = ACTIONS(9160), + [aux_sym_exit_statement_token1] = ACTIONS(9160), + [sym_end_statement] = ACTIONS(9162), + [aux_sym_on_goto_statement_token1] = ACTIONS(9160), + [aux_sym_on_goto_statement_token2] = ACTIONS(9160), + [aux_sym_on_error_statement_token2] = ACTIONS(9160), + [sym__ambiguous_redim_statement] = ACTIONS(9162), + [aux_sym_erase_statement_token1] = ACTIONS(9160), + [aux_sym_open_statement_token1] = ACTIONS(9160), + [aux_sym_file_mode_token2] = ACTIONS(9160), + [aux_sym_file_access_token2] = ACTIONS(9160), + [aux_sym_file_lock_token2] = ACTIONS(9160), + [aux_sym_print_statement_token1] = ACTIONS(9160), + [anon_sym_PLUS] = ACTIONS(9162), + [anon_sym_DASH] = ACTIONS(9160), + [anon_sym_QMARK] = ACTIONS(9162), + [aux_sym_close_statement_token1] = ACTIONS(9160), + [aux_sym_put_statement_token1] = ACTIONS(9160), + [aux_sym_unlock_statement_token1] = ACTIONS(9160), + [aux_sym_seek_statement_token1] = ACTIONS(9160), + [sym_reset_statement] = ACTIONS(9160), + [aux_sym_raise_event_statement_token1] = ACTIONS(9160), + [sym_stop_statement] = ACTIONS(9160), + [sym_beep_statement] = ACTIONS(9160), + [aux_sym_unload_statement_token1] = ACTIONS(9160), + [aux_sym_def_type_statement_token1] = ACTIONS(9160), + [aux_sym_def_type_statement_token2] = ACTIONS(9160), + [aux_sym_def_type_statement_token3] = ACTIONS(9160), + [aux_sym_def_type_statement_token4] = ACTIONS(9160), + [aux_sym_def_type_statement_token5] = ACTIONS(9160), + [aux_sym_def_type_statement_token6] = ACTIONS(9160), + [aux_sym_def_type_statement_token7] = ACTIONS(9160), + [aux_sym_def_type_statement_token8] = ACTIONS(9160), + [aux_sym_def_type_statement_token9] = ACTIONS(9160), + [aux_sym_def_type_statement_token10] = ACTIONS(9160), + [aux_sym_def_type_statement_token11] = ACTIONS(9160), + [aux_sym_def_type_statement_token12] = ACTIONS(9160), + [aux_sym_def_type_statement_token13] = ACTIONS(9160), + [aux_sym_def_type_statement_token14] = ACTIONS(9160), + [aux_sym_call_statement_token1] = ACTIONS(9160), + [sym__ambiguous_call_statement] = ACTIONS(9160), + [aux_sym_addressof_expression_token1] = ACTIONS(9160), + [aux_sym_type_of_expression_token1] = ACTIONS(9160), + [aux_sym_unary_expression_token1] = ACTIONS(9160), + [sym_string_literal] = ACTIONS(9162), + [sym_number_literal] = ACTIONS(9162), + [aux_sym_boolean_literal_token1] = ACTIONS(9160), + [aux_sym_boolean_literal_token2] = ACTIONS(9160), + [sym_nothing_literal] = ACTIONS(9160), + [sym_null_literal] = ACTIONS(9160), + [sym_empty_literal] = ACTIONS(9160), + [sym_date_literal] = ACTIONS(9162), + [anon_sym_POUND] = ACTIONS(9160), + }, + [STATE(6740)] = { + [sym_identifier] = ACTIONS(9172), + [sym_newline] = ACTIONS(9174), + [anon_sym_COLON] = ACTIONS(9174), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9172), + [aux_sym_frm_property_statement_token1] = ACTIONS(9172), + [anon_sym_DOT] = ACTIONS(9172), + [anon_sym_BANG] = ACTIONS(9174), + [aux_sym__attribute_identifier_token1] = ACTIONS(9172), + [aux_sym_option_statement_token3] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9172), + [aux_sym_preprocessor_const_token1] = ACTIONS(9172), + [sym_static_modifier] = ACTIONS(9172), + [sym__dim_keyword] = ACTIONS(9172), + [sym__redim_keyword] = ACTIONS(9172), + [aux_sym_get_accessor_token1] = ACTIONS(9172), + [aux_sym_set_accessor_token1] = ACTIONS(9172), + [aux_sym_const_declaration_token1] = ACTIONS(9172), + [anon_sym_LPAREN] = ACTIONS(9174), + [aux_sym_as_type_clause_token2] = ACTIONS(9172), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9172), + [aux_sym_visibility_token1] = ACTIONS(9172), + [aux_sym_visibility_token2] = ACTIONS(9172), + [aux_sym_elseif_fragment_token1] = ACTIONS(9172), + [aux_sym_else_fragment_token1] = ACTIONS(9172), + [aux_sym_select_statement_token1] = ACTIONS(9172), + [aux_sym_select_statement_token2] = ACTIONS(9172), + [aux_sym__for_header_token1] = ACTIONS(9172), + [aux_sym_do_statement_token1] = ACTIONS(9172), + [aux_sym_do_condition_token1] = ACTIONS(9172), + [aux_sym_with_statement_token1] = ACTIONS(9172), + [aux_sym_exit_statement_token1] = ACTIONS(9172), + [sym_end_statement] = ACTIONS(9174), + [aux_sym_on_goto_statement_token1] = ACTIONS(9172), + [aux_sym_on_goto_statement_token2] = ACTIONS(9172), + [aux_sym_on_error_statement_token2] = ACTIONS(9172), + [sym__ambiguous_redim_statement] = ACTIONS(9174), + [aux_sym_erase_statement_token1] = ACTIONS(9172), + [aux_sym_open_statement_token1] = ACTIONS(9172), + [aux_sym_file_mode_token2] = ACTIONS(9172), + [aux_sym_file_access_token2] = ACTIONS(9172), + [aux_sym_file_lock_token2] = ACTIONS(9172), + [aux_sym_print_statement_token1] = ACTIONS(9172), + [anon_sym_PLUS] = ACTIONS(9174), + [anon_sym_DASH] = ACTIONS(9172), + [anon_sym_QMARK] = ACTIONS(9174), + [aux_sym_close_statement_token1] = ACTIONS(9172), + [aux_sym_put_statement_token1] = ACTIONS(9172), + [aux_sym_unlock_statement_token1] = ACTIONS(9172), + [aux_sym_seek_statement_token1] = ACTIONS(9172), + [sym_reset_statement] = ACTIONS(9172), + [aux_sym_raise_event_statement_token1] = ACTIONS(9172), + [sym_stop_statement] = ACTIONS(9172), + [sym_beep_statement] = ACTIONS(9172), + [aux_sym_unload_statement_token1] = ACTIONS(9172), + [aux_sym_def_type_statement_token1] = ACTIONS(9172), + [aux_sym_def_type_statement_token2] = ACTIONS(9172), + [aux_sym_def_type_statement_token3] = ACTIONS(9172), + [aux_sym_def_type_statement_token4] = ACTIONS(9172), + [aux_sym_def_type_statement_token5] = ACTIONS(9172), + [aux_sym_def_type_statement_token6] = ACTIONS(9172), + [aux_sym_def_type_statement_token7] = ACTIONS(9172), + [aux_sym_def_type_statement_token8] = ACTIONS(9172), + [aux_sym_def_type_statement_token9] = ACTIONS(9172), + [aux_sym_def_type_statement_token10] = ACTIONS(9172), + [aux_sym_def_type_statement_token11] = ACTIONS(9172), + [aux_sym_def_type_statement_token12] = ACTIONS(9172), + [aux_sym_def_type_statement_token13] = ACTIONS(9172), + [aux_sym_def_type_statement_token14] = ACTIONS(9172), + [aux_sym_call_statement_token1] = ACTIONS(9172), + [sym__ambiguous_call_statement] = ACTIONS(9172), + [aux_sym_addressof_expression_token1] = ACTIONS(9172), + [aux_sym_type_of_expression_token1] = ACTIONS(9172), + [aux_sym_unary_expression_token1] = ACTIONS(9172), + [sym_string_literal] = ACTIONS(9174), + [sym_number_literal] = ACTIONS(9174), + [aux_sym_boolean_literal_token1] = ACTIONS(9172), + [aux_sym_boolean_literal_token2] = ACTIONS(9172), + [sym_nothing_literal] = ACTIONS(9172), + [sym_null_literal] = ACTIONS(9172), + [sym_empty_literal] = ACTIONS(9172), + [sym_date_literal] = ACTIONS(9174), + [anon_sym_POUND] = ACTIONS(9172), + }, + [STATE(6741)] = { + [sym_identifier] = ACTIONS(8624), + [sym_newline] = ACTIONS(8626), + [anon_sym_COLON] = ACTIONS(8626), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8624), + [aux_sym_frm_property_statement_token1] = ACTIONS(8624), + [anon_sym_DOT] = ACTIONS(8624), + [anon_sym_BANG] = ACTIONS(8626), + [aux_sym__attribute_identifier_token1] = ACTIONS(8624), + [aux_sym_option_statement_token3] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8624), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8624), + [aux_sym_preprocessor_const_token1] = ACTIONS(8624), + [sym_static_modifier] = ACTIONS(8624), + [sym__dim_keyword] = ACTIONS(8624), + [sym__redim_keyword] = ACTIONS(8624), + [aux_sym_get_accessor_token1] = ACTIONS(8624), + [aux_sym_set_accessor_token1] = ACTIONS(8624), + [aux_sym_const_declaration_token1] = ACTIONS(8624), + [anon_sym_LPAREN] = ACTIONS(8626), + [aux_sym_as_type_clause_token2] = ACTIONS(8624), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8624), + [aux_sym_visibility_token1] = ACTIONS(8624), + [aux_sym_visibility_token2] = ACTIONS(8624), + [aux_sym_elseif_fragment_token1] = ACTIONS(8624), + [aux_sym_else_fragment_token1] = ACTIONS(8624), + [aux_sym_select_statement_token1] = ACTIONS(8624), + [aux_sym__for_header_token1] = ACTIONS(8624), + [aux_sym_do_statement_token1] = ACTIONS(8624), + [aux_sym_do_condition_token1] = ACTIONS(8624), + [aux_sym_with_statement_token1] = ACTIONS(8624), + [aux_sym_exit_statement_token1] = ACTIONS(8624), + [sym_end_statement] = ACTIONS(8626), + [aux_sym_on_goto_statement_token1] = ACTIONS(8624), + [aux_sym_on_goto_statement_token2] = ACTIONS(8624), + [aux_sym_on_error_statement_token2] = ACTIONS(8624), + [sym__ambiguous_redim_statement] = ACTIONS(8626), + [aux_sym_erase_statement_token1] = ACTIONS(8624), + [aux_sym_open_statement_token1] = ACTIONS(8624), + [aux_sym_open_statement_token3] = ACTIONS(11134), + [aux_sym_file_mode_token2] = ACTIONS(8624), + [aux_sym_file_access_token2] = ACTIONS(8624), + [aux_sym_file_lock_token2] = ACTIONS(8624), + [aux_sym_print_statement_token1] = ACTIONS(8624), + [anon_sym_PLUS] = ACTIONS(8626), + [anon_sym_DASH] = ACTIONS(8624), + [anon_sym_QMARK] = ACTIONS(8626), + [aux_sym_close_statement_token1] = ACTIONS(8624), + [aux_sym_put_statement_token1] = ACTIONS(8624), + [aux_sym_unlock_statement_token1] = ACTIONS(8624), + [aux_sym_seek_statement_token1] = ACTIONS(8624), + [sym_reset_statement] = ACTIONS(8624), + [aux_sym_raise_event_statement_token1] = ACTIONS(8624), + [sym_stop_statement] = ACTIONS(8624), + [sym_beep_statement] = ACTIONS(8624), + [aux_sym_unload_statement_token1] = ACTIONS(8624), + [aux_sym_def_type_statement_token1] = ACTIONS(8624), + [aux_sym_def_type_statement_token2] = ACTIONS(8624), + [aux_sym_def_type_statement_token3] = ACTIONS(8624), + [aux_sym_def_type_statement_token4] = ACTIONS(8624), + [aux_sym_def_type_statement_token5] = ACTIONS(8624), + [aux_sym_def_type_statement_token6] = ACTIONS(8624), + [aux_sym_def_type_statement_token7] = ACTIONS(8624), + [aux_sym_def_type_statement_token8] = ACTIONS(8624), + [aux_sym_def_type_statement_token9] = ACTIONS(8624), + [aux_sym_def_type_statement_token10] = ACTIONS(8624), + [aux_sym_def_type_statement_token11] = ACTIONS(8624), + [aux_sym_def_type_statement_token12] = ACTIONS(8624), + [aux_sym_def_type_statement_token13] = ACTIONS(8624), + [aux_sym_def_type_statement_token14] = ACTIONS(8624), + [aux_sym_call_statement_token1] = ACTIONS(8624), + [sym__ambiguous_call_statement] = ACTIONS(8624), + [aux_sym_addressof_expression_token1] = ACTIONS(8624), + [aux_sym_type_of_expression_token1] = ACTIONS(8624), + [aux_sym_unary_expression_token1] = ACTIONS(8624), + [sym_string_literal] = ACTIONS(8626), + [sym_number_literal] = ACTIONS(8626), + [aux_sym_boolean_literal_token1] = ACTIONS(8624), + [aux_sym_boolean_literal_token2] = ACTIONS(8624), + [sym_nothing_literal] = ACTIONS(8624), + [sym_null_literal] = ACTIONS(8624), + [sym_empty_literal] = ACTIONS(8624), + [sym_date_literal] = ACTIONS(8626), + [anon_sym_POUND] = ACTIONS(8624), + }, + [STATE(6742)] = { + [sym_identifier] = ACTIONS(8467), + [sym_newline] = ACTIONS(6089), + [anon_sym_COLON] = ACTIONS(6089), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8467), + [aux_sym_frm_property_statement_token1] = ACTIONS(8467), + [anon_sym_DOT] = ACTIONS(8467), + [anon_sym_BANG] = ACTIONS(6089), + [aux_sym__attribute_identifier_token1] = ACTIONS(8467), + [aux_sym_option_statement_token3] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8467), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8467), + [aux_sym_preprocessor_const_token1] = ACTIONS(8467), + [sym_static_modifier] = ACTIONS(8467), + [sym__dim_keyword] = ACTIONS(8467), + [sym__redim_keyword] = ACTIONS(8467), + [aux_sym_get_accessor_token1] = ACTIONS(8467), + [aux_sym_set_accessor_token1] = ACTIONS(8467), + [anon_sym_COMMA] = ACTIONS(6089), + [aux_sym_const_declaration_token1] = ACTIONS(8467), + [anon_sym_LPAREN] = ACTIONS(6089), + [aux_sym_as_type_clause_token2] = ACTIONS(8467), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8467), + [aux_sym_visibility_token1] = ACTIONS(8467), + [aux_sym_visibility_token2] = ACTIONS(8467), + [aux_sym_elseif_fragment_token1] = ACTIONS(8467), + [aux_sym_else_fragment_token1] = ACTIONS(8467), + [aux_sym_select_statement_token1] = ACTIONS(8467), + [aux_sym__for_header_token1] = ACTIONS(8467), + [aux_sym_do_statement_token1] = ACTIONS(8467), + [aux_sym_do_condition_token1] = ACTIONS(8467), + [aux_sym_with_statement_token1] = ACTIONS(8467), + [aux_sym_exit_statement_token1] = ACTIONS(8467), + [sym_end_statement] = ACTIONS(6089), + [aux_sym_on_goto_statement_token1] = ACTIONS(8467), + [aux_sym_on_goto_statement_token2] = ACTIONS(8467), + [aux_sym_on_error_statement_token2] = ACTIONS(8467), + [sym__ambiguous_redim_statement] = ACTIONS(6089), + [aux_sym_erase_statement_token1] = ACTIONS(8467), + [aux_sym_open_statement_token1] = ACTIONS(8467), + [aux_sym_file_mode_token2] = ACTIONS(8467), + [aux_sym_file_access_token2] = ACTIONS(8467), + [aux_sym_file_lock_token2] = ACTIONS(8467), + [aux_sym_print_statement_token1] = ACTIONS(8467), + [anon_sym_PLUS] = ACTIONS(6089), + [anon_sym_DASH] = ACTIONS(8467), + [anon_sym_QMARK] = ACTIONS(6089), + [aux_sym_close_statement_token1] = ACTIONS(8467), + [aux_sym_put_statement_token1] = ACTIONS(8467), + [aux_sym_unlock_statement_token1] = ACTIONS(8467), + [aux_sym_seek_statement_token1] = ACTIONS(8467), + [sym_reset_statement] = ACTIONS(8467), + [aux_sym_raise_event_statement_token1] = ACTIONS(8467), + [sym_stop_statement] = ACTIONS(8467), + [sym_beep_statement] = ACTIONS(8467), + [aux_sym_unload_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token1] = ACTIONS(8467), + [aux_sym_def_type_statement_token2] = ACTIONS(8467), + [aux_sym_def_type_statement_token3] = ACTIONS(8467), + [aux_sym_def_type_statement_token4] = ACTIONS(8467), + [aux_sym_def_type_statement_token5] = ACTIONS(8467), + [aux_sym_def_type_statement_token6] = ACTIONS(8467), + [aux_sym_def_type_statement_token7] = ACTIONS(8467), + [aux_sym_def_type_statement_token8] = ACTIONS(8467), + [aux_sym_def_type_statement_token9] = ACTIONS(8467), + [aux_sym_def_type_statement_token10] = ACTIONS(8467), + [aux_sym_def_type_statement_token11] = ACTIONS(8467), + [aux_sym_def_type_statement_token12] = ACTIONS(8467), + [aux_sym_def_type_statement_token13] = ACTIONS(8467), + [aux_sym_def_type_statement_token14] = ACTIONS(8467), + [aux_sym_call_statement_token1] = ACTIONS(8467), + [sym__ambiguous_call_statement] = ACTIONS(8467), + [aux_sym_addressof_expression_token1] = ACTIONS(8467), + [aux_sym_type_of_expression_token1] = ACTIONS(8467), + [aux_sym_unary_expression_token1] = ACTIONS(8467), + [sym_string_literal] = ACTIONS(6089), + [sym_number_literal] = ACTIONS(6089), + [aux_sym_boolean_literal_token1] = ACTIONS(8467), + [aux_sym_boolean_literal_token2] = ACTIONS(8467), + [sym_nothing_literal] = ACTIONS(8467), + [sym_null_literal] = ACTIONS(8467), + [sym_empty_literal] = ACTIONS(8467), + [sym_date_literal] = ACTIONS(6089), + [anon_sym_POUND] = ACTIONS(8467), + }, + [STATE(6743)] = { + [sym_identifier] = ACTIONS(5562), + [sym_newline] = ACTIONS(5558), + [anon_sym_COLON] = ACTIONS(5558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(5562), + [aux_sym_frm_property_statement_token1] = ACTIONS(5562), + [anon_sym_DOT] = ACTIONS(10994), + [anon_sym_BANG] = ACTIONS(10996), + [aux_sym__attribute_identifier_token1] = ACTIONS(5562), + [aux_sym_option_statement_token3] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(5562), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(5562), + [aux_sym_preprocessor_const_token1] = ACTIONS(5562), + [sym_static_modifier] = ACTIONS(5562), + [sym__dim_keyword] = ACTIONS(5562), + [sym__redim_keyword] = ACTIONS(5562), + [aux_sym_get_accessor_token1] = ACTIONS(5562), + [aux_sym_set_accessor_token1] = ACTIONS(5562), + [anon_sym_COMMA] = ACTIONS(5558), + [aux_sym_const_declaration_token1] = ACTIONS(5562), + [anon_sym_LPAREN] = ACTIONS(5558), + [aux_sym_as_type_clause_token2] = ACTIONS(5562), + [aux_sym_dotted_type_expression_token1] = ACTIONS(5562), + [aux_sym_visibility_token1] = ACTIONS(5562), + [aux_sym_visibility_token2] = ACTIONS(5562), + [aux_sym_elseif_fragment_token1] = ACTIONS(5562), + [aux_sym_else_fragment_token1] = ACTIONS(5562), + [aux_sym_select_statement_token1] = ACTIONS(5562), + [aux_sym__for_header_token1] = ACTIONS(5562), + [aux_sym_do_statement_token1] = ACTIONS(5562), + [aux_sym_do_condition_token1] = ACTIONS(5562), + [aux_sym_with_statement_token1] = ACTIONS(5562), + [aux_sym_exit_statement_token1] = ACTIONS(5562), + [sym_end_statement] = ACTIONS(5558), + [aux_sym_on_goto_statement_token1] = ACTIONS(5562), + [aux_sym_on_goto_statement_token2] = ACTIONS(5562), + [aux_sym_on_error_statement_token2] = ACTIONS(5562), + [sym__ambiguous_redim_statement] = ACTIONS(5558), + [aux_sym_erase_statement_token1] = ACTIONS(5562), + [aux_sym_open_statement_token1] = ACTIONS(5562), + [aux_sym_file_mode_token2] = ACTIONS(5562), + [aux_sym_file_access_token2] = ACTIONS(5562), + [aux_sym_file_lock_token2] = ACTIONS(5562), + [aux_sym_print_statement_token1] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_QMARK] = ACTIONS(5558), + [aux_sym_close_statement_token1] = ACTIONS(5562), + [aux_sym_put_statement_token1] = ACTIONS(5562), + [aux_sym_unlock_statement_token1] = ACTIONS(5562), + [aux_sym_seek_statement_token1] = ACTIONS(5562), + [sym_reset_statement] = ACTIONS(5562), + [aux_sym_raise_event_statement_token1] = ACTIONS(5562), + [sym_stop_statement] = ACTIONS(5562), + [sym_beep_statement] = ACTIONS(5562), + [aux_sym_unload_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token1] = ACTIONS(5562), + [aux_sym_def_type_statement_token2] = ACTIONS(5562), + [aux_sym_def_type_statement_token3] = ACTIONS(5562), + [aux_sym_def_type_statement_token4] = ACTIONS(5562), + [aux_sym_def_type_statement_token5] = ACTIONS(5562), + [aux_sym_def_type_statement_token6] = ACTIONS(5562), + [aux_sym_def_type_statement_token7] = ACTIONS(5562), + [aux_sym_def_type_statement_token8] = ACTIONS(5562), + [aux_sym_def_type_statement_token9] = ACTIONS(5562), + [aux_sym_def_type_statement_token10] = ACTIONS(5562), + [aux_sym_def_type_statement_token11] = ACTIONS(5562), + [aux_sym_def_type_statement_token12] = ACTIONS(5562), + [aux_sym_def_type_statement_token13] = ACTIONS(5562), + [aux_sym_def_type_statement_token14] = ACTIONS(5562), + [aux_sym_call_statement_token1] = ACTIONS(5562), + [sym__ambiguous_call_statement] = ACTIONS(5562), + [aux_sym_addressof_expression_token1] = ACTIONS(5562), + [aux_sym_type_of_expression_token1] = ACTIONS(5562), + [aux_sym_unary_expression_token1] = ACTIONS(5562), + [sym_string_literal] = ACTIONS(5558), + [sym_number_literal] = ACTIONS(5558), + [aux_sym_boolean_literal_token1] = ACTIONS(5562), + [aux_sym_boolean_literal_token2] = ACTIONS(5562), + [sym_nothing_literal] = ACTIONS(5562), + [sym_null_literal] = ACTIONS(5562), + [sym_empty_literal] = ACTIONS(5562), + [sym_date_literal] = ACTIONS(5558), + [anon_sym_POUND] = ACTIONS(5562), + }, + [STATE(6744)] = { + [sym_identifier] = ACTIONS(9016), + [sym_newline] = ACTIONS(9018), + [anon_sym_COLON] = ACTIONS(9018), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9016), + [aux_sym_frm_property_statement_token1] = ACTIONS(9016), + [anon_sym_DOT] = ACTIONS(9016), + [anon_sym_BANG] = ACTIONS(9018), + [aux_sym__attribute_identifier_token1] = ACTIONS(9016), + [aux_sym_option_statement_token3] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9016), + [aux_sym_preprocessor_const_token1] = ACTIONS(9016), + [sym_static_modifier] = ACTIONS(9016), + [sym__dim_keyword] = ACTIONS(9016), + [sym__redim_keyword] = ACTIONS(9016), + [aux_sym_get_accessor_token1] = ACTIONS(9016), + [aux_sym_set_accessor_token1] = ACTIONS(9016), + [aux_sym_const_declaration_token1] = ACTIONS(9016), + [anon_sym_LPAREN] = ACTIONS(9018), + [aux_sym_as_type_clause_token2] = ACTIONS(9016), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9016), + [aux_sym_visibility_token1] = ACTIONS(9016), + [aux_sym_visibility_token2] = ACTIONS(9016), + [aux_sym_elseif_fragment_token1] = ACTIONS(9016), + [aux_sym_else_fragment_token1] = ACTIONS(9016), + [aux_sym_select_statement_token1] = ACTIONS(9016), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9016), + [aux_sym__for_header_token1] = ACTIONS(9016), + [aux_sym_do_statement_token1] = ACTIONS(9016), + [aux_sym_do_condition_token1] = ACTIONS(9016), + [aux_sym_with_statement_token1] = ACTIONS(9016), + [aux_sym_exit_statement_token1] = ACTIONS(9016), + [sym_end_statement] = ACTIONS(9018), + [aux_sym_on_goto_statement_token1] = ACTIONS(9016), + [aux_sym_on_goto_statement_token2] = ACTIONS(9016), + [aux_sym_on_error_statement_token2] = ACTIONS(9016), + [sym__ambiguous_redim_statement] = ACTIONS(9018), + [aux_sym_erase_statement_token1] = ACTIONS(9016), + [aux_sym_open_statement_token1] = ACTIONS(9016), + [aux_sym_file_mode_token2] = ACTIONS(9016), + [aux_sym_file_access_token2] = ACTIONS(9016), + [aux_sym_file_lock_token2] = ACTIONS(9016), + [aux_sym_print_statement_token1] = ACTIONS(9016), + [anon_sym_PLUS] = ACTIONS(9018), + [anon_sym_DASH] = ACTIONS(9016), + [anon_sym_QMARK] = ACTIONS(9018), + [aux_sym_close_statement_token1] = ACTIONS(9016), + [aux_sym_put_statement_token1] = ACTIONS(9016), + [aux_sym_unlock_statement_token1] = ACTIONS(9016), + [aux_sym_seek_statement_token1] = ACTIONS(9016), + [sym_reset_statement] = ACTIONS(9016), + [aux_sym_raise_event_statement_token1] = ACTIONS(9016), + [sym_stop_statement] = ACTIONS(9016), + [sym_beep_statement] = ACTIONS(9016), + [aux_sym_unload_statement_token1] = ACTIONS(9016), + [aux_sym_def_type_statement_token1] = ACTIONS(9016), + [aux_sym_def_type_statement_token2] = ACTIONS(9016), + [aux_sym_def_type_statement_token3] = ACTIONS(9016), + [aux_sym_def_type_statement_token4] = ACTIONS(9016), + [aux_sym_def_type_statement_token5] = ACTIONS(9016), + [aux_sym_def_type_statement_token6] = ACTIONS(9016), + [aux_sym_def_type_statement_token7] = ACTIONS(9016), + [aux_sym_def_type_statement_token8] = ACTIONS(9016), + [aux_sym_def_type_statement_token9] = ACTIONS(9016), + [aux_sym_def_type_statement_token10] = ACTIONS(9016), + [aux_sym_def_type_statement_token11] = ACTIONS(9016), + [aux_sym_def_type_statement_token12] = ACTIONS(9016), + [aux_sym_def_type_statement_token13] = ACTIONS(9016), + [aux_sym_def_type_statement_token14] = ACTIONS(9016), + [aux_sym_call_statement_token1] = ACTIONS(9016), + [sym__ambiguous_call_statement] = ACTIONS(9016), + [aux_sym_addressof_expression_token1] = ACTIONS(9016), + [aux_sym_type_of_expression_token1] = ACTIONS(9016), + [aux_sym_unary_expression_token1] = ACTIONS(9016), + [sym_string_literal] = ACTIONS(9018), + [sym_number_literal] = ACTIONS(9018), + [aux_sym_boolean_literal_token1] = ACTIONS(9016), + [aux_sym_boolean_literal_token2] = ACTIONS(9016), + [sym_nothing_literal] = ACTIONS(9016), + [sym_null_literal] = ACTIONS(9016), + [sym_empty_literal] = ACTIONS(9016), + [sym_date_literal] = ACTIONS(9018), + [anon_sym_POUND] = ACTIONS(9016), + }, + [STATE(6745)] = { + [sym_identifier] = ACTIONS(9348), + [sym_newline] = ACTIONS(9350), + [anon_sym_COLON] = ACTIONS(9350), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9348), + [aux_sym_frm_property_statement_token1] = ACTIONS(9348), + [anon_sym_DOT] = ACTIONS(9348), + [anon_sym_BANG] = ACTIONS(9350), + [aux_sym__attribute_identifier_token1] = ACTIONS(9348), + [aux_sym_option_statement_token3] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9348), + [aux_sym_preprocessor_const_token1] = ACTIONS(9348), + [sym_static_modifier] = ACTIONS(9348), + [sym__dim_keyword] = ACTIONS(9348), + [sym__redim_keyword] = ACTIONS(9348), + [aux_sym_get_accessor_token1] = ACTIONS(9348), + [aux_sym_set_accessor_token1] = ACTIONS(9348), + [aux_sym_const_declaration_token1] = ACTIONS(9348), + [anon_sym_LPAREN] = ACTIONS(9350), + [aux_sym_as_type_clause_token2] = ACTIONS(9348), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9348), + [aux_sym_visibility_token1] = ACTIONS(9348), + [aux_sym_visibility_token2] = ACTIONS(9348), + [aux_sym_elseif_fragment_token1] = ACTIONS(9348), + [aux_sym_else_fragment_token1] = ACTIONS(9348), + [aux_sym_select_statement_token1] = ACTIONS(9348), + [aux_sym__for_header_token1] = ACTIONS(9348), + [aux_sym_do_statement_token1] = ACTIONS(9348), + [aux_sym_do_condition_token1] = ACTIONS(9348), + [aux_sym_with_statement_token1] = ACTIONS(9348), + [aux_sym_exit_statement_token1] = ACTIONS(9348), + [sym_end_statement] = ACTIONS(9350), + [aux_sym_on_goto_statement_token1] = ACTIONS(9348), + [aux_sym_on_goto_statement_token2] = ACTIONS(9348), + [aux_sym_on_error_statement_token2] = ACTIONS(9348), + [sym__ambiguous_redim_statement] = ACTIONS(9350), + [aux_sym_erase_statement_token1] = ACTIONS(9348), + [aux_sym_open_statement_token1] = ACTIONS(9348), + [aux_sym_file_mode_token2] = ACTIONS(9348), + [aux_sym_file_access_token2] = ACTIONS(9348), + [aux_sym_file_lock_token2] = ACTIONS(9348), + [aux_sym_print_statement_token1] = ACTIONS(9348), + [anon_sym_PLUS] = ACTIONS(9350), + [anon_sym_DASH] = ACTIONS(9348), + [anon_sym_QMARK] = ACTIONS(9350), + [aux_sym_close_statement_token1] = ACTIONS(9348), + [aux_sym_put_statement_token1] = ACTIONS(9348), + [aux_sym_unlock_statement_token1] = ACTIONS(9348), + [aux_sym_seek_statement_token1] = ACTIONS(9348), + [sym_reset_statement] = ACTIONS(9348), + [aux_sym_raise_event_statement_token1] = ACTIONS(9348), + [sym_stop_statement] = ACTIONS(9348), + [sym_beep_statement] = ACTIONS(9348), + [aux_sym_unload_statement_token1] = ACTIONS(9348), + [aux_sym_def_type_statement_token1] = ACTIONS(9348), + [aux_sym_def_type_statement_token2] = ACTIONS(9348), + [aux_sym_def_type_statement_token3] = ACTIONS(9348), + [aux_sym_def_type_statement_token4] = ACTIONS(9348), + [aux_sym_def_type_statement_token5] = ACTIONS(9348), + [aux_sym_def_type_statement_token6] = ACTIONS(9348), + [aux_sym_def_type_statement_token7] = ACTIONS(9348), + [aux_sym_def_type_statement_token8] = ACTIONS(9348), + [aux_sym_def_type_statement_token9] = ACTIONS(9348), + [aux_sym_def_type_statement_token10] = ACTIONS(9348), + [aux_sym_def_type_statement_token11] = ACTIONS(9348), + [aux_sym_def_type_statement_token12] = ACTIONS(9348), + [aux_sym_def_type_statement_token13] = ACTIONS(9348), + [aux_sym_def_type_statement_token14] = ACTIONS(9348), + [aux_sym_call_statement_token1] = ACTIONS(9348), + [sym__ambiguous_call_statement] = ACTIONS(9348), + [aux_sym_addressof_expression_token1] = ACTIONS(9348), + [aux_sym_type_of_expression_token1] = ACTIONS(9348), + [aux_sym_unary_expression_token1] = ACTIONS(9348), + [sym_string_literal] = ACTIONS(9350), + [sym_number_literal] = ACTIONS(9350), + [aux_sym_boolean_literal_token1] = ACTIONS(9348), + [aux_sym_boolean_literal_token2] = ACTIONS(9348), + [sym_nothing_literal] = ACTIONS(9348), + [sym_null_literal] = ACTIONS(9348), + [sym_empty_literal] = ACTIONS(9348), + [sym_date_literal] = ACTIONS(9350), + [anon_sym_POUND] = ACTIONS(9348), + }, + [STATE(6746)] = { + [sym_identifier] = ACTIONS(8986), + [sym_newline] = ACTIONS(9032), + [anon_sym_COLON] = ACTIONS(9032), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8986), + [aux_sym_frm_property_statement_token1] = ACTIONS(8986), + [anon_sym_DOT] = ACTIONS(8986), + [anon_sym_BANG] = ACTIONS(9032), + [aux_sym__attribute_identifier_token1] = ACTIONS(8986), + [aux_sym_option_statement_token3] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8986), + [aux_sym_preprocessor_const_token1] = ACTIONS(8986), + [sym_static_modifier] = ACTIONS(8986), + [sym__dim_keyword] = ACTIONS(8986), + [sym__redim_keyword] = ACTIONS(8986), + [aux_sym_get_accessor_token1] = ACTIONS(8986), + [aux_sym_set_accessor_token1] = ACTIONS(8986), + [aux_sym_const_declaration_token1] = ACTIONS(8986), + [anon_sym_LPAREN] = ACTIONS(9032), + [aux_sym_as_type_clause_token2] = ACTIONS(8986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8986), + [aux_sym_visibility_token1] = ACTIONS(8986), + [aux_sym_visibility_token2] = ACTIONS(8986), + [aux_sym_elseif_fragment_token1] = ACTIONS(8986), + [aux_sym_else_fragment_token1] = ACTIONS(8986), + [aux_sym_select_statement_token1] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8986), + [aux_sym_do_statement_token1] = ACTIONS(8986), + [aux_sym_do_condition_token1] = ACTIONS(8986), + [aux_sym_while_statement_token1] = ACTIONS(8986), + [aux_sym_with_statement_token1] = ACTIONS(8986), + [aux_sym_exit_statement_token1] = ACTIONS(8986), + [sym_end_statement] = ACTIONS(9032), + [aux_sym_on_goto_statement_token1] = ACTIONS(8986), + [aux_sym_on_goto_statement_token2] = ACTIONS(8986), + [aux_sym_on_error_statement_token2] = ACTIONS(8986), + [sym__ambiguous_redim_statement] = ACTIONS(9032), + [aux_sym_erase_statement_token1] = ACTIONS(8986), + [aux_sym_open_statement_token1] = ACTIONS(8986), + [aux_sym_file_mode_token2] = ACTIONS(8986), + [aux_sym_file_access_token2] = ACTIONS(8986), + [aux_sym_file_lock_token2] = ACTIONS(8986), + [aux_sym_print_statement_token1] = ACTIONS(8986), + [anon_sym_PLUS] = ACTIONS(9032), + [anon_sym_DASH] = ACTIONS(8986), + [anon_sym_QMARK] = ACTIONS(9032), + [aux_sym_close_statement_token1] = ACTIONS(8986), + [aux_sym_put_statement_token1] = ACTIONS(8986), + [aux_sym_unlock_statement_token1] = ACTIONS(8986), + [aux_sym_seek_statement_token1] = ACTIONS(8986), + [sym_reset_statement] = ACTIONS(8986), + [aux_sym_raise_event_statement_token1] = ACTIONS(8986), + [sym_stop_statement] = ACTIONS(8986), + [sym_beep_statement] = ACTIONS(8986), + [aux_sym_unload_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token2] = ACTIONS(8986), + [aux_sym_def_type_statement_token3] = ACTIONS(8986), + [aux_sym_def_type_statement_token4] = ACTIONS(8986), + [aux_sym_def_type_statement_token5] = ACTIONS(8986), + [aux_sym_def_type_statement_token6] = ACTIONS(8986), + [aux_sym_def_type_statement_token7] = ACTIONS(8986), + [aux_sym_def_type_statement_token8] = ACTIONS(8986), + [aux_sym_def_type_statement_token9] = ACTIONS(8986), + [aux_sym_def_type_statement_token10] = ACTIONS(8986), + [aux_sym_def_type_statement_token11] = ACTIONS(8986), + [aux_sym_def_type_statement_token12] = ACTIONS(8986), + [aux_sym_def_type_statement_token13] = ACTIONS(8986), + [aux_sym_def_type_statement_token14] = ACTIONS(8986), + [aux_sym_call_statement_token1] = ACTIONS(8986), + [sym__ambiguous_call_statement] = ACTIONS(8986), + [aux_sym_addressof_expression_token1] = ACTIONS(8986), + [aux_sym_type_of_expression_token1] = ACTIONS(8986), + [aux_sym_unary_expression_token1] = ACTIONS(8986), + [sym_string_literal] = ACTIONS(9032), + [sym_number_literal] = ACTIONS(9032), + [aux_sym_boolean_literal_token1] = ACTIONS(8986), + [aux_sym_boolean_literal_token2] = ACTIONS(8986), + [sym_nothing_literal] = ACTIONS(8986), + [sym_null_literal] = ACTIONS(8986), + [sym_empty_literal] = ACTIONS(8986), + [sym_date_literal] = ACTIONS(9032), + [anon_sym_POUND] = ACTIONS(8986), + }, + [STATE(6747)] = { + [sym_identifier] = ACTIONS(8939), + [sym_newline] = ACTIONS(8941), + [anon_sym_COLON] = ACTIONS(8941), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8939), + [aux_sym_frm_property_statement_token1] = ACTIONS(8939), + [anon_sym_DOT] = ACTIONS(8939), + [anon_sym_BANG] = ACTIONS(8941), + [aux_sym__attribute_identifier_token1] = ACTIONS(8939), + [aux_sym_option_statement_token3] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8939), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8939), + [aux_sym_preprocessor_const_token1] = ACTIONS(8939), + [sym_static_modifier] = ACTIONS(8939), + [sym__dim_keyword] = ACTIONS(8939), + [sym__redim_keyword] = ACTIONS(8939), + [aux_sym_get_accessor_token1] = ACTIONS(8939), + [aux_sym_set_accessor_token1] = ACTIONS(8939), + [anon_sym_COMMA] = ACTIONS(11136), + [aux_sym_const_declaration_token1] = ACTIONS(8939), + [anon_sym_LPAREN] = ACTIONS(8941), + [aux_sym_as_type_clause_token2] = ACTIONS(8939), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8939), + [aux_sym_visibility_token1] = ACTIONS(8939), + [aux_sym_visibility_token2] = ACTIONS(8939), + [aux_sym_elseif_fragment_token1] = ACTIONS(8939), + [aux_sym_else_fragment_token1] = ACTIONS(8939), + [aux_sym_select_statement_token1] = ACTIONS(8939), + [aux_sym__for_header_token1] = ACTIONS(8939), + [aux_sym_do_statement_token1] = ACTIONS(8939), + [aux_sym_do_condition_token1] = ACTIONS(8939), + [aux_sym_with_statement_token1] = ACTIONS(8939), + [aux_sym_exit_statement_token1] = ACTIONS(8939), + [sym_end_statement] = ACTIONS(8941), + [aux_sym_on_goto_statement_token1] = ACTIONS(8939), + [aux_sym_on_goto_statement_token2] = ACTIONS(8939), + [aux_sym_on_error_statement_token2] = ACTIONS(8939), + [sym__ambiguous_redim_statement] = ACTIONS(8941), + [aux_sym_erase_statement_token1] = ACTIONS(8939), + [aux_sym_open_statement_token1] = ACTIONS(8939), + [aux_sym_file_mode_token2] = ACTIONS(8939), + [aux_sym_file_access_token2] = ACTIONS(8939), + [aux_sym_file_lock_token2] = ACTIONS(8939), + [aux_sym_print_statement_token1] = ACTIONS(8939), + [anon_sym_PLUS] = ACTIONS(8941), + [anon_sym_DASH] = ACTIONS(8939), + [anon_sym_QMARK] = ACTIONS(8941), + [aux_sym_close_statement_token1] = ACTIONS(8939), + [aux_sym_put_statement_token1] = ACTIONS(8939), + [aux_sym_unlock_statement_token1] = ACTIONS(8939), + [aux_sym_seek_statement_token1] = ACTIONS(8939), + [sym_reset_statement] = ACTIONS(8939), + [aux_sym_raise_event_statement_token1] = ACTIONS(8939), + [sym_stop_statement] = ACTIONS(8939), + [sym_beep_statement] = ACTIONS(8939), + [aux_sym_unload_statement_token1] = ACTIONS(8939), + [aux_sym_def_type_statement_token1] = ACTIONS(8939), + [aux_sym_def_type_statement_token2] = ACTIONS(8939), + [aux_sym_def_type_statement_token3] = ACTIONS(8939), + [aux_sym_def_type_statement_token4] = ACTIONS(8939), + [aux_sym_def_type_statement_token5] = ACTIONS(8939), + [aux_sym_def_type_statement_token6] = ACTIONS(8939), + [aux_sym_def_type_statement_token7] = ACTIONS(8939), + [aux_sym_def_type_statement_token8] = ACTIONS(8939), + [aux_sym_def_type_statement_token9] = ACTIONS(8939), + [aux_sym_def_type_statement_token10] = ACTIONS(8939), + [aux_sym_def_type_statement_token11] = ACTIONS(8939), + [aux_sym_def_type_statement_token12] = ACTIONS(8939), + [aux_sym_def_type_statement_token13] = ACTIONS(8939), + [aux_sym_def_type_statement_token14] = ACTIONS(8939), + [aux_sym_call_statement_token1] = ACTIONS(8939), + [sym__ambiguous_call_statement] = ACTIONS(8939), + [aux_sym_addressof_expression_token1] = ACTIONS(8939), + [aux_sym_type_of_expression_token1] = ACTIONS(8939), + [aux_sym_unary_expression_token1] = ACTIONS(8939), + [sym_string_literal] = ACTIONS(8941), + [sym_number_literal] = ACTIONS(8941), + [aux_sym_boolean_literal_token1] = ACTIONS(8939), + [aux_sym_boolean_literal_token2] = ACTIONS(8939), + [sym_nothing_literal] = ACTIONS(8939), + [sym_null_literal] = ACTIONS(8939), + [sym_empty_literal] = ACTIONS(8939), + [sym_date_literal] = ACTIONS(8941), + [anon_sym_POUND] = ACTIONS(8939), + }, + [STATE(6748)] = { + [sym_identifier] = ACTIONS(6621), + [sym_newline] = ACTIONS(6623), + [anon_sym_COLON] = ACTIONS(6623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6621), + [aux_sym_frm_property_statement_token1] = ACTIONS(6621), + [anon_sym_DOT] = ACTIONS(6621), + [anon_sym_BANG] = ACTIONS(6623), + [aux_sym__attribute_identifier_token1] = ACTIONS(6621), + [aux_sym_option_statement_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6621), + [aux_sym_preprocessor_const_token1] = ACTIONS(6621), + [sym_static_modifier] = ACTIONS(6621), + [sym__dim_keyword] = ACTIONS(6621), + [sym__redim_keyword] = ACTIONS(6621), + [aux_sym_get_accessor_token1] = ACTIONS(6621), + [aux_sym_set_accessor_token1] = ACTIONS(6621), + [aux_sym_const_declaration_token1] = ACTIONS(6621), + [anon_sym_LPAREN] = ACTIONS(6623), + [aux_sym_as_type_clause_token2] = ACTIONS(6621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6621), + [aux_sym_visibility_token1] = ACTIONS(6621), + [aux_sym_visibility_token2] = ACTIONS(6621), + [aux_sym_elseif_fragment_token1] = ACTIONS(6621), + [aux_sym_else_fragment_token1] = ACTIONS(6621), + [aux_sym_select_statement_token1] = ACTIONS(6621), + [aux_sym__for_header_token1] = ACTIONS(6621), + [aux_sym_do_statement_token1] = ACTIONS(6621), + [aux_sym_do_condition_token1] = ACTIONS(6621), + [aux_sym_while_statement_token1] = ACTIONS(6621), + [aux_sym_with_statement_token1] = ACTIONS(6621), + [aux_sym_exit_statement_token1] = ACTIONS(6621), + [sym_end_statement] = ACTIONS(6623), + [aux_sym_on_goto_statement_token1] = ACTIONS(6621), + [aux_sym_on_goto_statement_token2] = ACTIONS(6621), + [aux_sym_on_error_statement_token2] = ACTIONS(6621), + [sym__ambiguous_redim_statement] = ACTIONS(6623), + [aux_sym_erase_statement_token1] = ACTIONS(6621), + [aux_sym_open_statement_token1] = ACTIONS(6621), + [aux_sym_file_mode_token2] = ACTIONS(6621), + [aux_sym_file_access_token2] = ACTIONS(6621), + [aux_sym_file_lock_token2] = ACTIONS(6621), + [aux_sym_print_statement_token1] = ACTIONS(6621), + [anon_sym_PLUS] = ACTIONS(6623), + [anon_sym_DASH] = ACTIONS(6621), + [anon_sym_QMARK] = ACTIONS(6623), + [aux_sym_close_statement_token1] = ACTIONS(6621), + [aux_sym_put_statement_token1] = ACTIONS(6621), + [aux_sym_unlock_statement_token1] = ACTIONS(6621), + [aux_sym_seek_statement_token1] = ACTIONS(6621), + [sym_reset_statement] = ACTIONS(6621), + [aux_sym_raise_event_statement_token1] = ACTIONS(6621), + [sym_stop_statement] = ACTIONS(6621), + [sym_beep_statement] = ACTIONS(6621), + [aux_sym_unload_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token2] = ACTIONS(6621), + [aux_sym_def_type_statement_token3] = ACTIONS(6621), + [aux_sym_def_type_statement_token4] = ACTIONS(6621), + [aux_sym_def_type_statement_token5] = ACTIONS(6621), + [aux_sym_def_type_statement_token6] = ACTIONS(6621), + [aux_sym_def_type_statement_token7] = ACTIONS(6621), + [aux_sym_def_type_statement_token8] = ACTIONS(6621), + [aux_sym_def_type_statement_token9] = ACTIONS(6621), + [aux_sym_def_type_statement_token10] = ACTIONS(6621), + [aux_sym_def_type_statement_token11] = ACTIONS(6621), + [aux_sym_def_type_statement_token12] = ACTIONS(6621), + [aux_sym_def_type_statement_token13] = ACTIONS(6621), + [aux_sym_def_type_statement_token14] = ACTIONS(6621), + [aux_sym_call_statement_token1] = ACTIONS(6621), + [sym__ambiguous_call_statement] = ACTIONS(6621), + [aux_sym_addressof_expression_token1] = ACTIONS(6621), + [aux_sym_type_of_expression_token1] = ACTIONS(6621), + [aux_sym_unary_expression_token1] = ACTIONS(6621), + [sym_string_literal] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [aux_sym_boolean_literal_token1] = ACTIONS(6621), + [aux_sym_boolean_literal_token2] = ACTIONS(6621), + [sym_nothing_literal] = ACTIONS(6621), + [sym_null_literal] = ACTIONS(6621), + [sym_empty_literal] = ACTIONS(6621), + [sym_date_literal] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6621), + }, + [STATE(6749)] = { + [sym_identifier] = ACTIONS(8764), + [sym_newline] = ACTIONS(9034), + [anon_sym_COLON] = ACTIONS(9034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8764), + [aux_sym_frm_property_statement_token1] = ACTIONS(8764), + [anon_sym_DOT] = ACTIONS(8764), + [anon_sym_BANG] = ACTIONS(9034), + [aux_sym__attribute_identifier_token1] = ACTIONS(8764), + [aux_sym_option_statement_token3] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8764), + [aux_sym_preprocessor_const_token1] = ACTIONS(8764), + [sym_static_modifier] = ACTIONS(8764), + [sym__dim_keyword] = ACTIONS(8764), + [sym__redim_keyword] = ACTIONS(8764), + [aux_sym_get_accessor_token1] = ACTIONS(8764), + [aux_sym_set_accessor_token1] = ACTIONS(8764), + [aux_sym_const_declaration_token1] = ACTIONS(8764), + [anon_sym_LPAREN] = ACTIONS(9034), + [aux_sym_as_type_clause_token2] = ACTIONS(8764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8764), + [aux_sym_visibility_token1] = ACTIONS(8764), + [aux_sym_visibility_token2] = ACTIONS(8764), + [aux_sym_elseif_fragment_token1] = ACTIONS(8764), + [aux_sym_else_fragment_token1] = ACTIONS(8764), + [aux_sym_select_statement_token1] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8764), + [aux_sym_do_statement_token1] = ACTIONS(8764), + [aux_sym_do_condition_token1] = ACTIONS(8764), + [aux_sym_while_statement_token1] = ACTIONS(8764), + [aux_sym_with_statement_token1] = ACTIONS(8764), + [aux_sym_exit_statement_token1] = ACTIONS(8764), + [sym_end_statement] = ACTIONS(9034), + [aux_sym_on_goto_statement_token1] = ACTIONS(8764), + [aux_sym_on_goto_statement_token2] = ACTIONS(8764), + [aux_sym_on_error_statement_token2] = ACTIONS(8764), + [sym__ambiguous_redim_statement] = ACTIONS(9034), + [aux_sym_erase_statement_token1] = ACTIONS(8764), + [aux_sym_open_statement_token1] = ACTIONS(8764), + [aux_sym_file_mode_token2] = ACTIONS(8764), + [aux_sym_file_access_token2] = ACTIONS(8764), + [aux_sym_file_lock_token2] = ACTIONS(8764), + [aux_sym_print_statement_token1] = ACTIONS(8764), + [anon_sym_PLUS] = ACTIONS(9034), + [anon_sym_DASH] = ACTIONS(8764), + [anon_sym_QMARK] = ACTIONS(9034), + [aux_sym_close_statement_token1] = ACTIONS(8764), + [aux_sym_put_statement_token1] = ACTIONS(8764), + [aux_sym_unlock_statement_token1] = ACTIONS(8764), + [aux_sym_seek_statement_token1] = ACTIONS(8764), + [sym_reset_statement] = ACTIONS(8764), + [aux_sym_raise_event_statement_token1] = ACTIONS(8764), + [sym_stop_statement] = ACTIONS(8764), + [sym_beep_statement] = ACTIONS(8764), + [aux_sym_unload_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token2] = ACTIONS(8764), + [aux_sym_def_type_statement_token3] = ACTIONS(8764), + [aux_sym_def_type_statement_token4] = ACTIONS(8764), + [aux_sym_def_type_statement_token5] = ACTIONS(8764), + [aux_sym_def_type_statement_token6] = ACTIONS(8764), + [aux_sym_def_type_statement_token7] = ACTIONS(8764), + [aux_sym_def_type_statement_token8] = ACTIONS(8764), + [aux_sym_def_type_statement_token9] = ACTIONS(8764), + [aux_sym_def_type_statement_token10] = ACTIONS(8764), + [aux_sym_def_type_statement_token11] = ACTIONS(8764), + [aux_sym_def_type_statement_token12] = ACTIONS(8764), + [aux_sym_def_type_statement_token13] = ACTIONS(8764), + [aux_sym_def_type_statement_token14] = ACTIONS(8764), + [aux_sym_call_statement_token1] = ACTIONS(8764), + [sym__ambiguous_call_statement] = ACTIONS(8764), + [aux_sym_addressof_expression_token1] = ACTIONS(8764), + [aux_sym_type_of_expression_token1] = ACTIONS(8764), + [aux_sym_unary_expression_token1] = ACTIONS(8764), + [sym_string_literal] = ACTIONS(9034), + [sym_number_literal] = ACTIONS(9034), + [aux_sym_boolean_literal_token1] = ACTIONS(8764), + [aux_sym_boolean_literal_token2] = ACTIONS(8764), + [sym_nothing_literal] = ACTIONS(8764), + [sym_null_literal] = ACTIONS(8764), + [sym_empty_literal] = ACTIONS(8764), + [sym_date_literal] = ACTIONS(9034), + [anon_sym_POUND] = ACTIONS(8764), + }, + [STATE(6750)] = { + [sym_identifier] = ACTIONS(9036), + [sym_newline] = ACTIONS(9038), + [anon_sym_COLON] = ACTIONS(9038), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9036), + [aux_sym_frm_property_statement_token1] = ACTIONS(9036), + [anon_sym_DOT] = ACTIONS(9036), + [anon_sym_BANG] = ACTIONS(9038), + [aux_sym__attribute_identifier_token1] = ACTIONS(9036), + [aux_sym_option_statement_token3] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9036), + [aux_sym_preprocessor_const_token1] = ACTIONS(9036), + [sym_static_modifier] = ACTIONS(9036), + [sym__dim_keyword] = ACTIONS(9036), + [sym__redim_keyword] = ACTIONS(9036), + [aux_sym_get_accessor_token1] = ACTIONS(9036), + [aux_sym_set_accessor_token1] = ACTIONS(9036), + [aux_sym_const_declaration_token1] = ACTIONS(9036), + [anon_sym_LPAREN] = ACTIONS(9038), + [aux_sym_as_type_clause_token2] = ACTIONS(9036), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9036), + [aux_sym_visibility_token1] = ACTIONS(9036), + [aux_sym_visibility_token2] = ACTIONS(9036), + [aux_sym_elseif_fragment_token1] = ACTIONS(9036), + [aux_sym_else_fragment_token1] = ACTIONS(9036), + [aux_sym_select_statement_token1] = ACTIONS(9036), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9036), + [aux_sym__for_header_token1] = ACTIONS(9036), + [aux_sym_do_statement_token1] = ACTIONS(9036), + [aux_sym_do_condition_token1] = ACTIONS(9036), + [aux_sym_with_statement_token1] = ACTIONS(9036), + [aux_sym_exit_statement_token1] = ACTIONS(9036), + [sym_end_statement] = ACTIONS(9038), + [aux_sym_on_goto_statement_token1] = ACTIONS(9036), + [aux_sym_on_goto_statement_token2] = ACTIONS(9036), + [aux_sym_on_error_statement_token2] = ACTIONS(9036), + [sym__ambiguous_redim_statement] = ACTIONS(9038), + [aux_sym_erase_statement_token1] = ACTIONS(9036), + [aux_sym_open_statement_token1] = ACTIONS(9036), + [aux_sym_file_mode_token2] = ACTIONS(9036), + [aux_sym_file_access_token2] = ACTIONS(9036), + [aux_sym_file_lock_token2] = ACTIONS(9036), + [aux_sym_print_statement_token1] = ACTIONS(9036), + [anon_sym_PLUS] = ACTIONS(9038), + [anon_sym_DASH] = ACTIONS(9036), + [anon_sym_QMARK] = ACTIONS(9038), + [aux_sym_close_statement_token1] = ACTIONS(9036), + [aux_sym_put_statement_token1] = ACTIONS(9036), + [aux_sym_unlock_statement_token1] = ACTIONS(9036), + [aux_sym_seek_statement_token1] = ACTIONS(9036), + [sym_reset_statement] = ACTIONS(9036), + [aux_sym_raise_event_statement_token1] = ACTIONS(9036), + [sym_stop_statement] = ACTIONS(9036), + [sym_beep_statement] = ACTIONS(9036), + [aux_sym_unload_statement_token1] = ACTIONS(9036), + [aux_sym_def_type_statement_token1] = ACTIONS(9036), + [aux_sym_def_type_statement_token2] = ACTIONS(9036), + [aux_sym_def_type_statement_token3] = ACTIONS(9036), + [aux_sym_def_type_statement_token4] = ACTIONS(9036), + [aux_sym_def_type_statement_token5] = ACTIONS(9036), + [aux_sym_def_type_statement_token6] = ACTIONS(9036), + [aux_sym_def_type_statement_token7] = ACTIONS(9036), + [aux_sym_def_type_statement_token8] = ACTIONS(9036), + [aux_sym_def_type_statement_token9] = ACTIONS(9036), + [aux_sym_def_type_statement_token10] = ACTIONS(9036), + [aux_sym_def_type_statement_token11] = ACTIONS(9036), + [aux_sym_def_type_statement_token12] = ACTIONS(9036), + [aux_sym_def_type_statement_token13] = ACTIONS(9036), + [aux_sym_def_type_statement_token14] = ACTIONS(9036), + [aux_sym_call_statement_token1] = ACTIONS(9036), + [sym__ambiguous_call_statement] = ACTIONS(9036), + [aux_sym_addressof_expression_token1] = ACTIONS(9036), + [aux_sym_type_of_expression_token1] = ACTIONS(9036), + [aux_sym_unary_expression_token1] = ACTIONS(9036), + [sym_string_literal] = ACTIONS(9038), + [sym_number_literal] = ACTIONS(9038), + [aux_sym_boolean_literal_token1] = ACTIONS(9036), + [aux_sym_boolean_literal_token2] = ACTIONS(9036), + [sym_nothing_literal] = ACTIONS(9036), + [sym_null_literal] = ACTIONS(9036), + [sym_empty_literal] = ACTIONS(9036), + [sym_date_literal] = ACTIONS(9038), + [anon_sym_POUND] = ACTIONS(9036), + }, + [STATE(6751)] = { + [sym_identifier] = ACTIONS(9352), + [sym_newline] = ACTIONS(9354), + [anon_sym_COLON] = ACTIONS(9354), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9352), + [aux_sym_frm_property_statement_token1] = ACTIONS(9352), + [anon_sym_DOT] = ACTIONS(9352), + [anon_sym_BANG] = ACTIONS(9354), + [aux_sym__attribute_identifier_token1] = ACTIONS(9352), + [aux_sym_option_statement_token3] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9352), + [aux_sym_preprocessor_const_token1] = ACTIONS(9352), + [sym_static_modifier] = ACTIONS(9352), + [sym__dim_keyword] = ACTIONS(9352), + [sym__redim_keyword] = ACTIONS(9352), + [aux_sym_get_accessor_token1] = ACTIONS(9352), + [aux_sym_set_accessor_token1] = ACTIONS(9352), + [aux_sym_const_declaration_token1] = ACTIONS(9352), + [anon_sym_LPAREN] = ACTIONS(9354), + [aux_sym_as_type_clause_token2] = ACTIONS(9352), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9352), + [aux_sym_visibility_token1] = ACTIONS(9352), + [aux_sym_visibility_token2] = ACTIONS(9352), + [aux_sym_elseif_fragment_token1] = ACTIONS(9352), + [aux_sym_else_fragment_token1] = ACTIONS(9352), + [aux_sym_select_statement_token1] = ACTIONS(9352), + [aux_sym__for_header_token1] = ACTIONS(9352), + [aux_sym_do_statement_token1] = ACTIONS(9352), + [aux_sym_do_condition_token1] = ACTIONS(9352), + [aux_sym_with_statement_token1] = ACTIONS(9352), + [aux_sym_exit_statement_token1] = ACTIONS(9352), + [sym_end_statement] = ACTIONS(9354), + [aux_sym_on_goto_statement_token1] = ACTIONS(9352), + [aux_sym_on_goto_statement_token2] = ACTIONS(9352), + [aux_sym_on_error_statement_token2] = ACTIONS(9352), + [sym__ambiguous_redim_statement] = ACTIONS(9354), + [aux_sym_erase_statement_token1] = ACTIONS(9352), + [aux_sym_open_statement_token1] = ACTIONS(9352), + [aux_sym_file_mode_token2] = ACTIONS(9352), + [aux_sym_file_access_token2] = ACTIONS(9352), + [aux_sym_file_lock_token2] = ACTIONS(9352), + [aux_sym_print_statement_token1] = ACTIONS(9352), + [anon_sym_PLUS] = ACTIONS(9354), + [anon_sym_DASH] = ACTIONS(9352), + [anon_sym_QMARK] = ACTIONS(9354), + [aux_sym_close_statement_token1] = ACTIONS(9352), + [aux_sym_put_statement_token1] = ACTIONS(9352), + [aux_sym_unlock_statement_token1] = ACTIONS(9352), + [aux_sym_seek_statement_token1] = ACTIONS(9352), + [sym_reset_statement] = ACTIONS(9352), + [aux_sym_raise_event_statement_token1] = ACTIONS(9352), + [sym_stop_statement] = ACTIONS(9352), + [sym_beep_statement] = ACTIONS(9352), + [aux_sym_unload_statement_token1] = ACTIONS(9352), + [aux_sym_def_type_statement_token1] = ACTIONS(9352), + [aux_sym_def_type_statement_token2] = ACTIONS(9352), + [aux_sym_def_type_statement_token3] = ACTIONS(9352), + [aux_sym_def_type_statement_token4] = ACTIONS(9352), + [aux_sym_def_type_statement_token5] = ACTIONS(9352), + [aux_sym_def_type_statement_token6] = ACTIONS(9352), + [aux_sym_def_type_statement_token7] = ACTIONS(9352), + [aux_sym_def_type_statement_token8] = ACTIONS(9352), + [aux_sym_def_type_statement_token9] = ACTIONS(9352), + [aux_sym_def_type_statement_token10] = ACTIONS(9352), + [aux_sym_def_type_statement_token11] = ACTIONS(9352), + [aux_sym_def_type_statement_token12] = ACTIONS(9352), + [aux_sym_def_type_statement_token13] = ACTIONS(9352), + [aux_sym_def_type_statement_token14] = ACTIONS(9352), + [aux_sym_call_statement_token1] = ACTIONS(9352), + [sym__ambiguous_call_statement] = ACTIONS(9352), + [aux_sym_addressof_expression_token1] = ACTIONS(9352), + [aux_sym_type_of_expression_token1] = ACTIONS(9352), + [aux_sym_unary_expression_token1] = ACTIONS(9352), + [sym_string_literal] = ACTIONS(9354), + [sym_number_literal] = ACTIONS(9354), + [aux_sym_boolean_literal_token1] = ACTIONS(9352), + [aux_sym_boolean_literal_token2] = ACTIONS(9352), + [sym_nothing_literal] = ACTIONS(9352), + [sym_null_literal] = ACTIONS(9352), + [sym_empty_literal] = ACTIONS(9352), + [sym_date_literal] = ACTIONS(9354), + [anon_sym_POUND] = ACTIONS(9352), + }, + [STATE(6752)] = { + [sym_identifier] = ACTIONS(9435), + [sym_newline] = ACTIONS(9437), + [anon_sym_COLON] = ACTIONS(9437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9435), + [aux_sym_frm_property_statement_token1] = ACTIONS(9435), + [anon_sym_DOT] = ACTIONS(9435), + [anon_sym_BANG] = ACTIONS(9437), + [aux_sym__attribute_identifier_token1] = ACTIONS(9435), + [aux_sym_option_statement_token3] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9435), + [aux_sym_preprocessor_const_token1] = ACTIONS(9435), + [sym_static_modifier] = ACTIONS(9435), + [sym__dim_keyword] = ACTIONS(9435), + [sym__redim_keyword] = ACTIONS(9435), + [aux_sym_get_accessor_token1] = ACTIONS(9435), + [aux_sym_set_accessor_token1] = ACTIONS(9435), + [aux_sym_const_declaration_token1] = ACTIONS(9435), + [anon_sym_LPAREN] = ACTIONS(9437), + [aux_sym_as_type_clause_token2] = ACTIONS(9435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9435), + [aux_sym_visibility_token1] = ACTIONS(9435), + [aux_sym_visibility_token2] = ACTIONS(9435), + [aux_sym_elseif_fragment_token1] = ACTIONS(9435), + [aux_sym_else_fragment_token1] = ACTIONS(9435), + [aux_sym_select_statement_token1] = ACTIONS(9435), + [aux_sym__for_header_token1] = ACTIONS(9435), + [aux_sym_do_statement_token1] = ACTIONS(9435), + [aux_sym_do_statement_token2] = ACTIONS(9435), + [aux_sym_do_condition_token1] = ACTIONS(9435), + [aux_sym_with_statement_token1] = ACTIONS(9435), + [aux_sym_exit_statement_token1] = ACTIONS(9435), + [sym_end_statement] = ACTIONS(9437), + [aux_sym_on_goto_statement_token1] = ACTIONS(9435), + [aux_sym_on_goto_statement_token2] = ACTIONS(9435), + [aux_sym_on_error_statement_token2] = ACTIONS(9435), + [sym__ambiguous_redim_statement] = ACTIONS(9437), + [aux_sym_erase_statement_token1] = ACTIONS(9435), + [aux_sym_open_statement_token1] = ACTIONS(9435), + [aux_sym_file_mode_token2] = ACTIONS(9435), + [aux_sym_file_access_token2] = ACTIONS(9435), + [aux_sym_file_lock_token2] = ACTIONS(9435), + [aux_sym_print_statement_token1] = ACTIONS(9435), + [anon_sym_PLUS] = ACTIONS(9437), + [anon_sym_DASH] = ACTIONS(9435), + [anon_sym_QMARK] = ACTIONS(9437), + [aux_sym_close_statement_token1] = ACTIONS(9435), + [aux_sym_put_statement_token1] = ACTIONS(9435), + [aux_sym_unlock_statement_token1] = ACTIONS(9435), + [aux_sym_seek_statement_token1] = ACTIONS(9435), + [sym_reset_statement] = ACTIONS(9435), + [aux_sym_raise_event_statement_token1] = ACTIONS(9435), + [sym_stop_statement] = ACTIONS(9435), + [sym_beep_statement] = ACTIONS(9435), + [aux_sym_unload_statement_token1] = ACTIONS(9435), + [aux_sym_def_type_statement_token1] = ACTIONS(9435), + [aux_sym_def_type_statement_token2] = ACTIONS(9435), + [aux_sym_def_type_statement_token3] = ACTIONS(9435), + [aux_sym_def_type_statement_token4] = ACTIONS(9435), + [aux_sym_def_type_statement_token5] = ACTIONS(9435), + [aux_sym_def_type_statement_token6] = ACTIONS(9435), + [aux_sym_def_type_statement_token7] = ACTIONS(9435), + [aux_sym_def_type_statement_token8] = ACTIONS(9435), + [aux_sym_def_type_statement_token9] = ACTIONS(9435), + [aux_sym_def_type_statement_token10] = ACTIONS(9435), + [aux_sym_def_type_statement_token11] = ACTIONS(9435), + [aux_sym_def_type_statement_token12] = ACTIONS(9435), + [aux_sym_def_type_statement_token13] = ACTIONS(9435), + [aux_sym_def_type_statement_token14] = ACTIONS(9435), + [aux_sym_call_statement_token1] = ACTIONS(9435), + [sym__ambiguous_call_statement] = ACTIONS(9435), + [aux_sym_addressof_expression_token1] = ACTIONS(9435), + [aux_sym_type_of_expression_token1] = ACTIONS(9435), + [aux_sym_unary_expression_token1] = ACTIONS(9435), + [sym_string_literal] = ACTIONS(9437), + [sym_number_literal] = ACTIONS(9437), + [aux_sym_boolean_literal_token1] = ACTIONS(9435), + [aux_sym_boolean_literal_token2] = ACTIONS(9435), + [sym_nothing_literal] = ACTIONS(9435), + [sym_null_literal] = ACTIONS(9435), + [sym_empty_literal] = ACTIONS(9435), + [sym_date_literal] = ACTIONS(9437), + [anon_sym_POUND] = ACTIONS(9435), + }, + [STATE(6753)] = { + [sym_identifier] = ACTIONS(9040), + [sym_newline] = ACTIONS(9042), + [anon_sym_COLON] = ACTIONS(9042), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9040), + [aux_sym_frm_property_statement_token1] = ACTIONS(9040), + [anon_sym_DOT] = ACTIONS(9040), + [anon_sym_BANG] = ACTIONS(9042), + [aux_sym__attribute_identifier_token1] = ACTIONS(9040), + [aux_sym_option_statement_token3] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9040), + [aux_sym_preprocessor_const_token1] = ACTIONS(9040), + [sym_static_modifier] = ACTIONS(9040), + [sym__dim_keyword] = ACTIONS(9040), + [sym__redim_keyword] = ACTIONS(9040), + [aux_sym_get_accessor_token1] = ACTIONS(9040), + [aux_sym_set_accessor_token1] = ACTIONS(9040), + [aux_sym_const_declaration_token1] = ACTIONS(9040), + [anon_sym_LPAREN] = ACTIONS(9042), + [aux_sym_as_type_clause_token2] = ACTIONS(9040), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9040), + [aux_sym_visibility_token1] = ACTIONS(9040), + [aux_sym_visibility_token2] = ACTIONS(9040), + [aux_sym_elseif_fragment_token1] = ACTIONS(9040), + [aux_sym_else_fragment_token1] = ACTIONS(9040), + [aux_sym_select_statement_token1] = ACTIONS(9040), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9040), + [aux_sym__for_header_token1] = ACTIONS(9040), + [aux_sym_do_statement_token1] = ACTIONS(9040), + [aux_sym_do_condition_token1] = ACTIONS(9040), + [aux_sym_with_statement_token1] = ACTIONS(9040), + [aux_sym_exit_statement_token1] = ACTIONS(9040), + [sym_end_statement] = ACTIONS(9042), + [aux_sym_on_goto_statement_token1] = ACTIONS(9040), + [aux_sym_on_goto_statement_token2] = ACTIONS(9040), + [aux_sym_on_error_statement_token2] = ACTIONS(9040), + [sym__ambiguous_redim_statement] = ACTIONS(9042), + [aux_sym_erase_statement_token1] = ACTIONS(9040), + [aux_sym_open_statement_token1] = ACTIONS(9040), + [aux_sym_file_mode_token2] = ACTIONS(9040), + [aux_sym_file_access_token2] = ACTIONS(9040), + [aux_sym_file_lock_token2] = ACTIONS(9040), + [aux_sym_print_statement_token1] = ACTIONS(9040), + [anon_sym_PLUS] = ACTIONS(9042), + [anon_sym_DASH] = ACTIONS(9040), + [anon_sym_QMARK] = ACTIONS(9042), + [aux_sym_close_statement_token1] = ACTIONS(9040), + [aux_sym_put_statement_token1] = ACTIONS(9040), + [aux_sym_unlock_statement_token1] = ACTIONS(9040), + [aux_sym_seek_statement_token1] = ACTIONS(9040), + [sym_reset_statement] = ACTIONS(9040), + [aux_sym_raise_event_statement_token1] = ACTIONS(9040), + [sym_stop_statement] = ACTIONS(9040), + [sym_beep_statement] = ACTIONS(9040), + [aux_sym_unload_statement_token1] = ACTIONS(9040), + [aux_sym_def_type_statement_token1] = ACTIONS(9040), + [aux_sym_def_type_statement_token2] = ACTIONS(9040), + [aux_sym_def_type_statement_token3] = ACTIONS(9040), + [aux_sym_def_type_statement_token4] = ACTIONS(9040), + [aux_sym_def_type_statement_token5] = ACTIONS(9040), + [aux_sym_def_type_statement_token6] = ACTIONS(9040), + [aux_sym_def_type_statement_token7] = ACTIONS(9040), + [aux_sym_def_type_statement_token8] = ACTIONS(9040), + [aux_sym_def_type_statement_token9] = ACTIONS(9040), + [aux_sym_def_type_statement_token10] = ACTIONS(9040), + [aux_sym_def_type_statement_token11] = ACTIONS(9040), + [aux_sym_def_type_statement_token12] = ACTIONS(9040), + [aux_sym_def_type_statement_token13] = ACTIONS(9040), + [aux_sym_def_type_statement_token14] = ACTIONS(9040), + [aux_sym_call_statement_token1] = ACTIONS(9040), + [sym__ambiguous_call_statement] = ACTIONS(9040), + [aux_sym_addressof_expression_token1] = ACTIONS(9040), + [aux_sym_type_of_expression_token1] = ACTIONS(9040), + [aux_sym_unary_expression_token1] = ACTIONS(9040), + [sym_string_literal] = ACTIONS(9042), + [sym_number_literal] = ACTIONS(9042), + [aux_sym_boolean_literal_token1] = ACTIONS(9040), + [aux_sym_boolean_literal_token2] = ACTIONS(9040), + [sym_nothing_literal] = ACTIONS(9040), + [sym_null_literal] = ACTIONS(9040), + [sym_empty_literal] = ACTIONS(9040), + [sym_date_literal] = ACTIONS(9042), + [anon_sym_POUND] = ACTIONS(9040), + }, + [STATE(6754)] = { + [sym_identifier] = ACTIONS(9024), + [sym_newline] = ACTIONS(9026), + [anon_sym_COLON] = ACTIONS(9026), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9024), + [aux_sym_frm_property_statement_token1] = ACTIONS(9024), + [anon_sym_DOT] = ACTIONS(9024), + [anon_sym_BANG] = ACTIONS(9026), + [aux_sym__attribute_identifier_token1] = ACTIONS(9024), + [aux_sym_option_statement_token3] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9024), + [aux_sym_preprocessor_const_token1] = ACTIONS(9024), + [sym_static_modifier] = ACTIONS(9024), + [sym__dim_keyword] = ACTIONS(9024), + [sym__redim_keyword] = ACTIONS(9024), + [aux_sym_get_accessor_token1] = ACTIONS(9024), + [aux_sym_set_accessor_token1] = ACTIONS(9024), + [aux_sym_const_declaration_token1] = ACTIONS(9024), + [anon_sym_LPAREN] = ACTIONS(9026), + [aux_sym_as_type_clause_token2] = ACTIONS(9024), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9024), + [aux_sym_visibility_token1] = ACTIONS(9024), + [aux_sym_visibility_token2] = ACTIONS(9024), + [aux_sym_elseif_fragment_token1] = ACTIONS(9024), + [aux_sym_else_fragment_token1] = ACTIONS(9024), + [aux_sym_select_statement_token1] = ACTIONS(9024), + [aux_sym__for_header_token1] = ACTIONS(9024), + [aux_sym_do_statement_token1] = ACTIONS(9024), + [aux_sym_do_statement_token2] = ACTIONS(9024), + [aux_sym_do_condition_token1] = ACTIONS(9024), + [aux_sym_with_statement_token1] = ACTIONS(9024), + [aux_sym_exit_statement_token1] = ACTIONS(9024), + [sym_end_statement] = ACTIONS(9026), + [aux_sym_on_goto_statement_token1] = ACTIONS(9024), + [aux_sym_on_goto_statement_token2] = ACTIONS(9024), + [aux_sym_on_error_statement_token2] = ACTIONS(9024), + [sym__ambiguous_redim_statement] = ACTIONS(9026), + [aux_sym_erase_statement_token1] = ACTIONS(9024), + [aux_sym_open_statement_token1] = ACTIONS(9024), + [aux_sym_file_mode_token2] = ACTIONS(9024), + [aux_sym_file_access_token2] = ACTIONS(9024), + [aux_sym_file_lock_token2] = ACTIONS(9024), + [aux_sym_print_statement_token1] = ACTIONS(9024), + [anon_sym_PLUS] = ACTIONS(9026), + [anon_sym_DASH] = ACTIONS(9024), + [anon_sym_QMARK] = ACTIONS(9026), + [aux_sym_close_statement_token1] = ACTIONS(9024), + [aux_sym_put_statement_token1] = ACTIONS(9024), + [aux_sym_unlock_statement_token1] = ACTIONS(9024), + [aux_sym_seek_statement_token1] = ACTIONS(9024), + [sym_reset_statement] = ACTIONS(9024), + [aux_sym_raise_event_statement_token1] = ACTIONS(9024), + [sym_stop_statement] = ACTIONS(9024), + [sym_beep_statement] = ACTIONS(9024), + [aux_sym_unload_statement_token1] = ACTIONS(9024), + [aux_sym_def_type_statement_token1] = ACTIONS(9024), + [aux_sym_def_type_statement_token2] = ACTIONS(9024), + [aux_sym_def_type_statement_token3] = ACTIONS(9024), + [aux_sym_def_type_statement_token4] = ACTIONS(9024), + [aux_sym_def_type_statement_token5] = ACTIONS(9024), + [aux_sym_def_type_statement_token6] = ACTIONS(9024), + [aux_sym_def_type_statement_token7] = ACTIONS(9024), + [aux_sym_def_type_statement_token8] = ACTIONS(9024), + [aux_sym_def_type_statement_token9] = ACTIONS(9024), + [aux_sym_def_type_statement_token10] = ACTIONS(9024), + [aux_sym_def_type_statement_token11] = ACTIONS(9024), + [aux_sym_def_type_statement_token12] = ACTIONS(9024), + [aux_sym_def_type_statement_token13] = ACTIONS(9024), + [aux_sym_def_type_statement_token14] = ACTIONS(9024), + [aux_sym_call_statement_token1] = ACTIONS(9024), + [sym__ambiguous_call_statement] = ACTIONS(9024), + [aux_sym_addressof_expression_token1] = ACTIONS(9024), + [aux_sym_type_of_expression_token1] = ACTIONS(9024), + [aux_sym_unary_expression_token1] = ACTIONS(9024), + [sym_string_literal] = ACTIONS(9026), + [sym_number_literal] = ACTIONS(9026), + [aux_sym_boolean_literal_token1] = ACTIONS(9024), + [aux_sym_boolean_literal_token2] = ACTIONS(9024), + [sym_nothing_literal] = ACTIONS(9024), + [sym_null_literal] = ACTIONS(9024), + [sym_empty_literal] = ACTIONS(9024), + [sym_date_literal] = ACTIONS(9026), + [anon_sym_POUND] = ACTIONS(9024), + }, + [STATE(6755)] = { + [sym_identifier] = ACTIONS(9405), + [sym_newline] = ACTIONS(9407), + [anon_sym_COLON] = ACTIONS(9407), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9405), + [aux_sym_frm_property_statement_token1] = ACTIONS(9405), + [anon_sym_DOT] = ACTIONS(9405), + [anon_sym_BANG] = ACTIONS(9407), + [aux_sym__attribute_identifier_token1] = ACTIONS(9405), + [aux_sym_option_statement_token3] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9405), + [aux_sym_preprocessor_const_token1] = ACTIONS(9405), + [sym_static_modifier] = ACTIONS(9405), + [sym__dim_keyword] = ACTIONS(9405), + [sym__redim_keyword] = ACTIONS(9405), + [aux_sym_get_accessor_token1] = ACTIONS(9405), + [aux_sym_set_accessor_token1] = ACTIONS(9405), + [aux_sym_const_declaration_token1] = ACTIONS(9405), + [anon_sym_LPAREN] = ACTIONS(9407), + [aux_sym_as_type_clause_token2] = ACTIONS(9405), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9405), + [aux_sym_visibility_token1] = ACTIONS(9405), + [aux_sym_visibility_token2] = ACTIONS(9405), + [aux_sym_elseif_fragment_token1] = ACTIONS(9405), + [aux_sym_else_fragment_token1] = ACTIONS(9405), + [aux_sym_select_statement_token1] = ACTIONS(9405), + [aux_sym_select_statement_token2] = ACTIONS(9405), + [aux_sym__for_header_token1] = ACTIONS(9405), + [aux_sym_do_statement_token1] = ACTIONS(9405), + [aux_sym_do_condition_token1] = ACTIONS(9405), + [aux_sym_with_statement_token1] = ACTIONS(9405), + [aux_sym_exit_statement_token1] = ACTIONS(9405), + [sym_end_statement] = ACTIONS(9407), + [aux_sym_on_goto_statement_token1] = ACTIONS(9405), + [aux_sym_on_goto_statement_token2] = ACTIONS(9405), + [aux_sym_on_error_statement_token2] = ACTIONS(9405), + [sym__ambiguous_redim_statement] = ACTIONS(9407), + [aux_sym_erase_statement_token1] = ACTIONS(9405), + [aux_sym_open_statement_token1] = ACTIONS(9405), + [aux_sym_file_mode_token2] = ACTIONS(9405), + [aux_sym_file_access_token2] = ACTIONS(9405), + [aux_sym_file_lock_token2] = ACTIONS(9405), + [aux_sym_print_statement_token1] = ACTIONS(9405), + [anon_sym_PLUS] = ACTIONS(9407), + [anon_sym_DASH] = ACTIONS(9405), + [anon_sym_QMARK] = ACTIONS(9407), + [aux_sym_close_statement_token1] = ACTIONS(9405), + [aux_sym_put_statement_token1] = ACTIONS(9405), + [aux_sym_unlock_statement_token1] = ACTIONS(9405), + [aux_sym_seek_statement_token1] = ACTIONS(9405), + [sym_reset_statement] = ACTIONS(9405), + [aux_sym_raise_event_statement_token1] = ACTIONS(9405), + [sym_stop_statement] = ACTIONS(9405), + [sym_beep_statement] = ACTIONS(9405), + [aux_sym_unload_statement_token1] = ACTIONS(9405), + [aux_sym_def_type_statement_token1] = ACTIONS(9405), + [aux_sym_def_type_statement_token2] = ACTIONS(9405), + [aux_sym_def_type_statement_token3] = ACTIONS(9405), + [aux_sym_def_type_statement_token4] = ACTIONS(9405), + [aux_sym_def_type_statement_token5] = ACTIONS(9405), + [aux_sym_def_type_statement_token6] = ACTIONS(9405), + [aux_sym_def_type_statement_token7] = ACTIONS(9405), + [aux_sym_def_type_statement_token8] = ACTIONS(9405), + [aux_sym_def_type_statement_token9] = ACTIONS(9405), + [aux_sym_def_type_statement_token10] = ACTIONS(9405), + [aux_sym_def_type_statement_token11] = ACTIONS(9405), + [aux_sym_def_type_statement_token12] = ACTIONS(9405), + [aux_sym_def_type_statement_token13] = ACTIONS(9405), + [aux_sym_def_type_statement_token14] = ACTIONS(9405), + [aux_sym_call_statement_token1] = ACTIONS(9405), + [sym__ambiguous_call_statement] = ACTIONS(9405), + [aux_sym_addressof_expression_token1] = ACTIONS(9405), + [aux_sym_type_of_expression_token1] = ACTIONS(9405), + [aux_sym_unary_expression_token1] = ACTIONS(9405), + [sym_string_literal] = ACTIONS(9407), + [sym_number_literal] = ACTIONS(9407), + [aux_sym_boolean_literal_token1] = ACTIONS(9405), + [aux_sym_boolean_literal_token2] = ACTIONS(9405), + [sym_nothing_literal] = ACTIONS(9405), + [sym_null_literal] = ACTIONS(9405), + [sym_empty_literal] = ACTIONS(9405), + [sym_date_literal] = ACTIONS(9407), + [anon_sym_POUND] = ACTIONS(9405), + }, + [STATE(6756)] = { + [sym_identifier] = ACTIONS(9439), + [sym_newline] = ACTIONS(9441), + [anon_sym_COLON] = ACTIONS(9441), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9439), + [aux_sym_frm_property_statement_token1] = ACTIONS(9439), + [anon_sym_DOT] = ACTIONS(9439), + [anon_sym_BANG] = ACTIONS(9441), + [aux_sym__attribute_identifier_token1] = ACTIONS(9439), + [aux_sym_option_statement_token3] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9439), + [aux_sym_preprocessor_const_token1] = ACTIONS(9439), + [sym_static_modifier] = ACTIONS(9439), + [sym__dim_keyword] = ACTIONS(9439), + [sym__redim_keyword] = ACTIONS(9439), + [aux_sym_get_accessor_token1] = ACTIONS(9439), + [aux_sym_set_accessor_token1] = ACTIONS(9439), + [aux_sym_const_declaration_token1] = ACTIONS(9439), + [anon_sym_LPAREN] = ACTIONS(9441), + [aux_sym_as_type_clause_token2] = ACTIONS(9439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9439), + [aux_sym_visibility_token1] = ACTIONS(9439), + [aux_sym_visibility_token2] = ACTIONS(9439), + [aux_sym_elseif_fragment_token1] = ACTIONS(9439), + [aux_sym_else_fragment_token1] = ACTIONS(9439), + [aux_sym_select_statement_token1] = ACTIONS(9439), + [aux_sym__for_header_token1] = ACTIONS(9439), + [aux_sym_do_statement_token1] = ACTIONS(9439), + [aux_sym_do_statement_token2] = ACTIONS(9439), + [aux_sym_do_condition_token1] = ACTIONS(9439), + [aux_sym_with_statement_token1] = ACTIONS(9439), + [aux_sym_exit_statement_token1] = ACTIONS(9439), + [sym_end_statement] = ACTIONS(9441), + [aux_sym_on_goto_statement_token1] = ACTIONS(9439), + [aux_sym_on_goto_statement_token2] = ACTIONS(9439), + [aux_sym_on_error_statement_token2] = ACTIONS(9439), + [sym__ambiguous_redim_statement] = ACTIONS(9441), + [aux_sym_erase_statement_token1] = ACTIONS(9439), + [aux_sym_open_statement_token1] = ACTIONS(9439), + [aux_sym_file_mode_token2] = ACTIONS(9439), + [aux_sym_file_access_token2] = ACTIONS(9439), + [aux_sym_file_lock_token2] = ACTIONS(9439), + [aux_sym_print_statement_token1] = ACTIONS(9439), + [anon_sym_PLUS] = ACTIONS(9441), + [anon_sym_DASH] = ACTIONS(9439), + [anon_sym_QMARK] = ACTIONS(9441), + [aux_sym_close_statement_token1] = ACTIONS(9439), + [aux_sym_put_statement_token1] = ACTIONS(9439), + [aux_sym_unlock_statement_token1] = ACTIONS(9439), + [aux_sym_seek_statement_token1] = ACTIONS(9439), + [sym_reset_statement] = ACTIONS(9439), + [aux_sym_raise_event_statement_token1] = ACTIONS(9439), + [sym_stop_statement] = ACTIONS(9439), + [sym_beep_statement] = ACTIONS(9439), + [aux_sym_unload_statement_token1] = ACTIONS(9439), + [aux_sym_def_type_statement_token1] = ACTIONS(9439), + [aux_sym_def_type_statement_token2] = ACTIONS(9439), + [aux_sym_def_type_statement_token3] = ACTIONS(9439), + [aux_sym_def_type_statement_token4] = ACTIONS(9439), + [aux_sym_def_type_statement_token5] = ACTIONS(9439), + [aux_sym_def_type_statement_token6] = ACTIONS(9439), + [aux_sym_def_type_statement_token7] = ACTIONS(9439), + [aux_sym_def_type_statement_token8] = ACTIONS(9439), + [aux_sym_def_type_statement_token9] = ACTIONS(9439), + [aux_sym_def_type_statement_token10] = ACTIONS(9439), + [aux_sym_def_type_statement_token11] = ACTIONS(9439), + [aux_sym_def_type_statement_token12] = ACTIONS(9439), + [aux_sym_def_type_statement_token13] = ACTIONS(9439), + [aux_sym_def_type_statement_token14] = ACTIONS(9439), + [aux_sym_call_statement_token1] = ACTIONS(9439), + [sym__ambiguous_call_statement] = ACTIONS(9439), + [aux_sym_addressof_expression_token1] = ACTIONS(9439), + [aux_sym_type_of_expression_token1] = ACTIONS(9439), + [aux_sym_unary_expression_token1] = ACTIONS(9439), + [sym_string_literal] = ACTIONS(9441), + [sym_number_literal] = ACTIONS(9441), + [aux_sym_boolean_literal_token1] = ACTIONS(9439), + [aux_sym_boolean_literal_token2] = ACTIONS(9439), + [sym_nothing_literal] = ACTIONS(9439), + [sym_null_literal] = ACTIONS(9439), + [sym_empty_literal] = ACTIONS(9439), + [sym_date_literal] = ACTIONS(9441), + [anon_sym_POUND] = ACTIONS(9439), + }, + [STATE(6757)] = { + [sym_identifier] = ACTIONS(9409), + [sym_newline] = ACTIONS(9411), + [anon_sym_COLON] = ACTIONS(9411), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9409), + [aux_sym_frm_property_statement_token1] = ACTIONS(9409), + [anon_sym_DOT] = ACTIONS(9409), + [anon_sym_BANG] = ACTIONS(9411), + [aux_sym__attribute_identifier_token1] = ACTIONS(9409), + [aux_sym_option_statement_token3] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9409), + [aux_sym_preprocessor_const_token1] = ACTIONS(9409), + [sym_static_modifier] = ACTIONS(9409), + [sym__dim_keyword] = ACTIONS(9409), + [sym__redim_keyword] = ACTIONS(9409), + [aux_sym_get_accessor_token1] = ACTIONS(9409), + [aux_sym_set_accessor_token1] = ACTIONS(9409), + [aux_sym_const_declaration_token1] = ACTIONS(9409), + [anon_sym_LPAREN] = ACTIONS(9411), + [aux_sym_as_type_clause_token2] = ACTIONS(9409), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9409), + [aux_sym_visibility_token1] = ACTIONS(9409), + [aux_sym_visibility_token2] = ACTIONS(9409), + [aux_sym_elseif_fragment_token1] = ACTIONS(9409), + [aux_sym_else_fragment_token1] = ACTIONS(9409), + [aux_sym_select_statement_token1] = ACTIONS(9409), + [aux_sym_select_statement_token2] = ACTIONS(9409), + [aux_sym__for_header_token1] = ACTIONS(9409), + [aux_sym_do_statement_token1] = ACTIONS(9409), + [aux_sym_do_condition_token1] = ACTIONS(9409), + [aux_sym_with_statement_token1] = ACTIONS(9409), + [aux_sym_exit_statement_token1] = ACTIONS(9409), + [sym_end_statement] = ACTIONS(9411), + [aux_sym_on_goto_statement_token1] = ACTIONS(9409), + [aux_sym_on_goto_statement_token2] = ACTIONS(9409), + [aux_sym_on_error_statement_token2] = ACTIONS(9409), + [sym__ambiguous_redim_statement] = ACTIONS(9411), + [aux_sym_erase_statement_token1] = ACTIONS(9409), + [aux_sym_open_statement_token1] = ACTIONS(9409), + [aux_sym_file_mode_token2] = ACTIONS(9409), + [aux_sym_file_access_token2] = ACTIONS(9409), + [aux_sym_file_lock_token2] = ACTIONS(9409), + [aux_sym_print_statement_token1] = ACTIONS(9409), + [anon_sym_PLUS] = ACTIONS(9411), + [anon_sym_DASH] = ACTIONS(9409), + [anon_sym_QMARK] = ACTIONS(9411), + [aux_sym_close_statement_token1] = ACTIONS(9409), + [aux_sym_put_statement_token1] = ACTIONS(9409), + [aux_sym_unlock_statement_token1] = ACTIONS(9409), + [aux_sym_seek_statement_token1] = ACTIONS(9409), + [sym_reset_statement] = ACTIONS(9409), + [aux_sym_raise_event_statement_token1] = ACTIONS(9409), + [sym_stop_statement] = ACTIONS(9409), + [sym_beep_statement] = ACTIONS(9409), + [aux_sym_unload_statement_token1] = ACTIONS(9409), + [aux_sym_def_type_statement_token1] = ACTIONS(9409), + [aux_sym_def_type_statement_token2] = ACTIONS(9409), + [aux_sym_def_type_statement_token3] = ACTIONS(9409), + [aux_sym_def_type_statement_token4] = ACTIONS(9409), + [aux_sym_def_type_statement_token5] = ACTIONS(9409), + [aux_sym_def_type_statement_token6] = ACTIONS(9409), + [aux_sym_def_type_statement_token7] = ACTIONS(9409), + [aux_sym_def_type_statement_token8] = ACTIONS(9409), + [aux_sym_def_type_statement_token9] = ACTIONS(9409), + [aux_sym_def_type_statement_token10] = ACTIONS(9409), + [aux_sym_def_type_statement_token11] = ACTIONS(9409), + [aux_sym_def_type_statement_token12] = ACTIONS(9409), + [aux_sym_def_type_statement_token13] = ACTIONS(9409), + [aux_sym_def_type_statement_token14] = ACTIONS(9409), + [aux_sym_call_statement_token1] = ACTIONS(9409), + [sym__ambiguous_call_statement] = ACTIONS(9409), + [aux_sym_addressof_expression_token1] = ACTIONS(9409), + [aux_sym_type_of_expression_token1] = ACTIONS(9409), + [aux_sym_unary_expression_token1] = ACTIONS(9409), + [sym_string_literal] = ACTIONS(9411), + [sym_number_literal] = ACTIONS(9411), + [aux_sym_boolean_literal_token1] = ACTIONS(9409), + [aux_sym_boolean_literal_token2] = ACTIONS(9409), + [sym_nothing_literal] = ACTIONS(9409), + [sym_null_literal] = ACTIONS(9409), + [sym_empty_literal] = ACTIONS(9409), + [sym_date_literal] = ACTIONS(9411), + [anon_sym_POUND] = ACTIONS(9409), + }, + [STATE(6758)] = { + [sym_identifier] = ACTIONS(9443), + [sym_newline] = ACTIONS(9445), + [anon_sym_COLON] = ACTIONS(9445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9443), + [aux_sym_frm_property_statement_token1] = ACTIONS(9443), + [anon_sym_DOT] = ACTIONS(9443), + [anon_sym_BANG] = ACTIONS(9445), + [aux_sym__attribute_identifier_token1] = ACTIONS(9443), + [aux_sym_option_statement_token3] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9443), + [aux_sym_preprocessor_const_token1] = ACTIONS(9443), + [sym_static_modifier] = ACTIONS(9443), + [sym__dim_keyword] = ACTIONS(9443), + [sym__redim_keyword] = ACTIONS(9443), + [aux_sym_get_accessor_token1] = ACTIONS(9443), + [aux_sym_set_accessor_token1] = ACTIONS(9443), + [aux_sym_const_declaration_token1] = ACTIONS(9443), + [anon_sym_LPAREN] = ACTIONS(9445), + [aux_sym_as_type_clause_token2] = ACTIONS(9443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9443), + [aux_sym_visibility_token1] = ACTIONS(9443), + [aux_sym_visibility_token2] = ACTIONS(9443), + [aux_sym_elseif_fragment_token1] = ACTIONS(9443), + [aux_sym_else_fragment_token1] = ACTIONS(9443), + [aux_sym_select_statement_token1] = ACTIONS(9443), + [aux_sym__for_header_token1] = ACTIONS(9443), + [aux_sym_do_statement_token1] = ACTIONS(9443), + [aux_sym_do_statement_token2] = ACTIONS(9443), + [aux_sym_do_condition_token1] = ACTIONS(9443), + [aux_sym_with_statement_token1] = ACTIONS(9443), + [aux_sym_exit_statement_token1] = ACTIONS(9443), + [sym_end_statement] = ACTIONS(9445), + [aux_sym_on_goto_statement_token1] = ACTIONS(9443), + [aux_sym_on_goto_statement_token2] = ACTIONS(9443), + [aux_sym_on_error_statement_token2] = ACTIONS(9443), + [sym__ambiguous_redim_statement] = ACTIONS(9445), + [aux_sym_erase_statement_token1] = ACTIONS(9443), + [aux_sym_open_statement_token1] = ACTIONS(9443), + [aux_sym_file_mode_token2] = ACTIONS(9443), + [aux_sym_file_access_token2] = ACTIONS(9443), + [aux_sym_file_lock_token2] = ACTIONS(9443), + [aux_sym_print_statement_token1] = ACTIONS(9443), + [anon_sym_PLUS] = ACTIONS(9445), + [anon_sym_DASH] = ACTIONS(9443), + [anon_sym_QMARK] = ACTIONS(9445), + [aux_sym_close_statement_token1] = ACTIONS(9443), + [aux_sym_put_statement_token1] = ACTIONS(9443), + [aux_sym_unlock_statement_token1] = ACTIONS(9443), + [aux_sym_seek_statement_token1] = ACTIONS(9443), + [sym_reset_statement] = ACTIONS(9443), + [aux_sym_raise_event_statement_token1] = ACTIONS(9443), + [sym_stop_statement] = ACTIONS(9443), + [sym_beep_statement] = ACTIONS(9443), + [aux_sym_unload_statement_token1] = ACTIONS(9443), + [aux_sym_def_type_statement_token1] = ACTIONS(9443), + [aux_sym_def_type_statement_token2] = ACTIONS(9443), + [aux_sym_def_type_statement_token3] = ACTIONS(9443), + [aux_sym_def_type_statement_token4] = ACTIONS(9443), + [aux_sym_def_type_statement_token5] = ACTIONS(9443), + [aux_sym_def_type_statement_token6] = ACTIONS(9443), + [aux_sym_def_type_statement_token7] = ACTIONS(9443), + [aux_sym_def_type_statement_token8] = ACTIONS(9443), + [aux_sym_def_type_statement_token9] = ACTIONS(9443), + [aux_sym_def_type_statement_token10] = ACTIONS(9443), + [aux_sym_def_type_statement_token11] = ACTIONS(9443), + [aux_sym_def_type_statement_token12] = ACTIONS(9443), + [aux_sym_def_type_statement_token13] = ACTIONS(9443), + [aux_sym_def_type_statement_token14] = ACTIONS(9443), + [aux_sym_call_statement_token1] = ACTIONS(9443), + [sym__ambiguous_call_statement] = ACTIONS(9443), + [aux_sym_addressof_expression_token1] = ACTIONS(9443), + [aux_sym_type_of_expression_token1] = ACTIONS(9443), + [aux_sym_unary_expression_token1] = ACTIONS(9443), + [sym_string_literal] = ACTIONS(9445), + [sym_number_literal] = ACTIONS(9445), + [aux_sym_boolean_literal_token1] = ACTIONS(9443), + [aux_sym_boolean_literal_token2] = ACTIONS(9443), + [sym_nothing_literal] = ACTIONS(9443), + [sym_null_literal] = ACTIONS(9443), + [sym_empty_literal] = ACTIONS(9443), + [sym_date_literal] = ACTIONS(9445), + [anon_sym_POUND] = ACTIONS(9443), + }, + [STATE(6759)] = { + [sym_identifier] = ACTIONS(9080), + [sym_newline] = ACTIONS(9082), + [anon_sym_COLON] = ACTIONS(9082), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9080), + [aux_sym_frm_property_statement_token1] = ACTIONS(9080), + [anon_sym_DOT] = ACTIONS(9080), + [anon_sym_BANG] = ACTIONS(9082), + [aux_sym__attribute_identifier_token1] = ACTIONS(9080), + [aux_sym_option_statement_token3] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9080), + [aux_sym_preprocessor_const_token1] = ACTIONS(9080), + [sym_static_modifier] = ACTIONS(9080), + [sym__dim_keyword] = ACTIONS(9080), + [sym__redim_keyword] = ACTIONS(9080), + [aux_sym_get_accessor_token1] = ACTIONS(9080), + [aux_sym_set_accessor_token1] = ACTIONS(9080), + [aux_sym_const_declaration_token1] = ACTIONS(9080), + [anon_sym_LPAREN] = ACTIONS(9082), + [aux_sym_as_type_clause_token2] = ACTIONS(9080), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9080), + [aux_sym_visibility_token1] = ACTIONS(9080), + [aux_sym_visibility_token2] = ACTIONS(9080), + [aux_sym_elseif_fragment_token1] = ACTIONS(9080), + [aux_sym_else_fragment_token1] = ACTIONS(9080), + [aux_sym_select_statement_token1] = ACTIONS(9080), + [aux_sym__for_header_token1] = ACTIONS(9080), + [aux_sym_do_statement_token1] = ACTIONS(9080), + [aux_sym_do_condition_token1] = ACTIONS(9080), + [aux_sym_while_statement_token1] = ACTIONS(9080), + [aux_sym_with_statement_token1] = ACTIONS(9080), + [aux_sym_exit_statement_token1] = ACTIONS(9080), + [sym_end_statement] = ACTIONS(9082), + [aux_sym_on_goto_statement_token1] = ACTIONS(9080), + [aux_sym_on_goto_statement_token2] = ACTIONS(9080), + [aux_sym_on_error_statement_token2] = ACTIONS(9080), + [sym__ambiguous_redim_statement] = ACTIONS(9082), + [aux_sym_erase_statement_token1] = ACTIONS(9080), + [aux_sym_open_statement_token1] = ACTIONS(9080), + [aux_sym_file_mode_token2] = ACTIONS(9080), + [aux_sym_file_access_token2] = ACTIONS(9080), + [aux_sym_file_lock_token2] = ACTIONS(9080), + [aux_sym_print_statement_token1] = ACTIONS(9080), + [anon_sym_PLUS] = ACTIONS(9082), + [anon_sym_DASH] = ACTIONS(9080), + [anon_sym_QMARK] = ACTIONS(9082), + [aux_sym_close_statement_token1] = ACTIONS(9080), + [aux_sym_put_statement_token1] = ACTIONS(9080), + [aux_sym_unlock_statement_token1] = ACTIONS(9080), + [aux_sym_seek_statement_token1] = ACTIONS(9080), + [sym_reset_statement] = ACTIONS(9080), + [aux_sym_raise_event_statement_token1] = ACTIONS(9080), + [sym_stop_statement] = ACTIONS(9080), + [sym_beep_statement] = ACTIONS(9080), + [aux_sym_unload_statement_token1] = ACTIONS(9080), + [aux_sym_def_type_statement_token1] = ACTIONS(9080), + [aux_sym_def_type_statement_token2] = ACTIONS(9080), + [aux_sym_def_type_statement_token3] = ACTIONS(9080), + [aux_sym_def_type_statement_token4] = ACTIONS(9080), + [aux_sym_def_type_statement_token5] = ACTIONS(9080), + [aux_sym_def_type_statement_token6] = ACTIONS(9080), + [aux_sym_def_type_statement_token7] = ACTIONS(9080), + [aux_sym_def_type_statement_token8] = ACTIONS(9080), + [aux_sym_def_type_statement_token9] = ACTIONS(9080), + [aux_sym_def_type_statement_token10] = ACTIONS(9080), + [aux_sym_def_type_statement_token11] = ACTIONS(9080), + [aux_sym_def_type_statement_token12] = ACTIONS(9080), + [aux_sym_def_type_statement_token13] = ACTIONS(9080), + [aux_sym_def_type_statement_token14] = ACTIONS(9080), + [aux_sym_call_statement_token1] = ACTIONS(9080), + [sym__ambiguous_call_statement] = ACTIONS(9080), + [aux_sym_addressof_expression_token1] = ACTIONS(9080), + [aux_sym_type_of_expression_token1] = ACTIONS(9080), + [aux_sym_unary_expression_token1] = ACTIONS(9080), + [sym_string_literal] = ACTIONS(9082), + [sym_number_literal] = ACTIONS(9082), + [aux_sym_boolean_literal_token1] = ACTIONS(9080), + [aux_sym_boolean_literal_token2] = ACTIONS(9080), + [sym_nothing_literal] = ACTIONS(9080), + [sym_null_literal] = ACTIONS(9080), + [sym_empty_literal] = ACTIONS(9080), + [sym_date_literal] = ACTIONS(9082), + [anon_sym_POUND] = ACTIONS(9080), + }, + [STATE(6760)] = { + [sym_identifier] = ACTIONS(9260), + [sym_newline] = ACTIONS(9262), + [anon_sym_COLON] = ACTIONS(9262), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9260), + [aux_sym_frm_property_statement_token1] = ACTIONS(9260), + [anon_sym_DOT] = ACTIONS(9260), + [anon_sym_BANG] = ACTIONS(9262), + [aux_sym__attribute_identifier_token1] = ACTIONS(9260), + [aux_sym_option_statement_token3] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9260), + [aux_sym_preprocessor_const_token1] = ACTIONS(9260), + [sym_static_modifier] = ACTIONS(9260), + [sym__dim_keyword] = ACTIONS(9260), + [sym__redim_keyword] = ACTIONS(9260), + [aux_sym_get_accessor_token1] = ACTIONS(9260), + [aux_sym_set_accessor_token1] = ACTIONS(9260), + [aux_sym_const_declaration_token1] = ACTIONS(9260), + [anon_sym_LPAREN] = ACTIONS(9262), + [aux_sym_as_type_clause_token2] = ACTIONS(9260), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9260), + [aux_sym_visibility_token1] = ACTIONS(9260), + [aux_sym_visibility_token2] = ACTIONS(9260), + [aux_sym_elseif_fragment_token1] = ACTIONS(9260), + [aux_sym_else_fragment_token1] = ACTIONS(9260), + [aux_sym_select_statement_token1] = ACTIONS(9260), + [aux_sym_select_statement_token2] = ACTIONS(9260), + [aux_sym__for_header_token1] = ACTIONS(9260), + [aux_sym_do_statement_token1] = ACTIONS(9260), + [aux_sym_do_condition_token1] = ACTIONS(9260), + [aux_sym_with_statement_token1] = ACTIONS(9260), + [aux_sym_exit_statement_token1] = ACTIONS(9260), + [sym_end_statement] = ACTIONS(9262), + [aux_sym_on_goto_statement_token1] = ACTIONS(9260), + [aux_sym_on_goto_statement_token2] = ACTIONS(9260), + [aux_sym_on_error_statement_token2] = ACTIONS(9260), + [sym__ambiguous_redim_statement] = ACTIONS(9262), + [aux_sym_erase_statement_token1] = ACTIONS(9260), + [aux_sym_open_statement_token1] = ACTIONS(9260), + [aux_sym_file_mode_token2] = ACTIONS(9260), + [aux_sym_file_access_token2] = ACTIONS(9260), + [aux_sym_file_lock_token2] = ACTIONS(9260), + [aux_sym_print_statement_token1] = ACTIONS(9260), + [anon_sym_PLUS] = ACTIONS(9262), + [anon_sym_DASH] = ACTIONS(9260), + [anon_sym_QMARK] = ACTIONS(9262), + [aux_sym_close_statement_token1] = ACTIONS(9260), + [aux_sym_put_statement_token1] = ACTIONS(9260), + [aux_sym_unlock_statement_token1] = ACTIONS(9260), + [aux_sym_seek_statement_token1] = ACTIONS(9260), + [sym_reset_statement] = ACTIONS(9260), + [aux_sym_raise_event_statement_token1] = ACTIONS(9260), + [sym_stop_statement] = ACTIONS(9260), + [sym_beep_statement] = ACTIONS(9260), + [aux_sym_unload_statement_token1] = ACTIONS(9260), + [aux_sym_def_type_statement_token1] = ACTIONS(9260), + [aux_sym_def_type_statement_token2] = ACTIONS(9260), + [aux_sym_def_type_statement_token3] = ACTIONS(9260), + [aux_sym_def_type_statement_token4] = ACTIONS(9260), + [aux_sym_def_type_statement_token5] = ACTIONS(9260), + [aux_sym_def_type_statement_token6] = ACTIONS(9260), + [aux_sym_def_type_statement_token7] = ACTIONS(9260), + [aux_sym_def_type_statement_token8] = ACTIONS(9260), + [aux_sym_def_type_statement_token9] = ACTIONS(9260), + [aux_sym_def_type_statement_token10] = ACTIONS(9260), + [aux_sym_def_type_statement_token11] = ACTIONS(9260), + [aux_sym_def_type_statement_token12] = ACTIONS(9260), + [aux_sym_def_type_statement_token13] = ACTIONS(9260), + [aux_sym_def_type_statement_token14] = ACTIONS(9260), + [aux_sym_call_statement_token1] = ACTIONS(9260), + [sym__ambiguous_call_statement] = ACTIONS(9260), + [aux_sym_addressof_expression_token1] = ACTIONS(9260), + [aux_sym_type_of_expression_token1] = ACTIONS(9260), + [aux_sym_unary_expression_token1] = ACTIONS(9260), + [sym_string_literal] = ACTIONS(9262), + [sym_number_literal] = ACTIONS(9262), + [aux_sym_boolean_literal_token1] = ACTIONS(9260), + [aux_sym_boolean_literal_token2] = ACTIONS(9260), + [sym_nothing_literal] = ACTIONS(9260), + [sym_null_literal] = ACTIONS(9260), + [sym_empty_literal] = ACTIONS(9260), + [sym_date_literal] = ACTIONS(9262), + [anon_sym_POUND] = ACTIONS(9260), + }, + [STATE(6761)] = { + [sym_identifier] = ACTIONS(9084), + [sym_newline] = ACTIONS(9086), + [anon_sym_COLON] = ACTIONS(9086), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9084), + [aux_sym_frm_property_statement_token1] = ACTIONS(9084), + [anon_sym_DOT] = ACTIONS(9084), + [anon_sym_BANG] = ACTIONS(9086), + [aux_sym__attribute_identifier_token1] = ACTIONS(9084), + [aux_sym_option_statement_token3] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9084), + [aux_sym_preprocessor_const_token1] = ACTIONS(9084), + [sym_static_modifier] = ACTIONS(9084), + [sym__dim_keyword] = ACTIONS(9084), + [sym__redim_keyword] = ACTIONS(9084), + [aux_sym_get_accessor_token1] = ACTIONS(9084), + [aux_sym_set_accessor_token1] = ACTIONS(9084), + [aux_sym_const_declaration_token1] = ACTIONS(9084), + [anon_sym_LPAREN] = ACTIONS(9086), + [aux_sym_as_type_clause_token2] = ACTIONS(9084), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9084), + [aux_sym_visibility_token1] = ACTIONS(9084), + [aux_sym_visibility_token2] = ACTIONS(9084), + [aux_sym_elseif_fragment_token1] = ACTIONS(9084), + [aux_sym_else_fragment_token1] = ACTIONS(9084), + [aux_sym_select_statement_token1] = ACTIONS(9084), + [aux_sym__for_header_token1] = ACTIONS(9084), + [aux_sym_do_statement_token1] = ACTIONS(9084), + [aux_sym_do_condition_token1] = ACTIONS(9084), + [aux_sym_while_statement_token1] = ACTIONS(9084), + [aux_sym_with_statement_token1] = ACTIONS(9084), + [aux_sym_exit_statement_token1] = ACTIONS(9084), + [sym_end_statement] = ACTIONS(9086), + [aux_sym_on_goto_statement_token1] = ACTIONS(9084), + [aux_sym_on_goto_statement_token2] = ACTIONS(9084), + [aux_sym_on_error_statement_token2] = ACTIONS(9084), + [sym__ambiguous_redim_statement] = ACTIONS(9086), + [aux_sym_erase_statement_token1] = ACTIONS(9084), + [aux_sym_open_statement_token1] = ACTIONS(9084), + [aux_sym_file_mode_token2] = ACTIONS(9084), + [aux_sym_file_access_token2] = ACTIONS(9084), + [aux_sym_file_lock_token2] = ACTIONS(9084), + [aux_sym_print_statement_token1] = ACTIONS(9084), + [anon_sym_PLUS] = ACTIONS(9086), + [anon_sym_DASH] = ACTIONS(9084), + [anon_sym_QMARK] = ACTIONS(9086), + [aux_sym_close_statement_token1] = ACTIONS(9084), + [aux_sym_put_statement_token1] = ACTIONS(9084), + [aux_sym_unlock_statement_token1] = ACTIONS(9084), + [aux_sym_seek_statement_token1] = ACTIONS(9084), + [sym_reset_statement] = ACTIONS(9084), + [aux_sym_raise_event_statement_token1] = ACTIONS(9084), + [sym_stop_statement] = ACTIONS(9084), + [sym_beep_statement] = ACTIONS(9084), + [aux_sym_unload_statement_token1] = ACTIONS(9084), + [aux_sym_def_type_statement_token1] = ACTIONS(9084), + [aux_sym_def_type_statement_token2] = ACTIONS(9084), + [aux_sym_def_type_statement_token3] = ACTIONS(9084), + [aux_sym_def_type_statement_token4] = ACTIONS(9084), + [aux_sym_def_type_statement_token5] = ACTIONS(9084), + [aux_sym_def_type_statement_token6] = ACTIONS(9084), + [aux_sym_def_type_statement_token7] = ACTIONS(9084), + [aux_sym_def_type_statement_token8] = ACTIONS(9084), + [aux_sym_def_type_statement_token9] = ACTIONS(9084), + [aux_sym_def_type_statement_token10] = ACTIONS(9084), + [aux_sym_def_type_statement_token11] = ACTIONS(9084), + [aux_sym_def_type_statement_token12] = ACTIONS(9084), + [aux_sym_def_type_statement_token13] = ACTIONS(9084), + [aux_sym_def_type_statement_token14] = ACTIONS(9084), + [aux_sym_call_statement_token1] = ACTIONS(9084), + [sym__ambiguous_call_statement] = ACTIONS(9084), + [aux_sym_addressof_expression_token1] = ACTIONS(9084), + [aux_sym_type_of_expression_token1] = ACTIONS(9084), + [aux_sym_unary_expression_token1] = ACTIONS(9084), + [sym_string_literal] = ACTIONS(9086), + [sym_number_literal] = ACTIONS(9086), + [aux_sym_boolean_literal_token1] = ACTIONS(9084), + [aux_sym_boolean_literal_token2] = ACTIONS(9084), + [sym_nothing_literal] = ACTIONS(9084), + [sym_null_literal] = ACTIONS(9084), + [sym_empty_literal] = ACTIONS(9084), + [sym_date_literal] = ACTIONS(9086), + [anon_sym_POUND] = ACTIONS(9084), + }, + [STATE(6762)] = { + [sym_identifier] = ACTIONS(8986), + [sym_newline] = ACTIONS(9032), + [anon_sym_COLON] = ACTIONS(9032), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8986), + [aux_sym_frm_property_statement_token1] = ACTIONS(8986), + [anon_sym_DOT] = ACTIONS(8986), + [anon_sym_BANG] = ACTIONS(9032), + [aux_sym__attribute_identifier_token1] = ACTIONS(8986), + [aux_sym_option_statement_token3] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8986), + [aux_sym_preprocessor_const_token1] = ACTIONS(8986), + [sym_static_modifier] = ACTIONS(8986), + [sym__dim_keyword] = ACTIONS(8986), + [sym__redim_keyword] = ACTIONS(8986), + [aux_sym_get_accessor_token1] = ACTIONS(8986), + [aux_sym_set_accessor_token1] = ACTIONS(8986), + [aux_sym_const_declaration_token1] = ACTIONS(8986), + [anon_sym_LPAREN] = ACTIONS(9032), + [aux_sym_as_type_clause_token2] = ACTIONS(8986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8986), + [aux_sym_visibility_token1] = ACTIONS(8986), + [aux_sym_visibility_token2] = ACTIONS(8986), + [aux_sym_elseif_fragment_token1] = ACTIONS(8986), + [aux_sym_else_fragment_token1] = ACTIONS(8986), + [aux_sym_select_statement_token1] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8986), + [aux_sym_do_statement_token1] = ACTIONS(8986), + [aux_sym_do_statement_token2] = ACTIONS(8986), + [aux_sym_do_condition_token1] = ACTIONS(8986), + [aux_sym_with_statement_token1] = ACTIONS(8986), + [aux_sym_exit_statement_token1] = ACTIONS(8986), + [sym_end_statement] = ACTIONS(9032), + [aux_sym_on_goto_statement_token1] = ACTIONS(8986), + [aux_sym_on_goto_statement_token2] = ACTIONS(8986), + [aux_sym_on_error_statement_token2] = ACTIONS(8986), + [sym__ambiguous_redim_statement] = ACTIONS(9032), + [aux_sym_erase_statement_token1] = ACTIONS(8986), + [aux_sym_open_statement_token1] = ACTIONS(8986), + [aux_sym_file_mode_token2] = ACTIONS(8986), + [aux_sym_file_access_token2] = ACTIONS(8986), + [aux_sym_file_lock_token2] = ACTIONS(8986), + [aux_sym_print_statement_token1] = ACTIONS(8986), + [anon_sym_PLUS] = ACTIONS(9032), + [anon_sym_DASH] = ACTIONS(8986), + [anon_sym_QMARK] = ACTIONS(9032), + [aux_sym_close_statement_token1] = ACTIONS(8986), + [aux_sym_put_statement_token1] = ACTIONS(8986), + [aux_sym_unlock_statement_token1] = ACTIONS(8986), + [aux_sym_seek_statement_token1] = ACTIONS(8986), + [sym_reset_statement] = ACTIONS(8986), + [aux_sym_raise_event_statement_token1] = ACTIONS(8986), + [sym_stop_statement] = ACTIONS(8986), + [sym_beep_statement] = ACTIONS(8986), + [aux_sym_unload_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token2] = ACTIONS(8986), + [aux_sym_def_type_statement_token3] = ACTIONS(8986), + [aux_sym_def_type_statement_token4] = ACTIONS(8986), + [aux_sym_def_type_statement_token5] = ACTIONS(8986), + [aux_sym_def_type_statement_token6] = ACTIONS(8986), + [aux_sym_def_type_statement_token7] = ACTIONS(8986), + [aux_sym_def_type_statement_token8] = ACTIONS(8986), + [aux_sym_def_type_statement_token9] = ACTIONS(8986), + [aux_sym_def_type_statement_token10] = ACTIONS(8986), + [aux_sym_def_type_statement_token11] = ACTIONS(8986), + [aux_sym_def_type_statement_token12] = ACTIONS(8986), + [aux_sym_def_type_statement_token13] = ACTIONS(8986), + [aux_sym_def_type_statement_token14] = ACTIONS(8986), + [aux_sym_call_statement_token1] = ACTIONS(8986), + [sym__ambiguous_call_statement] = ACTIONS(8986), + [aux_sym_addressof_expression_token1] = ACTIONS(8986), + [aux_sym_type_of_expression_token1] = ACTIONS(8986), + [aux_sym_unary_expression_token1] = ACTIONS(8986), + [sym_string_literal] = ACTIONS(9032), + [sym_number_literal] = ACTIONS(9032), + [aux_sym_boolean_literal_token1] = ACTIONS(8986), + [aux_sym_boolean_literal_token2] = ACTIONS(8986), + [sym_nothing_literal] = ACTIONS(8986), + [sym_null_literal] = ACTIONS(8986), + [sym_empty_literal] = ACTIONS(8986), + [sym_date_literal] = ACTIONS(9032), + [anon_sym_POUND] = ACTIONS(8986), + }, + [STATE(6763)] = { + [sym_identifier] = ACTIONS(9447), + [sym_newline] = ACTIONS(9449), + [anon_sym_COLON] = ACTIONS(9449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9447), + [aux_sym_frm_property_statement_token1] = ACTIONS(9447), + [anon_sym_DOT] = ACTIONS(9447), + [anon_sym_BANG] = ACTIONS(9449), + [aux_sym__attribute_identifier_token1] = ACTIONS(9447), + [aux_sym_option_statement_token3] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9447), + [aux_sym_preprocessor_const_token1] = ACTIONS(9447), + [sym_static_modifier] = ACTIONS(9447), + [sym__dim_keyword] = ACTIONS(9447), + [sym__redim_keyword] = ACTIONS(9447), + [aux_sym_get_accessor_token1] = ACTIONS(9447), + [aux_sym_set_accessor_token1] = ACTIONS(9447), + [aux_sym_const_declaration_token1] = ACTIONS(9447), + [anon_sym_LPAREN] = ACTIONS(9449), + [aux_sym_as_type_clause_token2] = ACTIONS(9447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9447), + [aux_sym_visibility_token1] = ACTIONS(9447), + [aux_sym_visibility_token2] = ACTIONS(9447), + [aux_sym_elseif_fragment_token1] = ACTIONS(9447), + [aux_sym_else_fragment_token1] = ACTIONS(9447), + [aux_sym_select_statement_token1] = ACTIONS(9447), + [aux_sym__for_header_token1] = ACTIONS(9447), + [aux_sym_do_statement_token1] = ACTIONS(9447), + [aux_sym_do_statement_token2] = ACTIONS(9447), + [aux_sym_do_condition_token1] = ACTIONS(9447), + [aux_sym_with_statement_token1] = ACTIONS(9447), + [aux_sym_exit_statement_token1] = ACTIONS(9447), + [sym_end_statement] = ACTIONS(9449), + [aux_sym_on_goto_statement_token1] = ACTIONS(9447), + [aux_sym_on_goto_statement_token2] = ACTIONS(9447), + [aux_sym_on_error_statement_token2] = ACTIONS(9447), + [sym__ambiguous_redim_statement] = ACTIONS(9449), + [aux_sym_erase_statement_token1] = ACTIONS(9447), + [aux_sym_open_statement_token1] = ACTIONS(9447), + [aux_sym_file_mode_token2] = ACTIONS(9447), + [aux_sym_file_access_token2] = ACTIONS(9447), + [aux_sym_file_lock_token2] = ACTIONS(9447), + [aux_sym_print_statement_token1] = ACTIONS(9447), + [anon_sym_PLUS] = ACTIONS(9449), + [anon_sym_DASH] = ACTIONS(9447), + [anon_sym_QMARK] = ACTIONS(9449), + [aux_sym_close_statement_token1] = ACTIONS(9447), + [aux_sym_put_statement_token1] = ACTIONS(9447), + [aux_sym_unlock_statement_token1] = ACTIONS(9447), + [aux_sym_seek_statement_token1] = ACTIONS(9447), + [sym_reset_statement] = ACTIONS(9447), + [aux_sym_raise_event_statement_token1] = ACTIONS(9447), + [sym_stop_statement] = ACTIONS(9447), + [sym_beep_statement] = ACTIONS(9447), + [aux_sym_unload_statement_token1] = ACTIONS(9447), + [aux_sym_def_type_statement_token1] = ACTIONS(9447), + [aux_sym_def_type_statement_token2] = ACTIONS(9447), + [aux_sym_def_type_statement_token3] = ACTIONS(9447), + [aux_sym_def_type_statement_token4] = ACTIONS(9447), + [aux_sym_def_type_statement_token5] = ACTIONS(9447), + [aux_sym_def_type_statement_token6] = ACTIONS(9447), + [aux_sym_def_type_statement_token7] = ACTIONS(9447), + [aux_sym_def_type_statement_token8] = ACTIONS(9447), + [aux_sym_def_type_statement_token9] = ACTIONS(9447), + [aux_sym_def_type_statement_token10] = ACTIONS(9447), + [aux_sym_def_type_statement_token11] = ACTIONS(9447), + [aux_sym_def_type_statement_token12] = ACTIONS(9447), + [aux_sym_def_type_statement_token13] = ACTIONS(9447), + [aux_sym_def_type_statement_token14] = ACTIONS(9447), + [aux_sym_call_statement_token1] = ACTIONS(9447), + [sym__ambiguous_call_statement] = ACTIONS(9447), + [aux_sym_addressof_expression_token1] = ACTIONS(9447), + [aux_sym_type_of_expression_token1] = ACTIONS(9447), + [aux_sym_unary_expression_token1] = ACTIONS(9447), + [sym_string_literal] = ACTIONS(9449), + [sym_number_literal] = ACTIONS(9449), + [aux_sym_boolean_literal_token1] = ACTIONS(9447), + [aux_sym_boolean_literal_token2] = ACTIONS(9447), + [sym_nothing_literal] = ACTIONS(9447), + [sym_null_literal] = ACTIONS(9447), + [sym_empty_literal] = ACTIONS(9447), + [sym_date_literal] = ACTIONS(9449), + [anon_sym_POUND] = ACTIONS(9447), + }, + [STATE(6764)] = { + [sym_identifier] = ACTIONS(9106), + [sym_newline] = ACTIONS(9108), + [anon_sym_COLON] = ACTIONS(9108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9106), + [aux_sym_frm_property_statement_token1] = ACTIONS(9106), + [anon_sym_DOT] = ACTIONS(9106), + [anon_sym_BANG] = ACTIONS(9108), + [aux_sym__attribute_identifier_token1] = ACTIONS(9106), + [aux_sym_option_statement_token3] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9106), + [aux_sym_preprocessor_const_token1] = ACTIONS(9106), + [sym_static_modifier] = ACTIONS(9106), + [sym__dim_keyword] = ACTIONS(9106), + [sym__redim_keyword] = ACTIONS(9106), + [aux_sym_get_accessor_token1] = ACTIONS(9106), + [aux_sym_set_accessor_token1] = ACTIONS(9106), + [aux_sym_const_declaration_token1] = ACTIONS(9106), + [anon_sym_LPAREN] = ACTIONS(9108), + [aux_sym_as_type_clause_token2] = ACTIONS(9106), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9106), + [aux_sym_visibility_token1] = ACTIONS(9106), + [aux_sym_visibility_token2] = ACTIONS(9106), + [aux_sym_elseif_fragment_token1] = ACTIONS(9106), + [aux_sym_else_fragment_token1] = ACTIONS(9106), + [aux_sym_select_statement_token1] = ACTIONS(9106), + [aux_sym__for_header_token1] = ACTIONS(9106), + [aux_sym_do_statement_token1] = ACTIONS(9106), + [aux_sym_do_condition_token1] = ACTIONS(9106), + [aux_sym_with_statement_token1] = ACTIONS(9106), + [aux_sym_exit_statement_token1] = ACTIONS(9106), + [sym_end_statement] = ACTIONS(9108), + [aux_sym_on_goto_statement_token1] = ACTIONS(9106), + [aux_sym_on_goto_statement_token2] = ACTIONS(9106), + [aux_sym_on_error_statement_token2] = ACTIONS(9106), + [sym__ambiguous_redim_statement] = ACTIONS(9108), + [aux_sym_erase_statement_token1] = ACTIONS(9106), + [aux_sym_open_statement_token1] = ACTIONS(9106), + [aux_sym_file_mode_token2] = ACTIONS(9106), + [aux_sym_file_access_token2] = ACTIONS(9106), + [aux_sym_file_lock_token2] = ACTIONS(9106), + [aux_sym_print_statement_token1] = ACTIONS(9106), + [anon_sym_PLUS] = ACTIONS(9108), + [anon_sym_DASH] = ACTIONS(9106), + [anon_sym_QMARK] = ACTIONS(9108), + [aux_sym_close_statement_token1] = ACTIONS(9106), + [aux_sym_put_statement_token1] = ACTIONS(9106), + [aux_sym_unlock_statement_token1] = ACTIONS(9106), + [aux_sym_seek_statement_token1] = ACTIONS(9106), + [sym_reset_statement] = ACTIONS(9106), + [aux_sym_raise_event_statement_token1] = ACTIONS(9106), + [sym_stop_statement] = ACTIONS(9106), + [sym_beep_statement] = ACTIONS(9106), + [aux_sym_unload_statement_token1] = ACTIONS(9106), + [aux_sym_def_type_statement_token1] = ACTIONS(9106), + [aux_sym_def_type_statement_token2] = ACTIONS(9106), + [aux_sym_def_type_statement_token3] = ACTIONS(9106), + [aux_sym_def_type_statement_token4] = ACTIONS(9106), + [aux_sym_def_type_statement_token5] = ACTIONS(9106), + [aux_sym_def_type_statement_token6] = ACTIONS(9106), + [aux_sym_def_type_statement_token7] = ACTIONS(9106), + [aux_sym_def_type_statement_token8] = ACTIONS(9106), + [aux_sym_def_type_statement_token9] = ACTIONS(9106), + [aux_sym_def_type_statement_token10] = ACTIONS(9106), + [aux_sym_def_type_statement_token11] = ACTIONS(9106), + [aux_sym_def_type_statement_token12] = ACTIONS(9106), + [aux_sym_def_type_statement_token13] = ACTIONS(9106), + [aux_sym_def_type_statement_token14] = ACTIONS(9106), + [aux_sym_call_statement_token1] = ACTIONS(9106), + [sym__ambiguous_call_statement] = ACTIONS(9106), + [aux_sym_addressof_expression_token1] = ACTIONS(9106), + [aux_sym_type_of_expression_token1] = ACTIONS(9106), + [aux_sym_unary_expression_token1] = ACTIONS(9106), + [sym_string_literal] = ACTIONS(9108), + [sym_number_literal] = ACTIONS(9108), + [aux_sym_boolean_literal_token1] = ACTIONS(9106), + [aux_sym_boolean_literal_token2] = ACTIONS(9106), + [sym_nothing_literal] = ACTIONS(9106), + [sym_null_literal] = ACTIONS(9106), + [sym_empty_literal] = ACTIONS(9106), + [sym_date_literal] = ACTIONS(9108), + [anon_sym_POUND] = ACTIONS(9106), + }, + [STATE(6765)] = { + [sym_identifier] = ACTIONS(9356), + [sym_newline] = ACTIONS(9358), + [anon_sym_COLON] = ACTIONS(9358), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9356), + [aux_sym_frm_property_statement_token1] = ACTIONS(9356), + [anon_sym_DOT] = ACTIONS(9356), + [anon_sym_BANG] = ACTIONS(9358), + [aux_sym__attribute_identifier_token1] = ACTIONS(9356), + [aux_sym_option_statement_token3] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9356), + [aux_sym_preprocessor_const_token1] = ACTIONS(9356), + [sym_static_modifier] = ACTIONS(9356), + [sym__dim_keyword] = ACTIONS(9356), + [sym__redim_keyword] = ACTIONS(9356), + [aux_sym_get_accessor_token1] = ACTIONS(9356), + [aux_sym_set_accessor_token1] = ACTIONS(9356), + [aux_sym_const_declaration_token1] = ACTIONS(9356), + [anon_sym_LPAREN] = ACTIONS(9358), + [aux_sym_as_type_clause_token2] = ACTIONS(9356), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9356), + [aux_sym_visibility_token1] = ACTIONS(9356), + [aux_sym_visibility_token2] = ACTIONS(9356), + [aux_sym_elseif_fragment_token1] = ACTIONS(9356), + [aux_sym_else_fragment_token1] = ACTIONS(9356), + [aux_sym_select_statement_token1] = ACTIONS(9356), + [aux_sym__for_header_token1] = ACTIONS(9356), + [aux_sym_do_statement_token1] = ACTIONS(9356), + [aux_sym_do_condition_token1] = ACTIONS(9356), + [aux_sym_with_statement_token1] = ACTIONS(9356), + [aux_sym_exit_statement_token1] = ACTIONS(9356), + [sym_end_statement] = ACTIONS(9358), + [aux_sym_on_goto_statement_token1] = ACTIONS(9356), + [aux_sym_on_goto_statement_token2] = ACTIONS(9356), + [aux_sym_on_error_statement_token2] = ACTIONS(9356), + [sym__ambiguous_redim_statement] = ACTIONS(9358), + [aux_sym_erase_statement_token1] = ACTIONS(9356), + [aux_sym_open_statement_token1] = ACTIONS(9356), + [aux_sym_file_mode_token2] = ACTIONS(9356), + [aux_sym_file_access_token2] = ACTIONS(9356), + [aux_sym_file_lock_token2] = ACTIONS(9356), + [aux_sym_print_statement_token1] = ACTIONS(9356), + [anon_sym_PLUS] = ACTIONS(9358), + [anon_sym_DASH] = ACTIONS(9356), + [anon_sym_QMARK] = ACTIONS(9358), + [aux_sym_close_statement_token1] = ACTIONS(9356), + [aux_sym_put_statement_token1] = ACTIONS(9356), + [aux_sym_unlock_statement_token1] = ACTIONS(9356), + [aux_sym_seek_statement_token1] = ACTIONS(9356), + [sym_reset_statement] = ACTIONS(9356), + [aux_sym_raise_event_statement_token1] = ACTIONS(9356), + [sym_stop_statement] = ACTIONS(9356), + [sym_beep_statement] = ACTIONS(9356), + [aux_sym_unload_statement_token1] = ACTIONS(9356), + [aux_sym_def_type_statement_token1] = ACTIONS(9356), + [aux_sym_def_type_statement_token2] = ACTIONS(9356), + [aux_sym_def_type_statement_token3] = ACTIONS(9356), + [aux_sym_def_type_statement_token4] = ACTIONS(9356), + [aux_sym_def_type_statement_token5] = ACTIONS(9356), + [aux_sym_def_type_statement_token6] = ACTIONS(9356), + [aux_sym_def_type_statement_token7] = ACTIONS(9356), + [aux_sym_def_type_statement_token8] = ACTIONS(9356), + [aux_sym_def_type_statement_token9] = ACTIONS(9356), + [aux_sym_def_type_statement_token10] = ACTIONS(9356), + [aux_sym_def_type_statement_token11] = ACTIONS(9356), + [aux_sym_def_type_statement_token12] = ACTIONS(9356), + [aux_sym_def_type_statement_token13] = ACTIONS(9356), + [aux_sym_def_type_statement_token14] = ACTIONS(9356), + [aux_sym_call_statement_token1] = ACTIONS(9356), + [sym__ambiguous_call_statement] = ACTIONS(9356), + [aux_sym_addressof_expression_token1] = ACTIONS(9356), + [aux_sym_type_of_expression_token1] = ACTIONS(9356), + [aux_sym_unary_expression_token1] = ACTIONS(9356), + [sym_string_literal] = ACTIONS(9358), + [sym_number_literal] = ACTIONS(9358), + [aux_sym_boolean_literal_token1] = ACTIONS(9356), + [aux_sym_boolean_literal_token2] = ACTIONS(9356), + [sym_nothing_literal] = ACTIONS(9356), + [sym_null_literal] = ACTIONS(9356), + [sym_empty_literal] = ACTIONS(9356), + [sym_date_literal] = ACTIONS(9358), + [anon_sym_POUND] = ACTIONS(9356), + }, + [STATE(6766)] = { + [sym_identifier] = ACTIONS(9088), + [sym_newline] = ACTIONS(9090), + [anon_sym_COLON] = ACTIONS(9090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9088), + [aux_sym_frm_property_statement_token1] = ACTIONS(9088), + [anon_sym_DOT] = ACTIONS(9088), + [anon_sym_BANG] = ACTIONS(9090), + [aux_sym__attribute_identifier_token1] = ACTIONS(9088), + [aux_sym_option_statement_token3] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9088), + [aux_sym_preprocessor_const_token1] = ACTIONS(9088), + [sym_static_modifier] = ACTIONS(9088), + [sym__dim_keyword] = ACTIONS(9088), + [sym__redim_keyword] = ACTIONS(9088), + [aux_sym_get_accessor_token1] = ACTIONS(9088), + [aux_sym_set_accessor_token1] = ACTIONS(9088), + [aux_sym_const_declaration_token1] = ACTIONS(9088), + [anon_sym_LPAREN] = ACTIONS(9090), + [aux_sym_as_type_clause_token2] = ACTIONS(9088), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9088), + [aux_sym_visibility_token1] = ACTIONS(9088), + [aux_sym_visibility_token2] = ACTIONS(9088), + [aux_sym_elseif_fragment_token1] = ACTIONS(9088), + [aux_sym_else_fragment_token1] = ACTIONS(9088), + [aux_sym_select_statement_token1] = ACTIONS(9088), + [aux_sym__for_header_token1] = ACTIONS(9088), + [aux_sym_do_statement_token1] = ACTIONS(9088), + [aux_sym_do_condition_token1] = ACTIONS(9088), + [aux_sym_while_statement_token1] = ACTIONS(9088), + [aux_sym_with_statement_token1] = ACTIONS(9088), + [aux_sym_exit_statement_token1] = ACTIONS(9088), + [sym_end_statement] = ACTIONS(9090), + [aux_sym_on_goto_statement_token1] = ACTIONS(9088), + [aux_sym_on_goto_statement_token2] = ACTIONS(9088), + [aux_sym_on_error_statement_token2] = ACTIONS(9088), + [sym__ambiguous_redim_statement] = ACTIONS(9090), + [aux_sym_erase_statement_token1] = ACTIONS(9088), + [aux_sym_open_statement_token1] = ACTIONS(9088), + [aux_sym_file_mode_token2] = ACTIONS(9088), + [aux_sym_file_access_token2] = ACTIONS(9088), + [aux_sym_file_lock_token2] = ACTIONS(9088), + [aux_sym_print_statement_token1] = ACTIONS(9088), + [anon_sym_PLUS] = ACTIONS(9090), + [anon_sym_DASH] = ACTIONS(9088), + [anon_sym_QMARK] = ACTIONS(9090), + [aux_sym_close_statement_token1] = ACTIONS(9088), + [aux_sym_put_statement_token1] = ACTIONS(9088), + [aux_sym_unlock_statement_token1] = ACTIONS(9088), + [aux_sym_seek_statement_token1] = ACTIONS(9088), + [sym_reset_statement] = ACTIONS(9088), + [aux_sym_raise_event_statement_token1] = ACTIONS(9088), + [sym_stop_statement] = ACTIONS(9088), + [sym_beep_statement] = ACTIONS(9088), + [aux_sym_unload_statement_token1] = ACTIONS(9088), + [aux_sym_def_type_statement_token1] = ACTIONS(9088), + [aux_sym_def_type_statement_token2] = ACTIONS(9088), + [aux_sym_def_type_statement_token3] = ACTIONS(9088), + [aux_sym_def_type_statement_token4] = ACTIONS(9088), + [aux_sym_def_type_statement_token5] = ACTIONS(9088), + [aux_sym_def_type_statement_token6] = ACTIONS(9088), + [aux_sym_def_type_statement_token7] = ACTIONS(9088), + [aux_sym_def_type_statement_token8] = ACTIONS(9088), + [aux_sym_def_type_statement_token9] = ACTIONS(9088), + [aux_sym_def_type_statement_token10] = ACTIONS(9088), + [aux_sym_def_type_statement_token11] = ACTIONS(9088), + [aux_sym_def_type_statement_token12] = ACTIONS(9088), + [aux_sym_def_type_statement_token13] = ACTIONS(9088), + [aux_sym_def_type_statement_token14] = ACTIONS(9088), + [aux_sym_call_statement_token1] = ACTIONS(9088), + [sym__ambiguous_call_statement] = ACTIONS(9088), + [aux_sym_addressof_expression_token1] = ACTIONS(9088), + [aux_sym_type_of_expression_token1] = ACTIONS(9088), + [aux_sym_unary_expression_token1] = ACTIONS(9088), + [sym_string_literal] = ACTIONS(9090), + [sym_number_literal] = ACTIONS(9090), + [aux_sym_boolean_literal_token1] = ACTIONS(9088), + [aux_sym_boolean_literal_token2] = ACTIONS(9088), + [sym_nothing_literal] = ACTIONS(9088), + [sym_null_literal] = ACTIONS(9088), + [sym_empty_literal] = ACTIONS(9088), + [sym_date_literal] = ACTIONS(9090), + [anon_sym_POUND] = ACTIONS(9088), + }, + [STATE(6767)] = { + [sym_identifier] = ACTIONS(8764), + [sym_newline] = ACTIONS(9034), + [anon_sym_COLON] = ACTIONS(9034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8764), + [aux_sym_frm_property_statement_token1] = ACTIONS(8764), + [anon_sym_DOT] = ACTIONS(8764), + [anon_sym_BANG] = ACTIONS(9034), + [aux_sym__attribute_identifier_token1] = ACTIONS(8764), + [aux_sym_option_statement_token3] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8764), + [aux_sym_preprocessor_const_token1] = ACTIONS(8764), + [sym_static_modifier] = ACTIONS(8764), + [sym__dim_keyword] = ACTIONS(8764), + [sym__redim_keyword] = ACTIONS(8764), + [aux_sym_get_accessor_token1] = ACTIONS(8764), + [aux_sym_set_accessor_token1] = ACTIONS(8764), + [aux_sym_const_declaration_token1] = ACTIONS(8764), + [anon_sym_LPAREN] = ACTIONS(9034), + [aux_sym_as_type_clause_token2] = ACTIONS(8764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8764), + [aux_sym_visibility_token1] = ACTIONS(8764), + [aux_sym_visibility_token2] = ACTIONS(8764), + [aux_sym_elseif_fragment_token1] = ACTIONS(8764), + [aux_sym_else_fragment_token1] = ACTIONS(8764), + [aux_sym_select_statement_token1] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8764), + [aux_sym_do_statement_token1] = ACTIONS(8764), + [aux_sym_do_statement_token2] = ACTIONS(8764), + [aux_sym_do_condition_token1] = ACTIONS(8764), + [aux_sym_with_statement_token1] = ACTIONS(8764), + [aux_sym_exit_statement_token1] = ACTIONS(8764), + [sym_end_statement] = ACTIONS(9034), + [aux_sym_on_goto_statement_token1] = ACTIONS(8764), + [aux_sym_on_goto_statement_token2] = ACTIONS(8764), + [aux_sym_on_error_statement_token2] = ACTIONS(8764), + [sym__ambiguous_redim_statement] = ACTIONS(9034), + [aux_sym_erase_statement_token1] = ACTIONS(8764), + [aux_sym_open_statement_token1] = ACTIONS(8764), + [aux_sym_file_mode_token2] = ACTIONS(8764), + [aux_sym_file_access_token2] = ACTIONS(8764), + [aux_sym_file_lock_token2] = ACTIONS(8764), + [aux_sym_print_statement_token1] = ACTIONS(8764), + [anon_sym_PLUS] = ACTIONS(9034), + [anon_sym_DASH] = ACTIONS(8764), + [anon_sym_QMARK] = ACTIONS(9034), + [aux_sym_close_statement_token1] = ACTIONS(8764), + [aux_sym_put_statement_token1] = ACTIONS(8764), + [aux_sym_unlock_statement_token1] = ACTIONS(8764), + [aux_sym_seek_statement_token1] = ACTIONS(8764), + [sym_reset_statement] = ACTIONS(8764), + [aux_sym_raise_event_statement_token1] = ACTIONS(8764), + [sym_stop_statement] = ACTIONS(8764), + [sym_beep_statement] = ACTIONS(8764), + [aux_sym_unload_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token2] = ACTIONS(8764), + [aux_sym_def_type_statement_token3] = ACTIONS(8764), + [aux_sym_def_type_statement_token4] = ACTIONS(8764), + [aux_sym_def_type_statement_token5] = ACTIONS(8764), + [aux_sym_def_type_statement_token6] = ACTIONS(8764), + [aux_sym_def_type_statement_token7] = ACTIONS(8764), + [aux_sym_def_type_statement_token8] = ACTIONS(8764), + [aux_sym_def_type_statement_token9] = ACTIONS(8764), + [aux_sym_def_type_statement_token10] = ACTIONS(8764), + [aux_sym_def_type_statement_token11] = ACTIONS(8764), + [aux_sym_def_type_statement_token12] = ACTIONS(8764), + [aux_sym_def_type_statement_token13] = ACTIONS(8764), + [aux_sym_def_type_statement_token14] = ACTIONS(8764), + [aux_sym_call_statement_token1] = ACTIONS(8764), + [sym__ambiguous_call_statement] = ACTIONS(8764), + [aux_sym_addressof_expression_token1] = ACTIONS(8764), + [aux_sym_type_of_expression_token1] = ACTIONS(8764), + [aux_sym_unary_expression_token1] = ACTIONS(8764), + [sym_string_literal] = ACTIONS(9034), + [sym_number_literal] = ACTIONS(9034), + [aux_sym_boolean_literal_token1] = ACTIONS(8764), + [aux_sym_boolean_literal_token2] = ACTIONS(8764), + [sym_nothing_literal] = ACTIONS(8764), + [sym_null_literal] = ACTIONS(8764), + [sym_empty_literal] = ACTIONS(8764), + [sym_date_literal] = ACTIONS(9034), + [anon_sym_POUND] = ACTIONS(8764), + }, + [STATE(6768)] = { + [sym_identifier] = ACTIONS(9092), + [sym_newline] = ACTIONS(9094), + [anon_sym_COLON] = ACTIONS(11138), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9092), + [aux_sym_frm_property_statement_token1] = ACTIONS(9092), + [anon_sym_DOT] = ACTIONS(9092), + [anon_sym_BANG] = ACTIONS(9094), + [aux_sym__attribute_identifier_token1] = ACTIONS(9092), + [aux_sym_option_statement_token3] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9092), + [aux_sym_preprocessor_const_token1] = ACTIONS(9092), + [sym_static_modifier] = ACTIONS(9092), + [sym__dim_keyword] = ACTIONS(9092), + [sym__redim_keyword] = ACTIONS(9092), + [aux_sym_get_accessor_token1] = ACTIONS(9092), + [aux_sym_set_accessor_token1] = ACTIONS(9092), + [aux_sym_const_declaration_token1] = ACTIONS(9092), + [anon_sym_LPAREN] = ACTIONS(9094), + [aux_sym_as_type_clause_token2] = ACTIONS(9092), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9092), + [aux_sym_visibility_token1] = ACTIONS(9092), + [aux_sym_visibility_token2] = ACTIONS(9092), + [aux_sym_elseif_fragment_token1] = ACTIONS(9092), + [aux_sym_else_fragment_token1] = ACTIONS(9092), + [aux_sym_select_statement_token1] = ACTIONS(9092), + [aux_sym__for_header_token1] = ACTIONS(9092), + [aux_sym_do_statement_token1] = ACTIONS(9092), + [aux_sym_do_condition_token1] = ACTIONS(9092), + [aux_sym_while_statement_token1] = ACTIONS(9092), + [aux_sym_with_statement_token1] = ACTIONS(9092), + [aux_sym_exit_statement_token1] = ACTIONS(9092), + [sym_end_statement] = ACTIONS(9094), + [aux_sym_on_goto_statement_token1] = ACTIONS(9092), + [aux_sym_on_goto_statement_token2] = ACTIONS(9092), + [aux_sym_on_error_statement_token2] = ACTIONS(9092), + [sym__ambiguous_redim_statement] = ACTIONS(9094), + [aux_sym_erase_statement_token1] = ACTIONS(9092), + [aux_sym_open_statement_token1] = ACTIONS(9092), + [aux_sym_file_mode_token2] = ACTIONS(9092), + [aux_sym_file_access_token2] = ACTIONS(9092), + [aux_sym_file_lock_token2] = ACTIONS(9092), + [aux_sym_print_statement_token1] = ACTIONS(9092), + [anon_sym_PLUS] = ACTIONS(9094), + [anon_sym_DASH] = ACTIONS(9092), + [anon_sym_QMARK] = ACTIONS(9094), + [aux_sym_close_statement_token1] = ACTIONS(9092), + [aux_sym_put_statement_token1] = ACTIONS(9092), + [aux_sym_unlock_statement_token1] = ACTIONS(9092), + [aux_sym_seek_statement_token1] = ACTIONS(9092), + [sym_reset_statement] = ACTIONS(9092), + [aux_sym_raise_event_statement_token1] = ACTIONS(9092), + [sym_stop_statement] = ACTIONS(9092), + [sym_beep_statement] = ACTIONS(9092), + [aux_sym_unload_statement_token1] = ACTIONS(9092), + [aux_sym_def_type_statement_token1] = ACTIONS(9092), + [aux_sym_def_type_statement_token2] = ACTIONS(9092), + [aux_sym_def_type_statement_token3] = ACTIONS(9092), + [aux_sym_def_type_statement_token4] = ACTIONS(9092), + [aux_sym_def_type_statement_token5] = ACTIONS(9092), + [aux_sym_def_type_statement_token6] = ACTIONS(9092), + [aux_sym_def_type_statement_token7] = ACTIONS(9092), + [aux_sym_def_type_statement_token8] = ACTIONS(9092), + [aux_sym_def_type_statement_token9] = ACTIONS(9092), + [aux_sym_def_type_statement_token10] = ACTIONS(9092), + [aux_sym_def_type_statement_token11] = ACTIONS(9092), + [aux_sym_def_type_statement_token12] = ACTIONS(9092), + [aux_sym_def_type_statement_token13] = ACTIONS(9092), + [aux_sym_def_type_statement_token14] = ACTIONS(9092), + [aux_sym_call_statement_token1] = ACTIONS(9092), + [sym__ambiguous_call_statement] = ACTIONS(9092), + [aux_sym_addressof_expression_token1] = ACTIONS(9092), + [aux_sym_type_of_expression_token1] = ACTIONS(9092), + [aux_sym_unary_expression_token1] = ACTIONS(9092), + [sym_string_literal] = ACTIONS(9094), + [sym_number_literal] = ACTIONS(9094), + [aux_sym_boolean_literal_token1] = ACTIONS(9092), + [aux_sym_boolean_literal_token2] = ACTIONS(9092), + [sym_nothing_literal] = ACTIONS(9092), + [sym_null_literal] = ACTIONS(9092), + [sym_empty_literal] = ACTIONS(9092), + [sym_date_literal] = ACTIONS(9094), + [anon_sym_POUND] = ACTIONS(9092), + }, + [STATE(6769)] = { + [sym_identifier] = ACTIONS(9099), + [sym_newline] = ACTIONS(9101), + [anon_sym_COLON] = ACTIONS(11141), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9099), + [aux_sym_frm_property_statement_token1] = ACTIONS(9099), + [anon_sym_DOT] = ACTIONS(9099), + [anon_sym_BANG] = ACTIONS(9101), + [aux_sym__attribute_identifier_token1] = ACTIONS(9099), + [aux_sym_option_statement_token3] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9099), + [aux_sym_preprocessor_const_token1] = ACTIONS(9099), + [sym_static_modifier] = ACTIONS(9099), + [sym__dim_keyword] = ACTIONS(9099), + [sym__redim_keyword] = ACTIONS(9099), + [aux_sym_get_accessor_token1] = ACTIONS(9099), + [aux_sym_set_accessor_token1] = ACTIONS(9099), + [aux_sym_const_declaration_token1] = ACTIONS(9099), + [anon_sym_LPAREN] = ACTIONS(9101), + [aux_sym_as_type_clause_token2] = ACTIONS(9099), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9099), + [aux_sym_visibility_token1] = ACTIONS(9099), + [aux_sym_visibility_token2] = ACTIONS(9099), + [aux_sym_elseif_fragment_token1] = ACTIONS(9099), + [aux_sym_else_fragment_token1] = ACTIONS(9099), + [aux_sym_select_statement_token1] = ACTIONS(9099), + [aux_sym__for_header_token1] = ACTIONS(9099), + [aux_sym_do_statement_token1] = ACTIONS(9099), + [aux_sym_do_condition_token1] = ACTIONS(9099), + [aux_sym_while_statement_token1] = ACTIONS(9099), + [aux_sym_with_statement_token1] = ACTIONS(9099), + [aux_sym_exit_statement_token1] = ACTIONS(9099), + [sym_end_statement] = ACTIONS(9101), + [aux_sym_on_goto_statement_token1] = ACTIONS(9099), + [aux_sym_on_goto_statement_token2] = ACTIONS(9099), + [aux_sym_on_error_statement_token2] = ACTIONS(9099), + [sym__ambiguous_redim_statement] = ACTIONS(9101), + [aux_sym_erase_statement_token1] = ACTIONS(9099), + [aux_sym_open_statement_token1] = ACTIONS(9099), + [aux_sym_file_mode_token2] = ACTIONS(9099), + [aux_sym_file_access_token2] = ACTIONS(9099), + [aux_sym_file_lock_token2] = ACTIONS(9099), + [aux_sym_print_statement_token1] = ACTIONS(9099), + [anon_sym_PLUS] = ACTIONS(9101), + [anon_sym_DASH] = ACTIONS(9099), + [anon_sym_QMARK] = ACTIONS(9101), + [aux_sym_close_statement_token1] = ACTIONS(9099), + [aux_sym_put_statement_token1] = ACTIONS(9099), + [aux_sym_unlock_statement_token1] = ACTIONS(9099), + [aux_sym_seek_statement_token1] = ACTIONS(9099), + [sym_reset_statement] = ACTIONS(9099), + [aux_sym_raise_event_statement_token1] = ACTIONS(9099), + [sym_stop_statement] = ACTIONS(9099), + [sym_beep_statement] = ACTIONS(9099), + [aux_sym_unload_statement_token1] = ACTIONS(9099), + [aux_sym_def_type_statement_token1] = ACTIONS(9099), + [aux_sym_def_type_statement_token2] = ACTIONS(9099), + [aux_sym_def_type_statement_token3] = ACTIONS(9099), + [aux_sym_def_type_statement_token4] = ACTIONS(9099), + [aux_sym_def_type_statement_token5] = ACTIONS(9099), + [aux_sym_def_type_statement_token6] = ACTIONS(9099), + [aux_sym_def_type_statement_token7] = ACTIONS(9099), + [aux_sym_def_type_statement_token8] = ACTIONS(9099), + [aux_sym_def_type_statement_token9] = ACTIONS(9099), + [aux_sym_def_type_statement_token10] = ACTIONS(9099), + [aux_sym_def_type_statement_token11] = ACTIONS(9099), + [aux_sym_def_type_statement_token12] = ACTIONS(9099), + [aux_sym_def_type_statement_token13] = ACTIONS(9099), + [aux_sym_def_type_statement_token14] = ACTIONS(9099), + [aux_sym_call_statement_token1] = ACTIONS(9099), + [sym__ambiguous_call_statement] = ACTIONS(9099), + [aux_sym_addressof_expression_token1] = ACTIONS(9099), + [aux_sym_type_of_expression_token1] = ACTIONS(9099), + [aux_sym_unary_expression_token1] = ACTIONS(9099), + [sym_string_literal] = ACTIONS(9101), + [sym_number_literal] = ACTIONS(9101), + [aux_sym_boolean_literal_token1] = ACTIONS(9099), + [aux_sym_boolean_literal_token2] = ACTIONS(9099), + [sym_nothing_literal] = ACTIONS(9099), + [sym_null_literal] = ACTIONS(9099), + [sym_empty_literal] = ACTIONS(9099), + [sym_date_literal] = ACTIONS(9101), + [anon_sym_POUND] = ACTIONS(9099), + }, + [STATE(6770)] = { + [sym_identifier] = ACTIONS(9036), + [sym_newline] = ACTIONS(9038), + [anon_sym_COLON] = ACTIONS(9038), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9036), + [aux_sym_frm_property_statement_token1] = ACTIONS(9036), + [anon_sym_DOT] = ACTIONS(9036), + [anon_sym_BANG] = ACTIONS(9038), + [aux_sym__attribute_identifier_token1] = ACTIONS(9036), + [aux_sym_option_statement_token3] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9036), + [aux_sym_preprocessor_const_token1] = ACTIONS(9036), + [sym_static_modifier] = ACTIONS(9036), + [sym__dim_keyword] = ACTIONS(9036), + [sym__redim_keyword] = ACTIONS(9036), + [aux_sym_get_accessor_token1] = ACTIONS(9036), + [aux_sym_set_accessor_token1] = ACTIONS(9036), + [aux_sym_const_declaration_token1] = ACTIONS(9036), + [anon_sym_LPAREN] = ACTIONS(9038), + [aux_sym_as_type_clause_token2] = ACTIONS(9036), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9036), + [aux_sym_visibility_token1] = ACTIONS(9036), + [aux_sym_visibility_token2] = ACTIONS(9036), + [aux_sym_elseif_fragment_token1] = ACTIONS(9036), + [aux_sym_else_fragment_token1] = ACTIONS(9036), + [aux_sym_select_statement_token1] = ACTIONS(9036), + [aux_sym__for_header_token1] = ACTIONS(9036), + [aux_sym_do_statement_token1] = ACTIONS(9036), + [aux_sym_do_statement_token2] = ACTIONS(9036), + [aux_sym_do_condition_token1] = ACTIONS(9036), + [aux_sym_with_statement_token1] = ACTIONS(9036), + [aux_sym_exit_statement_token1] = ACTIONS(9036), + [sym_end_statement] = ACTIONS(9038), + [aux_sym_on_goto_statement_token1] = ACTIONS(9036), + [aux_sym_on_goto_statement_token2] = ACTIONS(9036), + [aux_sym_on_error_statement_token2] = ACTIONS(9036), + [sym__ambiguous_redim_statement] = ACTIONS(9038), + [aux_sym_erase_statement_token1] = ACTIONS(9036), + [aux_sym_open_statement_token1] = ACTIONS(9036), + [aux_sym_file_mode_token2] = ACTIONS(9036), + [aux_sym_file_access_token2] = ACTIONS(9036), + [aux_sym_file_lock_token2] = ACTIONS(9036), + [aux_sym_print_statement_token1] = ACTIONS(9036), + [anon_sym_PLUS] = ACTIONS(9038), + [anon_sym_DASH] = ACTIONS(9036), + [anon_sym_QMARK] = ACTIONS(9038), + [aux_sym_close_statement_token1] = ACTIONS(9036), + [aux_sym_put_statement_token1] = ACTIONS(9036), + [aux_sym_unlock_statement_token1] = ACTIONS(9036), + [aux_sym_seek_statement_token1] = ACTIONS(9036), + [sym_reset_statement] = ACTIONS(9036), + [aux_sym_raise_event_statement_token1] = ACTIONS(9036), + [sym_stop_statement] = ACTIONS(9036), + [sym_beep_statement] = ACTIONS(9036), + [aux_sym_unload_statement_token1] = ACTIONS(9036), + [aux_sym_def_type_statement_token1] = ACTIONS(9036), + [aux_sym_def_type_statement_token2] = ACTIONS(9036), + [aux_sym_def_type_statement_token3] = ACTIONS(9036), + [aux_sym_def_type_statement_token4] = ACTIONS(9036), + [aux_sym_def_type_statement_token5] = ACTIONS(9036), + [aux_sym_def_type_statement_token6] = ACTIONS(9036), + [aux_sym_def_type_statement_token7] = ACTIONS(9036), + [aux_sym_def_type_statement_token8] = ACTIONS(9036), + [aux_sym_def_type_statement_token9] = ACTIONS(9036), + [aux_sym_def_type_statement_token10] = ACTIONS(9036), + [aux_sym_def_type_statement_token11] = ACTIONS(9036), + [aux_sym_def_type_statement_token12] = ACTIONS(9036), + [aux_sym_def_type_statement_token13] = ACTIONS(9036), + [aux_sym_def_type_statement_token14] = ACTIONS(9036), + [aux_sym_call_statement_token1] = ACTIONS(9036), + [sym__ambiguous_call_statement] = ACTIONS(9036), + [aux_sym_addressof_expression_token1] = ACTIONS(9036), + [aux_sym_type_of_expression_token1] = ACTIONS(9036), + [aux_sym_unary_expression_token1] = ACTIONS(9036), + [sym_string_literal] = ACTIONS(9038), + [sym_number_literal] = ACTIONS(9038), + [aux_sym_boolean_literal_token1] = ACTIONS(9036), + [aux_sym_boolean_literal_token2] = ACTIONS(9036), + [sym_nothing_literal] = ACTIONS(9036), + [sym_null_literal] = ACTIONS(9036), + [sym_empty_literal] = ACTIONS(9036), + [sym_date_literal] = ACTIONS(9038), + [anon_sym_POUND] = ACTIONS(9036), + }, + [STATE(6771)] = { + [sym_identifier] = ACTIONS(9040), + [sym_newline] = ACTIONS(9042), + [anon_sym_COLON] = ACTIONS(9042), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9040), + [aux_sym_frm_property_statement_token1] = ACTIONS(9040), + [anon_sym_DOT] = ACTIONS(9040), + [anon_sym_BANG] = ACTIONS(9042), + [aux_sym__attribute_identifier_token1] = ACTIONS(9040), + [aux_sym_option_statement_token3] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9040), + [aux_sym_preprocessor_const_token1] = ACTIONS(9040), + [sym_static_modifier] = ACTIONS(9040), + [sym__dim_keyword] = ACTIONS(9040), + [sym__redim_keyword] = ACTIONS(9040), + [aux_sym_get_accessor_token1] = ACTIONS(9040), + [aux_sym_set_accessor_token1] = ACTIONS(9040), + [aux_sym_const_declaration_token1] = ACTIONS(9040), + [anon_sym_LPAREN] = ACTIONS(9042), + [aux_sym_as_type_clause_token2] = ACTIONS(9040), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9040), + [aux_sym_visibility_token1] = ACTIONS(9040), + [aux_sym_visibility_token2] = ACTIONS(9040), + [aux_sym_elseif_fragment_token1] = ACTIONS(9040), + [aux_sym_else_fragment_token1] = ACTIONS(9040), + [aux_sym_select_statement_token1] = ACTIONS(9040), + [aux_sym__for_header_token1] = ACTIONS(9040), + [aux_sym_do_statement_token1] = ACTIONS(9040), + [aux_sym_do_statement_token2] = ACTIONS(9040), + [aux_sym_do_condition_token1] = ACTIONS(9040), + [aux_sym_with_statement_token1] = ACTIONS(9040), + [aux_sym_exit_statement_token1] = ACTIONS(9040), + [sym_end_statement] = ACTIONS(9042), + [aux_sym_on_goto_statement_token1] = ACTIONS(9040), + [aux_sym_on_goto_statement_token2] = ACTIONS(9040), + [aux_sym_on_error_statement_token2] = ACTIONS(9040), + [sym__ambiguous_redim_statement] = ACTIONS(9042), + [aux_sym_erase_statement_token1] = ACTIONS(9040), + [aux_sym_open_statement_token1] = ACTIONS(9040), + [aux_sym_file_mode_token2] = ACTIONS(9040), + [aux_sym_file_access_token2] = ACTIONS(9040), + [aux_sym_file_lock_token2] = ACTIONS(9040), + [aux_sym_print_statement_token1] = ACTIONS(9040), + [anon_sym_PLUS] = ACTIONS(9042), + [anon_sym_DASH] = ACTIONS(9040), + [anon_sym_QMARK] = ACTIONS(9042), + [aux_sym_close_statement_token1] = ACTIONS(9040), + [aux_sym_put_statement_token1] = ACTIONS(9040), + [aux_sym_unlock_statement_token1] = ACTIONS(9040), + [aux_sym_seek_statement_token1] = ACTIONS(9040), + [sym_reset_statement] = ACTIONS(9040), + [aux_sym_raise_event_statement_token1] = ACTIONS(9040), + [sym_stop_statement] = ACTIONS(9040), + [sym_beep_statement] = ACTIONS(9040), + [aux_sym_unload_statement_token1] = ACTIONS(9040), + [aux_sym_def_type_statement_token1] = ACTIONS(9040), + [aux_sym_def_type_statement_token2] = ACTIONS(9040), + [aux_sym_def_type_statement_token3] = ACTIONS(9040), + [aux_sym_def_type_statement_token4] = ACTIONS(9040), + [aux_sym_def_type_statement_token5] = ACTIONS(9040), + [aux_sym_def_type_statement_token6] = ACTIONS(9040), + [aux_sym_def_type_statement_token7] = ACTIONS(9040), + [aux_sym_def_type_statement_token8] = ACTIONS(9040), + [aux_sym_def_type_statement_token9] = ACTIONS(9040), + [aux_sym_def_type_statement_token10] = ACTIONS(9040), + [aux_sym_def_type_statement_token11] = ACTIONS(9040), + [aux_sym_def_type_statement_token12] = ACTIONS(9040), + [aux_sym_def_type_statement_token13] = ACTIONS(9040), + [aux_sym_def_type_statement_token14] = ACTIONS(9040), + [aux_sym_call_statement_token1] = ACTIONS(9040), + [sym__ambiguous_call_statement] = ACTIONS(9040), + [aux_sym_addressof_expression_token1] = ACTIONS(9040), + [aux_sym_type_of_expression_token1] = ACTIONS(9040), + [aux_sym_unary_expression_token1] = ACTIONS(9040), + [sym_string_literal] = ACTIONS(9042), + [sym_number_literal] = ACTIONS(9042), + [aux_sym_boolean_literal_token1] = ACTIONS(9040), + [aux_sym_boolean_literal_token2] = ACTIONS(9040), + [sym_nothing_literal] = ACTIONS(9040), + [sym_null_literal] = ACTIONS(9040), + [sym_empty_literal] = ACTIONS(9040), + [sym_date_literal] = ACTIONS(9042), + [anon_sym_POUND] = ACTIONS(9040), + }, + [STATE(6772)] = { + [sym_identifier] = ACTIONS(9110), + [sym_newline] = ACTIONS(9112), + [anon_sym_COLON] = ACTIONS(9112), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9110), + [aux_sym_frm_property_statement_token1] = ACTIONS(9110), + [anon_sym_DOT] = ACTIONS(9110), + [anon_sym_BANG] = ACTIONS(9112), + [aux_sym__attribute_identifier_token1] = ACTIONS(9110), + [aux_sym_option_statement_token3] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9110), + [aux_sym_preprocessor_const_token1] = ACTIONS(9110), + [sym_static_modifier] = ACTIONS(9110), + [sym__dim_keyword] = ACTIONS(9110), + [sym__redim_keyword] = ACTIONS(9110), + [aux_sym_get_accessor_token1] = ACTIONS(9110), + [aux_sym_set_accessor_token1] = ACTIONS(9110), + [aux_sym_const_declaration_token1] = ACTIONS(9110), + [anon_sym_LPAREN] = ACTIONS(9112), + [aux_sym_as_type_clause_token2] = ACTIONS(9110), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9110), + [aux_sym_visibility_token1] = ACTIONS(9110), + [aux_sym_visibility_token2] = ACTIONS(9110), + [aux_sym_elseif_fragment_token1] = ACTIONS(9110), + [aux_sym_else_fragment_token1] = ACTIONS(9110), + [aux_sym_select_statement_token1] = ACTIONS(9110), + [aux_sym__for_header_token1] = ACTIONS(9110), + [aux_sym_do_statement_token1] = ACTIONS(9110), + [aux_sym_do_condition_token1] = ACTIONS(9110), + [aux_sym_while_statement_token1] = ACTIONS(9110), + [aux_sym_with_statement_token1] = ACTIONS(9110), + [aux_sym_exit_statement_token1] = ACTIONS(9110), + [sym_end_statement] = ACTIONS(9112), + [aux_sym_on_goto_statement_token1] = ACTIONS(9110), + [aux_sym_on_goto_statement_token2] = ACTIONS(9110), + [aux_sym_on_error_statement_token2] = ACTIONS(9110), + [sym__ambiguous_redim_statement] = ACTIONS(9112), + [aux_sym_erase_statement_token1] = ACTIONS(9110), + [aux_sym_open_statement_token1] = ACTIONS(9110), + [aux_sym_file_mode_token2] = ACTIONS(9110), + [aux_sym_file_access_token2] = ACTIONS(9110), + [aux_sym_file_lock_token2] = ACTIONS(9110), + [aux_sym_print_statement_token1] = ACTIONS(9110), + [anon_sym_PLUS] = ACTIONS(9112), + [anon_sym_DASH] = ACTIONS(9110), + [anon_sym_QMARK] = ACTIONS(9112), + [aux_sym_close_statement_token1] = ACTIONS(9110), + [aux_sym_put_statement_token1] = ACTIONS(9110), + [aux_sym_unlock_statement_token1] = ACTIONS(9110), + [aux_sym_seek_statement_token1] = ACTIONS(9110), + [sym_reset_statement] = ACTIONS(9110), + [aux_sym_raise_event_statement_token1] = ACTIONS(9110), + [sym_stop_statement] = ACTIONS(9110), + [sym_beep_statement] = ACTIONS(9110), + [aux_sym_unload_statement_token1] = ACTIONS(9110), + [aux_sym_def_type_statement_token1] = ACTIONS(9110), + [aux_sym_def_type_statement_token2] = ACTIONS(9110), + [aux_sym_def_type_statement_token3] = ACTIONS(9110), + [aux_sym_def_type_statement_token4] = ACTIONS(9110), + [aux_sym_def_type_statement_token5] = ACTIONS(9110), + [aux_sym_def_type_statement_token6] = ACTIONS(9110), + [aux_sym_def_type_statement_token7] = ACTIONS(9110), + [aux_sym_def_type_statement_token8] = ACTIONS(9110), + [aux_sym_def_type_statement_token9] = ACTIONS(9110), + [aux_sym_def_type_statement_token10] = ACTIONS(9110), + [aux_sym_def_type_statement_token11] = ACTIONS(9110), + [aux_sym_def_type_statement_token12] = ACTIONS(9110), + [aux_sym_def_type_statement_token13] = ACTIONS(9110), + [aux_sym_def_type_statement_token14] = ACTIONS(9110), + [aux_sym_call_statement_token1] = ACTIONS(9110), + [sym__ambiguous_call_statement] = ACTIONS(9110), + [aux_sym_addressof_expression_token1] = ACTIONS(9110), + [aux_sym_type_of_expression_token1] = ACTIONS(9110), + [aux_sym_unary_expression_token1] = ACTIONS(9110), + [sym_string_literal] = ACTIONS(9112), + [sym_number_literal] = ACTIONS(9112), + [aux_sym_boolean_literal_token1] = ACTIONS(9110), + [aux_sym_boolean_literal_token2] = ACTIONS(9110), + [sym_nothing_literal] = ACTIONS(9110), + [sym_null_literal] = ACTIONS(9110), + [sym_empty_literal] = ACTIONS(9110), + [sym_date_literal] = ACTIONS(9112), + [anon_sym_POUND] = ACTIONS(9110), + }, + [STATE(6773)] = { + [sym_identifier] = ACTIONS(9114), + [sym_newline] = ACTIONS(9116), + [anon_sym_COLON] = ACTIONS(9116), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9114), + [aux_sym_frm_property_statement_token1] = ACTIONS(9114), + [anon_sym_DOT] = ACTIONS(9114), + [anon_sym_BANG] = ACTIONS(9116), + [aux_sym__attribute_identifier_token1] = ACTIONS(9114), + [aux_sym_option_statement_token3] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9114), + [aux_sym_preprocessor_const_token1] = ACTIONS(9114), + [sym_static_modifier] = ACTIONS(9114), + [sym__dim_keyword] = ACTIONS(9114), + [sym__redim_keyword] = ACTIONS(9114), + [aux_sym_get_accessor_token1] = ACTIONS(9114), + [aux_sym_set_accessor_token1] = ACTIONS(9114), + [aux_sym_const_declaration_token1] = ACTIONS(9114), + [anon_sym_LPAREN] = ACTIONS(9116), + [aux_sym_as_type_clause_token2] = ACTIONS(9114), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9114), + [aux_sym_visibility_token1] = ACTIONS(9114), + [aux_sym_visibility_token2] = ACTIONS(9114), + [aux_sym_elseif_fragment_token1] = ACTIONS(9114), + [aux_sym_else_fragment_token1] = ACTIONS(9114), + [aux_sym_select_statement_token1] = ACTIONS(9114), + [aux_sym__for_header_token1] = ACTIONS(9114), + [aux_sym_do_statement_token1] = ACTIONS(9114), + [aux_sym_do_condition_token1] = ACTIONS(9114), + [aux_sym_while_statement_token1] = ACTIONS(9114), + [aux_sym_with_statement_token1] = ACTIONS(9114), + [aux_sym_exit_statement_token1] = ACTIONS(9114), + [sym_end_statement] = ACTIONS(9116), + [aux_sym_on_goto_statement_token1] = ACTIONS(9114), + [aux_sym_on_goto_statement_token2] = ACTIONS(9114), + [aux_sym_on_error_statement_token2] = ACTIONS(9114), + [sym__ambiguous_redim_statement] = ACTIONS(9116), + [aux_sym_erase_statement_token1] = ACTIONS(9114), + [aux_sym_open_statement_token1] = ACTIONS(9114), + [aux_sym_file_mode_token2] = ACTIONS(9114), + [aux_sym_file_access_token2] = ACTIONS(9114), + [aux_sym_file_lock_token2] = ACTIONS(9114), + [aux_sym_print_statement_token1] = ACTIONS(9114), + [anon_sym_PLUS] = ACTIONS(9116), + [anon_sym_DASH] = ACTIONS(9114), + [anon_sym_QMARK] = ACTIONS(9116), + [aux_sym_close_statement_token1] = ACTIONS(9114), + [aux_sym_put_statement_token1] = ACTIONS(9114), + [aux_sym_unlock_statement_token1] = ACTIONS(9114), + [aux_sym_seek_statement_token1] = ACTIONS(9114), + [sym_reset_statement] = ACTIONS(9114), + [aux_sym_raise_event_statement_token1] = ACTIONS(9114), + [sym_stop_statement] = ACTIONS(9114), + [sym_beep_statement] = ACTIONS(9114), + [aux_sym_unload_statement_token1] = ACTIONS(9114), + [aux_sym_def_type_statement_token1] = ACTIONS(9114), + [aux_sym_def_type_statement_token2] = ACTIONS(9114), + [aux_sym_def_type_statement_token3] = ACTIONS(9114), + [aux_sym_def_type_statement_token4] = ACTIONS(9114), + [aux_sym_def_type_statement_token5] = ACTIONS(9114), + [aux_sym_def_type_statement_token6] = ACTIONS(9114), + [aux_sym_def_type_statement_token7] = ACTIONS(9114), + [aux_sym_def_type_statement_token8] = ACTIONS(9114), + [aux_sym_def_type_statement_token9] = ACTIONS(9114), + [aux_sym_def_type_statement_token10] = ACTIONS(9114), + [aux_sym_def_type_statement_token11] = ACTIONS(9114), + [aux_sym_def_type_statement_token12] = ACTIONS(9114), + [aux_sym_def_type_statement_token13] = ACTIONS(9114), + [aux_sym_def_type_statement_token14] = ACTIONS(9114), + [aux_sym_call_statement_token1] = ACTIONS(9114), + [sym__ambiguous_call_statement] = ACTIONS(9114), + [aux_sym_addressof_expression_token1] = ACTIONS(9114), + [aux_sym_type_of_expression_token1] = ACTIONS(9114), + [aux_sym_unary_expression_token1] = ACTIONS(9114), + [sym_string_literal] = ACTIONS(9116), + [sym_number_literal] = ACTIONS(9116), + [aux_sym_boolean_literal_token1] = ACTIONS(9114), + [aux_sym_boolean_literal_token2] = ACTIONS(9114), + [sym_nothing_literal] = ACTIONS(9114), + [sym_null_literal] = ACTIONS(9114), + [sym_empty_literal] = ACTIONS(9114), + [sym_date_literal] = ACTIONS(9116), + [anon_sym_POUND] = ACTIONS(9114), + }, + [STATE(6774)] = { + [sym_identifier] = ACTIONS(9118), + [sym_newline] = ACTIONS(9120), + [anon_sym_COLON] = ACTIONS(9120), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9118), + [aux_sym_frm_property_statement_token1] = ACTIONS(9118), + [anon_sym_DOT] = ACTIONS(9118), + [anon_sym_BANG] = ACTIONS(9120), + [aux_sym__attribute_identifier_token1] = ACTIONS(9118), + [aux_sym_option_statement_token3] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9118), + [aux_sym_preprocessor_const_token1] = ACTIONS(9118), + [sym_static_modifier] = ACTIONS(9118), + [sym__dim_keyword] = ACTIONS(9118), + [sym__redim_keyword] = ACTIONS(9118), + [aux_sym_get_accessor_token1] = ACTIONS(9118), + [aux_sym_set_accessor_token1] = ACTIONS(9118), + [aux_sym_const_declaration_token1] = ACTIONS(9118), + [anon_sym_LPAREN] = ACTIONS(9120), + [aux_sym_as_type_clause_token2] = ACTIONS(9118), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9118), + [aux_sym_visibility_token1] = ACTIONS(9118), + [aux_sym_visibility_token2] = ACTIONS(9118), + [aux_sym_elseif_fragment_token1] = ACTIONS(9118), + [aux_sym_else_fragment_token1] = ACTIONS(9118), + [aux_sym_select_statement_token1] = ACTIONS(9118), + [aux_sym__for_header_token1] = ACTIONS(9118), + [aux_sym_do_statement_token1] = ACTIONS(9118), + [aux_sym_do_condition_token1] = ACTIONS(9118), + [aux_sym_while_statement_token1] = ACTIONS(9118), + [aux_sym_with_statement_token1] = ACTIONS(9118), + [aux_sym_exit_statement_token1] = ACTIONS(9118), + [sym_end_statement] = ACTIONS(9120), + [aux_sym_on_goto_statement_token1] = ACTIONS(9118), + [aux_sym_on_goto_statement_token2] = ACTIONS(9118), + [aux_sym_on_error_statement_token2] = ACTIONS(9118), + [sym__ambiguous_redim_statement] = ACTIONS(9120), + [aux_sym_erase_statement_token1] = ACTIONS(9118), + [aux_sym_open_statement_token1] = ACTIONS(9118), + [aux_sym_file_mode_token2] = ACTIONS(9118), + [aux_sym_file_access_token2] = ACTIONS(9118), + [aux_sym_file_lock_token2] = ACTIONS(9118), + [aux_sym_print_statement_token1] = ACTIONS(9118), + [anon_sym_PLUS] = ACTIONS(9120), + [anon_sym_DASH] = ACTIONS(9118), + [anon_sym_QMARK] = ACTIONS(9120), + [aux_sym_close_statement_token1] = ACTIONS(9118), + [aux_sym_put_statement_token1] = ACTIONS(9118), + [aux_sym_unlock_statement_token1] = ACTIONS(9118), + [aux_sym_seek_statement_token1] = ACTIONS(9118), + [sym_reset_statement] = ACTIONS(9118), + [aux_sym_raise_event_statement_token1] = ACTIONS(9118), + [sym_stop_statement] = ACTIONS(9118), + [sym_beep_statement] = ACTIONS(9118), + [aux_sym_unload_statement_token1] = ACTIONS(9118), + [aux_sym_def_type_statement_token1] = ACTIONS(9118), + [aux_sym_def_type_statement_token2] = ACTIONS(9118), + [aux_sym_def_type_statement_token3] = ACTIONS(9118), + [aux_sym_def_type_statement_token4] = ACTIONS(9118), + [aux_sym_def_type_statement_token5] = ACTIONS(9118), + [aux_sym_def_type_statement_token6] = ACTIONS(9118), + [aux_sym_def_type_statement_token7] = ACTIONS(9118), + [aux_sym_def_type_statement_token8] = ACTIONS(9118), + [aux_sym_def_type_statement_token9] = ACTIONS(9118), + [aux_sym_def_type_statement_token10] = ACTIONS(9118), + [aux_sym_def_type_statement_token11] = ACTIONS(9118), + [aux_sym_def_type_statement_token12] = ACTIONS(9118), + [aux_sym_def_type_statement_token13] = ACTIONS(9118), + [aux_sym_def_type_statement_token14] = ACTIONS(9118), + [aux_sym_call_statement_token1] = ACTIONS(9118), + [sym__ambiguous_call_statement] = ACTIONS(9118), + [aux_sym_addressof_expression_token1] = ACTIONS(9118), + [aux_sym_type_of_expression_token1] = ACTIONS(9118), + [aux_sym_unary_expression_token1] = ACTIONS(9118), + [sym_string_literal] = ACTIONS(9120), + [sym_number_literal] = ACTIONS(9120), + [aux_sym_boolean_literal_token1] = ACTIONS(9118), + [aux_sym_boolean_literal_token2] = ACTIONS(9118), + [sym_nothing_literal] = ACTIONS(9118), + [sym_null_literal] = ACTIONS(9118), + [sym_empty_literal] = ACTIONS(9118), + [sym_date_literal] = ACTIONS(9120), + [anon_sym_POUND] = ACTIONS(9118), + }, + [STATE(6775)] = { + [sym_identifier] = ACTIONS(9044), + [sym_newline] = ACTIONS(9046), + [anon_sym_COLON] = ACTIONS(9046), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9044), + [aux_sym_frm_property_statement_token1] = ACTIONS(9044), + [anon_sym_DOT] = ACTIONS(9044), + [anon_sym_BANG] = ACTIONS(9046), + [aux_sym__attribute_identifier_token1] = ACTIONS(9044), + [aux_sym_option_statement_token3] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9044), + [aux_sym_preprocessor_const_token1] = ACTIONS(9044), + [sym_static_modifier] = ACTIONS(9044), + [sym__dim_keyword] = ACTIONS(9044), + [sym__redim_keyword] = ACTIONS(9044), + [aux_sym_get_accessor_token1] = ACTIONS(9044), + [aux_sym_set_accessor_token1] = ACTIONS(9044), + [aux_sym_const_declaration_token1] = ACTIONS(9044), + [anon_sym_LPAREN] = ACTIONS(9046), + [aux_sym_as_type_clause_token2] = ACTIONS(9044), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9044), + [aux_sym_visibility_token1] = ACTIONS(9044), + [aux_sym_visibility_token2] = ACTIONS(9044), + [aux_sym_elseif_fragment_token1] = ACTIONS(9044), + [aux_sym_else_fragment_token1] = ACTIONS(9044), + [aux_sym_select_statement_token1] = ACTIONS(9044), + [aux_sym__for_header_token1] = ACTIONS(9044), + [aux_sym_do_statement_token1] = ACTIONS(9044), + [aux_sym_do_statement_token2] = ACTIONS(9044), + [aux_sym_do_condition_token1] = ACTIONS(9044), + [aux_sym_with_statement_token1] = ACTIONS(9044), + [aux_sym_exit_statement_token1] = ACTIONS(9044), + [sym_end_statement] = ACTIONS(9046), + [aux_sym_on_goto_statement_token1] = ACTIONS(9044), + [aux_sym_on_goto_statement_token2] = ACTIONS(9044), + [aux_sym_on_error_statement_token2] = ACTIONS(9044), + [sym__ambiguous_redim_statement] = ACTIONS(9046), + [aux_sym_erase_statement_token1] = ACTIONS(9044), + [aux_sym_open_statement_token1] = ACTIONS(9044), + [aux_sym_file_mode_token2] = ACTIONS(9044), + [aux_sym_file_access_token2] = ACTIONS(9044), + [aux_sym_file_lock_token2] = ACTIONS(9044), + [aux_sym_print_statement_token1] = ACTIONS(9044), + [anon_sym_PLUS] = ACTIONS(9046), + [anon_sym_DASH] = ACTIONS(9044), + [anon_sym_QMARK] = ACTIONS(9046), + [aux_sym_close_statement_token1] = ACTIONS(9044), + [aux_sym_put_statement_token1] = ACTIONS(9044), + [aux_sym_unlock_statement_token1] = ACTIONS(9044), + [aux_sym_seek_statement_token1] = ACTIONS(9044), + [sym_reset_statement] = ACTIONS(9044), + [aux_sym_raise_event_statement_token1] = ACTIONS(9044), + [sym_stop_statement] = ACTIONS(9044), + [sym_beep_statement] = ACTIONS(9044), + [aux_sym_unload_statement_token1] = ACTIONS(9044), + [aux_sym_def_type_statement_token1] = ACTIONS(9044), + [aux_sym_def_type_statement_token2] = ACTIONS(9044), + [aux_sym_def_type_statement_token3] = ACTIONS(9044), + [aux_sym_def_type_statement_token4] = ACTIONS(9044), + [aux_sym_def_type_statement_token5] = ACTIONS(9044), + [aux_sym_def_type_statement_token6] = ACTIONS(9044), + [aux_sym_def_type_statement_token7] = ACTIONS(9044), + [aux_sym_def_type_statement_token8] = ACTIONS(9044), + [aux_sym_def_type_statement_token9] = ACTIONS(9044), + [aux_sym_def_type_statement_token10] = ACTIONS(9044), + [aux_sym_def_type_statement_token11] = ACTIONS(9044), + [aux_sym_def_type_statement_token12] = ACTIONS(9044), + [aux_sym_def_type_statement_token13] = ACTIONS(9044), + [aux_sym_def_type_statement_token14] = ACTIONS(9044), + [aux_sym_call_statement_token1] = ACTIONS(9044), + [sym__ambiguous_call_statement] = ACTIONS(9044), + [aux_sym_addressof_expression_token1] = ACTIONS(9044), + [aux_sym_type_of_expression_token1] = ACTIONS(9044), + [aux_sym_unary_expression_token1] = ACTIONS(9044), + [sym_string_literal] = ACTIONS(9046), + [sym_number_literal] = ACTIONS(9046), + [aux_sym_boolean_literal_token1] = ACTIONS(9044), + [aux_sym_boolean_literal_token2] = ACTIONS(9044), + [sym_nothing_literal] = ACTIONS(9044), + [sym_null_literal] = ACTIONS(9044), + [sym_empty_literal] = ACTIONS(9044), + [sym_date_literal] = ACTIONS(9046), + [anon_sym_POUND] = ACTIONS(9044), + }, + [STATE(6776)] = { + [sym_identifier] = ACTIONS(9360), + [sym_newline] = ACTIONS(9362), + [anon_sym_COLON] = ACTIONS(9362), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9360), + [aux_sym_frm_property_statement_token1] = ACTIONS(9360), + [anon_sym_DOT] = ACTIONS(9360), + [anon_sym_BANG] = ACTIONS(9362), + [aux_sym__attribute_identifier_token1] = ACTIONS(9360), + [aux_sym_option_statement_token3] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9360), + [aux_sym_preprocessor_const_token1] = ACTIONS(9360), + [sym_static_modifier] = ACTIONS(9360), + [sym__dim_keyword] = ACTIONS(9360), + [sym__redim_keyword] = ACTIONS(9360), + [aux_sym_get_accessor_token1] = ACTIONS(9360), + [aux_sym_set_accessor_token1] = ACTIONS(9360), + [aux_sym_const_declaration_token1] = ACTIONS(9360), + [anon_sym_LPAREN] = ACTIONS(9362), + [aux_sym_as_type_clause_token2] = ACTIONS(9360), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9360), + [aux_sym_visibility_token1] = ACTIONS(9360), + [aux_sym_visibility_token2] = ACTIONS(9360), + [aux_sym_elseif_fragment_token1] = ACTIONS(9360), + [aux_sym_else_fragment_token1] = ACTIONS(9360), + [aux_sym_select_statement_token1] = ACTIONS(9360), + [aux_sym__for_header_token1] = ACTIONS(9360), + [aux_sym_do_statement_token1] = ACTIONS(9360), + [aux_sym_do_condition_token1] = ACTIONS(9360), + [aux_sym_with_statement_token1] = ACTIONS(9360), + [aux_sym_exit_statement_token1] = ACTIONS(9360), + [sym_end_statement] = ACTIONS(9362), + [aux_sym_on_goto_statement_token1] = ACTIONS(9360), + [aux_sym_on_goto_statement_token2] = ACTIONS(9360), + [aux_sym_on_error_statement_token2] = ACTIONS(9360), + [sym__ambiguous_redim_statement] = ACTIONS(9362), + [aux_sym_erase_statement_token1] = ACTIONS(9360), + [aux_sym_open_statement_token1] = ACTIONS(9360), + [aux_sym_file_mode_token2] = ACTIONS(9360), + [aux_sym_file_access_token2] = ACTIONS(9360), + [aux_sym_file_lock_token2] = ACTIONS(9360), + [aux_sym_print_statement_token1] = ACTIONS(9360), + [anon_sym_PLUS] = ACTIONS(9362), + [anon_sym_DASH] = ACTIONS(9360), + [anon_sym_QMARK] = ACTIONS(9362), + [aux_sym_close_statement_token1] = ACTIONS(9360), + [aux_sym_put_statement_token1] = ACTIONS(9360), + [aux_sym_unlock_statement_token1] = ACTIONS(9360), + [aux_sym_seek_statement_token1] = ACTIONS(9360), + [sym_reset_statement] = ACTIONS(9360), + [aux_sym_raise_event_statement_token1] = ACTIONS(9360), + [sym_stop_statement] = ACTIONS(9360), + [sym_beep_statement] = ACTIONS(9360), + [aux_sym_unload_statement_token1] = ACTIONS(9360), + [aux_sym_def_type_statement_token1] = ACTIONS(9360), + [aux_sym_def_type_statement_token2] = ACTIONS(9360), + [aux_sym_def_type_statement_token3] = ACTIONS(9360), + [aux_sym_def_type_statement_token4] = ACTIONS(9360), + [aux_sym_def_type_statement_token5] = ACTIONS(9360), + [aux_sym_def_type_statement_token6] = ACTIONS(9360), + [aux_sym_def_type_statement_token7] = ACTIONS(9360), + [aux_sym_def_type_statement_token8] = ACTIONS(9360), + [aux_sym_def_type_statement_token9] = ACTIONS(9360), + [aux_sym_def_type_statement_token10] = ACTIONS(9360), + [aux_sym_def_type_statement_token11] = ACTIONS(9360), + [aux_sym_def_type_statement_token12] = ACTIONS(9360), + [aux_sym_def_type_statement_token13] = ACTIONS(9360), + [aux_sym_def_type_statement_token14] = ACTIONS(9360), + [aux_sym_call_statement_token1] = ACTIONS(9360), + [sym__ambiguous_call_statement] = ACTIONS(9360), + [aux_sym_addressof_expression_token1] = ACTIONS(9360), + [aux_sym_type_of_expression_token1] = ACTIONS(9360), + [aux_sym_unary_expression_token1] = ACTIONS(9360), + [sym_string_literal] = ACTIONS(9362), + [sym_number_literal] = ACTIONS(9362), + [aux_sym_boolean_literal_token1] = ACTIONS(9360), + [aux_sym_boolean_literal_token2] = ACTIONS(9360), + [sym_nothing_literal] = ACTIONS(9360), + [sym_null_literal] = ACTIONS(9360), + [sym_empty_literal] = ACTIONS(9360), + [sym_date_literal] = ACTIONS(9362), + [anon_sym_POUND] = ACTIONS(9360), + }, + [STATE(6777)] = { + [sym_identifier] = ACTIONS(9451), + [sym_newline] = ACTIONS(9453), + [anon_sym_COLON] = ACTIONS(9453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9451), + [aux_sym_frm_property_statement_token1] = ACTIONS(9451), + [anon_sym_DOT] = ACTIONS(9451), + [anon_sym_BANG] = ACTIONS(9453), + [aux_sym__attribute_identifier_token1] = ACTIONS(9451), + [aux_sym_option_statement_token3] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9451), + [aux_sym_preprocessor_const_token1] = ACTIONS(9451), + [sym_static_modifier] = ACTIONS(9451), + [sym__dim_keyword] = ACTIONS(9451), + [sym__redim_keyword] = ACTIONS(9451), + [aux_sym_get_accessor_token1] = ACTIONS(9451), + [aux_sym_set_accessor_token1] = ACTIONS(9451), + [aux_sym_const_declaration_token1] = ACTIONS(9451), + [anon_sym_LPAREN] = ACTIONS(9453), + [aux_sym_as_type_clause_token2] = ACTIONS(9451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9451), + [aux_sym_visibility_token1] = ACTIONS(9451), + [aux_sym_visibility_token2] = ACTIONS(9451), + [aux_sym_elseif_fragment_token1] = ACTIONS(9451), + [aux_sym_else_fragment_token1] = ACTIONS(9451), + [aux_sym_select_statement_token1] = ACTIONS(9451), + [aux_sym__for_header_token1] = ACTIONS(9451), + [aux_sym_do_statement_token1] = ACTIONS(9451), + [aux_sym_do_statement_token2] = ACTIONS(9451), + [aux_sym_do_condition_token1] = ACTIONS(9451), + [aux_sym_with_statement_token1] = ACTIONS(9451), + [aux_sym_exit_statement_token1] = ACTIONS(9451), + [sym_end_statement] = ACTIONS(9453), + [aux_sym_on_goto_statement_token1] = ACTIONS(9451), + [aux_sym_on_goto_statement_token2] = ACTIONS(9451), + [aux_sym_on_error_statement_token2] = ACTIONS(9451), + [sym__ambiguous_redim_statement] = ACTIONS(9453), + [aux_sym_erase_statement_token1] = ACTIONS(9451), + [aux_sym_open_statement_token1] = ACTIONS(9451), + [aux_sym_file_mode_token2] = ACTIONS(9451), + [aux_sym_file_access_token2] = ACTIONS(9451), + [aux_sym_file_lock_token2] = ACTIONS(9451), + [aux_sym_print_statement_token1] = ACTIONS(9451), + [anon_sym_PLUS] = ACTIONS(9453), + [anon_sym_DASH] = ACTIONS(9451), + [anon_sym_QMARK] = ACTIONS(9453), + [aux_sym_close_statement_token1] = ACTIONS(9451), + [aux_sym_put_statement_token1] = ACTIONS(9451), + [aux_sym_unlock_statement_token1] = ACTIONS(9451), + [aux_sym_seek_statement_token1] = ACTIONS(9451), + [sym_reset_statement] = ACTIONS(9451), + [aux_sym_raise_event_statement_token1] = ACTIONS(9451), + [sym_stop_statement] = ACTIONS(9451), + [sym_beep_statement] = ACTIONS(9451), + [aux_sym_unload_statement_token1] = ACTIONS(9451), + [aux_sym_def_type_statement_token1] = ACTIONS(9451), + [aux_sym_def_type_statement_token2] = ACTIONS(9451), + [aux_sym_def_type_statement_token3] = ACTIONS(9451), + [aux_sym_def_type_statement_token4] = ACTIONS(9451), + [aux_sym_def_type_statement_token5] = ACTIONS(9451), + [aux_sym_def_type_statement_token6] = ACTIONS(9451), + [aux_sym_def_type_statement_token7] = ACTIONS(9451), + [aux_sym_def_type_statement_token8] = ACTIONS(9451), + [aux_sym_def_type_statement_token9] = ACTIONS(9451), + [aux_sym_def_type_statement_token10] = ACTIONS(9451), + [aux_sym_def_type_statement_token11] = ACTIONS(9451), + [aux_sym_def_type_statement_token12] = ACTIONS(9451), + [aux_sym_def_type_statement_token13] = ACTIONS(9451), + [aux_sym_def_type_statement_token14] = ACTIONS(9451), + [aux_sym_call_statement_token1] = ACTIONS(9451), + [sym__ambiguous_call_statement] = ACTIONS(9451), + [aux_sym_addressof_expression_token1] = ACTIONS(9451), + [aux_sym_type_of_expression_token1] = ACTIONS(9451), + [aux_sym_unary_expression_token1] = ACTIONS(9451), + [sym_string_literal] = ACTIONS(9453), + [sym_number_literal] = ACTIONS(9453), + [aux_sym_boolean_literal_token1] = ACTIONS(9451), + [aux_sym_boolean_literal_token2] = ACTIONS(9451), + [sym_nothing_literal] = ACTIONS(9451), + [sym_null_literal] = ACTIONS(9451), + [sym_empty_literal] = ACTIONS(9451), + [sym_date_literal] = ACTIONS(9453), + [anon_sym_POUND] = ACTIONS(9451), + }, + [STATE(6778)] = { + [sym_identifier] = ACTIONS(9048), + [sym_newline] = ACTIONS(9050), + [anon_sym_COLON] = ACTIONS(9050), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9048), + [aux_sym_frm_property_statement_token1] = ACTIONS(9048), + [anon_sym_DOT] = ACTIONS(9048), + [anon_sym_BANG] = ACTIONS(9050), + [aux_sym__attribute_identifier_token1] = ACTIONS(9048), + [aux_sym_option_statement_token3] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9048), + [aux_sym_preprocessor_const_token1] = ACTIONS(9048), + [sym_static_modifier] = ACTIONS(9048), + [sym__dim_keyword] = ACTIONS(9048), + [sym__redim_keyword] = ACTIONS(9048), + [aux_sym_get_accessor_token1] = ACTIONS(9048), + [aux_sym_set_accessor_token1] = ACTIONS(9048), + [aux_sym_const_declaration_token1] = ACTIONS(9048), + [anon_sym_LPAREN] = ACTIONS(9050), + [aux_sym_as_type_clause_token2] = ACTIONS(9048), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9048), + [aux_sym_visibility_token1] = ACTIONS(9048), + [aux_sym_visibility_token2] = ACTIONS(9048), + [aux_sym_elseif_fragment_token1] = ACTIONS(9048), + [aux_sym_else_fragment_token1] = ACTIONS(9048), + [aux_sym_select_statement_token1] = ACTIONS(9048), + [aux_sym__for_header_token1] = ACTIONS(9048), + [aux_sym_do_statement_token1] = ACTIONS(9048), + [aux_sym_do_statement_token2] = ACTIONS(9048), + [aux_sym_do_condition_token1] = ACTIONS(9048), + [aux_sym_with_statement_token1] = ACTIONS(9048), + [aux_sym_exit_statement_token1] = ACTIONS(9048), + [sym_end_statement] = ACTIONS(9050), + [aux_sym_on_goto_statement_token1] = ACTIONS(9048), + [aux_sym_on_goto_statement_token2] = ACTIONS(9048), + [aux_sym_on_error_statement_token2] = ACTIONS(9048), + [sym__ambiguous_redim_statement] = ACTIONS(9050), + [aux_sym_erase_statement_token1] = ACTIONS(9048), + [aux_sym_open_statement_token1] = ACTIONS(9048), + [aux_sym_file_mode_token2] = ACTIONS(9048), + [aux_sym_file_access_token2] = ACTIONS(9048), + [aux_sym_file_lock_token2] = ACTIONS(9048), + [aux_sym_print_statement_token1] = ACTIONS(9048), + [anon_sym_PLUS] = ACTIONS(9050), + [anon_sym_DASH] = ACTIONS(9048), + [anon_sym_QMARK] = ACTIONS(9050), + [aux_sym_close_statement_token1] = ACTIONS(9048), + [aux_sym_put_statement_token1] = ACTIONS(9048), + [aux_sym_unlock_statement_token1] = ACTIONS(9048), + [aux_sym_seek_statement_token1] = ACTIONS(9048), + [sym_reset_statement] = ACTIONS(9048), + [aux_sym_raise_event_statement_token1] = ACTIONS(9048), + [sym_stop_statement] = ACTIONS(9048), + [sym_beep_statement] = ACTIONS(9048), + [aux_sym_unload_statement_token1] = ACTIONS(9048), + [aux_sym_def_type_statement_token1] = ACTIONS(9048), + [aux_sym_def_type_statement_token2] = ACTIONS(9048), + [aux_sym_def_type_statement_token3] = ACTIONS(9048), + [aux_sym_def_type_statement_token4] = ACTIONS(9048), + [aux_sym_def_type_statement_token5] = ACTIONS(9048), + [aux_sym_def_type_statement_token6] = ACTIONS(9048), + [aux_sym_def_type_statement_token7] = ACTIONS(9048), + [aux_sym_def_type_statement_token8] = ACTIONS(9048), + [aux_sym_def_type_statement_token9] = ACTIONS(9048), + [aux_sym_def_type_statement_token10] = ACTIONS(9048), + [aux_sym_def_type_statement_token11] = ACTIONS(9048), + [aux_sym_def_type_statement_token12] = ACTIONS(9048), + [aux_sym_def_type_statement_token13] = ACTIONS(9048), + [aux_sym_def_type_statement_token14] = ACTIONS(9048), + [aux_sym_call_statement_token1] = ACTIONS(9048), + [sym__ambiguous_call_statement] = ACTIONS(9048), + [aux_sym_addressof_expression_token1] = ACTIONS(9048), + [aux_sym_type_of_expression_token1] = ACTIONS(9048), + [aux_sym_unary_expression_token1] = ACTIONS(9048), + [sym_string_literal] = ACTIONS(9050), + [sym_number_literal] = ACTIONS(9050), + [aux_sym_boolean_literal_token1] = ACTIONS(9048), + [aux_sym_boolean_literal_token2] = ACTIONS(9048), + [sym_nothing_literal] = ACTIONS(9048), + [sym_null_literal] = ACTIONS(9048), + [sym_empty_literal] = ACTIONS(9048), + [sym_date_literal] = ACTIONS(9050), + [anon_sym_POUND] = ACTIONS(9048), + }, + [STATE(6779)] = { + [sym_identifier] = ACTIONS(9364), + [sym_newline] = ACTIONS(9366), + [anon_sym_COLON] = ACTIONS(9366), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9364), + [aux_sym_frm_property_statement_token1] = ACTIONS(9364), + [anon_sym_DOT] = ACTIONS(9364), + [anon_sym_BANG] = ACTIONS(9366), + [aux_sym__attribute_identifier_token1] = ACTIONS(9364), + [aux_sym_option_statement_token3] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9364), + [aux_sym_preprocessor_const_token1] = ACTIONS(9364), + [sym_static_modifier] = ACTIONS(9364), + [sym__dim_keyword] = ACTIONS(9364), + [sym__redim_keyword] = ACTIONS(9364), + [aux_sym_get_accessor_token1] = ACTIONS(9364), + [aux_sym_set_accessor_token1] = ACTIONS(9364), + [aux_sym_const_declaration_token1] = ACTIONS(9364), + [anon_sym_LPAREN] = ACTIONS(9366), + [aux_sym_as_type_clause_token2] = ACTIONS(9364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9364), + [aux_sym_visibility_token1] = ACTIONS(9364), + [aux_sym_visibility_token2] = ACTIONS(9364), + [aux_sym_elseif_fragment_token1] = ACTIONS(9364), + [aux_sym_else_fragment_token1] = ACTIONS(9364), + [aux_sym_select_statement_token1] = ACTIONS(9364), + [aux_sym__for_header_token1] = ACTIONS(9364), + [aux_sym_do_statement_token1] = ACTIONS(9364), + [aux_sym_do_condition_token1] = ACTIONS(9364), + [aux_sym_with_statement_token1] = ACTIONS(9364), + [aux_sym_exit_statement_token1] = ACTIONS(9364), + [sym_end_statement] = ACTIONS(9366), + [aux_sym_on_goto_statement_token1] = ACTIONS(9364), + [aux_sym_on_goto_statement_token2] = ACTIONS(9364), + [aux_sym_on_error_statement_token2] = ACTIONS(9364), + [sym__ambiguous_redim_statement] = ACTIONS(9366), + [aux_sym_erase_statement_token1] = ACTIONS(9364), + [aux_sym_open_statement_token1] = ACTIONS(9364), + [aux_sym_file_mode_token2] = ACTIONS(9364), + [aux_sym_file_access_token2] = ACTIONS(9364), + [aux_sym_file_lock_token2] = ACTIONS(9364), + [aux_sym_print_statement_token1] = ACTIONS(9364), + [anon_sym_PLUS] = ACTIONS(9366), + [anon_sym_DASH] = ACTIONS(9364), + [anon_sym_QMARK] = ACTIONS(9366), + [aux_sym_close_statement_token1] = ACTIONS(9364), + [aux_sym_put_statement_token1] = ACTIONS(9364), + [aux_sym_unlock_statement_token1] = ACTIONS(9364), + [aux_sym_seek_statement_token1] = ACTIONS(9364), + [sym_reset_statement] = ACTIONS(9364), + [aux_sym_raise_event_statement_token1] = ACTIONS(9364), + [sym_stop_statement] = ACTIONS(9364), + [sym_beep_statement] = ACTIONS(9364), + [aux_sym_unload_statement_token1] = ACTIONS(9364), + [aux_sym_def_type_statement_token1] = ACTIONS(9364), + [aux_sym_def_type_statement_token2] = ACTIONS(9364), + [aux_sym_def_type_statement_token3] = ACTIONS(9364), + [aux_sym_def_type_statement_token4] = ACTIONS(9364), + [aux_sym_def_type_statement_token5] = ACTIONS(9364), + [aux_sym_def_type_statement_token6] = ACTIONS(9364), + [aux_sym_def_type_statement_token7] = ACTIONS(9364), + [aux_sym_def_type_statement_token8] = ACTIONS(9364), + [aux_sym_def_type_statement_token9] = ACTIONS(9364), + [aux_sym_def_type_statement_token10] = ACTIONS(9364), + [aux_sym_def_type_statement_token11] = ACTIONS(9364), + [aux_sym_def_type_statement_token12] = ACTIONS(9364), + [aux_sym_def_type_statement_token13] = ACTIONS(9364), + [aux_sym_def_type_statement_token14] = ACTIONS(9364), + [aux_sym_call_statement_token1] = ACTIONS(9364), + [sym__ambiguous_call_statement] = ACTIONS(9364), + [aux_sym_addressof_expression_token1] = ACTIONS(9364), + [aux_sym_type_of_expression_token1] = ACTIONS(9364), + [aux_sym_unary_expression_token1] = ACTIONS(9364), + [sym_string_literal] = ACTIONS(9366), + [sym_number_literal] = ACTIONS(9366), + [aux_sym_boolean_literal_token1] = ACTIONS(9364), + [aux_sym_boolean_literal_token2] = ACTIONS(9364), + [sym_nothing_literal] = ACTIONS(9364), + [sym_null_literal] = ACTIONS(9364), + [sym_empty_literal] = ACTIONS(9364), + [sym_date_literal] = ACTIONS(9366), + [anon_sym_POUND] = ACTIONS(9364), + }, + [STATE(6780)] = { + [sym_identifier] = ACTIONS(9268), + [sym_newline] = ACTIONS(9270), + [anon_sym_COLON] = ACTIONS(9270), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9268), + [aux_sym_frm_property_statement_token1] = ACTIONS(9268), + [anon_sym_DOT] = ACTIONS(9268), + [anon_sym_BANG] = ACTIONS(9270), + [aux_sym__attribute_identifier_token1] = ACTIONS(9268), + [aux_sym_option_statement_token3] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9268), + [aux_sym_preprocessor_const_token1] = ACTIONS(9268), + [sym_static_modifier] = ACTIONS(9268), + [sym__dim_keyword] = ACTIONS(9268), + [sym__redim_keyword] = ACTIONS(9268), + [aux_sym_get_accessor_token1] = ACTIONS(9268), + [aux_sym_set_accessor_token1] = ACTIONS(9268), + [aux_sym_const_declaration_token1] = ACTIONS(9268), + [anon_sym_LPAREN] = ACTIONS(9270), + [aux_sym_as_type_clause_token2] = ACTIONS(9268), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9268), + [aux_sym_visibility_token1] = ACTIONS(9268), + [aux_sym_visibility_token2] = ACTIONS(9268), + [aux_sym_elseif_fragment_token1] = ACTIONS(9268), + [aux_sym_else_fragment_token1] = ACTIONS(9268), + [aux_sym_select_statement_token1] = ACTIONS(9268), + [aux_sym__for_header_token1] = ACTIONS(9268), + [aux_sym_do_statement_token1] = ACTIONS(9268), + [aux_sym_do_statement_token2] = ACTIONS(9268), + [aux_sym_do_condition_token1] = ACTIONS(9268), + [aux_sym_with_statement_token1] = ACTIONS(9268), + [aux_sym_exit_statement_token1] = ACTIONS(9268), + [sym_end_statement] = ACTIONS(9270), + [aux_sym_on_goto_statement_token1] = ACTIONS(9268), + [aux_sym_on_goto_statement_token2] = ACTIONS(9268), + [aux_sym_on_error_statement_token2] = ACTIONS(9268), + [sym__ambiguous_redim_statement] = ACTIONS(9270), + [aux_sym_erase_statement_token1] = ACTIONS(9268), + [aux_sym_open_statement_token1] = ACTIONS(9268), + [aux_sym_file_mode_token2] = ACTIONS(9268), + [aux_sym_file_access_token2] = ACTIONS(9268), + [aux_sym_file_lock_token2] = ACTIONS(9268), + [aux_sym_print_statement_token1] = ACTIONS(9268), + [anon_sym_PLUS] = ACTIONS(9270), + [anon_sym_DASH] = ACTIONS(9268), + [anon_sym_QMARK] = ACTIONS(9270), + [aux_sym_close_statement_token1] = ACTIONS(9268), + [aux_sym_put_statement_token1] = ACTIONS(9268), + [aux_sym_unlock_statement_token1] = ACTIONS(9268), + [aux_sym_seek_statement_token1] = ACTIONS(9268), + [sym_reset_statement] = ACTIONS(9268), + [aux_sym_raise_event_statement_token1] = ACTIONS(9268), + [sym_stop_statement] = ACTIONS(9268), + [sym_beep_statement] = ACTIONS(9268), + [aux_sym_unload_statement_token1] = ACTIONS(9268), + [aux_sym_def_type_statement_token1] = ACTIONS(9268), + [aux_sym_def_type_statement_token2] = ACTIONS(9268), + [aux_sym_def_type_statement_token3] = ACTIONS(9268), + [aux_sym_def_type_statement_token4] = ACTIONS(9268), + [aux_sym_def_type_statement_token5] = ACTIONS(9268), + [aux_sym_def_type_statement_token6] = ACTIONS(9268), + [aux_sym_def_type_statement_token7] = ACTIONS(9268), + [aux_sym_def_type_statement_token8] = ACTIONS(9268), + [aux_sym_def_type_statement_token9] = ACTIONS(9268), + [aux_sym_def_type_statement_token10] = ACTIONS(9268), + [aux_sym_def_type_statement_token11] = ACTIONS(9268), + [aux_sym_def_type_statement_token12] = ACTIONS(9268), + [aux_sym_def_type_statement_token13] = ACTIONS(9268), + [aux_sym_def_type_statement_token14] = ACTIONS(9268), + [aux_sym_call_statement_token1] = ACTIONS(9268), + [sym__ambiguous_call_statement] = ACTIONS(9268), + [aux_sym_addressof_expression_token1] = ACTIONS(9268), + [aux_sym_type_of_expression_token1] = ACTIONS(9268), + [aux_sym_unary_expression_token1] = ACTIONS(9268), + [sym_string_literal] = ACTIONS(9270), + [sym_number_literal] = ACTIONS(9270), + [aux_sym_boolean_literal_token1] = ACTIONS(9268), + [aux_sym_boolean_literal_token2] = ACTIONS(9268), + [sym_nothing_literal] = ACTIONS(9268), + [sym_null_literal] = ACTIONS(9268), + [sym_empty_literal] = ACTIONS(9268), + [sym_date_literal] = ACTIONS(9270), + [anon_sym_POUND] = ACTIONS(9268), + }, + [STATE(6781)] = { + [sym_identifier] = ACTIONS(9142), + [sym_newline] = ACTIONS(9144), + [anon_sym_COLON] = ACTIONS(9144), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9142), + [aux_sym_frm_property_statement_token1] = ACTIONS(9142), + [anon_sym_DOT] = ACTIONS(9142), + [anon_sym_BANG] = ACTIONS(9144), + [aux_sym__attribute_identifier_token1] = ACTIONS(9142), + [aux_sym_option_statement_token3] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9142), + [aux_sym_preprocessor_const_token1] = ACTIONS(9142), + [sym_static_modifier] = ACTIONS(9142), + [sym__dim_keyword] = ACTIONS(9142), + [sym__redim_keyword] = ACTIONS(9142), + [aux_sym_get_accessor_token1] = ACTIONS(9142), + [aux_sym_set_accessor_token1] = ACTIONS(9142), + [aux_sym_const_declaration_token1] = ACTIONS(9142), + [anon_sym_LPAREN] = ACTIONS(9144), + [aux_sym_as_type_clause_token2] = ACTIONS(9142), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9142), + [aux_sym_visibility_token1] = ACTIONS(9142), + [aux_sym_visibility_token2] = ACTIONS(9142), + [aux_sym_elseif_fragment_token1] = ACTIONS(9142), + [aux_sym_else_fragment_token1] = ACTIONS(9142), + [aux_sym_select_statement_token1] = ACTIONS(9142), + [aux_sym__for_header_token1] = ACTIONS(9142), + [aux_sym_do_statement_token1] = ACTIONS(9142), + [aux_sym_do_condition_token1] = ACTIONS(9142), + [aux_sym_while_statement_token1] = ACTIONS(9142), + [aux_sym_with_statement_token1] = ACTIONS(9142), + [aux_sym_exit_statement_token1] = ACTIONS(9142), + [sym_end_statement] = ACTIONS(9144), + [aux_sym_on_goto_statement_token1] = ACTIONS(9142), + [aux_sym_on_goto_statement_token2] = ACTIONS(9142), + [aux_sym_on_error_statement_token2] = ACTIONS(9142), + [sym__ambiguous_redim_statement] = ACTIONS(9144), + [aux_sym_erase_statement_token1] = ACTIONS(9142), + [aux_sym_open_statement_token1] = ACTIONS(9142), + [aux_sym_file_mode_token2] = ACTIONS(9142), + [aux_sym_file_access_token2] = ACTIONS(9142), + [aux_sym_file_lock_token2] = ACTIONS(9142), + [aux_sym_print_statement_token1] = ACTIONS(9142), + [anon_sym_PLUS] = ACTIONS(9144), + [anon_sym_DASH] = ACTIONS(9142), + [anon_sym_QMARK] = ACTIONS(9144), + [aux_sym_close_statement_token1] = ACTIONS(9142), + [aux_sym_put_statement_token1] = ACTIONS(9142), + [aux_sym_unlock_statement_token1] = ACTIONS(9142), + [aux_sym_seek_statement_token1] = ACTIONS(9142), + [sym_reset_statement] = ACTIONS(9142), + [aux_sym_raise_event_statement_token1] = ACTIONS(9142), + [sym_stop_statement] = ACTIONS(9142), + [sym_beep_statement] = ACTIONS(9142), + [aux_sym_unload_statement_token1] = ACTIONS(9142), + [aux_sym_def_type_statement_token1] = ACTIONS(9142), + [aux_sym_def_type_statement_token2] = ACTIONS(9142), + [aux_sym_def_type_statement_token3] = ACTIONS(9142), + [aux_sym_def_type_statement_token4] = ACTIONS(9142), + [aux_sym_def_type_statement_token5] = ACTIONS(9142), + [aux_sym_def_type_statement_token6] = ACTIONS(9142), + [aux_sym_def_type_statement_token7] = ACTIONS(9142), + [aux_sym_def_type_statement_token8] = ACTIONS(9142), + [aux_sym_def_type_statement_token9] = ACTIONS(9142), + [aux_sym_def_type_statement_token10] = ACTIONS(9142), + [aux_sym_def_type_statement_token11] = ACTIONS(9142), + [aux_sym_def_type_statement_token12] = ACTIONS(9142), + [aux_sym_def_type_statement_token13] = ACTIONS(9142), + [aux_sym_def_type_statement_token14] = ACTIONS(9142), + [aux_sym_call_statement_token1] = ACTIONS(9142), + [sym__ambiguous_call_statement] = ACTIONS(9142), + [aux_sym_addressof_expression_token1] = ACTIONS(9142), + [aux_sym_type_of_expression_token1] = ACTIONS(9142), + [aux_sym_unary_expression_token1] = ACTIONS(9142), + [sym_string_literal] = ACTIONS(9144), + [sym_number_literal] = ACTIONS(9144), + [aux_sym_boolean_literal_token1] = ACTIONS(9142), + [aux_sym_boolean_literal_token2] = ACTIONS(9142), + [sym_nothing_literal] = ACTIONS(9142), + [sym_null_literal] = ACTIONS(9142), + [sym_empty_literal] = ACTIONS(9142), + [sym_date_literal] = ACTIONS(9144), + [anon_sym_POUND] = ACTIONS(9142), + }, + [STATE(6782)] = { + [sym_identifier] = ACTIONS(9272), + [sym_newline] = ACTIONS(9274), + [anon_sym_COLON] = ACTIONS(9274), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9272), + [aux_sym_frm_property_statement_token1] = ACTIONS(9272), + [anon_sym_DOT] = ACTIONS(9272), + [anon_sym_BANG] = ACTIONS(9274), + [aux_sym__attribute_identifier_token1] = ACTIONS(9272), + [aux_sym_option_statement_token3] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9272), + [aux_sym_preprocessor_const_token1] = ACTIONS(9272), + [sym_static_modifier] = ACTIONS(9272), + [sym__dim_keyword] = ACTIONS(9272), + [sym__redim_keyword] = ACTIONS(9272), + [aux_sym_get_accessor_token1] = ACTIONS(9272), + [aux_sym_set_accessor_token1] = ACTIONS(9272), + [aux_sym_const_declaration_token1] = ACTIONS(9272), + [anon_sym_LPAREN] = ACTIONS(9274), + [aux_sym_as_type_clause_token2] = ACTIONS(9272), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9272), + [aux_sym_visibility_token1] = ACTIONS(9272), + [aux_sym_visibility_token2] = ACTIONS(9272), + [aux_sym_elseif_fragment_token1] = ACTIONS(9272), + [aux_sym_else_fragment_token1] = ACTIONS(9272), + [aux_sym_select_statement_token1] = ACTIONS(9272), + [aux_sym__for_header_token1] = ACTIONS(9272), + [aux_sym_do_statement_token1] = ACTIONS(9272), + [aux_sym_do_statement_token2] = ACTIONS(9272), + [aux_sym_do_condition_token1] = ACTIONS(9272), + [aux_sym_with_statement_token1] = ACTIONS(9272), + [aux_sym_exit_statement_token1] = ACTIONS(9272), + [sym_end_statement] = ACTIONS(9274), + [aux_sym_on_goto_statement_token1] = ACTIONS(9272), + [aux_sym_on_goto_statement_token2] = ACTIONS(9272), + [aux_sym_on_error_statement_token2] = ACTIONS(9272), + [sym__ambiguous_redim_statement] = ACTIONS(9274), + [aux_sym_erase_statement_token1] = ACTIONS(9272), + [aux_sym_open_statement_token1] = ACTIONS(9272), + [aux_sym_file_mode_token2] = ACTIONS(9272), + [aux_sym_file_access_token2] = ACTIONS(9272), + [aux_sym_file_lock_token2] = ACTIONS(9272), + [aux_sym_print_statement_token1] = ACTIONS(9272), + [anon_sym_PLUS] = ACTIONS(9274), + [anon_sym_DASH] = ACTIONS(9272), + [anon_sym_QMARK] = ACTIONS(9274), + [aux_sym_close_statement_token1] = ACTIONS(9272), + [aux_sym_put_statement_token1] = ACTIONS(9272), + [aux_sym_unlock_statement_token1] = ACTIONS(9272), + [aux_sym_seek_statement_token1] = ACTIONS(9272), + [sym_reset_statement] = ACTIONS(9272), + [aux_sym_raise_event_statement_token1] = ACTIONS(9272), + [sym_stop_statement] = ACTIONS(9272), + [sym_beep_statement] = ACTIONS(9272), + [aux_sym_unload_statement_token1] = ACTIONS(9272), + [aux_sym_def_type_statement_token1] = ACTIONS(9272), + [aux_sym_def_type_statement_token2] = ACTIONS(9272), + [aux_sym_def_type_statement_token3] = ACTIONS(9272), + [aux_sym_def_type_statement_token4] = ACTIONS(9272), + [aux_sym_def_type_statement_token5] = ACTIONS(9272), + [aux_sym_def_type_statement_token6] = ACTIONS(9272), + [aux_sym_def_type_statement_token7] = ACTIONS(9272), + [aux_sym_def_type_statement_token8] = ACTIONS(9272), + [aux_sym_def_type_statement_token9] = ACTIONS(9272), + [aux_sym_def_type_statement_token10] = ACTIONS(9272), + [aux_sym_def_type_statement_token11] = ACTIONS(9272), + [aux_sym_def_type_statement_token12] = ACTIONS(9272), + [aux_sym_def_type_statement_token13] = ACTIONS(9272), + [aux_sym_def_type_statement_token14] = ACTIONS(9272), + [aux_sym_call_statement_token1] = ACTIONS(9272), + [sym__ambiguous_call_statement] = ACTIONS(9272), + [aux_sym_addressof_expression_token1] = ACTIONS(9272), + [aux_sym_type_of_expression_token1] = ACTIONS(9272), + [aux_sym_unary_expression_token1] = ACTIONS(9272), + [sym_string_literal] = ACTIONS(9274), + [sym_number_literal] = ACTIONS(9274), + [aux_sym_boolean_literal_token1] = ACTIONS(9272), + [aux_sym_boolean_literal_token2] = ACTIONS(9272), + [sym_nothing_literal] = ACTIONS(9272), + [sym_null_literal] = ACTIONS(9272), + [sym_empty_literal] = ACTIONS(9272), + [sym_date_literal] = ACTIONS(9274), + [anon_sym_POUND] = ACTIONS(9272), + }, + [STATE(6783)] = { + [sym_identifier] = ACTIONS(9284), + [sym_newline] = ACTIONS(9286), + [anon_sym_COLON] = ACTIONS(9286), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9284), + [aux_sym_frm_property_statement_token1] = ACTIONS(9284), + [anon_sym_DOT] = ACTIONS(9284), + [anon_sym_BANG] = ACTIONS(9286), + [aux_sym__attribute_identifier_token1] = ACTIONS(9284), + [aux_sym_option_statement_token3] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9284), + [aux_sym_preprocessor_const_token1] = ACTIONS(9284), + [sym_static_modifier] = ACTIONS(9284), + [sym__dim_keyword] = ACTIONS(9284), + [sym__redim_keyword] = ACTIONS(9284), + [aux_sym_get_accessor_token1] = ACTIONS(9284), + [aux_sym_set_accessor_token1] = ACTIONS(9284), + [aux_sym_const_declaration_token1] = ACTIONS(9284), + [anon_sym_LPAREN] = ACTIONS(9286), + [aux_sym_as_type_clause_token2] = ACTIONS(9284), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9284), + [aux_sym_visibility_token1] = ACTIONS(9284), + [aux_sym_visibility_token2] = ACTIONS(9284), + [aux_sym_elseif_fragment_token1] = ACTIONS(9284), + [aux_sym_else_fragment_token1] = ACTIONS(9284), + [aux_sym_select_statement_token1] = ACTIONS(9284), + [aux_sym_select_statement_token2] = ACTIONS(9284), + [aux_sym__for_header_token1] = ACTIONS(9284), + [aux_sym_do_statement_token1] = ACTIONS(9284), + [aux_sym_do_condition_token1] = ACTIONS(9284), + [aux_sym_with_statement_token1] = ACTIONS(9284), + [aux_sym_exit_statement_token1] = ACTIONS(9284), + [sym_end_statement] = ACTIONS(9286), + [aux_sym_on_goto_statement_token1] = ACTIONS(9284), + [aux_sym_on_goto_statement_token2] = ACTIONS(9284), + [aux_sym_on_error_statement_token2] = ACTIONS(9284), + [sym__ambiguous_redim_statement] = ACTIONS(9286), + [aux_sym_erase_statement_token1] = ACTIONS(9284), + [aux_sym_open_statement_token1] = ACTIONS(9284), + [aux_sym_file_mode_token2] = ACTIONS(9284), + [aux_sym_file_access_token2] = ACTIONS(9284), + [aux_sym_file_lock_token2] = ACTIONS(9284), + [aux_sym_print_statement_token1] = ACTIONS(9284), + [anon_sym_PLUS] = ACTIONS(9286), + [anon_sym_DASH] = ACTIONS(9284), + [anon_sym_QMARK] = ACTIONS(9286), + [aux_sym_close_statement_token1] = ACTIONS(9284), + [aux_sym_put_statement_token1] = ACTIONS(9284), + [aux_sym_unlock_statement_token1] = ACTIONS(9284), + [aux_sym_seek_statement_token1] = ACTIONS(9284), + [sym_reset_statement] = ACTIONS(9284), + [aux_sym_raise_event_statement_token1] = ACTIONS(9284), + [sym_stop_statement] = ACTIONS(9284), + [sym_beep_statement] = ACTIONS(9284), + [aux_sym_unload_statement_token1] = ACTIONS(9284), + [aux_sym_def_type_statement_token1] = ACTIONS(9284), + [aux_sym_def_type_statement_token2] = ACTIONS(9284), + [aux_sym_def_type_statement_token3] = ACTIONS(9284), + [aux_sym_def_type_statement_token4] = ACTIONS(9284), + [aux_sym_def_type_statement_token5] = ACTIONS(9284), + [aux_sym_def_type_statement_token6] = ACTIONS(9284), + [aux_sym_def_type_statement_token7] = ACTIONS(9284), + [aux_sym_def_type_statement_token8] = ACTIONS(9284), + [aux_sym_def_type_statement_token9] = ACTIONS(9284), + [aux_sym_def_type_statement_token10] = ACTIONS(9284), + [aux_sym_def_type_statement_token11] = ACTIONS(9284), + [aux_sym_def_type_statement_token12] = ACTIONS(9284), + [aux_sym_def_type_statement_token13] = ACTIONS(9284), + [aux_sym_def_type_statement_token14] = ACTIONS(9284), + [aux_sym_call_statement_token1] = ACTIONS(9284), + [sym__ambiguous_call_statement] = ACTIONS(9284), + [aux_sym_addressof_expression_token1] = ACTIONS(9284), + [aux_sym_type_of_expression_token1] = ACTIONS(9284), + [aux_sym_unary_expression_token1] = ACTIONS(9284), + [sym_string_literal] = ACTIONS(9286), + [sym_number_literal] = ACTIONS(9286), + [aux_sym_boolean_literal_token1] = ACTIONS(9284), + [aux_sym_boolean_literal_token2] = ACTIONS(9284), + [sym_nothing_literal] = ACTIONS(9284), + [sym_null_literal] = ACTIONS(9284), + [sym_empty_literal] = ACTIONS(9284), + [sym_date_literal] = ACTIONS(9286), + [anon_sym_POUND] = ACTIONS(9284), + }, + [STATE(6784)] = { + [sym_identifier] = ACTIONS(9276), + [sym_newline] = ACTIONS(9278), + [anon_sym_COLON] = ACTIONS(9278), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9276), + [aux_sym_frm_property_statement_token1] = ACTIONS(9276), + [anon_sym_DOT] = ACTIONS(9276), + [anon_sym_BANG] = ACTIONS(9278), + [aux_sym__attribute_identifier_token1] = ACTIONS(9276), + [aux_sym_option_statement_token3] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9276), + [aux_sym_preprocessor_const_token1] = ACTIONS(9276), + [sym_static_modifier] = ACTIONS(9276), + [sym__dim_keyword] = ACTIONS(9276), + [sym__redim_keyword] = ACTIONS(9276), + [aux_sym_get_accessor_token1] = ACTIONS(9276), + [aux_sym_set_accessor_token1] = ACTIONS(9276), + [aux_sym_const_declaration_token1] = ACTIONS(9276), + [anon_sym_LPAREN] = ACTIONS(9278), + [aux_sym_as_type_clause_token2] = ACTIONS(9276), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9276), + [aux_sym_visibility_token1] = ACTIONS(9276), + [aux_sym_visibility_token2] = ACTIONS(9276), + [aux_sym_elseif_fragment_token1] = ACTIONS(9276), + [aux_sym_else_fragment_token1] = ACTIONS(9276), + [aux_sym_select_statement_token1] = ACTIONS(9276), + [aux_sym__for_header_token1] = ACTIONS(9276), + [aux_sym_do_statement_token1] = ACTIONS(9276), + [aux_sym_do_statement_token2] = ACTIONS(9276), + [aux_sym_do_condition_token1] = ACTIONS(9276), + [aux_sym_with_statement_token1] = ACTIONS(9276), + [aux_sym_exit_statement_token1] = ACTIONS(9276), + [sym_end_statement] = ACTIONS(9278), + [aux_sym_on_goto_statement_token1] = ACTIONS(9276), + [aux_sym_on_goto_statement_token2] = ACTIONS(9276), + [aux_sym_on_error_statement_token2] = ACTIONS(9276), + [sym__ambiguous_redim_statement] = ACTIONS(9278), + [aux_sym_erase_statement_token1] = ACTIONS(9276), + [aux_sym_open_statement_token1] = ACTIONS(9276), + [aux_sym_file_mode_token2] = ACTIONS(9276), + [aux_sym_file_access_token2] = ACTIONS(9276), + [aux_sym_file_lock_token2] = ACTIONS(9276), + [aux_sym_print_statement_token1] = ACTIONS(9276), + [anon_sym_PLUS] = ACTIONS(9278), + [anon_sym_DASH] = ACTIONS(9276), + [anon_sym_QMARK] = ACTIONS(9278), + [aux_sym_close_statement_token1] = ACTIONS(9276), + [aux_sym_put_statement_token1] = ACTIONS(9276), + [aux_sym_unlock_statement_token1] = ACTIONS(9276), + [aux_sym_seek_statement_token1] = ACTIONS(9276), + [sym_reset_statement] = ACTIONS(9276), + [aux_sym_raise_event_statement_token1] = ACTIONS(9276), + [sym_stop_statement] = ACTIONS(9276), + [sym_beep_statement] = ACTIONS(9276), + [aux_sym_unload_statement_token1] = ACTIONS(9276), + [aux_sym_def_type_statement_token1] = ACTIONS(9276), + [aux_sym_def_type_statement_token2] = ACTIONS(9276), + [aux_sym_def_type_statement_token3] = ACTIONS(9276), + [aux_sym_def_type_statement_token4] = ACTIONS(9276), + [aux_sym_def_type_statement_token5] = ACTIONS(9276), + [aux_sym_def_type_statement_token6] = ACTIONS(9276), + [aux_sym_def_type_statement_token7] = ACTIONS(9276), + [aux_sym_def_type_statement_token8] = ACTIONS(9276), + [aux_sym_def_type_statement_token9] = ACTIONS(9276), + [aux_sym_def_type_statement_token10] = ACTIONS(9276), + [aux_sym_def_type_statement_token11] = ACTIONS(9276), + [aux_sym_def_type_statement_token12] = ACTIONS(9276), + [aux_sym_def_type_statement_token13] = ACTIONS(9276), + [aux_sym_def_type_statement_token14] = ACTIONS(9276), + [aux_sym_call_statement_token1] = ACTIONS(9276), + [sym__ambiguous_call_statement] = ACTIONS(9276), + [aux_sym_addressof_expression_token1] = ACTIONS(9276), + [aux_sym_type_of_expression_token1] = ACTIONS(9276), + [aux_sym_unary_expression_token1] = ACTIONS(9276), + [sym_string_literal] = ACTIONS(9278), + [sym_number_literal] = ACTIONS(9278), + [aux_sym_boolean_literal_token1] = ACTIONS(9276), + [aux_sym_boolean_literal_token2] = ACTIONS(9276), + [sym_nothing_literal] = ACTIONS(9276), + [sym_null_literal] = ACTIONS(9276), + [sym_empty_literal] = ACTIONS(9276), + [sym_date_literal] = ACTIONS(9278), + [anon_sym_POUND] = ACTIONS(9276), + }, + [STATE(6785)] = { + [sym_identifier] = ACTIONS(8988), + [sym_newline] = ACTIONS(8990), + [anon_sym_COLON] = ACTIONS(8990), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8988), + [aux_sym_frm_property_statement_token1] = ACTIONS(8988), + [anon_sym_DOT] = ACTIONS(8988), + [anon_sym_BANG] = ACTIONS(8990), + [aux_sym__attribute_identifier_token1] = ACTIONS(8988), + [aux_sym_option_statement_token3] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8988), + [aux_sym_preprocessor_const_token1] = ACTIONS(8988), + [sym_static_modifier] = ACTIONS(8988), + [sym__dim_keyword] = ACTIONS(8988), + [sym__redim_keyword] = ACTIONS(8988), + [aux_sym_get_accessor_token1] = ACTIONS(8988), + [aux_sym_set_accessor_token1] = ACTIONS(8988), + [aux_sym_const_declaration_token1] = ACTIONS(8988), + [anon_sym_LPAREN] = ACTIONS(8990), + [aux_sym_as_type_clause_token2] = ACTIONS(8988), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8988), + [aux_sym_visibility_token1] = ACTIONS(8988), + [aux_sym_visibility_token2] = ACTIONS(8988), + [aux_sym_elseif_fragment_token1] = ACTIONS(8988), + [aux_sym_else_fragment_token1] = ACTIONS(8988), + [aux_sym_select_statement_token1] = ACTIONS(8988), + [aux_sym__for_header_token1] = ACTIONS(8988), + [aux_sym_do_statement_token1] = ACTIONS(8988), + [aux_sym_do_statement_token2] = ACTIONS(8988), + [aux_sym_do_condition_token1] = ACTIONS(8988), + [aux_sym_with_statement_token1] = ACTIONS(8988), + [aux_sym_exit_statement_token1] = ACTIONS(8988), + [sym_end_statement] = ACTIONS(8990), + [aux_sym_on_goto_statement_token1] = ACTIONS(8988), + [aux_sym_on_goto_statement_token2] = ACTIONS(8988), + [aux_sym_on_error_statement_token2] = ACTIONS(8988), + [sym__ambiguous_redim_statement] = ACTIONS(8990), + [aux_sym_erase_statement_token1] = ACTIONS(8988), + [aux_sym_open_statement_token1] = ACTIONS(8988), + [aux_sym_file_mode_token2] = ACTIONS(8988), + [aux_sym_file_access_token2] = ACTIONS(8988), + [aux_sym_file_lock_token2] = ACTIONS(8988), + [aux_sym_print_statement_token1] = ACTIONS(8988), + [anon_sym_PLUS] = ACTIONS(8990), + [anon_sym_DASH] = ACTIONS(8988), + [anon_sym_QMARK] = ACTIONS(8990), + [aux_sym_close_statement_token1] = ACTIONS(8988), + [aux_sym_put_statement_token1] = ACTIONS(8988), + [aux_sym_unlock_statement_token1] = ACTIONS(8988), + [aux_sym_seek_statement_token1] = ACTIONS(8988), + [sym_reset_statement] = ACTIONS(8988), + [aux_sym_raise_event_statement_token1] = ACTIONS(8988), + [sym_stop_statement] = ACTIONS(8988), + [sym_beep_statement] = ACTIONS(8988), + [aux_sym_unload_statement_token1] = ACTIONS(8988), + [aux_sym_def_type_statement_token1] = ACTIONS(8988), + [aux_sym_def_type_statement_token2] = ACTIONS(8988), + [aux_sym_def_type_statement_token3] = ACTIONS(8988), + [aux_sym_def_type_statement_token4] = ACTIONS(8988), + [aux_sym_def_type_statement_token5] = ACTIONS(8988), + [aux_sym_def_type_statement_token6] = ACTIONS(8988), + [aux_sym_def_type_statement_token7] = ACTIONS(8988), + [aux_sym_def_type_statement_token8] = ACTIONS(8988), + [aux_sym_def_type_statement_token9] = ACTIONS(8988), + [aux_sym_def_type_statement_token10] = ACTIONS(8988), + [aux_sym_def_type_statement_token11] = ACTIONS(8988), + [aux_sym_def_type_statement_token12] = ACTIONS(8988), + [aux_sym_def_type_statement_token13] = ACTIONS(8988), + [aux_sym_def_type_statement_token14] = ACTIONS(8988), + [aux_sym_call_statement_token1] = ACTIONS(8988), + [sym__ambiguous_call_statement] = ACTIONS(8988), + [aux_sym_addressof_expression_token1] = ACTIONS(8988), + [aux_sym_type_of_expression_token1] = ACTIONS(8988), + [aux_sym_unary_expression_token1] = ACTIONS(8988), + [sym_string_literal] = ACTIONS(8990), + [sym_number_literal] = ACTIONS(8990), + [aux_sym_boolean_literal_token1] = ACTIONS(8988), + [aux_sym_boolean_literal_token2] = ACTIONS(8988), + [sym_nothing_literal] = ACTIONS(8988), + [sym_null_literal] = ACTIONS(8988), + [sym_empty_literal] = ACTIONS(8988), + [sym_date_literal] = ACTIONS(8990), + [anon_sym_POUND] = ACTIONS(8988), + }, + [STATE(6786)] = { + [sym_identifier] = ACTIONS(9122), + [sym_newline] = ACTIONS(9124), + [anon_sym_COLON] = ACTIONS(9124), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9122), + [aux_sym_frm_property_statement_token1] = ACTIONS(9122), + [anon_sym_DOT] = ACTIONS(9122), + [anon_sym_BANG] = ACTIONS(9124), + [aux_sym__attribute_identifier_token1] = ACTIONS(9122), + [aux_sym_option_statement_token3] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9122), + [aux_sym_preprocessor_const_token1] = ACTIONS(9122), + [sym_static_modifier] = ACTIONS(9122), + [sym__dim_keyword] = ACTIONS(9122), + [sym__redim_keyword] = ACTIONS(9122), + [aux_sym_get_accessor_token1] = ACTIONS(9122), + [aux_sym_set_accessor_token1] = ACTIONS(9122), + [aux_sym_const_declaration_token1] = ACTIONS(9122), + [anon_sym_LPAREN] = ACTIONS(9124), + [aux_sym_as_type_clause_token2] = ACTIONS(9122), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9122), + [aux_sym_visibility_token1] = ACTIONS(9122), + [aux_sym_visibility_token2] = ACTIONS(9122), + [aux_sym_elseif_fragment_token1] = ACTIONS(9122), + [aux_sym_else_fragment_token1] = ACTIONS(9122), + [aux_sym_select_statement_token1] = ACTIONS(9122), + [aux_sym__for_header_token1] = ACTIONS(9122), + [aux_sym_do_statement_token1] = ACTIONS(9122), + [aux_sym_do_condition_token1] = ACTIONS(9122), + [aux_sym_with_statement_token1] = ACTIONS(9122), + [aux_sym_exit_statement_token1] = ACTIONS(9122), + [sym_end_statement] = ACTIONS(9124), + [aux_sym_on_goto_statement_token1] = ACTIONS(9122), + [aux_sym_on_goto_statement_token2] = ACTIONS(9122), + [aux_sym_on_error_statement_token2] = ACTIONS(9122), + [sym__ambiguous_redim_statement] = ACTIONS(9124), + [aux_sym_erase_statement_token1] = ACTIONS(9122), + [aux_sym_open_statement_token1] = ACTIONS(9122), + [aux_sym_file_mode_token2] = ACTIONS(9122), + [aux_sym_file_access_token2] = ACTIONS(9122), + [aux_sym_file_lock_token2] = ACTIONS(9122), + [aux_sym_print_statement_token1] = ACTIONS(9122), + [anon_sym_PLUS] = ACTIONS(9124), + [anon_sym_DASH] = ACTIONS(9122), + [anon_sym_QMARK] = ACTIONS(9124), + [aux_sym_close_statement_token1] = ACTIONS(9122), + [aux_sym_put_statement_token1] = ACTIONS(9122), + [aux_sym_unlock_statement_token1] = ACTIONS(9122), + [aux_sym_seek_statement_token1] = ACTIONS(9122), + [sym_reset_statement] = ACTIONS(9122), + [aux_sym_raise_event_statement_token1] = ACTIONS(9122), + [sym_stop_statement] = ACTIONS(9122), + [sym_beep_statement] = ACTIONS(9122), + [aux_sym_unload_statement_token1] = ACTIONS(9122), + [aux_sym_def_type_statement_token1] = ACTIONS(9122), + [aux_sym_def_type_statement_token2] = ACTIONS(9122), + [aux_sym_def_type_statement_token3] = ACTIONS(9122), + [aux_sym_def_type_statement_token4] = ACTIONS(9122), + [aux_sym_def_type_statement_token5] = ACTIONS(9122), + [aux_sym_def_type_statement_token6] = ACTIONS(9122), + [aux_sym_def_type_statement_token7] = ACTIONS(9122), + [aux_sym_def_type_statement_token8] = ACTIONS(9122), + [aux_sym_def_type_statement_token9] = ACTIONS(9122), + [aux_sym_def_type_statement_token10] = ACTIONS(9122), + [aux_sym_def_type_statement_token11] = ACTIONS(9122), + [aux_sym_def_type_statement_token12] = ACTIONS(9122), + [aux_sym_def_type_statement_token13] = ACTIONS(9122), + [aux_sym_def_type_statement_token14] = ACTIONS(9122), + [aux_sym_call_statement_token1] = ACTIONS(9122), + [sym__ambiguous_call_statement] = ACTIONS(9122), + [aux_sym_addressof_expression_token1] = ACTIONS(9122), + [aux_sym_type_of_expression_token1] = ACTIONS(9122), + [aux_sym_unary_expression_token1] = ACTIONS(9122), + [sym_string_literal] = ACTIONS(9124), + [sym_number_literal] = ACTIONS(9124), + [aux_sym_boolean_literal_token1] = ACTIONS(9122), + [aux_sym_boolean_literal_token2] = ACTIONS(9122), + [sym_nothing_literal] = ACTIONS(9122), + [sym_null_literal] = ACTIONS(9122), + [sym_empty_literal] = ACTIONS(9122), + [sym_date_literal] = ACTIONS(9124), + [anon_sym_POUND] = ACTIONS(9122), + }, + [STATE(6787)] = { + [sym_identifier] = ACTIONS(9126), + [sym_newline] = ACTIONS(9128), + [anon_sym_COLON] = ACTIONS(9128), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9126), + [aux_sym_frm_property_statement_token1] = ACTIONS(9126), + [anon_sym_DOT] = ACTIONS(9126), + [anon_sym_BANG] = ACTIONS(9128), + [aux_sym__attribute_identifier_token1] = ACTIONS(9126), + [aux_sym_option_statement_token3] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9126), + [aux_sym_preprocessor_const_token1] = ACTIONS(9126), + [sym_static_modifier] = ACTIONS(9126), + [sym__dim_keyword] = ACTIONS(9126), + [sym__redim_keyword] = ACTIONS(9126), + [aux_sym_get_accessor_token1] = ACTIONS(9126), + [aux_sym_set_accessor_token1] = ACTIONS(9126), + [aux_sym_const_declaration_token1] = ACTIONS(9126), + [anon_sym_LPAREN] = ACTIONS(9128), + [aux_sym_as_type_clause_token2] = ACTIONS(9126), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9126), + [aux_sym_visibility_token1] = ACTIONS(9126), + [aux_sym_visibility_token2] = ACTIONS(9126), + [aux_sym_elseif_fragment_token1] = ACTIONS(9126), + [aux_sym_else_fragment_token1] = ACTIONS(9126), + [aux_sym_select_statement_token1] = ACTIONS(9126), + [aux_sym__for_header_token1] = ACTIONS(9126), + [aux_sym_do_statement_token1] = ACTIONS(9126), + [aux_sym_do_condition_token1] = ACTIONS(9126), + [aux_sym_with_statement_token1] = ACTIONS(9126), + [aux_sym_exit_statement_token1] = ACTIONS(9126), + [sym_end_statement] = ACTIONS(9128), + [aux_sym_on_goto_statement_token1] = ACTIONS(9126), + [aux_sym_on_goto_statement_token2] = ACTIONS(9126), + [aux_sym_on_error_statement_token2] = ACTIONS(9126), + [sym__ambiguous_redim_statement] = ACTIONS(9128), + [aux_sym_erase_statement_token1] = ACTIONS(9126), + [aux_sym_open_statement_token1] = ACTIONS(9126), + [aux_sym_file_mode_token2] = ACTIONS(9126), + [aux_sym_file_access_token2] = ACTIONS(9126), + [aux_sym_file_lock_token2] = ACTIONS(9126), + [aux_sym_print_statement_token1] = ACTIONS(9126), + [anon_sym_PLUS] = ACTIONS(9128), + [anon_sym_DASH] = ACTIONS(9126), + [anon_sym_QMARK] = ACTIONS(9128), + [aux_sym_close_statement_token1] = ACTIONS(9126), + [aux_sym_put_statement_token1] = ACTIONS(9126), + [aux_sym_unlock_statement_token1] = ACTIONS(9126), + [aux_sym_seek_statement_token1] = ACTIONS(9126), + [sym_reset_statement] = ACTIONS(9126), + [aux_sym_raise_event_statement_token1] = ACTIONS(9126), + [sym_stop_statement] = ACTIONS(9126), + [sym_beep_statement] = ACTIONS(9126), + [aux_sym_unload_statement_token1] = ACTIONS(9126), + [aux_sym_def_type_statement_token1] = ACTIONS(9126), + [aux_sym_def_type_statement_token2] = ACTIONS(9126), + [aux_sym_def_type_statement_token3] = ACTIONS(9126), + [aux_sym_def_type_statement_token4] = ACTIONS(9126), + [aux_sym_def_type_statement_token5] = ACTIONS(9126), + [aux_sym_def_type_statement_token6] = ACTIONS(9126), + [aux_sym_def_type_statement_token7] = ACTIONS(9126), + [aux_sym_def_type_statement_token8] = ACTIONS(9126), + [aux_sym_def_type_statement_token9] = ACTIONS(9126), + [aux_sym_def_type_statement_token10] = ACTIONS(9126), + [aux_sym_def_type_statement_token11] = ACTIONS(9126), + [aux_sym_def_type_statement_token12] = ACTIONS(9126), + [aux_sym_def_type_statement_token13] = ACTIONS(9126), + [aux_sym_def_type_statement_token14] = ACTIONS(9126), + [aux_sym_call_statement_token1] = ACTIONS(9126), + [sym__ambiguous_call_statement] = ACTIONS(9126), + [aux_sym_addressof_expression_token1] = ACTIONS(9126), + [aux_sym_type_of_expression_token1] = ACTIONS(9126), + [aux_sym_unary_expression_token1] = ACTIONS(9126), + [sym_string_literal] = ACTIONS(9128), + [sym_number_literal] = ACTIONS(9128), + [aux_sym_boolean_literal_token1] = ACTIONS(9126), + [aux_sym_boolean_literal_token2] = ACTIONS(9126), + [sym_nothing_literal] = ACTIONS(9126), + [sym_null_literal] = ACTIONS(9126), + [sym_empty_literal] = ACTIONS(9126), + [sym_date_literal] = ACTIONS(9128), + [anon_sym_POUND] = ACTIONS(9126), + }, + [STATE(6788)] = { + [sym_identifier] = ACTIONS(8501), + [sym_newline] = ACTIONS(8503), + [anon_sym_COLON] = ACTIONS(8503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8501), + [aux_sym_frm_property_statement_token1] = ACTIONS(8501), + [anon_sym_DOT] = ACTIONS(8501), + [anon_sym_BANG] = ACTIONS(8503), + [aux_sym__attribute_identifier_token1] = ACTIONS(8501), + [aux_sym_option_statement_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8501), + [aux_sym_preprocessor_const_token1] = ACTIONS(8501), + [sym_static_modifier] = ACTIONS(8501), + [sym__dim_keyword] = ACTIONS(8501), + [sym__redim_keyword] = ACTIONS(8501), + [aux_sym_get_accessor_token1] = ACTIONS(8501), + [aux_sym_set_accessor_token1] = ACTIONS(8501), + [aux_sym_const_declaration_token1] = ACTIONS(8501), + [anon_sym_LPAREN] = ACTIONS(8503), + [aux_sym_as_type_clause_token2] = ACTIONS(8501), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8501), + [aux_sym_visibility_token1] = ACTIONS(8501), + [aux_sym_visibility_token2] = ACTIONS(8501), + [aux_sym_elseif_fragment_token1] = ACTIONS(8501), + [aux_sym_else_fragment_token1] = ACTIONS(8501), + [aux_sym_select_statement_token1] = ACTIONS(8501), + [aux_sym_select_statement_token2] = ACTIONS(8501), + [aux_sym__for_header_token1] = ACTIONS(8501), + [aux_sym_do_statement_token1] = ACTIONS(8501), + [aux_sym_do_condition_token1] = ACTIONS(8501), + [aux_sym_with_statement_token1] = ACTIONS(8501), + [aux_sym_exit_statement_token1] = ACTIONS(8501), + [sym_end_statement] = ACTIONS(8503), + [aux_sym_on_goto_statement_token1] = ACTIONS(8501), + [aux_sym_on_goto_statement_token2] = ACTIONS(8501), + [aux_sym_on_error_statement_token2] = ACTIONS(8501), + [sym__ambiguous_redim_statement] = ACTIONS(8503), + [aux_sym_erase_statement_token1] = ACTIONS(8501), + [aux_sym_open_statement_token1] = ACTIONS(8501), + [aux_sym_file_mode_token2] = ACTIONS(8501), + [aux_sym_file_access_token2] = ACTIONS(8501), + [aux_sym_file_lock_token2] = ACTIONS(8501), + [aux_sym_print_statement_token1] = ACTIONS(8501), + [anon_sym_PLUS] = ACTIONS(8503), + [anon_sym_DASH] = ACTIONS(8501), + [anon_sym_QMARK] = ACTIONS(8503), + [aux_sym_close_statement_token1] = ACTIONS(8501), + [aux_sym_put_statement_token1] = ACTIONS(8501), + [aux_sym_unlock_statement_token1] = ACTIONS(8501), + [aux_sym_seek_statement_token1] = ACTIONS(8501), + [sym_reset_statement] = ACTIONS(8501), + [aux_sym_raise_event_statement_token1] = ACTIONS(8501), + [sym_stop_statement] = ACTIONS(8501), + [sym_beep_statement] = ACTIONS(8501), + [aux_sym_unload_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token2] = ACTIONS(8501), + [aux_sym_def_type_statement_token3] = ACTIONS(8501), + [aux_sym_def_type_statement_token4] = ACTIONS(8501), + [aux_sym_def_type_statement_token5] = ACTIONS(8501), + [aux_sym_def_type_statement_token6] = ACTIONS(8501), + [aux_sym_def_type_statement_token7] = ACTIONS(8501), + [aux_sym_def_type_statement_token8] = ACTIONS(8501), + [aux_sym_def_type_statement_token9] = ACTIONS(8501), + [aux_sym_def_type_statement_token10] = ACTIONS(8501), + [aux_sym_def_type_statement_token11] = ACTIONS(8501), + [aux_sym_def_type_statement_token12] = ACTIONS(8501), + [aux_sym_def_type_statement_token13] = ACTIONS(8501), + [aux_sym_def_type_statement_token14] = ACTIONS(8501), + [aux_sym_call_statement_token1] = ACTIONS(8501), + [sym__ambiguous_call_statement] = ACTIONS(8501), + [aux_sym_addressof_expression_token1] = ACTIONS(8501), + [aux_sym_type_of_expression_token1] = ACTIONS(8501), + [aux_sym_unary_expression_token1] = ACTIONS(8501), + [sym_string_literal] = ACTIONS(8503), + [sym_number_literal] = ACTIONS(8503), + [aux_sym_boolean_literal_token1] = ACTIONS(8501), + [aux_sym_boolean_literal_token2] = ACTIONS(8501), + [sym_nothing_literal] = ACTIONS(8501), + [sym_null_literal] = ACTIONS(8501), + [sym_empty_literal] = ACTIONS(8501), + [sym_date_literal] = ACTIONS(8503), + [anon_sym_POUND] = ACTIONS(8501), + }, + [STATE(6789)] = { + [sym_identifier] = ACTIONS(9146), + [sym_newline] = ACTIONS(9148), + [anon_sym_COLON] = ACTIONS(9148), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9146), + [aux_sym_frm_property_statement_token1] = ACTIONS(9146), + [anon_sym_DOT] = ACTIONS(9146), + [anon_sym_BANG] = ACTIONS(9148), + [aux_sym__attribute_identifier_token1] = ACTIONS(9146), + [aux_sym_option_statement_token3] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9146), + [aux_sym_preprocessor_const_token1] = ACTIONS(9146), + [sym_static_modifier] = ACTIONS(9146), + [sym__dim_keyword] = ACTIONS(9146), + [sym__redim_keyword] = ACTIONS(9146), + [aux_sym_get_accessor_token1] = ACTIONS(9146), + [aux_sym_set_accessor_token1] = ACTIONS(9146), + [aux_sym_const_declaration_token1] = ACTIONS(9146), + [anon_sym_LPAREN] = ACTIONS(9148), + [aux_sym_as_type_clause_token2] = ACTIONS(9146), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9146), + [aux_sym_visibility_token1] = ACTIONS(9146), + [aux_sym_visibility_token2] = ACTIONS(9146), + [aux_sym_elseif_fragment_token1] = ACTIONS(9146), + [aux_sym_else_fragment_token1] = ACTIONS(9146), + [aux_sym_select_statement_token1] = ACTIONS(9146), + [aux_sym__for_header_token1] = ACTIONS(9146), + [aux_sym_do_statement_token1] = ACTIONS(9146), + [aux_sym_do_condition_token1] = ACTIONS(9146), + [aux_sym_while_statement_token1] = ACTIONS(9146), + [aux_sym_with_statement_token1] = ACTIONS(9146), + [aux_sym_exit_statement_token1] = ACTIONS(9146), + [sym_end_statement] = ACTIONS(9148), + [aux_sym_on_goto_statement_token1] = ACTIONS(9146), + [aux_sym_on_goto_statement_token2] = ACTIONS(9146), + [aux_sym_on_error_statement_token2] = ACTIONS(9146), + [sym__ambiguous_redim_statement] = ACTIONS(9148), + [aux_sym_erase_statement_token1] = ACTIONS(9146), + [aux_sym_open_statement_token1] = ACTIONS(9146), + [aux_sym_file_mode_token2] = ACTIONS(9146), + [aux_sym_file_access_token2] = ACTIONS(9146), + [aux_sym_file_lock_token2] = ACTIONS(9146), + [aux_sym_print_statement_token1] = ACTIONS(9146), + [anon_sym_PLUS] = ACTIONS(9148), + [anon_sym_DASH] = ACTIONS(9146), + [anon_sym_QMARK] = ACTIONS(9148), + [aux_sym_close_statement_token1] = ACTIONS(9146), + [aux_sym_put_statement_token1] = ACTIONS(9146), + [aux_sym_unlock_statement_token1] = ACTIONS(9146), + [aux_sym_seek_statement_token1] = ACTIONS(9146), + [sym_reset_statement] = ACTIONS(9146), + [aux_sym_raise_event_statement_token1] = ACTIONS(9146), + [sym_stop_statement] = ACTIONS(9146), + [sym_beep_statement] = ACTIONS(9146), + [aux_sym_unload_statement_token1] = ACTIONS(9146), + [aux_sym_def_type_statement_token1] = ACTIONS(9146), + [aux_sym_def_type_statement_token2] = ACTIONS(9146), + [aux_sym_def_type_statement_token3] = ACTIONS(9146), + [aux_sym_def_type_statement_token4] = ACTIONS(9146), + [aux_sym_def_type_statement_token5] = ACTIONS(9146), + [aux_sym_def_type_statement_token6] = ACTIONS(9146), + [aux_sym_def_type_statement_token7] = ACTIONS(9146), + [aux_sym_def_type_statement_token8] = ACTIONS(9146), + [aux_sym_def_type_statement_token9] = ACTIONS(9146), + [aux_sym_def_type_statement_token10] = ACTIONS(9146), + [aux_sym_def_type_statement_token11] = ACTIONS(9146), + [aux_sym_def_type_statement_token12] = ACTIONS(9146), + [aux_sym_def_type_statement_token13] = ACTIONS(9146), + [aux_sym_def_type_statement_token14] = ACTIONS(9146), + [aux_sym_call_statement_token1] = ACTIONS(9146), + [sym__ambiguous_call_statement] = ACTIONS(9146), + [aux_sym_addressof_expression_token1] = ACTIONS(9146), + [aux_sym_type_of_expression_token1] = ACTIONS(9146), + [aux_sym_unary_expression_token1] = ACTIONS(9146), + [sym_string_literal] = ACTIONS(9148), + [sym_number_literal] = ACTIONS(9148), + [aux_sym_boolean_literal_token1] = ACTIONS(9146), + [aux_sym_boolean_literal_token2] = ACTIONS(9146), + [sym_nothing_literal] = ACTIONS(9146), + [sym_null_literal] = ACTIONS(9146), + [sym_empty_literal] = ACTIONS(9146), + [sym_date_literal] = ACTIONS(9148), + [anon_sym_POUND] = ACTIONS(9146), + }, + [STATE(6790)] = { + [sym_identifier] = ACTIONS(9150), + [sym_newline] = ACTIONS(9152), + [anon_sym_COLON] = ACTIONS(9152), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9154), + [aux_sym_frm_property_statement_token1] = ACTIONS(9150), + [anon_sym_DOT] = ACTIONS(9150), + [anon_sym_BANG] = ACTIONS(9152), + [aux_sym__attribute_identifier_token1] = ACTIONS(9150), + [aux_sym_option_statement_token3] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9154), + [aux_sym_preprocessor_const_token1] = ACTIONS(9150), + [sym_static_modifier] = ACTIONS(9150), + [sym__dim_keyword] = ACTIONS(9150), + [sym__redim_keyword] = ACTIONS(9150), + [aux_sym_get_accessor_token1] = ACTIONS(9150), + [aux_sym_set_accessor_token1] = ACTIONS(9150), + [aux_sym_const_declaration_token1] = ACTIONS(9150), + [anon_sym_LPAREN] = ACTIONS(9152), + [aux_sym_as_type_clause_token2] = ACTIONS(9150), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9150), + [aux_sym_visibility_token1] = ACTIONS(9150), + [aux_sym_visibility_token2] = ACTIONS(9150), + [aux_sym_elseif_fragment_token1] = ACTIONS(9154), + [aux_sym_else_fragment_token1] = ACTIONS(9154), + [aux_sym_select_statement_token1] = ACTIONS(9154), + [aux_sym__for_header_token1] = ACTIONS(9154), + [aux_sym_do_statement_token1] = ACTIONS(9154), + [aux_sym_do_condition_token1] = ACTIONS(9154), + [aux_sym_while_statement_token1] = ACTIONS(9154), + [aux_sym_with_statement_token1] = ACTIONS(9154), + [aux_sym_exit_statement_token1] = ACTIONS(9150), + [sym_end_statement] = ACTIONS(9152), + [aux_sym_on_goto_statement_token1] = ACTIONS(9150), + [aux_sym_on_goto_statement_token2] = ACTIONS(9150), + [aux_sym_on_error_statement_token2] = ACTIONS(9150), + [sym__ambiguous_redim_statement] = ACTIONS(9152), + [aux_sym_erase_statement_token1] = ACTIONS(9150), + [aux_sym_open_statement_token1] = ACTIONS(9150), + [aux_sym_file_mode_token2] = ACTIONS(9150), + [aux_sym_file_access_token2] = ACTIONS(9150), + [aux_sym_file_lock_token2] = ACTIONS(9150), + [aux_sym_print_statement_token1] = ACTIONS(9150), + [anon_sym_PLUS] = ACTIONS(9152), + [anon_sym_DASH] = ACTIONS(9150), + [anon_sym_QMARK] = ACTIONS(9152), + [aux_sym_close_statement_token1] = ACTIONS(9150), + [aux_sym_put_statement_token1] = ACTIONS(9150), + [aux_sym_unlock_statement_token1] = ACTIONS(9150), + [aux_sym_seek_statement_token1] = ACTIONS(9150), + [sym_reset_statement] = ACTIONS(9150), + [aux_sym_raise_event_statement_token1] = ACTIONS(9150), + [sym_stop_statement] = ACTIONS(9150), + [sym_beep_statement] = ACTIONS(9150), + [aux_sym_unload_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token2] = ACTIONS(9150), + [aux_sym_def_type_statement_token3] = ACTIONS(9150), + [aux_sym_def_type_statement_token4] = ACTIONS(9150), + [aux_sym_def_type_statement_token5] = ACTIONS(9150), + [aux_sym_def_type_statement_token6] = ACTIONS(9150), + [aux_sym_def_type_statement_token7] = ACTIONS(9150), + [aux_sym_def_type_statement_token8] = ACTIONS(9150), + [aux_sym_def_type_statement_token9] = ACTIONS(9150), + [aux_sym_def_type_statement_token10] = ACTIONS(9150), + [aux_sym_def_type_statement_token11] = ACTIONS(9150), + [aux_sym_def_type_statement_token12] = ACTIONS(9150), + [aux_sym_def_type_statement_token13] = ACTIONS(9150), + [aux_sym_def_type_statement_token14] = ACTIONS(9150), + [aux_sym_call_statement_token1] = ACTIONS(9150), + [sym__ambiguous_call_statement] = ACTIONS(9150), + [aux_sym_addressof_expression_token1] = ACTIONS(9150), + [aux_sym_type_of_expression_token1] = ACTIONS(9150), + [aux_sym_unary_expression_token1] = ACTIONS(9150), + [sym_string_literal] = ACTIONS(9152), + [sym_number_literal] = ACTIONS(9152), + [aux_sym_boolean_literal_token1] = ACTIONS(9150), + [aux_sym_boolean_literal_token2] = ACTIONS(9150), + [sym_nothing_literal] = ACTIONS(9150), + [sym_null_literal] = ACTIONS(9150), + [sym_empty_literal] = ACTIONS(9150), + [sym_date_literal] = ACTIONS(9152), + [anon_sym_POUND] = ACTIONS(9150), + }, + [STATE(6791)] = { + [sym_identifier] = ACTIONS(9552), + [sym_newline] = ACTIONS(9554), + [anon_sym_COLON] = ACTIONS(9554), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9552), + [aux_sym_frm_property_statement_token1] = ACTIONS(9552), + [anon_sym_DOT] = ACTIONS(9552), + [anon_sym_BANG] = ACTIONS(9554), + [aux_sym__attribute_identifier_token1] = ACTIONS(9552), + [aux_sym_option_statement_token3] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9552), + [aux_sym_preprocessor_const_token1] = ACTIONS(9552), + [sym_static_modifier] = ACTIONS(9552), + [sym__dim_keyword] = ACTIONS(9552), + [sym__redim_keyword] = ACTIONS(9552), + [aux_sym_get_accessor_token1] = ACTIONS(9552), + [aux_sym_set_accessor_token1] = ACTIONS(9552), + [aux_sym_const_declaration_token1] = ACTIONS(9552), + [anon_sym_LPAREN] = ACTIONS(9554), + [aux_sym_as_type_clause_token2] = ACTIONS(9552), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9552), + [aux_sym_visibility_token1] = ACTIONS(9552), + [aux_sym_visibility_token2] = ACTIONS(9552), + [aux_sym_elseif_fragment_token1] = ACTIONS(9552), + [aux_sym_else_fragment_token1] = ACTIONS(9552), + [aux_sym_select_statement_token1] = ACTIONS(9552), + [aux_sym_select_statement_token2] = ACTIONS(9552), + [aux_sym__for_header_token1] = ACTIONS(9552), + [aux_sym_do_statement_token1] = ACTIONS(9552), + [aux_sym_do_condition_token1] = ACTIONS(9552), + [aux_sym_with_statement_token1] = ACTIONS(9552), + [aux_sym_exit_statement_token1] = ACTIONS(9552), + [sym_end_statement] = ACTIONS(9554), + [aux_sym_on_goto_statement_token1] = ACTIONS(9552), + [aux_sym_on_goto_statement_token2] = ACTIONS(9552), + [aux_sym_on_error_statement_token2] = ACTIONS(9552), + [sym__ambiguous_redim_statement] = ACTIONS(9554), + [aux_sym_erase_statement_token1] = ACTIONS(9552), + [aux_sym_open_statement_token1] = ACTIONS(9552), + [aux_sym_file_mode_token2] = ACTIONS(9552), + [aux_sym_file_access_token2] = ACTIONS(9552), + [aux_sym_file_lock_token2] = ACTIONS(9552), + [aux_sym_print_statement_token1] = ACTIONS(9552), + [anon_sym_PLUS] = ACTIONS(9554), + [anon_sym_DASH] = ACTIONS(9552), + [anon_sym_QMARK] = ACTIONS(9554), + [aux_sym_close_statement_token1] = ACTIONS(9552), + [aux_sym_put_statement_token1] = ACTIONS(9552), + [aux_sym_unlock_statement_token1] = ACTIONS(9552), + [aux_sym_seek_statement_token1] = ACTIONS(9552), + [sym_reset_statement] = ACTIONS(9552), + [aux_sym_raise_event_statement_token1] = ACTIONS(9552), + [sym_stop_statement] = ACTIONS(9552), + [sym_beep_statement] = ACTIONS(9552), + [aux_sym_unload_statement_token1] = ACTIONS(9552), + [aux_sym_def_type_statement_token1] = ACTIONS(9552), + [aux_sym_def_type_statement_token2] = ACTIONS(9552), + [aux_sym_def_type_statement_token3] = ACTIONS(9552), + [aux_sym_def_type_statement_token4] = ACTIONS(9552), + [aux_sym_def_type_statement_token5] = ACTIONS(9552), + [aux_sym_def_type_statement_token6] = ACTIONS(9552), + [aux_sym_def_type_statement_token7] = ACTIONS(9552), + [aux_sym_def_type_statement_token8] = ACTIONS(9552), + [aux_sym_def_type_statement_token9] = ACTIONS(9552), + [aux_sym_def_type_statement_token10] = ACTIONS(9552), + [aux_sym_def_type_statement_token11] = ACTIONS(9552), + [aux_sym_def_type_statement_token12] = ACTIONS(9552), + [aux_sym_def_type_statement_token13] = ACTIONS(9552), + [aux_sym_def_type_statement_token14] = ACTIONS(9552), + [aux_sym_call_statement_token1] = ACTIONS(9552), + [sym__ambiguous_call_statement] = ACTIONS(9552), + [aux_sym_addressof_expression_token1] = ACTIONS(9552), + [aux_sym_type_of_expression_token1] = ACTIONS(9552), + [aux_sym_unary_expression_token1] = ACTIONS(9552), + [sym_string_literal] = ACTIONS(9554), + [sym_number_literal] = ACTIONS(9554), + [aux_sym_boolean_literal_token1] = ACTIONS(9552), + [aux_sym_boolean_literal_token2] = ACTIONS(9552), + [sym_nothing_literal] = ACTIONS(9552), + [sym_null_literal] = ACTIONS(9552), + [sym_empty_literal] = ACTIONS(9552), + [sym_date_literal] = ACTIONS(9554), + [anon_sym_POUND] = ACTIONS(9552), + }, + [STATE(6792)] = { + [sym_identifier] = ACTIONS(8835), + [sym_newline] = ACTIONS(8837), + [anon_sym_COLON] = ACTIONS(8837), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8835), + [aux_sym_frm_property_statement_token1] = ACTIONS(8835), + [anon_sym_DOT] = ACTIONS(8835), + [anon_sym_BANG] = ACTIONS(8837), + [aux_sym__attribute_identifier_token1] = ACTIONS(8835), + [aux_sym_option_statement_token3] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8835), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8835), + [aux_sym_preprocessor_const_token1] = ACTIONS(8835), + [sym_static_modifier] = ACTIONS(8835), + [sym__dim_keyword] = ACTIONS(8835), + [sym__redim_keyword] = ACTIONS(8835), + [aux_sym_get_accessor_token1] = ACTIONS(8835), + [aux_sym_set_accessor_token1] = ACTIONS(8835), + [anon_sym_COMMA] = ACTIONS(8837), + [aux_sym_const_declaration_token1] = ACTIONS(8835), + [anon_sym_LPAREN] = ACTIONS(8837), + [aux_sym_as_type_clause_token2] = ACTIONS(8835), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8835), + [aux_sym_visibility_token1] = ACTIONS(8835), + [aux_sym_visibility_token2] = ACTIONS(8835), + [aux_sym_elseif_fragment_token1] = ACTIONS(8835), + [aux_sym_else_fragment_token1] = ACTIONS(8835), + [aux_sym_select_statement_token1] = ACTIONS(8835), + [aux_sym__for_header_token1] = ACTIONS(8835), + [aux_sym_do_statement_token1] = ACTIONS(8835), + [aux_sym_do_condition_token1] = ACTIONS(8835), + [aux_sym_with_statement_token1] = ACTIONS(8835), + [aux_sym_exit_statement_token1] = ACTIONS(8835), + [sym_end_statement] = ACTIONS(8837), + [aux_sym_on_goto_statement_token1] = ACTIONS(8835), + [aux_sym_on_goto_statement_token2] = ACTIONS(8835), + [aux_sym_on_error_statement_token2] = ACTIONS(8835), + [sym__ambiguous_redim_statement] = ACTIONS(8837), + [aux_sym_erase_statement_token1] = ACTIONS(8835), + [aux_sym_open_statement_token1] = ACTIONS(8835), + [aux_sym_file_mode_token2] = ACTIONS(8835), + [aux_sym_file_access_token2] = ACTIONS(8835), + [aux_sym_file_lock_token2] = ACTIONS(8835), + [aux_sym_print_statement_token1] = ACTIONS(8835), + [anon_sym_PLUS] = ACTIONS(8837), + [anon_sym_DASH] = ACTIONS(8835), + [anon_sym_QMARK] = ACTIONS(8837), + [aux_sym_close_statement_token1] = ACTIONS(8835), + [aux_sym_put_statement_token1] = ACTIONS(8835), + [aux_sym_unlock_statement_token1] = ACTIONS(8835), + [aux_sym_seek_statement_token1] = ACTIONS(8835), + [sym_reset_statement] = ACTIONS(8835), + [aux_sym_raise_event_statement_token1] = ACTIONS(8835), + [sym_stop_statement] = ACTIONS(8835), + [sym_beep_statement] = ACTIONS(8835), + [aux_sym_unload_statement_token1] = ACTIONS(8835), + [aux_sym_def_type_statement_token1] = ACTIONS(8835), + [aux_sym_def_type_statement_token2] = ACTIONS(8835), + [aux_sym_def_type_statement_token3] = ACTIONS(8835), + [aux_sym_def_type_statement_token4] = ACTIONS(8835), + [aux_sym_def_type_statement_token5] = ACTIONS(8835), + [aux_sym_def_type_statement_token6] = ACTIONS(8835), + [aux_sym_def_type_statement_token7] = ACTIONS(8835), + [aux_sym_def_type_statement_token8] = ACTIONS(8835), + [aux_sym_def_type_statement_token9] = ACTIONS(8835), + [aux_sym_def_type_statement_token10] = ACTIONS(8835), + [aux_sym_def_type_statement_token11] = ACTIONS(8835), + [aux_sym_def_type_statement_token12] = ACTIONS(8835), + [aux_sym_def_type_statement_token13] = ACTIONS(8835), + [aux_sym_def_type_statement_token14] = ACTIONS(8835), + [aux_sym_call_statement_token1] = ACTIONS(8835), + [sym__ambiguous_call_statement] = ACTIONS(8835), + [aux_sym_addressof_expression_token1] = ACTIONS(8835), + [aux_sym_type_of_expression_token1] = ACTIONS(8835), + [aux_sym_unary_expression_token1] = ACTIONS(8835), + [sym_string_literal] = ACTIONS(8837), + [sym_number_literal] = ACTIONS(8837), + [aux_sym_boolean_literal_token1] = ACTIONS(8835), + [aux_sym_boolean_literal_token2] = ACTIONS(8835), + [sym_nothing_literal] = ACTIONS(8835), + [sym_null_literal] = ACTIONS(8835), + [sym_empty_literal] = ACTIONS(8835), + [sym_date_literal] = ACTIONS(8837), + [anon_sym_POUND] = ACTIONS(8835), + }, + [STATE(6793)] = { + [sym_identifier] = ACTIONS(9130), + [sym_newline] = ACTIONS(9132), + [anon_sym_COLON] = ACTIONS(9132), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9130), + [aux_sym_frm_property_statement_token1] = ACTIONS(9130), + [anon_sym_DOT] = ACTIONS(9130), + [anon_sym_BANG] = ACTIONS(9132), + [aux_sym__attribute_identifier_token1] = ACTIONS(9130), + [aux_sym_option_statement_token3] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9130), + [aux_sym_preprocessor_const_token1] = ACTIONS(9130), + [sym_static_modifier] = ACTIONS(9130), + [sym__dim_keyword] = ACTIONS(9130), + [sym__redim_keyword] = ACTIONS(9130), + [aux_sym_get_accessor_token1] = ACTIONS(9130), + [aux_sym_set_accessor_token1] = ACTIONS(9130), + [aux_sym_const_declaration_token1] = ACTIONS(9130), + [anon_sym_LPAREN] = ACTIONS(9132), + [aux_sym_as_type_clause_token2] = ACTIONS(9130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9130), + [aux_sym_visibility_token1] = ACTIONS(9130), + [aux_sym_visibility_token2] = ACTIONS(9130), + [aux_sym_elseif_fragment_token1] = ACTIONS(9130), + [aux_sym_else_fragment_token1] = ACTIONS(9130), + [aux_sym_select_statement_token1] = ACTIONS(9130), + [aux_sym__for_header_token1] = ACTIONS(9130), + [aux_sym_do_statement_token1] = ACTIONS(9130), + [aux_sym_do_condition_token1] = ACTIONS(9130), + [aux_sym_with_statement_token1] = ACTIONS(9130), + [aux_sym_exit_statement_token1] = ACTIONS(9130), + [sym_end_statement] = ACTIONS(9132), + [aux_sym_on_goto_statement_token1] = ACTIONS(9130), + [aux_sym_on_goto_statement_token2] = ACTIONS(9130), + [aux_sym_on_error_statement_token2] = ACTIONS(9130), + [sym__ambiguous_redim_statement] = ACTIONS(9132), + [aux_sym_erase_statement_token1] = ACTIONS(9130), + [aux_sym_open_statement_token1] = ACTIONS(9130), + [aux_sym_file_mode_token2] = ACTIONS(9130), + [aux_sym_file_access_token2] = ACTIONS(9130), + [aux_sym_file_lock_token2] = ACTIONS(9130), + [aux_sym_print_statement_token1] = ACTIONS(9130), + [anon_sym_PLUS] = ACTIONS(9132), + [anon_sym_DASH] = ACTIONS(9130), + [anon_sym_QMARK] = ACTIONS(9132), + [aux_sym_close_statement_token1] = ACTIONS(9130), + [aux_sym_put_statement_token1] = ACTIONS(9130), + [aux_sym_unlock_statement_token1] = ACTIONS(9130), + [aux_sym_seek_statement_token1] = ACTIONS(9130), + [sym_reset_statement] = ACTIONS(9130), + [aux_sym_raise_event_statement_token1] = ACTIONS(9130), + [sym_stop_statement] = ACTIONS(9130), + [sym_beep_statement] = ACTIONS(9130), + [aux_sym_unload_statement_token1] = ACTIONS(9130), + [aux_sym_def_type_statement_token1] = ACTIONS(9130), + [aux_sym_def_type_statement_token2] = ACTIONS(9130), + [aux_sym_def_type_statement_token3] = ACTIONS(9130), + [aux_sym_def_type_statement_token4] = ACTIONS(9130), + [aux_sym_def_type_statement_token5] = ACTIONS(9130), + [aux_sym_def_type_statement_token6] = ACTIONS(9130), + [aux_sym_def_type_statement_token7] = ACTIONS(9130), + [aux_sym_def_type_statement_token8] = ACTIONS(9130), + [aux_sym_def_type_statement_token9] = ACTIONS(9130), + [aux_sym_def_type_statement_token10] = ACTIONS(9130), + [aux_sym_def_type_statement_token11] = ACTIONS(9130), + [aux_sym_def_type_statement_token12] = ACTIONS(9130), + [aux_sym_def_type_statement_token13] = ACTIONS(9130), + [aux_sym_def_type_statement_token14] = ACTIONS(9130), + [aux_sym_call_statement_token1] = ACTIONS(9130), + [sym__ambiguous_call_statement] = ACTIONS(9130), + [aux_sym_addressof_expression_token1] = ACTIONS(9130), + [aux_sym_type_of_expression_token1] = ACTIONS(9130), + [aux_sym_unary_expression_token1] = ACTIONS(9130), + [sym_string_literal] = ACTIONS(9132), + [sym_number_literal] = ACTIONS(9132), + [aux_sym_boolean_literal_token1] = ACTIONS(9130), + [aux_sym_boolean_literal_token2] = ACTIONS(9130), + [sym_nothing_literal] = ACTIONS(9130), + [sym_null_literal] = ACTIONS(9130), + [sym_empty_literal] = ACTIONS(9130), + [sym_date_literal] = ACTIONS(9132), + [anon_sym_POUND] = ACTIONS(9130), + }, + [STATE(6794)] = { + [sym_identifier] = ACTIONS(9134), + [sym_newline] = ACTIONS(9136), + [anon_sym_COLON] = ACTIONS(9136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9134), + [aux_sym_frm_property_statement_token1] = ACTIONS(9134), + [anon_sym_DOT] = ACTIONS(9134), + [anon_sym_BANG] = ACTIONS(9136), + [aux_sym__attribute_identifier_token1] = ACTIONS(9134), + [aux_sym_option_statement_token3] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9134), + [aux_sym_preprocessor_const_token1] = ACTIONS(9134), + [sym_static_modifier] = ACTIONS(9134), + [sym__dim_keyword] = ACTIONS(9134), + [sym__redim_keyword] = ACTIONS(9134), + [aux_sym_get_accessor_token1] = ACTIONS(9134), + [aux_sym_set_accessor_token1] = ACTIONS(9134), + [aux_sym_const_declaration_token1] = ACTIONS(9134), + [anon_sym_LPAREN] = ACTIONS(9136), + [aux_sym_as_type_clause_token2] = ACTIONS(9134), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9134), + [aux_sym_visibility_token1] = ACTIONS(9134), + [aux_sym_visibility_token2] = ACTIONS(9134), + [aux_sym_elseif_fragment_token1] = ACTIONS(9134), + [aux_sym_else_fragment_token1] = ACTIONS(9134), + [aux_sym_select_statement_token1] = ACTIONS(9134), + [aux_sym__for_header_token1] = ACTIONS(9134), + [aux_sym_do_statement_token1] = ACTIONS(9134), + [aux_sym_do_condition_token1] = ACTIONS(9134), + [aux_sym_with_statement_token1] = ACTIONS(9134), + [aux_sym_exit_statement_token1] = ACTIONS(9134), + [sym_end_statement] = ACTIONS(9136), + [aux_sym_on_goto_statement_token1] = ACTIONS(9134), + [aux_sym_on_goto_statement_token2] = ACTIONS(9134), + [aux_sym_on_error_statement_token2] = ACTIONS(9134), + [sym__ambiguous_redim_statement] = ACTIONS(9136), + [aux_sym_erase_statement_token1] = ACTIONS(9134), + [aux_sym_open_statement_token1] = ACTIONS(9134), + [aux_sym_file_mode_token2] = ACTIONS(9134), + [aux_sym_file_access_token2] = ACTIONS(9134), + [aux_sym_file_lock_token2] = ACTIONS(9134), + [aux_sym_print_statement_token1] = ACTIONS(9134), + [anon_sym_PLUS] = ACTIONS(9136), + [anon_sym_DASH] = ACTIONS(9134), + [anon_sym_QMARK] = ACTIONS(9136), + [aux_sym_close_statement_token1] = ACTIONS(9134), + [aux_sym_put_statement_token1] = ACTIONS(9134), + [aux_sym_unlock_statement_token1] = ACTIONS(9134), + [aux_sym_seek_statement_token1] = ACTIONS(9134), + [sym_reset_statement] = ACTIONS(9134), + [aux_sym_raise_event_statement_token1] = ACTIONS(9134), + [sym_stop_statement] = ACTIONS(9134), + [sym_beep_statement] = ACTIONS(9134), + [aux_sym_unload_statement_token1] = ACTIONS(9134), + [aux_sym_def_type_statement_token1] = ACTIONS(9134), + [aux_sym_def_type_statement_token2] = ACTIONS(9134), + [aux_sym_def_type_statement_token3] = ACTIONS(9134), + [aux_sym_def_type_statement_token4] = ACTIONS(9134), + [aux_sym_def_type_statement_token5] = ACTIONS(9134), + [aux_sym_def_type_statement_token6] = ACTIONS(9134), + [aux_sym_def_type_statement_token7] = ACTIONS(9134), + [aux_sym_def_type_statement_token8] = ACTIONS(9134), + [aux_sym_def_type_statement_token9] = ACTIONS(9134), + [aux_sym_def_type_statement_token10] = ACTIONS(9134), + [aux_sym_def_type_statement_token11] = ACTIONS(9134), + [aux_sym_def_type_statement_token12] = ACTIONS(9134), + [aux_sym_def_type_statement_token13] = ACTIONS(9134), + [aux_sym_def_type_statement_token14] = ACTIONS(9134), + [aux_sym_call_statement_token1] = ACTIONS(9134), + [sym__ambiguous_call_statement] = ACTIONS(9134), + [aux_sym_addressof_expression_token1] = ACTIONS(9134), + [aux_sym_type_of_expression_token1] = ACTIONS(9134), + [aux_sym_unary_expression_token1] = ACTIONS(9134), + [sym_string_literal] = ACTIONS(9136), + [sym_number_literal] = ACTIONS(9136), + [aux_sym_boolean_literal_token1] = ACTIONS(9134), + [aux_sym_boolean_literal_token2] = ACTIONS(9134), + [sym_nothing_literal] = ACTIONS(9134), + [sym_null_literal] = ACTIONS(9134), + [sym_empty_literal] = ACTIONS(9134), + [sym_date_literal] = ACTIONS(9136), + [anon_sym_POUND] = ACTIONS(9134), + }, + [STATE(6795)] = { + [sym_identifier] = ACTIONS(8809), + [sym_newline] = ACTIONS(8811), + [anon_sym_COLON] = ACTIONS(8811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8809), + [aux_sym_frm_property_statement_token1] = ACTIONS(8809), + [anon_sym_DOT] = ACTIONS(8809), + [anon_sym_BANG] = ACTIONS(8811), + [aux_sym__attribute_identifier_token1] = ACTIONS(8809), + [aux_sym_option_statement_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8809), + [aux_sym_preprocessor_const_token1] = ACTIONS(8809), + [sym_static_modifier] = ACTIONS(8809), + [sym__dim_keyword] = ACTIONS(8809), + [sym__redim_keyword] = ACTIONS(8809), + [aux_sym_get_accessor_token1] = ACTIONS(8809), + [aux_sym_set_accessor_token1] = ACTIONS(8809), + [aux_sym_const_declaration_token1] = ACTIONS(8809), + [anon_sym_LPAREN] = ACTIONS(8811), + [aux_sym_as_type_clause_token2] = ACTIONS(8809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8809), + [aux_sym_visibility_token1] = ACTIONS(8809), + [aux_sym_visibility_token2] = ACTIONS(8809), + [aux_sym_elseif_fragment_token1] = ACTIONS(8809), + [aux_sym_else_fragment_token1] = ACTIONS(8809), + [aux_sym_select_statement_token1] = ACTIONS(8809), + [aux_sym__for_header_token1] = ACTIONS(8809), + [aux_sym_do_statement_token1] = ACTIONS(8809), + [aux_sym_do_condition_token1] = ACTIONS(8809), + [aux_sym_while_statement_token1] = ACTIONS(8809), + [aux_sym_with_statement_token1] = ACTIONS(8809), + [aux_sym_exit_statement_token1] = ACTIONS(8809), + [sym_end_statement] = ACTIONS(8811), + [aux_sym_on_goto_statement_token1] = ACTIONS(8809), + [aux_sym_on_goto_statement_token2] = ACTIONS(8809), + [aux_sym_on_error_statement_token2] = ACTIONS(8809), + [sym__ambiguous_redim_statement] = ACTIONS(8811), + [aux_sym_erase_statement_token1] = ACTIONS(8809), + [aux_sym_open_statement_token1] = ACTIONS(8809), + [aux_sym_file_mode_token2] = ACTIONS(8809), + [aux_sym_file_access_token2] = ACTIONS(8809), + [aux_sym_file_lock_token2] = ACTIONS(8809), + [aux_sym_print_statement_token1] = ACTIONS(8809), + [anon_sym_PLUS] = ACTIONS(8811), + [anon_sym_DASH] = ACTIONS(8809), + [anon_sym_QMARK] = ACTIONS(8811), + [aux_sym_close_statement_token1] = ACTIONS(8809), + [aux_sym_put_statement_token1] = ACTIONS(8809), + [aux_sym_unlock_statement_token1] = ACTIONS(8809), + [aux_sym_seek_statement_token1] = ACTIONS(8809), + [sym_reset_statement] = ACTIONS(8809), + [aux_sym_raise_event_statement_token1] = ACTIONS(8809), + [sym_stop_statement] = ACTIONS(8809), + [sym_beep_statement] = ACTIONS(8809), + [aux_sym_unload_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token2] = ACTIONS(8809), + [aux_sym_def_type_statement_token3] = ACTIONS(8809), + [aux_sym_def_type_statement_token4] = ACTIONS(8809), + [aux_sym_def_type_statement_token5] = ACTIONS(8809), + [aux_sym_def_type_statement_token6] = ACTIONS(8809), + [aux_sym_def_type_statement_token7] = ACTIONS(8809), + [aux_sym_def_type_statement_token8] = ACTIONS(8809), + [aux_sym_def_type_statement_token9] = ACTIONS(8809), + [aux_sym_def_type_statement_token10] = ACTIONS(8809), + [aux_sym_def_type_statement_token11] = ACTIONS(8809), + [aux_sym_def_type_statement_token12] = ACTIONS(8809), + [aux_sym_def_type_statement_token13] = ACTIONS(8809), + [aux_sym_def_type_statement_token14] = ACTIONS(8809), + [aux_sym_call_statement_token1] = ACTIONS(8809), + [sym__ambiguous_call_statement] = ACTIONS(8809), + [aux_sym_addressof_expression_token1] = ACTIONS(8809), + [aux_sym_type_of_expression_token1] = ACTIONS(8809), + [aux_sym_unary_expression_token1] = ACTIONS(8809), + [sym_string_literal] = ACTIONS(8811), + [sym_number_literal] = ACTIONS(8811), + [aux_sym_boolean_literal_token1] = ACTIONS(8809), + [aux_sym_boolean_literal_token2] = ACTIONS(8809), + [sym_nothing_literal] = ACTIONS(8809), + [sym_null_literal] = ACTIONS(8809), + [sym_empty_literal] = ACTIONS(8809), + [sym_date_literal] = ACTIONS(8811), + [anon_sym_POUND] = ACTIONS(8809), + }, + [STATE(6796)] = { + [sym_identifier] = ACTIONS(8877), + [sym_newline] = ACTIONS(8879), + [anon_sym_COLON] = ACTIONS(8879), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8877), + [aux_sym_frm_property_statement_token1] = ACTIONS(8877), + [anon_sym_DOT] = ACTIONS(8877), + [anon_sym_BANG] = ACTIONS(8879), + [aux_sym__attribute_identifier_token1] = ACTIONS(8877), + [aux_sym_option_statement_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8877), + [aux_sym_preprocessor_const_token1] = ACTIONS(8877), + [sym_static_modifier] = ACTIONS(8877), + [sym__dim_keyword] = ACTIONS(8877), + [sym__redim_keyword] = ACTIONS(8877), + [aux_sym_get_accessor_token1] = ACTIONS(8877), + [aux_sym_set_accessor_token1] = ACTIONS(8877), + [aux_sym_const_declaration_token1] = ACTIONS(8877), + [anon_sym_LPAREN] = ACTIONS(8879), + [aux_sym_as_type_clause_token2] = ACTIONS(8877), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8877), + [aux_sym_visibility_token1] = ACTIONS(8877), + [aux_sym_visibility_token2] = ACTIONS(8877), + [aux_sym_elseif_fragment_token1] = ACTIONS(8877), + [aux_sym_else_fragment_token1] = ACTIONS(8877), + [aux_sym_select_statement_token1] = ACTIONS(8877), + [aux_sym__for_header_token1] = ACTIONS(8877), + [aux_sym_do_statement_token1] = ACTIONS(8877), + [aux_sym_do_condition_token1] = ACTIONS(8877), + [aux_sym_while_statement_token1] = ACTIONS(8877), + [aux_sym_with_statement_token1] = ACTIONS(8877), + [aux_sym_exit_statement_token1] = ACTIONS(8877), + [sym_end_statement] = ACTIONS(8879), + [aux_sym_on_goto_statement_token1] = ACTIONS(8877), + [aux_sym_on_goto_statement_token2] = ACTIONS(8877), + [aux_sym_on_error_statement_token2] = ACTIONS(8877), + [sym__ambiguous_redim_statement] = ACTIONS(8879), + [aux_sym_erase_statement_token1] = ACTIONS(8877), + [aux_sym_open_statement_token1] = ACTIONS(8877), + [aux_sym_file_mode_token2] = ACTIONS(8877), + [aux_sym_file_access_token2] = ACTIONS(8877), + [aux_sym_file_lock_token2] = ACTIONS(8877), + [aux_sym_print_statement_token1] = ACTIONS(8877), + [anon_sym_PLUS] = ACTIONS(8879), + [anon_sym_DASH] = ACTIONS(8877), + [anon_sym_QMARK] = ACTIONS(8879), + [aux_sym_close_statement_token1] = ACTIONS(8877), + [aux_sym_put_statement_token1] = ACTIONS(8877), + [aux_sym_unlock_statement_token1] = ACTIONS(8877), + [aux_sym_seek_statement_token1] = ACTIONS(8877), + [sym_reset_statement] = ACTIONS(8877), + [aux_sym_raise_event_statement_token1] = ACTIONS(8877), + [sym_stop_statement] = ACTIONS(8877), + [sym_beep_statement] = ACTIONS(8877), + [aux_sym_unload_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token2] = ACTIONS(8877), + [aux_sym_def_type_statement_token3] = ACTIONS(8877), + [aux_sym_def_type_statement_token4] = ACTIONS(8877), + [aux_sym_def_type_statement_token5] = ACTIONS(8877), + [aux_sym_def_type_statement_token6] = ACTIONS(8877), + [aux_sym_def_type_statement_token7] = ACTIONS(8877), + [aux_sym_def_type_statement_token8] = ACTIONS(8877), + [aux_sym_def_type_statement_token9] = ACTIONS(8877), + [aux_sym_def_type_statement_token10] = ACTIONS(8877), + [aux_sym_def_type_statement_token11] = ACTIONS(8877), + [aux_sym_def_type_statement_token12] = ACTIONS(8877), + [aux_sym_def_type_statement_token13] = ACTIONS(8877), + [aux_sym_def_type_statement_token14] = ACTIONS(8877), + [aux_sym_call_statement_token1] = ACTIONS(8877), + [sym__ambiguous_call_statement] = ACTIONS(8877), + [aux_sym_addressof_expression_token1] = ACTIONS(8877), + [aux_sym_type_of_expression_token1] = ACTIONS(8877), + [aux_sym_unary_expression_token1] = ACTIONS(8877), + [sym_string_literal] = ACTIONS(8879), + [sym_number_literal] = ACTIONS(8879), + [aux_sym_boolean_literal_token1] = ACTIONS(8877), + [aux_sym_boolean_literal_token2] = ACTIONS(8877), + [sym_nothing_literal] = ACTIONS(8877), + [sym_null_literal] = ACTIONS(8877), + [sym_empty_literal] = ACTIONS(8877), + [sym_date_literal] = ACTIONS(8879), + [anon_sym_POUND] = ACTIONS(8877), + }, + [STATE(6797)] = { + [sym_identifier] = ACTIONS(8907), + [sym_newline] = ACTIONS(8909), + [anon_sym_COLON] = ACTIONS(8909), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8907), + [aux_sym_frm_property_statement_token1] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8907), + [anon_sym_BANG] = ACTIONS(8909), + [aux_sym__attribute_identifier_token1] = ACTIONS(8907), + [aux_sym_option_statement_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8907), + [aux_sym_preprocessor_const_token1] = ACTIONS(8907), + [sym_static_modifier] = ACTIONS(8907), + [sym__dim_keyword] = ACTIONS(8907), + [sym__redim_keyword] = ACTIONS(8907), + [aux_sym_get_accessor_token1] = ACTIONS(8907), + [aux_sym_set_accessor_token1] = ACTIONS(8907), + [aux_sym_const_declaration_token1] = ACTIONS(8907), + [anon_sym_LPAREN] = ACTIONS(8909), + [aux_sym_as_type_clause_token2] = ACTIONS(8907), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8907), + [aux_sym_visibility_token1] = ACTIONS(8907), + [aux_sym_visibility_token2] = ACTIONS(8907), + [aux_sym_elseif_fragment_token1] = ACTIONS(8907), + [aux_sym_else_fragment_token1] = ACTIONS(8907), + [aux_sym_select_statement_token1] = ACTIONS(8907), + [aux_sym__for_header_token1] = ACTIONS(8907), + [aux_sym_do_statement_token1] = ACTIONS(8907), + [aux_sym_do_condition_token1] = ACTIONS(8907), + [aux_sym_while_statement_token1] = ACTIONS(8907), + [aux_sym_with_statement_token1] = ACTIONS(8907), + [aux_sym_exit_statement_token1] = ACTIONS(8907), + [sym_end_statement] = ACTIONS(8909), + [aux_sym_on_goto_statement_token1] = ACTIONS(8907), + [aux_sym_on_goto_statement_token2] = ACTIONS(8907), + [aux_sym_on_error_statement_token2] = ACTIONS(8907), + [sym__ambiguous_redim_statement] = ACTIONS(8909), + [aux_sym_erase_statement_token1] = ACTIONS(8907), + [aux_sym_open_statement_token1] = ACTIONS(8907), + [aux_sym_file_mode_token2] = ACTIONS(8907), + [aux_sym_file_access_token2] = ACTIONS(8907), + [aux_sym_file_lock_token2] = ACTIONS(8907), + [aux_sym_print_statement_token1] = ACTIONS(8907), + [anon_sym_PLUS] = ACTIONS(8909), + [anon_sym_DASH] = ACTIONS(8907), + [anon_sym_QMARK] = ACTIONS(8909), + [aux_sym_close_statement_token1] = ACTIONS(8907), + [aux_sym_put_statement_token1] = ACTIONS(8907), + [aux_sym_unlock_statement_token1] = ACTIONS(8907), + [aux_sym_seek_statement_token1] = ACTIONS(8907), + [sym_reset_statement] = ACTIONS(8907), + [aux_sym_raise_event_statement_token1] = ACTIONS(8907), + [sym_stop_statement] = ACTIONS(8907), + [sym_beep_statement] = ACTIONS(8907), + [aux_sym_unload_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token2] = ACTIONS(8907), + [aux_sym_def_type_statement_token3] = ACTIONS(8907), + [aux_sym_def_type_statement_token4] = ACTIONS(8907), + [aux_sym_def_type_statement_token5] = ACTIONS(8907), + [aux_sym_def_type_statement_token6] = ACTIONS(8907), + [aux_sym_def_type_statement_token7] = ACTIONS(8907), + [aux_sym_def_type_statement_token8] = ACTIONS(8907), + [aux_sym_def_type_statement_token9] = ACTIONS(8907), + [aux_sym_def_type_statement_token10] = ACTIONS(8907), + [aux_sym_def_type_statement_token11] = ACTIONS(8907), + [aux_sym_def_type_statement_token12] = ACTIONS(8907), + [aux_sym_def_type_statement_token13] = ACTIONS(8907), + [aux_sym_def_type_statement_token14] = ACTIONS(8907), + [aux_sym_call_statement_token1] = ACTIONS(8907), + [sym__ambiguous_call_statement] = ACTIONS(8907), + [aux_sym_addressof_expression_token1] = ACTIONS(8907), + [aux_sym_type_of_expression_token1] = ACTIONS(8907), + [aux_sym_unary_expression_token1] = ACTIONS(8907), + [sym_string_literal] = ACTIONS(8909), + [sym_number_literal] = ACTIONS(8909), + [aux_sym_boolean_literal_token1] = ACTIONS(8907), + [aux_sym_boolean_literal_token2] = ACTIONS(8907), + [sym_nothing_literal] = ACTIONS(8907), + [sym_null_literal] = ACTIONS(8907), + [sym_empty_literal] = ACTIONS(8907), + [sym_date_literal] = ACTIONS(8909), + [anon_sym_POUND] = ACTIONS(8907), + }, + [STATE(6798)] = { + [sym_identifier] = ACTIONS(8927), + [sym_newline] = ACTIONS(8929), + [anon_sym_COLON] = ACTIONS(8929), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8927), + [aux_sym_frm_property_statement_token1] = ACTIONS(8927), + [anon_sym_DOT] = ACTIONS(8927), + [anon_sym_BANG] = ACTIONS(8929), + [aux_sym__attribute_identifier_token1] = ACTIONS(8927), + [aux_sym_option_statement_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8927), + [aux_sym_preprocessor_const_token1] = ACTIONS(8927), + [sym_static_modifier] = ACTIONS(8927), + [sym__dim_keyword] = ACTIONS(8927), + [sym__redim_keyword] = ACTIONS(8927), + [aux_sym_get_accessor_token1] = ACTIONS(8927), + [aux_sym_set_accessor_token1] = ACTIONS(8927), + [aux_sym_const_declaration_token1] = ACTIONS(8927), + [anon_sym_LPAREN] = ACTIONS(8929), + [aux_sym_as_type_clause_token2] = ACTIONS(8927), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8927), + [aux_sym_visibility_token1] = ACTIONS(8927), + [aux_sym_visibility_token2] = ACTIONS(8927), + [aux_sym_elseif_fragment_token1] = ACTIONS(8927), + [aux_sym_else_fragment_token1] = ACTIONS(8927), + [aux_sym_select_statement_token1] = ACTIONS(8927), + [aux_sym__for_header_token1] = ACTIONS(8927), + [aux_sym_do_statement_token1] = ACTIONS(8927), + [aux_sym_do_condition_token1] = ACTIONS(8927), + [aux_sym_while_statement_token1] = ACTIONS(8927), + [aux_sym_with_statement_token1] = ACTIONS(8927), + [aux_sym_exit_statement_token1] = ACTIONS(8927), + [sym_end_statement] = ACTIONS(8929), + [aux_sym_on_goto_statement_token1] = ACTIONS(8927), + [aux_sym_on_goto_statement_token2] = ACTIONS(8927), + [aux_sym_on_error_statement_token2] = ACTIONS(8927), + [sym__ambiguous_redim_statement] = ACTIONS(8929), + [aux_sym_erase_statement_token1] = ACTIONS(8927), + [aux_sym_open_statement_token1] = ACTIONS(8927), + [aux_sym_file_mode_token2] = ACTIONS(8927), + [aux_sym_file_access_token2] = ACTIONS(8927), + [aux_sym_file_lock_token2] = ACTIONS(8927), + [aux_sym_print_statement_token1] = ACTIONS(8927), + [anon_sym_PLUS] = ACTIONS(8929), + [anon_sym_DASH] = ACTIONS(8927), + [anon_sym_QMARK] = ACTIONS(8929), + [aux_sym_close_statement_token1] = ACTIONS(8927), + [aux_sym_put_statement_token1] = ACTIONS(8927), + [aux_sym_unlock_statement_token1] = ACTIONS(8927), + [aux_sym_seek_statement_token1] = ACTIONS(8927), + [sym_reset_statement] = ACTIONS(8927), + [aux_sym_raise_event_statement_token1] = ACTIONS(8927), + [sym_stop_statement] = ACTIONS(8927), + [sym_beep_statement] = ACTIONS(8927), + [aux_sym_unload_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token2] = ACTIONS(8927), + [aux_sym_def_type_statement_token3] = ACTIONS(8927), + [aux_sym_def_type_statement_token4] = ACTIONS(8927), + [aux_sym_def_type_statement_token5] = ACTIONS(8927), + [aux_sym_def_type_statement_token6] = ACTIONS(8927), + [aux_sym_def_type_statement_token7] = ACTIONS(8927), + [aux_sym_def_type_statement_token8] = ACTIONS(8927), + [aux_sym_def_type_statement_token9] = ACTIONS(8927), + [aux_sym_def_type_statement_token10] = ACTIONS(8927), + [aux_sym_def_type_statement_token11] = ACTIONS(8927), + [aux_sym_def_type_statement_token12] = ACTIONS(8927), + [aux_sym_def_type_statement_token13] = ACTIONS(8927), + [aux_sym_def_type_statement_token14] = ACTIONS(8927), + [aux_sym_call_statement_token1] = ACTIONS(8927), + [sym__ambiguous_call_statement] = ACTIONS(8927), + [aux_sym_addressof_expression_token1] = ACTIONS(8927), + [aux_sym_type_of_expression_token1] = ACTIONS(8927), + [aux_sym_unary_expression_token1] = ACTIONS(8927), + [sym_string_literal] = ACTIONS(8929), + [sym_number_literal] = ACTIONS(8929), + [aux_sym_boolean_literal_token1] = ACTIONS(8927), + [aux_sym_boolean_literal_token2] = ACTIONS(8927), + [sym_nothing_literal] = ACTIONS(8927), + [sym_null_literal] = ACTIONS(8927), + [sym_empty_literal] = ACTIONS(8927), + [sym_date_literal] = ACTIONS(8929), + [anon_sym_POUND] = ACTIONS(8927), + }, + [STATE(6799)] = { + [sym_identifier] = ACTIONS(8931), + [sym_newline] = ACTIONS(8933), + [anon_sym_COLON] = ACTIONS(8933), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8931), + [aux_sym_frm_property_statement_token1] = ACTIONS(8931), + [anon_sym_DOT] = ACTIONS(8931), + [anon_sym_BANG] = ACTIONS(8933), + [aux_sym__attribute_identifier_token1] = ACTIONS(8931), + [aux_sym_option_statement_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8931), + [aux_sym_preprocessor_const_token1] = ACTIONS(8931), + [sym_static_modifier] = ACTIONS(8931), + [sym__dim_keyword] = ACTIONS(8931), + [sym__redim_keyword] = ACTIONS(8931), + [aux_sym_get_accessor_token1] = ACTIONS(8931), + [aux_sym_set_accessor_token1] = ACTIONS(8931), + [aux_sym_const_declaration_token1] = ACTIONS(8931), + [anon_sym_LPAREN] = ACTIONS(8933), + [aux_sym_as_type_clause_token2] = ACTIONS(8931), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8931), + [aux_sym_visibility_token1] = ACTIONS(8931), + [aux_sym_visibility_token2] = ACTIONS(8931), + [aux_sym_elseif_fragment_token1] = ACTIONS(8931), + [aux_sym_else_fragment_token1] = ACTIONS(8931), + [aux_sym_select_statement_token1] = ACTIONS(8931), + [aux_sym__for_header_token1] = ACTIONS(8931), + [aux_sym_do_statement_token1] = ACTIONS(8931), + [aux_sym_do_condition_token1] = ACTIONS(8931), + [aux_sym_while_statement_token1] = ACTIONS(8931), + [aux_sym_with_statement_token1] = ACTIONS(8931), + [aux_sym_exit_statement_token1] = ACTIONS(8931), + [sym_end_statement] = ACTIONS(8933), + [aux_sym_on_goto_statement_token1] = ACTIONS(8931), + [aux_sym_on_goto_statement_token2] = ACTIONS(8931), + [aux_sym_on_error_statement_token2] = ACTIONS(8931), + [sym__ambiguous_redim_statement] = ACTIONS(8933), + [aux_sym_erase_statement_token1] = ACTIONS(8931), + [aux_sym_open_statement_token1] = ACTIONS(8931), + [aux_sym_file_mode_token2] = ACTIONS(8931), + [aux_sym_file_access_token2] = ACTIONS(8931), + [aux_sym_file_lock_token2] = ACTIONS(8931), + [aux_sym_print_statement_token1] = ACTIONS(8931), + [anon_sym_PLUS] = ACTIONS(8933), + [anon_sym_DASH] = ACTIONS(8931), + [anon_sym_QMARK] = ACTIONS(8933), + [aux_sym_close_statement_token1] = ACTIONS(8931), + [aux_sym_put_statement_token1] = ACTIONS(8931), + [aux_sym_unlock_statement_token1] = ACTIONS(8931), + [aux_sym_seek_statement_token1] = ACTIONS(8931), + [sym_reset_statement] = ACTIONS(8931), + [aux_sym_raise_event_statement_token1] = ACTIONS(8931), + [sym_stop_statement] = ACTIONS(8931), + [sym_beep_statement] = ACTIONS(8931), + [aux_sym_unload_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token2] = ACTIONS(8931), + [aux_sym_def_type_statement_token3] = ACTIONS(8931), + [aux_sym_def_type_statement_token4] = ACTIONS(8931), + [aux_sym_def_type_statement_token5] = ACTIONS(8931), + [aux_sym_def_type_statement_token6] = ACTIONS(8931), + [aux_sym_def_type_statement_token7] = ACTIONS(8931), + [aux_sym_def_type_statement_token8] = ACTIONS(8931), + [aux_sym_def_type_statement_token9] = ACTIONS(8931), + [aux_sym_def_type_statement_token10] = ACTIONS(8931), + [aux_sym_def_type_statement_token11] = ACTIONS(8931), + [aux_sym_def_type_statement_token12] = ACTIONS(8931), + [aux_sym_def_type_statement_token13] = ACTIONS(8931), + [aux_sym_def_type_statement_token14] = ACTIONS(8931), + [aux_sym_call_statement_token1] = ACTIONS(8931), + [sym__ambiguous_call_statement] = ACTIONS(8931), + [aux_sym_addressof_expression_token1] = ACTIONS(8931), + [aux_sym_type_of_expression_token1] = ACTIONS(8931), + [aux_sym_unary_expression_token1] = ACTIONS(8931), + [sym_string_literal] = ACTIONS(8933), + [sym_number_literal] = ACTIONS(8933), + [aux_sym_boolean_literal_token1] = ACTIONS(8931), + [aux_sym_boolean_literal_token2] = ACTIONS(8931), + [sym_nothing_literal] = ACTIONS(8931), + [sym_null_literal] = ACTIONS(8931), + [sym_empty_literal] = ACTIONS(8931), + [sym_date_literal] = ACTIONS(8933), + [anon_sym_POUND] = ACTIONS(8931), + }, + [STATE(6800)] = { + [sym_identifier] = ACTIONS(9413), + [sym_newline] = ACTIONS(9415), + [anon_sym_COLON] = ACTIONS(9415), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9413), + [aux_sym_frm_property_statement_token1] = ACTIONS(9413), + [anon_sym_DOT] = ACTIONS(9413), + [anon_sym_BANG] = ACTIONS(9415), + [aux_sym__attribute_identifier_token1] = ACTIONS(9413), + [aux_sym_option_statement_token3] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9413), + [aux_sym_preprocessor_const_token1] = ACTIONS(9413), + [sym_static_modifier] = ACTIONS(9413), + [sym__dim_keyword] = ACTIONS(9413), + [sym__redim_keyword] = ACTIONS(9413), + [aux_sym_get_accessor_token1] = ACTIONS(9413), + [aux_sym_set_accessor_token1] = ACTIONS(9413), + [aux_sym_const_declaration_token1] = ACTIONS(9413), + [anon_sym_LPAREN] = ACTIONS(9415), + [aux_sym_as_type_clause_token2] = ACTIONS(9413), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9413), + [aux_sym_visibility_token1] = ACTIONS(9413), + [aux_sym_visibility_token2] = ACTIONS(9413), + [aux_sym_elseif_fragment_token1] = ACTIONS(9413), + [aux_sym_else_fragment_token1] = ACTIONS(9413), + [aux_sym_select_statement_token1] = ACTIONS(9413), + [aux_sym_select_statement_token2] = ACTIONS(9413), + [aux_sym__for_header_token1] = ACTIONS(9413), + [aux_sym_do_statement_token1] = ACTIONS(9413), + [aux_sym_do_condition_token1] = ACTIONS(9413), + [aux_sym_with_statement_token1] = ACTIONS(9413), + [aux_sym_exit_statement_token1] = ACTIONS(9413), + [sym_end_statement] = ACTIONS(9415), + [aux_sym_on_goto_statement_token1] = ACTIONS(9413), + [aux_sym_on_goto_statement_token2] = ACTIONS(9413), + [aux_sym_on_error_statement_token2] = ACTIONS(9413), + [sym__ambiguous_redim_statement] = ACTIONS(9415), + [aux_sym_erase_statement_token1] = ACTIONS(9413), + [aux_sym_open_statement_token1] = ACTIONS(9413), + [aux_sym_file_mode_token2] = ACTIONS(9413), + [aux_sym_file_access_token2] = ACTIONS(9413), + [aux_sym_file_lock_token2] = ACTIONS(9413), + [aux_sym_print_statement_token1] = ACTIONS(9413), + [anon_sym_PLUS] = ACTIONS(9415), + [anon_sym_DASH] = ACTIONS(9413), + [anon_sym_QMARK] = ACTIONS(9415), + [aux_sym_close_statement_token1] = ACTIONS(9413), + [aux_sym_put_statement_token1] = ACTIONS(9413), + [aux_sym_unlock_statement_token1] = ACTIONS(9413), + [aux_sym_seek_statement_token1] = ACTIONS(9413), + [sym_reset_statement] = ACTIONS(9413), + [aux_sym_raise_event_statement_token1] = ACTIONS(9413), + [sym_stop_statement] = ACTIONS(9413), + [sym_beep_statement] = ACTIONS(9413), + [aux_sym_unload_statement_token1] = ACTIONS(9413), + [aux_sym_def_type_statement_token1] = ACTIONS(9413), + [aux_sym_def_type_statement_token2] = ACTIONS(9413), + [aux_sym_def_type_statement_token3] = ACTIONS(9413), + [aux_sym_def_type_statement_token4] = ACTIONS(9413), + [aux_sym_def_type_statement_token5] = ACTIONS(9413), + [aux_sym_def_type_statement_token6] = ACTIONS(9413), + [aux_sym_def_type_statement_token7] = ACTIONS(9413), + [aux_sym_def_type_statement_token8] = ACTIONS(9413), + [aux_sym_def_type_statement_token9] = ACTIONS(9413), + [aux_sym_def_type_statement_token10] = ACTIONS(9413), + [aux_sym_def_type_statement_token11] = ACTIONS(9413), + [aux_sym_def_type_statement_token12] = ACTIONS(9413), + [aux_sym_def_type_statement_token13] = ACTIONS(9413), + [aux_sym_def_type_statement_token14] = ACTIONS(9413), + [aux_sym_call_statement_token1] = ACTIONS(9413), + [sym__ambiguous_call_statement] = ACTIONS(9413), + [aux_sym_addressof_expression_token1] = ACTIONS(9413), + [aux_sym_type_of_expression_token1] = ACTIONS(9413), + [aux_sym_unary_expression_token1] = ACTIONS(9413), + [sym_string_literal] = ACTIONS(9415), + [sym_number_literal] = ACTIONS(9415), + [aux_sym_boolean_literal_token1] = ACTIONS(9413), + [aux_sym_boolean_literal_token2] = ACTIONS(9413), + [sym_nothing_literal] = ACTIONS(9413), + [sym_null_literal] = ACTIONS(9413), + [sym_empty_literal] = ACTIONS(9413), + [sym_date_literal] = ACTIONS(9415), + [anon_sym_POUND] = ACTIONS(9413), + }, + [STATE(6801)] = { + [sym_identifier] = ACTIONS(8443), + [sym_newline] = ACTIONS(8445), + [anon_sym_COLON] = ACTIONS(8445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8443), + [aux_sym_frm_property_statement_token1] = ACTIONS(8443), + [anon_sym_DOT] = ACTIONS(8443), + [anon_sym_BANG] = ACTIONS(8445), + [aux_sym__attribute_identifier_token1] = ACTIONS(8443), + [aux_sym_option_statement_token3] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8443), + [aux_sym_preprocessor_const_token1] = ACTIONS(8443), + [sym_static_modifier] = ACTIONS(8443), + [sym__dim_keyword] = ACTIONS(8443), + [sym__redim_keyword] = ACTIONS(8443), + [aux_sym_get_accessor_token1] = ACTIONS(8443), + [aux_sym_set_accessor_token1] = ACTIONS(8443), + [anon_sym_COMMA] = ACTIONS(8445), + [aux_sym_const_declaration_token1] = ACTIONS(8443), + [anon_sym_LPAREN] = ACTIONS(8445), + [aux_sym_as_type_clause_token2] = ACTIONS(8443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8443), + [aux_sym_visibility_token1] = ACTIONS(8443), + [aux_sym_visibility_token2] = ACTIONS(8443), + [aux_sym_elseif_fragment_token1] = ACTIONS(8443), + [aux_sym_else_fragment_token1] = ACTIONS(8443), + [aux_sym_select_statement_token1] = ACTIONS(8443), + [aux_sym__for_header_token1] = ACTIONS(8443), + [aux_sym_do_statement_token1] = ACTIONS(8443), + [aux_sym_do_condition_token1] = ACTIONS(8443), + [aux_sym_with_statement_token1] = ACTIONS(8443), + [aux_sym_exit_statement_token1] = ACTIONS(8443), + [sym_end_statement] = ACTIONS(8445), + [aux_sym_on_goto_statement_token1] = ACTIONS(8443), + [aux_sym_on_goto_statement_token2] = ACTIONS(8443), + [aux_sym_on_error_statement_token2] = ACTIONS(8443), + [sym__ambiguous_redim_statement] = ACTIONS(8445), + [aux_sym_erase_statement_token1] = ACTIONS(8443), + [aux_sym_open_statement_token1] = ACTIONS(8443), + [aux_sym_file_mode_token2] = ACTIONS(8443), + [aux_sym_file_access_token2] = ACTIONS(8443), + [aux_sym_file_lock_token2] = ACTIONS(8443), + [aux_sym_print_statement_token1] = ACTIONS(8443), + [anon_sym_PLUS] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8443), + [anon_sym_QMARK] = ACTIONS(8445), + [aux_sym_close_statement_token1] = ACTIONS(8443), + [aux_sym_put_statement_token1] = ACTIONS(8443), + [aux_sym_unlock_statement_token1] = ACTIONS(8443), + [aux_sym_seek_statement_token1] = ACTIONS(8443), + [sym_reset_statement] = ACTIONS(8443), + [aux_sym_raise_event_statement_token1] = ACTIONS(8443), + [sym_stop_statement] = ACTIONS(8443), + [sym_beep_statement] = ACTIONS(8443), + [aux_sym_unload_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token1] = ACTIONS(8443), + [aux_sym_def_type_statement_token2] = ACTIONS(8443), + [aux_sym_def_type_statement_token3] = ACTIONS(8443), + [aux_sym_def_type_statement_token4] = ACTIONS(8443), + [aux_sym_def_type_statement_token5] = ACTIONS(8443), + [aux_sym_def_type_statement_token6] = ACTIONS(8443), + [aux_sym_def_type_statement_token7] = ACTIONS(8443), + [aux_sym_def_type_statement_token8] = ACTIONS(8443), + [aux_sym_def_type_statement_token9] = ACTIONS(8443), + [aux_sym_def_type_statement_token10] = ACTIONS(8443), + [aux_sym_def_type_statement_token11] = ACTIONS(8443), + [aux_sym_def_type_statement_token12] = ACTIONS(8443), + [aux_sym_def_type_statement_token13] = ACTIONS(8443), + [aux_sym_def_type_statement_token14] = ACTIONS(8443), + [aux_sym_call_statement_token1] = ACTIONS(8443), + [sym__ambiguous_call_statement] = ACTIONS(8443), + [aux_sym_addressof_expression_token1] = ACTIONS(8443), + [aux_sym_type_of_expression_token1] = ACTIONS(8443), + [aux_sym_unary_expression_token1] = ACTIONS(8443), + [sym_string_literal] = ACTIONS(8445), + [sym_number_literal] = ACTIONS(8445), + [aux_sym_boolean_literal_token1] = ACTIONS(8443), + [aux_sym_boolean_literal_token2] = ACTIONS(8443), + [sym_nothing_literal] = ACTIONS(8443), + [sym_null_literal] = ACTIONS(8443), + [sym_empty_literal] = ACTIONS(8443), + [sym_date_literal] = ACTIONS(8445), + [anon_sym_POUND] = ACTIONS(8443), + }, + [STATE(6802)] = { + [sym_identifier] = ACTIONS(9556), + [sym_newline] = ACTIONS(9558), + [anon_sym_COLON] = ACTIONS(9558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9556), + [aux_sym_frm_property_statement_token1] = ACTIONS(9556), + [anon_sym_DOT] = ACTIONS(9556), + [anon_sym_BANG] = ACTIONS(9558), + [aux_sym__attribute_identifier_token1] = ACTIONS(9556), + [aux_sym_option_statement_token3] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9556), + [aux_sym_preprocessor_const_token1] = ACTIONS(9556), + [sym_static_modifier] = ACTIONS(9556), + [sym__dim_keyword] = ACTIONS(9556), + [sym__redim_keyword] = ACTIONS(9556), + [aux_sym_get_accessor_token1] = ACTIONS(9556), + [aux_sym_set_accessor_token1] = ACTIONS(9556), + [aux_sym_const_declaration_token1] = ACTIONS(9556), + [anon_sym_LPAREN] = ACTIONS(9558), + [aux_sym_as_type_clause_token2] = ACTIONS(9556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9556), + [aux_sym_visibility_token1] = ACTIONS(9556), + [aux_sym_visibility_token2] = ACTIONS(9556), + [aux_sym_elseif_fragment_token1] = ACTIONS(9556), + [aux_sym_else_fragment_token1] = ACTIONS(9556), + [aux_sym_select_statement_token1] = ACTIONS(9556), + [aux_sym_select_statement_token2] = ACTIONS(9556), + [aux_sym__for_header_token1] = ACTIONS(9556), + [aux_sym_do_statement_token1] = ACTIONS(9556), + [aux_sym_do_condition_token1] = ACTIONS(9556), + [aux_sym_with_statement_token1] = ACTIONS(9556), + [aux_sym_exit_statement_token1] = ACTIONS(9556), + [sym_end_statement] = ACTIONS(9558), + [aux_sym_on_goto_statement_token1] = ACTIONS(9556), + [aux_sym_on_goto_statement_token2] = ACTIONS(9556), + [aux_sym_on_error_statement_token2] = ACTIONS(9556), + [sym__ambiguous_redim_statement] = ACTIONS(9558), + [aux_sym_erase_statement_token1] = ACTIONS(9556), + [aux_sym_open_statement_token1] = ACTIONS(9556), + [aux_sym_file_mode_token2] = ACTIONS(9556), + [aux_sym_file_access_token2] = ACTIONS(9556), + [aux_sym_file_lock_token2] = ACTIONS(9556), + [aux_sym_print_statement_token1] = ACTIONS(9556), + [anon_sym_PLUS] = ACTIONS(9558), + [anon_sym_DASH] = ACTIONS(9556), + [anon_sym_QMARK] = ACTIONS(9558), + [aux_sym_close_statement_token1] = ACTIONS(9556), + [aux_sym_put_statement_token1] = ACTIONS(9556), + [aux_sym_unlock_statement_token1] = ACTIONS(9556), + [aux_sym_seek_statement_token1] = ACTIONS(9556), + [sym_reset_statement] = ACTIONS(9556), + [aux_sym_raise_event_statement_token1] = ACTIONS(9556), + [sym_stop_statement] = ACTIONS(9556), + [sym_beep_statement] = ACTIONS(9556), + [aux_sym_unload_statement_token1] = ACTIONS(9556), + [aux_sym_def_type_statement_token1] = ACTIONS(9556), + [aux_sym_def_type_statement_token2] = ACTIONS(9556), + [aux_sym_def_type_statement_token3] = ACTIONS(9556), + [aux_sym_def_type_statement_token4] = ACTIONS(9556), + [aux_sym_def_type_statement_token5] = ACTIONS(9556), + [aux_sym_def_type_statement_token6] = ACTIONS(9556), + [aux_sym_def_type_statement_token7] = ACTIONS(9556), + [aux_sym_def_type_statement_token8] = ACTIONS(9556), + [aux_sym_def_type_statement_token9] = ACTIONS(9556), + [aux_sym_def_type_statement_token10] = ACTIONS(9556), + [aux_sym_def_type_statement_token11] = ACTIONS(9556), + [aux_sym_def_type_statement_token12] = ACTIONS(9556), + [aux_sym_def_type_statement_token13] = ACTIONS(9556), + [aux_sym_def_type_statement_token14] = ACTIONS(9556), + [aux_sym_call_statement_token1] = ACTIONS(9556), + [sym__ambiguous_call_statement] = ACTIONS(9556), + [aux_sym_addressof_expression_token1] = ACTIONS(9556), + [aux_sym_type_of_expression_token1] = ACTIONS(9556), + [aux_sym_unary_expression_token1] = ACTIONS(9556), + [sym_string_literal] = ACTIONS(9558), + [sym_number_literal] = ACTIONS(9558), + [aux_sym_boolean_literal_token1] = ACTIONS(9556), + [aux_sym_boolean_literal_token2] = ACTIONS(9556), + [sym_nothing_literal] = ACTIONS(9556), + [sym_null_literal] = ACTIONS(9556), + [sym_empty_literal] = ACTIONS(9556), + [sym_date_literal] = ACTIONS(9558), + [anon_sym_POUND] = ACTIONS(9556), + }, + [STATE(6803)] = { + [sym_identifier] = ACTIONS(9176), + [sym_newline] = ACTIONS(9178), + [anon_sym_COLON] = ACTIONS(9178), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9176), + [aux_sym_frm_property_statement_token1] = ACTIONS(9176), + [anon_sym_DOT] = ACTIONS(9176), + [anon_sym_BANG] = ACTIONS(9178), + [aux_sym__attribute_identifier_token1] = ACTIONS(9176), + [aux_sym_option_statement_token3] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9176), + [aux_sym_preprocessor_const_token1] = ACTIONS(9176), + [sym_static_modifier] = ACTIONS(9176), + [sym__dim_keyword] = ACTIONS(9176), + [sym__redim_keyword] = ACTIONS(9176), + [aux_sym_get_accessor_token1] = ACTIONS(9176), + [aux_sym_set_accessor_token1] = ACTIONS(9176), + [aux_sym_const_declaration_token1] = ACTIONS(9176), + [anon_sym_LPAREN] = ACTIONS(9178), + [aux_sym_as_type_clause_token2] = ACTIONS(9176), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9176), + [aux_sym_visibility_token1] = ACTIONS(9176), + [aux_sym_visibility_token2] = ACTIONS(9176), + [aux_sym_elseif_fragment_token1] = ACTIONS(9176), + [aux_sym_else_fragment_token1] = ACTIONS(9176), + [aux_sym_select_statement_token1] = ACTIONS(9176), + [aux_sym__for_header_token1] = ACTIONS(9176), + [aux_sym_do_statement_token1] = ACTIONS(9176), + [aux_sym_do_condition_token1] = ACTIONS(9176), + [aux_sym_while_statement_token1] = ACTIONS(9176), + [aux_sym_with_statement_token1] = ACTIONS(9176), + [aux_sym_exit_statement_token1] = ACTIONS(9176), + [sym_end_statement] = ACTIONS(9178), + [aux_sym_on_goto_statement_token1] = ACTIONS(9176), + [aux_sym_on_goto_statement_token2] = ACTIONS(9176), + [aux_sym_on_error_statement_token2] = ACTIONS(9176), + [sym__ambiguous_redim_statement] = ACTIONS(9178), + [aux_sym_erase_statement_token1] = ACTIONS(9176), + [aux_sym_open_statement_token1] = ACTIONS(9176), + [aux_sym_file_mode_token2] = ACTIONS(9176), + [aux_sym_file_access_token2] = ACTIONS(9176), + [aux_sym_file_lock_token2] = ACTIONS(9176), + [aux_sym_print_statement_token1] = ACTIONS(9176), + [anon_sym_PLUS] = ACTIONS(9178), + [anon_sym_DASH] = ACTIONS(9176), + [anon_sym_QMARK] = ACTIONS(9178), + [aux_sym_close_statement_token1] = ACTIONS(9176), + [aux_sym_put_statement_token1] = ACTIONS(9176), + [aux_sym_unlock_statement_token1] = ACTIONS(9176), + [aux_sym_seek_statement_token1] = ACTIONS(9176), + [sym_reset_statement] = ACTIONS(9176), + [aux_sym_raise_event_statement_token1] = ACTIONS(9176), + [sym_stop_statement] = ACTIONS(9176), + [sym_beep_statement] = ACTIONS(9176), + [aux_sym_unload_statement_token1] = ACTIONS(9176), + [aux_sym_def_type_statement_token1] = ACTIONS(9176), + [aux_sym_def_type_statement_token2] = ACTIONS(9176), + [aux_sym_def_type_statement_token3] = ACTIONS(9176), + [aux_sym_def_type_statement_token4] = ACTIONS(9176), + [aux_sym_def_type_statement_token5] = ACTIONS(9176), + [aux_sym_def_type_statement_token6] = ACTIONS(9176), + [aux_sym_def_type_statement_token7] = ACTIONS(9176), + [aux_sym_def_type_statement_token8] = ACTIONS(9176), + [aux_sym_def_type_statement_token9] = ACTIONS(9176), + [aux_sym_def_type_statement_token10] = ACTIONS(9176), + [aux_sym_def_type_statement_token11] = ACTIONS(9176), + [aux_sym_def_type_statement_token12] = ACTIONS(9176), + [aux_sym_def_type_statement_token13] = ACTIONS(9176), + [aux_sym_def_type_statement_token14] = ACTIONS(9176), + [aux_sym_call_statement_token1] = ACTIONS(9176), + [sym__ambiguous_call_statement] = ACTIONS(9176), + [aux_sym_addressof_expression_token1] = ACTIONS(9176), + [aux_sym_type_of_expression_token1] = ACTIONS(9176), + [aux_sym_unary_expression_token1] = ACTIONS(9176), + [sym_string_literal] = ACTIONS(9178), + [sym_number_literal] = ACTIONS(9178), + [aux_sym_boolean_literal_token1] = ACTIONS(9176), + [aux_sym_boolean_literal_token2] = ACTIONS(9176), + [sym_nothing_literal] = ACTIONS(9176), + [sym_null_literal] = ACTIONS(9176), + [sym_empty_literal] = ACTIONS(9176), + [sym_date_literal] = ACTIONS(9178), + [anon_sym_POUND] = ACTIONS(9176), + }, + [STATE(6804)] = { + [sym_identifier] = ACTIONS(9180), + [sym_newline] = ACTIONS(9182), + [anon_sym_COLON] = ACTIONS(9182), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9180), + [aux_sym_frm_property_statement_token1] = ACTIONS(9180), + [anon_sym_DOT] = ACTIONS(9180), + [anon_sym_BANG] = ACTIONS(9182), + [aux_sym__attribute_identifier_token1] = ACTIONS(9180), + [aux_sym_option_statement_token3] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9180), + [aux_sym_preprocessor_const_token1] = ACTIONS(9180), + [sym_static_modifier] = ACTIONS(9180), + [sym__dim_keyword] = ACTIONS(9180), + [sym__redim_keyword] = ACTIONS(9180), + [aux_sym_get_accessor_token1] = ACTIONS(9180), + [aux_sym_set_accessor_token1] = ACTIONS(9180), + [aux_sym_const_declaration_token1] = ACTIONS(9180), + [anon_sym_LPAREN] = ACTIONS(9182), + [aux_sym_as_type_clause_token2] = ACTIONS(9180), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9180), + [aux_sym_visibility_token1] = ACTIONS(9180), + [aux_sym_visibility_token2] = ACTIONS(9180), + [aux_sym_elseif_fragment_token1] = ACTIONS(9180), + [aux_sym_else_fragment_token1] = ACTIONS(9180), + [aux_sym_select_statement_token1] = ACTIONS(9180), + [aux_sym__for_header_token1] = ACTIONS(9180), + [aux_sym_do_statement_token1] = ACTIONS(9180), + [aux_sym_do_condition_token1] = ACTIONS(9180), + [aux_sym_while_statement_token1] = ACTIONS(9180), + [aux_sym_with_statement_token1] = ACTIONS(9180), + [aux_sym_exit_statement_token1] = ACTIONS(9180), + [sym_end_statement] = ACTIONS(9182), + [aux_sym_on_goto_statement_token1] = ACTIONS(9180), + [aux_sym_on_goto_statement_token2] = ACTIONS(9180), + [aux_sym_on_error_statement_token2] = ACTIONS(9180), + [sym__ambiguous_redim_statement] = ACTIONS(9182), + [aux_sym_erase_statement_token1] = ACTIONS(9180), + [aux_sym_open_statement_token1] = ACTIONS(9180), + [aux_sym_file_mode_token2] = ACTIONS(9180), + [aux_sym_file_access_token2] = ACTIONS(9180), + [aux_sym_file_lock_token2] = ACTIONS(9180), + [aux_sym_print_statement_token1] = ACTIONS(9180), + [anon_sym_PLUS] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9180), + [anon_sym_QMARK] = ACTIONS(9182), + [aux_sym_close_statement_token1] = ACTIONS(9180), + [aux_sym_put_statement_token1] = ACTIONS(9180), + [aux_sym_unlock_statement_token1] = ACTIONS(9180), + [aux_sym_seek_statement_token1] = ACTIONS(9180), + [sym_reset_statement] = ACTIONS(9180), + [aux_sym_raise_event_statement_token1] = ACTIONS(9180), + [sym_stop_statement] = ACTIONS(9180), + [sym_beep_statement] = ACTIONS(9180), + [aux_sym_unload_statement_token1] = ACTIONS(9180), + [aux_sym_def_type_statement_token1] = ACTIONS(9180), + [aux_sym_def_type_statement_token2] = ACTIONS(9180), + [aux_sym_def_type_statement_token3] = ACTIONS(9180), + [aux_sym_def_type_statement_token4] = ACTIONS(9180), + [aux_sym_def_type_statement_token5] = ACTIONS(9180), + [aux_sym_def_type_statement_token6] = ACTIONS(9180), + [aux_sym_def_type_statement_token7] = ACTIONS(9180), + [aux_sym_def_type_statement_token8] = ACTIONS(9180), + [aux_sym_def_type_statement_token9] = ACTIONS(9180), + [aux_sym_def_type_statement_token10] = ACTIONS(9180), + [aux_sym_def_type_statement_token11] = ACTIONS(9180), + [aux_sym_def_type_statement_token12] = ACTIONS(9180), + [aux_sym_def_type_statement_token13] = ACTIONS(9180), + [aux_sym_def_type_statement_token14] = ACTIONS(9180), + [aux_sym_call_statement_token1] = ACTIONS(9180), + [sym__ambiguous_call_statement] = ACTIONS(9180), + [aux_sym_addressof_expression_token1] = ACTIONS(9180), + [aux_sym_type_of_expression_token1] = ACTIONS(9180), + [aux_sym_unary_expression_token1] = ACTIONS(9180), + [sym_string_literal] = ACTIONS(9182), + [sym_number_literal] = ACTIONS(9182), + [aux_sym_boolean_literal_token1] = ACTIONS(9180), + [aux_sym_boolean_literal_token2] = ACTIONS(9180), + [sym_nothing_literal] = ACTIONS(9180), + [sym_null_literal] = ACTIONS(9180), + [sym_empty_literal] = ACTIONS(9180), + [sym_date_literal] = ACTIONS(9182), + [anon_sym_POUND] = ACTIONS(9180), + }, + [STATE(6805)] = { + [sym_identifier] = ACTIONS(9560), + [sym_newline] = ACTIONS(9562), + [anon_sym_COLON] = ACTIONS(9562), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9560), + [aux_sym_frm_property_statement_token1] = ACTIONS(9560), + [anon_sym_DOT] = ACTIONS(9560), + [anon_sym_BANG] = ACTIONS(9562), + [aux_sym__attribute_identifier_token1] = ACTIONS(9560), + [aux_sym_option_statement_token3] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9560), + [aux_sym_preprocessor_const_token1] = ACTIONS(9560), + [sym_static_modifier] = ACTIONS(9560), + [sym__dim_keyword] = ACTIONS(9560), + [sym__redim_keyword] = ACTIONS(9560), + [aux_sym_get_accessor_token1] = ACTIONS(9560), + [aux_sym_set_accessor_token1] = ACTIONS(9560), + [aux_sym_const_declaration_token1] = ACTIONS(9560), + [anon_sym_LPAREN] = ACTIONS(9562), + [aux_sym_as_type_clause_token2] = ACTIONS(9560), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9560), + [aux_sym_visibility_token1] = ACTIONS(9560), + [aux_sym_visibility_token2] = ACTIONS(9560), + [aux_sym_elseif_fragment_token1] = ACTIONS(9560), + [aux_sym_else_fragment_token1] = ACTIONS(9560), + [aux_sym_select_statement_token1] = ACTIONS(9560), + [aux_sym_select_statement_token2] = ACTIONS(9560), + [aux_sym__for_header_token1] = ACTIONS(9560), + [aux_sym_do_statement_token1] = ACTIONS(9560), + [aux_sym_do_condition_token1] = ACTIONS(9560), + [aux_sym_with_statement_token1] = ACTIONS(9560), + [aux_sym_exit_statement_token1] = ACTIONS(9560), + [sym_end_statement] = ACTIONS(9562), + [aux_sym_on_goto_statement_token1] = ACTIONS(9560), + [aux_sym_on_goto_statement_token2] = ACTIONS(9560), + [aux_sym_on_error_statement_token2] = ACTIONS(9560), + [sym__ambiguous_redim_statement] = ACTIONS(9562), + [aux_sym_erase_statement_token1] = ACTIONS(9560), + [aux_sym_open_statement_token1] = ACTIONS(9560), + [aux_sym_file_mode_token2] = ACTIONS(9560), + [aux_sym_file_access_token2] = ACTIONS(9560), + [aux_sym_file_lock_token2] = ACTIONS(9560), + [aux_sym_print_statement_token1] = ACTIONS(9560), + [anon_sym_PLUS] = ACTIONS(9562), + [anon_sym_DASH] = ACTIONS(9560), + [anon_sym_QMARK] = ACTIONS(9562), + [aux_sym_close_statement_token1] = ACTIONS(9560), + [aux_sym_put_statement_token1] = ACTIONS(9560), + [aux_sym_unlock_statement_token1] = ACTIONS(9560), + [aux_sym_seek_statement_token1] = ACTIONS(9560), + [sym_reset_statement] = ACTIONS(9560), + [aux_sym_raise_event_statement_token1] = ACTIONS(9560), + [sym_stop_statement] = ACTIONS(9560), + [sym_beep_statement] = ACTIONS(9560), + [aux_sym_unload_statement_token1] = ACTIONS(9560), + [aux_sym_def_type_statement_token1] = ACTIONS(9560), + [aux_sym_def_type_statement_token2] = ACTIONS(9560), + [aux_sym_def_type_statement_token3] = ACTIONS(9560), + [aux_sym_def_type_statement_token4] = ACTIONS(9560), + [aux_sym_def_type_statement_token5] = ACTIONS(9560), + [aux_sym_def_type_statement_token6] = ACTIONS(9560), + [aux_sym_def_type_statement_token7] = ACTIONS(9560), + [aux_sym_def_type_statement_token8] = ACTIONS(9560), + [aux_sym_def_type_statement_token9] = ACTIONS(9560), + [aux_sym_def_type_statement_token10] = ACTIONS(9560), + [aux_sym_def_type_statement_token11] = ACTIONS(9560), + [aux_sym_def_type_statement_token12] = ACTIONS(9560), + [aux_sym_def_type_statement_token13] = ACTIONS(9560), + [aux_sym_def_type_statement_token14] = ACTIONS(9560), + [aux_sym_call_statement_token1] = ACTIONS(9560), + [sym__ambiguous_call_statement] = ACTIONS(9560), + [aux_sym_addressof_expression_token1] = ACTIONS(9560), + [aux_sym_type_of_expression_token1] = ACTIONS(9560), + [aux_sym_unary_expression_token1] = ACTIONS(9560), + [sym_string_literal] = ACTIONS(9562), + [sym_number_literal] = ACTIONS(9562), + [aux_sym_boolean_literal_token1] = ACTIONS(9560), + [aux_sym_boolean_literal_token2] = ACTIONS(9560), + [sym_nothing_literal] = ACTIONS(9560), + [sym_null_literal] = ACTIONS(9560), + [sym_empty_literal] = ACTIONS(9560), + [sym_date_literal] = ACTIONS(9562), + [anon_sym_POUND] = ACTIONS(9560), + }, + [STATE(6806)] = { + [sym_identifier] = ACTIONS(9184), + [sym_newline] = ACTIONS(9186), + [anon_sym_COLON] = ACTIONS(9186), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9184), + [aux_sym_frm_property_statement_token1] = ACTIONS(9184), + [anon_sym_DOT] = ACTIONS(9184), + [anon_sym_BANG] = ACTIONS(9186), + [aux_sym__attribute_identifier_token1] = ACTIONS(9184), + [aux_sym_option_statement_token3] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9184), + [aux_sym_preprocessor_const_token1] = ACTIONS(9184), + [sym_static_modifier] = ACTIONS(9184), + [sym__dim_keyword] = ACTIONS(9184), + [sym__redim_keyword] = ACTIONS(9184), + [aux_sym_get_accessor_token1] = ACTIONS(9184), + [aux_sym_set_accessor_token1] = ACTIONS(9184), + [aux_sym_const_declaration_token1] = ACTIONS(9184), + [anon_sym_LPAREN] = ACTIONS(9186), + [aux_sym_as_type_clause_token2] = ACTIONS(9184), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9184), + [aux_sym_visibility_token1] = ACTIONS(9184), + [aux_sym_visibility_token2] = ACTIONS(9184), + [aux_sym_elseif_fragment_token1] = ACTIONS(9184), + [aux_sym_else_fragment_token1] = ACTIONS(9184), + [aux_sym_select_statement_token1] = ACTIONS(9184), + [aux_sym__for_header_token1] = ACTIONS(9184), + [aux_sym_do_statement_token1] = ACTIONS(9184), + [aux_sym_do_condition_token1] = ACTIONS(9184), + [aux_sym_while_statement_token1] = ACTIONS(9184), + [aux_sym_with_statement_token1] = ACTIONS(9184), + [aux_sym_exit_statement_token1] = ACTIONS(9184), + [sym_end_statement] = ACTIONS(9186), + [aux_sym_on_goto_statement_token1] = ACTIONS(9184), + [aux_sym_on_goto_statement_token2] = ACTIONS(9184), + [aux_sym_on_error_statement_token2] = ACTIONS(9184), + [sym__ambiguous_redim_statement] = ACTIONS(9186), + [aux_sym_erase_statement_token1] = ACTIONS(9184), + [aux_sym_open_statement_token1] = ACTIONS(9184), + [aux_sym_file_mode_token2] = ACTIONS(9184), + [aux_sym_file_access_token2] = ACTIONS(9184), + [aux_sym_file_lock_token2] = ACTIONS(9184), + [aux_sym_print_statement_token1] = ACTIONS(9184), + [anon_sym_PLUS] = ACTIONS(9186), + [anon_sym_DASH] = ACTIONS(9184), + [anon_sym_QMARK] = ACTIONS(9186), + [aux_sym_close_statement_token1] = ACTIONS(9184), + [aux_sym_put_statement_token1] = ACTIONS(9184), + [aux_sym_unlock_statement_token1] = ACTIONS(9184), + [aux_sym_seek_statement_token1] = ACTIONS(9184), + [sym_reset_statement] = ACTIONS(9184), + [aux_sym_raise_event_statement_token1] = ACTIONS(9184), + [sym_stop_statement] = ACTIONS(9184), + [sym_beep_statement] = ACTIONS(9184), + [aux_sym_unload_statement_token1] = ACTIONS(9184), + [aux_sym_def_type_statement_token1] = ACTIONS(9184), + [aux_sym_def_type_statement_token2] = ACTIONS(9184), + [aux_sym_def_type_statement_token3] = ACTIONS(9184), + [aux_sym_def_type_statement_token4] = ACTIONS(9184), + [aux_sym_def_type_statement_token5] = ACTIONS(9184), + [aux_sym_def_type_statement_token6] = ACTIONS(9184), + [aux_sym_def_type_statement_token7] = ACTIONS(9184), + [aux_sym_def_type_statement_token8] = ACTIONS(9184), + [aux_sym_def_type_statement_token9] = ACTIONS(9184), + [aux_sym_def_type_statement_token10] = ACTIONS(9184), + [aux_sym_def_type_statement_token11] = ACTIONS(9184), + [aux_sym_def_type_statement_token12] = ACTIONS(9184), + [aux_sym_def_type_statement_token13] = ACTIONS(9184), + [aux_sym_def_type_statement_token14] = ACTIONS(9184), + [aux_sym_call_statement_token1] = ACTIONS(9184), + [sym__ambiguous_call_statement] = ACTIONS(9184), + [aux_sym_addressof_expression_token1] = ACTIONS(9184), + [aux_sym_type_of_expression_token1] = ACTIONS(9184), + [aux_sym_unary_expression_token1] = ACTIONS(9184), + [sym_string_literal] = ACTIONS(9186), + [sym_number_literal] = ACTIONS(9186), + [aux_sym_boolean_literal_token1] = ACTIONS(9184), + [aux_sym_boolean_literal_token2] = ACTIONS(9184), + [sym_nothing_literal] = ACTIONS(9184), + [sym_null_literal] = ACTIONS(9184), + [sym_empty_literal] = ACTIONS(9184), + [sym_date_literal] = ACTIONS(9186), + [anon_sym_POUND] = ACTIONS(9184), + }, + [STATE(6807)] = { + [sym_identifier] = ACTIONS(9188), + [sym_newline] = ACTIONS(9190), + [anon_sym_COLON] = ACTIONS(9190), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9188), + [aux_sym_frm_property_statement_token1] = ACTIONS(9188), + [anon_sym_DOT] = ACTIONS(9188), + [anon_sym_BANG] = ACTIONS(9190), + [aux_sym__attribute_identifier_token1] = ACTIONS(9188), + [aux_sym_option_statement_token3] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9188), + [aux_sym_preprocessor_const_token1] = ACTIONS(9188), + [sym_static_modifier] = ACTIONS(9188), + [sym__dim_keyword] = ACTIONS(9188), + [sym__redim_keyword] = ACTIONS(9188), + [aux_sym_get_accessor_token1] = ACTIONS(9188), + [aux_sym_set_accessor_token1] = ACTIONS(9188), + [aux_sym_const_declaration_token1] = ACTIONS(9188), + [anon_sym_LPAREN] = ACTIONS(9190), + [aux_sym_as_type_clause_token2] = ACTIONS(9188), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9188), + [aux_sym_visibility_token1] = ACTIONS(9188), + [aux_sym_visibility_token2] = ACTIONS(9188), + [aux_sym_elseif_fragment_token1] = ACTIONS(9188), + [aux_sym_else_fragment_token1] = ACTIONS(9188), + [aux_sym_select_statement_token1] = ACTIONS(9188), + [aux_sym__for_header_token1] = ACTIONS(9188), + [aux_sym_do_statement_token1] = ACTIONS(9188), + [aux_sym_do_condition_token1] = ACTIONS(9188), + [aux_sym_while_statement_token1] = ACTIONS(9188), + [aux_sym_with_statement_token1] = ACTIONS(9188), + [aux_sym_exit_statement_token1] = ACTIONS(9188), + [sym_end_statement] = ACTIONS(9190), + [aux_sym_on_goto_statement_token1] = ACTIONS(9188), + [aux_sym_on_goto_statement_token2] = ACTIONS(9188), + [aux_sym_on_error_statement_token2] = ACTIONS(9188), + [sym__ambiguous_redim_statement] = ACTIONS(9190), + [aux_sym_erase_statement_token1] = ACTIONS(9188), + [aux_sym_open_statement_token1] = ACTIONS(9188), + [aux_sym_file_mode_token2] = ACTIONS(9188), + [aux_sym_file_access_token2] = ACTIONS(9188), + [aux_sym_file_lock_token2] = ACTIONS(9188), + [aux_sym_print_statement_token1] = ACTIONS(9188), + [anon_sym_PLUS] = ACTIONS(9190), + [anon_sym_DASH] = ACTIONS(9188), + [anon_sym_QMARK] = ACTIONS(9190), + [aux_sym_close_statement_token1] = ACTIONS(9188), + [aux_sym_put_statement_token1] = ACTIONS(9188), + [aux_sym_unlock_statement_token1] = ACTIONS(9188), + [aux_sym_seek_statement_token1] = ACTIONS(9188), + [sym_reset_statement] = ACTIONS(9188), + [aux_sym_raise_event_statement_token1] = ACTIONS(9188), + [sym_stop_statement] = ACTIONS(9188), + [sym_beep_statement] = ACTIONS(9188), + [aux_sym_unload_statement_token1] = ACTIONS(9188), + [aux_sym_def_type_statement_token1] = ACTIONS(9188), + [aux_sym_def_type_statement_token2] = ACTIONS(9188), + [aux_sym_def_type_statement_token3] = ACTIONS(9188), + [aux_sym_def_type_statement_token4] = ACTIONS(9188), + [aux_sym_def_type_statement_token5] = ACTIONS(9188), + [aux_sym_def_type_statement_token6] = ACTIONS(9188), + [aux_sym_def_type_statement_token7] = ACTIONS(9188), + [aux_sym_def_type_statement_token8] = ACTIONS(9188), + [aux_sym_def_type_statement_token9] = ACTIONS(9188), + [aux_sym_def_type_statement_token10] = ACTIONS(9188), + [aux_sym_def_type_statement_token11] = ACTIONS(9188), + [aux_sym_def_type_statement_token12] = ACTIONS(9188), + [aux_sym_def_type_statement_token13] = ACTIONS(9188), + [aux_sym_def_type_statement_token14] = ACTIONS(9188), + [aux_sym_call_statement_token1] = ACTIONS(9188), + [sym__ambiguous_call_statement] = ACTIONS(9188), + [aux_sym_addressof_expression_token1] = ACTIONS(9188), + [aux_sym_type_of_expression_token1] = ACTIONS(9188), + [aux_sym_unary_expression_token1] = ACTIONS(9188), + [sym_string_literal] = ACTIONS(9190), + [sym_number_literal] = ACTIONS(9190), + [aux_sym_boolean_literal_token1] = ACTIONS(9188), + [aux_sym_boolean_literal_token2] = ACTIONS(9188), + [sym_nothing_literal] = ACTIONS(9188), + [sym_null_literal] = ACTIONS(9188), + [sym_empty_literal] = ACTIONS(9188), + [sym_date_literal] = ACTIONS(9190), + [anon_sym_POUND] = ACTIONS(9188), + }, + [STATE(6808)] = { + [sym_identifier] = ACTIONS(9138), + [sym_newline] = ACTIONS(9140), + [anon_sym_COLON] = ACTIONS(9140), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9138), + [aux_sym_frm_property_statement_token1] = ACTIONS(9138), + [anon_sym_DOT] = ACTIONS(9138), + [anon_sym_BANG] = ACTIONS(9140), + [aux_sym__attribute_identifier_token1] = ACTIONS(9138), + [aux_sym_option_statement_token3] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9138), + [aux_sym_preprocessor_const_token1] = ACTIONS(9138), + [sym_static_modifier] = ACTIONS(9138), + [sym__dim_keyword] = ACTIONS(9138), + [sym__redim_keyword] = ACTIONS(9138), + [aux_sym_get_accessor_token1] = ACTIONS(9138), + [aux_sym_set_accessor_token1] = ACTIONS(9138), + [aux_sym_const_declaration_token1] = ACTIONS(9138), + [anon_sym_LPAREN] = ACTIONS(9140), + [aux_sym_as_type_clause_token2] = ACTIONS(9138), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9138), + [aux_sym_visibility_token1] = ACTIONS(9138), + [aux_sym_visibility_token2] = ACTIONS(9138), + [aux_sym_elseif_fragment_token1] = ACTIONS(9138), + [aux_sym_else_fragment_token1] = ACTIONS(9138), + [aux_sym_select_statement_token1] = ACTIONS(9138), + [aux_sym__for_header_token1] = ACTIONS(9138), + [aux_sym_do_statement_token1] = ACTIONS(9138), + [aux_sym_do_condition_token1] = ACTIONS(9138), + [aux_sym_with_statement_token1] = ACTIONS(9138), + [aux_sym_exit_statement_token1] = ACTIONS(9138), + [sym_end_statement] = ACTIONS(9140), + [aux_sym_on_goto_statement_token1] = ACTIONS(9138), + [aux_sym_on_goto_statement_token2] = ACTIONS(9138), + [aux_sym_on_error_statement_token2] = ACTIONS(9138), + [sym__ambiguous_redim_statement] = ACTIONS(9140), + [aux_sym_erase_statement_token1] = ACTIONS(9138), + [aux_sym_open_statement_token1] = ACTIONS(9138), + [aux_sym_file_mode_token2] = ACTIONS(9138), + [aux_sym_file_access_token2] = ACTIONS(9138), + [aux_sym_file_lock_token2] = ACTIONS(9138), + [aux_sym_print_statement_token1] = ACTIONS(9138), + [anon_sym_PLUS] = ACTIONS(9140), + [anon_sym_DASH] = ACTIONS(9138), + [anon_sym_QMARK] = ACTIONS(9140), + [aux_sym_close_statement_token1] = ACTIONS(9138), + [aux_sym_put_statement_token1] = ACTIONS(9138), + [aux_sym_unlock_statement_token1] = ACTIONS(9138), + [aux_sym_seek_statement_token1] = ACTIONS(9138), + [sym_reset_statement] = ACTIONS(9138), + [aux_sym_raise_event_statement_token1] = ACTIONS(9138), + [sym_stop_statement] = ACTIONS(9138), + [sym_beep_statement] = ACTIONS(9138), + [aux_sym_unload_statement_token1] = ACTIONS(9138), + [aux_sym_def_type_statement_token1] = ACTIONS(9138), + [aux_sym_def_type_statement_token2] = ACTIONS(9138), + [aux_sym_def_type_statement_token3] = ACTIONS(9138), + [aux_sym_def_type_statement_token4] = ACTIONS(9138), + [aux_sym_def_type_statement_token5] = ACTIONS(9138), + [aux_sym_def_type_statement_token6] = ACTIONS(9138), + [aux_sym_def_type_statement_token7] = ACTIONS(9138), + [aux_sym_def_type_statement_token8] = ACTIONS(9138), + [aux_sym_def_type_statement_token9] = ACTIONS(9138), + [aux_sym_def_type_statement_token10] = ACTIONS(9138), + [aux_sym_def_type_statement_token11] = ACTIONS(9138), + [aux_sym_def_type_statement_token12] = ACTIONS(9138), + [aux_sym_def_type_statement_token13] = ACTIONS(9138), + [aux_sym_def_type_statement_token14] = ACTIONS(9138), + [aux_sym_call_statement_token1] = ACTIONS(9138), + [sym__ambiguous_call_statement] = ACTIONS(9138), + [aux_sym_addressof_expression_token1] = ACTIONS(9138), + [aux_sym_type_of_expression_token1] = ACTIONS(9138), + [aux_sym_unary_expression_token1] = ACTIONS(9138), + [sym_string_literal] = ACTIONS(9140), + [sym_number_literal] = ACTIONS(9140), + [aux_sym_boolean_literal_token1] = ACTIONS(9138), + [aux_sym_boolean_literal_token2] = ACTIONS(9138), + [sym_nothing_literal] = ACTIONS(9138), + [sym_null_literal] = ACTIONS(9138), + [sym_empty_literal] = ACTIONS(9138), + [sym_date_literal] = ACTIONS(9140), + [anon_sym_POUND] = ACTIONS(9138), + }, + [STATE(6809)] = { + [sym_identifier] = ACTIONS(8839), + [sym_newline] = ACTIONS(8841), + [anon_sym_COLON] = ACTIONS(8841), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8839), + [aux_sym_frm_property_statement_token1] = ACTIONS(8839), + [anon_sym_DOT] = ACTIONS(8839), + [anon_sym_BANG] = ACTIONS(8841), + [aux_sym__attribute_identifier_token1] = ACTIONS(8839), + [aux_sym_option_statement_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8839), + [aux_sym_preprocessor_const_token1] = ACTIONS(8839), + [sym_static_modifier] = ACTIONS(8839), + [sym__dim_keyword] = ACTIONS(8839), + [sym__redim_keyword] = ACTIONS(8839), + [aux_sym_get_accessor_token1] = ACTIONS(8839), + [aux_sym_set_accessor_token1] = ACTIONS(8839), + [aux_sym_const_declaration_token1] = ACTIONS(8839), + [anon_sym_LPAREN] = ACTIONS(8841), + [aux_sym_as_type_clause_token2] = ACTIONS(8839), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8839), + [aux_sym_visibility_token1] = ACTIONS(8839), + [aux_sym_visibility_token2] = ACTIONS(8839), + [aux_sym_elseif_fragment_token1] = ACTIONS(8839), + [aux_sym_else_fragment_token1] = ACTIONS(8839), + [aux_sym_select_statement_token1] = ACTIONS(8839), + [aux_sym__for_header_token1] = ACTIONS(8839), + [aux_sym_do_statement_token1] = ACTIONS(8839), + [aux_sym_do_statement_token2] = ACTIONS(8839), + [aux_sym_do_condition_token1] = ACTIONS(8839), + [aux_sym_with_statement_token1] = ACTIONS(8839), + [aux_sym_exit_statement_token1] = ACTIONS(8839), + [sym_end_statement] = ACTIONS(8841), + [aux_sym_on_goto_statement_token1] = ACTIONS(8839), + [aux_sym_on_goto_statement_token2] = ACTIONS(8839), + [aux_sym_on_error_statement_token2] = ACTIONS(8839), + [sym__ambiguous_redim_statement] = ACTIONS(8841), + [aux_sym_erase_statement_token1] = ACTIONS(8839), + [aux_sym_open_statement_token1] = ACTIONS(8839), + [aux_sym_file_mode_token2] = ACTIONS(8839), + [aux_sym_file_access_token2] = ACTIONS(8839), + [aux_sym_file_lock_token2] = ACTIONS(8839), + [aux_sym_print_statement_token1] = ACTIONS(8839), + [anon_sym_PLUS] = ACTIONS(8841), + [anon_sym_DASH] = ACTIONS(8839), + [anon_sym_QMARK] = ACTIONS(8841), + [aux_sym_close_statement_token1] = ACTIONS(8839), + [aux_sym_put_statement_token1] = ACTIONS(8839), + [aux_sym_unlock_statement_token1] = ACTIONS(8839), + [aux_sym_seek_statement_token1] = ACTIONS(8839), + [sym_reset_statement] = ACTIONS(8839), + [aux_sym_raise_event_statement_token1] = ACTIONS(8839), + [sym_stop_statement] = ACTIONS(8839), + [sym_beep_statement] = ACTIONS(8839), + [aux_sym_unload_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token2] = ACTIONS(8839), + [aux_sym_def_type_statement_token3] = ACTIONS(8839), + [aux_sym_def_type_statement_token4] = ACTIONS(8839), + [aux_sym_def_type_statement_token5] = ACTIONS(8839), + [aux_sym_def_type_statement_token6] = ACTIONS(8839), + [aux_sym_def_type_statement_token7] = ACTIONS(8839), + [aux_sym_def_type_statement_token8] = ACTIONS(8839), + [aux_sym_def_type_statement_token9] = ACTIONS(8839), + [aux_sym_def_type_statement_token10] = ACTIONS(8839), + [aux_sym_def_type_statement_token11] = ACTIONS(8839), + [aux_sym_def_type_statement_token12] = ACTIONS(8839), + [aux_sym_def_type_statement_token13] = ACTIONS(8839), + [aux_sym_def_type_statement_token14] = ACTIONS(8839), + [aux_sym_call_statement_token1] = ACTIONS(8839), + [sym__ambiguous_call_statement] = ACTIONS(8839), + [aux_sym_addressof_expression_token1] = ACTIONS(8839), + [aux_sym_type_of_expression_token1] = ACTIONS(8839), + [aux_sym_unary_expression_token1] = ACTIONS(8839), + [sym_string_literal] = ACTIONS(8841), + [sym_number_literal] = ACTIONS(8841), + [aux_sym_boolean_literal_token1] = ACTIONS(8839), + [aux_sym_boolean_literal_token2] = ACTIONS(8839), + [sym_nothing_literal] = ACTIONS(8839), + [sym_null_literal] = ACTIONS(8839), + [sym_empty_literal] = ACTIONS(8839), + [sym_date_literal] = ACTIONS(8841), + [anon_sym_POUND] = ACTIONS(8839), + }, + [STATE(6810)] = { + [sym_identifier] = ACTIONS(9419), + [sym_newline] = ACTIONS(9421), + [anon_sym_COLON] = ACTIONS(9421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9419), + [aux_sym_frm_property_statement_token1] = ACTIONS(9419), + [anon_sym_DOT] = ACTIONS(9419), + [anon_sym_BANG] = ACTIONS(9421), + [aux_sym__attribute_identifier_token1] = ACTIONS(9419), + [aux_sym_option_statement_token3] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9419), + [aux_sym_preprocessor_const_token1] = ACTIONS(9419), + [sym_static_modifier] = ACTIONS(9419), + [sym__dim_keyword] = ACTIONS(9419), + [sym__redim_keyword] = ACTIONS(9419), + [aux_sym_get_accessor_token1] = ACTIONS(9419), + [aux_sym_set_accessor_token1] = ACTIONS(9419), + [aux_sym_const_declaration_token1] = ACTIONS(9419), + [anon_sym_LPAREN] = ACTIONS(9421), + [aux_sym_as_type_clause_token2] = ACTIONS(9419), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9419), + [aux_sym_visibility_token1] = ACTIONS(9419), + [aux_sym_visibility_token2] = ACTIONS(9419), + [aux_sym_elseif_fragment_token1] = ACTIONS(9419), + [aux_sym_else_fragment_token1] = ACTIONS(9419), + [aux_sym_select_statement_token1] = ACTIONS(9419), + [aux_sym_select_statement_token2] = ACTIONS(9419), + [aux_sym__for_header_token1] = ACTIONS(9419), + [aux_sym_do_statement_token1] = ACTIONS(9419), + [aux_sym_do_condition_token1] = ACTIONS(9419), + [aux_sym_with_statement_token1] = ACTIONS(9419), + [aux_sym_exit_statement_token1] = ACTIONS(9419), + [sym_end_statement] = ACTIONS(9421), + [aux_sym_on_goto_statement_token1] = ACTIONS(9419), + [aux_sym_on_goto_statement_token2] = ACTIONS(9419), + [aux_sym_on_error_statement_token2] = ACTIONS(9419), + [sym__ambiguous_redim_statement] = ACTIONS(9421), + [aux_sym_erase_statement_token1] = ACTIONS(9419), + [aux_sym_open_statement_token1] = ACTIONS(9419), + [aux_sym_file_mode_token2] = ACTIONS(9419), + [aux_sym_file_access_token2] = ACTIONS(9419), + [aux_sym_file_lock_token2] = ACTIONS(9419), + [aux_sym_print_statement_token1] = ACTIONS(9419), + [anon_sym_PLUS] = ACTIONS(9421), + [anon_sym_DASH] = ACTIONS(9419), + [anon_sym_QMARK] = ACTIONS(9421), + [aux_sym_close_statement_token1] = ACTIONS(9419), + [aux_sym_put_statement_token1] = ACTIONS(9419), + [aux_sym_unlock_statement_token1] = ACTIONS(9419), + [aux_sym_seek_statement_token1] = ACTIONS(9419), + [sym_reset_statement] = ACTIONS(9419), + [aux_sym_raise_event_statement_token1] = ACTIONS(9419), + [sym_stop_statement] = ACTIONS(9419), + [sym_beep_statement] = ACTIONS(9419), + [aux_sym_unload_statement_token1] = ACTIONS(9419), + [aux_sym_def_type_statement_token1] = ACTIONS(9419), + [aux_sym_def_type_statement_token2] = ACTIONS(9419), + [aux_sym_def_type_statement_token3] = ACTIONS(9419), + [aux_sym_def_type_statement_token4] = ACTIONS(9419), + [aux_sym_def_type_statement_token5] = ACTIONS(9419), + [aux_sym_def_type_statement_token6] = ACTIONS(9419), + [aux_sym_def_type_statement_token7] = ACTIONS(9419), + [aux_sym_def_type_statement_token8] = ACTIONS(9419), + [aux_sym_def_type_statement_token9] = ACTIONS(9419), + [aux_sym_def_type_statement_token10] = ACTIONS(9419), + [aux_sym_def_type_statement_token11] = ACTIONS(9419), + [aux_sym_def_type_statement_token12] = ACTIONS(9419), + [aux_sym_def_type_statement_token13] = ACTIONS(9419), + [aux_sym_def_type_statement_token14] = ACTIONS(9419), + [aux_sym_call_statement_token1] = ACTIONS(9419), + [sym__ambiguous_call_statement] = ACTIONS(9419), + [aux_sym_addressof_expression_token1] = ACTIONS(9419), + [aux_sym_type_of_expression_token1] = ACTIONS(9419), + [aux_sym_unary_expression_token1] = ACTIONS(9419), + [sym_string_literal] = ACTIONS(9421), + [sym_number_literal] = ACTIONS(9421), + [aux_sym_boolean_literal_token1] = ACTIONS(9419), + [aux_sym_boolean_literal_token2] = ACTIONS(9419), + [sym_nothing_literal] = ACTIONS(9419), + [sym_null_literal] = ACTIONS(9419), + [sym_empty_literal] = ACTIONS(9419), + [sym_date_literal] = ACTIONS(9421), + [anon_sym_POUND] = ACTIONS(9419), + }, + [STATE(6811)] = { + [sym_identifier] = ACTIONS(8853), + [sym_newline] = ACTIONS(8855), + [anon_sym_COLON] = ACTIONS(8855), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8853), + [aux_sym_frm_property_statement_token1] = ACTIONS(8853), + [anon_sym_DOT] = ACTIONS(8853), + [anon_sym_BANG] = ACTIONS(8855), + [aux_sym__attribute_identifier_token1] = ACTIONS(8853), + [aux_sym_option_statement_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8853), + [aux_sym_preprocessor_const_token1] = ACTIONS(8853), + [sym_static_modifier] = ACTIONS(8853), + [sym__dim_keyword] = ACTIONS(8853), + [sym__redim_keyword] = ACTIONS(8853), + [aux_sym_get_accessor_token1] = ACTIONS(8853), + [aux_sym_set_accessor_token1] = ACTIONS(8853), + [aux_sym_const_declaration_token1] = ACTIONS(8853), + [anon_sym_LPAREN] = ACTIONS(8855), + [aux_sym_as_type_clause_token2] = ACTIONS(8853), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8853), + [aux_sym_visibility_token1] = ACTIONS(8853), + [aux_sym_visibility_token2] = ACTIONS(8853), + [aux_sym_elseif_fragment_token1] = ACTIONS(8853), + [aux_sym_else_fragment_token1] = ACTIONS(8853), + [aux_sym_select_statement_token1] = ACTIONS(8853), + [aux_sym__for_header_token1] = ACTIONS(8853), + [aux_sym_do_statement_token1] = ACTIONS(8853), + [aux_sym_do_statement_token2] = ACTIONS(8853), + [aux_sym_do_condition_token1] = ACTIONS(8853), + [aux_sym_with_statement_token1] = ACTIONS(8853), + [aux_sym_exit_statement_token1] = ACTIONS(8853), + [sym_end_statement] = ACTIONS(8855), + [aux_sym_on_goto_statement_token1] = ACTIONS(8853), + [aux_sym_on_goto_statement_token2] = ACTIONS(8853), + [aux_sym_on_error_statement_token2] = ACTIONS(8853), + [sym__ambiguous_redim_statement] = ACTIONS(8855), + [aux_sym_erase_statement_token1] = ACTIONS(8853), + [aux_sym_open_statement_token1] = ACTIONS(8853), + [aux_sym_file_mode_token2] = ACTIONS(8853), + [aux_sym_file_access_token2] = ACTIONS(8853), + [aux_sym_file_lock_token2] = ACTIONS(8853), + [aux_sym_print_statement_token1] = ACTIONS(8853), + [anon_sym_PLUS] = ACTIONS(8855), + [anon_sym_DASH] = ACTIONS(8853), + [anon_sym_QMARK] = ACTIONS(8855), + [aux_sym_close_statement_token1] = ACTIONS(8853), + [aux_sym_put_statement_token1] = ACTIONS(8853), + [aux_sym_unlock_statement_token1] = ACTIONS(8853), + [aux_sym_seek_statement_token1] = ACTIONS(8853), + [sym_reset_statement] = ACTIONS(8853), + [aux_sym_raise_event_statement_token1] = ACTIONS(8853), + [sym_stop_statement] = ACTIONS(8853), + [sym_beep_statement] = ACTIONS(8853), + [aux_sym_unload_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token2] = ACTIONS(8853), + [aux_sym_def_type_statement_token3] = ACTIONS(8853), + [aux_sym_def_type_statement_token4] = ACTIONS(8853), + [aux_sym_def_type_statement_token5] = ACTIONS(8853), + [aux_sym_def_type_statement_token6] = ACTIONS(8853), + [aux_sym_def_type_statement_token7] = ACTIONS(8853), + [aux_sym_def_type_statement_token8] = ACTIONS(8853), + [aux_sym_def_type_statement_token9] = ACTIONS(8853), + [aux_sym_def_type_statement_token10] = ACTIONS(8853), + [aux_sym_def_type_statement_token11] = ACTIONS(8853), + [aux_sym_def_type_statement_token12] = ACTIONS(8853), + [aux_sym_def_type_statement_token13] = ACTIONS(8853), + [aux_sym_def_type_statement_token14] = ACTIONS(8853), + [aux_sym_call_statement_token1] = ACTIONS(8853), + [sym__ambiguous_call_statement] = ACTIONS(8853), + [aux_sym_addressof_expression_token1] = ACTIONS(8853), + [aux_sym_type_of_expression_token1] = ACTIONS(8853), + [aux_sym_unary_expression_token1] = ACTIONS(8853), + [sym_string_literal] = ACTIONS(8855), + [sym_number_literal] = ACTIONS(8855), + [aux_sym_boolean_literal_token1] = ACTIONS(8853), + [aux_sym_boolean_literal_token2] = ACTIONS(8853), + [sym_nothing_literal] = ACTIONS(8853), + [sym_null_literal] = ACTIONS(8853), + [sym_empty_literal] = ACTIONS(8853), + [sym_date_literal] = ACTIONS(8855), + [anon_sym_POUND] = ACTIONS(8853), + }, + [STATE(6812)] = { + [sym_identifier] = ACTIONS(9564), + [sym_newline] = ACTIONS(9566), + [anon_sym_COLON] = ACTIONS(9566), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9564), + [aux_sym_frm_property_statement_token1] = ACTIONS(9564), + [anon_sym_DOT] = ACTIONS(9564), + [anon_sym_BANG] = ACTIONS(9566), + [aux_sym__attribute_identifier_token1] = ACTIONS(9564), + [aux_sym_option_statement_token3] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9564), + [aux_sym_preprocessor_const_token1] = ACTIONS(9564), + [sym_static_modifier] = ACTIONS(9564), + [sym__dim_keyword] = ACTIONS(9564), + [sym__redim_keyword] = ACTIONS(9564), + [aux_sym_get_accessor_token1] = ACTIONS(9564), + [aux_sym_set_accessor_token1] = ACTIONS(9564), + [aux_sym_const_declaration_token1] = ACTIONS(9564), + [anon_sym_LPAREN] = ACTIONS(9566), + [aux_sym_as_type_clause_token2] = ACTIONS(9564), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9564), + [aux_sym_visibility_token1] = ACTIONS(9564), + [aux_sym_visibility_token2] = ACTIONS(9564), + [aux_sym_elseif_fragment_token1] = ACTIONS(9564), + [aux_sym_else_fragment_token1] = ACTIONS(9564), + [aux_sym_select_statement_token1] = ACTIONS(9564), + [aux_sym_select_statement_token2] = ACTIONS(9564), + [aux_sym__for_header_token1] = ACTIONS(9564), + [aux_sym_do_statement_token1] = ACTIONS(9564), + [aux_sym_do_condition_token1] = ACTIONS(9564), + [aux_sym_with_statement_token1] = ACTIONS(9564), + [aux_sym_exit_statement_token1] = ACTIONS(9564), + [sym_end_statement] = ACTIONS(9566), + [aux_sym_on_goto_statement_token1] = ACTIONS(9564), + [aux_sym_on_goto_statement_token2] = ACTIONS(9564), + [aux_sym_on_error_statement_token2] = ACTIONS(9564), + [sym__ambiguous_redim_statement] = ACTIONS(9566), + [aux_sym_erase_statement_token1] = ACTIONS(9564), + [aux_sym_open_statement_token1] = ACTIONS(9564), + [aux_sym_file_mode_token2] = ACTIONS(9564), + [aux_sym_file_access_token2] = ACTIONS(9564), + [aux_sym_file_lock_token2] = ACTIONS(9564), + [aux_sym_print_statement_token1] = ACTIONS(9564), + [anon_sym_PLUS] = ACTIONS(9566), + [anon_sym_DASH] = ACTIONS(9564), + [anon_sym_QMARK] = ACTIONS(9566), + [aux_sym_close_statement_token1] = ACTIONS(9564), + [aux_sym_put_statement_token1] = ACTIONS(9564), + [aux_sym_unlock_statement_token1] = ACTIONS(9564), + [aux_sym_seek_statement_token1] = ACTIONS(9564), + [sym_reset_statement] = ACTIONS(9564), + [aux_sym_raise_event_statement_token1] = ACTIONS(9564), + [sym_stop_statement] = ACTIONS(9564), + [sym_beep_statement] = ACTIONS(9564), + [aux_sym_unload_statement_token1] = ACTIONS(9564), + [aux_sym_def_type_statement_token1] = ACTIONS(9564), + [aux_sym_def_type_statement_token2] = ACTIONS(9564), + [aux_sym_def_type_statement_token3] = ACTIONS(9564), + [aux_sym_def_type_statement_token4] = ACTIONS(9564), + [aux_sym_def_type_statement_token5] = ACTIONS(9564), + [aux_sym_def_type_statement_token6] = ACTIONS(9564), + [aux_sym_def_type_statement_token7] = ACTIONS(9564), + [aux_sym_def_type_statement_token8] = ACTIONS(9564), + [aux_sym_def_type_statement_token9] = ACTIONS(9564), + [aux_sym_def_type_statement_token10] = ACTIONS(9564), + [aux_sym_def_type_statement_token11] = ACTIONS(9564), + [aux_sym_def_type_statement_token12] = ACTIONS(9564), + [aux_sym_def_type_statement_token13] = ACTIONS(9564), + [aux_sym_def_type_statement_token14] = ACTIONS(9564), + [aux_sym_call_statement_token1] = ACTIONS(9564), + [sym__ambiguous_call_statement] = ACTIONS(9564), + [aux_sym_addressof_expression_token1] = ACTIONS(9564), + [aux_sym_type_of_expression_token1] = ACTIONS(9564), + [aux_sym_unary_expression_token1] = ACTIONS(9564), + [sym_string_literal] = ACTIONS(9566), + [sym_number_literal] = ACTIONS(9566), + [aux_sym_boolean_literal_token1] = ACTIONS(9564), + [aux_sym_boolean_literal_token2] = ACTIONS(9564), + [sym_nothing_literal] = ACTIONS(9564), + [sym_null_literal] = ACTIONS(9564), + [sym_empty_literal] = ACTIONS(9564), + [sym_date_literal] = ACTIONS(9566), + [anon_sym_POUND] = ACTIONS(9564), + }, + [STATE(6813)] = { + [sym_identifier] = ACTIONS(9423), + [sym_newline] = ACTIONS(9425), + [anon_sym_COLON] = ACTIONS(9425), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9423), + [aux_sym_frm_property_statement_token1] = ACTIONS(9423), + [anon_sym_DOT] = ACTIONS(9423), + [anon_sym_BANG] = ACTIONS(9425), + [aux_sym__attribute_identifier_token1] = ACTIONS(9423), + [aux_sym_option_statement_token3] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9423), + [aux_sym_preprocessor_const_token1] = ACTIONS(9423), + [sym_static_modifier] = ACTIONS(9423), + [sym__dim_keyword] = ACTIONS(9423), + [sym__redim_keyword] = ACTIONS(9423), + [aux_sym_get_accessor_token1] = ACTIONS(9423), + [aux_sym_set_accessor_token1] = ACTIONS(9423), + [aux_sym_const_declaration_token1] = ACTIONS(9423), + [anon_sym_LPAREN] = ACTIONS(9425), + [aux_sym_as_type_clause_token2] = ACTIONS(9423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9423), + [aux_sym_visibility_token1] = ACTIONS(9423), + [aux_sym_visibility_token2] = ACTIONS(9423), + [aux_sym_elseif_fragment_token1] = ACTIONS(9423), + [aux_sym_else_fragment_token1] = ACTIONS(9423), + [aux_sym_select_statement_token1] = ACTIONS(9423), + [aux_sym_select_statement_token2] = ACTIONS(9423), + [aux_sym__for_header_token1] = ACTIONS(9423), + [aux_sym_do_statement_token1] = ACTIONS(9423), + [aux_sym_do_condition_token1] = ACTIONS(9423), + [aux_sym_with_statement_token1] = ACTIONS(9423), + [aux_sym_exit_statement_token1] = ACTIONS(9423), + [sym_end_statement] = ACTIONS(9425), + [aux_sym_on_goto_statement_token1] = ACTIONS(9423), + [aux_sym_on_goto_statement_token2] = ACTIONS(9423), + [aux_sym_on_error_statement_token2] = ACTIONS(9423), + [sym__ambiguous_redim_statement] = ACTIONS(9425), + [aux_sym_erase_statement_token1] = ACTIONS(9423), + [aux_sym_open_statement_token1] = ACTIONS(9423), + [aux_sym_file_mode_token2] = ACTIONS(9423), + [aux_sym_file_access_token2] = ACTIONS(9423), + [aux_sym_file_lock_token2] = ACTIONS(9423), + [aux_sym_print_statement_token1] = ACTIONS(9423), + [anon_sym_PLUS] = ACTIONS(9425), + [anon_sym_DASH] = ACTIONS(9423), + [anon_sym_QMARK] = ACTIONS(9425), + [aux_sym_close_statement_token1] = ACTIONS(9423), + [aux_sym_put_statement_token1] = ACTIONS(9423), + [aux_sym_unlock_statement_token1] = ACTIONS(9423), + [aux_sym_seek_statement_token1] = ACTIONS(9423), + [sym_reset_statement] = ACTIONS(9423), + [aux_sym_raise_event_statement_token1] = ACTIONS(9423), + [sym_stop_statement] = ACTIONS(9423), + [sym_beep_statement] = ACTIONS(9423), + [aux_sym_unload_statement_token1] = ACTIONS(9423), + [aux_sym_def_type_statement_token1] = ACTIONS(9423), + [aux_sym_def_type_statement_token2] = ACTIONS(9423), + [aux_sym_def_type_statement_token3] = ACTIONS(9423), + [aux_sym_def_type_statement_token4] = ACTIONS(9423), + [aux_sym_def_type_statement_token5] = ACTIONS(9423), + [aux_sym_def_type_statement_token6] = ACTIONS(9423), + [aux_sym_def_type_statement_token7] = ACTIONS(9423), + [aux_sym_def_type_statement_token8] = ACTIONS(9423), + [aux_sym_def_type_statement_token9] = ACTIONS(9423), + [aux_sym_def_type_statement_token10] = ACTIONS(9423), + [aux_sym_def_type_statement_token11] = ACTIONS(9423), + [aux_sym_def_type_statement_token12] = ACTIONS(9423), + [aux_sym_def_type_statement_token13] = ACTIONS(9423), + [aux_sym_def_type_statement_token14] = ACTIONS(9423), + [aux_sym_call_statement_token1] = ACTIONS(9423), + [sym__ambiguous_call_statement] = ACTIONS(9423), + [aux_sym_addressof_expression_token1] = ACTIONS(9423), + [aux_sym_type_of_expression_token1] = ACTIONS(9423), + [aux_sym_unary_expression_token1] = ACTIONS(9423), + [sym_string_literal] = ACTIONS(9425), + [sym_number_literal] = ACTIONS(9425), + [aux_sym_boolean_literal_token1] = ACTIONS(9423), + [aux_sym_boolean_literal_token2] = ACTIONS(9423), + [sym_nothing_literal] = ACTIONS(9423), + [sym_null_literal] = ACTIONS(9423), + [sym_empty_literal] = ACTIONS(9423), + [sym_date_literal] = ACTIONS(9425), + [anon_sym_POUND] = ACTIONS(9423), + }, + [STATE(6814)] = { + [sym_identifier] = ACTIONS(8857), + [sym_newline] = ACTIONS(8859), + [anon_sym_COLON] = ACTIONS(8859), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8857), + [aux_sym_frm_property_statement_token1] = ACTIONS(8857), + [anon_sym_DOT] = ACTIONS(8857), + [anon_sym_BANG] = ACTIONS(8859), + [aux_sym__attribute_identifier_token1] = ACTIONS(8857), + [aux_sym_option_statement_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8857), + [aux_sym_preprocessor_const_token1] = ACTIONS(8857), + [sym_static_modifier] = ACTIONS(8857), + [sym__dim_keyword] = ACTIONS(8857), + [sym__redim_keyword] = ACTIONS(8857), + [aux_sym_get_accessor_token1] = ACTIONS(8857), + [aux_sym_set_accessor_token1] = ACTIONS(8857), + [aux_sym_const_declaration_token1] = ACTIONS(8857), + [anon_sym_LPAREN] = ACTIONS(8859), + [aux_sym_as_type_clause_token2] = ACTIONS(8857), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8857), + [aux_sym_visibility_token1] = ACTIONS(8857), + [aux_sym_visibility_token2] = ACTIONS(8857), + [aux_sym_elseif_fragment_token1] = ACTIONS(8857), + [aux_sym_else_fragment_token1] = ACTIONS(8857), + [aux_sym_select_statement_token1] = ACTIONS(8857), + [aux_sym__for_header_token1] = ACTIONS(8857), + [aux_sym_do_statement_token1] = ACTIONS(8857), + [aux_sym_do_statement_token2] = ACTIONS(8857), + [aux_sym_do_condition_token1] = ACTIONS(8857), + [aux_sym_with_statement_token1] = ACTIONS(8857), + [aux_sym_exit_statement_token1] = ACTIONS(8857), + [sym_end_statement] = ACTIONS(8859), + [aux_sym_on_goto_statement_token1] = ACTIONS(8857), + [aux_sym_on_goto_statement_token2] = ACTIONS(8857), + [aux_sym_on_error_statement_token2] = ACTIONS(8857), + [sym__ambiguous_redim_statement] = ACTIONS(8859), + [aux_sym_erase_statement_token1] = ACTIONS(8857), + [aux_sym_open_statement_token1] = ACTIONS(8857), + [aux_sym_file_mode_token2] = ACTIONS(8857), + [aux_sym_file_access_token2] = ACTIONS(8857), + [aux_sym_file_lock_token2] = ACTIONS(8857), + [aux_sym_print_statement_token1] = ACTIONS(8857), + [anon_sym_PLUS] = ACTIONS(8859), + [anon_sym_DASH] = ACTIONS(8857), + [anon_sym_QMARK] = ACTIONS(8859), + [aux_sym_close_statement_token1] = ACTIONS(8857), + [aux_sym_put_statement_token1] = ACTIONS(8857), + [aux_sym_unlock_statement_token1] = ACTIONS(8857), + [aux_sym_seek_statement_token1] = ACTIONS(8857), + [sym_reset_statement] = ACTIONS(8857), + [aux_sym_raise_event_statement_token1] = ACTIONS(8857), + [sym_stop_statement] = ACTIONS(8857), + [sym_beep_statement] = ACTIONS(8857), + [aux_sym_unload_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token2] = ACTIONS(8857), + [aux_sym_def_type_statement_token3] = ACTIONS(8857), + [aux_sym_def_type_statement_token4] = ACTIONS(8857), + [aux_sym_def_type_statement_token5] = ACTIONS(8857), + [aux_sym_def_type_statement_token6] = ACTIONS(8857), + [aux_sym_def_type_statement_token7] = ACTIONS(8857), + [aux_sym_def_type_statement_token8] = ACTIONS(8857), + [aux_sym_def_type_statement_token9] = ACTIONS(8857), + [aux_sym_def_type_statement_token10] = ACTIONS(8857), + [aux_sym_def_type_statement_token11] = ACTIONS(8857), + [aux_sym_def_type_statement_token12] = ACTIONS(8857), + [aux_sym_def_type_statement_token13] = ACTIONS(8857), + [aux_sym_def_type_statement_token14] = ACTIONS(8857), + [aux_sym_call_statement_token1] = ACTIONS(8857), + [sym__ambiguous_call_statement] = ACTIONS(8857), + [aux_sym_addressof_expression_token1] = ACTIONS(8857), + [aux_sym_type_of_expression_token1] = ACTIONS(8857), + [aux_sym_unary_expression_token1] = ACTIONS(8857), + [sym_string_literal] = ACTIONS(8859), + [sym_number_literal] = ACTIONS(8859), + [aux_sym_boolean_literal_token1] = ACTIONS(8857), + [aux_sym_boolean_literal_token2] = ACTIONS(8857), + [sym_nothing_literal] = ACTIONS(8857), + [sym_null_literal] = ACTIONS(8857), + [sym_empty_literal] = ACTIONS(8857), + [sym_date_literal] = ACTIONS(8859), + [anon_sym_POUND] = ACTIONS(8857), + }, + [STATE(6815)] = { + [sym_identifier] = ACTIONS(9370), + [sym_newline] = ACTIONS(9372), + [anon_sym_COLON] = ACTIONS(9372), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9370), + [aux_sym_frm_property_statement_token1] = ACTIONS(9370), + [anon_sym_DOT] = ACTIONS(9370), + [anon_sym_BANG] = ACTIONS(9372), + [aux_sym__attribute_identifier_token1] = ACTIONS(9370), + [aux_sym_option_statement_token3] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9370), + [aux_sym_preprocessor_const_token1] = ACTIONS(9370), + [sym_static_modifier] = ACTIONS(9370), + [sym__dim_keyword] = ACTIONS(9370), + [sym__redim_keyword] = ACTIONS(9370), + [aux_sym_get_accessor_token1] = ACTIONS(9370), + [aux_sym_set_accessor_token1] = ACTIONS(9370), + [aux_sym_const_declaration_token1] = ACTIONS(9370), + [anon_sym_LPAREN] = ACTIONS(9372), + [aux_sym_as_type_clause_token2] = ACTIONS(9370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9370), + [aux_sym_visibility_token1] = ACTIONS(9370), + [aux_sym_visibility_token2] = ACTIONS(9370), + [aux_sym_elseif_fragment_token1] = ACTIONS(9370), + [aux_sym_else_fragment_token1] = ACTIONS(9370), + [aux_sym_select_statement_token1] = ACTIONS(9370), + [aux_sym__for_header_token1] = ACTIONS(9370), + [aux_sym_do_statement_token1] = ACTIONS(9370), + [aux_sym_do_condition_token1] = ACTIONS(9370), + [aux_sym_with_statement_token1] = ACTIONS(9370), + [aux_sym_exit_statement_token1] = ACTIONS(9370), + [sym_end_statement] = ACTIONS(9372), + [aux_sym_on_goto_statement_token1] = ACTIONS(9370), + [aux_sym_on_goto_statement_token2] = ACTIONS(9370), + [aux_sym_on_error_statement_token2] = ACTIONS(9370), + [sym__ambiguous_redim_statement] = ACTIONS(9372), + [aux_sym_erase_statement_token1] = ACTIONS(9370), + [aux_sym_open_statement_token1] = ACTIONS(9370), + [aux_sym_file_mode_token2] = ACTIONS(9370), + [aux_sym_file_access_token2] = ACTIONS(9370), + [aux_sym_file_lock_token2] = ACTIONS(9370), + [aux_sym_print_statement_token1] = ACTIONS(9370), + [anon_sym_PLUS] = ACTIONS(9372), + [anon_sym_DASH] = ACTIONS(9370), + [anon_sym_QMARK] = ACTIONS(9372), + [aux_sym_close_statement_token1] = ACTIONS(9370), + [aux_sym_put_statement_token1] = ACTIONS(9370), + [aux_sym_unlock_statement_token1] = ACTIONS(9370), + [aux_sym_seek_statement_token1] = ACTIONS(9370), + [sym_reset_statement] = ACTIONS(9370), + [aux_sym_raise_event_statement_token1] = ACTIONS(9370), + [sym_stop_statement] = ACTIONS(9370), + [sym_beep_statement] = ACTIONS(9370), + [aux_sym_unload_statement_token1] = ACTIONS(9370), + [aux_sym_def_type_statement_token1] = ACTIONS(9370), + [aux_sym_def_type_statement_token2] = ACTIONS(9370), + [aux_sym_def_type_statement_token3] = ACTIONS(9370), + [aux_sym_def_type_statement_token4] = ACTIONS(9370), + [aux_sym_def_type_statement_token5] = ACTIONS(9370), + [aux_sym_def_type_statement_token6] = ACTIONS(9370), + [aux_sym_def_type_statement_token7] = ACTIONS(9370), + [aux_sym_def_type_statement_token8] = ACTIONS(9370), + [aux_sym_def_type_statement_token9] = ACTIONS(9370), + [aux_sym_def_type_statement_token10] = ACTIONS(9370), + [aux_sym_def_type_statement_token11] = ACTIONS(9370), + [aux_sym_def_type_statement_token12] = ACTIONS(9370), + [aux_sym_def_type_statement_token13] = ACTIONS(9370), + [aux_sym_def_type_statement_token14] = ACTIONS(9370), + [aux_sym_call_statement_token1] = ACTIONS(9370), + [sym__ambiguous_call_statement] = ACTIONS(9370), + [aux_sym_addressof_expression_token1] = ACTIONS(9370), + [aux_sym_type_of_expression_token1] = ACTIONS(9370), + [aux_sym_unary_expression_token1] = ACTIONS(9370), + [sym_string_literal] = ACTIONS(9372), + [sym_number_literal] = ACTIONS(9372), + [aux_sym_boolean_literal_token1] = ACTIONS(9370), + [aux_sym_boolean_literal_token2] = ACTIONS(9370), + [sym_nothing_literal] = ACTIONS(9370), + [sym_null_literal] = ACTIONS(9370), + [sym_empty_literal] = ACTIONS(9370), + [sym_date_literal] = ACTIONS(9372), + [anon_sym_POUND] = ACTIONS(9370), + }, + [STATE(6816)] = { + [sym_identifier] = ACTIONS(8861), + [sym_newline] = ACTIONS(8863), + [anon_sym_COLON] = ACTIONS(8863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8861), + [aux_sym_frm_property_statement_token1] = ACTIONS(8861), + [anon_sym_DOT] = ACTIONS(8861), + [anon_sym_BANG] = ACTIONS(8863), + [aux_sym__attribute_identifier_token1] = ACTIONS(8861), + [aux_sym_option_statement_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8861), + [aux_sym_preprocessor_const_token1] = ACTIONS(8861), + [sym_static_modifier] = ACTIONS(8861), + [sym__dim_keyword] = ACTIONS(8861), + [sym__redim_keyword] = ACTIONS(8861), + [aux_sym_get_accessor_token1] = ACTIONS(8861), + [aux_sym_set_accessor_token1] = ACTIONS(8861), + [aux_sym_const_declaration_token1] = ACTIONS(8861), + [anon_sym_LPAREN] = ACTIONS(8863), + [aux_sym_as_type_clause_token2] = ACTIONS(8861), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8861), + [aux_sym_visibility_token1] = ACTIONS(8861), + [aux_sym_visibility_token2] = ACTIONS(8861), + [aux_sym_elseif_fragment_token1] = ACTIONS(8861), + [aux_sym_else_fragment_token1] = ACTIONS(8861), + [aux_sym_select_statement_token1] = ACTIONS(8861), + [aux_sym__for_header_token1] = ACTIONS(8861), + [aux_sym_do_statement_token1] = ACTIONS(8861), + [aux_sym_do_statement_token2] = ACTIONS(8861), + [aux_sym_do_condition_token1] = ACTIONS(8861), + [aux_sym_with_statement_token1] = ACTIONS(8861), + [aux_sym_exit_statement_token1] = ACTIONS(8861), + [sym_end_statement] = ACTIONS(8863), + [aux_sym_on_goto_statement_token1] = ACTIONS(8861), + [aux_sym_on_goto_statement_token2] = ACTIONS(8861), + [aux_sym_on_error_statement_token2] = ACTIONS(8861), + [sym__ambiguous_redim_statement] = ACTIONS(8863), + [aux_sym_erase_statement_token1] = ACTIONS(8861), + [aux_sym_open_statement_token1] = ACTIONS(8861), + [aux_sym_file_mode_token2] = ACTIONS(8861), + [aux_sym_file_access_token2] = ACTIONS(8861), + [aux_sym_file_lock_token2] = ACTIONS(8861), + [aux_sym_print_statement_token1] = ACTIONS(8861), + [anon_sym_PLUS] = ACTIONS(8863), + [anon_sym_DASH] = ACTIONS(8861), + [anon_sym_QMARK] = ACTIONS(8863), + [aux_sym_close_statement_token1] = ACTIONS(8861), + [aux_sym_put_statement_token1] = ACTIONS(8861), + [aux_sym_unlock_statement_token1] = ACTIONS(8861), + [aux_sym_seek_statement_token1] = ACTIONS(8861), + [sym_reset_statement] = ACTIONS(8861), + [aux_sym_raise_event_statement_token1] = ACTIONS(8861), + [sym_stop_statement] = ACTIONS(8861), + [sym_beep_statement] = ACTIONS(8861), + [aux_sym_unload_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token2] = ACTIONS(8861), + [aux_sym_def_type_statement_token3] = ACTIONS(8861), + [aux_sym_def_type_statement_token4] = ACTIONS(8861), + [aux_sym_def_type_statement_token5] = ACTIONS(8861), + [aux_sym_def_type_statement_token6] = ACTIONS(8861), + [aux_sym_def_type_statement_token7] = ACTIONS(8861), + [aux_sym_def_type_statement_token8] = ACTIONS(8861), + [aux_sym_def_type_statement_token9] = ACTIONS(8861), + [aux_sym_def_type_statement_token10] = ACTIONS(8861), + [aux_sym_def_type_statement_token11] = ACTIONS(8861), + [aux_sym_def_type_statement_token12] = ACTIONS(8861), + [aux_sym_def_type_statement_token13] = ACTIONS(8861), + [aux_sym_def_type_statement_token14] = ACTIONS(8861), + [aux_sym_call_statement_token1] = ACTIONS(8861), + [sym__ambiguous_call_statement] = ACTIONS(8861), + [aux_sym_addressof_expression_token1] = ACTIONS(8861), + [aux_sym_type_of_expression_token1] = ACTIONS(8861), + [aux_sym_unary_expression_token1] = ACTIONS(8861), + [sym_string_literal] = ACTIONS(8863), + [sym_number_literal] = ACTIONS(8863), + [aux_sym_boolean_literal_token1] = ACTIONS(8861), + [aux_sym_boolean_literal_token2] = ACTIONS(8861), + [sym_nothing_literal] = ACTIONS(8861), + [sym_null_literal] = ACTIONS(8861), + [sym_empty_literal] = ACTIONS(8861), + [sym_date_literal] = ACTIONS(8863), + [anon_sym_POUND] = ACTIONS(8861), + }, + [STATE(6817)] = { + [sym_identifier] = ACTIONS(8279), + [sym_newline] = ACTIONS(8281), + [anon_sym_COLON] = ACTIONS(8281), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8279), + [aux_sym_frm_property_statement_token1] = ACTIONS(8279), + [anon_sym_DOT] = ACTIONS(8279), + [anon_sym_BANG] = ACTIONS(8281), + [aux_sym__attribute_identifier_token1] = ACTIONS(8279), + [aux_sym_option_statement_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8279), + [aux_sym_preprocessor_const_token1] = ACTIONS(8279), + [sym_static_modifier] = ACTIONS(8279), + [sym__dim_keyword] = ACTIONS(8279), + [sym__redim_keyword] = ACTIONS(8279), + [aux_sym_get_accessor_token1] = ACTIONS(8279), + [aux_sym_set_accessor_token1] = ACTIONS(8279), + [aux_sym_const_declaration_token1] = ACTIONS(8279), + [anon_sym_LPAREN] = ACTIONS(8281), + [aux_sym_as_type_clause_token2] = ACTIONS(8279), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8279), + [aux_sym_visibility_token1] = ACTIONS(8279), + [aux_sym_visibility_token2] = ACTIONS(8279), + [aux_sym_elseif_fragment_token1] = ACTIONS(8279), + [aux_sym_else_fragment_token1] = ACTIONS(8279), + [aux_sym_select_statement_token1] = ACTIONS(8279), + [aux_sym__for_header_token1] = ACTIONS(8279), + [aux_sym_do_statement_token1] = ACTIONS(8279), + [aux_sym_do_statement_token2] = ACTIONS(8279), + [aux_sym_do_condition_token1] = ACTIONS(8279), + [aux_sym_with_statement_token1] = ACTIONS(8279), + [aux_sym_exit_statement_token1] = ACTIONS(8279), + [sym_end_statement] = ACTIONS(8281), + [aux_sym_on_goto_statement_token1] = ACTIONS(8279), + [aux_sym_on_goto_statement_token2] = ACTIONS(8279), + [aux_sym_on_error_statement_token2] = ACTIONS(8279), + [sym__ambiguous_redim_statement] = ACTIONS(8281), + [aux_sym_erase_statement_token1] = ACTIONS(8279), + [aux_sym_open_statement_token1] = ACTIONS(8279), + [aux_sym_file_mode_token2] = ACTIONS(8279), + [aux_sym_file_access_token2] = ACTIONS(8279), + [aux_sym_file_lock_token2] = ACTIONS(8279), + [aux_sym_print_statement_token1] = ACTIONS(8279), + [anon_sym_PLUS] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8279), + [anon_sym_QMARK] = ACTIONS(8281), + [aux_sym_close_statement_token1] = ACTIONS(8279), + [aux_sym_put_statement_token1] = ACTIONS(8279), + [aux_sym_unlock_statement_token1] = ACTIONS(8279), + [aux_sym_seek_statement_token1] = ACTIONS(8279), + [sym_reset_statement] = ACTIONS(8279), + [aux_sym_raise_event_statement_token1] = ACTIONS(8279), + [sym_stop_statement] = ACTIONS(8279), + [sym_beep_statement] = ACTIONS(8279), + [aux_sym_unload_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token2] = ACTIONS(8279), + [aux_sym_def_type_statement_token3] = ACTIONS(8279), + [aux_sym_def_type_statement_token4] = ACTIONS(8279), + [aux_sym_def_type_statement_token5] = ACTIONS(8279), + [aux_sym_def_type_statement_token6] = ACTIONS(8279), + [aux_sym_def_type_statement_token7] = ACTIONS(8279), + [aux_sym_def_type_statement_token8] = ACTIONS(8279), + [aux_sym_def_type_statement_token9] = ACTIONS(8279), + [aux_sym_def_type_statement_token10] = ACTIONS(8279), + [aux_sym_def_type_statement_token11] = ACTIONS(8279), + [aux_sym_def_type_statement_token12] = ACTIONS(8279), + [aux_sym_def_type_statement_token13] = ACTIONS(8279), + [aux_sym_def_type_statement_token14] = ACTIONS(8279), + [aux_sym_call_statement_token1] = ACTIONS(8279), + [sym__ambiguous_call_statement] = ACTIONS(8279), + [aux_sym_addressof_expression_token1] = ACTIONS(8279), + [aux_sym_type_of_expression_token1] = ACTIONS(8279), + [aux_sym_unary_expression_token1] = ACTIONS(8279), + [sym_string_literal] = ACTIONS(8281), + [sym_number_literal] = ACTIONS(8281), + [aux_sym_boolean_literal_token1] = ACTIONS(8279), + [aux_sym_boolean_literal_token2] = ACTIONS(8279), + [sym_nothing_literal] = ACTIONS(8279), + [sym_null_literal] = ACTIONS(8279), + [sym_empty_literal] = ACTIONS(8279), + [sym_date_literal] = ACTIONS(8281), + [anon_sym_POUND] = ACTIONS(8279), + }, + [STATE(6818)] = { + [sym_identifier] = ACTIONS(8962), + [sym_newline] = ACTIONS(8964), + [anon_sym_COLON] = ACTIONS(8964), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8962), + [aux_sym_frm_property_statement_token1] = ACTIONS(8962), + [anon_sym_DOT] = ACTIONS(8962), + [anon_sym_BANG] = ACTIONS(8964), + [aux_sym__attribute_identifier_token1] = ACTIONS(8962), + [aux_sym_option_statement_token3] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8962), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8962), + [aux_sym_preprocessor_const_token1] = ACTIONS(8962), + [sym_static_modifier] = ACTIONS(8962), + [sym__dim_keyword] = ACTIONS(8962), + [sym__redim_keyword] = ACTIONS(8962), + [aux_sym_get_accessor_token1] = ACTIONS(8962), + [aux_sym_set_accessor_token1] = ACTIONS(8962), + [anon_sym_COMMA] = ACTIONS(8964), + [aux_sym_const_declaration_token1] = ACTIONS(8962), + [anon_sym_LPAREN] = ACTIONS(8964), + [aux_sym_as_type_clause_token2] = ACTIONS(8962), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8962), + [aux_sym_visibility_token1] = ACTIONS(8962), + [aux_sym_visibility_token2] = ACTIONS(8962), + [aux_sym_elseif_fragment_token1] = ACTIONS(8962), + [aux_sym_else_fragment_token1] = ACTIONS(8962), + [aux_sym_select_statement_token1] = ACTIONS(8962), + [aux_sym__for_header_token1] = ACTIONS(8962), + [aux_sym_do_statement_token1] = ACTIONS(8962), + [aux_sym_do_condition_token1] = ACTIONS(8962), + [aux_sym_with_statement_token1] = ACTIONS(8962), + [aux_sym_exit_statement_token1] = ACTIONS(8962), + [sym_end_statement] = ACTIONS(8964), + [aux_sym_on_goto_statement_token1] = ACTIONS(8962), + [aux_sym_on_goto_statement_token2] = ACTIONS(8962), + [aux_sym_on_error_statement_token2] = ACTIONS(8962), + [sym__ambiguous_redim_statement] = ACTIONS(8964), + [aux_sym_erase_statement_token1] = ACTIONS(8962), + [aux_sym_open_statement_token1] = ACTIONS(8962), + [aux_sym_file_mode_token2] = ACTIONS(8962), + [aux_sym_file_access_token2] = ACTIONS(8962), + [aux_sym_file_lock_token2] = ACTIONS(8962), + [aux_sym_print_statement_token1] = ACTIONS(8962), + [anon_sym_PLUS] = ACTIONS(8964), + [anon_sym_DASH] = ACTIONS(8962), + [anon_sym_QMARK] = ACTIONS(8964), + [aux_sym_close_statement_token1] = ACTIONS(8962), + [aux_sym_put_statement_token1] = ACTIONS(8962), + [aux_sym_unlock_statement_token1] = ACTIONS(8962), + [aux_sym_seek_statement_token1] = ACTIONS(8962), + [sym_reset_statement] = ACTIONS(8962), + [aux_sym_raise_event_statement_token1] = ACTIONS(8962), + [sym_stop_statement] = ACTIONS(8962), + [sym_beep_statement] = ACTIONS(8962), + [aux_sym_unload_statement_token1] = ACTIONS(8962), + [aux_sym_def_type_statement_token1] = ACTIONS(8962), + [aux_sym_def_type_statement_token2] = ACTIONS(8962), + [aux_sym_def_type_statement_token3] = ACTIONS(8962), + [aux_sym_def_type_statement_token4] = ACTIONS(8962), + [aux_sym_def_type_statement_token5] = ACTIONS(8962), + [aux_sym_def_type_statement_token6] = ACTIONS(8962), + [aux_sym_def_type_statement_token7] = ACTIONS(8962), + [aux_sym_def_type_statement_token8] = ACTIONS(8962), + [aux_sym_def_type_statement_token9] = ACTIONS(8962), + [aux_sym_def_type_statement_token10] = ACTIONS(8962), + [aux_sym_def_type_statement_token11] = ACTIONS(8962), + [aux_sym_def_type_statement_token12] = ACTIONS(8962), + [aux_sym_def_type_statement_token13] = ACTIONS(8962), + [aux_sym_def_type_statement_token14] = ACTIONS(8962), + [aux_sym_call_statement_token1] = ACTIONS(8962), + [sym__ambiguous_call_statement] = ACTIONS(8962), + [aux_sym_addressof_expression_token1] = ACTIONS(8962), + [aux_sym_type_of_expression_token1] = ACTIONS(8962), + [aux_sym_unary_expression_token1] = ACTIONS(8962), + [sym_string_literal] = ACTIONS(8964), + [sym_number_literal] = ACTIONS(8964), + [aux_sym_boolean_literal_token1] = ACTIONS(8962), + [aux_sym_boolean_literal_token2] = ACTIONS(8962), + [sym_nothing_literal] = ACTIONS(8962), + [sym_null_literal] = ACTIONS(8962), + [sym_empty_literal] = ACTIONS(8962), + [sym_date_literal] = ACTIONS(8964), + [anon_sym_POUND] = ACTIONS(8962), + }, + [STATE(6819)] = { + [sym_identifier] = ACTIONS(9348), + [sym_newline] = ACTIONS(9350), + [anon_sym_COLON] = ACTIONS(9350), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9348), + [aux_sym_frm_property_statement_token1] = ACTIONS(9348), + [anon_sym_DOT] = ACTIONS(9348), + [anon_sym_BANG] = ACTIONS(9350), + [aux_sym__attribute_identifier_token1] = ACTIONS(9348), + [aux_sym_option_statement_token3] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9348), + [aux_sym_preprocessor_const_token1] = ACTIONS(9348), + [sym_static_modifier] = ACTIONS(9348), + [sym__dim_keyword] = ACTIONS(9348), + [sym__redim_keyword] = ACTIONS(9348), + [aux_sym_get_accessor_token1] = ACTIONS(9348), + [aux_sym_set_accessor_token1] = ACTIONS(9348), + [aux_sym_const_declaration_token1] = ACTIONS(9348), + [anon_sym_LPAREN] = ACTIONS(9350), + [aux_sym_as_type_clause_token2] = ACTIONS(9348), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9348), + [aux_sym_visibility_token1] = ACTIONS(9348), + [aux_sym_visibility_token2] = ACTIONS(9348), + [aux_sym_elseif_fragment_token1] = ACTIONS(9348), + [aux_sym_else_fragment_token1] = ACTIONS(9348), + [aux_sym_select_statement_token1] = ACTIONS(9348), + [aux_sym_select_statement_token2] = ACTIONS(9348), + [aux_sym__for_header_token1] = ACTIONS(9348), + [aux_sym_do_statement_token1] = ACTIONS(9348), + [aux_sym_do_condition_token1] = ACTIONS(9348), + [aux_sym_with_statement_token1] = ACTIONS(9348), + [aux_sym_exit_statement_token1] = ACTIONS(9348), + [sym_end_statement] = ACTIONS(9350), + [aux_sym_on_goto_statement_token1] = ACTIONS(9348), + [aux_sym_on_goto_statement_token2] = ACTIONS(9348), + [aux_sym_on_error_statement_token2] = ACTIONS(9348), + [sym__ambiguous_redim_statement] = ACTIONS(9350), + [aux_sym_erase_statement_token1] = ACTIONS(9348), + [aux_sym_open_statement_token1] = ACTIONS(9348), + [aux_sym_file_mode_token2] = ACTIONS(9348), + [aux_sym_file_access_token2] = ACTIONS(9348), + [aux_sym_file_lock_token2] = ACTIONS(9348), + [aux_sym_print_statement_token1] = ACTIONS(9348), + [anon_sym_PLUS] = ACTIONS(9350), + [anon_sym_DASH] = ACTIONS(9348), + [anon_sym_QMARK] = ACTIONS(9350), + [aux_sym_close_statement_token1] = ACTIONS(9348), + [aux_sym_put_statement_token1] = ACTIONS(9348), + [aux_sym_unlock_statement_token1] = ACTIONS(9348), + [aux_sym_seek_statement_token1] = ACTIONS(9348), + [sym_reset_statement] = ACTIONS(9348), + [aux_sym_raise_event_statement_token1] = ACTIONS(9348), + [sym_stop_statement] = ACTIONS(9348), + [sym_beep_statement] = ACTIONS(9348), + [aux_sym_unload_statement_token1] = ACTIONS(9348), + [aux_sym_def_type_statement_token1] = ACTIONS(9348), + [aux_sym_def_type_statement_token2] = ACTIONS(9348), + [aux_sym_def_type_statement_token3] = ACTIONS(9348), + [aux_sym_def_type_statement_token4] = ACTIONS(9348), + [aux_sym_def_type_statement_token5] = ACTIONS(9348), + [aux_sym_def_type_statement_token6] = ACTIONS(9348), + [aux_sym_def_type_statement_token7] = ACTIONS(9348), + [aux_sym_def_type_statement_token8] = ACTIONS(9348), + [aux_sym_def_type_statement_token9] = ACTIONS(9348), + [aux_sym_def_type_statement_token10] = ACTIONS(9348), + [aux_sym_def_type_statement_token11] = ACTIONS(9348), + [aux_sym_def_type_statement_token12] = ACTIONS(9348), + [aux_sym_def_type_statement_token13] = ACTIONS(9348), + [aux_sym_def_type_statement_token14] = ACTIONS(9348), + [aux_sym_call_statement_token1] = ACTIONS(9348), + [sym__ambiguous_call_statement] = ACTIONS(9348), + [aux_sym_addressof_expression_token1] = ACTIONS(9348), + [aux_sym_type_of_expression_token1] = ACTIONS(9348), + [aux_sym_unary_expression_token1] = ACTIONS(9348), + [sym_string_literal] = ACTIONS(9350), + [sym_number_literal] = ACTIONS(9350), + [aux_sym_boolean_literal_token1] = ACTIONS(9348), + [aux_sym_boolean_literal_token2] = ACTIONS(9348), + [sym_nothing_literal] = ACTIONS(9348), + [sym_null_literal] = ACTIONS(9348), + [sym_empty_literal] = ACTIONS(9348), + [sym_date_literal] = ACTIONS(9350), + [anon_sym_POUND] = ACTIONS(9348), + }, + [STATE(6820)] = { + [sym_identifier] = ACTIONS(8776), + [sym_newline] = ACTIONS(8778), + [anon_sym_COLON] = ACTIONS(8778), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8776), + [aux_sym_frm_property_statement_token1] = ACTIONS(8776), + [anon_sym_DOT] = ACTIONS(8776), + [anon_sym_BANG] = ACTIONS(8778), + [aux_sym__attribute_identifier_token1] = ACTIONS(8776), + [aux_sym_option_statement_token3] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8776), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8776), + [aux_sym_preprocessor_const_token1] = ACTIONS(8776), + [sym_static_modifier] = ACTIONS(8776), + [sym__dim_keyword] = ACTIONS(8776), + [sym__redim_keyword] = ACTIONS(8776), + [aux_sym_get_accessor_token1] = ACTIONS(8776), + [aux_sym_set_accessor_token1] = ACTIONS(8776), + [anon_sym_COMMA] = ACTIONS(8778), + [aux_sym_const_declaration_token1] = ACTIONS(8776), + [anon_sym_LPAREN] = ACTIONS(8778), + [aux_sym_as_type_clause_token2] = ACTIONS(8776), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8776), + [aux_sym_visibility_token1] = ACTIONS(8776), + [aux_sym_visibility_token2] = ACTIONS(8776), + [aux_sym_elseif_fragment_token1] = ACTIONS(8776), + [aux_sym_else_fragment_token1] = ACTIONS(8776), + [aux_sym_select_statement_token1] = ACTIONS(8776), + [aux_sym__for_header_token1] = ACTIONS(8776), + [aux_sym_do_statement_token1] = ACTIONS(8776), + [aux_sym_do_condition_token1] = ACTIONS(8776), + [aux_sym_with_statement_token1] = ACTIONS(8776), + [aux_sym_exit_statement_token1] = ACTIONS(8776), + [sym_end_statement] = ACTIONS(8778), + [aux_sym_on_goto_statement_token1] = ACTIONS(8776), + [aux_sym_on_goto_statement_token2] = ACTIONS(8776), + [aux_sym_on_error_statement_token2] = ACTIONS(8776), + [sym__ambiguous_redim_statement] = ACTIONS(8778), + [aux_sym_erase_statement_token1] = ACTIONS(8776), + [aux_sym_open_statement_token1] = ACTIONS(8776), + [aux_sym_file_mode_token2] = ACTIONS(8776), + [aux_sym_file_access_token2] = ACTIONS(8776), + [aux_sym_file_lock_token2] = ACTIONS(8776), + [aux_sym_print_statement_token1] = ACTIONS(8776), + [anon_sym_PLUS] = ACTIONS(8778), + [anon_sym_DASH] = ACTIONS(8776), + [anon_sym_QMARK] = ACTIONS(8778), + [aux_sym_close_statement_token1] = ACTIONS(8776), + [aux_sym_put_statement_token1] = ACTIONS(8776), + [aux_sym_unlock_statement_token1] = ACTIONS(8776), + [aux_sym_seek_statement_token1] = ACTIONS(8776), + [sym_reset_statement] = ACTIONS(8776), + [aux_sym_raise_event_statement_token1] = ACTIONS(8776), + [sym_stop_statement] = ACTIONS(8776), + [sym_beep_statement] = ACTIONS(8776), + [aux_sym_unload_statement_token1] = ACTIONS(8776), + [aux_sym_def_type_statement_token1] = ACTIONS(8776), + [aux_sym_def_type_statement_token2] = ACTIONS(8776), + [aux_sym_def_type_statement_token3] = ACTIONS(8776), + [aux_sym_def_type_statement_token4] = ACTIONS(8776), + [aux_sym_def_type_statement_token5] = ACTIONS(8776), + [aux_sym_def_type_statement_token6] = ACTIONS(8776), + [aux_sym_def_type_statement_token7] = ACTIONS(8776), + [aux_sym_def_type_statement_token8] = ACTIONS(8776), + [aux_sym_def_type_statement_token9] = ACTIONS(8776), + [aux_sym_def_type_statement_token10] = ACTIONS(8776), + [aux_sym_def_type_statement_token11] = ACTIONS(8776), + [aux_sym_def_type_statement_token12] = ACTIONS(8776), + [aux_sym_def_type_statement_token13] = ACTIONS(8776), + [aux_sym_def_type_statement_token14] = ACTIONS(8776), + [aux_sym_call_statement_token1] = ACTIONS(8776), + [sym__ambiguous_call_statement] = ACTIONS(8776), + [aux_sym_addressof_expression_token1] = ACTIONS(8776), + [aux_sym_type_of_expression_token1] = ACTIONS(8776), + [aux_sym_unary_expression_token1] = ACTIONS(8776), + [sym_string_literal] = ACTIONS(8778), + [sym_number_literal] = ACTIONS(8778), + [aux_sym_boolean_literal_token1] = ACTIONS(8776), + [aux_sym_boolean_literal_token2] = ACTIONS(8776), + [sym_nothing_literal] = ACTIONS(8776), + [sym_null_literal] = ACTIONS(8776), + [sym_empty_literal] = ACTIONS(8776), + [sym_date_literal] = ACTIONS(8778), + [anon_sym_POUND] = ACTIONS(8776), + }, + [STATE(6821)] = { + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [anon_sym_COLON] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym__attribute_identifier_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [sym__redim_keyword] = ACTIONS(4593), + [aux_sym_get_accessor_token1] = ACTIONS(4593), + [aux_sym_set_accessor_token1] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [aux_sym_as_type_clause_token2] = ACTIONS(4593), + [aux_sym_dotted_type_expression_token1] = ACTIONS(4593), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_elseif_fragment_token1] = ACTIONS(4593), + [aux_sym_else_fragment_token1] = ACTIONS(4593), + [aux_sym_select_statement_token1] = ACTIONS(4593), + [aux_sym__for_header_token1] = ACTIONS(4593), + [aux_sym_do_statement_token1] = ACTIONS(4593), + [aux_sym_do_condition_token1] = ACTIONS(4593), + [aux_sym_with_statement_token1] = ACTIONS(4593), + [aux_sym_exit_statement_token1] = ACTIONS(4593), + [sym_end_statement] = ACTIONS(4595), + [aux_sym_on_goto_statement_token1] = ACTIONS(4593), + [aux_sym_on_goto_statement_token2] = ACTIONS(4593), + [aux_sym_on_error_statement_token2] = ACTIONS(4593), + [sym__ambiguous_redim_statement] = ACTIONS(4595), + [aux_sym_erase_statement_token1] = ACTIONS(4593), + [aux_sym_open_statement_token1] = ACTIONS(4593), + [aux_sym_file_mode_token2] = ACTIONS(4593), + [aux_sym_file_access_token2] = ACTIONS(4593), + [aux_sym_file_lock_token2] = ACTIONS(4593), + [aux_sym_print_statement_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_QMARK] = ACTIONS(4595), + [aux_sym_close_statement_token1] = ACTIONS(4593), + [aux_sym_put_statement_token1] = ACTIONS(4593), + [aux_sym_unlock_statement_token1] = ACTIONS(4593), + [aux_sym_seek_statement_token1] = ACTIONS(4593), + [sym_reset_statement] = ACTIONS(4593), + [aux_sym_raise_event_statement_token1] = ACTIONS(4593), + [sym_stop_statement] = ACTIONS(4593), + [sym_beep_statement] = ACTIONS(4593), + [aux_sym_unload_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_call_statement_token1] = ACTIONS(4593), + [sym__ambiguous_call_statement] = ACTIONS(4593), + [aux_sym_addressof_expression_token1] = ACTIONS(4593), + [aux_sym_type_of_expression_token1] = ACTIONS(4593), + [aux_sym_unary_expression_token1] = ACTIONS(4593), + [sym_string_literal] = ACTIONS(4595), + [sym_number_literal] = ACTIONS(4595), + [aux_sym_boolean_literal_token1] = ACTIONS(4593), + [aux_sym_boolean_literal_token2] = ACTIONS(4593), + [sym_nothing_literal] = ACTIONS(4593), + [sym_null_literal] = ACTIONS(4593), + [sym_empty_literal] = ACTIONS(4593), + [sym_date_literal] = ACTIONS(4595), + [anon_sym_POUND] = ACTIONS(4593), + }, + [STATE(6822)] = { + [sym_identifier] = ACTIONS(8801), + [sym_newline] = ACTIONS(8803), + [anon_sym_COLON] = ACTIONS(8803), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8801), + [aux_sym_frm_property_statement_token1] = ACTIONS(8801), + [anon_sym_DOT] = ACTIONS(8801), + [anon_sym_BANG] = ACTIONS(8803), + [aux_sym__attribute_identifier_token1] = ACTIONS(8801), + [aux_sym_option_statement_token3] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8801), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8801), + [aux_sym_preprocessor_const_token1] = ACTIONS(8801), + [sym_static_modifier] = ACTIONS(8801), + [sym__dim_keyword] = ACTIONS(8801), + [sym__redim_keyword] = ACTIONS(8801), + [aux_sym_get_accessor_token1] = ACTIONS(8801), + [aux_sym_set_accessor_token1] = ACTIONS(8801), + [anon_sym_COMMA] = ACTIONS(8803), + [aux_sym_const_declaration_token1] = ACTIONS(8801), + [anon_sym_LPAREN] = ACTIONS(8803), + [aux_sym_as_type_clause_token2] = ACTIONS(8801), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8801), + [aux_sym_visibility_token1] = ACTIONS(8801), + [aux_sym_visibility_token2] = ACTIONS(8801), + [aux_sym_elseif_fragment_token1] = ACTIONS(8801), + [aux_sym_else_fragment_token1] = ACTIONS(8801), + [aux_sym_select_statement_token1] = ACTIONS(8801), + [aux_sym__for_header_token1] = ACTIONS(8801), + [aux_sym_do_statement_token1] = ACTIONS(8801), + [aux_sym_do_condition_token1] = ACTIONS(8801), + [aux_sym_with_statement_token1] = ACTIONS(8801), + [aux_sym_exit_statement_token1] = ACTIONS(8801), + [sym_end_statement] = ACTIONS(8803), + [aux_sym_on_goto_statement_token1] = ACTIONS(8801), + [aux_sym_on_goto_statement_token2] = ACTIONS(8801), + [aux_sym_on_error_statement_token2] = ACTIONS(8801), + [sym__ambiguous_redim_statement] = ACTIONS(8803), + [aux_sym_erase_statement_token1] = ACTIONS(8801), + [aux_sym_open_statement_token1] = ACTIONS(8801), + [aux_sym_file_mode_token2] = ACTIONS(8801), + [aux_sym_file_access_token2] = ACTIONS(8801), + [aux_sym_file_lock_token2] = ACTIONS(8801), + [aux_sym_print_statement_token1] = ACTIONS(8801), + [anon_sym_PLUS] = ACTIONS(8803), + [anon_sym_DASH] = ACTIONS(8801), + [anon_sym_QMARK] = ACTIONS(8803), + [aux_sym_close_statement_token1] = ACTIONS(8801), + [aux_sym_put_statement_token1] = ACTIONS(8801), + [aux_sym_unlock_statement_token1] = ACTIONS(8801), + [aux_sym_seek_statement_token1] = ACTIONS(8801), + [sym_reset_statement] = ACTIONS(8801), + [aux_sym_raise_event_statement_token1] = ACTIONS(8801), + [sym_stop_statement] = ACTIONS(8801), + [sym_beep_statement] = ACTIONS(8801), + [aux_sym_unload_statement_token1] = ACTIONS(8801), + [aux_sym_def_type_statement_token1] = ACTIONS(8801), + [aux_sym_def_type_statement_token2] = ACTIONS(8801), + [aux_sym_def_type_statement_token3] = ACTIONS(8801), + [aux_sym_def_type_statement_token4] = ACTIONS(8801), + [aux_sym_def_type_statement_token5] = ACTIONS(8801), + [aux_sym_def_type_statement_token6] = ACTIONS(8801), + [aux_sym_def_type_statement_token7] = ACTIONS(8801), + [aux_sym_def_type_statement_token8] = ACTIONS(8801), + [aux_sym_def_type_statement_token9] = ACTIONS(8801), + [aux_sym_def_type_statement_token10] = ACTIONS(8801), + [aux_sym_def_type_statement_token11] = ACTIONS(8801), + [aux_sym_def_type_statement_token12] = ACTIONS(8801), + [aux_sym_def_type_statement_token13] = ACTIONS(8801), + [aux_sym_def_type_statement_token14] = ACTIONS(8801), + [aux_sym_call_statement_token1] = ACTIONS(8801), + [sym__ambiguous_call_statement] = ACTIONS(8801), + [aux_sym_addressof_expression_token1] = ACTIONS(8801), + [aux_sym_type_of_expression_token1] = ACTIONS(8801), + [aux_sym_unary_expression_token1] = ACTIONS(8801), + [sym_string_literal] = ACTIONS(8803), + [sym_number_literal] = ACTIONS(8803), + [aux_sym_boolean_literal_token1] = ACTIONS(8801), + [aux_sym_boolean_literal_token2] = ACTIONS(8801), + [sym_nothing_literal] = ACTIONS(8801), + [sym_null_literal] = ACTIONS(8801), + [sym_empty_literal] = ACTIONS(8801), + [sym_date_literal] = ACTIONS(8803), + [anon_sym_POUND] = ACTIONS(8801), + }, + [STATE(6823)] = { + [sym_identifier] = ACTIONS(8702), + [sym_newline] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(8704), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8702), + [aux_sym_frm_property_statement_token1] = ACTIONS(8702), + [anon_sym_DOT] = ACTIONS(8702), + [anon_sym_BANG] = ACTIONS(8704), + [aux_sym__attribute_identifier_token1] = ACTIONS(8702), + [aux_sym_option_statement_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8702), + [aux_sym_preprocessor_const_token1] = ACTIONS(8702), + [sym_static_modifier] = ACTIONS(8702), + [sym__dim_keyword] = ACTIONS(8702), + [sym__redim_keyword] = ACTIONS(8702), + [aux_sym_get_accessor_token1] = ACTIONS(8702), + [aux_sym_set_accessor_token1] = ACTIONS(8702), + [aux_sym_const_declaration_token1] = ACTIONS(8702), + [anon_sym_LPAREN] = ACTIONS(8704), + [aux_sym_as_type_clause_token2] = ACTIONS(8702), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8702), + [aux_sym_visibility_token1] = ACTIONS(8702), + [aux_sym_visibility_token2] = ACTIONS(8702), + [aux_sym_elseif_fragment_token1] = ACTIONS(8702), + [aux_sym_else_fragment_token1] = ACTIONS(8702), + [aux_sym_select_statement_token1] = ACTIONS(8702), + [aux_sym__for_header_token1] = ACTIONS(8702), + [aux_sym_do_statement_token1] = ACTIONS(8702), + [aux_sym_do_condition_token1] = ACTIONS(8702), + [aux_sym_while_statement_token1] = ACTIONS(8702), + [aux_sym_with_statement_token1] = ACTIONS(8702), + [aux_sym_exit_statement_token1] = ACTIONS(8702), + [sym_end_statement] = ACTIONS(8704), + [aux_sym_on_goto_statement_token1] = ACTIONS(8702), + [aux_sym_on_goto_statement_token2] = ACTIONS(8702), + [aux_sym_on_error_statement_token2] = ACTIONS(8702), + [sym__ambiguous_redim_statement] = ACTIONS(8704), + [aux_sym_erase_statement_token1] = ACTIONS(8702), + [aux_sym_open_statement_token1] = ACTIONS(8702), + [aux_sym_file_mode_token2] = ACTIONS(8702), + [aux_sym_file_access_token2] = ACTIONS(8702), + [aux_sym_file_lock_token2] = ACTIONS(8702), + [aux_sym_print_statement_token1] = ACTIONS(8702), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_DASH] = ACTIONS(8702), + [anon_sym_QMARK] = ACTIONS(8704), + [aux_sym_close_statement_token1] = ACTIONS(8702), + [aux_sym_put_statement_token1] = ACTIONS(8702), + [aux_sym_unlock_statement_token1] = ACTIONS(8702), + [aux_sym_seek_statement_token1] = ACTIONS(8702), + [sym_reset_statement] = ACTIONS(8702), + [aux_sym_raise_event_statement_token1] = ACTIONS(8702), + [sym_stop_statement] = ACTIONS(8702), + [sym_beep_statement] = ACTIONS(8702), + [aux_sym_unload_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token2] = ACTIONS(8702), + [aux_sym_def_type_statement_token3] = ACTIONS(8702), + [aux_sym_def_type_statement_token4] = ACTIONS(8702), + [aux_sym_def_type_statement_token5] = ACTIONS(8702), + [aux_sym_def_type_statement_token6] = ACTIONS(8702), + [aux_sym_def_type_statement_token7] = ACTIONS(8702), + [aux_sym_def_type_statement_token8] = ACTIONS(8702), + [aux_sym_def_type_statement_token9] = ACTIONS(8702), + [aux_sym_def_type_statement_token10] = ACTIONS(8702), + [aux_sym_def_type_statement_token11] = ACTIONS(8702), + [aux_sym_def_type_statement_token12] = ACTIONS(8702), + [aux_sym_def_type_statement_token13] = ACTIONS(8702), + [aux_sym_def_type_statement_token14] = ACTIONS(8702), + [aux_sym_call_statement_token1] = ACTIONS(8702), + [sym__ambiguous_call_statement] = ACTIONS(8702), + [aux_sym_addressof_expression_token1] = ACTIONS(8702), + [aux_sym_type_of_expression_token1] = ACTIONS(8702), + [aux_sym_unary_expression_token1] = ACTIONS(8702), + [sym_string_literal] = ACTIONS(8704), + [sym_number_literal] = ACTIONS(8704), + [aux_sym_boolean_literal_token1] = ACTIONS(8702), + [aux_sym_boolean_literal_token2] = ACTIONS(8702), + [sym_nothing_literal] = ACTIONS(8702), + [sym_null_literal] = ACTIONS(8702), + [sym_empty_literal] = ACTIONS(8702), + [sym_date_literal] = ACTIONS(8704), + [anon_sym_POUND] = ACTIONS(8702), + }, + [STATE(6824)] = { + [sym_identifier] = ACTIONS(8992), + [sym_newline] = ACTIONS(8994), + [anon_sym_COLON] = ACTIONS(8994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8992), + [aux_sym_frm_property_statement_token1] = ACTIONS(8992), + [anon_sym_DOT] = ACTIONS(8992), + [anon_sym_BANG] = ACTIONS(8994), + [aux_sym__attribute_identifier_token1] = ACTIONS(8992), + [aux_sym_option_statement_token3] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8992), + [aux_sym_preprocessor_const_token1] = ACTIONS(8992), + [sym_static_modifier] = ACTIONS(8992), + [sym__dim_keyword] = ACTIONS(8992), + [sym__redim_keyword] = ACTIONS(8992), + [aux_sym_get_accessor_token1] = ACTIONS(8992), + [aux_sym_set_accessor_token1] = ACTIONS(8992), + [aux_sym_const_declaration_token1] = ACTIONS(8992), + [anon_sym_LPAREN] = ACTIONS(8994), + [aux_sym_as_type_clause_token2] = ACTIONS(8992), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8992), + [aux_sym_visibility_token1] = ACTIONS(8992), + [aux_sym_visibility_token2] = ACTIONS(8992), + [aux_sym_elseif_fragment_token1] = ACTIONS(8992), + [aux_sym_else_fragment_token1] = ACTIONS(8992), + [aux_sym_select_statement_token1] = ACTIONS(8992), + [aux_sym__for_header_token1] = ACTIONS(8992), + [aux_sym_do_statement_token1] = ACTIONS(8992), + [aux_sym_do_condition_token1] = ACTIONS(8992), + [aux_sym_while_statement_token1] = ACTIONS(8992), + [aux_sym_with_statement_token1] = ACTIONS(8992), + [aux_sym_exit_statement_token1] = ACTIONS(8992), + [sym_end_statement] = ACTIONS(8994), + [aux_sym_on_goto_statement_token1] = ACTIONS(8992), + [aux_sym_on_goto_statement_token2] = ACTIONS(8992), + [aux_sym_on_error_statement_token2] = ACTIONS(8992), + [sym__ambiguous_redim_statement] = ACTIONS(8994), + [aux_sym_erase_statement_token1] = ACTIONS(8992), + [aux_sym_open_statement_token1] = ACTIONS(8992), + [aux_sym_file_mode_token2] = ACTIONS(8992), + [aux_sym_file_access_token2] = ACTIONS(8992), + [aux_sym_file_lock_token2] = ACTIONS(8992), + [aux_sym_print_statement_token1] = ACTIONS(8992), + [anon_sym_PLUS] = ACTIONS(8994), + [anon_sym_DASH] = ACTIONS(8992), + [anon_sym_QMARK] = ACTIONS(8994), + [aux_sym_close_statement_token1] = ACTIONS(8992), + [aux_sym_put_statement_token1] = ACTIONS(8992), + [aux_sym_unlock_statement_token1] = ACTIONS(8992), + [aux_sym_seek_statement_token1] = ACTIONS(8992), + [sym_reset_statement] = ACTIONS(8992), + [aux_sym_raise_event_statement_token1] = ACTIONS(8992), + [sym_stop_statement] = ACTIONS(8992), + [sym_beep_statement] = ACTIONS(8992), + [aux_sym_unload_statement_token1] = ACTIONS(8992), + [aux_sym_def_type_statement_token1] = ACTIONS(8992), + [aux_sym_def_type_statement_token2] = ACTIONS(8992), + [aux_sym_def_type_statement_token3] = ACTIONS(8992), + [aux_sym_def_type_statement_token4] = ACTIONS(8992), + [aux_sym_def_type_statement_token5] = ACTIONS(8992), + [aux_sym_def_type_statement_token6] = ACTIONS(8992), + [aux_sym_def_type_statement_token7] = ACTIONS(8992), + [aux_sym_def_type_statement_token8] = ACTIONS(8992), + [aux_sym_def_type_statement_token9] = ACTIONS(8992), + [aux_sym_def_type_statement_token10] = ACTIONS(8992), + [aux_sym_def_type_statement_token11] = ACTIONS(8992), + [aux_sym_def_type_statement_token12] = ACTIONS(8992), + [aux_sym_def_type_statement_token13] = ACTIONS(8992), + [aux_sym_def_type_statement_token14] = ACTIONS(8992), + [aux_sym_call_statement_token1] = ACTIONS(8992), + [sym__ambiguous_call_statement] = ACTIONS(8992), + [aux_sym_addressof_expression_token1] = ACTIONS(8992), + [aux_sym_type_of_expression_token1] = ACTIONS(8992), + [aux_sym_unary_expression_token1] = ACTIONS(8992), + [sym_string_literal] = ACTIONS(8994), + [sym_number_literal] = ACTIONS(8994), + [aux_sym_boolean_literal_token1] = ACTIONS(8992), + [aux_sym_boolean_literal_token2] = ACTIONS(8992), + [sym_nothing_literal] = ACTIONS(8992), + [sym_null_literal] = ACTIONS(8992), + [sym_empty_literal] = ACTIONS(8992), + [sym_date_literal] = ACTIONS(8994), + [anon_sym_POUND] = ACTIONS(8992), + }, + [STATE(6825)] = { + [sym_identifier] = ACTIONS(8996), + [sym_newline] = ACTIONS(8998), + [anon_sym_COLON] = ACTIONS(8998), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8996), + [aux_sym_frm_property_statement_token1] = ACTIONS(8996), + [anon_sym_DOT] = ACTIONS(8996), + [anon_sym_BANG] = ACTIONS(8998), + [aux_sym__attribute_identifier_token1] = ACTIONS(8996), + [aux_sym_option_statement_token3] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8996), + [aux_sym_preprocessor_const_token1] = ACTIONS(8996), + [sym_static_modifier] = ACTIONS(8996), + [sym__dim_keyword] = ACTIONS(8996), + [sym__redim_keyword] = ACTIONS(8996), + [aux_sym_get_accessor_token1] = ACTIONS(8996), + [aux_sym_set_accessor_token1] = ACTIONS(8996), + [aux_sym_const_declaration_token1] = ACTIONS(8996), + [anon_sym_LPAREN] = ACTIONS(8998), + [aux_sym_as_type_clause_token2] = ACTIONS(8996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8996), + [aux_sym_visibility_token1] = ACTIONS(8996), + [aux_sym_visibility_token2] = ACTIONS(8996), + [aux_sym_elseif_fragment_token1] = ACTIONS(8996), + [aux_sym_else_fragment_token1] = ACTIONS(8996), + [aux_sym_select_statement_token1] = ACTIONS(8996), + [aux_sym__for_header_token1] = ACTIONS(8996), + [aux_sym_do_statement_token1] = ACTIONS(8996), + [aux_sym_do_condition_token1] = ACTIONS(8996), + [aux_sym_while_statement_token1] = ACTIONS(8996), + [aux_sym_with_statement_token1] = ACTIONS(8996), + [aux_sym_exit_statement_token1] = ACTIONS(8996), + [sym_end_statement] = ACTIONS(8998), + [aux_sym_on_goto_statement_token1] = ACTIONS(8996), + [aux_sym_on_goto_statement_token2] = ACTIONS(8996), + [aux_sym_on_error_statement_token2] = ACTIONS(8996), + [sym__ambiguous_redim_statement] = ACTIONS(8998), + [aux_sym_erase_statement_token1] = ACTIONS(8996), + [aux_sym_open_statement_token1] = ACTIONS(8996), + [aux_sym_file_mode_token2] = ACTIONS(8996), + [aux_sym_file_access_token2] = ACTIONS(8996), + [aux_sym_file_lock_token2] = ACTIONS(8996), + [aux_sym_print_statement_token1] = ACTIONS(8996), + [anon_sym_PLUS] = ACTIONS(8998), + [anon_sym_DASH] = ACTIONS(8996), + [anon_sym_QMARK] = ACTIONS(8998), + [aux_sym_close_statement_token1] = ACTIONS(8996), + [aux_sym_put_statement_token1] = ACTIONS(8996), + [aux_sym_unlock_statement_token1] = ACTIONS(8996), + [aux_sym_seek_statement_token1] = ACTIONS(8996), + [sym_reset_statement] = ACTIONS(8996), + [aux_sym_raise_event_statement_token1] = ACTIONS(8996), + [sym_stop_statement] = ACTIONS(8996), + [sym_beep_statement] = ACTIONS(8996), + [aux_sym_unload_statement_token1] = ACTIONS(8996), + [aux_sym_def_type_statement_token1] = ACTIONS(8996), + [aux_sym_def_type_statement_token2] = ACTIONS(8996), + [aux_sym_def_type_statement_token3] = ACTIONS(8996), + [aux_sym_def_type_statement_token4] = ACTIONS(8996), + [aux_sym_def_type_statement_token5] = ACTIONS(8996), + [aux_sym_def_type_statement_token6] = ACTIONS(8996), + [aux_sym_def_type_statement_token7] = ACTIONS(8996), + [aux_sym_def_type_statement_token8] = ACTIONS(8996), + [aux_sym_def_type_statement_token9] = ACTIONS(8996), + [aux_sym_def_type_statement_token10] = ACTIONS(8996), + [aux_sym_def_type_statement_token11] = ACTIONS(8996), + [aux_sym_def_type_statement_token12] = ACTIONS(8996), + [aux_sym_def_type_statement_token13] = ACTIONS(8996), + [aux_sym_def_type_statement_token14] = ACTIONS(8996), + [aux_sym_call_statement_token1] = ACTIONS(8996), + [sym__ambiguous_call_statement] = ACTIONS(8996), + [aux_sym_addressof_expression_token1] = ACTIONS(8996), + [aux_sym_type_of_expression_token1] = ACTIONS(8996), + [aux_sym_unary_expression_token1] = ACTIONS(8996), + [sym_string_literal] = ACTIONS(8998), + [sym_number_literal] = ACTIONS(8998), + [aux_sym_boolean_literal_token1] = ACTIONS(8996), + [aux_sym_boolean_literal_token2] = ACTIONS(8996), + [sym_nothing_literal] = ACTIONS(8996), + [sym_null_literal] = ACTIONS(8996), + [sym_empty_literal] = ACTIONS(8996), + [sym_date_literal] = ACTIONS(8998), + [anon_sym_POUND] = ACTIONS(8996), + }, + [STATE(6826)] = { + [sym_identifier] = ACTIONS(9000), + [sym_newline] = ACTIONS(9002), + [anon_sym_COLON] = ACTIONS(9002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9000), + [aux_sym_frm_property_statement_token1] = ACTIONS(9000), + [anon_sym_DOT] = ACTIONS(9000), + [anon_sym_BANG] = ACTIONS(9002), + [aux_sym__attribute_identifier_token1] = ACTIONS(9000), + [aux_sym_option_statement_token3] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9000), + [aux_sym_preprocessor_const_token1] = ACTIONS(9000), + [sym_static_modifier] = ACTIONS(9000), + [sym__dim_keyword] = ACTIONS(9000), + [sym__redim_keyword] = ACTIONS(9000), + [aux_sym_get_accessor_token1] = ACTIONS(9000), + [aux_sym_set_accessor_token1] = ACTIONS(9000), + [aux_sym_const_declaration_token1] = ACTIONS(9000), + [anon_sym_LPAREN] = ACTIONS(9002), + [aux_sym_as_type_clause_token2] = ACTIONS(9000), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9000), + [aux_sym_visibility_token1] = ACTIONS(9000), + [aux_sym_visibility_token2] = ACTIONS(9000), + [aux_sym_elseif_fragment_token1] = ACTIONS(9000), + [aux_sym_else_fragment_token1] = ACTIONS(9000), + [aux_sym_select_statement_token1] = ACTIONS(9000), + [aux_sym__for_header_token1] = ACTIONS(9000), + [aux_sym_do_statement_token1] = ACTIONS(9000), + [aux_sym_do_condition_token1] = ACTIONS(9000), + [aux_sym_while_statement_token1] = ACTIONS(9000), + [aux_sym_with_statement_token1] = ACTIONS(9000), + [aux_sym_exit_statement_token1] = ACTIONS(9000), + [sym_end_statement] = ACTIONS(9002), + [aux_sym_on_goto_statement_token1] = ACTIONS(9000), + [aux_sym_on_goto_statement_token2] = ACTIONS(9000), + [aux_sym_on_error_statement_token2] = ACTIONS(9000), + [sym__ambiguous_redim_statement] = ACTIONS(9002), + [aux_sym_erase_statement_token1] = ACTIONS(9000), + [aux_sym_open_statement_token1] = ACTIONS(9000), + [aux_sym_file_mode_token2] = ACTIONS(9000), + [aux_sym_file_access_token2] = ACTIONS(9000), + [aux_sym_file_lock_token2] = ACTIONS(9000), + [aux_sym_print_statement_token1] = ACTIONS(9000), + [anon_sym_PLUS] = ACTIONS(9002), + [anon_sym_DASH] = ACTIONS(9000), + [anon_sym_QMARK] = ACTIONS(9002), + [aux_sym_close_statement_token1] = ACTIONS(9000), + [aux_sym_put_statement_token1] = ACTIONS(9000), + [aux_sym_unlock_statement_token1] = ACTIONS(9000), + [aux_sym_seek_statement_token1] = ACTIONS(9000), + [sym_reset_statement] = ACTIONS(9000), + [aux_sym_raise_event_statement_token1] = ACTIONS(9000), + [sym_stop_statement] = ACTIONS(9000), + [sym_beep_statement] = ACTIONS(9000), + [aux_sym_unload_statement_token1] = ACTIONS(9000), + [aux_sym_def_type_statement_token1] = ACTIONS(9000), + [aux_sym_def_type_statement_token2] = ACTIONS(9000), + [aux_sym_def_type_statement_token3] = ACTIONS(9000), + [aux_sym_def_type_statement_token4] = ACTIONS(9000), + [aux_sym_def_type_statement_token5] = ACTIONS(9000), + [aux_sym_def_type_statement_token6] = ACTIONS(9000), + [aux_sym_def_type_statement_token7] = ACTIONS(9000), + [aux_sym_def_type_statement_token8] = ACTIONS(9000), + [aux_sym_def_type_statement_token9] = ACTIONS(9000), + [aux_sym_def_type_statement_token10] = ACTIONS(9000), + [aux_sym_def_type_statement_token11] = ACTIONS(9000), + [aux_sym_def_type_statement_token12] = ACTIONS(9000), + [aux_sym_def_type_statement_token13] = ACTIONS(9000), + [aux_sym_def_type_statement_token14] = ACTIONS(9000), + [aux_sym_call_statement_token1] = ACTIONS(9000), + [sym__ambiguous_call_statement] = ACTIONS(9000), + [aux_sym_addressof_expression_token1] = ACTIONS(9000), + [aux_sym_type_of_expression_token1] = ACTIONS(9000), + [aux_sym_unary_expression_token1] = ACTIONS(9000), + [sym_string_literal] = ACTIONS(9002), + [sym_number_literal] = ACTIONS(9002), + [aux_sym_boolean_literal_token1] = ACTIONS(9000), + [aux_sym_boolean_literal_token2] = ACTIONS(9000), + [sym_nothing_literal] = ACTIONS(9000), + [sym_null_literal] = ACTIONS(9000), + [sym_empty_literal] = ACTIONS(9000), + [sym_date_literal] = ACTIONS(9002), + [anon_sym_POUND] = ACTIONS(9000), + }, + [STATE(6827)] = { + [sym_identifier] = ACTIONS(9004), + [sym_newline] = ACTIONS(9006), + [anon_sym_COLON] = ACTIONS(9006), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9004), + [aux_sym_frm_property_statement_token1] = ACTIONS(9004), + [anon_sym_DOT] = ACTIONS(9004), + [anon_sym_BANG] = ACTIONS(9006), + [aux_sym__attribute_identifier_token1] = ACTIONS(9004), + [aux_sym_option_statement_token3] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9004), + [aux_sym_preprocessor_const_token1] = ACTIONS(9004), + [sym_static_modifier] = ACTIONS(9004), + [sym__dim_keyword] = ACTIONS(9004), + [sym__redim_keyword] = ACTIONS(9004), + [aux_sym_get_accessor_token1] = ACTIONS(9004), + [aux_sym_set_accessor_token1] = ACTIONS(9004), + [aux_sym_const_declaration_token1] = ACTIONS(9004), + [anon_sym_LPAREN] = ACTIONS(9006), + [aux_sym_as_type_clause_token2] = ACTIONS(9004), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9004), + [aux_sym_visibility_token1] = ACTIONS(9004), + [aux_sym_visibility_token2] = ACTIONS(9004), + [aux_sym_elseif_fragment_token1] = ACTIONS(9004), + [aux_sym_else_fragment_token1] = ACTIONS(9004), + [aux_sym_select_statement_token1] = ACTIONS(9004), + [aux_sym__for_header_token1] = ACTIONS(9004), + [aux_sym_do_statement_token1] = ACTIONS(9004), + [aux_sym_do_condition_token1] = ACTIONS(9004), + [aux_sym_while_statement_token1] = ACTIONS(9004), + [aux_sym_with_statement_token1] = ACTIONS(9004), + [aux_sym_exit_statement_token1] = ACTIONS(9004), + [sym_end_statement] = ACTIONS(9006), + [aux_sym_on_goto_statement_token1] = ACTIONS(9004), + [aux_sym_on_goto_statement_token2] = ACTIONS(9004), + [aux_sym_on_error_statement_token2] = ACTIONS(9004), + [sym__ambiguous_redim_statement] = ACTIONS(9006), + [aux_sym_erase_statement_token1] = ACTIONS(9004), + [aux_sym_open_statement_token1] = ACTIONS(9004), + [aux_sym_file_mode_token2] = ACTIONS(9004), + [aux_sym_file_access_token2] = ACTIONS(9004), + [aux_sym_file_lock_token2] = ACTIONS(9004), + [aux_sym_print_statement_token1] = ACTIONS(9004), + [anon_sym_PLUS] = ACTIONS(9006), + [anon_sym_DASH] = ACTIONS(9004), + [anon_sym_QMARK] = ACTIONS(9006), + [aux_sym_close_statement_token1] = ACTIONS(9004), + [aux_sym_put_statement_token1] = ACTIONS(9004), + [aux_sym_unlock_statement_token1] = ACTIONS(9004), + [aux_sym_seek_statement_token1] = ACTIONS(9004), + [sym_reset_statement] = ACTIONS(9004), + [aux_sym_raise_event_statement_token1] = ACTIONS(9004), + [sym_stop_statement] = ACTIONS(9004), + [sym_beep_statement] = ACTIONS(9004), + [aux_sym_unload_statement_token1] = ACTIONS(9004), + [aux_sym_def_type_statement_token1] = ACTIONS(9004), + [aux_sym_def_type_statement_token2] = ACTIONS(9004), + [aux_sym_def_type_statement_token3] = ACTIONS(9004), + [aux_sym_def_type_statement_token4] = ACTIONS(9004), + [aux_sym_def_type_statement_token5] = ACTIONS(9004), + [aux_sym_def_type_statement_token6] = ACTIONS(9004), + [aux_sym_def_type_statement_token7] = ACTIONS(9004), + [aux_sym_def_type_statement_token8] = ACTIONS(9004), + [aux_sym_def_type_statement_token9] = ACTIONS(9004), + [aux_sym_def_type_statement_token10] = ACTIONS(9004), + [aux_sym_def_type_statement_token11] = ACTIONS(9004), + [aux_sym_def_type_statement_token12] = ACTIONS(9004), + [aux_sym_def_type_statement_token13] = ACTIONS(9004), + [aux_sym_def_type_statement_token14] = ACTIONS(9004), + [aux_sym_call_statement_token1] = ACTIONS(9004), + [sym__ambiguous_call_statement] = ACTIONS(9004), + [aux_sym_addressof_expression_token1] = ACTIONS(9004), + [aux_sym_type_of_expression_token1] = ACTIONS(9004), + [aux_sym_unary_expression_token1] = ACTIONS(9004), + [sym_string_literal] = ACTIONS(9006), + [sym_number_literal] = ACTIONS(9006), + [aux_sym_boolean_literal_token1] = ACTIONS(9004), + [aux_sym_boolean_literal_token2] = ACTIONS(9004), + [sym_nothing_literal] = ACTIONS(9004), + [sym_null_literal] = ACTIONS(9004), + [sym_empty_literal] = ACTIONS(9004), + [sym_date_literal] = ACTIONS(9006), + [anon_sym_POUND] = ACTIONS(9004), + }, + [STATE(6828)] = { + [sym_identifier] = ACTIONS(6621), + [sym_newline] = ACTIONS(6623), + [anon_sym_COLON] = ACTIONS(6623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6621), + [aux_sym_frm_property_statement_token1] = ACTIONS(6621), + [anon_sym_DOT] = ACTIONS(6621), + [anon_sym_BANG] = ACTIONS(6623), + [aux_sym__attribute_identifier_token1] = ACTIONS(6621), + [aux_sym_option_statement_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6621), + [aux_sym_preprocessor_const_token1] = ACTIONS(6621), + [sym_static_modifier] = ACTIONS(6621), + [sym__dim_keyword] = ACTIONS(6621), + [sym__redim_keyword] = ACTIONS(6621), + [aux_sym_get_accessor_token1] = ACTIONS(6621), + [aux_sym_set_accessor_token1] = ACTIONS(6621), + [aux_sym_const_declaration_token1] = ACTIONS(6621), + [anon_sym_LPAREN] = ACTIONS(6623), + [aux_sym_as_type_clause_token2] = ACTIONS(6621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6621), + [aux_sym_visibility_token1] = ACTIONS(6621), + [aux_sym_visibility_token2] = ACTIONS(6621), + [aux_sym_elseif_fragment_token1] = ACTIONS(6621), + [aux_sym_else_fragment_token1] = ACTIONS(6621), + [aux_sym_select_statement_token1] = ACTIONS(6621), + [aux_sym__for_header_token1] = ACTIONS(6621), + [aux_sym_do_statement_token1] = ACTIONS(6621), + [aux_sym_do_condition_token1] = ACTIONS(6621), + [aux_sym_with_statement_token1] = ACTIONS(6621), + [aux_sym_exit_statement_token1] = ACTIONS(6621), + [sym_end_statement] = ACTIONS(6623), + [aux_sym_on_goto_statement_token1] = ACTIONS(6621), + [aux_sym_on_goto_statement_token2] = ACTIONS(6621), + [aux_sym_on_error_statement_token2] = ACTIONS(6621), + [sym__ambiguous_redim_statement] = ACTIONS(6623), + [aux_sym_erase_statement_token1] = ACTIONS(6621), + [aux_sym_open_statement_token1] = ACTIONS(6621), + [aux_sym_file_mode_token2] = ACTIONS(6621), + [aux_sym_file_access_token2] = ACTIONS(6621), + [aux_sym_file_lock_token2] = ACTIONS(6621), + [aux_sym_print_statement_token1] = ACTIONS(6621), + [anon_sym_PLUS] = ACTIONS(6623), + [anon_sym_DASH] = ACTIONS(6621), + [anon_sym_QMARK] = ACTIONS(6623), + [aux_sym_close_statement_token1] = ACTIONS(6621), + [aux_sym_put_statement_token1] = ACTIONS(6621), + [aux_sym_unlock_statement_token1] = ACTIONS(6621), + [aux_sym_seek_statement_token1] = ACTIONS(6621), + [sym_reset_statement] = ACTIONS(6621), + [aux_sym_raise_event_statement_token1] = ACTIONS(6621), + [sym_stop_statement] = ACTIONS(6621), + [sym_beep_statement] = ACTIONS(6621), + [aux_sym_unload_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token2] = ACTIONS(6621), + [aux_sym_def_type_statement_token3] = ACTIONS(6621), + [aux_sym_def_type_statement_token4] = ACTIONS(6621), + [aux_sym_def_type_statement_token5] = ACTIONS(6621), + [aux_sym_def_type_statement_token6] = ACTIONS(6621), + [aux_sym_def_type_statement_token7] = ACTIONS(6621), + [aux_sym_def_type_statement_token8] = ACTIONS(6621), + [aux_sym_def_type_statement_token9] = ACTIONS(6621), + [aux_sym_def_type_statement_token10] = ACTIONS(6621), + [aux_sym_def_type_statement_token11] = ACTIONS(6621), + [aux_sym_def_type_statement_token12] = ACTIONS(6621), + [aux_sym_def_type_statement_token13] = ACTIONS(6621), + [aux_sym_def_type_statement_token14] = ACTIONS(6621), + [aux_sym_call_statement_token1] = ACTIONS(6621), + [sym__ambiguous_call_statement] = ACTIONS(6621), + [aux_sym_addressof_expression_token1] = ACTIONS(6621), + [aux_sym_type_of_expression_token1] = ACTIONS(6621), + [aux_sym_unary_expression_token1] = ACTIONS(6621), + [sym_string_literal] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [aux_sym_boolean_literal_token1] = ACTIONS(6621), + [aux_sym_boolean_literal_token2] = ACTIONS(6621), + [sym_nothing_literal] = ACTIONS(6621), + [sym_null_literal] = ACTIONS(6621), + [sym_empty_literal] = ACTIONS(6621), + [sym_date_literal] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6621), + }, + [STATE(6829)] = { + [sym_identifier] = ACTIONS(8287), + [sym_newline] = ACTIONS(8289), + [anon_sym_COLON] = ACTIONS(8289), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8287), + [aux_sym_frm_property_statement_token1] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8287), + [anon_sym_BANG] = ACTIONS(8289), + [aux_sym__attribute_identifier_token1] = ACTIONS(8287), + [aux_sym_option_statement_token3] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8287), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8287), + [aux_sym_preprocessor_const_token1] = ACTIONS(8287), + [sym_static_modifier] = ACTIONS(8287), + [sym__dim_keyword] = ACTIONS(8287), + [sym__redim_keyword] = ACTIONS(8287), + [aux_sym_get_accessor_token1] = ACTIONS(8287), + [aux_sym_set_accessor_token1] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8289), + [aux_sym_const_declaration_token1] = ACTIONS(8287), + [anon_sym_LPAREN] = ACTIONS(8289), + [aux_sym_as_type_clause_token2] = ACTIONS(8287), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8287), + [aux_sym_visibility_token1] = ACTIONS(8287), + [aux_sym_visibility_token2] = ACTIONS(8287), + [aux_sym_elseif_fragment_token1] = ACTIONS(8287), + [aux_sym_else_fragment_token1] = ACTIONS(8287), + [aux_sym_select_statement_token1] = ACTIONS(8287), + [aux_sym__for_header_token1] = ACTIONS(8287), + [aux_sym_do_statement_token1] = ACTIONS(8287), + [aux_sym_do_condition_token1] = ACTIONS(8287), + [aux_sym_with_statement_token1] = ACTIONS(8287), + [aux_sym_exit_statement_token1] = ACTIONS(8287), + [sym_end_statement] = ACTIONS(8289), + [aux_sym_on_goto_statement_token1] = ACTIONS(8287), + [aux_sym_on_goto_statement_token2] = ACTIONS(8287), + [aux_sym_on_error_statement_token2] = ACTIONS(8287), + [sym__ambiguous_redim_statement] = ACTIONS(8289), + [aux_sym_erase_statement_token1] = ACTIONS(8287), + [aux_sym_open_statement_token1] = ACTIONS(8287), + [aux_sym_file_mode_token2] = ACTIONS(8287), + [aux_sym_file_access_token2] = ACTIONS(8287), + [aux_sym_file_lock_token2] = ACTIONS(8287), + [aux_sym_print_statement_token1] = ACTIONS(8287), + [anon_sym_PLUS] = ACTIONS(8289), + [anon_sym_DASH] = ACTIONS(8287), + [anon_sym_QMARK] = ACTIONS(8289), + [aux_sym_close_statement_token1] = ACTIONS(8287), + [aux_sym_put_statement_token1] = ACTIONS(8287), + [aux_sym_unlock_statement_token1] = ACTIONS(8287), + [aux_sym_seek_statement_token1] = ACTIONS(8287), + [sym_reset_statement] = ACTIONS(8287), + [aux_sym_raise_event_statement_token1] = ACTIONS(8287), + [sym_stop_statement] = ACTIONS(8287), + [sym_beep_statement] = ACTIONS(8287), + [aux_sym_unload_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token1] = ACTIONS(8287), + [aux_sym_def_type_statement_token2] = ACTIONS(8287), + [aux_sym_def_type_statement_token3] = ACTIONS(8287), + [aux_sym_def_type_statement_token4] = ACTIONS(8287), + [aux_sym_def_type_statement_token5] = ACTIONS(8287), + [aux_sym_def_type_statement_token6] = ACTIONS(8287), + [aux_sym_def_type_statement_token7] = ACTIONS(8287), + [aux_sym_def_type_statement_token8] = ACTIONS(8287), + [aux_sym_def_type_statement_token9] = ACTIONS(8287), + [aux_sym_def_type_statement_token10] = ACTIONS(8287), + [aux_sym_def_type_statement_token11] = ACTIONS(8287), + [aux_sym_def_type_statement_token12] = ACTIONS(8287), + [aux_sym_def_type_statement_token13] = ACTIONS(8287), + [aux_sym_def_type_statement_token14] = ACTIONS(8287), + [aux_sym_call_statement_token1] = ACTIONS(8287), + [sym__ambiguous_call_statement] = ACTIONS(8287), + [aux_sym_addressof_expression_token1] = ACTIONS(8287), + [aux_sym_type_of_expression_token1] = ACTIONS(8287), + [aux_sym_unary_expression_token1] = ACTIONS(8287), + [sym_string_literal] = ACTIONS(8289), + [sym_number_literal] = ACTIONS(8289), + [aux_sym_boolean_literal_token1] = ACTIONS(8287), + [aux_sym_boolean_literal_token2] = ACTIONS(8287), + [sym_nothing_literal] = ACTIONS(8287), + [sym_null_literal] = ACTIONS(8287), + [sym_empty_literal] = ACTIONS(8287), + [sym_date_literal] = ACTIONS(8289), + [anon_sym_POUND] = ACTIONS(8287), + }, + [STATE(6830)] = { + [sym_identifier] = ACTIONS(8283), + [sym_newline] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8283), + [aux_sym_frm_property_statement_token1] = ACTIONS(8283), + [anon_sym_DOT] = ACTIONS(8283), + [anon_sym_BANG] = ACTIONS(8285), + [aux_sym__attribute_identifier_token1] = ACTIONS(8283), + [aux_sym_option_statement_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8283), + [aux_sym_preprocessor_const_token1] = ACTIONS(8283), + [sym_static_modifier] = ACTIONS(8283), + [sym__dim_keyword] = ACTIONS(8283), + [sym__redim_keyword] = ACTIONS(8283), + [aux_sym_get_accessor_token1] = ACTIONS(8283), + [aux_sym_set_accessor_token1] = ACTIONS(8283), + [aux_sym_const_declaration_token1] = ACTIONS(8283), + [anon_sym_LPAREN] = ACTIONS(8285), + [aux_sym_as_type_clause_token2] = ACTIONS(8283), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8283), + [aux_sym_visibility_token1] = ACTIONS(8283), + [aux_sym_visibility_token2] = ACTIONS(8283), + [aux_sym_elseif_fragment_token1] = ACTIONS(8283), + [aux_sym_else_fragment_token1] = ACTIONS(8283), + [aux_sym_select_statement_token1] = ACTIONS(8283), + [aux_sym__for_header_token1] = ACTIONS(8283), + [aux_sym_do_statement_token1] = ACTIONS(8283), + [aux_sym_do_statement_token2] = ACTIONS(8283), + [aux_sym_do_condition_token1] = ACTIONS(8283), + [aux_sym_with_statement_token1] = ACTIONS(8283), + [aux_sym_exit_statement_token1] = ACTIONS(8283), + [sym_end_statement] = ACTIONS(8285), + [aux_sym_on_goto_statement_token1] = ACTIONS(8283), + [aux_sym_on_goto_statement_token2] = ACTIONS(8283), + [aux_sym_on_error_statement_token2] = ACTIONS(8283), + [sym__ambiguous_redim_statement] = ACTIONS(8285), + [aux_sym_erase_statement_token1] = ACTIONS(8283), + [aux_sym_open_statement_token1] = ACTIONS(8283), + [aux_sym_file_mode_token2] = ACTIONS(8283), + [aux_sym_file_access_token2] = ACTIONS(8283), + [aux_sym_file_lock_token2] = ACTIONS(8283), + [aux_sym_print_statement_token1] = ACTIONS(8283), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_DASH] = ACTIONS(8283), + [anon_sym_QMARK] = ACTIONS(8285), + [aux_sym_close_statement_token1] = ACTIONS(8283), + [aux_sym_put_statement_token1] = ACTIONS(8283), + [aux_sym_unlock_statement_token1] = ACTIONS(8283), + [aux_sym_seek_statement_token1] = ACTIONS(8283), + [sym_reset_statement] = ACTIONS(8283), + [aux_sym_raise_event_statement_token1] = ACTIONS(8283), + [sym_stop_statement] = ACTIONS(8283), + [sym_beep_statement] = ACTIONS(8283), + [aux_sym_unload_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token2] = ACTIONS(8283), + [aux_sym_def_type_statement_token3] = ACTIONS(8283), + [aux_sym_def_type_statement_token4] = ACTIONS(8283), + [aux_sym_def_type_statement_token5] = ACTIONS(8283), + [aux_sym_def_type_statement_token6] = ACTIONS(8283), + [aux_sym_def_type_statement_token7] = ACTIONS(8283), + [aux_sym_def_type_statement_token8] = ACTIONS(8283), + [aux_sym_def_type_statement_token9] = ACTIONS(8283), + [aux_sym_def_type_statement_token10] = ACTIONS(8283), + [aux_sym_def_type_statement_token11] = ACTIONS(8283), + [aux_sym_def_type_statement_token12] = ACTIONS(8283), + [aux_sym_def_type_statement_token13] = ACTIONS(8283), + [aux_sym_def_type_statement_token14] = ACTIONS(8283), + [aux_sym_call_statement_token1] = ACTIONS(8283), + [sym__ambiguous_call_statement] = ACTIONS(8283), + [aux_sym_addressof_expression_token1] = ACTIONS(8283), + [aux_sym_type_of_expression_token1] = ACTIONS(8283), + [aux_sym_unary_expression_token1] = ACTIONS(8283), + [sym_string_literal] = ACTIONS(8285), + [sym_number_literal] = ACTIONS(8285), + [aux_sym_boolean_literal_token1] = ACTIONS(8283), + [aux_sym_boolean_literal_token2] = ACTIONS(8283), + [sym_nothing_literal] = ACTIONS(8283), + [sym_null_literal] = ACTIONS(8283), + [sym_empty_literal] = ACTIONS(8283), + [sym_date_literal] = ACTIONS(8285), + [anon_sym_POUND] = ACTIONS(8283), + }, + [STATE(6831)] = { + [sym_identifier] = ACTIONS(9568), + [sym_newline] = ACTIONS(9570), + [anon_sym_COLON] = ACTIONS(9570), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9568), + [aux_sym_frm_property_statement_token1] = ACTIONS(9568), + [anon_sym_DOT] = ACTIONS(9568), + [anon_sym_BANG] = ACTIONS(9570), + [aux_sym__attribute_identifier_token1] = ACTIONS(9568), + [aux_sym_option_statement_token3] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9568), + [aux_sym_preprocessor_const_token1] = ACTIONS(9568), + [sym_static_modifier] = ACTIONS(9568), + [sym__dim_keyword] = ACTIONS(9568), + [sym__redim_keyword] = ACTIONS(9568), + [aux_sym_get_accessor_token1] = ACTIONS(9568), + [aux_sym_set_accessor_token1] = ACTIONS(9568), + [aux_sym_const_declaration_token1] = ACTIONS(9568), + [anon_sym_LPAREN] = ACTIONS(9570), + [aux_sym_as_type_clause_token2] = ACTIONS(9568), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9568), + [aux_sym_visibility_token1] = ACTIONS(9568), + [aux_sym_visibility_token2] = ACTIONS(9568), + [aux_sym_elseif_fragment_token1] = ACTIONS(9568), + [aux_sym_else_fragment_token1] = ACTIONS(9568), + [aux_sym_select_statement_token1] = ACTIONS(9568), + [aux_sym_select_statement_token2] = ACTIONS(9568), + [aux_sym__for_header_token1] = ACTIONS(9568), + [aux_sym_do_statement_token1] = ACTIONS(9568), + [aux_sym_do_condition_token1] = ACTIONS(9568), + [aux_sym_with_statement_token1] = ACTIONS(9568), + [aux_sym_exit_statement_token1] = ACTIONS(9568), + [sym_end_statement] = ACTIONS(9570), + [aux_sym_on_goto_statement_token1] = ACTIONS(9568), + [aux_sym_on_goto_statement_token2] = ACTIONS(9568), + [aux_sym_on_error_statement_token2] = ACTIONS(9568), + [sym__ambiguous_redim_statement] = ACTIONS(9570), + [aux_sym_erase_statement_token1] = ACTIONS(9568), + [aux_sym_open_statement_token1] = ACTIONS(9568), + [aux_sym_file_mode_token2] = ACTIONS(9568), + [aux_sym_file_access_token2] = ACTIONS(9568), + [aux_sym_file_lock_token2] = ACTIONS(9568), + [aux_sym_print_statement_token1] = ACTIONS(9568), + [anon_sym_PLUS] = ACTIONS(9570), + [anon_sym_DASH] = ACTIONS(9568), + [anon_sym_QMARK] = ACTIONS(9570), + [aux_sym_close_statement_token1] = ACTIONS(9568), + [aux_sym_put_statement_token1] = ACTIONS(9568), + [aux_sym_unlock_statement_token1] = ACTIONS(9568), + [aux_sym_seek_statement_token1] = ACTIONS(9568), + [sym_reset_statement] = ACTIONS(9568), + [aux_sym_raise_event_statement_token1] = ACTIONS(9568), + [sym_stop_statement] = ACTIONS(9568), + [sym_beep_statement] = ACTIONS(9568), + [aux_sym_unload_statement_token1] = ACTIONS(9568), + [aux_sym_def_type_statement_token1] = ACTIONS(9568), + [aux_sym_def_type_statement_token2] = ACTIONS(9568), + [aux_sym_def_type_statement_token3] = ACTIONS(9568), + [aux_sym_def_type_statement_token4] = ACTIONS(9568), + [aux_sym_def_type_statement_token5] = ACTIONS(9568), + [aux_sym_def_type_statement_token6] = ACTIONS(9568), + [aux_sym_def_type_statement_token7] = ACTIONS(9568), + [aux_sym_def_type_statement_token8] = ACTIONS(9568), + [aux_sym_def_type_statement_token9] = ACTIONS(9568), + [aux_sym_def_type_statement_token10] = ACTIONS(9568), + [aux_sym_def_type_statement_token11] = ACTIONS(9568), + [aux_sym_def_type_statement_token12] = ACTIONS(9568), + [aux_sym_def_type_statement_token13] = ACTIONS(9568), + [aux_sym_def_type_statement_token14] = ACTIONS(9568), + [aux_sym_call_statement_token1] = ACTIONS(9568), + [sym__ambiguous_call_statement] = ACTIONS(9568), + [aux_sym_addressof_expression_token1] = ACTIONS(9568), + [aux_sym_type_of_expression_token1] = ACTIONS(9568), + [aux_sym_unary_expression_token1] = ACTIONS(9568), + [sym_string_literal] = ACTIONS(9570), + [sym_number_literal] = ACTIONS(9570), + [aux_sym_boolean_literal_token1] = ACTIONS(9568), + [aux_sym_boolean_literal_token2] = ACTIONS(9568), + [sym_nothing_literal] = ACTIONS(9568), + [sym_null_literal] = ACTIONS(9568), + [sym_empty_literal] = ACTIONS(9568), + [sym_date_literal] = ACTIONS(9570), + [anon_sym_POUND] = ACTIONS(9568), + }, + [STATE(6832)] = { + [sym_identifier] = ACTIONS(9264), + [sym_newline] = ACTIONS(9266), + [anon_sym_COLON] = ACTIONS(9266), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9264), + [aux_sym_frm_property_statement_token1] = ACTIONS(9264), + [anon_sym_DOT] = ACTIONS(9264), + [anon_sym_BANG] = ACTIONS(9266), + [aux_sym__attribute_identifier_token1] = ACTIONS(9264), + [aux_sym_option_statement_token3] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9264), + [aux_sym_preprocessor_const_token1] = ACTIONS(9264), + [sym_static_modifier] = ACTIONS(9264), + [sym__dim_keyword] = ACTIONS(9264), + [sym__redim_keyword] = ACTIONS(9264), + [aux_sym_get_accessor_token1] = ACTIONS(9264), + [aux_sym_set_accessor_token1] = ACTIONS(9264), + [aux_sym_const_declaration_token1] = ACTIONS(9264), + [anon_sym_LPAREN] = ACTIONS(9266), + [aux_sym_as_type_clause_token2] = ACTIONS(9264), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9264), + [aux_sym_visibility_token1] = ACTIONS(9264), + [aux_sym_visibility_token2] = ACTIONS(9264), + [aux_sym_elseif_fragment_token1] = ACTIONS(9264), + [aux_sym_else_fragment_token1] = ACTIONS(9264), + [aux_sym_select_statement_token1] = ACTIONS(9264), + [aux_sym__for_header_token1] = ACTIONS(9264), + [aux_sym_do_statement_token1] = ACTIONS(9264), + [aux_sym_do_condition_token1] = ACTIONS(9264), + [aux_sym_while_statement_token1] = ACTIONS(9264), + [aux_sym_with_statement_token1] = ACTIONS(9264), + [aux_sym_exit_statement_token1] = ACTIONS(9264), + [sym_end_statement] = ACTIONS(9266), + [aux_sym_on_goto_statement_token1] = ACTIONS(9264), + [aux_sym_on_goto_statement_token2] = ACTIONS(9264), + [aux_sym_on_error_statement_token2] = ACTIONS(9264), + [sym__ambiguous_redim_statement] = ACTIONS(9266), + [aux_sym_erase_statement_token1] = ACTIONS(9264), + [aux_sym_open_statement_token1] = ACTIONS(9264), + [aux_sym_file_mode_token2] = ACTIONS(9264), + [aux_sym_file_access_token2] = ACTIONS(9264), + [aux_sym_file_lock_token2] = ACTIONS(9264), + [aux_sym_print_statement_token1] = ACTIONS(9264), + [anon_sym_PLUS] = ACTIONS(9266), + [anon_sym_DASH] = ACTIONS(9264), + [anon_sym_QMARK] = ACTIONS(9266), + [aux_sym_close_statement_token1] = ACTIONS(9264), + [aux_sym_put_statement_token1] = ACTIONS(9264), + [aux_sym_unlock_statement_token1] = ACTIONS(9264), + [aux_sym_seek_statement_token1] = ACTIONS(9264), + [sym_reset_statement] = ACTIONS(9264), + [aux_sym_raise_event_statement_token1] = ACTIONS(9264), + [sym_stop_statement] = ACTIONS(9264), + [sym_beep_statement] = ACTIONS(9264), + [aux_sym_unload_statement_token1] = ACTIONS(9264), + [aux_sym_def_type_statement_token1] = ACTIONS(9264), + [aux_sym_def_type_statement_token2] = ACTIONS(9264), + [aux_sym_def_type_statement_token3] = ACTIONS(9264), + [aux_sym_def_type_statement_token4] = ACTIONS(9264), + [aux_sym_def_type_statement_token5] = ACTIONS(9264), + [aux_sym_def_type_statement_token6] = ACTIONS(9264), + [aux_sym_def_type_statement_token7] = ACTIONS(9264), + [aux_sym_def_type_statement_token8] = ACTIONS(9264), + [aux_sym_def_type_statement_token9] = ACTIONS(9264), + [aux_sym_def_type_statement_token10] = ACTIONS(9264), + [aux_sym_def_type_statement_token11] = ACTIONS(9264), + [aux_sym_def_type_statement_token12] = ACTIONS(9264), + [aux_sym_def_type_statement_token13] = ACTIONS(9264), + [aux_sym_def_type_statement_token14] = ACTIONS(9264), + [aux_sym_call_statement_token1] = ACTIONS(9264), + [sym__ambiguous_call_statement] = ACTIONS(9264), + [aux_sym_addressof_expression_token1] = ACTIONS(9264), + [aux_sym_type_of_expression_token1] = ACTIONS(9264), + [aux_sym_unary_expression_token1] = ACTIONS(9264), + [sym_string_literal] = ACTIONS(9266), + [sym_number_literal] = ACTIONS(9266), + [aux_sym_boolean_literal_token1] = ACTIONS(9264), + [aux_sym_boolean_literal_token2] = ACTIONS(9264), + [sym_nothing_literal] = ACTIONS(9264), + [sym_null_literal] = ACTIONS(9264), + [sym_empty_literal] = ACTIONS(9264), + [sym_date_literal] = ACTIONS(9266), + [anon_sym_POUND] = ACTIONS(9264), + }, + [STATE(6833)] = { + [sym_identifier] = ACTIONS(9260), + [sym_newline] = ACTIONS(9262), + [anon_sym_COLON] = ACTIONS(9262), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9260), + [aux_sym_frm_property_statement_token1] = ACTIONS(9260), + [anon_sym_DOT] = ACTIONS(9260), + [anon_sym_BANG] = ACTIONS(9262), + [aux_sym__attribute_identifier_token1] = ACTIONS(9260), + [aux_sym_option_statement_token3] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9260), + [aux_sym_preprocessor_const_token1] = ACTIONS(9260), + [sym_static_modifier] = ACTIONS(9260), + [sym__dim_keyword] = ACTIONS(9260), + [sym__redim_keyword] = ACTIONS(9260), + [aux_sym_get_accessor_token1] = ACTIONS(9260), + [aux_sym_set_accessor_token1] = ACTIONS(9260), + [aux_sym_const_declaration_token1] = ACTIONS(9260), + [anon_sym_LPAREN] = ACTIONS(9262), + [aux_sym_as_type_clause_token2] = ACTIONS(9260), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9260), + [aux_sym_visibility_token1] = ACTIONS(9260), + [aux_sym_visibility_token2] = ACTIONS(9260), + [aux_sym_elseif_fragment_token1] = ACTIONS(9260), + [aux_sym_else_fragment_token1] = ACTIONS(9260), + [aux_sym_select_statement_token1] = ACTIONS(9260), + [aux_sym__for_header_token1] = ACTIONS(9260), + [aux_sym_do_statement_token1] = ACTIONS(9260), + [aux_sym_do_statement_token2] = ACTIONS(9260), + [aux_sym_do_condition_token1] = ACTIONS(9260), + [aux_sym_with_statement_token1] = ACTIONS(9260), + [aux_sym_exit_statement_token1] = ACTIONS(9260), + [sym_end_statement] = ACTIONS(9262), + [aux_sym_on_goto_statement_token1] = ACTIONS(9260), + [aux_sym_on_goto_statement_token2] = ACTIONS(9260), + [aux_sym_on_error_statement_token2] = ACTIONS(9260), + [sym__ambiguous_redim_statement] = ACTIONS(9262), + [aux_sym_erase_statement_token1] = ACTIONS(9260), + [aux_sym_open_statement_token1] = ACTIONS(9260), + [aux_sym_file_mode_token2] = ACTIONS(9260), + [aux_sym_file_access_token2] = ACTIONS(9260), + [aux_sym_file_lock_token2] = ACTIONS(9260), + [aux_sym_print_statement_token1] = ACTIONS(9260), + [anon_sym_PLUS] = ACTIONS(9262), + [anon_sym_DASH] = ACTIONS(9260), + [anon_sym_QMARK] = ACTIONS(9262), + [aux_sym_close_statement_token1] = ACTIONS(9260), + [aux_sym_put_statement_token1] = ACTIONS(9260), + [aux_sym_unlock_statement_token1] = ACTIONS(9260), + [aux_sym_seek_statement_token1] = ACTIONS(9260), + [sym_reset_statement] = ACTIONS(9260), + [aux_sym_raise_event_statement_token1] = ACTIONS(9260), + [sym_stop_statement] = ACTIONS(9260), + [sym_beep_statement] = ACTIONS(9260), + [aux_sym_unload_statement_token1] = ACTIONS(9260), + [aux_sym_def_type_statement_token1] = ACTIONS(9260), + [aux_sym_def_type_statement_token2] = ACTIONS(9260), + [aux_sym_def_type_statement_token3] = ACTIONS(9260), + [aux_sym_def_type_statement_token4] = ACTIONS(9260), + [aux_sym_def_type_statement_token5] = ACTIONS(9260), + [aux_sym_def_type_statement_token6] = ACTIONS(9260), + [aux_sym_def_type_statement_token7] = ACTIONS(9260), + [aux_sym_def_type_statement_token8] = ACTIONS(9260), + [aux_sym_def_type_statement_token9] = ACTIONS(9260), + [aux_sym_def_type_statement_token10] = ACTIONS(9260), + [aux_sym_def_type_statement_token11] = ACTIONS(9260), + [aux_sym_def_type_statement_token12] = ACTIONS(9260), + [aux_sym_def_type_statement_token13] = ACTIONS(9260), + [aux_sym_def_type_statement_token14] = ACTIONS(9260), + [aux_sym_call_statement_token1] = ACTIONS(9260), + [sym__ambiguous_call_statement] = ACTIONS(9260), + [aux_sym_addressof_expression_token1] = ACTIONS(9260), + [aux_sym_type_of_expression_token1] = ACTIONS(9260), + [aux_sym_unary_expression_token1] = ACTIONS(9260), + [sym_string_literal] = ACTIONS(9262), + [sym_number_literal] = ACTIONS(9262), + [aux_sym_boolean_literal_token1] = ACTIONS(9260), + [aux_sym_boolean_literal_token2] = ACTIONS(9260), + [sym_nothing_literal] = ACTIONS(9260), + [sym_null_literal] = ACTIONS(9260), + [sym_empty_literal] = ACTIONS(9260), + [sym_date_literal] = ACTIONS(9262), + [anon_sym_POUND] = ACTIONS(9260), + }, + [STATE(6834)] = { + [sym_identifier] = ACTIONS(8672), + [sym_newline] = ACTIONS(8674), + [anon_sym_COLON] = ACTIONS(8674), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8672), + [aux_sym_frm_property_statement_token1] = ACTIONS(8672), + [anon_sym_DOT] = ACTIONS(8672), + [anon_sym_BANG] = ACTIONS(8674), + [aux_sym__attribute_identifier_token1] = ACTIONS(8672), + [aux_sym_option_statement_token3] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8672), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8672), + [aux_sym_preprocessor_const_token1] = ACTIONS(8672), + [sym_static_modifier] = ACTIONS(8672), + [sym__dim_keyword] = ACTIONS(8672), + [sym__redim_keyword] = ACTIONS(8672), + [aux_sym_get_accessor_token1] = ACTIONS(8672), + [aux_sym_set_accessor_token1] = ACTIONS(8672), + [anon_sym_COMMA] = ACTIONS(8674), + [aux_sym_const_declaration_token1] = ACTIONS(8672), + [anon_sym_LPAREN] = ACTIONS(8674), + [aux_sym_as_type_clause_token2] = ACTIONS(8672), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8672), + [aux_sym_visibility_token1] = ACTIONS(8672), + [aux_sym_visibility_token2] = ACTIONS(8672), + [aux_sym_elseif_fragment_token1] = ACTIONS(8672), + [aux_sym_else_fragment_token1] = ACTIONS(8672), + [aux_sym_select_statement_token1] = ACTIONS(8672), + [aux_sym__for_header_token1] = ACTIONS(8672), + [aux_sym_do_statement_token1] = ACTIONS(8672), + [aux_sym_do_condition_token1] = ACTIONS(8672), + [aux_sym_with_statement_token1] = ACTIONS(8672), + [aux_sym_exit_statement_token1] = ACTIONS(8672), + [sym_end_statement] = ACTIONS(8674), + [aux_sym_on_goto_statement_token1] = ACTIONS(8672), + [aux_sym_on_goto_statement_token2] = ACTIONS(8672), + [aux_sym_on_error_statement_token2] = ACTIONS(8672), + [sym__ambiguous_redim_statement] = ACTIONS(8674), + [aux_sym_erase_statement_token1] = ACTIONS(8672), + [aux_sym_open_statement_token1] = ACTIONS(8672), + [aux_sym_file_mode_token2] = ACTIONS(8672), + [aux_sym_file_access_token2] = ACTIONS(8672), + [aux_sym_file_lock_token2] = ACTIONS(8672), + [aux_sym_print_statement_token1] = ACTIONS(8672), + [anon_sym_PLUS] = ACTIONS(8674), + [anon_sym_DASH] = ACTIONS(8672), + [anon_sym_QMARK] = ACTIONS(8674), + [aux_sym_close_statement_token1] = ACTIONS(8672), + [aux_sym_put_statement_token1] = ACTIONS(8672), + [aux_sym_unlock_statement_token1] = ACTIONS(8672), + [aux_sym_seek_statement_token1] = ACTIONS(8672), + [sym_reset_statement] = ACTIONS(8672), + [aux_sym_raise_event_statement_token1] = ACTIONS(8672), + [sym_stop_statement] = ACTIONS(8672), + [sym_beep_statement] = ACTIONS(8672), + [aux_sym_unload_statement_token1] = ACTIONS(8672), + [aux_sym_def_type_statement_token1] = ACTIONS(8672), + [aux_sym_def_type_statement_token2] = ACTIONS(8672), + [aux_sym_def_type_statement_token3] = ACTIONS(8672), + [aux_sym_def_type_statement_token4] = ACTIONS(8672), + [aux_sym_def_type_statement_token5] = ACTIONS(8672), + [aux_sym_def_type_statement_token6] = ACTIONS(8672), + [aux_sym_def_type_statement_token7] = ACTIONS(8672), + [aux_sym_def_type_statement_token8] = ACTIONS(8672), + [aux_sym_def_type_statement_token9] = ACTIONS(8672), + [aux_sym_def_type_statement_token10] = ACTIONS(8672), + [aux_sym_def_type_statement_token11] = ACTIONS(8672), + [aux_sym_def_type_statement_token12] = ACTIONS(8672), + [aux_sym_def_type_statement_token13] = ACTIONS(8672), + [aux_sym_def_type_statement_token14] = ACTIONS(8672), + [aux_sym_call_statement_token1] = ACTIONS(8672), + [sym__ambiguous_call_statement] = ACTIONS(8672), + [aux_sym_addressof_expression_token1] = ACTIONS(8672), + [aux_sym_type_of_expression_token1] = ACTIONS(8672), + [aux_sym_unary_expression_token1] = ACTIONS(8672), + [sym_string_literal] = ACTIONS(8674), + [sym_number_literal] = ACTIONS(8674), + [aux_sym_boolean_literal_token1] = ACTIONS(8672), + [aux_sym_boolean_literal_token2] = ACTIONS(8672), + [sym_nothing_literal] = ACTIONS(8672), + [sym_null_literal] = ACTIONS(8672), + [sym_empty_literal] = ACTIONS(8672), + [sym_date_literal] = ACTIONS(8674), + [anon_sym_POUND] = ACTIONS(8672), + }, + [STATE(6835)] = { + [sym_identifier] = ACTIONS(9374), + [sym_newline] = ACTIONS(9376), + [anon_sym_COLON] = ACTIONS(9376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9374), + [aux_sym_frm_property_statement_token1] = ACTIONS(9374), + [anon_sym_DOT] = ACTIONS(9374), + [anon_sym_BANG] = ACTIONS(9376), + [aux_sym__attribute_identifier_token1] = ACTIONS(9374), + [aux_sym_option_statement_token3] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9374), + [aux_sym_preprocessor_const_token1] = ACTIONS(9374), + [sym_static_modifier] = ACTIONS(9374), + [sym__dim_keyword] = ACTIONS(9374), + [sym__redim_keyword] = ACTIONS(9374), + [aux_sym_get_accessor_token1] = ACTIONS(9374), + [aux_sym_set_accessor_token1] = ACTIONS(9374), + [aux_sym_const_declaration_token1] = ACTIONS(9374), + [anon_sym_LPAREN] = ACTIONS(9376), + [aux_sym_as_type_clause_token2] = ACTIONS(9374), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9374), + [aux_sym_visibility_token1] = ACTIONS(9374), + [aux_sym_visibility_token2] = ACTIONS(9374), + [aux_sym_elseif_fragment_token1] = ACTIONS(9374), + [aux_sym_else_fragment_token1] = ACTIONS(9374), + [aux_sym_select_statement_token1] = ACTIONS(9374), + [aux_sym_select_statement_token2] = ACTIONS(9374), + [aux_sym__for_header_token1] = ACTIONS(9374), + [aux_sym_do_statement_token1] = ACTIONS(9374), + [aux_sym_do_condition_token1] = ACTIONS(9374), + [aux_sym_with_statement_token1] = ACTIONS(9374), + [aux_sym_exit_statement_token1] = ACTIONS(9374), + [sym_end_statement] = ACTIONS(9376), + [aux_sym_on_goto_statement_token1] = ACTIONS(9374), + [aux_sym_on_goto_statement_token2] = ACTIONS(9374), + [aux_sym_on_error_statement_token2] = ACTIONS(9374), + [sym__ambiguous_redim_statement] = ACTIONS(9376), + [aux_sym_erase_statement_token1] = ACTIONS(9374), + [aux_sym_open_statement_token1] = ACTIONS(9374), + [aux_sym_file_mode_token2] = ACTIONS(9374), + [aux_sym_file_access_token2] = ACTIONS(9374), + [aux_sym_file_lock_token2] = ACTIONS(9374), + [aux_sym_print_statement_token1] = ACTIONS(9374), + [anon_sym_PLUS] = ACTIONS(9376), + [anon_sym_DASH] = ACTIONS(9374), + [anon_sym_QMARK] = ACTIONS(9376), + [aux_sym_close_statement_token1] = ACTIONS(9374), + [aux_sym_put_statement_token1] = ACTIONS(9374), + [aux_sym_unlock_statement_token1] = ACTIONS(9374), + [aux_sym_seek_statement_token1] = ACTIONS(9374), + [sym_reset_statement] = ACTIONS(9374), + [aux_sym_raise_event_statement_token1] = ACTIONS(9374), + [sym_stop_statement] = ACTIONS(9374), + [sym_beep_statement] = ACTIONS(9374), + [aux_sym_unload_statement_token1] = ACTIONS(9374), + [aux_sym_def_type_statement_token1] = ACTIONS(9374), + [aux_sym_def_type_statement_token2] = ACTIONS(9374), + [aux_sym_def_type_statement_token3] = ACTIONS(9374), + [aux_sym_def_type_statement_token4] = ACTIONS(9374), + [aux_sym_def_type_statement_token5] = ACTIONS(9374), + [aux_sym_def_type_statement_token6] = ACTIONS(9374), + [aux_sym_def_type_statement_token7] = ACTIONS(9374), + [aux_sym_def_type_statement_token8] = ACTIONS(9374), + [aux_sym_def_type_statement_token9] = ACTIONS(9374), + [aux_sym_def_type_statement_token10] = ACTIONS(9374), + [aux_sym_def_type_statement_token11] = ACTIONS(9374), + [aux_sym_def_type_statement_token12] = ACTIONS(9374), + [aux_sym_def_type_statement_token13] = ACTIONS(9374), + [aux_sym_def_type_statement_token14] = ACTIONS(9374), + [aux_sym_call_statement_token1] = ACTIONS(9374), + [sym__ambiguous_call_statement] = ACTIONS(9374), + [aux_sym_addressof_expression_token1] = ACTIONS(9374), + [aux_sym_type_of_expression_token1] = ACTIONS(9374), + [aux_sym_unary_expression_token1] = ACTIONS(9374), + [sym_string_literal] = ACTIONS(9376), + [sym_number_literal] = ACTIONS(9376), + [aux_sym_boolean_literal_token1] = ACTIONS(9374), + [aux_sym_boolean_literal_token2] = ACTIONS(9374), + [sym_nothing_literal] = ACTIONS(9374), + [sym_null_literal] = ACTIONS(9374), + [sym_empty_literal] = ACTIONS(9374), + [sym_date_literal] = ACTIONS(9376), + [anon_sym_POUND] = ACTIONS(9374), + }, + [STATE(6836)] = { + [sym_identifier] = ACTIONS(9378), + [sym_newline] = ACTIONS(9380), + [anon_sym_COLON] = ACTIONS(9380), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9378), + [aux_sym_frm_property_statement_token1] = ACTIONS(9378), + [anon_sym_DOT] = ACTIONS(9378), + [anon_sym_BANG] = ACTIONS(9380), + [aux_sym__attribute_identifier_token1] = ACTIONS(9378), + [aux_sym_option_statement_token3] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9378), + [aux_sym_preprocessor_const_token1] = ACTIONS(9378), + [sym_static_modifier] = ACTIONS(9378), + [sym__dim_keyword] = ACTIONS(9378), + [sym__redim_keyword] = ACTIONS(9378), + [aux_sym_get_accessor_token1] = ACTIONS(9378), + [aux_sym_set_accessor_token1] = ACTIONS(9378), + [aux_sym_const_declaration_token1] = ACTIONS(9378), + [anon_sym_LPAREN] = ACTIONS(9380), + [aux_sym_as_type_clause_token2] = ACTIONS(9378), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9378), + [aux_sym_visibility_token1] = ACTIONS(9378), + [aux_sym_visibility_token2] = ACTIONS(9378), + [aux_sym_elseif_fragment_token1] = ACTIONS(9378), + [aux_sym_else_fragment_token1] = ACTIONS(9378), + [aux_sym_select_statement_token1] = ACTIONS(9378), + [aux_sym_select_statement_token2] = ACTIONS(9378), + [aux_sym__for_header_token1] = ACTIONS(9378), + [aux_sym_do_statement_token1] = ACTIONS(9378), + [aux_sym_do_condition_token1] = ACTIONS(9378), + [aux_sym_with_statement_token1] = ACTIONS(9378), + [aux_sym_exit_statement_token1] = ACTIONS(9378), + [sym_end_statement] = ACTIONS(9380), + [aux_sym_on_goto_statement_token1] = ACTIONS(9378), + [aux_sym_on_goto_statement_token2] = ACTIONS(9378), + [aux_sym_on_error_statement_token2] = ACTIONS(9378), + [sym__ambiguous_redim_statement] = ACTIONS(9380), + [aux_sym_erase_statement_token1] = ACTIONS(9378), + [aux_sym_open_statement_token1] = ACTIONS(9378), + [aux_sym_file_mode_token2] = ACTIONS(9378), + [aux_sym_file_access_token2] = ACTIONS(9378), + [aux_sym_file_lock_token2] = ACTIONS(9378), + [aux_sym_print_statement_token1] = ACTIONS(9378), + [anon_sym_PLUS] = ACTIONS(9380), + [anon_sym_DASH] = ACTIONS(9378), + [anon_sym_QMARK] = ACTIONS(9380), + [aux_sym_close_statement_token1] = ACTIONS(9378), + [aux_sym_put_statement_token1] = ACTIONS(9378), + [aux_sym_unlock_statement_token1] = ACTIONS(9378), + [aux_sym_seek_statement_token1] = ACTIONS(9378), + [sym_reset_statement] = ACTIONS(9378), + [aux_sym_raise_event_statement_token1] = ACTIONS(9378), + [sym_stop_statement] = ACTIONS(9378), + [sym_beep_statement] = ACTIONS(9378), + [aux_sym_unload_statement_token1] = ACTIONS(9378), + [aux_sym_def_type_statement_token1] = ACTIONS(9378), + [aux_sym_def_type_statement_token2] = ACTIONS(9378), + [aux_sym_def_type_statement_token3] = ACTIONS(9378), + [aux_sym_def_type_statement_token4] = ACTIONS(9378), + [aux_sym_def_type_statement_token5] = ACTIONS(9378), + [aux_sym_def_type_statement_token6] = ACTIONS(9378), + [aux_sym_def_type_statement_token7] = ACTIONS(9378), + [aux_sym_def_type_statement_token8] = ACTIONS(9378), + [aux_sym_def_type_statement_token9] = ACTIONS(9378), + [aux_sym_def_type_statement_token10] = ACTIONS(9378), + [aux_sym_def_type_statement_token11] = ACTIONS(9378), + [aux_sym_def_type_statement_token12] = ACTIONS(9378), + [aux_sym_def_type_statement_token13] = ACTIONS(9378), + [aux_sym_def_type_statement_token14] = ACTIONS(9378), + [aux_sym_call_statement_token1] = ACTIONS(9378), + [sym__ambiguous_call_statement] = ACTIONS(9378), + [aux_sym_addressof_expression_token1] = ACTIONS(9378), + [aux_sym_type_of_expression_token1] = ACTIONS(9378), + [aux_sym_unary_expression_token1] = ACTIONS(9378), + [sym_string_literal] = ACTIONS(9380), + [sym_number_literal] = ACTIONS(9380), + [aux_sym_boolean_literal_token1] = ACTIONS(9378), + [aux_sym_boolean_literal_token2] = ACTIONS(9378), + [sym_nothing_literal] = ACTIONS(9378), + [sym_null_literal] = ACTIONS(9378), + [sym_empty_literal] = ACTIONS(9378), + [sym_date_literal] = ACTIONS(9380), + [anon_sym_POUND] = ACTIONS(9378), + }, + [STATE(6837)] = { + [sym_identifier] = ACTIONS(6621), + [sym_newline] = ACTIONS(6623), + [anon_sym_COLON] = ACTIONS(6623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6621), + [aux_sym_frm_property_statement_token1] = ACTIONS(6621), + [anon_sym_DOT] = ACTIONS(6621), + [anon_sym_BANG] = ACTIONS(6623), + [aux_sym__attribute_identifier_token1] = ACTIONS(6621), + [aux_sym_option_statement_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6621), + [aux_sym_preprocessor_const_token1] = ACTIONS(6621), + [sym_static_modifier] = ACTIONS(6621), + [sym__dim_keyword] = ACTIONS(6621), + [sym__redim_keyword] = ACTIONS(6621), + [aux_sym_get_accessor_token1] = ACTIONS(6621), + [aux_sym_set_accessor_token1] = ACTIONS(6621), + [aux_sym_const_declaration_token1] = ACTIONS(6621), + [anon_sym_LPAREN] = ACTIONS(6623), + [aux_sym_as_type_clause_token2] = ACTIONS(6621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6621), + [aux_sym_visibility_token1] = ACTIONS(6621), + [aux_sym_visibility_token2] = ACTIONS(6621), + [aux_sym_elseif_fragment_token1] = ACTIONS(6621), + [aux_sym_else_fragment_token1] = ACTIONS(6621), + [aux_sym_select_statement_token1] = ACTIONS(6621), + [aux_sym__for_header_token1] = ACTIONS(6621), + [aux_sym_do_statement_token1] = ACTIONS(6621), + [aux_sym_do_statement_token2] = ACTIONS(6621), + [aux_sym_do_condition_token1] = ACTIONS(6621), + [aux_sym_with_statement_token1] = ACTIONS(6621), + [aux_sym_exit_statement_token1] = ACTIONS(6621), + [sym_end_statement] = ACTIONS(6623), + [aux_sym_on_goto_statement_token1] = ACTIONS(6621), + [aux_sym_on_goto_statement_token2] = ACTIONS(6621), + [aux_sym_on_error_statement_token2] = ACTIONS(6621), + [sym__ambiguous_redim_statement] = ACTIONS(6623), + [aux_sym_erase_statement_token1] = ACTIONS(6621), + [aux_sym_open_statement_token1] = ACTIONS(6621), + [aux_sym_file_mode_token2] = ACTIONS(6621), + [aux_sym_file_access_token2] = ACTIONS(6621), + [aux_sym_file_lock_token2] = ACTIONS(6621), + [aux_sym_print_statement_token1] = ACTIONS(6621), + [anon_sym_PLUS] = ACTIONS(6623), + [anon_sym_DASH] = ACTIONS(6621), + [anon_sym_QMARK] = ACTIONS(6623), + [aux_sym_close_statement_token1] = ACTIONS(6621), + [aux_sym_put_statement_token1] = ACTIONS(6621), + [aux_sym_unlock_statement_token1] = ACTIONS(6621), + [aux_sym_seek_statement_token1] = ACTIONS(6621), + [sym_reset_statement] = ACTIONS(6621), + [aux_sym_raise_event_statement_token1] = ACTIONS(6621), + [sym_stop_statement] = ACTIONS(6621), + [sym_beep_statement] = ACTIONS(6621), + [aux_sym_unload_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token2] = ACTIONS(6621), + [aux_sym_def_type_statement_token3] = ACTIONS(6621), + [aux_sym_def_type_statement_token4] = ACTIONS(6621), + [aux_sym_def_type_statement_token5] = ACTIONS(6621), + [aux_sym_def_type_statement_token6] = ACTIONS(6621), + [aux_sym_def_type_statement_token7] = ACTIONS(6621), + [aux_sym_def_type_statement_token8] = ACTIONS(6621), + [aux_sym_def_type_statement_token9] = ACTIONS(6621), + [aux_sym_def_type_statement_token10] = ACTIONS(6621), + [aux_sym_def_type_statement_token11] = ACTIONS(6621), + [aux_sym_def_type_statement_token12] = ACTIONS(6621), + [aux_sym_def_type_statement_token13] = ACTIONS(6621), + [aux_sym_def_type_statement_token14] = ACTIONS(6621), + [aux_sym_call_statement_token1] = ACTIONS(6621), + [sym__ambiguous_call_statement] = ACTIONS(6621), + [aux_sym_addressof_expression_token1] = ACTIONS(6621), + [aux_sym_type_of_expression_token1] = ACTIONS(6621), + [aux_sym_unary_expression_token1] = ACTIONS(6621), + [sym_string_literal] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [aux_sym_boolean_literal_token1] = ACTIONS(6621), + [aux_sym_boolean_literal_token2] = ACTIONS(6621), + [sym_nothing_literal] = ACTIONS(6621), + [sym_null_literal] = ACTIONS(6621), + [sym_empty_literal] = ACTIONS(6621), + [sym_date_literal] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6621), + }, + [STATE(6838)] = { + [sym_identifier] = ACTIONS(8350), + [sym_newline] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8352), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8350), + [aux_sym_frm_property_statement_token1] = ACTIONS(8350), + [anon_sym_DOT] = ACTIONS(8350), + [anon_sym_BANG] = ACTIONS(8352), + [aux_sym__attribute_identifier_token1] = ACTIONS(8350), + [aux_sym_option_statement_token3] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8350), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8350), + [aux_sym_preprocessor_const_token1] = ACTIONS(8350), + [sym_static_modifier] = ACTIONS(8350), + [sym__dim_keyword] = ACTIONS(8350), + [sym__redim_keyword] = ACTIONS(8350), + [aux_sym_get_accessor_token1] = ACTIONS(8350), + [aux_sym_set_accessor_token1] = ACTIONS(8350), + [anon_sym_COMMA] = ACTIONS(8352), + [aux_sym_const_declaration_token1] = ACTIONS(8350), + [anon_sym_LPAREN] = ACTIONS(8352), + [aux_sym_as_type_clause_token2] = ACTIONS(8350), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8350), + [aux_sym_visibility_token1] = ACTIONS(8350), + [aux_sym_visibility_token2] = ACTIONS(8350), + [aux_sym_elseif_fragment_token1] = ACTIONS(8350), + [aux_sym_else_fragment_token1] = ACTIONS(8350), + [aux_sym_select_statement_token1] = ACTIONS(8350), + [aux_sym__for_header_token1] = ACTIONS(8350), + [aux_sym_do_statement_token1] = ACTIONS(8350), + [aux_sym_do_condition_token1] = ACTIONS(8350), + [aux_sym_with_statement_token1] = ACTIONS(8350), + [aux_sym_exit_statement_token1] = ACTIONS(8350), + [sym_end_statement] = ACTIONS(8352), + [aux_sym_on_goto_statement_token1] = ACTIONS(8350), + [aux_sym_on_goto_statement_token2] = ACTIONS(8350), + [aux_sym_on_error_statement_token2] = ACTIONS(8350), + [sym__ambiguous_redim_statement] = ACTIONS(8352), + [aux_sym_erase_statement_token1] = ACTIONS(8350), + [aux_sym_open_statement_token1] = ACTIONS(8350), + [aux_sym_file_mode_token2] = ACTIONS(8350), + [aux_sym_file_access_token2] = ACTIONS(8350), + [aux_sym_file_lock_token2] = ACTIONS(8350), + [aux_sym_print_statement_token1] = ACTIONS(8350), + [anon_sym_PLUS] = ACTIONS(8352), + [anon_sym_DASH] = ACTIONS(8350), + [anon_sym_QMARK] = ACTIONS(8352), + [aux_sym_close_statement_token1] = ACTIONS(8350), + [aux_sym_put_statement_token1] = ACTIONS(8350), + [aux_sym_unlock_statement_token1] = ACTIONS(8350), + [aux_sym_seek_statement_token1] = ACTIONS(8350), + [sym_reset_statement] = ACTIONS(8350), + [aux_sym_raise_event_statement_token1] = ACTIONS(8350), + [sym_stop_statement] = ACTIONS(8350), + [sym_beep_statement] = ACTIONS(8350), + [aux_sym_unload_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token1] = ACTIONS(8350), + [aux_sym_def_type_statement_token2] = ACTIONS(8350), + [aux_sym_def_type_statement_token3] = ACTIONS(8350), + [aux_sym_def_type_statement_token4] = ACTIONS(8350), + [aux_sym_def_type_statement_token5] = ACTIONS(8350), + [aux_sym_def_type_statement_token6] = ACTIONS(8350), + [aux_sym_def_type_statement_token7] = ACTIONS(8350), + [aux_sym_def_type_statement_token8] = ACTIONS(8350), + [aux_sym_def_type_statement_token9] = ACTIONS(8350), + [aux_sym_def_type_statement_token10] = ACTIONS(8350), + [aux_sym_def_type_statement_token11] = ACTIONS(8350), + [aux_sym_def_type_statement_token12] = ACTIONS(8350), + [aux_sym_def_type_statement_token13] = ACTIONS(8350), + [aux_sym_def_type_statement_token14] = ACTIONS(8350), + [aux_sym_call_statement_token1] = ACTIONS(8350), + [sym__ambiguous_call_statement] = ACTIONS(8350), + [aux_sym_addressof_expression_token1] = ACTIONS(8350), + [aux_sym_type_of_expression_token1] = ACTIONS(8350), + [aux_sym_unary_expression_token1] = ACTIONS(8350), + [sym_string_literal] = ACTIONS(8352), + [sym_number_literal] = ACTIONS(8352), + [aux_sym_boolean_literal_token1] = ACTIONS(8350), + [aux_sym_boolean_literal_token2] = ACTIONS(8350), + [sym_nothing_literal] = ACTIONS(8350), + [sym_null_literal] = ACTIONS(8350), + [sym_empty_literal] = ACTIONS(8350), + [sym_date_literal] = ACTIONS(8352), + [anon_sym_POUND] = ACTIONS(8350), + }, + [STATE(6839)] = { + [sym_identifier] = ACTIONS(9268), + [sym_newline] = ACTIONS(9270), + [anon_sym_COLON] = ACTIONS(9270), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9268), + [aux_sym_frm_property_statement_token1] = ACTIONS(9268), + [anon_sym_DOT] = ACTIONS(9268), + [anon_sym_BANG] = ACTIONS(9270), + [aux_sym__attribute_identifier_token1] = ACTIONS(9268), + [aux_sym_option_statement_token3] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9268), + [aux_sym_preprocessor_const_token1] = ACTIONS(9268), + [sym_static_modifier] = ACTIONS(9268), + [sym__dim_keyword] = ACTIONS(9268), + [sym__redim_keyword] = ACTIONS(9268), + [aux_sym_get_accessor_token1] = ACTIONS(9268), + [aux_sym_set_accessor_token1] = ACTIONS(9268), + [aux_sym_const_declaration_token1] = ACTIONS(9268), + [anon_sym_LPAREN] = ACTIONS(9270), + [aux_sym_as_type_clause_token2] = ACTIONS(9268), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9268), + [aux_sym_visibility_token1] = ACTIONS(9268), + [aux_sym_visibility_token2] = ACTIONS(9268), + [aux_sym_elseif_fragment_token1] = ACTIONS(9268), + [aux_sym_else_fragment_token1] = ACTIONS(9268), + [aux_sym_select_statement_token1] = ACTIONS(9268), + [aux_sym__for_header_token1] = ACTIONS(9268), + [aux_sym_do_statement_token1] = ACTIONS(9268), + [aux_sym_do_condition_token1] = ACTIONS(9268), + [aux_sym_while_statement_token1] = ACTIONS(9268), + [aux_sym_with_statement_token1] = ACTIONS(9268), + [aux_sym_exit_statement_token1] = ACTIONS(9268), + [sym_end_statement] = ACTIONS(9270), + [aux_sym_on_goto_statement_token1] = ACTIONS(9268), + [aux_sym_on_goto_statement_token2] = ACTIONS(9268), + [aux_sym_on_error_statement_token2] = ACTIONS(9268), + [sym__ambiguous_redim_statement] = ACTIONS(9270), + [aux_sym_erase_statement_token1] = ACTIONS(9268), + [aux_sym_open_statement_token1] = ACTIONS(9268), + [aux_sym_file_mode_token2] = ACTIONS(9268), + [aux_sym_file_access_token2] = ACTIONS(9268), + [aux_sym_file_lock_token2] = ACTIONS(9268), + [aux_sym_print_statement_token1] = ACTIONS(9268), + [anon_sym_PLUS] = ACTIONS(9270), + [anon_sym_DASH] = ACTIONS(9268), + [anon_sym_QMARK] = ACTIONS(9270), + [aux_sym_close_statement_token1] = ACTIONS(9268), + [aux_sym_put_statement_token1] = ACTIONS(9268), + [aux_sym_unlock_statement_token1] = ACTIONS(9268), + [aux_sym_seek_statement_token1] = ACTIONS(9268), + [sym_reset_statement] = ACTIONS(9268), + [aux_sym_raise_event_statement_token1] = ACTIONS(9268), + [sym_stop_statement] = ACTIONS(9268), + [sym_beep_statement] = ACTIONS(9268), + [aux_sym_unload_statement_token1] = ACTIONS(9268), + [aux_sym_def_type_statement_token1] = ACTIONS(9268), + [aux_sym_def_type_statement_token2] = ACTIONS(9268), + [aux_sym_def_type_statement_token3] = ACTIONS(9268), + [aux_sym_def_type_statement_token4] = ACTIONS(9268), + [aux_sym_def_type_statement_token5] = ACTIONS(9268), + [aux_sym_def_type_statement_token6] = ACTIONS(9268), + [aux_sym_def_type_statement_token7] = ACTIONS(9268), + [aux_sym_def_type_statement_token8] = ACTIONS(9268), + [aux_sym_def_type_statement_token9] = ACTIONS(9268), + [aux_sym_def_type_statement_token10] = ACTIONS(9268), + [aux_sym_def_type_statement_token11] = ACTIONS(9268), + [aux_sym_def_type_statement_token12] = ACTIONS(9268), + [aux_sym_def_type_statement_token13] = ACTIONS(9268), + [aux_sym_def_type_statement_token14] = ACTIONS(9268), + [aux_sym_call_statement_token1] = ACTIONS(9268), + [sym__ambiguous_call_statement] = ACTIONS(9268), + [aux_sym_addressof_expression_token1] = ACTIONS(9268), + [aux_sym_type_of_expression_token1] = ACTIONS(9268), + [aux_sym_unary_expression_token1] = ACTIONS(9268), + [sym_string_literal] = ACTIONS(9270), + [sym_number_literal] = ACTIONS(9270), + [aux_sym_boolean_literal_token1] = ACTIONS(9268), + [aux_sym_boolean_literal_token2] = ACTIONS(9268), + [sym_nothing_literal] = ACTIONS(9268), + [sym_null_literal] = ACTIONS(9268), + [sym_empty_literal] = ACTIONS(9268), + [sym_date_literal] = ACTIONS(9270), + [anon_sym_POUND] = ACTIONS(9268), + }, + [STATE(6840)] = { + [sym_identifier] = ACTIONS(9272), + [sym_newline] = ACTIONS(9274), + [anon_sym_COLON] = ACTIONS(9274), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9272), + [aux_sym_frm_property_statement_token1] = ACTIONS(9272), + [anon_sym_DOT] = ACTIONS(9272), + [anon_sym_BANG] = ACTIONS(9274), + [aux_sym__attribute_identifier_token1] = ACTIONS(9272), + [aux_sym_option_statement_token3] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9272), + [aux_sym_preprocessor_const_token1] = ACTIONS(9272), + [sym_static_modifier] = ACTIONS(9272), + [sym__dim_keyword] = ACTIONS(9272), + [sym__redim_keyword] = ACTIONS(9272), + [aux_sym_get_accessor_token1] = ACTIONS(9272), + [aux_sym_set_accessor_token1] = ACTIONS(9272), + [aux_sym_const_declaration_token1] = ACTIONS(9272), + [anon_sym_LPAREN] = ACTIONS(9274), + [aux_sym_as_type_clause_token2] = ACTIONS(9272), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9272), + [aux_sym_visibility_token1] = ACTIONS(9272), + [aux_sym_visibility_token2] = ACTIONS(9272), + [aux_sym_elseif_fragment_token1] = ACTIONS(9272), + [aux_sym_else_fragment_token1] = ACTIONS(9272), + [aux_sym_select_statement_token1] = ACTIONS(9272), + [aux_sym__for_header_token1] = ACTIONS(9272), + [aux_sym_do_statement_token1] = ACTIONS(9272), + [aux_sym_do_condition_token1] = ACTIONS(9272), + [aux_sym_while_statement_token1] = ACTIONS(9272), + [aux_sym_with_statement_token1] = ACTIONS(9272), + [aux_sym_exit_statement_token1] = ACTIONS(9272), + [sym_end_statement] = ACTIONS(9274), + [aux_sym_on_goto_statement_token1] = ACTIONS(9272), + [aux_sym_on_goto_statement_token2] = ACTIONS(9272), + [aux_sym_on_error_statement_token2] = ACTIONS(9272), + [sym__ambiguous_redim_statement] = ACTIONS(9274), + [aux_sym_erase_statement_token1] = ACTIONS(9272), + [aux_sym_open_statement_token1] = ACTIONS(9272), + [aux_sym_file_mode_token2] = ACTIONS(9272), + [aux_sym_file_access_token2] = ACTIONS(9272), + [aux_sym_file_lock_token2] = ACTIONS(9272), + [aux_sym_print_statement_token1] = ACTIONS(9272), + [anon_sym_PLUS] = ACTIONS(9274), + [anon_sym_DASH] = ACTIONS(9272), + [anon_sym_QMARK] = ACTIONS(9274), + [aux_sym_close_statement_token1] = ACTIONS(9272), + [aux_sym_put_statement_token1] = ACTIONS(9272), + [aux_sym_unlock_statement_token1] = ACTIONS(9272), + [aux_sym_seek_statement_token1] = ACTIONS(9272), + [sym_reset_statement] = ACTIONS(9272), + [aux_sym_raise_event_statement_token1] = ACTIONS(9272), + [sym_stop_statement] = ACTIONS(9272), + [sym_beep_statement] = ACTIONS(9272), + [aux_sym_unload_statement_token1] = ACTIONS(9272), + [aux_sym_def_type_statement_token1] = ACTIONS(9272), + [aux_sym_def_type_statement_token2] = ACTIONS(9272), + [aux_sym_def_type_statement_token3] = ACTIONS(9272), + [aux_sym_def_type_statement_token4] = ACTIONS(9272), + [aux_sym_def_type_statement_token5] = ACTIONS(9272), + [aux_sym_def_type_statement_token6] = ACTIONS(9272), + [aux_sym_def_type_statement_token7] = ACTIONS(9272), + [aux_sym_def_type_statement_token8] = ACTIONS(9272), + [aux_sym_def_type_statement_token9] = ACTIONS(9272), + [aux_sym_def_type_statement_token10] = ACTIONS(9272), + [aux_sym_def_type_statement_token11] = ACTIONS(9272), + [aux_sym_def_type_statement_token12] = ACTIONS(9272), + [aux_sym_def_type_statement_token13] = ACTIONS(9272), + [aux_sym_def_type_statement_token14] = ACTIONS(9272), + [aux_sym_call_statement_token1] = ACTIONS(9272), + [sym__ambiguous_call_statement] = ACTIONS(9272), + [aux_sym_addressof_expression_token1] = ACTIONS(9272), + [aux_sym_type_of_expression_token1] = ACTIONS(9272), + [aux_sym_unary_expression_token1] = ACTIONS(9272), + [sym_string_literal] = ACTIONS(9274), + [sym_number_literal] = ACTIONS(9274), + [aux_sym_boolean_literal_token1] = ACTIONS(9272), + [aux_sym_boolean_literal_token2] = ACTIONS(9272), + [sym_nothing_literal] = ACTIONS(9272), + [sym_null_literal] = ACTIONS(9272), + [sym_empty_literal] = ACTIONS(9272), + [sym_date_literal] = ACTIONS(9274), + [anon_sym_POUND] = ACTIONS(9272), + }, + [STATE(6841)] = { + [sym_identifier] = ACTIONS(9575), + [sym_newline] = ACTIONS(9577), + [anon_sym_COLON] = ACTIONS(9577), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9575), + [aux_sym_frm_property_statement_token1] = ACTIONS(9575), + [anon_sym_DOT] = ACTIONS(9575), + [anon_sym_BANG] = ACTIONS(9577), + [aux_sym__attribute_identifier_token1] = ACTIONS(9575), + [aux_sym_option_statement_token3] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9575), + [aux_sym_preprocessor_const_token1] = ACTIONS(9575), + [sym_static_modifier] = ACTIONS(9575), + [sym__dim_keyword] = ACTIONS(9575), + [sym__redim_keyword] = ACTIONS(9575), + [aux_sym_get_accessor_token1] = ACTIONS(9575), + [aux_sym_set_accessor_token1] = ACTIONS(9575), + [aux_sym_const_declaration_token1] = ACTIONS(9575), + [anon_sym_LPAREN] = ACTIONS(9577), + [aux_sym_as_type_clause_token2] = ACTIONS(9575), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9575), + [aux_sym_visibility_token1] = ACTIONS(9575), + [aux_sym_visibility_token2] = ACTIONS(9575), + [aux_sym_elseif_fragment_token1] = ACTIONS(9575), + [aux_sym_else_fragment_token1] = ACTIONS(9575), + [aux_sym_select_statement_token1] = ACTIONS(9575), + [aux_sym_select_statement_token2] = ACTIONS(9575), + [aux_sym__for_header_token1] = ACTIONS(9575), + [aux_sym_do_statement_token1] = ACTIONS(9575), + [aux_sym_do_condition_token1] = ACTIONS(9575), + [aux_sym_with_statement_token1] = ACTIONS(9575), + [aux_sym_exit_statement_token1] = ACTIONS(9575), + [sym_end_statement] = ACTIONS(9577), + [aux_sym_on_goto_statement_token1] = ACTIONS(9575), + [aux_sym_on_goto_statement_token2] = ACTIONS(9575), + [aux_sym_on_error_statement_token2] = ACTIONS(9575), + [sym__ambiguous_redim_statement] = ACTIONS(9577), + [aux_sym_erase_statement_token1] = ACTIONS(9575), + [aux_sym_open_statement_token1] = ACTIONS(9575), + [aux_sym_file_mode_token2] = ACTIONS(9575), + [aux_sym_file_access_token2] = ACTIONS(9575), + [aux_sym_file_lock_token2] = ACTIONS(9575), + [aux_sym_print_statement_token1] = ACTIONS(9575), + [anon_sym_PLUS] = ACTIONS(9577), + [anon_sym_DASH] = ACTIONS(9575), + [anon_sym_QMARK] = ACTIONS(9577), + [aux_sym_close_statement_token1] = ACTIONS(9575), + [aux_sym_put_statement_token1] = ACTIONS(9575), + [aux_sym_unlock_statement_token1] = ACTIONS(9575), + [aux_sym_seek_statement_token1] = ACTIONS(9575), + [sym_reset_statement] = ACTIONS(9575), + [aux_sym_raise_event_statement_token1] = ACTIONS(9575), + [sym_stop_statement] = ACTIONS(9575), + [sym_beep_statement] = ACTIONS(9575), + [aux_sym_unload_statement_token1] = ACTIONS(9575), + [aux_sym_def_type_statement_token1] = ACTIONS(9575), + [aux_sym_def_type_statement_token2] = ACTIONS(9575), + [aux_sym_def_type_statement_token3] = ACTIONS(9575), + [aux_sym_def_type_statement_token4] = ACTIONS(9575), + [aux_sym_def_type_statement_token5] = ACTIONS(9575), + [aux_sym_def_type_statement_token6] = ACTIONS(9575), + [aux_sym_def_type_statement_token7] = ACTIONS(9575), + [aux_sym_def_type_statement_token8] = ACTIONS(9575), + [aux_sym_def_type_statement_token9] = ACTIONS(9575), + [aux_sym_def_type_statement_token10] = ACTIONS(9575), + [aux_sym_def_type_statement_token11] = ACTIONS(9575), + [aux_sym_def_type_statement_token12] = ACTIONS(9575), + [aux_sym_def_type_statement_token13] = ACTIONS(9575), + [aux_sym_def_type_statement_token14] = ACTIONS(9575), + [aux_sym_call_statement_token1] = ACTIONS(9575), + [sym__ambiguous_call_statement] = ACTIONS(9575), + [aux_sym_addressof_expression_token1] = ACTIONS(9575), + [aux_sym_type_of_expression_token1] = ACTIONS(9575), + [aux_sym_unary_expression_token1] = ACTIONS(9575), + [sym_string_literal] = ACTIONS(9577), + [sym_number_literal] = ACTIONS(9577), + [aux_sym_boolean_literal_token1] = ACTIONS(9575), + [aux_sym_boolean_literal_token2] = ACTIONS(9575), + [sym_nothing_literal] = ACTIONS(9575), + [sym_null_literal] = ACTIONS(9575), + [sym_empty_literal] = ACTIONS(9575), + [sym_date_literal] = ACTIONS(9577), + [anon_sym_POUND] = ACTIONS(9575), + }, + [STATE(6842)] = { + [sym_identifier] = ACTIONS(9276), + [sym_newline] = ACTIONS(9278), + [anon_sym_COLON] = ACTIONS(9278), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9276), + [aux_sym_frm_property_statement_token1] = ACTIONS(9276), + [anon_sym_DOT] = ACTIONS(9276), + [anon_sym_BANG] = ACTIONS(9278), + [aux_sym__attribute_identifier_token1] = ACTIONS(9276), + [aux_sym_option_statement_token3] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9276), + [aux_sym_preprocessor_const_token1] = ACTIONS(9276), + [sym_static_modifier] = ACTIONS(9276), + [sym__dim_keyword] = ACTIONS(9276), + [sym__redim_keyword] = ACTIONS(9276), + [aux_sym_get_accessor_token1] = ACTIONS(9276), + [aux_sym_set_accessor_token1] = ACTIONS(9276), + [aux_sym_const_declaration_token1] = ACTIONS(9276), + [anon_sym_LPAREN] = ACTIONS(9278), + [aux_sym_as_type_clause_token2] = ACTIONS(9276), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9276), + [aux_sym_visibility_token1] = ACTIONS(9276), + [aux_sym_visibility_token2] = ACTIONS(9276), + [aux_sym_elseif_fragment_token1] = ACTIONS(9276), + [aux_sym_else_fragment_token1] = ACTIONS(9276), + [aux_sym_select_statement_token1] = ACTIONS(9276), + [aux_sym__for_header_token1] = ACTIONS(9276), + [aux_sym_do_statement_token1] = ACTIONS(9276), + [aux_sym_do_condition_token1] = ACTIONS(9276), + [aux_sym_while_statement_token1] = ACTIONS(9276), + [aux_sym_with_statement_token1] = ACTIONS(9276), + [aux_sym_exit_statement_token1] = ACTIONS(9276), + [sym_end_statement] = ACTIONS(9278), + [aux_sym_on_goto_statement_token1] = ACTIONS(9276), + [aux_sym_on_goto_statement_token2] = ACTIONS(9276), + [aux_sym_on_error_statement_token2] = ACTIONS(9276), + [sym__ambiguous_redim_statement] = ACTIONS(9278), + [aux_sym_erase_statement_token1] = ACTIONS(9276), + [aux_sym_open_statement_token1] = ACTIONS(9276), + [aux_sym_file_mode_token2] = ACTIONS(9276), + [aux_sym_file_access_token2] = ACTIONS(9276), + [aux_sym_file_lock_token2] = ACTIONS(9276), + [aux_sym_print_statement_token1] = ACTIONS(9276), + [anon_sym_PLUS] = ACTIONS(9278), + [anon_sym_DASH] = ACTIONS(9276), + [anon_sym_QMARK] = ACTIONS(9278), + [aux_sym_close_statement_token1] = ACTIONS(9276), + [aux_sym_put_statement_token1] = ACTIONS(9276), + [aux_sym_unlock_statement_token1] = ACTIONS(9276), + [aux_sym_seek_statement_token1] = ACTIONS(9276), + [sym_reset_statement] = ACTIONS(9276), + [aux_sym_raise_event_statement_token1] = ACTIONS(9276), + [sym_stop_statement] = ACTIONS(9276), + [sym_beep_statement] = ACTIONS(9276), + [aux_sym_unload_statement_token1] = ACTIONS(9276), + [aux_sym_def_type_statement_token1] = ACTIONS(9276), + [aux_sym_def_type_statement_token2] = ACTIONS(9276), + [aux_sym_def_type_statement_token3] = ACTIONS(9276), + [aux_sym_def_type_statement_token4] = ACTIONS(9276), + [aux_sym_def_type_statement_token5] = ACTIONS(9276), + [aux_sym_def_type_statement_token6] = ACTIONS(9276), + [aux_sym_def_type_statement_token7] = ACTIONS(9276), + [aux_sym_def_type_statement_token8] = ACTIONS(9276), + [aux_sym_def_type_statement_token9] = ACTIONS(9276), + [aux_sym_def_type_statement_token10] = ACTIONS(9276), + [aux_sym_def_type_statement_token11] = ACTIONS(9276), + [aux_sym_def_type_statement_token12] = ACTIONS(9276), + [aux_sym_def_type_statement_token13] = ACTIONS(9276), + [aux_sym_def_type_statement_token14] = ACTIONS(9276), + [aux_sym_call_statement_token1] = ACTIONS(9276), + [sym__ambiguous_call_statement] = ACTIONS(9276), + [aux_sym_addressof_expression_token1] = ACTIONS(9276), + [aux_sym_type_of_expression_token1] = ACTIONS(9276), + [aux_sym_unary_expression_token1] = ACTIONS(9276), + [sym_string_literal] = ACTIONS(9278), + [sym_number_literal] = ACTIONS(9278), + [aux_sym_boolean_literal_token1] = ACTIONS(9276), + [aux_sym_boolean_literal_token2] = ACTIONS(9276), + [sym_nothing_literal] = ACTIONS(9276), + [sym_null_literal] = ACTIONS(9276), + [sym_empty_literal] = ACTIONS(9276), + [sym_date_literal] = ACTIONS(9278), + [anon_sym_POUND] = ACTIONS(9276), + }, + [STATE(6843)] = { + [sym_identifier] = ACTIONS(9582), + [sym_newline] = ACTIONS(9584), + [anon_sym_COLON] = ACTIONS(9584), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9582), + [aux_sym_frm_property_statement_token1] = ACTIONS(9582), + [anon_sym_DOT] = ACTIONS(9582), + [anon_sym_BANG] = ACTIONS(9584), + [aux_sym__attribute_identifier_token1] = ACTIONS(9582), + [aux_sym_option_statement_token3] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9582), + [aux_sym_preprocessor_const_token1] = ACTIONS(9582), + [sym_static_modifier] = ACTIONS(9582), + [sym__dim_keyword] = ACTIONS(9582), + [sym__redim_keyword] = ACTIONS(9582), + [aux_sym_get_accessor_token1] = ACTIONS(9582), + [aux_sym_set_accessor_token1] = ACTIONS(9582), + [aux_sym_const_declaration_token1] = ACTIONS(9582), + [anon_sym_LPAREN] = ACTIONS(9584), + [aux_sym_as_type_clause_token2] = ACTIONS(9582), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9582), + [aux_sym_visibility_token1] = ACTIONS(9582), + [aux_sym_visibility_token2] = ACTIONS(9582), + [aux_sym_elseif_fragment_token1] = ACTIONS(9582), + [aux_sym_else_fragment_token1] = ACTIONS(9582), + [aux_sym_select_statement_token1] = ACTIONS(9582), + [aux_sym_select_statement_token2] = ACTIONS(9582), + [aux_sym__for_header_token1] = ACTIONS(9582), + [aux_sym_do_statement_token1] = ACTIONS(9582), + [aux_sym_do_condition_token1] = ACTIONS(9582), + [aux_sym_with_statement_token1] = ACTIONS(9582), + [aux_sym_exit_statement_token1] = ACTIONS(9582), + [sym_end_statement] = ACTIONS(9584), + [aux_sym_on_goto_statement_token1] = ACTIONS(9582), + [aux_sym_on_goto_statement_token2] = ACTIONS(9582), + [aux_sym_on_error_statement_token2] = ACTIONS(9582), + [sym__ambiguous_redim_statement] = ACTIONS(9584), + [aux_sym_erase_statement_token1] = ACTIONS(9582), + [aux_sym_open_statement_token1] = ACTIONS(9582), + [aux_sym_file_mode_token2] = ACTIONS(9582), + [aux_sym_file_access_token2] = ACTIONS(9582), + [aux_sym_file_lock_token2] = ACTIONS(9582), + [aux_sym_print_statement_token1] = ACTIONS(9582), + [anon_sym_PLUS] = ACTIONS(9584), + [anon_sym_DASH] = ACTIONS(9582), + [anon_sym_QMARK] = ACTIONS(9584), + [aux_sym_close_statement_token1] = ACTIONS(9582), + [aux_sym_put_statement_token1] = ACTIONS(9582), + [aux_sym_unlock_statement_token1] = ACTIONS(9582), + [aux_sym_seek_statement_token1] = ACTIONS(9582), + [sym_reset_statement] = ACTIONS(9582), + [aux_sym_raise_event_statement_token1] = ACTIONS(9582), + [sym_stop_statement] = ACTIONS(9582), + [sym_beep_statement] = ACTIONS(9582), + [aux_sym_unload_statement_token1] = ACTIONS(9582), + [aux_sym_def_type_statement_token1] = ACTIONS(9582), + [aux_sym_def_type_statement_token2] = ACTIONS(9582), + [aux_sym_def_type_statement_token3] = ACTIONS(9582), + [aux_sym_def_type_statement_token4] = ACTIONS(9582), + [aux_sym_def_type_statement_token5] = ACTIONS(9582), + [aux_sym_def_type_statement_token6] = ACTIONS(9582), + [aux_sym_def_type_statement_token7] = ACTIONS(9582), + [aux_sym_def_type_statement_token8] = ACTIONS(9582), + [aux_sym_def_type_statement_token9] = ACTIONS(9582), + [aux_sym_def_type_statement_token10] = ACTIONS(9582), + [aux_sym_def_type_statement_token11] = ACTIONS(9582), + [aux_sym_def_type_statement_token12] = ACTIONS(9582), + [aux_sym_def_type_statement_token13] = ACTIONS(9582), + [aux_sym_def_type_statement_token14] = ACTIONS(9582), + [aux_sym_call_statement_token1] = ACTIONS(9582), + [sym__ambiguous_call_statement] = ACTIONS(9582), + [aux_sym_addressof_expression_token1] = ACTIONS(9582), + [aux_sym_type_of_expression_token1] = ACTIONS(9582), + [aux_sym_unary_expression_token1] = ACTIONS(9582), + [sym_string_literal] = ACTIONS(9584), + [sym_number_literal] = ACTIONS(9584), + [aux_sym_boolean_literal_token1] = ACTIONS(9582), + [aux_sym_boolean_literal_token2] = ACTIONS(9582), + [sym_nothing_literal] = ACTIONS(9582), + [sym_null_literal] = ACTIONS(9582), + [sym_empty_literal] = ACTIONS(9582), + [sym_date_literal] = ACTIONS(9584), + [anon_sym_POUND] = ACTIONS(9582), + }, + [STATE(6844)] = { + [sym_identifier] = ACTIONS(9455), + [sym_newline] = ACTIONS(9457), + [anon_sym_COLON] = ACTIONS(9457), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9455), + [aux_sym_frm_property_statement_token1] = ACTIONS(9455), + [anon_sym_DOT] = ACTIONS(9455), + [anon_sym_BANG] = ACTIONS(9457), + [aux_sym__attribute_identifier_token1] = ACTIONS(9455), + [aux_sym_option_statement_token3] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9455), + [aux_sym_preprocessor_const_token1] = ACTIONS(9455), + [sym_static_modifier] = ACTIONS(9455), + [sym__dim_keyword] = ACTIONS(9455), + [sym__redim_keyword] = ACTIONS(9455), + [aux_sym_get_accessor_token1] = ACTIONS(9455), + [aux_sym_set_accessor_token1] = ACTIONS(9455), + [aux_sym_const_declaration_token1] = ACTIONS(9455), + [anon_sym_LPAREN] = ACTIONS(9457), + [aux_sym_as_type_clause_token2] = ACTIONS(9455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9455), + [aux_sym_visibility_token1] = ACTIONS(9455), + [aux_sym_visibility_token2] = ACTIONS(9455), + [aux_sym_elseif_fragment_token1] = ACTIONS(9455), + [aux_sym_else_fragment_token1] = ACTIONS(9455), + [aux_sym_select_statement_token1] = ACTIONS(9455), + [aux_sym__for_header_token1] = ACTIONS(9455), + [aux_sym_do_statement_token1] = ACTIONS(9455), + [aux_sym_do_statement_token2] = ACTIONS(9455), + [aux_sym_do_condition_token1] = ACTIONS(9455), + [aux_sym_with_statement_token1] = ACTIONS(9455), + [aux_sym_exit_statement_token1] = ACTIONS(9455), + [sym_end_statement] = ACTIONS(9457), + [aux_sym_on_goto_statement_token1] = ACTIONS(9455), + [aux_sym_on_goto_statement_token2] = ACTIONS(9455), + [aux_sym_on_error_statement_token2] = ACTIONS(9455), + [sym__ambiguous_redim_statement] = ACTIONS(9457), + [aux_sym_erase_statement_token1] = ACTIONS(9455), + [aux_sym_open_statement_token1] = ACTIONS(9455), + [aux_sym_file_mode_token2] = ACTIONS(9455), + [aux_sym_file_access_token2] = ACTIONS(9455), + [aux_sym_file_lock_token2] = ACTIONS(9455), + [aux_sym_print_statement_token1] = ACTIONS(9455), + [anon_sym_PLUS] = ACTIONS(9457), + [anon_sym_DASH] = ACTIONS(9455), + [anon_sym_QMARK] = ACTIONS(9457), + [aux_sym_close_statement_token1] = ACTIONS(9455), + [aux_sym_put_statement_token1] = ACTIONS(9455), + [aux_sym_unlock_statement_token1] = ACTIONS(9455), + [aux_sym_seek_statement_token1] = ACTIONS(9455), + [sym_reset_statement] = ACTIONS(9455), + [aux_sym_raise_event_statement_token1] = ACTIONS(9455), + [sym_stop_statement] = ACTIONS(9455), + [sym_beep_statement] = ACTIONS(9455), + [aux_sym_unload_statement_token1] = ACTIONS(9455), + [aux_sym_def_type_statement_token1] = ACTIONS(9455), + [aux_sym_def_type_statement_token2] = ACTIONS(9455), + [aux_sym_def_type_statement_token3] = ACTIONS(9455), + [aux_sym_def_type_statement_token4] = ACTIONS(9455), + [aux_sym_def_type_statement_token5] = ACTIONS(9455), + [aux_sym_def_type_statement_token6] = ACTIONS(9455), + [aux_sym_def_type_statement_token7] = ACTIONS(9455), + [aux_sym_def_type_statement_token8] = ACTIONS(9455), + [aux_sym_def_type_statement_token9] = ACTIONS(9455), + [aux_sym_def_type_statement_token10] = ACTIONS(9455), + [aux_sym_def_type_statement_token11] = ACTIONS(9455), + [aux_sym_def_type_statement_token12] = ACTIONS(9455), + [aux_sym_def_type_statement_token13] = ACTIONS(9455), + [aux_sym_def_type_statement_token14] = ACTIONS(9455), + [aux_sym_call_statement_token1] = ACTIONS(9455), + [sym__ambiguous_call_statement] = ACTIONS(9455), + [aux_sym_addressof_expression_token1] = ACTIONS(9455), + [aux_sym_type_of_expression_token1] = ACTIONS(9455), + [aux_sym_unary_expression_token1] = ACTIONS(9455), + [sym_string_literal] = ACTIONS(9457), + [sym_number_literal] = ACTIONS(9457), + [aux_sym_boolean_literal_token1] = ACTIONS(9455), + [aux_sym_boolean_literal_token2] = ACTIONS(9455), + [sym_nothing_literal] = ACTIONS(9455), + [sym_null_literal] = ACTIONS(9455), + [sym_empty_literal] = ACTIONS(9455), + [sym_date_literal] = ACTIONS(9457), + [anon_sym_POUND] = ACTIONS(9455), + }, + [STATE(6845)] = { + [sym_identifier] = ACTIONS(9586), + [sym_newline] = ACTIONS(9588), + [anon_sym_COLON] = ACTIONS(9588), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9586), + [aux_sym_frm_property_statement_token1] = ACTIONS(9586), + [anon_sym_DOT] = ACTIONS(9586), + [anon_sym_BANG] = ACTIONS(9588), + [aux_sym__attribute_identifier_token1] = ACTIONS(9586), + [aux_sym_option_statement_token3] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9586), + [aux_sym_preprocessor_const_token1] = ACTIONS(9586), + [sym_static_modifier] = ACTIONS(9586), + [sym__dim_keyword] = ACTIONS(9586), + [sym__redim_keyword] = ACTIONS(9586), + [aux_sym_get_accessor_token1] = ACTIONS(9586), + [aux_sym_set_accessor_token1] = ACTIONS(9586), + [aux_sym_const_declaration_token1] = ACTIONS(9586), + [anon_sym_LPAREN] = ACTIONS(9588), + [aux_sym_as_type_clause_token2] = ACTIONS(9586), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9586), + [aux_sym_visibility_token1] = ACTIONS(9586), + [aux_sym_visibility_token2] = ACTIONS(9586), + [aux_sym_elseif_fragment_token1] = ACTIONS(9586), + [aux_sym_else_fragment_token1] = ACTIONS(9586), + [aux_sym_select_statement_token1] = ACTIONS(9586), + [aux_sym_select_statement_token2] = ACTIONS(9586), + [aux_sym__for_header_token1] = ACTIONS(9586), + [aux_sym_do_statement_token1] = ACTIONS(9586), + [aux_sym_do_condition_token1] = ACTIONS(9586), + [aux_sym_with_statement_token1] = ACTIONS(9586), + [aux_sym_exit_statement_token1] = ACTIONS(9586), + [sym_end_statement] = ACTIONS(9588), + [aux_sym_on_goto_statement_token1] = ACTIONS(9586), + [aux_sym_on_goto_statement_token2] = ACTIONS(9586), + [aux_sym_on_error_statement_token2] = ACTIONS(9586), + [sym__ambiguous_redim_statement] = ACTIONS(9588), + [aux_sym_erase_statement_token1] = ACTIONS(9586), + [aux_sym_open_statement_token1] = ACTIONS(9586), + [aux_sym_file_mode_token2] = ACTIONS(9586), + [aux_sym_file_access_token2] = ACTIONS(9586), + [aux_sym_file_lock_token2] = ACTIONS(9586), + [aux_sym_print_statement_token1] = ACTIONS(9586), + [anon_sym_PLUS] = ACTIONS(9588), + [anon_sym_DASH] = ACTIONS(9586), + [anon_sym_QMARK] = ACTIONS(9588), + [aux_sym_close_statement_token1] = ACTIONS(9586), + [aux_sym_put_statement_token1] = ACTIONS(9586), + [aux_sym_unlock_statement_token1] = ACTIONS(9586), + [aux_sym_seek_statement_token1] = ACTIONS(9586), + [sym_reset_statement] = ACTIONS(9586), + [aux_sym_raise_event_statement_token1] = ACTIONS(9586), + [sym_stop_statement] = ACTIONS(9586), + [sym_beep_statement] = ACTIONS(9586), + [aux_sym_unload_statement_token1] = ACTIONS(9586), + [aux_sym_def_type_statement_token1] = ACTIONS(9586), + [aux_sym_def_type_statement_token2] = ACTIONS(9586), + [aux_sym_def_type_statement_token3] = ACTIONS(9586), + [aux_sym_def_type_statement_token4] = ACTIONS(9586), + [aux_sym_def_type_statement_token5] = ACTIONS(9586), + [aux_sym_def_type_statement_token6] = ACTIONS(9586), + [aux_sym_def_type_statement_token7] = ACTIONS(9586), + [aux_sym_def_type_statement_token8] = ACTIONS(9586), + [aux_sym_def_type_statement_token9] = ACTIONS(9586), + [aux_sym_def_type_statement_token10] = ACTIONS(9586), + [aux_sym_def_type_statement_token11] = ACTIONS(9586), + [aux_sym_def_type_statement_token12] = ACTIONS(9586), + [aux_sym_def_type_statement_token13] = ACTIONS(9586), + [aux_sym_def_type_statement_token14] = ACTIONS(9586), + [aux_sym_call_statement_token1] = ACTIONS(9586), + [sym__ambiguous_call_statement] = ACTIONS(9586), + [aux_sym_addressof_expression_token1] = ACTIONS(9586), + [aux_sym_type_of_expression_token1] = ACTIONS(9586), + [aux_sym_unary_expression_token1] = ACTIONS(9586), + [sym_string_literal] = ACTIONS(9588), + [sym_number_literal] = ACTIONS(9588), + [aux_sym_boolean_literal_token1] = ACTIONS(9586), + [aux_sym_boolean_literal_token2] = ACTIONS(9586), + [sym_nothing_literal] = ACTIONS(9586), + [sym_null_literal] = ACTIONS(9586), + [sym_empty_literal] = ACTIONS(9586), + [sym_date_literal] = ACTIONS(9588), + [anon_sym_POUND] = ACTIONS(9586), + }, + [STATE(6846)] = { + [sym_identifier] = ACTIONS(9590), + [sym_newline] = ACTIONS(9592), + [anon_sym_COLON] = ACTIONS(9592), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9590), + [aux_sym_frm_property_statement_token1] = ACTIONS(9590), + [anon_sym_DOT] = ACTIONS(9590), + [anon_sym_BANG] = ACTIONS(9592), + [aux_sym__attribute_identifier_token1] = ACTIONS(9590), + [aux_sym_option_statement_token3] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9590), + [aux_sym_preprocessor_const_token1] = ACTIONS(9590), + [sym_static_modifier] = ACTIONS(9590), + [sym__dim_keyword] = ACTIONS(9590), + [sym__redim_keyword] = ACTIONS(9590), + [aux_sym_get_accessor_token1] = ACTIONS(9590), + [aux_sym_set_accessor_token1] = ACTIONS(9590), + [aux_sym_const_declaration_token1] = ACTIONS(9590), + [anon_sym_LPAREN] = ACTIONS(9592), + [aux_sym_as_type_clause_token2] = ACTIONS(9590), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9590), + [aux_sym_visibility_token1] = ACTIONS(9590), + [aux_sym_visibility_token2] = ACTIONS(9590), + [aux_sym_elseif_fragment_token1] = ACTIONS(9590), + [aux_sym_else_fragment_token1] = ACTIONS(9590), + [aux_sym_select_statement_token1] = ACTIONS(9590), + [aux_sym_select_statement_token2] = ACTIONS(9590), + [aux_sym__for_header_token1] = ACTIONS(9590), + [aux_sym_do_statement_token1] = ACTIONS(9590), + [aux_sym_do_condition_token1] = ACTIONS(9590), + [aux_sym_with_statement_token1] = ACTIONS(9590), + [aux_sym_exit_statement_token1] = ACTIONS(9590), + [sym_end_statement] = ACTIONS(9592), + [aux_sym_on_goto_statement_token1] = ACTIONS(9590), + [aux_sym_on_goto_statement_token2] = ACTIONS(9590), + [aux_sym_on_error_statement_token2] = ACTIONS(9590), + [sym__ambiguous_redim_statement] = ACTIONS(9592), + [aux_sym_erase_statement_token1] = ACTIONS(9590), + [aux_sym_open_statement_token1] = ACTIONS(9590), + [aux_sym_file_mode_token2] = ACTIONS(9590), + [aux_sym_file_access_token2] = ACTIONS(9590), + [aux_sym_file_lock_token2] = ACTIONS(9590), + [aux_sym_print_statement_token1] = ACTIONS(9590), + [anon_sym_PLUS] = ACTIONS(9592), + [anon_sym_DASH] = ACTIONS(9590), + [anon_sym_QMARK] = ACTIONS(9592), + [aux_sym_close_statement_token1] = ACTIONS(9590), + [aux_sym_put_statement_token1] = ACTIONS(9590), + [aux_sym_unlock_statement_token1] = ACTIONS(9590), + [aux_sym_seek_statement_token1] = ACTIONS(9590), + [sym_reset_statement] = ACTIONS(9590), + [aux_sym_raise_event_statement_token1] = ACTIONS(9590), + [sym_stop_statement] = ACTIONS(9590), + [sym_beep_statement] = ACTIONS(9590), + [aux_sym_unload_statement_token1] = ACTIONS(9590), + [aux_sym_def_type_statement_token1] = ACTIONS(9590), + [aux_sym_def_type_statement_token2] = ACTIONS(9590), + [aux_sym_def_type_statement_token3] = ACTIONS(9590), + [aux_sym_def_type_statement_token4] = ACTIONS(9590), + [aux_sym_def_type_statement_token5] = ACTIONS(9590), + [aux_sym_def_type_statement_token6] = ACTIONS(9590), + [aux_sym_def_type_statement_token7] = ACTIONS(9590), + [aux_sym_def_type_statement_token8] = ACTIONS(9590), + [aux_sym_def_type_statement_token9] = ACTIONS(9590), + [aux_sym_def_type_statement_token10] = ACTIONS(9590), + [aux_sym_def_type_statement_token11] = ACTIONS(9590), + [aux_sym_def_type_statement_token12] = ACTIONS(9590), + [aux_sym_def_type_statement_token13] = ACTIONS(9590), + [aux_sym_def_type_statement_token14] = ACTIONS(9590), + [aux_sym_call_statement_token1] = ACTIONS(9590), + [sym__ambiguous_call_statement] = ACTIONS(9590), + [aux_sym_addressof_expression_token1] = ACTIONS(9590), + [aux_sym_type_of_expression_token1] = ACTIONS(9590), + [aux_sym_unary_expression_token1] = ACTIONS(9590), + [sym_string_literal] = ACTIONS(9592), + [sym_number_literal] = ACTIONS(9592), + [aux_sym_boolean_literal_token1] = ACTIONS(9590), + [aux_sym_boolean_literal_token2] = ACTIONS(9590), + [sym_nothing_literal] = ACTIONS(9590), + [sym_null_literal] = ACTIONS(9590), + [sym_empty_literal] = ACTIONS(9590), + [sym_date_literal] = ACTIONS(9592), + [anon_sym_POUND] = ACTIONS(9590), + }, + [STATE(6847)] = { + [sym_identifier] = ACTIONS(9594), + [sym_newline] = ACTIONS(9596), + [anon_sym_COLON] = ACTIONS(9596), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9594), + [aux_sym_frm_property_statement_token1] = ACTIONS(9594), + [anon_sym_DOT] = ACTIONS(9594), + [anon_sym_BANG] = ACTIONS(9596), + [aux_sym__attribute_identifier_token1] = ACTIONS(9594), + [aux_sym_option_statement_token3] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9594), + [aux_sym_preprocessor_const_token1] = ACTIONS(9594), + [sym_static_modifier] = ACTIONS(9594), + [sym__dim_keyword] = ACTIONS(9594), + [sym__redim_keyword] = ACTIONS(9594), + [aux_sym_get_accessor_token1] = ACTIONS(9594), + [aux_sym_set_accessor_token1] = ACTIONS(9594), + [aux_sym_const_declaration_token1] = ACTIONS(9594), + [anon_sym_LPAREN] = ACTIONS(9596), + [aux_sym_as_type_clause_token2] = ACTIONS(9594), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9594), + [aux_sym_visibility_token1] = ACTIONS(9594), + [aux_sym_visibility_token2] = ACTIONS(9594), + [aux_sym_elseif_fragment_token1] = ACTIONS(9594), + [aux_sym_else_fragment_token1] = ACTIONS(9594), + [aux_sym_select_statement_token1] = ACTIONS(9594), + [aux_sym_select_statement_token2] = ACTIONS(9594), + [aux_sym__for_header_token1] = ACTIONS(9594), + [aux_sym_do_statement_token1] = ACTIONS(9594), + [aux_sym_do_condition_token1] = ACTIONS(9594), + [aux_sym_with_statement_token1] = ACTIONS(9594), + [aux_sym_exit_statement_token1] = ACTIONS(9594), + [sym_end_statement] = ACTIONS(9596), + [aux_sym_on_goto_statement_token1] = ACTIONS(9594), + [aux_sym_on_goto_statement_token2] = ACTIONS(9594), + [aux_sym_on_error_statement_token2] = ACTIONS(9594), + [sym__ambiguous_redim_statement] = ACTIONS(9596), + [aux_sym_erase_statement_token1] = ACTIONS(9594), + [aux_sym_open_statement_token1] = ACTIONS(9594), + [aux_sym_file_mode_token2] = ACTIONS(9594), + [aux_sym_file_access_token2] = ACTIONS(9594), + [aux_sym_file_lock_token2] = ACTIONS(9594), + [aux_sym_print_statement_token1] = ACTIONS(9594), + [anon_sym_PLUS] = ACTIONS(9596), + [anon_sym_DASH] = ACTIONS(9594), + [anon_sym_QMARK] = ACTIONS(9596), + [aux_sym_close_statement_token1] = ACTIONS(9594), + [aux_sym_put_statement_token1] = ACTIONS(9594), + [aux_sym_unlock_statement_token1] = ACTIONS(9594), + [aux_sym_seek_statement_token1] = ACTIONS(9594), + [sym_reset_statement] = ACTIONS(9594), + [aux_sym_raise_event_statement_token1] = ACTIONS(9594), + [sym_stop_statement] = ACTIONS(9594), + [sym_beep_statement] = ACTIONS(9594), + [aux_sym_unload_statement_token1] = ACTIONS(9594), + [aux_sym_def_type_statement_token1] = ACTIONS(9594), + [aux_sym_def_type_statement_token2] = ACTIONS(9594), + [aux_sym_def_type_statement_token3] = ACTIONS(9594), + [aux_sym_def_type_statement_token4] = ACTIONS(9594), + [aux_sym_def_type_statement_token5] = ACTIONS(9594), + [aux_sym_def_type_statement_token6] = ACTIONS(9594), + [aux_sym_def_type_statement_token7] = ACTIONS(9594), + [aux_sym_def_type_statement_token8] = ACTIONS(9594), + [aux_sym_def_type_statement_token9] = ACTIONS(9594), + [aux_sym_def_type_statement_token10] = ACTIONS(9594), + [aux_sym_def_type_statement_token11] = ACTIONS(9594), + [aux_sym_def_type_statement_token12] = ACTIONS(9594), + [aux_sym_def_type_statement_token13] = ACTIONS(9594), + [aux_sym_def_type_statement_token14] = ACTIONS(9594), + [aux_sym_call_statement_token1] = ACTIONS(9594), + [sym__ambiguous_call_statement] = ACTIONS(9594), + [aux_sym_addressof_expression_token1] = ACTIONS(9594), + [aux_sym_type_of_expression_token1] = ACTIONS(9594), + [aux_sym_unary_expression_token1] = ACTIONS(9594), + [sym_string_literal] = ACTIONS(9596), + [sym_number_literal] = ACTIONS(9596), + [aux_sym_boolean_literal_token1] = ACTIONS(9594), + [aux_sym_boolean_literal_token2] = ACTIONS(9594), + [sym_nothing_literal] = ACTIONS(9594), + [sym_null_literal] = ACTIONS(9594), + [sym_empty_literal] = ACTIONS(9594), + [sym_date_literal] = ACTIONS(9596), + [anon_sym_POUND] = ACTIONS(9594), + }, + [STATE(6848)] = { + [sym_identifier] = ACTIONS(8645), + [sym_newline] = ACTIONS(8647), + [anon_sym_COLON] = ACTIONS(8649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8645), + [aux_sym_frm_property_statement_token1] = ACTIONS(8645), + [anon_sym_DOT] = ACTIONS(8645), + [anon_sym_BANG] = ACTIONS(8647), + [aux_sym__attribute_identifier_token1] = ACTIONS(8645), + [aux_sym_option_statement_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8645), + [aux_sym_preprocessor_const_token1] = ACTIONS(8645), + [sym_static_modifier] = ACTIONS(8645), + [sym__dim_keyword] = ACTIONS(8645), + [sym__redim_keyword] = ACTIONS(8645), + [aux_sym_get_accessor_token1] = ACTIONS(8645), + [aux_sym_set_accessor_token1] = ACTIONS(8645), + [aux_sym_const_declaration_token1] = ACTIONS(8645), + [anon_sym_LPAREN] = ACTIONS(8647), + [aux_sym_as_type_clause_token2] = ACTIONS(8645), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8645), + [aux_sym_visibility_token1] = ACTIONS(8645), + [aux_sym_visibility_token2] = ACTIONS(8645), + [aux_sym_elseif_fragment_token1] = ACTIONS(8645), + [aux_sym_else_fragment_token1] = ACTIONS(8645), + [aux_sym_select_statement_token1] = ACTIONS(8645), + [aux_sym__for_header_token1] = ACTIONS(8645), + [aux_sym_do_statement_token1] = ACTIONS(8645), + [aux_sym_do_condition_token1] = ACTIONS(8645), + [aux_sym_while_statement_token1] = ACTIONS(8645), + [aux_sym_with_statement_token1] = ACTIONS(8645), + [aux_sym_exit_statement_token1] = ACTIONS(8645), + [sym_end_statement] = ACTIONS(8647), + [aux_sym_on_goto_statement_token1] = ACTIONS(8645), + [aux_sym_on_goto_statement_token2] = ACTIONS(8645), + [aux_sym_on_error_statement_token2] = ACTIONS(8645), + [sym__ambiguous_redim_statement] = ACTIONS(8647), + [aux_sym_erase_statement_token1] = ACTIONS(8645), + [aux_sym_open_statement_token1] = ACTIONS(8645), + [aux_sym_file_mode_token2] = ACTIONS(8645), + [aux_sym_file_access_token2] = ACTIONS(8645), + [aux_sym_file_lock_token2] = ACTIONS(8645), + [aux_sym_print_statement_token1] = ACTIONS(8645), + [anon_sym_PLUS] = ACTIONS(8647), + [anon_sym_DASH] = ACTIONS(8645), + [anon_sym_QMARK] = ACTIONS(8647), + [aux_sym_close_statement_token1] = ACTIONS(8645), + [aux_sym_put_statement_token1] = ACTIONS(8645), + [aux_sym_unlock_statement_token1] = ACTIONS(8645), + [aux_sym_seek_statement_token1] = ACTIONS(8645), + [sym_reset_statement] = ACTIONS(8645), + [aux_sym_raise_event_statement_token1] = ACTIONS(8645), + [sym_stop_statement] = ACTIONS(8645), + [sym_beep_statement] = ACTIONS(8645), + [aux_sym_unload_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token2] = ACTIONS(8645), + [aux_sym_def_type_statement_token3] = ACTIONS(8645), + [aux_sym_def_type_statement_token4] = ACTIONS(8645), + [aux_sym_def_type_statement_token5] = ACTIONS(8645), + [aux_sym_def_type_statement_token6] = ACTIONS(8645), + [aux_sym_def_type_statement_token7] = ACTIONS(8645), + [aux_sym_def_type_statement_token8] = ACTIONS(8645), + [aux_sym_def_type_statement_token9] = ACTIONS(8645), + [aux_sym_def_type_statement_token10] = ACTIONS(8645), + [aux_sym_def_type_statement_token11] = ACTIONS(8645), + [aux_sym_def_type_statement_token12] = ACTIONS(8645), + [aux_sym_def_type_statement_token13] = ACTIONS(8645), + [aux_sym_def_type_statement_token14] = ACTIONS(8645), + [aux_sym_call_statement_token1] = ACTIONS(8645), + [sym__ambiguous_call_statement] = ACTIONS(8645), + [aux_sym_addressof_expression_token1] = ACTIONS(8645), + [aux_sym_type_of_expression_token1] = ACTIONS(8645), + [aux_sym_unary_expression_token1] = ACTIONS(8645), + [sym_string_literal] = ACTIONS(8647), + [sym_number_literal] = ACTIONS(8649), + [aux_sym_boolean_literal_token1] = ACTIONS(8645), + [aux_sym_boolean_literal_token2] = ACTIONS(8645), + [sym_nothing_literal] = ACTIONS(8645), + [sym_null_literal] = ACTIONS(8645), + [sym_empty_literal] = ACTIONS(8645), + [sym_date_literal] = ACTIONS(8647), + [anon_sym_POUND] = ACTIONS(8645), + }, + [STATE(6849)] = { + [sym_identifier] = ACTIONS(8749), + [sym_newline] = ACTIONS(8751), + [anon_sym_COLON] = ACTIONS(8753), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8749), + [aux_sym_frm_property_statement_token1] = ACTIONS(8749), + [anon_sym_DOT] = ACTIONS(8749), + [anon_sym_BANG] = ACTIONS(8751), + [aux_sym__attribute_identifier_token1] = ACTIONS(8749), + [aux_sym_option_statement_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8749), + [aux_sym_preprocessor_const_token1] = ACTIONS(8749), + [sym_static_modifier] = ACTIONS(8749), + [sym__dim_keyword] = ACTIONS(8749), + [sym__redim_keyword] = ACTIONS(8749), + [aux_sym_get_accessor_token1] = ACTIONS(8749), + [aux_sym_set_accessor_token1] = ACTIONS(8749), + [aux_sym_const_declaration_token1] = ACTIONS(8749), + [anon_sym_LPAREN] = ACTIONS(8751), + [aux_sym_as_type_clause_token2] = ACTIONS(8749), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8749), + [aux_sym_visibility_token1] = ACTIONS(8749), + [aux_sym_visibility_token2] = ACTIONS(8749), + [aux_sym_elseif_fragment_token1] = ACTIONS(8749), + [aux_sym_else_fragment_token1] = ACTIONS(8749), + [aux_sym_select_statement_token1] = ACTIONS(8749), + [aux_sym__for_header_token1] = ACTIONS(8749), + [aux_sym_do_statement_token1] = ACTIONS(8749), + [aux_sym_do_condition_token1] = ACTIONS(8749), + [aux_sym_while_statement_token1] = ACTIONS(8749), + [aux_sym_with_statement_token1] = ACTIONS(8749), + [aux_sym_exit_statement_token1] = ACTIONS(8749), + [sym_end_statement] = ACTIONS(8751), + [aux_sym_on_goto_statement_token1] = ACTIONS(8749), + [aux_sym_on_goto_statement_token2] = ACTIONS(8749), + [aux_sym_on_error_statement_token2] = ACTIONS(8749), + [sym__ambiguous_redim_statement] = ACTIONS(8751), + [aux_sym_erase_statement_token1] = ACTIONS(8749), + [aux_sym_open_statement_token1] = ACTIONS(8749), + [aux_sym_file_mode_token2] = ACTIONS(8749), + [aux_sym_file_access_token2] = ACTIONS(8749), + [aux_sym_file_lock_token2] = ACTIONS(8749), + [aux_sym_print_statement_token1] = ACTIONS(8749), + [anon_sym_PLUS] = ACTIONS(8751), + [anon_sym_DASH] = ACTIONS(8749), + [anon_sym_QMARK] = ACTIONS(8751), + [aux_sym_close_statement_token1] = ACTIONS(8749), + [aux_sym_put_statement_token1] = ACTIONS(8749), + [aux_sym_unlock_statement_token1] = ACTIONS(8749), + [aux_sym_seek_statement_token1] = ACTIONS(8749), + [sym_reset_statement] = ACTIONS(8749), + [aux_sym_raise_event_statement_token1] = ACTIONS(8749), + [sym_stop_statement] = ACTIONS(8749), + [sym_beep_statement] = ACTIONS(8749), + [aux_sym_unload_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token2] = ACTIONS(8749), + [aux_sym_def_type_statement_token3] = ACTIONS(8749), + [aux_sym_def_type_statement_token4] = ACTIONS(8749), + [aux_sym_def_type_statement_token5] = ACTIONS(8749), + [aux_sym_def_type_statement_token6] = ACTIONS(8749), + [aux_sym_def_type_statement_token7] = ACTIONS(8749), + [aux_sym_def_type_statement_token8] = ACTIONS(8749), + [aux_sym_def_type_statement_token9] = ACTIONS(8749), + [aux_sym_def_type_statement_token10] = ACTIONS(8749), + [aux_sym_def_type_statement_token11] = ACTIONS(8749), + [aux_sym_def_type_statement_token12] = ACTIONS(8749), + [aux_sym_def_type_statement_token13] = ACTIONS(8749), + [aux_sym_def_type_statement_token14] = ACTIONS(8749), + [aux_sym_call_statement_token1] = ACTIONS(8749), + [sym__ambiguous_call_statement] = ACTIONS(8749), + [aux_sym_addressof_expression_token1] = ACTIONS(8749), + [aux_sym_type_of_expression_token1] = ACTIONS(8749), + [aux_sym_unary_expression_token1] = ACTIONS(8749), + [sym_string_literal] = ACTIONS(8751), + [sym_number_literal] = ACTIONS(8753), + [aux_sym_boolean_literal_token1] = ACTIONS(8749), + [aux_sym_boolean_literal_token2] = ACTIONS(8749), + [sym_nothing_literal] = ACTIONS(8749), + [sym_null_literal] = ACTIONS(8749), + [sym_empty_literal] = ACTIONS(8749), + [sym_date_literal] = ACTIONS(8751), + [anon_sym_POUND] = ACTIONS(8749), + }, + [STATE(6850)] = { + [sym_identifier] = ACTIONS(9427), + [sym_newline] = ACTIONS(9429), + [anon_sym_COLON] = ACTIONS(9429), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9427), + [aux_sym_frm_property_statement_token1] = ACTIONS(9427), + [anon_sym_DOT] = ACTIONS(9427), + [anon_sym_BANG] = ACTIONS(9429), + [aux_sym__attribute_identifier_token1] = ACTIONS(9427), + [aux_sym_option_statement_token3] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9427), + [aux_sym_preprocessor_const_token1] = ACTIONS(9427), + [sym_static_modifier] = ACTIONS(9427), + [sym__dim_keyword] = ACTIONS(9427), + [sym__redim_keyword] = ACTIONS(9427), + [aux_sym_get_accessor_token1] = ACTIONS(9427), + [aux_sym_set_accessor_token1] = ACTIONS(9427), + [aux_sym_const_declaration_token1] = ACTIONS(9427), + [anon_sym_LPAREN] = ACTIONS(9429), + [aux_sym_as_type_clause_token2] = ACTIONS(9427), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9427), + [aux_sym_visibility_token1] = ACTIONS(9427), + [aux_sym_visibility_token2] = ACTIONS(9427), + [aux_sym_elseif_fragment_token1] = ACTIONS(9427), + [aux_sym_else_fragment_token1] = ACTIONS(9427), + [aux_sym_select_statement_token1] = ACTIONS(9427), + [aux_sym_select_statement_token2] = ACTIONS(9427), + [aux_sym__for_header_token1] = ACTIONS(9427), + [aux_sym_do_statement_token1] = ACTIONS(9427), + [aux_sym_do_condition_token1] = ACTIONS(9427), + [aux_sym_with_statement_token1] = ACTIONS(9427), + [aux_sym_exit_statement_token1] = ACTIONS(9427), + [sym_end_statement] = ACTIONS(9429), + [aux_sym_on_goto_statement_token1] = ACTIONS(9427), + [aux_sym_on_goto_statement_token2] = ACTIONS(9427), + [aux_sym_on_error_statement_token2] = ACTIONS(9427), + [sym__ambiguous_redim_statement] = ACTIONS(9429), + [aux_sym_erase_statement_token1] = ACTIONS(9427), + [aux_sym_open_statement_token1] = ACTIONS(9427), + [aux_sym_file_mode_token2] = ACTIONS(9427), + [aux_sym_file_access_token2] = ACTIONS(9427), + [aux_sym_file_lock_token2] = ACTIONS(9427), + [aux_sym_print_statement_token1] = ACTIONS(9427), + [anon_sym_PLUS] = ACTIONS(9429), + [anon_sym_DASH] = ACTIONS(9427), + [anon_sym_QMARK] = ACTIONS(9429), + [aux_sym_close_statement_token1] = ACTIONS(9427), + [aux_sym_put_statement_token1] = ACTIONS(9427), + [aux_sym_unlock_statement_token1] = ACTIONS(9427), + [aux_sym_seek_statement_token1] = ACTIONS(9427), + [sym_reset_statement] = ACTIONS(9427), + [aux_sym_raise_event_statement_token1] = ACTIONS(9427), + [sym_stop_statement] = ACTIONS(9427), + [sym_beep_statement] = ACTIONS(9427), + [aux_sym_unload_statement_token1] = ACTIONS(9427), + [aux_sym_def_type_statement_token1] = ACTIONS(9427), + [aux_sym_def_type_statement_token2] = ACTIONS(9427), + [aux_sym_def_type_statement_token3] = ACTIONS(9427), + [aux_sym_def_type_statement_token4] = ACTIONS(9427), + [aux_sym_def_type_statement_token5] = ACTIONS(9427), + [aux_sym_def_type_statement_token6] = ACTIONS(9427), + [aux_sym_def_type_statement_token7] = ACTIONS(9427), + [aux_sym_def_type_statement_token8] = ACTIONS(9427), + [aux_sym_def_type_statement_token9] = ACTIONS(9427), + [aux_sym_def_type_statement_token10] = ACTIONS(9427), + [aux_sym_def_type_statement_token11] = ACTIONS(9427), + [aux_sym_def_type_statement_token12] = ACTIONS(9427), + [aux_sym_def_type_statement_token13] = ACTIONS(9427), + [aux_sym_def_type_statement_token14] = ACTIONS(9427), + [aux_sym_call_statement_token1] = ACTIONS(9427), + [sym__ambiguous_call_statement] = ACTIONS(9427), + [aux_sym_addressof_expression_token1] = ACTIONS(9427), + [aux_sym_type_of_expression_token1] = ACTIONS(9427), + [aux_sym_unary_expression_token1] = ACTIONS(9427), + [sym_string_literal] = ACTIONS(9429), + [sym_number_literal] = ACTIONS(9429), + [aux_sym_boolean_literal_token1] = ACTIONS(9427), + [aux_sym_boolean_literal_token2] = ACTIONS(9427), + [sym_nothing_literal] = ACTIONS(9427), + [sym_null_literal] = ACTIONS(9427), + [sym_empty_literal] = ACTIONS(9427), + [sym_date_literal] = ACTIONS(9429), + [anon_sym_POUND] = ACTIONS(9427), + }, + [STATE(6851)] = { + [sym_identifier] = ACTIONS(9352), + [sym_newline] = ACTIONS(9354), + [anon_sym_COLON] = ACTIONS(9354), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9352), + [aux_sym_frm_property_statement_token1] = ACTIONS(9352), + [anon_sym_DOT] = ACTIONS(9352), + [anon_sym_BANG] = ACTIONS(9354), + [aux_sym__attribute_identifier_token1] = ACTIONS(9352), + [aux_sym_option_statement_token3] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9352), + [aux_sym_preprocessor_const_token1] = ACTIONS(9352), + [sym_static_modifier] = ACTIONS(9352), + [sym__dim_keyword] = ACTIONS(9352), + [sym__redim_keyword] = ACTIONS(9352), + [aux_sym_get_accessor_token1] = ACTIONS(9352), + [aux_sym_set_accessor_token1] = ACTIONS(9352), + [aux_sym_const_declaration_token1] = ACTIONS(9352), + [anon_sym_LPAREN] = ACTIONS(9354), + [aux_sym_as_type_clause_token2] = ACTIONS(9352), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9352), + [aux_sym_visibility_token1] = ACTIONS(9352), + [aux_sym_visibility_token2] = ACTIONS(9352), + [aux_sym_elseif_fragment_token1] = ACTIONS(9352), + [aux_sym_else_fragment_token1] = ACTIONS(9352), + [aux_sym_select_statement_token1] = ACTIONS(9352), + [aux_sym_select_statement_token2] = ACTIONS(9352), + [aux_sym__for_header_token1] = ACTIONS(9352), + [aux_sym_do_statement_token1] = ACTIONS(9352), + [aux_sym_do_condition_token1] = ACTIONS(9352), + [aux_sym_with_statement_token1] = ACTIONS(9352), + [aux_sym_exit_statement_token1] = ACTIONS(9352), + [sym_end_statement] = ACTIONS(9354), + [aux_sym_on_goto_statement_token1] = ACTIONS(9352), + [aux_sym_on_goto_statement_token2] = ACTIONS(9352), + [aux_sym_on_error_statement_token2] = ACTIONS(9352), + [sym__ambiguous_redim_statement] = ACTIONS(9354), + [aux_sym_erase_statement_token1] = ACTIONS(9352), + [aux_sym_open_statement_token1] = ACTIONS(9352), + [aux_sym_file_mode_token2] = ACTIONS(9352), + [aux_sym_file_access_token2] = ACTIONS(9352), + [aux_sym_file_lock_token2] = ACTIONS(9352), + [aux_sym_print_statement_token1] = ACTIONS(9352), + [anon_sym_PLUS] = ACTIONS(9354), + [anon_sym_DASH] = ACTIONS(9352), + [anon_sym_QMARK] = ACTIONS(9354), + [aux_sym_close_statement_token1] = ACTIONS(9352), + [aux_sym_put_statement_token1] = ACTIONS(9352), + [aux_sym_unlock_statement_token1] = ACTIONS(9352), + [aux_sym_seek_statement_token1] = ACTIONS(9352), + [sym_reset_statement] = ACTIONS(9352), + [aux_sym_raise_event_statement_token1] = ACTIONS(9352), + [sym_stop_statement] = ACTIONS(9352), + [sym_beep_statement] = ACTIONS(9352), + [aux_sym_unload_statement_token1] = ACTIONS(9352), + [aux_sym_def_type_statement_token1] = ACTIONS(9352), + [aux_sym_def_type_statement_token2] = ACTIONS(9352), + [aux_sym_def_type_statement_token3] = ACTIONS(9352), + [aux_sym_def_type_statement_token4] = ACTIONS(9352), + [aux_sym_def_type_statement_token5] = ACTIONS(9352), + [aux_sym_def_type_statement_token6] = ACTIONS(9352), + [aux_sym_def_type_statement_token7] = ACTIONS(9352), + [aux_sym_def_type_statement_token8] = ACTIONS(9352), + [aux_sym_def_type_statement_token9] = ACTIONS(9352), + [aux_sym_def_type_statement_token10] = ACTIONS(9352), + [aux_sym_def_type_statement_token11] = ACTIONS(9352), + [aux_sym_def_type_statement_token12] = ACTIONS(9352), + [aux_sym_def_type_statement_token13] = ACTIONS(9352), + [aux_sym_def_type_statement_token14] = ACTIONS(9352), + [aux_sym_call_statement_token1] = ACTIONS(9352), + [sym__ambiguous_call_statement] = ACTIONS(9352), + [aux_sym_addressof_expression_token1] = ACTIONS(9352), + [aux_sym_type_of_expression_token1] = ACTIONS(9352), + [aux_sym_unary_expression_token1] = ACTIONS(9352), + [sym_string_literal] = ACTIONS(9354), + [sym_number_literal] = ACTIONS(9354), + [aux_sym_boolean_literal_token1] = ACTIONS(9352), + [aux_sym_boolean_literal_token2] = ACTIONS(9352), + [sym_nothing_literal] = ACTIONS(9352), + [sym_null_literal] = ACTIONS(9352), + [sym_empty_literal] = ACTIONS(9352), + [sym_date_literal] = ACTIONS(9354), + [anon_sym_POUND] = ACTIONS(9352), + }, + [STATE(6852)] = { + [sym_identifier] = ACTIONS(9072), + [sym_newline] = ACTIONS(9074), + [anon_sym_COLON] = ACTIONS(9074), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9072), + [aux_sym_frm_property_statement_token1] = ACTIONS(9072), + [anon_sym_DOT] = ACTIONS(9072), + [anon_sym_BANG] = ACTIONS(9074), + [aux_sym__attribute_identifier_token1] = ACTIONS(9072), + [aux_sym_option_statement_token3] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9072), + [aux_sym_preprocessor_const_token1] = ACTIONS(9072), + [sym_static_modifier] = ACTIONS(9072), + [sym__dim_keyword] = ACTIONS(9072), + [sym__redim_keyword] = ACTIONS(9072), + [aux_sym_get_accessor_token1] = ACTIONS(9072), + [aux_sym_set_accessor_token1] = ACTIONS(9072), + [aux_sym_const_declaration_token1] = ACTIONS(9072), + [anon_sym_LPAREN] = ACTIONS(9074), + [aux_sym_as_type_clause_token2] = ACTIONS(9072), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9072), + [aux_sym_visibility_token1] = ACTIONS(9072), + [aux_sym_visibility_token2] = ACTIONS(9072), + [aux_sym_elseif_fragment_token1] = ACTIONS(9072), + [aux_sym_else_fragment_token1] = ACTIONS(9072), + [aux_sym_select_statement_token1] = ACTIONS(9072), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9072), + [aux_sym__for_header_token1] = ACTIONS(9072), + [aux_sym_do_statement_token1] = ACTIONS(9072), + [aux_sym_do_condition_token1] = ACTIONS(9072), + [aux_sym_with_statement_token1] = ACTIONS(9072), + [aux_sym_exit_statement_token1] = ACTIONS(9072), + [sym_end_statement] = ACTIONS(9074), + [aux_sym_on_goto_statement_token1] = ACTIONS(9072), + [aux_sym_on_goto_statement_token2] = ACTIONS(9072), + [aux_sym_on_error_statement_token2] = ACTIONS(9072), + [sym__ambiguous_redim_statement] = ACTIONS(9074), + [aux_sym_erase_statement_token1] = ACTIONS(9072), + [aux_sym_open_statement_token1] = ACTIONS(9072), + [aux_sym_file_mode_token2] = ACTIONS(9072), + [aux_sym_file_access_token2] = ACTIONS(9072), + [aux_sym_file_lock_token2] = ACTIONS(9072), + [aux_sym_print_statement_token1] = ACTIONS(9072), + [anon_sym_PLUS] = ACTIONS(9074), + [anon_sym_DASH] = ACTIONS(9072), + [anon_sym_QMARK] = ACTIONS(9074), + [aux_sym_close_statement_token1] = ACTIONS(9072), + [aux_sym_put_statement_token1] = ACTIONS(9072), + [aux_sym_unlock_statement_token1] = ACTIONS(9072), + [aux_sym_seek_statement_token1] = ACTIONS(9072), + [sym_reset_statement] = ACTIONS(9072), + [aux_sym_raise_event_statement_token1] = ACTIONS(9072), + [sym_stop_statement] = ACTIONS(9072), + [sym_beep_statement] = ACTIONS(9072), + [aux_sym_unload_statement_token1] = ACTIONS(9072), + [aux_sym_def_type_statement_token1] = ACTIONS(9072), + [aux_sym_def_type_statement_token2] = ACTIONS(9072), + [aux_sym_def_type_statement_token3] = ACTIONS(9072), + [aux_sym_def_type_statement_token4] = ACTIONS(9072), + [aux_sym_def_type_statement_token5] = ACTIONS(9072), + [aux_sym_def_type_statement_token6] = ACTIONS(9072), + [aux_sym_def_type_statement_token7] = ACTIONS(9072), + [aux_sym_def_type_statement_token8] = ACTIONS(9072), + [aux_sym_def_type_statement_token9] = ACTIONS(9072), + [aux_sym_def_type_statement_token10] = ACTIONS(9072), + [aux_sym_def_type_statement_token11] = ACTIONS(9072), + [aux_sym_def_type_statement_token12] = ACTIONS(9072), + [aux_sym_def_type_statement_token13] = ACTIONS(9072), + [aux_sym_def_type_statement_token14] = ACTIONS(9072), + [aux_sym_call_statement_token1] = ACTIONS(9072), + [sym__ambiguous_call_statement] = ACTIONS(9072), + [aux_sym_addressof_expression_token1] = ACTIONS(9072), + [aux_sym_type_of_expression_token1] = ACTIONS(9072), + [aux_sym_unary_expression_token1] = ACTIONS(9072), + [sym_string_literal] = ACTIONS(9074), + [sym_number_literal] = ACTIONS(9074), + [aux_sym_boolean_literal_token1] = ACTIONS(9072), + [aux_sym_boolean_literal_token2] = ACTIONS(9072), + [sym_nothing_literal] = ACTIONS(9072), + [sym_null_literal] = ACTIONS(9072), + [sym_empty_literal] = ACTIONS(9072), + [sym_date_literal] = ACTIONS(9074), + [anon_sym_POUND] = ACTIONS(9072), + }, + [STATE(6853)] = { + [sym_identifier] = ACTIONS(9106), + [sym_newline] = ACTIONS(9108), + [anon_sym_COLON] = ACTIONS(9108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9106), + [aux_sym_frm_property_statement_token1] = ACTIONS(9106), + [anon_sym_DOT] = ACTIONS(9106), + [anon_sym_BANG] = ACTIONS(9108), + [aux_sym__attribute_identifier_token1] = ACTIONS(9106), + [aux_sym_option_statement_token3] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9106), + [aux_sym_preprocessor_const_token1] = ACTIONS(9106), + [sym_static_modifier] = ACTIONS(9106), + [sym__dim_keyword] = ACTIONS(9106), + [sym__redim_keyword] = ACTIONS(9106), + [aux_sym_get_accessor_token1] = ACTIONS(9106), + [aux_sym_set_accessor_token1] = ACTIONS(9106), + [aux_sym_const_declaration_token1] = ACTIONS(9106), + [anon_sym_LPAREN] = ACTIONS(9108), + [aux_sym_as_type_clause_token2] = ACTIONS(9106), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9106), + [aux_sym_visibility_token1] = ACTIONS(9106), + [aux_sym_visibility_token2] = ACTIONS(9106), + [aux_sym_elseif_fragment_token1] = ACTIONS(9106), + [aux_sym_else_fragment_token1] = ACTIONS(9106), + [aux_sym_select_statement_token1] = ACTIONS(9106), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9106), + [aux_sym__for_header_token1] = ACTIONS(9106), + [aux_sym_do_statement_token1] = ACTIONS(9106), + [aux_sym_do_condition_token1] = ACTIONS(9106), + [aux_sym_with_statement_token1] = ACTIONS(9106), + [aux_sym_exit_statement_token1] = ACTIONS(9106), + [sym_end_statement] = ACTIONS(9108), + [aux_sym_on_goto_statement_token1] = ACTIONS(9106), + [aux_sym_on_goto_statement_token2] = ACTIONS(9106), + [aux_sym_on_error_statement_token2] = ACTIONS(9106), + [sym__ambiguous_redim_statement] = ACTIONS(9108), + [aux_sym_erase_statement_token1] = ACTIONS(9106), + [aux_sym_open_statement_token1] = ACTIONS(9106), + [aux_sym_file_mode_token2] = ACTIONS(9106), + [aux_sym_file_access_token2] = ACTIONS(9106), + [aux_sym_file_lock_token2] = ACTIONS(9106), + [aux_sym_print_statement_token1] = ACTIONS(9106), + [anon_sym_PLUS] = ACTIONS(9108), + [anon_sym_DASH] = ACTIONS(9106), + [anon_sym_QMARK] = ACTIONS(9108), + [aux_sym_close_statement_token1] = ACTIONS(9106), + [aux_sym_put_statement_token1] = ACTIONS(9106), + [aux_sym_unlock_statement_token1] = ACTIONS(9106), + [aux_sym_seek_statement_token1] = ACTIONS(9106), + [sym_reset_statement] = ACTIONS(9106), + [aux_sym_raise_event_statement_token1] = ACTIONS(9106), + [sym_stop_statement] = ACTIONS(9106), + [sym_beep_statement] = ACTIONS(9106), + [aux_sym_unload_statement_token1] = ACTIONS(9106), + [aux_sym_def_type_statement_token1] = ACTIONS(9106), + [aux_sym_def_type_statement_token2] = ACTIONS(9106), + [aux_sym_def_type_statement_token3] = ACTIONS(9106), + [aux_sym_def_type_statement_token4] = ACTIONS(9106), + [aux_sym_def_type_statement_token5] = ACTIONS(9106), + [aux_sym_def_type_statement_token6] = ACTIONS(9106), + [aux_sym_def_type_statement_token7] = ACTIONS(9106), + [aux_sym_def_type_statement_token8] = ACTIONS(9106), + [aux_sym_def_type_statement_token9] = ACTIONS(9106), + [aux_sym_def_type_statement_token10] = ACTIONS(9106), + [aux_sym_def_type_statement_token11] = ACTIONS(9106), + [aux_sym_def_type_statement_token12] = ACTIONS(9106), + [aux_sym_def_type_statement_token13] = ACTIONS(9106), + [aux_sym_def_type_statement_token14] = ACTIONS(9106), + [aux_sym_call_statement_token1] = ACTIONS(9106), + [sym__ambiguous_call_statement] = ACTIONS(9106), + [aux_sym_addressof_expression_token1] = ACTIONS(9106), + [aux_sym_type_of_expression_token1] = ACTIONS(9106), + [aux_sym_unary_expression_token1] = ACTIONS(9106), + [sym_string_literal] = ACTIONS(9108), + [sym_number_literal] = ACTIONS(9108), + [aux_sym_boolean_literal_token1] = ACTIONS(9106), + [aux_sym_boolean_literal_token2] = ACTIONS(9106), + [sym_nothing_literal] = ACTIONS(9106), + [sym_null_literal] = ACTIONS(9106), + [sym_empty_literal] = ACTIONS(9106), + [sym_date_literal] = ACTIONS(9108), + [anon_sym_POUND] = ACTIONS(9106), + }, + [STATE(6854)] = { + [sym_identifier] = ACTIONS(9431), + [sym_newline] = ACTIONS(9433), + [anon_sym_COLON] = ACTIONS(9433), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9431), + [aux_sym_frm_property_statement_token1] = ACTIONS(9431), + [anon_sym_DOT] = ACTIONS(9431), + [anon_sym_BANG] = ACTIONS(9433), + [aux_sym__attribute_identifier_token1] = ACTIONS(9431), + [aux_sym_option_statement_token3] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9431), + [aux_sym_preprocessor_const_token1] = ACTIONS(9431), + [sym_static_modifier] = ACTIONS(9431), + [sym__dim_keyword] = ACTIONS(9431), + [sym__redim_keyword] = ACTIONS(9431), + [aux_sym_get_accessor_token1] = ACTIONS(9431), + [aux_sym_set_accessor_token1] = ACTIONS(9431), + [aux_sym_const_declaration_token1] = ACTIONS(9431), + [anon_sym_LPAREN] = ACTIONS(9433), + [aux_sym_as_type_clause_token2] = ACTIONS(9431), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9431), + [aux_sym_visibility_token1] = ACTIONS(9431), + [aux_sym_visibility_token2] = ACTIONS(9431), + [aux_sym_elseif_fragment_token1] = ACTIONS(9431), + [aux_sym_else_fragment_token1] = ACTIONS(9431), + [aux_sym_select_statement_token1] = ACTIONS(9431), + [aux_sym_select_statement_token2] = ACTIONS(9431), + [aux_sym__for_header_token1] = ACTIONS(9431), + [aux_sym_do_statement_token1] = ACTIONS(9431), + [aux_sym_do_condition_token1] = ACTIONS(9431), + [aux_sym_with_statement_token1] = ACTIONS(9431), + [aux_sym_exit_statement_token1] = ACTIONS(9431), + [sym_end_statement] = ACTIONS(9433), + [aux_sym_on_goto_statement_token1] = ACTIONS(9431), + [aux_sym_on_goto_statement_token2] = ACTIONS(9431), + [aux_sym_on_error_statement_token2] = ACTIONS(9431), + [sym__ambiguous_redim_statement] = ACTIONS(9433), + [aux_sym_erase_statement_token1] = ACTIONS(9431), + [aux_sym_open_statement_token1] = ACTIONS(9431), + [aux_sym_file_mode_token2] = ACTIONS(9431), + [aux_sym_file_access_token2] = ACTIONS(9431), + [aux_sym_file_lock_token2] = ACTIONS(9431), + [aux_sym_print_statement_token1] = ACTIONS(9431), + [anon_sym_PLUS] = ACTIONS(9433), + [anon_sym_DASH] = ACTIONS(9431), + [anon_sym_QMARK] = ACTIONS(9433), + [aux_sym_close_statement_token1] = ACTIONS(9431), + [aux_sym_put_statement_token1] = ACTIONS(9431), + [aux_sym_unlock_statement_token1] = ACTIONS(9431), + [aux_sym_seek_statement_token1] = ACTIONS(9431), + [sym_reset_statement] = ACTIONS(9431), + [aux_sym_raise_event_statement_token1] = ACTIONS(9431), + [sym_stop_statement] = ACTIONS(9431), + [sym_beep_statement] = ACTIONS(9431), + [aux_sym_unload_statement_token1] = ACTIONS(9431), + [aux_sym_def_type_statement_token1] = ACTIONS(9431), + [aux_sym_def_type_statement_token2] = ACTIONS(9431), + [aux_sym_def_type_statement_token3] = ACTIONS(9431), + [aux_sym_def_type_statement_token4] = ACTIONS(9431), + [aux_sym_def_type_statement_token5] = ACTIONS(9431), + [aux_sym_def_type_statement_token6] = ACTIONS(9431), + [aux_sym_def_type_statement_token7] = ACTIONS(9431), + [aux_sym_def_type_statement_token8] = ACTIONS(9431), + [aux_sym_def_type_statement_token9] = ACTIONS(9431), + [aux_sym_def_type_statement_token10] = ACTIONS(9431), + [aux_sym_def_type_statement_token11] = ACTIONS(9431), + [aux_sym_def_type_statement_token12] = ACTIONS(9431), + [aux_sym_def_type_statement_token13] = ACTIONS(9431), + [aux_sym_def_type_statement_token14] = ACTIONS(9431), + [aux_sym_call_statement_token1] = ACTIONS(9431), + [sym__ambiguous_call_statement] = ACTIONS(9431), + [aux_sym_addressof_expression_token1] = ACTIONS(9431), + [aux_sym_type_of_expression_token1] = ACTIONS(9431), + [aux_sym_unary_expression_token1] = ACTIONS(9431), + [sym_string_literal] = ACTIONS(9433), + [sym_number_literal] = ACTIONS(9433), + [aux_sym_boolean_literal_token1] = ACTIONS(9431), + [aux_sym_boolean_literal_token2] = ACTIONS(9431), + [sym_nothing_literal] = ACTIONS(9431), + [sym_null_literal] = ACTIONS(9431), + [sym_empty_literal] = ACTIONS(9431), + [sym_date_literal] = ACTIONS(9433), + [anon_sym_POUND] = ACTIONS(9431), + }, + [STATE(6855)] = { + [sym_identifier] = ACTIONS(8635), + [sym_newline] = ACTIONS(8637), + [anon_sym_COLON] = ACTIONS(8637), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8635), + [aux_sym_frm_property_statement_token1] = ACTIONS(8635), + [anon_sym_DOT] = ACTIONS(8635), + [anon_sym_BANG] = ACTIONS(8637), + [aux_sym__attribute_identifier_token1] = ACTIONS(8635), + [aux_sym_option_statement_token3] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8635), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8635), + [aux_sym_preprocessor_const_token1] = ACTIONS(8635), + [sym_static_modifier] = ACTIONS(8635), + [sym__dim_keyword] = ACTIONS(8635), + [sym__redim_keyword] = ACTIONS(8635), + [aux_sym_get_accessor_token1] = ACTIONS(8635), + [aux_sym_set_accessor_token1] = ACTIONS(8635), + [anon_sym_COMMA] = ACTIONS(11144), + [aux_sym_const_declaration_token1] = ACTIONS(8635), + [anon_sym_LPAREN] = ACTIONS(8637), + [aux_sym_as_type_clause_token2] = ACTIONS(8635), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8635), + [aux_sym_visibility_token1] = ACTIONS(8635), + [aux_sym_visibility_token2] = ACTIONS(8635), + [aux_sym_elseif_fragment_token1] = ACTIONS(8635), + [aux_sym_else_fragment_token1] = ACTIONS(8635), + [aux_sym_select_statement_token1] = ACTIONS(8635), + [aux_sym__for_header_token1] = ACTIONS(8635), + [aux_sym_do_statement_token1] = ACTIONS(8635), + [aux_sym_do_condition_token1] = ACTIONS(8635), + [aux_sym_with_statement_token1] = ACTIONS(8635), + [aux_sym_exit_statement_token1] = ACTIONS(8635), + [sym_end_statement] = ACTIONS(8637), + [aux_sym_on_goto_statement_token1] = ACTIONS(8635), + [aux_sym_on_goto_statement_token2] = ACTIONS(8635), + [aux_sym_on_error_statement_token2] = ACTIONS(8635), + [sym__ambiguous_redim_statement] = ACTIONS(8637), + [aux_sym_erase_statement_token1] = ACTIONS(8635), + [aux_sym_open_statement_token1] = ACTIONS(8635), + [aux_sym_file_mode_token2] = ACTIONS(8635), + [aux_sym_file_access_token2] = ACTIONS(8635), + [aux_sym_file_lock_token2] = ACTIONS(8635), + [aux_sym_print_statement_token1] = ACTIONS(8635), + [anon_sym_PLUS] = ACTIONS(8637), + [anon_sym_DASH] = ACTIONS(8635), + [anon_sym_QMARK] = ACTIONS(8637), + [aux_sym_close_statement_token1] = ACTIONS(8635), + [aux_sym_put_statement_token1] = ACTIONS(8635), + [aux_sym_unlock_statement_token1] = ACTIONS(8635), + [aux_sym_seek_statement_token1] = ACTIONS(8635), + [sym_reset_statement] = ACTIONS(8635), + [aux_sym_raise_event_statement_token1] = ACTIONS(8635), + [sym_stop_statement] = ACTIONS(8635), + [sym_beep_statement] = ACTIONS(8635), + [aux_sym_unload_statement_token1] = ACTIONS(8635), + [aux_sym_def_type_statement_token1] = ACTIONS(8635), + [aux_sym_def_type_statement_token2] = ACTIONS(8635), + [aux_sym_def_type_statement_token3] = ACTIONS(8635), + [aux_sym_def_type_statement_token4] = ACTIONS(8635), + [aux_sym_def_type_statement_token5] = ACTIONS(8635), + [aux_sym_def_type_statement_token6] = ACTIONS(8635), + [aux_sym_def_type_statement_token7] = ACTIONS(8635), + [aux_sym_def_type_statement_token8] = ACTIONS(8635), + [aux_sym_def_type_statement_token9] = ACTIONS(8635), + [aux_sym_def_type_statement_token10] = ACTIONS(8635), + [aux_sym_def_type_statement_token11] = ACTIONS(8635), + [aux_sym_def_type_statement_token12] = ACTIONS(8635), + [aux_sym_def_type_statement_token13] = ACTIONS(8635), + [aux_sym_def_type_statement_token14] = ACTIONS(8635), + [aux_sym_call_statement_token1] = ACTIONS(8635), + [sym__ambiguous_call_statement] = ACTIONS(8635), + [aux_sym_addressof_expression_token1] = ACTIONS(8635), + [aux_sym_type_of_expression_token1] = ACTIONS(8635), + [aux_sym_unary_expression_token1] = ACTIONS(8635), + [sym_string_literal] = ACTIONS(8637), + [sym_number_literal] = ACTIONS(8637), + [aux_sym_boolean_literal_token1] = ACTIONS(8635), + [aux_sym_boolean_literal_token2] = ACTIONS(8635), + [sym_nothing_literal] = ACTIONS(8635), + [sym_null_literal] = ACTIONS(8635), + [sym_empty_literal] = ACTIONS(8635), + [sym_date_literal] = ACTIONS(8637), + [anon_sym_POUND] = ACTIONS(8635), + }, + [STATE(6856)] = { + [sym_identifier] = ACTIONS(9598), + [sym_newline] = ACTIONS(9600), + [anon_sym_COLON] = ACTIONS(9600), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9598), + [aux_sym_frm_property_statement_token1] = ACTIONS(9598), + [anon_sym_DOT] = ACTIONS(9598), + [anon_sym_BANG] = ACTIONS(9600), + [aux_sym__attribute_identifier_token1] = ACTIONS(9598), + [aux_sym_option_statement_token3] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9598), + [aux_sym_preprocessor_const_token1] = ACTIONS(9598), + [sym_static_modifier] = ACTIONS(9598), + [sym__dim_keyword] = ACTIONS(9598), + [sym__redim_keyword] = ACTIONS(9598), + [aux_sym_get_accessor_token1] = ACTIONS(9598), + [aux_sym_set_accessor_token1] = ACTIONS(9598), + [aux_sym_const_declaration_token1] = ACTIONS(9598), + [anon_sym_LPAREN] = ACTIONS(9600), + [aux_sym_as_type_clause_token2] = ACTIONS(9598), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9598), + [aux_sym_visibility_token1] = ACTIONS(9598), + [aux_sym_visibility_token2] = ACTIONS(9598), + [aux_sym_elseif_fragment_token1] = ACTIONS(9598), + [aux_sym_else_fragment_token1] = ACTIONS(9598), + [aux_sym_select_statement_token1] = ACTIONS(9598), + [aux_sym_select_statement_token2] = ACTIONS(9598), + [aux_sym__for_header_token1] = ACTIONS(9598), + [aux_sym_do_statement_token1] = ACTIONS(9598), + [aux_sym_do_condition_token1] = ACTIONS(9598), + [aux_sym_with_statement_token1] = ACTIONS(9598), + [aux_sym_exit_statement_token1] = ACTIONS(9598), + [sym_end_statement] = ACTIONS(9600), + [aux_sym_on_goto_statement_token1] = ACTIONS(9598), + [aux_sym_on_goto_statement_token2] = ACTIONS(9598), + [aux_sym_on_error_statement_token2] = ACTIONS(9598), + [sym__ambiguous_redim_statement] = ACTIONS(9600), + [aux_sym_erase_statement_token1] = ACTIONS(9598), + [aux_sym_open_statement_token1] = ACTIONS(9598), + [aux_sym_file_mode_token2] = ACTIONS(9598), + [aux_sym_file_access_token2] = ACTIONS(9598), + [aux_sym_file_lock_token2] = ACTIONS(9598), + [aux_sym_print_statement_token1] = ACTIONS(9598), + [anon_sym_PLUS] = ACTIONS(9600), + [anon_sym_DASH] = ACTIONS(9598), + [anon_sym_QMARK] = ACTIONS(9600), + [aux_sym_close_statement_token1] = ACTIONS(9598), + [aux_sym_put_statement_token1] = ACTIONS(9598), + [aux_sym_unlock_statement_token1] = ACTIONS(9598), + [aux_sym_seek_statement_token1] = ACTIONS(9598), + [sym_reset_statement] = ACTIONS(9598), + [aux_sym_raise_event_statement_token1] = ACTIONS(9598), + [sym_stop_statement] = ACTIONS(9598), + [sym_beep_statement] = ACTIONS(9598), + [aux_sym_unload_statement_token1] = ACTIONS(9598), + [aux_sym_def_type_statement_token1] = ACTIONS(9598), + [aux_sym_def_type_statement_token2] = ACTIONS(9598), + [aux_sym_def_type_statement_token3] = ACTIONS(9598), + [aux_sym_def_type_statement_token4] = ACTIONS(9598), + [aux_sym_def_type_statement_token5] = ACTIONS(9598), + [aux_sym_def_type_statement_token6] = ACTIONS(9598), + [aux_sym_def_type_statement_token7] = ACTIONS(9598), + [aux_sym_def_type_statement_token8] = ACTIONS(9598), + [aux_sym_def_type_statement_token9] = ACTIONS(9598), + [aux_sym_def_type_statement_token10] = ACTIONS(9598), + [aux_sym_def_type_statement_token11] = ACTIONS(9598), + [aux_sym_def_type_statement_token12] = ACTIONS(9598), + [aux_sym_def_type_statement_token13] = ACTIONS(9598), + [aux_sym_def_type_statement_token14] = ACTIONS(9598), + [aux_sym_call_statement_token1] = ACTIONS(9598), + [sym__ambiguous_call_statement] = ACTIONS(9598), + [aux_sym_addressof_expression_token1] = ACTIONS(9598), + [aux_sym_type_of_expression_token1] = ACTIONS(9598), + [aux_sym_unary_expression_token1] = ACTIONS(9598), + [sym_string_literal] = ACTIONS(9600), + [sym_number_literal] = ACTIONS(9600), + [aux_sym_boolean_literal_token1] = ACTIONS(9598), + [aux_sym_boolean_literal_token2] = ACTIONS(9598), + [sym_nothing_literal] = ACTIONS(9598), + [sym_null_literal] = ACTIONS(9598), + [sym_empty_literal] = ACTIONS(9598), + [sym_date_literal] = ACTIONS(9600), + [anon_sym_POUND] = ACTIONS(9598), + }, + [STATE(6857)] = { + [sym_identifier] = ACTIONS(8713), + [sym_newline] = ACTIONS(8715), + [anon_sym_COLON] = ACTIONS(8715), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8713), + [aux_sym_frm_property_statement_token1] = ACTIONS(8713), + [anon_sym_DOT] = ACTIONS(8713), + [anon_sym_BANG] = ACTIONS(8715), + [aux_sym__attribute_identifier_token1] = ACTIONS(8713), + [aux_sym_option_statement_token3] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8713), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8713), + [aux_sym_preprocessor_const_token1] = ACTIONS(8713), + [sym_static_modifier] = ACTIONS(8713), + [sym__dim_keyword] = ACTIONS(8713), + [sym__redim_keyword] = ACTIONS(8713), + [aux_sym_get_accessor_token1] = ACTIONS(8713), + [aux_sym_set_accessor_token1] = ACTIONS(8713), + [anon_sym_COMMA] = ACTIONS(8715), + [aux_sym_const_declaration_token1] = ACTIONS(8713), + [anon_sym_LPAREN] = ACTIONS(8715), + [aux_sym_as_type_clause_token2] = ACTIONS(8713), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8713), + [aux_sym_visibility_token1] = ACTIONS(8713), + [aux_sym_visibility_token2] = ACTIONS(8713), + [aux_sym_elseif_fragment_token1] = ACTIONS(8713), + [aux_sym_else_fragment_token1] = ACTIONS(8713), + [aux_sym_select_statement_token1] = ACTIONS(8713), + [aux_sym__for_header_token1] = ACTIONS(8713), + [aux_sym_do_statement_token1] = ACTIONS(8713), + [aux_sym_do_condition_token1] = ACTIONS(8713), + [aux_sym_with_statement_token1] = ACTIONS(8713), + [aux_sym_exit_statement_token1] = ACTIONS(8713), + [sym_end_statement] = ACTIONS(8715), + [aux_sym_on_goto_statement_token1] = ACTIONS(8713), + [aux_sym_on_goto_statement_token2] = ACTIONS(8713), + [aux_sym_on_error_statement_token2] = ACTIONS(8713), + [sym__ambiguous_redim_statement] = ACTIONS(8715), + [aux_sym_erase_statement_token1] = ACTIONS(8713), + [aux_sym_open_statement_token1] = ACTIONS(8713), + [aux_sym_file_mode_token2] = ACTIONS(8713), + [aux_sym_file_access_token2] = ACTIONS(8713), + [aux_sym_file_lock_token2] = ACTIONS(8713), + [aux_sym_print_statement_token1] = ACTIONS(8713), + [anon_sym_PLUS] = ACTIONS(8715), + [anon_sym_DASH] = ACTIONS(8713), + [anon_sym_QMARK] = ACTIONS(8715), + [aux_sym_close_statement_token1] = ACTIONS(8713), + [aux_sym_put_statement_token1] = ACTIONS(8713), + [aux_sym_unlock_statement_token1] = ACTIONS(8713), + [aux_sym_seek_statement_token1] = ACTIONS(8713), + [sym_reset_statement] = ACTIONS(8713), + [aux_sym_raise_event_statement_token1] = ACTIONS(8713), + [sym_stop_statement] = ACTIONS(8713), + [sym_beep_statement] = ACTIONS(8713), + [aux_sym_unload_statement_token1] = ACTIONS(8713), + [aux_sym_def_type_statement_token1] = ACTIONS(8713), + [aux_sym_def_type_statement_token2] = ACTIONS(8713), + [aux_sym_def_type_statement_token3] = ACTIONS(8713), + [aux_sym_def_type_statement_token4] = ACTIONS(8713), + [aux_sym_def_type_statement_token5] = ACTIONS(8713), + [aux_sym_def_type_statement_token6] = ACTIONS(8713), + [aux_sym_def_type_statement_token7] = ACTIONS(8713), + [aux_sym_def_type_statement_token8] = ACTIONS(8713), + [aux_sym_def_type_statement_token9] = ACTIONS(8713), + [aux_sym_def_type_statement_token10] = ACTIONS(8713), + [aux_sym_def_type_statement_token11] = ACTIONS(8713), + [aux_sym_def_type_statement_token12] = ACTIONS(8713), + [aux_sym_def_type_statement_token13] = ACTIONS(8713), + [aux_sym_def_type_statement_token14] = ACTIONS(8713), + [aux_sym_call_statement_token1] = ACTIONS(8713), + [sym__ambiguous_call_statement] = ACTIONS(8713), + [aux_sym_addressof_expression_token1] = ACTIONS(8713), + [aux_sym_type_of_expression_token1] = ACTIONS(8713), + [aux_sym_unary_expression_token1] = ACTIONS(8713), + [sym_string_literal] = ACTIONS(8715), + [sym_number_literal] = ACTIONS(8715), + [aux_sym_boolean_literal_token1] = ACTIONS(8713), + [aux_sym_boolean_literal_token2] = ACTIONS(8713), + [sym_nothing_literal] = ACTIONS(8713), + [sym_null_literal] = ACTIONS(8713), + [sym_empty_literal] = ACTIONS(8713), + [sym_date_literal] = ACTIONS(8715), + [anon_sym_POUND] = ACTIONS(8713), + }, + [STATE(6858)] = { + [sym_identifier] = ACTIONS(8805), + [sym_newline] = ACTIONS(8807), + [anon_sym_COLON] = ACTIONS(8807), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8805), + [aux_sym_frm_property_statement_token1] = ACTIONS(8805), + [anon_sym_DOT] = ACTIONS(8805), + [anon_sym_BANG] = ACTIONS(8807), + [aux_sym__attribute_identifier_token1] = ACTIONS(8805), + [aux_sym_option_statement_token3] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8805), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8805), + [aux_sym_preprocessor_const_token1] = ACTIONS(8805), + [sym_static_modifier] = ACTIONS(8805), + [sym__dim_keyword] = ACTIONS(8805), + [sym__redim_keyword] = ACTIONS(8805), + [aux_sym_get_accessor_token1] = ACTIONS(8805), + [aux_sym_set_accessor_token1] = ACTIONS(8805), + [anon_sym_COMMA] = ACTIONS(8807), + [aux_sym_const_declaration_token1] = ACTIONS(8805), + [anon_sym_LPAREN] = ACTIONS(8807), + [aux_sym_as_type_clause_token2] = ACTIONS(8805), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8805), + [aux_sym_visibility_token1] = ACTIONS(8805), + [aux_sym_visibility_token2] = ACTIONS(8805), + [aux_sym_elseif_fragment_token1] = ACTIONS(8805), + [aux_sym_else_fragment_token1] = ACTIONS(8805), + [aux_sym_select_statement_token1] = ACTIONS(8805), + [aux_sym__for_header_token1] = ACTIONS(8805), + [aux_sym_do_statement_token1] = ACTIONS(8805), + [aux_sym_do_condition_token1] = ACTIONS(8805), + [aux_sym_with_statement_token1] = ACTIONS(8805), + [aux_sym_exit_statement_token1] = ACTIONS(8805), + [sym_end_statement] = ACTIONS(8807), + [aux_sym_on_goto_statement_token1] = ACTIONS(8805), + [aux_sym_on_goto_statement_token2] = ACTIONS(8805), + [aux_sym_on_error_statement_token2] = ACTIONS(8805), + [sym__ambiguous_redim_statement] = ACTIONS(8807), + [aux_sym_erase_statement_token1] = ACTIONS(8805), + [aux_sym_open_statement_token1] = ACTIONS(8805), + [aux_sym_file_mode_token2] = ACTIONS(8805), + [aux_sym_file_access_token2] = ACTIONS(8805), + [aux_sym_file_lock_token2] = ACTIONS(8805), + [aux_sym_print_statement_token1] = ACTIONS(8805), + [anon_sym_PLUS] = ACTIONS(8807), + [anon_sym_DASH] = ACTIONS(8805), + [anon_sym_QMARK] = ACTIONS(8807), + [aux_sym_close_statement_token1] = ACTIONS(8805), + [aux_sym_put_statement_token1] = ACTIONS(8805), + [aux_sym_unlock_statement_token1] = ACTIONS(8805), + [aux_sym_seek_statement_token1] = ACTIONS(8805), + [sym_reset_statement] = ACTIONS(8805), + [aux_sym_raise_event_statement_token1] = ACTIONS(8805), + [sym_stop_statement] = ACTIONS(8805), + [sym_beep_statement] = ACTIONS(8805), + [aux_sym_unload_statement_token1] = ACTIONS(8805), + [aux_sym_def_type_statement_token1] = ACTIONS(8805), + [aux_sym_def_type_statement_token2] = ACTIONS(8805), + [aux_sym_def_type_statement_token3] = ACTIONS(8805), + [aux_sym_def_type_statement_token4] = ACTIONS(8805), + [aux_sym_def_type_statement_token5] = ACTIONS(8805), + [aux_sym_def_type_statement_token6] = ACTIONS(8805), + [aux_sym_def_type_statement_token7] = ACTIONS(8805), + [aux_sym_def_type_statement_token8] = ACTIONS(8805), + [aux_sym_def_type_statement_token9] = ACTIONS(8805), + [aux_sym_def_type_statement_token10] = ACTIONS(8805), + [aux_sym_def_type_statement_token11] = ACTIONS(8805), + [aux_sym_def_type_statement_token12] = ACTIONS(8805), + [aux_sym_def_type_statement_token13] = ACTIONS(8805), + [aux_sym_def_type_statement_token14] = ACTIONS(8805), + [aux_sym_call_statement_token1] = ACTIONS(8805), + [sym__ambiguous_call_statement] = ACTIONS(8805), + [aux_sym_addressof_expression_token1] = ACTIONS(8805), + [aux_sym_type_of_expression_token1] = ACTIONS(8805), + [aux_sym_unary_expression_token1] = ACTIONS(8805), + [sym_string_literal] = ACTIONS(8807), + [sym_number_literal] = ACTIONS(8807), + [aux_sym_boolean_literal_token1] = ACTIONS(8805), + [aux_sym_boolean_literal_token2] = ACTIONS(8805), + [sym_nothing_literal] = ACTIONS(8805), + [sym_null_literal] = ACTIONS(8805), + [sym_empty_literal] = ACTIONS(8805), + [sym_date_literal] = ACTIONS(8807), + [anon_sym_POUND] = ACTIONS(8805), + }, + [STATE(6859)] = { + [sym_identifier] = ACTIONS(8733), + [sym_newline] = ACTIONS(8735), + [anon_sym_COLON] = ACTIONS(8735), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8733), + [aux_sym_frm_property_statement_token1] = ACTIONS(8733), + [anon_sym_DOT] = ACTIONS(8733), + [anon_sym_BANG] = ACTIONS(8735), + [aux_sym__attribute_identifier_token1] = ACTIONS(8733), + [aux_sym_option_statement_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8733), + [aux_sym_preprocessor_const_token1] = ACTIONS(8733), + [sym_static_modifier] = ACTIONS(8733), + [sym__dim_keyword] = ACTIONS(8733), + [sym__redim_keyword] = ACTIONS(8733), + [aux_sym_get_accessor_token1] = ACTIONS(8733), + [aux_sym_set_accessor_token1] = ACTIONS(8733), + [aux_sym_const_declaration_token1] = ACTIONS(8733), + [anon_sym_LPAREN] = ACTIONS(8735), + [aux_sym_as_type_clause_token2] = ACTIONS(8733), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8733), + [aux_sym_visibility_token1] = ACTIONS(8733), + [aux_sym_visibility_token2] = ACTIONS(8733), + [aux_sym_elseif_fragment_token1] = ACTIONS(8733), + [aux_sym_else_fragment_token1] = ACTIONS(10949), + [aux_sym_select_statement_token1] = ACTIONS(8733), + [aux_sym__for_header_token1] = ACTIONS(8733), + [aux_sym_do_statement_token1] = ACTIONS(8733), + [aux_sym_do_condition_token1] = ACTIONS(8733), + [aux_sym_while_statement_token1] = ACTIONS(8733), + [aux_sym_with_statement_token1] = ACTIONS(8733), + [aux_sym_exit_statement_token1] = ACTIONS(8733), + [sym_end_statement] = ACTIONS(8735), + [aux_sym_on_goto_statement_token1] = ACTIONS(8733), + [aux_sym_on_goto_statement_token2] = ACTIONS(8733), + [aux_sym_on_error_statement_token2] = ACTIONS(8733), + [sym__ambiguous_redim_statement] = ACTIONS(8735), + [aux_sym_erase_statement_token1] = ACTIONS(8733), + [aux_sym_open_statement_token1] = ACTIONS(8733), + [aux_sym_file_mode_token2] = ACTIONS(8733), + [aux_sym_file_access_token2] = ACTIONS(8733), + [aux_sym_file_lock_token2] = ACTIONS(8733), + [aux_sym_print_statement_token1] = ACTIONS(8733), + [anon_sym_PLUS] = ACTIONS(8735), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_QMARK] = ACTIONS(8735), + [aux_sym_close_statement_token1] = ACTIONS(8733), + [aux_sym_put_statement_token1] = ACTIONS(8733), + [aux_sym_unlock_statement_token1] = ACTIONS(8733), + [aux_sym_seek_statement_token1] = ACTIONS(8733), + [sym_reset_statement] = ACTIONS(8733), + [aux_sym_raise_event_statement_token1] = ACTIONS(8733), + [sym_stop_statement] = ACTIONS(8733), + [sym_beep_statement] = ACTIONS(8733), + [aux_sym_unload_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token2] = ACTIONS(8733), + [aux_sym_def_type_statement_token3] = ACTIONS(8733), + [aux_sym_def_type_statement_token4] = ACTIONS(8733), + [aux_sym_def_type_statement_token5] = ACTIONS(8733), + [aux_sym_def_type_statement_token6] = ACTIONS(8733), + [aux_sym_def_type_statement_token7] = ACTIONS(8733), + [aux_sym_def_type_statement_token8] = ACTIONS(8733), + [aux_sym_def_type_statement_token9] = ACTIONS(8733), + [aux_sym_def_type_statement_token10] = ACTIONS(8733), + [aux_sym_def_type_statement_token11] = ACTIONS(8733), + [aux_sym_def_type_statement_token12] = ACTIONS(8733), + [aux_sym_def_type_statement_token13] = ACTIONS(8733), + [aux_sym_def_type_statement_token14] = ACTIONS(8733), + [aux_sym_call_statement_token1] = ACTIONS(8733), + [sym__ambiguous_call_statement] = ACTIONS(8733), + [aux_sym_addressof_expression_token1] = ACTIONS(8733), + [aux_sym_type_of_expression_token1] = ACTIONS(8733), + [aux_sym_unary_expression_token1] = ACTIONS(8733), + [sym_string_literal] = ACTIONS(8735), + [sym_number_literal] = ACTIONS(8735), + [aux_sym_boolean_literal_token1] = ACTIONS(8733), + [aux_sym_boolean_literal_token2] = ACTIONS(8733), + [sym_nothing_literal] = ACTIONS(8733), + [sym_null_literal] = ACTIONS(8733), + [sym_empty_literal] = ACTIONS(8733), + [sym_date_literal] = ACTIONS(8735), + [anon_sym_POUND] = ACTIONS(8733), + }, + [STATE(6860)] = { + [sym_identifier] = ACTIONS(8357), + [sym_newline] = ACTIONS(8359), + [anon_sym_COLON] = ACTIONS(8359), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8357), + [aux_sym_frm_property_statement_token1] = ACTIONS(8357), + [anon_sym_DOT] = ACTIONS(8357), + [anon_sym_BANG] = ACTIONS(8359), + [aux_sym__attribute_identifier_token1] = ACTIONS(8357), + [aux_sym_option_statement_token3] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8357), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8357), + [aux_sym_preprocessor_const_token1] = ACTIONS(8357), + [sym_static_modifier] = ACTIONS(8357), + [sym__dim_keyword] = ACTIONS(8357), + [sym__redim_keyword] = ACTIONS(8357), + [aux_sym_get_accessor_token1] = ACTIONS(8357), + [aux_sym_set_accessor_token1] = ACTIONS(8357), + [anon_sym_COMMA] = ACTIONS(8359), + [aux_sym_const_declaration_token1] = ACTIONS(8357), + [anon_sym_LPAREN] = ACTIONS(8359), + [aux_sym_as_type_clause_token2] = ACTIONS(8357), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8357), + [aux_sym_visibility_token1] = ACTIONS(8357), + [aux_sym_visibility_token2] = ACTIONS(8357), + [aux_sym_elseif_fragment_token1] = ACTIONS(8357), + [aux_sym_else_fragment_token1] = ACTIONS(8357), + [aux_sym_select_statement_token1] = ACTIONS(8357), + [aux_sym__for_header_token1] = ACTIONS(8357), + [aux_sym_do_statement_token1] = ACTIONS(8357), + [aux_sym_do_condition_token1] = ACTIONS(8357), + [aux_sym_with_statement_token1] = ACTIONS(8357), + [aux_sym_exit_statement_token1] = ACTIONS(8357), + [sym_end_statement] = ACTIONS(8359), + [aux_sym_on_goto_statement_token1] = ACTIONS(8357), + [aux_sym_on_goto_statement_token2] = ACTIONS(8357), + [aux_sym_on_error_statement_token2] = ACTIONS(8357), + [sym__ambiguous_redim_statement] = ACTIONS(8359), + [aux_sym_erase_statement_token1] = ACTIONS(8357), + [aux_sym_open_statement_token1] = ACTIONS(8357), + [aux_sym_file_mode_token2] = ACTIONS(8357), + [aux_sym_file_access_token2] = ACTIONS(8357), + [aux_sym_file_lock_token2] = ACTIONS(8357), + [aux_sym_print_statement_token1] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_QMARK] = ACTIONS(8359), + [aux_sym_close_statement_token1] = ACTIONS(8357), + [aux_sym_put_statement_token1] = ACTIONS(8357), + [aux_sym_unlock_statement_token1] = ACTIONS(8357), + [aux_sym_seek_statement_token1] = ACTIONS(8357), + [sym_reset_statement] = ACTIONS(8357), + [aux_sym_raise_event_statement_token1] = ACTIONS(8357), + [sym_stop_statement] = ACTIONS(8357), + [sym_beep_statement] = ACTIONS(8357), + [aux_sym_unload_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token1] = ACTIONS(8357), + [aux_sym_def_type_statement_token2] = ACTIONS(8357), + [aux_sym_def_type_statement_token3] = ACTIONS(8357), + [aux_sym_def_type_statement_token4] = ACTIONS(8357), + [aux_sym_def_type_statement_token5] = ACTIONS(8357), + [aux_sym_def_type_statement_token6] = ACTIONS(8357), + [aux_sym_def_type_statement_token7] = ACTIONS(8357), + [aux_sym_def_type_statement_token8] = ACTIONS(8357), + [aux_sym_def_type_statement_token9] = ACTIONS(8357), + [aux_sym_def_type_statement_token10] = ACTIONS(8357), + [aux_sym_def_type_statement_token11] = ACTIONS(8357), + [aux_sym_def_type_statement_token12] = ACTIONS(8357), + [aux_sym_def_type_statement_token13] = ACTIONS(8357), + [aux_sym_def_type_statement_token14] = ACTIONS(8357), + [aux_sym_call_statement_token1] = ACTIONS(8357), + [sym__ambiguous_call_statement] = ACTIONS(8357), + [aux_sym_addressof_expression_token1] = ACTIONS(8357), + [aux_sym_type_of_expression_token1] = ACTIONS(8357), + [aux_sym_unary_expression_token1] = ACTIONS(8357), + [sym_string_literal] = ACTIONS(8359), + [sym_number_literal] = ACTIONS(8359), + [aux_sym_boolean_literal_token1] = ACTIONS(8357), + [aux_sym_boolean_literal_token2] = ACTIONS(8357), + [sym_nothing_literal] = ACTIONS(8357), + [sym_null_literal] = ACTIONS(8357), + [sym_empty_literal] = ACTIONS(8357), + [sym_date_literal] = ACTIONS(8359), + [anon_sym_POUND] = ACTIONS(8357), + }, + [STATE(6861)] = { + [sym_identifier] = ACTIONS(9150), + [sym_newline] = ACTIONS(9152), + [anon_sym_COLON] = ACTIONS(9152), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9154), + [aux_sym_frm_property_statement_token1] = ACTIONS(9150), + [anon_sym_DOT] = ACTIONS(9150), + [anon_sym_BANG] = ACTIONS(9152), + [aux_sym__attribute_identifier_token1] = ACTIONS(9150), + [aux_sym_option_statement_token3] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9154), + [aux_sym_preprocessor_const_token1] = ACTIONS(9150), + [sym_static_modifier] = ACTIONS(9150), + [sym__dim_keyword] = ACTIONS(9150), + [sym__redim_keyword] = ACTIONS(9150), + [aux_sym_get_accessor_token1] = ACTIONS(9150), + [aux_sym_set_accessor_token1] = ACTIONS(9150), + [aux_sym_const_declaration_token1] = ACTIONS(9150), + [anon_sym_LPAREN] = ACTIONS(9152), + [aux_sym_as_type_clause_token2] = ACTIONS(9150), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9150), + [aux_sym_visibility_token1] = ACTIONS(9150), + [aux_sym_visibility_token2] = ACTIONS(9150), + [aux_sym_elseif_fragment_token1] = ACTIONS(9154), + [aux_sym_else_fragment_token1] = ACTIONS(9154), + [aux_sym_select_statement_token1] = ACTIONS(9154), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9154), + [aux_sym__for_header_token1] = ACTIONS(9154), + [aux_sym_do_statement_token1] = ACTIONS(9154), + [aux_sym_do_condition_token1] = ACTIONS(9154), + [aux_sym_with_statement_token1] = ACTIONS(9154), + [aux_sym_exit_statement_token1] = ACTIONS(9150), + [sym_end_statement] = ACTIONS(9152), + [aux_sym_on_goto_statement_token1] = ACTIONS(9150), + [aux_sym_on_goto_statement_token2] = ACTIONS(9150), + [aux_sym_on_error_statement_token2] = ACTIONS(9150), + [sym__ambiguous_redim_statement] = ACTIONS(9152), + [aux_sym_erase_statement_token1] = ACTIONS(9150), + [aux_sym_open_statement_token1] = ACTIONS(9150), + [aux_sym_file_mode_token2] = ACTIONS(9150), + [aux_sym_file_access_token2] = ACTIONS(9150), + [aux_sym_file_lock_token2] = ACTIONS(9150), + [aux_sym_print_statement_token1] = ACTIONS(9150), + [anon_sym_PLUS] = ACTIONS(9152), + [anon_sym_DASH] = ACTIONS(9150), + [anon_sym_QMARK] = ACTIONS(9152), + [aux_sym_close_statement_token1] = ACTIONS(9150), + [aux_sym_put_statement_token1] = ACTIONS(9150), + [aux_sym_unlock_statement_token1] = ACTIONS(9150), + [aux_sym_seek_statement_token1] = ACTIONS(9150), + [sym_reset_statement] = ACTIONS(9150), + [aux_sym_raise_event_statement_token1] = ACTIONS(9150), + [sym_stop_statement] = ACTIONS(9150), + [sym_beep_statement] = ACTIONS(9150), + [aux_sym_unload_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token2] = ACTIONS(9150), + [aux_sym_def_type_statement_token3] = ACTIONS(9150), + [aux_sym_def_type_statement_token4] = ACTIONS(9150), + [aux_sym_def_type_statement_token5] = ACTIONS(9150), + [aux_sym_def_type_statement_token6] = ACTIONS(9150), + [aux_sym_def_type_statement_token7] = ACTIONS(9150), + [aux_sym_def_type_statement_token8] = ACTIONS(9150), + [aux_sym_def_type_statement_token9] = ACTIONS(9150), + [aux_sym_def_type_statement_token10] = ACTIONS(9150), + [aux_sym_def_type_statement_token11] = ACTIONS(9150), + [aux_sym_def_type_statement_token12] = ACTIONS(9150), + [aux_sym_def_type_statement_token13] = ACTIONS(9150), + [aux_sym_def_type_statement_token14] = ACTIONS(9150), + [aux_sym_call_statement_token1] = ACTIONS(9150), + [sym__ambiguous_call_statement] = ACTIONS(9150), + [aux_sym_addressof_expression_token1] = ACTIONS(9150), + [aux_sym_type_of_expression_token1] = ACTIONS(9150), + [aux_sym_unary_expression_token1] = ACTIONS(9150), + [sym_string_literal] = ACTIONS(9152), + [sym_number_literal] = ACTIONS(9152), + [aux_sym_boolean_literal_token1] = ACTIONS(9150), + [aux_sym_boolean_literal_token2] = ACTIONS(9150), + [sym_nothing_literal] = ACTIONS(9150), + [sym_null_literal] = ACTIONS(9150), + [sym_empty_literal] = ACTIONS(9150), + [sym_date_literal] = ACTIONS(9152), + [anon_sym_POUND] = ACTIONS(9150), + }, + [STATE(6862)] = { + [sym_identifier] = ACTIONS(8509), + [sym_newline] = ACTIONS(8511), + [anon_sym_COLON] = ACTIONS(8511), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8509), + [aux_sym_frm_property_statement_token1] = ACTIONS(8509), + [anon_sym_DOT] = ACTIONS(8509), + [anon_sym_BANG] = ACTIONS(8511), + [aux_sym__attribute_identifier_token1] = ACTIONS(8509), + [aux_sym_option_statement_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8509), + [aux_sym_preprocessor_const_token1] = ACTIONS(8509), + [sym_static_modifier] = ACTIONS(8509), + [sym__dim_keyword] = ACTIONS(8509), + [sym__redim_keyword] = ACTIONS(8509), + [aux_sym_get_accessor_token1] = ACTIONS(8509), + [aux_sym_set_accessor_token1] = ACTIONS(8509), + [aux_sym_const_declaration_token1] = ACTIONS(8509), + [anon_sym_LPAREN] = ACTIONS(8511), + [aux_sym_as_type_clause_token2] = ACTIONS(8509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8509), + [aux_sym_visibility_token1] = ACTIONS(8509), + [aux_sym_visibility_token2] = ACTIONS(8509), + [aux_sym_elseif_fragment_token1] = ACTIONS(8509), + [aux_sym_else_fragment_token1] = ACTIONS(8509), + [aux_sym_select_statement_token1] = ACTIONS(8509), + [aux_sym_select_statement_token2] = ACTIONS(8509), + [aux_sym__for_header_token1] = ACTIONS(8509), + [aux_sym_do_statement_token1] = ACTIONS(8509), + [aux_sym_do_condition_token1] = ACTIONS(8509), + [aux_sym_with_statement_token1] = ACTIONS(8509), + [aux_sym_exit_statement_token1] = ACTIONS(8509), + [sym_end_statement] = ACTIONS(8511), + [aux_sym_on_goto_statement_token1] = ACTIONS(8509), + [aux_sym_on_goto_statement_token2] = ACTIONS(8509), + [aux_sym_on_error_statement_token2] = ACTIONS(8509), + [sym__ambiguous_redim_statement] = ACTIONS(8511), + [aux_sym_erase_statement_token1] = ACTIONS(8509), + [aux_sym_open_statement_token1] = ACTIONS(8509), + [aux_sym_file_mode_token2] = ACTIONS(8509), + [aux_sym_file_access_token2] = ACTIONS(8509), + [aux_sym_file_lock_token2] = ACTIONS(8509), + [aux_sym_print_statement_token1] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(8511), + [anon_sym_DASH] = ACTIONS(8509), + [anon_sym_QMARK] = ACTIONS(8511), + [aux_sym_close_statement_token1] = ACTIONS(8509), + [aux_sym_put_statement_token1] = ACTIONS(8509), + [aux_sym_unlock_statement_token1] = ACTIONS(8509), + [aux_sym_seek_statement_token1] = ACTIONS(8509), + [sym_reset_statement] = ACTIONS(8509), + [aux_sym_raise_event_statement_token1] = ACTIONS(8509), + [sym_stop_statement] = ACTIONS(8509), + [sym_beep_statement] = ACTIONS(8509), + [aux_sym_unload_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token2] = ACTIONS(8509), + [aux_sym_def_type_statement_token3] = ACTIONS(8509), + [aux_sym_def_type_statement_token4] = ACTIONS(8509), + [aux_sym_def_type_statement_token5] = ACTIONS(8509), + [aux_sym_def_type_statement_token6] = ACTIONS(8509), + [aux_sym_def_type_statement_token7] = ACTIONS(8509), + [aux_sym_def_type_statement_token8] = ACTIONS(8509), + [aux_sym_def_type_statement_token9] = ACTIONS(8509), + [aux_sym_def_type_statement_token10] = ACTIONS(8509), + [aux_sym_def_type_statement_token11] = ACTIONS(8509), + [aux_sym_def_type_statement_token12] = ACTIONS(8509), + [aux_sym_def_type_statement_token13] = ACTIONS(8509), + [aux_sym_def_type_statement_token14] = ACTIONS(8509), + [aux_sym_call_statement_token1] = ACTIONS(8509), + [sym__ambiguous_call_statement] = ACTIONS(8509), + [aux_sym_addressof_expression_token1] = ACTIONS(8509), + [aux_sym_type_of_expression_token1] = ACTIONS(8509), + [aux_sym_unary_expression_token1] = ACTIONS(8509), + [sym_string_literal] = ACTIONS(8511), + [sym_number_literal] = ACTIONS(8511), + [aux_sym_boolean_literal_token1] = ACTIONS(8509), + [aux_sym_boolean_literal_token2] = ACTIONS(8509), + [sym_nothing_literal] = ACTIONS(8509), + [sym_null_literal] = ACTIONS(8509), + [sym_empty_literal] = ACTIONS(8509), + [sym_date_literal] = ACTIONS(8511), + [anon_sym_POUND] = ACTIONS(8509), + }, + [STATE(6863)] = { + [sym_identifier] = ACTIONS(9370), + [sym_newline] = ACTIONS(9372), + [anon_sym_COLON] = ACTIONS(9372), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9370), + [aux_sym_frm_property_statement_token1] = ACTIONS(9370), + [anon_sym_DOT] = ACTIONS(9370), + [anon_sym_BANG] = ACTIONS(9372), + [aux_sym__attribute_identifier_token1] = ACTIONS(9370), + [aux_sym_option_statement_token3] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9370), + [aux_sym_preprocessor_const_token1] = ACTIONS(9370), + [sym_static_modifier] = ACTIONS(9370), + [sym__dim_keyword] = ACTIONS(9370), + [sym__redim_keyword] = ACTIONS(9370), + [aux_sym_get_accessor_token1] = ACTIONS(9370), + [aux_sym_set_accessor_token1] = ACTIONS(9370), + [aux_sym_const_declaration_token1] = ACTIONS(9370), + [anon_sym_LPAREN] = ACTIONS(9372), + [aux_sym_as_type_clause_token2] = ACTIONS(9370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9370), + [aux_sym_visibility_token1] = ACTIONS(9370), + [aux_sym_visibility_token2] = ACTIONS(9370), + [aux_sym_elseif_fragment_token1] = ACTIONS(9370), + [aux_sym_else_fragment_token1] = ACTIONS(9370), + [aux_sym_select_statement_token1] = ACTIONS(9370), + [aux_sym__for_header_token1] = ACTIONS(9370), + [aux_sym_do_statement_token1] = ACTIONS(9370), + [aux_sym_do_statement_token2] = ACTIONS(9370), + [aux_sym_do_condition_token1] = ACTIONS(9370), + [aux_sym_with_statement_token1] = ACTIONS(9370), + [aux_sym_exit_statement_token1] = ACTIONS(9370), + [sym_end_statement] = ACTIONS(9372), + [aux_sym_on_goto_statement_token1] = ACTIONS(9370), + [aux_sym_on_goto_statement_token2] = ACTIONS(9370), + [aux_sym_on_error_statement_token2] = ACTIONS(9370), + [sym__ambiguous_redim_statement] = ACTIONS(9372), + [aux_sym_erase_statement_token1] = ACTIONS(9370), + [aux_sym_open_statement_token1] = ACTIONS(9370), + [aux_sym_file_mode_token2] = ACTIONS(9370), + [aux_sym_file_access_token2] = ACTIONS(9370), + [aux_sym_file_lock_token2] = ACTIONS(9370), + [aux_sym_print_statement_token1] = ACTIONS(9370), + [anon_sym_PLUS] = ACTIONS(9372), + [anon_sym_DASH] = ACTIONS(9370), + [anon_sym_QMARK] = ACTIONS(9372), + [aux_sym_close_statement_token1] = ACTIONS(9370), + [aux_sym_put_statement_token1] = ACTIONS(9370), + [aux_sym_unlock_statement_token1] = ACTIONS(9370), + [aux_sym_seek_statement_token1] = ACTIONS(9370), + [sym_reset_statement] = ACTIONS(9370), + [aux_sym_raise_event_statement_token1] = ACTIONS(9370), + [sym_stop_statement] = ACTIONS(9370), + [sym_beep_statement] = ACTIONS(9370), + [aux_sym_unload_statement_token1] = ACTIONS(9370), + [aux_sym_def_type_statement_token1] = ACTIONS(9370), + [aux_sym_def_type_statement_token2] = ACTIONS(9370), + [aux_sym_def_type_statement_token3] = ACTIONS(9370), + [aux_sym_def_type_statement_token4] = ACTIONS(9370), + [aux_sym_def_type_statement_token5] = ACTIONS(9370), + [aux_sym_def_type_statement_token6] = ACTIONS(9370), + [aux_sym_def_type_statement_token7] = ACTIONS(9370), + [aux_sym_def_type_statement_token8] = ACTIONS(9370), + [aux_sym_def_type_statement_token9] = ACTIONS(9370), + [aux_sym_def_type_statement_token10] = ACTIONS(9370), + [aux_sym_def_type_statement_token11] = ACTIONS(9370), + [aux_sym_def_type_statement_token12] = ACTIONS(9370), + [aux_sym_def_type_statement_token13] = ACTIONS(9370), + [aux_sym_def_type_statement_token14] = ACTIONS(9370), + [aux_sym_call_statement_token1] = ACTIONS(9370), + [sym__ambiguous_call_statement] = ACTIONS(9370), + [aux_sym_addressof_expression_token1] = ACTIONS(9370), + [aux_sym_type_of_expression_token1] = ACTIONS(9370), + [aux_sym_unary_expression_token1] = ACTIONS(9370), + [sym_string_literal] = ACTIONS(9372), + [sym_number_literal] = ACTIONS(9372), + [aux_sym_boolean_literal_token1] = ACTIONS(9370), + [aux_sym_boolean_literal_token2] = ACTIONS(9370), + [sym_nothing_literal] = ACTIONS(9370), + [sym_null_literal] = ACTIONS(9370), + [sym_empty_literal] = ACTIONS(9370), + [sym_date_literal] = ACTIONS(9372), + [anon_sym_POUND] = ACTIONS(9370), + }, + [STATE(6864)] = { + [sym_identifier] = ACTIONS(8739), + [sym_newline] = ACTIONS(8741), + [anon_sym_COLON] = ACTIONS(8741), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8739), + [aux_sym_frm_property_statement_token1] = ACTIONS(8739), + [anon_sym_DOT] = ACTIONS(8739), + [anon_sym_BANG] = ACTIONS(8741), + [aux_sym__attribute_identifier_token1] = ACTIONS(8739), + [aux_sym_option_statement_token3] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8739), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8739), + [aux_sym_preprocessor_const_token1] = ACTIONS(8739), + [sym_static_modifier] = ACTIONS(8739), + [sym__dim_keyword] = ACTIONS(8739), + [sym__redim_keyword] = ACTIONS(8739), + [aux_sym_get_accessor_token1] = ACTIONS(8739), + [aux_sym_set_accessor_token1] = ACTIONS(8739), + [anon_sym_COMMA] = ACTIONS(11146), + [aux_sym_const_declaration_token1] = ACTIONS(8739), + [anon_sym_LPAREN] = ACTIONS(8741), + [aux_sym_as_type_clause_token2] = ACTIONS(8739), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8739), + [aux_sym_visibility_token1] = ACTIONS(8739), + [aux_sym_visibility_token2] = ACTIONS(8739), + [aux_sym_elseif_fragment_token1] = ACTIONS(8739), + [aux_sym_else_fragment_token1] = ACTIONS(8739), + [aux_sym_select_statement_token1] = ACTIONS(8739), + [aux_sym__for_header_token1] = ACTIONS(8739), + [aux_sym_do_statement_token1] = ACTIONS(8739), + [aux_sym_do_condition_token1] = ACTIONS(8739), + [aux_sym_with_statement_token1] = ACTIONS(8739), + [aux_sym_exit_statement_token1] = ACTIONS(8739), + [sym_end_statement] = ACTIONS(8741), + [aux_sym_on_goto_statement_token1] = ACTIONS(8739), + [aux_sym_on_goto_statement_token2] = ACTIONS(8739), + [aux_sym_on_error_statement_token2] = ACTIONS(8739), + [sym__ambiguous_redim_statement] = ACTIONS(8741), + [aux_sym_erase_statement_token1] = ACTIONS(8739), + [aux_sym_open_statement_token1] = ACTIONS(8739), + [aux_sym_file_mode_token2] = ACTIONS(8739), + [aux_sym_file_access_token2] = ACTIONS(8739), + [aux_sym_file_lock_token2] = ACTIONS(8739), + [aux_sym_print_statement_token1] = ACTIONS(8739), + [anon_sym_PLUS] = ACTIONS(8741), + [anon_sym_DASH] = ACTIONS(8739), + [anon_sym_QMARK] = ACTIONS(8741), + [aux_sym_close_statement_token1] = ACTIONS(8739), + [aux_sym_put_statement_token1] = ACTIONS(8739), + [aux_sym_unlock_statement_token1] = ACTIONS(8739), + [aux_sym_seek_statement_token1] = ACTIONS(8739), + [sym_reset_statement] = ACTIONS(8739), + [aux_sym_raise_event_statement_token1] = ACTIONS(8739), + [sym_stop_statement] = ACTIONS(8739), + [sym_beep_statement] = ACTIONS(8739), + [aux_sym_unload_statement_token1] = ACTIONS(8739), + [aux_sym_def_type_statement_token1] = ACTIONS(8739), + [aux_sym_def_type_statement_token2] = ACTIONS(8739), + [aux_sym_def_type_statement_token3] = ACTIONS(8739), + [aux_sym_def_type_statement_token4] = ACTIONS(8739), + [aux_sym_def_type_statement_token5] = ACTIONS(8739), + [aux_sym_def_type_statement_token6] = ACTIONS(8739), + [aux_sym_def_type_statement_token7] = ACTIONS(8739), + [aux_sym_def_type_statement_token8] = ACTIONS(8739), + [aux_sym_def_type_statement_token9] = ACTIONS(8739), + [aux_sym_def_type_statement_token10] = ACTIONS(8739), + [aux_sym_def_type_statement_token11] = ACTIONS(8739), + [aux_sym_def_type_statement_token12] = ACTIONS(8739), + [aux_sym_def_type_statement_token13] = ACTIONS(8739), + [aux_sym_def_type_statement_token14] = ACTIONS(8739), + [aux_sym_call_statement_token1] = ACTIONS(8739), + [sym__ambiguous_call_statement] = ACTIONS(8739), + [aux_sym_addressof_expression_token1] = ACTIONS(8739), + [aux_sym_type_of_expression_token1] = ACTIONS(8739), + [aux_sym_unary_expression_token1] = ACTIONS(8739), + [sym_string_literal] = ACTIONS(8741), + [sym_number_literal] = ACTIONS(8741), + [aux_sym_boolean_literal_token1] = ACTIONS(8739), + [aux_sym_boolean_literal_token2] = ACTIONS(8739), + [sym_nothing_literal] = ACTIONS(8739), + [sym_null_literal] = ACTIONS(8739), + [sym_empty_literal] = ACTIONS(8739), + [sym_date_literal] = ACTIONS(8741), + [anon_sym_POUND] = ACTIONS(8739), + }, + [STATE(6865)] = { + [sym_identifier] = ACTIONS(6629), + [sym_newline] = ACTIONS(6631), + [anon_sym_COLON] = ACTIONS(6631), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6629), + [aux_sym_frm_property_statement_token1] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6631), + [aux_sym__attribute_identifier_token1] = ACTIONS(6629), + [aux_sym_option_statement_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6629), + [aux_sym_preprocessor_const_token1] = ACTIONS(6629), + [sym_static_modifier] = ACTIONS(6629), + [sym__dim_keyword] = ACTIONS(6629), + [sym__redim_keyword] = ACTIONS(6629), + [aux_sym_get_accessor_token1] = ACTIONS(6629), + [aux_sym_set_accessor_token1] = ACTIONS(6629), + [aux_sym_const_declaration_token1] = ACTIONS(6629), + [anon_sym_LPAREN] = ACTIONS(6631), + [aux_sym_as_type_clause_token2] = ACTIONS(6629), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6629), + [aux_sym_visibility_token1] = ACTIONS(6629), + [aux_sym_visibility_token2] = ACTIONS(6629), + [aux_sym_elseif_fragment_token1] = ACTIONS(6629), + [aux_sym_else_fragment_token1] = ACTIONS(6629), + [aux_sym_select_statement_token1] = ACTIONS(6629), + [aux_sym__for_header_token1] = ACTIONS(6629), + [aux_sym_do_statement_token1] = ACTIONS(6629), + [aux_sym_do_condition_token1] = ACTIONS(6629), + [aux_sym_while_statement_token1] = ACTIONS(6629), + [aux_sym_with_statement_token1] = ACTIONS(6629), + [aux_sym_exit_statement_token1] = ACTIONS(6629), + [sym_end_statement] = ACTIONS(6631), + [aux_sym_on_goto_statement_token1] = ACTIONS(6629), + [aux_sym_on_goto_statement_token2] = ACTIONS(6629), + [aux_sym_on_error_statement_token2] = ACTIONS(6629), + [sym__ambiguous_redim_statement] = ACTIONS(6631), + [aux_sym_erase_statement_token1] = ACTIONS(6629), + [aux_sym_open_statement_token1] = ACTIONS(6629), + [aux_sym_file_mode_token2] = ACTIONS(6629), + [aux_sym_file_access_token2] = ACTIONS(6629), + [aux_sym_file_lock_token2] = ACTIONS(6629), + [aux_sym_print_statement_token1] = ACTIONS(6629), + [anon_sym_PLUS] = ACTIONS(6631), + [anon_sym_DASH] = ACTIONS(6629), + [anon_sym_QMARK] = ACTIONS(6631), + [aux_sym_close_statement_token1] = ACTIONS(6629), + [aux_sym_put_statement_token1] = ACTIONS(6629), + [aux_sym_unlock_statement_token1] = ACTIONS(6629), + [aux_sym_seek_statement_token1] = ACTIONS(6629), + [sym_reset_statement] = ACTIONS(6629), + [aux_sym_raise_event_statement_token1] = ACTIONS(6629), + [sym_stop_statement] = ACTIONS(6629), + [sym_beep_statement] = ACTIONS(6629), + [aux_sym_unload_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token2] = ACTIONS(6629), + [aux_sym_def_type_statement_token3] = ACTIONS(6629), + [aux_sym_def_type_statement_token4] = ACTIONS(6629), + [aux_sym_def_type_statement_token5] = ACTIONS(6629), + [aux_sym_def_type_statement_token6] = ACTIONS(6629), + [aux_sym_def_type_statement_token7] = ACTIONS(6629), + [aux_sym_def_type_statement_token8] = ACTIONS(6629), + [aux_sym_def_type_statement_token9] = ACTIONS(6629), + [aux_sym_def_type_statement_token10] = ACTIONS(6629), + [aux_sym_def_type_statement_token11] = ACTIONS(6629), + [aux_sym_def_type_statement_token12] = ACTIONS(6629), + [aux_sym_def_type_statement_token13] = ACTIONS(6629), + [aux_sym_def_type_statement_token14] = ACTIONS(6629), + [aux_sym_call_statement_token1] = ACTIONS(6629), + [sym__ambiguous_call_statement] = ACTIONS(6629), + [aux_sym_addressof_expression_token1] = ACTIONS(6629), + [aux_sym_type_of_expression_token1] = ACTIONS(6629), + [aux_sym_unary_expression_token1] = ACTIONS(6629), + [sym_string_literal] = ACTIONS(6631), + [sym_number_literal] = ACTIONS(6631), + [aux_sym_boolean_literal_token1] = ACTIONS(6629), + [aux_sym_boolean_literal_token2] = ACTIONS(6629), + [sym_nothing_literal] = ACTIONS(6629), + [sym_null_literal] = ACTIONS(6629), + [sym_empty_literal] = ACTIONS(6629), + [sym_date_literal] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6629), + }, + [STATE(6866)] = { + [sym_identifier] = ACTIONS(8501), + [sym_newline] = ACTIONS(8503), + [anon_sym_COLON] = ACTIONS(8503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8501), + [aux_sym_frm_property_statement_token1] = ACTIONS(8501), + [anon_sym_DOT] = ACTIONS(8501), + [anon_sym_BANG] = ACTIONS(8503), + [aux_sym__attribute_identifier_token1] = ACTIONS(8501), + [aux_sym_option_statement_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8501), + [aux_sym_preprocessor_const_token1] = ACTIONS(8501), + [sym_static_modifier] = ACTIONS(8501), + [sym__dim_keyword] = ACTIONS(8501), + [sym__redim_keyword] = ACTIONS(8501), + [aux_sym_get_accessor_token1] = ACTIONS(8501), + [aux_sym_set_accessor_token1] = ACTIONS(8501), + [aux_sym_const_declaration_token1] = ACTIONS(8501), + [anon_sym_LPAREN] = ACTIONS(8503), + [aux_sym_as_type_clause_token2] = ACTIONS(8501), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8501), + [aux_sym_visibility_token1] = ACTIONS(8501), + [aux_sym_visibility_token2] = ACTIONS(8501), + [aux_sym_elseif_fragment_token1] = ACTIONS(8501), + [aux_sym_else_fragment_token1] = ACTIONS(8501), + [aux_sym_select_statement_token1] = ACTIONS(8501), + [aux_sym__for_header_token1] = ACTIONS(8501), + [aux_sym_do_statement_token1] = ACTIONS(8501), + [aux_sym_do_condition_token1] = ACTIONS(8501), + [aux_sym_while_statement_token1] = ACTIONS(8501), + [aux_sym_with_statement_token1] = ACTIONS(8501), + [aux_sym_exit_statement_token1] = ACTIONS(8501), + [sym_end_statement] = ACTIONS(8503), + [aux_sym_on_goto_statement_token1] = ACTIONS(8501), + [aux_sym_on_goto_statement_token2] = ACTIONS(8501), + [aux_sym_on_error_statement_token2] = ACTIONS(8501), + [sym__ambiguous_redim_statement] = ACTIONS(8503), + [aux_sym_erase_statement_token1] = ACTIONS(8501), + [aux_sym_open_statement_token1] = ACTIONS(8501), + [aux_sym_file_mode_token2] = ACTIONS(8501), + [aux_sym_file_access_token2] = ACTIONS(8501), + [aux_sym_file_lock_token2] = ACTIONS(8501), + [aux_sym_print_statement_token1] = ACTIONS(8501), + [anon_sym_PLUS] = ACTIONS(8503), + [anon_sym_DASH] = ACTIONS(8501), + [anon_sym_QMARK] = ACTIONS(8503), + [aux_sym_close_statement_token1] = ACTIONS(8501), + [aux_sym_put_statement_token1] = ACTIONS(8501), + [aux_sym_unlock_statement_token1] = ACTIONS(8501), + [aux_sym_seek_statement_token1] = ACTIONS(8501), + [sym_reset_statement] = ACTIONS(8501), + [aux_sym_raise_event_statement_token1] = ACTIONS(8501), + [sym_stop_statement] = ACTIONS(8501), + [sym_beep_statement] = ACTIONS(8501), + [aux_sym_unload_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token2] = ACTIONS(8501), + [aux_sym_def_type_statement_token3] = ACTIONS(8501), + [aux_sym_def_type_statement_token4] = ACTIONS(8501), + [aux_sym_def_type_statement_token5] = ACTIONS(8501), + [aux_sym_def_type_statement_token6] = ACTIONS(8501), + [aux_sym_def_type_statement_token7] = ACTIONS(8501), + [aux_sym_def_type_statement_token8] = ACTIONS(8501), + [aux_sym_def_type_statement_token9] = ACTIONS(8501), + [aux_sym_def_type_statement_token10] = ACTIONS(8501), + [aux_sym_def_type_statement_token11] = ACTIONS(8501), + [aux_sym_def_type_statement_token12] = ACTIONS(8501), + [aux_sym_def_type_statement_token13] = ACTIONS(8501), + [aux_sym_def_type_statement_token14] = ACTIONS(8501), + [aux_sym_call_statement_token1] = ACTIONS(8501), + [sym__ambiguous_call_statement] = ACTIONS(8501), + [aux_sym_addressof_expression_token1] = ACTIONS(8501), + [aux_sym_type_of_expression_token1] = ACTIONS(8501), + [aux_sym_unary_expression_token1] = ACTIONS(8501), + [sym_string_literal] = ACTIONS(8503), + [sym_number_literal] = ACTIONS(8503), + [aux_sym_boolean_literal_token1] = ACTIONS(8501), + [aux_sym_boolean_literal_token2] = ACTIONS(8501), + [sym_nothing_literal] = ACTIONS(8501), + [sym_null_literal] = ACTIONS(8501), + [sym_empty_literal] = ACTIONS(8501), + [sym_date_literal] = ACTIONS(8503), + [anon_sym_POUND] = ACTIONS(8501), + }, + [STATE(6867)] = { + [sym_identifier] = ACTIONS(9435), + [sym_newline] = ACTIONS(9437), + [anon_sym_COLON] = ACTIONS(9437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9435), + [aux_sym_frm_property_statement_token1] = ACTIONS(9435), + [anon_sym_DOT] = ACTIONS(9435), + [anon_sym_BANG] = ACTIONS(9437), + [aux_sym__attribute_identifier_token1] = ACTIONS(9435), + [aux_sym_option_statement_token3] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9435), + [aux_sym_preprocessor_const_token1] = ACTIONS(9435), + [sym_static_modifier] = ACTIONS(9435), + [sym__dim_keyword] = ACTIONS(9435), + [sym__redim_keyword] = ACTIONS(9435), + [aux_sym_get_accessor_token1] = ACTIONS(9435), + [aux_sym_set_accessor_token1] = ACTIONS(9435), + [aux_sym_const_declaration_token1] = ACTIONS(9435), + [anon_sym_LPAREN] = ACTIONS(9437), + [aux_sym_as_type_clause_token2] = ACTIONS(9435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9435), + [aux_sym_visibility_token1] = ACTIONS(9435), + [aux_sym_visibility_token2] = ACTIONS(9435), + [aux_sym_elseif_fragment_token1] = ACTIONS(9435), + [aux_sym_else_fragment_token1] = ACTIONS(9435), + [aux_sym_select_statement_token1] = ACTIONS(9435), + [aux_sym_select_statement_token2] = ACTIONS(9435), + [aux_sym__for_header_token1] = ACTIONS(9435), + [aux_sym_do_statement_token1] = ACTIONS(9435), + [aux_sym_do_condition_token1] = ACTIONS(9435), + [aux_sym_with_statement_token1] = ACTIONS(9435), + [aux_sym_exit_statement_token1] = ACTIONS(9435), + [sym_end_statement] = ACTIONS(9437), + [aux_sym_on_goto_statement_token1] = ACTIONS(9435), + [aux_sym_on_goto_statement_token2] = ACTIONS(9435), + [aux_sym_on_error_statement_token2] = ACTIONS(9435), + [sym__ambiguous_redim_statement] = ACTIONS(9437), + [aux_sym_erase_statement_token1] = ACTIONS(9435), + [aux_sym_open_statement_token1] = ACTIONS(9435), + [aux_sym_file_mode_token2] = ACTIONS(9435), + [aux_sym_file_access_token2] = ACTIONS(9435), + [aux_sym_file_lock_token2] = ACTIONS(9435), + [aux_sym_print_statement_token1] = ACTIONS(9435), + [anon_sym_PLUS] = ACTIONS(9437), + [anon_sym_DASH] = ACTIONS(9435), + [anon_sym_QMARK] = ACTIONS(9437), + [aux_sym_close_statement_token1] = ACTIONS(9435), + [aux_sym_put_statement_token1] = ACTIONS(9435), + [aux_sym_unlock_statement_token1] = ACTIONS(9435), + [aux_sym_seek_statement_token1] = ACTIONS(9435), + [sym_reset_statement] = ACTIONS(9435), + [aux_sym_raise_event_statement_token1] = ACTIONS(9435), + [sym_stop_statement] = ACTIONS(9435), + [sym_beep_statement] = ACTIONS(9435), + [aux_sym_unload_statement_token1] = ACTIONS(9435), + [aux_sym_def_type_statement_token1] = ACTIONS(9435), + [aux_sym_def_type_statement_token2] = ACTIONS(9435), + [aux_sym_def_type_statement_token3] = ACTIONS(9435), + [aux_sym_def_type_statement_token4] = ACTIONS(9435), + [aux_sym_def_type_statement_token5] = ACTIONS(9435), + [aux_sym_def_type_statement_token6] = ACTIONS(9435), + [aux_sym_def_type_statement_token7] = ACTIONS(9435), + [aux_sym_def_type_statement_token8] = ACTIONS(9435), + [aux_sym_def_type_statement_token9] = ACTIONS(9435), + [aux_sym_def_type_statement_token10] = ACTIONS(9435), + [aux_sym_def_type_statement_token11] = ACTIONS(9435), + [aux_sym_def_type_statement_token12] = ACTIONS(9435), + [aux_sym_def_type_statement_token13] = ACTIONS(9435), + [aux_sym_def_type_statement_token14] = ACTIONS(9435), + [aux_sym_call_statement_token1] = ACTIONS(9435), + [sym__ambiguous_call_statement] = ACTIONS(9435), + [aux_sym_addressof_expression_token1] = ACTIONS(9435), + [aux_sym_type_of_expression_token1] = ACTIONS(9435), + [aux_sym_unary_expression_token1] = ACTIONS(9435), + [sym_string_literal] = ACTIONS(9437), + [sym_number_literal] = ACTIONS(9437), + [aux_sym_boolean_literal_token1] = ACTIONS(9435), + [aux_sym_boolean_literal_token2] = ACTIONS(9435), + [sym_nothing_literal] = ACTIONS(9435), + [sym_null_literal] = ACTIONS(9435), + [sym_empty_literal] = ACTIONS(9435), + [sym_date_literal] = ACTIONS(9437), + [anon_sym_POUND] = ACTIONS(9435), + }, + [STATE(6868)] = { + [sym_identifier] = ACTIONS(9122), + [sym_newline] = ACTIONS(9124), + [anon_sym_COLON] = ACTIONS(9124), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9122), + [aux_sym_frm_property_statement_token1] = ACTIONS(9122), + [anon_sym_DOT] = ACTIONS(9122), + [anon_sym_BANG] = ACTIONS(9124), + [aux_sym__attribute_identifier_token1] = ACTIONS(9122), + [aux_sym_option_statement_token3] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9122), + [aux_sym_preprocessor_const_token1] = ACTIONS(9122), + [sym_static_modifier] = ACTIONS(9122), + [sym__dim_keyword] = ACTIONS(9122), + [sym__redim_keyword] = ACTIONS(9122), + [aux_sym_get_accessor_token1] = ACTIONS(9122), + [aux_sym_set_accessor_token1] = ACTIONS(9122), + [aux_sym_const_declaration_token1] = ACTIONS(9122), + [anon_sym_LPAREN] = ACTIONS(9124), + [aux_sym_as_type_clause_token2] = ACTIONS(9122), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9122), + [aux_sym_visibility_token1] = ACTIONS(9122), + [aux_sym_visibility_token2] = ACTIONS(9122), + [aux_sym_elseif_fragment_token1] = ACTIONS(9122), + [aux_sym_else_fragment_token1] = ACTIONS(9122), + [aux_sym_select_statement_token1] = ACTIONS(9122), + [aux_sym_select_statement_token2] = ACTIONS(9122), + [aux_sym__for_header_token1] = ACTIONS(9122), + [aux_sym_do_statement_token1] = ACTIONS(9122), + [aux_sym_do_condition_token1] = ACTIONS(9122), + [aux_sym_with_statement_token1] = ACTIONS(9122), + [aux_sym_exit_statement_token1] = ACTIONS(9122), + [sym_end_statement] = ACTIONS(9124), + [aux_sym_on_goto_statement_token1] = ACTIONS(9122), + [aux_sym_on_goto_statement_token2] = ACTIONS(9122), + [aux_sym_on_error_statement_token2] = ACTIONS(9122), + [sym__ambiguous_redim_statement] = ACTIONS(9124), + [aux_sym_erase_statement_token1] = ACTIONS(9122), + [aux_sym_open_statement_token1] = ACTIONS(9122), + [aux_sym_file_mode_token2] = ACTIONS(9122), + [aux_sym_file_access_token2] = ACTIONS(9122), + [aux_sym_file_lock_token2] = ACTIONS(9122), + [aux_sym_print_statement_token1] = ACTIONS(9122), + [anon_sym_PLUS] = ACTIONS(9124), + [anon_sym_DASH] = ACTIONS(9122), + [anon_sym_QMARK] = ACTIONS(9124), + [aux_sym_close_statement_token1] = ACTIONS(9122), + [aux_sym_put_statement_token1] = ACTIONS(9122), + [aux_sym_unlock_statement_token1] = ACTIONS(9122), + [aux_sym_seek_statement_token1] = ACTIONS(9122), + [sym_reset_statement] = ACTIONS(9122), + [aux_sym_raise_event_statement_token1] = ACTIONS(9122), + [sym_stop_statement] = ACTIONS(9122), + [sym_beep_statement] = ACTIONS(9122), + [aux_sym_unload_statement_token1] = ACTIONS(9122), + [aux_sym_def_type_statement_token1] = ACTIONS(9122), + [aux_sym_def_type_statement_token2] = ACTIONS(9122), + [aux_sym_def_type_statement_token3] = ACTIONS(9122), + [aux_sym_def_type_statement_token4] = ACTIONS(9122), + [aux_sym_def_type_statement_token5] = ACTIONS(9122), + [aux_sym_def_type_statement_token6] = ACTIONS(9122), + [aux_sym_def_type_statement_token7] = ACTIONS(9122), + [aux_sym_def_type_statement_token8] = ACTIONS(9122), + [aux_sym_def_type_statement_token9] = ACTIONS(9122), + [aux_sym_def_type_statement_token10] = ACTIONS(9122), + [aux_sym_def_type_statement_token11] = ACTIONS(9122), + [aux_sym_def_type_statement_token12] = ACTIONS(9122), + [aux_sym_def_type_statement_token13] = ACTIONS(9122), + [aux_sym_def_type_statement_token14] = ACTIONS(9122), + [aux_sym_call_statement_token1] = ACTIONS(9122), + [sym__ambiguous_call_statement] = ACTIONS(9122), + [aux_sym_addressof_expression_token1] = ACTIONS(9122), + [aux_sym_type_of_expression_token1] = ACTIONS(9122), + [aux_sym_unary_expression_token1] = ACTIONS(9122), + [sym_string_literal] = ACTIONS(9124), + [sym_number_literal] = ACTIONS(9124), + [aux_sym_boolean_literal_token1] = ACTIONS(9122), + [aux_sym_boolean_literal_token2] = ACTIONS(9122), + [sym_nothing_literal] = ACTIONS(9122), + [sym_null_literal] = ACTIONS(9122), + [sym_empty_literal] = ACTIONS(9122), + [sym_date_literal] = ACTIONS(9124), + [anon_sym_POUND] = ACTIONS(9122), + }, + [STATE(6869)] = { + [sym_identifier] = ACTIONS(8509), + [sym_newline] = ACTIONS(8511), + [anon_sym_COLON] = ACTIONS(8511), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8509), + [aux_sym_frm_property_statement_token1] = ACTIONS(8509), + [anon_sym_DOT] = ACTIONS(8509), + [anon_sym_BANG] = ACTIONS(8511), + [aux_sym__attribute_identifier_token1] = ACTIONS(8509), + [aux_sym_option_statement_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8509), + [aux_sym_preprocessor_const_token1] = ACTIONS(8509), + [sym_static_modifier] = ACTIONS(8509), + [sym__dim_keyword] = ACTIONS(8509), + [sym__redim_keyword] = ACTIONS(8509), + [aux_sym_get_accessor_token1] = ACTIONS(8509), + [aux_sym_set_accessor_token1] = ACTIONS(8509), + [aux_sym_const_declaration_token1] = ACTIONS(8509), + [anon_sym_LPAREN] = ACTIONS(8511), + [aux_sym_as_type_clause_token2] = ACTIONS(8509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8509), + [aux_sym_visibility_token1] = ACTIONS(8509), + [aux_sym_visibility_token2] = ACTIONS(8509), + [aux_sym_elseif_fragment_token1] = ACTIONS(8509), + [aux_sym_else_fragment_token1] = ACTIONS(8509), + [aux_sym_select_statement_token1] = ACTIONS(8509), + [aux_sym__for_header_token1] = ACTIONS(8509), + [aux_sym_do_statement_token1] = ACTIONS(8509), + [aux_sym_do_condition_token1] = ACTIONS(8509), + [aux_sym_while_statement_token1] = ACTIONS(8509), + [aux_sym_with_statement_token1] = ACTIONS(8509), + [aux_sym_exit_statement_token1] = ACTIONS(8509), + [sym_end_statement] = ACTIONS(8511), + [aux_sym_on_goto_statement_token1] = ACTIONS(8509), + [aux_sym_on_goto_statement_token2] = ACTIONS(8509), + [aux_sym_on_error_statement_token2] = ACTIONS(8509), + [sym__ambiguous_redim_statement] = ACTIONS(8511), + [aux_sym_erase_statement_token1] = ACTIONS(8509), + [aux_sym_open_statement_token1] = ACTIONS(8509), + [aux_sym_file_mode_token2] = ACTIONS(8509), + [aux_sym_file_access_token2] = ACTIONS(8509), + [aux_sym_file_lock_token2] = ACTIONS(8509), + [aux_sym_print_statement_token1] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(8511), + [anon_sym_DASH] = ACTIONS(8509), + [anon_sym_QMARK] = ACTIONS(8511), + [aux_sym_close_statement_token1] = ACTIONS(8509), + [aux_sym_put_statement_token1] = ACTIONS(8509), + [aux_sym_unlock_statement_token1] = ACTIONS(8509), + [aux_sym_seek_statement_token1] = ACTIONS(8509), + [sym_reset_statement] = ACTIONS(8509), + [aux_sym_raise_event_statement_token1] = ACTIONS(8509), + [sym_stop_statement] = ACTIONS(8509), + [sym_beep_statement] = ACTIONS(8509), + [aux_sym_unload_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token2] = ACTIONS(8509), + [aux_sym_def_type_statement_token3] = ACTIONS(8509), + [aux_sym_def_type_statement_token4] = ACTIONS(8509), + [aux_sym_def_type_statement_token5] = ACTIONS(8509), + [aux_sym_def_type_statement_token6] = ACTIONS(8509), + [aux_sym_def_type_statement_token7] = ACTIONS(8509), + [aux_sym_def_type_statement_token8] = ACTIONS(8509), + [aux_sym_def_type_statement_token9] = ACTIONS(8509), + [aux_sym_def_type_statement_token10] = ACTIONS(8509), + [aux_sym_def_type_statement_token11] = ACTIONS(8509), + [aux_sym_def_type_statement_token12] = ACTIONS(8509), + [aux_sym_def_type_statement_token13] = ACTIONS(8509), + [aux_sym_def_type_statement_token14] = ACTIONS(8509), + [aux_sym_call_statement_token1] = ACTIONS(8509), + [sym__ambiguous_call_statement] = ACTIONS(8509), + [aux_sym_addressof_expression_token1] = ACTIONS(8509), + [aux_sym_type_of_expression_token1] = ACTIONS(8509), + [aux_sym_unary_expression_token1] = ACTIONS(8509), + [sym_string_literal] = ACTIONS(8511), + [sym_number_literal] = ACTIONS(8511), + [aux_sym_boolean_literal_token1] = ACTIONS(8509), + [aux_sym_boolean_literal_token2] = ACTIONS(8509), + [sym_nothing_literal] = ACTIONS(8509), + [sym_null_literal] = ACTIONS(8509), + [sym_empty_literal] = ACTIONS(8509), + [sym_date_literal] = ACTIONS(8511), + [anon_sym_POUND] = ACTIONS(8509), + }, + [STATE(6870)] = { + [sym_identifier] = ACTIONS(9126), + [sym_newline] = ACTIONS(9128), + [anon_sym_COLON] = ACTIONS(9128), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9126), + [aux_sym_frm_property_statement_token1] = ACTIONS(9126), + [anon_sym_DOT] = ACTIONS(9126), + [anon_sym_BANG] = ACTIONS(9128), + [aux_sym__attribute_identifier_token1] = ACTIONS(9126), + [aux_sym_option_statement_token3] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9126), + [aux_sym_preprocessor_const_token1] = ACTIONS(9126), + [sym_static_modifier] = ACTIONS(9126), + [sym__dim_keyword] = ACTIONS(9126), + [sym__redim_keyword] = ACTIONS(9126), + [aux_sym_get_accessor_token1] = ACTIONS(9126), + [aux_sym_set_accessor_token1] = ACTIONS(9126), + [aux_sym_const_declaration_token1] = ACTIONS(9126), + [anon_sym_LPAREN] = ACTIONS(9128), + [aux_sym_as_type_clause_token2] = ACTIONS(9126), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9126), + [aux_sym_visibility_token1] = ACTIONS(9126), + [aux_sym_visibility_token2] = ACTIONS(9126), + [aux_sym_elseif_fragment_token1] = ACTIONS(9126), + [aux_sym_else_fragment_token1] = ACTIONS(9126), + [aux_sym_select_statement_token1] = ACTIONS(9126), + [aux_sym_select_statement_token2] = ACTIONS(9126), + [aux_sym__for_header_token1] = ACTIONS(9126), + [aux_sym_do_statement_token1] = ACTIONS(9126), + [aux_sym_do_condition_token1] = ACTIONS(9126), + [aux_sym_with_statement_token1] = ACTIONS(9126), + [aux_sym_exit_statement_token1] = ACTIONS(9126), + [sym_end_statement] = ACTIONS(9128), + [aux_sym_on_goto_statement_token1] = ACTIONS(9126), + [aux_sym_on_goto_statement_token2] = ACTIONS(9126), + [aux_sym_on_error_statement_token2] = ACTIONS(9126), + [sym__ambiguous_redim_statement] = ACTIONS(9128), + [aux_sym_erase_statement_token1] = ACTIONS(9126), + [aux_sym_open_statement_token1] = ACTIONS(9126), + [aux_sym_file_mode_token2] = ACTIONS(9126), + [aux_sym_file_access_token2] = ACTIONS(9126), + [aux_sym_file_lock_token2] = ACTIONS(9126), + [aux_sym_print_statement_token1] = ACTIONS(9126), + [anon_sym_PLUS] = ACTIONS(9128), + [anon_sym_DASH] = ACTIONS(9126), + [anon_sym_QMARK] = ACTIONS(9128), + [aux_sym_close_statement_token1] = ACTIONS(9126), + [aux_sym_put_statement_token1] = ACTIONS(9126), + [aux_sym_unlock_statement_token1] = ACTIONS(9126), + [aux_sym_seek_statement_token1] = ACTIONS(9126), + [sym_reset_statement] = ACTIONS(9126), + [aux_sym_raise_event_statement_token1] = ACTIONS(9126), + [sym_stop_statement] = ACTIONS(9126), + [sym_beep_statement] = ACTIONS(9126), + [aux_sym_unload_statement_token1] = ACTIONS(9126), + [aux_sym_def_type_statement_token1] = ACTIONS(9126), + [aux_sym_def_type_statement_token2] = ACTIONS(9126), + [aux_sym_def_type_statement_token3] = ACTIONS(9126), + [aux_sym_def_type_statement_token4] = ACTIONS(9126), + [aux_sym_def_type_statement_token5] = ACTIONS(9126), + [aux_sym_def_type_statement_token6] = ACTIONS(9126), + [aux_sym_def_type_statement_token7] = ACTIONS(9126), + [aux_sym_def_type_statement_token8] = ACTIONS(9126), + [aux_sym_def_type_statement_token9] = ACTIONS(9126), + [aux_sym_def_type_statement_token10] = ACTIONS(9126), + [aux_sym_def_type_statement_token11] = ACTIONS(9126), + [aux_sym_def_type_statement_token12] = ACTIONS(9126), + [aux_sym_def_type_statement_token13] = ACTIONS(9126), + [aux_sym_def_type_statement_token14] = ACTIONS(9126), + [aux_sym_call_statement_token1] = ACTIONS(9126), + [sym__ambiguous_call_statement] = ACTIONS(9126), + [aux_sym_addressof_expression_token1] = ACTIONS(9126), + [aux_sym_type_of_expression_token1] = ACTIONS(9126), + [aux_sym_unary_expression_token1] = ACTIONS(9126), + [sym_string_literal] = ACTIONS(9128), + [sym_number_literal] = ACTIONS(9128), + [aux_sym_boolean_literal_token1] = ACTIONS(9126), + [aux_sym_boolean_literal_token2] = ACTIONS(9126), + [sym_nothing_literal] = ACTIONS(9126), + [sym_null_literal] = ACTIONS(9126), + [sym_empty_literal] = ACTIONS(9126), + [sym_date_literal] = ACTIONS(9128), + [anon_sym_POUND] = ACTIONS(9126), + }, + [STATE(6871)] = { + [sym_identifier] = ACTIONS(9080), + [sym_newline] = ACTIONS(9082), + [anon_sym_COLON] = ACTIONS(9082), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9080), + [aux_sym_frm_property_statement_token1] = ACTIONS(9080), + [anon_sym_DOT] = ACTIONS(9080), + [anon_sym_BANG] = ACTIONS(9082), + [aux_sym__attribute_identifier_token1] = ACTIONS(9080), + [aux_sym_option_statement_token3] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9080), + [aux_sym_preprocessor_const_token1] = ACTIONS(9080), + [sym_static_modifier] = ACTIONS(9080), + [sym__dim_keyword] = ACTIONS(9080), + [sym__redim_keyword] = ACTIONS(9080), + [aux_sym_get_accessor_token1] = ACTIONS(9080), + [aux_sym_set_accessor_token1] = ACTIONS(9080), + [aux_sym_const_declaration_token1] = ACTIONS(9080), + [anon_sym_LPAREN] = ACTIONS(9082), + [aux_sym_as_type_clause_token2] = ACTIONS(9080), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9080), + [aux_sym_visibility_token1] = ACTIONS(9080), + [aux_sym_visibility_token2] = ACTIONS(9080), + [aux_sym_elseif_fragment_token1] = ACTIONS(9080), + [aux_sym_else_fragment_token1] = ACTIONS(9080), + [aux_sym_select_statement_token1] = ACTIONS(9080), + [aux_sym_select_statement_token2] = ACTIONS(9080), + [aux_sym__for_header_token1] = ACTIONS(9080), + [aux_sym_do_statement_token1] = ACTIONS(9080), + [aux_sym_do_condition_token1] = ACTIONS(9080), + [aux_sym_with_statement_token1] = ACTIONS(9080), + [aux_sym_exit_statement_token1] = ACTIONS(9080), + [sym_end_statement] = ACTIONS(9082), + [aux_sym_on_goto_statement_token1] = ACTIONS(9080), + [aux_sym_on_goto_statement_token2] = ACTIONS(9080), + [aux_sym_on_error_statement_token2] = ACTIONS(9080), + [sym__ambiguous_redim_statement] = ACTIONS(9082), + [aux_sym_erase_statement_token1] = ACTIONS(9080), + [aux_sym_open_statement_token1] = ACTIONS(9080), + [aux_sym_file_mode_token2] = ACTIONS(9080), + [aux_sym_file_access_token2] = ACTIONS(9080), + [aux_sym_file_lock_token2] = ACTIONS(9080), + [aux_sym_print_statement_token1] = ACTIONS(9080), + [anon_sym_PLUS] = ACTIONS(9082), + [anon_sym_DASH] = ACTIONS(9080), + [anon_sym_QMARK] = ACTIONS(9082), + [aux_sym_close_statement_token1] = ACTIONS(9080), + [aux_sym_put_statement_token1] = ACTIONS(9080), + [aux_sym_unlock_statement_token1] = ACTIONS(9080), + [aux_sym_seek_statement_token1] = ACTIONS(9080), + [sym_reset_statement] = ACTIONS(9080), + [aux_sym_raise_event_statement_token1] = ACTIONS(9080), + [sym_stop_statement] = ACTIONS(9080), + [sym_beep_statement] = ACTIONS(9080), + [aux_sym_unload_statement_token1] = ACTIONS(9080), + [aux_sym_def_type_statement_token1] = ACTIONS(9080), + [aux_sym_def_type_statement_token2] = ACTIONS(9080), + [aux_sym_def_type_statement_token3] = ACTIONS(9080), + [aux_sym_def_type_statement_token4] = ACTIONS(9080), + [aux_sym_def_type_statement_token5] = ACTIONS(9080), + [aux_sym_def_type_statement_token6] = ACTIONS(9080), + [aux_sym_def_type_statement_token7] = ACTIONS(9080), + [aux_sym_def_type_statement_token8] = ACTIONS(9080), + [aux_sym_def_type_statement_token9] = ACTIONS(9080), + [aux_sym_def_type_statement_token10] = ACTIONS(9080), + [aux_sym_def_type_statement_token11] = ACTIONS(9080), + [aux_sym_def_type_statement_token12] = ACTIONS(9080), + [aux_sym_def_type_statement_token13] = ACTIONS(9080), + [aux_sym_def_type_statement_token14] = ACTIONS(9080), + [aux_sym_call_statement_token1] = ACTIONS(9080), + [sym__ambiguous_call_statement] = ACTIONS(9080), + [aux_sym_addressof_expression_token1] = ACTIONS(9080), + [aux_sym_type_of_expression_token1] = ACTIONS(9080), + [aux_sym_unary_expression_token1] = ACTIONS(9080), + [sym_string_literal] = ACTIONS(9082), + [sym_number_literal] = ACTIONS(9082), + [aux_sym_boolean_literal_token1] = ACTIONS(9080), + [aux_sym_boolean_literal_token2] = ACTIONS(9080), + [sym_nothing_literal] = ACTIONS(9080), + [sym_null_literal] = ACTIONS(9080), + [sym_empty_literal] = ACTIONS(9080), + [sym_date_literal] = ACTIONS(9082), + [anon_sym_POUND] = ACTIONS(9080), + }, + [STATE(6872)] = { + [sym_identifier] = ACTIONS(9150), + [sym_newline] = ACTIONS(9152), + [anon_sym_COLON] = ACTIONS(9152), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9154), + [aux_sym_frm_property_statement_token1] = ACTIONS(9150), + [anon_sym_DOT] = ACTIONS(9150), + [anon_sym_BANG] = ACTIONS(9152), + [aux_sym__attribute_identifier_token1] = ACTIONS(9150), + [aux_sym_option_statement_token3] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9154), + [aux_sym_preprocessor_const_token1] = ACTIONS(9150), + [sym_static_modifier] = ACTIONS(9150), + [sym__dim_keyword] = ACTIONS(9150), + [sym__redim_keyword] = ACTIONS(9150), + [aux_sym_get_accessor_token1] = ACTIONS(9150), + [aux_sym_set_accessor_token1] = ACTIONS(9150), + [aux_sym_const_declaration_token1] = ACTIONS(9150), + [anon_sym_LPAREN] = ACTIONS(9152), + [aux_sym_as_type_clause_token2] = ACTIONS(9150), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9150), + [aux_sym_visibility_token1] = ACTIONS(9150), + [aux_sym_visibility_token2] = ACTIONS(9150), + [aux_sym_elseif_fragment_token1] = ACTIONS(9154), + [aux_sym_else_fragment_token1] = ACTIONS(9154), + [aux_sym_select_statement_token1] = ACTIONS(9154), + [aux_sym__for_header_token1] = ACTIONS(9154), + [aux_sym_do_statement_token1] = ACTIONS(9154), + [aux_sym_do_condition_token1] = ACTIONS(9154), + [aux_sym_with_statement_token1] = ACTIONS(9154), + [aux_sym_exit_statement_token1] = ACTIONS(9150), + [sym_end_statement] = ACTIONS(9152), + [aux_sym_on_goto_statement_token1] = ACTIONS(9150), + [aux_sym_on_goto_statement_token2] = ACTIONS(9150), + [aux_sym_on_error_statement_token2] = ACTIONS(9150), + [sym__ambiguous_redim_statement] = ACTIONS(9152), + [aux_sym_erase_statement_token1] = ACTIONS(9150), + [aux_sym_open_statement_token1] = ACTIONS(9150), + [aux_sym_file_mode_token2] = ACTIONS(9150), + [aux_sym_file_access_token2] = ACTIONS(9150), + [aux_sym_file_lock_token2] = ACTIONS(9150), + [aux_sym_print_statement_token1] = ACTIONS(9150), + [anon_sym_PLUS] = ACTIONS(9152), + [anon_sym_DASH] = ACTIONS(9150), + [anon_sym_QMARK] = ACTIONS(9152), + [aux_sym_close_statement_token1] = ACTIONS(9150), + [aux_sym_put_statement_token1] = ACTIONS(9150), + [aux_sym_unlock_statement_token1] = ACTIONS(9150), + [aux_sym_seek_statement_token1] = ACTIONS(9150), + [sym_reset_statement] = ACTIONS(9150), + [aux_sym_raise_event_statement_token1] = ACTIONS(9150), + [sym_stop_statement] = ACTIONS(9150), + [sym_beep_statement] = ACTIONS(9150), + [aux_sym_unload_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token2] = ACTIONS(9150), + [aux_sym_def_type_statement_token3] = ACTIONS(9150), + [aux_sym_def_type_statement_token4] = ACTIONS(9150), + [aux_sym_def_type_statement_token5] = ACTIONS(9150), + [aux_sym_def_type_statement_token6] = ACTIONS(9150), + [aux_sym_def_type_statement_token7] = ACTIONS(9150), + [aux_sym_def_type_statement_token8] = ACTIONS(9150), + [aux_sym_def_type_statement_token9] = ACTIONS(9150), + [aux_sym_def_type_statement_token10] = ACTIONS(9150), + [aux_sym_def_type_statement_token11] = ACTIONS(9150), + [aux_sym_def_type_statement_token12] = ACTIONS(9150), + [aux_sym_def_type_statement_token13] = ACTIONS(9150), + [aux_sym_def_type_statement_token14] = ACTIONS(9150), + [aux_sym_call_statement_token1] = ACTIONS(9150), + [sym__ambiguous_call_statement] = ACTIONS(9150), + [aux_sym_addressof_expression_token1] = ACTIONS(9150), + [aux_sym_type_of_expression_token1] = ACTIONS(9150), + [aux_sym_unary_expression_token1] = ACTIONS(9150), + [sym_string_literal] = ACTIONS(9152), + [sym_number_literal] = ACTIONS(9152), + [aux_sym_boolean_literal_token1] = ACTIONS(9150), + [aux_sym_boolean_literal_token2] = ACTIONS(9150), + [sym_nothing_literal] = ACTIONS(9150), + [sym_null_literal] = ACTIONS(9150), + [sym_empty_literal] = ACTIONS(9150), + [sym_date_literal] = ACTIONS(9152), + [anon_sym_POUND] = ACTIONS(9150), + }, + [STATE(6873)] = { + [sym_identifier] = ACTIONS(8692), + [sym_newline] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(8694), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8692), + [aux_sym_frm_property_statement_token1] = ACTIONS(8692), + [anon_sym_DOT] = ACTIONS(8692), + [anon_sym_BANG] = ACTIONS(8694), + [aux_sym__attribute_identifier_token1] = ACTIONS(8692), + [aux_sym_option_statement_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8692), + [aux_sym_preprocessor_const_token1] = ACTIONS(8692), + [sym_static_modifier] = ACTIONS(8692), + [sym__dim_keyword] = ACTIONS(8692), + [sym__redim_keyword] = ACTIONS(8692), + [aux_sym_get_accessor_token1] = ACTIONS(8692), + [aux_sym_set_accessor_token1] = ACTIONS(8692), + [aux_sym_const_declaration_token1] = ACTIONS(8692), + [anon_sym_LPAREN] = ACTIONS(8694), + [aux_sym_as_type_clause_token2] = ACTIONS(8692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8692), + [aux_sym_visibility_token1] = ACTIONS(8692), + [aux_sym_visibility_token2] = ACTIONS(8692), + [aux_sym_elseif_fragment_token1] = ACTIONS(8692), + [aux_sym_else_fragment_token1] = ACTIONS(11101), + [aux_sym_select_statement_token1] = ACTIONS(8692), + [aux_sym__for_header_token1] = ACTIONS(8692), + [aux_sym_do_statement_token1] = ACTIONS(8692), + [aux_sym_do_condition_token1] = ACTIONS(8692), + [aux_sym_with_statement_token1] = ACTIONS(8692), + [aux_sym_exit_statement_token1] = ACTIONS(8692), + [sym_end_statement] = ACTIONS(8694), + [aux_sym_on_goto_statement_token1] = ACTIONS(8692), + [aux_sym_on_goto_statement_token2] = ACTIONS(8692), + [aux_sym_on_error_statement_token2] = ACTIONS(8692), + [sym__ambiguous_redim_statement] = ACTIONS(8694), + [aux_sym_erase_statement_token1] = ACTIONS(8692), + [aux_sym_open_statement_token1] = ACTIONS(8692), + [aux_sym_file_mode_token2] = ACTIONS(8692), + [aux_sym_file_access_token2] = ACTIONS(8692), + [aux_sym_file_lock_token2] = ACTIONS(8692), + [aux_sym_print_statement_token1] = ACTIONS(8692), + [anon_sym_PLUS] = ACTIONS(8694), + [anon_sym_DASH] = ACTIONS(8692), + [anon_sym_QMARK] = ACTIONS(8694), + [aux_sym_close_statement_token1] = ACTIONS(8692), + [aux_sym_put_statement_token1] = ACTIONS(8692), + [aux_sym_unlock_statement_token1] = ACTIONS(8692), + [aux_sym_seek_statement_token1] = ACTIONS(8692), + [sym_reset_statement] = ACTIONS(8692), + [aux_sym_raise_event_statement_token1] = ACTIONS(8692), + [sym_stop_statement] = ACTIONS(8692), + [sym_beep_statement] = ACTIONS(8692), + [aux_sym_unload_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token2] = ACTIONS(8692), + [aux_sym_def_type_statement_token3] = ACTIONS(8692), + [aux_sym_def_type_statement_token4] = ACTIONS(8692), + [aux_sym_def_type_statement_token5] = ACTIONS(8692), + [aux_sym_def_type_statement_token6] = ACTIONS(8692), + [aux_sym_def_type_statement_token7] = ACTIONS(8692), + [aux_sym_def_type_statement_token8] = ACTIONS(8692), + [aux_sym_def_type_statement_token9] = ACTIONS(8692), + [aux_sym_def_type_statement_token10] = ACTIONS(8692), + [aux_sym_def_type_statement_token11] = ACTIONS(8692), + [aux_sym_def_type_statement_token12] = ACTIONS(8692), + [aux_sym_def_type_statement_token13] = ACTIONS(8692), + [aux_sym_def_type_statement_token14] = ACTIONS(8692), + [aux_sym_call_statement_token1] = ACTIONS(8692), + [sym__ambiguous_call_statement] = ACTIONS(8692), + [aux_sym_addressof_expression_token1] = ACTIONS(8692), + [aux_sym_type_of_expression_token1] = ACTIONS(8692), + [aux_sym_unary_expression_token1] = ACTIONS(8692), + [sym_string_literal] = ACTIONS(8694), + [sym_number_literal] = ACTIONS(8694), + [aux_sym_boolean_literal_token1] = ACTIONS(8692), + [aux_sym_boolean_literal_token2] = ACTIONS(8692), + [sym_nothing_literal] = ACTIONS(8692), + [sym_null_literal] = ACTIONS(8692), + [sym_empty_literal] = ACTIONS(8692), + [sym_date_literal] = ACTIONS(8694), + [anon_sym_POUND] = ACTIONS(8692), + }, + [STATE(6874)] = { + [sym_identifier] = ACTIONS(9332), + [sym_newline] = ACTIONS(9334), + [anon_sym_COLON] = ACTIONS(9334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9332), + [aux_sym_frm_property_statement_token1] = ACTIONS(9332), + [anon_sym_DOT] = ACTIONS(9332), + [anon_sym_BANG] = ACTIONS(9334), + [aux_sym__attribute_identifier_token1] = ACTIONS(9332), + [aux_sym_option_statement_token3] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9332), + [aux_sym_preprocessor_const_token1] = ACTIONS(9332), + [sym_static_modifier] = ACTIONS(9332), + [sym__dim_keyword] = ACTIONS(9332), + [sym__redim_keyword] = ACTIONS(9332), + [aux_sym_get_accessor_token1] = ACTIONS(9332), + [aux_sym_set_accessor_token1] = ACTIONS(9332), + [aux_sym_const_declaration_token1] = ACTIONS(9332), + [anon_sym_LPAREN] = ACTIONS(9334), + [aux_sym_as_type_clause_token2] = ACTIONS(9332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9332), + [aux_sym_visibility_token1] = ACTIONS(9332), + [aux_sym_visibility_token2] = ACTIONS(9332), + [aux_sym_elseif_fragment_token1] = ACTIONS(9332), + [aux_sym_else_fragment_token1] = ACTIONS(9332), + [aux_sym_select_statement_token1] = ACTIONS(9332), + [aux_sym__for_header_token1] = ACTIONS(9332), + [aux_sym_do_statement_token1] = ACTIONS(9332), + [aux_sym_do_condition_token1] = ACTIONS(9332), + [aux_sym_while_statement_token1] = ACTIONS(9332), + [aux_sym_with_statement_token1] = ACTIONS(9332), + [aux_sym_exit_statement_token1] = ACTIONS(9332), + [sym_end_statement] = ACTIONS(9334), + [aux_sym_on_goto_statement_token1] = ACTIONS(9332), + [aux_sym_on_goto_statement_token2] = ACTIONS(9332), + [aux_sym_on_error_statement_token2] = ACTIONS(9332), + [sym__ambiguous_redim_statement] = ACTIONS(9334), + [aux_sym_erase_statement_token1] = ACTIONS(9332), + [aux_sym_open_statement_token1] = ACTIONS(9332), + [aux_sym_file_mode_token2] = ACTIONS(9332), + [aux_sym_file_access_token2] = ACTIONS(9332), + [aux_sym_file_lock_token2] = ACTIONS(9332), + [aux_sym_print_statement_token1] = ACTIONS(9332), + [anon_sym_PLUS] = ACTIONS(9334), + [anon_sym_DASH] = ACTIONS(9332), + [anon_sym_QMARK] = ACTIONS(9334), + [aux_sym_close_statement_token1] = ACTIONS(9332), + [aux_sym_put_statement_token1] = ACTIONS(9332), + [aux_sym_unlock_statement_token1] = ACTIONS(9332), + [aux_sym_seek_statement_token1] = ACTIONS(9332), + [sym_reset_statement] = ACTIONS(9332), + [aux_sym_raise_event_statement_token1] = ACTIONS(9332), + [sym_stop_statement] = ACTIONS(9332), + [sym_beep_statement] = ACTIONS(9332), + [aux_sym_unload_statement_token1] = ACTIONS(9332), + [aux_sym_def_type_statement_token1] = ACTIONS(9332), + [aux_sym_def_type_statement_token2] = ACTIONS(9332), + [aux_sym_def_type_statement_token3] = ACTIONS(9332), + [aux_sym_def_type_statement_token4] = ACTIONS(9332), + [aux_sym_def_type_statement_token5] = ACTIONS(9332), + [aux_sym_def_type_statement_token6] = ACTIONS(9332), + [aux_sym_def_type_statement_token7] = ACTIONS(9332), + [aux_sym_def_type_statement_token8] = ACTIONS(9332), + [aux_sym_def_type_statement_token9] = ACTIONS(9332), + [aux_sym_def_type_statement_token10] = ACTIONS(9332), + [aux_sym_def_type_statement_token11] = ACTIONS(9332), + [aux_sym_def_type_statement_token12] = ACTIONS(9332), + [aux_sym_def_type_statement_token13] = ACTIONS(9332), + [aux_sym_def_type_statement_token14] = ACTIONS(9332), + [aux_sym_call_statement_token1] = ACTIONS(9332), + [sym__ambiguous_call_statement] = ACTIONS(9332), + [aux_sym_addressof_expression_token1] = ACTIONS(9332), + [aux_sym_type_of_expression_token1] = ACTIONS(9332), + [aux_sym_unary_expression_token1] = ACTIONS(9332), + [sym_string_literal] = ACTIONS(9334), + [sym_number_literal] = ACTIONS(9334), + [aux_sym_boolean_literal_token1] = ACTIONS(9332), + [aux_sym_boolean_literal_token2] = ACTIONS(9332), + [sym_nothing_literal] = ACTIONS(9332), + [sym_null_literal] = ACTIONS(9332), + [sym_empty_literal] = ACTIONS(9332), + [sym_date_literal] = ACTIONS(9334), + [anon_sym_POUND] = ACTIONS(9332), + }, + [STATE(6875)] = { + [sym_identifier] = ACTIONS(9336), + [sym_newline] = ACTIONS(9338), + [anon_sym_COLON] = ACTIONS(9338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9336), + [aux_sym_frm_property_statement_token1] = ACTIONS(9336), + [anon_sym_DOT] = ACTIONS(9336), + [anon_sym_BANG] = ACTIONS(9338), + [aux_sym__attribute_identifier_token1] = ACTIONS(9336), + [aux_sym_option_statement_token3] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9336), + [aux_sym_preprocessor_const_token1] = ACTIONS(9336), + [sym_static_modifier] = ACTIONS(9336), + [sym__dim_keyword] = ACTIONS(9336), + [sym__redim_keyword] = ACTIONS(9336), + [aux_sym_get_accessor_token1] = ACTIONS(9336), + [aux_sym_set_accessor_token1] = ACTIONS(9336), + [aux_sym_const_declaration_token1] = ACTIONS(9336), + [anon_sym_LPAREN] = ACTIONS(9338), + [aux_sym_as_type_clause_token2] = ACTIONS(9336), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9336), + [aux_sym_visibility_token1] = ACTIONS(9336), + [aux_sym_visibility_token2] = ACTIONS(9336), + [aux_sym_elseif_fragment_token1] = ACTIONS(9336), + [aux_sym_else_fragment_token1] = ACTIONS(9336), + [aux_sym_select_statement_token1] = ACTIONS(9336), + [aux_sym__for_header_token1] = ACTIONS(9336), + [aux_sym_do_statement_token1] = ACTIONS(9336), + [aux_sym_do_condition_token1] = ACTIONS(9336), + [aux_sym_while_statement_token1] = ACTIONS(9336), + [aux_sym_with_statement_token1] = ACTIONS(9336), + [aux_sym_exit_statement_token1] = ACTIONS(9336), + [sym_end_statement] = ACTIONS(9338), + [aux_sym_on_goto_statement_token1] = ACTIONS(9336), + [aux_sym_on_goto_statement_token2] = ACTIONS(9336), + [aux_sym_on_error_statement_token2] = ACTIONS(9336), + [sym__ambiguous_redim_statement] = ACTIONS(9338), + [aux_sym_erase_statement_token1] = ACTIONS(9336), + [aux_sym_open_statement_token1] = ACTIONS(9336), + [aux_sym_file_mode_token2] = ACTIONS(9336), + [aux_sym_file_access_token2] = ACTIONS(9336), + [aux_sym_file_lock_token2] = ACTIONS(9336), + [aux_sym_print_statement_token1] = ACTIONS(9336), + [anon_sym_PLUS] = ACTIONS(9338), + [anon_sym_DASH] = ACTIONS(9336), + [anon_sym_QMARK] = ACTIONS(9338), + [aux_sym_close_statement_token1] = ACTIONS(9336), + [aux_sym_put_statement_token1] = ACTIONS(9336), + [aux_sym_unlock_statement_token1] = ACTIONS(9336), + [aux_sym_seek_statement_token1] = ACTIONS(9336), + [sym_reset_statement] = ACTIONS(9336), + [aux_sym_raise_event_statement_token1] = ACTIONS(9336), + [sym_stop_statement] = ACTIONS(9336), + [sym_beep_statement] = ACTIONS(9336), + [aux_sym_unload_statement_token1] = ACTIONS(9336), + [aux_sym_def_type_statement_token1] = ACTIONS(9336), + [aux_sym_def_type_statement_token2] = ACTIONS(9336), + [aux_sym_def_type_statement_token3] = ACTIONS(9336), + [aux_sym_def_type_statement_token4] = ACTIONS(9336), + [aux_sym_def_type_statement_token5] = ACTIONS(9336), + [aux_sym_def_type_statement_token6] = ACTIONS(9336), + [aux_sym_def_type_statement_token7] = ACTIONS(9336), + [aux_sym_def_type_statement_token8] = ACTIONS(9336), + [aux_sym_def_type_statement_token9] = ACTIONS(9336), + [aux_sym_def_type_statement_token10] = ACTIONS(9336), + [aux_sym_def_type_statement_token11] = ACTIONS(9336), + [aux_sym_def_type_statement_token12] = ACTIONS(9336), + [aux_sym_def_type_statement_token13] = ACTIONS(9336), + [aux_sym_def_type_statement_token14] = ACTIONS(9336), + [aux_sym_call_statement_token1] = ACTIONS(9336), + [sym__ambiguous_call_statement] = ACTIONS(9336), + [aux_sym_addressof_expression_token1] = ACTIONS(9336), + [aux_sym_type_of_expression_token1] = ACTIONS(9336), + [aux_sym_unary_expression_token1] = ACTIONS(9336), + [sym_string_literal] = ACTIONS(9338), + [sym_number_literal] = ACTIONS(9338), + [aux_sym_boolean_literal_token1] = ACTIONS(9336), + [aux_sym_boolean_literal_token2] = ACTIONS(9336), + [sym_nothing_literal] = ACTIONS(9336), + [sym_null_literal] = ACTIONS(9336), + [sym_empty_literal] = ACTIONS(9336), + [sym_date_literal] = ACTIONS(9338), + [anon_sym_POUND] = ACTIONS(9336), + }, + [STATE(6876)] = { + [sym_identifier] = ACTIONS(9340), + [sym_newline] = ACTIONS(9342), + [anon_sym_COLON] = ACTIONS(9342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9340), + [aux_sym_frm_property_statement_token1] = ACTIONS(9340), + [anon_sym_DOT] = ACTIONS(9340), + [anon_sym_BANG] = ACTIONS(9342), + [aux_sym__attribute_identifier_token1] = ACTIONS(9340), + [aux_sym_option_statement_token3] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9340), + [aux_sym_preprocessor_const_token1] = ACTIONS(9340), + [sym_static_modifier] = ACTIONS(9340), + [sym__dim_keyword] = ACTIONS(9340), + [sym__redim_keyword] = ACTIONS(9340), + [aux_sym_get_accessor_token1] = ACTIONS(9340), + [aux_sym_set_accessor_token1] = ACTIONS(9340), + [aux_sym_const_declaration_token1] = ACTIONS(9340), + [anon_sym_LPAREN] = ACTIONS(9342), + [aux_sym_as_type_clause_token2] = ACTIONS(9340), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9340), + [aux_sym_visibility_token1] = ACTIONS(9340), + [aux_sym_visibility_token2] = ACTIONS(9340), + [aux_sym_elseif_fragment_token1] = ACTIONS(9340), + [aux_sym_else_fragment_token1] = ACTIONS(9340), + [aux_sym_select_statement_token1] = ACTIONS(9340), + [aux_sym__for_header_token1] = ACTIONS(9340), + [aux_sym_do_statement_token1] = ACTIONS(9340), + [aux_sym_do_condition_token1] = ACTIONS(9340), + [aux_sym_while_statement_token1] = ACTIONS(9340), + [aux_sym_with_statement_token1] = ACTIONS(9340), + [aux_sym_exit_statement_token1] = ACTIONS(9340), + [sym_end_statement] = ACTIONS(9342), + [aux_sym_on_goto_statement_token1] = ACTIONS(9340), + [aux_sym_on_goto_statement_token2] = ACTIONS(9340), + [aux_sym_on_error_statement_token2] = ACTIONS(9340), + [sym__ambiguous_redim_statement] = ACTIONS(9342), + [aux_sym_erase_statement_token1] = ACTIONS(9340), + [aux_sym_open_statement_token1] = ACTIONS(9340), + [aux_sym_file_mode_token2] = ACTIONS(9340), + [aux_sym_file_access_token2] = ACTIONS(9340), + [aux_sym_file_lock_token2] = ACTIONS(9340), + [aux_sym_print_statement_token1] = ACTIONS(9340), + [anon_sym_PLUS] = ACTIONS(9342), + [anon_sym_DASH] = ACTIONS(9340), + [anon_sym_QMARK] = ACTIONS(9342), + [aux_sym_close_statement_token1] = ACTIONS(9340), + [aux_sym_put_statement_token1] = ACTIONS(9340), + [aux_sym_unlock_statement_token1] = ACTIONS(9340), + [aux_sym_seek_statement_token1] = ACTIONS(9340), + [sym_reset_statement] = ACTIONS(9340), + [aux_sym_raise_event_statement_token1] = ACTIONS(9340), + [sym_stop_statement] = ACTIONS(9340), + [sym_beep_statement] = ACTIONS(9340), + [aux_sym_unload_statement_token1] = ACTIONS(9340), + [aux_sym_def_type_statement_token1] = ACTIONS(9340), + [aux_sym_def_type_statement_token2] = ACTIONS(9340), + [aux_sym_def_type_statement_token3] = ACTIONS(9340), + [aux_sym_def_type_statement_token4] = ACTIONS(9340), + [aux_sym_def_type_statement_token5] = ACTIONS(9340), + [aux_sym_def_type_statement_token6] = ACTIONS(9340), + [aux_sym_def_type_statement_token7] = ACTIONS(9340), + [aux_sym_def_type_statement_token8] = ACTIONS(9340), + [aux_sym_def_type_statement_token9] = ACTIONS(9340), + [aux_sym_def_type_statement_token10] = ACTIONS(9340), + [aux_sym_def_type_statement_token11] = ACTIONS(9340), + [aux_sym_def_type_statement_token12] = ACTIONS(9340), + [aux_sym_def_type_statement_token13] = ACTIONS(9340), + [aux_sym_def_type_statement_token14] = ACTIONS(9340), + [aux_sym_call_statement_token1] = ACTIONS(9340), + [sym__ambiguous_call_statement] = ACTIONS(9340), + [aux_sym_addressof_expression_token1] = ACTIONS(9340), + [aux_sym_type_of_expression_token1] = ACTIONS(9340), + [aux_sym_unary_expression_token1] = ACTIONS(9340), + [sym_string_literal] = ACTIONS(9342), + [sym_number_literal] = ACTIONS(9342), + [aux_sym_boolean_literal_token1] = ACTIONS(9340), + [aux_sym_boolean_literal_token2] = ACTIONS(9340), + [sym_nothing_literal] = ACTIONS(9340), + [sym_null_literal] = ACTIONS(9340), + [sym_empty_literal] = ACTIONS(9340), + [sym_date_literal] = ACTIONS(9342), + [anon_sym_POUND] = ACTIONS(9340), + }, + [STATE(6877)] = { + [sym_identifier] = ACTIONS(9344), + [sym_newline] = ACTIONS(9346), + [anon_sym_COLON] = ACTIONS(9346), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9344), + [aux_sym_frm_property_statement_token1] = ACTIONS(9344), + [anon_sym_DOT] = ACTIONS(9344), + [anon_sym_BANG] = ACTIONS(9346), + [aux_sym__attribute_identifier_token1] = ACTIONS(9344), + [aux_sym_option_statement_token3] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9344), + [aux_sym_preprocessor_const_token1] = ACTIONS(9344), + [sym_static_modifier] = ACTIONS(9344), + [sym__dim_keyword] = ACTIONS(9344), + [sym__redim_keyword] = ACTIONS(9344), + [aux_sym_get_accessor_token1] = ACTIONS(9344), + [aux_sym_set_accessor_token1] = ACTIONS(9344), + [aux_sym_const_declaration_token1] = ACTIONS(9344), + [anon_sym_LPAREN] = ACTIONS(9346), + [aux_sym_as_type_clause_token2] = ACTIONS(9344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9344), + [aux_sym_visibility_token1] = ACTIONS(9344), + [aux_sym_visibility_token2] = ACTIONS(9344), + [aux_sym_elseif_fragment_token1] = ACTIONS(9344), + [aux_sym_else_fragment_token1] = ACTIONS(9344), + [aux_sym_select_statement_token1] = ACTIONS(9344), + [aux_sym__for_header_token1] = ACTIONS(9344), + [aux_sym_do_statement_token1] = ACTIONS(9344), + [aux_sym_do_condition_token1] = ACTIONS(9344), + [aux_sym_while_statement_token1] = ACTIONS(9344), + [aux_sym_with_statement_token1] = ACTIONS(9344), + [aux_sym_exit_statement_token1] = ACTIONS(9344), + [sym_end_statement] = ACTIONS(9346), + [aux_sym_on_goto_statement_token1] = ACTIONS(9344), + [aux_sym_on_goto_statement_token2] = ACTIONS(9344), + [aux_sym_on_error_statement_token2] = ACTIONS(9344), + [sym__ambiguous_redim_statement] = ACTIONS(9346), + [aux_sym_erase_statement_token1] = ACTIONS(9344), + [aux_sym_open_statement_token1] = ACTIONS(9344), + [aux_sym_file_mode_token2] = ACTIONS(9344), + [aux_sym_file_access_token2] = ACTIONS(9344), + [aux_sym_file_lock_token2] = ACTIONS(9344), + [aux_sym_print_statement_token1] = ACTIONS(9344), + [anon_sym_PLUS] = ACTIONS(9346), + [anon_sym_DASH] = ACTIONS(9344), + [anon_sym_QMARK] = ACTIONS(9346), + [aux_sym_close_statement_token1] = ACTIONS(9344), + [aux_sym_put_statement_token1] = ACTIONS(9344), + [aux_sym_unlock_statement_token1] = ACTIONS(9344), + [aux_sym_seek_statement_token1] = ACTIONS(9344), + [sym_reset_statement] = ACTIONS(9344), + [aux_sym_raise_event_statement_token1] = ACTIONS(9344), + [sym_stop_statement] = ACTIONS(9344), + [sym_beep_statement] = ACTIONS(9344), + [aux_sym_unload_statement_token1] = ACTIONS(9344), + [aux_sym_def_type_statement_token1] = ACTIONS(9344), + [aux_sym_def_type_statement_token2] = ACTIONS(9344), + [aux_sym_def_type_statement_token3] = ACTIONS(9344), + [aux_sym_def_type_statement_token4] = ACTIONS(9344), + [aux_sym_def_type_statement_token5] = ACTIONS(9344), + [aux_sym_def_type_statement_token6] = ACTIONS(9344), + [aux_sym_def_type_statement_token7] = ACTIONS(9344), + [aux_sym_def_type_statement_token8] = ACTIONS(9344), + [aux_sym_def_type_statement_token9] = ACTIONS(9344), + [aux_sym_def_type_statement_token10] = ACTIONS(9344), + [aux_sym_def_type_statement_token11] = ACTIONS(9344), + [aux_sym_def_type_statement_token12] = ACTIONS(9344), + [aux_sym_def_type_statement_token13] = ACTIONS(9344), + [aux_sym_def_type_statement_token14] = ACTIONS(9344), + [aux_sym_call_statement_token1] = ACTIONS(9344), + [sym__ambiguous_call_statement] = ACTIONS(9344), + [aux_sym_addressof_expression_token1] = ACTIONS(9344), + [aux_sym_type_of_expression_token1] = ACTIONS(9344), + [aux_sym_unary_expression_token1] = ACTIONS(9344), + [sym_string_literal] = ACTIONS(9346), + [sym_number_literal] = ACTIONS(9346), + [aux_sym_boolean_literal_token1] = ACTIONS(9344), + [aux_sym_boolean_literal_token2] = ACTIONS(9344), + [sym_nothing_literal] = ACTIONS(9344), + [sym_null_literal] = ACTIONS(9344), + [sym_empty_literal] = ACTIONS(9344), + [sym_date_literal] = ACTIONS(9346), + [anon_sym_POUND] = ACTIONS(9344), + }, + [STATE(6878)] = { + [sym_identifier] = ACTIONS(8813), + [sym_newline] = ACTIONS(8815), + [anon_sym_COLON] = ACTIONS(8815), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8813), + [aux_sym_frm_property_statement_token1] = ACTIONS(8813), + [anon_sym_DOT] = ACTIONS(8813), + [anon_sym_BANG] = ACTIONS(8815), + [aux_sym__attribute_identifier_token1] = ACTIONS(8813), + [aux_sym_option_statement_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8813), + [aux_sym_preprocessor_const_token1] = ACTIONS(8813), + [sym_static_modifier] = ACTIONS(8813), + [sym__dim_keyword] = ACTIONS(8813), + [sym__redim_keyword] = ACTIONS(8813), + [aux_sym_get_accessor_token1] = ACTIONS(8813), + [aux_sym_set_accessor_token1] = ACTIONS(8813), + [aux_sym_const_declaration_token1] = ACTIONS(8813), + [anon_sym_LPAREN] = ACTIONS(8815), + [aux_sym_as_type_clause_token2] = ACTIONS(8813), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8813), + [aux_sym_visibility_token1] = ACTIONS(8813), + [aux_sym_visibility_token2] = ACTIONS(8813), + [aux_sym_elseif_fragment_token1] = ACTIONS(8813), + [aux_sym_else_fragment_token1] = ACTIONS(8813), + [aux_sym_select_statement_token1] = ACTIONS(8813), + [aux_sym_select_statement_token2] = ACTIONS(8813), + [aux_sym__for_header_token1] = ACTIONS(8813), + [aux_sym_do_statement_token1] = ACTIONS(8813), + [aux_sym_do_condition_token1] = ACTIONS(8813), + [aux_sym_with_statement_token1] = ACTIONS(8813), + [aux_sym_exit_statement_token1] = ACTIONS(8813), + [sym_end_statement] = ACTIONS(8815), + [aux_sym_on_goto_statement_token1] = ACTIONS(8813), + [aux_sym_on_goto_statement_token2] = ACTIONS(8813), + [aux_sym_on_error_statement_token2] = ACTIONS(8813), + [sym__ambiguous_redim_statement] = ACTIONS(8815), + [aux_sym_erase_statement_token1] = ACTIONS(8813), + [aux_sym_open_statement_token1] = ACTIONS(8813), + [aux_sym_file_mode_token2] = ACTIONS(8813), + [aux_sym_file_access_token2] = ACTIONS(8813), + [aux_sym_file_lock_token2] = ACTIONS(8813), + [aux_sym_print_statement_token1] = ACTIONS(8813), + [anon_sym_PLUS] = ACTIONS(8815), + [anon_sym_DASH] = ACTIONS(8813), + [anon_sym_QMARK] = ACTIONS(8815), + [aux_sym_close_statement_token1] = ACTIONS(8813), + [aux_sym_put_statement_token1] = ACTIONS(8813), + [aux_sym_unlock_statement_token1] = ACTIONS(8813), + [aux_sym_seek_statement_token1] = ACTIONS(8813), + [sym_reset_statement] = ACTIONS(8813), + [aux_sym_raise_event_statement_token1] = ACTIONS(8813), + [sym_stop_statement] = ACTIONS(8813), + [sym_beep_statement] = ACTIONS(8813), + [aux_sym_unload_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token2] = ACTIONS(8813), + [aux_sym_def_type_statement_token3] = ACTIONS(8813), + [aux_sym_def_type_statement_token4] = ACTIONS(8813), + [aux_sym_def_type_statement_token5] = ACTIONS(8813), + [aux_sym_def_type_statement_token6] = ACTIONS(8813), + [aux_sym_def_type_statement_token7] = ACTIONS(8813), + [aux_sym_def_type_statement_token8] = ACTIONS(8813), + [aux_sym_def_type_statement_token9] = ACTIONS(8813), + [aux_sym_def_type_statement_token10] = ACTIONS(8813), + [aux_sym_def_type_statement_token11] = ACTIONS(8813), + [aux_sym_def_type_statement_token12] = ACTIONS(8813), + [aux_sym_def_type_statement_token13] = ACTIONS(8813), + [aux_sym_def_type_statement_token14] = ACTIONS(8813), + [aux_sym_call_statement_token1] = ACTIONS(8813), + [sym__ambiguous_call_statement] = ACTIONS(8813), + [aux_sym_addressof_expression_token1] = ACTIONS(8813), + [aux_sym_type_of_expression_token1] = ACTIONS(8813), + [aux_sym_unary_expression_token1] = ACTIONS(8813), + [sym_string_literal] = ACTIONS(8815), + [sym_number_literal] = ACTIONS(8815), + [aux_sym_boolean_literal_token1] = ACTIONS(8813), + [aux_sym_boolean_literal_token2] = ACTIONS(8813), + [sym_nothing_literal] = ACTIONS(8813), + [sym_null_literal] = ACTIONS(8813), + [sym_empty_literal] = ACTIONS(8813), + [sym_date_literal] = ACTIONS(8815), + [anon_sym_POUND] = ACTIONS(8813), + }, + [STATE(6879)] = { + [sym_identifier] = ACTIONS(9348), + [sym_newline] = ACTIONS(9350), + [anon_sym_COLON] = ACTIONS(9350), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9348), + [aux_sym_frm_property_statement_token1] = ACTIONS(9348), + [anon_sym_DOT] = ACTIONS(9348), + [anon_sym_BANG] = ACTIONS(9350), + [aux_sym__attribute_identifier_token1] = ACTIONS(9348), + [aux_sym_option_statement_token3] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9348), + [aux_sym_preprocessor_const_token1] = ACTIONS(9348), + [sym_static_modifier] = ACTIONS(9348), + [sym__dim_keyword] = ACTIONS(9348), + [sym__redim_keyword] = ACTIONS(9348), + [aux_sym_get_accessor_token1] = ACTIONS(9348), + [aux_sym_set_accessor_token1] = ACTIONS(9348), + [aux_sym_const_declaration_token1] = ACTIONS(9348), + [anon_sym_LPAREN] = ACTIONS(9350), + [aux_sym_as_type_clause_token2] = ACTIONS(9348), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9348), + [aux_sym_visibility_token1] = ACTIONS(9348), + [aux_sym_visibility_token2] = ACTIONS(9348), + [aux_sym_elseif_fragment_token1] = ACTIONS(9348), + [aux_sym_else_fragment_token1] = ACTIONS(9348), + [aux_sym_select_statement_token1] = ACTIONS(9348), + [aux_sym__for_header_token1] = ACTIONS(9348), + [aux_sym_do_statement_token1] = ACTIONS(9348), + [aux_sym_do_condition_token1] = ACTIONS(9348), + [aux_sym_while_statement_token1] = ACTIONS(9348), + [aux_sym_with_statement_token1] = ACTIONS(9348), + [aux_sym_exit_statement_token1] = ACTIONS(9348), + [sym_end_statement] = ACTIONS(9350), + [aux_sym_on_goto_statement_token1] = ACTIONS(9348), + [aux_sym_on_goto_statement_token2] = ACTIONS(9348), + [aux_sym_on_error_statement_token2] = ACTIONS(9348), + [sym__ambiguous_redim_statement] = ACTIONS(9350), + [aux_sym_erase_statement_token1] = ACTIONS(9348), + [aux_sym_open_statement_token1] = ACTIONS(9348), + [aux_sym_file_mode_token2] = ACTIONS(9348), + [aux_sym_file_access_token2] = ACTIONS(9348), + [aux_sym_file_lock_token2] = ACTIONS(9348), + [aux_sym_print_statement_token1] = ACTIONS(9348), + [anon_sym_PLUS] = ACTIONS(9350), + [anon_sym_DASH] = ACTIONS(9348), + [anon_sym_QMARK] = ACTIONS(9350), + [aux_sym_close_statement_token1] = ACTIONS(9348), + [aux_sym_put_statement_token1] = ACTIONS(9348), + [aux_sym_unlock_statement_token1] = ACTIONS(9348), + [aux_sym_seek_statement_token1] = ACTIONS(9348), + [sym_reset_statement] = ACTIONS(9348), + [aux_sym_raise_event_statement_token1] = ACTIONS(9348), + [sym_stop_statement] = ACTIONS(9348), + [sym_beep_statement] = ACTIONS(9348), + [aux_sym_unload_statement_token1] = ACTIONS(9348), + [aux_sym_def_type_statement_token1] = ACTIONS(9348), + [aux_sym_def_type_statement_token2] = ACTIONS(9348), + [aux_sym_def_type_statement_token3] = ACTIONS(9348), + [aux_sym_def_type_statement_token4] = ACTIONS(9348), + [aux_sym_def_type_statement_token5] = ACTIONS(9348), + [aux_sym_def_type_statement_token6] = ACTIONS(9348), + [aux_sym_def_type_statement_token7] = ACTIONS(9348), + [aux_sym_def_type_statement_token8] = ACTIONS(9348), + [aux_sym_def_type_statement_token9] = ACTIONS(9348), + [aux_sym_def_type_statement_token10] = ACTIONS(9348), + [aux_sym_def_type_statement_token11] = ACTIONS(9348), + [aux_sym_def_type_statement_token12] = ACTIONS(9348), + [aux_sym_def_type_statement_token13] = ACTIONS(9348), + [aux_sym_def_type_statement_token14] = ACTIONS(9348), + [aux_sym_call_statement_token1] = ACTIONS(9348), + [sym__ambiguous_call_statement] = ACTIONS(9348), + [aux_sym_addressof_expression_token1] = ACTIONS(9348), + [aux_sym_type_of_expression_token1] = ACTIONS(9348), + [aux_sym_unary_expression_token1] = ACTIONS(9348), + [sym_string_literal] = ACTIONS(9350), + [sym_number_literal] = ACTIONS(9350), + [aux_sym_boolean_literal_token1] = ACTIONS(9348), + [aux_sym_boolean_literal_token2] = ACTIONS(9348), + [sym_nothing_literal] = ACTIONS(9348), + [sym_null_literal] = ACTIONS(9348), + [sym_empty_literal] = ACTIONS(9348), + [sym_date_literal] = ACTIONS(9350), + [anon_sym_POUND] = ACTIONS(9348), + }, + [STATE(6880)] = { + [sym_identifier] = ACTIONS(9352), + [sym_newline] = ACTIONS(9354), + [anon_sym_COLON] = ACTIONS(9354), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9352), + [aux_sym_frm_property_statement_token1] = ACTIONS(9352), + [anon_sym_DOT] = ACTIONS(9352), + [anon_sym_BANG] = ACTIONS(9354), + [aux_sym__attribute_identifier_token1] = ACTIONS(9352), + [aux_sym_option_statement_token3] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9352), + [aux_sym_preprocessor_const_token1] = ACTIONS(9352), + [sym_static_modifier] = ACTIONS(9352), + [sym__dim_keyword] = ACTIONS(9352), + [sym__redim_keyword] = ACTIONS(9352), + [aux_sym_get_accessor_token1] = ACTIONS(9352), + [aux_sym_set_accessor_token1] = ACTIONS(9352), + [aux_sym_const_declaration_token1] = ACTIONS(9352), + [anon_sym_LPAREN] = ACTIONS(9354), + [aux_sym_as_type_clause_token2] = ACTIONS(9352), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9352), + [aux_sym_visibility_token1] = ACTIONS(9352), + [aux_sym_visibility_token2] = ACTIONS(9352), + [aux_sym_elseif_fragment_token1] = ACTIONS(9352), + [aux_sym_else_fragment_token1] = ACTIONS(9352), + [aux_sym_select_statement_token1] = ACTIONS(9352), + [aux_sym__for_header_token1] = ACTIONS(9352), + [aux_sym_do_statement_token1] = ACTIONS(9352), + [aux_sym_do_condition_token1] = ACTIONS(9352), + [aux_sym_while_statement_token1] = ACTIONS(9352), + [aux_sym_with_statement_token1] = ACTIONS(9352), + [aux_sym_exit_statement_token1] = ACTIONS(9352), + [sym_end_statement] = ACTIONS(9354), + [aux_sym_on_goto_statement_token1] = ACTIONS(9352), + [aux_sym_on_goto_statement_token2] = ACTIONS(9352), + [aux_sym_on_error_statement_token2] = ACTIONS(9352), + [sym__ambiguous_redim_statement] = ACTIONS(9354), + [aux_sym_erase_statement_token1] = ACTIONS(9352), + [aux_sym_open_statement_token1] = ACTIONS(9352), + [aux_sym_file_mode_token2] = ACTIONS(9352), + [aux_sym_file_access_token2] = ACTIONS(9352), + [aux_sym_file_lock_token2] = ACTIONS(9352), + [aux_sym_print_statement_token1] = ACTIONS(9352), + [anon_sym_PLUS] = ACTIONS(9354), + [anon_sym_DASH] = ACTIONS(9352), + [anon_sym_QMARK] = ACTIONS(9354), + [aux_sym_close_statement_token1] = ACTIONS(9352), + [aux_sym_put_statement_token1] = ACTIONS(9352), + [aux_sym_unlock_statement_token1] = ACTIONS(9352), + [aux_sym_seek_statement_token1] = ACTIONS(9352), + [sym_reset_statement] = ACTIONS(9352), + [aux_sym_raise_event_statement_token1] = ACTIONS(9352), + [sym_stop_statement] = ACTIONS(9352), + [sym_beep_statement] = ACTIONS(9352), + [aux_sym_unload_statement_token1] = ACTIONS(9352), + [aux_sym_def_type_statement_token1] = ACTIONS(9352), + [aux_sym_def_type_statement_token2] = ACTIONS(9352), + [aux_sym_def_type_statement_token3] = ACTIONS(9352), + [aux_sym_def_type_statement_token4] = ACTIONS(9352), + [aux_sym_def_type_statement_token5] = ACTIONS(9352), + [aux_sym_def_type_statement_token6] = ACTIONS(9352), + [aux_sym_def_type_statement_token7] = ACTIONS(9352), + [aux_sym_def_type_statement_token8] = ACTIONS(9352), + [aux_sym_def_type_statement_token9] = ACTIONS(9352), + [aux_sym_def_type_statement_token10] = ACTIONS(9352), + [aux_sym_def_type_statement_token11] = ACTIONS(9352), + [aux_sym_def_type_statement_token12] = ACTIONS(9352), + [aux_sym_def_type_statement_token13] = ACTIONS(9352), + [aux_sym_def_type_statement_token14] = ACTIONS(9352), + [aux_sym_call_statement_token1] = ACTIONS(9352), + [sym__ambiguous_call_statement] = ACTIONS(9352), + [aux_sym_addressof_expression_token1] = ACTIONS(9352), + [aux_sym_type_of_expression_token1] = ACTIONS(9352), + [aux_sym_unary_expression_token1] = ACTIONS(9352), + [sym_string_literal] = ACTIONS(9354), + [sym_number_literal] = ACTIONS(9354), + [aux_sym_boolean_literal_token1] = ACTIONS(9352), + [aux_sym_boolean_literal_token2] = ACTIONS(9352), + [sym_nothing_literal] = ACTIONS(9352), + [sym_null_literal] = ACTIONS(9352), + [sym_empty_literal] = ACTIONS(9352), + [sym_date_literal] = ACTIONS(9354), + [anon_sym_POUND] = ACTIONS(9352), + }, + [STATE(6881)] = { + [sym_identifier] = ACTIONS(9439), + [sym_newline] = ACTIONS(9441), + [anon_sym_COLON] = ACTIONS(9441), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9439), + [aux_sym_frm_property_statement_token1] = ACTIONS(9439), + [anon_sym_DOT] = ACTIONS(9439), + [anon_sym_BANG] = ACTIONS(9441), + [aux_sym__attribute_identifier_token1] = ACTIONS(9439), + [aux_sym_option_statement_token3] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9439), + [aux_sym_preprocessor_const_token1] = ACTIONS(9439), + [sym_static_modifier] = ACTIONS(9439), + [sym__dim_keyword] = ACTIONS(9439), + [sym__redim_keyword] = ACTIONS(9439), + [aux_sym_get_accessor_token1] = ACTIONS(9439), + [aux_sym_set_accessor_token1] = ACTIONS(9439), + [aux_sym_const_declaration_token1] = ACTIONS(9439), + [anon_sym_LPAREN] = ACTIONS(9441), + [aux_sym_as_type_clause_token2] = ACTIONS(9439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9439), + [aux_sym_visibility_token1] = ACTIONS(9439), + [aux_sym_visibility_token2] = ACTIONS(9439), + [aux_sym_elseif_fragment_token1] = ACTIONS(9439), + [aux_sym_else_fragment_token1] = ACTIONS(9439), + [aux_sym_select_statement_token1] = ACTIONS(9439), + [aux_sym_select_statement_token2] = ACTIONS(9439), + [aux_sym__for_header_token1] = ACTIONS(9439), + [aux_sym_do_statement_token1] = ACTIONS(9439), + [aux_sym_do_condition_token1] = ACTIONS(9439), + [aux_sym_with_statement_token1] = ACTIONS(9439), + [aux_sym_exit_statement_token1] = ACTIONS(9439), + [sym_end_statement] = ACTIONS(9441), + [aux_sym_on_goto_statement_token1] = ACTIONS(9439), + [aux_sym_on_goto_statement_token2] = ACTIONS(9439), + [aux_sym_on_error_statement_token2] = ACTIONS(9439), + [sym__ambiguous_redim_statement] = ACTIONS(9441), + [aux_sym_erase_statement_token1] = ACTIONS(9439), + [aux_sym_open_statement_token1] = ACTIONS(9439), + [aux_sym_file_mode_token2] = ACTIONS(9439), + [aux_sym_file_access_token2] = ACTIONS(9439), + [aux_sym_file_lock_token2] = ACTIONS(9439), + [aux_sym_print_statement_token1] = ACTIONS(9439), + [anon_sym_PLUS] = ACTIONS(9441), + [anon_sym_DASH] = ACTIONS(9439), + [anon_sym_QMARK] = ACTIONS(9441), + [aux_sym_close_statement_token1] = ACTIONS(9439), + [aux_sym_put_statement_token1] = ACTIONS(9439), + [aux_sym_unlock_statement_token1] = ACTIONS(9439), + [aux_sym_seek_statement_token1] = ACTIONS(9439), + [sym_reset_statement] = ACTIONS(9439), + [aux_sym_raise_event_statement_token1] = ACTIONS(9439), + [sym_stop_statement] = ACTIONS(9439), + [sym_beep_statement] = ACTIONS(9439), + [aux_sym_unload_statement_token1] = ACTIONS(9439), + [aux_sym_def_type_statement_token1] = ACTIONS(9439), + [aux_sym_def_type_statement_token2] = ACTIONS(9439), + [aux_sym_def_type_statement_token3] = ACTIONS(9439), + [aux_sym_def_type_statement_token4] = ACTIONS(9439), + [aux_sym_def_type_statement_token5] = ACTIONS(9439), + [aux_sym_def_type_statement_token6] = ACTIONS(9439), + [aux_sym_def_type_statement_token7] = ACTIONS(9439), + [aux_sym_def_type_statement_token8] = ACTIONS(9439), + [aux_sym_def_type_statement_token9] = ACTIONS(9439), + [aux_sym_def_type_statement_token10] = ACTIONS(9439), + [aux_sym_def_type_statement_token11] = ACTIONS(9439), + [aux_sym_def_type_statement_token12] = ACTIONS(9439), + [aux_sym_def_type_statement_token13] = ACTIONS(9439), + [aux_sym_def_type_statement_token14] = ACTIONS(9439), + [aux_sym_call_statement_token1] = ACTIONS(9439), + [sym__ambiguous_call_statement] = ACTIONS(9439), + [aux_sym_addressof_expression_token1] = ACTIONS(9439), + [aux_sym_type_of_expression_token1] = ACTIONS(9439), + [aux_sym_unary_expression_token1] = ACTIONS(9439), + [sym_string_literal] = ACTIONS(9441), + [sym_number_literal] = ACTIONS(9441), + [aux_sym_boolean_literal_token1] = ACTIONS(9439), + [aux_sym_boolean_literal_token2] = ACTIONS(9439), + [sym_nothing_literal] = ACTIONS(9439), + [sym_null_literal] = ACTIONS(9439), + [sym_empty_literal] = ACTIONS(9439), + [sym_date_literal] = ACTIONS(9441), + [anon_sym_POUND] = ACTIONS(9439), + }, + [STATE(6882)] = { + [sym_identifier] = ACTIONS(11148), + [sym_newline] = ACTIONS(8819), + [anon_sym_COLON] = ACTIONS(8819), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8821), + [aux_sym_frm_property_statement_token1] = ACTIONS(8821), + [anon_sym_DOT] = ACTIONS(8821), + [anon_sym_BANG] = ACTIONS(8819), + [aux_sym__attribute_identifier_token1] = ACTIONS(8821), + [aux_sym_option_statement_token3] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8821), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8821), + [aux_sym_preprocessor_const_token1] = ACTIONS(8821), + [sym_static_modifier] = ACTIONS(8821), + [sym__dim_keyword] = ACTIONS(8821), + [sym__redim_keyword] = ACTIONS(8821), + [aux_sym_get_accessor_token1] = ACTIONS(8821), + [aux_sym_set_accessor_token1] = ACTIONS(8821), + [aux_sym_const_declaration_token1] = ACTIONS(8821), + [anon_sym_LPAREN] = ACTIONS(8819), + [aux_sym_as_type_clause_token2] = ACTIONS(8821), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8821), + [aux_sym_visibility_token1] = ACTIONS(8821), + [aux_sym_visibility_token2] = ACTIONS(8821), + [aux_sym_elseif_fragment_token1] = ACTIONS(8821), + [aux_sym_else_fragment_token1] = ACTIONS(8821), + [aux_sym_select_statement_token1] = ACTIONS(8821), + [aux_sym__multiline_for_tail_token1] = ACTIONS(11150), + [aux_sym__for_header_token1] = ACTIONS(8821), + [aux_sym_do_statement_token1] = ACTIONS(8821), + [aux_sym_do_condition_token1] = ACTIONS(8821), + [aux_sym_with_statement_token1] = ACTIONS(8821), + [aux_sym_exit_statement_token1] = ACTIONS(8821), + [sym_end_statement] = ACTIONS(8819), + [aux_sym_on_goto_statement_token1] = ACTIONS(8821), + [aux_sym_on_goto_statement_token2] = ACTIONS(8821), + [aux_sym_on_error_statement_token2] = ACTIONS(8821), + [sym__ambiguous_redim_statement] = ACTIONS(8819), + [aux_sym_erase_statement_token1] = ACTIONS(8821), + [aux_sym_open_statement_token1] = ACTIONS(8821), + [aux_sym_file_mode_token2] = ACTIONS(8821), + [aux_sym_file_access_token2] = ACTIONS(8821), + [aux_sym_file_lock_token2] = ACTIONS(8821), + [aux_sym_print_statement_token1] = ACTIONS(8821), + [anon_sym_PLUS] = ACTIONS(8819), + [anon_sym_DASH] = ACTIONS(8821), + [anon_sym_QMARK] = ACTIONS(8819), + [aux_sym_close_statement_token1] = ACTIONS(8821), + [aux_sym_put_statement_token1] = ACTIONS(8821), + [aux_sym_unlock_statement_token1] = ACTIONS(8821), + [aux_sym_seek_statement_token1] = ACTIONS(8821), + [sym_reset_statement] = ACTIONS(8821), + [aux_sym_raise_event_statement_token1] = ACTIONS(8821), + [sym_stop_statement] = ACTIONS(8821), + [sym_beep_statement] = ACTIONS(8821), + [aux_sym_unload_statement_token1] = ACTIONS(8821), + [aux_sym_def_type_statement_token1] = ACTIONS(8821), + [aux_sym_def_type_statement_token2] = ACTIONS(8821), + [aux_sym_def_type_statement_token3] = ACTIONS(8821), + [aux_sym_def_type_statement_token4] = ACTIONS(8821), + [aux_sym_def_type_statement_token5] = ACTIONS(8821), + [aux_sym_def_type_statement_token6] = ACTIONS(8821), + [aux_sym_def_type_statement_token7] = ACTIONS(8821), + [aux_sym_def_type_statement_token8] = ACTIONS(8821), + [aux_sym_def_type_statement_token9] = ACTIONS(8821), + [aux_sym_def_type_statement_token10] = ACTIONS(8821), + [aux_sym_def_type_statement_token11] = ACTIONS(8821), + [aux_sym_def_type_statement_token12] = ACTIONS(8821), + [aux_sym_def_type_statement_token13] = ACTIONS(8821), + [aux_sym_def_type_statement_token14] = ACTIONS(8821), + [aux_sym_call_statement_token1] = ACTIONS(8821), + [sym__ambiguous_call_statement] = ACTIONS(8821), + [aux_sym_addressof_expression_token1] = ACTIONS(8821), + [aux_sym_type_of_expression_token1] = ACTIONS(8821), + [aux_sym_unary_expression_token1] = ACTIONS(8821), + [sym_string_literal] = ACTIONS(8819), + [sym_number_literal] = ACTIONS(11152), + [aux_sym_boolean_literal_token1] = ACTIONS(8821), + [aux_sym_boolean_literal_token2] = ACTIONS(8821), + [sym_nothing_literal] = ACTIONS(8821), + [sym_null_literal] = ACTIONS(8821), + [sym_empty_literal] = ACTIONS(8821), + [sym_date_literal] = ACTIONS(8819), + [anon_sym_POUND] = ACTIONS(8821), + }, + [STATE(6883)] = { + [sym_identifier] = ACTIONS(9405), + [sym_newline] = ACTIONS(9407), + [anon_sym_COLON] = ACTIONS(9407), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9405), + [aux_sym_frm_property_statement_token1] = ACTIONS(9405), + [anon_sym_DOT] = ACTIONS(9405), + [anon_sym_BANG] = ACTIONS(9407), + [aux_sym__attribute_identifier_token1] = ACTIONS(9405), + [aux_sym_option_statement_token3] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9405), + [aux_sym_preprocessor_const_token1] = ACTIONS(9405), + [sym_static_modifier] = ACTIONS(9405), + [sym__dim_keyword] = ACTIONS(9405), + [sym__redim_keyword] = ACTIONS(9405), + [aux_sym_get_accessor_token1] = ACTIONS(9405), + [aux_sym_set_accessor_token1] = ACTIONS(9405), + [aux_sym_const_declaration_token1] = ACTIONS(9405), + [anon_sym_LPAREN] = ACTIONS(9407), + [aux_sym_as_type_clause_token2] = ACTIONS(9405), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9405), + [aux_sym_visibility_token1] = ACTIONS(9405), + [aux_sym_visibility_token2] = ACTIONS(9405), + [aux_sym_elseif_fragment_token1] = ACTIONS(9405), + [aux_sym_else_fragment_token1] = ACTIONS(9405), + [aux_sym_select_statement_token1] = ACTIONS(9405), + [aux_sym__for_header_token1] = ACTIONS(9405), + [aux_sym_do_statement_token1] = ACTIONS(9405), + [aux_sym_do_condition_token1] = ACTIONS(9405), + [aux_sym_with_statement_token1] = ACTIONS(9405), + [aux_sym_exit_statement_token1] = ACTIONS(9405), + [sym_end_statement] = ACTIONS(9407), + [aux_sym_on_goto_statement_token1] = ACTIONS(9405), + [aux_sym_on_goto_statement_token2] = ACTIONS(9405), + [aux_sym_on_error_statement_token2] = ACTIONS(9405), + [sym__ambiguous_redim_statement] = ACTIONS(9407), + [aux_sym_erase_statement_token1] = ACTIONS(9405), + [aux_sym_open_statement_token1] = ACTIONS(9405), + [aux_sym_file_mode_token2] = ACTIONS(9405), + [aux_sym_file_access_token2] = ACTIONS(9405), + [aux_sym_file_lock_token2] = ACTIONS(9405), + [aux_sym_print_statement_token1] = ACTIONS(9405), + [anon_sym_PLUS] = ACTIONS(9407), + [anon_sym_DASH] = ACTIONS(9405), + [anon_sym_QMARK] = ACTIONS(9407), + [aux_sym_close_statement_token1] = ACTIONS(9405), + [aux_sym_put_statement_token1] = ACTIONS(9405), + [aux_sym_unlock_statement_token1] = ACTIONS(9405), + [aux_sym_seek_statement_token1] = ACTIONS(9405), + [sym_reset_statement] = ACTIONS(9405), + [aux_sym_raise_event_statement_token1] = ACTIONS(9405), + [sym_stop_statement] = ACTIONS(9405), + [sym_beep_statement] = ACTIONS(9405), + [aux_sym_unload_statement_token1] = ACTIONS(9405), + [aux_sym_def_type_statement_token1] = ACTIONS(9405), + [aux_sym_def_type_statement_token2] = ACTIONS(9405), + [aux_sym_def_type_statement_token3] = ACTIONS(9405), + [aux_sym_def_type_statement_token4] = ACTIONS(9405), + [aux_sym_def_type_statement_token5] = ACTIONS(9405), + [aux_sym_def_type_statement_token6] = ACTIONS(9405), + [aux_sym_def_type_statement_token7] = ACTIONS(9405), + [aux_sym_def_type_statement_token8] = ACTIONS(9405), + [aux_sym_def_type_statement_token9] = ACTIONS(9405), + [aux_sym_def_type_statement_token10] = ACTIONS(9405), + [aux_sym_def_type_statement_token11] = ACTIONS(9405), + [aux_sym_def_type_statement_token12] = ACTIONS(9405), + [aux_sym_def_type_statement_token13] = ACTIONS(9405), + [aux_sym_def_type_statement_token14] = ACTIONS(9405), + [aux_sym_call_statement_token1] = ACTIONS(9405), + [sym__ambiguous_call_statement] = ACTIONS(9405), + [aux_sym_addressof_expression_token1] = ACTIONS(9405), + [aux_sym_type_of_expression_token1] = ACTIONS(9405), + [aux_sym_unary_expression_token1] = ACTIONS(9405), + [sym_string_literal] = ACTIONS(9407), + [sym_number_literal] = ACTIONS(9407), + [aux_sym_boolean_literal_token1] = ACTIONS(9405), + [aux_sym_boolean_literal_token2] = ACTIONS(9405), + [sym_nothing_literal] = ACTIONS(9405), + [sym_null_literal] = ACTIONS(9405), + [sym_empty_literal] = ACTIONS(9405), + [sym_date_literal] = ACTIONS(9407), + [anon_sym_POUND] = ACTIONS(9405), + }, + [STATE(6884)] = { + [sym_identifier] = ACTIONS(9409), + [sym_newline] = ACTIONS(9411), + [anon_sym_COLON] = ACTIONS(9411), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9409), + [aux_sym_frm_property_statement_token1] = ACTIONS(9409), + [anon_sym_DOT] = ACTIONS(9409), + [anon_sym_BANG] = ACTIONS(9411), + [aux_sym__attribute_identifier_token1] = ACTIONS(9409), + [aux_sym_option_statement_token3] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9409), + [aux_sym_preprocessor_const_token1] = ACTIONS(9409), + [sym_static_modifier] = ACTIONS(9409), + [sym__dim_keyword] = ACTIONS(9409), + [sym__redim_keyword] = ACTIONS(9409), + [aux_sym_get_accessor_token1] = ACTIONS(9409), + [aux_sym_set_accessor_token1] = ACTIONS(9409), + [aux_sym_const_declaration_token1] = ACTIONS(9409), + [anon_sym_LPAREN] = ACTIONS(9411), + [aux_sym_as_type_clause_token2] = ACTIONS(9409), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9409), + [aux_sym_visibility_token1] = ACTIONS(9409), + [aux_sym_visibility_token2] = ACTIONS(9409), + [aux_sym_elseif_fragment_token1] = ACTIONS(9409), + [aux_sym_else_fragment_token1] = ACTIONS(9409), + [aux_sym_select_statement_token1] = ACTIONS(9409), + [aux_sym__for_header_token1] = ACTIONS(9409), + [aux_sym_do_statement_token1] = ACTIONS(9409), + [aux_sym_do_condition_token1] = ACTIONS(9409), + [aux_sym_with_statement_token1] = ACTIONS(9409), + [aux_sym_exit_statement_token1] = ACTIONS(9409), + [sym_end_statement] = ACTIONS(9411), + [aux_sym_on_goto_statement_token1] = ACTIONS(9409), + [aux_sym_on_goto_statement_token2] = ACTIONS(9409), + [aux_sym_on_error_statement_token2] = ACTIONS(9409), + [sym__ambiguous_redim_statement] = ACTIONS(9411), + [aux_sym_erase_statement_token1] = ACTIONS(9409), + [aux_sym_open_statement_token1] = ACTIONS(9409), + [aux_sym_file_mode_token2] = ACTIONS(9409), + [aux_sym_file_access_token2] = ACTIONS(9409), + [aux_sym_file_lock_token2] = ACTIONS(9409), + [aux_sym_print_statement_token1] = ACTIONS(9409), + [anon_sym_PLUS] = ACTIONS(9411), + [anon_sym_DASH] = ACTIONS(9409), + [anon_sym_QMARK] = ACTIONS(9411), + [aux_sym_close_statement_token1] = ACTIONS(9409), + [aux_sym_put_statement_token1] = ACTIONS(9409), + [aux_sym_unlock_statement_token1] = ACTIONS(9409), + [aux_sym_seek_statement_token1] = ACTIONS(9409), + [sym_reset_statement] = ACTIONS(9409), + [aux_sym_raise_event_statement_token1] = ACTIONS(9409), + [sym_stop_statement] = ACTIONS(9409), + [sym_beep_statement] = ACTIONS(9409), + [aux_sym_unload_statement_token1] = ACTIONS(9409), + [aux_sym_def_type_statement_token1] = ACTIONS(9409), + [aux_sym_def_type_statement_token2] = ACTIONS(9409), + [aux_sym_def_type_statement_token3] = ACTIONS(9409), + [aux_sym_def_type_statement_token4] = ACTIONS(9409), + [aux_sym_def_type_statement_token5] = ACTIONS(9409), + [aux_sym_def_type_statement_token6] = ACTIONS(9409), + [aux_sym_def_type_statement_token7] = ACTIONS(9409), + [aux_sym_def_type_statement_token8] = ACTIONS(9409), + [aux_sym_def_type_statement_token9] = ACTIONS(9409), + [aux_sym_def_type_statement_token10] = ACTIONS(9409), + [aux_sym_def_type_statement_token11] = ACTIONS(9409), + [aux_sym_def_type_statement_token12] = ACTIONS(9409), + [aux_sym_def_type_statement_token13] = ACTIONS(9409), + [aux_sym_def_type_statement_token14] = ACTIONS(9409), + [aux_sym_call_statement_token1] = ACTIONS(9409), + [sym__ambiguous_call_statement] = ACTIONS(9409), + [aux_sym_addressof_expression_token1] = ACTIONS(9409), + [aux_sym_type_of_expression_token1] = ACTIONS(9409), + [aux_sym_unary_expression_token1] = ACTIONS(9409), + [sym_string_literal] = ACTIONS(9411), + [sym_number_literal] = ACTIONS(9411), + [aux_sym_boolean_literal_token1] = ACTIONS(9409), + [aux_sym_boolean_literal_token2] = ACTIONS(9409), + [sym_nothing_literal] = ACTIONS(9409), + [sym_null_literal] = ACTIONS(9409), + [sym_empty_literal] = ACTIONS(9409), + [sym_date_literal] = ACTIONS(9411), + [anon_sym_POUND] = ACTIONS(9409), + }, + [STATE(6885)] = { + [sym_identifier] = ACTIONS(9356), + [sym_newline] = ACTIONS(9358), + [anon_sym_COLON] = ACTIONS(9358), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9356), + [aux_sym_frm_property_statement_token1] = ACTIONS(9356), + [anon_sym_DOT] = ACTIONS(9356), + [anon_sym_BANG] = ACTIONS(9358), + [aux_sym__attribute_identifier_token1] = ACTIONS(9356), + [aux_sym_option_statement_token3] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9356), + [aux_sym_preprocessor_const_token1] = ACTIONS(9356), + [sym_static_modifier] = ACTIONS(9356), + [sym__dim_keyword] = ACTIONS(9356), + [sym__redim_keyword] = ACTIONS(9356), + [aux_sym_get_accessor_token1] = ACTIONS(9356), + [aux_sym_set_accessor_token1] = ACTIONS(9356), + [aux_sym_const_declaration_token1] = ACTIONS(9356), + [anon_sym_LPAREN] = ACTIONS(9358), + [aux_sym_as_type_clause_token2] = ACTIONS(9356), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9356), + [aux_sym_visibility_token1] = ACTIONS(9356), + [aux_sym_visibility_token2] = ACTIONS(9356), + [aux_sym_elseif_fragment_token1] = ACTIONS(9356), + [aux_sym_else_fragment_token1] = ACTIONS(9356), + [aux_sym_select_statement_token1] = ACTIONS(9356), + [aux_sym__for_header_token1] = ACTIONS(9356), + [aux_sym_do_statement_token1] = ACTIONS(9356), + [aux_sym_do_condition_token1] = ACTIONS(9356), + [aux_sym_while_statement_token1] = ACTIONS(9356), + [aux_sym_with_statement_token1] = ACTIONS(9356), + [aux_sym_exit_statement_token1] = ACTIONS(9356), + [sym_end_statement] = ACTIONS(9358), + [aux_sym_on_goto_statement_token1] = ACTIONS(9356), + [aux_sym_on_goto_statement_token2] = ACTIONS(9356), + [aux_sym_on_error_statement_token2] = ACTIONS(9356), + [sym__ambiguous_redim_statement] = ACTIONS(9358), + [aux_sym_erase_statement_token1] = ACTIONS(9356), + [aux_sym_open_statement_token1] = ACTIONS(9356), + [aux_sym_file_mode_token2] = ACTIONS(9356), + [aux_sym_file_access_token2] = ACTIONS(9356), + [aux_sym_file_lock_token2] = ACTIONS(9356), + [aux_sym_print_statement_token1] = ACTIONS(9356), + [anon_sym_PLUS] = ACTIONS(9358), + [anon_sym_DASH] = ACTIONS(9356), + [anon_sym_QMARK] = ACTIONS(9358), + [aux_sym_close_statement_token1] = ACTIONS(9356), + [aux_sym_put_statement_token1] = ACTIONS(9356), + [aux_sym_unlock_statement_token1] = ACTIONS(9356), + [aux_sym_seek_statement_token1] = ACTIONS(9356), + [sym_reset_statement] = ACTIONS(9356), + [aux_sym_raise_event_statement_token1] = ACTIONS(9356), + [sym_stop_statement] = ACTIONS(9356), + [sym_beep_statement] = ACTIONS(9356), + [aux_sym_unload_statement_token1] = ACTIONS(9356), + [aux_sym_def_type_statement_token1] = ACTIONS(9356), + [aux_sym_def_type_statement_token2] = ACTIONS(9356), + [aux_sym_def_type_statement_token3] = ACTIONS(9356), + [aux_sym_def_type_statement_token4] = ACTIONS(9356), + [aux_sym_def_type_statement_token5] = ACTIONS(9356), + [aux_sym_def_type_statement_token6] = ACTIONS(9356), + [aux_sym_def_type_statement_token7] = ACTIONS(9356), + [aux_sym_def_type_statement_token8] = ACTIONS(9356), + [aux_sym_def_type_statement_token9] = ACTIONS(9356), + [aux_sym_def_type_statement_token10] = ACTIONS(9356), + [aux_sym_def_type_statement_token11] = ACTIONS(9356), + [aux_sym_def_type_statement_token12] = ACTIONS(9356), + [aux_sym_def_type_statement_token13] = ACTIONS(9356), + [aux_sym_def_type_statement_token14] = ACTIONS(9356), + [aux_sym_call_statement_token1] = ACTIONS(9356), + [sym__ambiguous_call_statement] = ACTIONS(9356), + [aux_sym_addressof_expression_token1] = ACTIONS(9356), + [aux_sym_type_of_expression_token1] = ACTIONS(9356), + [aux_sym_unary_expression_token1] = ACTIONS(9356), + [sym_string_literal] = ACTIONS(9358), + [sym_number_literal] = ACTIONS(9358), + [aux_sym_boolean_literal_token1] = ACTIONS(9356), + [aux_sym_boolean_literal_token2] = ACTIONS(9356), + [sym_nothing_literal] = ACTIONS(9356), + [sym_null_literal] = ACTIONS(9356), + [sym_empty_literal] = ACTIONS(9356), + [sym_date_literal] = ACTIONS(9358), + [anon_sym_POUND] = ACTIONS(9356), + }, + [STATE(6886)] = { + [sym_identifier] = ACTIONS(9360), + [sym_newline] = ACTIONS(9362), + [anon_sym_COLON] = ACTIONS(9362), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9360), + [aux_sym_frm_property_statement_token1] = ACTIONS(9360), + [anon_sym_DOT] = ACTIONS(9360), + [anon_sym_BANG] = ACTIONS(9362), + [aux_sym__attribute_identifier_token1] = ACTIONS(9360), + [aux_sym_option_statement_token3] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9360), + [aux_sym_preprocessor_const_token1] = ACTIONS(9360), + [sym_static_modifier] = ACTIONS(9360), + [sym__dim_keyword] = ACTIONS(9360), + [sym__redim_keyword] = ACTIONS(9360), + [aux_sym_get_accessor_token1] = ACTIONS(9360), + [aux_sym_set_accessor_token1] = ACTIONS(9360), + [aux_sym_const_declaration_token1] = ACTIONS(9360), + [anon_sym_LPAREN] = ACTIONS(9362), + [aux_sym_as_type_clause_token2] = ACTIONS(9360), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9360), + [aux_sym_visibility_token1] = ACTIONS(9360), + [aux_sym_visibility_token2] = ACTIONS(9360), + [aux_sym_elseif_fragment_token1] = ACTIONS(9360), + [aux_sym_else_fragment_token1] = ACTIONS(9360), + [aux_sym_select_statement_token1] = ACTIONS(9360), + [aux_sym__for_header_token1] = ACTIONS(9360), + [aux_sym_do_statement_token1] = ACTIONS(9360), + [aux_sym_do_condition_token1] = ACTIONS(9360), + [aux_sym_while_statement_token1] = ACTIONS(9360), + [aux_sym_with_statement_token1] = ACTIONS(9360), + [aux_sym_exit_statement_token1] = ACTIONS(9360), + [sym_end_statement] = ACTIONS(9362), + [aux_sym_on_goto_statement_token1] = ACTIONS(9360), + [aux_sym_on_goto_statement_token2] = ACTIONS(9360), + [aux_sym_on_error_statement_token2] = ACTIONS(9360), + [sym__ambiguous_redim_statement] = ACTIONS(9362), + [aux_sym_erase_statement_token1] = ACTIONS(9360), + [aux_sym_open_statement_token1] = ACTIONS(9360), + [aux_sym_file_mode_token2] = ACTIONS(9360), + [aux_sym_file_access_token2] = ACTIONS(9360), + [aux_sym_file_lock_token2] = ACTIONS(9360), + [aux_sym_print_statement_token1] = ACTIONS(9360), + [anon_sym_PLUS] = ACTIONS(9362), + [anon_sym_DASH] = ACTIONS(9360), + [anon_sym_QMARK] = ACTIONS(9362), + [aux_sym_close_statement_token1] = ACTIONS(9360), + [aux_sym_put_statement_token1] = ACTIONS(9360), + [aux_sym_unlock_statement_token1] = ACTIONS(9360), + [aux_sym_seek_statement_token1] = ACTIONS(9360), + [sym_reset_statement] = ACTIONS(9360), + [aux_sym_raise_event_statement_token1] = ACTIONS(9360), + [sym_stop_statement] = ACTIONS(9360), + [sym_beep_statement] = ACTIONS(9360), + [aux_sym_unload_statement_token1] = ACTIONS(9360), + [aux_sym_def_type_statement_token1] = ACTIONS(9360), + [aux_sym_def_type_statement_token2] = ACTIONS(9360), + [aux_sym_def_type_statement_token3] = ACTIONS(9360), + [aux_sym_def_type_statement_token4] = ACTIONS(9360), + [aux_sym_def_type_statement_token5] = ACTIONS(9360), + [aux_sym_def_type_statement_token6] = ACTIONS(9360), + [aux_sym_def_type_statement_token7] = ACTIONS(9360), + [aux_sym_def_type_statement_token8] = ACTIONS(9360), + [aux_sym_def_type_statement_token9] = ACTIONS(9360), + [aux_sym_def_type_statement_token10] = ACTIONS(9360), + [aux_sym_def_type_statement_token11] = ACTIONS(9360), + [aux_sym_def_type_statement_token12] = ACTIONS(9360), + [aux_sym_def_type_statement_token13] = ACTIONS(9360), + [aux_sym_def_type_statement_token14] = ACTIONS(9360), + [aux_sym_call_statement_token1] = ACTIONS(9360), + [sym__ambiguous_call_statement] = ACTIONS(9360), + [aux_sym_addressof_expression_token1] = ACTIONS(9360), + [aux_sym_type_of_expression_token1] = ACTIONS(9360), + [aux_sym_unary_expression_token1] = ACTIONS(9360), + [sym_string_literal] = ACTIONS(9362), + [sym_number_literal] = ACTIONS(9362), + [aux_sym_boolean_literal_token1] = ACTIONS(9360), + [aux_sym_boolean_literal_token2] = ACTIONS(9360), + [sym_nothing_literal] = ACTIONS(9360), + [sym_null_literal] = ACTIONS(9360), + [sym_empty_literal] = ACTIONS(9360), + [sym_date_literal] = ACTIONS(9362), + [anon_sym_POUND] = ACTIONS(9360), + }, + [STATE(6887)] = { + [sym_identifier] = ACTIONS(8533), + [sym_newline] = ACTIONS(8535), + [anon_sym_COLON] = ACTIONS(8535), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8533), + [aux_sym_frm_property_statement_token1] = ACTIONS(8533), + [anon_sym_DOT] = ACTIONS(8533), + [anon_sym_BANG] = ACTIONS(8535), + [aux_sym__attribute_identifier_token1] = ACTIONS(8533), + [aux_sym_option_statement_token3] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8533), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8533), + [aux_sym_preprocessor_const_token1] = ACTIONS(8533), + [sym_static_modifier] = ACTIONS(8533), + [sym__dim_keyword] = ACTIONS(8533), + [sym__redim_keyword] = ACTIONS(8533), + [aux_sym_get_accessor_token1] = ACTIONS(8533), + [aux_sym_set_accessor_token1] = ACTIONS(8533), + [anon_sym_COMMA] = ACTIONS(8535), + [aux_sym_const_declaration_token1] = ACTIONS(8533), + [anon_sym_LPAREN] = ACTIONS(8535), + [aux_sym_as_type_clause_token2] = ACTIONS(8533), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8533), + [aux_sym_visibility_token1] = ACTIONS(8533), + [aux_sym_visibility_token2] = ACTIONS(8533), + [aux_sym_elseif_fragment_token1] = ACTIONS(8533), + [aux_sym_else_fragment_token1] = ACTIONS(8533), + [aux_sym_select_statement_token1] = ACTIONS(8533), + [aux_sym__for_header_token1] = ACTIONS(8533), + [aux_sym_do_statement_token1] = ACTIONS(8533), + [aux_sym_do_condition_token1] = ACTIONS(8533), + [aux_sym_with_statement_token1] = ACTIONS(8533), + [aux_sym_exit_statement_token1] = ACTIONS(8533), + [sym_end_statement] = ACTIONS(8535), + [aux_sym_on_goto_statement_token1] = ACTIONS(8533), + [aux_sym_on_goto_statement_token2] = ACTIONS(8533), + [aux_sym_on_error_statement_token2] = ACTIONS(8533), + [sym__ambiguous_redim_statement] = ACTIONS(8535), + [aux_sym_erase_statement_token1] = ACTIONS(8533), + [aux_sym_open_statement_token1] = ACTIONS(8533), + [aux_sym_file_mode_token2] = ACTIONS(8533), + [aux_sym_file_access_token2] = ACTIONS(8533), + [aux_sym_file_lock_token2] = ACTIONS(8533), + [aux_sym_print_statement_token1] = ACTIONS(8533), + [anon_sym_PLUS] = ACTIONS(8535), + [anon_sym_DASH] = ACTIONS(8533), + [anon_sym_QMARK] = ACTIONS(8535), + [aux_sym_close_statement_token1] = ACTIONS(8533), + [aux_sym_put_statement_token1] = ACTIONS(8533), + [aux_sym_unlock_statement_token1] = ACTIONS(8533), + [aux_sym_seek_statement_token1] = ACTIONS(8533), + [sym_reset_statement] = ACTIONS(8533), + [aux_sym_raise_event_statement_token1] = ACTIONS(8533), + [sym_stop_statement] = ACTIONS(8533), + [sym_beep_statement] = ACTIONS(8533), + [aux_sym_unload_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token1] = ACTIONS(8533), + [aux_sym_def_type_statement_token2] = ACTIONS(8533), + [aux_sym_def_type_statement_token3] = ACTIONS(8533), + [aux_sym_def_type_statement_token4] = ACTIONS(8533), + [aux_sym_def_type_statement_token5] = ACTIONS(8533), + [aux_sym_def_type_statement_token6] = ACTIONS(8533), + [aux_sym_def_type_statement_token7] = ACTIONS(8533), + [aux_sym_def_type_statement_token8] = ACTIONS(8533), + [aux_sym_def_type_statement_token9] = ACTIONS(8533), + [aux_sym_def_type_statement_token10] = ACTIONS(8533), + [aux_sym_def_type_statement_token11] = ACTIONS(8533), + [aux_sym_def_type_statement_token12] = ACTIONS(8533), + [aux_sym_def_type_statement_token13] = ACTIONS(8533), + [aux_sym_def_type_statement_token14] = ACTIONS(8533), + [aux_sym_call_statement_token1] = ACTIONS(8533), + [sym__ambiguous_call_statement] = ACTIONS(8533), + [aux_sym_addressof_expression_token1] = ACTIONS(8533), + [aux_sym_type_of_expression_token1] = ACTIONS(8533), + [aux_sym_unary_expression_token1] = ACTIONS(8533), + [sym_string_literal] = ACTIONS(8535), + [sym_number_literal] = ACTIONS(8535), + [aux_sym_boolean_literal_token1] = ACTIONS(8533), + [aux_sym_boolean_literal_token2] = ACTIONS(8533), + [sym_nothing_literal] = ACTIONS(8533), + [sym_null_literal] = ACTIONS(8533), + [sym_empty_literal] = ACTIONS(8533), + [sym_date_literal] = ACTIONS(8535), + [anon_sym_POUND] = ACTIONS(8533), + }, + [STATE(6888)] = { + [sym_identifier] = ACTIONS(9500), + [sym_newline] = ACTIONS(9502), + [anon_sym_COLON] = ACTIONS(9502), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9500), + [aux_sym_frm_property_statement_token1] = ACTIONS(9500), + [anon_sym_DOT] = ACTIONS(9500), + [anon_sym_BANG] = ACTIONS(9502), + [aux_sym__attribute_identifier_token1] = ACTIONS(9500), + [aux_sym_option_statement_token3] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9500), + [aux_sym_preprocessor_const_token1] = ACTIONS(9500), + [sym_static_modifier] = ACTIONS(9500), + [sym__dim_keyword] = ACTIONS(9500), + [sym__redim_keyword] = ACTIONS(9500), + [aux_sym_get_accessor_token1] = ACTIONS(9500), + [aux_sym_set_accessor_token1] = ACTIONS(9500), + [aux_sym_const_declaration_token1] = ACTIONS(9500), + [anon_sym_LPAREN] = ACTIONS(9502), + [aux_sym_as_type_clause_token2] = ACTIONS(9500), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9500), + [aux_sym_visibility_token1] = ACTIONS(9500), + [aux_sym_visibility_token2] = ACTIONS(9500), + [aux_sym_elseif_fragment_token1] = ACTIONS(9500), + [aux_sym_else_fragment_token1] = ACTIONS(9500), + [aux_sym_select_statement_token1] = ACTIONS(9500), + [aux_sym_select_statement_token2] = ACTIONS(9500), + [aux_sym__for_header_token1] = ACTIONS(9500), + [aux_sym_do_statement_token1] = ACTIONS(9500), + [aux_sym_do_condition_token1] = ACTIONS(9500), + [aux_sym_with_statement_token1] = ACTIONS(9500), + [aux_sym_exit_statement_token1] = ACTIONS(9500), + [sym_end_statement] = ACTIONS(9502), + [aux_sym_on_goto_statement_token1] = ACTIONS(9500), + [aux_sym_on_goto_statement_token2] = ACTIONS(9500), + [aux_sym_on_error_statement_token2] = ACTIONS(9500), + [sym__ambiguous_redim_statement] = ACTIONS(9502), + [aux_sym_erase_statement_token1] = ACTIONS(9500), + [aux_sym_open_statement_token1] = ACTIONS(9500), + [aux_sym_file_mode_token2] = ACTIONS(9500), + [aux_sym_file_access_token2] = ACTIONS(9500), + [aux_sym_file_lock_token2] = ACTIONS(9500), + [aux_sym_print_statement_token1] = ACTIONS(9500), + [anon_sym_PLUS] = ACTIONS(9502), + [anon_sym_DASH] = ACTIONS(9500), + [anon_sym_QMARK] = ACTIONS(9502), + [aux_sym_close_statement_token1] = ACTIONS(9500), + [aux_sym_put_statement_token1] = ACTIONS(9500), + [aux_sym_unlock_statement_token1] = ACTIONS(9500), + [aux_sym_seek_statement_token1] = ACTIONS(9500), + [sym_reset_statement] = ACTIONS(9500), + [aux_sym_raise_event_statement_token1] = ACTIONS(9500), + [sym_stop_statement] = ACTIONS(9500), + [sym_beep_statement] = ACTIONS(9500), + [aux_sym_unload_statement_token1] = ACTIONS(9500), + [aux_sym_def_type_statement_token1] = ACTIONS(9500), + [aux_sym_def_type_statement_token2] = ACTIONS(9500), + [aux_sym_def_type_statement_token3] = ACTIONS(9500), + [aux_sym_def_type_statement_token4] = ACTIONS(9500), + [aux_sym_def_type_statement_token5] = ACTIONS(9500), + [aux_sym_def_type_statement_token6] = ACTIONS(9500), + [aux_sym_def_type_statement_token7] = ACTIONS(9500), + [aux_sym_def_type_statement_token8] = ACTIONS(9500), + [aux_sym_def_type_statement_token9] = ACTIONS(9500), + [aux_sym_def_type_statement_token10] = ACTIONS(9500), + [aux_sym_def_type_statement_token11] = ACTIONS(9500), + [aux_sym_def_type_statement_token12] = ACTIONS(9500), + [aux_sym_def_type_statement_token13] = ACTIONS(9500), + [aux_sym_def_type_statement_token14] = ACTIONS(9500), + [aux_sym_call_statement_token1] = ACTIONS(9500), + [sym__ambiguous_call_statement] = ACTIONS(9500), + [aux_sym_addressof_expression_token1] = ACTIONS(9500), + [aux_sym_type_of_expression_token1] = ACTIONS(9500), + [aux_sym_unary_expression_token1] = ACTIONS(9500), + [sym_string_literal] = ACTIONS(9502), + [sym_number_literal] = ACTIONS(9502), + [aux_sym_boolean_literal_token1] = ACTIONS(9500), + [aux_sym_boolean_literal_token2] = ACTIONS(9500), + [sym_nothing_literal] = ACTIONS(9500), + [sym_null_literal] = ACTIONS(9500), + [sym_empty_literal] = ACTIONS(9500), + [sym_date_literal] = ACTIONS(9502), + [anon_sym_POUND] = ACTIONS(9500), + }, + [STATE(6889)] = { + [sym_identifier] = ACTIONS(9364), + [sym_newline] = ACTIONS(9366), + [anon_sym_COLON] = ACTIONS(9366), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9364), + [aux_sym_frm_property_statement_token1] = ACTIONS(9364), + [anon_sym_DOT] = ACTIONS(9364), + [anon_sym_BANG] = ACTIONS(9366), + [aux_sym__attribute_identifier_token1] = ACTIONS(9364), + [aux_sym_option_statement_token3] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9364), + [aux_sym_preprocessor_const_token1] = ACTIONS(9364), + [sym_static_modifier] = ACTIONS(9364), + [sym__dim_keyword] = ACTIONS(9364), + [sym__redim_keyword] = ACTIONS(9364), + [aux_sym_get_accessor_token1] = ACTIONS(9364), + [aux_sym_set_accessor_token1] = ACTIONS(9364), + [aux_sym_const_declaration_token1] = ACTIONS(9364), + [anon_sym_LPAREN] = ACTIONS(9366), + [aux_sym_as_type_clause_token2] = ACTIONS(9364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9364), + [aux_sym_visibility_token1] = ACTIONS(9364), + [aux_sym_visibility_token2] = ACTIONS(9364), + [aux_sym_elseif_fragment_token1] = ACTIONS(9364), + [aux_sym_else_fragment_token1] = ACTIONS(9364), + [aux_sym_select_statement_token1] = ACTIONS(9364), + [aux_sym__for_header_token1] = ACTIONS(9364), + [aux_sym_do_statement_token1] = ACTIONS(9364), + [aux_sym_do_condition_token1] = ACTIONS(9364), + [aux_sym_while_statement_token1] = ACTIONS(9364), + [aux_sym_with_statement_token1] = ACTIONS(9364), + [aux_sym_exit_statement_token1] = ACTIONS(9364), + [sym_end_statement] = ACTIONS(9366), + [aux_sym_on_goto_statement_token1] = ACTIONS(9364), + [aux_sym_on_goto_statement_token2] = ACTIONS(9364), + [aux_sym_on_error_statement_token2] = ACTIONS(9364), + [sym__ambiguous_redim_statement] = ACTIONS(9366), + [aux_sym_erase_statement_token1] = ACTIONS(9364), + [aux_sym_open_statement_token1] = ACTIONS(9364), + [aux_sym_file_mode_token2] = ACTIONS(9364), + [aux_sym_file_access_token2] = ACTIONS(9364), + [aux_sym_file_lock_token2] = ACTIONS(9364), + [aux_sym_print_statement_token1] = ACTIONS(9364), + [anon_sym_PLUS] = ACTIONS(9366), + [anon_sym_DASH] = ACTIONS(9364), + [anon_sym_QMARK] = ACTIONS(9366), + [aux_sym_close_statement_token1] = ACTIONS(9364), + [aux_sym_put_statement_token1] = ACTIONS(9364), + [aux_sym_unlock_statement_token1] = ACTIONS(9364), + [aux_sym_seek_statement_token1] = ACTIONS(9364), + [sym_reset_statement] = ACTIONS(9364), + [aux_sym_raise_event_statement_token1] = ACTIONS(9364), + [sym_stop_statement] = ACTIONS(9364), + [sym_beep_statement] = ACTIONS(9364), + [aux_sym_unload_statement_token1] = ACTIONS(9364), + [aux_sym_def_type_statement_token1] = ACTIONS(9364), + [aux_sym_def_type_statement_token2] = ACTIONS(9364), + [aux_sym_def_type_statement_token3] = ACTIONS(9364), + [aux_sym_def_type_statement_token4] = ACTIONS(9364), + [aux_sym_def_type_statement_token5] = ACTIONS(9364), + [aux_sym_def_type_statement_token6] = ACTIONS(9364), + [aux_sym_def_type_statement_token7] = ACTIONS(9364), + [aux_sym_def_type_statement_token8] = ACTIONS(9364), + [aux_sym_def_type_statement_token9] = ACTIONS(9364), + [aux_sym_def_type_statement_token10] = ACTIONS(9364), + [aux_sym_def_type_statement_token11] = ACTIONS(9364), + [aux_sym_def_type_statement_token12] = ACTIONS(9364), + [aux_sym_def_type_statement_token13] = ACTIONS(9364), + [aux_sym_def_type_statement_token14] = ACTIONS(9364), + [aux_sym_call_statement_token1] = ACTIONS(9364), + [sym__ambiguous_call_statement] = ACTIONS(9364), + [aux_sym_addressof_expression_token1] = ACTIONS(9364), + [aux_sym_type_of_expression_token1] = ACTIONS(9364), + [aux_sym_unary_expression_token1] = ACTIONS(9364), + [sym_string_literal] = ACTIONS(9366), + [sym_number_literal] = ACTIONS(9366), + [aux_sym_boolean_literal_token1] = ACTIONS(9364), + [aux_sym_boolean_literal_token2] = ACTIONS(9364), + [sym_nothing_literal] = ACTIONS(9364), + [sym_null_literal] = ACTIONS(9364), + [sym_empty_literal] = ACTIONS(9364), + [sym_date_literal] = ACTIONS(9366), + [anon_sym_POUND] = ACTIONS(9364), + }, + [STATE(6890)] = { + [sym_identifier] = ACTIONS(8109), + [sym_newline] = ACTIONS(8111), + [anon_sym_COLON] = ACTIONS(8111), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8109), + [aux_sym_frm_property_statement_token1] = ACTIONS(8109), + [anon_sym_DOT] = ACTIONS(8109), + [anon_sym_BANG] = ACTIONS(8111), + [aux_sym__attribute_identifier_token1] = ACTIONS(8109), + [aux_sym_option_statement_token3] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8109), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8109), + [aux_sym_preprocessor_const_token1] = ACTIONS(8109), + [sym_static_modifier] = ACTIONS(8109), + [sym__dim_keyword] = ACTIONS(8109), + [sym__redim_keyword] = ACTIONS(8109), + [aux_sym_get_accessor_token1] = ACTIONS(8109), + [aux_sym_set_accessor_token1] = ACTIONS(8109), + [aux_sym_const_declaration_token1] = ACTIONS(8109), + [anon_sym_LPAREN] = ACTIONS(8111), + [aux_sym_as_type_clause_token2] = ACTIONS(8109), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8109), + [aux_sym_visibility_token1] = ACTIONS(8109), + [aux_sym_visibility_token2] = ACTIONS(8109), + [aux_sym_elseif_fragment_token1] = ACTIONS(8109), + [aux_sym_else_fragment_token1] = ACTIONS(8109), + [aux_sym_select_statement_token1] = ACTIONS(8109), + [aux_sym__for_header_token1] = ACTIONS(8109), + [aux_sym_do_statement_token1] = ACTIONS(8109), + [aux_sym_do_condition_token1] = ACTIONS(8109), + [aux_sym_with_statement_token1] = ACTIONS(8109), + [aux_sym_exit_statement_token1] = ACTIONS(8109), + [sym_end_statement] = ACTIONS(8111), + [aux_sym_on_goto_statement_token1] = ACTIONS(8109), + [aux_sym_on_goto_statement_token2] = ACTIONS(8109), + [aux_sym_on_error_statement_token2] = ACTIONS(8109), + [sym__ambiguous_redim_statement] = ACTIONS(8111), + [aux_sym_erase_statement_token1] = ACTIONS(8109), + [aux_sym_open_statement_token1] = ACTIONS(8109), + [aux_sym_file_mode_token2] = ACTIONS(8109), + [aux_sym_file_access_token2] = ACTIONS(8109), + [aux_sym_file_lock_token2] = ACTIONS(8109), + [aux_sym_print_statement_token1] = ACTIONS(8109), + [anon_sym_PLUS] = ACTIONS(8111), + [anon_sym_DASH] = ACTIONS(8109), + [anon_sym_SEMI] = ACTIONS(8111), + [anon_sym_QMARK] = ACTIONS(8111), + [aux_sym_close_statement_token1] = ACTIONS(8109), + [aux_sym_put_statement_token1] = ACTIONS(8109), + [aux_sym_unlock_statement_token1] = ACTIONS(8109), + [aux_sym_seek_statement_token1] = ACTIONS(8109), + [sym_reset_statement] = ACTIONS(8109), + [aux_sym_raise_event_statement_token1] = ACTIONS(8109), + [sym_stop_statement] = ACTIONS(8109), + [sym_beep_statement] = ACTIONS(8109), + [aux_sym_unload_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token1] = ACTIONS(8109), + [aux_sym_def_type_statement_token2] = ACTIONS(8109), + [aux_sym_def_type_statement_token3] = ACTIONS(8109), + [aux_sym_def_type_statement_token4] = ACTIONS(8109), + [aux_sym_def_type_statement_token5] = ACTIONS(8109), + [aux_sym_def_type_statement_token6] = ACTIONS(8109), + [aux_sym_def_type_statement_token7] = ACTIONS(8109), + [aux_sym_def_type_statement_token8] = ACTIONS(8109), + [aux_sym_def_type_statement_token9] = ACTIONS(8109), + [aux_sym_def_type_statement_token10] = ACTIONS(8109), + [aux_sym_def_type_statement_token11] = ACTIONS(8109), + [aux_sym_def_type_statement_token12] = ACTIONS(8109), + [aux_sym_def_type_statement_token13] = ACTIONS(8109), + [aux_sym_def_type_statement_token14] = ACTIONS(8109), + [aux_sym_call_statement_token1] = ACTIONS(8109), + [sym__ambiguous_call_statement] = ACTIONS(8109), + [aux_sym_addressof_expression_token1] = ACTIONS(8109), + [aux_sym_type_of_expression_token1] = ACTIONS(8109), + [aux_sym_unary_expression_token1] = ACTIONS(8109), + [sym_string_literal] = ACTIONS(8111), + [sym_number_literal] = ACTIONS(8111), + [aux_sym_boolean_literal_token1] = ACTIONS(8109), + [aux_sym_boolean_literal_token2] = ACTIONS(8109), + [sym_nothing_literal] = ACTIONS(8109), + [sym_null_literal] = ACTIONS(8109), + [sym_empty_literal] = ACTIONS(8109), + [sym_date_literal] = ACTIONS(8111), + [anon_sym_POUND] = ACTIONS(8109), + }, + [STATE(6891)] = { + [sym_identifier] = ACTIONS(9084), + [sym_newline] = ACTIONS(9086), + [anon_sym_COLON] = ACTIONS(9086), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9084), + [aux_sym_frm_property_statement_token1] = ACTIONS(9084), + [anon_sym_DOT] = ACTIONS(9084), + [anon_sym_BANG] = ACTIONS(9086), + [aux_sym__attribute_identifier_token1] = ACTIONS(9084), + [aux_sym_option_statement_token3] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9084), + [aux_sym_preprocessor_const_token1] = ACTIONS(9084), + [sym_static_modifier] = ACTIONS(9084), + [sym__dim_keyword] = ACTIONS(9084), + [sym__redim_keyword] = ACTIONS(9084), + [aux_sym_get_accessor_token1] = ACTIONS(9084), + [aux_sym_set_accessor_token1] = ACTIONS(9084), + [aux_sym_const_declaration_token1] = ACTIONS(9084), + [anon_sym_LPAREN] = ACTIONS(9086), + [aux_sym_as_type_clause_token2] = ACTIONS(9084), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9084), + [aux_sym_visibility_token1] = ACTIONS(9084), + [aux_sym_visibility_token2] = ACTIONS(9084), + [aux_sym_elseif_fragment_token1] = ACTIONS(9084), + [aux_sym_else_fragment_token1] = ACTIONS(9084), + [aux_sym_select_statement_token1] = ACTIONS(9084), + [aux_sym__for_header_token1] = ACTIONS(9084), + [aux_sym_do_statement_token1] = ACTIONS(9084), + [aux_sym_do_condition_token1] = ACTIONS(9084), + [aux_sym_with_statement_token1] = ACTIONS(9084), + [aux_sym_exit_statement_token1] = ACTIONS(9084), + [sym_end_statement] = ACTIONS(9086), + [aux_sym_on_goto_statement_token1] = ACTIONS(9084), + [aux_sym_on_goto_statement_token2] = ACTIONS(9084), + [aux_sym_on_error_statement_token2] = ACTIONS(9084), + [sym__ambiguous_redim_statement] = ACTIONS(9086), + [aux_sym_erase_statement_token1] = ACTIONS(9084), + [aux_sym_open_statement_token1] = ACTIONS(9084), + [aux_sym_file_mode_token2] = ACTIONS(9084), + [aux_sym_file_access_token2] = ACTIONS(9084), + [aux_sym_file_lock_token2] = ACTIONS(9084), + [aux_sym_print_statement_token1] = ACTIONS(9084), + [anon_sym_PLUS] = ACTIONS(9086), + [anon_sym_DASH] = ACTIONS(9084), + [anon_sym_QMARK] = ACTIONS(9086), + [aux_sym_close_statement_token1] = ACTIONS(9084), + [aux_sym_put_statement_token1] = ACTIONS(9084), + [aux_sym_unlock_statement_token1] = ACTIONS(9084), + [aux_sym_seek_statement_token1] = ACTIONS(9084), + [sym_reset_statement] = ACTIONS(9084), + [aux_sym_raise_event_statement_token1] = ACTIONS(9084), + [sym_stop_statement] = ACTIONS(9084), + [sym_beep_statement] = ACTIONS(9084), + [aux_sym_unload_statement_token1] = ACTIONS(9084), + [aux_sym_def_type_statement_token1] = ACTIONS(9084), + [aux_sym_def_type_statement_token2] = ACTIONS(9084), + [aux_sym_def_type_statement_token3] = ACTIONS(9084), + [aux_sym_def_type_statement_token4] = ACTIONS(9084), + [aux_sym_def_type_statement_token5] = ACTIONS(9084), + [aux_sym_def_type_statement_token6] = ACTIONS(9084), + [aux_sym_def_type_statement_token7] = ACTIONS(9084), + [aux_sym_def_type_statement_token8] = ACTIONS(9084), + [aux_sym_def_type_statement_token9] = ACTIONS(9084), + [aux_sym_def_type_statement_token10] = ACTIONS(9084), + [aux_sym_def_type_statement_token11] = ACTIONS(9084), + [aux_sym_def_type_statement_token12] = ACTIONS(9084), + [aux_sym_def_type_statement_token13] = ACTIONS(9084), + [aux_sym_def_type_statement_token14] = ACTIONS(9084), + [aux_sym_call_statement_token1] = ACTIONS(9084), + [sym__ambiguous_call_statement] = ACTIONS(9084), + [aux_sym_addressof_expression_token1] = ACTIONS(9084), + [aux_sym_type_of_expression_token1] = ACTIONS(9084), + [aux_sym_unary_expression_token1] = ACTIONS(9084), + [sym_string_literal] = ACTIONS(9086), + [sym_number_literal] = ACTIONS(9086), + [aux_sym_boolean_literal_token1] = ACTIONS(9084), + [aux_sym_boolean_literal_token2] = ACTIONS(9084), + [sym_nothing_literal] = ACTIONS(9084), + [sym_null_literal] = ACTIONS(9084), + [sym_empty_literal] = ACTIONS(9084), + [sym_date_literal] = ACTIONS(9086), + [anon_sym_POUND] = ACTIONS(9084), + }, + [STATE(6892)] = { + [sym_identifier] = ACTIONS(8312), + [sym_newline] = ACTIONS(8314), + [anon_sym_COLON] = ACTIONS(8314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8312), + [aux_sym_frm_property_statement_token1] = ACTIONS(8312), + [anon_sym_DOT] = ACTIONS(8312), + [anon_sym_BANG] = ACTIONS(8314), + [aux_sym__attribute_identifier_token1] = ACTIONS(8312), + [aux_sym_option_statement_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8312), + [aux_sym_preprocessor_const_token1] = ACTIONS(8312), + [sym_static_modifier] = ACTIONS(8312), + [sym__dim_keyword] = ACTIONS(8312), + [sym__redim_keyword] = ACTIONS(8312), + [aux_sym_get_accessor_token1] = ACTIONS(8312), + [aux_sym_set_accessor_token1] = ACTIONS(8312), + [aux_sym_const_declaration_token1] = ACTIONS(8312), + [anon_sym_LPAREN] = ACTIONS(8314), + [aux_sym_as_type_clause_token2] = ACTIONS(8312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8312), + [aux_sym_visibility_token1] = ACTIONS(8312), + [aux_sym_visibility_token2] = ACTIONS(8312), + [aux_sym_elseif_fragment_token1] = ACTIONS(8312), + [aux_sym_else_fragment_token1] = ACTIONS(8312), + [aux_sym_select_statement_token1] = ACTIONS(8312), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8312), + [aux_sym__for_header_token1] = ACTIONS(8312), + [aux_sym_do_statement_token1] = ACTIONS(8312), + [aux_sym_do_condition_token1] = ACTIONS(8312), + [aux_sym_with_statement_token1] = ACTIONS(8312), + [aux_sym_exit_statement_token1] = ACTIONS(8312), + [sym_end_statement] = ACTIONS(8314), + [aux_sym_on_goto_statement_token1] = ACTIONS(8312), + [aux_sym_on_goto_statement_token2] = ACTIONS(8312), + [aux_sym_on_error_statement_token2] = ACTIONS(8312), + [sym__ambiguous_redim_statement] = ACTIONS(8314), + [aux_sym_erase_statement_token1] = ACTIONS(8312), + [aux_sym_open_statement_token1] = ACTIONS(8312), + [aux_sym_file_mode_token2] = ACTIONS(8312), + [aux_sym_file_access_token2] = ACTIONS(8312), + [aux_sym_file_lock_token2] = ACTIONS(8312), + [aux_sym_print_statement_token1] = ACTIONS(8312), + [anon_sym_PLUS] = ACTIONS(8314), + [anon_sym_DASH] = ACTIONS(8312), + [anon_sym_QMARK] = ACTIONS(8314), + [aux_sym_close_statement_token1] = ACTIONS(8312), + [aux_sym_put_statement_token1] = ACTIONS(8312), + [aux_sym_unlock_statement_token1] = ACTIONS(8312), + [aux_sym_seek_statement_token1] = ACTIONS(8312), + [sym_reset_statement] = ACTIONS(8312), + [aux_sym_raise_event_statement_token1] = ACTIONS(8312), + [sym_stop_statement] = ACTIONS(8312), + [sym_beep_statement] = ACTIONS(8312), + [aux_sym_unload_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token2] = ACTIONS(8312), + [aux_sym_def_type_statement_token3] = ACTIONS(8312), + [aux_sym_def_type_statement_token4] = ACTIONS(8312), + [aux_sym_def_type_statement_token5] = ACTIONS(8312), + [aux_sym_def_type_statement_token6] = ACTIONS(8312), + [aux_sym_def_type_statement_token7] = ACTIONS(8312), + [aux_sym_def_type_statement_token8] = ACTIONS(8312), + [aux_sym_def_type_statement_token9] = ACTIONS(8312), + [aux_sym_def_type_statement_token10] = ACTIONS(8312), + [aux_sym_def_type_statement_token11] = ACTIONS(8312), + [aux_sym_def_type_statement_token12] = ACTIONS(8312), + [aux_sym_def_type_statement_token13] = ACTIONS(8312), + [aux_sym_def_type_statement_token14] = ACTIONS(8312), + [aux_sym_call_statement_token1] = ACTIONS(8312), + [sym__ambiguous_call_statement] = ACTIONS(8312), + [aux_sym_addressof_expression_token1] = ACTIONS(8312), + [aux_sym_type_of_expression_token1] = ACTIONS(8312), + [aux_sym_unary_expression_token1] = ACTIONS(8312), + [sym_string_literal] = ACTIONS(8314), + [sym_number_literal] = ACTIONS(8314), + [aux_sym_boolean_literal_token1] = ACTIONS(8312), + [aux_sym_boolean_literal_token2] = ACTIONS(8312), + [sym_nothing_literal] = ACTIONS(8312), + [sym_null_literal] = ACTIONS(8312), + [sym_empty_literal] = ACTIONS(8312), + [sym_date_literal] = ACTIONS(8314), + [anon_sym_POUND] = ACTIONS(8312), + }, + [STATE(6893)] = { + [sym_identifier] = ACTIONS(9156), + [sym_newline] = ACTIONS(9158), + [anon_sym_COLON] = ACTIONS(9158), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9156), + [aux_sym_frm_property_statement_token1] = ACTIONS(9156), + [anon_sym_DOT] = ACTIONS(9156), + [anon_sym_BANG] = ACTIONS(9158), + [aux_sym__attribute_identifier_token1] = ACTIONS(9156), + [aux_sym_option_statement_token3] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9156), + [aux_sym_preprocessor_const_token1] = ACTIONS(9156), + [sym_static_modifier] = ACTIONS(9156), + [sym__dim_keyword] = ACTIONS(9156), + [sym__redim_keyword] = ACTIONS(9156), + [aux_sym_get_accessor_token1] = ACTIONS(9156), + [aux_sym_set_accessor_token1] = ACTIONS(9156), + [aux_sym_const_declaration_token1] = ACTIONS(9156), + [anon_sym_LPAREN] = ACTIONS(9158), + [aux_sym_as_type_clause_token2] = ACTIONS(9156), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9156), + [aux_sym_visibility_token1] = ACTIONS(9156), + [aux_sym_visibility_token2] = ACTIONS(9156), + [aux_sym_elseif_fragment_token1] = ACTIONS(9156), + [aux_sym_else_fragment_token1] = ACTIONS(9156), + [aux_sym_select_statement_token1] = ACTIONS(9156), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9156), + [aux_sym__for_header_token1] = ACTIONS(9156), + [aux_sym_do_statement_token1] = ACTIONS(9156), + [aux_sym_do_condition_token1] = ACTIONS(9156), + [aux_sym_with_statement_token1] = ACTIONS(9156), + [aux_sym_exit_statement_token1] = ACTIONS(9156), + [sym_end_statement] = ACTIONS(9158), + [aux_sym_on_goto_statement_token1] = ACTIONS(9156), + [aux_sym_on_goto_statement_token2] = ACTIONS(9156), + [aux_sym_on_error_statement_token2] = ACTIONS(9156), + [sym__ambiguous_redim_statement] = ACTIONS(9158), + [aux_sym_erase_statement_token1] = ACTIONS(9156), + [aux_sym_open_statement_token1] = ACTIONS(9156), + [aux_sym_file_mode_token2] = ACTIONS(9156), + [aux_sym_file_access_token2] = ACTIONS(9156), + [aux_sym_file_lock_token2] = ACTIONS(9156), + [aux_sym_print_statement_token1] = ACTIONS(9156), + [anon_sym_PLUS] = ACTIONS(9158), + [anon_sym_DASH] = ACTIONS(9156), + [anon_sym_QMARK] = ACTIONS(9158), + [aux_sym_close_statement_token1] = ACTIONS(9156), + [aux_sym_put_statement_token1] = ACTIONS(9156), + [aux_sym_unlock_statement_token1] = ACTIONS(9156), + [aux_sym_seek_statement_token1] = ACTIONS(9156), + [sym_reset_statement] = ACTIONS(9156), + [aux_sym_raise_event_statement_token1] = ACTIONS(9156), + [sym_stop_statement] = ACTIONS(9156), + [sym_beep_statement] = ACTIONS(9156), + [aux_sym_unload_statement_token1] = ACTIONS(9156), + [aux_sym_def_type_statement_token1] = ACTIONS(9156), + [aux_sym_def_type_statement_token2] = ACTIONS(9156), + [aux_sym_def_type_statement_token3] = ACTIONS(9156), + [aux_sym_def_type_statement_token4] = ACTIONS(9156), + [aux_sym_def_type_statement_token5] = ACTIONS(9156), + [aux_sym_def_type_statement_token6] = ACTIONS(9156), + [aux_sym_def_type_statement_token7] = ACTIONS(9156), + [aux_sym_def_type_statement_token8] = ACTIONS(9156), + [aux_sym_def_type_statement_token9] = ACTIONS(9156), + [aux_sym_def_type_statement_token10] = ACTIONS(9156), + [aux_sym_def_type_statement_token11] = ACTIONS(9156), + [aux_sym_def_type_statement_token12] = ACTIONS(9156), + [aux_sym_def_type_statement_token13] = ACTIONS(9156), + [aux_sym_def_type_statement_token14] = ACTIONS(9156), + [aux_sym_call_statement_token1] = ACTIONS(9156), + [sym__ambiguous_call_statement] = ACTIONS(9156), + [aux_sym_addressof_expression_token1] = ACTIONS(9156), + [aux_sym_type_of_expression_token1] = ACTIONS(9156), + [aux_sym_unary_expression_token1] = ACTIONS(9156), + [sym_string_literal] = ACTIONS(9158), + [sym_number_literal] = ACTIONS(9158), + [aux_sym_boolean_literal_token1] = ACTIONS(9156), + [aux_sym_boolean_literal_token2] = ACTIONS(9156), + [sym_nothing_literal] = ACTIONS(9156), + [sym_null_literal] = ACTIONS(9156), + [sym_empty_literal] = ACTIONS(9156), + [sym_date_literal] = ACTIONS(9158), + [anon_sym_POUND] = ACTIONS(9156), + }, + [STATE(6894)] = { + [sym_identifier] = ACTIONS(8766), + [sym_newline] = ACTIONS(8768), + [anon_sym_COLON] = ACTIONS(8768), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8766), + [aux_sym_frm_property_statement_token1] = ACTIONS(8766), + [anon_sym_DOT] = ACTIONS(8766), + [anon_sym_BANG] = ACTIONS(8768), + [aux_sym__attribute_identifier_token1] = ACTIONS(8766), + [aux_sym_option_statement_token3] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8766), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8766), + [aux_sym_preprocessor_const_token1] = ACTIONS(8766), + [sym_static_modifier] = ACTIONS(8766), + [sym__dim_keyword] = ACTIONS(8766), + [sym__redim_keyword] = ACTIONS(8766), + [aux_sym_get_accessor_token1] = ACTIONS(8766), + [aux_sym_set_accessor_token1] = ACTIONS(8766), + [anon_sym_COMMA] = ACTIONS(11154), + [aux_sym_const_declaration_token1] = ACTIONS(8766), + [anon_sym_LPAREN] = ACTIONS(8768), + [aux_sym_as_type_clause_token2] = ACTIONS(8766), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8766), + [aux_sym_visibility_token1] = ACTIONS(8766), + [aux_sym_visibility_token2] = ACTIONS(8766), + [aux_sym_elseif_fragment_token1] = ACTIONS(8766), + [aux_sym_else_fragment_token1] = ACTIONS(8766), + [aux_sym_select_statement_token1] = ACTIONS(8766), + [aux_sym__for_header_token1] = ACTIONS(8766), + [aux_sym_do_statement_token1] = ACTIONS(8766), + [aux_sym_do_condition_token1] = ACTIONS(8766), + [aux_sym_with_statement_token1] = ACTIONS(8766), + [aux_sym_exit_statement_token1] = ACTIONS(8766), + [sym_end_statement] = ACTIONS(8768), + [aux_sym_on_goto_statement_token1] = ACTIONS(8766), + [aux_sym_on_goto_statement_token2] = ACTIONS(8766), + [aux_sym_on_error_statement_token2] = ACTIONS(8766), + [sym__ambiguous_redim_statement] = ACTIONS(8768), + [aux_sym_erase_statement_token1] = ACTIONS(8766), + [aux_sym_open_statement_token1] = ACTIONS(8766), + [aux_sym_file_mode_token2] = ACTIONS(8766), + [aux_sym_file_access_token2] = ACTIONS(8766), + [aux_sym_file_lock_token2] = ACTIONS(8766), + [aux_sym_print_statement_token1] = ACTIONS(8766), + [anon_sym_PLUS] = ACTIONS(8768), + [anon_sym_DASH] = ACTIONS(8766), + [anon_sym_QMARK] = ACTIONS(8768), + [aux_sym_close_statement_token1] = ACTIONS(8766), + [aux_sym_put_statement_token1] = ACTIONS(8766), + [aux_sym_unlock_statement_token1] = ACTIONS(8766), + [aux_sym_seek_statement_token1] = ACTIONS(8766), + [sym_reset_statement] = ACTIONS(8766), + [aux_sym_raise_event_statement_token1] = ACTIONS(8766), + [sym_stop_statement] = ACTIONS(8766), + [sym_beep_statement] = ACTIONS(8766), + [aux_sym_unload_statement_token1] = ACTIONS(8766), + [aux_sym_def_type_statement_token1] = ACTIONS(8766), + [aux_sym_def_type_statement_token2] = ACTIONS(8766), + [aux_sym_def_type_statement_token3] = ACTIONS(8766), + [aux_sym_def_type_statement_token4] = ACTIONS(8766), + [aux_sym_def_type_statement_token5] = ACTIONS(8766), + [aux_sym_def_type_statement_token6] = ACTIONS(8766), + [aux_sym_def_type_statement_token7] = ACTIONS(8766), + [aux_sym_def_type_statement_token8] = ACTIONS(8766), + [aux_sym_def_type_statement_token9] = ACTIONS(8766), + [aux_sym_def_type_statement_token10] = ACTIONS(8766), + [aux_sym_def_type_statement_token11] = ACTIONS(8766), + [aux_sym_def_type_statement_token12] = ACTIONS(8766), + [aux_sym_def_type_statement_token13] = ACTIONS(8766), + [aux_sym_def_type_statement_token14] = ACTIONS(8766), + [aux_sym_call_statement_token1] = ACTIONS(8766), + [sym__ambiguous_call_statement] = ACTIONS(8766), + [aux_sym_addressof_expression_token1] = ACTIONS(8766), + [aux_sym_type_of_expression_token1] = ACTIONS(8766), + [aux_sym_unary_expression_token1] = ACTIONS(8766), + [sym_string_literal] = ACTIONS(8768), + [sym_number_literal] = ACTIONS(8768), + [aux_sym_boolean_literal_token1] = ACTIONS(8766), + [aux_sym_boolean_literal_token2] = ACTIONS(8766), + [sym_nothing_literal] = ACTIONS(8766), + [sym_null_literal] = ACTIONS(8766), + [sym_empty_literal] = ACTIONS(8766), + [sym_date_literal] = ACTIONS(8768), + [anon_sym_POUND] = ACTIONS(8766), + }, + [STATE(6895)] = { + [sym_identifier] = ACTIONS(9160), + [sym_newline] = ACTIONS(9162), + [anon_sym_COLON] = ACTIONS(9162), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9160), + [aux_sym_frm_property_statement_token1] = ACTIONS(9160), + [anon_sym_DOT] = ACTIONS(9160), + [anon_sym_BANG] = ACTIONS(9162), + [aux_sym__attribute_identifier_token1] = ACTIONS(9160), + [aux_sym_option_statement_token3] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9160), + [aux_sym_preprocessor_const_token1] = ACTIONS(9160), + [sym_static_modifier] = ACTIONS(9160), + [sym__dim_keyword] = ACTIONS(9160), + [sym__redim_keyword] = ACTIONS(9160), + [aux_sym_get_accessor_token1] = ACTIONS(9160), + [aux_sym_set_accessor_token1] = ACTIONS(9160), + [aux_sym_const_declaration_token1] = ACTIONS(9160), + [anon_sym_LPAREN] = ACTIONS(9162), + [aux_sym_as_type_clause_token2] = ACTIONS(9160), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9160), + [aux_sym_visibility_token1] = ACTIONS(9160), + [aux_sym_visibility_token2] = ACTIONS(9160), + [aux_sym_elseif_fragment_token1] = ACTIONS(9160), + [aux_sym_else_fragment_token1] = ACTIONS(9160), + [aux_sym_select_statement_token1] = ACTIONS(9160), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9160), + [aux_sym__for_header_token1] = ACTIONS(9160), + [aux_sym_do_statement_token1] = ACTIONS(9160), + [aux_sym_do_condition_token1] = ACTIONS(9160), + [aux_sym_with_statement_token1] = ACTIONS(9160), + [aux_sym_exit_statement_token1] = ACTIONS(9160), + [sym_end_statement] = ACTIONS(9162), + [aux_sym_on_goto_statement_token1] = ACTIONS(9160), + [aux_sym_on_goto_statement_token2] = ACTIONS(9160), + [aux_sym_on_error_statement_token2] = ACTIONS(9160), + [sym__ambiguous_redim_statement] = ACTIONS(9162), + [aux_sym_erase_statement_token1] = ACTIONS(9160), + [aux_sym_open_statement_token1] = ACTIONS(9160), + [aux_sym_file_mode_token2] = ACTIONS(9160), + [aux_sym_file_access_token2] = ACTIONS(9160), + [aux_sym_file_lock_token2] = ACTIONS(9160), + [aux_sym_print_statement_token1] = ACTIONS(9160), + [anon_sym_PLUS] = ACTIONS(9162), + [anon_sym_DASH] = ACTIONS(9160), + [anon_sym_QMARK] = ACTIONS(9162), + [aux_sym_close_statement_token1] = ACTIONS(9160), + [aux_sym_put_statement_token1] = ACTIONS(9160), + [aux_sym_unlock_statement_token1] = ACTIONS(9160), + [aux_sym_seek_statement_token1] = ACTIONS(9160), + [sym_reset_statement] = ACTIONS(9160), + [aux_sym_raise_event_statement_token1] = ACTIONS(9160), + [sym_stop_statement] = ACTIONS(9160), + [sym_beep_statement] = ACTIONS(9160), + [aux_sym_unload_statement_token1] = ACTIONS(9160), + [aux_sym_def_type_statement_token1] = ACTIONS(9160), + [aux_sym_def_type_statement_token2] = ACTIONS(9160), + [aux_sym_def_type_statement_token3] = ACTIONS(9160), + [aux_sym_def_type_statement_token4] = ACTIONS(9160), + [aux_sym_def_type_statement_token5] = ACTIONS(9160), + [aux_sym_def_type_statement_token6] = ACTIONS(9160), + [aux_sym_def_type_statement_token7] = ACTIONS(9160), + [aux_sym_def_type_statement_token8] = ACTIONS(9160), + [aux_sym_def_type_statement_token9] = ACTIONS(9160), + [aux_sym_def_type_statement_token10] = ACTIONS(9160), + [aux_sym_def_type_statement_token11] = ACTIONS(9160), + [aux_sym_def_type_statement_token12] = ACTIONS(9160), + [aux_sym_def_type_statement_token13] = ACTIONS(9160), + [aux_sym_def_type_statement_token14] = ACTIONS(9160), + [aux_sym_call_statement_token1] = ACTIONS(9160), + [sym__ambiguous_call_statement] = ACTIONS(9160), + [aux_sym_addressof_expression_token1] = ACTIONS(9160), + [aux_sym_type_of_expression_token1] = ACTIONS(9160), + [aux_sym_unary_expression_token1] = ACTIONS(9160), + [sym_string_literal] = ACTIONS(9162), + [sym_number_literal] = ACTIONS(9162), + [aux_sym_boolean_literal_token1] = ACTIONS(9160), + [aux_sym_boolean_literal_token2] = ACTIONS(9160), + [sym_nothing_literal] = ACTIONS(9160), + [sym_null_literal] = ACTIONS(9160), + [sym_empty_literal] = ACTIONS(9160), + [sym_date_literal] = ACTIONS(9162), + [anon_sym_POUND] = ACTIONS(9160), + }, + [STATE(6896)] = { + [sym_identifier] = ACTIONS(8974), + [sym_newline] = ACTIONS(8976), + [anon_sym_COLON] = ACTIONS(8976), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8974), + [aux_sym_frm_property_statement_token1] = ACTIONS(8974), + [anon_sym_DOT] = ACTIONS(8974), + [anon_sym_BANG] = ACTIONS(8976), + [aux_sym__attribute_identifier_token1] = ACTIONS(8974), + [aux_sym_option_statement_token3] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8974), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8974), + [aux_sym_preprocessor_const_token1] = ACTIONS(8974), + [sym_static_modifier] = ACTIONS(8974), + [sym__dim_keyword] = ACTIONS(8974), + [sym__redim_keyword] = ACTIONS(8974), + [aux_sym_get_accessor_token1] = ACTIONS(8974), + [aux_sym_set_accessor_token1] = ACTIONS(8974), + [anon_sym_COMMA] = ACTIONS(11156), + [aux_sym_const_declaration_token1] = ACTIONS(8974), + [anon_sym_LPAREN] = ACTIONS(8976), + [aux_sym_as_type_clause_token2] = ACTIONS(8974), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8974), + [aux_sym_visibility_token1] = ACTIONS(8974), + [aux_sym_visibility_token2] = ACTIONS(8974), + [aux_sym_elseif_fragment_token1] = ACTIONS(8974), + [aux_sym_else_fragment_token1] = ACTIONS(8974), + [aux_sym_select_statement_token1] = ACTIONS(8974), + [aux_sym__for_header_token1] = ACTIONS(8974), + [aux_sym_do_statement_token1] = ACTIONS(8974), + [aux_sym_do_condition_token1] = ACTIONS(8974), + [aux_sym_with_statement_token1] = ACTIONS(8974), + [aux_sym_exit_statement_token1] = ACTIONS(8974), + [sym_end_statement] = ACTIONS(8976), + [aux_sym_on_goto_statement_token1] = ACTIONS(8974), + [aux_sym_on_goto_statement_token2] = ACTIONS(8974), + [aux_sym_on_error_statement_token2] = ACTIONS(8974), + [sym__ambiguous_redim_statement] = ACTIONS(8976), + [aux_sym_erase_statement_token1] = ACTIONS(8974), + [aux_sym_open_statement_token1] = ACTIONS(8974), + [aux_sym_file_mode_token2] = ACTIONS(8974), + [aux_sym_file_access_token2] = ACTIONS(8974), + [aux_sym_file_lock_token2] = ACTIONS(8974), + [aux_sym_print_statement_token1] = ACTIONS(8974), + [anon_sym_PLUS] = ACTIONS(8976), + [anon_sym_DASH] = ACTIONS(8974), + [anon_sym_QMARK] = ACTIONS(8976), + [aux_sym_close_statement_token1] = ACTIONS(8974), + [aux_sym_put_statement_token1] = ACTIONS(8974), + [aux_sym_unlock_statement_token1] = ACTIONS(8974), + [aux_sym_seek_statement_token1] = ACTIONS(8974), + [sym_reset_statement] = ACTIONS(8974), + [aux_sym_raise_event_statement_token1] = ACTIONS(8974), + [sym_stop_statement] = ACTIONS(8974), + [sym_beep_statement] = ACTIONS(8974), + [aux_sym_unload_statement_token1] = ACTIONS(8974), + [aux_sym_def_type_statement_token1] = ACTIONS(8974), + [aux_sym_def_type_statement_token2] = ACTIONS(8974), + [aux_sym_def_type_statement_token3] = ACTIONS(8974), + [aux_sym_def_type_statement_token4] = ACTIONS(8974), + [aux_sym_def_type_statement_token5] = ACTIONS(8974), + [aux_sym_def_type_statement_token6] = ACTIONS(8974), + [aux_sym_def_type_statement_token7] = ACTIONS(8974), + [aux_sym_def_type_statement_token8] = ACTIONS(8974), + [aux_sym_def_type_statement_token9] = ACTIONS(8974), + [aux_sym_def_type_statement_token10] = ACTIONS(8974), + [aux_sym_def_type_statement_token11] = ACTIONS(8974), + [aux_sym_def_type_statement_token12] = ACTIONS(8974), + [aux_sym_def_type_statement_token13] = ACTIONS(8974), + [aux_sym_def_type_statement_token14] = ACTIONS(8974), + [aux_sym_call_statement_token1] = ACTIONS(8974), + [sym__ambiguous_call_statement] = ACTIONS(8974), + [aux_sym_addressof_expression_token1] = ACTIONS(8974), + [aux_sym_type_of_expression_token1] = ACTIONS(8974), + [aux_sym_unary_expression_token1] = ACTIONS(8974), + [sym_string_literal] = ACTIONS(8976), + [sym_number_literal] = ACTIONS(8976), + [aux_sym_boolean_literal_token1] = ACTIONS(8974), + [aux_sym_boolean_literal_token2] = ACTIONS(8974), + [sym_nothing_literal] = ACTIONS(8974), + [sym_null_literal] = ACTIONS(8974), + [sym_empty_literal] = ACTIONS(8974), + [sym_date_literal] = ACTIONS(8976), + [anon_sym_POUND] = ACTIONS(8974), + }, + [STATE(6897)] = { + [sym_identifier] = ACTIONS(9172), + [sym_newline] = ACTIONS(9174), + [anon_sym_COLON] = ACTIONS(9174), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9172), + [aux_sym_frm_property_statement_token1] = ACTIONS(9172), + [anon_sym_DOT] = ACTIONS(9172), + [anon_sym_BANG] = ACTIONS(9174), + [aux_sym__attribute_identifier_token1] = ACTIONS(9172), + [aux_sym_option_statement_token3] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9172), + [aux_sym_preprocessor_const_token1] = ACTIONS(9172), + [sym_static_modifier] = ACTIONS(9172), + [sym__dim_keyword] = ACTIONS(9172), + [sym__redim_keyword] = ACTIONS(9172), + [aux_sym_get_accessor_token1] = ACTIONS(9172), + [aux_sym_set_accessor_token1] = ACTIONS(9172), + [aux_sym_const_declaration_token1] = ACTIONS(9172), + [anon_sym_LPAREN] = ACTIONS(9174), + [aux_sym_as_type_clause_token2] = ACTIONS(9172), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9172), + [aux_sym_visibility_token1] = ACTIONS(9172), + [aux_sym_visibility_token2] = ACTIONS(9172), + [aux_sym_elseif_fragment_token1] = ACTIONS(9172), + [aux_sym_else_fragment_token1] = ACTIONS(9172), + [aux_sym_select_statement_token1] = ACTIONS(9172), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9172), + [aux_sym__for_header_token1] = ACTIONS(9172), + [aux_sym_do_statement_token1] = ACTIONS(9172), + [aux_sym_do_condition_token1] = ACTIONS(9172), + [aux_sym_with_statement_token1] = ACTIONS(9172), + [aux_sym_exit_statement_token1] = ACTIONS(9172), + [sym_end_statement] = ACTIONS(9174), + [aux_sym_on_goto_statement_token1] = ACTIONS(9172), + [aux_sym_on_goto_statement_token2] = ACTIONS(9172), + [aux_sym_on_error_statement_token2] = ACTIONS(9172), + [sym__ambiguous_redim_statement] = ACTIONS(9174), + [aux_sym_erase_statement_token1] = ACTIONS(9172), + [aux_sym_open_statement_token1] = ACTIONS(9172), + [aux_sym_file_mode_token2] = ACTIONS(9172), + [aux_sym_file_access_token2] = ACTIONS(9172), + [aux_sym_file_lock_token2] = ACTIONS(9172), + [aux_sym_print_statement_token1] = ACTIONS(9172), + [anon_sym_PLUS] = ACTIONS(9174), + [anon_sym_DASH] = ACTIONS(9172), + [anon_sym_QMARK] = ACTIONS(9174), + [aux_sym_close_statement_token1] = ACTIONS(9172), + [aux_sym_put_statement_token1] = ACTIONS(9172), + [aux_sym_unlock_statement_token1] = ACTIONS(9172), + [aux_sym_seek_statement_token1] = ACTIONS(9172), + [sym_reset_statement] = ACTIONS(9172), + [aux_sym_raise_event_statement_token1] = ACTIONS(9172), + [sym_stop_statement] = ACTIONS(9172), + [sym_beep_statement] = ACTIONS(9172), + [aux_sym_unload_statement_token1] = ACTIONS(9172), + [aux_sym_def_type_statement_token1] = ACTIONS(9172), + [aux_sym_def_type_statement_token2] = ACTIONS(9172), + [aux_sym_def_type_statement_token3] = ACTIONS(9172), + [aux_sym_def_type_statement_token4] = ACTIONS(9172), + [aux_sym_def_type_statement_token5] = ACTIONS(9172), + [aux_sym_def_type_statement_token6] = ACTIONS(9172), + [aux_sym_def_type_statement_token7] = ACTIONS(9172), + [aux_sym_def_type_statement_token8] = ACTIONS(9172), + [aux_sym_def_type_statement_token9] = ACTIONS(9172), + [aux_sym_def_type_statement_token10] = ACTIONS(9172), + [aux_sym_def_type_statement_token11] = ACTIONS(9172), + [aux_sym_def_type_statement_token12] = ACTIONS(9172), + [aux_sym_def_type_statement_token13] = ACTIONS(9172), + [aux_sym_def_type_statement_token14] = ACTIONS(9172), + [aux_sym_call_statement_token1] = ACTIONS(9172), + [sym__ambiguous_call_statement] = ACTIONS(9172), + [aux_sym_addressof_expression_token1] = ACTIONS(9172), + [aux_sym_type_of_expression_token1] = ACTIONS(9172), + [aux_sym_unary_expression_token1] = ACTIONS(9172), + [sym_string_literal] = ACTIONS(9174), + [sym_number_literal] = ACTIONS(9174), + [aux_sym_boolean_literal_token1] = ACTIONS(9172), + [aux_sym_boolean_literal_token2] = ACTIONS(9172), + [sym_nothing_literal] = ACTIONS(9172), + [sym_null_literal] = ACTIONS(9172), + [sym_empty_literal] = ACTIONS(9172), + [sym_date_literal] = ACTIONS(9174), + [anon_sym_POUND] = ACTIONS(9172), + }, + [STATE(6898)] = { + [sym_identifier] = ACTIONS(9413), + [sym_newline] = ACTIONS(9415), + [anon_sym_COLON] = ACTIONS(9415), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9413), + [aux_sym_frm_property_statement_token1] = ACTIONS(9413), + [anon_sym_DOT] = ACTIONS(9413), + [anon_sym_BANG] = ACTIONS(9415), + [aux_sym__attribute_identifier_token1] = ACTIONS(9413), + [aux_sym_option_statement_token3] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9413), + [aux_sym_preprocessor_const_token1] = ACTIONS(9413), + [sym_static_modifier] = ACTIONS(9413), + [sym__dim_keyword] = ACTIONS(9413), + [sym__redim_keyword] = ACTIONS(9413), + [aux_sym_get_accessor_token1] = ACTIONS(9413), + [aux_sym_set_accessor_token1] = ACTIONS(9413), + [aux_sym_const_declaration_token1] = ACTIONS(9413), + [anon_sym_LPAREN] = ACTIONS(9415), + [aux_sym_as_type_clause_token2] = ACTIONS(9413), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9413), + [aux_sym_visibility_token1] = ACTIONS(9413), + [aux_sym_visibility_token2] = ACTIONS(9413), + [aux_sym_elseif_fragment_token1] = ACTIONS(9413), + [aux_sym_else_fragment_token1] = ACTIONS(9413), + [aux_sym_select_statement_token1] = ACTIONS(9413), + [aux_sym__for_header_token1] = ACTIONS(9413), + [aux_sym_do_statement_token1] = ACTIONS(9413), + [aux_sym_do_condition_token1] = ACTIONS(9413), + [aux_sym_with_statement_token1] = ACTIONS(9413), + [aux_sym_exit_statement_token1] = ACTIONS(9413), + [sym_end_statement] = ACTIONS(9415), + [aux_sym_on_goto_statement_token1] = ACTIONS(9413), + [aux_sym_on_goto_statement_token2] = ACTIONS(9413), + [aux_sym_on_error_statement_token2] = ACTIONS(9413), + [sym__ambiguous_redim_statement] = ACTIONS(9415), + [aux_sym_erase_statement_token1] = ACTIONS(9413), + [aux_sym_open_statement_token1] = ACTIONS(9413), + [aux_sym_file_mode_token2] = ACTIONS(9413), + [aux_sym_file_access_token2] = ACTIONS(9413), + [aux_sym_file_lock_token2] = ACTIONS(9413), + [aux_sym_print_statement_token1] = ACTIONS(9413), + [anon_sym_PLUS] = ACTIONS(9415), + [anon_sym_DASH] = ACTIONS(9413), + [anon_sym_QMARK] = ACTIONS(9415), + [aux_sym_close_statement_token1] = ACTIONS(9413), + [aux_sym_put_statement_token1] = ACTIONS(9413), + [aux_sym_unlock_statement_token1] = ACTIONS(9413), + [aux_sym_seek_statement_token1] = ACTIONS(9413), + [sym_reset_statement] = ACTIONS(9413), + [aux_sym_raise_event_statement_token1] = ACTIONS(9413), + [sym_stop_statement] = ACTIONS(9413), + [sym_beep_statement] = ACTIONS(9413), + [aux_sym_unload_statement_token1] = ACTIONS(9413), + [aux_sym_def_type_statement_token1] = ACTIONS(9413), + [aux_sym_def_type_statement_token2] = ACTIONS(9413), + [aux_sym_def_type_statement_token3] = ACTIONS(9413), + [aux_sym_def_type_statement_token4] = ACTIONS(9413), + [aux_sym_def_type_statement_token5] = ACTIONS(9413), + [aux_sym_def_type_statement_token6] = ACTIONS(9413), + [aux_sym_def_type_statement_token7] = ACTIONS(9413), + [aux_sym_def_type_statement_token8] = ACTIONS(9413), + [aux_sym_def_type_statement_token9] = ACTIONS(9413), + [aux_sym_def_type_statement_token10] = ACTIONS(9413), + [aux_sym_def_type_statement_token11] = ACTIONS(9413), + [aux_sym_def_type_statement_token12] = ACTIONS(9413), + [aux_sym_def_type_statement_token13] = ACTIONS(9413), + [aux_sym_def_type_statement_token14] = ACTIONS(9413), + [aux_sym_call_statement_token1] = ACTIONS(9413), + [sym__ambiguous_call_statement] = ACTIONS(9413), + [aux_sym_addressof_expression_token1] = ACTIONS(9413), + [aux_sym_type_of_expression_token1] = ACTIONS(9413), + [aux_sym_unary_expression_token1] = ACTIONS(9413), + [sym_string_literal] = ACTIONS(9415), + [sym_number_literal] = ACTIONS(9415), + [aux_sym_boolean_literal_token1] = ACTIONS(9413), + [aux_sym_boolean_literal_token2] = ACTIONS(9413), + [sym_nothing_literal] = ACTIONS(9413), + [sym_null_literal] = ACTIONS(9413), + [sym_empty_literal] = ACTIONS(9413), + [sym_date_literal] = ACTIONS(9415), + [anon_sym_POUND] = ACTIONS(9413), + }, + [STATE(6899)] = { + [sym_identifier] = ACTIONS(9631), + [sym_newline] = ACTIONS(9633), + [anon_sym_COLON] = ACTIONS(9633), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9631), + [aux_sym_frm_property_statement_token1] = ACTIONS(9631), + [anon_sym_DOT] = ACTIONS(9631), + [anon_sym_BANG] = ACTIONS(9633), + [aux_sym__attribute_identifier_token1] = ACTIONS(9631), + [aux_sym_option_statement_token3] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9631), + [aux_sym_preprocessor_const_token1] = ACTIONS(9631), + [sym_static_modifier] = ACTIONS(9631), + [sym__dim_keyword] = ACTIONS(9631), + [sym__redim_keyword] = ACTIONS(9631), + [aux_sym_get_accessor_token1] = ACTIONS(9631), + [aux_sym_set_accessor_token1] = ACTIONS(9631), + [aux_sym_const_declaration_token1] = ACTIONS(9631), + [anon_sym_LPAREN] = ACTIONS(9633), + [aux_sym_as_type_clause_token2] = ACTIONS(9631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9631), + [aux_sym_visibility_token1] = ACTIONS(9631), + [aux_sym_visibility_token2] = ACTIONS(9631), + [aux_sym_elseif_fragment_token1] = ACTIONS(9631), + [aux_sym_else_fragment_token1] = ACTIONS(9631), + [aux_sym_select_statement_token1] = ACTIONS(9631), + [aux_sym__for_header_token1] = ACTIONS(9631), + [aux_sym_do_statement_token1] = ACTIONS(9631), + [aux_sym_do_condition_token1] = ACTIONS(9631), + [aux_sym_with_statement_token1] = ACTIONS(9631), + [aux_sym_exit_statement_token1] = ACTIONS(9631), + [sym_end_statement] = ACTIONS(9633), + [aux_sym_on_goto_statement_token1] = ACTIONS(9631), + [aux_sym_on_goto_statement_token2] = ACTIONS(9631), + [aux_sym_on_error_statement_token2] = ACTIONS(9631), + [sym__ambiguous_redim_statement] = ACTIONS(9633), + [aux_sym_erase_statement_token1] = ACTIONS(9631), + [aux_sym_open_statement_token1] = ACTIONS(9631), + [aux_sym_file_mode_token2] = ACTIONS(9631), + [aux_sym_file_access_token2] = ACTIONS(9631), + [aux_sym_file_lock_token2] = ACTIONS(9631), + [aux_sym_print_statement_token1] = ACTIONS(9631), + [anon_sym_PLUS] = ACTIONS(9633), + [anon_sym_DASH] = ACTIONS(9631), + [anon_sym_QMARK] = ACTIONS(9633), + [aux_sym_close_statement_token1] = ACTIONS(9631), + [aux_sym_put_statement_token1] = ACTIONS(9631), + [aux_sym_unlock_statement_token1] = ACTIONS(9631), + [aux_sym_seek_statement_token1] = ACTIONS(9631), + [sym_reset_statement] = ACTIONS(9631), + [aux_sym_raise_event_statement_token1] = ACTIONS(9631), + [sym_stop_statement] = ACTIONS(9631), + [sym_beep_statement] = ACTIONS(9631), + [aux_sym_unload_statement_token1] = ACTIONS(9631), + [aux_sym_def_type_statement_token1] = ACTIONS(9631), + [aux_sym_def_type_statement_token2] = ACTIONS(9631), + [aux_sym_def_type_statement_token3] = ACTIONS(9631), + [aux_sym_def_type_statement_token4] = ACTIONS(9631), + [aux_sym_def_type_statement_token5] = ACTIONS(9631), + [aux_sym_def_type_statement_token6] = ACTIONS(9631), + [aux_sym_def_type_statement_token7] = ACTIONS(9631), + [aux_sym_def_type_statement_token8] = ACTIONS(9631), + [aux_sym_def_type_statement_token9] = ACTIONS(9631), + [aux_sym_def_type_statement_token10] = ACTIONS(9631), + [aux_sym_def_type_statement_token11] = ACTIONS(9631), + [aux_sym_def_type_statement_token12] = ACTIONS(9631), + [aux_sym_def_type_statement_token13] = ACTIONS(9631), + [aux_sym_def_type_statement_token14] = ACTIONS(9631), + [aux_sym_call_statement_token1] = ACTIONS(9631), + [sym__ambiguous_call_statement] = ACTIONS(9631), + [aux_sym_addressof_expression_token1] = ACTIONS(9631), + [aux_sym_type_of_expression_token1] = ACTIONS(9631), + [aux_sym_unary_expression_token1] = ACTIONS(9631), + [sym_string_literal] = ACTIONS(9633), + [sym_number_literal] = ACTIONS(9633), + [aux_sym_boolean_literal_token1] = ACTIONS(9631), + [aux_sym_boolean_literal_token2] = ACTIONS(9631), + [sym_nothing_literal] = ACTIONS(9631), + [sym_null_literal] = ACTIONS(9631), + [sym_empty_literal] = ACTIONS(9631), + [sym_date_literal] = ACTIONS(9633), + [anon_sym_POUND] = ACTIONS(9631), + }, + [STATE(6900)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6904), + [sym_identifier] = ACTIONS(8692), + [sym_newline] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(11113), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8692), + [aux_sym_frm_property_statement_token1] = ACTIONS(8692), + [anon_sym_DOT] = ACTIONS(8692), + [anon_sym_BANG] = ACTIONS(8694), + [aux_sym__attribute_identifier_token1] = ACTIONS(8692), + [aux_sym_option_statement_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8692), + [aux_sym_preprocessor_const_token1] = ACTIONS(8692), + [sym_static_modifier] = ACTIONS(8692), + [sym__dim_keyword] = ACTIONS(8692), + [sym__redim_keyword] = ACTIONS(8692), + [aux_sym_get_accessor_token1] = ACTIONS(8692), + [aux_sym_set_accessor_token1] = ACTIONS(8692), + [aux_sym_const_declaration_token1] = ACTIONS(8692), + [anon_sym_LPAREN] = ACTIONS(8694), + [aux_sym_as_type_clause_token2] = ACTIONS(8692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8692), + [aux_sym_visibility_token1] = ACTIONS(8692), + [aux_sym_visibility_token2] = ACTIONS(8692), + [aux_sym_elseif_fragment_token1] = ACTIONS(8692), + [aux_sym_else_fragment_token1] = ACTIONS(11158), + [aux_sym_select_statement_token1] = ACTIONS(8692), + [aux_sym__for_header_token1] = ACTIONS(8692), + [aux_sym_do_statement_token1] = ACTIONS(8692), + [aux_sym_do_condition_token1] = ACTIONS(8692), + [aux_sym_with_statement_token1] = ACTIONS(8692), + [aux_sym_exit_statement_token1] = ACTIONS(8692), + [sym_end_statement] = ACTIONS(8694), + [aux_sym_on_goto_statement_token1] = ACTIONS(8692), + [aux_sym_on_goto_statement_token2] = ACTIONS(8692), + [aux_sym_on_error_statement_token2] = ACTIONS(8692), + [sym__ambiguous_redim_statement] = ACTIONS(8694), + [aux_sym_erase_statement_token1] = ACTIONS(8692), + [aux_sym_open_statement_token1] = ACTIONS(8692), + [aux_sym_file_mode_token2] = ACTIONS(8692), + [aux_sym_file_access_token2] = ACTIONS(8692), + [aux_sym_file_lock_token2] = ACTIONS(8692), + [aux_sym_print_statement_token1] = ACTIONS(8692), + [anon_sym_PLUS] = ACTIONS(8694), + [anon_sym_DASH] = ACTIONS(8692), + [anon_sym_QMARK] = ACTIONS(8694), + [aux_sym_close_statement_token1] = ACTIONS(8692), + [aux_sym_put_statement_token1] = ACTIONS(8692), + [aux_sym_unlock_statement_token1] = ACTIONS(8692), + [aux_sym_seek_statement_token1] = ACTIONS(8692), + [sym_reset_statement] = ACTIONS(8692), + [aux_sym_raise_event_statement_token1] = ACTIONS(8692), + [sym_stop_statement] = ACTIONS(8692), + [sym_beep_statement] = ACTIONS(8692), + [aux_sym_unload_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token2] = ACTIONS(8692), + [aux_sym_def_type_statement_token3] = ACTIONS(8692), + [aux_sym_def_type_statement_token4] = ACTIONS(8692), + [aux_sym_def_type_statement_token5] = ACTIONS(8692), + [aux_sym_def_type_statement_token6] = ACTIONS(8692), + [aux_sym_def_type_statement_token7] = ACTIONS(8692), + [aux_sym_def_type_statement_token8] = ACTIONS(8692), + [aux_sym_def_type_statement_token9] = ACTIONS(8692), + [aux_sym_def_type_statement_token10] = ACTIONS(8692), + [aux_sym_def_type_statement_token11] = ACTIONS(8692), + [aux_sym_def_type_statement_token12] = ACTIONS(8692), + [aux_sym_def_type_statement_token13] = ACTIONS(8692), + [aux_sym_def_type_statement_token14] = ACTIONS(8692), + [aux_sym_call_statement_token1] = ACTIONS(8692), + [sym__ambiguous_call_statement] = ACTIONS(8692), + [aux_sym_addressof_expression_token1] = ACTIONS(8692), + [aux_sym_type_of_expression_token1] = ACTIONS(8692), + [aux_sym_unary_expression_token1] = ACTIONS(8692), + [sym_string_literal] = ACTIONS(8694), + [sym_number_literal] = ACTIONS(8694), + [aux_sym_boolean_literal_token1] = ACTIONS(8692), + [aux_sym_boolean_literal_token2] = ACTIONS(8692), + [sym_nothing_literal] = ACTIONS(8692), + [sym_null_literal] = ACTIONS(8692), + [sym_empty_literal] = ACTIONS(8692), + [sym_date_literal] = ACTIONS(8694), + [anon_sym_POUND] = ACTIONS(8692), + }, + [STATE(6901)] = { + [sym_identifier] = ACTIONS(9419), + [sym_newline] = ACTIONS(9421), + [anon_sym_COLON] = ACTIONS(9421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9419), + [aux_sym_frm_property_statement_token1] = ACTIONS(9419), + [anon_sym_DOT] = ACTIONS(9419), + [anon_sym_BANG] = ACTIONS(9421), + [aux_sym__attribute_identifier_token1] = ACTIONS(9419), + [aux_sym_option_statement_token3] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9419), + [aux_sym_preprocessor_const_token1] = ACTIONS(9419), + [sym_static_modifier] = ACTIONS(9419), + [sym__dim_keyword] = ACTIONS(9419), + [sym__redim_keyword] = ACTIONS(9419), + [aux_sym_get_accessor_token1] = ACTIONS(9419), + [aux_sym_set_accessor_token1] = ACTIONS(9419), + [aux_sym_const_declaration_token1] = ACTIONS(9419), + [anon_sym_LPAREN] = ACTIONS(9421), + [aux_sym_as_type_clause_token2] = ACTIONS(9419), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9419), + [aux_sym_visibility_token1] = ACTIONS(9419), + [aux_sym_visibility_token2] = ACTIONS(9419), + [aux_sym_elseif_fragment_token1] = ACTIONS(9419), + [aux_sym_else_fragment_token1] = ACTIONS(9419), + [aux_sym_select_statement_token1] = ACTIONS(9419), + [aux_sym__for_header_token1] = ACTIONS(9419), + [aux_sym_do_statement_token1] = ACTIONS(9419), + [aux_sym_do_condition_token1] = ACTIONS(9419), + [aux_sym_with_statement_token1] = ACTIONS(9419), + [aux_sym_exit_statement_token1] = ACTIONS(9419), + [sym_end_statement] = ACTIONS(9421), + [aux_sym_on_goto_statement_token1] = ACTIONS(9419), + [aux_sym_on_goto_statement_token2] = ACTIONS(9419), + [aux_sym_on_error_statement_token2] = ACTIONS(9419), + [sym__ambiguous_redim_statement] = ACTIONS(9421), + [aux_sym_erase_statement_token1] = ACTIONS(9419), + [aux_sym_open_statement_token1] = ACTIONS(9419), + [aux_sym_file_mode_token2] = ACTIONS(9419), + [aux_sym_file_access_token2] = ACTIONS(9419), + [aux_sym_file_lock_token2] = ACTIONS(9419), + [aux_sym_print_statement_token1] = ACTIONS(9419), + [anon_sym_PLUS] = ACTIONS(9421), + [anon_sym_DASH] = ACTIONS(9419), + [anon_sym_QMARK] = ACTIONS(9421), + [aux_sym_close_statement_token1] = ACTIONS(9419), + [aux_sym_put_statement_token1] = ACTIONS(9419), + [aux_sym_unlock_statement_token1] = ACTIONS(9419), + [aux_sym_seek_statement_token1] = ACTIONS(9419), + [sym_reset_statement] = ACTIONS(9419), + [aux_sym_raise_event_statement_token1] = ACTIONS(9419), + [sym_stop_statement] = ACTIONS(9419), + [sym_beep_statement] = ACTIONS(9419), + [aux_sym_unload_statement_token1] = ACTIONS(9419), + [aux_sym_def_type_statement_token1] = ACTIONS(9419), + [aux_sym_def_type_statement_token2] = ACTIONS(9419), + [aux_sym_def_type_statement_token3] = ACTIONS(9419), + [aux_sym_def_type_statement_token4] = ACTIONS(9419), + [aux_sym_def_type_statement_token5] = ACTIONS(9419), + [aux_sym_def_type_statement_token6] = ACTIONS(9419), + [aux_sym_def_type_statement_token7] = ACTIONS(9419), + [aux_sym_def_type_statement_token8] = ACTIONS(9419), + [aux_sym_def_type_statement_token9] = ACTIONS(9419), + [aux_sym_def_type_statement_token10] = ACTIONS(9419), + [aux_sym_def_type_statement_token11] = ACTIONS(9419), + [aux_sym_def_type_statement_token12] = ACTIONS(9419), + [aux_sym_def_type_statement_token13] = ACTIONS(9419), + [aux_sym_def_type_statement_token14] = ACTIONS(9419), + [aux_sym_call_statement_token1] = ACTIONS(9419), + [sym__ambiguous_call_statement] = ACTIONS(9419), + [aux_sym_addressof_expression_token1] = ACTIONS(9419), + [aux_sym_type_of_expression_token1] = ACTIONS(9419), + [aux_sym_unary_expression_token1] = ACTIONS(9419), + [sym_string_literal] = ACTIONS(9421), + [sym_number_literal] = ACTIONS(9421), + [aux_sym_boolean_literal_token1] = ACTIONS(9419), + [aux_sym_boolean_literal_token2] = ACTIONS(9419), + [sym_nothing_literal] = ACTIONS(9419), + [sym_null_literal] = ACTIONS(9419), + [sym_empty_literal] = ACTIONS(9419), + [sym_date_literal] = ACTIONS(9421), + [anon_sym_POUND] = ACTIONS(9419), + }, + [STATE(6902)] = { + [sym_identifier] = ACTIONS(9423), + [sym_newline] = ACTIONS(9425), + [anon_sym_COLON] = ACTIONS(9425), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9423), + [aux_sym_frm_property_statement_token1] = ACTIONS(9423), + [anon_sym_DOT] = ACTIONS(9423), + [anon_sym_BANG] = ACTIONS(9425), + [aux_sym__attribute_identifier_token1] = ACTIONS(9423), + [aux_sym_option_statement_token3] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9423), + [aux_sym_preprocessor_const_token1] = ACTIONS(9423), + [sym_static_modifier] = ACTIONS(9423), + [sym__dim_keyword] = ACTIONS(9423), + [sym__redim_keyword] = ACTIONS(9423), + [aux_sym_get_accessor_token1] = ACTIONS(9423), + [aux_sym_set_accessor_token1] = ACTIONS(9423), + [aux_sym_const_declaration_token1] = ACTIONS(9423), + [anon_sym_LPAREN] = ACTIONS(9425), + [aux_sym_as_type_clause_token2] = ACTIONS(9423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9423), + [aux_sym_visibility_token1] = ACTIONS(9423), + [aux_sym_visibility_token2] = ACTIONS(9423), + [aux_sym_elseif_fragment_token1] = ACTIONS(9423), + [aux_sym_else_fragment_token1] = ACTIONS(9423), + [aux_sym_select_statement_token1] = ACTIONS(9423), + [aux_sym__for_header_token1] = ACTIONS(9423), + [aux_sym_do_statement_token1] = ACTIONS(9423), + [aux_sym_do_condition_token1] = ACTIONS(9423), + [aux_sym_with_statement_token1] = ACTIONS(9423), + [aux_sym_exit_statement_token1] = ACTIONS(9423), + [sym_end_statement] = ACTIONS(9425), + [aux_sym_on_goto_statement_token1] = ACTIONS(9423), + [aux_sym_on_goto_statement_token2] = ACTIONS(9423), + [aux_sym_on_error_statement_token2] = ACTIONS(9423), + [sym__ambiguous_redim_statement] = ACTIONS(9425), + [aux_sym_erase_statement_token1] = ACTIONS(9423), + [aux_sym_open_statement_token1] = ACTIONS(9423), + [aux_sym_file_mode_token2] = ACTIONS(9423), + [aux_sym_file_access_token2] = ACTIONS(9423), + [aux_sym_file_lock_token2] = ACTIONS(9423), + [aux_sym_print_statement_token1] = ACTIONS(9423), + [anon_sym_PLUS] = ACTIONS(9425), + [anon_sym_DASH] = ACTIONS(9423), + [anon_sym_QMARK] = ACTIONS(9425), + [aux_sym_close_statement_token1] = ACTIONS(9423), + [aux_sym_put_statement_token1] = ACTIONS(9423), + [aux_sym_unlock_statement_token1] = ACTIONS(9423), + [aux_sym_seek_statement_token1] = ACTIONS(9423), + [sym_reset_statement] = ACTIONS(9423), + [aux_sym_raise_event_statement_token1] = ACTIONS(9423), + [sym_stop_statement] = ACTIONS(9423), + [sym_beep_statement] = ACTIONS(9423), + [aux_sym_unload_statement_token1] = ACTIONS(9423), + [aux_sym_def_type_statement_token1] = ACTIONS(9423), + [aux_sym_def_type_statement_token2] = ACTIONS(9423), + [aux_sym_def_type_statement_token3] = ACTIONS(9423), + [aux_sym_def_type_statement_token4] = ACTIONS(9423), + [aux_sym_def_type_statement_token5] = ACTIONS(9423), + [aux_sym_def_type_statement_token6] = ACTIONS(9423), + [aux_sym_def_type_statement_token7] = ACTIONS(9423), + [aux_sym_def_type_statement_token8] = ACTIONS(9423), + [aux_sym_def_type_statement_token9] = ACTIONS(9423), + [aux_sym_def_type_statement_token10] = ACTIONS(9423), + [aux_sym_def_type_statement_token11] = ACTIONS(9423), + [aux_sym_def_type_statement_token12] = ACTIONS(9423), + [aux_sym_def_type_statement_token13] = ACTIONS(9423), + [aux_sym_def_type_statement_token14] = ACTIONS(9423), + [aux_sym_call_statement_token1] = ACTIONS(9423), + [sym__ambiguous_call_statement] = ACTIONS(9423), + [aux_sym_addressof_expression_token1] = ACTIONS(9423), + [aux_sym_type_of_expression_token1] = ACTIONS(9423), + [aux_sym_unary_expression_token1] = ACTIONS(9423), + [sym_string_literal] = ACTIONS(9425), + [sym_number_literal] = ACTIONS(9425), + [aux_sym_boolean_literal_token1] = ACTIONS(9423), + [aux_sym_boolean_literal_token2] = ACTIONS(9423), + [sym_nothing_literal] = ACTIONS(9423), + [sym_null_literal] = ACTIONS(9423), + [sym_empty_literal] = ACTIONS(9423), + [sym_date_literal] = ACTIONS(9425), + [anon_sym_POUND] = ACTIONS(9423), + }, + [STATE(6903)] = { + [sym_identifier] = ACTIONS(9370), + [sym_newline] = ACTIONS(9372), + [anon_sym_COLON] = ACTIONS(9372), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9370), + [aux_sym_frm_property_statement_token1] = ACTIONS(9370), + [anon_sym_DOT] = ACTIONS(9370), + [anon_sym_BANG] = ACTIONS(9372), + [aux_sym__attribute_identifier_token1] = ACTIONS(9370), + [aux_sym_option_statement_token3] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9370), + [aux_sym_preprocessor_const_token1] = ACTIONS(9370), + [sym_static_modifier] = ACTIONS(9370), + [sym__dim_keyword] = ACTIONS(9370), + [sym__redim_keyword] = ACTIONS(9370), + [aux_sym_get_accessor_token1] = ACTIONS(9370), + [aux_sym_set_accessor_token1] = ACTIONS(9370), + [aux_sym_const_declaration_token1] = ACTIONS(9370), + [anon_sym_LPAREN] = ACTIONS(9372), + [aux_sym_as_type_clause_token2] = ACTIONS(9370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9370), + [aux_sym_visibility_token1] = ACTIONS(9370), + [aux_sym_visibility_token2] = ACTIONS(9370), + [aux_sym_elseif_fragment_token1] = ACTIONS(9370), + [aux_sym_else_fragment_token1] = ACTIONS(9370), + [aux_sym_select_statement_token1] = ACTIONS(9370), + [aux_sym__for_header_token1] = ACTIONS(9370), + [aux_sym_do_statement_token1] = ACTIONS(9370), + [aux_sym_do_condition_token1] = ACTIONS(9370), + [aux_sym_while_statement_token1] = ACTIONS(9370), + [aux_sym_with_statement_token1] = ACTIONS(9370), + [aux_sym_exit_statement_token1] = ACTIONS(9370), + [sym_end_statement] = ACTIONS(9372), + [aux_sym_on_goto_statement_token1] = ACTIONS(9370), + [aux_sym_on_goto_statement_token2] = ACTIONS(9370), + [aux_sym_on_error_statement_token2] = ACTIONS(9370), + [sym__ambiguous_redim_statement] = ACTIONS(9372), + [aux_sym_erase_statement_token1] = ACTIONS(9370), + [aux_sym_open_statement_token1] = ACTIONS(9370), + [aux_sym_file_mode_token2] = ACTIONS(9370), + [aux_sym_file_access_token2] = ACTIONS(9370), + [aux_sym_file_lock_token2] = ACTIONS(9370), + [aux_sym_print_statement_token1] = ACTIONS(9370), + [anon_sym_PLUS] = ACTIONS(9372), + [anon_sym_DASH] = ACTIONS(9370), + [anon_sym_QMARK] = ACTIONS(9372), + [aux_sym_close_statement_token1] = ACTIONS(9370), + [aux_sym_put_statement_token1] = ACTIONS(9370), + [aux_sym_unlock_statement_token1] = ACTIONS(9370), + [aux_sym_seek_statement_token1] = ACTIONS(9370), + [sym_reset_statement] = ACTIONS(9370), + [aux_sym_raise_event_statement_token1] = ACTIONS(9370), + [sym_stop_statement] = ACTIONS(9370), + [sym_beep_statement] = ACTIONS(9370), + [aux_sym_unload_statement_token1] = ACTIONS(9370), + [aux_sym_def_type_statement_token1] = ACTIONS(9370), + [aux_sym_def_type_statement_token2] = ACTIONS(9370), + [aux_sym_def_type_statement_token3] = ACTIONS(9370), + [aux_sym_def_type_statement_token4] = ACTIONS(9370), + [aux_sym_def_type_statement_token5] = ACTIONS(9370), + [aux_sym_def_type_statement_token6] = ACTIONS(9370), + [aux_sym_def_type_statement_token7] = ACTIONS(9370), + [aux_sym_def_type_statement_token8] = ACTIONS(9370), + [aux_sym_def_type_statement_token9] = ACTIONS(9370), + [aux_sym_def_type_statement_token10] = ACTIONS(9370), + [aux_sym_def_type_statement_token11] = ACTIONS(9370), + [aux_sym_def_type_statement_token12] = ACTIONS(9370), + [aux_sym_def_type_statement_token13] = ACTIONS(9370), + [aux_sym_def_type_statement_token14] = ACTIONS(9370), + [aux_sym_call_statement_token1] = ACTIONS(9370), + [sym__ambiguous_call_statement] = ACTIONS(9370), + [aux_sym_addressof_expression_token1] = ACTIONS(9370), + [aux_sym_type_of_expression_token1] = ACTIONS(9370), + [aux_sym_unary_expression_token1] = ACTIONS(9370), + [sym_string_literal] = ACTIONS(9372), + [sym_number_literal] = ACTIONS(9372), + [aux_sym_boolean_literal_token1] = ACTIONS(9370), + [aux_sym_boolean_literal_token2] = ACTIONS(9370), + [sym_nothing_literal] = ACTIONS(9370), + [sym_null_literal] = ACTIONS(9370), + [sym_empty_literal] = ACTIONS(9370), + [sym_date_literal] = ACTIONS(9372), + [anon_sym_POUND] = ACTIONS(9370), + }, + [STATE(6904)] = { + [aux_sym_inline_statement_sequence_repeat1] = STATE(6516), + [sym_identifier] = ACTIONS(8772), + [sym_newline] = ACTIONS(8774), + [anon_sym_COLON] = ACTIONS(8774), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8772), + [aux_sym_frm_property_statement_token1] = ACTIONS(8772), + [anon_sym_DOT] = ACTIONS(8772), + [anon_sym_BANG] = ACTIONS(8774), + [aux_sym__attribute_identifier_token1] = ACTIONS(8772), + [aux_sym_option_statement_token3] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8772), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8772), + [aux_sym_preprocessor_const_token1] = ACTIONS(8772), + [sym_static_modifier] = ACTIONS(8772), + [sym__dim_keyword] = ACTIONS(8772), + [sym__redim_keyword] = ACTIONS(8772), + [aux_sym_get_accessor_token1] = ACTIONS(8772), + [aux_sym_set_accessor_token1] = ACTIONS(8772), + [aux_sym_const_declaration_token1] = ACTIONS(8772), + [anon_sym_LPAREN] = ACTIONS(8774), + [aux_sym_as_type_clause_token2] = ACTIONS(8772), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8772), + [aux_sym_visibility_token1] = ACTIONS(8772), + [aux_sym_visibility_token2] = ACTIONS(8772), + [aux_sym_elseif_fragment_token1] = ACTIONS(8772), + [aux_sym_else_fragment_token1] = ACTIONS(8772), + [aux_sym_select_statement_token1] = ACTIONS(8772), + [aux_sym__for_header_token1] = ACTIONS(8772), + [aux_sym_do_statement_token1] = ACTIONS(8772), + [aux_sym_do_condition_token1] = ACTIONS(8772), + [aux_sym_with_statement_token1] = ACTIONS(8772), + [aux_sym_exit_statement_token1] = ACTIONS(8772), + [sym_end_statement] = ACTIONS(8774), + [aux_sym_on_goto_statement_token1] = ACTIONS(8772), + [aux_sym_on_goto_statement_token2] = ACTIONS(8772), + [aux_sym_on_error_statement_token2] = ACTIONS(8772), + [sym__ambiguous_redim_statement] = ACTIONS(8774), + [aux_sym_erase_statement_token1] = ACTIONS(8772), + [aux_sym_open_statement_token1] = ACTIONS(8772), + [aux_sym_file_mode_token2] = ACTIONS(8772), + [aux_sym_file_access_token2] = ACTIONS(8772), + [aux_sym_file_lock_token2] = ACTIONS(8772), + [aux_sym_print_statement_token1] = ACTIONS(8772), + [anon_sym_PLUS] = ACTIONS(8774), + [anon_sym_DASH] = ACTIONS(8772), + [anon_sym_QMARK] = ACTIONS(8774), + [aux_sym_close_statement_token1] = ACTIONS(8772), + [aux_sym_put_statement_token1] = ACTIONS(8772), + [aux_sym_unlock_statement_token1] = ACTIONS(8772), + [aux_sym_seek_statement_token1] = ACTIONS(8772), + [sym_reset_statement] = ACTIONS(8772), + [aux_sym_raise_event_statement_token1] = ACTIONS(8772), + [sym_stop_statement] = ACTIONS(8772), + [sym_beep_statement] = ACTIONS(8772), + [aux_sym_unload_statement_token1] = ACTIONS(8772), + [aux_sym_def_type_statement_token1] = ACTIONS(8772), + [aux_sym_def_type_statement_token2] = ACTIONS(8772), + [aux_sym_def_type_statement_token3] = ACTIONS(8772), + [aux_sym_def_type_statement_token4] = ACTIONS(8772), + [aux_sym_def_type_statement_token5] = ACTIONS(8772), + [aux_sym_def_type_statement_token6] = ACTIONS(8772), + [aux_sym_def_type_statement_token7] = ACTIONS(8772), + [aux_sym_def_type_statement_token8] = ACTIONS(8772), + [aux_sym_def_type_statement_token9] = ACTIONS(8772), + [aux_sym_def_type_statement_token10] = ACTIONS(8772), + [aux_sym_def_type_statement_token11] = ACTIONS(8772), + [aux_sym_def_type_statement_token12] = ACTIONS(8772), + [aux_sym_def_type_statement_token13] = ACTIONS(8772), + [aux_sym_def_type_statement_token14] = ACTIONS(8772), + [aux_sym_call_statement_token1] = ACTIONS(8772), + [sym__ambiguous_call_statement] = ACTIONS(8772), + [aux_sym_addressof_expression_token1] = ACTIONS(8772), + [aux_sym_type_of_expression_token1] = ACTIONS(8772), + [aux_sym_unary_expression_token1] = ACTIONS(8772), + [sym_string_literal] = ACTIONS(8774), + [sym_number_literal] = ACTIONS(8774), + [aux_sym_boolean_literal_token1] = ACTIONS(8772), + [aux_sym_boolean_literal_token2] = ACTIONS(8772), + [sym_nothing_literal] = ACTIONS(8772), + [sym_null_literal] = ACTIONS(8772), + [sym_empty_literal] = ACTIONS(8772), + [sym_date_literal] = ACTIONS(8774), + [anon_sym_POUND] = ACTIONS(8772), + }, + [STATE(6905)] = { + [sym_identifier] = ACTIONS(8729), + [sym_newline] = ACTIONS(8731), + [anon_sym_COLON] = ACTIONS(8731), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8729), + [aux_sym_frm_property_statement_token1] = ACTIONS(8729), + [anon_sym_DOT] = ACTIONS(8729), + [anon_sym_BANG] = ACTIONS(8731), + [aux_sym__attribute_identifier_token1] = ACTIONS(8729), + [aux_sym_option_statement_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8729), + [aux_sym_preprocessor_const_token1] = ACTIONS(8729), + [sym_static_modifier] = ACTIONS(8729), + [sym__dim_keyword] = ACTIONS(8729), + [sym__redim_keyword] = ACTIONS(8729), + [aux_sym_get_accessor_token1] = ACTIONS(8729), + [aux_sym_set_accessor_token1] = ACTIONS(8729), + [aux_sym_const_declaration_token1] = ACTIONS(8729), + [anon_sym_LPAREN] = ACTIONS(8731), + [aux_sym_as_type_clause_token2] = ACTIONS(8729), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8729), + [aux_sym_visibility_token1] = ACTIONS(8729), + [aux_sym_visibility_token2] = ACTIONS(8729), + [aux_sym_elseif_fragment_token1] = ACTIONS(8729), + [aux_sym_else_fragment_token1] = ACTIONS(8729), + [aux_sym_select_statement_token1] = ACTIONS(8729), + [aux_sym__for_header_token1] = ACTIONS(8729), + [aux_sym_do_statement_token1] = ACTIONS(8729), + [aux_sym_do_condition_token1] = ACTIONS(8729), + [aux_sym_while_statement_token1] = ACTIONS(8729), + [aux_sym_with_statement_token1] = ACTIONS(8729), + [aux_sym_exit_statement_token1] = ACTIONS(8729), + [sym_end_statement] = ACTIONS(8731), + [aux_sym_on_goto_statement_token1] = ACTIONS(8729), + [aux_sym_on_goto_statement_token2] = ACTIONS(8729), + [aux_sym_on_error_statement_token2] = ACTIONS(8729), + [sym__ambiguous_redim_statement] = ACTIONS(8731), + [aux_sym_erase_statement_token1] = ACTIONS(8729), + [aux_sym_open_statement_token1] = ACTIONS(8729), + [aux_sym_file_mode_token2] = ACTIONS(8729), + [aux_sym_file_access_token2] = ACTIONS(8729), + [aux_sym_file_lock_token2] = ACTIONS(8729), + [aux_sym_print_statement_token1] = ACTIONS(8729), + [anon_sym_PLUS] = ACTIONS(8731), + [anon_sym_DASH] = ACTIONS(8729), + [anon_sym_QMARK] = ACTIONS(8731), + [aux_sym_close_statement_token1] = ACTIONS(8729), + [aux_sym_put_statement_token1] = ACTIONS(8729), + [aux_sym_unlock_statement_token1] = ACTIONS(8729), + [aux_sym_seek_statement_token1] = ACTIONS(8729), + [sym_reset_statement] = ACTIONS(8729), + [aux_sym_raise_event_statement_token1] = ACTIONS(8729), + [sym_stop_statement] = ACTIONS(8729), + [sym_beep_statement] = ACTIONS(8729), + [aux_sym_unload_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token2] = ACTIONS(8729), + [aux_sym_def_type_statement_token3] = ACTIONS(8729), + [aux_sym_def_type_statement_token4] = ACTIONS(8729), + [aux_sym_def_type_statement_token5] = ACTIONS(8729), + [aux_sym_def_type_statement_token6] = ACTIONS(8729), + [aux_sym_def_type_statement_token7] = ACTIONS(8729), + [aux_sym_def_type_statement_token8] = ACTIONS(8729), + [aux_sym_def_type_statement_token9] = ACTIONS(8729), + [aux_sym_def_type_statement_token10] = ACTIONS(8729), + [aux_sym_def_type_statement_token11] = ACTIONS(8729), + [aux_sym_def_type_statement_token12] = ACTIONS(8729), + [aux_sym_def_type_statement_token13] = ACTIONS(8729), + [aux_sym_def_type_statement_token14] = ACTIONS(8729), + [aux_sym_call_statement_token1] = ACTIONS(8729), + [sym__ambiguous_call_statement] = ACTIONS(8729), + [aux_sym_addressof_expression_token1] = ACTIONS(8729), + [aux_sym_type_of_expression_token1] = ACTIONS(8729), + [aux_sym_unary_expression_token1] = ACTIONS(8729), + [sym_string_literal] = ACTIONS(8731), + [sym_number_literal] = ACTIONS(8731), + [aux_sym_boolean_literal_token1] = ACTIONS(8729), + [aux_sym_boolean_literal_token2] = ACTIONS(8729), + [sym_nothing_literal] = ACTIONS(8729), + [sym_null_literal] = ACTIONS(8729), + [sym_empty_literal] = ACTIONS(8729), + [sym_date_literal] = ACTIONS(8731), + [anon_sym_POUND] = ACTIONS(8729), + }, + [STATE(6906)] = { + [sym_identifier] = ACTIONS(9635), + [sym_newline] = ACTIONS(9637), + [anon_sym_COLON] = ACTIONS(9637), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9635), + [aux_sym_frm_property_statement_token1] = ACTIONS(9635), + [anon_sym_DOT] = ACTIONS(9635), + [anon_sym_BANG] = ACTIONS(9637), + [aux_sym__attribute_identifier_token1] = ACTIONS(9635), + [aux_sym_option_statement_token3] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9635), + [aux_sym_preprocessor_const_token1] = ACTIONS(9635), + [sym_static_modifier] = ACTIONS(9635), + [sym__dim_keyword] = ACTIONS(9635), + [sym__redim_keyword] = ACTIONS(9635), + [aux_sym_get_accessor_token1] = ACTIONS(9635), + [aux_sym_set_accessor_token1] = ACTIONS(9635), + [aux_sym_const_declaration_token1] = ACTIONS(9635), + [anon_sym_LPAREN] = ACTIONS(9637), + [aux_sym_as_type_clause_token2] = ACTIONS(9635), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9635), + [aux_sym_visibility_token1] = ACTIONS(9635), + [aux_sym_visibility_token2] = ACTIONS(9635), + [aux_sym_elseif_fragment_token1] = ACTIONS(9635), + [aux_sym_else_fragment_token1] = ACTIONS(9635), + [aux_sym_select_statement_token1] = ACTIONS(9635), + [aux_sym__for_header_token1] = ACTIONS(9635), + [aux_sym_do_statement_token1] = ACTIONS(9635), + [aux_sym_do_condition_token1] = ACTIONS(9635), + [aux_sym_with_statement_token1] = ACTIONS(9635), + [aux_sym_exit_statement_token1] = ACTIONS(9635), + [sym_end_statement] = ACTIONS(9637), + [aux_sym_on_goto_statement_token1] = ACTIONS(9635), + [aux_sym_on_goto_statement_token2] = ACTIONS(9635), + [aux_sym_on_error_statement_token2] = ACTIONS(9635), + [sym__ambiguous_redim_statement] = ACTIONS(9637), + [aux_sym_erase_statement_token1] = ACTIONS(9635), + [aux_sym_open_statement_token1] = ACTIONS(9635), + [aux_sym_file_mode_token2] = ACTIONS(9635), + [aux_sym_file_access_token2] = ACTIONS(9635), + [aux_sym_file_lock_token2] = ACTIONS(9635), + [aux_sym_print_statement_token1] = ACTIONS(9635), + [anon_sym_PLUS] = ACTIONS(9637), + [anon_sym_DASH] = ACTIONS(9635), + [anon_sym_QMARK] = ACTIONS(9637), + [aux_sym_close_statement_token1] = ACTIONS(9635), + [aux_sym_put_statement_token1] = ACTIONS(9635), + [aux_sym_unlock_statement_token1] = ACTIONS(9635), + [aux_sym_seek_statement_token1] = ACTIONS(9635), + [sym_reset_statement] = ACTIONS(9635), + [aux_sym_raise_event_statement_token1] = ACTIONS(9635), + [sym_stop_statement] = ACTIONS(9635), + [sym_beep_statement] = ACTIONS(9635), + [aux_sym_unload_statement_token1] = ACTIONS(9635), + [aux_sym_def_type_statement_token1] = ACTIONS(9635), + [aux_sym_def_type_statement_token2] = ACTIONS(9635), + [aux_sym_def_type_statement_token3] = ACTIONS(9635), + [aux_sym_def_type_statement_token4] = ACTIONS(9635), + [aux_sym_def_type_statement_token5] = ACTIONS(9635), + [aux_sym_def_type_statement_token6] = ACTIONS(9635), + [aux_sym_def_type_statement_token7] = ACTIONS(9635), + [aux_sym_def_type_statement_token8] = ACTIONS(9635), + [aux_sym_def_type_statement_token9] = ACTIONS(9635), + [aux_sym_def_type_statement_token10] = ACTIONS(9635), + [aux_sym_def_type_statement_token11] = ACTIONS(9635), + [aux_sym_def_type_statement_token12] = ACTIONS(9635), + [aux_sym_def_type_statement_token13] = ACTIONS(9635), + [aux_sym_def_type_statement_token14] = ACTIONS(9635), + [aux_sym_call_statement_token1] = ACTIONS(9635), + [sym__ambiguous_call_statement] = ACTIONS(9635), + [aux_sym_addressof_expression_token1] = ACTIONS(9635), + [aux_sym_type_of_expression_token1] = ACTIONS(9635), + [aux_sym_unary_expression_token1] = ACTIONS(9635), + [sym_string_literal] = ACTIONS(9637), + [sym_number_literal] = ACTIONS(9637), + [aux_sym_boolean_literal_token1] = ACTIONS(9635), + [aux_sym_boolean_literal_token2] = ACTIONS(9635), + [sym_nothing_literal] = ACTIONS(9635), + [sym_null_literal] = ACTIONS(9635), + [sym_empty_literal] = ACTIONS(9635), + [sym_date_literal] = ACTIONS(9637), + [anon_sym_POUND] = ACTIONS(9635), + }, + [STATE(6907)] = { + [sym_identifier] = ACTIONS(9639), + [sym_newline] = ACTIONS(9641), + [anon_sym_COLON] = ACTIONS(9641), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9639), + [aux_sym_frm_property_statement_token1] = ACTIONS(9639), + [anon_sym_DOT] = ACTIONS(9639), + [anon_sym_BANG] = ACTIONS(9641), + [aux_sym__attribute_identifier_token1] = ACTIONS(9639), + [aux_sym_option_statement_token3] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9639), + [aux_sym_preprocessor_const_token1] = ACTIONS(9639), + [sym_static_modifier] = ACTIONS(9639), + [sym__dim_keyword] = ACTIONS(9639), + [sym__redim_keyword] = ACTIONS(9639), + [aux_sym_get_accessor_token1] = ACTIONS(9639), + [aux_sym_set_accessor_token1] = ACTIONS(9639), + [aux_sym_const_declaration_token1] = ACTIONS(9639), + [anon_sym_LPAREN] = ACTIONS(9641), + [aux_sym_as_type_clause_token2] = ACTIONS(9639), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9639), + [aux_sym_visibility_token1] = ACTIONS(9639), + [aux_sym_visibility_token2] = ACTIONS(9639), + [aux_sym_elseif_fragment_token1] = ACTIONS(9639), + [aux_sym_else_fragment_token1] = ACTIONS(9639), + [aux_sym_select_statement_token1] = ACTIONS(9639), + [aux_sym_select_statement_token2] = ACTIONS(9639), + [aux_sym__for_header_token1] = ACTIONS(9639), + [aux_sym_do_statement_token1] = ACTIONS(9639), + [aux_sym_do_condition_token1] = ACTIONS(9639), + [aux_sym_with_statement_token1] = ACTIONS(9639), + [aux_sym_exit_statement_token1] = ACTIONS(9639), + [sym_end_statement] = ACTIONS(9641), + [aux_sym_on_goto_statement_token1] = ACTIONS(9639), + [aux_sym_on_goto_statement_token2] = ACTIONS(9639), + [aux_sym_on_error_statement_token2] = ACTIONS(9639), + [sym__ambiguous_redim_statement] = ACTIONS(9641), + [aux_sym_erase_statement_token1] = ACTIONS(9639), + [aux_sym_open_statement_token1] = ACTIONS(9639), + [aux_sym_file_mode_token2] = ACTIONS(9639), + [aux_sym_file_access_token2] = ACTIONS(9639), + [aux_sym_file_lock_token2] = ACTIONS(9639), + [aux_sym_print_statement_token1] = ACTIONS(9639), + [anon_sym_PLUS] = ACTIONS(9641), + [anon_sym_DASH] = ACTIONS(9639), + [anon_sym_QMARK] = ACTIONS(9641), + [aux_sym_close_statement_token1] = ACTIONS(9639), + [aux_sym_put_statement_token1] = ACTIONS(9639), + [aux_sym_unlock_statement_token1] = ACTIONS(9639), + [aux_sym_seek_statement_token1] = ACTIONS(9639), + [sym_reset_statement] = ACTIONS(9639), + [aux_sym_raise_event_statement_token1] = ACTIONS(9639), + [sym_stop_statement] = ACTIONS(9639), + [sym_beep_statement] = ACTIONS(9639), + [aux_sym_unload_statement_token1] = ACTIONS(9639), + [aux_sym_def_type_statement_token1] = ACTIONS(9639), + [aux_sym_def_type_statement_token2] = ACTIONS(9639), + [aux_sym_def_type_statement_token3] = ACTIONS(9639), + [aux_sym_def_type_statement_token4] = ACTIONS(9639), + [aux_sym_def_type_statement_token5] = ACTIONS(9639), + [aux_sym_def_type_statement_token6] = ACTIONS(9639), + [aux_sym_def_type_statement_token7] = ACTIONS(9639), + [aux_sym_def_type_statement_token8] = ACTIONS(9639), + [aux_sym_def_type_statement_token9] = ACTIONS(9639), + [aux_sym_def_type_statement_token10] = ACTIONS(9639), + [aux_sym_def_type_statement_token11] = ACTIONS(9639), + [aux_sym_def_type_statement_token12] = ACTIONS(9639), + [aux_sym_def_type_statement_token13] = ACTIONS(9639), + [aux_sym_def_type_statement_token14] = ACTIONS(9639), + [aux_sym_call_statement_token1] = ACTIONS(9639), + [sym__ambiguous_call_statement] = ACTIONS(9639), + [aux_sym_addressof_expression_token1] = ACTIONS(9639), + [aux_sym_type_of_expression_token1] = ACTIONS(9639), + [aux_sym_unary_expression_token1] = ACTIONS(9639), + [sym_string_literal] = ACTIONS(9641), + [sym_number_literal] = ACTIONS(9641), + [aux_sym_boolean_literal_token1] = ACTIONS(9639), + [aux_sym_boolean_literal_token2] = ACTIONS(9639), + [sym_nothing_literal] = ACTIONS(9639), + [sym_null_literal] = ACTIONS(9639), + [sym_empty_literal] = ACTIONS(9639), + [sym_date_literal] = ACTIONS(9641), + [anon_sym_POUND] = ACTIONS(9639), + }, + [STATE(6908)] = { + [sym_identifier] = ACTIONS(9427), + [sym_newline] = ACTIONS(9429), + [anon_sym_COLON] = ACTIONS(9429), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9427), + [aux_sym_frm_property_statement_token1] = ACTIONS(9427), + [anon_sym_DOT] = ACTIONS(9427), + [anon_sym_BANG] = ACTIONS(9429), + [aux_sym__attribute_identifier_token1] = ACTIONS(9427), + [aux_sym_option_statement_token3] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9427), + [aux_sym_preprocessor_const_token1] = ACTIONS(9427), + [sym_static_modifier] = ACTIONS(9427), + [sym__dim_keyword] = ACTIONS(9427), + [sym__redim_keyword] = ACTIONS(9427), + [aux_sym_get_accessor_token1] = ACTIONS(9427), + [aux_sym_set_accessor_token1] = ACTIONS(9427), + [aux_sym_const_declaration_token1] = ACTIONS(9427), + [anon_sym_LPAREN] = ACTIONS(9429), + [aux_sym_as_type_clause_token2] = ACTIONS(9427), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9427), + [aux_sym_visibility_token1] = ACTIONS(9427), + [aux_sym_visibility_token2] = ACTIONS(9427), + [aux_sym_elseif_fragment_token1] = ACTIONS(9427), + [aux_sym_else_fragment_token1] = ACTIONS(9427), + [aux_sym_select_statement_token1] = ACTIONS(9427), + [aux_sym__for_header_token1] = ACTIONS(9427), + [aux_sym_do_statement_token1] = ACTIONS(9427), + [aux_sym_do_condition_token1] = ACTIONS(9427), + [aux_sym_with_statement_token1] = ACTIONS(9427), + [aux_sym_exit_statement_token1] = ACTIONS(9427), + [sym_end_statement] = ACTIONS(9429), + [aux_sym_on_goto_statement_token1] = ACTIONS(9427), + [aux_sym_on_goto_statement_token2] = ACTIONS(9427), + [aux_sym_on_error_statement_token2] = ACTIONS(9427), + [sym__ambiguous_redim_statement] = ACTIONS(9429), + [aux_sym_erase_statement_token1] = ACTIONS(9427), + [aux_sym_open_statement_token1] = ACTIONS(9427), + [aux_sym_file_mode_token2] = ACTIONS(9427), + [aux_sym_file_access_token2] = ACTIONS(9427), + [aux_sym_file_lock_token2] = ACTIONS(9427), + [aux_sym_print_statement_token1] = ACTIONS(9427), + [anon_sym_PLUS] = ACTIONS(9429), + [anon_sym_DASH] = ACTIONS(9427), + [anon_sym_QMARK] = ACTIONS(9429), + [aux_sym_close_statement_token1] = ACTIONS(9427), + [aux_sym_put_statement_token1] = ACTIONS(9427), + [aux_sym_unlock_statement_token1] = ACTIONS(9427), + [aux_sym_seek_statement_token1] = ACTIONS(9427), + [sym_reset_statement] = ACTIONS(9427), + [aux_sym_raise_event_statement_token1] = ACTIONS(9427), + [sym_stop_statement] = ACTIONS(9427), + [sym_beep_statement] = ACTIONS(9427), + [aux_sym_unload_statement_token1] = ACTIONS(9427), + [aux_sym_def_type_statement_token1] = ACTIONS(9427), + [aux_sym_def_type_statement_token2] = ACTIONS(9427), + [aux_sym_def_type_statement_token3] = ACTIONS(9427), + [aux_sym_def_type_statement_token4] = ACTIONS(9427), + [aux_sym_def_type_statement_token5] = ACTIONS(9427), + [aux_sym_def_type_statement_token6] = ACTIONS(9427), + [aux_sym_def_type_statement_token7] = ACTIONS(9427), + [aux_sym_def_type_statement_token8] = ACTIONS(9427), + [aux_sym_def_type_statement_token9] = ACTIONS(9427), + [aux_sym_def_type_statement_token10] = ACTIONS(9427), + [aux_sym_def_type_statement_token11] = ACTIONS(9427), + [aux_sym_def_type_statement_token12] = ACTIONS(9427), + [aux_sym_def_type_statement_token13] = ACTIONS(9427), + [aux_sym_def_type_statement_token14] = ACTIONS(9427), + [aux_sym_call_statement_token1] = ACTIONS(9427), + [sym__ambiguous_call_statement] = ACTIONS(9427), + [aux_sym_addressof_expression_token1] = ACTIONS(9427), + [aux_sym_type_of_expression_token1] = ACTIONS(9427), + [aux_sym_unary_expression_token1] = ACTIONS(9427), + [sym_string_literal] = ACTIONS(9429), + [sym_number_literal] = ACTIONS(9429), + [aux_sym_boolean_literal_token1] = ACTIONS(9427), + [aux_sym_boolean_literal_token2] = ACTIONS(9427), + [sym_nothing_literal] = ACTIONS(9427), + [sym_null_literal] = ACTIONS(9427), + [sym_empty_literal] = ACTIONS(9427), + [sym_date_literal] = ACTIONS(9429), + [anon_sym_POUND] = ACTIONS(9427), + }, + [STATE(6909)] = { + [sym_identifier] = ACTIONS(8745), + [sym_newline] = ACTIONS(8747), + [anon_sym_COLON] = ACTIONS(8747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8745), + [aux_sym_frm_property_statement_token1] = ACTIONS(8745), + [anon_sym_DOT] = ACTIONS(8745), + [anon_sym_BANG] = ACTIONS(8747), + [aux_sym__attribute_identifier_token1] = ACTIONS(8745), + [aux_sym_option_statement_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8745), + [aux_sym_preprocessor_const_token1] = ACTIONS(8745), + [sym_static_modifier] = ACTIONS(8745), + [sym__dim_keyword] = ACTIONS(8745), + [sym__redim_keyword] = ACTIONS(8745), + [aux_sym_get_accessor_token1] = ACTIONS(8745), + [aux_sym_set_accessor_token1] = ACTIONS(8745), + [aux_sym_const_declaration_token1] = ACTIONS(8745), + [anon_sym_LPAREN] = ACTIONS(8747), + [aux_sym_as_type_clause_token2] = ACTIONS(8745), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8745), + [aux_sym_visibility_token1] = ACTIONS(8745), + [aux_sym_visibility_token2] = ACTIONS(8745), + [aux_sym_elseif_fragment_token1] = ACTIONS(8745), + [aux_sym_else_fragment_token1] = ACTIONS(8745), + [aux_sym_select_statement_token1] = ACTIONS(8745), + [aux_sym__for_header_token1] = ACTIONS(8745), + [aux_sym_do_statement_token1] = ACTIONS(8745), + [aux_sym_do_condition_token1] = ACTIONS(8745), + [aux_sym_while_statement_token1] = ACTIONS(8745), + [aux_sym_with_statement_token1] = ACTIONS(8745), + [aux_sym_exit_statement_token1] = ACTIONS(8745), + [sym_end_statement] = ACTIONS(8747), + [aux_sym_on_goto_statement_token1] = ACTIONS(8745), + [aux_sym_on_goto_statement_token2] = ACTIONS(8745), + [aux_sym_on_error_statement_token2] = ACTIONS(8745), + [sym__ambiguous_redim_statement] = ACTIONS(8747), + [aux_sym_erase_statement_token1] = ACTIONS(8745), + [aux_sym_open_statement_token1] = ACTIONS(8745), + [aux_sym_file_mode_token2] = ACTIONS(8745), + [aux_sym_file_access_token2] = ACTIONS(8745), + [aux_sym_file_lock_token2] = ACTIONS(8745), + [aux_sym_print_statement_token1] = ACTIONS(8745), + [anon_sym_PLUS] = ACTIONS(8747), + [anon_sym_DASH] = ACTIONS(8745), + [anon_sym_QMARK] = ACTIONS(8747), + [aux_sym_close_statement_token1] = ACTIONS(8745), + [aux_sym_put_statement_token1] = ACTIONS(8745), + [aux_sym_unlock_statement_token1] = ACTIONS(8745), + [aux_sym_seek_statement_token1] = ACTIONS(8745), + [sym_reset_statement] = ACTIONS(8745), + [aux_sym_raise_event_statement_token1] = ACTIONS(8745), + [sym_stop_statement] = ACTIONS(8745), + [sym_beep_statement] = ACTIONS(8745), + [aux_sym_unload_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token2] = ACTIONS(8745), + [aux_sym_def_type_statement_token3] = ACTIONS(8745), + [aux_sym_def_type_statement_token4] = ACTIONS(8745), + [aux_sym_def_type_statement_token5] = ACTIONS(8745), + [aux_sym_def_type_statement_token6] = ACTIONS(8745), + [aux_sym_def_type_statement_token7] = ACTIONS(8745), + [aux_sym_def_type_statement_token8] = ACTIONS(8745), + [aux_sym_def_type_statement_token9] = ACTIONS(8745), + [aux_sym_def_type_statement_token10] = ACTIONS(8745), + [aux_sym_def_type_statement_token11] = ACTIONS(8745), + [aux_sym_def_type_statement_token12] = ACTIONS(8745), + [aux_sym_def_type_statement_token13] = ACTIONS(8745), + [aux_sym_def_type_statement_token14] = ACTIONS(8745), + [aux_sym_call_statement_token1] = ACTIONS(8745), + [sym__ambiguous_call_statement] = ACTIONS(8745), + [aux_sym_addressof_expression_token1] = ACTIONS(8745), + [aux_sym_type_of_expression_token1] = ACTIONS(8745), + [aux_sym_unary_expression_token1] = ACTIONS(8745), + [sym_string_literal] = ACTIONS(8747), + [sym_number_literal] = ACTIONS(8747), + [aux_sym_boolean_literal_token1] = ACTIONS(8745), + [aux_sym_boolean_literal_token2] = ACTIONS(8745), + [sym_nothing_literal] = ACTIONS(8745), + [sym_null_literal] = ACTIONS(8745), + [sym_empty_literal] = ACTIONS(8745), + [sym_date_literal] = ACTIONS(8747), + [anon_sym_POUND] = ACTIONS(8745), + }, + [STATE(6910)] = { + [sym_identifier] = ACTIONS(9643), + [sym_newline] = ACTIONS(9645), + [anon_sym_COLON] = ACTIONS(9645), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9643), + [aux_sym_frm_property_statement_token1] = ACTIONS(9643), + [anon_sym_DOT] = ACTIONS(9643), + [anon_sym_BANG] = ACTIONS(9645), + [aux_sym__attribute_identifier_token1] = ACTIONS(9643), + [aux_sym_option_statement_token3] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9643), + [aux_sym_preprocessor_const_token1] = ACTIONS(9643), + [sym_static_modifier] = ACTIONS(9643), + [sym__dim_keyword] = ACTIONS(9643), + [sym__redim_keyword] = ACTIONS(9643), + [aux_sym_get_accessor_token1] = ACTIONS(9643), + [aux_sym_set_accessor_token1] = ACTIONS(9643), + [aux_sym_const_declaration_token1] = ACTIONS(9643), + [anon_sym_LPAREN] = ACTIONS(9645), + [aux_sym_as_type_clause_token2] = ACTIONS(9643), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9643), + [aux_sym_visibility_token1] = ACTIONS(9643), + [aux_sym_visibility_token2] = ACTIONS(9643), + [aux_sym_elseif_fragment_token1] = ACTIONS(9643), + [aux_sym_else_fragment_token1] = ACTIONS(9643), + [aux_sym_select_statement_token1] = ACTIONS(9643), + [aux_sym_select_statement_token2] = ACTIONS(9643), + [aux_sym__for_header_token1] = ACTIONS(9643), + [aux_sym_do_statement_token1] = ACTIONS(9643), + [aux_sym_do_condition_token1] = ACTIONS(9643), + [aux_sym_with_statement_token1] = ACTIONS(9643), + [aux_sym_exit_statement_token1] = ACTIONS(9643), + [sym_end_statement] = ACTIONS(9645), + [aux_sym_on_goto_statement_token1] = ACTIONS(9643), + [aux_sym_on_goto_statement_token2] = ACTIONS(9643), + [aux_sym_on_error_statement_token2] = ACTIONS(9643), + [sym__ambiguous_redim_statement] = ACTIONS(9645), + [aux_sym_erase_statement_token1] = ACTIONS(9643), + [aux_sym_open_statement_token1] = ACTIONS(9643), + [aux_sym_file_mode_token2] = ACTIONS(9643), + [aux_sym_file_access_token2] = ACTIONS(9643), + [aux_sym_file_lock_token2] = ACTIONS(9643), + [aux_sym_print_statement_token1] = ACTIONS(9643), + [anon_sym_PLUS] = ACTIONS(9645), + [anon_sym_DASH] = ACTIONS(9643), + [anon_sym_QMARK] = ACTIONS(9645), + [aux_sym_close_statement_token1] = ACTIONS(9643), + [aux_sym_put_statement_token1] = ACTIONS(9643), + [aux_sym_unlock_statement_token1] = ACTIONS(9643), + [aux_sym_seek_statement_token1] = ACTIONS(9643), + [sym_reset_statement] = ACTIONS(9643), + [aux_sym_raise_event_statement_token1] = ACTIONS(9643), + [sym_stop_statement] = ACTIONS(9643), + [sym_beep_statement] = ACTIONS(9643), + [aux_sym_unload_statement_token1] = ACTIONS(9643), + [aux_sym_def_type_statement_token1] = ACTIONS(9643), + [aux_sym_def_type_statement_token2] = ACTIONS(9643), + [aux_sym_def_type_statement_token3] = ACTIONS(9643), + [aux_sym_def_type_statement_token4] = ACTIONS(9643), + [aux_sym_def_type_statement_token5] = ACTIONS(9643), + [aux_sym_def_type_statement_token6] = ACTIONS(9643), + [aux_sym_def_type_statement_token7] = ACTIONS(9643), + [aux_sym_def_type_statement_token8] = ACTIONS(9643), + [aux_sym_def_type_statement_token9] = ACTIONS(9643), + [aux_sym_def_type_statement_token10] = ACTIONS(9643), + [aux_sym_def_type_statement_token11] = ACTIONS(9643), + [aux_sym_def_type_statement_token12] = ACTIONS(9643), + [aux_sym_def_type_statement_token13] = ACTIONS(9643), + [aux_sym_def_type_statement_token14] = ACTIONS(9643), + [aux_sym_call_statement_token1] = ACTIONS(9643), + [sym__ambiguous_call_statement] = ACTIONS(9643), + [aux_sym_addressof_expression_token1] = ACTIONS(9643), + [aux_sym_type_of_expression_token1] = ACTIONS(9643), + [aux_sym_unary_expression_token1] = ACTIONS(9643), + [sym_string_literal] = ACTIONS(9645), + [sym_number_literal] = ACTIONS(9645), + [aux_sym_boolean_literal_token1] = ACTIONS(9643), + [aux_sym_boolean_literal_token2] = ACTIONS(9643), + [sym_nothing_literal] = ACTIONS(9643), + [sym_null_literal] = ACTIONS(9643), + [sym_empty_literal] = ACTIONS(9643), + [sym_date_literal] = ACTIONS(9645), + [anon_sym_POUND] = ACTIONS(9643), + }, + [STATE(6911)] = { + [sym_identifier] = ACTIONS(9647), + [sym_newline] = ACTIONS(9649), + [anon_sym_COLON] = ACTIONS(9649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9647), + [aux_sym_frm_property_statement_token1] = ACTIONS(9647), + [anon_sym_DOT] = ACTIONS(9647), + [anon_sym_BANG] = ACTIONS(9649), + [aux_sym__attribute_identifier_token1] = ACTIONS(9647), + [aux_sym_option_statement_token3] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9647), + [aux_sym_preprocessor_const_token1] = ACTIONS(9647), + [sym_static_modifier] = ACTIONS(9647), + [sym__dim_keyword] = ACTIONS(9647), + [sym__redim_keyword] = ACTIONS(9647), + [aux_sym_get_accessor_token1] = ACTIONS(9647), + [aux_sym_set_accessor_token1] = ACTIONS(9647), + [aux_sym_const_declaration_token1] = ACTIONS(9647), + [anon_sym_LPAREN] = ACTIONS(9649), + [aux_sym_as_type_clause_token2] = ACTIONS(9647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9647), + [aux_sym_visibility_token1] = ACTIONS(9647), + [aux_sym_visibility_token2] = ACTIONS(9647), + [aux_sym_elseif_fragment_token1] = ACTIONS(9647), + [aux_sym_else_fragment_token1] = ACTIONS(9647), + [aux_sym_select_statement_token1] = ACTIONS(9647), + [aux_sym_select_statement_token2] = ACTIONS(9647), + [aux_sym__for_header_token1] = ACTIONS(9647), + [aux_sym_do_statement_token1] = ACTIONS(9647), + [aux_sym_do_condition_token1] = ACTIONS(9647), + [aux_sym_with_statement_token1] = ACTIONS(9647), + [aux_sym_exit_statement_token1] = ACTIONS(9647), + [sym_end_statement] = ACTIONS(9649), + [aux_sym_on_goto_statement_token1] = ACTIONS(9647), + [aux_sym_on_goto_statement_token2] = ACTIONS(9647), + [aux_sym_on_error_statement_token2] = ACTIONS(9647), + [sym__ambiguous_redim_statement] = ACTIONS(9649), + [aux_sym_erase_statement_token1] = ACTIONS(9647), + [aux_sym_open_statement_token1] = ACTIONS(9647), + [aux_sym_file_mode_token2] = ACTIONS(9647), + [aux_sym_file_access_token2] = ACTIONS(9647), + [aux_sym_file_lock_token2] = ACTIONS(9647), + [aux_sym_print_statement_token1] = ACTIONS(9647), + [anon_sym_PLUS] = ACTIONS(9649), + [anon_sym_DASH] = ACTIONS(9647), + [anon_sym_QMARK] = ACTIONS(9649), + [aux_sym_close_statement_token1] = ACTIONS(9647), + [aux_sym_put_statement_token1] = ACTIONS(9647), + [aux_sym_unlock_statement_token1] = ACTIONS(9647), + [aux_sym_seek_statement_token1] = ACTIONS(9647), + [sym_reset_statement] = ACTIONS(9647), + [aux_sym_raise_event_statement_token1] = ACTIONS(9647), + [sym_stop_statement] = ACTIONS(9647), + [sym_beep_statement] = ACTIONS(9647), + [aux_sym_unload_statement_token1] = ACTIONS(9647), + [aux_sym_def_type_statement_token1] = ACTIONS(9647), + [aux_sym_def_type_statement_token2] = ACTIONS(9647), + [aux_sym_def_type_statement_token3] = ACTIONS(9647), + [aux_sym_def_type_statement_token4] = ACTIONS(9647), + [aux_sym_def_type_statement_token5] = ACTIONS(9647), + [aux_sym_def_type_statement_token6] = ACTIONS(9647), + [aux_sym_def_type_statement_token7] = ACTIONS(9647), + [aux_sym_def_type_statement_token8] = ACTIONS(9647), + [aux_sym_def_type_statement_token9] = ACTIONS(9647), + [aux_sym_def_type_statement_token10] = ACTIONS(9647), + [aux_sym_def_type_statement_token11] = ACTIONS(9647), + [aux_sym_def_type_statement_token12] = ACTIONS(9647), + [aux_sym_def_type_statement_token13] = ACTIONS(9647), + [aux_sym_def_type_statement_token14] = ACTIONS(9647), + [aux_sym_call_statement_token1] = ACTIONS(9647), + [sym__ambiguous_call_statement] = ACTIONS(9647), + [aux_sym_addressof_expression_token1] = ACTIONS(9647), + [aux_sym_type_of_expression_token1] = ACTIONS(9647), + [aux_sym_unary_expression_token1] = ACTIONS(9647), + [sym_string_literal] = ACTIONS(9649), + [sym_number_literal] = ACTIONS(9649), + [aux_sym_boolean_literal_token1] = ACTIONS(9647), + [aux_sym_boolean_literal_token2] = ACTIONS(9647), + [sym_nothing_literal] = ACTIONS(9647), + [sym_null_literal] = ACTIONS(9647), + [sym_empty_literal] = ACTIONS(9647), + [sym_date_literal] = ACTIONS(9649), + [anon_sym_POUND] = ACTIONS(9647), + }, + [STATE(6912)] = { + [sym_identifier] = ACTIONS(9431), + [sym_newline] = ACTIONS(9433), + [anon_sym_COLON] = ACTIONS(9433), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9431), + [aux_sym_frm_property_statement_token1] = ACTIONS(9431), + [anon_sym_DOT] = ACTIONS(9431), + [anon_sym_BANG] = ACTIONS(9433), + [aux_sym__attribute_identifier_token1] = ACTIONS(9431), + [aux_sym_option_statement_token3] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9431), + [aux_sym_preprocessor_const_token1] = ACTIONS(9431), + [sym_static_modifier] = ACTIONS(9431), + [sym__dim_keyword] = ACTIONS(9431), + [sym__redim_keyword] = ACTIONS(9431), + [aux_sym_get_accessor_token1] = ACTIONS(9431), + [aux_sym_set_accessor_token1] = ACTIONS(9431), + [aux_sym_const_declaration_token1] = ACTIONS(9431), + [anon_sym_LPAREN] = ACTIONS(9433), + [aux_sym_as_type_clause_token2] = ACTIONS(9431), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9431), + [aux_sym_visibility_token1] = ACTIONS(9431), + [aux_sym_visibility_token2] = ACTIONS(9431), + [aux_sym_elseif_fragment_token1] = ACTIONS(9431), + [aux_sym_else_fragment_token1] = ACTIONS(9431), + [aux_sym_select_statement_token1] = ACTIONS(9431), + [aux_sym__for_header_token1] = ACTIONS(9431), + [aux_sym_do_statement_token1] = ACTIONS(9431), + [aux_sym_do_condition_token1] = ACTIONS(9431), + [aux_sym_with_statement_token1] = ACTIONS(9431), + [aux_sym_exit_statement_token1] = ACTIONS(9431), + [sym_end_statement] = ACTIONS(9433), + [aux_sym_on_goto_statement_token1] = ACTIONS(9431), + [aux_sym_on_goto_statement_token2] = ACTIONS(9431), + [aux_sym_on_error_statement_token2] = ACTIONS(9431), + [sym__ambiguous_redim_statement] = ACTIONS(9433), + [aux_sym_erase_statement_token1] = ACTIONS(9431), + [aux_sym_open_statement_token1] = ACTIONS(9431), + [aux_sym_file_mode_token2] = ACTIONS(9431), + [aux_sym_file_access_token2] = ACTIONS(9431), + [aux_sym_file_lock_token2] = ACTIONS(9431), + [aux_sym_print_statement_token1] = ACTIONS(9431), + [anon_sym_PLUS] = ACTIONS(9433), + [anon_sym_DASH] = ACTIONS(9431), + [anon_sym_QMARK] = ACTIONS(9433), + [aux_sym_close_statement_token1] = ACTIONS(9431), + [aux_sym_put_statement_token1] = ACTIONS(9431), + [aux_sym_unlock_statement_token1] = ACTIONS(9431), + [aux_sym_seek_statement_token1] = ACTIONS(9431), + [sym_reset_statement] = ACTIONS(9431), + [aux_sym_raise_event_statement_token1] = ACTIONS(9431), + [sym_stop_statement] = ACTIONS(9431), + [sym_beep_statement] = ACTIONS(9431), + [aux_sym_unload_statement_token1] = ACTIONS(9431), + [aux_sym_def_type_statement_token1] = ACTIONS(9431), + [aux_sym_def_type_statement_token2] = ACTIONS(9431), + [aux_sym_def_type_statement_token3] = ACTIONS(9431), + [aux_sym_def_type_statement_token4] = ACTIONS(9431), + [aux_sym_def_type_statement_token5] = ACTIONS(9431), + [aux_sym_def_type_statement_token6] = ACTIONS(9431), + [aux_sym_def_type_statement_token7] = ACTIONS(9431), + [aux_sym_def_type_statement_token8] = ACTIONS(9431), + [aux_sym_def_type_statement_token9] = ACTIONS(9431), + [aux_sym_def_type_statement_token10] = ACTIONS(9431), + [aux_sym_def_type_statement_token11] = ACTIONS(9431), + [aux_sym_def_type_statement_token12] = ACTIONS(9431), + [aux_sym_def_type_statement_token13] = ACTIONS(9431), + [aux_sym_def_type_statement_token14] = ACTIONS(9431), + [aux_sym_call_statement_token1] = ACTIONS(9431), + [sym__ambiguous_call_statement] = ACTIONS(9431), + [aux_sym_addressof_expression_token1] = ACTIONS(9431), + [aux_sym_type_of_expression_token1] = ACTIONS(9431), + [aux_sym_unary_expression_token1] = ACTIONS(9431), + [sym_string_literal] = ACTIONS(9433), + [sym_number_literal] = ACTIONS(9433), + [aux_sym_boolean_literal_token1] = ACTIONS(9431), + [aux_sym_boolean_literal_token2] = ACTIONS(9431), + [sym_nothing_literal] = ACTIONS(9431), + [sym_null_literal] = ACTIONS(9431), + [sym_empty_literal] = ACTIONS(9431), + [sym_date_literal] = ACTIONS(9433), + [anon_sym_POUND] = ACTIONS(9431), + }, + [STATE(6913)] = { + [sym_identifier] = ACTIONS(9654), + [sym_newline] = ACTIONS(9656), + [anon_sym_COLON] = ACTIONS(9656), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9654), + [aux_sym_frm_property_statement_token1] = ACTIONS(9654), + [anon_sym_DOT] = ACTIONS(9654), + [anon_sym_BANG] = ACTIONS(9656), + [aux_sym__attribute_identifier_token1] = ACTIONS(9654), + [aux_sym_option_statement_token3] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9654), + [aux_sym_preprocessor_const_token1] = ACTIONS(9654), + [sym_static_modifier] = ACTIONS(9654), + [sym__dim_keyword] = ACTIONS(9654), + [sym__redim_keyword] = ACTIONS(9654), + [aux_sym_get_accessor_token1] = ACTIONS(9654), + [aux_sym_set_accessor_token1] = ACTIONS(9654), + [aux_sym_const_declaration_token1] = ACTIONS(9654), + [anon_sym_LPAREN] = ACTIONS(9656), + [aux_sym_as_type_clause_token2] = ACTIONS(9654), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9654), + [aux_sym_visibility_token1] = ACTIONS(9654), + [aux_sym_visibility_token2] = ACTIONS(9654), + [aux_sym_elseif_fragment_token1] = ACTIONS(9654), + [aux_sym_else_fragment_token1] = ACTIONS(9654), + [aux_sym_select_statement_token1] = ACTIONS(9654), + [aux_sym_select_statement_token2] = ACTIONS(9654), + [aux_sym__for_header_token1] = ACTIONS(9654), + [aux_sym_do_statement_token1] = ACTIONS(9654), + [aux_sym_do_condition_token1] = ACTIONS(9654), + [aux_sym_with_statement_token1] = ACTIONS(9654), + [aux_sym_exit_statement_token1] = ACTIONS(9654), + [sym_end_statement] = ACTIONS(9656), + [aux_sym_on_goto_statement_token1] = ACTIONS(9654), + [aux_sym_on_goto_statement_token2] = ACTIONS(9654), + [aux_sym_on_error_statement_token2] = ACTIONS(9654), + [sym__ambiguous_redim_statement] = ACTIONS(9656), + [aux_sym_erase_statement_token1] = ACTIONS(9654), + [aux_sym_open_statement_token1] = ACTIONS(9654), + [aux_sym_file_mode_token2] = ACTIONS(9654), + [aux_sym_file_access_token2] = ACTIONS(9654), + [aux_sym_file_lock_token2] = ACTIONS(9654), + [aux_sym_print_statement_token1] = ACTIONS(9654), + [anon_sym_PLUS] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(9654), + [anon_sym_QMARK] = ACTIONS(9656), + [aux_sym_close_statement_token1] = ACTIONS(9654), + [aux_sym_put_statement_token1] = ACTIONS(9654), + [aux_sym_unlock_statement_token1] = ACTIONS(9654), + [aux_sym_seek_statement_token1] = ACTIONS(9654), + [sym_reset_statement] = ACTIONS(9654), + [aux_sym_raise_event_statement_token1] = ACTIONS(9654), + [sym_stop_statement] = ACTIONS(9654), + [sym_beep_statement] = ACTIONS(9654), + [aux_sym_unload_statement_token1] = ACTIONS(9654), + [aux_sym_def_type_statement_token1] = ACTIONS(9654), + [aux_sym_def_type_statement_token2] = ACTIONS(9654), + [aux_sym_def_type_statement_token3] = ACTIONS(9654), + [aux_sym_def_type_statement_token4] = ACTIONS(9654), + [aux_sym_def_type_statement_token5] = ACTIONS(9654), + [aux_sym_def_type_statement_token6] = ACTIONS(9654), + [aux_sym_def_type_statement_token7] = ACTIONS(9654), + [aux_sym_def_type_statement_token8] = ACTIONS(9654), + [aux_sym_def_type_statement_token9] = ACTIONS(9654), + [aux_sym_def_type_statement_token10] = ACTIONS(9654), + [aux_sym_def_type_statement_token11] = ACTIONS(9654), + [aux_sym_def_type_statement_token12] = ACTIONS(9654), + [aux_sym_def_type_statement_token13] = ACTIONS(9654), + [aux_sym_def_type_statement_token14] = ACTIONS(9654), + [aux_sym_call_statement_token1] = ACTIONS(9654), + [sym__ambiguous_call_statement] = ACTIONS(9654), + [aux_sym_addressof_expression_token1] = ACTIONS(9654), + [aux_sym_type_of_expression_token1] = ACTIONS(9654), + [aux_sym_unary_expression_token1] = ACTIONS(9654), + [sym_string_literal] = ACTIONS(9656), + [sym_number_literal] = ACTIONS(9656), + [aux_sym_boolean_literal_token1] = ACTIONS(9654), + [aux_sym_boolean_literal_token2] = ACTIONS(9654), + [sym_nothing_literal] = ACTIONS(9654), + [sym_null_literal] = ACTIONS(9654), + [sym_empty_literal] = ACTIONS(9654), + [sym_date_literal] = ACTIONS(9656), + [anon_sym_POUND] = ACTIONS(9654), + }, + [STATE(6914)] = { + [sym_identifier] = ACTIONS(9435), + [sym_newline] = ACTIONS(9437), + [anon_sym_COLON] = ACTIONS(9437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9435), + [aux_sym_frm_property_statement_token1] = ACTIONS(9435), + [anon_sym_DOT] = ACTIONS(9435), + [anon_sym_BANG] = ACTIONS(9437), + [aux_sym__attribute_identifier_token1] = ACTIONS(9435), + [aux_sym_option_statement_token3] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9435), + [aux_sym_preprocessor_const_token1] = ACTIONS(9435), + [sym_static_modifier] = ACTIONS(9435), + [sym__dim_keyword] = ACTIONS(9435), + [sym__redim_keyword] = ACTIONS(9435), + [aux_sym_get_accessor_token1] = ACTIONS(9435), + [aux_sym_set_accessor_token1] = ACTIONS(9435), + [aux_sym_const_declaration_token1] = ACTIONS(9435), + [anon_sym_LPAREN] = ACTIONS(9437), + [aux_sym_as_type_clause_token2] = ACTIONS(9435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9435), + [aux_sym_visibility_token1] = ACTIONS(9435), + [aux_sym_visibility_token2] = ACTIONS(9435), + [aux_sym_elseif_fragment_token1] = ACTIONS(9435), + [aux_sym_else_fragment_token1] = ACTIONS(9435), + [aux_sym_select_statement_token1] = ACTIONS(9435), + [aux_sym__for_header_token1] = ACTIONS(9435), + [aux_sym_do_statement_token1] = ACTIONS(9435), + [aux_sym_do_condition_token1] = ACTIONS(9435), + [aux_sym_with_statement_token1] = ACTIONS(9435), + [aux_sym_exit_statement_token1] = ACTIONS(9435), + [sym_end_statement] = ACTIONS(9437), + [aux_sym_on_goto_statement_token1] = ACTIONS(9435), + [aux_sym_on_goto_statement_token2] = ACTIONS(9435), + [aux_sym_on_error_statement_token2] = ACTIONS(9435), + [sym__ambiguous_redim_statement] = ACTIONS(9437), + [aux_sym_erase_statement_token1] = ACTIONS(9435), + [aux_sym_open_statement_token1] = ACTIONS(9435), + [aux_sym_file_mode_token2] = ACTIONS(9435), + [aux_sym_file_access_token2] = ACTIONS(9435), + [aux_sym_file_lock_token2] = ACTIONS(9435), + [aux_sym_print_statement_token1] = ACTIONS(9435), + [anon_sym_PLUS] = ACTIONS(9437), + [anon_sym_DASH] = ACTIONS(9435), + [anon_sym_QMARK] = ACTIONS(9437), + [aux_sym_close_statement_token1] = ACTIONS(9435), + [aux_sym_put_statement_token1] = ACTIONS(9435), + [aux_sym_unlock_statement_token1] = ACTIONS(9435), + [aux_sym_seek_statement_token1] = ACTIONS(9435), + [sym_reset_statement] = ACTIONS(9435), + [aux_sym_raise_event_statement_token1] = ACTIONS(9435), + [sym_stop_statement] = ACTIONS(9435), + [sym_beep_statement] = ACTIONS(9435), + [aux_sym_unload_statement_token1] = ACTIONS(9435), + [aux_sym_def_type_statement_token1] = ACTIONS(9435), + [aux_sym_def_type_statement_token2] = ACTIONS(9435), + [aux_sym_def_type_statement_token3] = ACTIONS(9435), + [aux_sym_def_type_statement_token4] = ACTIONS(9435), + [aux_sym_def_type_statement_token5] = ACTIONS(9435), + [aux_sym_def_type_statement_token6] = ACTIONS(9435), + [aux_sym_def_type_statement_token7] = ACTIONS(9435), + [aux_sym_def_type_statement_token8] = ACTIONS(9435), + [aux_sym_def_type_statement_token9] = ACTIONS(9435), + [aux_sym_def_type_statement_token10] = ACTIONS(9435), + [aux_sym_def_type_statement_token11] = ACTIONS(9435), + [aux_sym_def_type_statement_token12] = ACTIONS(9435), + [aux_sym_def_type_statement_token13] = ACTIONS(9435), + [aux_sym_def_type_statement_token14] = ACTIONS(9435), + [aux_sym_call_statement_token1] = ACTIONS(9435), + [sym__ambiguous_call_statement] = ACTIONS(9435), + [aux_sym_addressof_expression_token1] = ACTIONS(9435), + [aux_sym_type_of_expression_token1] = ACTIONS(9435), + [aux_sym_unary_expression_token1] = ACTIONS(9435), + [sym_string_literal] = ACTIONS(9437), + [sym_number_literal] = ACTIONS(9437), + [aux_sym_boolean_literal_token1] = ACTIONS(9435), + [aux_sym_boolean_literal_token2] = ACTIONS(9435), + [sym_nothing_literal] = ACTIONS(9435), + [sym_null_literal] = ACTIONS(9435), + [sym_empty_literal] = ACTIONS(9435), + [sym_date_literal] = ACTIONS(9437), + [anon_sym_POUND] = ACTIONS(9435), + }, + [STATE(6915)] = { + [sym_identifier] = ACTIONS(9439), + [sym_newline] = ACTIONS(9441), + [anon_sym_COLON] = ACTIONS(9441), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9439), + [aux_sym_frm_property_statement_token1] = ACTIONS(9439), + [anon_sym_DOT] = ACTIONS(9439), + [anon_sym_BANG] = ACTIONS(9441), + [aux_sym__attribute_identifier_token1] = ACTIONS(9439), + [aux_sym_option_statement_token3] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9439), + [aux_sym_preprocessor_const_token1] = ACTIONS(9439), + [sym_static_modifier] = ACTIONS(9439), + [sym__dim_keyword] = ACTIONS(9439), + [sym__redim_keyword] = ACTIONS(9439), + [aux_sym_get_accessor_token1] = ACTIONS(9439), + [aux_sym_set_accessor_token1] = ACTIONS(9439), + [aux_sym_const_declaration_token1] = ACTIONS(9439), + [anon_sym_LPAREN] = ACTIONS(9441), + [aux_sym_as_type_clause_token2] = ACTIONS(9439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9439), + [aux_sym_visibility_token1] = ACTIONS(9439), + [aux_sym_visibility_token2] = ACTIONS(9439), + [aux_sym_elseif_fragment_token1] = ACTIONS(9439), + [aux_sym_else_fragment_token1] = ACTIONS(9439), + [aux_sym_select_statement_token1] = ACTIONS(9439), + [aux_sym__for_header_token1] = ACTIONS(9439), + [aux_sym_do_statement_token1] = ACTIONS(9439), + [aux_sym_do_condition_token1] = ACTIONS(9439), + [aux_sym_with_statement_token1] = ACTIONS(9439), + [aux_sym_exit_statement_token1] = ACTIONS(9439), + [sym_end_statement] = ACTIONS(9441), + [aux_sym_on_goto_statement_token1] = ACTIONS(9439), + [aux_sym_on_goto_statement_token2] = ACTIONS(9439), + [aux_sym_on_error_statement_token2] = ACTIONS(9439), + [sym__ambiguous_redim_statement] = ACTIONS(9441), + [aux_sym_erase_statement_token1] = ACTIONS(9439), + [aux_sym_open_statement_token1] = ACTIONS(9439), + [aux_sym_file_mode_token2] = ACTIONS(9439), + [aux_sym_file_access_token2] = ACTIONS(9439), + [aux_sym_file_lock_token2] = ACTIONS(9439), + [aux_sym_print_statement_token1] = ACTIONS(9439), + [anon_sym_PLUS] = ACTIONS(9441), + [anon_sym_DASH] = ACTIONS(9439), + [anon_sym_QMARK] = ACTIONS(9441), + [aux_sym_close_statement_token1] = ACTIONS(9439), + [aux_sym_put_statement_token1] = ACTIONS(9439), + [aux_sym_unlock_statement_token1] = ACTIONS(9439), + [aux_sym_seek_statement_token1] = ACTIONS(9439), + [sym_reset_statement] = ACTIONS(9439), + [aux_sym_raise_event_statement_token1] = ACTIONS(9439), + [sym_stop_statement] = ACTIONS(9439), + [sym_beep_statement] = ACTIONS(9439), + [aux_sym_unload_statement_token1] = ACTIONS(9439), + [aux_sym_def_type_statement_token1] = ACTIONS(9439), + [aux_sym_def_type_statement_token2] = ACTIONS(9439), + [aux_sym_def_type_statement_token3] = ACTIONS(9439), + [aux_sym_def_type_statement_token4] = ACTIONS(9439), + [aux_sym_def_type_statement_token5] = ACTIONS(9439), + [aux_sym_def_type_statement_token6] = ACTIONS(9439), + [aux_sym_def_type_statement_token7] = ACTIONS(9439), + [aux_sym_def_type_statement_token8] = ACTIONS(9439), + [aux_sym_def_type_statement_token9] = ACTIONS(9439), + [aux_sym_def_type_statement_token10] = ACTIONS(9439), + [aux_sym_def_type_statement_token11] = ACTIONS(9439), + [aux_sym_def_type_statement_token12] = ACTIONS(9439), + [aux_sym_def_type_statement_token13] = ACTIONS(9439), + [aux_sym_def_type_statement_token14] = ACTIONS(9439), + [aux_sym_call_statement_token1] = ACTIONS(9439), + [sym__ambiguous_call_statement] = ACTIONS(9439), + [aux_sym_addressof_expression_token1] = ACTIONS(9439), + [aux_sym_type_of_expression_token1] = ACTIONS(9439), + [aux_sym_unary_expression_token1] = ACTIONS(9439), + [sym_string_literal] = ACTIONS(9441), + [sym_number_literal] = ACTIONS(9441), + [aux_sym_boolean_literal_token1] = ACTIONS(9439), + [aux_sym_boolean_literal_token2] = ACTIONS(9439), + [sym_nothing_literal] = ACTIONS(9439), + [sym_null_literal] = ACTIONS(9439), + [sym_empty_literal] = ACTIONS(9439), + [sym_date_literal] = ACTIONS(9441), + [anon_sym_POUND] = ACTIONS(9439), + }, + [STATE(6916)] = { + [sym_identifier] = ACTIONS(9443), + [sym_newline] = ACTIONS(9445), + [anon_sym_COLON] = ACTIONS(9445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9443), + [aux_sym_frm_property_statement_token1] = ACTIONS(9443), + [anon_sym_DOT] = ACTIONS(9443), + [anon_sym_BANG] = ACTIONS(9445), + [aux_sym__attribute_identifier_token1] = ACTIONS(9443), + [aux_sym_option_statement_token3] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9443), + [aux_sym_preprocessor_const_token1] = ACTIONS(9443), + [sym_static_modifier] = ACTIONS(9443), + [sym__dim_keyword] = ACTIONS(9443), + [sym__redim_keyword] = ACTIONS(9443), + [aux_sym_get_accessor_token1] = ACTIONS(9443), + [aux_sym_set_accessor_token1] = ACTIONS(9443), + [aux_sym_const_declaration_token1] = ACTIONS(9443), + [anon_sym_LPAREN] = ACTIONS(9445), + [aux_sym_as_type_clause_token2] = ACTIONS(9443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9443), + [aux_sym_visibility_token1] = ACTIONS(9443), + [aux_sym_visibility_token2] = ACTIONS(9443), + [aux_sym_elseif_fragment_token1] = ACTIONS(9443), + [aux_sym_else_fragment_token1] = ACTIONS(9443), + [aux_sym_select_statement_token1] = ACTIONS(9443), + [aux_sym__for_header_token1] = ACTIONS(9443), + [aux_sym_do_statement_token1] = ACTIONS(9443), + [aux_sym_do_condition_token1] = ACTIONS(9443), + [aux_sym_with_statement_token1] = ACTIONS(9443), + [aux_sym_exit_statement_token1] = ACTIONS(9443), + [sym_end_statement] = ACTIONS(9445), + [aux_sym_on_goto_statement_token1] = ACTIONS(9443), + [aux_sym_on_goto_statement_token2] = ACTIONS(9443), + [aux_sym_on_error_statement_token2] = ACTIONS(9443), + [sym__ambiguous_redim_statement] = ACTIONS(9445), + [aux_sym_erase_statement_token1] = ACTIONS(9443), + [aux_sym_open_statement_token1] = ACTIONS(9443), + [aux_sym_file_mode_token2] = ACTIONS(9443), + [aux_sym_file_access_token2] = ACTIONS(9443), + [aux_sym_file_lock_token2] = ACTIONS(9443), + [aux_sym_print_statement_token1] = ACTIONS(9443), + [anon_sym_PLUS] = ACTIONS(9445), + [anon_sym_DASH] = ACTIONS(9443), + [anon_sym_QMARK] = ACTIONS(9445), + [aux_sym_close_statement_token1] = ACTIONS(9443), + [aux_sym_put_statement_token1] = ACTIONS(9443), + [aux_sym_unlock_statement_token1] = ACTIONS(9443), + [aux_sym_seek_statement_token1] = ACTIONS(9443), + [sym_reset_statement] = ACTIONS(9443), + [aux_sym_raise_event_statement_token1] = ACTIONS(9443), + [sym_stop_statement] = ACTIONS(9443), + [sym_beep_statement] = ACTIONS(9443), + [aux_sym_unload_statement_token1] = ACTIONS(9443), + [aux_sym_def_type_statement_token1] = ACTIONS(9443), + [aux_sym_def_type_statement_token2] = ACTIONS(9443), + [aux_sym_def_type_statement_token3] = ACTIONS(9443), + [aux_sym_def_type_statement_token4] = ACTIONS(9443), + [aux_sym_def_type_statement_token5] = ACTIONS(9443), + [aux_sym_def_type_statement_token6] = ACTIONS(9443), + [aux_sym_def_type_statement_token7] = ACTIONS(9443), + [aux_sym_def_type_statement_token8] = ACTIONS(9443), + [aux_sym_def_type_statement_token9] = ACTIONS(9443), + [aux_sym_def_type_statement_token10] = ACTIONS(9443), + [aux_sym_def_type_statement_token11] = ACTIONS(9443), + [aux_sym_def_type_statement_token12] = ACTIONS(9443), + [aux_sym_def_type_statement_token13] = ACTIONS(9443), + [aux_sym_def_type_statement_token14] = ACTIONS(9443), + [aux_sym_call_statement_token1] = ACTIONS(9443), + [sym__ambiguous_call_statement] = ACTIONS(9443), + [aux_sym_addressof_expression_token1] = ACTIONS(9443), + [aux_sym_type_of_expression_token1] = ACTIONS(9443), + [aux_sym_unary_expression_token1] = ACTIONS(9443), + [sym_string_literal] = ACTIONS(9445), + [sym_number_literal] = ACTIONS(9445), + [aux_sym_boolean_literal_token1] = ACTIONS(9443), + [aux_sym_boolean_literal_token2] = ACTIONS(9443), + [sym_nothing_literal] = ACTIONS(9443), + [sym_null_literal] = ACTIONS(9443), + [sym_empty_literal] = ACTIONS(9443), + [sym_date_literal] = ACTIONS(9445), + [anon_sym_POUND] = ACTIONS(9443), + }, + [STATE(6917)] = { + [sym_identifier] = ACTIONS(9447), + [sym_newline] = ACTIONS(9449), + [anon_sym_COLON] = ACTIONS(9449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9447), + [aux_sym_frm_property_statement_token1] = ACTIONS(9447), + [anon_sym_DOT] = ACTIONS(9447), + [anon_sym_BANG] = ACTIONS(9449), + [aux_sym__attribute_identifier_token1] = ACTIONS(9447), + [aux_sym_option_statement_token3] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9447), + [aux_sym_preprocessor_const_token1] = ACTIONS(9447), + [sym_static_modifier] = ACTIONS(9447), + [sym__dim_keyword] = ACTIONS(9447), + [sym__redim_keyword] = ACTIONS(9447), + [aux_sym_get_accessor_token1] = ACTIONS(9447), + [aux_sym_set_accessor_token1] = ACTIONS(9447), + [aux_sym_const_declaration_token1] = ACTIONS(9447), + [anon_sym_LPAREN] = ACTIONS(9449), + [aux_sym_as_type_clause_token2] = ACTIONS(9447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9447), + [aux_sym_visibility_token1] = ACTIONS(9447), + [aux_sym_visibility_token2] = ACTIONS(9447), + [aux_sym_elseif_fragment_token1] = ACTIONS(9447), + [aux_sym_else_fragment_token1] = ACTIONS(9447), + [aux_sym_select_statement_token1] = ACTIONS(9447), + [aux_sym__for_header_token1] = ACTIONS(9447), + [aux_sym_do_statement_token1] = ACTIONS(9447), + [aux_sym_do_condition_token1] = ACTIONS(9447), + [aux_sym_with_statement_token1] = ACTIONS(9447), + [aux_sym_exit_statement_token1] = ACTIONS(9447), + [sym_end_statement] = ACTIONS(9449), + [aux_sym_on_goto_statement_token1] = ACTIONS(9447), + [aux_sym_on_goto_statement_token2] = ACTIONS(9447), + [aux_sym_on_error_statement_token2] = ACTIONS(9447), + [sym__ambiguous_redim_statement] = ACTIONS(9449), + [aux_sym_erase_statement_token1] = ACTIONS(9447), + [aux_sym_open_statement_token1] = ACTIONS(9447), + [aux_sym_file_mode_token2] = ACTIONS(9447), + [aux_sym_file_access_token2] = ACTIONS(9447), + [aux_sym_file_lock_token2] = ACTIONS(9447), + [aux_sym_print_statement_token1] = ACTIONS(9447), + [anon_sym_PLUS] = ACTIONS(9449), + [anon_sym_DASH] = ACTIONS(9447), + [anon_sym_QMARK] = ACTIONS(9449), + [aux_sym_close_statement_token1] = ACTIONS(9447), + [aux_sym_put_statement_token1] = ACTIONS(9447), + [aux_sym_unlock_statement_token1] = ACTIONS(9447), + [aux_sym_seek_statement_token1] = ACTIONS(9447), + [sym_reset_statement] = ACTIONS(9447), + [aux_sym_raise_event_statement_token1] = ACTIONS(9447), + [sym_stop_statement] = ACTIONS(9447), + [sym_beep_statement] = ACTIONS(9447), + [aux_sym_unload_statement_token1] = ACTIONS(9447), + [aux_sym_def_type_statement_token1] = ACTIONS(9447), + [aux_sym_def_type_statement_token2] = ACTIONS(9447), + [aux_sym_def_type_statement_token3] = ACTIONS(9447), + [aux_sym_def_type_statement_token4] = ACTIONS(9447), + [aux_sym_def_type_statement_token5] = ACTIONS(9447), + [aux_sym_def_type_statement_token6] = ACTIONS(9447), + [aux_sym_def_type_statement_token7] = ACTIONS(9447), + [aux_sym_def_type_statement_token8] = ACTIONS(9447), + [aux_sym_def_type_statement_token9] = ACTIONS(9447), + [aux_sym_def_type_statement_token10] = ACTIONS(9447), + [aux_sym_def_type_statement_token11] = ACTIONS(9447), + [aux_sym_def_type_statement_token12] = ACTIONS(9447), + [aux_sym_def_type_statement_token13] = ACTIONS(9447), + [aux_sym_def_type_statement_token14] = ACTIONS(9447), + [aux_sym_call_statement_token1] = ACTIONS(9447), + [sym__ambiguous_call_statement] = ACTIONS(9447), + [aux_sym_addressof_expression_token1] = ACTIONS(9447), + [aux_sym_type_of_expression_token1] = ACTIONS(9447), + [aux_sym_unary_expression_token1] = ACTIONS(9447), + [sym_string_literal] = ACTIONS(9449), + [sym_number_literal] = ACTIONS(9449), + [aux_sym_boolean_literal_token1] = ACTIONS(9447), + [aux_sym_boolean_literal_token2] = ACTIONS(9447), + [sym_nothing_literal] = ACTIONS(9447), + [sym_null_literal] = ACTIONS(9447), + [sym_empty_literal] = ACTIONS(9447), + [sym_date_literal] = ACTIONS(9449), + [anon_sym_POUND] = ACTIONS(9447), + }, + [STATE(6918)] = { + [sym_identifier] = ACTIONS(9451), + [sym_newline] = ACTIONS(9453), + [anon_sym_COLON] = ACTIONS(9453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9451), + [aux_sym_frm_property_statement_token1] = ACTIONS(9451), + [anon_sym_DOT] = ACTIONS(9451), + [anon_sym_BANG] = ACTIONS(9453), + [aux_sym__attribute_identifier_token1] = ACTIONS(9451), + [aux_sym_option_statement_token3] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9451), + [aux_sym_preprocessor_const_token1] = ACTIONS(9451), + [sym_static_modifier] = ACTIONS(9451), + [sym__dim_keyword] = ACTIONS(9451), + [sym__redim_keyword] = ACTIONS(9451), + [aux_sym_get_accessor_token1] = ACTIONS(9451), + [aux_sym_set_accessor_token1] = ACTIONS(9451), + [aux_sym_const_declaration_token1] = ACTIONS(9451), + [anon_sym_LPAREN] = ACTIONS(9453), + [aux_sym_as_type_clause_token2] = ACTIONS(9451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9451), + [aux_sym_visibility_token1] = ACTIONS(9451), + [aux_sym_visibility_token2] = ACTIONS(9451), + [aux_sym_elseif_fragment_token1] = ACTIONS(9451), + [aux_sym_else_fragment_token1] = ACTIONS(9451), + [aux_sym_select_statement_token1] = ACTIONS(9451), + [aux_sym__for_header_token1] = ACTIONS(9451), + [aux_sym_do_statement_token1] = ACTIONS(9451), + [aux_sym_do_condition_token1] = ACTIONS(9451), + [aux_sym_with_statement_token1] = ACTIONS(9451), + [aux_sym_exit_statement_token1] = ACTIONS(9451), + [sym_end_statement] = ACTIONS(9453), + [aux_sym_on_goto_statement_token1] = ACTIONS(9451), + [aux_sym_on_goto_statement_token2] = ACTIONS(9451), + [aux_sym_on_error_statement_token2] = ACTIONS(9451), + [sym__ambiguous_redim_statement] = ACTIONS(9453), + [aux_sym_erase_statement_token1] = ACTIONS(9451), + [aux_sym_open_statement_token1] = ACTIONS(9451), + [aux_sym_file_mode_token2] = ACTIONS(9451), + [aux_sym_file_access_token2] = ACTIONS(9451), + [aux_sym_file_lock_token2] = ACTIONS(9451), + [aux_sym_print_statement_token1] = ACTIONS(9451), + [anon_sym_PLUS] = ACTIONS(9453), + [anon_sym_DASH] = ACTIONS(9451), + [anon_sym_QMARK] = ACTIONS(9453), + [aux_sym_close_statement_token1] = ACTIONS(9451), + [aux_sym_put_statement_token1] = ACTIONS(9451), + [aux_sym_unlock_statement_token1] = ACTIONS(9451), + [aux_sym_seek_statement_token1] = ACTIONS(9451), + [sym_reset_statement] = ACTIONS(9451), + [aux_sym_raise_event_statement_token1] = ACTIONS(9451), + [sym_stop_statement] = ACTIONS(9451), + [sym_beep_statement] = ACTIONS(9451), + [aux_sym_unload_statement_token1] = ACTIONS(9451), + [aux_sym_def_type_statement_token1] = ACTIONS(9451), + [aux_sym_def_type_statement_token2] = ACTIONS(9451), + [aux_sym_def_type_statement_token3] = ACTIONS(9451), + [aux_sym_def_type_statement_token4] = ACTIONS(9451), + [aux_sym_def_type_statement_token5] = ACTIONS(9451), + [aux_sym_def_type_statement_token6] = ACTIONS(9451), + [aux_sym_def_type_statement_token7] = ACTIONS(9451), + [aux_sym_def_type_statement_token8] = ACTIONS(9451), + [aux_sym_def_type_statement_token9] = ACTIONS(9451), + [aux_sym_def_type_statement_token10] = ACTIONS(9451), + [aux_sym_def_type_statement_token11] = ACTIONS(9451), + [aux_sym_def_type_statement_token12] = ACTIONS(9451), + [aux_sym_def_type_statement_token13] = ACTIONS(9451), + [aux_sym_def_type_statement_token14] = ACTIONS(9451), + [aux_sym_call_statement_token1] = ACTIONS(9451), + [sym__ambiguous_call_statement] = ACTIONS(9451), + [aux_sym_addressof_expression_token1] = ACTIONS(9451), + [aux_sym_type_of_expression_token1] = ACTIONS(9451), + [aux_sym_unary_expression_token1] = ACTIONS(9451), + [sym_string_literal] = ACTIONS(9453), + [sym_number_literal] = ACTIONS(9453), + [aux_sym_boolean_literal_token1] = ACTIONS(9451), + [aux_sym_boolean_literal_token2] = ACTIONS(9451), + [sym_nothing_literal] = ACTIONS(9451), + [sym_null_literal] = ACTIONS(9451), + [sym_empty_literal] = ACTIONS(9451), + [sym_date_literal] = ACTIONS(9453), + [anon_sym_POUND] = ACTIONS(9451), + }, + [STATE(6919)] = { + [sym_identifier] = ACTIONS(9260), + [sym_newline] = ACTIONS(9262), + [anon_sym_COLON] = ACTIONS(9262), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9260), + [aux_sym_frm_property_statement_token1] = ACTIONS(9260), + [anon_sym_DOT] = ACTIONS(9260), + [anon_sym_BANG] = ACTIONS(9262), + [aux_sym__attribute_identifier_token1] = ACTIONS(9260), + [aux_sym_option_statement_token3] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9260), + [aux_sym_preprocessor_const_token1] = ACTIONS(9260), + [sym_static_modifier] = ACTIONS(9260), + [sym__dim_keyword] = ACTIONS(9260), + [sym__redim_keyword] = ACTIONS(9260), + [aux_sym_get_accessor_token1] = ACTIONS(9260), + [aux_sym_set_accessor_token1] = ACTIONS(9260), + [aux_sym_const_declaration_token1] = ACTIONS(9260), + [anon_sym_LPAREN] = ACTIONS(9262), + [aux_sym_as_type_clause_token2] = ACTIONS(9260), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9260), + [aux_sym_visibility_token1] = ACTIONS(9260), + [aux_sym_visibility_token2] = ACTIONS(9260), + [aux_sym_elseif_fragment_token1] = ACTIONS(9260), + [aux_sym_else_fragment_token1] = ACTIONS(9260), + [aux_sym_select_statement_token1] = ACTIONS(9260), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9260), + [aux_sym__for_header_token1] = ACTIONS(9260), + [aux_sym_do_statement_token1] = ACTIONS(9260), + [aux_sym_do_condition_token1] = ACTIONS(9260), + [aux_sym_with_statement_token1] = ACTIONS(9260), + [aux_sym_exit_statement_token1] = ACTIONS(9260), + [sym_end_statement] = ACTIONS(9262), + [aux_sym_on_goto_statement_token1] = ACTIONS(9260), + [aux_sym_on_goto_statement_token2] = ACTIONS(9260), + [aux_sym_on_error_statement_token2] = ACTIONS(9260), + [sym__ambiguous_redim_statement] = ACTIONS(9262), + [aux_sym_erase_statement_token1] = ACTIONS(9260), + [aux_sym_open_statement_token1] = ACTIONS(9260), + [aux_sym_file_mode_token2] = ACTIONS(9260), + [aux_sym_file_access_token2] = ACTIONS(9260), + [aux_sym_file_lock_token2] = ACTIONS(9260), + [aux_sym_print_statement_token1] = ACTIONS(9260), + [anon_sym_PLUS] = ACTIONS(9262), + [anon_sym_DASH] = ACTIONS(9260), + [anon_sym_QMARK] = ACTIONS(9262), + [aux_sym_close_statement_token1] = ACTIONS(9260), + [aux_sym_put_statement_token1] = ACTIONS(9260), + [aux_sym_unlock_statement_token1] = ACTIONS(9260), + [aux_sym_seek_statement_token1] = ACTIONS(9260), + [sym_reset_statement] = ACTIONS(9260), + [aux_sym_raise_event_statement_token1] = ACTIONS(9260), + [sym_stop_statement] = ACTIONS(9260), + [sym_beep_statement] = ACTIONS(9260), + [aux_sym_unload_statement_token1] = ACTIONS(9260), + [aux_sym_def_type_statement_token1] = ACTIONS(9260), + [aux_sym_def_type_statement_token2] = ACTIONS(9260), + [aux_sym_def_type_statement_token3] = ACTIONS(9260), + [aux_sym_def_type_statement_token4] = ACTIONS(9260), + [aux_sym_def_type_statement_token5] = ACTIONS(9260), + [aux_sym_def_type_statement_token6] = ACTIONS(9260), + [aux_sym_def_type_statement_token7] = ACTIONS(9260), + [aux_sym_def_type_statement_token8] = ACTIONS(9260), + [aux_sym_def_type_statement_token9] = ACTIONS(9260), + [aux_sym_def_type_statement_token10] = ACTIONS(9260), + [aux_sym_def_type_statement_token11] = ACTIONS(9260), + [aux_sym_def_type_statement_token12] = ACTIONS(9260), + [aux_sym_def_type_statement_token13] = ACTIONS(9260), + [aux_sym_def_type_statement_token14] = ACTIONS(9260), + [aux_sym_call_statement_token1] = ACTIONS(9260), + [sym__ambiguous_call_statement] = ACTIONS(9260), + [aux_sym_addressof_expression_token1] = ACTIONS(9260), + [aux_sym_type_of_expression_token1] = ACTIONS(9260), + [aux_sym_unary_expression_token1] = ACTIONS(9260), + [sym_string_literal] = ACTIONS(9262), + [sym_number_literal] = ACTIONS(9262), + [aux_sym_boolean_literal_token1] = ACTIONS(9260), + [aux_sym_boolean_literal_token2] = ACTIONS(9260), + [sym_nothing_literal] = ACTIONS(9260), + [sym_null_literal] = ACTIONS(9260), + [sym_empty_literal] = ACTIONS(9260), + [sym_date_literal] = ACTIONS(9262), + [anon_sym_POUND] = ACTIONS(9260), + }, + [STATE(6920)] = { + [sym_identifier] = ACTIONS(6117), + [sym_newline] = ACTIONS(6119), + [anon_sym_COLON] = ACTIONS(6119), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6117), + [aux_sym_frm_property_statement_token1] = ACTIONS(6117), + [anon_sym_DOT] = ACTIONS(6117), + [anon_sym_BANG] = ACTIONS(6119), + [aux_sym__attribute_identifier_token1] = ACTIONS(6117), + [aux_sym_option_statement_token3] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6117), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6117), + [aux_sym_preprocessor_const_token1] = ACTIONS(6117), + [sym_static_modifier] = ACTIONS(6117), + [sym__dim_keyword] = ACTIONS(6117), + [sym__redim_keyword] = ACTIONS(6117), + [aux_sym_get_accessor_token1] = ACTIONS(6117), + [aux_sym_set_accessor_token1] = ACTIONS(6117), + [anon_sym_COMMA] = ACTIONS(6119), + [aux_sym_const_declaration_token1] = ACTIONS(6117), + [anon_sym_LPAREN] = ACTIONS(6119), + [aux_sym_as_type_clause_token2] = ACTIONS(6117), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6117), + [aux_sym_visibility_token1] = ACTIONS(6117), + [aux_sym_visibility_token2] = ACTIONS(6117), + [aux_sym_elseif_fragment_token1] = ACTIONS(6117), + [aux_sym_else_fragment_token1] = ACTIONS(6117), + [aux_sym_select_statement_token1] = ACTIONS(6117), + [aux_sym__for_header_token1] = ACTIONS(6117), + [aux_sym_do_statement_token1] = ACTIONS(6117), + [aux_sym_do_condition_token1] = ACTIONS(6117), + [aux_sym_with_statement_token1] = ACTIONS(6117), + [aux_sym_exit_statement_token1] = ACTIONS(6117), + [sym_end_statement] = ACTIONS(6119), + [aux_sym_on_goto_statement_token1] = ACTIONS(6117), + [aux_sym_on_goto_statement_token2] = ACTIONS(6117), + [aux_sym_on_error_statement_token2] = ACTIONS(6117), + [sym__ambiguous_redim_statement] = ACTIONS(6119), + [aux_sym_erase_statement_token1] = ACTIONS(6117), + [aux_sym_open_statement_token1] = ACTIONS(6117), + [aux_sym_file_mode_token2] = ACTIONS(6117), + [aux_sym_file_access_token2] = ACTIONS(6117), + [aux_sym_file_lock_token2] = ACTIONS(6117), + [aux_sym_print_statement_token1] = ACTIONS(6117), + [anon_sym_PLUS] = ACTIONS(6119), + [anon_sym_DASH] = ACTIONS(6117), + [anon_sym_QMARK] = ACTIONS(6119), + [aux_sym_close_statement_token1] = ACTIONS(6117), + [aux_sym_put_statement_token1] = ACTIONS(6117), + [aux_sym_unlock_statement_token1] = ACTIONS(6117), + [aux_sym_seek_statement_token1] = ACTIONS(6117), + [sym_reset_statement] = ACTIONS(6117), + [aux_sym_raise_event_statement_token1] = ACTIONS(6117), + [sym_stop_statement] = ACTIONS(6117), + [sym_beep_statement] = ACTIONS(6117), + [aux_sym_unload_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token1] = ACTIONS(6117), + [aux_sym_def_type_statement_token2] = ACTIONS(6117), + [aux_sym_def_type_statement_token3] = ACTIONS(6117), + [aux_sym_def_type_statement_token4] = ACTIONS(6117), + [aux_sym_def_type_statement_token5] = ACTIONS(6117), + [aux_sym_def_type_statement_token6] = ACTIONS(6117), + [aux_sym_def_type_statement_token7] = ACTIONS(6117), + [aux_sym_def_type_statement_token8] = ACTIONS(6117), + [aux_sym_def_type_statement_token9] = ACTIONS(6117), + [aux_sym_def_type_statement_token10] = ACTIONS(6117), + [aux_sym_def_type_statement_token11] = ACTIONS(6117), + [aux_sym_def_type_statement_token12] = ACTIONS(6117), + [aux_sym_def_type_statement_token13] = ACTIONS(6117), + [aux_sym_def_type_statement_token14] = ACTIONS(6117), + [aux_sym_call_statement_token1] = ACTIONS(6117), + [sym__ambiguous_call_statement] = ACTIONS(6117), + [aux_sym_addressof_expression_token1] = ACTIONS(6117), + [aux_sym_type_of_expression_token1] = ACTIONS(6117), + [aux_sym_unary_expression_token1] = ACTIONS(6117), + [sym_string_literal] = ACTIONS(6119), + [sym_number_literal] = ACTIONS(6119), + [aux_sym_boolean_literal_token1] = ACTIONS(6117), + [aux_sym_boolean_literal_token2] = ACTIONS(6117), + [sym_nothing_literal] = ACTIONS(6117), + [sym_null_literal] = ACTIONS(6117), + [sym_empty_literal] = ACTIONS(6117), + [sym_date_literal] = ACTIONS(6119), + [anon_sym_POUND] = ACTIONS(6117), + }, + [STATE(6921)] = { + [sym_identifier] = ACTIONS(9122), + [sym_newline] = ACTIONS(9124), + [anon_sym_COLON] = ACTIONS(9124), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9122), + [aux_sym_frm_property_statement_token1] = ACTIONS(9122), + [anon_sym_DOT] = ACTIONS(9122), + [anon_sym_BANG] = ACTIONS(9124), + [aux_sym__attribute_identifier_token1] = ACTIONS(9122), + [aux_sym_option_statement_token3] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9122), + [aux_sym_preprocessor_const_token1] = ACTIONS(9122), + [sym_static_modifier] = ACTIONS(9122), + [sym__dim_keyword] = ACTIONS(9122), + [sym__redim_keyword] = ACTIONS(9122), + [aux_sym_get_accessor_token1] = ACTIONS(9122), + [aux_sym_set_accessor_token1] = ACTIONS(9122), + [aux_sym_const_declaration_token1] = ACTIONS(9122), + [anon_sym_LPAREN] = ACTIONS(9124), + [aux_sym_as_type_clause_token2] = ACTIONS(9122), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9122), + [aux_sym_visibility_token1] = ACTIONS(9122), + [aux_sym_visibility_token2] = ACTIONS(9122), + [aux_sym_elseif_fragment_token1] = ACTIONS(9122), + [aux_sym_else_fragment_token1] = ACTIONS(9122), + [aux_sym_select_statement_token1] = ACTIONS(9122), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9122), + [aux_sym__for_header_token1] = ACTIONS(9122), + [aux_sym_do_statement_token1] = ACTIONS(9122), + [aux_sym_do_condition_token1] = ACTIONS(9122), + [aux_sym_with_statement_token1] = ACTIONS(9122), + [aux_sym_exit_statement_token1] = ACTIONS(9122), + [sym_end_statement] = ACTIONS(9124), + [aux_sym_on_goto_statement_token1] = ACTIONS(9122), + [aux_sym_on_goto_statement_token2] = ACTIONS(9122), + [aux_sym_on_error_statement_token2] = ACTIONS(9122), + [sym__ambiguous_redim_statement] = ACTIONS(9124), + [aux_sym_erase_statement_token1] = ACTIONS(9122), + [aux_sym_open_statement_token1] = ACTIONS(9122), + [aux_sym_file_mode_token2] = ACTIONS(9122), + [aux_sym_file_access_token2] = ACTIONS(9122), + [aux_sym_file_lock_token2] = ACTIONS(9122), + [aux_sym_print_statement_token1] = ACTIONS(9122), + [anon_sym_PLUS] = ACTIONS(9124), + [anon_sym_DASH] = ACTIONS(9122), + [anon_sym_QMARK] = ACTIONS(9124), + [aux_sym_close_statement_token1] = ACTIONS(9122), + [aux_sym_put_statement_token1] = ACTIONS(9122), + [aux_sym_unlock_statement_token1] = ACTIONS(9122), + [aux_sym_seek_statement_token1] = ACTIONS(9122), + [sym_reset_statement] = ACTIONS(9122), + [aux_sym_raise_event_statement_token1] = ACTIONS(9122), + [sym_stop_statement] = ACTIONS(9122), + [sym_beep_statement] = ACTIONS(9122), + [aux_sym_unload_statement_token1] = ACTIONS(9122), + [aux_sym_def_type_statement_token1] = ACTIONS(9122), + [aux_sym_def_type_statement_token2] = ACTIONS(9122), + [aux_sym_def_type_statement_token3] = ACTIONS(9122), + [aux_sym_def_type_statement_token4] = ACTIONS(9122), + [aux_sym_def_type_statement_token5] = ACTIONS(9122), + [aux_sym_def_type_statement_token6] = ACTIONS(9122), + [aux_sym_def_type_statement_token7] = ACTIONS(9122), + [aux_sym_def_type_statement_token8] = ACTIONS(9122), + [aux_sym_def_type_statement_token9] = ACTIONS(9122), + [aux_sym_def_type_statement_token10] = ACTIONS(9122), + [aux_sym_def_type_statement_token11] = ACTIONS(9122), + [aux_sym_def_type_statement_token12] = ACTIONS(9122), + [aux_sym_def_type_statement_token13] = ACTIONS(9122), + [aux_sym_def_type_statement_token14] = ACTIONS(9122), + [aux_sym_call_statement_token1] = ACTIONS(9122), + [sym__ambiguous_call_statement] = ACTIONS(9122), + [aux_sym_addressof_expression_token1] = ACTIONS(9122), + [aux_sym_type_of_expression_token1] = ACTIONS(9122), + [aux_sym_unary_expression_token1] = ACTIONS(9122), + [sym_string_literal] = ACTIONS(9124), + [sym_number_literal] = ACTIONS(9124), + [aux_sym_boolean_literal_token1] = ACTIONS(9122), + [aux_sym_boolean_literal_token2] = ACTIONS(9122), + [sym_nothing_literal] = ACTIONS(9122), + [sym_null_literal] = ACTIONS(9122), + [sym_empty_literal] = ACTIONS(9122), + [sym_date_literal] = ACTIONS(9124), + [anon_sym_POUND] = ACTIONS(9122), + }, + [STATE(6922)] = { + [sym_identifier] = ACTIONS(9126), + [sym_newline] = ACTIONS(9128), + [anon_sym_COLON] = ACTIONS(9128), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9126), + [aux_sym_frm_property_statement_token1] = ACTIONS(9126), + [anon_sym_DOT] = ACTIONS(9126), + [anon_sym_BANG] = ACTIONS(9128), + [aux_sym__attribute_identifier_token1] = ACTIONS(9126), + [aux_sym_option_statement_token3] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9126), + [aux_sym_preprocessor_const_token1] = ACTIONS(9126), + [sym_static_modifier] = ACTIONS(9126), + [sym__dim_keyword] = ACTIONS(9126), + [sym__redim_keyword] = ACTIONS(9126), + [aux_sym_get_accessor_token1] = ACTIONS(9126), + [aux_sym_set_accessor_token1] = ACTIONS(9126), + [aux_sym_const_declaration_token1] = ACTIONS(9126), + [anon_sym_LPAREN] = ACTIONS(9128), + [aux_sym_as_type_clause_token2] = ACTIONS(9126), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9126), + [aux_sym_visibility_token1] = ACTIONS(9126), + [aux_sym_visibility_token2] = ACTIONS(9126), + [aux_sym_elseif_fragment_token1] = ACTIONS(9126), + [aux_sym_else_fragment_token1] = ACTIONS(9126), + [aux_sym_select_statement_token1] = ACTIONS(9126), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9126), + [aux_sym__for_header_token1] = ACTIONS(9126), + [aux_sym_do_statement_token1] = ACTIONS(9126), + [aux_sym_do_condition_token1] = ACTIONS(9126), + [aux_sym_with_statement_token1] = ACTIONS(9126), + [aux_sym_exit_statement_token1] = ACTIONS(9126), + [sym_end_statement] = ACTIONS(9128), + [aux_sym_on_goto_statement_token1] = ACTIONS(9126), + [aux_sym_on_goto_statement_token2] = ACTIONS(9126), + [aux_sym_on_error_statement_token2] = ACTIONS(9126), + [sym__ambiguous_redim_statement] = ACTIONS(9128), + [aux_sym_erase_statement_token1] = ACTIONS(9126), + [aux_sym_open_statement_token1] = ACTIONS(9126), + [aux_sym_file_mode_token2] = ACTIONS(9126), + [aux_sym_file_access_token2] = ACTIONS(9126), + [aux_sym_file_lock_token2] = ACTIONS(9126), + [aux_sym_print_statement_token1] = ACTIONS(9126), + [anon_sym_PLUS] = ACTIONS(9128), + [anon_sym_DASH] = ACTIONS(9126), + [anon_sym_QMARK] = ACTIONS(9128), + [aux_sym_close_statement_token1] = ACTIONS(9126), + [aux_sym_put_statement_token1] = ACTIONS(9126), + [aux_sym_unlock_statement_token1] = ACTIONS(9126), + [aux_sym_seek_statement_token1] = ACTIONS(9126), + [sym_reset_statement] = ACTIONS(9126), + [aux_sym_raise_event_statement_token1] = ACTIONS(9126), + [sym_stop_statement] = ACTIONS(9126), + [sym_beep_statement] = ACTIONS(9126), + [aux_sym_unload_statement_token1] = ACTIONS(9126), + [aux_sym_def_type_statement_token1] = ACTIONS(9126), + [aux_sym_def_type_statement_token2] = ACTIONS(9126), + [aux_sym_def_type_statement_token3] = ACTIONS(9126), + [aux_sym_def_type_statement_token4] = ACTIONS(9126), + [aux_sym_def_type_statement_token5] = ACTIONS(9126), + [aux_sym_def_type_statement_token6] = ACTIONS(9126), + [aux_sym_def_type_statement_token7] = ACTIONS(9126), + [aux_sym_def_type_statement_token8] = ACTIONS(9126), + [aux_sym_def_type_statement_token9] = ACTIONS(9126), + [aux_sym_def_type_statement_token10] = ACTIONS(9126), + [aux_sym_def_type_statement_token11] = ACTIONS(9126), + [aux_sym_def_type_statement_token12] = ACTIONS(9126), + [aux_sym_def_type_statement_token13] = ACTIONS(9126), + [aux_sym_def_type_statement_token14] = ACTIONS(9126), + [aux_sym_call_statement_token1] = ACTIONS(9126), + [sym__ambiguous_call_statement] = ACTIONS(9126), + [aux_sym_addressof_expression_token1] = ACTIONS(9126), + [aux_sym_type_of_expression_token1] = ACTIONS(9126), + [aux_sym_unary_expression_token1] = ACTIONS(9126), + [sym_string_literal] = ACTIONS(9128), + [sym_number_literal] = ACTIONS(9128), + [aux_sym_boolean_literal_token1] = ACTIONS(9126), + [aux_sym_boolean_literal_token2] = ACTIONS(9126), + [sym_nothing_literal] = ACTIONS(9126), + [sym_null_literal] = ACTIONS(9126), + [sym_empty_literal] = ACTIONS(9126), + [sym_date_literal] = ACTIONS(9128), + [anon_sym_POUND] = ACTIONS(9126), + }, + [STATE(6923)] = { + [sym_identifier] = ACTIONS(9088), + [sym_newline] = ACTIONS(9090), + [anon_sym_COLON] = ACTIONS(9090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9088), + [aux_sym_frm_property_statement_token1] = ACTIONS(9088), + [anon_sym_DOT] = ACTIONS(9088), + [anon_sym_BANG] = ACTIONS(9090), + [aux_sym__attribute_identifier_token1] = ACTIONS(9088), + [aux_sym_option_statement_token3] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9088), + [aux_sym_preprocessor_const_token1] = ACTIONS(9088), + [sym_static_modifier] = ACTIONS(9088), + [sym__dim_keyword] = ACTIONS(9088), + [sym__redim_keyword] = ACTIONS(9088), + [aux_sym_get_accessor_token1] = ACTIONS(9088), + [aux_sym_set_accessor_token1] = ACTIONS(9088), + [aux_sym_const_declaration_token1] = ACTIONS(9088), + [anon_sym_LPAREN] = ACTIONS(9090), + [aux_sym_as_type_clause_token2] = ACTIONS(9088), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9088), + [aux_sym_visibility_token1] = ACTIONS(9088), + [aux_sym_visibility_token2] = ACTIONS(9088), + [aux_sym_elseif_fragment_token1] = ACTIONS(9088), + [aux_sym_else_fragment_token1] = ACTIONS(9088), + [aux_sym_select_statement_token1] = ACTIONS(9088), + [aux_sym__for_header_token1] = ACTIONS(9088), + [aux_sym_do_statement_token1] = ACTIONS(9088), + [aux_sym_do_condition_token1] = ACTIONS(9088), + [aux_sym_with_statement_token1] = ACTIONS(9088), + [aux_sym_exit_statement_token1] = ACTIONS(9088), + [sym_end_statement] = ACTIONS(9090), + [aux_sym_on_goto_statement_token1] = ACTIONS(9088), + [aux_sym_on_goto_statement_token2] = ACTIONS(9088), + [aux_sym_on_error_statement_token2] = ACTIONS(9088), + [sym__ambiguous_redim_statement] = ACTIONS(9090), + [aux_sym_erase_statement_token1] = ACTIONS(9088), + [aux_sym_open_statement_token1] = ACTIONS(9088), + [aux_sym_file_mode_token2] = ACTIONS(9088), + [aux_sym_file_access_token2] = ACTIONS(9088), + [aux_sym_file_lock_token2] = ACTIONS(9088), + [aux_sym_print_statement_token1] = ACTIONS(9088), + [anon_sym_PLUS] = ACTIONS(9090), + [anon_sym_DASH] = ACTIONS(9088), + [anon_sym_QMARK] = ACTIONS(9090), + [aux_sym_close_statement_token1] = ACTIONS(9088), + [aux_sym_put_statement_token1] = ACTIONS(9088), + [aux_sym_unlock_statement_token1] = ACTIONS(9088), + [aux_sym_seek_statement_token1] = ACTIONS(9088), + [sym_reset_statement] = ACTIONS(9088), + [aux_sym_raise_event_statement_token1] = ACTIONS(9088), + [sym_stop_statement] = ACTIONS(9088), + [sym_beep_statement] = ACTIONS(9088), + [aux_sym_unload_statement_token1] = ACTIONS(9088), + [aux_sym_def_type_statement_token1] = ACTIONS(9088), + [aux_sym_def_type_statement_token2] = ACTIONS(9088), + [aux_sym_def_type_statement_token3] = ACTIONS(9088), + [aux_sym_def_type_statement_token4] = ACTIONS(9088), + [aux_sym_def_type_statement_token5] = ACTIONS(9088), + [aux_sym_def_type_statement_token6] = ACTIONS(9088), + [aux_sym_def_type_statement_token7] = ACTIONS(9088), + [aux_sym_def_type_statement_token8] = ACTIONS(9088), + [aux_sym_def_type_statement_token9] = ACTIONS(9088), + [aux_sym_def_type_statement_token10] = ACTIONS(9088), + [aux_sym_def_type_statement_token11] = ACTIONS(9088), + [aux_sym_def_type_statement_token12] = ACTIONS(9088), + [aux_sym_def_type_statement_token13] = ACTIONS(9088), + [aux_sym_def_type_statement_token14] = ACTIONS(9088), + [aux_sym_call_statement_token1] = ACTIONS(9088), + [sym__ambiguous_call_statement] = ACTIONS(9088), + [aux_sym_addressof_expression_token1] = ACTIONS(9088), + [aux_sym_type_of_expression_token1] = ACTIONS(9088), + [aux_sym_unary_expression_token1] = ACTIONS(9088), + [sym_string_literal] = ACTIONS(9090), + [sym_number_literal] = ACTIONS(9090), + [aux_sym_boolean_literal_token1] = ACTIONS(9088), + [aux_sym_boolean_literal_token2] = ACTIONS(9088), + [sym_nothing_literal] = ACTIONS(9088), + [sym_null_literal] = ACTIONS(9088), + [sym_empty_literal] = ACTIONS(9088), + [sym_date_literal] = ACTIONS(9090), + [anon_sym_POUND] = ACTIONS(9088), + }, + [STATE(6924)] = { + [sym_identifier] = ACTIONS(9631), + [sym_newline] = ACTIONS(9633), + [anon_sym_COLON] = ACTIONS(9633), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9631), + [aux_sym_frm_property_statement_token1] = ACTIONS(9631), + [anon_sym_DOT] = ACTIONS(9631), + [anon_sym_BANG] = ACTIONS(9633), + [aux_sym__attribute_identifier_token1] = ACTIONS(9631), + [aux_sym_option_statement_token3] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9631), + [aux_sym_preprocessor_const_token1] = ACTIONS(9631), + [sym_static_modifier] = ACTIONS(9631), + [sym__dim_keyword] = ACTIONS(9631), + [sym__redim_keyword] = ACTIONS(9631), + [aux_sym_get_accessor_token1] = ACTIONS(9631), + [aux_sym_set_accessor_token1] = ACTIONS(9631), + [aux_sym_const_declaration_token1] = ACTIONS(9631), + [anon_sym_LPAREN] = ACTIONS(9633), + [aux_sym_as_type_clause_token2] = ACTIONS(9631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9631), + [aux_sym_visibility_token1] = ACTIONS(9631), + [aux_sym_visibility_token2] = ACTIONS(9631), + [aux_sym_elseif_fragment_token1] = ACTIONS(9631), + [aux_sym_else_fragment_token1] = ACTIONS(9631), + [aux_sym_select_statement_token1] = ACTIONS(9631), + [aux_sym_select_statement_token2] = ACTIONS(9631), + [aux_sym__for_header_token1] = ACTIONS(9631), + [aux_sym_do_statement_token1] = ACTIONS(9631), + [aux_sym_do_condition_token1] = ACTIONS(9631), + [aux_sym_with_statement_token1] = ACTIONS(9631), + [aux_sym_exit_statement_token1] = ACTIONS(9631), + [sym_end_statement] = ACTIONS(9633), + [aux_sym_on_goto_statement_token1] = ACTIONS(9631), + [aux_sym_on_goto_statement_token2] = ACTIONS(9631), + [aux_sym_on_error_statement_token2] = ACTIONS(9631), + [sym__ambiguous_redim_statement] = ACTIONS(9633), + [aux_sym_erase_statement_token1] = ACTIONS(9631), + [aux_sym_open_statement_token1] = ACTIONS(9631), + [aux_sym_file_mode_token2] = ACTIONS(9631), + [aux_sym_file_access_token2] = ACTIONS(9631), + [aux_sym_file_lock_token2] = ACTIONS(9631), + [aux_sym_print_statement_token1] = ACTIONS(9631), + [anon_sym_PLUS] = ACTIONS(9633), + [anon_sym_DASH] = ACTIONS(9631), + [anon_sym_QMARK] = ACTIONS(9633), + [aux_sym_close_statement_token1] = ACTIONS(9631), + [aux_sym_put_statement_token1] = ACTIONS(9631), + [aux_sym_unlock_statement_token1] = ACTIONS(9631), + [aux_sym_seek_statement_token1] = ACTIONS(9631), + [sym_reset_statement] = ACTIONS(9631), + [aux_sym_raise_event_statement_token1] = ACTIONS(9631), + [sym_stop_statement] = ACTIONS(9631), + [sym_beep_statement] = ACTIONS(9631), + [aux_sym_unload_statement_token1] = ACTIONS(9631), + [aux_sym_def_type_statement_token1] = ACTIONS(9631), + [aux_sym_def_type_statement_token2] = ACTIONS(9631), + [aux_sym_def_type_statement_token3] = ACTIONS(9631), + [aux_sym_def_type_statement_token4] = ACTIONS(9631), + [aux_sym_def_type_statement_token5] = ACTIONS(9631), + [aux_sym_def_type_statement_token6] = ACTIONS(9631), + [aux_sym_def_type_statement_token7] = ACTIONS(9631), + [aux_sym_def_type_statement_token8] = ACTIONS(9631), + [aux_sym_def_type_statement_token9] = ACTIONS(9631), + [aux_sym_def_type_statement_token10] = ACTIONS(9631), + [aux_sym_def_type_statement_token11] = ACTIONS(9631), + [aux_sym_def_type_statement_token12] = ACTIONS(9631), + [aux_sym_def_type_statement_token13] = ACTIONS(9631), + [aux_sym_def_type_statement_token14] = ACTIONS(9631), + [aux_sym_call_statement_token1] = ACTIONS(9631), + [sym__ambiguous_call_statement] = ACTIONS(9631), + [aux_sym_addressof_expression_token1] = ACTIONS(9631), + [aux_sym_type_of_expression_token1] = ACTIONS(9631), + [aux_sym_unary_expression_token1] = ACTIONS(9631), + [sym_string_literal] = ACTIONS(9633), + [sym_number_literal] = ACTIONS(9633), + [aux_sym_boolean_literal_token1] = ACTIONS(9631), + [aux_sym_boolean_literal_token2] = ACTIONS(9631), + [sym_nothing_literal] = ACTIONS(9631), + [sym_null_literal] = ACTIONS(9631), + [sym_empty_literal] = ACTIONS(9631), + [sym_date_literal] = ACTIONS(9633), + [anon_sym_POUND] = ACTIONS(9631), + }, + [STATE(6925)] = { + [sym_identifier] = ACTIONS(9635), + [sym_newline] = ACTIONS(9637), + [anon_sym_COLON] = ACTIONS(9637), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9635), + [aux_sym_frm_property_statement_token1] = ACTIONS(9635), + [anon_sym_DOT] = ACTIONS(9635), + [anon_sym_BANG] = ACTIONS(9637), + [aux_sym__attribute_identifier_token1] = ACTIONS(9635), + [aux_sym_option_statement_token3] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9635), + [aux_sym_preprocessor_const_token1] = ACTIONS(9635), + [sym_static_modifier] = ACTIONS(9635), + [sym__dim_keyword] = ACTIONS(9635), + [sym__redim_keyword] = ACTIONS(9635), + [aux_sym_get_accessor_token1] = ACTIONS(9635), + [aux_sym_set_accessor_token1] = ACTIONS(9635), + [aux_sym_const_declaration_token1] = ACTIONS(9635), + [anon_sym_LPAREN] = ACTIONS(9637), + [aux_sym_as_type_clause_token2] = ACTIONS(9635), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9635), + [aux_sym_visibility_token1] = ACTIONS(9635), + [aux_sym_visibility_token2] = ACTIONS(9635), + [aux_sym_elseif_fragment_token1] = ACTIONS(9635), + [aux_sym_else_fragment_token1] = ACTIONS(9635), + [aux_sym_select_statement_token1] = ACTIONS(9635), + [aux_sym_select_statement_token2] = ACTIONS(9635), + [aux_sym__for_header_token1] = ACTIONS(9635), + [aux_sym_do_statement_token1] = ACTIONS(9635), + [aux_sym_do_condition_token1] = ACTIONS(9635), + [aux_sym_with_statement_token1] = ACTIONS(9635), + [aux_sym_exit_statement_token1] = ACTIONS(9635), + [sym_end_statement] = ACTIONS(9637), + [aux_sym_on_goto_statement_token1] = ACTIONS(9635), + [aux_sym_on_goto_statement_token2] = ACTIONS(9635), + [aux_sym_on_error_statement_token2] = ACTIONS(9635), + [sym__ambiguous_redim_statement] = ACTIONS(9637), + [aux_sym_erase_statement_token1] = ACTIONS(9635), + [aux_sym_open_statement_token1] = ACTIONS(9635), + [aux_sym_file_mode_token2] = ACTIONS(9635), + [aux_sym_file_access_token2] = ACTIONS(9635), + [aux_sym_file_lock_token2] = ACTIONS(9635), + [aux_sym_print_statement_token1] = ACTIONS(9635), + [anon_sym_PLUS] = ACTIONS(9637), + [anon_sym_DASH] = ACTIONS(9635), + [anon_sym_QMARK] = ACTIONS(9637), + [aux_sym_close_statement_token1] = ACTIONS(9635), + [aux_sym_put_statement_token1] = ACTIONS(9635), + [aux_sym_unlock_statement_token1] = ACTIONS(9635), + [aux_sym_seek_statement_token1] = ACTIONS(9635), + [sym_reset_statement] = ACTIONS(9635), + [aux_sym_raise_event_statement_token1] = ACTIONS(9635), + [sym_stop_statement] = ACTIONS(9635), + [sym_beep_statement] = ACTIONS(9635), + [aux_sym_unload_statement_token1] = ACTIONS(9635), + [aux_sym_def_type_statement_token1] = ACTIONS(9635), + [aux_sym_def_type_statement_token2] = ACTIONS(9635), + [aux_sym_def_type_statement_token3] = ACTIONS(9635), + [aux_sym_def_type_statement_token4] = ACTIONS(9635), + [aux_sym_def_type_statement_token5] = ACTIONS(9635), + [aux_sym_def_type_statement_token6] = ACTIONS(9635), + [aux_sym_def_type_statement_token7] = ACTIONS(9635), + [aux_sym_def_type_statement_token8] = ACTIONS(9635), + [aux_sym_def_type_statement_token9] = ACTIONS(9635), + [aux_sym_def_type_statement_token10] = ACTIONS(9635), + [aux_sym_def_type_statement_token11] = ACTIONS(9635), + [aux_sym_def_type_statement_token12] = ACTIONS(9635), + [aux_sym_def_type_statement_token13] = ACTIONS(9635), + [aux_sym_def_type_statement_token14] = ACTIONS(9635), + [aux_sym_call_statement_token1] = ACTIONS(9635), + [sym__ambiguous_call_statement] = ACTIONS(9635), + [aux_sym_addressof_expression_token1] = ACTIONS(9635), + [aux_sym_type_of_expression_token1] = ACTIONS(9635), + [aux_sym_unary_expression_token1] = ACTIONS(9635), + [sym_string_literal] = ACTIONS(9637), + [sym_number_literal] = ACTIONS(9637), + [aux_sym_boolean_literal_token1] = ACTIONS(9635), + [aux_sym_boolean_literal_token2] = ACTIONS(9635), + [sym_nothing_literal] = ACTIONS(9635), + [sym_null_literal] = ACTIONS(9635), + [sym_empty_literal] = ACTIONS(9635), + [sym_date_literal] = ACTIONS(9637), + [anon_sym_POUND] = ACTIONS(9635), + }, + [STATE(6926)] = { + [sym_identifier] = ACTIONS(8692), + [sym_newline] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(8694), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8692), + [aux_sym_frm_property_statement_token1] = ACTIONS(8692), + [anon_sym_DOT] = ACTIONS(8692), + [anon_sym_BANG] = ACTIONS(8694), + [aux_sym__attribute_identifier_token1] = ACTIONS(8692), + [aux_sym_option_statement_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8692), + [aux_sym_preprocessor_const_token1] = ACTIONS(8692), + [sym_static_modifier] = ACTIONS(8692), + [sym__dim_keyword] = ACTIONS(8692), + [sym__redim_keyword] = ACTIONS(8692), + [aux_sym_get_accessor_token1] = ACTIONS(8692), + [aux_sym_set_accessor_token1] = ACTIONS(8692), + [aux_sym_const_declaration_token1] = ACTIONS(8692), + [anon_sym_LPAREN] = ACTIONS(8694), + [aux_sym_as_type_clause_token2] = ACTIONS(8692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8692), + [aux_sym_visibility_token1] = ACTIONS(8692), + [aux_sym_visibility_token2] = ACTIONS(8692), + [aux_sym_elseif_fragment_token1] = ACTIONS(8692), + [aux_sym_else_fragment_token1] = ACTIONS(10856), + [aux_sym_select_statement_token1] = ACTIONS(8692), + [aux_sym__for_header_token1] = ACTIONS(8692), + [aux_sym_do_statement_token1] = ACTIONS(8692), + [aux_sym_do_condition_token1] = ACTIONS(8692), + [aux_sym_while_statement_token1] = ACTIONS(8692), + [aux_sym_with_statement_token1] = ACTIONS(8692), + [aux_sym_exit_statement_token1] = ACTIONS(8692), + [sym_end_statement] = ACTIONS(8694), + [aux_sym_on_goto_statement_token1] = ACTIONS(8692), + [aux_sym_on_goto_statement_token2] = ACTIONS(8692), + [aux_sym_on_error_statement_token2] = ACTIONS(8692), + [sym__ambiguous_redim_statement] = ACTIONS(8694), + [aux_sym_erase_statement_token1] = ACTIONS(8692), + [aux_sym_open_statement_token1] = ACTIONS(8692), + [aux_sym_file_mode_token2] = ACTIONS(8692), + [aux_sym_file_access_token2] = ACTIONS(8692), + [aux_sym_file_lock_token2] = ACTIONS(8692), + [aux_sym_print_statement_token1] = ACTIONS(8692), + [anon_sym_PLUS] = ACTIONS(8694), + [anon_sym_DASH] = ACTIONS(8692), + [anon_sym_QMARK] = ACTIONS(8694), + [aux_sym_close_statement_token1] = ACTIONS(8692), + [aux_sym_put_statement_token1] = ACTIONS(8692), + [aux_sym_unlock_statement_token1] = ACTIONS(8692), + [aux_sym_seek_statement_token1] = ACTIONS(8692), + [sym_reset_statement] = ACTIONS(8692), + [aux_sym_raise_event_statement_token1] = ACTIONS(8692), + [sym_stop_statement] = ACTIONS(8692), + [sym_beep_statement] = ACTIONS(8692), + [aux_sym_unload_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token2] = ACTIONS(8692), + [aux_sym_def_type_statement_token3] = ACTIONS(8692), + [aux_sym_def_type_statement_token4] = ACTIONS(8692), + [aux_sym_def_type_statement_token5] = ACTIONS(8692), + [aux_sym_def_type_statement_token6] = ACTIONS(8692), + [aux_sym_def_type_statement_token7] = ACTIONS(8692), + [aux_sym_def_type_statement_token8] = ACTIONS(8692), + [aux_sym_def_type_statement_token9] = ACTIONS(8692), + [aux_sym_def_type_statement_token10] = ACTIONS(8692), + [aux_sym_def_type_statement_token11] = ACTIONS(8692), + [aux_sym_def_type_statement_token12] = ACTIONS(8692), + [aux_sym_def_type_statement_token13] = ACTIONS(8692), + [aux_sym_def_type_statement_token14] = ACTIONS(8692), + [aux_sym_call_statement_token1] = ACTIONS(8692), + [sym__ambiguous_call_statement] = ACTIONS(8692), + [aux_sym_addressof_expression_token1] = ACTIONS(8692), + [aux_sym_type_of_expression_token1] = ACTIONS(8692), + [aux_sym_unary_expression_token1] = ACTIONS(8692), + [sym_string_literal] = ACTIONS(8694), + [sym_number_literal] = ACTIONS(8694), + [aux_sym_boolean_literal_token1] = ACTIONS(8692), + [aux_sym_boolean_literal_token2] = ACTIONS(8692), + [sym_nothing_literal] = ACTIONS(8692), + [sym_null_literal] = ACTIONS(8692), + [sym_empty_literal] = ACTIONS(8692), + [sym_date_literal] = ACTIONS(8694), + [anon_sym_POUND] = ACTIONS(8692), + }, + [STATE(6927)] = { + [sym_identifier] = ACTIONS(8702), + [sym_newline] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(8704), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8702), + [aux_sym_frm_property_statement_token1] = ACTIONS(8702), + [anon_sym_DOT] = ACTIONS(8702), + [anon_sym_BANG] = ACTIONS(8704), + [aux_sym__attribute_identifier_token1] = ACTIONS(8702), + [aux_sym_option_statement_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8702), + [aux_sym_preprocessor_const_token1] = ACTIONS(8702), + [sym_static_modifier] = ACTIONS(8702), + [sym__dim_keyword] = ACTIONS(8702), + [sym__redim_keyword] = ACTIONS(8702), + [aux_sym_get_accessor_token1] = ACTIONS(8702), + [aux_sym_set_accessor_token1] = ACTIONS(8702), + [aux_sym_const_declaration_token1] = ACTIONS(8702), + [anon_sym_LPAREN] = ACTIONS(8704), + [aux_sym_as_type_clause_token2] = ACTIONS(8702), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8702), + [aux_sym_visibility_token1] = ACTIONS(8702), + [aux_sym_visibility_token2] = ACTIONS(8702), + [aux_sym_elseif_fragment_token1] = ACTIONS(8702), + [aux_sym_else_fragment_token1] = ACTIONS(8702), + [aux_sym_select_statement_token1] = ACTIONS(8702), + [aux_sym__for_header_token1] = ACTIONS(8702), + [aux_sym_do_statement_token1] = ACTIONS(8702), + [aux_sym_do_statement_token2] = ACTIONS(8702), + [aux_sym_do_condition_token1] = ACTIONS(8702), + [aux_sym_with_statement_token1] = ACTIONS(8702), + [aux_sym_exit_statement_token1] = ACTIONS(8702), + [sym_end_statement] = ACTIONS(8704), + [aux_sym_on_goto_statement_token1] = ACTIONS(8702), + [aux_sym_on_goto_statement_token2] = ACTIONS(8702), + [aux_sym_on_error_statement_token2] = ACTIONS(8702), + [sym__ambiguous_redim_statement] = ACTIONS(8704), + [aux_sym_erase_statement_token1] = ACTIONS(8702), + [aux_sym_open_statement_token1] = ACTIONS(8702), + [aux_sym_file_mode_token2] = ACTIONS(8702), + [aux_sym_file_access_token2] = ACTIONS(8702), + [aux_sym_file_lock_token2] = ACTIONS(8702), + [aux_sym_print_statement_token1] = ACTIONS(8702), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_DASH] = ACTIONS(8702), + [anon_sym_QMARK] = ACTIONS(8704), + [aux_sym_close_statement_token1] = ACTIONS(8702), + [aux_sym_put_statement_token1] = ACTIONS(8702), + [aux_sym_unlock_statement_token1] = ACTIONS(8702), + [aux_sym_seek_statement_token1] = ACTIONS(8702), + [sym_reset_statement] = ACTIONS(8702), + [aux_sym_raise_event_statement_token1] = ACTIONS(8702), + [sym_stop_statement] = ACTIONS(8702), + [sym_beep_statement] = ACTIONS(8702), + [aux_sym_unload_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token2] = ACTIONS(8702), + [aux_sym_def_type_statement_token3] = ACTIONS(8702), + [aux_sym_def_type_statement_token4] = ACTIONS(8702), + [aux_sym_def_type_statement_token5] = ACTIONS(8702), + [aux_sym_def_type_statement_token6] = ACTIONS(8702), + [aux_sym_def_type_statement_token7] = ACTIONS(8702), + [aux_sym_def_type_statement_token8] = ACTIONS(8702), + [aux_sym_def_type_statement_token9] = ACTIONS(8702), + [aux_sym_def_type_statement_token10] = ACTIONS(8702), + [aux_sym_def_type_statement_token11] = ACTIONS(8702), + [aux_sym_def_type_statement_token12] = ACTIONS(8702), + [aux_sym_def_type_statement_token13] = ACTIONS(8702), + [aux_sym_def_type_statement_token14] = ACTIONS(8702), + [aux_sym_call_statement_token1] = ACTIONS(8702), + [sym__ambiguous_call_statement] = ACTIONS(8702), + [aux_sym_addressof_expression_token1] = ACTIONS(8702), + [aux_sym_type_of_expression_token1] = ACTIONS(8702), + [aux_sym_unary_expression_token1] = ACTIONS(8702), + [sym_string_literal] = ACTIONS(8704), + [sym_number_literal] = ACTIONS(8704), + [aux_sym_boolean_literal_token1] = ACTIONS(8702), + [aux_sym_boolean_literal_token2] = ACTIONS(8702), + [sym_nothing_literal] = ACTIONS(8702), + [sym_null_literal] = ACTIONS(8702), + [sym_empty_literal] = ACTIONS(8702), + [sym_date_literal] = ACTIONS(8704), + [anon_sym_POUND] = ACTIONS(8702), + }, + [STATE(6928)] = { + [sym_argument_list] = STATE(10051), + [sym_identifier] = ACTIONS(8794), + [sym_newline] = ACTIONS(8796), + [anon_sym_COLON] = ACTIONS(8796), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8794), + [aux_sym_frm_property_statement_token1] = ACTIONS(8794), + [anon_sym_DOT] = ACTIONS(8794), + [anon_sym_BANG] = ACTIONS(8796), + [aux_sym__attribute_identifier_token1] = ACTIONS(8794), + [aux_sym_option_statement_token3] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8794), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8794), + [aux_sym_preprocessor_const_token1] = ACTIONS(8794), + [sym_static_modifier] = ACTIONS(8794), + [sym__dim_keyword] = ACTIONS(8794), + [sym__redim_keyword] = ACTIONS(8794), + [aux_sym_get_accessor_token1] = ACTIONS(8794), + [aux_sym_set_accessor_token1] = ACTIONS(8794), + [aux_sym_const_declaration_token1] = ACTIONS(8794), + [anon_sym_LPAREN] = ACTIONS(7870), + [aux_sym_as_type_clause_token2] = ACTIONS(8794), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8794), + [aux_sym_visibility_token1] = ACTIONS(8794), + [aux_sym_visibility_token2] = ACTIONS(8794), + [aux_sym_elseif_fragment_token1] = ACTIONS(8794), + [aux_sym_else_fragment_token1] = ACTIONS(8794), + [aux_sym_select_statement_token1] = ACTIONS(8794), + [aux_sym__for_header_token1] = ACTIONS(8794), + [aux_sym_do_statement_token1] = ACTIONS(8794), + [aux_sym_do_condition_token1] = ACTIONS(8794), + [aux_sym_with_statement_token1] = ACTIONS(8794), + [aux_sym_exit_statement_token1] = ACTIONS(8794), + [sym_end_statement] = ACTIONS(8796), + [aux_sym_on_goto_statement_token1] = ACTIONS(8794), + [aux_sym_on_goto_statement_token2] = ACTIONS(8794), + [aux_sym_on_error_statement_token2] = ACTIONS(8794), + [sym__ambiguous_redim_statement] = ACTIONS(8796), + [aux_sym_erase_statement_token1] = ACTIONS(8794), + [aux_sym_open_statement_token1] = ACTIONS(8794), + [aux_sym_file_mode_token2] = ACTIONS(8794), + [aux_sym_file_access_token2] = ACTIONS(8794), + [aux_sym_file_lock_token2] = ACTIONS(8794), + [aux_sym_print_statement_token1] = ACTIONS(8794), + [anon_sym_PLUS] = ACTIONS(8796), + [anon_sym_DASH] = ACTIONS(8794), + [anon_sym_QMARK] = ACTIONS(8796), + [aux_sym_close_statement_token1] = ACTIONS(8794), + [aux_sym_put_statement_token1] = ACTIONS(8794), + [aux_sym_unlock_statement_token1] = ACTIONS(8794), + [aux_sym_seek_statement_token1] = ACTIONS(8794), + [sym_reset_statement] = ACTIONS(8794), + [aux_sym_raise_event_statement_token1] = ACTIONS(8794), + [sym_stop_statement] = ACTIONS(8794), + [sym_beep_statement] = ACTIONS(8794), + [aux_sym_unload_statement_token1] = ACTIONS(8794), + [aux_sym_def_type_statement_token1] = ACTIONS(8794), + [aux_sym_def_type_statement_token2] = ACTIONS(8794), + [aux_sym_def_type_statement_token3] = ACTIONS(8794), + [aux_sym_def_type_statement_token4] = ACTIONS(8794), + [aux_sym_def_type_statement_token5] = ACTIONS(8794), + [aux_sym_def_type_statement_token6] = ACTIONS(8794), + [aux_sym_def_type_statement_token7] = ACTIONS(8794), + [aux_sym_def_type_statement_token8] = ACTIONS(8794), + [aux_sym_def_type_statement_token9] = ACTIONS(8794), + [aux_sym_def_type_statement_token10] = ACTIONS(8794), + [aux_sym_def_type_statement_token11] = ACTIONS(8794), + [aux_sym_def_type_statement_token12] = ACTIONS(8794), + [aux_sym_def_type_statement_token13] = ACTIONS(8794), + [aux_sym_def_type_statement_token14] = ACTIONS(8794), + [aux_sym_call_statement_token1] = ACTIONS(8794), + [sym__ambiguous_call_statement] = ACTIONS(8794), + [aux_sym_addressof_expression_token1] = ACTIONS(8794), + [aux_sym_type_of_expression_token1] = ACTIONS(8794), + [aux_sym_unary_expression_token1] = ACTIONS(8794), + [sym_string_literal] = ACTIONS(8796), + [sym_number_literal] = ACTIONS(8796), + [aux_sym_boolean_literal_token1] = ACTIONS(8794), + [aux_sym_boolean_literal_token2] = ACTIONS(8794), + [sym_nothing_literal] = ACTIONS(8794), + [sym_null_literal] = ACTIONS(8794), + [sym_empty_literal] = ACTIONS(8794), + [sym_date_literal] = ACTIONS(8796), + [anon_sym_POUND] = ACTIONS(8794), + }, + [STATE(6929)] = { + [sym_identifier] = ACTIONS(8992), + [sym_newline] = ACTIONS(8994), + [anon_sym_COLON] = ACTIONS(8994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8992), + [aux_sym_frm_property_statement_token1] = ACTIONS(8992), + [anon_sym_DOT] = ACTIONS(8992), + [anon_sym_BANG] = ACTIONS(8994), + [aux_sym__attribute_identifier_token1] = ACTIONS(8992), + [aux_sym_option_statement_token3] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8992), + [aux_sym_preprocessor_const_token1] = ACTIONS(8992), + [sym_static_modifier] = ACTIONS(8992), + [sym__dim_keyword] = ACTIONS(8992), + [sym__redim_keyword] = ACTIONS(8992), + [aux_sym_get_accessor_token1] = ACTIONS(8992), + [aux_sym_set_accessor_token1] = ACTIONS(8992), + [aux_sym_const_declaration_token1] = ACTIONS(8992), + [anon_sym_LPAREN] = ACTIONS(8994), + [aux_sym_as_type_clause_token2] = ACTIONS(8992), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8992), + [aux_sym_visibility_token1] = ACTIONS(8992), + [aux_sym_visibility_token2] = ACTIONS(8992), + [aux_sym_elseif_fragment_token1] = ACTIONS(8992), + [aux_sym_else_fragment_token1] = ACTIONS(8992), + [aux_sym_select_statement_token1] = ACTIONS(8992), + [aux_sym__for_header_token1] = ACTIONS(8992), + [aux_sym_do_statement_token1] = ACTIONS(8992), + [aux_sym_do_statement_token2] = ACTIONS(8992), + [aux_sym_do_condition_token1] = ACTIONS(8992), + [aux_sym_with_statement_token1] = ACTIONS(8992), + [aux_sym_exit_statement_token1] = ACTIONS(8992), + [sym_end_statement] = ACTIONS(8994), + [aux_sym_on_goto_statement_token1] = ACTIONS(8992), + [aux_sym_on_goto_statement_token2] = ACTIONS(8992), + [aux_sym_on_error_statement_token2] = ACTIONS(8992), + [sym__ambiguous_redim_statement] = ACTIONS(8994), + [aux_sym_erase_statement_token1] = ACTIONS(8992), + [aux_sym_open_statement_token1] = ACTIONS(8992), + [aux_sym_file_mode_token2] = ACTIONS(8992), + [aux_sym_file_access_token2] = ACTIONS(8992), + [aux_sym_file_lock_token2] = ACTIONS(8992), + [aux_sym_print_statement_token1] = ACTIONS(8992), + [anon_sym_PLUS] = ACTIONS(8994), + [anon_sym_DASH] = ACTIONS(8992), + [anon_sym_QMARK] = ACTIONS(8994), + [aux_sym_close_statement_token1] = ACTIONS(8992), + [aux_sym_put_statement_token1] = ACTIONS(8992), + [aux_sym_unlock_statement_token1] = ACTIONS(8992), + [aux_sym_seek_statement_token1] = ACTIONS(8992), + [sym_reset_statement] = ACTIONS(8992), + [aux_sym_raise_event_statement_token1] = ACTIONS(8992), + [sym_stop_statement] = ACTIONS(8992), + [sym_beep_statement] = ACTIONS(8992), + [aux_sym_unload_statement_token1] = ACTIONS(8992), + [aux_sym_def_type_statement_token1] = ACTIONS(8992), + [aux_sym_def_type_statement_token2] = ACTIONS(8992), + [aux_sym_def_type_statement_token3] = ACTIONS(8992), + [aux_sym_def_type_statement_token4] = ACTIONS(8992), + [aux_sym_def_type_statement_token5] = ACTIONS(8992), + [aux_sym_def_type_statement_token6] = ACTIONS(8992), + [aux_sym_def_type_statement_token7] = ACTIONS(8992), + [aux_sym_def_type_statement_token8] = ACTIONS(8992), + [aux_sym_def_type_statement_token9] = ACTIONS(8992), + [aux_sym_def_type_statement_token10] = ACTIONS(8992), + [aux_sym_def_type_statement_token11] = ACTIONS(8992), + [aux_sym_def_type_statement_token12] = ACTIONS(8992), + [aux_sym_def_type_statement_token13] = ACTIONS(8992), + [aux_sym_def_type_statement_token14] = ACTIONS(8992), + [aux_sym_call_statement_token1] = ACTIONS(8992), + [sym__ambiguous_call_statement] = ACTIONS(8992), + [aux_sym_addressof_expression_token1] = ACTIONS(8992), + [aux_sym_type_of_expression_token1] = ACTIONS(8992), + [aux_sym_unary_expression_token1] = ACTIONS(8992), + [sym_string_literal] = ACTIONS(8994), + [sym_number_literal] = ACTIONS(8994), + [aux_sym_boolean_literal_token1] = ACTIONS(8992), + [aux_sym_boolean_literal_token2] = ACTIONS(8992), + [sym_nothing_literal] = ACTIONS(8992), + [sym_null_literal] = ACTIONS(8992), + [sym_empty_literal] = ACTIONS(8992), + [sym_date_literal] = ACTIONS(8994), + [anon_sym_POUND] = ACTIONS(8992), + }, + [STATE(6930)] = { + [sym_identifier] = ACTIONS(9405), + [sym_newline] = ACTIONS(9407), + [anon_sym_COLON] = ACTIONS(9407), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9405), + [aux_sym_frm_property_statement_token1] = ACTIONS(9405), + [anon_sym_DOT] = ACTIONS(9405), + [anon_sym_BANG] = ACTIONS(9407), + [aux_sym__attribute_identifier_token1] = ACTIONS(9405), + [aux_sym_option_statement_token3] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9405), + [aux_sym_preprocessor_const_token1] = ACTIONS(9405), + [sym_static_modifier] = ACTIONS(9405), + [sym__dim_keyword] = ACTIONS(9405), + [sym__redim_keyword] = ACTIONS(9405), + [aux_sym_get_accessor_token1] = ACTIONS(9405), + [aux_sym_set_accessor_token1] = ACTIONS(9405), + [aux_sym_const_declaration_token1] = ACTIONS(9405), + [anon_sym_LPAREN] = ACTIONS(9407), + [aux_sym_as_type_clause_token2] = ACTIONS(9405), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9405), + [aux_sym_visibility_token1] = ACTIONS(9405), + [aux_sym_visibility_token2] = ACTIONS(9405), + [aux_sym_elseif_fragment_token1] = ACTIONS(9405), + [aux_sym_else_fragment_token1] = ACTIONS(9405), + [aux_sym_select_statement_token1] = ACTIONS(9405), + [aux_sym__for_header_token1] = ACTIONS(9405), + [aux_sym_do_statement_token1] = ACTIONS(9405), + [aux_sym_do_condition_token1] = ACTIONS(9405), + [aux_sym_while_statement_token1] = ACTIONS(9405), + [aux_sym_with_statement_token1] = ACTIONS(9405), + [aux_sym_exit_statement_token1] = ACTIONS(9405), + [sym_end_statement] = ACTIONS(9407), + [aux_sym_on_goto_statement_token1] = ACTIONS(9405), + [aux_sym_on_goto_statement_token2] = ACTIONS(9405), + [aux_sym_on_error_statement_token2] = ACTIONS(9405), + [sym__ambiguous_redim_statement] = ACTIONS(9407), + [aux_sym_erase_statement_token1] = ACTIONS(9405), + [aux_sym_open_statement_token1] = ACTIONS(9405), + [aux_sym_file_mode_token2] = ACTIONS(9405), + [aux_sym_file_access_token2] = ACTIONS(9405), + [aux_sym_file_lock_token2] = ACTIONS(9405), + [aux_sym_print_statement_token1] = ACTIONS(9405), + [anon_sym_PLUS] = ACTIONS(9407), + [anon_sym_DASH] = ACTIONS(9405), + [anon_sym_QMARK] = ACTIONS(9407), + [aux_sym_close_statement_token1] = ACTIONS(9405), + [aux_sym_put_statement_token1] = ACTIONS(9405), + [aux_sym_unlock_statement_token1] = ACTIONS(9405), + [aux_sym_seek_statement_token1] = ACTIONS(9405), + [sym_reset_statement] = ACTIONS(9405), + [aux_sym_raise_event_statement_token1] = ACTIONS(9405), + [sym_stop_statement] = ACTIONS(9405), + [sym_beep_statement] = ACTIONS(9405), + [aux_sym_unload_statement_token1] = ACTIONS(9405), + [aux_sym_def_type_statement_token1] = ACTIONS(9405), + [aux_sym_def_type_statement_token2] = ACTIONS(9405), + [aux_sym_def_type_statement_token3] = ACTIONS(9405), + [aux_sym_def_type_statement_token4] = ACTIONS(9405), + [aux_sym_def_type_statement_token5] = ACTIONS(9405), + [aux_sym_def_type_statement_token6] = ACTIONS(9405), + [aux_sym_def_type_statement_token7] = ACTIONS(9405), + [aux_sym_def_type_statement_token8] = ACTIONS(9405), + [aux_sym_def_type_statement_token9] = ACTIONS(9405), + [aux_sym_def_type_statement_token10] = ACTIONS(9405), + [aux_sym_def_type_statement_token11] = ACTIONS(9405), + [aux_sym_def_type_statement_token12] = ACTIONS(9405), + [aux_sym_def_type_statement_token13] = ACTIONS(9405), + [aux_sym_def_type_statement_token14] = ACTIONS(9405), + [aux_sym_call_statement_token1] = ACTIONS(9405), + [sym__ambiguous_call_statement] = ACTIONS(9405), + [aux_sym_addressof_expression_token1] = ACTIONS(9405), + [aux_sym_type_of_expression_token1] = ACTIONS(9405), + [aux_sym_unary_expression_token1] = ACTIONS(9405), + [sym_string_literal] = ACTIONS(9407), + [sym_number_literal] = ACTIONS(9407), + [aux_sym_boolean_literal_token1] = ACTIONS(9405), + [aux_sym_boolean_literal_token2] = ACTIONS(9405), + [sym_nothing_literal] = ACTIONS(9405), + [sym_null_literal] = ACTIONS(9405), + [sym_empty_literal] = ACTIONS(9405), + [sym_date_literal] = ACTIONS(9407), + [anon_sym_POUND] = ACTIONS(9405), + }, + [STATE(6931)] = { + [sym_identifier] = ACTIONS(9658), + [sym_newline] = ACTIONS(9660), + [anon_sym_COLON] = ACTIONS(9660), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9658), + [aux_sym_frm_property_statement_token1] = ACTIONS(9658), + [anon_sym_DOT] = ACTIONS(9658), + [anon_sym_BANG] = ACTIONS(9660), + [aux_sym__attribute_identifier_token1] = ACTIONS(9658), + [aux_sym_option_statement_token3] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9658), + [aux_sym_preprocessor_const_token1] = ACTIONS(9658), + [sym_static_modifier] = ACTIONS(9658), + [sym__dim_keyword] = ACTIONS(9658), + [sym__redim_keyword] = ACTIONS(9658), + [aux_sym_get_accessor_token1] = ACTIONS(9658), + [aux_sym_set_accessor_token1] = ACTIONS(9658), + [aux_sym_const_declaration_token1] = ACTIONS(9658), + [anon_sym_LPAREN] = ACTIONS(9660), + [aux_sym_as_type_clause_token2] = ACTIONS(9658), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9658), + [aux_sym_visibility_token1] = ACTIONS(9658), + [aux_sym_visibility_token2] = ACTIONS(9658), + [aux_sym_elseif_fragment_token1] = ACTIONS(9658), + [aux_sym_else_fragment_token1] = ACTIONS(9658), + [aux_sym_select_statement_token1] = ACTIONS(9658), + [aux_sym_select_statement_token2] = ACTIONS(9658), + [aux_sym__for_header_token1] = ACTIONS(9658), + [aux_sym_do_statement_token1] = ACTIONS(9658), + [aux_sym_do_condition_token1] = ACTIONS(9658), + [aux_sym_with_statement_token1] = ACTIONS(9658), + [aux_sym_exit_statement_token1] = ACTIONS(9658), + [sym_end_statement] = ACTIONS(9660), + [aux_sym_on_goto_statement_token1] = ACTIONS(9658), + [aux_sym_on_goto_statement_token2] = ACTIONS(9658), + [aux_sym_on_error_statement_token2] = ACTIONS(9658), + [sym__ambiguous_redim_statement] = ACTIONS(9660), + [aux_sym_erase_statement_token1] = ACTIONS(9658), + [aux_sym_open_statement_token1] = ACTIONS(9658), + [aux_sym_file_mode_token2] = ACTIONS(9658), + [aux_sym_file_access_token2] = ACTIONS(9658), + [aux_sym_file_lock_token2] = ACTIONS(9658), + [aux_sym_print_statement_token1] = ACTIONS(9658), + [anon_sym_PLUS] = ACTIONS(9660), + [anon_sym_DASH] = ACTIONS(9658), + [anon_sym_QMARK] = ACTIONS(9660), + [aux_sym_close_statement_token1] = ACTIONS(9658), + [aux_sym_put_statement_token1] = ACTIONS(9658), + [aux_sym_unlock_statement_token1] = ACTIONS(9658), + [aux_sym_seek_statement_token1] = ACTIONS(9658), + [sym_reset_statement] = ACTIONS(9658), + [aux_sym_raise_event_statement_token1] = ACTIONS(9658), + [sym_stop_statement] = ACTIONS(9658), + [sym_beep_statement] = ACTIONS(9658), + [aux_sym_unload_statement_token1] = ACTIONS(9658), + [aux_sym_def_type_statement_token1] = ACTIONS(9658), + [aux_sym_def_type_statement_token2] = ACTIONS(9658), + [aux_sym_def_type_statement_token3] = ACTIONS(9658), + [aux_sym_def_type_statement_token4] = ACTIONS(9658), + [aux_sym_def_type_statement_token5] = ACTIONS(9658), + [aux_sym_def_type_statement_token6] = ACTIONS(9658), + [aux_sym_def_type_statement_token7] = ACTIONS(9658), + [aux_sym_def_type_statement_token8] = ACTIONS(9658), + [aux_sym_def_type_statement_token9] = ACTIONS(9658), + [aux_sym_def_type_statement_token10] = ACTIONS(9658), + [aux_sym_def_type_statement_token11] = ACTIONS(9658), + [aux_sym_def_type_statement_token12] = ACTIONS(9658), + [aux_sym_def_type_statement_token13] = ACTIONS(9658), + [aux_sym_def_type_statement_token14] = ACTIONS(9658), + [aux_sym_call_statement_token1] = ACTIONS(9658), + [sym__ambiguous_call_statement] = ACTIONS(9658), + [aux_sym_addressof_expression_token1] = ACTIONS(9658), + [aux_sym_type_of_expression_token1] = ACTIONS(9658), + [aux_sym_unary_expression_token1] = ACTIONS(9658), + [sym_string_literal] = ACTIONS(9660), + [sym_number_literal] = ACTIONS(9660), + [aux_sym_boolean_literal_token1] = ACTIONS(9658), + [aux_sym_boolean_literal_token2] = ACTIONS(9658), + [sym_nothing_literal] = ACTIONS(9658), + [sym_null_literal] = ACTIONS(9658), + [sym_empty_literal] = ACTIONS(9658), + [sym_date_literal] = ACTIONS(9660), + [anon_sym_POUND] = ACTIONS(9658), + }, + [STATE(6932)] = { + [sym_identifier] = ACTIONS(9409), + [sym_newline] = ACTIONS(9411), + [anon_sym_COLON] = ACTIONS(9411), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9409), + [aux_sym_frm_property_statement_token1] = ACTIONS(9409), + [anon_sym_DOT] = ACTIONS(9409), + [anon_sym_BANG] = ACTIONS(9411), + [aux_sym__attribute_identifier_token1] = ACTIONS(9409), + [aux_sym_option_statement_token3] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9409), + [aux_sym_preprocessor_const_token1] = ACTIONS(9409), + [sym_static_modifier] = ACTIONS(9409), + [sym__dim_keyword] = ACTIONS(9409), + [sym__redim_keyword] = ACTIONS(9409), + [aux_sym_get_accessor_token1] = ACTIONS(9409), + [aux_sym_set_accessor_token1] = ACTIONS(9409), + [aux_sym_const_declaration_token1] = ACTIONS(9409), + [anon_sym_LPAREN] = ACTIONS(9411), + [aux_sym_as_type_clause_token2] = ACTIONS(9409), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9409), + [aux_sym_visibility_token1] = ACTIONS(9409), + [aux_sym_visibility_token2] = ACTIONS(9409), + [aux_sym_elseif_fragment_token1] = ACTIONS(9409), + [aux_sym_else_fragment_token1] = ACTIONS(9409), + [aux_sym_select_statement_token1] = ACTIONS(9409), + [aux_sym__for_header_token1] = ACTIONS(9409), + [aux_sym_do_statement_token1] = ACTIONS(9409), + [aux_sym_do_condition_token1] = ACTIONS(9409), + [aux_sym_while_statement_token1] = ACTIONS(9409), + [aux_sym_with_statement_token1] = ACTIONS(9409), + [aux_sym_exit_statement_token1] = ACTIONS(9409), + [sym_end_statement] = ACTIONS(9411), + [aux_sym_on_goto_statement_token1] = ACTIONS(9409), + [aux_sym_on_goto_statement_token2] = ACTIONS(9409), + [aux_sym_on_error_statement_token2] = ACTIONS(9409), + [sym__ambiguous_redim_statement] = ACTIONS(9411), + [aux_sym_erase_statement_token1] = ACTIONS(9409), + [aux_sym_open_statement_token1] = ACTIONS(9409), + [aux_sym_file_mode_token2] = ACTIONS(9409), + [aux_sym_file_access_token2] = ACTIONS(9409), + [aux_sym_file_lock_token2] = ACTIONS(9409), + [aux_sym_print_statement_token1] = ACTIONS(9409), + [anon_sym_PLUS] = ACTIONS(9411), + [anon_sym_DASH] = ACTIONS(9409), + [anon_sym_QMARK] = ACTIONS(9411), + [aux_sym_close_statement_token1] = ACTIONS(9409), + [aux_sym_put_statement_token1] = ACTIONS(9409), + [aux_sym_unlock_statement_token1] = ACTIONS(9409), + [aux_sym_seek_statement_token1] = ACTIONS(9409), + [sym_reset_statement] = ACTIONS(9409), + [aux_sym_raise_event_statement_token1] = ACTIONS(9409), + [sym_stop_statement] = ACTIONS(9409), + [sym_beep_statement] = ACTIONS(9409), + [aux_sym_unload_statement_token1] = ACTIONS(9409), + [aux_sym_def_type_statement_token1] = ACTIONS(9409), + [aux_sym_def_type_statement_token2] = ACTIONS(9409), + [aux_sym_def_type_statement_token3] = ACTIONS(9409), + [aux_sym_def_type_statement_token4] = ACTIONS(9409), + [aux_sym_def_type_statement_token5] = ACTIONS(9409), + [aux_sym_def_type_statement_token6] = ACTIONS(9409), + [aux_sym_def_type_statement_token7] = ACTIONS(9409), + [aux_sym_def_type_statement_token8] = ACTIONS(9409), + [aux_sym_def_type_statement_token9] = ACTIONS(9409), + [aux_sym_def_type_statement_token10] = ACTIONS(9409), + [aux_sym_def_type_statement_token11] = ACTIONS(9409), + [aux_sym_def_type_statement_token12] = ACTIONS(9409), + [aux_sym_def_type_statement_token13] = ACTIONS(9409), + [aux_sym_def_type_statement_token14] = ACTIONS(9409), + [aux_sym_call_statement_token1] = ACTIONS(9409), + [sym__ambiguous_call_statement] = ACTIONS(9409), + [aux_sym_addressof_expression_token1] = ACTIONS(9409), + [aux_sym_type_of_expression_token1] = ACTIONS(9409), + [aux_sym_unary_expression_token1] = ACTIONS(9409), + [sym_string_literal] = ACTIONS(9411), + [sym_number_literal] = ACTIONS(9411), + [aux_sym_boolean_literal_token1] = ACTIONS(9409), + [aux_sym_boolean_literal_token2] = ACTIONS(9409), + [sym_nothing_literal] = ACTIONS(9409), + [sym_null_literal] = ACTIONS(9409), + [sym_empty_literal] = ACTIONS(9409), + [sym_date_literal] = ACTIONS(9411), + [anon_sym_POUND] = ACTIONS(9409), + }, + [STATE(6933)] = { + [sym_identifier] = ACTIONS(8996), + [sym_newline] = ACTIONS(8998), + [anon_sym_COLON] = ACTIONS(8998), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8996), + [aux_sym_frm_property_statement_token1] = ACTIONS(8996), + [anon_sym_DOT] = ACTIONS(8996), + [anon_sym_BANG] = ACTIONS(8998), + [aux_sym__attribute_identifier_token1] = ACTIONS(8996), + [aux_sym_option_statement_token3] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8996), + [aux_sym_preprocessor_const_token1] = ACTIONS(8996), + [sym_static_modifier] = ACTIONS(8996), + [sym__dim_keyword] = ACTIONS(8996), + [sym__redim_keyword] = ACTIONS(8996), + [aux_sym_get_accessor_token1] = ACTIONS(8996), + [aux_sym_set_accessor_token1] = ACTIONS(8996), + [aux_sym_const_declaration_token1] = ACTIONS(8996), + [anon_sym_LPAREN] = ACTIONS(8998), + [aux_sym_as_type_clause_token2] = ACTIONS(8996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8996), + [aux_sym_visibility_token1] = ACTIONS(8996), + [aux_sym_visibility_token2] = ACTIONS(8996), + [aux_sym_elseif_fragment_token1] = ACTIONS(8996), + [aux_sym_else_fragment_token1] = ACTIONS(8996), + [aux_sym_select_statement_token1] = ACTIONS(8996), + [aux_sym__for_header_token1] = ACTIONS(8996), + [aux_sym_do_statement_token1] = ACTIONS(8996), + [aux_sym_do_statement_token2] = ACTIONS(8996), + [aux_sym_do_condition_token1] = ACTIONS(8996), + [aux_sym_with_statement_token1] = ACTIONS(8996), + [aux_sym_exit_statement_token1] = ACTIONS(8996), + [sym_end_statement] = ACTIONS(8998), + [aux_sym_on_goto_statement_token1] = ACTIONS(8996), + [aux_sym_on_goto_statement_token2] = ACTIONS(8996), + [aux_sym_on_error_statement_token2] = ACTIONS(8996), + [sym__ambiguous_redim_statement] = ACTIONS(8998), + [aux_sym_erase_statement_token1] = ACTIONS(8996), + [aux_sym_open_statement_token1] = ACTIONS(8996), + [aux_sym_file_mode_token2] = ACTIONS(8996), + [aux_sym_file_access_token2] = ACTIONS(8996), + [aux_sym_file_lock_token2] = ACTIONS(8996), + [aux_sym_print_statement_token1] = ACTIONS(8996), + [anon_sym_PLUS] = ACTIONS(8998), + [anon_sym_DASH] = ACTIONS(8996), + [anon_sym_QMARK] = ACTIONS(8998), + [aux_sym_close_statement_token1] = ACTIONS(8996), + [aux_sym_put_statement_token1] = ACTIONS(8996), + [aux_sym_unlock_statement_token1] = ACTIONS(8996), + [aux_sym_seek_statement_token1] = ACTIONS(8996), + [sym_reset_statement] = ACTIONS(8996), + [aux_sym_raise_event_statement_token1] = ACTIONS(8996), + [sym_stop_statement] = ACTIONS(8996), + [sym_beep_statement] = ACTIONS(8996), + [aux_sym_unload_statement_token1] = ACTIONS(8996), + [aux_sym_def_type_statement_token1] = ACTIONS(8996), + [aux_sym_def_type_statement_token2] = ACTIONS(8996), + [aux_sym_def_type_statement_token3] = ACTIONS(8996), + [aux_sym_def_type_statement_token4] = ACTIONS(8996), + [aux_sym_def_type_statement_token5] = ACTIONS(8996), + [aux_sym_def_type_statement_token6] = ACTIONS(8996), + [aux_sym_def_type_statement_token7] = ACTIONS(8996), + [aux_sym_def_type_statement_token8] = ACTIONS(8996), + [aux_sym_def_type_statement_token9] = ACTIONS(8996), + [aux_sym_def_type_statement_token10] = ACTIONS(8996), + [aux_sym_def_type_statement_token11] = ACTIONS(8996), + [aux_sym_def_type_statement_token12] = ACTIONS(8996), + [aux_sym_def_type_statement_token13] = ACTIONS(8996), + [aux_sym_def_type_statement_token14] = ACTIONS(8996), + [aux_sym_call_statement_token1] = ACTIONS(8996), + [sym__ambiguous_call_statement] = ACTIONS(8996), + [aux_sym_addressof_expression_token1] = ACTIONS(8996), + [aux_sym_type_of_expression_token1] = ACTIONS(8996), + [aux_sym_unary_expression_token1] = ACTIONS(8996), + [sym_string_literal] = ACTIONS(8998), + [sym_number_literal] = ACTIONS(8998), + [aux_sym_boolean_literal_token1] = ACTIONS(8996), + [aux_sym_boolean_literal_token2] = ACTIONS(8996), + [sym_nothing_literal] = ACTIONS(8996), + [sym_null_literal] = ACTIONS(8996), + [sym_empty_literal] = ACTIONS(8996), + [sym_date_literal] = ACTIONS(8998), + [anon_sym_POUND] = ACTIONS(8996), + }, + [STATE(6934)] = { + [sym_identifier] = ACTIONS(9413), + [sym_newline] = ACTIONS(9415), + [anon_sym_COLON] = ACTIONS(9415), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9413), + [aux_sym_frm_property_statement_token1] = ACTIONS(9413), + [anon_sym_DOT] = ACTIONS(9413), + [anon_sym_BANG] = ACTIONS(9415), + [aux_sym__attribute_identifier_token1] = ACTIONS(9413), + [aux_sym_option_statement_token3] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9413), + [aux_sym_preprocessor_const_token1] = ACTIONS(9413), + [sym_static_modifier] = ACTIONS(9413), + [sym__dim_keyword] = ACTIONS(9413), + [sym__redim_keyword] = ACTIONS(9413), + [aux_sym_get_accessor_token1] = ACTIONS(9413), + [aux_sym_set_accessor_token1] = ACTIONS(9413), + [aux_sym_const_declaration_token1] = ACTIONS(9413), + [anon_sym_LPAREN] = ACTIONS(9415), + [aux_sym_as_type_clause_token2] = ACTIONS(9413), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9413), + [aux_sym_visibility_token1] = ACTIONS(9413), + [aux_sym_visibility_token2] = ACTIONS(9413), + [aux_sym_elseif_fragment_token1] = ACTIONS(9413), + [aux_sym_else_fragment_token1] = ACTIONS(9413), + [aux_sym_select_statement_token1] = ACTIONS(9413), + [aux_sym__for_header_token1] = ACTIONS(9413), + [aux_sym_do_statement_token1] = ACTIONS(9413), + [aux_sym_do_condition_token1] = ACTIONS(9413), + [aux_sym_while_statement_token1] = ACTIONS(9413), + [aux_sym_with_statement_token1] = ACTIONS(9413), + [aux_sym_exit_statement_token1] = ACTIONS(9413), + [sym_end_statement] = ACTIONS(9415), + [aux_sym_on_goto_statement_token1] = ACTIONS(9413), + [aux_sym_on_goto_statement_token2] = ACTIONS(9413), + [aux_sym_on_error_statement_token2] = ACTIONS(9413), + [sym__ambiguous_redim_statement] = ACTIONS(9415), + [aux_sym_erase_statement_token1] = ACTIONS(9413), + [aux_sym_open_statement_token1] = ACTIONS(9413), + [aux_sym_file_mode_token2] = ACTIONS(9413), + [aux_sym_file_access_token2] = ACTIONS(9413), + [aux_sym_file_lock_token2] = ACTIONS(9413), + [aux_sym_print_statement_token1] = ACTIONS(9413), + [anon_sym_PLUS] = ACTIONS(9415), + [anon_sym_DASH] = ACTIONS(9413), + [anon_sym_QMARK] = ACTIONS(9415), + [aux_sym_close_statement_token1] = ACTIONS(9413), + [aux_sym_put_statement_token1] = ACTIONS(9413), + [aux_sym_unlock_statement_token1] = ACTIONS(9413), + [aux_sym_seek_statement_token1] = ACTIONS(9413), + [sym_reset_statement] = ACTIONS(9413), + [aux_sym_raise_event_statement_token1] = ACTIONS(9413), + [sym_stop_statement] = ACTIONS(9413), + [sym_beep_statement] = ACTIONS(9413), + [aux_sym_unload_statement_token1] = ACTIONS(9413), + [aux_sym_def_type_statement_token1] = ACTIONS(9413), + [aux_sym_def_type_statement_token2] = ACTIONS(9413), + [aux_sym_def_type_statement_token3] = ACTIONS(9413), + [aux_sym_def_type_statement_token4] = ACTIONS(9413), + [aux_sym_def_type_statement_token5] = ACTIONS(9413), + [aux_sym_def_type_statement_token6] = ACTIONS(9413), + [aux_sym_def_type_statement_token7] = ACTIONS(9413), + [aux_sym_def_type_statement_token8] = ACTIONS(9413), + [aux_sym_def_type_statement_token9] = ACTIONS(9413), + [aux_sym_def_type_statement_token10] = ACTIONS(9413), + [aux_sym_def_type_statement_token11] = ACTIONS(9413), + [aux_sym_def_type_statement_token12] = ACTIONS(9413), + [aux_sym_def_type_statement_token13] = ACTIONS(9413), + [aux_sym_def_type_statement_token14] = ACTIONS(9413), + [aux_sym_call_statement_token1] = ACTIONS(9413), + [sym__ambiguous_call_statement] = ACTIONS(9413), + [aux_sym_addressof_expression_token1] = ACTIONS(9413), + [aux_sym_type_of_expression_token1] = ACTIONS(9413), + [aux_sym_unary_expression_token1] = ACTIONS(9413), + [sym_string_literal] = ACTIONS(9415), + [sym_number_literal] = ACTIONS(9415), + [aux_sym_boolean_literal_token1] = ACTIONS(9413), + [aux_sym_boolean_literal_token2] = ACTIONS(9413), + [sym_nothing_literal] = ACTIONS(9413), + [sym_null_literal] = ACTIONS(9413), + [sym_empty_literal] = ACTIONS(9413), + [sym_date_literal] = ACTIONS(9415), + [anon_sym_POUND] = ACTIONS(9413), + }, + [STATE(6935)] = { + [sym_identifier] = ACTIONS(9000), + [sym_newline] = ACTIONS(9002), + [anon_sym_COLON] = ACTIONS(9002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9000), + [aux_sym_frm_property_statement_token1] = ACTIONS(9000), + [anon_sym_DOT] = ACTIONS(9000), + [anon_sym_BANG] = ACTIONS(9002), + [aux_sym__attribute_identifier_token1] = ACTIONS(9000), + [aux_sym_option_statement_token3] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9000), + [aux_sym_preprocessor_const_token1] = ACTIONS(9000), + [sym_static_modifier] = ACTIONS(9000), + [sym__dim_keyword] = ACTIONS(9000), + [sym__redim_keyword] = ACTIONS(9000), + [aux_sym_get_accessor_token1] = ACTIONS(9000), + [aux_sym_set_accessor_token1] = ACTIONS(9000), + [aux_sym_const_declaration_token1] = ACTIONS(9000), + [anon_sym_LPAREN] = ACTIONS(9002), + [aux_sym_as_type_clause_token2] = ACTIONS(9000), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9000), + [aux_sym_visibility_token1] = ACTIONS(9000), + [aux_sym_visibility_token2] = ACTIONS(9000), + [aux_sym_elseif_fragment_token1] = ACTIONS(9000), + [aux_sym_else_fragment_token1] = ACTIONS(9000), + [aux_sym_select_statement_token1] = ACTIONS(9000), + [aux_sym__for_header_token1] = ACTIONS(9000), + [aux_sym_do_statement_token1] = ACTIONS(9000), + [aux_sym_do_statement_token2] = ACTIONS(9000), + [aux_sym_do_condition_token1] = ACTIONS(9000), + [aux_sym_with_statement_token1] = ACTIONS(9000), + [aux_sym_exit_statement_token1] = ACTIONS(9000), + [sym_end_statement] = ACTIONS(9002), + [aux_sym_on_goto_statement_token1] = ACTIONS(9000), + [aux_sym_on_goto_statement_token2] = ACTIONS(9000), + [aux_sym_on_error_statement_token2] = ACTIONS(9000), + [sym__ambiguous_redim_statement] = ACTIONS(9002), + [aux_sym_erase_statement_token1] = ACTIONS(9000), + [aux_sym_open_statement_token1] = ACTIONS(9000), + [aux_sym_file_mode_token2] = ACTIONS(9000), + [aux_sym_file_access_token2] = ACTIONS(9000), + [aux_sym_file_lock_token2] = ACTIONS(9000), + [aux_sym_print_statement_token1] = ACTIONS(9000), + [anon_sym_PLUS] = ACTIONS(9002), + [anon_sym_DASH] = ACTIONS(9000), + [anon_sym_QMARK] = ACTIONS(9002), + [aux_sym_close_statement_token1] = ACTIONS(9000), + [aux_sym_put_statement_token1] = ACTIONS(9000), + [aux_sym_unlock_statement_token1] = ACTIONS(9000), + [aux_sym_seek_statement_token1] = ACTIONS(9000), + [sym_reset_statement] = ACTIONS(9000), + [aux_sym_raise_event_statement_token1] = ACTIONS(9000), + [sym_stop_statement] = ACTIONS(9000), + [sym_beep_statement] = ACTIONS(9000), + [aux_sym_unload_statement_token1] = ACTIONS(9000), + [aux_sym_def_type_statement_token1] = ACTIONS(9000), + [aux_sym_def_type_statement_token2] = ACTIONS(9000), + [aux_sym_def_type_statement_token3] = ACTIONS(9000), + [aux_sym_def_type_statement_token4] = ACTIONS(9000), + [aux_sym_def_type_statement_token5] = ACTIONS(9000), + [aux_sym_def_type_statement_token6] = ACTIONS(9000), + [aux_sym_def_type_statement_token7] = ACTIONS(9000), + [aux_sym_def_type_statement_token8] = ACTIONS(9000), + [aux_sym_def_type_statement_token9] = ACTIONS(9000), + [aux_sym_def_type_statement_token10] = ACTIONS(9000), + [aux_sym_def_type_statement_token11] = ACTIONS(9000), + [aux_sym_def_type_statement_token12] = ACTIONS(9000), + [aux_sym_def_type_statement_token13] = ACTIONS(9000), + [aux_sym_def_type_statement_token14] = ACTIONS(9000), + [aux_sym_call_statement_token1] = ACTIONS(9000), + [sym__ambiguous_call_statement] = ACTIONS(9000), + [aux_sym_addressof_expression_token1] = ACTIONS(9000), + [aux_sym_type_of_expression_token1] = ACTIONS(9000), + [aux_sym_unary_expression_token1] = ACTIONS(9000), + [sym_string_literal] = ACTIONS(9002), + [sym_number_literal] = ACTIONS(9002), + [aux_sym_boolean_literal_token1] = ACTIONS(9000), + [aux_sym_boolean_literal_token2] = ACTIONS(9000), + [sym_nothing_literal] = ACTIONS(9000), + [sym_null_literal] = ACTIONS(9000), + [sym_empty_literal] = ACTIONS(9000), + [sym_date_literal] = ACTIONS(9002), + [anon_sym_POUND] = ACTIONS(9000), + }, + [STATE(6936)] = { + [sym_identifier] = ACTIONS(9419), + [sym_newline] = ACTIONS(9421), + [anon_sym_COLON] = ACTIONS(9421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9419), + [aux_sym_frm_property_statement_token1] = ACTIONS(9419), + [anon_sym_DOT] = ACTIONS(9419), + [anon_sym_BANG] = ACTIONS(9421), + [aux_sym__attribute_identifier_token1] = ACTIONS(9419), + [aux_sym_option_statement_token3] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9419), + [aux_sym_preprocessor_const_token1] = ACTIONS(9419), + [sym_static_modifier] = ACTIONS(9419), + [sym__dim_keyword] = ACTIONS(9419), + [sym__redim_keyword] = ACTIONS(9419), + [aux_sym_get_accessor_token1] = ACTIONS(9419), + [aux_sym_set_accessor_token1] = ACTIONS(9419), + [aux_sym_const_declaration_token1] = ACTIONS(9419), + [anon_sym_LPAREN] = ACTIONS(9421), + [aux_sym_as_type_clause_token2] = ACTIONS(9419), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9419), + [aux_sym_visibility_token1] = ACTIONS(9419), + [aux_sym_visibility_token2] = ACTIONS(9419), + [aux_sym_elseif_fragment_token1] = ACTIONS(9419), + [aux_sym_else_fragment_token1] = ACTIONS(9419), + [aux_sym_select_statement_token1] = ACTIONS(9419), + [aux_sym__for_header_token1] = ACTIONS(9419), + [aux_sym_do_statement_token1] = ACTIONS(9419), + [aux_sym_do_condition_token1] = ACTIONS(9419), + [aux_sym_while_statement_token1] = ACTIONS(9419), + [aux_sym_with_statement_token1] = ACTIONS(9419), + [aux_sym_exit_statement_token1] = ACTIONS(9419), + [sym_end_statement] = ACTIONS(9421), + [aux_sym_on_goto_statement_token1] = ACTIONS(9419), + [aux_sym_on_goto_statement_token2] = ACTIONS(9419), + [aux_sym_on_error_statement_token2] = ACTIONS(9419), + [sym__ambiguous_redim_statement] = ACTIONS(9421), + [aux_sym_erase_statement_token1] = ACTIONS(9419), + [aux_sym_open_statement_token1] = ACTIONS(9419), + [aux_sym_file_mode_token2] = ACTIONS(9419), + [aux_sym_file_access_token2] = ACTIONS(9419), + [aux_sym_file_lock_token2] = ACTIONS(9419), + [aux_sym_print_statement_token1] = ACTIONS(9419), + [anon_sym_PLUS] = ACTIONS(9421), + [anon_sym_DASH] = ACTIONS(9419), + [anon_sym_QMARK] = ACTIONS(9421), + [aux_sym_close_statement_token1] = ACTIONS(9419), + [aux_sym_put_statement_token1] = ACTIONS(9419), + [aux_sym_unlock_statement_token1] = ACTIONS(9419), + [aux_sym_seek_statement_token1] = ACTIONS(9419), + [sym_reset_statement] = ACTIONS(9419), + [aux_sym_raise_event_statement_token1] = ACTIONS(9419), + [sym_stop_statement] = ACTIONS(9419), + [sym_beep_statement] = ACTIONS(9419), + [aux_sym_unload_statement_token1] = ACTIONS(9419), + [aux_sym_def_type_statement_token1] = ACTIONS(9419), + [aux_sym_def_type_statement_token2] = ACTIONS(9419), + [aux_sym_def_type_statement_token3] = ACTIONS(9419), + [aux_sym_def_type_statement_token4] = ACTIONS(9419), + [aux_sym_def_type_statement_token5] = ACTIONS(9419), + [aux_sym_def_type_statement_token6] = ACTIONS(9419), + [aux_sym_def_type_statement_token7] = ACTIONS(9419), + [aux_sym_def_type_statement_token8] = ACTIONS(9419), + [aux_sym_def_type_statement_token9] = ACTIONS(9419), + [aux_sym_def_type_statement_token10] = ACTIONS(9419), + [aux_sym_def_type_statement_token11] = ACTIONS(9419), + [aux_sym_def_type_statement_token12] = ACTIONS(9419), + [aux_sym_def_type_statement_token13] = ACTIONS(9419), + [aux_sym_def_type_statement_token14] = ACTIONS(9419), + [aux_sym_call_statement_token1] = ACTIONS(9419), + [sym__ambiguous_call_statement] = ACTIONS(9419), + [aux_sym_addressof_expression_token1] = ACTIONS(9419), + [aux_sym_type_of_expression_token1] = ACTIONS(9419), + [aux_sym_unary_expression_token1] = ACTIONS(9419), + [sym_string_literal] = ACTIONS(9421), + [sym_number_literal] = ACTIONS(9421), + [aux_sym_boolean_literal_token1] = ACTIONS(9419), + [aux_sym_boolean_literal_token2] = ACTIONS(9419), + [sym_nothing_literal] = ACTIONS(9419), + [sym_null_literal] = ACTIONS(9419), + [sym_empty_literal] = ACTIONS(9419), + [sym_date_literal] = ACTIONS(9421), + [anon_sym_POUND] = ACTIONS(9419), + }, + [STATE(6937)] = { + [sym_identifier] = ACTIONS(9423), + [sym_newline] = ACTIONS(9425), + [anon_sym_COLON] = ACTIONS(9425), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9423), + [aux_sym_frm_property_statement_token1] = ACTIONS(9423), + [anon_sym_DOT] = ACTIONS(9423), + [anon_sym_BANG] = ACTIONS(9425), + [aux_sym__attribute_identifier_token1] = ACTIONS(9423), + [aux_sym_option_statement_token3] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9423), + [aux_sym_preprocessor_const_token1] = ACTIONS(9423), + [sym_static_modifier] = ACTIONS(9423), + [sym__dim_keyword] = ACTIONS(9423), + [sym__redim_keyword] = ACTIONS(9423), + [aux_sym_get_accessor_token1] = ACTIONS(9423), + [aux_sym_set_accessor_token1] = ACTIONS(9423), + [aux_sym_const_declaration_token1] = ACTIONS(9423), + [anon_sym_LPAREN] = ACTIONS(9425), + [aux_sym_as_type_clause_token2] = ACTIONS(9423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9423), + [aux_sym_visibility_token1] = ACTIONS(9423), + [aux_sym_visibility_token2] = ACTIONS(9423), + [aux_sym_elseif_fragment_token1] = ACTIONS(9423), + [aux_sym_else_fragment_token1] = ACTIONS(9423), + [aux_sym_select_statement_token1] = ACTIONS(9423), + [aux_sym__for_header_token1] = ACTIONS(9423), + [aux_sym_do_statement_token1] = ACTIONS(9423), + [aux_sym_do_condition_token1] = ACTIONS(9423), + [aux_sym_while_statement_token1] = ACTIONS(9423), + [aux_sym_with_statement_token1] = ACTIONS(9423), + [aux_sym_exit_statement_token1] = ACTIONS(9423), + [sym_end_statement] = ACTIONS(9425), + [aux_sym_on_goto_statement_token1] = ACTIONS(9423), + [aux_sym_on_goto_statement_token2] = ACTIONS(9423), + [aux_sym_on_error_statement_token2] = ACTIONS(9423), + [sym__ambiguous_redim_statement] = ACTIONS(9425), + [aux_sym_erase_statement_token1] = ACTIONS(9423), + [aux_sym_open_statement_token1] = ACTIONS(9423), + [aux_sym_file_mode_token2] = ACTIONS(9423), + [aux_sym_file_access_token2] = ACTIONS(9423), + [aux_sym_file_lock_token2] = ACTIONS(9423), + [aux_sym_print_statement_token1] = ACTIONS(9423), + [anon_sym_PLUS] = ACTIONS(9425), + [anon_sym_DASH] = ACTIONS(9423), + [anon_sym_QMARK] = ACTIONS(9425), + [aux_sym_close_statement_token1] = ACTIONS(9423), + [aux_sym_put_statement_token1] = ACTIONS(9423), + [aux_sym_unlock_statement_token1] = ACTIONS(9423), + [aux_sym_seek_statement_token1] = ACTIONS(9423), + [sym_reset_statement] = ACTIONS(9423), + [aux_sym_raise_event_statement_token1] = ACTIONS(9423), + [sym_stop_statement] = ACTIONS(9423), + [sym_beep_statement] = ACTIONS(9423), + [aux_sym_unload_statement_token1] = ACTIONS(9423), + [aux_sym_def_type_statement_token1] = ACTIONS(9423), + [aux_sym_def_type_statement_token2] = ACTIONS(9423), + [aux_sym_def_type_statement_token3] = ACTIONS(9423), + [aux_sym_def_type_statement_token4] = ACTIONS(9423), + [aux_sym_def_type_statement_token5] = ACTIONS(9423), + [aux_sym_def_type_statement_token6] = ACTIONS(9423), + [aux_sym_def_type_statement_token7] = ACTIONS(9423), + [aux_sym_def_type_statement_token8] = ACTIONS(9423), + [aux_sym_def_type_statement_token9] = ACTIONS(9423), + [aux_sym_def_type_statement_token10] = ACTIONS(9423), + [aux_sym_def_type_statement_token11] = ACTIONS(9423), + [aux_sym_def_type_statement_token12] = ACTIONS(9423), + [aux_sym_def_type_statement_token13] = ACTIONS(9423), + [aux_sym_def_type_statement_token14] = ACTIONS(9423), + [aux_sym_call_statement_token1] = ACTIONS(9423), + [sym__ambiguous_call_statement] = ACTIONS(9423), + [aux_sym_addressof_expression_token1] = ACTIONS(9423), + [aux_sym_type_of_expression_token1] = ACTIONS(9423), + [aux_sym_unary_expression_token1] = ACTIONS(9423), + [sym_string_literal] = ACTIONS(9425), + [sym_number_literal] = ACTIONS(9425), + [aux_sym_boolean_literal_token1] = ACTIONS(9423), + [aux_sym_boolean_literal_token2] = ACTIONS(9423), + [sym_nothing_literal] = ACTIONS(9423), + [sym_null_literal] = ACTIONS(9423), + [sym_empty_literal] = ACTIONS(9423), + [sym_date_literal] = ACTIONS(9425), + [anon_sym_POUND] = ACTIONS(9423), + }, + [STATE(6938)] = { + [sym_identifier] = ACTIONS(9004), + [sym_newline] = ACTIONS(9006), + [anon_sym_COLON] = ACTIONS(9006), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9004), + [aux_sym_frm_property_statement_token1] = ACTIONS(9004), + [anon_sym_DOT] = ACTIONS(9004), + [anon_sym_BANG] = ACTIONS(9006), + [aux_sym__attribute_identifier_token1] = ACTIONS(9004), + [aux_sym_option_statement_token3] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9004), + [aux_sym_preprocessor_const_token1] = ACTIONS(9004), + [sym_static_modifier] = ACTIONS(9004), + [sym__dim_keyword] = ACTIONS(9004), + [sym__redim_keyword] = ACTIONS(9004), + [aux_sym_get_accessor_token1] = ACTIONS(9004), + [aux_sym_set_accessor_token1] = ACTIONS(9004), + [aux_sym_const_declaration_token1] = ACTIONS(9004), + [anon_sym_LPAREN] = ACTIONS(9006), + [aux_sym_as_type_clause_token2] = ACTIONS(9004), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9004), + [aux_sym_visibility_token1] = ACTIONS(9004), + [aux_sym_visibility_token2] = ACTIONS(9004), + [aux_sym_elseif_fragment_token1] = ACTIONS(9004), + [aux_sym_else_fragment_token1] = ACTIONS(9004), + [aux_sym_select_statement_token1] = ACTIONS(9004), + [aux_sym__for_header_token1] = ACTIONS(9004), + [aux_sym_do_statement_token1] = ACTIONS(9004), + [aux_sym_do_statement_token2] = ACTIONS(9004), + [aux_sym_do_condition_token1] = ACTIONS(9004), + [aux_sym_with_statement_token1] = ACTIONS(9004), + [aux_sym_exit_statement_token1] = ACTIONS(9004), + [sym_end_statement] = ACTIONS(9006), + [aux_sym_on_goto_statement_token1] = ACTIONS(9004), + [aux_sym_on_goto_statement_token2] = ACTIONS(9004), + [aux_sym_on_error_statement_token2] = ACTIONS(9004), + [sym__ambiguous_redim_statement] = ACTIONS(9006), + [aux_sym_erase_statement_token1] = ACTIONS(9004), + [aux_sym_open_statement_token1] = ACTIONS(9004), + [aux_sym_file_mode_token2] = ACTIONS(9004), + [aux_sym_file_access_token2] = ACTIONS(9004), + [aux_sym_file_lock_token2] = ACTIONS(9004), + [aux_sym_print_statement_token1] = ACTIONS(9004), + [anon_sym_PLUS] = ACTIONS(9006), + [anon_sym_DASH] = ACTIONS(9004), + [anon_sym_QMARK] = ACTIONS(9006), + [aux_sym_close_statement_token1] = ACTIONS(9004), + [aux_sym_put_statement_token1] = ACTIONS(9004), + [aux_sym_unlock_statement_token1] = ACTIONS(9004), + [aux_sym_seek_statement_token1] = ACTIONS(9004), + [sym_reset_statement] = ACTIONS(9004), + [aux_sym_raise_event_statement_token1] = ACTIONS(9004), + [sym_stop_statement] = ACTIONS(9004), + [sym_beep_statement] = ACTIONS(9004), + [aux_sym_unload_statement_token1] = ACTIONS(9004), + [aux_sym_def_type_statement_token1] = ACTIONS(9004), + [aux_sym_def_type_statement_token2] = ACTIONS(9004), + [aux_sym_def_type_statement_token3] = ACTIONS(9004), + [aux_sym_def_type_statement_token4] = ACTIONS(9004), + [aux_sym_def_type_statement_token5] = ACTIONS(9004), + [aux_sym_def_type_statement_token6] = ACTIONS(9004), + [aux_sym_def_type_statement_token7] = ACTIONS(9004), + [aux_sym_def_type_statement_token8] = ACTIONS(9004), + [aux_sym_def_type_statement_token9] = ACTIONS(9004), + [aux_sym_def_type_statement_token10] = ACTIONS(9004), + [aux_sym_def_type_statement_token11] = ACTIONS(9004), + [aux_sym_def_type_statement_token12] = ACTIONS(9004), + [aux_sym_def_type_statement_token13] = ACTIONS(9004), + [aux_sym_def_type_statement_token14] = ACTIONS(9004), + [aux_sym_call_statement_token1] = ACTIONS(9004), + [sym__ambiguous_call_statement] = ACTIONS(9004), + [aux_sym_addressof_expression_token1] = ACTIONS(9004), + [aux_sym_type_of_expression_token1] = ACTIONS(9004), + [aux_sym_unary_expression_token1] = ACTIONS(9004), + [sym_string_literal] = ACTIONS(9006), + [sym_number_literal] = ACTIONS(9006), + [aux_sym_boolean_literal_token1] = ACTIONS(9004), + [aux_sym_boolean_literal_token2] = ACTIONS(9004), + [sym_nothing_literal] = ACTIONS(9004), + [sym_null_literal] = ACTIONS(9004), + [sym_empty_literal] = ACTIONS(9004), + [sym_date_literal] = ACTIONS(9006), + [anon_sym_POUND] = ACTIONS(9004), + }, + [STATE(6939)] = { + [sym_identifier] = ACTIONS(9427), + [sym_newline] = ACTIONS(9429), + [anon_sym_COLON] = ACTIONS(9429), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9427), + [aux_sym_frm_property_statement_token1] = ACTIONS(9427), + [anon_sym_DOT] = ACTIONS(9427), + [anon_sym_BANG] = ACTIONS(9429), + [aux_sym__attribute_identifier_token1] = ACTIONS(9427), + [aux_sym_option_statement_token3] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9427), + [aux_sym_preprocessor_const_token1] = ACTIONS(9427), + [sym_static_modifier] = ACTIONS(9427), + [sym__dim_keyword] = ACTIONS(9427), + [sym__redim_keyword] = ACTIONS(9427), + [aux_sym_get_accessor_token1] = ACTIONS(9427), + [aux_sym_set_accessor_token1] = ACTIONS(9427), + [aux_sym_const_declaration_token1] = ACTIONS(9427), + [anon_sym_LPAREN] = ACTIONS(9429), + [aux_sym_as_type_clause_token2] = ACTIONS(9427), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9427), + [aux_sym_visibility_token1] = ACTIONS(9427), + [aux_sym_visibility_token2] = ACTIONS(9427), + [aux_sym_elseif_fragment_token1] = ACTIONS(9427), + [aux_sym_else_fragment_token1] = ACTIONS(9427), + [aux_sym_select_statement_token1] = ACTIONS(9427), + [aux_sym__for_header_token1] = ACTIONS(9427), + [aux_sym_do_statement_token1] = ACTIONS(9427), + [aux_sym_do_condition_token1] = ACTIONS(9427), + [aux_sym_while_statement_token1] = ACTIONS(9427), + [aux_sym_with_statement_token1] = ACTIONS(9427), + [aux_sym_exit_statement_token1] = ACTIONS(9427), + [sym_end_statement] = ACTIONS(9429), + [aux_sym_on_goto_statement_token1] = ACTIONS(9427), + [aux_sym_on_goto_statement_token2] = ACTIONS(9427), + [aux_sym_on_error_statement_token2] = ACTIONS(9427), + [sym__ambiguous_redim_statement] = ACTIONS(9429), + [aux_sym_erase_statement_token1] = ACTIONS(9427), + [aux_sym_open_statement_token1] = ACTIONS(9427), + [aux_sym_file_mode_token2] = ACTIONS(9427), + [aux_sym_file_access_token2] = ACTIONS(9427), + [aux_sym_file_lock_token2] = ACTIONS(9427), + [aux_sym_print_statement_token1] = ACTIONS(9427), + [anon_sym_PLUS] = ACTIONS(9429), + [anon_sym_DASH] = ACTIONS(9427), + [anon_sym_QMARK] = ACTIONS(9429), + [aux_sym_close_statement_token1] = ACTIONS(9427), + [aux_sym_put_statement_token1] = ACTIONS(9427), + [aux_sym_unlock_statement_token1] = ACTIONS(9427), + [aux_sym_seek_statement_token1] = ACTIONS(9427), + [sym_reset_statement] = ACTIONS(9427), + [aux_sym_raise_event_statement_token1] = ACTIONS(9427), + [sym_stop_statement] = ACTIONS(9427), + [sym_beep_statement] = ACTIONS(9427), + [aux_sym_unload_statement_token1] = ACTIONS(9427), + [aux_sym_def_type_statement_token1] = ACTIONS(9427), + [aux_sym_def_type_statement_token2] = ACTIONS(9427), + [aux_sym_def_type_statement_token3] = ACTIONS(9427), + [aux_sym_def_type_statement_token4] = ACTIONS(9427), + [aux_sym_def_type_statement_token5] = ACTIONS(9427), + [aux_sym_def_type_statement_token6] = ACTIONS(9427), + [aux_sym_def_type_statement_token7] = ACTIONS(9427), + [aux_sym_def_type_statement_token8] = ACTIONS(9427), + [aux_sym_def_type_statement_token9] = ACTIONS(9427), + [aux_sym_def_type_statement_token10] = ACTIONS(9427), + [aux_sym_def_type_statement_token11] = ACTIONS(9427), + [aux_sym_def_type_statement_token12] = ACTIONS(9427), + [aux_sym_def_type_statement_token13] = ACTIONS(9427), + [aux_sym_def_type_statement_token14] = ACTIONS(9427), + [aux_sym_call_statement_token1] = ACTIONS(9427), + [sym__ambiguous_call_statement] = ACTIONS(9427), + [aux_sym_addressof_expression_token1] = ACTIONS(9427), + [aux_sym_type_of_expression_token1] = ACTIONS(9427), + [aux_sym_unary_expression_token1] = ACTIONS(9427), + [sym_string_literal] = ACTIONS(9429), + [sym_number_literal] = ACTIONS(9429), + [aux_sym_boolean_literal_token1] = ACTIONS(9427), + [aux_sym_boolean_literal_token2] = ACTIONS(9427), + [sym_nothing_literal] = ACTIONS(9427), + [sym_null_literal] = ACTIONS(9427), + [sym_empty_literal] = ACTIONS(9427), + [sym_date_literal] = ACTIONS(9429), + [anon_sym_POUND] = ACTIONS(9427), + }, + [STATE(6940)] = { + [sym_identifier] = ACTIONS(9431), + [sym_newline] = ACTIONS(9433), + [anon_sym_COLON] = ACTIONS(9433), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9431), + [aux_sym_frm_property_statement_token1] = ACTIONS(9431), + [anon_sym_DOT] = ACTIONS(9431), + [anon_sym_BANG] = ACTIONS(9433), + [aux_sym__attribute_identifier_token1] = ACTIONS(9431), + [aux_sym_option_statement_token3] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9431), + [aux_sym_preprocessor_const_token1] = ACTIONS(9431), + [sym_static_modifier] = ACTIONS(9431), + [sym__dim_keyword] = ACTIONS(9431), + [sym__redim_keyword] = ACTIONS(9431), + [aux_sym_get_accessor_token1] = ACTIONS(9431), + [aux_sym_set_accessor_token1] = ACTIONS(9431), + [aux_sym_const_declaration_token1] = ACTIONS(9431), + [anon_sym_LPAREN] = ACTIONS(9433), + [aux_sym_as_type_clause_token2] = ACTIONS(9431), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9431), + [aux_sym_visibility_token1] = ACTIONS(9431), + [aux_sym_visibility_token2] = ACTIONS(9431), + [aux_sym_elseif_fragment_token1] = ACTIONS(9431), + [aux_sym_else_fragment_token1] = ACTIONS(9431), + [aux_sym_select_statement_token1] = ACTIONS(9431), + [aux_sym__for_header_token1] = ACTIONS(9431), + [aux_sym_do_statement_token1] = ACTIONS(9431), + [aux_sym_do_condition_token1] = ACTIONS(9431), + [aux_sym_while_statement_token1] = ACTIONS(9431), + [aux_sym_with_statement_token1] = ACTIONS(9431), + [aux_sym_exit_statement_token1] = ACTIONS(9431), + [sym_end_statement] = ACTIONS(9433), + [aux_sym_on_goto_statement_token1] = ACTIONS(9431), + [aux_sym_on_goto_statement_token2] = ACTIONS(9431), + [aux_sym_on_error_statement_token2] = ACTIONS(9431), + [sym__ambiguous_redim_statement] = ACTIONS(9433), + [aux_sym_erase_statement_token1] = ACTIONS(9431), + [aux_sym_open_statement_token1] = ACTIONS(9431), + [aux_sym_file_mode_token2] = ACTIONS(9431), + [aux_sym_file_access_token2] = ACTIONS(9431), + [aux_sym_file_lock_token2] = ACTIONS(9431), + [aux_sym_print_statement_token1] = ACTIONS(9431), + [anon_sym_PLUS] = ACTIONS(9433), + [anon_sym_DASH] = ACTIONS(9431), + [anon_sym_QMARK] = ACTIONS(9433), + [aux_sym_close_statement_token1] = ACTIONS(9431), + [aux_sym_put_statement_token1] = ACTIONS(9431), + [aux_sym_unlock_statement_token1] = ACTIONS(9431), + [aux_sym_seek_statement_token1] = ACTIONS(9431), + [sym_reset_statement] = ACTIONS(9431), + [aux_sym_raise_event_statement_token1] = ACTIONS(9431), + [sym_stop_statement] = ACTIONS(9431), + [sym_beep_statement] = ACTIONS(9431), + [aux_sym_unload_statement_token1] = ACTIONS(9431), + [aux_sym_def_type_statement_token1] = ACTIONS(9431), + [aux_sym_def_type_statement_token2] = ACTIONS(9431), + [aux_sym_def_type_statement_token3] = ACTIONS(9431), + [aux_sym_def_type_statement_token4] = ACTIONS(9431), + [aux_sym_def_type_statement_token5] = ACTIONS(9431), + [aux_sym_def_type_statement_token6] = ACTIONS(9431), + [aux_sym_def_type_statement_token7] = ACTIONS(9431), + [aux_sym_def_type_statement_token8] = ACTIONS(9431), + [aux_sym_def_type_statement_token9] = ACTIONS(9431), + [aux_sym_def_type_statement_token10] = ACTIONS(9431), + [aux_sym_def_type_statement_token11] = ACTIONS(9431), + [aux_sym_def_type_statement_token12] = ACTIONS(9431), + [aux_sym_def_type_statement_token13] = ACTIONS(9431), + [aux_sym_def_type_statement_token14] = ACTIONS(9431), + [aux_sym_call_statement_token1] = ACTIONS(9431), + [sym__ambiguous_call_statement] = ACTIONS(9431), + [aux_sym_addressof_expression_token1] = ACTIONS(9431), + [aux_sym_type_of_expression_token1] = ACTIONS(9431), + [aux_sym_unary_expression_token1] = ACTIONS(9431), + [sym_string_literal] = ACTIONS(9433), + [sym_number_literal] = ACTIONS(9433), + [aux_sym_boolean_literal_token1] = ACTIONS(9431), + [aux_sym_boolean_literal_token2] = ACTIONS(9431), + [sym_nothing_literal] = ACTIONS(9431), + [sym_null_literal] = ACTIONS(9431), + [sym_empty_literal] = ACTIONS(9431), + [sym_date_literal] = ACTIONS(9433), + [anon_sym_POUND] = ACTIONS(9431), + }, + [STATE(6941)] = { + [sym_identifier] = ACTIONS(9435), + [sym_newline] = ACTIONS(9437), + [anon_sym_COLON] = ACTIONS(9437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9435), + [aux_sym_frm_property_statement_token1] = ACTIONS(9435), + [anon_sym_DOT] = ACTIONS(9435), + [anon_sym_BANG] = ACTIONS(9437), + [aux_sym__attribute_identifier_token1] = ACTIONS(9435), + [aux_sym_option_statement_token3] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9435), + [aux_sym_preprocessor_const_token1] = ACTIONS(9435), + [sym_static_modifier] = ACTIONS(9435), + [sym__dim_keyword] = ACTIONS(9435), + [sym__redim_keyword] = ACTIONS(9435), + [aux_sym_get_accessor_token1] = ACTIONS(9435), + [aux_sym_set_accessor_token1] = ACTIONS(9435), + [aux_sym_const_declaration_token1] = ACTIONS(9435), + [anon_sym_LPAREN] = ACTIONS(9437), + [aux_sym_as_type_clause_token2] = ACTIONS(9435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9435), + [aux_sym_visibility_token1] = ACTIONS(9435), + [aux_sym_visibility_token2] = ACTIONS(9435), + [aux_sym_elseif_fragment_token1] = ACTIONS(9435), + [aux_sym_else_fragment_token1] = ACTIONS(9435), + [aux_sym_select_statement_token1] = ACTIONS(9435), + [aux_sym__for_header_token1] = ACTIONS(9435), + [aux_sym_do_statement_token1] = ACTIONS(9435), + [aux_sym_do_condition_token1] = ACTIONS(9435), + [aux_sym_while_statement_token1] = ACTIONS(9435), + [aux_sym_with_statement_token1] = ACTIONS(9435), + [aux_sym_exit_statement_token1] = ACTIONS(9435), + [sym_end_statement] = ACTIONS(9437), + [aux_sym_on_goto_statement_token1] = ACTIONS(9435), + [aux_sym_on_goto_statement_token2] = ACTIONS(9435), + [aux_sym_on_error_statement_token2] = ACTIONS(9435), + [sym__ambiguous_redim_statement] = ACTIONS(9437), + [aux_sym_erase_statement_token1] = ACTIONS(9435), + [aux_sym_open_statement_token1] = ACTIONS(9435), + [aux_sym_file_mode_token2] = ACTIONS(9435), + [aux_sym_file_access_token2] = ACTIONS(9435), + [aux_sym_file_lock_token2] = ACTIONS(9435), + [aux_sym_print_statement_token1] = ACTIONS(9435), + [anon_sym_PLUS] = ACTIONS(9437), + [anon_sym_DASH] = ACTIONS(9435), + [anon_sym_QMARK] = ACTIONS(9437), + [aux_sym_close_statement_token1] = ACTIONS(9435), + [aux_sym_put_statement_token1] = ACTIONS(9435), + [aux_sym_unlock_statement_token1] = ACTIONS(9435), + [aux_sym_seek_statement_token1] = ACTIONS(9435), + [sym_reset_statement] = ACTIONS(9435), + [aux_sym_raise_event_statement_token1] = ACTIONS(9435), + [sym_stop_statement] = ACTIONS(9435), + [sym_beep_statement] = ACTIONS(9435), + [aux_sym_unload_statement_token1] = ACTIONS(9435), + [aux_sym_def_type_statement_token1] = ACTIONS(9435), + [aux_sym_def_type_statement_token2] = ACTIONS(9435), + [aux_sym_def_type_statement_token3] = ACTIONS(9435), + [aux_sym_def_type_statement_token4] = ACTIONS(9435), + [aux_sym_def_type_statement_token5] = ACTIONS(9435), + [aux_sym_def_type_statement_token6] = ACTIONS(9435), + [aux_sym_def_type_statement_token7] = ACTIONS(9435), + [aux_sym_def_type_statement_token8] = ACTIONS(9435), + [aux_sym_def_type_statement_token9] = ACTIONS(9435), + [aux_sym_def_type_statement_token10] = ACTIONS(9435), + [aux_sym_def_type_statement_token11] = ACTIONS(9435), + [aux_sym_def_type_statement_token12] = ACTIONS(9435), + [aux_sym_def_type_statement_token13] = ACTIONS(9435), + [aux_sym_def_type_statement_token14] = ACTIONS(9435), + [aux_sym_call_statement_token1] = ACTIONS(9435), + [sym__ambiguous_call_statement] = ACTIONS(9435), + [aux_sym_addressof_expression_token1] = ACTIONS(9435), + [aux_sym_type_of_expression_token1] = ACTIONS(9435), + [aux_sym_unary_expression_token1] = ACTIONS(9435), + [sym_string_literal] = ACTIONS(9437), + [sym_number_literal] = ACTIONS(9437), + [aux_sym_boolean_literal_token1] = ACTIONS(9435), + [aux_sym_boolean_literal_token2] = ACTIONS(9435), + [sym_nothing_literal] = ACTIONS(9435), + [sym_null_literal] = ACTIONS(9435), + [sym_empty_literal] = ACTIONS(9435), + [sym_date_literal] = ACTIONS(9437), + [anon_sym_POUND] = ACTIONS(9435), + }, + [STATE(6942)] = { + [sym_identifier] = ACTIONS(9439), + [sym_newline] = ACTIONS(9441), + [anon_sym_COLON] = ACTIONS(9441), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9439), + [aux_sym_frm_property_statement_token1] = ACTIONS(9439), + [anon_sym_DOT] = ACTIONS(9439), + [anon_sym_BANG] = ACTIONS(9441), + [aux_sym__attribute_identifier_token1] = ACTIONS(9439), + [aux_sym_option_statement_token3] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9439), + [aux_sym_preprocessor_const_token1] = ACTIONS(9439), + [sym_static_modifier] = ACTIONS(9439), + [sym__dim_keyword] = ACTIONS(9439), + [sym__redim_keyword] = ACTIONS(9439), + [aux_sym_get_accessor_token1] = ACTIONS(9439), + [aux_sym_set_accessor_token1] = ACTIONS(9439), + [aux_sym_const_declaration_token1] = ACTIONS(9439), + [anon_sym_LPAREN] = ACTIONS(9441), + [aux_sym_as_type_clause_token2] = ACTIONS(9439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9439), + [aux_sym_visibility_token1] = ACTIONS(9439), + [aux_sym_visibility_token2] = ACTIONS(9439), + [aux_sym_elseif_fragment_token1] = ACTIONS(9439), + [aux_sym_else_fragment_token1] = ACTIONS(9439), + [aux_sym_select_statement_token1] = ACTIONS(9439), + [aux_sym__for_header_token1] = ACTIONS(9439), + [aux_sym_do_statement_token1] = ACTIONS(9439), + [aux_sym_do_condition_token1] = ACTIONS(9439), + [aux_sym_while_statement_token1] = ACTIONS(9439), + [aux_sym_with_statement_token1] = ACTIONS(9439), + [aux_sym_exit_statement_token1] = ACTIONS(9439), + [sym_end_statement] = ACTIONS(9441), + [aux_sym_on_goto_statement_token1] = ACTIONS(9439), + [aux_sym_on_goto_statement_token2] = ACTIONS(9439), + [aux_sym_on_error_statement_token2] = ACTIONS(9439), + [sym__ambiguous_redim_statement] = ACTIONS(9441), + [aux_sym_erase_statement_token1] = ACTIONS(9439), + [aux_sym_open_statement_token1] = ACTIONS(9439), + [aux_sym_file_mode_token2] = ACTIONS(9439), + [aux_sym_file_access_token2] = ACTIONS(9439), + [aux_sym_file_lock_token2] = ACTIONS(9439), + [aux_sym_print_statement_token1] = ACTIONS(9439), + [anon_sym_PLUS] = ACTIONS(9441), + [anon_sym_DASH] = ACTIONS(9439), + [anon_sym_QMARK] = ACTIONS(9441), + [aux_sym_close_statement_token1] = ACTIONS(9439), + [aux_sym_put_statement_token1] = ACTIONS(9439), + [aux_sym_unlock_statement_token1] = ACTIONS(9439), + [aux_sym_seek_statement_token1] = ACTIONS(9439), + [sym_reset_statement] = ACTIONS(9439), + [aux_sym_raise_event_statement_token1] = ACTIONS(9439), + [sym_stop_statement] = ACTIONS(9439), + [sym_beep_statement] = ACTIONS(9439), + [aux_sym_unload_statement_token1] = ACTIONS(9439), + [aux_sym_def_type_statement_token1] = ACTIONS(9439), + [aux_sym_def_type_statement_token2] = ACTIONS(9439), + [aux_sym_def_type_statement_token3] = ACTIONS(9439), + [aux_sym_def_type_statement_token4] = ACTIONS(9439), + [aux_sym_def_type_statement_token5] = ACTIONS(9439), + [aux_sym_def_type_statement_token6] = ACTIONS(9439), + [aux_sym_def_type_statement_token7] = ACTIONS(9439), + [aux_sym_def_type_statement_token8] = ACTIONS(9439), + [aux_sym_def_type_statement_token9] = ACTIONS(9439), + [aux_sym_def_type_statement_token10] = ACTIONS(9439), + [aux_sym_def_type_statement_token11] = ACTIONS(9439), + [aux_sym_def_type_statement_token12] = ACTIONS(9439), + [aux_sym_def_type_statement_token13] = ACTIONS(9439), + [aux_sym_def_type_statement_token14] = ACTIONS(9439), + [aux_sym_call_statement_token1] = ACTIONS(9439), + [sym__ambiguous_call_statement] = ACTIONS(9439), + [aux_sym_addressof_expression_token1] = ACTIONS(9439), + [aux_sym_type_of_expression_token1] = ACTIONS(9439), + [aux_sym_unary_expression_token1] = ACTIONS(9439), + [sym_string_literal] = ACTIONS(9441), + [sym_number_literal] = ACTIONS(9441), + [aux_sym_boolean_literal_token1] = ACTIONS(9439), + [aux_sym_boolean_literal_token2] = ACTIONS(9439), + [sym_nothing_literal] = ACTIONS(9439), + [sym_null_literal] = ACTIONS(9439), + [sym_empty_literal] = ACTIONS(9439), + [sym_date_literal] = ACTIONS(9441), + [anon_sym_POUND] = ACTIONS(9439), + }, + [STATE(6943)] = { + [sym_identifier] = ACTIONS(9443), + [sym_newline] = ACTIONS(9445), + [anon_sym_COLON] = ACTIONS(9445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9443), + [aux_sym_frm_property_statement_token1] = ACTIONS(9443), + [anon_sym_DOT] = ACTIONS(9443), + [anon_sym_BANG] = ACTIONS(9445), + [aux_sym__attribute_identifier_token1] = ACTIONS(9443), + [aux_sym_option_statement_token3] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9443), + [aux_sym_preprocessor_const_token1] = ACTIONS(9443), + [sym_static_modifier] = ACTIONS(9443), + [sym__dim_keyword] = ACTIONS(9443), + [sym__redim_keyword] = ACTIONS(9443), + [aux_sym_get_accessor_token1] = ACTIONS(9443), + [aux_sym_set_accessor_token1] = ACTIONS(9443), + [aux_sym_const_declaration_token1] = ACTIONS(9443), + [anon_sym_LPAREN] = ACTIONS(9445), + [aux_sym_as_type_clause_token2] = ACTIONS(9443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9443), + [aux_sym_visibility_token1] = ACTIONS(9443), + [aux_sym_visibility_token2] = ACTIONS(9443), + [aux_sym_elseif_fragment_token1] = ACTIONS(9443), + [aux_sym_else_fragment_token1] = ACTIONS(9443), + [aux_sym_select_statement_token1] = ACTIONS(9443), + [aux_sym__for_header_token1] = ACTIONS(9443), + [aux_sym_do_statement_token1] = ACTIONS(9443), + [aux_sym_do_condition_token1] = ACTIONS(9443), + [aux_sym_while_statement_token1] = ACTIONS(9443), + [aux_sym_with_statement_token1] = ACTIONS(9443), + [aux_sym_exit_statement_token1] = ACTIONS(9443), + [sym_end_statement] = ACTIONS(9445), + [aux_sym_on_goto_statement_token1] = ACTIONS(9443), + [aux_sym_on_goto_statement_token2] = ACTIONS(9443), + [aux_sym_on_error_statement_token2] = ACTIONS(9443), + [sym__ambiguous_redim_statement] = ACTIONS(9445), + [aux_sym_erase_statement_token1] = ACTIONS(9443), + [aux_sym_open_statement_token1] = ACTIONS(9443), + [aux_sym_file_mode_token2] = ACTIONS(9443), + [aux_sym_file_access_token2] = ACTIONS(9443), + [aux_sym_file_lock_token2] = ACTIONS(9443), + [aux_sym_print_statement_token1] = ACTIONS(9443), + [anon_sym_PLUS] = ACTIONS(9445), + [anon_sym_DASH] = ACTIONS(9443), + [anon_sym_QMARK] = ACTIONS(9445), + [aux_sym_close_statement_token1] = ACTIONS(9443), + [aux_sym_put_statement_token1] = ACTIONS(9443), + [aux_sym_unlock_statement_token1] = ACTIONS(9443), + [aux_sym_seek_statement_token1] = ACTIONS(9443), + [sym_reset_statement] = ACTIONS(9443), + [aux_sym_raise_event_statement_token1] = ACTIONS(9443), + [sym_stop_statement] = ACTIONS(9443), + [sym_beep_statement] = ACTIONS(9443), + [aux_sym_unload_statement_token1] = ACTIONS(9443), + [aux_sym_def_type_statement_token1] = ACTIONS(9443), + [aux_sym_def_type_statement_token2] = ACTIONS(9443), + [aux_sym_def_type_statement_token3] = ACTIONS(9443), + [aux_sym_def_type_statement_token4] = ACTIONS(9443), + [aux_sym_def_type_statement_token5] = ACTIONS(9443), + [aux_sym_def_type_statement_token6] = ACTIONS(9443), + [aux_sym_def_type_statement_token7] = ACTIONS(9443), + [aux_sym_def_type_statement_token8] = ACTIONS(9443), + [aux_sym_def_type_statement_token9] = ACTIONS(9443), + [aux_sym_def_type_statement_token10] = ACTIONS(9443), + [aux_sym_def_type_statement_token11] = ACTIONS(9443), + [aux_sym_def_type_statement_token12] = ACTIONS(9443), + [aux_sym_def_type_statement_token13] = ACTIONS(9443), + [aux_sym_def_type_statement_token14] = ACTIONS(9443), + [aux_sym_call_statement_token1] = ACTIONS(9443), + [sym__ambiguous_call_statement] = ACTIONS(9443), + [aux_sym_addressof_expression_token1] = ACTIONS(9443), + [aux_sym_type_of_expression_token1] = ACTIONS(9443), + [aux_sym_unary_expression_token1] = ACTIONS(9443), + [sym_string_literal] = ACTIONS(9445), + [sym_number_literal] = ACTIONS(9445), + [aux_sym_boolean_literal_token1] = ACTIONS(9443), + [aux_sym_boolean_literal_token2] = ACTIONS(9443), + [sym_nothing_literal] = ACTIONS(9443), + [sym_null_literal] = ACTIONS(9443), + [sym_empty_literal] = ACTIONS(9443), + [sym_date_literal] = ACTIONS(9445), + [anon_sym_POUND] = ACTIONS(9443), + }, + [STATE(6944)] = { + [sym_identifier] = ACTIONS(9447), + [sym_newline] = ACTIONS(9449), + [anon_sym_COLON] = ACTIONS(9449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9447), + [aux_sym_frm_property_statement_token1] = ACTIONS(9447), + [anon_sym_DOT] = ACTIONS(9447), + [anon_sym_BANG] = ACTIONS(9449), + [aux_sym__attribute_identifier_token1] = ACTIONS(9447), + [aux_sym_option_statement_token3] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9447), + [aux_sym_preprocessor_const_token1] = ACTIONS(9447), + [sym_static_modifier] = ACTIONS(9447), + [sym__dim_keyword] = ACTIONS(9447), + [sym__redim_keyword] = ACTIONS(9447), + [aux_sym_get_accessor_token1] = ACTIONS(9447), + [aux_sym_set_accessor_token1] = ACTIONS(9447), + [aux_sym_const_declaration_token1] = ACTIONS(9447), + [anon_sym_LPAREN] = ACTIONS(9449), + [aux_sym_as_type_clause_token2] = ACTIONS(9447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9447), + [aux_sym_visibility_token1] = ACTIONS(9447), + [aux_sym_visibility_token2] = ACTIONS(9447), + [aux_sym_elseif_fragment_token1] = ACTIONS(9447), + [aux_sym_else_fragment_token1] = ACTIONS(9447), + [aux_sym_select_statement_token1] = ACTIONS(9447), + [aux_sym__for_header_token1] = ACTIONS(9447), + [aux_sym_do_statement_token1] = ACTIONS(9447), + [aux_sym_do_condition_token1] = ACTIONS(9447), + [aux_sym_while_statement_token1] = ACTIONS(9447), + [aux_sym_with_statement_token1] = ACTIONS(9447), + [aux_sym_exit_statement_token1] = ACTIONS(9447), + [sym_end_statement] = ACTIONS(9449), + [aux_sym_on_goto_statement_token1] = ACTIONS(9447), + [aux_sym_on_goto_statement_token2] = ACTIONS(9447), + [aux_sym_on_error_statement_token2] = ACTIONS(9447), + [sym__ambiguous_redim_statement] = ACTIONS(9449), + [aux_sym_erase_statement_token1] = ACTIONS(9447), + [aux_sym_open_statement_token1] = ACTIONS(9447), + [aux_sym_file_mode_token2] = ACTIONS(9447), + [aux_sym_file_access_token2] = ACTIONS(9447), + [aux_sym_file_lock_token2] = ACTIONS(9447), + [aux_sym_print_statement_token1] = ACTIONS(9447), + [anon_sym_PLUS] = ACTIONS(9449), + [anon_sym_DASH] = ACTIONS(9447), + [anon_sym_QMARK] = ACTIONS(9449), + [aux_sym_close_statement_token1] = ACTIONS(9447), + [aux_sym_put_statement_token1] = ACTIONS(9447), + [aux_sym_unlock_statement_token1] = ACTIONS(9447), + [aux_sym_seek_statement_token1] = ACTIONS(9447), + [sym_reset_statement] = ACTIONS(9447), + [aux_sym_raise_event_statement_token1] = ACTIONS(9447), + [sym_stop_statement] = ACTIONS(9447), + [sym_beep_statement] = ACTIONS(9447), + [aux_sym_unload_statement_token1] = ACTIONS(9447), + [aux_sym_def_type_statement_token1] = ACTIONS(9447), + [aux_sym_def_type_statement_token2] = ACTIONS(9447), + [aux_sym_def_type_statement_token3] = ACTIONS(9447), + [aux_sym_def_type_statement_token4] = ACTIONS(9447), + [aux_sym_def_type_statement_token5] = ACTIONS(9447), + [aux_sym_def_type_statement_token6] = ACTIONS(9447), + [aux_sym_def_type_statement_token7] = ACTIONS(9447), + [aux_sym_def_type_statement_token8] = ACTIONS(9447), + [aux_sym_def_type_statement_token9] = ACTIONS(9447), + [aux_sym_def_type_statement_token10] = ACTIONS(9447), + [aux_sym_def_type_statement_token11] = ACTIONS(9447), + [aux_sym_def_type_statement_token12] = ACTIONS(9447), + [aux_sym_def_type_statement_token13] = ACTIONS(9447), + [aux_sym_def_type_statement_token14] = ACTIONS(9447), + [aux_sym_call_statement_token1] = ACTIONS(9447), + [sym__ambiguous_call_statement] = ACTIONS(9447), + [aux_sym_addressof_expression_token1] = ACTIONS(9447), + [aux_sym_type_of_expression_token1] = ACTIONS(9447), + [aux_sym_unary_expression_token1] = ACTIONS(9447), + [sym_string_literal] = ACTIONS(9449), + [sym_number_literal] = ACTIONS(9449), + [aux_sym_boolean_literal_token1] = ACTIONS(9447), + [aux_sym_boolean_literal_token2] = ACTIONS(9447), + [sym_nothing_literal] = ACTIONS(9447), + [sym_null_literal] = ACTIONS(9447), + [sym_empty_literal] = ACTIONS(9447), + [sym_date_literal] = ACTIONS(9449), + [anon_sym_POUND] = ACTIONS(9447), + }, + [STATE(6945)] = { + [sym_identifier] = ACTIONS(9740), + [sym_newline] = ACTIONS(9742), + [anon_sym_COLON] = ACTIONS(9742), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9740), + [aux_sym_frm_property_statement_token1] = ACTIONS(9740), + [anon_sym_DOT] = ACTIONS(9740), + [anon_sym_BANG] = ACTIONS(9742), + [aux_sym__attribute_identifier_token1] = ACTIONS(9740), + [aux_sym_option_statement_token3] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9740), + [aux_sym_preprocessor_const_token1] = ACTIONS(9740), + [sym_static_modifier] = ACTIONS(9740), + [sym__dim_keyword] = ACTIONS(9740), + [sym__redim_keyword] = ACTIONS(9740), + [aux_sym_get_accessor_token1] = ACTIONS(9740), + [aux_sym_set_accessor_token1] = ACTIONS(9740), + [aux_sym_const_declaration_token1] = ACTIONS(9740), + [anon_sym_LPAREN] = ACTIONS(9742), + [aux_sym_as_type_clause_token2] = ACTIONS(9740), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9740), + [aux_sym_visibility_token1] = ACTIONS(9740), + [aux_sym_visibility_token2] = ACTIONS(9740), + [aux_sym_elseif_fragment_token1] = ACTIONS(9740), + [aux_sym_else_fragment_token1] = ACTIONS(9740), + [aux_sym_select_statement_token1] = ACTIONS(9740), + [aux_sym_select_statement_token2] = ACTIONS(9740), + [aux_sym__for_header_token1] = ACTIONS(9740), + [aux_sym_do_statement_token1] = ACTIONS(9740), + [aux_sym_do_condition_token1] = ACTIONS(9740), + [aux_sym_with_statement_token1] = ACTIONS(9740), + [aux_sym_exit_statement_token1] = ACTIONS(9740), + [sym_end_statement] = ACTIONS(9742), + [aux_sym_on_goto_statement_token1] = ACTIONS(9740), + [aux_sym_on_goto_statement_token2] = ACTIONS(9740), + [aux_sym_on_error_statement_token2] = ACTIONS(9740), + [sym__ambiguous_redim_statement] = ACTIONS(9742), + [aux_sym_erase_statement_token1] = ACTIONS(9740), + [aux_sym_open_statement_token1] = ACTIONS(9740), + [aux_sym_file_mode_token2] = ACTIONS(9740), + [aux_sym_file_access_token2] = ACTIONS(9740), + [aux_sym_file_lock_token2] = ACTIONS(9740), + [aux_sym_print_statement_token1] = ACTIONS(9740), + [anon_sym_PLUS] = ACTIONS(9742), + [anon_sym_DASH] = ACTIONS(9740), + [anon_sym_QMARK] = ACTIONS(9742), + [aux_sym_close_statement_token1] = ACTIONS(9740), + [aux_sym_put_statement_token1] = ACTIONS(9740), + [aux_sym_unlock_statement_token1] = ACTIONS(9740), + [aux_sym_seek_statement_token1] = ACTIONS(9740), + [sym_reset_statement] = ACTIONS(9740), + [aux_sym_raise_event_statement_token1] = ACTIONS(9740), + [sym_stop_statement] = ACTIONS(9740), + [sym_beep_statement] = ACTIONS(9740), + [aux_sym_unload_statement_token1] = ACTIONS(9740), + [aux_sym_def_type_statement_token1] = ACTIONS(9740), + [aux_sym_def_type_statement_token2] = ACTIONS(9740), + [aux_sym_def_type_statement_token3] = ACTIONS(9740), + [aux_sym_def_type_statement_token4] = ACTIONS(9740), + [aux_sym_def_type_statement_token5] = ACTIONS(9740), + [aux_sym_def_type_statement_token6] = ACTIONS(9740), + [aux_sym_def_type_statement_token7] = ACTIONS(9740), + [aux_sym_def_type_statement_token8] = ACTIONS(9740), + [aux_sym_def_type_statement_token9] = ACTIONS(9740), + [aux_sym_def_type_statement_token10] = ACTIONS(9740), + [aux_sym_def_type_statement_token11] = ACTIONS(9740), + [aux_sym_def_type_statement_token12] = ACTIONS(9740), + [aux_sym_def_type_statement_token13] = ACTIONS(9740), + [aux_sym_def_type_statement_token14] = ACTIONS(9740), + [aux_sym_call_statement_token1] = ACTIONS(9740), + [sym__ambiguous_call_statement] = ACTIONS(9740), + [aux_sym_addressof_expression_token1] = ACTIONS(9740), + [aux_sym_type_of_expression_token1] = ACTIONS(9740), + [aux_sym_unary_expression_token1] = ACTIONS(9740), + [sym_string_literal] = ACTIONS(9742), + [sym_number_literal] = ACTIONS(9742), + [aux_sym_boolean_literal_token1] = ACTIONS(9740), + [aux_sym_boolean_literal_token2] = ACTIONS(9740), + [sym_nothing_literal] = ACTIONS(9740), + [sym_null_literal] = ACTIONS(9740), + [sym_empty_literal] = ACTIONS(9740), + [sym_date_literal] = ACTIONS(9742), + [anon_sym_POUND] = ACTIONS(9740), + }, + [STATE(6946)] = { + [sym_identifier] = ACTIONS(9451), + [sym_newline] = ACTIONS(9453), + [anon_sym_COLON] = ACTIONS(9453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9451), + [aux_sym_frm_property_statement_token1] = ACTIONS(9451), + [anon_sym_DOT] = ACTIONS(9451), + [anon_sym_BANG] = ACTIONS(9453), + [aux_sym__attribute_identifier_token1] = ACTIONS(9451), + [aux_sym_option_statement_token3] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9451), + [aux_sym_preprocessor_const_token1] = ACTIONS(9451), + [sym_static_modifier] = ACTIONS(9451), + [sym__dim_keyword] = ACTIONS(9451), + [sym__redim_keyword] = ACTIONS(9451), + [aux_sym_get_accessor_token1] = ACTIONS(9451), + [aux_sym_set_accessor_token1] = ACTIONS(9451), + [aux_sym_const_declaration_token1] = ACTIONS(9451), + [anon_sym_LPAREN] = ACTIONS(9453), + [aux_sym_as_type_clause_token2] = ACTIONS(9451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9451), + [aux_sym_visibility_token1] = ACTIONS(9451), + [aux_sym_visibility_token2] = ACTIONS(9451), + [aux_sym_elseif_fragment_token1] = ACTIONS(9451), + [aux_sym_else_fragment_token1] = ACTIONS(9451), + [aux_sym_select_statement_token1] = ACTIONS(9451), + [aux_sym__for_header_token1] = ACTIONS(9451), + [aux_sym_do_statement_token1] = ACTIONS(9451), + [aux_sym_do_condition_token1] = ACTIONS(9451), + [aux_sym_while_statement_token1] = ACTIONS(9451), + [aux_sym_with_statement_token1] = ACTIONS(9451), + [aux_sym_exit_statement_token1] = ACTIONS(9451), + [sym_end_statement] = ACTIONS(9453), + [aux_sym_on_goto_statement_token1] = ACTIONS(9451), + [aux_sym_on_goto_statement_token2] = ACTIONS(9451), + [aux_sym_on_error_statement_token2] = ACTIONS(9451), + [sym__ambiguous_redim_statement] = ACTIONS(9453), + [aux_sym_erase_statement_token1] = ACTIONS(9451), + [aux_sym_open_statement_token1] = ACTIONS(9451), + [aux_sym_file_mode_token2] = ACTIONS(9451), + [aux_sym_file_access_token2] = ACTIONS(9451), + [aux_sym_file_lock_token2] = ACTIONS(9451), + [aux_sym_print_statement_token1] = ACTIONS(9451), + [anon_sym_PLUS] = ACTIONS(9453), + [anon_sym_DASH] = ACTIONS(9451), + [anon_sym_QMARK] = ACTIONS(9453), + [aux_sym_close_statement_token1] = ACTIONS(9451), + [aux_sym_put_statement_token1] = ACTIONS(9451), + [aux_sym_unlock_statement_token1] = ACTIONS(9451), + [aux_sym_seek_statement_token1] = ACTIONS(9451), + [sym_reset_statement] = ACTIONS(9451), + [aux_sym_raise_event_statement_token1] = ACTIONS(9451), + [sym_stop_statement] = ACTIONS(9451), + [sym_beep_statement] = ACTIONS(9451), + [aux_sym_unload_statement_token1] = ACTIONS(9451), + [aux_sym_def_type_statement_token1] = ACTIONS(9451), + [aux_sym_def_type_statement_token2] = ACTIONS(9451), + [aux_sym_def_type_statement_token3] = ACTIONS(9451), + [aux_sym_def_type_statement_token4] = ACTIONS(9451), + [aux_sym_def_type_statement_token5] = ACTIONS(9451), + [aux_sym_def_type_statement_token6] = ACTIONS(9451), + [aux_sym_def_type_statement_token7] = ACTIONS(9451), + [aux_sym_def_type_statement_token8] = ACTIONS(9451), + [aux_sym_def_type_statement_token9] = ACTIONS(9451), + [aux_sym_def_type_statement_token10] = ACTIONS(9451), + [aux_sym_def_type_statement_token11] = ACTIONS(9451), + [aux_sym_def_type_statement_token12] = ACTIONS(9451), + [aux_sym_def_type_statement_token13] = ACTIONS(9451), + [aux_sym_def_type_statement_token14] = ACTIONS(9451), + [aux_sym_call_statement_token1] = ACTIONS(9451), + [sym__ambiguous_call_statement] = ACTIONS(9451), + [aux_sym_addressof_expression_token1] = ACTIONS(9451), + [aux_sym_type_of_expression_token1] = ACTIONS(9451), + [aux_sym_unary_expression_token1] = ACTIONS(9451), + [sym_string_literal] = ACTIONS(9453), + [sym_number_literal] = ACTIONS(9453), + [aux_sym_boolean_literal_token1] = ACTIONS(9451), + [aux_sym_boolean_literal_token2] = ACTIONS(9451), + [sym_nothing_literal] = ACTIONS(9451), + [sym_null_literal] = ACTIONS(9451), + [sym_empty_literal] = ACTIONS(9451), + [sym_date_literal] = ACTIONS(9453), + [anon_sym_POUND] = ACTIONS(9451), + }, + [STATE(6947)] = { + [sym_identifier] = ACTIONS(9744), + [sym_newline] = ACTIONS(9746), + [anon_sym_COLON] = ACTIONS(9746), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9744), + [aux_sym_frm_property_statement_token1] = ACTIONS(9744), + [anon_sym_DOT] = ACTIONS(9744), + [anon_sym_BANG] = ACTIONS(9746), + [aux_sym__attribute_identifier_token1] = ACTIONS(9744), + [aux_sym_option_statement_token3] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9744), + [aux_sym_preprocessor_const_token1] = ACTIONS(9744), + [sym_static_modifier] = ACTIONS(9744), + [sym__dim_keyword] = ACTIONS(9744), + [sym__redim_keyword] = ACTIONS(9744), + [aux_sym_get_accessor_token1] = ACTIONS(9744), + [aux_sym_set_accessor_token1] = ACTIONS(9744), + [aux_sym_const_declaration_token1] = ACTIONS(9744), + [anon_sym_LPAREN] = ACTIONS(9746), + [aux_sym_as_type_clause_token2] = ACTIONS(9744), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9744), + [aux_sym_visibility_token1] = ACTIONS(9744), + [aux_sym_visibility_token2] = ACTIONS(9744), + [aux_sym_elseif_fragment_token1] = ACTIONS(9744), + [aux_sym_else_fragment_token1] = ACTIONS(9744), + [aux_sym_select_statement_token1] = ACTIONS(9744), + [aux_sym_select_statement_token2] = ACTIONS(9744), + [aux_sym__for_header_token1] = ACTIONS(9744), + [aux_sym_do_statement_token1] = ACTIONS(9744), + [aux_sym_do_condition_token1] = ACTIONS(9744), + [aux_sym_with_statement_token1] = ACTIONS(9744), + [aux_sym_exit_statement_token1] = ACTIONS(9744), + [sym_end_statement] = ACTIONS(9746), + [aux_sym_on_goto_statement_token1] = ACTIONS(9744), + [aux_sym_on_goto_statement_token2] = ACTIONS(9744), + [aux_sym_on_error_statement_token2] = ACTIONS(9744), + [sym__ambiguous_redim_statement] = ACTIONS(9746), + [aux_sym_erase_statement_token1] = ACTIONS(9744), + [aux_sym_open_statement_token1] = ACTIONS(9744), + [aux_sym_file_mode_token2] = ACTIONS(9744), + [aux_sym_file_access_token2] = ACTIONS(9744), + [aux_sym_file_lock_token2] = ACTIONS(9744), + [aux_sym_print_statement_token1] = ACTIONS(9744), + [anon_sym_PLUS] = ACTIONS(9746), + [anon_sym_DASH] = ACTIONS(9744), + [anon_sym_QMARK] = ACTIONS(9746), + [aux_sym_close_statement_token1] = ACTIONS(9744), + [aux_sym_put_statement_token1] = ACTIONS(9744), + [aux_sym_unlock_statement_token1] = ACTIONS(9744), + [aux_sym_seek_statement_token1] = ACTIONS(9744), + [sym_reset_statement] = ACTIONS(9744), + [aux_sym_raise_event_statement_token1] = ACTIONS(9744), + [sym_stop_statement] = ACTIONS(9744), + [sym_beep_statement] = ACTIONS(9744), + [aux_sym_unload_statement_token1] = ACTIONS(9744), + [aux_sym_def_type_statement_token1] = ACTIONS(9744), + [aux_sym_def_type_statement_token2] = ACTIONS(9744), + [aux_sym_def_type_statement_token3] = ACTIONS(9744), + [aux_sym_def_type_statement_token4] = ACTIONS(9744), + [aux_sym_def_type_statement_token5] = ACTIONS(9744), + [aux_sym_def_type_statement_token6] = ACTIONS(9744), + [aux_sym_def_type_statement_token7] = ACTIONS(9744), + [aux_sym_def_type_statement_token8] = ACTIONS(9744), + [aux_sym_def_type_statement_token9] = ACTIONS(9744), + [aux_sym_def_type_statement_token10] = ACTIONS(9744), + [aux_sym_def_type_statement_token11] = ACTIONS(9744), + [aux_sym_def_type_statement_token12] = ACTIONS(9744), + [aux_sym_def_type_statement_token13] = ACTIONS(9744), + [aux_sym_def_type_statement_token14] = ACTIONS(9744), + [aux_sym_call_statement_token1] = ACTIONS(9744), + [sym__ambiguous_call_statement] = ACTIONS(9744), + [aux_sym_addressof_expression_token1] = ACTIONS(9744), + [aux_sym_type_of_expression_token1] = ACTIONS(9744), + [aux_sym_unary_expression_token1] = ACTIONS(9744), + [sym_string_literal] = ACTIONS(9746), + [sym_number_literal] = ACTIONS(9746), + [aux_sym_boolean_literal_token1] = ACTIONS(9744), + [aux_sym_boolean_literal_token2] = ACTIONS(9744), + [sym_nothing_literal] = ACTIONS(9744), + [sym_null_literal] = ACTIONS(9744), + [sym_empty_literal] = ACTIONS(9744), + [sym_date_literal] = ACTIONS(9746), + [anon_sym_POUND] = ACTIONS(9744), + }, + [STATE(6948)] = { + [sym_identifier] = ACTIONS(9748), + [sym_newline] = ACTIONS(9750), + [anon_sym_COLON] = ACTIONS(9750), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9748), + [aux_sym_frm_property_statement_token1] = ACTIONS(9748), + [anon_sym_DOT] = ACTIONS(9748), + [anon_sym_BANG] = ACTIONS(9750), + [aux_sym__attribute_identifier_token1] = ACTIONS(9748), + [aux_sym_option_statement_token3] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9748), + [aux_sym_preprocessor_const_token1] = ACTIONS(9748), + [sym_static_modifier] = ACTIONS(9748), + [sym__dim_keyword] = ACTIONS(9748), + [sym__redim_keyword] = ACTIONS(9748), + [aux_sym_get_accessor_token1] = ACTIONS(9748), + [aux_sym_set_accessor_token1] = ACTIONS(9748), + [aux_sym_const_declaration_token1] = ACTIONS(9748), + [anon_sym_LPAREN] = ACTIONS(9750), + [aux_sym_as_type_clause_token2] = ACTIONS(9748), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9748), + [aux_sym_visibility_token1] = ACTIONS(9748), + [aux_sym_visibility_token2] = ACTIONS(9748), + [aux_sym_elseif_fragment_token1] = ACTIONS(9748), + [aux_sym_else_fragment_token1] = ACTIONS(9748), + [aux_sym_select_statement_token1] = ACTIONS(9748), + [aux_sym_select_statement_token2] = ACTIONS(9748), + [aux_sym__for_header_token1] = ACTIONS(9748), + [aux_sym_do_statement_token1] = ACTIONS(9748), + [aux_sym_do_condition_token1] = ACTIONS(9748), + [aux_sym_with_statement_token1] = ACTIONS(9748), + [aux_sym_exit_statement_token1] = ACTIONS(9748), + [sym_end_statement] = ACTIONS(9750), + [aux_sym_on_goto_statement_token1] = ACTIONS(9748), + [aux_sym_on_goto_statement_token2] = ACTIONS(9748), + [aux_sym_on_error_statement_token2] = ACTIONS(9748), + [sym__ambiguous_redim_statement] = ACTIONS(9750), + [aux_sym_erase_statement_token1] = ACTIONS(9748), + [aux_sym_open_statement_token1] = ACTIONS(9748), + [aux_sym_file_mode_token2] = ACTIONS(9748), + [aux_sym_file_access_token2] = ACTIONS(9748), + [aux_sym_file_lock_token2] = ACTIONS(9748), + [aux_sym_print_statement_token1] = ACTIONS(9748), + [anon_sym_PLUS] = ACTIONS(9750), + [anon_sym_DASH] = ACTIONS(9748), + [anon_sym_QMARK] = ACTIONS(9750), + [aux_sym_close_statement_token1] = ACTIONS(9748), + [aux_sym_put_statement_token1] = ACTIONS(9748), + [aux_sym_unlock_statement_token1] = ACTIONS(9748), + [aux_sym_seek_statement_token1] = ACTIONS(9748), + [sym_reset_statement] = ACTIONS(9748), + [aux_sym_raise_event_statement_token1] = ACTIONS(9748), + [sym_stop_statement] = ACTIONS(9748), + [sym_beep_statement] = ACTIONS(9748), + [aux_sym_unload_statement_token1] = ACTIONS(9748), + [aux_sym_def_type_statement_token1] = ACTIONS(9748), + [aux_sym_def_type_statement_token2] = ACTIONS(9748), + [aux_sym_def_type_statement_token3] = ACTIONS(9748), + [aux_sym_def_type_statement_token4] = ACTIONS(9748), + [aux_sym_def_type_statement_token5] = ACTIONS(9748), + [aux_sym_def_type_statement_token6] = ACTIONS(9748), + [aux_sym_def_type_statement_token7] = ACTIONS(9748), + [aux_sym_def_type_statement_token8] = ACTIONS(9748), + [aux_sym_def_type_statement_token9] = ACTIONS(9748), + [aux_sym_def_type_statement_token10] = ACTIONS(9748), + [aux_sym_def_type_statement_token11] = ACTIONS(9748), + [aux_sym_def_type_statement_token12] = ACTIONS(9748), + [aux_sym_def_type_statement_token13] = ACTIONS(9748), + [aux_sym_def_type_statement_token14] = ACTIONS(9748), + [aux_sym_call_statement_token1] = ACTIONS(9748), + [sym__ambiguous_call_statement] = ACTIONS(9748), + [aux_sym_addressof_expression_token1] = ACTIONS(9748), + [aux_sym_type_of_expression_token1] = ACTIONS(9748), + [aux_sym_unary_expression_token1] = ACTIONS(9748), + [sym_string_literal] = ACTIONS(9750), + [sym_number_literal] = ACTIONS(9750), + [aux_sym_boolean_literal_token1] = ACTIONS(9748), + [aux_sym_boolean_literal_token2] = ACTIONS(9748), + [sym_nothing_literal] = ACTIONS(9748), + [sym_null_literal] = ACTIONS(9748), + [sym_empty_literal] = ACTIONS(9748), + [sym_date_literal] = ACTIONS(9750), + [anon_sym_POUND] = ACTIONS(9748), + }, + [STATE(6949)] = { + [sym_identifier] = ACTIONS(8949), + [sym_newline] = ACTIONS(11132), + [anon_sym_COLON] = ACTIONS(8884), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8949), + [aux_sym_frm_property_statement_token1] = ACTIONS(8949), + [anon_sym_DOT] = ACTIONS(8949), + [anon_sym_BANG] = ACTIONS(11132), + [aux_sym__attribute_identifier_token1] = ACTIONS(8949), + [aux_sym_option_statement_token3] = ACTIONS(8949), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8949), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8949), + [aux_sym_preprocessor_const_token1] = ACTIONS(8949), + [sym_static_modifier] = ACTIONS(8949), + [sym__dim_keyword] = ACTIONS(8949), + [sym__redim_keyword] = ACTIONS(8949), + [aux_sym_get_accessor_token1] = ACTIONS(8949), + [aux_sym_set_accessor_token1] = ACTIONS(8949), + [aux_sym_const_declaration_token1] = ACTIONS(8949), + [anon_sym_LPAREN] = ACTIONS(11132), + [aux_sym_as_type_clause_token2] = ACTIONS(8949), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8949), + [aux_sym_visibility_token1] = ACTIONS(8949), + [aux_sym_visibility_token2] = ACTIONS(8949), + [aux_sym_elseif_fragment_token1] = ACTIONS(8949), + [aux_sym_else_fragment_token1] = ACTIONS(8949), + [aux_sym_select_statement_token1] = ACTIONS(8949), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8949), + [aux_sym__for_header_token1] = ACTIONS(8949), + [aux_sym_do_statement_token1] = ACTIONS(8949), + [aux_sym_do_condition_token1] = ACTIONS(8949), + [aux_sym_with_statement_token1] = ACTIONS(8949), + [aux_sym_exit_statement_token1] = ACTIONS(8949), + [sym_end_statement] = ACTIONS(11132), + [aux_sym_on_goto_statement_token1] = ACTIONS(8949), + [aux_sym_on_goto_statement_token2] = ACTIONS(8949), + [aux_sym_on_error_statement_token2] = ACTIONS(8949), + [sym__ambiguous_redim_statement] = ACTIONS(11132), + [aux_sym_erase_statement_token1] = ACTIONS(8949), + [aux_sym_open_statement_token1] = ACTIONS(8949), + [aux_sym_file_mode_token2] = ACTIONS(8949), + [aux_sym_file_access_token2] = ACTIONS(8949), + [aux_sym_file_lock_token2] = ACTIONS(8949), + [aux_sym_print_statement_token1] = ACTIONS(8949), + [anon_sym_PLUS] = ACTIONS(11132), + [anon_sym_DASH] = ACTIONS(8949), + [anon_sym_QMARK] = ACTIONS(11132), + [aux_sym_close_statement_token1] = ACTIONS(8949), + [aux_sym_put_statement_token1] = ACTIONS(8949), + [aux_sym_unlock_statement_token1] = ACTIONS(8949), + [aux_sym_seek_statement_token1] = ACTIONS(8949), + [sym_reset_statement] = ACTIONS(8949), + [aux_sym_raise_event_statement_token1] = ACTIONS(8949), + [sym_stop_statement] = ACTIONS(8949), + [sym_beep_statement] = ACTIONS(8949), + [aux_sym_unload_statement_token1] = ACTIONS(8949), + [aux_sym_def_type_statement_token1] = ACTIONS(8949), + [aux_sym_def_type_statement_token2] = ACTIONS(8949), + [aux_sym_def_type_statement_token3] = ACTIONS(8949), + [aux_sym_def_type_statement_token4] = ACTIONS(8949), + [aux_sym_def_type_statement_token5] = ACTIONS(8949), + [aux_sym_def_type_statement_token6] = ACTIONS(8949), + [aux_sym_def_type_statement_token7] = ACTIONS(8949), + [aux_sym_def_type_statement_token8] = ACTIONS(8949), + [aux_sym_def_type_statement_token9] = ACTIONS(8949), + [aux_sym_def_type_statement_token10] = ACTIONS(8949), + [aux_sym_def_type_statement_token11] = ACTIONS(8949), + [aux_sym_def_type_statement_token12] = ACTIONS(8949), + [aux_sym_def_type_statement_token13] = ACTIONS(8949), + [aux_sym_def_type_statement_token14] = ACTIONS(8949), + [aux_sym_call_statement_token1] = ACTIONS(8949), + [sym__ambiguous_call_statement] = ACTIONS(8949), + [aux_sym_addressof_expression_token1] = ACTIONS(8949), + [aux_sym_type_of_expression_token1] = ACTIONS(8949), + [aux_sym_unary_expression_token1] = ACTIONS(8949), + [sym_string_literal] = ACTIONS(11132), + [sym_number_literal] = ACTIONS(8884), + [aux_sym_boolean_literal_token1] = ACTIONS(8949), + [aux_sym_boolean_literal_token2] = ACTIONS(8949), + [sym_nothing_literal] = ACTIONS(8949), + [sym_null_literal] = ACTIONS(8949), + [sym_empty_literal] = ACTIONS(8949), + [sym_date_literal] = ACTIONS(11132), + [anon_sym_POUND] = ACTIONS(8949), + }, + [STATE(6950)] = { + [sym_identifier] = ACTIONS(8986), + [sym_newline] = ACTIONS(9032), + [anon_sym_COLON] = ACTIONS(8918), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8986), + [aux_sym_frm_property_statement_token1] = ACTIONS(8986), + [anon_sym_DOT] = ACTIONS(8986), + [anon_sym_BANG] = ACTIONS(9032), + [aux_sym__attribute_identifier_token1] = ACTIONS(8986), + [aux_sym_option_statement_token3] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8986), + [aux_sym_preprocessor_const_token1] = ACTIONS(8986), + [sym_static_modifier] = ACTIONS(8986), + [sym__dim_keyword] = ACTIONS(8986), + [sym__redim_keyword] = ACTIONS(8986), + [aux_sym_get_accessor_token1] = ACTIONS(8986), + [aux_sym_set_accessor_token1] = ACTIONS(8986), + [aux_sym_const_declaration_token1] = ACTIONS(8986), + [anon_sym_LPAREN] = ACTIONS(9032), + [aux_sym_as_type_clause_token2] = ACTIONS(8986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8986), + [aux_sym_visibility_token1] = ACTIONS(8986), + [aux_sym_visibility_token2] = ACTIONS(8986), + [aux_sym_elseif_fragment_token1] = ACTIONS(8986), + [aux_sym_else_fragment_token1] = ACTIONS(8986), + [aux_sym_select_statement_token1] = ACTIONS(8986), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8986), + [aux_sym_do_statement_token1] = ACTIONS(8986), + [aux_sym_do_condition_token1] = ACTIONS(8986), + [aux_sym_with_statement_token1] = ACTIONS(8986), + [aux_sym_exit_statement_token1] = ACTIONS(8986), + [sym_end_statement] = ACTIONS(9032), + [aux_sym_on_goto_statement_token1] = ACTIONS(8986), + [aux_sym_on_goto_statement_token2] = ACTIONS(8986), + [aux_sym_on_error_statement_token2] = ACTIONS(8986), + [sym__ambiguous_redim_statement] = ACTIONS(9032), + [aux_sym_erase_statement_token1] = ACTIONS(8986), + [aux_sym_open_statement_token1] = ACTIONS(8986), + [aux_sym_file_mode_token2] = ACTIONS(8986), + [aux_sym_file_access_token2] = ACTIONS(8986), + [aux_sym_file_lock_token2] = ACTIONS(8986), + [aux_sym_print_statement_token1] = ACTIONS(8986), + [anon_sym_PLUS] = ACTIONS(9032), + [anon_sym_DASH] = ACTIONS(8986), + [anon_sym_QMARK] = ACTIONS(9032), + [aux_sym_close_statement_token1] = ACTIONS(8986), + [aux_sym_put_statement_token1] = ACTIONS(8986), + [aux_sym_unlock_statement_token1] = ACTIONS(8986), + [aux_sym_seek_statement_token1] = ACTIONS(8986), + [sym_reset_statement] = ACTIONS(8986), + [aux_sym_raise_event_statement_token1] = ACTIONS(8986), + [sym_stop_statement] = ACTIONS(8986), + [sym_beep_statement] = ACTIONS(8986), + [aux_sym_unload_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token2] = ACTIONS(8986), + [aux_sym_def_type_statement_token3] = ACTIONS(8986), + [aux_sym_def_type_statement_token4] = ACTIONS(8986), + [aux_sym_def_type_statement_token5] = ACTIONS(8986), + [aux_sym_def_type_statement_token6] = ACTIONS(8986), + [aux_sym_def_type_statement_token7] = ACTIONS(8986), + [aux_sym_def_type_statement_token8] = ACTIONS(8986), + [aux_sym_def_type_statement_token9] = ACTIONS(8986), + [aux_sym_def_type_statement_token10] = ACTIONS(8986), + [aux_sym_def_type_statement_token11] = ACTIONS(8986), + [aux_sym_def_type_statement_token12] = ACTIONS(8986), + [aux_sym_def_type_statement_token13] = ACTIONS(8986), + [aux_sym_def_type_statement_token14] = ACTIONS(8986), + [aux_sym_call_statement_token1] = ACTIONS(8986), + [sym__ambiguous_call_statement] = ACTIONS(8986), + [aux_sym_addressof_expression_token1] = ACTIONS(8986), + [aux_sym_type_of_expression_token1] = ACTIONS(8986), + [aux_sym_unary_expression_token1] = ACTIONS(8986), + [sym_string_literal] = ACTIONS(9032), + [sym_number_literal] = ACTIONS(8918), + [aux_sym_boolean_literal_token1] = ACTIONS(8986), + [aux_sym_boolean_literal_token2] = ACTIONS(8986), + [sym_nothing_literal] = ACTIONS(8986), + [sym_null_literal] = ACTIONS(8986), + [sym_empty_literal] = ACTIONS(8986), + [sym_date_literal] = ACTIONS(9032), + [anon_sym_POUND] = ACTIONS(8986), + }, + [STATE(6951)] = { + [sym_identifier] = ACTIONS(8839), + [sym_newline] = ACTIONS(8841), + [anon_sym_COLON] = ACTIONS(8841), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8839), + [aux_sym_frm_property_statement_token1] = ACTIONS(8839), + [anon_sym_DOT] = ACTIONS(8839), + [anon_sym_BANG] = ACTIONS(8841), + [aux_sym__attribute_identifier_token1] = ACTIONS(8839), + [aux_sym_option_statement_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8839), + [aux_sym_preprocessor_const_token1] = ACTIONS(8839), + [sym_static_modifier] = ACTIONS(8839), + [sym__dim_keyword] = ACTIONS(8839), + [sym__redim_keyword] = ACTIONS(8839), + [aux_sym_get_accessor_token1] = ACTIONS(8839), + [aux_sym_set_accessor_token1] = ACTIONS(8839), + [aux_sym_const_declaration_token1] = ACTIONS(8839), + [anon_sym_LPAREN] = ACTIONS(8841), + [aux_sym_as_type_clause_token2] = ACTIONS(8839), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8839), + [aux_sym_visibility_token1] = ACTIONS(8839), + [aux_sym_visibility_token2] = ACTIONS(8839), + [aux_sym_elseif_fragment_token1] = ACTIONS(8839), + [aux_sym_else_fragment_token1] = ACTIONS(8839), + [aux_sym_select_statement_token1] = ACTIONS(8839), + [aux_sym__for_header_token1] = ACTIONS(8839), + [aux_sym_do_statement_token1] = ACTIONS(8839), + [aux_sym_do_condition_token1] = ACTIONS(8839), + [aux_sym_while_statement_token1] = ACTIONS(8839), + [aux_sym_with_statement_token1] = ACTIONS(8839), + [aux_sym_exit_statement_token1] = ACTIONS(8839), + [sym_end_statement] = ACTIONS(8841), + [aux_sym_on_goto_statement_token1] = ACTIONS(8839), + [aux_sym_on_goto_statement_token2] = ACTIONS(8839), + [aux_sym_on_error_statement_token2] = ACTIONS(8839), + [sym__ambiguous_redim_statement] = ACTIONS(8841), + [aux_sym_erase_statement_token1] = ACTIONS(8839), + [aux_sym_open_statement_token1] = ACTIONS(8839), + [aux_sym_file_mode_token2] = ACTIONS(8839), + [aux_sym_file_access_token2] = ACTIONS(8839), + [aux_sym_file_lock_token2] = ACTIONS(8839), + [aux_sym_print_statement_token1] = ACTIONS(8839), + [anon_sym_PLUS] = ACTIONS(8841), + [anon_sym_DASH] = ACTIONS(8839), + [anon_sym_QMARK] = ACTIONS(8841), + [aux_sym_close_statement_token1] = ACTIONS(8839), + [aux_sym_put_statement_token1] = ACTIONS(8839), + [aux_sym_unlock_statement_token1] = ACTIONS(8839), + [aux_sym_seek_statement_token1] = ACTIONS(8839), + [sym_reset_statement] = ACTIONS(8839), + [aux_sym_raise_event_statement_token1] = ACTIONS(8839), + [sym_stop_statement] = ACTIONS(8839), + [sym_beep_statement] = ACTIONS(8839), + [aux_sym_unload_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token2] = ACTIONS(8839), + [aux_sym_def_type_statement_token3] = ACTIONS(8839), + [aux_sym_def_type_statement_token4] = ACTIONS(8839), + [aux_sym_def_type_statement_token5] = ACTIONS(8839), + [aux_sym_def_type_statement_token6] = ACTIONS(8839), + [aux_sym_def_type_statement_token7] = ACTIONS(8839), + [aux_sym_def_type_statement_token8] = ACTIONS(8839), + [aux_sym_def_type_statement_token9] = ACTIONS(8839), + [aux_sym_def_type_statement_token10] = ACTIONS(8839), + [aux_sym_def_type_statement_token11] = ACTIONS(8839), + [aux_sym_def_type_statement_token12] = ACTIONS(8839), + [aux_sym_def_type_statement_token13] = ACTIONS(8839), + [aux_sym_def_type_statement_token14] = ACTIONS(8839), + [aux_sym_call_statement_token1] = ACTIONS(8839), + [sym__ambiguous_call_statement] = ACTIONS(8839), + [aux_sym_addressof_expression_token1] = ACTIONS(8839), + [aux_sym_type_of_expression_token1] = ACTIONS(8839), + [aux_sym_unary_expression_token1] = ACTIONS(8839), + [sym_string_literal] = ACTIONS(8841), + [sym_number_literal] = ACTIONS(8841), + [aux_sym_boolean_literal_token1] = ACTIONS(8839), + [aux_sym_boolean_literal_token2] = ACTIONS(8839), + [sym_nothing_literal] = ACTIONS(8839), + [sym_null_literal] = ACTIONS(8839), + [sym_empty_literal] = ACTIONS(8839), + [sym_date_literal] = ACTIONS(8841), + [anon_sym_POUND] = ACTIONS(8839), + }, + [STATE(6952)] = { + [sym_identifier] = ACTIONS(8764), + [sym_newline] = ACTIONS(9034), + [anon_sym_COLON] = ACTIONS(8759), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8764), + [aux_sym_frm_property_statement_token1] = ACTIONS(8764), + [anon_sym_DOT] = ACTIONS(8764), + [anon_sym_BANG] = ACTIONS(9034), + [aux_sym__attribute_identifier_token1] = ACTIONS(8764), + [aux_sym_option_statement_token3] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8764), + [aux_sym_preprocessor_const_token1] = ACTIONS(8764), + [sym_static_modifier] = ACTIONS(8764), + [sym__dim_keyword] = ACTIONS(8764), + [sym__redim_keyword] = ACTIONS(8764), + [aux_sym_get_accessor_token1] = ACTIONS(8764), + [aux_sym_set_accessor_token1] = ACTIONS(8764), + [aux_sym_const_declaration_token1] = ACTIONS(8764), + [anon_sym_LPAREN] = ACTIONS(9034), + [aux_sym_as_type_clause_token2] = ACTIONS(8764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8764), + [aux_sym_visibility_token1] = ACTIONS(8764), + [aux_sym_visibility_token2] = ACTIONS(8764), + [aux_sym_elseif_fragment_token1] = ACTIONS(8764), + [aux_sym_else_fragment_token1] = ACTIONS(8764), + [aux_sym_select_statement_token1] = ACTIONS(8764), + [aux_sym__multiline_for_tail_token1] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8764), + [aux_sym_do_statement_token1] = ACTIONS(8764), + [aux_sym_do_condition_token1] = ACTIONS(8764), + [aux_sym_with_statement_token1] = ACTIONS(8764), + [aux_sym_exit_statement_token1] = ACTIONS(8764), + [sym_end_statement] = ACTIONS(9034), + [aux_sym_on_goto_statement_token1] = ACTIONS(8764), + [aux_sym_on_goto_statement_token2] = ACTIONS(8764), + [aux_sym_on_error_statement_token2] = ACTIONS(8764), + [sym__ambiguous_redim_statement] = ACTIONS(9034), + [aux_sym_erase_statement_token1] = ACTIONS(8764), + [aux_sym_open_statement_token1] = ACTIONS(8764), + [aux_sym_file_mode_token2] = ACTIONS(8764), + [aux_sym_file_access_token2] = ACTIONS(8764), + [aux_sym_file_lock_token2] = ACTIONS(8764), + [aux_sym_print_statement_token1] = ACTIONS(8764), + [anon_sym_PLUS] = ACTIONS(9034), + [anon_sym_DASH] = ACTIONS(8764), + [anon_sym_QMARK] = ACTIONS(9034), + [aux_sym_close_statement_token1] = ACTIONS(8764), + [aux_sym_put_statement_token1] = ACTIONS(8764), + [aux_sym_unlock_statement_token1] = ACTIONS(8764), + [aux_sym_seek_statement_token1] = ACTIONS(8764), + [sym_reset_statement] = ACTIONS(8764), + [aux_sym_raise_event_statement_token1] = ACTIONS(8764), + [sym_stop_statement] = ACTIONS(8764), + [sym_beep_statement] = ACTIONS(8764), + [aux_sym_unload_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token2] = ACTIONS(8764), + [aux_sym_def_type_statement_token3] = ACTIONS(8764), + [aux_sym_def_type_statement_token4] = ACTIONS(8764), + [aux_sym_def_type_statement_token5] = ACTIONS(8764), + [aux_sym_def_type_statement_token6] = ACTIONS(8764), + [aux_sym_def_type_statement_token7] = ACTIONS(8764), + [aux_sym_def_type_statement_token8] = ACTIONS(8764), + [aux_sym_def_type_statement_token9] = ACTIONS(8764), + [aux_sym_def_type_statement_token10] = ACTIONS(8764), + [aux_sym_def_type_statement_token11] = ACTIONS(8764), + [aux_sym_def_type_statement_token12] = ACTIONS(8764), + [aux_sym_def_type_statement_token13] = ACTIONS(8764), + [aux_sym_def_type_statement_token14] = ACTIONS(8764), + [aux_sym_call_statement_token1] = ACTIONS(8764), + [sym__ambiguous_call_statement] = ACTIONS(8764), + [aux_sym_addressof_expression_token1] = ACTIONS(8764), + [aux_sym_type_of_expression_token1] = ACTIONS(8764), + [aux_sym_unary_expression_token1] = ACTIONS(8764), + [sym_string_literal] = ACTIONS(9034), + [sym_number_literal] = ACTIONS(8759), + [aux_sym_boolean_literal_token1] = ACTIONS(8764), + [aux_sym_boolean_literal_token2] = ACTIONS(8764), + [sym_nothing_literal] = ACTIONS(8764), + [sym_null_literal] = ACTIONS(8764), + [sym_empty_literal] = ACTIONS(8764), + [sym_date_literal] = ACTIONS(9034), + [anon_sym_POUND] = ACTIONS(8764), + }, + [STATE(6953)] = { + [sym_identifier] = ACTIONS(9784), + [sym_newline] = ACTIONS(9786), + [anon_sym_COLON] = ACTIONS(9786), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9784), + [aux_sym_frm_property_statement_token1] = ACTIONS(9784), + [anon_sym_DOT] = ACTIONS(9784), + [anon_sym_BANG] = ACTIONS(9786), + [aux_sym__attribute_identifier_token1] = ACTIONS(9784), + [aux_sym_option_statement_token3] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9784), + [aux_sym_preprocessor_const_token1] = ACTIONS(9784), + [sym_static_modifier] = ACTIONS(9784), + [sym__dim_keyword] = ACTIONS(9784), + [sym__redim_keyword] = ACTIONS(9784), + [aux_sym_get_accessor_token1] = ACTIONS(9784), + [aux_sym_set_accessor_token1] = ACTIONS(9784), + [aux_sym_const_declaration_token1] = ACTIONS(9784), + [anon_sym_LPAREN] = ACTIONS(9786), + [aux_sym_as_type_clause_token2] = ACTIONS(9784), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9784), + [aux_sym_visibility_token1] = ACTIONS(9784), + [aux_sym_visibility_token2] = ACTIONS(9784), + [aux_sym_elseif_fragment_token1] = ACTIONS(9784), + [aux_sym_else_fragment_token1] = ACTIONS(9784), + [aux_sym_select_statement_token1] = ACTIONS(9784), + [aux_sym_select_statement_token2] = ACTIONS(9784), + [aux_sym__for_header_token1] = ACTIONS(9784), + [aux_sym_do_statement_token1] = ACTIONS(9784), + [aux_sym_do_condition_token1] = ACTIONS(9784), + [aux_sym_with_statement_token1] = ACTIONS(9784), + [aux_sym_exit_statement_token1] = ACTIONS(9784), + [sym_end_statement] = ACTIONS(9786), + [aux_sym_on_goto_statement_token1] = ACTIONS(9784), + [aux_sym_on_goto_statement_token2] = ACTIONS(9784), + [aux_sym_on_error_statement_token2] = ACTIONS(9784), + [sym__ambiguous_redim_statement] = ACTIONS(9786), + [aux_sym_erase_statement_token1] = ACTIONS(9784), + [aux_sym_open_statement_token1] = ACTIONS(9784), + [aux_sym_file_mode_token2] = ACTIONS(9784), + [aux_sym_file_access_token2] = ACTIONS(9784), + [aux_sym_file_lock_token2] = ACTIONS(9784), + [aux_sym_print_statement_token1] = ACTIONS(9784), + [anon_sym_PLUS] = ACTIONS(9786), + [anon_sym_DASH] = ACTIONS(9784), + [anon_sym_QMARK] = ACTIONS(9786), + [aux_sym_close_statement_token1] = ACTIONS(9784), + [aux_sym_put_statement_token1] = ACTIONS(9784), + [aux_sym_unlock_statement_token1] = ACTIONS(9784), + [aux_sym_seek_statement_token1] = ACTIONS(9784), + [sym_reset_statement] = ACTIONS(9784), + [aux_sym_raise_event_statement_token1] = ACTIONS(9784), + [sym_stop_statement] = ACTIONS(9784), + [sym_beep_statement] = ACTIONS(9784), + [aux_sym_unload_statement_token1] = ACTIONS(9784), + [aux_sym_def_type_statement_token1] = ACTIONS(9784), + [aux_sym_def_type_statement_token2] = ACTIONS(9784), + [aux_sym_def_type_statement_token3] = ACTIONS(9784), + [aux_sym_def_type_statement_token4] = ACTIONS(9784), + [aux_sym_def_type_statement_token5] = ACTIONS(9784), + [aux_sym_def_type_statement_token6] = ACTIONS(9784), + [aux_sym_def_type_statement_token7] = ACTIONS(9784), + [aux_sym_def_type_statement_token8] = ACTIONS(9784), + [aux_sym_def_type_statement_token9] = ACTIONS(9784), + [aux_sym_def_type_statement_token10] = ACTIONS(9784), + [aux_sym_def_type_statement_token11] = ACTIONS(9784), + [aux_sym_def_type_statement_token12] = ACTIONS(9784), + [aux_sym_def_type_statement_token13] = ACTIONS(9784), + [aux_sym_def_type_statement_token14] = ACTIONS(9784), + [aux_sym_call_statement_token1] = ACTIONS(9784), + [sym__ambiguous_call_statement] = ACTIONS(9784), + [aux_sym_addressof_expression_token1] = ACTIONS(9784), + [aux_sym_type_of_expression_token1] = ACTIONS(9784), + [aux_sym_unary_expression_token1] = ACTIONS(9784), + [sym_string_literal] = ACTIONS(9786), + [sym_number_literal] = ACTIONS(9786), + [aux_sym_boolean_literal_token1] = ACTIONS(9784), + [aux_sym_boolean_literal_token2] = ACTIONS(9784), + [sym_nothing_literal] = ACTIONS(9784), + [sym_null_literal] = ACTIONS(9784), + [sym_empty_literal] = ACTIONS(9784), + [sym_date_literal] = ACTIONS(9786), + [anon_sym_POUND] = ACTIONS(9784), + }, + [STATE(6954)] = { + [sym_identifier] = ACTIONS(8853), + [sym_newline] = ACTIONS(8855), + [anon_sym_COLON] = ACTIONS(8855), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8853), + [aux_sym_frm_property_statement_token1] = ACTIONS(8853), + [anon_sym_DOT] = ACTIONS(8853), + [anon_sym_BANG] = ACTIONS(8855), + [aux_sym__attribute_identifier_token1] = ACTIONS(8853), + [aux_sym_option_statement_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8853), + [aux_sym_preprocessor_const_token1] = ACTIONS(8853), + [sym_static_modifier] = ACTIONS(8853), + [sym__dim_keyword] = ACTIONS(8853), + [sym__redim_keyword] = ACTIONS(8853), + [aux_sym_get_accessor_token1] = ACTIONS(8853), + [aux_sym_set_accessor_token1] = ACTIONS(8853), + [aux_sym_const_declaration_token1] = ACTIONS(8853), + [anon_sym_LPAREN] = ACTIONS(8855), + [aux_sym_as_type_clause_token2] = ACTIONS(8853), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8853), + [aux_sym_visibility_token1] = ACTIONS(8853), + [aux_sym_visibility_token2] = ACTIONS(8853), + [aux_sym_elseif_fragment_token1] = ACTIONS(8853), + [aux_sym_else_fragment_token1] = ACTIONS(8853), + [aux_sym_select_statement_token1] = ACTIONS(8853), + [aux_sym__for_header_token1] = ACTIONS(8853), + [aux_sym_do_statement_token1] = ACTIONS(8853), + [aux_sym_do_condition_token1] = ACTIONS(8853), + [aux_sym_while_statement_token1] = ACTIONS(8853), + [aux_sym_with_statement_token1] = ACTIONS(8853), + [aux_sym_exit_statement_token1] = ACTIONS(8853), + [sym_end_statement] = ACTIONS(8855), + [aux_sym_on_goto_statement_token1] = ACTIONS(8853), + [aux_sym_on_goto_statement_token2] = ACTIONS(8853), + [aux_sym_on_error_statement_token2] = ACTIONS(8853), + [sym__ambiguous_redim_statement] = ACTIONS(8855), + [aux_sym_erase_statement_token1] = ACTIONS(8853), + [aux_sym_open_statement_token1] = ACTIONS(8853), + [aux_sym_file_mode_token2] = ACTIONS(8853), + [aux_sym_file_access_token2] = ACTIONS(8853), + [aux_sym_file_lock_token2] = ACTIONS(8853), + [aux_sym_print_statement_token1] = ACTIONS(8853), + [anon_sym_PLUS] = ACTIONS(8855), + [anon_sym_DASH] = ACTIONS(8853), + [anon_sym_QMARK] = ACTIONS(8855), + [aux_sym_close_statement_token1] = ACTIONS(8853), + [aux_sym_put_statement_token1] = ACTIONS(8853), + [aux_sym_unlock_statement_token1] = ACTIONS(8853), + [aux_sym_seek_statement_token1] = ACTIONS(8853), + [sym_reset_statement] = ACTIONS(8853), + [aux_sym_raise_event_statement_token1] = ACTIONS(8853), + [sym_stop_statement] = ACTIONS(8853), + [sym_beep_statement] = ACTIONS(8853), + [aux_sym_unload_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token2] = ACTIONS(8853), + [aux_sym_def_type_statement_token3] = ACTIONS(8853), + [aux_sym_def_type_statement_token4] = ACTIONS(8853), + [aux_sym_def_type_statement_token5] = ACTIONS(8853), + [aux_sym_def_type_statement_token6] = ACTIONS(8853), + [aux_sym_def_type_statement_token7] = ACTIONS(8853), + [aux_sym_def_type_statement_token8] = ACTIONS(8853), + [aux_sym_def_type_statement_token9] = ACTIONS(8853), + [aux_sym_def_type_statement_token10] = ACTIONS(8853), + [aux_sym_def_type_statement_token11] = ACTIONS(8853), + [aux_sym_def_type_statement_token12] = ACTIONS(8853), + [aux_sym_def_type_statement_token13] = ACTIONS(8853), + [aux_sym_def_type_statement_token14] = ACTIONS(8853), + [aux_sym_call_statement_token1] = ACTIONS(8853), + [sym__ambiguous_call_statement] = ACTIONS(8853), + [aux_sym_addressof_expression_token1] = ACTIONS(8853), + [aux_sym_type_of_expression_token1] = ACTIONS(8853), + [aux_sym_unary_expression_token1] = ACTIONS(8853), + [sym_string_literal] = ACTIONS(8855), + [sym_number_literal] = ACTIONS(8855), + [aux_sym_boolean_literal_token1] = ACTIONS(8853), + [aux_sym_boolean_literal_token2] = ACTIONS(8853), + [sym_nothing_literal] = ACTIONS(8853), + [sym_null_literal] = ACTIONS(8853), + [sym_empty_literal] = ACTIONS(8853), + [sym_date_literal] = ACTIONS(8855), + [anon_sym_POUND] = ACTIONS(8853), + }, + [STATE(6955)] = { + [sym_identifier] = ACTIONS(8686), + [sym_newline] = ACTIONS(8688), + [anon_sym_COLON] = ACTIONS(8688), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8686), + [aux_sym_frm_property_statement_token1] = ACTIONS(8686), + [anon_sym_DOT] = ACTIONS(8686), + [anon_sym_BANG] = ACTIONS(8688), + [aux_sym__attribute_identifier_token1] = ACTIONS(8686), + [aux_sym_option_statement_token3] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8686), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8686), + [aux_sym_preprocessor_const_token1] = ACTIONS(8686), + [sym_static_modifier] = ACTIONS(8686), + [sym__dim_keyword] = ACTIONS(8686), + [sym__redim_keyword] = ACTIONS(8686), + [aux_sym_get_accessor_token1] = ACTIONS(8686), + [aux_sym_set_accessor_token1] = ACTIONS(8686), + [aux_sym_const_declaration_token1] = ACTIONS(8686), + [anon_sym_LPAREN] = ACTIONS(8688), + [aux_sym_as_type_clause_token2] = ACTIONS(8686), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8686), + [aux_sym_visibility_token1] = ACTIONS(8686), + [aux_sym_visibility_token2] = ACTIONS(8686), + [aux_sym_elseif_fragment_token1] = ACTIONS(8686), + [aux_sym_else_fragment_token1] = ACTIONS(8686), + [aux_sym_select_statement_token1] = ACTIONS(8686), + [aux_sym__for_header_token1] = ACTIONS(8686), + [aux_sym_do_statement_token1] = ACTIONS(8686), + [aux_sym_do_condition_token1] = ACTIONS(8686), + [aux_sym_with_statement_token1] = ACTIONS(8686), + [aux_sym_exit_statement_token1] = ACTIONS(8686), + [sym_end_statement] = ACTIONS(8688), + [aux_sym_on_goto_statement_token1] = ACTIONS(8686), + [aux_sym_on_goto_statement_token2] = ACTIONS(8686), + [aux_sym_on_error_statement_token2] = ACTIONS(8686), + [sym__ambiguous_redim_statement] = ACTIONS(8688), + [aux_sym_erase_statement_token1] = ACTIONS(8686), + [aux_sym_open_statement_token1] = ACTIONS(8686), + [aux_sym_open_statement_token3] = ACTIONS(11160), + [aux_sym_file_mode_token2] = ACTIONS(8686), + [aux_sym_file_access_token2] = ACTIONS(8686), + [aux_sym_file_lock_token2] = ACTIONS(8686), + [aux_sym_print_statement_token1] = ACTIONS(8686), + [anon_sym_PLUS] = ACTIONS(8688), + [anon_sym_DASH] = ACTIONS(8686), + [anon_sym_QMARK] = ACTIONS(8688), + [aux_sym_close_statement_token1] = ACTIONS(8686), + [aux_sym_put_statement_token1] = ACTIONS(8686), + [aux_sym_unlock_statement_token1] = ACTIONS(8686), + [aux_sym_seek_statement_token1] = ACTIONS(8686), + [sym_reset_statement] = ACTIONS(8686), + [aux_sym_raise_event_statement_token1] = ACTIONS(8686), + [sym_stop_statement] = ACTIONS(8686), + [sym_beep_statement] = ACTIONS(8686), + [aux_sym_unload_statement_token1] = ACTIONS(8686), + [aux_sym_def_type_statement_token1] = ACTIONS(8686), + [aux_sym_def_type_statement_token2] = ACTIONS(8686), + [aux_sym_def_type_statement_token3] = ACTIONS(8686), + [aux_sym_def_type_statement_token4] = ACTIONS(8686), + [aux_sym_def_type_statement_token5] = ACTIONS(8686), + [aux_sym_def_type_statement_token6] = ACTIONS(8686), + [aux_sym_def_type_statement_token7] = ACTIONS(8686), + [aux_sym_def_type_statement_token8] = ACTIONS(8686), + [aux_sym_def_type_statement_token9] = ACTIONS(8686), + [aux_sym_def_type_statement_token10] = ACTIONS(8686), + [aux_sym_def_type_statement_token11] = ACTIONS(8686), + [aux_sym_def_type_statement_token12] = ACTIONS(8686), + [aux_sym_def_type_statement_token13] = ACTIONS(8686), + [aux_sym_def_type_statement_token14] = ACTIONS(8686), + [aux_sym_call_statement_token1] = ACTIONS(8686), + [sym__ambiguous_call_statement] = ACTIONS(8686), + [aux_sym_addressof_expression_token1] = ACTIONS(8686), + [aux_sym_type_of_expression_token1] = ACTIONS(8686), + [aux_sym_unary_expression_token1] = ACTIONS(8686), + [sym_string_literal] = ACTIONS(8688), + [sym_number_literal] = ACTIONS(8688), + [aux_sym_boolean_literal_token1] = ACTIONS(8686), + [aux_sym_boolean_literal_token2] = ACTIONS(8686), + [sym_nothing_literal] = ACTIONS(8686), + [sym_null_literal] = ACTIONS(8686), + [sym_empty_literal] = ACTIONS(8686), + [sym_date_literal] = ACTIONS(8688), + [anon_sym_POUND] = ACTIONS(8686), + }, + [STATE(6956)] = { + [sym_identifier] = ACTIONS(9072), + [sym_newline] = ACTIONS(9074), + [anon_sym_COLON] = ACTIONS(9074), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9072), + [aux_sym_frm_property_statement_token1] = ACTIONS(9072), + [anon_sym_DOT] = ACTIONS(9072), + [anon_sym_BANG] = ACTIONS(9074), + [aux_sym__attribute_identifier_token1] = ACTIONS(9072), + [aux_sym_option_statement_token3] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9072), + [aux_sym_preprocessor_const_token1] = ACTIONS(9072), + [sym_static_modifier] = ACTIONS(9072), + [sym__dim_keyword] = ACTIONS(9072), + [sym__redim_keyword] = ACTIONS(9072), + [aux_sym_get_accessor_token1] = ACTIONS(9072), + [aux_sym_set_accessor_token1] = ACTIONS(9072), + [aux_sym_const_declaration_token1] = ACTIONS(9072), + [anon_sym_LPAREN] = ACTIONS(9074), + [aux_sym_as_type_clause_token2] = ACTIONS(9072), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9072), + [aux_sym_visibility_token1] = ACTIONS(9072), + [aux_sym_visibility_token2] = ACTIONS(9072), + [aux_sym_elseif_fragment_token1] = ACTIONS(9072), + [aux_sym_else_fragment_token1] = ACTIONS(9072), + [aux_sym_select_statement_token1] = ACTIONS(9072), + [aux_sym__for_header_token1] = ACTIONS(9072), + [aux_sym_do_statement_token1] = ACTIONS(9072), + [aux_sym_do_statement_token2] = ACTIONS(9072), + [aux_sym_do_condition_token1] = ACTIONS(9072), + [aux_sym_with_statement_token1] = ACTIONS(9072), + [aux_sym_exit_statement_token1] = ACTIONS(9072), + [sym_end_statement] = ACTIONS(9074), + [aux_sym_on_goto_statement_token1] = ACTIONS(9072), + [aux_sym_on_goto_statement_token2] = ACTIONS(9072), + [aux_sym_on_error_statement_token2] = ACTIONS(9072), + [sym__ambiguous_redim_statement] = ACTIONS(9074), + [aux_sym_erase_statement_token1] = ACTIONS(9072), + [aux_sym_open_statement_token1] = ACTIONS(9072), + [aux_sym_file_mode_token2] = ACTIONS(9072), + [aux_sym_file_access_token2] = ACTIONS(9072), + [aux_sym_file_lock_token2] = ACTIONS(9072), + [aux_sym_print_statement_token1] = ACTIONS(9072), + [anon_sym_PLUS] = ACTIONS(9074), + [anon_sym_DASH] = ACTIONS(9072), + [anon_sym_QMARK] = ACTIONS(9074), + [aux_sym_close_statement_token1] = ACTIONS(9072), + [aux_sym_put_statement_token1] = ACTIONS(9072), + [aux_sym_unlock_statement_token1] = ACTIONS(9072), + [aux_sym_seek_statement_token1] = ACTIONS(9072), + [sym_reset_statement] = ACTIONS(9072), + [aux_sym_raise_event_statement_token1] = ACTIONS(9072), + [sym_stop_statement] = ACTIONS(9072), + [sym_beep_statement] = ACTIONS(9072), + [aux_sym_unload_statement_token1] = ACTIONS(9072), + [aux_sym_def_type_statement_token1] = ACTIONS(9072), + [aux_sym_def_type_statement_token2] = ACTIONS(9072), + [aux_sym_def_type_statement_token3] = ACTIONS(9072), + [aux_sym_def_type_statement_token4] = ACTIONS(9072), + [aux_sym_def_type_statement_token5] = ACTIONS(9072), + [aux_sym_def_type_statement_token6] = ACTIONS(9072), + [aux_sym_def_type_statement_token7] = ACTIONS(9072), + [aux_sym_def_type_statement_token8] = ACTIONS(9072), + [aux_sym_def_type_statement_token9] = ACTIONS(9072), + [aux_sym_def_type_statement_token10] = ACTIONS(9072), + [aux_sym_def_type_statement_token11] = ACTIONS(9072), + [aux_sym_def_type_statement_token12] = ACTIONS(9072), + [aux_sym_def_type_statement_token13] = ACTIONS(9072), + [aux_sym_def_type_statement_token14] = ACTIONS(9072), + [aux_sym_call_statement_token1] = ACTIONS(9072), + [sym__ambiguous_call_statement] = ACTIONS(9072), + [aux_sym_addressof_expression_token1] = ACTIONS(9072), + [aux_sym_type_of_expression_token1] = ACTIONS(9072), + [aux_sym_unary_expression_token1] = ACTIONS(9072), + [sym_string_literal] = ACTIONS(9074), + [sym_number_literal] = ACTIONS(9074), + [aux_sym_boolean_literal_token1] = ACTIONS(9072), + [aux_sym_boolean_literal_token2] = ACTIONS(9072), + [sym_nothing_literal] = ACTIONS(9072), + [sym_null_literal] = ACTIONS(9072), + [sym_empty_literal] = ACTIONS(9072), + [sym_date_literal] = ACTIONS(9074), + [anon_sym_POUND] = ACTIONS(9072), + }, + [STATE(6957)] = { + [sym_identifier] = ACTIONS(8857), + [sym_newline] = ACTIONS(8859), + [anon_sym_COLON] = ACTIONS(8859), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8857), + [aux_sym_frm_property_statement_token1] = ACTIONS(8857), + [anon_sym_DOT] = ACTIONS(8857), + [anon_sym_BANG] = ACTIONS(8859), + [aux_sym__attribute_identifier_token1] = ACTIONS(8857), + [aux_sym_option_statement_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8857), + [aux_sym_preprocessor_const_token1] = ACTIONS(8857), + [sym_static_modifier] = ACTIONS(8857), + [sym__dim_keyword] = ACTIONS(8857), + [sym__redim_keyword] = ACTIONS(8857), + [aux_sym_get_accessor_token1] = ACTIONS(8857), + [aux_sym_set_accessor_token1] = ACTIONS(8857), + [aux_sym_const_declaration_token1] = ACTIONS(8857), + [anon_sym_LPAREN] = ACTIONS(8859), + [aux_sym_as_type_clause_token2] = ACTIONS(8857), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8857), + [aux_sym_visibility_token1] = ACTIONS(8857), + [aux_sym_visibility_token2] = ACTIONS(8857), + [aux_sym_elseif_fragment_token1] = ACTIONS(8857), + [aux_sym_else_fragment_token1] = ACTIONS(8857), + [aux_sym_select_statement_token1] = ACTIONS(8857), + [aux_sym__for_header_token1] = ACTIONS(8857), + [aux_sym_do_statement_token1] = ACTIONS(8857), + [aux_sym_do_condition_token1] = ACTIONS(8857), + [aux_sym_while_statement_token1] = ACTIONS(8857), + [aux_sym_with_statement_token1] = ACTIONS(8857), + [aux_sym_exit_statement_token1] = ACTIONS(8857), + [sym_end_statement] = ACTIONS(8859), + [aux_sym_on_goto_statement_token1] = ACTIONS(8857), + [aux_sym_on_goto_statement_token2] = ACTIONS(8857), + [aux_sym_on_error_statement_token2] = ACTIONS(8857), + [sym__ambiguous_redim_statement] = ACTIONS(8859), + [aux_sym_erase_statement_token1] = ACTIONS(8857), + [aux_sym_open_statement_token1] = ACTIONS(8857), + [aux_sym_file_mode_token2] = ACTIONS(8857), + [aux_sym_file_access_token2] = ACTIONS(8857), + [aux_sym_file_lock_token2] = ACTIONS(8857), + [aux_sym_print_statement_token1] = ACTIONS(8857), + [anon_sym_PLUS] = ACTIONS(8859), + [anon_sym_DASH] = ACTIONS(8857), + [anon_sym_QMARK] = ACTIONS(8859), + [aux_sym_close_statement_token1] = ACTIONS(8857), + [aux_sym_put_statement_token1] = ACTIONS(8857), + [aux_sym_unlock_statement_token1] = ACTIONS(8857), + [aux_sym_seek_statement_token1] = ACTIONS(8857), + [sym_reset_statement] = ACTIONS(8857), + [aux_sym_raise_event_statement_token1] = ACTIONS(8857), + [sym_stop_statement] = ACTIONS(8857), + [sym_beep_statement] = ACTIONS(8857), + [aux_sym_unload_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token2] = ACTIONS(8857), + [aux_sym_def_type_statement_token3] = ACTIONS(8857), + [aux_sym_def_type_statement_token4] = ACTIONS(8857), + [aux_sym_def_type_statement_token5] = ACTIONS(8857), + [aux_sym_def_type_statement_token6] = ACTIONS(8857), + [aux_sym_def_type_statement_token7] = ACTIONS(8857), + [aux_sym_def_type_statement_token8] = ACTIONS(8857), + [aux_sym_def_type_statement_token9] = ACTIONS(8857), + [aux_sym_def_type_statement_token10] = ACTIONS(8857), + [aux_sym_def_type_statement_token11] = ACTIONS(8857), + [aux_sym_def_type_statement_token12] = ACTIONS(8857), + [aux_sym_def_type_statement_token13] = ACTIONS(8857), + [aux_sym_def_type_statement_token14] = ACTIONS(8857), + [aux_sym_call_statement_token1] = ACTIONS(8857), + [sym__ambiguous_call_statement] = ACTIONS(8857), + [aux_sym_addressof_expression_token1] = ACTIONS(8857), + [aux_sym_type_of_expression_token1] = ACTIONS(8857), + [aux_sym_unary_expression_token1] = ACTIONS(8857), + [sym_string_literal] = ACTIONS(8859), + [sym_number_literal] = ACTIONS(8859), + [aux_sym_boolean_literal_token1] = ACTIONS(8857), + [aux_sym_boolean_literal_token2] = ACTIONS(8857), + [sym_nothing_literal] = ACTIONS(8857), + [sym_null_literal] = ACTIONS(8857), + [sym_empty_literal] = ACTIONS(8857), + [sym_date_literal] = ACTIONS(8859), + [anon_sym_POUND] = ACTIONS(8857), + }, + [STATE(6958)] = { + [sym_identifier] = ACTIONS(9080), + [sym_newline] = ACTIONS(9082), + [anon_sym_COLON] = ACTIONS(9082), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9080), + [aux_sym_frm_property_statement_token1] = ACTIONS(9080), + [anon_sym_DOT] = ACTIONS(9080), + [anon_sym_BANG] = ACTIONS(9082), + [aux_sym__attribute_identifier_token1] = ACTIONS(9080), + [aux_sym_option_statement_token3] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9080), + [aux_sym_preprocessor_const_token1] = ACTIONS(9080), + [sym_static_modifier] = ACTIONS(9080), + [sym__dim_keyword] = ACTIONS(9080), + [sym__redim_keyword] = ACTIONS(9080), + [aux_sym_get_accessor_token1] = ACTIONS(9080), + [aux_sym_set_accessor_token1] = ACTIONS(9080), + [aux_sym_const_declaration_token1] = ACTIONS(9080), + [anon_sym_LPAREN] = ACTIONS(9082), + [aux_sym_as_type_clause_token2] = ACTIONS(9080), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9080), + [aux_sym_visibility_token1] = ACTIONS(9080), + [aux_sym_visibility_token2] = ACTIONS(9080), + [aux_sym_elseif_fragment_token1] = ACTIONS(9080), + [aux_sym_else_fragment_token1] = ACTIONS(9080), + [aux_sym_select_statement_token1] = ACTIONS(9080), + [aux_sym__for_header_token1] = ACTIONS(9080), + [aux_sym_do_statement_token1] = ACTIONS(9080), + [aux_sym_do_statement_token2] = ACTIONS(9080), + [aux_sym_do_condition_token1] = ACTIONS(9080), + [aux_sym_with_statement_token1] = ACTIONS(9080), + [aux_sym_exit_statement_token1] = ACTIONS(9080), + [sym_end_statement] = ACTIONS(9082), + [aux_sym_on_goto_statement_token1] = ACTIONS(9080), + [aux_sym_on_goto_statement_token2] = ACTIONS(9080), + [aux_sym_on_error_statement_token2] = ACTIONS(9080), + [sym__ambiguous_redim_statement] = ACTIONS(9082), + [aux_sym_erase_statement_token1] = ACTIONS(9080), + [aux_sym_open_statement_token1] = ACTIONS(9080), + [aux_sym_file_mode_token2] = ACTIONS(9080), + [aux_sym_file_access_token2] = ACTIONS(9080), + [aux_sym_file_lock_token2] = ACTIONS(9080), + [aux_sym_print_statement_token1] = ACTIONS(9080), + [anon_sym_PLUS] = ACTIONS(9082), + [anon_sym_DASH] = ACTIONS(9080), + [anon_sym_QMARK] = ACTIONS(9082), + [aux_sym_close_statement_token1] = ACTIONS(9080), + [aux_sym_put_statement_token1] = ACTIONS(9080), + [aux_sym_unlock_statement_token1] = ACTIONS(9080), + [aux_sym_seek_statement_token1] = ACTIONS(9080), + [sym_reset_statement] = ACTIONS(9080), + [aux_sym_raise_event_statement_token1] = ACTIONS(9080), + [sym_stop_statement] = ACTIONS(9080), + [sym_beep_statement] = ACTIONS(9080), + [aux_sym_unload_statement_token1] = ACTIONS(9080), + [aux_sym_def_type_statement_token1] = ACTIONS(9080), + [aux_sym_def_type_statement_token2] = ACTIONS(9080), + [aux_sym_def_type_statement_token3] = ACTIONS(9080), + [aux_sym_def_type_statement_token4] = ACTIONS(9080), + [aux_sym_def_type_statement_token5] = ACTIONS(9080), + [aux_sym_def_type_statement_token6] = ACTIONS(9080), + [aux_sym_def_type_statement_token7] = ACTIONS(9080), + [aux_sym_def_type_statement_token8] = ACTIONS(9080), + [aux_sym_def_type_statement_token9] = ACTIONS(9080), + [aux_sym_def_type_statement_token10] = ACTIONS(9080), + [aux_sym_def_type_statement_token11] = ACTIONS(9080), + [aux_sym_def_type_statement_token12] = ACTIONS(9080), + [aux_sym_def_type_statement_token13] = ACTIONS(9080), + [aux_sym_def_type_statement_token14] = ACTIONS(9080), + [aux_sym_call_statement_token1] = ACTIONS(9080), + [sym__ambiguous_call_statement] = ACTIONS(9080), + [aux_sym_addressof_expression_token1] = ACTIONS(9080), + [aux_sym_type_of_expression_token1] = ACTIONS(9080), + [aux_sym_unary_expression_token1] = ACTIONS(9080), + [sym_string_literal] = ACTIONS(9082), + [sym_number_literal] = ACTIONS(9082), + [aux_sym_boolean_literal_token1] = ACTIONS(9080), + [aux_sym_boolean_literal_token2] = ACTIONS(9080), + [sym_nothing_literal] = ACTIONS(9080), + [sym_null_literal] = ACTIONS(9080), + [sym_empty_literal] = ACTIONS(9080), + [sym_date_literal] = ACTIONS(9082), + [anon_sym_POUND] = ACTIONS(9080), + }, + [STATE(6959)] = { + [sym_identifier] = ACTIONS(9284), + [sym_newline] = ACTIONS(9286), + [anon_sym_COLON] = ACTIONS(9286), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9284), + [aux_sym_frm_property_statement_token1] = ACTIONS(9284), + [anon_sym_DOT] = ACTIONS(9284), + [anon_sym_BANG] = ACTIONS(9286), + [aux_sym__attribute_identifier_token1] = ACTIONS(9284), + [aux_sym_option_statement_token3] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9284), + [aux_sym_preprocessor_const_token1] = ACTIONS(9284), + [sym_static_modifier] = ACTIONS(9284), + [sym__dim_keyword] = ACTIONS(9284), + [sym__redim_keyword] = ACTIONS(9284), + [aux_sym_get_accessor_token1] = ACTIONS(9284), + [aux_sym_set_accessor_token1] = ACTIONS(9284), + [aux_sym_const_declaration_token1] = ACTIONS(9284), + [anon_sym_LPAREN] = ACTIONS(9286), + [aux_sym_as_type_clause_token2] = ACTIONS(9284), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9284), + [aux_sym_visibility_token1] = ACTIONS(9284), + [aux_sym_visibility_token2] = ACTIONS(9284), + [aux_sym_elseif_fragment_token1] = ACTIONS(9284), + [aux_sym_else_fragment_token1] = ACTIONS(9284), + [aux_sym_select_statement_token1] = ACTIONS(9284), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9284), + [aux_sym__for_header_token1] = ACTIONS(9284), + [aux_sym_do_statement_token1] = ACTIONS(9284), + [aux_sym_do_condition_token1] = ACTIONS(9284), + [aux_sym_with_statement_token1] = ACTIONS(9284), + [aux_sym_exit_statement_token1] = ACTIONS(9284), + [sym_end_statement] = ACTIONS(9286), + [aux_sym_on_goto_statement_token1] = ACTIONS(9284), + [aux_sym_on_goto_statement_token2] = ACTIONS(9284), + [aux_sym_on_error_statement_token2] = ACTIONS(9284), + [sym__ambiguous_redim_statement] = ACTIONS(9286), + [aux_sym_erase_statement_token1] = ACTIONS(9284), + [aux_sym_open_statement_token1] = ACTIONS(9284), + [aux_sym_file_mode_token2] = ACTIONS(9284), + [aux_sym_file_access_token2] = ACTIONS(9284), + [aux_sym_file_lock_token2] = ACTIONS(9284), + [aux_sym_print_statement_token1] = ACTIONS(9284), + [anon_sym_PLUS] = ACTIONS(9286), + [anon_sym_DASH] = ACTIONS(9284), + [anon_sym_QMARK] = ACTIONS(9286), + [aux_sym_close_statement_token1] = ACTIONS(9284), + [aux_sym_put_statement_token1] = ACTIONS(9284), + [aux_sym_unlock_statement_token1] = ACTIONS(9284), + [aux_sym_seek_statement_token1] = ACTIONS(9284), + [sym_reset_statement] = ACTIONS(9284), + [aux_sym_raise_event_statement_token1] = ACTIONS(9284), + [sym_stop_statement] = ACTIONS(9284), + [sym_beep_statement] = ACTIONS(9284), + [aux_sym_unload_statement_token1] = ACTIONS(9284), + [aux_sym_def_type_statement_token1] = ACTIONS(9284), + [aux_sym_def_type_statement_token2] = ACTIONS(9284), + [aux_sym_def_type_statement_token3] = ACTIONS(9284), + [aux_sym_def_type_statement_token4] = ACTIONS(9284), + [aux_sym_def_type_statement_token5] = ACTIONS(9284), + [aux_sym_def_type_statement_token6] = ACTIONS(9284), + [aux_sym_def_type_statement_token7] = ACTIONS(9284), + [aux_sym_def_type_statement_token8] = ACTIONS(9284), + [aux_sym_def_type_statement_token9] = ACTIONS(9284), + [aux_sym_def_type_statement_token10] = ACTIONS(9284), + [aux_sym_def_type_statement_token11] = ACTIONS(9284), + [aux_sym_def_type_statement_token12] = ACTIONS(9284), + [aux_sym_def_type_statement_token13] = ACTIONS(9284), + [aux_sym_def_type_statement_token14] = ACTIONS(9284), + [aux_sym_call_statement_token1] = ACTIONS(9284), + [sym__ambiguous_call_statement] = ACTIONS(9284), + [aux_sym_addressof_expression_token1] = ACTIONS(9284), + [aux_sym_type_of_expression_token1] = ACTIONS(9284), + [aux_sym_unary_expression_token1] = ACTIONS(9284), + [sym_string_literal] = ACTIONS(9286), + [sym_number_literal] = ACTIONS(9286), + [aux_sym_boolean_literal_token1] = ACTIONS(9284), + [aux_sym_boolean_literal_token2] = ACTIONS(9284), + [sym_nothing_literal] = ACTIONS(9284), + [sym_null_literal] = ACTIONS(9284), + [sym_empty_literal] = ACTIONS(9284), + [sym_date_literal] = ACTIONS(9286), + [anon_sym_POUND] = ACTIONS(9284), + }, + [STATE(6960)] = { + [sym_identifier] = ACTIONS(8861), + [sym_newline] = ACTIONS(8863), + [anon_sym_COLON] = ACTIONS(8863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8861), + [aux_sym_frm_property_statement_token1] = ACTIONS(8861), + [anon_sym_DOT] = ACTIONS(8861), + [anon_sym_BANG] = ACTIONS(8863), + [aux_sym__attribute_identifier_token1] = ACTIONS(8861), + [aux_sym_option_statement_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8861), + [aux_sym_preprocessor_const_token1] = ACTIONS(8861), + [sym_static_modifier] = ACTIONS(8861), + [sym__dim_keyword] = ACTIONS(8861), + [sym__redim_keyword] = ACTIONS(8861), + [aux_sym_get_accessor_token1] = ACTIONS(8861), + [aux_sym_set_accessor_token1] = ACTIONS(8861), + [aux_sym_const_declaration_token1] = ACTIONS(8861), + [anon_sym_LPAREN] = ACTIONS(8863), + [aux_sym_as_type_clause_token2] = ACTIONS(8861), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8861), + [aux_sym_visibility_token1] = ACTIONS(8861), + [aux_sym_visibility_token2] = ACTIONS(8861), + [aux_sym_elseif_fragment_token1] = ACTIONS(8861), + [aux_sym_else_fragment_token1] = ACTIONS(8861), + [aux_sym_select_statement_token1] = ACTIONS(8861), + [aux_sym__for_header_token1] = ACTIONS(8861), + [aux_sym_do_statement_token1] = ACTIONS(8861), + [aux_sym_do_condition_token1] = ACTIONS(8861), + [aux_sym_while_statement_token1] = ACTIONS(8861), + [aux_sym_with_statement_token1] = ACTIONS(8861), + [aux_sym_exit_statement_token1] = ACTIONS(8861), + [sym_end_statement] = ACTIONS(8863), + [aux_sym_on_goto_statement_token1] = ACTIONS(8861), + [aux_sym_on_goto_statement_token2] = ACTIONS(8861), + [aux_sym_on_error_statement_token2] = ACTIONS(8861), + [sym__ambiguous_redim_statement] = ACTIONS(8863), + [aux_sym_erase_statement_token1] = ACTIONS(8861), + [aux_sym_open_statement_token1] = ACTIONS(8861), + [aux_sym_file_mode_token2] = ACTIONS(8861), + [aux_sym_file_access_token2] = ACTIONS(8861), + [aux_sym_file_lock_token2] = ACTIONS(8861), + [aux_sym_print_statement_token1] = ACTIONS(8861), + [anon_sym_PLUS] = ACTIONS(8863), + [anon_sym_DASH] = ACTIONS(8861), + [anon_sym_QMARK] = ACTIONS(8863), + [aux_sym_close_statement_token1] = ACTIONS(8861), + [aux_sym_put_statement_token1] = ACTIONS(8861), + [aux_sym_unlock_statement_token1] = ACTIONS(8861), + [aux_sym_seek_statement_token1] = ACTIONS(8861), + [sym_reset_statement] = ACTIONS(8861), + [aux_sym_raise_event_statement_token1] = ACTIONS(8861), + [sym_stop_statement] = ACTIONS(8861), + [sym_beep_statement] = ACTIONS(8861), + [aux_sym_unload_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token2] = ACTIONS(8861), + [aux_sym_def_type_statement_token3] = ACTIONS(8861), + [aux_sym_def_type_statement_token4] = ACTIONS(8861), + [aux_sym_def_type_statement_token5] = ACTIONS(8861), + [aux_sym_def_type_statement_token6] = ACTIONS(8861), + [aux_sym_def_type_statement_token7] = ACTIONS(8861), + [aux_sym_def_type_statement_token8] = ACTIONS(8861), + [aux_sym_def_type_statement_token9] = ACTIONS(8861), + [aux_sym_def_type_statement_token10] = ACTIONS(8861), + [aux_sym_def_type_statement_token11] = ACTIONS(8861), + [aux_sym_def_type_statement_token12] = ACTIONS(8861), + [aux_sym_def_type_statement_token13] = ACTIONS(8861), + [aux_sym_def_type_statement_token14] = ACTIONS(8861), + [aux_sym_call_statement_token1] = ACTIONS(8861), + [sym__ambiguous_call_statement] = ACTIONS(8861), + [aux_sym_addressof_expression_token1] = ACTIONS(8861), + [aux_sym_type_of_expression_token1] = ACTIONS(8861), + [aux_sym_unary_expression_token1] = ACTIONS(8861), + [sym_string_literal] = ACTIONS(8863), + [sym_number_literal] = ACTIONS(8863), + [aux_sym_boolean_literal_token1] = ACTIONS(8861), + [aux_sym_boolean_literal_token2] = ACTIONS(8861), + [sym_nothing_literal] = ACTIONS(8861), + [sym_null_literal] = ACTIONS(8861), + [sym_empty_literal] = ACTIONS(8861), + [sym_date_literal] = ACTIONS(8863), + [anon_sym_POUND] = ACTIONS(8861), + }, + [STATE(6961)] = { + [sym_identifier] = ACTIONS(8279), + [sym_newline] = ACTIONS(8281), + [anon_sym_COLON] = ACTIONS(8281), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8279), + [aux_sym_frm_property_statement_token1] = ACTIONS(8279), + [anon_sym_DOT] = ACTIONS(8279), + [anon_sym_BANG] = ACTIONS(8281), + [aux_sym__attribute_identifier_token1] = ACTIONS(8279), + [aux_sym_option_statement_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8279), + [aux_sym_preprocessor_const_token1] = ACTIONS(8279), + [sym_static_modifier] = ACTIONS(8279), + [sym__dim_keyword] = ACTIONS(8279), + [sym__redim_keyword] = ACTIONS(8279), + [aux_sym_get_accessor_token1] = ACTIONS(8279), + [aux_sym_set_accessor_token1] = ACTIONS(8279), + [aux_sym_const_declaration_token1] = ACTIONS(8279), + [anon_sym_LPAREN] = ACTIONS(8281), + [aux_sym_as_type_clause_token2] = ACTIONS(8279), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8279), + [aux_sym_visibility_token1] = ACTIONS(8279), + [aux_sym_visibility_token2] = ACTIONS(8279), + [aux_sym_elseif_fragment_token1] = ACTIONS(8279), + [aux_sym_else_fragment_token1] = ACTIONS(8279), + [aux_sym_select_statement_token1] = ACTIONS(8279), + [aux_sym__for_header_token1] = ACTIONS(8279), + [aux_sym_do_statement_token1] = ACTIONS(8279), + [aux_sym_do_condition_token1] = ACTIONS(8279), + [aux_sym_while_statement_token1] = ACTIONS(8279), + [aux_sym_with_statement_token1] = ACTIONS(8279), + [aux_sym_exit_statement_token1] = ACTIONS(8279), + [sym_end_statement] = ACTIONS(8281), + [aux_sym_on_goto_statement_token1] = ACTIONS(8279), + [aux_sym_on_goto_statement_token2] = ACTIONS(8279), + [aux_sym_on_error_statement_token2] = ACTIONS(8279), + [sym__ambiguous_redim_statement] = ACTIONS(8281), + [aux_sym_erase_statement_token1] = ACTIONS(8279), + [aux_sym_open_statement_token1] = ACTIONS(8279), + [aux_sym_file_mode_token2] = ACTIONS(8279), + [aux_sym_file_access_token2] = ACTIONS(8279), + [aux_sym_file_lock_token2] = ACTIONS(8279), + [aux_sym_print_statement_token1] = ACTIONS(8279), + [anon_sym_PLUS] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8279), + [anon_sym_QMARK] = ACTIONS(8281), + [aux_sym_close_statement_token1] = ACTIONS(8279), + [aux_sym_put_statement_token1] = ACTIONS(8279), + [aux_sym_unlock_statement_token1] = ACTIONS(8279), + [aux_sym_seek_statement_token1] = ACTIONS(8279), + [sym_reset_statement] = ACTIONS(8279), + [aux_sym_raise_event_statement_token1] = ACTIONS(8279), + [sym_stop_statement] = ACTIONS(8279), + [sym_beep_statement] = ACTIONS(8279), + [aux_sym_unload_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token2] = ACTIONS(8279), + [aux_sym_def_type_statement_token3] = ACTIONS(8279), + [aux_sym_def_type_statement_token4] = ACTIONS(8279), + [aux_sym_def_type_statement_token5] = ACTIONS(8279), + [aux_sym_def_type_statement_token6] = ACTIONS(8279), + [aux_sym_def_type_statement_token7] = ACTIONS(8279), + [aux_sym_def_type_statement_token8] = ACTIONS(8279), + [aux_sym_def_type_statement_token9] = ACTIONS(8279), + [aux_sym_def_type_statement_token10] = ACTIONS(8279), + [aux_sym_def_type_statement_token11] = ACTIONS(8279), + [aux_sym_def_type_statement_token12] = ACTIONS(8279), + [aux_sym_def_type_statement_token13] = ACTIONS(8279), + [aux_sym_def_type_statement_token14] = ACTIONS(8279), + [aux_sym_call_statement_token1] = ACTIONS(8279), + [sym__ambiguous_call_statement] = ACTIONS(8279), + [aux_sym_addressof_expression_token1] = ACTIONS(8279), + [aux_sym_type_of_expression_token1] = ACTIONS(8279), + [aux_sym_unary_expression_token1] = ACTIONS(8279), + [sym_string_literal] = ACTIONS(8281), + [sym_number_literal] = ACTIONS(8281), + [aux_sym_boolean_literal_token1] = ACTIONS(8279), + [aux_sym_boolean_literal_token2] = ACTIONS(8279), + [sym_nothing_literal] = ACTIONS(8279), + [sym_null_literal] = ACTIONS(8279), + [sym_empty_literal] = ACTIONS(8279), + [sym_date_literal] = ACTIONS(8281), + [anon_sym_POUND] = ACTIONS(8279), + }, + [STATE(6962)] = { + [sym_identifier] = ACTIONS(9092), + [sym_newline] = ACTIONS(9094), + [anon_sym_COLON] = ACTIONS(11162), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9092), + [aux_sym_frm_property_statement_token1] = ACTIONS(9092), + [anon_sym_DOT] = ACTIONS(9092), + [anon_sym_BANG] = ACTIONS(9094), + [aux_sym__attribute_identifier_token1] = ACTIONS(9092), + [aux_sym_option_statement_token3] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9092), + [aux_sym_preprocessor_const_token1] = ACTIONS(9092), + [sym_static_modifier] = ACTIONS(9092), + [sym__dim_keyword] = ACTIONS(9092), + [sym__redim_keyword] = ACTIONS(9092), + [aux_sym_get_accessor_token1] = ACTIONS(9092), + [aux_sym_set_accessor_token1] = ACTIONS(9092), + [aux_sym_const_declaration_token1] = ACTIONS(9092), + [anon_sym_LPAREN] = ACTIONS(9094), + [aux_sym_as_type_clause_token2] = ACTIONS(9092), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9092), + [aux_sym_visibility_token1] = ACTIONS(9092), + [aux_sym_visibility_token2] = ACTIONS(9092), + [aux_sym_elseif_fragment_token1] = ACTIONS(9092), + [aux_sym_else_fragment_token1] = ACTIONS(9092), + [aux_sym_select_statement_token1] = ACTIONS(9092), + [aux_sym__for_header_token1] = ACTIONS(9092), + [aux_sym_do_statement_token1] = ACTIONS(9092), + [aux_sym_do_condition_token1] = ACTIONS(9092), + [aux_sym_with_statement_token1] = ACTIONS(9092), + [aux_sym_exit_statement_token1] = ACTIONS(9092), + [sym_end_statement] = ACTIONS(9094), + [aux_sym_on_goto_statement_token1] = ACTIONS(9092), + [aux_sym_on_goto_statement_token2] = ACTIONS(9092), + [aux_sym_on_error_statement_token2] = ACTIONS(9092), + [sym__ambiguous_redim_statement] = ACTIONS(9094), + [aux_sym_erase_statement_token1] = ACTIONS(9092), + [aux_sym_open_statement_token1] = ACTIONS(9092), + [aux_sym_file_mode_token2] = ACTIONS(9092), + [aux_sym_file_access_token2] = ACTIONS(9092), + [aux_sym_file_lock_token2] = ACTIONS(9092), + [aux_sym_print_statement_token1] = ACTIONS(9092), + [anon_sym_PLUS] = ACTIONS(9094), + [anon_sym_DASH] = ACTIONS(9092), + [anon_sym_QMARK] = ACTIONS(9094), + [aux_sym_close_statement_token1] = ACTIONS(9092), + [aux_sym_put_statement_token1] = ACTIONS(9092), + [aux_sym_unlock_statement_token1] = ACTIONS(9092), + [aux_sym_seek_statement_token1] = ACTIONS(9092), + [sym_reset_statement] = ACTIONS(9092), + [aux_sym_raise_event_statement_token1] = ACTIONS(9092), + [sym_stop_statement] = ACTIONS(9092), + [sym_beep_statement] = ACTIONS(9092), + [aux_sym_unload_statement_token1] = ACTIONS(9092), + [aux_sym_def_type_statement_token1] = ACTIONS(9092), + [aux_sym_def_type_statement_token2] = ACTIONS(9092), + [aux_sym_def_type_statement_token3] = ACTIONS(9092), + [aux_sym_def_type_statement_token4] = ACTIONS(9092), + [aux_sym_def_type_statement_token5] = ACTIONS(9092), + [aux_sym_def_type_statement_token6] = ACTIONS(9092), + [aux_sym_def_type_statement_token7] = ACTIONS(9092), + [aux_sym_def_type_statement_token8] = ACTIONS(9092), + [aux_sym_def_type_statement_token9] = ACTIONS(9092), + [aux_sym_def_type_statement_token10] = ACTIONS(9092), + [aux_sym_def_type_statement_token11] = ACTIONS(9092), + [aux_sym_def_type_statement_token12] = ACTIONS(9092), + [aux_sym_def_type_statement_token13] = ACTIONS(9092), + [aux_sym_def_type_statement_token14] = ACTIONS(9092), + [aux_sym_call_statement_token1] = ACTIONS(9092), + [sym__ambiguous_call_statement] = ACTIONS(9092), + [aux_sym_addressof_expression_token1] = ACTIONS(9092), + [aux_sym_type_of_expression_token1] = ACTIONS(9092), + [aux_sym_unary_expression_token1] = ACTIONS(9092), + [sym_string_literal] = ACTIONS(9094), + [sym_number_literal] = ACTIONS(9094), + [aux_sym_boolean_literal_token1] = ACTIONS(9092), + [aux_sym_boolean_literal_token2] = ACTIONS(9092), + [sym_nothing_literal] = ACTIONS(9092), + [sym_null_literal] = ACTIONS(9092), + [sym_empty_literal] = ACTIONS(9092), + [sym_date_literal] = ACTIONS(9094), + [anon_sym_POUND] = ACTIONS(9092), + }, + [STATE(6963)] = { + [sym_identifier] = ACTIONS(8283), + [sym_newline] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8283), + [aux_sym_frm_property_statement_token1] = ACTIONS(8283), + [anon_sym_DOT] = ACTIONS(8283), + [anon_sym_BANG] = ACTIONS(8285), + [aux_sym__attribute_identifier_token1] = ACTIONS(8283), + [aux_sym_option_statement_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8283), + [aux_sym_preprocessor_const_token1] = ACTIONS(8283), + [sym_static_modifier] = ACTIONS(8283), + [sym__dim_keyword] = ACTIONS(8283), + [sym__redim_keyword] = ACTIONS(8283), + [aux_sym_get_accessor_token1] = ACTIONS(8283), + [aux_sym_set_accessor_token1] = ACTIONS(8283), + [aux_sym_const_declaration_token1] = ACTIONS(8283), + [anon_sym_LPAREN] = ACTIONS(8285), + [aux_sym_as_type_clause_token2] = ACTIONS(8283), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8283), + [aux_sym_visibility_token1] = ACTIONS(8283), + [aux_sym_visibility_token2] = ACTIONS(8283), + [aux_sym_elseif_fragment_token1] = ACTIONS(8283), + [aux_sym_else_fragment_token1] = ACTIONS(8283), + [aux_sym_select_statement_token1] = ACTIONS(8283), + [aux_sym__for_header_token1] = ACTIONS(8283), + [aux_sym_do_statement_token1] = ACTIONS(8283), + [aux_sym_do_condition_token1] = ACTIONS(8283), + [aux_sym_while_statement_token1] = ACTIONS(8283), + [aux_sym_with_statement_token1] = ACTIONS(8283), + [aux_sym_exit_statement_token1] = ACTIONS(8283), + [sym_end_statement] = ACTIONS(8285), + [aux_sym_on_goto_statement_token1] = ACTIONS(8283), + [aux_sym_on_goto_statement_token2] = ACTIONS(8283), + [aux_sym_on_error_statement_token2] = ACTIONS(8283), + [sym__ambiguous_redim_statement] = ACTIONS(8285), + [aux_sym_erase_statement_token1] = ACTIONS(8283), + [aux_sym_open_statement_token1] = ACTIONS(8283), + [aux_sym_file_mode_token2] = ACTIONS(8283), + [aux_sym_file_access_token2] = ACTIONS(8283), + [aux_sym_file_lock_token2] = ACTIONS(8283), + [aux_sym_print_statement_token1] = ACTIONS(8283), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_DASH] = ACTIONS(8283), + [anon_sym_QMARK] = ACTIONS(8285), + [aux_sym_close_statement_token1] = ACTIONS(8283), + [aux_sym_put_statement_token1] = ACTIONS(8283), + [aux_sym_unlock_statement_token1] = ACTIONS(8283), + [aux_sym_seek_statement_token1] = ACTIONS(8283), + [sym_reset_statement] = ACTIONS(8283), + [aux_sym_raise_event_statement_token1] = ACTIONS(8283), + [sym_stop_statement] = ACTIONS(8283), + [sym_beep_statement] = ACTIONS(8283), + [aux_sym_unload_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token2] = ACTIONS(8283), + [aux_sym_def_type_statement_token3] = ACTIONS(8283), + [aux_sym_def_type_statement_token4] = ACTIONS(8283), + [aux_sym_def_type_statement_token5] = ACTIONS(8283), + [aux_sym_def_type_statement_token6] = ACTIONS(8283), + [aux_sym_def_type_statement_token7] = ACTIONS(8283), + [aux_sym_def_type_statement_token8] = ACTIONS(8283), + [aux_sym_def_type_statement_token9] = ACTIONS(8283), + [aux_sym_def_type_statement_token10] = ACTIONS(8283), + [aux_sym_def_type_statement_token11] = ACTIONS(8283), + [aux_sym_def_type_statement_token12] = ACTIONS(8283), + [aux_sym_def_type_statement_token13] = ACTIONS(8283), + [aux_sym_def_type_statement_token14] = ACTIONS(8283), + [aux_sym_call_statement_token1] = ACTIONS(8283), + [sym__ambiguous_call_statement] = ACTIONS(8283), + [aux_sym_addressof_expression_token1] = ACTIONS(8283), + [aux_sym_type_of_expression_token1] = ACTIONS(8283), + [aux_sym_unary_expression_token1] = ACTIONS(8283), + [sym_string_literal] = ACTIONS(8285), + [sym_number_literal] = ACTIONS(8285), + [aux_sym_boolean_literal_token1] = ACTIONS(8283), + [aux_sym_boolean_literal_token2] = ACTIONS(8283), + [sym_nothing_literal] = ACTIONS(8283), + [sym_null_literal] = ACTIONS(8283), + [sym_empty_literal] = ACTIONS(8283), + [sym_date_literal] = ACTIONS(8285), + [anon_sym_POUND] = ACTIONS(8283), + }, + [STATE(6964)] = { + [sym_identifier] = ACTIONS(9099), + [sym_newline] = ACTIONS(9101), + [anon_sym_COLON] = ACTIONS(11165), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9099), + [aux_sym_frm_property_statement_token1] = ACTIONS(9099), + [anon_sym_DOT] = ACTIONS(9099), + [anon_sym_BANG] = ACTIONS(9101), + [aux_sym__attribute_identifier_token1] = ACTIONS(9099), + [aux_sym_option_statement_token3] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9099), + [aux_sym_preprocessor_const_token1] = ACTIONS(9099), + [sym_static_modifier] = ACTIONS(9099), + [sym__dim_keyword] = ACTIONS(9099), + [sym__redim_keyword] = ACTIONS(9099), + [aux_sym_get_accessor_token1] = ACTIONS(9099), + [aux_sym_set_accessor_token1] = ACTIONS(9099), + [aux_sym_const_declaration_token1] = ACTIONS(9099), + [anon_sym_LPAREN] = ACTIONS(9101), + [aux_sym_as_type_clause_token2] = ACTIONS(9099), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9099), + [aux_sym_visibility_token1] = ACTIONS(9099), + [aux_sym_visibility_token2] = ACTIONS(9099), + [aux_sym_elseif_fragment_token1] = ACTIONS(9099), + [aux_sym_else_fragment_token1] = ACTIONS(9099), + [aux_sym_select_statement_token1] = ACTIONS(9099), + [aux_sym__for_header_token1] = ACTIONS(9099), + [aux_sym_do_statement_token1] = ACTIONS(9099), + [aux_sym_do_condition_token1] = ACTIONS(9099), + [aux_sym_with_statement_token1] = ACTIONS(9099), + [aux_sym_exit_statement_token1] = ACTIONS(9099), + [sym_end_statement] = ACTIONS(9101), + [aux_sym_on_goto_statement_token1] = ACTIONS(9099), + [aux_sym_on_goto_statement_token2] = ACTIONS(9099), + [aux_sym_on_error_statement_token2] = ACTIONS(9099), + [sym__ambiguous_redim_statement] = ACTIONS(9101), + [aux_sym_erase_statement_token1] = ACTIONS(9099), + [aux_sym_open_statement_token1] = ACTIONS(9099), + [aux_sym_file_mode_token2] = ACTIONS(9099), + [aux_sym_file_access_token2] = ACTIONS(9099), + [aux_sym_file_lock_token2] = ACTIONS(9099), + [aux_sym_print_statement_token1] = ACTIONS(9099), + [anon_sym_PLUS] = ACTIONS(9101), + [anon_sym_DASH] = ACTIONS(9099), + [anon_sym_QMARK] = ACTIONS(9101), + [aux_sym_close_statement_token1] = ACTIONS(9099), + [aux_sym_put_statement_token1] = ACTIONS(9099), + [aux_sym_unlock_statement_token1] = ACTIONS(9099), + [aux_sym_seek_statement_token1] = ACTIONS(9099), + [sym_reset_statement] = ACTIONS(9099), + [aux_sym_raise_event_statement_token1] = ACTIONS(9099), + [sym_stop_statement] = ACTIONS(9099), + [sym_beep_statement] = ACTIONS(9099), + [aux_sym_unload_statement_token1] = ACTIONS(9099), + [aux_sym_def_type_statement_token1] = ACTIONS(9099), + [aux_sym_def_type_statement_token2] = ACTIONS(9099), + [aux_sym_def_type_statement_token3] = ACTIONS(9099), + [aux_sym_def_type_statement_token4] = ACTIONS(9099), + [aux_sym_def_type_statement_token5] = ACTIONS(9099), + [aux_sym_def_type_statement_token6] = ACTIONS(9099), + [aux_sym_def_type_statement_token7] = ACTIONS(9099), + [aux_sym_def_type_statement_token8] = ACTIONS(9099), + [aux_sym_def_type_statement_token9] = ACTIONS(9099), + [aux_sym_def_type_statement_token10] = ACTIONS(9099), + [aux_sym_def_type_statement_token11] = ACTIONS(9099), + [aux_sym_def_type_statement_token12] = ACTIONS(9099), + [aux_sym_def_type_statement_token13] = ACTIONS(9099), + [aux_sym_def_type_statement_token14] = ACTIONS(9099), + [aux_sym_call_statement_token1] = ACTIONS(9099), + [sym__ambiguous_call_statement] = ACTIONS(9099), + [aux_sym_addressof_expression_token1] = ACTIONS(9099), + [aux_sym_type_of_expression_token1] = ACTIONS(9099), + [aux_sym_unary_expression_token1] = ACTIONS(9099), + [sym_string_literal] = ACTIONS(9101), + [sym_number_literal] = ACTIONS(9101), + [aux_sym_boolean_literal_token1] = ACTIONS(9099), + [aux_sym_boolean_literal_token2] = ACTIONS(9099), + [sym_nothing_literal] = ACTIONS(9099), + [sym_null_literal] = ACTIONS(9099), + [sym_empty_literal] = ACTIONS(9099), + [sym_date_literal] = ACTIONS(9101), + [anon_sym_POUND] = ACTIONS(9099), + }, + [STATE(6965)] = { + [sym_identifier] = ACTIONS(9110), + [sym_newline] = ACTIONS(9112), + [anon_sym_COLON] = ACTIONS(9112), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9110), + [aux_sym_frm_property_statement_token1] = ACTIONS(9110), + [anon_sym_DOT] = ACTIONS(9110), + [anon_sym_BANG] = ACTIONS(9112), + [aux_sym__attribute_identifier_token1] = ACTIONS(9110), + [aux_sym_option_statement_token3] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9110), + [aux_sym_preprocessor_const_token1] = ACTIONS(9110), + [sym_static_modifier] = ACTIONS(9110), + [sym__dim_keyword] = ACTIONS(9110), + [sym__redim_keyword] = ACTIONS(9110), + [aux_sym_get_accessor_token1] = ACTIONS(9110), + [aux_sym_set_accessor_token1] = ACTIONS(9110), + [aux_sym_const_declaration_token1] = ACTIONS(9110), + [anon_sym_LPAREN] = ACTIONS(9112), + [aux_sym_as_type_clause_token2] = ACTIONS(9110), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9110), + [aux_sym_visibility_token1] = ACTIONS(9110), + [aux_sym_visibility_token2] = ACTIONS(9110), + [aux_sym_elseif_fragment_token1] = ACTIONS(9110), + [aux_sym_else_fragment_token1] = ACTIONS(9110), + [aux_sym_select_statement_token1] = ACTIONS(9110), + [aux_sym__for_header_token1] = ACTIONS(9110), + [aux_sym_do_statement_token1] = ACTIONS(9110), + [aux_sym_do_condition_token1] = ACTIONS(9110), + [aux_sym_with_statement_token1] = ACTIONS(9110), + [aux_sym_exit_statement_token1] = ACTIONS(9110), + [sym_end_statement] = ACTIONS(9112), + [aux_sym_on_goto_statement_token1] = ACTIONS(9110), + [aux_sym_on_goto_statement_token2] = ACTIONS(9110), + [aux_sym_on_error_statement_token2] = ACTIONS(9110), + [sym__ambiguous_redim_statement] = ACTIONS(9112), + [aux_sym_erase_statement_token1] = ACTIONS(9110), + [aux_sym_open_statement_token1] = ACTIONS(9110), + [aux_sym_file_mode_token2] = ACTIONS(9110), + [aux_sym_file_access_token2] = ACTIONS(9110), + [aux_sym_file_lock_token2] = ACTIONS(9110), + [aux_sym_print_statement_token1] = ACTIONS(9110), + [anon_sym_PLUS] = ACTIONS(9112), + [anon_sym_DASH] = ACTIONS(9110), + [anon_sym_QMARK] = ACTIONS(9112), + [aux_sym_close_statement_token1] = ACTIONS(9110), + [aux_sym_put_statement_token1] = ACTIONS(9110), + [aux_sym_unlock_statement_token1] = ACTIONS(9110), + [aux_sym_seek_statement_token1] = ACTIONS(9110), + [sym_reset_statement] = ACTIONS(9110), + [aux_sym_raise_event_statement_token1] = ACTIONS(9110), + [sym_stop_statement] = ACTIONS(9110), + [sym_beep_statement] = ACTIONS(9110), + [aux_sym_unload_statement_token1] = ACTIONS(9110), + [aux_sym_def_type_statement_token1] = ACTIONS(9110), + [aux_sym_def_type_statement_token2] = ACTIONS(9110), + [aux_sym_def_type_statement_token3] = ACTIONS(9110), + [aux_sym_def_type_statement_token4] = ACTIONS(9110), + [aux_sym_def_type_statement_token5] = ACTIONS(9110), + [aux_sym_def_type_statement_token6] = ACTIONS(9110), + [aux_sym_def_type_statement_token7] = ACTIONS(9110), + [aux_sym_def_type_statement_token8] = ACTIONS(9110), + [aux_sym_def_type_statement_token9] = ACTIONS(9110), + [aux_sym_def_type_statement_token10] = ACTIONS(9110), + [aux_sym_def_type_statement_token11] = ACTIONS(9110), + [aux_sym_def_type_statement_token12] = ACTIONS(9110), + [aux_sym_def_type_statement_token13] = ACTIONS(9110), + [aux_sym_def_type_statement_token14] = ACTIONS(9110), + [aux_sym_call_statement_token1] = ACTIONS(9110), + [sym__ambiguous_call_statement] = ACTIONS(9110), + [aux_sym_addressof_expression_token1] = ACTIONS(9110), + [aux_sym_type_of_expression_token1] = ACTIONS(9110), + [aux_sym_unary_expression_token1] = ACTIONS(9110), + [sym_string_literal] = ACTIONS(9112), + [sym_number_literal] = ACTIONS(9112), + [aux_sym_boolean_literal_token1] = ACTIONS(9110), + [aux_sym_boolean_literal_token2] = ACTIONS(9110), + [sym_nothing_literal] = ACTIONS(9110), + [sym_null_literal] = ACTIONS(9110), + [sym_empty_literal] = ACTIONS(9110), + [sym_date_literal] = ACTIONS(9112), + [anon_sym_POUND] = ACTIONS(9110), + }, + [STATE(6966)] = { + [sym_identifier] = ACTIONS(8652), + [sym_newline] = ACTIONS(8654), + [anon_sym_COLON] = ACTIONS(8654), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8652), + [aux_sym_frm_property_statement_token1] = ACTIONS(8652), + [anon_sym_DOT] = ACTIONS(8652), + [anon_sym_BANG] = ACTIONS(8654), + [aux_sym__attribute_identifier_token1] = ACTIONS(8652), + [aux_sym_option_statement_token3] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8652), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8652), + [aux_sym_preprocessor_const_token1] = ACTIONS(8652), + [sym_static_modifier] = ACTIONS(8652), + [sym__dim_keyword] = ACTIONS(8652), + [sym__redim_keyword] = ACTIONS(8652), + [aux_sym_get_accessor_token1] = ACTIONS(8652), + [aux_sym_set_accessor_token1] = ACTIONS(8652), + [anon_sym_COMMA] = ACTIONS(11168), + [aux_sym_const_declaration_token1] = ACTIONS(8652), + [anon_sym_LPAREN] = ACTIONS(8654), + [aux_sym_as_type_clause_token2] = ACTIONS(8652), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8652), + [aux_sym_visibility_token1] = ACTIONS(8652), + [aux_sym_visibility_token2] = ACTIONS(8652), + [aux_sym_elseif_fragment_token1] = ACTIONS(8652), + [aux_sym_else_fragment_token1] = ACTIONS(8652), + [aux_sym_select_statement_token1] = ACTIONS(8652), + [aux_sym__for_header_token1] = ACTIONS(8652), + [aux_sym_do_statement_token1] = ACTIONS(8652), + [aux_sym_do_condition_token1] = ACTIONS(8652), + [aux_sym_with_statement_token1] = ACTIONS(8652), + [aux_sym_exit_statement_token1] = ACTIONS(8652), + [sym_end_statement] = ACTIONS(8654), + [aux_sym_on_goto_statement_token1] = ACTIONS(8652), + [aux_sym_on_goto_statement_token2] = ACTIONS(8652), + [aux_sym_on_error_statement_token2] = ACTIONS(8652), + [sym__ambiguous_redim_statement] = ACTIONS(8654), + [aux_sym_erase_statement_token1] = ACTIONS(8652), + [aux_sym_open_statement_token1] = ACTIONS(8652), + [aux_sym_file_mode_token2] = ACTIONS(8652), + [aux_sym_file_access_token2] = ACTIONS(8652), + [aux_sym_file_lock_token2] = ACTIONS(8652), + [aux_sym_print_statement_token1] = ACTIONS(8652), + [anon_sym_PLUS] = ACTIONS(8654), + [anon_sym_DASH] = ACTIONS(8652), + [anon_sym_QMARK] = ACTIONS(8654), + [aux_sym_close_statement_token1] = ACTIONS(8652), + [aux_sym_put_statement_token1] = ACTIONS(8652), + [aux_sym_unlock_statement_token1] = ACTIONS(8652), + [aux_sym_seek_statement_token1] = ACTIONS(8652), + [sym_reset_statement] = ACTIONS(8652), + [aux_sym_raise_event_statement_token1] = ACTIONS(8652), + [sym_stop_statement] = ACTIONS(8652), + [sym_beep_statement] = ACTIONS(8652), + [aux_sym_unload_statement_token1] = ACTIONS(8652), + [aux_sym_def_type_statement_token1] = ACTIONS(8652), + [aux_sym_def_type_statement_token2] = ACTIONS(8652), + [aux_sym_def_type_statement_token3] = ACTIONS(8652), + [aux_sym_def_type_statement_token4] = ACTIONS(8652), + [aux_sym_def_type_statement_token5] = ACTIONS(8652), + [aux_sym_def_type_statement_token6] = ACTIONS(8652), + [aux_sym_def_type_statement_token7] = ACTIONS(8652), + [aux_sym_def_type_statement_token8] = ACTIONS(8652), + [aux_sym_def_type_statement_token9] = ACTIONS(8652), + [aux_sym_def_type_statement_token10] = ACTIONS(8652), + [aux_sym_def_type_statement_token11] = ACTIONS(8652), + [aux_sym_def_type_statement_token12] = ACTIONS(8652), + [aux_sym_def_type_statement_token13] = ACTIONS(8652), + [aux_sym_def_type_statement_token14] = ACTIONS(8652), + [aux_sym_call_statement_token1] = ACTIONS(8652), + [sym__ambiguous_call_statement] = ACTIONS(8652), + [aux_sym_addressof_expression_token1] = ACTIONS(8652), + [aux_sym_type_of_expression_token1] = ACTIONS(8652), + [aux_sym_unary_expression_token1] = ACTIONS(8652), + [sym_string_literal] = ACTIONS(8654), + [sym_number_literal] = ACTIONS(8654), + [aux_sym_boolean_literal_token1] = ACTIONS(8652), + [aux_sym_boolean_literal_token2] = ACTIONS(8652), + [sym_nothing_literal] = ACTIONS(8652), + [sym_null_literal] = ACTIONS(8652), + [sym_empty_literal] = ACTIONS(8652), + [sym_date_literal] = ACTIONS(8654), + [anon_sym_POUND] = ACTIONS(8652), + }, + [STATE(6967)] = { + [sym_identifier] = ACTIONS(9084), + [sym_newline] = ACTIONS(9086), + [anon_sym_COLON] = ACTIONS(9086), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9084), + [aux_sym_frm_property_statement_token1] = ACTIONS(9084), + [anon_sym_DOT] = ACTIONS(9084), + [anon_sym_BANG] = ACTIONS(9086), + [aux_sym__attribute_identifier_token1] = ACTIONS(9084), + [aux_sym_option_statement_token3] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9084), + [aux_sym_preprocessor_const_token1] = ACTIONS(9084), + [sym_static_modifier] = ACTIONS(9084), + [sym__dim_keyword] = ACTIONS(9084), + [sym__redim_keyword] = ACTIONS(9084), + [aux_sym_get_accessor_token1] = ACTIONS(9084), + [aux_sym_set_accessor_token1] = ACTIONS(9084), + [aux_sym_const_declaration_token1] = ACTIONS(9084), + [anon_sym_LPAREN] = ACTIONS(9086), + [aux_sym_as_type_clause_token2] = ACTIONS(9084), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9084), + [aux_sym_visibility_token1] = ACTIONS(9084), + [aux_sym_visibility_token2] = ACTIONS(9084), + [aux_sym_elseif_fragment_token1] = ACTIONS(9084), + [aux_sym_else_fragment_token1] = ACTIONS(9084), + [aux_sym_select_statement_token1] = ACTIONS(9084), + [aux_sym__for_header_token1] = ACTIONS(9084), + [aux_sym_do_statement_token1] = ACTIONS(9084), + [aux_sym_do_statement_token2] = ACTIONS(9084), + [aux_sym_do_condition_token1] = ACTIONS(9084), + [aux_sym_with_statement_token1] = ACTIONS(9084), + [aux_sym_exit_statement_token1] = ACTIONS(9084), + [sym_end_statement] = ACTIONS(9086), + [aux_sym_on_goto_statement_token1] = ACTIONS(9084), + [aux_sym_on_goto_statement_token2] = ACTIONS(9084), + [aux_sym_on_error_statement_token2] = ACTIONS(9084), + [sym__ambiguous_redim_statement] = ACTIONS(9086), + [aux_sym_erase_statement_token1] = ACTIONS(9084), + [aux_sym_open_statement_token1] = ACTIONS(9084), + [aux_sym_file_mode_token2] = ACTIONS(9084), + [aux_sym_file_access_token2] = ACTIONS(9084), + [aux_sym_file_lock_token2] = ACTIONS(9084), + [aux_sym_print_statement_token1] = ACTIONS(9084), + [anon_sym_PLUS] = ACTIONS(9086), + [anon_sym_DASH] = ACTIONS(9084), + [anon_sym_QMARK] = ACTIONS(9086), + [aux_sym_close_statement_token1] = ACTIONS(9084), + [aux_sym_put_statement_token1] = ACTIONS(9084), + [aux_sym_unlock_statement_token1] = ACTIONS(9084), + [aux_sym_seek_statement_token1] = ACTIONS(9084), + [sym_reset_statement] = ACTIONS(9084), + [aux_sym_raise_event_statement_token1] = ACTIONS(9084), + [sym_stop_statement] = ACTIONS(9084), + [sym_beep_statement] = ACTIONS(9084), + [aux_sym_unload_statement_token1] = ACTIONS(9084), + [aux_sym_def_type_statement_token1] = ACTIONS(9084), + [aux_sym_def_type_statement_token2] = ACTIONS(9084), + [aux_sym_def_type_statement_token3] = ACTIONS(9084), + [aux_sym_def_type_statement_token4] = ACTIONS(9084), + [aux_sym_def_type_statement_token5] = ACTIONS(9084), + [aux_sym_def_type_statement_token6] = ACTIONS(9084), + [aux_sym_def_type_statement_token7] = ACTIONS(9084), + [aux_sym_def_type_statement_token8] = ACTIONS(9084), + [aux_sym_def_type_statement_token9] = ACTIONS(9084), + [aux_sym_def_type_statement_token10] = ACTIONS(9084), + [aux_sym_def_type_statement_token11] = ACTIONS(9084), + [aux_sym_def_type_statement_token12] = ACTIONS(9084), + [aux_sym_def_type_statement_token13] = ACTIONS(9084), + [aux_sym_def_type_statement_token14] = ACTIONS(9084), + [aux_sym_call_statement_token1] = ACTIONS(9084), + [sym__ambiguous_call_statement] = ACTIONS(9084), + [aux_sym_addressof_expression_token1] = ACTIONS(9084), + [aux_sym_type_of_expression_token1] = ACTIONS(9084), + [aux_sym_unary_expression_token1] = ACTIONS(9084), + [sym_string_literal] = ACTIONS(9086), + [sym_number_literal] = ACTIONS(9086), + [aux_sym_boolean_literal_token1] = ACTIONS(9084), + [aux_sym_boolean_literal_token2] = ACTIONS(9084), + [sym_nothing_literal] = ACTIONS(9084), + [sym_null_literal] = ACTIONS(9084), + [sym_empty_literal] = ACTIONS(9084), + [sym_date_literal] = ACTIONS(9086), + [anon_sym_POUND] = ACTIONS(9084), + }, + [STATE(6968)] = { + [sym_identifier] = ACTIONS(9114), + [sym_newline] = ACTIONS(9116), + [anon_sym_COLON] = ACTIONS(9116), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9114), + [aux_sym_frm_property_statement_token1] = ACTIONS(9114), + [anon_sym_DOT] = ACTIONS(9114), + [anon_sym_BANG] = ACTIONS(9116), + [aux_sym__attribute_identifier_token1] = ACTIONS(9114), + [aux_sym_option_statement_token3] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9114), + [aux_sym_preprocessor_const_token1] = ACTIONS(9114), + [sym_static_modifier] = ACTIONS(9114), + [sym__dim_keyword] = ACTIONS(9114), + [sym__redim_keyword] = ACTIONS(9114), + [aux_sym_get_accessor_token1] = ACTIONS(9114), + [aux_sym_set_accessor_token1] = ACTIONS(9114), + [aux_sym_const_declaration_token1] = ACTIONS(9114), + [anon_sym_LPAREN] = ACTIONS(9116), + [aux_sym_as_type_clause_token2] = ACTIONS(9114), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9114), + [aux_sym_visibility_token1] = ACTIONS(9114), + [aux_sym_visibility_token2] = ACTIONS(9114), + [aux_sym_elseif_fragment_token1] = ACTIONS(9114), + [aux_sym_else_fragment_token1] = ACTIONS(9114), + [aux_sym_select_statement_token1] = ACTIONS(9114), + [aux_sym__for_header_token1] = ACTIONS(9114), + [aux_sym_do_statement_token1] = ACTIONS(9114), + [aux_sym_do_condition_token1] = ACTIONS(9114), + [aux_sym_with_statement_token1] = ACTIONS(9114), + [aux_sym_exit_statement_token1] = ACTIONS(9114), + [sym_end_statement] = ACTIONS(9116), + [aux_sym_on_goto_statement_token1] = ACTIONS(9114), + [aux_sym_on_goto_statement_token2] = ACTIONS(9114), + [aux_sym_on_error_statement_token2] = ACTIONS(9114), + [sym__ambiguous_redim_statement] = ACTIONS(9116), + [aux_sym_erase_statement_token1] = ACTIONS(9114), + [aux_sym_open_statement_token1] = ACTIONS(9114), + [aux_sym_file_mode_token2] = ACTIONS(9114), + [aux_sym_file_access_token2] = ACTIONS(9114), + [aux_sym_file_lock_token2] = ACTIONS(9114), + [aux_sym_print_statement_token1] = ACTIONS(9114), + [anon_sym_PLUS] = ACTIONS(9116), + [anon_sym_DASH] = ACTIONS(9114), + [anon_sym_QMARK] = ACTIONS(9116), + [aux_sym_close_statement_token1] = ACTIONS(9114), + [aux_sym_put_statement_token1] = ACTIONS(9114), + [aux_sym_unlock_statement_token1] = ACTIONS(9114), + [aux_sym_seek_statement_token1] = ACTIONS(9114), + [sym_reset_statement] = ACTIONS(9114), + [aux_sym_raise_event_statement_token1] = ACTIONS(9114), + [sym_stop_statement] = ACTIONS(9114), + [sym_beep_statement] = ACTIONS(9114), + [aux_sym_unload_statement_token1] = ACTIONS(9114), + [aux_sym_def_type_statement_token1] = ACTIONS(9114), + [aux_sym_def_type_statement_token2] = ACTIONS(9114), + [aux_sym_def_type_statement_token3] = ACTIONS(9114), + [aux_sym_def_type_statement_token4] = ACTIONS(9114), + [aux_sym_def_type_statement_token5] = ACTIONS(9114), + [aux_sym_def_type_statement_token6] = ACTIONS(9114), + [aux_sym_def_type_statement_token7] = ACTIONS(9114), + [aux_sym_def_type_statement_token8] = ACTIONS(9114), + [aux_sym_def_type_statement_token9] = ACTIONS(9114), + [aux_sym_def_type_statement_token10] = ACTIONS(9114), + [aux_sym_def_type_statement_token11] = ACTIONS(9114), + [aux_sym_def_type_statement_token12] = ACTIONS(9114), + [aux_sym_def_type_statement_token13] = ACTIONS(9114), + [aux_sym_def_type_statement_token14] = ACTIONS(9114), + [aux_sym_call_statement_token1] = ACTIONS(9114), + [sym__ambiguous_call_statement] = ACTIONS(9114), + [aux_sym_addressof_expression_token1] = ACTIONS(9114), + [aux_sym_type_of_expression_token1] = ACTIONS(9114), + [aux_sym_unary_expression_token1] = ACTIONS(9114), + [sym_string_literal] = ACTIONS(9116), + [sym_number_literal] = ACTIONS(9116), + [aux_sym_boolean_literal_token1] = ACTIONS(9114), + [aux_sym_boolean_literal_token2] = ACTIONS(9114), + [sym_nothing_literal] = ACTIONS(9114), + [sym_null_literal] = ACTIONS(9114), + [sym_empty_literal] = ACTIONS(9114), + [sym_date_literal] = ACTIONS(9116), + [anon_sym_POUND] = ACTIONS(9114), + }, + [STATE(6969)] = { + [sym_identifier] = ACTIONS(9455), + [sym_newline] = ACTIONS(9457), + [anon_sym_COLON] = ACTIONS(9457), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9455), + [aux_sym_frm_property_statement_token1] = ACTIONS(9455), + [anon_sym_DOT] = ACTIONS(9455), + [anon_sym_BANG] = ACTIONS(9457), + [aux_sym__attribute_identifier_token1] = ACTIONS(9455), + [aux_sym_option_statement_token3] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9455), + [aux_sym_preprocessor_const_token1] = ACTIONS(9455), + [sym_static_modifier] = ACTIONS(9455), + [sym__dim_keyword] = ACTIONS(9455), + [sym__redim_keyword] = ACTIONS(9455), + [aux_sym_get_accessor_token1] = ACTIONS(9455), + [aux_sym_set_accessor_token1] = ACTIONS(9455), + [aux_sym_const_declaration_token1] = ACTIONS(9455), + [anon_sym_LPAREN] = ACTIONS(9457), + [aux_sym_as_type_clause_token2] = ACTIONS(9455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9455), + [aux_sym_visibility_token1] = ACTIONS(9455), + [aux_sym_visibility_token2] = ACTIONS(9455), + [aux_sym_elseif_fragment_token1] = ACTIONS(9455), + [aux_sym_else_fragment_token1] = ACTIONS(9455), + [aux_sym_select_statement_token1] = ACTIONS(9455), + [aux_sym__for_header_token1] = ACTIONS(9455), + [aux_sym_do_statement_token1] = ACTIONS(9455), + [aux_sym_do_condition_token1] = ACTIONS(9455), + [aux_sym_while_statement_token1] = ACTIONS(9455), + [aux_sym_with_statement_token1] = ACTIONS(9455), + [aux_sym_exit_statement_token1] = ACTIONS(9455), + [sym_end_statement] = ACTIONS(9457), + [aux_sym_on_goto_statement_token1] = ACTIONS(9455), + [aux_sym_on_goto_statement_token2] = ACTIONS(9455), + [aux_sym_on_error_statement_token2] = ACTIONS(9455), + [sym__ambiguous_redim_statement] = ACTIONS(9457), + [aux_sym_erase_statement_token1] = ACTIONS(9455), + [aux_sym_open_statement_token1] = ACTIONS(9455), + [aux_sym_file_mode_token2] = ACTIONS(9455), + [aux_sym_file_access_token2] = ACTIONS(9455), + [aux_sym_file_lock_token2] = ACTIONS(9455), + [aux_sym_print_statement_token1] = ACTIONS(9455), + [anon_sym_PLUS] = ACTIONS(9457), + [anon_sym_DASH] = ACTIONS(9455), + [anon_sym_QMARK] = ACTIONS(9457), + [aux_sym_close_statement_token1] = ACTIONS(9455), + [aux_sym_put_statement_token1] = ACTIONS(9455), + [aux_sym_unlock_statement_token1] = ACTIONS(9455), + [aux_sym_seek_statement_token1] = ACTIONS(9455), + [sym_reset_statement] = ACTIONS(9455), + [aux_sym_raise_event_statement_token1] = ACTIONS(9455), + [sym_stop_statement] = ACTIONS(9455), + [sym_beep_statement] = ACTIONS(9455), + [aux_sym_unload_statement_token1] = ACTIONS(9455), + [aux_sym_def_type_statement_token1] = ACTIONS(9455), + [aux_sym_def_type_statement_token2] = ACTIONS(9455), + [aux_sym_def_type_statement_token3] = ACTIONS(9455), + [aux_sym_def_type_statement_token4] = ACTIONS(9455), + [aux_sym_def_type_statement_token5] = ACTIONS(9455), + [aux_sym_def_type_statement_token6] = ACTIONS(9455), + [aux_sym_def_type_statement_token7] = ACTIONS(9455), + [aux_sym_def_type_statement_token8] = ACTIONS(9455), + [aux_sym_def_type_statement_token9] = ACTIONS(9455), + [aux_sym_def_type_statement_token10] = ACTIONS(9455), + [aux_sym_def_type_statement_token11] = ACTIONS(9455), + [aux_sym_def_type_statement_token12] = ACTIONS(9455), + [aux_sym_def_type_statement_token13] = ACTIONS(9455), + [aux_sym_def_type_statement_token14] = ACTIONS(9455), + [aux_sym_call_statement_token1] = ACTIONS(9455), + [sym__ambiguous_call_statement] = ACTIONS(9455), + [aux_sym_addressof_expression_token1] = ACTIONS(9455), + [aux_sym_type_of_expression_token1] = ACTIONS(9455), + [aux_sym_unary_expression_token1] = ACTIONS(9455), + [sym_string_literal] = ACTIONS(9457), + [sym_number_literal] = ACTIONS(9457), + [aux_sym_boolean_literal_token1] = ACTIONS(9455), + [aux_sym_boolean_literal_token2] = ACTIONS(9455), + [sym_nothing_literal] = ACTIONS(9455), + [sym_null_literal] = ACTIONS(9455), + [sym_empty_literal] = ACTIONS(9455), + [sym_date_literal] = ACTIONS(9457), + [anon_sym_POUND] = ACTIONS(9455), + }, + [STATE(6970)] = { + [sym_identifier] = ACTIONS(8717), + [sym_newline] = ACTIONS(8719), + [anon_sym_COLON] = ACTIONS(8719), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8717), + [aux_sym_frm_property_statement_token1] = ACTIONS(8717), + [anon_sym_DOT] = ACTIONS(8717), + [anon_sym_BANG] = ACTIONS(8719), + [aux_sym__attribute_identifier_token1] = ACTIONS(8717), + [aux_sym_option_statement_token3] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8717), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8717), + [aux_sym_preprocessor_const_token1] = ACTIONS(8717), + [sym_static_modifier] = ACTIONS(8717), + [sym__dim_keyword] = ACTIONS(8717), + [sym__redim_keyword] = ACTIONS(8717), + [aux_sym_get_accessor_token1] = ACTIONS(8717), + [aux_sym_set_accessor_token1] = ACTIONS(8717), + [anon_sym_COMMA] = ACTIONS(11170), + [aux_sym_const_declaration_token1] = ACTIONS(8717), + [anon_sym_LPAREN] = ACTIONS(8719), + [aux_sym_as_type_clause_token2] = ACTIONS(8717), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8717), + [aux_sym_visibility_token1] = ACTIONS(8717), + [aux_sym_visibility_token2] = ACTIONS(8717), + [aux_sym_elseif_fragment_token1] = ACTIONS(8717), + [aux_sym_else_fragment_token1] = ACTIONS(8717), + [aux_sym_select_statement_token1] = ACTIONS(8717), + [aux_sym__for_header_token1] = ACTIONS(8717), + [aux_sym_do_statement_token1] = ACTIONS(8717), + [aux_sym_do_condition_token1] = ACTIONS(8717), + [aux_sym_with_statement_token1] = ACTIONS(8717), + [aux_sym_exit_statement_token1] = ACTIONS(8717), + [sym_end_statement] = ACTIONS(8719), + [aux_sym_on_goto_statement_token1] = ACTIONS(8717), + [aux_sym_on_goto_statement_token2] = ACTIONS(8717), + [aux_sym_on_error_statement_token2] = ACTIONS(8717), + [sym__ambiguous_redim_statement] = ACTIONS(8719), + [aux_sym_erase_statement_token1] = ACTIONS(8717), + [aux_sym_open_statement_token1] = ACTIONS(8717), + [aux_sym_file_mode_token2] = ACTIONS(8717), + [aux_sym_file_access_token2] = ACTIONS(8717), + [aux_sym_file_lock_token2] = ACTIONS(8717), + [aux_sym_print_statement_token1] = ACTIONS(8717), + [anon_sym_PLUS] = ACTIONS(8719), + [anon_sym_DASH] = ACTIONS(8717), + [anon_sym_QMARK] = ACTIONS(8719), + [aux_sym_close_statement_token1] = ACTIONS(8717), + [aux_sym_put_statement_token1] = ACTIONS(8717), + [aux_sym_unlock_statement_token1] = ACTIONS(8717), + [aux_sym_seek_statement_token1] = ACTIONS(8717), + [sym_reset_statement] = ACTIONS(8717), + [aux_sym_raise_event_statement_token1] = ACTIONS(8717), + [sym_stop_statement] = ACTIONS(8717), + [sym_beep_statement] = ACTIONS(8717), + [aux_sym_unload_statement_token1] = ACTIONS(8717), + [aux_sym_def_type_statement_token1] = ACTIONS(8717), + [aux_sym_def_type_statement_token2] = ACTIONS(8717), + [aux_sym_def_type_statement_token3] = ACTIONS(8717), + [aux_sym_def_type_statement_token4] = ACTIONS(8717), + [aux_sym_def_type_statement_token5] = ACTIONS(8717), + [aux_sym_def_type_statement_token6] = ACTIONS(8717), + [aux_sym_def_type_statement_token7] = ACTIONS(8717), + [aux_sym_def_type_statement_token8] = ACTIONS(8717), + [aux_sym_def_type_statement_token9] = ACTIONS(8717), + [aux_sym_def_type_statement_token10] = ACTIONS(8717), + [aux_sym_def_type_statement_token11] = ACTIONS(8717), + [aux_sym_def_type_statement_token12] = ACTIONS(8717), + [aux_sym_def_type_statement_token13] = ACTIONS(8717), + [aux_sym_def_type_statement_token14] = ACTIONS(8717), + [aux_sym_call_statement_token1] = ACTIONS(8717), + [sym__ambiguous_call_statement] = ACTIONS(8717), + [aux_sym_addressof_expression_token1] = ACTIONS(8717), + [aux_sym_type_of_expression_token1] = ACTIONS(8717), + [aux_sym_unary_expression_token1] = ACTIONS(8717), + [sym_string_literal] = ACTIONS(8719), + [sym_number_literal] = ACTIONS(8719), + [aux_sym_boolean_literal_token1] = ACTIONS(8717), + [aux_sym_boolean_literal_token2] = ACTIONS(8717), + [sym_nothing_literal] = ACTIONS(8717), + [sym_null_literal] = ACTIONS(8717), + [sym_empty_literal] = ACTIONS(8717), + [sym_date_literal] = ACTIONS(8719), + [anon_sym_POUND] = ACTIONS(8717), + }, + [STATE(6971)] = { + [sym_identifier] = ACTIONS(9118), + [sym_newline] = ACTIONS(9120), + [anon_sym_COLON] = ACTIONS(9120), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9118), + [aux_sym_frm_property_statement_token1] = ACTIONS(9118), + [anon_sym_DOT] = ACTIONS(9118), + [anon_sym_BANG] = ACTIONS(9120), + [aux_sym__attribute_identifier_token1] = ACTIONS(9118), + [aux_sym_option_statement_token3] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9118), + [aux_sym_preprocessor_const_token1] = ACTIONS(9118), + [sym_static_modifier] = ACTIONS(9118), + [sym__dim_keyword] = ACTIONS(9118), + [sym__redim_keyword] = ACTIONS(9118), + [aux_sym_get_accessor_token1] = ACTIONS(9118), + [aux_sym_set_accessor_token1] = ACTIONS(9118), + [aux_sym_const_declaration_token1] = ACTIONS(9118), + [anon_sym_LPAREN] = ACTIONS(9120), + [aux_sym_as_type_clause_token2] = ACTIONS(9118), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9118), + [aux_sym_visibility_token1] = ACTIONS(9118), + [aux_sym_visibility_token2] = ACTIONS(9118), + [aux_sym_elseif_fragment_token1] = ACTIONS(9118), + [aux_sym_else_fragment_token1] = ACTIONS(9118), + [aux_sym_select_statement_token1] = ACTIONS(9118), + [aux_sym__for_header_token1] = ACTIONS(9118), + [aux_sym_do_statement_token1] = ACTIONS(9118), + [aux_sym_do_condition_token1] = ACTIONS(9118), + [aux_sym_with_statement_token1] = ACTIONS(9118), + [aux_sym_exit_statement_token1] = ACTIONS(9118), + [sym_end_statement] = ACTIONS(9120), + [aux_sym_on_goto_statement_token1] = ACTIONS(9118), + [aux_sym_on_goto_statement_token2] = ACTIONS(9118), + [aux_sym_on_error_statement_token2] = ACTIONS(9118), + [sym__ambiguous_redim_statement] = ACTIONS(9120), + [aux_sym_erase_statement_token1] = ACTIONS(9118), + [aux_sym_open_statement_token1] = ACTIONS(9118), + [aux_sym_file_mode_token2] = ACTIONS(9118), + [aux_sym_file_access_token2] = ACTIONS(9118), + [aux_sym_file_lock_token2] = ACTIONS(9118), + [aux_sym_print_statement_token1] = ACTIONS(9118), + [anon_sym_PLUS] = ACTIONS(9120), + [anon_sym_DASH] = ACTIONS(9118), + [anon_sym_QMARK] = ACTIONS(9120), + [aux_sym_close_statement_token1] = ACTIONS(9118), + [aux_sym_put_statement_token1] = ACTIONS(9118), + [aux_sym_unlock_statement_token1] = ACTIONS(9118), + [aux_sym_seek_statement_token1] = ACTIONS(9118), + [sym_reset_statement] = ACTIONS(9118), + [aux_sym_raise_event_statement_token1] = ACTIONS(9118), + [sym_stop_statement] = ACTIONS(9118), + [sym_beep_statement] = ACTIONS(9118), + [aux_sym_unload_statement_token1] = ACTIONS(9118), + [aux_sym_def_type_statement_token1] = ACTIONS(9118), + [aux_sym_def_type_statement_token2] = ACTIONS(9118), + [aux_sym_def_type_statement_token3] = ACTIONS(9118), + [aux_sym_def_type_statement_token4] = ACTIONS(9118), + [aux_sym_def_type_statement_token5] = ACTIONS(9118), + [aux_sym_def_type_statement_token6] = ACTIONS(9118), + [aux_sym_def_type_statement_token7] = ACTIONS(9118), + [aux_sym_def_type_statement_token8] = ACTIONS(9118), + [aux_sym_def_type_statement_token9] = ACTIONS(9118), + [aux_sym_def_type_statement_token10] = ACTIONS(9118), + [aux_sym_def_type_statement_token11] = ACTIONS(9118), + [aux_sym_def_type_statement_token12] = ACTIONS(9118), + [aux_sym_def_type_statement_token13] = ACTIONS(9118), + [aux_sym_def_type_statement_token14] = ACTIONS(9118), + [aux_sym_call_statement_token1] = ACTIONS(9118), + [sym__ambiguous_call_statement] = ACTIONS(9118), + [aux_sym_addressof_expression_token1] = ACTIONS(9118), + [aux_sym_type_of_expression_token1] = ACTIONS(9118), + [aux_sym_unary_expression_token1] = ACTIONS(9118), + [sym_string_literal] = ACTIONS(9120), + [sym_number_literal] = ACTIONS(9120), + [aux_sym_boolean_literal_token1] = ACTIONS(9118), + [aux_sym_boolean_literal_token2] = ACTIONS(9118), + [sym_nothing_literal] = ACTIONS(9118), + [sym_null_literal] = ACTIONS(9118), + [sym_empty_literal] = ACTIONS(9118), + [sym_date_literal] = ACTIONS(9120), + [anon_sym_POUND] = ACTIONS(9118), + }, + [STATE(6972)] = { + [sym_identifier] = ACTIONS(9443), + [sym_newline] = ACTIONS(9445), + [anon_sym_COLON] = ACTIONS(9445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9443), + [aux_sym_frm_property_statement_token1] = ACTIONS(9443), + [anon_sym_DOT] = ACTIONS(9443), + [anon_sym_BANG] = ACTIONS(9445), + [aux_sym__attribute_identifier_token1] = ACTIONS(9443), + [aux_sym_option_statement_token3] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9443), + [aux_sym_preprocessor_const_token1] = ACTIONS(9443), + [sym_static_modifier] = ACTIONS(9443), + [sym__dim_keyword] = ACTIONS(9443), + [sym__redim_keyword] = ACTIONS(9443), + [aux_sym_get_accessor_token1] = ACTIONS(9443), + [aux_sym_set_accessor_token1] = ACTIONS(9443), + [aux_sym_const_declaration_token1] = ACTIONS(9443), + [anon_sym_LPAREN] = ACTIONS(9445), + [aux_sym_as_type_clause_token2] = ACTIONS(9443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9443), + [aux_sym_visibility_token1] = ACTIONS(9443), + [aux_sym_visibility_token2] = ACTIONS(9443), + [aux_sym_elseif_fragment_token1] = ACTIONS(9443), + [aux_sym_else_fragment_token1] = ACTIONS(9443), + [aux_sym_select_statement_token1] = ACTIONS(9443), + [aux_sym_select_statement_token2] = ACTIONS(9443), + [aux_sym__for_header_token1] = ACTIONS(9443), + [aux_sym_do_statement_token1] = ACTIONS(9443), + [aux_sym_do_condition_token1] = ACTIONS(9443), + [aux_sym_with_statement_token1] = ACTIONS(9443), + [aux_sym_exit_statement_token1] = ACTIONS(9443), + [sym_end_statement] = ACTIONS(9445), + [aux_sym_on_goto_statement_token1] = ACTIONS(9443), + [aux_sym_on_goto_statement_token2] = ACTIONS(9443), + [aux_sym_on_error_statement_token2] = ACTIONS(9443), + [sym__ambiguous_redim_statement] = ACTIONS(9445), + [aux_sym_erase_statement_token1] = ACTIONS(9443), + [aux_sym_open_statement_token1] = ACTIONS(9443), + [aux_sym_file_mode_token2] = ACTIONS(9443), + [aux_sym_file_access_token2] = ACTIONS(9443), + [aux_sym_file_lock_token2] = ACTIONS(9443), + [aux_sym_print_statement_token1] = ACTIONS(9443), + [anon_sym_PLUS] = ACTIONS(9445), + [anon_sym_DASH] = ACTIONS(9443), + [anon_sym_QMARK] = ACTIONS(9445), + [aux_sym_close_statement_token1] = ACTIONS(9443), + [aux_sym_put_statement_token1] = ACTIONS(9443), + [aux_sym_unlock_statement_token1] = ACTIONS(9443), + [aux_sym_seek_statement_token1] = ACTIONS(9443), + [sym_reset_statement] = ACTIONS(9443), + [aux_sym_raise_event_statement_token1] = ACTIONS(9443), + [sym_stop_statement] = ACTIONS(9443), + [sym_beep_statement] = ACTIONS(9443), + [aux_sym_unload_statement_token1] = ACTIONS(9443), + [aux_sym_def_type_statement_token1] = ACTIONS(9443), + [aux_sym_def_type_statement_token2] = ACTIONS(9443), + [aux_sym_def_type_statement_token3] = ACTIONS(9443), + [aux_sym_def_type_statement_token4] = ACTIONS(9443), + [aux_sym_def_type_statement_token5] = ACTIONS(9443), + [aux_sym_def_type_statement_token6] = ACTIONS(9443), + [aux_sym_def_type_statement_token7] = ACTIONS(9443), + [aux_sym_def_type_statement_token8] = ACTIONS(9443), + [aux_sym_def_type_statement_token9] = ACTIONS(9443), + [aux_sym_def_type_statement_token10] = ACTIONS(9443), + [aux_sym_def_type_statement_token11] = ACTIONS(9443), + [aux_sym_def_type_statement_token12] = ACTIONS(9443), + [aux_sym_def_type_statement_token13] = ACTIONS(9443), + [aux_sym_def_type_statement_token14] = ACTIONS(9443), + [aux_sym_call_statement_token1] = ACTIONS(9443), + [sym__ambiguous_call_statement] = ACTIONS(9443), + [aux_sym_addressof_expression_token1] = ACTIONS(9443), + [aux_sym_type_of_expression_token1] = ACTIONS(9443), + [aux_sym_unary_expression_token1] = ACTIONS(9443), + [sym_string_literal] = ACTIONS(9445), + [sym_number_literal] = ACTIONS(9445), + [aux_sym_boolean_literal_token1] = ACTIONS(9443), + [aux_sym_boolean_literal_token2] = ACTIONS(9443), + [sym_nothing_literal] = ACTIONS(9443), + [sym_null_literal] = ACTIONS(9443), + [sym_empty_literal] = ACTIONS(9443), + [sym_date_literal] = ACTIONS(9445), + [anon_sym_POUND] = ACTIONS(9443), + }, + [STATE(6973)] = { + [sym_identifier] = ACTIONS(9658), + [sym_newline] = ACTIONS(9660), + [anon_sym_COLON] = ACTIONS(9660), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9658), + [aux_sym_frm_property_statement_token1] = ACTIONS(9658), + [anon_sym_DOT] = ACTIONS(9658), + [anon_sym_BANG] = ACTIONS(9660), + [aux_sym__attribute_identifier_token1] = ACTIONS(9658), + [aux_sym_option_statement_token3] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9658), + [aux_sym_preprocessor_const_token1] = ACTIONS(9658), + [sym_static_modifier] = ACTIONS(9658), + [sym__dim_keyword] = ACTIONS(9658), + [sym__redim_keyword] = ACTIONS(9658), + [aux_sym_get_accessor_token1] = ACTIONS(9658), + [aux_sym_set_accessor_token1] = ACTIONS(9658), + [aux_sym_const_declaration_token1] = ACTIONS(9658), + [anon_sym_LPAREN] = ACTIONS(9660), + [aux_sym_as_type_clause_token2] = ACTIONS(9658), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9658), + [aux_sym_visibility_token1] = ACTIONS(9658), + [aux_sym_visibility_token2] = ACTIONS(9658), + [aux_sym_elseif_fragment_token1] = ACTIONS(9658), + [aux_sym_else_fragment_token1] = ACTIONS(9658), + [aux_sym_select_statement_token1] = ACTIONS(9658), + [aux_sym__for_header_token1] = ACTIONS(9658), + [aux_sym_do_statement_token1] = ACTIONS(9658), + [aux_sym_do_condition_token1] = ACTIONS(9658), + [aux_sym_with_statement_token1] = ACTIONS(9658), + [aux_sym_exit_statement_token1] = ACTIONS(9658), + [sym_end_statement] = ACTIONS(9660), + [aux_sym_on_goto_statement_token1] = ACTIONS(9658), + [aux_sym_on_goto_statement_token2] = ACTIONS(9658), + [aux_sym_on_error_statement_token2] = ACTIONS(9658), + [sym__ambiguous_redim_statement] = ACTIONS(9660), + [aux_sym_erase_statement_token1] = ACTIONS(9658), + [aux_sym_open_statement_token1] = ACTIONS(9658), + [aux_sym_file_mode_token2] = ACTIONS(9658), + [aux_sym_file_access_token2] = ACTIONS(9658), + [aux_sym_file_lock_token2] = ACTIONS(9658), + [aux_sym_print_statement_token1] = ACTIONS(9658), + [anon_sym_PLUS] = ACTIONS(9660), + [anon_sym_DASH] = ACTIONS(9658), + [anon_sym_QMARK] = ACTIONS(9660), + [aux_sym_close_statement_token1] = ACTIONS(9658), + [aux_sym_put_statement_token1] = ACTIONS(9658), + [aux_sym_unlock_statement_token1] = ACTIONS(9658), + [aux_sym_seek_statement_token1] = ACTIONS(9658), + [sym_reset_statement] = ACTIONS(9658), + [aux_sym_raise_event_statement_token1] = ACTIONS(9658), + [sym_stop_statement] = ACTIONS(9658), + [sym_beep_statement] = ACTIONS(9658), + [aux_sym_unload_statement_token1] = ACTIONS(9658), + [aux_sym_def_type_statement_token1] = ACTIONS(9658), + [aux_sym_def_type_statement_token2] = ACTIONS(9658), + [aux_sym_def_type_statement_token3] = ACTIONS(9658), + [aux_sym_def_type_statement_token4] = ACTIONS(9658), + [aux_sym_def_type_statement_token5] = ACTIONS(9658), + [aux_sym_def_type_statement_token6] = ACTIONS(9658), + [aux_sym_def_type_statement_token7] = ACTIONS(9658), + [aux_sym_def_type_statement_token8] = ACTIONS(9658), + [aux_sym_def_type_statement_token9] = ACTIONS(9658), + [aux_sym_def_type_statement_token10] = ACTIONS(9658), + [aux_sym_def_type_statement_token11] = ACTIONS(9658), + [aux_sym_def_type_statement_token12] = ACTIONS(9658), + [aux_sym_def_type_statement_token13] = ACTIONS(9658), + [aux_sym_def_type_statement_token14] = ACTIONS(9658), + [aux_sym_call_statement_token1] = ACTIONS(9658), + [sym__ambiguous_call_statement] = ACTIONS(9658), + [aux_sym_addressof_expression_token1] = ACTIONS(9658), + [aux_sym_type_of_expression_token1] = ACTIONS(9658), + [aux_sym_unary_expression_token1] = ACTIONS(9658), + [sym_string_literal] = ACTIONS(9660), + [sym_number_literal] = ACTIONS(9660), + [aux_sym_boolean_literal_token1] = ACTIONS(9658), + [aux_sym_boolean_literal_token2] = ACTIONS(9658), + [sym_nothing_literal] = ACTIONS(9658), + [sym_null_literal] = ACTIONS(9658), + [sym_empty_literal] = ACTIONS(9658), + [sym_date_literal] = ACTIONS(9660), + [anon_sym_POUND] = ACTIONS(9658), + }, + [STATE(6974)] = { + [sym_identifier] = ACTIONS(8279), + [sym_newline] = ACTIONS(8281), + [anon_sym_COLON] = ACTIONS(8281), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8279), + [aux_sym_frm_property_statement_token1] = ACTIONS(8279), + [anon_sym_DOT] = ACTIONS(8279), + [anon_sym_BANG] = ACTIONS(8281), + [aux_sym__attribute_identifier_token1] = ACTIONS(8279), + [aux_sym_option_statement_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8279), + [aux_sym_preprocessor_const_token1] = ACTIONS(8279), + [sym_static_modifier] = ACTIONS(8279), + [sym__dim_keyword] = ACTIONS(8279), + [sym__redim_keyword] = ACTIONS(8279), + [aux_sym_get_accessor_token1] = ACTIONS(8279), + [aux_sym_set_accessor_token1] = ACTIONS(8279), + [aux_sym_const_declaration_token1] = ACTIONS(8279), + [anon_sym_LPAREN] = ACTIONS(8281), + [aux_sym_as_type_clause_token2] = ACTIONS(8279), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8279), + [aux_sym_visibility_token1] = ACTIONS(8279), + [aux_sym_visibility_token2] = ACTIONS(8279), + [aux_sym_elseif_fragment_token1] = ACTIONS(8279), + [aux_sym_else_fragment_token1] = ACTIONS(8279), + [aux_sym_select_statement_token1] = ACTIONS(8279), + [aux_sym__for_header_token1] = ACTIONS(8279), + [aux_sym_do_statement_token1] = ACTIONS(8279), + [aux_sym_do_condition_token1] = ACTIONS(8279), + [aux_sym_with_statement_token1] = ACTIONS(8279), + [aux_sym_exit_statement_token1] = ACTIONS(8279), + [sym_end_statement] = ACTIONS(8281), + [aux_sym_on_goto_statement_token1] = ACTIONS(8279), + [aux_sym_on_goto_statement_token2] = ACTIONS(8279), + [aux_sym_on_error_statement_token2] = ACTIONS(8279), + [sym__ambiguous_redim_statement] = ACTIONS(8281), + [aux_sym_erase_statement_token1] = ACTIONS(8279), + [aux_sym_open_statement_token1] = ACTIONS(8279), + [aux_sym_file_mode_token2] = ACTIONS(8279), + [aux_sym_file_access_token2] = ACTIONS(8279), + [aux_sym_file_lock_token2] = ACTIONS(8279), + [aux_sym_print_statement_token1] = ACTIONS(8279), + [anon_sym_PLUS] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8279), + [anon_sym_QMARK] = ACTIONS(8281), + [aux_sym_close_statement_token1] = ACTIONS(8279), + [aux_sym_put_statement_token1] = ACTIONS(8279), + [aux_sym_unlock_statement_token1] = ACTIONS(8279), + [aux_sym_seek_statement_token1] = ACTIONS(8279), + [sym_reset_statement] = ACTIONS(8279), + [aux_sym_raise_event_statement_token1] = ACTIONS(8279), + [sym_stop_statement] = ACTIONS(8279), + [sym_beep_statement] = ACTIONS(8279), + [aux_sym_unload_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token2] = ACTIONS(8279), + [aux_sym_def_type_statement_token3] = ACTIONS(8279), + [aux_sym_def_type_statement_token4] = ACTIONS(8279), + [aux_sym_def_type_statement_token5] = ACTIONS(8279), + [aux_sym_def_type_statement_token6] = ACTIONS(8279), + [aux_sym_def_type_statement_token7] = ACTIONS(8279), + [aux_sym_def_type_statement_token8] = ACTIONS(8279), + [aux_sym_def_type_statement_token9] = ACTIONS(8279), + [aux_sym_def_type_statement_token10] = ACTIONS(8279), + [aux_sym_def_type_statement_token11] = ACTIONS(8279), + [aux_sym_def_type_statement_token12] = ACTIONS(8279), + [aux_sym_def_type_statement_token13] = ACTIONS(8279), + [aux_sym_def_type_statement_token14] = ACTIONS(8279), + [aux_sym_call_statement_token1] = ACTIONS(8279), + [sym__ambiguous_call_statement] = ACTIONS(8279), + [aux_sym_addressof_expression_token1] = ACTIONS(8279), + [aux_sym_type_of_expression_token1] = ACTIONS(8279), + [aux_sym_unary_expression_token1] = ACTIONS(8279), + [sym_string_literal] = ACTIONS(8281), + [sym_number_literal] = ACTIONS(8281), + [aux_sym_boolean_literal_token1] = ACTIONS(8279), + [aux_sym_boolean_literal_token2] = ACTIONS(8279), + [sym_nothing_literal] = ACTIONS(8279), + [sym_null_literal] = ACTIONS(8279), + [sym_empty_literal] = ACTIONS(8279), + [sym_date_literal] = ACTIONS(8281), + [anon_sym_POUND] = ACTIONS(8279), + }, + [STATE(6975)] = { + [sym_identifier] = ACTIONS(9662), + [sym_newline] = ACTIONS(9664), + [anon_sym_COLON] = ACTIONS(9664), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9662), + [aux_sym_frm_property_statement_token1] = ACTIONS(9662), + [anon_sym_DOT] = ACTIONS(9662), + [anon_sym_BANG] = ACTIONS(9664), + [aux_sym__attribute_identifier_token1] = ACTIONS(9662), + [aux_sym_option_statement_token3] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9662), + [aux_sym_preprocessor_const_token1] = ACTIONS(9662), + [sym_static_modifier] = ACTIONS(9662), + [sym__dim_keyword] = ACTIONS(9662), + [sym__redim_keyword] = ACTIONS(9662), + [aux_sym_get_accessor_token1] = ACTIONS(9662), + [aux_sym_set_accessor_token1] = ACTIONS(9662), + [aux_sym_const_declaration_token1] = ACTIONS(9662), + [anon_sym_LPAREN] = ACTIONS(9664), + [aux_sym_as_type_clause_token2] = ACTIONS(9662), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9662), + [aux_sym_visibility_token1] = ACTIONS(9662), + [aux_sym_visibility_token2] = ACTIONS(9662), + [aux_sym_elseif_fragment_token1] = ACTIONS(9662), + [aux_sym_else_fragment_token1] = ACTIONS(9662), + [aux_sym_select_statement_token1] = ACTIONS(9662), + [aux_sym_select_statement_token2] = ACTIONS(9662), + [aux_sym__for_header_token1] = ACTIONS(9662), + [aux_sym_do_statement_token1] = ACTIONS(9662), + [aux_sym_do_condition_token1] = ACTIONS(9662), + [aux_sym_with_statement_token1] = ACTIONS(9662), + [aux_sym_exit_statement_token1] = ACTIONS(9662), + [sym_end_statement] = ACTIONS(9664), + [aux_sym_on_goto_statement_token1] = ACTIONS(9662), + [aux_sym_on_goto_statement_token2] = ACTIONS(9662), + [aux_sym_on_error_statement_token2] = ACTIONS(9662), + [sym__ambiguous_redim_statement] = ACTIONS(9664), + [aux_sym_erase_statement_token1] = ACTIONS(9662), + [aux_sym_open_statement_token1] = ACTIONS(9662), + [aux_sym_file_mode_token2] = ACTIONS(9662), + [aux_sym_file_access_token2] = ACTIONS(9662), + [aux_sym_file_lock_token2] = ACTIONS(9662), + [aux_sym_print_statement_token1] = ACTIONS(9662), + [anon_sym_PLUS] = ACTIONS(9664), + [anon_sym_DASH] = ACTIONS(9662), + [anon_sym_QMARK] = ACTIONS(9664), + [aux_sym_close_statement_token1] = ACTIONS(9662), + [aux_sym_put_statement_token1] = ACTIONS(9662), + [aux_sym_unlock_statement_token1] = ACTIONS(9662), + [aux_sym_seek_statement_token1] = ACTIONS(9662), + [sym_reset_statement] = ACTIONS(9662), + [aux_sym_raise_event_statement_token1] = ACTIONS(9662), + [sym_stop_statement] = ACTIONS(9662), + [sym_beep_statement] = ACTIONS(9662), + [aux_sym_unload_statement_token1] = ACTIONS(9662), + [aux_sym_def_type_statement_token1] = ACTIONS(9662), + [aux_sym_def_type_statement_token2] = ACTIONS(9662), + [aux_sym_def_type_statement_token3] = ACTIONS(9662), + [aux_sym_def_type_statement_token4] = ACTIONS(9662), + [aux_sym_def_type_statement_token5] = ACTIONS(9662), + [aux_sym_def_type_statement_token6] = ACTIONS(9662), + [aux_sym_def_type_statement_token7] = ACTIONS(9662), + [aux_sym_def_type_statement_token8] = ACTIONS(9662), + [aux_sym_def_type_statement_token9] = ACTIONS(9662), + [aux_sym_def_type_statement_token10] = ACTIONS(9662), + [aux_sym_def_type_statement_token11] = ACTIONS(9662), + [aux_sym_def_type_statement_token12] = ACTIONS(9662), + [aux_sym_def_type_statement_token13] = ACTIONS(9662), + [aux_sym_def_type_statement_token14] = ACTIONS(9662), + [aux_sym_call_statement_token1] = ACTIONS(9662), + [sym__ambiguous_call_statement] = ACTIONS(9662), + [aux_sym_addressof_expression_token1] = ACTIONS(9662), + [aux_sym_type_of_expression_token1] = ACTIONS(9662), + [aux_sym_unary_expression_token1] = ACTIONS(9662), + [sym_string_literal] = ACTIONS(9664), + [sym_number_literal] = ACTIONS(9664), + [aux_sym_boolean_literal_token1] = ACTIONS(9662), + [aux_sym_boolean_literal_token2] = ACTIONS(9662), + [sym_nothing_literal] = ACTIONS(9662), + [sym_null_literal] = ACTIONS(9662), + [sym_empty_literal] = ACTIONS(9662), + [sym_date_literal] = ACTIONS(9664), + [anon_sym_POUND] = ACTIONS(9662), + }, + [STATE(6976)] = { + [sym_identifier] = ACTIONS(9666), + [sym_newline] = ACTIONS(9668), + [anon_sym_COLON] = ACTIONS(9668), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9666), + [aux_sym_frm_property_statement_token1] = ACTIONS(9666), + [anon_sym_DOT] = ACTIONS(9666), + [anon_sym_BANG] = ACTIONS(9668), + [aux_sym__attribute_identifier_token1] = ACTIONS(9666), + [aux_sym_option_statement_token3] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9666), + [aux_sym_preprocessor_const_token1] = ACTIONS(9666), + [sym_static_modifier] = ACTIONS(9666), + [sym__dim_keyword] = ACTIONS(9666), + [sym__redim_keyword] = ACTIONS(9666), + [aux_sym_get_accessor_token1] = ACTIONS(9666), + [aux_sym_set_accessor_token1] = ACTIONS(9666), + [aux_sym_const_declaration_token1] = ACTIONS(9666), + [anon_sym_LPAREN] = ACTIONS(9668), + [aux_sym_as_type_clause_token2] = ACTIONS(9666), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9666), + [aux_sym_visibility_token1] = ACTIONS(9666), + [aux_sym_visibility_token2] = ACTIONS(9666), + [aux_sym_elseif_fragment_token1] = ACTIONS(9666), + [aux_sym_else_fragment_token1] = ACTIONS(9666), + [aux_sym_select_statement_token1] = ACTIONS(9666), + [aux_sym_select_statement_token2] = ACTIONS(9666), + [aux_sym__for_header_token1] = ACTIONS(9666), + [aux_sym_do_statement_token1] = ACTIONS(9666), + [aux_sym_do_condition_token1] = ACTIONS(9666), + [aux_sym_with_statement_token1] = ACTIONS(9666), + [aux_sym_exit_statement_token1] = ACTIONS(9666), + [sym_end_statement] = ACTIONS(9668), + [aux_sym_on_goto_statement_token1] = ACTIONS(9666), + [aux_sym_on_goto_statement_token2] = ACTIONS(9666), + [aux_sym_on_error_statement_token2] = ACTIONS(9666), + [sym__ambiguous_redim_statement] = ACTIONS(9668), + [aux_sym_erase_statement_token1] = ACTIONS(9666), + [aux_sym_open_statement_token1] = ACTIONS(9666), + [aux_sym_file_mode_token2] = ACTIONS(9666), + [aux_sym_file_access_token2] = ACTIONS(9666), + [aux_sym_file_lock_token2] = ACTIONS(9666), + [aux_sym_print_statement_token1] = ACTIONS(9666), + [anon_sym_PLUS] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(9666), + [anon_sym_QMARK] = ACTIONS(9668), + [aux_sym_close_statement_token1] = ACTIONS(9666), + [aux_sym_put_statement_token1] = ACTIONS(9666), + [aux_sym_unlock_statement_token1] = ACTIONS(9666), + [aux_sym_seek_statement_token1] = ACTIONS(9666), + [sym_reset_statement] = ACTIONS(9666), + [aux_sym_raise_event_statement_token1] = ACTIONS(9666), + [sym_stop_statement] = ACTIONS(9666), + [sym_beep_statement] = ACTIONS(9666), + [aux_sym_unload_statement_token1] = ACTIONS(9666), + [aux_sym_def_type_statement_token1] = ACTIONS(9666), + [aux_sym_def_type_statement_token2] = ACTIONS(9666), + [aux_sym_def_type_statement_token3] = ACTIONS(9666), + [aux_sym_def_type_statement_token4] = ACTIONS(9666), + [aux_sym_def_type_statement_token5] = ACTIONS(9666), + [aux_sym_def_type_statement_token6] = ACTIONS(9666), + [aux_sym_def_type_statement_token7] = ACTIONS(9666), + [aux_sym_def_type_statement_token8] = ACTIONS(9666), + [aux_sym_def_type_statement_token9] = ACTIONS(9666), + [aux_sym_def_type_statement_token10] = ACTIONS(9666), + [aux_sym_def_type_statement_token11] = ACTIONS(9666), + [aux_sym_def_type_statement_token12] = ACTIONS(9666), + [aux_sym_def_type_statement_token13] = ACTIONS(9666), + [aux_sym_def_type_statement_token14] = ACTIONS(9666), + [aux_sym_call_statement_token1] = ACTIONS(9666), + [sym__ambiguous_call_statement] = ACTIONS(9666), + [aux_sym_addressof_expression_token1] = ACTIONS(9666), + [aux_sym_type_of_expression_token1] = ACTIONS(9666), + [aux_sym_unary_expression_token1] = ACTIONS(9666), + [sym_string_literal] = ACTIONS(9668), + [sym_number_literal] = ACTIONS(9668), + [aux_sym_boolean_literal_token1] = ACTIONS(9666), + [aux_sym_boolean_literal_token2] = ACTIONS(9666), + [sym_nothing_literal] = ACTIONS(9666), + [sym_null_literal] = ACTIONS(9666), + [sym_empty_literal] = ACTIONS(9666), + [sym_date_literal] = ACTIONS(9668), + [anon_sym_POUND] = ACTIONS(9666), + }, + [STATE(6977)] = { + [sym_identifier] = ACTIONS(9130), + [sym_newline] = ACTIONS(9132), + [anon_sym_COLON] = ACTIONS(9132), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9130), + [aux_sym_frm_property_statement_token1] = ACTIONS(9130), + [anon_sym_DOT] = ACTIONS(9130), + [anon_sym_BANG] = ACTIONS(9132), + [aux_sym__attribute_identifier_token1] = ACTIONS(9130), + [aux_sym_option_statement_token3] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9130), + [aux_sym_preprocessor_const_token1] = ACTIONS(9130), + [sym_static_modifier] = ACTIONS(9130), + [sym__dim_keyword] = ACTIONS(9130), + [sym__redim_keyword] = ACTIONS(9130), + [aux_sym_get_accessor_token1] = ACTIONS(9130), + [aux_sym_set_accessor_token1] = ACTIONS(9130), + [aux_sym_const_declaration_token1] = ACTIONS(9130), + [anon_sym_LPAREN] = ACTIONS(9132), + [aux_sym_as_type_clause_token2] = ACTIONS(9130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9130), + [aux_sym_visibility_token1] = ACTIONS(9130), + [aux_sym_visibility_token2] = ACTIONS(9130), + [aux_sym_elseif_fragment_token1] = ACTIONS(9130), + [aux_sym_else_fragment_token1] = ACTIONS(9130), + [aux_sym_select_statement_token1] = ACTIONS(9130), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9130), + [aux_sym__for_header_token1] = ACTIONS(9130), + [aux_sym_do_statement_token1] = ACTIONS(9130), + [aux_sym_do_condition_token1] = ACTIONS(9130), + [aux_sym_with_statement_token1] = ACTIONS(9130), + [aux_sym_exit_statement_token1] = ACTIONS(9130), + [sym_end_statement] = ACTIONS(9132), + [aux_sym_on_goto_statement_token1] = ACTIONS(9130), + [aux_sym_on_goto_statement_token2] = ACTIONS(9130), + [aux_sym_on_error_statement_token2] = ACTIONS(9130), + [sym__ambiguous_redim_statement] = ACTIONS(9132), + [aux_sym_erase_statement_token1] = ACTIONS(9130), + [aux_sym_open_statement_token1] = ACTIONS(9130), + [aux_sym_file_mode_token2] = ACTIONS(9130), + [aux_sym_file_access_token2] = ACTIONS(9130), + [aux_sym_file_lock_token2] = ACTIONS(9130), + [aux_sym_print_statement_token1] = ACTIONS(9130), + [anon_sym_PLUS] = ACTIONS(9132), + [anon_sym_DASH] = ACTIONS(9130), + [anon_sym_QMARK] = ACTIONS(9132), + [aux_sym_close_statement_token1] = ACTIONS(9130), + [aux_sym_put_statement_token1] = ACTIONS(9130), + [aux_sym_unlock_statement_token1] = ACTIONS(9130), + [aux_sym_seek_statement_token1] = ACTIONS(9130), + [sym_reset_statement] = ACTIONS(9130), + [aux_sym_raise_event_statement_token1] = ACTIONS(9130), + [sym_stop_statement] = ACTIONS(9130), + [sym_beep_statement] = ACTIONS(9130), + [aux_sym_unload_statement_token1] = ACTIONS(9130), + [aux_sym_def_type_statement_token1] = ACTIONS(9130), + [aux_sym_def_type_statement_token2] = ACTIONS(9130), + [aux_sym_def_type_statement_token3] = ACTIONS(9130), + [aux_sym_def_type_statement_token4] = ACTIONS(9130), + [aux_sym_def_type_statement_token5] = ACTIONS(9130), + [aux_sym_def_type_statement_token6] = ACTIONS(9130), + [aux_sym_def_type_statement_token7] = ACTIONS(9130), + [aux_sym_def_type_statement_token8] = ACTIONS(9130), + [aux_sym_def_type_statement_token9] = ACTIONS(9130), + [aux_sym_def_type_statement_token10] = ACTIONS(9130), + [aux_sym_def_type_statement_token11] = ACTIONS(9130), + [aux_sym_def_type_statement_token12] = ACTIONS(9130), + [aux_sym_def_type_statement_token13] = ACTIONS(9130), + [aux_sym_def_type_statement_token14] = ACTIONS(9130), + [aux_sym_call_statement_token1] = ACTIONS(9130), + [sym__ambiguous_call_statement] = ACTIONS(9130), + [aux_sym_addressof_expression_token1] = ACTIONS(9130), + [aux_sym_type_of_expression_token1] = ACTIONS(9130), + [aux_sym_unary_expression_token1] = ACTIONS(9130), + [sym_string_literal] = ACTIONS(9132), + [sym_number_literal] = ACTIONS(9132), + [aux_sym_boolean_literal_token1] = ACTIONS(9130), + [aux_sym_boolean_literal_token2] = ACTIONS(9130), + [sym_nothing_literal] = ACTIONS(9130), + [sym_null_literal] = ACTIONS(9130), + [sym_empty_literal] = ACTIONS(9130), + [sym_date_literal] = ACTIONS(9132), + [anon_sym_POUND] = ACTIONS(9130), + }, + [STATE(6978)] = { + [sym_identifier] = ACTIONS(9134), + [sym_newline] = ACTIONS(9136), + [anon_sym_COLON] = ACTIONS(9136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9134), + [aux_sym_frm_property_statement_token1] = ACTIONS(9134), + [anon_sym_DOT] = ACTIONS(9134), + [anon_sym_BANG] = ACTIONS(9136), + [aux_sym__attribute_identifier_token1] = ACTIONS(9134), + [aux_sym_option_statement_token3] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9134), + [aux_sym_preprocessor_const_token1] = ACTIONS(9134), + [sym_static_modifier] = ACTIONS(9134), + [sym__dim_keyword] = ACTIONS(9134), + [sym__redim_keyword] = ACTIONS(9134), + [aux_sym_get_accessor_token1] = ACTIONS(9134), + [aux_sym_set_accessor_token1] = ACTIONS(9134), + [aux_sym_const_declaration_token1] = ACTIONS(9134), + [anon_sym_LPAREN] = ACTIONS(9136), + [aux_sym_as_type_clause_token2] = ACTIONS(9134), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9134), + [aux_sym_visibility_token1] = ACTIONS(9134), + [aux_sym_visibility_token2] = ACTIONS(9134), + [aux_sym_elseif_fragment_token1] = ACTIONS(9134), + [aux_sym_else_fragment_token1] = ACTIONS(9134), + [aux_sym_select_statement_token1] = ACTIONS(9134), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9134), + [aux_sym__for_header_token1] = ACTIONS(9134), + [aux_sym_do_statement_token1] = ACTIONS(9134), + [aux_sym_do_condition_token1] = ACTIONS(9134), + [aux_sym_with_statement_token1] = ACTIONS(9134), + [aux_sym_exit_statement_token1] = ACTIONS(9134), + [sym_end_statement] = ACTIONS(9136), + [aux_sym_on_goto_statement_token1] = ACTIONS(9134), + [aux_sym_on_goto_statement_token2] = ACTIONS(9134), + [aux_sym_on_error_statement_token2] = ACTIONS(9134), + [sym__ambiguous_redim_statement] = ACTIONS(9136), + [aux_sym_erase_statement_token1] = ACTIONS(9134), + [aux_sym_open_statement_token1] = ACTIONS(9134), + [aux_sym_file_mode_token2] = ACTIONS(9134), + [aux_sym_file_access_token2] = ACTIONS(9134), + [aux_sym_file_lock_token2] = ACTIONS(9134), + [aux_sym_print_statement_token1] = ACTIONS(9134), + [anon_sym_PLUS] = ACTIONS(9136), + [anon_sym_DASH] = ACTIONS(9134), + [anon_sym_QMARK] = ACTIONS(9136), + [aux_sym_close_statement_token1] = ACTIONS(9134), + [aux_sym_put_statement_token1] = ACTIONS(9134), + [aux_sym_unlock_statement_token1] = ACTIONS(9134), + [aux_sym_seek_statement_token1] = ACTIONS(9134), + [sym_reset_statement] = ACTIONS(9134), + [aux_sym_raise_event_statement_token1] = ACTIONS(9134), + [sym_stop_statement] = ACTIONS(9134), + [sym_beep_statement] = ACTIONS(9134), + [aux_sym_unload_statement_token1] = ACTIONS(9134), + [aux_sym_def_type_statement_token1] = ACTIONS(9134), + [aux_sym_def_type_statement_token2] = ACTIONS(9134), + [aux_sym_def_type_statement_token3] = ACTIONS(9134), + [aux_sym_def_type_statement_token4] = ACTIONS(9134), + [aux_sym_def_type_statement_token5] = ACTIONS(9134), + [aux_sym_def_type_statement_token6] = ACTIONS(9134), + [aux_sym_def_type_statement_token7] = ACTIONS(9134), + [aux_sym_def_type_statement_token8] = ACTIONS(9134), + [aux_sym_def_type_statement_token9] = ACTIONS(9134), + [aux_sym_def_type_statement_token10] = ACTIONS(9134), + [aux_sym_def_type_statement_token11] = ACTIONS(9134), + [aux_sym_def_type_statement_token12] = ACTIONS(9134), + [aux_sym_def_type_statement_token13] = ACTIONS(9134), + [aux_sym_def_type_statement_token14] = ACTIONS(9134), + [aux_sym_call_statement_token1] = ACTIONS(9134), + [sym__ambiguous_call_statement] = ACTIONS(9134), + [aux_sym_addressof_expression_token1] = ACTIONS(9134), + [aux_sym_type_of_expression_token1] = ACTIONS(9134), + [aux_sym_unary_expression_token1] = ACTIONS(9134), + [sym_string_literal] = ACTIONS(9136), + [sym_number_literal] = ACTIONS(9136), + [aux_sym_boolean_literal_token1] = ACTIONS(9134), + [aux_sym_boolean_literal_token2] = ACTIONS(9134), + [sym_nothing_literal] = ACTIONS(9134), + [sym_null_literal] = ACTIONS(9134), + [sym_empty_literal] = ACTIONS(9134), + [sym_date_literal] = ACTIONS(9136), + [anon_sym_POUND] = ACTIONS(9134), + }, + [STATE(6979)] = { + [sym_identifier] = ACTIONS(8283), + [sym_newline] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8283), + [aux_sym_frm_property_statement_token1] = ACTIONS(8283), + [anon_sym_DOT] = ACTIONS(8283), + [anon_sym_BANG] = ACTIONS(8285), + [aux_sym__attribute_identifier_token1] = ACTIONS(8283), + [aux_sym_option_statement_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8283), + [aux_sym_preprocessor_const_token1] = ACTIONS(8283), + [sym_static_modifier] = ACTIONS(8283), + [sym__dim_keyword] = ACTIONS(8283), + [sym__redim_keyword] = ACTIONS(8283), + [aux_sym_get_accessor_token1] = ACTIONS(8283), + [aux_sym_set_accessor_token1] = ACTIONS(8283), + [aux_sym_const_declaration_token1] = ACTIONS(8283), + [anon_sym_LPAREN] = ACTIONS(8285), + [aux_sym_as_type_clause_token2] = ACTIONS(8283), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8283), + [aux_sym_visibility_token1] = ACTIONS(8283), + [aux_sym_visibility_token2] = ACTIONS(8283), + [aux_sym_elseif_fragment_token1] = ACTIONS(8283), + [aux_sym_else_fragment_token1] = ACTIONS(8283), + [aux_sym_select_statement_token1] = ACTIONS(8283), + [aux_sym__for_header_token1] = ACTIONS(8283), + [aux_sym_do_statement_token1] = ACTIONS(8283), + [aux_sym_do_condition_token1] = ACTIONS(8283), + [aux_sym_with_statement_token1] = ACTIONS(8283), + [aux_sym_exit_statement_token1] = ACTIONS(8283), + [sym_end_statement] = ACTIONS(8285), + [aux_sym_on_goto_statement_token1] = ACTIONS(8283), + [aux_sym_on_goto_statement_token2] = ACTIONS(8283), + [aux_sym_on_error_statement_token2] = ACTIONS(8283), + [sym__ambiguous_redim_statement] = ACTIONS(8285), + [aux_sym_erase_statement_token1] = ACTIONS(8283), + [aux_sym_open_statement_token1] = ACTIONS(8283), + [aux_sym_file_mode_token2] = ACTIONS(8283), + [aux_sym_file_access_token2] = ACTIONS(8283), + [aux_sym_file_lock_token2] = ACTIONS(8283), + [aux_sym_print_statement_token1] = ACTIONS(8283), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_DASH] = ACTIONS(8283), + [anon_sym_QMARK] = ACTIONS(8285), + [aux_sym_close_statement_token1] = ACTIONS(8283), + [aux_sym_put_statement_token1] = ACTIONS(8283), + [aux_sym_unlock_statement_token1] = ACTIONS(8283), + [aux_sym_seek_statement_token1] = ACTIONS(8283), + [sym_reset_statement] = ACTIONS(8283), + [aux_sym_raise_event_statement_token1] = ACTIONS(8283), + [sym_stop_statement] = ACTIONS(8283), + [sym_beep_statement] = ACTIONS(8283), + [aux_sym_unload_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token2] = ACTIONS(8283), + [aux_sym_def_type_statement_token3] = ACTIONS(8283), + [aux_sym_def_type_statement_token4] = ACTIONS(8283), + [aux_sym_def_type_statement_token5] = ACTIONS(8283), + [aux_sym_def_type_statement_token6] = ACTIONS(8283), + [aux_sym_def_type_statement_token7] = ACTIONS(8283), + [aux_sym_def_type_statement_token8] = ACTIONS(8283), + [aux_sym_def_type_statement_token9] = ACTIONS(8283), + [aux_sym_def_type_statement_token10] = ACTIONS(8283), + [aux_sym_def_type_statement_token11] = ACTIONS(8283), + [aux_sym_def_type_statement_token12] = ACTIONS(8283), + [aux_sym_def_type_statement_token13] = ACTIONS(8283), + [aux_sym_def_type_statement_token14] = ACTIONS(8283), + [aux_sym_call_statement_token1] = ACTIONS(8283), + [sym__ambiguous_call_statement] = ACTIONS(8283), + [aux_sym_addressof_expression_token1] = ACTIONS(8283), + [aux_sym_type_of_expression_token1] = ACTIONS(8283), + [aux_sym_unary_expression_token1] = ACTIONS(8283), + [sym_string_literal] = ACTIONS(8285), + [sym_number_literal] = ACTIONS(8285), + [aux_sym_boolean_literal_token1] = ACTIONS(8283), + [aux_sym_boolean_literal_token2] = ACTIONS(8283), + [sym_nothing_literal] = ACTIONS(8283), + [sym_null_literal] = ACTIONS(8283), + [sym_empty_literal] = ACTIONS(8283), + [sym_date_literal] = ACTIONS(8285), + [anon_sym_POUND] = ACTIONS(8283), + }, + [STATE(6980)] = { + [sym_argument_list] = STATE(7243), + [sym_identifier] = ACTIONS(8843), + [sym_newline] = ACTIONS(8845), + [anon_sym_COLON] = ACTIONS(8845), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8843), + [aux_sym_frm_property_statement_token1] = ACTIONS(8843), + [anon_sym_DOT] = ACTIONS(8843), + [anon_sym_BANG] = ACTIONS(8845), + [aux_sym__attribute_identifier_token1] = ACTIONS(8843), + [aux_sym_option_statement_token3] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8843), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8843), + [aux_sym_preprocessor_const_token1] = ACTIONS(8843), + [sym_static_modifier] = ACTIONS(8843), + [sym__dim_keyword] = ACTIONS(8843), + [sym__redim_keyword] = ACTIONS(8843), + [aux_sym_get_accessor_token1] = ACTIONS(8843), + [aux_sym_set_accessor_token1] = ACTIONS(8843), + [aux_sym_const_declaration_token1] = ACTIONS(8843), + [anon_sym_LPAREN] = ACTIONS(10897), + [aux_sym_as_type_clause_token2] = ACTIONS(8843), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8843), + [aux_sym_visibility_token1] = ACTIONS(8843), + [aux_sym_visibility_token2] = ACTIONS(8843), + [aux_sym_elseif_fragment_token1] = ACTIONS(8843), + [aux_sym_else_fragment_token1] = ACTIONS(8843), + [aux_sym_select_statement_token1] = ACTIONS(8843), + [aux_sym__for_header_token1] = ACTIONS(8843), + [aux_sym_do_statement_token1] = ACTIONS(8843), + [aux_sym_do_condition_token1] = ACTIONS(8843), + [aux_sym_with_statement_token1] = ACTIONS(8843), + [aux_sym_exit_statement_token1] = ACTIONS(8843), + [sym_end_statement] = ACTIONS(8845), + [aux_sym_on_goto_statement_token1] = ACTIONS(8843), + [aux_sym_on_goto_statement_token2] = ACTIONS(8843), + [aux_sym_on_error_statement_token2] = ACTIONS(8843), + [sym__ambiguous_redim_statement] = ACTIONS(8845), + [aux_sym_erase_statement_token1] = ACTIONS(8843), + [aux_sym_open_statement_token1] = ACTIONS(8843), + [aux_sym_file_mode_token2] = ACTIONS(8843), + [aux_sym_file_access_token2] = ACTIONS(8843), + [aux_sym_file_lock_token2] = ACTIONS(8843), + [aux_sym_print_statement_token1] = ACTIONS(8843), + [anon_sym_PLUS] = ACTIONS(8845), + [anon_sym_DASH] = ACTIONS(8843), + [anon_sym_QMARK] = ACTIONS(8845), + [aux_sym_close_statement_token1] = ACTIONS(8843), + [aux_sym_put_statement_token1] = ACTIONS(8843), + [aux_sym_unlock_statement_token1] = ACTIONS(8843), + [aux_sym_seek_statement_token1] = ACTIONS(8843), + [sym_reset_statement] = ACTIONS(8843), + [aux_sym_raise_event_statement_token1] = ACTIONS(8843), + [sym_stop_statement] = ACTIONS(8843), + [sym_beep_statement] = ACTIONS(8843), + [aux_sym_unload_statement_token1] = ACTIONS(8843), + [aux_sym_def_type_statement_token1] = ACTIONS(8843), + [aux_sym_def_type_statement_token2] = ACTIONS(8843), + [aux_sym_def_type_statement_token3] = ACTIONS(8843), + [aux_sym_def_type_statement_token4] = ACTIONS(8843), + [aux_sym_def_type_statement_token5] = ACTIONS(8843), + [aux_sym_def_type_statement_token6] = ACTIONS(8843), + [aux_sym_def_type_statement_token7] = ACTIONS(8843), + [aux_sym_def_type_statement_token8] = ACTIONS(8843), + [aux_sym_def_type_statement_token9] = ACTIONS(8843), + [aux_sym_def_type_statement_token10] = ACTIONS(8843), + [aux_sym_def_type_statement_token11] = ACTIONS(8843), + [aux_sym_def_type_statement_token12] = ACTIONS(8843), + [aux_sym_def_type_statement_token13] = ACTIONS(8843), + [aux_sym_def_type_statement_token14] = ACTIONS(8843), + [aux_sym_call_statement_token1] = ACTIONS(8843), + [sym__ambiguous_call_statement] = ACTIONS(8843), + [aux_sym_addressof_expression_token1] = ACTIONS(8843), + [aux_sym_type_of_expression_token1] = ACTIONS(8843), + [aux_sym_unary_expression_token1] = ACTIONS(8843), + [sym_string_literal] = ACTIONS(8845), + [sym_number_literal] = ACTIONS(8845), + [aux_sym_boolean_literal_token1] = ACTIONS(8843), + [aux_sym_boolean_literal_token2] = ACTIONS(8843), + [sym_nothing_literal] = ACTIONS(8843), + [sym_null_literal] = ACTIONS(8843), + [sym_empty_literal] = ACTIONS(8843), + [sym_date_literal] = ACTIONS(8845), + [anon_sym_POUND] = ACTIONS(8843), + }, + [STATE(6981)] = { + [sym_identifier] = ACTIONS(9088), + [sym_newline] = ACTIONS(9090), + [anon_sym_COLON] = ACTIONS(9090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9088), + [aux_sym_frm_property_statement_token1] = ACTIONS(9088), + [anon_sym_DOT] = ACTIONS(9088), + [anon_sym_BANG] = ACTIONS(9090), + [aux_sym__attribute_identifier_token1] = ACTIONS(9088), + [aux_sym_option_statement_token3] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9088), + [aux_sym_preprocessor_const_token1] = ACTIONS(9088), + [sym_static_modifier] = ACTIONS(9088), + [sym__dim_keyword] = ACTIONS(9088), + [sym__redim_keyword] = ACTIONS(9088), + [aux_sym_get_accessor_token1] = ACTIONS(9088), + [aux_sym_set_accessor_token1] = ACTIONS(9088), + [aux_sym_const_declaration_token1] = ACTIONS(9088), + [anon_sym_LPAREN] = ACTIONS(9090), + [aux_sym_as_type_clause_token2] = ACTIONS(9088), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9088), + [aux_sym_visibility_token1] = ACTIONS(9088), + [aux_sym_visibility_token2] = ACTIONS(9088), + [aux_sym_elseif_fragment_token1] = ACTIONS(9088), + [aux_sym_else_fragment_token1] = ACTIONS(9088), + [aux_sym_select_statement_token1] = ACTIONS(9088), + [aux_sym__for_header_token1] = ACTIONS(9088), + [aux_sym_do_statement_token1] = ACTIONS(9088), + [aux_sym_do_statement_token2] = ACTIONS(9088), + [aux_sym_do_condition_token1] = ACTIONS(9088), + [aux_sym_with_statement_token1] = ACTIONS(9088), + [aux_sym_exit_statement_token1] = ACTIONS(9088), + [sym_end_statement] = ACTIONS(9090), + [aux_sym_on_goto_statement_token1] = ACTIONS(9088), + [aux_sym_on_goto_statement_token2] = ACTIONS(9088), + [aux_sym_on_error_statement_token2] = ACTIONS(9088), + [sym__ambiguous_redim_statement] = ACTIONS(9090), + [aux_sym_erase_statement_token1] = ACTIONS(9088), + [aux_sym_open_statement_token1] = ACTIONS(9088), + [aux_sym_file_mode_token2] = ACTIONS(9088), + [aux_sym_file_access_token2] = ACTIONS(9088), + [aux_sym_file_lock_token2] = ACTIONS(9088), + [aux_sym_print_statement_token1] = ACTIONS(9088), + [anon_sym_PLUS] = ACTIONS(9090), + [anon_sym_DASH] = ACTIONS(9088), + [anon_sym_QMARK] = ACTIONS(9090), + [aux_sym_close_statement_token1] = ACTIONS(9088), + [aux_sym_put_statement_token1] = ACTIONS(9088), + [aux_sym_unlock_statement_token1] = ACTIONS(9088), + [aux_sym_seek_statement_token1] = ACTIONS(9088), + [sym_reset_statement] = ACTIONS(9088), + [aux_sym_raise_event_statement_token1] = ACTIONS(9088), + [sym_stop_statement] = ACTIONS(9088), + [sym_beep_statement] = ACTIONS(9088), + [aux_sym_unload_statement_token1] = ACTIONS(9088), + [aux_sym_def_type_statement_token1] = ACTIONS(9088), + [aux_sym_def_type_statement_token2] = ACTIONS(9088), + [aux_sym_def_type_statement_token3] = ACTIONS(9088), + [aux_sym_def_type_statement_token4] = ACTIONS(9088), + [aux_sym_def_type_statement_token5] = ACTIONS(9088), + [aux_sym_def_type_statement_token6] = ACTIONS(9088), + [aux_sym_def_type_statement_token7] = ACTIONS(9088), + [aux_sym_def_type_statement_token8] = ACTIONS(9088), + [aux_sym_def_type_statement_token9] = ACTIONS(9088), + [aux_sym_def_type_statement_token10] = ACTIONS(9088), + [aux_sym_def_type_statement_token11] = ACTIONS(9088), + [aux_sym_def_type_statement_token12] = ACTIONS(9088), + [aux_sym_def_type_statement_token13] = ACTIONS(9088), + [aux_sym_def_type_statement_token14] = ACTIONS(9088), + [aux_sym_call_statement_token1] = ACTIONS(9088), + [sym__ambiguous_call_statement] = ACTIONS(9088), + [aux_sym_addressof_expression_token1] = ACTIONS(9088), + [aux_sym_type_of_expression_token1] = ACTIONS(9088), + [aux_sym_unary_expression_token1] = ACTIONS(9088), + [sym_string_literal] = ACTIONS(9090), + [sym_number_literal] = ACTIONS(9090), + [aux_sym_boolean_literal_token1] = ACTIONS(9088), + [aux_sym_boolean_literal_token2] = ACTIONS(9088), + [sym_nothing_literal] = ACTIONS(9088), + [sym_null_literal] = ACTIONS(9088), + [sym_empty_literal] = ACTIONS(9088), + [sym_date_literal] = ACTIONS(9090), + [anon_sym_POUND] = ACTIONS(9088), + }, + [STATE(6982)] = { + [sym_identifier] = ACTIONS(9016), + [sym_newline] = ACTIONS(9018), + [anon_sym_COLON] = ACTIONS(9018), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9016), + [aux_sym_frm_property_statement_token1] = ACTIONS(9016), + [anon_sym_DOT] = ACTIONS(9016), + [anon_sym_BANG] = ACTIONS(9018), + [aux_sym__attribute_identifier_token1] = ACTIONS(9016), + [aux_sym_option_statement_token3] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9016), + [aux_sym_preprocessor_const_token1] = ACTIONS(9016), + [sym_static_modifier] = ACTIONS(9016), + [sym__dim_keyword] = ACTIONS(9016), + [sym__redim_keyword] = ACTIONS(9016), + [aux_sym_get_accessor_token1] = ACTIONS(9016), + [aux_sym_set_accessor_token1] = ACTIONS(9016), + [aux_sym_const_declaration_token1] = ACTIONS(9016), + [anon_sym_LPAREN] = ACTIONS(9018), + [aux_sym_as_type_clause_token2] = ACTIONS(9016), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9016), + [aux_sym_visibility_token1] = ACTIONS(9016), + [aux_sym_visibility_token2] = ACTIONS(9016), + [aux_sym_elseif_fragment_token1] = ACTIONS(9016), + [aux_sym_else_fragment_token1] = ACTIONS(9016), + [aux_sym_select_statement_token1] = ACTIONS(9016), + [aux_sym__for_header_token1] = ACTIONS(9016), + [aux_sym_do_statement_token1] = ACTIONS(9016), + [aux_sym_do_condition_token1] = ACTIONS(9016), + [aux_sym_with_statement_token1] = ACTIONS(9016), + [aux_sym_exit_statement_token1] = ACTIONS(9016), + [sym_end_statement] = ACTIONS(9018), + [aux_sym_on_goto_statement_token1] = ACTIONS(9016), + [aux_sym_on_goto_statement_token2] = ACTIONS(9016), + [aux_sym_on_error_statement_token2] = ACTIONS(9016), + [sym__ambiguous_redim_statement] = ACTIONS(9018), + [aux_sym_erase_statement_token1] = ACTIONS(9016), + [aux_sym_open_statement_token1] = ACTIONS(9016), + [aux_sym_file_mode_token2] = ACTIONS(9016), + [aux_sym_file_access_token2] = ACTIONS(9016), + [aux_sym_file_lock_token2] = ACTIONS(9016), + [aux_sym_print_statement_token1] = ACTIONS(9016), + [anon_sym_PLUS] = ACTIONS(9018), + [anon_sym_DASH] = ACTIONS(9016), + [anon_sym_QMARK] = ACTIONS(9018), + [aux_sym_close_statement_token1] = ACTIONS(9016), + [aux_sym_put_statement_token1] = ACTIONS(9016), + [aux_sym_unlock_statement_token1] = ACTIONS(9016), + [aux_sym_seek_statement_token1] = ACTIONS(9016), + [sym_reset_statement] = ACTIONS(9016), + [aux_sym_raise_event_statement_token1] = ACTIONS(9016), + [sym_stop_statement] = ACTIONS(9016), + [sym_beep_statement] = ACTIONS(9016), + [aux_sym_unload_statement_token1] = ACTIONS(9016), + [aux_sym_def_type_statement_token1] = ACTIONS(9016), + [aux_sym_def_type_statement_token2] = ACTIONS(9016), + [aux_sym_def_type_statement_token3] = ACTIONS(9016), + [aux_sym_def_type_statement_token4] = ACTIONS(9016), + [aux_sym_def_type_statement_token5] = ACTIONS(9016), + [aux_sym_def_type_statement_token6] = ACTIONS(9016), + [aux_sym_def_type_statement_token7] = ACTIONS(9016), + [aux_sym_def_type_statement_token8] = ACTIONS(9016), + [aux_sym_def_type_statement_token9] = ACTIONS(9016), + [aux_sym_def_type_statement_token10] = ACTIONS(9016), + [aux_sym_def_type_statement_token11] = ACTIONS(9016), + [aux_sym_def_type_statement_token12] = ACTIONS(9016), + [aux_sym_def_type_statement_token13] = ACTIONS(9016), + [aux_sym_def_type_statement_token14] = ACTIONS(9016), + [aux_sym_call_statement_token1] = ACTIONS(9016), + [sym__ambiguous_call_statement] = ACTIONS(9016), + [aux_sym_addressof_expression_token1] = ACTIONS(9016), + [aux_sym_type_of_expression_token1] = ACTIONS(9016), + [aux_sym_unary_expression_token1] = ACTIONS(9016), + [sym_string_literal] = ACTIONS(9018), + [sym_number_literal] = ACTIONS(9018), + [aux_sym_boolean_literal_token1] = ACTIONS(9016), + [aux_sym_boolean_literal_token2] = ACTIONS(9016), + [sym_nothing_literal] = ACTIONS(9016), + [sym_null_literal] = ACTIONS(9016), + [sym_empty_literal] = ACTIONS(9016), + [sym_date_literal] = ACTIONS(9018), + [anon_sym_POUND] = ACTIONS(9016), + }, + [STATE(6983)] = { + [sym_identifier] = ACTIONS(8935), + [sym_newline] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(8937), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8935), + [aux_sym_frm_property_statement_token1] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_BANG] = ACTIONS(8937), + [aux_sym__attribute_identifier_token1] = ACTIONS(8935), + [aux_sym_option_statement_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8935), + [aux_sym_preprocessor_const_token1] = ACTIONS(8935), + [sym_static_modifier] = ACTIONS(8935), + [sym__dim_keyword] = ACTIONS(8935), + [sym__redim_keyword] = ACTIONS(8935), + [aux_sym_get_accessor_token1] = ACTIONS(8935), + [aux_sym_set_accessor_token1] = ACTIONS(8935), + [aux_sym_const_declaration_token1] = ACTIONS(8935), + [anon_sym_LPAREN] = ACTIONS(8937), + [aux_sym_as_type_clause_token2] = ACTIONS(8935), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8935), + [aux_sym_visibility_token1] = ACTIONS(8935), + [aux_sym_visibility_token2] = ACTIONS(8935), + [aux_sym_elseif_fragment_token1] = ACTIONS(8935), + [aux_sym_else_fragment_token1] = ACTIONS(8935), + [aux_sym_select_statement_token1] = ACTIONS(8935), + [aux_sym__for_header_token1] = ACTIONS(8935), + [aux_sym_do_statement_token1] = ACTIONS(8935), + [aux_sym_do_condition_token1] = ACTIONS(8935), + [aux_sym_while_statement_token1] = ACTIONS(8935), + [aux_sym_with_statement_token1] = ACTIONS(8935), + [aux_sym_exit_statement_token1] = ACTIONS(8935), + [sym_end_statement] = ACTIONS(8937), + [aux_sym_on_goto_statement_token1] = ACTIONS(8935), + [aux_sym_on_goto_statement_token2] = ACTIONS(8935), + [aux_sym_on_error_statement_token2] = ACTIONS(8935), + [sym__ambiguous_redim_statement] = ACTIONS(8937), + [aux_sym_erase_statement_token1] = ACTIONS(8935), + [aux_sym_open_statement_token1] = ACTIONS(8935), + [aux_sym_file_mode_token2] = ACTIONS(8935), + [aux_sym_file_access_token2] = ACTIONS(8935), + [aux_sym_file_lock_token2] = ACTIONS(8935), + [aux_sym_print_statement_token1] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [aux_sym_close_statement_token1] = ACTIONS(8935), + [aux_sym_put_statement_token1] = ACTIONS(8935), + [aux_sym_unlock_statement_token1] = ACTIONS(8935), + [aux_sym_seek_statement_token1] = ACTIONS(8935), + [sym_reset_statement] = ACTIONS(8935), + [aux_sym_raise_event_statement_token1] = ACTIONS(8935), + [sym_stop_statement] = ACTIONS(8935), + [sym_beep_statement] = ACTIONS(8935), + [aux_sym_unload_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token2] = ACTIONS(8935), + [aux_sym_def_type_statement_token3] = ACTIONS(8935), + [aux_sym_def_type_statement_token4] = ACTIONS(8935), + [aux_sym_def_type_statement_token5] = ACTIONS(8935), + [aux_sym_def_type_statement_token6] = ACTIONS(8935), + [aux_sym_def_type_statement_token7] = ACTIONS(8935), + [aux_sym_def_type_statement_token8] = ACTIONS(8935), + [aux_sym_def_type_statement_token9] = ACTIONS(8935), + [aux_sym_def_type_statement_token10] = ACTIONS(8935), + [aux_sym_def_type_statement_token11] = ACTIONS(8935), + [aux_sym_def_type_statement_token12] = ACTIONS(8935), + [aux_sym_def_type_statement_token13] = ACTIONS(8935), + [aux_sym_def_type_statement_token14] = ACTIONS(8935), + [aux_sym_call_statement_token1] = ACTIONS(8935), + [sym__ambiguous_call_statement] = ACTIONS(8935), + [aux_sym_addressof_expression_token1] = ACTIONS(8935), + [aux_sym_type_of_expression_token1] = ACTIONS(8935), + [aux_sym_unary_expression_token1] = ACTIONS(8935), + [sym_string_literal] = ACTIONS(8937), + [sym_number_literal] = ACTIONS(8937), + [aux_sym_boolean_literal_token1] = ACTIONS(8935), + [aux_sym_boolean_literal_token2] = ACTIONS(8935), + [sym_nothing_literal] = ACTIONS(8935), + [sym_null_literal] = ACTIONS(8935), + [sym_empty_literal] = ACTIONS(8935), + [sym_date_literal] = ACTIONS(8937), + [anon_sym_POUND] = ACTIONS(8935), + }, + [STATE(6984)] = { + [sym_identifier] = ACTIONS(9020), + [sym_newline] = ACTIONS(9022), + [anon_sym_COLON] = ACTIONS(9022), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9020), + [aux_sym_frm_property_statement_token1] = ACTIONS(9020), + [anon_sym_DOT] = ACTIONS(9020), + [anon_sym_BANG] = ACTIONS(9022), + [aux_sym__attribute_identifier_token1] = ACTIONS(9020), + [aux_sym_option_statement_token3] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9020), + [aux_sym_preprocessor_const_token1] = ACTIONS(9020), + [sym_static_modifier] = ACTIONS(9020), + [sym__dim_keyword] = ACTIONS(9020), + [sym__redim_keyword] = ACTIONS(9020), + [aux_sym_get_accessor_token1] = ACTIONS(9020), + [aux_sym_set_accessor_token1] = ACTIONS(9020), + [aux_sym_const_declaration_token1] = ACTIONS(9020), + [anon_sym_LPAREN] = ACTIONS(9022), + [aux_sym_as_type_clause_token2] = ACTIONS(9020), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9020), + [aux_sym_visibility_token1] = ACTIONS(9020), + [aux_sym_visibility_token2] = ACTIONS(9020), + [aux_sym_elseif_fragment_token1] = ACTIONS(9020), + [aux_sym_else_fragment_token1] = ACTIONS(9020), + [aux_sym_select_statement_token1] = ACTIONS(9020), + [aux_sym_select_statement_token2] = ACTIONS(9020), + [aux_sym__for_header_token1] = ACTIONS(9020), + [aux_sym_do_statement_token1] = ACTIONS(9020), + [aux_sym_do_condition_token1] = ACTIONS(9020), + [aux_sym_with_statement_token1] = ACTIONS(9020), + [aux_sym_exit_statement_token1] = ACTIONS(9020), + [sym_end_statement] = ACTIONS(9022), + [aux_sym_on_goto_statement_token1] = ACTIONS(9020), + [aux_sym_on_goto_statement_token2] = ACTIONS(9020), + [aux_sym_on_error_statement_token2] = ACTIONS(9020), + [sym__ambiguous_redim_statement] = ACTIONS(9022), + [aux_sym_erase_statement_token1] = ACTIONS(9020), + [aux_sym_open_statement_token1] = ACTIONS(9020), + [aux_sym_file_mode_token2] = ACTIONS(9020), + [aux_sym_file_access_token2] = ACTIONS(9020), + [aux_sym_file_lock_token2] = ACTIONS(9020), + [aux_sym_print_statement_token1] = ACTIONS(9020), + [anon_sym_PLUS] = ACTIONS(9022), + [anon_sym_DASH] = ACTIONS(9020), + [anon_sym_QMARK] = ACTIONS(9022), + [aux_sym_close_statement_token1] = ACTIONS(9020), + [aux_sym_put_statement_token1] = ACTIONS(9020), + [aux_sym_unlock_statement_token1] = ACTIONS(9020), + [aux_sym_seek_statement_token1] = ACTIONS(9020), + [sym_reset_statement] = ACTIONS(9020), + [aux_sym_raise_event_statement_token1] = ACTIONS(9020), + [sym_stop_statement] = ACTIONS(9020), + [sym_beep_statement] = ACTIONS(9020), + [aux_sym_unload_statement_token1] = ACTIONS(9020), + [aux_sym_def_type_statement_token1] = ACTIONS(9020), + [aux_sym_def_type_statement_token2] = ACTIONS(9020), + [aux_sym_def_type_statement_token3] = ACTIONS(9020), + [aux_sym_def_type_statement_token4] = ACTIONS(9020), + [aux_sym_def_type_statement_token5] = ACTIONS(9020), + [aux_sym_def_type_statement_token6] = ACTIONS(9020), + [aux_sym_def_type_statement_token7] = ACTIONS(9020), + [aux_sym_def_type_statement_token8] = ACTIONS(9020), + [aux_sym_def_type_statement_token9] = ACTIONS(9020), + [aux_sym_def_type_statement_token10] = ACTIONS(9020), + [aux_sym_def_type_statement_token11] = ACTIONS(9020), + [aux_sym_def_type_statement_token12] = ACTIONS(9020), + [aux_sym_def_type_statement_token13] = ACTIONS(9020), + [aux_sym_def_type_statement_token14] = ACTIONS(9020), + [aux_sym_call_statement_token1] = ACTIONS(9020), + [sym__ambiguous_call_statement] = ACTIONS(9020), + [aux_sym_addressof_expression_token1] = ACTIONS(9020), + [aux_sym_type_of_expression_token1] = ACTIONS(9020), + [aux_sym_unary_expression_token1] = ACTIONS(9020), + [sym_string_literal] = ACTIONS(9022), + [sym_number_literal] = ACTIONS(9022), + [aux_sym_boolean_literal_token1] = ACTIONS(9020), + [aux_sym_boolean_literal_token2] = ACTIONS(9020), + [sym_nothing_literal] = ACTIONS(9020), + [sym_null_literal] = ACTIONS(9020), + [sym_empty_literal] = ACTIONS(9020), + [sym_date_literal] = ACTIONS(9022), + [anon_sym_POUND] = ACTIONS(9020), + }, + [STATE(6985)] = { + [sym_identifier] = ACTIONS(9024), + [sym_newline] = ACTIONS(9026), + [anon_sym_COLON] = ACTIONS(9026), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9024), + [aux_sym_frm_property_statement_token1] = ACTIONS(9024), + [anon_sym_DOT] = ACTIONS(9024), + [anon_sym_BANG] = ACTIONS(9026), + [aux_sym__attribute_identifier_token1] = ACTIONS(9024), + [aux_sym_option_statement_token3] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9024), + [aux_sym_preprocessor_const_token1] = ACTIONS(9024), + [sym_static_modifier] = ACTIONS(9024), + [sym__dim_keyword] = ACTIONS(9024), + [sym__redim_keyword] = ACTIONS(9024), + [aux_sym_get_accessor_token1] = ACTIONS(9024), + [aux_sym_set_accessor_token1] = ACTIONS(9024), + [aux_sym_const_declaration_token1] = ACTIONS(9024), + [anon_sym_LPAREN] = ACTIONS(9026), + [aux_sym_as_type_clause_token2] = ACTIONS(9024), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9024), + [aux_sym_visibility_token1] = ACTIONS(9024), + [aux_sym_visibility_token2] = ACTIONS(9024), + [aux_sym_elseif_fragment_token1] = ACTIONS(9024), + [aux_sym_else_fragment_token1] = ACTIONS(9024), + [aux_sym_select_statement_token1] = ACTIONS(9024), + [aux_sym_select_statement_token2] = ACTIONS(9024), + [aux_sym__for_header_token1] = ACTIONS(9024), + [aux_sym_do_statement_token1] = ACTIONS(9024), + [aux_sym_do_condition_token1] = ACTIONS(9024), + [aux_sym_with_statement_token1] = ACTIONS(9024), + [aux_sym_exit_statement_token1] = ACTIONS(9024), + [sym_end_statement] = ACTIONS(9026), + [aux_sym_on_goto_statement_token1] = ACTIONS(9024), + [aux_sym_on_goto_statement_token2] = ACTIONS(9024), + [aux_sym_on_error_statement_token2] = ACTIONS(9024), + [sym__ambiguous_redim_statement] = ACTIONS(9026), + [aux_sym_erase_statement_token1] = ACTIONS(9024), + [aux_sym_open_statement_token1] = ACTIONS(9024), + [aux_sym_file_mode_token2] = ACTIONS(9024), + [aux_sym_file_access_token2] = ACTIONS(9024), + [aux_sym_file_lock_token2] = ACTIONS(9024), + [aux_sym_print_statement_token1] = ACTIONS(9024), + [anon_sym_PLUS] = ACTIONS(9026), + [anon_sym_DASH] = ACTIONS(9024), + [anon_sym_QMARK] = ACTIONS(9026), + [aux_sym_close_statement_token1] = ACTIONS(9024), + [aux_sym_put_statement_token1] = ACTIONS(9024), + [aux_sym_unlock_statement_token1] = ACTIONS(9024), + [aux_sym_seek_statement_token1] = ACTIONS(9024), + [sym_reset_statement] = ACTIONS(9024), + [aux_sym_raise_event_statement_token1] = ACTIONS(9024), + [sym_stop_statement] = ACTIONS(9024), + [sym_beep_statement] = ACTIONS(9024), + [aux_sym_unload_statement_token1] = ACTIONS(9024), + [aux_sym_def_type_statement_token1] = ACTIONS(9024), + [aux_sym_def_type_statement_token2] = ACTIONS(9024), + [aux_sym_def_type_statement_token3] = ACTIONS(9024), + [aux_sym_def_type_statement_token4] = ACTIONS(9024), + [aux_sym_def_type_statement_token5] = ACTIONS(9024), + [aux_sym_def_type_statement_token6] = ACTIONS(9024), + [aux_sym_def_type_statement_token7] = ACTIONS(9024), + [aux_sym_def_type_statement_token8] = ACTIONS(9024), + [aux_sym_def_type_statement_token9] = ACTIONS(9024), + [aux_sym_def_type_statement_token10] = ACTIONS(9024), + [aux_sym_def_type_statement_token11] = ACTIONS(9024), + [aux_sym_def_type_statement_token12] = ACTIONS(9024), + [aux_sym_def_type_statement_token13] = ACTIONS(9024), + [aux_sym_def_type_statement_token14] = ACTIONS(9024), + [aux_sym_call_statement_token1] = ACTIONS(9024), + [sym__ambiguous_call_statement] = ACTIONS(9024), + [aux_sym_addressof_expression_token1] = ACTIONS(9024), + [aux_sym_type_of_expression_token1] = ACTIONS(9024), + [aux_sym_unary_expression_token1] = ACTIONS(9024), + [sym_string_literal] = ACTIONS(9026), + [sym_number_literal] = ACTIONS(9026), + [aux_sym_boolean_literal_token1] = ACTIONS(9024), + [aux_sym_boolean_literal_token2] = ACTIONS(9024), + [sym_nothing_literal] = ACTIONS(9024), + [sym_null_literal] = ACTIONS(9024), + [sym_empty_literal] = ACTIONS(9024), + [sym_date_literal] = ACTIONS(9026), + [anon_sym_POUND] = ACTIONS(9024), + }, + [STATE(6986)] = { + [sym_identifier] = ACTIONS(9092), + [sym_newline] = ACTIONS(9094), + [anon_sym_COLON] = ACTIONS(11172), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9092), + [aux_sym_frm_property_statement_token1] = ACTIONS(9092), + [anon_sym_DOT] = ACTIONS(9092), + [anon_sym_BANG] = ACTIONS(9094), + [aux_sym__attribute_identifier_token1] = ACTIONS(9092), + [aux_sym_option_statement_token3] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9092), + [aux_sym_preprocessor_const_token1] = ACTIONS(9092), + [sym_static_modifier] = ACTIONS(9092), + [sym__dim_keyword] = ACTIONS(9092), + [sym__redim_keyword] = ACTIONS(9092), + [aux_sym_get_accessor_token1] = ACTIONS(9092), + [aux_sym_set_accessor_token1] = ACTIONS(9092), + [aux_sym_const_declaration_token1] = ACTIONS(9092), + [anon_sym_LPAREN] = ACTIONS(9094), + [aux_sym_as_type_clause_token2] = ACTIONS(9092), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9092), + [aux_sym_visibility_token1] = ACTIONS(9092), + [aux_sym_visibility_token2] = ACTIONS(9092), + [aux_sym_elseif_fragment_token1] = ACTIONS(9092), + [aux_sym_else_fragment_token1] = ACTIONS(9092), + [aux_sym_select_statement_token1] = ACTIONS(9092), + [aux_sym__for_header_token1] = ACTIONS(9092), + [aux_sym_do_statement_token1] = ACTIONS(9092), + [aux_sym_do_statement_token2] = ACTIONS(9092), + [aux_sym_do_condition_token1] = ACTIONS(9092), + [aux_sym_with_statement_token1] = ACTIONS(9092), + [aux_sym_exit_statement_token1] = ACTIONS(9092), + [sym_end_statement] = ACTIONS(9094), + [aux_sym_on_goto_statement_token1] = ACTIONS(9092), + [aux_sym_on_goto_statement_token2] = ACTIONS(9092), + [aux_sym_on_error_statement_token2] = ACTIONS(9092), + [sym__ambiguous_redim_statement] = ACTIONS(9094), + [aux_sym_erase_statement_token1] = ACTIONS(9092), + [aux_sym_open_statement_token1] = ACTIONS(9092), + [aux_sym_file_mode_token2] = ACTIONS(9092), + [aux_sym_file_access_token2] = ACTIONS(9092), + [aux_sym_file_lock_token2] = ACTIONS(9092), + [aux_sym_print_statement_token1] = ACTIONS(9092), + [anon_sym_PLUS] = ACTIONS(9094), + [anon_sym_DASH] = ACTIONS(9092), + [anon_sym_QMARK] = ACTIONS(9094), + [aux_sym_close_statement_token1] = ACTIONS(9092), + [aux_sym_put_statement_token1] = ACTIONS(9092), + [aux_sym_unlock_statement_token1] = ACTIONS(9092), + [aux_sym_seek_statement_token1] = ACTIONS(9092), + [sym_reset_statement] = ACTIONS(9092), + [aux_sym_raise_event_statement_token1] = ACTIONS(9092), + [sym_stop_statement] = ACTIONS(9092), + [sym_beep_statement] = ACTIONS(9092), + [aux_sym_unload_statement_token1] = ACTIONS(9092), + [aux_sym_def_type_statement_token1] = ACTIONS(9092), + [aux_sym_def_type_statement_token2] = ACTIONS(9092), + [aux_sym_def_type_statement_token3] = ACTIONS(9092), + [aux_sym_def_type_statement_token4] = ACTIONS(9092), + [aux_sym_def_type_statement_token5] = ACTIONS(9092), + [aux_sym_def_type_statement_token6] = ACTIONS(9092), + [aux_sym_def_type_statement_token7] = ACTIONS(9092), + [aux_sym_def_type_statement_token8] = ACTIONS(9092), + [aux_sym_def_type_statement_token9] = ACTIONS(9092), + [aux_sym_def_type_statement_token10] = ACTIONS(9092), + [aux_sym_def_type_statement_token11] = ACTIONS(9092), + [aux_sym_def_type_statement_token12] = ACTIONS(9092), + [aux_sym_def_type_statement_token13] = ACTIONS(9092), + [aux_sym_def_type_statement_token14] = ACTIONS(9092), + [aux_sym_call_statement_token1] = ACTIONS(9092), + [sym__ambiguous_call_statement] = ACTIONS(9092), + [aux_sym_addressof_expression_token1] = ACTIONS(9092), + [aux_sym_type_of_expression_token1] = ACTIONS(9092), + [aux_sym_unary_expression_token1] = ACTIONS(9092), + [sym_string_literal] = ACTIONS(9094), + [sym_number_literal] = ACTIONS(9094), + [aux_sym_boolean_literal_token1] = ACTIONS(9092), + [aux_sym_boolean_literal_token2] = ACTIONS(9092), + [sym_nothing_literal] = ACTIONS(9092), + [sym_null_literal] = ACTIONS(9092), + [sym_empty_literal] = ACTIONS(9092), + [sym_date_literal] = ACTIONS(9094), + [anon_sym_POUND] = ACTIONS(9092), + }, + [STATE(6987)] = { + [sym_identifier] = ACTIONS(9099), + [sym_newline] = ACTIONS(9101), + [anon_sym_COLON] = ACTIONS(11175), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9099), + [aux_sym_frm_property_statement_token1] = ACTIONS(9099), + [anon_sym_DOT] = ACTIONS(9099), + [anon_sym_BANG] = ACTIONS(9101), + [aux_sym__attribute_identifier_token1] = ACTIONS(9099), + [aux_sym_option_statement_token3] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9099), + [aux_sym_preprocessor_const_token1] = ACTIONS(9099), + [sym_static_modifier] = ACTIONS(9099), + [sym__dim_keyword] = ACTIONS(9099), + [sym__redim_keyword] = ACTIONS(9099), + [aux_sym_get_accessor_token1] = ACTIONS(9099), + [aux_sym_set_accessor_token1] = ACTIONS(9099), + [aux_sym_const_declaration_token1] = ACTIONS(9099), + [anon_sym_LPAREN] = ACTIONS(9101), + [aux_sym_as_type_clause_token2] = ACTIONS(9099), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9099), + [aux_sym_visibility_token1] = ACTIONS(9099), + [aux_sym_visibility_token2] = ACTIONS(9099), + [aux_sym_elseif_fragment_token1] = ACTIONS(9099), + [aux_sym_else_fragment_token1] = ACTIONS(9099), + [aux_sym_select_statement_token1] = ACTIONS(9099), + [aux_sym__for_header_token1] = ACTIONS(9099), + [aux_sym_do_statement_token1] = ACTIONS(9099), + [aux_sym_do_statement_token2] = ACTIONS(9099), + [aux_sym_do_condition_token1] = ACTIONS(9099), + [aux_sym_with_statement_token1] = ACTIONS(9099), + [aux_sym_exit_statement_token1] = ACTIONS(9099), + [sym_end_statement] = ACTIONS(9101), + [aux_sym_on_goto_statement_token1] = ACTIONS(9099), + [aux_sym_on_goto_statement_token2] = ACTIONS(9099), + [aux_sym_on_error_statement_token2] = ACTIONS(9099), + [sym__ambiguous_redim_statement] = ACTIONS(9101), + [aux_sym_erase_statement_token1] = ACTIONS(9099), + [aux_sym_open_statement_token1] = ACTIONS(9099), + [aux_sym_file_mode_token2] = ACTIONS(9099), + [aux_sym_file_access_token2] = ACTIONS(9099), + [aux_sym_file_lock_token2] = ACTIONS(9099), + [aux_sym_print_statement_token1] = ACTIONS(9099), + [anon_sym_PLUS] = ACTIONS(9101), + [anon_sym_DASH] = ACTIONS(9099), + [anon_sym_QMARK] = ACTIONS(9101), + [aux_sym_close_statement_token1] = ACTIONS(9099), + [aux_sym_put_statement_token1] = ACTIONS(9099), + [aux_sym_unlock_statement_token1] = ACTIONS(9099), + [aux_sym_seek_statement_token1] = ACTIONS(9099), + [sym_reset_statement] = ACTIONS(9099), + [aux_sym_raise_event_statement_token1] = ACTIONS(9099), + [sym_stop_statement] = ACTIONS(9099), + [sym_beep_statement] = ACTIONS(9099), + [aux_sym_unload_statement_token1] = ACTIONS(9099), + [aux_sym_def_type_statement_token1] = ACTIONS(9099), + [aux_sym_def_type_statement_token2] = ACTIONS(9099), + [aux_sym_def_type_statement_token3] = ACTIONS(9099), + [aux_sym_def_type_statement_token4] = ACTIONS(9099), + [aux_sym_def_type_statement_token5] = ACTIONS(9099), + [aux_sym_def_type_statement_token6] = ACTIONS(9099), + [aux_sym_def_type_statement_token7] = ACTIONS(9099), + [aux_sym_def_type_statement_token8] = ACTIONS(9099), + [aux_sym_def_type_statement_token9] = ACTIONS(9099), + [aux_sym_def_type_statement_token10] = ACTIONS(9099), + [aux_sym_def_type_statement_token11] = ACTIONS(9099), + [aux_sym_def_type_statement_token12] = ACTIONS(9099), + [aux_sym_def_type_statement_token13] = ACTIONS(9099), + [aux_sym_def_type_statement_token14] = ACTIONS(9099), + [aux_sym_call_statement_token1] = ACTIONS(9099), + [sym__ambiguous_call_statement] = ACTIONS(9099), + [aux_sym_addressof_expression_token1] = ACTIONS(9099), + [aux_sym_type_of_expression_token1] = ACTIONS(9099), + [aux_sym_unary_expression_token1] = ACTIONS(9099), + [sym_string_literal] = ACTIONS(9101), + [sym_number_literal] = ACTIONS(9101), + [aux_sym_boolean_literal_token1] = ACTIONS(9099), + [aux_sym_boolean_literal_token2] = ACTIONS(9099), + [sym_nothing_literal] = ACTIONS(9099), + [sym_null_literal] = ACTIONS(9099), + [sym_empty_literal] = ACTIONS(9099), + [sym_date_literal] = ACTIONS(9101), + [anon_sym_POUND] = ACTIONS(9099), + }, + [STATE(6988)] = { + [sym_identifier] = ACTIONS(8986), + [sym_newline] = ACTIONS(9032), + [anon_sym_COLON] = ACTIONS(9032), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8986), + [aux_sym_frm_property_statement_token1] = ACTIONS(8986), + [anon_sym_DOT] = ACTIONS(8986), + [anon_sym_BANG] = ACTIONS(9032), + [aux_sym__attribute_identifier_token1] = ACTIONS(8986), + [aux_sym_option_statement_token3] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8986), + [aux_sym_preprocessor_const_token1] = ACTIONS(8986), + [sym_static_modifier] = ACTIONS(8986), + [sym__dim_keyword] = ACTIONS(8986), + [sym__redim_keyword] = ACTIONS(8986), + [aux_sym_get_accessor_token1] = ACTIONS(8986), + [aux_sym_set_accessor_token1] = ACTIONS(8986), + [aux_sym_const_declaration_token1] = ACTIONS(8986), + [anon_sym_LPAREN] = ACTIONS(9032), + [aux_sym_as_type_clause_token2] = ACTIONS(8986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8986), + [aux_sym_visibility_token1] = ACTIONS(8986), + [aux_sym_visibility_token2] = ACTIONS(8986), + [aux_sym_elseif_fragment_token1] = ACTIONS(8986), + [aux_sym_else_fragment_token1] = ACTIONS(8986), + [aux_sym_select_statement_token1] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8986), + [aux_sym_do_statement_token1] = ACTIONS(8986), + [aux_sym_do_condition_token1] = ACTIONS(8986), + [aux_sym_with_statement_token1] = ACTIONS(8986), + [aux_sym_exit_statement_token1] = ACTIONS(8986), + [sym_end_statement] = ACTIONS(9032), + [aux_sym_on_goto_statement_token1] = ACTIONS(8986), + [aux_sym_on_goto_statement_token2] = ACTIONS(8986), + [aux_sym_on_error_statement_token2] = ACTIONS(8986), + [sym__ambiguous_redim_statement] = ACTIONS(9032), + [aux_sym_erase_statement_token1] = ACTIONS(8986), + [aux_sym_open_statement_token1] = ACTIONS(8986), + [aux_sym_file_mode_token2] = ACTIONS(8986), + [aux_sym_file_access_token2] = ACTIONS(8986), + [aux_sym_file_lock_token2] = ACTIONS(8986), + [aux_sym_print_statement_token1] = ACTIONS(8986), + [anon_sym_PLUS] = ACTIONS(9032), + [anon_sym_DASH] = ACTIONS(8986), + [anon_sym_QMARK] = ACTIONS(9032), + [aux_sym_close_statement_token1] = ACTIONS(8986), + [aux_sym_put_statement_token1] = ACTIONS(8986), + [aux_sym_unlock_statement_token1] = ACTIONS(8986), + [aux_sym_seek_statement_token1] = ACTIONS(8986), + [sym_reset_statement] = ACTIONS(8986), + [aux_sym_raise_event_statement_token1] = ACTIONS(8986), + [sym_stop_statement] = ACTIONS(8986), + [sym_beep_statement] = ACTIONS(8986), + [aux_sym_unload_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token2] = ACTIONS(8986), + [aux_sym_def_type_statement_token3] = ACTIONS(8986), + [aux_sym_def_type_statement_token4] = ACTIONS(8986), + [aux_sym_def_type_statement_token5] = ACTIONS(8986), + [aux_sym_def_type_statement_token6] = ACTIONS(8986), + [aux_sym_def_type_statement_token7] = ACTIONS(8986), + [aux_sym_def_type_statement_token8] = ACTIONS(8986), + [aux_sym_def_type_statement_token9] = ACTIONS(8986), + [aux_sym_def_type_statement_token10] = ACTIONS(8986), + [aux_sym_def_type_statement_token11] = ACTIONS(8986), + [aux_sym_def_type_statement_token12] = ACTIONS(8986), + [aux_sym_def_type_statement_token13] = ACTIONS(8986), + [aux_sym_def_type_statement_token14] = ACTIONS(8986), + [aux_sym_call_statement_token1] = ACTIONS(8986), + [sym__ambiguous_call_statement] = ACTIONS(8986), + [aux_sym_addressof_expression_token1] = ACTIONS(8986), + [aux_sym_type_of_expression_token1] = ACTIONS(8986), + [aux_sym_unary_expression_token1] = ACTIONS(8986), + [sym_string_literal] = ACTIONS(9032), + [sym_number_literal] = ACTIONS(9032), + [aux_sym_boolean_literal_token1] = ACTIONS(8986), + [aux_sym_boolean_literal_token2] = ACTIONS(8986), + [sym_nothing_literal] = ACTIONS(8986), + [sym_null_literal] = ACTIONS(8986), + [sym_empty_literal] = ACTIONS(8986), + [sym_date_literal] = ACTIONS(9032), + [anon_sym_POUND] = ACTIONS(8986), + }, + [STATE(6989)] = { + [sym_identifier] = ACTIONS(8764), + [sym_newline] = ACTIONS(9034), + [anon_sym_COLON] = ACTIONS(9034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8764), + [aux_sym_frm_property_statement_token1] = ACTIONS(8764), + [anon_sym_DOT] = ACTIONS(8764), + [anon_sym_BANG] = ACTIONS(9034), + [aux_sym__attribute_identifier_token1] = ACTIONS(8764), + [aux_sym_option_statement_token3] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8764), + [aux_sym_preprocessor_const_token1] = ACTIONS(8764), + [sym_static_modifier] = ACTIONS(8764), + [sym__dim_keyword] = ACTIONS(8764), + [sym__redim_keyword] = ACTIONS(8764), + [aux_sym_get_accessor_token1] = ACTIONS(8764), + [aux_sym_set_accessor_token1] = ACTIONS(8764), + [aux_sym_const_declaration_token1] = ACTIONS(8764), + [anon_sym_LPAREN] = ACTIONS(9034), + [aux_sym_as_type_clause_token2] = ACTIONS(8764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8764), + [aux_sym_visibility_token1] = ACTIONS(8764), + [aux_sym_visibility_token2] = ACTIONS(8764), + [aux_sym_elseif_fragment_token1] = ACTIONS(8764), + [aux_sym_else_fragment_token1] = ACTIONS(8764), + [aux_sym_select_statement_token1] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8764), + [aux_sym_do_statement_token1] = ACTIONS(8764), + [aux_sym_do_condition_token1] = ACTIONS(8764), + [aux_sym_with_statement_token1] = ACTIONS(8764), + [aux_sym_exit_statement_token1] = ACTIONS(8764), + [sym_end_statement] = ACTIONS(9034), + [aux_sym_on_goto_statement_token1] = ACTIONS(8764), + [aux_sym_on_goto_statement_token2] = ACTIONS(8764), + [aux_sym_on_error_statement_token2] = ACTIONS(8764), + [sym__ambiguous_redim_statement] = ACTIONS(9034), + [aux_sym_erase_statement_token1] = ACTIONS(8764), + [aux_sym_open_statement_token1] = ACTIONS(8764), + [aux_sym_file_mode_token2] = ACTIONS(8764), + [aux_sym_file_access_token2] = ACTIONS(8764), + [aux_sym_file_lock_token2] = ACTIONS(8764), + [aux_sym_print_statement_token1] = ACTIONS(8764), + [anon_sym_PLUS] = ACTIONS(9034), + [anon_sym_DASH] = ACTIONS(8764), + [anon_sym_QMARK] = ACTIONS(9034), + [aux_sym_close_statement_token1] = ACTIONS(8764), + [aux_sym_put_statement_token1] = ACTIONS(8764), + [aux_sym_unlock_statement_token1] = ACTIONS(8764), + [aux_sym_seek_statement_token1] = ACTIONS(8764), + [sym_reset_statement] = ACTIONS(8764), + [aux_sym_raise_event_statement_token1] = ACTIONS(8764), + [sym_stop_statement] = ACTIONS(8764), + [sym_beep_statement] = ACTIONS(8764), + [aux_sym_unload_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token2] = ACTIONS(8764), + [aux_sym_def_type_statement_token3] = ACTIONS(8764), + [aux_sym_def_type_statement_token4] = ACTIONS(8764), + [aux_sym_def_type_statement_token5] = ACTIONS(8764), + [aux_sym_def_type_statement_token6] = ACTIONS(8764), + [aux_sym_def_type_statement_token7] = ACTIONS(8764), + [aux_sym_def_type_statement_token8] = ACTIONS(8764), + [aux_sym_def_type_statement_token9] = ACTIONS(8764), + [aux_sym_def_type_statement_token10] = ACTIONS(8764), + [aux_sym_def_type_statement_token11] = ACTIONS(8764), + [aux_sym_def_type_statement_token12] = ACTIONS(8764), + [aux_sym_def_type_statement_token13] = ACTIONS(8764), + [aux_sym_def_type_statement_token14] = ACTIONS(8764), + [aux_sym_call_statement_token1] = ACTIONS(8764), + [sym__ambiguous_call_statement] = ACTIONS(8764), + [aux_sym_addressof_expression_token1] = ACTIONS(8764), + [aux_sym_type_of_expression_token1] = ACTIONS(8764), + [aux_sym_unary_expression_token1] = ACTIONS(8764), + [sym_string_literal] = ACTIONS(9034), + [sym_number_literal] = ACTIONS(9034), + [aux_sym_boolean_literal_token1] = ACTIONS(8764), + [aux_sym_boolean_literal_token2] = ACTIONS(8764), + [sym_nothing_literal] = ACTIONS(8764), + [sym_null_literal] = ACTIONS(8764), + [sym_empty_literal] = ACTIONS(8764), + [sym_date_literal] = ACTIONS(9034), + [anon_sym_POUND] = ACTIONS(8764), + }, + [STATE(6990)] = { + [sym_identifier] = ACTIONS(9036), + [sym_newline] = ACTIONS(9038), + [anon_sym_COLON] = ACTIONS(9038), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9036), + [aux_sym_frm_property_statement_token1] = ACTIONS(9036), + [anon_sym_DOT] = ACTIONS(9036), + [anon_sym_BANG] = ACTIONS(9038), + [aux_sym__attribute_identifier_token1] = ACTIONS(9036), + [aux_sym_option_statement_token3] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9036), + [aux_sym_preprocessor_const_token1] = ACTIONS(9036), + [sym_static_modifier] = ACTIONS(9036), + [sym__dim_keyword] = ACTIONS(9036), + [sym__redim_keyword] = ACTIONS(9036), + [aux_sym_get_accessor_token1] = ACTIONS(9036), + [aux_sym_set_accessor_token1] = ACTIONS(9036), + [aux_sym_const_declaration_token1] = ACTIONS(9036), + [anon_sym_LPAREN] = ACTIONS(9038), + [aux_sym_as_type_clause_token2] = ACTIONS(9036), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9036), + [aux_sym_visibility_token1] = ACTIONS(9036), + [aux_sym_visibility_token2] = ACTIONS(9036), + [aux_sym_elseif_fragment_token1] = ACTIONS(9036), + [aux_sym_else_fragment_token1] = ACTIONS(9036), + [aux_sym_select_statement_token1] = ACTIONS(9036), + [aux_sym__for_header_token1] = ACTIONS(9036), + [aux_sym_do_statement_token1] = ACTIONS(9036), + [aux_sym_do_condition_token1] = ACTIONS(9036), + [aux_sym_with_statement_token1] = ACTIONS(9036), + [aux_sym_exit_statement_token1] = ACTIONS(9036), + [sym_end_statement] = ACTIONS(9038), + [aux_sym_on_goto_statement_token1] = ACTIONS(9036), + [aux_sym_on_goto_statement_token2] = ACTIONS(9036), + [aux_sym_on_error_statement_token2] = ACTIONS(9036), + [sym__ambiguous_redim_statement] = ACTIONS(9038), + [aux_sym_erase_statement_token1] = ACTIONS(9036), + [aux_sym_open_statement_token1] = ACTIONS(9036), + [aux_sym_file_mode_token2] = ACTIONS(9036), + [aux_sym_file_access_token2] = ACTIONS(9036), + [aux_sym_file_lock_token2] = ACTIONS(9036), + [aux_sym_print_statement_token1] = ACTIONS(9036), + [anon_sym_PLUS] = ACTIONS(9038), + [anon_sym_DASH] = ACTIONS(9036), + [anon_sym_QMARK] = ACTIONS(9038), + [aux_sym_close_statement_token1] = ACTIONS(9036), + [aux_sym_put_statement_token1] = ACTIONS(9036), + [aux_sym_unlock_statement_token1] = ACTIONS(9036), + [aux_sym_seek_statement_token1] = ACTIONS(9036), + [sym_reset_statement] = ACTIONS(9036), + [aux_sym_raise_event_statement_token1] = ACTIONS(9036), + [sym_stop_statement] = ACTIONS(9036), + [sym_beep_statement] = ACTIONS(9036), + [aux_sym_unload_statement_token1] = ACTIONS(9036), + [aux_sym_def_type_statement_token1] = ACTIONS(9036), + [aux_sym_def_type_statement_token2] = ACTIONS(9036), + [aux_sym_def_type_statement_token3] = ACTIONS(9036), + [aux_sym_def_type_statement_token4] = ACTIONS(9036), + [aux_sym_def_type_statement_token5] = ACTIONS(9036), + [aux_sym_def_type_statement_token6] = ACTIONS(9036), + [aux_sym_def_type_statement_token7] = ACTIONS(9036), + [aux_sym_def_type_statement_token8] = ACTIONS(9036), + [aux_sym_def_type_statement_token9] = ACTIONS(9036), + [aux_sym_def_type_statement_token10] = ACTIONS(9036), + [aux_sym_def_type_statement_token11] = ACTIONS(9036), + [aux_sym_def_type_statement_token12] = ACTIONS(9036), + [aux_sym_def_type_statement_token13] = ACTIONS(9036), + [aux_sym_def_type_statement_token14] = ACTIONS(9036), + [aux_sym_call_statement_token1] = ACTIONS(9036), + [sym__ambiguous_call_statement] = ACTIONS(9036), + [aux_sym_addressof_expression_token1] = ACTIONS(9036), + [aux_sym_type_of_expression_token1] = ACTIONS(9036), + [aux_sym_unary_expression_token1] = ACTIONS(9036), + [sym_string_literal] = ACTIONS(9038), + [sym_number_literal] = ACTIONS(9038), + [aux_sym_boolean_literal_token1] = ACTIONS(9036), + [aux_sym_boolean_literal_token2] = ACTIONS(9036), + [sym_nothing_literal] = ACTIONS(9036), + [sym_null_literal] = ACTIONS(9036), + [sym_empty_literal] = ACTIONS(9036), + [sym_date_literal] = ACTIONS(9038), + [anon_sym_POUND] = ACTIONS(9036), + }, + [STATE(6991)] = { + [sym_identifier] = ACTIONS(9040), + [sym_newline] = ACTIONS(9042), + [anon_sym_COLON] = ACTIONS(9042), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9040), + [aux_sym_frm_property_statement_token1] = ACTIONS(9040), + [anon_sym_DOT] = ACTIONS(9040), + [anon_sym_BANG] = ACTIONS(9042), + [aux_sym__attribute_identifier_token1] = ACTIONS(9040), + [aux_sym_option_statement_token3] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9040), + [aux_sym_preprocessor_const_token1] = ACTIONS(9040), + [sym_static_modifier] = ACTIONS(9040), + [sym__dim_keyword] = ACTIONS(9040), + [sym__redim_keyword] = ACTIONS(9040), + [aux_sym_get_accessor_token1] = ACTIONS(9040), + [aux_sym_set_accessor_token1] = ACTIONS(9040), + [aux_sym_const_declaration_token1] = ACTIONS(9040), + [anon_sym_LPAREN] = ACTIONS(9042), + [aux_sym_as_type_clause_token2] = ACTIONS(9040), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9040), + [aux_sym_visibility_token1] = ACTIONS(9040), + [aux_sym_visibility_token2] = ACTIONS(9040), + [aux_sym_elseif_fragment_token1] = ACTIONS(9040), + [aux_sym_else_fragment_token1] = ACTIONS(9040), + [aux_sym_select_statement_token1] = ACTIONS(9040), + [aux_sym__for_header_token1] = ACTIONS(9040), + [aux_sym_do_statement_token1] = ACTIONS(9040), + [aux_sym_do_condition_token1] = ACTIONS(9040), + [aux_sym_with_statement_token1] = ACTIONS(9040), + [aux_sym_exit_statement_token1] = ACTIONS(9040), + [sym_end_statement] = ACTIONS(9042), + [aux_sym_on_goto_statement_token1] = ACTIONS(9040), + [aux_sym_on_goto_statement_token2] = ACTIONS(9040), + [aux_sym_on_error_statement_token2] = ACTIONS(9040), + [sym__ambiguous_redim_statement] = ACTIONS(9042), + [aux_sym_erase_statement_token1] = ACTIONS(9040), + [aux_sym_open_statement_token1] = ACTIONS(9040), + [aux_sym_file_mode_token2] = ACTIONS(9040), + [aux_sym_file_access_token2] = ACTIONS(9040), + [aux_sym_file_lock_token2] = ACTIONS(9040), + [aux_sym_print_statement_token1] = ACTIONS(9040), + [anon_sym_PLUS] = ACTIONS(9042), + [anon_sym_DASH] = ACTIONS(9040), + [anon_sym_QMARK] = ACTIONS(9042), + [aux_sym_close_statement_token1] = ACTIONS(9040), + [aux_sym_put_statement_token1] = ACTIONS(9040), + [aux_sym_unlock_statement_token1] = ACTIONS(9040), + [aux_sym_seek_statement_token1] = ACTIONS(9040), + [sym_reset_statement] = ACTIONS(9040), + [aux_sym_raise_event_statement_token1] = ACTIONS(9040), + [sym_stop_statement] = ACTIONS(9040), + [sym_beep_statement] = ACTIONS(9040), + [aux_sym_unload_statement_token1] = ACTIONS(9040), + [aux_sym_def_type_statement_token1] = ACTIONS(9040), + [aux_sym_def_type_statement_token2] = ACTIONS(9040), + [aux_sym_def_type_statement_token3] = ACTIONS(9040), + [aux_sym_def_type_statement_token4] = ACTIONS(9040), + [aux_sym_def_type_statement_token5] = ACTIONS(9040), + [aux_sym_def_type_statement_token6] = ACTIONS(9040), + [aux_sym_def_type_statement_token7] = ACTIONS(9040), + [aux_sym_def_type_statement_token8] = ACTIONS(9040), + [aux_sym_def_type_statement_token9] = ACTIONS(9040), + [aux_sym_def_type_statement_token10] = ACTIONS(9040), + [aux_sym_def_type_statement_token11] = ACTIONS(9040), + [aux_sym_def_type_statement_token12] = ACTIONS(9040), + [aux_sym_def_type_statement_token13] = ACTIONS(9040), + [aux_sym_def_type_statement_token14] = ACTIONS(9040), + [aux_sym_call_statement_token1] = ACTIONS(9040), + [sym__ambiguous_call_statement] = ACTIONS(9040), + [aux_sym_addressof_expression_token1] = ACTIONS(9040), + [aux_sym_type_of_expression_token1] = ACTIONS(9040), + [aux_sym_unary_expression_token1] = ACTIONS(9040), + [sym_string_literal] = ACTIONS(9042), + [sym_number_literal] = ACTIONS(9042), + [aux_sym_boolean_literal_token1] = ACTIONS(9040), + [aux_sym_boolean_literal_token2] = ACTIONS(9040), + [sym_nothing_literal] = ACTIONS(9040), + [sym_null_literal] = ACTIONS(9040), + [sym_empty_literal] = ACTIONS(9040), + [sym_date_literal] = ACTIONS(9042), + [anon_sym_POUND] = ACTIONS(9040), + }, + [STATE(6992)] = { + [sym_identifier] = ACTIONS(9110), + [sym_newline] = ACTIONS(9112), + [anon_sym_COLON] = ACTIONS(9112), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9110), + [aux_sym_frm_property_statement_token1] = ACTIONS(9110), + [anon_sym_DOT] = ACTIONS(9110), + [anon_sym_BANG] = ACTIONS(9112), + [aux_sym__attribute_identifier_token1] = ACTIONS(9110), + [aux_sym_option_statement_token3] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9110), + [aux_sym_preprocessor_const_token1] = ACTIONS(9110), + [sym_static_modifier] = ACTIONS(9110), + [sym__dim_keyword] = ACTIONS(9110), + [sym__redim_keyword] = ACTIONS(9110), + [aux_sym_get_accessor_token1] = ACTIONS(9110), + [aux_sym_set_accessor_token1] = ACTIONS(9110), + [aux_sym_const_declaration_token1] = ACTIONS(9110), + [anon_sym_LPAREN] = ACTIONS(9112), + [aux_sym_as_type_clause_token2] = ACTIONS(9110), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9110), + [aux_sym_visibility_token1] = ACTIONS(9110), + [aux_sym_visibility_token2] = ACTIONS(9110), + [aux_sym_elseif_fragment_token1] = ACTIONS(9110), + [aux_sym_else_fragment_token1] = ACTIONS(9110), + [aux_sym_select_statement_token1] = ACTIONS(9110), + [aux_sym__for_header_token1] = ACTIONS(9110), + [aux_sym_do_statement_token1] = ACTIONS(9110), + [aux_sym_do_statement_token2] = ACTIONS(9110), + [aux_sym_do_condition_token1] = ACTIONS(9110), + [aux_sym_with_statement_token1] = ACTIONS(9110), + [aux_sym_exit_statement_token1] = ACTIONS(9110), + [sym_end_statement] = ACTIONS(9112), + [aux_sym_on_goto_statement_token1] = ACTIONS(9110), + [aux_sym_on_goto_statement_token2] = ACTIONS(9110), + [aux_sym_on_error_statement_token2] = ACTIONS(9110), + [sym__ambiguous_redim_statement] = ACTIONS(9112), + [aux_sym_erase_statement_token1] = ACTIONS(9110), + [aux_sym_open_statement_token1] = ACTIONS(9110), + [aux_sym_file_mode_token2] = ACTIONS(9110), + [aux_sym_file_access_token2] = ACTIONS(9110), + [aux_sym_file_lock_token2] = ACTIONS(9110), + [aux_sym_print_statement_token1] = ACTIONS(9110), + [anon_sym_PLUS] = ACTIONS(9112), + [anon_sym_DASH] = ACTIONS(9110), + [anon_sym_QMARK] = ACTIONS(9112), + [aux_sym_close_statement_token1] = ACTIONS(9110), + [aux_sym_put_statement_token1] = ACTIONS(9110), + [aux_sym_unlock_statement_token1] = ACTIONS(9110), + [aux_sym_seek_statement_token1] = ACTIONS(9110), + [sym_reset_statement] = ACTIONS(9110), + [aux_sym_raise_event_statement_token1] = ACTIONS(9110), + [sym_stop_statement] = ACTIONS(9110), + [sym_beep_statement] = ACTIONS(9110), + [aux_sym_unload_statement_token1] = ACTIONS(9110), + [aux_sym_def_type_statement_token1] = ACTIONS(9110), + [aux_sym_def_type_statement_token2] = ACTIONS(9110), + [aux_sym_def_type_statement_token3] = ACTIONS(9110), + [aux_sym_def_type_statement_token4] = ACTIONS(9110), + [aux_sym_def_type_statement_token5] = ACTIONS(9110), + [aux_sym_def_type_statement_token6] = ACTIONS(9110), + [aux_sym_def_type_statement_token7] = ACTIONS(9110), + [aux_sym_def_type_statement_token8] = ACTIONS(9110), + [aux_sym_def_type_statement_token9] = ACTIONS(9110), + [aux_sym_def_type_statement_token10] = ACTIONS(9110), + [aux_sym_def_type_statement_token11] = ACTIONS(9110), + [aux_sym_def_type_statement_token12] = ACTIONS(9110), + [aux_sym_def_type_statement_token13] = ACTIONS(9110), + [aux_sym_def_type_statement_token14] = ACTIONS(9110), + [aux_sym_call_statement_token1] = ACTIONS(9110), + [sym__ambiguous_call_statement] = ACTIONS(9110), + [aux_sym_addressof_expression_token1] = ACTIONS(9110), + [aux_sym_type_of_expression_token1] = ACTIONS(9110), + [aux_sym_unary_expression_token1] = ACTIONS(9110), + [sym_string_literal] = ACTIONS(9112), + [sym_number_literal] = ACTIONS(9112), + [aux_sym_boolean_literal_token1] = ACTIONS(9110), + [aux_sym_boolean_literal_token2] = ACTIONS(9110), + [sym_nothing_literal] = ACTIONS(9110), + [sym_null_literal] = ACTIONS(9110), + [sym_empty_literal] = ACTIONS(9110), + [sym_date_literal] = ACTIONS(9112), + [anon_sym_POUND] = ACTIONS(9110), + }, + [STATE(6993)] = { + [sym_identifier] = ACTIONS(9044), + [sym_newline] = ACTIONS(9046), + [anon_sym_COLON] = ACTIONS(9046), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9044), + [aux_sym_frm_property_statement_token1] = ACTIONS(9044), + [anon_sym_DOT] = ACTIONS(9044), + [anon_sym_BANG] = ACTIONS(9046), + [aux_sym__attribute_identifier_token1] = ACTIONS(9044), + [aux_sym_option_statement_token3] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9044), + [aux_sym_preprocessor_const_token1] = ACTIONS(9044), + [sym_static_modifier] = ACTIONS(9044), + [sym__dim_keyword] = ACTIONS(9044), + [sym__redim_keyword] = ACTIONS(9044), + [aux_sym_get_accessor_token1] = ACTIONS(9044), + [aux_sym_set_accessor_token1] = ACTIONS(9044), + [aux_sym_const_declaration_token1] = ACTIONS(9044), + [anon_sym_LPAREN] = ACTIONS(9046), + [aux_sym_as_type_clause_token2] = ACTIONS(9044), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9044), + [aux_sym_visibility_token1] = ACTIONS(9044), + [aux_sym_visibility_token2] = ACTIONS(9044), + [aux_sym_elseif_fragment_token1] = ACTIONS(9044), + [aux_sym_else_fragment_token1] = ACTIONS(9044), + [aux_sym_select_statement_token1] = ACTIONS(9044), + [aux_sym_select_statement_token2] = ACTIONS(9044), + [aux_sym__for_header_token1] = ACTIONS(9044), + [aux_sym_do_statement_token1] = ACTIONS(9044), + [aux_sym_do_condition_token1] = ACTIONS(9044), + [aux_sym_with_statement_token1] = ACTIONS(9044), + [aux_sym_exit_statement_token1] = ACTIONS(9044), + [sym_end_statement] = ACTIONS(9046), + [aux_sym_on_goto_statement_token1] = ACTIONS(9044), + [aux_sym_on_goto_statement_token2] = ACTIONS(9044), + [aux_sym_on_error_statement_token2] = ACTIONS(9044), + [sym__ambiguous_redim_statement] = ACTIONS(9046), + [aux_sym_erase_statement_token1] = ACTIONS(9044), + [aux_sym_open_statement_token1] = ACTIONS(9044), + [aux_sym_file_mode_token2] = ACTIONS(9044), + [aux_sym_file_access_token2] = ACTIONS(9044), + [aux_sym_file_lock_token2] = ACTIONS(9044), + [aux_sym_print_statement_token1] = ACTIONS(9044), + [anon_sym_PLUS] = ACTIONS(9046), + [anon_sym_DASH] = ACTIONS(9044), + [anon_sym_QMARK] = ACTIONS(9046), + [aux_sym_close_statement_token1] = ACTIONS(9044), + [aux_sym_put_statement_token1] = ACTIONS(9044), + [aux_sym_unlock_statement_token1] = ACTIONS(9044), + [aux_sym_seek_statement_token1] = ACTIONS(9044), + [sym_reset_statement] = ACTIONS(9044), + [aux_sym_raise_event_statement_token1] = ACTIONS(9044), + [sym_stop_statement] = ACTIONS(9044), + [sym_beep_statement] = ACTIONS(9044), + [aux_sym_unload_statement_token1] = ACTIONS(9044), + [aux_sym_def_type_statement_token1] = ACTIONS(9044), + [aux_sym_def_type_statement_token2] = ACTIONS(9044), + [aux_sym_def_type_statement_token3] = ACTIONS(9044), + [aux_sym_def_type_statement_token4] = ACTIONS(9044), + [aux_sym_def_type_statement_token5] = ACTIONS(9044), + [aux_sym_def_type_statement_token6] = ACTIONS(9044), + [aux_sym_def_type_statement_token7] = ACTIONS(9044), + [aux_sym_def_type_statement_token8] = ACTIONS(9044), + [aux_sym_def_type_statement_token9] = ACTIONS(9044), + [aux_sym_def_type_statement_token10] = ACTIONS(9044), + [aux_sym_def_type_statement_token11] = ACTIONS(9044), + [aux_sym_def_type_statement_token12] = ACTIONS(9044), + [aux_sym_def_type_statement_token13] = ACTIONS(9044), + [aux_sym_def_type_statement_token14] = ACTIONS(9044), + [aux_sym_call_statement_token1] = ACTIONS(9044), + [sym__ambiguous_call_statement] = ACTIONS(9044), + [aux_sym_addressof_expression_token1] = ACTIONS(9044), + [aux_sym_type_of_expression_token1] = ACTIONS(9044), + [aux_sym_unary_expression_token1] = ACTIONS(9044), + [sym_string_literal] = ACTIONS(9046), + [sym_number_literal] = ACTIONS(9046), + [aux_sym_boolean_literal_token1] = ACTIONS(9044), + [aux_sym_boolean_literal_token2] = ACTIONS(9044), + [sym_nothing_literal] = ACTIONS(9044), + [sym_null_literal] = ACTIONS(9044), + [sym_empty_literal] = ACTIONS(9044), + [sym_date_literal] = ACTIONS(9046), + [anon_sym_POUND] = ACTIONS(9044), + }, + [STATE(6994)] = { + [sym_identifier] = ACTIONS(9114), + [sym_newline] = ACTIONS(9116), + [anon_sym_COLON] = ACTIONS(9116), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9114), + [aux_sym_frm_property_statement_token1] = ACTIONS(9114), + [anon_sym_DOT] = ACTIONS(9114), + [anon_sym_BANG] = ACTIONS(9116), + [aux_sym__attribute_identifier_token1] = ACTIONS(9114), + [aux_sym_option_statement_token3] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9114), + [aux_sym_preprocessor_const_token1] = ACTIONS(9114), + [sym_static_modifier] = ACTIONS(9114), + [sym__dim_keyword] = ACTIONS(9114), + [sym__redim_keyword] = ACTIONS(9114), + [aux_sym_get_accessor_token1] = ACTIONS(9114), + [aux_sym_set_accessor_token1] = ACTIONS(9114), + [aux_sym_const_declaration_token1] = ACTIONS(9114), + [anon_sym_LPAREN] = ACTIONS(9116), + [aux_sym_as_type_clause_token2] = ACTIONS(9114), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9114), + [aux_sym_visibility_token1] = ACTIONS(9114), + [aux_sym_visibility_token2] = ACTIONS(9114), + [aux_sym_elseif_fragment_token1] = ACTIONS(9114), + [aux_sym_else_fragment_token1] = ACTIONS(9114), + [aux_sym_select_statement_token1] = ACTIONS(9114), + [aux_sym__for_header_token1] = ACTIONS(9114), + [aux_sym_do_statement_token1] = ACTIONS(9114), + [aux_sym_do_statement_token2] = ACTIONS(9114), + [aux_sym_do_condition_token1] = ACTIONS(9114), + [aux_sym_with_statement_token1] = ACTIONS(9114), + [aux_sym_exit_statement_token1] = ACTIONS(9114), + [sym_end_statement] = ACTIONS(9116), + [aux_sym_on_goto_statement_token1] = ACTIONS(9114), + [aux_sym_on_goto_statement_token2] = ACTIONS(9114), + [aux_sym_on_error_statement_token2] = ACTIONS(9114), + [sym__ambiguous_redim_statement] = ACTIONS(9116), + [aux_sym_erase_statement_token1] = ACTIONS(9114), + [aux_sym_open_statement_token1] = ACTIONS(9114), + [aux_sym_file_mode_token2] = ACTIONS(9114), + [aux_sym_file_access_token2] = ACTIONS(9114), + [aux_sym_file_lock_token2] = ACTIONS(9114), + [aux_sym_print_statement_token1] = ACTIONS(9114), + [anon_sym_PLUS] = ACTIONS(9116), + [anon_sym_DASH] = ACTIONS(9114), + [anon_sym_QMARK] = ACTIONS(9116), + [aux_sym_close_statement_token1] = ACTIONS(9114), + [aux_sym_put_statement_token1] = ACTIONS(9114), + [aux_sym_unlock_statement_token1] = ACTIONS(9114), + [aux_sym_seek_statement_token1] = ACTIONS(9114), + [sym_reset_statement] = ACTIONS(9114), + [aux_sym_raise_event_statement_token1] = ACTIONS(9114), + [sym_stop_statement] = ACTIONS(9114), + [sym_beep_statement] = ACTIONS(9114), + [aux_sym_unload_statement_token1] = ACTIONS(9114), + [aux_sym_def_type_statement_token1] = ACTIONS(9114), + [aux_sym_def_type_statement_token2] = ACTIONS(9114), + [aux_sym_def_type_statement_token3] = ACTIONS(9114), + [aux_sym_def_type_statement_token4] = ACTIONS(9114), + [aux_sym_def_type_statement_token5] = ACTIONS(9114), + [aux_sym_def_type_statement_token6] = ACTIONS(9114), + [aux_sym_def_type_statement_token7] = ACTIONS(9114), + [aux_sym_def_type_statement_token8] = ACTIONS(9114), + [aux_sym_def_type_statement_token9] = ACTIONS(9114), + [aux_sym_def_type_statement_token10] = ACTIONS(9114), + [aux_sym_def_type_statement_token11] = ACTIONS(9114), + [aux_sym_def_type_statement_token12] = ACTIONS(9114), + [aux_sym_def_type_statement_token13] = ACTIONS(9114), + [aux_sym_def_type_statement_token14] = ACTIONS(9114), + [aux_sym_call_statement_token1] = ACTIONS(9114), + [sym__ambiguous_call_statement] = ACTIONS(9114), + [aux_sym_addressof_expression_token1] = ACTIONS(9114), + [aux_sym_type_of_expression_token1] = ACTIONS(9114), + [aux_sym_unary_expression_token1] = ACTIONS(9114), + [sym_string_literal] = ACTIONS(9116), + [sym_number_literal] = ACTIONS(9116), + [aux_sym_boolean_literal_token1] = ACTIONS(9114), + [aux_sym_boolean_literal_token2] = ACTIONS(9114), + [sym_nothing_literal] = ACTIONS(9114), + [sym_null_literal] = ACTIONS(9114), + [sym_empty_literal] = ACTIONS(9114), + [sym_date_literal] = ACTIONS(9116), + [anon_sym_POUND] = ACTIONS(9114), + }, + [STATE(6995)] = { + [sym_identifier] = ACTIONS(9447), + [sym_newline] = ACTIONS(9449), + [anon_sym_COLON] = ACTIONS(9449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9447), + [aux_sym_frm_property_statement_token1] = ACTIONS(9447), + [anon_sym_DOT] = ACTIONS(9447), + [anon_sym_BANG] = ACTIONS(9449), + [aux_sym__attribute_identifier_token1] = ACTIONS(9447), + [aux_sym_option_statement_token3] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9447), + [aux_sym_preprocessor_const_token1] = ACTIONS(9447), + [sym_static_modifier] = ACTIONS(9447), + [sym__dim_keyword] = ACTIONS(9447), + [sym__redim_keyword] = ACTIONS(9447), + [aux_sym_get_accessor_token1] = ACTIONS(9447), + [aux_sym_set_accessor_token1] = ACTIONS(9447), + [aux_sym_const_declaration_token1] = ACTIONS(9447), + [anon_sym_LPAREN] = ACTIONS(9449), + [aux_sym_as_type_clause_token2] = ACTIONS(9447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9447), + [aux_sym_visibility_token1] = ACTIONS(9447), + [aux_sym_visibility_token2] = ACTIONS(9447), + [aux_sym_elseif_fragment_token1] = ACTIONS(9447), + [aux_sym_else_fragment_token1] = ACTIONS(9447), + [aux_sym_select_statement_token1] = ACTIONS(9447), + [aux_sym_select_statement_token2] = ACTIONS(9447), + [aux_sym__for_header_token1] = ACTIONS(9447), + [aux_sym_do_statement_token1] = ACTIONS(9447), + [aux_sym_do_condition_token1] = ACTIONS(9447), + [aux_sym_with_statement_token1] = ACTIONS(9447), + [aux_sym_exit_statement_token1] = ACTIONS(9447), + [sym_end_statement] = ACTIONS(9449), + [aux_sym_on_goto_statement_token1] = ACTIONS(9447), + [aux_sym_on_goto_statement_token2] = ACTIONS(9447), + [aux_sym_on_error_statement_token2] = ACTIONS(9447), + [sym__ambiguous_redim_statement] = ACTIONS(9449), + [aux_sym_erase_statement_token1] = ACTIONS(9447), + [aux_sym_open_statement_token1] = ACTIONS(9447), + [aux_sym_file_mode_token2] = ACTIONS(9447), + [aux_sym_file_access_token2] = ACTIONS(9447), + [aux_sym_file_lock_token2] = ACTIONS(9447), + [aux_sym_print_statement_token1] = ACTIONS(9447), + [anon_sym_PLUS] = ACTIONS(9449), + [anon_sym_DASH] = ACTIONS(9447), + [anon_sym_QMARK] = ACTIONS(9449), + [aux_sym_close_statement_token1] = ACTIONS(9447), + [aux_sym_put_statement_token1] = ACTIONS(9447), + [aux_sym_unlock_statement_token1] = ACTIONS(9447), + [aux_sym_seek_statement_token1] = ACTIONS(9447), + [sym_reset_statement] = ACTIONS(9447), + [aux_sym_raise_event_statement_token1] = ACTIONS(9447), + [sym_stop_statement] = ACTIONS(9447), + [sym_beep_statement] = ACTIONS(9447), + [aux_sym_unload_statement_token1] = ACTIONS(9447), + [aux_sym_def_type_statement_token1] = ACTIONS(9447), + [aux_sym_def_type_statement_token2] = ACTIONS(9447), + [aux_sym_def_type_statement_token3] = ACTIONS(9447), + [aux_sym_def_type_statement_token4] = ACTIONS(9447), + [aux_sym_def_type_statement_token5] = ACTIONS(9447), + [aux_sym_def_type_statement_token6] = ACTIONS(9447), + [aux_sym_def_type_statement_token7] = ACTIONS(9447), + [aux_sym_def_type_statement_token8] = ACTIONS(9447), + [aux_sym_def_type_statement_token9] = ACTIONS(9447), + [aux_sym_def_type_statement_token10] = ACTIONS(9447), + [aux_sym_def_type_statement_token11] = ACTIONS(9447), + [aux_sym_def_type_statement_token12] = ACTIONS(9447), + [aux_sym_def_type_statement_token13] = ACTIONS(9447), + [aux_sym_def_type_statement_token14] = ACTIONS(9447), + [aux_sym_call_statement_token1] = ACTIONS(9447), + [sym__ambiguous_call_statement] = ACTIONS(9447), + [aux_sym_addressof_expression_token1] = ACTIONS(9447), + [aux_sym_type_of_expression_token1] = ACTIONS(9447), + [aux_sym_unary_expression_token1] = ACTIONS(9447), + [sym_string_literal] = ACTIONS(9449), + [sym_number_literal] = ACTIONS(9449), + [aux_sym_boolean_literal_token1] = ACTIONS(9447), + [aux_sym_boolean_literal_token2] = ACTIONS(9447), + [sym_nothing_literal] = ACTIONS(9447), + [sym_null_literal] = ACTIONS(9447), + [sym_empty_literal] = ACTIONS(9447), + [sym_date_literal] = ACTIONS(9449), + [anon_sym_POUND] = ACTIONS(9447), + }, + [STATE(6996)] = { + [sym_identifier] = ACTIONS(9496), + [sym_newline] = ACTIONS(9498), + [anon_sym_COLON] = ACTIONS(9498), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9496), + [aux_sym_frm_property_statement_token1] = ACTIONS(9496), + [anon_sym_DOT] = ACTIONS(9496), + [anon_sym_BANG] = ACTIONS(9498), + [aux_sym__attribute_identifier_token1] = ACTIONS(9496), + [aux_sym_option_statement_token3] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9496), + [aux_sym_preprocessor_const_token1] = ACTIONS(9496), + [sym_static_modifier] = ACTIONS(9496), + [sym__dim_keyword] = ACTIONS(9496), + [sym__redim_keyword] = ACTIONS(9496), + [aux_sym_get_accessor_token1] = ACTIONS(9496), + [aux_sym_set_accessor_token1] = ACTIONS(9496), + [aux_sym_const_declaration_token1] = ACTIONS(9496), + [anon_sym_LPAREN] = ACTIONS(9498), + [aux_sym_as_type_clause_token2] = ACTIONS(9496), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9496), + [aux_sym_visibility_token1] = ACTIONS(9496), + [aux_sym_visibility_token2] = ACTIONS(9496), + [aux_sym_elseif_fragment_token1] = ACTIONS(9496), + [aux_sym_else_fragment_token1] = ACTIONS(9496), + [aux_sym_select_statement_token1] = ACTIONS(9496), + [aux_sym__for_header_token1] = ACTIONS(9496), + [aux_sym_do_statement_token1] = ACTIONS(9496), + [aux_sym_do_condition_token1] = ACTIONS(9496), + [aux_sym_while_statement_token1] = ACTIONS(9496), + [aux_sym_with_statement_token1] = ACTIONS(9496), + [aux_sym_exit_statement_token1] = ACTIONS(9496), + [sym_end_statement] = ACTIONS(9498), + [aux_sym_on_goto_statement_token1] = ACTIONS(9496), + [aux_sym_on_goto_statement_token2] = ACTIONS(9496), + [aux_sym_on_error_statement_token2] = ACTIONS(9496), + [sym__ambiguous_redim_statement] = ACTIONS(9498), + [aux_sym_erase_statement_token1] = ACTIONS(9496), + [aux_sym_open_statement_token1] = ACTIONS(9496), + [aux_sym_file_mode_token2] = ACTIONS(9496), + [aux_sym_file_access_token2] = ACTIONS(9496), + [aux_sym_file_lock_token2] = ACTIONS(9496), + [aux_sym_print_statement_token1] = ACTIONS(9496), + [anon_sym_PLUS] = ACTIONS(9498), + [anon_sym_DASH] = ACTIONS(9496), + [anon_sym_QMARK] = ACTIONS(9498), + [aux_sym_close_statement_token1] = ACTIONS(9496), + [aux_sym_put_statement_token1] = ACTIONS(9496), + [aux_sym_unlock_statement_token1] = ACTIONS(9496), + [aux_sym_seek_statement_token1] = ACTIONS(9496), + [sym_reset_statement] = ACTIONS(9496), + [aux_sym_raise_event_statement_token1] = ACTIONS(9496), + [sym_stop_statement] = ACTIONS(9496), + [sym_beep_statement] = ACTIONS(9496), + [aux_sym_unload_statement_token1] = ACTIONS(9496), + [aux_sym_def_type_statement_token1] = ACTIONS(9496), + [aux_sym_def_type_statement_token2] = ACTIONS(9496), + [aux_sym_def_type_statement_token3] = ACTIONS(9496), + [aux_sym_def_type_statement_token4] = ACTIONS(9496), + [aux_sym_def_type_statement_token5] = ACTIONS(9496), + [aux_sym_def_type_statement_token6] = ACTIONS(9496), + [aux_sym_def_type_statement_token7] = ACTIONS(9496), + [aux_sym_def_type_statement_token8] = ACTIONS(9496), + [aux_sym_def_type_statement_token9] = ACTIONS(9496), + [aux_sym_def_type_statement_token10] = ACTIONS(9496), + [aux_sym_def_type_statement_token11] = ACTIONS(9496), + [aux_sym_def_type_statement_token12] = ACTIONS(9496), + [aux_sym_def_type_statement_token13] = ACTIONS(9496), + [aux_sym_def_type_statement_token14] = ACTIONS(9496), + [aux_sym_call_statement_token1] = ACTIONS(9496), + [sym__ambiguous_call_statement] = ACTIONS(9496), + [aux_sym_addressof_expression_token1] = ACTIONS(9496), + [aux_sym_type_of_expression_token1] = ACTIONS(9496), + [aux_sym_unary_expression_token1] = ACTIONS(9496), + [sym_string_literal] = ACTIONS(9498), + [sym_number_literal] = ACTIONS(9498), + [aux_sym_boolean_literal_token1] = ACTIONS(9496), + [aux_sym_boolean_literal_token2] = ACTIONS(9496), + [sym_nothing_literal] = ACTIONS(9496), + [sym_null_literal] = ACTIONS(9496), + [sym_empty_literal] = ACTIONS(9496), + [sym_date_literal] = ACTIONS(9498), + [anon_sym_POUND] = ACTIONS(9496), + }, + [STATE(6997)] = { + [sym_identifier] = ACTIONS(9670), + [sym_newline] = ACTIONS(9672), + [anon_sym_COLON] = ACTIONS(9672), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9670), + [aux_sym_frm_property_statement_token1] = ACTIONS(9670), + [anon_sym_DOT] = ACTIONS(9670), + [anon_sym_BANG] = ACTIONS(9672), + [aux_sym__attribute_identifier_token1] = ACTIONS(9670), + [aux_sym_option_statement_token3] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9670), + [aux_sym_preprocessor_const_token1] = ACTIONS(9670), + [sym_static_modifier] = ACTIONS(9670), + [sym__dim_keyword] = ACTIONS(9670), + [sym__redim_keyword] = ACTIONS(9670), + [aux_sym_get_accessor_token1] = ACTIONS(9670), + [aux_sym_set_accessor_token1] = ACTIONS(9670), + [aux_sym_const_declaration_token1] = ACTIONS(9670), + [anon_sym_LPAREN] = ACTIONS(9672), + [aux_sym_as_type_clause_token2] = ACTIONS(9670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9670), + [aux_sym_visibility_token1] = ACTIONS(9670), + [aux_sym_visibility_token2] = ACTIONS(9670), + [aux_sym_elseif_fragment_token1] = ACTIONS(9670), + [aux_sym_else_fragment_token1] = ACTIONS(9670), + [aux_sym_select_statement_token1] = ACTIONS(9670), + [aux_sym_select_statement_token2] = ACTIONS(9670), + [aux_sym__for_header_token1] = ACTIONS(9670), + [aux_sym_do_statement_token1] = ACTIONS(9670), + [aux_sym_do_condition_token1] = ACTIONS(9670), + [aux_sym_with_statement_token1] = ACTIONS(9670), + [aux_sym_exit_statement_token1] = ACTIONS(9670), + [sym_end_statement] = ACTIONS(9672), + [aux_sym_on_goto_statement_token1] = ACTIONS(9670), + [aux_sym_on_goto_statement_token2] = ACTIONS(9670), + [aux_sym_on_error_statement_token2] = ACTIONS(9670), + [sym__ambiguous_redim_statement] = ACTIONS(9672), + [aux_sym_erase_statement_token1] = ACTIONS(9670), + [aux_sym_open_statement_token1] = ACTIONS(9670), + [aux_sym_file_mode_token2] = ACTIONS(9670), + [aux_sym_file_access_token2] = ACTIONS(9670), + [aux_sym_file_lock_token2] = ACTIONS(9670), + [aux_sym_print_statement_token1] = ACTIONS(9670), + [anon_sym_PLUS] = ACTIONS(9672), + [anon_sym_DASH] = ACTIONS(9670), + [anon_sym_QMARK] = ACTIONS(9672), + [aux_sym_close_statement_token1] = ACTIONS(9670), + [aux_sym_put_statement_token1] = ACTIONS(9670), + [aux_sym_unlock_statement_token1] = ACTIONS(9670), + [aux_sym_seek_statement_token1] = ACTIONS(9670), + [sym_reset_statement] = ACTIONS(9670), + [aux_sym_raise_event_statement_token1] = ACTIONS(9670), + [sym_stop_statement] = ACTIONS(9670), + [sym_beep_statement] = ACTIONS(9670), + [aux_sym_unload_statement_token1] = ACTIONS(9670), + [aux_sym_def_type_statement_token1] = ACTIONS(9670), + [aux_sym_def_type_statement_token2] = ACTIONS(9670), + [aux_sym_def_type_statement_token3] = ACTIONS(9670), + [aux_sym_def_type_statement_token4] = ACTIONS(9670), + [aux_sym_def_type_statement_token5] = ACTIONS(9670), + [aux_sym_def_type_statement_token6] = ACTIONS(9670), + [aux_sym_def_type_statement_token7] = ACTIONS(9670), + [aux_sym_def_type_statement_token8] = ACTIONS(9670), + [aux_sym_def_type_statement_token9] = ACTIONS(9670), + [aux_sym_def_type_statement_token10] = ACTIONS(9670), + [aux_sym_def_type_statement_token11] = ACTIONS(9670), + [aux_sym_def_type_statement_token12] = ACTIONS(9670), + [aux_sym_def_type_statement_token13] = ACTIONS(9670), + [aux_sym_def_type_statement_token14] = ACTIONS(9670), + [aux_sym_call_statement_token1] = ACTIONS(9670), + [sym__ambiguous_call_statement] = ACTIONS(9670), + [aux_sym_addressof_expression_token1] = ACTIONS(9670), + [aux_sym_type_of_expression_token1] = ACTIONS(9670), + [aux_sym_unary_expression_token1] = ACTIONS(9670), + [sym_string_literal] = ACTIONS(9672), + [sym_number_literal] = ACTIONS(9672), + [aux_sym_boolean_literal_token1] = ACTIONS(9670), + [aux_sym_boolean_literal_token2] = ACTIONS(9670), + [sym_nothing_literal] = ACTIONS(9670), + [sym_null_literal] = ACTIONS(9670), + [sym_empty_literal] = ACTIONS(9670), + [sym_date_literal] = ACTIONS(9672), + [anon_sym_POUND] = ACTIONS(9670), + }, + [STATE(6998)] = { + [sym_identifier] = ACTIONS(9506), + [sym_newline] = ACTIONS(9508), + [anon_sym_COLON] = ACTIONS(9508), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9506), + [aux_sym_frm_property_statement_token1] = ACTIONS(9506), + [anon_sym_DOT] = ACTIONS(9506), + [anon_sym_BANG] = ACTIONS(9508), + [aux_sym__attribute_identifier_token1] = ACTIONS(9506), + [aux_sym_option_statement_token3] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9506), + [aux_sym_preprocessor_const_token1] = ACTIONS(9506), + [sym_static_modifier] = ACTIONS(9506), + [sym__dim_keyword] = ACTIONS(9506), + [sym__redim_keyword] = ACTIONS(9506), + [aux_sym_get_accessor_token1] = ACTIONS(9506), + [aux_sym_set_accessor_token1] = ACTIONS(9506), + [aux_sym_const_declaration_token1] = ACTIONS(9506), + [anon_sym_LPAREN] = ACTIONS(9508), + [aux_sym_as_type_clause_token2] = ACTIONS(9506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9506), + [aux_sym_visibility_token1] = ACTIONS(9506), + [aux_sym_visibility_token2] = ACTIONS(9506), + [aux_sym_elseif_fragment_token1] = ACTIONS(9506), + [aux_sym_else_fragment_token1] = ACTIONS(9506), + [aux_sym_select_statement_token1] = ACTIONS(9506), + [aux_sym__for_header_token1] = ACTIONS(9506), + [aux_sym_do_statement_token1] = ACTIONS(9506), + [aux_sym_do_condition_token1] = ACTIONS(9506), + [aux_sym_while_statement_token1] = ACTIONS(9506), + [aux_sym_with_statement_token1] = ACTIONS(9506), + [aux_sym_exit_statement_token1] = ACTIONS(9506), + [sym_end_statement] = ACTIONS(9508), + [aux_sym_on_goto_statement_token1] = ACTIONS(9506), + [aux_sym_on_goto_statement_token2] = ACTIONS(9506), + [aux_sym_on_error_statement_token2] = ACTIONS(9506), + [sym__ambiguous_redim_statement] = ACTIONS(9508), + [aux_sym_erase_statement_token1] = ACTIONS(9506), + [aux_sym_open_statement_token1] = ACTIONS(9506), + [aux_sym_file_mode_token2] = ACTIONS(9506), + [aux_sym_file_access_token2] = ACTIONS(9506), + [aux_sym_file_lock_token2] = ACTIONS(9506), + [aux_sym_print_statement_token1] = ACTIONS(9506), + [anon_sym_PLUS] = ACTIONS(9508), + [anon_sym_DASH] = ACTIONS(9506), + [anon_sym_QMARK] = ACTIONS(9508), + [aux_sym_close_statement_token1] = ACTIONS(9506), + [aux_sym_put_statement_token1] = ACTIONS(9506), + [aux_sym_unlock_statement_token1] = ACTIONS(9506), + [aux_sym_seek_statement_token1] = ACTIONS(9506), + [sym_reset_statement] = ACTIONS(9506), + [aux_sym_raise_event_statement_token1] = ACTIONS(9506), + [sym_stop_statement] = ACTIONS(9506), + [sym_beep_statement] = ACTIONS(9506), + [aux_sym_unload_statement_token1] = ACTIONS(9506), + [aux_sym_def_type_statement_token1] = ACTIONS(9506), + [aux_sym_def_type_statement_token2] = ACTIONS(9506), + [aux_sym_def_type_statement_token3] = ACTIONS(9506), + [aux_sym_def_type_statement_token4] = ACTIONS(9506), + [aux_sym_def_type_statement_token5] = ACTIONS(9506), + [aux_sym_def_type_statement_token6] = ACTIONS(9506), + [aux_sym_def_type_statement_token7] = ACTIONS(9506), + [aux_sym_def_type_statement_token8] = ACTIONS(9506), + [aux_sym_def_type_statement_token9] = ACTIONS(9506), + [aux_sym_def_type_statement_token10] = ACTIONS(9506), + [aux_sym_def_type_statement_token11] = ACTIONS(9506), + [aux_sym_def_type_statement_token12] = ACTIONS(9506), + [aux_sym_def_type_statement_token13] = ACTIONS(9506), + [aux_sym_def_type_statement_token14] = ACTIONS(9506), + [aux_sym_call_statement_token1] = ACTIONS(9506), + [sym__ambiguous_call_statement] = ACTIONS(9506), + [aux_sym_addressof_expression_token1] = ACTIONS(9506), + [aux_sym_type_of_expression_token1] = ACTIONS(9506), + [aux_sym_unary_expression_token1] = ACTIONS(9506), + [sym_string_literal] = ACTIONS(9508), + [sym_number_literal] = ACTIONS(9508), + [aux_sym_boolean_literal_token1] = ACTIONS(9506), + [aux_sym_boolean_literal_token2] = ACTIONS(9506), + [sym_nothing_literal] = ACTIONS(9506), + [sym_null_literal] = ACTIONS(9506), + [sym_empty_literal] = ACTIONS(9506), + [sym_date_literal] = ACTIONS(9508), + [anon_sym_POUND] = ACTIONS(9506), + }, + [STATE(6999)] = { + [sym_identifier] = ACTIONS(9510), + [sym_newline] = ACTIONS(9512), + [anon_sym_COLON] = ACTIONS(9512), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9510), + [aux_sym_frm_property_statement_token1] = ACTIONS(9510), + [anon_sym_DOT] = ACTIONS(9510), + [anon_sym_BANG] = ACTIONS(9512), + [aux_sym__attribute_identifier_token1] = ACTIONS(9510), + [aux_sym_option_statement_token3] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9510), + [aux_sym_preprocessor_const_token1] = ACTIONS(9510), + [sym_static_modifier] = ACTIONS(9510), + [sym__dim_keyword] = ACTIONS(9510), + [sym__redim_keyword] = ACTIONS(9510), + [aux_sym_get_accessor_token1] = ACTIONS(9510), + [aux_sym_set_accessor_token1] = ACTIONS(9510), + [aux_sym_const_declaration_token1] = ACTIONS(9510), + [anon_sym_LPAREN] = ACTIONS(9512), + [aux_sym_as_type_clause_token2] = ACTIONS(9510), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9510), + [aux_sym_visibility_token1] = ACTIONS(9510), + [aux_sym_visibility_token2] = ACTIONS(9510), + [aux_sym_elseif_fragment_token1] = ACTIONS(9510), + [aux_sym_else_fragment_token1] = ACTIONS(9510), + [aux_sym_select_statement_token1] = ACTIONS(9510), + [aux_sym__for_header_token1] = ACTIONS(9510), + [aux_sym_do_statement_token1] = ACTIONS(9510), + [aux_sym_do_condition_token1] = ACTIONS(9510), + [aux_sym_while_statement_token1] = ACTIONS(9510), + [aux_sym_with_statement_token1] = ACTIONS(9510), + [aux_sym_exit_statement_token1] = ACTIONS(9510), + [sym_end_statement] = ACTIONS(9512), + [aux_sym_on_goto_statement_token1] = ACTIONS(9510), + [aux_sym_on_goto_statement_token2] = ACTIONS(9510), + [aux_sym_on_error_statement_token2] = ACTIONS(9510), + [sym__ambiguous_redim_statement] = ACTIONS(9512), + [aux_sym_erase_statement_token1] = ACTIONS(9510), + [aux_sym_open_statement_token1] = ACTIONS(9510), + [aux_sym_file_mode_token2] = ACTIONS(9510), + [aux_sym_file_access_token2] = ACTIONS(9510), + [aux_sym_file_lock_token2] = ACTIONS(9510), + [aux_sym_print_statement_token1] = ACTIONS(9510), + [anon_sym_PLUS] = ACTIONS(9512), + [anon_sym_DASH] = ACTIONS(9510), + [anon_sym_QMARK] = ACTIONS(9512), + [aux_sym_close_statement_token1] = ACTIONS(9510), + [aux_sym_put_statement_token1] = ACTIONS(9510), + [aux_sym_unlock_statement_token1] = ACTIONS(9510), + [aux_sym_seek_statement_token1] = ACTIONS(9510), + [sym_reset_statement] = ACTIONS(9510), + [aux_sym_raise_event_statement_token1] = ACTIONS(9510), + [sym_stop_statement] = ACTIONS(9510), + [sym_beep_statement] = ACTIONS(9510), + [aux_sym_unload_statement_token1] = ACTIONS(9510), + [aux_sym_def_type_statement_token1] = ACTIONS(9510), + [aux_sym_def_type_statement_token2] = ACTIONS(9510), + [aux_sym_def_type_statement_token3] = ACTIONS(9510), + [aux_sym_def_type_statement_token4] = ACTIONS(9510), + [aux_sym_def_type_statement_token5] = ACTIONS(9510), + [aux_sym_def_type_statement_token6] = ACTIONS(9510), + [aux_sym_def_type_statement_token7] = ACTIONS(9510), + [aux_sym_def_type_statement_token8] = ACTIONS(9510), + [aux_sym_def_type_statement_token9] = ACTIONS(9510), + [aux_sym_def_type_statement_token10] = ACTIONS(9510), + [aux_sym_def_type_statement_token11] = ACTIONS(9510), + [aux_sym_def_type_statement_token12] = ACTIONS(9510), + [aux_sym_def_type_statement_token13] = ACTIONS(9510), + [aux_sym_def_type_statement_token14] = ACTIONS(9510), + [aux_sym_call_statement_token1] = ACTIONS(9510), + [sym__ambiguous_call_statement] = ACTIONS(9510), + [aux_sym_addressof_expression_token1] = ACTIONS(9510), + [aux_sym_type_of_expression_token1] = ACTIONS(9510), + [aux_sym_unary_expression_token1] = ACTIONS(9510), + [sym_string_literal] = ACTIONS(9512), + [sym_number_literal] = ACTIONS(9512), + [aux_sym_boolean_literal_token1] = ACTIONS(9510), + [aux_sym_boolean_literal_token2] = ACTIONS(9510), + [sym_nothing_literal] = ACTIONS(9510), + [sym_null_literal] = ACTIONS(9510), + [sym_empty_literal] = ACTIONS(9510), + [sym_date_literal] = ACTIONS(9512), + [anon_sym_POUND] = ACTIONS(9510), + }, + [STATE(7000)] = { + [sym_identifier] = ACTIONS(9118), + [sym_newline] = ACTIONS(9120), + [anon_sym_COLON] = ACTIONS(9120), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9118), + [aux_sym_frm_property_statement_token1] = ACTIONS(9118), + [anon_sym_DOT] = ACTIONS(9118), + [anon_sym_BANG] = ACTIONS(9120), + [aux_sym__attribute_identifier_token1] = ACTIONS(9118), + [aux_sym_option_statement_token3] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9118), + [aux_sym_preprocessor_const_token1] = ACTIONS(9118), + [sym_static_modifier] = ACTIONS(9118), + [sym__dim_keyword] = ACTIONS(9118), + [sym__redim_keyword] = ACTIONS(9118), + [aux_sym_get_accessor_token1] = ACTIONS(9118), + [aux_sym_set_accessor_token1] = ACTIONS(9118), + [aux_sym_const_declaration_token1] = ACTIONS(9118), + [anon_sym_LPAREN] = ACTIONS(9120), + [aux_sym_as_type_clause_token2] = ACTIONS(9118), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9118), + [aux_sym_visibility_token1] = ACTIONS(9118), + [aux_sym_visibility_token2] = ACTIONS(9118), + [aux_sym_elseif_fragment_token1] = ACTIONS(9118), + [aux_sym_else_fragment_token1] = ACTIONS(9118), + [aux_sym_select_statement_token1] = ACTIONS(9118), + [aux_sym__for_header_token1] = ACTIONS(9118), + [aux_sym_do_statement_token1] = ACTIONS(9118), + [aux_sym_do_statement_token2] = ACTIONS(9118), + [aux_sym_do_condition_token1] = ACTIONS(9118), + [aux_sym_with_statement_token1] = ACTIONS(9118), + [aux_sym_exit_statement_token1] = ACTIONS(9118), + [sym_end_statement] = ACTIONS(9120), + [aux_sym_on_goto_statement_token1] = ACTIONS(9118), + [aux_sym_on_goto_statement_token2] = ACTIONS(9118), + [aux_sym_on_error_statement_token2] = ACTIONS(9118), + [sym__ambiguous_redim_statement] = ACTIONS(9120), + [aux_sym_erase_statement_token1] = ACTIONS(9118), + [aux_sym_open_statement_token1] = ACTIONS(9118), + [aux_sym_file_mode_token2] = ACTIONS(9118), + [aux_sym_file_access_token2] = ACTIONS(9118), + [aux_sym_file_lock_token2] = ACTIONS(9118), + [aux_sym_print_statement_token1] = ACTIONS(9118), + [anon_sym_PLUS] = ACTIONS(9120), + [anon_sym_DASH] = ACTIONS(9118), + [anon_sym_QMARK] = ACTIONS(9120), + [aux_sym_close_statement_token1] = ACTIONS(9118), + [aux_sym_put_statement_token1] = ACTIONS(9118), + [aux_sym_unlock_statement_token1] = ACTIONS(9118), + [aux_sym_seek_statement_token1] = ACTIONS(9118), + [sym_reset_statement] = ACTIONS(9118), + [aux_sym_raise_event_statement_token1] = ACTIONS(9118), + [sym_stop_statement] = ACTIONS(9118), + [sym_beep_statement] = ACTIONS(9118), + [aux_sym_unload_statement_token1] = ACTIONS(9118), + [aux_sym_def_type_statement_token1] = ACTIONS(9118), + [aux_sym_def_type_statement_token2] = ACTIONS(9118), + [aux_sym_def_type_statement_token3] = ACTIONS(9118), + [aux_sym_def_type_statement_token4] = ACTIONS(9118), + [aux_sym_def_type_statement_token5] = ACTIONS(9118), + [aux_sym_def_type_statement_token6] = ACTIONS(9118), + [aux_sym_def_type_statement_token7] = ACTIONS(9118), + [aux_sym_def_type_statement_token8] = ACTIONS(9118), + [aux_sym_def_type_statement_token9] = ACTIONS(9118), + [aux_sym_def_type_statement_token10] = ACTIONS(9118), + [aux_sym_def_type_statement_token11] = ACTIONS(9118), + [aux_sym_def_type_statement_token12] = ACTIONS(9118), + [aux_sym_def_type_statement_token13] = ACTIONS(9118), + [aux_sym_def_type_statement_token14] = ACTIONS(9118), + [aux_sym_call_statement_token1] = ACTIONS(9118), + [sym__ambiguous_call_statement] = ACTIONS(9118), + [aux_sym_addressof_expression_token1] = ACTIONS(9118), + [aux_sym_type_of_expression_token1] = ACTIONS(9118), + [aux_sym_unary_expression_token1] = ACTIONS(9118), + [sym_string_literal] = ACTIONS(9120), + [sym_number_literal] = ACTIONS(9120), + [aux_sym_boolean_literal_token1] = ACTIONS(9118), + [aux_sym_boolean_literal_token2] = ACTIONS(9118), + [sym_nothing_literal] = ACTIONS(9118), + [sym_null_literal] = ACTIONS(9118), + [sym_empty_literal] = ACTIONS(9118), + [sym_date_literal] = ACTIONS(9120), + [anon_sym_POUND] = ACTIONS(9118), + }, + [STATE(7001)] = { + [sym_identifier] = ACTIONS(9514), + [sym_newline] = ACTIONS(9516), + [anon_sym_COLON] = ACTIONS(9516), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9514), + [aux_sym_frm_property_statement_token1] = ACTIONS(9514), + [anon_sym_DOT] = ACTIONS(9514), + [anon_sym_BANG] = ACTIONS(9516), + [aux_sym__attribute_identifier_token1] = ACTIONS(9514), + [aux_sym_option_statement_token3] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9514), + [aux_sym_preprocessor_const_token1] = ACTIONS(9514), + [sym_static_modifier] = ACTIONS(9514), + [sym__dim_keyword] = ACTIONS(9514), + [sym__redim_keyword] = ACTIONS(9514), + [aux_sym_get_accessor_token1] = ACTIONS(9514), + [aux_sym_set_accessor_token1] = ACTIONS(9514), + [aux_sym_const_declaration_token1] = ACTIONS(9514), + [anon_sym_LPAREN] = ACTIONS(9516), + [aux_sym_as_type_clause_token2] = ACTIONS(9514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9514), + [aux_sym_visibility_token1] = ACTIONS(9514), + [aux_sym_visibility_token2] = ACTIONS(9514), + [aux_sym_elseif_fragment_token1] = ACTIONS(9514), + [aux_sym_else_fragment_token1] = ACTIONS(9514), + [aux_sym_select_statement_token1] = ACTIONS(9514), + [aux_sym__for_header_token1] = ACTIONS(9514), + [aux_sym_do_statement_token1] = ACTIONS(9514), + [aux_sym_do_condition_token1] = ACTIONS(9514), + [aux_sym_while_statement_token1] = ACTIONS(9514), + [aux_sym_with_statement_token1] = ACTIONS(9514), + [aux_sym_exit_statement_token1] = ACTIONS(9514), + [sym_end_statement] = ACTIONS(9516), + [aux_sym_on_goto_statement_token1] = ACTIONS(9514), + [aux_sym_on_goto_statement_token2] = ACTIONS(9514), + [aux_sym_on_error_statement_token2] = ACTIONS(9514), + [sym__ambiguous_redim_statement] = ACTIONS(9516), + [aux_sym_erase_statement_token1] = ACTIONS(9514), + [aux_sym_open_statement_token1] = ACTIONS(9514), + [aux_sym_file_mode_token2] = ACTIONS(9514), + [aux_sym_file_access_token2] = ACTIONS(9514), + [aux_sym_file_lock_token2] = ACTIONS(9514), + [aux_sym_print_statement_token1] = ACTIONS(9514), + [anon_sym_PLUS] = ACTIONS(9516), + [anon_sym_DASH] = ACTIONS(9514), + [anon_sym_QMARK] = ACTIONS(9516), + [aux_sym_close_statement_token1] = ACTIONS(9514), + [aux_sym_put_statement_token1] = ACTIONS(9514), + [aux_sym_unlock_statement_token1] = ACTIONS(9514), + [aux_sym_seek_statement_token1] = ACTIONS(9514), + [sym_reset_statement] = ACTIONS(9514), + [aux_sym_raise_event_statement_token1] = ACTIONS(9514), + [sym_stop_statement] = ACTIONS(9514), + [sym_beep_statement] = ACTIONS(9514), + [aux_sym_unload_statement_token1] = ACTIONS(9514), + [aux_sym_def_type_statement_token1] = ACTIONS(9514), + [aux_sym_def_type_statement_token2] = ACTIONS(9514), + [aux_sym_def_type_statement_token3] = ACTIONS(9514), + [aux_sym_def_type_statement_token4] = ACTIONS(9514), + [aux_sym_def_type_statement_token5] = ACTIONS(9514), + [aux_sym_def_type_statement_token6] = ACTIONS(9514), + [aux_sym_def_type_statement_token7] = ACTIONS(9514), + [aux_sym_def_type_statement_token8] = ACTIONS(9514), + [aux_sym_def_type_statement_token9] = ACTIONS(9514), + [aux_sym_def_type_statement_token10] = ACTIONS(9514), + [aux_sym_def_type_statement_token11] = ACTIONS(9514), + [aux_sym_def_type_statement_token12] = ACTIONS(9514), + [aux_sym_def_type_statement_token13] = ACTIONS(9514), + [aux_sym_def_type_statement_token14] = ACTIONS(9514), + [aux_sym_call_statement_token1] = ACTIONS(9514), + [sym__ambiguous_call_statement] = ACTIONS(9514), + [aux_sym_addressof_expression_token1] = ACTIONS(9514), + [aux_sym_type_of_expression_token1] = ACTIONS(9514), + [aux_sym_unary_expression_token1] = ACTIONS(9514), + [sym_string_literal] = ACTIONS(9516), + [sym_number_literal] = ACTIONS(9516), + [aux_sym_boolean_literal_token1] = ACTIONS(9514), + [aux_sym_boolean_literal_token2] = ACTIONS(9514), + [sym_nothing_literal] = ACTIONS(9514), + [sym_null_literal] = ACTIONS(9514), + [sym_empty_literal] = ACTIONS(9514), + [sym_date_literal] = ACTIONS(9516), + [anon_sym_POUND] = ACTIONS(9514), + }, + [STATE(7002)] = { + [sym_identifier] = ACTIONS(9677), + [sym_newline] = ACTIONS(9679), + [anon_sym_COLON] = ACTIONS(9679), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9677), + [aux_sym_frm_property_statement_token1] = ACTIONS(9677), + [anon_sym_DOT] = ACTIONS(9677), + [anon_sym_BANG] = ACTIONS(9679), + [aux_sym__attribute_identifier_token1] = ACTIONS(9677), + [aux_sym_option_statement_token3] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9677), + [aux_sym_preprocessor_const_token1] = ACTIONS(9677), + [sym_static_modifier] = ACTIONS(9677), + [sym__dim_keyword] = ACTIONS(9677), + [sym__redim_keyword] = ACTIONS(9677), + [aux_sym_get_accessor_token1] = ACTIONS(9677), + [aux_sym_set_accessor_token1] = ACTIONS(9677), + [aux_sym_const_declaration_token1] = ACTIONS(9677), + [anon_sym_LPAREN] = ACTIONS(9679), + [aux_sym_as_type_clause_token2] = ACTIONS(9677), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9677), + [aux_sym_visibility_token1] = ACTIONS(9677), + [aux_sym_visibility_token2] = ACTIONS(9677), + [aux_sym_elseif_fragment_token1] = ACTIONS(9677), + [aux_sym_else_fragment_token1] = ACTIONS(9677), + [aux_sym_select_statement_token1] = ACTIONS(9677), + [aux_sym_select_statement_token2] = ACTIONS(9677), + [aux_sym__for_header_token1] = ACTIONS(9677), + [aux_sym_do_statement_token1] = ACTIONS(9677), + [aux_sym_do_condition_token1] = ACTIONS(9677), + [aux_sym_with_statement_token1] = ACTIONS(9677), + [aux_sym_exit_statement_token1] = ACTIONS(9677), + [sym_end_statement] = ACTIONS(9679), + [aux_sym_on_goto_statement_token1] = ACTIONS(9677), + [aux_sym_on_goto_statement_token2] = ACTIONS(9677), + [aux_sym_on_error_statement_token2] = ACTIONS(9677), + [sym__ambiguous_redim_statement] = ACTIONS(9679), + [aux_sym_erase_statement_token1] = ACTIONS(9677), + [aux_sym_open_statement_token1] = ACTIONS(9677), + [aux_sym_file_mode_token2] = ACTIONS(9677), + [aux_sym_file_access_token2] = ACTIONS(9677), + [aux_sym_file_lock_token2] = ACTIONS(9677), + [aux_sym_print_statement_token1] = ACTIONS(9677), + [anon_sym_PLUS] = ACTIONS(9679), + [anon_sym_DASH] = ACTIONS(9677), + [anon_sym_QMARK] = ACTIONS(9679), + [aux_sym_close_statement_token1] = ACTIONS(9677), + [aux_sym_put_statement_token1] = ACTIONS(9677), + [aux_sym_unlock_statement_token1] = ACTIONS(9677), + [aux_sym_seek_statement_token1] = ACTIONS(9677), + [sym_reset_statement] = ACTIONS(9677), + [aux_sym_raise_event_statement_token1] = ACTIONS(9677), + [sym_stop_statement] = ACTIONS(9677), + [sym_beep_statement] = ACTIONS(9677), + [aux_sym_unload_statement_token1] = ACTIONS(9677), + [aux_sym_def_type_statement_token1] = ACTIONS(9677), + [aux_sym_def_type_statement_token2] = ACTIONS(9677), + [aux_sym_def_type_statement_token3] = ACTIONS(9677), + [aux_sym_def_type_statement_token4] = ACTIONS(9677), + [aux_sym_def_type_statement_token5] = ACTIONS(9677), + [aux_sym_def_type_statement_token6] = ACTIONS(9677), + [aux_sym_def_type_statement_token7] = ACTIONS(9677), + [aux_sym_def_type_statement_token8] = ACTIONS(9677), + [aux_sym_def_type_statement_token9] = ACTIONS(9677), + [aux_sym_def_type_statement_token10] = ACTIONS(9677), + [aux_sym_def_type_statement_token11] = ACTIONS(9677), + [aux_sym_def_type_statement_token12] = ACTIONS(9677), + [aux_sym_def_type_statement_token13] = ACTIONS(9677), + [aux_sym_def_type_statement_token14] = ACTIONS(9677), + [aux_sym_call_statement_token1] = ACTIONS(9677), + [sym__ambiguous_call_statement] = ACTIONS(9677), + [aux_sym_addressof_expression_token1] = ACTIONS(9677), + [aux_sym_type_of_expression_token1] = ACTIONS(9677), + [aux_sym_unary_expression_token1] = ACTIONS(9677), + [sym_string_literal] = ACTIONS(9679), + [sym_number_literal] = ACTIONS(9679), + [aux_sym_boolean_literal_token1] = ACTIONS(9677), + [aux_sym_boolean_literal_token2] = ACTIONS(9677), + [sym_nothing_literal] = ACTIONS(9677), + [sym_null_literal] = ACTIONS(9677), + [sym_empty_literal] = ACTIONS(9677), + [sym_date_literal] = ACTIONS(9679), + [anon_sym_POUND] = ACTIONS(9677), + }, + [STATE(7003)] = { + [sym_identifier] = ACTIONS(9518), + [sym_newline] = ACTIONS(9520), + [anon_sym_COLON] = ACTIONS(9520), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9518), + [aux_sym_frm_property_statement_token1] = ACTIONS(9518), + [anon_sym_DOT] = ACTIONS(9518), + [anon_sym_BANG] = ACTIONS(9520), + [aux_sym__attribute_identifier_token1] = ACTIONS(9518), + [aux_sym_option_statement_token3] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9518), + [aux_sym_preprocessor_const_token1] = ACTIONS(9518), + [sym_static_modifier] = ACTIONS(9518), + [sym__dim_keyword] = ACTIONS(9518), + [sym__redim_keyword] = ACTIONS(9518), + [aux_sym_get_accessor_token1] = ACTIONS(9518), + [aux_sym_set_accessor_token1] = ACTIONS(9518), + [aux_sym_const_declaration_token1] = ACTIONS(9518), + [anon_sym_LPAREN] = ACTIONS(9520), + [aux_sym_as_type_clause_token2] = ACTIONS(9518), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9518), + [aux_sym_visibility_token1] = ACTIONS(9518), + [aux_sym_visibility_token2] = ACTIONS(9518), + [aux_sym_elseif_fragment_token1] = ACTIONS(9518), + [aux_sym_else_fragment_token1] = ACTIONS(9518), + [aux_sym_select_statement_token1] = ACTIONS(9518), + [aux_sym__for_header_token1] = ACTIONS(9518), + [aux_sym_do_statement_token1] = ACTIONS(9518), + [aux_sym_do_condition_token1] = ACTIONS(9518), + [aux_sym_while_statement_token1] = ACTIONS(9518), + [aux_sym_with_statement_token1] = ACTIONS(9518), + [aux_sym_exit_statement_token1] = ACTIONS(9518), + [sym_end_statement] = ACTIONS(9520), + [aux_sym_on_goto_statement_token1] = ACTIONS(9518), + [aux_sym_on_goto_statement_token2] = ACTIONS(9518), + [aux_sym_on_error_statement_token2] = ACTIONS(9518), + [sym__ambiguous_redim_statement] = ACTIONS(9520), + [aux_sym_erase_statement_token1] = ACTIONS(9518), + [aux_sym_open_statement_token1] = ACTIONS(9518), + [aux_sym_file_mode_token2] = ACTIONS(9518), + [aux_sym_file_access_token2] = ACTIONS(9518), + [aux_sym_file_lock_token2] = ACTIONS(9518), + [aux_sym_print_statement_token1] = ACTIONS(9518), + [anon_sym_PLUS] = ACTIONS(9520), + [anon_sym_DASH] = ACTIONS(9518), + [anon_sym_QMARK] = ACTIONS(9520), + [aux_sym_close_statement_token1] = ACTIONS(9518), + [aux_sym_put_statement_token1] = ACTIONS(9518), + [aux_sym_unlock_statement_token1] = ACTIONS(9518), + [aux_sym_seek_statement_token1] = ACTIONS(9518), + [sym_reset_statement] = ACTIONS(9518), + [aux_sym_raise_event_statement_token1] = ACTIONS(9518), + [sym_stop_statement] = ACTIONS(9518), + [sym_beep_statement] = ACTIONS(9518), + [aux_sym_unload_statement_token1] = ACTIONS(9518), + [aux_sym_def_type_statement_token1] = ACTIONS(9518), + [aux_sym_def_type_statement_token2] = ACTIONS(9518), + [aux_sym_def_type_statement_token3] = ACTIONS(9518), + [aux_sym_def_type_statement_token4] = ACTIONS(9518), + [aux_sym_def_type_statement_token5] = ACTIONS(9518), + [aux_sym_def_type_statement_token6] = ACTIONS(9518), + [aux_sym_def_type_statement_token7] = ACTIONS(9518), + [aux_sym_def_type_statement_token8] = ACTIONS(9518), + [aux_sym_def_type_statement_token9] = ACTIONS(9518), + [aux_sym_def_type_statement_token10] = ACTIONS(9518), + [aux_sym_def_type_statement_token11] = ACTIONS(9518), + [aux_sym_def_type_statement_token12] = ACTIONS(9518), + [aux_sym_def_type_statement_token13] = ACTIONS(9518), + [aux_sym_def_type_statement_token14] = ACTIONS(9518), + [aux_sym_call_statement_token1] = ACTIONS(9518), + [sym__ambiguous_call_statement] = ACTIONS(9518), + [aux_sym_addressof_expression_token1] = ACTIONS(9518), + [aux_sym_type_of_expression_token1] = ACTIONS(9518), + [aux_sym_unary_expression_token1] = ACTIONS(9518), + [sym_string_literal] = ACTIONS(9520), + [sym_number_literal] = ACTIONS(9520), + [aux_sym_boolean_literal_token1] = ACTIONS(9518), + [aux_sym_boolean_literal_token2] = ACTIONS(9518), + [sym_nothing_literal] = ACTIONS(9518), + [sym_null_literal] = ACTIONS(9518), + [sym_empty_literal] = ACTIONS(9518), + [sym_date_literal] = ACTIONS(9520), + [anon_sym_POUND] = ACTIONS(9518), + }, + [STATE(7004)] = { + [sym_identifier] = ACTIONS(9522), + [sym_newline] = ACTIONS(9524), + [anon_sym_COLON] = ACTIONS(9524), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9522), + [aux_sym_frm_property_statement_token1] = ACTIONS(9522), + [anon_sym_DOT] = ACTIONS(9522), + [anon_sym_BANG] = ACTIONS(9524), + [aux_sym__attribute_identifier_token1] = ACTIONS(9522), + [aux_sym_option_statement_token3] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9522), + [aux_sym_preprocessor_const_token1] = ACTIONS(9522), + [sym_static_modifier] = ACTIONS(9522), + [sym__dim_keyword] = ACTIONS(9522), + [sym__redim_keyword] = ACTIONS(9522), + [aux_sym_get_accessor_token1] = ACTIONS(9522), + [aux_sym_set_accessor_token1] = ACTIONS(9522), + [aux_sym_const_declaration_token1] = ACTIONS(9522), + [anon_sym_LPAREN] = ACTIONS(9524), + [aux_sym_as_type_clause_token2] = ACTIONS(9522), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9522), + [aux_sym_visibility_token1] = ACTIONS(9522), + [aux_sym_visibility_token2] = ACTIONS(9522), + [aux_sym_elseif_fragment_token1] = ACTIONS(9522), + [aux_sym_else_fragment_token1] = ACTIONS(9522), + [aux_sym_select_statement_token1] = ACTIONS(9522), + [aux_sym__for_header_token1] = ACTIONS(9522), + [aux_sym_do_statement_token1] = ACTIONS(9522), + [aux_sym_do_condition_token1] = ACTIONS(9522), + [aux_sym_while_statement_token1] = ACTIONS(9522), + [aux_sym_with_statement_token1] = ACTIONS(9522), + [aux_sym_exit_statement_token1] = ACTIONS(9522), + [sym_end_statement] = ACTIONS(9524), + [aux_sym_on_goto_statement_token1] = ACTIONS(9522), + [aux_sym_on_goto_statement_token2] = ACTIONS(9522), + [aux_sym_on_error_statement_token2] = ACTIONS(9522), + [sym__ambiguous_redim_statement] = ACTIONS(9524), + [aux_sym_erase_statement_token1] = ACTIONS(9522), + [aux_sym_open_statement_token1] = ACTIONS(9522), + [aux_sym_file_mode_token2] = ACTIONS(9522), + [aux_sym_file_access_token2] = ACTIONS(9522), + [aux_sym_file_lock_token2] = ACTIONS(9522), + [aux_sym_print_statement_token1] = ACTIONS(9522), + [anon_sym_PLUS] = ACTIONS(9524), + [anon_sym_DASH] = ACTIONS(9522), + [anon_sym_QMARK] = ACTIONS(9524), + [aux_sym_close_statement_token1] = ACTIONS(9522), + [aux_sym_put_statement_token1] = ACTIONS(9522), + [aux_sym_unlock_statement_token1] = ACTIONS(9522), + [aux_sym_seek_statement_token1] = ACTIONS(9522), + [sym_reset_statement] = ACTIONS(9522), + [aux_sym_raise_event_statement_token1] = ACTIONS(9522), + [sym_stop_statement] = ACTIONS(9522), + [sym_beep_statement] = ACTIONS(9522), + [aux_sym_unload_statement_token1] = ACTIONS(9522), + [aux_sym_def_type_statement_token1] = ACTIONS(9522), + [aux_sym_def_type_statement_token2] = ACTIONS(9522), + [aux_sym_def_type_statement_token3] = ACTIONS(9522), + [aux_sym_def_type_statement_token4] = ACTIONS(9522), + [aux_sym_def_type_statement_token5] = ACTIONS(9522), + [aux_sym_def_type_statement_token6] = ACTIONS(9522), + [aux_sym_def_type_statement_token7] = ACTIONS(9522), + [aux_sym_def_type_statement_token8] = ACTIONS(9522), + [aux_sym_def_type_statement_token9] = ACTIONS(9522), + [aux_sym_def_type_statement_token10] = ACTIONS(9522), + [aux_sym_def_type_statement_token11] = ACTIONS(9522), + [aux_sym_def_type_statement_token12] = ACTIONS(9522), + [aux_sym_def_type_statement_token13] = ACTIONS(9522), + [aux_sym_def_type_statement_token14] = ACTIONS(9522), + [aux_sym_call_statement_token1] = ACTIONS(9522), + [sym__ambiguous_call_statement] = ACTIONS(9522), + [aux_sym_addressof_expression_token1] = ACTIONS(9522), + [aux_sym_type_of_expression_token1] = ACTIONS(9522), + [aux_sym_unary_expression_token1] = ACTIONS(9522), + [sym_string_literal] = ACTIONS(9524), + [sym_number_literal] = ACTIONS(9524), + [aux_sym_boolean_literal_token1] = ACTIONS(9522), + [aux_sym_boolean_literal_token2] = ACTIONS(9522), + [sym_nothing_literal] = ACTIONS(9522), + [sym_null_literal] = ACTIONS(9522), + [sym_empty_literal] = ACTIONS(9522), + [sym_date_literal] = ACTIONS(9524), + [anon_sym_POUND] = ACTIONS(9522), + }, + [STATE(7005)] = { + [sym_identifier] = ACTIONS(9526), + [sym_newline] = ACTIONS(9528), + [anon_sym_COLON] = ACTIONS(9528), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9526), + [aux_sym_frm_property_statement_token1] = ACTIONS(9526), + [anon_sym_DOT] = ACTIONS(9526), + [anon_sym_BANG] = ACTIONS(9528), + [aux_sym__attribute_identifier_token1] = ACTIONS(9526), + [aux_sym_option_statement_token3] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9526), + [aux_sym_preprocessor_const_token1] = ACTIONS(9526), + [sym_static_modifier] = ACTIONS(9526), + [sym__dim_keyword] = ACTIONS(9526), + [sym__redim_keyword] = ACTIONS(9526), + [aux_sym_get_accessor_token1] = ACTIONS(9526), + [aux_sym_set_accessor_token1] = ACTIONS(9526), + [aux_sym_const_declaration_token1] = ACTIONS(9526), + [anon_sym_LPAREN] = ACTIONS(9528), + [aux_sym_as_type_clause_token2] = ACTIONS(9526), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9526), + [aux_sym_visibility_token1] = ACTIONS(9526), + [aux_sym_visibility_token2] = ACTIONS(9526), + [aux_sym_elseif_fragment_token1] = ACTIONS(9526), + [aux_sym_else_fragment_token1] = ACTIONS(9526), + [aux_sym_select_statement_token1] = ACTIONS(9526), + [aux_sym__for_header_token1] = ACTIONS(9526), + [aux_sym_do_statement_token1] = ACTIONS(9526), + [aux_sym_do_condition_token1] = ACTIONS(9526), + [aux_sym_while_statement_token1] = ACTIONS(9526), + [aux_sym_with_statement_token1] = ACTIONS(9526), + [aux_sym_exit_statement_token1] = ACTIONS(9526), + [sym_end_statement] = ACTIONS(9528), + [aux_sym_on_goto_statement_token1] = ACTIONS(9526), + [aux_sym_on_goto_statement_token2] = ACTIONS(9526), + [aux_sym_on_error_statement_token2] = ACTIONS(9526), + [sym__ambiguous_redim_statement] = ACTIONS(9528), + [aux_sym_erase_statement_token1] = ACTIONS(9526), + [aux_sym_open_statement_token1] = ACTIONS(9526), + [aux_sym_file_mode_token2] = ACTIONS(9526), + [aux_sym_file_access_token2] = ACTIONS(9526), + [aux_sym_file_lock_token2] = ACTIONS(9526), + [aux_sym_print_statement_token1] = ACTIONS(9526), + [anon_sym_PLUS] = ACTIONS(9528), + [anon_sym_DASH] = ACTIONS(9526), + [anon_sym_QMARK] = ACTIONS(9528), + [aux_sym_close_statement_token1] = ACTIONS(9526), + [aux_sym_put_statement_token1] = ACTIONS(9526), + [aux_sym_unlock_statement_token1] = ACTIONS(9526), + [aux_sym_seek_statement_token1] = ACTIONS(9526), + [sym_reset_statement] = ACTIONS(9526), + [aux_sym_raise_event_statement_token1] = ACTIONS(9526), + [sym_stop_statement] = ACTIONS(9526), + [sym_beep_statement] = ACTIONS(9526), + [aux_sym_unload_statement_token1] = ACTIONS(9526), + [aux_sym_def_type_statement_token1] = ACTIONS(9526), + [aux_sym_def_type_statement_token2] = ACTIONS(9526), + [aux_sym_def_type_statement_token3] = ACTIONS(9526), + [aux_sym_def_type_statement_token4] = ACTIONS(9526), + [aux_sym_def_type_statement_token5] = ACTIONS(9526), + [aux_sym_def_type_statement_token6] = ACTIONS(9526), + [aux_sym_def_type_statement_token7] = ACTIONS(9526), + [aux_sym_def_type_statement_token8] = ACTIONS(9526), + [aux_sym_def_type_statement_token9] = ACTIONS(9526), + [aux_sym_def_type_statement_token10] = ACTIONS(9526), + [aux_sym_def_type_statement_token11] = ACTIONS(9526), + [aux_sym_def_type_statement_token12] = ACTIONS(9526), + [aux_sym_def_type_statement_token13] = ACTIONS(9526), + [aux_sym_def_type_statement_token14] = ACTIONS(9526), + [aux_sym_call_statement_token1] = ACTIONS(9526), + [sym__ambiguous_call_statement] = ACTIONS(9526), + [aux_sym_addressof_expression_token1] = ACTIONS(9526), + [aux_sym_type_of_expression_token1] = ACTIONS(9526), + [aux_sym_unary_expression_token1] = ACTIONS(9526), + [sym_string_literal] = ACTIONS(9528), + [sym_number_literal] = ACTIONS(9528), + [aux_sym_boolean_literal_token1] = ACTIONS(9526), + [aux_sym_boolean_literal_token2] = ACTIONS(9526), + [sym_nothing_literal] = ACTIONS(9526), + [sym_null_literal] = ACTIONS(9526), + [sym_empty_literal] = ACTIONS(9526), + [sym_date_literal] = ACTIONS(9528), + [anon_sym_POUND] = ACTIONS(9526), + }, + [STATE(7006)] = { + [sym_identifier] = ACTIONS(9455), + [sym_newline] = ACTIONS(9457), + [anon_sym_COLON] = ACTIONS(9457), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9455), + [aux_sym_frm_property_statement_token1] = ACTIONS(9455), + [anon_sym_DOT] = ACTIONS(9455), + [anon_sym_BANG] = ACTIONS(9457), + [aux_sym__attribute_identifier_token1] = ACTIONS(9455), + [aux_sym_option_statement_token3] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9455), + [aux_sym_preprocessor_const_token1] = ACTIONS(9455), + [sym_static_modifier] = ACTIONS(9455), + [sym__dim_keyword] = ACTIONS(9455), + [sym__redim_keyword] = ACTIONS(9455), + [aux_sym_get_accessor_token1] = ACTIONS(9455), + [aux_sym_set_accessor_token1] = ACTIONS(9455), + [aux_sym_const_declaration_token1] = ACTIONS(9455), + [anon_sym_LPAREN] = ACTIONS(9457), + [aux_sym_as_type_clause_token2] = ACTIONS(9455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9455), + [aux_sym_visibility_token1] = ACTIONS(9455), + [aux_sym_visibility_token2] = ACTIONS(9455), + [aux_sym_elseif_fragment_token1] = ACTIONS(9455), + [aux_sym_else_fragment_token1] = ACTIONS(9455), + [aux_sym_select_statement_token1] = ACTIONS(9455), + [aux_sym__for_header_token1] = ACTIONS(9455), + [aux_sym_do_statement_token1] = ACTIONS(9455), + [aux_sym_do_condition_token1] = ACTIONS(9455), + [aux_sym_with_statement_token1] = ACTIONS(9455), + [aux_sym_exit_statement_token1] = ACTIONS(9455), + [sym_end_statement] = ACTIONS(9457), + [aux_sym_on_goto_statement_token1] = ACTIONS(9455), + [aux_sym_on_goto_statement_token2] = ACTIONS(9455), + [aux_sym_on_error_statement_token2] = ACTIONS(9455), + [sym__ambiguous_redim_statement] = ACTIONS(9457), + [aux_sym_erase_statement_token1] = ACTIONS(9455), + [aux_sym_open_statement_token1] = ACTIONS(9455), + [aux_sym_file_mode_token2] = ACTIONS(9455), + [aux_sym_file_access_token2] = ACTIONS(9455), + [aux_sym_file_lock_token2] = ACTIONS(9455), + [aux_sym_print_statement_token1] = ACTIONS(9455), + [anon_sym_PLUS] = ACTIONS(9457), + [anon_sym_DASH] = ACTIONS(9455), + [anon_sym_QMARK] = ACTIONS(9457), + [aux_sym_close_statement_token1] = ACTIONS(9455), + [aux_sym_put_statement_token1] = ACTIONS(9455), + [aux_sym_unlock_statement_token1] = ACTIONS(9455), + [aux_sym_seek_statement_token1] = ACTIONS(9455), + [sym_reset_statement] = ACTIONS(9455), + [aux_sym_raise_event_statement_token1] = ACTIONS(9455), + [sym_stop_statement] = ACTIONS(9455), + [sym_beep_statement] = ACTIONS(9455), + [aux_sym_unload_statement_token1] = ACTIONS(9455), + [aux_sym_def_type_statement_token1] = ACTIONS(9455), + [aux_sym_def_type_statement_token2] = ACTIONS(9455), + [aux_sym_def_type_statement_token3] = ACTIONS(9455), + [aux_sym_def_type_statement_token4] = ACTIONS(9455), + [aux_sym_def_type_statement_token5] = ACTIONS(9455), + [aux_sym_def_type_statement_token6] = ACTIONS(9455), + [aux_sym_def_type_statement_token7] = ACTIONS(9455), + [aux_sym_def_type_statement_token8] = ACTIONS(9455), + [aux_sym_def_type_statement_token9] = ACTIONS(9455), + [aux_sym_def_type_statement_token10] = ACTIONS(9455), + [aux_sym_def_type_statement_token11] = ACTIONS(9455), + [aux_sym_def_type_statement_token12] = ACTIONS(9455), + [aux_sym_def_type_statement_token13] = ACTIONS(9455), + [aux_sym_def_type_statement_token14] = ACTIONS(9455), + [aux_sym_call_statement_token1] = ACTIONS(9455), + [sym__ambiguous_call_statement] = ACTIONS(9455), + [aux_sym_addressof_expression_token1] = ACTIONS(9455), + [aux_sym_type_of_expression_token1] = ACTIONS(9455), + [aux_sym_unary_expression_token1] = ACTIONS(9455), + [sym_string_literal] = ACTIONS(9457), + [sym_number_literal] = ACTIONS(9457), + [aux_sym_boolean_literal_token1] = ACTIONS(9455), + [aux_sym_boolean_literal_token2] = ACTIONS(9455), + [sym_nothing_literal] = ACTIONS(9455), + [sym_null_literal] = ACTIONS(9455), + [sym_empty_literal] = ACTIONS(9455), + [sym_date_literal] = ACTIONS(9457), + [anon_sym_POUND] = ACTIONS(9455), + }, + [STATE(7007)] = { + [sym_argument_list] = STATE(7257), + [sym_identifier] = ACTIONS(8899), + [sym_newline] = ACTIONS(8901), + [anon_sym_COLON] = ACTIONS(8901), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8899), + [aux_sym_frm_property_statement_token1] = ACTIONS(8899), + [anon_sym_DOT] = ACTIONS(10994), + [anon_sym_BANG] = ACTIONS(10996), + [aux_sym__attribute_identifier_token1] = ACTIONS(8899), + [aux_sym_option_statement_token3] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8899), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8899), + [aux_sym_preprocessor_const_token1] = ACTIONS(8899), + [sym_static_modifier] = ACTIONS(8899), + [sym__dim_keyword] = ACTIONS(8899), + [sym__redim_keyword] = ACTIONS(8899), + [aux_sym_get_accessor_token1] = ACTIONS(8899), + [aux_sym_set_accessor_token1] = ACTIONS(8899), + [aux_sym_const_declaration_token1] = ACTIONS(8899), + [anon_sym_LPAREN] = ACTIONS(10897), + [aux_sym_as_type_clause_token2] = ACTIONS(8899), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8899), + [aux_sym_visibility_token1] = ACTIONS(8899), + [aux_sym_visibility_token2] = ACTIONS(8899), + [aux_sym_elseif_fragment_token1] = ACTIONS(8899), + [aux_sym_else_fragment_token1] = ACTIONS(8899), + [aux_sym_select_statement_token1] = ACTIONS(8899), + [aux_sym__for_header_token1] = ACTIONS(8899), + [aux_sym_do_statement_token1] = ACTIONS(8899), + [aux_sym_do_condition_token1] = ACTIONS(8899), + [aux_sym_with_statement_token1] = ACTIONS(8899), + [aux_sym_exit_statement_token1] = ACTIONS(8899), + [sym_end_statement] = ACTIONS(8901), + [aux_sym_on_goto_statement_token1] = ACTIONS(8899), + [aux_sym_on_goto_statement_token2] = ACTIONS(8899), + [aux_sym_on_error_statement_token2] = ACTIONS(8899), + [sym__ambiguous_redim_statement] = ACTIONS(8901), + [aux_sym_erase_statement_token1] = ACTIONS(8899), + [aux_sym_open_statement_token1] = ACTIONS(8899), + [aux_sym_file_mode_token2] = ACTIONS(8899), + [aux_sym_file_access_token2] = ACTIONS(8899), + [aux_sym_file_lock_token2] = ACTIONS(8899), + [aux_sym_print_statement_token1] = ACTIONS(8899), + [anon_sym_PLUS] = ACTIONS(8901), + [anon_sym_DASH] = ACTIONS(8899), + [anon_sym_QMARK] = ACTIONS(8901), + [aux_sym_close_statement_token1] = ACTIONS(8899), + [aux_sym_put_statement_token1] = ACTIONS(8899), + [aux_sym_unlock_statement_token1] = ACTIONS(8899), + [aux_sym_seek_statement_token1] = ACTIONS(8899), + [sym_reset_statement] = ACTIONS(8899), + [aux_sym_raise_event_statement_token1] = ACTIONS(8899), + [sym_stop_statement] = ACTIONS(8899), + [sym_beep_statement] = ACTIONS(8899), + [aux_sym_unload_statement_token1] = ACTIONS(8899), + [aux_sym_def_type_statement_token1] = ACTIONS(8899), + [aux_sym_def_type_statement_token2] = ACTIONS(8899), + [aux_sym_def_type_statement_token3] = ACTIONS(8899), + [aux_sym_def_type_statement_token4] = ACTIONS(8899), + [aux_sym_def_type_statement_token5] = ACTIONS(8899), + [aux_sym_def_type_statement_token6] = ACTIONS(8899), + [aux_sym_def_type_statement_token7] = ACTIONS(8899), + [aux_sym_def_type_statement_token8] = ACTIONS(8899), + [aux_sym_def_type_statement_token9] = ACTIONS(8899), + [aux_sym_def_type_statement_token10] = ACTIONS(8899), + [aux_sym_def_type_statement_token11] = ACTIONS(8899), + [aux_sym_def_type_statement_token12] = ACTIONS(8899), + [aux_sym_def_type_statement_token13] = ACTIONS(8899), + [aux_sym_def_type_statement_token14] = ACTIONS(8899), + [aux_sym_call_statement_token1] = ACTIONS(8899), + [sym__ambiguous_call_statement] = ACTIONS(8899), + [aux_sym_addressof_expression_token1] = ACTIONS(8899), + [aux_sym_type_of_expression_token1] = ACTIONS(8899), + [aux_sym_unary_expression_token1] = ACTIONS(8899), + [sym_string_literal] = ACTIONS(8901), + [sym_number_literal] = ACTIONS(8901), + [aux_sym_boolean_literal_token1] = ACTIONS(8899), + [aux_sym_boolean_literal_token2] = ACTIONS(8899), + [sym_nothing_literal] = ACTIONS(8899), + [sym_null_literal] = ACTIONS(8899), + [sym_empty_literal] = ACTIONS(8899), + [sym_date_literal] = ACTIONS(8901), + [anon_sym_POUND] = ACTIONS(8899), + }, + [STATE(7008)] = { + [sym_identifier] = ACTIONS(9142), + [sym_newline] = ACTIONS(9144), + [anon_sym_COLON] = ACTIONS(9144), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9142), + [aux_sym_frm_property_statement_token1] = ACTIONS(9142), + [anon_sym_DOT] = ACTIONS(9142), + [anon_sym_BANG] = ACTIONS(9144), + [aux_sym__attribute_identifier_token1] = ACTIONS(9142), + [aux_sym_option_statement_token3] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9142), + [aux_sym_preprocessor_const_token1] = ACTIONS(9142), + [sym_static_modifier] = ACTIONS(9142), + [sym__dim_keyword] = ACTIONS(9142), + [sym__redim_keyword] = ACTIONS(9142), + [aux_sym_get_accessor_token1] = ACTIONS(9142), + [aux_sym_set_accessor_token1] = ACTIONS(9142), + [aux_sym_const_declaration_token1] = ACTIONS(9142), + [anon_sym_LPAREN] = ACTIONS(9144), + [aux_sym_as_type_clause_token2] = ACTIONS(9142), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9142), + [aux_sym_visibility_token1] = ACTIONS(9142), + [aux_sym_visibility_token2] = ACTIONS(9142), + [aux_sym_elseif_fragment_token1] = ACTIONS(9142), + [aux_sym_else_fragment_token1] = ACTIONS(9142), + [aux_sym_select_statement_token1] = ACTIONS(9142), + [aux_sym__for_header_token1] = ACTIONS(9142), + [aux_sym_do_statement_token1] = ACTIONS(9142), + [aux_sym_do_condition_token1] = ACTIONS(9142), + [aux_sym_with_statement_token1] = ACTIONS(9142), + [aux_sym_exit_statement_token1] = ACTIONS(9142), + [sym_end_statement] = ACTIONS(9144), + [aux_sym_on_goto_statement_token1] = ACTIONS(9142), + [aux_sym_on_goto_statement_token2] = ACTIONS(9142), + [aux_sym_on_error_statement_token2] = ACTIONS(9142), + [sym__ambiguous_redim_statement] = ACTIONS(9144), + [aux_sym_erase_statement_token1] = ACTIONS(9142), + [aux_sym_open_statement_token1] = ACTIONS(9142), + [aux_sym_file_mode_token2] = ACTIONS(9142), + [aux_sym_file_access_token2] = ACTIONS(9142), + [aux_sym_file_lock_token2] = ACTIONS(9142), + [aux_sym_print_statement_token1] = ACTIONS(9142), + [anon_sym_PLUS] = ACTIONS(9144), + [anon_sym_DASH] = ACTIONS(9142), + [anon_sym_QMARK] = ACTIONS(9144), + [aux_sym_close_statement_token1] = ACTIONS(9142), + [aux_sym_put_statement_token1] = ACTIONS(9142), + [aux_sym_unlock_statement_token1] = ACTIONS(9142), + [aux_sym_seek_statement_token1] = ACTIONS(9142), + [sym_reset_statement] = ACTIONS(9142), + [aux_sym_raise_event_statement_token1] = ACTIONS(9142), + [sym_stop_statement] = ACTIONS(9142), + [sym_beep_statement] = ACTIONS(9142), + [aux_sym_unload_statement_token1] = ACTIONS(9142), + [aux_sym_def_type_statement_token1] = ACTIONS(9142), + [aux_sym_def_type_statement_token2] = ACTIONS(9142), + [aux_sym_def_type_statement_token3] = ACTIONS(9142), + [aux_sym_def_type_statement_token4] = ACTIONS(9142), + [aux_sym_def_type_statement_token5] = ACTIONS(9142), + [aux_sym_def_type_statement_token6] = ACTIONS(9142), + [aux_sym_def_type_statement_token7] = ACTIONS(9142), + [aux_sym_def_type_statement_token8] = ACTIONS(9142), + [aux_sym_def_type_statement_token9] = ACTIONS(9142), + [aux_sym_def_type_statement_token10] = ACTIONS(9142), + [aux_sym_def_type_statement_token11] = ACTIONS(9142), + [aux_sym_def_type_statement_token12] = ACTIONS(9142), + [aux_sym_def_type_statement_token13] = ACTIONS(9142), + [aux_sym_def_type_statement_token14] = ACTIONS(9142), + [aux_sym_call_statement_token1] = ACTIONS(9142), + [sym__ambiguous_call_statement] = ACTIONS(9142), + [aux_sym_addressof_expression_token1] = ACTIONS(9142), + [aux_sym_type_of_expression_token1] = ACTIONS(9142), + [aux_sym_unary_expression_token1] = ACTIONS(9142), + [sym_string_literal] = ACTIONS(9144), + [sym_number_literal] = ACTIONS(9144), + [aux_sym_boolean_literal_token1] = ACTIONS(9142), + [aux_sym_boolean_literal_token2] = ACTIONS(9142), + [sym_nothing_literal] = ACTIONS(9142), + [sym_null_literal] = ACTIONS(9142), + [sym_empty_literal] = ACTIONS(9142), + [sym_date_literal] = ACTIONS(9144), + [anon_sym_POUND] = ACTIONS(9142), + }, + [STATE(7009)] = { + [sym_identifier] = ACTIONS(9818), + [sym_newline] = ACTIONS(9820), + [anon_sym_COLON] = ACTIONS(9820), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9818), + [aux_sym_frm_property_statement_token1] = ACTIONS(9818), + [anon_sym_DOT] = ACTIONS(9818), + [anon_sym_BANG] = ACTIONS(9820), + [aux_sym__attribute_identifier_token1] = ACTIONS(9818), + [aux_sym_option_statement_token3] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9818), + [aux_sym_preprocessor_const_token1] = ACTIONS(9818), + [sym_static_modifier] = ACTIONS(9818), + [sym__dim_keyword] = ACTIONS(9818), + [sym__redim_keyword] = ACTIONS(9818), + [aux_sym_get_accessor_token1] = ACTIONS(9818), + [aux_sym_set_accessor_token1] = ACTIONS(9818), + [aux_sym_const_declaration_token1] = ACTIONS(9818), + [anon_sym_LPAREN] = ACTIONS(9820), + [aux_sym_as_type_clause_token2] = ACTIONS(9818), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9818), + [aux_sym_visibility_token1] = ACTIONS(9818), + [aux_sym_visibility_token2] = ACTIONS(9818), + [aux_sym_elseif_fragment_token1] = ACTIONS(9818), + [aux_sym_else_fragment_token1] = ACTIONS(9818), + [aux_sym_select_statement_token1] = ACTIONS(9818), + [aux_sym__for_header_token1] = ACTIONS(9818), + [aux_sym_do_statement_token1] = ACTIONS(9818), + [aux_sym_do_condition_token1] = ACTIONS(9818), + [aux_sym_while_statement_token1] = ACTIONS(9818), + [aux_sym_with_statement_token1] = ACTIONS(9818), + [aux_sym_exit_statement_token1] = ACTIONS(9818), + [sym_end_statement] = ACTIONS(9820), + [aux_sym_on_goto_statement_token1] = ACTIONS(9818), + [aux_sym_on_goto_statement_token2] = ACTIONS(9818), + [aux_sym_on_error_statement_token2] = ACTIONS(9818), + [sym__ambiguous_redim_statement] = ACTIONS(9820), + [aux_sym_erase_statement_token1] = ACTIONS(9818), + [aux_sym_open_statement_token1] = ACTIONS(9818), + [aux_sym_file_mode_token2] = ACTIONS(9818), + [aux_sym_file_access_token2] = ACTIONS(9818), + [aux_sym_file_lock_token2] = ACTIONS(9818), + [aux_sym_print_statement_token1] = ACTIONS(9818), + [anon_sym_PLUS] = ACTIONS(9820), + [anon_sym_DASH] = ACTIONS(9818), + [anon_sym_QMARK] = ACTIONS(9820), + [aux_sym_close_statement_token1] = ACTIONS(9818), + [aux_sym_put_statement_token1] = ACTIONS(9818), + [aux_sym_unlock_statement_token1] = ACTIONS(9818), + [aux_sym_seek_statement_token1] = ACTIONS(9818), + [sym_reset_statement] = ACTIONS(9818), + [aux_sym_raise_event_statement_token1] = ACTIONS(9818), + [sym_stop_statement] = ACTIONS(9818), + [sym_beep_statement] = ACTIONS(9818), + [aux_sym_unload_statement_token1] = ACTIONS(9818), + [aux_sym_def_type_statement_token1] = ACTIONS(9818), + [aux_sym_def_type_statement_token2] = ACTIONS(9818), + [aux_sym_def_type_statement_token3] = ACTIONS(9818), + [aux_sym_def_type_statement_token4] = ACTIONS(9818), + [aux_sym_def_type_statement_token5] = ACTIONS(9818), + [aux_sym_def_type_statement_token6] = ACTIONS(9818), + [aux_sym_def_type_statement_token7] = ACTIONS(9818), + [aux_sym_def_type_statement_token8] = ACTIONS(9818), + [aux_sym_def_type_statement_token9] = ACTIONS(9818), + [aux_sym_def_type_statement_token10] = ACTIONS(9818), + [aux_sym_def_type_statement_token11] = ACTIONS(9818), + [aux_sym_def_type_statement_token12] = ACTIONS(9818), + [aux_sym_def_type_statement_token13] = ACTIONS(9818), + [aux_sym_def_type_statement_token14] = ACTIONS(9818), + [aux_sym_call_statement_token1] = ACTIONS(9818), + [sym__ambiguous_call_statement] = ACTIONS(9818), + [aux_sym_addressof_expression_token1] = ACTIONS(9818), + [aux_sym_type_of_expression_token1] = ACTIONS(9818), + [aux_sym_unary_expression_token1] = ACTIONS(9818), + [sym_string_literal] = ACTIONS(9820), + [sym_number_literal] = ACTIONS(9820), + [aux_sym_boolean_literal_token1] = ACTIONS(9818), + [aux_sym_boolean_literal_token2] = ACTIONS(9818), + [sym_nothing_literal] = ACTIONS(9818), + [sym_null_literal] = ACTIONS(9818), + [sym_empty_literal] = ACTIONS(9818), + [sym_date_literal] = ACTIONS(9820), + [anon_sym_POUND] = ACTIONS(9818), + }, + [STATE(7010)] = { + [sym_identifier] = ACTIONS(9532), + [sym_newline] = ACTIONS(9534), + [anon_sym_COLON] = ACTIONS(9534), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9532), + [aux_sym_frm_property_statement_token1] = ACTIONS(9532), + [anon_sym_DOT] = ACTIONS(9532), + [anon_sym_BANG] = ACTIONS(9534), + [aux_sym__attribute_identifier_token1] = ACTIONS(9532), + [aux_sym_option_statement_token3] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9532), + [aux_sym_preprocessor_const_token1] = ACTIONS(9532), + [sym_static_modifier] = ACTIONS(9532), + [sym__dim_keyword] = ACTIONS(9532), + [sym__redim_keyword] = ACTIONS(9532), + [aux_sym_get_accessor_token1] = ACTIONS(9532), + [aux_sym_set_accessor_token1] = ACTIONS(9532), + [aux_sym_const_declaration_token1] = ACTIONS(9532), + [anon_sym_LPAREN] = ACTIONS(9534), + [aux_sym_as_type_clause_token2] = ACTIONS(9532), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9532), + [aux_sym_visibility_token1] = ACTIONS(9532), + [aux_sym_visibility_token2] = ACTIONS(9532), + [aux_sym_elseif_fragment_token1] = ACTIONS(9532), + [aux_sym_else_fragment_token1] = ACTIONS(9532), + [aux_sym_select_statement_token1] = ACTIONS(9532), + [aux_sym__for_header_token1] = ACTIONS(9532), + [aux_sym_do_statement_token1] = ACTIONS(9532), + [aux_sym_do_condition_token1] = ACTIONS(9532), + [aux_sym_while_statement_token1] = ACTIONS(9532), + [aux_sym_with_statement_token1] = ACTIONS(9532), + [aux_sym_exit_statement_token1] = ACTIONS(9532), + [sym_end_statement] = ACTIONS(9534), + [aux_sym_on_goto_statement_token1] = ACTIONS(9532), + [aux_sym_on_goto_statement_token2] = ACTIONS(9532), + [aux_sym_on_error_statement_token2] = ACTIONS(9532), + [sym__ambiguous_redim_statement] = ACTIONS(9534), + [aux_sym_erase_statement_token1] = ACTIONS(9532), + [aux_sym_open_statement_token1] = ACTIONS(9532), + [aux_sym_file_mode_token2] = ACTIONS(9532), + [aux_sym_file_access_token2] = ACTIONS(9532), + [aux_sym_file_lock_token2] = ACTIONS(9532), + [aux_sym_print_statement_token1] = ACTIONS(9532), + [anon_sym_PLUS] = ACTIONS(9534), + [anon_sym_DASH] = ACTIONS(9532), + [anon_sym_QMARK] = ACTIONS(9534), + [aux_sym_close_statement_token1] = ACTIONS(9532), + [aux_sym_put_statement_token1] = ACTIONS(9532), + [aux_sym_unlock_statement_token1] = ACTIONS(9532), + [aux_sym_seek_statement_token1] = ACTIONS(9532), + [sym_reset_statement] = ACTIONS(9532), + [aux_sym_raise_event_statement_token1] = ACTIONS(9532), + [sym_stop_statement] = ACTIONS(9532), + [sym_beep_statement] = ACTIONS(9532), + [aux_sym_unload_statement_token1] = ACTIONS(9532), + [aux_sym_def_type_statement_token1] = ACTIONS(9532), + [aux_sym_def_type_statement_token2] = ACTIONS(9532), + [aux_sym_def_type_statement_token3] = ACTIONS(9532), + [aux_sym_def_type_statement_token4] = ACTIONS(9532), + [aux_sym_def_type_statement_token5] = ACTIONS(9532), + [aux_sym_def_type_statement_token6] = ACTIONS(9532), + [aux_sym_def_type_statement_token7] = ACTIONS(9532), + [aux_sym_def_type_statement_token8] = ACTIONS(9532), + [aux_sym_def_type_statement_token9] = ACTIONS(9532), + [aux_sym_def_type_statement_token10] = ACTIONS(9532), + [aux_sym_def_type_statement_token11] = ACTIONS(9532), + [aux_sym_def_type_statement_token12] = ACTIONS(9532), + [aux_sym_def_type_statement_token13] = ACTIONS(9532), + [aux_sym_def_type_statement_token14] = ACTIONS(9532), + [aux_sym_call_statement_token1] = ACTIONS(9532), + [sym__ambiguous_call_statement] = ACTIONS(9532), + [aux_sym_addressof_expression_token1] = ACTIONS(9532), + [aux_sym_type_of_expression_token1] = ACTIONS(9532), + [aux_sym_unary_expression_token1] = ACTIONS(9532), + [sym_string_literal] = ACTIONS(9534), + [sym_number_literal] = ACTIONS(9534), + [aux_sym_boolean_literal_token1] = ACTIONS(9532), + [aux_sym_boolean_literal_token2] = ACTIONS(9532), + [sym_nothing_literal] = ACTIONS(9532), + [sym_null_literal] = ACTIONS(9532), + [sym_empty_literal] = ACTIONS(9532), + [sym_date_literal] = ACTIONS(9534), + [anon_sym_POUND] = ACTIONS(9532), + }, + [STATE(7011)] = { + [sym_identifier] = ACTIONS(9536), + [sym_newline] = ACTIONS(9538), + [anon_sym_COLON] = ACTIONS(9538), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9536), + [aux_sym_frm_property_statement_token1] = ACTIONS(9536), + [anon_sym_DOT] = ACTIONS(9536), + [anon_sym_BANG] = ACTIONS(9538), + [aux_sym__attribute_identifier_token1] = ACTIONS(9536), + [aux_sym_option_statement_token3] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9536), + [aux_sym_preprocessor_const_token1] = ACTIONS(9536), + [sym_static_modifier] = ACTIONS(9536), + [sym__dim_keyword] = ACTIONS(9536), + [sym__redim_keyword] = ACTIONS(9536), + [aux_sym_get_accessor_token1] = ACTIONS(9536), + [aux_sym_set_accessor_token1] = ACTIONS(9536), + [aux_sym_const_declaration_token1] = ACTIONS(9536), + [anon_sym_LPAREN] = ACTIONS(9538), + [aux_sym_as_type_clause_token2] = ACTIONS(9536), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9536), + [aux_sym_visibility_token1] = ACTIONS(9536), + [aux_sym_visibility_token2] = ACTIONS(9536), + [aux_sym_elseif_fragment_token1] = ACTIONS(9536), + [aux_sym_else_fragment_token1] = ACTIONS(9536), + [aux_sym_select_statement_token1] = ACTIONS(9536), + [aux_sym__for_header_token1] = ACTIONS(9536), + [aux_sym_do_statement_token1] = ACTIONS(9536), + [aux_sym_do_condition_token1] = ACTIONS(9536), + [aux_sym_while_statement_token1] = ACTIONS(9536), + [aux_sym_with_statement_token1] = ACTIONS(9536), + [aux_sym_exit_statement_token1] = ACTIONS(9536), + [sym_end_statement] = ACTIONS(9538), + [aux_sym_on_goto_statement_token1] = ACTIONS(9536), + [aux_sym_on_goto_statement_token2] = ACTIONS(9536), + [aux_sym_on_error_statement_token2] = ACTIONS(9536), + [sym__ambiguous_redim_statement] = ACTIONS(9538), + [aux_sym_erase_statement_token1] = ACTIONS(9536), + [aux_sym_open_statement_token1] = ACTIONS(9536), + [aux_sym_file_mode_token2] = ACTIONS(9536), + [aux_sym_file_access_token2] = ACTIONS(9536), + [aux_sym_file_lock_token2] = ACTIONS(9536), + [aux_sym_print_statement_token1] = ACTIONS(9536), + [anon_sym_PLUS] = ACTIONS(9538), + [anon_sym_DASH] = ACTIONS(9536), + [anon_sym_QMARK] = ACTIONS(9538), + [aux_sym_close_statement_token1] = ACTIONS(9536), + [aux_sym_put_statement_token1] = ACTIONS(9536), + [aux_sym_unlock_statement_token1] = ACTIONS(9536), + [aux_sym_seek_statement_token1] = ACTIONS(9536), + [sym_reset_statement] = ACTIONS(9536), + [aux_sym_raise_event_statement_token1] = ACTIONS(9536), + [sym_stop_statement] = ACTIONS(9536), + [sym_beep_statement] = ACTIONS(9536), + [aux_sym_unload_statement_token1] = ACTIONS(9536), + [aux_sym_def_type_statement_token1] = ACTIONS(9536), + [aux_sym_def_type_statement_token2] = ACTIONS(9536), + [aux_sym_def_type_statement_token3] = ACTIONS(9536), + [aux_sym_def_type_statement_token4] = ACTIONS(9536), + [aux_sym_def_type_statement_token5] = ACTIONS(9536), + [aux_sym_def_type_statement_token6] = ACTIONS(9536), + [aux_sym_def_type_statement_token7] = ACTIONS(9536), + [aux_sym_def_type_statement_token8] = ACTIONS(9536), + [aux_sym_def_type_statement_token9] = ACTIONS(9536), + [aux_sym_def_type_statement_token10] = ACTIONS(9536), + [aux_sym_def_type_statement_token11] = ACTIONS(9536), + [aux_sym_def_type_statement_token12] = ACTIONS(9536), + [aux_sym_def_type_statement_token13] = ACTIONS(9536), + [aux_sym_def_type_statement_token14] = ACTIONS(9536), + [aux_sym_call_statement_token1] = ACTIONS(9536), + [sym__ambiguous_call_statement] = ACTIONS(9536), + [aux_sym_addressof_expression_token1] = ACTIONS(9536), + [aux_sym_type_of_expression_token1] = ACTIONS(9536), + [aux_sym_unary_expression_token1] = ACTIONS(9536), + [sym_string_literal] = ACTIONS(9538), + [sym_number_literal] = ACTIONS(9538), + [aux_sym_boolean_literal_token1] = ACTIONS(9536), + [aux_sym_boolean_literal_token2] = ACTIONS(9536), + [sym_nothing_literal] = ACTIONS(9536), + [sym_null_literal] = ACTIONS(9536), + [sym_empty_literal] = ACTIONS(9536), + [sym_date_literal] = ACTIONS(9538), + [anon_sym_POUND] = ACTIONS(9536), + }, + [STATE(7012)] = { + [sym_identifier] = ACTIONS(9542), + [sym_newline] = ACTIONS(9544), + [anon_sym_COLON] = ACTIONS(9544), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9542), + [aux_sym_frm_property_statement_token1] = ACTIONS(9542), + [anon_sym_DOT] = ACTIONS(9542), + [anon_sym_BANG] = ACTIONS(9544), + [aux_sym__attribute_identifier_token1] = ACTIONS(9542), + [aux_sym_option_statement_token3] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9542), + [aux_sym_preprocessor_const_token1] = ACTIONS(9542), + [sym_static_modifier] = ACTIONS(9542), + [sym__dim_keyword] = ACTIONS(9542), + [sym__redim_keyword] = ACTIONS(9542), + [aux_sym_get_accessor_token1] = ACTIONS(9542), + [aux_sym_set_accessor_token1] = ACTIONS(9542), + [aux_sym_const_declaration_token1] = ACTIONS(9542), + [anon_sym_LPAREN] = ACTIONS(9544), + [aux_sym_as_type_clause_token2] = ACTIONS(9542), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9542), + [aux_sym_visibility_token1] = ACTIONS(9542), + [aux_sym_visibility_token2] = ACTIONS(9542), + [aux_sym_elseif_fragment_token1] = ACTIONS(9542), + [aux_sym_else_fragment_token1] = ACTIONS(9542), + [aux_sym_select_statement_token1] = ACTIONS(9542), + [aux_sym__for_header_token1] = ACTIONS(9542), + [aux_sym_do_statement_token1] = ACTIONS(9542), + [aux_sym_do_condition_token1] = ACTIONS(9542), + [aux_sym_while_statement_token1] = ACTIONS(9542), + [aux_sym_with_statement_token1] = ACTIONS(9542), + [aux_sym_exit_statement_token1] = ACTIONS(9542), + [sym_end_statement] = ACTIONS(9544), + [aux_sym_on_goto_statement_token1] = ACTIONS(9542), + [aux_sym_on_goto_statement_token2] = ACTIONS(9542), + [aux_sym_on_error_statement_token2] = ACTIONS(9542), + [sym__ambiguous_redim_statement] = ACTIONS(9544), + [aux_sym_erase_statement_token1] = ACTIONS(9542), + [aux_sym_open_statement_token1] = ACTIONS(9542), + [aux_sym_file_mode_token2] = ACTIONS(9542), + [aux_sym_file_access_token2] = ACTIONS(9542), + [aux_sym_file_lock_token2] = ACTIONS(9542), + [aux_sym_print_statement_token1] = ACTIONS(9542), + [anon_sym_PLUS] = ACTIONS(9544), + [anon_sym_DASH] = ACTIONS(9542), + [anon_sym_QMARK] = ACTIONS(9544), + [aux_sym_close_statement_token1] = ACTIONS(9542), + [aux_sym_put_statement_token1] = ACTIONS(9542), + [aux_sym_unlock_statement_token1] = ACTIONS(9542), + [aux_sym_seek_statement_token1] = ACTIONS(9542), + [sym_reset_statement] = ACTIONS(9542), + [aux_sym_raise_event_statement_token1] = ACTIONS(9542), + [sym_stop_statement] = ACTIONS(9542), + [sym_beep_statement] = ACTIONS(9542), + [aux_sym_unload_statement_token1] = ACTIONS(9542), + [aux_sym_def_type_statement_token1] = ACTIONS(9542), + [aux_sym_def_type_statement_token2] = ACTIONS(9542), + [aux_sym_def_type_statement_token3] = ACTIONS(9542), + [aux_sym_def_type_statement_token4] = ACTIONS(9542), + [aux_sym_def_type_statement_token5] = ACTIONS(9542), + [aux_sym_def_type_statement_token6] = ACTIONS(9542), + [aux_sym_def_type_statement_token7] = ACTIONS(9542), + [aux_sym_def_type_statement_token8] = ACTIONS(9542), + [aux_sym_def_type_statement_token9] = ACTIONS(9542), + [aux_sym_def_type_statement_token10] = ACTIONS(9542), + [aux_sym_def_type_statement_token11] = ACTIONS(9542), + [aux_sym_def_type_statement_token12] = ACTIONS(9542), + [aux_sym_def_type_statement_token13] = ACTIONS(9542), + [aux_sym_def_type_statement_token14] = ACTIONS(9542), + [aux_sym_call_statement_token1] = ACTIONS(9542), + [sym__ambiguous_call_statement] = ACTIONS(9542), + [aux_sym_addressof_expression_token1] = ACTIONS(9542), + [aux_sym_type_of_expression_token1] = ACTIONS(9542), + [aux_sym_unary_expression_token1] = ACTIONS(9542), + [sym_string_literal] = ACTIONS(9544), + [sym_number_literal] = ACTIONS(9544), + [aux_sym_boolean_literal_token1] = ACTIONS(9542), + [aux_sym_boolean_literal_token2] = ACTIONS(9542), + [sym_nothing_literal] = ACTIONS(9542), + [sym_null_literal] = ACTIONS(9542), + [sym_empty_literal] = ACTIONS(9542), + [sym_date_literal] = ACTIONS(9544), + [anon_sym_POUND] = ACTIONS(9542), + }, + [STATE(7013)] = { + [sym_identifier] = ACTIONS(9142), + [sym_newline] = ACTIONS(9144), + [anon_sym_COLON] = ACTIONS(9144), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9142), + [aux_sym_frm_property_statement_token1] = ACTIONS(9142), + [anon_sym_DOT] = ACTIONS(9142), + [anon_sym_BANG] = ACTIONS(9144), + [aux_sym__attribute_identifier_token1] = ACTIONS(9142), + [aux_sym_option_statement_token3] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9142), + [aux_sym_preprocessor_const_token1] = ACTIONS(9142), + [sym_static_modifier] = ACTIONS(9142), + [sym__dim_keyword] = ACTIONS(9142), + [sym__redim_keyword] = ACTIONS(9142), + [aux_sym_get_accessor_token1] = ACTIONS(9142), + [aux_sym_set_accessor_token1] = ACTIONS(9142), + [aux_sym_const_declaration_token1] = ACTIONS(9142), + [anon_sym_LPAREN] = ACTIONS(9144), + [aux_sym_as_type_clause_token2] = ACTIONS(9142), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9142), + [aux_sym_visibility_token1] = ACTIONS(9142), + [aux_sym_visibility_token2] = ACTIONS(9142), + [aux_sym_elseif_fragment_token1] = ACTIONS(9142), + [aux_sym_else_fragment_token1] = ACTIONS(9142), + [aux_sym_select_statement_token1] = ACTIONS(9142), + [aux_sym__for_header_token1] = ACTIONS(9142), + [aux_sym_do_statement_token1] = ACTIONS(9142), + [aux_sym_do_statement_token2] = ACTIONS(9142), + [aux_sym_do_condition_token1] = ACTIONS(9142), + [aux_sym_with_statement_token1] = ACTIONS(9142), + [aux_sym_exit_statement_token1] = ACTIONS(9142), + [sym_end_statement] = ACTIONS(9144), + [aux_sym_on_goto_statement_token1] = ACTIONS(9142), + [aux_sym_on_goto_statement_token2] = ACTIONS(9142), + [aux_sym_on_error_statement_token2] = ACTIONS(9142), + [sym__ambiguous_redim_statement] = ACTIONS(9144), + [aux_sym_erase_statement_token1] = ACTIONS(9142), + [aux_sym_open_statement_token1] = ACTIONS(9142), + [aux_sym_file_mode_token2] = ACTIONS(9142), + [aux_sym_file_access_token2] = ACTIONS(9142), + [aux_sym_file_lock_token2] = ACTIONS(9142), + [aux_sym_print_statement_token1] = ACTIONS(9142), + [anon_sym_PLUS] = ACTIONS(9144), + [anon_sym_DASH] = ACTIONS(9142), + [anon_sym_QMARK] = ACTIONS(9144), + [aux_sym_close_statement_token1] = ACTIONS(9142), + [aux_sym_put_statement_token1] = ACTIONS(9142), + [aux_sym_unlock_statement_token1] = ACTIONS(9142), + [aux_sym_seek_statement_token1] = ACTIONS(9142), + [sym_reset_statement] = ACTIONS(9142), + [aux_sym_raise_event_statement_token1] = ACTIONS(9142), + [sym_stop_statement] = ACTIONS(9142), + [sym_beep_statement] = ACTIONS(9142), + [aux_sym_unload_statement_token1] = ACTIONS(9142), + [aux_sym_def_type_statement_token1] = ACTIONS(9142), + [aux_sym_def_type_statement_token2] = ACTIONS(9142), + [aux_sym_def_type_statement_token3] = ACTIONS(9142), + [aux_sym_def_type_statement_token4] = ACTIONS(9142), + [aux_sym_def_type_statement_token5] = ACTIONS(9142), + [aux_sym_def_type_statement_token6] = ACTIONS(9142), + [aux_sym_def_type_statement_token7] = ACTIONS(9142), + [aux_sym_def_type_statement_token8] = ACTIONS(9142), + [aux_sym_def_type_statement_token9] = ACTIONS(9142), + [aux_sym_def_type_statement_token10] = ACTIONS(9142), + [aux_sym_def_type_statement_token11] = ACTIONS(9142), + [aux_sym_def_type_statement_token12] = ACTIONS(9142), + [aux_sym_def_type_statement_token13] = ACTIONS(9142), + [aux_sym_def_type_statement_token14] = ACTIONS(9142), + [aux_sym_call_statement_token1] = ACTIONS(9142), + [sym__ambiguous_call_statement] = ACTIONS(9142), + [aux_sym_addressof_expression_token1] = ACTIONS(9142), + [aux_sym_type_of_expression_token1] = ACTIONS(9142), + [aux_sym_unary_expression_token1] = ACTIONS(9142), + [sym_string_literal] = ACTIONS(9144), + [sym_number_literal] = ACTIONS(9144), + [aux_sym_boolean_literal_token1] = ACTIONS(9142), + [aux_sym_boolean_literal_token2] = ACTIONS(9142), + [sym_nothing_literal] = ACTIONS(9142), + [sym_null_literal] = ACTIONS(9142), + [sym_empty_literal] = ACTIONS(9142), + [sym_date_literal] = ACTIONS(9144), + [anon_sym_POUND] = ACTIONS(9142), + }, + [STATE(7014)] = { + [sym_identifier] = ACTIONS(9546), + [sym_newline] = ACTIONS(9548), + [anon_sym_COLON] = ACTIONS(9548), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9546), + [aux_sym_frm_property_statement_token1] = ACTIONS(9546), + [anon_sym_DOT] = ACTIONS(9546), + [anon_sym_BANG] = ACTIONS(9548), + [aux_sym__attribute_identifier_token1] = ACTIONS(9546), + [aux_sym_option_statement_token3] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9546), + [aux_sym_preprocessor_const_token1] = ACTIONS(9546), + [sym_static_modifier] = ACTIONS(9546), + [sym__dim_keyword] = ACTIONS(9546), + [sym__redim_keyword] = ACTIONS(9546), + [aux_sym_get_accessor_token1] = ACTIONS(9546), + [aux_sym_set_accessor_token1] = ACTIONS(9546), + [aux_sym_const_declaration_token1] = ACTIONS(9546), + [anon_sym_LPAREN] = ACTIONS(9548), + [aux_sym_as_type_clause_token2] = ACTIONS(9546), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9546), + [aux_sym_visibility_token1] = ACTIONS(9546), + [aux_sym_visibility_token2] = ACTIONS(9546), + [aux_sym_elseif_fragment_token1] = ACTIONS(9546), + [aux_sym_else_fragment_token1] = ACTIONS(9546), + [aux_sym_select_statement_token1] = ACTIONS(9546), + [aux_sym__for_header_token1] = ACTIONS(9546), + [aux_sym_do_statement_token1] = ACTIONS(9546), + [aux_sym_do_condition_token1] = ACTIONS(9546), + [aux_sym_while_statement_token1] = ACTIONS(9546), + [aux_sym_with_statement_token1] = ACTIONS(9546), + [aux_sym_exit_statement_token1] = ACTIONS(9546), + [sym_end_statement] = ACTIONS(9548), + [aux_sym_on_goto_statement_token1] = ACTIONS(9546), + [aux_sym_on_goto_statement_token2] = ACTIONS(9546), + [aux_sym_on_error_statement_token2] = ACTIONS(9546), + [sym__ambiguous_redim_statement] = ACTIONS(9548), + [aux_sym_erase_statement_token1] = ACTIONS(9546), + [aux_sym_open_statement_token1] = ACTIONS(9546), + [aux_sym_file_mode_token2] = ACTIONS(9546), + [aux_sym_file_access_token2] = ACTIONS(9546), + [aux_sym_file_lock_token2] = ACTIONS(9546), + [aux_sym_print_statement_token1] = ACTIONS(9546), + [anon_sym_PLUS] = ACTIONS(9548), + [anon_sym_DASH] = ACTIONS(9546), + [anon_sym_QMARK] = ACTIONS(9548), + [aux_sym_close_statement_token1] = ACTIONS(9546), + [aux_sym_put_statement_token1] = ACTIONS(9546), + [aux_sym_unlock_statement_token1] = ACTIONS(9546), + [aux_sym_seek_statement_token1] = ACTIONS(9546), + [sym_reset_statement] = ACTIONS(9546), + [aux_sym_raise_event_statement_token1] = ACTIONS(9546), + [sym_stop_statement] = ACTIONS(9546), + [sym_beep_statement] = ACTIONS(9546), + [aux_sym_unload_statement_token1] = ACTIONS(9546), + [aux_sym_def_type_statement_token1] = ACTIONS(9546), + [aux_sym_def_type_statement_token2] = ACTIONS(9546), + [aux_sym_def_type_statement_token3] = ACTIONS(9546), + [aux_sym_def_type_statement_token4] = ACTIONS(9546), + [aux_sym_def_type_statement_token5] = ACTIONS(9546), + [aux_sym_def_type_statement_token6] = ACTIONS(9546), + [aux_sym_def_type_statement_token7] = ACTIONS(9546), + [aux_sym_def_type_statement_token8] = ACTIONS(9546), + [aux_sym_def_type_statement_token9] = ACTIONS(9546), + [aux_sym_def_type_statement_token10] = ACTIONS(9546), + [aux_sym_def_type_statement_token11] = ACTIONS(9546), + [aux_sym_def_type_statement_token12] = ACTIONS(9546), + [aux_sym_def_type_statement_token13] = ACTIONS(9546), + [aux_sym_def_type_statement_token14] = ACTIONS(9546), + [aux_sym_call_statement_token1] = ACTIONS(9546), + [sym__ambiguous_call_statement] = ACTIONS(9546), + [aux_sym_addressof_expression_token1] = ACTIONS(9546), + [aux_sym_type_of_expression_token1] = ACTIONS(9546), + [aux_sym_unary_expression_token1] = ACTIONS(9546), + [sym_string_literal] = ACTIONS(9548), + [sym_number_literal] = ACTIONS(9548), + [aux_sym_boolean_literal_token1] = ACTIONS(9546), + [aux_sym_boolean_literal_token2] = ACTIONS(9546), + [sym_nothing_literal] = ACTIONS(9546), + [sym_null_literal] = ACTIONS(9546), + [sym_empty_literal] = ACTIONS(9546), + [sym_date_literal] = ACTIONS(9548), + [anon_sym_POUND] = ACTIONS(9546), + }, + [STATE(7015)] = { + [sym_identifier] = ACTIONS(9451), + [sym_newline] = ACTIONS(9453), + [anon_sym_COLON] = ACTIONS(9453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9451), + [aux_sym_frm_property_statement_token1] = ACTIONS(9451), + [anon_sym_DOT] = ACTIONS(9451), + [anon_sym_BANG] = ACTIONS(9453), + [aux_sym__attribute_identifier_token1] = ACTIONS(9451), + [aux_sym_option_statement_token3] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9451), + [aux_sym_preprocessor_const_token1] = ACTIONS(9451), + [sym_static_modifier] = ACTIONS(9451), + [sym__dim_keyword] = ACTIONS(9451), + [sym__redim_keyword] = ACTIONS(9451), + [aux_sym_get_accessor_token1] = ACTIONS(9451), + [aux_sym_set_accessor_token1] = ACTIONS(9451), + [aux_sym_const_declaration_token1] = ACTIONS(9451), + [anon_sym_LPAREN] = ACTIONS(9453), + [aux_sym_as_type_clause_token2] = ACTIONS(9451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9451), + [aux_sym_visibility_token1] = ACTIONS(9451), + [aux_sym_visibility_token2] = ACTIONS(9451), + [aux_sym_elseif_fragment_token1] = ACTIONS(9451), + [aux_sym_else_fragment_token1] = ACTIONS(9451), + [aux_sym_select_statement_token1] = ACTIONS(9451), + [aux_sym_select_statement_token2] = ACTIONS(9451), + [aux_sym__for_header_token1] = ACTIONS(9451), + [aux_sym_do_statement_token1] = ACTIONS(9451), + [aux_sym_do_condition_token1] = ACTIONS(9451), + [aux_sym_with_statement_token1] = ACTIONS(9451), + [aux_sym_exit_statement_token1] = ACTIONS(9451), + [sym_end_statement] = ACTIONS(9453), + [aux_sym_on_goto_statement_token1] = ACTIONS(9451), + [aux_sym_on_goto_statement_token2] = ACTIONS(9451), + [aux_sym_on_error_statement_token2] = ACTIONS(9451), + [sym__ambiguous_redim_statement] = ACTIONS(9453), + [aux_sym_erase_statement_token1] = ACTIONS(9451), + [aux_sym_open_statement_token1] = ACTIONS(9451), + [aux_sym_file_mode_token2] = ACTIONS(9451), + [aux_sym_file_access_token2] = ACTIONS(9451), + [aux_sym_file_lock_token2] = ACTIONS(9451), + [aux_sym_print_statement_token1] = ACTIONS(9451), + [anon_sym_PLUS] = ACTIONS(9453), + [anon_sym_DASH] = ACTIONS(9451), + [anon_sym_QMARK] = ACTIONS(9453), + [aux_sym_close_statement_token1] = ACTIONS(9451), + [aux_sym_put_statement_token1] = ACTIONS(9451), + [aux_sym_unlock_statement_token1] = ACTIONS(9451), + [aux_sym_seek_statement_token1] = ACTIONS(9451), + [sym_reset_statement] = ACTIONS(9451), + [aux_sym_raise_event_statement_token1] = ACTIONS(9451), + [sym_stop_statement] = ACTIONS(9451), + [sym_beep_statement] = ACTIONS(9451), + [aux_sym_unload_statement_token1] = ACTIONS(9451), + [aux_sym_def_type_statement_token1] = ACTIONS(9451), + [aux_sym_def_type_statement_token2] = ACTIONS(9451), + [aux_sym_def_type_statement_token3] = ACTIONS(9451), + [aux_sym_def_type_statement_token4] = ACTIONS(9451), + [aux_sym_def_type_statement_token5] = ACTIONS(9451), + [aux_sym_def_type_statement_token6] = ACTIONS(9451), + [aux_sym_def_type_statement_token7] = ACTIONS(9451), + [aux_sym_def_type_statement_token8] = ACTIONS(9451), + [aux_sym_def_type_statement_token9] = ACTIONS(9451), + [aux_sym_def_type_statement_token10] = ACTIONS(9451), + [aux_sym_def_type_statement_token11] = ACTIONS(9451), + [aux_sym_def_type_statement_token12] = ACTIONS(9451), + [aux_sym_def_type_statement_token13] = ACTIONS(9451), + [aux_sym_def_type_statement_token14] = ACTIONS(9451), + [aux_sym_call_statement_token1] = ACTIONS(9451), + [sym__ambiguous_call_statement] = ACTIONS(9451), + [aux_sym_addressof_expression_token1] = ACTIONS(9451), + [aux_sym_type_of_expression_token1] = ACTIONS(9451), + [aux_sym_unary_expression_token1] = ACTIONS(9451), + [sym_string_literal] = ACTIONS(9453), + [sym_number_literal] = ACTIONS(9453), + [aux_sym_boolean_literal_token1] = ACTIONS(9451), + [aux_sym_boolean_literal_token2] = ACTIONS(9451), + [sym_nothing_literal] = ACTIONS(9451), + [sym_null_literal] = ACTIONS(9451), + [sym_empty_literal] = ACTIONS(9451), + [sym_date_literal] = ACTIONS(9453), + [anon_sym_POUND] = ACTIONS(9451), + }, + [STATE(7016)] = { + [sym_identifier] = ACTIONS(8729), + [sym_newline] = ACTIONS(8731), + [anon_sym_COLON] = ACTIONS(8731), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8729), + [aux_sym_frm_property_statement_token1] = ACTIONS(8729), + [anon_sym_DOT] = ACTIONS(8729), + [anon_sym_BANG] = ACTIONS(8731), + [aux_sym__attribute_identifier_token1] = ACTIONS(8729), + [aux_sym_option_statement_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8729), + [aux_sym_preprocessor_const_token1] = ACTIONS(8729), + [sym_static_modifier] = ACTIONS(8729), + [sym__dim_keyword] = ACTIONS(8729), + [sym__redim_keyword] = ACTIONS(8729), + [aux_sym_get_accessor_token1] = ACTIONS(8729), + [aux_sym_set_accessor_token1] = ACTIONS(8729), + [aux_sym_const_declaration_token1] = ACTIONS(8729), + [anon_sym_LPAREN] = ACTIONS(8731), + [aux_sym_as_type_clause_token2] = ACTIONS(8729), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8729), + [aux_sym_visibility_token1] = ACTIONS(8729), + [aux_sym_visibility_token2] = ACTIONS(8729), + [aux_sym_elseif_fragment_token1] = ACTIONS(8729), + [aux_sym_else_fragment_token1] = ACTIONS(8729), + [aux_sym_select_statement_token1] = ACTIONS(8729), + [aux_sym__for_header_token1] = ACTIONS(8729), + [aux_sym_do_statement_token1] = ACTIONS(8729), + [aux_sym_do_statement_token2] = ACTIONS(8729), + [aux_sym_do_condition_token1] = ACTIONS(8729), + [aux_sym_with_statement_token1] = ACTIONS(8729), + [aux_sym_exit_statement_token1] = ACTIONS(8729), + [sym_end_statement] = ACTIONS(8731), + [aux_sym_on_goto_statement_token1] = ACTIONS(8729), + [aux_sym_on_goto_statement_token2] = ACTIONS(8729), + [aux_sym_on_error_statement_token2] = ACTIONS(8729), + [sym__ambiguous_redim_statement] = ACTIONS(8731), + [aux_sym_erase_statement_token1] = ACTIONS(8729), + [aux_sym_open_statement_token1] = ACTIONS(8729), + [aux_sym_file_mode_token2] = ACTIONS(8729), + [aux_sym_file_access_token2] = ACTIONS(8729), + [aux_sym_file_lock_token2] = ACTIONS(8729), + [aux_sym_print_statement_token1] = ACTIONS(8729), + [anon_sym_PLUS] = ACTIONS(8731), + [anon_sym_DASH] = ACTIONS(8729), + [anon_sym_QMARK] = ACTIONS(8731), + [aux_sym_close_statement_token1] = ACTIONS(8729), + [aux_sym_put_statement_token1] = ACTIONS(8729), + [aux_sym_unlock_statement_token1] = ACTIONS(8729), + [aux_sym_seek_statement_token1] = ACTIONS(8729), + [sym_reset_statement] = ACTIONS(8729), + [aux_sym_raise_event_statement_token1] = ACTIONS(8729), + [sym_stop_statement] = ACTIONS(8729), + [sym_beep_statement] = ACTIONS(8729), + [aux_sym_unload_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token2] = ACTIONS(8729), + [aux_sym_def_type_statement_token3] = ACTIONS(8729), + [aux_sym_def_type_statement_token4] = ACTIONS(8729), + [aux_sym_def_type_statement_token5] = ACTIONS(8729), + [aux_sym_def_type_statement_token6] = ACTIONS(8729), + [aux_sym_def_type_statement_token7] = ACTIONS(8729), + [aux_sym_def_type_statement_token8] = ACTIONS(8729), + [aux_sym_def_type_statement_token9] = ACTIONS(8729), + [aux_sym_def_type_statement_token10] = ACTIONS(8729), + [aux_sym_def_type_statement_token11] = ACTIONS(8729), + [aux_sym_def_type_statement_token12] = ACTIONS(8729), + [aux_sym_def_type_statement_token13] = ACTIONS(8729), + [aux_sym_def_type_statement_token14] = ACTIONS(8729), + [aux_sym_call_statement_token1] = ACTIONS(8729), + [sym__ambiguous_call_statement] = ACTIONS(8729), + [aux_sym_addressof_expression_token1] = ACTIONS(8729), + [aux_sym_type_of_expression_token1] = ACTIONS(8729), + [aux_sym_unary_expression_token1] = ACTIONS(8729), + [sym_string_literal] = ACTIONS(8731), + [sym_number_literal] = ACTIONS(8731), + [aux_sym_boolean_literal_token1] = ACTIONS(8729), + [aux_sym_boolean_literal_token2] = ACTIONS(8729), + [sym_nothing_literal] = ACTIONS(8729), + [sym_null_literal] = ACTIONS(8729), + [sym_empty_literal] = ACTIONS(8729), + [sym_date_literal] = ACTIONS(8731), + [anon_sym_POUND] = ACTIONS(8729), + }, + [STATE(7017)] = { + [sym_identifier] = ACTIONS(8723), + [sym_newline] = ACTIONS(8725), + [anon_sym_COLON] = ACTIONS(8725), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8723), + [aux_sym_frm_property_statement_token1] = ACTIONS(8723), + [anon_sym_DOT] = ACTIONS(8723), + [anon_sym_BANG] = ACTIONS(8725), + [aux_sym__attribute_identifier_token1] = ACTIONS(8723), + [aux_sym_option_statement_token3] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8723), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8723), + [aux_sym_preprocessor_const_token1] = ACTIONS(8723), + [sym_static_modifier] = ACTIONS(8723), + [sym__dim_keyword] = ACTIONS(8723), + [sym__redim_keyword] = ACTIONS(8723), + [aux_sym_get_accessor_token1] = ACTIONS(8723), + [aux_sym_set_accessor_token1] = ACTIONS(8723), + [aux_sym_const_declaration_token1] = ACTIONS(8723), + [anon_sym_LPAREN] = ACTIONS(8725), + [aux_sym_as_type_clause_token2] = ACTIONS(8723), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8723), + [aux_sym_visibility_token1] = ACTIONS(8723), + [aux_sym_visibility_token2] = ACTIONS(8723), + [aux_sym_elseif_fragment_token1] = ACTIONS(8723), + [aux_sym_else_fragment_token1] = ACTIONS(8723), + [aux_sym_select_statement_token1] = ACTIONS(8723), + [aux_sym__for_header_token1] = ACTIONS(8723), + [aux_sym_do_statement_token1] = ACTIONS(8723), + [aux_sym_do_condition_token1] = ACTIONS(8723), + [aux_sym_with_statement_token1] = ACTIONS(8723), + [aux_sym_exit_statement_token1] = ACTIONS(8723), + [sym_end_statement] = ACTIONS(8725), + [aux_sym_on_goto_statement_token1] = ACTIONS(8723), + [aux_sym_on_goto_statement_token2] = ACTIONS(8723), + [aux_sym_on_error_statement_token2] = ACTIONS(8723), + [sym__ambiguous_redim_statement] = ACTIONS(8725), + [aux_sym_erase_statement_token1] = ACTIONS(8723), + [aux_sym_open_statement_token1] = ACTIONS(8723), + [aux_sym_open_statement_token3] = ACTIONS(11178), + [aux_sym_file_mode_token2] = ACTIONS(8723), + [aux_sym_file_access_token2] = ACTIONS(8723), + [aux_sym_file_lock_token2] = ACTIONS(8723), + [aux_sym_print_statement_token1] = ACTIONS(8723), + [anon_sym_PLUS] = ACTIONS(8725), + [anon_sym_DASH] = ACTIONS(8723), + [anon_sym_QMARK] = ACTIONS(8725), + [aux_sym_close_statement_token1] = ACTIONS(8723), + [aux_sym_put_statement_token1] = ACTIONS(8723), + [aux_sym_unlock_statement_token1] = ACTIONS(8723), + [aux_sym_seek_statement_token1] = ACTIONS(8723), + [sym_reset_statement] = ACTIONS(8723), + [aux_sym_raise_event_statement_token1] = ACTIONS(8723), + [sym_stop_statement] = ACTIONS(8723), + [sym_beep_statement] = ACTIONS(8723), + [aux_sym_unload_statement_token1] = ACTIONS(8723), + [aux_sym_def_type_statement_token1] = ACTIONS(8723), + [aux_sym_def_type_statement_token2] = ACTIONS(8723), + [aux_sym_def_type_statement_token3] = ACTIONS(8723), + [aux_sym_def_type_statement_token4] = ACTIONS(8723), + [aux_sym_def_type_statement_token5] = ACTIONS(8723), + [aux_sym_def_type_statement_token6] = ACTIONS(8723), + [aux_sym_def_type_statement_token7] = ACTIONS(8723), + [aux_sym_def_type_statement_token8] = ACTIONS(8723), + [aux_sym_def_type_statement_token9] = ACTIONS(8723), + [aux_sym_def_type_statement_token10] = ACTIONS(8723), + [aux_sym_def_type_statement_token11] = ACTIONS(8723), + [aux_sym_def_type_statement_token12] = ACTIONS(8723), + [aux_sym_def_type_statement_token13] = ACTIONS(8723), + [aux_sym_def_type_statement_token14] = ACTIONS(8723), + [aux_sym_call_statement_token1] = ACTIONS(8723), + [sym__ambiguous_call_statement] = ACTIONS(8723), + [aux_sym_addressof_expression_token1] = ACTIONS(8723), + [aux_sym_type_of_expression_token1] = ACTIONS(8723), + [aux_sym_unary_expression_token1] = ACTIONS(8723), + [sym_string_literal] = ACTIONS(8725), + [sym_number_literal] = ACTIONS(8725), + [aux_sym_boolean_literal_token1] = ACTIONS(8723), + [aux_sym_boolean_literal_token2] = ACTIONS(8723), + [sym_nothing_literal] = ACTIONS(8723), + [sym_null_literal] = ACTIONS(8723), + [sym_empty_literal] = ACTIONS(8723), + [sym_date_literal] = ACTIONS(8725), + [anon_sym_POUND] = ACTIONS(8723), + }, + [STATE(7018)] = { + [sym_identifier] = ACTIONS(10799), + [sym_newline] = ACTIONS(10801), + [anon_sym_COLON] = ACTIONS(10801), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(10799), + [aux_sym_frm_property_statement_token1] = ACTIONS(10799), + [aux_sym_attribute_statement_token1] = ACTIONS(10799), + [anon_sym_DOT] = ACTIONS(10799), + [anon_sym_BANG] = ACTIONS(10801), + [aux_sym__attribute_identifier_token1] = ACTIONS(10799), + [aux_sym_option_statement_token3] = ACTIONS(10799), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(10799), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(10799), + [aux_sym_preprocessor_const_token1] = ACTIONS(10799), + [sym_static_modifier] = ACTIONS(10799), + [sym__dim_keyword] = ACTIONS(10799), + [sym__redim_keyword] = ACTIONS(10799), + [aux_sym_get_accessor_token1] = ACTIONS(10799), + [aux_sym_set_accessor_token1] = ACTIONS(10799), + [aux_sym_const_declaration_token1] = ACTIONS(10799), + [anon_sym_LPAREN] = ACTIONS(10801), + [aux_sym_as_type_clause_token2] = ACTIONS(10799), + [aux_sym_dotted_type_expression_token1] = ACTIONS(10799), + [aux_sym_visibility_token1] = ACTIONS(10799), + [aux_sym_visibility_token2] = ACTIONS(10799), + [aux_sym_elseif_fragment_token1] = ACTIONS(10799), + [aux_sym_else_fragment_token1] = ACTIONS(10799), + [aux_sym_select_statement_token1] = ACTIONS(10799), + [aux_sym__for_header_token1] = ACTIONS(10799), + [aux_sym_do_statement_token1] = ACTIONS(10799), + [aux_sym_do_condition_token1] = ACTIONS(10799), + [aux_sym_with_statement_token1] = ACTIONS(10799), + [aux_sym_exit_statement_token1] = ACTIONS(10799), + [sym_end_statement] = ACTIONS(10801), + [aux_sym_on_goto_statement_token1] = ACTIONS(10799), + [aux_sym_on_goto_statement_token2] = ACTIONS(10799), + [aux_sym_on_error_statement_token2] = ACTIONS(10799), + [sym__ambiguous_redim_statement] = ACTIONS(10801), + [aux_sym_erase_statement_token1] = ACTIONS(10799), + [aux_sym_open_statement_token1] = ACTIONS(10799), + [aux_sym_file_mode_token2] = ACTIONS(10799), + [aux_sym_file_access_token2] = ACTIONS(10799), + [aux_sym_file_lock_token2] = ACTIONS(10799), + [aux_sym_print_statement_token1] = ACTIONS(10799), + [anon_sym_PLUS] = ACTIONS(10801), + [anon_sym_DASH] = ACTIONS(10799), + [anon_sym_QMARK] = ACTIONS(10801), + [aux_sym_close_statement_token1] = ACTIONS(10799), + [aux_sym_put_statement_token1] = ACTIONS(10799), + [aux_sym_unlock_statement_token1] = ACTIONS(10799), + [aux_sym_seek_statement_token1] = ACTIONS(10799), + [sym_reset_statement] = ACTIONS(10799), + [aux_sym_raise_event_statement_token1] = ACTIONS(10799), + [sym_stop_statement] = ACTIONS(10799), + [sym_beep_statement] = ACTIONS(10799), + [aux_sym_unload_statement_token1] = ACTIONS(10799), + [aux_sym_def_type_statement_token1] = ACTIONS(10799), + [aux_sym_def_type_statement_token2] = ACTIONS(10799), + [aux_sym_def_type_statement_token3] = ACTIONS(10799), + [aux_sym_def_type_statement_token4] = ACTIONS(10799), + [aux_sym_def_type_statement_token5] = ACTIONS(10799), + [aux_sym_def_type_statement_token6] = ACTIONS(10799), + [aux_sym_def_type_statement_token7] = ACTIONS(10799), + [aux_sym_def_type_statement_token8] = ACTIONS(10799), + [aux_sym_def_type_statement_token9] = ACTIONS(10799), + [aux_sym_def_type_statement_token10] = ACTIONS(10799), + [aux_sym_def_type_statement_token11] = ACTIONS(10799), + [aux_sym_def_type_statement_token12] = ACTIONS(10799), + [aux_sym_def_type_statement_token13] = ACTIONS(10799), + [aux_sym_def_type_statement_token14] = ACTIONS(10799), + [aux_sym_call_statement_token1] = ACTIONS(10799), + [sym__ambiguous_call_statement] = ACTIONS(10799), + [aux_sym_addressof_expression_token1] = ACTIONS(10799), + [aux_sym_type_of_expression_token1] = ACTIONS(10799), + [aux_sym_unary_expression_token1] = ACTIONS(10799), + [sym_string_literal] = ACTIONS(10801), + [sym_number_literal] = ACTIONS(10801), + [aux_sym_boolean_literal_token1] = ACTIONS(10799), + [aux_sym_boolean_literal_token2] = ACTIONS(10799), + [sym_nothing_literal] = ACTIONS(10799), + [sym_null_literal] = ACTIONS(10799), + [sym_empty_literal] = ACTIONS(10799), + [sym_date_literal] = ACTIONS(10801), + [anon_sym_POUND] = ACTIONS(10799), + }, + [STATE(7019)] = { + [sym_identifier] = ACTIONS(6621), + [sym_newline] = ACTIONS(6623), + [anon_sym_COLON] = ACTIONS(6623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6621), + [aux_sym_frm_property_statement_token1] = ACTIONS(6621), + [anon_sym_DOT] = ACTIONS(6621), + [anon_sym_BANG] = ACTIONS(6623), + [aux_sym__attribute_identifier_token1] = ACTIONS(6621), + [aux_sym_option_statement_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6621), + [aux_sym_preprocessor_const_token1] = ACTIONS(6621), + [sym_static_modifier] = ACTIONS(6621), + [sym__dim_keyword] = ACTIONS(6621), + [sym__redim_keyword] = ACTIONS(6621), + [aux_sym_get_accessor_token1] = ACTIONS(6621), + [aux_sym_set_accessor_token1] = ACTIONS(6621), + [aux_sym_const_declaration_token1] = ACTIONS(6621), + [anon_sym_LPAREN] = ACTIONS(6623), + [aux_sym_as_type_clause_token2] = ACTIONS(6621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6621), + [aux_sym_visibility_token1] = ACTIONS(6621), + [aux_sym_visibility_token2] = ACTIONS(6621), + [aux_sym_elseif_fragment_token1] = ACTIONS(6621), + [aux_sym_else_fragment_token1] = ACTIONS(6621), + [aux_sym_select_statement_token1] = ACTIONS(6621), + [aux_sym_select_statement_token2] = ACTIONS(6621), + [aux_sym__for_header_token1] = ACTIONS(6621), + [aux_sym_do_statement_token1] = ACTIONS(6621), + [aux_sym_do_condition_token1] = ACTIONS(6621), + [aux_sym_with_statement_token1] = ACTIONS(6621), + [aux_sym_exit_statement_token1] = ACTIONS(6621), + [sym_end_statement] = ACTIONS(6623), + [aux_sym_on_goto_statement_token1] = ACTIONS(6621), + [aux_sym_on_goto_statement_token2] = ACTIONS(6621), + [aux_sym_on_error_statement_token2] = ACTIONS(6621), + [sym__ambiguous_redim_statement] = ACTIONS(6623), + [aux_sym_erase_statement_token1] = ACTIONS(6621), + [aux_sym_open_statement_token1] = ACTIONS(6621), + [aux_sym_file_mode_token2] = ACTIONS(6621), + [aux_sym_file_access_token2] = ACTIONS(6621), + [aux_sym_file_lock_token2] = ACTIONS(6621), + [aux_sym_print_statement_token1] = ACTIONS(6621), + [anon_sym_PLUS] = ACTIONS(6623), + [anon_sym_DASH] = ACTIONS(6621), + [anon_sym_QMARK] = ACTIONS(6623), + [aux_sym_close_statement_token1] = ACTIONS(6621), + [aux_sym_put_statement_token1] = ACTIONS(6621), + [aux_sym_unlock_statement_token1] = ACTIONS(6621), + [aux_sym_seek_statement_token1] = ACTIONS(6621), + [sym_reset_statement] = ACTIONS(6621), + [aux_sym_raise_event_statement_token1] = ACTIONS(6621), + [sym_stop_statement] = ACTIONS(6621), + [sym_beep_statement] = ACTIONS(6621), + [aux_sym_unload_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token2] = ACTIONS(6621), + [aux_sym_def_type_statement_token3] = ACTIONS(6621), + [aux_sym_def_type_statement_token4] = ACTIONS(6621), + [aux_sym_def_type_statement_token5] = ACTIONS(6621), + [aux_sym_def_type_statement_token6] = ACTIONS(6621), + [aux_sym_def_type_statement_token7] = ACTIONS(6621), + [aux_sym_def_type_statement_token8] = ACTIONS(6621), + [aux_sym_def_type_statement_token9] = ACTIONS(6621), + [aux_sym_def_type_statement_token10] = ACTIONS(6621), + [aux_sym_def_type_statement_token11] = ACTIONS(6621), + [aux_sym_def_type_statement_token12] = ACTIONS(6621), + [aux_sym_def_type_statement_token13] = ACTIONS(6621), + [aux_sym_def_type_statement_token14] = ACTIONS(6621), + [aux_sym_call_statement_token1] = ACTIONS(6621), + [sym__ambiguous_call_statement] = ACTIONS(6621), + [aux_sym_addressof_expression_token1] = ACTIONS(6621), + [aux_sym_type_of_expression_token1] = ACTIONS(6621), + [aux_sym_unary_expression_token1] = ACTIONS(6621), + [sym_string_literal] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [aux_sym_boolean_literal_token1] = ACTIONS(6621), + [aux_sym_boolean_literal_token2] = ACTIONS(6621), + [sym_nothing_literal] = ACTIONS(6621), + [sym_null_literal] = ACTIONS(6621), + [sym_empty_literal] = ACTIONS(6621), + [sym_date_literal] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6621), + }, + [STATE(7020)] = { + [sym_identifier] = ACTIONS(9684), + [sym_newline] = ACTIONS(9686), + [anon_sym_COLON] = ACTIONS(9686), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9684), + [aux_sym_frm_property_statement_token1] = ACTIONS(9684), + [anon_sym_DOT] = ACTIONS(9684), + [anon_sym_BANG] = ACTIONS(9686), + [aux_sym__attribute_identifier_token1] = ACTIONS(9684), + [aux_sym_option_statement_token3] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9684), + [aux_sym_preprocessor_const_token1] = ACTIONS(9684), + [sym_static_modifier] = ACTIONS(9684), + [sym__dim_keyword] = ACTIONS(9684), + [sym__redim_keyword] = ACTIONS(9684), + [aux_sym_get_accessor_token1] = ACTIONS(9684), + [aux_sym_set_accessor_token1] = ACTIONS(9684), + [aux_sym_const_declaration_token1] = ACTIONS(9684), + [anon_sym_LPAREN] = ACTIONS(9686), + [aux_sym_as_type_clause_token2] = ACTIONS(9684), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9684), + [aux_sym_visibility_token1] = ACTIONS(9684), + [aux_sym_visibility_token2] = ACTIONS(9684), + [aux_sym_elseif_fragment_token1] = ACTIONS(9684), + [aux_sym_else_fragment_token1] = ACTIONS(9684), + [aux_sym_select_statement_token1] = ACTIONS(9684), + [aux_sym_select_statement_token2] = ACTIONS(9684), + [aux_sym__for_header_token1] = ACTIONS(9684), + [aux_sym_do_statement_token1] = ACTIONS(9684), + [aux_sym_do_condition_token1] = ACTIONS(9684), + [aux_sym_with_statement_token1] = ACTIONS(9684), + [aux_sym_exit_statement_token1] = ACTIONS(9684), + [sym_end_statement] = ACTIONS(9686), + [aux_sym_on_goto_statement_token1] = ACTIONS(9684), + [aux_sym_on_goto_statement_token2] = ACTIONS(9684), + [aux_sym_on_error_statement_token2] = ACTIONS(9684), + [sym__ambiguous_redim_statement] = ACTIONS(9686), + [aux_sym_erase_statement_token1] = ACTIONS(9684), + [aux_sym_open_statement_token1] = ACTIONS(9684), + [aux_sym_file_mode_token2] = ACTIONS(9684), + [aux_sym_file_access_token2] = ACTIONS(9684), + [aux_sym_file_lock_token2] = ACTIONS(9684), + [aux_sym_print_statement_token1] = ACTIONS(9684), + [anon_sym_PLUS] = ACTIONS(9686), + [anon_sym_DASH] = ACTIONS(9684), + [anon_sym_QMARK] = ACTIONS(9686), + [aux_sym_close_statement_token1] = ACTIONS(9684), + [aux_sym_put_statement_token1] = ACTIONS(9684), + [aux_sym_unlock_statement_token1] = ACTIONS(9684), + [aux_sym_seek_statement_token1] = ACTIONS(9684), + [sym_reset_statement] = ACTIONS(9684), + [aux_sym_raise_event_statement_token1] = ACTIONS(9684), + [sym_stop_statement] = ACTIONS(9684), + [sym_beep_statement] = ACTIONS(9684), + [aux_sym_unload_statement_token1] = ACTIONS(9684), + [aux_sym_def_type_statement_token1] = ACTIONS(9684), + [aux_sym_def_type_statement_token2] = ACTIONS(9684), + [aux_sym_def_type_statement_token3] = ACTIONS(9684), + [aux_sym_def_type_statement_token4] = ACTIONS(9684), + [aux_sym_def_type_statement_token5] = ACTIONS(9684), + [aux_sym_def_type_statement_token6] = ACTIONS(9684), + [aux_sym_def_type_statement_token7] = ACTIONS(9684), + [aux_sym_def_type_statement_token8] = ACTIONS(9684), + [aux_sym_def_type_statement_token9] = ACTIONS(9684), + [aux_sym_def_type_statement_token10] = ACTIONS(9684), + [aux_sym_def_type_statement_token11] = ACTIONS(9684), + [aux_sym_def_type_statement_token12] = ACTIONS(9684), + [aux_sym_def_type_statement_token13] = ACTIONS(9684), + [aux_sym_def_type_statement_token14] = ACTIONS(9684), + [aux_sym_call_statement_token1] = ACTIONS(9684), + [sym__ambiguous_call_statement] = ACTIONS(9684), + [aux_sym_addressof_expression_token1] = ACTIONS(9684), + [aux_sym_type_of_expression_token1] = ACTIONS(9684), + [aux_sym_unary_expression_token1] = ACTIONS(9684), + [sym_string_literal] = ACTIONS(9686), + [sym_number_literal] = ACTIONS(9686), + [aux_sym_boolean_literal_token1] = ACTIONS(9684), + [aux_sym_boolean_literal_token2] = ACTIONS(9684), + [sym_nothing_literal] = ACTIONS(9684), + [sym_null_literal] = ACTIONS(9684), + [sym_empty_literal] = ACTIONS(9684), + [sym_date_literal] = ACTIONS(9686), + [anon_sym_POUND] = ACTIONS(9684), + }, + [STATE(7021)] = { + [sym_identifier] = ACTIONS(9688), + [sym_newline] = ACTIONS(9690), + [anon_sym_COLON] = ACTIONS(9690), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9688), + [aux_sym_frm_property_statement_token1] = ACTIONS(9688), + [anon_sym_DOT] = ACTIONS(9688), + [anon_sym_BANG] = ACTIONS(9690), + [aux_sym__attribute_identifier_token1] = ACTIONS(9688), + [aux_sym_option_statement_token3] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9688), + [aux_sym_preprocessor_const_token1] = ACTIONS(9688), + [sym_static_modifier] = ACTIONS(9688), + [sym__dim_keyword] = ACTIONS(9688), + [sym__redim_keyword] = ACTIONS(9688), + [aux_sym_get_accessor_token1] = ACTIONS(9688), + [aux_sym_set_accessor_token1] = ACTIONS(9688), + [aux_sym_const_declaration_token1] = ACTIONS(9688), + [anon_sym_LPAREN] = ACTIONS(9690), + [aux_sym_as_type_clause_token2] = ACTIONS(9688), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9688), + [aux_sym_visibility_token1] = ACTIONS(9688), + [aux_sym_visibility_token2] = ACTIONS(9688), + [aux_sym_elseif_fragment_token1] = ACTIONS(9688), + [aux_sym_else_fragment_token1] = ACTIONS(9688), + [aux_sym_select_statement_token1] = ACTIONS(9688), + [aux_sym_select_statement_token2] = ACTIONS(9688), + [aux_sym__for_header_token1] = ACTIONS(9688), + [aux_sym_do_statement_token1] = ACTIONS(9688), + [aux_sym_do_condition_token1] = ACTIONS(9688), + [aux_sym_with_statement_token1] = ACTIONS(9688), + [aux_sym_exit_statement_token1] = ACTIONS(9688), + [sym_end_statement] = ACTIONS(9690), + [aux_sym_on_goto_statement_token1] = ACTIONS(9688), + [aux_sym_on_goto_statement_token2] = ACTIONS(9688), + [aux_sym_on_error_statement_token2] = ACTIONS(9688), + [sym__ambiguous_redim_statement] = ACTIONS(9690), + [aux_sym_erase_statement_token1] = ACTIONS(9688), + [aux_sym_open_statement_token1] = ACTIONS(9688), + [aux_sym_file_mode_token2] = ACTIONS(9688), + [aux_sym_file_access_token2] = ACTIONS(9688), + [aux_sym_file_lock_token2] = ACTIONS(9688), + [aux_sym_print_statement_token1] = ACTIONS(9688), + [anon_sym_PLUS] = ACTIONS(9690), + [anon_sym_DASH] = ACTIONS(9688), + [anon_sym_QMARK] = ACTIONS(9690), + [aux_sym_close_statement_token1] = ACTIONS(9688), + [aux_sym_put_statement_token1] = ACTIONS(9688), + [aux_sym_unlock_statement_token1] = ACTIONS(9688), + [aux_sym_seek_statement_token1] = ACTIONS(9688), + [sym_reset_statement] = ACTIONS(9688), + [aux_sym_raise_event_statement_token1] = ACTIONS(9688), + [sym_stop_statement] = ACTIONS(9688), + [sym_beep_statement] = ACTIONS(9688), + [aux_sym_unload_statement_token1] = ACTIONS(9688), + [aux_sym_def_type_statement_token1] = ACTIONS(9688), + [aux_sym_def_type_statement_token2] = ACTIONS(9688), + [aux_sym_def_type_statement_token3] = ACTIONS(9688), + [aux_sym_def_type_statement_token4] = ACTIONS(9688), + [aux_sym_def_type_statement_token5] = ACTIONS(9688), + [aux_sym_def_type_statement_token6] = ACTIONS(9688), + [aux_sym_def_type_statement_token7] = ACTIONS(9688), + [aux_sym_def_type_statement_token8] = ACTIONS(9688), + [aux_sym_def_type_statement_token9] = ACTIONS(9688), + [aux_sym_def_type_statement_token10] = ACTIONS(9688), + [aux_sym_def_type_statement_token11] = ACTIONS(9688), + [aux_sym_def_type_statement_token12] = ACTIONS(9688), + [aux_sym_def_type_statement_token13] = ACTIONS(9688), + [aux_sym_def_type_statement_token14] = ACTIONS(9688), + [aux_sym_call_statement_token1] = ACTIONS(9688), + [sym__ambiguous_call_statement] = ACTIONS(9688), + [aux_sym_addressof_expression_token1] = ACTIONS(9688), + [aux_sym_type_of_expression_token1] = ACTIONS(9688), + [aux_sym_unary_expression_token1] = ACTIONS(9688), + [sym_string_literal] = ACTIONS(9690), + [sym_number_literal] = ACTIONS(9690), + [aux_sym_boolean_literal_token1] = ACTIONS(9688), + [aux_sym_boolean_literal_token2] = ACTIONS(9688), + [sym_nothing_literal] = ACTIONS(9688), + [sym_null_literal] = ACTIONS(9688), + [sym_empty_literal] = ACTIONS(9688), + [sym_date_literal] = ACTIONS(9690), + [anon_sym_POUND] = ACTIONS(9688), + }, + [STATE(7022)] = { + [sym_identifier] = ACTIONS(9374), + [sym_newline] = ACTIONS(9376), + [anon_sym_COLON] = ACTIONS(9376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9374), + [aux_sym_frm_property_statement_token1] = ACTIONS(9374), + [anon_sym_DOT] = ACTIONS(9374), + [anon_sym_BANG] = ACTIONS(9376), + [aux_sym__attribute_identifier_token1] = ACTIONS(9374), + [aux_sym_option_statement_token3] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9374), + [aux_sym_preprocessor_const_token1] = ACTIONS(9374), + [sym_static_modifier] = ACTIONS(9374), + [sym__dim_keyword] = ACTIONS(9374), + [sym__redim_keyword] = ACTIONS(9374), + [aux_sym_get_accessor_token1] = ACTIONS(9374), + [aux_sym_set_accessor_token1] = ACTIONS(9374), + [aux_sym_const_declaration_token1] = ACTIONS(9374), + [anon_sym_LPAREN] = ACTIONS(9376), + [aux_sym_as_type_clause_token2] = ACTIONS(9374), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9374), + [aux_sym_visibility_token1] = ACTIONS(9374), + [aux_sym_visibility_token2] = ACTIONS(9374), + [aux_sym_elseif_fragment_token1] = ACTIONS(9374), + [aux_sym_else_fragment_token1] = ACTIONS(9374), + [aux_sym_select_statement_token1] = ACTIONS(9374), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9374), + [aux_sym__for_header_token1] = ACTIONS(9374), + [aux_sym_do_statement_token1] = ACTIONS(9374), + [aux_sym_do_condition_token1] = ACTIONS(9374), + [aux_sym_with_statement_token1] = ACTIONS(9374), + [aux_sym_exit_statement_token1] = ACTIONS(9374), + [sym_end_statement] = ACTIONS(9376), + [aux_sym_on_goto_statement_token1] = ACTIONS(9374), + [aux_sym_on_goto_statement_token2] = ACTIONS(9374), + [aux_sym_on_error_statement_token2] = ACTIONS(9374), + [sym__ambiguous_redim_statement] = ACTIONS(9376), + [aux_sym_erase_statement_token1] = ACTIONS(9374), + [aux_sym_open_statement_token1] = ACTIONS(9374), + [aux_sym_file_mode_token2] = ACTIONS(9374), + [aux_sym_file_access_token2] = ACTIONS(9374), + [aux_sym_file_lock_token2] = ACTIONS(9374), + [aux_sym_print_statement_token1] = ACTIONS(9374), + [anon_sym_PLUS] = ACTIONS(9376), + [anon_sym_DASH] = ACTIONS(9374), + [anon_sym_QMARK] = ACTIONS(9376), + [aux_sym_close_statement_token1] = ACTIONS(9374), + [aux_sym_put_statement_token1] = ACTIONS(9374), + [aux_sym_unlock_statement_token1] = ACTIONS(9374), + [aux_sym_seek_statement_token1] = ACTIONS(9374), + [sym_reset_statement] = ACTIONS(9374), + [aux_sym_raise_event_statement_token1] = ACTIONS(9374), + [sym_stop_statement] = ACTIONS(9374), + [sym_beep_statement] = ACTIONS(9374), + [aux_sym_unload_statement_token1] = ACTIONS(9374), + [aux_sym_def_type_statement_token1] = ACTIONS(9374), + [aux_sym_def_type_statement_token2] = ACTIONS(9374), + [aux_sym_def_type_statement_token3] = ACTIONS(9374), + [aux_sym_def_type_statement_token4] = ACTIONS(9374), + [aux_sym_def_type_statement_token5] = ACTIONS(9374), + [aux_sym_def_type_statement_token6] = ACTIONS(9374), + [aux_sym_def_type_statement_token7] = ACTIONS(9374), + [aux_sym_def_type_statement_token8] = ACTIONS(9374), + [aux_sym_def_type_statement_token9] = ACTIONS(9374), + [aux_sym_def_type_statement_token10] = ACTIONS(9374), + [aux_sym_def_type_statement_token11] = ACTIONS(9374), + [aux_sym_def_type_statement_token12] = ACTIONS(9374), + [aux_sym_def_type_statement_token13] = ACTIONS(9374), + [aux_sym_def_type_statement_token14] = ACTIONS(9374), + [aux_sym_call_statement_token1] = ACTIONS(9374), + [sym__ambiguous_call_statement] = ACTIONS(9374), + [aux_sym_addressof_expression_token1] = ACTIONS(9374), + [aux_sym_type_of_expression_token1] = ACTIONS(9374), + [aux_sym_unary_expression_token1] = ACTIONS(9374), + [sym_string_literal] = ACTIONS(9376), + [sym_number_literal] = ACTIONS(9376), + [aux_sym_boolean_literal_token1] = ACTIONS(9374), + [aux_sym_boolean_literal_token2] = ACTIONS(9374), + [sym_nothing_literal] = ACTIONS(9374), + [sym_null_literal] = ACTIONS(9374), + [sym_empty_literal] = ACTIONS(9374), + [sym_date_literal] = ACTIONS(9376), + [anon_sym_POUND] = ACTIONS(9374), + }, + [STATE(7023)] = { + [sym_identifier] = ACTIONS(9378), + [sym_newline] = ACTIONS(9380), + [anon_sym_COLON] = ACTIONS(9380), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9378), + [aux_sym_frm_property_statement_token1] = ACTIONS(9378), + [anon_sym_DOT] = ACTIONS(9378), + [anon_sym_BANG] = ACTIONS(9380), + [aux_sym__attribute_identifier_token1] = ACTIONS(9378), + [aux_sym_option_statement_token3] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9378), + [aux_sym_preprocessor_const_token1] = ACTIONS(9378), + [sym_static_modifier] = ACTIONS(9378), + [sym__dim_keyword] = ACTIONS(9378), + [sym__redim_keyword] = ACTIONS(9378), + [aux_sym_get_accessor_token1] = ACTIONS(9378), + [aux_sym_set_accessor_token1] = ACTIONS(9378), + [aux_sym_const_declaration_token1] = ACTIONS(9378), + [anon_sym_LPAREN] = ACTIONS(9380), + [aux_sym_as_type_clause_token2] = ACTIONS(9378), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9378), + [aux_sym_visibility_token1] = ACTIONS(9378), + [aux_sym_visibility_token2] = ACTIONS(9378), + [aux_sym_elseif_fragment_token1] = ACTIONS(9378), + [aux_sym_else_fragment_token1] = ACTIONS(9378), + [aux_sym_select_statement_token1] = ACTIONS(9378), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9378), + [aux_sym__for_header_token1] = ACTIONS(9378), + [aux_sym_do_statement_token1] = ACTIONS(9378), + [aux_sym_do_condition_token1] = ACTIONS(9378), + [aux_sym_with_statement_token1] = ACTIONS(9378), + [aux_sym_exit_statement_token1] = ACTIONS(9378), + [sym_end_statement] = ACTIONS(9380), + [aux_sym_on_goto_statement_token1] = ACTIONS(9378), + [aux_sym_on_goto_statement_token2] = ACTIONS(9378), + [aux_sym_on_error_statement_token2] = ACTIONS(9378), + [sym__ambiguous_redim_statement] = ACTIONS(9380), + [aux_sym_erase_statement_token1] = ACTIONS(9378), + [aux_sym_open_statement_token1] = ACTIONS(9378), + [aux_sym_file_mode_token2] = ACTIONS(9378), + [aux_sym_file_access_token2] = ACTIONS(9378), + [aux_sym_file_lock_token2] = ACTIONS(9378), + [aux_sym_print_statement_token1] = ACTIONS(9378), + [anon_sym_PLUS] = ACTIONS(9380), + [anon_sym_DASH] = ACTIONS(9378), + [anon_sym_QMARK] = ACTIONS(9380), + [aux_sym_close_statement_token1] = ACTIONS(9378), + [aux_sym_put_statement_token1] = ACTIONS(9378), + [aux_sym_unlock_statement_token1] = ACTIONS(9378), + [aux_sym_seek_statement_token1] = ACTIONS(9378), + [sym_reset_statement] = ACTIONS(9378), + [aux_sym_raise_event_statement_token1] = ACTIONS(9378), + [sym_stop_statement] = ACTIONS(9378), + [sym_beep_statement] = ACTIONS(9378), + [aux_sym_unload_statement_token1] = ACTIONS(9378), + [aux_sym_def_type_statement_token1] = ACTIONS(9378), + [aux_sym_def_type_statement_token2] = ACTIONS(9378), + [aux_sym_def_type_statement_token3] = ACTIONS(9378), + [aux_sym_def_type_statement_token4] = ACTIONS(9378), + [aux_sym_def_type_statement_token5] = ACTIONS(9378), + [aux_sym_def_type_statement_token6] = ACTIONS(9378), + [aux_sym_def_type_statement_token7] = ACTIONS(9378), + [aux_sym_def_type_statement_token8] = ACTIONS(9378), + [aux_sym_def_type_statement_token9] = ACTIONS(9378), + [aux_sym_def_type_statement_token10] = ACTIONS(9378), + [aux_sym_def_type_statement_token11] = ACTIONS(9378), + [aux_sym_def_type_statement_token12] = ACTIONS(9378), + [aux_sym_def_type_statement_token13] = ACTIONS(9378), + [aux_sym_def_type_statement_token14] = ACTIONS(9378), + [aux_sym_call_statement_token1] = ACTIONS(9378), + [sym__ambiguous_call_statement] = ACTIONS(9378), + [aux_sym_addressof_expression_token1] = ACTIONS(9378), + [aux_sym_type_of_expression_token1] = ACTIONS(9378), + [aux_sym_unary_expression_token1] = ACTIONS(9378), + [sym_string_literal] = ACTIONS(9380), + [sym_number_literal] = ACTIONS(9380), + [aux_sym_boolean_literal_token1] = ACTIONS(9378), + [aux_sym_boolean_literal_token2] = ACTIONS(9378), + [sym_nothing_literal] = ACTIONS(9378), + [sym_null_literal] = ACTIONS(9378), + [sym_empty_literal] = ACTIONS(9378), + [sym_date_literal] = ACTIONS(9380), + [anon_sym_POUND] = ACTIONS(9378), + }, + [STATE(7024)] = { + [sym_identifier] = ACTIONS(9130), + [sym_newline] = ACTIONS(9132), + [anon_sym_COLON] = ACTIONS(9132), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9130), + [aux_sym_frm_property_statement_token1] = ACTIONS(9130), + [anon_sym_DOT] = ACTIONS(9130), + [anon_sym_BANG] = ACTIONS(9132), + [aux_sym__attribute_identifier_token1] = ACTIONS(9130), + [aux_sym_option_statement_token3] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9130), + [aux_sym_preprocessor_const_token1] = ACTIONS(9130), + [sym_static_modifier] = ACTIONS(9130), + [sym__dim_keyword] = ACTIONS(9130), + [sym__redim_keyword] = ACTIONS(9130), + [aux_sym_get_accessor_token1] = ACTIONS(9130), + [aux_sym_set_accessor_token1] = ACTIONS(9130), + [aux_sym_const_declaration_token1] = ACTIONS(9130), + [anon_sym_LPAREN] = ACTIONS(9132), + [aux_sym_as_type_clause_token2] = ACTIONS(9130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9130), + [aux_sym_visibility_token1] = ACTIONS(9130), + [aux_sym_visibility_token2] = ACTIONS(9130), + [aux_sym_elseif_fragment_token1] = ACTIONS(9130), + [aux_sym_else_fragment_token1] = ACTIONS(9130), + [aux_sym_select_statement_token1] = ACTIONS(9130), + [aux_sym_select_statement_token2] = ACTIONS(9130), + [aux_sym__for_header_token1] = ACTIONS(9130), + [aux_sym_do_statement_token1] = ACTIONS(9130), + [aux_sym_do_condition_token1] = ACTIONS(9130), + [aux_sym_with_statement_token1] = ACTIONS(9130), + [aux_sym_exit_statement_token1] = ACTIONS(9130), + [sym_end_statement] = ACTIONS(9132), + [aux_sym_on_goto_statement_token1] = ACTIONS(9130), + [aux_sym_on_goto_statement_token2] = ACTIONS(9130), + [aux_sym_on_error_statement_token2] = ACTIONS(9130), + [sym__ambiguous_redim_statement] = ACTIONS(9132), + [aux_sym_erase_statement_token1] = ACTIONS(9130), + [aux_sym_open_statement_token1] = ACTIONS(9130), + [aux_sym_file_mode_token2] = ACTIONS(9130), + [aux_sym_file_access_token2] = ACTIONS(9130), + [aux_sym_file_lock_token2] = ACTIONS(9130), + [aux_sym_print_statement_token1] = ACTIONS(9130), + [anon_sym_PLUS] = ACTIONS(9132), + [anon_sym_DASH] = ACTIONS(9130), + [anon_sym_QMARK] = ACTIONS(9132), + [aux_sym_close_statement_token1] = ACTIONS(9130), + [aux_sym_put_statement_token1] = ACTIONS(9130), + [aux_sym_unlock_statement_token1] = ACTIONS(9130), + [aux_sym_seek_statement_token1] = ACTIONS(9130), + [sym_reset_statement] = ACTIONS(9130), + [aux_sym_raise_event_statement_token1] = ACTIONS(9130), + [sym_stop_statement] = ACTIONS(9130), + [sym_beep_statement] = ACTIONS(9130), + [aux_sym_unload_statement_token1] = ACTIONS(9130), + [aux_sym_def_type_statement_token1] = ACTIONS(9130), + [aux_sym_def_type_statement_token2] = ACTIONS(9130), + [aux_sym_def_type_statement_token3] = ACTIONS(9130), + [aux_sym_def_type_statement_token4] = ACTIONS(9130), + [aux_sym_def_type_statement_token5] = ACTIONS(9130), + [aux_sym_def_type_statement_token6] = ACTIONS(9130), + [aux_sym_def_type_statement_token7] = ACTIONS(9130), + [aux_sym_def_type_statement_token8] = ACTIONS(9130), + [aux_sym_def_type_statement_token9] = ACTIONS(9130), + [aux_sym_def_type_statement_token10] = ACTIONS(9130), + [aux_sym_def_type_statement_token11] = ACTIONS(9130), + [aux_sym_def_type_statement_token12] = ACTIONS(9130), + [aux_sym_def_type_statement_token13] = ACTIONS(9130), + [aux_sym_def_type_statement_token14] = ACTIONS(9130), + [aux_sym_call_statement_token1] = ACTIONS(9130), + [sym__ambiguous_call_statement] = ACTIONS(9130), + [aux_sym_addressof_expression_token1] = ACTIONS(9130), + [aux_sym_type_of_expression_token1] = ACTIONS(9130), + [aux_sym_unary_expression_token1] = ACTIONS(9130), + [sym_string_literal] = ACTIONS(9132), + [sym_number_literal] = ACTIONS(9132), + [aux_sym_boolean_literal_token1] = ACTIONS(9130), + [aux_sym_boolean_literal_token2] = ACTIONS(9130), + [sym_nothing_literal] = ACTIONS(9130), + [sym_null_literal] = ACTIONS(9130), + [sym_empty_literal] = ACTIONS(9130), + [sym_date_literal] = ACTIONS(9132), + [anon_sym_POUND] = ACTIONS(9130), + }, + [STATE(7025)] = { + [sym_identifier] = ACTIONS(9134), + [sym_newline] = ACTIONS(9136), + [anon_sym_COLON] = ACTIONS(9136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9134), + [aux_sym_frm_property_statement_token1] = ACTIONS(9134), + [anon_sym_DOT] = ACTIONS(9134), + [anon_sym_BANG] = ACTIONS(9136), + [aux_sym__attribute_identifier_token1] = ACTIONS(9134), + [aux_sym_option_statement_token3] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9134), + [aux_sym_preprocessor_const_token1] = ACTIONS(9134), + [sym_static_modifier] = ACTIONS(9134), + [sym__dim_keyword] = ACTIONS(9134), + [sym__redim_keyword] = ACTIONS(9134), + [aux_sym_get_accessor_token1] = ACTIONS(9134), + [aux_sym_set_accessor_token1] = ACTIONS(9134), + [aux_sym_const_declaration_token1] = ACTIONS(9134), + [anon_sym_LPAREN] = ACTIONS(9136), + [aux_sym_as_type_clause_token2] = ACTIONS(9134), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9134), + [aux_sym_visibility_token1] = ACTIONS(9134), + [aux_sym_visibility_token2] = ACTIONS(9134), + [aux_sym_elseif_fragment_token1] = ACTIONS(9134), + [aux_sym_else_fragment_token1] = ACTIONS(9134), + [aux_sym_select_statement_token1] = ACTIONS(9134), + [aux_sym_select_statement_token2] = ACTIONS(9134), + [aux_sym__for_header_token1] = ACTIONS(9134), + [aux_sym_do_statement_token1] = ACTIONS(9134), + [aux_sym_do_condition_token1] = ACTIONS(9134), + [aux_sym_with_statement_token1] = ACTIONS(9134), + [aux_sym_exit_statement_token1] = ACTIONS(9134), + [sym_end_statement] = ACTIONS(9136), + [aux_sym_on_goto_statement_token1] = ACTIONS(9134), + [aux_sym_on_goto_statement_token2] = ACTIONS(9134), + [aux_sym_on_error_statement_token2] = ACTIONS(9134), + [sym__ambiguous_redim_statement] = ACTIONS(9136), + [aux_sym_erase_statement_token1] = ACTIONS(9134), + [aux_sym_open_statement_token1] = ACTIONS(9134), + [aux_sym_file_mode_token2] = ACTIONS(9134), + [aux_sym_file_access_token2] = ACTIONS(9134), + [aux_sym_file_lock_token2] = ACTIONS(9134), + [aux_sym_print_statement_token1] = ACTIONS(9134), + [anon_sym_PLUS] = ACTIONS(9136), + [anon_sym_DASH] = ACTIONS(9134), + [anon_sym_QMARK] = ACTIONS(9136), + [aux_sym_close_statement_token1] = ACTIONS(9134), + [aux_sym_put_statement_token1] = ACTIONS(9134), + [aux_sym_unlock_statement_token1] = ACTIONS(9134), + [aux_sym_seek_statement_token1] = ACTIONS(9134), + [sym_reset_statement] = ACTIONS(9134), + [aux_sym_raise_event_statement_token1] = ACTIONS(9134), + [sym_stop_statement] = ACTIONS(9134), + [sym_beep_statement] = ACTIONS(9134), + [aux_sym_unload_statement_token1] = ACTIONS(9134), + [aux_sym_def_type_statement_token1] = ACTIONS(9134), + [aux_sym_def_type_statement_token2] = ACTIONS(9134), + [aux_sym_def_type_statement_token3] = ACTIONS(9134), + [aux_sym_def_type_statement_token4] = ACTIONS(9134), + [aux_sym_def_type_statement_token5] = ACTIONS(9134), + [aux_sym_def_type_statement_token6] = ACTIONS(9134), + [aux_sym_def_type_statement_token7] = ACTIONS(9134), + [aux_sym_def_type_statement_token8] = ACTIONS(9134), + [aux_sym_def_type_statement_token9] = ACTIONS(9134), + [aux_sym_def_type_statement_token10] = ACTIONS(9134), + [aux_sym_def_type_statement_token11] = ACTIONS(9134), + [aux_sym_def_type_statement_token12] = ACTIONS(9134), + [aux_sym_def_type_statement_token13] = ACTIONS(9134), + [aux_sym_def_type_statement_token14] = ACTIONS(9134), + [aux_sym_call_statement_token1] = ACTIONS(9134), + [sym__ambiguous_call_statement] = ACTIONS(9134), + [aux_sym_addressof_expression_token1] = ACTIONS(9134), + [aux_sym_type_of_expression_token1] = ACTIONS(9134), + [aux_sym_unary_expression_token1] = ACTIONS(9134), + [sym_string_literal] = ACTIONS(9136), + [sym_number_literal] = ACTIONS(9136), + [aux_sym_boolean_literal_token1] = ACTIONS(9134), + [aux_sym_boolean_literal_token2] = ACTIONS(9134), + [sym_nothing_literal] = ACTIONS(9134), + [sym_null_literal] = ACTIONS(9134), + [sym_empty_literal] = ACTIONS(9134), + [sym_date_literal] = ACTIONS(9136), + [anon_sym_POUND] = ACTIONS(9134), + }, + [STATE(7026)] = { + [sym_identifier] = ACTIONS(9692), + [sym_newline] = ACTIONS(9694), + [anon_sym_COLON] = ACTIONS(9694), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9692), + [aux_sym_frm_property_statement_token1] = ACTIONS(9692), + [anon_sym_DOT] = ACTIONS(9692), + [anon_sym_BANG] = ACTIONS(9694), + [aux_sym__attribute_identifier_token1] = ACTIONS(9692), + [aux_sym_option_statement_token3] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9692), + [aux_sym_preprocessor_const_token1] = ACTIONS(9692), + [sym_static_modifier] = ACTIONS(9692), + [sym__dim_keyword] = ACTIONS(9692), + [sym__redim_keyword] = ACTIONS(9692), + [aux_sym_get_accessor_token1] = ACTIONS(9692), + [aux_sym_set_accessor_token1] = ACTIONS(9692), + [aux_sym_const_declaration_token1] = ACTIONS(9692), + [anon_sym_LPAREN] = ACTIONS(9694), + [aux_sym_as_type_clause_token2] = ACTIONS(9692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9692), + [aux_sym_visibility_token1] = ACTIONS(9692), + [aux_sym_visibility_token2] = ACTIONS(9692), + [aux_sym_elseif_fragment_token1] = ACTIONS(9692), + [aux_sym_else_fragment_token1] = ACTIONS(9692), + [aux_sym_select_statement_token1] = ACTIONS(9692), + [aux_sym_select_statement_token2] = ACTIONS(9692), + [aux_sym__for_header_token1] = ACTIONS(9692), + [aux_sym_do_statement_token1] = ACTIONS(9692), + [aux_sym_do_condition_token1] = ACTIONS(9692), + [aux_sym_with_statement_token1] = ACTIONS(9692), + [aux_sym_exit_statement_token1] = ACTIONS(9692), + [sym_end_statement] = ACTIONS(9694), + [aux_sym_on_goto_statement_token1] = ACTIONS(9692), + [aux_sym_on_goto_statement_token2] = ACTIONS(9692), + [aux_sym_on_error_statement_token2] = ACTIONS(9692), + [sym__ambiguous_redim_statement] = ACTIONS(9694), + [aux_sym_erase_statement_token1] = ACTIONS(9692), + [aux_sym_open_statement_token1] = ACTIONS(9692), + [aux_sym_file_mode_token2] = ACTIONS(9692), + [aux_sym_file_access_token2] = ACTIONS(9692), + [aux_sym_file_lock_token2] = ACTIONS(9692), + [aux_sym_print_statement_token1] = ACTIONS(9692), + [anon_sym_PLUS] = ACTIONS(9694), + [anon_sym_DASH] = ACTIONS(9692), + [anon_sym_QMARK] = ACTIONS(9694), + [aux_sym_close_statement_token1] = ACTIONS(9692), + [aux_sym_put_statement_token1] = ACTIONS(9692), + [aux_sym_unlock_statement_token1] = ACTIONS(9692), + [aux_sym_seek_statement_token1] = ACTIONS(9692), + [sym_reset_statement] = ACTIONS(9692), + [aux_sym_raise_event_statement_token1] = ACTIONS(9692), + [sym_stop_statement] = ACTIONS(9692), + [sym_beep_statement] = ACTIONS(9692), + [aux_sym_unload_statement_token1] = ACTIONS(9692), + [aux_sym_def_type_statement_token1] = ACTIONS(9692), + [aux_sym_def_type_statement_token2] = ACTIONS(9692), + [aux_sym_def_type_statement_token3] = ACTIONS(9692), + [aux_sym_def_type_statement_token4] = ACTIONS(9692), + [aux_sym_def_type_statement_token5] = ACTIONS(9692), + [aux_sym_def_type_statement_token6] = ACTIONS(9692), + [aux_sym_def_type_statement_token7] = ACTIONS(9692), + [aux_sym_def_type_statement_token8] = ACTIONS(9692), + [aux_sym_def_type_statement_token9] = ACTIONS(9692), + [aux_sym_def_type_statement_token10] = ACTIONS(9692), + [aux_sym_def_type_statement_token11] = ACTIONS(9692), + [aux_sym_def_type_statement_token12] = ACTIONS(9692), + [aux_sym_def_type_statement_token13] = ACTIONS(9692), + [aux_sym_def_type_statement_token14] = ACTIONS(9692), + [aux_sym_call_statement_token1] = ACTIONS(9692), + [sym__ambiguous_call_statement] = ACTIONS(9692), + [aux_sym_addressof_expression_token1] = ACTIONS(9692), + [aux_sym_type_of_expression_token1] = ACTIONS(9692), + [aux_sym_unary_expression_token1] = ACTIONS(9692), + [sym_string_literal] = ACTIONS(9694), + [sym_number_literal] = ACTIONS(9694), + [aux_sym_boolean_literal_token1] = ACTIONS(9692), + [aux_sym_boolean_literal_token2] = ACTIONS(9692), + [sym_nothing_literal] = ACTIONS(9692), + [sym_null_literal] = ACTIONS(9692), + [sym_empty_literal] = ACTIONS(9692), + [sym_date_literal] = ACTIONS(9694), + [anon_sym_POUND] = ACTIONS(9692), + }, + [STATE(7027)] = { + [sym_identifier] = ACTIONS(8903), + [sym_newline] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8903), + [aux_sym_frm_property_statement_token1] = ACTIONS(8903), + [anon_sym_DOT] = ACTIONS(8903), + [anon_sym_BANG] = ACTIONS(8905), + [aux_sym__attribute_identifier_token1] = ACTIONS(8903), + [aux_sym_option_statement_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8903), + [aux_sym_preprocessor_const_token1] = ACTIONS(8903), + [sym_static_modifier] = ACTIONS(8903), + [sym__dim_keyword] = ACTIONS(8903), + [sym__redim_keyword] = ACTIONS(8903), + [aux_sym_get_accessor_token1] = ACTIONS(8903), + [aux_sym_set_accessor_token1] = ACTIONS(8903), + [aux_sym_const_declaration_token1] = ACTIONS(8903), + [anon_sym_LPAREN] = ACTIONS(8905), + [aux_sym_as_type_clause_token2] = ACTIONS(8903), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8903), + [aux_sym_visibility_token1] = ACTIONS(8903), + [aux_sym_visibility_token2] = ACTIONS(8903), + [aux_sym_elseif_fragment_token1] = ACTIONS(8903), + [aux_sym_else_fragment_token1] = ACTIONS(8903), + [aux_sym_select_statement_token1] = ACTIONS(8903), + [aux_sym__for_header_token1] = ACTIONS(8903), + [aux_sym_do_statement_token1] = ACTIONS(8903), + [aux_sym_do_condition_token1] = ACTIONS(8903), + [aux_sym_while_statement_token1] = ACTIONS(8903), + [aux_sym_with_statement_token1] = ACTIONS(8903), + [aux_sym_exit_statement_token1] = ACTIONS(8903), + [sym_end_statement] = ACTIONS(8905), + [aux_sym_on_goto_statement_token1] = ACTIONS(8903), + [aux_sym_on_goto_statement_token2] = ACTIONS(8903), + [aux_sym_on_error_statement_token2] = ACTIONS(8903), + [sym__ambiguous_redim_statement] = ACTIONS(8905), + [aux_sym_erase_statement_token1] = ACTIONS(8903), + [aux_sym_open_statement_token1] = ACTIONS(8903), + [aux_sym_file_mode_token2] = ACTIONS(8903), + [aux_sym_file_access_token2] = ACTIONS(8903), + [aux_sym_file_lock_token2] = ACTIONS(8903), + [aux_sym_print_statement_token1] = ACTIONS(8903), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_DASH] = ACTIONS(8903), + [anon_sym_QMARK] = ACTIONS(8905), + [aux_sym_close_statement_token1] = ACTIONS(8903), + [aux_sym_put_statement_token1] = ACTIONS(8903), + [aux_sym_unlock_statement_token1] = ACTIONS(8903), + [aux_sym_seek_statement_token1] = ACTIONS(8903), + [sym_reset_statement] = ACTIONS(8903), + [aux_sym_raise_event_statement_token1] = ACTIONS(8903), + [sym_stop_statement] = ACTIONS(8903), + [sym_beep_statement] = ACTIONS(8903), + [aux_sym_unload_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token2] = ACTIONS(8903), + [aux_sym_def_type_statement_token3] = ACTIONS(8903), + [aux_sym_def_type_statement_token4] = ACTIONS(8903), + [aux_sym_def_type_statement_token5] = ACTIONS(8903), + [aux_sym_def_type_statement_token6] = ACTIONS(8903), + [aux_sym_def_type_statement_token7] = ACTIONS(8903), + [aux_sym_def_type_statement_token8] = ACTIONS(8903), + [aux_sym_def_type_statement_token9] = ACTIONS(8903), + [aux_sym_def_type_statement_token10] = ACTIONS(8903), + [aux_sym_def_type_statement_token11] = ACTIONS(8903), + [aux_sym_def_type_statement_token12] = ACTIONS(8903), + [aux_sym_def_type_statement_token13] = ACTIONS(8903), + [aux_sym_def_type_statement_token14] = ACTIONS(8903), + [aux_sym_call_statement_token1] = ACTIONS(8903), + [sym__ambiguous_call_statement] = ACTIONS(8903), + [aux_sym_addressof_expression_token1] = ACTIONS(8903), + [aux_sym_type_of_expression_token1] = ACTIONS(8903), + [aux_sym_unary_expression_token1] = ACTIONS(8903), + [sym_string_literal] = ACTIONS(8905), + [sym_number_literal] = ACTIONS(8905), + [aux_sym_boolean_literal_token1] = ACTIONS(8903), + [aux_sym_boolean_literal_token2] = ACTIONS(8903), + [sym_nothing_literal] = ACTIONS(8903), + [sym_null_literal] = ACTIONS(8903), + [sym_empty_literal] = ACTIONS(8903), + [sym_date_literal] = ACTIONS(8905), + [anon_sym_POUND] = ACTIONS(8903), + }, + [STATE(7028)] = { + [sym_identifier] = ACTIONS(8935), + [sym_newline] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(8937), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8935), + [aux_sym_frm_property_statement_token1] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_BANG] = ACTIONS(8937), + [aux_sym__attribute_identifier_token1] = ACTIONS(8935), + [aux_sym_option_statement_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8935), + [aux_sym_preprocessor_const_token1] = ACTIONS(8935), + [sym_static_modifier] = ACTIONS(8935), + [sym__dim_keyword] = ACTIONS(8935), + [sym__redim_keyword] = ACTIONS(8935), + [aux_sym_get_accessor_token1] = ACTIONS(8935), + [aux_sym_set_accessor_token1] = ACTIONS(8935), + [aux_sym_const_declaration_token1] = ACTIONS(8935), + [anon_sym_LPAREN] = ACTIONS(8937), + [aux_sym_as_type_clause_token2] = ACTIONS(8935), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8935), + [aux_sym_visibility_token1] = ACTIONS(8935), + [aux_sym_visibility_token2] = ACTIONS(8935), + [aux_sym_elseif_fragment_token1] = ACTIONS(8935), + [aux_sym_else_fragment_token1] = ACTIONS(8935), + [aux_sym_select_statement_token1] = ACTIONS(8935), + [aux_sym__for_header_token1] = ACTIONS(8935), + [aux_sym_do_statement_token1] = ACTIONS(8935), + [aux_sym_do_condition_token1] = ACTIONS(8935), + [aux_sym_with_statement_token1] = ACTIONS(8935), + [aux_sym_exit_statement_token1] = ACTIONS(8935), + [sym_end_statement] = ACTIONS(8937), + [aux_sym_on_goto_statement_token1] = ACTIONS(8935), + [aux_sym_on_goto_statement_token2] = ACTIONS(8935), + [aux_sym_on_error_statement_token2] = ACTIONS(8935), + [sym__ambiguous_redim_statement] = ACTIONS(8937), + [aux_sym_erase_statement_token1] = ACTIONS(8935), + [aux_sym_open_statement_token1] = ACTIONS(8935), + [aux_sym_file_mode_token2] = ACTIONS(8935), + [aux_sym_file_access_token2] = ACTIONS(8935), + [aux_sym_file_lock_token2] = ACTIONS(8935), + [aux_sym_print_statement_token1] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [aux_sym_close_statement_token1] = ACTIONS(8935), + [aux_sym_put_statement_token1] = ACTIONS(8935), + [aux_sym_unlock_statement_token1] = ACTIONS(8935), + [aux_sym_seek_statement_token1] = ACTIONS(8935), + [sym_reset_statement] = ACTIONS(8935), + [aux_sym_raise_event_statement_token1] = ACTIONS(8935), + [sym_stop_statement] = ACTIONS(8935), + [sym_beep_statement] = ACTIONS(8935), + [aux_sym_unload_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token2] = ACTIONS(8935), + [aux_sym_def_type_statement_token3] = ACTIONS(8935), + [aux_sym_def_type_statement_token4] = ACTIONS(8935), + [aux_sym_def_type_statement_token5] = ACTIONS(8935), + [aux_sym_def_type_statement_token6] = ACTIONS(8935), + [aux_sym_def_type_statement_token7] = ACTIONS(8935), + [aux_sym_def_type_statement_token8] = ACTIONS(8935), + [aux_sym_def_type_statement_token9] = ACTIONS(8935), + [aux_sym_def_type_statement_token10] = ACTIONS(8935), + [aux_sym_def_type_statement_token11] = ACTIONS(8935), + [aux_sym_def_type_statement_token12] = ACTIONS(8935), + [aux_sym_def_type_statement_token13] = ACTIONS(8935), + [aux_sym_def_type_statement_token14] = ACTIONS(8935), + [aux_sym_call_statement_token1] = ACTIONS(8935), + [sym__ambiguous_call_statement] = ACTIONS(8935), + [aux_sym_addressof_expression_token1] = ACTIONS(8935), + [aux_sym_type_of_expression_token1] = ACTIONS(8935), + [aux_sym_unary_expression_token1] = ACTIONS(8935), + [sym_string_literal] = ACTIONS(8937), + [sym_number_literal] = ACTIONS(8937), + [aux_sym_boolean_literal_token1] = ACTIONS(8935), + [aux_sym_boolean_literal_token2] = ACTIONS(8935), + [sym_nothing_literal] = ACTIONS(8935), + [sym_null_literal] = ACTIONS(8935), + [sym_empty_literal] = ACTIONS(8935), + [sym_date_literal] = ACTIONS(8937), + [anon_sym_POUND] = ACTIONS(8935), + }, + [STATE(7029)] = { + [sym_identifier] = ACTIONS(9696), + [sym_newline] = ACTIONS(9698), + [anon_sym_COLON] = ACTIONS(9698), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9696), + [aux_sym_frm_property_statement_token1] = ACTIONS(9696), + [anon_sym_DOT] = ACTIONS(9696), + [anon_sym_BANG] = ACTIONS(9698), + [aux_sym__attribute_identifier_token1] = ACTIONS(9696), + [aux_sym_option_statement_token3] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9696), + [aux_sym_preprocessor_const_token1] = ACTIONS(9696), + [sym_static_modifier] = ACTIONS(9696), + [sym__dim_keyword] = ACTIONS(9696), + [sym__redim_keyword] = ACTIONS(9696), + [aux_sym_get_accessor_token1] = ACTIONS(9696), + [aux_sym_set_accessor_token1] = ACTIONS(9696), + [aux_sym_const_declaration_token1] = ACTIONS(9696), + [anon_sym_LPAREN] = ACTIONS(9698), + [aux_sym_as_type_clause_token2] = ACTIONS(9696), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9696), + [aux_sym_visibility_token1] = ACTIONS(9696), + [aux_sym_visibility_token2] = ACTIONS(9696), + [aux_sym_elseif_fragment_token1] = ACTIONS(9696), + [aux_sym_else_fragment_token1] = ACTIONS(9696), + [aux_sym_select_statement_token1] = ACTIONS(9696), + [aux_sym_select_statement_token2] = ACTIONS(9696), + [aux_sym__for_header_token1] = ACTIONS(9696), + [aux_sym_do_statement_token1] = ACTIONS(9696), + [aux_sym_do_condition_token1] = ACTIONS(9696), + [aux_sym_with_statement_token1] = ACTIONS(9696), + [aux_sym_exit_statement_token1] = ACTIONS(9696), + [sym_end_statement] = ACTIONS(9698), + [aux_sym_on_goto_statement_token1] = ACTIONS(9696), + [aux_sym_on_goto_statement_token2] = ACTIONS(9696), + [aux_sym_on_error_statement_token2] = ACTIONS(9696), + [sym__ambiguous_redim_statement] = ACTIONS(9698), + [aux_sym_erase_statement_token1] = ACTIONS(9696), + [aux_sym_open_statement_token1] = ACTIONS(9696), + [aux_sym_file_mode_token2] = ACTIONS(9696), + [aux_sym_file_access_token2] = ACTIONS(9696), + [aux_sym_file_lock_token2] = ACTIONS(9696), + [aux_sym_print_statement_token1] = ACTIONS(9696), + [anon_sym_PLUS] = ACTIONS(9698), + [anon_sym_DASH] = ACTIONS(9696), + [anon_sym_QMARK] = ACTIONS(9698), + [aux_sym_close_statement_token1] = ACTIONS(9696), + [aux_sym_put_statement_token1] = ACTIONS(9696), + [aux_sym_unlock_statement_token1] = ACTIONS(9696), + [aux_sym_seek_statement_token1] = ACTIONS(9696), + [sym_reset_statement] = ACTIONS(9696), + [aux_sym_raise_event_statement_token1] = ACTIONS(9696), + [sym_stop_statement] = ACTIONS(9696), + [sym_beep_statement] = ACTIONS(9696), + [aux_sym_unload_statement_token1] = ACTIONS(9696), + [aux_sym_def_type_statement_token1] = ACTIONS(9696), + [aux_sym_def_type_statement_token2] = ACTIONS(9696), + [aux_sym_def_type_statement_token3] = ACTIONS(9696), + [aux_sym_def_type_statement_token4] = ACTIONS(9696), + [aux_sym_def_type_statement_token5] = ACTIONS(9696), + [aux_sym_def_type_statement_token6] = ACTIONS(9696), + [aux_sym_def_type_statement_token7] = ACTIONS(9696), + [aux_sym_def_type_statement_token8] = ACTIONS(9696), + [aux_sym_def_type_statement_token9] = ACTIONS(9696), + [aux_sym_def_type_statement_token10] = ACTIONS(9696), + [aux_sym_def_type_statement_token11] = ACTIONS(9696), + [aux_sym_def_type_statement_token12] = ACTIONS(9696), + [aux_sym_def_type_statement_token13] = ACTIONS(9696), + [aux_sym_def_type_statement_token14] = ACTIONS(9696), + [aux_sym_call_statement_token1] = ACTIONS(9696), + [sym__ambiguous_call_statement] = ACTIONS(9696), + [aux_sym_addressof_expression_token1] = ACTIONS(9696), + [aux_sym_type_of_expression_token1] = ACTIONS(9696), + [aux_sym_unary_expression_token1] = ACTIONS(9696), + [sym_string_literal] = ACTIONS(9698), + [sym_number_literal] = ACTIONS(9698), + [aux_sym_boolean_literal_token1] = ACTIONS(9696), + [aux_sym_boolean_literal_token2] = ACTIONS(9696), + [sym_nothing_literal] = ACTIONS(9696), + [sym_null_literal] = ACTIONS(9696), + [sym_empty_literal] = ACTIONS(9696), + [sym_date_literal] = ACTIONS(9698), + [anon_sym_POUND] = ACTIONS(9696), + }, + [STATE(7030)] = { + [sym_identifier] = ACTIONS(9496), + [sym_newline] = ACTIONS(9498), + [anon_sym_COLON] = ACTIONS(9498), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9496), + [aux_sym_frm_property_statement_token1] = ACTIONS(9496), + [anon_sym_DOT] = ACTIONS(9496), + [anon_sym_BANG] = ACTIONS(9498), + [aux_sym__attribute_identifier_token1] = ACTIONS(9496), + [aux_sym_option_statement_token3] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9496), + [aux_sym_preprocessor_const_token1] = ACTIONS(9496), + [sym_static_modifier] = ACTIONS(9496), + [sym__dim_keyword] = ACTIONS(9496), + [sym__redim_keyword] = ACTIONS(9496), + [aux_sym_get_accessor_token1] = ACTIONS(9496), + [aux_sym_set_accessor_token1] = ACTIONS(9496), + [aux_sym_const_declaration_token1] = ACTIONS(9496), + [anon_sym_LPAREN] = ACTIONS(9498), + [aux_sym_as_type_clause_token2] = ACTIONS(9496), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9496), + [aux_sym_visibility_token1] = ACTIONS(9496), + [aux_sym_visibility_token2] = ACTIONS(9496), + [aux_sym_elseif_fragment_token1] = ACTIONS(9496), + [aux_sym_else_fragment_token1] = ACTIONS(9496), + [aux_sym_select_statement_token1] = ACTIONS(9496), + [aux_sym__for_header_token1] = ACTIONS(9496), + [aux_sym_do_statement_token1] = ACTIONS(9496), + [aux_sym_do_condition_token1] = ACTIONS(9496), + [aux_sym_with_statement_token1] = ACTIONS(9496), + [aux_sym_exit_statement_token1] = ACTIONS(9496), + [sym_end_statement] = ACTIONS(9498), + [aux_sym_on_goto_statement_token1] = ACTIONS(9496), + [aux_sym_on_goto_statement_token2] = ACTIONS(9496), + [aux_sym_on_error_statement_token2] = ACTIONS(9496), + [sym__ambiguous_redim_statement] = ACTIONS(9498), + [aux_sym_erase_statement_token1] = ACTIONS(9496), + [aux_sym_open_statement_token1] = ACTIONS(9496), + [aux_sym_file_mode_token2] = ACTIONS(9496), + [aux_sym_file_access_token2] = ACTIONS(9496), + [aux_sym_file_lock_token2] = ACTIONS(9496), + [aux_sym_print_statement_token1] = ACTIONS(9496), + [anon_sym_PLUS] = ACTIONS(9498), + [anon_sym_DASH] = ACTIONS(9496), + [anon_sym_QMARK] = ACTIONS(9498), + [aux_sym_close_statement_token1] = ACTIONS(9496), + [aux_sym_put_statement_token1] = ACTIONS(9496), + [aux_sym_unlock_statement_token1] = ACTIONS(9496), + [aux_sym_seek_statement_token1] = ACTIONS(9496), + [sym_reset_statement] = ACTIONS(9496), + [aux_sym_raise_event_statement_token1] = ACTIONS(9496), + [sym_stop_statement] = ACTIONS(9496), + [sym_beep_statement] = ACTIONS(9496), + [aux_sym_unload_statement_token1] = ACTIONS(9496), + [aux_sym_def_type_statement_token1] = ACTIONS(9496), + [aux_sym_def_type_statement_token2] = ACTIONS(9496), + [aux_sym_def_type_statement_token3] = ACTIONS(9496), + [aux_sym_def_type_statement_token4] = ACTIONS(9496), + [aux_sym_def_type_statement_token5] = ACTIONS(9496), + [aux_sym_def_type_statement_token6] = ACTIONS(9496), + [aux_sym_def_type_statement_token7] = ACTIONS(9496), + [aux_sym_def_type_statement_token8] = ACTIONS(9496), + [aux_sym_def_type_statement_token9] = ACTIONS(9496), + [aux_sym_def_type_statement_token10] = ACTIONS(9496), + [aux_sym_def_type_statement_token11] = ACTIONS(9496), + [aux_sym_def_type_statement_token12] = ACTIONS(9496), + [aux_sym_def_type_statement_token13] = ACTIONS(9496), + [aux_sym_def_type_statement_token14] = ACTIONS(9496), + [aux_sym_call_statement_token1] = ACTIONS(9496), + [sym__ambiguous_call_statement] = ACTIONS(9496), + [aux_sym_addressof_expression_token1] = ACTIONS(9496), + [aux_sym_type_of_expression_token1] = ACTIONS(9496), + [aux_sym_unary_expression_token1] = ACTIONS(9496), + [sym_string_literal] = ACTIONS(9498), + [sym_number_literal] = ACTIONS(9498), + [aux_sym_boolean_literal_token1] = ACTIONS(9496), + [aux_sym_boolean_literal_token2] = ACTIONS(9496), + [sym_nothing_literal] = ACTIONS(9496), + [sym_null_literal] = ACTIONS(9496), + [sym_empty_literal] = ACTIONS(9496), + [sym_date_literal] = ACTIONS(9498), + [anon_sym_POUND] = ACTIONS(9496), + }, + [STATE(7031)] = { + [sym_identifier] = ACTIONS(8911), + [sym_newline] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8911), + [aux_sym_frm_property_statement_token1] = ACTIONS(8911), + [anon_sym_DOT] = ACTIONS(8911), + [anon_sym_BANG] = ACTIONS(8913), + [aux_sym__attribute_identifier_token1] = ACTIONS(8911), + [aux_sym_option_statement_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8911), + [aux_sym_preprocessor_const_token1] = ACTIONS(8911), + [sym_static_modifier] = ACTIONS(8911), + [sym__dim_keyword] = ACTIONS(8911), + [sym__redim_keyword] = ACTIONS(8911), + [aux_sym_get_accessor_token1] = ACTIONS(8911), + [aux_sym_set_accessor_token1] = ACTIONS(8911), + [aux_sym_const_declaration_token1] = ACTIONS(8911), + [anon_sym_LPAREN] = ACTIONS(8913), + [aux_sym_as_type_clause_token2] = ACTIONS(8911), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8911), + [aux_sym_visibility_token1] = ACTIONS(8911), + [aux_sym_visibility_token2] = ACTIONS(8911), + [aux_sym_elseif_fragment_token1] = ACTIONS(8911), + [aux_sym_else_fragment_token1] = ACTIONS(8911), + [aux_sym_select_statement_token1] = ACTIONS(8911), + [aux_sym__for_header_token1] = ACTIONS(8911), + [aux_sym_do_statement_token1] = ACTIONS(8911), + [aux_sym_do_condition_token1] = ACTIONS(8911), + [aux_sym_while_statement_token1] = ACTIONS(8911), + [aux_sym_with_statement_token1] = ACTIONS(8911), + [aux_sym_exit_statement_token1] = ACTIONS(8911), + [sym_end_statement] = ACTIONS(8913), + [aux_sym_on_goto_statement_token1] = ACTIONS(8911), + [aux_sym_on_goto_statement_token2] = ACTIONS(8911), + [aux_sym_on_error_statement_token2] = ACTIONS(8911), + [sym__ambiguous_redim_statement] = ACTIONS(8913), + [aux_sym_erase_statement_token1] = ACTIONS(8911), + [aux_sym_open_statement_token1] = ACTIONS(8911), + [aux_sym_file_mode_token2] = ACTIONS(8911), + [aux_sym_file_access_token2] = ACTIONS(8911), + [aux_sym_file_lock_token2] = ACTIONS(8911), + [aux_sym_print_statement_token1] = ACTIONS(8911), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_DASH] = ACTIONS(8911), + [anon_sym_QMARK] = ACTIONS(8913), + [aux_sym_close_statement_token1] = ACTIONS(8911), + [aux_sym_put_statement_token1] = ACTIONS(8911), + [aux_sym_unlock_statement_token1] = ACTIONS(8911), + [aux_sym_seek_statement_token1] = ACTIONS(8911), + [sym_reset_statement] = ACTIONS(8911), + [aux_sym_raise_event_statement_token1] = ACTIONS(8911), + [sym_stop_statement] = ACTIONS(8911), + [sym_beep_statement] = ACTIONS(8911), + [aux_sym_unload_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token2] = ACTIONS(8911), + [aux_sym_def_type_statement_token3] = ACTIONS(8911), + [aux_sym_def_type_statement_token4] = ACTIONS(8911), + [aux_sym_def_type_statement_token5] = ACTIONS(8911), + [aux_sym_def_type_statement_token6] = ACTIONS(8911), + [aux_sym_def_type_statement_token7] = ACTIONS(8911), + [aux_sym_def_type_statement_token8] = ACTIONS(8911), + [aux_sym_def_type_statement_token9] = ACTIONS(8911), + [aux_sym_def_type_statement_token10] = ACTIONS(8911), + [aux_sym_def_type_statement_token11] = ACTIONS(8911), + [aux_sym_def_type_statement_token12] = ACTIONS(8911), + [aux_sym_def_type_statement_token13] = ACTIONS(8911), + [aux_sym_def_type_statement_token14] = ACTIONS(8911), + [aux_sym_call_statement_token1] = ACTIONS(8911), + [sym__ambiguous_call_statement] = ACTIONS(8911), + [aux_sym_addressof_expression_token1] = ACTIONS(8911), + [aux_sym_type_of_expression_token1] = ACTIONS(8911), + [aux_sym_unary_expression_token1] = ACTIONS(8911), + [sym_string_literal] = ACTIONS(8913), + [sym_number_literal] = ACTIONS(8913), + [aux_sym_boolean_literal_token1] = ACTIONS(8911), + [aux_sym_boolean_literal_token2] = ACTIONS(8911), + [sym_nothing_literal] = ACTIONS(8911), + [sym_null_literal] = ACTIONS(8911), + [sym_empty_literal] = ACTIONS(8911), + [sym_date_literal] = ACTIONS(8913), + [anon_sym_POUND] = ACTIONS(8911), + }, + [STATE(7032)] = { + [sym_identifier] = ACTIONS(9072), + [sym_newline] = ACTIONS(9074), + [anon_sym_COLON] = ACTIONS(9074), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9072), + [aux_sym_frm_property_statement_token1] = ACTIONS(9072), + [anon_sym_DOT] = ACTIONS(9072), + [anon_sym_BANG] = ACTIONS(9074), + [aux_sym__attribute_identifier_token1] = ACTIONS(9072), + [aux_sym_option_statement_token3] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9072), + [aux_sym_preprocessor_const_token1] = ACTIONS(9072), + [sym_static_modifier] = ACTIONS(9072), + [sym__dim_keyword] = ACTIONS(9072), + [sym__redim_keyword] = ACTIONS(9072), + [aux_sym_get_accessor_token1] = ACTIONS(9072), + [aux_sym_set_accessor_token1] = ACTIONS(9072), + [aux_sym_const_declaration_token1] = ACTIONS(9072), + [anon_sym_LPAREN] = ACTIONS(9074), + [aux_sym_as_type_clause_token2] = ACTIONS(9072), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9072), + [aux_sym_visibility_token1] = ACTIONS(9072), + [aux_sym_visibility_token2] = ACTIONS(9072), + [aux_sym_elseif_fragment_token1] = ACTIONS(9072), + [aux_sym_else_fragment_token1] = ACTIONS(9072), + [aux_sym_select_statement_token1] = ACTIONS(9072), + [aux_sym__for_header_token1] = ACTIONS(9072), + [aux_sym_do_statement_token1] = ACTIONS(9072), + [aux_sym_do_condition_token1] = ACTIONS(9072), + [aux_sym_with_statement_token1] = ACTIONS(9072), + [aux_sym_exit_statement_token1] = ACTIONS(9072), + [sym_end_statement] = ACTIONS(9074), + [aux_sym_on_goto_statement_token1] = ACTIONS(9072), + [aux_sym_on_goto_statement_token2] = ACTIONS(9072), + [aux_sym_on_error_statement_token2] = ACTIONS(9072), + [sym__ambiguous_redim_statement] = ACTIONS(9074), + [aux_sym_erase_statement_token1] = ACTIONS(9072), + [aux_sym_open_statement_token1] = ACTIONS(9072), + [aux_sym_file_mode_token2] = ACTIONS(9072), + [aux_sym_file_access_token2] = ACTIONS(9072), + [aux_sym_file_lock_token2] = ACTIONS(9072), + [aux_sym_print_statement_token1] = ACTIONS(9072), + [anon_sym_PLUS] = ACTIONS(9074), + [anon_sym_DASH] = ACTIONS(9072), + [anon_sym_QMARK] = ACTIONS(9074), + [aux_sym_close_statement_token1] = ACTIONS(9072), + [aux_sym_put_statement_token1] = ACTIONS(9072), + [aux_sym_unlock_statement_token1] = ACTIONS(9072), + [aux_sym_seek_statement_token1] = ACTIONS(9072), + [sym_reset_statement] = ACTIONS(9072), + [aux_sym_raise_event_statement_token1] = ACTIONS(9072), + [sym_stop_statement] = ACTIONS(9072), + [sym_beep_statement] = ACTIONS(9072), + [aux_sym_unload_statement_token1] = ACTIONS(9072), + [aux_sym_def_type_statement_token1] = ACTIONS(9072), + [aux_sym_def_type_statement_token2] = ACTIONS(9072), + [aux_sym_def_type_statement_token3] = ACTIONS(9072), + [aux_sym_def_type_statement_token4] = ACTIONS(9072), + [aux_sym_def_type_statement_token5] = ACTIONS(9072), + [aux_sym_def_type_statement_token6] = ACTIONS(9072), + [aux_sym_def_type_statement_token7] = ACTIONS(9072), + [aux_sym_def_type_statement_token8] = ACTIONS(9072), + [aux_sym_def_type_statement_token9] = ACTIONS(9072), + [aux_sym_def_type_statement_token10] = ACTIONS(9072), + [aux_sym_def_type_statement_token11] = ACTIONS(9072), + [aux_sym_def_type_statement_token12] = ACTIONS(9072), + [aux_sym_def_type_statement_token13] = ACTIONS(9072), + [aux_sym_def_type_statement_token14] = ACTIONS(9072), + [aux_sym_call_statement_token1] = ACTIONS(9072), + [sym__ambiguous_call_statement] = ACTIONS(9072), + [aux_sym_addressof_expression_token1] = ACTIONS(9072), + [aux_sym_type_of_expression_token1] = ACTIONS(9072), + [aux_sym_unary_expression_token1] = ACTIONS(9072), + [sym_string_literal] = ACTIONS(9074), + [sym_number_literal] = ACTIONS(9074), + [aux_sym_boolean_literal_token1] = ACTIONS(9072), + [aux_sym_boolean_literal_token2] = ACTIONS(9072), + [sym_nothing_literal] = ACTIONS(9072), + [sym_null_literal] = ACTIONS(9072), + [sym_empty_literal] = ACTIONS(9072), + [sym_date_literal] = ACTIONS(9074), + [anon_sym_POUND] = ACTIONS(9072), + }, + [STATE(7033)] = { + [sym_identifier] = ACTIONS(9552), + [sym_newline] = ACTIONS(9554), + [anon_sym_COLON] = ACTIONS(9554), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9552), + [aux_sym_frm_property_statement_token1] = ACTIONS(9552), + [anon_sym_DOT] = ACTIONS(9552), + [anon_sym_BANG] = ACTIONS(9554), + [aux_sym__attribute_identifier_token1] = ACTIONS(9552), + [aux_sym_option_statement_token3] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9552), + [aux_sym_preprocessor_const_token1] = ACTIONS(9552), + [sym_static_modifier] = ACTIONS(9552), + [sym__dim_keyword] = ACTIONS(9552), + [sym__redim_keyword] = ACTIONS(9552), + [aux_sym_get_accessor_token1] = ACTIONS(9552), + [aux_sym_set_accessor_token1] = ACTIONS(9552), + [aux_sym_const_declaration_token1] = ACTIONS(9552), + [anon_sym_LPAREN] = ACTIONS(9554), + [aux_sym_as_type_clause_token2] = ACTIONS(9552), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9552), + [aux_sym_visibility_token1] = ACTIONS(9552), + [aux_sym_visibility_token2] = ACTIONS(9552), + [aux_sym_elseif_fragment_token1] = ACTIONS(9552), + [aux_sym_else_fragment_token1] = ACTIONS(9552), + [aux_sym_select_statement_token1] = ACTIONS(9552), + [aux_sym__for_header_token1] = ACTIONS(9552), + [aux_sym_do_statement_token1] = ACTIONS(9552), + [aux_sym_do_condition_token1] = ACTIONS(9552), + [aux_sym_while_statement_token1] = ACTIONS(9552), + [aux_sym_with_statement_token1] = ACTIONS(9552), + [aux_sym_exit_statement_token1] = ACTIONS(9552), + [sym_end_statement] = ACTIONS(9554), + [aux_sym_on_goto_statement_token1] = ACTIONS(9552), + [aux_sym_on_goto_statement_token2] = ACTIONS(9552), + [aux_sym_on_error_statement_token2] = ACTIONS(9552), + [sym__ambiguous_redim_statement] = ACTIONS(9554), + [aux_sym_erase_statement_token1] = ACTIONS(9552), + [aux_sym_open_statement_token1] = ACTIONS(9552), + [aux_sym_file_mode_token2] = ACTIONS(9552), + [aux_sym_file_access_token2] = ACTIONS(9552), + [aux_sym_file_lock_token2] = ACTIONS(9552), + [aux_sym_print_statement_token1] = ACTIONS(9552), + [anon_sym_PLUS] = ACTIONS(9554), + [anon_sym_DASH] = ACTIONS(9552), + [anon_sym_QMARK] = ACTIONS(9554), + [aux_sym_close_statement_token1] = ACTIONS(9552), + [aux_sym_put_statement_token1] = ACTIONS(9552), + [aux_sym_unlock_statement_token1] = ACTIONS(9552), + [aux_sym_seek_statement_token1] = ACTIONS(9552), + [sym_reset_statement] = ACTIONS(9552), + [aux_sym_raise_event_statement_token1] = ACTIONS(9552), + [sym_stop_statement] = ACTIONS(9552), + [sym_beep_statement] = ACTIONS(9552), + [aux_sym_unload_statement_token1] = ACTIONS(9552), + [aux_sym_def_type_statement_token1] = ACTIONS(9552), + [aux_sym_def_type_statement_token2] = ACTIONS(9552), + [aux_sym_def_type_statement_token3] = ACTIONS(9552), + [aux_sym_def_type_statement_token4] = ACTIONS(9552), + [aux_sym_def_type_statement_token5] = ACTIONS(9552), + [aux_sym_def_type_statement_token6] = ACTIONS(9552), + [aux_sym_def_type_statement_token7] = ACTIONS(9552), + [aux_sym_def_type_statement_token8] = ACTIONS(9552), + [aux_sym_def_type_statement_token9] = ACTIONS(9552), + [aux_sym_def_type_statement_token10] = ACTIONS(9552), + [aux_sym_def_type_statement_token11] = ACTIONS(9552), + [aux_sym_def_type_statement_token12] = ACTIONS(9552), + [aux_sym_def_type_statement_token13] = ACTIONS(9552), + [aux_sym_def_type_statement_token14] = ACTIONS(9552), + [aux_sym_call_statement_token1] = ACTIONS(9552), + [sym__ambiguous_call_statement] = ACTIONS(9552), + [aux_sym_addressof_expression_token1] = ACTIONS(9552), + [aux_sym_type_of_expression_token1] = ACTIONS(9552), + [aux_sym_unary_expression_token1] = ACTIONS(9552), + [sym_string_literal] = ACTIONS(9554), + [sym_number_literal] = ACTIONS(9554), + [aux_sym_boolean_literal_token1] = ACTIONS(9552), + [aux_sym_boolean_literal_token2] = ACTIONS(9552), + [sym_nothing_literal] = ACTIONS(9552), + [sym_null_literal] = ACTIONS(9552), + [sym_empty_literal] = ACTIONS(9552), + [sym_date_literal] = ACTIONS(9554), + [anon_sym_POUND] = ACTIONS(9552), + }, + [STATE(7034)] = { + [sym_identifier] = ACTIONS(9084), + [sym_newline] = ACTIONS(9086), + [anon_sym_COLON] = ACTIONS(9086), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9084), + [aux_sym_frm_property_statement_token1] = ACTIONS(9084), + [anon_sym_DOT] = ACTIONS(9084), + [anon_sym_BANG] = ACTIONS(9086), + [aux_sym__attribute_identifier_token1] = ACTIONS(9084), + [aux_sym_option_statement_token3] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9084), + [aux_sym_preprocessor_const_token1] = ACTIONS(9084), + [sym_static_modifier] = ACTIONS(9084), + [sym__dim_keyword] = ACTIONS(9084), + [sym__redim_keyword] = ACTIONS(9084), + [aux_sym_get_accessor_token1] = ACTIONS(9084), + [aux_sym_set_accessor_token1] = ACTIONS(9084), + [aux_sym_const_declaration_token1] = ACTIONS(9084), + [anon_sym_LPAREN] = ACTIONS(9086), + [aux_sym_as_type_clause_token2] = ACTIONS(9084), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9084), + [aux_sym_visibility_token1] = ACTIONS(9084), + [aux_sym_visibility_token2] = ACTIONS(9084), + [aux_sym_elseif_fragment_token1] = ACTIONS(9084), + [aux_sym_else_fragment_token1] = ACTIONS(9084), + [aux_sym_select_statement_token1] = ACTIONS(9084), + [aux_sym_select_statement_token2] = ACTIONS(9084), + [aux_sym__for_header_token1] = ACTIONS(9084), + [aux_sym_do_statement_token1] = ACTIONS(9084), + [aux_sym_do_condition_token1] = ACTIONS(9084), + [aux_sym_with_statement_token1] = ACTIONS(9084), + [aux_sym_exit_statement_token1] = ACTIONS(9084), + [sym_end_statement] = ACTIONS(9086), + [aux_sym_on_goto_statement_token1] = ACTIONS(9084), + [aux_sym_on_goto_statement_token2] = ACTIONS(9084), + [aux_sym_on_error_statement_token2] = ACTIONS(9084), + [sym__ambiguous_redim_statement] = ACTIONS(9086), + [aux_sym_erase_statement_token1] = ACTIONS(9084), + [aux_sym_open_statement_token1] = ACTIONS(9084), + [aux_sym_file_mode_token2] = ACTIONS(9084), + [aux_sym_file_access_token2] = ACTIONS(9084), + [aux_sym_file_lock_token2] = ACTIONS(9084), + [aux_sym_print_statement_token1] = ACTIONS(9084), + [anon_sym_PLUS] = ACTIONS(9086), + [anon_sym_DASH] = ACTIONS(9084), + [anon_sym_QMARK] = ACTIONS(9086), + [aux_sym_close_statement_token1] = ACTIONS(9084), + [aux_sym_put_statement_token1] = ACTIONS(9084), + [aux_sym_unlock_statement_token1] = ACTIONS(9084), + [aux_sym_seek_statement_token1] = ACTIONS(9084), + [sym_reset_statement] = ACTIONS(9084), + [aux_sym_raise_event_statement_token1] = ACTIONS(9084), + [sym_stop_statement] = ACTIONS(9084), + [sym_beep_statement] = ACTIONS(9084), + [aux_sym_unload_statement_token1] = ACTIONS(9084), + [aux_sym_def_type_statement_token1] = ACTIONS(9084), + [aux_sym_def_type_statement_token2] = ACTIONS(9084), + [aux_sym_def_type_statement_token3] = ACTIONS(9084), + [aux_sym_def_type_statement_token4] = ACTIONS(9084), + [aux_sym_def_type_statement_token5] = ACTIONS(9084), + [aux_sym_def_type_statement_token6] = ACTIONS(9084), + [aux_sym_def_type_statement_token7] = ACTIONS(9084), + [aux_sym_def_type_statement_token8] = ACTIONS(9084), + [aux_sym_def_type_statement_token9] = ACTIONS(9084), + [aux_sym_def_type_statement_token10] = ACTIONS(9084), + [aux_sym_def_type_statement_token11] = ACTIONS(9084), + [aux_sym_def_type_statement_token12] = ACTIONS(9084), + [aux_sym_def_type_statement_token13] = ACTIONS(9084), + [aux_sym_def_type_statement_token14] = ACTIONS(9084), + [aux_sym_call_statement_token1] = ACTIONS(9084), + [sym__ambiguous_call_statement] = ACTIONS(9084), + [aux_sym_addressof_expression_token1] = ACTIONS(9084), + [aux_sym_type_of_expression_token1] = ACTIONS(9084), + [aux_sym_unary_expression_token1] = ACTIONS(9084), + [sym_string_literal] = ACTIONS(9086), + [sym_number_literal] = ACTIONS(9086), + [aux_sym_boolean_literal_token1] = ACTIONS(9084), + [aux_sym_boolean_literal_token2] = ACTIONS(9084), + [sym_nothing_literal] = ACTIONS(9084), + [sym_null_literal] = ACTIONS(9084), + [sym_empty_literal] = ACTIONS(9084), + [sym_date_literal] = ACTIONS(9086), + [anon_sym_POUND] = ACTIONS(9084), + }, + [STATE(7035)] = { + [sym_identifier] = ACTIONS(9556), + [sym_newline] = ACTIONS(9558), + [anon_sym_COLON] = ACTIONS(9558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9556), + [aux_sym_frm_property_statement_token1] = ACTIONS(9556), + [anon_sym_DOT] = ACTIONS(9556), + [anon_sym_BANG] = ACTIONS(9558), + [aux_sym__attribute_identifier_token1] = ACTIONS(9556), + [aux_sym_option_statement_token3] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9556), + [aux_sym_preprocessor_const_token1] = ACTIONS(9556), + [sym_static_modifier] = ACTIONS(9556), + [sym__dim_keyword] = ACTIONS(9556), + [sym__redim_keyword] = ACTIONS(9556), + [aux_sym_get_accessor_token1] = ACTIONS(9556), + [aux_sym_set_accessor_token1] = ACTIONS(9556), + [aux_sym_const_declaration_token1] = ACTIONS(9556), + [anon_sym_LPAREN] = ACTIONS(9558), + [aux_sym_as_type_clause_token2] = ACTIONS(9556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9556), + [aux_sym_visibility_token1] = ACTIONS(9556), + [aux_sym_visibility_token2] = ACTIONS(9556), + [aux_sym_elseif_fragment_token1] = ACTIONS(9556), + [aux_sym_else_fragment_token1] = ACTIONS(9556), + [aux_sym_select_statement_token1] = ACTIONS(9556), + [aux_sym__for_header_token1] = ACTIONS(9556), + [aux_sym_do_statement_token1] = ACTIONS(9556), + [aux_sym_do_condition_token1] = ACTIONS(9556), + [aux_sym_while_statement_token1] = ACTIONS(9556), + [aux_sym_with_statement_token1] = ACTIONS(9556), + [aux_sym_exit_statement_token1] = ACTIONS(9556), + [sym_end_statement] = ACTIONS(9558), + [aux_sym_on_goto_statement_token1] = ACTIONS(9556), + [aux_sym_on_goto_statement_token2] = ACTIONS(9556), + [aux_sym_on_error_statement_token2] = ACTIONS(9556), + [sym__ambiguous_redim_statement] = ACTIONS(9558), + [aux_sym_erase_statement_token1] = ACTIONS(9556), + [aux_sym_open_statement_token1] = ACTIONS(9556), + [aux_sym_file_mode_token2] = ACTIONS(9556), + [aux_sym_file_access_token2] = ACTIONS(9556), + [aux_sym_file_lock_token2] = ACTIONS(9556), + [aux_sym_print_statement_token1] = ACTIONS(9556), + [anon_sym_PLUS] = ACTIONS(9558), + [anon_sym_DASH] = ACTIONS(9556), + [anon_sym_QMARK] = ACTIONS(9558), + [aux_sym_close_statement_token1] = ACTIONS(9556), + [aux_sym_put_statement_token1] = ACTIONS(9556), + [aux_sym_unlock_statement_token1] = ACTIONS(9556), + [aux_sym_seek_statement_token1] = ACTIONS(9556), + [sym_reset_statement] = ACTIONS(9556), + [aux_sym_raise_event_statement_token1] = ACTIONS(9556), + [sym_stop_statement] = ACTIONS(9556), + [sym_beep_statement] = ACTIONS(9556), + [aux_sym_unload_statement_token1] = ACTIONS(9556), + [aux_sym_def_type_statement_token1] = ACTIONS(9556), + [aux_sym_def_type_statement_token2] = ACTIONS(9556), + [aux_sym_def_type_statement_token3] = ACTIONS(9556), + [aux_sym_def_type_statement_token4] = ACTIONS(9556), + [aux_sym_def_type_statement_token5] = ACTIONS(9556), + [aux_sym_def_type_statement_token6] = ACTIONS(9556), + [aux_sym_def_type_statement_token7] = ACTIONS(9556), + [aux_sym_def_type_statement_token8] = ACTIONS(9556), + [aux_sym_def_type_statement_token9] = ACTIONS(9556), + [aux_sym_def_type_statement_token10] = ACTIONS(9556), + [aux_sym_def_type_statement_token11] = ACTIONS(9556), + [aux_sym_def_type_statement_token12] = ACTIONS(9556), + [aux_sym_def_type_statement_token13] = ACTIONS(9556), + [aux_sym_def_type_statement_token14] = ACTIONS(9556), + [aux_sym_call_statement_token1] = ACTIONS(9556), + [sym__ambiguous_call_statement] = ACTIONS(9556), + [aux_sym_addressof_expression_token1] = ACTIONS(9556), + [aux_sym_type_of_expression_token1] = ACTIONS(9556), + [aux_sym_unary_expression_token1] = ACTIONS(9556), + [sym_string_literal] = ACTIONS(9558), + [sym_number_literal] = ACTIONS(9558), + [aux_sym_boolean_literal_token1] = ACTIONS(9556), + [aux_sym_boolean_literal_token2] = ACTIONS(9556), + [sym_nothing_literal] = ACTIONS(9556), + [sym_null_literal] = ACTIONS(9556), + [sym_empty_literal] = ACTIONS(9556), + [sym_date_literal] = ACTIONS(9558), + [anon_sym_POUND] = ACTIONS(9556), + }, + [STATE(7036)] = { + [sym_identifier] = ACTIONS(9560), + [sym_newline] = ACTIONS(9562), + [anon_sym_COLON] = ACTIONS(9562), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9560), + [aux_sym_frm_property_statement_token1] = ACTIONS(9560), + [anon_sym_DOT] = ACTIONS(9560), + [anon_sym_BANG] = ACTIONS(9562), + [aux_sym__attribute_identifier_token1] = ACTIONS(9560), + [aux_sym_option_statement_token3] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9560), + [aux_sym_preprocessor_const_token1] = ACTIONS(9560), + [sym_static_modifier] = ACTIONS(9560), + [sym__dim_keyword] = ACTIONS(9560), + [sym__redim_keyword] = ACTIONS(9560), + [aux_sym_get_accessor_token1] = ACTIONS(9560), + [aux_sym_set_accessor_token1] = ACTIONS(9560), + [aux_sym_const_declaration_token1] = ACTIONS(9560), + [anon_sym_LPAREN] = ACTIONS(9562), + [aux_sym_as_type_clause_token2] = ACTIONS(9560), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9560), + [aux_sym_visibility_token1] = ACTIONS(9560), + [aux_sym_visibility_token2] = ACTIONS(9560), + [aux_sym_elseif_fragment_token1] = ACTIONS(9560), + [aux_sym_else_fragment_token1] = ACTIONS(9560), + [aux_sym_select_statement_token1] = ACTIONS(9560), + [aux_sym__for_header_token1] = ACTIONS(9560), + [aux_sym_do_statement_token1] = ACTIONS(9560), + [aux_sym_do_condition_token1] = ACTIONS(9560), + [aux_sym_while_statement_token1] = ACTIONS(9560), + [aux_sym_with_statement_token1] = ACTIONS(9560), + [aux_sym_exit_statement_token1] = ACTIONS(9560), + [sym_end_statement] = ACTIONS(9562), + [aux_sym_on_goto_statement_token1] = ACTIONS(9560), + [aux_sym_on_goto_statement_token2] = ACTIONS(9560), + [aux_sym_on_error_statement_token2] = ACTIONS(9560), + [sym__ambiguous_redim_statement] = ACTIONS(9562), + [aux_sym_erase_statement_token1] = ACTIONS(9560), + [aux_sym_open_statement_token1] = ACTIONS(9560), + [aux_sym_file_mode_token2] = ACTIONS(9560), + [aux_sym_file_access_token2] = ACTIONS(9560), + [aux_sym_file_lock_token2] = ACTIONS(9560), + [aux_sym_print_statement_token1] = ACTIONS(9560), + [anon_sym_PLUS] = ACTIONS(9562), + [anon_sym_DASH] = ACTIONS(9560), + [anon_sym_QMARK] = ACTIONS(9562), + [aux_sym_close_statement_token1] = ACTIONS(9560), + [aux_sym_put_statement_token1] = ACTIONS(9560), + [aux_sym_unlock_statement_token1] = ACTIONS(9560), + [aux_sym_seek_statement_token1] = ACTIONS(9560), + [sym_reset_statement] = ACTIONS(9560), + [aux_sym_raise_event_statement_token1] = ACTIONS(9560), + [sym_stop_statement] = ACTIONS(9560), + [sym_beep_statement] = ACTIONS(9560), + [aux_sym_unload_statement_token1] = ACTIONS(9560), + [aux_sym_def_type_statement_token1] = ACTIONS(9560), + [aux_sym_def_type_statement_token2] = ACTIONS(9560), + [aux_sym_def_type_statement_token3] = ACTIONS(9560), + [aux_sym_def_type_statement_token4] = ACTIONS(9560), + [aux_sym_def_type_statement_token5] = ACTIONS(9560), + [aux_sym_def_type_statement_token6] = ACTIONS(9560), + [aux_sym_def_type_statement_token7] = ACTIONS(9560), + [aux_sym_def_type_statement_token8] = ACTIONS(9560), + [aux_sym_def_type_statement_token9] = ACTIONS(9560), + [aux_sym_def_type_statement_token10] = ACTIONS(9560), + [aux_sym_def_type_statement_token11] = ACTIONS(9560), + [aux_sym_def_type_statement_token12] = ACTIONS(9560), + [aux_sym_def_type_statement_token13] = ACTIONS(9560), + [aux_sym_def_type_statement_token14] = ACTIONS(9560), + [aux_sym_call_statement_token1] = ACTIONS(9560), + [sym__ambiguous_call_statement] = ACTIONS(9560), + [aux_sym_addressof_expression_token1] = ACTIONS(9560), + [aux_sym_type_of_expression_token1] = ACTIONS(9560), + [aux_sym_unary_expression_token1] = ACTIONS(9560), + [sym_string_literal] = ACTIONS(9562), + [sym_number_literal] = ACTIONS(9562), + [aux_sym_boolean_literal_token1] = ACTIONS(9560), + [aux_sym_boolean_literal_token2] = ACTIONS(9560), + [sym_nothing_literal] = ACTIONS(9560), + [sym_null_literal] = ACTIONS(9560), + [sym_empty_literal] = ACTIONS(9560), + [sym_date_literal] = ACTIONS(9562), + [anon_sym_POUND] = ACTIONS(9560), + }, + [STATE(7037)] = { + [sym_identifier] = ACTIONS(8935), + [sym_newline] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(8937), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8935), + [aux_sym_frm_property_statement_token1] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_BANG] = ACTIONS(8937), + [aux_sym__attribute_identifier_token1] = ACTIONS(8935), + [aux_sym_option_statement_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8935), + [aux_sym_preprocessor_const_token1] = ACTIONS(8935), + [sym_static_modifier] = ACTIONS(8935), + [sym__dim_keyword] = ACTIONS(8935), + [sym__redim_keyword] = ACTIONS(8935), + [aux_sym_get_accessor_token1] = ACTIONS(8935), + [aux_sym_set_accessor_token1] = ACTIONS(8935), + [aux_sym_const_declaration_token1] = ACTIONS(8935), + [anon_sym_LPAREN] = ACTIONS(8937), + [aux_sym_as_type_clause_token2] = ACTIONS(8935), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8935), + [aux_sym_visibility_token1] = ACTIONS(8935), + [aux_sym_visibility_token2] = ACTIONS(8935), + [aux_sym_elseif_fragment_token1] = ACTIONS(8935), + [aux_sym_else_fragment_token1] = ACTIONS(8935), + [aux_sym_select_statement_token1] = ACTIONS(8935), + [aux_sym__for_header_token1] = ACTIONS(8935), + [aux_sym_do_statement_token1] = ACTIONS(8935), + [aux_sym_do_statement_token2] = ACTIONS(8935), + [aux_sym_do_condition_token1] = ACTIONS(8935), + [aux_sym_with_statement_token1] = ACTIONS(8935), + [aux_sym_exit_statement_token1] = ACTIONS(8935), + [sym_end_statement] = ACTIONS(8937), + [aux_sym_on_goto_statement_token1] = ACTIONS(8935), + [aux_sym_on_goto_statement_token2] = ACTIONS(8935), + [aux_sym_on_error_statement_token2] = ACTIONS(8935), + [sym__ambiguous_redim_statement] = ACTIONS(8937), + [aux_sym_erase_statement_token1] = ACTIONS(8935), + [aux_sym_open_statement_token1] = ACTIONS(8935), + [aux_sym_file_mode_token2] = ACTIONS(8935), + [aux_sym_file_access_token2] = ACTIONS(8935), + [aux_sym_file_lock_token2] = ACTIONS(8935), + [aux_sym_print_statement_token1] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [aux_sym_close_statement_token1] = ACTIONS(8935), + [aux_sym_put_statement_token1] = ACTIONS(8935), + [aux_sym_unlock_statement_token1] = ACTIONS(8935), + [aux_sym_seek_statement_token1] = ACTIONS(8935), + [sym_reset_statement] = ACTIONS(8935), + [aux_sym_raise_event_statement_token1] = ACTIONS(8935), + [sym_stop_statement] = ACTIONS(8935), + [sym_beep_statement] = ACTIONS(8935), + [aux_sym_unload_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token2] = ACTIONS(8935), + [aux_sym_def_type_statement_token3] = ACTIONS(8935), + [aux_sym_def_type_statement_token4] = ACTIONS(8935), + [aux_sym_def_type_statement_token5] = ACTIONS(8935), + [aux_sym_def_type_statement_token6] = ACTIONS(8935), + [aux_sym_def_type_statement_token7] = ACTIONS(8935), + [aux_sym_def_type_statement_token8] = ACTIONS(8935), + [aux_sym_def_type_statement_token9] = ACTIONS(8935), + [aux_sym_def_type_statement_token10] = ACTIONS(8935), + [aux_sym_def_type_statement_token11] = ACTIONS(8935), + [aux_sym_def_type_statement_token12] = ACTIONS(8935), + [aux_sym_def_type_statement_token13] = ACTIONS(8935), + [aux_sym_def_type_statement_token14] = ACTIONS(8935), + [aux_sym_call_statement_token1] = ACTIONS(8935), + [sym__ambiguous_call_statement] = ACTIONS(8935), + [aux_sym_addressof_expression_token1] = ACTIONS(8935), + [aux_sym_type_of_expression_token1] = ACTIONS(8935), + [aux_sym_unary_expression_token1] = ACTIONS(8935), + [sym_string_literal] = ACTIONS(8937), + [sym_number_literal] = ACTIONS(8937), + [aux_sym_boolean_literal_token1] = ACTIONS(8935), + [aux_sym_boolean_literal_token2] = ACTIONS(8935), + [sym_nothing_literal] = ACTIONS(8935), + [sym_null_literal] = ACTIONS(8935), + [sym_empty_literal] = ACTIONS(8935), + [sym_date_literal] = ACTIONS(8937), + [anon_sym_POUND] = ACTIONS(8935), + }, + [STATE(7038)] = { + [sym_identifier] = ACTIONS(9564), + [sym_newline] = ACTIONS(9566), + [anon_sym_COLON] = ACTIONS(9566), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9564), + [aux_sym_frm_property_statement_token1] = ACTIONS(9564), + [anon_sym_DOT] = ACTIONS(9564), + [anon_sym_BANG] = ACTIONS(9566), + [aux_sym__attribute_identifier_token1] = ACTIONS(9564), + [aux_sym_option_statement_token3] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9564), + [aux_sym_preprocessor_const_token1] = ACTIONS(9564), + [sym_static_modifier] = ACTIONS(9564), + [sym__dim_keyword] = ACTIONS(9564), + [sym__redim_keyword] = ACTIONS(9564), + [aux_sym_get_accessor_token1] = ACTIONS(9564), + [aux_sym_set_accessor_token1] = ACTIONS(9564), + [aux_sym_const_declaration_token1] = ACTIONS(9564), + [anon_sym_LPAREN] = ACTIONS(9566), + [aux_sym_as_type_clause_token2] = ACTIONS(9564), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9564), + [aux_sym_visibility_token1] = ACTIONS(9564), + [aux_sym_visibility_token2] = ACTIONS(9564), + [aux_sym_elseif_fragment_token1] = ACTIONS(9564), + [aux_sym_else_fragment_token1] = ACTIONS(9564), + [aux_sym_select_statement_token1] = ACTIONS(9564), + [aux_sym__for_header_token1] = ACTIONS(9564), + [aux_sym_do_statement_token1] = ACTIONS(9564), + [aux_sym_do_condition_token1] = ACTIONS(9564), + [aux_sym_while_statement_token1] = ACTIONS(9564), + [aux_sym_with_statement_token1] = ACTIONS(9564), + [aux_sym_exit_statement_token1] = ACTIONS(9564), + [sym_end_statement] = ACTIONS(9566), + [aux_sym_on_goto_statement_token1] = ACTIONS(9564), + [aux_sym_on_goto_statement_token2] = ACTIONS(9564), + [aux_sym_on_error_statement_token2] = ACTIONS(9564), + [sym__ambiguous_redim_statement] = ACTIONS(9566), + [aux_sym_erase_statement_token1] = ACTIONS(9564), + [aux_sym_open_statement_token1] = ACTIONS(9564), + [aux_sym_file_mode_token2] = ACTIONS(9564), + [aux_sym_file_access_token2] = ACTIONS(9564), + [aux_sym_file_lock_token2] = ACTIONS(9564), + [aux_sym_print_statement_token1] = ACTIONS(9564), + [anon_sym_PLUS] = ACTIONS(9566), + [anon_sym_DASH] = ACTIONS(9564), + [anon_sym_QMARK] = ACTIONS(9566), + [aux_sym_close_statement_token1] = ACTIONS(9564), + [aux_sym_put_statement_token1] = ACTIONS(9564), + [aux_sym_unlock_statement_token1] = ACTIONS(9564), + [aux_sym_seek_statement_token1] = ACTIONS(9564), + [sym_reset_statement] = ACTIONS(9564), + [aux_sym_raise_event_statement_token1] = ACTIONS(9564), + [sym_stop_statement] = ACTIONS(9564), + [sym_beep_statement] = ACTIONS(9564), + [aux_sym_unload_statement_token1] = ACTIONS(9564), + [aux_sym_def_type_statement_token1] = ACTIONS(9564), + [aux_sym_def_type_statement_token2] = ACTIONS(9564), + [aux_sym_def_type_statement_token3] = ACTIONS(9564), + [aux_sym_def_type_statement_token4] = ACTIONS(9564), + [aux_sym_def_type_statement_token5] = ACTIONS(9564), + [aux_sym_def_type_statement_token6] = ACTIONS(9564), + [aux_sym_def_type_statement_token7] = ACTIONS(9564), + [aux_sym_def_type_statement_token8] = ACTIONS(9564), + [aux_sym_def_type_statement_token9] = ACTIONS(9564), + [aux_sym_def_type_statement_token10] = ACTIONS(9564), + [aux_sym_def_type_statement_token11] = ACTIONS(9564), + [aux_sym_def_type_statement_token12] = ACTIONS(9564), + [aux_sym_def_type_statement_token13] = ACTIONS(9564), + [aux_sym_def_type_statement_token14] = ACTIONS(9564), + [aux_sym_call_statement_token1] = ACTIONS(9564), + [sym__ambiguous_call_statement] = ACTIONS(9564), + [aux_sym_addressof_expression_token1] = ACTIONS(9564), + [aux_sym_type_of_expression_token1] = ACTIONS(9564), + [aux_sym_unary_expression_token1] = ACTIONS(9564), + [sym_string_literal] = ACTIONS(9566), + [sym_number_literal] = ACTIONS(9566), + [aux_sym_boolean_literal_token1] = ACTIONS(9564), + [aux_sym_boolean_literal_token2] = ACTIONS(9564), + [sym_nothing_literal] = ACTIONS(9564), + [sym_null_literal] = ACTIONS(9564), + [sym_empty_literal] = ACTIONS(9564), + [sym_date_literal] = ACTIONS(9566), + [anon_sym_POUND] = ACTIONS(9564), + }, + [STATE(7039)] = { + [sym_identifier] = ACTIONS(9146), + [sym_newline] = ACTIONS(9148), + [anon_sym_COLON] = ACTIONS(9148), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9146), + [aux_sym_frm_property_statement_token1] = ACTIONS(9146), + [anon_sym_DOT] = ACTIONS(9146), + [anon_sym_BANG] = ACTIONS(9148), + [aux_sym__attribute_identifier_token1] = ACTIONS(9146), + [aux_sym_option_statement_token3] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9146), + [aux_sym_preprocessor_const_token1] = ACTIONS(9146), + [sym_static_modifier] = ACTIONS(9146), + [sym__dim_keyword] = ACTIONS(9146), + [sym__redim_keyword] = ACTIONS(9146), + [aux_sym_get_accessor_token1] = ACTIONS(9146), + [aux_sym_set_accessor_token1] = ACTIONS(9146), + [aux_sym_const_declaration_token1] = ACTIONS(9146), + [anon_sym_LPAREN] = ACTIONS(9148), + [aux_sym_as_type_clause_token2] = ACTIONS(9146), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9146), + [aux_sym_visibility_token1] = ACTIONS(9146), + [aux_sym_visibility_token2] = ACTIONS(9146), + [aux_sym_elseif_fragment_token1] = ACTIONS(9146), + [aux_sym_else_fragment_token1] = ACTIONS(9146), + [aux_sym_select_statement_token1] = ACTIONS(9146), + [aux_sym__for_header_token1] = ACTIONS(9146), + [aux_sym_do_statement_token1] = ACTIONS(9146), + [aux_sym_do_statement_token2] = ACTIONS(9146), + [aux_sym_do_condition_token1] = ACTIONS(9146), + [aux_sym_with_statement_token1] = ACTIONS(9146), + [aux_sym_exit_statement_token1] = ACTIONS(9146), + [sym_end_statement] = ACTIONS(9148), + [aux_sym_on_goto_statement_token1] = ACTIONS(9146), + [aux_sym_on_goto_statement_token2] = ACTIONS(9146), + [aux_sym_on_error_statement_token2] = ACTIONS(9146), + [sym__ambiguous_redim_statement] = ACTIONS(9148), + [aux_sym_erase_statement_token1] = ACTIONS(9146), + [aux_sym_open_statement_token1] = ACTIONS(9146), + [aux_sym_file_mode_token2] = ACTIONS(9146), + [aux_sym_file_access_token2] = ACTIONS(9146), + [aux_sym_file_lock_token2] = ACTIONS(9146), + [aux_sym_print_statement_token1] = ACTIONS(9146), + [anon_sym_PLUS] = ACTIONS(9148), + [anon_sym_DASH] = ACTIONS(9146), + [anon_sym_QMARK] = ACTIONS(9148), + [aux_sym_close_statement_token1] = ACTIONS(9146), + [aux_sym_put_statement_token1] = ACTIONS(9146), + [aux_sym_unlock_statement_token1] = ACTIONS(9146), + [aux_sym_seek_statement_token1] = ACTIONS(9146), + [sym_reset_statement] = ACTIONS(9146), + [aux_sym_raise_event_statement_token1] = ACTIONS(9146), + [sym_stop_statement] = ACTIONS(9146), + [sym_beep_statement] = ACTIONS(9146), + [aux_sym_unload_statement_token1] = ACTIONS(9146), + [aux_sym_def_type_statement_token1] = ACTIONS(9146), + [aux_sym_def_type_statement_token2] = ACTIONS(9146), + [aux_sym_def_type_statement_token3] = ACTIONS(9146), + [aux_sym_def_type_statement_token4] = ACTIONS(9146), + [aux_sym_def_type_statement_token5] = ACTIONS(9146), + [aux_sym_def_type_statement_token6] = ACTIONS(9146), + [aux_sym_def_type_statement_token7] = ACTIONS(9146), + [aux_sym_def_type_statement_token8] = ACTIONS(9146), + [aux_sym_def_type_statement_token9] = ACTIONS(9146), + [aux_sym_def_type_statement_token10] = ACTIONS(9146), + [aux_sym_def_type_statement_token11] = ACTIONS(9146), + [aux_sym_def_type_statement_token12] = ACTIONS(9146), + [aux_sym_def_type_statement_token13] = ACTIONS(9146), + [aux_sym_def_type_statement_token14] = ACTIONS(9146), + [aux_sym_call_statement_token1] = ACTIONS(9146), + [sym__ambiguous_call_statement] = ACTIONS(9146), + [aux_sym_addressof_expression_token1] = ACTIONS(9146), + [aux_sym_type_of_expression_token1] = ACTIONS(9146), + [aux_sym_unary_expression_token1] = ACTIONS(9146), + [sym_string_literal] = ACTIONS(9148), + [sym_number_literal] = ACTIONS(9148), + [aux_sym_boolean_literal_token1] = ACTIONS(9146), + [aux_sym_boolean_literal_token2] = ACTIONS(9146), + [sym_nothing_literal] = ACTIONS(9146), + [sym_null_literal] = ACTIONS(9146), + [sym_empty_literal] = ACTIONS(9146), + [sym_date_literal] = ACTIONS(9148), + [anon_sym_POUND] = ACTIONS(9146), + }, + [STATE(7040)] = { + [sym_identifier] = ACTIONS(9088), + [sym_newline] = ACTIONS(9090), + [anon_sym_COLON] = ACTIONS(9090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9088), + [aux_sym_frm_property_statement_token1] = ACTIONS(9088), + [anon_sym_DOT] = ACTIONS(9088), + [anon_sym_BANG] = ACTIONS(9090), + [aux_sym__attribute_identifier_token1] = ACTIONS(9088), + [aux_sym_option_statement_token3] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9088), + [aux_sym_preprocessor_const_token1] = ACTIONS(9088), + [sym_static_modifier] = ACTIONS(9088), + [sym__dim_keyword] = ACTIONS(9088), + [sym__redim_keyword] = ACTIONS(9088), + [aux_sym_get_accessor_token1] = ACTIONS(9088), + [aux_sym_set_accessor_token1] = ACTIONS(9088), + [aux_sym_const_declaration_token1] = ACTIONS(9088), + [anon_sym_LPAREN] = ACTIONS(9090), + [aux_sym_as_type_clause_token2] = ACTIONS(9088), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9088), + [aux_sym_visibility_token1] = ACTIONS(9088), + [aux_sym_visibility_token2] = ACTIONS(9088), + [aux_sym_elseif_fragment_token1] = ACTIONS(9088), + [aux_sym_else_fragment_token1] = ACTIONS(9088), + [aux_sym_select_statement_token1] = ACTIONS(9088), + [aux_sym_select_statement_token2] = ACTIONS(9088), + [aux_sym__for_header_token1] = ACTIONS(9088), + [aux_sym_do_statement_token1] = ACTIONS(9088), + [aux_sym_do_condition_token1] = ACTIONS(9088), + [aux_sym_with_statement_token1] = ACTIONS(9088), + [aux_sym_exit_statement_token1] = ACTIONS(9088), + [sym_end_statement] = ACTIONS(9090), + [aux_sym_on_goto_statement_token1] = ACTIONS(9088), + [aux_sym_on_goto_statement_token2] = ACTIONS(9088), + [aux_sym_on_error_statement_token2] = ACTIONS(9088), + [sym__ambiguous_redim_statement] = ACTIONS(9090), + [aux_sym_erase_statement_token1] = ACTIONS(9088), + [aux_sym_open_statement_token1] = ACTIONS(9088), + [aux_sym_file_mode_token2] = ACTIONS(9088), + [aux_sym_file_access_token2] = ACTIONS(9088), + [aux_sym_file_lock_token2] = ACTIONS(9088), + [aux_sym_print_statement_token1] = ACTIONS(9088), + [anon_sym_PLUS] = ACTIONS(9090), + [anon_sym_DASH] = ACTIONS(9088), + [anon_sym_QMARK] = ACTIONS(9090), + [aux_sym_close_statement_token1] = ACTIONS(9088), + [aux_sym_put_statement_token1] = ACTIONS(9088), + [aux_sym_unlock_statement_token1] = ACTIONS(9088), + [aux_sym_seek_statement_token1] = ACTIONS(9088), + [sym_reset_statement] = ACTIONS(9088), + [aux_sym_raise_event_statement_token1] = ACTIONS(9088), + [sym_stop_statement] = ACTIONS(9088), + [sym_beep_statement] = ACTIONS(9088), + [aux_sym_unload_statement_token1] = ACTIONS(9088), + [aux_sym_def_type_statement_token1] = ACTIONS(9088), + [aux_sym_def_type_statement_token2] = ACTIONS(9088), + [aux_sym_def_type_statement_token3] = ACTIONS(9088), + [aux_sym_def_type_statement_token4] = ACTIONS(9088), + [aux_sym_def_type_statement_token5] = ACTIONS(9088), + [aux_sym_def_type_statement_token6] = ACTIONS(9088), + [aux_sym_def_type_statement_token7] = ACTIONS(9088), + [aux_sym_def_type_statement_token8] = ACTIONS(9088), + [aux_sym_def_type_statement_token9] = ACTIONS(9088), + [aux_sym_def_type_statement_token10] = ACTIONS(9088), + [aux_sym_def_type_statement_token11] = ACTIONS(9088), + [aux_sym_def_type_statement_token12] = ACTIONS(9088), + [aux_sym_def_type_statement_token13] = ACTIONS(9088), + [aux_sym_def_type_statement_token14] = ACTIONS(9088), + [aux_sym_call_statement_token1] = ACTIONS(9088), + [sym__ambiguous_call_statement] = ACTIONS(9088), + [aux_sym_addressof_expression_token1] = ACTIONS(9088), + [aux_sym_type_of_expression_token1] = ACTIONS(9088), + [aux_sym_unary_expression_token1] = ACTIONS(9088), + [sym_string_literal] = ACTIONS(9090), + [sym_number_literal] = ACTIONS(9090), + [aux_sym_boolean_literal_token1] = ACTIONS(9088), + [aux_sym_boolean_literal_token2] = ACTIONS(9088), + [sym_nothing_literal] = ACTIONS(9088), + [sym_null_literal] = ACTIONS(9088), + [sym_empty_literal] = ACTIONS(9088), + [sym_date_literal] = ACTIONS(9090), + [anon_sym_POUND] = ACTIONS(9088), + }, + [STATE(7041)] = { + [sym_identifier] = ACTIONS(9092), + [sym_newline] = ACTIONS(9094), + [anon_sym_COLON] = ACTIONS(11180), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9092), + [aux_sym_frm_property_statement_token1] = ACTIONS(9092), + [anon_sym_DOT] = ACTIONS(9092), + [anon_sym_BANG] = ACTIONS(9094), + [aux_sym__attribute_identifier_token1] = ACTIONS(9092), + [aux_sym_option_statement_token3] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9092), + [aux_sym_preprocessor_const_token1] = ACTIONS(9092), + [sym_static_modifier] = ACTIONS(9092), + [sym__dim_keyword] = ACTIONS(9092), + [sym__redim_keyword] = ACTIONS(9092), + [aux_sym_get_accessor_token1] = ACTIONS(9092), + [aux_sym_set_accessor_token1] = ACTIONS(9092), + [aux_sym_const_declaration_token1] = ACTIONS(9092), + [anon_sym_LPAREN] = ACTIONS(9094), + [aux_sym_as_type_clause_token2] = ACTIONS(9092), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9092), + [aux_sym_visibility_token1] = ACTIONS(9092), + [aux_sym_visibility_token2] = ACTIONS(9092), + [aux_sym_elseif_fragment_token1] = ACTIONS(9092), + [aux_sym_else_fragment_token1] = ACTIONS(9092), + [aux_sym_select_statement_token1] = ACTIONS(9092), + [aux_sym_select_statement_token2] = ACTIONS(9092), + [aux_sym__for_header_token1] = ACTIONS(9092), + [aux_sym_do_statement_token1] = ACTIONS(9092), + [aux_sym_do_condition_token1] = ACTIONS(9092), + [aux_sym_with_statement_token1] = ACTIONS(9092), + [aux_sym_exit_statement_token1] = ACTIONS(9092), + [sym_end_statement] = ACTIONS(9094), + [aux_sym_on_goto_statement_token1] = ACTIONS(9092), + [aux_sym_on_goto_statement_token2] = ACTIONS(9092), + [aux_sym_on_error_statement_token2] = ACTIONS(9092), + [sym__ambiguous_redim_statement] = ACTIONS(9094), + [aux_sym_erase_statement_token1] = ACTIONS(9092), + [aux_sym_open_statement_token1] = ACTIONS(9092), + [aux_sym_file_mode_token2] = ACTIONS(9092), + [aux_sym_file_access_token2] = ACTIONS(9092), + [aux_sym_file_lock_token2] = ACTIONS(9092), + [aux_sym_print_statement_token1] = ACTIONS(9092), + [anon_sym_PLUS] = ACTIONS(9094), + [anon_sym_DASH] = ACTIONS(9092), + [anon_sym_QMARK] = ACTIONS(9094), + [aux_sym_close_statement_token1] = ACTIONS(9092), + [aux_sym_put_statement_token1] = ACTIONS(9092), + [aux_sym_unlock_statement_token1] = ACTIONS(9092), + [aux_sym_seek_statement_token1] = ACTIONS(9092), + [sym_reset_statement] = ACTIONS(9092), + [aux_sym_raise_event_statement_token1] = ACTIONS(9092), + [sym_stop_statement] = ACTIONS(9092), + [sym_beep_statement] = ACTIONS(9092), + [aux_sym_unload_statement_token1] = ACTIONS(9092), + [aux_sym_def_type_statement_token1] = ACTIONS(9092), + [aux_sym_def_type_statement_token2] = ACTIONS(9092), + [aux_sym_def_type_statement_token3] = ACTIONS(9092), + [aux_sym_def_type_statement_token4] = ACTIONS(9092), + [aux_sym_def_type_statement_token5] = ACTIONS(9092), + [aux_sym_def_type_statement_token6] = ACTIONS(9092), + [aux_sym_def_type_statement_token7] = ACTIONS(9092), + [aux_sym_def_type_statement_token8] = ACTIONS(9092), + [aux_sym_def_type_statement_token9] = ACTIONS(9092), + [aux_sym_def_type_statement_token10] = ACTIONS(9092), + [aux_sym_def_type_statement_token11] = ACTIONS(9092), + [aux_sym_def_type_statement_token12] = ACTIONS(9092), + [aux_sym_def_type_statement_token13] = ACTIONS(9092), + [aux_sym_def_type_statement_token14] = ACTIONS(9092), + [aux_sym_call_statement_token1] = ACTIONS(9092), + [sym__ambiguous_call_statement] = ACTIONS(9092), + [aux_sym_addressof_expression_token1] = ACTIONS(9092), + [aux_sym_type_of_expression_token1] = ACTIONS(9092), + [aux_sym_unary_expression_token1] = ACTIONS(9092), + [sym_string_literal] = ACTIONS(9094), + [sym_number_literal] = ACTIONS(9094), + [aux_sym_boolean_literal_token1] = ACTIONS(9092), + [aux_sym_boolean_literal_token2] = ACTIONS(9092), + [sym_nothing_literal] = ACTIONS(9092), + [sym_null_literal] = ACTIONS(9092), + [sym_empty_literal] = ACTIONS(9092), + [sym_date_literal] = ACTIONS(9094), + [anon_sym_POUND] = ACTIONS(9092), + }, + [STATE(7042)] = { + [sym_identifier] = ACTIONS(9099), + [sym_newline] = ACTIONS(9101), + [anon_sym_COLON] = ACTIONS(11183), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9099), + [aux_sym_frm_property_statement_token1] = ACTIONS(9099), + [anon_sym_DOT] = ACTIONS(9099), + [anon_sym_BANG] = ACTIONS(9101), + [aux_sym__attribute_identifier_token1] = ACTIONS(9099), + [aux_sym_option_statement_token3] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9099), + [aux_sym_preprocessor_const_token1] = ACTIONS(9099), + [sym_static_modifier] = ACTIONS(9099), + [sym__dim_keyword] = ACTIONS(9099), + [sym__redim_keyword] = ACTIONS(9099), + [aux_sym_get_accessor_token1] = ACTIONS(9099), + [aux_sym_set_accessor_token1] = ACTIONS(9099), + [aux_sym_const_declaration_token1] = ACTIONS(9099), + [anon_sym_LPAREN] = ACTIONS(9101), + [aux_sym_as_type_clause_token2] = ACTIONS(9099), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9099), + [aux_sym_visibility_token1] = ACTIONS(9099), + [aux_sym_visibility_token2] = ACTIONS(9099), + [aux_sym_elseif_fragment_token1] = ACTIONS(9099), + [aux_sym_else_fragment_token1] = ACTIONS(9099), + [aux_sym_select_statement_token1] = ACTIONS(9099), + [aux_sym_select_statement_token2] = ACTIONS(9099), + [aux_sym__for_header_token1] = ACTIONS(9099), + [aux_sym_do_statement_token1] = ACTIONS(9099), + [aux_sym_do_condition_token1] = ACTIONS(9099), + [aux_sym_with_statement_token1] = ACTIONS(9099), + [aux_sym_exit_statement_token1] = ACTIONS(9099), + [sym_end_statement] = ACTIONS(9101), + [aux_sym_on_goto_statement_token1] = ACTIONS(9099), + [aux_sym_on_goto_statement_token2] = ACTIONS(9099), + [aux_sym_on_error_statement_token2] = ACTIONS(9099), + [sym__ambiguous_redim_statement] = ACTIONS(9101), + [aux_sym_erase_statement_token1] = ACTIONS(9099), + [aux_sym_open_statement_token1] = ACTIONS(9099), + [aux_sym_file_mode_token2] = ACTIONS(9099), + [aux_sym_file_access_token2] = ACTIONS(9099), + [aux_sym_file_lock_token2] = ACTIONS(9099), + [aux_sym_print_statement_token1] = ACTIONS(9099), + [anon_sym_PLUS] = ACTIONS(9101), + [anon_sym_DASH] = ACTIONS(9099), + [anon_sym_QMARK] = ACTIONS(9101), + [aux_sym_close_statement_token1] = ACTIONS(9099), + [aux_sym_put_statement_token1] = ACTIONS(9099), + [aux_sym_unlock_statement_token1] = ACTIONS(9099), + [aux_sym_seek_statement_token1] = ACTIONS(9099), + [sym_reset_statement] = ACTIONS(9099), + [aux_sym_raise_event_statement_token1] = ACTIONS(9099), + [sym_stop_statement] = ACTIONS(9099), + [sym_beep_statement] = ACTIONS(9099), + [aux_sym_unload_statement_token1] = ACTIONS(9099), + [aux_sym_def_type_statement_token1] = ACTIONS(9099), + [aux_sym_def_type_statement_token2] = ACTIONS(9099), + [aux_sym_def_type_statement_token3] = ACTIONS(9099), + [aux_sym_def_type_statement_token4] = ACTIONS(9099), + [aux_sym_def_type_statement_token5] = ACTIONS(9099), + [aux_sym_def_type_statement_token6] = ACTIONS(9099), + [aux_sym_def_type_statement_token7] = ACTIONS(9099), + [aux_sym_def_type_statement_token8] = ACTIONS(9099), + [aux_sym_def_type_statement_token9] = ACTIONS(9099), + [aux_sym_def_type_statement_token10] = ACTIONS(9099), + [aux_sym_def_type_statement_token11] = ACTIONS(9099), + [aux_sym_def_type_statement_token12] = ACTIONS(9099), + [aux_sym_def_type_statement_token13] = ACTIONS(9099), + [aux_sym_def_type_statement_token14] = ACTIONS(9099), + [aux_sym_call_statement_token1] = ACTIONS(9099), + [sym__ambiguous_call_statement] = ACTIONS(9099), + [aux_sym_addressof_expression_token1] = ACTIONS(9099), + [aux_sym_type_of_expression_token1] = ACTIONS(9099), + [aux_sym_unary_expression_token1] = ACTIONS(9099), + [sym_string_literal] = ACTIONS(9101), + [sym_number_literal] = ACTIONS(9101), + [aux_sym_boolean_literal_token1] = ACTIONS(9099), + [aux_sym_boolean_literal_token2] = ACTIONS(9099), + [sym_nothing_literal] = ACTIONS(9099), + [sym_null_literal] = ACTIONS(9099), + [sym_empty_literal] = ACTIONS(9099), + [sym_date_literal] = ACTIONS(9101), + [anon_sym_POUND] = ACTIONS(9099), + }, + [STATE(7043)] = { + [sym_identifier] = ACTIONS(9110), + [sym_newline] = ACTIONS(9112), + [anon_sym_COLON] = ACTIONS(9112), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9110), + [aux_sym_frm_property_statement_token1] = ACTIONS(9110), + [anon_sym_DOT] = ACTIONS(9110), + [anon_sym_BANG] = ACTIONS(9112), + [aux_sym__attribute_identifier_token1] = ACTIONS(9110), + [aux_sym_option_statement_token3] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9110), + [aux_sym_preprocessor_const_token1] = ACTIONS(9110), + [sym_static_modifier] = ACTIONS(9110), + [sym__dim_keyword] = ACTIONS(9110), + [sym__redim_keyword] = ACTIONS(9110), + [aux_sym_get_accessor_token1] = ACTIONS(9110), + [aux_sym_set_accessor_token1] = ACTIONS(9110), + [aux_sym_const_declaration_token1] = ACTIONS(9110), + [anon_sym_LPAREN] = ACTIONS(9112), + [aux_sym_as_type_clause_token2] = ACTIONS(9110), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9110), + [aux_sym_visibility_token1] = ACTIONS(9110), + [aux_sym_visibility_token2] = ACTIONS(9110), + [aux_sym_elseif_fragment_token1] = ACTIONS(9110), + [aux_sym_else_fragment_token1] = ACTIONS(9110), + [aux_sym_select_statement_token1] = ACTIONS(9110), + [aux_sym_select_statement_token2] = ACTIONS(9110), + [aux_sym__for_header_token1] = ACTIONS(9110), + [aux_sym_do_statement_token1] = ACTIONS(9110), + [aux_sym_do_condition_token1] = ACTIONS(9110), + [aux_sym_with_statement_token1] = ACTIONS(9110), + [aux_sym_exit_statement_token1] = ACTIONS(9110), + [sym_end_statement] = ACTIONS(9112), + [aux_sym_on_goto_statement_token1] = ACTIONS(9110), + [aux_sym_on_goto_statement_token2] = ACTIONS(9110), + [aux_sym_on_error_statement_token2] = ACTIONS(9110), + [sym__ambiguous_redim_statement] = ACTIONS(9112), + [aux_sym_erase_statement_token1] = ACTIONS(9110), + [aux_sym_open_statement_token1] = ACTIONS(9110), + [aux_sym_file_mode_token2] = ACTIONS(9110), + [aux_sym_file_access_token2] = ACTIONS(9110), + [aux_sym_file_lock_token2] = ACTIONS(9110), + [aux_sym_print_statement_token1] = ACTIONS(9110), + [anon_sym_PLUS] = ACTIONS(9112), + [anon_sym_DASH] = ACTIONS(9110), + [anon_sym_QMARK] = ACTIONS(9112), + [aux_sym_close_statement_token1] = ACTIONS(9110), + [aux_sym_put_statement_token1] = ACTIONS(9110), + [aux_sym_unlock_statement_token1] = ACTIONS(9110), + [aux_sym_seek_statement_token1] = ACTIONS(9110), + [sym_reset_statement] = ACTIONS(9110), + [aux_sym_raise_event_statement_token1] = ACTIONS(9110), + [sym_stop_statement] = ACTIONS(9110), + [sym_beep_statement] = ACTIONS(9110), + [aux_sym_unload_statement_token1] = ACTIONS(9110), + [aux_sym_def_type_statement_token1] = ACTIONS(9110), + [aux_sym_def_type_statement_token2] = ACTIONS(9110), + [aux_sym_def_type_statement_token3] = ACTIONS(9110), + [aux_sym_def_type_statement_token4] = ACTIONS(9110), + [aux_sym_def_type_statement_token5] = ACTIONS(9110), + [aux_sym_def_type_statement_token6] = ACTIONS(9110), + [aux_sym_def_type_statement_token7] = ACTIONS(9110), + [aux_sym_def_type_statement_token8] = ACTIONS(9110), + [aux_sym_def_type_statement_token9] = ACTIONS(9110), + [aux_sym_def_type_statement_token10] = ACTIONS(9110), + [aux_sym_def_type_statement_token11] = ACTIONS(9110), + [aux_sym_def_type_statement_token12] = ACTIONS(9110), + [aux_sym_def_type_statement_token13] = ACTIONS(9110), + [aux_sym_def_type_statement_token14] = ACTIONS(9110), + [aux_sym_call_statement_token1] = ACTIONS(9110), + [sym__ambiguous_call_statement] = ACTIONS(9110), + [aux_sym_addressof_expression_token1] = ACTIONS(9110), + [aux_sym_type_of_expression_token1] = ACTIONS(9110), + [aux_sym_unary_expression_token1] = ACTIONS(9110), + [sym_string_literal] = ACTIONS(9112), + [sym_number_literal] = ACTIONS(9112), + [aux_sym_boolean_literal_token1] = ACTIONS(9110), + [aux_sym_boolean_literal_token2] = ACTIONS(9110), + [sym_nothing_literal] = ACTIONS(9110), + [sym_null_literal] = ACTIONS(9110), + [sym_empty_literal] = ACTIONS(9110), + [sym_date_literal] = ACTIONS(9112), + [anon_sym_POUND] = ACTIONS(9110), + }, + [STATE(7044)] = { + [sym_identifier] = ACTIONS(9114), + [sym_newline] = ACTIONS(9116), + [anon_sym_COLON] = ACTIONS(9116), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9114), + [aux_sym_frm_property_statement_token1] = ACTIONS(9114), + [anon_sym_DOT] = ACTIONS(9114), + [anon_sym_BANG] = ACTIONS(9116), + [aux_sym__attribute_identifier_token1] = ACTIONS(9114), + [aux_sym_option_statement_token3] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9114), + [aux_sym_preprocessor_const_token1] = ACTIONS(9114), + [sym_static_modifier] = ACTIONS(9114), + [sym__dim_keyword] = ACTIONS(9114), + [sym__redim_keyword] = ACTIONS(9114), + [aux_sym_get_accessor_token1] = ACTIONS(9114), + [aux_sym_set_accessor_token1] = ACTIONS(9114), + [aux_sym_const_declaration_token1] = ACTIONS(9114), + [anon_sym_LPAREN] = ACTIONS(9116), + [aux_sym_as_type_clause_token2] = ACTIONS(9114), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9114), + [aux_sym_visibility_token1] = ACTIONS(9114), + [aux_sym_visibility_token2] = ACTIONS(9114), + [aux_sym_elseif_fragment_token1] = ACTIONS(9114), + [aux_sym_else_fragment_token1] = ACTIONS(9114), + [aux_sym_select_statement_token1] = ACTIONS(9114), + [aux_sym_select_statement_token2] = ACTIONS(9114), + [aux_sym__for_header_token1] = ACTIONS(9114), + [aux_sym_do_statement_token1] = ACTIONS(9114), + [aux_sym_do_condition_token1] = ACTIONS(9114), + [aux_sym_with_statement_token1] = ACTIONS(9114), + [aux_sym_exit_statement_token1] = ACTIONS(9114), + [sym_end_statement] = ACTIONS(9116), + [aux_sym_on_goto_statement_token1] = ACTIONS(9114), + [aux_sym_on_goto_statement_token2] = ACTIONS(9114), + [aux_sym_on_error_statement_token2] = ACTIONS(9114), + [sym__ambiguous_redim_statement] = ACTIONS(9116), + [aux_sym_erase_statement_token1] = ACTIONS(9114), + [aux_sym_open_statement_token1] = ACTIONS(9114), + [aux_sym_file_mode_token2] = ACTIONS(9114), + [aux_sym_file_access_token2] = ACTIONS(9114), + [aux_sym_file_lock_token2] = ACTIONS(9114), + [aux_sym_print_statement_token1] = ACTIONS(9114), + [anon_sym_PLUS] = ACTIONS(9116), + [anon_sym_DASH] = ACTIONS(9114), + [anon_sym_QMARK] = ACTIONS(9116), + [aux_sym_close_statement_token1] = ACTIONS(9114), + [aux_sym_put_statement_token1] = ACTIONS(9114), + [aux_sym_unlock_statement_token1] = ACTIONS(9114), + [aux_sym_seek_statement_token1] = ACTIONS(9114), + [sym_reset_statement] = ACTIONS(9114), + [aux_sym_raise_event_statement_token1] = ACTIONS(9114), + [sym_stop_statement] = ACTIONS(9114), + [sym_beep_statement] = ACTIONS(9114), + [aux_sym_unload_statement_token1] = ACTIONS(9114), + [aux_sym_def_type_statement_token1] = ACTIONS(9114), + [aux_sym_def_type_statement_token2] = ACTIONS(9114), + [aux_sym_def_type_statement_token3] = ACTIONS(9114), + [aux_sym_def_type_statement_token4] = ACTIONS(9114), + [aux_sym_def_type_statement_token5] = ACTIONS(9114), + [aux_sym_def_type_statement_token6] = ACTIONS(9114), + [aux_sym_def_type_statement_token7] = ACTIONS(9114), + [aux_sym_def_type_statement_token8] = ACTIONS(9114), + [aux_sym_def_type_statement_token9] = ACTIONS(9114), + [aux_sym_def_type_statement_token10] = ACTIONS(9114), + [aux_sym_def_type_statement_token11] = ACTIONS(9114), + [aux_sym_def_type_statement_token12] = ACTIONS(9114), + [aux_sym_def_type_statement_token13] = ACTIONS(9114), + [aux_sym_def_type_statement_token14] = ACTIONS(9114), + [aux_sym_call_statement_token1] = ACTIONS(9114), + [sym__ambiguous_call_statement] = ACTIONS(9114), + [aux_sym_addressof_expression_token1] = ACTIONS(9114), + [aux_sym_type_of_expression_token1] = ACTIONS(9114), + [aux_sym_unary_expression_token1] = ACTIONS(9114), + [sym_string_literal] = ACTIONS(9116), + [sym_number_literal] = ACTIONS(9116), + [aux_sym_boolean_literal_token1] = ACTIONS(9114), + [aux_sym_boolean_literal_token2] = ACTIONS(9114), + [sym_nothing_literal] = ACTIONS(9114), + [sym_null_literal] = ACTIONS(9114), + [sym_empty_literal] = ACTIONS(9114), + [sym_date_literal] = ACTIONS(9116), + [anon_sym_POUND] = ACTIONS(9114), + }, + [STATE(7045)] = { + [sym_identifier] = ACTIONS(9118), + [sym_newline] = ACTIONS(9120), + [anon_sym_COLON] = ACTIONS(9120), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9118), + [aux_sym_frm_property_statement_token1] = ACTIONS(9118), + [anon_sym_DOT] = ACTIONS(9118), + [anon_sym_BANG] = ACTIONS(9120), + [aux_sym__attribute_identifier_token1] = ACTIONS(9118), + [aux_sym_option_statement_token3] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9118), + [aux_sym_preprocessor_const_token1] = ACTIONS(9118), + [sym_static_modifier] = ACTIONS(9118), + [sym__dim_keyword] = ACTIONS(9118), + [sym__redim_keyword] = ACTIONS(9118), + [aux_sym_get_accessor_token1] = ACTIONS(9118), + [aux_sym_set_accessor_token1] = ACTIONS(9118), + [aux_sym_const_declaration_token1] = ACTIONS(9118), + [anon_sym_LPAREN] = ACTIONS(9120), + [aux_sym_as_type_clause_token2] = ACTIONS(9118), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9118), + [aux_sym_visibility_token1] = ACTIONS(9118), + [aux_sym_visibility_token2] = ACTIONS(9118), + [aux_sym_elseif_fragment_token1] = ACTIONS(9118), + [aux_sym_else_fragment_token1] = ACTIONS(9118), + [aux_sym_select_statement_token1] = ACTIONS(9118), + [aux_sym_select_statement_token2] = ACTIONS(9118), + [aux_sym__for_header_token1] = ACTIONS(9118), + [aux_sym_do_statement_token1] = ACTIONS(9118), + [aux_sym_do_condition_token1] = ACTIONS(9118), + [aux_sym_with_statement_token1] = ACTIONS(9118), + [aux_sym_exit_statement_token1] = ACTIONS(9118), + [sym_end_statement] = ACTIONS(9120), + [aux_sym_on_goto_statement_token1] = ACTIONS(9118), + [aux_sym_on_goto_statement_token2] = ACTIONS(9118), + [aux_sym_on_error_statement_token2] = ACTIONS(9118), + [sym__ambiguous_redim_statement] = ACTIONS(9120), + [aux_sym_erase_statement_token1] = ACTIONS(9118), + [aux_sym_open_statement_token1] = ACTIONS(9118), + [aux_sym_file_mode_token2] = ACTIONS(9118), + [aux_sym_file_access_token2] = ACTIONS(9118), + [aux_sym_file_lock_token2] = ACTIONS(9118), + [aux_sym_print_statement_token1] = ACTIONS(9118), + [anon_sym_PLUS] = ACTIONS(9120), + [anon_sym_DASH] = ACTIONS(9118), + [anon_sym_QMARK] = ACTIONS(9120), + [aux_sym_close_statement_token1] = ACTIONS(9118), + [aux_sym_put_statement_token1] = ACTIONS(9118), + [aux_sym_unlock_statement_token1] = ACTIONS(9118), + [aux_sym_seek_statement_token1] = ACTIONS(9118), + [sym_reset_statement] = ACTIONS(9118), + [aux_sym_raise_event_statement_token1] = ACTIONS(9118), + [sym_stop_statement] = ACTIONS(9118), + [sym_beep_statement] = ACTIONS(9118), + [aux_sym_unload_statement_token1] = ACTIONS(9118), + [aux_sym_def_type_statement_token1] = ACTIONS(9118), + [aux_sym_def_type_statement_token2] = ACTIONS(9118), + [aux_sym_def_type_statement_token3] = ACTIONS(9118), + [aux_sym_def_type_statement_token4] = ACTIONS(9118), + [aux_sym_def_type_statement_token5] = ACTIONS(9118), + [aux_sym_def_type_statement_token6] = ACTIONS(9118), + [aux_sym_def_type_statement_token7] = ACTIONS(9118), + [aux_sym_def_type_statement_token8] = ACTIONS(9118), + [aux_sym_def_type_statement_token9] = ACTIONS(9118), + [aux_sym_def_type_statement_token10] = ACTIONS(9118), + [aux_sym_def_type_statement_token11] = ACTIONS(9118), + [aux_sym_def_type_statement_token12] = ACTIONS(9118), + [aux_sym_def_type_statement_token13] = ACTIONS(9118), + [aux_sym_def_type_statement_token14] = ACTIONS(9118), + [aux_sym_call_statement_token1] = ACTIONS(9118), + [sym__ambiguous_call_statement] = ACTIONS(9118), + [aux_sym_addressof_expression_token1] = ACTIONS(9118), + [aux_sym_type_of_expression_token1] = ACTIONS(9118), + [aux_sym_unary_expression_token1] = ACTIONS(9118), + [sym_string_literal] = ACTIONS(9120), + [sym_number_literal] = ACTIONS(9120), + [aux_sym_boolean_literal_token1] = ACTIONS(9118), + [aux_sym_boolean_literal_token2] = ACTIONS(9118), + [sym_nothing_literal] = ACTIONS(9118), + [sym_null_literal] = ACTIONS(9118), + [sym_empty_literal] = ACTIONS(9118), + [sym_date_literal] = ACTIONS(9120), + [anon_sym_POUND] = ACTIONS(9118), + }, + [STATE(7046)] = { + [sym_identifier] = ACTIONS(9568), + [sym_newline] = ACTIONS(9570), + [anon_sym_COLON] = ACTIONS(9570), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9568), + [aux_sym_frm_property_statement_token1] = ACTIONS(9568), + [anon_sym_DOT] = ACTIONS(9568), + [anon_sym_BANG] = ACTIONS(9570), + [aux_sym__attribute_identifier_token1] = ACTIONS(9568), + [aux_sym_option_statement_token3] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9568), + [aux_sym_preprocessor_const_token1] = ACTIONS(9568), + [sym_static_modifier] = ACTIONS(9568), + [sym__dim_keyword] = ACTIONS(9568), + [sym__redim_keyword] = ACTIONS(9568), + [aux_sym_get_accessor_token1] = ACTIONS(9568), + [aux_sym_set_accessor_token1] = ACTIONS(9568), + [aux_sym_const_declaration_token1] = ACTIONS(9568), + [anon_sym_LPAREN] = ACTIONS(9570), + [aux_sym_as_type_clause_token2] = ACTIONS(9568), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9568), + [aux_sym_visibility_token1] = ACTIONS(9568), + [aux_sym_visibility_token2] = ACTIONS(9568), + [aux_sym_elseif_fragment_token1] = ACTIONS(9568), + [aux_sym_else_fragment_token1] = ACTIONS(9568), + [aux_sym_select_statement_token1] = ACTIONS(9568), + [aux_sym__for_header_token1] = ACTIONS(9568), + [aux_sym_do_statement_token1] = ACTIONS(9568), + [aux_sym_do_condition_token1] = ACTIONS(9568), + [aux_sym_while_statement_token1] = ACTIONS(9568), + [aux_sym_with_statement_token1] = ACTIONS(9568), + [aux_sym_exit_statement_token1] = ACTIONS(9568), + [sym_end_statement] = ACTIONS(9570), + [aux_sym_on_goto_statement_token1] = ACTIONS(9568), + [aux_sym_on_goto_statement_token2] = ACTIONS(9568), + [aux_sym_on_error_statement_token2] = ACTIONS(9568), + [sym__ambiguous_redim_statement] = ACTIONS(9570), + [aux_sym_erase_statement_token1] = ACTIONS(9568), + [aux_sym_open_statement_token1] = ACTIONS(9568), + [aux_sym_file_mode_token2] = ACTIONS(9568), + [aux_sym_file_access_token2] = ACTIONS(9568), + [aux_sym_file_lock_token2] = ACTIONS(9568), + [aux_sym_print_statement_token1] = ACTIONS(9568), + [anon_sym_PLUS] = ACTIONS(9570), + [anon_sym_DASH] = ACTIONS(9568), + [anon_sym_QMARK] = ACTIONS(9570), + [aux_sym_close_statement_token1] = ACTIONS(9568), + [aux_sym_put_statement_token1] = ACTIONS(9568), + [aux_sym_unlock_statement_token1] = ACTIONS(9568), + [aux_sym_seek_statement_token1] = ACTIONS(9568), + [sym_reset_statement] = ACTIONS(9568), + [aux_sym_raise_event_statement_token1] = ACTIONS(9568), + [sym_stop_statement] = ACTIONS(9568), + [sym_beep_statement] = ACTIONS(9568), + [aux_sym_unload_statement_token1] = ACTIONS(9568), + [aux_sym_def_type_statement_token1] = ACTIONS(9568), + [aux_sym_def_type_statement_token2] = ACTIONS(9568), + [aux_sym_def_type_statement_token3] = ACTIONS(9568), + [aux_sym_def_type_statement_token4] = ACTIONS(9568), + [aux_sym_def_type_statement_token5] = ACTIONS(9568), + [aux_sym_def_type_statement_token6] = ACTIONS(9568), + [aux_sym_def_type_statement_token7] = ACTIONS(9568), + [aux_sym_def_type_statement_token8] = ACTIONS(9568), + [aux_sym_def_type_statement_token9] = ACTIONS(9568), + [aux_sym_def_type_statement_token10] = ACTIONS(9568), + [aux_sym_def_type_statement_token11] = ACTIONS(9568), + [aux_sym_def_type_statement_token12] = ACTIONS(9568), + [aux_sym_def_type_statement_token13] = ACTIONS(9568), + [aux_sym_def_type_statement_token14] = ACTIONS(9568), + [aux_sym_call_statement_token1] = ACTIONS(9568), + [sym__ambiguous_call_statement] = ACTIONS(9568), + [aux_sym_addressof_expression_token1] = ACTIONS(9568), + [aux_sym_type_of_expression_token1] = ACTIONS(9568), + [aux_sym_unary_expression_token1] = ACTIONS(9568), + [sym_string_literal] = ACTIONS(9570), + [sym_number_literal] = ACTIONS(9570), + [aux_sym_boolean_literal_token1] = ACTIONS(9568), + [aux_sym_boolean_literal_token2] = ACTIONS(9568), + [sym_nothing_literal] = ACTIONS(9568), + [sym_null_literal] = ACTIONS(9568), + [sym_empty_literal] = ACTIONS(9568), + [sym_date_literal] = ACTIONS(9570), + [anon_sym_POUND] = ACTIONS(9568), + }, + [STATE(7047)] = { + [sym_identifier] = ACTIONS(9506), + [sym_newline] = ACTIONS(9508), + [anon_sym_COLON] = ACTIONS(9508), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9506), + [aux_sym_frm_property_statement_token1] = ACTIONS(9506), + [anon_sym_DOT] = ACTIONS(9506), + [anon_sym_BANG] = ACTIONS(9508), + [aux_sym__attribute_identifier_token1] = ACTIONS(9506), + [aux_sym_option_statement_token3] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9506), + [aux_sym_preprocessor_const_token1] = ACTIONS(9506), + [sym_static_modifier] = ACTIONS(9506), + [sym__dim_keyword] = ACTIONS(9506), + [sym__redim_keyword] = ACTIONS(9506), + [aux_sym_get_accessor_token1] = ACTIONS(9506), + [aux_sym_set_accessor_token1] = ACTIONS(9506), + [aux_sym_const_declaration_token1] = ACTIONS(9506), + [anon_sym_LPAREN] = ACTIONS(9508), + [aux_sym_as_type_clause_token2] = ACTIONS(9506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9506), + [aux_sym_visibility_token1] = ACTIONS(9506), + [aux_sym_visibility_token2] = ACTIONS(9506), + [aux_sym_elseif_fragment_token1] = ACTIONS(9506), + [aux_sym_else_fragment_token1] = ACTIONS(9506), + [aux_sym_select_statement_token1] = ACTIONS(9506), + [aux_sym__for_header_token1] = ACTIONS(9506), + [aux_sym_do_statement_token1] = ACTIONS(9506), + [aux_sym_do_condition_token1] = ACTIONS(9506), + [aux_sym_with_statement_token1] = ACTIONS(9506), + [aux_sym_exit_statement_token1] = ACTIONS(9506), + [sym_end_statement] = ACTIONS(9508), + [aux_sym_on_goto_statement_token1] = ACTIONS(9506), + [aux_sym_on_goto_statement_token2] = ACTIONS(9506), + [aux_sym_on_error_statement_token2] = ACTIONS(9506), + [sym__ambiguous_redim_statement] = ACTIONS(9508), + [aux_sym_erase_statement_token1] = ACTIONS(9506), + [aux_sym_open_statement_token1] = ACTIONS(9506), + [aux_sym_file_mode_token2] = ACTIONS(9506), + [aux_sym_file_access_token2] = ACTIONS(9506), + [aux_sym_file_lock_token2] = ACTIONS(9506), + [aux_sym_print_statement_token1] = ACTIONS(9506), + [anon_sym_PLUS] = ACTIONS(9508), + [anon_sym_DASH] = ACTIONS(9506), + [anon_sym_QMARK] = ACTIONS(9508), + [aux_sym_close_statement_token1] = ACTIONS(9506), + [aux_sym_put_statement_token1] = ACTIONS(9506), + [aux_sym_unlock_statement_token1] = ACTIONS(9506), + [aux_sym_seek_statement_token1] = ACTIONS(9506), + [sym_reset_statement] = ACTIONS(9506), + [aux_sym_raise_event_statement_token1] = ACTIONS(9506), + [sym_stop_statement] = ACTIONS(9506), + [sym_beep_statement] = ACTIONS(9506), + [aux_sym_unload_statement_token1] = ACTIONS(9506), + [aux_sym_def_type_statement_token1] = ACTIONS(9506), + [aux_sym_def_type_statement_token2] = ACTIONS(9506), + [aux_sym_def_type_statement_token3] = ACTIONS(9506), + [aux_sym_def_type_statement_token4] = ACTIONS(9506), + [aux_sym_def_type_statement_token5] = ACTIONS(9506), + [aux_sym_def_type_statement_token6] = ACTIONS(9506), + [aux_sym_def_type_statement_token7] = ACTIONS(9506), + [aux_sym_def_type_statement_token8] = ACTIONS(9506), + [aux_sym_def_type_statement_token9] = ACTIONS(9506), + [aux_sym_def_type_statement_token10] = ACTIONS(9506), + [aux_sym_def_type_statement_token11] = ACTIONS(9506), + [aux_sym_def_type_statement_token12] = ACTIONS(9506), + [aux_sym_def_type_statement_token13] = ACTIONS(9506), + [aux_sym_def_type_statement_token14] = ACTIONS(9506), + [aux_sym_call_statement_token1] = ACTIONS(9506), + [sym__ambiguous_call_statement] = ACTIONS(9506), + [aux_sym_addressof_expression_token1] = ACTIONS(9506), + [aux_sym_type_of_expression_token1] = ACTIONS(9506), + [aux_sym_unary_expression_token1] = ACTIONS(9506), + [sym_string_literal] = ACTIONS(9508), + [sym_number_literal] = ACTIONS(9508), + [aux_sym_boolean_literal_token1] = ACTIONS(9506), + [aux_sym_boolean_literal_token2] = ACTIONS(9506), + [sym_nothing_literal] = ACTIONS(9506), + [sym_null_literal] = ACTIONS(9506), + [sym_empty_literal] = ACTIONS(9506), + [sym_date_literal] = ACTIONS(9508), + [anon_sym_POUND] = ACTIONS(9506), + }, + [STATE(7048)] = { + [sym_identifier] = ACTIONS(9575), + [sym_newline] = ACTIONS(9577), + [anon_sym_COLON] = ACTIONS(9577), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9575), + [aux_sym_frm_property_statement_token1] = ACTIONS(9575), + [anon_sym_DOT] = ACTIONS(9575), + [anon_sym_BANG] = ACTIONS(9577), + [aux_sym__attribute_identifier_token1] = ACTIONS(9575), + [aux_sym_option_statement_token3] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9575), + [aux_sym_preprocessor_const_token1] = ACTIONS(9575), + [sym_static_modifier] = ACTIONS(9575), + [sym__dim_keyword] = ACTIONS(9575), + [sym__redim_keyword] = ACTIONS(9575), + [aux_sym_get_accessor_token1] = ACTIONS(9575), + [aux_sym_set_accessor_token1] = ACTIONS(9575), + [aux_sym_const_declaration_token1] = ACTIONS(9575), + [anon_sym_LPAREN] = ACTIONS(9577), + [aux_sym_as_type_clause_token2] = ACTIONS(9575), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9575), + [aux_sym_visibility_token1] = ACTIONS(9575), + [aux_sym_visibility_token2] = ACTIONS(9575), + [aux_sym_elseif_fragment_token1] = ACTIONS(9575), + [aux_sym_else_fragment_token1] = ACTIONS(9575), + [aux_sym_select_statement_token1] = ACTIONS(9575), + [aux_sym__for_header_token1] = ACTIONS(9575), + [aux_sym_do_statement_token1] = ACTIONS(9575), + [aux_sym_do_condition_token1] = ACTIONS(9575), + [aux_sym_while_statement_token1] = ACTIONS(9575), + [aux_sym_with_statement_token1] = ACTIONS(9575), + [aux_sym_exit_statement_token1] = ACTIONS(9575), + [sym_end_statement] = ACTIONS(9577), + [aux_sym_on_goto_statement_token1] = ACTIONS(9575), + [aux_sym_on_goto_statement_token2] = ACTIONS(9575), + [aux_sym_on_error_statement_token2] = ACTIONS(9575), + [sym__ambiguous_redim_statement] = ACTIONS(9577), + [aux_sym_erase_statement_token1] = ACTIONS(9575), + [aux_sym_open_statement_token1] = ACTIONS(9575), + [aux_sym_file_mode_token2] = ACTIONS(9575), + [aux_sym_file_access_token2] = ACTIONS(9575), + [aux_sym_file_lock_token2] = ACTIONS(9575), + [aux_sym_print_statement_token1] = ACTIONS(9575), + [anon_sym_PLUS] = ACTIONS(9577), + [anon_sym_DASH] = ACTIONS(9575), + [anon_sym_QMARK] = ACTIONS(9577), + [aux_sym_close_statement_token1] = ACTIONS(9575), + [aux_sym_put_statement_token1] = ACTIONS(9575), + [aux_sym_unlock_statement_token1] = ACTIONS(9575), + [aux_sym_seek_statement_token1] = ACTIONS(9575), + [sym_reset_statement] = ACTIONS(9575), + [aux_sym_raise_event_statement_token1] = ACTIONS(9575), + [sym_stop_statement] = ACTIONS(9575), + [sym_beep_statement] = ACTIONS(9575), + [aux_sym_unload_statement_token1] = ACTIONS(9575), + [aux_sym_def_type_statement_token1] = ACTIONS(9575), + [aux_sym_def_type_statement_token2] = ACTIONS(9575), + [aux_sym_def_type_statement_token3] = ACTIONS(9575), + [aux_sym_def_type_statement_token4] = ACTIONS(9575), + [aux_sym_def_type_statement_token5] = ACTIONS(9575), + [aux_sym_def_type_statement_token6] = ACTIONS(9575), + [aux_sym_def_type_statement_token7] = ACTIONS(9575), + [aux_sym_def_type_statement_token8] = ACTIONS(9575), + [aux_sym_def_type_statement_token9] = ACTIONS(9575), + [aux_sym_def_type_statement_token10] = ACTIONS(9575), + [aux_sym_def_type_statement_token11] = ACTIONS(9575), + [aux_sym_def_type_statement_token12] = ACTIONS(9575), + [aux_sym_def_type_statement_token13] = ACTIONS(9575), + [aux_sym_def_type_statement_token14] = ACTIONS(9575), + [aux_sym_call_statement_token1] = ACTIONS(9575), + [sym__ambiguous_call_statement] = ACTIONS(9575), + [aux_sym_addressof_expression_token1] = ACTIONS(9575), + [aux_sym_type_of_expression_token1] = ACTIONS(9575), + [aux_sym_unary_expression_token1] = ACTIONS(9575), + [sym_string_literal] = ACTIONS(9577), + [sym_number_literal] = ACTIONS(9577), + [aux_sym_boolean_literal_token1] = ACTIONS(9575), + [aux_sym_boolean_literal_token2] = ACTIONS(9575), + [sym_nothing_literal] = ACTIONS(9575), + [sym_null_literal] = ACTIONS(9575), + [sym_empty_literal] = ACTIONS(9575), + [sym_date_literal] = ACTIONS(9577), + [anon_sym_POUND] = ACTIONS(9575), + }, + [STATE(7049)] = { + [sym_identifier] = ACTIONS(9582), + [sym_newline] = ACTIONS(9584), + [anon_sym_COLON] = ACTIONS(9584), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9582), + [aux_sym_frm_property_statement_token1] = ACTIONS(9582), + [anon_sym_DOT] = ACTIONS(9582), + [anon_sym_BANG] = ACTIONS(9584), + [aux_sym__attribute_identifier_token1] = ACTIONS(9582), + [aux_sym_option_statement_token3] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9582), + [aux_sym_preprocessor_const_token1] = ACTIONS(9582), + [sym_static_modifier] = ACTIONS(9582), + [sym__dim_keyword] = ACTIONS(9582), + [sym__redim_keyword] = ACTIONS(9582), + [aux_sym_get_accessor_token1] = ACTIONS(9582), + [aux_sym_set_accessor_token1] = ACTIONS(9582), + [aux_sym_const_declaration_token1] = ACTIONS(9582), + [anon_sym_LPAREN] = ACTIONS(9584), + [aux_sym_as_type_clause_token2] = ACTIONS(9582), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9582), + [aux_sym_visibility_token1] = ACTIONS(9582), + [aux_sym_visibility_token2] = ACTIONS(9582), + [aux_sym_elseif_fragment_token1] = ACTIONS(9582), + [aux_sym_else_fragment_token1] = ACTIONS(9582), + [aux_sym_select_statement_token1] = ACTIONS(9582), + [aux_sym__for_header_token1] = ACTIONS(9582), + [aux_sym_do_statement_token1] = ACTIONS(9582), + [aux_sym_do_condition_token1] = ACTIONS(9582), + [aux_sym_while_statement_token1] = ACTIONS(9582), + [aux_sym_with_statement_token1] = ACTIONS(9582), + [aux_sym_exit_statement_token1] = ACTIONS(9582), + [sym_end_statement] = ACTIONS(9584), + [aux_sym_on_goto_statement_token1] = ACTIONS(9582), + [aux_sym_on_goto_statement_token2] = ACTIONS(9582), + [aux_sym_on_error_statement_token2] = ACTIONS(9582), + [sym__ambiguous_redim_statement] = ACTIONS(9584), + [aux_sym_erase_statement_token1] = ACTIONS(9582), + [aux_sym_open_statement_token1] = ACTIONS(9582), + [aux_sym_file_mode_token2] = ACTIONS(9582), + [aux_sym_file_access_token2] = ACTIONS(9582), + [aux_sym_file_lock_token2] = ACTIONS(9582), + [aux_sym_print_statement_token1] = ACTIONS(9582), + [anon_sym_PLUS] = ACTIONS(9584), + [anon_sym_DASH] = ACTIONS(9582), + [anon_sym_QMARK] = ACTIONS(9584), + [aux_sym_close_statement_token1] = ACTIONS(9582), + [aux_sym_put_statement_token1] = ACTIONS(9582), + [aux_sym_unlock_statement_token1] = ACTIONS(9582), + [aux_sym_seek_statement_token1] = ACTIONS(9582), + [sym_reset_statement] = ACTIONS(9582), + [aux_sym_raise_event_statement_token1] = ACTIONS(9582), + [sym_stop_statement] = ACTIONS(9582), + [sym_beep_statement] = ACTIONS(9582), + [aux_sym_unload_statement_token1] = ACTIONS(9582), + [aux_sym_def_type_statement_token1] = ACTIONS(9582), + [aux_sym_def_type_statement_token2] = ACTIONS(9582), + [aux_sym_def_type_statement_token3] = ACTIONS(9582), + [aux_sym_def_type_statement_token4] = ACTIONS(9582), + [aux_sym_def_type_statement_token5] = ACTIONS(9582), + [aux_sym_def_type_statement_token6] = ACTIONS(9582), + [aux_sym_def_type_statement_token7] = ACTIONS(9582), + [aux_sym_def_type_statement_token8] = ACTIONS(9582), + [aux_sym_def_type_statement_token9] = ACTIONS(9582), + [aux_sym_def_type_statement_token10] = ACTIONS(9582), + [aux_sym_def_type_statement_token11] = ACTIONS(9582), + [aux_sym_def_type_statement_token12] = ACTIONS(9582), + [aux_sym_def_type_statement_token13] = ACTIONS(9582), + [aux_sym_def_type_statement_token14] = ACTIONS(9582), + [aux_sym_call_statement_token1] = ACTIONS(9582), + [sym__ambiguous_call_statement] = ACTIONS(9582), + [aux_sym_addressof_expression_token1] = ACTIONS(9582), + [aux_sym_type_of_expression_token1] = ACTIONS(9582), + [aux_sym_unary_expression_token1] = ACTIONS(9582), + [sym_string_literal] = ACTIONS(9584), + [sym_number_literal] = ACTIONS(9584), + [aux_sym_boolean_literal_token1] = ACTIONS(9582), + [aux_sym_boolean_literal_token2] = ACTIONS(9582), + [sym_nothing_literal] = ACTIONS(9582), + [sym_null_literal] = ACTIONS(9582), + [sym_empty_literal] = ACTIONS(9582), + [sym_date_literal] = ACTIONS(9584), + [anon_sym_POUND] = ACTIONS(9582), + }, + [STATE(7050)] = { + [sym_identifier] = ACTIONS(9150), + [sym_newline] = ACTIONS(9152), + [anon_sym_COLON] = ACTIONS(9152), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9154), + [aux_sym_frm_property_statement_token1] = ACTIONS(9150), + [anon_sym_DOT] = ACTIONS(9150), + [anon_sym_BANG] = ACTIONS(9152), + [aux_sym__attribute_identifier_token1] = ACTIONS(9150), + [aux_sym_option_statement_token3] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9154), + [aux_sym_preprocessor_const_token1] = ACTIONS(9150), + [sym_static_modifier] = ACTIONS(9150), + [sym__dim_keyword] = ACTIONS(9150), + [sym__redim_keyword] = ACTIONS(9150), + [aux_sym_get_accessor_token1] = ACTIONS(9150), + [aux_sym_set_accessor_token1] = ACTIONS(9150), + [aux_sym_const_declaration_token1] = ACTIONS(9150), + [anon_sym_LPAREN] = ACTIONS(9152), + [aux_sym_as_type_clause_token2] = ACTIONS(9150), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9150), + [aux_sym_visibility_token1] = ACTIONS(9150), + [aux_sym_visibility_token2] = ACTIONS(9150), + [aux_sym_elseif_fragment_token1] = ACTIONS(9154), + [aux_sym_else_fragment_token1] = ACTIONS(9154), + [aux_sym_select_statement_token1] = ACTIONS(9154), + [aux_sym__for_header_token1] = ACTIONS(9154), + [aux_sym_do_statement_token1] = ACTIONS(9154), + [aux_sym_do_statement_token2] = ACTIONS(9154), + [aux_sym_do_condition_token1] = ACTIONS(9154), + [aux_sym_with_statement_token1] = ACTIONS(9154), + [aux_sym_exit_statement_token1] = ACTIONS(9150), + [sym_end_statement] = ACTIONS(9152), + [aux_sym_on_goto_statement_token1] = ACTIONS(9150), + [aux_sym_on_goto_statement_token2] = ACTIONS(9150), + [aux_sym_on_error_statement_token2] = ACTIONS(9150), + [sym__ambiguous_redim_statement] = ACTIONS(9152), + [aux_sym_erase_statement_token1] = ACTIONS(9150), + [aux_sym_open_statement_token1] = ACTIONS(9150), + [aux_sym_file_mode_token2] = ACTIONS(9150), + [aux_sym_file_access_token2] = ACTIONS(9150), + [aux_sym_file_lock_token2] = ACTIONS(9150), + [aux_sym_print_statement_token1] = ACTIONS(9150), + [anon_sym_PLUS] = ACTIONS(9152), + [anon_sym_DASH] = ACTIONS(9150), + [anon_sym_QMARK] = ACTIONS(9152), + [aux_sym_close_statement_token1] = ACTIONS(9150), + [aux_sym_put_statement_token1] = ACTIONS(9150), + [aux_sym_unlock_statement_token1] = ACTIONS(9150), + [aux_sym_seek_statement_token1] = ACTIONS(9150), + [sym_reset_statement] = ACTIONS(9150), + [aux_sym_raise_event_statement_token1] = ACTIONS(9150), + [sym_stop_statement] = ACTIONS(9150), + [sym_beep_statement] = ACTIONS(9150), + [aux_sym_unload_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token2] = ACTIONS(9150), + [aux_sym_def_type_statement_token3] = ACTIONS(9150), + [aux_sym_def_type_statement_token4] = ACTIONS(9150), + [aux_sym_def_type_statement_token5] = ACTIONS(9150), + [aux_sym_def_type_statement_token6] = ACTIONS(9150), + [aux_sym_def_type_statement_token7] = ACTIONS(9150), + [aux_sym_def_type_statement_token8] = ACTIONS(9150), + [aux_sym_def_type_statement_token9] = ACTIONS(9150), + [aux_sym_def_type_statement_token10] = ACTIONS(9150), + [aux_sym_def_type_statement_token11] = ACTIONS(9150), + [aux_sym_def_type_statement_token12] = ACTIONS(9150), + [aux_sym_def_type_statement_token13] = ACTIONS(9150), + [aux_sym_def_type_statement_token14] = ACTIONS(9150), + [aux_sym_call_statement_token1] = ACTIONS(9150), + [sym__ambiguous_call_statement] = ACTIONS(9150), + [aux_sym_addressof_expression_token1] = ACTIONS(9150), + [aux_sym_type_of_expression_token1] = ACTIONS(9150), + [aux_sym_unary_expression_token1] = ACTIONS(9150), + [sym_string_literal] = ACTIONS(9152), + [sym_number_literal] = ACTIONS(9152), + [aux_sym_boolean_literal_token1] = ACTIONS(9150), + [aux_sym_boolean_literal_token2] = ACTIONS(9150), + [sym_nothing_literal] = ACTIONS(9150), + [sym_null_literal] = ACTIONS(9150), + [sym_empty_literal] = ACTIONS(9150), + [sym_date_literal] = ACTIONS(9152), + [anon_sym_POUND] = ACTIONS(9150), + }, + [STATE(7051)] = { + [sym_identifier] = ACTIONS(9586), + [sym_newline] = ACTIONS(9588), + [anon_sym_COLON] = ACTIONS(9588), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9586), + [aux_sym_frm_property_statement_token1] = ACTIONS(9586), + [anon_sym_DOT] = ACTIONS(9586), + [anon_sym_BANG] = ACTIONS(9588), + [aux_sym__attribute_identifier_token1] = ACTIONS(9586), + [aux_sym_option_statement_token3] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9586), + [aux_sym_preprocessor_const_token1] = ACTIONS(9586), + [sym_static_modifier] = ACTIONS(9586), + [sym__dim_keyword] = ACTIONS(9586), + [sym__redim_keyword] = ACTIONS(9586), + [aux_sym_get_accessor_token1] = ACTIONS(9586), + [aux_sym_set_accessor_token1] = ACTIONS(9586), + [aux_sym_const_declaration_token1] = ACTIONS(9586), + [anon_sym_LPAREN] = ACTIONS(9588), + [aux_sym_as_type_clause_token2] = ACTIONS(9586), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9586), + [aux_sym_visibility_token1] = ACTIONS(9586), + [aux_sym_visibility_token2] = ACTIONS(9586), + [aux_sym_elseif_fragment_token1] = ACTIONS(9586), + [aux_sym_else_fragment_token1] = ACTIONS(9586), + [aux_sym_select_statement_token1] = ACTIONS(9586), + [aux_sym__for_header_token1] = ACTIONS(9586), + [aux_sym_do_statement_token1] = ACTIONS(9586), + [aux_sym_do_condition_token1] = ACTIONS(9586), + [aux_sym_while_statement_token1] = ACTIONS(9586), + [aux_sym_with_statement_token1] = ACTIONS(9586), + [aux_sym_exit_statement_token1] = ACTIONS(9586), + [sym_end_statement] = ACTIONS(9588), + [aux_sym_on_goto_statement_token1] = ACTIONS(9586), + [aux_sym_on_goto_statement_token2] = ACTIONS(9586), + [aux_sym_on_error_statement_token2] = ACTIONS(9586), + [sym__ambiguous_redim_statement] = ACTIONS(9588), + [aux_sym_erase_statement_token1] = ACTIONS(9586), + [aux_sym_open_statement_token1] = ACTIONS(9586), + [aux_sym_file_mode_token2] = ACTIONS(9586), + [aux_sym_file_access_token2] = ACTIONS(9586), + [aux_sym_file_lock_token2] = ACTIONS(9586), + [aux_sym_print_statement_token1] = ACTIONS(9586), + [anon_sym_PLUS] = ACTIONS(9588), + [anon_sym_DASH] = ACTIONS(9586), + [anon_sym_QMARK] = ACTIONS(9588), + [aux_sym_close_statement_token1] = ACTIONS(9586), + [aux_sym_put_statement_token1] = ACTIONS(9586), + [aux_sym_unlock_statement_token1] = ACTIONS(9586), + [aux_sym_seek_statement_token1] = ACTIONS(9586), + [sym_reset_statement] = ACTIONS(9586), + [aux_sym_raise_event_statement_token1] = ACTIONS(9586), + [sym_stop_statement] = ACTIONS(9586), + [sym_beep_statement] = ACTIONS(9586), + [aux_sym_unload_statement_token1] = ACTIONS(9586), + [aux_sym_def_type_statement_token1] = ACTIONS(9586), + [aux_sym_def_type_statement_token2] = ACTIONS(9586), + [aux_sym_def_type_statement_token3] = ACTIONS(9586), + [aux_sym_def_type_statement_token4] = ACTIONS(9586), + [aux_sym_def_type_statement_token5] = ACTIONS(9586), + [aux_sym_def_type_statement_token6] = ACTIONS(9586), + [aux_sym_def_type_statement_token7] = ACTIONS(9586), + [aux_sym_def_type_statement_token8] = ACTIONS(9586), + [aux_sym_def_type_statement_token9] = ACTIONS(9586), + [aux_sym_def_type_statement_token10] = ACTIONS(9586), + [aux_sym_def_type_statement_token11] = ACTIONS(9586), + [aux_sym_def_type_statement_token12] = ACTIONS(9586), + [aux_sym_def_type_statement_token13] = ACTIONS(9586), + [aux_sym_def_type_statement_token14] = ACTIONS(9586), + [aux_sym_call_statement_token1] = ACTIONS(9586), + [sym__ambiguous_call_statement] = ACTIONS(9586), + [aux_sym_addressof_expression_token1] = ACTIONS(9586), + [aux_sym_type_of_expression_token1] = ACTIONS(9586), + [aux_sym_unary_expression_token1] = ACTIONS(9586), + [sym_string_literal] = ACTIONS(9588), + [sym_number_literal] = ACTIONS(9588), + [aux_sym_boolean_literal_token1] = ACTIONS(9586), + [aux_sym_boolean_literal_token2] = ACTIONS(9586), + [sym_nothing_literal] = ACTIONS(9586), + [sym_null_literal] = ACTIONS(9586), + [sym_empty_literal] = ACTIONS(9586), + [sym_date_literal] = ACTIONS(9588), + [anon_sym_POUND] = ACTIONS(9586), + }, + [STATE(7052)] = { + [sym_identifier] = ACTIONS(9142), + [sym_newline] = ACTIONS(9144), + [anon_sym_COLON] = ACTIONS(9144), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9142), + [aux_sym_frm_property_statement_token1] = ACTIONS(9142), + [anon_sym_DOT] = ACTIONS(9142), + [anon_sym_BANG] = ACTIONS(9144), + [aux_sym__attribute_identifier_token1] = ACTIONS(9142), + [aux_sym_option_statement_token3] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9142), + [aux_sym_preprocessor_const_token1] = ACTIONS(9142), + [sym_static_modifier] = ACTIONS(9142), + [sym__dim_keyword] = ACTIONS(9142), + [sym__redim_keyword] = ACTIONS(9142), + [aux_sym_get_accessor_token1] = ACTIONS(9142), + [aux_sym_set_accessor_token1] = ACTIONS(9142), + [aux_sym_const_declaration_token1] = ACTIONS(9142), + [anon_sym_LPAREN] = ACTIONS(9144), + [aux_sym_as_type_clause_token2] = ACTIONS(9142), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9142), + [aux_sym_visibility_token1] = ACTIONS(9142), + [aux_sym_visibility_token2] = ACTIONS(9142), + [aux_sym_elseif_fragment_token1] = ACTIONS(9142), + [aux_sym_else_fragment_token1] = ACTIONS(9142), + [aux_sym_select_statement_token1] = ACTIONS(9142), + [aux_sym_select_statement_token2] = ACTIONS(9142), + [aux_sym__for_header_token1] = ACTIONS(9142), + [aux_sym_do_statement_token1] = ACTIONS(9142), + [aux_sym_do_condition_token1] = ACTIONS(9142), + [aux_sym_with_statement_token1] = ACTIONS(9142), + [aux_sym_exit_statement_token1] = ACTIONS(9142), + [sym_end_statement] = ACTIONS(9144), + [aux_sym_on_goto_statement_token1] = ACTIONS(9142), + [aux_sym_on_goto_statement_token2] = ACTIONS(9142), + [aux_sym_on_error_statement_token2] = ACTIONS(9142), + [sym__ambiguous_redim_statement] = ACTIONS(9144), + [aux_sym_erase_statement_token1] = ACTIONS(9142), + [aux_sym_open_statement_token1] = ACTIONS(9142), + [aux_sym_file_mode_token2] = ACTIONS(9142), + [aux_sym_file_access_token2] = ACTIONS(9142), + [aux_sym_file_lock_token2] = ACTIONS(9142), + [aux_sym_print_statement_token1] = ACTIONS(9142), + [anon_sym_PLUS] = ACTIONS(9144), + [anon_sym_DASH] = ACTIONS(9142), + [anon_sym_QMARK] = ACTIONS(9144), + [aux_sym_close_statement_token1] = ACTIONS(9142), + [aux_sym_put_statement_token1] = ACTIONS(9142), + [aux_sym_unlock_statement_token1] = ACTIONS(9142), + [aux_sym_seek_statement_token1] = ACTIONS(9142), + [sym_reset_statement] = ACTIONS(9142), + [aux_sym_raise_event_statement_token1] = ACTIONS(9142), + [sym_stop_statement] = ACTIONS(9142), + [sym_beep_statement] = ACTIONS(9142), + [aux_sym_unload_statement_token1] = ACTIONS(9142), + [aux_sym_def_type_statement_token1] = ACTIONS(9142), + [aux_sym_def_type_statement_token2] = ACTIONS(9142), + [aux_sym_def_type_statement_token3] = ACTIONS(9142), + [aux_sym_def_type_statement_token4] = ACTIONS(9142), + [aux_sym_def_type_statement_token5] = ACTIONS(9142), + [aux_sym_def_type_statement_token6] = ACTIONS(9142), + [aux_sym_def_type_statement_token7] = ACTIONS(9142), + [aux_sym_def_type_statement_token8] = ACTIONS(9142), + [aux_sym_def_type_statement_token9] = ACTIONS(9142), + [aux_sym_def_type_statement_token10] = ACTIONS(9142), + [aux_sym_def_type_statement_token11] = ACTIONS(9142), + [aux_sym_def_type_statement_token12] = ACTIONS(9142), + [aux_sym_def_type_statement_token13] = ACTIONS(9142), + [aux_sym_def_type_statement_token14] = ACTIONS(9142), + [aux_sym_call_statement_token1] = ACTIONS(9142), + [sym__ambiguous_call_statement] = ACTIONS(9142), + [aux_sym_addressof_expression_token1] = ACTIONS(9142), + [aux_sym_type_of_expression_token1] = ACTIONS(9142), + [aux_sym_unary_expression_token1] = ACTIONS(9142), + [sym_string_literal] = ACTIONS(9144), + [sym_number_literal] = ACTIONS(9144), + [aux_sym_boolean_literal_token1] = ACTIONS(9142), + [aux_sym_boolean_literal_token2] = ACTIONS(9142), + [sym_nothing_literal] = ACTIONS(9142), + [sym_null_literal] = ACTIONS(9142), + [sym_empty_literal] = ACTIONS(9142), + [sym_date_literal] = ACTIONS(9144), + [anon_sym_POUND] = ACTIONS(9142), + }, + [STATE(7053)] = { + [sym_identifier] = ACTIONS(9590), + [sym_newline] = ACTIONS(9592), + [anon_sym_COLON] = ACTIONS(9592), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9590), + [aux_sym_frm_property_statement_token1] = ACTIONS(9590), + [anon_sym_DOT] = ACTIONS(9590), + [anon_sym_BANG] = ACTIONS(9592), + [aux_sym__attribute_identifier_token1] = ACTIONS(9590), + [aux_sym_option_statement_token3] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9590), + [aux_sym_preprocessor_const_token1] = ACTIONS(9590), + [sym_static_modifier] = ACTIONS(9590), + [sym__dim_keyword] = ACTIONS(9590), + [sym__redim_keyword] = ACTIONS(9590), + [aux_sym_get_accessor_token1] = ACTIONS(9590), + [aux_sym_set_accessor_token1] = ACTIONS(9590), + [aux_sym_const_declaration_token1] = ACTIONS(9590), + [anon_sym_LPAREN] = ACTIONS(9592), + [aux_sym_as_type_clause_token2] = ACTIONS(9590), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9590), + [aux_sym_visibility_token1] = ACTIONS(9590), + [aux_sym_visibility_token2] = ACTIONS(9590), + [aux_sym_elseif_fragment_token1] = ACTIONS(9590), + [aux_sym_else_fragment_token1] = ACTIONS(9590), + [aux_sym_select_statement_token1] = ACTIONS(9590), + [aux_sym__for_header_token1] = ACTIONS(9590), + [aux_sym_do_statement_token1] = ACTIONS(9590), + [aux_sym_do_condition_token1] = ACTIONS(9590), + [aux_sym_while_statement_token1] = ACTIONS(9590), + [aux_sym_with_statement_token1] = ACTIONS(9590), + [aux_sym_exit_statement_token1] = ACTIONS(9590), + [sym_end_statement] = ACTIONS(9592), + [aux_sym_on_goto_statement_token1] = ACTIONS(9590), + [aux_sym_on_goto_statement_token2] = ACTIONS(9590), + [aux_sym_on_error_statement_token2] = ACTIONS(9590), + [sym__ambiguous_redim_statement] = ACTIONS(9592), + [aux_sym_erase_statement_token1] = ACTIONS(9590), + [aux_sym_open_statement_token1] = ACTIONS(9590), + [aux_sym_file_mode_token2] = ACTIONS(9590), + [aux_sym_file_access_token2] = ACTIONS(9590), + [aux_sym_file_lock_token2] = ACTIONS(9590), + [aux_sym_print_statement_token1] = ACTIONS(9590), + [anon_sym_PLUS] = ACTIONS(9592), + [anon_sym_DASH] = ACTIONS(9590), + [anon_sym_QMARK] = ACTIONS(9592), + [aux_sym_close_statement_token1] = ACTIONS(9590), + [aux_sym_put_statement_token1] = ACTIONS(9590), + [aux_sym_unlock_statement_token1] = ACTIONS(9590), + [aux_sym_seek_statement_token1] = ACTIONS(9590), + [sym_reset_statement] = ACTIONS(9590), + [aux_sym_raise_event_statement_token1] = ACTIONS(9590), + [sym_stop_statement] = ACTIONS(9590), + [sym_beep_statement] = ACTIONS(9590), + [aux_sym_unload_statement_token1] = ACTIONS(9590), + [aux_sym_def_type_statement_token1] = ACTIONS(9590), + [aux_sym_def_type_statement_token2] = ACTIONS(9590), + [aux_sym_def_type_statement_token3] = ACTIONS(9590), + [aux_sym_def_type_statement_token4] = ACTIONS(9590), + [aux_sym_def_type_statement_token5] = ACTIONS(9590), + [aux_sym_def_type_statement_token6] = ACTIONS(9590), + [aux_sym_def_type_statement_token7] = ACTIONS(9590), + [aux_sym_def_type_statement_token8] = ACTIONS(9590), + [aux_sym_def_type_statement_token9] = ACTIONS(9590), + [aux_sym_def_type_statement_token10] = ACTIONS(9590), + [aux_sym_def_type_statement_token11] = ACTIONS(9590), + [aux_sym_def_type_statement_token12] = ACTIONS(9590), + [aux_sym_def_type_statement_token13] = ACTIONS(9590), + [aux_sym_def_type_statement_token14] = ACTIONS(9590), + [aux_sym_call_statement_token1] = ACTIONS(9590), + [sym__ambiguous_call_statement] = ACTIONS(9590), + [aux_sym_addressof_expression_token1] = ACTIONS(9590), + [aux_sym_type_of_expression_token1] = ACTIONS(9590), + [aux_sym_unary_expression_token1] = ACTIONS(9590), + [sym_string_literal] = ACTIONS(9592), + [sym_number_literal] = ACTIONS(9592), + [aux_sym_boolean_literal_token1] = ACTIONS(9590), + [aux_sym_boolean_literal_token2] = ACTIONS(9590), + [sym_nothing_literal] = ACTIONS(9590), + [sym_null_literal] = ACTIONS(9590), + [sym_empty_literal] = ACTIONS(9590), + [sym_date_literal] = ACTIONS(9592), + [anon_sym_POUND] = ACTIONS(9590), + }, + [STATE(7054)] = { + [sym_identifier] = ACTIONS(9594), + [sym_newline] = ACTIONS(9596), + [anon_sym_COLON] = ACTIONS(9596), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9594), + [aux_sym_frm_property_statement_token1] = ACTIONS(9594), + [anon_sym_DOT] = ACTIONS(9594), + [anon_sym_BANG] = ACTIONS(9596), + [aux_sym__attribute_identifier_token1] = ACTIONS(9594), + [aux_sym_option_statement_token3] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9594), + [aux_sym_preprocessor_const_token1] = ACTIONS(9594), + [sym_static_modifier] = ACTIONS(9594), + [sym__dim_keyword] = ACTIONS(9594), + [sym__redim_keyword] = ACTIONS(9594), + [aux_sym_get_accessor_token1] = ACTIONS(9594), + [aux_sym_set_accessor_token1] = ACTIONS(9594), + [aux_sym_const_declaration_token1] = ACTIONS(9594), + [anon_sym_LPAREN] = ACTIONS(9596), + [aux_sym_as_type_clause_token2] = ACTIONS(9594), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9594), + [aux_sym_visibility_token1] = ACTIONS(9594), + [aux_sym_visibility_token2] = ACTIONS(9594), + [aux_sym_elseif_fragment_token1] = ACTIONS(9594), + [aux_sym_else_fragment_token1] = ACTIONS(9594), + [aux_sym_select_statement_token1] = ACTIONS(9594), + [aux_sym__for_header_token1] = ACTIONS(9594), + [aux_sym_do_statement_token1] = ACTIONS(9594), + [aux_sym_do_condition_token1] = ACTIONS(9594), + [aux_sym_while_statement_token1] = ACTIONS(9594), + [aux_sym_with_statement_token1] = ACTIONS(9594), + [aux_sym_exit_statement_token1] = ACTIONS(9594), + [sym_end_statement] = ACTIONS(9596), + [aux_sym_on_goto_statement_token1] = ACTIONS(9594), + [aux_sym_on_goto_statement_token2] = ACTIONS(9594), + [aux_sym_on_error_statement_token2] = ACTIONS(9594), + [sym__ambiguous_redim_statement] = ACTIONS(9596), + [aux_sym_erase_statement_token1] = ACTIONS(9594), + [aux_sym_open_statement_token1] = ACTIONS(9594), + [aux_sym_file_mode_token2] = ACTIONS(9594), + [aux_sym_file_access_token2] = ACTIONS(9594), + [aux_sym_file_lock_token2] = ACTIONS(9594), + [aux_sym_print_statement_token1] = ACTIONS(9594), + [anon_sym_PLUS] = ACTIONS(9596), + [anon_sym_DASH] = ACTIONS(9594), + [anon_sym_QMARK] = ACTIONS(9596), + [aux_sym_close_statement_token1] = ACTIONS(9594), + [aux_sym_put_statement_token1] = ACTIONS(9594), + [aux_sym_unlock_statement_token1] = ACTIONS(9594), + [aux_sym_seek_statement_token1] = ACTIONS(9594), + [sym_reset_statement] = ACTIONS(9594), + [aux_sym_raise_event_statement_token1] = ACTIONS(9594), + [sym_stop_statement] = ACTIONS(9594), + [sym_beep_statement] = ACTIONS(9594), + [aux_sym_unload_statement_token1] = ACTIONS(9594), + [aux_sym_def_type_statement_token1] = ACTIONS(9594), + [aux_sym_def_type_statement_token2] = ACTIONS(9594), + [aux_sym_def_type_statement_token3] = ACTIONS(9594), + [aux_sym_def_type_statement_token4] = ACTIONS(9594), + [aux_sym_def_type_statement_token5] = ACTIONS(9594), + [aux_sym_def_type_statement_token6] = ACTIONS(9594), + [aux_sym_def_type_statement_token7] = ACTIONS(9594), + [aux_sym_def_type_statement_token8] = ACTIONS(9594), + [aux_sym_def_type_statement_token9] = ACTIONS(9594), + [aux_sym_def_type_statement_token10] = ACTIONS(9594), + [aux_sym_def_type_statement_token11] = ACTIONS(9594), + [aux_sym_def_type_statement_token12] = ACTIONS(9594), + [aux_sym_def_type_statement_token13] = ACTIONS(9594), + [aux_sym_def_type_statement_token14] = ACTIONS(9594), + [aux_sym_call_statement_token1] = ACTIONS(9594), + [sym__ambiguous_call_statement] = ACTIONS(9594), + [aux_sym_addressof_expression_token1] = ACTIONS(9594), + [aux_sym_type_of_expression_token1] = ACTIONS(9594), + [aux_sym_unary_expression_token1] = ACTIONS(9594), + [sym_string_literal] = ACTIONS(9596), + [sym_number_literal] = ACTIONS(9596), + [aux_sym_boolean_literal_token1] = ACTIONS(9594), + [aux_sym_boolean_literal_token2] = ACTIONS(9594), + [sym_nothing_literal] = ACTIONS(9594), + [sym_null_literal] = ACTIONS(9594), + [sym_empty_literal] = ACTIONS(9594), + [sym_date_literal] = ACTIONS(9596), + [anon_sym_POUND] = ACTIONS(9594), + }, + [STATE(7055)] = { + [sym_identifier] = ACTIONS(8312), + [sym_newline] = ACTIONS(8314), + [anon_sym_COLON] = ACTIONS(8314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8312), + [aux_sym_frm_property_statement_token1] = ACTIONS(8312), + [anon_sym_DOT] = ACTIONS(8312), + [anon_sym_BANG] = ACTIONS(8314), + [aux_sym__attribute_identifier_token1] = ACTIONS(8312), + [aux_sym_option_statement_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8312), + [aux_sym_preprocessor_const_token1] = ACTIONS(8312), + [sym_static_modifier] = ACTIONS(8312), + [sym__dim_keyword] = ACTIONS(8312), + [sym__redim_keyword] = ACTIONS(8312), + [aux_sym_get_accessor_token1] = ACTIONS(8312), + [aux_sym_set_accessor_token1] = ACTIONS(8312), + [aux_sym_const_declaration_token1] = ACTIONS(8312), + [anon_sym_LPAREN] = ACTIONS(8314), + [aux_sym_as_type_clause_token2] = ACTIONS(8312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8312), + [aux_sym_visibility_token1] = ACTIONS(8312), + [aux_sym_visibility_token2] = ACTIONS(8312), + [aux_sym_elseif_fragment_token1] = ACTIONS(8312), + [aux_sym_else_fragment_token1] = ACTIONS(8312), + [aux_sym_select_statement_token1] = ACTIONS(8312), + [aux_sym__for_header_token1] = ACTIONS(8312), + [aux_sym_do_statement_token1] = ACTIONS(8312), + [aux_sym_do_statement_token2] = ACTIONS(8312), + [aux_sym_do_condition_token1] = ACTIONS(8312), + [aux_sym_with_statement_token1] = ACTIONS(8312), + [aux_sym_exit_statement_token1] = ACTIONS(8312), + [sym_end_statement] = ACTIONS(8314), + [aux_sym_on_goto_statement_token1] = ACTIONS(8312), + [aux_sym_on_goto_statement_token2] = ACTIONS(8312), + [aux_sym_on_error_statement_token2] = ACTIONS(8312), + [sym__ambiguous_redim_statement] = ACTIONS(8314), + [aux_sym_erase_statement_token1] = ACTIONS(8312), + [aux_sym_open_statement_token1] = ACTIONS(8312), + [aux_sym_file_mode_token2] = ACTIONS(8312), + [aux_sym_file_access_token2] = ACTIONS(8312), + [aux_sym_file_lock_token2] = ACTIONS(8312), + [aux_sym_print_statement_token1] = ACTIONS(8312), + [anon_sym_PLUS] = ACTIONS(8314), + [anon_sym_DASH] = ACTIONS(8312), + [anon_sym_QMARK] = ACTIONS(8314), + [aux_sym_close_statement_token1] = ACTIONS(8312), + [aux_sym_put_statement_token1] = ACTIONS(8312), + [aux_sym_unlock_statement_token1] = ACTIONS(8312), + [aux_sym_seek_statement_token1] = ACTIONS(8312), + [sym_reset_statement] = ACTIONS(8312), + [aux_sym_raise_event_statement_token1] = ACTIONS(8312), + [sym_stop_statement] = ACTIONS(8312), + [sym_beep_statement] = ACTIONS(8312), + [aux_sym_unload_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token2] = ACTIONS(8312), + [aux_sym_def_type_statement_token3] = ACTIONS(8312), + [aux_sym_def_type_statement_token4] = ACTIONS(8312), + [aux_sym_def_type_statement_token5] = ACTIONS(8312), + [aux_sym_def_type_statement_token6] = ACTIONS(8312), + [aux_sym_def_type_statement_token7] = ACTIONS(8312), + [aux_sym_def_type_statement_token8] = ACTIONS(8312), + [aux_sym_def_type_statement_token9] = ACTIONS(8312), + [aux_sym_def_type_statement_token10] = ACTIONS(8312), + [aux_sym_def_type_statement_token11] = ACTIONS(8312), + [aux_sym_def_type_statement_token12] = ACTIONS(8312), + [aux_sym_def_type_statement_token13] = ACTIONS(8312), + [aux_sym_def_type_statement_token14] = ACTIONS(8312), + [aux_sym_call_statement_token1] = ACTIONS(8312), + [sym__ambiguous_call_statement] = ACTIONS(8312), + [aux_sym_addressof_expression_token1] = ACTIONS(8312), + [aux_sym_type_of_expression_token1] = ACTIONS(8312), + [aux_sym_unary_expression_token1] = ACTIONS(8312), + [sym_string_literal] = ACTIONS(8314), + [sym_number_literal] = ACTIONS(8314), + [aux_sym_boolean_literal_token1] = ACTIONS(8312), + [aux_sym_boolean_literal_token2] = ACTIONS(8312), + [sym_nothing_literal] = ACTIONS(8312), + [sym_null_literal] = ACTIONS(8312), + [sym_empty_literal] = ACTIONS(8312), + [sym_date_literal] = ACTIONS(8314), + [anon_sym_POUND] = ACTIONS(8312), + }, + [STATE(7056)] = { + [sym_identifier] = ACTIONS(9156), + [sym_newline] = ACTIONS(9158), + [anon_sym_COLON] = ACTIONS(9158), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9156), + [aux_sym_frm_property_statement_token1] = ACTIONS(9156), + [anon_sym_DOT] = ACTIONS(9156), + [anon_sym_BANG] = ACTIONS(9158), + [aux_sym__attribute_identifier_token1] = ACTIONS(9156), + [aux_sym_option_statement_token3] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9156), + [aux_sym_preprocessor_const_token1] = ACTIONS(9156), + [sym_static_modifier] = ACTIONS(9156), + [sym__dim_keyword] = ACTIONS(9156), + [sym__redim_keyword] = ACTIONS(9156), + [aux_sym_get_accessor_token1] = ACTIONS(9156), + [aux_sym_set_accessor_token1] = ACTIONS(9156), + [aux_sym_const_declaration_token1] = ACTIONS(9156), + [anon_sym_LPAREN] = ACTIONS(9158), + [aux_sym_as_type_clause_token2] = ACTIONS(9156), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9156), + [aux_sym_visibility_token1] = ACTIONS(9156), + [aux_sym_visibility_token2] = ACTIONS(9156), + [aux_sym_elseif_fragment_token1] = ACTIONS(9156), + [aux_sym_else_fragment_token1] = ACTIONS(9156), + [aux_sym_select_statement_token1] = ACTIONS(9156), + [aux_sym__for_header_token1] = ACTIONS(9156), + [aux_sym_do_statement_token1] = ACTIONS(9156), + [aux_sym_do_statement_token2] = ACTIONS(9156), + [aux_sym_do_condition_token1] = ACTIONS(9156), + [aux_sym_with_statement_token1] = ACTIONS(9156), + [aux_sym_exit_statement_token1] = ACTIONS(9156), + [sym_end_statement] = ACTIONS(9158), + [aux_sym_on_goto_statement_token1] = ACTIONS(9156), + [aux_sym_on_goto_statement_token2] = ACTIONS(9156), + [aux_sym_on_error_statement_token2] = ACTIONS(9156), + [sym__ambiguous_redim_statement] = ACTIONS(9158), + [aux_sym_erase_statement_token1] = ACTIONS(9156), + [aux_sym_open_statement_token1] = ACTIONS(9156), + [aux_sym_file_mode_token2] = ACTIONS(9156), + [aux_sym_file_access_token2] = ACTIONS(9156), + [aux_sym_file_lock_token2] = ACTIONS(9156), + [aux_sym_print_statement_token1] = ACTIONS(9156), + [anon_sym_PLUS] = ACTIONS(9158), + [anon_sym_DASH] = ACTIONS(9156), + [anon_sym_QMARK] = ACTIONS(9158), + [aux_sym_close_statement_token1] = ACTIONS(9156), + [aux_sym_put_statement_token1] = ACTIONS(9156), + [aux_sym_unlock_statement_token1] = ACTIONS(9156), + [aux_sym_seek_statement_token1] = ACTIONS(9156), + [sym_reset_statement] = ACTIONS(9156), + [aux_sym_raise_event_statement_token1] = ACTIONS(9156), + [sym_stop_statement] = ACTIONS(9156), + [sym_beep_statement] = ACTIONS(9156), + [aux_sym_unload_statement_token1] = ACTIONS(9156), + [aux_sym_def_type_statement_token1] = ACTIONS(9156), + [aux_sym_def_type_statement_token2] = ACTIONS(9156), + [aux_sym_def_type_statement_token3] = ACTIONS(9156), + [aux_sym_def_type_statement_token4] = ACTIONS(9156), + [aux_sym_def_type_statement_token5] = ACTIONS(9156), + [aux_sym_def_type_statement_token6] = ACTIONS(9156), + [aux_sym_def_type_statement_token7] = ACTIONS(9156), + [aux_sym_def_type_statement_token8] = ACTIONS(9156), + [aux_sym_def_type_statement_token9] = ACTIONS(9156), + [aux_sym_def_type_statement_token10] = ACTIONS(9156), + [aux_sym_def_type_statement_token11] = ACTIONS(9156), + [aux_sym_def_type_statement_token12] = ACTIONS(9156), + [aux_sym_def_type_statement_token13] = ACTIONS(9156), + [aux_sym_def_type_statement_token14] = ACTIONS(9156), + [aux_sym_call_statement_token1] = ACTIONS(9156), + [sym__ambiguous_call_statement] = ACTIONS(9156), + [aux_sym_addressof_expression_token1] = ACTIONS(9156), + [aux_sym_type_of_expression_token1] = ACTIONS(9156), + [aux_sym_unary_expression_token1] = ACTIONS(9156), + [sym_string_literal] = ACTIONS(9158), + [sym_number_literal] = ACTIONS(9158), + [aux_sym_boolean_literal_token1] = ACTIONS(9156), + [aux_sym_boolean_literal_token2] = ACTIONS(9156), + [sym_nothing_literal] = ACTIONS(9156), + [sym_null_literal] = ACTIONS(9156), + [sym_empty_literal] = ACTIONS(9156), + [sym_date_literal] = ACTIONS(9158), + [anon_sym_POUND] = ACTIONS(9156), + }, + [STATE(7057)] = { + [sym_identifier] = ACTIONS(9510), + [sym_newline] = ACTIONS(9512), + [anon_sym_COLON] = ACTIONS(9512), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9510), + [aux_sym_frm_property_statement_token1] = ACTIONS(9510), + [anon_sym_DOT] = ACTIONS(9510), + [anon_sym_BANG] = ACTIONS(9512), + [aux_sym__attribute_identifier_token1] = ACTIONS(9510), + [aux_sym_option_statement_token3] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9510), + [aux_sym_preprocessor_const_token1] = ACTIONS(9510), + [sym_static_modifier] = ACTIONS(9510), + [sym__dim_keyword] = ACTIONS(9510), + [sym__redim_keyword] = ACTIONS(9510), + [aux_sym_get_accessor_token1] = ACTIONS(9510), + [aux_sym_set_accessor_token1] = ACTIONS(9510), + [aux_sym_const_declaration_token1] = ACTIONS(9510), + [anon_sym_LPAREN] = ACTIONS(9512), + [aux_sym_as_type_clause_token2] = ACTIONS(9510), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9510), + [aux_sym_visibility_token1] = ACTIONS(9510), + [aux_sym_visibility_token2] = ACTIONS(9510), + [aux_sym_elseif_fragment_token1] = ACTIONS(9510), + [aux_sym_else_fragment_token1] = ACTIONS(9510), + [aux_sym_select_statement_token1] = ACTIONS(9510), + [aux_sym__for_header_token1] = ACTIONS(9510), + [aux_sym_do_statement_token1] = ACTIONS(9510), + [aux_sym_do_condition_token1] = ACTIONS(9510), + [aux_sym_with_statement_token1] = ACTIONS(9510), + [aux_sym_exit_statement_token1] = ACTIONS(9510), + [sym_end_statement] = ACTIONS(9512), + [aux_sym_on_goto_statement_token1] = ACTIONS(9510), + [aux_sym_on_goto_statement_token2] = ACTIONS(9510), + [aux_sym_on_error_statement_token2] = ACTIONS(9510), + [sym__ambiguous_redim_statement] = ACTIONS(9512), + [aux_sym_erase_statement_token1] = ACTIONS(9510), + [aux_sym_open_statement_token1] = ACTIONS(9510), + [aux_sym_file_mode_token2] = ACTIONS(9510), + [aux_sym_file_access_token2] = ACTIONS(9510), + [aux_sym_file_lock_token2] = ACTIONS(9510), + [aux_sym_print_statement_token1] = ACTIONS(9510), + [anon_sym_PLUS] = ACTIONS(9512), + [anon_sym_DASH] = ACTIONS(9510), + [anon_sym_QMARK] = ACTIONS(9512), + [aux_sym_close_statement_token1] = ACTIONS(9510), + [aux_sym_put_statement_token1] = ACTIONS(9510), + [aux_sym_unlock_statement_token1] = ACTIONS(9510), + [aux_sym_seek_statement_token1] = ACTIONS(9510), + [sym_reset_statement] = ACTIONS(9510), + [aux_sym_raise_event_statement_token1] = ACTIONS(9510), + [sym_stop_statement] = ACTIONS(9510), + [sym_beep_statement] = ACTIONS(9510), + [aux_sym_unload_statement_token1] = ACTIONS(9510), + [aux_sym_def_type_statement_token1] = ACTIONS(9510), + [aux_sym_def_type_statement_token2] = ACTIONS(9510), + [aux_sym_def_type_statement_token3] = ACTIONS(9510), + [aux_sym_def_type_statement_token4] = ACTIONS(9510), + [aux_sym_def_type_statement_token5] = ACTIONS(9510), + [aux_sym_def_type_statement_token6] = ACTIONS(9510), + [aux_sym_def_type_statement_token7] = ACTIONS(9510), + [aux_sym_def_type_statement_token8] = ACTIONS(9510), + [aux_sym_def_type_statement_token9] = ACTIONS(9510), + [aux_sym_def_type_statement_token10] = ACTIONS(9510), + [aux_sym_def_type_statement_token11] = ACTIONS(9510), + [aux_sym_def_type_statement_token12] = ACTIONS(9510), + [aux_sym_def_type_statement_token13] = ACTIONS(9510), + [aux_sym_def_type_statement_token14] = ACTIONS(9510), + [aux_sym_call_statement_token1] = ACTIONS(9510), + [sym__ambiguous_call_statement] = ACTIONS(9510), + [aux_sym_addressof_expression_token1] = ACTIONS(9510), + [aux_sym_type_of_expression_token1] = ACTIONS(9510), + [aux_sym_unary_expression_token1] = ACTIONS(9510), + [sym_string_literal] = ACTIONS(9512), + [sym_number_literal] = ACTIONS(9512), + [aux_sym_boolean_literal_token1] = ACTIONS(9510), + [aux_sym_boolean_literal_token2] = ACTIONS(9510), + [sym_nothing_literal] = ACTIONS(9510), + [sym_null_literal] = ACTIONS(9510), + [sym_empty_literal] = ACTIONS(9510), + [sym_date_literal] = ACTIONS(9512), + [anon_sym_POUND] = ACTIONS(9510), + }, + [STATE(7058)] = { + [sym_identifier] = ACTIONS(9160), + [sym_newline] = ACTIONS(9162), + [anon_sym_COLON] = ACTIONS(9162), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9160), + [aux_sym_frm_property_statement_token1] = ACTIONS(9160), + [anon_sym_DOT] = ACTIONS(9160), + [anon_sym_BANG] = ACTIONS(9162), + [aux_sym__attribute_identifier_token1] = ACTIONS(9160), + [aux_sym_option_statement_token3] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9160), + [aux_sym_preprocessor_const_token1] = ACTIONS(9160), + [sym_static_modifier] = ACTIONS(9160), + [sym__dim_keyword] = ACTIONS(9160), + [sym__redim_keyword] = ACTIONS(9160), + [aux_sym_get_accessor_token1] = ACTIONS(9160), + [aux_sym_set_accessor_token1] = ACTIONS(9160), + [aux_sym_const_declaration_token1] = ACTIONS(9160), + [anon_sym_LPAREN] = ACTIONS(9162), + [aux_sym_as_type_clause_token2] = ACTIONS(9160), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9160), + [aux_sym_visibility_token1] = ACTIONS(9160), + [aux_sym_visibility_token2] = ACTIONS(9160), + [aux_sym_elseif_fragment_token1] = ACTIONS(9160), + [aux_sym_else_fragment_token1] = ACTIONS(9160), + [aux_sym_select_statement_token1] = ACTIONS(9160), + [aux_sym__for_header_token1] = ACTIONS(9160), + [aux_sym_do_statement_token1] = ACTIONS(9160), + [aux_sym_do_statement_token2] = ACTIONS(9160), + [aux_sym_do_condition_token1] = ACTIONS(9160), + [aux_sym_with_statement_token1] = ACTIONS(9160), + [aux_sym_exit_statement_token1] = ACTIONS(9160), + [sym_end_statement] = ACTIONS(9162), + [aux_sym_on_goto_statement_token1] = ACTIONS(9160), + [aux_sym_on_goto_statement_token2] = ACTIONS(9160), + [aux_sym_on_error_statement_token2] = ACTIONS(9160), + [sym__ambiguous_redim_statement] = ACTIONS(9162), + [aux_sym_erase_statement_token1] = ACTIONS(9160), + [aux_sym_open_statement_token1] = ACTIONS(9160), + [aux_sym_file_mode_token2] = ACTIONS(9160), + [aux_sym_file_access_token2] = ACTIONS(9160), + [aux_sym_file_lock_token2] = ACTIONS(9160), + [aux_sym_print_statement_token1] = ACTIONS(9160), + [anon_sym_PLUS] = ACTIONS(9162), + [anon_sym_DASH] = ACTIONS(9160), + [anon_sym_QMARK] = ACTIONS(9162), + [aux_sym_close_statement_token1] = ACTIONS(9160), + [aux_sym_put_statement_token1] = ACTIONS(9160), + [aux_sym_unlock_statement_token1] = ACTIONS(9160), + [aux_sym_seek_statement_token1] = ACTIONS(9160), + [sym_reset_statement] = ACTIONS(9160), + [aux_sym_raise_event_statement_token1] = ACTIONS(9160), + [sym_stop_statement] = ACTIONS(9160), + [sym_beep_statement] = ACTIONS(9160), + [aux_sym_unload_statement_token1] = ACTIONS(9160), + [aux_sym_def_type_statement_token1] = ACTIONS(9160), + [aux_sym_def_type_statement_token2] = ACTIONS(9160), + [aux_sym_def_type_statement_token3] = ACTIONS(9160), + [aux_sym_def_type_statement_token4] = ACTIONS(9160), + [aux_sym_def_type_statement_token5] = ACTIONS(9160), + [aux_sym_def_type_statement_token6] = ACTIONS(9160), + [aux_sym_def_type_statement_token7] = ACTIONS(9160), + [aux_sym_def_type_statement_token8] = ACTIONS(9160), + [aux_sym_def_type_statement_token9] = ACTIONS(9160), + [aux_sym_def_type_statement_token10] = ACTIONS(9160), + [aux_sym_def_type_statement_token11] = ACTIONS(9160), + [aux_sym_def_type_statement_token12] = ACTIONS(9160), + [aux_sym_def_type_statement_token13] = ACTIONS(9160), + [aux_sym_def_type_statement_token14] = ACTIONS(9160), + [aux_sym_call_statement_token1] = ACTIONS(9160), + [sym__ambiguous_call_statement] = ACTIONS(9160), + [aux_sym_addressof_expression_token1] = ACTIONS(9160), + [aux_sym_type_of_expression_token1] = ACTIONS(9160), + [aux_sym_unary_expression_token1] = ACTIONS(9160), + [sym_string_literal] = ACTIONS(9162), + [sym_number_literal] = ACTIONS(9162), + [aux_sym_boolean_literal_token1] = ACTIONS(9160), + [aux_sym_boolean_literal_token2] = ACTIONS(9160), + [sym_nothing_literal] = ACTIONS(9160), + [sym_null_literal] = ACTIONS(9160), + [sym_empty_literal] = ACTIONS(9160), + [sym_date_literal] = ACTIONS(9162), + [anon_sym_POUND] = ACTIONS(9160), + }, + [STATE(7059)] = { + [sym_identifier] = ACTIONS(8809), + [sym_newline] = ACTIONS(8811), + [anon_sym_COLON] = ACTIONS(8811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8809), + [aux_sym_frm_property_statement_token1] = ACTIONS(8809), + [anon_sym_DOT] = ACTIONS(8809), + [anon_sym_BANG] = ACTIONS(8811), + [aux_sym__attribute_identifier_token1] = ACTIONS(8809), + [aux_sym_option_statement_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8809), + [aux_sym_preprocessor_const_token1] = ACTIONS(8809), + [sym_static_modifier] = ACTIONS(8809), + [sym__dim_keyword] = ACTIONS(8809), + [sym__redim_keyword] = ACTIONS(8809), + [aux_sym_get_accessor_token1] = ACTIONS(8809), + [aux_sym_set_accessor_token1] = ACTIONS(8809), + [aux_sym_const_declaration_token1] = ACTIONS(8809), + [anon_sym_LPAREN] = ACTIONS(8811), + [aux_sym_as_type_clause_token2] = ACTIONS(8809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8809), + [aux_sym_visibility_token1] = ACTIONS(8809), + [aux_sym_visibility_token2] = ACTIONS(8809), + [aux_sym_elseif_fragment_token1] = ACTIONS(8809), + [aux_sym_else_fragment_token1] = ACTIONS(8809), + [aux_sym_select_statement_token1] = ACTIONS(8809), + [aux_sym__for_header_token1] = ACTIONS(8809), + [aux_sym_do_statement_token1] = ACTIONS(8809), + [aux_sym_do_statement_token2] = ACTIONS(8809), + [aux_sym_do_condition_token1] = ACTIONS(8809), + [aux_sym_with_statement_token1] = ACTIONS(8809), + [aux_sym_exit_statement_token1] = ACTIONS(8809), + [sym_end_statement] = ACTIONS(8811), + [aux_sym_on_goto_statement_token1] = ACTIONS(8809), + [aux_sym_on_goto_statement_token2] = ACTIONS(8809), + [aux_sym_on_error_statement_token2] = ACTIONS(8809), + [sym__ambiguous_redim_statement] = ACTIONS(8811), + [aux_sym_erase_statement_token1] = ACTIONS(8809), + [aux_sym_open_statement_token1] = ACTIONS(8809), + [aux_sym_file_mode_token2] = ACTIONS(8809), + [aux_sym_file_access_token2] = ACTIONS(8809), + [aux_sym_file_lock_token2] = ACTIONS(8809), + [aux_sym_print_statement_token1] = ACTIONS(8809), + [anon_sym_PLUS] = ACTIONS(8811), + [anon_sym_DASH] = ACTIONS(8809), + [anon_sym_QMARK] = ACTIONS(8811), + [aux_sym_close_statement_token1] = ACTIONS(8809), + [aux_sym_put_statement_token1] = ACTIONS(8809), + [aux_sym_unlock_statement_token1] = ACTIONS(8809), + [aux_sym_seek_statement_token1] = ACTIONS(8809), + [sym_reset_statement] = ACTIONS(8809), + [aux_sym_raise_event_statement_token1] = ACTIONS(8809), + [sym_stop_statement] = ACTIONS(8809), + [sym_beep_statement] = ACTIONS(8809), + [aux_sym_unload_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token2] = ACTIONS(8809), + [aux_sym_def_type_statement_token3] = ACTIONS(8809), + [aux_sym_def_type_statement_token4] = ACTIONS(8809), + [aux_sym_def_type_statement_token5] = ACTIONS(8809), + [aux_sym_def_type_statement_token6] = ACTIONS(8809), + [aux_sym_def_type_statement_token7] = ACTIONS(8809), + [aux_sym_def_type_statement_token8] = ACTIONS(8809), + [aux_sym_def_type_statement_token9] = ACTIONS(8809), + [aux_sym_def_type_statement_token10] = ACTIONS(8809), + [aux_sym_def_type_statement_token11] = ACTIONS(8809), + [aux_sym_def_type_statement_token12] = ACTIONS(8809), + [aux_sym_def_type_statement_token13] = ACTIONS(8809), + [aux_sym_def_type_statement_token14] = ACTIONS(8809), + [aux_sym_call_statement_token1] = ACTIONS(8809), + [sym__ambiguous_call_statement] = ACTIONS(8809), + [aux_sym_addressof_expression_token1] = ACTIONS(8809), + [aux_sym_type_of_expression_token1] = ACTIONS(8809), + [aux_sym_unary_expression_token1] = ACTIONS(8809), + [sym_string_literal] = ACTIONS(8811), + [sym_number_literal] = ACTIONS(8811), + [aux_sym_boolean_literal_token1] = ACTIONS(8809), + [aux_sym_boolean_literal_token2] = ACTIONS(8809), + [sym_nothing_literal] = ACTIONS(8809), + [sym_null_literal] = ACTIONS(8809), + [sym_empty_literal] = ACTIONS(8809), + [sym_date_literal] = ACTIONS(8811), + [anon_sym_POUND] = ACTIONS(8809), + }, + [STATE(7060)] = { + [sym_identifier] = ACTIONS(8877), + [sym_newline] = ACTIONS(8879), + [anon_sym_COLON] = ACTIONS(8879), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8877), + [aux_sym_frm_property_statement_token1] = ACTIONS(8877), + [anon_sym_DOT] = ACTIONS(8877), + [anon_sym_BANG] = ACTIONS(8879), + [aux_sym__attribute_identifier_token1] = ACTIONS(8877), + [aux_sym_option_statement_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8877), + [aux_sym_preprocessor_const_token1] = ACTIONS(8877), + [sym_static_modifier] = ACTIONS(8877), + [sym__dim_keyword] = ACTIONS(8877), + [sym__redim_keyword] = ACTIONS(8877), + [aux_sym_get_accessor_token1] = ACTIONS(8877), + [aux_sym_set_accessor_token1] = ACTIONS(8877), + [aux_sym_const_declaration_token1] = ACTIONS(8877), + [anon_sym_LPAREN] = ACTIONS(8879), + [aux_sym_as_type_clause_token2] = ACTIONS(8877), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8877), + [aux_sym_visibility_token1] = ACTIONS(8877), + [aux_sym_visibility_token2] = ACTIONS(8877), + [aux_sym_elseif_fragment_token1] = ACTIONS(8877), + [aux_sym_else_fragment_token1] = ACTIONS(8877), + [aux_sym_select_statement_token1] = ACTIONS(8877), + [aux_sym__for_header_token1] = ACTIONS(8877), + [aux_sym_do_statement_token1] = ACTIONS(8877), + [aux_sym_do_statement_token2] = ACTIONS(8877), + [aux_sym_do_condition_token1] = ACTIONS(8877), + [aux_sym_with_statement_token1] = ACTIONS(8877), + [aux_sym_exit_statement_token1] = ACTIONS(8877), + [sym_end_statement] = ACTIONS(8879), + [aux_sym_on_goto_statement_token1] = ACTIONS(8877), + [aux_sym_on_goto_statement_token2] = ACTIONS(8877), + [aux_sym_on_error_statement_token2] = ACTIONS(8877), + [sym__ambiguous_redim_statement] = ACTIONS(8879), + [aux_sym_erase_statement_token1] = ACTIONS(8877), + [aux_sym_open_statement_token1] = ACTIONS(8877), + [aux_sym_file_mode_token2] = ACTIONS(8877), + [aux_sym_file_access_token2] = ACTIONS(8877), + [aux_sym_file_lock_token2] = ACTIONS(8877), + [aux_sym_print_statement_token1] = ACTIONS(8877), + [anon_sym_PLUS] = ACTIONS(8879), + [anon_sym_DASH] = ACTIONS(8877), + [anon_sym_QMARK] = ACTIONS(8879), + [aux_sym_close_statement_token1] = ACTIONS(8877), + [aux_sym_put_statement_token1] = ACTIONS(8877), + [aux_sym_unlock_statement_token1] = ACTIONS(8877), + [aux_sym_seek_statement_token1] = ACTIONS(8877), + [sym_reset_statement] = ACTIONS(8877), + [aux_sym_raise_event_statement_token1] = ACTIONS(8877), + [sym_stop_statement] = ACTIONS(8877), + [sym_beep_statement] = ACTIONS(8877), + [aux_sym_unload_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token2] = ACTIONS(8877), + [aux_sym_def_type_statement_token3] = ACTIONS(8877), + [aux_sym_def_type_statement_token4] = ACTIONS(8877), + [aux_sym_def_type_statement_token5] = ACTIONS(8877), + [aux_sym_def_type_statement_token6] = ACTIONS(8877), + [aux_sym_def_type_statement_token7] = ACTIONS(8877), + [aux_sym_def_type_statement_token8] = ACTIONS(8877), + [aux_sym_def_type_statement_token9] = ACTIONS(8877), + [aux_sym_def_type_statement_token10] = ACTIONS(8877), + [aux_sym_def_type_statement_token11] = ACTIONS(8877), + [aux_sym_def_type_statement_token12] = ACTIONS(8877), + [aux_sym_def_type_statement_token13] = ACTIONS(8877), + [aux_sym_def_type_statement_token14] = ACTIONS(8877), + [aux_sym_call_statement_token1] = ACTIONS(8877), + [sym__ambiguous_call_statement] = ACTIONS(8877), + [aux_sym_addressof_expression_token1] = ACTIONS(8877), + [aux_sym_type_of_expression_token1] = ACTIONS(8877), + [aux_sym_unary_expression_token1] = ACTIONS(8877), + [sym_string_literal] = ACTIONS(8879), + [sym_number_literal] = ACTIONS(8879), + [aux_sym_boolean_literal_token1] = ACTIONS(8877), + [aux_sym_boolean_literal_token2] = ACTIONS(8877), + [sym_nothing_literal] = ACTIONS(8877), + [sym_null_literal] = ACTIONS(8877), + [sym_empty_literal] = ACTIONS(8877), + [sym_date_literal] = ACTIONS(8879), + [anon_sym_POUND] = ACTIONS(8877), + }, + [STATE(7061)] = { + [sym_identifier] = ACTIONS(9598), + [sym_newline] = ACTIONS(9600), + [anon_sym_COLON] = ACTIONS(9600), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9598), + [aux_sym_frm_property_statement_token1] = ACTIONS(9598), + [anon_sym_DOT] = ACTIONS(9598), + [anon_sym_BANG] = ACTIONS(9600), + [aux_sym__attribute_identifier_token1] = ACTIONS(9598), + [aux_sym_option_statement_token3] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9598), + [aux_sym_preprocessor_const_token1] = ACTIONS(9598), + [sym_static_modifier] = ACTIONS(9598), + [sym__dim_keyword] = ACTIONS(9598), + [sym__redim_keyword] = ACTIONS(9598), + [aux_sym_get_accessor_token1] = ACTIONS(9598), + [aux_sym_set_accessor_token1] = ACTIONS(9598), + [aux_sym_const_declaration_token1] = ACTIONS(9598), + [anon_sym_LPAREN] = ACTIONS(9600), + [aux_sym_as_type_clause_token2] = ACTIONS(9598), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9598), + [aux_sym_visibility_token1] = ACTIONS(9598), + [aux_sym_visibility_token2] = ACTIONS(9598), + [aux_sym_elseif_fragment_token1] = ACTIONS(9598), + [aux_sym_else_fragment_token1] = ACTIONS(9598), + [aux_sym_select_statement_token1] = ACTIONS(9598), + [aux_sym__for_header_token1] = ACTIONS(9598), + [aux_sym_do_statement_token1] = ACTIONS(9598), + [aux_sym_do_condition_token1] = ACTIONS(9598), + [aux_sym_while_statement_token1] = ACTIONS(9598), + [aux_sym_with_statement_token1] = ACTIONS(9598), + [aux_sym_exit_statement_token1] = ACTIONS(9598), + [sym_end_statement] = ACTIONS(9600), + [aux_sym_on_goto_statement_token1] = ACTIONS(9598), + [aux_sym_on_goto_statement_token2] = ACTIONS(9598), + [aux_sym_on_error_statement_token2] = ACTIONS(9598), + [sym__ambiguous_redim_statement] = ACTIONS(9600), + [aux_sym_erase_statement_token1] = ACTIONS(9598), + [aux_sym_open_statement_token1] = ACTIONS(9598), + [aux_sym_file_mode_token2] = ACTIONS(9598), + [aux_sym_file_access_token2] = ACTIONS(9598), + [aux_sym_file_lock_token2] = ACTIONS(9598), + [aux_sym_print_statement_token1] = ACTIONS(9598), + [anon_sym_PLUS] = ACTIONS(9600), + [anon_sym_DASH] = ACTIONS(9598), + [anon_sym_QMARK] = ACTIONS(9600), + [aux_sym_close_statement_token1] = ACTIONS(9598), + [aux_sym_put_statement_token1] = ACTIONS(9598), + [aux_sym_unlock_statement_token1] = ACTIONS(9598), + [aux_sym_seek_statement_token1] = ACTIONS(9598), + [sym_reset_statement] = ACTIONS(9598), + [aux_sym_raise_event_statement_token1] = ACTIONS(9598), + [sym_stop_statement] = ACTIONS(9598), + [sym_beep_statement] = ACTIONS(9598), + [aux_sym_unload_statement_token1] = ACTIONS(9598), + [aux_sym_def_type_statement_token1] = ACTIONS(9598), + [aux_sym_def_type_statement_token2] = ACTIONS(9598), + [aux_sym_def_type_statement_token3] = ACTIONS(9598), + [aux_sym_def_type_statement_token4] = ACTIONS(9598), + [aux_sym_def_type_statement_token5] = ACTIONS(9598), + [aux_sym_def_type_statement_token6] = ACTIONS(9598), + [aux_sym_def_type_statement_token7] = ACTIONS(9598), + [aux_sym_def_type_statement_token8] = ACTIONS(9598), + [aux_sym_def_type_statement_token9] = ACTIONS(9598), + [aux_sym_def_type_statement_token10] = ACTIONS(9598), + [aux_sym_def_type_statement_token11] = ACTIONS(9598), + [aux_sym_def_type_statement_token12] = ACTIONS(9598), + [aux_sym_def_type_statement_token13] = ACTIONS(9598), + [aux_sym_def_type_statement_token14] = ACTIONS(9598), + [aux_sym_call_statement_token1] = ACTIONS(9598), + [sym__ambiguous_call_statement] = ACTIONS(9598), + [aux_sym_addressof_expression_token1] = ACTIONS(9598), + [aux_sym_type_of_expression_token1] = ACTIONS(9598), + [aux_sym_unary_expression_token1] = ACTIONS(9598), + [sym_string_literal] = ACTIONS(9600), + [sym_number_literal] = ACTIONS(9600), + [aux_sym_boolean_literal_token1] = ACTIONS(9598), + [aux_sym_boolean_literal_token2] = ACTIONS(9598), + [sym_nothing_literal] = ACTIONS(9598), + [sym_null_literal] = ACTIONS(9598), + [sym_empty_literal] = ACTIONS(9598), + [sym_date_literal] = ACTIONS(9600), + [anon_sym_POUND] = ACTIONS(9598), + }, + [STATE(7062)] = { + [sym_identifier] = ACTIONS(9138), + [sym_newline] = ACTIONS(9140), + [anon_sym_COLON] = ACTIONS(9140), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9138), + [aux_sym_frm_property_statement_token1] = ACTIONS(9138), + [anon_sym_DOT] = ACTIONS(9138), + [anon_sym_BANG] = ACTIONS(9140), + [aux_sym__attribute_identifier_token1] = ACTIONS(9138), + [aux_sym_option_statement_token3] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9138), + [aux_sym_preprocessor_const_token1] = ACTIONS(9138), + [sym_static_modifier] = ACTIONS(9138), + [sym__dim_keyword] = ACTIONS(9138), + [sym__redim_keyword] = ACTIONS(9138), + [aux_sym_get_accessor_token1] = ACTIONS(9138), + [aux_sym_set_accessor_token1] = ACTIONS(9138), + [aux_sym_const_declaration_token1] = ACTIONS(9138), + [anon_sym_LPAREN] = ACTIONS(9140), + [aux_sym_as_type_clause_token2] = ACTIONS(9138), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9138), + [aux_sym_visibility_token1] = ACTIONS(9138), + [aux_sym_visibility_token2] = ACTIONS(9138), + [aux_sym_elseif_fragment_token1] = ACTIONS(9138), + [aux_sym_else_fragment_token1] = ACTIONS(9138), + [aux_sym_select_statement_token1] = ACTIONS(9138), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9138), + [aux_sym__for_header_token1] = ACTIONS(9138), + [aux_sym_do_statement_token1] = ACTIONS(9138), + [aux_sym_do_condition_token1] = ACTIONS(9138), + [aux_sym_with_statement_token1] = ACTIONS(9138), + [aux_sym_exit_statement_token1] = ACTIONS(9138), + [sym_end_statement] = ACTIONS(9140), + [aux_sym_on_goto_statement_token1] = ACTIONS(9138), + [aux_sym_on_goto_statement_token2] = ACTIONS(9138), + [aux_sym_on_error_statement_token2] = ACTIONS(9138), + [sym__ambiguous_redim_statement] = ACTIONS(9140), + [aux_sym_erase_statement_token1] = ACTIONS(9138), + [aux_sym_open_statement_token1] = ACTIONS(9138), + [aux_sym_file_mode_token2] = ACTIONS(9138), + [aux_sym_file_access_token2] = ACTIONS(9138), + [aux_sym_file_lock_token2] = ACTIONS(9138), + [aux_sym_print_statement_token1] = ACTIONS(9138), + [anon_sym_PLUS] = ACTIONS(9140), + [anon_sym_DASH] = ACTIONS(9138), + [anon_sym_QMARK] = ACTIONS(9140), + [aux_sym_close_statement_token1] = ACTIONS(9138), + [aux_sym_put_statement_token1] = ACTIONS(9138), + [aux_sym_unlock_statement_token1] = ACTIONS(9138), + [aux_sym_seek_statement_token1] = ACTIONS(9138), + [sym_reset_statement] = ACTIONS(9138), + [aux_sym_raise_event_statement_token1] = ACTIONS(9138), + [sym_stop_statement] = ACTIONS(9138), + [sym_beep_statement] = ACTIONS(9138), + [aux_sym_unload_statement_token1] = ACTIONS(9138), + [aux_sym_def_type_statement_token1] = ACTIONS(9138), + [aux_sym_def_type_statement_token2] = ACTIONS(9138), + [aux_sym_def_type_statement_token3] = ACTIONS(9138), + [aux_sym_def_type_statement_token4] = ACTIONS(9138), + [aux_sym_def_type_statement_token5] = ACTIONS(9138), + [aux_sym_def_type_statement_token6] = ACTIONS(9138), + [aux_sym_def_type_statement_token7] = ACTIONS(9138), + [aux_sym_def_type_statement_token8] = ACTIONS(9138), + [aux_sym_def_type_statement_token9] = ACTIONS(9138), + [aux_sym_def_type_statement_token10] = ACTIONS(9138), + [aux_sym_def_type_statement_token11] = ACTIONS(9138), + [aux_sym_def_type_statement_token12] = ACTIONS(9138), + [aux_sym_def_type_statement_token13] = ACTIONS(9138), + [aux_sym_def_type_statement_token14] = ACTIONS(9138), + [aux_sym_call_statement_token1] = ACTIONS(9138), + [sym__ambiguous_call_statement] = ACTIONS(9138), + [aux_sym_addressof_expression_token1] = ACTIONS(9138), + [aux_sym_type_of_expression_token1] = ACTIONS(9138), + [aux_sym_unary_expression_token1] = ACTIONS(9138), + [sym_string_literal] = ACTIONS(9140), + [sym_number_literal] = ACTIONS(9140), + [aux_sym_boolean_literal_token1] = ACTIONS(9138), + [aux_sym_boolean_literal_token2] = ACTIONS(9138), + [sym_nothing_literal] = ACTIONS(9138), + [sym_null_literal] = ACTIONS(9138), + [sym_empty_literal] = ACTIONS(9138), + [sym_date_literal] = ACTIONS(9140), + [anon_sym_POUND] = ACTIONS(9138), + }, + [STATE(7063)] = { + [sym_identifier] = ACTIONS(8813), + [sym_newline] = ACTIONS(8815), + [anon_sym_COLON] = ACTIONS(8815), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8813), + [aux_sym_frm_property_statement_token1] = ACTIONS(8813), + [anon_sym_DOT] = ACTIONS(8813), + [anon_sym_BANG] = ACTIONS(8815), + [aux_sym__attribute_identifier_token1] = ACTIONS(8813), + [aux_sym_option_statement_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8813), + [aux_sym_preprocessor_const_token1] = ACTIONS(8813), + [sym_static_modifier] = ACTIONS(8813), + [sym__dim_keyword] = ACTIONS(8813), + [sym__redim_keyword] = ACTIONS(8813), + [aux_sym_get_accessor_token1] = ACTIONS(8813), + [aux_sym_set_accessor_token1] = ACTIONS(8813), + [aux_sym_const_declaration_token1] = ACTIONS(8813), + [anon_sym_LPAREN] = ACTIONS(8815), + [aux_sym_as_type_clause_token2] = ACTIONS(8813), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8813), + [aux_sym_visibility_token1] = ACTIONS(8813), + [aux_sym_visibility_token2] = ACTIONS(8813), + [aux_sym_elseif_fragment_token1] = ACTIONS(8813), + [aux_sym_else_fragment_token1] = ACTIONS(8813), + [aux_sym_select_statement_token1] = ACTIONS(8813), + [aux_sym__for_header_token1] = ACTIONS(8813), + [aux_sym_do_statement_token1] = ACTIONS(8813), + [aux_sym_do_condition_token1] = ACTIONS(8813), + [aux_sym_while_statement_token1] = ACTIONS(8813), + [aux_sym_with_statement_token1] = ACTIONS(8813), + [aux_sym_exit_statement_token1] = ACTIONS(8813), + [sym_end_statement] = ACTIONS(8815), + [aux_sym_on_goto_statement_token1] = ACTIONS(8813), + [aux_sym_on_goto_statement_token2] = ACTIONS(8813), + [aux_sym_on_error_statement_token2] = ACTIONS(8813), + [sym__ambiguous_redim_statement] = ACTIONS(8815), + [aux_sym_erase_statement_token1] = ACTIONS(8813), + [aux_sym_open_statement_token1] = ACTIONS(8813), + [aux_sym_file_mode_token2] = ACTIONS(8813), + [aux_sym_file_access_token2] = ACTIONS(8813), + [aux_sym_file_lock_token2] = ACTIONS(8813), + [aux_sym_print_statement_token1] = ACTIONS(8813), + [anon_sym_PLUS] = ACTIONS(8815), + [anon_sym_DASH] = ACTIONS(8813), + [anon_sym_QMARK] = ACTIONS(8815), + [aux_sym_close_statement_token1] = ACTIONS(8813), + [aux_sym_put_statement_token1] = ACTIONS(8813), + [aux_sym_unlock_statement_token1] = ACTIONS(8813), + [aux_sym_seek_statement_token1] = ACTIONS(8813), + [sym_reset_statement] = ACTIONS(8813), + [aux_sym_raise_event_statement_token1] = ACTIONS(8813), + [sym_stop_statement] = ACTIONS(8813), + [sym_beep_statement] = ACTIONS(8813), + [aux_sym_unload_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token2] = ACTIONS(8813), + [aux_sym_def_type_statement_token3] = ACTIONS(8813), + [aux_sym_def_type_statement_token4] = ACTIONS(8813), + [aux_sym_def_type_statement_token5] = ACTIONS(8813), + [aux_sym_def_type_statement_token6] = ACTIONS(8813), + [aux_sym_def_type_statement_token7] = ACTIONS(8813), + [aux_sym_def_type_statement_token8] = ACTIONS(8813), + [aux_sym_def_type_statement_token9] = ACTIONS(8813), + [aux_sym_def_type_statement_token10] = ACTIONS(8813), + [aux_sym_def_type_statement_token11] = ACTIONS(8813), + [aux_sym_def_type_statement_token12] = ACTIONS(8813), + [aux_sym_def_type_statement_token13] = ACTIONS(8813), + [aux_sym_def_type_statement_token14] = ACTIONS(8813), + [aux_sym_call_statement_token1] = ACTIONS(8813), + [sym__ambiguous_call_statement] = ACTIONS(8813), + [aux_sym_addressof_expression_token1] = ACTIONS(8813), + [aux_sym_type_of_expression_token1] = ACTIONS(8813), + [aux_sym_unary_expression_token1] = ACTIONS(8813), + [sym_string_literal] = ACTIONS(8815), + [sym_number_literal] = ACTIONS(8815), + [aux_sym_boolean_literal_token1] = ACTIONS(8813), + [aux_sym_boolean_literal_token2] = ACTIONS(8813), + [sym_nothing_literal] = ACTIONS(8813), + [sym_null_literal] = ACTIONS(8813), + [sym_empty_literal] = ACTIONS(8813), + [sym_date_literal] = ACTIONS(8815), + [anon_sym_POUND] = ACTIONS(8813), + }, + [STATE(7064)] = { + [sym_identifier] = ACTIONS(9146), + [sym_newline] = ACTIONS(9148), + [anon_sym_COLON] = ACTIONS(9148), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9146), + [aux_sym_frm_property_statement_token1] = ACTIONS(9146), + [anon_sym_DOT] = ACTIONS(9146), + [anon_sym_BANG] = ACTIONS(9148), + [aux_sym__attribute_identifier_token1] = ACTIONS(9146), + [aux_sym_option_statement_token3] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9146), + [aux_sym_preprocessor_const_token1] = ACTIONS(9146), + [sym_static_modifier] = ACTIONS(9146), + [sym__dim_keyword] = ACTIONS(9146), + [sym__redim_keyword] = ACTIONS(9146), + [aux_sym_get_accessor_token1] = ACTIONS(9146), + [aux_sym_set_accessor_token1] = ACTIONS(9146), + [aux_sym_const_declaration_token1] = ACTIONS(9146), + [anon_sym_LPAREN] = ACTIONS(9148), + [aux_sym_as_type_clause_token2] = ACTIONS(9146), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9146), + [aux_sym_visibility_token1] = ACTIONS(9146), + [aux_sym_visibility_token2] = ACTIONS(9146), + [aux_sym_elseif_fragment_token1] = ACTIONS(9146), + [aux_sym_else_fragment_token1] = ACTIONS(9146), + [aux_sym_select_statement_token1] = ACTIONS(9146), + [aux_sym_select_statement_token2] = ACTIONS(9146), + [aux_sym__for_header_token1] = ACTIONS(9146), + [aux_sym_do_statement_token1] = ACTIONS(9146), + [aux_sym_do_condition_token1] = ACTIONS(9146), + [aux_sym_with_statement_token1] = ACTIONS(9146), + [aux_sym_exit_statement_token1] = ACTIONS(9146), + [sym_end_statement] = ACTIONS(9148), + [aux_sym_on_goto_statement_token1] = ACTIONS(9146), + [aux_sym_on_goto_statement_token2] = ACTIONS(9146), + [aux_sym_on_error_statement_token2] = ACTIONS(9146), + [sym__ambiguous_redim_statement] = ACTIONS(9148), + [aux_sym_erase_statement_token1] = ACTIONS(9146), + [aux_sym_open_statement_token1] = ACTIONS(9146), + [aux_sym_file_mode_token2] = ACTIONS(9146), + [aux_sym_file_access_token2] = ACTIONS(9146), + [aux_sym_file_lock_token2] = ACTIONS(9146), + [aux_sym_print_statement_token1] = ACTIONS(9146), + [anon_sym_PLUS] = ACTIONS(9148), + [anon_sym_DASH] = ACTIONS(9146), + [anon_sym_QMARK] = ACTIONS(9148), + [aux_sym_close_statement_token1] = ACTIONS(9146), + [aux_sym_put_statement_token1] = ACTIONS(9146), + [aux_sym_unlock_statement_token1] = ACTIONS(9146), + [aux_sym_seek_statement_token1] = ACTIONS(9146), + [sym_reset_statement] = ACTIONS(9146), + [aux_sym_raise_event_statement_token1] = ACTIONS(9146), + [sym_stop_statement] = ACTIONS(9146), + [sym_beep_statement] = ACTIONS(9146), + [aux_sym_unload_statement_token1] = ACTIONS(9146), + [aux_sym_def_type_statement_token1] = ACTIONS(9146), + [aux_sym_def_type_statement_token2] = ACTIONS(9146), + [aux_sym_def_type_statement_token3] = ACTIONS(9146), + [aux_sym_def_type_statement_token4] = ACTIONS(9146), + [aux_sym_def_type_statement_token5] = ACTIONS(9146), + [aux_sym_def_type_statement_token6] = ACTIONS(9146), + [aux_sym_def_type_statement_token7] = ACTIONS(9146), + [aux_sym_def_type_statement_token8] = ACTIONS(9146), + [aux_sym_def_type_statement_token9] = ACTIONS(9146), + [aux_sym_def_type_statement_token10] = ACTIONS(9146), + [aux_sym_def_type_statement_token11] = ACTIONS(9146), + [aux_sym_def_type_statement_token12] = ACTIONS(9146), + [aux_sym_def_type_statement_token13] = ACTIONS(9146), + [aux_sym_def_type_statement_token14] = ACTIONS(9146), + [aux_sym_call_statement_token1] = ACTIONS(9146), + [sym__ambiguous_call_statement] = ACTIONS(9146), + [aux_sym_addressof_expression_token1] = ACTIONS(9146), + [aux_sym_type_of_expression_token1] = ACTIONS(9146), + [aux_sym_unary_expression_token1] = ACTIONS(9146), + [sym_string_literal] = ACTIONS(9148), + [sym_number_literal] = ACTIONS(9148), + [aux_sym_boolean_literal_token1] = ACTIONS(9146), + [aux_sym_boolean_literal_token2] = ACTIONS(9146), + [sym_nothing_literal] = ACTIONS(9146), + [sym_null_literal] = ACTIONS(9146), + [sym_empty_literal] = ACTIONS(9146), + [sym_date_literal] = ACTIONS(9148), + [anon_sym_POUND] = ACTIONS(9146), + }, + [STATE(7065)] = { + [sym_identifier] = ACTIONS(9496), + [sym_newline] = ACTIONS(9498), + [anon_sym_COLON] = ACTIONS(9498), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9496), + [aux_sym_frm_property_statement_token1] = ACTIONS(9496), + [anon_sym_DOT] = ACTIONS(9496), + [anon_sym_BANG] = ACTIONS(9498), + [aux_sym__attribute_identifier_token1] = ACTIONS(9496), + [aux_sym_option_statement_token3] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9496), + [aux_sym_preprocessor_const_token1] = ACTIONS(9496), + [sym_static_modifier] = ACTIONS(9496), + [sym__dim_keyword] = ACTIONS(9496), + [sym__redim_keyword] = ACTIONS(9496), + [aux_sym_get_accessor_token1] = ACTIONS(9496), + [aux_sym_set_accessor_token1] = ACTIONS(9496), + [aux_sym_const_declaration_token1] = ACTIONS(9496), + [anon_sym_LPAREN] = ACTIONS(9498), + [aux_sym_as_type_clause_token2] = ACTIONS(9496), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9496), + [aux_sym_visibility_token1] = ACTIONS(9496), + [aux_sym_visibility_token2] = ACTIONS(9496), + [aux_sym_elseif_fragment_token1] = ACTIONS(9496), + [aux_sym_else_fragment_token1] = ACTIONS(9496), + [aux_sym_select_statement_token1] = ACTIONS(9496), + [aux_sym__for_header_token1] = ACTIONS(9496), + [aux_sym_do_statement_token1] = ACTIONS(9496), + [aux_sym_do_statement_token2] = ACTIONS(9496), + [aux_sym_do_condition_token1] = ACTIONS(9496), + [aux_sym_with_statement_token1] = ACTIONS(9496), + [aux_sym_exit_statement_token1] = ACTIONS(9496), + [sym_end_statement] = ACTIONS(9498), + [aux_sym_on_goto_statement_token1] = ACTIONS(9496), + [aux_sym_on_goto_statement_token2] = ACTIONS(9496), + [aux_sym_on_error_statement_token2] = ACTIONS(9496), + [sym__ambiguous_redim_statement] = ACTIONS(9498), + [aux_sym_erase_statement_token1] = ACTIONS(9496), + [aux_sym_open_statement_token1] = ACTIONS(9496), + [aux_sym_file_mode_token2] = ACTIONS(9496), + [aux_sym_file_access_token2] = ACTIONS(9496), + [aux_sym_file_lock_token2] = ACTIONS(9496), + [aux_sym_print_statement_token1] = ACTIONS(9496), + [anon_sym_PLUS] = ACTIONS(9498), + [anon_sym_DASH] = ACTIONS(9496), + [anon_sym_QMARK] = ACTIONS(9498), + [aux_sym_close_statement_token1] = ACTIONS(9496), + [aux_sym_put_statement_token1] = ACTIONS(9496), + [aux_sym_unlock_statement_token1] = ACTIONS(9496), + [aux_sym_seek_statement_token1] = ACTIONS(9496), + [sym_reset_statement] = ACTIONS(9496), + [aux_sym_raise_event_statement_token1] = ACTIONS(9496), + [sym_stop_statement] = ACTIONS(9496), + [sym_beep_statement] = ACTIONS(9496), + [aux_sym_unload_statement_token1] = ACTIONS(9496), + [aux_sym_def_type_statement_token1] = ACTIONS(9496), + [aux_sym_def_type_statement_token2] = ACTIONS(9496), + [aux_sym_def_type_statement_token3] = ACTIONS(9496), + [aux_sym_def_type_statement_token4] = ACTIONS(9496), + [aux_sym_def_type_statement_token5] = ACTIONS(9496), + [aux_sym_def_type_statement_token6] = ACTIONS(9496), + [aux_sym_def_type_statement_token7] = ACTIONS(9496), + [aux_sym_def_type_statement_token8] = ACTIONS(9496), + [aux_sym_def_type_statement_token9] = ACTIONS(9496), + [aux_sym_def_type_statement_token10] = ACTIONS(9496), + [aux_sym_def_type_statement_token11] = ACTIONS(9496), + [aux_sym_def_type_statement_token12] = ACTIONS(9496), + [aux_sym_def_type_statement_token13] = ACTIONS(9496), + [aux_sym_def_type_statement_token14] = ACTIONS(9496), + [aux_sym_call_statement_token1] = ACTIONS(9496), + [sym__ambiguous_call_statement] = ACTIONS(9496), + [aux_sym_addressof_expression_token1] = ACTIONS(9496), + [aux_sym_type_of_expression_token1] = ACTIONS(9496), + [aux_sym_unary_expression_token1] = ACTIONS(9496), + [sym_string_literal] = ACTIONS(9498), + [sym_number_literal] = ACTIONS(9498), + [aux_sym_boolean_literal_token1] = ACTIONS(9496), + [aux_sym_boolean_literal_token2] = ACTIONS(9496), + [sym_nothing_literal] = ACTIONS(9496), + [sym_null_literal] = ACTIONS(9496), + [sym_empty_literal] = ACTIONS(9496), + [sym_date_literal] = ACTIONS(9498), + [anon_sym_POUND] = ACTIONS(9496), + }, + [STATE(7066)] = { + [sym_identifier] = ACTIONS(8907), + [sym_newline] = ACTIONS(8909), + [anon_sym_COLON] = ACTIONS(8909), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8907), + [aux_sym_frm_property_statement_token1] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8907), + [anon_sym_BANG] = ACTIONS(8909), + [aux_sym__attribute_identifier_token1] = ACTIONS(8907), + [aux_sym_option_statement_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8907), + [aux_sym_preprocessor_const_token1] = ACTIONS(8907), + [sym_static_modifier] = ACTIONS(8907), + [sym__dim_keyword] = ACTIONS(8907), + [sym__redim_keyword] = ACTIONS(8907), + [aux_sym_get_accessor_token1] = ACTIONS(8907), + [aux_sym_set_accessor_token1] = ACTIONS(8907), + [aux_sym_const_declaration_token1] = ACTIONS(8907), + [anon_sym_LPAREN] = ACTIONS(8909), + [aux_sym_as_type_clause_token2] = ACTIONS(8907), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8907), + [aux_sym_visibility_token1] = ACTIONS(8907), + [aux_sym_visibility_token2] = ACTIONS(8907), + [aux_sym_elseif_fragment_token1] = ACTIONS(8907), + [aux_sym_else_fragment_token1] = ACTIONS(8907), + [aux_sym_select_statement_token1] = ACTIONS(8907), + [aux_sym__for_header_token1] = ACTIONS(8907), + [aux_sym_do_statement_token1] = ACTIONS(8907), + [aux_sym_do_statement_token2] = ACTIONS(8907), + [aux_sym_do_condition_token1] = ACTIONS(8907), + [aux_sym_with_statement_token1] = ACTIONS(8907), + [aux_sym_exit_statement_token1] = ACTIONS(8907), + [sym_end_statement] = ACTIONS(8909), + [aux_sym_on_goto_statement_token1] = ACTIONS(8907), + [aux_sym_on_goto_statement_token2] = ACTIONS(8907), + [aux_sym_on_error_statement_token2] = ACTIONS(8907), + [sym__ambiguous_redim_statement] = ACTIONS(8909), + [aux_sym_erase_statement_token1] = ACTIONS(8907), + [aux_sym_open_statement_token1] = ACTIONS(8907), + [aux_sym_file_mode_token2] = ACTIONS(8907), + [aux_sym_file_access_token2] = ACTIONS(8907), + [aux_sym_file_lock_token2] = ACTIONS(8907), + [aux_sym_print_statement_token1] = ACTIONS(8907), + [anon_sym_PLUS] = ACTIONS(8909), + [anon_sym_DASH] = ACTIONS(8907), + [anon_sym_QMARK] = ACTIONS(8909), + [aux_sym_close_statement_token1] = ACTIONS(8907), + [aux_sym_put_statement_token1] = ACTIONS(8907), + [aux_sym_unlock_statement_token1] = ACTIONS(8907), + [aux_sym_seek_statement_token1] = ACTIONS(8907), + [sym_reset_statement] = ACTIONS(8907), + [aux_sym_raise_event_statement_token1] = ACTIONS(8907), + [sym_stop_statement] = ACTIONS(8907), + [sym_beep_statement] = ACTIONS(8907), + [aux_sym_unload_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token2] = ACTIONS(8907), + [aux_sym_def_type_statement_token3] = ACTIONS(8907), + [aux_sym_def_type_statement_token4] = ACTIONS(8907), + [aux_sym_def_type_statement_token5] = ACTIONS(8907), + [aux_sym_def_type_statement_token6] = ACTIONS(8907), + [aux_sym_def_type_statement_token7] = ACTIONS(8907), + [aux_sym_def_type_statement_token8] = ACTIONS(8907), + [aux_sym_def_type_statement_token9] = ACTIONS(8907), + [aux_sym_def_type_statement_token10] = ACTIONS(8907), + [aux_sym_def_type_statement_token11] = ACTIONS(8907), + [aux_sym_def_type_statement_token12] = ACTIONS(8907), + [aux_sym_def_type_statement_token13] = ACTIONS(8907), + [aux_sym_def_type_statement_token14] = ACTIONS(8907), + [aux_sym_call_statement_token1] = ACTIONS(8907), + [sym__ambiguous_call_statement] = ACTIONS(8907), + [aux_sym_addressof_expression_token1] = ACTIONS(8907), + [aux_sym_type_of_expression_token1] = ACTIONS(8907), + [aux_sym_unary_expression_token1] = ACTIONS(8907), + [sym_string_literal] = ACTIONS(8909), + [sym_number_literal] = ACTIONS(8909), + [aux_sym_boolean_literal_token1] = ACTIONS(8907), + [aux_sym_boolean_literal_token2] = ACTIONS(8907), + [sym_nothing_literal] = ACTIONS(8907), + [sym_null_literal] = ACTIONS(8907), + [sym_empty_literal] = ACTIONS(8907), + [sym_date_literal] = ACTIONS(8909), + [anon_sym_POUND] = ACTIONS(8907), + }, + [STATE(7067)] = { + [sym_identifier] = ACTIONS(8312), + [sym_newline] = ACTIONS(8314), + [anon_sym_COLON] = ACTIONS(8314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8312), + [aux_sym_frm_property_statement_token1] = ACTIONS(8312), + [anon_sym_DOT] = ACTIONS(8312), + [anon_sym_BANG] = ACTIONS(8314), + [aux_sym__attribute_identifier_token1] = ACTIONS(8312), + [aux_sym_option_statement_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8312), + [aux_sym_preprocessor_const_token1] = ACTIONS(8312), + [sym_static_modifier] = ACTIONS(8312), + [sym__dim_keyword] = ACTIONS(8312), + [sym__redim_keyword] = ACTIONS(8312), + [aux_sym_get_accessor_token1] = ACTIONS(8312), + [aux_sym_set_accessor_token1] = ACTIONS(8312), + [aux_sym_const_declaration_token1] = ACTIONS(8312), + [anon_sym_LPAREN] = ACTIONS(8314), + [aux_sym_as_type_clause_token2] = ACTIONS(8312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8312), + [aux_sym_visibility_token1] = ACTIONS(8312), + [aux_sym_visibility_token2] = ACTIONS(8312), + [aux_sym_elseif_fragment_token1] = ACTIONS(8312), + [aux_sym_else_fragment_token1] = ACTIONS(8312), + [aux_sym_select_statement_token1] = ACTIONS(8312), + [aux_sym__for_header_token1] = ACTIONS(8312), + [aux_sym_do_statement_token1] = ACTIONS(8312), + [aux_sym_do_condition_token1] = ACTIONS(8312), + [aux_sym_with_statement_token1] = ACTIONS(8312), + [aux_sym_exit_statement_token1] = ACTIONS(8312), + [sym_end_statement] = ACTIONS(8314), + [aux_sym_on_goto_statement_token1] = ACTIONS(8312), + [aux_sym_on_goto_statement_token2] = ACTIONS(8312), + [aux_sym_on_error_statement_token2] = ACTIONS(8312), + [sym__ambiguous_redim_statement] = ACTIONS(8314), + [aux_sym_erase_statement_token1] = ACTIONS(8312), + [aux_sym_open_statement_token1] = ACTIONS(8312), + [aux_sym_file_mode_token2] = ACTIONS(8312), + [aux_sym_file_access_token2] = ACTIONS(8312), + [aux_sym_file_lock_token2] = ACTIONS(8312), + [aux_sym_print_statement_token1] = ACTIONS(8312), + [anon_sym_PLUS] = ACTIONS(8314), + [anon_sym_DASH] = ACTIONS(8312), + [anon_sym_QMARK] = ACTIONS(8314), + [aux_sym_close_statement_token1] = ACTIONS(8312), + [aux_sym_put_statement_token1] = ACTIONS(8312), + [aux_sym_unlock_statement_token1] = ACTIONS(8312), + [aux_sym_seek_statement_token1] = ACTIONS(8312), + [sym_reset_statement] = ACTIONS(8312), + [aux_sym_raise_event_statement_token1] = ACTIONS(8312), + [sym_stop_statement] = ACTIONS(8312), + [sym_beep_statement] = ACTIONS(8312), + [aux_sym_unload_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token2] = ACTIONS(8312), + [aux_sym_def_type_statement_token3] = ACTIONS(8312), + [aux_sym_def_type_statement_token4] = ACTIONS(8312), + [aux_sym_def_type_statement_token5] = ACTIONS(8312), + [aux_sym_def_type_statement_token6] = ACTIONS(8312), + [aux_sym_def_type_statement_token7] = ACTIONS(8312), + [aux_sym_def_type_statement_token8] = ACTIONS(8312), + [aux_sym_def_type_statement_token9] = ACTIONS(8312), + [aux_sym_def_type_statement_token10] = ACTIONS(8312), + [aux_sym_def_type_statement_token11] = ACTIONS(8312), + [aux_sym_def_type_statement_token12] = ACTIONS(8312), + [aux_sym_def_type_statement_token13] = ACTIONS(8312), + [aux_sym_def_type_statement_token14] = ACTIONS(8312), + [aux_sym_call_statement_token1] = ACTIONS(8312), + [sym__ambiguous_call_statement] = ACTIONS(8312), + [aux_sym_addressof_expression_token1] = ACTIONS(8312), + [aux_sym_type_of_expression_token1] = ACTIONS(8312), + [aux_sym_unary_expression_token1] = ACTIONS(8312), + [sym_string_literal] = ACTIONS(8314), + [sym_number_literal] = ACTIONS(8314), + [aux_sym_boolean_literal_token1] = ACTIONS(8312), + [aux_sym_boolean_literal_token2] = ACTIONS(8312), + [sym_nothing_literal] = ACTIONS(8312), + [sym_null_literal] = ACTIONS(8312), + [sym_empty_literal] = ACTIONS(8312), + [sym_date_literal] = ACTIONS(8314), + [anon_sym_POUND] = ACTIONS(8312), + }, + [STATE(7068)] = { + [sym_identifier] = ACTIONS(9156), + [sym_newline] = ACTIONS(9158), + [anon_sym_COLON] = ACTIONS(9158), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9156), + [aux_sym_frm_property_statement_token1] = ACTIONS(9156), + [anon_sym_DOT] = ACTIONS(9156), + [anon_sym_BANG] = ACTIONS(9158), + [aux_sym__attribute_identifier_token1] = ACTIONS(9156), + [aux_sym_option_statement_token3] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9156), + [aux_sym_preprocessor_const_token1] = ACTIONS(9156), + [sym_static_modifier] = ACTIONS(9156), + [sym__dim_keyword] = ACTIONS(9156), + [sym__redim_keyword] = ACTIONS(9156), + [aux_sym_get_accessor_token1] = ACTIONS(9156), + [aux_sym_set_accessor_token1] = ACTIONS(9156), + [aux_sym_const_declaration_token1] = ACTIONS(9156), + [anon_sym_LPAREN] = ACTIONS(9158), + [aux_sym_as_type_clause_token2] = ACTIONS(9156), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9156), + [aux_sym_visibility_token1] = ACTIONS(9156), + [aux_sym_visibility_token2] = ACTIONS(9156), + [aux_sym_elseif_fragment_token1] = ACTIONS(9156), + [aux_sym_else_fragment_token1] = ACTIONS(9156), + [aux_sym_select_statement_token1] = ACTIONS(9156), + [aux_sym__for_header_token1] = ACTIONS(9156), + [aux_sym_do_statement_token1] = ACTIONS(9156), + [aux_sym_do_condition_token1] = ACTIONS(9156), + [aux_sym_with_statement_token1] = ACTIONS(9156), + [aux_sym_exit_statement_token1] = ACTIONS(9156), + [sym_end_statement] = ACTIONS(9158), + [aux_sym_on_goto_statement_token1] = ACTIONS(9156), + [aux_sym_on_goto_statement_token2] = ACTIONS(9156), + [aux_sym_on_error_statement_token2] = ACTIONS(9156), + [sym__ambiguous_redim_statement] = ACTIONS(9158), + [aux_sym_erase_statement_token1] = ACTIONS(9156), + [aux_sym_open_statement_token1] = ACTIONS(9156), + [aux_sym_file_mode_token2] = ACTIONS(9156), + [aux_sym_file_access_token2] = ACTIONS(9156), + [aux_sym_file_lock_token2] = ACTIONS(9156), + [aux_sym_print_statement_token1] = ACTIONS(9156), + [anon_sym_PLUS] = ACTIONS(9158), + [anon_sym_DASH] = ACTIONS(9156), + [anon_sym_QMARK] = ACTIONS(9158), + [aux_sym_close_statement_token1] = ACTIONS(9156), + [aux_sym_put_statement_token1] = ACTIONS(9156), + [aux_sym_unlock_statement_token1] = ACTIONS(9156), + [aux_sym_seek_statement_token1] = ACTIONS(9156), + [sym_reset_statement] = ACTIONS(9156), + [aux_sym_raise_event_statement_token1] = ACTIONS(9156), + [sym_stop_statement] = ACTIONS(9156), + [sym_beep_statement] = ACTIONS(9156), + [aux_sym_unload_statement_token1] = ACTIONS(9156), + [aux_sym_def_type_statement_token1] = ACTIONS(9156), + [aux_sym_def_type_statement_token2] = ACTIONS(9156), + [aux_sym_def_type_statement_token3] = ACTIONS(9156), + [aux_sym_def_type_statement_token4] = ACTIONS(9156), + [aux_sym_def_type_statement_token5] = ACTIONS(9156), + [aux_sym_def_type_statement_token6] = ACTIONS(9156), + [aux_sym_def_type_statement_token7] = ACTIONS(9156), + [aux_sym_def_type_statement_token8] = ACTIONS(9156), + [aux_sym_def_type_statement_token9] = ACTIONS(9156), + [aux_sym_def_type_statement_token10] = ACTIONS(9156), + [aux_sym_def_type_statement_token11] = ACTIONS(9156), + [aux_sym_def_type_statement_token12] = ACTIONS(9156), + [aux_sym_def_type_statement_token13] = ACTIONS(9156), + [aux_sym_def_type_statement_token14] = ACTIONS(9156), + [aux_sym_call_statement_token1] = ACTIONS(9156), + [sym__ambiguous_call_statement] = ACTIONS(9156), + [aux_sym_addressof_expression_token1] = ACTIONS(9156), + [aux_sym_type_of_expression_token1] = ACTIONS(9156), + [aux_sym_unary_expression_token1] = ACTIONS(9156), + [sym_string_literal] = ACTIONS(9158), + [sym_number_literal] = ACTIONS(9158), + [aux_sym_boolean_literal_token1] = ACTIONS(9156), + [aux_sym_boolean_literal_token2] = ACTIONS(9156), + [sym_nothing_literal] = ACTIONS(9156), + [sym_null_literal] = ACTIONS(9156), + [sym_empty_literal] = ACTIONS(9156), + [sym_date_literal] = ACTIONS(9158), + [anon_sym_POUND] = ACTIONS(9156), + }, + [STATE(7069)] = { + [sym_identifier] = ACTIONS(9160), + [sym_newline] = ACTIONS(9162), + [anon_sym_COLON] = ACTIONS(9162), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9160), + [aux_sym_frm_property_statement_token1] = ACTIONS(9160), + [anon_sym_DOT] = ACTIONS(9160), + [anon_sym_BANG] = ACTIONS(9162), + [aux_sym__attribute_identifier_token1] = ACTIONS(9160), + [aux_sym_option_statement_token3] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9160), + [aux_sym_preprocessor_const_token1] = ACTIONS(9160), + [sym_static_modifier] = ACTIONS(9160), + [sym__dim_keyword] = ACTIONS(9160), + [sym__redim_keyword] = ACTIONS(9160), + [aux_sym_get_accessor_token1] = ACTIONS(9160), + [aux_sym_set_accessor_token1] = ACTIONS(9160), + [aux_sym_const_declaration_token1] = ACTIONS(9160), + [anon_sym_LPAREN] = ACTIONS(9162), + [aux_sym_as_type_clause_token2] = ACTIONS(9160), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9160), + [aux_sym_visibility_token1] = ACTIONS(9160), + [aux_sym_visibility_token2] = ACTIONS(9160), + [aux_sym_elseif_fragment_token1] = ACTIONS(9160), + [aux_sym_else_fragment_token1] = ACTIONS(9160), + [aux_sym_select_statement_token1] = ACTIONS(9160), + [aux_sym__for_header_token1] = ACTIONS(9160), + [aux_sym_do_statement_token1] = ACTIONS(9160), + [aux_sym_do_condition_token1] = ACTIONS(9160), + [aux_sym_with_statement_token1] = ACTIONS(9160), + [aux_sym_exit_statement_token1] = ACTIONS(9160), + [sym_end_statement] = ACTIONS(9162), + [aux_sym_on_goto_statement_token1] = ACTIONS(9160), + [aux_sym_on_goto_statement_token2] = ACTIONS(9160), + [aux_sym_on_error_statement_token2] = ACTIONS(9160), + [sym__ambiguous_redim_statement] = ACTIONS(9162), + [aux_sym_erase_statement_token1] = ACTIONS(9160), + [aux_sym_open_statement_token1] = ACTIONS(9160), + [aux_sym_file_mode_token2] = ACTIONS(9160), + [aux_sym_file_access_token2] = ACTIONS(9160), + [aux_sym_file_lock_token2] = ACTIONS(9160), + [aux_sym_print_statement_token1] = ACTIONS(9160), + [anon_sym_PLUS] = ACTIONS(9162), + [anon_sym_DASH] = ACTIONS(9160), + [anon_sym_QMARK] = ACTIONS(9162), + [aux_sym_close_statement_token1] = ACTIONS(9160), + [aux_sym_put_statement_token1] = ACTIONS(9160), + [aux_sym_unlock_statement_token1] = ACTIONS(9160), + [aux_sym_seek_statement_token1] = ACTIONS(9160), + [sym_reset_statement] = ACTIONS(9160), + [aux_sym_raise_event_statement_token1] = ACTIONS(9160), + [sym_stop_statement] = ACTIONS(9160), + [sym_beep_statement] = ACTIONS(9160), + [aux_sym_unload_statement_token1] = ACTIONS(9160), + [aux_sym_def_type_statement_token1] = ACTIONS(9160), + [aux_sym_def_type_statement_token2] = ACTIONS(9160), + [aux_sym_def_type_statement_token3] = ACTIONS(9160), + [aux_sym_def_type_statement_token4] = ACTIONS(9160), + [aux_sym_def_type_statement_token5] = ACTIONS(9160), + [aux_sym_def_type_statement_token6] = ACTIONS(9160), + [aux_sym_def_type_statement_token7] = ACTIONS(9160), + [aux_sym_def_type_statement_token8] = ACTIONS(9160), + [aux_sym_def_type_statement_token9] = ACTIONS(9160), + [aux_sym_def_type_statement_token10] = ACTIONS(9160), + [aux_sym_def_type_statement_token11] = ACTIONS(9160), + [aux_sym_def_type_statement_token12] = ACTIONS(9160), + [aux_sym_def_type_statement_token13] = ACTIONS(9160), + [aux_sym_def_type_statement_token14] = ACTIONS(9160), + [aux_sym_call_statement_token1] = ACTIONS(9160), + [sym__ambiguous_call_statement] = ACTIONS(9160), + [aux_sym_addressof_expression_token1] = ACTIONS(9160), + [aux_sym_type_of_expression_token1] = ACTIONS(9160), + [aux_sym_unary_expression_token1] = ACTIONS(9160), + [sym_string_literal] = ACTIONS(9162), + [sym_number_literal] = ACTIONS(9162), + [aux_sym_boolean_literal_token1] = ACTIONS(9160), + [aux_sym_boolean_literal_token2] = ACTIONS(9160), + [sym_nothing_literal] = ACTIONS(9160), + [sym_null_literal] = ACTIONS(9160), + [sym_empty_literal] = ACTIONS(9160), + [sym_date_literal] = ACTIONS(9162), + [anon_sym_POUND] = ACTIONS(9160), + }, + [STATE(7070)] = { + [sym_identifier] = ACTIONS(8927), + [sym_newline] = ACTIONS(8929), + [anon_sym_COLON] = ACTIONS(8929), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8927), + [aux_sym_frm_property_statement_token1] = ACTIONS(8927), + [anon_sym_DOT] = ACTIONS(8927), + [anon_sym_BANG] = ACTIONS(8929), + [aux_sym__attribute_identifier_token1] = ACTIONS(8927), + [aux_sym_option_statement_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8927), + [aux_sym_preprocessor_const_token1] = ACTIONS(8927), + [sym_static_modifier] = ACTIONS(8927), + [sym__dim_keyword] = ACTIONS(8927), + [sym__redim_keyword] = ACTIONS(8927), + [aux_sym_get_accessor_token1] = ACTIONS(8927), + [aux_sym_set_accessor_token1] = ACTIONS(8927), + [aux_sym_const_declaration_token1] = ACTIONS(8927), + [anon_sym_LPAREN] = ACTIONS(8929), + [aux_sym_as_type_clause_token2] = ACTIONS(8927), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8927), + [aux_sym_visibility_token1] = ACTIONS(8927), + [aux_sym_visibility_token2] = ACTIONS(8927), + [aux_sym_elseif_fragment_token1] = ACTIONS(8927), + [aux_sym_else_fragment_token1] = ACTIONS(8927), + [aux_sym_select_statement_token1] = ACTIONS(8927), + [aux_sym__for_header_token1] = ACTIONS(8927), + [aux_sym_do_statement_token1] = ACTIONS(8927), + [aux_sym_do_statement_token2] = ACTIONS(8927), + [aux_sym_do_condition_token1] = ACTIONS(8927), + [aux_sym_with_statement_token1] = ACTIONS(8927), + [aux_sym_exit_statement_token1] = ACTIONS(8927), + [sym_end_statement] = ACTIONS(8929), + [aux_sym_on_goto_statement_token1] = ACTIONS(8927), + [aux_sym_on_goto_statement_token2] = ACTIONS(8927), + [aux_sym_on_error_statement_token2] = ACTIONS(8927), + [sym__ambiguous_redim_statement] = ACTIONS(8929), + [aux_sym_erase_statement_token1] = ACTIONS(8927), + [aux_sym_open_statement_token1] = ACTIONS(8927), + [aux_sym_file_mode_token2] = ACTIONS(8927), + [aux_sym_file_access_token2] = ACTIONS(8927), + [aux_sym_file_lock_token2] = ACTIONS(8927), + [aux_sym_print_statement_token1] = ACTIONS(8927), + [anon_sym_PLUS] = ACTIONS(8929), + [anon_sym_DASH] = ACTIONS(8927), + [anon_sym_QMARK] = ACTIONS(8929), + [aux_sym_close_statement_token1] = ACTIONS(8927), + [aux_sym_put_statement_token1] = ACTIONS(8927), + [aux_sym_unlock_statement_token1] = ACTIONS(8927), + [aux_sym_seek_statement_token1] = ACTIONS(8927), + [sym_reset_statement] = ACTIONS(8927), + [aux_sym_raise_event_statement_token1] = ACTIONS(8927), + [sym_stop_statement] = ACTIONS(8927), + [sym_beep_statement] = ACTIONS(8927), + [aux_sym_unload_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token2] = ACTIONS(8927), + [aux_sym_def_type_statement_token3] = ACTIONS(8927), + [aux_sym_def_type_statement_token4] = ACTIONS(8927), + [aux_sym_def_type_statement_token5] = ACTIONS(8927), + [aux_sym_def_type_statement_token6] = ACTIONS(8927), + [aux_sym_def_type_statement_token7] = ACTIONS(8927), + [aux_sym_def_type_statement_token8] = ACTIONS(8927), + [aux_sym_def_type_statement_token9] = ACTIONS(8927), + [aux_sym_def_type_statement_token10] = ACTIONS(8927), + [aux_sym_def_type_statement_token11] = ACTIONS(8927), + [aux_sym_def_type_statement_token12] = ACTIONS(8927), + [aux_sym_def_type_statement_token13] = ACTIONS(8927), + [aux_sym_def_type_statement_token14] = ACTIONS(8927), + [aux_sym_call_statement_token1] = ACTIONS(8927), + [sym__ambiguous_call_statement] = ACTIONS(8927), + [aux_sym_addressof_expression_token1] = ACTIONS(8927), + [aux_sym_type_of_expression_token1] = ACTIONS(8927), + [aux_sym_unary_expression_token1] = ACTIONS(8927), + [sym_string_literal] = ACTIONS(8929), + [sym_number_literal] = ACTIONS(8929), + [aux_sym_boolean_literal_token1] = ACTIONS(8927), + [aux_sym_boolean_literal_token2] = ACTIONS(8927), + [sym_nothing_literal] = ACTIONS(8927), + [sym_null_literal] = ACTIONS(8927), + [sym_empty_literal] = ACTIONS(8927), + [sym_date_literal] = ACTIONS(8929), + [anon_sym_POUND] = ACTIONS(8927), + }, + [STATE(7071)] = { + [sym_identifier] = ACTIONS(8931), + [sym_newline] = ACTIONS(8933), + [anon_sym_COLON] = ACTIONS(8933), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8931), + [aux_sym_frm_property_statement_token1] = ACTIONS(8931), + [anon_sym_DOT] = ACTIONS(8931), + [anon_sym_BANG] = ACTIONS(8933), + [aux_sym__attribute_identifier_token1] = ACTIONS(8931), + [aux_sym_option_statement_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8931), + [aux_sym_preprocessor_const_token1] = ACTIONS(8931), + [sym_static_modifier] = ACTIONS(8931), + [sym__dim_keyword] = ACTIONS(8931), + [sym__redim_keyword] = ACTIONS(8931), + [aux_sym_get_accessor_token1] = ACTIONS(8931), + [aux_sym_set_accessor_token1] = ACTIONS(8931), + [aux_sym_const_declaration_token1] = ACTIONS(8931), + [anon_sym_LPAREN] = ACTIONS(8933), + [aux_sym_as_type_clause_token2] = ACTIONS(8931), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8931), + [aux_sym_visibility_token1] = ACTIONS(8931), + [aux_sym_visibility_token2] = ACTIONS(8931), + [aux_sym_elseif_fragment_token1] = ACTIONS(8931), + [aux_sym_else_fragment_token1] = ACTIONS(8931), + [aux_sym_select_statement_token1] = ACTIONS(8931), + [aux_sym__for_header_token1] = ACTIONS(8931), + [aux_sym_do_statement_token1] = ACTIONS(8931), + [aux_sym_do_statement_token2] = ACTIONS(8931), + [aux_sym_do_condition_token1] = ACTIONS(8931), + [aux_sym_with_statement_token1] = ACTIONS(8931), + [aux_sym_exit_statement_token1] = ACTIONS(8931), + [sym_end_statement] = ACTIONS(8933), + [aux_sym_on_goto_statement_token1] = ACTIONS(8931), + [aux_sym_on_goto_statement_token2] = ACTIONS(8931), + [aux_sym_on_error_statement_token2] = ACTIONS(8931), + [sym__ambiguous_redim_statement] = ACTIONS(8933), + [aux_sym_erase_statement_token1] = ACTIONS(8931), + [aux_sym_open_statement_token1] = ACTIONS(8931), + [aux_sym_file_mode_token2] = ACTIONS(8931), + [aux_sym_file_access_token2] = ACTIONS(8931), + [aux_sym_file_lock_token2] = ACTIONS(8931), + [aux_sym_print_statement_token1] = ACTIONS(8931), + [anon_sym_PLUS] = ACTIONS(8933), + [anon_sym_DASH] = ACTIONS(8931), + [anon_sym_QMARK] = ACTIONS(8933), + [aux_sym_close_statement_token1] = ACTIONS(8931), + [aux_sym_put_statement_token1] = ACTIONS(8931), + [aux_sym_unlock_statement_token1] = ACTIONS(8931), + [aux_sym_seek_statement_token1] = ACTIONS(8931), + [sym_reset_statement] = ACTIONS(8931), + [aux_sym_raise_event_statement_token1] = ACTIONS(8931), + [sym_stop_statement] = ACTIONS(8931), + [sym_beep_statement] = ACTIONS(8931), + [aux_sym_unload_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token2] = ACTIONS(8931), + [aux_sym_def_type_statement_token3] = ACTIONS(8931), + [aux_sym_def_type_statement_token4] = ACTIONS(8931), + [aux_sym_def_type_statement_token5] = ACTIONS(8931), + [aux_sym_def_type_statement_token6] = ACTIONS(8931), + [aux_sym_def_type_statement_token7] = ACTIONS(8931), + [aux_sym_def_type_statement_token8] = ACTIONS(8931), + [aux_sym_def_type_statement_token9] = ACTIONS(8931), + [aux_sym_def_type_statement_token10] = ACTIONS(8931), + [aux_sym_def_type_statement_token11] = ACTIONS(8931), + [aux_sym_def_type_statement_token12] = ACTIONS(8931), + [aux_sym_def_type_statement_token13] = ACTIONS(8931), + [aux_sym_def_type_statement_token14] = ACTIONS(8931), + [aux_sym_call_statement_token1] = ACTIONS(8931), + [sym__ambiguous_call_statement] = ACTIONS(8931), + [aux_sym_addressof_expression_token1] = ACTIONS(8931), + [aux_sym_type_of_expression_token1] = ACTIONS(8931), + [aux_sym_unary_expression_token1] = ACTIONS(8931), + [sym_string_literal] = ACTIONS(8933), + [sym_number_literal] = ACTIONS(8933), + [aux_sym_boolean_literal_token1] = ACTIONS(8931), + [aux_sym_boolean_literal_token2] = ACTIONS(8931), + [sym_nothing_literal] = ACTIONS(8931), + [sym_null_literal] = ACTIONS(8931), + [sym_empty_literal] = ACTIONS(8931), + [sym_date_literal] = ACTIONS(8933), + [anon_sym_POUND] = ACTIONS(8931), + }, + [STATE(7072)] = { + [sym_identifier] = ACTIONS(9172), + [sym_newline] = ACTIONS(9174), + [anon_sym_COLON] = ACTIONS(9174), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9172), + [aux_sym_frm_property_statement_token1] = ACTIONS(9172), + [anon_sym_DOT] = ACTIONS(9172), + [anon_sym_BANG] = ACTIONS(9174), + [aux_sym__attribute_identifier_token1] = ACTIONS(9172), + [aux_sym_option_statement_token3] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9172), + [aux_sym_preprocessor_const_token1] = ACTIONS(9172), + [sym_static_modifier] = ACTIONS(9172), + [sym__dim_keyword] = ACTIONS(9172), + [sym__redim_keyword] = ACTIONS(9172), + [aux_sym_get_accessor_token1] = ACTIONS(9172), + [aux_sym_set_accessor_token1] = ACTIONS(9172), + [aux_sym_const_declaration_token1] = ACTIONS(9172), + [anon_sym_LPAREN] = ACTIONS(9174), + [aux_sym_as_type_clause_token2] = ACTIONS(9172), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9172), + [aux_sym_visibility_token1] = ACTIONS(9172), + [aux_sym_visibility_token2] = ACTIONS(9172), + [aux_sym_elseif_fragment_token1] = ACTIONS(9172), + [aux_sym_else_fragment_token1] = ACTIONS(9172), + [aux_sym_select_statement_token1] = ACTIONS(9172), + [aux_sym__for_header_token1] = ACTIONS(9172), + [aux_sym_do_statement_token1] = ACTIONS(9172), + [aux_sym_do_statement_token2] = ACTIONS(9172), + [aux_sym_do_condition_token1] = ACTIONS(9172), + [aux_sym_with_statement_token1] = ACTIONS(9172), + [aux_sym_exit_statement_token1] = ACTIONS(9172), + [sym_end_statement] = ACTIONS(9174), + [aux_sym_on_goto_statement_token1] = ACTIONS(9172), + [aux_sym_on_goto_statement_token2] = ACTIONS(9172), + [aux_sym_on_error_statement_token2] = ACTIONS(9172), + [sym__ambiguous_redim_statement] = ACTIONS(9174), + [aux_sym_erase_statement_token1] = ACTIONS(9172), + [aux_sym_open_statement_token1] = ACTIONS(9172), + [aux_sym_file_mode_token2] = ACTIONS(9172), + [aux_sym_file_access_token2] = ACTIONS(9172), + [aux_sym_file_lock_token2] = ACTIONS(9172), + [aux_sym_print_statement_token1] = ACTIONS(9172), + [anon_sym_PLUS] = ACTIONS(9174), + [anon_sym_DASH] = ACTIONS(9172), + [anon_sym_QMARK] = ACTIONS(9174), + [aux_sym_close_statement_token1] = ACTIONS(9172), + [aux_sym_put_statement_token1] = ACTIONS(9172), + [aux_sym_unlock_statement_token1] = ACTIONS(9172), + [aux_sym_seek_statement_token1] = ACTIONS(9172), + [sym_reset_statement] = ACTIONS(9172), + [aux_sym_raise_event_statement_token1] = ACTIONS(9172), + [sym_stop_statement] = ACTIONS(9172), + [sym_beep_statement] = ACTIONS(9172), + [aux_sym_unload_statement_token1] = ACTIONS(9172), + [aux_sym_def_type_statement_token1] = ACTIONS(9172), + [aux_sym_def_type_statement_token2] = ACTIONS(9172), + [aux_sym_def_type_statement_token3] = ACTIONS(9172), + [aux_sym_def_type_statement_token4] = ACTIONS(9172), + [aux_sym_def_type_statement_token5] = ACTIONS(9172), + [aux_sym_def_type_statement_token6] = ACTIONS(9172), + [aux_sym_def_type_statement_token7] = ACTIONS(9172), + [aux_sym_def_type_statement_token8] = ACTIONS(9172), + [aux_sym_def_type_statement_token9] = ACTIONS(9172), + [aux_sym_def_type_statement_token10] = ACTIONS(9172), + [aux_sym_def_type_statement_token11] = ACTIONS(9172), + [aux_sym_def_type_statement_token12] = ACTIONS(9172), + [aux_sym_def_type_statement_token13] = ACTIONS(9172), + [aux_sym_def_type_statement_token14] = ACTIONS(9172), + [aux_sym_call_statement_token1] = ACTIONS(9172), + [sym__ambiguous_call_statement] = ACTIONS(9172), + [aux_sym_addressof_expression_token1] = ACTIONS(9172), + [aux_sym_type_of_expression_token1] = ACTIONS(9172), + [aux_sym_unary_expression_token1] = ACTIONS(9172), + [sym_string_literal] = ACTIONS(9174), + [sym_number_literal] = ACTIONS(9174), + [aux_sym_boolean_literal_token1] = ACTIONS(9172), + [aux_sym_boolean_literal_token2] = ACTIONS(9172), + [sym_nothing_literal] = ACTIONS(9172), + [sym_null_literal] = ACTIONS(9172), + [sym_empty_literal] = ACTIONS(9172), + [sym_date_literal] = ACTIONS(9174), + [anon_sym_POUND] = ACTIONS(9172), + }, + [STATE(7073)] = { + [sym_identifier] = ACTIONS(9172), + [sym_newline] = ACTIONS(9174), + [anon_sym_COLON] = ACTIONS(9174), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9172), + [aux_sym_frm_property_statement_token1] = ACTIONS(9172), + [anon_sym_DOT] = ACTIONS(9172), + [anon_sym_BANG] = ACTIONS(9174), + [aux_sym__attribute_identifier_token1] = ACTIONS(9172), + [aux_sym_option_statement_token3] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9172), + [aux_sym_preprocessor_const_token1] = ACTIONS(9172), + [sym_static_modifier] = ACTIONS(9172), + [sym__dim_keyword] = ACTIONS(9172), + [sym__redim_keyword] = ACTIONS(9172), + [aux_sym_get_accessor_token1] = ACTIONS(9172), + [aux_sym_set_accessor_token1] = ACTIONS(9172), + [aux_sym_const_declaration_token1] = ACTIONS(9172), + [anon_sym_LPAREN] = ACTIONS(9174), + [aux_sym_as_type_clause_token2] = ACTIONS(9172), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9172), + [aux_sym_visibility_token1] = ACTIONS(9172), + [aux_sym_visibility_token2] = ACTIONS(9172), + [aux_sym_elseif_fragment_token1] = ACTIONS(9172), + [aux_sym_else_fragment_token1] = ACTIONS(9172), + [aux_sym_select_statement_token1] = ACTIONS(9172), + [aux_sym__for_header_token1] = ACTIONS(9172), + [aux_sym_do_statement_token1] = ACTIONS(9172), + [aux_sym_do_condition_token1] = ACTIONS(9172), + [aux_sym_with_statement_token1] = ACTIONS(9172), + [aux_sym_exit_statement_token1] = ACTIONS(9172), + [sym_end_statement] = ACTIONS(9174), + [aux_sym_on_goto_statement_token1] = ACTIONS(9172), + [aux_sym_on_goto_statement_token2] = ACTIONS(9172), + [aux_sym_on_error_statement_token2] = ACTIONS(9172), + [sym__ambiguous_redim_statement] = ACTIONS(9174), + [aux_sym_erase_statement_token1] = ACTIONS(9172), + [aux_sym_open_statement_token1] = ACTIONS(9172), + [aux_sym_file_mode_token2] = ACTIONS(9172), + [aux_sym_file_access_token2] = ACTIONS(9172), + [aux_sym_file_lock_token2] = ACTIONS(9172), + [aux_sym_print_statement_token1] = ACTIONS(9172), + [anon_sym_PLUS] = ACTIONS(9174), + [anon_sym_DASH] = ACTIONS(9172), + [anon_sym_QMARK] = ACTIONS(9174), + [aux_sym_close_statement_token1] = ACTIONS(9172), + [aux_sym_put_statement_token1] = ACTIONS(9172), + [aux_sym_unlock_statement_token1] = ACTIONS(9172), + [aux_sym_seek_statement_token1] = ACTIONS(9172), + [sym_reset_statement] = ACTIONS(9172), + [aux_sym_raise_event_statement_token1] = ACTIONS(9172), + [sym_stop_statement] = ACTIONS(9172), + [sym_beep_statement] = ACTIONS(9172), + [aux_sym_unload_statement_token1] = ACTIONS(9172), + [aux_sym_def_type_statement_token1] = ACTIONS(9172), + [aux_sym_def_type_statement_token2] = ACTIONS(9172), + [aux_sym_def_type_statement_token3] = ACTIONS(9172), + [aux_sym_def_type_statement_token4] = ACTIONS(9172), + [aux_sym_def_type_statement_token5] = ACTIONS(9172), + [aux_sym_def_type_statement_token6] = ACTIONS(9172), + [aux_sym_def_type_statement_token7] = ACTIONS(9172), + [aux_sym_def_type_statement_token8] = ACTIONS(9172), + [aux_sym_def_type_statement_token9] = ACTIONS(9172), + [aux_sym_def_type_statement_token10] = ACTIONS(9172), + [aux_sym_def_type_statement_token11] = ACTIONS(9172), + [aux_sym_def_type_statement_token12] = ACTIONS(9172), + [aux_sym_def_type_statement_token13] = ACTIONS(9172), + [aux_sym_def_type_statement_token14] = ACTIONS(9172), + [aux_sym_call_statement_token1] = ACTIONS(9172), + [sym__ambiguous_call_statement] = ACTIONS(9172), + [aux_sym_addressof_expression_token1] = ACTIONS(9172), + [aux_sym_type_of_expression_token1] = ACTIONS(9172), + [aux_sym_unary_expression_token1] = ACTIONS(9172), + [sym_string_literal] = ACTIONS(9174), + [sym_number_literal] = ACTIONS(9174), + [aux_sym_boolean_literal_token1] = ACTIONS(9172), + [aux_sym_boolean_literal_token2] = ACTIONS(9172), + [sym_nothing_literal] = ACTIONS(9172), + [sym_null_literal] = ACTIONS(9172), + [sym_empty_literal] = ACTIONS(9172), + [sym_date_literal] = ACTIONS(9174), + [anon_sym_POUND] = ACTIONS(9172), + }, + [STATE(7074)] = { + [sym_identifier] = ACTIONS(9176), + [sym_newline] = ACTIONS(9178), + [anon_sym_COLON] = ACTIONS(9178), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9176), + [aux_sym_frm_property_statement_token1] = ACTIONS(9176), + [anon_sym_DOT] = ACTIONS(9176), + [anon_sym_BANG] = ACTIONS(9178), + [aux_sym__attribute_identifier_token1] = ACTIONS(9176), + [aux_sym_option_statement_token3] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9176), + [aux_sym_preprocessor_const_token1] = ACTIONS(9176), + [sym_static_modifier] = ACTIONS(9176), + [sym__dim_keyword] = ACTIONS(9176), + [sym__redim_keyword] = ACTIONS(9176), + [aux_sym_get_accessor_token1] = ACTIONS(9176), + [aux_sym_set_accessor_token1] = ACTIONS(9176), + [aux_sym_const_declaration_token1] = ACTIONS(9176), + [anon_sym_LPAREN] = ACTIONS(9178), + [aux_sym_as_type_clause_token2] = ACTIONS(9176), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9176), + [aux_sym_visibility_token1] = ACTIONS(9176), + [aux_sym_visibility_token2] = ACTIONS(9176), + [aux_sym_elseif_fragment_token1] = ACTIONS(9176), + [aux_sym_else_fragment_token1] = ACTIONS(9176), + [aux_sym_select_statement_token1] = ACTIONS(9176), + [aux_sym__for_header_token1] = ACTIONS(9176), + [aux_sym_do_statement_token1] = ACTIONS(9176), + [aux_sym_do_statement_token2] = ACTIONS(9176), + [aux_sym_do_condition_token1] = ACTIONS(9176), + [aux_sym_with_statement_token1] = ACTIONS(9176), + [aux_sym_exit_statement_token1] = ACTIONS(9176), + [sym_end_statement] = ACTIONS(9178), + [aux_sym_on_goto_statement_token1] = ACTIONS(9176), + [aux_sym_on_goto_statement_token2] = ACTIONS(9176), + [aux_sym_on_error_statement_token2] = ACTIONS(9176), + [sym__ambiguous_redim_statement] = ACTIONS(9178), + [aux_sym_erase_statement_token1] = ACTIONS(9176), + [aux_sym_open_statement_token1] = ACTIONS(9176), + [aux_sym_file_mode_token2] = ACTIONS(9176), + [aux_sym_file_access_token2] = ACTIONS(9176), + [aux_sym_file_lock_token2] = ACTIONS(9176), + [aux_sym_print_statement_token1] = ACTIONS(9176), + [anon_sym_PLUS] = ACTIONS(9178), + [anon_sym_DASH] = ACTIONS(9176), + [anon_sym_QMARK] = ACTIONS(9178), + [aux_sym_close_statement_token1] = ACTIONS(9176), + [aux_sym_put_statement_token1] = ACTIONS(9176), + [aux_sym_unlock_statement_token1] = ACTIONS(9176), + [aux_sym_seek_statement_token1] = ACTIONS(9176), + [sym_reset_statement] = ACTIONS(9176), + [aux_sym_raise_event_statement_token1] = ACTIONS(9176), + [sym_stop_statement] = ACTIONS(9176), + [sym_beep_statement] = ACTIONS(9176), + [aux_sym_unload_statement_token1] = ACTIONS(9176), + [aux_sym_def_type_statement_token1] = ACTIONS(9176), + [aux_sym_def_type_statement_token2] = ACTIONS(9176), + [aux_sym_def_type_statement_token3] = ACTIONS(9176), + [aux_sym_def_type_statement_token4] = ACTIONS(9176), + [aux_sym_def_type_statement_token5] = ACTIONS(9176), + [aux_sym_def_type_statement_token6] = ACTIONS(9176), + [aux_sym_def_type_statement_token7] = ACTIONS(9176), + [aux_sym_def_type_statement_token8] = ACTIONS(9176), + [aux_sym_def_type_statement_token9] = ACTIONS(9176), + [aux_sym_def_type_statement_token10] = ACTIONS(9176), + [aux_sym_def_type_statement_token11] = ACTIONS(9176), + [aux_sym_def_type_statement_token12] = ACTIONS(9176), + [aux_sym_def_type_statement_token13] = ACTIONS(9176), + [aux_sym_def_type_statement_token14] = ACTIONS(9176), + [aux_sym_call_statement_token1] = ACTIONS(9176), + [sym__ambiguous_call_statement] = ACTIONS(9176), + [aux_sym_addressof_expression_token1] = ACTIONS(9176), + [aux_sym_type_of_expression_token1] = ACTIONS(9176), + [aux_sym_unary_expression_token1] = ACTIONS(9176), + [sym_string_literal] = ACTIONS(9178), + [sym_number_literal] = ACTIONS(9178), + [aux_sym_boolean_literal_token1] = ACTIONS(9176), + [aux_sym_boolean_literal_token2] = ACTIONS(9176), + [sym_nothing_literal] = ACTIONS(9176), + [sym_null_literal] = ACTIONS(9176), + [sym_empty_literal] = ACTIONS(9176), + [sym_date_literal] = ACTIONS(9178), + [anon_sym_POUND] = ACTIONS(9176), + }, + [STATE(7075)] = { + [sym_identifier] = ACTIONS(9176), + [sym_newline] = ACTIONS(9178), + [anon_sym_COLON] = ACTIONS(9178), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9176), + [aux_sym_frm_property_statement_token1] = ACTIONS(9176), + [anon_sym_DOT] = ACTIONS(9176), + [anon_sym_BANG] = ACTIONS(9178), + [aux_sym__attribute_identifier_token1] = ACTIONS(9176), + [aux_sym_option_statement_token3] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9176), + [aux_sym_preprocessor_const_token1] = ACTIONS(9176), + [sym_static_modifier] = ACTIONS(9176), + [sym__dim_keyword] = ACTIONS(9176), + [sym__redim_keyword] = ACTIONS(9176), + [aux_sym_get_accessor_token1] = ACTIONS(9176), + [aux_sym_set_accessor_token1] = ACTIONS(9176), + [aux_sym_const_declaration_token1] = ACTIONS(9176), + [anon_sym_LPAREN] = ACTIONS(9178), + [aux_sym_as_type_clause_token2] = ACTIONS(9176), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9176), + [aux_sym_visibility_token1] = ACTIONS(9176), + [aux_sym_visibility_token2] = ACTIONS(9176), + [aux_sym_elseif_fragment_token1] = ACTIONS(9176), + [aux_sym_else_fragment_token1] = ACTIONS(9176), + [aux_sym_select_statement_token1] = ACTIONS(9176), + [aux_sym_select_statement_token2] = ACTIONS(9176), + [aux_sym__for_header_token1] = ACTIONS(9176), + [aux_sym_do_statement_token1] = ACTIONS(9176), + [aux_sym_do_condition_token1] = ACTIONS(9176), + [aux_sym_with_statement_token1] = ACTIONS(9176), + [aux_sym_exit_statement_token1] = ACTIONS(9176), + [sym_end_statement] = ACTIONS(9178), + [aux_sym_on_goto_statement_token1] = ACTIONS(9176), + [aux_sym_on_goto_statement_token2] = ACTIONS(9176), + [aux_sym_on_error_statement_token2] = ACTIONS(9176), + [sym__ambiguous_redim_statement] = ACTIONS(9178), + [aux_sym_erase_statement_token1] = ACTIONS(9176), + [aux_sym_open_statement_token1] = ACTIONS(9176), + [aux_sym_file_mode_token2] = ACTIONS(9176), + [aux_sym_file_access_token2] = ACTIONS(9176), + [aux_sym_file_lock_token2] = ACTIONS(9176), + [aux_sym_print_statement_token1] = ACTIONS(9176), + [anon_sym_PLUS] = ACTIONS(9178), + [anon_sym_DASH] = ACTIONS(9176), + [anon_sym_QMARK] = ACTIONS(9178), + [aux_sym_close_statement_token1] = ACTIONS(9176), + [aux_sym_put_statement_token1] = ACTIONS(9176), + [aux_sym_unlock_statement_token1] = ACTIONS(9176), + [aux_sym_seek_statement_token1] = ACTIONS(9176), + [sym_reset_statement] = ACTIONS(9176), + [aux_sym_raise_event_statement_token1] = ACTIONS(9176), + [sym_stop_statement] = ACTIONS(9176), + [sym_beep_statement] = ACTIONS(9176), + [aux_sym_unload_statement_token1] = ACTIONS(9176), + [aux_sym_def_type_statement_token1] = ACTIONS(9176), + [aux_sym_def_type_statement_token2] = ACTIONS(9176), + [aux_sym_def_type_statement_token3] = ACTIONS(9176), + [aux_sym_def_type_statement_token4] = ACTIONS(9176), + [aux_sym_def_type_statement_token5] = ACTIONS(9176), + [aux_sym_def_type_statement_token6] = ACTIONS(9176), + [aux_sym_def_type_statement_token7] = ACTIONS(9176), + [aux_sym_def_type_statement_token8] = ACTIONS(9176), + [aux_sym_def_type_statement_token9] = ACTIONS(9176), + [aux_sym_def_type_statement_token10] = ACTIONS(9176), + [aux_sym_def_type_statement_token11] = ACTIONS(9176), + [aux_sym_def_type_statement_token12] = ACTIONS(9176), + [aux_sym_def_type_statement_token13] = ACTIONS(9176), + [aux_sym_def_type_statement_token14] = ACTIONS(9176), + [aux_sym_call_statement_token1] = ACTIONS(9176), + [sym__ambiguous_call_statement] = ACTIONS(9176), + [aux_sym_addressof_expression_token1] = ACTIONS(9176), + [aux_sym_type_of_expression_token1] = ACTIONS(9176), + [aux_sym_unary_expression_token1] = ACTIONS(9176), + [sym_string_literal] = ACTIONS(9178), + [sym_number_literal] = ACTIONS(9178), + [aux_sym_boolean_literal_token1] = ACTIONS(9176), + [aux_sym_boolean_literal_token2] = ACTIONS(9176), + [sym_nothing_literal] = ACTIONS(9176), + [sym_null_literal] = ACTIONS(9176), + [sym_empty_literal] = ACTIONS(9176), + [sym_date_literal] = ACTIONS(9178), + [anon_sym_POUND] = ACTIONS(9176), + }, + [STATE(7076)] = { + [sym_identifier] = ACTIONS(9180), + [sym_newline] = ACTIONS(9182), + [anon_sym_COLON] = ACTIONS(9182), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9180), + [aux_sym_frm_property_statement_token1] = ACTIONS(9180), + [anon_sym_DOT] = ACTIONS(9180), + [anon_sym_BANG] = ACTIONS(9182), + [aux_sym__attribute_identifier_token1] = ACTIONS(9180), + [aux_sym_option_statement_token3] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9180), + [aux_sym_preprocessor_const_token1] = ACTIONS(9180), + [sym_static_modifier] = ACTIONS(9180), + [sym__dim_keyword] = ACTIONS(9180), + [sym__redim_keyword] = ACTIONS(9180), + [aux_sym_get_accessor_token1] = ACTIONS(9180), + [aux_sym_set_accessor_token1] = ACTIONS(9180), + [aux_sym_const_declaration_token1] = ACTIONS(9180), + [anon_sym_LPAREN] = ACTIONS(9182), + [aux_sym_as_type_clause_token2] = ACTIONS(9180), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9180), + [aux_sym_visibility_token1] = ACTIONS(9180), + [aux_sym_visibility_token2] = ACTIONS(9180), + [aux_sym_elseif_fragment_token1] = ACTIONS(9180), + [aux_sym_else_fragment_token1] = ACTIONS(9180), + [aux_sym_select_statement_token1] = ACTIONS(9180), + [aux_sym_select_statement_token2] = ACTIONS(9180), + [aux_sym__for_header_token1] = ACTIONS(9180), + [aux_sym_do_statement_token1] = ACTIONS(9180), + [aux_sym_do_condition_token1] = ACTIONS(9180), + [aux_sym_with_statement_token1] = ACTIONS(9180), + [aux_sym_exit_statement_token1] = ACTIONS(9180), + [sym_end_statement] = ACTIONS(9182), + [aux_sym_on_goto_statement_token1] = ACTIONS(9180), + [aux_sym_on_goto_statement_token2] = ACTIONS(9180), + [aux_sym_on_error_statement_token2] = ACTIONS(9180), + [sym__ambiguous_redim_statement] = ACTIONS(9182), + [aux_sym_erase_statement_token1] = ACTIONS(9180), + [aux_sym_open_statement_token1] = ACTIONS(9180), + [aux_sym_file_mode_token2] = ACTIONS(9180), + [aux_sym_file_access_token2] = ACTIONS(9180), + [aux_sym_file_lock_token2] = ACTIONS(9180), + [aux_sym_print_statement_token1] = ACTIONS(9180), + [anon_sym_PLUS] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9180), + [anon_sym_QMARK] = ACTIONS(9182), + [aux_sym_close_statement_token1] = ACTIONS(9180), + [aux_sym_put_statement_token1] = ACTIONS(9180), + [aux_sym_unlock_statement_token1] = ACTIONS(9180), + [aux_sym_seek_statement_token1] = ACTIONS(9180), + [sym_reset_statement] = ACTIONS(9180), + [aux_sym_raise_event_statement_token1] = ACTIONS(9180), + [sym_stop_statement] = ACTIONS(9180), + [sym_beep_statement] = ACTIONS(9180), + [aux_sym_unload_statement_token1] = ACTIONS(9180), + [aux_sym_def_type_statement_token1] = ACTIONS(9180), + [aux_sym_def_type_statement_token2] = ACTIONS(9180), + [aux_sym_def_type_statement_token3] = ACTIONS(9180), + [aux_sym_def_type_statement_token4] = ACTIONS(9180), + [aux_sym_def_type_statement_token5] = ACTIONS(9180), + [aux_sym_def_type_statement_token6] = ACTIONS(9180), + [aux_sym_def_type_statement_token7] = ACTIONS(9180), + [aux_sym_def_type_statement_token8] = ACTIONS(9180), + [aux_sym_def_type_statement_token9] = ACTIONS(9180), + [aux_sym_def_type_statement_token10] = ACTIONS(9180), + [aux_sym_def_type_statement_token11] = ACTIONS(9180), + [aux_sym_def_type_statement_token12] = ACTIONS(9180), + [aux_sym_def_type_statement_token13] = ACTIONS(9180), + [aux_sym_def_type_statement_token14] = ACTIONS(9180), + [aux_sym_call_statement_token1] = ACTIONS(9180), + [sym__ambiguous_call_statement] = ACTIONS(9180), + [aux_sym_addressof_expression_token1] = ACTIONS(9180), + [aux_sym_type_of_expression_token1] = ACTIONS(9180), + [aux_sym_unary_expression_token1] = ACTIONS(9180), + [sym_string_literal] = ACTIONS(9182), + [sym_number_literal] = ACTIONS(9182), + [aux_sym_boolean_literal_token1] = ACTIONS(9180), + [aux_sym_boolean_literal_token2] = ACTIONS(9180), + [sym_nothing_literal] = ACTIONS(9180), + [sym_null_literal] = ACTIONS(9180), + [sym_empty_literal] = ACTIONS(9180), + [sym_date_literal] = ACTIONS(9182), + [anon_sym_POUND] = ACTIONS(9180), + }, + [STATE(7077)] = { + [sym_identifier] = ACTIONS(9184), + [sym_newline] = ACTIONS(9186), + [anon_sym_COLON] = ACTIONS(9186), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9184), + [aux_sym_frm_property_statement_token1] = ACTIONS(9184), + [anon_sym_DOT] = ACTIONS(9184), + [anon_sym_BANG] = ACTIONS(9186), + [aux_sym__attribute_identifier_token1] = ACTIONS(9184), + [aux_sym_option_statement_token3] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9184), + [aux_sym_preprocessor_const_token1] = ACTIONS(9184), + [sym_static_modifier] = ACTIONS(9184), + [sym__dim_keyword] = ACTIONS(9184), + [sym__redim_keyword] = ACTIONS(9184), + [aux_sym_get_accessor_token1] = ACTIONS(9184), + [aux_sym_set_accessor_token1] = ACTIONS(9184), + [aux_sym_const_declaration_token1] = ACTIONS(9184), + [anon_sym_LPAREN] = ACTIONS(9186), + [aux_sym_as_type_clause_token2] = ACTIONS(9184), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9184), + [aux_sym_visibility_token1] = ACTIONS(9184), + [aux_sym_visibility_token2] = ACTIONS(9184), + [aux_sym_elseif_fragment_token1] = ACTIONS(9184), + [aux_sym_else_fragment_token1] = ACTIONS(9184), + [aux_sym_select_statement_token1] = ACTIONS(9184), + [aux_sym_select_statement_token2] = ACTIONS(9184), + [aux_sym__for_header_token1] = ACTIONS(9184), + [aux_sym_do_statement_token1] = ACTIONS(9184), + [aux_sym_do_condition_token1] = ACTIONS(9184), + [aux_sym_with_statement_token1] = ACTIONS(9184), + [aux_sym_exit_statement_token1] = ACTIONS(9184), + [sym_end_statement] = ACTIONS(9186), + [aux_sym_on_goto_statement_token1] = ACTIONS(9184), + [aux_sym_on_goto_statement_token2] = ACTIONS(9184), + [aux_sym_on_error_statement_token2] = ACTIONS(9184), + [sym__ambiguous_redim_statement] = ACTIONS(9186), + [aux_sym_erase_statement_token1] = ACTIONS(9184), + [aux_sym_open_statement_token1] = ACTIONS(9184), + [aux_sym_file_mode_token2] = ACTIONS(9184), + [aux_sym_file_access_token2] = ACTIONS(9184), + [aux_sym_file_lock_token2] = ACTIONS(9184), + [aux_sym_print_statement_token1] = ACTIONS(9184), + [anon_sym_PLUS] = ACTIONS(9186), + [anon_sym_DASH] = ACTIONS(9184), + [anon_sym_QMARK] = ACTIONS(9186), + [aux_sym_close_statement_token1] = ACTIONS(9184), + [aux_sym_put_statement_token1] = ACTIONS(9184), + [aux_sym_unlock_statement_token1] = ACTIONS(9184), + [aux_sym_seek_statement_token1] = ACTIONS(9184), + [sym_reset_statement] = ACTIONS(9184), + [aux_sym_raise_event_statement_token1] = ACTIONS(9184), + [sym_stop_statement] = ACTIONS(9184), + [sym_beep_statement] = ACTIONS(9184), + [aux_sym_unload_statement_token1] = ACTIONS(9184), + [aux_sym_def_type_statement_token1] = ACTIONS(9184), + [aux_sym_def_type_statement_token2] = ACTIONS(9184), + [aux_sym_def_type_statement_token3] = ACTIONS(9184), + [aux_sym_def_type_statement_token4] = ACTIONS(9184), + [aux_sym_def_type_statement_token5] = ACTIONS(9184), + [aux_sym_def_type_statement_token6] = ACTIONS(9184), + [aux_sym_def_type_statement_token7] = ACTIONS(9184), + [aux_sym_def_type_statement_token8] = ACTIONS(9184), + [aux_sym_def_type_statement_token9] = ACTIONS(9184), + [aux_sym_def_type_statement_token10] = ACTIONS(9184), + [aux_sym_def_type_statement_token11] = ACTIONS(9184), + [aux_sym_def_type_statement_token12] = ACTIONS(9184), + [aux_sym_def_type_statement_token13] = ACTIONS(9184), + [aux_sym_def_type_statement_token14] = ACTIONS(9184), + [aux_sym_call_statement_token1] = ACTIONS(9184), + [sym__ambiguous_call_statement] = ACTIONS(9184), + [aux_sym_addressof_expression_token1] = ACTIONS(9184), + [aux_sym_type_of_expression_token1] = ACTIONS(9184), + [aux_sym_unary_expression_token1] = ACTIONS(9184), + [sym_string_literal] = ACTIONS(9186), + [sym_number_literal] = ACTIONS(9186), + [aux_sym_boolean_literal_token1] = ACTIONS(9184), + [aux_sym_boolean_literal_token2] = ACTIONS(9184), + [sym_nothing_literal] = ACTIONS(9184), + [sym_null_literal] = ACTIONS(9184), + [sym_empty_literal] = ACTIONS(9184), + [sym_date_literal] = ACTIONS(9186), + [anon_sym_POUND] = ACTIONS(9184), + }, + [STATE(7078)] = { + [sym_identifier] = ACTIONS(9639), + [sym_newline] = ACTIONS(9641), + [anon_sym_COLON] = ACTIONS(9641), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9639), + [aux_sym_frm_property_statement_token1] = ACTIONS(9639), + [anon_sym_DOT] = ACTIONS(9639), + [anon_sym_BANG] = ACTIONS(9641), + [aux_sym__attribute_identifier_token1] = ACTIONS(9639), + [aux_sym_option_statement_token3] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9639), + [aux_sym_preprocessor_const_token1] = ACTIONS(9639), + [sym_static_modifier] = ACTIONS(9639), + [sym__dim_keyword] = ACTIONS(9639), + [sym__redim_keyword] = ACTIONS(9639), + [aux_sym_get_accessor_token1] = ACTIONS(9639), + [aux_sym_set_accessor_token1] = ACTIONS(9639), + [aux_sym_const_declaration_token1] = ACTIONS(9639), + [anon_sym_LPAREN] = ACTIONS(9641), + [aux_sym_as_type_clause_token2] = ACTIONS(9639), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9639), + [aux_sym_visibility_token1] = ACTIONS(9639), + [aux_sym_visibility_token2] = ACTIONS(9639), + [aux_sym_elseif_fragment_token1] = ACTIONS(9639), + [aux_sym_else_fragment_token1] = ACTIONS(9639), + [aux_sym_select_statement_token1] = ACTIONS(9639), + [aux_sym__for_header_token1] = ACTIONS(9639), + [aux_sym_do_statement_token1] = ACTIONS(9639), + [aux_sym_do_condition_token1] = ACTIONS(9639), + [aux_sym_while_statement_token1] = ACTIONS(9639), + [aux_sym_with_statement_token1] = ACTIONS(9639), + [aux_sym_exit_statement_token1] = ACTIONS(9639), + [sym_end_statement] = ACTIONS(9641), + [aux_sym_on_goto_statement_token1] = ACTIONS(9639), + [aux_sym_on_goto_statement_token2] = ACTIONS(9639), + [aux_sym_on_error_statement_token2] = ACTIONS(9639), + [sym__ambiguous_redim_statement] = ACTIONS(9641), + [aux_sym_erase_statement_token1] = ACTIONS(9639), + [aux_sym_open_statement_token1] = ACTIONS(9639), + [aux_sym_file_mode_token2] = ACTIONS(9639), + [aux_sym_file_access_token2] = ACTIONS(9639), + [aux_sym_file_lock_token2] = ACTIONS(9639), + [aux_sym_print_statement_token1] = ACTIONS(9639), + [anon_sym_PLUS] = ACTIONS(9641), + [anon_sym_DASH] = ACTIONS(9639), + [anon_sym_QMARK] = ACTIONS(9641), + [aux_sym_close_statement_token1] = ACTIONS(9639), + [aux_sym_put_statement_token1] = ACTIONS(9639), + [aux_sym_unlock_statement_token1] = ACTIONS(9639), + [aux_sym_seek_statement_token1] = ACTIONS(9639), + [sym_reset_statement] = ACTIONS(9639), + [aux_sym_raise_event_statement_token1] = ACTIONS(9639), + [sym_stop_statement] = ACTIONS(9639), + [sym_beep_statement] = ACTIONS(9639), + [aux_sym_unload_statement_token1] = ACTIONS(9639), + [aux_sym_def_type_statement_token1] = ACTIONS(9639), + [aux_sym_def_type_statement_token2] = ACTIONS(9639), + [aux_sym_def_type_statement_token3] = ACTIONS(9639), + [aux_sym_def_type_statement_token4] = ACTIONS(9639), + [aux_sym_def_type_statement_token5] = ACTIONS(9639), + [aux_sym_def_type_statement_token6] = ACTIONS(9639), + [aux_sym_def_type_statement_token7] = ACTIONS(9639), + [aux_sym_def_type_statement_token8] = ACTIONS(9639), + [aux_sym_def_type_statement_token9] = ACTIONS(9639), + [aux_sym_def_type_statement_token10] = ACTIONS(9639), + [aux_sym_def_type_statement_token11] = ACTIONS(9639), + [aux_sym_def_type_statement_token12] = ACTIONS(9639), + [aux_sym_def_type_statement_token13] = ACTIONS(9639), + [aux_sym_def_type_statement_token14] = ACTIONS(9639), + [aux_sym_call_statement_token1] = ACTIONS(9639), + [sym__ambiguous_call_statement] = ACTIONS(9639), + [aux_sym_addressof_expression_token1] = ACTIONS(9639), + [aux_sym_type_of_expression_token1] = ACTIONS(9639), + [aux_sym_unary_expression_token1] = ACTIONS(9639), + [sym_string_literal] = ACTIONS(9641), + [sym_number_literal] = ACTIONS(9641), + [aux_sym_boolean_literal_token1] = ACTIONS(9639), + [aux_sym_boolean_literal_token2] = ACTIONS(9639), + [sym_nothing_literal] = ACTIONS(9639), + [sym_null_literal] = ACTIONS(9639), + [sym_empty_literal] = ACTIONS(9639), + [sym_date_literal] = ACTIONS(9641), + [anon_sym_POUND] = ACTIONS(9639), + }, + [STATE(7079)] = { + [sym_identifier] = ACTIONS(9188), + [sym_newline] = ACTIONS(9190), + [anon_sym_COLON] = ACTIONS(9190), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9188), + [aux_sym_frm_property_statement_token1] = ACTIONS(9188), + [anon_sym_DOT] = ACTIONS(9188), + [anon_sym_BANG] = ACTIONS(9190), + [aux_sym__attribute_identifier_token1] = ACTIONS(9188), + [aux_sym_option_statement_token3] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9188), + [aux_sym_preprocessor_const_token1] = ACTIONS(9188), + [sym_static_modifier] = ACTIONS(9188), + [sym__dim_keyword] = ACTIONS(9188), + [sym__redim_keyword] = ACTIONS(9188), + [aux_sym_get_accessor_token1] = ACTIONS(9188), + [aux_sym_set_accessor_token1] = ACTIONS(9188), + [aux_sym_const_declaration_token1] = ACTIONS(9188), + [anon_sym_LPAREN] = ACTIONS(9190), + [aux_sym_as_type_clause_token2] = ACTIONS(9188), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9188), + [aux_sym_visibility_token1] = ACTIONS(9188), + [aux_sym_visibility_token2] = ACTIONS(9188), + [aux_sym_elseif_fragment_token1] = ACTIONS(9188), + [aux_sym_else_fragment_token1] = ACTIONS(9188), + [aux_sym_select_statement_token1] = ACTIONS(9188), + [aux_sym_select_statement_token2] = ACTIONS(9188), + [aux_sym__for_header_token1] = ACTIONS(9188), + [aux_sym_do_statement_token1] = ACTIONS(9188), + [aux_sym_do_condition_token1] = ACTIONS(9188), + [aux_sym_with_statement_token1] = ACTIONS(9188), + [aux_sym_exit_statement_token1] = ACTIONS(9188), + [sym_end_statement] = ACTIONS(9190), + [aux_sym_on_goto_statement_token1] = ACTIONS(9188), + [aux_sym_on_goto_statement_token2] = ACTIONS(9188), + [aux_sym_on_error_statement_token2] = ACTIONS(9188), + [sym__ambiguous_redim_statement] = ACTIONS(9190), + [aux_sym_erase_statement_token1] = ACTIONS(9188), + [aux_sym_open_statement_token1] = ACTIONS(9188), + [aux_sym_file_mode_token2] = ACTIONS(9188), + [aux_sym_file_access_token2] = ACTIONS(9188), + [aux_sym_file_lock_token2] = ACTIONS(9188), + [aux_sym_print_statement_token1] = ACTIONS(9188), + [anon_sym_PLUS] = ACTIONS(9190), + [anon_sym_DASH] = ACTIONS(9188), + [anon_sym_QMARK] = ACTIONS(9190), + [aux_sym_close_statement_token1] = ACTIONS(9188), + [aux_sym_put_statement_token1] = ACTIONS(9188), + [aux_sym_unlock_statement_token1] = ACTIONS(9188), + [aux_sym_seek_statement_token1] = ACTIONS(9188), + [sym_reset_statement] = ACTIONS(9188), + [aux_sym_raise_event_statement_token1] = ACTIONS(9188), + [sym_stop_statement] = ACTIONS(9188), + [sym_beep_statement] = ACTIONS(9188), + [aux_sym_unload_statement_token1] = ACTIONS(9188), + [aux_sym_def_type_statement_token1] = ACTIONS(9188), + [aux_sym_def_type_statement_token2] = ACTIONS(9188), + [aux_sym_def_type_statement_token3] = ACTIONS(9188), + [aux_sym_def_type_statement_token4] = ACTIONS(9188), + [aux_sym_def_type_statement_token5] = ACTIONS(9188), + [aux_sym_def_type_statement_token6] = ACTIONS(9188), + [aux_sym_def_type_statement_token7] = ACTIONS(9188), + [aux_sym_def_type_statement_token8] = ACTIONS(9188), + [aux_sym_def_type_statement_token9] = ACTIONS(9188), + [aux_sym_def_type_statement_token10] = ACTIONS(9188), + [aux_sym_def_type_statement_token11] = ACTIONS(9188), + [aux_sym_def_type_statement_token12] = ACTIONS(9188), + [aux_sym_def_type_statement_token13] = ACTIONS(9188), + [aux_sym_def_type_statement_token14] = ACTIONS(9188), + [aux_sym_call_statement_token1] = ACTIONS(9188), + [sym__ambiguous_call_statement] = ACTIONS(9188), + [aux_sym_addressof_expression_token1] = ACTIONS(9188), + [aux_sym_type_of_expression_token1] = ACTIONS(9188), + [aux_sym_unary_expression_token1] = ACTIONS(9188), + [sym_string_literal] = ACTIONS(9190), + [sym_number_literal] = ACTIONS(9190), + [aux_sym_boolean_literal_token1] = ACTIONS(9188), + [aux_sym_boolean_literal_token2] = ACTIONS(9188), + [sym_nothing_literal] = ACTIONS(9188), + [sym_null_literal] = ACTIONS(9188), + [sym_empty_literal] = ACTIONS(9188), + [sym_date_literal] = ACTIONS(9190), + [anon_sym_POUND] = ACTIONS(9188), + }, + [STATE(7080)] = { + [sym_identifier] = ACTIONS(9192), + [sym_newline] = ACTIONS(9194), + [anon_sym_COLON] = ACTIONS(9194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9192), + [aux_sym_frm_property_statement_token1] = ACTIONS(9192), + [anon_sym_DOT] = ACTIONS(9192), + [anon_sym_BANG] = ACTIONS(9194), + [aux_sym__attribute_identifier_token1] = ACTIONS(9192), + [aux_sym_option_statement_token3] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9192), + [aux_sym_preprocessor_const_token1] = ACTIONS(9192), + [sym_static_modifier] = ACTIONS(9192), + [sym__dim_keyword] = ACTIONS(9192), + [sym__redim_keyword] = ACTIONS(9192), + [aux_sym_get_accessor_token1] = ACTIONS(9192), + [aux_sym_set_accessor_token1] = ACTIONS(9192), + [aux_sym_const_declaration_token1] = ACTIONS(9192), + [anon_sym_LPAREN] = ACTIONS(9194), + [aux_sym_as_type_clause_token2] = ACTIONS(9192), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9192), + [aux_sym_visibility_token1] = ACTIONS(9192), + [aux_sym_visibility_token2] = ACTIONS(9192), + [aux_sym_elseif_fragment_token1] = ACTIONS(9192), + [aux_sym_else_fragment_token1] = ACTIONS(9192), + [aux_sym_select_statement_token1] = ACTIONS(9192), + [aux_sym_select_statement_token2] = ACTIONS(9192), + [aux_sym__for_header_token1] = ACTIONS(9192), + [aux_sym_do_statement_token1] = ACTIONS(9192), + [aux_sym_do_condition_token1] = ACTIONS(9192), + [aux_sym_with_statement_token1] = ACTIONS(9192), + [aux_sym_exit_statement_token1] = ACTIONS(9192), + [sym_end_statement] = ACTIONS(9194), + [aux_sym_on_goto_statement_token1] = ACTIONS(9192), + [aux_sym_on_goto_statement_token2] = ACTIONS(9192), + [aux_sym_on_error_statement_token2] = ACTIONS(9192), + [sym__ambiguous_redim_statement] = ACTIONS(9194), + [aux_sym_erase_statement_token1] = ACTIONS(9192), + [aux_sym_open_statement_token1] = ACTIONS(9192), + [aux_sym_file_mode_token2] = ACTIONS(9192), + [aux_sym_file_access_token2] = ACTIONS(9192), + [aux_sym_file_lock_token2] = ACTIONS(9192), + [aux_sym_print_statement_token1] = ACTIONS(9192), + [anon_sym_PLUS] = ACTIONS(9194), + [anon_sym_DASH] = ACTIONS(9192), + [anon_sym_QMARK] = ACTIONS(9194), + [aux_sym_close_statement_token1] = ACTIONS(9192), + [aux_sym_put_statement_token1] = ACTIONS(9192), + [aux_sym_unlock_statement_token1] = ACTIONS(9192), + [aux_sym_seek_statement_token1] = ACTIONS(9192), + [sym_reset_statement] = ACTIONS(9192), + [aux_sym_raise_event_statement_token1] = ACTIONS(9192), + [sym_stop_statement] = ACTIONS(9192), + [sym_beep_statement] = ACTIONS(9192), + [aux_sym_unload_statement_token1] = ACTIONS(9192), + [aux_sym_def_type_statement_token1] = ACTIONS(9192), + [aux_sym_def_type_statement_token2] = ACTIONS(9192), + [aux_sym_def_type_statement_token3] = ACTIONS(9192), + [aux_sym_def_type_statement_token4] = ACTIONS(9192), + [aux_sym_def_type_statement_token5] = ACTIONS(9192), + [aux_sym_def_type_statement_token6] = ACTIONS(9192), + [aux_sym_def_type_statement_token7] = ACTIONS(9192), + [aux_sym_def_type_statement_token8] = ACTIONS(9192), + [aux_sym_def_type_statement_token9] = ACTIONS(9192), + [aux_sym_def_type_statement_token10] = ACTIONS(9192), + [aux_sym_def_type_statement_token11] = ACTIONS(9192), + [aux_sym_def_type_statement_token12] = ACTIONS(9192), + [aux_sym_def_type_statement_token13] = ACTIONS(9192), + [aux_sym_def_type_statement_token14] = ACTIONS(9192), + [aux_sym_call_statement_token1] = ACTIONS(9192), + [sym__ambiguous_call_statement] = ACTIONS(9192), + [aux_sym_addressof_expression_token1] = ACTIONS(9192), + [aux_sym_type_of_expression_token1] = ACTIONS(9192), + [aux_sym_unary_expression_token1] = ACTIONS(9192), + [sym_string_literal] = ACTIONS(9194), + [sym_number_literal] = ACTIONS(9194), + [aux_sym_boolean_literal_token1] = ACTIONS(9192), + [aux_sym_boolean_literal_token2] = ACTIONS(9192), + [sym_nothing_literal] = ACTIONS(9192), + [sym_null_literal] = ACTIONS(9192), + [sym_empty_literal] = ACTIONS(9192), + [sym_date_literal] = ACTIONS(9194), + [anon_sym_POUND] = ACTIONS(9192), + }, + [STATE(7081)] = { + [sym_identifier] = ACTIONS(9643), + [sym_newline] = ACTIONS(9645), + [anon_sym_COLON] = ACTIONS(9645), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9643), + [aux_sym_frm_property_statement_token1] = ACTIONS(9643), + [anon_sym_DOT] = ACTIONS(9643), + [anon_sym_BANG] = ACTIONS(9645), + [aux_sym__attribute_identifier_token1] = ACTIONS(9643), + [aux_sym_option_statement_token3] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9643), + [aux_sym_preprocessor_const_token1] = ACTIONS(9643), + [sym_static_modifier] = ACTIONS(9643), + [sym__dim_keyword] = ACTIONS(9643), + [sym__redim_keyword] = ACTIONS(9643), + [aux_sym_get_accessor_token1] = ACTIONS(9643), + [aux_sym_set_accessor_token1] = ACTIONS(9643), + [aux_sym_const_declaration_token1] = ACTIONS(9643), + [anon_sym_LPAREN] = ACTIONS(9645), + [aux_sym_as_type_clause_token2] = ACTIONS(9643), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9643), + [aux_sym_visibility_token1] = ACTIONS(9643), + [aux_sym_visibility_token2] = ACTIONS(9643), + [aux_sym_elseif_fragment_token1] = ACTIONS(9643), + [aux_sym_else_fragment_token1] = ACTIONS(9643), + [aux_sym_select_statement_token1] = ACTIONS(9643), + [aux_sym__for_header_token1] = ACTIONS(9643), + [aux_sym_do_statement_token1] = ACTIONS(9643), + [aux_sym_do_condition_token1] = ACTIONS(9643), + [aux_sym_while_statement_token1] = ACTIONS(9643), + [aux_sym_with_statement_token1] = ACTIONS(9643), + [aux_sym_exit_statement_token1] = ACTIONS(9643), + [sym_end_statement] = ACTIONS(9645), + [aux_sym_on_goto_statement_token1] = ACTIONS(9643), + [aux_sym_on_goto_statement_token2] = ACTIONS(9643), + [aux_sym_on_error_statement_token2] = ACTIONS(9643), + [sym__ambiguous_redim_statement] = ACTIONS(9645), + [aux_sym_erase_statement_token1] = ACTIONS(9643), + [aux_sym_open_statement_token1] = ACTIONS(9643), + [aux_sym_file_mode_token2] = ACTIONS(9643), + [aux_sym_file_access_token2] = ACTIONS(9643), + [aux_sym_file_lock_token2] = ACTIONS(9643), + [aux_sym_print_statement_token1] = ACTIONS(9643), + [anon_sym_PLUS] = ACTIONS(9645), + [anon_sym_DASH] = ACTIONS(9643), + [anon_sym_QMARK] = ACTIONS(9645), + [aux_sym_close_statement_token1] = ACTIONS(9643), + [aux_sym_put_statement_token1] = ACTIONS(9643), + [aux_sym_unlock_statement_token1] = ACTIONS(9643), + [aux_sym_seek_statement_token1] = ACTIONS(9643), + [sym_reset_statement] = ACTIONS(9643), + [aux_sym_raise_event_statement_token1] = ACTIONS(9643), + [sym_stop_statement] = ACTIONS(9643), + [sym_beep_statement] = ACTIONS(9643), + [aux_sym_unload_statement_token1] = ACTIONS(9643), + [aux_sym_def_type_statement_token1] = ACTIONS(9643), + [aux_sym_def_type_statement_token2] = ACTIONS(9643), + [aux_sym_def_type_statement_token3] = ACTIONS(9643), + [aux_sym_def_type_statement_token4] = ACTIONS(9643), + [aux_sym_def_type_statement_token5] = ACTIONS(9643), + [aux_sym_def_type_statement_token6] = ACTIONS(9643), + [aux_sym_def_type_statement_token7] = ACTIONS(9643), + [aux_sym_def_type_statement_token8] = ACTIONS(9643), + [aux_sym_def_type_statement_token9] = ACTIONS(9643), + [aux_sym_def_type_statement_token10] = ACTIONS(9643), + [aux_sym_def_type_statement_token11] = ACTIONS(9643), + [aux_sym_def_type_statement_token12] = ACTIONS(9643), + [aux_sym_def_type_statement_token13] = ACTIONS(9643), + [aux_sym_def_type_statement_token14] = ACTIONS(9643), + [aux_sym_call_statement_token1] = ACTIONS(9643), + [sym__ambiguous_call_statement] = ACTIONS(9643), + [aux_sym_addressof_expression_token1] = ACTIONS(9643), + [aux_sym_type_of_expression_token1] = ACTIONS(9643), + [aux_sym_unary_expression_token1] = ACTIONS(9643), + [sym_string_literal] = ACTIONS(9645), + [sym_number_literal] = ACTIONS(9645), + [aux_sym_boolean_literal_token1] = ACTIONS(9643), + [aux_sym_boolean_literal_token2] = ACTIONS(9643), + [sym_nothing_literal] = ACTIONS(9643), + [sym_null_literal] = ACTIONS(9643), + [sym_empty_literal] = ACTIONS(9643), + [sym_date_literal] = ACTIONS(9645), + [anon_sym_POUND] = ACTIONS(9643), + }, + [STATE(7082)] = { + [sym_identifier] = ACTIONS(9647), + [sym_newline] = ACTIONS(9649), + [anon_sym_COLON] = ACTIONS(9649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9647), + [aux_sym_frm_property_statement_token1] = ACTIONS(9647), + [anon_sym_DOT] = ACTIONS(9647), + [anon_sym_BANG] = ACTIONS(9649), + [aux_sym__attribute_identifier_token1] = ACTIONS(9647), + [aux_sym_option_statement_token3] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9647), + [aux_sym_preprocessor_const_token1] = ACTIONS(9647), + [sym_static_modifier] = ACTIONS(9647), + [sym__dim_keyword] = ACTIONS(9647), + [sym__redim_keyword] = ACTIONS(9647), + [aux_sym_get_accessor_token1] = ACTIONS(9647), + [aux_sym_set_accessor_token1] = ACTIONS(9647), + [aux_sym_const_declaration_token1] = ACTIONS(9647), + [anon_sym_LPAREN] = ACTIONS(9649), + [aux_sym_as_type_clause_token2] = ACTIONS(9647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9647), + [aux_sym_visibility_token1] = ACTIONS(9647), + [aux_sym_visibility_token2] = ACTIONS(9647), + [aux_sym_elseif_fragment_token1] = ACTIONS(9647), + [aux_sym_else_fragment_token1] = ACTIONS(9647), + [aux_sym_select_statement_token1] = ACTIONS(9647), + [aux_sym__for_header_token1] = ACTIONS(9647), + [aux_sym_do_statement_token1] = ACTIONS(9647), + [aux_sym_do_condition_token1] = ACTIONS(9647), + [aux_sym_while_statement_token1] = ACTIONS(9647), + [aux_sym_with_statement_token1] = ACTIONS(9647), + [aux_sym_exit_statement_token1] = ACTIONS(9647), + [sym_end_statement] = ACTIONS(9649), + [aux_sym_on_goto_statement_token1] = ACTIONS(9647), + [aux_sym_on_goto_statement_token2] = ACTIONS(9647), + [aux_sym_on_error_statement_token2] = ACTIONS(9647), + [sym__ambiguous_redim_statement] = ACTIONS(9649), + [aux_sym_erase_statement_token1] = ACTIONS(9647), + [aux_sym_open_statement_token1] = ACTIONS(9647), + [aux_sym_file_mode_token2] = ACTIONS(9647), + [aux_sym_file_access_token2] = ACTIONS(9647), + [aux_sym_file_lock_token2] = ACTIONS(9647), + [aux_sym_print_statement_token1] = ACTIONS(9647), + [anon_sym_PLUS] = ACTIONS(9649), + [anon_sym_DASH] = ACTIONS(9647), + [anon_sym_QMARK] = ACTIONS(9649), + [aux_sym_close_statement_token1] = ACTIONS(9647), + [aux_sym_put_statement_token1] = ACTIONS(9647), + [aux_sym_unlock_statement_token1] = ACTIONS(9647), + [aux_sym_seek_statement_token1] = ACTIONS(9647), + [sym_reset_statement] = ACTIONS(9647), + [aux_sym_raise_event_statement_token1] = ACTIONS(9647), + [sym_stop_statement] = ACTIONS(9647), + [sym_beep_statement] = ACTIONS(9647), + [aux_sym_unload_statement_token1] = ACTIONS(9647), + [aux_sym_def_type_statement_token1] = ACTIONS(9647), + [aux_sym_def_type_statement_token2] = ACTIONS(9647), + [aux_sym_def_type_statement_token3] = ACTIONS(9647), + [aux_sym_def_type_statement_token4] = ACTIONS(9647), + [aux_sym_def_type_statement_token5] = ACTIONS(9647), + [aux_sym_def_type_statement_token6] = ACTIONS(9647), + [aux_sym_def_type_statement_token7] = ACTIONS(9647), + [aux_sym_def_type_statement_token8] = ACTIONS(9647), + [aux_sym_def_type_statement_token9] = ACTIONS(9647), + [aux_sym_def_type_statement_token10] = ACTIONS(9647), + [aux_sym_def_type_statement_token11] = ACTIONS(9647), + [aux_sym_def_type_statement_token12] = ACTIONS(9647), + [aux_sym_def_type_statement_token13] = ACTIONS(9647), + [aux_sym_def_type_statement_token14] = ACTIONS(9647), + [aux_sym_call_statement_token1] = ACTIONS(9647), + [sym__ambiguous_call_statement] = ACTIONS(9647), + [aux_sym_addressof_expression_token1] = ACTIONS(9647), + [aux_sym_type_of_expression_token1] = ACTIONS(9647), + [aux_sym_unary_expression_token1] = ACTIONS(9647), + [sym_string_literal] = ACTIONS(9649), + [sym_number_literal] = ACTIONS(9649), + [aux_sym_boolean_literal_token1] = ACTIONS(9647), + [aux_sym_boolean_literal_token2] = ACTIONS(9647), + [sym_nothing_literal] = ACTIONS(9647), + [sym_null_literal] = ACTIONS(9647), + [sym_empty_literal] = ACTIONS(9647), + [sym_date_literal] = ACTIONS(9649), + [anon_sym_POUND] = ACTIONS(9647), + }, + [STATE(7083)] = { + [sym_identifier] = ACTIONS(9654), + [sym_newline] = ACTIONS(9656), + [anon_sym_COLON] = ACTIONS(9656), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9654), + [aux_sym_frm_property_statement_token1] = ACTIONS(9654), + [anon_sym_DOT] = ACTIONS(9654), + [anon_sym_BANG] = ACTIONS(9656), + [aux_sym__attribute_identifier_token1] = ACTIONS(9654), + [aux_sym_option_statement_token3] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9654), + [aux_sym_preprocessor_const_token1] = ACTIONS(9654), + [sym_static_modifier] = ACTIONS(9654), + [sym__dim_keyword] = ACTIONS(9654), + [sym__redim_keyword] = ACTIONS(9654), + [aux_sym_get_accessor_token1] = ACTIONS(9654), + [aux_sym_set_accessor_token1] = ACTIONS(9654), + [aux_sym_const_declaration_token1] = ACTIONS(9654), + [anon_sym_LPAREN] = ACTIONS(9656), + [aux_sym_as_type_clause_token2] = ACTIONS(9654), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9654), + [aux_sym_visibility_token1] = ACTIONS(9654), + [aux_sym_visibility_token2] = ACTIONS(9654), + [aux_sym_elseif_fragment_token1] = ACTIONS(9654), + [aux_sym_else_fragment_token1] = ACTIONS(9654), + [aux_sym_select_statement_token1] = ACTIONS(9654), + [aux_sym__for_header_token1] = ACTIONS(9654), + [aux_sym_do_statement_token1] = ACTIONS(9654), + [aux_sym_do_condition_token1] = ACTIONS(9654), + [aux_sym_while_statement_token1] = ACTIONS(9654), + [aux_sym_with_statement_token1] = ACTIONS(9654), + [aux_sym_exit_statement_token1] = ACTIONS(9654), + [sym_end_statement] = ACTIONS(9656), + [aux_sym_on_goto_statement_token1] = ACTIONS(9654), + [aux_sym_on_goto_statement_token2] = ACTIONS(9654), + [aux_sym_on_error_statement_token2] = ACTIONS(9654), + [sym__ambiguous_redim_statement] = ACTIONS(9656), + [aux_sym_erase_statement_token1] = ACTIONS(9654), + [aux_sym_open_statement_token1] = ACTIONS(9654), + [aux_sym_file_mode_token2] = ACTIONS(9654), + [aux_sym_file_access_token2] = ACTIONS(9654), + [aux_sym_file_lock_token2] = ACTIONS(9654), + [aux_sym_print_statement_token1] = ACTIONS(9654), + [anon_sym_PLUS] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(9654), + [anon_sym_QMARK] = ACTIONS(9656), + [aux_sym_close_statement_token1] = ACTIONS(9654), + [aux_sym_put_statement_token1] = ACTIONS(9654), + [aux_sym_unlock_statement_token1] = ACTIONS(9654), + [aux_sym_seek_statement_token1] = ACTIONS(9654), + [sym_reset_statement] = ACTIONS(9654), + [aux_sym_raise_event_statement_token1] = ACTIONS(9654), + [sym_stop_statement] = ACTIONS(9654), + [sym_beep_statement] = ACTIONS(9654), + [aux_sym_unload_statement_token1] = ACTIONS(9654), + [aux_sym_def_type_statement_token1] = ACTIONS(9654), + [aux_sym_def_type_statement_token2] = ACTIONS(9654), + [aux_sym_def_type_statement_token3] = ACTIONS(9654), + [aux_sym_def_type_statement_token4] = ACTIONS(9654), + [aux_sym_def_type_statement_token5] = ACTIONS(9654), + [aux_sym_def_type_statement_token6] = ACTIONS(9654), + [aux_sym_def_type_statement_token7] = ACTIONS(9654), + [aux_sym_def_type_statement_token8] = ACTIONS(9654), + [aux_sym_def_type_statement_token9] = ACTIONS(9654), + [aux_sym_def_type_statement_token10] = ACTIONS(9654), + [aux_sym_def_type_statement_token11] = ACTIONS(9654), + [aux_sym_def_type_statement_token12] = ACTIONS(9654), + [aux_sym_def_type_statement_token13] = ACTIONS(9654), + [aux_sym_def_type_statement_token14] = ACTIONS(9654), + [aux_sym_call_statement_token1] = ACTIONS(9654), + [sym__ambiguous_call_statement] = ACTIONS(9654), + [aux_sym_addressof_expression_token1] = ACTIONS(9654), + [aux_sym_type_of_expression_token1] = ACTIONS(9654), + [aux_sym_unary_expression_token1] = ACTIONS(9654), + [sym_string_literal] = ACTIONS(9656), + [sym_number_literal] = ACTIONS(9656), + [aux_sym_boolean_literal_token1] = ACTIONS(9654), + [aux_sym_boolean_literal_token2] = ACTIONS(9654), + [sym_nothing_literal] = ACTIONS(9654), + [sym_null_literal] = ACTIONS(9654), + [sym_empty_literal] = ACTIONS(9654), + [sym_date_literal] = ACTIONS(9656), + [anon_sym_POUND] = ACTIONS(9654), + }, + [STATE(7084)] = { + [sym_identifier] = ACTIONS(9500), + [sym_newline] = ACTIONS(9502), + [anon_sym_COLON] = ACTIONS(9502), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9500), + [aux_sym_frm_property_statement_token1] = ACTIONS(9500), + [anon_sym_DOT] = ACTIONS(9500), + [anon_sym_BANG] = ACTIONS(9502), + [aux_sym__attribute_identifier_token1] = ACTIONS(9500), + [aux_sym_option_statement_token3] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9500), + [aux_sym_preprocessor_const_token1] = ACTIONS(9500), + [sym_static_modifier] = ACTIONS(9500), + [sym__dim_keyword] = ACTIONS(9500), + [sym__redim_keyword] = ACTIONS(9500), + [aux_sym_get_accessor_token1] = ACTIONS(9500), + [aux_sym_set_accessor_token1] = ACTIONS(9500), + [aux_sym_const_declaration_token1] = ACTIONS(9500), + [anon_sym_LPAREN] = ACTIONS(9502), + [aux_sym_as_type_clause_token2] = ACTIONS(9500), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9500), + [aux_sym_visibility_token1] = ACTIONS(9500), + [aux_sym_visibility_token2] = ACTIONS(9500), + [aux_sym_elseif_fragment_token1] = ACTIONS(9500), + [aux_sym_else_fragment_token1] = ACTIONS(9500), + [aux_sym_select_statement_token1] = ACTIONS(9500), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9500), + [aux_sym__for_header_token1] = ACTIONS(9500), + [aux_sym_do_statement_token1] = ACTIONS(9500), + [aux_sym_do_condition_token1] = ACTIONS(9500), + [aux_sym_with_statement_token1] = ACTIONS(9500), + [aux_sym_exit_statement_token1] = ACTIONS(9500), + [sym_end_statement] = ACTIONS(9502), + [aux_sym_on_goto_statement_token1] = ACTIONS(9500), + [aux_sym_on_goto_statement_token2] = ACTIONS(9500), + [aux_sym_on_error_statement_token2] = ACTIONS(9500), + [sym__ambiguous_redim_statement] = ACTIONS(9502), + [aux_sym_erase_statement_token1] = ACTIONS(9500), + [aux_sym_open_statement_token1] = ACTIONS(9500), + [aux_sym_file_mode_token2] = ACTIONS(9500), + [aux_sym_file_access_token2] = ACTIONS(9500), + [aux_sym_file_lock_token2] = ACTIONS(9500), + [aux_sym_print_statement_token1] = ACTIONS(9500), + [anon_sym_PLUS] = ACTIONS(9502), + [anon_sym_DASH] = ACTIONS(9500), + [anon_sym_QMARK] = ACTIONS(9502), + [aux_sym_close_statement_token1] = ACTIONS(9500), + [aux_sym_put_statement_token1] = ACTIONS(9500), + [aux_sym_unlock_statement_token1] = ACTIONS(9500), + [aux_sym_seek_statement_token1] = ACTIONS(9500), + [sym_reset_statement] = ACTIONS(9500), + [aux_sym_raise_event_statement_token1] = ACTIONS(9500), + [sym_stop_statement] = ACTIONS(9500), + [sym_beep_statement] = ACTIONS(9500), + [aux_sym_unload_statement_token1] = ACTIONS(9500), + [aux_sym_def_type_statement_token1] = ACTIONS(9500), + [aux_sym_def_type_statement_token2] = ACTIONS(9500), + [aux_sym_def_type_statement_token3] = ACTIONS(9500), + [aux_sym_def_type_statement_token4] = ACTIONS(9500), + [aux_sym_def_type_statement_token5] = ACTIONS(9500), + [aux_sym_def_type_statement_token6] = ACTIONS(9500), + [aux_sym_def_type_statement_token7] = ACTIONS(9500), + [aux_sym_def_type_statement_token8] = ACTIONS(9500), + [aux_sym_def_type_statement_token9] = ACTIONS(9500), + [aux_sym_def_type_statement_token10] = ACTIONS(9500), + [aux_sym_def_type_statement_token11] = ACTIONS(9500), + [aux_sym_def_type_statement_token12] = ACTIONS(9500), + [aux_sym_def_type_statement_token13] = ACTIONS(9500), + [aux_sym_def_type_statement_token14] = ACTIONS(9500), + [aux_sym_call_statement_token1] = ACTIONS(9500), + [sym__ambiguous_call_statement] = ACTIONS(9500), + [aux_sym_addressof_expression_token1] = ACTIONS(9500), + [aux_sym_type_of_expression_token1] = ACTIONS(9500), + [aux_sym_unary_expression_token1] = ACTIONS(9500), + [sym_string_literal] = ACTIONS(9502), + [sym_number_literal] = ACTIONS(9502), + [aux_sym_boolean_literal_token1] = ACTIONS(9500), + [aux_sym_boolean_literal_token2] = ACTIONS(9500), + [sym_nothing_literal] = ACTIONS(9500), + [sym_null_literal] = ACTIONS(9500), + [sym_empty_literal] = ACTIONS(9500), + [sym_date_literal] = ACTIONS(9502), + [anon_sym_POUND] = ACTIONS(9500), + }, + [STATE(7085)] = { + [sym_identifier] = ACTIONS(9180), + [sym_newline] = ACTIONS(9182), + [anon_sym_COLON] = ACTIONS(9182), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9180), + [aux_sym_frm_property_statement_token1] = ACTIONS(9180), + [anon_sym_DOT] = ACTIONS(9180), + [anon_sym_BANG] = ACTIONS(9182), + [aux_sym__attribute_identifier_token1] = ACTIONS(9180), + [aux_sym_option_statement_token3] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9180), + [aux_sym_preprocessor_const_token1] = ACTIONS(9180), + [sym_static_modifier] = ACTIONS(9180), + [sym__dim_keyword] = ACTIONS(9180), + [sym__redim_keyword] = ACTIONS(9180), + [aux_sym_get_accessor_token1] = ACTIONS(9180), + [aux_sym_set_accessor_token1] = ACTIONS(9180), + [aux_sym_const_declaration_token1] = ACTIONS(9180), + [anon_sym_LPAREN] = ACTIONS(9182), + [aux_sym_as_type_clause_token2] = ACTIONS(9180), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9180), + [aux_sym_visibility_token1] = ACTIONS(9180), + [aux_sym_visibility_token2] = ACTIONS(9180), + [aux_sym_elseif_fragment_token1] = ACTIONS(9180), + [aux_sym_else_fragment_token1] = ACTIONS(9180), + [aux_sym_select_statement_token1] = ACTIONS(9180), + [aux_sym__for_header_token1] = ACTIONS(9180), + [aux_sym_do_statement_token1] = ACTIONS(9180), + [aux_sym_do_statement_token2] = ACTIONS(9180), + [aux_sym_do_condition_token1] = ACTIONS(9180), + [aux_sym_with_statement_token1] = ACTIONS(9180), + [aux_sym_exit_statement_token1] = ACTIONS(9180), + [sym_end_statement] = ACTIONS(9182), + [aux_sym_on_goto_statement_token1] = ACTIONS(9180), + [aux_sym_on_goto_statement_token2] = ACTIONS(9180), + [aux_sym_on_error_statement_token2] = ACTIONS(9180), + [sym__ambiguous_redim_statement] = ACTIONS(9182), + [aux_sym_erase_statement_token1] = ACTIONS(9180), + [aux_sym_open_statement_token1] = ACTIONS(9180), + [aux_sym_file_mode_token2] = ACTIONS(9180), + [aux_sym_file_access_token2] = ACTIONS(9180), + [aux_sym_file_lock_token2] = ACTIONS(9180), + [aux_sym_print_statement_token1] = ACTIONS(9180), + [anon_sym_PLUS] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9180), + [anon_sym_QMARK] = ACTIONS(9182), + [aux_sym_close_statement_token1] = ACTIONS(9180), + [aux_sym_put_statement_token1] = ACTIONS(9180), + [aux_sym_unlock_statement_token1] = ACTIONS(9180), + [aux_sym_seek_statement_token1] = ACTIONS(9180), + [sym_reset_statement] = ACTIONS(9180), + [aux_sym_raise_event_statement_token1] = ACTIONS(9180), + [sym_stop_statement] = ACTIONS(9180), + [sym_beep_statement] = ACTIONS(9180), + [aux_sym_unload_statement_token1] = ACTIONS(9180), + [aux_sym_def_type_statement_token1] = ACTIONS(9180), + [aux_sym_def_type_statement_token2] = ACTIONS(9180), + [aux_sym_def_type_statement_token3] = ACTIONS(9180), + [aux_sym_def_type_statement_token4] = ACTIONS(9180), + [aux_sym_def_type_statement_token5] = ACTIONS(9180), + [aux_sym_def_type_statement_token6] = ACTIONS(9180), + [aux_sym_def_type_statement_token7] = ACTIONS(9180), + [aux_sym_def_type_statement_token8] = ACTIONS(9180), + [aux_sym_def_type_statement_token9] = ACTIONS(9180), + [aux_sym_def_type_statement_token10] = ACTIONS(9180), + [aux_sym_def_type_statement_token11] = ACTIONS(9180), + [aux_sym_def_type_statement_token12] = ACTIONS(9180), + [aux_sym_def_type_statement_token13] = ACTIONS(9180), + [aux_sym_def_type_statement_token14] = ACTIONS(9180), + [aux_sym_call_statement_token1] = ACTIONS(9180), + [sym__ambiguous_call_statement] = ACTIONS(9180), + [aux_sym_addressof_expression_token1] = ACTIONS(9180), + [aux_sym_type_of_expression_token1] = ACTIONS(9180), + [aux_sym_unary_expression_token1] = ACTIONS(9180), + [sym_string_literal] = ACTIONS(9182), + [sym_number_literal] = ACTIONS(9182), + [aux_sym_boolean_literal_token1] = ACTIONS(9180), + [aux_sym_boolean_literal_token2] = ACTIONS(9180), + [sym_nothing_literal] = ACTIONS(9180), + [sym_null_literal] = ACTIONS(9180), + [sym_empty_literal] = ACTIONS(9180), + [sym_date_literal] = ACTIONS(9182), + [anon_sym_POUND] = ACTIONS(9180), + }, + [STATE(7086)] = { + [sym_identifier] = ACTIONS(9500), + [sym_newline] = ACTIONS(9502), + [anon_sym_COLON] = ACTIONS(9502), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9500), + [aux_sym_frm_property_statement_token1] = ACTIONS(9500), + [anon_sym_DOT] = ACTIONS(9500), + [anon_sym_BANG] = ACTIONS(9502), + [aux_sym__attribute_identifier_token1] = ACTIONS(9500), + [aux_sym_option_statement_token3] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9500), + [aux_sym_preprocessor_const_token1] = ACTIONS(9500), + [sym_static_modifier] = ACTIONS(9500), + [sym__dim_keyword] = ACTIONS(9500), + [sym__redim_keyword] = ACTIONS(9500), + [aux_sym_get_accessor_token1] = ACTIONS(9500), + [aux_sym_set_accessor_token1] = ACTIONS(9500), + [aux_sym_const_declaration_token1] = ACTIONS(9500), + [anon_sym_LPAREN] = ACTIONS(9502), + [aux_sym_as_type_clause_token2] = ACTIONS(9500), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9500), + [aux_sym_visibility_token1] = ACTIONS(9500), + [aux_sym_visibility_token2] = ACTIONS(9500), + [aux_sym_elseif_fragment_token1] = ACTIONS(9500), + [aux_sym_else_fragment_token1] = ACTIONS(9500), + [aux_sym_select_statement_token1] = ACTIONS(9500), + [aux_sym__for_header_token1] = ACTIONS(9500), + [aux_sym_do_statement_token1] = ACTIONS(9500), + [aux_sym_do_statement_token2] = ACTIONS(9500), + [aux_sym_do_condition_token1] = ACTIONS(9500), + [aux_sym_with_statement_token1] = ACTIONS(9500), + [aux_sym_exit_statement_token1] = ACTIONS(9500), + [sym_end_statement] = ACTIONS(9502), + [aux_sym_on_goto_statement_token1] = ACTIONS(9500), + [aux_sym_on_goto_statement_token2] = ACTIONS(9500), + [aux_sym_on_error_statement_token2] = ACTIONS(9500), + [sym__ambiguous_redim_statement] = ACTIONS(9502), + [aux_sym_erase_statement_token1] = ACTIONS(9500), + [aux_sym_open_statement_token1] = ACTIONS(9500), + [aux_sym_file_mode_token2] = ACTIONS(9500), + [aux_sym_file_access_token2] = ACTIONS(9500), + [aux_sym_file_lock_token2] = ACTIONS(9500), + [aux_sym_print_statement_token1] = ACTIONS(9500), + [anon_sym_PLUS] = ACTIONS(9502), + [anon_sym_DASH] = ACTIONS(9500), + [anon_sym_QMARK] = ACTIONS(9502), + [aux_sym_close_statement_token1] = ACTIONS(9500), + [aux_sym_put_statement_token1] = ACTIONS(9500), + [aux_sym_unlock_statement_token1] = ACTIONS(9500), + [aux_sym_seek_statement_token1] = ACTIONS(9500), + [sym_reset_statement] = ACTIONS(9500), + [aux_sym_raise_event_statement_token1] = ACTIONS(9500), + [sym_stop_statement] = ACTIONS(9500), + [sym_beep_statement] = ACTIONS(9500), + [aux_sym_unload_statement_token1] = ACTIONS(9500), + [aux_sym_def_type_statement_token1] = ACTIONS(9500), + [aux_sym_def_type_statement_token2] = ACTIONS(9500), + [aux_sym_def_type_statement_token3] = ACTIONS(9500), + [aux_sym_def_type_statement_token4] = ACTIONS(9500), + [aux_sym_def_type_statement_token5] = ACTIONS(9500), + [aux_sym_def_type_statement_token6] = ACTIONS(9500), + [aux_sym_def_type_statement_token7] = ACTIONS(9500), + [aux_sym_def_type_statement_token8] = ACTIONS(9500), + [aux_sym_def_type_statement_token9] = ACTIONS(9500), + [aux_sym_def_type_statement_token10] = ACTIONS(9500), + [aux_sym_def_type_statement_token11] = ACTIONS(9500), + [aux_sym_def_type_statement_token12] = ACTIONS(9500), + [aux_sym_def_type_statement_token13] = ACTIONS(9500), + [aux_sym_def_type_statement_token14] = ACTIONS(9500), + [aux_sym_call_statement_token1] = ACTIONS(9500), + [sym__ambiguous_call_statement] = ACTIONS(9500), + [aux_sym_addressof_expression_token1] = ACTIONS(9500), + [aux_sym_type_of_expression_token1] = ACTIONS(9500), + [aux_sym_unary_expression_token1] = ACTIONS(9500), + [sym_string_literal] = ACTIONS(9502), + [sym_number_literal] = ACTIONS(9502), + [aux_sym_boolean_literal_token1] = ACTIONS(9500), + [aux_sym_boolean_literal_token2] = ACTIONS(9500), + [sym_nothing_literal] = ACTIONS(9500), + [sym_null_literal] = ACTIONS(9500), + [sym_empty_literal] = ACTIONS(9500), + [sym_date_literal] = ACTIONS(9502), + [anon_sym_POUND] = ACTIONS(9500), + }, + [STATE(7087)] = { + [sym_identifier] = ACTIONS(9662), + [sym_newline] = ACTIONS(9664), + [anon_sym_COLON] = ACTIONS(9664), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9662), + [aux_sym_frm_property_statement_token1] = ACTIONS(9662), + [anon_sym_DOT] = ACTIONS(9662), + [anon_sym_BANG] = ACTIONS(9664), + [aux_sym__attribute_identifier_token1] = ACTIONS(9662), + [aux_sym_option_statement_token3] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9662), + [aux_sym_preprocessor_const_token1] = ACTIONS(9662), + [sym_static_modifier] = ACTIONS(9662), + [sym__dim_keyword] = ACTIONS(9662), + [sym__redim_keyword] = ACTIONS(9662), + [aux_sym_get_accessor_token1] = ACTIONS(9662), + [aux_sym_set_accessor_token1] = ACTIONS(9662), + [aux_sym_const_declaration_token1] = ACTIONS(9662), + [anon_sym_LPAREN] = ACTIONS(9664), + [aux_sym_as_type_clause_token2] = ACTIONS(9662), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9662), + [aux_sym_visibility_token1] = ACTIONS(9662), + [aux_sym_visibility_token2] = ACTIONS(9662), + [aux_sym_elseif_fragment_token1] = ACTIONS(9662), + [aux_sym_else_fragment_token1] = ACTIONS(9662), + [aux_sym_select_statement_token1] = ACTIONS(9662), + [aux_sym__for_header_token1] = ACTIONS(9662), + [aux_sym_do_statement_token1] = ACTIONS(9662), + [aux_sym_do_condition_token1] = ACTIONS(9662), + [aux_sym_while_statement_token1] = ACTIONS(9662), + [aux_sym_with_statement_token1] = ACTIONS(9662), + [aux_sym_exit_statement_token1] = ACTIONS(9662), + [sym_end_statement] = ACTIONS(9664), + [aux_sym_on_goto_statement_token1] = ACTIONS(9662), + [aux_sym_on_goto_statement_token2] = ACTIONS(9662), + [aux_sym_on_error_statement_token2] = ACTIONS(9662), + [sym__ambiguous_redim_statement] = ACTIONS(9664), + [aux_sym_erase_statement_token1] = ACTIONS(9662), + [aux_sym_open_statement_token1] = ACTIONS(9662), + [aux_sym_file_mode_token2] = ACTIONS(9662), + [aux_sym_file_access_token2] = ACTIONS(9662), + [aux_sym_file_lock_token2] = ACTIONS(9662), + [aux_sym_print_statement_token1] = ACTIONS(9662), + [anon_sym_PLUS] = ACTIONS(9664), + [anon_sym_DASH] = ACTIONS(9662), + [anon_sym_QMARK] = ACTIONS(9664), + [aux_sym_close_statement_token1] = ACTIONS(9662), + [aux_sym_put_statement_token1] = ACTIONS(9662), + [aux_sym_unlock_statement_token1] = ACTIONS(9662), + [aux_sym_seek_statement_token1] = ACTIONS(9662), + [sym_reset_statement] = ACTIONS(9662), + [aux_sym_raise_event_statement_token1] = ACTIONS(9662), + [sym_stop_statement] = ACTIONS(9662), + [sym_beep_statement] = ACTIONS(9662), + [aux_sym_unload_statement_token1] = ACTIONS(9662), + [aux_sym_def_type_statement_token1] = ACTIONS(9662), + [aux_sym_def_type_statement_token2] = ACTIONS(9662), + [aux_sym_def_type_statement_token3] = ACTIONS(9662), + [aux_sym_def_type_statement_token4] = ACTIONS(9662), + [aux_sym_def_type_statement_token5] = ACTIONS(9662), + [aux_sym_def_type_statement_token6] = ACTIONS(9662), + [aux_sym_def_type_statement_token7] = ACTIONS(9662), + [aux_sym_def_type_statement_token8] = ACTIONS(9662), + [aux_sym_def_type_statement_token9] = ACTIONS(9662), + [aux_sym_def_type_statement_token10] = ACTIONS(9662), + [aux_sym_def_type_statement_token11] = ACTIONS(9662), + [aux_sym_def_type_statement_token12] = ACTIONS(9662), + [aux_sym_def_type_statement_token13] = ACTIONS(9662), + [aux_sym_def_type_statement_token14] = ACTIONS(9662), + [aux_sym_call_statement_token1] = ACTIONS(9662), + [sym__ambiguous_call_statement] = ACTIONS(9662), + [aux_sym_addressof_expression_token1] = ACTIONS(9662), + [aux_sym_type_of_expression_token1] = ACTIONS(9662), + [aux_sym_unary_expression_token1] = ACTIONS(9662), + [sym_string_literal] = ACTIONS(9664), + [sym_number_literal] = ACTIONS(9664), + [aux_sym_boolean_literal_token1] = ACTIONS(9662), + [aux_sym_boolean_literal_token2] = ACTIONS(9662), + [sym_nothing_literal] = ACTIONS(9662), + [sym_null_literal] = ACTIONS(9662), + [sym_empty_literal] = ACTIONS(9662), + [sym_date_literal] = ACTIONS(9664), + [anon_sym_POUND] = ACTIONS(9662), + }, + [STATE(7088)] = { + [sym_identifier] = ACTIONS(9666), + [sym_newline] = ACTIONS(9668), + [anon_sym_COLON] = ACTIONS(9668), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9666), + [aux_sym_frm_property_statement_token1] = ACTIONS(9666), + [anon_sym_DOT] = ACTIONS(9666), + [anon_sym_BANG] = ACTIONS(9668), + [aux_sym__attribute_identifier_token1] = ACTIONS(9666), + [aux_sym_option_statement_token3] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9666), + [aux_sym_preprocessor_const_token1] = ACTIONS(9666), + [sym_static_modifier] = ACTIONS(9666), + [sym__dim_keyword] = ACTIONS(9666), + [sym__redim_keyword] = ACTIONS(9666), + [aux_sym_get_accessor_token1] = ACTIONS(9666), + [aux_sym_set_accessor_token1] = ACTIONS(9666), + [aux_sym_const_declaration_token1] = ACTIONS(9666), + [anon_sym_LPAREN] = ACTIONS(9668), + [aux_sym_as_type_clause_token2] = ACTIONS(9666), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9666), + [aux_sym_visibility_token1] = ACTIONS(9666), + [aux_sym_visibility_token2] = ACTIONS(9666), + [aux_sym_elseif_fragment_token1] = ACTIONS(9666), + [aux_sym_else_fragment_token1] = ACTIONS(9666), + [aux_sym_select_statement_token1] = ACTIONS(9666), + [aux_sym__for_header_token1] = ACTIONS(9666), + [aux_sym_do_statement_token1] = ACTIONS(9666), + [aux_sym_do_condition_token1] = ACTIONS(9666), + [aux_sym_while_statement_token1] = ACTIONS(9666), + [aux_sym_with_statement_token1] = ACTIONS(9666), + [aux_sym_exit_statement_token1] = ACTIONS(9666), + [sym_end_statement] = ACTIONS(9668), + [aux_sym_on_goto_statement_token1] = ACTIONS(9666), + [aux_sym_on_goto_statement_token2] = ACTIONS(9666), + [aux_sym_on_error_statement_token2] = ACTIONS(9666), + [sym__ambiguous_redim_statement] = ACTIONS(9668), + [aux_sym_erase_statement_token1] = ACTIONS(9666), + [aux_sym_open_statement_token1] = ACTIONS(9666), + [aux_sym_file_mode_token2] = ACTIONS(9666), + [aux_sym_file_access_token2] = ACTIONS(9666), + [aux_sym_file_lock_token2] = ACTIONS(9666), + [aux_sym_print_statement_token1] = ACTIONS(9666), + [anon_sym_PLUS] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(9666), + [anon_sym_QMARK] = ACTIONS(9668), + [aux_sym_close_statement_token1] = ACTIONS(9666), + [aux_sym_put_statement_token1] = ACTIONS(9666), + [aux_sym_unlock_statement_token1] = ACTIONS(9666), + [aux_sym_seek_statement_token1] = ACTIONS(9666), + [sym_reset_statement] = ACTIONS(9666), + [aux_sym_raise_event_statement_token1] = ACTIONS(9666), + [sym_stop_statement] = ACTIONS(9666), + [sym_beep_statement] = ACTIONS(9666), + [aux_sym_unload_statement_token1] = ACTIONS(9666), + [aux_sym_def_type_statement_token1] = ACTIONS(9666), + [aux_sym_def_type_statement_token2] = ACTIONS(9666), + [aux_sym_def_type_statement_token3] = ACTIONS(9666), + [aux_sym_def_type_statement_token4] = ACTIONS(9666), + [aux_sym_def_type_statement_token5] = ACTIONS(9666), + [aux_sym_def_type_statement_token6] = ACTIONS(9666), + [aux_sym_def_type_statement_token7] = ACTIONS(9666), + [aux_sym_def_type_statement_token8] = ACTIONS(9666), + [aux_sym_def_type_statement_token9] = ACTIONS(9666), + [aux_sym_def_type_statement_token10] = ACTIONS(9666), + [aux_sym_def_type_statement_token11] = ACTIONS(9666), + [aux_sym_def_type_statement_token12] = ACTIONS(9666), + [aux_sym_def_type_statement_token13] = ACTIONS(9666), + [aux_sym_def_type_statement_token14] = ACTIONS(9666), + [aux_sym_call_statement_token1] = ACTIONS(9666), + [sym__ambiguous_call_statement] = ACTIONS(9666), + [aux_sym_addressof_expression_token1] = ACTIONS(9666), + [aux_sym_type_of_expression_token1] = ACTIONS(9666), + [aux_sym_unary_expression_token1] = ACTIONS(9666), + [sym_string_literal] = ACTIONS(9668), + [sym_number_literal] = ACTIONS(9668), + [aux_sym_boolean_literal_token1] = ACTIONS(9666), + [aux_sym_boolean_literal_token2] = ACTIONS(9666), + [sym_nothing_literal] = ACTIONS(9666), + [sym_null_literal] = ACTIONS(9666), + [sym_empty_literal] = ACTIONS(9666), + [sym_date_literal] = ACTIONS(9668), + [anon_sym_POUND] = ACTIONS(9666), + }, + [STATE(7089)] = { + [sym_identifier] = ACTIONS(9506), + [sym_newline] = ACTIONS(9508), + [anon_sym_COLON] = ACTIONS(9508), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9506), + [aux_sym_frm_property_statement_token1] = ACTIONS(9506), + [anon_sym_DOT] = ACTIONS(9506), + [anon_sym_BANG] = ACTIONS(9508), + [aux_sym__attribute_identifier_token1] = ACTIONS(9506), + [aux_sym_option_statement_token3] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9506), + [aux_sym_preprocessor_const_token1] = ACTIONS(9506), + [sym_static_modifier] = ACTIONS(9506), + [sym__dim_keyword] = ACTIONS(9506), + [sym__redim_keyword] = ACTIONS(9506), + [aux_sym_get_accessor_token1] = ACTIONS(9506), + [aux_sym_set_accessor_token1] = ACTIONS(9506), + [aux_sym_const_declaration_token1] = ACTIONS(9506), + [anon_sym_LPAREN] = ACTIONS(9508), + [aux_sym_as_type_clause_token2] = ACTIONS(9506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9506), + [aux_sym_visibility_token1] = ACTIONS(9506), + [aux_sym_visibility_token2] = ACTIONS(9506), + [aux_sym_elseif_fragment_token1] = ACTIONS(9506), + [aux_sym_else_fragment_token1] = ACTIONS(9506), + [aux_sym_select_statement_token1] = ACTIONS(9506), + [aux_sym__for_header_token1] = ACTIONS(9506), + [aux_sym_do_statement_token1] = ACTIONS(9506), + [aux_sym_do_statement_token2] = ACTIONS(9506), + [aux_sym_do_condition_token1] = ACTIONS(9506), + [aux_sym_with_statement_token1] = ACTIONS(9506), + [aux_sym_exit_statement_token1] = ACTIONS(9506), + [sym_end_statement] = ACTIONS(9508), + [aux_sym_on_goto_statement_token1] = ACTIONS(9506), + [aux_sym_on_goto_statement_token2] = ACTIONS(9506), + [aux_sym_on_error_statement_token2] = ACTIONS(9506), + [sym__ambiguous_redim_statement] = ACTIONS(9508), + [aux_sym_erase_statement_token1] = ACTIONS(9506), + [aux_sym_open_statement_token1] = ACTIONS(9506), + [aux_sym_file_mode_token2] = ACTIONS(9506), + [aux_sym_file_access_token2] = ACTIONS(9506), + [aux_sym_file_lock_token2] = ACTIONS(9506), + [aux_sym_print_statement_token1] = ACTIONS(9506), + [anon_sym_PLUS] = ACTIONS(9508), + [anon_sym_DASH] = ACTIONS(9506), + [anon_sym_QMARK] = ACTIONS(9508), + [aux_sym_close_statement_token1] = ACTIONS(9506), + [aux_sym_put_statement_token1] = ACTIONS(9506), + [aux_sym_unlock_statement_token1] = ACTIONS(9506), + [aux_sym_seek_statement_token1] = ACTIONS(9506), + [sym_reset_statement] = ACTIONS(9506), + [aux_sym_raise_event_statement_token1] = ACTIONS(9506), + [sym_stop_statement] = ACTIONS(9506), + [sym_beep_statement] = ACTIONS(9506), + [aux_sym_unload_statement_token1] = ACTIONS(9506), + [aux_sym_def_type_statement_token1] = ACTIONS(9506), + [aux_sym_def_type_statement_token2] = ACTIONS(9506), + [aux_sym_def_type_statement_token3] = ACTIONS(9506), + [aux_sym_def_type_statement_token4] = ACTIONS(9506), + [aux_sym_def_type_statement_token5] = ACTIONS(9506), + [aux_sym_def_type_statement_token6] = ACTIONS(9506), + [aux_sym_def_type_statement_token7] = ACTIONS(9506), + [aux_sym_def_type_statement_token8] = ACTIONS(9506), + [aux_sym_def_type_statement_token9] = ACTIONS(9506), + [aux_sym_def_type_statement_token10] = ACTIONS(9506), + [aux_sym_def_type_statement_token11] = ACTIONS(9506), + [aux_sym_def_type_statement_token12] = ACTIONS(9506), + [aux_sym_def_type_statement_token13] = ACTIONS(9506), + [aux_sym_def_type_statement_token14] = ACTIONS(9506), + [aux_sym_call_statement_token1] = ACTIONS(9506), + [sym__ambiguous_call_statement] = ACTIONS(9506), + [aux_sym_addressof_expression_token1] = ACTIONS(9506), + [aux_sym_type_of_expression_token1] = ACTIONS(9506), + [aux_sym_unary_expression_token1] = ACTIONS(9506), + [sym_string_literal] = ACTIONS(9508), + [sym_number_literal] = ACTIONS(9508), + [aux_sym_boolean_literal_token1] = ACTIONS(9506), + [aux_sym_boolean_literal_token2] = ACTIONS(9506), + [sym_nothing_literal] = ACTIONS(9506), + [sym_null_literal] = ACTIONS(9506), + [sym_empty_literal] = ACTIONS(9506), + [sym_date_literal] = ACTIONS(9508), + [anon_sym_POUND] = ACTIONS(9506), + }, + [STATE(7090)] = { + [sym_identifier] = ACTIONS(9510), + [sym_newline] = ACTIONS(9512), + [anon_sym_COLON] = ACTIONS(9512), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9510), + [aux_sym_frm_property_statement_token1] = ACTIONS(9510), + [anon_sym_DOT] = ACTIONS(9510), + [anon_sym_BANG] = ACTIONS(9512), + [aux_sym__attribute_identifier_token1] = ACTIONS(9510), + [aux_sym_option_statement_token3] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9510), + [aux_sym_preprocessor_const_token1] = ACTIONS(9510), + [sym_static_modifier] = ACTIONS(9510), + [sym__dim_keyword] = ACTIONS(9510), + [sym__redim_keyword] = ACTIONS(9510), + [aux_sym_get_accessor_token1] = ACTIONS(9510), + [aux_sym_set_accessor_token1] = ACTIONS(9510), + [aux_sym_const_declaration_token1] = ACTIONS(9510), + [anon_sym_LPAREN] = ACTIONS(9512), + [aux_sym_as_type_clause_token2] = ACTIONS(9510), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9510), + [aux_sym_visibility_token1] = ACTIONS(9510), + [aux_sym_visibility_token2] = ACTIONS(9510), + [aux_sym_elseif_fragment_token1] = ACTIONS(9510), + [aux_sym_else_fragment_token1] = ACTIONS(9510), + [aux_sym_select_statement_token1] = ACTIONS(9510), + [aux_sym__for_header_token1] = ACTIONS(9510), + [aux_sym_do_statement_token1] = ACTIONS(9510), + [aux_sym_do_statement_token2] = ACTIONS(9510), + [aux_sym_do_condition_token1] = ACTIONS(9510), + [aux_sym_with_statement_token1] = ACTIONS(9510), + [aux_sym_exit_statement_token1] = ACTIONS(9510), + [sym_end_statement] = ACTIONS(9512), + [aux_sym_on_goto_statement_token1] = ACTIONS(9510), + [aux_sym_on_goto_statement_token2] = ACTIONS(9510), + [aux_sym_on_error_statement_token2] = ACTIONS(9510), + [sym__ambiguous_redim_statement] = ACTIONS(9512), + [aux_sym_erase_statement_token1] = ACTIONS(9510), + [aux_sym_open_statement_token1] = ACTIONS(9510), + [aux_sym_file_mode_token2] = ACTIONS(9510), + [aux_sym_file_access_token2] = ACTIONS(9510), + [aux_sym_file_lock_token2] = ACTIONS(9510), + [aux_sym_print_statement_token1] = ACTIONS(9510), + [anon_sym_PLUS] = ACTIONS(9512), + [anon_sym_DASH] = ACTIONS(9510), + [anon_sym_QMARK] = ACTIONS(9512), + [aux_sym_close_statement_token1] = ACTIONS(9510), + [aux_sym_put_statement_token1] = ACTIONS(9510), + [aux_sym_unlock_statement_token1] = ACTIONS(9510), + [aux_sym_seek_statement_token1] = ACTIONS(9510), + [sym_reset_statement] = ACTIONS(9510), + [aux_sym_raise_event_statement_token1] = ACTIONS(9510), + [sym_stop_statement] = ACTIONS(9510), + [sym_beep_statement] = ACTIONS(9510), + [aux_sym_unload_statement_token1] = ACTIONS(9510), + [aux_sym_def_type_statement_token1] = ACTIONS(9510), + [aux_sym_def_type_statement_token2] = ACTIONS(9510), + [aux_sym_def_type_statement_token3] = ACTIONS(9510), + [aux_sym_def_type_statement_token4] = ACTIONS(9510), + [aux_sym_def_type_statement_token5] = ACTIONS(9510), + [aux_sym_def_type_statement_token6] = ACTIONS(9510), + [aux_sym_def_type_statement_token7] = ACTIONS(9510), + [aux_sym_def_type_statement_token8] = ACTIONS(9510), + [aux_sym_def_type_statement_token9] = ACTIONS(9510), + [aux_sym_def_type_statement_token10] = ACTIONS(9510), + [aux_sym_def_type_statement_token11] = ACTIONS(9510), + [aux_sym_def_type_statement_token12] = ACTIONS(9510), + [aux_sym_def_type_statement_token13] = ACTIONS(9510), + [aux_sym_def_type_statement_token14] = ACTIONS(9510), + [aux_sym_call_statement_token1] = ACTIONS(9510), + [sym__ambiguous_call_statement] = ACTIONS(9510), + [aux_sym_addressof_expression_token1] = ACTIONS(9510), + [aux_sym_type_of_expression_token1] = ACTIONS(9510), + [aux_sym_unary_expression_token1] = ACTIONS(9510), + [sym_string_literal] = ACTIONS(9512), + [sym_number_literal] = ACTIONS(9512), + [aux_sym_boolean_literal_token1] = ACTIONS(9510), + [aux_sym_boolean_literal_token2] = ACTIONS(9510), + [sym_nothing_literal] = ACTIONS(9510), + [sym_null_literal] = ACTIONS(9510), + [sym_empty_literal] = ACTIONS(9510), + [sym_date_literal] = ACTIONS(9512), + [anon_sym_POUND] = ACTIONS(9510), + }, + [STATE(7091)] = { + [sym_identifier] = ACTIONS(9670), + [sym_newline] = ACTIONS(9672), + [anon_sym_COLON] = ACTIONS(9672), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9670), + [aux_sym_frm_property_statement_token1] = ACTIONS(9670), + [anon_sym_DOT] = ACTIONS(9670), + [anon_sym_BANG] = ACTIONS(9672), + [aux_sym__attribute_identifier_token1] = ACTIONS(9670), + [aux_sym_option_statement_token3] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9670), + [aux_sym_preprocessor_const_token1] = ACTIONS(9670), + [sym_static_modifier] = ACTIONS(9670), + [sym__dim_keyword] = ACTIONS(9670), + [sym__redim_keyword] = ACTIONS(9670), + [aux_sym_get_accessor_token1] = ACTIONS(9670), + [aux_sym_set_accessor_token1] = ACTIONS(9670), + [aux_sym_const_declaration_token1] = ACTIONS(9670), + [anon_sym_LPAREN] = ACTIONS(9672), + [aux_sym_as_type_clause_token2] = ACTIONS(9670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9670), + [aux_sym_visibility_token1] = ACTIONS(9670), + [aux_sym_visibility_token2] = ACTIONS(9670), + [aux_sym_elseif_fragment_token1] = ACTIONS(9670), + [aux_sym_else_fragment_token1] = ACTIONS(9670), + [aux_sym_select_statement_token1] = ACTIONS(9670), + [aux_sym__for_header_token1] = ACTIONS(9670), + [aux_sym_do_statement_token1] = ACTIONS(9670), + [aux_sym_do_condition_token1] = ACTIONS(9670), + [aux_sym_while_statement_token1] = ACTIONS(9670), + [aux_sym_with_statement_token1] = ACTIONS(9670), + [aux_sym_exit_statement_token1] = ACTIONS(9670), + [sym_end_statement] = ACTIONS(9672), + [aux_sym_on_goto_statement_token1] = ACTIONS(9670), + [aux_sym_on_goto_statement_token2] = ACTIONS(9670), + [aux_sym_on_error_statement_token2] = ACTIONS(9670), + [sym__ambiguous_redim_statement] = ACTIONS(9672), + [aux_sym_erase_statement_token1] = ACTIONS(9670), + [aux_sym_open_statement_token1] = ACTIONS(9670), + [aux_sym_file_mode_token2] = ACTIONS(9670), + [aux_sym_file_access_token2] = ACTIONS(9670), + [aux_sym_file_lock_token2] = ACTIONS(9670), + [aux_sym_print_statement_token1] = ACTIONS(9670), + [anon_sym_PLUS] = ACTIONS(9672), + [anon_sym_DASH] = ACTIONS(9670), + [anon_sym_QMARK] = ACTIONS(9672), + [aux_sym_close_statement_token1] = ACTIONS(9670), + [aux_sym_put_statement_token1] = ACTIONS(9670), + [aux_sym_unlock_statement_token1] = ACTIONS(9670), + [aux_sym_seek_statement_token1] = ACTIONS(9670), + [sym_reset_statement] = ACTIONS(9670), + [aux_sym_raise_event_statement_token1] = ACTIONS(9670), + [sym_stop_statement] = ACTIONS(9670), + [sym_beep_statement] = ACTIONS(9670), + [aux_sym_unload_statement_token1] = ACTIONS(9670), + [aux_sym_def_type_statement_token1] = ACTIONS(9670), + [aux_sym_def_type_statement_token2] = ACTIONS(9670), + [aux_sym_def_type_statement_token3] = ACTIONS(9670), + [aux_sym_def_type_statement_token4] = ACTIONS(9670), + [aux_sym_def_type_statement_token5] = ACTIONS(9670), + [aux_sym_def_type_statement_token6] = ACTIONS(9670), + [aux_sym_def_type_statement_token7] = ACTIONS(9670), + [aux_sym_def_type_statement_token8] = ACTIONS(9670), + [aux_sym_def_type_statement_token9] = ACTIONS(9670), + [aux_sym_def_type_statement_token10] = ACTIONS(9670), + [aux_sym_def_type_statement_token11] = ACTIONS(9670), + [aux_sym_def_type_statement_token12] = ACTIONS(9670), + [aux_sym_def_type_statement_token13] = ACTIONS(9670), + [aux_sym_def_type_statement_token14] = ACTIONS(9670), + [aux_sym_call_statement_token1] = ACTIONS(9670), + [sym__ambiguous_call_statement] = ACTIONS(9670), + [aux_sym_addressof_expression_token1] = ACTIONS(9670), + [aux_sym_type_of_expression_token1] = ACTIONS(9670), + [aux_sym_unary_expression_token1] = ACTIONS(9670), + [sym_string_literal] = ACTIONS(9672), + [sym_number_literal] = ACTIONS(9672), + [aux_sym_boolean_literal_token1] = ACTIONS(9670), + [aux_sym_boolean_literal_token2] = ACTIONS(9670), + [sym_nothing_literal] = ACTIONS(9670), + [sym_null_literal] = ACTIONS(9670), + [sym_empty_literal] = ACTIONS(9670), + [sym_date_literal] = ACTIONS(9672), + [anon_sym_POUND] = ACTIONS(9670), + }, + [STATE(7092)] = { + [sym_identifier] = ACTIONS(9677), + [sym_newline] = ACTIONS(9679), + [anon_sym_COLON] = ACTIONS(9679), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9677), + [aux_sym_frm_property_statement_token1] = ACTIONS(9677), + [anon_sym_DOT] = ACTIONS(9677), + [anon_sym_BANG] = ACTIONS(9679), + [aux_sym__attribute_identifier_token1] = ACTIONS(9677), + [aux_sym_option_statement_token3] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9677), + [aux_sym_preprocessor_const_token1] = ACTIONS(9677), + [sym_static_modifier] = ACTIONS(9677), + [sym__dim_keyword] = ACTIONS(9677), + [sym__redim_keyword] = ACTIONS(9677), + [aux_sym_get_accessor_token1] = ACTIONS(9677), + [aux_sym_set_accessor_token1] = ACTIONS(9677), + [aux_sym_const_declaration_token1] = ACTIONS(9677), + [anon_sym_LPAREN] = ACTIONS(9679), + [aux_sym_as_type_clause_token2] = ACTIONS(9677), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9677), + [aux_sym_visibility_token1] = ACTIONS(9677), + [aux_sym_visibility_token2] = ACTIONS(9677), + [aux_sym_elseif_fragment_token1] = ACTIONS(9677), + [aux_sym_else_fragment_token1] = ACTIONS(9677), + [aux_sym_select_statement_token1] = ACTIONS(9677), + [aux_sym__for_header_token1] = ACTIONS(9677), + [aux_sym_do_statement_token1] = ACTIONS(9677), + [aux_sym_do_condition_token1] = ACTIONS(9677), + [aux_sym_while_statement_token1] = ACTIONS(9677), + [aux_sym_with_statement_token1] = ACTIONS(9677), + [aux_sym_exit_statement_token1] = ACTIONS(9677), + [sym_end_statement] = ACTIONS(9679), + [aux_sym_on_goto_statement_token1] = ACTIONS(9677), + [aux_sym_on_goto_statement_token2] = ACTIONS(9677), + [aux_sym_on_error_statement_token2] = ACTIONS(9677), + [sym__ambiguous_redim_statement] = ACTIONS(9679), + [aux_sym_erase_statement_token1] = ACTIONS(9677), + [aux_sym_open_statement_token1] = ACTIONS(9677), + [aux_sym_file_mode_token2] = ACTIONS(9677), + [aux_sym_file_access_token2] = ACTIONS(9677), + [aux_sym_file_lock_token2] = ACTIONS(9677), + [aux_sym_print_statement_token1] = ACTIONS(9677), + [anon_sym_PLUS] = ACTIONS(9679), + [anon_sym_DASH] = ACTIONS(9677), + [anon_sym_QMARK] = ACTIONS(9679), + [aux_sym_close_statement_token1] = ACTIONS(9677), + [aux_sym_put_statement_token1] = ACTIONS(9677), + [aux_sym_unlock_statement_token1] = ACTIONS(9677), + [aux_sym_seek_statement_token1] = ACTIONS(9677), + [sym_reset_statement] = ACTIONS(9677), + [aux_sym_raise_event_statement_token1] = ACTIONS(9677), + [sym_stop_statement] = ACTIONS(9677), + [sym_beep_statement] = ACTIONS(9677), + [aux_sym_unload_statement_token1] = ACTIONS(9677), + [aux_sym_def_type_statement_token1] = ACTIONS(9677), + [aux_sym_def_type_statement_token2] = ACTIONS(9677), + [aux_sym_def_type_statement_token3] = ACTIONS(9677), + [aux_sym_def_type_statement_token4] = ACTIONS(9677), + [aux_sym_def_type_statement_token5] = ACTIONS(9677), + [aux_sym_def_type_statement_token6] = ACTIONS(9677), + [aux_sym_def_type_statement_token7] = ACTIONS(9677), + [aux_sym_def_type_statement_token8] = ACTIONS(9677), + [aux_sym_def_type_statement_token9] = ACTIONS(9677), + [aux_sym_def_type_statement_token10] = ACTIONS(9677), + [aux_sym_def_type_statement_token11] = ACTIONS(9677), + [aux_sym_def_type_statement_token12] = ACTIONS(9677), + [aux_sym_def_type_statement_token13] = ACTIONS(9677), + [aux_sym_def_type_statement_token14] = ACTIONS(9677), + [aux_sym_call_statement_token1] = ACTIONS(9677), + [sym__ambiguous_call_statement] = ACTIONS(9677), + [aux_sym_addressof_expression_token1] = ACTIONS(9677), + [aux_sym_type_of_expression_token1] = ACTIONS(9677), + [aux_sym_unary_expression_token1] = ACTIONS(9677), + [sym_string_literal] = ACTIONS(9679), + [sym_number_literal] = ACTIONS(9679), + [aux_sym_boolean_literal_token1] = ACTIONS(9677), + [aux_sym_boolean_literal_token2] = ACTIONS(9677), + [sym_nothing_literal] = ACTIONS(9677), + [sym_null_literal] = ACTIONS(9677), + [sym_empty_literal] = ACTIONS(9677), + [sym_date_literal] = ACTIONS(9679), + [anon_sym_POUND] = ACTIONS(9677), + }, + [STATE(7093)] = { + [sym_identifier] = ACTIONS(9184), + [sym_newline] = ACTIONS(9186), + [anon_sym_COLON] = ACTIONS(9186), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9184), + [aux_sym_frm_property_statement_token1] = ACTIONS(9184), + [anon_sym_DOT] = ACTIONS(9184), + [anon_sym_BANG] = ACTIONS(9186), + [aux_sym__attribute_identifier_token1] = ACTIONS(9184), + [aux_sym_option_statement_token3] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9184), + [aux_sym_preprocessor_const_token1] = ACTIONS(9184), + [sym_static_modifier] = ACTIONS(9184), + [sym__dim_keyword] = ACTIONS(9184), + [sym__redim_keyword] = ACTIONS(9184), + [aux_sym_get_accessor_token1] = ACTIONS(9184), + [aux_sym_set_accessor_token1] = ACTIONS(9184), + [aux_sym_const_declaration_token1] = ACTIONS(9184), + [anon_sym_LPAREN] = ACTIONS(9186), + [aux_sym_as_type_clause_token2] = ACTIONS(9184), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9184), + [aux_sym_visibility_token1] = ACTIONS(9184), + [aux_sym_visibility_token2] = ACTIONS(9184), + [aux_sym_elseif_fragment_token1] = ACTIONS(9184), + [aux_sym_else_fragment_token1] = ACTIONS(9184), + [aux_sym_select_statement_token1] = ACTIONS(9184), + [aux_sym__for_header_token1] = ACTIONS(9184), + [aux_sym_do_statement_token1] = ACTIONS(9184), + [aux_sym_do_statement_token2] = ACTIONS(9184), + [aux_sym_do_condition_token1] = ACTIONS(9184), + [aux_sym_with_statement_token1] = ACTIONS(9184), + [aux_sym_exit_statement_token1] = ACTIONS(9184), + [sym_end_statement] = ACTIONS(9186), + [aux_sym_on_goto_statement_token1] = ACTIONS(9184), + [aux_sym_on_goto_statement_token2] = ACTIONS(9184), + [aux_sym_on_error_statement_token2] = ACTIONS(9184), + [sym__ambiguous_redim_statement] = ACTIONS(9186), + [aux_sym_erase_statement_token1] = ACTIONS(9184), + [aux_sym_open_statement_token1] = ACTIONS(9184), + [aux_sym_file_mode_token2] = ACTIONS(9184), + [aux_sym_file_access_token2] = ACTIONS(9184), + [aux_sym_file_lock_token2] = ACTIONS(9184), + [aux_sym_print_statement_token1] = ACTIONS(9184), + [anon_sym_PLUS] = ACTIONS(9186), + [anon_sym_DASH] = ACTIONS(9184), + [anon_sym_QMARK] = ACTIONS(9186), + [aux_sym_close_statement_token1] = ACTIONS(9184), + [aux_sym_put_statement_token1] = ACTIONS(9184), + [aux_sym_unlock_statement_token1] = ACTIONS(9184), + [aux_sym_seek_statement_token1] = ACTIONS(9184), + [sym_reset_statement] = ACTIONS(9184), + [aux_sym_raise_event_statement_token1] = ACTIONS(9184), + [sym_stop_statement] = ACTIONS(9184), + [sym_beep_statement] = ACTIONS(9184), + [aux_sym_unload_statement_token1] = ACTIONS(9184), + [aux_sym_def_type_statement_token1] = ACTIONS(9184), + [aux_sym_def_type_statement_token2] = ACTIONS(9184), + [aux_sym_def_type_statement_token3] = ACTIONS(9184), + [aux_sym_def_type_statement_token4] = ACTIONS(9184), + [aux_sym_def_type_statement_token5] = ACTIONS(9184), + [aux_sym_def_type_statement_token6] = ACTIONS(9184), + [aux_sym_def_type_statement_token7] = ACTIONS(9184), + [aux_sym_def_type_statement_token8] = ACTIONS(9184), + [aux_sym_def_type_statement_token9] = ACTIONS(9184), + [aux_sym_def_type_statement_token10] = ACTIONS(9184), + [aux_sym_def_type_statement_token11] = ACTIONS(9184), + [aux_sym_def_type_statement_token12] = ACTIONS(9184), + [aux_sym_def_type_statement_token13] = ACTIONS(9184), + [aux_sym_def_type_statement_token14] = ACTIONS(9184), + [aux_sym_call_statement_token1] = ACTIONS(9184), + [sym__ambiguous_call_statement] = ACTIONS(9184), + [aux_sym_addressof_expression_token1] = ACTIONS(9184), + [aux_sym_type_of_expression_token1] = ACTIONS(9184), + [aux_sym_unary_expression_token1] = ACTIONS(9184), + [sym_string_literal] = ACTIONS(9186), + [sym_number_literal] = ACTIONS(9186), + [aux_sym_boolean_literal_token1] = ACTIONS(9184), + [aux_sym_boolean_literal_token2] = ACTIONS(9184), + [sym_nothing_literal] = ACTIONS(9184), + [sym_null_literal] = ACTIONS(9184), + [sym_empty_literal] = ACTIONS(9184), + [sym_date_literal] = ACTIONS(9186), + [anon_sym_POUND] = ACTIONS(9184), + }, + [STATE(7094)] = { + [sym_identifier] = ACTIONS(9700), + [sym_newline] = ACTIONS(9702), + [anon_sym_COLON] = ACTIONS(9702), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9700), + [aux_sym_frm_property_statement_token1] = ACTIONS(9700), + [anon_sym_DOT] = ACTIONS(9700), + [anon_sym_BANG] = ACTIONS(9702), + [aux_sym__attribute_identifier_token1] = ACTIONS(9700), + [aux_sym_option_statement_token3] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9700), + [aux_sym_preprocessor_const_token1] = ACTIONS(9700), + [sym_static_modifier] = ACTIONS(9700), + [sym__dim_keyword] = ACTIONS(9700), + [sym__redim_keyword] = ACTIONS(9700), + [aux_sym_get_accessor_token1] = ACTIONS(9700), + [aux_sym_set_accessor_token1] = ACTIONS(9700), + [aux_sym_const_declaration_token1] = ACTIONS(9700), + [anon_sym_LPAREN] = ACTIONS(9702), + [aux_sym_as_type_clause_token2] = ACTIONS(9700), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9700), + [aux_sym_visibility_token1] = ACTIONS(9700), + [aux_sym_visibility_token2] = ACTIONS(9700), + [aux_sym_elseif_fragment_token1] = ACTIONS(9700), + [aux_sym_else_fragment_token1] = ACTIONS(9700), + [aux_sym_select_statement_token1] = ACTIONS(9700), + [aux_sym_select_statement_token2] = ACTIONS(9700), + [aux_sym__for_header_token1] = ACTIONS(9700), + [aux_sym_do_statement_token1] = ACTIONS(9700), + [aux_sym_do_condition_token1] = ACTIONS(9700), + [aux_sym_with_statement_token1] = ACTIONS(9700), + [aux_sym_exit_statement_token1] = ACTIONS(9700), + [sym_end_statement] = ACTIONS(9702), + [aux_sym_on_goto_statement_token1] = ACTIONS(9700), + [aux_sym_on_goto_statement_token2] = ACTIONS(9700), + [aux_sym_on_error_statement_token2] = ACTIONS(9700), + [sym__ambiguous_redim_statement] = ACTIONS(9702), + [aux_sym_erase_statement_token1] = ACTIONS(9700), + [aux_sym_open_statement_token1] = ACTIONS(9700), + [aux_sym_file_mode_token2] = ACTIONS(9700), + [aux_sym_file_access_token2] = ACTIONS(9700), + [aux_sym_file_lock_token2] = ACTIONS(9700), + [aux_sym_print_statement_token1] = ACTIONS(9700), + [anon_sym_PLUS] = ACTIONS(9702), + [anon_sym_DASH] = ACTIONS(9700), + [anon_sym_QMARK] = ACTIONS(9702), + [aux_sym_close_statement_token1] = ACTIONS(9700), + [aux_sym_put_statement_token1] = ACTIONS(9700), + [aux_sym_unlock_statement_token1] = ACTIONS(9700), + [aux_sym_seek_statement_token1] = ACTIONS(9700), + [sym_reset_statement] = ACTIONS(9700), + [aux_sym_raise_event_statement_token1] = ACTIONS(9700), + [sym_stop_statement] = ACTIONS(9700), + [sym_beep_statement] = ACTIONS(9700), + [aux_sym_unload_statement_token1] = ACTIONS(9700), + [aux_sym_def_type_statement_token1] = ACTIONS(9700), + [aux_sym_def_type_statement_token2] = ACTIONS(9700), + [aux_sym_def_type_statement_token3] = ACTIONS(9700), + [aux_sym_def_type_statement_token4] = ACTIONS(9700), + [aux_sym_def_type_statement_token5] = ACTIONS(9700), + [aux_sym_def_type_statement_token6] = ACTIONS(9700), + [aux_sym_def_type_statement_token7] = ACTIONS(9700), + [aux_sym_def_type_statement_token8] = ACTIONS(9700), + [aux_sym_def_type_statement_token9] = ACTIONS(9700), + [aux_sym_def_type_statement_token10] = ACTIONS(9700), + [aux_sym_def_type_statement_token11] = ACTIONS(9700), + [aux_sym_def_type_statement_token12] = ACTIONS(9700), + [aux_sym_def_type_statement_token13] = ACTIONS(9700), + [aux_sym_def_type_statement_token14] = ACTIONS(9700), + [aux_sym_call_statement_token1] = ACTIONS(9700), + [sym__ambiguous_call_statement] = ACTIONS(9700), + [aux_sym_addressof_expression_token1] = ACTIONS(9700), + [aux_sym_type_of_expression_token1] = ACTIONS(9700), + [aux_sym_unary_expression_token1] = ACTIONS(9700), + [sym_string_literal] = ACTIONS(9702), + [sym_number_literal] = ACTIONS(9702), + [aux_sym_boolean_literal_token1] = ACTIONS(9700), + [aux_sym_boolean_literal_token2] = ACTIONS(9700), + [sym_nothing_literal] = ACTIONS(9700), + [sym_null_literal] = ACTIONS(9700), + [sym_empty_literal] = ACTIONS(9700), + [sym_date_literal] = ACTIONS(9702), + [anon_sym_POUND] = ACTIONS(9700), + }, + [STATE(7095)] = { + [sym_identifier] = ACTIONS(9684), + [sym_newline] = ACTIONS(9686), + [anon_sym_COLON] = ACTIONS(9686), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9684), + [aux_sym_frm_property_statement_token1] = ACTIONS(9684), + [anon_sym_DOT] = ACTIONS(9684), + [anon_sym_BANG] = ACTIONS(9686), + [aux_sym__attribute_identifier_token1] = ACTIONS(9684), + [aux_sym_option_statement_token3] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9684), + [aux_sym_preprocessor_const_token1] = ACTIONS(9684), + [sym_static_modifier] = ACTIONS(9684), + [sym__dim_keyword] = ACTIONS(9684), + [sym__redim_keyword] = ACTIONS(9684), + [aux_sym_get_accessor_token1] = ACTIONS(9684), + [aux_sym_set_accessor_token1] = ACTIONS(9684), + [aux_sym_const_declaration_token1] = ACTIONS(9684), + [anon_sym_LPAREN] = ACTIONS(9686), + [aux_sym_as_type_clause_token2] = ACTIONS(9684), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9684), + [aux_sym_visibility_token1] = ACTIONS(9684), + [aux_sym_visibility_token2] = ACTIONS(9684), + [aux_sym_elseif_fragment_token1] = ACTIONS(9684), + [aux_sym_else_fragment_token1] = ACTIONS(9684), + [aux_sym_select_statement_token1] = ACTIONS(9684), + [aux_sym__for_header_token1] = ACTIONS(9684), + [aux_sym_do_statement_token1] = ACTIONS(9684), + [aux_sym_do_condition_token1] = ACTIONS(9684), + [aux_sym_while_statement_token1] = ACTIONS(9684), + [aux_sym_with_statement_token1] = ACTIONS(9684), + [aux_sym_exit_statement_token1] = ACTIONS(9684), + [sym_end_statement] = ACTIONS(9686), + [aux_sym_on_goto_statement_token1] = ACTIONS(9684), + [aux_sym_on_goto_statement_token2] = ACTIONS(9684), + [aux_sym_on_error_statement_token2] = ACTIONS(9684), + [sym__ambiguous_redim_statement] = ACTIONS(9686), + [aux_sym_erase_statement_token1] = ACTIONS(9684), + [aux_sym_open_statement_token1] = ACTIONS(9684), + [aux_sym_file_mode_token2] = ACTIONS(9684), + [aux_sym_file_access_token2] = ACTIONS(9684), + [aux_sym_file_lock_token2] = ACTIONS(9684), + [aux_sym_print_statement_token1] = ACTIONS(9684), + [anon_sym_PLUS] = ACTIONS(9686), + [anon_sym_DASH] = ACTIONS(9684), + [anon_sym_QMARK] = ACTIONS(9686), + [aux_sym_close_statement_token1] = ACTIONS(9684), + [aux_sym_put_statement_token1] = ACTIONS(9684), + [aux_sym_unlock_statement_token1] = ACTIONS(9684), + [aux_sym_seek_statement_token1] = ACTIONS(9684), + [sym_reset_statement] = ACTIONS(9684), + [aux_sym_raise_event_statement_token1] = ACTIONS(9684), + [sym_stop_statement] = ACTIONS(9684), + [sym_beep_statement] = ACTIONS(9684), + [aux_sym_unload_statement_token1] = ACTIONS(9684), + [aux_sym_def_type_statement_token1] = ACTIONS(9684), + [aux_sym_def_type_statement_token2] = ACTIONS(9684), + [aux_sym_def_type_statement_token3] = ACTIONS(9684), + [aux_sym_def_type_statement_token4] = ACTIONS(9684), + [aux_sym_def_type_statement_token5] = ACTIONS(9684), + [aux_sym_def_type_statement_token6] = ACTIONS(9684), + [aux_sym_def_type_statement_token7] = ACTIONS(9684), + [aux_sym_def_type_statement_token8] = ACTIONS(9684), + [aux_sym_def_type_statement_token9] = ACTIONS(9684), + [aux_sym_def_type_statement_token10] = ACTIONS(9684), + [aux_sym_def_type_statement_token11] = ACTIONS(9684), + [aux_sym_def_type_statement_token12] = ACTIONS(9684), + [aux_sym_def_type_statement_token13] = ACTIONS(9684), + [aux_sym_def_type_statement_token14] = ACTIONS(9684), + [aux_sym_call_statement_token1] = ACTIONS(9684), + [sym__ambiguous_call_statement] = ACTIONS(9684), + [aux_sym_addressof_expression_token1] = ACTIONS(9684), + [aux_sym_type_of_expression_token1] = ACTIONS(9684), + [aux_sym_unary_expression_token1] = ACTIONS(9684), + [sym_string_literal] = ACTIONS(9686), + [sym_number_literal] = ACTIONS(9686), + [aux_sym_boolean_literal_token1] = ACTIONS(9684), + [aux_sym_boolean_literal_token2] = ACTIONS(9684), + [sym_nothing_literal] = ACTIONS(9684), + [sym_null_literal] = ACTIONS(9684), + [sym_empty_literal] = ACTIONS(9684), + [sym_date_literal] = ACTIONS(9686), + [anon_sym_POUND] = ACTIONS(9684), + }, + [STATE(7096)] = { + [sym_identifier] = ACTIONS(9688), + [sym_newline] = ACTIONS(9690), + [anon_sym_COLON] = ACTIONS(9690), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9688), + [aux_sym_frm_property_statement_token1] = ACTIONS(9688), + [anon_sym_DOT] = ACTIONS(9688), + [anon_sym_BANG] = ACTIONS(9690), + [aux_sym__attribute_identifier_token1] = ACTIONS(9688), + [aux_sym_option_statement_token3] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9688), + [aux_sym_preprocessor_const_token1] = ACTIONS(9688), + [sym_static_modifier] = ACTIONS(9688), + [sym__dim_keyword] = ACTIONS(9688), + [sym__redim_keyword] = ACTIONS(9688), + [aux_sym_get_accessor_token1] = ACTIONS(9688), + [aux_sym_set_accessor_token1] = ACTIONS(9688), + [aux_sym_const_declaration_token1] = ACTIONS(9688), + [anon_sym_LPAREN] = ACTIONS(9690), + [aux_sym_as_type_clause_token2] = ACTIONS(9688), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9688), + [aux_sym_visibility_token1] = ACTIONS(9688), + [aux_sym_visibility_token2] = ACTIONS(9688), + [aux_sym_elseif_fragment_token1] = ACTIONS(9688), + [aux_sym_else_fragment_token1] = ACTIONS(9688), + [aux_sym_select_statement_token1] = ACTIONS(9688), + [aux_sym__for_header_token1] = ACTIONS(9688), + [aux_sym_do_statement_token1] = ACTIONS(9688), + [aux_sym_do_condition_token1] = ACTIONS(9688), + [aux_sym_while_statement_token1] = ACTIONS(9688), + [aux_sym_with_statement_token1] = ACTIONS(9688), + [aux_sym_exit_statement_token1] = ACTIONS(9688), + [sym_end_statement] = ACTIONS(9690), + [aux_sym_on_goto_statement_token1] = ACTIONS(9688), + [aux_sym_on_goto_statement_token2] = ACTIONS(9688), + [aux_sym_on_error_statement_token2] = ACTIONS(9688), + [sym__ambiguous_redim_statement] = ACTIONS(9690), + [aux_sym_erase_statement_token1] = ACTIONS(9688), + [aux_sym_open_statement_token1] = ACTIONS(9688), + [aux_sym_file_mode_token2] = ACTIONS(9688), + [aux_sym_file_access_token2] = ACTIONS(9688), + [aux_sym_file_lock_token2] = ACTIONS(9688), + [aux_sym_print_statement_token1] = ACTIONS(9688), + [anon_sym_PLUS] = ACTIONS(9690), + [anon_sym_DASH] = ACTIONS(9688), + [anon_sym_QMARK] = ACTIONS(9690), + [aux_sym_close_statement_token1] = ACTIONS(9688), + [aux_sym_put_statement_token1] = ACTIONS(9688), + [aux_sym_unlock_statement_token1] = ACTIONS(9688), + [aux_sym_seek_statement_token1] = ACTIONS(9688), + [sym_reset_statement] = ACTIONS(9688), + [aux_sym_raise_event_statement_token1] = ACTIONS(9688), + [sym_stop_statement] = ACTIONS(9688), + [sym_beep_statement] = ACTIONS(9688), + [aux_sym_unload_statement_token1] = ACTIONS(9688), + [aux_sym_def_type_statement_token1] = ACTIONS(9688), + [aux_sym_def_type_statement_token2] = ACTIONS(9688), + [aux_sym_def_type_statement_token3] = ACTIONS(9688), + [aux_sym_def_type_statement_token4] = ACTIONS(9688), + [aux_sym_def_type_statement_token5] = ACTIONS(9688), + [aux_sym_def_type_statement_token6] = ACTIONS(9688), + [aux_sym_def_type_statement_token7] = ACTIONS(9688), + [aux_sym_def_type_statement_token8] = ACTIONS(9688), + [aux_sym_def_type_statement_token9] = ACTIONS(9688), + [aux_sym_def_type_statement_token10] = ACTIONS(9688), + [aux_sym_def_type_statement_token11] = ACTIONS(9688), + [aux_sym_def_type_statement_token12] = ACTIONS(9688), + [aux_sym_def_type_statement_token13] = ACTIONS(9688), + [aux_sym_def_type_statement_token14] = ACTIONS(9688), + [aux_sym_call_statement_token1] = ACTIONS(9688), + [sym__ambiguous_call_statement] = ACTIONS(9688), + [aux_sym_addressof_expression_token1] = ACTIONS(9688), + [aux_sym_type_of_expression_token1] = ACTIONS(9688), + [aux_sym_unary_expression_token1] = ACTIONS(9688), + [sym_string_literal] = ACTIONS(9690), + [sym_number_literal] = ACTIONS(9690), + [aux_sym_boolean_literal_token1] = ACTIONS(9688), + [aux_sym_boolean_literal_token2] = ACTIONS(9688), + [sym_nothing_literal] = ACTIONS(9688), + [sym_null_literal] = ACTIONS(9688), + [sym_empty_literal] = ACTIONS(9688), + [sym_date_literal] = ACTIONS(9690), + [anon_sym_POUND] = ACTIONS(9688), + }, + [STATE(7097)] = { + [sym_identifier] = ACTIONS(9260), + [sym_newline] = ACTIONS(9262), + [anon_sym_COLON] = ACTIONS(9262), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9260), + [aux_sym_frm_property_statement_token1] = ACTIONS(9260), + [anon_sym_DOT] = ACTIONS(9260), + [anon_sym_BANG] = ACTIONS(9262), + [aux_sym__attribute_identifier_token1] = ACTIONS(9260), + [aux_sym_option_statement_token3] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9260), + [aux_sym_preprocessor_const_token1] = ACTIONS(9260), + [sym_static_modifier] = ACTIONS(9260), + [sym__dim_keyword] = ACTIONS(9260), + [sym__redim_keyword] = ACTIONS(9260), + [aux_sym_get_accessor_token1] = ACTIONS(9260), + [aux_sym_set_accessor_token1] = ACTIONS(9260), + [aux_sym_const_declaration_token1] = ACTIONS(9260), + [anon_sym_LPAREN] = ACTIONS(9262), + [aux_sym_as_type_clause_token2] = ACTIONS(9260), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9260), + [aux_sym_visibility_token1] = ACTIONS(9260), + [aux_sym_visibility_token2] = ACTIONS(9260), + [aux_sym_elseif_fragment_token1] = ACTIONS(9260), + [aux_sym_else_fragment_token1] = ACTIONS(9260), + [aux_sym_select_statement_token1] = ACTIONS(9260), + [aux_sym__for_header_token1] = ACTIONS(9260), + [aux_sym_do_statement_token1] = ACTIONS(9260), + [aux_sym_do_condition_token1] = ACTIONS(9260), + [aux_sym_with_statement_token1] = ACTIONS(9260), + [aux_sym_exit_statement_token1] = ACTIONS(9260), + [sym_end_statement] = ACTIONS(9262), + [aux_sym_on_goto_statement_token1] = ACTIONS(9260), + [aux_sym_on_goto_statement_token2] = ACTIONS(9260), + [aux_sym_on_error_statement_token2] = ACTIONS(9260), + [sym__ambiguous_redim_statement] = ACTIONS(9262), + [aux_sym_erase_statement_token1] = ACTIONS(9260), + [aux_sym_open_statement_token1] = ACTIONS(9260), + [aux_sym_file_mode_token2] = ACTIONS(9260), + [aux_sym_file_access_token2] = ACTIONS(9260), + [aux_sym_file_lock_token2] = ACTIONS(9260), + [aux_sym_print_statement_token1] = ACTIONS(9260), + [anon_sym_PLUS] = ACTIONS(9262), + [anon_sym_DASH] = ACTIONS(9260), + [anon_sym_QMARK] = ACTIONS(9262), + [aux_sym_close_statement_token1] = ACTIONS(9260), + [aux_sym_put_statement_token1] = ACTIONS(9260), + [aux_sym_unlock_statement_token1] = ACTIONS(9260), + [aux_sym_seek_statement_token1] = ACTIONS(9260), + [sym_reset_statement] = ACTIONS(9260), + [aux_sym_raise_event_statement_token1] = ACTIONS(9260), + [sym_stop_statement] = ACTIONS(9260), + [sym_beep_statement] = ACTIONS(9260), + [aux_sym_unload_statement_token1] = ACTIONS(9260), + [aux_sym_def_type_statement_token1] = ACTIONS(9260), + [aux_sym_def_type_statement_token2] = ACTIONS(9260), + [aux_sym_def_type_statement_token3] = ACTIONS(9260), + [aux_sym_def_type_statement_token4] = ACTIONS(9260), + [aux_sym_def_type_statement_token5] = ACTIONS(9260), + [aux_sym_def_type_statement_token6] = ACTIONS(9260), + [aux_sym_def_type_statement_token7] = ACTIONS(9260), + [aux_sym_def_type_statement_token8] = ACTIONS(9260), + [aux_sym_def_type_statement_token9] = ACTIONS(9260), + [aux_sym_def_type_statement_token10] = ACTIONS(9260), + [aux_sym_def_type_statement_token11] = ACTIONS(9260), + [aux_sym_def_type_statement_token12] = ACTIONS(9260), + [aux_sym_def_type_statement_token13] = ACTIONS(9260), + [aux_sym_def_type_statement_token14] = ACTIONS(9260), + [aux_sym_call_statement_token1] = ACTIONS(9260), + [sym__ambiguous_call_statement] = ACTIONS(9260), + [aux_sym_addressof_expression_token1] = ACTIONS(9260), + [aux_sym_type_of_expression_token1] = ACTIONS(9260), + [aux_sym_unary_expression_token1] = ACTIONS(9260), + [sym_string_literal] = ACTIONS(9262), + [sym_number_literal] = ACTIONS(9262), + [aux_sym_boolean_literal_token1] = ACTIONS(9260), + [aux_sym_boolean_literal_token2] = ACTIONS(9260), + [sym_nothing_literal] = ACTIONS(9260), + [sym_null_literal] = ACTIONS(9260), + [sym_empty_literal] = ACTIONS(9260), + [sym_date_literal] = ACTIONS(9262), + [anon_sym_POUND] = ACTIONS(9260), + }, + [STATE(7098)] = { + [sym_identifier] = ACTIONS(9692), + [sym_newline] = ACTIONS(9694), + [anon_sym_COLON] = ACTIONS(9694), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9692), + [aux_sym_frm_property_statement_token1] = ACTIONS(9692), + [anon_sym_DOT] = ACTIONS(9692), + [anon_sym_BANG] = ACTIONS(9694), + [aux_sym__attribute_identifier_token1] = ACTIONS(9692), + [aux_sym_option_statement_token3] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9692), + [aux_sym_preprocessor_const_token1] = ACTIONS(9692), + [sym_static_modifier] = ACTIONS(9692), + [sym__dim_keyword] = ACTIONS(9692), + [sym__redim_keyword] = ACTIONS(9692), + [aux_sym_get_accessor_token1] = ACTIONS(9692), + [aux_sym_set_accessor_token1] = ACTIONS(9692), + [aux_sym_const_declaration_token1] = ACTIONS(9692), + [anon_sym_LPAREN] = ACTIONS(9694), + [aux_sym_as_type_clause_token2] = ACTIONS(9692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9692), + [aux_sym_visibility_token1] = ACTIONS(9692), + [aux_sym_visibility_token2] = ACTIONS(9692), + [aux_sym_elseif_fragment_token1] = ACTIONS(9692), + [aux_sym_else_fragment_token1] = ACTIONS(9692), + [aux_sym_select_statement_token1] = ACTIONS(9692), + [aux_sym__for_header_token1] = ACTIONS(9692), + [aux_sym_do_statement_token1] = ACTIONS(9692), + [aux_sym_do_condition_token1] = ACTIONS(9692), + [aux_sym_while_statement_token1] = ACTIONS(9692), + [aux_sym_with_statement_token1] = ACTIONS(9692), + [aux_sym_exit_statement_token1] = ACTIONS(9692), + [sym_end_statement] = ACTIONS(9694), + [aux_sym_on_goto_statement_token1] = ACTIONS(9692), + [aux_sym_on_goto_statement_token2] = ACTIONS(9692), + [aux_sym_on_error_statement_token2] = ACTIONS(9692), + [sym__ambiguous_redim_statement] = ACTIONS(9694), + [aux_sym_erase_statement_token1] = ACTIONS(9692), + [aux_sym_open_statement_token1] = ACTIONS(9692), + [aux_sym_file_mode_token2] = ACTIONS(9692), + [aux_sym_file_access_token2] = ACTIONS(9692), + [aux_sym_file_lock_token2] = ACTIONS(9692), + [aux_sym_print_statement_token1] = ACTIONS(9692), + [anon_sym_PLUS] = ACTIONS(9694), + [anon_sym_DASH] = ACTIONS(9692), + [anon_sym_QMARK] = ACTIONS(9694), + [aux_sym_close_statement_token1] = ACTIONS(9692), + [aux_sym_put_statement_token1] = ACTIONS(9692), + [aux_sym_unlock_statement_token1] = ACTIONS(9692), + [aux_sym_seek_statement_token1] = ACTIONS(9692), + [sym_reset_statement] = ACTIONS(9692), + [aux_sym_raise_event_statement_token1] = ACTIONS(9692), + [sym_stop_statement] = ACTIONS(9692), + [sym_beep_statement] = ACTIONS(9692), + [aux_sym_unload_statement_token1] = ACTIONS(9692), + [aux_sym_def_type_statement_token1] = ACTIONS(9692), + [aux_sym_def_type_statement_token2] = ACTIONS(9692), + [aux_sym_def_type_statement_token3] = ACTIONS(9692), + [aux_sym_def_type_statement_token4] = ACTIONS(9692), + [aux_sym_def_type_statement_token5] = ACTIONS(9692), + [aux_sym_def_type_statement_token6] = ACTIONS(9692), + [aux_sym_def_type_statement_token7] = ACTIONS(9692), + [aux_sym_def_type_statement_token8] = ACTIONS(9692), + [aux_sym_def_type_statement_token9] = ACTIONS(9692), + [aux_sym_def_type_statement_token10] = ACTIONS(9692), + [aux_sym_def_type_statement_token11] = ACTIONS(9692), + [aux_sym_def_type_statement_token12] = ACTIONS(9692), + [aux_sym_def_type_statement_token13] = ACTIONS(9692), + [aux_sym_def_type_statement_token14] = ACTIONS(9692), + [aux_sym_call_statement_token1] = ACTIONS(9692), + [sym__ambiguous_call_statement] = ACTIONS(9692), + [aux_sym_addressof_expression_token1] = ACTIONS(9692), + [aux_sym_type_of_expression_token1] = ACTIONS(9692), + [aux_sym_unary_expression_token1] = ACTIONS(9692), + [sym_string_literal] = ACTIONS(9694), + [sym_number_literal] = ACTIONS(9694), + [aux_sym_boolean_literal_token1] = ACTIONS(9692), + [aux_sym_boolean_literal_token2] = ACTIONS(9692), + [sym_nothing_literal] = ACTIONS(9692), + [sym_null_literal] = ACTIONS(9692), + [sym_empty_literal] = ACTIONS(9692), + [sym_date_literal] = ACTIONS(9694), + [anon_sym_POUND] = ACTIONS(9692), + }, + [STATE(7099)] = { + [sym_identifier] = ACTIONS(9696), + [sym_newline] = ACTIONS(9698), + [anon_sym_COLON] = ACTIONS(9698), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9696), + [aux_sym_frm_property_statement_token1] = ACTIONS(9696), + [anon_sym_DOT] = ACTIONS(9696), + [anon_sym_BANG] = ACTIONS(9698), + [aux_sym__attribute_identifier_token1] = ACTIONS(9696), + [aux_sym_option_statement_token3] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9696), + [aux_sym_preprocessor_const_token1] = ACTIONS(9696), + [sym_static_modifier] = ACTIONS(9696), + [sym__dim_keyword] = ACTIONS(9696), + [sym__redim_keyword] = ACTIONS(9696), + [aux_sym_get_accessor_token1] = ACTIONS(9696), + [aux_sym_set_accessor_token1] = ACTIONS(9696), + [aux_sym_const_declaration_token1] = ACTIONS(9696), + [anon_sym_LPAREN] = ACTIONS(9698), + [aux_sym_as_type_clause_token2] = ACTIONS(9696), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9696), + [aux_sym_visibility_token1] = ACTIONS(9696), + [aux_sym_visibility_token2] = ACTIONS(9696), + [aux_sym_elseif_fragment_token1] = ACTIONS(9696), + [aux_sym_else_fragment_token1] = ACTIONS(9696), + [aux_sym_select_statement_token1] = ACTIONS(9696), + [aux_sym__for_header_token1] = ACTIONS(9696), + [aux_sym_do_statement_token1] = ACTIONS(9696), + [aux_sym_do_condition_token1] = ACTIONS(9696), + [aux_sym_while_statement_token1] = ACTIONS(9696), + [aux_sym_with_statement_token1] = ACTIONS(9696), + [aux_sym_exit_statement_token1] = ACTIONS(9696), + [sym_end_statement] = ACTIONS(9698), + [aux_sym_on_goto_statement_token1] = ACTIONS(9696), + [aux_sym_on_goto_statement_token2] = ACTIONS(9696), + [aux_sym_on_error_statement_token2] = ACTIONS(9696), + [sym__ambiguous_redim_statement] = ACTIONS(9698), + [aux_sym_erase_statement_token1] = ACTIONS(9696), + [aux_sym_open_statement_token1] = ACTIONS(9696), + [aux_sym_file_mode_token2] = ACTIONS(9696), + [aux_sym_file_access_token2] = ACTIONS(9696), + [aux_sym_file_lock_token2] = ACTIONS(9696), + [aux_sym_print_statement_token1] = ACTIONS(9696), + [anon_sym_PLUS] = ACTIONS(9698), + [anon_sym_DASH] = ACTIONS(9696), + [anon_sym_QMARK] = ACTIONS(9698), + [aux_sym_close_statement_token1] = ACTIONS(9696), + [aux_sym_put_statement_token1] = ACTIONS(9696), + [aux_sym_unlock_statement_token1] = ACTIONS(9696), + [aux_sym_seek_statement_token1] = ACTIONS(9696), + [sym_reset_statement] = ACTIONS(9696), + [aux_sym_raise_event_statement_token1] = ACTIONS(9696), + [sym_stop_statement] = ACTIONS(9696), + [sym_beep_statement] = ACTIONS(9696), + [aux_sym_unload_statement_token1] = ACTIONS(9696), + [aux_sym_def_type_statement_token1] = ACTIONS(9696), + [aux_sym_def_type_statement_token2] = ACTIONS(9696), + [aux_sym_def_type_statement_token3] = ACTIONS(9696), + [aux_sym_def_type_statement_token4] = ACTIONS(9696), + [aux_sym_def_type_statement_token5] = ACTIONS(9696), + [aux_sym_def_type_statement_token6] = ACTIONS(9696), + [aux_sym_def_type_statement_token7] = ACTIONS(9696), + [aux_sym_def_type_statement_token8] = ACTIONS(9696), + [aux_sym_def_type_statement_token9] = ACTIONS(9696), + [aux_sym_def_type_statement_token10] = ACTIONS(9696), + [aux_sym_def_type_statement_token11] = ACTIONS(9696), + [aux_sym_def_type_statement_token12] = ACTIONS(9696), + [aux_sym_def_type_statement_token13] = ACTIONS(9696), + [aux_sym_def_type_statement_token14] = ACTIONS(9696), + [aux_sym_call_statement_token1] = ACTIONS(9696), + [sym__ambiguous_call_statement] = ACTIONS(9696), + [aux_sym_addressof_expression_token1] = ACTIONS(9696), + [aux_sym_type_of_expression_token1] = ACTIONS(9696), + [aux_sym_unary_expression_token1] = ACTIONS(9696), + [sym_string_literal] = ACTIONS(9698), + [sym_number_literal] = ACTIONS(9698), + [aux_sym_boolean_literal_token1] = ACTIONS(9696), + [aux_sym_boolean_literal_token2] = ACTIONS(9696), + [sym_nothing_literal] = ACTIONS(9696), + [sym_null_literal] = ACTIONS(9696), + [sym_empty_literal] = ACTIONS(9696), + [sym_date_literal] = ACTIONS(9698), + [anon_sym_POUND] = ACTIONS(9696), + }, + [STATE(7100)] = { + [sym_identifier] = ACTIONS(9700), + [sym_newline] = ACTIONS(9702), + [anon_sym_COLON] = ACTIONS(9702), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9700), + [aux_sym_frm_property_statement_token1] = ACTIONS(9700), + [anon_sym_DOT] = ACTIONS(9700), + [anon_sym_BANG] = ACTIONS(9702), + [aux_sym__attribute_identifier_token1] = ACTIONS(9700), + [aux_sym_option_statement_token3] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9700), + [aux_sym_preprocessor_const_token1] = ACTIONS(9700), + [sym_static_modifier] = ACTIONS(9700), + [sym__dim_keyword] = ACTIONS(9700), + [sym__redim_keyword] = ACTIONS(9700), + [aux_sym_get_accessor_token1] = ACTIONS(9700), + [aux_sym_set_accessor_token1] = ACTIONS(9700), + [aux_sym_const_declaration_token1] = ACTIONS(9700), + [anon_sym_LPAREN] = ACTIONS(9702), + [aux_sym_as_type_clause_token2] = ACTIONS(9700), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9700), + [aux_sym_visibility_token1] = ACTIONS(9700), + [aux_sym_visibility_token2] = ACTIONS(9700), + [aux_sym_elseif_fragment_token1] = ACTIONS(9700), + [aux_sym_else_fragment_token1] = ACTIONS(9700), + [aux_sym_select_statement_token1] = ACTIONS(9700), + [aux_sym__for_header_token1] = ACTIONS(9700), + [aux_sym_do_statement_token1] = ACTIONS(9700), + [aux_sym_do_condition_token1] = ACTIONS(9700), + [aux_sym_while_statement_token1] = ACTIONS(9700), + [aux_sym_with_statement_token1] = ACTIONS(9700), + [aux_sym_exit_statement_token1] = ACTIONS(9700), + [sym_end_statement] = ACTIONS(9702), + [aux_sym_on_goto_statement_token1] = ACTIONS(9700), + [aux_sym_on_goto_statement_token2] = ACTIONS(9700), + [aux_sym_on_error_statement_token2] = ACTIONS(9700), + [sym__ambiguous_redim_statement] = ACTIONS(9702), + [aux_sym_erase_statement_token1] = ACTIONS(9700), + [aux_sym_open_statement_token1] = ACTIONS(9700), + [aux_sym_file_mode_token2] = ACTIONS(9700), + [aux_sym_file_access_token2] = ACTIONS(9700), + [aux_sym_file_lock_token2] = ACTIONS(9700), + [aux_sym_print_statement_token1] = ACTIONS(9700), + [anon_sym_PLUS] = ACTIONS(9702), + [anon_sym_DASH] = ACTIONS(9700), + [anon_sym_QMARK] = ACTIONS(9702), + [aux_sym_close_statement_token1] = ACTIONS(9700), + [aux_sym_put_statement_token1] = ACTIONS(9700), + [aux_sym_unlock_statement_token1] = ACTIONS(9700), + [aux_sym_seek_statement_token1] = ACTIONS(9700), + [sym_reset_statement] = ACTIONS(9700), + [aux_sym_raise_event_statement_token1] = ACTIONS(9700), + [sym_stop_statement] = ACTIONS(9700), + [sym_beep_statement] = ACTIONS(9700), + [aux_sym_unload_statement_token1] = ACTIONS(9700), + [aux_sym_def_type_statement_token1] = ACTIONS(9700), + [aux_sym_def_type_statement_token2] = ACTIONS(9700), + [aux_sym_def_type_statement_token3] = ACTIONS(9700), + [aux_sym_def_type_statement_token4] = ACTIONS(9700), + [aux_sym_def_type_statement_token5] = ACTIONS(9700), + [aux_sym_def_type_statement_token6] = ACTIONS(9700), + [aux_sym_def_type_statement_token7] = ACTIONS(9700), + [aux_sym_def_type_statement_token8] = ACTIONS(9700), + [aux_sym_def_type_statement_token9] = ACTIONS(9700), + [aux_sym_def_type_statement_token10] = ACTIONS(9700), + [aux_sym_def_type_statement_token11] = ACTIONS(9700), + [aux_sym_def_type_statement_token12] = ACTIONS(9700), + [aux_sym_def_type_statement_token13] = ACTIONS(9700), + [aux_sym_def_type_statement_token14] = ACTIONS(9700), + [aux_sym_call_statement_token1] = ACTIONS(9700), + [sym__ambiguous_call_statement] = ACTIONS(9700), + [aux_sym_addressof_expression_token1] = ACTIONS(9700), + [aux_sym_type_of_expression_token1] = ACTIONS(9700), + [aux_sym_unary_expression_token1] = ACTIONS(9700), + [sym_string_literal] = ACTIONS(9702), + [sym_number_literal] = ACTIONS(9702), + [aux_sym_boolean_literal_token1] = ACTIONS(9700), + [aux_sym_boolean_literal_token2] = ACTIONS(9700), + [sym_nothing_literal] = ACTIONS(9700), + [sym_null_literal] = ACTIONS(9700), + [sym_empty_literal] = ACTIONS(9700), + [sym_date_literal] = ACTIONS(9702), + [anon_sym_POUND] = ACTIONS(9700), + }, + [STATE(7101)] = { + [sym_identifier] = ACTIONS(8702), + [sym_newline] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(8704), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8702), + [aux_sym_frm_property_statement_token1] = ACTIONS(8702), + [anon_sym_DOT] = ACTIONS(8702), + [anon_sym_BANG] = ACTIONS(8704), + [aux_sym__attribute_identifier_token1] = ACTIONS(8702), + [aux_sym_option_statement_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8702), + [aux_sym_preprocessor_const_token1] = ACTIONS(8702), + [sym_static_modifier] = ACTIONS(8702), + [sym__dim_keyword] = ACTIONS(8702), + [sym__redim_keyword] = ACTIONS(8702), + [aux_sym_get_accessor_token1] = ACTIONS(8702), + [aux_sym_set_accessor_token1] = ACTIONS(8702), + [aux_sym_const_declaration_token1] = ACTIONS(8702), + [anon_sym_LPAREN] = ACTIONS(8704), + [aux_sym_as_type_clause_token2] = ACTIONS(8702), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8702), + [aux_sym_visibility_token1] = ACTIONS(8702), + [aux_sym_visibility_token2] = ACTIONS(8702), + [aux_sym_elseif_fragment_token1] = ACTIONS(8702), + [aux_sym_else_fragment_token1] = ACTIONS(8702), + [aux_sym_select_statement_token1] = ACTIONS(8702), + [aux_sym_select_statement_token2] = ACTIONS(8702), + [aux_sym__for_header_token1] = ACTIONS(8702), + [aux_sym_do_statement_token1] = ACTIONS(8702), + [aux_sym_do_condition_token1] = ACTIONS(8702), + [aux_sym_with_statement_token1] = ACTIONS(8702), + [aux_sym_exit_statement_token1] = ACTIONS(8702), + [sym_end_statement] = ACTIONS(8704), + [aux_sym_on_goto_statement_token1] = ACTIONS(8702), + [aux_sym_on_goto_statement_token2] = ACTIONS(8702), + [aux_sym_on_error_statement_token2] = ACTIONS(8702), + [sym__ambiguous_redim_statement] = ACTIONS(8704), + [aux_sym_erase_statement_token1] = ACTIONS(8702), + [aux_sym_open_statement_token1] = ACTIONS(8702), + [aux_sym_file_mode_token2] = ACTIONS(8702), + [aux_sym_file_access_token2] = ACTIONS(8702), + [aux_sym_file_lock_token2] = ACTIONS(8702), + [aux_sym_print_statement_token1] = ACTIONS(8702), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_DASH] = ACTIONS(8702), + [anon_sym_QMARK] = ACTIONS(8704), + [aux_sym_close_statement_token1] = ACTIONS(8702), + [aux_sym_put_statement_token1] = ACTIONS(8702), + [aux_sym_unlock_statement_token1] = ACTIONS(8702), + [aux_sym_seek_statement_token1] = ACTIONS(8702), + [sym_reset_statement] = ACTIONS(8702), + [aux_sym_raise_event_statement_token1] = ACTIONS(8702), + [sym_stop_statement] = ACTIONS(8702), + [sym_beep_statement] = ACTIONS(8702), + [aux_sym_unload_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token2] = ACTIONS(8702), + [aux_sym_def_type_statement_token3] = ACTIONS(8702), + [aux_sym_def_type_statement_token4] = ACTIONS(8702), + [aux_sym_def_type_statement_token5] = ACTIONS(8702), + [aux_sym_def_type_statement_token6] = ACTIONS(8702), + [aux_sym_def_type_statement_token7] = ACTIONS(8702), + [aux_sym_def_type_statement_token8] = ACTIONS(8702), + [aux_sym_def_type_statement_token9] = ACTIONS(8702), + [aux_sym_def_type_statement_token10] = ACTIONS(8702), + [aux_sym_def_type_statement_token11] = ACTIONS(8702), + [aux_sym_def_type_statement_token12] = ACTIONS(8702), + [aux_sym_def_type_statement_token13] = ACTIONS(8702), + [aux_sym_def_type_statement_token14] = ACTIONS(8702), + [aux_sym_call_statement_token1] = ACTIONS(8702), + [sym__ambiguous_call_statement] = ACTIONS(8702), + [aux_sym_addressof_expression_token1] = ACTIONS(8702), + [aux_sym_type_of_expression_token1] = ACTIONS(8702), + [aux_sym_unary_expression_token1] = ACTIONS(8702), + [sym_string_literal] = ACTIONS(8704), + [sym_number_literal] = ACTIONS(8704), + [aux_sym_boolean_literal_token1] = ACTIONS(8702), + [aux_sym_boolean_literal_token2] = ACTIONS(8702), + [sym_nothing_literal] = ACTIONS(8702), + [sym_null_literal] = ACTIONS(8702), + [sym_empty_literal] = ACTIONS(8702), + [sym_date_literal] = ACTIONS(8704), + [anon_sym_POUND] = ACTIONS(8702), + }, + [STATE(7102)] = { + [sym_identifier] = ACTIONS(8992), + [sym_newline] = ACTIONS(8994), + [anon_sym_COLON] = ACTIONS(8994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8992), + [aux_sym_frm_property_statement_token1] = ACTIONS(8992), + [anon_sym_DOT] = ACTIONS(8992), + [anon_sym_BANG] = ACTIONS(8994), + [aux_sym__attribute_identifier_token1] = ACTIONS(8992), + [aux_sym_option_statement_token3] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8992), + [aux_sym_preprocessor_const_token1] = ACTIONS(8992), + [sym_static_modifier] = ACTIONS(8992), + [sym__dim_keyword] = ACTIONS(8992), + [sym__redim_keyword] = ACTIONS(8992), + [aux_sym_get_accessor_token1] = ACTIONS(8992), + [aux_sym_set_accessor_token1] = ACTIONS(8992), + [aux_sym_const_declaration_token1] = ACTIONS(8992), + [anon_sym_LPAREN] = ACTIONS(8994), + [aux_sym_as_type_clause_token2] = ACTIONS(8992), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8992), + [aux_sym_visibility_token1] = ACTIONS(8992), + [aux_sym_visibility_token2] = ACTIONS(8992), + [aux_sym_elseif_fragment_token1] = ACTIONS(8992), + [aux_sym_else_fragment_token1] = ACTIONS(8992), + [aux_sym_select_statement_token1] = ACTIONS(8992), + [aux_sym_select_statement_token2] = ACTIONS(8992), + [aux_sym__for_header_token1] = ACTIONS(8992), + [aux_sym_do_statement_token1] = ACTIONS(8992), + [aux_sym_do_condition_token1] = ACTIONS(8992), + [aux_sym_with_statement_token1] = ACTIONS(8992), + [aux_sym_exit_statement_token1] = ACTIONS(8992), + [sym_end_statement] = ACTIONS(8994), + [aux_sym_on_goto_statement_token1] = ACTIONS(8992), + [aux_sym_on_goto_statement_token2] = ACTIONS(8992), + [aux_sym_on_error_statement_token2] = ACTIONS(8992), + [sym__ambiguous_redim_statement] = ACTIONS(8994), + [aux_sym_erase_statement_token1] = ACTIONS(8992), + [aux_sym_open_statement_token1] = ACTIONS(8992), + [aux_sym_file_mode_token2] = ACTIONS(8992), + [aux_sym_file_access_token2] = ACTIONS(8992), + [aux_sym_file_lock_token2] = ACTIONS(8992), + [aux_sym_print_statement_token1] = ACTIONS(8992), + [anon_sym_PLUS] = ACTIONS(8994), + [anon_sym_DASH] = ACTIONS(8992), + [anon_sym_QMARK] = ACTIONS(8994), + [aux_sym_close_statement_token1] = ACTIONS(8992), + [aux_sym_put_statement_token1] = ACTIONS(8992), + [aux_sym_unlock_statement_token1] = ACTIONS(8992), + [aux_sym_seek_statement_token1] = ACTIONS(8992), + [sym_reset_statement] = ACTIONS(8992), + [aux_sym_raise_event_statement_token1] = ACTIONS(8992), + [sym_stop_statement] = ACTIONS(8992), + [sym_beep_statement] = ACTIONS(8992), + [aux_sym_unload_statement_token1] = ACTIONS(8992), + [aux_sym_def_type_statement_token1] = ACTIONS(8992), + [aux_sym_def_type_statement_token2] = ACTIONS(8992), + [aux_sym_def_type_statement_token3] = ACTIONS(8992), + [aux_sym_def_type_statement_token4] = ACTIONS(8992), + [aux_sym_def_type_statement_token5] = ACTIONS(8992), + [aux_sym_def_type_statement_token6] = ACTIONS(8992), + [aux_sym_def_type_statement_token7] = ACTIONS(8992), + [aux_sym_def_type_statement_token8] = ACTIONS(8992), + [aux_sym_def_type_statement_token9] = ACTIONS(8992), + [aux_sym_def_type_statement_token10] = ACTIONS(8992), + [aux_sym_def_type_statement_token11] = ACTIONS(8992), + [aux_sym_def_type_statement_token12] = ACTIONS(8992), + [aux_sym_def_type_statement_token13] = ACTIONS(8992), + [aux_sym_def_type_statement_token14] = ACTIONS(8992), + [aux_sym_call_statement_token1] = ACTIONS(8992), + [sym__ambiguous_call_statement] = ACTIONS(8992), + [aux_sym_addressof_expression_token1] = ACTIONS(8992), + [aux_sym_type_of_expression_token1] = ACTIONS(8992), + [aux_sym_unary_expression_token1] = ACTIONS(8992), + [sym_string_literal] = ACTIONS(8994), + [sym_number_literal] = ACTIONS(8994), + [aux_sym_boolean_literal_token1] = ACTIONS(8992), + [aux_sym_boolean_literal_token2] = ACTIONS(8992), + [sym_nothing_literal] = ACTIONS(8992), + [sym_null_literal] = ACTIONS(8992), + [sym_empty_literal] = ACTIONS(8992), + [sym_date_literal] = ACTIONS(8994), + [anon_sym_POUND] = ACTIONS(8992), + }, + [STATE(7103)] = { + [sym_identifier] = ACTIONS(8996), + [sym_newline] = ACTIONS(8998), + [anon_sym_COLON] = ACTIONS(8998), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8996), + [aux_sym_frm_property_statement_token1] = ACTIONS(8996), + [anon_sym_DOT] = ACTIONS(8996), + [anon_sym_BANG] = ACTIONS(8998), + [aux_sym__attribute_identifier_token1] = ACTIONS(8996), + [aux_sym_option_statement_token3] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8996), + [aux_sym_preprocessor_const_token1] = ACTIONS(8996), + [sym_static_modifier] = ACTIONS(8996), + [sym__dim_keyword] = ACTIONS(8996), + [sym__redim_keyword] = ACTIONS(8996), + [aux_sym_get_accessor_token1] = ACTIONS(8996), + [aux_sym_set_accessor_token1] = ACTIONS(8996), + [aux_sym_const_declaration_token1] = ACTIONS(8996), + [anon_sym_LPAREN] = ACTIONS(8998), + [aux_sym_as_type_clause_token2] = ACTIONS(8996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8996), + [aux_sym_visibility_token1] = ACTIONS(8996), + [aux_sym_visibility_token2] = ACTIONS(8996), + [aux_sym_elseif_fragment_token1] = ACTIONS(8996), + [aux_sym_else_fragment_token1] = ACTIONS(8996), + [aux_sym_select_statement_token1] = ACTIONS(8996), + [aux_sym_select_statement_token2] = ACTIONS(8996), + [aux_sym__for_header_token1] = ACTIONS(8996), + [aux_sym_do_statement_token1] = ACTIONS(8996), + [aux_sym_do_condition_token1] = ACTIONS(8996), + [aux_sym_with_statement_token1] = ACTIONS(8996), + [aux_sym_exit_statement_token1] = ACTIONS(8996), + [sym_end_statement] = ACTIONS(8998), + [aux_sym_on_goto_statement_token1] = ACTIONS(8996), + [aux_sym_on_goto_statement_token2] = ACTIONS(8996), + [aux_sym_on_error_statement_token2] = ACTIONS(8996), + [sym__ambiguous_redim_statement] = ACTIONS(8998), + [aux_sym_erase_statement_token1] = ACTIONS(8996), + [aux_sym_open_statement_token1] = ACTIONS(8996), + [aux_sym_file_mode_token2] = ACTIONS(8996), + [aux_sym_file_access_token2] = ACTIONS(8996), + [aux_sym_file_lock_token2] = ACTIONS(8996), + [aux_sym_print_statement_token1] = ACTIONS(8996), + [anon_sym_PLUS] = ACTIONS(8998), + [anon_sym_DASH] = ACTIONS(8996), + [anon_sym_QMARK] = ACTIONS(8998), + [aux_sym_close_statement_token1] = ACTIONS(8996), + [aux_sym_put_statement_token1] = ACTIONS(8996), + [aux_sym_unlock_statement_token1] = ACTIONS(8996), + [aux_sym_seek_statement_token1] = ACTIONS(8996), + [sym_reset_statement] = ACTIONS(8996), + [aux_sym_raise_event_statement_token1] = ACTIONS(8996), + [sym_stop_statement] = ACTIONS(8996), + [sym_beep_statement] = ACTIONS(8996), + [aux_sym_unload_statement_token1] = ACTIONS(8996), + [aux_sym_def_type_statement_token1] = ACTIONS(8996), + [aux_sym_def_type_statement_token2] = ACTIONS(8996), + [aux_sym_def_type_statement_token3] = ACTIONS(8996), + [aux_sym_def_type_statement_token4] = ACTIONS(8996), + [aux_sym_def_type_statement_token5] = ACTIONS(8996), + [aux_sym_def_type_statement_token6] = ACTIONS(8996), + [aux_sym_def_type_statement_token7] = ACTIONS(8996), + [aux_sym_def_type_statement_token8] = ACTIONS(8996), + [aux_sym_def_type_statement_token9] = ACTIONS(8996), + [aux_sym_def_type_statement_token10] = ACTIONS(8996), + [aux_sym_def_type_statement_token11] = ACTIONS(8996), + [aux_sym_def_type_statement_token12] = ACTIONS(8996), + [aux_sym_def_type_statement_token13] = ACTIONS(8996), + [aux_sym_def_type_statement_token14] = ACTIONS(8996), + [aux_sym_call_statement_token1] = ACTIONS(8996), + [sym__ambiguous_call_statement] = ACTIONS(8996), + [aux_sym_addressof_expression_token1] = ACTIONS(8996), + [aux_sym_type_of_expression_token1] = ACTIONS(8996), + [aux_sym_unary_expression_token1] = ACTIONS(8996), + [sym_string_literal] = ACTIONS(8998), + [sym_number_literal] = ACTIONS(8998), + [aux_sym_boolean_literal_token1] = ACTIONS(8996), + [aux_sym_boolean_literal_token2] = ACTIONS(8996), + [sym_nothing_literal] = ACTIONS(8996), + [sym_null_literal] = ACTIONS(8996), + [sym_empty_literal] = ACTIONS(8996), + [sym_date_literal] = ACTIONS(8998), + [anon_sym_POUND] = ACTIONS(8996), + }, + [STATE(7104)] = { + [sym_identifier] = ACTIONS(9000), + [sym_newline] = ACTIONS(9002), + [anon_sym_COLON] = ACTIONS(9002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9000), + [aux_sym_frm_property_statement_token1] = ACTIONS(9000), + [anon_sym_DOT] = ACTIONS(9000), + [anon_sym_BANG] = ACTIONS(9002), + [aux_sym__attribute_identifier_token1] = ACTIONS(9000), + [aux_sym_option_statement_token3] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9000), + [aux_sym_preprocessor_const_token1] = ACTIONS(9000), + [sym_static_modifier] = ACTIONS(9000), + [sym__dim_keyword] = ACTIONS(9000), + [sym__redim_keyword] = ACTIONS(9000), + [aux_sym_get_accessor_token1] = ACTIONS(9000), + [aux_sym_set_accessor_token1] = ACTIONS(9000), + [aux_sym_const_declaration_token1] = ACTIONS(9000), + [anon_sym_LPAREN] = ACTIONS(9002), + [aux_sym_as_type_clause_token2] = ACTIONS(9000), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9000), + [aux_sym_visibility_token1] = ACTIONS(9000), + [aux_sym_visibility_token2] = ACTIONS(9000), + [aux_sym_elseif_fragment_token1] = ACTIONS(9000), + [aux_sym_else_fragment_token1] = ACTIONS(9000), + [aux_sym_select_statement_token1] = ACTIONS(9000), + [aux_sym_select_statement_token2] = ACTIONS(9000), + [aux_sym__for_header_token1] = ACTIONS(9000), + [aux_sym_do_statement_token1] = ACTIONS(9000), + [aux_sym_do_condition_token1] = ACTIONS(9000), + [aux_sym_with_statement_token1] = ACTIONS(9000), + [aux_sym_exit_statement_token1] = ACTIONS(9000), + [sym_end_statement] = ACTIONS(9002), + [aux_sym_on_goto_statement_token1] = ACTIONS(9000), + [aux_sym_on_goto_statement_token2] = ACTIONS(9000), + [aux_sym_on_error_statement_token2] = ACTIONS(9000), + [sym__ambiguous_redim_statement] = ACTIONS(9002), + [aux_sym_erase_statement_token1] = ACTIONS(9000), + [aux_sym_open_statement_token1] = ACTIONS(9000), + [aux_sym_file_mode_token2] = ACTIONS(9000), + [aux_sym_file_access_token2] = ACTIONS(9000), + [aux_sym_file_lock_token2] = ACTIONS(9000), + [aux_sym_print_statement_token1] = ACTIONS(9000), + [anon_sym_PLUS] = ACTIONS(9002), + [anon_sym_DASH] = ACTIONS(9000), + [anon_sym_QMARK] = ACTIONS(9002), + [aux_sym_close_statement_token1] = ACTIONS(9000), + [aux_sym_put_statement_token1] = ACTIONS(9000), + [aux_sym_unlock_statement_token1] = ACTIONS(9000), + [aux_sym_seek_statement_token1] = ACTIONS(9000), + [sym_reset_statement] = ACTIONS(9000), + [aux_sym_raise_event_statement_token1] = ACTIONS(9000), + [sym_stop_statement] = ACTIONS(9000), + [sym_beep_statement] = ACTIONS(9000), + [aux_sym_unload_statement_token1] = ACTIONS(9000), + [aux_sym_def_type_statement_token1] = ACTIONS(9000), + [aux_sym_def_type_statement_token2] = ACTIONS(9000), + [aux_sym_def_type_statement_token3] = ACTIONS(9000), + [aux_sym_def_type_statement_token4] = ACTIONS(9000), + [aux_sym_def_type_statement_token5] = ACTIONS(9000), + [aux_sym_def_type_statement_token6] = ACTIONS(9000), + [aux_sym_def_type_statement_token7] = ACTIONS(9000), + [aux_sym_def_type_statement_token8] = ACTIONS(9000), + [aux_sym_def_type_statement_token9] = ACTIONS(9000), + [aux_sym_def_type_statement_token10] = ACTIONS(9000), + [aux_sym_def_type_statement_token11] = ACTIONS(9000), + [aux_sym_def_type_statement_token12] = ACTIONS(9000), + [aux_sym_def_type_statement_token13] = ACTIONS(9000), + [aux_sym_def_type_statement_token14] = ACTIONS(9000), + [aux_sym_call_statement_token1] = ACTIONS(9000), + [sym__ambiguous_call_statement] = ACTIONS(9000), + [aux_sym_addressof_expression_token1] = ACTIONS(9000), + [aux_sym_type_of_expression_token1] = ACTIONS(9000), + [aux_sym_unary_expression_token1] = ACTIONS(9000), + [sym_string_literal] = ACTIONS(9002), + [sym_number_literal] = ACTIONS(9002), + [aux_sym_boolean_literal_token1] = ACTIONS(9000), + [aux_sym_boolean_literal_token2] = ACTIONS(9000), + [sym_nothing_literal] = ACTIONS(9000), + [sym_null_literal] = ACTIONS(9000), + [sym_empty_literal] = ACTIONS(9000), + [sym_date_literal] = ACTIONS(9002), + [anon_sym_POUND] = ACTIONS(9000), + }, + [STATE(7105)] = { + [sym_identifier] = ACTIONS(9004), + [sym_newline] = ACTIONS(9006), + [anon_sym_COLON] = ACTIONS(9006), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9004), + [aux_sym_frm_property_statement_token1] = ACTIONS(9004), + [anon_sym_DOT] = ACTIONS(9004), + [anon_sym_BANG] = ACTIONS(9006), + [aux_sym__attribute_identifier_token1] = ACTIONS(9004), + [aux_sym_option_statement_token3] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9004), + [aux_sym_preprocessor_const_token1] = ACTIONS(9004), + [sym_static_modifier] = ACTIONS(9004), + [sym__dim_keyword] = ACTIONS(9004), + [sym__redim_keyword] = ACTIONS(9004), + [aux_sym_get_accessor_token1] = ACTIONS(9004), + [aux_sym_set_accessor_token1] = ACTIONS(9004), + [aux_sym_const_declaration_token1] = ACTIONS(9004), + [anon_sym_LPAREN] = ACTIONS(9006), + [aux_sym_as_type_clause_token2] = ACTIONS(9004), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9004), + [aux_sym_visibility_token1] = ACTIONS(9004), + [aux_sym_visibility_token2] = ACTIONS(9004), + [aux_sym_elseif_fragment_token1] = ACTIONS(9004), + [aux_sym_else_fragment_token1] = ACTIONS(9004), + [aux_sym_select_statement_token1] = ACTIONS(9004), + [aux_sym_select_statement_token2] = ACTIONS(9004), + [aux_sym__for_header_token1] = ACTIONS(9004), + [aux_sym_do_statement_token1] = ACTIONS(9004), + [aux_sym_do_condition_token1] = ACTIONS(9004), + [aux_sym_with_statement_token1] = ACTIONS(9004), + [aux_sym_exit_statement_token1] = ACTIONS(9004), + [sym_end_statement] = ACTIONS(9006), + [aux_sym_on_goto_statement_token1] = ACTIONS(9004), + [aux_sym_on_goto_statement_token2] = ACTIONS(9004), + [aux_sym_on_error_statement_token2] = ACTIONS(9004), + [sym__ambiguous_redim_statement] = ACTIONS(9006), + [aux_sym_erase_statement_token1] = ACTIONS(9004), + [aux_sym_open_statement_token1] = ACTIONS(9004), + [aux_sym_file_mode_token2] = ACTIONS(9004), + [aux_sym_file_access_token2] = ACTIONS(9004), + [aux_sym_file_lock_token2] = ACTIONS(9004), + [aux_sym_print_statement_token1] = ACTIONS(9004), + [anon_sym_PLUS] = ACTIONS(9006), + [anon_sym_DASH] = ACTIONS(9004), + [anon_sym_QMARK] = ACTIONS(9006), + [aux_sym_close_statement_token1] = ACTIONS(9004), + [aux_sym_put_statement_token1] = ACTIONS(9004), + [aux_sym_unlock_statement_token1] = ACTIONS(9004), + [aux_sym_seek_statement_token1] = ACTIONS(9004), + [sym_reset_statement] = ACTIONS(9004), + [aux_sym_raise_event_statement_token1] = ACTIONS(9004), + [sym_stop_statement] = ACTIONS(9004), + [sym_beep_statement] = ACTIONS(9004), + [aux_sym_unload_statement_token1] = ACTIONS(9004), + [aux_sym_def_type_statement_token1] = ACTIONS(9004), + [aux_sym_def_type_statement_token2] = ACTIONS(9004), + [aux_sym_def_type_statement_token3] = ACTIONS(9004), + [aux_sym_def_type_statement_token4] = ACTIONS(9004), + [aux_sym_def_type_statement_token5] = ACTIONS(9004), + [aux_sym_def_type_statement_token6] = ACTIONS(9004), + [aux_sym_def_type_statement_token7] = ACTIONS(9004), + [aux_sym_def_type_statement_token8] = ACTIONS(9004), + [aux_sym_def_type_statement_token9] = ACTIONS(9004), + [aux_sym_def_type_statement_token10] = ACTIONS(9004), + [aux_sym_def_type_statement_token11] = ACTIONS(9004), + [aux_sym_def_type_statement_token12] = ACTIONS(9004), + [aux_sym_def_type_statement_token13] = ACTIONS(9004), + [aux_sym_def_type_statement_token14] = ACTIONS(9004), + [aux_sym_call_statement_token1] = ACTIONS(9004), + [sym__ambiguous_call_statement] = ACTIONS(9004), + [aux_sym_addressof_expression_token1] = ACTIONS(9004), + [aux_sym_type_of_expression_token1] = ACTIONS(9004), + [aux_sym_unary_expression_token1] = ACTIONS(9004), + [sym_string_literal] = ACTIONS(9006), + [sym_number_literal] = ACTIONS(9006), + [aux_sym_boolean_literal_token1] = ACTIONS(9004), + [aux_sym_boolean_literal_token2] = ACTIONS(9004), + [sym_nothing_literal] = ACTIONS(9004), + [sym_null_literal] = ACTIONS(9004), + [sym_empty_literal] = ACTIONS(9004), + [sym_date_literal] = ACTIONS(9006), + [anon_sym_POUND] = ACTIONS(9004), + }, + [STATE(7106)] = { + [sym_identifier] = ACTIONS(9704), + [sym_newline] = ACTIONS(9706), + [anon_sym_COLON] = ACTIONS(9706), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9704), + [aux_sym_frm_property_statement_token1] = ACTIONS(9704), + [anon_sym_DOT] = ACTIONS(9704), + [anon_sym_BANG] = ACTIONS(9706), + [aux_sym__attribute_identifier_token1] = ACTIONS(9704), + [aux_sym_option_statement_token3] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9704), + [aux_sym_preprocessor_const_token1] = ACTIONS(9704), + [sym_static_modifier] = ACTIONS(9704), + [sym__dim_keyword] = ACTIONS(9704), + [sym__redim_keyword] = ACTIONS(9704), + [aux_sym_get_accessor_token1] = ACTIONS(9704), + [aux_sym_set_accessor_token1] = ACTIONS(9704), + [aux_sym_const_declaration_token1] = ACTIONS(9704), + [anon_sym_LPAREN] = ACTIONS(9706), + [aux_sym_as_type_clause_token2] = ACTIONS(9704), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9704), + [aux_sym_visibility_token1] = ACTIONS(9704), + [aux_sym_visibility_token2] = ACTIONS(9704), + [aux_sym_elseif_fragment_token1] = ACTIONS(9704), + [aux_sym_else_fragment_token1] = ACTIONS(9704), + [aux_sym_select_statement_token1] = ACTIONS(9704), + [aux_sym__for_header_token1] = ACTIONS(9704), + [aux_sym_do_statement_token1] = ACTIONS(9704), + [aux_sym_do_condition_token1] = ACTIONS(9704), + [aux_sym_while_statement_token1] = ACTIONS(9704), + [aux_sym_with_statement_token1] = ACTIONS(9704), + [aux_sym_exit_statement_token1] = ACTIONS(9704), + [sym_end_statement] = ACTIONS(9706), + [aux_sym_on_goto_statement_token1] = ACTIONS(9704), + [aux_sym_on_goto_statement_token2] = ACTIONS(9704), + [aux_sym_on_error_statement_token2] = ACTIONS(9704), + [sym__ambiguous_redim_statement] = ACTIONS(9706), + [aux_sym_erase_statement_token1] = ACTIONS(9704), + [aux_sym_open_statement_token1] = ACTIONS(9704), + [aux_sym_file_mode_token2] = ACTIONS(9704), + [aux_sym_file_access_token2] = ACTIONS(9704), + [aux_sym_file_lock_token2] = ACTIONS(9704), + [aux_sym_print_statement_token1] = ACTIONS(9704), + [anon_sym_PLUS] = ACTIONS(9706), + [anon_sym_DASH] = ACTIONS(9704), + [anon_sym_QMARK] = ACTIONS(9706), + [aux_sym_close_statement_token1] = ACTIONS(9704), + [aux_sym_put_statement_token1] = ACTIONS(9704), + [aux_sym_unlock_statement_token1] = ACTIONS(9704), + [aux_sym_seek_statement_token1] = ACTIONS(9704), + [sym_reset_statement] = ACTIONS(9704), + [aux_sym_raise_event_statement_token1] = ACTIONS(9704), + [sym_stop_statement] = ACTIONS(9704), + [sym_beep_statement] = ACTIONS(9704), + [aux_sym_unload_statement_token1] = ACTIONS(9704), + [aux_sym_def_type_statement_token1] = ACTIONS(9704), + [aux_sym_def_type_statement_token2] = ACTIONS(9704), + [aux_sym_def_type_statement_token3] = ACTIONS(9704), + [aux_sym_def_type_statement_token4] = ACTIONS(9704), + [aux_sym_def_type_statement_token5] = ACTIONS(9704), + [aux_sym_def_type_statement_token6] = ACTIONS(9704), + [aux_sym_def_type_statement_token7] = ACTIONS(9704), + [aux_sym_def_type_statement_token8] = ACTIONS(9704), + [aux_sym_def_type_statement_token9] = ACTIONS(9704), + [aux_sym_def_type_statement_token10] = ACTIONS(9704), + [aux_sym_def_type_statement_token11] = ACTIONS(9704), + [aux_sym_def_type_statement_token12] = ACTIONS(9704), + [aux_sym_def_type_statement_token13] = ACTIONS(9704), + [aux_sym_def_type_statement_token14] = ACTIONS(9704), + [aux_sym_call_statement_token1] = ACTIONS(9704), + [sym__ambiguous_call_statement] = ACTIONS(9704), + [aux_sym_addressof_expression_token1] = ACTIONS(9704), + [aux_sym_type_of_expression_token1] = ACTIONS(9704), + [aux_sym_unary_expression_token1] = ACTIONS(9704), + [sym_string_literal] = ACTIONS(9706), + [sym_number_literal] = ACTIONS(9706), + [aux_sym_boolean_literal_token1] = ACTIONS(9704), + [aux_sym_boolean_literal_token2] = ACTIONS(9704), + [sym_nothing_literal] = ACTIONS(9704), + [sym_null_literal] = ACTIONS(9704), + [sym_empty_literal] = ACTIONS(9704), + [sym_date_literal] = ACTIONS(9706), + [anon_sym_POUND] = ACTIONS(9704), + }, + [STATE(7107)] = { + [sym_identifier] = ACTIONS(9188), + [sym_newline] = ACTIONS(9190), + [anon_sym_COLON] = ACTIONS(9190), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9188), + [aux_sym_frm_property_statement_token1] = ACTIONS(9188), + [anon_sym_DOT] = ACTIONS(9188), + [anon_sym_BANG] = ACTIONS(9190), + [aux_sym__attribute_identifier_token1] = ACTIONS(9188), + [aux_sym_option_statement_token3] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9188), + [aux_sym_preprocessor_const_token1] = ACTIONS(9188), + [sym_static_modifier] = ACTIONS(9188), + [sym__dim_keyword] = ACTIONS(9188), + [sym__redim_keyword] = ACTIONS(9188), + [aux_sym_get_accessor_token1] = ACTIONS(9188), + [aux_sym_set_accessor_token1] = ACTIONS(9188), + [aux_sym_const_declaration_token1] = ACTIONS(9188), + [anon_sym_LPAREN] = ACTIONS(9190), + [aux_sym_as_type_clause_token2] = ACTIONS(9188), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9188), + [aux_sym_visibility_token1] = ACTIONS(9188), + [aux_sym_visibility_token2] = ACTIONS(9188), + [aux_sym_elseif_fragment_token1] = ACTIONS(9188), + [aux_sym_else_fragment_token1] = ACTIONS(9188), + [aux_sym_select_statement_token1] = ACTIONS(9188), + [aux_sym__for_header_token1] = ACTIONS(9188), + [aux_sym_do_statement_token1] = ACTIONS(9188), + [aux_sym_do_statement_token2] = ACTIONS(9188), + [aux_sym_do_condition_token1] = ACTIONS(9188), + [aux_sym_with_statement_token1] = ACTIONS(9188), + [aux_sym_exit_statement_token1] = ACTIONS(9188), + [sym_end_statement] = ACTIONS(9190), + [aux_sym_on_goto_statement_token1] = ACTIONS(9188), + [aux_sym_on_goto_statement_token2] = ACTIONS(9188), + [aux_sym_on_error_statement_token2] = ACTIONS(9188), + [sym__ambiguous_redim_statement] = ACTIONS(9190), + [aux_sym_erase_statement_token1] = ACTIONS(9188), + [aux_sym_open_statement_token1] = ACTIONS(9188), + [aux_sym_file_mode_token2] = ACTIONS(9188), + [aux_sym_file_access_token2] = ACTIONS(9188), + [aux_sym_file_lock_token2] = ACTIONS(9188), + [aux_sym_print_statement_token1] = ACTIONS(9188), + [anon_sym_PLUS] = ACTIONS(9190), + [anon_sym_DASH] = ACTIONS(9188), + [anon_sym_QMARK] = ACTIONS(9190), + [aux_sym_close_statement_token1] = ACTIONS(9188), + [aux_sym_put_statement_token1] = ACTIONS(9188), + [aux_sym_unlock_statement_token1] = ACTIONS(9188), + [aux_sym_seek_statement_token1] = ACTIONS(9188), + [sym_reset_statement] = ACTIONS(9188), + [aux_sym_raise_event_statement_token1] = ACTIONS(9188), + [sym_stop_statement] = ACTIONS(9188), + [sym_beep_statement] = ACTIONS(9188), + [aux_sym_unload_statement_token1] = ACTIONS(9188), + [aux_sym_def_type_statement_token1] = ACTIONS(9188), + [aux_sym_def_type_statement_token2] = ACTIONS(9188), + [aux_sym_def_type_statement_token3] = ACTIONS(9188), + [aux_sym_def_type_statement_token4] = ACTIONS(9188), + [aux_sym_def_type_statement_token5] = ACTIONS(9188), + [aux_sym_def_type_statement_token6] = ACTIONS(9188), + [aux_sym_def_type_statement_token7] = ACTIONS(9188), + [aux_sym_def_type_statement_token8] = ACTIONS(9188), + [aux_sym_def_type_statement_token9] = ACTIONS(9188), + [aux_sym_def_type_statement_token10] = ACTIONS(9188), + [aux_sym_def_type_statement_token11] = ACTIONS(9188), + [aux_sym_def_type_statement_token12] = ACTIONS(9188), + [aux_sym_def_type_statement_token13] = ACTIONS(9188), + [aux_sym_def_type_statement_token14] = ACTIONS(9188), + [aux_sym_call_statement_token1] = ACTIONS(9188), + [sym__ambiguous_call_statement] = ACTIONS(9188), + [aux_sym_addressof_expression_token1] = ACTIONS(9188), + [aux_sym_type_of_expression_token1] = ACTIONS(9188), + [aux_sym_unary_expression_token1] = ACTIONS(9188), + [sym_string_literal] = ACTIONS(9190), + [sym_number_literal] = ACTIONS(9190), + [aux_sym_boolean_literal_token1] = ACTIONS(9188), + [aux_sym_boolean_literal_token2] = ACTIONS(9188), + [sym_nothing_literal] = ACTIONS(9188), + [sym_null_literal] = ACTIONS(9188), + [sym_empty_literal] = ACTIONS(9188), + [sym_date_literal] = ACTIONS(9190), + [anon_sym_POUND] = ACTIONS(9188), + }, + [STATE(7108)] = { + [sym_identifier] = ACTIONS(9708), + [sym_newline] = ACTIONS(9710), + [anon_sym_COLON] = ACTIONS(9710), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9708), + [aux_sym_frm_property_statement_token1] = ACTIONS(9708), + [anon_sym_DOT] = ACTIONS(9708), + [anon_sym_BANG] = ACTIONS(9710), + [aux_sym__attribute_identifier_token1] = ACTIONS(9708), + [aux_sym_option_statement_token3] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9708), + [aux_sym_preprocessor_const_token1] = ACTIONS(9708), + [sym_static_modifier] = ACTIONS(9708), + [sym__dim_keyword] = ACTIONS(9708), + [sym__redim_keyword] = ACTIONS(9708), + [aux_sym_get_accessor_token1] = ACTIONS(9708), + [aux_sym_set_accessor_token1] = ACTIONS(9708), + [aux_sym_const_declaration_token1] = ACTIONS(9708), + [anon_sym_LPAREN] = ACTIONS(9710), + [aux_sym_as_type_clause_token2] = ACTIONS(9708), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9708), + [aux_sym_visibility_token1] = ACTIONS(9708), + [aux_sym_visibility_token2] = ACTIONS(9708), + [aux_sym_elseif_fragment_token1] = ACTIONS(9708), + [aux_sym_else_fragment_token1] = ACTIONS(9708), + [aux_sym_select_statement_token1] = ACTIONS(9708), + [aux_sym__for_header_token1] = ACTIONS(9708), + [aux_sym_do_statement_token1] = ACTIONS(9708), + [aux_sym_do_condition_token1] = ACTIONS(9708), + [aux_sym_while_statement_token1] = ACTIONS(9708), + [aux_sym_with_statement_token1] = ACTIONS(9708), + [aux_sym_exit_statement_token1] = ACTIONS(9708), + [sym_end_statement] = ACTIONS(9710), + [aux_sym_on_goto_statement_token1] = ACTIONS(9708), + [aux_sym_on_goto_statement_token2] = ACTIONS(9708), + [aux_sym_on_error_statement_token2] = ACTIONS(9708), + [sym__ambiguous_redim_statement] = ACTIONS(9710), + [aux_sym_erase_statement_token1] = ACTIONS(9708), + [aux_sym_open_statement_token1] = ACTIONS(9708), + [aux_sym_file_mode_token2] = ACTIONS(9708), + [aux_sym_file_access_token2] = ACTIONS(9708), + [aux_sym_file_lock_token2] = ACTIONS(9708), + [aux_sym_print_statement_token1] = ACTIONS(9708), + [anon_sym_PLUS] = ACTIONS(9710), + [anon_sym_DASH] = ACTIONS(9708), + [anon_sym_QMARK] = ACTIONS(9710), + [aux_sym_close_statement_token1] = ACTIONS(9708), + [aux_sym_put_statement_token1] = ACTIONS(9708), + [aux_sym_unlock_statement_token1] = ACTIONS(9708), + [aux_sym_seek_statement_token1] = ACTIONS(9708), + [sym_reset_statement] = ACTIONS(9708), + [aux_sym_raise_event_statement_token1] = ACTIONS(9708), + [sym_stop_statement] = ACTIONS(9708), + [sym_beep_statement] = ACTIONS(9708), + [aux_sym_unload_statement_token1] = ACTIONS(9708), + [aux_sym_def_type_statement_token1] = ACTIONS(9708), + [aux_sym_def_type_statement_token2] = ACTIONS(9708), + [aux_sym_def_type_statement_token3] = ACTIONS(9708), + [aux_sym_def_type_statement_token4] = ACTIONS(9708), + [aux_sym_def_type_statement_token5] = ACTIONS(9708), + [aux_sym_def_type_statement_token6] = ACTIONS(9708), + [aux_sym_def_type_statement_token7] = ACTIONS(9708), + [aux_sym_def_type_statement_token8] = ACTIONS(9708), + [aux_sym_def_type_statement_token9] = ACTIONS(9708), + [aux_sym_def_type_statement_token10] = ACTIONS(9708), + [aux_sym_def_type_statement_token11] = ACTIONS(9708), + [aux_sym_def_type_statement_token12] = ACTIONS(9708), + [aux_sym_def_type_statement_token13] = ACTIONS(9708), + [aux_sym_def_type_statement_token14] = ACTIONS(9708), + [aux_sym_call_statement_token1] = ACTIONS(9708), + [sym__ambiguous_call_statement] = ACTIONS(9708), + [aux_sym_addressof_expression_token1] = ACTIONS(9708), + [aux_sym_type_of_expression_token1] = ACTIONS(9708), + [aux_sym_unary_expression_token1] = ACTIONS(9708), + [sym_string_literal] = ACTIONS(9710), + [sym_number_literal] = ACTIONS(9710), + [aux_sym_boolean_literal_token1] = ACTIONS(9708), + [aux_sym_boolean_literal_token2] = ACTIONS(9708), + [sym_nothing_literal] = ACTIONS(9708), + [sym_null_literal] = ACTIONS(9708), + [sym_empty_literal] = ACTIONS(9708), + [sym_date_literal] = ACTIONS(9710), + [anon_sym_POUND] = ACTIONS(9708), + }, + [STATE(7109)] = { + [sym_identifier] = ACTIONS(9514), + [sym_newline] = ACTIONS(9516), + [anon_sym_COLON] = ACTIONS(9516), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9514), + [aux_sym_frm_property_statement_token1] = ACTIONS(9514), + [anon_sym_DOT] = ACTIONS(9514), + [anon_sym_BANG] = ACTIONS(9516), + [aux_sym__attribute_identifier_token1] = ACTIONS(9514), + [aux_sym_option_statement_token3] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9514), + [aux_sym_preprocessor_const_token1] = ACTIONS(9514), + [sym_static_modifier] = ACTIONS(9514), + [sym__dim_keyword] = ACTIONS(9514), + [sym__redim_keyword] = ACTIONS(9514), + [aux_sym_get_accessor_token1] = ACTIONS(9514), + [aux_sym_set_accessor_token1] = ACTIONS(9514), + [aux_sym_const_declaration_token1] = ACTIONS(9514), + [anon_sym_LPAREN] = ACTIONS(9516), + [aux_sym_as_type_clause_token2] = ACTIONS(9514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9514), + [aux_sym_visibility_token1] = ACTIONS(9514), + [aux_sym_visibility_token2] = ACTIONS(9514), + [aux_sym_elseif_fragment_token1] = ACTIONS(9514), + [aux_sym_else_fragment_token1] = ACTIONS(9514), + [aux_sym_select_statement_token1] = ACTIONS(9514), + [aux_sym__for_header_token1] = ACTIONS(9514), + [aux_sym_do_statement_token1] = ACTIONS(9514), + [aux_sym_do_statement_token2] = ACTIONS(9514), + [aux_sym_do_condition_token1] = ACTIONS(9514), + [aux_sym_with_statement_token1] = ACTIONS(9514), + [aux_sym_exit_statement_token1] = ACTIONS(9514), + [sym_end_statement] = ACTIONS(9516), + [aux_sym_on_goto_statement_token1] = ACTIONS(9514), + [aux_sym_on_goto_statement_token2] = ACTIONS(9514), + [aux_sym_on_error_statement_token2] = ACTIONS(9514), + [sym__ambiguous_redim_statement] = ACTIONS(9516), + [aux_sym_erase_statement_token1] = ACTIONS(9514), + [aux_sym_open_statement_token1] = ACTIONS(9514), + [aux_sym_file_mode_token2] = ACTIONS(9514), + [aux_sym_file_access_token2] = ACTIONS(9514), + [aux_sym_file_lock_token2] = ACTIONS(9514), + [aux_sym_print_statement_token1] = ACTIONS(9514), + [anon_sym_PLUS] = ACTIONS(9516), + [anon_sym_DASH] = ACTIONS(9514), + [anon_sym_QMARK] = ACTIONS(9516), + [aux_sym_close_statement_token1] = ACTIONS(9514), + [aux_sym_put_statement_token1] = ACTIONS(9514), + [aux_sym_unlock_statement_token1] = ACTIONS(9514), + [aux_sym_seek_statement_token1] = ACTIONS(9514), + [sym_reset_statement] = ACTIONS(9514), + [aux_sym_raise_event_statement_token1] = ACTIONS(9514), + [sym_stop_statement] = ACTIONS(9514), + [sym_beep_statement] = ACTIONS(9514), + [aux_sym_unload_statement_token1] = ACTIONS(9514), + [aux_sym_def_type_statement_token1] = ACTIONS(9514), + [aux_sym_def_type_statement_token2] = ACTIONS(9514), + [aux_sym_def_type_statement_token3] = ACTIONS(9514), + [aux_sym_def_type_statement_token4] = ACTIONS(9514), + [aux_sym_def_type_statement_token5] = ACTIONS(9514), + [aux_sym_def_type_statement_token6] = ACTIONS(9514), + [aux_sym_def_type_statement_token7] = ACTIONS(9514), + [aux_sym_def_type_statement_token8] = ACTIONS(9514), + [aux_sym_def_type_statement_token9] = ACTIONS(9514), + [aux_sym_def_type_statement_token10] = ACTIONS(9514), + [aux_sym_def_type_statement_token11] = ACTIONS(9514), + [aux_sym_def_type_statement_token12] = ACTIONS(9514), + [aux_sym_def_type_statement_token13] = ACTIONS(9514), + [aux_sym_def_type_statement_token14] = ACTIONS(9514), + [aux_sym_call_statement_token1] = ACTIONS(9514), + [sym__ambiguous_call_statement] = ACTIONS(9514), + [aux_sym_addressof_expression_token1] = ACTIONS(9514), + [aux_sym_type_of_expression_token1] = ACTIONS(9514), + [aux_sym_unary_expression_token1] = ACTIONS(9514), + [sym_string_literal] = ACTIONS(9516), + [sym_number_literal] = ACTIONS(9516), + [aux_sym_boolean_literal_token1] = ACTIONS(9514), + [aux_sym_boolean_literal_token2] = ACTIONS(9514), + [sym_nothing_literal] = ACTIONS(9514), + [sym_null_literal] = ACTIONS(9514), + [sym_empty_literal] = ACTIONS(9514), + [sym_date_literal] = ACTIONS(9516), + [anon_sym_POUND] = ACTIONS(9514), + }, + [STATE(7110)] = { + [sym_identifier] = ACTIONS(9192), + [sym_newline] = ACTIONS(9194), + [anon_sym_COLON] = ACTIONS(9194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9192), + [aux_sym_frm_property_statement_token1] = ACTIONS(9192), + [anon_sym_DOT] = ACTIONS(9192), + [anon_sym_BANG] = ACTIONS(9194), + [aux_sym__attribute_identifier_token1] = ACTIONS(9192), + [aux_sym_option_statement_token3] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9192), + [aux_sym_preprocessor_const_token1] = ACTIONS(9192), + [sym_static_modifier] = ACTIONS(9192), + [sym__dim_keyword] = ACTIONS(9192), + [sym__redim_keyword] = ACTIONS(9192), + [aux_sym_get_accessor_token1] = ACTIONS(9192), + [aux_sym_set_accessor_token1] = ACTIONS(9192), + [aux_sym_const_declaration_token1] = ACTIONS(9192), + [anon_sym_LPAREN] = ACTIONS(9194), + [aux_sym_as_type_clause_token2] = ACTIONS(9192), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9192), + [aux_sym_visibility_token1] = ACTIONS(9192), + [aux_sym_visibility_token2] = ACTIONS(9192), + [aux_sym_elseif_fragment_token1] = ACTIONS(9192), + [aux_sym_else_fragment_token1] = ACTIONS(9192), + [aux_sym_select_statement_token1] = ACTIONS(9192), + [aux_sym__for_header_token1] = ACTIONS(9192), + [aux_sym_do_statement_token1] = ACTIONS(9192), + [aux_sym_do_statement_token2] = ACTIONS(9192), + [aux_sym_do_condition_token1] = ACTIONS(9192), + [aux_sym_with_statement_token1] = ACTIONS(9192), + [aux_sym_exit_statement_token1] = ACTIONS(9192), + [sym_end_statement] = ACTIONS(9194), + [aux_sym_on_goto_statement_token1] = ACTIONS(9192), + [aux_sym_on_goto_statement_token2] = ACTIONS(9192), + [aux_sym_on_error_statement_token2] = ACTIONS(9192), + [sym__ambiguous_redim_statement] = ACTIONS(9194), + [aux_sym_erase_statement_token1] = ACTIONS(9192), + [aux_sym_open_statement_token1] = ACTIONS(9192), + [aux_sym_file_mode_token2] = ACTIONS(9192), + [aux_sym_file_access_token2] = ACTIONS(9192), + [aux_sym_file_lock_token2] = ACTIONS(9192), + [aux_sym_print_statement_token1] = ACTIONS(9192), + [anon_sym_PLUS] = ACTIONS(9194), + [anon_sym_DASH] = ACTIONS(9192), + [anon_sym_QMARK] = ACTIONS(9194), + [aux_sym_close_statement_token1] = ACTIONS(9192), + [aux_sym_put_statement_token1] = ACTIONS(9192), + [aux_sym_unlock_statement_token1] = ACTIONS(9192), + [aux_sym_seek_statement_token1] = ACTIONS(9192), + [sym_reset_statement] = ACTIONS(9192), + [aux_sym_raise_event_statement_token1] = ACTIONS(9192), + [sym_stop_statement] = ACTIONS(9192), + [sym_beep_statement] = ACTIONS(9192), + [aux_sym_unload_statement_token1] = ACTIONS(9192), + [aux_sym_def_type_statement_token1] = ACTIONS(9192), + [aux_sym_def_type_statement_token2] = ACTIONS(9192), + [aux_sym_def_type_statement_token3] = ACTIONS(9192), + [aux_sym_def_type_statement_token4] = ACTIONS(9192), + [aux_sym_def_type_statement_token5] = ACTIONS(9192), + [aux_sym_def_type_statement_token6] = ACTIONS(9192), + [aux_sym_def_type_statement_token7] = ACTIONS(9192), + [aux_sym_def_type_statement_token8] = ACTIONS(9192), + [aux_sym_def_type_statement_token9] = ACTIONS(9192), + [aux_sym_def_type_statement_token10] = ACTIONS(9192), + [aux_sym_def_type_statement_token11] = ACTIONS(9192), + [aux_sym_def_type_statement_token12] = ACTIONS(9192), + [aux_sym_def_type_statement_token13] = ACTIONS(9192), + [aux_sym_def_type_statement_token14] = ACTIONS(9192), + [aux_sym_call_statement_token1] = ACTIONS(9192), + [sym__ambiguous_call_statement] = ACTIONS(9192), + [aux_sym_addressof_expression_token1] = ACTIONS(9192), + [aux_sym_type_of_expression_token1] = ACTIONS(9192), + [aux_sym_unary_expression_token1] = ACTIONS(9192), + [sym_string_literal] = ACTIONS(9194), + [sym_number_literal] = ACTIONS(9194), + [aux_sym_boolean_literal_token1] = ACTIONS(9192), + [aux_sym_boolean_literal_token2] = ACTIONS(9192), + [sym_nothing_literal] = ACTIONS(9192), + [sym_null_literal] = ACTIONS(9192), + [sym_empty_literal] = ACTIONS(9192), + [sym_date_literal] = ACTIONS(9194), + [anon_sym_POUND] = ACTIONS(9192), + }, + [STATE(7111)] = { + [sym_identifier] = ACTIONS(9712), + [sym_newline] = ACTIONS(9714), + [anon_sym_COLON] = ACTIONS(9714), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9712), + [aux_sym_frm_property_statement_token1] = ACTIONS(9712), + [anon_sym_DOT] = ACTIONS(9712), + [anon_sym_BANG] = ACTIONS(9714), + [aux_sym__attribute_identifier_token1] = ACTIONS(9712), + [aux_sym_option_statement_token3] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9712), + [aux_sym_preprocessor_const_token1] = ACTIONS(9712), + [sym_static_modifier] = ACTIONS(9712), + [sym__dim_keyword] = ACTIONS(9712), + [sym__redim_keyword] = ACTIONS(9712), + [aux_sym_get_accessor_token1] = ACTIONS(9712), + [aux_sym_set_accessor_token1] = ACTIONS(9712), + [aux_sym_const_declaration_token1] = ACTIONS(9712), + [anon_sym_LPAREN] = ACTIONS(9714), + [aux_sym_as_type_clause_token2] = ACTIONS(9712), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9712), + [aux_sym_visibility_token1] = ACTIONS(9712), + [aux_sym_visibility_token2] = ACTIONS(9712), + [aux_sym_elseif_fragment_token1] = ACTIONS(9712), + [aux_sym_else_fragment_token1] = ACTIONS(9712), + [aux_sym_select_statement_token1] = ACTIONS(9712), + [aux_sym__for_header_token1] = ACTIONS(9712), + [aux_sym_do_statement_token1] = ACTIONS(9712), + [aux_sym_do_condition_token1] = ACTIONS(9712), + [aux_sym_while_statement_token1] = ACTIONS(9712), + [aux_sym_with_statement_token1] = ACTIONS(9712), + [aux_sym_exit_statement_token1] = ACTIONS(9712), + [sym_end_statement] = ACTIONS(9714), + [aux_sym_on_goto_statement_token1] = ACTIONS(9712), + [aux_sym_on_goto_statement_token2] = ACTIONS(9712), + [aux_sym_on_error_statement_token2] = ACTIONS(9712), + [sym__ambiguous_redim_statement] = ACTIONS(9714), + [aux_sym_erase_statement_token1] = ACTIONS(9712), + [aux_sym_open_statement_token1] = ACTIONS(9712), + [aux_sym_file_mode_token2] = ACTIONS(9712), + [aux_sym_file_access_token2] = ACTIONS(9712), + [aux_sym_file_lock_token2] = ACTIONS(9712), + [aux_sym_print_statement_token1] = ACTIONS(9712), + [anon_sym_PLUS] = ACTIONS(9714), + [anon_sym_DASH] = ACTIONS(9712), + [anon_sym_QMARK] = ACTIONS(9714), + [aux_sym_close_statement_token1] = ACTIONS(9712), + [aux_sym_put_statement_token1] = ACTIONS(9712), + [aux_sym_unlock_statement_token1] = ACTIONS(9712), + [aux_sym_seek_statement_token1] = ACTIONS(9712), + [sym_reset_statement] = ACTIONS(9712), + [aux_sym_raise_event_statement_token1] = ACTIONS(9712), + [sym_stop_statement] = ACTIONS(9712), + [sym_beep_statement] = ACTIONS(9712), + [aux_sym_unload_statement_token1] = ACTIONS(9712), + [aux_sym_def_type_statement_token1] = ACTIONS(9712), + [aux_sym_def_type_statement_token2] = ACTIONS(9712), + [aux_sym_def_type_statement_token3] = ACTIONS(9712), + [aux_sym_def_type_statement_token4] = ACTIONS(9712), + [aux_sym_def_type_statement_token5] = ACTIONS(9712), + [aux_sym_def_type_statement_token6] = ACTIONS(9712), + [aux_sym_def_type_statement_token7] = ACTIONS(9712), + [aux_sym_def_type_statement_token8] = ACTIONS(9712), + [aux_sym_def_type_statement_token9] = ACTIONS(9712), + [aux_sym_def_type_statement_token10] = ACTIONS(9712), + [aux_sym_def_type_statement_token11] = ACTIONS(9712), + [aux_sym_def_type_statement_token12] = ACTIONS(9712), + [aux_sym_def_type_statement_token13] = ACTIONS(9712), + [aux_sym_def_type_statement_token14] = ACTIONS(9712), + [aux_sym_call_statement_token1] = ACTIONS(9712), + [sym__ambiguous_call_statement] = ACTIONS(9712), + [aux_sym_addressof_expression_token1] = ACTIONS(9712), + [aux_sym_type_of_expression_token1] = ACTIONS(9712), + [aux_sym_unary_expression_token1] = ACTIONS(9712), + [sym_string_literal] = ACTIONS(9714), + [sym_number_literal] = ACTIONS(9714), + [aux_sym_boolean_literal_token1] = ACTIONS(9712), + [aux_sym_boolean_literal_token2] = ACTIONS(9712), + [sym_nothing_literal] = ACTIONS(9712), + [sym_null_literal] = ACTIONS(9712), + [sym_empty_literal] = ACTIONS(9712), + [sym_date_literal] = ACTIONS(9714), + [anon_sym_POUND] = ACTIONS(9712), + }, + [STATE(7112)] = { + [sym_identifier] = ACTIONS(9716), + [sym_newline] = ACTIONS(9718), + [anon_sym_COLON] = ACTIONS(9718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9716), + [aux_sym_frm_property_statement_token1] = ACTIONS(9716), + [anon_sym_DOT] = ACTIONS(9716), + [anon_sym_BANG] = ACTIONS(9718), + [aux_sym__attribute_identifier_token1] = ACTIONS(9716), + [aux_sym_option_statement_token3] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9716), + [aux_sym_preprocessor_const_token1] = ACTIONS(9716), + [sym_static_modifier] = ACTIONS(9716), + [sym__dim_keyword] = ACTIONS(9716), + [sym__redim_keyword] = ACTIONS(9716), + [aux_sym_get_accessor_token1] = ACTIONS(9716), + [aux_sym_set_accessor_token1] = ACTIONS(9716), + [aux_sym_const_declaration_token1] = ACTIONS(9716), + [anon_sym_LPAREN] = ACTIONS(9718), + [aux_sym_as_type_clause_token2] = ACTIONS(9716), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9716), + [aux_sym_visibility_token1] = ACTIONS(9716), + [aux_sym_visibility_token2] = ACTIONS(9716), + [aux_sym_elseif_fragment_token1] = ACTIONS(9716), + [aux_sym_else_fragment_token1] = ACTIONS(9716), + [aux_sym_select_statement_token1] = ACTIONS(9716), + [aux_sym__for_header_token1] = ACTIONS(9716), + [aux_sym_do_statement_token1] = ACTIONS(9716), + [aux_sym_do_condition_token1] = ACTIONS(9716), + [aux_sym_while_statement_token1] = ACTIONS(9716), + [aux_sym_with_statement_token1] = ACTIONS(9716), + [aux_sym_exit_statement_token1] = ACTIONS(9716), + [sym_end_statement] = ACTIONS(9718), + [aux_sym_on_goto_statement_token1] = ACTIONS(9716), + [aux_sym_on_goto_statement_token2] = ACTIONS(9716), + [aux_sym_on_error_statement_token2] = ACTIONS(9716), + [sym__ambiguous_redim_statement] = ACTIONS(9718), + [aux_sym_erase_statement_token1] = ACTIONS(9716), + [aux_sym_open_statement_token1] = ACTIONS(9716), + [aux_sym_file_mode_token2] = ACTIONS(9716), + [aux_sym_file_access_token2] = ACTIONS(9716), + [aux_sym_file_lock_token2] = ACTIONS(9716), + [aux_sym_print_statement_token1] = ACTIONS(9716), + [anon_sym_PLUS] = ACTIONS(9718), + [anon_sym_DASH] = ACTIONS(9716), + [anon_sym_QMARK] = ACTIONS(9718), + [aux_sym_close_statement_token1] = ACTIONS(9716), + [aux_sym_put_statement_token1] = ACTIONS(9716), + [aux_sym_unlock_statement_token1] = ACTIONS(9716), + [aux_sym_seek_statement_token1] = ACTIONS(9716), + [sym_reset_statement] = ACTIONS(9716), + [aux_sym_raise_event_statement_token1] = ACTIONS(9716), + [sym_stop_statement] = ACTIONS(9716), + [sym_beep_statement] = ACTIONS(9716), + [aux_sym_unload_statement_token1] = ACTIONS(9716), + [aux_sym_def_type_statement_token1] = ACTIONS(9716), + [aux_sym_def_type_statement_token2] = ACTIONS(9716), + [aux_sym_def_type_statement_token3] = ACTIONS(9716), + [aux_sym_def_type_statement_token4] = ACTIONS(9716), + [aux_sym_def_type_statement_token5] = ACTIONS(9716), + [aux_sym_def_type_statement_token6] = ACTIONS(9716), + [aux_sym_def_type_statement_token7] = ACTIONS(9716), + [aux_sym_def_type_statement_token8] = ACTIONS(9716), + [aux_sym_def_type_statement_token9] = ACTIONS(9716), + [aux_sym_def_type_statement_token10] = ACTIONS(9716), + [aux_sym_def_type_statement_token11] = ACTIONS(9716), + [aux_sym_def_type_statement_token12] = ACTIONS(9716), + [aux_sym_def_type_statement_token13] = ACTIONS(9716), + [aux_sym_def_type_statement_token14] = ACTIONS(9716), + [aux_sym_call_statement_token1] = ACTIONS(9716), + [sym__ambiguous_call_statement] = ACTIONS(9716), + [aux_sym_addressof_expression_token1] = ACTIONS(9716), + [aux_sym_type_of_expression_token1] = ACTIONS(9716), + [aux_sym_unary_expression_token1] = ACTIONS(9716), + [sym_string_literal] = ACTIONS(9718), + [sym_number_literal] = ACTIONS(9718), + [aux_sym_boolean_literal_token1] = ACTIONS(9716), + [aux_sym_boolean_literal_token2] = ACTIONS(9716), + [sym_nothing_literal] = ACTIONS(9716), + [sym_null_literal] = ACTIONS(9716), + [sym_empty_literal] = ACTIONS(9716), + [sym_date_literal] = ACTIONS(9718), + [anon_sym_POUND] = ACTIONS(9716), + }, + [STATE(7113)] = { + [sym_identifier] = ACTIONS(9268), + [sym_newline] = ACTIONS(9270), + [anon_sym_COLON] = ACTIONS(9270), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9268), + [aux_sym_frm_property_statement_token1] = ACTIONS(9268), + [anon_sym_DOT] = ACTIONS(9268), + [anon_sym_BANG] = ACTIONS(9270), + [aux_sym__attribute_identifier_token1] = ACTIONS(9268), + [aux_sym_option_statement_token3] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9268), + [aux_sym_preprocessor_const_token1] = ACTIONS(9268), + [sym_static_modifier] = ACTIONS(9268), + [sym__dim_keyword] = ACTIONS(9268), + [sym__redim_keyword] = ACTIONS(9268), + [aux_sym_get_accessor_token1] = ACTIONS(9268), + [aux_sym_set_accessor_token1] = ACTIONS(9268), + [aux_sym_const_declaration_token1] = ACTIONS(9268), + [anon_sym_LPAREN] = ACTIONS(9270), + [aux_sym_as_type_clause_token2] = ACTIONS(9268), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9268), + [aux_sym_visibility_token1] = ACTIONS(9268), + [aux_sym_visibility_token2] = ACTIONS(9268), + [aux_sym_elseif_fragment_token1] = ACTIONS(9268), + [aux_sym_else_fragment_token1] = ACTIONS(9268), + [aux_sym_select_statement_token1] = ACTIONS(9268), + [aux_sym_select_statement_token2] = ACTIONS(9268), + [aux_sym__for_header_token1] = ACTIONS(9268), + [aux_sym_do_statement_token1] = ACTIONS(9268), + [aux_sym_do_condition_token1] = ACTIONS(9268), + [aux_sym_with_statement_token1] = ACTIONS(9268), + [aux_sym_exit_statement_token1] = ACTIONS(9268), + [sym_end_statement] = ACTIONS(9270), + [aux_sym_on_goto_statement_token1] = ACTIONS(9268), + [aux_sym_on_goto_statement_token2] = ACTIONS(9268), + [aux_sym_on_error_statement_token2] = ACTIONS(9268), + [sym__ambiguous_redim_statement] = ACTIONS(9270), + [aux_sym_erase_statement_token1] = ACTIONS(9268), + [aux_sym_open_statement_token1] = ACTIONS(9268), + [aux_sym_file_mode_token2] = ACTIONS(9268), + [aux_sym_file_access_token2] = ACTIONS(9268), + [aux_sym_file_lock_token2] = ACTIONS(9268), + [aux_sym_print_statement_token1] = ACTIONS(9268), + [anon_sym_PLUS] = ACTIONS(9270), + [anon_sym_DASH] = ACTIONS(9268), + [anon_sym_QMARK] = ACTIONS(9270), + [aux_sym_close_statement_token1] = ACTIONS(9268), + [aux_sym_put_statement_token1] = ACTIONS(9268), + [aux_sym_unlock_statement_token1] = ACTIONS(9268), + [aux_sym_seek_statement_token1] = ACTIONS(9268), + [sym_reset_statement] = ACTIONS(9268), + [aux_sym_raise_event_statement_token1] = ACTIONS(9268), + [sym_stop_statement] = ACTIONS(9268), + [sym_beep_statement] = ACTIONS(9268), + [aux_sym_unload_statement_token1] = ACTIONS(9268), + [aux_sym_def_type_statement_token1] = ACTIONS(9268), + [aux_sym_def_type_statement_token2] = ACTIONS(9268), + [aux_sym_def_type_statement_token3] = ACTIONS(9268), + [aux_sym_def_type_statement_token4] = ACTIONS(9268), + [aux_sym_def_type_statement_token5] = ACTIONS(9268), + [aux_sym_def_type_statement_token6] = ACTIONS(9268), + [aux_sym_def_type_statement_token7] = ACTIONS(9268), + [aux_sym_def_type_statement_token8] = ACTIONS(9268), + [aux_sym_def_type_statement_token9] = ACTIONS(9268), + [aux_sym_def_type_statement_token10] = ACTIONS(9268), + [aux_sym_def_type_statement_token11] = ACTIONS(9268), + [aux_sym_def_type_statement_token12] = ACTIONS(9268), + [aux_sym_def_type_statement_token13] = ACTIONS(9268), + [aux_sym_def_type_statement_token14] = ACTIONS(9268), + [aux_sym_call_statement_token1] = ACTIONS(9268), + [sym__ambiguous_call_statement] = ACTIONS(9268), + [aux_sym_addressof_expression_token1] = ACTIONS(9268), + [aux_sym_type_of_expression_token1] = ACTIONS(9268), + [aux_sym_unary_expression_token1] = ACTIONS(9268), + [sym_string_literal] = ACTIONS(9270), + [sym_number_literal] = ACTIONS(9270), + [aux_sym_boolean_literal_token1] = ACTIONS(9268), + [aux_sym_boolean_literal_token2] = ACTIONS(9268), + [sym_nothing_literal] = ACTIONS(9268), + [sym_null_literal] = ACTIONS(9268), + [sym_empty_literal] = ACTIONS(9268), + [sym_date_literal] = ACTIONS(9270), + [anon_sym_POUND] = ACTIONS(9268), + }, + [STATE(7114)] = { + [sym_identifier] = ACTIONS(9272), + [sym_newline] = ACTIONS(9274), + [anon_sym_COLON] = ACTIONS(9274), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9272), + [aux_sym_frm_property_statement_token1] = ACTIONS(9272), + [anon_sym_DOT] = ACTIONS(9272), + [anon_sym_BANG] = ACTIONS(9274), + [aux_sym__attribute_identifier_token1] = ACTIONS(9272), + [aux_sym_option_statement_token3] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9272), + [aux_sym_preprocessor_const_token1] = ACTIONS(9272), + [sym_static_modifier] = ACTIONS(9272), + [sym__dim_keyword] = ACTIONS(9272), + [sym__redim_keyword] = ACTIONS(9272), + [aux_sym_get_accessor_token1] = ACTIONS(9272), + [aux_sym_set_accessor_token1] = ACTIONS(9272), + [aux_sym_const_declaration_token1] = ACTIONS(9272), + [anon_sym_LPAREN] = ACTIONS(9274), + [aux_sym_as_type_clause_token2] = ACTIONS(9272), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9272), + [aux_sym_visibility_token1] = ACTIONS(9272), + [aux_sym_visibility_token2] = ACTIONS(9272), + [aux_sym_elseif_fragment_token1] = ACTIONS(9272), + [aux_sym_else_fragment_token1] = ACTIONS(9272), + [aux_sym_select_statement_token1] = ACTIONS(9272), + [aux_sym_select_statement_token2] = ACTIONS(9272), + [aux_sym__for_header_token1] = ACTIONS(9272), + [aux_sym_do_statement_token1] = ACTIONS(9272), + [aux_sym_do_condition_token1] = ACTIONS(9272), + [aux_sym_with_statement_token1] = ACTIONS(9272), + [aux_sym_exit_statement_token1] = ACTIONS(9272), + [sym_end_statement] = ACTIONS(9274), + [aux_sym_on_goto_statement_token1] = ACTIONS(9272), + [aux_sym_on_goto_statement_token2] = ACTIONS(9272), + [aux_sym_on_error_statement_token2] = ACTIONS(9272), + [sym__ambiguous_redim_statement] = ACTIONS(9274), + [aux_sym_erase_statement_token1] = ACTIONS(9272), + [aux_sym_open_statement_token1] = ACTIONS(9272), + [aux_sym_file_mode_token2] = ACTIONS(9272), + [aux_sym_file_access_token2] = ACTIONS(9272), + [aux_sym_file_lock_token2] = ACTIONS(9272), + [aux_sym_print_statement_token1] = ACTIONS(9272), + [anon_sym_PLUS] = ACTIONS(9274), + [anon_sym_DASH] = ACTIONS(9272), + [anon_sym_QMARK] = ACTIONS(9274), + [aux_sym_close_statement_token1] = ACTIONS(9272), + [aux_sym_put_statement_token1] = ACTIONS(9272), + [aux_sym_unlock_statement_token1] = ACTIONS(9272), + [aux_sym_seek_statement_token1] = ACTIONS(9272), + [sym_reset_statement] = ACTIONS(9272), + [aux_sym_raise_event_statement_token1] = ACTIONS(9272), + [sym_stop_statement] = ACTIONS(9272), + [sym_beep_statement] = ACTIONS(9272), + [aux_sym_unload_statement_token1] = ACTIONS(9272), + [aux_sym_def_type_statement_token1] = ACTIONS(9272), + [aux_sym_def_type_statement_token2] = ACTIONS(9272), + [aux_sym_def_type_statement_token3] = ACTIONS(9272), + [aux_sym_def_type_statement_token4] = ACTIONS(9272), + [aux_sym_def_type_statement_token5] = ACTIONS(9272), + [aux_sym_def_type_statement_token6] = ACTIONS(9272), + [aux_sym_def_type_statement_token7] = ACTIONS(9272), + [aux_sym_def_type_statement_token8] = ACTIONS(9272), + [aux_sym_def_type_statement_token9] = ACTIONS(9272), + [aux_sym_def_type_statement_token10] = ACTIONS(9272), + [aux_sym_def_type_statement_token11] = ACTIONS(9272), + [aux_sym_def_type_statement_token12] = ACTIONS(9272), + [aux_sym_def_type_statement_token13] = ACTIONS(9272), + [aux_sym_def_type_statement_token14] = ACTIONS(9272), + [aux_sym_call_statement_token1] = ACTIONS(9272), + [sym__ambiguous_call_statement] = ACTIONS(9272), + [aux_sym_addressof_expression_token1] = ACTIONS(9272), + [aux_sym_type_of_expression_token1] = ACTIONS(9272), + [aux_sym_unary_expression_token1] = ACTIONS(9272), + [sym_string_literal] = ACTIONS(9274), + [sym_number_literal] = ACTIONS(9274), + [aux_sym_boolean_literal_token1] = ACTIONS(9272), + [aux_sym_boolean_literal_token2] = ACTIONS(9272), + [sym_nothing_literal] = ACTIONS(9272), + [sym_null_literal] = ACTIONS(9272), + [sym_empty_literal] = ACTIONS(9272), + [sym_date_literal] = ACTIONS(9274), + [anon_sym_POUND] = ACTIONS(9272), + }, + [STATE(7115)] = { + [sym_identifier] = ACTIONS(9518), + [sym_newline] = ACTIONS(9520), + [anon_sym_COLON] = ACTIONS(9520), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9518), + [aux_sym_frm_property_statement_token1] = ACTIONS(9518), + [anon_sym_DOT] = ACTIONS(9518), + [anon_sym_BANG] = ACTIONS(9520), + [aux_sym__attribute_identifier_token1] = ACTIONS(9518), + [aux_sym_option_statement_token3] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9518), + [aux_sym_preprocessor_const_token1] = ACTIONS(9518), + [sym_static_modifier] = ACTIONS(9518), + [sym__dim_keyword] = ACTIONS(9518), + [sym__redim_keyword] = ACTIONS(9518), + [aux_sym_get_accessor_token1] = ACTIONS(9518), + [aux_sym_set_accessor_token1] = ACTIONS(9518), + [aux_sym_const_declaration_token1] = ACTIONS(9518), + [anon_sym_LPAREN] = ACTIONS(9520), + [aux_sym_as_type_clause_token2] = ACTIONS(9518), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9518), + [aux_sym_visibility_token1] = ACTIONS(9518), + [aux_sym_visibility_token2] = ACTIONS(9518), + [aux_sym_elseif_fragment_token1] = ACTIONS(9518), + [aux_sym_else_fragment_token1] = ACTIONS(9518), + [aux_sym_select_statement_token1] = ACTIONS(9518), + [aux_sym__for_header_token1] = ACTIONS(9518), + [aux_sym_do_statement_token1] = ACTIONS(9518), + [aux_sym_do_statement_token2] = ACTIONS(9518), + [aux_sym_do_condition_token1] = ACTIONS(9518), + [aux_sym_with_statement_token1] = ACTIONS(9518), + [aux_sym_exit_statement_token1] = ACTIONS(9518), + [sym_end_statement] = ACTIONS(9520), + [aux_sym_on_goto_statement_token1] = ACTIONS(9518), + [aux_sym_on_goto_statement_token2] = ACTIONS(9518), + [aux_sym_on_error_statement_token2] = ACTIONS(9518), + [sym__ambiguous_redim_statement] = ACTIONS(9520), + [aux_sym_erase_statement_token1] = ACTIONS(9518), + [aux_sym_open_statement_token1] = ACTIONS(9518), + [aux_sym_file_mode_token2] = ACTIONS(9518), + [aux_sym_file_access_token2] = ACTIONS(9518), + [aux_sym_file_lock_token2] = ACTIONS(9518), + [aux_sym_print_statement_token1] = ACTIONS(9518), + [anon_sym_PLUS] = ACTIONS(9520), + [anon_sym_DASH] = ACTIONS(9518), + [anon_sym_QMARK] = ACTIONS(9520), + [aux_sym_close_statement_token1] = ACTIONS(9518), + [aux_sym_put_statement_token1] = ACTIONS(9518), + [aux_sym_unlock_statement_token1] = ACTIONS(9518), + [aux_sym_seek_statement_token1] = ACTIONS(9518), + [sym_reset_statement] = ACTIONS(9518), + [aux_sym_raise_event_statement_token1] = ACTIONS(9518), + [sym_stop_statement] = ACTIONS(9518), + [sym_beep_statement] = ACTIONS(9518), + [aux_sym_unload_statement_token1] = ACTIONS(9518), + [aux_sym_def_type_statement_token1] = ACTIONS(9518), + [aux_sym_def_type_statement_token2] = ACTIONS(9518), + [aux_sym_def_type_statement_token3] = ACTIONS(9518), + [aux_sym_def_type_statement_token4] = ACTIONS(9518), + [aux_sym_def_type_statement_token5] = ACTIONS(9518), + [aux_sym_def_type_statement_token6] = ACTIONS(9518), + [aux_sym_def_type_statement_token7] = ACTIONS(9518), + [aux_sym_def_type_statement_token8] = ACTIONS(9518), + [aux_sym_def_type_statement_token9] = ACTIONS(9518), + [aux_sym_def_type_statement_token10] = ACTIONS(9518), + [aux_sym_def_type_statement_token11] = ACTIONS(9518), + [aux_sym_def_type_statement_token12] = ACTIONS(9518), + [aux_sym_def_type_statement_token13] = ACTIONS(9518), + [aux_sym_def_type_statement_token14] = ACTIONS(9518), + [aux_sym_call_statement_token1] = ACTIONS(9518), + [sym__ambiguous_call_statement] = ACTIONS(9518), + [aux_sym_addressof_expression_token1] = ACTIONS(9518), + [aux_sym_type_of_expression_token1] = ACTIONS(9518), + [aux_sym_unary_expression_token1] = ACTIONS(9518), + [sym_string_literal] = ACTIONS(9520), + [sym_number_literal] = ACTIONS(9520), + [aux_sym_boolean_literal_token1] = ACTIONS(9518), + [aux_sym_boolean_literal_token2] = ACTIONS(9518), + [sym_nothing_literal] = ACTIONS(9518), + [sym_null_literal] = ACTIONS(9518), + [sym_empty_literal] = ACTIONS(9518), + [sym_date_literal] = ACTIONS(9520), + [anon_sym_POUND] = ACTIONS(9518), + }, + [STATE(7116)] = { + [sym_identifier] = ACTIONS(9514), + [sym_newline] = ACTIONS(9516), + [anon_sym_COLON] = ACTIONS(9516), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9514), + [aux_sym_frm_property_statement_token1] = ACTIONS(9514), + [anon_sym_DOT] = ACTIONS(9514), + [anon_sym_BANG] = ACTIONS(9516), + [aux_sym__attribute_identifier_token1] = ACTIONS(9514), + [aux_sym_option_statement_token3] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9514), + [aux_sym_preprocessor_const_token1] = ACTIONS(9514), + [sym_static_modifier] = ACTIONS(9514), + [sym__dim_keyword] = ACTIONS(9514), + [sym__redim_keyword] = ACTIONS(9514), + [aux_sym_get_accessor_token1] = ACTIONS(9514), + [aux_sym_set_accessor_token1] = ACTIONS(9514), + [aux_sym_const_declaration_token1] = ACTIONS(9514), + [anon_sym_LPAREN] = ACTIONS(9516), + [aux_sym_as_type_clause_token2] = ACTIONS(9514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9514), + [aux_sym_visibility_token1] = ACTIONS(9514), + [aux_sym_visibility_token2] = ACTIONS(9514), + [aux_sym_elseif_fragment_token1] = ACTIONS(9514), + [aux_sym_else_fragment_token1] = ACTIONS(9514), + [aux_sym_select_statement_token1] = ACTIONS(9514), + [aux_sym__for_header_token1] = ACTIONS(9514), + [aux_sym_do_statement_token1] = ACTIONS(9514), + [aux_sym_do_condition_token1] = ACTIONS(9514), + [aux_sym_with_statement_token1] = ACTIONS(9514), + [aux_sym_exit_statement_token1] = ACTIONS(9514), + [sym_end_statement] = ACTIONS(9516), + [aux_sym_on_goto_statement_token1] = ACTIONS(9514), + [aux_sym_on_goto_statement_token2] = ACTIONS(9514), + [aux_sym_on_error_statement_token2] = ACTIONS(9514), + [sym__ambiguous_redim_statement] = ACTIONS(9516), + [aux_sym_erase_statement_token1] = ACTIONS(9514), + [aux_sym_open_statement_token1] = ACTIONS(9514), + [aux_sym_file_mode_token2] = ACTIONS(9514), + [aux_sym_file_access_token2] = ACTIONS(9514), + [aux_sym_file_lock_token2] = ACTIONS(9514), + [aux_sym_print_statement_token1] = ACTIONS(9514), + [anon_sym_PLUS] = ACTIONS(9516), + [anon_sym_DASH] = ACTIONS(9514), + [anon_sym_QMARK] = ACTIONS(9516), + [aux_sym_close_statement_token1] = ACTIONS(9514), + [aux_sym_put_statement_token1] = ACTIONS(9514), + [aux_sym_unlock_statement_token1] = ACTIONS(9514), + [aux_sym_seek_statement_token1] = ACTIONS(9514), + [sym_reset_statement] = ACTIONS(9514), + [aux_sym_raise_event_statement_token1] = ACTIONS(9514), + [sym_stop_statement] = ACTIONS(9514), + [sym_beep_statement] = ACTIONS(9514), + [aux_sym_unload_statement_token1] = ACTIONS(9514), + [aux_sym_def_type_statement_token1] = ACTIONS(9514), + [aux_sym_def_type_statement_token2] = ACTIONS(9514), + [aux_sym_def_type_statement_token3] = ACTIONS(9514), + [aux_sym_def_type_statement_token4] = ACTIONS(9514), + [aux_sym_def_type_statement_token5] = ACTIONS(9514), + [aux_sym_def_type_statement_token6] = ACTIONS(9514), + [aux_sym_def_type_statement_token7] = ACTIONS(9514), + [aux_sym_def_type_statement_token8] = ACTIONS(9514), + [aux_sym_def_type_statement_token9] = ACTIONS(9514), + [aux_sym_def_type_statement_token10] = ACTIONS(9514), + [aux_sym_def_type_statement_token11] = ACTIONS(9514), + [aux_sym_def_type_statement_token12] = ACTIONS(9514), + [aux_sym_def_type_statement_token13] = ACTIONS(9514), + [aux_sym_def_type_statement_token14] = ACTIONS(9514), + [aux_sym_call_statement_token1] = ACTIONS(9514), + [sym__ambiguous_call_statement] = ACTIONS(9514), + [aux_sym_addressof_expression_token1] = ACTIONS(9514), + [aux_sym_type_of_expression_token1] = ACTIONS(9514), + [aux_sym_unary_expression_token1] = ACTIONS(9514), + [sym_string_literal] = ACTIONS(9516), + [sym_number_literal] = ACTIONS(9516), + [aux_sym_boolean_literal_token1] = ACTIONS(9514), + [aux_sym_boolean_literal_token2] = ACTIONS(9514), + [sym_nothing_literal] = ACTIONS(9514), + [sym_null_literal] = ACTIONS(9514), + [sym_empty_literal] = ACTIONS(9514), + [sym_date_literal] = ACTIONS(9516), + [anon_sym_POUND] = ACTIONS(9514), + }, + [STATE(7117)] = { + [sym_identifier] = ACTIONS(9631), + [sym_newline] = ACTIONS(9633), + [anon_sym_COLON] = ACTIONS(9633), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9631), + [aux_sym_frm_property_statement_token1] = ACTIONS(9631), + [anon_sym_DOT] = ACTIONS(9631), + [anon_sym_BANG] = ACTIONS(9633), + [aux_sym__attribute_identifier_token1] = ACTIONS(9631), + [aux_sym_option_statement_token3] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9631), + [aux_sym_preprocessor_const_token1] = ACTIONS(9631), + [sym_static_modifier] = ACTIONS(9631), + [sym__dim_keyword] = ACTIONS(9631), + [sym__redim_keyword] = ACTIONS(9631), + [aux_sym_get_accessor_token1] = ACTIONS(9631), + [aux_sym_set_accessor_token1] = ACTIONS(9631), + [aux_sym_const_declaration_token1] = ACTIONS(9631), + [anon_sym_LPAREN] = ACTIONS(9633), + [aux_sym_as_type_clause_token2] = ACTIONS(9631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9631), + [aux_sym_visibility_token1] = ACTIONS(9631), + [aux_sym_visibility_token2] = ACTIONS(9631), + [aux_sym_elseif_fragment_token1] = ACTIONS(9631), + [aux_sym_else_fragment_token1] = ACTIONS(9631), + [aux_sym_select_statement_token1] = ACTIONS(9631), + [aux_sym__multiline_for_tail_token1] = ACTIONS(9631), + [aux_sym__for_header_token1] = ACTIONS(9631), + [aux_sym_do_statement_token1] = ACTIONS(9631), + [aux_sym_do_condition_token1] = ACTIONS(9631), + [aux_sym_with_statement_token1] = ACTIONS(9631), + [aux_sym_exit_statement_token1] = ACTIONS(9631), + [sym_end_statement] = ACTIONS(9633), + [aux_sym_on_goto_statement_token1] = ACTIONS(9631), + [aux_sym_on_goto_statement_token2] = ACTIONS(9631), + [aux_sym_on_error_statement_token2] = ACTIONS(9631), + [sym__ambiguous_redim_statement] = ACTIONS(9633), + [aux_sym_erase_statement_token1] = ACTIONS(9631), + [aux_sym_open_statement_token1] = ACTIONS(9631), + [aux_sym_file_mode_token2] = ACTIONS(9631), + [aux_sym_file_access_token2] = ACTIONS(9631), + [aux_sym_file_lock_token2] = ACTIONS(9631), + [aux_sym_print_statement_token1] = ACTIONS(9631), + [anon_sym_PLUS] = ACTIONS(9633), + [anon_sym_DASH] = ACTIONS(9631), + [anon_sym_QMARK] = ACTIONS(9633), + [aux_sym_close_statement_token1] = ACTIONS(9631), + [aux_sym_put_statement_token1] = ACTIONS(9631), + [aux_sym_unlock_statement_token1] = ACTIONS(9631), + [aux_sym_seek_statement_token1] = ACTIONS(9631), + [sym_reset_statement] = ACTIONS(9631), + [aux_sym_raise_event_statement_token1] = ACTIONS(9631), + [sym_stop_statement] = ACTIONS(9631), + [sym_beep_statement] = ACTIONS(9631), + [aux_sym_unload_statement_token1] = ACTIONS(9631), + [aux_sym_def_type_statement_token1] = ACTIONS(9631), + [aux_sym_def_type_statement_token2] = ACTIONS(9631), + [aux_sym_def_type_statement_token3] = ACTIONS(9631), + [aux_sym_def_type_statement_token4] = ACTIONS(9631), + [aux_sym_def_type_statement_token5] = ACTIONS(9631), + [aux_sym_def_type_statement_token6] = ACTIONS(9631), + [aux_sym_def_type_statement_token7] = ACTIONS(9631), + [aux_sym_def_type_statement_token8] = ACTIONS(9631), + [aux_sym_def_type_statement_token9] = ACTIONS(9631), + [aux_sym_def_type_statement_token10] = ACTIONS(9631), + [aux_sym_def_type_statement_token11] = ACTIONS(9631), + [aux_sym_def_type_statement_token12] = ACTIONS(9631), + [aux_sym_def_type_statement_token13] = ACTIONS(9631), + [aux_sym_def_type_statement_token14] = ACTIONS(9631), + [aux_sym_call_statement_token1] = ACTIONS(9631), + [sym__ambiguous_call_statement] = ACTIONS(9631), + [aux_sym_addressof_expression_token1] = ACTIONS(9631), + [aux_sym_type_of_expression_token1] = ACTIONS(9631), + [aux_sym_unary_expression_token1] = ACTIONS(9631), + [sym_string_literal] = ACTIONS(9633), + [sym_number_literal] = ACTIONS(9633), + [aux_sym_boolean_literal_token1] = ACTIONS(9631), + [aux_sym_boolean_literal_token2] = ACTIONS(9631), + [sym_nothing_literal] = ACTIONS(9631), + [sym_null_literal] = ACTIONS(9631), + [sym_empty_literal] = ACTIONS(9631), + [sym_date_literal] = ACTIONS(9633), + [anon_sym_POUND] = ACTIONS(9631), + }, + [STATE(7118)] = { + [sym_identifier] = ACTIONS(9752), + [sym_newline] = ACTIONS(9754), + [anon_sym_COLON] = ACTIONS(9754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9752), + [aux_sym_frm_property_statement_token1] = ACTIONS(9752), + [anon_sym_DOT] = ACTIONS(9752), + [anon_sym_BANG] = ACTIONS(9754), + [aux_sym__attribute_identifier_token1] = ACTIONS(9752), + [aux_sym_option_statement_token3] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9752), + [aux_sym_preprocessor_const_token1] = ACTIONS(9752), + [sym_static_modifier] = ACTIONS(9752), + [sym__dim_keyword] = ACTIONS(9752), + [sym__redim_keyword] = ACTIONS(9752), + [aux_sym_get_accessor_token1] = ACTIONS(9752), + [aux_sym_set_accessor_token1] = ACTIONS(9752), + [aux_sym_const_declaration_token1] = ACTIONS(9752), + [anon_sym_LPAREN] = ACTIONS(9754), + [aux_sym_as_type_clause_token2] = ACTIONS(9752), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9752), + [aux_sym_visibility_token1] = ACTIONS(9752), + [aux_sym_visibility_token2] = ACTIONS(9752), + [aux_sym_elseif_fragment_token1] = ACTIONS(9752), + [aux_sym_else_fragment_token1] = ACTIONS(9752), + [aux_sym_select_statement_token1] = ACTIONS(9752), + [aux_sym__for_header_token1] = ACTIONS(9752), + [aux_sym_do_statement_token1] = ACTIONS(9752), + [aux_sym_do_condition_token1] = ACTIONS(9752), + [aux_sym_while_statement_token1] = ACTIONS(9752), + [aux_sym_with_statement_token1] = ACTIONS(9752), + [aux_sym_exit_statement_token1] = ACTIONS(9752), + [sym_end_statement] = ACTIONS(9754), + [aux_sym_on_goto_statement_token1] = ACTIONS(9752), + [aux_sym_on_goto_statement_token2] = ACTIONS(9752), + [aux_sym_on_error_statement_token2] = ACTIONS(9752), + [sym__ambiguous_redim_statement] = ACTIONS(9754), + [aux_sym_erase_statement_token1] = ACTIONS(9752), + [aux_sym_open_statement_token1] = ACTIONS(9752), + [aux_sym_file_mode_token2] = ACTIONS(9752), + [aux_sym_file_access_token2] = ACTIONS(9752), + [aux_sym_file_lock_token2] = ACTIONS(9752), + [aux_sym_print_statement_token1] = ACTIONS(9752), + [anon_sym_PLUS] = ACTIONS(9754), + [anon_sym_DASH] = ACTIONS(9752), + [anon_sym_QMARK] = ACTIONS(9754), + [aux_sym_close_statement_token1] = ACTIONS(9752), + [aux_sym_put_statement_token1] = ACTIONS(9752), + [aux_sym_unlock_statement_token1] = ACTIONS(9752), + [aux_sym_seek_statement_token1] = ACTIONS(9752), + [sym_reset_statement] = ACTIONS(9752), + [aux_sym_raise_event_statement_token1] = ACTIONS(9752), + [sym_stop_statement] = ACTIONS(9752), + [sym_beep_statement] = ACTIONS(9752), + [aux_sym_unload_statement_token1] = ACTIONS(9752), + [aux_sym_def_type_statement_token1] = ACTIONS(9752), + [aux_sym_def_type_statement_token2] = ACTIONS(9752), + [aux_sym_def_type_statement_token3] = ACTIONS(9752), + [aux_sym_def_type_statement_token4] = ACTIONS(9752), + [aux_sym_def_type_statement_token5] = ACTIONS(9752), + [aux_sym_def_type_statement_token6] = ACTIONS(9752), + [aux_sym_def_type_statement_token7] = ACTIONS(9752), + [aux_sym_def_type_statement_token8] = ACTIONS(9752), + [aux_sym_def_type_statement_token9] = ACTIONS(9752), + [aux_sym_def_type_statement_token10] = ACTIONS(9752), + [aux_sym_def_type_statement_token11] = ACTIONS(9752), + [aux_sym_def_type_statement_token12] = ACTIONS(9752), + [aux_sym_def_type_statement_token13] = ACTIONS(9752), + [aux_sym_def_type_statement_token14] = ACTIONS(9752), + [aux_sym_call_statement_token1] = ACTIONS(9752), + [sym__ambiguous_call_statement] = ACTIONS(9752), + [aux_sym_addressof_expression_token1] = ACTIONS(9752), + [aux_sym_type_of_expression_token1] = ACTIONS(9752), + [aux_sym_unary_expression_token1] = ACTIONS(9752), + [sym_string_literal] = ACTIONS(9754), + [sym_number_literal] = ACTIONS(9754), + [aux_sym_boolean_literal_token1] = ACTIONS(9752), + [aux_sym_boolean_literal_token2] = ACTIONS(9752), + [sym_nothing_literal] = ACTIONS(9752), + [sym_null_literal] = ACTIONS(9752), + [sym_empty_literal] = ACTIONS(9752), + [sym_date_literal] = ACTIONS(9754), + [anon_sym_POUND] = ACTIONS(9752), + }, + [STATE(7119)] = { + [sym_identifier] = ACTIONS(9756), + [sym_newline] = ACTIONS(9758), + [anon_sym_COLON] = ACTIONS(9758), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9756), + [aux_sym_frm_property_statement_token1] = ACTIONS(9756), + [anon_sym_DOT] = ACTIONS(9756), + [anon_sym_BANG] = ACTIONS(9758), + [aux_sym__attribute_identifier_token1] = ACTIONS(9756), + [aux_sym_option_statement_token3] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9756), + [aux_sym_preprocessor_const_token1] = ACTIONS(9756), + [sym_static_modifier] = ACTIONS(9756), + [sym__dim_keyword] = ACTIONS(9756), + [sym__redim_keyword] = ACTIONS(9756), + [aux_sym_get_accessor_token1] = ACTIONS(9756), + [aux_sym_set_accessor_token1] = ACTIONS(9756), + [aux_sym_const_declaration_token1] = ACTIONS(9756), + [anon_sym_LPAREN] = ACTIONS(9758), + [aux_sym_as_type_clause_token2] = ACTIONS(9756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9756), + [aux_sym_visibility_token1] = ACTIONS(9756), + [aux_sym_visibility_token2] = ACTIONS(9756), + [aux_sym_elseif_fragment_token1] = ACTIONS(9756), + [aux_sym_else_fragment_token1] = ACTIONS(9756), + [aux_sym_select_statement_token1] = ACTIONS(9756), + [aux_sym__for_header_token1] = ACTIONS(9756), + [aux_sym_do_statement_token1] = ACTIONS(9756), + [aux_sym_do_condition_token1] = ACTIONS(9756), + [aux_sym_while_statement_token1] = ACTIONS(9756), + [aux_sym_with_statement_token1] = ACTIONS(9756), + [aux_sym_exit_statement_token1] = ACTIONS(9756), + [sym_end_statement] = ACTIONS(9758), + [aux_sym_on_goto_statement_token1] = ACTIONS(9756), + [aux_sym_on_goto_statement_token2] = ACTIONS(9756), + [aux_sym_on_error_statement_token2] = ACTIONS(9756), + [sym__ambiguous_redim_statement] = ACTIONS(9758), + [aux_sym_erase_statement_token1] = ACTIONS(9756), + [aux_sym_open_statement_token1] = ACTIONS(9756), + [aux_sym_file_mode_token2] = ACTIONS(9756), + [aux_sym_file_access_token2] = ACTIONS(9756), + [aux_sym_file_lock_token2] = ACTIONS(9756), + [aux_sym_print_statement_token1] = ACTIONS(9756), + [anon_sym_PLUS] = ACTIONS(9758), + [anon_sym_DASH] = ACTIONS(9756), + [anon_sym_QMARK] = ACTIONS(9758), + [aux_sym_close_statement_token1] = ACTIONS(9756), + [aux_sym_put_statement_token1] = ACTIONS(9756), + [aux_sym_unlock_statement_token1] = ACTIONS(9756), + [aux_sym_seek_statement_token1] = ACTIONS(9756), + [sym_reset_statement] = ACTIONS(9756), + [aux_sym_raise_event_statement_token1] = ACTIONS(9756), + [sym_stop_statement] = ACTIONS(9756), + [sym_beep_statement] = ACTIONS(9756), + [aux_sym_unload_statement_token1] = ACTIONS(9756), + [aux_sym_def_type_statement_token1] = ACTIONS(9756), + [aux_sym_def_type_statement_token2] = ACTIONS(9756), + [aux_sym_def_type_statement_token3] = ACTIONS(9756), + [aux_sym_def_type_statement_token4] = ACTIONS(9756), + [aux_sym_def_type_statement_token5] = ACTIONS(9756), + [aux_sym_def_type_statement_token6] = ACTIONS(9756), + [aux_sym_def_type_statement_token7] = ACTIONS(9756), + [aux_sym_def_type_statement_token8] = ACTIONS(9756), + [aux_sym_def_type_statement_token9] = ACTIONS(9756), + [aux_sym_def_type_statement_token10] = ACTIONS(9756), + [aux_sym_def_type_statement_token11] = ACTIONS(9756), + [aux_sym_def_type_statement_token12] = ACTIONS(9756), + [aux_sym_def_type_statement_token13] = ACTIONS(9756), + [aux_sym_def_type_statement_token14] = ACTIONS(9756), + [aux_sym_call_statement_token1] = ACTIONS(9756), + [sym__ambiguous_call_statement] = ACTIONS(9756), + [aux_sym_addressof_expression_token1] = ACTIONS(9756), + [aux_sym_type_of_expression_token1] = ACTIONS(9756), + [aux_sym_unary_expression_token1] = ACTIONS(9756), + [sym_string_literal] = ACTIONS(9758), + [sym_number_literal] = ACTIONS(9758), + [aux_sym_boolean_literal_token1] = ACTIONS(9756), + [aux_sym_boolean_literal_token2] = ACTIONS(9756), + [sym_nothing_literal] = ACTIONS(9756), + [sym_null_literal] = ACTIONS(9756), + [sym_empty_literal] = ACTIONS(9756), + [sym_date_literal] = ACTIONS(9758), + [anon_sym_POUND] = ACTIONS(9756), + }, + [STATE(7120)] = { + [sym_identifier] = ACTIONS(9284), + [sym_newline] = ACTIONS(9286), + [anon_sym_COLON] = ACTIONS(9286), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9284), + [aux_sym_frm_property_statement_token1] = ACTIONS(9284), + [anon_sym_DOT] = ACTIONS(9284), + [anon_sym_BANG] = ACTIONS(9286), + [aux_sym__attribute_identifier_token1] = ACTIONS(9284), + [aux_sym_option_statement_token3] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token3] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9284), + [aux_sym_preprocessor_const_token1] = ACTIONS(9284), + [sym_static_modifier] = ACTIONS(9284), + [sym__dim_keyword] = ACTIONS(9284), + [sym__redim_keyword] = ACTIONS(9284), + [aux_sym_get_accessor_token1] = ACTIONS(9284), + [aux_sym_set_accessor_token1] = ACTIONS(9284), + [aux_sym_const_declaration_token1] = ACTIONS(9284), + [anon_sym_LPAREN] = ACTIONS(9286), + [aux_sym_as_type_clause_token2] = ACTIONS(9284), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9284), + [aux_sym_visibility_token1] = ACTIONS(9284), + [aux_sym_visibility_token2] = ACTIONS(9284), + [aux_sym_elseif_fragment_token1] = ACTIONS(9284), + [aux_sym_else_fragment_token1] = ACTIONS(9284), + [aux_sym_select_statement_token1] = ACTIONS(9284), + [aux_sym__for_header_token1] = ACTIONS(9284), + [aux_sym_do_statement_token1] = ACTIONS(9284), + [aux_sym_do_condition_token1] = ACTIONS(9284), + [aux_sym_with_statement_token1] = ACTIONS(9284), + [aux_sym_exit_statement_token1] = ACTIONS(9284), + [sym_end_statement] = ACTIONS(9286), + [aux_sym_on_goto_statement_token1] = ACTIONS(9284), + [aux_sym_on_goto_statement_token2] = ACTIONS(9284), + [aux_sym_on_error_statement_token2] = ACTIONS(9284), + [sym__ambiguous_redim_statement] = ACTIONS(9286), + [aux_sym_erase_statement_token1] = ACTIONS(9284), + [aux_sym_open_statement_token1] = ACTIONS(9284), + [aux_sym_file_mode_token2] = ACTIONS(9284), + [aux_sym_file_access_token2] = ACTIONS(9284), + [aux_sym_file_lock_token2] = ACTIONS(9284), + [aux_sym_print_statement_token1] = ACTIONS(9284), + [anon_sym_PLUS] = ACTIONS(9286), + [anon_sym_DASH] = ACTIONS(9284), + [anon_sym_QMARK] = ACTIONS(9286), + [aux_sym_close_statement_token1] = ACTIONS(9284), + [aux_sym_put_statement_token1] = ACTIONS(9284), + [aux_sym_unlock_statement_token1] = ACTIONS(9284), + [aux_sym_seek_statement_token1] = ACTIONS(9284), + [sym_reset_statement] = ACTIONS(9284), + [aux_sym_raise_event_statement_token1] = ACTIONS(9284), + [sym_stop_statement] = ACTIONS(9284), + [sym_beep_statement] = ACTIONS(9284), + [aux_sym_unload_statement_token1] = ACTIONS(9284), + [aux_sym_def_type_statement_token1] = ACTIONS(9284), + [aux_sym_def_type_statement_token2] = ACTIONS(9284), + [aux_sym_def_type_statement_token3] = ACTIONS(9284), + [aux_sym_def_type_statement_token4] = ACTIONS(9284), + [aux_sym_def_type_statement_token5] = ACTIONS(9284), + [aux_sym_def_type_statement_token6] = ACTIONS(9284), + [aux_sym_def_type_statement_token7] = ACTIONS(9284), + [aux_sym_def_type_statement_token8] = ACTIONS(9284), + [aux_sym_def_type_statement_token9] = ACTIONS(9284), + [aux_sym_def_type_statement_token10] = ACTIONS(9284), + [aux_sym_def_type_statement_token11] = ACTIONS(9284), + [aux_sym_def_type_statement_token12] = ACTIONS(9284), + [aux_sym_def_type_statement_token13] = ACTIONS(9284), + [aux_sym_def_type_statement_token14] = ACTIONS(9284), + [aux_sym_call_statement_token1] = ACTIONS(9284), + [sym__ambiguous_call_statement] = ACTIONS(9284), + [aux_sym_addressof_expression_token1] = ACTIONS(9284), + [aux_sym_type_of_expression_token1] = ACTIONS(9284), + [aux_sym_unary_expression_token1] = ACTIONS(9284), + [sym_string_literal] = ACTIONS(9286), + [sym_number_literal] = ACTIONS(9286), + [aux_sym_boolean_literal_token1] = ACTIONS(9284), + [aux_sym_boolean_literal_token2] = ACTIONS(9284), + [sym_nothing_literal] = ACTIONS(9284), + [sym_null_literal] = ACTIONS(9284), + [sym_empty_literal] = ACTIONS(9284), + [sym_date_literal] = ACTIONS(9286), + [anon_sym_POUND] = ACTIONS(9284), + }, + [STATE(7121)] = { + [sym_identifier] = ACTIONS(9760), + [sym_newline] = ACTIONS(9762), + [anon_sym_COLON] = ACTIONS(9762), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9760), + [aux_sym_frm_property_statement_token1] = ACTIONS(9760), + [anon_sym_DOT] = ACTIONS(9760), + [anon_sym_BANG] = ACTIONS(9762), + [aux_sym__attribute_identifier_token1] = ACTIONS(9760), + [aux_sym_option_statement_token3] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9760), + [aux_sym_preprocessor_const_token1] = ACTIONS(9760), + [sym_static_modifier] = ACTIONS(9760), + [sym__dim_keyword] = ACTIONS(9760), + [sym__redim_keyword] = ACTIONS(9760), + [aux_sym_get_accessor_token1] = ACTIONS(9760), + [aux_sym_set_accessor_token1] = ACTIONS(9760), + [aux_sym_const_declaration_token1] = ACTIONS(9760), + [anon_sym_LPAREN] = ACTIONS(9762), + [aux_sym_as_type_clause_token2] = ACTIONS(9760), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9760), + [aux_sym_visibility_token1] = ACTIONS(9760), + [aux_sym_visibility_token2] = ACTIONS(9760), + [aux_sym_elseif_fragment_token1] = ACTIONS(9760), + [aux_sym_else_fragment_token1] = ACTIONS(9760), + [aux_sym_select_statement_token1] = ACTIONS(9760), + [aux_sym__for_header_token1] = ACTIONS(9760), + [aux_sym_do_statement_token1] = ACTIONS(9760), + [aux_sym_do_condition_token1] = ACTIONS(9760), + [aux_sym_while_statement_token1] = ACTIONS(9760), + [aux_sym_with_statement_token1] = ACTIONS(9760), + [aux_sym_exit_statement_token1] = ACTIONS(9760), + [sym_end_statement] = ACTIONS(9762), + [aux_sym_on_goto_statement_token1] = ACTIONS(9760), + [aux_sym_on_goto_statement_token2] = ACTIONS(9760), + [aux_sym_on_error_statement_token2] = ACTIONS(9760), + [sym__ambiguous_redim_statement] = ACTIONS(9762), + [aux_sym_erase_statement_token1] = ACTIONS(9760), + [aux_sym_open_statement_token1] = ACTIONS(9760), + [aux_sym_file_mode_token2] = ACTIONS(9760), + [aux_sym_file_access_token2] = ACTIONS(9760), + [aux_sym_file_lock_token2] = ACTIONS(9760), + [aux_sym_print_statement_token1] = ACTIONS(9760), + [anon_sym_PLUS] = ACTIONS(9762), + [anon_sym_DASH] = ACTIONS(9760), + [anon_sym_QMARK] = ACTIONS(9762), + [aux_sym_close_statement_token1] = ACTIONS(9760), + [aux_sym_put_statement_token1] = ACTIONS(9760), + [aux_sym_unlock_statement_token1] = ACTIONS(9760), + [aux_sym_seek_statement_token1] = ACTIONS(9760), + [sym_reset_statement] = ACTIONS(9760), + [aux_sym_raise_event_statement_token1] = ACTIONS(9760), + [sym_stop_statement] = ACTIONS(9760), + [sym_beep_statement] = ACTIONS(9760), + [aux_sym_unload_statement_token1] = ACTIONS(9760), + [aux_sym_def_type_statement_token1] = ACTIONS(9760), + [aux_sym_def_type_statement_token2] = ACTIONS(9760), + [aux_sym_def_type_statement_token3] = ACTIONS(9760), + [aux_sym_def_type_statement_token4] = ACTIONS(9760), + [aux_sym_def_type_statement_token5] = ACTIONS(9760), + [aux_sym_def_type_statement_token6] = ACTIONS(9760), + [aux_sym_def_type_statement_token7] = ACTIONS(9760), + [aux_sym_def_type_statement_token8] = ACTIONS(9760), + [aux_sym_def_type_statement_token9] = ACTIONS(9760), + [aux_sym_def_type_statement_token10] = ACTIONS(9760), + [aux_sym_def_type_statement_token11] = ACTIONS(9760), + [aux_sym_def_type_statement_token12] = ACTIONS(9760), + [aux_sym_def_type_statement_token13] = ACTIONS(9760), + [aux_sym_def_type_statement_token14] = ACTIONS(9760), + [aux_sym_call_statement_token1] = ACTIONS(9760), + [sym__ambiguous_call_statement] = ACTIONS(9760), + [aux_sym_addressof_expression_token1] = ACTIONS(9760), + [aux_sym_type_of_expression_token1] = ACTIONS(9760), + [aux_sym_unary_expression_token1] = ACTIONS(9760), + [sym_string_literal] = ACTIONS(9762), + [sym_number_literal] = ACTIONS(9762), + [aux_sym_boolean_literal_token1] = ACTIONS(9760), + [aux_sym_boolean_literal_token2] = ACTIONS(9760), + [sym_nothing_literal] = ACTIONS(9760), + [sym_null_literal] = ACTIONS(9760), + [sym_empty_literal] = ACTIONS(9760), + [sym_date_literal] = ACTIONS(9762), + [anon_sym_POUND] = ACTIONS(9760), + }, + [STATE(7122)] = { + [sym_identifier] = ACTIONS(9764), + [sym_newline] = ACTIONS(9766), + [anon_sym_COLON] = ACTIONS(9766), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9764), + [aux_sym_frm_property_statement_token1] = ACTIONS(9764), + [anon_sym_DOT] = ACTIONS(9764), + [anon_sym_BANG] = ACTIONS(9766), + [aux_sym__attribute_identifier_token1] = ACTIONS(9764), + [aux_sym_option_statement_token3] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9764), + [aux_sym_preprocessor_const_token1] = ACTIONS(9764), + [sym_static_modifier] = ACTIONS(9764), + [sym__dim_keyword] = ACTIONS(9764), + [sym__redim_keyword] = ACTIONS(9764), + [aux_sym_get_accessor_token1] = ACTIONS(9764), + [aux_sym_set_accessor_token1] = ACTIONS(9764), + [aux_sym_const_declaration_token1] = ACTIONS(9764), + [anon_sym_LPAREN] = ACTIONS(9766), + [aux_sym_as_type_clause_token2] = ACTIONS(9764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9764), + [aux_sym_visibility_token1] = ACTIONS(9764), + [aux_sym_visibility_token2] = ACTIONS(9764), + [aux_sym_elseif_fragment_token1] = ACTIONS(9764), + [aux_sym_else_fragment_token1] = ACTIONS(9764), + [aux_sym_select_statement_token1] = ACTIONS(9764), + [aux_sym__for_header_token1] = ACTIONS(9764), + [aux_sym_do_statement_token1] = ACTIONS(9764), + [aux_sym_do_condition_token1] = ACTIONS(9764), + [aux_sym_while_statement_token1] = ACTIONS(9764), + [aux_sym_with_statement_token1] = ACTIONS(9764), + [aux_sym_exit_statement_token1] = ACTIONS(9764), + [sym_end_statement] = ACTIONS(9766), + [aux_sym_on_goto_statement_token1] = ACTIONS(9764), + [aux_sym_on_goto_statement_token2] = ACTIONS(9764), + [aux_sym_on_error_statement_token2] = ACTIONS(9764), + [sym__ambiguous_redim_statement] = ACTIONS(9766), + [aux_sym_erase_statement_token1] = ACTIONS(9764), + [aux_sym_open_statement_token1] = ACTIONS(9764), + [aux_sym_file_mode_token2] = ACTIONS(9764), + [aux_sym_file_access_token2] = ACTIONS(9764), + [aux_sym_file_lock_token2] = ACTIONS(9764), + [aux_sym_print_statement_token1] = ACTIONS(9764), + [anon_sym_PLUS] = ACTIONS(9766), + [anon_sym_DASH] = ACTIONS(9764), + [anon_sym_QMARK] = ACTIONS(9766), + [aux_sym_close_statement_token1] = ACTIONS(9764), + [aux_sym_put_statement_token1] = ACTIONS(9764), + [aux_sym_unlock_statement_token1] = ACTIONS(9764), + [aux_sym_seek_statement_token1] = ACTIONS(9764), + [sym_reset_statement] = ACTIONS(9764), + [aux_sym_raise_event_statement_token1] = ACTIONS(9764), + [sym_stop_statement] = ACTIONS(9764), + [sym_beep_statement] = ACTIONS(9764), + [aux_sym_unload_statement_token1] = ACTIONS(9764), + [aux_sym_def_type_statement_token1] = ACTIONS(9764), + [aux_sym_def_type_statement_token2] = ACTIONS(9764), + [aux_sym_def_type_statement_token3] = ACTIONS(9764), + [aux_sym_def_type_statement_token4] = ACTIONS(9764), + [aux_sym_def_type_statement_token5] = ACTIONS(9764), + [aux_sym_def_type_statement_token6] = ACTIONS(9764), + [aux_sym_def_type_statement_token7] = ACTIONS(9764), + [aux_sym_def_type_statement_token8] = ACTIONS(9764), + [aux_sym_def_type_statement_token9] = ACTIONS(9764), + [aux_sym_def_type_statement_token10] = ACTIONS(9764), + [aux_sym_def_type_statement_token11] = ACTIONS(9764), + [aux_sym_def_type_statement_token12] = ACTIONS(9764), + [aux_sym_def_type_statement_token13] = ACTIONS(9764), + [aux_sym_def_type_statement_token14] = ACTIONS(9764), + [aux_sym_call_statement_token1] = ACTIONS(9764), + [sym__ambiguous_call_statement] = ACTIONS(9764), + [aux_sym_addressof_expression_token1] = ACTIONS(9764), + [aux_sym_type_of_expression_token1] = ACTIONS(9764), + [aux_sym_unary_expression_token1] = ACTIONS(9764), + [sym_string_literal] = ACTIONS(9766), + [sym_number_literal] = ACTIONS(9766), + [aux_sym_boolean_literal_token1] = ACTIONS(9764), + [aux_sym_boolean_literal_token2] = ACTIONS(9764), + [sym_nothing_literal] = ACTIONS(9764), + [sym_null_literal] = ACTIONS(9764), + [sym_empty_literal] = ACTIONS(9764), + [sym_date_literal] = ACTIONS(9766), + [anon_sym_POUND] = ACTIONS(9764), + }, + [STATE(7123)] = { + [sym_identifier] = ACTIONS(9192), + [sym_newline] = ACTIONS(9194), + [anon_sym_COLON] = ACTIONS(9194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9192), + [aux_sym_frm_property_statement_token1] = ACTIONS(9192), + [anon_sym_DOT] = ACTIONS(9192), + [anon_sym_BANG] = ACTIONS(9194), + [aux_sym__attribute_identifier_token1] = ACTIONS(9192), + [aux_sym_option_statement_token3] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9192), + [aux_sym_preprocessor_const_token1] = ACTIONS(9192), + [sym_static_modifier] = ACTIONS(9192), + [sym__dim_keyword] = ACTIONS(9192), + [sym__redim_keyword] = ACTIONS(9192), + [aux_sym_get_accessor_token1] = ACTIONS(9192), + [aux_sym_set_accessor_token1] = ACTIONS(9192), + [aux_sym_const_declaration_token1] = ACTIONS(9192), + [anon_sym_LPAREN] = ACTIONS(9194), + [aux_sym_as_type_clause_token2] = ACTIONS(9192), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9192), + [aux_sym_visibility_token1] = ACTIONS(9192), + [aux_sym_visibility_token2] = ACTIONS(9192), + [aux_sym_elseif_fragment_token1] = ACTIONS(9192), + [aux_sym_else_fragment_token1] = ACTIONS(9192), + [aux_sym_select_statement_token1] = ACTIONS(9192), + [aux_sym__for_header_token1] = ACTIONS(9192), + [aux_sym_do_statement_token1] = ACTIONS(9192), + [aux_sym_do_condition_token1] = ACTIONS(9192), + [aux_sym_while_statement_token1] = ACTIONS(9192), + [aux_sym_with_statement_token1] = ACTIONS(9192), + [aux_sym_exit_statement_token1] = ACTIONS(9192), + [sym_end_statement] = ACTIONS(9194), + [aux_sym_on_goto_statement_token1] = ACTIONS(9192), + [aux_sym_on_goto_statement_token2] = ACTIONS(9192), + [aux_sym_on_error_statement_token2] = ACTIONS(9192), + [sym__ambiguous_redim_statement] = ACTIONS(9194), + [aux_sym_erase_statement_token1] = ACTIONS(9192), + [aux_sym_open_statement_token1] = ACTIONS(9192), + [aux_sym_file_mode_token2] = ACTIONS(9192), + [aux_sym_file_access_token2] = ACTIONS(9192), + [aux_sym_file_lock_token2] = ACTIONS(9192), + [aux_sym_print_statement_token1] = ACTIONS(9192), + [anon_sym_PLUS] = ACTIONS(9194), + [anon_sym_DASH] = ACTIONS(9192), + [anon_sym_QMARK] = ACTIONS(9194), + [aux_sym_close_statement_token1] = ACTIONS(9192), + [aux_sym_put_statement_token1] = ACTIONS(9192), + [aux_sym_unlock_statement_token1] = ACTIONS(9192), + [aux_sym_seek_statement_token1] = ACTIONS(9192), + [sym_reset_statement] = ACTIONS(9192), + [aux_sym_raise_event_statement_token1] = ACTIONS(9192), + [sym_stop_statement] = ACTIONS(9192), + [sym_beep_statement] = ACTIONS(9192), + [aux_sym_unload_statement_token1] = ACTIONS(9192), + [aux_sym_def_type_statement_token1] = ACTIONS(9192), + [aux_sym_def_type_statement_token2] = ACTIONS(9192), + [aux_sym_def_type_statement_token3] = ACTIONS(9192), + [aux_sym_def_type_statement_token4] = ACTIONS(9192), + [aux_sym_def_type_statement_token5] = ACTIONS(9192), + [aux_sym_def_type_statement_token6] = ACTIONS(9192), + [aux_sym_def_type_statement_token7] = ACTIONS(9192), + [aux_sym_def_type_statement_token8] = ACTIONS(9192), + [aux_sym_def_type_statement_token9] = ACTIONS(9192), + [aux_sym_def_type_statement_token10] = ACTIONS(9192), + [aux_sym_def_type_statement_token11] = ACTIONS(9192), + [aux_sym_def_type_statement_token12] = ACTIONS(9192), + [aux_sym_def_type_statement_token13] = ACTIONS(9192), + [aux_sym_def_type_statement_token14] = ACTIONS(9192), + [aux_sym_call_statement_token1] = ACTIONS(9192), + [sym__ambiguous_call_statement] = ACTIONS(9192), + [aux_sym_addressof_expression_token1] = ACTIONS(9192), + [aux_sym_type_of_expression_token1] = ACTIONS(9192), + [aux_sym_unary_expression_token1] = ACTIONS(9192), + [sym_string_literal] = ACTIONS(9194), + [sym_number_literal] = ACTIONS(9194), + [aux_sym_boolean_literal_token1] = ACTIONS(9192), + [aux_sym_boolean_literal_token2] = ACTIONS(9192), + [sym_nothing_literal] = ACTIONS(9192), + [sym_null_literal] = ACTIONS(9192), + [sym_empty_literal] = ACTIONS(9192), + [sym_date_literal] = ACTIONS(9194), + [anon_sym_POUND] = ACTIONS(9192), + }, + [STATE(7124)] = { + [sym_identifier] = ACTIONS(9138), + [sym_newline] = ACTIONS(9140), + [anon_sym_COLON] = ACTIONS(9140), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9138), + [aux_sym_frm_property_statement_token1] = ACTIONS(9138), + [anon_sym_DOT] = ACTIONS(9138), + [anon_sym_BANG] = ACTIONS(9140), + [aux_sym__attribute_identifier_token1] = ACTIONS(9138), + [aux_sym_option_statement_token3] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9138), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9138), + [aux_sym_preprocessor_const_token1] = ACTIONS(9138), + [sym_static_modifier] = ACTIONS(9138), + [sym__dim_keyword] = ACTIONS(9138), + [sym__redim_keyword] = ACTIONS(9138), + [aux_sym_get_accessor_token1] = ACTIONS(9138), + [aux_sym_set_accessor_token1] = ACTIONS(9138), + [aux_sym_const_declaration_token1] = ACTIONS(9138), + [anon_sym_LPAREN] = ACTIONS(9140), + [aux_sym_as_type_clause_token2] = ACTIONS(9138), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9138), + [aux_sym_visibility_token1] = ACTIONS(9138), + [aux_sym_visibility_token2] = ACTIONS(9138), + [aux_sym_elseif_fragment_token1] = ACTIONS(9138), + [aux_sym_else_fragment_token1] = ACTIONS(9138), + [aux_sym_select_statement_token1] = ACTIONS(9138), + [aux_sym__for_header_token1] = ACTIONS(9138), + [aux_sym_do_statement_token1] = ACTIONS(9138), + [aux_sym_do_condition_token1] = ACTIONS(9138), + [aux_sym_with_statement_token1] = ACTIONS(9138), + [aux_sym_exit_statement_token1] = ACTIONS(9138), + [sym_end_statement] = ACTIONS(9140), + [aux_sym_on_goto_statement_token1] = ACTIONS(9138), + [aux_sym_on_goto_statement_token2] = ACTIONS(9138), + [aux_sym_on_error_statement_token2] = ACTIONS(9138), + [sym__ambiguous_redim_statement] = ACTIONS(9140), + [aux_sym_erase_statement_token1] = ACTIONS(9138), + [aux_sym_open_statement_token1] = ACTIONS(9138), + [aux_sym_file_mode_token2] = ACTIONS(9138), + [aux_sym_file_access_token2] = ACTIONS(9138), + [aux_sym_file_lock_token2] = ACTIONS(9138), + [aux_sym_print_statement_token1] = ACTIONS(9138), + [anon_sym_PLUS] = ACTIONS(9140), + [anon_sym_DASH] = ACTIONS(9138), + [anon_sym_QMARK] = ACTIONS(9140), + [aux_sym_close_statement_token1] = ACTIONS(9138), + [aux_sym_put_statement_token1] = ACTIONS(9138), + [aux_sym_unlock_statement_token1] = ACTIONS(9138), + [aux_sym_seek_statement_token1] = ACTIONS(9138), + [sym_reset_statement] = ACTIONS(9138), + [aux_sym_raise_event_statement_token1] = ACTIONS(9138), + [sym_stop_statement] = ACTIONS(9138), + [sym_beep_statement] = ACTIONS(9138), + [aux_sym_unload_statement_token1] = ACTIONS(9138), + [aux_sym_def_type_statement_token1] = ACTIONS(9138), + [aux_sym_def_type_statement_token2] = ACTIONS(9138), + [aux_sym_def_type_statement_token3] = ACTIONS(9138), + [aux_sym_def_type_statement_token4] = ACTIONS(9138), + [aux_sym_def_type_statement_token5] = ACTIONS(9138), + [aux_sym_def_type_statement_token6] = ACTIONS(9138), + [aux_sym_def_type_statement_token7] = ACTIONS(9138), + [aux_sym_def_type_statement_token8] = ACTIONS(9138), + [aux_sym_def_type_statement_token9] = ACTIONS(9138), + [aux_sym_def_type_statement_token10] = ACTIONS(9138), + [aux_sym_def_type_statement_token11] = ACTIONS(9138), + [aux_sym_def_type_statement_token12] = ACTIONS(9138), + [aux_sym_def_type_statement_token13] = ACTIONS(9138), + [aux_sym_def_type_statement_token14] = ACTIONS(9138), + [aux_sym_call_statement_token1] = ACTIONS(9138), + [sym__ambiguous_call_statement] = ACTIONS(9138), + [aux_sym_addressof_expression_token1] = ACTIONS(9138), + [aux_sym_type_of_expression_token1] = ACTIONS(9138), + [aux_sym_unary_expression_token1] = ACTIONS(9138), + [sym_string_literal] = ACTIONS(9140), + [sym_number_literal] = ACTIONS(9140), + [aux_sym_boolean_literal_token1] = ACTIONS(9138), + [aux_sym_boolean_literal_token2] = ACTIONS(9138), + [sym_nothing_literal] = ACTIONS(9138), + [sym_null_literal] = ACTIONS(9138), + [sym_empty_literal] = ACTIONS(9138), + [sym_date_literal] = ACTIONS(9140), + [anon_sym_POUND] = ACTIONS(9138), + }, + [STATE(7125)] = { + [sym_identifier] = ACTIONS(9260), + [sym_newline] = ACTIONS(9262), + [anon_sym_COLON] = ACTIONS(9262), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9260), + [aux_sym_frm_property_statement_token1] = ACTIONS(9260), + [anon_sym_DOT] = ACTIONS(9260), + [anon_sym_BANG] = ACTIONS(9262), + [aux_sym__attribute_identifier_token1] = ACTIONS(9260), + [aux_sym_option_statement_token3] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9260), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9260), + [aux_sym_preprocessor_const_token1] = ACTIONS(9260), + [sym_static_modifier] = ACTIONS(9260), + [sym__dim_keyword] = ACTIONS(9260), + [sym__redim_keyword] = ACTIONS(9260), + [aux_sym_get_accessor_token1] = ACTIONS(9260), + [aux_sym_set_accessor_token1] = ACTIONS(9260), + [aux_sym_const_declaration_token1] = ACTIONS(9260), + [anon_sym_LPAREN] = ACTIONS(9262), + [aux_sym_as_type_clause_token2] = ACTIONS(9260), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9260), + [aux_sym_visibility_token1] = ACTIONS(9260), + [aux_sym_visibility_token2] = ACTIONS(9260), + [aux_sym_elseif_fragment_token1] = ACTIONS(9260), + [aux_sym_else_fragment_token1] = ACTIONS(9260), + [aux_sym_select_statement_token1] = ACTIONS(9260), + [aux_sym__for_header_token1] = ACTIONS(9260), + [aux_sym_do_statement_token1] = ACTIONS(9260), + [aux_sym_do_condition_token1] = ACTIONS(9260), + [aux_sym_with_statement_token1] = ACTIONS(9260), + [aux_sym_exit_statement_token1] = ACTIONS(9260), + [sym_end_statement] = ACTIONS(9262), + [aux_sym_on_goto_statement_token1] = ACTIONS(9260), + [aux_sym_on_goto_statement_token2] = ACTIONS(9260), + [aux_sym_on_error_statement_token2] = ACTIONS(9260), + [sym__ambiguous_redim_statement] = ACTIONS(9262), + [aux_sym_erase_statement_token1] = ACTIONS(9260), + [aux_sym_open_statement_token1] = ACTIONS(9260), + [aux_sym_file_mode_token2] = ACTIONS(9260), + [aux_sym_file_access_token2] = ACTIONS(9260), + [aux_sym_file_lock_token2] = ACTIONS(9260), + [aux_sym_print_statement_token1] = ACTIONS(9260), + [anon_sym_PLUS] = ACTIONS(9262), + [anon_sym_DASH] = ACTIONS(9260), + [anon_sym_QMARK] = ACTIONS(9262), + [aux_sym_close_statement_token1] = ACTIONS(9260), + [aux_sym_put_statement_token1] = ACTIONS(9260), + [aux_sym_unlock_statement_token1] = ACTIONS(9260), + [aux_sym_seek_statement_token1] = ACTIONS(9260), + [sym_reset_statement] = ACTIONS(9260), + [aux_sym_raise_event_statement_token1] = ACTIONS(9260), + [sym_stop_statement] = ACTIONS(9260), + [sym_beep_statement] = ACTIONS(9260), + [aux_sym_unload_statement_token1] = ACTIONS(9260), + [aux_sym_def_type_statement_token1] = ACTIONS(9260), + [aux_sym_def_type_statement_token2] = ACTIONS(9260), + [aux_sym_def_type_statement_token3] = ACTIONS(9260), + [aux_sym_def_type_statement_token4] = ACTIONS(9260), + [aux_sym_def_type_statement_token5] = ACTIONS(9260), + [aux_sym_def_type_statement_token6] = ACTIONS(9260), + [aux_sym_def_type_statement_token7] = ACTIONS(9260), + [aux_sym_def_type_statement_token8] = ACTIONS(9260), + [aux_sym_def_type_statement_token9] = ACTIONS(9260), + [aux_sym_def_type_statement_token10] = ACTIONS(9260), + [aux_sym_def_type_statement_token11] = ACTIONS(9260), + [aux_sym_def_type_statement_token12] = ACTIONS(9260), + [aux_sym_def_type_statement_token13] = ACTIONS(9260), + [aux_sym_def_type_statement_token14] = ACTIONS(9260), + [aux_sym_call_statement_token1] = ACTIONS(9260), + [sym__ambiguous_call_statement] = ACTIONS(9260), + [aux_sym_addressof_expression_token1] = ACTIONS(9260), + [aux_sym_type_of_expression_token1] = ACTIONS(9260), + [aux_sym_unary_expression_token1] = ACTIONS(9260), + [sym_string_literal] = ACTIONS(9262), + [sym_number_literal] = ACTIONS(9262), + [aux_sym_boolean_literal_token1] = ACTIONS(9260), + [aux_sym_boolean_literal_token2] = ACTIONS(9260), + [sym_nothing_literal] = ACTIONS(9260), + [sym_null_literal] = ACTIONS(9260), + [sym_empty_literal] = ACTIONS(9260), + [sym_date_literal] = ACTIONS(9262), + [anon_sym_POUND] = ACTIONS(9260), + }, + [STATE(7126)] = { + [sym_identifier] = ACTIONS(8745), + [sym_newline] = ACTIONS(8747), + [anon_sym_COLON] = ACTIONS(8747), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8745), + [aux_sym_frm_property_statement_token1] = ACTIONS(8745), + [anon_sym_DOT] = ACTIONS(8745), + [anon_sym_BANG] = ACTIONS(8747), + [aux_sym__attribute_identifier_token1] = ACTIONS(8745), + [aux_sym_option_statement_token3] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8745), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8745), + [aux_sym_preprocessor_const_token1] = ACTIONS(8745), + [sym_static_modifier] = ACTIONS(8745), + [sym__dim_keyword] = ACTIONS(8745), + [sym__redim_keyword] = ACTIONS(8745), + [aux_sym_get_accessor_token1] = ACTIONS(8745), + [aux_sym_set_accessor_token1] = ACTIONS(8745), + [aux_sym_const_declaration_token1] = ACTIONS(8745), + [anon_sym_LPAREN] = ACTIONS(8747), + [aux_sym_as_type_clause_token2] = ACTIONS(8745), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8745), + [aux_sym_visibility_token1] = ACTIONS(8745), + [aux_sym_visibility_token2] = ACTIONS(8745), + [aux_sym_elseif_fragment_token1] = ACTIONS(8745), + [aux_sym_else_fragment_token1] = ACTIONS(8745), + [aux_sym_select_statement_token1] = ACTIONS(8745), + [aux_sym__for_header_token1] = ACTIONS(8745), + [aux_sym_do_statement_token1] = ACTIONS(8745), + [aux_sym_do_condition_token1] = ACTIONS(8745), + [aux_sym_with_statement_token1] = ACTIONS(8745), + [aux_sym_exit_statement_token1] = ACTIONS(8745), + [sym_end_statement] = ACTIONS(8747), + [aux_sym_on_goto_statement_token1] = ACTIONS(8745), + [aux_sym_on_goto_statement_token2] = ACTIONS(8745), + [aux_sym_on_error_statement_token2] = ACTIONS(8745), + [sym__ambiguous_redim_statement] = ACTIONS(8747), + [aux_sym_erase_statement_token1] = ACTIONS(8745), + [aux_sym_open_statement_token1] = ACTIONS(8745), + [aux_sym_file_mode_token2] = ACTIONS(8745), + [aux_sym_file_access_token2] = ACTIONS(8745), + [aux_sym_file_lock_token2] = ACTIONS(8745), + [aux_sym_print_statement_token1] = ACTIONS(8745), + [anon_sym_PLUS] = ACTIONS(8747), + [anon_sym_DASH] = ACTIONS(8745), + [anon_sym_QMARK] = ACTIONS(8747), + [aux_sym_close_statement_token1] = ACTIONS(8745), + [aux_sym_put_statement_token1] = ACTIONS(8745), + [aux_sym_unlock_statement_token1] = ACTIONS(8745), + [aux_sym_seek_statement_token1] = ACTIONS(8745), + [sym_reset_statement] = ACTIONS(8745), + [aux_sym_raise_event_statement_token1] = ACTIONS(8745), + [sym_stop_statement] = ACTIONS(8745), + [sym_beep_statement] = ACTIONS(8745), + [aux_sym_unload_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token1] = ACTIONS(8745), + [aux_sym_def_type_statement_token2] = ACTIONS(8745), + [aux_sym_def_type_statement_token3] = ACTIONS(8745), + [aux_sym_def_type_statement_token4] = ACTIONS(8745), + [aux_sym_def_type_statement_token5] = ACTIONS(8745), + [aux_sym_def_type_statement_token6] = ACTIONS(8745), + [aux_sym_def_type_statement_token7] = ACTIONS(8745), + [aux_sym_def_type_statement_token8] = ACTIONS(8745), + [aux_sym_def_type_statement_token9] = ACTIONS(8745), + [aux_sym_def_type_statement_token10] = ACTIONS(8745), + [aux_sym_def_type_statement_token11] = ACTIONS(8745), + [aux_sym_def_type_statement_token12] = ACTIONS(8745), + [aux_sym_def_type_statement_token13] = ACTIONS(8745), + [aux_sym_def_type_statement_token14] = ACTIONS(8745), + [aux_sym_call_statement_token1] = ACTIONS(8745), + [sym__ambiguous_call_statement] = ACTIONS(8745), + [aux_sym_addressof_expression_token1] = ACTIONS(8745), + [aux_sym_type_of_expression_token1] = ACTIONS(8745), + [aux_sym_unary_expression_token1] = ACTIONS(8745), + [sym_string_literal] = ACTIONS(8747), + [sym_number_literal] = ACTIONS(8747), + [aux_sym_boolean_literal_token1] = ACTIONS(8745), + [aux_sym_boolean_literal_token2] = ACTIONS(8745), + [sym_nothing_literal] = ACTIONS(8745), + [sym_null_literal] = ACTIONS(8745), + [sym_empty_literal] = ACTIONS(8745), + [sym_date_literal] = ACTIONS(8747), + [anon_sym_POUND] = ACTIONS(8745), + }, + [STATE(7127)] = { + [sym_identifier] = ACTIONS(9556), + [sym_newline] = ACTIONS(9558), + [anon_sym_COLON] = ACTIONS(9558), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9556), + [aux_sym_frm_property_statement_token1] = ACTIONS(9556), + [anon_sym_DOT] = ACTIONS(9556), + [anon_sym_BANG] = ACTIONS(9558), + [aux_sym__attribute_identifier_token1] = ACTIONS(9556), + [aux_sym_option_statement_token3] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9556), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9556), + [aux_sym_preprocessor_const_token1] = ACTIONS(9556), + [sym_static_modifier] = ACTIONS(9556), + [sym__dim_keyword] = ACTIONS(9556), + [sym__redim_keyword] = ACTIONS(9556), + [aux_sym_get_accessor_token1] = ACTIONS(9556), + [aux_sym_set_accessor_token1] = ACTIONS(9556), + [aux_sym_const_declaration_token1] = ACTIONS(9556), + [anon_sym_LPAREN] = ACTIONS(9558), + [aux_sym_as_type_clause_token2] = ACTIONS(9556), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9556), + [aux_sym_visibility_token1] = ACTIONS(9556), + [aux_sym_visibility_token2] = ACTIONS(9556), + [aux_sym_elseif_fragment_token1] = ACTIONS(9556), + [aux_sym_else_fragment_token1] = ACTIONS(9556), + [aux_sym_select_statement_token1] = ACTIONS(9556), + [aux_sym__for_header_token1] = ACTIONS(9556), + [aux_sym_do_statement_token1] = ACTIONS(9556), + [aux_sym_do_condition_token1] = ACTIONS(9556), + [aux_sym_with_statement_token1] = ACTIONS(9556), + [aux_sym_exit_statement_token1] = ACTIONS(9556), + [sym_end_statement] = ACTIONS(9558), + [aux_sym_on_goto_statement_token1] = ACTIONS(9556), + [aux_sym_on_goto_statement_token2] = ACTIONS(9556), + [aux_sym_on_error_statement_token2] = ACTIONS(9556), + [sym__ambiguous_redim_statement] = ACTIONS(9558), + [aux_sym_erase_statement_token1] = ACTIONS(9556), + [aux_sym_open_statement_token1] = ACTIONS(9556), + [aux_sym_file_mode_token2] = ACTIONS(9556), + [aux_sym_file_access_token2] = ACTIONS(9556), + [aux_sym_file_lock_token2] = ACTIONS(9556), + [aux_sym_print_statement_token1] = ACTIONS(9556), + [anon_sym_PLUS] = ACTIONS(9558), + [anon_sym_DASH] = ACTIONS(9556), + [anon_sym_QMARK] = ACTIONS(9558), + [aux_sym_close_statement_token1] = ACTIONS(9556), + [aux_sym_put_statement_token1] = ACTIONS(9556), + [aux_sym_unlock_statement_token1] = ACTIONS(9556), + [aux_sym_seek_statement_token1] = ACTIONS(9556), + [sym_reset_statement] = ACTIONS(9556), + [aux_sym_raise_event_statement_token1] = ACTIONS(9556), + [sym_stop_statement] = ACTIONS(9556), + [sym_beep_statement] = ACTIONS(9556), + [aux_sym_unload_statement_token1] = ACTIONS(9556), + [aux_sym_def_type_statement_token1] = ACTIONS(9556), + [aux_sym_def_type_statement_token2] = ACTIONS(9556), + [aux_sym_def_type_statement_token3] = ACTIONS(9556), + [aux_sym_def_type_statement_token4] = ACTIONS(9556), + [aux_sym_def_type_statement_token5] = ACTIONS(9556), + [aux_sym_def_type_statement_token6] = ACTIONS(9556), + [aux_sym_def_type_statement_token7] = ACTIONS(9556), + [aux_sym_def_type_statement_token8] = ACTIONS(9556), + [aux_sym_def_type_statement_token9] = ACTIONS(9556), + [aux_sym_def_type_statement_token10] = ACTIONS(9556), + [aux_sym_def_type_statement_token11] = ACTIONS(9556), + [aux_sym_def_type_statement_token12] = ACTIONS(9556), + [aux_sym_def_type_statement_token13] = ACTIONS(9556), + [aux_sym_def_type_statement_token14] = ACTIONS(9556), + [aux_sym_call_statement_token1] = ACTIONS(9556), + [sym__ambiguous_call_statement] = ACTIONS(9556), + [aux_sym_addressof_expression_token1] = ACTIONS(9556), + [aux_sym_type_of_expression_token1] = ACTIONS(9556), + [aux_sym_unary_expression_token1] = ACTIONS(9556), + [sym_string_literal] = ACTIONS(9558), + [sym_number_literal] = ACTIONS(9558), + [aux_sym_boolean_literal_token1] = ACTIONS(9556), + [aux_sym_boolean_literal_token2] = ACTIONS(9556), + [sym_nothing_literal] = ACTIONS(9556), + [sym_null_literal] = ACTIONS(9556), + [sym_empty_literal] = ACTIONS(9556), + [sym_date_literal] = ACTIONS(9558), + [anon_sym_POUND] = ACTIONS(9556), + }, + [STATE(7128)] = { + [sym_identifier] = ACTIONS(9336), + [sym_newline] = ACTIONS(9338), + [anon_sym_COLON] = ACTIONS(9338), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9336), + [aux_sym_frm_property_statement_token1] = ACTIONS(9336), + [anon_sym_DOT] = ACTIONS(9336), + [anon_sym_BANG] = ACTIONS(9338), + [aux_sym__attribute_identifier_token1] = ACTIONS(9336), + [aux_sym_option_statement_token3] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9336), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9336), + [aux_sym_preprocessor_const_token1] = ACTIONS(9336), + [sym_static_modifier] = ACTIONS(9336), + [sym__dim_keyword] = ACTIONS(9336), + [sym__redim_keyword] = ACTIONS(9336), + [aux_sym_get_accessor_token1] = ACTIONS(9336), + [aux_sym_set_accessor_token1] = ACTIONS(9336), + [aux_sym_const_declaration_token1] = ACTIONS(9336), + [anon_sym_LPAREN] = ACTIONS(9338), + [aux_sym_as_type_clause_token2] = ACTIONS(9336), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9336), + [aux_sym_visibility_token1] = ACTIONS(9336), + [aux_sym_visibility_token2] = ACTIONS(9336), + [aux_sym_elseif_fragment_token1] = ACTIONS(9336), + [aux_sym_else_fragment_token1] = ACTIONS(9336), + [aux_sym_select_statement_token1] = ACTIONS(9336), + [aux_sym__for_header_token1] = ACTIONS(9336), + [aux_sym_do_statement_token1] = ACTIONS(9336), + [aux_sym_do_condition_token1] = ACTIONS(9336), + [aux_sym_with_statement_token1] = ACTIONS(9336), + [aux_sym_exit_statement_token1] = ACTIONS(9336), + [sym_end_statement] = ACTIONS(9338), + [aux_sym_on_goto_statement_token1] = ACTIONS(9336), + [aux_sym_on_goto_statement_token2] = ACTIONS(9336), + [aux_sym_on_error_statement_token2] = ACTIONS(9336), + [sym__ambiguous_redim_statement] = ACTIONS(9338), + [aux_sym_erase_statement_token1] = ACTIONS(9336), + [aux_sym_open_statement_token1] = ACTIONS(9336), + [aux_sym_file_mode_token2] = ACTIONS(9336), + [aux_sym_file_access_token2] = ACTIONS(9336), + [aux_sym_file_lock_token2] = ACTIONS(9336), + [aux_sym_print_statement_token1] = ACTIONS(9336), + [anon_sym_PLUS] = ACTIONS(9338), + [anon_sym_DASH] = ACTIONS(9336), + [anon_sym_QMARK] = ACTIONS(9338), + [aux_sym_close_statement_token1] = ACTIONS(9336), + [aux_sym_put_statement_token1] = ACTIONS(9336), + [aux_sym_unlock_statement_token1] = ACTIONS(9336), + [aux_sym_seek_statement_token1] = ACTIONS(9336), + [sym_reset_statement] = ACTIONS(9336), + [aux_sym_raise_event_statement_token1] = ACTIONS(9336), + [sym_stop_statement] = ACTIONS(9336), + [sym_beep_statement] = ACTIONS(9336), + [aux_sym_unload_statement_token1] = ACTIONS(9336), + [aux_sym_def_type_statement_token1] = ACTIONS(9336), + [aux_sym_def_type_statement_token2] = ACTIONS(9336), + [aux_sym_def_type_statement_token3] = ACTIONS(9336), + [aux_sym_def_type_statement_token4] = ACTIONS(9336), + [aux_sym_def_type_statement_token5] = ACTIONS(9336), + [aux_sym_def_type_statement_token6] = ACTIONS(9336), + [aux_sym_def_type_statement_token7] = ACTIONS(9336), + [aux_sym_def_type_statement_token8] = ACTIONS(9336), + [aux_sym_def_type_statement_token9] = ACTIONS(9336), + [aux_sym_def_type_statement_token10] = ACTIONS(9336), + [aux_sym_def_type_statement_token11] = ACTIONS(9336), + [aux_sym_def_type_statement_token12] = ACTIONS(9336), + [aux_sym_def_type_statement_token13] = ACTIONS(9336), + [aux_sym_def_type_statement_token14] = ACTIONS(9336), + [aux_sym_call_statement_token1] = ACTIONS(9336), + [sym__ambiguous_call_statement] = ACTIONS(9336), + [aux_sym_addressof_expression_token1] = ACTIONS(9336), + [aux_sym_type_of_expression_token1] = ACTIONS(9336), + [aux_sym_unary_expression_token1] = ACTIONS(9336), + [sym_string_literal] = ACTIONS(9338), + [sym_number_literal] = ACTIONS(9338), + [aux_sym_boolean_literal_token1] = ACTIONS(9336), + [aux_sym_boolean_literal_token2] = ACTIONS(9336), + [sym_nothing_literal] = ACTIONS(9336), + [sym_null_literal] = ACTIONS(9336), + [sym_empty_literal] = ACTIONS(9336), + [sym_date_literal] = ACTIONS(9338), + [anon_sym_POUND] = ACTIONS(9336), + }, + [STATE(7129)] = { + [sym_identifier] = ACTIONS(9514), + [sym_newline] = ACTIONS(9516), + [anon_sym_COLON] = ACTIONS(9516), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9514), + [aux_sym_frm_property_statement_token1] = ACTIONS(9514), + [anon_sym_DOT] = ACTIONS(9514), + [anon_sym_BANG] = ACTIONS(9516), + [aux_sym__attribute_identifier_token1] = ACTIONS(9514), + [aux_sym_option_statement_token3] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9514), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9514), + [aux_sym_preprocessor_const_token1] = ACTIONS(9514), + [sym_static_modifier] = ACTIONS(9514), + [sym__dim_keyword] = ACTIONS(9514), + [sym__redim_keyword] = ACTIONS(9514), + [aux_sym_get_accessor_token1] = ACTIONS(9514), + [aux_sym_set_accessor_token1] = ACTIONS(9514), + [aux_sym_const_declaration_token1] = ACTIONS(9514), + [anon_sym_LPAREN] = ACTIONS(9516), + [aux_sym_as_type_clause_token2] = ACTIONS(9514), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9514), + [aux_sym_visibility_token1] = ACTIONS(9514), + [aux_sym_visibility_token2] = ACTIONS(9514), + [aux_sym_elseif_fragment_token1] = ACTIONS(9514), + [aux_sym_else_fragment_token1] = ACTIONS(9514), + [aux_sym_select_statement_token1] = ACTIONS(9514), + [aux_sym__for_header_token1] = ACTIONS(9514), + [aux_sym_do_statement_token1] = ACTIONS(9514), + [aux_sym_do_condition_token1] = ACTIONS(9514), + [aux_sym_with_statement_token1] = ACTIONS(9514), + [aux_sym_exit_statement_token1] = ACTIONS(9514), + [sym_end_statement] = ACTIONS(9516), + [aux_sym_on_goto_statement_token1] = ACTIONS(9514), + [aux_sym_on_goto_statement_token2] = ACTIONS(9514), + [aux_sym_on_error_statement_token2] = ACTIONS(9514), + [sym__ambiguous_redim_statement] = ACTIONS(9516), + [aux_sym_erase_statement_token1] = ACTIONS(9514), + [aux_sym_open_statement_token1] = ACTIONS(9514), + [aux_sym_file_mode_token2] = ACTIONS(9514), + [aux_sym_file_access_token2] = ACTIONS(9514), + [aux_sym_file_lock_token2] = ACTIONS(9514), + [aux_sym_print_statement_token1] = ACTIONS(9514), + [anon_sym_PLUS] = ACTIONS(9516), + [anon_sym_DASH] = ACTIONS(9514), + [anon_sym_QMARK] = ACTIONS(9516), + [aux_sym_close_statement_token1] = ACTIONS(9514), + [aux_sym_put_statement_token1] = ACTIONS(9514), + [aux_sym_unlock_statement_token1] = ACTIONS(9514), + [aux_sym_seek_statement_token1] = ACTIONS(9514), + [sym_reset_statement] = ACTIONS(9514), + [aux_sym_raise_event_statement_token1] = ACTIONS(9514), + [sym_stop_statement] = ACTIONS(9514), + [sym_beep_statement] = ACTIONS(9514), + [aux_sym_unload_statement_token1] = ACTIONS(9514), + [aux_sym_def_type_statement_token1] = ACTIONS(9514), + [aux_sym_def_type_statement_token2] = ACTIONS(9514), + [aux_sym_def_type_statement_token3] = ACTIONS(9514), + [aux_sym_def_type_statement_token4] = ACTIONS(9514), + [aux_sym_def_type_statement_token5] = ACTIONS(9514), + [aux_sym_def_type_statement_token6] = ACTIONS(9514), + [aux_sym_def_type_statement_token7] = ACTIONS(9514), + [aux_sym_def_type_statement_token8] = ACTIONS(9514), + [aux_sym_def_type_statement_token9] = ACTIONS(9514), + [aux_sym_def_type_statement_token10] = ACTIONS(9514), + [aux_sym_def_type_statement_token11] = ACTIONS(9514), + [aux_sym_def_type_statement_token12] = ACTIONS(9514), + [aux_sym_def_type_statement_token13] = ACTIONS(9514), + [aux_sym_def_type_statement_token14] = ACTIONS(9514), + [aux_sym_call_statement_token1] = ACTIONS(9514), + [sym__ambiguous_call_statement] = ACTIONS(9514), + [aux_sym_addressof_expression_token1] = ACTIONS(9514), + [aux_sym_type_of_expression_token1] = ACTIONS(9514), + [aux_sym_unary_expression_token1] = ACTIONS(9514), + [sym_string_literal] = ACTIONS(9516), + [sym_number_literal] = ACTIONS(9516), + [aux_sym_boolean_literal_token1] = ACTIONS(9514), + [aux_sym_boolean_literal_token2] = ACTIONS(9514), + [sym_nothing_literal] = ACTIONS(9514), + [sym_null_literal] = ACTIONS(9514), + [sym_empty_literal] = ACTIONS(9514), + [sym_date_literal] = ACTIONS(9516), + [anon_sym_POUND] = ACTIONS(9514), + }, + [STATE(7130)] = { + [sym_identifier] = ACTIONS(9560), + [sym_newline] = ACTIONS(9562), + [anon_sym_COLON] = ACTIONS(9562), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9560), + [aux_sym_frm_property_statement_token1] = ACTIONS(9560), + [anon_sym_DOT] = ACTIONS(9560), + [anon_sym_BANG] = ACTIONS(9562), + [aux_sym__attribute_identifier_token1] = ACTIONS(9560), + [aux_sym_option_statement_token3] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9560), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9560), + [aux_sym_preprocessor_const_token1] = ACTIONS(9560), + [sym_static_modifier] = ACTIONS(9560), + [sym__dim_keyword] = ACTIONS(9560), + [sym__redim_keyword] = ACTIONS(9560), + [aux_sym_get_accessor_token1] = ACTIONS(9560), + [aux_sym_set_accessor_token1] = ACTIONS(9560), + [aux_sym_const_declaration_token1] = ACTIONS(9560), + [anon_sym_LPAREN] = ACTIONS(9562), + [aux_sym_as_type_clause_token2] = ACTIONS(9560), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9560), + [aux_sym_visibility_token1] = ACTIONS(9560), + [aux_sym_visibility_token2] = ACTIONS(9560), + [aux_sym_elseif_fragment_token1] = ACTIONS(9560), + [aux_sym_else_fragment_token1] = ACTIONS(9560), + [aux_sym_select_statement_token1] = ACTIONS(9560), + [aux_sym__for_header_token1] = ACTIONS(9560), + [aux_sym_do_statement_token1] = ACTIONS(9560), + [aux_sym_do_condition_token1] = ACTIONS(9560), + [aux_sym_with_statement_token1] = ACTIONS(9560), + [aux_sym_exit_statement_token1] = ACTIONS(9560), + [sym_end_statement] = ACTIONS(9562), + [aux_sym_on_goto_statement_token1] = ACTIONS(9560), + [aux_sym_on_goto_statement_token2] = ACTIONS(9560), + [aux_sym_on_error_statement_token2] = ACTIONS(9560), + [sym__ambiguous_redim_statement] = ACTIONS(9562), + [aux_sym_erase_statement_token1] = ACTIONS(9560), + [aux_sym_open_statement_token1] = ACTIONS(9560), + [aux_sym_file_mode_token2] = ACTIONS(9560), + [aux_sym_file_access_token2] = ACTIONS(9560), + [aux_sym_file_lock_token2] = ACTIONS(9560), + [aux_sym_print_statement_token1] = ACTIONS(9560), + [anon_sym_PLUS] = ACTIONS(9562), + [anon_sym_DASH] = ACTIONS(9560), + [anon_sym_QMARK] = ACTIONS(9562), + [aux_sym_close_statement_token1] = ACTIONS(9560), + [aux_sym_put_statement_token1] = ACTIONS(9560), + [aux_sym_unlock_statement_token1] = ACTIONS(9560), + [aux_sym_seek_statement_token1] = ACTIONS(9560), + [sym_reset_statement] = ACTIONS(9560), + [aux_sym_raise_event_statement_token1] = ACTIONS(9560), + [sym_stop_statement] = ACTIONS(9560), + [sym_beep_statement] = ACTIONS(9560), + [aux_sym_unload_statement_token1] = ACTIONS(9560), + [aux_sym_def_type_statement_token1] = ACTIONS(9560), + [aux_sym_def_type_statement_token2] = ACTIONS(9560), + [aux_sym_def_type_statement_token3] = ACTIONS(9560), + [aux_sym_def_type_statement_token4] = ACTIONS(9560), + [aux_sym_def_type_statement_token5] = ACTIONS(9560), + [aux_sym_def_type_statement_token6] = ACTIONS(9560), + [aux_sym_def_type_statement_token7] = ACTIONS(9560), + [aux_sym_def_type_statement_token8] = ACTIONS(9560), + [aux_sym_def_type_statement_token9] = ACTIONS(9560), + [aux_sym_def_type_statement_token10] = ACTIONS(9560), + [aux_sym_def_type_statement_token11] = ACTIONS(9560), + [aux_sym_def_type_statement_token12] = ACTIONS(9560), + [aux_sym_def_type_statement_token13] = ACTIONS(9560), + [aux_sym_def_type_statement_token14] = ACTIONS(9560), + [aux_sym_call_statement_token1] = ACTIONS(9560), + [sym__ambiguous_call_statement] = ACTIONS(9560), + [aux_sym_addressof_expression_token1] = ACTIONS(9560), + [aux_sym_type_of_expression_token1] = ACTIONS(9560), + [aux_sym_unary_expression_token1] = ACTIONS(9560), + [sym_string_literal] = ACTIONS(9562), + [sym_number_literal] = ACTIONS(9562), + [aux_sym_boolean_literal_token1] = ACTIONS(9560), + [aux_sym_boolean_literal_token2] = ACTIONS(9560), + [sym_nothing_literal] = ACTIONS(9560), + [sym_null_literal] = ACTIONS(9560), + [sym_empty_literal] = ACTIONS(9560), + [sym_date_literal] = ACTIONS(9562), + [anon_sym_POUND] = ACTIONS(9560), + }, + [STATE(7131)] = { + [sym_identifier] = ACTIONS(9356), + [sym_newline] = ACTIONS(9358), + [anon_sym_COLON] = ACTIONS(9358), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9356), + [aux_sym_frm_property_statement_token1] = ACTIONS(9356), + [anon_sym_DOT] = ACTIONS(9356), + [anon_sym_BANG] = ACTIONS(9358), + [aux_sym__attribute_identifier_token1] = ACTIONS(9356), + [aux_sym_option_statement_token3] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9356), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9356), + [aux_sym_preprocessor_const_token1] = ACTIONS(9356), + [sym_static_modifier] = ACTIONS(9356), + [sym__dim_keyword] = ACTIONS(9356), + [sym__redim_keyword] = ACTIONS(9356), + [aux_sym_get_accessor_token1] = ACTIONS(9356), + [aux_sym_set_accessor_token1] = ACTIONS(9356), + [aux_sym_const_declaration_token1] = ACTIONS(9356), + [anon_sym_LPAREN] = ACTIONS(9358), + [aux_sym_as_type_clause_token2] = ACTIONS(9356), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9356), + [aux_sym_visibility_token1] = ACTIONS(9356), + [aux_sym_visibility_token2] = ACTIONS(9356), + [aux_sym_elseif_fragment_token1] = ACTIONS(9356), + [aux_sym_else_fragment_token1] = ACTIONS(9356), + [aux_sym_select_statement_token1] = ACTIONS(9356), + [aux_sym__for_header_token1] = ACTIONS(9356), + [aux_sym_do_statement_token1] = ACTIONS(9356), + [aux_sym_do_condition_token1] = ACTIONS(9356), + [aux_sym_with_statement_token1] = ACTIONS(9356), + [aux_sym_exit_statement_token1] = ACTIONS(9356), + [sym_end_statement] = ACTIONS(9358), + [aux_sym_on_goto_statement_token1] = ACTIONS(9356), + [aux_sym_on_goto_statement_token2] = ACTIONS(9356), + [aux_sym_on_error_statement_token2] = ACTIONS(9356), + [sym__ambiguous_redim_statement] = ACTIONS(9358), + [aux_sym_erase_statement_token1] = ACTIONS(9356), + [aux_sym_open_statement_token1] = ACTIONS(9356), + [aux_sym_file_mode_token2] = ACTIONS(9356), + [aux_sym_file_access_token2] = ACTIONS(9356), + [aux_sym_file_lock_token2] = ACTIONS(9356), + [aux_sym_print_statement_token1] = ACTIONS(9356), + [anon_sym_PLUS] = ACTIONS(9358), + [anon_sym_DASH] = ACTIONS(9356), + [anon_sym_QMARK] = ACTIONS(9358), + [aux_sym_close_statement_token1] = ACTIONS(9356), + [aux_sym_put_statement_token1] = ACTIONS(9356), + [aux_sym_unlock_statement_token1] = ACTIONS(9356), + [aux_sym_seek_statement_token1] = ACTIONS(9356), + [sym_reset_statement] = ACTIONS(9356), + [aux_sym_raise_event_statement_token1] = ACTIONS(9356), + [sym_stop_statement] = ACTIONS(9356), + [sym_beep_statement] = ACTIONS(9356), + [aux_sym_unload_statement_token1] = ACTIONS(9356), + [aux_sym_def_type_statement_token1] = ACTIONS(9356), + [aux_sym_def_type_statement_token2] = ACTIONS(9356), + [aux_sym_def_type_statement_token3] = ACTIONS(9356), + [aux_sym_def_type_statement_token4] = ACTIONS(9356), + [aux_sym_def_type_statement_token5] = ACTIONS(9356), + [aux_sym_def_type_statement_token6] = ACTIONS(9356), + [aux_sym_def_type_statement_token7] = ACTIONS(9356), + [aux_sym_def_type_statement_token8] = ACTIONS(9356), + [aux_sym_def_type_statement_token9] = ACTIONS(9356), + [aux_sym_def_type_statement_token10] = ACTIONS(9356), + [aux_sym_def_type_statement_token11] = ACTIONS(9356), + [aux_sym_def_type_statement_token12] = ACTIONS(9356), + [aux_sym_def_type_statement_token13] = ACTIONS(9356), + [aux_sym_def_type_statement_token14] = ACTIONS(9356), + [aux_sym_call_statement_token1] = ACTIONS(9356), + [sym__ambiguous_call_statement] = ACTIONS(9356), + [aux_sym_addressof_expression_token1] = ACTIONS(9356), + [aux_sym_type_of_expression_token1] = ACTIONS(9356), + [aux_sym_unary_expression_token1] = ACTIONS(9356), + [sym_string_literal] = ACTIONS(9358), + [sym_number_literal] = ACTIONS(9358), + [aux_sym_boolean_literal_token1] = ACTIONS(9356), + [aux_sym_boolean_literal_token2] = ACTIONS(9356), + [sym_nothing_literal] = ACTIONS(9356), + [sym_null_literal] = ACTIONS(9356), + [sym_empty_literal] = ACTIONS(9356), + [sym_date_literal] = ACTIONS(9358), + [anon_sym_POUND] = ACTIONS(9356), + }, + [STATE(7132)] = { + [sym_identifier] = ACTIONS(9360), + [sym_newline] = ACTIONS(9362), + [anon_sym_COLON] = ACTIONS(9362), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9360), + [aux_sym_frm_property_statement_token1] = ACTIONS(9360), + [anon_sym_DOT] = ACTIONS(9360), + [anon_sym_BANG] = ACTIONS(9362), + [aux_sym__attribute_identifier_token1] = ACTIONS(9360), + [aux_sym_option_statement_token3] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9360), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9360), + [aux_sym_preprocessor_const_token1] = ACTIONS(9360), + [sym_static_modifier] = ACTIONS(9360), + [sym__dim_keyword] = ACTIONS(9360), + [sym__redim_keyword] = ACTIONS(9360), + [aux_sym_get_accessor_token1] = ACTIONS(9360), + [aux_sym_set_accessor_token1] = ACTIONS(9360), + [aux_sym_const_declaration_token1] = ACTIONS(9360), + [anon_sym_LPAREN] = ACTIONS(9362), + [aux_sym_as_type_clause_token2] = ACTIONS(9360), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9360), + [aux_sym_visibility_token1] = ACTIONS(9360), + [aux_sym_visibility_token2] = ACTIONS(9360), + [aux_sym_elseif_fragment_token1] = ACTIONS(9360), + [aux_sym_else_fragment_token1] = ACTIONS(9360), + [aux_sym_select_statement_token1] = ACTIONS(9360), + [aux_sym__for_header_token1] = ACTIONS(9360), + [aux_sym_do_statement_token1] = ACTIONS(9360), + [aux_sym_do_condition_token1] = ACTIONS(9360), + [aux_sym_with_statement_token1] = ACTIONS(9360), + [aux_sym_exit_statement_token1] = ACTIONS(9360), + [sym_end_statement] = ACTIONS(9362), + [aux_sym_on_goto_statement_token1] = ACTIONS(9360), + [aux_sym_on_goto_statement_token2] = ACTIONS(9360), + [aux_sym_on_error_statement_token2] = ACTIONS(9360), + [sym__ambiguous_redim_statement] = ACTIONS(9362), + [aux_sym_erase_statement_token1] = ACTIONS(9360), + [aux_sym_open_statement_token1] = ACTIONS(9360), + [aux_sym_file_mode_token2] = ACTIONS(9360), + [aux_sym_file_access_token2] = ACTIONS(9360), + [aux_sym_file_lock_token2] = ACTIONS(9360), + [aux_sym_print_statement_token1] = ACTIONS(9360), + [anon_sym_PLUS] = ACTIONS(9362), + [anon_sym_DASH] = ACTIONS(9360), + [anon_sym_QMARK] = ACTIONS(9362), + [aux_sym_close_statement_token1] = ACTIONS(9360), + [aux_sym_put_statement_token1] = ACTIONS(9360), + [aux_sym_unlock_statement_token1] = ACTIONS(9360), + [aux_sym_seek_statement_token1] = ACTIONS(9360), + [sym_reset_statement] = ACTIONS(9360), + [aux_sym_raise_event_statement_token1] = ACTIONS(9360), + [sym_stop_statement] = ACTIONS(9360), + [sym_beep_statement] = ACTIONS(9360), + [aux_sym_unload_statement_token1] = ACTIONS(9360), + [aux_sym_def_type_statement_token1] = ACTIONS(9360), + [aux_sym_def_type_statement_token2] = ACTIONS(9360), + [aux_sym_def_type_statement_token3] = ACTIONS(9360), + [aux_sym_def_type_statement_token4] = ACTIONS(9360), + [aux_sym_def_type_statement_token5] = ACTIONS(9360), + [aux_sym_def_type_statement_token6] = ACTIONS(9360), + [aux_sym_def_type_statement_token7] = ACTIONS(9360), + [aux_sym_def_type_statement_token8] = ACTIONS(9360), + [aux_sym_def_type_statement_token9] = ACTIONS(9360), + [aux_sym_def_type_statement_token10] = ACTIONS(9360), + [aux_sym_def_type_statement_token11] = ACTIONS(9360), + [aux_sym_def_type_statement_token12] = ACTIONS(9360), + [aux_sym_def_type_statement_token13] = ACTIONS(9360), + [aux_sym_def_type_statement_token14] = ACTIONS(9360), + [aux_sym_call_statement_token1] = ACTIONS(9360), + [sym__ambiguous_call_statement] = ACTIONS(9360), + [aux_sym_addressof_expression_token1] = ACTIONS(9360), + [aux_sym_type_of_expression_token1] = ACTIONS(9360), + [aux_sym_unary_expression_token1] = ACTIONS(9360), + [sym_string_literal] = ACTIONS(9362), + [sym_number_literal] = ACTIONS(9362), + [aux_sym_boolean_literal_token1] = ACTIONS(9360), + [aux_sym_boolean_literal_token2] = ACTIONS(9360), + [sym_nothing_literal] = ACTIONS(9360), + [sym_null_literal] = ACTIONS(9360), + [sym_empty_literal] = ACTIONS(9360), + [sym_date_literal] = ACTIONS(9362), + [anon_sym_POUND] = ACTIONS(9360), + }, + [STATE(7133)] = { + [sym_identifier] = ACTIONS(9374), + [sym_newline] = ACTIONS(9376), + [anon_sym_COLON] = ACTIONS(9376), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9374), + [aux_sym_frm_property_statement_token1] = ACTIONS(9374), + [anon_sym_DOT] = ACTIONS(9374), + [anon_sym_BANG] = ACTIONS(9376), + [aux_sym__attribute_identifier_token1] = ACTIONS(9374), + [aux_sym_option_statement_token3] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9374), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9374), + [aux_sym_preprocessor_const_token1] = ACTIONS(9374), + [sym_static_modifier] = ACTIONS(9374), + [sym__dim_keyword] = ACTIONS(9374), + [sym__redim_keyword] = ACTIONS(9374), + [aux_sym_get_accessor_token1] = ACTIONS(9374), + [aux_sym_set_accessor_token1] = ACTIONS(9374), + [aux_sym_const_declaration_token1] = ACTIONS(9374), + [anon_sym_LPAREN] = ACTIONS(9376), + [aux_sym_as_type_clause_token2] = ACTIONS(9374), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9374), + [aux_sym_visibility_token1] = ACTIONS(9374), + [aux_sym_visibility_token2] = ACTIONS(9374), + [aux_sym_elseif_fragment_token1] = ACTIONS(9374), + [aux_sym_else_fragment_token1] = ACTIONS(9374), + [aux_sym_select_statement_token1] = ACTIONS(9374), + [aux_sym__for_header_token1] = ACTIONS(9374), + [aux_sym_do_statement_token1] = ACTIONS(9374), + [aux_sym_do_condition_token1] = ACTIONS(9374), + [aux_sym_with_statement_token1] = ACTIONS(9374), + [aux_sym_exit_statement_token1] = ACTIONS(9374), + [sym_end_statement] = ACTIONS(9376), + [aux_sym_on_goto_statement_token1] = ACTIONS(9374), + [aux_sym_on_goto_statement_token2] = ACTIONS(9374), + [aux_sym_on_error_statement_token2] = ACTIONS(9374), + [sym__ambiguous_redim_statement] = ACTIONS(9376), + [aux_sym_erase_statement_token1] = ACTIONS(9374), + [aux_sym_open_statement_token1] = ACTIONS(9374), + [aux_sym_file_mode_token2] = ACTIONS(9374), + [aux_sym_file_access_token2] = ACTIONS(9374), + [aux_sym_file_lock_token2] = ACTIONS(9374), + [aux_sym_print_statement_token1] = ACTIONS(9374), + [anon_sym_PLUS] = ACTIONS(9376), + [anon_sym_DASH] = ACTIONS(9374), + [anon_sym_QMARK] = ACTIONS(9376), + [aux_sym_close_statement_token1] = ACTIONS(9374), + [aux_sym_put_statement_token1] = ACTIONS(9374), + [aux_sym_unlock_statement_token1] = ACTIONS(9374), + [aux_sym_seek_statement_token1] = ACTIONS(9374), + [sym_reset_statement] = ACTIONS(9374), + [aux_sym_raise_event_statement_token1] = ACTIONS(9374), + [sym_stop_statement] = ACTIONS(9374), + [sym_beep_statement] = ACTIONS(9374), + [aux_sym_unload_statement_token1] = ACTIONS(9374), + [aux_sym_def_type_statement_token1] = ACTIONS(9374), + [aux_sym_def_type_statement_token2] = ACTIONS(9374), + [aux_sym_def_type_statement_token3] = ACTIONS(9374), + [aux_sym_def_type_statement_token4] = ACTIONS(9374), + [aux_sym_def_type_statement_token5] = ACTIONS(9374), + [aux_sym_def_type_statement_token6] = ACTIONS(9374), + [aux_sym_def_type_statement_token7] = ACTIONS(9374), + [aux_sym_def_type_statement_token8] = ACTIONS(9374), + [aux_sym_def_type_statement_token9] = ACTIONS(9374), + [aux_sym_def_type_statement_token10] = ACTIONS(9374), + [aux_sym_def_type_statement_token11] = ACTIONS(9374), + [aux_sym_def_type_statement_token12] = ACTIONS(9374), + [aux_sym_def_type_statement_token13] = ACTIONS(9374), + [aux_sym_def_type_statement_token14] = ACTIONS(9374), + [aux_sym_call_statement_token1] = ACTIONS(9374), + [sym__ambiguous_call_statement] = ACTIONS(9374), + [aux_sym_addressof_expression_token1] = ACTIONS(9374), + [aux_sym_type_of_expression_token1] = ACTIONS(9374), + [aux_sym_unary_expression_token1] = ACTIONS(9374), + [sym_string_literal] = ACTIONS(9376), + [sym_number_literal] = ACTIONS(9376), + [aux_sym_boolean_literal_token1] = ACTIONS(9374), + [aux_sym_boolean_literal_token2] = ACTIONS(9374), + [sym_nothing_literal] = ACTIONS(9374), + [sym_null_literal] = ACTIONS(9374), + [sym_empty_literal] = ACTIONS(9374), + [sym_date_literal] = ACTIONS(9376), + [anon_sym_POUND] = ACTIONS(9374), + }, + [STATE(7134)] = { + [sym_identifier] = ACTIONS(9378), + [sym_newline] = ACTIONS(9380), + [anon_sym_COLON] = ACTIONS(9380), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9378), + [aux_sym_frm_property_statement_token1] = ACTIONS(9378), + [anon_sym_DOT] = ACTIONS(9378), + [anon_sym_BANG] = ACTIONS(9380), + [aux_sym__attribute_identifier_token1] = ACTIONS(9378), + [aux_sym_option_statement_token3] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9378), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9378), + [aux_sym_preprocessor_const_token1] = ACTIONS(9378), + [sym_static_modifier] = ACTIONS(9378), + [sym__dim_keyword] = ACTIONS(9378), + [sym__redim_keyword] = ACTIONS(9378), + [aux_sym_get_accessor_token1] = ACTIONS(9378), + [aux_sym_set_accessor_token1] = ACTIONS(9378), + [aux_sym_const_declaration_token1] = ACTIONS(9378), + [anon_sym_LPAREN] = ACTIONS(9380), + [aux_sym_as_type_clause_token2] = ACTIONS(9378), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9378), + [aux_sym_visibility_token1] = ACTIONS(9378), + [aux_sym_visibility_token2] = ACTIONS(9378), + [aux_sym_elseif_fragment_token1] = ACTIONS(9378), + [aux_sym_else_fragment_token1] = ACTIONS(9378), + [aux_sym_select_statement_token1] = ACTIONS(9378), + [aux_sym__for_header_token1] = ACTIONS(9378), + [aux_sym_do_statement_token1] = ACTIONS(9378), + [aux_sym_do_condition_token1] = ACTIONS(9378), + [aux_sym_with_statement_token1] = ACTIONS(9378), + [aux_sym_exit_statement_token1] = ACTIONS(9378), + [sym_end_statement] = ACTIONS(9380), + [aux_sym_on_goto_statement_token1] = ACTIONS(9378), + [aux_sym_on_goto_statement_token2] = ACTIONS(9378), + [aux_sym_on_error_statement_token2] = ACTIONS(9378), + [sym__ambiguous_redim_statement] = ACTIONS(9380), + [aux_sym_erase_statement_token1] = ACTIONS(9378), + [aux_sym_open_statement_token1] = ACTIONS(9378), + [aux_sym_file_mode_token2] = ACTIONS(9378), + [aux_sym_file_access_token2] = ACTIONS(9378), + [aux_sym_file_lock_token2] = ACTIONS(9378), + [aux_sym_print_statement_token1] = ACTIONS(9378), + [anon_sym_PLUS] = ACTIONS(9380), + [anon_sym_DASH] = ACTIONS(9378), + [anon_sym_QMARK] = ACTIONS(9380), + [aux_sym_close_statement_token1] = ACTIONS(9378), + [aux_sym_put_statement_token1] = ACTIONS(9378), + [aux_sym_unlock_statement_token1] = ACTIONS(9378), + [aux_sym_seek_statement_token1] = ACTIONS(9378), + [sym_reset_statement] = ACTIONS(9378), + [aux_sym_raise_event_statement_token1] = ACTIONS(9378), + [sym_stop_statement] = ACTIONS(9378), + [sym_beep_statement] = ACTIONS(9378), + [aux_sym_unload_statement_token1] = ACTIONS(9378), + [aux_sym_def_type_statement_token1] = ACTIONS(9378), + [aux_sym_def_type_statement_token2] = ACTIONS(9378), + [aux_sym_def_type_statement_token3] = ACTIONS(9378), + [aux_sym_def_type_statement_token4] = ACTIONS(9378), + [aux_sym_def_type_statement_token5] = ACTIONS(9378), + [aux_sym_def_type_statement_token6] = ACTIONS(9378), + [aux_sym_def_type_statement_token7] = ACTIONS(9378), + [aux_sym_def_type_statement_token8] = ACTIONS(9378), + [aux_sym_def_type_statement_token9] = ACTIONS(9378), + [aux_sym_def_type_statement_token10] = ACTIONS(9378), + [aux_sym_def_type_statement_token11] = ACTIONS(9378), + [aux_sym_def_type_statement_token12] = ACTIONS(9378), + [aux_sym_def_type_statement_token13] = ACTIONS(9378), + [aux_sym_def_type_statement_token14] = ACTIONS(9378), + [aux_sym_call_statement_token1] = ACTIONS(9378), + [sym__ambiguous_call_statement] = ACTIONS(9378), + [aux_sym_addressof_expression_token1] = ACTIONS(9378), + [aux_sym_type_of_expression_token1] = ACTIONS(9378), + [aux_sym_unary_expression_token1] = ACTIONS(9378), + [sym_string_literal] = ACTIONS(9380), + [sym_number_literal] = ACTIONS(9380), + [aux_sym_boolean_literal_token1] = ACTIONS(9378), + [aux_sym_boolean_literal_token2] = ACTIONS(9378), + [sym_nothing_literal] = ACTIONS(9378), + [sym_null_literal] = ACTIONS(9378), + [sym_empty_literal] = ACTIONS(9378), + [sym_date_literal] = ACTIONS(9380), + [anon_sym_POUND] = ACTIONS(9378), + }, + [STATE(7135)] = { + [sym_identifier] = ACTIONS(9518), + [sym_newline] = ACTIONS(9520), + [anon_sym_COLON] = ACTIONS(9520), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9518), + [aux_sym_frm_property_statement_token1] = ACTIONS(9518), + [anon_sym_DOT] = ACTIONS(9518), + [anon_sym_BANG] = ACTIONS(9520), + [aux_sym__attribute_identifier_token1] = ACTIONS(9518), + [aux_sym_option_statement_token3] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9518), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9518), + [aux_sym_preprocessor_const_token1] = ACTIONS(9518), + [sym_static_modifier] = ACTIONS(9518), + [sym__dim_keyword] = ACTIONS(9518), + [sym__redim_keyword] = ACTIONS(9518), + [aux_sym_get_accessor_token1] = ACTIONS(9518), + [aux_sym_set_accessor_token1] = ACTIONS(9518), + [aux_sym_const_declaration_token1] = ACTIONS(9518), + [anon_sym_LPAREN] = ACTIONS(9520), + [aux_sym_as_type_clause_token2] = ACTIONS(9518), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9518), + [aux_sym_visibility_token1] = ACTIONS(9518), + [aux_sym_visibility_token2] = ACTIONS(9518), + [aux_sym_elseif_fragment_token1] = ACTIONS(9518), + [aux_sym_else_fragment_token1] = ACTIONS(9518), + [aux_sym_select_statement_token1] = ACTIONS(9518), + [aux_sym__for_header_token1] = ACTIONS(9518), + [aux_sym_do_statement_token1] = ACTIONS(9518), + [aux_sym_do_condition_token1] = ACTIONS(9518), + [aux_sym_with_statement_token1] = ACTIONS(9518), + [aux_sym_exit_statement_token1] = ACTIONS(9518), + [sym_end_statement] = ACTIONS(9520), + [aux_sym_on_goto_statement_token1] = ACTIONS(9518), + [aux_sym_on_goto_statement_token2] = ACTIONS(9518), + [aux_sym_on_error_statement_token2] = ACTIONS(9518), + [sym__ambiguous_redim_statement] = ACTIONS(9520), + [aux_sym_erase_statement_token1] = ACTIONS(9518), + [aux_sym_open_statement_token1] = ACTIONS(9518), + [aux_sym_file_mode_token2] = ACTIONS(9518), + [aux_sym_file_access_token2] = ACTIONS(9518), + [aux_sym_file_lock_token2] = ACTIONS(9518), + [aux_sym_print_statement_token1] = ACTIONS(9518), + [anon_sym_PLUS] = ACTIONS(9520), + [anon_sym_DASH] = ACTIONS(9518), + [anon_sym_QMARK] = ACTIONS(9520), + [aux_sym_close_statement_token1] = ACTIONS(9518), + [aux_sym_put_statement_token1] = ACTIONS(9518), + [aux_sym_unlock_statement_token1] = ACTIONS(9518), + [aux_sym_seek_statement_token1] = ACTIONS(9518), + [sym_reset_statement] = ACTIONS(9518), + [aux_sym_raise_event_statement_token1] = ACTIONS(9518), + [sym_stop_statement] = ACTIONS(9518), + [sym_beep_statement] = ACTIONS(9518), + [aux_sym_unload_statement_token1] = ACTIONS(9518), + [aux_sym_def_type_statement_token1] = ACTIONS(9518), + [aux_sym_def_type_statement_token2] = ACTIONS(9518), + [aux_sym_def_type_statement_token3] = ACTIONS(9518), + [aux_sym_def_type_statement_token4] = ACTIONS(9518), + [aux_sym_def_type_statement_token5] = ACTIONS(9518), + [aux_sym_def_type_statement_token6] = ACTIONS(9518), + [aux_sym_def_type_statement_token7] = ACTIONS(9518), + [aux_sym_def_type_statement_token8] = ACTIONS(9518), + [aux_sym_def_type_statement_token9] = ACTIONS(9518), + [aux_sym_def_type_statement_token10] = ACTIONS(9518), + [aux_sym_def_type_statement_token11] = ACTIONS(9518), + [aux_sym_def_type_statement_token12] = ACTIONS(9518), + [aux_sym_def_type_statement_token13] = ACTIONS(9518), + [aux_sym_def_type_statement_token14] = ACTIONS(9518), + [aux_sym_call_statement_token1] = ACTIONS(9518), + [sym__ambiguous_call_statement] = ACTIONS(9518), + [aux_sym_addressof_expression_token1] = ACTIONS(9518), + [aux_sym_type_of_expression_token1] = ACTIONS(9518), + [aux_sym_unary_expression_token1] = ACTIONS(9518), + [sym_string_literal] = ACTIONS(9520), + [sym_number_literal] = ACTIONS(9520), + [aux_sym_boolean_literal_token1] = ACTIONS(9518), + [aux_sym_boolean_literal_token2] = ACTIONS(9518), + [sym_nothing_literal] = ACTIONS(9518), + [sym_null_literal] = ACTIONS(9518), + [sym_empty_literal] = ACTIONS(9518), + [sym_date_literal] = ACTIONS(9520), + [anon_sym_POUND] = ACTIONS(9518), + }, + [STATE(7136)] = { + [sym_identifier] = ACTIONS(9114), + [sym_newline] = ACTIONS(9116), + [anon_sym_COLON] = ACTIONS(9116), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9114), + [aux_sym_frm_property_statement_token1] = ACTIONS(9114), + [anon_sym_DOT] = ACTIONS(9114), + [anon_sym_BANG] = ACTIONS(9116), + [aux_sym__attribute_identifier_token1] = ACTIONS(9114), + [aux_sym_option_statement_token3] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9114), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9114), + [aux_sym_preprocessor_const_token1] = ACTIONS(9114), + [sym_static_modifier] = ACTIONS(9114), + [sym__dim_keyword] = ACTIONS(9114), + [sym__redim_keyword] = ACTIONS(9114), + [aux_sym_get_accessor_token1] = ACTIONS(9114), + [aux_sym_set_accessor_token1] = ACTIONS(9114), + [aux_sym_const_declaration_token1] = ACTIONS(9114), + [anon_sym_LPAREN] = ACTIONS(9116), + [aux_sym_as_type_clause_token2] = ACTIONS(9114), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9114), + [aux_sym_visibility_token1] = ACTIONS(9114), + [aux_sym_visibility_token2] = ACTIONS(9114), + [aux_sym_elseif_fragment_token1] = ACTIONS(9114), + [aux_sym_else_fragment_token1] = ACTIONS(9114), + [aux_sym_select_statement_token1] = ACTIONS(9114), + [aux_sym__for_header_token1] = ACTIONS(9114), + [aux_sym_do_statement_token1] = ACTIONS(9114), + [aux_sym_do_condition_token1] = ACTIONS(9114), + [aux_sym_with_statement_token1] = ACTIONS(9114), + [aux_sym_exit_statement_token1] = ACTIONS(9114), + [sym_end_statement] = ACTIONS(9116), + [aux_sym_on_goto_statement_token1] = ACTIONS(9114), + [aux_sym_on_goto_statement_token2] = ACTIONS(9114), + [aux_sym_on_error_statement_token2] = ACTIONS(9114), + [sym__ambiguous_redim_statement] = ACTIONS(9116), + [aux_sym_erase_statement_token1] = ACTIONS(9114), + [aux_sym_open_statement_token1] = ACTIONS(9114), + [aux_sym_file_mode_token2] = ACTIONS(9114), + [aux_sym_file_access_token2] = ACTIONS(9114), + [aux_sym_file_lock_token2] = ACTIONS(9114), + [aux_sym_print_statement_token1] = ACTIONS(9114), + [anon_sym_PLUS] = ACTIONS(9116), + [anon_sym_DASH] = ACTIONS(9114), + [anon_sym_QMARK] = ACTIONS(9116), + [aux_sym_close_statement_token1] = ACTIONS(9114), + [aux_sym_put_statement_token1] = ACTIONS(9114), + [aux_sym_unlock_statement_token1] = ACTIONS(9114), + [aux_sym_seek_statement_token1] = ACTIONS(9114), + [sym_reset_statement] = ACTIONS(9114), + [aux_sym_raise_event_statement_token1] = ACTIONS(9114), + [sym_stop_statement] = ACTIONS(9114), + [sym_beep_statement] = ACTIONS(9114), + [aux_sym_unload_statement_token1] = ACTIONS(9114), + [aux_sym_def_type_statement_token1] = ACTIONS(9114), + [aux_sym_def_type_statement_token2] = ACTIONS(9114), + [aux_sym_def_type_statement_token3] = ACTIONS(9114), + [aux_sym_def_type_statement_token4] = ACTIONS(9114), + [aux_sym_def_type_statement_token5] = ACTIONS(9114), + [aux_sym_def_type_statement_token6] = ACTIONS(9114), + [aux_sym_def_type_statement_token7] = ACTIONS(9114), + [aux_sym_def_type_statement_token8] = ACTIONS(9114), + [aux_sym_def_type_statement_token9] = ACTIONS(9114), + [aux_sym_def_type_statement_token10] = ACTIONS(9114), + [aux_sym_def_type_statement_token11] = ACTIONS(9114), + [aux_sym_def_type_statement_token12] = ACTIONS(9114), + [aux_sym_def_type_statement_token13] = ACTIONS(9114), + [aux_sym_def_type_statement_token14] = ACTIONS(9114), + [aux_sym_call_statement_token1] = ACTIONS(9114), + [sym__ambiguous_call_statement] = ACTIONS(9114), + [aux_sym_addressof_expression_token1] = ACTIONS(9114), + [aux_sym_type_of_expression_token1] = ACTIONS(9114), + [aux_sym_unary_expression_token1] = ACTIONS(9114), + [sym_string_literal] = ACTIONS(9116), + [sym_number_literal] = ACTIONS(9116), + [aux_sym_boolean_literal_token1] = ACTIONS(9114), + [aux_sym_boolean_literal_token2] = ACTIONS(9114), + [sym_nothing_literal] = ACTIONS(9114), + [sym_null_literal] = ACTIONS(9114), + [sym_empty_literal] = ACTIONS(9114), + [sym_date_literal] = ACTIONS(9116), + [anon_sym_POUND] = ACTIONS(9114), + }, + [STATE(7137)] = { + [sym_identifier] = ACTIONS(9118), + [sym_newline] = ACTIONS(9120), + [anon_sym_COLON] = ACTIONS(9120), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9118), + [aux_sym_frm_property_statement_token1] = ACTIONS(9118), + [anon_sym_DOT] = ACTIONS(9118), + [anon_sym_BANG] = ACTIONS(9120), + [aux_sym__attribute_identifier_token1] = ACTIONS(9118), + [aux_sym_option_statement_token3] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9118), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9118), + [aux_sym_preprocessor_const_token1] = ACTIONS(9118), + [sym_static_modifier] = ACTIONS(9118), + [sym__dim_keyword] = ACTIONS(9118), + [sym__redim_keyword] = ACTIONS(9118), + [aux_sym_get_accessor_token1] = ACTIONS(9118), + [aux_sym_set_accessor_token1] = ACTIONS(9118), + [aux_sym_const_declaration_token1] = ACTIONS(9118), + [anon_sym_LPAREN] = ACTIONS(9120), + [aux_sym_as_type_clause_token2] = ACTIONS(9118), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9118), + [aux_sym_visibility_token1] = ACTIONS(9118), + [aux_sym_visibility_token2] = ACTIONS(9118), + [aux_sym_elseif_fragment_token1] = ACTIONS(9118), + [aux_sym_else_fragment_token1] = ACTIONS(9118), + [aux_sym_select_statement_token1] = ACTIONS(9118), + [aux_sym__for_header_token1] = ACTIONS(9118), + [aux_sym_do_statement_token1] = ACTIONS(9118), + [aux_sym_do_condition_token1] = ACTIONS(9118), + [aux_sym_with_statement_token1] = ACTIONS(9118), + [aux_sym_exit_statement_token1] = ACTIONS(9118), + [sym_end_statement] = ACTIONS(9120), + [aux_sym_on_goto_statement_token1] = ACTIONS(9118), + [aux_sym_on_goto_statement_token2] = ACTIONS(9118), + [aux_sym_on_error_statement_token2] = ACTIONS(9118), + [sym__ambiguous_redim_statement] = ACTIONS(9120), + [aux_sym_erase_statement_token1] = ACTIONS(9118), + [aux_sym_open_statement_token1] = ACTIONS(9118), + [aux_sym_file_mode_token2] = ACTIONS(9118), + [aux_sym_file_access_token2] = ACTIONS(9118), + [aux_sym_file_lock_token2] = ACTIONS(9118), + [aux_sym_print_statement_token1] = ACTIONS(9118), + [anon_sym_PLUS] = ACTIONS(9120), + [anon_sym_DASH] = ACTIONS(9118), + [anon_sym_QMARK] = ACTIONS(9120), + [aux_sym_close_statement_token1] = ACTIONS(9118), + [aux_sym_put_statement_token1] = ACTIONS(9118), + [aux_sym_unlock_statement_token1] = ACTIONS(9118), + [aux_sym_seek_statement_token1] = ACTIONS(9118), + [sym_reset_statement] = ACTIONS(9118), + [aux_sym_raise_event_statement_token1] = ACTIONS(9118), + [sym_stop_statement] = ACTIONS(9118), + [sym_beep_statement] = ACTIONS(9118), + [aux_sym_unload_statement_token1] = ACTIONS(9118), + [aux_sym_def_type_statement_token1] = ACTIONS(9118), + [aux_sym_def_type_statement_token2] = ACTIONS(9118), + [aux_sym_def_type_statement_token3] = ACTIONS(9118), + [aux_sym_def_type_statement_token4] = ACTIONS(9118), + [aux_sym_def_type_statement_token5] = ACTIONS(9118), + [aux_sym_def_type_statement_token6] = ACTIONS(9118), + [aux_sym_def_type_statement_token7] = ACTIONS(9118), + [aux_sym_def_type_statement_token8] = ACTIONS(9118), + [aux_sym_def_type_statement_token9] = ACTIONS(9118), + [aux_sym_def_type_statement_token10] = ACTIONS(9118), + [aux_sym_def_type_statement_token11] = ACTIONS(9118), + [aux_sym_def_type_statement_token12] = ACTIONS(9118), + [aux_sym_def_type_statement_token13] = ACTIONS(9118), + [aux_sym_def_type_statement_token14] = ACTIONS(9118), + [aux_sym_call_statement_token1] = ACTIONS(9118), + [sym__ambiguous_call_statement] = ACTIONS(9118), + [aux_sym_addressof_expression_token1] = ACTIONS(9118), + [aux_sym_type_of_expression_token1] = ACTIONS(9118), + [aux_sym_unary_expression_token1] = ACTIONS(9118), + [sym_string_literal] = ACTIONS(9120), + [sym_number_literal] = ACTIONS(9120), + [aux_sym_boolean_literal_token1] = ACTIONS(9118), + [aux_sym_boolean_literal_token2] = ACTIONS(9118), + [sym_nothing_literal] = ACTIONS(9118), + [sym_null_literal] = ACTIONS(9118), + [sym_empty_literal] = ACTIONS(9118), + [sym_date_literal] = ACTIONS(9120), + [anon_sym_POUND] = ACTIONS(9118), + }, + [STATE(7138)] = { + [sym_identifier] = ACTIONS(9435), + [sym_newline] = ACTIONS(9437), + [anon_sym_COLON] = ACTIONS(9437), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9435), + [aux_sym_frm_property_statement_token1] = ACTIONS(9435), + [anon_sym_DOT] = ACTIONS(9435), + [anon_sym_BANG] = ACTIONS(9437), + [aux_sym__attribute_identifier_token1] = ACTIONS(9435), + [aux_sym_option_statement_token3] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9435), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9435), + [aux_sym_preprocessor_const_token1] = ACTIONS(9435), + [sym_static_modifier] = ACTIONS(9435), + [sym__dim_keyword] = ACTIONS(9435), + [sym__redim_keyword] = ACTIONS(9435), + [aux_sym_get_accessor_token1] = ACTIONS(9435), + [aux_sym_set_accessor_token1] = ACTIONS(9435), + [aux_sym_const_declaration_token1] = ACTIONS(9435), + [anon_sym_LPAREN] = ACTIONS(9437), + [aux_sym_as_type_clause_token2] = ACTIONS(9435), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9435), + [aux_sym_visibility_token1] = ACTIONS(9435), + [aux_sym_visibility_token2] = ACTIONS(9435), + [aux_sym_elseif_fragment_token1] = ACTIONS(9435), + [aux_sym_else_fragment_token1] = ACTIONS(9435), + [aux_sym_select_statement_token1] = ACTIONS(9435), + [aux_sym__for_header_token1] = ACTIONS(9435), + [aux_sym_do_statement_token1] = ACTIONS(9435), + [aux_sym_do_condition_token1] = ACTIONS(9435), + [aux_sym_with_statement_token1] = ACTIONS(9435), + [aux_sym_exit_statement_token1] = ACTIONS(9435), + [sym_end_statement] = ACTIONS(9437), + [aux_sym_on_goto_statement_token1] = ACTIONS(9435), + [aux_sym_on_goto_statement_token2] = ACTIONS(9435), + [aux_sym_on_error_statement_token2] = ACTIONS(9435), + [sym__ambiguous_redim_statement] = ACTIONS(9437), + [aux_sym_erase_statement_token1] = ACTIONS(9435), + [aux_sym_open_statement_token1] = ACTIONS(9435), + [aux_sym_file_mode_token2] = ACTIONS(9435), + [aux_sym_file_access_token2] = ACTIONS(9435), + [aux_sym_file_lock_token2] = ACTIONS(9435), + [aux_sym_print_statement_token1] = ACTIONS(9435), + [anon_sym_PLUS] = ACTIONS(9437), + [anon_sym_DASH] = ACTIONS(9435), + [anon_sym_QMARK] = ACTIONS(9437), + [aux_sym_close_statement_token1] = ACTIONS(9435), + [aux_sym_put_statement_token1] = ACTIONS(9435), + [aux_sym_unlock_statement_token1] = ACTIONS(9435), + [aux_sym_seek_statement_token1] = ACTIONS(9435), + [sym_reset_statement] = ACTIONS(9435), + [aux_sym_raise_event_statement_token1] = ACTIONS(9435), + [sym_stop_statement] = ACTIONS(9435), + [sym_beep_statement] = ACTIONS(9435), + [aux_sym_unload_statement_token1] = ACTIONS(9435), + [aux_sym_def_type_statement_token1] = ACTIONS(9435), + [aux_sym_def_type_statement_token2] = ACTIONS(9435), + [aux_sym_def_type_statement_token3] = ACTIONS(9435), + [aux_sym_def_type_statement_token4] = ACTIONS(9435), + [aux_sym_def_type_statement_token5] = ACTIONS(9435), + [aux_sym_def_type_statement_token6] = ACTIONS(9435), + [aux_sym_def_type_statement_token7] = ACTIONS(9435), + [aux_sym_def_type_statement_token8] = ACTIONS(9435), + [aux_sym_def_type_statement_token9] = ACTIONS(9435), + [aux_sym_def_type_statement_token10] = ACTIONS(9435), + [aux_sym_def_type_statement_token11] = ACTIONS(9435), + [aux_sym_def_type_statement_token12] = ACTIONS(9435), + [aux_sym_def_type_statement_token13] = ACTIONS(9435), + [aux_sym_def_type_statement_token14] = ACTIONS(9435), + [aux_sym_call_statement_token1] = ACTIONS(9435), + [sym__ambiguous_call_statement] = ACTIONS(9435), + [aux_sym_addressof_expression_token1] = ACTIONS(9435), + [aux_sym_type_of_expression_token1] = ACTIONS(9435), + [aux_sym_unary_expression_token1] = ACTIONS(9435), + [sym_string_literal] = ACTIONS(9437), + [sym_number_literal] = ACTIONS(9437), + [aux_sym_boolean_literal_token1] = ACTIONS(9435), + [aux_sym_boolean_literal_token2] = ACTIONS(9435), + [sym_nothing_literal] = ACTIONS(9435), + [sym_null_literal] = ACTIONS(9435), + [sym_empty_literal] = ACTIONS(9435), + [sym_date_literal] = ACTIONS(9437), + [anon_sym_POUND] = ACTIONS(9435), + }, + [STATE(7139)] = { + [sym_identifier] = ACTIONS(8907), + [sym_newline] = ACTIONS(8909), + [anon_sym_COLON] = ACTIONS(8909), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8907), + [aux_sym_frm_property_statement_token1] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8907), + [anon_sym_BANG] = ACTIONS(8909), + [aux_sym__attribute_identifier_token1] = ACTIONS(8907), + [aux_sym_option_statement_token3] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8907), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8907), + [aux_sym_preprocessor_const_token1] = ACTIONS(8907), + [sym_static_modifier] = ACTIONS(8907), + [sym__dim_keyword] = ACTIONS(8907), + [sym__redim_keyword] = ACTIONS(8907), + [aux_sym_get_accessor_token1] = ACTIONS(8907), + [aux_sym_set_accessor_token1] = ACTIONS(8907), + [aux_sym_const_declaration_token1] = ACTIONS(8907), + [anon_sym_LPAREN] = ACTIONS(8909), + [aux_sym_as_type_clause_token2] = ACTIONS(8907), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8907), + [aux_sym_visibility_token1] = ACTIONS(8907), + [aux_sym_visibility_token2] = ACTIONS(8907), + [aux_sym_elseif_fragment_token1] = ACTIONS(8907), + [aux_sym_else_fragment_token1] = ACTIONS(8907), + [aux_sym_select_statement_token1] = ACTIONS(8907), + [aux_sym__for_header_token1] = ACTIONS(8907), + [aux_sym_do_statement_token1] = ACTIONS(8907), + [aux_sym_do_condition_token1] = ACTIONS(8907), + [aux_sym_with_statement_token1] = ACTIONS(8907), + [aux_sym_exit_statement_token1] = ACTIONS(8907), + [sym_end_statement] = ACTIONS(8909), + [aux_sym_on_goto_statement_token1] = ACTIONS(8907), + [aux_sym_on_goto_statement_token2] = ACTIONS(8907), + [aux_sym_on_error_statement_token2] = ACTIONS(8907), + [sym__ambiguous_redim_statement] = ACTIONS(8909), + [aux_sym_erase_statement_token1] = ACTIONS(8907), + [aux_sym_open_statement_token1] = ACTIONS(8907), + [aux_sym_file_mode_token2] = ACTIONS(8907), + [aux_sym_file_access_token2] = ACTIONS(8907), + [aux_sym_file_lock_token2] = ACTIONS(8907), + [aux_sym_print_statement_token1] = ACTIONS(8907), + [anon_sym_PLUS] = ACTIONS(8909), + [anon_sym_DASH] = ACTIONS(8907), + [anon_sym_QMARK] = ACTIONS(8909), + [aux_sym_close_statement_token1] = ACTIONS(8907), + [aux_sym_put_statement_token1] = ACTIONS(8907), + [aux_sym_unlock_statement_token1] = ACTIONS(8907), + [aux_sym_seek_statement_token1] = ACTIONS(8907), + [sym_reset_statement] = ACTIONS(8907), + [aux_sym_raise_event_statement_token1] = ACTIONS(8907), + [sym_stop_statement] = ACTIONS(8907), + [sym_beep_statement] = ACTIONS(8907), + [aux_sym_unload_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token1] = ACTIONS(8907), + [aux_sym_def_type_statement_token2] = ACTIONS(8907), + [aux_sym_def_type_statement_token3] = ACTIONS(8907), + [aux_sym_def_type_statement_token4] = ACTIONS(8907), + [aux_sym_def_type_statement_token5] = ACTIONS(8907), + [aux_sym_def_type_statement_token6] = ACTIONS(8907), + [aux_sym_def_type_statement_token7] = ACTIONS(8907), + [aux_sym_def_type_statement_token8] = ACTIONS(8907), + [aux_sym_def_type_statement_token9] = ACTIONS(8907), + [aux_sym_def_type_statement_token10] = ACTIONS(8907), + [aux_sym_def_type_statement_token11] = ACTIONS(8907), + [aux_sym_def_type_statement_token12] = ACTIONS(8907), + [aux_sym_def_type_statement_token13] = ACTIONS(8907), + [aux_sym_def_type_statement_token14] = ACTIONS(8907), + [aux_sym_call_statement_token1] = ACTIONS(8907), + [sym__ambiguous_call_statement] = ACTIONS(8907), + [aux_sym_addressof_expression_token1] = ACTIONS(8907), + [aux_sym_type_of_expression_token1] = ACTIONS(8907), + [aux_sym_unary_expression_token1] = ACTIONS(8907), + [sym_string_literal] = ACTIONS(8909), + [sym_number_literal] = ACTIONS(8909), + [aux_sym_boolean_literal_token1] = ACTIONS(8907), + [aux_sym_boolean_literal_token2] = ACTIONS(8907), + [sym_nothing_literal] = ACTIONS(8907), + [sym_null_literal] = ACTIONS(8907), + [sym_empty_literal] = ACTIONS(8907), + [sym_date_literal] = ACTIONS(8909), + [anon_sym_POUND] = ACTIONS(8907), + }, + [STATE(7140)] = { + [sym_identifier] = ACTIONS(8931), + [sym_newline] = ACTIONS(8933), + [anon_sym_COLON] = ACTIONS(8933), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8931), + [aux_sym_frm_property_statement_token1] = ACTIONS(8931), + [anon_sym_DOT] = ACTIONS(8931), + [anon_sym_BANG] = ACTIONS(8933), + [aux_sym__attribute_identifier_token1] = ACTIONS(8931), + [aux_sym_option_statement_token3] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8931), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8931), + [aux_sym_preprocessor_const_token1] = ACTIONS(8931), + [sym_static_modifier] = ACTIONS(8931), + [sym__dim_keyword] = ACTIONS(8931), + [sym__redim_keyword] = ACTIONS(8931), + [aux_sym_get_accessor_token1] = ACTIONS(8931), + [aux_sym_set_accessor_token1] = ACTIONS(8931), + [aux_sym_const_declaration_token1] = ACTIONS(8931), + [anon_sym_LPAREN] = ACTIONS(8933), + [aux_sym_as_type_clause_token2] = ACTIONS(8931), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8931), + [aux_sym_visibility_token1] = ACTIONS(8931), + [aux_sym_visibility_token2] = ACTIONS(8931), + [aux_sym_elseif_fragment_token1] = ACTIONS(8931), + [aux_sym_else_fragment_token1] = ACTIONS(8931), + [aux_sym_select_statement_token1] = ACTIONS(8931), + [aux_sym__for_header_token1] = ACTIONS(8931), + [aux_sym_do_statement_token1] = ACTIONS(8931), + [aux_sym_do_condition_token1] = ACTIONS(8931), + [aux_sym_with_statement_token1] = ACTIONS(8931), + [aux_sym_exit_statement_token1] = ACTIONS(8931), + [sym_end_statement] = ACTIONS(8933), + [aux_sym_on_goto_statement_token1] = ACTIONS(8931), + [aux_sym_on_goto_statement_token2] = ACTIONS(8931), + [aux_sym_on_error_statement_token2] = ACTIONS(8931), + [sym__ambiguous_redim_statement] = ACTIONS(8933), + [aux_sym_erase_statement_token1] = ACTIONS(8931), + [aux_sym_open_statement_token1] = ACTIONS(8931), + [aux_sym_file_mode_token2] = ACTIONS(8931), + [aux_sym_file_access_token2] = ACTIONS(8931), + [aux_sym_file_lock_token2] = ACTIONS(8931), + [aux_sym_print_statement_token1] = ACTIONS(8931), + [anon_sym_PLUS] = ACTIONS(8933), + [anon_sym_DASH] = ACTIONS(8931), + [anon_sym_QMARK] = ACTIONS(8933), + [aux_sym_close_statement_token1] = ACTIONS(8931), + [aux_sym_put_statement_token1] = ACTIONS(8931), + [aux_sym_unlock_statement_token1] = ACTIONS(8931), + [aux_sym_seek_statement_token1] = ACTIONS(8931), + [sym_reset_statement] = ACTIONS(8931), + [aux_sym_raise_event_statement_token1] = ACTIONS(8931), + [sym_stop_statement] = ACTIONS(8931), + [sym_beep_statement] = ACTIONS(8931), + [aux_sym_unload_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token1] = ACTIONS(8931), + [aux_sym_def_type_statement_token2] = ACTIONS(8931), + [aux_sym_def_type_statement_token3] = ACTIONS(8931), + [aux_sym_def_type_statement_token4] = ACTIONS(8931), + [aux_sym_def_type_statement_token5] = ACTIONS(8931), + [aux_sym_def_type_statement_token6] = ACTIONS(8931), + [aux_sym_def_type_statement_token7] = ACTIONS(8931), + [aux_sym_def_type_statement_token8] = ACTIONS(8931), + [aux_sym_def_type_statement_token9] = ACTIONS(8931), + [aux_sym_def_type_statement_token10] = ACTIONS(8931), + [aux_sym_def_type_statement_token11] = ACTIONS(8931), + [aux_sym_def_type_statement_token12] = ACTIONS(8931), + [aux_sym_def_type_statement_token13] = ACTIONS(8931), + [aux_sym_def_type_statement_token14] = ACTIONS(8931), + [aux_sym_call_statement_token1] = ACTIONS(8931), + [sym__ambiguous_call_statement] = ACTIONS(8931), + [aux_sym_addressof_expression_token1] = ACTIONS(8931), + [aux_sym_type_of_expression_token1] = ACTIONS(8931), + [aux_sym_unary_expression_token1] = ACTIONS(8931), + [sym_string_literal] = ACTIONS(8933), + [sym_number_literal] = ACTIONS(8933), + [aux_sym_boolean_literal_token1] = ACTIONS(8931), + [aux_sym_boolean_literal_token2] = ACTIONS(8931), + [sym_nothing_literal] = ACTIONS(8931), + [sym_null_literal] = ACTIONS(8931), + [sym_empty_literal] = ACTIONS(8931), + [sym_date_literal] = ACTIONS(8933), + [anon_sym_POUND] = ACTIONS(8931), + }, + [STATE(7141)] = { + [sym_identifier] = ACTIONS(9564), + [sym_newline] = ACTIONS(9566), + [anon_sym_COLON] = ACTIONS(9566), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9564), + [aux_sym_frm_property_statement_token1] = ACTIONS(9564), + [anon_sym_DOT] = ACTIONS(9564), + [anon_sym_BANG] = ACTIONS(9566), + [aux_sym__attribute_identifier_token1] = ACTIONS(9564), + [aux_sym_option_statement_token3] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9564), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9564), + [aux_sym_preprocessor_const_token1] = ACTIONS(9564), + [sym_static_modifier] = ACTIONS(9564), + [sym__dim_keyword] = ACTIONS(9564), + [sym__redim_keyword] = ACTIONS(9564), + [aux_sym_get_accessor_token1] = ACTIONS(9564), + [aux_sym_set_accessor_token1] = ACTIONS(9564), + [aux_sym_const_declaration_token1] = ACTIONS(9564), + [anon_sym_LPAREN] = ACTIONS(9566), + [aux_sym_as_type_clause_token2] = ACTIONS(9564), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9564), + [aux_sym_visibility_token1] = ACTIONS(9564), + [aux_sym_visibility_token2] = ACTIONS(9564), + [aux_sym_elseif_fragment_token1] = ACTIONS(9564), + [aux_sym_else_fragment_token1] = ACTIONS(9564), + [aux_sym_select_statement_token1] = ACTIONS(9564), + [aux_sym__for_header_token1] = ACTIONS(9564), + [aux_sym_do_statement_token1] = ACTIONS(9564), + [aux_sym_do_condition_token1] = ACTIONS(9564), + [aux_sym_with_statement_token1] = ACTIONS(9564), + [aux_sym_exit_statement_token1] = ACTIONS(9564), + [sym_end_statement] = ACTIONS(9566), + [aux_sym_on_goto_statement_token1] = ACTIONS(9564), + [aux_sym_on_goto_statement_token2] = ACTIONS(9564), + [aux_sym_on_error_statement_token2] = ACTIONS(9564), + [sym__ambiguous_redim_statement] = ACTIONS(9566), + [aux_sym_erase_statement_token1] = ACTIONS(9564), + [aux_sym_open_statement_token1] = ACTIONS(9564), + [aux_sym_file_mode_token2] = ACTIONS(9564), + [aux_sym_file_access_token2] = ACTIONS(9564), + [aux_sym_file_lock_token2] = ACTIONS(9564), + [aux_sym_print_statement_token1] = ACTIONS(9564), + [anon_sym_PLUS] = ACTIONS(9566), + [anon_sym_DASH] = ACTIONS(9564), + [anon_sym_QMARK] = ACTIONS(9566), + [aux_sym_close_statement_token1] = ACTIONS(9564), + [aux_sym_put_statement_token1] = ACTIONS(9564), + [aux_sym_unlock_statement_token1] = ACTIONS(9564), + [aux_sym_seek_statement_token1] = ACTIONS(9564), + [sym_reset_statement] = ACTIONS(9564), + [aux_sym_raise_event_statement_token1] = ACTIONS(9564), + [sym_stop_statement] = ACTIONS(9564), + [sym_beep_statement] = ACTIONS(9564), + [aux_sym_unload_statement_token1] = ACTIONS(9564), + [aux_sym_def_type_statement_token1] = ACTIONS(9564), + [aux_sym_def_type_statement_token2] = ACTIONS(9564), + [aux_sym_def_type_statement_token3] = ACTIONS(9564), + [aux_sym_def_type_statement_token4] = ACTIONS(9564), + [aux_sym_def_type_statement_token5] = ACTIONS(9564), + [aux_sym_def_type_statement_token6] = ACTIONS(9564), + [aux_sym_def_type_statement_token7] = ACTIONS(9564), + [aux_sym_def_type_statement_token8] = ACTIONS(9564), + [aux_sym_def_type_statement_token9] = ACTIONS(9564), + [aux_sym_def_type_statement_token10] = ACTIONS(9564), + [aux_sym_def_type_statement_token11] = ACTIONS(9564), + [aux_sym_def_type_statement_token12] = ACTIONS(9564), + [aux_sym_def_type_statement_token13] = ACTIONS(9564), + [aux_sym_def_type_statement_token14] = ACTIONS(9564), + [aux_sym_call_statement_token1] = ACTIONS(9564), + [sym__ambiguous_call_statement] = ACTIONS(9564), + [aux_sym_addressof_expression_token1] = ACTIONS(9564), + [aux_sym_type_of_expression_token1] = ACTIONS(9564), + [aux_sym_unary_expression_token1] = ACTIONS(9564), + [sym_string_literal] = ACTIONS(9566), + [sym_number_literal] = ACTIONS(9566), + [aux_sym_boolean_literal_token1] = ACTIONS(9564), + [aux_sym_boolean_literal_token2] = ACTIONS(9564), + [sym_nothing_literal] = ACTIONS(9564), + [sym_null_literal] = ACTIONS(9564), + [sym_empty_literal] = ACTIONS(9564), + [sym_date_literal] = ACTIONS(9566), + [anon_sym_POUND] = ACTIONS(9564), + }, + [STATE(7142)] = { + [sym_identifier] = ACTIONS(9276), + [sym_newline] = ACTIONS(9278), + [anon_sym_COLON] = ACTIONS(9278), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9276), + [aux_sym_frm_property_statement_token1] = ACTIONS(9276), + [anon_sym_DOT] = ACTIONS(9276), + [anon_sym_BANG] = ACTIONS(9278), + [aux_sym__attribute_identifier_token1] = ACTIONS(9276), + [aux_sym_option_statement_token3] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9276), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9276), + [aux_sym_preprocessor_const_token1] = ACTIONS(9276), + [sym_static_modifier] = ACTIONS(9276), + [sym__dim_keyword] = ACTIONS(9276), + [sym__redim_keyword] = ACTIONS(9276), + [aux_sym_get_accessor_token1] = ACTIONS(9276), + [aux_sym_set_accessor_token1] = ACTIONS(9276), + [aux_sym_const_declaration_token1] = ACTIONS(9276), + [anon_sym_LPAREN] = ACTIONS(9278), + [aux_sym_as_type_clause_token2] = ACTIONS(9276), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9276), + [aux_sym_visibility_token1] = ACTIONS(9276), + [aux_sym_visibility_token2] = ACTIONS(9276), + [aux_sym_elseif_fragment_token1] = ACTIONS(9276), + [aux_sym_else_fragment_token1] = ACTIONS(9276), + [aux_sym_select_statement_token1] = ACTIONS(9276), + [aux_sym__for_header_token1] = ACTIONS(9276), + [aux_sym_do_statement_token1] = ACTIONS(9276), + [aux_sym_do_condition_token1] = ACTIONS(9276), + [aux_sym_with_statement_token1] = ACTIONS(9276), + [aux_sym_exit_statement_token1] = ACTIONS(9276), + [sym_end_statement] = ACTIONS(9278), + [aux_sym_on_goto_statement_token1] = ACTIONS(9276), + [aux_sym_on_goto_statement_token2] = ACTIONS(9276), + [aux_sym_on_error_statement_token2] = ACTIONS(9276), + [sym__ambiguous_redim_statement] = ACTIONS(9278), + [aux_sym_erase_statement_token1] = ACTIONS(9276), + [aux_sym_open_statement_token1] = ACTIONS(9276), + [aux_sym_file_mode_token2] = ACTIONS(9276), + [aux_sym_file_access_token2] = ACTIONS(9276), + [aux_sym_file_lock_token2] = ACTIONS(9276), + [aux_sym_print_statement_token1] = ACTIONS(9276), + [anon_sym_PLUS] = ACTIONS(9278), + [anon_sym_DASH] = ACTIONS(9276), + [anon_sym_QMARK] = ACTIONS(9278), + [aux_sym_close_statement_token1] = ACTIONS(9276), + [aux_sym_put_statement_token1] = ACTIONS(9276), + [aux_sym_unlock_statement_token1] = ACTIONS(9276), + [aux_sym_seek_statement_token1] = ACTIONS(9276), + [sym_reset_statement] = ACTIONS(9276), + [aux_sym_raise_event_statement_token1] = ACTIONS(9276), + [sym_stop_statement] = ACTIONS(9276), + [sym_beep_statement] = ACTIONS(9276), + [aux_sym_unload_statement_token1] = ACTIONS(9276), + [aux_sym_def_type_statement_token1] = ACTIONS(9276), + [aux_sym_def_type_statement_token2] = ACTIONS(9276), + [aux_sym_def_type_statement_token3] = ACTIONS(9276), + [aux_sym_def_type_statement_token4] = ACTIONS(9276), + [aux_sym_def_type_statement_token5] = ACTIONS(9276), + [aux_sym_def_type_statement_token6] = ACTIONS(9276), + [aux_sym_def_type_statement_token7] = ACTIONS(9276), + [aux_sym_def_type_statement_token8] = ACTIONS(9276), + [aux_sym_def_type_statement_token9] = ACTIONS(9276), + [aux_sym_def_type_statement_token10] = ACTIONS(9276), + [aux_sym_def_type_statement_token11] = ACTIONS(9276), + [aux_sym_def_type_statement_token12] = ACTIONS(9276), + [aux_sym_def_type_statement_token13] = ACTIONS(9276), + [aux_sym_def_type_statement_token14] = ACTIONS(9276), + [aux_sym_call_statement_token1] = ACTIONS(9276), + [sym__ambiguous_call_statement] = ACTIONS(9276), + [aux_sym_addressof_expression_token1] = ACTIONS(9276), + [aux_sym_type_of_expression_token1] = ACTIONS(9276), + [aux_sym_unary_expression_token1] = ACTIONS(9276), + [sym_string_literal] = ACTIONS(9278), + [sym_number_literal] = ACTIONS(9278), + [aux_sym_boolean_literal_token1] = ACTIONS(9276), + [aux_sym_boolean_literal_token2] = ACTIONS(9276), + [sym_nothing_literal] = ACTIONS(9276), + [sym_null_literal] = ACTIONS(9276), + [sym_empty_literal] = ACTIONS(9276), + [sym_date_literal] = ACTIONS(9278), + [anon_sym_POUND] = ACTIONS(9276), + }, + [STATE(7143)] = { + [sym_identifier] = ACTIONS(9568), + [sym_newline] = ACTIONS(9570), + [anon_sym_COLON] = ACTIONS(9570), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9568), + [aux_sym_frm_property_statement_token1] = ACTIONS(9568), + [anon_sym_DOT] = ACTIONS(9568), + [anon_sym_BANG] = ACTIONS(9570), + [aux_sym__attribute_identifier_token1] = ACTIONS(9568), + [aux_sym_option_statement_token3] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9568), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9568), + [aux_sym_preprocessor_const_token1] = ACTIONS(9568), + [sym_static_modifier] = ACTIONS(9568), + [sym__dim_keyword] = ACTIONS(9568), + [sym__redim_keyword] = ACTIONS(9568), + [aux_sym_get_accessor_token1] = ACTIONS(9568), + [aux_sym_set_accessor_token1] = ACTIONS(9568), + [aux_sym_const_declaration_token1] = ACTIONS(9568), + [anon_sym_LPAREN] = ACTIONS(9570), + [aux_sym_as_type_clause_token2] = ACTIONS(9568), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9568), + [aux_sym_visibility_token1] = ACTIONS(9568), + [aux_sym_visibility_token2] = ACTIONS(9568), + [aux_sym_elseif_fragment_token1] = ACTIONS(9568), + [aux_sym_else_fragment_token1] = ACTIONS(9568), + [aux_sym_select_statement_token1] = ACTIONS(9568), + [aux_sym__for_header_token1] = ACTIONS(9568), + [aux_sym_do_statement_token1] = ACTIONS(9568), + [aux_sym_do_condition_token1] = ACTIONS(9568), + [aux_sym_with_statement_token1] = ACTIONS(9568), + [aux_sym_exit_statement_token1] = ACTIONS(9568), + [sym_end_statement] = ACTIONS(9570), + [aux_sym_on_goto_statement_token1] = ACTIONS(9568), + [aux_sym_on_goto_statement_token2] = ACTIONS(9568), + [aux_sym_on_error_statement_token2] = ACTIONS(9568), + [sym__ambiguous_redim_statement] = ACTIONS(9570), + [aux_sym_erase_statement_token1] = ACTIONS(9568), + [aux_sym_open_statement_token1] = ACTIONS(9568), + [aux_sym_file_mode_token2] = ACTIONS(9568), + [aux_sym_file_access_token2] = ACTIONS(9568), + [aux_sym_file_lock_token2] = ACTIONS(9568), + [aux_sym_print_statement_token1] = ACTIONS(9568), + [anon_sym_PLUS] = ACTIONS(9570), + [anon_sym_DASH] = ACTIONS(9568), + [anon_sym_QMARK] = ACTIONS(9570), + [aux_sym_close_statement_token1] = ACTIONS(9568), + [aux_sym_put_statement_token1] = ACTIONS(9568), + [aux_sym_unlock_statement_token1] = ACTIONS(9568), + [aux_sym_seek_statement_token1] = ACTIONS(9568), + [sym_reset_statement] = ACTIONS(9568), + [aux_sym_raise_event_statement_token1] = ACTIONS(9568), + [sym_stop_statement] = ACTIONS(9568), + [sym_beep_statement] = ACTIONS(9568), + [aux_sym_unload_statement_token1] = ACTIONS(9568), + [aux_sym_def_type_statement_token1] = ACTIONS(9568), + [aux_sym_def_type_statement_token2] = ACTIONS(9568), + [aux_sym_def_type_statement_token3] = ACTIONS(9568), + [aux_sym_def_type_statement_token4] = ACTIONS(9568), + [aux_sym_def_type_statement_token5] = ACTIONS(9568), + [aux_sym_def_type_statement_token6] = ACTIONS(9568), + [aux_sym_def_type_statement_token7] = ACTIONS(9568), + [aux_sym_def_type_statement_token8] = ACTIONS(9568), + [aux_sym_def_type_statement_token9] = ACTIONS(9568), + [aux_sym_def_type_statement_token10] = ACTIONS(9568), + [aux_sym_def_type_statement_token11] = ACTIONS(9568), + [aux_sym_def_type_statement_token12] = ACTIONS(9568), + [aux_sym_def_type_statement_token13] = ACTIONS(9568), + [aux_sym_def_type_statement_token14] = ACTIONS(9568), + [aux_sym_call_statement_token1] = ACTIONS(9568), + [sym__ambiguous_call_statement] = ACTIONS(9568), + [aux_sym_addressof_expression_token1] = ACTIONS(9568), + [aux_sym_type_of_expression_token1] = ACTIONS(9568), + [aux_sym_unary_expression_token1] = ACTIONS(9568), + [sym_string_literal] = ACTIONS(9570), + [sym_number_literal] = ACTIONS(9570), + [aux_sym_boolean_literal_token1] = ACTIONS(9568), + [aux_sym_boolean_literal_token2] = ACTIONS(9568), + [sym_nothing_literal] = ACTIONS(9568), + [sym_null_literal] = ACTIONS(9568), + [sym_empty_literal] = ACTIONS(9568), + [sym_date_literal] = ACTIONS(9570), + [anon_sym_POUND] = ACTIONS(9568), + }, + [STATE(7144)] = { + [sym_identifier] = ACTIONS(9172), + [sym_newline] = ACTIONS(9174), + [anon_sym_COLON] = ACTIONS(9174), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9172), + [aux_sym_frm_property_statement_token1] = ACTIONS(9172), + [anon_sym_DOT] = ACTIONS(9172), + [anon_sym_BANG] = ACTIONS(9174), + [aux_sym__attribute_identifier_token1] = ACTIONS(9172), + [aux_sym_option_statement_token3] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9172), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9172), + [aux_sym_preprocessor_const_token1] = ACTIONS(9172), + [sym_static_modifier] = ACTIONS(9172), + [sym__dim_keyword] = ACTIONS(9172), + [sym__redim_keyword] = ACTIONS(9172), + [aux_sym_get_accessor_token1] = ACTIONS(9172), + [aux_sym_set_accessor_token1] = ACTIONS(9172), + [aux_sym_const_declaration_token1] = ACTIONS(9172), + [anon_sym_LPAREN] = ACTIONS(9174), + [aux_sym_as_type_clause_token2] = ACTIONS(9172), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9172), + [aux_sym_visibility_token1] = ACTIONS(9172), + [aux_sym_visibility_token2] = ACTIONS(9172), + [aux_sym_elseif_fragment_token1] = ACTIONS(9172), + [aux_sym_else_fragment_token1] = ACTIONS(9172), + [aux_sym_select_statement_token1] = ACTIONS(9172), + [aux_sym__for_header_token1] = ACTIONS(9172), + [aux_sym_do_statement_token1] = ACTIONS(9172), + [aux_sym_do_condition_token1] = ACTIONS(9172), + [aux_sym_with_statement_token1] = ACTIONS(9172), + [aux_sym_exit_statement_token1] = ACTIONS(9172), + [sym_end_statement] = ACTIONS(9174), + [aux_sym_on_goto_statement_token1] = ACTIONS(9172), + [aux_sym_on_goto_statement_token2] = ACTIONS(9172), + [aux_sym_on_error_statement_token2] = ACTIONS(9172), + [sym__ambiguous_redim_statement] = ACTIONS(9174), + [aux_sym_erase_statement_token1] = ACTIONS(9172), + [aux_sym_open_statement_token1] = ACTIONS(9172), + [aux_sym_file_mode_token2] = ACTIONS(9172), + [aux_sym_file_access_token2] = ACTIONS(9172), + [aux_sym_file_lock_token2] = ACTIONS(9172), + [aux_sym_print_statement_token1] = ACTIONS(9172), + [anon_sym_PLUS] = ACTIONS(9174), + [anon_sym_DASH] = ACTIONS(9172), + [anon_sym_QMARK] = ACTIONS(9174), + [aux_sym_close_statement_token1] = ACTIONS(9172), + [aux_sym_put_statement_token1] = ACTIONS(9172), + [aux_sym_unlock_statement_token1] = ACTIONS(9172), + [aux_sym_seek_statement_token1] = ACTIONS(9172), + [sym_reset_statement] = ACTIONS(9172), + [aux_sym_raise_event_statement_token1] = ACTIONS(9172), + [sym_stop_statement] = ACTIONS(9172), + [sym_beep_statement] = ACTIONS(9172), + [aux_sym_unload_statement_token1] = ACTIONS(9172), + [aux_sym_def_type_statement_token1] = ACTIONS(9172), + [aux_sym_def_type_statement_token2] = ACTIONS(9172), + [aux_sym_def_type_statement_token3] = ACTIONS(9172), + [aux_sym_def_type_statement_token4] = ACTIONS(9172), + [aux_sym_def_type_statement_token5] = ACTIONS(9172), + [aux_sym_def_type_statement_token6] = ACTIONS(9172), + [aux_sym_def_type_statement_token7] = ACTIONS(9172), + [aux_sym_def_type_statement_token8] = ACTIONS(9172), + [aux_sym_def_type_statement_token9] = ACTIONS(9172), + [aux_sym_def_type_statement_token10] = ACTIONS(9172), + [aux_sym_def_type_statement_token11] = ACTIONS(9172), + [aux_sym_def_type_statement_token12] = ACTIONS(9172), + [aux_sym_def_type_statement_token13] = ACTIONS(9172), + [aux_sym_def_type_statement_token14] = ACTIONS(9172), + [aux_sym_call_statement_token1] = ACTIONS(9172), + [sym__ambiguous_call_statement] = ACTIONS(9172), + [aux_sym_addressof_expression_token1] = ACTIONS(9172), + [aux_sym_type_of_expression_token1] = ACTIONS(9172), + [aux_sym_unary_expression_token1] = ACTIONS(9172), + [sym_string_literal] = ACTIONS(9174), + [sym_number_literal] = ACTIONS(9174), + [aux_sym_boolean_literal_token1] = ACTIONS(9172), + [aux_sym_boolean_literal_token2] = ACTIONS(9172), + [sym_nothing_literal] = ACTIONS(9172), + [sym_null_literal] = ACTIONS(9172), + [sym_empty_literal] = ACTIONS(9172), + [sym_date_literal] = ACTIONS(9174), + [anon_sym_POUND] = ACTIONS(9172), + }, + [STATE(7145)] = { + [sym_identifier] = ACTIONS(9522), + [sym_newline] = ACTIONS(9524), + [anon_sym_COLON] = ACTIONS(9524), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9522), + [aux_sym_frm_property_statement_token1] = ACTIONS(9522), + [anon_sym_DOT] = ACTIONS(9522), + [anon_sym_BANG] = ACTIONS(9524), + [aux_sym__attribute_identifier_token1] = ACTIONS(9522), + [aux_sym_option_statement_token3] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9522), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9522), + [aux_sym_preprocessor_const_token1] = ACTIONS(9522), + [sym_static_modifier] = ACTIONS(9522), + [sym__dim_keyword] = ACTIONS(9522), + [sym__redim_keyword] = ACTIONS(9522), + [aux_sym_get_accessor_token1] = ACTIONS(9522), + [aux_sym_set_accessor_token1] = ACTIONS(9522), + [aux_sym_const_declaration_token1] = ACTIONS(9522), + [anon_sym_LPAREN] = ACTIONS(9524), + [aux_sym_as_type_clause_token2] = ACTIONS(9522), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9522), + [aux_sym_visibility_token1] = ACTIONS(9522), + [aux_sym_visibility_token2] = ACTIONS(9522), + [aux_sym_elseif_fragment_token1] = ACTIONS(9522), + [aux_sym_else_fragment_token1] = ACTIONS(9522), + [aux_sym_select_statement_token1] = ACTIONS(9522), + [aux_sym__for_header_token1] = ACTIONS(9522), + [aux_sym_do_statement_token1] = ACTIONS(9522), + [aux_sym_do_condition_token1] = ACTIONS(9522), + [aux_sym_with_statement_token1] = ACTIONS(9522), + [aux_sym_exit_statement_token1] = ACTIONS(9522), + [sym_end_statement] = ACTIONS(9524), + [aux_sym_on_goto_statement_token1] = ACTIONS(9522), + [aux_sym_on_goto_statement_token2] = ACTIONS(9522), + [aux_sym_on_error_statement_token2] = ACTIONS(9522), + [sym__ambiguous_redim_statement] = ACTIONS(9524), + [aux_sym_erase_statement_token1] = ACTIONS(9522), + [aux_sym_open_statement_token1] = ACTIONS(9522), + [aux_sym_file_mode_token2] = ACTIONS(9522), + [aux_sym_file_access_token2] = ACTIONS(9522), + [aux_sym_file_lock_token2] = ACTIONS(9522), + [aux_sym_print_statement_token1] = ACTIONS(9522), + [anon_sym_PLUS] = ACTIONS(9524), + [anon_sym_DASH] = ACTIONS(9522), + [anon_sym_QMARK] = ACTIONS(9524), + [aux_sym_close_statement_token1] = ACTIONS(9522), + [aux_sym_put_statement_token1] = ACTIONS(9522), + [aux_sym_unlock_statement_token1] = ACTIONS(9522), + [aux_sym_seek_statement_token1] = ACTIONS(9522), + [sym_reset_statement] = ACTIONS(9522), + [aux_sym_raise_event_statement_token1] = ACTIONS(9522), + [sym_stop_statement] = ACTIONS(9522), + [sym_beep_statement] = ACTIONS(9522), + [aux_sym_unload_statement_token1] = ACTIONS(9522), + [aux_sym_def_type_statement_token1] = ACTIONS(9522), + [aux_sym_def_type_statement_token2] = ACTIONS(9522), + [aux_sym_def_type_statement_token3] = ACTIONS(9522), + [aux_sym_def_type_statement_token4] = ACTIONS(9522), + [aux_sym_def_type_statement_token5] = ACTIONS(9522), + [aux_sym_def_type_statement_token6] = ACTIONS(9522), + [aux_sym_def_type_statement_token7] = ACTIONS(9522), + [aux_sym_def_type_statement_token8] = ACTIONS(9522), + [aux_sym_def_type_statement_token9] = ACTIONS(9522), + [aux_sym_def_type_statement_token10] = ACTIONS(9522), + [aux_sym_def_type_statement_token11] = ACTIONS(9522), + [aux_sym_def_type_statement_token12] = ACTIONS(9522), + [aux_sym_def_type_statement_token13] = ACTIONS(9522), + [aux_sym_def_type_statement_token14] = ACTIONS(9522), + [aux_sym_call_statement_token1] = ACTIONS(9522), + [sym__ambiguous_call_statement] = ACTIONS(9522), + [aux_sym_addressof_expression_token1] = ACTIONS(9522), + [aux_sym_type_of_expression_token1] = ACTIONS(9522), + [aux_sym_unary_expression_token1] = ACTIONS(9522), + [sym_string_literal] = ACTIONS(9524), + [sym_number_literal] = ACTIONS(9524), + [aux_sym_boolean_literal_token1] = ACTIONS(9522), + [aux_sym_boolean_literal_token2] = ACTIONS(9522), + [sym_nothing_literal] = ACTIONS(9522), + [sym_null_literal] = ACTIONS(9522), + [sym_empty_literal] = ACTIONS(9522), + [sym_date_literal] = ACTIONS(9524), + [anon_sym_POUND] = ACTIONS(9522), + }, + [STATE(7146)] = { + [sym_identifier] = ACTIONS(9575), + [sym_newline] = ACTIONS(9577), + [anon_sym_COLON] = ACTIONS(9577), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9575), + [aux_sym_frm_property_statement_token1] = ACTIONS(9575), + [anon_sym_DOT] = ACTIONS(9575), + [anon_sym_BANG] = ACTIONS(9577), + [aux_sym__attribute_identifier_token1] = ACTIONS(9575), + [aux_sym_option_statement_token3] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9575), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9575), + [aux_sym_preprocessor_const_token1] = ACTIONS(9575), + [sym_static_modifier] = ACTIONS(9575), + [sym__dim_keyword] = ACTIONS(9575), + [sym__redim_keyword] = ACTIONS(9575), + [aux_sym_get_accessor_token1] = ACTIONS(9575), + [aux_sym_set_accessor_token1] = ACTIONS(9575), + [aux_sym_const_declaration_token1] = ACTIONS(9575), + [anon_sym_LPAREN] = ACTIONS(9577), + [aux_sym_as_type_clause_token2] = ACTIONS(9575), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9575), + [aux_sym_visibility_token1] = ACTIONS(9575), + [aux_sym_visibility_token2] = ACTIONS(9575), + [aux_sym_elseif_fragment_token1] = ACTIONS(9575), + [aux_sym_else_fragment_token1] = ACTIONS(9575), + [aux_sym_select_statement_token1] = ACTIONS(9575), + [aux_sym__for_header_token1] = ACTIONS(9575), + [aux_sym_do_statement_token1] = ACTIONS(9575), + [aux_sym_do_condition_token1] = ACTIONS(9575), + [aux_sym_with_statement_token1] = ACTIONS(9575), + [aux_sym_exit_statement_token1] = ACTIONS(9575), + [sym_end_statement] = ACTIONS(9577), + [aux_sym_on_goto_statement_token1] = ACTIONS(9575), + [aux_sym_on_goto_statement_token2] = ACTIONS(9575), + [aux_sym_on_error_statement_token2] = ACTIONS(9575), + [sym__ambiguous_redim_statement] = ACTIONS(9577), + [aux_sym_erase_statement_token1] = ACTIONS(9575), + [aux_sym_open_statement_token1] = ACTIONS(9575), + [aux_sym_file_mode_token2] = ACTIONS(9575), + [aux_sym_file_access_token2] = ACTIONS(9575), + [aux_sym_file_lock_token2] = ACTIONS(9575), + [aux_sym_print_statement_token1] = ACTIONS(9575), + [anon_sym_PLUS] = ACTIONS(9577), + [anon_sym_DASH] = ACTIONS(9575), + [anon_sym_QMARK] = ACTIONS(9577), + [aux_sym_close_statement_token1] = ACTIONS(9575), + [aux_sym_put_statement_token1] = ACTIONS(9575), + [aux_sym_unlock_statement_token1] = ACTIONS(9575), + [aux_sym_seek_statement_token1] = ACTIONS(9575), + [sym_reset_statement] = ACTIONS(9575), + [aux_sym_raise_event_statement_token1] = ACTIONS(9575), + [sym_stop_statement] = ACTIONS(9575), + [sym_beep_statement] = ACTIONS(9575), + [aux_sym_unload_statement_token1] = ACTIONS(9575), + [aux_sym_def_type_statement_token1] = ACTIONS(9575), + [aux_sym_def_type_statement_token2] = ACTIONS(9575), + [aux_sym_def_type_statement_token3] = ACTIONS(9575), + [aux_sym_def_type_statement_token4] = ACTIONS(9575), + [aux_sym_def_type_statement_token5] = ACTIONS(9575), + [aux_sym_def_type_statement_token6] = ACTIONS(9575), + [aux_sym_def_type_statement_token7] = ACTIONS(9575), + [aux_sym_def_type_statement_token8] = ACTIONS(9575), + [aux_sym_def_type_statement_token9] = ACTIONS(9575), + [aux_sym_def_type_statement_token10] = ACTIONS(9575), + [aux_sym_def_type_statement_token11] = ACTIONS(9575), + [aux_sym_def_type_statement_token12] = ACTIONS(9575), + [aux_sym_def_type_statement_token13] = ACTIONS(9575), + [aux_sym_def_type_statement_token14] = ACTIONS(9575), + [aux_sym_call_statement_token1] = ACTIONS(9575), + [sym__ambiguous_call_statement] = ACTIONS(9575), + [aux_sym_addressof_expression_token1] = ACTIONS(9575), + [aux_sym_type_of_expression_token1] = ACTIONS(9575), + [aux_sym_unary_expression_token1] = ACTIONS(9575), + [sym_string_literal] = ACTIONS(9577), + [sym_number_literal] = ACTIONS(9577), + [aux_sym_boolean_literal_token1] = ACTIONS(9575), + [aux_sym_boolean_literal_token2] = ACTIONS(9575), + [sym_nothing_literal] = ACTIONS(9575), + [sym_null_literal] = ACTIONS(9575), + [sym_empty_literal] = ACTIONS(9575), + [sym_date_literal] = ACTIONS(9577), + [anon_sym_POUND] = ACTIONS(9575), + }, + [STATE(7147)] = { + [sym_identifier] = ACTIONS(9582), + [sym_newline] = ACTIONS(9584), + [anon_sym_COLON] = ACTIONS(9584), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9582), + [aux_sym_frm_property_statement_token1] = ACTIONS(9582), + [anon_sym_DOT] = ACTIONS(9582), + [anon_sym_BANG] = ACTIONS(9584), + [aux_sym__attribute_identifier_token1] = ACTIONS(9582), + [aux_sym_option_statement_token3] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9582), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9582), + [aux_sym_preprocessor_const_token1] = ACTIONS(9582), + [sym_static_modifier] = ACTIONS(9582), + [sym__dim_keyword] = ACTIONS(9582), + [sym__redim_keyword] = ACTIONS(9582), + [aux_sym_get_accessor_token1] = ACTIONS(9582), + [aux_sym_set_accessor_token1] = ACTIONS(9582), + [aux_sym_const_declaration_token1] = ACTIONS(9582), + [anon_sym_LPAREN] = ACTIONS(9584), + [aux_sym_as_type_clause_token2] = ACTIONS(9582), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9582), + [aux_sym_visibility_token1] = ACTIONS(9582), + [aux_sym_visibility_token2] = ACTIONS(9582), + [aux_sym_elseif_fragment_token1] = ACTIONS(9582), + [aux_sym_else_fragment_token1] = ACTIONS(9582), + [aux_sym_select_statement_token1] = ACTIONS(9582), + [aux_sym__for_header_token1] = ACTIONS(9582), + [aux_sym_do_statement_token1] = ACTIONS(9582), + [aux_sym_do_condition_token1] = ACTIONS(9582), + [aux_sym_with_statement_token1] = ACTIONS(9582), + [aux_sym_exit_statement_token1] = ACTIONS(9582), + [sym_end_statement] = ACTIONS(9584), + [aux_sym_on_goto_statement_token1] = ACTIONS(9582), + [aux_sym_on_goto_statement_token2] = ACTIONS(9582), + [aux_sym_on_error_statement_token2] = ACTIONS(9582), + [sym__ambiguous_redim_statement] = ACTIONS(9584), + [aux_sym_erase_statement_token1] = ACTIONS(9582), + [aux_sym_open_statement_token1] = ACTIONS(9582), + [aux_sym_file_mode_token2] = ACTIONS(9582), + [aux_sym_file_access_token2] = ACTIONS(9582), + [aux_sym_file_lock_token2] = ACTIONS(9582), + [aux_sym_print_statement_token1] = ACTIONS(9582), + [anon_sym_PLUS] = ACTIONS(9584), + [anon_sym_DASH] = ACTIONS(9582), + [anon_sym_QMARK] = ACTIONS(9584), + [aux_sym_close_statement_token1] = ACTIONS(9582), + [aux_sym_put_statement_token1] = ACTIONS(9582), + [aux_sym_unlock_statement_token1] = ACTIONS(9582), + [aux_sym_seek_statement_token1] = ACTIONS(9582), + [sym_reset_statement] = ACTIONS(9582), + [aux_sym_raise_event_statement_token1] = ACTIONS(9582), + [sym_stop_statement] = ACTIONS(9582), + [sym_beep_statement] = ACTIONS(9582), + [aux_sym_unload_statement_token1] = ACTIONS(9582), + [aux_sym_def_type_statement_token1] = ACTIONS(9582), + [aux_sym_def_type_statement_token2] = ACTIONS(9582), + [aux_sym_def_type_statement_token3] = ACTIONS(9582), + [aux_sym_def_type_statement_token4] = ACTIONS(9582), + [aux_sym_def_type_statement_token5] = ACTIONS(9582), + [aux_sym_def_type_statement_token6] = ACTIONS(9582), + [aux_sym_def_type_statement_token7] = ACTIONS(9582), + [aux_sym_def_type_statement_token8] = ACTIONS(9582), + [aux_sym_def_type_statement_token9] = ACTIONS(9582), + [aux_sym_def_type_statement_token10] = ACTIONS(9582), + [aux_sym_def_type_statement_token11] = ACTIONS(9582), + [aux_sym_def_type_statement_token12] = ACTIONS(9582), + [aux_sym_def_type_statement_token13] = ACTIONS(9582), + [aux_sym_def_type_statement_token14] = ACTIONS(9582), + [aux_sym_call_statement_token1] = ACTIONS(9582), + [sym__ambiguous_call_statement] = ACTIONS(9582), + [aux_sym_addressof_expression_token1] = ACTIONS(9582), + [aux_sym_type_of_expression_token1] = ACTIONS(9582), + [aux_sym_unary_expression_token1] = ACTIONS(9582), + [sym_string_literal] = ACTIONS(9584), + [sym_number_literal] = ACTIONS(9584), + [aux_sym_boolean_literal_token1] = ACTIONS(9582), + [aux_sym_boolean_literal_token2] = ACTIONS(9582), + [sym_nothing_literal] = ACTIONS(9582), + [sym_null_literal] = ACTIONS(9582), + [sym_empty_literal] = ACTIONS(9582), + [sym_date_literal] = ACTIONS(9584), + [anon_sym_POUND] = ACTIONS(9582), + }, + [STATE(7148)] = { + [sym_identifier] = ACTIONS(9586), + [sym_newline] = ACTIONS(9588), + [anon_sym_COLON] = ACTIONS(9588), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9586), + [aux_sym_frm_property_statement_token1] = ACTIONS(9586), + [anon_sym_DOT] = ACTIONS(9586), + [anon_sym_BANG] = ACTIONS(9588), + [aux_sym__attribute_identifier_token1] = ACTIONS(9586), + [aux_sym_option_statement_token3] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9586), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9586), + [aux_sym_preprocessor_const_token1] = ACTIONS(9586), + [sym_static_modifier] = ACTIONS(9586), + [sym__dim_keyword] = ACTIONS(9586), + [sym__redim_keyword] = ACTIONS(9586), + [aux_sym_get_accessor_token1] = ACTIONS(9586), + [aux_sym_set_accessor_token1] = ACTIONS(9586), + [aux_sym_const_declaration_token1] = ACTIONS(9586), + [anon_sym_LPAREN] = ACTIONS(9588), + [aux_sym_as_type_clause_token2] = ACTIONS(9586), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9586), + [aux_sym_visibility_token1] = ACTIONS(9586), + [aux_sym_visibility_token2] = ACTIONS(9586), + [aux_sym_elseif_fragment_token1] = ACTIONS(9586), + [aux_sym_else_fragment_token1] = ACTIONS(9586), + [aux_sym_select_statement_token1] = ACTIONS(9586), + [aux_sym__for_header_token1] = ACTIONS(9586), + [aux_sym_do_statement_token1] = ACTIONS(9586), + [aux_sym_do_condition_token1] = ACTIONS(9586), + [aux_sym_with_statement_token1] = ACTIONS(9586), + [aux_sym_exit_statement_token1] = ACTIONS(9586), + [sym_end_statement] = ACTIONS(9588), + [aux_sym_on_goto_statement_token1] = ACTIONS(9586), + [aux_sym_on_goto_statement_token2] = ACTIONS(9586), + [aux_sym_on_error_statement_token2] = ACTIONS(9586), + [sym__ambiguous_redim_statement] = ACTIONS(9588), + [aux_sym_erase_statement_token1] = ACTIONS(9586), + [aux_sym_open_statement_token1] = ACTIONS(9586), + [aux_sym_file_mode_token2] = ACTIONS(9586), + [aux_sym_file_access_token2] = ACTIONS(9586), + [aux_sym_file_lock_token2] = ACTIONS(9586), + [aux_sym_print_statement_token1] = ACTIONS(9586), + [anon_sym_PLUS] = ACTIONS(9588), + [anon_sym_DASH] = ACTIONS(9586), + [anon_sym_QMARK] = ACTIONS(9588), + [aux_sym_close_statement_token1] = ACTIONS(9586), + [aux_sym_put_statement_token1] = ACTIONS(9586), + [aux_sym_unlock_statement_token1] = ACTIONS(9586), + [aux_sym_seek_statement_token1] = ACTIONS(9586), + [sym_reset_statement] = ACTIONS(9586), + [aux_sym_raise_event_statement_token1] = ACTIONS(9586), + [sym_stop_statement] = ACTIONS(9586), + [sym_beep_statement] = ACTIONS(9586), + [aux_sym_unload_statement_token1] = ACTIONS(9586), + [aux_sym_def_type_statement_token1] = ACTIONS(9586), + [aux_sym_def_type_statement_token2] = ACTIONS(9586), + [aux_sym_def_type_statement_token3] = ACTIONS(9586), + [aux_sym_def_type_statement_token4] = ACTIONS(9586), + [aux_sym_def_type_statement_token5] = ACTIONS(9586), + [aux_sym_def_type_statement_token6] = ACTIONS(9586), + [aux_sym_def_type_statement_token7] = ACTIONS(9586), + [aux_sym_def_type_statement_token8] = ACTIONS(9586), + [aux_sym_def_type_statement_token9] = ACTIONS(9586), + [aux_sym_def_type_statement_token10] = ACTIONS(9586), + [aux_sym_def_type_statement_token11] = ACTIONS(9586), + [aux_sym_def_type_statement_token12] = ACTIONS(9586), + [aux_sym_def_type_statement_token13] = ACTIONS(9586), + [aux_sym_def_type_statement_token14] = ACTIONS(9586), + [aux_sym_call_statement_token1] = ACTIONS(9586), + [sym__ambiguous_call_statement] = ACTIONS(9586), + [aux_sym_addressof_expression_token1] = ACTIONS(9586), + [aux_sym_type_of_expression_token1] = ACTIONS(9586), + [aux_sym_unary_expression_token1] = ACTIONS(9586), + [sym_string_literal] = ACTIONS(9588), + [sym_number_literal] = ACTIONS(9588), + [aux_sym_boolean_literal_token1] = ACTIONS(9586), + [aux_sym_boolean_literal_token2] = ACTIONS(9586), + [sym_nothing_literal] = ACTIONS(9586), + [sym_null_literal] = ACTIONS(9586), + [sym_empty_literal] = ACTIONS(9586), + [sym_date_literal] = ACTIONS(9588), + [anon_sym_POUND] = ACTIONS(9586), + }, + [STATE(7149)] = { + [sym_identifier] = ACTIONS(9188), + [sym_newline] = ACTIONS(9190), + [anon_sym_COLON] = ACTIONS(9190), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9188), + [aux_sym_frm_property_statement_token1] = ACTIONS(9188), + [anon_sym_DOT] = ACTIONS(9188), + [anon_sym_BANG] = ACTIONS(9190), + [aux_sym__attribute_identifier_token1] = ACTIONS(9188), + [aux_sym_option_statement_token3] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9188), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9188), + [aux_sym_preprocessor_const_token1] = ACTIONS(9188), + [sym_static_modifier] = ACTIONS(9188), + [sym__dim_keyword] = ACTIONS(9188), + [sym__redim_keyword] = ACTIONS(9188), + [aux_sym_get_accessor_token1] = ACTIONS(9188), + [aux_sym_set_accessor_token1] = ACTIONS(9188), + [aux_sym_const_declaration_token1] = ACTIONS(9188), + [anon_sym_LPAREN] = ACTIONS(9190), + [aux_sym_as_type_clause_token2] = ACTIONS(9188), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9188), + [aux_sym_visibility_token1] = ACTIONS(9188), + [aux_sym_visibility_token2] = ACTIONS(9188), + [aux_sym_elseif_fragment_token1] = ACTIONS(9188), + [aux_sym_else_fragment_token1] = ACTIONS(9188), + [aux_sym_select_statement_token1] = ACTIONS(9188), + [aux_sym__for_header_token1] = ACTIONS(9188), + [aux_sym_do_statement_token1] = ACTIONS(9188), + [aux_sym_do_condition_token1] = ACTIONS(9188), + [aux_sym_with_statement_token1] = ACTIONS(9188), + [aux_sym_exit_statement_token1] = ACTIONS(9188), + [sym_end_statement] = ACTIONS(9190), + [aux_sym_on_goto_statement_token1] = ACTIONS(9188), + [aux_sym_on_goto_statement_token2] = ACTIONS(9188), + [aux_sym_on_error_statement_token2] = ACTIONS(9188), + [sym__ambiguous_redim_statement] = ACTIONS(9190), + [aux_sym_erase_statement_token1] = ACTIONS(9188), + [aux_sym_open_statement_token1] = ACTIONS(9188), + [aux_sym_file_mode_token2] = ACTIONS(9188), + [aux_sym_file_access_token2] = ACTIONS(9188), + [aux_sym_file_lock_token2] = ACTIONS(9188), + [aux_sym_print_statement_token1] = ACTIONS(9188), + [anon_sym_PLUS] = ACTIONS(9190), + [anon_sym_DASH] = ACTIONS(9188), + [anon_sym_QMARK] = ACTIONS(9190), + [aux_sym_close_statement_token1] = ACTIONS(9188), + [aux_sym_put_statement_token1] = ACTIONS(9188), + [aux_sym_unlock_statement_token1] = ACTIONS(9188), + [aux_sym_seek_statement_token1] = ACTIONS(9188), + [sym_reset_statement] = ACTIONS(9188), + [aux_sym_raise_event_statement_token1] = ACTIONS(9188), + [sym_stop_statement] = ACTIONS(9188), + [sym_beep_statement] = ACTIONS(9188), + [aux_sym_unload_statement_token1] = ACTIONS(9188), + [aux_sym_def_type_statement_token1] = ACTIONS(9188), + [aux_sym_def_type_statement_token2] = ACTIONS(9188), + [aux_sym_def_type_statement_token3] = ACTIONS(9188), + [aux_sym_def_type_statement_token4] = ACTIONS(9188), + [aux_sym_def_type_statement_token5] = ACTIONS(9188), + [aux_sym_def_type_statement_token6] = ACTIONS(9188), + [aux_sym_def_type_statement_token7] = ACTIONS(9188), + [aux_sym_def_type_statement_token8] = ACTIONS(9188), + [aux_sym_def_type_statement_token9] = ACTIONS(9188), + [aux_sym_def_type_statement_token10] = ACTIONS(9188), + [aux_sym_def_type_statement_token11] = ACTIONS(9188), + [aux_sym_def_type_statement_token12] = ACTIONS(9188), + [aux_sym_def_type_statement_token13] = ACTIONS(9188), + [aux_sym_def_type_statement_token14] = ACTIONS(9188), + [aux_sym_call_statement_token1] = ACTIONS(9188), + [sym__ambiguous_call_statement] = ACTIONS(9188), + [aux_sym_addressof_expression_token1] = ACTIONS(9188), + [aux_sym_type_of_expression_token1] = ACTIONS(9188), + [aux_sym_unary_expression_token1] = ACTIONS(9188), + [sym_string_literal] = ACTIONS(9190), + [sym_number_literal] = ACTIONS(9190), + [aux_sym_boolean_literal_token1] = ACTIONS(9188), + [aux_sym_boolean_literal_token2] = ACTIONS(9188), + [sym_nothing_literal] = ACTIONS(9188), + [sym_null_literal] = ACTIONS(9188), + [sym_empty_literal] = ACTIONS(9188), + [sym_date_literal] = ACTIONS(9190), + [anon_sym_POUND] = ACTIONS(9188), + }, + [STATE(7150)] = { + [sym_identifier] = ACTIONS(9590), + [sym_newline] = ACTIONS(9592), + [anon_sym_COLON] = ACTIONS(9592), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9590), + [aux_sym_frm_property_statement_token1] = ACTIONS(9590), + [anon_sym_DOT] = ACTIONS(9590), + [anon_sym_BANG] = ACTIONS(9592), + [aux_sym__attribute_identifier_token1] = ACTIONS(9590), + [aux_sym_option_statement_token3] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9590), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9590), + [aux_sym_preprocessor_const_token1] = ACTIONS(9590), + [sym_static_modifier] = ACTIONS(9590), + [sym__dim_keyword] = ACTIONS(9590), + [sym__redim_keyword] = ACTIONS(9590), + [aux_sym_get_accessor_token1] = ACTIONS(9590), + [aux_sym_set_accessor_token1] = ACTIONS(9590), + [aux_sym_const_declaration_token1] = ACTIONS(9590), + [anon_sym_LPAREN] = ACTIONS(9592), + [aux_sym_as_type_clause_token2] = ACTIONS(9590), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9590), + [aux_sym_visibility_token1] = ACTIONS(9590), + [aux_sym_visibility_token2] = ACTIONS(9590), + [aux_sym_elseif_fragment_token1] = ACTIONS(9590), + [aux_sym_else_fragment_token1] = ACTIONS(9590), + [aux_sym_select_statement_token1] = ACTIONS(9590), + [aux_sym__for_header_token1] = ACTIONS(9590), + [aux_sym_do_statement_token1] = ACTIONS(9590), + [aux_sym_do_condition_token1] = ACTIONS(9590), + [aux_sym_with_statement_token1] = ACTIONS(9590), + [aux_sym_exit_statement_token1] = ACTIONS(9590), + [sym_end_statement] = ACTIONS(9592), + [aux_sym_on_goto_statement_token1] = ACTIONS(9590), + [aux_sym_on_goto_statement_token2] = ACTIONS(9590), + [aux_sym_on_error_statement_token2] = ACTIONS(9590), + [sym__ambiguous_redim_statement] = ACTIONS(9592), + [aux_sym_erase_statement_token1] = ACTIONS(9590), + [aux_sym_open_statement_token1] = ACTIONS(9590), + [aux_sym_file_mode_token2] = ACTIONS(9590), + [aux_sym_file_access_token2] = ACTIONS(9590), + [aux_sym_file_lock_token2] = ACTIONS(9590), + [aux_sym_print_statement_token1] = ACTIONS(9590), + [anon_sym_PLUS] = ACTIONS(9592), + [anon_sym_DASH] = ACTIONS(9590), + [anon_sym_QMARK] = ACTIONS(9592), + [aux_sym_close_statement_token1] = ACTIONS(9590), + [aux_sym_put_statement_token1] = ACTIONS(9590), + [aux_sym_unlock_statement_token1] = ACTIONS(9590), + [aux_sym_seek_statement_token1] = ACTIONS(9590), + [sym_reset_statement] = ACTIONS(9590), + [aux_sym_raise_event_statement_token1] = ACTIONS(9590), + [sym_stop_statement] = ACTIONS(9590), + [sym_beep_statement] = ACTIONS(9590), + [aux_sym_unload_statement_token1] = ACTIONS(9590), + [aux_sym_def_type_statement_token1] = ACTIONS(9590), + [aux_sym_def_type_statement_token2] = ACTIONS(9590), + [aux_sym_def_type_statement_token3] = ACTIONS(9590), + [aux_sym_def_type_statement_token4] = ACTIONS(9590), + [aux_sym_def_type_statement_token5] = ACTIONS(9590), + [aux_sym_def_type_statement_token6] = ACTIONS(9590), + [aux_sym_def_type_statement_token7] = ACTIONS(9590), + [aux_sym_def_type_statement_token8] = ACTIONS(9590), + [aux_sym_def_type_statement_token9] = ACTIONS(9590), + [aux_sym_def_type_statement_token10] = ACTIONS(9590), + [aux_sym_def_type_statement_token11] = ACTIONS(9590), + [aux_sym_def_type_statement_token12] = ACTIONS(9590), + [aux_sym_def_type_statement_token13] = ACTIONS(9590), + [aux_sym_def_type_statement_token14] = ACTIONS(9590), + [aux_sym_call_statement_token1] = ACTIONS(9590), + [sym__ambiguous_call_statement] = ACTIONS(9590), + [aux_sym_addressof_expression_token1] = ACTIONS(9590), + [aux_sym_type_of_expression_token1] = ACTIONS(9590), + [aux_sym_unary_expression_token1] = ACTIONS(9590), + [sym_string_literal] = ACTIONS(9592), + [sym_number_literal] = ACTIONS(9592), + [aux_sym_boolean_literal_token1] = ACTIONS(9590), + [aux_sym_boolean_literal_token2] = ACTIONS(9590), + [sym_nothing_literal] = ACTIONS(9590), + [sym_null_literal] = ACTIONS(9590), + [sym_empty_literal] = ACTIONS(9590), + [sym_date_literal] = ACTIONS(9592), + [anon_sym_POUND] = ACTIONS(9590), + }, + [STATE(7151)] = { + [sym_identifier] = ACTIONS(9594), + [sym_newline] = ACTIONS(9596), + [anon_sym_COLON] = ACTIONS(9596), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9594), + [aux_sym_frm_property_statement_token1] = ACTIONS(9594), + [anon_sym_DOT] = ACTIONS(9594), + [anon_sym_BANG] = ACTIONS(9596), + [aux_sym__attribute_identifier_token1] = ACTIONS(9594), + [aux_sym_option_statement_token3] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9594), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9594), + [aux_sym_preprocessor_const_token1] = ACTIONS(9594), + [sym_static_modifier] = ACTIONS(9594), + [sym__dim_keyword] = ACTIONS(9594), + [sym__redim_keyword] = ACTIONS(9594), + [aux_sym_get_accessor_token1] = ACTIONS(9594), + [aux_sym_set_accessor_token1] = ACTIONS(9594), + [aux_sym_const_declaration_token1] = ACTIONS(9594), + [anon_sym_LPAREN] = ACTIONS(9596), + [aux_sym_as_type_clause_token2] = ACTIONS(9594), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9594), + [aux_sym_visibility_token1] = ACTIONS(9594), + [aux_sym_visibility_token2] = ACTIONS(9594), + [aux_sym_elseif_fragment_token1] = ACTIONS(9594), + [aux_sym_else_fragment_token1] = ACTIONS(9594), + [aux_sym_select_statement_token1] = ACTIONS(9594), + [aux_sym__for_header_token1] = ACTIONS(9594), + [aux_sym_do_statement_token1] = ACTIONS(9594), + [aux_sym_do_condition_token1] = ACTIONS(9594), + [aux_sym_with_statement_token1] = ACTIONS(9594), + [aux_sym_exit_statement_token1] = ACTIONS(9594), + [sym_end_statement] = ACTIONS(9596), + [aux_sym_on_goto_statement_token1] = ACTIONS(9594), + [aux_sym_on_goto_statement_token2] = ACTIONS(9594), + [aux_sym_on_error_statement_token2] = ACTIONS(9594), + [sym__ambiguous_redim_statement] = ACTIONS(9596), + [aux_sym_erase_statement_token1] = ACTIONS(9594), + [aux_sym_open_statement_token1] = ACTIONS(9594), + [aux_sym_file_mode_token2] = ACTIONS(9594), + [aux_sym_file_access_token2] = ACTIONS(9594), + [aux_sym_file_lock_token2] = ACTIONS(9594), + [aux_sym_print_statement_token1] = ACTIONS(9594), + [anon_sym_PLUS] = ACTIONS(9596), + [anon_sym_DASH] = ACTIONS(9594), + [anon_sym_QMARK] = ACTIONS(9596), + [aux_sym_close_statement_token1] = ACTIONS(9594), + [aux_sym_put_statement_token1] = ACTIONS(9594), + [aux_sym_unlock_statement_token1] = ACTIONS(9594), + [aux_sym_seek_statement_token1] = ACTIONS(9594), + [sym_reset_statement] = ACTIONS(9594), + [aux_sym_raise_event_statement_token1] = ACTIONS(9594), + [sym_stop_statement] = ACTIONS(9594), + [sym_beep_statement] = ACTIONS(9594), + [aux_sym_unload_statement_token1] = ACTIONS(9594), + [aux_sym_def_type_statement_token1] = ACTIONS(9594), + [aux_sym_def_type_statement_token2] = ACTIONS(9594), + [aux_sym_def_type_statement_token3] = ACTIONS(9594), + [aux_sym_def_type_statement_token4] = ACTIONS(9594), + [aux_sym_def_type_statement_token5] = ACTIONS(9594), + [aux_sym_def_type_statement_token6] = ACTIONS(9594), + [aux_sym_def_type_statement_token7] = ACTIONS(9594), + [aux_sym_def_type_statement_token8] = ACTIONS(9594), + [aux_sym_def_type_statement_token9] = ACTIONS(9594), + [aux_sym_def_type_statement_token10] = ACTIONS(9594), + [aux_sym_def_type_statement_token11] = ACTIONS(9594), + [aux_sym_def_type_statement_token12] = ACTIONS(9594), + [aux_sym_def_type_statement_token13] = ACTIONS(9594), + [aux_sym_def_type_statement_token14] = ACTIONS(9594), + [aux_sym_call_statement_token1] = ACTIONS(9594), + [sym__ambiguous_call_statement] = ACTIONS(9594), + [aux_sym_addressof_expression_token1] = ACTIONS(9594), + [aux_sym_type_of_expression_token1] = ACTIONS(9594), + [aux_sym_unary_expression_token1] = ACTIONS(9594), + [sym_string_literal] = ACTIONS(9596), + [sym_number_literal] = ACTIONS(9596), + [aux_sym_boolean_literal_token1] = ACTIONS(9594), + [aux_sym_boolean_literal_token2] = ACTIONS(9594), + [sym_nothing_literal] = ACTIONS(9594), + [sym_null_literal] = ACTIONS(9594), + [sym_empty_literal] = ACTIONS(9594), + [sym_date_literal] = ACTIONS(9596), + [anon_sym_POUND] = ACTIONS(9594), + }, + [STATE(7152)] = { + [sym_identifier] = ACTIONS(9598), + [sym_newline] = ACTIONS(9600), + [anon_sym_COLON] = ACTIONS(9600), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9598), + [aux_sym_frm_property_statement_token1] = ACTIONS(9598), + [anon_sym_DOT] = ACTIONS(9598), + [anon_sym_BANG] = ACTIONS(9600), + [aux_sym__attribute_identifier_token1] = ACTIONS(9598), + [aux_sym_option_statement_token3] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9598), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9598), + [aux_sym_preprocessor_const_token1] = ACTIONS(9598), + [sym_static_modifier] = ACTIONS(9598), + [sym__dim_keyword] = ACTIONS(9598), + [sym__redim_keyword] = ACTIONS(9598), + [aux_sym_get_accessor_token1] = ACTIONS(9598), + [aux_sym_set_accessor_token1] = ACTIONS(9598), + [aux_sym_const_declaration_token1] = ACTIONS(9598), + [anon_sym_LPAREN] = ACTIONS(9600), + [aux_sym_as_type_clause_token2] = ACTIONS(9598), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9598), + [aux_sym_visibility_token1] = ACTIONS(9598), + [aux_sym_visibility_token2] = ACTIONS(9598), + [aux_sym_elseif_fragment_token1] = ACTIONS(9598), + [aux_sym_else_fragment_token1] = ACTIONS(9598), + [aux_sym_select_statement_token1] = ACTIONS(9598), + [aux_sym__for_header_token1] = ACTIONS(9598), + [aux_sym_do_statement_token1] = ACTIONS(9598), + [aux_sym_do_condition_token1] = ACTIONS(9598), + [aux_sym_with_statement_token1] = ACTIONS(9598), + [aux_sym_exit_statement_token1] = ACTIONS(9598), + [sym_end_statement] = ACTIONS(9600), + [aux_sym_on_goto_statement_token1] = ACTIONS(9598), + [aux_sym_on_goto_statement_token2] = ACTIONS(9598), + [aux_sym_on_error_statement_token2] = ACTIONS(9598), + [sym__ambiguous_redim_statement] = ACTIONS(9600), + [aux_sym_erase_statement_token1] = ACTIONS(9598), + [aux_sym_open_statement_token1] = ACTIONS(9598), + [aux_sym_file_mode_token2] = ACTIONS(9598), + [aux_sym_file_access_token2] = ACTIONS(9598), + [aux_sym_file_lock_token2] = ACTIONS(9598), + [aux_sym_print_statement_token1] = ACTIONS(9598), + [anon_sym_PLUS] = ACTIONS(9600), + [anon_sym_DASH] = ACTIONS(9598), + [anon_sym_QMARK] = ACTIONS(9600), + [aux_sym_close_statement_token1] = ACTIONS(9598), + [aux_sym_put_statement_token1] = ACTIONS(9598), + [aux_sym_unlock_statement_token1] = ACTIONS(9598), + [aux_sym_seek_statement_token1] = ACTIONS(9598), + [sym_reset_statement] = ACTIONS(9598), + [aux_sym_raise_event_statement_token1] = ACTIONS(9598), + [sym_stop_statement] = ACTIONS(9598), + [sym_beep_statement] = ACTIONS(9598), + [aux_sym_unload_statement_token1] = ACTIONS(9598), + [aux_sym_def_type_statement_token1] = ACTIONS(9598), + [aux_sym_def_type_statement_token2] = ACTIONS(9598), + [aux_sym_def_type_statement_token3] = ACTIONS(9598), + [aux_sym_def_type_statement_token4] = ACTIONS(9598), + [aux_sym_def_type_statement_token5] = ACTIONS(9598), + [aux_sym_def_type_statement_token6] = ACTIONS(9598), + [aux_sym_def_type_statement_token7] = ACTIONS(9598), + [aux_sym_def_type_statement_token8] = ACTIONS(9598), + [aux_sym_def_type_statement_token9] = ACTIONS(9598), + [aux_sym_def_type_statement_token10] = ACTIONS(9598), + [aux_sym_def_type_statement_token11] = ACTIONS(9598), + [aux_sym_def_type_statement_token12] = ACTIONS(9598), + [aux_sym_def_type_statement_token13] = ACTIONS(9598), + [aux_sym_def_type_statement_token14] = ACTIONS(9598), + [aux_sym_call_statement_token1] = ACTIONS(9598), + [sym__ambiguous_call_statement] = ACTIONS(9598), + [aux_sym_addressof_expression_token1] = ACTIONS(9598), + [aux_sym_type_of_expression_token1] = ACTIONS(9598), + [aux_sym_unary_expression_token1] = ACTIONS(9598), + [sym_string_literal] = ACTIONS(9600), + [sym_number_literal] = ACTIONS(9600), + [aux_sym_boolean_literal_token1] = ACTIONS(9598), + [aux_sym_boolean_literal_token2] = ACTIONS(9598), + [sym_nothing_literal] = ACTIONS(9598), + [sym_null_literal] = ACTIONS(9598), + [sym_empty_literal] = ACTIONS(9598), + [sym_date_literal] = ACTIONS(9600), + [anon_sym_POUND] = ACTIONS(9598), + }, + [STATE(7153)] = { + [sym_identifier] = ACTIONS(9439), + [sym_newline] = ACTIONS(9441), + [anon_sym_COLON] = ACTIONS(9441), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9439), + [aux_sym_frm_property_statement_token1] = ACTIONS(9439), + [anon_sym_DOT] = ACTIONS(9439), + [anon_sym_BANG] = ACTIONS(9441), + [aux_sym__attribute_identifier_token1] = ACTIONS(9439), + [aux_sym_option_statement_token3] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9439), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9439), + [aux_sym_preprocessor_const_token1] = ACTIONS(9439), + [sym_static_modifier] = ACTIONS(9439), + [sym__dim_keyword] = ACTIONS(9439), + [sym__redim_keyword] = ACTIONS(9439), + [aux_sym_get_accessor_token1] = ACTIONS(9439), + [aux_sym_set_accessor_token1] = ACTIONS(9439), + [aux_sym_const_declaration_token1] = ACTIONS(9439), + [anon_sym_LPAREN] = ACTIONS(9441), + [aux_sym_as_type_clause_token2] = ACTIONS(9439), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9439), + [aux_sym_visibility_token1] = ACTIONS(9439), + [aux_sym_visibility_token2] = ACTIONS(9439), + [aux_sym_elseif_fragment_token1] = ACTIONS(9439), + [aux_sym_else_fragment_token1] = ACTIONS(9439), + [aux_sym_select_statement_token1] = ACTIONS(9439), + [aux_sym__for_header_token1] = ACTIONS(9439), + [aux_sym_do_statement_token1] = ACTIONS(9439), + [aux_sym_do_condition_token1] = ACTIONS(9439), + [aux_sym_with_statement_token1] = ACTIONS(9439), + [aux_sym_exit_statement_token1] = ACTIONS(9439), + [sym_end_statement] = ACTIONS(9441), + [aux_sym_on_goto_statement_token1] = ACTIONS(9439), + [aux_sym_on_goto_statement_token2] = ACTIONS(9439), + [aux_sym_on_error_statement_token2] = ACTIONS(9439), + [sym__ambiguous_redim_statement] = ACTIONS(9441), + [aux_sym_erase_statement_token1] = ACTIONS(9439), + [aux_sym_open_statement_token1] = ACTIONS(9439), + [aux_sym_file_mode_token2] = ACTIONS(9439), + [aux_sym_file_access_token2] = ACTIONS(9439), + [aux_sym_file_lock_token2] = ACTIONS(9439), + [aux_sym_print_statement_token1] = ACTIONS(9439), + [anon_sym_PLUS] = ACTIONS(9441), + [anon_sym_DASH] = ACTIONS(9439), + [anon_sym_QMARK] = ACTIONS(9441), + [aux_sym_close_statement_token1] = ACTIONS(9439), + [aux_sym_put_statement_token1] = ACTIONS(9439), + [aux_sym_unlock_statement_token1] = ACTIONS(9439), + [aux_sym_seek_statement_token1] = ACTIONS(9439), + [sym_reset_statement] = ACTIONS(9439), + [aux_sym_raise_event_statement_token1] = ACTIONS(9439), + [sym_stop_statement] = ACTIONS(9439), + [sym_beep_statement] = ACTIONS(9439), + [aux_sym_unload_statement_token1] = ACTIONS(9439), + [aux_sym_def_type_statement_token1] = ACTIONS(9439), + [aux_sym_def_type_statement_token2] = ACTIONS(9439), + [aux_sym_def_type_statement_token3] = ACTIONS(9439), + [aux_sym_def_type_statement_token4] = ACTIONS(9439), + [aux_sym_def_type_statement_token5] = ACTIONS(9439), + [aux_sym_def_type_statement_token6] = ACTIONS(9439), + [aux_sym_def_type_statement_token7] = ACTIONS(9439), + [aux_sym_def_type_statement_token8] = ACTIONS(9439), + [aux_sym_def_type_statement_token9] = ACTIONS(9439), + [aux_sym_def_type_statement_token10] = ACTIONS(9439), + [aux_sym_def_type_statement_token11] = ACTIONS(9439), + [aux_sym_def_type_statement_token12] = ACTIONS(9439), + [aux_sym_def_type_statement_token13] = ACTIONS(9439), + [aux_sym_def_type_statement_token14] = ACTIONS(9439), + [aux_sym_call_statement_token1] = ACTIONS(9439), + [sym__ambiguous_call_statement] = ACTIONS(9439), + [aux_sym_addressof_expression_token1] = ACTIONS(9439), + [aux_sym_type_of_expression_token1] = ACTIONS(9439), + [aux_sym_unary_expression_token1] = ACTIONS(9439), + [sym_string_literal] = ACTIONS(9441), + [sym_number_literal] = ACTIONS(9441), + [aux_sym_boolean_literal_token1] = ACTIONS(9439), + [aux_sym_boolean_literal_token2] = ACTIONS(9439), + [sym_nothing_literal] = ACTIONS(9439), + [sym_null_literal] = ACTIONS(9439), + [sym_empty_literal] = ACTIONS(9439), + [sym_date_literal] = ACTIONS(9441), + [anon_sym_POUND] = ACTIONS(9439), + }, + [STATE(7154)] = { + [sym_identifier] = ACTIONS(9443), + [sym_newline] = ACTIONS(9445), + [anon_sym_COLON] = ACTIONS(9445), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9443), + [aux_sym_frm_property_statement_token1] = ACTIONS(9443), + [anon_sym_DOT] = ACTIONS(9443), + [anon_sym_BANG] = ACTIONS(9445), + [aux_sym__attribute_identifier_token1] = ACTIONS(9443), + [aux_sym_option_statement_token3] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9443), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9443), + [aux_sym_preprocessor_const_token1] = ACTIONS(9443), + [sym_static_modifier] = ACTIONS(9443), + [sym__dim_keyword] = ACTIONS(9443), + [sym__redim_keyword] = ACTIONS(9443), + [aux_sym_get_accessor_token1] = ACTIONS(9443), + [aux_sym_set_accessor_token1] = ACTIONS(9443), + [aux_sym_const_declaration_token1] = ACTIONS(9443), + [anon_sym_LPAREN] = ACTIONS(9445), + [aux_sym_as_type_clause_token2] = ACTIONS(9443), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9443), + [aux_sym_visibility_token1] = ACTIONS(9443), + [aux_sym_visibility_token2] = ACTIONS(9443), + [aux_sym_elseif_fragment_token1] = ACTIONS(9443), + [aux_sym_else_fragment_token1] = ACTIONS(9443), + [aux_sym_select_statement_token1] = ACTIONS(9443), + [aux_sym__for_header_token1] = ACTIONS(9443), + [aux_sym_do_statement_token1] = ACTIONS(9443), + [aux_sym_do_condition_token1] = ACTIONS(9443), + [aux_sym_with_statement_token1] = ACTIONS(9443), + [aux_sym_exit_statement_token1] = ACTIONS(9443), + [sym_end_statement] = ACTIONS(9445), + [aux_sym_on_goto_statement_token1] = ACTIONS(9443), + [aux_sym_on_goto_statement_token2] = ACTIONS(9443), + [aux_sym_on_error_statement_token2] = ACTIONS(9443), + [sym__ambiguous_redim_statement] = ACTIONS(9445), + [aux_sym_erase_statement_token1] = ACTIONS(9443), + [aux_sym_open_statement_token1] = ACTIONS(9443), + [aux_sym_file_mode_token2] = ACTIONS(9443), + [aux_sym_file_access_token2] = ACTIONS(9443), + [aux_sym_file_lock_token2] = ACTIONS(9443), + [aux_sym_print_statement_token1] = ACTIONS(9443), + [anon_sym_PLUS] = ACTIONS(9445), + [anon_sym_DASH] = ACTIONS(9443), + [anon_sym_QMARK] = ACTIONS(9445), + [aux_sym_close_statement_token1] = ACTIONS(9443), + [aux_sym_put_statement_token1] = ACTIONS(9443), + [aux_sym_unlock_statement_token1] = ACTIONS(9443), + [aux_sym_seek_statement_token1] = ACTIONS(9443), + [sym_reset_statement] = ACTIONS(9443), + [aux_sym_raise_event_statement_token1] = ACTIONS(9443), + [sym_stop_statement] = ACTIONS(9443), + [sym_beep_statement] = ACTIONS(9443), + [aux_sym_unload_statement_token1] = ACTIONS(9443), + [aux_sym_def_type_statement_token1] = ACTIONS(9443), + [aux_sym_def_type_statement_token2] = ACTIONS(9443), + [aux_sym_def_type_statement_token3] = ACTIONS(9443), + [aux_sym_def_type_statement_token4] = ACTIONS(9443), + [aux_sym_def_type_statement_token5] = ACTIONS(9443), + [aux_sym_def_type_statement_token6] = ACTIONS(9443), + [aux_sym_def_type_statement_token7] = ACTIONS(9443), + [aux_sym_def_type_statement_token8] = ACTIONS(9443), + [aux_sym_def_type_statement_token9] = ACTIONS(9443), + [aux_sym_def_type_statement_token10] = ACTIONS(9443), + [aux_sym_def_type_statement_token11] = ACTIONS(9443), + [aux_sym_def_type_statement_token12] = ACTIONS(9443), + [aux_sym_def_type_statement_token13] = ACTIONS(9443), + [aux_sym_def_type_statement_token14] = ACTIONS(9443), + [aux_sym_call_statement_token1] = ACTIONS(9443), + [sym__ambiguous_call_statement] = ACTIONS(9443), + [aux_sym_addressof_expression_token1] = ACTIONS(9443), + [aux_sym_type_of_expression_token1] = ACTIONS(9443), + [aux_sym_unary_expression_token1] = ACTIONS(9443), + [sym_string_literal] = ACTIONS(9445), + [sym_number_literal] = ACTIONS(9445), + [aux_sym_boolean_literal_token1] = ACTIONS(9443), + [aux_sym_boolean_literal_token2] = ACTIONS(9443), + [sym_nothing_literal] = ACTIONS(9443), + [sym_null_literal] = ACTIONS(9443), + [sym_empty_literal] = ACTIONS(9443), + [sym_date_literal] = ACTIONS(9445), + [anon_sym_POUND] = ACTIONS(9443), + }, + [STATE(7155)] = { + [sym_identifier] = ACTIONS(9427), + [sym_newline] = ACTIONS(9429), + [anon_sym_COLON] = ACTIONS(9429), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9427), + [aux_sym_frm_property_statement_token1] = ACTIONS(9427), + [anon_sym_DOT] = ACTIONS(9427), + [anon_sym_BANG] = ACTIONS(9429), + [aux_sym__attribute_identifier_token1] = ACTIONS(9427), + [aux_sym_option_statement_token3] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9427), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9427), + [aux_sym_preprocessor_const_token1] = ACTIONS(9427), + [sym_static_modifier] = ACTIONS(9427), + [sym__dim_keyword] = ACTIONS(9427), + [sym__redim_keyword] = ACTIONS(9427), + [aux_sym_get_accessor_token1] = ACTIONS(9427), + [aux_sym_set_accessor_token1] = ACTIONS(9427), + [aux_sym_const_declaration_token1] = ACTIONS(9427), + [anon_sym_LPAREN] = ACTIONS(9429), + [aux_sym_as_type_clause_token2] = ACTIONS(9427), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9427), + [aux_sym_visibility_token1] = ACTIONS(9427), + [aux_sym_visibility_token2] = ACTIONS(9427), + [aux_sym_elseif_fragment_token1] = ACTIONS(9427), + [aux_sym_else_fragment_token1] = ACTIONS(9427), + [aux_sym_select_statement_token1] = ACTIONS(9427), + [aux_sym__for_header_token1] = ACTIONS(9427), + [aux_sym_do_statement_token1] = ACTIONS(9427), + [aux_sym_do_condition_token1] = ACTIONS(9427), + [aux_sym_with_statement_token1] = ACTIONS(9427), + [aux_sym_exit_statement_token1] = ACTIONS(9427), + [sym_end_statement] = ACTIONS(9429), + [aux_sym_on_goto_statement_token1] = ACTIONS(9427), + [aux_sym_on_goto_statement_token2] = ACTIONS(9427), + [aux_sym_on_error_statement_token2] = ACTIONS(9427), + [sym__ambiguous_redim_statement] = ACTIONS(9429), + [aux_sym_erase_statement_token1] = ACTIONS(9427), + [aux_sym_open_statement_token1] = ACTIONS(9427), + [aux_sym_file_mode_token2] = ACTIONS(9427), + [aux_sym_file_access_token2] = ACTIONS(9427), + [aux_sym_file_lock_token2] = ACTIONS(9427), + [aux_sym_print_statement_token1] = ACTIONS(9427), + [anon_sym_PLUS] = ACTIONS(9429), + [anon_sym_DASH] = ACTIONS(9427), + [anon_sym_QMARK] = ACTIONS(9429), + [aux_sym_close_statement_token1] = ACTIONS(9427), + [aux_sym_put_statement_token1] = ACTIONS(9427), + [aux_sym_unlock_statement_token1] = ACTIONS(9427), + [aux_sym_seek_statement_token1] = ACTIONS(9427), + [sym_reset_statement] = ACTIONS(9427), + [aux_sym_raise_event_statement_token1] = ACTIONS(9427), + [sym_stop_statement] = ACTIONS(9427), + [sym_beep_statement] = ACTIONS(9427), + [aux_sym_unload_statement_token1] = ACTIONS(9427), + [aux_sym_def_type_statement_token1] = ACTIONS(9427), + [aux_sym_def_type_statement_token2] = ACTIONS(9427), + [aux_sym_def_type_statement_token3] = ACTIONS(9427), + [aux_sym_def_type_statement_token4] = ACTIONS(9427), + [aux_sym_def_type_statement_token5] = ACTIONS(9427), + [aux_sym_def_type_statement_token6] = ACTIONS(9427), + [aux_sym_def_type_statement_token7] = ACTIONS(9427), + [aux_sym_def_type_statement_token8] = ACTIONS(9427), + [aux_sym_def_type_statement_token9] = ACTIONS(9427), + [aux_sym_def_type_statement_token10] = ACTIONS(9427), + [aux_sym_def_type_statement_token11] = ACTIONS(9427), + [aux_sym_def_type_statement_token12] = ACTIONS(9427), + [aux_sym_def_type_statement_token13] = ACTIONS(9427), + [aux_sym_def_type_statement_token14] = ACTIONS(9427), + [aux_sym_call_statement_token1] = ACTIONS(9427), + [sym__ambiguous_call_statement] = ACTIONS(9427), + [aux_sym_addressof_expression_token1] = ACTIONS(9427), + [aux_sym_type_of_expression_token1] = ACTIONS(9427), + [aux_sym_unary_expression_token1] = ACTIONS(9427), + [sym_string_literal] = ACTIONS(9429), + [sym_number_literal] = ACTIONS(9429), + [aux_sym_boolean_literal_token1] = ACTIONS(9427), + [aux_sym_boolean_literal_token2] = ACTIONS(9427), + [sym_nothing_literal] = ACTIONS(9427), + [sym_null_literal] = ACTIONS(9427), + [sym_empty_literal] = ACTIONS(9427), + [sym_date_literal] = ACTIONS(9429), + [anon_sym_POUND] = ACTIONS(9427), + }, + [STATE(7156)] = { + [sym_identifier] = ACTIONS(9447), + [sym_newline] = ACTIONS(9449), + [anon_sym_COLON] = ACTIONS(9449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9447), + [aux_sym_frm_property_statement_token1] = ACTIONS(9447), + [anon_sym_DOT] = ACTIONS(9447), + [anon_sym_BANG] = ACTIONS(9449), + [aux_sym__attribute_identifier_token1] = ACTIONS(9447), + [aux_sym_option_statement_token3] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9447), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9447), + [aux_sym_preprocessor_const_token1] = ACTIONS(9447), + [sym_static_modifier] = ACTIONS(9447), + [sym__dim_keyword] = ACTIONS(9447), + [sym__redim_keyword] = ACTIONS(9447), + [aux_sym_get_accessor_token1] = ACTIONS(9447), + [aux_sym_set_accessor_token1] = ACTIONS(9447), + [aux_sym_const_declaration_token1] = ACTIONS(9447), + [anon_sym_LPAREN] = ACTIONS(9449), + [aux_sym_as_type_clause_token2] = ACTIONS(9447), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9447), + [aux_sym_visibility_token1] = ACTIONS(9447), + [aux_sym_visibility_token2] = ACTIONS(9447), + [aux_sym_elseif_fragment_token1] = ACTIONS(9447), + [aux_sym_else_fragment_token1] = ACTIONS(9447), + [aux_sym_select_statement_token1] = ACTIONS(9447), + [aux_sym__for_header_token1] = ACTIONS(9447), + [aux_sym_do_statement_token1] = ACTIONS(9447), + [aux_sym_do_condition_token1] = ACTIONS(9447), + [aux_sym_with_statement_token1] = ACTIONS(9447), + [aux_sym_exit_statement_token1] = ACTIONS(9447), + [sym_end_statement] = ACTIONS(9449), + [aux_sym_on_goto_statement_token1] = ACTIONS(9447), + [aux_sym_on_goto_statement_token2] = ACTIONS(9447), + [aux_sym_on_error_statement_token2] = ACTIONS(9447), + [sym__ambiguous_redim_statement] = ACTIONS(9449), + [aux_sym_erase_statement_token1] = ACTIONS(9447), + [aux_sym_open_statement_token1] = ACTIONS(9447), + [aux_sym_file_mode_token2] = ACTIONS(9447), + [aux_sym_file_access_token2] = ACTIONS(9447), + [aux_sym_file_lock_token2] = ACTIONS(9447), + [aux_sym_print_statement_token1] = ACTIONS(9447), + [anon_sym_PLUS] = ACTIONS(9449), + [anon_sym_DASH] = ACTIONS(9447), + [anon_sym_QMARK] = ACTIONS(9449), + [aux_sym_close_statement_token1] = ACTIONS(9447), + [aux_sym_put_statement_token1] = ACTIONS(9447), + [aux_sym_unlock_statement_token1] = ACTIONS(9447), + [aux_sym_seek_statement_token1] = ACTIONS(9447), + [sym_reset_statement] = ACTIONS(9447), + [aux_sym_raise_event_statement_token1] = ACTIONS(9447), + [sym_stop_statement] = ACTIONS(9447), + [sym_beep_statement] = ACTIONS(9447), + [aux_sym_unload_statement_token1] = ACTIONS(9447), + [aux_sym_def_type_statement_token1] = ACTIONS(9447), + [aux_sym_def_type_statement_token2] = ACTIONS(9447), + [aux_sym_def_type_statement_token3] = ACTIONS(9447), + [aux_sym_def_type_statement_token4] = ACTIONS(9447), + [aux_sym_def_type_statement_token5] = ACTIONS(9447), + [aux_sym_def_type_statement_token6] = ACTIONS(9447), + [aux_sym_def_type_statement_token7] = ACTIONS(9447), + [aux_sym_def_type_statement_token8] = ACTIONS(9447), + [aux_sym_def_type_statement_token9] = ACTIONS(9447), + [aux_sym_def_type_statement_token10] = ACTIONS(9447), + [aux_sym_def_type_statement_token11] = ACTIONS(9447), + [aux_sym_def_type_statement_token12] = ACTIONS(9447), + [aux_sym_def_type_statement_token13] = ACTIONS(9447), + [aux_sym_def_type_statement_token14] = ACTIONS(9447), + [aux_sym_call_statement_token1] = ACTIONS(9447), + [sym__ambiguous_call_statement] = ACTIONS(9447), + [aux_sym_addressof_expression_token1] = ACTIONS(9447), + [aux_sym_type_of_expression_token1] = ACTIONS(9447), + [aux_sym_unary_expression_token1] = ACTIONS(9447), + [sym_string_literal] = ACTIONS(9449), + [sym_number_literal] = ACTIONS(9449), + [aux_sym_boolean_literal_token1] = ACTIONS(9447), + [aux_sym_boolean_literal_token2] = ACTIONS(9447), + [sym_nothing_literal] = ACTIONS(9447), + [sym_null_literal] = ACTIONS(9447), + [sym_empty_literal] = ACTIONS(9447), + [sym_date_literal] = ACTIONS(9449), + [anon_sym_POUND] = ACTIONS(9447), + }, + [STATE(7157)] = { + [sym_identifier] = ACTIONS(9451), + [sym_newline] = ACTIONS(9453), + [anon_sym_COLON] = ACTIONS(9453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9451), + [aux_sym_frm_property_statement_token1] = ACTIONS(9451), + [anon_sym_DOT] = ACTIONS(9451), + [anon_sym_BANG] = ACTIONS(9453), + [aux_sym__attribute_identifier_token1] = ACTIONS(9451), + [aux_sym_option_statement_token3] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9451), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9451), + [aux_sym_preprocessor_const_token1] = ACTIONS(9451), + [sym_static_modifier] = ACTIONS(9451), + [sym__dim_keyword] = ACTIONS(9451), + [sym__redim_keyword] = ACTIONS(9451), + [aux_sym_get_accessor_token1] = ACTIONS(9451), + [aux_sym_set_accessor_token1] = ACTIONS(9451), + [aux_sym_const_declaration_token1] = ACTIONS(9451), + [anon_sym_LPAREN] = ACTIONS(9453), + [aux_sym_as_type_clause_token2] = ACTIONS(9451), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9451), + [aux_sym_visibility_token1] = ACTIONS(9451), + [aux_sym_visibility_token2] = ACTIONS(9451), + [aux_sym_elseif_fragment_token1] = ACTIONS(9451), + [aux_sym_else_fragment_token1] = ACTIONS(9451), + [aux_sym_select_statement_token1] = ACTIONS(9451), + [aux_sym__for_header_token1] = ACTIONS(9451), + [aux_sym_do_statement_token1] = ACTIONS(9451), + [aux_sym_do_condition_token1] = ACTIONS(9451), + [aux_sym_with_statement_token1] = ACTIONS(9451), + [aux_sym_exit_statement_token1] = ACTIONS(9451), + [sym_end_statement] = ACTIONS(9453), + [aux_sym_on_goto_statement_token1] = ACTIONS(9451), + [aux_sym_on_goto_statement_token2] = ACTIONS(9451), + [aux_sym_on_error_statement_token2] = ACTIONS(9451), + [sym__ambiguous_redim_statement] = ACTIONS(9453), + [aux_sym_erase_statement_token1] = ACTIONS(9451), + [aux_sym_open_statement_token1] = ACTIONS(9451), + [aux_sym_file_mode_token2] = ACTIONS(9451), + [aux_sym_file_access_token2] = ACTIONS(9451), + [aux_sym_file_lock_token2] = ACTIONS(9451), + [aux_sym_print_statement_token1] = ACTIONS(9451), + [anon_sym_PLUS] = ACTIONS(9453), + [anon_sym_DASH] = ACTIONS(9451), + [anon_sym_QMARK] = ACTIONS(9453), + [aux_sym_close_statement_token1] = ACTIONS(9451), + [aux_sym_put_statement_token1] = ACTIONS(9451), + [aux_sym_unlock_statement_token1] = ACTIONS(9451), + [aux_sym_seek_statement_token1] = ACTIONS(9451), + [sym_reset_statement] = ACTIONS(9451), + [aux_sym_raise_event_statement_token1] = ACTIONS(9451), + [sym_stop_statement] = ACTIONS(9451), + [sym_beep_statement] = ACTIONS(9451), + [aux_sym_unload_statement_token1] = ACTIONS(9451), + [aux_sym_def_type_statement_token1] = ACTIONS(9451), + [aux_sym_def_type_statement_token2] = ACTIONS(9451), + [aux_sym_def_type_statement_token3] = ACTIONS(9451), + [aux_sym_def_type_statement_token4] = ACTIONS(9451), + [aux_sym_def_type_statement_token5] = ACTIONS(9451), + [aux_sym_def_type_statement_token6] = ACTIONS(9451), + [aux_sym_def_type_statement_token7] = ACTIONS(9451), + [aux_sym_def_type_statement_token8] = ACTIONS(9451), + [aux_sym_def_type_statement_token9] = ACTIONS(9451), + [aux_sym_def_type_statement_token10] = ACTIONS(9451), + [aux_sym_def_type_statement_token11] = ACTIONS(9451), + [aux_sym_def_type_statement_token12] = ACTIONS(9451), + [aux_sym_def_type_statement_token13] = ACTIONS(9451), + [aux_sym_def_type_statement_token14] = ACTIONS(9451), + [aux_sym_call_statement_token1] = ACTIONS(9451), + [sym__ambiguous_call_statement] = ACTIONS(9451), + [aux_sym_addressof_expression_token1] = ACTIONS(9451), + [aux_sym_type_of_expression_token1] = ACTIONS(9451), + [aux_sym_unary_expression_token1] = ACTIONS(9451), + [sym_string_literal] = ACTIONS(9453), + [sym_number_literal] = ACTIONS(9453), + [aux_sym_boolean_literal_token1] = ACTIONS(9451), + [aux_sym_boolean_literal_token2] = ACTIONS(9451), + [sym_nothing_literal] = ACTIONS(9451), + [sym_null_literal] = ACTIONS(9451), + [sym_empty_literal] = ACTIONS(9451), + [sym_date_literal] = ACTIONS(9453), + [anon_sym_POUND] = ACTIONS(9451), + }, + [STATE(7158)] = { + [sym_identifier] = ACTIONS(9340), + [sym_newline] = ACTIONS(9342), + [anon_sym_COLON] = ACTIONS(9342), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9340), + [aux_sym_frm_property_statement_token1] = ACTIONS(9340), + [anon_sym_DOT] = ACTIONS(9340), + [anon_sym_BANG] = ACTIONS(9342), + [aux_sym__attribute_identifier_token1] = ACTIONS(9340), + [aux_sym_option_statement_token3] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9340), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9340), + [aux_sym_preprocessor_const_token1] = ACTIONS(9340), + [sym_static_modifier] = ACTIONS(9340), + [sym__dim_keyword] = ACTIONS(9340), + [sym__redim_keyword] = ACTIONS(9340), + [aux_sym_get_accessor_token1] = ACTIONS(9340), + [aux_sym_set_accessor_token1] = ACTIONS(9340), + [aux_sym_const_declaration_token1] = ACTIONS(9340), + [anon_sym_LPAREN] = ACTIONS(9342), + [aux_sym_as_type_clause_token2] = ACTIONS(9340), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9340), + [aux_sym_visibility_token1] = ACTIONS(9340), + [aux_sym_visibility_token2] = ACTIONS(9340), + [aux_sym_elseif_fragment_token1] = ACTIONS(9340), + [aux_sym_else_fragment_token1] = ACTIONS(9340), + [aux_sym_select_statement_token1] = ACTIONS(9340), + [aux_sym__for_header_token1] = ACTIONS(9340), + [aux_sym_do_statement_token1] = ACTIONS(9340), + [aux_sym_do_condition_token1] = ACTIONS(9340), + [aux_sym_with_statement_token1] = ACTIONS(9340), + [aux_sym_exit_statement_token1] = ACTIONS(9340), + [sym_end_statement] = ACTIONS(9342), + [aux_sym_on_goto_statement_token1] = ACTIONS(9340), + [aux_sym_on_goto_statement_token2] = ACTIONS(9340), + [aux_sym_on_error_statement_token2] = ACTIONS(9340), + [sym__ambiguous_redim_statement] = ACTIONS(9342), + [aux_sym_erase_statement_token1] = ACTIONS(9340), + [aux_sym_open_statement_token1] = ACTIONS(9340), + [aux_sym_file_mode_token2] = ACTIONS(9340), + [aux_sym_file_access_token2] = ACTIONS(9340), + [aux_sym_file_lock_token2] = ACTIONS(9340), + [aux_sym_print_statement_token1] = ACTIONS(9340), + [anon_sym_PLUS] = ACTIONS(9342), + [anon_sym_DASH] = ACTIONS(9340), + [anon_sym_QMARK] = ACTIONS(9342), + [aux_sym_close_statement_token1] = ACTIONS(9340), + [aux_sym_put_statement_token1] = ACTIONS(9340), + [aux_sym_unlock_statement_token1] = ACTIONS(9340), + [aux_sym_seek_statement_token1] = ACTIONS(9340), + [sym_reset_statement] = ACTIONS(9340), + [aux_sym_raise_event_statement_token1] = ACTIONS(9340), + [sym_stop_statement] = ACTIONS(9340), + [sym_beep_statement] = ACTIONS(9340), + [aux_sym_unload_statement_token1] = ACTIONS(9340), + [aux_sym_def_type_statement_token1] = ACTIONS(9340), + [aux_sym_def_type_statement_token2] = ACTIONS(9340), + [aux_sym_def_type_statement_token3] = ACTIONS(9340), + [aux_sym_def_type_statement_token4] = ACTIONS(9340), + [aux_sym_def_type_statement_token5] = ACTIONS(9340), + [aux_sym_def_type_statement_token6] = ACTIONS(9340), + [aux_sym_def_type_statement_token7] = ACTIONS(9340), + [aux_sym_def_type_statement_token8] = ACTIONS(9340), + [aux_sym_def_type_statement_token9] = ACTIONS(9340), + [aux_sym_def_type_statement_token10] = ACTIONS(9340), + [aux_sym_def_type_statement_token11] = ACTIONS(9340), + [aux_sym_def_type_statement_token12] = ACTIONS(9340), + [aux_sym_def_type_statement_token13] = ACTIONS(9340), + [aux_sym_def_type_statement_token14] = ACTIONS(9340), + [aux_sym_call_statement_token1] = ACTIONS(9340), + [sym__ambiguous_call_statement] = ACTIONS(9340), + [aux_sym_addressof_expression_token1] = ACTIONS(9340), + [aux_sym_type_of_expression_token1] = ACTIONS(9340), + [aux_sym_unary_expression_token1] = ACTIONS(9340), + [sym_string_literal] = ACTIONS(9342), + [sym_number_literal] = ACTIONS(9342), + [aux_sym_boolean_literal_token1] = ACTIONS(9340), + [aux_sym_boolean_literal_token2] = ACTIONS(9340), + [sym_nothing_literal] = ACTIONS(9340), + [sym_null_literal] = ACTIONS(9340), + [sym_empty_literal] = ACTIONS(9340), + [sym_date_literal] = ACTIONS(9342), + [anon_sym_POUND] = ACTIONS(9340), + }, + [STATE(7159)] = { + [sym_identifier] = ACTIONS(9364), + [sym_newline] = ACTIONS(9366), + [anon_sym_COLON] = ACTIONS(9366), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9364), + [aux_sym_frm_property_statement_token1] = ACTIONS(9364), + [anon_sym_DOT] = ACTIONS(9364), + [anon_sym_BANG] = ACTIONS(9366), + [aux_sym__attribute_identifier_token1] = ACTIONS(9364), + [aux_sym_option_statement_token3] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9364), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9364), + [aux_sym_preprocessor_const_token1] = ACTIONS(9364), + [sym_static_modifier] = ACTIONS(9364), + [sym__dim_keyword] = ACTIONS(9364), + [sym__redim_keyword] = ACTIONS(9364), + [aux_sym_get_accessor_token1] = ACTIONS(9364), + [aux_sym_set_accessor_token1] = ACTIONS(9364), + [aux_sym_const_declaration_token1] = ACTIONS(9364), + [anon_sym_LPAREN] = ACTIONS(9366), + [aux_sym_as_type_clause_token2] = ACTIONS(9364), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9364), + [aux_sym_visibility_token1] = ACTIONS(9364), + [aux_sym_visibility_token2] = ACTIONS(9364), + [aux_sym_elseif_fragment_token1] = ACTIONS(9364), + [aux_sym_else_fragment_token1] = ACTIONS(9364), + [aux_sym_select_statement_token1] = ACTIONS(9364), + [aux_sym__for_header_token1] = ACTIONS(9364), + [aux_sym_do_statement_token1] = ACTIONS(9364), + [aux_sym_do_condition_token1] = ACTIONS(9364), + [aux_sym_with_statement_token1] = ACTIONS(9364), + [aux_sym_exit_statement_token1] = ACTIONS(9364), + [sym_end_statement] = ACTIONS(9366), + [aux_sym_on_goto_statement_token1] = ACTIONS(9364), + [aux_sym_on_goto_statement_token2] = ACTIONS(9364), + [aux_sym_on_error_statement_token2] = ACTIONS(9364), + [sym__ambiguous_redim_statement] = ACTIONS(9366), + [aux_sym_erase_statement_token1] = ACTIONS(9364), + [aux_sym_open_statement_token1] = ACTIONS(9364), + [aux_sym_file_mode_token2] = ACTIONS(9364), + [aux_sym_file_access_token2] = ACTIONS(9364), + [aux_sym_file_lock_token2] = ACTIONS(9364), + [aux_sym_print_statement_token1] = ACTIONS(9364), + [anon_sym_PLUS] = ACTIONS(9366), + [anon_sym_DASH] = ACTIONS(9364), + [anon_sym_QMARK] = ACTIONS(9366), + [aux_sym_close_statement_token1] = ACTIONS(9364), + [aux_sym_put_statement_token1] = ACTIONS(9364), + [aux_sym_unlock_statement_token1] = ACTIONS(9364), + [aux_sym_seek_statement_token1] = ACTIONS(9364), + [sym_reset_statement] = ACTIONS(9364), + [aux_sym_raise_event_statement_token1] = ACTIONS(9364), + [sym_stop_statement] = ACTIONS(9364), + [sym_beep_statement] = ACTIONS(9364), + [aux_sym_unload_statement_token1] = ACTIONS(9364), + [aux_sym_def_type_statement_token1] = ACTIONS(9364), + [aux_sym_def_type_statement_token2] = ACTIONS(9364), + [aux_sym_def_type_statement_token3] = ACTIONS(9364), + [aux_sym_def_type_statement_token4] = ACTIONS(9364), + [aux_sym_def_type_statement_token5] = ACTIONS(9364), + [aux_sym_def_type_statement_token6] = ACTIONS(9364), + [aux_sym_def_type_statement_token7] = ACTIONS(9364), + [aux_sym_def_type_statement_token8] = ACTIONS(9364), + [aux_sym_def_type_statement_token9] = ACTIONS(9364), + [aux_sym_def_type_statement_token10] = ACTIONS(9364), + [aux_sym_def_type_statement_token11] = ACTIONS(9364), + [aux_sym_def_type_statement_token12] = ACTIONS(9364), + [aux_sym_def_type_statement_token13] = ACTIONS(9364), + [aux_sym_def_type_statement_token14] = ACTIONS(9364), + [aux_sym_call_statement_token1] = ACTIONS(9364), + [sym__ambiguous_call_statement] = ACTIONS(9364), + [aux_sym_addressof_expression_token1] = ACTIONS(9364), + [aux_sym_type_of_expression_token1] = ACTIONS(9364), + [aux_sym_unary_expression_token1] = ACTIONS(9364), + [sym_string_literal] = ACTIONS(9366), + [sym_number_literal] = ACTIONS(9366), + [aux_sym_boolean_literal_token1] = ACTIONS(9364), + [aux_sym_boolean_literal_token2] = ACTIONS(9364), + [sym_nothing_literal] = ACTIONS(9364), + [sym_null_literal] = ACTIONS(9364), + [sym_empty_literal] = ACTIONS(9364), + [sym_date_literal] = ACTIONS(9366), + [anon_sym_POUND] = ACTIONS(9364), + }, + [STATE(7160)] = { + [sym_identifier] = ACTIONS(8692), + [sym_newline] = ACTIONS(8694), + [anon_sym_COLON] = ACTIONS(8694), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8692), + [aux_sym_frm_property_statement_token1] = ACTIONS(8692), + [anon_sym_DOT] = ACTIONS(8692), + [anon_sym_BANG] = ACTIONS(8694), + [aux_sym__attribute_identifier_token1] = ACTIONS(8692), + [aux_sym_option_statement_token3] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8692), + [aux_sym_preprocessor_const_token1] = ACTIONS(8692), + [sym_static_modifier] = ACTIONS(8692), + [sym__dim_keyword] = ACTIONS(8692), + [sym__redim_keyword] = ACTIONS(8692), + [aux_sym_get_accessor_token1] = ACTIONS(8692), + [aux_sym_set_accessor_token1] = ACTIONS(8692), + [aux_sym_const_declaration_token1] = ACTIONS(8692), + [anon_sym_LPAREN] = ACTIONS(8694), + [aux_sym_as_type_clause_token2] = ACTIONS(8692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8692), + [aux_sym_visibility_token1] = ACTIONS(8692), + [aux_sym_visibility_token2] = ACTIONS(8692), + [aux_sym_elseif_fragment_token1] = ACTIONS(8692), + [aux_sym_else_fragment_token1] = ACTIONS(11158), + [aux_sym_select_statement_token1] = ACTIONS(8692), + [aux_sym__for_header_token1] = ACTIONS(8692), + [aux_sym_do_statement_token1] = ACTIONS(8692), + [aux_sym_do_condition_token1] = ACTIONS(8692), + [aux_sym_with_statement_token1] = ACTIONS(8692), + [aux_sym_exit_statement_token1] = ACTIONS(8692), + [sym_end_statement] = ACTIONS(8694), + [aux_sym_on_goto_statement_token1] = ACTIONS(8692), + [aux_sym_on_goto_statement_token2] = ACTIONS(8692), + [aux_sym_on_error_statement_token2] = ACTIONS(8692), + [sym__ambiguous_redim_statement] = ACTIONS(8694), + [aux_sym_erase_statement_token1] = ACTIONS(8692), + [aux_sym_open_statement_token1] = ACTIONS(8692), + [aux_sym_file_mode_token2] = ACTIONS(8692), + [aux_sym_file_access_token2] = ACTIONS(8692), + [aux_sym_file_lock_token2] = ACTIONS(8692), + [aux_sym_print_statement_token1] = ACTIONS(8692), + [anon_sym_PLUS] = ACTIONS(8694), + [anon_sym_DASH] = ACTIONS(8692), + [anon_sym_QMARK] = ACTIONS(8694), + [aux_sym_close_statement_token1] = ACTIONS(8692), + [aux_sym_put_statement_token1] = ACTIONS(8692), + [aux_sym_unlock_statement_token1] = ACTIONS(8692), + [aux_sym_seek_statement_token1] = ACTIONS(8692), + [sym_reset_statement] = ACTIONS(8692), + [aux_sym_raise_event_statement_token1] = ACTIONS(8692), + [sym_stop_statement] = ACTIONS(8692), + [sym_beep_statement] = ACTIONS(8692), + [aux_sym_unload_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token1] = ACTIONS(8692), + [aux_sym_def_type_statement_token2] = ACTIONS(8692), + [aux_sym_def_type_statement_token3] = ACTIONS(8692), + [aux_sym_def_type_statement_token4] = ACTIONS(8692), + [aux_sym_def_type_statement_token5] = ACTIONS(8692), + [aux_sym_def_type_statement_token6] = ACTIONS(8692), + [aux_sym_def_type_statement_token7] = ACTIONS(8692), + [aux_sym_def_type_statement_token8] = ACTIONS(8692), + [aux_sym_def_type_statement_token9] = ACTIONS(8692), + [aux_sym_def_type_statement_token10] = ACTIONS(8692), + [aux_sym_def_type_statement_token11] = ACTIONS(8692), + [aux_sym_def_type_statement_token12] = ACTIONS(8692), + [aux_sym_def_type_statement_token13] = ACTIONS(8692), + [aux_sym_def_type_statement_token14] = ACTIONS(8692), + [aux_sym_call_statement_token1] = ACTIONS(8692), + [sym__ambiguous_call_statement] = ACTIONS(8692), + [aux_sym_addressof_expression_token1] = ACTIONS(8692), + [aux_sym_type_of_expression_token1] = ACTIONS(8692), + [aux_sym_unary_expression_token1] = ACTIONS(8692), + [sym_string_literal] = ACTIONS(8694), + [sym_number_literal] = ACTIONS(8694), + [aux_sym_boolean_literal_token1] = ACTIONS(8692), + [aux_sym_boolean_literal_token2] = ACTIONS(8692), + [sym_nothing_literal] = ACTIONS(8692), + [sym_null_literal] = ACTIONS(8692), + [sym_empty_literal] = ACTIONS(8692), + [sym_date_literal] = ACTIONS(8694), + [anon_sym_POUND] = ACTIONS(8692), + }, + [STATE(7161)] = { + [sym_identifier] = ACTIONS(8733), + [sym_newline] = ACTIONS(8735), + [anon_sym_COLON] = ACTIONS(8735), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8733), + [aux_sym_frm_property_statement_token1] = ACTIONS(8733), + [anon_sym_DOT] = ACTIONS(8733), + [anon_sym_BANG] = ACTIONS(8735), + [aux_sym__attribute_identifier_token1] = ACTIONS(8733), + [aux_sym_option_statement_token3] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8733), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8733), + [aux_sym_preprocessor_const_token1] = ACTIONS(8733), + [sym_static_modifier] = ACTIONS(8733), + [sym__dim_keyword] = ACTIONS(8733), + [sym__redim_keyword] = ACTIONS(8733), + [aux_sym_get_accessor_token1] = ACTIONS(8733), + [aux_sym_set_accessor_token1] = ACTIONS(8733), + [aux_sym_const_declaration_token1] = ACTIONS(8733), + [anon_sym_LPAREN] = ACTIONS(8735), + [aux_sym_as_type_clause_token2] = ACTIONS(8733), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8733), + [aux_sym_visibility_token1] = ACTIONS(8733), + [aux_sym_visibility_token2] = ACTIONS(8733), + [aux_sym_elseif_fragment_token1] = ACTIONS(8733), + [aux_sym_else_fragment_token1] = ACTIONS(11115), + [aux_sym_select_statement_token1] = ACTIONS(8733), + [aux_sym__for_header_token1] = ACTIONS(8733), + [aux_sym_do_statement_token1] = ACTIONS(8733), + [aux_sym_do_condition_token1] = ACTIONS(8733), + [aux_sym_with_statement_token1] = ACTIONS(8733), + [aux_sym_exit_statement_token1] = ACTIONS(8733), + [sym_end_statement] = ACTIONS(8735), + [aux_sym_on_goto_statement_token1] = ACTIONS(8733), + [aux_sym_on_goto_statement_token2] = ACTIONS(8733), + [aux_sym_on_error_statement_token2] = ACTIONS(8733), + [sym__ambiguous_redim_statement] = ACTIONS(8735), + [aux_sym_erase_statement_token1] = ACTIONS(8733), + [aux_sym_open_statement_token1] = ACTIONS(8733), + [aux_sym_file_mode_token2] = ACTIONS(8733), + [aux_sym_file_access_token2] = ACTIONS(8733), + [aux_sym_file_lock_token2] = ACTIONS(8733), + [aux_sym_print_statement_token1] = ACTIONS(8733), + [anon_sym_PLUS] = ACTIONS(8735), + [anon_sym_DASH] = ACTIONS(8733), + [anon_sym_QMARK] = ACTIONS(8735), + [aux_sym_close_statement_token1] = ACTIONS(8733), + [aux_sym_put_statement_token1] = ACTIONS(8733), + [aux_sym_unlock_statement_token1] = ACTIONS(8733), + [aux_sym_seek_statement_token1] = ACTIONS(8733), + [sym_reset_statement] = ACTIONS(8733), + [aux_sym_raise_event_statement_token1] = ACTIONS(8733), + [sym_stop_statement] = ACTIONS(8733), + [sym_beep_statement] = ACTIONS(8733), + [aux_sym_unload_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token1] = ACTIONS(8733), + [aux_sym_def_type_statement_token2] = ACTIONS(8733), + [aux_sym_def_type_statement_token3] = ACTIONS(8733), + [aux_sym_def_type_statement_token4] = ACTIONS(8733), + [aux_sym_def_type_statement_token5] = ACTIONS(8733), + [aux_sym_def_type_statement_token6] = ACTIONS(8733), + [aux_sym_def_type_statement_token7] = ACTIONS(8733), + [aux_sym_def_type_statement_token8] = ACTIONS(8733), + [aux_sym_def_type_statement_token9] = ACTIONS(8733), + [aux_sym_def_type_statement_token10] = ACTIONS(8733), + [aux_sym_def_type_statement_token11] = ACTIONS(8733), + [aux_sym_def_type_statement_token12] = ACTIONS(8733), + [aux_sym_def_type_statement_token13] = ACTIONS(8733), + [aux_sym_def_type_statement_token14] = ACTIONS(8733), + [aux_sym_call_statement_token1] = ACTIONS(8733), + [sym__ambiguous_call_statement] = ACTIONS(8733), + [aux_sym_addressof_expression_token1] = ACTIONS(8733), + [aux_sym_type_of_expression_token1] = ACTIONS(8733), + [aux_sym_unary_expression_token1] = ACTIONS(8733), + [sym_string_literal] = ACTIONS(8735), + [sym_number_literal] = ACTIONS(8735), + [aux_sym_boolean_literal_token1] = ACTIONS(8733), + [aux_sym_boolean_literal_token2] = ACTIONS(8733), + [sym_nothing_literal] = ACTIONS(8733), + [sym_null_literal] = ACTIONS(8733), + [sym_empty_literal] = ACTIONS(8733), + [sym_date_literal] = ACTIONS(8735), + [anon_sym_POUND] = ACTIONS(8733), + }, + [STATE(7162)] = { + [sym_identifier] = ACTIONS(9184), + [sym_newline] = ACTIONS(9186), + [anon_sym_COLON] = ACTIONS(9186), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9184), + [aux_sym_frm_property_statement_token1] = ACTIONS(9184), + [anon_sym_DOT] = ACTIONS(9184), + [anon_sym_BANG] = ACTIONS(9186), + [aux_sym__attribute_identifier_token1] = ACTIONS(9184), + [aux_sym_option_statement_token3] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9184), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9184), + [aux_sym_preprocessor_const_token1] = ACTIONS(9184), + [sym_static_modifier] = ACTIONS(9184), + [sym__dim_keyword] = ACTIONS(9184), + [sym__redim_keyword] = ACTIONS(9184), + [aux_sym_get_accessor_token1] = ACTIONS(9184), + [aux_sym_set_accessor_token1] = ACTIONS(9184), + [aux_sym_const_declaration_token1] = ACTIONS(9184), + [anon_sym_LPAREN] = ACTIONS(9186), + [aux_sym_as_type_clause_token2] = ACTIONS(9184), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9184), + [aux_sym_visibility_token1] = ACTIONS(9184), + [aux_sym_visibility_token2] = ACTIONS(9184), + [aux_sym_elseif_fragment_token1] = ACTIONS(9184), + [aux_sym_else_fragment_token1] = ACTIONS(9184), + [aux_sym_select_statement_token1] = ACTIONS(9184), + [aux_sym__for_header_token1] = ACTIONS(9184), + [aux_sym_do_statement_token1] = ACTIONS(9184), + [aux_sym_do_condition_token1] = ACTIONS(9184), + [aux_sym_with_statement_token1] = ACTIONS(9184), + [aux_sym_exit_statement_token1] = ACTIONS(9184), + [sym_end_statement] = ACTIONS(9186), + [aux_sym_on_goto_statement_token1] = ACTIONS(9184), + [aux_sym_on_goto_statement_token2] = ACTIONS(9184), + [aux_sym_on_error_statement_token2] = ACTIONS(9184), + [sym__ambiguous_redim_statement] = ACTIONS(9186), + [aux_sym_erase_statement_token1] = ACTIONS(9184), + [aux_sym_open_statement_token1] = ACTIONS(9184), + [aux_sym_file_mode_token2] = ACTIONS(9184), + [aux_sym_file_access_token2] = ACTIONS(9184), + [aux_sym_file_lock_token2] = ACTIONS(9184), + [aux_sym_print_statement_token1] = ACTIONS(9184), + [anon_sym_PLUS] = ACTIONS(9186), + [anon_sym_DASH] = ACTIONS(9184), + [anon_sym_QMARK] = ACTIONS(9186), + [aux_sym_close_statement_token1] = ACTIONS(9184), + [aux_sym_put_statement_token1] = ACTIONS(9184), + [aux_sym_unlock_statement_token1] = ACTIONS(9184), + [aux_sym_seek_statement_token1] = ACTIONS(9184), + [sym_reset_statement] = ACTIONS(9184), + [aux_sym_raise_event_statement_token1] = ACTIONS(9184), + [sym_stop_statement] = ACTIONS(9184), + [sym_beep_statement] = ACTIONS(9184), + [aux_sym_unload_statement_token1] = ACTIONS(9184), + [aux_sym_def_type_statement_token1] = ACTIONS(9184), + [aux_sym_def_type_statement_token2] = ACTIONS(9184), + [aux_sym_def_type_statement_token3] = ACTIONS(9184), + [aux_sym_def_type_statement_token4] = ACTIONS(9184), + [aux_sym_def_type_statement_token5] = ACTIONS(9184), + [aux_sym_def_type_statement_token6] = ACTIONS(9184), + [aux_sym_def_type_statement_token7] = ACTIONS(9184), + [aux_sym_def_type_statement_token8] = ACTIONS(9184), + [aux_sym_def_type_statement_token9] = ACTIONS(9184), + [aux_sym_def_type_statement_token10] = ACTIONS(9184), + [aux_sym_def_type_statement_token11] = ACTIONS(9184), + [aux_sym_def_type_statement_token12] = ACTIONS(9184), + [aux_sym_def_type_statement_token13] = ACTIONS(9184), + [aux_sym_def_type_statement_token14] = ACTIONS(9184), + [aux_sym_call_statement_token1] = ACTIONS(9184), + [sym__ambiguous_call_statement] = ACTIONS(9184), + [aux_sym_addressof_expression_token1] = ACTIONS(9184), + [aux_sym_type_of_expression_token1] = ACTIONS(9184), + [aux_sym_unary_expression_token1] = ACTIONS(9184), + [sym_string_literal] = ACTIONS(9186), + [sym_number_literal] = ACTIONS(9186), + [aux_sym_boolean_literal_token1] = ACTIONS(9184), + [aux_sym_boolean_literal_token2] = ACTIONS(9184), + [sym_nothing_literal] = ACTIONS(9184), + [sym_null_literal] = ACTIONS(9184), + [sym_empty_literal] = ACTIONS(9184), + [sym_date_literal] = ACTIONS(9186), + [anon_sym_POUND] = ACTIONS(9184), + }, + [STATE(7163)] = { + [sym_identifier] = ACTIONS(9431), + [sym_newline] = ACTIONS(9433), + [anon_sym_COLON] = ACTIONS(9433), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9431), + [aux_sym_frm_property_statement_token1] = ACTIONS(9431), + [anon_sym_DOT] = ACTIONS(9431), + [anon_sym_BANG] = ACTIONS(9433), + [aux_sym__attribute_identifier_token1] = ACTIONS(9431), + [aux_sym_option_statement_token3] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9431), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9431), + [aux_sym_preprocessor_const_token1] = ACTIONS(9431), + [sym_static_modifier] = ACTIONS(9431), + [sym__dim_keyword] = ACTIONS(9431), + [sym__redim_keyword] = ACTIONS(9431), + [aux_sym_get_accessor_token1] = ACTIONS(9431), + [aux_sym_set_accessor_token1] = ACTIONS(9431), + [aux_sym_const_declaration_token1] = ACTIONS(9431), + [anon_sym_LPAREN] = ACTIONS(9433), + [aux_sym_as_type_clause_token2] = ACTIONS(9431), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9431), + [aux_sym_visibility_token1] = ACTIONS(9431), + [aux_sym_visibility_token2] = ACTIONS(9431), + [aux_sym_elseif_fragment_token1] = ACTIONS(9431), + [aux_sym_else_fragment_token1] = ACTIONS(9431), + [aux_sym_select_statement_token1] = ACTIONS(9431), + [aux_sym__for_header_token1] = ACTIONS(9431), + [aux_sym_do_statement_token1] = ACTIONS(9431), + [aux_sym_do_condition_token1] = ACTIONS(9431), + [aux_sym_with_statement_token1] = ACTIONS(9431), + [aux_sym_exit_statement_token1] = ACTIONS(9431), + [sym_end_statement] = ACTIONS(9433), + [aux_sym_on_goto_statement_token1] = ACTIONS(9431), + [aux_sym_on_goto_statement_token2] = ACTIONS(9431), + [aux_sym_on_error_statement_token2] = ACTIONS(9431), + [sym__ambiguous_redim_statement] = ACTIONS(9433), + [aux_sym_erase_statement_token1] = ACTIONS(9431), + [aux_sym_open_statement_token1] = ACTIONS(9431), + [aux_sym_file_mode_token2] = ACTIONS(9431), + [aux_sym_file_access_token2] = ACTIONS(9431), + [aux_sym_file_lock_token2] = ACTIONS(9431), + [aux_sym_print_statement_token1] = ACTIONS(9431), + [anon_sym_PLUS] = ACTIONS(9433), + [anon_sym_DASH] = ACTIONS(9431), + [anon_sym_QMARK] = ACTIONS(9433), + [aux_sym_close_statement_token1] = ACTIONS(9431), + [aux_sym_put_statement_token1] = ACTIONS(9431), + [aux_sym_unlock_statement_token1] = ACTIONS(9431), + [aux_sym_seek_statement_token1] = ACTIONS(9431), + [sym_reset_statement] = ACTIONS(9431), + [aux_sym_raise_event_statement_token1] = ACTIONS(9431), + [sym_stop_statement] = ACTIONS(9431), + [sym_beep_statement] = ACTIONS(9431), + [aux_sym_unload_statement_token1] = ACTIONS(9431), + [aux_sym_def_type_statement_token1] = ACTIONS(9431), + [aux_sym_def_type_statement_token2] = ACTIONS(9431), + [aux_sym_def_type_statement_token3] = ACTIONS(9431), + [aux_sym_def_type_statement_token4] = ACTIONS(9431), + [aux_sym_def_type_statement_token5] = ACTIONS(9431), + [aux_sym_def_type_statement_token6] = ACTIONS(9431), + [aux_sym_def_type_statement_token7] = ACTIONS(9431), + [aux_sym_def_type_statement_token8] = ACTIONS(9431), + [aux_sym_def_type_statement_token9] = ACTIONS(9431), + [aux_sym_def_type_statement_token10] = ACTIONS(9431), + [aux_sym_def_type_statement_token11] = ACTIONS(9431), + [aux_sym_def_type_statement_token12] = ACTIONS(9431), + [aux_sym_def_type_statement_token13] = ACTIONS(9431), + [aux_sym_def_type_statement_token14] = ACTIONS(9431), + [aux_sym_call_statement_token1] = ACTIONS(9431), + [sym__ambiguous_call_statement] = ACTIONS(9431), + [aux_sym_addressof_expression_token1] = ACTIONS(9431), + [aux_sym_type_of_expression_token1] = ACTIONS(9431), + [aux_sym_unary_expression_token1] = ACTIONS(9431), + [sym_string_literal] = ACTIONS(9433), + [sym_number_literal] = ACTIONS(9433), + [aux_sym_boolean_literal_token1] = ACTIONS(9431), + [aux_sym_boolean_literal_token2] = ACTIONS(9431), + [sym_nothing_literal] = ACTIONS(9431), + [sym_null_literal] = ACTIONS(9431), + [sym_empty_literal] = ACTIONS(9431), + [sym_date_literal] = ACTIONS(9433), + [anon_sym_POUND] = ACTIONS(9431), + }, + [STATE(7164)] = { + [sym_identifier] = ACTIONS(8839), + [sym_newline] = ACTIONS(8841), + [anon_sym_COLON] = ACTIONS(8841), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8839), + [aux_sym_frm_property_statement_token1] = ACTIONS(8839), + [anon_sym_DOT] = ACTIONS(8839), + [anon_sym_BANG] = ACTIONS(8841), + [aux_sym__attribute_identifier_token1] = ACTIONS(8839), + [aux_sym_option_statement_token3] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8839), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8839), + [aux_sym_preprocessor_const_token1] = ACTIONS(8839), + [sym_static_modifier] = ACTIONS(8839), + [sym__dim_keyword] = ACTIONS(8839), + [sym__redim_keyword] = ACTIONS(8839), + [aux_sym_get_accessor_token1] = ACTIONS(8839), + [aux_sym_set_accessor_token1] = ACTIONS(8839), + [aux_sym_const_declaration_token1] = ACTIONS(8839), + [anon_sym_LPAREN] = ACTIONS(8841), + [aux_sym_as_type_clause_token2] = ACTIONS(8839), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8839), + [aux_sym_visibility_token1] = ACTIONS(8839), + [aux_sym_visibility_token2] = ACTIONS(8839), + [aux_sym_elseif_fragment_token1] = ACTIONS(8839), + [aux_sym_else_fragment_token1] = ACTIONS(8839), + [aux_sym_select_statement_token1] = ACTIONS(8839), + [aux_sym__for_header_token1] = ACTIONS(8839), + [aux_sym_do_statement_token1] = ACTIONS(8839), + [aux_sym_do_condition_token1] = ACTIONS(8839), + [aux_sym_with_statement_token1] = ACTIONS(8839), + [aux_sym_exit_statement_token1] = ACTIONS(8839), + [sym_end_statement] = ACTIONS(8841), + [aux_sym_on_goto_statement_token1] = ACTIONS(8839), + [aux_sym_on_goto_statement_token2] = ACTIONS(8839), + [aux_sym_on_error_statement_token2] = ACTIONS(8839), + [sym__ambiguous_redim_statement] = ACTIONS(8841), + [aux_sym_erase_statement_token1] = ACTIONS(8839), + [aux_sym_open_statement_token1] = ACTIONS(8839), + [aux_sym_file_mode_token2] = ACTIONS(8839), + [aux_sym_file_access_token2] = ACTIONS(8839), + [aux_sym_file_lock_token2] = ACTIONS(8839), + [aux_sym_print_statement_token1] = ACTIONS(8839), + [anon_sym_PLUS] = ACTIONS(8841), + [anon_sym_DASH] = ACTIONS(8839), + [anon_sym_QMARK] = ACTIONS(8841), + [aux_sym_close_statement_token1] = ACTIONS(8839), + [aux_sym_put_statement_token1] = ACTIONS(8839), + [aux_sym_unlock_statement_token1] = ACTIONS(8839), + [aux_sym_seek_statement_token1] = ACTIONS(8839), + [sym_reset_statement] = ACTIONS(8839), + [aux_sym_raise_event_statement_token1] = ACTIONS(8839), + [sym_stop_statement] = ACTIONS(8839), + [sym_beep_statement] = ACTIONS(8839), + [aux_sym_unload_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token1] = ACTIONS(8839), + [aux_sym_def_type_statement_token2] = ACTIONS(8839), + [aux_sym_def_type_statement_token3] = ACTIONS(8839), + [aux_sym_def_type_statement_token4] = ACTIONS(8839), + [aux_sym_def_type_statement_token5] = ACTIONS(8839), + [aux_sym_def_type_statement_token6] = ACTIONS(8839), + [aux_sym_def_type_statement_token7] = ACTIONS(8839), + [aux_sym_def_type_statement_token8] = ACTIONS(8839), + [aux_sym_def_type_statement_token9] = ACTIONS(8839), + [aux_sym_def_type_statement_token10] = ACTIONS(8839), + [aux_sym_def_type_statement_token11] = ACTIONS(8839), + [aux_sym_def_type_statement_token12] = ACTIONS(8839), + [aux_sym_def_type_statement_token13] = ACTIONS(8839), + [aux_sym_def_type_statement_token14] = ACTIONS(8839), + [aux_sym_call_statement_token1] = ACTIONS(8839), + [sym__ambiguous_call_statement] = ACTIONS(8839), + [aux_sym_addressof_expression_token1] = ACTIONS(8839), + [aux_sym_type_of_expression_token1] = ACTIONS(8839), + [aux_sym_unary_expression_token1] = ACTIONS(8839), + [sym_string_literal] = ACTIONS(8841), + [sym_number_literal] = ACTIONS(8841), + [aux_sym_boolean_literal_token1] = ACTIONS(8839), + [aux_sym_boolean_literal_token2] = ACTIONS(8839), + [sym_nothing_literal] = ACTIONS(8839), + [sym_null_literal] = ACTIONS(8839), + [sym_empty_literal] = ACTIONS(8839), + [sym_date_literal] = ACTIONS(8841), + [anon_sym_POUND] = ACTIONS(8839), + }, + [STATE(7165)] = { + [sym_identifier] = ACTIONS(9130), + [sym_newline] = ACTIONS(9132), + [anon_sym_COLON] = ACTIONS(9132), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9130), + [aux_sym_frm_property_statement_token1] = ACTIONS(9130), + [anon_sym_DOT] = ACTIONS(9130), + [anon_sym_BANG] = ACTIONS(9132), + [aux_sym__attribute_identifier_token1] = ACTIONS(9130), + [aux_sym_option_statement_token3] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9130), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9130), + [aux_sym_preprocessor_const_token1] = ACTIONS(9130), + [sym_static_modifier] = ACTIONS(9130), + [sym__dim_keyword] = ACTIONS(9130), + [sym__redim_keyword] = ACTIONS(9130), + [aux_sym_get_accessor_token1] = ACTIONS(9130), + [aux_sym_set_accessor_token1] = ACTIONS(9130), + [aux_sym_const_declaration_token1] = ACTIONS(9130), + [anon_sym_LPAREN] = ACTIONS(9132), + [aux_sym_as_type_clause_token2] = ACTIONS(9130), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9130), + [aux_sym_visibility_token1] = ACTIONS(9130), + [aux_sym_visibility_token2] = ACTIONS(9130), + [aux_sym_elseif_fragment_token1] = ACTIONS(9130), + [aux_sym_else_fragment_token1] = ACTIONS(9130), + [aux_sym_select_statement_token1] = ACTIONS(9130), + [aux_sym__for_header_token1] = ACTIONS(9130), + [aux_sym_do_statement_token1] = ACTIONS(9130), + [aux_sym_do_condition_token1] = ACTIONS(9130), + [aux_sym_with_statement_token1] = ACTIONS(9130), + [aux_sym_exit_statement_token1] = ACTIONS(9130), + [sym_end_statement] = ACTIONS(9132), + [aux_sym_on_goto_statement_token1] = ACTIONS(9130), + [aux_sym_on_goto_statement_token2] = ACTIONS(9130), + [aux_sym_on_error_statement_token2] = ACTIONS(9130), + [sym__ambiguous_redim_statement] = ACTIONS(9132), + [aux_sym_erase_statement_token1] = ACTIONS(9130), + [aux_sym_open_statement_token1] = ACTIONS(9130), + [aux_sym_file_mode_token2] = ACTIONS(9130), + [aux_sym_file_access_token2] = ACTIONS(9130), + [aux_sym_file_lock_token2] = ACTIONS(9130), + [aux_sym_print_statement_token1] = ACTIONS(9130), + [anon_sym_PLUS] = ACTIONS(9132), + [anon_sym_DASH] = ACTIONS(9130), + [anon_sym_QMARK] = ACTIONS(9132), + [aux_sym_close_statement_token1] = ACTIONS(9130), + [aux_sym_put_statement_token1] = ACTIONS(9130), + [aux_sym_unlock_statement_token1] = ACTIONS(9130), + [aux_sym_seek_statement_token1] = ACTIONS(9130), + [sym_reset_statement] = ACTIONS(9130), + [aux_sym_raise_event_statement_token1] = ACTIONS(9130), + [sym_stop_statement] = ACTIONS(9130), + [sym_beep_statement] = ACTIONS(9130), + [aux_sym_unload_statement_token1] = ACTIONS(9130), + [aux_sym_def_type_statement_token1] = ACTIONS(9130), + [aux_sym_def_type_statement_token2] = ACTIONS(9130), + [aux_sym_def_type_statement_token3] = ACTIONS(9130), + [aux_sym_def_type_statement_token4] = ACTIONS(9130), + [aux_sym_def_type_statement_token5] = ACTIONS(9130), + [aux_sym_def_type_statement_token6] = ACTIONS(9130), + [aux_sym_def_type_statement_token7] = ACTIONS(9130), + [aux_sym_def_type_statement_token8] = ACTIONS(9130), + [aux_sym_def_type_statement_token9] = ACTIONS(9130), + [aux_sym_def_type_statement_token10] = ACTIONS(9130), + [aux_sym_def_type_statement_token11] = ACTIONS(9130), + [aux_sym_def_type_statement_token12] = ACTIONS(9130), + [aux_sym_def_type_statement_token13] = ACTIONS(9130), + [aux_sym_def_type_statement_token14] = ACTIONS(9130), + [aux_sym_call_statement_token1] = ACTIONS(9130), + [sym__ambiguous_call_statement] = ACTIONS(9130), + [aux_sym_addressof_expression_token1] = ACTIONS(9130), + [aux_sym_type_of_expression_token1] = ACTIONS(9130), + [aux_sym_unary_expression_token1] = ACTIONS(9130), + [sym_string_literal] = ACTIONS(9132), + [sym_number_literal] = ACTIONS(9132), + [aux_sym_boolean_literal_token1] = ACTIONS(9130), + [aux_sym_boolean_literal_token2] = ACTIONS(9130), + [sym_nothing_literal] = ACTIONS(9130), + [sym_null_literal] = ACTIONS(9130), + [sym_empty_literal] = ACTIONS(9130), + [sym_date_literal] = ACTIONS(9132), + [anon_sym_POUND] = ACTIONS(9130), + }, + [STATE(7166)] = { + [sym_identifier] = ACTIONS(8813), + [sym_newline] = ACTIONS(8815), + [anon_sym_COLON] = ACTIONS(8815), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8813), + [aux_sym_frm_property_statement_token1] = ACTIONS(8813), + [anon_sym_DOT] = ACTIONS(8813), + [anon_sym_BANG] = ACTIONS(8815), + [aux_sym__attribute_identifier_token1] = ACTIONS(8813), + [aux_sym_option_statement_token3] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8813), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8813), + [aux_sym_preprocessor_const_token1] = ACTIONS(8813), + [sym_static_modifier] = ACTIONS(8813), + [sym__dim_keyword] = ACTIONS(8813), + [sym__redim_keyword] = ACTIONS(8813), + [aux_sym_get_accessor_token1] = ACTIONS(8813), + [aux_sym_set_accessor_token1] = ACTIONS(8813), + [aux_sym_const_declaration_token1] = ACTIONS(8813), + [anon_sym_LPAREN] = ACTIONS(8815), + [aux_sym_as_type_clause_token2] = ACTIONS(8813), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8813), + [aux_sym_visibility_token1] = ACTIONS(8813), + [aux_sym_visibility_token2] = ACTIONS(8813), + [aux_sym_elseif_fragment_token1] = ACTIONS(8813), + [aux_sym_else_fragment_token1] = ACTIONS(8813), + [aux_sym_select_statement_token1] = ACTIONS(8813), + [aux_sym__for_header_token1] = ACTIONS(8813), + [aux_sym_do_statement_token1] = ACTIONS(8813), + [aux_sym_do_condition_token1] = ACTIONS(8813), + [aux_sym_with_statement_token1] = ACTIONS(8813), + [aux_sym_exit_statement_token1] = ACTIONS(8813), + [sym_end_statement] = ACTIONS(8815), + [aux_sym_on_goto_statement_token1] = ACTIONS(8813), + [aux_sym_on_goto_statement_token2] = ACTIONS(8813), + [aux_sym_on_error_statement_token2] = ACTIONS(8813), + [sym__ambiguous_redim_statement] = ACTIONS(8815), + [aux_sym_erase_statement_token1] = ACTIONS(8813), + [aux_sym_open_statement_token1] = ACTIONS(8813), + [aux_sym_file_mode_token2] = ACTIONS(8813), + [aux_sym_file_access_token2] = ACTIONS(8813), + [aux_sym_file_lock_token2] = ACTIONS(8813), + [aux_sym_print_statement_token1] = ACTIONS(8813), + [anon_sym_PLUS] = ACTIONS(8815), + [anon_sym_DASH] = ACTIONS(8813), + [anon_sym_QMARK] = ACTIONS(8815), + [aux_sym_close_statement_token1] = ACTIONS(8813), + [aux_sym_put_statement_token1] = ACTIONS(8813), + [aux_sym_unlock_statement_token1] = ACTIONS(8813), + [aux_sym_seek_statement_token1] = ACTIONS(8813), + [sym_reset_statement] = ACTIONS(8813), + [aux_sym_raise_event_statement_token1] = ACTIONS(8813), + [sym_stop_statement] = ACTIONS(8813), + [sym_beep_statement] = ACTIONS(8813), + [aux_sym_unload_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token1] = ACTIONS(8813), + [aux_sym_def_type_statement_token2] = ACTIONS(8813), + [aux_sym_def_type_statement_token3] = ACTIONS(8813), + [aux_sym_def_type_statement_token4] = ACTIONS(8813), + [aux_sym_def_type_statement_token5] = ACTIONS(8813), + [aux_sym_def_type_statement_token6] = ACTIONS(8813), + [aux_sym_def_type_statement_token7] = ACTIONS(8813), + [aux_sym_def_type_statement_token8] = ACTIONS(8813), + [aux_sym_def_type_statement_token9] = ACTIONS(8813), + [aux_sym_def_type_statement_token10] = ACTIONS(8813), + [aux_sym_def_type_statement_token11] = ACTIONS(8813), + [aux_sym_def_type_statement_token12] = ACTIONS(8813), + [aux_sym_def_type_statement_token13] = ACTIONS(8813), + [aux_sym_def_type_statement_token14] = ACTIONS(8813), + [aux_sym_call_statement_token1] = ACTIONS(8813), + [sym__ambiguous_call_statement] = ACTIONS(8813), + [aux_sym_addressof_expression_token1] = ACTIONS(8813), + [aux_sym_type_of_expression_token1] = ACTIONS(8813), + [aux_sym_unary_expression_token1] = ACTIONS(8813), + [sym_string_literal] = ACTIONS(8815), + [sym_number_literal] = ACTIONS(8815), + [aux_sym_boolean_literal_token1] = ACTIONS(8813), + [aux_sym_boolean_literal_token2] = ACTIONS(8813), + [sym_nothing_literal] = ACTIONS(8813), + [sym_null_literal] = ACTIONS(8813), + [sym_empty_literal] = ACTIONS(8813), + [sym_date_literal] = ACTIONS(8815), + [anon_sym_POUND] = ACTIONS(8813), + }, + [STATE(7167)] = { + [sym_identifier] = ACTIONS(9405), + [sym_newline] = ACTIONS(9407), + [anon_sym_COLON] = ACTIONS(9407), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9405), + [aux_sym_frm_property_statement_token1] = ACTIONS(9405), + [anon_sym_DOT] = ACTIONS(9405), + [anon_sym_BANG] = ACTIONS(9407), + [aux_sym__attribute_identifier_token1] = ACTIONS(9405), + [aux_sym_option_statement_token3] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9405), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9405), + [aux_sym_preprocessor_const_token1] = ACTIONS(9405), + [sym_static_modifier] = ACTIONS(9405), + [sym__dim_keyword] = ACTIONS(9405), + [sym__redim_keyword] = ACTIONS(9405), + [aux_sym_get_accessor_token1] = ACTIONS(9405), + [aux_sym_set_accessor_token1] = ACTIONS(9405), + [aux_sym_const_declaration_token1] = ACTIONS(9405), + [anon_sym_LPAREN] = ACTIONS(9407), + [aux_sym_as_type_clause_token2] = ACTIONS(9405), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9405), + [aux_sym_visibility_token1] = ACTIONS(9405), + [aux_sym_visibility_token2] = ACTIONS(9405), + [aux_sym_elseif_fragment_token1] = ACTIONS(9405), + [aux_sym_else_fragment_token1] = ACTIONS(9405), + [aux_sym_select_statement_token1] = ACTIONS(9405), + [aux_sym__for_header_token1] = ACTIONS(9405), + [aux_sym_do_statement_token1] = ACTIONS(9405), + [aux_sym_do_condition_token1] = ACTIONS(9405), + [aux_sym_with_statement_token1] = ACTIONS(9405), + [aux_sym_exit_statement_token1] = ACTIONS(9405), + [sym_end_statement] = ACTIONS(9407), + [aux_sym_on_goto_statement_token1] = ACTIONS(9405), + [aux_sym_on_goto_statement_token2] = ACTIONS(9405), + [aux_sym_on_error_statement_token2] = ACTIONS(9405), + [sym__ambiguous_redim_statement] = ACTIONS(9407), + [aux_sym_erase_statement_token1] = ACTIONS(9405), + [aux_sym_open_statement_token1] = ACTIONS(9405), + [aux_sym_file_mode_token2] = ACTIONS(9405), + [aux_sym_file_access_token2] = ACTIONS(9405), + [aux_sym_file_lock_token2] = ACTIONS(9405), + [aux_sym_print_statement_token1] = ACTIONS(9405), + [anon_sym_PLUS] = ACTIONS(9407), + [anon_sym_DASH] = ACTIONS(9405), + [anon_sym_QMARK] = ACTIONS(9407), + [aux_sym_close_statement_token1] = ACTIONS(9405), + [aux_sym_put_statement_token1] = ACTIONS(9405), + [aux_sym_unlock_statement_token1] = ACTIONS(9405), + [aux_sym_seek_statement_token1] = ACTIONS(9405), + [sym_reset_statement] = ACTIONS(9405), + [aux_sym_raise_event_statement_token1] = ACTIONS(9405), + [sym_stop_statement] = ACTIONS(9405), + [sym_beep_statement] = ACTIONS(9405), + [aux_sym_unload_statement_token1] = ACTIONS(9405), + [aux_sym_def_type_statement_token1] = ACTIONS(9405), + [aux_sym_def_type_statement_token2] = ACTIONS(9405), + [aux_sym_def_type_statement_token3] = ACTIONS(9405), + [aux_sym_def_type_statement_token4] = ACTIONS(9405), + [aux_sym_def_type_statement_token5] = ACTIONS(9405), + [aux_sym_def_type_statement_token6] = ACTIONS(9405), + [aux_sym_def_type_statement_token7] = ACTIONS(9405), + [aux_sym_def_type_statement_token8] = ACTIONS(9405), + [aux_sym_def_type_statement_token9] = ACTIONS(9405), + [aux_sym_def_type_statement_token10] = ACTIONS(9405), + [aux_sym_def_type_statement_token11] = ACTIONS(9405), + [aux_sym_def_type_statement_token12] = ACTIONS(9405), + [aux_sym_def_type_statement_token13] = ACTIONS(9405), + [aux_sym_def_type_statement_token14] = ACTIONS(9405), + [aux_sym_call_statement_token1] = ACTIONS(9405), + [sym__ambiguous_call_statement] = ACTIONS(9405), + [aux_sym_addressof_expression_token1] = ACTIONS(9405), + [aux_sym_type_of_expression_token1] = ACTIONS(9405), + [aux_sym_unary_expression_token1] = ACTIONS(9405), + [sym_string_literal] = ACTIONS(9407), + [sym_number_literal] = ACTIONS(9407), + [aux_sym_boolean_literal_token1] = ACTIONS(9405), + [aux_sym_boolean_literal_token2] = ACTIONS(9405), + [sym_nothing_literal] = ACTIONS(9405), + [sym_null_literal] = ACTIONS(9405), + [sym_empty_literal] = ACTIONS(9405), + [sym_date_literal] = ACTIONS(9407), + [anon_sym_POUND] = ACTIONS(9405), + }, + [STATE(7168)] = { + [sym_identifier] = ACTIONS(9409), + [sym_newline] = ACTIONS(9411), + [anon_sym_COLON] = ACTIONS(9411), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9409), + [aux_sym_frm_property_statement_token1] = ACTIONS(9409), + [anon_sym_DOT] = ACTIONS(9409), + [anon_sym_BANG] = ACTIONS(9411), + [aux_sym__attribute_identifier_token1] = ACTIONS(9409), + [aux_sym_option_statement_token3] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9409), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9409), + [aux_sym_preprocessor_const_token1] = ACTIONS(9409), + [sym_static_modifier] = ACTIONS(9409), + [sym__dim_keyword] = ACTIONS(9409), + [sym__redim_keyword] = ACTIONS(9409), + [aux_sym_get_accessor_token1] = ACTIONS(9409), + [aux_sym_set_accessor_token1] = ACTIONS(9409), + [aux_sym_const_declaration_token1] = ACTIONS(9409), + [anon_sym_LPAREN] = ACTIONS(9411), + [aux_sym_as_type_clause_token2] = ACTIONS(9409), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9409), + [aux_sym_visibility_token1] = ACTIONS(9409), + [aux_sym_visibility_token2] = ACTIONS(9409), + [aux_sym_elseif_fragment_token1] = ACTIONS(9409), + [aux_sym_else_fragment_token1] = ACTIONS(9409), + [aux_sym_select_statement_token1] = ACTIONS(9409), + [aux_sym__for_header_token1] = ACTIONS(9409), + [aux_sym_do_statement_token1] = ACTIONS(9409), + [aux_sym_do_condition_token1] = ACTIONS(9409), + [aux_sym_with_statement_token1] = ACTIONS(9409), + [aux_sym_exit_statement_token1] = ACTIONS(9409), + [sym_end_statement] = ACTIONS(9411), + [aux_sym_on_goto_statement_token1] = ACTIONS(9409), + [aux_sym_on_goto_statement_token2] = ACTIONS(9409), + [aux_sym_on_error_statement_token2] = ACTIONS(9409), + [sym__ambiguous_redim_statement] = ACTIONS(9411), + [aux_sym_erase_statement_token1] = ACTIONS(9409), + [aux_sym_open_statement_token1] = ACTIONS(9409), + [aux_sym_file_mode_token2] = ACTIONS(9409), + [aux_sym_file_access_token2] = ACTIONS(9409), + [aux_sym_file_lock_token2] = ACTIONS(9409), + [aux_sym_print_statement_token1] = ACTIONS(9409), + [anon_sym_PLUS] = ACTIONS(9411), + [anon_sym_DASH] = ACTIONS(9409), + [anon_sym_QMARK] = ACTIONS(9411), + [aux_sym_close_statement_token1] = ACTIONS(9409), + [aux_sym_put_statement_token1] = ACTIONS(9409), + [aux_sym_unlock_statement_token1] = ACTIONS(9409), + [aux_sym_seek_statement_token1] = ACTIONS(9409), + [sym_reset_statement] = ACTIONS(9409), + [aux_sym_raise_event_statement_token1] = ACTIONS(9409), + [sym_stop_statement] = ACTIONS(9409), + [sym_beep_statement] = ACTIONS(9409), + [aux_sym_unload_statement_token1] = ACTIONS(9409), + [aux_sym_def_type_statement_token1] = ACTIONS(9409), + [aux_sym_def_type_statement_token2] = ACTIONS(9409), + [aux_sym_def_type_statement_token3] = ACTIONS(9409), + [aux_sym_def_type_statement_token4] = ACTIONS(9409), + [aux_sym_def_type_statement_token5] = ACTIONS(9409), + [aux_sym_def_type_statement_token6] = ACTIONS(9409), + [aux_sym_def_type_statement_token7] = ACTIONS(9409), + [aux_sym_def_type_statement_token8] = ACTIONS(9409), + [aux_sym_def_type_statement_token9] = ACTIONS(9409), + [aux_sym_def_type_statement_token10] = ACTIONS(9409), + [aux_sym_def_type_statement_token11] = ACTIONS(9409), + [aux_sym_def_type_statement_token12] = ACTIONS(9409), + [aux_sym_def_type_statement_token13] = ACTIONS(9409), + [aux_sym_def_type_statement_token14] = ACTIONS(9409), + [aux_sym_call_statement_token1] = ACTIONS(9409), + [sym__ambiguous_call_statement] = ACTIONS(9409), + [aux_sym_addressof_expression_token1] = ACTIONS(9409), + [aux_sym_type_of_expression_token1] = ACTIONS(9409), + [aux_sym_unary_expression_token1] = ACTIONS(9409), + [sym_string_literal] = ACTIONS(9411), + [sym_number_literal] = ACTIONS(9411), + [aux_sym_boolean_literal_token1] = ACTIONS(9409), + [aux_sym_boolean_literal_token2] = ACTIONS(9409), + [sym_nothing_literal] = ACTIONS(9409), + [sym_null_literal] = ACTIONS(9409), + [sym_empty_literal] = ACTIONS(9409), + [sym_date_literal] = ACTIONS(9411), + [anon_sym_POUND] = ACTIONS(9409), + }, + [STATE(7169)] = { + [sym_identifier] = ACTIONS(8951), + [sym_newline] = ACTIONS(8953), + [anon_sym_COLON] = ACTIONS(8955), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8951), + [aux_sym_frm_property_statement_token1] = ACTIONS(8951), + [anon_sym_DOT] = ACTIONS(8951), + [anon_sym_BANG] = ACTIONS(8953), + [aux_sym__attribute_identifier_token1] = ACTIONS(8951), + [aux_sym_option_statement_token3] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8951), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8951), + [aux_sym_preprocessor_const_token1] = ACTIONS(8951), + [sym_static_modifier] = ACTIONS(8951), + [sym__dim_keyword] = ACTIONS(8951), + [sym__redim_keyword] = ACTIONS(8951), + [aux_sym_get_accessor_token1] = ACTIONS(8951), + [aux_sym_set_accessor_token1] = ACTIONS(8951), + [aux_sym_const_declaration_token1] = ACTIONS(8951), + [anon_sym_LPAREN] = ACTIONS(8953), + [aux_sym_as_type_clause_token2] = ACTIONS(8951), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8951), + [aux_sym_visibility_token1] = ACTIONS(8951), + [aux_sym_visibility_token2] = ACTIONS(8951), + [aux_sym_elseif_fragment_token1] = ACTIONS(8951), + [aux_sym_else_fragment_token1] = ACTIONS(8951), + [aux_sym_select_statement_token1] = ACTIONS(8951), + [aux_sym__for_header_token1] = ACTIONS(8951), + [aux_sym_do_statement_token1] = ACTIONS(8951), + [aux_sym_do_condition_token1] = ACTIONS(8951), + [aux_sym_with_statement_token1] = ACTIONS(8951), + [aux_sym_exit_statement_token1] = ACTIONS(8951), + [sym_end_statement] = ACTIONS(8953), + [aux_sym_on_goto_statement_token1] = ACTIONS(8951), + [aux_sym_on_goto_statement_token2] = ACTIONS(8951), + [aux_sym_on_error_statement_token2] = ACTIONS(8951), + [sym__ambiguous_redim_statement] = ACTIONS(8953), + [aux_sym_erase_statement_token1] = ACTIONS(8951), + [aux_sym_open_statement_token1] = ACTIONS(8951), + [aux_sym_file_mode_token2] = ACTIONS(8951), + [aux_sym_file_access_token2] = ACTIONS(8951), + [aux_sym_file_lock_token2] = ACTIONS(8951), + [aux_sym_print_statement_token1] = ACTIONS(8951), + [anon_sym_PLUS] = ACTIONS(8953), + [anon_sym_DASH] = ACTIONS(8951), + [anon_sym_QMARK] = ACTIONS(8953), + [aux_sym_close_statement_token1] = ACTIONS(8951), + [aux_sym_put_statement_token1] = ACTIONS(8951), + [aux_sym_unlock_statement_token1] = ACTIONS(8951), + [aux_sym_seek_statement_token1] = ACTIONS(8951), + [sym_reset_statement] = ACTIONS(8951), + [aux_sym_raise_event_statement_token1] = ACTIONS(8951), + [sym_stop_statement] = ACTIONS(8951), + [sym_beep_statement] = ACTIONS(8951), + [aux_sym_unload_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token1] = ACTIONS(8951), + [aux_sym_def_type_statement_token2] = ACTIONS(8951), + [aux_sym_def_type_statement_token3] = ACTIONS(8951), + [aux_sym_def_type_statement_token4] = ACTIONS(8951), + [aux_sym_def_type_statement_token5] = ACTIONS(8951), + [aux_sym_def_type_statement_token6] = ACTIONS(8951), + [aux_sym_def_type_statement_token7] = ACTIONS(8951), + [aux_sym_def_type_statement_token8] = ACTIONS(8951), + [aux_sym_def_type_statement_token9] = ACTIONS(8951), + [aux_sym_def_type_statement_token10] = ACTIONS(8951), + [aux_sym_def_type_statement_token11] = ACTIONS(8951), + [aux_sym_def_type_statement_token12] = ACTIONS(8951), + [aux_sym_def_type_statement_token13] = ACTIONS(8951), + [aux_sym_def_type_statement_token14] = ACTIONS(8951), + [aux_sym_call_statement_token1] = ACTIONS(8951), + [sym__ambiguous_call_statement] = ACTIONS(8951), + [aux_sym_addressof_expression_token1] = ACTIONS(8951), + [aux_sym_type_of_expression_token1] = ACTIONS(8951), + [aux_sym_unary_expression_token1] = ACTIONS(8951), + [sym_string_literal] = ACTIONS(8953), + [sym_number_literal] = ACTIONS(8955), + [aux_sym_boolean_literal_token1] = ACTIONS(8951), + [aux_sym_boolean_literal_token2] = ACTIONS(8951), + [sym_nothing_literal] = ACTIONS(8951), + [sym_null_literal] = ACTIONS(8951), + [sym_empty_literal] = ACTIONS(8951), + [sym_date_literal] = ACTIONS(8953), + [anon_sym_POUND] = ACTIONS(8951), + }, + [STATE(7170)] = { + [sym_identifier] = ACTIONS(8853), + [sym_newline] = ACTIONS(8855), + [anon_sym_COLON] = ACTIONS(8855), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8853), + [aux_sym_frm_property_statement_token1] = ACTIONS(8853), + [anon_sym_DOT] = ACTIONS(8853), + [anon_sym_BANG] = ACTIONS(8855), + [aux_sym__attribute_identifier_token1] = ACTIONS(8853), + [aux_sym_option_statement_token3] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8853), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8853), + [aux_sym_preprocessor_const_token1] = ACTIONS(8853), + [sym_static_modifier] = ACTIONS(8853), + [sym__dim_keyword] = ACTIONS(8853), + [sym__redim_keyword] = ACTIONS(8853), + [aux_sym_get_accessor_token1] = ACTIONS(8853), + [aux_sym_set_accessor_token1] = ACTIONS(8853), + [aux_sym_const_declaration_token1] = ACTIONS(8853), + [anon_sym_LPAREN] = ACTIONS(8855), + [aux_sym_as_type_clause_token2] = ACTIONS(8853), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8853), + [aux_sym_visibility_token1] = ACTIONS(8853), + [aux_sym_visibility_token2] = ACTIONS(8853), + [aux_sym_elseif_fragment_token1] = ACTIONS(8853), + [aux_sym_else_fragment_token1] = ACTIONS(8853), + [aux_sym_select_statement_token1] = ACTIONS(8853), + [aux_sym__for_header_token1] = ACTIONS(8853), + [aux_sym_do_statement_token1] = ACTIONS(8853), + [aux_sym_do_condition_token1] = ACTIONS(8853), + [aux_sym_with_statement_token1] = ACTIONS(8853), + [aux_sym_exit_statement_token1] = ACTIONS(8853), + [sym_end_statement] = ACTIONS(8855), + [aux_sym_on_goto_statement_token1] = ACTIONS(8853), + [aux_sym_on_goto_statement_token2] = ACTIONS(8853), + [aux_sym_on_error_statement_token2] = ACTIONS(8853), + [sym__ambiguous_redim_statement] = ACTIONS(8855), + [aux_sym_erase_statement_token1] = ACTIONS(8853), + [aux_sym_open_statement_token1] = ACTIONS(8853), + [aux_sym_file_mode_token2] = ACTIONS(8853), + [aux_sym_file_access_token2] = ACTIONS(8853), + [aux_sym_file_lock_token2] = ACTIONS(8853), + [aux_sym_print_statement_token1] = ACTIONS(8853), + [anon_sym_PLUS] = ACTIONS(8855), + [anon_sym_DASH] = ACTIONS(8853), + [anon_sym_QMARK] = ACTIONS(8855), + [aux_sym_close_statement_token1] = ACTIONS(8853), + [aux_sym_put_statement_token1] = ACTIONS(8853), + [aux_sym_unlock_statement_token1] = ACTIONS(8853), + [aux_sym_seek_statement_token1] = ACTIONS(8853), + [sym_reset_statement] = ACTIONS(8853), + [aux_sym_raise_event_statement_token1] = ACTIONS(8853), + [sym_stop_statement] = ACTIONS(8853), + [sym_beep_statement] = ACTIONS(8853), + [aux_sym_unload_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token1] = ACTIONS(8853), + [aux_sym_def_type_statement_token2] = ACTIONS(8853), + [aux_sym_def_type_statement_token3] = ACTIONS(8853), + [aux_sym_def_type_statement_token4] = ACTIONS(8853), + [aux_sym_def_type_statement_token5] = ACTIONS(8853), + [aux_sym_def_type_statement_token6] = ACTIONS(8853), + [aux_sym_def_type_statement_token7] = ACTIONS(8853), + [aux_sym_def_type_statement_token8] = ACTIONS(8853), + [aux_sym_def_type_statement_token9] = ACTIONS(8853), + [aux_sym_def_type_statement_token10] = ACTIONS(8853), + [aux_sym_def_type_statement_token11] = ACTIONS(8853), + [aux_sym_def_type_statement_token12] = ACTIONS(8853), + [aux_sym_def_type_statement_token13] = ACTIONS(8853), + [aux_sym_def_type_statement_token14] = ACTIONS(8853), + [aux_sym_call_statement_token1] = ACTIONS(8853), + [sym__ambiguous_call_statement] = ACTIONS(8853), + [aux_sym_addressof_expression_token1] = ACTIONS(8853), + [aux_sym_type_of_expression_token1] = ACTIONS(8853), + [aux_sym_unary_expression_token1] = ACTIONS(8853), + [sym_string_literal] = ACTIONS(8855), + [sym_number_literal] = ACTIONS(8855), + [aux_sym_boolean_literal_token1] = ACTIONS(8853), + [aux_sym_boolean_literal_token2] = ACTIONS(8853), + [sym_nothing_literal] = ACTIONS(8853), + [sym_null_literal] = ACTIONS(8853), + [sym_empty_literal] = ACTIONS(8853), + [sym_date_literal] = ACTIONS(8855), + [anon_sym_POUND] = ACTIONS(8853), + }, + [STATE(7171)] = { + [sym_identifier] = ACTIONS(8857), + [sym_newline] = ACTIONS(8859), + [anon_sym_COLON] = ACTIONS(8859), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8857), + [aux_sym_frm_property_statement_token1] = ACTIONS(8857), + [anon_sym_DOT] = ACTIONS(8857), + [anon_sym_BANG] = ACTIONS(8859), + [aux_sym__attribute_identifier_token1] = ACTIONS(8857), + [aux_sym_option_statement_token3] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8857), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8857), + [aux_sym_preprocessor_const_token1] = ACTIONS(8857), + [sym_static_modifier] = ACTIONS(8857), + [sym__dim_keyword] = ACTIONS(8857), + [sym__redim_keyword] = ACTIONS(8857), + [aux_sym_get_accessor_token1] = ACTIONS(8857), + [aux_sym_set_accessor_token1] = ACTIONS(8857), + [aux_sym_const_declaration_token1] = ACTIONS(8857), + [anon_sym_LPAREN] = ACTIONS(8859), + [aux_sym_as_type_clause_token2] = ACTIONS(8857), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8857), + [aux_sym_visibility_token1] = ACTIONS(8857), + [aux_sym_visibility_token2] = ACTIONS(8857), + [aux_sym_elseif_fragment_token1] = ACTIONS(8857), + [aux_sym_else_fragment_token1] = ACTIONS(8857), + [aux_sym_select_statement_token1] = ACTIONS(8857), + [aux_sym__for_header_token1] = ACTIONS(8857), + [aux_sym_do_statement_token1] = ACTIONS(8857), + [aux_sym_do_condition_token1] = ACTIONS(8857), + [aux_sym_with_statement_token1] = ACTIONS(8857), + [aux_sym_exit_statement_token1] = ACTIONS(8857), + [sym_end_statement] = ACTIONS(8859), + [aux_sym_on_goto_statement_token1] = ACTIONS(8857), + [aux_sym_on_goto_statement_token2] = ACTIONS(8857), + [aux_sym_on_error_statement_token2] = ACTIONS(8857), + [sym__ambiguous_redim_statement] = ACTIONS(8859), + [aux_sym_erase_statement_token1] = ACTIONS(8857), + [aux_sym_open_statement_token1] = ACTIONS(8857), + [aux_sym_file_mode_token2] = ACTIONS(8857), + [aux_sym_file_access_token2] = ACTIONS(8857), + [aux_sym_file_lock_token2] = ACTIONS(8857), + [aux_sym_print_statement_token1] = ACTIONS(8857), + [anon_sym_PLUS] = ACTIONS(8859), + [anon_sym_DASH] = ACTIONS(8857), + [anon_sym_QMARK] = ACTIONS(8859), + [aux_sym_close_statement_token1] = ACTIONS(8857), + [aux_sym_put_statement_token1] = ACTIONS(8857), + [aux_sym_unlock_statement_token1] = ACTIONS(8857), + [aux_sym_seek_statement_token1] = ACTIONS(8857), + [sym_reset_statement] = ACTIONS(8857), + [aux_sym_raise_event_statement_token1] = ACTIONS(8857), + [sym_stop_statement] = ACTIONS(8857), + [sym_beep_statement] = ACTIONS(8857), + [aux_sym_unload_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token1] = ACTIONS(8857), + [aux_sym_def_type_statement_token2] = ACTIONS(8857), + [aux_sym_def_type_statement_token3] = ACTIONS(8857), + [aux_sym_def_type_statement_token4] = ACTIONS(8857), + [aux_sym_def_type_statement_token5] = ACTIONS(8857), + [aux_sym_def_type_statement_token6] = ACTIONS(8857), + [aux_sym_def_type_statement_token7] = ACTIONS(8857), + [aux_sym_def_type_statement_token8] = ACTIONS(8857), + [aux_sym_def_type_statement_token9] = ACTIONS(8857), + [aux_sym_def_type_statement_token10] = ACTIONS(8857), + [aux_sym_def_type_statement_token11] = ACTIONS(8857), + [aux_sym_def_type_statement_token12] = ACTIONS(8857), + [aux_sym_def_type_statement_token13] = ACTIONS(8857), + [aux_sym_def_type_statement_token14] = ACTIONS(8857), + [aux_sym_call_statement_token1] = ACTIONS(8857), + [sym__ambiguous_call_statement] = ACTIONS(8857), + [aux_sym_addressof_expression_token1] = ACTIONS(8857), + [aux_sym_type_of_expression_token1] = ACTIONS(8857), + [aux_sym_unary_expression_token1] = ACTIONS(8857), + [sym_string_literal] = ACTIONS(8859), + [sym_number_literal] = ACTIONS(8859), + [aux_sym_boolean_literal_token1] = ACTIONS(8857), + [aux_sym_boolean_literal_token2] = ACTIONS(8857), + [sym_nothing_literal] = ACTIONS(8857), + [sym_null_literal] = ACTIONS(8857), + [sym_empty_literal] = ACTIONS(8857), + [sym_date_literal] = ACTIONS(8859), + [anon_sym_POUND] = ACTIONS(8857), + }, + [STATE(7172)] = { + [sym_identifier] = ACTIONS(9106), + [sym_newline] = ACTIONS(9108), + [anon_sym_COLON] = ACTIONS(9108), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9106), + [aux_sym_frm_property_statement_token1] = ACTIONS(9106), + [anon_sym_DOT] = ACTIONS(9106), + [anon_sym_BANG] = ACTIONS(9108), + [aux_sym__attribute_identifier_token1] = ACTIONS(9106), + [aux_sym_option_statement_token3] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9106), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9106), + [aux_sym_preprocessor_const_token1] = ACTIONS(9106), + [sym_static_modifier] = ACTIONS(9106), + [sym__dim_keyword] = ACTIONS(9106), + [sym__redim_keyword] = ACTIONS(9106), + [aux_sym_get_accessor_token1] = ACTIONS(9106), + [aux_sym_set_accessor_token1] = ACTIONS(9106), + [aux_sym_const_declaration_token1] = ACTIONS(9106), + [anon_sym_LPAREN] = ACTIONS(9108), + [aux_sym_as_type_clause_token2] = ACTIONS(9106), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9106), + [aux_sym_visibility_token1] = ACTIONS(9106), + [aux_sym_visibility_token2] = ACTIONS(9106), + [aux_sym_elseif_fragment_token1] = ACTIONS(9106), + [aux_sym_else_fragment_token1] = ACTIONS(9106), + [aux_sym_select_statement_token1] = ACTIONS(9106), + [aux_sym__for_header_token1] = ACTIONS(9106), + [aux_sym_do_statement_token1] = ACTIONS(9106), + [aux_sym_do_condition_token1] = ACTIONS(9106), + [aux_sym_with_statement_token1] = ACTIONS(9106), + [aux_sym_exit_statement_token1] = ACTIONS(9106), + [sym_end_statement] = ACTIONS(9108), + [aux_sym_on_goto_statement_token1] = ACTIONS(9106), + [aux_sym_on_goto_statement_token2] = ACTIONS(9106), + [aux_sym_on_error_statement_token2] = ACTIONS(9106), + [sym__ambiguous_redim_statement] = ACTIONS(9108), + [aux_sym_erase_statement_token1] = ACTIONS(9106), + [aux_sym_open_statement_token1] = ACTIONS(9106), + [aux_sym_file_mode_token2] = ACTIONS(9106), + [aux_sym_file_access_token2] = ACTIONS(9106), + [aux_sym_file_lock_token2] = ACTIONS(9106), + [aux_sym_print_statement_token1] = ACTIONS(9106), + [anon_sym_PLUS] = ACTIONS(9108), + [anon_sym_DASH] = ACTIONS(9106), + [anon_sym_QMARK] = ACTIONS(9108), + [aux_sym_close_statement_token1] = ACTIONS(9106), + [aux_sym_put_statement_token1] = ACTIONS(9106), + [aux_sym_unlock_statement_token1] = ACTIONS(9106), + [aux_sym_seek_statement_token1] = ACTIONS(9106), + [sym_reset_statement] = ACTIONS(9106), + [aux_sym_raise_event_statement_token1] = ACTIONS(9106), + [sym_stop_statement] = ACTIONS(9106), + [sym_beep_statement] = ACTIONS(9106), + [aux_sym_unload_statement_token1] = ACTIONS(9106), + [aux_sym_def_type_statement_token1] = ACTIONS(9106), + [aux_sym_def_type_statement_token2] = ACTIONS(9106), + [aux_sym_def_type_statement_token3] = ACTIONS(9106), + [aux_sym_def_type_statement_token4] = ACTIONS(9106), + [aux_sym_def_type_statement_token5] = ACTIONS(9106), + [aux_sym_def_type_statement_token6] = ACTIONS(9106), + [aux_sym_def_type_statement_token7] = ACTIONS(9106), + [aux_sym_def_type_statement_token8] = ACTIONS(9106), + [aux_sym_def_type_statement_token9] = ACTIONS(9106), + [aux_sym_def_type_statement_token10] = ACTIONS(9106), + [aux_sym_def_type_statement_token11] = ACTIONS(9106), + [aux_sym_def_type_statement_token12] = ACTIONS(9106), + [aux_sym_def_type_statement_token13] = ACTIONS(9106), + [aux_sym_def_type_statement_token14] = ACTIONS(9106), + [aux_sym_call_statement_token1] = ACTIONS(9106), + [sym__ambiguous_call_statement] = ACTIONS(9106), + [aux_sym_addressof_expression_token1] = ACTIONS(9106), + [aux_sym_type_of_expression_token1] = ACTIONS(9106), + [aux_sym_unary_expression_token1] = ACTIONS(9106), + [sym_string_literal] = ACTIONS(9108), + [sym_number_literal] = ACTIONS(9108), + [aux_sym_boolean_literal_token1] = ACTIONS(9106), + [aux_sym_boolean_literal_token2] = ACTIONS(9106), + [sym_nothing_literal] = ACTIONS(9106), + [sym_null_literal] = ACTIONS(9106), + [sym_empty_literal] = ACTIONS(9106), + [sym_date_literal] = ACTIONS(9108), + [anon_sym_POUND] = ACTIONS(9106), + }, + [STATE(7173)] = { + [sym_identifier] = ACTIONS(8861), + [sym_newline] = ACTIONS(8863), + [anon_sym_COLON] = ACTIONS(8863), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8861), + [aux_sym_frm_property_statement_token1] = ACTIONS(8861), + [anon_sym_DOT] = ACTIONS(8861), + [anon_sym_BANG] = ACTIONS(8863), + [aux_sym__attribute_identifier_token1] = ACTIONS(8861), + [aux_sym_option_statement_token3] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8861), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8861), + [aux_sym_preprocessor_const_token1] = ACTIONS(8861), + [sym_static_modifier] = ACTIONS(8861), + [sym__dim_keyword] = ACTIONS(8861), + [sym__redim_keyword] = ACTIONS(8861), + [aux_sym_get_accessor_token1] = ACTIONS(8861), + [aux_sym_set_accessor_token1] = ACTIONS(8861), + [aux_sym_const_declaration_token1] = ACTIONS(8861), + [anon_sym_LPAREN] = ACTIONS(8863), + [aux_sym_as_type_clause_token2] = ACTIONS(8861), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8861), + [aux_sym_visibility_token1] = ACTIONS(8861), + [aux_sym_visibility_token2] = ACTIONS(8861), + [aux_sym_elseif_fragment_token1] = ACTIONS(8861), + [aux_sym_else_fragment_token1] = ACTIONS(8861), + [aux_sym_select_statement_token1] = ACTIONS(8861), + [aux_sym__for_header_token1] = ACTIONS(8861), + [aux_sym_do_statement_token1] = ACTIONS(8861), + [aux_sym_do_condition_token1] = ACTIONS(8861), + [aux_sym_with_statement_token1] = ACTIONS(8861), + [aux_sym_exit_statement_token1] = ACTIONS(8861), + [sym_end_statement] = ACTIONS(8863), + [aux_sym_on_goto_statement_token1] = ACTIONS(8861), + [aux_sym_on_goto_statement_token2] = ACTIONS(8861), + [aux_sym_on_error_statement_token2] = ACTIONS(8861), + [sym__ambiguous_redim_statement] = ACTIONS(8863), + [aux_sym_erase_statement_token1] = ACTIONS(8861), + [aux_sym_open_statement_token1] = ACTIONS(8861), + [aux_sym_file_mode_token2] = ACTIONS(8861), + [aux_sym_file_access_token2] = ACTIONS(8861), + [aux_sym_file_lock_token2] = ACTIONS(8861), + [aux_sym_print_statement_token1] = ACTIONS(8861), + [anon_sym_PLUS] = ACTIONS(8863), + [anon_sym_DASH] = ACTIONS(8861), + [anon_sym_QMARK] = ACTIONS(8863), + [aux_sym_close_statement_token1] = ACTIONS(8861), + [aux_sym_put_statement_token1] = ACTIONS(8861), + [aux_sym_unlock_statement_token1] = ACTIONS(8861), + [aux_sym_seek_statement_token1] = ACTIONS(8861), + [sym_reset_statement] = ACTIONS(8861), + [aux_sym_raise_event_statement_token1] = ACTIONS(8861), + [sym_stop_statement] = ACTIONS(8861), + [sym_beep_statement] = ACTIONS(8861), + [aux_sym_unload_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token1] = ACTIONS(8861), + [aux_sym_def_type_statement_token2] = ACTIONS(8861), + [aux_sym_def_type_statement_token3] = ACTIONS(8861), + [aux_sym_def_type_statement_token4] = ACTIONS(8861), + [aux_sym_def_type_statement_token5] = ACTIONS(8861), + [aux_sym_def_type_statement_token6] = ACTIONS(8861), + [aux_sym_def_type_statement_token7] = ACTIONS(8861), + [aux_sym_def_type_statement_token8] = ACTIONS(8861), + [aux_sym_def_type_statement_token9] = ACTIONS(8861), + [aux_sym_def_type_statement_token10] = ACTIONS(8861), + [aux_sym_def_type_statement_token11] = ACTIONS(8861), + [aux_sym_def_type_statement_token12] = ACTIONS(8861), + [aux_sym_def_type_statement_token13] = ACTIONS(8861), + [aux_sym_def_type_statement_token14] = ACTIONS(8861), + [aux_sym_call_statement_token1] = ACTIONS(8861), + [sym__ambiguous_call_statement] = ACTIONS(8861), + [aux_sym_addressof_expression_token1] = ACTIONS(8861), + [aux_sym_type_of_expression_token1] = ACTIONS(8861), + [aux_sym_unary_expression_token1] = ACTIONS(8861), + [sym_string_literal] = ACTIONS(8863), + [sym_number_literal] = ACTIONS(8863), + [aux_sym_boolean_literal_token1] = ACTIONS(8861), + [aux_sym_boolean_literal_token2] = ACTIONS(8861), + [sym_nothing_literal] = ACTIONS(8861), + [sym_null_literal] = ACTIONS(8861), + [sym_empty_literal] = ACTIONS(8861), + [sym_date_literal] = ACTIONS(8863), + [anon_sym_POUND] = ACTIONS(8861), + }, + [STATE(7174)] = { + [sym_identifier] = ACTIONS(9344), + [sym_newline] = ACTIONS(9346), + [anon_sym_COLON] = ACTIONS(9346), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9344), + [aux_sym_frm_property_statement_token1] = ACTIONS(9344), + [anon_sym_DOT] = ACTIONS(9344), + [anon_sym_BANG] = ACTIONS(9346), + [aux_sym__attribute_identifier_token1] = ACTIONS(9344), + [aux_sym_option_statement_token3] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9344), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9344), + [aux_sym_preprocessor_const_token1] = ACTIONS(9344), + [sym_static_modifier] = ACTIONS(9344), + [sym__dim_keyword] = ACTIONS(9344), + [sym__redim_keyword] = ACTIONS(9344), + [aux_sym_get_accessor_token1] = ACTIONS(9344), + [aux_sym_set_accessor_token1] = ACTIONS(9344), + [aux_sym_const_declaration_token1] = ACTIONS(9344), + [anon_sym_LPAREN] = ACTIONS(9346), + [aux_sym_as_type_clause_token2] = ACTIONS(9344), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9344), + [aux_sym_visibility_token1] = ACTIONS(9344), + [aux_sym_visibility_token2] = ACTIONS(9344), + [aux_sym_elseif_fragment_token1] = ACTIONS(9344), + [aux_sym_else_fragment_token1] = ACTIONS(9344), + [aux_sym_select_statement_token1] = ACTIONS(9344), + [aux_sym__for_header_token1] = ACTIONS(9344), + [aux_sym_do_statement_token1] = ACTIONS(9344), + [aux_sym_do_condition_token1] = ACTIONS(9344), + [aux_sym_with_statement_token1] = ACTIONS(9344), + [aux_sym_exit_statement_token1] = ACTIONS(9344), + [sym_end_statement] = ACTIONS(9346), + [aux_sym_on_goto_statement_token1] = ACTIONS(9344), + [aux_sym_on_goto_statement_token2] = ACTIONS(9344), + [aux_sym_on_error_statement_token2] = ACTIONS(9344), + [sym__ambiguous_redim_statement] = ACTIONS(9346), + [aux_sym_erase_statement_token1] = ACTIONS(9344), + [aux_sym_open_statement_token1] = ACTIONS(9344), + [aux_sym_file_mode_token2] = ACTIONS(9344), + [aux_sym_file_access_token2] = ACTIONS(9344), + [aux_sym_file_lock_token2] = ACTIONS(9344), + [aux_sym_print_statement_token1] = ACTIONS(9344), + [anon_sym_PLUS] = ACTIONS(9346), + [anon_sym_DASH] = ACTIONS(9344), + [anon_sym_QMARK] = ACTIONS(9346), + [aux_sym_close_statement_token1] = ACTIONS(9344), + [aux_sym_put_statement_token1] = ACTIONS(9344), + [aux_sym_unlock_statement_token1] = ACTIONS(9344), + [aux_sym_seek_statement_token1] = ACTIONS(9344), + [sym_reset_statement] = ACTIONS(9344), + [aux_sym_raise_event_statement_token1] = ACTIONS(9344), + [sym_stop_statement] = ACTIONS(9344), + [sym_beep_statement] = ACTIONS(9344), + [aux_sym_unload_statement_token1] = ACTIONS(9344), + [aux_sym_def_type_statement_token1] = ACTIONS(9344), + [aux_sym_def_type_statement_token2] = ACTIONS(9344), + [aux_sym_def_type_statement_token3] = ACTIONS(9344), + [aux_sym_def_type_statement_token4] = ACTIONS(9344), + [aux_sym_def_type_statement_token5] = ACTIONS(9344), + [aux_sym_def_type_statement_token6] = ACTIONS(9344), + [aux_sym_def_type_statement_token7] = ACTIONS(9344), + [aux_sym_def_type_statement_token8] = ACTIONS(9344), + [aux_sym_def_type_statement_token9] = ACTIONS(9344), + [aux_sym_def_type_statement_token10] = ACTIONS(9344), + [aux_sym_def_type_statement_token11] = ACTIONS(9344), + [aux_sym_def_type_statement_token12] = ACTIONS(9344), + [aux_sym_def_type_statement_token13] = ACTIONS(9344), + [aux_sym_def_type_statement_token14] = ACTIONS(9344), + [aux_sym_call_statement_token1] = ACTIONS(9344), + [sym__ambiguous_call_statement] = ACTIONS(9344), + [aux_sym_addressof_expression_token1] = ACTIONS(9344), + [aux_sym_type_of_expression_token1] = ACTIONS(9344), + [aux_sym_unary_expression_token1] = ACTIONS(9344), + [sym_string_literal] = ACTIONS(9346), + [sym_number_literal] = ACTIONS(9346), + [aux_sym_boolean_literal_token1] = ACTIONS(9344), + [aux_sym_boolean_literal_token2] = ACTIONS(9344), + [sym_nothing_literal] = ACTIONS(9344), + [sym_null_literal] = ACTIONS(9344), + [sym_empty_literal] = ACTIONS(9344), + [sym_date_literal] = ACTIONS(9346), + [anon_sym_POUND] = ACTIONS(9344), + }, + [STATE(7175)] = { + [sym_identifier] = ACTIONS(8645), + [sym_newline] = ACTIONS(8647), + [anon_sym_COLON] = ACTIONS(8649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8645), + [aux_sym_frm_property_statement_token1] = ACTIONS(8645), + [anon_sym_DOT] = ACTIONS(8645), + [anon_sym_BANG] = ACTIONS(8647), + [aux_sym__attribute_identifier_token1] = ACTIONS(8645), + [aux_sym_option_statement_token3] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8645), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8645), + [aux_sym_preprocessor_const_token1] = ACTIONS(8645), + [sym_static_modifier] = ACTIONS(8645), + [sym__dim_keyword] = ACTIONS(8645), + [sym__redim_keyword] = ACTIONS(8645), + [aux_sym_get_accessor_token1] = ACTIONS(8645), + [aux_sym_set_accessor_token1] = ACTIONS(8645), + [aux_sym_const_declaration_token1] = ACTIONS(8645), + [anon_sym_LPAREN] = ACTIONS(8647), + [aux_sym_as_type_clause_token2] = ACTIONS(8645), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8645), + [aux_sym_visibility_token1] = ACTIONS(8645), + [aux_sym_visibility_token2] = ACTIONS(8645), + [aux_sym_elseif_fragment_token1] = ACTIONS(8645), + [aux_sym_else_fragment_token1] = ACTIONS(8645), + [aux_sym_select_statement_token1] = ACTIONS(8645), + [aux_sym__for_header_token1] = ACTIONS(8645), + [aux_sym_do_statement_token1] = ACTIONS(8645), + [aux_sym_do_condition_token1] = ACTIONS(8645), + [aux_sym_with_statement_token1] = ACTIONS(8645), + [aux_sym_exit_statement_token1] = ACTIONS(8645), + [sym_end_statement] = ACTIONS(8647), + [aux_sym_on_goto_statement_token1] = ACTIONS(8645), + [aux_sym_on_goto_statement_token2] = ACTIONS(8645), + [aux_sym_on_error_statement_token2] = ACTIONS(8645), + [sym__ambiguous_redim_statement] = ACTIONS(8647), + [aux_sym_erase_statement_token1] = ACTIONS(8645), + [aux_sym_open_statement_token1] = ACTIONS(8645), + [aux_sym_file_mode_token2] = ACTIONS(8645), + [aux_sym_file_access_token2] = ACTIONS(8645), + [aux_sym_file_lock_token2] = ACTIONS(8645), + [aux_sym_print_statement_token1] = ACTIONS(8645), + [anon_sym_PLUS] = ACTIONS(8647), + [anon_sym_DASH] = ACTIONS(8645), + [anon_sym_QMARK] = ACTIONS(8647), + [aux_sym_close_statement_token1] = ACTIONS(8645), + [aux_sym_put_statement_token1] = ACTIONS(8645), + [aux_sym_unlock_statement_token1] = ACTIONS(8645), + [aux_sym_seek_statement_token1] = ACTIONS(8645), + [sym_reset_statement] = ACTIONS(8645), + [aux_sym_raise_event_statement_token1] = ACTIONS(8645), + [sym_stop_statement] = ACTIONS(8645), + [sym_beep_statement] = ACTIONS(8645), + [aux_sym_unload_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token1] = ACTIONS(8645), + [aux_sym_def_type_statement_token2] = ACTIONS(8645), + [aux_sym_def_type_statement_token3] = ACTIONS(8645), + [aux_sym_def_type_statement_token4] = ACTIONS(8645), + [aux_sym_def_type_statement_token5] = ACTIONS(8645), + [aux_sym_def_type_statement_token6] = ACTIONS(8645), + [aux_sym_def_type_statement_token7] = ACTIONS(8645), + [aux_sym_def_type_statement_token8] = ACTIONS(8645), + [aux_sym_def_type_statement_token9] = ACTIONS(8645), + [aux_sym_def_type_statement_token10] = ACTIONS(8645), + [aux_sym_def_type_statement_token11] = ACTIONS(8645), + [aux_sym_def_type_statement_token12] = ACTIONS(8645), + [aux_sym_def_type_statement_token13] = ACTIONS(8645), + [aux_sym_def_type_statement_token14] = ACTIONS(8645), + [aux_sym_call_statement_token1] = ACTIONS(8645), + [sym__ambiguous_call_statement] = ACTIONS(8645), + [aux_sym_addressof_expression_token1] = ACTIONS(8645), + [aux_sym_type_of_expression_token1] = ACTIONS(8645), + [aux_sym_unary_expression_token1] = ACTIONS(8645), + [sym_string_literal] = ACTIONS(8647), + [sym_number_literal] = ACTIONS(8649), + [aux_sym_boolean_literal_token1] = ACTIONS(8645), + [aux_sym_boolean_literal_token2] = ACTIONS(8645), + [sym_nothing_literal] = ACTIONS(8645), + [sym_null_literal] = ACTIONS(8645), + [sym_empty_literal] = ACTIONS(8645), + [sym_date_literal] = ACTIONS(8647), + [anon_sym_POUND] = ACTIONS(8645), + }, + [STATE(7176)] = { + [sym_identifier] = ACTIONS(9020), + [sym_newline] = ACTIONS(9022), + [anon_sym_COLON] = ACTIONS(9022), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9020), + [aux_sym_frm_property_statement_token1] = ACTIONS(9020), + [anon_sym_DOT] = ACTIONS(9020), + [anon_sym_BANG] = ACTIONS(9022), + [aux_sym__attribute_identifier_token1] = ACTIONS(9020), + [aux_sym_option_statement_token3] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9020), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9020), + [aux_sym_preprocessor_const_token1] = ACTIONS(9020), + [sym_static_modifier] = ACTIONS(9020), + [sym__dim_keyword] = ACTIONS(9020), + [sym__redim_keyword] = ACTIONS(9020), + [aux_sym_get_accessor_token1] = ACTIONS(9020), + [aux_sym_set_accessor_token1] = ACTIONS(9020), + [aux_sym_const_declaration_token1] = ACTIONS(9020), + [anon_sym_LPAREN] = ACTIONS(9022), + [aux_sym_as_type_clause_token2] = ACTIONS(9020), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9020), + [aux_sym_visibility_token1] = ACTIONS(9020), + [aux_sym_visibility_token2] = ACTIONS(9020), + [aux_sym_elseif_fragment_token1] = ACTIONS(9020), + [aux_sym_else_fragment_token1] = ACTIONS(9020), + [aux_sym_select_statement_token1] = ACTIONS(9020), + [aux_sym__for_header_token1] = ACTIONS(9020), + [aux_sym_do_statement_token1] = ACTIONS(9020), + [aux_sym_do_condition_token1] = ACTIONS(9020), + [aux_sym_with_statement_token1] = ACTIONS(9020), + [aux_sym_exit_statement_token1] = ACTIONS(9020), + [sym_end_statement] = ACTIONS(9022), + [aux_sym_on_goto_statement_token1] = ACTIONS(9020), + [aux_sym_on_goto_statement_token2] = ACTIONS(9020), + [aux_sym_on_error_statement_token2] = ACTIONS(9020), + [sym__ambiguous_redim_statement] = ACTIONS(9022), + [aux_sym_erase_statement_token1] = ACTIONS(9020), + [aux_sym_open_statement_token1] = ACTIONS(9020), + [aux_sym_file_mode_token2] = ACTIONS(9020), + [aux_sym_file_access_token2] = ACTIONS(9020), + [aux_sym_file_lock_token2] = ACTIONS(9020), + [aux_sym_print_statement_token1] = ACTIONS(9020), + [anon_sym_PLUS] = ACTIONS(9022), + [anon_sym_DASH] = ACTIONS(9020), + [anon_sym_QMARK] = ACTIONS(9022), + [aux_sym_close_statement_token1] = ACTIONS(9020), + [aux_sym_put_statement_token1] = ACTIONS(9020), + [aux_sym_unlock_statement_token1] = ACTIONS(9020), + [aux_sym_seek_statement_token1] = ACTIONS(9020), + [sym_reset_statement] = ACTIONS(9020), + [aux_sym_raise_event_statement_token1] = ACTIONS(9020), + [sym_stop_statement] = ACTIONS(9020), + [sym_beep_statement] = ACTIONS(9020), + [aux_sym_unload_statement_token1] = ACTIONS(9020), + [aux_sym_def_type_statement_token1] = ACTIONS(9020), + [aux_sym_def_type_statement_token2] = ACTIONS(9020), + [aux_sym_def_type_statement_token3] = ACTIONS(9020), + [aux_sym_def_type_statement_token4] = ACTIONS(9020), + [aux_sym_def_type_statement_token5] = ACTIONS(9020), + [aux_sym_def_type_statement_token6] = ACTIONS(9020), + [aux_sym_def_type_statement_token7] = ACTIONS(9020), + [aux_sym_def_type_statement_token8] = ACTIONS(9020), + [aux_sym_def_type_statement_token9] = ACTIONS(9020), + [aux_sym_def_type_statement_token10] = ACTIONS(9020), + [aux_sym_def_type_statement_token11] = ACTIONS(9020), + [aux_sym_def_type_statement_token12] = ACTIONS(9020), + [aux_sym_def_type_statement_token13] = ACTIONS(9020), + [aux_sym_def_type_statement_token14] = ACTIONS(9020), + [aux_sym_call_statement_token1] = ACTIONS(9020), + [sym__ambiguous_call_statement] = ACTIONS(9020), + [aux_sym_addressof_expression_token1] = ACTIONS(9020), + [aux_sym_type_of_expression_token1] = ACTIONS(9020), + [aux_sym_unary_expression_token1] = ACTIONS(9020), + [sym_string_literal] = ACTIONS(9022), + [sym_number_literal] = ACTIONS(9022), + [aux_sym_boolean_literal_token1] = ACTIONS(9020), + [aux_sym_boolean_literal_token2] = ACTIONS(9020), + [sym_nothing_literal] = ACTIONS(9020), + [sym_null_literal] = ACTIONS(9020), + [sym_empty_literal] = ACTIONS(9020), + [sym_date_literal] = ACTIONS(9022), + [anon_sym_POUND] = ACTIONS(9020), + }, + [STATE(7177)] = { + [sym_identifier] = ACTIONS(9631), + [sym_newline] = ACTIONS(9633), + [anon_sym_COLON] = ACTIONS(9633), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9631), + [aux_sym_frm_property_statement_token1] = ACTIONS(9631), + [anon_sym_DOT] = ACTIONS(9631), + [anon_sym_BANG] = ACTIONS(9633), + [aux_sym__attribute_identifier_token1] = ACTIONS(9631), + [aux_sym_option_statement_token3] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9631), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9631), + [aux_sym_preprocessor_const_token1] = ACTIONS(9631), + [sym_static_modifier] = ACTIONS(9631), + [sym__dim_keyword] = ACTIONS(9631), + [sym__redim_keyword] = ACTIONS(9631), + [aux_sym_get_accessor_token1] = ACTIONS(9631), + [aux_sym_set_accessor_token1] = ACTIONS(9631), + [aux_sym_const_declaration_token1] = ACTIONS(9631), + [anon_sym_LPAREN] = ACTIONS(9633), + [aux_sym_as_type_clause_token2] = ACTIONS(9631), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9631), + [aux_sym_visibility_token1] = ACTIONS(9631), + [aux_sym_visibility_token2] = ACTIONS(9631), + [aux_sym_elseif_fragment_token1] = ACTIONS(9631), + [aux_sym_else_fragment_token1] = ACTIONS(9631), + [aux_sym_select_statement_token1] = ACTIONS(9631), + [aux_sym__for_header_token1] = ACTIONS(9631), + [aux_sym_do_statement_token1] = ACTIONS(9631), + [aux_sym_do_condition_token1] = ACTIONS(9631), + [aux_sym_with_statement_token1] = ACTIONS(9631), + [aux_sym_exit_statement_token1] = ACTIONS(9631), + [sym_end_statement] = ACTIONS(9633), + [aux_sym_on_goto_statement_token1] = ACTIONS(9631), + [aux_sym_on_goto_statement_token2] = ACTIONS(9631), + [aux_sym_on_error_statement_token2] = ACTIONS(9631), + [sym__ambiguous_redim_statement] = ACTIONS(9633), + [aux_sym_erase_statement_token1] = ACTIONS(9631), + [aux_sym_open_statement_token1] = ACTIONS(9631), + [aux_sym_file_mode_token2] = ACTIONS(9631), + [aux_sym_file_access_token2] = ACTIONS(9631), + [aux_sym_file_lock_token2] = ACTIONS(9631), + [aux_sym_print_statement_token1] = ACTIONS(9631), + [anon_sym_PLUS] = ACTIONS(9633), + [anon_sym_DASH] = ACTIONS(9631), + [anon_sym_QMARK] = ACTIONS(9633), + [aux_sym_close_statement_token1] = ACTIONS(9631), + [aux_sym_put_statement_token1] = ACTIONS(9631), + [aux_sym_unlock_statement_token1] = ACTIONS(9631), + [aux_sym_seek_statement_token1] = ACTIONS(9631), + [sym_reset_statement] = ACTIONS(9631), + [aux_sym_raise_event_statement_token1] = ACTIONS(9631), + [sym_stop_statement] = ACTIONS(9631), + [sym_beep_statement] = ACTIONS(9631), + [aux_sym_unload_statement_token1] = ACTIONS(9631), + [aux_sym_def_type_statement_token1] = ACTIONS(9631), + [aux_sym_def_type_statement_token2] = ACTIONS(9631), + [aux_sym_def_type_statement_token3] = ACTIONS(9631), + [aux_sym_def_type_statement_token4] = ACTIONS(9631), + [aux_sym_def_type_statement_token5] = ACTIONS(9631), + [aux_sym_def_type_statement_token6] = ACTIONS(9631), + [aux_sym_def_type_statement_token7] = ACTIONS(9631), + [aux_sym_def_type_statement_token8] = ACTIONS(9631), + [aux_sym_def_type_statement_token9] = ACTIONS(9631), + [aux_sym_def_type_statement_token10] = ACTIONS(9631), + [aux_sym_def_type_statement_token11] = ACTIONS(9631), + [aux_sym_def_type_statement_token12] = ACTIONS(9631), + [aux_sym_def_type_statement_token13] = ACTIONS(9631), + [aux_sym_def_type_statement_token14] = ACTIONS(9631), + [aux_sym_call_statement_token1] = ACTIONS(9631), + [sym__ambiguous_call_statement] = ACTIONS(9631), + [aux_sym_addressof_expression_token1] = ACTIONS(9631), + [aux_sym_type_of_expression_token1] = ACTIONS(9631), + [aux_sym_unary_expression_token1] = ACTIONS(9631), + [sym_string_literal] = ACTIONS(9633), + [sym_number_literal] = ACTIONS(9633), + [aux_sym_boolean_literal_token1] = ACTIONS(9631), + [aux_sym_boolean_literal_token2] = ACTIONS(9631), + [sym_nothing_literal] = ACTIONS(9631), + [sym_null_literal] = ACTIONS(9631), + [sym_empty_literal] = ACTIONS(9631), + [sym_date_literal] = ACTIONS(9633), + [anon_sym_POUND] = ACTIONS(9631), + }, + [STATE(7178)] = { + [sym_identifier] = ACTIONS(8749), + [sym_newline] = ACTIONS(8751), + [anon_sym_COLON] = ACTIONS(8753), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8749), + [aux_sym_frm_property_statement_token1] = ACTIONS(8749), + [anon_sym_DOT] = ACTIONS(8749), + [anon_sym_BANG] = ACTIONS(8751), + [aux_sym__attribute_identifier_token1] = ACTIONS(8749), + [aux_sym_option_statement_token3] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8749), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8749), + [aux_sym_preprocessor_const_token1] = ACTIONS(8749), + [sym_static_modifier] = ACTIONS(8749), + [sym__dim_keyword] = ACTIONS(8749), + [sym__redim_keyword] = ACTIONS(8749), + [aux_sym_get_accessor_token1] = ACTIONS(8749), + [aux_sym_set_accessor_token1] = ACTIONS(8749), + [aux_sym_const_declaration_token1] = ACTIONS(8749), + [anon_sym_LPAREN] = ACTIONS(8751), + [aux_sym_as_type_clause_token2] = ACTIONS(8749), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8749), + [aux_sym_visibility_token1] = ACTIONS(8749), + [aux_sym_visibility_token2] = ACTIONS(8749), + [aux_sym_elseif_fragment_token1] = ACTIONS(8749), + [aux_sym_else_fragment_token1] = ACTIONS(8749), + [aux_sym_select_statement_token1] = ACTIONS(8749), + [aux_sym__for_header_token1] = ACTIONS(8749), + [aux_sym_do_statement_token1] = ACTIONS(8749), + [aux_sym_do_condition_token1] = ACTIONS(8749), + [aux_sym_with_statement_token1] = ACTIONS(8749), + [aux_sym_exit_statement_token1] = ACTIONS(8749), + [sym_end_statement] = ACTIONS(8751), + [aux_sym_on_goto_statement_token1] = ACTIONS(8749), + [aux_sym_on_goto_statement_token2] = ACTIONS(8749), + [aux_sym_on_error_statement_token2] = ACTIONS(8749), + [sym__ambiguous_redim_statement] = ACTIONS(8751), + [aux_sym_erase_statement_token1] = ACTIONS(8749), + [aux_sym_open_statement_token1] = ACTIONS(8749), + [aux_sym_file_mode_token2] = ACTIONS(8749), + [aux_sym_file_access_token2] = ACTIONS(8749), + [aux_sym_file_lock_token2] = ACTIONS(8749), + [aux_sym_print_statement_token1] = ACTIONS(8749), + [anon_sym_PLUS] = ACTIONS(8751), + [anon_sym_DASH] = ACTIONS(8749), + [anon_sym_QMARK] = ACTIONS(8751), + [aux_sym_close_statement_token1] = ACTIONS(8749), + [aux_sym_put_statement_token1] = ACTIONS(8749), + [aux_sym_unlock_statement_token1] = ACTIONS(8749), + [aux_sym_seek_statement_token1] = ACTIONS(8749), + [sym_reset_statement] = ACTIONS(8749), + [aux_sym_raise_event_statement_token1] = ACTIONS(8749), + [sym_stop_statement] = ACTIONS(8749), + [sym_beep_statement] = ACTIONS(8749), + [aux_sym_unload_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token1] = ACTIONS(8749), + [aux_sym_def_type_statement_token2] = ACTIONS(8749), + [aux_sym_def_type_statement_token3] = ACTIONS(8749), + [aux_sym_def_type_statement_token4] = ACTIONS(8749), + [aux_sym_def_type_statement_token5] = ACTIONS(8749), + [aux_sym_def_type_statement_token6] = ACTIONS(8749), + [aux_sym_def_type_statement_token7] = ACTIONS(8749), + [aux_sym_def_type_statement_token8] = ACTIONS(8749), + [aux_sym_def_type_statement_token9] = ACTIONS(8749), + [aux_sym_def_type_statement_token10] = ACTIONS(8749), + [aux_sym_def_type_statement_token11] = ACTIONS(8749), + [aux_sym_def_type_statement_token12] = ACTIONS(8749), + [aux_sym_def_type_statement_token13] = ACTIONS(8749), + [aux_sym_def_type_statement_token14] = ACTIONS(8749), + [aux_sym_call_statement_token1] = ACTIONS(8749), + [sym__ambiguous_call_statement] = ACTIONS(8749), + [aux_sym_addressof_expression_token1] = ACTIONS(8749), + [aux_sym_type_of_expression_token1] = ACTIONS(8749), + [aux_sym_unary_expression_token1] = ACTIONS(8749), + [sym_string_literal] = ACTIONS(8751), + [sym_number_literal] = ACTIONS(8753), + [aux_sym_boolean_literal_token1] = ACTIONS(8749), + [aux_sym_boolean_literal_token2] = ACTIONS(8749), + [sym_nothing_literal] = ACTIONS(8749), + [sym_null_literal] = ACTIONS(8749), + [sym_empty_literal] = ACTIONS(8749), + [sym_date_literal] = ACTIONS(8751), + [anon_sym_POUND] = ACTIONS(8749), + }, + [STATE(7179)] = { + [sym_identifier] = ACTIONS(9284), + [sym_newline] = ACTIONS(9286), + [anon_sym_COLON] = ACTIONS(9286), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9284), + [aux_sym_frm_property_statement_token1] = ACTIONS(9284), + [anon_sym_DOT] = ACTIONS(9284), + [anon_sym_BANG] = ACTIONS(9286), + [aux_sym__attribute_identifier_token1] = ACTIONS(9284), + [aux_sym_option_statement_token3] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9284), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9284), + [aux_sym_preprocessor_const_token1] = ACTIONS(9284), + [sym_static_modifier] = ACTIONS(9284), + [sym__dim_keyword] = ACTIONS(9284), + [sym__redim_keyword] = ACTIONS(9284), + [aux_sym_get_accessor_token1] = ACTIONS(9284), + [aux_sym_set_accessor_token1] = ACTIONS(9284), + [aux_sym_const_declaration_token1] = ACTIONS(9284), + [anon_sym_LPAREN] = ACTIONS(9286), + [aux_sym_as_type_clause_token2] = ACTIONS(9284), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9284), + [aux_sym_visibility_token1] = ACTIONS(9284), + [aux_sym_visibility_token2] = ACTIONS(9284), + [aux_sym_elseif_fragment_token1] = ACTIONS(9284), + [aux_sym_else_fragment_token1] = ACTIONS(9284), + [aux_sym_select_statement_token1] = ACTIONS(9284), + [aux_sym__for_header_token1] = ACTIONS(9284), + [aux_sym_do_statement_token1] = ACTIONS(9284), + [aux_sym_do_condition_token1] = ACTIONS(9284), + [aux_sym_with_statement_token1] = ACTIONS(9284), + [aux_sym_exit_statement_token1] = ACTIONS(9284), + [sym_end_statement] = ACTIONS(9286), + [aux_sym_on_goto_statement_token1] = ACTIONS(9284), + [aux_sym_on_goto_statement_token2] = ACTIONS(9284), + [aux_sym_on_error_statement_token2] = ACTIONS(9284), + [sym__ambiguous_redim_statement] = ACTIONS(9286), + [aux_sym_erase_statement_token1] = ACTIONS(9284), + [aux_sym_open_statement_token1] = ACTIONS(9284), + [aux_sym_file_mode_token2] = ACTIONS(9284), + [aux_sym_file_access_token2] = ACTIONS(9284), + [aux_sym_file_lock_token2] = ACTIONS(9284), + [aux_sym_print_statement_token1] = ACTIONS(9284), + [anon_sym_PLUS] = ACTIONS(9286), + [anon_sym_DASH] = ACTIONS(9284), + [anon_sym_QMARK] = ACTIONS(9286), + [aux_sym_close_statement_token1] = ACTIONS(9284), + [aux_sym_put_statement_token1] = ACTIONS(9284), + [aux_sym_unlock_statement_token1] = ACTIONS(9284), + [aux_sym_seek_statement_token1] = ACTIONS(9284), + [sym_reset_statement] = ACTIONS(9284), + [aux_sym_raise_event_statement_token1] = ACTIONS(9284), + [sym_stop_statement] = ACTIONS(9284), + [sym_beep_statement] = ACTIONS(9284), + [aux_sym_unload_statement_token1] = ACTIONS(9284), + [aux_sym_def_type_statement_token1] = ACTIONS(9284), + [aux_sym_def_type_statement_token2] = ACTIONS(9284), + [aux_sym_def_type_statement_token3] = ACTIONS(9284), + [aux_sym_def_type_statement_token4] = ACTIONS(9284), + [aux_sym_def_type_statement_token5] = ACTIONS(9284), + [aux_sym_def_type_statement_token6] = ACTIONS(9284), + [aux_sym_def_type_statement_token7] = ACTIONS(9284), + [aux_sym_def_type_statement_token8] = ACTIONS(9284), + [aux_sym_def_type_statement_token9] = ACTIONS(9284), + [aux_sym_def_type_statement_token10] = ACTIONS(9284), + [aux_sym_def_type_statement_token11] = ACTIONS(9284), + [aux_sym_def_type_statement_token12] = ACTIONS(9284), + [aux_sym_def_type_statement_token13] = ACTIONS(9284), + [aux_sym_def_type_statement_token14] = ACTIONS(9284), + [aux_sym_call_statement_token1] = ACTIONS(9284), + [sym__ambiguous_call_statement] = ACTIONS(9284), + [aux_sym_addressof_expression_token1] = ACTIONS(9284), + [aux_sym_type_of_expression_token1] = ACTIONS(9284), + [aux_sym_unary_expression_token1] = ACTIONS(9284), + [sym_string_literal] = ACTIONS(9286), + [sym_number_literal] = ACTIONS(9286), + [aux_sym_boolean_literal_token1] = ACTIONS(9284), + [aux_sym_boolean_literal_token2] = ACTIONS(9284), + [sym_nothing_literal] = ACTIONS(9284), + [sym_null_literal] = ACTIONS(9284), + [sym_empty_literal] = ACTIONS(9284), + [sym_date_literal] = ACTIONS(9286), + [anon_sym_POUND] = ACTIONS(9284), + }, + [STATE(7180)] = { + [sym_identifier] = ACTIONS(9635), + [sym_newline] = ACTIONS(9637), + [anon_sym_COLON] = ACTIONS(9637), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9635), + [aux_sym_frm_property_statement_token1] = ACTIONS(9635), + [anon_sym_DOT] = ACTIONS(9635), + [anon_sym_BANG] = ACTIONS(9637), + [aux_sym__attribute_identifier_token1] = ACTIONS(9635), + [aux_sym_option_statement_token3] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9635), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9635), + [aux_sym_preprocessor_const_token1] = ACTIONS(9635), + [sym_static_modifier] = ACTIONS(9635), + [sym__dim_keyword] = ACTIONS(9635), + [sym__redim_keyword] = ACTIONS(9635), + [aux_sym_get_accessor_token1] = ACTIONS(9635), + [aux_sym_set_accessor_token1] = ACTIONS(9635), + [aux_sym_const_declaration_token1] = ACTIONS(9635), + [anon_sym_LPAREN] = ACTIONS(9637), + [aux_sym_as_type_clause_token2] = ACTIONS(9635), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9635), + [aux_sym_visibility_token1] = ACTIONS(9635), + [aux_sym_visibility_token2] = ACTIONS(9635), + [aux_sym_elseif_fragment_token1] = ACTIONS(9635), + [aux_sym_else_fragment_token1] = ACTIONS(9635), + [aux_sym_select_statement_token1] = ACTIONS(9635), + [aux_sym__for_header_token1] = ACTIONS(9635), + [aux_sym_do_statement_token1] = ACTIONS(9635), + [aux_sym_do_condition_token1] = ACTIONS(9635), + [aux_sym_with_statement_token1] = ACTIONS(9635), + [aux_sym_exit_statement_token1] = ACTIONS(9635), + [sym_end_statement] = ACTIONS(9637), + [aux_sym_on_goto_statement_token1] = ACTIONS(9635), + [aux_sym_on_goto_statement_token2] = ACTIONS(9635), + [aux_sym_on_error_statement_token2] = ACTIONS(9635), + [sym__ambiguous_redim_statement] = ACTIONS(9637), + [aux_sym_erase_statement_token1] = ACTIONS(9635), + [aux_sym_open_statement_token1] = ACTIONS(9635), + [aux_sym_file_mode_token2] = ACTIONS(9635), + [aux_sym_file_access_token2] = ACTIONS(9635), + [aux_sym_file_lock_token2] = ACTIONS(9635), + [aux_sym_print_statement_token1] = ACTIONS(9635), + [anon_sym_PLUS] = ACTIONS(9637), + [anon_sym_DASH] = ACTIONS(9635), + [anon_sym_QMARK] = ACTIONS(9637), + [aux_sym_close_statement_token1] = ACTIONS(9635), + [aux_sym_put_statement_token1] = ACTIONS(9635), + [aux_sym_unlock_statement_token1] = ACTIONS(9635), + [aux_sym_seek_statement_token1] = ACTIONS(9635), + [sym_reset_statement] = ACTIONS(9635), + [aux_sym_raise_event_statement_token1] = ACTIONS(9635), + [sym_stop_statement] = ACTIONS(9635), + [sym_beep_statement] = ACTIONS(9635), + [aux_sym_unload_statement_token1] = ACTIONS(9635), + [aux_sym_def_type_statement_token1] = ACTIONS(9635), + [aux_sym_def_type_statement_token2] = ACTIONS(9635), + [aux_sym_def_type_statement_token3] = ACTIONS(9635), + [aux_sym_def_type_statement_token4] = ACTIONS(9635), + [aux_sym_def_type_statement_token5] = ACTIONS(9635), + [aux_sym_def_type_statement_token6] = ACTIONS(9635), + [aux_sym_def_type_statement_token7] = ACTIONS(9635), + [aux_sym_def_type_statement_token8] = ACTIONS(9635), + [aux_sym_def_type_statement_token9] = ACTIONS(9635), + [aux_sym_def_type_statement_token10] = ACTIONS(9635), + [aux_sym_def_type_statement_token11] = ACTIONS(9635), + [aux_sym_def_type_statement_token12] = ACTIONS(9635), + [aux_sym_def_type_statement_token13] = ACTIONS(9635), + [aux_sym_def_type_statement_token14] = ACTIONS(9635), + [aux_sym_call_statement_token1] = ACTIONS(9635), + [sym__ambiguous_call_statement] = ACTIONS(9635), + [aux_sym_addressof_expression_token1] = ACTIONS(9635), + [aux_sym_type_of_expression_token1] = ACTIONS(9635), + [aux_sym_unary_expression_token1] = ACTIONS(9635), + [sym_string_literal] = ACTIONS(9637), + [sym_number_literal] = ACTIONS(9637), + [aux_sym_boolean_literal_token1] = ACTIONS(9635), + [aux_sym_boolean_literal_token2] = ACTIONS(9635), + [sym_nothing_literal] = ACTIONS(9635), + [sym_null_literal] = ACTIONS(9635), + [sym_empty_literal] = ACTIONS(9635), + [sym_date_literal] = ACTIONS(9637), + [anon_sym_POUND] = ACTIONS(9635), + }, + [STATE(7181)] = { + [sym_identifier] = ACTIONS(9639), + [sym_newline] = ACTIONS(9641), + [anon_sym_COLON] = ACTIONS(9641), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9639), + [aux_sym_frm_property_statement_token1] = ACTIONS(9639), + [anon_sym_DOT] = ACTIONS(9639), + [anon_sym_BANG] = ACTIONS(9641), + [aux_sym__attribute_identifier_token1] = ACTIONS(9639), + [aux_sym_option_statement_token3] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9639), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9639), + [aux_sym_preprocessor_const_token1] = ACTIONS(9639), + [sym_static_modifier] = ACTIONS(9639), + [sym__dim_keyword] = ACTIONS(9639), + [sym__redim_keyword] = ACTIONS(9639), + [aux_sym_get_accessor_token1] = ACTIONS(9639), + [aux_sym_set_accessor_token1] = ACTIONS(9639), + [aux_sym_const_declaration_token1] = ACTIONS(9639), + [anon_sym_LPAREN] = ACTIONS(9641), + [aux_sym_as_type_clause_token2] = ACTIONS(9639), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9639), + [aux_sym_visibility_token1] = ACTIONS(9639), + [aux_sym_visibility_token2] = ACTIONS(9639), + [aux_sym_elseif_fragment_token1] = ACTIONS(9639), + [aux_sym_else_fragment_token1] = ACTIONS(9639), + [aux_sym_select_statement_token1] = ACTIONS(9639), + [aux_sym__for_header_token1] = ACTIONS(9639), + [aux_sym_do_statement_token1] = ACTIONS(9639), + [aux_sym_do_condition_token1] = ACTIONS(9639), + [aux_sym_with_statement_token1] = ACTIONS(9639), + [aux_sym_exit_statement_token1] = ACTIONS(9639), + [sym_end_statement] = ACTIONS(9641), + [aux_sym_on_goto_statement_token1] = ACTIONS(9639), + [aux_sym_on_goto_statement_token2] = ACTIONS(9639), + [aux_sym_on_error_statement_token2] = ACTIONS(9639), + [sym__ambiguous_redim_statement] = ACTIONS(9641), + [aux_sym_erase_statement_token1] = ACTIONS(9639), + [aux_sym_open_statement_token1] = ACTIONS(9639), + [aux_sym_file_mode_token2] = ACTIONS(9639), + [aux_sym_file_access_token2] = ACTIONS(9639), + [aux_sym_file_lock_token2] = ACTIONS(9639), + [aux_sym_print_statement_token1] = ACTIONS(9639), + [anon_sym_PLUS] = ACTIONS(9641), + [anon_sym_DASH] = ACTIONS(9639), + [anon_sym_QMARK] = ACTIONS(9641), + [aux_sym_close_statement_token1] = ACTIONS(9639), + [aux_sym_put_statement_token1] = ACTIONS(9639), + [aux_sym_unlock_statement_token1] = ACTIONS(9639), + [aux_sym_seek_statement_token1] = ACTIONS(9639), + [sym_reset_statement] = ACTIONS(9639), + [aux_sym_raise_event_statement_token1] = ACTIONS(9639), + [sym_stop_statement] = ACTIONS(9639), + [sym_beep_statement] = ACTIONS(9639), + [aux_sym_unload_statement_token1] = ACTIONS(9639), + [aux_sym_def_type_statement_token1] = ACTIONS(9639), + [aux_sym_def_type_statement_token2] = ACTIONS(9639), + [aux_sym_def_type_statement_token3] = ACTIONS(9639), + [aux_sym_def_type_statement_token4] = ACTIONS(9639), + [aux_sym_def_type_statement_token5] = ACTIONS(9639), + [aux_sym_def_type_statement_token6] = ACTIONS(9639), + [aux_sym_def_type_statement_token7] = ACTIONS(9639), + [aux_sym_def_type_statement_token8] = ACTIONS(9639), + [aux_sym_def_type_statement_token9] = ACTIONS(9639), + [aux_sym_def_type_statement_token10] = ACTIONS(9639), + [aux_sym_def_type_statement_token11] = ACTIONS(9639), + [aux_sym_def_type_statement_token12] = ACTIONS(9639), + [aux_sym_def_type_statement_token13] = ACTIONS(9639), + [aux_sym_def_type_statement_token14] = ACTIONS(9639), + [aux_sym_call_statement_token1] = ACTIONS(9639), + [sym__ambiguous_call_statement] = ACTIONS(9639), + [aux_sym_addressof_expression_token1] = ACTIONS(9639), + [aux_sym_type_of_expression_token1] = ACTIONS(9639), + [aux_sym_unary_expression_token1] = ACTIONS(9639), + [sym_string_literal] = ACTIONS(9641), + [sym_number_literal] = ACTIONS(9641), + [aux_sym_boolean_literal_token1] = ACTIONS(9639), + [aux_sym_boolean_literal_token2] = ACTIONS(9639), + [sym_nothing_literal] = ACTIONS(9639), + [sym_null_literal] = ACTIONS(9639), + [sym_empty_literal] = ACTIONS(9639), + [sym_date_literal] = ACTIONS(9641), + [anon_sym_POUND] = ACTIONS(9639), + }, + [STATE(7182)] = { + [sym_identifier] = ACTIONS(9526), + [sym_newline] = ACTIONS(9528), + [anon_sym_COLON] = ACTIONS(9528), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9526), + [aux_sym_frm_property_statement_token1] = ACTIONS(9526), + [anon_sym_DOT] = ACTIONS(9526), + [anon_sym_BANG] = ACTIONS(9528), + [aux_sym__attribute_identifier_token1] = ACTIONS(9526), + [aux_sym_option_statement_token3] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9526), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9526), + [aux_sym_preprocessor_const_token1] = ACTIONS(9526), + [sym_static_modifier] = ACTIONS(9526), + [sym__dim_keyword] = ACTIONS(9526), + [sym__redim_keyword] = ACTIONS(9526), + [aux_sym_get_accessor_token1] = ACTIONS(9526), + [aux_sym_set_accessor_token1] = ACTIONS(9526), + [aux_sym_const_declaration_token1] = ACTIONS(9526), + [anon_sym_LPAREN] = ACTIONS(9528), + [aux_sym_as_type_clause_token2] = ACTIONS(9526), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9526), + [aux_sym_visibility_token1] = ACTIONS(9526), + [aux_sym_visibility_token2] = ACTIONS(9526), + [aux_sym_elseif_fragment_token1] = ACTIONS(9526), + [aux_sym_else_fragment_token1] = ACTIONS(9526), + [aux_sym_select_statement_token1] = ACTIONS(9526), + [aux_sym__for_header_token1] = ACTIONS(9526), + [aux_sym_do_statement_token1] = ACTIONS(9526), + [aux_sym_do_condition_token1] = ACTIONS(9526), + [aux_sym_with_statement_token1] = ACTIONS(9526), + [aux_sym_exit_statement_token1] = ACTIONS(9526), + [sym_end_statement] = ACTIONS(9528), + [aux_sym_on_goto_statement_token1] = ACTIONS(9526), + [aux_sym_on_goto_statement_token2] = ACTIONS(9526), + [aux_sym_on_error_statement_token2] = ACTIONS(9526), + [sym__ambiguous_redim_statement] = ACTIONS(9528), + [aux_sym_erase_statement_token1] = ACTIONS(9526), + [aux_sym_open_statement_token1] = ACTIONS(9526), + [aux_sym_file_mode_token2] = ACTIONS(9526), + [aux_sym_file_access_token2] = ACTIONS(9526), + [aux_sym_file_lock_token2] = ACTIONS(9526), + [aux_sym_print_statement_token1] = ACTIONS(9526), + [anon_sym_PLUS] = ACTIONS(9528), + [anon_sym_DASH] = ACTIONS(9526), + [anon_sym_QMARK] = ACTIONS(9528), + [aux_sym_close_statement_token1] = ACTIONS(9526), + [aux_sym_put_statement_token1] = ACTIONS(9526), + [aux_sym_unlock_statement_token1] = ACTIONS(9526), + [aux_sym_seek_statement_token1] = ACTIONS(9526), + [sym_reset_statement] = ACTIONS(9526), + [aux_sym_raise_event_statement_token1] = ACTIONS(9526), + [sym_stop_statement] = ACTIONS(9526), + [sym_beep_statement] = ACTIONS(9526), + [aux_sym_unload_statement_token1] = ACTIONS(9526), + [aux_sym_def_type_statement_token1] = ACTIONS(9526), + [aux_sym_def_type_statement_token2] = ACTIONS(9526), + [aux_sym_def_type_statement_token3] = ACTIONS(9526), + [aux_sym_def_type_statement_token4] = ACTIONS(9526), + [aux_sym_def_type_statement_token5] = ACTIONS(9526), + [aux_sym_def_type_statement_token6] = ACTIONS(9526), + [aux_sym_def_type_statement_token7] = ACTIONS(9526), + [aux_sym_def_type_statement_token8] = ACTIONS(9526), + [aux_sym_def_type_statement_token9] = ACTIONS(9526), + [aux_sym_def_type_statement_token10] = ACTIONS(9526), + [aux_sym_def_type_statement_token11] = ACTIONS(9526), + [aux_sym_def_type_statement_token12] = ACTIONS(9526), + [aux_sym_def_type_statement_token13] = ACTIONS(9526), + [aux_sym_def_type_statement_token14] = ACTIONS(9526), + [aux_sym_call_statement_token1] = ACTIONS(9526), + [sym__ambiguous_call_statement] = ACTIONS(9526), + [aux_sym_addressof_expression_token1] = ACTIONS(9526), + [aux_sym_type_of_expression_token1] = ACTIONS(9526), + [aux_sym_unary_expression_token1] = ACTIONS(9526), + [sym_string_literal] = ACTIONS(9528), + [sym_number_literal] = ACTIONS(9528), + [aux_sym_boolean_literal_token1] = ACTIONS(9526), + [aux_sym_boolean_literal_token2] = ACTIONS(9526), + [sym_nothing_literal] = ACTIONS(9526), + [sym_null_literal] = ACTIONS(9526), + [sym_empty_literal] = ACTIONS(9526), + [sym_date_literal] = ACTIONS(9528), + [anon_sym_POUND] = ACTIONS(9526), + }, + [STATE(7183)] = { + [sym_identifier] = ACTIONS(9818), + [sym_newline] = ACTIONS(9820), + [anon_sym_COLON] = ACTIONS(9820), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9818), + [aux_sym_frm_property_statement_token1] = ACTIONS(9818), + [anon_sym_DOT] = ACTIONS(9818), + [anon_sym_BANG] = ACTIONS(9820), + [aux_sym__attribute_identifier_token1] = ACTIONS(9818), + [aux_sym_option_statement_token3] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9818), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9818), + [aux_sym_preprocessor_const_token1] = ACTIONS(9818), + [sym_static_modifier] = ACTIONS(9818), + [sym__dim_keyword] = ACTIONS(9818), + [sym__redim_keyword] = ACTIONS(9818), + [aux_sym_get_accessor_token1] = ACTIONS(9818), + [aux_sym_set_accessor_token1] = ACTIONS(9818), + [aux_sym_const_declaration_token1] = ACTIONS(9818), + [anon_sym_LPAREN] = ACTIONS(9820), + [aux_sym_as_type_clause_token2] = ACTIONS(9818), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9818), + [aux_sym_visibility_token1] = ACTIONS(9818), + [aux_sym_visibility_token2] = ACTIONS(9818), + [aux_sym_elseif_fragment_token1] = ACTIONS(9818), + [aux_sym_else_fragment_token1] = ACTIONS(9818), + [aux_sym_select_statement_token1] = ACTIONS(9818), + [aux_sym__for_header_token1] = ACTIONS(9818), + [aux_sym_do_statement_token1] = ACTIONS(9818), + [aux_sym_do_condition_token1] = ACTIONS(9818), + [aux_sym_with_statement_token1] = ACTIONS(9818), + [aux_sym_exit_statement_token1] = ACTIONS(9818), + [sym_end_statement] = ACTIONS(9820), + [aux_sym_on_goto_statement_token1] = ACTIONS(9818), + [aux_sym_on_goto_statement_token2] = ACTIONS(9818), + [aux_sym_on_error_statement_token2] = ACTIONS(9818), + [sym__ambiguous_redim_statement] = ACTIONS(9820), + [aux_sym_erase_statement_token1] = ACTIONS(9818), + [aux_sym_open_statement_token1] = ACTIONS(9818), + [aux_sym_file_mode_token2] = ACTIONS(9818), + [aux_sym_file_access_token2] = ACTIONS(9818), + [aux_sym_file_lock_token2] = ACTIONS(9818), + [aux_sym_print_statement_token1] = ACTIONS(9818), + [anon_sym_PLUS] = ACTIONS(9820), + [anon_sym_DASH] = ACTIONS(9818), + [anon_sym_QMARK] = ACTIONS(9820), + [aux_sym_close_statement_token1] = ACTIONS(9818), + [aux_sym_put_statement_token1] = ACTIONS(9818), + [aux_sym_unlock_statement_token1] = ACTIONS(9818), + [aux_sym_seek_statement_token1] = ACTIONS(9818), + [sym_reset_statement] = ACTIONS(9818), + [aux_sym_raise_event_statement_token1] = ACTIONS(9818), + [sym_stop_statement] = ACTIONS(9818), + [sym_beep_statement] = ACTIONS(9818), + [aux_sym_unload_statement_token1] = ACTIONS(9818), + [aux_sym_def_type_statement_token1] = ACTIONS(9818), + [aux_sym_def_type_statement_token2] = ACTIONS(9818), + [aux_sym_def_type_statement_token3] = ACTIONS(9818), + [aux_sym_def_type_statement_token4] = ACTIONS(9818), + [aux_sym_def_type_statement_token5] = ACTIONS(9818), + [aux_sym_def_type_statement_token6] = ACTIONS(9818), + [aux_sym_def_type_statement_token7] = ACTIONS(9818), + [aux_sym_def_type_statement_token8] = ACTIONS(9818), + [aux_sym_def_type_statement_token9] = ACTIONS(9818), + [aux_sym_def_type_statement_token10] = ACTIONS(9818), + [aux_sym_def_type_statement_token11] = ACTIONS(9818), + [aux_sym_def_type_statement_token12] = ACTIONS(9818), + [aux_sym_def_type_statement_token13] = ACTIONS(9818), + [aux_sym_def_type_statement_token14] = ACTIONS(9818), + [aux_sym_call_statement_token1] = ACTIONS(9818), + [sym__ambiguous_call_statement] = ACTIONS(9818), + [aux_sym_addressof_expression_token1] = ACTIONS(9818), + [aux_sym_type_of_expression_token1] = ACTIONS(9818), + [aux_sym_unary_expression_token1] = ACTIONS(9818), + [sym_string_literal] = ACTIONS(9820), + [sym_number_literal] = ACTIONS(9820), + [aux_sym_boolean_literal_token1] = ACTIONS(9818), + [aux_sym_boolean_literal_token2] = ACTIONS(9818), + [sym_nothing_literal] = ACTIONS(9818), + [sym_null_literal] = ACTIONS(9818), + [sym_empty_literal] = ACTIONS(9818), + [sym_date_literal] = ACTIONS(9820), + [anon_sym_POUND] = ACTIONS(9818), + }, + [STATE(7184)] = { + [sym_identifier] = ACTIONS(9532), + [sym_newline] = ACTIONS(9534), + [anon_sym_COLON] = ACTIONS(9534), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9532), + [aux_sym_frm_property_statement_token1] = ACTIONS(9532), + [anon_sym_DOT] = ACTIONS(9532), + [anon_sym_BANG] = ACTIONS(9534), + [aux_sym__attribute_identifier_token1] = ACTIONS(9532), + [aux_sym_option_statement_token3] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9532), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9532), + [aux_sym_preprocessor_const_token1] = ACTIONS(9532), + [sym_static_modifier] = ACTIONS(9532), + [sym__dim_keyword] = ACTIONS(9532), + [sym__redim_keyword] = ACTIONS(9532), + [aux_sym_get_accessor_token1] = ACTIONS(9532), + [aux_sym_set_accessor_token1] = ACTIONS(9532), + [aux_sym_const_declaration_token1] = ACTIONS(9532), + [anon_sym_LPAREN] = ACTIONS(9534), + [aux_sym_as_type_clause_token2] = ACTIONS(9532), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9532), + [aux_sym_visibility_token1] = ACTIONS(9532), + [aux_sym_visibility_token2] = ACTIONS(9532), + [aux_sym_elseif_fragment_token1] = ACTIONS(9532), + [aux_sym_else_fragment_token1] = ACTIONS(9532), + [aux_sym_select_statement_token1] = ACTIONS(9532), + [aux_sym__for_header_token1] = ACTIONS(9532), + [aux_sym_do_statement_token1] = ACTIONS(9532), + [aux_sym_do_condition_token1] = ACTIONS(9532), + [aux_sym_with_statement_token1] = ACTIONS(9532), + [aux_sym_exit_statement_token1] = ACTIONS(9532), + [sym_end_statement] = ACTIONS(9534), + [aux_sym_on_goto_statement_token1] = ACTIONS(9532), + [aux_sym_on_goto_statement_token2] = ACTIONS(9532), + [aux_sym_on_error_statement_token2] = ACTIONS(9532), + [sym__ambiguous_redim_statement] = ACTIONS(9534), + [aux_sym_erase_statement_token1] = ACTIONS(9532), + [aux_sym_open_statement_token1] = ACTIONS(9532), + [aux_sym_file_mode_token2] = ACTIONS(9532), + [aux_sym_file_access_token2] = ACTIONS(9532), + [aux_sym_file_lock_token2] = ACTIONS(9532), + [aux_sym_print_statement_token1] = ACTIONS(9532), + [anon_sym_PLUS] = ACTIONS(9534), + [anon_sym_DASH] = ACTIONS(9532), + [anon_sym_QMARK] = ACTIONS(9534), + [aux_sym_close_statement_token1] = ACTIONS(9532), + [aux_sym_put_statement_token1] = ACTIONS(9532), + [aux_sym_unlock_statement_token1] = ACTIONS(9532), + [aux_sym_seek_statement_token1] = ACTIONS(9532), + [sym_reset_statement] = ACTIONS(9532), + [aux_sym_raise_event_statement_token1] = ACTIONS(9532), + [sym_stop_statement] = ACTIONS(9532), + [sym_beep_statement] = ACTIONS(9532), + [aux_sym_unload_statement_token1] = ACTIONS(9532), + [aux_sym_def_type_statement_token1] = ACTIONS(9532), + [aux_sym_def_type_statement_token2] = ACTIONS(9532), + [aux_sym_def_type_statement_token3] = ACTIONS(9532), + [aux_sym_def_type_statement_token4] = ACTIONS(9532), + [aux_sym_def_type_statement_token5] = ACTIONS(9532), + [aux_sym_def_type_statement_token6] = ACTIONS(9532), + [aux_sym_def_type_statement_token7] = ACTIONS(9532), + [aux_sym_def_type_statement_token8] = ACTIONS(9532), + [aux_sym_def_type_statement_token9] = ACTIONS(9532), + [aux_sym_def_type_statement_token10] = ACTIONS(9532), + [aux_sym_def_type_statement_token11] = ACTIONS(9532), + [aux_sym_def_type_statement_token12] = ACTIONS(9532), + [aux_sym_def_type_statement_token13] = ACTIONS(9532), + [aux_sym_def_type_statement_token14] = ACTIONS(9532), + [aux_sym_call_statement_token1] = ACTIONS(9532), + [sym__ambiguous_call_statement] = ACTIONS(9532), + [aux_sym_addressof_expression_token1] = ACTIONS(9532), + [aux_sym_type_of_expression_token1] = ACTIONS(9532), + [aux_sym_unary_expression_token1] = ACTIONS(9532), + [sym_string_literal] = ACTIONS(9534), + [sym_number_literal] = ACTIONS(9534), + [aux_sym_boolean_literal_token1] = ACTIONS(9532), + [aux_sym_boolean_literal_token2] = ACTIONS(9532), + [sym_nothing_literal] = ACTIONS(9532), + [sym_null_literal] = ACTIONS(9532), + [sym_empty_literal] = ACTIONS(9532), + [sym_date_literal] = ACTIONS(9534), + [anon_sym_POUND] = ACTIONS(9532), + }, + [STATE(7185)] = { + [sym_identifier] = ACTIONS(9643), + [sym_newline] = ACTIONS(9645), + [anon_sym_COLON] = ACTIONS(9645), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9643), + [aux_sym_frm_property_statement_token1] = ACTIONS(9643), + [anon_sym_DOT] = ACTIONS(9643), + [anon_sym_BANG] = ACTIONS(9645), + [aux_sym__attribute_identifier_token1] = ACTIONS(9643), + [aux_sym_option_statement_token3] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9643), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9643), + [aux_sym_preprocessor_const_token1] = ACTIONS(9643), + [sym_static_modifier] = ACTIONS(9643), + [sym__dim_keyword] = ACTIONS(9643), + [sym__redim_keyword] = ACTIONS(9643), + [aux_sym_get_accessor_token1] = ACTIONS(9643), + [aux_sym_set_accessor_token1] = ACTIONS(9643), + [aux_sym_const_declaration_token1] = ACTIONS(9643), + [anon_sym_LPAREN] = ACTIONS(9645), + [aux_sym_as_type_clause_token2] = ACTIONS(9643), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9643), + [aux_sym_visibility_token1] = ACTIONS(9643), + [aux_sym_visibility_token2] = ACTIONS(9643), + [aux_sym_elseif_fragment_token1] = ACTIONS(9643), + [aux_sym_else_fragment_token1] = ACTIONS(9643), + [aux_sym_select_statement_token1] = ACTIONS(9643), + [aux_sym__for_header_token1] = ACTIONS(9643), + [aux_sym_do_statement_token1] = ACTIONS(9643), + [aux_sym_do_condition_token1] = ACTIONS(9643), + [aux_sym_with_statement_token1] = ACTIONS(9643), + [aux_sym_exit_statement_token1] = ACTIONS(9643), + [sym_end_statement] = ACTIONS(9645), + [aux_sym_on_goto_statement_token1] = ACTIONS(9643), + [aux_sym_on_goto_statement_token2] = ACTIONS(9643), + [aux_sym_on_error_statement_token2] = ACTIONS(9643), + [sym__ambiguous_redim_statement] = ACTIONS(9645), + [aux_sym_erase_statement_token1] = ACTIONS(9643), + [aux_sym_open_statement_token1] = ACTIONS(9643), + [aux_sym_file_mode_token2] = ACTIONS(9643), + [aux_sym_file_access_token2] = ACTIONS(9643), + [aux_sym_file_lock_token2] = ACTIONS(9643), + [aux_sym_print_statement_token1] = ACTIONS(9643), + [anon_sym_PLUS] = ACTIONS(9645), + [anon_sym_DASH] = ACTIONS(9643), + [anon_sym_QMARK] = ACTIONS(9645), + [aux_sym_close_statement_token1] = ACTIONS(9643), + [aux_sym_put_statement_token1] = ACTIONS(9643), + [aux_sym_unlock_statement_token1] = ACTIONS(9643), + [aux_sym_seek_statement_token1] = ACTIONS(9643), + [sym_reset_statement] = ACTIONS(9643), + [aux_sym_raise_event_statement_token1] = ACTIONS(9643), + [sym_stop_statement] = ACTIONS(9643), + [sym_beep_statement] = ACTIONS(9643), + [aux_sym_unload_statement_token1] = ACTIONS(9643), + [aux_sym_def_type_statement_token1] = ACTIONS(9643), + [aux_sym_def_type_statement_token2] = ACTIONS(9643), + [aux_sym_def_type_statement_token3] = ACTIONS(9643), + [aux_sym_def_type_statement_token4] = ACTIONS(9643), + [aux_sym_def_type_statement_token5] = ACTIONS(9643), + [aux_sym_def_type_statement_token6] = ACTIONS(9643), + [aux_sym_def_type_statement_token7] = ACTIONS(9643), + [aux_sym_def_type_statement_token8] = ACTIONS(9643), + [aux_sym_def_type_statement_token9] = ACTIONS(9643), + [aux_sym_def_type_statement_token10] = ACTIONS(9643), + [aux_sym_def_type_statement_token11] = ACTIONS(9643), + [aux_sym_def_type_statement_token12] = ACTIONS(9643), + [aux_sym_def_type_statement_token13] = ACTIONS(9643), + [aux_sym_def_type_statement_token14] = ACTIONS(9643), + [aux_sym_call_statement_token1] = ACTIONS(9643), + [sym__ambiguous_call_statement] = ACTIONS(9643), + [aux_sym_addressof_expression_token1] = ACTIONS(9643), + [aux_sym_type_of_expression_token1] = ACTIONS(9643), + [aux_sym_unary_expression_token1] = ACTIONS(9643), + [sym_string_literal] = ACTIONS(9645), + [sym_number_literal] = ACTIONS(9645), + [aux_sym_boolean_literal_token1] = ACTIONS(9643), + [aux_sym_boolean_literal_token2] = ACTIONS(9643), + [sym_nothing_literal] = ACTIONS(9643), + [sym_null_literal] = ACTIONS(9643), + [sym_empty_literal] = ACTIONS(9643), + [sym_date_literal] = ACTIONS(9645), + [anon_sym_POUND] = ACTIONS(9643), + }, + [STATE(7186)] = { + [sym_identifier] = ACTIONS(9647), + [sym_newline] = ACTIONS(9649), + [anon_sym_COLON] = ACTIONS(9649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9647), + [aux_sym_frm_property_statement_token1] = ACTIONS(9647), + [anon_sym_DOT] = ACTIONS(9647), + [anon_sym_BANG] = ACTIONS(9649), + [aux_sym__attribute_identifier_token1] = ACTIONS(9647), + [aux_sym_option_statement_token3] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9647), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9647), + [aux_sym_preprocessor_const_token1] = ACTIONS(9647), + [sym_static_modifier] = ACTIONS(9647), + [sym__dim_keyword] = ACTIONS(9647), + [sym__redim_keyword] = ACTIONS(9647), + [aux_sym_get_accessor_token1] = ACTIONS(9647), + [aux_sym_set_accessor_token1] = ACTIONS(9647), + [aux_sym_const_declaration_token1] = ACTIONS(9647), + [anon_sym_LPAREN] = ACTIONS(9649), + [aux_sym_as_type_clause_token2] = ACTIONS(9647), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9647), + [aux_sym_visibility_token1] = ACTIONS(9647), + [aux_sym_visibility_token2] = ACTIONS(9647), + [aux_sym_elseif_fragment_token1] = ACTIONS(9647), + [aux_sym_else_fragment_token1] = ACTIONS(9647), + [aux_sym_select_statement_token1] = ACTIONS(9647), + [aux_sym__for_header_token1] = ACTIONS(9647), + [aux_sym_do_statement_token1] = ACTIONS(9647), + [aux_sym_do_condition_token1] = ACTIONS(9647), + [aux_sym_with_statement_token1] = ACTIONS(9647), + [aux_sym_exit_statement_token1] = ACTIONS(9647), + [sym_end_statement] = ACTIONS(9649), + [aux_sym_on_goto_statement_token1] = ACTIONS(9647), + [aux_sym_on_goto_statement_token2] = ACTIONS(9647), + [aux_sym_on_error_statement_token2] = ACTIONS(9647), + [sym__ambiguous_redim_statement] = ACTIONS(9649), + [aux_sym_erase_statement_token1] = ACTIONS(9647), + [aux_sym_open_statement_token1] = ACTIONS(9647), + [aux_sym_file_mode_token2] = ACTIONS(9647), + [aux_sym_file_access_token2] = ACTIONS(9647), + [aux_sym_file_lock_token2] = ACTIONS(9647), + [aux_sym_print_statement_token1] = ACTIONS(9647), + [anon_sym_PLUS] = ACTIONS(9649), + [anon_sym_DASH] = ACTIONS(9647), + [anon_sym_QMARK] = ACTIONS(9649), + [aux_sym_close_statement_token1] = ACTIONS(9647), + [aux_sym_put_statement_token1] = ACTIONS(9647), + [aux_sym_unlock_statement_token1] = ACTIONS(9647), + [aux_sym_seek_statement_token1] = ACTIONS(9647), + [sym_reset_statement] = ACTIONS(9647), + [aux_sym_raise_event_statement_token1] = ACTIONS(9647), + [sym_stop_statement] = ACTIONS(9647), + [sym_beep_statement] = ACTIONS(9647), + [aux_sym_unload_statement_token1] = ACTIONS(9647), + [aux_sym_def_type_statement_token1] = ACTIONS(9647), + [aux_sym_def_type_statement_token2] = ACTIONS(9647), + [aux_sym_def_type_statement_token3] = ACTIONS(9647), + [aux_sym_def_type_statement_token4] = ACTIONS(9647), + [aux_sym_def_type_statement_token5] = ACTIONS(9647), + [aux_sym_def_type_statement_token6] = ACTIONS(9647), + [aux_sym_def_type_statement_token7] = ACTIONS(9647), + [aux_sym_def_type_statement_token8] = ACTIONS(9647), + [aux_sym_def_type_statement_token9] = ACTIONS(9647), + [aux_sym_def_type_statement_token10] = ACTIONS(9647), + [aux_sym_def_type_statement_token11] = ACTIONS(9647), + [aux_sym_def_type_statement_token12] = ACTIONS(9647), + [aux_sym_def_type_statement_token13] = ACTIONS(9647), + [aux_sym_def_type_statement_token14] = ACTIONS(9647), + [aux_sym_call_statement_token1] = ACTIONS(9647), + [sym__ambiguous_call_statement] = ACTIONS(9647), + [aux_sym_addressof_expression_token1] = ACTIONS(9647), + [aux_sym_type_of_expression_token1] = ACTIONS(9647), + [aux_sym_unary_expression_token1] = ACTIONS(9647), + [sym_string_literal] = ACTIONS(9649), + [sym_number_literal] = ACTIONS(9649), + [aux_sym_boolean_literal_token1] = ACTIONS(9647), + [aux_sym_boolean_literal_token2] = ACTIONS(9647), + [sym_nothing_literal] = ACTIONS(9647), + [sym_null_literal] = ACTIONS(9647), + [sym_empty_literal] = ACTIONS(9647), + [sym_date_literal] = ACTIONS(9649), + [anon_sym_POUND] = ACTIONS(9647), + }, + [STATE(7187)] = { + [sym_identifier] = ACTIONS(9654), + [sym_newline] = ACTIONS(9656), + [anon_sym_COLON] = ACTIONS(9656), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9654), + [aux_sym_frm_property_statement_token1] = ACTIONS(9654), + [anon_sym_DOT] = ACTIONS(9654), + [anon_sym_BANG] = ACTIONS(9656), + [aux_sym__attribute_identifier_token1] = ACTIONS(9654), + [aux_sym_option_statement_token3] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9654), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9654), + [aux_sym_preprocessor_const_token1] = ACTIONS(9654), + [sym_static_modifier] = ACTIONS(9654), + [sym__dim_keyword] = ACTIONS(9654), + [sym__redim_keyword] = ACTIONS(9654), + [aux_sym_get_accessor_token1] = ACTIONS(9654), + [aux_sym_set_accessor_token1] = ACTIONS(9654), + [aux_sym_const_declaration_token1] = ACTIONS(9654), + [anon_sym_LPAREN] = ACTIONS(9656), + [aux_sym_as_type_clause_token2] = ACTIONS(9654), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9654), + [aux_sym_visibility_token1] = ACTIONS(9654), + [aux_sym_visibility_token2] = ACTIONS(9654), + [aux_sym_elseif_fragment_token1] = ACTIONS(9654), + [aux_sym_else_fragment_token1] = ACTIONS(9654), + [aux_sym_select_statement_token1] = ACTIONS(9654), + [aux_sym__for_header_token1] = ACTIONS(9654), + [aux_sym_do_statement_token1] = ACTIONS(9654), + [aux_sym_do_condition_token1] = ACTIONS(9654), + [aux_sym_with_statement_token1] = ACTIONS(9654), + [aux_sym_exit_statement_token1] = ACTIONS(9654), + [sym_end_statement] = ACTIONS(9656), + [aux_sym_on_goto_statement_token1] = ACTIONS(9654), + [aux_sym_on_goto_statement_token2] = ACTIONS(9654), + [aux_sym_on_error_statement_token2] = ACTIONS(9654), + [sym__ambiguous_redim_statement] = ACTIONS(9656), + [aux_sym_erase_statement_token1] = ACTIONS(9654), + [aux_sym_open_statement_token1] = ACTIONS(9654), + [aux_sym_file_mode_token2] = ACTIONS(9654), + [aux_sym_file_access_token2] = ACTIONS(9654), + [aux_sym_file_lock_token2] = ACTIONS(9654), + [aux_sym_print_statement_token1] = ACTIONS(9654), + [anon_sym_PLUS] = ACTIONS(9656), + [anon_sym_DASH] = ACTIONS(9654), + [anon_sym_QMARK] = ACTIONS(9656), + [aux_sym_close_statement_token1] = ACTIONS(9654), + [aux_sym_put_statement_token1] = ACTIONS(9654), + [aux_sym_unlock_statement_token1] = ACTIONS(9654), + [aux_sym_seek_statement_token1] = ACTIONS(9654), + [sym_reset_statement] = ACTIONS(9654), + [aux_sym_raise_event_statement_token1] = ACTIONS(9654), + [sym_stop_statement] = ACTIONS(9654), + [sym_beep_statement] = ACTIONS(9654), + [aux_sym_unload_statement_token1] = ACTIONS(9654), + [aux_sym_def_type_statement_token1] = ACTIONS(9654), + [aux_sym_def_type_statement_token2] = ACTIONS(9654), + [aux_sym_def_type_statement_token3] = ACTIONS(9654), + [aux_sym_def_type_statement_token4] = ACTIONS(9654), + [aux_sym_def_type_statement_token5] = ACTIONS(9654), + [aux_sym_def_type_statement_token6] = ACTIONS(9654), + [aux_sym_def_type_statement_token7] = ACTIONS(9654), + [aux_sym_def_type_statement_token8] = ACTIONS(9654), + [aux_sym_def_type_statement_token9] = ACTIONS(9654), + [aux_sym_def_type_statement_token10] = ACTIONS(9654), + [aux_sym_def_type_statement_token11] = ACTIONS(9654), + [aux_sym_def_type_statement_token12] = ACTIONS(9654), + [aux_sym_def_type_statement_token13] = ACTIONS(9654), + [aux_sym_def_type_statement_token14] = ACTIONS(9654), + [aux_sym_call_statement_token1] = ACTIONS(9654), + [sym__ambiguous_call_statement] = ACTIONS(9654), + [aux_sym_addressof_expression_token1] = ACTIONS(9654), + [aux_sym_type_of_expression_token1] = ACTIONS(9654), + [aux_sym_unary_expression_token1] = ACTIONS(9654), + [sym_string_literal] = ACTIONS(9656), + [sym_number_literal] = ACTIONS(9656), + [aux_sym_boolean_literal_token1] = ACTIONS(9654), + [aux_sym_boolean_literal_token2] = ACTIONS(9654), + [sym_nothing_literal] = ACTIONS(9654), + [sym_null_literal] = ACTIONS(9654), + [sym_empty_literal] = ACTIONS(9654), + [sym_date_literal] = ACTIONS(9656), + [anon_sym_POUND] = ACTIONS(9654), + }, + [STATE(7188)] = { + [sym_identifier] = ACTIONS(9536), + [sym_newline] = ACTIONS(9538), + [anon_sym_COLON] = ACTIONS(9538), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9536), + [aux_sym_frm_property_statement_token1] = ACTIONS(9536), + [anon_sym_DOT] = ACTIONS(9536), + [anon_sym_BANG] = ACTIONS(9538), + [aux_sym__attribute_identifier_token1] = ACTIONS(9536), + [aux_sym_option_statement_token3] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9536), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9536), + [aux_sym_preprocessor_const_token1] = ACTIONS(9536), + [sym_static_modifier] = ACTIONS(9536), + [sym__dim_keyword] = ACTIONS(9536), + [sym__redim_keyword] = ACTIONS(9536), + [aux_sym_get_accessor_token1] = ACTIONS(9536), + [aux_sym_set_accessor_token1] = ACTIONS(9536), + [aux_sym_const_declaration_token1] = ACTIONS(9536), + [anon_sym_LPAREN] = ACTIONS(9538), + [aux_sym_as_type_clause_token2] = ACTIONS(9536), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9536), + [aux_sym_visibility_token1] = ACTIONS(9536), + [aux_sym_visibility_token2] = ACTIONS(9536), + [aux_sym_elseif_fragment_token1] = ACTIONS(9536), + [aux_sym_else_fragment_token1] = ACTIONS(9536), + [aux_sym_select_statement_token1] = ACTIONS(9536), + [aux_sym__for_header_token1] = ACTIONS(9536), + [aux_sym_do_statement_token1] = ACTIONS(9536), + [aux_sym_do_condition_token1] = ACTIONS(9536), + [aux_sym_with_statement_token1] = ACTIONS(9536), + [aux_sym_exit_statement_token1] = ACTIONS(9536), + [sym_end_statement] = ACTIONS(9538), + [aux_sym_on_goto_statement_token1] = ACTIONS(9536), + [aux_sym_on_goto_statement_token2] = ACTIONS(9536), + [aux_sym_on_error_statement_token2] = ACTIONS(9536), + [sym__ambiguous_redim_statement] = ACTIONS(9538), + [aux_sym_erase_statement_token1] = ACTIONS(9536), + [aux_sym_open_statement_token1] = ACTIONS(9536), + [aux_sym_file_mode_token2] = ACTIONS(9536), + [aux_sym_file_access_token2] = ACTIONS(9536), + [aux_sym_file_lock_token2] = ACTIONS(9536), + [aux_sym_print_statement_token1] = ACTIONS(9536), + [anon_sym_PLUS] = ACTIONS(9538), + [anon_sym_DASH] = ACTIONS(9536), + [anon_sym_QMARK] = ACTIONS(9538), + [aux_sym_close_statement_token1] = ACTIONS(9536), + [aux_sym_put_statement_token1] = ACTIONS(9536), + [aux_sym_unlock_statement_token1] = ACTIONS(9536), + [aux_sym_seek_statement_token1] = ACTIONS(9536), + [sym_reset_statement] = ACTIONS(9536), + [aux_sym_raise_event_statement_token1] = ACTIONS(9536), + [sym_stop_statement] = ACTIONS(9536), + [sym_beep_statement] = ACTIONS(9536), + [aux_sym_unload_statement_token1] = ACTIONS(9536), + [aux_sym_def_type_statement_token1] = ACTIONS(9536), + [aux_sym_def_type_statement_token2] = ACTIONS(9536), + [aux_sym_def_type_statement_token3] = ACTIONS(9536), + [aux_sym_def_type_statement_token4] = ACTIONS(9536), + [aux_sym_def_type_statement_token5] = ACTIONS(9536), + [aux_sym_def_type_statement_token6] = ACTIONS(9536), + [aux_sym_def_type_statement_token7] = ACTIONS(9536), + [aux_sym_def_type_statement_token8] = ACTIONS(9536), + [aux_sym_def_type_statement_token9] = ACTIONS(9536), + [aux_sym_def_type_statement_token10] = ACTIONS(9536), + [aux_sym_def_type_statement_token11] = ACTIONS(9536), + [aux_sym_def_type_statement_token12] = ACTIONS(9536), + [aux_sym_def_type_statement_token13] = ACTIONS(9536), + [aux_sym_def_type_statement_token14] = ACTIONS(9536), + [aux_sym_call_statement_token1] = ACTIONS(9536), + [sym__ambiguous_call_statement] = ACTIONS(9536), + [aux_sym_addressof_expression_token1] = ACTIONS(9536), + [aux_sym_type_of_expression_token1] = ACTIONS(9536), + [aux_sym_unary_expression_token1] = ACTIONS(9536), + [sym_string_literal] = ACTIONS(9538), + [sym_number_literal] = ACTIONS(9538), + [aux_sym_boolean_literal_token1] = ACTIONS(9536), + [aux_sym_boolean_literal_token2] = ACTIONS(9536), + [sym_nothing_literal] = ACTIONS(9536), + [sym_null_literal] = ACTIONS(9536), + [sym_empty_literal] = ACTIONS(9536), + [sym_date_literal] = ACTIONS(9538), + [anon_sym_POUND] = ACTIONS(9536), + }, + [STATE(7189)] = { + [sym_identifier] = ACTIONS(9413), + [sym_newline] = ACTIONS(9415), + [anon_sym_COLON] = ACTIONS(9415), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9413), + [aux_sym_frm_property_statement_token1] = ACTIONS(9413), + [anon_sym_DOT] = ACTIONS(9413), + [anon_sym_BANG] = ACTIONS(9415), + [aux_sym__attribute_identifier_token1] = ACTIONS(9413), + [aux_sym_option_statement_token3] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9413), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9413), + [aux_sym_preprocessor_const_token1] = ACTIONS(9413), + [sym_static_modifier] = ACTIONS(9413), + [sym__dim_keyword] = ACTIONS(9413), + [sym__redim_keyword] = ACTIONS(9413), + [aux_sym_get_accessor_token1] = ACTIONS(9413), + [aux_sym_set_accessor_token1] = ACTIONS(9413), + [aux_sym_const_declaration_token1] = ACTIONS(9413), + [anon_sym_LPAREN] = ACTIONS(9415), + [aux_sym_as_type_clause_token2] = ACTIONS(9413), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9413), + [aux_sym_visibility_token1] = ACTIONS(9413), + [aux_sym_visibility_token2] = ACTIONS(9413), + [aux_sym_elseif_fragment_token1] = ACTIONS(9413), + [aux_sym_else_fragment_token1] = ACTIONS(9413), + [aux_sym_select_statement_token1] = ACTIONS(9413), + [aux_sym__for_header_token1] = ACTIONS(9413), + [aux_sym_do_statement_token1] = ACTIONS(9413), + [aux_sym_do_condition_token1] = ACTIONS(9413), + [aux_sym_with_statement_token1] = ACTIONS(9413), + [aux_sym_exit_statement_token1] = ACTIONS(9413), + [sym_end_statement] = ACTIONS(9415), + [aux_sym_on_goto_statement_token1] = ACTIONS(9413), + [aux_sym_on_goto_statement_token2] = ACTIONS(9413), + [aux_sym_on_error_statement_token2] = ACTIONS(9413), + [sym__ambiguous_redim_statement] = ACTIONS(9415), + [aux_sym_erase_statement_token1] = ACTIONS(9413), + [aux_sym_open_statement_token1] = ACTIONS(9413), + [aux_sym_file_mode_token2] = ACTIONS(9413), + [aux_sym_file_access_token2] = ACTIONS(9413), + [aux_sym_file_lock_token2] = ACTIONS(9413), + [aux_sym_print_statement_token1] = ACTIONS(9413), + [anon_sym_PLUS] = ACTIONS(9415), + [anon_sym_DASH] = ACTIONS(9413), + [anon_sym_QMARK] = ACTIONS(9415), + [aux_sym_close_statement_token1] = ACTIONS(9413), + [aux_sym_put_statement_token1] = ACTIONS(9413), + [aux_sym_unlock_statement_token1] = ACTIONS(9413), + [aux_sym_seek_statement_token1] = ACTIONS(9413), + [sym_reset_statement] = ACTIONS(9413), + [aux_sym_raise_event_statement_token1] = ACTIONS(9413), + [sym_stop_statement] = ACTIONS(9413), + [sym_beep_statement] = ACTIONS(9413), + [aux_sym_unload_statement_token1] = ACTIONS(9413), + [aux_sym_def_type_statement_token1] = ACTIONS(9413), + [aux_sym_def_type_statement_token2] = ACTIONS(9413), + [aux_sym_def_type_statement_token3] = ACTIONS(9413), + [aux_sym_def_type_statement_token4] = ACTIONS(9413), + [aux_sym_def_type_statement_token5] = ACTIONS(9413), + [aux_sym_def_type_statement_token6] = ACTIONS(9413), + [aux_sym_def_type_statement_token7] = ACTIONS(9413), + [aux_sym_def_type_statement_token8] = ACTIONS(9413), + [aux_sym_def_type_statement_token9] = ACTIONS(9413), + [aux_sym_def_type_statement_token10] = ACTIONS(9413), + [aux_sym_def_type_statement_token11] = ACTIONS(9413), + [aux_sym_def_type_statement_token12] = ACTIONS(9413), + [aux_sym_def_type_statement_token13] = ACTIONS(9413), + [aux_sym_def_type_statement_token14] = ACTIONS(9413), + [aux_sym_call_statement_token1] = ACTIONS(9413), + [sym__ambiguous_call_statement] = ACTIONS(9413), + [aux_sym_addressof_expression_token1] = ACTIONS(9413), + [aux_sym_type_of_expression_token1] = ACTIONS(9413), + [aux_sym_unary_expression_token1] = ACTIONS(9413), + [sym_string_literal] = ACTIONS(9415), + [sym_number_literal] = ACTIONS(9415), + [aux_sym_boolean_literal_token1] = ACTIONS(9413), + [aux_sym_boolean_literal_token2] = ACTIONS(9413), + [sym_nothing_literal] = ACTIONS(9413), + [sym_null_literal] = ACTIONS(9413), + [sym_empty_literal] = ACTIONS(9413), + [sym_date_literal] = ACTIONS(9415), + [anon_sym_POUND] = ACTIONS(9413), + }, + [STATE(7190)] = { + [sym_identifier] = ACTIONS(9072), + [sym_newline] = ACTIONS(9074), + [anon_sym_COLON] = ACTIONS(9074), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9072), + [aux_sym_frm_property_statement_token1] = ACTIONS(9072), + [anon_sym_DOT] = ACTIONS(9072), + [anon_sym_BANG] = ACTIONS(9074), + [aux_sym__attribute_identifier_token1] = ACTIONS(9072), + [aux_sym_option_statement_token3] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9072), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9072), + [aux_sym_preprocessor_const_token1] = ACTIONS(9072), + [sym_static_modifier] = ACTIONS(9072), + [sym__dim_keyword] = ACTIONS(9072), + [sym__redim_keyword] = ACTIONS(9072), + [aux_sym_get_accessor_token1] = ACTIONS(9072), + [aux_sym_set_accessor_token1] = ACTIONS(9072), + [aux_sym_const_declaration_token1] = ACTIONS(9072), + [anon_sym_LPAREN] = ACTIONS(9074), + [aux_sym_as_type_clause_token2] = ACTIONS(9072), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9072), + [aux_sym_visibility_token1] = ACTIONS(9072), + [aux_sym_visibility_token2] = ACTIONS(9072), + [aux_sym_elseif_fragment_token1] = ACTIONS(9072), + [aux_sym_else_fragment_token1] = ACTIONS(9072), + [aux_sym_select_statement_token1] = ACTIONS(9072), + [aux_sym__for_header_token1] = ACTIONS(9072), + [aux_sym_do_statement_token1] = ACTIONS(9072), + [aux_sym_do_condition_token1] = ACTIONS(9072), + [aux_sym_with_statement_token1] = ACTIONS(9072), + [aux_sym_exit_statement_token1] = ACTIONS(9072), + [sym_end_statement] = ACTIONS(9074), + [aux_sym_on_goto_statement_token1] = ACTIONS(9072), + [aux_sym_on_goto_statement_token2] = ACTIONS(9072), + [aux_sym_on_error_statement_token2] = ACTIONS(9072), + [sym__ambiguous_redim_statement] = ACTIONS(9074), + [aux_sym_erase_statement_token1] = ACTIONS(9072), + [aux_sym_open_statement_token1] = ACTIONS(9072), + [aux_sym_file_mode_token2] = ACTIONS(9072), + [aux_sym_file_access_token2] = ACTIONS(9072), + [aux_sym_file_lock_token2] = ACTIONS(9072), + [aux_sym_print_statement_token1] = ACTIONS(9072), + [anon_sym_PLUS] = ACTIONS(9074), + [anon_sym_DASH] = ACTIONS(9072), + [anon_sym_QMARK] = ACTIONS(9074), + [aux_sym_close_statement_token1] = ACTIONS(9072), + [aux_sym_put_statement_token1] = ACTIONS(9072), + [aux_sym_unlock_statement_token1] = ACTIONS(9072), + [aux_sym_seek_statement_token1] = ACTIONS(9072), + [sym_reset_statement] = ACTIONS(9072), + [aux_sym_raise_event_statement_token1] = ACTIONS(9072), + [sym_stop_statement] = ACTIONS(9072), + [sym_beep_statement] = ACTIONS(9072), + [aux_sym_unload_statement_token1] = ACTIONS(9072), + [aux_sym_def_type_statement_token1] = ACTIONS(9072), + [aux_sym_def_type_statement_token2] = ACTIONS(9072), + [aux_sym_def_type_statement_token3] = ACTIONS(9072), + [aux_sym_def_type_statement_token4] = ACTIONS(9072), + [aux_sym_def_type_statement_token5] = ACTIONS(9072), + [aux_sym_def_type_statement_token6] = ACTIONS(9072), + [aux_sym_def_type_statement_token7] = ACTIONS(9072), + [aux_sym_def_type_statement_token8] = ACTIONS(9072), + [aux_sym_def_type_statement_token9] = ACTIONS(9072), + [aux_sym_def_type_statement_token10] = ACTIONS(9072), + [aux_sym_def_type_statement_token11] = ACTIONS(9072), + [aux_sym_def_type_statement_token12] = ACTIONS(9072), + [aux_sym_def_type_statement_token13] = ACTIONS(9072), + [aux_sym_def_type_statement_token14] = ACTIONS(9072), + [aux_sym_call_statement_token1] = ACTIONS(9072), + [sym__ambiguous_call_statement] = ACTIONS(9072), + [aux_sym_addressof_expression_token1] = ACTIONS(9072), + [aux_sym_type_of_expression_token1] = ACTIONS(9072), + [aux_sym_unary_expression_token1] = ACTIONS(9072), + [sym_string_literal] = ACTIONS(9074), + [sym_number_literal] = ACTIONS(9074), + [aux_sym_boolean_literal_token1] = ACTIONS(9072), + [aux_sym_boolean_literal_token2] = ACTIONS(9072), + [sym_nothing_literal] = ACTIONS(9072), + [sym_null_literal] = ACTIONS(9072), + [sym_empty_literal] = ACTIONS(9072), + [sym_date_literal] = ACTIONS(9074), + [anon_sym_POUND] = ACTIONS(9072), + }, + [STATE(7191)] = { + [sym_identifier] = ACTIONS(9542), + [sym_newline] = ACTIONS(9544), + [anon_sym_COLON] = ACTIONS(9544), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9542), + [aux_sym_frm_property_statement_token1] = ACTIONS(9542), + [anon_sym_DOT] = ACTIONS(9542), + [anon_sym_BANG] = ACTIONS(9544), + [aux_sym__attribute_identifier_token1] = ACTIONS(9542), + [aux_sym_option_statement_token3] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9542), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9542), + [aux_sym_preprocessor_const_token1] = ACTIONS(9542), + [sym_static_modifier] = ACTIONS(9542), + [sym__dim_keyword] = ACTIONS(9542), + [sym__redim_keyword] = ACTIONS(9542), + [aux_sym_get_accessor_token1] = ACTIONS(9542), + [aux_sym_set_accessor_token1] = ACTIONS(9542), + [aux_sym_const_declaration_token1] = ACTIONS(9542), + [anon_sym_LPAREN] = ACTIONS(9544), + [aux_sym_as_type_clause_token2] = ACTIONS(9542), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9542), + [aux_sym_visibility_token1] = ACTIONS(9542), + [aux_sym_visibility_token2] = ACTIONS(9542), + [aux_sym_elseif_fragment_token1] = ACTIONS(9542), + [aux_sym_else_fragment_token1] = ACTIONS(9542), + [aux_sym_select_statement_token1] = ACTIONS(9542), + [aux_sym__for_header_token1] = ACTIONS(9542), + [aux_sym_do_statement_token1] = ACTIONS(9542), + [aux_sym_do_condition_token1] = ACTIONS(9542), + [aux_sym_with_statement_token1] = ACTIONS(9542), + [aux_sym_exit_statement_token1] = ACTIONS(9542), + [sym_end_statement] = ACTIONS(9544), + [aux_sym_on_goto_statement_token1] = ACTIONS(9542), + [aux_sym_on_goto_statement_token2] = ACTIONS(9542), + [aux_sym_on_error_statement_token2] = ACTIONS(9542), + [sym__ambiguous_redim_statement] = ACTIONS(9544), + [aux_sym_erase_statement_token1] = ACTIONS(9542), + [aux_sym_open_statement_token1] = ACTIONS(9542), + [aux_sym_file_mode_token2] = ACTIONS(9542), + [aux_sym_file_access_token2] = ACTIONS(9542), + [aux_sym_file_lock_token2] = ACTIONS(9542), + [aux_sym_print_statement_token1] = ACTIONS(9542), + [anon_sym_PLUS] = ACTIONS(9544), + [anon_sym_DASH] = ACTIONS(9542), + [anon_sym_QMARK] = ACTIONS(9544), + [aux_sym_close_statement_token1] = ACTIONS(9542), + [aux_sym_put_statement_token1] = ACTIONS(9542), + [aux_sym_unlock_statement_token1] = ACTIONS(9542), + [aux_sym_seek_statement_token1] = ACTIONS(9542), + [sym_reset_statement] = ACTIONS(9542), + [aux_sym_raise_event_statement_token1] = ACTIONS(9542), + [sym_stop_statement] = ACTIONS(9542), + [sym_beep_statement] = ACTIONS(9542), + [aux_sym_unload_statement_token1] = ACTIONS(9542), + [aux_sym_def_type_statement_token1] = ACTIONS(9542), + [aux_sym_def_type_statement_token2] = ACTIONS(9542), + [aux_sym_def_type_statement_token3] = ACTIONS(9542), + [aux_sym_def_type_statement_token4] = ACTIONS(9542), + [aux_sym_def_type_statement_token5] = ACTIONS(9542), + [aux_sym_def_type_statement_token6] = ACTIONS(9542), + [aux_sym_def_type_statement_token7] = ACTIONS(9542), + [aux_sym_def_type_statement_token8] = ACTIONS(9542), + [aux_sym_def_type_statement_token9] = ACTIONS(9542), + [aux_sym_def_type_statement_token10] = ACTIONS(9542), + [aux_sym_def_type_statement_token11] = ACTIONS(9542), + [aux_sym_def_type_statement_token12] = ACTIONS(9542), + [aux_sym_def_type_statement_token13] = ACTIONS(9542), + [aux_sym_def_type_statement_token14] = ACTIONS(9542), + [aux_sym_call_statement_token1] = ACTIONS(9542), + [sym__ambiguous_call_statement] = ACTIONS(9542), + [aux_sym_addressof_expression_token1] = ACTIONS(9542), + [aux_sym_type_of_expression_token1] = ACTIONS(9542), + [aux_sym_unary_expression_token1] = ACTIONS(9542), + [sym_string_literal] = ACTIONS(9544), + [sym_number_literal] = ACTIONS(9544), + [aux_sym_boolean_literal_token1] = ACTIONS(9542), + [aux_sym_boolean_literal_token2] = ACTIONS(9542), + [sym_nothing_literal] = ACTIONS(9542), + [sym_null_literal] = ACTIONS(9542), + [sym_empty_literal] = ACTIONS(9542), + [sym_date_literal] = ACTIONS(9544), + [anon_sym_POUND] = ACTIONS(9542), + }, + [STATE(7192)] = { + [sym_identifier] = ACTIONS(9546), + [sym_newline] = ACTIONS(9548), + [anon_sym_COLON] = ACTIONS(9548), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9546), + [aux_sym_frm_property_statement_token1] = ACTIONS(9546), + [anon_sym_DOT] = ACTIONS(9546), + [anon_sym_BANG] = ACTIONS(9548), + [aux_sym__attribute_identifier_token1] = ACTIONS(9546), + [aux_sym_option_statement_token3] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9546), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9546), + [aux_sym_preprocessor_const_token1] = ACTIONS(9546), + [sym_static_modifier] = ACTIONS(9546), + [sym__dim_keyword] = ACTIONS(9546), + [sym__redim_keyword] = ACTIONS(9546), + [aux_sym_get_accessor_token1] = ACTIONS(9546), + [aux_sym_set_accessor_token1] = ACTIONS(9546), + [aux_sym_const_declaration_token1] = ACTIONS(9546), + [anon_sym_LPAREN] = ACTIONS(9548), + [aux_sym_as_type_clause_token2] = ACTIONS(9546), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9546), + [aux_sym_visibility_token1] = ACTIONS(9546), + [aux_sym_visibility_token2] = ACTIONS(9546), + [aux_sym_elseif_fragment_token1] = ACTIONS(9546), + [aux_sym_else_fragment_token1] = ACTIONS(9546), + [aux_sym_select_statement_token1] = ACTIONS(9546), + [aux_sym__for_header_token1] = ACTIONS(9546), + [aux_sym_do_statement_token1] = ACTIONS(9546), + [aux_sym_do_condition_token1] = ACTIONS(9546), + [aux_sym_with_statement_token1] = ACTIONS(9546), + [aux_sym_exit_statement_token1] = ACTIONS(9546), + [sym_end_statement] = ACTIONS(9548), + [aux_sym_on_goto_statement_token1] = ACTIONS(9546), + [aux_sym_on_goto_statement_token2] = ACTIONS(9546), + [aux_sym_on_error_statement_token2] = ACTIONS(9546), + [sym__ambiguous_redim_statement] = ACTIONS(9548), + [aux_sym_erase_statement_token1] = ACTIONS(9546), + [aux_sym_open_statement_token1] = ACTIONS(9546), + [aux_sym_file_mode_token2] = ACTIONS(9546), + [aux_sym_file_access_token2] = ACTIONS(9546), + [aux_sym_file_lock_token2] = ACTIONS(9546), + [aux_sym_print_statement_token1] = ACTIONS(9546), + [anon_sym_PLUS] = ACTIONS(9548), + [anon_sym_DASH] = ACTIONS(9546), + [anon_sym_QMARK] = ACTIONS(9548), + [aux_sym_close_statement_token1] = ACTIONS(9546), + [aux_sym_put_statement_token1] = ACTIONS(9546), + [aux_sym_unlock_statement_token1] = ACTIONS(9546), + [aux_sym_seek_statement_token1] = ACTIONS(9546), + [sym_reset_statement] = ACTIONS(9546), + [aux_sym_raise_event_statement_token1] = ACTIONS(9546), + [sym_stop_statement] = ACTIONS(9546), + [sym_beep_statement] = ACTIONS(9546), + [aux_sym_unload_statement_token1] = ACTIONS(9546), + [aux_sym_def_type_statement_token1] = ACTIONS(9546), + [aux_sym_def_type_statement_token2] = ACTIONS(9546), + [aux_sym_def_type_statement_token3] = ACTIONS(9546), + [aux_sym_def_type_statement_token4] = ACTIONS(9546), + [aux_sym_def_type_statement_token5] = ACTIONS(9546), + [aux_sym_def_type_statement_token6] = ACTIONS(9546), + [aux_sym_def_type_statement_token7] = ACTIONS(9546), + [aux_sym_def_type_statement_token8] = ACTIONS(9546), + [aux_sym_def_type_statement_token9] = ACTIONS(9546), + [aux_sym_def_type_statement_token10] = ACTIONS(9546), + [aux_sym_def_type_statement_token11] = ACTIONS(9546), + [aux_sym_def_type_statement_token12] = ACTIONS(9546), + [aux_sym_def_type_statement_token13] = ACTIONS(9546), + [aux_sym_def_type_statement_token14] = ACTIONS(9546), + [aux_sym_call_statement_token1] = ACTIONS(9546), + [sym__ambiguous_call_statement] = ACTIONS(9546), + [aux_sym_addressof_expression_token1] = ACTIONS(9546), + [aux_sym_type_of_expression_token1] = ACTIONS(9546), + [aux_sym_unary_expression_token1] = ACTIONS(9546), + [sym_string_literal] = ACTIONS(9548), + [sym_number_literal] = ACTIONS(9548), + [aux_sym_boolean_literal_token1] = ACTIONS(9546), + [aux_sym_boolean_literal_token2] = ACTIONS(9546), + [sym_nothing_literal] = ACTIONS(9546), + [sym_null_literal] = ACTIONS(9546), + [sym_empty_literal] = ACTIONS(9546), + [sym_date_literal] = ACTIONS(9548), + [anon_sym_POUND] = ACTIONS(9546), + }, + [STATE(7193)] = { + [sym_identifier] = ACTIONS(9024), + [sym_newline] = ACTIONS(9026), + [anon_sym_COLON] = ACTIONS(9026), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9024), + [aux_sym_frm_property_statement_token1] = ACTIONS(9024), + [anon_sym_DOT] = ACTIONS(9024), + [anon_sym_BANG] = ACTIONS(9026), + [aux_sym__attribute_identifier_token1] = ACTIONS(9024), + [aux_sym_option_statement_token3] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9024), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9024), + [aux_sym_preprocessor_const_token1] = ACTIONS(9024), + [sym_static_modifier] = ACTIONS(9024), + [sym__dim_keyword] = ACTIONS(9024), + [sym__redim_keyword] = ACTIONS(9024), + [aux_sym_get_accessor_token1] = ACTIONS(9024), + [aux_sym_set_accessor_token1] = ACTIONS(9024), + [aux_sym_const_declaration_token1] = ACTIONS(9024), + [anon_sym_LPAREN] = ACTIONS(9026), + [aux_sym_as_type_clause_token2] = ACTIONS(9024), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9024), + [aux_sym_visibility_token1] = ACTIONS(9024), + [aux_sym_visibility_token2] = ACTIONS(9024), + [aux_sym_elseif_fragment_token1] = ACTIONS(9024), + [aux_sym_else_fragment_token1] = ACTIONS(9024), + [aux_sym_select_statement_token1] = ACTIONS(9024), + [aux_sym__for_header_token1] = ACTIONS(9024), + [aux_sym_do_statement_token1] = ACTIONS(9024), + [aux_sym_do_condition_token1] = ACTIONS(9024), + [aux_sym_with_statement_token1] = ACTIONS(9024), + [aux_sym_exit_statement_token1] = ACTIONS(9024), + [sym_end_statement] = ACTIONS(9026), + [aux_sym_on_goto_statement_token1] = ACTIONS(9024), + [aux_sym_on_goto_statement_token2] = ACTIONS(9024), + [aux_sym_on_error_statement_token2] = ACTIONS(9024), + [sym__ambiguous_redim_statement] = ACTIONS(9026), + [aux_sym_erase_statement_token1] = ACTIONS(9024), + [aux_sym_open_statement_token1] = ACTIONS(9024), + [aux_sym_file_mode_token2] = ACTIONS(9024), + [aux_sym_file_access_token2] = ACTIONS(9024), + [aux_sym_file_lock_token2] = ACTIONS(9024), + [aux_sym_print_statement_token1] = ACTIONS(9024), + [anon_sym_PLUS] = ACTIONS(9026), + [anon_sym_DASH] = ACTIONS(9024), + [anon_sym_QMARK] = ACTIONS(9026), + [aux_sym_close_statement_token1] = ACTIONS(9024), + [aux_sym_put_statement_token1] = ACTIONS(9024), + [aux_sym_unlock_statement_token1] = ACTIONS(9024), + [aux_sym_seek_statement_token1] = ACTIONS(9024), + [sym_reset_statement] = ACTIONS(9024), + [aux_sym_raise_event_statement_token1] = ACTIONS(9024), + [sym_stop_statement] = ACTIONS(9024), + [sym_beep_statement] = ACTIONS(9024), + [aux_sym_unload_statement_token1] = ACTIONS(9024), + [aux_sym_def_type_statement_token1] = ACTIONS(9024), + [aux_sym_def_type_statement_token2] = ACTIONS(9024), + [aux_sym_def_type_statement_token3] = ACTIONS(9024), + [aux_sym_def_type_statement_token4] = ACTIONS(9024), + [aux_sym_def_type_statement_token5] = ACTIONS(9024), + [aux_sym_def_type_statement_token6] = ACTIONS(9024), + [aux_sym_def_type_statement_token7] = ACTIONS(9024), + [aux_sym_def_type_statement_token8] = ACTIONS(9024), + [aux_sym_def_type_statement_token9] = ACTIONS(9024), + [aux_sym_def_type_statement_token10] = ACTIONS(9024), + [aux_sym_def_type_statement_token11] = ACTIONS(9024), + [aux_sym_def_type_statement_token12] = ACTIONS(9024), + [aux_sym_def_type_statement_token13] = ACTIONS(9024), + [aux_sym_def_type_statement_token14] = ACTIONS(9024), + [aux_sym_call_statement_token1] = ACTIONS(9024), + [sym__ambiguous_call_statement] = ACTIONS(9024), + [aux_sym_addressof_expression_token1] = ACTIONS(9024), + [aux_sym_type_of_expression_token1] = ACTIONS(9024), + [aux_sym_unary_expression_token1] = ACTIONS(9024), + [sym_string_literal] = ACTIONS(9026), + [sym_number_literal] = ACTIONS(9026), + [aux_sym_boolean_literal_token1] = ACTIONS(9024), + [aux_sym_boolean_literal_token2] = ACTIONS(9024), + [sym_nothing_literal] = ACTIONS(9024), + [sym_null_literal] = ACTIONS(9024), + [sym_empty_literal] = ACTIONS(9024), + [sym_date_literal] = ACTIONS(9026), + [anon_sym_POUND] = ACTIONS(9024), + }, + [STATE(7194)] = { + [sym_identifier] = ACTIONS(9134), + [sym_newline] = ACTIONS(9136), + [anon_sym_COLON] = ACTIONS(9136), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9134), + [aux_sym_frm_property_statement_token1] = ACTIONS(9134), + [anon_sym_DOT] = ACTIONS(9134), + [anon_sym_BANG] = ACTIONS(9136), + [aux_sym__attribute_identifier_token1] = ACTIONS(9134), + [aux_sym_option_statement_token3] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9134), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9134), + [aux_sym_preprocessor_const_token1] = ACTIONS(9134), + [sym_static_modifier] = ACTIONS(9134), + [sym__dim_keyword] = ACTIONS(9134), + [sym__redim_keyword] = ACTIONS(9134), + [aux_sym_get_accessor_token1] = ACTIONS(9134), + [aux_sym_set_accessor_token1] = ACTIONS(9134), + [aux_sym_const_declaration_token1] = ACTIONS(9134), + [anon_sym_LPAREN] = ACTIONS(9136), + [aux_sym_as_type_clause_token2] = ACTIONS(9134), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9134), + [aux_sym_visibility_token1] = ACTIONS(9134), + [aux_sym_visibility_token2] = ACTIONS(9134), + [aux_sym_elseif_fragment_token1] = ACTIONS(9134), + [aux_sym_else_fragment_token1] = ACTIONS(9134), + [aux_sym_select_statement_token1] = ACTIONS(9134), + [aux_sym__for_header_token1] = ACTIONS(9134), + [aux_sym_do_statement_token1] = ACTIONS(9134), + [aux_sym_do_condition_token1] = ACTIONS(9134), + [aux_sym_with_statement_token1] = ACTIONS(9134), + [aux_sym_exit_statement_token1] = ACTIONS(9134), + [sym_end_statement] = ACTIONS(9136), + [aux_sym_on_goto_statement_token1] = ACTIONS(9134), + [aux_sym_on_goto_statement_token2] = ACTIONS(9134), + [aux_sym_on_error_statement_token2] = ACTIONS(9134), + [sym__ambiguous_redim_statement] = ACTIONS(9136), + [aux_sym_erase_statement_token1] = ACTIONS(9134), + [aux_sym_open_statement_token1] = ACTIONS(9134), + [aux_sym_file_mode_token2] = ACTIONS(9134), + [aux_sym_file_access_token2] = ACTIONS(9134), + [aux_sym_file_lock_token2] = ACTIONS(9134), + [aux_sym_print_statement_token1] = ACTIONS(9134), + [anon_sym_PLUS] = ACTIONS(9136), + [anon_sym_DASH] = ACTIONS(9134), + [anon_sym_QMARK] = ACTIONS(9136), + [aux_sym_close_statement_token1] = ACTIONS(9134), + [aux_sym_put_statement_token1] = ACTIONS(9134), + [aux_sym_unlock_statement_token1] = ACTIONS(9134), + [aux_sym_seek_statement_token1] = ACTIONS(9134), + [sym_reset_statement] = ACTIONS(9134), + [aux_sym_raise_event_statement_token1] = ACTIONS(9134), + [sym_stop_statement] = ACTIONS(9134), + [sym_beep_statement] = ACTIONS(9134), + [aux_sym_unload_statement_token1] = ACTIONS(9134), + [aux_sym_def_type_statement_token1] = ACTIONS(9134), + [aux_sym_def_type_statement_token2] = ACTIONS(9134), + [aux_sym_def_type_statement_token3] = ACTIONS(9134), + [aux_sym_def_type_statement_token4] = ACTIONS(9134), + [aux_sym_def_type_statement_token5] = ACTIONS(9134), + [aux_sym_def_type_statement_token6] = ACTIONS(9134), + [aux_sym_def_type_statement_token7] = ACTIONS(9134), + [aux_sym_def_type_statement_token8] = ACTIONS(9134), + [aux_sym_def_type_statement_token9] = ACTIONS(9134), + [aux_sym_def_type_statement_token10] = ACTIONS(9134), + [aux_sym_def_type_statement_token11] = ACTIONS(9134), + [aux_sym_def_type_statement_token12] = ACTIONS(9134), + [aux_sym_def_type_statement_token13] = ACTIONS(9134), + [aux_sym_def_type_statement_token14] = ACTIONS(9134), + [aux_sym_call_statement_token1] = ACTIONS(9134), + [sym__ambiguous_call_statement] = ACTIONS(9134), + [aux_sym_addressof_expression_token1] = ACTIONS(9134), + [aux_sym_type_of_expression_token1] = ACTIONS(9134), + [aux_sym_unary_expression_token1] = ACTIONS(9134), + [sym_string_literal] = ACTIONS(9136), + [sym_number_literal] = ACTIONS(9136), + [aux_sym_boolean_literal_token1] = ACTIONS(9134), + [aux_sym_boolean_literal_token2] = ACTIONS(9134), + [sym_nothing_literal] = ACTIONS(9134), + [sym_null_literal] = ACTIONS(9134), + [sym_empty_literal] = ACTIONS(9134), + [sym_date_literal] = ACTIONS(9136), + [anon_sym_POUND] = ACTIONS(9134), + }, + [STATE(7195)] = { + [sym_identifier] = ACTIONS(9740), + [sym_newline] = ACTIONS(9742), + [anon_sym_COLON] = ACTIONS(9742), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9740), + [aux_sym_frm_property_statement_token1] = ACTIONS(9740), + [anon_sym_DOT] = ACTIONS(9740), + [anon_sym_BANG] = ACTIONS(9742), + [aux_sym__attribute_identifier_token1] = ACTIONS(9740), + [aux_sym_option_statement_token3] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9740), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9740), + [aux_sym_preprocessor_const_token1] = ACTIONS(9740), + [sym_static_modifier] = ACTIONS(9740), + [sym__dim_keyword] = ACTIONS(9740), + [sym__redim_keyword] = ACTIONS(9740), + [aux_sym_get_accessor_token1] = ACTIONS(9740), + [aux_sym_set_accessor_token1] = ACTIONS(9740), + [aux_sym_const_declaration_token1] = ACTIONS(9740), + [anon_sym_LPAREN] = ACTIONS(9742), + [aux_sym_as_type_clause_token2] = ACTIONS(9740), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9740), + [aux_sym_visibility_token1] = ACTIONS(9740), + [aux_sym_visibility_token2] = ACTIONS(9740), + [aux_sym_elseif_fragment_token1] = ACTIONS(9740), + [aux_sym_else_fragment_token1] = ACTIONS(9740), + [aux_sym_select_statement_token1] = ACTIONS(9740), + [aux_sym__for_header_token1] = ACTIONS(9740), + [aux_sym_do_statement_token1] = ACTIONS(9740), + [aux_sym_do_condition_token1] = ACTIONS(9740), + [aux_sym_with_statement_token1] = ACTIONS(9740), + [aux_sym_exit_statement_token1] = ACTIONS(9740), + [sym_end_statement] = ACTIONS(9742), + [aux_sym_on_goto_statement_token1] = ACTIONS(9740), + [aux_sym_on_goto_statement_token2] = ACTIONS(9740), + [aux_sym_on_error_statement_token2] = ACTIONS(9740), + [sym__ambiguous_redim_statement] = ACTIONS(9742), + [aux_sym_erase_statement_token1] = ACTIONS(9740), + [aux_sym_open_statement_token1] = ACTIONS(9740), + [aux_sym_file_mode_token2] = ACTIONS(9740), + [aux_sym_file_access_token2] = ACTIONS(9740), + [aux_sym_file_lock_token2] = ACTIONS(9740), + [aux_sym_print_statement_token1] = ACTIONS(9740), + [anon_sym_PLUS] = ACTIONS(9742), + [anon_sym_DASH] = ACTIONS(9740), + [anon_sym_QMARK] = ACTIONS(9742), + [aux_sym_close_statement_token1] = ACTIONS(9740), + [aux_sym_put_statement_token1] = ACTIONS(9740), + [aux_sym_unlock_statement_token1] = ACTIONS(9740), + [aux_sym_seek_statement_token1] = ACTIONS(9740), + [sym_reset_statement] = ACTIONS(9740), + [aux_sym_raise_event_statement_token1] = ACTIONS(9740), + [sym_stop_statement] = ACTIONS(9740), + [sym_beep_statement] = ACTIONS(9740), + [aux_sym_unload_statement_token1] = ACTIONS(9740), + [aux_sym_def_type_statement_token1] = ACTIONS(9740), + [aux_sym_def_type_statement_token2] = ACTIONS(9740), + [aux_sym_def_type_statement_token3] = ACTIONS(9740), + [aux_sym_def_type_statement_token4] = ACTIONS(9740), + [aux_sym_def_type_statement_token5] = ACTIONS(9740), + [aux_sym_def_type_statement_token6] = ACTIONS(9740), + [aux_sym_def_type_statement_token7] = ACTIONS(9740), + [aux_sym_def_type_statement_token8] = ACTIONS(9740), + [aux_sym_def_type_statement_token9] = ACTIONS(9740), + [aux_sym_def_type_statement_token10] = ACTIONS(9740), + [aux_sym_def_type_statement_token11] = ACTIONS(9740), + [aux_sym_def_type_statement_token12] = ACTIONS(9740), + [aux_sym_def_type_statement_token13] = ACTIONS(9740), + [aux_sym_def_type_statement_token14] = ACTIONS(9740), + [aux_sym_call_statement_token1] = ACTIONS(9740), + [sym__ambiguous_call_statement] = ACTIONS(9740), + [aux_sym_addressof_expression_token1] = ACTIONS(9740), + [aux_sym_type_of_expression_token1] = ACTIONS(9740), + [aux_sym_unary_expression_token1] = ACTIONS(9740), + [sym_string_literal] = ACTIONS(9742), + [sym_number_literal] = ACTIONS(9742), + [aux_sym_boolean_literal_token1] = ACTIONS(9740), + [aux_sym_boolean_literal_token2] = ACTIONS(9740), + [sym_nothing_literal] = ACTIONS(9740), + [sym_null_literal] = ACTIONS(9740), + [sym_empty_literal] = ACTIONS(9740), + [sym_date_literal] = ACTIONS(9742), + [anon_sym_POUND] = ACTIONS(9740), + }, + [STATE(7196)] = { + [sym_identifier] = ACTIONS(9744), + [sym_newline] = ACTIONS(9746), + [anon_sym_COLON] = ACTIONS(9746), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9744), + [aux_sym_frm_property_statement_token1] = ACTIONS(9744), + [anon_sym_DOT] = ACTIONS(9744), + [anon_sym_BANG] = ACTIONS(9746), + [aux_sym__attribute_identifier_token1] = ACTIONS(9744), + [aux_sym_option_statement_token3] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9744), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9744), + [aux_sym_preprocessor_const_token1] = ACTIONS(9744), + [sym_static_modifier] = ACTIONS(9744), + [sym__dim_keyword] = ACTIONS(9744), + [sym__redim_keyword] = ACTIONS(9744), + [aux_sym_get_accessor_token1] = ACTIONS(9744), + [aux_sym_set_accessor_token1] = ACTIONS(9744), + [aux_sym_const_declaration_token1] = ACTIONS(9744), + [anon_sym_LPAREN] = ACTIONS(9746), + [aux_sym_as_type_clause_token2] = ACTIONS(9744), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9744), + [aux_sym_visibility_token1] = ACTIONS(9744), + [aux_sym_visibility_token2] = ACTIONS(9744), + [aux_sym_elseif_fragment_token1] = ACTIONS(9744), + [aux_sym_else_fragment_token1] = ACTIONS(9744), + [aux_sym_select_statement_token1] = ACTIONS(9744), + [aux_sym__for_header_token1] = ACTIONS(9744), + [aux_sym_do_statement_token1] = ACTIONS(9744), + [aux_sym_do_condition_token1] = ACTIONS(9744), + [aux_sym_with_statement_token1] = ACTIONS(9744), + [aux_sym_exit_statement_token1] = ACTIONS(9744), + [sym_end_statement] = ACTIONS(9746), + [aux_sym_on_goto_statement_token1] = ACTIONS(9744), + [aux_sym_on_goto_statement_token2] = ACTIONS(9744), + [aux_sym_on_error_statement_token2] = ACTIONS(9744), + [sym__ambiguous_redim_statement] = ACTIONS(9746), + [aux_sym_erase_statement_token1] = ACTIONS(9744), + [aux_sym_open_statement_token1] = ACTIONS(9744), + [aux_sym_file_mode_token2] = ACTIONS(9744), + [aux_sym_file_access_token2] = ACTIONS(9744), + [aux_sym_file_lock_token2] = ACTIONS(9744), + [aux_sym_print_statement_token1] = ACTIONS(9744), + [anon_sym_PLUS] = ACTIONS(9746), + [anon_sym_DASH] = ACTIONS(9744), + [anon_sym_QMARK] = ACTIONS(9746), + [aux_sym_close_statement_token1] = ACTIONS(9744), + [aux_sym_put_statement_token1] = ACTIONS(9744), + [aux_sym_unlock_statement_token1] = ACTIONS(9744), + [aux_sym_seek_statement_token1] = ACTIONS(9744), + [sym_reset_statement] = ACTIONS(9744), + [aux_sym_raise_event_statement_token1] = ACTIONS(9744), + [sym_stop_statement] = ACTIONS(9744), + [sym_beep_statement] = ACTIONS(9744), + [aux_sym_unload_statement_token1] = ACTIONS(9744), + [aux_sym_def_type_statement_token1] = ACTIONS(9744), + [aux_sym_def_type_statement_token2] = ACTIONS(9744), + [aux_sym_def_type_statement_token3] = ACTIONS(9744), + [aux_sym_def_type_statement_token4] = ACTIONS(9744), + [aux_sym_def_type_statement_token5] = ACTIONS(9744), + [aux_sym_def_type_statement_token6] = ACTIONS(9744), + [aux_sym_def_type_statement_token7] = ACTIONS(9744), + [aux_sym_def_type_statement_token8] = ACTIONS(9744), + [aux_sym_def_type_statement_token9] = ACTIONS(9744), + [aux_sym_def_type_statement_token10] = ACTIONS(9744), + [aux_sym_def_type_statement_token11] = ACTIONS(9744), + [aux_sym_def_type_statement_token12] = ACTIONS(9744), + [aux_sym_def_type_statement_token13] = ACTIONS(9744), + [aux_sym_def_type_statement_token14] = ACTIONS(9744), + [aux_sym_call_statement_token1] = ACTIONS(9744), + [sym__ambiguous_call_statement] = ACTIONS(9744), + [aux_sym_addressof_expression_token1] = ACTIONS(9744), + [aux_sym_type_of_expression_token1] = ACTIONS(9744), + [aux_sym_unary_expression_token1] = ACTIONS(9744), + [sym_string_literal] = ACTIONS(9746), + [sym_number_literal] = ACTIONS(9746), + [aux_sym_boolean_literal_token1] = ACTIONS(9744), + [aux_sym_boolean_literal_token2] = ACTIONS(9744), + [sym_nothing_literal] = ACTIONS(9744), + [sym_null_literal] = ACTIONS(9744), + [sym_empty_literal] = ACTIONS(9744), + [sym_date_literal] = ACTIONS(9746), + [anon_sym_POUND] = ACTIONS(9744), + }, + [STATE(7197)] = { + [sym_identifier] = ACTIONS(9552), + [sym_newline] = ACTIONS(9554), + [anon_sym_COLON] = ACTIONS(9554), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9552), + [aux_sym_frm_property_statement_token1] = ACTIONS(9552), + [anon_sym_DOT] = ACTIONS(9552), + [anon_sym_BANG] = ACTIONS(9554), + [aux_sym__attribute_identifier_token1] = ACTIONS(9552), + [aux_sym_option_statement_token3] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9552), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9552), + [aux_sym_preprocessor_const_token1] = ACTIONS(9552), + [sym_static_modifier] = ACTIONS(9552), + [sym__dim_keyword] = ACTIONS(9552), + [sym__redim_keyword] = ACTIONS(9552), + [aux_sym_get_accessor_token1] = ACTIONS(9552), + [aux_sym_set_accessor_token1] = ACTIONS(9552), + [aux_sym_const_declaration_token1] = ACTIONS(9552), + [anon_sym_LPAREN] = ACTIONS(9554), + [aux_sym_as_type_clause_token2] = ACTIONS(9552), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9552), + [aux_sym_visibility_token1] = ACTIONS(9552), + [aux_sym_visibility_token2] = ACTIONS(9552), + [aux_sym_elseif_fragment_token1] = ACTIONS(9552), + [aux_sym_else_fragment_token1] = ACTIONS(9552), + [aux_sym_select_statement_token1] = ACTIONS(9552), + [aux_sym__for_header_token1] = ACTIONS(9552), + [aux_sym_do_statement_token1] = ACTIONS(9552), + [aux_sym_do_condition_token1] = ACTIONS(9552), + [aux_sym_with_statement_token1] = ACTIONS(9552), + [aux_sym_exit_statement_token1] = ACTIONS(9552), + [sym_end_statement] = ACTIONS(9554), + [aux_sym_on_goto_statement_token1] = ACTIONS(9552), + [aux_sym_on_goto_statement_token2] = ACTIONS(9552), + [aux_sym_on_error_statement_token2] = ACTIONS(9552), + [sym__ambiguous_redim_statement] = ACTIONS(9554), + [aux_sym_erase_statement_token1] = ACTIONS(9552), + [aux_sym_open_statement_token1] = ACTIONS(9552), + [aux_sym_file_mode_token2] = ACTIONS(9552), + [aux_sym_file_access_token2] = ACTIONS(9552), + [aux_sym_file_lock_token2] = ACTIONS(9552), + [aux_sym_print_statement_token1] = ACTIONS(9552), + [anon_sym_PLUS] = ACTIONS(9554), + [anon_sym_DASH] = ACTIONS(9552), + [anon_sym_QMARK] = ACTIONS(9554), + [aux_sym_close_statement_token1] = ACTIONS(9552), + [aux_sym_put_statement_token1] = ACTIONS(9552), + [aux_sym_unlock_statement_token1] = ACTIONS(9552), + [aux_sym_seek_statement_token1] = ACTIONS(9552), + [sym_reset_statement] = ACTIONS(9552), + [aux_sym_raise_event_statement_token1] = ACTIONS(9552), + [sym_stop_statement] = ACTIONS(9552), + [sym_beep_statement] = ACTIONS(9552), + [aux_sym_unload_statement_token1] = ACTIONS(9552), + [aux_sym_def_type_statement_token1] = ACTIONS(9552), + [aux_sym_def_type_statement_token2] = ACTIONS(9552), + [aux_sym_def_type_statement_token3] = ACTIONS(9552), + [aux_sym_def_type_statement_token4] = ACTIONS(9552), + [aux_sym_def_type_statement_token5] = ACTIONS(9552), + [aux_sym_def_type_statement_token6] = ACTIONS(9552), + [aux_sym_def_type_statement_token7] = ACTIONS(9552), + [aux_sym_def_type_statement_token8] = ACTIONS(9552), + [aux_sym_def_type_statement_token9] = ACTIONS(9552), + [aux_sym_def_type_statement_token10] = ACTIONS(9552), + [aux_sym_def_type_statement_token11] = ACTIONS(9552), + [aux_sym_def_type_statement_token12] = ACTIONS(9552), + [aux_sym_def_type_statement_token13] = ACTIONS(9552), + [aux_sym_def_type_statement_token14] = ACTIONS(9552), + [aux_sym_call_statement_token1] = ACTIONS(9552), + [sym__ambiguous_call_statement] = ACTIONS(9552), + [aux_sym_addressof_expression_token1] = ACTIONS(9552), + [aux_sym_type_of_expression_token1] = ACTIONS(9552), + [aux_sym_unary_expression_token1] = ACTIONS(9552), + [sym_string_literal] = ACTIONS(9554), + [sym_number_literal] = ACTIONS(9554), + [aux_sym_boolean_literal_token1] = ACTIONS(9552), + [aux_sym_boolean_literal_token2] = ACTIONS(9552), + [sym_nothing_literal] = ACTIONS(9552), + [sym_null_literal] = ACTIONS(9552), + [sym_empty_literal] = ACTIONS(9552), + [sym_date_literal] = ACTIONS(9554), + [anon_sym_POUND] = ACTIONS(9552), + }, + [STATE(7198)] = { + [sym_identifier] = ACTIONS(9752), + [sym_newline] = ACTIONS(9754), + [anon_sym_COLON] = ACTIONS(9754), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9752), + [aux_sym_frm_property_statement_token1] = ACTIONS(9752), + [anon_sym_DOT] = ACTIONS(9752), + [anon_sym_BANG] = ACTIONS(9754), + [aux_sym__attribute_identifier_token1] = ACTIONS(9752), + [aux_sym_option_statement_token3] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9752), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9752), + [aux_sym_preprocessor_const_token1] = ACTIONS(9752), + [sym_static_modifier] = ACTIONS(9752), + [sym__dim_keyword] = ACTIONS(9752), + [sym__redim_keyword] = ACTIONS(9752), + [aux_sym_get_accessor_token1] = ACTIONS(9752), + [aux_sym_set_accessor_token1] = ACTIONS(9752), + [aux_sym_const_declaration_token1] = ACTIONS(9752), + [anon_sym_LPAREN] = ACTIONS(9754), + [aux_sym_as_type_clause_token2] = ACTIONS(9752), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9752), + [aux_sym_visibility_token1] = ACTIONS(9752), + [aux_sym_visibility_token2] = ACTIONS(9752), + [aux_sym_elseif_fragment_token1] = ACTIONS(9752), + [aux_sym_else_fragment_token1] = ACTIONS(9752), + [aux_sym_select_statement_token1] = ACTIONS(9752), + [aux_sym__for_header_token1] = ACTIONS(9752), + [aux_sym_do_statement_token1] = ACTIONS(9752), + [aux_sym_do_condition_token1] = ACTIONS(9752), + [aux_sym_with_statement_token1] = ACTIONS(9752), + [aux_sym_exit_statement_token1] = ACTIONS(9752), + [sym_end_statement] = ACTIONS(9754), + [aux_sym_on_goto_statement_token1] = ACTIONS(9752), + [aux_sym_on_goto_statement_token2] = ACTIONS(9752), + [aux_sym_on_error_statement_token2] = ACTIONS(9752), + [sym__ambiguous_redim_statement] = ACTIONS(9754), + [aux_sym_erase_statement_token1] = ACTIONS(9752), + [aux_sym_open_statement_token1] = ACTIONS(9752), + [aux_sym_file_mode_token2] = ACTIONS(9752), + [aux_sym_file_access_token2] = ACTIONS(9752), + [aux_sym_file_lock_token2] = ACTIONS(9752), + [aux_sym_print_statement_token1] = ACTIONS(9752), + [anon_sym_PLUS] = ACTIONS(9754), + [anon_sym_DASH] = ACTIONS(9752), + [anon_sym_QMARK] = ACTIONS(9754), + [aux_sym_close_statement_token1] = ACTIONS(9752), + [aux_sym_put_statement_token1] = ACTIONS(9752), + [aux_sym_unlock_statement_token1] = ACTIONS(9752), + [aux_sym_seek_statement_token1] = ACTIONS(9752), + [sym_reset_statement] = ACTIONS(9752), + [aux_sym_raise_event_statement_token1] = ACTIONS(9752), + [sym_stop_statement] = ACTIONS(9752), + [sym_beep_statement] = ACTIONS(9752), + [aux_sym_unload_statement_token1] = ACTIONS(9752), + [aux_sym_def_type_statement_token1] = ACTIONS(9752), + [aux_sym_def_type_statement_token2] = ACTIONS(9752), + [aux_sym_def_type_statement_token3] = ACTIONS(9752), + [aux_sym_def_type_statement_token4] = ACTIONS(9752), + [aux_sym_def_type_statement_token5] = ACTIONS(9752), + [aux_sym_def_type_statement_token6] = ACTIONS(9752), + [aux_sym_def_type_statement_token7] = ACTIONS(9752), + [aux_sym_def_type_statement_token8] = ACTIONS(9752), + [aux_sym_def_type_statement_token9] = ACTIONS(9752), + [aux_sym_def_type_statement_token10] = ACTIONS(9752), + [aux_sym_def_type_statement_token11] = ACTIONS(9752), + [aux_sym_def_type_statement_token12] = ACTIONS(9752), + [aux_sym_def_type_statement_token13] = ACTIONS(9752), + [aux_sym_def_type_statement_token14] = ACTIONS(9752), + [aux_sym_call_statement_token1] = ACTIONS(9752), + [sym__ambiguous_call_statement] = ACTIONS(9752), + [aux_sym_addressof_expression_token1] = ACTIONS(9752), + [aux_sym_type_of_expression_token1] = ACTIONS(9752), + [aux_sym_unary_expression_token1] = ACTIONS(9752), + [sym_string_literal] = ACTIONS(9754), + [sym_number_literal] = ACTIONS(9754), + [aux_sym_boolean_literal_token1] = ACTIONS(9752), + [aux_sym_boolean_literal_token2] = ACTIONS(9752), + [sym_nothing_literal] = ACTIONS(9752), + [sym_null_literal] = ACTIONS(9752), + [sym_empty_literal] = ACTIONS(9752), + [sym_date_literal] = ACTIONS(9754), + [anon_sym_POUND] = ACTIONS(9752), + }, + [STATE(7199)] = { + [sym_identifier] = ACTIONS(9756), + [sym_newline] = ACTIONS(9758), + [anon_sym_COLON] = ACTIONS(9758), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9756), + [aux_sym_frm_property_statement_token1] = ACTIONS(9756), + [anon_sym_DOT] = ACTIONS(9756), + [anon_sym_BANG] = ACTIONS(9758), + [aux_sym__attribute_identifier_token1] = ACTIONS(9756), + [aux_sym_option_statement_token3] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9756), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9756), + [aux_sym_preprocessor_const_token1] = ACTIONS(9756), + [sym_static_modifier] = ACTIONS(9756), + [sym__dim_keyword] = ACTIONS(9756), + [sym__redim_keyword] = ACTIONS(9756), + [aux_sym_get_accessor_token1] = ACTIONS(9756), + [aux_sym_set_accessor_token1] = ACTIONS(9756), + [aux_sym_const_declaration_token1] = ACTIONS(9756), + [anon_sym_LPAREN] = ACTIONS(9758), + [aux_sym_as_type_clause_token2] = ACTIONS(9756), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9756), + [aux_sym_visibility_token1] = ACTIONS(9756), + [aux_sym_visibility_token2] = ACTIONS(9756), + [aux_sym_elseif_fragment_token1] = ACTIONS(9756), + [aux_sym_else_fragment_token1] = ACTIONS(9756), + [aux_sym_select_statement_token1] = ACTIONS(9756), + [aux_sym__for_header_token1] = ACTIONS(9756), + [aux_sym_do_statement_token1] = ACTIONS(9756), + [aux_sym_do_condition_token1] = ACTIONS(9756), + [aux_sym_with_statement_token1] = ACTIONS(9756), + [aux_sym_exit_statement_token1] = ACTIONS(9756), + [sym_end_statement] = ACTIONS(9758), + [aux_sym_on_goto_statement_token1] = ACTIONS(9756), + [aux_sym_on_goto_statement_token2] = ACTIONS(9756), + [aux_sym_on_error_statement_token2] = ACTIONS(9756), + [sym__ambiguous_redim_statement] = ACTIONS(9758), + [aux_sym_erase_statement_token1] = ACTIONS(9756), + [aux_sym_open_statement_token1] = ACTIONS(9756), + [aux_sym_file_mode_token2] = ACTIONS(9756), + [aux_sym_file_access_token2] = ACTIONS(9756), + [aux_sym_file_lock_token2] = ACTIONS(9756), + [aux_sym_print_statement_token1] = ACTIONS(9756), + [anon_sym_PLUS] = ACTIONS(9758), + [anon_sym_DASH] = ACTIONS(9756), + [anon_sym_QMARK] = ACTIONS(9758), + [aux_sym_close_statement_token1] = ACTIONS(9756), + [aux_sym_put_statement_token1] = ACTIONS(9756), + [aux_sym_unlock_statement_token1] = ACTIONS(9756), + [aux_sym_seek_statement_token1] = ACTIONS(9756), + [sym_reset_statement] = ACTIONS(9756), + [aux_sym_raise_event_statement_token1] = ACTIONS(9756), + [sym_stop_statement] = ACTIONS(9756), + [sym_beep_statement] = ACTIONS(9756), + [aux_sym_unload_statement_token1] = ACTIONS(9756), + [aux_sym_def_type_statement_token1] = ACTIONS(9756), + [aux_sym_def_type_statement_token2] = ACTIONS(9756), + [aux_sym_def_type_statement_token3] = ACTIONS(9756), + [aux_sym_def_type_statement_token4] = ACTIONS(9756), + [aux_sym_def_type_statement_token5] = ACTIONS(9756), + [aux_sym_def_type_statement_token6] = ACTIONS(9756), + [aux_sym_def_type_statement_token7] = ACTIONS(9756), + [aux_sym_def_type_statement_token8] = ACTIONS(9756), + [aux_sym_def_type_statement_token9] = ACTIONS(9756), + [aux_sym_def_type_statement_token10] = ACTIONS(9756), + [aux_sym_def_type_statement_token11] = ACTIONS(9756), + [aux_sym_def_type_statement_token12] = ACTIONS(9756), + [aux_sym_def_type_statement_token13] = ACTIONS(9756), + [aux_sym_def_type_statement_token14] = ACTIONS(9756), + [aux_sym_call_statement_token1] = ACTIONS(9756), + [sym__ambiguous_call_statement] = ACTIONS(9756), + [aux_sym_addressof_expression_token1] = ACTIONS(9756), + [aux_sym_type_of_expression_token1] = ACTIONS(9756), + [aux_sym_unary_expression_token1] = ACTIONS(9756), + [sym_string_literal] = ACTIONS(9758), + [sym_number_literal] = ACTIONS(9758), + [aux_sym_boolean_literal_token1] = ACTIONS(9756), + [aux_sym_boolean_literal_token2] = ACTIONS(9756), + [sym_nothing_literal] = ACTIONS(9756), + [sym_null_literal] = ACTIONS(9756), + [sym_empty_literal] = ACTIONS(9756), + [sym_date_literal] = ACTIONS(9758), + [anon_sym_POUND] = ACTIONS(9756), + }, + [STATE(7200)] = { + [sym_identifier] = ACTIONS(9760), + [sym_newline] = ACTIONS(9762), + [anon_sym_COLON] = ACTIONS(9762), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9760), + [aux_sym_frm_property_statement_token1] = ACTIONS(9760), + [anon_sym_DOT] = ACTIONS(9760), + [anon_sym_BANG] = ACTIONS(9762), + [aux_sym__attribute_identifier_token1] = ACTIONS(9760), + [aux_sym_option_statement_token3] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9760), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9760), + [aux_sym_preprocessor_const_token1] = ACTIONS(9760), + [sym_static_modifier] = ACTIONS(9760), + [sym__dim_keyword] = ACTIONS(9760), + [sym__redim_keyword] = ACTIONS(9760), + [aux_sym_get_accessor_token1] = ACTIONS(9760), + [aux_sym_set_accessor_token1] = ACTIONS(9760), + [aux_sym_const_declaration_token1] = ACTIONS(9760), + [anon_sym_LPAREN] = ACTIONS(9762), + [aux_sym_as_type_clause_token2] = ACTIONS(9760), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9760), + [aux_sym_visibility_token1] = ACTIONS(9760), + [aux_sym_visibility_token2] = ACTIONS(9760), + [aux_sym_elseif_fragment_token1] = ACTIONS(9760), + [aux_sym_else_fragment_token1] = ACTIONS(9760), + [aux_sym_select_statement_token1] = ACTIONS(9760), + [aux_sym__for_header_token1] = ACTIONS(9760), + [aux_sym_do_statement_token1] = ACTIONS(9760), + [aux_sym_do_condition_token1] = ACTIONS(9760), + [aux_sym_with_statement_token1] = ACTIONS(9760), + [aux_sym_exit_statement_token1] = ACTIONS(9760), + [sym_end_statement] = ACTIONS(9762), + [aux_sym_on_goto_statement_token1] = ACTIONS(9760), + [aux_sym_on_goto_statement_token2] = ACTIONS(9760), + [aux_sym_on_error_statement_token2] = ACTIONS(9760), + [sym__ambiguous_redim_statement] = ACTIONS(9762), + [aux_sym_erase_statement_token1] = ACTIONS(9760), + [aux_sym_open_statement_token1] = ACTIONS(9760), + [aux_sym_file_mode_token2] = ACTIONS(9760), + [aux_sym_file_access_token2] = ACTIONS(9760), + [aux_sym_file_lock_token2] = ACTIONS(9760), + [aux_sym_print_statement_token1] = ACTIONS(9760), + [anon_sym_PLUS] = ACTIONS(9762), + [anon_sym_DASH] = ACTIONS(9760), + [anon_sym_QMARK] = ACTIONS(9762), + [aux_sym_close_statement_token1] = ACTIONS(9760), + [aux_sym_put_statement_token1] = ACTIONS(9760), + [aux_sym_unlock_statement_token1] = ACTIONS(9760), + [aux_sym_seek_statement_token1] = ACTIONS(9760), + [sym_reset_statement] = ACTIONS(9760), + [aux_sym_raise_event_statement_token1] = ACTIONS(9760), + [sym_stop_statement] = ACTIONS(9760), + [sym_beep_statement] = ACTIONS(9760), + [aux_sym_unload_statement_token1] = ACTIONS(9760), + [aux_sym_def_type_statement_token1] = ACTIONS(9760), + [aux_sym_def_type_statement_token2] = ACTIONS(9760), + [aux_sym_def_type_statement_token3] = ACTIONS(9760), + [aux_sym_def_type_statement_token4] = ACTIONS(9760), + [aux_sym_def_type_statement_token5] = ACTIONS(9760), + [aux_sym_def_type_statement_token6] = ACTIONS(9760), + [aux_sym_def_type_statement_token7] = ACTIONS(9760), + [aux_sym_def_type_statement_token8] = ACTIONS(9760), + [aux_sym_def_type_statement_token9] = ACTIONS(9760), + [aux_sym_def_type_statement_token10] = ACTIONS(9760), + [aux_sym_def_type_statement_token11] = ACTIONS(9760), + [aux_sym_def_type_statement_token12] = ACTIONS(9760), + [aux_sym_def_type_statement_token13] = ACTIONS(9760), + [aux_sym_def_type_statement_token14] = ACTIONS(9760), + [aux_sym_call_statement_token1] = ACTIONS(9760), + [sym__ambiguous_call_statement] = ACTIONS(9760), + [aux_sym_addressof_expression_token1] = ACTIONS(9760), + [aux_sym_type_of_expression_token1] = ACTIONS(9760), + [aux_sym_unary_expression_token1] = ACTIONS(9760), + [sym_string_literal] = ACTIONS(9762), + [sym_number_literal] = ACTIONS(9762), + [aux_sym_boolean_literal_token1] = ACTIONS(9760), + [aux_sym_boolean_literal_token2] = ACTIONS(9760), + [sym_nothing_literal] = ACTIONS(9760), + [sym_null_literal] = ACTIONS(9760), + [sym_empty_literal] = ACTIONS(9760), + [sym_date_literal] = ACTIONS(9762), + [anon_sym_POUND] = ACTIONS(9760), + }, + [STATE(7201)] = { + [sym_identifier] = ACTIONS(9764), + [sym_newline] = ACTIONS(9766), + [anon_sym_COLON] = ACTIONS(9766), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9764), + [aux_sym_frm_property_statement_token1] = ACTIONS(9764), + [anon_sym_DOT] = ACTIONS(9764), + [anon_sym_BANG] = ACTIONS(9766), + [aux_sym__attribute_identifier_token1] = ACTIONS(9764), + [aux_sym_option_statement_token3] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9764), + [aux_sym_preprocessor_const_token1] = ACTIONS(9764), + [sym_static_modifier] = ACTIONS(9764), + [sym__dim_keyword] = ACTIONS(9764), + [sym__redim_keyword] = ACTIONS(9764), + [aux_sym_get_accessor_token1] = ACTIONS(9764), + [aux_sym_set_accessor_token1] = ACTIONS(9764), + [aux_sym_const_declaration_token1] = ACTIONS(9764), + [anon_sym_LPAREN] = ACTIONS(9766), + [aux_sym_as_type_clause_token2] = ACTIONS(9764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9764), + [aux_sym_visibility_token1] = ACTIONS(9764), + [aux_sym_visibility_token2] = ACTIONS(9764), + [aux_sym_elseif_fragment_token1] = ACTIONS(9764), + [aux_sym_else_fragment_token1] = ACTIONS(9764), + [aux_sym_select_statement_token1] = ACTIONS(9764), + [aux_sym__for_header_token1] = ACTIONS(9764), + [aux_sym_do_statement_token1] = ACTIONS(9764), + [aux_sym_do_condition_token1] = ACTIONS(9764), + [aux_sym_with_statement_token1] = ACTIONS(9764), + [aux_sym_exit_statement_token1] = ACTIONS(9764), + [sym_end_statement] = ACTIONS(9766), + [aux_sym_on_goto_statement_token1] = ACTIONS(9764), + [aux_sym_on_goto_statement_token2] = ACTIONS(9764), + [aux_sym_on_error_statement_token2] = ACTIONS(9764), + [sym__ambiguous_redim_statement] = ACTIONS(9766), + [aux_sym_erase_statement_token1] = ACTIONS(9764), + [aux_sym_open_statement_token1] = ACTIONS(9764), + [aux_sym_file_mode_token2] = ACTIONS(9764), + [aux_sym_file_access_token2] = ACTIONS(9764), + [aux_sym_file_lock_token2] = ACTIONS(9764), + [aux_sym_print_statement_token1] = ACTIONS(9764), + [anon_sym_PLUS] = ACTIONS(9766), + [anon_sym_DASH] = ACTIONS(9764), + [anon_sym_QMARK] = ACTIONS(9766), + [aux_sym_close_statement_token1] = ACTIONS(9764), + [aux_sym_put_statement_token1] = ACTIONS(9764), + [aux_sym_unlock_statement_token1] = ACTIONS(9764), + [aux_sym_seek_statement_token1] = ACTIONS(9764), + [sym_reset_statement] = ACTIONS(9764), + [aux_sym_raise_event_statement_token1] = ACTIONS(9764), + [sym_stop_statement] = ACTIONS(9764), + [sym_beep_statement] = ACTIONS(9764), + [aux_sym_unload_statement_token1] = ACTIONS(9764), + [aux_sym_def_type_statement_token1] = ACTIONS(9764), + [aux_sym_def_type_statement_token2] = ACTIONS(9764), + [aux_sym_def_type_statement_token3] = ACTIONS(9764), + [aux_sym_def_type_statement_token4] = ACTIONS(9764), + [aux_sym_def_type_statement_token5] = ACTIONS(9764), + [aux_sym_def_type_statement_token6] = ACTIONS(9764), + [aux_sym_def_type_statement_token7] = ACTIONS(9764), + [aux_sym_def_type_statement_token8] = ACTIONS(9764), + [aux_sym_def_type_statement_token9] = ACTIONS(9764), + [aux_sym_def_type_statement_token10] = ACTIONS(9764), + [aux_sym_def_type_statement_token11] = ACTIONS(9764), + [aux_sym_def_type_statement_token12] = ACTIONS(9764), + [aux_sym_def_type_statement_token13] = ACTIONS(9764), + [aux_sym_def_type_statement_token14] = ACTIONS(9764), + [aux_sym_call_statement_token1] = ACTIONS(9764), + [sym__ambiguous_call_statement] = ACTIONS(9764), + [aux_sym_addressof_expression_token1] = ACTIONS(9764), + [aux_sym_type_of_expression_token1] = ACTIONS(9764), + [aux_sym_unary_expression_token1] = ACTIONS(9764), + [sym_string_literal] = ACTIONS(9766), + [sym_number_literal] = ACTIONS(9766), + [aux_sym_boolean_literal_token1] = ACTIONS(9764), + [aux_sym_boolean_literal_token2] = ACTIONS(9764), + [sym_nothing_literal] = ACTIONS(9764), + [sym_null_literal] = ACTIONS(9764), + [sym_empty_literal] = ACTIONS(9764), + [sym_date_literal] = ACTIONS(9766), + [anon_sym_POUND] = ACTIONS(9764), + }, + [STATE(7202)] = { + [sym_identifier] = ACTIONS(8279), + [sym_newline] = ACTIONS(8281), + [anon_sym_COLON] = ACTIONS(8281), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8279), + [aux_sym_frm_property_statement_token1] = ACTIONS(8279), + [anon_sym_DOT] = ACTIONS(8279), + [anon_sym_BANG] = ACTIONS(8281), + [aux_sym__attribute_identifier_token1] = ACTIONS(8279), + [aux_sym_option_statement_token3] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8279), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8279), + [aux_sym_preprocessor_const_token1] = ACTIONS(8279), + [sym_static_modifier] = ACTIONS(8279), + [sym__dim_keyword] = ACTIONS(8279), + [sym__redim_keyword] = ACTIONS(8279), + [aux_sym_get_accessor_token1] = ACTIONS(8279), + [aux_sym_set_accessor_token1] = ACTIONS(8279), + [aux_sym_const_declaration_token1] = ACTIONS(8279), + [anon_sym_LPAREN] = ACTIONS(8281), + [aux_sym_as_type_clause_token2] = ACTIONS(8279), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8279), + [aux_sym_visibility_token1] = ACTIONS(8279), + [aux_sym_visibility_token2] = ACTIONS(8279), + [aux_sym_elseif_fragment_token1] = ACTIONS(8279), + [aux_sym_else_fragment_token1] = ACTIONS(8279), + [aux_sym_select_statement_token1] = ACTIONS(8279), + [aux_sym__for_header_token1] = ACTIONS(8279), + [aux_sym_do_statement_token1] = ACTIONS(8279), + [aux_sym_do_condition_token1] = ACTIONS(8279), + [aux_sym_with_statement_token1] = ACTIONS(8279), + [aux_sym_exit_statement_token1] = ACTIONS(8279), + [sym_end_statement] = ACTIONS(8281), + [aux_sym_on_goto_statement_token1] = ACTIONS(8279), + [aux_sym_on_goto_statement_token2] = ACTIONS(8279), + [aux_sym_on_error_statement_token2] = ACTIONS(8279), + [sym__ambiguous_redim_statement] = ACTIONS(8281), + [aux_sym_erase_statement_token1] = ACTIONS(8279), + [aux_sym_open_statement_token1] = ACTIONS(8279), + [aux_sym_file_mode_token2] = ACTIONS(8279), + [aux_sym_file_access_token2] = ACTIONS(8279), + [aux_sym_file_lock_token2] = ACTIONS(8279), + [aux_sym_print_statement_token1] = ACTIONS(8279), + [anon_sym_PLUS] = ACTIONS(8281), + [anon_sym_DASH] = ACTIONS(8279), + [anon_sym_QMARK] = ACTIONS(8281), + [aux_sym_close_statement_token1] = ACTIONS(8279), + [aux_sym_put_statement_token1] = ACTIONS(8279), + [aux_sym_unlock_statement_token1] = ACTIONS(8279), + [aux_sym_seek_statement_token1] = ACTIONS(8279), + [sym_reset_statement] = ACTIONS(8279), + [aux_sym_raise_event_statement_token1] = ACTIONS(8279), + [sym_stop_statement] = ACTIONS(8279), + [sym_beep_statement] = ACTIONS(8279), + [aux_sym_unload_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token1] = ACTIONS(8279), + [aux_sym_def_type_statement_token2] = ACTIONS(8279), + [aux_sym_def_type_statement_token3] = ACTIONS(8279), + [aux_sym_def_type_statement_token4] = ACTIONS(8279), + [aux_sym_def_type_statement_token5] = ACTIONS(8279), + [aux_sym_def_type_statement_token6] = ACTIONS(8279), + [aux_sym_def_type_statement_token7] = ACTIONS(8279), + [aux_sym_def_type_statement_token8] = ACTIONS(8279), + [aux_sym_def_type_statement_token9] = ACTIONS(8279), + [aux_sym_def_type_statement_token10] = ACTIONS(8279), + [aux_sym_def_type_statement_token11] = ACTIONS(8279), + [aux_sym_def_type_statement_token12] = ACTIONS(8279), + [aux_sym_def_type_statement_token13] = ACTIONS(8279), + [aux_sym_def_type_statement_token14] = ACTIONS(8279), + [aux_sym_call_statement_token1] = ACTIONS(8279), + [sym__ambiguous_call_statement] = ACTIONS(8279), + [aux_sym_addressof_expression_token1] = ACTIONS(8279), + [aux_sym_type_of_expression_token1] = ACTIONS(8279), + [aux_sym_unary_expression_token1] = ACTIONS(8279), + [sym_string_literal] = ACTIONS(8281), + [sym_number_literal] = ACTIONS(8281), + [aux_sym_boolean_literal_token1] = ACTIONS(8279), + [aux_sym_boolean_literal_token2] = ACTIONS(8279), + [sym_nothing_literal] = ACTIONS(8279), + [sym_null_literal] = ACTIONS(8279), + [sym_empty_literal] = ACTIONS(8279), + [sym_date_literal] = ACTIONS(8281), + [anon_sym_POUND] = ACTIONS(8279), + }, + [STATE(7203)] = { + [sym_identifier] = ACTIONS(9080), + [sym_newline] = ACTIONS(9082), + [anon_sym_COLON] = ACTIONS(9082), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9080), + [aux_sym_frm_property_statement_token1] = ACTIONS(9080), + [anon_sym_DOT] = ACTIONS(9080), + [anon_sym_BANG] = ACTIONS(9082), + [aux_sym__attribute_identifier_token1] = ACTIONS(9080), + [aux_sym_option_statement_token3] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9080), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9080), + [aux_sym_preprocessor_const_token1] = ACTIONS(9080), + [sym_static_modifier] = ACTIONS(9080), + [sym__dim_keyword] = ACTIONS(9080), + [sym__redim_keyword] = ACTIONS(9080), + [aux_sym_get_accessor_token1] = ACTIONS(9080), + [aux_sym_set_accessor_token1] = ACTIONS(9080), + [aux_sym_const_declaration_token1] = ACTIONS(9080), + [anon_sym_LPAREN] = ACTIONS(9082), + [aux_sym_as_type_clause_token2] = ACTIONS(9080), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9080), + [aux_sym_visibility_token1] = ACTIONS(9080), + [aux_sym_visibility_token2] = ACTIONS(9080), + [aux_sym_elseif_fragment_token1] = ACTIONS(9080), + [aux_sym_else_fragment_token1] = ACTIONS(9080), + [aux_sym_select_statement_token1] = ACTIONS(9080), + [aux_sym__for_header_token1] = ACTIONS(9080), + [aux_sym_do_statement_token1] = ACTIONS(9080), + [aux_sym_do_condition_token1] = ACTIONS(9080), + [aux_sym_with_statement_token1] = ACTIONS(9080), + [aux_sym_exit_statement_token1] = ACTIONS(9080), + [sym_end_statement] = ACTIONS(9082), + [aux_sym_on_goto_statement_token1] = ACTIONS(9080), + [aux_sym_on_goto_statement_token2] = ACTIONS(9080), + [aux_sym_on_error_statement_token2] = ACTIONS(9080), + [sym__ambiguous_redim_statement] = ACTIONS(9082), + [aux_sym_erase_statement_token1] = ACTIONS(9080), + [aux_sym_open_statement_token1] = ACTIONS(9080), + [aux_sym_file_mode_token2] = ACTIONS(9080), + [aux_sym_file_access_token2] = ACTIONS(9080), + [aux_sym_file_lock_token2] = ACTIONS(9080), + [aux_sym_print_statement_token1] = ACTIONS(9080), + [anon_sym_PLUS] = ACTIONS(9082), + [anon_sym_DASH] = ACTIONS(9080), + [anon_sym_QMARK] = ACTIONS(9082), + [aux_sym_close_statement_token1] = ACTIONS(9080), + [aux_sym_put_statement_token1] = ACTIONS(9080), + [aux_sym_unlock_statement_token1] = ACTIONS(9080), + [aux_sym_seek_statement_token1] = ACTIONS(9080), + [sym_reset_statement] = ACTIONS(9080), + [aux_sym_raise_event_statement_token1] = ACTIONS(9080), + [sym_stop_statement] = ACTIONS(9080), + [sym_beep_statement] = ACTIONS(9080), + [aux_sym_unload_statement_token1] = ACTIONS(9080), + [aux_sym_def_type_statement_token1] = ACTIONS(9080), + [aux_sym_def_type_statement_token2] = ACTIONS(9080), + [aux_sym_def_type_statement_token3] = ACTIONS(9080), + [aux_sym_def_type_statement_token4] = ACTIONS(9080), + [aux_sym_def_type_statement_token5] = ACTIONS(9080), + [aux_sym_def_type_statement_token6] = ACTIONS(9080), + [aux_sym_def_type_statement_token7] = ACTIONS(9080), + [aux_sym_def_type_statement_token8] = ACTIONS(9080), + [aux_sym_def_type_statement_token9] = ACTIONS(9080), + [aux_sym_def_type_statement_token10] = ACTIONS(9080), + [aux_sym_def_type_statement_token11] = ACTIONS(9080), + [aux_sym_def_type_statement_token12] = ACTIONS(9080), + [aux_sym_def_type_statement_token13] = ACTIONS(9080), + [aux_sym_def_type_statement_token14] = ACTIONS(9080), + [aux_sym_call_statement_token1] = ACTIONS(9080), + [sym__ambiguous_call_statement] = ACTIONS(9080), + [aux_sym_addressof_expression_token1] = ACTIONS(9080), + [aux_sym_type_of_expression_token1] = ACTIONS(9080), + [aux_sym_unary_expression_token1] = ACTIONS(9080), + [sym_string_literal] = ACTIONS(9082), + [sym_number_literal] = ACTIONS(9082), + [aux_sym_boolean_literal_token1] = ACTIONS(9080), + [aux_sym_boolean_literal_token2] = ACTIONS(9080), + [sym_nothing_literal] = ACTIONS(9080), + [sym_null_literal] = ACTIONS(9080), + [sym_empty_literal] = ACTIONS(9080), + [sym_date_literal] = ACTIONS(9082), + [anon_sym_POUND] = ACTIONS(9080), + }, + [STATE(7204)] = { + [sym_identifier] = ACTIONS(9423), + [sym_newline] = ACTIONS(9425), + [anon_sym_COLON] = ACTIONS(9425), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9423), + [aux_sym_frm_property_statement_token1] = ACTIONS(9423), + [anon_sym_DOT] = ACTIONS(9423), + [anon_sym_BANG] = ACTIONS(9425), + [aux_sym__attribute_identifier_token1] = ACTIONS(9423), + [aux_sym_option_statement_token3] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9423), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9423), + [aux_sym_preprocessor_const_token1] = ACTIONS(9423), + [sym_static_modifier] = ACTIONS(9423), + [sym__dim_keyword] = ACTIONS(9423), + [sym__redim_keyword] = ACTIONS(9423), + [aux_sym_get_accessor_token1] = ACTIONS(9423), + [aux_sym_set_accessor_token1] = ACTIONS(9423), + [aux_sym_const_declaration_token1] = ACTIONS(9423), + [anon_sym_LPAREN] = ACTIONS(9425), + [aux_sym_as_type_clause_token2] = ACTIONS(9423), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9423), + [aux_sym_visibility_token1] = ACTIONS(9423), + [aux_sym_visibility_token2] = ACTIONS(9423), + [aux_sym_elseif_fragment_token1] = ACTIONS(9423), + [aux_sym_else_fragment_token1] = ACTIONS(9423), + [aux_sym_select_statement_token1] = ACTIONS(9423), + [aux_sym__for_header_token1] = ACTIONS(9423), + [aux_sym_do_statement_token1] = ACTIONS(9423), + [aux_sym_do_condition_token1] = ACTIONS(9423), + [aux_sym_with_statement_token1] = ACTIONS(9423), + [aux_sym_exit_statement_token1] = ACTIONS(9423), + [sym_end_statement] = ACTIONS(9425), + [aux_sym_on_goto_statement_token1] = ACTIONS(9423), + [aux_sym_on_goto_statement_token2] = ACTIONS(9423), + [aux_sym_on_error_statement_token2] = ACTIONS(9423), + [sym__ambiguous_redim_statement] = ACTIONS(9425), + [aux_sym_erase_statement_token1] = ACTIONS(9423), + [aux_sym_open_statement_token1] = ACTIONS(9423), + [aux_sym_file_mode_token2] = ACTIONS(9423), + [aux_sym_file_access_token2] = ACTIONS(9423), + [aux_sym_file_lock_token2] = ACTIONS(9423), + [aux_sym_print_statement_token1] = ACTIONS(9423), + [anon_sym_PLUS] = ACTIONS(9425), + [anon_sym_DASH] = ACTIONS(9423), + [anon_sym_QMARK] = ACTIONS(9425), + [aux_sym_close_statement_token1] = ACTIONS(9423), + [aux_sym_put_statement_token1] = ACTIONS(9423), + [aux_sym_unlock_statement_token1] = ACTIONS(9423), + [aux_sym_seek_statement_token1] = ACTIONS(9423), + [sym_reset_statement] = ACTIONS(9423), + [aux_sym_raise_event_statement_token1] = ACTIONS(9423), + [sym_stop_statement] = ACTIONS(9423), + [sym_beep_statement] = ACTIONS(9423), + [aux_sym_unload_statement_token1] = ACTIONS(9423), + [aux_sym_def_type_statement_token1] = ACTIONS(9423), + [aux_sym_def_type_statement_token2] = ACTIONS(9423), + [aux_sym_def_type_statement_token3] = ACTIONS(9423), + [aux_sym_def_type_statement_token4] = ACTIONS(9423), + [aux_sym_def_type_statement_token5] = ACTIONS(9423), + [aux_sym_def_type_statement_token6] = ACTIONS(9423), + [aux_sym_def_type_statement_token7] = ACTIONS(9423), + [aux_sym_def_type_statement_token8] = ACTIONS(9423), + [aux_sym_def_type_statement_token9] = ACTIONS(9423), + [aux_sym_def_type_statement_token10] = ACTIONS(9423), + [aux_sym_def_type_statement_token11] = ACTIONS(9423), + [aux_sym_def_type_statement_token12] = ACTIONS(9423), + [aux_sym_def_type_statement_token13] = ACTIONS(9423), + [aux_sym_def_type_statement_token14] = ACTIONS(9423), + [aux_sym_call_statement_token1] = ACTIONS(9423), + [sym__ambiguous_call_statement] = ACTIONS(9423), + [aux_sym_addressof_expression_token1] = ACTIONS(9423), + [aux_sym_type_of_expression_token1] = ACTIONS(9423), + [aux_sym_unary_expression_token1] = ACTIONS(9423), + [sym_string_literal] = ACTIONS(9425), + [sym_number_literal] = ACTIONS(9425), + [aux_sym_boolean_literal_token1] = ACTIONS(9423), + [aux_sym_boolean_literal_token2] = ACTIONS(9423), + [sym_nothing_literal] = ACTIONS(9423), + [sym_null_literal] = ACTIONS(9423), + [sym_empty_literal] = ACTIONS(9423), + [sym_date_literal] = ACTIONS(9425), + [anon_sym_POUND] = ACTIONS(9423), + }, + [STATE(7205)] = { + [sym_identifier] = ACTIONS(9768), + [sym_newline] = ACTIONS(9770), + [anon_sym_COLON] = ACTIONS(9770), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9768), + [aux_sym_frm_property_statement_token1] = ACTIONS(9768), + [anon_sym_DOT] = ACTIONS(9768), + [anon_sym_BANG] = ACTIONS(9770), + [aux_sym__attribute_identifier_token1] = ACTIONS(9768), + [aux_sym_option_statement_token3] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9768), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9768), + [aux_sym_preprocessor_const_token1] = ACTIONS(9768), + [sym_static_modifier] = ACTIONS(9768), + [sym__dim_keyword] = ACTIONS(9768), + [sym__redim_keyword] = ACTIONS(9768), + [aux_sym_get_accessor_token1] = ACTIONS(9768), + [aux_sym_set_accessor_token1] = ACTIONS(9768), + [aux_sym_const_declaration_token1] = ACTIONS(9768), + [anon_sym_LPAREN] = ACTIONS(9770), + [aux_sym_as_type_clause_token2] = ACTIONS(9768), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9768), + [aux_sym_visibility_token1] = ACTIONS(9768), + [aux_sym_visibility_token2] = ACTIONS(9768), + [aux_sym_elseif_fragment_token1] = ACTIONS(9768), + [aux_sym_else_fragment_token1] = ACTIONS(9768), + [aux_sym_select_statement_token1] = ACTIONS(9768), + [aux_sym__for_header_token1] = ACTIONS(9768), + [aux_sym_do_statement_token1] = ACTIONS(9768), + [aux_sym_do_condition_token1] = ACTIONS(9768), + [aux_sym_with_statement_token1] = ACTIONS(9768), + [aux_sym_exit_statement_token1] = ACTIONS(9768), + [sym_end_statement] = ACTIONS(9770), + [aux_sym_on_goto_statement_token1] = ACTIONS(9768), + [aux_sym_on_goto_statement_token2] = ACTIONS(9768), + [aux_sym_on_error_statement_token2] = ACTIONS(9768), + [sym__ambiguous_redim_statement] = ACTIONS(9770), + [aux_sym_erase_statement_token1] = ACTIONS(9768), + [aux_sym_open_statement_token1] = ACTIONS(9768), + [aux_sym_file_mode_token2] = ACTIONS(9768), + [aux_sym_file_access_token2] = ACTIONS(9768), + [aux_sym_file_lock_token2] = ACTIONS(9768), + [aux_sym_print_statement_token1] = ACTIONS(9768), + [anon_sym_PLUS] = ACTIONS(9770), + [anon_sym_DASH] = ACTIONS(9768), + [anon_sym_QMARK] = ACTIONS(9770), + [aux_sym_close_statement_token1] = ACTIONS(9768), + [aux_sym_put_statement_token1] = ACTIONS(9768), + [aux_sym_unlock_statement_token1] = ACTIONS(9768), + [aux_sym_seek_statement_token1] = ACTIONS(9768), + [sym_reset_statement] = ACTIONS(9768), + [aux_sym_raise_event_statement_token1] = ACTIONS(9768), + [sym_stop_statement] = ACTIONS(9768), + [sym_beep_statement] = ACTIONS(9768), + [aux_sym_unload_statement_token1] = ACTIONS(9768), + [aux_sym_def_type_statement_token1] = ACTIONS(9768), + [aux_sym_def_type_statement_token2] = ACTIONS(9768), + [aux_sym_def_type_statement_token3] = ACTIONS(9768), + [aux_sym_def_type_statement_token4] = ACTIONS(9768), + [aux_sym_def_type_statement_token5] = ACTIONS(9768), + [aux_sym_def_type_statement_token6] = ACTIONS(9768), + [aux_sym_def_type_statement_token7] = ACTIONS(9768), + [aux_sym_def_type_statement_token8] = ACTIONS(9768), + [aux_sym_def_type_statement_token9] = ACTIONS(9768), + [aux_sym_def_type_statement_token10] = ACTIONS(9768), + [aux_sym_def_type_statement_token11] = ACTIONS(9768), + [aux_sym_def_type_statement_token12] = ACTIONS(9768), + [aux_sym_def_type_statement_token13] = ACTIONS(9768), + [aux_sym_def_type_statement_token14] = ACTIONS(9768), + [aux_sym_call_statement_token1] = ACTIONS(9768), + [sym__ambiguous_call_statement] = ACTIONS(9768), + [aux_sym_addressof_expression_token1] = ACTIONS(9768), + [aux_sym_type_of_expression_token1] = ACTIONS(9768), + [aux_sym_unary_expression_token1] = ACTIONS(9768), + [sym_string_literal] = ACTIONS(9770), + [sym_number_literal] = ACTIONS(9770), + [aux_sym_boolean_literal_token1] = ACTIONS(9768), + [aux_sym_boolean_literal_token2] = ACTIONS(9768), + [sym_nothing_literal] = ACTIONS(9768), + [sym_null_literal] = ACTIONS(9768), + [sym_empty_literal] = ACTIONS(9768), + [sym_date_literal] = ACTIONS(9770), + [anon_sym_POUND] = ACTIONS(9768), + }, + [STATE(7206)] = { + [sym_identifier] = ACTIONS(9142), + [sym_newline] = ACTIONS(9144), + [anon_sym_COLON] = ACTIONS(9144), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9142), + [aux_sym_frm_property_statement_token1] = ACTIONS(9142), + [anon_sym_DOT] = ACTIONS(9142), + [anon_sym_BANG] = ACTIONS(9144), + [aux_sym__attribute_identifier_token1] = ACTIONS(9142), + [aux_sym_option_statement_token3] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9142), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9142), + [aux_sym_preprocessor_const_token1] = ACTIONS(9142), + [sym_static_modifier] = ACTIONS(9142), + [sym__dim_keyword] = ACTIONS(9142), + [sym__redim_keyword] = ACTIONS(9142), + [aux_sym_get_accessor_token1] = ACTIONS(9142), + [aux_sym_set_accessor_token1] = ACTIONS(9142), + [aux_sym_const_declaration_token1] = ACTIONS(9142), + [anon_sym_LPAREN] = ACTIONS(9144), + [aux_sym_as_type_clause_token2] = ACTIONS(9142), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9142), + [aux_sym_visibility_token1] = ACTIONS(9142), + [aux_sym_visibility_token2] = ACTIONS(9142), + [aux_sym_elseif_fragment_token1] = ACTIONS(9142), + [aux_sym_else_fragment_token1] = ACTIONS(9142), + [aux_sym_select_statement_token1] = ACTIONS(9142), + [aux_sym__for_header_token1] = ACTIONS(9142), + [aux_sym_do_statement_token1] = ACTIONS(9142), + [aux_sym_do_condition_token1] = ACTIONS(9142), + [aux_sym_with_statement_token1] = ACTIONS(9142), + [aux_sym_exit_statement_token1] = ACTIONS(9142), + [sym_end_statement] = ACTIONS(9144), + [aux_sym_on_goto_statement_token1] = ACTIONS(9142), + [aux_sym_on_goto_statement_token2] = ACTIONS(9142), + [aux_sym_on_error_statement_token2] = ACTIONS(9142), + [sym__ambiguous_redim_statement] = ACTIONS(9144), + [aux_sym_erase_statement_token1] = ACTIONS(9142), + [aux_sym_open_statement_token1] = ACTIONS(9142), + [aux_sym_file_mode_token2] = ACTIONS(9142), + [aux_sym_file_access_token2] = ACTIONS(9142), + [aux_sym_file_lock_token2] = ACTIONS(9142), + [aux_sym_print_statement_token1] = ACTIONS(9142), + [anon_sym_PLUS] = ACTIONS(9144), + [anon_sym_DASH] = ACTIONS(9142), + [anon_sym_QMARK] = ACTIONS(9144), + [aux_sym_close_statement_token1] = ACTIONS(9142), + [aux_sym_put_statement_token1] = ACTIONS(9142), + [aux_sym_unlock_statement_token1] = ACTIONS(9142), + [aux_sym_seek_statement_token1] = ACTIONS(9142), + [sym_reset_statement] = ACTIONS(9142), + [aux_sym_raise_event_statement_token1] = ACTIONS(9142), + [sym_stop_statement] = ACTIONS(9142), + [sym_beep_statement] = ACTIONS(9142), + [aux_sym_unload_statement_token1] = ACTIONS(9142), + [aux_sym_def_type_statement_token1] = ACTIONS(9142), + [aux_sym_def_type_statement_token2] = ACTIONS(9142), + [aux_sym_def_type_statement_token3] = ACTIONS(9142), + [aux_sym_def_type_statement_token4] = ACTIONS(9142), + [aux_sym_def_type_statement_token5] = ACTIONS(9142), + [aux_sym_def_type_statement_token6] = ACTIONS(9142), + [aux_sym_def_type_statement_token7] = ACTIONS(9142), + [aux_sym_def_type_statement_token8] = ACTIONS(9142), + [aux_sym_def_type_statement_token9] = ACTIONS(9142), + [aux_sym_def_type_statement_token10] = ACTIONS(9142), + [aux_sym_def_type_statement_token11] = ACTIONS(9142), + [aux_sym_def_type_statement_token12] = ACTIONS(9142), + [aux_sym_def_type_statement_token13] = ACTIONS(9142), + [aux_sym_def_type_statement_token14] = ACTIONS(9142), + [aux_sym_call_statement_token1] = ACTIONS(9142), + [sym__ambiguous_call_statement] = ACTIONS(9142), + [aux_sym_addressof_expression_token1] = ACTIONS(9142), + [aux_sym_type_of_expression_token1] = ACTIONS(9142), + [aux_sym_unary_expression_token1] = ACTIONS(9142), + [sym_string_literal] = ACTIONS(9144), + [sym_number_literal] = ACTIONS(9144), + [aux_sym_boolean_literal_token1] = ACTIONS(9142), + [aux_sym_boolean_literal_token2] = ACTIONS(9142), + [sym_nothing_literal] = ACTIONS(9142), + [sym_null_literal] = ACTIONS(9142), + [sym_empty_literal] = ACTIONS(9142), + [sym_date_literal] = ACTIONS(9144), + [anon_sym_POUND] = ACTIONS(9142), + }, + [STATE(7207)] = { + [sym_identifier] = ACTIONS(9084), + [sym_newline] = ACTIONS(9086), + [anon_sym_COLON] = ACTIONS(9086), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9084), + [aux_sym_frm_property_statement_token1] = ACTIONS(9084), + [anon_sym_DOT] = ACTIONS(9084), + [anon_sym_BANG] = ACTIONS(9086), + [aux_sym__attribute_identifier_token1] = ACTIONS(9084), + [aux_sym_option_statement_token3] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9084), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9084), + [aux_sym_preprocessor_const_token1] = ACTIONS(9084), + [sym_static_modifier] = ACTIONS(9084), + [sym__dim_keyword] = ACTIONS(9084), + [sym__redim_keyword] = ACTIONS(9084), + [aux_sym_get_accessor_token1] = ACTIONS(9084), + [aux_sym_set_accessor_token1] = ACTIONS(9084), + [aux_sym_const_declaration_token1] = ACTIONS(9084), + [anon_sym_LPAREN] = ACTIONS(9086), + [aux_sym_as_type_clause_token2] = ACTIONS(9084), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9084), + [aux_sym_visibility_token1] = ACTIONS(9084), + [aux_sym_visibility_token2] = ACTIONS(9084), + [aux_sym_elseif_fragment_token1] = ACTIONS(9084), + [aux_sym_else_fragment_token1] = ACTIONS(9084), + [aux_sym_select_statement_token1] = ACTIONS(9084), + [aux_sym__for_header_token1] = ACTIONS(9084), + [aux_sym_do_statement_token1] = ACTIONS(9084), + [aux_sym_do_condition_token1] = ACTIONS(9084), + [aux_sym_with_statement_token1] = ACTIONS(9084), + [aux_sym_exit_statement_token1] = ACTIONS(9084), + [sym_end_statement] = ACTIONS(9086), + [aux_sym_on_goto_statement_token1] = ACTIONS(9084), + [aux_sym_on_goto_statement_token2] = ACTIONS(9084), + [aux_sym_on_error_statement_token2] = ACTIONS(9084), + [sym__ambiguous_redim_statement] = ACTIONS(9086), + [aux_sym_erase_statement_token1] = ACTIONS(9084), + [aux_sym_open_statement_token1] = ACTIONS(9084), + [aux_sym_file_mode_token2] = ACTIONS(9084), + [aux_sym_file_access_token2] = ACTIONS(9084), + [aux_sym_file_lock_token2] = ACTIONS(9084), + [aux_sym_print_statement_token1] = ACTIONS(9084), + [anon_sym_PLUS] = ACTIONS(9086), + [anon_sym_DASH] = ACTIONS(9084), + [anon_sym_QMARK] = ACTIONS(9086), + [aux_sym_close_statement_token1] = ACTIONS(9084), + [aux_sym_put_statement_token1] = ACTIONS(9084), + [aux_sym_unlock_statement_token1] = ACTIONS(9084), + [aux_sym_seek_statement_token1] = ACTIONS(9084), + [sym_reset_statement] = ACTIONS(9084), + [aux_sym_raise_event_statement_token1] = ACTIONS(9084), + [sym_stop_statement] = ACTIONS(9084), + [sym_beep_statement] = ACTIONS(9084), + [aux_sym_unload_statement_token1] = ACTIONS(9084), + [aux_sym_def_type_statement_token1] = ACTIONS(9084), + [aux_sym_def_type_statement_token2] = ACTIONS(9084), + [aux_sym_def_type_statement_token3] = ACTIONS(9084), + [aux_sym_def_type_statement_token4] = ACTIONS(9084), + [aux_sym_def_type_statement_token5] = ACTIONS(9084), + [aux_sym_def_type_statement_token6] = ACTIONS(9084), + [aux_sym_def_type_statement_token7] = ACTIONS(9084), + [aux_sym_def_type_statement_token8] = ACTIONS(9084), + [aux_sym_def_type_statement_token9] = ACTIONS(9084), + [aux_sym_def_type_statement_token10] = ACTIONS(9084), + [aux_sym_def_type_statement_token11] = ACTIONS(9084), + [aux_sym_def_type_statement_token12] = ACTIONS(9084), + [aux_sym_def_type_statement_token13] = ACTIONS(9084), + [aux_sym_def_type_statement_token14] = ACTIONS(9084), + [aux_sym_call_statement_token1] = ACTIONS(9084), + [sym__ambiguous_call_statement] = ACTIONS(9084), + [aux_sym_addressof_expression_token1] = ACTIONS(9084), + [aux_sym_type_of_expression_token1] = ACTIONS(9084), + [aux_sym_unary_expression_token1] = ACTIONS(9084), + [sym_string_literal] = ACTIONS(9086), + [sym_number_literal] = ACTIONS(9086), + [aux_sym_boolean_literal_token1] = ACTIONS(9084), + [aux_sym_boolean_literal_token2] = ACTIONS(9084), + [sym_nothing_literal] = ACTIONS(9084), + [sym_null_literal] = ACTIONS(9084), + [sym_empty_literal] = ACTIONS(9084), + [sym_date_literal] = ACTIONS(9086), + [anon_sym_POUND] = ACTIONS(9084), + }, + [STATE(7208)] = { + [sym_identifier] = ACTIONS(9264), + [sym_newline] = ACTIONS(9266), + [anon_sym_COLON] = ACTIONS(9266), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9264), + [aux_sym_frm_property_statement_token1] = ACTIONS(9264), + [anon_sym_DOT] = ACTIONS(9264), + [anon_sym_BANG] = ACTIONS(9266), + [aux_sym__attribute_identifier_token1] = ACTIONS(9264), + [aux_sym_option_statement_token3] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9264), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9264), + [aux_sym_preprocessor_const_token1] = ACTIONS(9264), + [sym_static_modifier] = ACTIONS(9264), + [sym__dim_keyword] = ACTIONS(9264), + [sym__redim_keyword] = ACTIONS(9264), + [aux_sym_get_accessor_token1] = ACTIONS(9264), + [aux_sym_set_accessor_token1] = ACTIONS(9264), + [aux_sym_const_declaration_token1] = ACTIONS(9264), + [anon_sym_LPAREN] = ACTIONS(9266), + [aux_sym_as_type_clause_token2] = ACTIONS(9264), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9264), + [aux_sym_visibility_token1] = ACTIONS(9264), + [aux_sym_visibility_token2] = ACTIONS(9264), + [aux_sym_elseif_fragment_token1] = ACTIONS(9264), + [aux_sym_else_fragment_token1] = ACTIONS(9264), + [aux_sym_select_statement_token1] = ACTIONS(9264), + [aux_sym__for_header_token1] = ACTIONS(9264), + [aux_sym_do_statement_token1] = ACTIONS(9264), + [aux_sym_do_condition_token1] = ACTIONS(9264), + [aux_sym_with_statement_token1] = ACTIONS(9264), + [aux_sym_exit_statement_token1] = ACTIONS(9264), + [sym_end_statement] = ACTIONS(9266), + [aux_sym_on_goto_statement_token1] = ACTIONS(9264), + [aux_sym_on_goto_statement_token2] = ACTIONS(9264), + [aux_sym_on_error_statement_token2] = ACTIONS(9264), + [sym__ambiguous_redim_statement] = ACTIONS(9266), + [aux_sym_erase_statement_token1] = ACTIONS(9264), + [aux_sym_open_statement_token1] = ACTIONS(9264), + [aux_sym_file_mode_token2] = ACTIONS(9264), + [aux_sym_file_access_token2] = ACTIONS(9264), + [aux_sym_file_lock_token2] = ACTIONS(9264), + [aux_sym_print_statement_token1] = ACTIONS(9264), + [anon_sym_PLUS] = ACTIONS(9266), + [anon_sym_DASH] = ACTIONS(9264), + [anon_sym_QMARK] = ACTIONS(9266), + [aux_sym_close_statement_token1] = ACTIONS(9264), + [aux_sym_put_statement_token1] = ACTIONS(9264), + [aux_sym_unlock_statement_token1] = ACTIONS(9264), + [aux_sym_seek_statement_token1] = ACTIONS(9264), + [sym_reset_statement] = ACTIONS(9264), + [aux_sym_raise_event_statement_token1] = ACTIONS(9264), + [sym_stop_statement] = ACTIONS(9264), + [sym_beep_statement] = ACTIONS(9264), + [aux_sym_unload_statement_token1] = ACTIONS(9264), + [aux_sym_def_type_statement_token1] = ACTIONS(9264), + [aux_sym_def_type_statement_token2] = ACTIONS(9264), + [aux_sym_def_type_statement_token3] = ACTIONS(9264), + [aux_sym_def_type_statement_token4] = ACTIONS(9264), + [aux_sym_def_type_statement_token5] = ACTIONS(9264), + [aux_sym_def_type_statement_token6] = ACTIONS(9264), + [aux_sym_def_type_statement_token7] = ACTIONS(9264), + [aux_sym_def_type_statement_token8] = ACTIONS(9264), + [aux_sym_def_type_statement_token9] = ACTIONS(9264), + [aux_sym_def_type_statement_token10] = ACTIONS(9264), + [aux_sym_def_type_statement_token11] = ACTIONS(9264), + [aux_sym_def_type_statement_token12] = ACTIONS(9264), + [aux_sym_def_type_statement_token13] = ACTIONS(9264), + [aux_sym_def_type_statement_token14] = ACTIONS(9264), + [aux_sym_call_statement_token1] = ACTIONS(9264), + [sym__ambiguous_call_statement] = ACTIONS(9264), + [aux_sym_addressof_expression_token1] = ACTIONS(9264), + [aux_sym_type_of_expression_token1] = ACTIONS(9264), + [aux_sym_unary_expression_token1] = ACTIONS(9264), + [sym_string_literal] = ACTIONS(9266), + [sym_number_literal] = ACTIONS(9266), + [aux_sym_boolean_literal_token1] = ACTIONS(9264), + [aux_sym_boolean_literal_token2] = ACTIONS(9264), + [sym_nothing_literal] = ACTIONS(9264), + [sym_null_literal] = ACTIONS(9264), + [sym_empty_literal] = ACTIONS(9264), + [sym_date_literal] = ACTIONS(9266), + [anon_sym_POUND] = ACTIONS(9264), + }, + [STATE(7209)] = { + [sym_identifier] = ACTIONS(8283), + [sym_newline] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8283), + [aux_sym_frm_property_statement_token1] = ACTIONS(8283), + [anon_sym_DOT] = ACTIONS(8283), + [anon_sym_BANG] = ACTIONS(8285), + [aux_sym__attribute_identifier_token1] = ACTIONS(8283), + [aux_sym_option_statement_token3] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8283), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8283), + [aux_sym_preprocessor_const_token1] = ACTIONS(8283), + [sym_static_modifier] = ACTIONS(8283), + [sym__dim_keyword] = ACTIONS(8283), + [sym__redim_keyword] = ACTIONS(8283), + [aux_sym_get_accessor_token1] = ACTIONS(8283), + [aux_sym_set_accessor_token1] = ACTIONS(8283), + [aux_sym_const_declaration_token1] = ACTIONS(8283), + [anon_sym_LPAREN] = ACTIONS(8285), + [aux_sym_as_type_clause_token2] = ACTIONS(8283), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8283), + [aux_sym_visibility_token1] = ACTIONS(8283), + [aux_sym_visibility_token2] = ACTIONS(8283), + [aux_sym_elseif_fragment_token1] = ACTIONS(8283), + [aux_sym_else_fragment_token1] = ACTIONS(8283), + [aux_sym_select_statement_token1] = ACTIONS(8283), + [aux_sym__for_header_token1] = ACTIONS(8283), + [aux_sym_do_statement_token1] = ACTIONS(8283), + [aux_sym_do_condition_token1] = ACTIONS(8283), + [aux_sym_with_statement_token1] = ACTIONS(8283), + [aux_sym_exit_statement_token1] = ACTIONS(8283), + [sym_end_statement] = ACTIONS(8285), + [aux_sym_on_goto_statement_token1] = ACTIONS(8283), + [aux_sym_on_goto_statement_token2] = ACTIONS(8283), + [aux_sym_on_error_statement_token2] = ACTIONS(8283), + [sym__ambiguous_redim_statement] = ACTIONS(8285), + [aux_sym_erase_statement_token1] = ACTIONS(8283), + [aux_sym_open_statement_token1] = ACTIONS(8283), + [aux_sym_file_mode_token2] = ACTIONS(8283), + [aux_sym_file_access_token2] = ACTIONS(8283), + [aux_sym_file_lock_token2] = ACTIONS(8283), + [aux_sym_print_statement_token1] = ACTIONS(8283), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_DASH] = ACTIONS(8283), + [anon_sym_QMARK] = ACTIONS(8285), + [aux_sym_close_statement_token1] = ACTIONS(8283), + [aux_sym_put_statement_token1] = ACTIONS(8283), + [aux_sym_unlock_statement_token1] = ACTIONS(8283), + [aux_sym_seek_statement_token1] = ACTIONS(8283), + [sym_reset_statement] = ACTIONS(8283), + [aux_sym_raise_event_statement_token1] = ACTIONS(8283), + [sym_stop_statement] = ACTIONS(8283), + [sym_beep_statement] = ACTIONS(8283), + [aux_sym_unload_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token1] = ACTIONS(8283), + [aux_sym_def_type_statement_token2] = ACTIONS(8283), + [aux_sym_def_type_statement_token3] = ACTIONS(8283), + [aux_sym_def_type_statement_token4] = ACTIONS(8283), + [aux_sym_def_type_statement_token5] = ACTIONS(8283), + [aux_sym_def_type_statement_token6] = ACTIONS(8283), + [aux_sym_def_type_statement_token7] = ACTIONS(8283), + [aux_sym_def_type_statement_token8] = ACTIONS(8283), + [aux_sym_def_type_statement_token9] = ACTIONS(8283), + [aux_sym_def_type_statement_token10] = ACTIONS(8283), + [aux_sym_def_type_statement_token11] = ACTIONS(8283), + [aux_sym_def_type_statement_token12] = ACTIONS(8283), + [aux_sym_def_type_statement_token13] = ACTIONS(8283), + [aux_sym_def_type_statement_token14] = ACTIONS(8283), + [aux_sym_call_statement_token1] = ACTIONS(8283), + [sym__ambiguous_call_statement] = ACTIONS(8283), + [aux_sym_addressof_expression_token1] = ACTIONS(8283), + [aux_sym_type_of_expression_token1] = ACTIONS(8283), + [aux_sym_unary_expression_token1] = ACTIONS(8283), + [sym_string_literal] = ACTIONS(8285), + [sym_number_literal] = ACTIONS(8285), + [aux_sym_boolean_literal_token1] = ACTIONS(8283), + [aux_sym_boolean_literal_token2] = ACTIONS(8283), + [sym_nothing_literal] = ACTIONS(8283), + [sym_null_literal] = ACTIONS(8283), + [sym_empty_literal] = ACTIONS(8283), + [sym_date_literal] = ACTIONS(8285), + [anon_sym_POUND] = ACTIONS(8283), + }, + [STATE(7210)] = { + [sym_identifier] = ACTIONS(8927), + [sym_newline] = ACTIONS(8929), + [anon_sym_COLON] = ACTIONS(8929), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8927), + [aux_sym_frm_property_statement_token1] = ACTIONS(8927), + [anon_sym_DOT] = ACTIONS(8927), + [anon_sym_BANG] = ACTIONS(8929), + [aux_sym__attribute_identifier_token1] = ACTIONS(8927), + [aux_sym_option_statement_token3] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8927), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8927), + [aux_sym_preprocessor_const_token1] = ACTIONS(8927), + [sym_static_modifier] = ACTIONS(8927), + [sym__dim_keyword] = ACTIONS(8927), + [sym__redim_keyword] = ACTIONS(8927), + [aux_sym_get_accessor_token1] = ACTIONS(8927), + [aux_sym_set_accessor_token1] = ACTIONS(8927), + [aux_sym_const_declaration_token1] = ACTIONS(8927), + [anon_sym_LPAREN] = ACTIONS(8929), + [aux_sym_as_type_clause_token2] = ACTIONS(8927), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8927), + [aux_sym_visibility_token1] = ACTIONS(8927), + [aux_sym_visibility_token2] = ACTIONS(8927), + [aux_sym_elseif_fragment_token1] = ACTIONS(8927), + [aux_sym_else_fragment_token1] = ACTIONS(8927), + [aux_sym_select_statement_token1] = ACTIONS(8927), + [aux_sym__for_header_token1] = ACTIONS(8927), + [aux_sym_do_statement_token1] = ACTIONS(8927), + [aux_sym_do_condition_token1] = ACTIONS(8927), + [aux_sym_with_statement_token1] = ACTIONS(8927), + [aux_sym_exit_statement_token1] = ACTIONS(8927), + [sym_end_statement] = ACTIONS(8929), + [aux_sym_on_goto_statement_token1] = ACTIONS(8927), + [aux_sym_on_goto_statement_token2] = ACTIONS(8927), + [aux_sym_on_error_statement_token2] = ACTIONS(8927), + [sym__ambiguous_redim_statement] = ACTIONS(8929), + [aux_sym_erase_statement_token1] = ACTIONS(8927), + [aux_sym_open_statement_token1] = ACTIONS(8927), + [aux_sym_file_mode_token2] = ACTIONS(8927), + [aux_sym_file_access_token2] = ACTIONS(8927), + [aux_sym_file_lock_token2] = ACTIONS(8927), + [aux_sym_print_statement_token1] = ACTIONS(8927), + [anon_sym_PLUS] = ACTIONS(8929), + [anon_sym_DASH] = ACTIONS(8927), + [anon_sym_QMARK] = ACTIONS(8929), + [aux_sym_close_statement_token1] = ACTIONS(8927), + [aux_sym_put_statement_token1] = ACTIONS(8927), + [aux_sym_unlock_statement_token1] = ACTIONS(8927), + [aux_sym_seek_statement_token1] = ACTIONS(8927), + [sym_reset_statement] = ACTIONS(8927), + [aux_sym_raise_event_statement_token1] = ACTIONS(8927), + [sym_stop_statement] = ACTIONS(8927), + [sym_beep_statement] = ACTIONS(8927), + [aux_sym_unload_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token1] = ACTIONS(8927), + [aux_sym_def_type_statement_token2] = ACTIONS(8927), + [aux_sym_def_type_statement_token3] = ACTIONS(8927), + [aux_sym_def_type_statement_token4] = ACTIONS(8927), + [aux_sym_def_type_statement_token5] = ACTIONS(8927), + [aux_sym_def_type_statement_token6] = ACTIONS(8927), + [aux_sym_def_type_statement_token7] = ACTIONS(8927), + [aux_sym_def_type_statement_token8] = ACTIONS(8927), + [aux_sym_def_type_statement_token9] = ACTIONS(8927), + [aux_sym_def_type_statement_token10] = ACTIONS(8927), + [aux_sym_def_type_statement_token11] = ACTIONS(8927), + [aux_sym_def_type_statement_token12] = ACTIONS(8927), + [aux_sym_def_type_statement_token13] = ACTIONS(8927), + [aux_sym_def_type_statement_token14] = ACTIONS(8927), + [aux_sym_call_statement_token1] = ACTIONS(8927), + [sym__ambiguous_call_statement] = ACTIONS(8927), + [aux_sym_addressof_expression_token1] = ACTIONS(8927), + [aux_sym_type_of_expression_token1] = ACTIONS(8927), + [aux_sym_unary_expression_token1] = ACTIONS(8927), + [sym_string_literal] = ACTIONS(8929), + [sym_number_literal] = ACTIONS(8929), + [aux_sym_boolean_literal_token1] = ACTIONS(8927), + [aux_sym_boolean_literal_token2] = ACTIONS(8927), + [sym_nothing_literal] = ACTIONS(8927), + [sym_null_literal] = ACTIONS(8927), + [sym_empty_literal] = ACTIONS(8927), + [sym_date_literal] = ACTIONS(8929), + [anon_sym_POUND] = ACTIONS(8927), + }, + [STATE(7211)] = { + [sym_identifier] = ACTIONS(9658), + [sym_newline] = ACTIONS(9660), + [anon_sym_COLON] = ACTIONS(9660), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9658), + [aux_sym_frm_property_statement_token1] = ACTIONS(9658), + [anon_sym_DOT] = ACTIONS(9658), + [anon_sym_BANG] = ACTIONS(9660), + [aux_sym__attribute_identifier_token1] = ACTIONS(9658), + [aux_sym_option_statement_token3] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9658), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9658), + [aux_sym_preprocessor_const_token1] = ACTIONS(9658), + [sym_static_modifier] = ACTIONS(9658), + [sym__dim_keyword] = ACTIONS(9658), + [sym__redim_keyword] = ACTIONS(9658), + [aux_sym_get_accessor_token1] = ACTIONS(9658), + [aux_sym_set_accessor_token1] = ACTIONS(9658), + [aux_sym_const_declaration_token1] = ACTIONS(9658), + [anon_sym_LPAREN] = ACTIONS(9660), + [aux_sym_as_type_clause_token2] = ACTIONS(9658), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9658), + [aux_sym_visibility_token1] = ACTIONS(9658), + [aux_sym_visibility_token2] = ACTIONS(9658), + [aux_sym_elseif_fragment_token1] = ACTIONS(9658), + [aux_sym_else_fragment_token1] = ACTIONS(9658), + [aux_sym_select_statement_token1] = ACTIONS(9658), + [aux_sym__for_header_token1] = ACTIONS(9658), + [aux_sym_do_statement_token1] = ACTIONS(9658), + [aux_sym_do_condition_token1] = ACTIONS(9658), + [aux_sym_with_statement_token1] = ACTIONS(9658), + [aux_sym_exit_statement_token1] = ACTIONS(9658), + [sym_end_statement] = ACTIONS(9660), + [aux_sym_on_goto_statement_token1] = ACTIONS(9658), + [aux_sym_on_goto_statement_token2] = ACTIONS(9658), + [aux_sym_on_error_statement_token2] = ACTIONS(9658), + [sym__ambiguous_redim_statement] = ACTIONS(9660), + [aux_sym_erase_statement_token1] = ACTIONS(9658), + [aux_sym_open_statement_token1] = ACTIONS(9658), + [aux_sym_file_mode_token2] = ACTIONS(9658), + [aux_sym_file_access_token2] = ACTIONS(9658), + [aux_sym_file_lock_token2] = ACTIONS(9658), + [aux_sym_print_statement_token1] = ACTIONS(9658), + [anon_sym_PLUS] = ACTIONS(9660), + [anon_sym_DASH] = ACTIONS(9658), + [anon_sym_QMARK] = ACTIONS(9660), + [aux_sym_close_statement_token1] = ACTIONS(9658), + [aux_sym_put_statement_token1] = ACTIONS(9658), + [aux_sym_unlock_statement_token1] = ACTIONS(9658), + [aux_sym_seek_statement_token1] = ACTIONS(9658), + [sym_reset_statement] = ACTIONS(9658), + [aux_sym_raise_event_statement_token1] = ACTIONS(9658), + [sym_stop_statement] = ACTIONS(9658), + [sym_beep_statement] = ACTIONS(9658), + [aux_sym_unload_statement_token1] = ACTIONS(9658), + [aux_sym_def_type_statement_token1] = ACTIONS(9658), + [aux_sym_def_type_statement_token2] = ACTIONS(9658), + [aux_sym_def_type_statement_token3] = ACTIONS(9658), + [aux_sym_def_type_statement_token4] = ACTIONS(9658), + [aux_sym_def_type_statement_token5] = ACTIONS(9658), + [aux_sym_def_type_statement_token6] = ACTIONS(9658), + [aux_sym_def_type_statement_token7] = ACTIONS(9658), + [aux_sym_def_type_statement_token8] = ACTIONS(9658), + [aux_sym_def_type_statement_token9] = ACTIONS(9658), + [aux_sym_def_type_statement_token10] = ACTIONS(9658), + [aux_sym_def_type_statement_token11] = ACTIONS(9658), + [aux_sym_def_type_statement_token12] = ACTIONS(9658), + [aux_sym_def_type_statement_token13] = ACTIONS(9658), + [aux_sym_def_type_statement_token14] = ACTIONS(9658), + [aux_sym_call_statement_token1] = ACTIONS(9658), + [sym__ambiguous_call_statement] = ACTIONS(9658), + [aux_sym_addressof_expression_token1] = ACTIONS(9658), + [aux_sym_type_of_expression_token1] = ACTIONS(9658), + [aux_sym_unary_expression_token1] = ACTIONS(9658), + [sym_string_literal] = ACTIONS(9660), + [sym_number_literal] = ACTIONS(9660), + [aux_sym_boolean_literal_token1] = ACTIONS(9658), + [aux_sym_boolean_literal_token2] = ACTIONS(9658), + [sym_nothing_literal] = ACTIONS(9658), + [sym_null_literal] = ACTIONS(9658), + [sym_empty_literal] = ACTIONS(9658), + [sym_date_literal] = ACTIONS(9660), + [anon_sym_POUND] = ACTIONS(9658), + }, + [STATE(7212)] = { + [sym_identifier] = ACTIONS(9662), + [sym_newline] = ACTIONS(9664), + [anon_sym_COLON] = ACTIONS(9664), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9662), + [aux_sym_frm_property_statement_token1] = ACTIONS(9662), + [anon_sym_DOT] = ACTIONS(9662), + [anon_sym_BANG] = ACTIONS(9664), + [aux_sym__attribute_identifier_token1] = ACTIONS(9662), + [aux_sym_option_statement_token3] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9662), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9662), + [aux_sym_preprocessor_const_token1] = ACTIONS(9662), + [sym_static_modifier] = ACTIONS(9662), + [sym__dim_keyword] = ACTIONS(9662), + [sym__redim_keyword] = ACTIONS(9662), + [aux_sym_get_accessor_token1] = ACTIONS(9662), + [aux_sym_set_accessor_token1] = ACTIONS(9662), + [aux_sym_const_declaration_token1] = ACTIONS(9662), + [anon_sym_LPAREN] = ACTIONS(9664), + [aux_sym_as_type_clause_token2] = ACTIONS(9662), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9662), + [aux_sym_visibility_token1] = ACTIONS(9662), + [aux_sym_visibility_token2] = ACTIONS(9662), + [aux_sym_elseif_fragment_token1] = ACTIONS(9662), + [aux_sym_else_fragment_token1] = ACTIONS(9662), + [aux_sym_select_statement_token1] = ACTIONS(9662), + [aux_sym__for_header_token1] = ACTIONS(9662), + [aux_sym_do_statement_token1] = ACTIONS(9662), + [aux_sym_do_condition_token1] = ACTIONS(9662), + [aux_sym_with_statement_token1] = ACTIONS(9662), + [aux_sym_exit_statement_token1] = ACTIONS(9662), + [sym_end_statement] = ACTIONS(9664), + [aux_sym_on_goto_statement_token1] = ACTIONS(9662), + [aux_sym_on_goto_statement_token2] = ACTIONS(9662), + [aux_sym_on_error_statement_token2] = ACTIONS(9662), + [sym__ambiguous_redim_statement] = ACTIONS(9664), + [aux_sym_erase_statement_token1] = ACTIONS(9662), + [aux_sym_open_statement_token1] = ACTIONS(9662), + [aux_sym_file_mode_token2] = ACTIONS(9662), + [aux_sym_file_access_token2] = ACTIONS(9662), + [aux_sym_file_lock_token2] = ACTIONS(9662), + [aux_sym_print_statement_token1] = ACTIONS(9662), + [anon_sym_PLUS] = ACTIONS(9664), + [anon_sym_DASH] = ACTIONS(9662), + [anon_sym_QMARK] = ACTIONS(9664), + [aux_sym_close_statement_token1] = ACTIONS(9662), + [aux_sym_put_statement_token1] = ACTIONS(9662), + [aux_sym_unlock_statement_token1] = ACTIONS(9662), + [aux_sym_seek_statement_token1] = ACTIONS(9662), + [sym_reset_statement] = ACTIONS(9662), + [aux_sym_raise_event_statement_token1] = ACTIONS(9662), + [sym_stop_statement] = ACTIONS(9662), + [sym_beep_statement] = ACTIONS(9662), + [aux_sym_unload_statement_token1] = ACTIONS(9662), + [aux_sym_def_type_statement_token1] = ACTIONS(9662), + [aux_sym_def_type_statement_token2] = ACTIONS(9662), + [aux_sym_def_type_statement_token3] = ACTIONS(9662), + [aux_sym_def_type_statement_token4] = ACTIONS(9662), + [aux_sym_def_type_statement_token5] = ACTIONS(9662), + [aux_sym_def_type_statement_token6] = ACTIONS(9662), + [aux_sym_def_type_statement_token7] = ACTIONS(9662), + [aux_sym_def_type_statement_token8] = ACTIONS(9662), + [aux_sym_def_type_statement_token9] = ACTIONS(9662), + [aux_sym_def_type_statement_token10] = ACTIONS(9662), + [aux_sym_def_type_statement_token11] = ACTIONS(9662), + [aux_sym_def_type_statement_token12] = ACTIONS(9662), + [aux_sym_def_type_statement_token13] = ACTIONS(9662), + [aux_sym_def_type_statement_token14] = ACTIONS(9662), + [aux_sym_call_statement_token1] = ACTIONS(9662), + [sym__ambiguous_call_statement] = ACTIONS(9662), + [aux_sym_addressof_expression_token1] = ACTIONS(9662), + [aux_sym_type_of_expression_token1] = ACTIONS(9662), + [aux_sym_unary_expression_token1] = ACTIONS(9662), + [sym_string_literal] = ACTIONS(9664), + [sym_number_literal] = ACTIONS(9664), + [aux_sym_boolean_literal_token1] = ACTIONS(9662), + [aux_sym_boolean_literal_token2] = ACTIONS(9662), + [sym_nothing_literal] = ACTIONS(9662), + [sym_null_literal] = ACTIONS(9662), + [sym_empty_literal] = ACTIONS(9662), + [sym_date_literal] = ACTIONS(9664), + [anon_sym_POUND] = ACTIONS(9662), + }, + [STATE(7213)] = { + [sym_identifier] = ACTIONS(9044), + [sym_newline] = ACTIONS(9046), + [anon_sym_COLON] = ACTIONS(9046), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9044), + [aux_sym_frm_property_statement_token1] = ACTIONS(9044), + [anon_sym_DOT] = ACTIONS(9044), + [anon_sym_BANG] = ACTIONS(9046), + [aux_sym__attribute_identifier_token1] = ACTIONS(9044), + [aux_sym_option_statement_token3] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9044), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9044), + [aux_sym_preprocessor_const_token1] = ACTIONS(9044), + [sym_static_modifier] = ACTIONS(9044), + [sym__dim_keyword] = ACTIONS(9044), + [sym__redim_keyword] = ACTIONS(9044), + [aux_sym_get_accessor_token1] = ACTIONS(9044), + [aux_sym_set_accessor_token1] = ACTIONS(9044), + [aux_sym_const_declaration_token1] = ACTIONS(9044), + [anon_sym_LPAREN] = ACTIONS(9046), + [aux_sym_as_type_clause_token2] = ACTIONS(9044), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9044), + [aux_sym_visibility_token1] = ACTIONS(9044), + [aux_sym_visibility_token2] = ACTIONS(9044), + [aux_sym_elseif_fragment_token1] = ACTIONS(9044), + [aux_sym_else_fragment_token1] = ACTIONS(9044), + [aux_sym_select_statement_token1] = ACTIONS(9044), + [aux_sym__for_header_token1] = ACTIONS(9044), + [aux_sym_do_statement_token1] = ACTIONS(9044), + [aux_sym_do_condition_token1] = ACTIONS(9044), + [aux_sym_with_statement_token1] = ACTIONS(9044), + [aux_sym_exit_statement_token1] = ACTIONS(9044), + [sym_end_statement] = ACTIONS(9046), + [aux_sym_on_goto_statement_token1] = ACTIONS(9044), + [aux_sym_on_goto_statement_token2] = ACTIONS(9044), + [aux_sym_on_error_statement_token2] = ACTIONS(9044), + [sym__ambiguous_redim_statement] = ACTIONS(9046), + [aux_sym_erase_statement_token1] = ACTIONS(9044), + [aux_sym_open_statement_token1] = ACTIONS(9044), + [aux_sym_file_mode_token2] = ACTIONS(9044), + [aux_sym_file_access_token2] = ACTIONS(9044), + [aux_sym_file_lock_token2] = ACTIONS(9044), + [aux_sym_print_statement_token1] = ACTIONS(9044), + [anon_sym_PLUS] = ACTIONS(9046), + [anon_sym_DASH] = ACTIONS(9044), + [anon_sym_QMARK] = ACTIONS(9046), + [aux_sym_close_statement_token1] = ACTIONS(9044), + [aux_sym_put_statement_token1] = ACTIONS(9044), + [aux_sym_unlock_statement_token1] = ACTIONS(9044), + [aux_sym_seek_statement_token1] = ACTIONS(9044), + [sym_reset_statement] = ACTIONS(9044), + [aux_sym_raise_event_statement_token1] = ACTIONS(9044), + [sym_stop_statement] = ACTIONS(9044), + [sym_beep_statement] = ACTIONS(9044), + [aux_sym_unload_statement_token1] = ACTIONS(9044), + [aux_sym_def_type_statement_token1] = ACTIONS(9044), + [aux_sym_def_type_statement_token2] = ACTIONS(9044), + [aux_sym_def_type_statement_token3] = ACTIONS(9044), + [aux_sym_def_type_statement_token4] = ACTIONS(9044), + [aux_sym_def_type_statement_token5] = ACTIONS(9044), + [aux_sym_def_type_statement_token6] = ACTIONS(9044), + [aux_sym_def_type_statement_token7] = ACTIONS(9044), + [aux_sym_def_type_statement_token8] = ACTIONS(9044), + [aux_sym_def_type_statement_token9] = ACTIONS(9044), + [aux_sym_def_type_statement_token10] = ACTIONS(9044), + [aux_sym_def_type_statement_token11] = ACTIONS(9044), + [aux_sym_def_type_statement_token12] = ACTIONS(9044), + [aux_sym_def_type_statement_token13] = ACTIONS(9044), + [aux_sym_def_type_statement_token14] = ACTIONS(9044), + [aux_sym_call_statement_token1] = ACTIONS(9044), + [sym__ambiguous_call_statement] = ACTIONS(9044), + [aux_sym_addressof_expression_token1] = ACTIONS(9044), + [aux_sym_type_of_expression_token1] = ACTIONS(9044), + [aux_sym_unary_expression_token1] = ACTIONS(9044), + [sym_string_literal] = ACTIONS(9046), + [sym_number_literal] = ACTIONS(9046), + [aux_sym_boolean_literal_token1] = ACTIONS(9044), + [aux_sym_boolean_literal_token2] = ACTIONS(9044), + [sym_nothing_literal] = ACTIONS(9044), + [sym_null_literal] = ACTIONS(9044), + [sym_empty_literal] = ACTIONS(9044), + [sym_date_literal] = ACTIONS(9046), + [anon_sym_POUND] = ACTIONS(9044), + }, + [STATE(7214)] = { + [sym_identifier] = ACTIONS(9666), + [sym_newline] = ACTIONS(9668), + [anon_sym_COLON] = ACTIONS(9668), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9666), + [aux_sym_frm_property_statement_token1] = ACTIONS(9666), + [anon_sym_DOT] = ACTIONS(9666), + [anon_sym_BANG] = ACTIONS(9668), + [aux_sym__attribute_identifier_token1] = ACTIONS(9666), + [aux_sym_option_statement_token3] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9666), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9666), + [aux_sym_preprocessor_const_token1] = ACTIONS(9666), + [sym_static_modifier] = ACTIONS(9666), + [sym__dim_keyword] = ACTIONS(9666), + [sym__redim_keyword] = ACTIONS(9666), + [aux_sym_get_accessor_token1] = ACTIONS(9666), + [aux_sym_set_accessor_token1] = ACTIONS(9666), + [aux_sym_const_declaration_token1] = ACTIONS(9666), + [anon_sym_LPAREN] = ACTIONS(9668), + [aux_sym_as_type_clause_token2] = ACTIONS(9666), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9666), + [aux_sym_visibility_token1] = ACTIONS(9666), + [aux_sym_visibility_token2] = ACTIONS(9666), + [aux_sym_elseif_fragment_token1] = ACTIONS(9666), + [aux_sym_else_fragment_token1] = ACTIONS(9666), + [aux_sym_select_statement_token1] = ACTIONS(9666), + [aux_sym__for_header_token1] = ACTIONS(9666), + [aux_sym_do_statement_token1] = ACTIONS(9666), + [aux_sym_do_condition_token1] = ACTIONS(9666), + [aux_sym_with_statement_token1] = ACTIONS(9666), + [aux_sym_exit_statement_token1] = ACTIONS(9666), + [sym_end_statement] = ACTIONS(9668), + [aux_sym_on_goto_statement_token1] = ACTIONS(9666), + [aux_sym_on_goto_statement_token2] = ACTIONS(9666), + [aux_sym_on_error_statement_token2] = ACTIONS(9666), + [sym__ambiguous_redim_statement] = ACTIONS(9668), + [aux_sym_erase_statement_token1] = ACTIONS(9666), + [aux_sym_open_statement_token1] = ACTIONS(9666), + [aux_sym_file_mode_token2] = ACTIONS(9666), + [aux_sym_file_access_token2] = ACTIONS(9666), + [aux_sym_file_lock_token2] = ACTIONS(9666), + [aux_sym_print_statement_token1] = ACTIONS(9666), + [anon_sym_PLUS] = ACTIONS(9668), + [anon_sym_DASH] = ACTIONS(9666), + [anon_sym_QMARK] = ACTIONS(9668), + [aux_sym_close_statement_token1] = ACTIONS(9666), + [aux_sym_put_statement_token1] = ACTIONS(9666), + [aux_sym_unlock_statement_token1] = ACTIONS(9666), + [aux_sym_seek_statement_token1] = ACTIONS(9666), + [sym_reset_statement] = ACTIONS(9666), + [aux_sym_raise_event_statement_token1] = ACTIONS(9666), + [sym_stop_statement] = ACTIONS(9666), + [sym_beep_statement] = ACTIONS(9666), + [aux_sym_unload_statement_token1] = ACTIONS(9666), + [aux_sym_def_type_statement_token1] = ACTIONS(9666), + [aux_sym_def_type_statement_token2] = ACTIONS(9666), + [aux_sym_def_type_statement_token3] = ACTIONS(9666), + [aux_sym_def_type_statement_token4] = ACTIONS(9666), + [aux_sym_def_type_statement_token5] = ACTIONS(9666), + [aux_sym_def_type_statement_token6] = ACTIONS(9666), + [aux_sym_def_type_statement_token7] = ACTIONS(9666), + [aux_sym_def_type_statement_token8] = ACTIONS(9666), + [aux_sym_def_type_statement_token9] = ACTIONS(9666), + [aux_sym_def_type_statement_token10] = ACTIONS(9666), + [aux_sym_def_type_statement_token11] = ACTIONS(9666), + [aux_sym_def_type_statement_token12] = ACTIONS(9666), + [aux_sym_def_type_statement_token13] = ACTIONS(9666), + [aux_sym_def_type_statement_token14] = ACTIONS(9666), + [aux_sym_call_statement_token1] = ACTIONS(9666), + [sym__ambiguous_call_statement] = ACTIONS(9666), + [aux_sym_addressof_expression_token1] = ACTIONS(9666), + [aux_sym_type_of_expression_token1] = ACTIONS(9666), + [aux_sym_unary_expression_token1] = ACTIONS(9666), + [sym_string_literal] = ACTIONS(9668), + [sym_number_literal] = ACTIONS(9668), + [aux_sym_boolean_literal_token1] = ACTIONS(9666), + [aux_sym_boolean_literal_token2] = ACTIONS(9666), + [sym_nothing_literal] = ACTIONS(9666), + [sym_null_literal] = ACTIONS(9666), + [sym_empty_literal] = ACTIONS(9666), + [sym_date_literal] = ACTIONS(9668), + [anon_sym_POUND] = ACTIONS(9666), + }, + [STATE(7215)] = { + [sym_identifier] = ACTIONS(9048), + [sym_newline] = ACTIONS(9050), + [anon_sym_COLON] = ACTIONS(9050), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9048), + [aux_sym_frm_property_statement_token1] = ACTIONS(9048), + [anon_sym_DOT] = ACTIONS(9048), + [anon_sym_BANG] = ACTIONS(9050), + [aux_sym__attribute_identifier_token1] = ACTIONS(9048), + [aux_sym_option_statement_token3] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9048), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9048), + [aux_sym_preprocessor_const_token1] = ACTIONS(9048), + [sym_static_modifier] = ACTIONS(9048), + [sym__dim_keyword] = ACTIONS(9048), + [sym__redim_keyword] = ACTIONS(9048), + [aux_sym_get_accessor_token1] = ACTIONS(9048), + [aux_sym_set_accessor_token1] = ACTIONS(9048), + [aux_sym_const_declaration_token1] = ACTIONS(9048), + [anon_sym_LPAREN] = ACTIONS(9050), + [aux_sym_as_type_clause_token2] = ACTIONS(9048), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9048), + [aux_sym_visibility_token1] = ACTIONS(9048), + [aux_sym_visibility_token2] = ACTIONS(9048), + [aux_sym_elseif_fragment_token1] = ACTIONS(9048), + [aux_sym_else_fragment_token1] = ACTIONS(9048), + [aux_sym_select_statement_token1] = ACTIONS(9048), + [aux_sym__for_header_token1] = ACTIONS(9048), + [aux_sym_do_statement_token1] = ACTIONS(9048), + [aux_sym_do_condition_token1] = ACTIONS(9048), + [aux_sym_with_statement_token1] = ACTIONS(9048), + [aux_sym_exit_statement_token1] = ACTIONS(9048), + [sym_end_statement] = ACTIONS(9050), + [aux_sym_on_goto_statement_token1] = ACTIONS(9048), + [aux_sym_on_goto_statement_token2] = ACTIONS(9048), + [aux_sym_on_error_statement_token2] = ACTIONS(9048), + [sym__ambiguous_redim_statement] = ACTIONS(9050), + [aux_sym_erase_statement_token1] = ACTIONS(9048), + [aux_sym_open_statement_token1] = ACTIONS(9048), + [aux_sym_file_mode_token2] = ACTIONS(9048), + [aux_sym_file_access_token2] = ACTIONS(9048), + [aux_sym_file_lock_token2] = ACTIONS(9048), + [aux_sym_print_statement_token1] = ACTIONS(9048), + [anon_sym_PLUS] = ACTIONS(9050), + [anon_sym_DASH] = ACTIONS(9048), + [anon_sym_QMARK] = ACTIONS(9050), + [aux_sym_close_statement_token1] = ACTIONS(9048), + [aux_sym_put_statement_token1] = ACTIONS(9048), + [aux_sym_unlock_statement_token1] = ACTIONS(9048), + [aux_sym_seek_statement_token1] = ACTIONS(9048), + [sym_reset_statement] = ACTIONS(9048), + [aux_sym_raise_event_statement_token1] = ACTIONS(9048), + [sym_stop_statement] = ACTIONS(9048), + [sym_beep_statement] = ACTIONS(9048), + [aux_sym_unload_statement_token1] = ACTIONS(9048), + [aux_sym_def_type_statement_token1] = ACTIONS(9048), + [aux_sym_def_type_statement_token2] = ACTIONS(9048), + [aux_sym_def_type_statement_token3] = ACTIONS(9048), + [aux_sym_def_type_statement_token4] = ACTIONS(9048), + [aux_sym_def_type_statement_token5] = ACTIONS(9048), + [aux_sym_def_type_statement_token6] = ACTIONS(9048), + [aux_sym_def_type_statement_token7] = ACTIONS(9048), + [aux_sym_def_type_statement_token8] = ACTIONS(9048), + [aux_sym_def_type_statement_token9] = ACTIONS(9048), + [aux_sym_def_type_statement_token10] = ACTIONS(9048), + [aux_sym_def_type_statement_token11] = ACTIONS(9048), + [aux_sym_def_type_statement_token12] = ACTIONS(9048), + [aux_sym_def_type_statement_token13] = ACTIONS(9048), + [aux_sym_def_type_statement_token14] = ACTIONS(9048), + [aux_sym_call_statement_token1] = ACTIONS(9048), + [sym__ambiguous_call_statement] = ACTIONS(9048), + [aux_sym_addressof_expression_token1] = ACTIONS(9048), + [aux_sym_type_of_expression_token1] = ACTIONS(9048), + [aux_sym_unary_expression_token1] = ACTIONS(9048), + [sym_string_literal] = ACTIONS(9050), + [sym_number_literal] = ACTIONS(9050), + [aux_sym_boolean_literal_token1] = ACTIONS(9048), + [aux_sym_boolean_literal_token2] = ACTIONS(9048), + [sym_nothing_literal] = ACTIONS(9048), + [sym_null_literal] = ACTIONS(9048), + [sym_empty_literal] = ACTIONS(9048), + [sym_date_literal] = ACTIONS(9050), + [anon_sym_POUND] = ACTIONS(9048), + }, + [STATE(7216)] = { + [sym_identifier] = ACTIONS(6621), + [sym_newline] = ACTIONS(6623), + [anon_sym_COLON] = ACTIONS(6623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6621), + [aux_sym_frm_property_statement_token1] = ACTIONS(6621), + [anon_sym_DOT] = ACTIONS(6621), + [anon_sym_BANG] = ACTIONS(6623), + [aux_sym__attribute_identifier_token1] = ACTIONS(6621), + [aux_sym_option_statement_token3] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6621), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6621), + [aux_sym_preprocessor_const_token1] = ACTIONS(6621), + [sym_static_modifier] = ACTIONS(6621), + [sym__dim_keyword] = ACTIONS(6621), + [sym__redim_keyword] = ACTIONS(6621), + [aux_sym_get_accessor_token1] = ACTIONS(6621), + [aux_sym_set_accessor_token1] = ACTIONS(6621), + [aux_sym_const_declaration_token1] = ACTIONS(6621), + [anon_sym_LPAREN] = ACTIONS(6623), + [aux_sym_as_type_clause_token2] = ACTIONS(6621), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6621), + [aux_sym_visibility_token1] = ACTIONS(6621), + [aux_sym_visibility_token2] = ACTIONS(6621), + [aux_sym_elseif_fragment_token1] = ACTIONS(6621), + [aux_sym_else_fragment_token1] = ACTIONS(6621), + [aux_sym_select_statement_token1] = ACTIONS(6621), + [aux_sym__for_header_token1] = ACTIONS(6621), + [aux_sym_do_statement_token1] = ACTIONS(6621), + [aux_sym_do_condition_token1] = ACTIONS(6621), + [aux_sym_with_statement_token1] = ACTIONS(6621), + [aux_sym_exit_statement_token1] = ACTIONS(6621), + [sym_end_statement] = ACTIONS(6623), + [aux_sym_on_goto_statement_token1] = ACTIONS(6621), + [aux_sym_on_goto_statement_token2] = ACTIONS(6621), + [aux_sym_on_error_statement_token2] = ACTIONS(6621), + [sym__ambiguous_redim_statement] = ACTIONS(6623), + [aux_sym_erase_statement_token1] = ACTIONS(6621), + [aux_sym_open_statement_token1] = ACTIONS(6621), + [aux_sym_file_mode_token2] = ACTIONS(6621), + [aux_sym_file_access_token2] = ACTIONS(6621), + [aux_sym_file_lock_token2] = ACTIONS(6621), + [aux_sym_print_statement_token1] = ACTIONS(6621), + [anon_sym_PLUS] = ACTIONS(6623), + [anon_sym_DASH] = ACTIONS(6621), + [anon_sym_QMARK] = ACTIONS(6623), + [aux_sym_close_statement_token1] = ACTIONS(6621), + [aux_sym_put_statement_token1] = ACTIONS(6621), + [aux_sym_unlock_statement_token1] = ACTIONS(6621), + [aux_sym_seek_statement_token1] = ACTIONS(6621), + [sym_reset_statement] = ACTIONS(6621), + [aux_sym_raise_event_statement_token1] = ACTIONS(6621), + [sym_stop_statement] = ACTIONS(6621), + [sym_beep_statement] = ACTIONS(6621), + [aux_sym_unload_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token1] = ACTIONS(6621), + [aux_sym_def_type_statement_token2] = ACTIONS(6621), + [aux_sym_def_type_statement_token3] = ACTIONS(6621), + [aux_sym_def_type_statement_token4] = ACTIONS(6621), + [aux_sym_def_type_statement_token5] = ACTIONS(6621), + [aux_sym_def_type_statement_token6] = ACTIONS(6621), + [aux_sym_def_type_statement_token7] = ACTIONS(6621), + [aux_sym_def_type_statement_token8] = ACTIONS(6621), + [aux_sym_def_type_statement_token9] = ACTIONS(6621), + [aux_sym_def_type_statement_token10] = ACTIONS(6621), + [aux_sym_def_type_statement_token11] = ACTIONS(6621), + [aux_sym_def_type_statement_token12] = ACTIONS(6621), + [aux_sym_def_type_statement_token13] = ACTIONS(6621), + [aux_sym_def_type_statement_token14] = ACTIONS(6621), + [aux_sym_call_statement_token1] = ACTIONS(6621), + [sym__ambiguous_call_statement] = ACTIONS(6621), + [aux_sym_addressof_expression_token1] = ACTIONS(6621), + [aux_sym_type_of_expression_token1] = ACTIONS(6621), + [aux_sym_unary_expression_token1] = ACTIONS(6621), + [sym_string_literal] = ACTIONS(6623), + [sym_number_literal] = ACTIONS(6623), + [aux_sym_boolean_literal_token1] = ACTIONS(6621), + [aux_sym_boolean_literal_token2] = ACTIONS(6621), + [sym_nothing_literal] = ACTIONS(6621), + [sym_null_literal] = ACTIONS(6621), + [sym_empty_literal] = ACTIONS(6621), + [sym_date_literal] = ACTIONS(6623), + [anon_sym_POUND] = ACTIONS(6621), + }, + [STATE(7217)] = { + [sym_identifier] = ACTIONS(8988), + [sym_newline] = ACTIONS(8990), + [anon_sym_COLON] = ACTIONS(8990), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8988), + [aux_sym_frm_property_statement_token1] = ACTIONS(8988), + [anon_sym_DOT] = ACTIONS(8988), + [anon_sym_BANG] = ACTIONS(8990), + [aux_sym__attribute_identifier_token1] = ACTIONS(8988), + [aux_sym_option_statement_token3] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8988), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8988), + [aux_sym_preprocessor_const_token1] = ACTIONS(8988), + [sym_static_modifier] = ACTIONS(8988), + [sym__dim_keyword] = ACTIONS(8988), + [sym__redim_keyword] = ACTIONS(8988), + [aux_sym_get_accessor_token1] = ACTIONS(8988), + [aux_sym_set_accessor_token1] = ACTIONS(8988), + [aux_sym_const_declaration_token1] = ACTIONS(8988), + [anon_sym_LPAREN] = ACTIONS(8990), + [aux_sym_as_type_clause_token2] = ACTIONS(8988), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8988), + [aux_sym_visibility_token1] = ACTIONS(8988), + [aux_sym_visibility_token2] = ACTIONS(8988), + [aux_sym_elseif_fragment_token1] = ACTIONS(8988), + [aux_sym_else_fragment_token1] = ACTIONS(8988), + [aux_sym_select_statement_token1] = ACTIONS(8988), + [aux_sym__for_header_token1] = ACTIONS(8988), + [aux_sym_do_statement_token1] = ACTIONS(8988), + [aux_sym_do_condition_token1] = ACTIONS(8988), + [aux_sym_with_statement_token1] = ACTIONS(8988), + [aux_sym_exit_statement_token1] = ACTIONS(8988), + [sym_end_statement] = ACTIONS(8990), + [aux_sym_on_goto_statement_token1] = ACTIONS(8988), + [aux_sym_on_goto_statement_token2] = ACTIONS(8988), + [aux_sym_on_error_statement_token2] = ACTIONS(8988), + [sym__ambiguous_redim_statement] = ACTIONS(8990), + [aux_sym_erase_statement_token1] = ACTIONS(8988), + [aux_sym_open_statement_token1] = ACTIONS(8988), + [aux_sym_file_mode_token2] = ACTIONS(8988), + [aux_sym_file_access_token2] = ACTIONS(8988), + [aux_sym_file_lock_token2] = ACTIONS(8988), + [aux_sym_print_statement_token1] = ACTIONS(8988), + [anon_sym_PLUS] = ACTIONS(8990), + [anon_sym_DASH] = ACTIONS(8988), + [anon_sym_QMARK] = ACTIONS(8990), + [aux_sym_close_statement_token1] = ACTIONS(8988), + [aux_sym_put_statement_token1] = ACTIONS(8988), + [aux_sym_unlock_statement_token1] = ACTIONS(8988), + [aux_sym_seek_statement_token1] = ACTIONS(8988), + [sym_reset_statement] = ACTIONS(8988), + [aux_sym_raise_event_statement_token1] = ACTIONS(8988), + [sym_stop_statement] = ACTIONS(8988), + [sym_beep_statement] = ACTIONS(8988), + [aux_sym_unload_statement_token1] = ACTIONS(8988), + [aux_sym_def_type_statement_token1] = ACTIONS(8988), + [aux_sym_def_type_statement_token2] = ACTIONS(8988), + [aux_sym_def_type_statement_token3] = ACTIONS(8988), + [aux_sym_def_type_statement_token4] = ACTIONS(8988), + [aux_sym_def_type_statement_token5] = ACTIONS(8988), + [aux_sym_def_type_statement_token6] = ACTIONS(8988), + [aux_sym_def_type_statement_token7] = ACTIONS(8988), + [aux_sym_def_type_statement_token8] = ACTIONS(8988), + [aux_sym_def_type_statement_token9] = ACTIONS(8988), + [aux_sym_def_type_statement_token10] = ACTIONS(8988), + [aux_sym_def_type_statement_token11] = ACTIONS(8988), + [aux_sym_def_type_statement_token12] = ACTIONS(8988), + [aux_sym_def_type_statement_token13] = ACTIONS(8988), + [aux_sym_def_type_statement_token14] = ACTIONS(8988), + [aux_sym_call_statement_token1] = ACTIONS(8988), + [sym__ambiguous_call_statement] = ACTIONS(8988), + [aux_sym_addressof_expression_token1] = ACTIONS(8988), + [aux_sym_type_of_expression_token1] = ACTIONS(8988), + [aux_sym_unary_expression_token1] = ACTIONS(8988), + [sym_string_literal] = ACTIONS(8990), + [sym_number_literal] = ACTIONS(8990), + [aux_sym_boolean_literal_token1] = ACTIONS(8988), + [aux_sym_boolean_literal_token2] = ACTIONS(8988), + [sym_nothing_literal] = ACTIONS(8988), + [sym_null_literal] = ACTIONS(8988), + [sym_empty_literal] = ACTIONS(8988), + [sym_date_literal] = ACTIONS(8990), + [anon_sym_POUND] = ACTIONS(8988), + }, + [STATE(7218)] = { + [sym_identifier] = ACTIONS(9146), + [sym_newline] = ACTIONS(9148), + [anon_sym_COLON] = ACTIONS(9148), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9146), + [aux_sym_frm_property_statement_token1] = ACTIONS(9146), + [anon_sym_DOT] = ACTIONS(9146), + [anon_sym_BANG] = ACTIONS(9148), + [aux_sym__attribute_identifier_token1] = ACTIONS(9146), + [aux_sym_option_statement_token3] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9146), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9146), + [aux_sym_preprocessor_const_token1] = ACTIONS(9146), + [sym_static_modifier] = ACTIONS(9146), + [sym__dim_keyword] = ACTIONS(9146), + [sym__redim_keyword] = ACTIONS(9146), + [aux_sym_get_accessor_token1] = ACTIONS(9146), + [aux_sym_set_accessor_token1] = ACTIONS(9146), + [aux_sym_const_declaration_token1] = ACTIONS(9146), + [anon_sym_LPAREN] = ACTIONS(9148), + [aux_sym_as_type_clause_token2] = ACTIONS(9146), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9146), + [aux_sym_visibility_token1] = ACTIONS(9146), + [aux_sym_visibility_token2] = ACTIONS(9146), + [aux_sym_elseif_fragment_token1] = ACTIONS(9146), + [aux_sym_else_fragment_token1] = ACTIONS(9146), + [aux_sym_select_statement_token1] = ACTIONS(9146), + [aux_sym__for_header_token1] = ACTIONS(9146), + [aux_sym_do_statement_token1] = ACTIONS(9146), + [aux_sym_do_condition_token1] = ACTIONS(9146), + [aux_sym_with_statement_token1] = ACTIONS(9146), + [aux_sym_exit_statement_token1] = ACTIONS(9146), + [sym_end_statement] = ACTIONS(9148), + [aux_sym_on_goto_statement_token1] = ACTIONS(9146), + [aux_sym_on_goto_statement_token2] = ACTIONS(9146), + [aux_sym_on_error_statement_token2] = ACTIONS(9146), + [sym__ambiguous_redim_statement] = ACTIONS(9148), + [aux_sym_erase_statement_token1] = ACTIONS(9146), + [aux_sym_open_statement_token1] = ACTIONS(9146), + [aux_sym_file_mode_token2] = ACTIONS(9146), + [aux_sym_file_access_token2] = ACTIONS(9146), + [aux_sym_file_lock_token2] = ACTIONS(9146), + [aux_sym_print_statement_token1] = ACTIONS(9146), + [anon_sym_PLUS] = ACTIONS(9148), + [anon_sym_DASH] = ACTIONS(9146), + [anon_sym_QMARK] = ACTIONS(9148), + [aux_sym_close_statement_token1] = ACTIONS(9146), + [aux_sym_put_statement_token1] = ACTIONS(9146), + [aux_sym_unlock_statement_token1] = ACTIONS(9146), + [aux_sym_seek_statement_token1] = ACTIONS(9146), + [sym_reset_statement] = ACTIONS(9146), + [aux_sym_raise_event_statement_token1] = ACTIONS(9146), + [sym_stop_statement] = ACTIONS(9146), + [sym_beep_statement] = ACTIONS(9146), + [aux_sym_unload_statement_token1] = ACTIONS(9146), + [aux_sym_def_type_statement_token1] = ACTIONS(9146), + [aux_sym_def_type_statement_token2] = ACTIONS(9146), + [aux_sym_def_type_statement_token3] = ACTIONS(9146), + [aux_sym_def_type_statement_token4] = ACTIONS(9146), + [aux_sym_def_type_statement_token5] = ACTIONS(9146), + [aux_sym_def_type_statement_token6] = ACTIONS(9146), + [aux_sym_def_type_statement_token7] = ACTIONS(9146), + [aux_sym_def_type_statement_token8] = ACTIONS(9146), + [aux_sym_def_type_statement_token9] = ACTIONS(9146), + [aux_sym_def_type_statement_token10] = ACTIONS(9146), + [aux_sym_def_type_statement_token11] = ACTIONS(9146), + [aux_sym_def_type_statement_token12] = ACTIONS(9146), + [aux_sym_def_type_statement_token13] = ACTIONS(9146), + [aux_sym_def_type_statement_token14] = ACTIONS(9146), + [aux_sym_call_statement_token1] = ACTIONS(9146), + [sym__ambiguous_call_statement] = ACTIONS(9146), + [aux_sym_addressof_expression_token1] = ACTIONS(9146), + [aux_sym_type_of_expression_token1] = ACTIONS(9146), + [aux_sym_unary_expression_token1] = ACTIONS(9146), + [sym_string_literal] = ACTIONS(9148), + [sym_number_literal] = ACTIONS(9148), + [aux_sym_boolean_literal_token1] = ACTIONS(9146), + [aux_sym_boolean_literal_token2] = ACTIONS(9146), + [sym_nothing_literal] = ACTIONS(9146), + [sym_null_literal] = ACTIONS(9146), + [sym_empty_literal] = ACTIONS(9146), + [sym_date_literal] = ACTIONS(9148), + [anon_sym_POUND] = ACTIONS(9146), + }, + [STATE(7219)] = { + [sym_identifier] = ACTIONS(8702), + [sym_newline] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(8704), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8702), + [aux_sym_frm_property_statement_token1] = ACTIONS(8702), + [anon_sym_DOT] = ACTIONS(8702), + [anon_sym_BANG] = ACTIONS(8704), + [aux_sym__attribute_identifier_token1] = ACTIONS(8702), + [aux_sym_option_statement_token3] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8702), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8702), + [aux_sym_preprocessor_const_token1] = ACTIONS(8702), + [sym_static_modifier] = ACTIONS(8702), + [sym__dim_keyword] = ACTIONS(8702), + [sym__redim_keyword] = ACTIONS(8702), + [aux_sym_get_accessor_token1] = ACTIONS(8702), + [aux_sym_set_accessor_token1] = ACTIONS(8702), + [aux_sym_const_declaration_token1] = ACTIONS(8702), + [anon_sym_LPAREN] = ACTIONS(8704), + [aux_sym_as_type_clause_token2] = ACTIONS(8702), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8702), + [aux_sym_visibility_token1] = ACTIONS(8702), + [aux_sym_visibility_token2] = ACTIONS(8702), + [aux_sym_elseif_fragment_token1] = ACTIONS(8702), + [aux_sym_else_fragment_token1] = ACTIONS(8702), + [aux_sym_select_statement_token1] = ACTIONS(8702), + [aux_sym__for_header_token1] = ACTIONS(8702), + [aux_sym_do_statement_token1] = ACTIONS(8702), + [aux_sym_do_condition_token1] = ACTIONS(8702), + [aux_sym_with_statement_token1] = ACTIONS(8702), + [aux_sym_exit_statement_token1] = ACTIONS(8702), + [sym_end_statement] = ACTIONS(8704), + [aux_sym_on_goto_statement_token1] = ACTIONS(8702), + [aux_sym_on_goto_statement_token2] = ACTIONS(8702), + [aux_sym_on_error_statement_token2] = ACTIONS(8702), + [sym__ambiguous_redim_statement] = ACTIONS(8704), + [aux_sym_erase_statement_token1] = ACTIONS(8702), + [aux_sym_open_statement_token1] = ACTIONS(8702), + [aux_sym_file_mode_token2] = ACTIONS(8702), + [aux_sym_file_access_token2] = ACTIONS(8702), + [aux_sym_file_lock_token2] = ACTIONS(8702), + [aux_sym_print_statement_token1] = ACTIONS(8702), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_DASH] = ACTIONS(8702), + [anon_sym_QMARK] = ACTIONS(8704), + [aux_sym_close_statement_token1] = ACTIONS(8702), + [aux_sym_put_statement_token1] = ACTIONS(8702), + [aux_sym_unlock_statement_token1] = ACTIONS(8702), + [aux_sym_seek_statement_token1] = ACTIONS(8702), + [sym_reset_statement] = ACTIONS(8702), + [aux_sym_raise_event_statement_token1] = ACTIONS(8702), + [sym_stop_statement] = ACTIONS(8702), + [sym_beep_statement] = ACTIONS(8702), + [aux_sym_unload_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token1] = ACTIONS(8702), + [aux_sym_def_type_statement_token2] = ACTIONS(8702), + [aux_sym_def_type_statement_token3] = ACTIONS(8702), + [aux_sym_def_type_statement_token4] = ACTIONS(8702), + [aux_sym_def_type_statement_token5] = ACTIONS(8702), + [aux_sym_def_type_statement_token6] = ACTIONS(8702), + [aux_sym_def_type_statement_token7] = ACTIONS(8702), + [aux_sym_def_type_statement_token8] = ACTIONS(8702), + [aux_sym_def_type_statement_token9] = ACTIONS(8702), + [aux_sym_def_type_statement_token10] = ACTIONS(8702), + [aux_sym_def_type_statement_token11] = ACTIONS(8702), + [aux_sym_def_type_statement_token12] = ACTIONS(8702), + [aux_sym_def_type_statement_token13] = ACTIONS(8702), + [aux_sym_def_type_statement_token14] = ACTIONS(8702), + [aux_sym_call_statement_token1] = ACTIONS(8702), + [sym__ambiguous_call_statement] = ACTIONS(8702), + [aux_sym_addressof_expression_token1] = ACTIONS(8702), + [aux_sym_type_of_expression_token1] = ACTIONS(8702), + [aux_sym_unary_expression_token1] = ACTIONS(8702), + [sym_string_literal] = ACTIONS(8704), + [sym_number_literal] = ACTIONS(8704), + [aux_sym_boolean_literal_token1] = ACTIONS(8702), + [aux_sym_boolean_literal_token2] = ACTIONS(8702), + [sym_nothing_literal] = ACTIONS(8702), + [sym_null_literal] = ACTIONS(8702), + [sym_empty_literal] = ACTIONS(8702), + [sym_date_literal] = ACTIONS(8704), + [anon_sym_POUND] = ACTIONS(8702), + }, + [STATE(7220)] = { + [sym_identifier] = ACTIONS(8986), + [sym_newline] = ACTIONS(9032), + [anon_sym_COLON] = ACTIONS(9032), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8986), + [aux_sym_frm_property_statement_token1] = ACTIONS(8986), + [anon_sym_DOT] = ACTIONS(8986), + [anon_sym_BANG] = ACTIONS(9032), + [aux_sym__attribute_identifier_token1] = ACTIONS(8986), + [aux_sym_option_statement_token3] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8986), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8986), + [aux_sym_preprocessor_const_token1] = ACTIONS(8986), + [sym_static_modifier] = ACTIONS(8986), + [sym__dim_keyword] = ACTIONS(8986), + [sym__redim_keyword] = ACTIONS(8986), + [aux_sym_get_accessor_token1] = ACTIONS(8986), + [aux_sym_set_accessor_token1] = ACTIONS(8986), + [aux_sym_const_declaration_token1] = ACTIONS(8986), + [anon_sym_LPAREN] = ACTIONS(9032), + [aux_sym_as_type_clause_token2] = ACTIONS(8986), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8986), + [aux_sym_visibility_token1] = ACTIONS(8986), + [aux_sym_visibility_token2] = ACTIONS(8986), + [aux_sym_elseif_fragment_token1] = ACTIONS(8986), + [aux_sym_else_fragment_token1] = ACTIONS(8986), + [aux_sym_select_statement_token1] = ACTIONS(8986), + [aux_sym__for_header_token1] = ACTIONS(8986), + [aux_sym_do_statement_token1] = ACTIONS(8986), + [aux_sym_do_condition_token1] = ACTIONS(8986), + [aux_sym_with_statement_token1] = ACTIONS(8986), + [aux_sym_exit_statement_token1] = ACTIONS(8986), + [sym_end_statement] = ACTIONS(9032), + [aux_sym_on_goto_statement_token1] = ACTIONS(8986), + [aux_sym_on_goto_statement_token2] = ACTIONS(8986), + [aux_sym_on_error_statement_token2] = ACTIONS(8986), + [sym__ambiguous_redim_statement] = ACTIONS(9032), + [aux_sym_erase_statement_token1] = ACTIONS(8986), + [aux_sym_open_statement_token1] = ACTIONS(8986), + [aux_sym_file_mode_token2] = ACTIONS(8986), + [aux_sym_file_access_token2] = ACTIONS(8986), + [aux_sym_file_lock_token2] = ACTIONS(8986), + [aux_sym_print_statement_token1] = ACTIONS(8986), + [anon_sym_PLUS] = ACTIONS(9032), + [anon_sym_DASH] = ACTIONS(8986), + [anon_sym_QMARK] = ACTIONS(9032), + [aux_sym_close_statement_token1] = ACTIONS(8986), + [aux_sym_put_statement_token1] = ACTIONS(8986), + [aux_sym_unlock_statement_token1] = ACTIONS(8986), + [aux_sym_seek_statement_token1] = ACTIONS(8986), + [sym_reset_statement] = ACTIONS(8986), + [aux_sym_raise_event_statement_token1] = ACTIONS(8986), + [sym_stop_statement] = ACTIONS(8986), + [sym_beep_statement] = ACTIONS(8986), + [aux_sym_unload_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token1] = ACTIONS(8986), + [aux_sym_def_type_statement_token2] = ACTIONS(8986), + [aux_sym_def_type_statement_token3] = ACTIONS(8986), + [aux_sym_def_type_statement_token4] = ACTIONS(8986), + [aux_sym_def_type_statement_token5] = ACTIONS(8986), + [aux_sym_def_type_statement_token6] = ACTIONS(8986), + [aux_sym_def_type_statement_token7] = ACTIONS(8986), + [aux_sym_def_type_statement_token8] = ACTIONS(8986), + [aux_sym_def_type_statement_token9] = ACTIONS(8986), + [aux_sym_def_type_statement_token10] = ACTIONS(8986), + [aux_sym_def_type_statement_token11] = ACTIONS(8986), + [aux_sym_def_type_statement_token12] = ACTIONS(8986), + [aux_sym_def_type_statement_token13] = ACTIONS(8986), + [aux_sym_def_type_statement_token14] = ACTIONS(8986), + [aux_sym_call_statement_token1] = ACTIONS(8986), + [sym__ambiguous_call_statement] = ACTIONS(8986), + [aux_sym_addressof_expression_token1] = ACTIONS(8986), + [aux_sym_type_of_expression_token1] = ACTIONS(8986), + [aux_sym_unary_expression_token1] = ACTIONS(8986), + [sym_string_literal] = ACTIONS(9032), + [sym_number_literal] = ACTIONS(9032), + [aux_sym_boolean_literal_token1] = ACTIONS(8986), + [aux_sym_boolean_literal_token2] = ACTIONS(8986), + [sym_nothing_literal] = ACTIONS(8986), + [sym_null_literal] = ACTIONS(8986), + [sym_empty_literal] = ACTIONS(8986), + [sym_date_literal] = ACTIONS(9032), + [anon_sym_POUND] = ACTIONS(8986), + }, + [STATE(7221)] = { + [sym_identifier] = ACTIONS(9150), + [sym_newline] = ACTIONS(9152), + [anon_sym_COLON] = ACTIONS(9152), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9154), + [aux_sym_frm_property_statement_token1] = ACTIONS(9150), + [anon_sym_DOT] = ACTIONS(9150), + [anon_sym_BANG] = ACTIONS(9152), + [aux_sym__attribute_identifier_token1] = ACTIONS(9150), + [aux_sym_option_statement_token3] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9150), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9154), + [aux_sym_preprocessor_const_token1] = ACTIONS(9150), + [sym_static_modifier] = ACTIONS(9150), + [sym__dim_keyword] = ACTIONS(9150), + [sym__redim_keyword] = ACTIONS(9150), + [aux_sym_get_accessor_token1] = ACTIONS(9150), + [aux_sym_set_accessor_token1] = ACTIONS(9150), + [aux_sym_const_declaration_token1] = ACTIONS(9150), + [anon_sym_LPAREN] = ACTIONS(9152), + [aux_sym_as_type_clause_token2] = ACTIONS(9150), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9150), + [aux_sym_visibility_token1] = ACTIONS(9150), + [aux_sym_visibility_token2] = ACTIONS(9150), + [aux_sym_elseif_fragment_token1] = ACTIONS(9154), + [aux_sym_else_fragment_token1] = ACTIONS(9154), + [aux_sym_select_statement_token1] = ACTIONS(9154), + [aux_sym__for_header_token1] = ACTIONS(9154), + [aux_sym_do_statement_token1] = ACTIONS(9154), + [aux_sym_do_condition_token1] = ACTIONS(9154), + [aux_sym_with_statement_token1] = ACTIONS(9154), + [aux_sym_exit_statement_token1] = ACTIONS(9150), + [sym_end_statement] = ACTIONS(9152), + [aux_sym_on_goto_statement_token1] = ACTIONS(9150), + [aux_sym_on_goto_statement_token2] = ACTIONS(9150), + [aux_sym_on_error_statement_token2] = ACTIONS(9150), + [sym__ambiguous_redim_statement] = ACTIONS(9152), + [aux_sym_erase_statement_token1] = ACTIONS(9150), + [aux_sym_open_statement_token1] = ACTIONS(9150), + [aux_sym_file_mode_token2] = ACTIONS(9150), + [aux_sym_file_access_token2] = ACTIONS(9150), + [aux_sym_file_lock_token2] = ACTIONS(9150), + [aux_sym_print_statement_token1] = ACTIONS(9150), + [anon_sym_PLUS] = ACTIONS(9152), + [anon_sym_DASH] = ACTIONS(9150), + [anon_sym_QMARK] = ACTIONS(9152), + [aux_sym_close_statement_token1] = ACTIONS(9150), + [aux_sym_put_statement_token1] = ACTIONS(9150), + [aux_sym_unlock_statement_token1] = ACTIONS(9150), + [aux_sym_seek_statement_token1] = ACTIONS(9150), + [sym_reset_statement] = ACTIONS(9150), + [aux_sym_raise_event_statement_token1] = ACTIONS(9150), + [sym_stop_statement] = ACTIONS(9150), + [sym_beep_statement] = ACTIONS(9150), + [aux_sym_unload_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token1] = ACTIONS(9150), + [aux_sym_def_type_statement_token2] = ACTIONS(9150), + [aux_sym_def_type_statement_token3] = ACTIONS(9150), + [aux_sym_def_type_statement_token4] = ACTIONS(9150), + [aux_sym_def_type_statement_token5] = ACTIONS(9150), + [aux_sym_def_type_statement_token6] = ACTIONS(9150), + [aux_sym_def_type_statement_token7] = ACTIONS(9150), + [aux_sym_def_type_statement_token8] = ACTIONS(9150), + [aux_sym_def_type_statement_token9] = ACTIONS(9150), + [aux_sym_def_type_statement_token10] = ACTIONS(9150), + [aux_sym_def_type_statement_token11] = ACTIONS(9150), + [aux_sym_def_type_statement_token12] = ACTIONS(9150), + [aux_sym_def_type_statement_token13] = ACTIONS(9150), + [aux_sym_def_type_statement_token14] = ACTIONS(9150), + [aux_sym_call_statement_token1] = ACTIONS(9150), + [sym__ambiguous_call_statement] = ACTIONS(9150), + [aux_sym_addressof_expression_token1] = ACTIONS(9150), + [aux_sym_type_of_expression_token1] = ACTIONS(9150), + [aux_sym_unary_expression_token1] = ACTIONS(9150), + [sym_string_literal] = ACTIONS(9152), + [sym_number_literal] = ACTIONS(9152), + [aux_sym_boolean_literal_token1] = ACTIONS(9150), + [aux_sym_boolean_literal_token2] = ACTIONS(9150), + [sym_nothing_literal] = ACTIONS(9150), + [sym_null_literal] = ACTIONS(9150), + [sym_empty_literal] = ACTIONS(9150), + [sym_date_literal] = ACTIONS(9152), + [anon_sym_POUND] = ACTIONS(9150), + }, + [STATE(7222)] = { + [sym_identifier] = ACTIONS(8992), + [sym_newline] = ACTIONS(8994), + [anon_sym_COLON] = ACTIONS(8994), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8992), + [aux_sym_frm_property_statement_token1] = ACTIONS(8992), + [anon_sym_DOT] = ACTIONS(8992), + [anon_sym_BANG] = ACTIONS(8994), + [aux_sym__attribute_identifier_token1] = ACTIONS(8992), + [aux_sym_option_statement_token3] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8992), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8992), + [aux_sym_preprocessor_const_token1] = ACTIONS(8992), + [sym_static_modifier] = ACTIONS(8992), + [sym__dim_keyword] = ACTIONS(8992), + [sym__redim_keyword] = ACTIONS(8992), + [aux_sym_get_accessor_token1] = ACTIONS(8992), + [aux_sym_set_accessor_token1] = ACTIONS(8992), + [aux_sym_const_declaration_token1] = ACTIONS(8992), + [anon_sym_LPAREN] = ACTIONS(8994), + [aux_sym_as_type_clause_token2] = ACTIONS(8992), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8992), + [aux_sym_visibility_token1] = ACTIONS(8992), + [aux_sym_visibility_token2] = ACTIONS(8992), + [aux_sym_elseif_fragment_token1] = ACTIONS(8992), + [aux_sym_else_fragment_token1] = ACTIONS(8992), + [aux_sym_select_statement_token1] = ACTIONS(8992), + [aux_sym__for_header_token1] = ACTIONS(8992), + [aux_sym_do_statement_token1] = ACTIONS(8992), + [aux_sym_do_condition_token1] = ACTIONS(8992), + [aux_sym_with_statement_token1] = ACTIONS(8992), + [aux_sym_exit_statement_token1] = ACTIONS(8992), + [sym_end_statement] = ACTIONS(8994), + [aux_sym_on_goto_statement_token1] = ACTIONS(8992), + [aux_sym_on_goto_statement_token2] = ACTIONS(8992), + [aux_sym_on_error_statement_token2] = ACTIONS(8992), + [sym__ambiguous_redim_statement] = ACTIONS(8994), + [aux_sym_erase_statement_token1] = ACTIONS(8992), + [aux_sym_open_statement_token1] = ACTIONS(8992), + [aux_sym_file_mode_token2] = ACTIONS(8992), + [aux_sym_file_access_token2] = ACTIONS(8992), + [aux_sym_file_lock_token2] = ACTIONS(8992), + [aux_sym_print_statement_token1] = ACTIONS(8992), + [anon_sym_PLUS] = ACTIONS(8994), + [anon_sym_DASH] = ACTIONS(8992), + [anon_sym_QMARK] = ACTIONS(8994), + [aux_sym_close_statement_token1] = ACTIONS(8992), + [aux_sym_put_statement_token1] = ACTIONS(8992), + [aux_sym_unlock_statement_token1] = ACTIONS(8992), + [aux_sym_seek_statement_token1] = ACTIONS(8992), + [sym_reset_statement] = ACTIONS(8992), + [aux_sym_raise_event_statement_token1] = ACTIONS(8992), + [sym_stop_statement] = ACTIONS(8992), + [sym_beep_statement] = ACTIONS(8992), + [aux_sym_unload_statement_token1] = ACTIONS(8992), + [aux_sym_def_type_statement_token1] = ACTIONS(8992), + [aux_sym_def_type_statement_token2] = ACTIONS(8992), + [aux_sym_def_type_statement_token3] = ACTIONS(8992), + [aux_sym_def_type_statement_token4] = ACTIONS(8992), + [aux_sym_def_type_statement_token5] = ACTIONS(8992), + [aux_sym_def_type_statement_token6] = ACTIONS(8992), + [aux_sym_def_type_statement_token7] = ACTIONS(8992), + [aux_sym_def_type_statement_token8] = ACTIONS(8992), + [aux_sym_def_type_statement_token9] = ACTIONS(8992), + [aux_sym_def_type_statement_token10] = ACTIONS(8992), + [aux_sym_def_type_statement_token11] = ACTIONS(8992), + [aux_sym_def_type_statement_token12] = ACTIONS(8992), + [aux_sym_def_type_statement_token13] = ACTIONS(8992), + [aux_sym_def_type_statement_token14] = ACTIONS(8992), + [aux_sym_call_statement_token1] = ACTIONS(8992), + [sym__ambiguous_call_statement] = ACTIONS(8992), + [aux_sym_addressof_expression_token1] = ACTIONS(8992), + [aux_sym_type_of_expression_token1] = ACTIONS(8992), + [aux_sym_unary_expression_token1] = ACTIONS(8992), + [sym_string_literal] = ACTIONS(8994), + [sym_number_literal] = ACTIONS(8994), + [aux_sym_boolean_literal_token1] = ACTIONS(8992), + [aux_sym_boolean_literal_token2] = ACTIONS(8992), + [sym_nothing_literal] = ACTIONS(8992), + [sym_null_literal] = ACTIONS(8992), + [sym_empty_literal] = ACTIONS(8992), + [sym_date_literal] = ACTIONS(8994), + [anon_sym_POUND] = ACTIONS(8992), + }, + [STATE(7223)] = { + [sym_identifier] = ACTIONS(9670), + [sym_newline] = ACTIONS(9672), + [anon_sym_COLON] = ACTIONS(9672), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9670), + [aux_sym_frm_property_statement_token1] = ACTIONS(9670), + [anon_sym_DOT] = ACTIONS(9670), + [anon_sym_BANG] = ACTIONS(9672), + [aux_sym__attribute_identifier_token1] = ACTIONS(9670), + [aux_sym_option_statement_token3] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9670), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9670), + [aux_sym_preprocessor_const_token1] = ACTIONS(9670), + [sym_static_modifier] = ACTIONS(9670), + [sym__dim_keyword] = ACTIONS(9670), + [sym__redim_keyword] = ACTIONS(9670), + [aux_sym_get_accessor_token1] = ACTIONS(9670), + [aux_sym_set_accessor_token1] = ACTIONS(9670), + [aux_sym_const_declaration_token1] = ACTIONS(9670), + [anon_sym_LPAREN] = ACTIONS(9672), + [aux_sym_as_type_clause_token2] = ACTIONS(9670), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9670), + [aux_sym_visibility_token1] = ACTIONS(9670), + [aux_sym_visibility_token2] = ACTIONS(9670), + [aux_sym_elseif_fragment_token1] = ACTIONS(9670), + [aux_sym_else_fragment_token1] = ACTIONS(9670), + [aux_sym_select_statement_token1] = ACTIONS(9670), + [aux_sym__for_header_token1] = ACTIONS(9670), + [aux_sym_do_statement_token1] = ACTIONS(9670), + [aux_sym_do_condition_token1] = ACTIONS(9670), + [aux_sym_with_statement_token1] = ACTIONS(9670), + [aux_sym_exit_statement_token1] = ACTIONS(9670), + [sym_end_statement] = ACTIONS(9672), + [aux_sym_on_goto_statement_token1] = ACTIONS(9670), + [aux_sym_on_goto_statement_token2] = ACTIONS(9670), + [aux_sym_on_error_statement_token2] = ACTIONS(9670), + [sym__ambiguous_redim_statement] = ACTIONS(9672), + [aux_sym_erase_statement_token1] = ACTIONS(9670), + [aux_sym_open_statement_token1] = ACTIONS(9670), + [aux_sym_file_mode_token2] = ACTIONS(9670), + [aux_sym_file_access_token2] = ACTIONS(9670), + [aux_sym_file_lock_token2] = ACTIONS(9670), + [aux_sym_print_statement_token1] = ACTIONS(9670), + [anon_sym_PLUS] = ACTIONS(9672), + [anon_sym_DASH] = ACTIONS(9670), + [anon_sym_QMARK] = ACTIONS(9672), + [aux_sym_close_statement_token1] = ACTIONS(9670), + [aux_sym_put_statement_token1] = ACTIONS(9670), + [aux_sym_unlock_statement_token1] = ACTIONS(9670), + [aux_sym_seek_statement_token1] = ACTIONS(9670), + [sym_reset_statement] = ACTIONS(9670), + [aux_sym_raise_event_statement_token1] = ACTIONS(9670), + [sym_stop_statement] = ACTIONS(9670), + [sym_beep_statement] = ACTIONS(9670), + [aux_sym_unload_statement_token1] = ACTIONS(9670), + [aux_sym_def_type_statement_token1] = ACTIONS(9670), + [aux_sym_def_type_statement_token2] = ACTIONS(9670), + [aux_sym_def_type_statement_token3] = ACTIONS(9670), + [aux_sym_def_type_statement_token4] = ACTIONS(9670), + [aux_sym_def_type_statement_token5] = ACTIONS(9670), + [aux_sym_def_type_statement_token6] = ACTIONS(9670), + [aux_sym_def_type_statement_token7] = ACTIONS(9670), + [aux_sym_def_type_statement_token8] = ACTIONS(9670), + [aux_sym_def_type_statement_token9] = ACTIONS(9670), + [aux_sym_def_type_statement_token10] = ACTIONS(9670), + [aux_sym_def_type_statement_token11] = ACTIONS(9670), + [aux_sym_def_type_statement_token12] = ACTIONS(9670), + [aux_sym_def_type_statement_token13] = ACTIONS(9670), + [aux_sym_def_type_statement_token14] = ACTIONS(9670), + [aux_sym_call_statement_token1] = ACTIONS(9670), + [sym__ambiguous_call_statement] = ACTIONS(9670), + [aux_sym_addressof_expression_token1] = ACTIONS(9670), + [aux_sym_type_of_expression_token1] = ACTIONS(9670), + [aux_sym_unary_expression_token1] = ACTIONS(9670), + [sym_string_literal] = ACTIONS(9672), + [sym_number_literal] = ACTIONS(9672), + [aux_sym_boolean_literal_token1] = ACTIONS(9670), + [aux_sym_boolean_literal_token2] = ACTIONS(9670), + [sym_nothing_literal] = ACTIONS(9670), + [sym_null_literal] = ACTIONS(9670), + [sym_empty_literal] = ACTIONS(9670), + [sym_date_literal] = ACTIONS(9672), + [anon_sym_POUND] = ACTIONS(9670), + }, + [STATE(7224)] = { + [sym_identifier] = ACTIONS(8312), + [sym_newline] = ACTIONS(8314), + [anon_sym_COLON] = ACTIONS(8314), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8312), + [aux_sym_frm_property_statement_token1] = ACTIONS(8312), + [anon_sym_DOT] = ACTIONS(8312), + [anon_sym_BANG] = ACTIONS(8314), + [aux_sym__attribute_identifier_token1] = ACTIONS(8312), + [aux_sym_option_statement_token3] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8312), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8312), + [aux_sym_preprocessor_const_token1] = ACTIONS(8312), + [sym_static_modifier] = ACTIONS(8312), + [sym__dim_keyword] = ACTIONS(8312), + [sym__redim_keyword] = ACTIONS(8312), + [aux_sym_get_accessor_token1] = ACTIONS(8312), + [aux_sym_set_accessor_token1] = ACTIONS(8312), + [aux_sym_const_declaration_token1] = ACTIONS(8312), + [anon_sym_LPAREN] = ACTIONS(8314), + [aux_sym_as_type_clause_token2] = ACTIONS(8312), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8312), + [aux_sym_visibility_token1] = ACTIONS(8312), + [aux_sym_visibility_token2] = ACTIONS(8312), + [aux_sym_elseif_fragment_token1] = ACTIONS(8312), + [aux_sym_else_fragment_token1] = ACTIONS(8312), + [aux_sym_select_statement_token1] = ACTIONS(8312), + [aux_sym__for_header_token1] = ACTIONS(8312), + [aux_sym_do_statement_token1] = ACTIONS(8312), + [aux_sym_do_condition_token1] = ACTIONS(8312), + [aux_sym_with_statement_token1] = ACTIONS(8312), + [aux_sym_exit_statement_token1] = ACTIONS(8312), + [sym_end_statement] = ACTIONS(8314), + [aux_sym_on_goto_statement_token1] = ACTIONS(8312), + [aux_sym_on_goto_statement_token2] = ACTIONS(8312), + [aux_sym_on_error_statement_token2] = ACTIONS(8312), + [sym__ambiguous_redim_statement] = ACTIONS(8314), + [aux_sym_erase_statement_token1] = ACTIONS(8312), + [aux_sym_open_statement_token1] = ACTIONS(8312), + [aux_sym_file_mode_token2] = ACTIONS(8312), + [aux_sym_file_access_token2] = ACTIONS(8312), + [aux_sym_file_lock_token2] = ACTIONS(8312), + [aux_sym_print_statement_token1] = ACTIONS(8312), + [anon_sym_PLUS] = ACTIONS(8314), + [anon_sym_DASH] = ACTIONS(8312), + [anon_sym_QMARK] = ACTIONS(8314), + [aux_sym_close_statement_token1] = ACTIONS(8312), + [aux_sym_put_statement_token1] = ACTIONS(8312), + [aux_sym_unlock_statement_token1] = ACTIONS(8312), + [aux_sym_seek_statement_token1] = ACTIONS(8312), + [sym_reset_statement] = ACTIONS(8312), + [aux_sym_raise_event_statement_token1] = ACTIONS(8312), + [sym_stop_statement] = ACTIONS(8312), + [sym_beep_statement] = ACTIONS(8312), + [aux_sym_unload_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token1] = ACTIONS(8312), + [aux_sym_def_type_statement_token2] = ACTIONS(8312), + [aux_sym_def_type_statement_token3] = ACTIONS(8312), + [aux_sym_def_type_statement_token4] = ACTIONS(8312), + [aux_sym_def_type_statement_token5] = ACTIONS(8312), + [aux_sym_def_type_statement_token6] = ACTIONS(8312), + [aux_sym_def_type_statement_token7] = ACTIONS(8312), + [aux_sym_def_type_statement_token8] = ACTIONS(8312), + [aux_sym_def_type_statement_token9] = ACTIONS(8312), + [aux_sym_def_type_statement_token10] = ACTIONS(8312), + [aux_sym_def_type_statement_token11] = ACTIONS(8312), + [aux_sym_def_type_statement_token12] = ACTIONS(8312), + [aux_sym_def_type_statement_token13] = ACTIONS(8312), + [aux_sym_def_type_statement_token14] = ACTIONS(8312), + [aux_sym_call_statement_token1] = ACTIONS(8312), + [sym__ambiguous_call_statement] = ACTIONS(8312), + [aux_sym_addressof_expression_token1] = ACTIONS(8312), + [aux_sym_type_of_expression_token1] = ACTIONS(8312), + [aux_sym_unary_expression_token1] = ACTIONS(8312), + [sym_string_literal] = ACTIONS(8314), + [sym_number_literal] = ACTIONS(8314), + [aux_sym_boolean_literal_token1] = ACTIONS(8312), + [aux_sym_boolean_literal_token2] = ACTIONS(8312), + [sym_nothing_literal] = ACTIONS(8312), + [sym_null_literal] = ACTIONS(8312), + [sym_empty_literal] = ACTIONS(8312), + [sym_date_literal] = ACTIONS(8314), + [anon_sym_POUND] = ACTIONS(8312), + }, + [STATE(7225)] = { + [sym_identifier] = ACTIONS(9677), + [sym_newline] = ACTIONS(9679), + [anon_sym_COLON] = ACTIONS(9679), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9677), + [aux_sym_frm_property_statement_token1] = ACTIONS(9677), + [anon_sym_DOT] = ACTIONS(9677), + [anon_sym_BANG] = ACTIONS(9679), + [aux_sym__attribute_identifier_token1] = ACTIONS(9677), + [aux_sym_option_statement_token3] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9677), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9677), + [aux_sym_preprocessor_const_token1] = ACTIONS(9677), + [sym_static_modifier] = ACTIONS(9677), + [sym__dim_keyword] = ACTIONS(9677), + [sym__redim_keyword] = ACTIONS(9677), + [aux_sym_get_accessor_token1] = ACTIONS(9677), + [aux_sym_set_accessor_token1] = ACTIONS(9677), + [aux_sym_const_declaration_token1] = ACTIONS(9677), + [anon_sym_LPAREN] = ACTIONS(9679), + [aux_sym_as_type_clause_token2] = ACTIONS(9677), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9677), + [aux_sym_visibility_token1] = ACTIONS(9677), + [aux_sym_visibility_token2] = ACTIONS(9677), + [aux_sym_elseif_fragment_token1] = ACTIONS(9677), + [aux_sym_else_fragment_token1] = ACTIONS(9677), + [aux_sym_select_statement_token1] = ACTIONS(9677), + [aux_sym__for_header_token1] = ACTIONS(9677), + [aux_sym_do_statement_token1] = ACTIONS(9677), + [aux_sym_do_condition_token1] = ACTIONS(9677), + [aux_sym_with_statement_token1] = ACTIONS(9677), + [aux_sym_exit_statement_token1] = ACTIONS(9677), + [sym_end_statement] = ACTIONS(9679), + [aux_sym_on_goto_statement_token1] = ACTIONS(9677), + [aux_sym_on_goto_statement_token2] = ACTIONS(9677), + [aux_sym_on_error_statement_token2] = ACTIONS(9677), + [sym__ambiguous_redim_statement] = ACTIONS(9679), + [aux_sym_erase_statement_token1] = ACTIONS(9677), + [aux_sym_open_statement_token1] = ACTIONS(9677), + [aux_sym_file_mode_token2] = ACTIONS(9677), + [aux_sym_file_access_token2] = ACTIONS(9677), + [aux_sym_file_lock_token2] = ACTIONS(9677), + [aux_sym_print_statement_token1] = ACTIONS(9677), + [anon_sym_PLUS] = ACTIONS(9679), + [anon_sym_DASH] = ACTIONS(9677), + [anon_sym_QMARK] = ACTIONS(9679), + [aux_sym_close_statement_token1] = ACTIONS(9677), + [aux_sym_put_statement_token1] = ACTIONS(9677), + [aux_sym_unlock_statement_token1] = ACTIONS(9677), + [aux_sym_seek_statement_token1] = ACTIONS(9677), + [sym_reset_statement] = ACTIONS(9677), + [aux_sym_raise_event_statement_token1] = ACTIONS(9677), + [sym_stop_statement] = ACTIONS(9677), + [sym_beep_statement] = ACTIONS(9677), + [aux_sym_unload_statement_token1] = ACTIONS(9677), + [aux_sym_def_type_statement_token1] = ACTIONS(9677), + [aux_sym_def_type_statement_token2] = ACTIONS(9677), + [aux_sym_def_type_statement_token3] = ACTIONS(9677), + [aux_sym_def_type_statement_token4] = ACTIONS(9677), + [aux_sym_def_type_statement_token5] = ACTIONS(9677), + [aux_sym_def_type_statement_token6] = ACTIONS(9677), + [aux_sym_def_type_statement_token7] = ACTIONS(9677), + [aux_sym_def_type_statement_token8] = ACTIONS(9677), + [aux_sym_def_type_statement_token9] = ACTIONS(9677), + [aux_sym_def_type_statement_token10] = ACTIONS(9677), + [aux_sym_def_type_statement_token11] = ACTIONS(9677), + [aux_sym_def_type_statement_token12] = ACTIONS(9677), + [aux_sym_def_type_statement_token13] = ACTIONS(9677), + [aux_sym_def_type_statement_token14] = ACTIONS(9677), + [aux_sym_call_statement_token1] = ACTIONS(9677), + [sym__ambiguous_call_statement] = ACTIONS(9677), + [aux_sym_addressof_expression_token1] = ACTIONS(9677), + [aux_sym_type_of_expression_token1] = ACTIONS(9677), + [aux_sym_unary_expression_token1] = ACTIONS(9677), + [sym_string_literal] = ACTIONS(9679), + [sym_number_literal] = ACTIONS(9679), + [aux_sym_boolean_literal_token1] = ACTIONS(9677), + [aux_sym_boolean_literal_token2] = ACTIONS(9677), + [sym_nothing_literal] = ACTIONS(9677), + [sym_null_literal] = ACTIONS(9677), + [sym_empty_literal] = ACTIONS(9677), + [sym_date_literal] = ACTIONS(9679), + [anon_sym_POUND] = ACTIONS(9677), + }, + [STATE(7226)] = { + [sym_identifier] = ACTIONS(9156), + [sym_newline] = ACTIONS(9158), + [anon_sym_COLON] = ACTIONS(9158), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9156), + [aux_sym_frm_property_statement_token1] = ACTIONS(9156), + [anon_sym_DOT] = ACTIONS(9156), + [anon_sym_BANG] = ACTIONS(9158), + [aux_sym__attribute_identifier_token1] = ACTIONS(9156), + [aux_sym_option_statement_token3] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9156), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9156), + [aux_sym_preprocessor_const_token1] = ACTIONS(9156), + [sym_static_modifier] = ACTIONS(9156), + [sym__dim_keyword] = ACTIONS(9156), + [sym__redim_keyword] = ACTIONS(9156), + [aux_sym_get_accessor_token1] = ACTIONS(9156), + [aux_sym_set_accessor_token1] = ACTIONS(9156), + [aux_sym_const_declaration_token1] = ACTIONS(9156), + [anon_sym_LPAREN] = ACTIONS(9158), + [aux_sym_as_type_clause_token2] = ACTIONS(9156), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9156), + [aux_sym_visibility_token1] = ACTIONS(9156), + [aux_sym_visibility_token2] = ACTIONS(9156), + [aux_sym_elseif_fragment_token1] = ACTIONS(9156), + [aux_sym_else_fragment_token1] = ACTIONS(9156), + [aux_sym_select_statement_token1] = ACTIONS(9156), + [aux_sym__for_header_token1] = ACTIONS(9156), + [aux_sym_do_statement_token1] = ACTIONS(9156), + [aux_sym_do_condition_token1] = ACTIONS(9156), + [aux_sym_with_statement_token1] = ACTIONS(9156), + [aux_sym_exit_statement_token1] = ACTIONS(9156), + [sym_end_statement] = ACTIONS(9158), + [aux_sym_on_goto_statement_token1] = ACTIONS(9156), + [aux_sym_on_goto_statement_token2] = ACTIONS(9156), + [aux_sym_on_error_statement_token2] = ACTIONS(9156), + [sym__ambiguous_redim_statement] = ACTIONS(9158), + [aux_sym_erase_statement_token1] = ACTIONS(9156), + [aux_sym_open_statement_token1] = ACTIONS(9156), + [aux_sym_file_mode_token2] = ACTIONS(9156), + [aux_sym_file_access_token2] = ACTIONS(9156), + [aux_sym_file_lock_token2] = ACTIONS(9156), + [aux_sym_print_statement_token1] = ACTIONS(9156), + [anon_sym_PLUS] = ACTIONS(9158), + [anon_sym_DASH] = ACTIONS(9156), + [anon_sym_QMARK] = ACTIONS(9158), + [aux_sym_close_statement_token1] = ACTIONS(9156), + [aux_sym_put_statement_token1] = ACTIONS(9156), + [aux_sym_unlock_statement_token1] = ACTIONS(9156), + [aux_sym_seek_statement_token1] = ACTIONS(9156), + [sym_reset_statement] = ACTIONS(9156), + [aux_sym_raise_event_statement_token1] = ACTIONS(9156), + [sym_stop_statement] = ACTIONS(9156), + [sym_beep_statement] = ACTIONS(9156), + [aux_sym_unload_statement_token1] = ACTIONS(9156), + [aux_sym_def_type_statement_token1] = ACTIONS(9156), + [aux_sym_def_type_statement_token2] = ACTIONS(9156), + [aux_sym_def_type_statement_token3] = ACTIONS(9156), + [aux_sym_def_type_statement_token4] = ACTIONS(9156), + [aux_sym_def_type_statement_token5] = ACTIONS(9156), + [aux_sym_def_type_statement_token6] = ACTIONS(9156), + [aux_sym_def_type_statement_token7] = ACTIONS(9156), + [aux_sym_def_type_statement_token8] = ACTIONS(9156), + [aux_sym_def_type_statement_token9] = ACTIONS(9156), + [aux_sym_def_type_statement_token10] = ACTIONS(9156), + [aux_sym_def_type_statement_token11] = ACTIONS(9156), + [aux_sym_def_type_statement_token12] = ACTIONS(9156), + [aux_sym_def_type_statement_token13] = ACTIONS(9156), + [aux_sym_def_type_statement_token14] = ACTIONS(9156), + [aux_sym_call_statement_token1] = ACTIONS(9156), + [sym__ambiguous_call_statement] = ACTIONS(9156), + [aux_sym_addressof_expression_token1] = ACTIONS(9156), + [aux_sym_type_of_expression_token1] = ACTIONS(9156), + [aux_sym_unary_expression_token1] = ACTIONS(9156), + [sym_string_literal] = ACTIONS(9158), + [sym_number_literal] = ACTIONS(9158), + [aux_sym_boolean_literal_token1] = ACTIONS(9156), + [aux_sym_boolean_literal_token2] = ACTIONS(9156), + [sym_nothing_literal] = ACTIONS(9156), + [sym_null_literal] = ACTIONS(9156), + [sym_empty_literal] = ACTIONS(9156), + [sym_date_literal] = ACTIONS(9158), + [anon_sym_POUND] = ACTIONS(9156), + }, + [STATE(7227)] = { + [sym_identifier] = ACTIONS(8996), + [sym_newline] = ACTIONS(8998), + [anon_sym_COLON] = ACTIONS(8998), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8996), + [aux_sym_frm_property_statement_token1] = ACTIONS(8996), + [anon_sym_DOT] = ACTIONS(8996), + [anon_sym_BANG] = ACTIONS(8998), + [aux_sym__attribute_identifier_token1] = ACTIONS(8996), + [aux_sym_option_statement_token3] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8996), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8996), + [aux_sym_preprocessor_const_token1] = ACTIONS(8996), + [sym_static_modifier] = ACTIONS(8996), + [sym__dim_keyword] = ACTIONS(8996), + [sym__redim_keyword] = ACTIONS(8996), + [aux_sym_get_accessor_token1] = ACTIONS(8996), + [aux_sym_set_accessor_token1] = ACTIONS(8996), + [aux_sym_const_declaration_token1] = ACTIONS(8996), + [anon_sym_LPAREN] = ACTIONS(8998), + [aux_sym_as_type_clause_token2] = ACTIONS(8996), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8996), + [aux_sym_visibility_token1] = ACTIONS(8996), + [aux_sym_visibility_token2] = ACTIONS(8996), + [aux_sym_elseif_fragment_token1] = ACTIONS(8996), + [aux_sym_else_fragment_token1] = ACTIONS(8996), + [aux_sym_select_statement_token1] = ACTIONS(8996), + [aux_sym__for_header_token1] = ACTIONS(8996), + [aux_sym_do_statement_token1] = ACTIONS(8996), + [aux_sym_do_condition_token1] = ACTIONS(8996), + [aux_sym_with_statement_token1] = ACTIONS(8996), + [aux_sym_exit_statement_token1] = ACTIONS(8996), + [sym_end_statement] = ACTIONS(8998), + [aux_sym_on_goto_statement_token1] = ACTIONS(8996), + [aux_sym_on_goto_statement_token2] = ACTIONS(8996), + [aux_sym_on_error_statement_token2] = ACTIONS(8996), + [sym__ambiguous_redim_statement] = ACTIONS(8998), + [aux_sym_erase_statement_token1] = ACTIONS(8996), + [aux_sym_open_statement_token1] = ACTIONS(8996), + [aux_sym_file_mode_token2] = ACTIONS(8996), + [aux_sym_file_access_token2] = ACTIONS(8996), + [aux_sym_file_lock_token2] = ACTIONS(8996), + [aux_sym_print_statement_token1] = ACTIONS(8996), + [anon_sym_PLUS] = ACTIONS(8998), + [anon_sym_DASH] = ACTIONS(8996), + [anon_sym_QMARK] = ACTIONS(8998), + [aux_sym_close_statement_token1] = ACTIONS(8996), + [aux_sym_put_statement_token1] = ACTIONS(8996), + [aux_sym_unlock_statement_token1] = ACTIONS(8996), + [aux_sym_seek_statement_token1] = ACTIONS(8996), + [sym_reset_statement] = ACTIONS(8996), + [aux_sym_raise_event_statement_token1] = ACTIONS(8996), + [sym_stop_statement] = ACTIONS(8996), + [sym_beep_statement] = ACTIONS(8996), + [aux_sym_unload_statement_token1] = ACTIONS(8996), + [aux_sym_def_type_statement_token1] = ACTIONS(8996), + [aux_sym_def_type_statement_token2] = ACTIONS(8996), + [aux_sym_def_type_statement_token3] = ACTIONS(8996), + [aux_sym_def_type_statement_token4] = ACTIONS(8996), + [aux_sym_def_type_statement_token5] = ACTIONS(8996), + [aux_sym_def_type_statement_token6] = ACTIONS(8996), + [aux_sym_def_type_statement_token7] = ACTIONS(8996), + [aux_sym_def_type_statement_token8] = ACTIONS(8996), + [aux_sym_def_type_statement_token9] = ACTIONS(8996), + [aux_sym_def_type_statement_token10] = ACTIONS(8996), + [aux_sym_def_type_statement_token11] = ACTIONS(8996), + [aux_sym_def_type_statement_token12] = ACTIONS(8996), + [aux_sym_def_type_statement_token13] = ACTIONS(8996), + [aux_sym_def_type_statement_token14] = ACTIONS(8996), + [aux_sym_call_statement_token1] = ACTIONS(8996), + [sym__ambiguous_call_statement] = ACTIONS(8996), + [aux_sym_addressof_expression_token1] = ACTIONS(8996), + [aux_sym_type_of_expression_token1] = ACTIONS(8996), + [aux_sym_unary_expression_token1] = ACTIONS(8996), + [sym_string_literal] = ACTIONS(8998), + [sym_number_literal] = ACTIONS(8998), + [aux_sym_boolean_literal_token1] = ACTIONS(8996), + [aux_sym_boolean_literal_token2] = ACTIONS(8996), + [sym_nothing_literal] = ACTIONS(8996), + [sym_null_literal] = ACTIONS(8996), + [sym_empty_literal] = ACTIONS(8996), + [sym_date_literal] = ACTIONS(8998), + [anon_sym_POUND] = ACTIONS(8996), + }, + [STATE(7228)] = { + [sym_identifier] = ACTIONS(9784), + [sym_newline] = ACTIONS(9786), + [anon_sym_COLON] = ACTIONS(9786), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9784), + [aux_sym_frm_property_statement_token1] = ACTIONS(9784), + [anon_sym_DOT] = ACTIONS(9784), + [anon_sym_BANG] = ACTIONS(9786), + [aux_sym__attribute_identifier_token1] = ACTIONS(9784), + [aux_sym_option_statement_token3] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9784), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9784), + [aux_sym_preprocessor_const_token1] = ACTIONS(9784), + [sym_static_modifier] = ACTIONS(9784), + [sym__dim_keyword] = ACTIONS(9784), + [sym__redim_keyword] = ACTIONS(9784), + [aux_sym_get_accessor_token1] = ACTIONS(9784), + [aux_sym_set_accessor_token1] = ACTIONS(9784), + [aux_sym_const_declaration_token1] = ACTIONS(9784), + [anon_sym_LPAREN] = ACTIONS(9786), + [aux_sym_as_type_clause_token2] = ACTIONS(9784), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9784), + [aux_sym_visibility_token1] = ACTIONS(9784), + [aux_sym_visibility_token2] = ACTIONS(9784), + [aux_sym_elseif_fragment_token1] = ACTIONS(9784), + [aux_sym_else_fragment_token1] = ACTIONS(9784), + [aux_sym_select_statement_token1] = ACTIONS(9784), + [aux_sym__for_header_token1] = ACTIONS(9784), + [aux_sym_do_statement_token1] = ACTIONS(9784), + [aux_sym_do_condition_token1] = ACTIONS(9784), + [aux_sym_with_statement_token1] = ACTIONS(9784), + [aux_sym_exit_statement_token1] = ACTIONS(9784), + [sym_end_statement] = ACTIONS(9786), + [aux_sym_on_goto_statement_token1] = ACTIONS(9784), + [aux_sym_on_goto_statement_token2] = ACTIONS(9784), + [aux_sym_on_error_statement_token2] = ACTIONS(9784), + [sym__ambiguous_redim_statement] = ACTIONS(9786), + [aux_sym_erase_statement_token1] = ACTIONS(9784), + [aux_sym_open_statement_token1] = ACTIONS(9784), + [aux_sym_file_mode_token2] = ACTIONS(9784), + [aux_sym_file_access_token2] = ACTIONS(9784), + [aux_sym_file_lock_token2] = ACTIONS(9784), + [aux_sym_print_statement_token1] = ACTIONS(9784), + [anon_sym_PLUS] = ACTIONS(9786), + [anon_sym_DASH] = ACTIONS(9784), + [anon_sym_QMARK] = ACTIONS(9786), + [aux_sym_close_statement_token1] = ACTIONS(9784), + [aux_sym_put_statement_token1] = ACTIONS(9784), + [aux_sym_unlock_statement_token1] = ACTIONS(9784), + [aux_sym_seek_statement_token1] = ACTIONS(9784), + [sym_reset_statement] = ACTIONS(9784), + [aux_sym_raise_event_statement_token1] = ACTIONS(9784), + [sym_stop_statement] = ACTIONS(9784), + [sym_beep_statement] = ACTIONS(9784), + [aux_sym_unload_statement_token1] = ACTIONS(9784), + [aux_sym_def_type_statement_token1] = ACTIONS(9784), + [aux_sym_def_type_statement_token2] = ACTIONS(9784), + [aux_sym_def_type_statement_token3] = ACTIONS(9784), + [aux_sym_def_type_statement_token4] = ACTIONS(9784), + [aux_sym_def_type_statement_token5] = ACTIONS(9784), + [aux_sym_def_type_statement_token6] = ACTIONS(9784), + [aux_sym_def_type_statement_token7] = ACTIONS(9784), + [aux_sym_def_type_statement_token8] = ACTIONS(9784), + [aux_sym_def_type_statement_token9] = ACTIONS(9784), + [aux_sym_def_type_statement_token10] = ACTIONS(9784), + [aux_sym_def_type_statement_token11] = ACTIONS(9784), + [aux_sym_def_type_statement_token12] = ACTIONS(9784), + [aux_sym_def_type_statement_token13] = ACTIONS(9784), + [aux_sym_def_type_statement_token14] = ACTIONS(9784), + [aux_sym_call_statement_token1] = ACTIONS(9784), + [sym__ambiguous_call_statement] = ACTIONS(9784), + [aux_sym_addressof_expression_token1] = ACTIONS(9784), + [aux_sym_type_of_expression_token1] = ACTIONS(9784), + [aux_sym_unary_expression_token1] = ACTIONS(9784), + [sym_string_literal] = ACTIONS(9786), + [sym_number_literal] = ACTIONS(9786), + [aux_sym_boolean_literal_token1] = ACTIONS(9784), + [aux_sym_boolean_literal_token2] = ACTIONS(9784), + [sym_nothing_literal] = ACTIONS(9784), + [sym_null_literal] = ACTIONS(9784), + [sym_empty_literal] = ACTIONS(9784), + [sym_date_literal] = ACTIONS(9786), + [anon_sym_POUND] = ACTIONS(9784), + }, + [STATE(7229)] = { + [sym_identifier] = ACTIONS(9160), + [sym_newline] = ACTIONS(9162), + [anon_sym_COLON] = ACTIONS(9162), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9160), + [aux_sym_frm_property_statement_token1] = ACTIONS(9160), + [anon_sym_DOT] = ACTIONS(9160), + [anon_sym_BANG] = ACTIONS(9162), + [aux_sym__attribute_identifier_token1] = ACTIONS(9160), + [aux_sym_option_statement_token3] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9160), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9160), + [aux_sym_preprocessor_const_token1] = ACTIONS(9160), + [sym_static_modifier] = ACTIONS(9160), + [sym__dim_keyword] = ACTIONS(9160), + [sym__redim_keyword] = ACTIONS(9160), + [aux_sym_get_accessor_token1] = ACTIONS(9160), + [aux_sym_set_accessor_token1] = ACTIONS(9160), + [aux_sym_const_declaration_token1] = ACTIONS(9160), + [anon_sym_LPAREN] = ACTIONS(9162), + [aux_sym_as_type_clause_token2] = ACTIONS(9160), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9160), + [aux_sym_visibility_token1] = ACTIONS(9160), + [aux_sym_visibility_token2] = ACTIONS(9160), + [aux_sym_elseif_fragment_token1] = ACTIONS(9160), + [aux_sym_else_fragment_token1] = ACTIONS(9160), + [aux_sym_select_statement_token1] = ACTIONS(9160), + [aux_sym__for_header_token1] = ACTIONS(9160), + [aux_sym_do_statement_token1] = ACTIONS(9160), + [aux_sym_do_condition_token1] = ACTIONS(9160), + [aux_sym_with_statement_token1] = ACTIONS(9160), + [aux_sym_exit_statement_token1] = ACTIONS(9160), + [sym_end_statement] = ACTIONS(9162), + [aux_sym_on_goto_statement_token1] = ACTIONS(9160), + [aux_sym_on_goto_statement_token2] = ACTIONS(9160), + [aux_sym_on_error_statement_token2] = ACTIONS(9160), + [sym__ambiguous_redim_statement] = ACTIONS(9162), + [aux_sym_erase_statement_token1] = ACTIONS(9160), + [aux_sym_open_statement_token1] = ACTIONS(9160), + [aux_sym_file_mode_token2] = ACTIONS(9160), + [aux_sym_file_access_token2] = ACTIONS(9160), + [aux_sym_file_lock_token2] = ACTIONS(9160), + [aux_sym_print_statement_token1] = ACTIONS(9160), + [anon_sym_PLUS] = ACTIONS(9162), + [anon_sym_DASH] = ACTIONS(9160), + [anon_sym_QMARK] = ACTIONS(9162), + [aux_sym_close_statement_token1] = ACTIONS(9160), + [aux_sym_put_statement_token1] = ACTIONS(9160), + [aux_sym_unlock_statement_token1] = ACTIONS(9160), + [aux_sym_seek_statement_token1] = ACTIONS(9160), + [sym_reset_statement] = ACTIONS(9160), + [aux_sym_raise_event_statement_token1] = ACTIONS(9160), + [sym_stop_statement] = ACTIONS(9160), + [sym_beep_statement] = ACTIONS(9160), + [aux_sym_unload_statement_token1] = ACTIONS(9160), + [aux_sym_def_type_statement_token1] = ACTIONS(9160), + [aux_sym_def_type_statement_token2] = ACTIONS(9160), + [aux_sym_def_type_statement_token3] = ACTIONS(9160), + [aux_sym_def_type_statement_token4] = ACTIONS(9160), + [aux_sym_def_type_statement_token5] = ACTIONS(9160), + [aux_sym_def_type_statement_token6] = ACTIONS(9160), + [aux_sym_def_type_statement_token7] = ACTIONS(9160), + [aux_sym_def_type_statement_token8] = ACTIONS(9160), + [aux_sym_def_type_statement_token9] = ACTIONS(9160), + [aux_sym_def_type_statement_token10] = ACTIONS(9160), + [aux_sym_def_type_statement_token11] = ACTIONS(9160), + [aux_sym_def_type_statement_token12] = ACTIONS(9160), + [aux_sym_def_type_statement_token13] = ACTIONS(9160), + [aux_sym_def_type_statement_token14] = ACTIONS(9160), + [aux_sym_call_statement_token1] = ACTIONS(9160), + [sym__ambiguous_call_statement] = ACTIONS(9160), + [aux_sym_addressof_expression_token1] = ACTIONS(9160), + [aux_sym_type_of_expression_token1] = ACTIONS(9160), + [aux_sym_unary_expression_token1] = ACTIONS(9160), + [sym_string_literal] = ACTIONS(9162), + [sym_number_literal] = ACTIONS(9162), + [aux_sym_boolean_literal_token1] = ACTIONS(9160), + [aux_sym_boolean_literal_token2] = ACTIONS(9160), + [sym_nothing_literal] = ACTIONS(9160), + [sym_null_literal] = ACTIONS(9160), + [sym_empty_literal] = ACTIONS(9160), + [sym_date_literal] = ACTIONS(9162), + [anon_sym_POUND] = ACTIONS(9160), + }, + [STATE(7230)] = { + [sym_identifier] = ACTIONS(9000), + [sym_newline] = ACTIONS(9002), + [anon_sym_COLON] = ACTIONS(9002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9000), + [aux_sym_frm_property_statement_token1] = ACTIONS(9000), + [anon_sym_DOT] = ACTIONS(9000), + [anon_sym_BANG] = ACTIONS(9002), + [aux_sym__attribute_identifier_token1] = ACTIONS(9000), + [aux_sym_option_statement_token3] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9000), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9000), + [aux_sym_preprocessor_const_token1] = ACTIONS(9000), + [sym_static_modifier] = ACTIONS(9000), + [sym__dim_keyword] = ACTIONS(9000), + [sym__redim_keyword] = ACTIONS(9000), + [aux_sym_get_accessor_token1] = ACTIONS(9000), + [aux_sym_set_accessor_token1] = ACTIONS(9000), + [aux_sym_const_declaration_token1] = ACTIONS(9000), + [anon_sym_LPAREN] = ACTIONS(9002), + [aux_sym_as_type_clause_token2] = ACTIONS(9000), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9000), + [aux_sym_visibility_token1] = ACTIONS(9000), + [aux_sym_visibility_token2] = ACTIONS(9000), + [aux_sym_elseif_fragment_token1] = ACTIONS(9000), + [aux_sym_else_fragment_token1] = ACTIONS(9000), + [aux_sym_select_statement_token1] = ACTIONS(9000), + [aux_sym__for_header_token1] = ACTIONS(9000), + [aux_sym_do_statement_token1] = ACTIONS(9000), + [aux_sym_do_condition_token1] = ACTIONS(9000), + [aux_sym_with_statement_token1] = ACTIONS(9000), + [aux_sym_exit_statement_token1] = ACTIONS(9000), + [sym_end_statement] = ACTIONS(9002), + [aux_sym_on_goto_statement_token1] = ACTIONS(9000), + [aux_sym_on_goto_statement_token2] = ACTIONS(9000), + [aux_sym_on_error_statement_token2] = ACTIONS(9000), + [sym__ambiguous_redim_statement] = ACTIONS(9002), + [aux_sym_erase_statement_token1] = ACTIONS(9000), + [aux_sym_open_statement_token1] = ACTIONS(9000), + [aux_sym_file_mode_token2] = ACTIONS(9000), + [aux_sym_file_access_token2] = ACTIONS(9000), + [aux_sym_file_lock_token2] = ACTIONS(9000), + [aux_sym_print_statement_token1] = ACTIONS(9000), + [anon_sym_PLUS] = ACTIONS(9002), + [anon_sym_DASH] = ACTIONS(9000), + [anon_sym_QMARK] = ACTIONS(9002), + [aux_sym_close_statement_token1] = ACTIONS(9000), + [aux_sym_put_statement_token1] = ACTIONS(9000), + [aux_sym_unlock_statement_token1] = ACTIONS(9000), + [aux_sym_seek_statement_token1] = ACTIONS(9000), + [sym_reset_statement] = ACTIONS(9000), + [aux_sym_raise_event_statement_token1] = ACTIONS(9000), + [sym_stop_statement] = ACTIONS(9000), + [sym_beep_statement] = ACTIONS(9000), + [aux_sym_unload_statement_token1] = ACTIONS(9000), + [aux_sym_def_type_statement_token1] = ACTIONS(9000), + [aux_sym_def_type_statement_token2] = ACTIONS(9000), + [aux_sym_def_type_statement_token3] = ACTIONS(9000), + [aux_sym_def_type_statement_token4] = ACTIONS(9000), + [aux_sym_def_type_statement_token5] = ACTIONS(9000), + [aux_sym_def_type_statement_token6] = ACTIONS(9000), + [aux_sym_def_type_statement_token7] = ACTIONS(9000), + [aux_sym_def_type_statement_token8] = ACTIONS(9000), + [aux_sym_def_type_statement_token9] = ACTIONS(9000), + [aux_sym_def_type_statement_token10] = ACTIONS(9000), + [aux_sym_def_type_statement_token11] = ACTIONS(9000), + [aux_sym_def_type_statement_token12] = ACTIONS(9000), + [aux_sym_def_type_statement_token13] = ACTIONS(9000), + [aux_sym_def_type_statement_token14] = ACTIONS(9000), + [aux_sym_call_statement_token1] = ACTIONS(9000), + [sym__ambiguous_call_statement] = ACTIONS(9000), + [aux_sym_addressof_expression_token1] = ACTIONS(9000), + [aux_sym_type_of_expression_token1] = ACTIONS(9000), + [aux_sym_unary_expression_token1] = ACTIONS(9000), + [sym_string_literal] = ACTIONS(9002), + [sym_number_literal] = ACTIONS(9002), + [aux_sym_boolean_literal_token1] = ACTIONS(9000), + [aux_sym_boolean_literal_token2] = ACTIONS(9000), + [sym_nothing_literal] = ACTIONS(9000), + [sym_null_literal] = ACTIONS(9000), + [sym_empty_literal] = ACTIONS(9000), + [sym_date_literal] = ACTIONS(9002), + [anon_sym_POUND] = ACTIONS(9000), + }, + [STATE(7231)] = { + [sym_identifier] = ACTIONS(9192), + [sym_newline] = ACTIONS(9194), + [anon_sym_COLON] = ACTIONS(9194), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9192), + [aux_sym_frm_property_statement_token1] = ACTIONS(9192), + [anon_sym_DOT] = ACTIONS(9192), + [anon_sym_BANG] = ACTIONS(9194), + [aux_sym__attribute_identifier_token1] = ACTIONS(9192), + [aux_sym_option_statement_token3] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9192), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9192), + [aux_sym_preprocessor_const_token1] = ACTIONS(9192), + [sym_static_modifier] = ACTIONS(9192), + [sym__dim_keyword] = ACTIONS(9192), + [sym__redim_keyword] = ACTIONS(9192), + [aux_sym_get_accessor_token1] = ACTIONS(9192), + [aux_sym_set_accessor_token1] = ACTIONS(9192), + [aux_sym_const_declaration_token1] = ACTIONS(9192), + [anon_sym_LPAREN] = ACTIONS(9194), + [aux_sym_as_type_clause_token2] = ACTIONS(9192), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9192), + [aux_sym_visibility_token1] = ACTIONS(9192), + [aux_sym_visibility_token2] = ACTIONS(9192), + [aux_sym_elseif_fragment_token1] = ACTIONS(9192), + [aux_sym_else_fragment_token1] = ACTIONS(9192), + [aux_sym_select_statement_token1] = ACTIONS(9192), + [aux_sym__for_header_token1] = ACTIONS(9192), + [aux_sym_do_statement_token1] = ACTIONS(9192), + [aux_sym_do_condition_token1] = ACTIONS(9192), + [aux_sym_with_statement_token1] = ACTIONS(9192), + [aux_sym_exit_statement_token1] = ACTIONS(9192), + [sym_end_statement] = ACTIONS(9194), + [aux_sym_on_goto_statement_token1] = ACTIONS(9192), + [aux_sym_on_goto_statement_token2] = ACTIONS(9192), + [aux_sym_on_error_statement_token2] = ACTIONS(9192), + [sym__ambiguous_redim_statement] = ACTIONS(9194), + [aux_sym_erase_statement_token1] = ACTIONS(9192), + [aux_sym_open_statement_token1] = ACTIONS(9192), + [aux_sym_file_mode_token2] = ACTIONS(9192), + [aux_sym_file_access_token2] = ACTIONS(9192), + [aux_sym_file_lock_token2] = ACTIONS(9192), + [aux_sym_print_statement_token1] = ACTIONS(9192), + [anon_sym_PLUS] = ACTIONS(9194), + [anon_sym_DASH] = ACTIONS(9192), + [anon_sym_QMARK] = ACTIONS(9194), + [aux_sym_close_statement_token1] = ACTIONS(9192), + [aux_sym_put_statement_token1] = ACTIONS(9192), + [aux_sym_unlock_statement_token1] = ACTIONS(9192), + [aux_sym_seek_statement_token1] = ACTIONS(9192), + [sym_reset_statement] = ACTIONS(9192), + [aux_sym_raise_event_statement_token1] = ACTIONS(9192), + [sym_stop_statement] = ACTIONS(9192), + [sym_beep_statement] = ACTIONS(9192), + [aux_sym_unload_statement_token1] = ACTIONS(9192), + [aux_sym_def_type_statement_token1] = ACTIONS(9192), + [aux_sym_def_type_statement_token2] = ACTIONS(9192), + [aux_sym_def_type_statement_token3] = ACTIONS(9192), + [aux_sym_def_type_statement_token4] = ACTIONS(9192), + [aux_sym_def_type_statement_token5] = ACTIONS(9192), + [aux_sym_def_type_statement_token6] = ACTIONS(9192), + [aux_sym_def_type_statement_token7] = ACTIONS(9192), + [aux_sym_def_type_statement_token8] = ACTIONS(9192), + [aux_sym_def_type_statement_token9] = ACTIONS(9192), + [aux_sym_def_type_statement_token10] = ACTIONS(9192), + [aux_sym_def_type_statement_token11] = ACTIONS(9192), + [aux_sym_def_type_statement_token12] = ACTIONS(9192), + [aux_sym_def_type_statement_token13] = ACTIONS(9192), + [aux_sym_def_type_statement_token14] = ACTIONS(9192), + [aux_sym_call_statement_token1] = ACTIONS(9192), + [sym__ambiguous_call_statement] = ACTIONS(9192), + [aux_sym_addressof_expression_token1] = ACTIONS(9192), + [aux_sym_type_of_expression_token1] = ACTIONS(9192), + [aux_sym_unary_expression_token1] = ACTIONS(9192), + [sym_string_literal] = ACTIONS(9194), + [sym_number_literal] = ACTIONS(9194), + [aux_sym_boolean_literal_token1] = ACTIONS(9192), + [aux_sym_boolean_literal_token2] = ACTIONS(9192), + [sym_nothing_literal] = ACTIONS(9192), + [sym_null_literal] = ACTIONS(9192), + [sym_empty_literal] = ACTIONS(9192), + [sym_date_literal] = ACTIONS(9194), + [anon_sym_POUND] = ACTIONS(9192), + }, + [STATE(7232)] = { + [sym_identifier] = ACTIONS(9419), + [sym_newline] = ACTIONS(9421), + [anon_sym_COLON] = ACTIONS(9421), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9419), + [aux_sym_frm_property_statement_token1] = ACTIONS(9419), + [anon_sym_DOT] = ACTIONS(9419), + [anon_sym_BANG] = ACTIONS(9421), + [aux_sym__attribute_identifier_token1] = ACTIONS(9419), + [aux_sym_option_statement_token3] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9419), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9419), + [aux_sym_preprocessor_const_token1] = ACTIONS(9419), + [sym_static_modifier] = ACTIONS(9419), + [sym__dim_keyword] = ACTIONS(9419), + [sym__redim_keyword] = ACTIONS(9419), + [aux_sym_get_accessor_token1] = ACTIONS(9419), + [aux_sym_set_accessor_token1] = ACTIONS(9419), + [aux_sym_const_declaration_token1] = ACTIONS(9419), + [anon_sym_LPAREN] = ACTIONS(9421), + [aux_sym_as_type_clause_token2] = ACTIONS(9419), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9419), + [aux_sym_visibility_token1] = ACTIONS(9419), + [aux_sym_visibility_token2] = ACTIONS(9419), + [aux_sym_elseif_fragment_token1] = ACTIONS(9419), + [aux_sym_else_fragment_token1] = ACTIONS(9419), + [aux_sym_select_statement_token1] = ACTIONS(9419), + [aux_sym__for_header_token1] = ACTIONS(9419), + [aux_sym_do_statement_token1] = ACTIONS(9419), + [aux_sym_do_condition_token1] = ACTIONS(9419), + [aux_sym_with_statement_token1] = ACTIONS(9419), + [aux_sym_exit_statement_token1] = ACTIONS(9419), + [sym_end_statement] = ACTIONS(9421), + [aux_sym_on_goto_statement_token1] = ACTIONS(9419), + [aux_sym_on_goto_statement_token2] = ACTIONS(9419), + [aux_sym_on_error_statement_token2] = ACTIONS(9419), + [sym__ambiguous_redim_statement] = ACTIONS(9421), + [aux_sym_erase_statement_token1] = ACTIONS(9419), + [aux_sym_open_statement_token1] = ACTIONS(9419), + [aux_sym_file_mode_token2] = ACTIONS(9419), + [aux_sym_file_access_token2] = ACTIONS(9419), + [aux_sym_file_lock_token2] = ACTIONS(9419), + [aux_sym_print_statement_token1] = ACTIONS(9419), + [anon_sym_PLUS] = ACTIONS(9421), + [anon_sym_DASH] = ACTIONS(9419), + [anon_sym_QMARK] = ACTIONS(9421), + [aux_sym_close_statement_token1] = ACTIONS(9419), + [aux_sym_put_statement_token1] = ACTIONS(9419), + [aux_sym_unlock_statement_token1] = ACTIONS(9419), + [aux_sym_seek_statement_token1] = ACTIONS(9419), + [sym_reset_statement] = ACTIONS(9419), + [aux_sym_raise_event_statement_token1] = ACTIONS(9419), + [sym_stop_statement] = ACTIONS(9419), + [sym_beep_statement] = ACTIONS(9419), + [aux_sym_unload_statement_token1] = ACTIONS(9419), + [aux_sym_def_type_statement_token1] = ACTIONS(9419), + [aux_sym_def_type_statement_token2] = ACTIONS(9419), + [aux_sym_def_type_statement_token3] = ACTIONS(9419), + [aux_sym_def_type_statement_token4] = ACTIONS(9419), + [aux_sym_def_type_statement_token5] = ACTIONS(9419), + [aux_sym_def_type_statement_token6] = ACTIONS(9419), + [aux_sym_def_type_statement_token7] = ACTIONS(9419), + [aux_sym_def_type_statement_token8] = ACTIONS(9419), + [aux_sym_def_type_statement_token9] = ACTIONS(9419), + [aux_sym_def_type_statement_token10] = ACTIONS(9419), + [aux_sym_def_type_statement_token11] = ACTIONS(9419), + [aux_sym_def_type_statement_token12] = ACTIONS(9419), + [aux_sym_def_type_statement_token13] = ACTIONS(9419), + [aux_sym_def_type_statement_token14] = ACTIONS(9419), + [aux_sym_call_statement_token1] = ACTIONS(9419), + [sym__ambiguous_call_statement] = ACTIONS(9419), + [aux_sym_addressof_expression_token1] = ACTIONS(9419), + [aux_sym_type_of_expression_token1] = ACTIONS(9419), + [aux_sym_unary_expression_token1] = ACTIONS(9419), + [sym_string_literal] = ACTIONS(9421), + [sym_number_literal] = ACTIONS(9421), + [aux_sym_boolean_literal_token1] = ACTIONS(9419), + [aux_sym_boolean_literal_token2] = ACTIONS(9419), + [sym_nothing_literal] = ACTIONS(9419), + [sym_null_literal] = ACTIONS(9419), + [sym_empty_literal] = ACTIONS(9419), + [sym_date_literal] = ACTIONS(9421), + [anon_sym_POUND] = ACTIONS(9419), + }, + [STATE(7233)] = { + [sym_identifier] = ACTIONS(9004), + [sym_newline] = ACTIONS(9006), + [anon_sym_COLON] = ACTIONS(9006), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9004), + [aux_sym_frm_property_statement_token1] = ACTIONS(9004), + [anon_sym_DOT] = ACTIONS(9004), + [anon_sym_BANG] = ACTIONS(9006), + [aux_sym__attribute_identifier_token1] = ACTIONS(9004), + [aux_sym_option_statement_token3] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9004), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9004), + [aux_sym_preprocessor_const_token1] = ACTIONS(9004), + [sym_static_modifier] = ACTIONS(9004), + [sym__dim_keyword] = ACTIONS(9004), + [sym__redim_keyword] = ACTIONS(9004), + [aux_sym_get_accessor_token1] = ACTIONS(9004), + [aux_sym_set_accessor_token1] = ACTIONS(9004), + [aux_sym_const_declaration_token1] = ACTIONS(9004), + [anon_sym_LPAREN] = ACTIONS(9006), + [aux_sym_as_type_clause_token2] = ACTIONS(9004), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9004), + [aux_sym_visibility_token1] = ACTIONS(9004), + [aux_sym_visibility_token2] = ACTIONS(9004), + [aux_sym_elseif_fragment_token1] = ACTIONS(9004), + [aux_sym_else_fragment_token1] = ACTIONS(9004), + [aux_sym_select_statement_token1] = ACTIONS(9004), + [aux_sym__for_header_token1] = ACTIONS(9004), + [aux_sym_do_statement_token1] = ACTIONS(9004), + [aux_sym_do_condition_token1] = ACTIONS(9004), + [aux_sym_with_statement_token1] = ACTIONS(9004), + [aux_sym_exit_statement_token1] = ACTIONS(9004), + [sym_end_statement] = ACTIONS(9006), + [aux_sym_on_goto_statement_token1] = ACTIONS(9004), + [aux_sym_on_goto_statement_token2] = ACTIONS(9004), + [aux_sym_on_error_statement_token2] = ACTIONS(9004), + [sym__ambiguous_redim_statement] = ACTIONS(9006), + [aux_sym_erase_statement_token1] = ACTIONS(9004), + [aux_sym_open_statement_token1] = ACTIONS(9004), + [aux_sym_file_mode_token2] = ACTIONS(9004), + [aux_sym_file_access_token2] = ACTIONS(9004), + [aux_sym_file_lock_token2] = ACTIONS(9004), + [aux_sym_print_statement_token1] = ACTIONS(9004), + [anon_sym_PLUS] = ACTIONS(9006), + [anon_sym_DASH] = ACTIONS(9004), + [anon_sym_QMARK] = ACTIONS(9006), + [aux_sym_close_statement_token1] = ACTIONS(9004), + [aux_sym_put_statement_token1] = ACTIONS(9004), + [aux_sym_unlock_statement_token1] = ACTIONS(9004), + [aux_sym_seek_statement_token1] = ACTIONS(9004), + [sym_reset_statement] = ACTIONS(9004), + [aux_sym_raise_event_statement_token1] = ACTIONS(9004), + [sym_stop_statement] = ACTIONS(9004), + [sym_beep_statement] = ACTIONS(9004), + [aux_sym_unload_statement_token1] = ACTIONS(9004), + [aux_sym_def_type_statement_token1] = ACTIONS(9004), + [aux_sym_def_type_statement_token2] = ACTIONS(9004), + [aux_sym_def_type_statement_token3] = ACTIONS(9004), + [aux_sym_def_type_statement_token4] = ACTIONS(9004), + [aux_sym_def_type_statement_token5] = ACTIONS(9004), + [aux_sym_def_type_statement_token6] = ACTIONS(9004), + [aux_sym_def_type_statement_token7] = ACTIONS(9004), + [aux_sym_def_type_statement_token8] = ACTIONS(9004), + [aux_sym_def_type_statement_token9] = ACTIONS(9004), + [aux_sym_def_type_statement_token10] = ACTIONS(9004), + [aux_sym_def_type_statement_token11] = ACTIONS(9004), + [aux_sym_def_type_statement_token12] = ACTIONS(9004), + [aux_sym_def_type_statement_token13] = ACTIONS(9004), + [aux_sym_def_type_statement_token14] = ACTIONS(9004), + [aux_sym_call_statement_token1] = ACTIONS(9004), + [sym__ambiguous_call_statement] = ACTIONS(9004), + [aux_sym_addressof_expression_token1] = ACTIONS(9004), + [aux_sym_type_of_expression_token1] = ACTIONS(9004), + [aux_sym_unary_expression_token1] = ACTIONS(9004), + [sym_string_literal] = ACTIONS(9006), + [sym_number_literal] = ACTIONS(9006), + [aux_sym_boolean_literal_token1] = ACTIONS(9004), + [aux_sym_boolean_literal_token2] = ACTIONS(9004), + [sym_nothing_literal] = ACTIONS(9004), + [sym_null_literal] = ACTIONS(9004), + [sym_empty_literal] = ACTIONS(9004), + [sym_date_literal] = ACTIONS(9006), + [anon_sym_POUND] = ACTIONS(9004), + }, + [STATE(7234)] = { + [sym_identifier] = ACTIONS(9176), + [sym_newline] = ACTIONS(9178), + [anon_sym_COLON] = ACTIONS(9178), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9176), + [aux_sym_frm_property_statement_token1] = ACTIONS(9176), + [anon_sym_DOT] = ACTIONS(9176), + [anon_sym_BANG] = ACTIONS(9178), + [aux_sym__attribute_identifier_token1] = ACTIONS(9176), + [aux_sym_option_statement_token3] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9176), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9176), + [aux_sym_preprocessor_const_token1] = ACTIONS(9176), + [sym_static_modifier] = ACTIONS(9176), + [sym__dim_keyword] = ACTIONS(9176), + [sym__redim_keyword] = ACTIONS(9176), + [aux_sym_get_accessor_token1] = ACTIONS(9176), + [aux_sym_set_accessor_token1] = ACTIONS(9176), + [aux_sym_const_declaration_token1] = ACTIONS(9176), + [anon_sym_LPAREN] = ACTIONS(9178), + [aux_sym_as_type_clause_token2] = ACTIONS(9176), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9176), + [aux_sym_visibility_token1] = ACTIONS(9176), + [aux_sym_visibility_token2] = ACTIONS(9176), + [aux_sym_elseif_fragment_token1] = ACTIONS(9176), + [aux_sym_else_fragment_token1] = ACTIONS(9176), + [aux_sym_select_statement_token1] = ACTIONS(9176), + [aux_sym__for_header_token1] = ACTIONS(9176), + [aux_sym_do_statement_token1] = ACTIONS(9176), + [aux_sym_do_condition_token1] = ACTIONS(9176), + [aux_sym_with_statement_token1] = ACTIONS(9176), + [aux_sym_exit_statement_token1] = ACTIONS(9176), + [sym_end_statement] = ACTIONS(9178), + [aux_sym_on_goto_statement_token1] = ACTIONS(9176), + [aux_sym_on_goto_statement_token2] = ACTIONS(9176), + [aux_sym_on_error_statement_token2] = ACTIONS(9176), + [sym__ambiguous_redim_statement] = ACTIONS(9178), + [aux_sym_erase_statement_token1] = ACTIONS(9176), + [aux_sym_open_statement_token1] = ACTIONS(9176), + [aux_sym_file_mode_token2] = ACTIONS(9176), + [aux_sym_file_access_token2] = ACTIONS(9176), + [aux_sym_file_lock_token2] = ACTIONS(9176), + [aux_sym_print_statement_token1] = ACTIONS(9176), + [anon_sym_PLUS] = ACTIONS(9178), + [anon_sym_DASH] = ACTIONS(9176), + [anon_sym_QMARK] = ACTIONS(9178), + [aux_sym_close_statement_token1] = ACTIONS(9176), + [aux_sym_put_statement_token1] = ACTIONS(9176), + [aux_sym_unlock_statement_token1] = ACTIONS(9176), + [aux_sym_seek_statement_token1] = ACTIONS(9176), + [sym_reset_statement] = ACTIONS(9176), + [aux_sym_raise_event_statement_token1] = ACTIONS(9176), + [sym_stop_statement] = ACTIONS(9176), + [sym_beep_statement] = ACTIONS(9176), + [aux_sym_unload_statement_token1] = ACTIONS(9176), + [aux_sym_def_type_statement_token1] = ACTIONS(9176), + [aux_sym_def_type_statement_token2] = ACTIONS(9176), + [aux_sym_def_type_statement_token3] = ACTIONS(9176), + [aux_sym_def_type_statement_token4] = ACTIONS(9176), + [aux_sym_def_type_statement_token5] = ACTIONS(9176), + [aux_sym_def_type_statement_token6] = ACTIONS(9176), + [aux_sym_def_type_statement_token7] = ACTIONS(9176), + [aux_sym_def_type_statement_token8] = ACTIONS(9176), + [aux_sym_def_type_statement_token9] = ACTIONS(9176), + [aux_sym_def_type_statement_token10] = ACTIONS(9176), + [aux_sym_def_type_statement_token11] = ACTIONS(9176), + [aux_sym_def_type_statement_token12] = ACTIONS(9176), + [aux_sym_def_type_statement_token13] = ACTIONS(9176), + [aux_sym_def_type_statement_token14] = ACTIONS(9176), + [aux_sym_call_statement_token1] = ACTIONS(9176), + [sym__ambiguous_call_statement] = ACTIONS(9176), + [aux_sym_addressof_expression_token1] = ACTIONS(9176), + [aux_sym_type_of_expression_token1] = ACTIONS(9176), + [aux_sym_unary_expression_token1] = ACTIONS(9176), + [sym_string_literal] = ACTIONS(9178), + [sym_number_literal] = ACTIONS(9178), + [aux_sym_boolean_literal_token1] = ACTIONS(9176), + [aux_sym_boolean_literal_token2] = ACTIONS(9176), + [sym_nothing_literal] = ACTIONS(9176), + [sym_null_literal] = ACTIONS(9176), + [sym_empty_literal] = ACTIONS(9176), + [sym_date_literal] = ACTIONS(9178), + [anon_sym_POUND] = ACTIONS(9176), + }, + [STATE(7235)] = { + [sym_identifier] = ACTIONS(9036), + [sym_newline] = ACTIONS(9038), + [anon_sym_COLON] = ACTIONS(9038), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9036), + [aux_sym_frm_property_statement_token1] = ACTIONS(9036), + [anon_sym_DOT] = ACTIONS(9036), + [anon_sym_BANG] = ACTIONS(9038), + [aux_sym__attribute_identifier_token1] = ACTIONS(9036), + [aux_sym_option_statement_token3] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9036), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9036), + [aux_sym_preprocessor_const_token1] = ACTIONS(9036), + [sym_static_modifier] = ACTIONS(9036), + [sym__dim_keyword] = ACTIONS(9036), + [sym__redim_keyword] = ACTIONS(9036), + [aux_sym_get_accessor_token1] = ACTIONS(9036), + [aux_sym_set_accessor_token1] = ACTIONS(9036), + [aux_sym_const_declaration_token1] = ACTIONS(9036), + [anon_sym_LPAREN] = ACTIONS(9038), + [aux_sym_as_type_clause_token2] = ACTIONS(9036), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9036), + [aux_sym_visibility_token1] = ACTIONS(9036), + [aux_sym_visibility_token2] = ACTIONS(9036), + [aux_sym_elseif_fragment_token1] = ACTIONS(9036), + [aux_sym_else_fragment_token1] = ACTIONS(9036), + [aux_sym_select_statement_token1] = ACTIONS(9036), + [aux_sym__for_header_token1] = ACTIONS(9036), + [aux_sym_do_statement_token1] = ACTIONS(9036), + [aux_sym_do_condition_token1] = ACTIONS(9036), + [aux_sym_with_statement_token1] = ACTIONS(9036), + [aux_sym_exit_statement_token1] = ACTIONS(9036), + [sym_end_statement] = ACTIONS(9038), + [aux_sym_on_goto_statement_token1] = ACTIONS(9036), + [aux_sym_on_goto_statement_token2] = ACTIONS(9036), + [aux_sym_on_error_statement_token2] = ACTIONS(9036), + [sym__ambiguous_redim_statement] = ACTIONS(9038), + [aux_sym_erase_statement_token1] = ACTIONS(9036), + [aux_sym_open_statement_token1] = ACTIONS(9036), + [aux_sym_file_mode_token2] = ACTIONS(9036), + [aux_sym_file_access_token2] = ACTIONS(9036), + [aux_sym_file_lock_token2] = ACTIONS(9036), + [aux_sym_print_statement_token1] = ACTIONS(9036), + [anon_sym_PLUS] = ACTIONS(9038), + [anon_sym_DASH] = ACTIONS(9036), + [anon_sym_QMARK] = ACTIONS(9038), + [aux_sym_close_statement_token1] = ACTIONS(9036), + [aux_sym_put_statement_token1] = ACTIONS(9036), + [aux_sym_unlock_statement_token1] = ACTIONS(9036), + [aux_sym_seek_statement_token1] = ACTIONS(9036), + [sym_reset_statement] = ACTIONS(9036), + [aux_sym_raise_event_statement_token1] = ACTIONS(9036), + [sym_stop_statement] = ACTIONS(9036), + [sym_beep_statement] = ACTIONS(9036), + [aux_sym_unload_statement_token1] = ACTIONS(9036), + [aux_sym_def_type_statement_token1] = ACTIONS(9036), + [aux_sym_def_type_statement_token2] = ACTIONS(9036), + [aux_sym_def_type_statement_token3] = ACTIONS(9036), + [aux_sym_def_type_statement_token4] = ACTIONS(9036), + [aux_sym_def_type_statement_token5] = ACTIONS(9036), + [aux_sym_def_type_statement_token6] = ACTIONS(9036), + [aux_sym_def_type_statement_token7] = ACTIONS(9036), + [aux_sym_def_type_statement_token8] = ACTIONS(9036), + [aux_sym_def_type_statement_token9] = ACTIONS(9036), + [aux_sym_def_type_statement_token10] = ACTIONS(9036), + [aux_sym_def_type_statement_token11] = ACTIONS(9036), + [aux_sym_def_type_statement_token12] = ACTIONS(9036), + [aux_sym_def_type_statement_token13] = ACTIONS(9036), + [aux_sym_def_type_statement_token14] = ACTIONS(9036), + [aux_sym_call_statement_token1] = ACTIONS(9036), + [sym__ambiguous_call_statement] = ACTIONS(9036), + [aux_sym_addressof_expression_token1] = ACTIONS(9036), + [aux_sym_type_of_expression_token1] = ACTIONS(9036), + [aux_sym_unary_expression_token1] = ACTIONS(9036), + [sym_string_literal] = ACTIONS(9038), + [sym_number_literal] = ACTIONS(9038), + [aux_sym_boolean_literal_token1] = ACTIONS(9036), + [aux_sym_boolean_literal_token2] = ACTIONS(9036), + [sym_nothing_literal] = ACTIONS(9036), + [sym_null_literal] = ACTIONS(9036), + [sym_empty_literal] = ACTIONS(9036), + [sym_date_literal] = ACTIONS(9038), + [anon_sym_POUND] = ACTIONS(9036), + }, + [STATE(7236)] = { + [sym_identifier] = ACTIONS(9088), + [sym_newline] = ACTIONS(9090), + [anon_sym_COLON] = ACTIONS(9090), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9088), + [aux_sym_frm_property_statement_token1] = ACTIONS(9088), + [anon_sym_DOT] = ACTIONS(9088), + [anon_sym_BANG] = ACTIONS(9090), + [aux_sym__attribute_identifier_token1] = ACTIONS(9088), + [aux_sym_option_statement_token3] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9088), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9088), + [aux_sym_preprocessor_const_token1] = ACTIONS(9088), + [sym_static_modifier] = ACTIONS(9088), + [sym__dim_keyword] = ACTIONS(9088), + [sym__redim_keyword] = ACTIONS(9088), + [aux_sym_get_accessor_token1] = ACTIONS(9088), + [aux_sym_set_accessor_token1] = ACTIONS(9088), + [aux_sym_const_declaration_token1] = ACTIONS(9088), + [anon_sym_LPAREN] = ACTIONS(9090), + [aux_sym_as_type_clause_token2] = ACTIONS(9088), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9088), + [aux_sym_visibility_token1] = ACTIONS(9088), + [aux_sym_visibility_token2] = ACTIONS(9088), + [aux_sym_elseif_fragment_token1] = ACTIONS(9088), + [aux_sym_else_fragment_token1] = ACTIONS(9088), + [aux_sym_select_statement_token1] = ACTIONS(9088), + [aux_sym__for_header_token1] = ACTIONS(9088), + [aux_sym_do_statement_token1] = ACTIONS(9088), + [aux_sym_do_condition_token1] = ACTIONS(9088), + [aux_sym_with_statement_token1] = ACTIONS(9088), + [aux_sym_exit_statement_token1] = ACTIONS(9088), + [sym_end_statement] = ACTIONS(9090), + [aux_sym_on_goto_statement_token1] = ACTIONS(9088), + [aux_sym_on_goto_statement_token2] = ACTIONS(9088), + [aux_sym_on_error_statement_token2] = ACTIONS(9088), + [sym__ambiguous_redim_statement] = ACTIONS(9090), + [aux_sym_erase_statement_token1] = ACTIONS(9088), + [aux_sym_open_statement_token1] = ACTIONS(9088), + [aux_sym_file_mode_token2] = ACTIONS(9088), + [aux_sym_file_access_token2] = ACTIONS(9088), + [aux_sym_file_lock_token2] = ACTIONS(9088), + [aux_sym_print_statement_token1] = ACTIONS(9088), + [anon_sym_PLUS] = ACTIONS(9090), + [anon_sym_DASH] = ACTIONS(9088), + [anon_sym_QMARK] = ACTIONS(9090), + [aux_sym_close_statement_token1] = ACTIONS(9088), + [aux_sym_put_statement_token1] = ACTIONS(9088), + [aux_sym_unlock_statement_token1] = ACTIONS(9088), + [aux_sym_seek_statement_token1] = ACTIONS(9088), + [sym_reset_statement] = ACTIONS(9088), + [aux_sym_raise_event_statement_token1] = ACTIONS(9088), + [sym_stop_statement] = ACTIONS(9088), + [sym_beep_statement] = ACTIONS(9088), + [aux_sym_unload_statement_token1] = ACTIONS(9088), + [aux_sym_def_type_statement_token1] = ACTIONS(9088), + [aux_sym_def_type_statement_token2] = ACTIONS(9088), + [aux_sym_def_type_statement_token3] = ACTIONS(9088), + [aux_sym_def_type_statement_token4] = ACTIONS(9088), + [aux_sym_def_type_statement_token5] = ACTIONS(9088), + [aux_sym_def_type_statement_token6] = ACTIONS(9088), + [aux_sym_def_type_statement_token7] = ACTIONS(9088), + [aux_sym_def_type_statement_token8] = ACTIONS(9088), + [aux_sym_def_type_statement_token9] = ACTIONS(9088), + [aux_sym_def_type_statement_token10] = ACTIONS(9088), + [aux_sym_def_type_statement_token11] = ACTIONS(9088), + [aux_sym_def_type_statement_token12] = ACTIONS(9088), + [aux_sym_def_type_statement_token13] = ACTIONS(9088), + [aux_sym_def_type_statement_token14] = ACTIONS(9088), + [aux_sym_call_statement_token1] = ACTIONS(9088), + [sym__ambiguous_call_statement] = ACTIONS(9088), + [aux_sym_addressof_expression_token1] = ACTIONS(9088), + [aux_sym_type_of_expression_token1] = ACTIONS(9088), + [aux_sym_unary_expression_token1] = ACTIONS(9088), + [sym_string_literal] = ACTIONS(9090), + [sym_number_literal] = ACTIONS(9090), + [aux_sym_boolean_literal_token1] = ACTIONS(9088), + [aux_sym_boolean_literal_token2] = ACTIONS(9088), + [sym_nothing_literal] = ACTIONS(9088), + [sym_null_literal] = ACTIONS(9088), + [sym_empty_literal] = ACTIONS(9088), + [sym_date_literal] = ACTIONS(9090), + [anon_sym_POUND] = ACTIONS(9088), + }, + [STATE(7237)] = { + [sym_identifier] = ACTIONS(9092), + [sym_newline] = ACTIONS(9094), + [anon_sym_COLON] = ACTIONS(11186), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9092), + [aux_sym_frm_property_statement_token1] = ACTIONS(9092), + [anon_sym_DOT] = ACTIONS(9092), + [anon_sym_BANG] = ACTIONS(9094), + [aux_sym__attribute_identifier_token1] = ACTIONS(9092), + [aux_sym_option_statement_token3] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9092), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9092), + [aux_sym_preprocessor_const_token1] = ACTIONS(9092), + [sym_static_modifier] = ACTIONS(9092), + [sym__dim_keyword] = ACTIONS(9092), + [sym__redim_keyword] = ACTIONS(9092), + [aux_sym_get_accessor_token1] = ACTIONS(9092), + [aux_sym_set_accessor_token1] = ACTIONS(9092), + [aux_sym_const_declaration_token1] = ACTIONS(9092), + [anon_sym_LPAREN] = ACTIONS(9094), + [aux_sym_as_type_clause_token2] = ACTIONS(9092), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9092), + [aux_sym_visibility_token1] = ACTIONS(9092), + [aux_sym_visibility_token2] = ACTIONS(9092), + [aux_sym_elseif_fragment_token1] = ACTIONS(9092), + [aux_sym_else_fragment_token1] = ACTIONS(9092), + [aux_sym_select_statement_token1] = ACTIONS(9092), + [aux_sym__for_header_token1] = ACTIONS(9092), + [aux_sym_do_statement_token1] = ACTIONS(9092), + [aux_sym_do_condition_token1] = ACTIONS(9092), + [aux_sym_with_statement_token1] = ACTIONS(9092), + [aux_sym_exit_statement_token1] = ACTIONS(9092), + [sym_end_statement] = ACTIONS(9094), + [aux_sym_on_goto_statement_token1] = ACTIONS(9092), + [aux_sym_on_goto_statement_token2] = ACTIONS(9092), + [aux_sym_on_error_statement_token2] = ACTIONS(9092), + [sym__ambiguous_redim_statement] = ACTIONS(9094), + [aux_sym_erase_statement_token1] = ACTIONS(9092), + [aux_sym_open_statement_token1] = ACTIONS(9092), + [aux_sym_file_mode_token2] = ACTIONS(9092), + [aux_sym_file_access_token2] = ACTIONS(9092), + [aux_sym_file_lock_token2] = ACTIONS(9092), + [aux_sym_print_statement_token1] = ACTIONS(9092), + [anon_sym_PLUS] = ACTIONS(9094), + [anon_sym_DASH] = ACTIONS(9092), + [anon_sym_QMARK] = ACTIONS(9094), + [aux_sym_close_statement_token1] = ACTIONS(9092), + [aux_sym_put_statement_token1] = ACTIONS(9092), + [aux_sym_unlock_statement_token1] = ACTIONS(9092), + [aux_sym_seek_statement_token1] = ACTIONS(9092), + [sym_reset_statement] = ACTIONS(9092), + [aux_sym_raise_event_statement_token1] = ACTIONS(9092), + [sym_stop_statement] = ACTIONS(9092), + [sym_beep_statement] = ACTIONS(9092), + [aux_sym_unload_statement_token1] = ACTIONS(9092), + [aux_sym_def_type_statement_token1] = ACTIONS(9092), + [aux_sym_def_type_statement_token2] = ACTIONS(9092), + [aux_sym_def_type_statement_token3] = ACTIONS(9092), + [aux_sym_def_type_statement_token4] = ACTIONS(9092), + [aux_sym_def_type_statement_token5] = ACTIONS(9092), + [aux_sym_def_type_statement_token6] = ACTIONS(9092), + [aux_sym_def_type_statement_token7] = ACTIONS(9092), + [aux_sym_def_type_statement_token8] = ACTIONS(9092), + [aux_sym_def_type_statement_token9] = ACTIONS(9092), + [aux_sym_def_type_statement_token10] = ACTIONS(9092), + [aux_sym_def_type_statement_token11] = ACTIONS(9092), + [aux_sym_def_type_statement_token12] = ACTIONS(9092), + [aux_sym_def_type_statement_token13] = ACTIONS(9092), + [aux_sym_def_type_statement_token14] = ACTIONS(9092), + [aux_sym_call_statement_token1] = ACTIONS(9092), + [sym__ambiguous_call_statement] = ACTIONS(9092), + [aux_sym_addressof_expression_token1] = ACTIONS(9092), + [aux_sym_type_of_expression_token1] = ACTIONS(9092), + [aux_sym_unary_expression_token1] = ACTIONS(9092), + [sym_string_literal] = ACTIONS(9094), + [sym_number_literal] = ACTIONS(9094), + [aux_sym_boolean_literal_token1] = ACTIONS(9092), + [aux_sym_boolean_literal_token2] = ACTIONS(9092), + [sym_nothing_literal] = ACTIONS(9092), + [sym_null_literal] = ACTIONS(9092), + [sym_empty_literal] = ACTIONS(9092), + [sym_date_literal] = ACTIONS(9094), + [anon_sym_POUND] = ACTIONS(9092), + }, + [STATE(7238)] = { + [sym_identifier] = ACTIONS(6629), + [sym_newline] = ACTIONS(6631), + [anon_sym_COLON] = ACTIONS(6631), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(6629), + [aux_sym_frm_property_statement_token1] = ACTIONS(6629), + [anon_sym_DOT] = ACTIONS(6629), + [anon_sym_BANG] = ACTIONS(6631), + [aux_sym__attribute_identifier_token1] = ACTIONS(6629), + [aux_sym_option_statement_token3] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(6629), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(6629), + [aux_sym_preprocessor_const_token1] = ACTIONS(6629), + [sym_static_modifier] = ACTIONS(6629), + [sym__dim_keyword] = ACTIONS(6629), + [sym__redim_keyword] = ACTIONS(6629), + [aux_sym_get_accessor_token1] = ACTIONS(6629), + [aux_sym_set_accessor_token1] = ACTIONS(6629), + [aux_sym_const_declaration_token1] = ACTIONS(6629), + [anon_sym_LPAREN] = ACTIONS(6631), + [aux_sym_as_type_clause_token2] = ACTIONS(6629), + [aux_sym_dotted_type_expression_token1] = ACTIONS(6629), + [aux_sym_visibility_token1] = ACTIONS(6629), + [aux_sym_visibility_token2] = ACTIONS(6629), + [aux_sym_elseif_fragment_token1] = ACTIONS(6629), + [aux_sym_else_fragment_token1] = ACTIONS(6629), + [aux_sym_select_statement_token1] = ACTIONS(6629), + [aux_sym__for_header_token1] = ACTIONS(6629), + [aux_sym_do_statement_token1] = ACTIONS(6629), + [aux_sym_do_condition_token1] = ACTIONS(6629), + [aux_sym_with_statement_token1] = ACTIONS(6629), + [aux_sym_exit_statement_token1] = ACTIONS(6629), + [sym_end_statement] = ACTIONS(6631), + [aux_sym_on_goto_statement_token1] = ACTIONS(6629), + [aux_sym_on_goto_statement_token2] = ACTIONS(6629), + [aux_sym_on_error_statement_token2] = ACTIONS(6629), + [sym__ambiguous_redim_statement] = ACTIONS(6631), + [aux_sym_erase_statement_token1] = ACTIONS(6629), + [aux_sym_open_statement_token1] = ACTIONS(6629), + [aux_sym_file_mode_token2] = ACTIONS(6629), + [aux_sym_file_access_token2] = ACTIONS(6629), + [aux_sym_file_lock_token2] = ACTIONS(6629), + [aux_sym_print_statement_token1] = ACTIONS(6629), + [anon_sym_PLUS] = ACTIONS(6631), + [anon_sym_DASH] = ACTIONS(6629), + [anon_sym_QMARK] = ACTIONS(6631), + [aux_sym_close_statement_token1] = ACTIONS(6629), + [aux_sym_put_statement_token1] = ACTIONS(6629), + [aux_sym_unlock_statement_token1] = ACTIONS(6629), + [aux_sym_seek_statement_token1] = ACTIONS(6629), + [sym_reset_statement] = ACTIONS(6629), + [aux_sym_raise_event_statement_token1] = ACTIONS(6629), + [sym_stop_statement] = ACTIONS(6629), + [sym_beep_statement] = ACTIONS(6629), + [aux_sym_unload_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token1] = ACTIONS(6629), + [aux_sym_def_type_statement_token2] = ACTIONS(6629), + [aux_sym_def_type_statement_token3] = ACTIONS(6629), + [aux_sym_def_type_statement_token4] = ACTIONS(6629), + [aux_sym_def_type_statement_token5] = ACTIONS(6629), + [aux_sym_def_type_statement_token6] = ACTIONS(6629), + [aux_sym_def_type_statement_token7] = ACTIONS(6629), + [aux_sym_def_type_statement_token8] = ACTIONS(6629), + [aux_sym_def_type_statement_token9] = ACTIONS(6629), + [aux_sym_def_type_statement_token10] = ACTIONS(6629), + [aux_sym_def_type_statement_token11] = ACTIONS(6629), + [aux_sym_def_type_statement_token12] = ACTIONS(6629), + [aux_sym_def_type_statement_token13] = ACTIONS(6629), + [aux_sym_def_type_statement_token14] = ACTIONS(6629), + [aux_sym_call_statement_token1] = ACTIONS(6629), + [sym__ambiguous_call_statement] = ACTIONS(6629), + [aux_sym_addressof_expression_token1] = ACTIONS(6629), + [aux_sym_type_of_expression_token1] = ACTIONS(6629), + [aux_sym_unary_expression_token1] = ACTIONS(6629), + [sym_string_literal] = ACTIONS(6631), + [sym_number_literal] = ACTIONS(6631), + [aux_sym_boolean_literal_token1] = ACTIONS(6629), + [aux_sym_boolean_literal_token2] = ACTIONS(6629), + [sym_nothing_literal] = ACTIONS(6629), + [sym_null_literal] = ACTIONS(6629), + [sym_empty_literal] = ACTIONS(6629), + [sym_date_literal] = ACTIONS(6631), + [anon_sym_POUND] = ACTIONS(6629), + }, + [STATE(7239)] = { + [sym_identifier] = ACTIONS(8501), + [sym_newline] = ACTIONS(8503), + [anon_sym_COLON] = ACTIONS(8503), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8501), + [aux_sym_frm_property_statement_token1] = ACTIONS(8501), + [anon_sym_DOT] = ACTIONS(8501), + [anon_sym_BANG] = ACTIONS(8503), + [aux_sym__attribute_identifier_token1] = ACTIONS(8501), + [aux_sym_option_statement_token3] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8501), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8501), + [aux_sym_preprocessor_const_token1] = ACTIONS(8501), + [sym_static_modifier] = ACTIONS(8501), + [sym__dim_keyword] = ACTIONS(8501), + [sym__redim_keyword] = ACTIONS(8501), + [aux_sym_get_accessor_token1] = ACTIONS(8501), + [aux_sym_set_accessor_token1] = ACTIONS(8501), + [aux_sym_const_declaration_token1] = ACTIONS(8501), + [anon_sym_LPAREN] = ACTIONS(8503), + [aux_sym_as_type_clause_token2] = ACTIONS(8501), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8501), + [aux_sym_visibility_token1] = ACTIONS(8501), + [aux_sym_visibility_token2] = ACTIONS(8501), + [aux_sym_elseif_fragment_token1] = ACTIONS(8501), + [aux_sym_else_fragment_token1] = ACTIONS(8501), + [aux_sym_select_statement_token1] = ACTIONS(8501), + [aux_sym__for_header_token1] = ACTIONS(8501), + [aux_sym_do_statement_token1] = ACTIONS(8501), + [aux_sym_do_condition_token1] = ACTIONS(8501), + [aux_sym_with_statement_token1] = ACTIONS(8501), + [aux_sym_exit_statement_token1] = ACTIONS(8501), + [sym_end_statement] = ACTIONS(8503), + [aux_sym_on_goto_statement_token1] = ACTIONS(8501), + [aux_sym_on_goto_statement_token2] = ACTIONS(8501), + [aux_sym_on_error_statement_token2] = ACTIONS(8501), + [sym__ambiguous_redim_statement] = ACTIONS(8503), + [aux_sym_erase_statement_token1] = ACTIONS(8501), + [aux_sym_open_statement_token1] = ACTIONS(8501), + [aux_sym_file_mode_token2] = ACTIONS(8501), + [aux_sym_file_access_token2] = ACTIONS(8501), + [aux_sym_file_lock_token2] = ACTIONS(8501), + [aux_sym_print_statement_token1] = ACTIONS(8501), + [anon_sym_PLUS] = ACTIONS(8503), + [anon_sym_DASH] = ACTIONS(8501), + [anon_sym_QMARK] = ACTIONS(8503), + [aux_sym_close_statement_token1] = ACTIONS(8501), + [aux_sym_put_statement_token1] = ACTIONS(8501), + [aux_sym_unlock_statement_token1] = ACTIONS(8501), + [aux_sym_seek_statement_token1] = ACTIONS(8501), + [sym_reset_statement] = ACTIONS(8501), + [aux_sym_raise_event_statement_token1] = ACTIONS(8501), + [sym_stop_statement] = ACTIONS(8501), + [sym_beep_statement] = ACTIONS(8501), + [aux_sym_unload_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token1] = ACTIONS(8501), + [aux_sym_def_type_statement_token2] = ACTIONS(8501), + [aux_sym_def_type_statement_token3] = ACTIONS(8501), + [aux_sym_def_type_statement_token4] = ACTIONS(8501), + [aux_sym_def_type_statement_token5] = ACTIONS(8501), + [aux_sym_def_type_statement_token6] = ACTIONS(8501), + [aux_sym_def_type_statement_token7] = ACTIONS(8501), + [aux_sym_def_type_statement_token8] = ACTIONS(8501), + [aux_sym_def_type_statement_token9] = ACTIONS(8501), + [aux_sym_def_type_statement_token10] = ACTIONS(8501), + [aux_sym_def_type_statement_token11] = ACTIONS(8501), + [aux_sym_def_type_statement_token12] = ACTIONS(8501), + [aux_sym_def_type_statement_token13] = ACTIONS(8501), + [aux_sym_def_type_statement_token14] = ACTIONS(8501), + [aux_sym_call_statement_token1] = ACTIONS(8501), + [sym__ambiguous_call_statement] = ACTIONS(8501), + [aux_sym_addressof_expression_token1] = ACTIONS(8501), + [aux_sym_type_of_expression_token1] = ACTIONS(8501), + [aux_sym_unary_expression_token1] = ACTIONS(8501), + [sym_string_literal] = ACTIONS(8503), + [sym_number_literal] = ACTIONS(8503), + [aux_sym_boolean_literal_token1] = ACTIONS(8501), + [aux_sym_boolean_literal_token2] = ACTIONS(8501), + [sym_nothing_literal] = ACTIONS(8501), + [sym_null_literal] = ACTIONS(8501), + [sym_empty_literal] = ACTIONS(8501), + [sym_date_literal] = ACTIONS(8503), + [anon_sym_POUND] = ACTIONS(8501), + }, + [STATE(7240)] = { + [sym_identifier] = ACTIONS(9684), + [sym_newline] = ACTIONS(9686), + [anon_sym_COLON] = ACTIONS(9686), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9684), + [aux_sym_frm_property_statement_token1] = ACTIONS(9684), + [anon_sym_DOT] = ACTIONS(9684), + [anon_sym_BANG] = ACTIONS(9686), + [aux_sym__attribute_identifier_token1] = ACTIONS(9684), + [aux_sym_option_statement_token3] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9684), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9684), + [aux_sym_preprocessor_const_token1] = ACTIONS(9684), + [sym_static_modifier] = ACTIONS(9684), + [sym__dim_keyword] = ACTIONS(9684), + [sym__redim_keyword] = ACTIONS(9684), + [aux_sym_get_accessor_token1] = ACTIONS(9684), + [aux_sym_set_accessor_token1] = ACTIONS(9684), + [aux_sym_const_declaration_token1] = ACTIONS(9684), + [anon_sym_LPAREN] = ACTIONS(9686), + [aux_sym_as_type_clause_token2] = ACTIONS(9684), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9684), + [aux_sym_visibility_token1] = ACTIONS(9684), + [aux_sym_visibility_token2] = ACTIONS(9684), + [aux_sym_elseif_fragment_token1] = ACTIONS(9684), + [aux_sym_else_fragment_token1] = ACTIONS(9684), + [aux_sym_select_statement_token1] = ACTIONS(9684), + [aux_sym__for_header_token1] = ACTIONS(9684), + [aux_sym_do_statement_token1] = ACTIONS(9684), + [aux_sym_do_condition_token1] = ACTIONS(9684), + [aux_sym_with_statement_token1] = ACTIONS(9684), + [aux_sym_exit_statement_token1] = ACTIONS(9684), + [sym_end_statement] = ACTIONS(9686), + [aux_sym_on_goto_statement_token1] = ACTIONS(9684), + [aux_sym_on_goto_statement_token2] = ACTIONS(9684), + [aux_sym_on_error_statement_token2] = ACTIONS(9684), + [sym__ambiguous_redim_statement] = ACTIONS(9686), + [aux_sym_erase_statement_token1] = ACTIONS(9684), + [aux_sym_open_statement_token1] = ACTIONS(9684), + [aux_sym_file_mode_token2] = ACTIONS(9684), + [aux_sym_file_access_token2] = ACTIONS(9684), + [aux_sym_file_lock_token2] = ACTIONS(9684), + [aux_sym_print_statement_token1] = ACTIONS(9684), + [anon_sym_PLUS] = ACTIONS(9686), + [anon_sym_DASH] = ACTIONS(9684), + [anon_sym_QMARK] = ACTIONS(9686), + [aux_sym_close_statement_token1] = ACTIONS(9684), + [aux_sym_put_statement_token1] = ACTIONS(9684), + [aux_sym_unlock_statement_token1] = ACTIONS(9684), + [aux_sym_seek_statement_token1] = ACTIONS(9684), + [sym_reset_statement] = ACTIONS(9684), + [aux_sym_raise_event_statement_token1] = ACTIONS(9684), + [sym_stop_statement] = ACTIONS(9684), + [sym_beep_statement] = ACTIONS(9684), + [aux_sym_unload_statement_token1] = ACTIONS(9684), + [aux_sym_def_type_statement_token1] = ACTIONS(9684), + [aux_sym_def_type_statement_token2] = ACTIONS(9684), + [aux_sym_def_type_statement_token3] = ACTIONS(9684), + [aux_sym_def_type_statement_token4] = ACTIONS(9684), + [aux_sym_def_type_statement_token5] = ACTIONS(9684), + [aux_sym_def_type_statement_token6] = ACTIONS(9684), + [aux_sym_def_type_statement_token7] = ACTIONS(9684), + [aux_sym_def_type_statement_token8] = ACTIONS(9684), + [aux_sym_def_type_statement_token9] = ACTIONS(9684), + [aux_sym_def_type_statement_token10] = ACTIONS(9684), + [aux_sym_def_type_statement_token11] = ACTIONS(9684), + [aux_sym_def_type_statement_token12] = ACTIONS(9684), + [aux_sym_def_type_statement_token13] = ACTIONS(9684), + [aux_sym_def_type_statement_token14] = ACTIONS(9684), + [aux_sym_call_statement_token1] = ACTIONS(9684), + [sym__ambiguous_call_statement] = ACTIONS(9684), + [aux_sym_addressof_expression_token1] = ACTIONS(9684), + [aux_sym_type_of_expression_token1] = ACTIONS(9684), + [aux_sym_unary_expression_token1] = ACTIONS(9684), + [sym_string_literal] = ACTIONS(9686), + [sym_number_literal] = ACTIONS(9686), + [aux_sym_boolean_literal_token1] = ACTIONS(9684), + [aux_sym_boolean_literal_token2] = ACTIONS(9684), + [sym_nothing_literal] = ACTIONS(9684), + [sym_null_literal] = ACTIONS(9684), + [sym_empty_literal] = ACTIONS(9684), + [sym_date_literal] = ACTIONS(9686), + [anon_sym_POUND] = ACTIONS(9684), + }, + [STATE(7241)] = { + [sym_identifier] = ACTIONS(9180), + [sym_newline] = ACTIONS(9182), + [anon_sym_COLON] = ACTIONS(9182), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9180), + [aux_sym_frm_property_statement_token1] = ACTIONS(9180), + [anon_sym_DOT] = ACTIONS(9180), + [anon_sym_BANG] = ACTIONS(9182), + [aux_sym__attribute_identifier_token1] = ACTIONS(9180), + [aux_sym_option_statement_token3] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9180), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9180), + [aux_sym_preprocessor_const_token1] = ACTIONS(9180), + [sym_static_modifier] = ACTIONS(9180), + [sym__dim_keyword] = ACTIONS(9180), + [sym__redim_keyword] = ACTIONS(9180), + [aux_sym_get_accessor_token1] = ACTIONS(9180), + [aux_sym_set_accessor_token1] = ACTIONS(9180), + [aux_sym_const_declaration_token1] = ACTIONS(9180), + [anon_sym_LPAREN] = ACTIONS(9182), + [aux_sym_as_type_clause_token2] = ACTIONS(9180), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9180), + [aux_sym_visibility_token1] = ACTIONS(9180), + [aux_sym_visibility_token2] = ACTIONS(9180), + [aux_sym_elseif_fragment_token1] = ACTIONS(9180), + [aux_sym_else_fragment_token1] = ACTIONS(9180), + [aux_sym_select_statement_token1] = ACTIONS(9180), + [aux_sym__for_header_token1] = ACTIONS(9180), + [aux_sym_do_statement_token1] = ACTIONS(9180), + [aux_sym_do_condition_token1] = ACTIONS(9180), + [aux_sym_with_statement_token1] = ACTIONS(9180), + [aux_sym_exit_statement_token1] = ACTIONS(9180), + [sym_end_statement] = ACTIONS(9182), + [aux_sym_on_goto_statement_token1] = ACTIONS(9180), + [aux_sym_on_goto_statement_token2] = ACTIONS(9180), + [aux_sym_on_error_statement_token2] = ACTIONS(9180), + [sym__ambiguous_redim_statement] = ACTIONS(9182), + [aux_sym_erase_statement_token1] = ACTIONS(9180), + [aux_sym_open_statement_token1] = ACTIONS(9180), + [aux_sym_file_mode_token2] = ACTIONS(9180), + [aux_sym_file_access_token2] = ACTIONS(9180), + [aux_sym_file_lock_token2] = ACTIONS(9180), + [aux_sym_print_statement_token1] = ACTIONS(9180), + [anon_sym_PLUS] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9180), + [anon_sym_QMARK] = ACTIONS(9182), + [aux_sym_close_statement_token1] = ACTIONS(9180), + [aux_sym_put_statement_token1] = ACTIONS(9180), + [aux_sym_unlock_statement_token1] = ACTIONS(9180), + [aux_sym_seek_statement_token1] = ACTIONS(9180), + [sym_reset_statement] = ACTIONS(9180), + [aux_sym_raise_event_statement_token1] = ACTIONS(9180), + [sym_stop_statement] = ACTIONS(9180), + [sym_beep_statement] = ACTIONS(9180), + [aux_sym_unload_statement_token1] = ACTIONS(9180), + [aux_sym_def_type_statement_token1] = ACTIONS(9180), + [aux_sym_def_type_statement_token2] = ACTIONS(9180), + [aux_sym_def_type_statement_token3] = ACTIONS(9180), + [aux_sym_def_type_statement_token4] = ACTIONS(9180), + [aux_sym_def_type_statement_token5] = ACTIONS(9180), + [aux_sym_def_type_statement_token6] = ACTIONS(9180), + [aux_sym_def_type_statement_token7] = ACTIONS(9180), + [aux_sym_def_type_statement_token8] = ACTIONS(9180), + [aux_sym_def_type_statement_token9] = ACTIONS(9180), + [aux_sym_def_type_statement_token10] = ACTIONS(9180), + [aux_sym_def_type_statement_token11] = ACTIONS(9180), + [aux_sym_def_type_statement_token12] = ACTIONS(9180), + [aux_sym_def_type_statement_token13] = ACTIONS(9180), + [aux_sym_def_type_statement_token14] = ACTIONS(9180), + [aux_sym_call_statement_token1] = ACTIONS(9180), + [sym__ambiguous_call_statement] = ACTIONS(9180), + [aux_sym_addressof_expression_token1] = ACTIONS(9180), + [aux_sym_type_of_expression_token1] = ACTIONS(9180), + [aux_sym_unary_expression_token1] = ACTIONS(9180), + [sym_string_literal] = ACTIONS(9182), + [sym_number_literal] = ACTIONS(9182), + [aux_sym_boolean_literal_token1] = ACTIONS(9180), + [aux_sym_boolean_literal_token2] = ACTIONS(9180), + [sym_nothing_literal] = ACTIONS(9180), + [sym_null_literal] = ACTIONS(9180), + [sym_empty_literal] = ACTIONS(9180), + [sym_date_literal] = ACTIONS(9182), + [anon_sym_POUND] = ACTIONS(9180), + }, + [STATE(7242)] = { + [sym_identifier] = ACTIONS(9688), + [sym_newline] = ACTIONS(9690), + [anon_sym_COLON] = ACTIONS(9690), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9688), + [aux_sym_frm_property_statement_token1] = ACTIONS(9688), + [anon_sym_DOT] = ACTIONS(9688), + [anon_sym_BANG] = ACTIONS(9690), + [aux_sym__attribute_identifier_token1] = ACTIONS(9688), + [aux_sym_option_statement_token3] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9688), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9688), + [aux_sym_preprocessor_const_token1] = ACTIONS(9688), + [sym_static_modifier] = ACTIONS(9688), + [sym__dim_keyword] = ACTIONS(9688), + [sym__redim_keyword] = ACTIONS(9688), + [aux_sym_get_accessor_token1] = ACTIONS(9688), + [aux_sym_set_accessor_token1] = ACTIONS(9688), + [aux_sym_const_declaration_token1] = ACTIONS(9688), + [anon_sym_LPAREN] = ACTIONS(9690), + [aux_sym_as_type_clause_token2] = ACTIONS(9688), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9688), + [aux_sym_visibility_token1] = ACTIONS(9688), + [aux_sym_visibility_token2] = ACTIONS(9688), + [aux_sym_elseif_fragment_token1] = ACTIONS(9688), + [aux_sym_else_fragment_token1] = ACTIONS(9688), + [aux_sym_select_statement_token1] = ACTIONS(9688), + [aux_sym__for_header_token1] = ACTIONS(9688), + [aux_sym_do_statement_token1] = ACTIONS(9688), + [aux_sym_do_condition_token1] = ACTIONS(9688), + [aux_sym_with_statement_token1] = ACTIONS(9688), + [aux_sym_exit_statement_token1] = ACTIONS(9688), + [sym_end_statement] = ACTIONS(9690), + [aux_sym_on_goto_statement_token1] = ACTIONS(9688), + [aux_sym_on_goto_statement_token2] = ACTIONS(9688), + [aux_sym_on_error_statement_token2] = ACTIONS(9688), + [sym__ambiguous_redim_statement] = ACTIONS(9690), + [aux_sym_erase_statement_token1] = ACTIONS(9688), + [aux_sym_open_statement_token1] = ACTIONS(9688), + [aux_sym_file_mode_token2] = ACTIONS(9688), + [aux_sym_file_access_token2] = ACTIONS(9688), + [aux_sym_file_lock_token2] = ACTIONS(9688), + [aux_sym_print_statement_token1] = ACTIONS(9688), + [anon_sym_PLUS] = ACTIONS(9690), + [anon_sym_DASH] = ACTIONS(9688), + [anon_sym_QMARK] = ACTIONS(9690), + [aux_sym_close_statement_token1] = ACTIONS(9688), + [aux_sym_put_statement_token1] = ACTIONS(9688), + [aux_sym_unlock_statement_token1] = ACTIONS(9688), + [aux_sym_seek_statement_token1] = ACTIONS(9688), + [sym_reset_statement] = ACTIONS(9688), + [aux_sym_raise_event_statement_token1] = ACTIONS(9688), + [sym_stop_statement] = ACTIONS(9688), + [sym_beep_statement] = ACTIONS(9688), + [aux_sym_unload_statement_token1] = ACTIONS(9688), + [aux_sym_def_type_statement_token1] = ACTIONS(9688), + [aux_sym_def_type_statement_token2] = ACTIONS(9688), + [aux_sym_def_type_statement_token3] = ACTIONS(9688), + [aux_sym_def_type_statement_token4] = ACTIONS(9688), + [aux_sym_def_type_statement_token5] = ACTIONS(9688), + [aux_sym_def_type_statement_token6] = ACTIONS(9688), + [aux_sym_def_type_statement_token7] = ACTIONS(9688), + [aux_sym_def_type_statement_token8] = ACTIONS(9688), + [aux_sym_def_type_statement_token9] = ACTIONS(9688), + [aux_sym_def_type_statement_token10] = ACTIONS(9688), + [aux_sym_def_type_statement_token11] = ACTIONS(9688), + [aux_sym_def_type_statement_token12] = ACTIONS(9688), + [aux_sym_def_type_statement_token13] = ACTIONS(9688), + [aux_sym_def_type_statement_token14] = ACTIONS(9688), + [aux_sym_call_statement_token1] = ACTIONS(9688), + [sym__ambiguous_call_statement] = ACTIONS(9688), + [aux_sym_addressof_expression_token1] = ACTIONS(9688), + [aux_sym_type_of_expression_token1] = ACTIONS(9688), + [aux_sym_unary_expression_token1] = ACTIONS(9688), + [sym_string_literal] = ACTIONS(9690), + [sym_number_literal] = ACTIONS(9690), + [aux_sym_boolean_literal_token1] = ACTIONS(9688), + [aux_sym_boolean_literal_token2] = ACTIONS(9688), + [sym_nothing_literal] = ACTIONS(9688), + [sym_null_literal] = ACTIONS(9688), + [sym_empty_literal] = ACTIONS(9688), + [sym_date_literal] = ACTIONS(9690), + [anon_sym_POUND] = ACTIONS(9688), + }, + [STATE(7243)] = { + [sym_identifier] = ACTIONS(9268), + [sym_newline] = ACTIONS(9270), + [anon_sym_COLON] = ACTIONS(9270), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9268), + [aux_sym_frm_property_statement_token1] = ACTIONS(9268), + [anon_sym_DOT] = ACTIONS(9268), + [anon_sym_BANG] = ACTIONS(9270), + [aux_sym__attribute_identifier_token1] = ACTIONS(9268), + [aux_sym_option_statement_token3] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9268), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9268), + [aux_sym_preprocessor_const_token1] = ACTIONS(9268), + [sym_static_modifier] = ACTIONS(9268), + [sym__dim_keyword] = ACTIONS(9268), + [sym__redim_keyword] = ACTIONS(9268), + [aux_sym_get_accessor_token1] = ACTIONS(9268), + [aux_sym_set_accessor_token1] = ACTIONS(9268), + [aux_sym_const_declaration_token1] = ACTIONS(9268), + [anon_sym_LPAREN] = ACTIONS(9270), + [aux_sym_as_type_clause_token2] = ACTIONS(9268), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9268), + [aux_sym_visibility_token1] = ACTIONS(9268), + [aux_sym_visibility_token2] = ACTIONS(9268), + [aux_sym_elseif_fragment_token1] = ACTIONS(9268), + [aux_sym_else_fragment_token1] = ACTIONS(9268), + [aux_sym_select_statement_token1] = ACTIONS(9268), + [aux_sym__for_header_token1] = ACTIONS(9268), + [aux_sym_do_statement_token1] = ACTIONS(9268), + [aux_sym_do_condition_token1] = ACTIONS(9268), + [aux_sym_with_statement_token1] = ACTIONS(9268), + [aux_sym_exit_statement_token1] = ACTIONS(9268), + [sym_end_statement] = ACTIONS(9270), + [aux_sym_on_goto_statement_token1] = ACTIONS(9268), + [aux_sym_on_goto_statement_token2] = ACTIONS(9268), + [aux_sym_on_error_statement_token2] = ACTIONS(9268), + [sym__ambiguous_redim_statement] = ACTIONS(9270), + [aux_sym_erase_statement_token1] = ACTIONS(9268), + [aux_sym_open_statement_token1] = ACTIONS(9268), + [aux_sym_file_mode_token2] = ACTIONS(9268), + [aux_sym_file_access_token2] = ACTIONS(9268), + [aux_sym_file_lock_token2] = ACTIONS(9268), + [aux_sym_print_statement_token1] = ACTIONS(9268), + [anon_sym_PLUS] = ACTIONS(9270), + [anon_sym_DASH] = ACTIONS(9268), + [anon_sym_QMARK] = ACTIONS(9270), + [aux_sym_close_statement_token1] = ACTIONS(9268), + [aux_sym_put_statement_token1] = ACTIONS(9268), + [aux_sym_unlock_statement_token1] = ACTIONS(9268), + [aux_sym_seek_statement_token1] = ACTIONS(9268), + [sym_reset_statement] = ACTIONS(9268), + [aux_sym_raise_event_statement_token1] = ACTIONS(9268), + [sym_stop_statement] = ACTIONS(9268), + [sym_beep_statement] = ACTIONS(9268), + [aux_sym_unload_statement_token1] = ACTIONS(9268), + [aux_sym_def_type_statement_token1] = ACTIONS(9268), + [aux_sym_def_type_statement_token2] = ACTIONS(9268), + [aux_sym_def_type_statement_token3] = ACTIONS(9268), + [aux_sym_def_type_statement_token4] = ACTIONS(9268), + [aux_sym_def_type_statement_token5] = ACTIONS(9268), + [aux_sym_def_type_statement_token6] = ACTIONS(9268), + [aux_sym_def_type_statement_token7] = ACTIONS(9268), + [aux_sym_def_type_statement_token8] = ACTIONS(9268), + [aux_sym_def_type_statement_token9] = ACTIONS(9268), + [aux_sym_def_type_statement_token10] = ACTIONS(9268), + [aux_sym_def_type_statement_token11] = ACTIONS(9268), + [aux_sym_def_type_statement_token12] = ACTIONS(9268), + [aux_sym_def_type_statement_token13] = ACTIONS(9268), + [aux_sym_def_type_statement_token14] = ACTIONS(9268), + [aux_sym_call_statement_token1] = ACTIONS(9268), + [sym__ambiguous_call_statement] = ACTIONS(9268), + [aux_sym_addressof_expression_token1] = ACTIONS(9268), + [aux_sym_type_of_expression_token1] = ACTIONS(9268), + [aux_sym_unary_expression_token1] = ACTIONS(9268), + [sym_string_literal] = ACTIONS(9270), + [sym_number_literal] = ACTIONS(9270), + [aux_sym_boolean_literal_token1] = ACTIONS(9268), + [aux_sym_boolean_literal_token2] = ACTIONS(9268), + [sym_nothing_literal] = ACTIONS(9268), + [sym_null_literal] = ACTIONS(9268), + [sym_empty_literal] = ACTIONS(9268), + [sym_date_literal] = ACTIONS(9270), + [anon_sym_POUND] = ACTIONS(9268), + }, + [STATE(7244)] = { + [sym_identifier] = ACTIONS(9016), + [sym_newline] = ACTIONS(9018), + [anon_sym_COLON] = ACTIONS(9018), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9016), + [aux_sym_frm_property_statement_token1] = ACTIONS(9016), + [anon_sym_DOT] = ACTIONS(9016), + [anon_sym_BANG] = ACTIONS(9018), + [aux_sym__attribute_identifier_token1] = ACTIONS(9016), + [aux_sym_option_statement_token3] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9016), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9016), + [aux_sym_preprocessor_const_token1] = ACTIONS(9016), + [sym_static_modifier] = ACTIONS(9016), + [sym__dim_keyword] = ACTIONS(9016), + [sym__redim_keyword] = ACTIONS(9016), + [aux_sym_get_accessor_token1] = ACTIONS(9016), + [aux_sym_set_accessor_token1] = ACTIONS(9016), + [aux_sym_const_declaration_token1] = ACTIONS(9016), + [anon_sym_LPAREN] = ACTIONS(9018), + [aux_sym_as_type_clause_token2] = ACTIONS(9016), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9016), + [aux_sym_visibility_token1] = ACTIONS(9016), + [aux_sym_visibility_token2] = ACTIONS(9016), + [aux_sym_elseif_fragment_token1] = ACTIONS(9016), + [aux_sym_else_fragment_token1] = ACTIONS(9016), + [aux_sym_select_statement_token1] = ACTIONS(9016), + [aux_sym__for_header_token1] = ACTIONS(9016), + [aux_sym_do_statement_token1] = ACTIONS(9016), + [aux_sym_do_condition_token1] = ACTIONS(9016), + [aux_sym_with_statement_token1] = ACTIONS(9016), + [aux_sym_exit_statement_token1] = ACTIONS(9016), + [sym_end_statement] = ACTIONS(9018), + [aux_sym_on_goto_statement_token1] = ACTIONS(9016), + [aux_sym_on_goto_statement_token2] = ACTIONS(9016), + [aux_sym_on_error_statement_token2] = ACTIONS(9016), + [sym__ambiguous_redim_statement] = ACTIONS(9018), + [aux_sym_erase_statement_token1] = ACTIONS(9016), + [aux_sym_open_statement_token1] = ACTIONS(9016), + [aux_sym_file_mode_token2] = ACTIONS(9016), + [aux_sym_file_access_token2] = ACTIONS(9016), + [aux_sym_file_lock_token2] = ACTIONS(9016), + [aux_sym_print_statement_token1] = ACTIONS(9016), + [anon_sym_PLUS] = ACTIONS(9018), + [anon_sym_DASH] = ACTIONS(9016), + [anon_sym_QMARK] = ACTIONS(9018), + [aux_sym_close_statement_token1] = ACTIONS(9016), + [aux_sym_put_statement_token1] = ACTIONS(9016), + [aux_sym_unlock_statement_token1] = ACTIONS(9016), + [aux_sym_seek_statement_token1] = ACTIONS(9016), + [sym_reset_statement] = ACTIONS(9016), + [aux_sym_raise_event_statement_token1] = ACTIONS(9016), + [sym_stop_statement] = ACTIONS(9016), + [sym_beep_statement] = ACTIONS(9016), + [aux_sym_unload_statement_token1] = ACTIONS(9016), + [aux_sym_def_type_statement_token1] = ACTIONS(9016), + [aux_sym_def_type_statement_token2] = ACTIONS(9016), + [aux_sym_def_type_statement_token3] = ACTIONS(9016), + [aux_sym_def_type_statement_token4] = ACTIONS(9016), + [aux_sym_def_type_statement_token5] = ACTIONS(9016), + [aux_sym_def_type_statement_token6] = ACTIONS(9016), + [aux_sym_def_type_statement_token7] = ACTIONS(9016), + [aux_sym_def_type_statement_token8] = ACTIONS(9016), + [aux_sym_def_type_statement_token9] = ACTIONS(9016), + [aux_sym_def_type_statement_token10] = ACTIONS(9016), + [aux_sym_def_type_statement_token11] = ACTIONS(9016), + [aux_sym_def_type_statement_token12] = ACTIONS(9016), + [aux_sym_def_type_statement_token13] = ACTIONS(9016), + [aux_sym_def_type_statement_token14] = ACTIONS(9016), + [aux_sym_call_statement_token1] = ACTIONS(9016), + [sym__ambiguous_call_statement] = ACTIONS(9016), + [aux_sym_addressof_expression_token1] = ACTIONS(9016), + [aux_sym_type_of_expression_token1] = ACTIONS(9016), + [aux_sym_unary_expression_token1] = ACTIONS(9016), + [sym_string_literal] = ACTIONS(9018), + [sym_number_literal] = ACTIONS(9018), + [aux_sym_boolean_literal_token1] = ACTIONS(9016), + [aux_sym_boolean_literal_token2] = ACTIONS(9016), + [sym_nothing_literal] = ACTIONS(9016), + [sym_null_literal] = ACTIONS(9016), + [sym_empty_literal] = ACTIONS(9016), + [sym_date_literal] = ACTIONS(9018), + [anon_sym_POUND] = ACTIONS(9016), + }, + [STATE(7245)] = { + [sym_identifier] = ACTIONS(8935), + [sym_newline] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(8937), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8935), + [aux_sym_frm_property_statement_token1] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8935), + [anon_sym_BANG] = ACTIONS(8937), + [aux_sym__attribute_identifier_token1] = ACTIONS(8935), + [aux_sym_option_statement_token3] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8935), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8935), + [aux_sym_preprocessor_const_token1] = ACTIONS(8935), + [sym_static_modifier] = ACTIONS(8935), + [sym__dim_keyword] = ACTIONS(8935), + [sym__redim_keyword] = ACTIONS(8935), + [aux_sym_get_accessor_token1] = ACTIONS(8935), + [aux_sym_set_accessor_token1] = ACTIONS(8935), + [aux_sym_const_declaration_token1] = ACTIONS(8935), + [anon_sym_LPAREN] = ACTIONS(8937), + [aux_sym_as_type_clause_token2] = ACTIONS(8935), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8935), + [aux_sym_visibility_token1] = ACTIONS(8935), + [aux_sym_visibility_token2] = ACTIONS(8935), + [aux_sym_elseif_fragment_token1] = ACTIONS(8935), + [aux_sym_else_fragment_token1] = ACTIONS(8935), + [aux_sym_select_statement_token1] = ACTIONS(8935), + [aux_sym__for_header_token1] = ACTIONS(8935), + [aux_sym_do_statement_token1] = ACTIONS(8935), + [aux_sym_do_condition_token1] = ACTIONS(8935), + [aux_sym_with_statement_token1] = ACTIONS(8935), + [aux_sym_exit_statement_token1] = ACTIONS(8935), + [sym_end_statement] = ACTIONS(8937), + [aux_sym_on_goto_statement_token1] = ACTIONS(8935), + [aux_sym_on_goto_statement_token2] = ACTIONS(8935), + [aux_sym_on_error_statement_token2] = ACTIONS(8935), + [sym__ambiguous_redim_statement] = ACTIONS(8937), + [aux_sym_erase_statement_token1] = ACTIONS(8935), + [aux_sym_open_statement_token1] = ACTIONS(8935), + [aux_sym_file_mode_token2] = ACTIONS(8935), + [aux_sym_file_access_token2] = ACTIONS(8935), + [aux_sym_file_lock_token2] = ACTIONS(8935), + [aux_sym_print_statement_token1] = ACTIONS(8935), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_DASH] = ACTIONS(8935), + [anon_sym_QMARK] = ACTIONS(8937), + [aux_sym_close_statement_token1] = ACTIONS(8935), + [aux_sym_put_statement_token1] = ACTIONS(8935), + [aux_sym_unlock_statement_token1] = ACTIONS(8935), + [aux_sym_seek_statement_token1] = ACTIONS(8935), + [sym_reset_statement] = ACTIONS(8935), + [aux_sym_raise_event_statement_token1] = ACTIONS(8935), + [sym_stop_statement] = ACTIONS(8935), + [sym_beep_statement] = ACTIONS(8935), + [aux_sym_unload_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token1] = ACTIONS(8935), + [aux_sym_def_type_statement_token2] = ACTIONS(8935), + [aux_sym_def_type_statement_token3] = ACTIONS(8935), + [aux_sym_def_type_statement_token4] = ACTIONS(8935), + [aux_sym_def_type_statement_token5] = ACTIONS(8935), + [aux_sym_def_type_statement_token6] = ACTIONS(8935), + [aux_sym_def_type_statement_token7] = ACTIONS(8935), + [aux_sym_def_type_statement_token8] = ACTIONS(8935), + [aux_sym_def_type_statement_token9] = ACTIONS(8935), + [aux_sym_def_type_statement_token10] = ACTIONS(8935), + [aux_sym_def_type_statement_token11] = ACTIONS(8935), + [aux_sym_def_type_statement_token12] = ACTIONS(8935), + [aux_sym_def_type_statement_token13] = ACTIONS(8935), + [aux_sym_def_type_statement_token14] = ACTIONS(8935), + [aux_sym_call_statement_token1] = ACTIONS(8935), + [sym__ambiguous_call_statement] = ACTIONS(8935), + [aux_sym_addressof_expression_token1] = ACTIONS(8935), + [aux_sym_type_of_expression_token1] = ACTIONS(8935), + [aux_sym_unary_expression_token1] = ACTIONS(8935), + [sym_string_literal] = ACTIONS(8937), + [sym_number_literal] = ACTIONS(8937), + [aux_sym_boolean_literal_token1] = ACTIONS(8935), + [aux_sym_boolean_literal_token2] = ACTIONS(8935), + [sym_nothing_literal] = ACTIONS(8935), + [sym_null_literal] = ACTIONS(8935), + [sym_empty_literal] = ACTIONS(8935), + [sym_date_literal] = ACTIONS(8937), + [anon_sym_POUND] = ACTIONS(8935), + }, + [STATE(7246)] = { + [sym_identifier] = ACTIONS(8509), + [sym_newline] = ACTIONS(8511), + [anon_sym_COLON] = ACTIONS(8511), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8509), + [aux_sym_frm_property_statement_token1] = ACTIONS(8509), + [anon_sym_DOT] = ACTIONS(8509), + [anon_sym_BANG] = ACTIONS(8511), + [aux_sym__attribute_identifier_token1] = ACTIONS(8509), + [aux_sym_option_statement_token3] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8509), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8509), + [aux_sym_preprocessor_const_token1] = ACTIONS(8509), + [sym_static_modifier] = ACTIONS(8509), + [sym__dim_keyword] = ACTIONS(8509), + [sym__redim_keyword] = ACTIONS(8509), + [aux_sym_get_accessor_token1] = ACTIONS(8509), + [aux_sym_set_accessor_token1] = ACTIONS(8509), + [aux_sym_const_declaration_token1] = ACTIONS(8509), + [anon_sym_LPAREN] = ACTIONS(8511), + [aux_sym_as_type_clause_token2] = ACTIONS(8509), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8509), + [aux_sym_visibility_token1] = ACTIONS(8509), + [aux_sym_visibility_token2] = ACTIONS(8509), + [aux_sym_elseif_fragment_token1] = ACTIONS(8509), + [aux_sym_else_fragment_token1] = ACTIONS(8509), + [aux_sym_select_statement_token1] = ACTIONS(8509), + [aux_sym__for_header_token1] = ACTIONS(8509), + [aux_sym_do_statement_token1] = ACTIONS(8509), + [aux_sym_do_condition_token1] = ACTIONS(8509), + [aux_sym_with_statement_token1] = ACTIONS(8509), + [aux_sym_exit_statement_token1] = ACTIONS(8509), + [sym_end_statement] = ACTIONS(8511), + [aux_sym_on_goto_statement_token1] = ACTIONS(8509), + [aux_sym_on_goto_statement_token2] = ACTIONS(8509), + [aux_sym_on_error_statement_token2] = ACTIONS(8509), + [sym__ambiguous_redim_statement] = ACTIONS(8511), + [aux_sym_erase_statement_token1] = ACTIONS(8509), + [aux_sym_open_statement_token1] = ACTIONS(8509), + [aux_sym_file_mode_token2] = ACTIONS(8509), + [aux_sym_file_access_token2] = ACTIONS(8509), + [aux_sym_file_lock_token2] = ACTIONS(8509), + [aux_sym_print_statement_token1] = ACTIONS(8509), + [anon_sym_PLUS] = ACTIONS(8511), + [anon_sym_DASH] = ACTIONS(8509), + [anon_sym_QMARK] = ACTIONS(8511), + [aux_sym_close_statement_token1] = ACTIONS(8509), + [aux_sym_put_statement_token1] = ACTIONS(8509), + [aux_sym_unlock_statement_token1] = ACTIONS(8509), + [aux_sym_seek_statement_token1] = ACTIONS(8509), + [sym_reset_statement] = ACTIONS(8509), + [aux_sym_raise_event_statement_token1] = ACTIONS(8509), + [sym_stop_statement] = ACTIONS(8509), + [sym_beep_statement] = ACTIONS(8509), + [aux_sym_unload_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token1] = ACTIONS(8509), + [aux_sym_def_type_statement_token2] = ACTIONS(8509), + [aux_sym_def_type_statement_token3] = ACTIONS(8509), + [aux_sym_def_type_statement_token4] = ACTIONS(8509), + [aux_sym_def_type_statement_token5] = ACTIONS(8509), + [aux_sym_def_type_statement_token6] = ACTIONS(8509), + [aux_sym_def_type_statement_token7] = ACTIONS(8509), + [aux_sym_def_type_statement_token8] = ACTIONS(8509), + [aux_sym_def_type_statement_token9] = ACTIONS(8509), + [aux_sym_def_type_statement_token10] = ACTIONS(8509), + [aux_sym_def_type_statement_token11] = ACTIONS(8509), + [aux_sym_def_type_statement_token12] = ACTIONS(8509), + [aux_sym_def_type_statement_token13] = ACTIONS(8509), + [aux_sym_def_type_statement_token14] = ACTIONS(8509), + [aux_sym_call_statement_token1] = ACTIONS(8509), + [sym__ambiguous_call_statement] = ACTIONS(8509), + [aux_sym_addressof_expression_token1] = ACTIONS(8509), + [aux_sym_type_of_expression_token1] = ACTIONS(8509), + [aux_sym_unary_expression_token1] = ACTIONS(8509), + [sym_string_literal] = ACTIONS(8511), + [sym_number_literal] = ACTIONS(8511), + [aux_sym_boolean_literal_token1] = ACTIONS(8509), + [aux_sym_boolean_literal_token2] = ACTIONS(8509), + [sym_nothing_literal] = ACTIONS(8509), + [sym_null_literal] = ACTIONS(8509), + [sym_empty_literal] = ACTIONS(8509), + [sym_date_literal] = ACTIONS(8511), + [anon_sym_POUND] = ACTIONS(8509), + }, + [STATE(7247)] = { + [sym_identifier] = ACTIONS(9496), + [sym_newline] = ACTIONS(9498), + [anon_sym_COLON] = ACTIONS(9498), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9496), + [aux_sym_frm_property_statement_token1] = ACTIONS(9496), + [anon_sym_DOT] = ACTIONS(9496), + [anon_sym_BANG] = ACTIONS(9498), + [aux_sym__attribute_identifier_token1] = ACTIONS(9496), + [aux_sym_option_statement_token3] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9496), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9496), + [aux_sym_preprocessor_const_token1] = ACTIONS(9496), + [sym_static_modifier] = ACTIONS(9496), + [sym__dim_keyword] = ACTIONS(9496), + [sym__redim_keyword] = ACTIONS(9496), + [aux_sym_get_accessor_token1] = ACTIONS(9496), + [aux_sym_set_accessor_token1] = ACTIONS(9496), + [aux_sym_const_declaration_token1] = ACTIONS(9496), + [anon_sym_LPAREN] = ACTIONS(9498), + [aux_sym_as_type_clause_token2] = ACTIONS(9496), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9496), + [aux_sym_visibility_token1] = ACTIONS(9496), + [aux_sym_visibility_token2] = ACTIONS(9496), + [aux_sym_elseif_fragment_token1] = ACTIONS(9496), + [aux_sym_else_fragment_token1] = ACTIONS(9496), + [aux_sym_select_statement_token1] = ACTIONS(9496), + [aux_sym__for_header_token1] = ACTIONS(9496), + [aux_sym_do_statement_token1] = ACTIONS(9496), + [aux_sym_do_condition_token1] = ACTIONS(9496), + [aux_sym_with_statement_token1] = ACTIONS(9496), + [aux_sym_exit_statement_token1] = ACTIONS(9496), + [sym_end_statement] = ACTIONS(9498), + [aux_sym_on_goto_statement_token1] = ACTIONS(9496), + [aux_sym_on_goto_statement_token2] = ACTIONS(9496), + [aux_sym_on_error_statement_token2] = ACTIONS(9496), + [sym__ambiguous_redim_statement] = ACTIONS(9498), + [aux_sym_erase_statement_token1] = ACTIONS(9496), + [aux_sym_open_statement_token1] = ACTIONS(9496), + [aux_sym_file_mode_token2] = ACTIONS(9496), + [aux_sym_file_access_token2] = ACTIONS(9496), + [aux_sym_file_lock_token2] = ACTIONS(9496), + [aux_sym_print_statement_token1] = ACTIONS(9496), + [anon_sym_PLUS] = ACTIONS(9498), + [anon_sym_DASH] = ACTIONS(9496), + [anon_sym_QMARK] = ACTIONS(9498), + [aux_sym_close_statement_token1] = ACTIONS(9496), + [aux_sym_put_statement_token1] = ACTIONS(9496), + [aux_sym_unlock_statement_token1] = ACTIONS(9496), + [aux_sym_seek_statement_token1] = ACTIONS(9496), + [sym_reset_statement] = ACTIONS(9496), + [aux_sym_raise_event_statement_token1] = ACTIONS(9496), + [sym_stop_statement] = ACTIONS(9496), + [sym_beep_statement] = ACTIONS(9496), + [aux_sym_unload_statement_token1] = ACTIONS(9496), + [aux_sym_def_type_statement_token1] = ACTIONS(9496), + [aux_sym_def_type_statement_token2] = ACTIONS(9496), + [aux_sym_def_type_statement_token3] = ACTIONS(9496), + [aux_sym_def_type_statement_token4] = ACTIONS(9496), + [aux_sym_def_type_statement_token5] = ACTIONS(9496), + [aux_sym_def_type_statement_token6] = ACTIONS(9496), + [aux_sym_def_type_statement_token7] = ACTIONS(9496), + [aux_sym_def_type_statement_token8] = ACTIONS(9496), + [aux_sym_def_type_statement_token9] = ACTIONS(9496), + [aux_sym_def_type_statement_token10] = ACTIONS(9496), + [aux_sym_def_type_statement_token11] = ACTIONS(9496), + [aux_sym_def_type_statement_token12] = ACTIONS(9496), + [aux_sym_def_type_statement_token13] = ACTIONS(9496), + [aux_sym_def_type_statement_token14] = ACTIONS(9496), + [aux_sym_call_statement_token1] = ACTIONS(9496), + [sym__ambiguous_call_statement] = ACTIONS(9496), + [aux_sym_addressof_expression_token1] = ACTIONS(9496), + [aux_sym_type_of_expression_token1] = ACTIONS(9496), + [aux_sym_unary_expression_token1] = ACTIONS(9496), + [sym_string_literal] = ACTIONS(9498), + [sym_number_literal] = ACTIONS(9498), + [aux_sym_boolean_literal_token1] = ACTIONS(9496), + [aux_sym_boolean_literal_token2] = ACTIONS(9496), + [sym_nothing_literal] = ACTIONS(9496), + [sym_null_literal] = ACTIONS(9496), + [sym_empty_literal] = ACTIONS(9496), + [sym_date_literal] = ACTIONS(9498), + [anon_sym_POUND] = ACTIONS(9496), + }, + [STATE(7248)] = { + [sym_identifier] = ACTIONS(9692), + [sym_newline] = ACTIONS(9694), + [anon_sym_COLON] = ACTIONS(9694), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9692), + [aux_sym_frm_property_statement_token1] = ACTIONS(9692), + [anon_sym_DOT] = ACTIONS(9692), + [anon_sym_BANG] = ACTIONS(9694), + [aux_sym__attribute_identifier_token1] = ACTIONS(9692), + [aux_sym_option_statement_token3] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9692), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9692), + [aux_sym_preprocessor_const_token1] = ACTIONS(9692), + [sym_static_modifier] = ACTIONS(9692), + [sym__dim_keyword] = ACTIONS(9692), + [sym__redim_keyword] = ACTIONS(9692), + [aux_sym_get_accessor_token1] = ACTIONS(9692), + [aux_sym_set_accessor_token1] = ACTIONS(9692), + [aux_sym_const_declaration_token1] = ACTIONS(9692), + [anon_sym_LPAREN] = ACTIONS(9694), + [aux_sym_as_type_clause_token2] = ACTIONS(9692), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9692), + [aux_sym_visibility_token1] = ACTIONS(9692), + [aux_sym_visibility_token2] = ACTIONS(9692), + [aux_sym_elseif_fragment_token1] = ACTIONS(9692), + [aux_sym_else_fragment_token1] = ACTIONS(9692), + [aux_sym_select_statement_token1] = ACTIONS(9692), + [aux_sym__for_header_token1] = ACTIONS(9692), + [aux_sym_do_statement_token1] = ACTIONS(9692), + [aux_sym_do_condition_token1] = ACTIONS(9692), + [aux_sym_with_statement_token1] = ACTIONS(9692), + [aux_sym_exit_statement_token1] = ACTIONS(9692), + [sym_end_statement] = ACTIONS(9694), + [aux_sym_on_goto_statement_token1] = ACTIONS(9692), + [aux_sym_on_goto_statement_token2] = ACTIONS(9692), + [aux_sym_on_error_statement_token2] = ACTIONS(9692), + [sym__ambiguous_redim_statement] = ACTIONS(9694), + [aux_sym_erase_statement_token1] = ACTIONS(9692), + [aux_sym_open_statement_token1] = ACTIONS(9692), + [aux_sym_file_mode_token2] = ACTIONS(9692), + [aux_sym_file_access_token2] = ACTIONS(9692), + [aux_sym_file_lock_token2] = ACTIONS(9692), + [aux_sym_print_statement_token1] = ACTIONS(9692), + [anon_sym_PLUS] = ACTIONS(9694), + [anon_sym_DASH] = ACTIONS(9692), + [anon_sym_QMARK] = ACTIONS(9694), + [aux_sym_close_statement_token1] = ACTIONS(9692), + [aux_sym_put_statement_token1] = ACTIONS(9692), + [aux_sym_unlock_statement_token1] = ACTIONS(9692), + [aux_sym_seek_statement_token1] = ACTIONS(9692), + [sym_reset_statement] = ACTIONS(9692), + [aux_sym_raise_event_statement_token1] = ACTIONS(9692), + [sym_stop_statement] = ACTIONS(9692), + [sym_beep_statement] = ACTIONS(9692), + [aux_sym_unload_statement_token1] = ACTIONS(9692), + [aux_sym_def_type_statement_token1] = ACTIONS(9692), + [aux_sym_def_type_statement_token2] = ACTIONS(9692), + [aux_sym_def_type_statement_token3] = ACTIONS(9692), + [aux_sym_def_type_statement_token4] = ACTIONS(9692), + [aux_sym_def_type_statement_token5] = ACTIONS(9692), + [aux_sym_def_type_statement_token6] = ACTIONS(9692), + [aux_sym_def_type_statement_token7] = ACTIONS(9692), + [aux_sym_def_type_statement_token8] = ACTIONS(9692), + [aux_sym_def_type_statement_token9] = ACTIONS(9692), + [aux_sym_def_type_statement_token10] = ACTIONS(9692), + [aux_sym_def_type_statement_token11] = ACTIONS(9692), + [aux_sym_def_type_statement_token12] = ACTIONS(9692), + [aux_sym_def_type_statement_token13] = ACTIONS(9692), + [aux_sym_def_type_statement_token14] = ACTIONS(9692), + [aux_sym_call_statement_token1] = ACTIONS(9692), + [sym__ambiguous_call_statement] = ACTIONS(9692), + [aux_sym_addressof_expression_token1] = ACTIONS(9692), + [aux_sym_type_of_expression_token1] = ACTIONS(9692), + [aux_sym_unary_expression_token1] = ACTIONS(9692), + [sym_string_literal] = ACTIONS(9694), + [sym_number_literal] = ACTIONS(9694), + [aux_sym_boolean_literal_token1] = ACTIONS(9692), + [aux_sym_boolean_literal_token2] = ACTIONS(9692), + [sym_nothing_literal] = ACTIONS(9692), + [sym_null_literal] = ACTIONS(9692), + [sym_empty_literal] = ACTIONS(9692), + [sym_date_literal] = ACTIONS(9694), + [anon_sym_POUND] = ACTIONS(9692), + }, + [STATE(7249)] = { + [sym_identifier] = ACTIONS(9696), + [sym_newline] = ACTIONS(9698), + [anon_sym_COLON] = ACTIONS(9698), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9696), + [aux_sym_frm_property_statement_token1] = ACTIONS(9696), + [anon_sym_DOT] = ACTIONS(9696), + [anon_sym_BANG] = ACTIONS(9698), + [aux_sym__attribute_identifier_token1] = ACTIONS(9696), + [aux_sym_option_statement_token3] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9696), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9696), + [aux_sym_preprocessor_const_token1] = ACTIONS(9696), + [sym_static_modifier] = ACTIONS(9696), + [sym__dim_keyword] = ACTIONS(9696), + [sym__redim_keyword] = ACTIONS(9696), + [aux_sym_get_accessor_token1] = ACTIONS(9696), + [aux_sym_set_accessor_token1] = ACTIONS(9696), + [aux_sym_const_declaration_token1] = ACTIONS(9696), + [anon_sym_LPAREN] = ACTIONS(9698), + [aux_sym_as_type_clause_token2] = ACTIONS(9696), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9696), + [aux_sym_visibility_token1] = ACTIONS(9696), + [aux_sym_visibility_token2] = ACTIONS(9696), + [aux_sym_elseif_fragment_token1] = ACTIONS(9696), + [aux_sym_else_fragment_token1] = ACTIONS(9696), + [aux_sym_select_statement_token1] = ACTIONS(9696), + [aux_sym__for_header_token1] = ACTIONS(9696), + [aux_sym_do_statement_token1] = ACTIONS(9696), + [aux_sym_do_condition_token1] = ACTIONS(9696), + [aux_sym_with_statement_token1] = ACTIONS(9696), + [aux_sym_exit_statement_token1] = ACTIONS(9696), + [sym_end_statement] = ACTIONS(9698), + [aux_sym_on_goto_statement_token1] = ACTIONS(9696), + [aux_sym_on_goto_statement_token2] = ACTIONS(9696), + [aux_sym_on_error_statement_token2] = ACTIONS(9696), + [sym__ambiguous_redim_statement] = ACTIONS(9698), + [aux_sym_erase_statement_token1] = ACTIONS(9696), + [aux_sym_open_statement_token1] = ACTIONS(9696), + [aux_sym_file_mode_token2] = ACTIONS(9696), + [aux_sym_file_access_token2] = ACTIONS(9696), + [aux_sym_file_lock_token2] = ACTIONS(9696), + [aux_sym_print_statement_token1] = ACTIONS(9696), + [anon_sym_PLUS] = ACTIONS(9698), + [anon_sym_DASH] = ACTIONS(9696), + [anon_sym_QMARK] = ACTIONS(9698), + [aux_sym_close_statement_token1] = ACTIONS(9696), + [aux_sym_put_statement_token1] = ACTIONS(9696), + [aux_sym_unlock_statement_token1] = ACTIONS(9696), + [aux_sym_seek_statement_token1] = ACTIONS(9696), + [sym_reset_statement] = ACTIONS(9696), + [aux_sym_raise_event_statement_token1] = ACTIONS(9696), + [sym_stop_statement] = ACTIONS(9696), + [sym_beep_statement] = ACTIONS(9696), + [aux_sym_unload_statement_token1] = ACTIONS(9696), + [aux_sym_def_type_statement_token1] = ACTIONS(9696), + [aux_sym_def_type_statement_token2] = ACTIONS(9696), + [aux_sym_def_type_statement_token3] = ACTIONS(9696), + [aux_sym_def_type_statement_token4] = ACTIONS(9696), + [aux_sym_def_type_statement_token5] = ACTIONS(9696), + [aux_sym_def_type_statement_token6] = ACTIONS(9696), + [aux_sym_def_type_statement_token7] = ACTIONS(9696), + [aux_sym_def_type_statement_token8] = ACTIONS(9696), + [aux_sym_def_type_statement_token9] = ACTIONS(9696), + [aux_sym_def_type_statement_token10] = ACTIONS(9696), + [aux_sym_def_type_statement_token11] = ACTIONS(9696), + [aux_sym_def_type_statement_token12] = ACTIONS(9696), + [aux_sym_def_type_statement_token13] = ACTIONS(9696), + [aux_sym_def_type_statement_token14] = ACTIONS(9696), + [aux_sym_call_statement_token1] = ACTIONS(9696), + [sym__ambiguous_call_statement] = ACTIONS(9696), + [aux_sym_addressof_expression_token1] = ACTIONS(9696), + [aux_sym_type_of_expression_token1] = ACTIONS(9696), + [aux_sym_unary_expression_token1] = ACTIONS(9696), + [sym_string_literal] = ACTIONS(9698), + [sym_number_literal] = ACTIONS(9698), + [aux_sym_boolean_literal_token1] = ACTIONS(9696), + [aux_sym_boolean_literal_token2] = ACTIONS(9696), + [sym_nothing_literal] = ACTIONS(9696), + [sym_null_literal] = ACTIONS(9696), + [sym_empty_literal] = ACTIONS(9696), + [sym_date_literal] = ACTIONS(9698), + [anon_sym_POUND] = ACTIONS(9696), + }, + [STATE(7250)] = { + [sym_identifier] = ACTIONS(9700), + [sym_newline] = ACTIONS(9702), + [anon_sym_COLON] = ACTIONS(9702), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9700), + [aux_sym_frm_property_statement_token1] = ACTIONS(9700), + [anon_sym_DOT] = ACTIONS(9700), + [anon_sym_BANG] = ACTIONS(9702), + [aux_sym__attribute_identifier_token1] = ACTIONS(9700), + [aux_sym_option_statement_token3] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9700), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9700), + [aux_sym_preprocessor_const_token1] = ACTIONS(9700), + [sym_static_modifier] = ACTIONS(9700), + [sym__dim_keyword] = ACTIONS(9700), + [sym__redim_keyword] = ACTIONS(9700), + [aux_sym_get_accessor_token1] = ACTIONS(9700), + [aux_sym_set_accessor_token1] = ACTIONS(9700), + [aux_sym_const_declaration_token1] = ACTIONS(9700), + [anon_sym_LPAREN] = ACTIONS(9702), + [aux_sym_as_type_clause_token2] = ACTIONS(9700), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9700), + [aux_sym_visibility_token1] = ACTIONS(9700), + [aux_sym_visibility_token2] = ACTIONS(9700), + [aux_sym_elseif_fragment_token1] = ACTIONS(9700), + [aux_sym_else_fragment_token1] = ACTIONS(9700), + [aux_sym_select_statement_token1] = ACTIONS(9700), + [aux_sym__for_header_token1] = ACTIONS(9700), + [aux_sym_do_statement_token1] = ACTIONS(9700), + [aux_sym_do_condition_token1] = ACTIONS(9700), + [aux_sym_with_statement_token1] = ACTIONS(9700), + [aux_sym_exit_statement_token1] = ACTIONS(9700), + [sym_end_statement] = ACTIONS(9702), + [aux_sym_on_goto_statement_token1] = ACTIONS(9700), + [aux_sym_on_goto_statement_token2] = ACTIONS(9700), + [aux_sym_on_error_statement_token2] = ACTIONS(9700), + [sym__ambiguous_redim_statement] = ACTIONS(9702), + [aux_sym_erase_statement_token1] = ACTIONS(9700), + [aux_sym_open_statement_token1] = ACTIONS(9700), + [aux_sym_file_mode_token2] = ACTIONS(9700), + [aux_sym_file_access_token2] = ACTIONS(9700), + [aux_sym_file_lock_token2] = ACTIONS(9700), + [aux_sym_print_statement_token1] = ACTIONS(9700), + [anon_sym_PLUS] = ACTIONS(9702), + [anon_sym_DASH] = ACTIONS(9700), + [anon_sym_QMARK] = ACTIONS(9702), + [aux_sym_close_statement_token1] = ACTIONS(9700), + [aux_sym_put_statement_token1] = ACTIONS(9700), + [aux_sym_unlock_statement_token1] = ACTIONS(9700), + [aux_sym_seek_statement_token1] = ACTIONS(9700), + [sym_reset_statement] = ACTIONS(9700), + [aux_sym_raise_event_statement_token1] = ACTIONS(9700), + [sym_stop_statement] = ACTIONS(9700), + [sym_beep_statement] = ACTIONS(9700), + [aux_sym_unload_statement_token1] = ACTIONS(9700), + [aux_sym_def_type_statement_token1] = ACTIONS(9700), + [aux_sym_def_type_statement_token2] = ACTIONS(9700), + [aux_sym_def_type_statement_token3] = ACTIONS(9700), + [aux_sym_def_type_statement_token4] = ACTIONS(9700), + [aux_sym_def_type_statement_token5] = ACTIONS(9700), + [aux_sym_def_type_statement_token6] = ACTIONS(9700), + [aux_sym_def_type_statement_token7] = ACTIONS(9700), + [aux_sym_def_type_statement_token8] = ACTIONS(9700), + [aux_sym_def_type_statement_token9] = ACTIONS(9700), + [aux_sym_def_type_statement_token10] = ACTIONS(9700), + [aux_sym_def_type_statement_token11] = ACTIONS(9700), + [aux_sym_def_type_statement_token12] = ACTIONS(9700), + [aux_sym_def_type_statement_token13] = ACTIONS(9700), + [aux_sym_def_type_statement_token14] = ACTIONS(9700), + [aux_sym_call_statement_token1] = ACTIONS(9700), + [sym__ambiguous_call_statement] = ACTIONS(9700), + [aux_sym_addressof_expression_token1] = ACTIONS(9700), + [aux_sym_type_of_expression_token1] = ACTIONS(9700), + [aux_sym_unary_expression_token1] = ACTIONS(9700), + [sym_string_literal] = ACTIONS(9702), + [sym_number_literal] = ACTIONS(9702), + [aux_sym_boolean_literal_token1] = ACTIONS(9700), + [aux_sym_boolean_literal_token2] = ACTIONS(9700), + [sym_nothing_literal] = ACTIONS(9700), + [sym_null_literal] = ACTIONS(9700), + [sym_empty_literal] = ACTIONS(9700), + [sym_date_literal] = ACTIONS(9702), + [anon_sym_POUND] = ACTIONS(9700), + }, + [STATE(7251)] = { + [sym_identifier] = ACTIONS(9122), + [sym_newline] = ACTIONS(9124), + [anon_sym_COLON] = ACTIONS(9124), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9122), + [aux_sym_frm_property_statement_token1] = ACTIONS(9122), + [anon_sym_DOT] = ACTIONS(9122), + [anon_sym_BANG] = ACTIONS(9124), + [aux_sym__attribute_identifier_token1] = ACTIONS(9122), + [aux_sym_option_statement_token3] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9122), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9122), + [aux_sym_preprocessor_const_token1] = ACTIONS(9122), + [sym_static_modifier] = ACTIONS(9122), + [sym__dim_keyword] = ACTIONS(9122), + [sym__redim_keyword] = ACTIONS(9122), + [aux_sym_get_accessor_token1] = ACTIONS(9122), + [aux_sym_set_accessor_token1] = ACTIONS(9122), + [aux_sym_const_declaration_token1] = ACTIONS(9122), + [anon_sym_LPAREN] = ACTIONS(9124), + [aux_sym_as_type_clause_token2] = ACTIONS(9122), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9122), + [aux_sym_visibility_token1] = ACTIONS(9122), + [aux_sym_visibility_token2] = ACTIONS(9122), + [aux_sym_elseif_fragment_token1] = ACTIONS(9122), + [aux_sym_else_fragment_token1] = ACTIONS(9122), + [aux_sym_select_statement_token1] = ACTIONS(9122), + [aux_sym__for_header_token1] = ACTIONS(9122), + [aux_sym_do_statement_token1] = ACTIONS(9122), + [aux_sym_do_condition_token1] = ACTIONS(9122), + [aux_sym_with_statement_token1] = ACTIONS(9122), + [aux_sym_exit_statement_token1] = ACTIONS(9122), + [sym_end_statement] = ACTIONS(9124), + [aux_sym_on_goto_statement_token1] = ACTIONS(9122), + [aux_sym_on_goto_statement_token2] = ACTIONS(9122), + [aux_sym_on_error_statement_token2] = ACTIONS(9122), + [sym__ambiguous_redim_statement] = ACTIONS(9124), + [aux_sym_erase_statement_token1] = ACTIONS(9122), + [aux_sym_open_statement_token1] = ACTIONS(9122), + [aux_sym_file_mode_token2] = ACTIONS(9122), + [aux_sym_file_access_token2] = ACTIONS(9122), + [aux_sym_file_lock_token2] = ACTIONS(9122), + [aux_sym_print_statement_token1] = ACTIONS(9122), + [anon_sym_PLUS] = ACTIONS(9124), + [anon_sym_DASH] = ACTIONS(9122), + [anon_sym_QMARK] = ACTIONS(9124), + [aux_sym_close_statement_token1] = ACTIONS(9122), + [aux_sym_put_statement_token1] = ACTIONS(9122), + [aux_sym_unlock_statement_token1] = ACTIONS(9122), + [aux_sym_seek_statement_token1] = ACTIONS(9122), + [sym_reset_statement] = ACTIONS(9122), + [aux_sym_raise_event_statement_token1] = ACTIONS(9122), + [sym_stop_statement] = ACTIONS(9122), + [sym_beep_statement] = ACTIONS(9122), + [aux_sym_unload_statement_token1] = ACTIONS(9122), + [aux_sym_def_type_statement_token1] = ACTIONS(9122), + [aux_sym_def_type_statement_token2] = ACTIONS(9122), + [aux_sym_def_type_statement_token3] = ACTIONS(9122), + [aux_sym_def_type_statement_token4] = ACTIONS(9122), + [aux_sym_def_type_statement_token5] = ACTIONS(9122), + [aux_sym_def_type_statement_token6] = ACTIONS(9122), + [aux_sym_def_type_statement_token7] = ACTIONS(9122), + [aux_sym_def_type_statement_token8] = ACTIONS(9122), + [aux_sym_def_type_statement_token9] = ACTIONS(9122), + [aux_sym_def_type_statement_token10] = ACTIONS(9122), + [aux_sym_def_type_statement_token11] = ACTIONS(9122), + [aux_sym_def_type_statement_token12] = ACTIONS(9122), + [aux_sym_def_type_statement_token13] = ACTIONS(9122), + [aux_sym_def_type_statement_token14] = ACTIONS(9122), + [aux_sym_call_statement_token1] = ACTIONS(9122), + [sym__ambiguous_call_statement] = ACTIONS(9122), + [aux_sym_addressof_expression_token1] = ACTIONS(9122), + [aux_sym_type_of_expression_token1] = ACTIONS(9122), + [aux_sym_unary_expression_token1] = ACTIONS(9122), + [sym_string_literal] = ACTIONS(9124), + [sym_number_literal] = ACTIONS(9124), + [aux_sym_boolean_literal_token1] = ACTIONS(9122), + [aux_sym_boolean_literal_token2] = ACTIONS(9122), + [sym_nothing_literal] = ACTIONS(9122), + [sym_null_literal] = ACTIONS(9122), + [sym_empty_literal] = ACTIONS(9122), + [sym_date_literal] = ACTIONS(9124), + [anon_sym_POUND] = ACTIONS(9122), + }, + [STATE(7252)] = { + [sym_identifier] = ACTIONS(9500), + [sym_newline] = ACTIONS(9502), + [anon_sym_COLON] = ACTIONS(9502), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9500), + [aux_sym_frm_property_statement_token1] = ACTIONS(9500), + [anon_sym_DOT] = ACTIONS(9500), + [anon_sym_BANG] = ACTIONS(9502), + [aux_sym__attribute_identifier_token1] = ACTIONS(9500), + [aux_sym_option_statement_token3] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9500), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9500), + [aux_sym_preprocessor_const_token1] = ACTIONS(9500), + [sym_static_modifier] = ACTIONS(9500), + [sym__dim_keyword] = ACTIONS(9500), + [sym__redim_keyword] = ACTIONS(9500), + [aux_sym_get_accessor_token1] = ACTIONS(9500), + [aux_sym_set_accessor_token1] = ACTIONS(9500), + [aux_sym_const_declaration_token1] = ACTIONS(9500), + [anon_sym_LPAREN] = ACTIONS(9502), + [aux_sym_as_type_clause_token2] = ACTIONS(9500), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9500), + [aux_sym_visibility_token1] = ACTIONS(9500), + [aux_sym_visibility_token2] = ACTIONS(9500), + [aux_sym_elseif_fragment_token1] = ACTIONS(9500), + [aux_sym_else_fragment_token1] = ACTIONS(9500), + [aux_sym_select_statement_token1] = ACTIONS(9500), + [aux_sym__for_header_token1] = ACTIONS(9500), + [aux_sym_do_statement_token1] = ACTIONS(9500), + [aux_sym_do_condition_token1] = ACTIONS(9500), + [aux_sym_with_statement_token1] = ACTIONS(9500), + [aux_sym_exit_statement_token1] = ACTIONS(9500), + [sym_end_statement] = ACTIONS(9502), + [aux_sym_on_goto_statement_token1] = ACTIONS(9500), + [aux_sym_on_goto_statement_token2] = ACTIONS(9500), + [aux_sym_on_error_statement_token2] = ACTIONS(9500), + [sym__ambiguous_redim_statement] = ACTIONS(9502), + [aux_sym_erase_statement_token1] = ACTIONS(9500), + [aux_sym_open_statement_token1] = ACTIONS(9500), + [aux_sym_file_mode_token2] = ACTIONS(9500), + [aux_sym_file_access_token2] = ACTIONS(9500), + [aux_sym_file_lock_token2] = ACTIONS(9500), + [aux_sym_print_statement_token1] = ACTIONS(9500), + [anon_sym_PLUS] = ACTIONS(9502), + [anon_sym_DASH] = ACTIONS(9500), + [anon_sym_QMARK] = ACTIONS(9502), + [aux_sym_close_statement_token1] = ACTIONS(9500), + [aux_sym_put_statement_token1] = ACTIONS(9500), + [aux_sym_unlock_statement_token1] = ACTIONS(9500), + [aux_sym_seek_statement_token1] = ACTIONS(9500), + [sym_reset_statement] = ACTIONS(9500), + [aux_sym_raise_event_statement_token1] = ACTIONS(9500), + [sym_stop_statement] = ACTIONS(9500), + [sym_beep_statement] = ACTIONS(9500), + [aux_sym_unload_statement_token1] = ACTIONS(9500), + [aux_sym_def_type_statement_token1] = ACTIONS(9500), + [aux_sym_def_type_statement_token2] = ACTIONS(9500), + [aux_sym_def_type_statement_token3] = ACTIONS(9500), + [aux_sym_def_type_statement_token4] = ACTIONS(9500), + [aux_sym_def_type_statement_token5] = ACTIONS(9500), + [aux_sym_def_type_statement_token6] = ACTIONS(9500), + [aux_sym_def_type_statement_token7] = ACTIONS(9500), + [aux_sym_def_type_statement_token8] = ACTIONS(9500), + [aux_sym_def_type_statement_token9] = ACTIONS(9500), + [aux_sym_def_type_statement_token10] = ACTIONS(9500), + [aux_sym_def_type_statement_token11] = ACTIONS(9500), + [aux_sym_def_type_statement_token12] = ACTIONS(9500), + [aux_sym_def_type_statement_token13] = ACTIONS(9500), + [aux_sym_def_type_statement_token14] = ACTIONS(9500), + [aux_sym_call_statement_token1] = ACTIONS(9500), + [sym__ambiguous_call_statement] = ACTIONS(9500), + [aux_sym_addressof_expression_token1] = ACTIONS(9500), + [aux_sym_type_of_expression_token1] = ACTIONS(9500), + [aux_sym_unary_expression_token1] = ACTIONS(9500), + [sym_string_literal] = ACTIONS(9502), + [sym_number_literal] = ACTIONS(9502), + [aux_sym_boolean_literal_token1] = ACTIONS(9500), + [aux_sym_boolean_literal_token2] = ACTIONS(9500), + [sym_nothing_literal] = ACTIONS(9500), + [sym_null_literal] = ACTIONS(9500), + [sym_empty_literal] = ACTIONS(9500), + [sym_date_literal] = ACTIONS(9502), + [anon_sym_POUND] = ACTIONS(9500), + }, + [STATE(7253)] = { + [sym_identifier] = ACTIONS(9704), + [sym_newline] = ACTIONS(9706), + [anon_sym_COLON] = ACTIONS(9706), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9704), + [aux_sym_frm_property_statement_token1] = ACTIONS(9704), + [anon_sym_DOT] = ACTIONS(9704), + [anon_sym_BANG] = ACTIONS(9706), + [aux_sym__attribute_identifier_token1] = ACTIONS(9704), + [aux_sym_option_statement_token3] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9704), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9704), + [aux_sym_preprocessor_const_token1] = ACTIONS(9704), + [sym_static_modifier] = ACTIONS(9704), + [sym__dim_keyword] = ACTIONS(9704), + [sym__redim_keyword] = ACTIONS(9704), + [aux_sym_get_accessor_token1] = ACTIONS(9704), + [aux_sym_set_accessor_token1] = ACTIONS(9704), + [aux_sym_const_declaration_token1] = ACTIONS(9704), + [anon_sym_LPAREN] = ACTIONS(9706), + [aux_sym_as_type_clause_token2] = ACTIONS(9704), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9704), + [aux_sym_visibility_token1] = ACTIONS(9704), + [aux_sym_visibility_token2] = ACTIONS(9704), + [aux_sym_elseif_fragment_token1] = ACTIONS(9704), + [aux_sym_else_fragment_token1] = ACTIONS(9704), + [aux_sym_select_statement_token1] = ACTIONS(9704), + [aux_sym__for_header_token1] = ACTIONS(9704), + [aux_sym_do_statement_token1] = ACTIONS(9704), + [aux_sym_do_condition_token1] = ACTIONS(9704), + [aux_sym_with_statement_token1] = ACTIONS(9704), + [aux_sym_exit_statement_token1] = ACTIONS(9704), + [sym_end_statement] = ACTIONS(9706), + [aux_sym_on_goto_statement_token1] = ACTIONS(9704), + [aux_sym_on_goto_statement_token2] = ACTIONS(9704), + [aux_sym_on_error_statement_token2] = ACTIONS(9704), + [sym__ambiguous_redim_statement] = ACTIONS(9706), + [aux_sym_erase_statement_token1] = ACTIONS(9704), + [aux_sym_open_statement_token1] = ACTIONS(9704), + [aux_sym_file_mode_token2] = ACTIONS(9704), + [aux_sym_file_access_token2] = ACTIONS(9704), + [aux_sym_file_lock_token2] = ACTIONS(9704), + [aux_sym_print_statement_token1] = ACTIONS(9704), + [anon_sym_PLUS] = ACTIONS(9706), + [anon_sym_DASH] = ACTIONS(9704), + [anon_sym_QMARK] = ACTIONS(9706), + [aux_sym_close_statement_token1] = ACTIONS(9704), + [aux_sym_put_statement_token1] = ACTIONS(9704), + [aux_sym_unlock_statement_token1] = ACTIONS(9704), + [aux_sym_seek_statement_token1] = ACTIONS(9704), + [sym_reset_statement] = ACTIONS(9704), + [aux_sym_raise_event_statement_token1] = ACTIONS(9704), + [sym_stop_statement] = ACTIONS(9704), + [sym_beep_statement] = ACTIONS(9704), + [aux_sym_unload_statement_token1] = ACTIONS(9704), + [aux_sym_def_type_statement_token1] = ACTIONS(9704), + [aux_sym_def_type_statement_token2] = ACTIONS(9704), + [aux_sym_def_type_statement_token3] = ACTIONS(9704), + [aux_sym_def_type_statement_token4] = ACTIONS(9704), + [aux_sym_def_type_statement_token5] = ACTIONS(9704), + [aux_sym_def_type_statement_token6] = ACTIONS(9704), + [aux_sym_def_type_statement_token7] = ACTIONS(9704), + [aux_sym_def_type_statement_token8] = ACTIONS(9704), + [aux_sym_def_type_statement_token9] = ACTIONS(9704), + [aux_sym_def_type_statement_token10] = ACTIONS(9704), + [aux_sym_def_type_statement_token11] = ACTIONS(9704), + [aux_sym_def_type_statement_token12] = ACTIONS(9704), + [aux_sym_def_type_statement_token13] = ACTIONS(9704), + [aux_sym_def_type_statement_token14] = ACTIONS(9704), + [aux_sym_call_statement_token1] = ACTIONS(9704), + [sym__ambiguous_call_statement] = ACTIONS(9704), + [aux_sym_addressof_expression_token1] = ACTIONS(9704), + [aux_sym_type_of_expression_token1] = ACTIONS(9704), + [aux_sym_unary_expression_token1] = ACTIONS(9704), + [sym_string_literal] = ACTIONS(9706), + [sym_number_literal] = ACTIONS(9706), + [aux_sym_boolean_literal_token1] = ACTIONS(9704), + [aux_sym_boolean_literal_token2] = ACTIONS(9704), + [sym_nothing_literal] = ACTIONS(9704), + [sym_null_literal] = ACTIONS(9704), + [sym_empty_literal] = ACTIONS(9704), + [sym_date_literal] = ACTIONS(9706), + [anon_sym_POUND] = ACTIONS(9704), + }, + [STATE(7254)] = { + [sym_identifier] = ACTIONS(9506), + [sym_newline] = ACTIONS(9508), + [anon_sym_COLON] = ACTIONS(9508), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9506), + [aux_sym_frm_property_statement_token1] = ACTIONS(9506), + [anon_sym_DOT] = ACTIONS(9506), + [anon_sym_BANG] = ACTIONS(9508), + [aux_sym__attribute_identifier_token1] = ACTIONS(9506), + [aux_sym_option_statement_token3] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9506), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9506), + [aux_sym_preprocessor_const_token1] = ACTIONS(9506), + [sym_static_modifier] = ACTIONS(9506), + [sym__dim_keyword] = ACTIONS(9506), + [sym__redim_keyword] = ACTIONS(9506), + [aux_sym_get_accessor_token1] = ACTIONS(9506), + [aux_sym_set_accessor_token1] = ACTIONS(9506), + [aux_sym_const_declaration_token1] = ACTIONS(9506), + [anon_sym_LPAREN] = ACTIONS(9508), + [aux_sym_as_type_clause_token2] = ACTIONS(9506), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9506), + [aux_sym_visibility_token1] = ACTIONS(9506), + [aux_sym_visibility_token2] = ACTIONS(9506), + [aux_sym_elseif_fragment_token1] = ACTIONS(9506), + [aux_sym_else_fragment_token1] = ACTIONS(9506), + [aux_sym_select_statement_token1] = ACTIONS(9506), + [aux_sym__for_header_token1] = ACTIONS(9506), + [aux_sym_do_statement_token1] = ACTIONS(9506), + [aux_sym_do_condition_token1] = ACTIONS(9506), + [aux_sym_with_statement_token1] = ACTIONS(9506), + [aux_sym_exit_statement_token1] = ACTIONS(9506), + [sym_end_statement] = ACTIONS(9508), + [aux_sym_on_goto_statement_token1] = ACTIONS(9506), + [aux_sym_on_goto_statement_token2] = ACTIONS(9506), + [aux_sym_on_error_statement_token2] = ACTIONS(9506), + [sym__ambiguous_redim_statement] = ACTIONS(9508), + [aux_sym_erase_statement_token1] = ACTIONS(9506), + [aux_sym_open_statement_token1] = ACTIONS(9506), + [aux_sym_file_mode_token2] = ACTIONS(9506), + [aux_sym_file_access_token2] = ACTIONS(9506), + [aux_sym_file_lock_token2] = ACTIONS(9506), + [aux_sym_print_statement_token1] = ACTIONS(9506), + [anon_sym_PLUS] = ACTIONS(9508), + [anon_sym_DASH] = ACTIONS(9506), + [anon_sym_QMARK] = ACTIONS(9508), + [aux_sym_close_statement_token1] = ACTIONS(9506), + [aux_sym_put_statement_token1] = ACTIONS(9506), + [aux_sym_unlock_statement_token1] = ACTIONS(9506), + [aux_sym_seek_statement_token1] = ACTIONS(9506), + [sym_reset_statement] = ACTIONS(9506), + [aux_sym_raise_event_statement_token1] = ACTIONS(9506), + [sym_stop_statement] = ACTIONS(9506), + [sym_beep_statement] = ACTIONS(9506), + [aux_sym_unload_statement_token1] = ACTIONS(9506), + [aux_sym_def_type_statement_token1] = ACTIONS(9506), + [aux_sym_def_type_statement_token2] = ACTIONS(9506), + [aux_sym_def_type_statement_token3] = ACTIONS(9506), + [aux_sym_def_type_statement_token4] = ACTIONS(9506), + [aux_sym_def_type_statement_token5] = ACTIONS(9506), + [aux_sym_def_type_statement_token6] = ACTIONS(9506), + [aux_sym_def_type_statement_token7] = ACTIONS(9506), + [aux_sym_def_type_statement_token8] = ACTIONS(9506), + [aux_sym_def_type_statement_token9] = ACTIONS(9506), + [aux_sym_def_type_statement_token10] = ACTIONS(9506), + [aux_sym_def_type_statement_token11] = ACTIONS(9506), + [aux_sym_def_type_statement_token12] = ACTIONS(9506), + [aux_sym_def_type_statement_token13] = ACTIONS(9506), + [aux_sym_def_type_statement_token14] = ACTIONS(9506), + [aux_sym_call_statement_token1] = ACTIONS(9506), + [sym__ambiguous_call_statement] = ACTIONS(9506), + [aux_sym_addressof_expression_token1] = ACTIONS(9506), + [aux_sym_type_of_expression_token1] = ACTIONS(9506), + [aux_sym_unary_expression_token1] = ACTIONS(9506), + [sym_string_literal] = ACTIONS(9508), + [sym_number_literal] = ACTIONS(9508), + [aux_sym_boolean_literal_token1] = ACTIONS(9506), + [aux_sym_boolean_literal_token2] = ACTIONS(9506), + [sym_nothing_literal] = ACTIONS(9506), + [sym_null_literal] = ACTIONS(9506), + [sym_empty_literal] = ACTIONS(9506), + [sym_date_literal] = ACTIONS(9508), + [anon_sym_POUND] = ACTIONS(9506), + }, + [STATE(7255)] = { + [sym_identifier] = ACTIONS(8877), + [sym_newline] = ACTIONS(8879), + [anon_sym_COLON] = ACTIONS(8879), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8877), + [aux_sym_frm_property_statement_token1] = ACTIONS(8877), + [anon_sym_DOT] = ACTIONS(8877), + [anon_sym_BANG] = ACTIONS(8879), + [aux_sym__attribute_identifier_token1] = ACTIONS(8877), + [aux_sym_option_statement_token3] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8877), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8877), + [aux_sym_preprocessor_const_token1] = ACTIONS(8877), + [sym_static_modifier] = ACTIONS(8877), + [sym__dim_keyword] = ACTIONS(8877), + [sym__redim_keyword] = ACTIONS(8877), + [aux_sym_get_accessor_token1] = ACTIONS(8877), + [aux_sym_set_accessor_token1] = ACTIONS(8877), + [aux_sym_const_declaration_token1] = ACTIONS(8877), + [anon_sym_LPAREN] = ACTIONS(8879), + [aux_sym_as_type_clause_token2] = ACTIONS(8877), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8877), + [aux_sym_visibility_token1] = ACTIONS(8877), + [aux_sym_visibility_token2] = ACTIONS(8877), + [aux_sym_elseif_fragment_token1] = ACTIONS(8877), + [aux_sym_else_fragment_token1] = ACTIONS(8877), + [aux_sym_select_statement_token1] = ACTIONS(8877), + [aux_sym__for_header_token1] = ACTIONS(8877), + [aux_sym_do_statement_token1] = ACTIONS(8877), + [aux_sym_do_condition_token1] = ACTIONS(8877), + [aux_sym_with_statement_token1] = ACTIONS(8877), + [aux_sym_exit_statement_token1] = ACTIONS(8877), + [sym_end_statement] = ACTIONS(8879), + [aux_sym_on_goto_statement_token1] = ACTIONS(8877), + [aux_sym_on_goto_statement_token2] = ACTIONS(8877), + [aux_sym_on_error_statement_token2] = ACTIONS(8877), + [sym__ambiguous_redim_statement] = ACTIONS(8879), + [aux_sym_erase_statement_token1] = ACTIONS(8877), + [aux_sym_open_statement_token1] = ACTIONS(8877), + [aux_sym_file_mode_token2] = ACTIONS(8877), + [aux_sym_file_access_token2] = ACTIONS(8877), + [aux_sym_file_lock_token2] = ACTIONS(8877), + [aux_sym_print_statement_token1] = ACTIONS(8877), + [anon_sym_PLUS] = ACTIONS(8879), + [anon_sym_DASH] = ACTIONS(8877), + [anon_sym_QMARK] = ACTIONS(8879), + [aux_sym_close_statement_token1] = ACTIONS(8877), + [aux_sym_put_statement_token1] = ACTIONS(8877), + [aux_sym_unlock_statement_token1] = ACTIONS(8877), + [aux_sym_seek_statement_token1] = ACTIONS(8877), + [sym_reset_statement] = ACTIONS(8877), + [aux_sym_raise_event_statement_token1] = ACTIONS(8877), + [sym_stop_statement] = ACTIONS(8877), + [sym_beep_statement] = ACTIONS(8877), + [aux_sym_unload_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token1] = ACTIONS(8877), + [aux_sym_def_type_statement_token2] = ACTIONS(8877), + [aux_sym_def_type_statement_token3] = ACTIONS(8877), + [aux_sym_def_type_statement_token4] = ACTIONS(8877), + [aux_sym_def_type_statement_token5] = ACTIONS(8877), + [aux_sym_def_type_statement_token6] = ACTIONS(8877), + [aux_sym_def_type_statement_token7] = ACTIONS(8877), + [aux_sym_def_type_statement_token8] = ACTIONS(8877), + [aux_sym_def_type_statement_token9] = ACTIONS(8877), + [aux_sym_def_type_statement_token10] = ACTIONS(8877), + [aux_sym_def_type_statement_token11] = ACTIONS(8877), + [aux_sym_def_type_statement_token12] = ACTIONS(8877), + [aux_sym_def_type_statement_token13] = ACTIONS(8877), + [aux_sym_def_type_statement_token14] = ACTIONS(8877), + [aux_sym_call_statement_token1] = ACTIONS(8877), + [sym__ambiguous_call_statement] = ACTIONS(8877), + [aux_sym_addressof_expression_token1] = ACTIONS(8877), + [aux_sym_type_of_expression_token1] = ACTIONS(8877), + [aux_sym_unary_expression_token1] = ACTIONS(8877), + [sym_string_literal] = ACTIONS(8879), + [sym_number_literal] = ACTIONS(8879), + [aux_sym_boolean_literal_token1] = ACTIONS(8877), + [aux_sym_boolean_literal_token2] = ACTIONS(8877), + [sym_nothing_literal] = ACTIONS(8877), + [sym_null_literal] = ACTIONS(8877), + [sym_empty_literal] = ACTIONS(8877), + [sym_date_literal] = ACTIONS(8879), + [anon_sym_POUND] = ACTIONS(8877), + }, + [STATE(7256)] = { + [sym_identifier] = ACTIONS(9040), + [sym_newline] = ACTIONS(9042), + [anon_sym_COLON] = ACTIONS(9042), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9040), + [aux_sym_frm_property_statement_token1] = ACTIONS(9040), + [anon_sym_DOT] = ACTIONS(9040), + [anon_sym_BANG] = ACTIONS(9042), + [aux_sym__attribute_identifier_token1] = ACTIONS(9040), + [aux_sym_option_statement_token3] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9040), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9040), + [aux_sym_preprocessor_const_token1] = ACTIONS(9040), + [sym_static_modifier] = ACTIONS(9040), + [sym__dim_keyword] = ACTIONS(9040), + [sym__redim_keyword] = ACTIONS(9040), + [aux_sym_get_accessor_token1] = ACTIONS(9040), + [aux_sym_set_accessor_token1] = ACTIONS(9040), + [aux_sym_const_declaration_token1] = ACTIONS(9040), + [anon_sym_LPAREN] = ACTIONS(9042), + [aux_sym_as_type_clause_token2] = ACTIONS(9040), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9040), + [aux_sym_visibility_token1] = ACTIONS(9040), + [aux_sym_visibility_token2] = ACTIONS(9040), + [aux_sym_elseif_fragment_token1] = ACTIONS(9040), + [aux_sym_else_fragment_token1] = ACTIONS(9040), + [aux_sym_select_statement_token1] = ACTIONS(9040), + [aux_sym__for_header_token1] = ACTIONS(9040), + [aux_sym_do_statement_token1] = ACTIONS(9040), + [aux_sym_do_condition_token1] = ACTIONS(9040), + [aux_sym_with_statement_token1] = ACTIONS(9040), + [aux_sym_exit_statement_token1] = ACTIONS(9040), + [sym_end_statement] = ACTIONS(9042), + [aux_sym_on_goto_statement_token1] = ACTIONS(9040), + [aux_sym_on_goto_statement_token2] = ACTIONS(9040), + [aux_sym_on_error_statement_token2] = ACTIONS(9040), + [sym__ambiguous_redim_statement] = ACTIONS(9042), + [aux_sym_erase_statement_token1] = ACTIONS(9040), + [aux_sym_open_statement_token1] = ACTIONS(9040), + [aux_sym_file_mode_token2] = ACTIONS(9040), + [aux_sym_file_access_token2] = ACTIONS(9040), + [aux_sym_file_lock_token2] = ACTIONS(9040), + [aux_sym_print_statement_token1] = ACTIONS(9040), + [anon_sym_PLUS] = ACTIONS(9042), + [anon_sym_DASH] = ACTIONS(9040), + [anon_sym_QMARK] = ACTIONS(9042), + [aux_sym_close_statement_token1] = ACTIONS(9040), + [aux_sym_put_statement_token1] = ACTIONS(9040), + [aux_sym_unlock_statement_token1] = ACTIONS(9040), + [aux_sym_seek_statement_token1] = ACTIONS(9040), + [sym_reset_statement] = ACTIONS(9040), + [aux_sym_raise_event_statement_token1] = ACTIONS(9040), + [sym_stop_statement] = ACTIONS(9040), + [sym_beep_statement] = ACTIONS(9040), + [aux_sym_unload_statement_token1] = ACTIONS(9040), + [aux_sym_def_type_statement_token1] = ACTIONS(9040), + [aux_sym_def_type_statement_token2] = ACTIONS(9040), + [aux_sym_def_type_statement_token3] = ACTIONS(9040), + [aux_sym_def_type_statement_token4] = ACTIONS(9040), + [aux_sym_def_type_statement_token5] = ACTIONS(9040), + [aux_sym_def_type_statement_token6] = ACTIONS(9040), + [aux_sym_def_type_statement_token7] = ACTIONS(9040), + [aux_sym_def_type_statement_token8] = ACTIONS(9040), + [aux_sym_def_type_statement_token9] = ACTIONS(9040), + [aux_sym_def_type_statement_token10] = ACTIONS(9040), + [aux_sym_def_type_statement_token11] = ACTIONS(9040), + [aux_sym_def_type_statement_token12] = ACTIONS(9040), + [aux_sym_def_type_statement_token13] = ACTIONS(9040), + [aux_sym_def_type_statement_token14] = ACTIONS(9040), + [aux_sym_call_statement_token1] = ACTIONS(9040), + [sym__ambiguous_call_statement] = ACTIONS(9040), + [aux_sym_addressof_expression_token1] = ACTIONS(9040), + [aux_sym_type_of_expression_token1] = ACTIONS(9040), + [aux_sym_unary_expression_token1] = ACTIONS(9040), + [sym_string_literal] = ACTIONS(9042), + [sym_number_literal] = ACTIONS(9042), + [aux_sym_boolean_literal_token1] = ACTIONS(9040), + [aux_sym_boolean_literal_token2] = ACTIONS(9040), + [sym_nothing_literal] = ACTIONS(9040), + [sym_null_literal] = ACTIONS(9040), + [sym_empty_literal] = ACTIONS(9040), + [sym_date_literal] = ACTIONS(9042), + [anon_sym_POUND] = ACTIONS(9040), + }, + [STATE(7257)] = { + [sym_identifier] = ACTIONS(9272), + [sym_newline] = ACTIONS(9274), + [anon_sym_COLON] = ACTIONS(9274), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9272), + [aux_sym_frm_property_statement_token1] = ACTIONS(9272), + [anon_sym_DOT] = ACTIONS(9272), + [anon_sym_BANG] = ACTIONS(9274), + [aux_sym__attribute_identifier_token1] = ACTIONS(9272), + [aux_sym_option_statement_token3] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9272), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9272), + [aux_sym_preprocessor_const_token1] = ACTIONS(9272), + [sym_static_modifier] = ACTIONS(9272), + [sym__dim_keyword] = ACTIONS(9272), + [sym__redim_keyword] = ACTIONS(9272), + [aux_sym_get_accessor_token1] = ACTIONS(9272), + [aux_sym_set_accessor_token1] = ACTIONS(9272), + [aux_sym_const_declaration_token1] = ACTIONS(9272), + [anon_sym_LPAREN] = ACTIONS(9274), + [aux_sym_as_type_clause_token2] = ACTIONS(9272), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9272), + [aux_sym_visibility_token1] = ACTIONS(9272), + [aux_sym_visibility_token2] = ACTIONS(9272), + [aux_sym_elseif_fragment_token1] = ACTIONS(9272), + [aux_sym_else_fragment_token1] = ACTIONS(9272), + [aux_sym_select_statement_token1] = ACTIONS(9272), + [aux_sym__for_header_token1] = ACTIONS(9272), + [aux_sym_do_statement_token1] = ACTIONS(9272), + [aux_sym_do_condition_token1] = ACTIONS(9272), + [aux_sym_with_statement_token1] = ACTIONS(9272), + [aux_sym_exit_statement_token1] = ACTIONS(9272), + [sym_end_statement] = ACTIONS(9274), + [aux_sym_on_goto_statement_token1] = ACTIONS(9272), + [aux_sym_on_goto_statement_token2] = ACTIONS(9272), + [aux_sym_on_error_statement_token2] = ACTIONS(9272), + [sym__ambiguous_redim_statement] = ACTIONS(9274), + [aux_sym_erase_statement_token1] = ACTIONS(9272), + [aux_sym_open_statement_token1] = ACTIONS(9272), + [aux_sym_file_mode_token2] = ACTIONS(9272), + [aux_sym_file_access_token2] = ACTIONS(9272), + [aux_sym_file_lock_token2] = ACTIONS(9272), + [aux_sym_print_statement_token1] = ACTIONS(9272), + [anon_sym_PLUS] = ACTIONS(9274), + [anon_sym_DASH] = ACTIONS(9272), + [anon_sym_QMARK] = ACTIONS(9274), + [aux_sym_close_statement_token1] = ACTIONS(9272), + [aux_sym_put_statement_token1] = ACTIONS(9272), + [aux_sym_unlock_statement_token1] = ACTIONS(9272), + [aux_sym_seek_statement_token1] = ACTIONS(9272), + [sym_reset_statement] = ACTIONS(9272), + [aux_sym_raise_event_statement_token1] = ACTIONS(9272), + [sym_stop_statement] = ACTIONS(9272), + [sym_beep_statement] = ACTIONS(9272), + [aux_sym_unload_statement_token1] = ACTIONS(9272), + [aux_sym_def_type_statement_token1] = ACTIONS(9272), + [aux_sym_def_type_statement_token2] = ACTIONS(9272), + [aux_sym_def_type_statement_token3] = ACTIONS(9272), + [aux_sym_def_type_statement_token4] = ACTIONS(9272), + [aux_sym_def_type_statement_token5] = ACTIONS(9272), + [aux_sym_def_type_statement_token6] = ACTIONS(9272), + [aux_sym_def_type_statement_token7] = ACTIONS(9272), + [aux_sym_def_type_statement_token8] = ACTIONS(9272), + [aux_sym_def_type_statement_token9] = ACTIONS(9272), + [aux_sym_def_type_statement_token10] = ACTIONS(9272), + [aux_sym_def_type_statement_token11] = ACTIONS(9272), + [aux_sym_def_type_statement_token12] = ACTIONS(9272), + [aux_sym_def_type_statement_token13] = ACTIONS(9272), + [aux_sym_def_type_statement_token14] = ACTIONS(9272), + [aux_sym_call_statement_token1] = ACTIONS(9272), + [sym__ambiguous_call_statement] = ACTIONS(9272), + [aux_sym_addressof_expression_token1] = ACTIONS(9272), + [aux_sym_type_of_expression_token1] = ACTIONS(9272), + [aux_sym_unary_expression_token1] = ACTIONS(9272), + [sym_string_literal] = ACTIONS(9274), + [sym_number_literal] = ACTIONS(9274), + [aux_sym_boolean_literal_token1] = ACTIONS(9272), + [aux_sym_boolean_literal_token2] = ACTIONS(9272), + [sym_nothing_literal] = ACTIONS(9272), + [sym_null_literal] = ACTIONS(9272), + [sym_empty_literal] = ACTIONS(9272), + [sym_date_literal] = ACTIONS(9274), + [anon_sym_POUND] = ACTIONS(9272), + }, + [STATE(7258)] = { + [sym_identifier] = ACTIONS(9370), + [sym_newline] = ACTIONS(9372), + [anon_sym_COLON] = ACTIONS(9372), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9370), + [aux_sym_frm_property_statement_token1] = ACTIONS(9370), + [anon_sym_DOT] = ACTIONS(9370), + [anon_sym_BANG] = ACTIONS(9372), + [aux_sym__attribute_identifier_token1] = ACTIONS(9370), + [aux_sym_option_statement_token3] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9370), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9370), + [aux_sym_preprocessor_const_token1] = ACTIONS(9370), + [sym_static_modifier] = ACTIONS(9370), + [sym__dim_keyword] = ACTIONS(9370), + [sym__redim_keyword] = ACTIONS(9370), + [aux_sym_get_accessor_token1] = ACTIONS(9370), + [aux_sym_set_accessor_token1] = ACTIONS(9370), + [aux_sym_const_declaration_token1] = ACTIONS(9370), + [anon_sym_LPAREN] = ACTIONS(9372), + [aux_sym_as_type_clause_token2] = ACTIONS(9370), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9370), + [aux_sym_visibility_token1] = ACTIONS(9370), + [aux_sym_visibility_token2] = ACTIONS(9370), + [aux_sym_elseif_fragment_token1] = ACTIONS(9370), + [aux_sym_else_fragment_token1] = ACTIONS(9370), + [aux_sym_select_statement_token1] = ACTIONS(9370), + [aux_sym__for_header_token1] = ACTIONS(9370), + [aux_sym_do_statement_token1] = ACTIONS(9370), + [aux_sym_do_condition_token1] = ACTIONS(9370), + [aux_sym_with_statement_token1] = ACTIONS(9370), + [aux_sym_exit_statement_token1] = ACTIONS(9370), + [sym_end_statement] = ACTIONS(9372), + [aux_sym_on_goto_statement_token1] = ACTIONS(9370), + [aux_sym_on_goto_statement_token2] = ACTIONS(9370), + [aux_sym_on_error_statement_token2] = ACTIONS(9370), + [sym__ambiguous_redim_statement] = ACTIONS(9372), + [aux_sym_erase_statement_token1] = ACTIONS(9370), + [aux_sym_open_statement_token1] = ACTIONS(9370), + [aux_sym_file_mode_token2] = ACTIONS(9370), + [aux_sym_file_access_token2] = ACTIONS(9370), + [aux_sym_file_lock_token2] = ACTIONS(9370), + [aux_sym_print_statement_token1] = ACTIONS(9370), + [anon_sym_PLUS] = ACTIONS(9372), + [anon_sym_DASH] = ACTIONS(9370), + [anon_sym_QMARK] = ACTIONS(9372), + [aux_sym_close_statement_token1] = ACTIONS(9370), + [aux_sym_put_statement_token1] = ACTIONS(9370), + [aux_sym_unlock_statement_token1] = ACTIONS(9370), + [aux_sym_seek_statement_token1] = ACTIONS(9370), + [sym_reset_statement] = ACTIONS(9370), + [aux_sym_raise_event_statement_token1] = ACTIONS(9370), + [sym_stop_statement] = ACTIONS(9370), + [sym_beep_statement] = ACTIONS(9370), + [aux_sym_unload_statement_token1] = ACTIONS(9370), + [aux_sym_def_type_statement_token1] = ACTIONS(9370), + [aux_sym_def_type_statement_token2] = ACTIONS(9370), + [aux_sym_def_type_statement_token3] = ACTIONS(9370), + [aux_sym_def_type_statement_token4] = ACTIONS(9370), + [aux_sym_def_type_statement_token5] = ACTIONS(9370), + [aux_sym_def_type_statement_token6] = ACTIONS(9370), + [aux_sym_def_type_statement_token7] = ACTIONS(9370), + [aux_sym_def_type_statement_token8] = ACTIONS(9370), + [aux_sym_def_type_statement_token9] = ACTIONS(9370), + [aux_sym_def_type_statement_token10] = ACTIONS(9370), + [aux_sym_def_type_statement_token11] = ACTIONS(9370), + [aux_sym_def_type_statement_token12] = ACTIONS(9370), + [aux_sym_def_type_statement_token13] = ACTIONS(9370), + [aux_sym_def_type_statement_token14] = ACTIONS(9370), + [aux_sym_call_statement_token1] = ACTIONS(9370), + [sym__ambiguous_call_statement] = ACTIONS(9370), + [aux_sym_addressof_expression_token1] = ACTIONS(9370), + [aux_sym_type_of_expression_token1] = ACTIONS(9370), + [aux_sym_unary_expression_token1] = ACTIONS(9370), + [sym_string_literal] = ACTIONS(9372), + [sym_number_literal] = ACTIONS(9372), + [aux_sym_boolean_literal_token1] = ACTIONS(9370), + [aux_sym_boolean_literal_token2] = ACTIONS(9370), + [sym_nothing_literal] = ACTIONS(9370), + [sym_null_literal] = ACTIONS(9370), + [sym_empty_literal] = ACTIONS(9370), + [sym_date_literal] = ACTIONS(9372), + [anon_sym_POUND] = ACTIONS(9370), + }, + [STATE(7259)] = { + [sym_identifier] = ACTIONS(8764), + [sym_newline] = ACTIONS(9034), + [anon_sym_COLON] = ACTIONS(9034), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8764), + [aux_sym_frm_property_statement_token1] = ACTIONS(8764), + [anon_sym_DOT] = ACTIONS(8764), + [anon_sym_BANG] = ACTIONS(9034), + [aux_sym__attribute_identifier_token1] = ACTIONS(8764), + [aux_sym_option_statement_token3] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8764), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8764), + [aux_sym_preprocessor_const_token1] = ACTIONS(8764), + [sym_static_modifier] = ACTIONS(8764), + [sym__dim_keyword] = ACTIONS(8764), + [sym__redim_keyword] = ACTIONS(8764), + [aux_sym_get_accessor_token1] = ACTIONS(8764), + [aux_sym_set_accessor_token1] = ACTIONS(8764), + [aux_sym_const_declaration_token1] = ACTIONS(8764), + [anon_sym_LPAREN] = ACTIONS(9034), + [aux_sym_as_type_clause_token2] = ACTIONS(8764), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8764), + [aux_sym_visibility_token1] = ACTIONS(8764), + [aux_sym_visibility_token2] = ACTIONS(8764), + [aux_sym_elseif_fragment_token1] = ACTIONS(8764), + [aux_sym_else_fragment_token1] = ACTIONS(8764), + [aux_sym_select_statement_token1] = ACTIONS(8764), + [aux_sym__for_header_token1] = ACTIONS(8764), + [aux_sym_do_statement_token1] = ACTIONS(8764), + [aux_sym_do_condition_token1] = ACTIONS(8764), + [aux_sym_with_statement_token1] = ACTIONS(8764), + [aux_sym_exit_statement_token1] = ACTIONS(8764), + [sym_end_statement] = ACTIONS(9034), + [aux_sym_on_goto_statement_token1] = ACTIONS(8764), + [aux_sym_on_goto_statement_token2] = ACTIONS(8764), + [aux_sym_on_error_statement_token2] = ACTIONS(8764), + [sym__ambiguous_redim_statement] = ACTIONS(9034), + [aux_sym_erase_statement_token1] = ACTIONS(8764), + [aux_sym_open_statement_token1] = ACTIONS(8764), + [aux_sym_file_mode_token2] = ACTIONS(8764), + [aux_sym_file_access_token2] = ACTIONS(8764), + [aux_sym_file_lock_token2] = ACTIONS(8764), + [aux_sym_print_statement_token1] = ACTIONS(8764), + [anon_sym_PLUS] = ACTIONS(9034), + [anon_sym_DASH] = ACTIONS(8764), + [anon_sym_QMARK] = ACTIONS(9034), + [aux_sym_close_statement_token1] = ACTIONS(8764), + [aux_sym_put_statement_token1] = ACTIONS(8764), + [aux_sym_unlock_statement_token1] = ACTIONS(8764), + [aux_sym_seek_statement_token1] = ACTIONS(8764), + [sym_reset_statement] = ACTIONS(8764), + [aux_sym_raise_event_statement_token1] = ACTIONS(8764), + [sym_stop_statement] = ACTIONS(8764), + [sym_beep_statement] = ACTIONS(8764), + [aux_sym_unload_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token1] = ACTIONS(8764), + [aux_sym_def_type_statement_token2] = ACTIONS(8764), + [aux_sym_def_type_statement_token3] = ACTIONS(8764), + [aux_sym_def_type_statement_token4] = ACTIONS(8764), + [aux_sym_def_type_statement_token5] = ACTIONS(8764), + [aux_sym_def_type_statement_token6] = ACTIONS(8764), + [aux_sym_def_type_statement_token7] = ACTIONS(8764), + [aux_sym_def_type_statement_token8] = ACTIONS(8764), + [aux_sym_def_type_statement_token9] = ACTIONS(8764), + [aux_sym_def_type_statement_token10] = ACTIONS(8764), + [aux_sym_def_type_statement_token11] = ACTIONS(8764), + [aux_sym_def_type_statement_token12] = ACTIONS(8764), + [aux_sym_def_type_statement_token13] = ACTIONS(8764), + [aux_sym_def_type_statement_token14] = ACTIONS(8764), + [aux_sym_call_statement_token1] = ACTIONS(8764), + [sym__ambiguous_call_statement] = ACTIONS(8764), + [aux_sym_addressof_expression_token1] = ACTIONS(8764), + [aux_sym_type_of_expression_token1] = ACTIONS(8764), + [aux_sym_unary_expression_token1] = ACTIONS(8764), + [sym_string_literal] = ACTIONS(9034), + [sym_number_literal] = ACTIONS(9034), + [aux_sym_boolean_literal_token1] = ACTIONS(8764), + [aux_sym_boolean_literal_token2] = ACTIONS(8764), + [sym_nothing_literal] = ACTIONS(8764), + [sym_null_literal] = ACTIONS(8764), + [sym_empty_literal] = ACTIONS(8764), + [sym_date_literal] = ACTIONS(9034), + [anon_sym_POUND] = ACTIONS(8764), + }, + [STATE(7260)] = { + [sym_identifier] = ACTIONS(9099), + [sym_newline] = ACTIONS(9101), + [anon_sym_COLON] = ACTIONS(11189), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9099), + [aux_sym_frm_property_statement_token1] = ACTIONS(9099), + [anon_sym_DOT] = ACTIONS(9099), + [anon_sym_BANG] = ACTIONS(9101), + [aux_sym__attribute_identifier_token1] = ACTIONS(9099), + [aux_sym_option_statement_token3] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9099), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9099), + [aux_sym_preprocessor_const_token1] = ACTIONS(9099), + [sym_static_modifier] = ACTIONS(9099), + [sym__dim_keyword] = ACTIONS(9099), + [sym__redim_keyword] = ACTIONS(9099), + [aux_sym_get_accessor_token1] = ACTIONS(9099), + [aux_sym_set_accessor_token1] = ACTIONS(9099), + [aux_sym_const_declaration_token1] = ACTIONS(9099), + [anon_sym_LPAREN] = ACTIONS(9101), + [aux_sym_as_type_clause_token2] = ACTIONS(9099), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9099), + [aux_sym_visibility_token1] = ACTIONS(9099), + [aux_sym_visibility_token2] = ACTIONS(9099), + [aux_sym_elseif_fragment_token1] = ACTIONS(9099), + [aux_sym_else_fragment_token1] = ACTIONS(9099), + [aux_sym_select_statement_token1] = ACTIONS(9099), + [aux_sym__for_header_token1] = ACTIONS(9099), + [aux_sym_do_statement_token1] = ACTIONS(9099), + [aux_sym_do_condition_token1] = ACTIONS(9099), + [aux_sym_with_statement_token1] = ACTIONS(9099), + [aux_sym_exit_statement_token1] = ACTIONS(9099), + [sym_end_statement] = ACTIONS(9101), + [aux_sym_on_goto_statement_token1] = ACTIONS(9099), + [aux_sym_on_goto_statement_token2] = ACTIONS(9099), + [aux_sym_on_error_statement_token2] = ACTIONS(9099), + [sym__ambiguous_redim_statement] = ACTIONS(9101), + [aux_sym_erase_statement_token1] = ACTIONS(9099), + [aux_sym_open_statement_token1] = ACTIONS(9099), + [aux_sym_file_mode_token2] = ACTIONS(9099), + [aux_sym_file_access_token2] = ACTIONS(9099), + [aux_sym_file_lock_token2] = ACTIONS(9099), + [aux_sym_print_statement_token1] = ACTIONS(9099), + [anon_sym_PLUS] = ACTIONS(9101), + [anon_sym_DASH] = ACTIONS(9099), + [anon_sym_QMARK] = ACTIONS(9101), + [aux_sym_close_statement_token1] = ACTIONS(9099), + [aux_sym_put_statement_token1] = ACTIONS(9099), + [aux_sym_unlock_statement_token1] = ACTIONS(9099), + [aux_sym_seek_statement_token1] = ACTIONS(9099), + [sym_reset_statement] = ACTIONS(9099), + [aux_sym_raise_event_statement_token1] = ACTIONS(9099), + [sym_stop_statement] = ACTIONS(9099), + [sym_beep_statement] = ACTIONS(9099), + [aux_sym_unload_statement_token1] = ACTIONS(9099), + [aux_sym_def_type_statement_token1] = ACTIONS(9099), + [aux_sym_def_type_statement_token2] = ACTIONS(9099), + [aux_sym_def_type_statement_token3] = ACTIONS(9099), + [aux_sym_def_type_statement_token4] = ACTIONS(9099), + [aux_sym_def_type_statement_token5] = ACTIONS(9099), + [aux_sym_def_type_statement_token6] = ACTIONS(9099), + [aux_sym_def_type_statement_token7] = ACTIONS(9099), + [aux_sym_def_type_statement_token8] = ACTIONS(9099), + [aux_sym_def_type_statement_token9] = ACTIONS(9099), + [aux_sym_def_type_statement_token10] = ACTIONS(9099), + [aux_sym_def_type_statement_token11] = ACTIONS(9099), + [aux_sym_def_type_statement_token12] = ACTIONS(9099), + [aux_sym_def_type_statement_token13] = ACTIONS(9099), + [aux_sym_def_type_statement_token14] = ACTIONS(9099), + [aux_sym_call_statement_token1] = ACTIONS(9099), + [sym__ambiguous_call_statement] = ACTIONS(9099), + [aux_sym_addressof_expression_token1] = ACTIONS(9099), + [aux_sym_type_of_expression_token1] = ACTIONS(9099), + [aux_sym_unary_expression_token1] = ACTIONS(9099), + [sym_string_literal] = ACTIONS(9101), + [sym_number_literal] = ACTIONS(9101), + [aux_sym_boolean_literal_token1] = ACTIONS(9099), + [aux_sym_boolean_literal_token2] = ACTIONS(9099), + [sym_nothing_literal] = ACTIONS(9099), + [sym_null_literal] = ACTIONS(9099), + [sym_empty_literal] = ACTIONS(9099), + [sym_date_literal] = ACTIONS(9101), + [anon_sym_POUND] = ACTIONS(9099), + }, + [STATE(7261)] = { + [sym_identifier] = ACTIONS(9110), + [sym_newline] = ACTIONS(9112), + [anon_sym_COLON] = ACTIONS(9112), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9110), + [aux_sym_frm_property_statement_token1] = ACTIONS(9110), + [anon_sym_DOT] = ACTIONS(9110), + [anon_sym_BANG] = ACTIONS(9112), + [aux_sym__attribute_identifier_token1] = ACTIONS(9110), + [aux_sym_option_statement_token3] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9110), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9110), + [aux_sym_preprocessor_const_token1] = ACTIONS(9110), + [sym_static_modifier] = ACTIONS(9110), + [sym__dim_keyword] = ACTIONS(9110), + [sym__redim_keyword] = ACTIONS(9110), + [aux_sym_get_accessor_token1] = ACTIONS(9110), + [aux_sym_set_accessor_token1] = ACTIONS(9110), + [aux_sym_const_declaration_token1] = ACTIONS(9110), + [anon_sym_LPAREN] = ACTIONS(9112), + [aux_sym_as_type_clause_token2] = ACTIONS(9110), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9110), + [aux_sym_visibility_token1] = ACTIONS(9110), + [aux_sym_visibility_token2] = ACTIONS(9110), + [aux_sym_elseif_fragment_token1] = ACTIONS(9110), + [aux_sym_else_fragment_token1] = ACTIONS(9110), + [aux_sym_select_statement_token1] = ACTIONS(9110), + [aux_sym__for_header_token1] = ACTIONS(9110), + [aux_sym_do_statement_token1] = ACTIONS(9110), + [aux_sym_do_condition_token1] = ACTIONS(9110), + [aux_sym_with_statement_token1] = ACTIONS(9110), + [aux_sym_exit_statement_token1] = ACTIONS(9110), + [sym_end_statement] = ACTIONS(9112), + [aux_sym_on_goto_statement_token1] = ACTIONS(9110), + [aux_sym_on_goto_statement_token2] = ACTIONS(9110), + [aux_sym_on_error_statement_token2] = ACTIONS(9110), + [sym__ambiguous_redim_statement] = ACTIONS(9112), + [aux_sym_erase_statement_token1] = ACTIONS(9110), + [aux_sym_open_statement_token1] = ACTIONS(9110), + [aux_sym_file_mode_token2] = ACTIONS(9110), + [aux_sym_file_access_token2] = ACTIONS(9110), + [aux_sym_file_lock_token2] = ACTIONS(9110), + [aux_sym_print_statement_token1] = ACTIONS(9110), + [anon_sym_PLUS] = ACTIONS(9112), + [anon_sym_DASH] = ACTIONS(9110), + [anon_sym_QMARK] = ACTIONS(9112), + [aux_sym_close_statement_token1] = ACTIONS(9110), + [aux_sym_put_statement_token1] = ACTIONS(9110), + [aux_sym_unlock_statement_token1] = ACTIONS(9110), + [aux_sym_seek_statement_token1] = ACTIONS(9110), + [sym_reset_statement] = ACTIONS(9110), + [aux_sym_raise_event_statement_token1] = ACTIONS(9110), + [sym_stop_statement] = ACTIONS(9110), + [sym_beep_statement] = ACTIONS(9110), + [aux_sym_unload_statement_token1] = ACTIONS(9110), + [aux_sym_def_type_statement_token1] = ACTIONS(9110), + [aux_sym_def_type_statement_token2] = ACTIONS(9110), + [aux_sym_def_type_statement_token3] = ACTIONS(9110), + [aux_sym_def_type_statement_token4] = ACTIONS(9110), + [aux_sym_def_type_statement_token5] = ACTIONS(9110), + [aux_sym_def_type_statement_token6] = ACTIONS(9110), + [aux_sym_def_type_statement_token7] = ACTIONS(9110), + [aux_sym_def_type_statement_token8] = ACTIONS(9110), + [aux_sym_def_type_statement_token9] = ACTIONS(9110), + [aux_sym_def_type_statement_token10] = ACTIONS(9110), + [aux_sym_def_type_statement_token11] = ACTIONS(9110), + [aux_sym_def_type_statement_token12] = ACTIONS(9110), + [aux_sym_def_type_statement_token13] = ACTIONS(9110), + [aux_sym_def_type_statement_token14] = ACTIONS(9110), + [aux_sym_call_statement_token1] = ACTIONS(9110), + [sym__ambiguous_call_statement] = ACTIONS(9110), + [aux_sym_addressof_expression_token1] = ACTIONS(9110), + [aux_sym_type_of_expression_token1] = ACTIONS(9110), + [aux_sym_unary_expression_token1] = ACTIONS(9110), + [sym_string_literal] = ACTIONS(9112), + [sym_number_literal] = ACTIONS(9112), + [aux_sym_boolean_literal_token1] = ACTIONS(9110), + [aux_sym_boolean_literal_token2] = ACTIONS(9110), + [sym_nothing_literal] = ACTIONS(9110), + [sym_null_literal] = ACTIONS(9110), + [sym_empty_literal] = ACTIONS(9110), + [sym_date_literal] = ACTIONS(9112), + [anon_sym_POUND] = ACTIONS(9110), + }, + [STATE(7262)] = { + [sym_identifier] = ACTIONS(8903), + [sym_newline] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8903), + [aux_sym_frm_property_statement_token1] = ACTIONS(8903), + [anon_sym_DOT] = ACTIONS(8903), + [anon_sym_BANG] = ACTIONS(8905), + [aux_sym__attribute_identifier_token1] = ACTIONS(8903), + [aux_sym_option_statement_token3] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8903), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8903), + [aux_sym_preprocessor_const_token1] = ACTIONS(8903), + [sym_static_modifier] = ACTIONS(8903), + [sym__dim_keyword] = ACTIONS(8903), + [sym__redim_keyword] = ACTIONS(8903), + [aux_sym_get_accessor_token1] = ACTIONS(8903), + [aux_sym_set_accessor_token1] = ACTIONS(8903), + [aux_sym_const_declaration_token1] = ACTIONS(8903), + [anon_sym_LPAREN] = ACTIONS(8905), + [aux_sym_as_type_clause_token2] = ACTIONS(8903), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8903), + [aux_sym_visibility_token1] = ACTIONS(8903), + [aux_sym_visibility_token2] = ACTIONS(8903), + [aux_sym_elseif_fragment_token1] = ACTIONS(8903), + [aux_sym_else_fragment_token1] = ACTIONS(8903), + [aux_sym_select_statement_token1] = ACTIONS(8903), + [aux_sym__for_header_token1] = ACTIONS(8903), + [aux_sym_do_statement_token1] = ACTIONS(8903), + [aux_sym_do_condition_token1] = ACTIONS(8903), + [aux_sym_with_statement_token1] = ACTIONS(8903), + [aux_sym_exit_statement_token1] = ACTIONS(8903), + [sym_end_statement] = ACTIONS(8905), + [aux_sym_on_goto_statement_token1] = ACTIONS(8903), + [aux_sym_on_goto_statement_token2] = ACTIONS(8903), + [aux_sym_on_error_statement_token2] = ACTIONS(8903), + [sym__ambiguous_redim_statement] = ACTIONS(8905), + [aux_sym_erase_statement_token1] = ACTIONS(8903), + [aux_sym_open_statement_token1] = ACTIONS(8903), + [aux_sym_file_mode_token2] = ACTIONS(8903), + [aux_sym_file_access_token2] = ACTIONS(8903), + [aux_sym_file_lock_token2] = ACTIONS(8903), + [aux_sym_print_statement_token1] = ACTIONS(8903), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_DASH] = ACTIONS(8903), + [anon_sym_QMARK] = ACTIONS(8905), + [aux_sym_close_statement_token1] = ACTIONS(8903), + [aux_sym_put_statement_token1] = ACTIONS(8903), + [aux_sym_unlock_statement_token1] = ACTIONS(8903), + [aux_sym_seek_statement_token1] = ACTIONS(8903), + [sym_reset_statement] = ACTIONS(8903), + [aux_sym_raise_event_statement_token1] = ACTIONS(8903), + [sym_stop_statement] = ACTIONS(8903), + [sym_beep_statement] = ACTIONS(8903), + [aux_sym_unload_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token1] = ACTIONS(8903), + [aux_sym_def_type_statement_token2] = ACTIONS(8903), + [aux_sym_def_type_statement_token3] = ACTIONS(8903), + [aux_sym_def_type_statement_token4] = ACTIONS(8903), + [aux_sym_def_type_statement_token5] = ACTIONS(8903), + [aux_sym_def_type_statement_token6] = ACTIONS(8903), + [aux_sym_def_type_statement_token7] = ACTIONS(8903), + [aux_sym_def_type_statement_token8] = ACTIONS(8903), + [aux_sym_def_type_statement_token9] = ACTIONS(8903), + [aux_sym_def_type_statement_token10] = ACTIONS(8903), + [aux_sym_def_type_statement_token11] = ACTIONS(8903), + [aux_sym_def_type_statement_token12] = ACTIONS(8903), + [aux_sym_def_type_statement_token13] = ACTIONS(8903), + [aux_sym_def_type_statement_token14] = ACTIONS(8903), + [aux_sym_call_statement_token1] = ACTIONS(8903), + [sym__ambiguous_call_statement] = ACTIONS(8903), + [aux_sym_addressof_expression_token1] = ACTIONS(8903), + [aux_sym_type_of_expression_token1] = ACTIONS(8903), + [aux_sym_unary_expression_token1] = ACTIONS(8903), + [sym_string_literal] = ACTIONS(8905), + [sym_number_literal] = ACTIONS(8905), + [aux_sym_boolean_literal_token1] = ACTIONS(8903), + [aux_sym_boolean_literal_token2] = ACTIONS(8903), + [sym_nothing_literal] = ACTIONS(8903), + [sym_null_literal] = ACTIONS(8903), + [sym_empty_literal] = ACTIONS(8903), + [sym_date_literal] = ACTIONS(8905), + [anon_sym_POUND] = ACTIONS(8903), + }, + [STATE(7263)] = { + [sym_identifier] = ACTIONS(9708), + [sym_newline] = ACTIONS(9710), + [anon_sym_COLON] = ACTIONS(9710), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9708), + [aux_sym_frm_property_statement_token1] = ACTIONS(9708), + [anon_sym_DOT] = ACTIONS(9708), + [anon_sym_BANG] = ACTIONS(9710), + [aux_sym__attribute_identifier_token1] = ACTIONS(9708), + [aux_sym_option_statement_token3] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9708), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9708), + [aux_sym_preprocessor_const_token1] = ACTIONS(9708), + [sym_static_modifier] = ACTIONS(9708), + [sym__dim_keyword] = ACTIONS(9708), + [sym__redim_keyword] = ACTIONS(9708), + [aux_sym_get_accessor_token1] = ACTIONS(9708), + [aux_sym_set_accessor_token1] = ACTIONS(9708), + [aux_sym_const_declaration_token1] = ACTIONS(9708), + [anon_sym_LPAREN] = ACTIONS(9710), + [aux_sym_as_type_clause_token2] = ACTIONS(9708), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9708), + [aux_sym_visibility_token1] = ACTIONS(9708), + [aux_sym_visibility_token2] = ACTIONS(9708), + [aux_sym_elseif_fragment_token1] = ACTIONS(9708), + [aux_sym_else_fragment_token1] = ACTIONS(9708), + [aux_sym_select_statement_token1] = ACTIONS(9708), + [aux_sym__for_header_token1] = ACTIONS(9708), + [aux_sym_do_statement_token1] = ACTIONS(9708), + [aux_sym_do_condition_token1] = ACTIONS(9708), + [aux_sym_with_statement_token1] = ACTIONS(9708), + [aux_sym_exit_statement_token1] = ACTIONS(9708), + [sym_end_statement] = ACTIONS(9710), + [aux_sym_on_goto_statement_token1] = ACTIONS(9708), + [aux_sym_on_goto_statement_token2] = ACTIONS(9708), + [aux_sym_on_error_statement_token2] = ACTIONS(9708), + [sym__ambiguous_redim_statement] = ACTIONS(9710), + [aux_sym_erase_statement_token1] = ACTIONS(9708), + [aux_sym_open_statement_token1] = ACTIONS(9708), + [aux_sym_file_mode_token2] = ACTIONS(9708), + [aux_sym_file_access_token2] = ACTIONS(9708), + [aux_sym_file_lock_token2] = ACTIONS(9708), + [aux_sym_print_statement_token1] = ACTIONS(9708), + [anon_sym_PLUS] = ACTIONS(9710), + [anon_sym_DASH] = ACTIONS(9708), + [anon_sym_QMARK] = ACTIONS(9710), + [aux_sym_close_statement_token1] = ACTIONS(9708), + [aux_sym_put_statement_token1] = ACTIONS(9708), + [aux_sym_unlock_statement_token1] = ACTIONS(9708), + [aux_sym_seek_statement_token1] = ACTIONS(9708), + [sym_reset_statement] = ACTIONS(9708), + [aux_sym_raise_event_statement_token1] = ACTIONS(9708), + [sym_stop_statement] = ACTIONS(9708), + [sym_beep_statement] = ACTIONS(9708), + [aux_sym_unload_statement_token1] = ACTIONS(9708), + [aux_sym_def_type_statement_token1] = ACTIONS(9708), + [aux_sym_def_type_statement_token2] = ACTIONS(9708), + [aux_sym_def_type_statement_token3] = ACTIONS(9708), + [aux_sym_def_type_statement_token4] = ACTIONS(9708), + [aux_sym_def_type_statement_token5] = ACTIONS(9708), + [aux_sym_def_type_statement_token6] = ACTIONS(9708), + [aux_sym_def_type_statement_token7] = ACTIONS(9708), + [aux_sym_def_type_statement_token8] = ACTIONS(9708), + [aux_sym_def_type_statement_token9] = ACTIONS(9708), + [aux_sym_def_type_statement_token10] = ACTIONS(9708), + [aux_sym_def_type_statement_token11] = ACTIONS(9708), + [aux_sym_def_type_statement_token12] = ACTIONS(9708), + [aux_sym_def_type_statement_token13] = ACTIONS(9708), + [aux_sym_def_type_statement_token14] = ACTIONS(9708), + [aux_sym_call_statement_token1] = ACTIONS(9708), + [sym__ambiguous_call_statement] = ACTIONS(9708), + [aux_sym_addressof_expression_token1] = ACTIONS(9708), + [aux_sym_type_of_expression_token1] = ACTIONS(9708), + [aux_sym_unary_expression_token1] = ACTIONS(9708), + [sym_string_literal] = ACTIONS(9710), + [sym_number_literal] = ACTIONS(9710), + [aux_sym_boolean_literal_token1] = ACTIONS(9708), + [aux_sym_boolean_literal_token2] = ACTIONS(9708), + [sym_nothing_literal] = ACTIONS(9708), + [sym_null_literal] = ACTIONS(9708), + [sym_empty_literal] = ACTIONS(9708), + [sym_date_literal] = ACTIONS(9710), + [anon_sym_POUND] = ACTIONS(9708), + }, + [STATE(7264)] = { + [sym_identifier] = ACTIONS(8911), + [sym_newline] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8911), + [aux_sym_frm_property_statement_token1] = ACTIONS(8911), + [anon_sym_DOT] = ACTIONS(8911), + [anon_sym_BANG] = ACTIONS(8913), + [aux_sym__attribute_identifier_token1] = ACTIONS(8911), + [aux_sym_option_statement_token3] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8911), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8911), + [aux_sym_preprocessor_const_token1] = ACTIONS(8911), + [sym_static_modifier] = ACTIONS(8911), + [sym__dim_keyword] = ACTIONS(8911), + [sym__redim_keyword] = ACTIONS(8911), + [aux_sym_get_accessor_token1] = ACTIONS(8911), + [aux_sym_set_accessor_token1] = ACTIONS(8911), + [aux_sym_const_declaration_token1] = ACTIONS(8911), + [anon_sym_LPAREN] = ACTIONS(8913), + [aux_sym_as_type_clause_token2] = ACTIONS(8911), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8911), + [aux_sym_visibility_token1] = ACTIONS(8911), + [aux_sym_visibility_token2] = ACTIONS(8911), + [aux_sym_elseif_fragment_token1] = ACTIONS(8911), + [aux_sym_else_fragment_token1] = ACTIONS(8911), + [aux_sym_select_statement_token1] = ACTIONS(8911), + [aux_sym__for_header_token1] = ACTIONS(8911), + [aux_sym_do_statement_token1] = ACTIONS(8911), + [aux_sym_do_condition_token1] = ACTIONS(8911), + [aux_sym_with_statement_token1] = ACTIONS(8911), + [aux_sym_exit_statement_token1] = ACTIONS(8911), + [sym_end_statement] = ACTIONS(8913), + [aux_sym_on_goto_statement_token1] = ACTIONS(8911), + [aux_sym_on_goto_statement_token2] = ACTIONS(8911), + [aux_sym_on_error_statement_token2] = ACTIONS(8911), + [sym__ambiguous_redim_statement] = ACTIONS(8913), + [aux_sym_erase_statement_token1] = ACTIONS(8911), + [aux_sym_open_statement_token1] = ACTIONS(8911), + [aux_sym_file_mode_token2] = ACTIONS(8911), + [aux_sym_file_access_token2] = ACTIONS(8911), + [aux_sym_file_lock_token2] = ACTIONS(8911), + [aux_sym_print_statement_token1] = ACTIONS(8911), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_DASH] = ACTIONS(8911), + [anon_sym_QMARK] = ACTIONS(8913), + [aux_sym_close_statement_token1] = ACTIONS(8911), + [aux_sym_put_statement_token1] = ACTIONS(8911), + [aux_sym_unlock_statement_token1] = ACTIONS(8911), + [aux_sym_seek_statement_token1] = ACTIONS(8911), + [sym_reset_statement] = ACTIONS(8911), + [aux_sym_raise_event_statement_token1] = ACTIONS(8911), + [sym_stop_statement] = ACTIONS(8911), + [sym_beep_statement] = ACTIONS(8911), + [aux_sym_unload_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token1] = ACTIONS(8911), + [aux_sym_def_type_statement_token2] = ACTIONS(8911), + [aux_sym_def_type_statement_token3] = ACTIONS(8911), + [aux_sym_def_type_statement_token4] = ACTIONS(8911), + [aux_sym_def_type_statement_token5] = ACTIONS(8911), + [aux_sym_def_type_statement_token6] = ACTIONS(8911), + [aux_sym_def_type_statement_token7] = ACTIONS(8911), + [aux_sym_def_type_statement_token8] = ACTIONS(8911), + [aux_sym_def_type_statement_token9] = ACTIONS(8911), + [aux_sym_def_type_statement_token10] = ACTIONS(8911), + [aux_sym_def_type_statement_token11] = ACTIONS(8911), + [aux_sym_def_type_statement_token12] = ACTIONS(8911), + [aux_sym_def_type_statement_token13] = ACTIONS(8911), + [aux_sym_def_type_statement_token14] = ACTIONS(8911), + [aux_sym_call_statement_token1] = ACTIONS(8911), + [sym__ambiguous_call_statement] = ACTIONS(8911), + [aux_sym_addressof_expression_token1] = ACTIONS(8911), + [aux_sym_type_of_expression_token1] = ACTIONS(8911), + [aux_sym_unary_expression_token1] = ACTIONS(8911), + [sym_string_literal] = ACTIONS(8913), + [sym_number_literal] = ACTIONS(8913), + [aux_sym_boolean_literal_token1] = ACTIONS(8911), + [aux_sym_boolean_literal_token2] = ACTIONS(8911), + [sym_nothing_literal] = ACTIONS(8911), + [sym_null_literal] = ACTIONS(8911), + [sym_empty_literal] = ACTIONS(8911), + [sym_date_literal] = ACTIONS(8913), + [anon_sym_POUND] = ACTIONS(8911), + }, + [STATE(7265)] = { + [sym_identifier] = ACTIONS(9712), + [sym_newline] = ACTIONS(9714), + [anon_sym_COLON] = ACTIONS(9714), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9712), + [aux_sym_frm_property_statement_token1] = ACTIONS(9712), + [anon_sym_DOT] = ACTIONS(9712), + [anon_sym_BANG] = ACTIONS(9714), + [aux_sym__attribute_identifier_token1] = ACTIONS(9712), + [aux_sym_option_statement_token3] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9712), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9712), + [aux_sym_preprocessor_const_token1] = ACTIONS(9712), + [sym_static_modifier] = ACTIONS(9712), + [sym__dim_keyword] = ACTIONS(9712), + [sym__redim_keyword] = ACTIONS(9712), + [aux_sym_get_accessor_token1] = ACTIONS(9712), + [aux_sym_set_accessor_token1] = ACTIONS(9712), + [aux_sym_const_declaration_token1] = ACTIONS(9712), + [anon_sym_LPAREN] = ACTIONS(9714), + [aux_sym_as_type_clause_token2] = ACTIONS(9712), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9712), + [aux_sym_visibility_token1] = ACTIONS(9712), + [aux_sym_visibility_token2] = ACTIONS(9712), + [aux_sym_elseif_fragment_token1] = ACTIONS(9712), + [aux_sym_else_fragment_token1] = ACTIONS(9712), + [aux_sym_select_statement_token1] = ACTIONS(9712), + [aux_sym__for_header_token1] = ACTIONS(9712), + [aux_sym_do_statement_token1] = ACTIONS(9712), + [aux_sym_do_condition_token1] = ACTIONS(9712), + [aux_sym_with_statement_token1] = ACTIONS(9712), + [aux_sym_exit_statement_token1] = ACTIONS(9712), + [sym_end_statement] = ACTIONS(9714), + [aux_sym_on_goto_statement_token1] = ACTIONS(9712), + [aux_sym_on_goto_statement_token2] = ACTIONS(9712), + [aux_sym_on_error_statement_token2] = ACTIONS(9712), + [sym__ambiguous_redim_statement] = ACTIONS(9714), + [aux_sym_erase_statement_token1] = ACTIONS(9712), + [aux_sym_open_statement_token1] = ACTIONS(9712), + [aux_sym_file_mode_token2] = ACTIONS(9712), + [aux_sym_file_access_token2] = ACTIONS(9712), + [aux_sym_file_lock_token2] = ACTIONS(9712), + [aux_sym_print_statement_token1] = ACTIONS(9712), + [anon_sym_PLUS] = ACTIONS(9714), + [anon_sym_DASH] = ACTIONS(9712), + [anon_sym_QMARK] = ACTIONS(9714), + [aux_sym_close_statement_token1] = ACTIONS(9712), + [aux_sym_put_statement_token1] = ACTIONS(9712), + [aux_sym_unlock_statement_token1] = ACTIONS(9712), + [aux_sym_seek_statement_token1] = ACTIONS(9712), + [sym_reset_statement] = ACTIONS(9712), + [aux_sym_raise_event_statement_token1] = ACTIONS(9712), + [sym_stop_statement] = ACTIONS(9712), + [sym_beep_statement] = ACTIONS(9712), + [aux_sym_unload_statement_token1] = ACTIONS(9712), + [aux_sym_def_type_statement_token1] = ACTIONS(9712), + [aux_sym_def_type_statement_token2] = ACTIONS(9712), + [aux_sym_def_type_statement_token3] = ACTIONS(9712), + [aux_sym_def_type_statement_token4] = ACTIONS(9712), + [aux_sym_def_type_statement_token5] = ACTIONS(9712), + [aux_sym_def_type_statement_token6] = ACTIONS(9712), + [aux_sym_def_type_statement_token7] = ACTIONS(9712), + [aux_sym_def_type_statement_token8] = ACTIONS(9712), + [aux_sym_def_type_statement_token9] = ACTIONS(9712), + [aux_sym_def_type_statement_token10] = ACTIONS(9712), + [aux_sym_def_type_statement_token11] = ACTIONS(9712), + [aux_sym_def_type_statement_token12] = ACTIONS(9712), + [aux_sym_def_type_statement_token13] = ACTIONS(9712), + [aux_sym_def_type_statement_token14] = ACTIONS(9712), + [aux_sym_call_statement_token1] = ACTIONS(9712), + [sym__ambiguous_call_statement] = ACTIONS(9712), + [aux_sym_addressof_expression_token1] = ACTIONS(9712), + [aux_sym_type_of_expression_token1] = ACTIONS(9712), + [aux_sym_unary_expression_token1] = ACTIONS(9712), + [sym_string_literal] = ACTIONS(9714), + [sym_number_literal] = ACTIONS(9714), + [aux_sym_boolean_literal_token1] = ACTIONS(9712), + [aux_sym_boolean_literal_token2] = ACTIONS(9712), + [sym_nothing_literal] = ACTIONS(9712), + [sym_null_literal] = ACTIONS(9712), + [sym_empty_literal] = ACTIONS(9712), + [sym_date_literal] = ACTIONS(9714), + [anon_sym_POUND] = ACTIONS(9712), + }, + [STATE(7266)] = { + [sym_identifier] = ACTIONS(9716), + [sym_newline] = ACTIONS(9718), + [anon_sym_COLON] = ACTIONS(9718), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9716), + [aux_sym_frm_property_statement_token1] = ACTIONS(9716), + [anon_sym_DOT] = ACTIONS(9716), + [anon_sym_BANG] = ACTIONS(9718), + [aux_sym__attribute_identifier_token1] = ACTIONS(9716), + [aux_sym_option_statement_token3] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9716), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9716), + [aux_sym_preprocessor_const_token1] = ACTIONS(9716), + [sym_static_modifier] = ACTIONS(9716), + [sym__dim_keyword] = ACTIONS(9716), + [sym__redim_keyword] = ACTIONS(9716), + [aux_sym_get_accessor_token1] = ACTIONS(9716), + [aux_sym_set_accessor_token1] = ACTIONS(9716), + [aux_sym_const_declaration_token1] = ACTIONS(9716), + [anon_sym_LPAREN] = ACTIONS(9718), + [aux_sym_as_type_clause_token2] = ACTIONS(9716), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9716), + [aux_sym_visibility_token1] = ACTIONS(9716), + [aux_sym_visibility_token2] = ACTIONS(9716), + [aux_sym_elseif_fragment_token1] = ACTIONS(9716), + [aux_sym_else_fragment_token1] = ACTIONS(9716), + [aux_sym_select_statement_token1] = ACTIONS(9716), + [aux_sym__for_header_token1] = ACTIONS(9716), + [aux_sym_do_statement_token1] = ACTIONS(9716), + [aux_sym_do_condition_token1] = ACTIONS(9716), + [aux_sym_with_statement_token1] = ACTIONS(9716), + [aux_sym_exit_statement_token1] = ACTIONS(9716), + [sym_end_statement] = ACTIONS(9718), + [aux_sym_on_goto_statement_token1] = ACTIONS(9716), + [aux_sym_on_goto_statement_token2] = ACTIONS(9716), + [aux_sym_on_error_statement_token2] = ACTIONS(9716), + [sym__ambiguous_redim_statement] = ACTIONS(9718), + [aux_sym_erase_statement_token1] = ACTIONS(9716), + [aux_sym_open_statement_token1] = ACTIONS(9716), + [aux_sym_file_mode_token2] = ACTIONS(9716), + [aux_sym_file_access_token2] = ACTIONS(9716), + [aux_sym_file_lock_token2] = ACTIONS(9716), + [aux_sym_print_statement_token1] = ACTIONS(9716), + [anon_sym_PLUS] = ACTIONS(9718), + [anon_sym_DASH] = ACTIONS(9716), + [anon_sym_QMARK] = ACTIONS(9718), + [aux_sym_close_statement_token1] = ACTIONS(9716), + [aux_sym_put_statement_token1] = ACTIONS(9716), + [aux_sym_unlock_statement_token1] = ACTIONS(9716), + [aux_sym_seek_statement_token1] = ACTIONS(9716), + [sym_reset_statement] = ACTIONS(9716), + [aux_sym_raise_event_statement_token1] = ACTIONS(9716), + [sym_stop_statement] = ACTIONS(9716), + [sym_beep_statement] = ACTIONS(9716), + [aux_sym_unload_statement_token1] = ACTIONS(9716), + [aux_sym_def_type_statement_token1] = ACTIONS(9716), + [aux_sym_def_type_statement_token2] = ACTIONS(9716), + [aux_sym_def_type_statement_token3] = ACTIONS(9716), + [aux_sym_def_type_statement_token4] = ACTIONS(9716), + [aux_sym_def_type_statement_token5] = ACTIONS(9716), + [aux_sym_def_type_statement_token6] = ACTIONS(9716), + [aux_sym_def_type_statement_token7] = ACTIONS(9716), + [aux_sym_def_type_statement_token8] = ACTIONS(9716), + [aux_sym_def_type_statement_token9] = ACTIONS(9716), + [aux_sym_def_type_statement_token10] = ACTIONS(9716), + [aux_sym_def_type_statement_token11] = ACTIONS(9716), + [aux_sym_def_type_statement_token12] = ACTIONS(9716), + [aux_sym_def_type_statement_token13] = ACTIONS(9716), + [aux_sym_def_type_statement_token14] = ACTIONS(9716), + [aux_sym_call_statement_token1] = ACTIONS(9716), + [sym__ambiguous_call_statement] = ACTIONS(9716), + [aux_sym_addressof_expression_token1] = ACTIONS(9716), + [aux_sym_type_of_expression_token1] = ACTIONS(9716), + [aux_sym_unary_expression_token1] = ACTIONS(9716), + [sym_string_literal] = ACTIONS(9718), + [sym_number_literal] = ACTIONS(9718), + [aux_sym_boolean_literal_token1] = ACTIONS(9716), + [aux_sym_boolean_literal_token2] = ACTIONS(9716), + [sym_nothing_literal] = ACTIONS(9716), + [sym_null_literal] = ACTIONS(9716), + [sym_empty_literal] = ACTIONS(9716), + [sym_date_literal] = ACTIONS(9718), + [anon_sym_POUND] = ACTIONS(9716), + }, + [STATE(7267)] = { + [sym_identifier] = ACTIONS(8809), + [sym_newline] = ACTIONS(8811), + [anon_sym_COLON] = ACTIONS(8811), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8809), + [aux_sym_frm_property_statement_token1] = ACTIONS(8809), + [anon_sym_DOT] = ACTIONS(8809), + [anon_sym_BANG] = ACTIONS(8811), + [aux_sym__attribute_identifier_token1] = ACTIONS(8809), + [aux_sym_option_statement_token3] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8809), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8809), + [aux_sym_preprocessor_const_token1] = ACTIONS(8809), + [sym_static_modifier] = ACTIONS(8809), + [sym__dim_keyword] = ACTIONS(8809), + [sym__redim_keyword] = ACTIONS(8809), + [aux_sym_get_accessor_token1] = ACTIONS(8809), + [aux_sym_set_accessor_token1] = ACTIONS(8809), + [aux_sym_const_declaration_token1] = ACTIONS(8809), + [anon_sym_LPAREN] = ACTIONS(8811), + [aux_sym_as_type_clause_token2] = ACTIONS(8809), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8809), + [aux_sym_visibility_token1] = ACTIONS(8809), + [aux_sym_visibility_token2] = ACTIONS(8809), + [aux_sym_elseif_fragment_token1] = ACTIONS(8809), + [aux_sym_else_fragment_token1] = ACTIONS(8809), + [aux_sym_select_statement_token1] = ACTIONS(8809), + [aux_sym__for_header_token1] = ACTIONS(8809), + [aux_sym_do_statement_token1] = ACTIONS(8809), + [aux_sym_do_condition_token1] = ACTIONS(8809), + [aux_sym_with_statement_token1] = ACTIONS(8809), + [aux_sym_exit_statement_token1] = ACTIONS(8809), + [sym_end_statement] = ACTIONS(8811), + [aux_sym_on_goto_statement_token1] = ACTIONS(8809), + [aux_sym_on_goto_statement_token2] = ACTIONS(8809), + [aux_sym_on_error_statement_token2] = ACTIONS(8809), + [sym__ambiguous_redim_statement] = ACTIONS(8811), + [aux_sym_erase_statement_token1] = ACTIONS(8809), + [aux_sym_open_statement_token1] = ACTIONS(8809), + [aux_sym_file_mode_token2] = ACTIONS(8809), + [aux_sym_file_access_token2] = ACTIONS(8809), + [aux_sym_file_lock_token2] = ACTIONS(8809), + [aux_sym_print_statement_token1] = ACTIONS(8809), + [anon_sym_PLUS] = ACTIONS(8811), + [anon_sym_DASH] = ACTIONS(8809), + [anon_sym_QMARK] = ACTIONS(8811), + [aux_sym_close_statement_token1] = ACTIONS(8809), + [aux_sym_put_statement_token1] = ACTIONS(8809), + [aux_sym_unlock_statement_token1] = ACTIONS(8809), + [aux_sym_seek_statement_token1] = ACTIONS(8809), + [sym_reset_statement] = ACTIONS(8809), + [aux_sym_raise_event_statement_token1] = ACTIONS(8809), + [sym_stop_statement] = ACTIONS(8809), + [sym_beep_statement] = ACTIONS(8809), + [aux_sym_unload_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token1] = ACTIONS(8809), + [aux_sym_def_type_statement_token2] = ACTIONS(8809), + [aux_sym_def_type_statement_token3] = ACTIONS(8809), + [aux_sym_def_type_statement_token4] = ACTIONS(8809), + [aux_sym_def_type_statement_token5] = ACTIONS(8809), + [aux_sym_def_type_statement_token6] = ACTIONS(8809), + [aux_sym_def_type_statement_token7] = ACTIONS(8809), + [aux_sym_def_type_statement_token8] = ACTIONS(8809), + [aux_sym_def_type_statement_token9] = ACTIONS(8809), + [aux_sym_def_type_statement_token10] = ACTIONS(8809), + [aux_sym_def_type_statement_token11] = ACTIONS(8809), + [aux_sym_def_type_statement_token12] = ACTIONS(8809), + [aux_sym_def_type_statement_token13] = ACTIONS(8809), + [aux_sym_def_type_statement_token14] = ACTIONS(8809), + [aux_sym_call_statement_token1] = ACTIONS(8809), + [sym__ambiguous_call_statement] = ACTIONS(8809), + [aux_sym_addressof_expression_token1] = ACTIONS(8809), + [aux_sym_type_of_expression_token1] = ACTIONS(8809), + [aux_sym_unary_expression_token1] = ACTIONS(8809), + [sym_string_literal] = ACTIONS(8811), + [sym_number_literal] = ACTIONS(8811), + [aux_sym_boolean_literal_token1] = ACTIONS(8809), + [aux_sym_boolean_literal_token2] = ACTIONS(8809), + [sym_nothing_literal] = ACTIONS(8809), + [sym_null_literal] = ACTIONS(8809), + [sym_empty_literal] = ACTIONS(8809), + [sym_date_literal] = ACTIONS(8811), + [anon_sym_POUND] = ACTIONS(8809), + }, + [STATE(7268)] = { + [sym_identifier] = ACTIONS(9332), + [sym_newline] = ACTIONS(9334), + [anon_sym_COLON] = ACTIONS(9334), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9332), + [aux_sym_frm_property_statement_token1] = ACTIONS(9332), + [anon_sym_DOT] = ACTIONS(9332), + [anon_sym_BANG] = ACTIONS(9334), + [aux_sym__attribute_identifier_token1] = ACTIONS(9332), + [aux_sym_option_statement_token3] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9332), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9332), + [aux_sym_preprocessor_const_token1] = ACTIONS(9332), + [sym_static_modifier] = ACTIONS(9332), + [sym__dim_keyword] = ACTIONS(9332), + [sym__redim_keyword] = ACTIONS(9332), + [aux_sym_get_accessor_token1] = ACTIONS(9332), + [aux_sym_set_accessor_token1] = ACTIONS(9332), + [aux_sym_const_declaration_token1] = ACTIONS(9332), + [anon_sym_LPAREN] = ACTIONS(9334), + [aux_sym_as_type_clause_token2] = ACTIONS(9332), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9332), + [aux_sym_visibility_token1] = ACTIONS(9332), + [aux_sym_visibility_token2] = ACTIONS(9332), + [aux_sym_elseif_fragment_token1] = ACTIONS(9332), + [aux_sym_else_fragment_token1] = ACTIONS(9332), + [aux_sym_select_statement_token1] = ACTIONS(9332), + [aux_sym__for_header_token1] = ACTIONS(9332), + [aux_sym_do_statement_token1] = ACTIONS(9332), + [aux_sym_do_condition_token1] = ACTIONS(9332), + [aux_sym_with_statement_token1] = ACTIONS(9332), + [aux_sym_exit_statement_token1] = ACTIONS(9332), + [sym_end_statement] = ACTIONS(9334), + [aux_sym_on_goto_statement_token1] = ACTIONS(9332), + [aux_sym_on_goto_statement_token2] = ACTIONS(9332), + [aux_sym_on_error_statement_token2] = ACTIONS(9332), + [sym__ambiguous_redim_statement] = ACTIONS(9334), + [aux_sym_erase_statement_token1] = ACTIONS(9332), + [aux_sym_open_statement_token1] = ACTIONS(9332), + [aux_sym_file_mode_token2] = ACTIONS(9332), + [aux_sym_file_access_token2] = ACTIONS(9332), + [aux_sym_file_lock_token2] = ACTIONS(9332), + [aux_sym_print_statement_token1] = ACTIONS(9332), + [anon_sym_PLUS] = ACTIONS(9334), + [anon_sym_DASH] = ACTIONS(9332), + [anon_sym_QMARK] = ACTIONS(9334), + [aux_sym_close_statement_token1] = ACTIONS(9332), + [aux_sym_put_statement_token1] = ACTIONS(9332), + [aux_sym_unlock_statement_token1] = ACTIONS(9332), + [aux_sym_seek_statement_token1] = ACTIONS(9332), + [sym_reset_statement] = ACTIONS(9332), + [aux_sym_raise_event_statement_token1] = ACTIONS(9332), + [sym_stop_statement] = ACTIONS(9332), + [sym_beep_statement] = ACTIONS(9332), + [aux_sym_unload_statement_token1] = ACTIONS(9332), + [aux_sym_def_type_statement_token1] = ACTIONS(9332), + [aux_sym_def_type_statement_token2] = ACTIONS(9332), + [aux_sym_def_type_statement_token3] = ACTIONS(9332), + [aux_sym_def_type_statement_token4] = ACTIONS(9332), + [aux_sym_def_type_statement_token5] = ACTIONS(9332), + [aux_sym_def_type_statement_token6] = ACTIONS(9332), + [aux_sym_def_type_statement_token7] = ACTIONS(9332), + [aux_sym_def_type_statement_token8] = ACTIONS(9332), + [aux_sym_def_type_statement_token9] = ACTIONS(9332), + [aux_sym_def_type_statement_token10] = ACTIONS(9332), + [aux_sym_def_type_statement_token11] = ACTIONS(9332), + [aux_sym_def_type_statement_token12] = ACTIONS(9332), + [aux_sym_def_type_statement_token13] = ACTIONS(9332), + [aux_sym_def_type_statement_token14] = ACTIONS(9332), + [aux_sym_call_statement_token1] = ACTIONS(9332), + [sym__ambiguous_call_statement] = ACTIONS(9332), + [aux_sym_addressof_expression_token1] = ACTIONS(9332), + [aux_sym_type_of_expression_token1] = ACTIONS(9332), + [aux_sym_unary_expression_token1] = ACTIONS(9332), + [sym_string_literal] = ACTIONS(9334), + [sym_number_literal] = ACTIONS(9334), + [aux_sym_boolean_literal_token1] = ACTIONS(9332), + [aux_sym_boolean_literal_token2] = ACTIONS(9332), + [sym_nothing_literal] = ACTIONS(9332), + [sym_null_literal] = ACTIONS(9332), + [sym_empty_literal] = ACTIONS(9332), + [sym_date_literal] = ACTIONS(9334), + [anon_sym_POUND] = ACTIONS(9332), + }, + [STATE(7269)] = { + [sym_identifier] = ACTIONS(9455), + [sym_newline] = ACTIONS(9457), + [anon_sym_COLON] = ACTIONS(9457), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9455), + [aux_sym_frm_property_statement_token1] = ACTIONS(9455), + [anon_sym_DOT] = ACTIONS(9455), + [anon_sym_BANG] = ACTIONS(9457), + [aux_sym__attribute_identifier_token1] = ACTIONS(9455), + [aux_sym_option_statement_token3] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9455), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9455), + [aux_sym_preprocessor_const_token1] = ACTIONS(9455), + [sym_static_modifier] = ACTIONS(9455), + [sym__dim_keyword] = ACTIONS(9455), + [sym__redim_keyword] = ACTIONS(9455), + [aux_sym_get_accessor_token1] = ACTIONS(9455), + [aux_sym_set_accessor_token1] = ACTIONS(9455), + [aux_sym_const_declaration_token1] = ACTIONS(9455), + [anon_sym_LPAREN] = ACTIONS(9457), + [aux_sym_as_type_clause_token2] = ACTIONS(9455), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9455), + [aux_sym_visibility_token1] = ACTIONS(9455), + [aux_sym_visibility_token2] = ACTIONS(9455), + [aux_sym_elseif_fragment_token1] = ACTIONS(9455), + [aux_sym_else_fragment_token1] = ACTIONS(9455), + [aux_sym_select_statement_token1] = ACTIONS(9455), + [aux_sym__for_header_token1] = ACTIONS(9455), + [aux_sym_do_statement_token1] = ACTIONS(9455), + [aux_sym_do_condition_token1] = ACTIONS(9455), + [aux_sym_with_statement_token1] = ACTIONS(9455), + [aux_sym_exit_statement_token1] = ACTIONS(9455), + [sym_end_statement] = ACTIONS(9457), + [aux_sym_on_goto_statement_token1] = ACTIONS(9455), + [aux_sym_on_goto_statement_token2] = ACTIONS(9455), + [aux_sym_on_error_statement_token2] = ACTIONS(9455), + [sym__ambiguous_redim_statement] = ACTIONS(9457), + [aux_sym_erase_statement_token1] = ACTIONS(9455), + [aux_sym_open_statement_token1] = ACTIONS(9455), + [aux_sym_file_mode_token2] = ACTIONS(9455), + [aux_sym_file_access_token2] = ACTIONS(9455), + [aux_sym_file_lock_token2] = ACTIONS(9455), + [aux_sym_print_statement_token1] = ACTIONS(9455), + [anon_sym_PLUS] = ACTIONS(9457), + [anon_sym_DASH] = ACTIONS(9455), + [anon_sym_QMARK] = ACTIONS(9457), + [aux_sym_close_statement_token1] = ACTIONS(9455), + [aux_sym_put_statement_token1] = ACTIONS(9455), + [aux_sym_unlock_statement_token1] = ACTIONS(9455), + [aux_sym_seek_statement_token1] = ACTIONS(9455), + [sym_reset_statement] = ACTIONS(9455), + [aux_sym_raise_event_statement_token1] = ACTIONS(9455), + [sym_stop_statement] = ACTIONS(9455), + [sym_beep_statement] = ACTIONS(9455), + [aux_sym_unload_statement_token1] = ACTIONS(9455), + [aux_sym_def_type_statement_token1] = ACTIONS(9455), + [aux_sym_def_type_statement_token2] = ACTIONS(9455), + [aux_sym_def_type_statement_token3] = ACTIONS(9455), + [aux_sym_def_type_statement_token4] = ACTIONS(9455), + [aux_sym_def_type_statement_token5] = ACTIONS(9455), + [aux_sym_def_type_statement_token6] = ACTIONS(9455), + [aux_sym_def_type_statement_token7] = ACTIONS(9455), + [aux_sym_def_type_statement_token8] = ACTIONS(9455), + [aux_sym_def_type_statement_token9] = ACTIONS(9455), + [aux_sym_def_type_statement_token10] = ACTIONS(9455), + [aux_sym_def_type_statement_token11] = ACTIONS(9455), + [aux_sym_def_type_statement_token12] = ACTIONS(9455), + [aux_sym_def_type_statement_token13] = ACTIONS(9455), + [aux_sym_def_type_statement_token14] = ACTIONS(9455), + [aux_sym_call_statement_token1] = ACTIONS(9455), + [sym__ambiguous_call_statement] = ACTIONS(9455), + [aux_sym_addressof_expression_token1] = ACTIONS(9455), + [aux_sym_type_of_expression_token1] = ACTIONS(9455), + [aux_sym_unary_expression_token1] = ACTIONS(9455), + [sym_string_literal] = ACTIONS(9457), + [sym_number_literal] = ACTIONS(9457), + [aux_sym_boolean_literal_token1] = ACTIONS(9455), + [aux_sym_boolean_literal_token2] = ACTIONS(9455), + [sym_nothing_literal] = ACTIONS(9455), + [sym_null_literal] = ACTIONS(9455), + [sym_empty_literal] = ACTIONS(9455), + [sym_date_literal] = ACTIONS(9457), + [anon_sym_POUND] = ACTIONS(9455), + }, + [STATE(7270)] = { + [sym_identifier] = ACTIONS(9510), + [sym_newline] = ACTIONS(9512), + [anon_sym_COLON] = ACTIONS(9512), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9510), + [aux_sym_frm_property_statement_token1] = ACTIONS(9510), + [anon_sym_DOT] = ACTIONS(9510), + [anon_sym_BANG] = ACTIONS(9512), + [aux_sym__attribute_identifier_token1] = ACTIONS(9510), + [aux_sym_option_statement_token3] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9510), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9510), + [aux_sym_preprocessor_const_token1] = ACTIONS(9510), + [sym_static_modifier] = ACTIONS(9510), + [sym__dim_keyword] = ACTIONS(9510), + [sym__redim_keyword] = ACTIONS(9510), + [aux_sym_get_accessor_token1] = ACTIONS(9510), + [aux_sym_set_accessor_token1] = ACTIONS(9510), + [aux_sym_const_declaration_token1] = ACTIONS(9510), + [anon_sym_LPAREN] = ACTIONS(9512), + [aux_sym_as_type_clause_token2] = ACTIONS(9510), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9510), + [aux_sym_visibility_token1] = ACTIONS(9510), + [aux_sym_visibility_token2] = ACTIONS(9510), + [aux_sym_elseif_fragment_token1] = ACTIONS(9510), + [aux_sym_else_fragment_token1] = ACTIONS(9510), + [aux_sym_select_statement_token1] = ACTIONS(9510), + [aux_sym__for_header_token1] = ACTIONS(9510), + [aux_sym_do_statement_token1] = ACTIONS(9510), + [aux_sym_do_condition_token1] = ACTIONS(9510), + [aux_sym_with_statement_token1] = ACTIONS(9510), + [aux_sym_exit_statement_token1] = ACTIONS(9510), + [sym_end_statement] = ACTIONS(9512), + [aux_sym_on_goto_statement_token1] = ACTIONS(9510), + [aux_sym_on_goto_statement_token2] = ACTIONS(9510), + [aux_sym_on_error_statement_token2] = ACTIONS(9510), + [sym__ambiguous_redim_statement] = ACTIONS(9512), + [aux_sym_erase_statement_token1] = ACTIONS(9510), + [aux_sym_open_statement_token1] = ACTIONS(9510), + [aux_sym_file_mode_token2] = ACTIONS(9510), + [aux_sym_file_access_token2] = ACTIONS(9510), + [aux_sym_file_lock_token2] = ACTIONS(9510), + [aux_sym_print_statement_token1] = ACTIONS(9510), + [anon_sym_PLUS] = ACTIONS(9512), + [anon_sym_DASH] = ACTIONS(9510), + [anon_sym_QMARK] = ACTIONS(9512), + [aux_sym_close_statement_token1] = ACTIONS(9510), + [aux_sym_put_statement_token1] = ACTIONS(9510), + [aux_sym_unlock_statement_token1] = ACTIONS(9510), + [aux_sym_seek_statement_token1] = ACTIONS(9510), + [sym_reset_statement] = ACTIONS(9510), + [aux_sym_raise_event_statement_token1] = ACTIONS(9510), + [sym_stop_statement] = ACTIONS(9510), + [sym_beep_statement] = ACTIONS(9510), + [aux_sym_unload_statement_token1] = ACTIONS(9510), + [aux_sym_def_type_statement_token1] = ACTIONS(9510), + [aux_sym_def_type_statement_token2] = ACTIONS(9510), + [aux_sym_def_type_statement_token3] = ACTIONS(9510), + [aux_sym_def_type_statement_token4] = ACTIONS(9510), + [aux_sym_def_type_statement_token5] = ACTIONS(9510), + [aux_sym_def_type_statement_token6] = ACTIONS(9510), + [aux_sym_def_type_statement_token7] = ACTIONS(9510), + [aux_sym_def_type_statement_token8] = ACTIONS(9510), + [aux_sym_def_type_statement_token9] = ACTIONS(9510), + [aux_sym_def_type_statement_token10] = ACTIONS(9510), + [aux_sym_def_type_statement_token11] = ACTIONS(9510), + [aux_sym_def_type_statement_token12] = ACTIONS(9510), + [aux_sym_def_type_statement_token13] = ACTIONS(9510), + [aux_sym_def_type_statement_token14] = ACTIONS(9510), + [aux_sym_call_statement_token1] = ACTIONS(9510), + [sym__ambiguous_call_statement] = ACTIONS(9510), + [aux_sym_addressof_expression_token1] = ACTIONS(9510), + [aux_sym_type_of_expression_token1] = ACTIONS(9510), + [aux_sym_unary_expression_token1] = ACTIONS(9510), + [sym_string_literal] = ACTIONS(9512), + [sym_number_literal] = ACTIONS(9512), + [aux_sym_boolean_literal_token1] = ACTIONS(9510), + [aux_sym_boolean_literal_token2] = ACTIONS(9510), + [sym_nothing_literal] = ACTIONS(9510), + [sym_null_literal] = ACTIONS(9510), + [sym_empty_literal] = ACTIONS(9510), + [sym_date_literal] = ACTIONS(9512), + [anon_sym_POUND] = ACTIONS(9510), + }, + [STATE(7271)] = { + [sym_identifier] = ACTIONS(8729), + [sym_newline] = ACTIONS(8731), + [anon_sym_COLON] = ACTIONS(8731), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(8729), + [aux_sym_frm_property_statement_token1] = ACTIONS(8729), + [anon_sym_DOT] = ACTIONS(8729), + [anon_sym_BANG] = ACTIONS(8731), + [aux_sym__attribute_identifier_token1] = ACTIONS(8729), + [aux_sym_option_statement_token3] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(8729), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(8729), + [aux_sym_preprocessor_const_token1] = ACTIONS(8729), + [sym_static_modifier] = ACTIONS(8729), + [sym__dim_keyword] = ACTIONS(8729), + [sym__redim_keyword] = ACTIONS(8729), + [aux_sym_get_accessor_token1] = ACTIONS(8729), + [aux_sym_set_accessor_token1] = ACTIONS(8729), + [aux_sym_const_declaration_token1] = ACTIONS(8729), + [anon_sym_LPAREN] = ACTIONS(8731), + [aux_sym_as_type_clause_token2] = ACTIONS(8729), + [aux_sym_dotted_type_expression_token1] = ACTIONS(8729), + [aux_sym_visibility_token1] = ACTIONS(8729), + [aux_sym_visibility_token2] = ACTIONS(8729), + [aux_sym_elseif_fragment_token1] = ACTIONS(8729), + [aux_sym_else_fragment_token1] = ACTIONS(8729), + [aux_sym_select_statement_token1] = ACTIONS(8729), + [aux_sym__for_header_token1] = ACTIONS(8729), + [aux_sym_do_statement_token1] = ACTIONS(8729), + [aux_sym_do_condition_token1] = ACTIONS(8729), + [aux_sym_with_statement_token1] = ACTIONS(8729), + [aux_sym_exit_statement_token1] = ACTIONS(8729), + [sym_end_statement] = ACTIONS(8731), + [aux_sym_on_goto_statement_token1] = ACTIONS(8729), + [aux_sym_on_goto_statement_token2] = ACTIONS(8729), + [aux_sym_on_error_statement_token2] = ACTIONS(8729), + [sym__ambiguous_redim_statement] = ACTIONS(8731), + [aux_sym_erase_statement_token1] = ACTIONS(8729), + [aux_sym_open_statement_token1] = ACTIONS(8729), + [aux_sym_file_mode_token2] = ACTIONS(8729), + [aux_sym_file_access_token2] = ACTIONS(8729), + [aux_sym_file_lock_token2] = ACTIONS(8729), + [aux_sym_print_statement_token1] = ACTIONS(8729), + [anon_sym_PLUS] = ACTIONS(8731), + [anon_sym_DASH] = ACTIONS(8729), + [anon_sym_QMARK] = ACTIONS(8731), + [aux_sym_close_statement_token1] = ACTIONS(8729), + [aux_sym_put_statement_token1] = ACTIONS(8729), + [aux_sym_unlock_statement_token1] = ACTIONS(8729), + [aux_sym_seek_statement_token1] = ACTIONS(8729), + [sym_reset_statement] = ACTIONS(8729), + [aux_sym_raise_event_statement_token1] = ACTIONS(8729), + [sym_stop_statement] = ACTIONS(8729), + [sym_beep_statement] = ACTIONS(8729), + [aux_sym_unload_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token1] = ACTIONS(8729), + [aux_sym_def_type_statement_token2] = ACTIONS(8729), + [aux_sym_def_type_statement_token3] = ACTIONS(8729), + [aux_sym_def_type_statement_token4] = ACTIONS(8729), + [aux_sym_def_type_statement_token5] = ACTIONS(8729), + [aux_sym_def_type_statement_token6] = ACTIONS(8729), + [aux_sym_def_type_statement_token7] = ACTIONS(8729), + [aux_sym_def_type_statement_token8] = ACTIONS(8729), + [aux_sym_def_type_statement_token9] = ACTIONS(8729), + [aux_sym_def_type_statement_token10] = ACTIONS(8729), + [aux_sym_def_type_statement_token11] = ACTIONS(8729), + [aux_sym_def_type_statement_token12] = ACTIONS(8729), + [aux_sym_def_type_statement_token13] = ACTIONS(8729), + [aux_sym_def_type_statement_token14] = ACTIONS(8729), + [aux_sym_call_statement_token1] = ACTIONS(8729), + [sym__ambiguous_call_statement] = ACTIONS(8729), + [aux_sym_addressof_expression_token1] = ACTIONS(8729), + [aux_sym_type_of_expression_token1] = ACTIONS(8729), + [aux_sym_unary_expression_token1] = ACTIONS(8729), + [sym_string_literal] = ACTIONS(8731), + [sym_number_literal] = ACTIONS(8731), + [aux_sym_boolean_literal_token1] = ACTIONS(8729), + [aux_sym_boolean_literal_token2] = ACTIONS(8729), + [sym_nothing_literal] = ACTIONS(8729), + [sym_null_literal] = ACTIONS(8729), + [sym_empty_literal] = ACTIONS(8729), + [sym_date_literal] = ACTIONS(8731), + [anon_sym_POUND] = ACTIONS(8729), + }, + [STATE(7272)] = { + [sym_identifier] = ACTIONS(9348), + [sym_newline] = ACTIONS(9350), + [anon_sym_COLON] = ACTIONS(9350), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9348), + [aux_sym_frm_property_statement_token1] = ACTIONS(9348), + [anon_sym_DOT] = ACTIONS(9348), + [anon_sym_BANG] = ACTIONS(9350), + [aux_sym__attribute_identifier_token1] = ACTIONS(9348), + [aux_sym_option_statement_token3] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9348), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9348), + [aux_sym_preprocessor_const_token1] = ACTIONS(9348), + [sym_static_modifier] = ACTIONS(9348), + [sym__dim_keyword] = ACTIONS(9348), + [sym__redim_keyword] = ACTIONS(9348), + [aux_sym_get_accessor_token1] = ACTIONS(9348), + [aux_sym_set_accessor_token1] = ACTIONS(9348), + [aux_sym_const_declaration_token1] = ACTIONS(9348), + [anon_sym_LPAREN] = ACTIONS(9350), + [aux_sym_as_type_clause_token2] = ACTIONS(9348), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9348), + [aux_sym_visibility_token1] = ACTIONS(9348), + [aux_sym_visibility_token2] = ACTIONS(9348), + [aux_sym_elseif_fragment_token1] = ACTIONS(9348), + [aux_sym_else_fragment_token1] = ACTIONS(9348), + [aux_sym_select_statement_token1] = ACTIONS(9348), + [aux_sym__for_header_token1] = ACTIONS(9348), + [aux_sym_do_statement_token1] = ACTIONS(9348), + [aux_sym_do_condition_token1] = ACTIONS(9348), + [aux_sym_with_statement_token1] = ACTIONS(9348), + [aux_sym_exit_statement_token1] = ACTIONS(9348), + [sym_end_statement] = ACTIONS(9350), + [aux_sym_on_goto_statement_token1] = ACTIONS(9348), + [aux_sym_on_goto_statement_token2] = ACTIONS(9348), + [aux_sym_on_error_statement_token2] = ACTIONS(9348), + [sym__ambiguous_redim_statement] = ACTIONS(9350), + [aux_sym_erase_statement_token1] = ACTIONS(9348), + [aux_sym_open_statement_token1] = ACTIONS(9348), + [aux_sym_file_mode_token2] = ACTIONS(9348), + [aux_sym_file_access_token2] = ACTIONS(9348), + [aux_sym_file_lock_token2] = ACTIONS(9348), + [aux_sym_print_statement_token1] = ACTIONS(9348), + [anon_sym_PLUS] = ACTIONS(9350), + [anon_sym_DASH] = ACTIONS(9348), + [anon_sym_QMARK] = ACTIONS(9350), + [aux_sym_close_statement_token1] = ACTIONS(9348), + [aux_sym_put_statement_token1] = ACTIONS(9348), + [aux_sym_unlock_statement_token1] = ACTIONS(9348), + [aux_sym_seek_statement_token1] = ACTIONS(9348), + [sym_reset_statement] = ACTIONS(9348), + [aux_sym_raise_event_statement_token1] = ACTIONS(9348), + [sym_stop_statement] = ACTIONS(9348), + [sym_beep_statement] = ACTIONS(9348), + [aux_sym_unload_statement_token1] = ACTIONS(9348), + [aux_sym_def_type_statement_token1] = ACTIONS(9348), + [aux_sym_def_type_statement_token2] = ACTIONS(9348), + [aux_sym_def_type_statement_token3] = ACTIONS(9348), + [aux_sym_def_type_statement_token4] = ACTIONS(9348), + [aux_sym_def_type_statement_token5] = ACTIONS(9348), + [aux_sym_def_type_statement_token6] = ACTIONS(9348), + [aux_sym_def_type_statement_token7] = ACTIONS(9348), + [aux_sym_def_type_statement_token8] = ACTIONS(9348), + [aux_sym_def_type_statement_token9] = ACTIONS(9348), + [aux_sym_def_type_statement_token10] = ACTIONS(9348), + [aux_sym_def_type_statement_token11] = ACTIONS(9348), + [aux_sym_def_type_statement_token12] = ACTIONS(9348), + [aux_sym_def_type_statement_token13] = ACTIONS(9348), + [aux_sym_def_type_statement_token14] = ACTIONS(9348), + [aux_sym_call_statement_token1] = ACTIONS(9348), + [sym__ambiguous_call_statement] = ACTIONS(9348), + [aux_sym_addressof_expression_token1] = ACTIONS(9348), + [aux_sym_type_of_expression_token1] = ACTIONS(9348), + [aux_sym_unary_expression_token1] = ACTIONS(9348), + [sym_string_literal] = ACTIONS(9350), + [sym_number_literal] = ACTIONS(9350), + [aux_sym_boolean_literal_token1] = ACTIONS(9348), + [aux_sym_boolean_literal_token2] = ACTIONS(9348), + [sym_nothing_literal] = ACTIONS(9348), + [sym_null_literal] = ACTIONS(9348), + [sym_empty_literal] = ACTIONS(9348), + [sym_date_literal] = ACTIONS(9350), + [anon_sym_POUND] = ACTIONS(9348), + }, + [STATE(7273)] = { + [sym_identifier] = ACTIONS(9352), + [sym_newline] = ACTIONS(9354), + [anon_sym_COLON] = ACTIONS(9354), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9352), + [aux_sym_frm_property_statement_token1] = ACTIONS(9352), + [anon_sym_DOT] = ACTIONS(9352), + [anon_sym_BANG] = ACTIONS(9354), + [aux_sym__attribute_identifier_token1] = ACTIONS(9352), + [aux_sym_option_statement_token3] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9352), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9352), + [aux_sym_preprocessor_const_token1] = ACTIONS(9352), + [sym_static_modifier] = ACTIONS(9352), + [sym__dim_keyword] = ACTIONS(9352), + [sym__redim_keyword] = ACTIONS(9352), + [aux_sym_get_accessor_token1] = ACTIONS(9352), + [aux_sym_set_accessor_token1] = ACTIONS(9352), + [aux_sym_const_declaration_token1] = ACTIONS(9352), + [anon_sym_LPAREN] = ACTIONS(9354), + [aux_sym_as_type_clause_token2] = ACTIONS(9352), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9352), + [aux_sym_visibility_token1] = ACTIONS(9352), + [aux_sym_visibility_token2] = ACTIONS(9352), + [aux_sym_elseif_fragment_token1] = ACTIONS(9352), + [aux_sym_else_fragment_token1] = ACTIONS(9352), + [aux_sym_select_statement_token1] = ACTIONS(9352), + [aux_sym__for_header_token1] = ACTIONS(9352), + [aux_sym_do_statement_token1] = ACTIONS(9352), + [aux_sym_do_condition_token1] = ACTIONS(9352), + [aux_sym_with_statement_token1] = ACTIONS(9352), + [aux_sym_exit_statement_token1] = ACTIONS(9352), + [sym_end_statement] = ACTIONS(9354), + [aux_sym_on_goto_statement_token1] = ACTIONS(9352), + [aux_sym_on_goto_statement_token2] = ACTIONS(9352), + [aux_sym_on_error_statement_token2] = ACTIONS(9352), + [sym__ambiguous_redim_statement] = ACTIONS(9354), + [aux_sym_erase_statement_token1] = ACTIONS(9352), + [aux_sym_open_statement_token1] = ACTIONS(9352), + [aux_sym_file_mode_token2] = ACTIONS(9352), + [aux_sym_file_access_token2] = ACTIONS(9352), + [aux_sym_file_lock_token2] = ACTIONS(9352), + [aux_sym_print_statement_token1] = ACTIONS(9352), + [anon_sym_PLUS] = ACTIONS(9354), + [anon_sym_DASH] = ACTIONS(9352), + [anon_sym_QMARK] = ACTIONS(9354), + [aux_sym_close_statement_token1] = ACTIONS(9352), + [aux_sym_put_statement_token1] = ACTIONS(9352), + [aux_sym_unlock_statement_token1] = ACTIONS(9352), + [aux_sym_seek_statement_token1] = ACTIONS(9352), + [sym_reset_statement] = ACTIONS(9352), + [aux_sym_raise_event_statement_token1] = ACTIONS(9352), + [sym_stop_statement] = ACTIONS(9352), + [sym_beep_statement] = ACTIONS(9352), + [aux_sym_unload_statement_token1] = ACTIONS(9352), + [aux_sym_def_type_statement_token1] = ACTIONS(9352), + [aux_sym_def_type_statement_token2] = ACTIONS(9352), + [aux_sym_def_type_statement_token3] = ACTIONS(9352), + [aux_sym_def_type_statement_token4] = ACTIONS(9352), + [aux_sym_def_type_statement_token5] = ACTIONS(9352), + [aux_sym_def_type_statement_token6] = ACTIONS(9352), + [aux_sym_def_type_statement_token7] = ACTIONS(9352), + [aux_sym_def_type_statement_token8] = ACTIONS(9352), + [aux_sym_def_type_statement_token9] = ACTIONS(9352), + [aux_sym_def_type_statement_token10] = ACTIONS(9352), + [aux_sym_def_type_statement_token11] = ACTIONS(9352), + [aux_sym_def_type_statement_token12] = ACTIONS(9352), + [aux_sym_def_type_statement_token13] = ACTIONS(9352), + [aux_sym_def_type_statement_token14] = ACTIONS(9352), + [aux_sym_call_statement_token1] = ACTIONS(9352), + [sym__ambiguous_call_statement] = ACTIONS(9352), + [aux_sym_addressof_expression_token1] = ACTIONS(9352), + [aux_sym_type_of_expression_token1] = ACTIONS(9352), + [aux_sym_unary_expression_token1] = ACTIONS(9352), + [sym_string_literal] = ACTIONS(9354), + [sym_number_literal] = ACTIONS(9354), + [aux_sym_boolean_literal_token1] = ACTIONS(9352), + [aux_sym_boolean_literal_token2] = ACTIONS(9352), + [sym_nothing_literal] = ACTIONS(9352), + [sym_null_literal] = ACTIONS(9352), + [sym_empty_literal] = ACTIONS(9352), + [sym_date_literal] = ACTIONS(9354), + [anon_sym_POUND] = ACTIONS(9352), + }, + [STATE(7274)] = { + [sym_identifier] = ACTIONS(9126), + [sym_newline] = ACTIONS(9128), + [anon_sym_COLON] = ACTIONS(9128), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9126), + [aux_sym_frm_property_statement_token1] = ACTIONS(9126), + [anon_sym_DOT] = ACTIONS(9126), + [anon_sym_BANG] = ACTIONS(9128), + [aux_sym__attribute_identifier_token1] = ACTIONS(9126), + [aux_sym_option_statement_token3] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9126), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9126), + [aux_sym_preprocessor_const_token1] = ACTIONS(9126), + [sym_static_modifier] = ACTIONS(9126), + [sym__dim_keyword] = ACTIONS(9126), + [sym__redim_keyword] = ACTIONS(9126), + [aux_sym_get_accessor_token1] = ACTIONS(9126), + [aux_sym_set_accessor_token1] = ACTIONS(9126), + [aux_sym_const_declaration_token1] = ACTIONS(9126), + [anon_sym_LPAREN] = ACTIONS(9128), + [aux_sym_as_type_clause_token2] = ACTIONS(9126), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9126), + [aux_sym_visibility_token1] = ACTIONS(9126), + [aux_sym_visibility_token2] = ACTIONS(9126), + [aux_sym_elseif_fragment_token1] = ACTIONS(9126), + [aux_sym_else_fragment_token1] = ACTIONS(9126), + [aux_sym_select_statement_token1] = ACTIONS(9126), + [aux_sym__for_header_token1] = ACTIONS(9126), + [aux_sym_do_statement_token1] = ACTIONS(9126), + [aux_sym_do_condition_token1] = ACTIONS(9126), + [aux_sym_with_statement_token1] = ACTIONS(9126), + [aux_sym_exit_statement_token1] = ACTIONS(9126), + [sym_end_statement] = ACTIONS(9128), + [aux_sym_on_goto_statement_token1] = ACTIONS(9126), + [aux_sym_on_goto_statement_token2] = ACTIONS(9126), + [aux_sym_on_error_statement_token2] = ACTIONS(9126), + [sym__ambiguous_redim_statement] = ACTIONS(9128), + [aux_sym_erase_statement_token1] = ACTIONS(9126), + [aux_sym_open_statement_token1] = ACTIONS(9126), + [aux_sym_file_mode_token2] = ACTIONS(9126), + [aux_sym_file_access_token2] = ACTIONS(9126), + [aux_sym_file_lock_token2] = ACTIONS(9126), + [aux_sym_print_statement_token1] = ACTIONS(9126), + [anon_sym_PLUS] = ACTIONS(9128), + [anon_sym_DASH] = ACTIONS(9126), + [anon_sym_QMARK] = ACTIONS(9128), + [aux_sym_close_statement_token1] = ACTIONS(9126), + [aux_sym_put_statement_token1] = ACTIONS(9126), + [aux_sym_unlock_statement_token1] = ACTIONS(9126), + [aux_sym_seek_statement_token1] = ACTIONS(9126), + [sym_reset_statement] = ACTIONS(9126), + [aux_sym_raise_event_statement_token1] = ACTIONS(9126), + [sym_stop_statement] = ACTIONS(9126), + [sym_beep_statement] = ACTIONS(9126), + [aux_sym_unload_statement_token1] = ACTIONS(9126), + [aux_sym_def_type_statement_token1] = ACTIONS(9126), + [aux_sym_def_type_statement_token2] = ACTIONS(9126), + [aux_sym_def_type_statement_token3] = ACTIONS(9126), + [aux_sym_def_type_statement_token4] = ACTIONS(9126), + [aux_sym_def_type_statement_token5] = ACTIONS(9126), + [aux_sym_def_type_statement_token6] = ACTIONS(9126), + [aux_sym_def_type_statement_token7] = ACTIONS(9126), + [aux_sym_def_type_statement_token8] = ACTIONS(9126), + [aux_sym_def_type_statement_token9] = ACTIONS(9126), + [aux_sym_def_type_statement_token10] = ACTIONS(9126), + [aux_sym_def_type_statement_token11] = ACTIONS(9126), + [aux_sym_def_type_statement_token12] = ACTIONS(9126), + [aux_sym_def_type_statement_token13] = ACTIONS(9126), + [aux_sym_def_type_statement_token14] = ACTIONS(9126), + [aux_sym_call_statement_token1] = ACTIONS(9126), + [sym__ambiguous_call_statement] = ACTIONS(9126), + [aux_sym_addressof_expression_token1] = ACTIONS(9126), + [aux_sym_type_of_expression_token1] = ACTIONS(9126), + [aux_sym_unary_expression_token1] = ACTIONS(9126), + [sym_string_literal] = ACTIONS(9128), + [sym_number_literal] = ACTIONS(9128), + [aux_sym_boolean_literal_token1] = ACTIONS(9126), + [aux_sym_boolean_literal_token2] = ACTIONS(9126), + [sym_nothing_literal] = ACTIONS(9126), + [sym_null_literal] = ACTIONS(9126), + [sym_empty_literal] = ACTIONS(9126), + [sym_date_literal] = ACTIONS(9128), + [anon_sym_POUND] = ACTIONS(9126), + }, + [STATE(7275)] = { + [sym_identifier] = ACTIONS(9748), + [sym_newline] = ACTIONS(9750), + [anon_sym_COLON] = ACTIONS(9750), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_begin_block_token2] = ACTIONS(9748), + [aux_sym_frm_property_statement_token1] = ACTIONS(9748), + [anon_sym_DOT] = ACTIONS(9748), + [anon_sym_BANG] = ACTIONS(9750), + [aux_sym__attribute_identifier_token1] = ACTIONS(9748), + [aux_sym_option_statement_token3] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(9748), + [aux_sym_type_preprocessor_if_token4] = ACTIONS(9748), + [aux_sym_preprocessor_const_token1] = ACTIONS(9748), + [sym_static_modifier] = ACTIONS(9748), + [sym__dim_keyword] = ACTIONS(9748), + [sym__redim_keyword] = ACTIONS(9748), + [aux_sym_get_accessor_token1] = ACTIONS(9748), + [aux_sym_set_accessor_token1] = ACTIONS(9748), + [aux_sym_const_declaration_token1] = ACTIONS(9748), + [anon_sym_LPAREN] = ACTIONS(9750), + [aux_sym_as_type_clause_token2] = ACTIONS(9748), + [aux_sym_dotted_type_expression_token1] = ACTIONS(9748), + [aux_sym_visibility_token1] = ACTIONS(9748), + [aux_sym_visibility_token2] = ACTIONS(9748), + [aux_sym_elseif_fragment_token1] = ACTIONS(9748), + [aux_sym_else_fragment_token1] = ACTIONS(9748), + [aux_sym_select_statement_token1] = ACTIONS(9748), + [aux_sym__for_header_token1] = ACTIONS(9748), + [aux_sym_do_statement_token1] = ACTIONS(9748), + [aux_sym_do_condition_token1] = ACTIONS(9748), + [aux_sym_with_statement_token1] = ACTIONS(9748), + [aux_sym_exit_statement_token1] = ACTIONS(9748), + [sym_end_statement] = ACTIONS(9750), + [aux_sym_on_goto_statement_token1] = ACTIONS(9748), + [aux_sym_on_goto_statement_token2] = ACTIONS(9748), + [aux_sym_on_error_statement_token2] = ACTIONS(9748), + [sym__ambiguous_redim_statement] = ACTIONS(9750), + [aux_sym_erase_statement_token1] = ACTIONS(9748), + [aux_sym_open_statement_token1] = ACTIONS(9748), + [aux_sym_file_mode_token2] = ACTIONS(9748), + [aux_sym_file_access_token2] = ACTIONS(9748), + [aux_sym_file_lock_token2] = ACTIONS(9748), + [aux_sym_print_statement_token1] = ACTIONS(9748), + [anon_sym_PLUS] = ACTIONS(9750), + [anon_sym_DASH] = ACTIONS(9748), + [anon_sym_QMARK] = ACTIONS(9750), + [aux_sym_close_statement_token1] = ACTIONS(9748), + [aux_sym_put_statement_token1] = ACTIONS(9748), + [aux_sym_unlock_statement_token1] = ACTIONS(9748), + [aux_sym_seek_statement_token1] = ACTIONS(9748), + [sym_reset_statement] = ACTIONS(9748), + [aux_sym_raise_event_statement_token1] = ACTIONS(9748), + [sym_stop_statement] = ACTIONS(9748), + [sym_beep_statement] = ACTIONS(9748), + [aux_sym_unload_statement_token1] = ACTIONS(9748), + [aux_sym_def_type_statement_token1] = ACTIONS(9748), + [aux_sym_def_type_statement_token2] = ACTIONS(9748), + [aux_sym_def_type_statement_token3] = ACTIONS(9748), + [aux_sym_def_type_statement_token4] = ACTIONS(9748), + [aux_sym_def_type_statement_token5] = ACTIONS(9748), + [aux_sym_def_type_statement_token6] = ACTIONS(9748), + [aux_sym_def_type_statement_token7] = ACTIONS(9748), + [aux_sym_def_type_statement_token8] = ACTIONS(9748), + [aux_sym_def_type_statement_token9] = ACTIONS(9748), + [aux_sym_def_type_statement_token10] = ACTIONS(9748), + [aux_sym_def_type_statement_token11] = ACTIONS(9748), + [aux_sym_def_type_statement_token12] = ACTIONS(9748), + [aux_sym_def_type_statement_token13] = ACTIONS(9748), + [aux_sym_def_type_statement_token14] = ACTIONS(9748), + [aux_sym_call_statement_token1] = ACTIONS(9748), + [sym__ambiguous_call_statement] = ACTIONS(9748), + [aux_sym_addressof_expression_token1] = ACTIONS(9748), + [aux_sym_type_of_expression_token1] = ACTIONS(9748), + [aux_sym_unary_expression_token1] = ACTIONS(9748), + [sym_string_literal] = ACTIONS(9750), + [sym_number_literal] = ACTIONS(9750), + [aux_sym_boolean_literal_token1] = ACTIONS(9748), + [aux_sym_boolean_literal_token2] = ACTIONS(9748), + [sym_nothing_literal] = ACTIONS(9748), + [sym_null_literal] = ACTIONS(9748), + [sym_empty_literal] = ACTIONS(9748), + [sym_date_literal] = ACTIONS(9750), + [anon_sym_POUND] = ACTIONS(9748), + }, + [STATE(7276)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(7276), + [ts_builtin_sym_end] = ACTIONS(4364), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4362), + [aux_sym_frm_begin_block_token1] = ACTIONS(4362), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [aux_sym_attribute_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(11192), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym_option_statement_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_implements_statement_token1] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4364), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4364), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [sym_number_literal] = ACTIONS(4364), + }, + [STATE(7277)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(7276), + [ts_builtin_sym_end] = ACTIONS(4377), + [sym_identifier] = ACTIONS(4375), + [sym_newline] = ACTIONS(4377), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4375), + [aux_sym_frm_begin_block_token1] = ACTIONS(4375), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4375), + [aux_sym_frm_property_statement_token1] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4377), + [aux_sym_attribute_statement_token1] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4377), + [aux_sym_option_statement_token1] = ACTIONS(4375), + [aux_sym_option_statement_token3] = ACTIONS(4375), + [aux_sym_implements_statement_token1] = ACTIONS(4375), + [aux_sym_type_declaration_token1] = ACTIONS(4375), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4377), + [aux_sym_enum_declaration_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4375), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4375), + [aux_sym_declare_function_statement_token1] = ACTIONS(4375), + [aux_sym_preprocessor_const_token1] = ACTIONS(4377), + [aux_sym__property_get_header_token1] = ACTIONS(4375), + [aux_sym_event_declaration_token1] = ACTIONS(4375), + [sym_static_modifier] = ACTIONS(4375), + [sym__dim_keyword] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [aux_sym_const_declaration_token1] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_STAR] = ACTIONS(4377), + [aux_sym_visibility_token1] = ACTIONS(4375), + [aux_sym_visibility_token2] = ACTIONS(4375), + [aux_sym_case_expression_token1] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4377), + [anon_sym_GT] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4377), + [anon_sym_LT_GT] = ACTIONS(4377), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_SLASH] = ACTIONS(4377), + [anon_sym_BSLASH] = ACTIONS(4377), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4375), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token1] = ACTIONS(4375), + [aux_sym_def_type_statement_token2] = ACTIONS(4375), + [aux_sym_def_type_statement_token3] = ACTIONS(4375), + [aux_sym_def_type_statement_token4] = ACTIONS(4375), + [aux_sym_def_type_statement_token5] = ACTIONS(4375), + [aux_sym_def_type_statement_token6] = ACTIONS(4375), + [aux_sym_def_type_statement_token7] = ACTIONS(4375), + [aux_sym_def_type_statement_token8] = ACTIONS(4375), + [aux_sym_def_type_statement_token9] = ACTIONS(4375), + [aux_sym_def_type_statement_token10] = ACTIONS(4375), + [aux_sym_def_type_statement_token11] = ACTIONS(4375), + [aux_sym_def_type_statement_token12] = ACTIONS(4375), + [aux_sym_def_type_statement_token13] = ACTIONS(4375), + [aux_sym_def_type_statement_token14] = ACTIONS(4375), + [aux_sym_comparison_operator_token1] = ACTIONS(4375), + [sym_number_literal] = ACTIONS(4377), + }, + [STATE(7278)] = { + [aux_sym_dotted_type_expression_repeat1] = STATE(7277), + [ts_builtin_sym_end] = ACTIONS(4371), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4369), + [aux_sym_frm_begin_block_token1] = ACTIONS(4369), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [aux_sym_attribute_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(11195), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym_option_statement_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_implements_statement_token1] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4371), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4371), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [sym_number_literal] = ACTIONS(4371), + }, + [STATE(7279)] = { + [sym_argument_list] = STATE(7287), + [ts_builtin_sym_end] = ACTIONS(4344), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4342), + [aux_sym_frm_begin_block_token1] = ACTIONS(4342), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [aux_sym_attribute_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(11197), + [anon_sym_BANG] = ACTIONS(11199), + [aux_sym_option_statement_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_implements_statement_token1] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4344), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4344), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(11201), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [sym_number_literal] = ACTIONS(4344), + }, + [STATE(7280)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(11203), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11205), + [anon_sym_SLASH] = ACTIONS(11203), + [anon_sym_BSLASH] = ACTIONS(11207), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11209), + [anon_sym_PLUS] = ACTIONS(11211), + [anon_sym_DASH] = ACTIONS(11213), + [anon_sym_AMP] = ACTIONS(11215), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(11217), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(11219), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(11221), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(11223), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7281)] = { + [ts_builtin_sym_end] = ACTIONS(4002), + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4006), + [aux_sym_frm_begin_block_token1] = ACTIONS(4006), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [aux_sym_attribute_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym_option_statement_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_implements_statement_token1] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4002), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4002), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [sym_number_literal] = ACTIONS(4002), + }, + [STATE(7282)] = { + [ts_builtin_sym_end] = ACTIONS(4371), + [sym_identifier] = ACTIONS(4369), + [sym_newline] = ACTIONS(4371), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4369), + [aux_sym_frm_begin_block_token1] = ACTIONS(4369), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4369), + [aux_sym_frm_property_statement_token1] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4371), + [aux_sym_attribute_statement_token1] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4371), + [aux_sym_option_statement_token1] = ACTIONS(4369), + [aux_sym_option_statement_token3] = ACTIONS(4369), + [aux_sym_implements_statement_token1] = ACTIONS(4369), + [aux_sym_type_declaration_token1] = ACTIONS(4369), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4371), + [aux_sym_enum_declaration_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4369), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4369), + [aux_sym_declare_function_statement_token1] = ACTIONS(4369), + [aux_sym_preprocessor_const_token1] = ACTIONS(4371), + [aux_sym__property_get_header_token1] = ACTIONS(4369), + [aux_sym_event_declaration_token1] = ACTIONS(4369), + [sym_static_modifier] = ACTIONS(4369), + [sym__dim_keyword] = ACTIONS(4369), + [anon_sym_COMMA] = ACTIONS(4371), + [aux_sym_const_declaration_token1] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4371), + [anon_sym_STAR] = ACTIONS(4371), + [aux_sym_visibility_token1] = ACTIONS(4369), + [aux_sym_visibility_token2] = ACTIONS(4369), + [aux_sym_case_expression_token1] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_LT_GT] = ACTIONS(4371), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_BSLASH] = ACTIONS(4371), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4369), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token1] = ACTIONS(4369), + [aux_sym_def_type_statement_token2] = ACTIONS(4369), + [aux_sym_def_type_statement_token3] = ACTIONS(4369), + [aux_sym_def_type_statement_token4] = ACTIONS(4369), + [aux_sym_def_type_statement_token5] = ACTIONS(4369), + [aux_sym_def_type_statement_token6] = ACTIONS(4369), + [aux_sym_def_type_statement_token7] = ACTIONS(4369), + [aux_sym_def_type_statement_token8] = ACTIONS(4369), + [aux_sym_def_type_statement_token9] = ACTIONS(4369), + [aux_sym_def_type_statement_token10] = ACTIONS(4369), + [aux_sym_def_type_statement_token11] = ACTIONS(4369), + [aux_sym_def_type_statement_token12] = ACTIONS(4369), + [aux_sym_def_type_statement_token13] = ACTIONS(4369), + [aux_sym_def_type_statement_token14] = ACTIONS(4369), + [aux_sym_comparison_operator_token1] = ACTIONS(4369), + [sym_number_literal] = ACTIONS(4371), + }, + [STATE(7283)] = { + [ts_builtin_sym_end] = ACTIONS(4002), + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4006), + [aux_sym_frm_begin_block_token1] = ACTIONS(4006), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [aux_sym_attribute_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym_option_statement_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_implements_statement_token1] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4002), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4002), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3994), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [sym_number_literal] = ACTIONS(4002), + }, + [STATE(7284)] = { + [ts_builtin_sym_end] = ACTIONS(4627), + [sym_identifier] = ACTIONS(4625), + [sym_newline] = ACTIONS(4627), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4625), + [aux_sym_frm_begin_block_token1] = ACTIONS(4625), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4625), + [aux_sym_frm_property_statement_token1] = ACTIONS(4625), + [anon_sym_EQ] = ACTIONS(4627), + [aux_sym_attribute_statement_token1] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_BANG] = ACTIONS(4627), + [aux_sym_option_statement_token1] = ACTIONS(4625), + [aux_sym_option_statement_token3] = ACTIONS(4625), + [aux_sym_implements_statement_token1] = ACTIONS(4625), + [aux_sym_type_declaration_token1] = ACTIONS(4625), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4627), + [aux_sym_enum_declaration_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4625), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4625), + [aux_sym_declare_function_statement_token1] = ACTIONS(4625), + [aux_sym_preprocessor_const_token1] = ACTIONS(4627), + [aux_sym__property_get_header_token1] = ACTIONS(4625), + [aux_sym_event_declaration_token1] = ACTIONS(4625), + [sym_static_modifier] = ACTIONS(4625), + [sym__dim_keyword] = ACTIONS(4625), + [anon_sym_COMMA] = ACTIONS(4627), + [aux_sym_const_declaration_token1] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4627), + [anon_sym_STAR] = ACTIONS(4627), + [aux_sym_visibility_token1] = ACTIONS(4625), + [aux_sym_visibility_token2] = ACTIONS(4625), + [aux_sym_case_expression_token1] = ACTIONS(4625), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4627), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4627), + [anon_sym_LT_GT] = ACTIONS(4627), + [anon_sym_CARET] = ACTIONS(4627), + [anon_sym_SLASH] = ACTIONS(4627), + [anon_sym_BSLASH] = ACTIONS(4627), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4625), + [anon_sym_PLUS] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_AMP] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4625), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token1] = ACTIONS(4625), + [aux_sym_def_type_statement_token2] = ACTIONS(4625), + [aux_sym_def_type_statement_token3] = ACTIONS(4625), + [aux_sym_def_type_statement_token4] = ACTIONS(4625), + [aux_sym_def_type_statement_token5] = ACTIONS(4625), + [aux_sym_def_type_statement_token6] = ACTIONS(4625), + [aux_sym_def_type_statement_token7] = ACTIONS(4625), + [aux_sym_def_type_statement_token8] = ACTIONS(4625), + [aux_sym_def_type_statement_token9] = ACTIONS(4625), + [aux_sym_def_type_statement_token10] = ACTIONS(4625), + [aux_sym_def_type_statement_token11] = ACTIONS(4625), + [aux_sym_def_type_statement_token12] = ACTIONS(4625), + [aux_sym_def_type_statement_token13] = ACTIONS(4625), + [aux_sym_def_type_statement_token14] = ACTIONS(4625), + [aux_sym_comparison_operator_token1] = ACTIONS(4625), + [sym_number_literal] = ACTIONS(4627), + }, + [STATE(7285)] = { + [ts_builtin_sym_end] = ACTIONS(4364), + [sym_identifier] = ACTIONS(4362), + [sym_newline] = ACTIONS(4364), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4362), + [aux_sym_frm_begin_block_token1] = ACTIONS(4362), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4362), + [aux_sym_frm_property_statement_token1] = ACTIONS(4362), + [anon_sym_EQ] = ACTIONS(4364), + [aux_sym_attribute_statement_token1] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4364), + [aux_sym_option_statement_token1] = ACTIONS(4362), + [aux_sym_option_statement_token3] = ACTIONS(4362), + [aux_sym_implements_statement_token1] = ACTIONS(4362), + [aux_sym_type_declaration_token1] = ACTIONS(4362), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4364), + [aux_sym_enum_declaration_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4362), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4362), + [aux_sym_declare_function_statement_token1] = ACTIONS(4362), + [aux_sym_preprocessor_const_token1] = ACTIONS(4364), + [aux_sym__property_get_header_token1] = ACTIONS(4362), + [aux_sym_event_declaration_token1] = ACTIONS(4362), + [sym_static_modifier] = ACTIONS(4362), + [sym__dim_keyword] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4364), + [aux_sym_const_declaration_token1] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [anon_sym_STAR] = ACTIONS(4364), + [aux_sym_visibility_token1] = ACTIONS(4362), + [aux_sym_visibility_token2] = ACTIONS(4362), + [aux_sym_case_expression_token1] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4362), + [anon_sym_GT_EQ] = ACTIONS(4364), + [anon_sym_LT_GT] = ACTIONS(4364), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_SLASH] = ACTIONS(4364), + [anon_sym_BSLASH] = ACTIONS(4364), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4362), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4362), + [anon_sym_AMP] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4362), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token1] = ACTIONS(4362), + [aux_sym_def_type_statement_token2] = ACTIONS(4362), + [aux_sym_def_type_statement_token3] = ACTIONS(4362), + [aux_sym_def_type_statement_token4] = ACTIONS(4362), + [aux_sym_def_type_statement_token5] = ACTIONS(4362), + [aux_sym_def_type_statement_token6] = ACTIONS(4362), + [aux_sym_def_type_statement_token7] = ACTIONS(4362), + [aux_sym_def_type_statement_token8] = ACTIONS(4362), + [aux_sym_def_type_statement_token9] = ACTIONS(4362), + [aux_sym_def_type_statement_token10] = ACTIONS(4362), + [aux_sym_def_type_statement_token11] = ACTIONS(4362), + [aux_sym_def_type_statement_token12] = ACTIONS(4362), + [aux_sym_def_type_statement_token13] = ACTIONS(4362), + [aux_sym_def_type_statement_token14] = ACTIONS(4362), + [aux_sym_comparison_operator_token1] = ACTIONS(4362), + [sym_number_literal] = ACTIONS(4364), + }, + [STATE(7286)] = { + [ts_builtin_sym_end] = ACTIONS(4619), + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4617), + [aux_sym_frm_begin_block_token1] = ACTIONS(4617), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [aux_sym_attribute_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym_option_statement_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_implements_statement_token1] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4619), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4619), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [anon_sym_STAR] = ACTIONS(4619), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [anon_sym_CARET] = ACTIONS(4619), + [anon_sym_SLASH] = ACTIONS(4619), + [anon_sym_BSLASH] = ACTIONS(4619), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(4619), + [anon_sym_DASH] = ACTIONS(4617), + [anon_sym_AMP] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [sym_number_literal] = ACTIONS(4619), + }, + [STATE(7287)] = { + [ts_builtin_sym_end] = ACTIONS(4519), + [sym_identifier] = ACTIONS(4517), + [sym_newline] = ACTIONS(4519), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4517), + [aux_sym_frm_begin_block_token1] = ACTIONS(4517), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4517), + [aux_sym_frm_property_statement_token1] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [aux_sym_attribute_statement_token1] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_BANG] = ACTIONS(4519), + [aux_sym_option_statement_token1] = ACTIONS(4517), + [aux_sym_option_statement_token3] = ACTIONS(4517), + [aux_sym_implements_statement_token1] = ACTIONS(4517), + [aux_sym_type_declaration_token1] = ACTIONS(4517), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4519), + [aux_sym_enum_declaration_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4517), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4517), + [aux_sym_declare_function_statement_token1] = ACTIONS(4517), + [aux_sym_preprocessor_const_token1] = ACTIONS(4519), + [aux_sym__property_get_header_token1] = ACTIONS(4517), + [aux_sym_event_declaration_token1] = ACTIONS(4517), + [sym_static_modifier] = ACTIONS(4517), + [sym__dim_keyword] = ACTIONS(4517), + [anon_sym_COMMA] = ACTIONS(4519), + [aux_sym_const_declaration_token1] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4519), + [anon_sym_STAR] = ACTIONS(4519), + [aux_sym_visibility_token1] = ACTIONS(4517), + [aux_sym_visibility_token2] = ACTIONS(4517), + [aux_sym_case_expression_token1] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_GT] = ACTIONS(4519), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_BSLASH] = ACTIONS(4519), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4517), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token1] = ACTIONS(4517), + [aux_sym_def_type_statement_token2] = ACTIONS(4517), + [aux_sym_def_type_statement_token3] = ACTIONS(4517), + [aux_sym_def_type_statement_token4] = ACTIONS(4517), + [aux_sym_def_type_statement_token5] = ACTIONS(4517), + [aux_sym_def_type_statement_token6] = ACTIONS(4517), + [aux_sym_def_type_statement_token7] = ACTIONS(4517), + [aux_sym_def_type_statement_token8] = ACTIONS(4517), + [aux_sym_def_type_statement_token9] = ACTIONS(4517), + [aux_sym_def_type_statement_token10] = ACTIONS(4517), + [aux_sym_def_type_statement_token11] = ACTIONS(4517), + [aux_sym_def_type_statement_token12] = ACTIONS(4517), + [aux_sym_def_type_statement_token13] = ACTIONS(4517), + [aux_sym_def_type_statement_token14] = ACTIONS(4517), + [aux_sym_comparison_operator_token1] = ACTIONS(4517), + [sym_number_literal] = ACTIONS(4519), + }, + [STATE(7288)] = { + [ts_builtin_sym_end] = ACTIONS(4439), + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4437), + [aux_sym_frm_begin_block_token1] = ACTIONS(4437), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [aux_sym_attribute_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym_option_statement_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_implements_statement_token1] = ACTIONS(4437), + [aux_sym_type_declaration_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4439), + [aux_sym_enum_declaration_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4437), + [aux_sym_declare_function_statement_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4439), + [aux_sym__property_get_header_token1] = ACTIONS(4437), + [aux_sym_event_declaration_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(5558), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [sym_number_literal] = ACTIONS(4439), + }, + [STATE(7289)] = { + [ts_builtin_sym_end] = ACTIONS(4449), + [sym_identifier] = ACTIONS(4447), + [sym_newline] = ACTIONS(4449), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4447), + [aux_sym_frm_begin_block_token1] = ACTIONS(4447), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4447), + [aux_sym_frm_property_statement_token1] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4449), + [aux_sym_attribute_statement_token1] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4449), + [aux_sym_option_statement_token1] = ACTIONS(4447), + [aux_sym_option_statement_token3] = ACTIONS(4447), + [aux_sym_implements_statement_token1] = ACTIONS(4447), + [aux_sym_type_declaration_token1] = ACTIONS(4447), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4449), + [aux_sym_enum_declaration_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4447), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4447), + [aux_sym_declare_function_statement_token1] = ACTIONS(4447), + [aux_sym_preprocessor_const_token1] = ACTIONS(4449), + [aux_sym__property_get_header_token1] = ACTIONS(4447), + [aux_sym_event_declaration_token1] = ACTIONS(4447), + [sym_static_modifier] = ACTIONS(4447), + [sym__dim_keyword] = ACTIONS(4447), + [anon_sym_COMMA] = ACTIONS(4449), + [aux_sym_const_declaration_token1] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_STAR] = ACTIONS(4449), + [aux_sym_visibility_token1] = ACTIONS(4447), + [aux_sym_visibility_token2] = ACTIONS(4447), + [aux_sym_case_expression_token1] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_LT_GT] = ACTIONS(4449), + [anon_sym_CARET] = ACTIONS(4449), + [anon_sym_SLASH] = ACTIONS(4449), + [anon_sym_BSLASH] = ACTIONS(4449), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4447), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token1] = ACTIONS(4447), + [aux_sym_def_type_statement_token2] = ACTIONS(4447), + [aux_sym_def_type_statement_token3] = ACTIONS(4447), + [aux_sym_def_type_statement_token4] = ACTIONS(4447), + [aux_sym_def_type_statement_token5] = ACTIONS(4447), + [aux_sym_def_type_statement_token6] = ACTIONS(4447), + [aux_sym_def_type_statement_token7] = ACTIONS(4447), + [aux_sym_def_type_statement_token8] = ACTIONS(4447), + [aux_sym_def_type_statement_token9] = ACTIONS(4447), + [aux_sym_def_type_statement_token10] = ACTIONS(4447), + [aux_sym_def_type_statement_token11] = ACTIONS(4447), + [aux_sym_def_type_statement_token12] = ACTIONS(4447), + [aux_sym_def_type_statement_token13] = ACTIONS(4447), + [aux_sym_def_type_statement_token14] = ACTIONS(4447), + [aux_sym_comparison_operator_token1] = ACTIONS(4447), + [sym_number_literal] = ACTIONS(4449), + }, + [STATE(7290)] = { + [ts_builtin_sym_end] = ACTIONS(4615), + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4613), + [aux_sym_frm_begin_block_token1] = ACTIONS(4613), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4615), + [aux_sym_attribute_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym_option_statement_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_implements_statement_token1] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4615), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4615), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4613), + [anon_sym_LT_EQ] = ACTIONS(4615), + [anon_sym_GT] = ACTIONS(4613), + [anon_sym_GT_EQ] = ACTIONS(4615), + [anon_sym_LT_GT] = ACTIONS(4615), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4613), + [sym_number_literal] = ACTIONS(4615), + }, + [STATE(7291)] = { + [ts_builtin_sym_end] = ACTIONS(4344), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4342), + [aux_sym_frm_begin_block_token1] = ACTIONS(4342), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [aux_sym_attribute_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(11197), + [anon_sym_BANG] = ACTIONS(11199), + [aux_sym_option_statement_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_implements_statement_token1] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4344), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4344), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(5558), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [sym_number_literal] = ACTIONS(4344), + }, + [STATE(7292)] = { + [ts_builtin_sym_end] = ACTIONS(4595), + [sym_identifier] = ACTIONS(4593), + [sym_newline] = ACTIONS(4595), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4593), + [aux_sym_frm_begin_block_token1] = ACTIONS(4593), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4593), + [aux_sym_frm_property_statement_token1] = ACTIONS(4593), + [anon_sym_EQ] = ACTIONS(4595), + [aux_sym_attribute_statement_token1] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4595), + [aux_sym_option_statement_token1] = ACTIONS(4593), + [aux_sym_option_statement_token3] = ACTIONS(4593), + [aux_sym_implements_statement_token1] = ACTIONS(4593), + [aux_sym_type_declaration_token1] = ACTIONS(4593), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4595), + [aux_sym_enum_declaration_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4593), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4593), + [aux_sym_declare_function_statement_token1] = ACTIONS(4593), + [aux_sym_preprocessor_const_token1] = ACTIONS(4595), + [aux_sym__property_get_header_token1] = ACTIONS(4593), + [aux_sym_event_declaration_token1] = ACTIONS(4593), + [sym_static_modifier] = ACTIONS(4593), + [sym__dim_keyword] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4595), + [aux_sym_const_declaration_token1] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4595), + [anon_sym_STAR] = ACTIONS(4595), + [aux_sym_visibility_token1] = ACTIONS(4593), + [aux_sym_visibility_token2] = ACTIONS(4593), + [aux_sym_case_expression_token1] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4595), + [anon_sym_LT_GT] = ACTIONS(4595), + [anon_sym_CARET] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_BSLASH] = ACTIONS(4595), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4593), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token1] = ACTIONS(4593), + [aux_sym_def_type_statement_token2] = ACTIONS(4593), + [aux_sym_def_type_statement_token3] = ACTIONS(4593), + [aux_sym_def_type_statement_token4] = ACTIONS(4593), + [aux_sym_def_type_statement_token5] = ACTIONS(4593), + [aux_sym_def_type_statement_token6] = ACTIONS(4593), + [aux_sym_def_type_statement_token7] = ACTIONS(4593), + [aux_sym_def_type_statement_token8] = ACTIONS(4593), + [aux_sym_def_type_statement_token9] = ACTIONS(4593), + [aux_sym_def_type_statement_token10] = ACTIONS(4593), + [aux_sym_def_type_statement_token11] = ACTIONS(4593), + [aux_sym_def_type_statement_token12] = ACTIONS(4593), + [aux_sym_def_type_statement_token13] = ACTIONS(4593), + [aux_sym_def_type_statement_token14] = ACTIONS(4593), + [aux_sym_comparison_operator_token1] = ACTIONS(4593), + [sym_number_literal] = ACTIONS(4595), + }, + [STATE(7293)] = { + [ts_builtin_sym_end] = ACTIONS(4619), + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4617), + [aux_sym_frm_begin_block_token1] = ACTIONS(4617), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [aux_sym_attribute_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym_option_statement_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_implements_statement_token1] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4619), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4619), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4619), + [anon_sym_STAR] = ACTIONS(11203), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [anon_sym_CARET] = ACTIONS(11205), + [anon_sym_SLASH] = ACTIONS(11203), + [anon_sym_BSLASH] = ACTIONS(11207), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11209), + [anon_sym_PLUS] = ACTIONS(11211), + [anon_sym_DASH] = ACTIONS(11213), + [anon_sym_AMP] = ACTIONS(11215), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [sym_number_literal] = ACTIONS(4619), + }, + [STATE(7294)] = { + [ts_builtin_sym_end] = ACTIONS(4487), + [sym_identifier] = ACTIONS(4485), + [sym_newline] = ACTIONS(4487), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4485), + [aux_sym_frm_begin_block_token1] = ACTIONS(4485), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4485), + [aux_sym_frm_property_statement_token1] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4487), + [aux_sym_attribute_statement_token1] = ACTIONS(4485), + [anon_sym_DOT] = ACTIONS(4485), + [anon_sym_BANG] = ACTIONS(4487), + [aux_sym_option_statement_token1] = ACTIONS(4485), + [aux_sym_option_statement_token3] = ACTIONS(4485), + [aux_sym_implements_statement_token1] = ACTIONS(4485), + [aux_sym_type_declaration_token1] = ACTIONS(4485), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4487), + [aux_sym_enum_declaration_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4485), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4485), + [aux_sym_declare_function_statement_token1] = ACTIONS(4485), + [aux_sym_preprocessor_const_token1] = ACTIONS(4487), + [aux_sym__property_get_header_token1] = ACTIONS(4485), + [aux_sym_event_declaration_token1] = ACTIONS(4485), + [sym_static_modifier] = ACTIONS(4485), + [sym__dim_keyword] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4487), + [aux_sym_const_declaration_token1] = ACTIONS(4485), + [anon_sym_LPAREN] = ACTIONS(4487), + [anon_sym_STAR] = ACTIONS(4487), + [aux_sym_visibility_token1] = ACTIONS(4485), + [aux_sym_visibility_token2] = ACTIONS(4485), + [aux_sym_case_expression_token1] = ACTIONS(4485), + [anon_sym_LT] = ACTIONS(4485), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4485), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_LT_GT] = ACTIONS(4487), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_BSLASH] = ACTIONS(4487), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4485), + [anon_sym_AMP] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4485), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token1] = ACTIONS(4485), + [aux_sym_def_type_statement_token2] = ACTIONS(4485), + [aux_sym_def_type_statement_token3] = ACTIONS(4485), + [aux_sym_def_type_statement_token4] = ACTIONS(4485), + [aux_sym_def_type_statement_token5] = ACTIONS(4485), + [aux_sym_def_type_statement_token6] = ACTIONS(4485), + [aux_sym_def_type_statement_token7] = ACTIONS(4485), + [aux_sym_def_type_statement_token8] = ACTIONS(4485), + [aux_sym_def_type_statement_token9] = ACTIONS(4485), + [aux_sym_def_type_statement_token10] = ACTIONS(4485), + [aux_sym_def_type_statement_token11] = ACTIONS(4485), + [aux_sym_def_type_statement_token12] = ACTIONS(4485), + [aux_sym_def_type_statement_token13] = ACTIONS(4485), + [aux_sym_def_type_statement_token14] = ACTIONS(4485), + [aux_sym_comparison_operator_token1] = ACTIONS(4485), + [sym_number_literal] = ACTIONS(4487), + }, + [STATE(7295)] = { + [ts_builtin_sym_end] = ACTIONS(4591), + [sym_identifier] = ACTIONS(4589), + [sym_newline] = ACTIONS(4591), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4589), + [aux_sym_frm_begin_block_token1] = ACTIONS(4589), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4589), + [aux_sym_frm_property_statement_token1] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [aux_sym_attribute_statement_token1] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4591), + [aux_sym_option_statement_token1] = ACTIONS(4589), + [aux_sym_option_statement_token3] = ACTIONS(4589), + [aux_sym_implements_statement_token1] = ACTIONS(4589), + [aux_sym_type_declaration_token1] = ACTIONS(4589), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4591), + [aux_sym_enum_declaration_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4589), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4589), + [aux_sym_declare_function_statement_token1] = ACTIONS(4589), + [aux_sym_preprocessor_const_token1] = ACTIONS(4591), + [aux_sym__property_get_header_token1] = ACTIONS(4589), + [aux_sym_event_declaration_token1] = ACTIONS(4589), + [sym_static_modifier] = ACTIONS(4589), + [sym__dim_keyword] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [aux_sym_const_declaration_token1] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4591), + [anon_sym_STAR] = ACTIONS(4591), + [aux_sym_visibility_token1] = ACTIONS(4589), + [aux_sym_visibility_token2] = ACTIONS(4589), + [aux_sym_case_expression_token1] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4591), + [anon_sym_LT_GT] = ACTIONS(4591), + [anon_sym_CARET] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_BSLASH] = ACTIONS(4591), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4589), + [anon_sym_AMP] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4589), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token1] = ACTIONS(4589), + [aux_sym_def_type_statement_token2] = ACTIONS(4589), + [aux_sym_def_type_statement_token3] = ACTIONS(4589), + [aux_sym_def_type_statement_token4] = ACTIONS(4589), + [aux_sym_def_type_statement_token5] = ACTIONS(4589), + [aux_sym_def_type_statement_token6] = ACTIONS(4589), + [aux_sym_def_type_statement_token7] = ACTIONS(4589), + [aux_sym_def_type_statement_token8] = ACTIONS(4589), + [aux_sym_def_type_statement_token9] = ACTIONS(4589), + [aux_sym_def_type_statement_token10] = ACTIONS(4589), + [aux_sym_def_type_statement_token11] = ACTIONS(4589), + [aux_sym_def_type_statement_token12] = ACTIONS(4589), + [aux_sym_def_type_statement_token13] = ACTIONS(4589), + [aux_sym_def_type_statement_token14] = ACTIONS(4589), + [aux_sym_comparison_operator_token1] = ACTIONS(4589), + [sym_number_literal] = ACTIONS(4591), + }, + [STATE(7296)] = { + [ts_builtin_sym_end] = ACTIONS(4443), + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4441), + [aux_sym_frm_begin_block_token1] = ACTIONS(4441), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [aux_sym_attribute_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym_option_statement_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_implements_statement_token1] = ACTIONS(4441), + [aux_sym_type_declaration_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4443), + [aux_sym_enum_declaration_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4441), + [aux_sym_declare_function_statement_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4443), + [aux_sym__property_get_header_token1] = ACTIONS(4441), + [aux_sym_event_declaration_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_LPAREN] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [anon_sym_CARET] = ACTIONS(11205), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [sym_number_literal] = ACTIONS(4443), + }, + [STATE(7297)] = { + [ts_builtin_sym_end] = ACTIONS(4453), + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4451), + [aux_sym_frm_begin_block_token1] = ACTIONS(4451), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [aux_sym_attribute_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym_option_statement_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_implements_statement_token1] = ACTIONS(4451), + [aux_sym_type_declaration_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4453), + [aux_sym_enum_declaration_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4451), + [aux_sym_declare_function_statement_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4453), + [aux_sym__property_get_header_token1] = ACTIONS(4451), + [aux_sym_event_declaration_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_STAR] = ACTIONS(11203), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [anon_sym_CARET] = ACTIONS(11205), + [anon_sym_SLASH] = ACTIONS(11203), + [anon_sym_BSLASH] = ACTIONS(11207), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11209), + [anon_sym_PLUS] = ACTIONS(11211), + [anon_sym_DASH] = ACTIONS(11213), + [anon_sym_AMP] = ACTIONS(11215), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(11217), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(11219), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(11221), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(11223), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(11225), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [sym_number_literal] = ACTIONS(4453), + }, + [STATE(7298)] = { + [ts_builtin_sym_end] = ACTIONS(4505), + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4509), + [aux_sym_frm_begin_block_token1] = ACTIONS(4509), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4503), + [aux_sym_attribute_statement_token1] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym_option_statement_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_implements_statement_token1] = ACTIONS(4509), + [aux_sym_type_declaration_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4505), + [aux_sym_enum_declaration_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4509), + [aux_sym_declare_function_statement_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4505), + [aux_sym__property_get_header_token1] = ACTIONS(4509), + [aux_sym_event_declaration_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [sym_number_literal] = ACTIONS(4505), + }, + [STATE(7299)] = { + [ts_builtin_sym_end] = ACTIONS(4505), + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4509), + [aux_sym_frm_begin_block_token1] = ACTIONS(4509), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [aux_sym_attribute_statement_token1] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym_option_statement_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_implements_statement_token1] = ACTIONS(4509), + [aux_sym_type_declaration_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4505), + [aux_sym_enum_declaration_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4509), + [aux_sym_declare_function_statement_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4505), + [aux_sym__property_get_header_token1] = ACTIONS(4509), + [aux_sym_event_declaration_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [sym_number_literal] = ACTIONS(4505), + }, + [STATE(7300)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(11203), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11205), + [anon_sym_SLASH] = ACTIONS(11203), + [anon_sym_BSLASH] = ACTIONS(11207), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11209), + [anon_sym_PLUS] = ACTIONS(11211), + [anon_sym_DASH] = ACTIONS(11213), + [anon_sym_AMP] = ACTIONS(11215), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(11217), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7301)] = { + [ts_builtin_sym_end] = ACTIONS(4615), + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4613), + [aux_sym_frm_begin_block_token1] = ACTIONS(4613), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4503), + [aux_sym_attribute_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym_option_statement_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_implements_statement_token1] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4615), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4615), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [sym_number_literal] = ACTIONS(4615), + }, + [STATE(7302)] = { + [ts_builtin_sym_end] = ACTIONS(4439), + [sym_identifier] = ACTIONS(4437), + [sym_newline] = ACTIONS(4439), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4437), + [aux_sym_frm_begin_block_token1] = ACTIONS(4437), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4437), + [aux_sym_frm_property_statement_token1] = ACTIONS(4437), + [anon_sym_EQ] = ACTIONS(4439), + [aux_sym_attribute_statement_token1] = ACTIONS(4437), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4439), + [aux_sym_option_statement_token1] = ACTIONS(4437), + [aux_sym_option_statement_token3] = ACTIONS(4437), + [aux_sym_implements_statement_token1] = ACTIONS(4437), + [aux_sym_type_declaration_token1] = ACTIONS(4437), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4439), + [aux_sym_enum_declaration_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4437), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4437), + [aux_sym_declare_function_statement_token1] = ACTIONS(4437), + [aux_sym_preprocessor_const_token1] = ACTIONS(4439), + [aux_sym__property_get_header_token1] = ACTIONS(4437), + [aux_sym_event_declaration_token1] = ACTIONS(4437), + [sym_static_modifier] = ACTIONS(4437), + [sym__dim_keyword] = ACTIONS(4437), + [anon_sym_COMMA] = ACTIONS(4439), + [aux_sym_const_declaration_token1] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4439), + [anon_sym_STAR] = ACTIONS(4439), + [aux_sym_visibility_token1] = ACTIONS(4437), + [aux_sym_visibility_token2] = ACTIONS(4437), + [aux_sym_case_expression_token1] = ACTIONS(4437), + [anon_sym_LT] = ACTIONS(4437), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4437), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_LT_GT] = ACTIONS(4439), + [anon_sym_CARET] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_BSLASH] = ACTIONS(4439), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4439), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4437), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token1] = ACTIONS(4437), + [aux_sym_def_type_statement_token2] = ACTIONS(4437), + [aux_sym_def_type_statement_token3] = ACTIONS(4437), + [aux_sym_def_type_statement_token4] = ACTIONS(4437), + [aux_sym_def_type_statement_token5] = ACTIONS(4437), + [aux_sym_def_type_statement_token6] = ACTIONS(4437), + [aux_sym_def_type_statement_token7] = ACTIONS(4437), + [aux_sym_def_type_statement_token8] = ACTIONS(4437), + [aux_sym_def_type_statement_token9] = ACTIONS(4437), + [aux_sym_def_type_statement_token10] = ACTIONS(4437), + [aux_sym_def_type_statement_token11] = ACTIONS(4437), + [aux_sym_def_type_statement_token12] = ACTIONS(4437), + [aux_sym_def_type_statement_token13] = ACTIONS(4437), + [aux_sym_def_type_statement_token14] = ACTIONS(4437), + [aux_sym_comparison_operator_token1] = ACTIONS(4437), + [sym_number_literal] = ACTIONS(4439), + }, + [STATE(7303)] = { + [ts_builtin_sym_end] = ACTIONS(4505), + [sym_identifier] = ACTIONS(4509), + [sym_newline] = ACTIONS(4505), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4509), + [aux_sym_frm_begin_block_token1] = ACTIONS(4509), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4509), + [aux_sym_frm_property_statement_token1] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(4629), + [aux_sym_attribute_statement_token1] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_BANG] = ACTIONS(4505), + [aux_sym_option_statement_token1] = ACTIONS(4509), + [aux_sym_option_statement_token3] = ACTIONS(4509), + [aux_sym_implements_statement_token1] = ACTIONS(4509), + [aux_sym_type_declaration_token1] = ACTIONS(4509), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4505), + [aux_sym_enum_declaration_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4509), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4509), + [aux_sym_declare_function_statement_token1] = ACTIONS(4509), + [aux_sym_preprocessor_const_token1] = ACTIONS(4505), + [aux_sym__property_get_header_token1] = ACTIONS(4509), + [aux_sym_event_declaration_token1] = ACTIONS(4509), + [sym_static_modifier] = ACTIONS(4509), + [sym__dim_keyword] = ACTIONS(4509), + [anon_sym_COMMA] = ACTIONS(4505), + [aux_sym_const_declaration_token1] = ACTIONS(4509), + [anon_sym_LPAREN] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [aux_sym_visibility_token1] = ACTIONS(4509), + [aux_sym_visibility_token2] = ACTIONS(4509), + [aux_sym_case_expression_token1] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4629), + [anon_sym_GT] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4629), + [anon_sym_LT_GT] = ACTIONS(4629), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4509), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_AMP] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4509), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token1] = ACTIONS(4509), + [aux_sym_def_type_statement_token2] = ACTIONS(4509), + [aux_sym_def_type_statement_token3] = ACTIONS(4509), + [aux_sym_def_type_statement_token4] = ACTIONS(4509), + [aux_sym_def_type_statement_token5] = ACTIONS(4509), + [aux_sym_def_type_statement_token6] = ACTIONS(4509), + [aux_sym_def_type_statement_token7] = ACTIONS(4509), + [aux_sym_def_type_statement_token8] = ACTIONS(4509), + [aux_sym_def_type_statement_token9] = ACTIONS(4509), + [aux_sym_def_type_statement_token10] = ACTIONS(4509), + [aux_sym_def_type_statement_token11] = ACTIONS(4509), + [aux_sym_def_type_statement_token12] = ACTIONS(4509), + [aux_sym_def_type_statement_token13] = ACTIONS(4509), + [aux_sym_def_type_statement_token14] = ACTIONS(4509), + [aux_sym_comparison_operator_token1] = ACTIONS(4632), + [sym_number_literal] = ACTIONS(4505), + }, + [STATE(7304)] = { + [ts_builtin_sym_end] = ACTIONS(4615), + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4613), + [aux_sym_frm_begin_block_token1] = ACTIONS(4613), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [aux_sym_attribute_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym_option_statement_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_implements_statement_token1] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4615), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4615), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_LT_EQ] = ACTIONS(4635), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_GT_EQ] = ACTIONS(4635), + [anon_sym_LT_GT] = ACTIONS(4635), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4638), + [sym_number_literal] = ACTIONS(4615), + }, + [STATE(7305)] = { + [ts_builtin_sym_end] = ACTIONS(4623), + [sym_identifier] = ACTIONS(4621), + [sym_newline] = ACTIONS(4623), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4621), + [aux_sym_frm_begin_block_token1] = ACTIONS(4621), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4621), + [aux_sym_frm_property_statement_token1] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [aux_sym_attribute_statement_token1] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_BANG] = ACTIONS(4623), + [aux_sym_option_statement_token1] = ACTIONS(4621), + [aux_sym_option_statement_token3] = ACTIONS(4621), + [aux_sym_implements_statement_token1] = ACTIONS(4621), + [aux_sym_type_declaration_token1] = ACTIONS(4621), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4623), + [aux_sym_enum_declaration_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4621), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4621), + [aux_sym_declare_function_statement_token1] = ACTIONS(4621), + [aux_sym_preprocessor_const_token1] = ACTIONS(4623), + [aux_sym__property_get_header_token1] = ACTIONS(4621), + [aux_sym_event_declaration_token1] = ACTIONS(4621), + [sym_static_modifier] = ACTIONS(4621), + [sym__dim_keyword] = ACTIONS(4621), + [anon_sym_COMMA] = ACTIONS(4623), + [aux_sym_const_declaration_token1] = ACTIONS(4621), + [anon_sym_LPAREN] = ACTIONS(4623), + [anon_sym_STAR] = ACTIONS(4623), + [aux_sym_visibility_token1] = ACTIONS(4621), + [aux_sym_visibility_token2] = ACTIONS(4621), + [aux_sym_case_expression_token1] = ACTIONS(4621), + [anon_sym_LT] = ACTIONS(4621), + [anon_sym_LT_EQ] = ACTIONS(4623), + [anon_sym_GT] = ACTIONS(4621), + [anon_sym_GT_EQ] = ACTIONS(4623), + [anon_sym_LT_GT] = ACTIONS(4623), + [anon_sym_CARET] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_BSLASH] = ACTIONS(4623), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4621), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token1] = ACTIONS(4621), + [aux_sym_def_type_statement_token2] = ACTIONS(4621), + [aux_sym_def_type_statement_token3] = ACTIONS(4621), + [aux_sym_def_type_statement_token4] = ACTIONS(4621), + [aux_sym_def_type_statement_token5] = ACTIONS(4621), + [aux_sym_def_type_statement_token6] = ACTIONS(4621), + [aux_sym_def_type_statement_token7] = ACTIONS(4621), + [aux_sym_def_type_statement_token8] = ACTIONS(4621), + [aux_sym_def_type_statement_token9] = ACTIONS(4621), + [aux_sym_def_type_statement_token10] = ACTIONS(4621), + [aux_sym_def_type_statement_token11] = ACTIONS(4621), + [aux_sym_def_type_statement_token12] = ACTIONS(4621), + [aux_sym_def_type_statement_token13] = ACTIONS(4621), + [aux_sym_def_type_statement_token14] = ACTIONS(4621), + [aux_sym_comparison_operator_token1] = ACTIONS(4621), + [sym_number_literal] = ACTIONS(4623), + }, + [STATE(7306)] = { + [ts_builtin_sym_end] = ACTIONS(4603), + [sym_identifier] = ACTIONS(4601), + [sym_newline] = ACTIONS(4603), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4601), + [aux_sym_frm_begin_block_token1] = ACTIONS(4601), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4601), + [aux_sym_frm_property_statement_token1] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [aux_sym_attribute_statement_token1] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4603), + [aux_sym_option_statement_token1] = ACTIONS(4601), + [aux_sym_option_statement_token3] = ACTIONS(4601), + [aux_sym_implements_statement_token1] = ACTIONS(4601), + [aux_sym_type_declaration_token1] = ACTIONS(4601), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4603), + [aux_sym_enum_declaration_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4601), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4601), + [aux_sym_declare_function_statement_token1] = ACTIONS(4601), + [aux_sym_preprocessor_const_token1] = ACTIONS(4603), + [aux_sym__property_get_header_token1] = ACTIONS(4601), + [aux_sym_event_declaration_token1] = ACTIONS(4601), + [sym_static_modifier] = ACTIONS(4601), + [sym__dim_keyword] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4603), + [aux_sym_const_declaration_token1] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4603), + [anon_sym_STAR] = ACTIONS(4603), + [aux_sym_visibility_token1] = ACTIONS(4601), + [aux_sym_visibility_token2] = ACTIONS(4601), + [aux_sym_case_expression_token1] = ACTIONS(4601), + [anon_sym_LT] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4603), + [anon_sym_LT_GT] = ACTIONS(4603), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_BSLASH] = ACTIONS(4603), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4601), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token1] = ACTIONS(4601), + [aux_sym_def_type_statement_token2] = ACTIONS(4601), + [aux_sym_def_type_statement_token3] = ACTIONS(4601), + [aux_sym_def_type_statement_token4] = ACTIONS(4601), + [aux_sym_def_type_statement_token5] = ACTIONS(4601), + [aux_sym_def_type_statement_token6] = ACTIONS(4601), + [aux_sym_def_type_statement_token7] = ACTIONS(4601), + [aux_sym_def_type_statement_token8] = ACTIONS(4601), + [aux_sym_def_type_statement_token9] = ACTIONS(4601), + [aux_sym_def_type_statement_token10] = ACTIONS(4601), + [aux_sym_def_type_statement_token11] = ACTIONS(4601), + [aux_sym_def_type_statement_token12] = ACTIONS(4601), + [aux_sym_def_type_statement_token13] = ACTIONS(4601), + [aux_sym_def_type_statement_token14] = ACTIONS(4601), + [aux_sym_comparison_operator_token1] = ACTIONS(4601), + [sym_number_literal] = ACTIONS(4603), + }, + [STATE(7307)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(11203), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11205), + [anon_sym_SLASH] = ACTIONS(11203), + [anon_sym_BSLASH] = ACTIONS(11207), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11209), + [anon_sym_PLUS] = ACTIONS(11211), + [anon_sym_DASH] = ACTIONS(11213), + [anon_sym_AMP] = ACTIONS(11215), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(11217), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(11219), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(11221), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7308)] = { + [ts_builtin_sym_end] = ACTIONS(4607), + [sym_identifier] = ACTIONS(4605), + [sym_newline] = ACTIONS(4607), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4605), + [aux_sym_frm_begin_block_token1] = ACTIONS(4605), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4605), + [aux_sym_frm_property_statement_token1] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [aux_sym_attribute_statement_token1] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4607), + [aux_sym_option_statement_token1] = ACTIONS(4605), + [aux_sym_option_statement_token3] = ACTIONS(4605), + [aux_sym_implements_statement_token1] = ACTIONS(4605), + [aux_sym_type_declaration_token1] = ACTIONS(4605), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4607), + [aux_sym_enum_declaration_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4605), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4605), + [aux_sym_declare_function_statement_token1] = ACTIONS(4605), + [aux_sym_preprocessor_const_token1] = ACTIONS(4607), + [aux_sym__property_get_header_token1] = ACTIONS(4605), + [aux_sym_event_declaration_token1] = ACTIONS(4605), + [sym_static_modifier] = ACTIONS(4605), + [sym__dim_keyword] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4607), + [aux_sym_const_declaration_token1] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4607), + [anon_sym_STAR] = ACTIONS(4607), + [aux_sym_visibility_token1] = ACTIONS(4605), + [aux_sym_visibility_token2] = ACTIONS(4605), + [aux_sym_case_expression_token1] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4607), + [anon_sym_LT_GT] = ACTIONS(4607), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_BSLASH] = ACTIONS(4607), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4605), + [anon_sym_AMP] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4605), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token1] = ACTIONS(4605), + [aux_sym_def_type_statement_token2] = ACTIONS(4605), + [aux_sym_def_type_statement_token3] = ACTIONS(4605), + [aux_sym_def_type_statement_token4] = ACTIONS(4605), + [aux_sym_def_type_statement_token5] = ACTIONS(4605), + [aux_sym_def_type_statement_token6] = ACTIONS(4605), + [aux_sym_def_type_statement_token7] = ACTIONS(4605), + [aux_sym_def_type_statement_token8] = ACTIONS(4605), + [aux_sym_def_type_statement_token9] = ACTIONS(4605), + [aux_sym_def_type_statement_token10] = ACTIONS(4605), + [aux_sym_def_type_statement_token11] = ACTIONS(4605), + [aux_sym_def_type_statement_token12] = ACTIONS(4605), + [aux_sym_def_type_statement_token13] = ACTIONS(4605), + [aux_sym_def_type_statement_token14] = ACTIONS(4605), + [aux_sym_comparison_operator_token1] = ACTIONS(4605), + [sym_number_literal] = ACTIONS(4607), + }, + [STATE(7309)] = { + [ts_builtin_sym_end] = ACTIONS(4649), + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4647), + [aux_sym_frm_begin_block_token1] = ACTIONS(4647), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [aux_sym_attribute_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym_option_statement_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_implements_statement_token1] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4649), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4649), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4649), + [anon_sym_STAR] = ACTIONS(11203), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [anon_sym_CARET] = ACTIONS(11205), + [anon_sym_SLASH] = ACTIONS(11203), + [anon_sym_BSLASH] = ACTIONS(11207), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11209), + [anon_sym_PLUS] = ACTIONS(11211), + [anon_sym_DASH] = ACTIONS(11213), + [anon_sym_AMP] = ACTIONS(11215), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [sym_number_literal] = ACTIONS(4649), + }, + [STATE(7310)] = { + [ts_builtin_sym_end] = ACTIONS(4599), + [sym_identifier] = ACTIONS(4597), + [sym_newline] = ACTIONS(4599), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4597), + [aux_sym_frm_begin_block_token1] = ACTIONS(4597), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4597), + [aux_sym_frm_property_statement_token1] = ACTIONS(4597), + [anon_sym_EQ] = ACTIONS(4599), + [aux_sym_attribute_statement_token1] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4599), + [aux_sym_option_statement_token1] = ACTIONS(4597), + [aux_sym_option_statement_token3] = ACTIONS(4597), + [aux_sym_implements_statement_token1] = ACTIONS(4597), + [aux_sym_type_declaration_token1] = ACTIONS(4597), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4599), + [aux_sym_enum_declaration_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4597), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4597), + [aux_sym_declare_function_statement_token1] = ACTIONS(4597), + [aux_sym_preprocessor_const_token1] = ACTIONS(4599), + [aux_sym__property_get_header_token1] = ACTIONS(4597), + [aux_sym_event_declaration_token1] = ACTIONS(4597), + [sym_static_modifier] = ACTIONS(4597), + [sym__dim_keyword] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4599), + [aux_sym_const_declaration_token1] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4599), + [anon_sym_STAR] = ACTIONS(4599), + [aux_sym_visibility_token1] = ACTIONS(4597), + [aux_sym_visibility_token2] = ACTIONS(4597), + [aux_sym_case_expression_token1] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4599), + [anon_sym_LT_GT] = ACTIONS(4599), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_BSLASH] = ACTIONS(4599), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_AMP] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4597), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token1] = ACTIONS(4597), + [aux_sym_def_type_statement_token2] = ACTIONS(4597), + [aux_sym_def_type_statement_token3] = ACTIONS(4597), + [aux_sym_def_type_statement_token4] = ACTIONS(4597), + [aux_sym_def_type_statement_token5] = ACTIONS(4597), + [aux_sym_def_type_statement_token6] = ACTIONS(4597), + [aux_sym_def_type_statement_token7] = ACTIONS(4597), + [aux_sym_def_type_statement_token8] = ACTIONS(4597), + [aux_sym_def_type_statement_token9] = ACTIONS(4597), + [aux_sym_def_type_statement_token10] = ACTIONS(4597), + [aux_sym_def_type_statement_token11] = ACTIONS(4597), + [aux_sym_def_type_statement_token12] = ACTIONS(4597), + [aux_sym_def_type_statement_token13] = ACTIONS(4597), + [aux_sym_def_type_statement_token14] = ACTIONS(4597), + [aux_sym_comparison_operator_token1] = ACTIONS(4597), + [sym_number_literal] = ACTIONS(4599), + }, + [STATE(7311)] = { + [ts_builtin_sym_end] = ACTIONS(4611), + [sym_identifier] = ACTIONS(4609), + [sym_newline] = ACTIONS(4611), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4609), + [aux_sym_frm_begin_block_token1] = ACTIONS(4609), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4609), + [aux_sym_frm_property_statement_token1] = ACTIONS(4609), + [anon_sym_EQ] = ACTIONS(4611), + [aux_sym_attribute_statement_token1] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4611), + [aux_sym_option_statement_token1] = ACTIONS(4609), + [aux_sym_option_statement_token3] = ACTIONS(4609), + [aux_sym_implements_statement_token1] = ACTIONS(4609), + [aux_sym_type_declaration_token1] = ACTIONS(4609), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4611), + [aux_sym_enum_declaration_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4609), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4609), + [aux_sym_declare_function_statement_token1] = ACTIONS(4609), + [aux_sym_preprocessor_const_token1] = ACTIONS(4611), + [aux_sym__property_get_header_token1] = ACTIONS(4609), + [aux_sym_event_declaration_token1] = ACTIONS(4609), + [sym_static_modifier] = ACTIONS(4609), + [sym__dim_keyword] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4611), + [aux_sym_const_declaration_token1] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4611), + [anon_sym_STAR] = ACTIONS(4611), + [aux_sym_visibility_token1] = ACTIONS(4609), + [aux_sym_visibility_token2] = ACTIONS(4609), + [aux_sym_case_expression_token1] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4611), + [anon_sym_LT_GT] = ACTIONS(4611), + [anon_sym_CARET] = ACTIONS(4611), + [anon_sym_SLASH] = ACTIONS(4611), + [anon_sym_BSLASH] = ACTIONS(4611), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4609), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token1] = ACTIONS(4609), + [aux_sym_def_type_statement_token2] = ACTIONS(4609), + [aux_sym_def_type_statement_token3] = ACTIONS(4609), + [aux_sym_def_type_statement_token4] = ACTIONS(4609), + [aux_sym_def_type_statement_token5] = ACTIONS(4609), + [aux_sym_def_type_statement_token6] = ACTIONS(4609), + [aux_sym_def_type_statement_token7] = ACTIONS(4609), + [aux_sym_def_type_statement_token8] = ACTIONS(4609), + [aux_sym_def_type_statement_token9] = ACTIONS(4609), + [aux_sym_def_type_statement_token10] = ACTIONS(4609), + [aux_sym_def_type_statement_token11] = ACTIONS(4609), + [aux_sym_def_type_statement_token12] = ACTIONS(4609), + [aux_sym_def_type_statement_token13] = ACTIONS(4609), + [aux_sym_def_type_statement_token14] = ACTIONS(4609), + [aux_sym_comparison_operator_token1] = ACTIONS(4609), + [sym_number_literal] = ACTIONS(4611), + }, + [STATE(7312)] = { + [ts_builtin_sym_end] = ACTIONS(4479), + [sym_identifier] = ACTIONS(4477), + [sym_newline] = ACTIONS(4479), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4477), + [aux_sym_frm_begin_block_token1] = ACTIONS(4477), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4477), + [aux_sym_frm_property_statement_token1] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4479), + [aux_sym_attribute_statement_token1] = ACTIONS(4477), + [anon_sym_DOT] = ACTIONS(4477), + [anon_sym_BANG] = ACTIONS(4479), + [aux_sym_option_statement_token1] = ACTIONS(4477), + [aux_sym_option_statement_token3] = ACTIONS(4477), + [aux_sym_implements_statement_token1] = ACTIONS(4477), + [aux_sym_type_declaration_token1] = ACTIONS(4477), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4479), + [aux_sym_enum_declaration_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4477), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4477), + [aux_sym_declare_function_statement_token1] = ACTIONS(4477), + [aux_sym_preprocessor_const_token1] = ACTIONS(4479), + [aux_sym__property_get_header_token1] = ACTIONS(4477), + [aux_sym_event_declaration_token1] = ACTIONS(4477), + [sym_static_modifier] = ACTIONS(4477), + [sym__dim_keyword] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4479), + [aux_sym_const_declaration_token1] = ACTIONS(4477), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_STAR] = ACTIONS(4479), + [aux_sym_visibility_token1] = ACTIONS(4477), + [aux_sym_visibility_token2] = ACTIONS(4477), + [aux_sym_case_expression_token1] = ACTIONS(4477), + [anon_sym_LT] = ACTIONS(4477), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4477), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_LT_GT] = ACTIONS(4479), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_BSLASH] = ACTIONS(4479), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4477), + [anon_sym_AMP] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4477), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token1] = ACTIONS(4477), + [aux_sym_def_type_statement_token2] = ACTIONS(4477), + [aux_sym_def_type_statement_token3] = ACTIONS(4477), + [aux_sym_def_type_statement_token4] = ACTIONS(4477), + [aux_sym_def_type_statement_token5] = ACTIONS(4477), + [aux_sym_def_type_statement_token6] = ACTIONS(4477), + [aux_sym_def_type_statement_token7] = ACTIONS(4477), + [aux_sym_def_type_statement_token8] = ACTIONS(4477), + [aux_sym_def_type_statement_token9] = ACTIONS(4477), + [aux_sym_def_type_statement_token10] = ACTIONS(4477), + [aux_sym_def_type_statement_token11] = ACTIONS(4477), + [aux_sym_def_type_statement_token12] = ACTIONS(4477), + [aux_sym_def_type_statement_token13] = ACTIONS(4477), + [aux_sym_def_type_statement_token14] = ACTIONS(4477), + [aux_sym_comparison_operator_token1] = ACTIONS(4477), + [sym_number_literal] = ACTIONS(4479), + }, + [STATE(7313)] = { + [ts_builtin_sym_end] = ACTIONS(4002), + [sym_identifier] = ACTIONS(4006), + [sym_newline] = ACTIONS(4002), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4006), + [aux_sym_frm_begin_block_token1] = ACTIONS(4006), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4006), + [aux_sym_frm_property_statement_token1] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4002), + [aux_sym_attribute_statement_token1] = ACTIONS(4006), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4002), + [aux_sym_option_statement_token1] = ACTIONS(4006), + [aux_sym_option_statement_token3] = ACTIONS(4006), + [aux_sym_implements_statement_token1] = ACTIONS(4006), + [aux_sym_type_declaration_token1] = ACTIONS(4006), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4002), + [aux_sym_enum_declaration_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4006), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4006), + [aux_sym_declare_function_statement_token1] = ACTIONS(4006), + [aux_sym_preprocessor_const_token1] = ACTIONS(4002), + [aux_sym__property_get_header_token1] = ACTIONS(4006), + [aux_sym_event_declaration_token1] = ACTIONS(4006), + [sym_static_modifier] = ACTIONS(4006), + [sym__dim_keyword] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(4002), + [aux_sym_const_declaration_token1] = ACTIONS(4006), + [anon_sym_LPAREN] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(4002), + [aux_sym_visibility_token1] = ACTIONS(4006), + [aux_sym_visibility_token2] = ACTIONS(4006), + [aux_sym_case_expression_token1] = ACTIONS(4006), + [anon_sym_LT] = ACTIONS(4006), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT] = ACTIONS(4006), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_LT_GT] = ACTIONS(4002), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_BSLASH] = ACTIONS(4002), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4006), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4006), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token1] = ACTIONS(4006), + [aux_sym_def_type_statement_token2] = ACTIONS(4006), + [aux_sym_def_type_statement_token3] = ACTIONS(4006), + [aux_sym_def_type_statement_token4] = ACTIONS(4006), + [aux_sym_def_type_statement_token5] = ACTIONS(4006), + [aux_sym_def_type_statement_token6] = ACTIONS(4006), + [aux_sym_def_type_statement_token7] = ACTIONS(4006), + [aux_sym_def_type_statement_token8] = ACTIONS(4006), + [aux_sym_def_type_statement_token9] = ACTIONS(4006), + [aux_sym_def_type_statement_token10] = ACTIONS(4006), + [aux_sym_def_type_statement_token11] = ACTIONS(4006), + [aux_sym_def_type_statement_token12] = ACTIONS(4006), + [aux_sym_def_type_statement_token13] = ACTIONS(4006), + [aux_sym_def_type_statement_token14] = ACTIONS(4006), + [aux_sym_comparison_operator_token1] = ACTIONS(4006), + [sym_number_literal] = ACTIONS(4002), + }, + [STATE(7314)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(11203), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11205), + [anon_sym_SLASH] = ACTIONS(11203), + [anon_sym_BSLASH] = ACTIONS(11207), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11209), + [anon_sym_PLUS] = ACTIONS(11211), + [anon_sym_DASH] = ACTIONS(11213), + [anon_sym_AMP] = ACTIONS(11215), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(11217), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(11219), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7315)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11205), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7316)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11205), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7317)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(11203), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11205), + [anon_sym_SLASH] = ACTIONS(11203), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7318)] = { + [ts_builtin_sym_end] = ACTIONS(4344), + [sym_identifier] = ACTIONS(4342), + [sym_newline] = ACTIONS(4344), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4342), + [aux_sym_frm_begin_block_token1] = ACTIONS(4342), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4342), + [aux_sym_frm_property_statement_token1] = ACTIONS(4342), + [anon_sym_EQ] = ACTIONS(4344), + [aux_sym_attribute_statement_token1] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(11197), + [anon_sym_BANG] = ACTIONS(11199), + [aux_sym_option_statement_token1] = ACTIONS(4342), + [aux_sym_option_statement_token3] = ACTIONS(4342), + [aux_sym_implements_statement_token1] = ACTIONS(4342), + [aux_sym_type_declaration_token1] = ACTIONS(4342), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4344), + [aux_sym_enum_declaration_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4342), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4342), + [aux_sym_declare_function_statement_token1] = ACTIONS(4342), + [aux_sym_preprocessor_const_token1] = ACTIONS(4344), + [aux_sym__property_get_header_token1] = ACTIONS(4342), + [aux_sym_event_declaration_token1] = ACTIONS(4342), + [sym_static_modifier] = ACTIONS(4342), + [sym__dim_keyword] = ACTIONS(4342), + [anon_sym_COMMA] = ACTIONS(4344), + [aux_sym_const_declaration_token1] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_STAR] = ACTIONS(4344), + [aux_sym_visibility_token1] = ACTIONS(4342), + [aux_sym_visibility_token2] = ACTIONS(4342), + [aux_sym_case_expression_token1] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_LT_EQ] = ACTIONS(4344), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_GT] = ACTIONS(4344), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_SLASH] = ACTIONS(4344), + [anon_sym_BSLASH] = ACTIONS(4344), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4342), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4342), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token1] = ACTIONS(4342), + [aux_sym_def_type_statement_token2] = ACTIONS(4342), + [aux_sym_def_type_statement_token3] = ACTIONS(4342), + [aux_sym_def_type_statement_token4] = ACTIONS(4342), + [aux_sym_def_type_statement_token5] = ACTIONS(4342), + [aux_sym_def_type_statement_token6] = ACTIONS(4342), + [aux_sym_def_type_statement_token7] = ACTIONS(4342), + [aux_sym_def_type_statement_token8] = ACTIONS(4342), + [aux_sym_def_type_statement_token9] = ACTIONS(4342), + [aux_sym_def_type_statement_token10] = ACTIONS(4342), + [aux_sym_def_type_statement_token11] = ACTIONS(4342), + [aux_sym_def_type_statement_token12] = ACTIONS(4342), + [aux_sym_def_type_statement_token13] = ACTIONS(4342), + [aux_sym_def_type_statement_token14] = ACTIONS(4342), + [aux_sym_comparison_operator_token1] = ACTIONS(4342), + [sym_number_literal] = ACTIONS(4344), + }, + [STATE(7319)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(11203), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11205), + [anon_sym_SLASH] = ACTIONS(11203), + [anon_sym_BSLASH] = ACTIONS(11207), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7320)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(11203), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11205), + [anon_sym_SLASH] = ACTIONS(11203), + [anon_sym_BSLASH] = ACTIONS(11207), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11209), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7321)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(11203), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11205), + [anon_sym_SLASH] = ACTIONS(11203), + [anon_sym_BSLASH] = ACTIONS(11207), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11209), + [anon_sym_PLUS] = ACTIONS(11211), + [anon_sym_DASH] = ACTIONS(11213), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7322)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(11203), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11205), + [anon_sym_SLASH] = ACTIONS(11203), + [anon_sym_BSLASH] = ACTIONS(11207), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11209), + [anon_sym_PLUS] = ACTIONS(11211), + [anon_sym_DASH] = ACTIONS(11213), + [anon_sym_AMP] = ACTIONS(11215), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7323)] = { + [ts_builtin_sym_end] = ACTIONS(4615), + [sym_identifier] = ACTIONS(4613), + [sym_newline] = ACTIONS(4615), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4613), + [aux_sym_frm_begin_block_token1] = ACTIONS(4613), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4613), + [aux_sym_frm_property_statement_token1] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(4635), + [aux_sym_attribute_statement_token1] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4615), + [aux_sym_option_statement_token1] = ACTIONS(4613), + [aux_sym_option_statement_token3] = ACTIONS(4613), + [aux_sym_implements_statement_token1] = ACTIONS(4613), + [aux_sym_type_declaration_token1] = ACTIONS(4613), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4615), + [aux_sym_enum_declaration_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4613), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4613), + [aux_sym_declare_function_statement_token1] = ACTIONS(4613), + [aux_sym_preprocessor_const_token1] = ACTIONS(4615), + [aux_sym__property_get_header_token1] = ACTIONS(4613), + [aux_sym_event_declaration_token1] = ACTIONS(4613), + [sym_static_modifier] = ACTIONS(4613), + [sym__dim_keyword] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(4615), + [aux_sym_const_declaration_token1] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4615), + [anon_sym_STAR] = ACTIONS(4615), + [aux_sym_visibility_token1] = ACTIONS(4613), + [aux_sym_visibility_token2] = ACTIONS(4613), + [aux_sym_case_expression_token1] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_LT_GT] = ACTIONS(4503), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_SLASH] = ACTIONS(4615), + [anon_sym_BSLASH] = ACTIONS(4615), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4613), + [anon_sym_PLUS] = ACTIONS(4615), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4613), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token1] = ACTIONS(4613), + [aux_sym_def_type_statement_token2] = ACTIONS(4613), + [aux_sym_def_type_statement_token3] = ACTIONS(4613), + [aux_sym_def_type_statement_token4] = ACTIONS(4613), + [aux_sym_def_type_statement_token5] = ACTIONS(4613), + [aux_sym_def_type_statement_token6] = ACTIONS(4613), + [aux_sym_def_type_statement_token7] = ACTIONS(4613), + [aux_sym_def_type_statement_token8] = ACTIONS(4613), + [aux_sym_def_type_statement_token9] = ACTIONS(4613), + [aux_sym_def_type_statement_token10] = ACTIONS(4613), + [aux_sym_def_type_statement_token11] = ACTIONS(4613), + [aux_sym_def_type_statement_token12] = ACTIONS(4613), + [aux_sym_def_type_statement_token13] = ACTIONS(4613), + [aux_sym_def_type_statement_token14] = ACTIONS(4613), + [aux_sym_comparison_operator_token1] = ACTIONS(4507), + [sym_number_literal] = ACTIONS(4615), + }, + [STATE(7324)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(11227), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11229), + [anon_sym_SLASH] = ACTIONS(11227), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7325)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(11227), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11229), + [anon_sym_SLASH] = ACTIONS(11227), + [anon_sym_BSLASH] = ACTIONS(11231), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11233), + [anon_sym_PLUS] = ACTIONS(11235), + [anon_sym_DASH] = ACTIONS(11237), + [anon_sym_AMP] = ACTIONS(11239), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(11241), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(11243), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7326)] = { + [ts_builtin_sym_end] = ACTIONS(4649), + [sym_identifier] = ACTIONS(4647), + [sym_newline] = ACTIONS(4649), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4647), + [aux_sym_frm_begin_block_token1] = ACTIONS(4647), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4647), + [aux_sym_frm_property_statement_token1] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(4649), + [aux_sym_attribute_statement_token1] = ACTIONS(4647), + [anon_sym_DOT] = ACTIONS(4647), + [anon_sym_BANG] = ACTIONS(4649), + [aux_sym_option_statement_token1] = ACTIONS(4647), + [aux_sym_option_statement_token3] = ACTIONS(4647), + [aux_sym_implements_statement_token1] = ACTIONS(4647), + [aux_sym_type_declaration_token1] = ACTIONS(4647), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4649), + [aux_sym_enum_declaration_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4647), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4647), + [aux_sym_declare_function_statement_token1] = ACTIONS(4647), + [aux_sym_preprocessor_const_token1] = ACTIONS(4649), + [aux_sym__property_get_header_token1] = ACTIONS(4647), + [aux_sym_event_declaration_token1] = ACTIONS(4647), + [sym_static_modifier] = ACTIONS(4647), + [sym__dim_keyword] = ACTIONS(4647), + [anon_sym_COMMA] = ACTIONS(4649), + [aux_sym_const_declaration_token1] = ACTIONS(4647), + [anon_sym_STAR] = ACTIONS(11227), + [aux_sym_visibility_token1] = ACTIONS(4647), + [aux_sym_visibility_token2] = ACTIONS(4647), + [aux_sym_case_expression_token1] = ACTIONS(4647), + [anon_sym_LT] = ACTIONS(4647), + [anon_sym_LT_EQ] = ACTIONS(4649), + [anon_sym_GT] = ACTIONS(4647), + [anon_sym_GT_EQ] = ACTIONS(4649), + [anon_sym_LT_GT] = ACTIONS(4649), + [anon_sym_CARET] = ACTIONS(11229), + [anon_sym_SLASH] = ACTIONS(11227), + [anon_sym_BSLASH] = ACTIONS(11231), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11233), + [anon_sym_PLUS] = ACTIONS(11235), + [anon_sym_DASH] = ACTIONS(11237), + [anon_sym_AMP] = ACTIONS(11239), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4647), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token1] = ACTIONS(4647), + [aux_sym_def_type_statement_token2] = ACTIONS(4647), + [aux_sym_def_type_statement_token3] = ACTIONS(4647), + [aux_sym_def_type_statement_token4] = ACTIONS(4647), + [aux_sym_def_type_statement_token5] = ACTIONS(4647), + [aux_sym_def_type_statement_token6] = ACTIONS(4647), + [aux_sym_def_type_statement_token7] = ACTIONS(4647), + [aux_sym_def_type_statement_token8] = ACTIONS(4647), + [aux_sym_def_type_statement_token9] = ACTIONS(4647), + [aux_sym_def_type_statement_token10] = ACTIONS(4647), + [aux_sym_def_type_statement_token11] = ACTIONS(4647), + [aux_sym_def_type_statement_token12] = ACTIONS(4647), + [aux_sym_def_type_statement_token13] = ACTIONS(4647), + [aux_sym_def_type_statement_token14] = ACTIONS(4647), + [aux_sym_comparison_operator_token1] = ACTIONS(4647), + [sym_number_literal] = ACTIONS(4649), + }, + [STATE(7327)] = { + [ts_builtin_sym_end] = ACTIONS(4443), + [sym_identifier] = ACTIONS(4441), + [sym_newline] = ACTIONS(4443), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4441), + [aux_sym_frm_begin_block_token1] = ACTIONS(4441), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4441), + [aux_sym_frm_property_statement_token1] = ACTIONS(4441), + [anon_sym_EQ] = ACTIONS(4443), + [aux_sym_attribute_statement_token1] = ACTIONS(4441), + [anon_sym_DOT] = ACTIONS(4441), + [anon_sym_BANG] = ACTIONS(4443), + [aux_sym_option_statement_token1] = ACTIONS(4441), + [aux_sym_option_statement_token3] = ACTIONS(4441), + [aux_sym_implements_statement_token1] = ACTIONS(4441), + [aux_sym_type_declaration_token1] = ACTIONS(4441), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4443), + [aux_sym_enum_declaration_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4441), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4441), + [aux_sym_declare_function_statement_token1] = ACTIONS(4441), + [aux_sym_preprocessor_const_token1] = ACTIONS(4443), + [aux_sym__property_get_header_token1] = ACTIONS(4441), + [aux_sym_event_declaration_token1] = ACTIONS(4441), + [sym_static_modifier] = ACTIONS(4441), + [sym__dim_keyword] = ACTIONS(4441), + [anon_sym_COMMA] = ACTIONS(4443), + [aux_sym_const_declaration_token1] = ACTIONS(4441), + [anon_sym_STAR] = ACTIONS(4443), + [aux_sym_visibility_token1] = ACTIONS(4441), + [aux_sym_visibility_token2] = ACTIONS(4441), + [aux_sym_case_expression_token1] = ACTIONS(4441), + [anon_sym_LT] = ACTIONS(4441), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4441), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_LT_GT] = ACTIONS(4443), + [anon_sym_CARET] = ACTIONS(11229), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_BSLASH] = ACTIONS(4443), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4441), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_AMP] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4441), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token1] = ACTIONS(4441), + [aux_sym_def_type_statement_token2] = ACTIONS(4441), + [aux_sym_def_type_statement_token3] = ACTIONS(4441), + [aux_sym_def_type_statement_token4] = ACTIONS(4441), + [aux_sym_def_type_statement_token5] = ACTIONS(4441), + [aux_sym_def_type_statement_token6] = ACTIONS(4441), + [aux_sym_def_type_statement_token7] = ACTIONS(4441), + [aux_sym_def_type_statement_token8] = ACTIONS(4441), + [aux_sym_def_type_statement_token9] = ACTIONS(4441), + [aux_sym_def_type_statement_token10] = ACTIONS(4441), + [aux_sym_def_type_statement_token11] = ACTIONS(4441), + [aux_sym_def_type_statement_token12] = ACTIONS(4441), + [aux_sym_def_type_statement_token13] = ACTIONS(4441), + [aux_sym_def_type_statement_token14] = ACTIONS(4441), + [aux_sym_comparison_operator_token1] = ACTIONS(4441), + [sym_number_literal] = ACTIONS(4443), + }, + [STATE(7328)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(11227), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11229), + [anon_sym_SLASH] = ACTIONS(11227), + [anon_sym_BSLASH] = ACTIONS(11231), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11233), + [anon_sym_PLUS] = ACTIONS(11235), + [anon_sym_DASH] = ACTIONS(11237), + [anon_sym_AMP] = ACTIONS(11239), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(11241), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(11243), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(11245), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7329)] = { + [ts_builtin_sym_end] = ACTIONS(4453), + [sym_identifier] = ACTIONS(4451), + [sym_newline] = ACTIONS(4453), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4451), + [aux_sym_frm_begin_block_token1] = ACTIONS(4451), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4451), + [aux_sym_frm_property_statement_token1] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4453), + [aux_sym_attribute_statement_token1] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4453), + [aux_sym_option_statement_token1] = ACTIONS(4451), + [aux_sym_option_statement_token3] = ACTIONS(4451), + [aux_sym_implements_statement_token1] = ACTIONS(4451), + [aux_sym_type_declaration_token1] = ACTIONS(4451), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4453), + [aux_sym_enum_declaration_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4451), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4451), + [aux_sym_declare_function_statement_token1] = ACTIONS(4451), + [aux_sym_preprocessor_const_token1] = ACTIONS(4453), + [aux_sym__property_get_header_token1] = ACTIONS(4451), + [aux_sym_event_declaration_token1] = ACTIONS(4451), + [sym_static_modifier] = ACTIONS(4451), + [sym__dim_keyword] = ACTIONS(4451), + [anon_sym_COMMA] = ACTIONS(4453), + [aux_sym_const_declaration_token1] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(11227), + [aux_sym_visibility_token1] = ACTIONS(4451), + [aux_sym_visibility_token2] = ACTIONS(4451), + [aux_sym_case_expression_token1] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_LT_GT] = ACTIONS(4453), + [anon_sym_CARET] = ACTIONS(11229), + [anon_sym_SLASH] = ACTIONS(11227), + [anon_sym_BSLASH] = ACTIONS(11231), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11233), + [anon_sym_PLUS] = ACTIONS(11235), + [anon_sym_DASH] = ACTIONS(11237), + [anon_sym_AMP] = ACTIONS(11239), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(11241), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(11243), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(11245), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(11247), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(11249), + [aux_sym_def_type_statement_token1] = ACTIONS(4451), + [aux_sym_def_type_statement_token2] = ACTIONS(4451), + [aux_sym_def_type_statement_token3] = ACTIONS(4451), + [aux_sym_def_type_statement_token4] = ACTIONS(4451), + [aux_sym_def_type_statement_token5] = ACTIONS(4451), + [aux_sym_def_type_statement_token6] = ACTIONS(4451), + [aux_sym_def_type_statement_token7] = ACTIONS(4451), + [aux_sym_def_type_statement_token8] = ACTIONS(4451), + [aux_sym_def_type_statement_token9] = ACTIONS(4451), + [aux_sym_def_type_statement_token10] = ACTIONS(4451), + [aux_sym_def_type_statement_token11] = ACTIONS(4451), + [aux_sym_def_type_statement_token12] = ACTIONS(4451), + [aux_sym_def_type_statement_token13] = ACTIONS(4451), + [aux_sym_def_type_statement_token14] = ACTIONS(4451), + [aux_sym_comparison_operator_token1] = ACTIONS(4451), + [sym_number_literal] = ACTIONS(4453), + }, + [STATE(7330)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(11227), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11229), + [anon_sym_SLASH] = ACTIONS(11227), + [anon_sym_BSLASH] = ACTIONS(11231), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11233), + [anon_sym_PLUS] = ACTIONS(11235), + [anon_sym_DASH] = ACTIONS(11237), + [anon_sym_AMP] = ACTIONS(11239), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(11241), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7331)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11229), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7332)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(4483), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11229), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_BSLASH] = ACTIONS(4483), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7333)] = { + [ts_builtin_sym_end] = ACTIONS(4619), + [sym_identifier] = ACTIONS(4617), + [sym_newline] = ACTIONS(4619), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4617), + [aux_sym_frm_begin_block_token1] = ACTIONS(4617), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4617), + [aux_sym_frm_property_statement_token1] = ACTIONS(4617), + [anon_sym_EQ] = ACTIONS(4619), + [aux_sym_attribute_statement_token1] = ACTIONS(4617), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_BANG] = ACTIONS(4619), + [aux_sym_option_statement_token1] = ACTIONS(4617), + [aux_sym_option_statement_token3] = ACTIONS(4617), + [aux_sym_implements_statement_token1] = ACTIONS(4617), + [aux_sym_type_declaration_token1] = ACTIONS(4617), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4619), + [aux_sym_enum_declaration_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4617), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4617), + [aux_sym_declare_function_statement_token1] = ACTIONS(4617), + [aux_sym_preprocessor_const_token1] = ACTIONS(4619), + [aux_sym__property_get_header_token1] = ACTIONS(4617), + [aux_sym_event_declaration_token1] = ACTIONS(4617), + [sym_static_modifier] = ACTIONS(4617), + [sym__dim_keyword] = ACTIONS(4617), + [anon_sym_COMMA] = ACTIONS(4619), + [aux_sym_const_declaration_token1] = ACTIONS(4617), + [anon_sym_STAR] = ACTIONS(11227), + [aux_sym_visibility_token1] = ACTIONS(4617), + [aux_sym_visibility_token2] = ACTIONS(4617), + [aux_sym_case_expression_token1] = ACTIONS(4617), + [anon_sym_LT] = ACTIONS(4617), + [anon_sym_LT_EQ] = ACTIONS(4619), + [anon_sym_GT] = ACTIONS(4617), + [anon_sym_GT_EQ] = ACTIONS(4619), + [anon_sym_LT_GT] = ACTIONS(4619), + [anon_sym_CARET] = ACTIONS(11229), + [anon_sym_SLASH] = ACTIONS(11227), + [anon_sym_BSLASH] = ACTIONS(11231), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11233), + [anon_sym_PLUS] = ACTIONS(11235), + [anon_sym_DASH] = ACTIONS(11237), + [anon_sym_AMP] = ACTIONS(11239), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4617), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token1] = ACTIONS(4617), + [aux_sym_def_type_statement_token2] = ACTIONS(4617), + [aux_sym_def_type_statement_token3] = ACTIONS(4617), + [aux_sym_def_type_statement_token4] = ACTIONS(4617), + [aux_sym_def_type_statement_token5] = ACTIONS(4617), + [aux_sym_def_type_statement_token6] = ACTIONS(4617), + [aux_sym_def_type_statement_token7] = ACTIONS(4617), + [aux_sym_def_type_statement_token8] = ACTIONS(4617), + [aux_sym_def_type_statement_token9] = ACTIONS(4617), + [aux_sym_def_type_statement_token10] = ACTIONS(4617), + [aux_sym_def_type_statement_token11] = ACTIONS(4617), + [aux_sym_def_type_statement_token12] = ACTIONS(4617), + [aux_sym_def_type_statement_token13] = ACTIONS(4617), + [aux_sym_def_type_statement_token14] = ACTIONS(4617), + [aux_sym_comparison_operator_token1] = ACTIONS(4617), + [sym_number_literal] = ACTIONS(4619), + }, + [STATE(7334)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(11227), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11229), + [anon_sym_SLASH] = ACTIONS(11227), + [anon_sym_BSLASH] = ACTIONS(11231), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7335)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(11227), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11229), + [anon_sym_SLASH] = ACTIONS(11227), + [anon_sym_BSLASH] = ACTIONS(11231), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11233), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4481), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7336)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(11227), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11229), + [anon_sym_SLASH] = ACTIONS(11227), + [anon_sym_BSLASH] = ACTIONS(11231), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11233), + [anon_sym_PLUS] = ACTIONS(11235), + [anon_sym_DASH] = ACTIONS(11237), + [anon_sym_AMP] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7337)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(11227), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11229), + [anon_sym_SLASH] = ACTIONS(11227), + [anon_sym_BSLASH] = ACTIONS(11231), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11233), + [anon_sym_PLUS] = ACTIONS(11235), + [anon_sym_DASH] = ACTIONS(11237), + [anon_sym_AMP] = ACTIONS(11239), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(4481), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, + [STATE(7338)] = { + [ts_builtin_sym_end] = ACTIONS(4483), + [sym_identifier] = ACTIONS(4481), + [sym_newline] = ACTIONS(4483), + [sym_line_continuation] = ACTIONS(3), + [sym_comment] = ACTIONS(5), + [aux_sym_frm_version_statement_token1] = ACTIONS(4481), + [aux_sym_frm_begin_block_token1] = ACTIONS(4481), + [aux_sym_frm_begin_property_block_token1] = ACTIONS(4481), + [aux_sym_frm_property_statement_token1] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4483), + [aux_sym_attribute_statement_token1] = ACTIONS(4481), + [anon_sym_DOT] = ACTIONS(4481), + [anon_sym_BANG] = ACTIONS(4483), + [aux_sym_option_statement_token1] = ACTIONS(4481), + [aux_sym_option_statement_token3] = ACTIONS(4481), + [aux_sym_implements_statement_token1] = ACTIONS(4481), + [aux_sym_type_declaration_token1] = ACTIONS(4481), + [aux_sym_type_preprocessor_if_token1] = ACTIONS(4483), + [aux_sym_enum_declaration_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token1] = ACTIONS(4481), + [aux_sym_declare_sub_statement_token2] = ACTIONS(4481), + [aux_sym_declare_function_statement_token1] = ACTIONS(4481), + [aux_sym_preprocessor_const_token1] = ACTIONS(4483), + [aux_sym__property_get_header_token1] = ACTIONS(4481), + [aux_sym_event_declaration_token1] = ACTIONS(4481), + [sym_static_modifier] = ACTIONS(4481), + [sym__dim_keyword] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4483), + [aux_sym_const_declaration_token1] = ACTIONS(4481), + [anon_sym_STAR] = ACTIONS(11227), + [aux_sym_visibility_token1] = ACTIONS(4481), + [aux_sym_visibility_token2] = ACTIONS(4481), + [aux_sym_case_expression_token1] = ACTIONS(4481), + [anon_sym_LT] = ACTIONS(4481), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_LT_GT] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(11229), + [anon_sym_SLASH] = ACTIONS(11227), + [anon_sym_BSLASH] = ACTIONS(11231), + [aux_sym__print_output_call_binary_expression_token1] = ACTIONS(11233), + [anon_sym_PLUS] = ACTIONS(11235), + [anon_sym_DASH] = ACTIONS(11237), + [anon_sym_AMP] = ACTIONS(11239), + [aux_sym__print_output_call_binary_expression_token2] = ACTIONS(11241), + [aux_sym__print_output_call_binary_expression_token3] = ACTIONS(11243), + [aux_sym__print_output_call_binary_expression_token4] = ACTIONS(11245), + [aux_sym__print_output_call_binary_expression_token5] = ACTIONS(11247), + [aux_sym__print_output_call_binary_expression_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token1] = ACTIONS(4481), + [aux_sym_def_type_statement_token2] = ACTIONS(4481), + [aux_sym_def_type_statement_token3] = ACTIONS(4481), + [aux_sym_def_type_statement_token4] = ACTIONS(4481), + [aux_sym_def_type_statement_token5] = ACTIONS(4481), + [aux_sym_def_type_statement_token6] = ACTIONS(4481), + [aux_sym_def_type_statement_token7] = ACTIONS(4481), + [aux_sym_def_type_statement_token8] = ACTIONS(4481), + [aux_sym_def_type_statement_token9] = ACTIONS(4481), + [aux_sym_def_type_statement_token10] = ACTIONS(4481), + [aux_sym_def_type_statement_token11] = ACTIONS(4481), + [aux_sym_def_type_statement_token12] = ACTIONS(4481), + [aux_sym_def_type_statement_token13] = ACTIONS(4481), + [aux_sym_def_type_statement_token14] = ACTIONS(4481), + [aux_sym_comparison_operator_token1] = ACTIONS(4481), + [sym_number_literal] = ACTIONS(4483), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11251), 1, + anon_sym_DOT, + STATE(7342), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4371), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4369), 43, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [74] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11253), 1, + anon_sym_DOT, + ACTIONS(11255), 1, + anon_sym_BANG, + ACTIONS(11257), 1, + anon_sym_LPAREN, + STATE(7356), 1, + sym_argument_list, + ACTIONS(4344), 12, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4342), 43, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [152] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11259), 1, + anon_sym_DOT, + STATE(7341), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4364), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4362), 43, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [226] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + STATE(7341), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4377), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4375), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [298] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4599), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4597), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [367] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4371), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4369), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [436] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11262), 1, + anon_sym_CARET, + ACTIONS(4483), 13, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4481), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [507] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4603), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4601), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [576] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11262), 1, + anon_sym_CARET, + ACTIONS(4483), 13, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4481), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [647] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4449), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4447), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [716] = 12, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11262), 1, + anon_sym_CARET, + ACTIONS(11266), 1, + anon_sym_BSLASH, + ACTIONS(11268), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11270), 1, + anon_sym_PLUS, + ACTIONS(11272), 1, + anon_sym_DASH, + ACTIONS(11274), 1, + anon_sym_AMP, + ACTIONS(11276), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11264), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 9, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4481), 40, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [801] = 16, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11262), 1, + anon_sym_CARET, + ACTIONS(11266), 1, + anon_sym_BSLASH, + ACTIONS(11268), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11270), 1, + anon_sym_PLUS, + ACTIONS(11272), 1, + anon_sym_DASH, + ACTIONS(11274), 1, + anon_sym_AMP, + ACTIONS(11276), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11278), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(11280), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(11282), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(11284), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(11264), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4453), 9, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4451), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [894] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4002), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4006), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [963] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11262), 1, + anon_sym_CARET, + ACTIONS(11266), 1, + anon_sym_BSLASH, + ACTIONS(11268), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11270), 1, + anon_sym_PLUS, + ACTIONS(11272), 1, + anon_sym_DASH, + ACTIONS(11274), 1, + anon_sym_AMP, + ACTIONS(11264), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 9, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4481), 41, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [1046] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11262), 1, + anon_sym_CARET, + ACTIONS(11266), 1, + anon_sym_BSLASH, + ACTIONS(11268), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11264), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 10, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4481), 43, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [1123] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4479), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4477), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [1192] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11262), 1, + anon_sym_CARET, + ACTIONS(11264), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 11, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4481), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [1265] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4519), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4517), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [1334] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11205), 1, + anon_sym_CARET, + ACTIONS(11207), 1, + anon_sym_BSLASH, + ACTIONS(11209), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11211), 1, + anon_sym_PLUS, + ACTIONS(11213), 1, + anon_sym_DASH, + ACTIONS(11215), 1, + anon_sym_AMP, + ACTIONS(11203), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4619), 9, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4617), 41, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [1417] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11262), 1, + anon_sym_CARET, + ACTIONS(11266), 1, + anon_sym_BSLASH, + ACTIONS(11268), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11270), 1, + anon_sym_PLUS, + ACTIONS(11272), 1, + anon_sym_DASH, + ACTIONS(11274), 1, + anon_sym_AMP, + ACTIONS(11264), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4649), 9, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4647), 41, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [1500] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11262), 1, + anon_sym_CARET, + ACTIONS(4443), 13, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4441), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [1571] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11262), 1, + anon_sym_CARET, + ACTIONS(11266), 1, + anon_sym_BSLASH, + ACTIONS(11268), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11270), 1, + anon_sym_PLUS, + ACTIONS(11272), 1, + anon_sym_DASH, + ACTIONS(11274), 1, + anon_sym_AMP, + ACTIONS(11276), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11278), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(11264), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 9, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4481), 39, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [1658] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4595), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4593), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [1727] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11262), 1, + anon_sym_CARET, + ACTIONS(11266), 1, + anon_sym_BSLASH, + ACTIONS(11268), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11270), 1, + anon_sym_PLUS, + ACTIONS(11272), 1, + anon_sym_DASH, + ACTIONS(11274), 1, + anon_sym_AMP, + ACTIONS(11276), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11278), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(11280), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(11282), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(11264), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 9, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4481), 37, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [1818] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4399), 1, + anon_sym_LPAREN, + ACTIONS(11253), 1, + anon_sym_DOT, + ACTIONS(11255), 1, + anon_sym_BANG, + ACTIONS(4344), 12, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4342), 43, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [1893] = 16, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11262), 1, + anon_sym_CARET, + ACTIONS(11266), 1, + anon_sym_BSLASH, + ACTIONS(11268), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11270), 1, + anon_sym_PLUS, + ACTIONS(11272), 1, + anon_sym_DASH, + ACTIONS(11274), 1, + anon_sym_AMP, + ACTIONS(11276), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11278), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(11280), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(11282), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(11284), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(11264), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5777), 9, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(5775), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [1986] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4487), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4485), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [2055] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3986), 1, + anon_sym_LPAREN, + ACTIONS(4002), 13, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4006), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [2126] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4439), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4437), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [2195] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11262), 1, + anon_sym_CARET, + ACTIONS(11266), 1, + anon_sym_BSLASH, + ACTIONS(11268), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11270), 1, + anon_sym_PLUS, + ACTIONS(11272), 1, + anon_sym_DASH, + ACTIONS(11274), 1, + anon_sym_AMP, + ACTIONS(11276), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11278), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(11280), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(11264), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 9, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4481), 38, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [2284] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4619), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4617), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [2353] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4591), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4589), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [2422] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11262), 1, + anon_sym_CARET, + ACTIONS(11266), 1, + anon_sym_BSLASH, + ACTIONS(11264), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 10, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4481), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [2497] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11262), 1, + anon_sym_CARET, + ACTIONS(11266), 1, + anon_sym_BSLASH, + ACTIONS(11268), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11270), 1, + anon_sym_PLUS, + ACTIONS(11272), 1, + anon_sym_DASH, + ACTIONS(11264), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 9, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4481), 42, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [2578] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4615), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4613), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [2647] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4623), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4621), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [2716] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4611), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4609), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [2785] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4627), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4625), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [2854] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4364), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4362), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [2923] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4607), 14, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4605), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [2992] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(4439), 12, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4437), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [3062] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(11253), 1, + anon_sym_DOT, + ACTIONS(11255), 1, + anon_sym_BANG, + ACTIONS(4344), 11, + ts_builtin_sym_end, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4342), 43, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [3136] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(4002), 12, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4006), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [3206] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11288), 1, + anon_sym_CARET, + ACTIONS(11286), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 9, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4481), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [3277] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11288), 1, + anon_sym_CARET, + ACTIONS(11290), 1, + anon_sym_BSLASH, + ACTIONS(11292), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11294), 1, + anon_sym_PLUS, + ACTIONS(11296), 1, + anon_sym_DASH, + ACTIONS(11298), 1, + anon_sym_AMP, + ACTIONS(11286), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(4481), 41, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [3358] = 12, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11288), 1, + anon_sym_CARET, + ACTIONS(11290), 1, + anon_sym_BSLASH, + ACTIONS(11292), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11294), 1, + anon_sym_PLUS, + ACTIONS(11296), 1, + anon_sym_DASH, + ACTIONS(11298), 1, + anon_sym_AMP, + ACTIONS(11300), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11286), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(4481), 40, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [3441] = 16, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_CARET, + ACTIONS(11306), 1, + anon_sym_BSLASH, + ACTIONS(11308), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11310), 1, + anon_sym_PLUS, + ACTIONS(11312), 1, + anon_sym_DASH, + ACTIONS(11314), 1, + anon_sym_AMP, + ACTIONS(11316), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11318), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(11320), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(11322), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(11324), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(11302), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5777), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(5775), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [3532] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11288), 1, + anon_sym_CARET, + ACTIONS(4483), 11, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4481), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [3601] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11288), 1, + anon_sym_CARET, + ACTIONS(4483), 11, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4481), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [3670] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11288), 1, + anon_sym_CARET, + ACTIONS(11290), 1, + anon_sym_BSLASH, + ACTIONS(11292), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11294), 1, + anon_sym_PLUS, + ACTIONS(11296), 1, + anon_sym_DASH, + ACTIONS(11298), 1, + anon_sym_AMP, + ACTIONS(11300), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11326), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(11286), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(4481), 39, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [3755] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11288), 1, + anon_sym_CARET, + ACTIONS(11290), 1, + anon_sym_BSLASH, + ACTIONS(11292), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11294), 1, + anon_sym_PLUS, + ACTIONS(11296), 1, + anon_sym_DASH, + ACTIONS(11298), 1, + anon_sym_AMP, + ACTIONS(11300), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11326), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(11328), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(11286), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(4481), 38, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [3842] = 16, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11229), 1, + anon_sym_CARET, + ACTIONS(11231), 1, + anon_sym_BSLASH, + ACTIONS(11233), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11235), 1, + anon_sym_PLUS, + ACTIONS(11237), 1, + anon_sym_DASH, + ACTIONS(11239), 1, + anon_sym_AMP, + ACTIONS(11241), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11243), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(11245), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(11247), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(11249), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(11227), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6119), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(6117), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [3933] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11288), 1, + anon_sym_CARET, + ACTIONS(11290), 1, + anon_sym_BSLASH, + ACTIONS(11292), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11294), 1, + anon_sym_PLUS, + ACTIONS(11296), 1, + anon_sym_DASH, + ACTIONS(11298), 1, + anon_sym_AMP, + ACTIONS(11300), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11326), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(11328), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(11330), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(11286), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(4481), 37, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [4022] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11288), 1, + anon_sym_CARET, + ACTIONS(11290), 1, + anon_sym_BSLASH, + ACTIONS(11286), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 8, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4481), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [4095] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_CARET, + ACTIONS(4443), 11, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4441), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [4164] = 16, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_CARET, + ACTIONS(11306), 1, + anon_sym_BSLASH, + ACTIONS(11308), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11310), 1, + anon_sym_PLUS, + ACTIONS(11312), 1, + anon_sym_DASH, + ACTIONS(11314), 1, + anon_sym_AMP, + ACTIONS(11316), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11318), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(11320), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(11322), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(11324), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(11302), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4453), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4451), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [4255] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_CARET, + ACTIONS(4483), 11, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4481), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [4324] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_CARET, + ACTIONS(4483), 11, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4481), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [4393] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_CARET, + ACTIONS(11302), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 9, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4481), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [4464] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_CARET, + ACTIONS(11306), 1, + anon_sym_BSLASH, + ACTIONS(11302), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 8, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4481), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [4537] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_CARET, + ACTIONS(11306), 1, + anon_sym_BSLASH, + ACTIONS(11308), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11302), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 8, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4481), 43, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [4612] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_CARET, + ACTIONS(11306), 1, + anon_sym_BSLASH, + ACTIONS(11308), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11310), 1, + anon_sym_PLUS, + ACTIONS(11312), 1, + anon_sym_DASH, + ACTIONS(11302), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4481), 42, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [4691] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_CARET, + ACTIONS(11306), 1, + anon_sym_BSLASH, + ACTIONS(11308), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11310), 1, + anon_sym_PLUS, + ACTIONS(11312), 1, + anon_sym_DASH, + ACTIONS(11314), 1, + anon_sym_AMP, + ACTIONS(11302), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4481), 41, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [4772] = 12, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_CARET, + ACTIONS(11306), 1, + anon_sym_BSLASH, + ACTIONS(11308), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11310), 1, + anon_sym_PLUS, + ACTIONS(11312), 1, + anon_sym_DASH, + ACTIONS(11314), 1, + anon_sym_AMP, + ACTIONS(11316), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11302), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4481), 40, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [4855] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_CARET, + ACTIONS(11306), 1, + anon_sym_BSLASH, + ACTIONS(11308), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11310), 1, + anon_sym_PLUS, + ACTIONS(11312), 1, + anon_sym_DASH, + ACTIONS(11314), 1, + anon_sym_AMP, + ACTIONS(11316), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11318), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(11302), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4481), 39, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [4940] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_CARET, + ACTIONS(11306), 1, + anon_sym_BSLASH, + ACTIONS(11308), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11310), 1, + anon_sym_PLUS, + ACTIONS(11312), 1, + anon_sym_DASH, + ACTIONS(11314), 1, + anon_sym_AMP, + ACTIONS(11316), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11318), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(11320), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(11302), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4481), 38, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [5027] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11288), 1, + anon_sym_CARET, + ACTIONS(11290), 1, + anon_sym_BSLASH, + ACTIONS(11292), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11294), 1, + anon_sym_PLUS, + ACTIONS(11296), 1, + anon_sym_DASH, + ACTIONS(11298), 1, + anon_sym_AMP, + ACTIONS(11286), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4649), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(4647), 41, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [5108] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_CARET, + ACTIONS(11306), 1, + anon_sym_BSLASH, + ACTIONS(11308), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11310), 1, + anon_sym_PLUS, + ACTIONS(11312), 1, + anon_sym_DASH, + ACTIONS(11314), 1, + anon_sym_AMP, + ACTIONS(11316), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11318), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(11320), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(11322), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(11302), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4481), 37, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [5197] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11304), 1, + anon_sym_CARET, + ACTIONS(11306), 1, + anon_sym_BSLASH, + ACTIONS(11308), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11310), 1, + anon_sym_PLUS, + ACTIONS(11312), 1, + anon_sym_DASH, + ACTIONS(11314), 1, + anon_sym_AMP, + ACTIONS(11302), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4649), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4647), 41, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [5278] = 16, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11288), 1, + anon_sym_CARET, + ACTIONS(11290), 1, + anon_sym_BSLASH, + ACTIONS(11292), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11294), 1, + anon_sym_PLUS, + ACTIONS(11296), 1, + anon_sym_DASH, + ACTIONS(11298), 1, + anon_sym_AMP, + ACTIONS(11300), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11326), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(11328), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(11330), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(11332), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(11286), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4649), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(4647), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [5369] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11288), 1, + anon_sym_CARET, + ACTIONS(11290), 1, + anon_sym_BSLASH, + ACTIONS(11292), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11286), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 8, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4481), 43, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [5444] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11288), 1, + anon_sym_CARET, + ACTIONS(4443), 11, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4441), 44, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [5513] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11229), 1, + anon_sym_CARET, + ACTIONS(11231), 1, + anon_sym_BSLASH, + ACTIONS(11233), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11235), 1, + anon_sym_PLUS, + ACTIONS(11237), 1, + anon_sym_DASH, + ACTIONS(11239), 1, + anon_sym_AMP, + ACTIONS(11227), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4619), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(4617), 41, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [5594] = 16, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11288), 1, + anon_sym_CARET, + ACTIONS(11290), 1, + anon_sym_BSLASH, + ACTIONS(11292), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11294), 1, + anon_sym_PLUS, + ACTIONS(11296), 1, + anon_sym_DASH, + ACTIONS(11298), 1, + anon_sym_AMP, + ACTIONS(11300), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11326), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(11328), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(11330), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(11332), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(11286), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4453), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(4451), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [5685] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11288), 1, + anon_sym_CARET, + ACTIONS(11290), 1, + anon_sym_BSLASH, + ACTIONS(11292), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11294), 1, + anon_sym_PLUS, + ACTIONS(11296), 1, + anon_sym_DASH, + ACTIONS(11286), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(4481), 42, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [5764] = 16, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11229), 1, + anon_sym_CARET, + ACTIONS(11231), 1, + anon_sym_BSLASH, + ACTIONS(11233), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(11235), 1, + anon_sym_PLUS, + ACTIONS(11237), 1, + anon_sym_DASH, + ACTIONS(11239), 1, + anon_sym_AMP, + ACTIONS(11241), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(11243), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(11245), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(11247), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(11249), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(11227), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6623), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(6621), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [5854] = 18, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(41), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(43), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(47), 1, + aux_sym__property_get_header_token1, + ACTIONS(11338), 1, + anon_sym_COLON, + ACTIONS(11342), 1, + sym_static_modifier, + STATE(12170), 1, + sym_visibility, + STATE(12617), 1, + sym__sub_header, + STATE(12766), 1, + sym__property_let_header, + STATE(12889), 1, + sym__property_set_header, + STATE(13006), 1, + sym__procedure_modifier, + STATE(13075), 1, + sym__function_header, + STATE(13077), 1, + sym__property_get_header, + ACTIONS(11340), 3, + aux_sym_option_statement_token3, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + STATE(7952), 5, + sym_sub_declaration, + sym_function_declaration, + sym_property_get_declaration, + sym_property_let_declaration, + sym_property_set_declaration, + ACTIONS(11334), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11336), 29, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_event_declaration_token1, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [5948] = 17, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(41), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(43), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(47), 1, + aux_sym__property_get_header_token1, + ACTIONS(11342), 1, + sym_static_modifier, + STATE(12170), 1, + sym_visibility, + STATE(12617), 1, + sym__sub_header, + STATE(12766), 1, + sym__property_let_header, + STATE(12889), 1, + sym__property_set_header, + STATE(13006), 1, + sym__procedure_modifier, + STATE(13075), 1, + sym__function_header, + STATE(13077), 1, + sym__property_get_header, + ACTIONS(11340), 3, + aux_sym_option_statement_token3, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + STATE(7987), 5, + sym_sub_declaration, + sym_function_declaration, + sym_property_get_declaration, + sym_property_let_declaration, + sym_property_set_declaration, + ACTIONS(11344), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11346), 29, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_event_declaration_token1, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [6039] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3986), 1, + anon_sym_COLON, + ACTIONS(3989), 1, + aux_sym_else_fragment_token1, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3996), 1, + aux_sym_byval_modifier_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(3994), 2, + anon_sym_EQ, + anon_sym_COMMA, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11348), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11350), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + ACTIONS(4002), 4, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + ACTIONS(4006), 7, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + STATE(10827), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [6156] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3986), 1, + anon_sym_COLON, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3996), 1, + aux_sym_byval_modifier_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(3994), 2, + anon_sym_EQ, + anon_sym_COMMA, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11348), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11350), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + ACTIONS(4002), 4, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + ACTIONS(4006), 7, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + STATE(10827), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [6270] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4028), 1, + anon_sym_COLON, + ACTIONS(4030), 1, + aux_sym_else_fragment_token1, + ACTIONS(4034), 1, + anon_sym_EQ, + ACTIONS(11352), 1, + sym_identifier, + ACTIONS(11354), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11360), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11362), 1, + anon_sym_COMMA, + ACTIONS(11364), 1, + anon_sym_LPAREN, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10386), 1, + sym_argument_list, + STATE(11402), 1, + sym__comparison_operand, + STATE(12413), 1, + sym_unparenthesized_argument_list, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10484), 2, + sym__expression, + sym_unary_expression, + STATE(11716), 2, + sym_comparison_expression, + sym_logical_value_expression, + STATE(12414), 2, + sym__unparenthesized_argument_sequence, + sym__omitted_argument_sequence, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11667), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [6398] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11388), 1, + anon_sym_RPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11702), 1, + sym_comparison_expression, + STATE(11997), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(15082), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10732), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [6525] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11400), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11709), 1, + sym_comparison_expression, + STATE(11905), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14577), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10714), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [6652] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11402), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11727), 1, + sym_comparison_expression, + STATE(12025), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14627), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10716), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [6779] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11404), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11709), 1, + sym_comparison_expression, + STATE(11905), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(15199), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10714), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [6906] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11406), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11718), 1, + sym_comparison_expression, + STATE(11927), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14407), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10704), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [7033] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11408), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11709), 1, + sym_comparison_expression, + STATE(11905), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13806), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10714), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [7160] = 41, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4094), 1, + anon_sym_COLON, + ACTIONS(4096), 1, + aux_sym_else_fragment_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11410), 1, + sym_identifier, + ACTIONS(11412), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11414), 1, + anon_sym_LPAREN, + ACTIONS(11416), 1, + aux_sym_dotted_type_expression_token1, + STATE(10108), 1, + sym__print_output_call_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10160), 1, + sym_member_expression, + STATE(10270), 1, + sym_binary_expression, + STATE(10291), 1, + sym_call_expression, + STATE(10407), 1, + sym__print_output_call_expression, + STATE(10487), 1, + sym_unary_expression, + STATE(10984), 1, + sym__print_output_call_operand, + STATE(10986), 1, + sym__expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11704), 1, + sym_comparison_expression, + STATE(11731), 1, + sym_logical_value_expression, + STATE(12087), 1, + sym__print_output_member_comparison_expression, + STATE(12418), 1, + sym__print_method_output_list, + STATE(12421), 1, + sym_argument_list, + STATE(13567), 1, + sym__print_output_qualified_callable, + STATE(13570), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10077), 2, + sym__primary_expression, + sym_parenthesized_expression, + STATE(11695), 2, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + ACTIONS(11418), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11420), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10251), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [7297] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11422), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11709), 1, + sym_comparison_expression, + STATE(11905), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14551), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10714), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [7424] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11424), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11696), 1, + sym_comparison_expression, + STATE(11923), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(15204), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10718), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [7551] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11426), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11709), 1, + sym_comparison_expression, + STATE(11905), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13715), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10714), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [7678] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11428), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11732), 1, + sym_comparison_expression, + STATE(11737), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(15076), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10731), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [7805] = 35, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4028), 1, + anon_sym_COLON, + ACTIONS(4034), 1, + anon_sym_EQ, + ACTIONS(11352), 1, + sym_identifier, + ACTIONS(11354), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11360), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11364), 1, + anon_sym_LPAREN, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11430), 1, + anon_sym_COMMA, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10386), 1, + sym_argument_list, + STATE(11402), 1, + sym__comparison_operand, + STATE(12413), 1, + sym_unparenthesized_argument_list, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10484), 2, + sym__expression, + sym_unary_expression, + STATE(11716), 2, + sym_comparison_expression, + sym_logical_value_expression, + STATE(12414), 2, + sym__unparenthesized_argument_sequence, + sym__omitted_argument_sequence, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11868), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [7930] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11432), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11722), 1, + sym_comparison_expression, + STATE(11992), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13858), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10720), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [8057] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11434), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11709), 1, + sym_comparison_expression, + STATE(11905), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13998), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10714), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [8184] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11436), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11709), 1, + sym_comparison_expression, + STATE(11905), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(15115), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10714), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [8311] = 41, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4072), 1, + anon_sym_COLON, + ACTIONS(4074), 1, + aux_sym_else_fragment_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11410), 1, + sym_identifier, + ACTIONS(11412), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11416), 1, + aux_sym_dotted_type_expression_token1, + STATE(10077), 1, + sym__primary_expression, + STATE(10108), 1, + sym__print_output_call_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10160), 1, + sym_member_expression, + STATE(10252), 1, + sym_parenthesized_expression, + STATE(10270), 1, + sym_binary_expression, + STATE(10291), 1, + sym_call_expression, + STATE(10407), 1, + sym__print_output_call_expression, + STATE(10487), 1, + sym_unary_expression, + STATE(10984), 1, + sym__print_output_call_operand, + STATE(10986), 1, + sym__expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11704), 1, + sym_comparison_expression, + STATE(11731), 1, + sym_logical_value_expression, + STATE(12087), 1, + sym__print_output_member_comparison_expression, + STATE(12895), 1, + sym_output_list, + STATE(13567), 1, + sym__print_output_qualified_callable, + STATE(13570), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11418), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11420), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11688), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(10251), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [8448] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11438), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11663), 1, + sym_comparison_expression, + STATE(12046), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13883), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10712), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [8575] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11432), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11709), 1, + sym_comparison_expression, + STATE(11905), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13858), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10714), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [8702] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11440), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11709), 1, + sym_comparison_expression, + STATE(11905), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14440), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10714), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [8829] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11442), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11715), 1, + sym_comparison_expression, + STATE(11775), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13683), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10699), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [8956] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11444), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11709), 1, + sym_comparison_expression, + STATE(11905), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14731), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10714), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [9083] = 41, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4086), 1, + anon_sym_COLON, + ACTIONS(4088), 1, + aux_sym_else_fragment_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11410), 1, + sym_identifier, + ACTIONS(11412), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11416), 1, + aux_sym_dotted_type_expression_token1, + STATE(10077), 1, + sym__primary_expression, + STATE(10108), 1, + sym__print_output_call_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10160), 1, + sym_member_expression, + STATE(10252), 1, + sym_parenthesized_expression, + STATE(10270), 1, + sym_binary_expression, + STATE(10291), 1, + sym_call_expression, + STATE(10407), 1, + sym__print_output_call_expression, + STATE(10487), 1, + sym_unary_expression, + STATE(10984), 1, + sym__print_output_call_operand, + STATE(10986), 1, + sym__expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11704), 1, + sym_comparison_expression, + STATE(11731), 1, + sym_logical_value_expression, + STATE(12087), 1, + sym__print_output_member_comparison_expression, + STATE(12585), 1, + sym_output_list, + STATE(13567), 1, + sym__print_output_qualified_callable, + STATE(13570), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11418), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11420), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11688), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(10251), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [9220] = 41, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4090), 1, + anon_sym_COLON, + ACTIONS(4092), 1, + aux_sym_else_fragment_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11410), 1, + sym_identifier, + ACTIONS(11412), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11416), 1, + aux_sym_dotted_type_expression_token1, + STATE(10077), 1, + sym__primary_expression, + STATE(10108), 1, + sym__print_output_call_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10160), 1, + sym_member_expression, + STATE(10252), 1, + sym_parenthesized_expression, + STATE(10270), 1, + sym_binary_expression, + STATE(10291), 1, + sym_call_expression, + STATE(10407), 1, + sym__print_output_call_expression, + STATE(10487), 1, + sym_unary_expression, + STATE(10984), 1, + sym__print_output_call_operand, + STATE(10986), 1, + sym__expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11704), 1, + sym_comparison_expression, + STATE(11731), 1, + sym_logical_value_expression, + STATE(12087), 1, + sym__print_output_member_comparison_expression, + STATE(12594), 1, + sym_output_list, + STATE(13567), 1, + sym__print_output_qualified_callable, + STATE(13570), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11418), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11420), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11688), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(10251), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [9357] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11446), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11687), 1, + sym_comparison_expression, + STATE(11778), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14439), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10693), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [9484] = 36, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11448), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(11730), 1, + sym_comparison_expression, + STATE(11999), 1, + sym_condition_binary_expression, + STATE(12242), 1, + sym_logical_value_expression, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13965), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10729), 2, + sym__expression, + sym_unary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [9611] = 40, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4090), 1, + anon_sym_COLON, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11410), 1, + sym_identifier, + ACTIONS(11412), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11416), 1, + aux_sym_dotted_type_expression_token1, + STATE(10077), 1, + sym__primary_expression, + STATE(10108), 1, + sym__print_output_call_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10160), 1, + sym_member_expression, + STATE(10252), 1, + sym_parenthesized_expression, + STATE(10270), 1, + sym_binary_expression, + STATE(10291), 1, + sym_call_expression, + STATE(10407), 1, + sym__print_output_call_expression, + STATE(10487), 1, + sym_unary_expression, + STATE(10984), 1, + sym__print_output_call_operand, + STATE(10986), 1, + sym__expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11704), 1, + sym_comparison_expression, + STATE(11731), 1, + sym_logical_value_expression, + STATE(12087), 1, + sym__print_output_member_comparison_expression, + STATE(12594), 1, + sym_output_list, + STATE(13567), 1, + sym__print_output_qualified_callable, + STATE(13570), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11418), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11420), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11953), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(10251), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [9745] = 40, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4112), 1, + anon_sym_COLON, + ACTIONS(4114), 1, + aux_sym_else_fragment_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11410), 1, + sym_identifier, + ACTIONS(11412), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11416), 1, + aux_sym_dotted_type_expression_token1, + STATE(10077), 1, + sym__primary_expression, + STATE(10108), 1, + sym__print_output_call_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10160), 1, + sym_member_expression, + STATE(10252), 1, + sym_parenthesized_expression, + STATE(10270), 1, + sym_binary_expression, + STATE(10291), 1, + sym_call_expression, + STATE(10407), 1, + sym__print_output_call_expression, + STATE(10487), 1, + sym_unary_expression, + STATE(10984), 1, + sym__print_output_call_operand, + STATE(10986), 1, + sym__expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11704), 1, + sym_comparison_expression, + STATE(11731), 1, + sym_logical_value_expression, + STATE(12087), 1, + sym__print_output_member_comparison_expression, + STATE(13567), 1, + sym__print_output_qualified_callable, + STATE(13570), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11418), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11420), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12130), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(10251), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [9879] = 40, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4086), 1, + anon_sym_COLON, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11410), 1, + sym_identifier, + ACTIONS(11412), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11416), 1, + aux_sym_dotted_type_expression_token1, + STATE(10077), 1, + sym__primary_expression, + STATE(10108), 1, + sym__print_output_call_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10160), 1, + sym_member_expression, + STATE(10252), 1, + sym_parenthesized_expression, + STATE(10270), 1, + sym_binary_expression, + STATE(10291), 1, + sym_call_expression, + STATE(10407), 1, + sym__print_output_call_expression, + STATE(10487), 1, + sym_unary_expression, + STATE(10984), 1, + sym__print_output_call_operand, + STATE(10986), 1, + sym__expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11704), 1, + sym_comparison_expression, + STATE(11731), 1, + sym_logical_value_expression, + STATE(12087), 1, + sym__print_output_member_comparison_expression, + STATE(12585), 1, + sym_output_list, + STATE(13567), 1, + sym__print_output_qualified_callable, + STATE(13570), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11418), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11420), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11953), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(10251), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [10013] = 40, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4100), 1, + anon_sym_COLON, + ACTIONS(4102), 1, + aux_sym_else_fragment_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11410), 1, + sym_identifier, + ACTIONS(11412), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11416), 1, + aux_sym_dotted_type_expression_token1, + STATE(10077), 1, + sym__primary_expression, + STATE(10108), 1, + sym__print_output_call_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10160), 1, + sym_member_expression, + STATE(10252), 1, + sym_parenthesized_expression, + STATE(10270), 1, + sym_binary_expression, + STATE(10291), 1, + sym_call_expression, + STATE(10407), 1, + sym__print_output_call_expression, + STATE(10487), 1, + sym_unary_expression, + STATE(10984), 1, + sym__print_output_call_operand, + STATE(10986), 1, + sym__expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11704), 1, + sym_comparison_expression, + STATE(11731), 1, + sym_logical_value_expression, + STATE(12087), 1, + sym__print_output_member_comparison_expression, + STATE(13567), 1, + sym__print_output_qualified_callable, + STATE(13570), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11418), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11420), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12130), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(10251), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [10147] = 40, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4072), 1, + anon_sym_COLON, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11410), 1, + sym_identifier, + ACTIONS(11412), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11416), 1, + aux_sym_dotted_type_expression_token1, + STATE(10077), 1, + sym__primary_expression, + STATE(10108), 1, + sym__print_output_call_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10160), 1, + sym_member_expression, + STATE(10252), 1, + sym_parenthesized_expression, + STATE(10270), 1, + sym_binary_expression, + STATE(10291), 1, + sym_call_expression, + STATE(10407), 1, + sym__print_output_call_expression, + STATE(10487), 1, + sym_unary_expression, + STATE(10984), 1, + sym__print_output_call_operand, + STATE(10986), 1, + sym__expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11704), 1, + sym_comparison_expression, + STATE(11731), 1, + sym_logical_value_expression, + STATE(12087), 1, + sym__print_output_member_comparison_expression, + STATE(12895), 1, + sym_output_list, + STATE(13567), 1, + sym__print_output_qualified_callable, + STATE(13570), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11418), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11420), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11953), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(10251), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [10281] = 40, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4108), 1, + anon_sym_COLON, + ACTIONS(4110), 1, + aux_sym_else_fragment_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11410), 1, + sym_identifier, + ACTIONS(11412), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11416), 1, + aux_sym_dotted_type_expression_token1, + STATE(10077), 1, + sym__primary_expression, + STATE(10108), 1, + sym__print_output_call_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10160), 1, + sym_member_expression, + STATE(10252), 1, + sym_parenthesized_expression, + STATE(10270), 1, + sym_binary_expression, + STATE(10291), 1, + sym_call_expression, + STATE(10407), 1, + sym__print_output_call_expression, + STATE(10487), 1, + sym_unary_expression, + STATE(10984), 1, + sym__print_output_call_operand, + STATE(10986), 1, + sym__expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11704), 1, + sym_comparison_expression, + STATE(11731), 1, + sym_logical_value_expression, + STATE(12087), 1, + sym__print_output_member_comparison_expression, + STATE(13567), 1, + sym__print_output_qualified_callable, + STATE(13570), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11418), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11420), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12130), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(10251), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [10415] = 40, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4104), 1, + anon_sym_COLON, + ACTIONS(4106), 1, + aux_sym_else_fragment_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11410), 1, + sym_identifier, + ACTIONS(11412), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11416), 1, + aux_sym_dotted_type_expression_token1, + STATE(10077), 1, + sym__primary_expression, + STATE(10108), 1, + sym__print_output_call_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10160), 1, + sym_member_expression, + STATE(10252), 1, + sym_parenthesized_expression, + STATE(10270), 1, + sym_binary_expression, + STATE(10291), 1, + sym_call_expression, + STATE(10407), 1, + sym__print_output_call_expression, + STATE(10487), 1, + sym_unary_expression, + STATE(10984), 1, + sym__print_output_call_operand, + STATE(10986), 1, + sym__expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11704), 1, + sym_comparison_expression, + STATE(11731), 1, + sym_logical_value_expression, + STATE(12087), 1, + sym__print_output_member_comparison_expression, + STATE(13567), 1, + sym__print_output_qualified_callable, + STATE(13570), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11418), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11420), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12130), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(10251), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [10549] = 40, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4094), 1, + anon_sym_COLON, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11410), 1, + sym_identifier, + ACTIONS(11412), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11414), 1, + anon_sym_LPAREN, + ACTIONS(11416), 1, + aux_sym_dotted_type_expression_token1, + STATE(10108), 1, + sym__print_output_call_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10160), 1, + sym_member_expression, + STATE(10270), 1, + sym_binary_expression, + STATE(10291), 1, + sym_call_expression, + STATE(10407), 1, + sym__print_output_call_expression, + STATE(10487), 1, + sym_unary_expression, + STATE(10984), 1, + sym__print_output_call_operand, + STATE(10986), 1, + sym__expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11704), 1, + sym_comparison_expression, + STATE(11731), 1, + sym_logical_value_expression, + STATE(12087), 1, + sym__print_output_member_comparison_expression, + STATE(12418), 1, + sym__print_method_output_list, + STATE(12421), 1, + sym_argument_list, + STATE(13567), 1, + sym__print_output_qualified_callable, + STATE(13570), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10077), 2, + sym__primary_expression, + sym_parenthesized_expression, + STATE(11919), 2, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + ACTIONS(11418), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11420), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10251), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [10683] = 39, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4104), 1, + anon_sym_COLON, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11410), 1, + sym_identifier, + ACTIONS(11412), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11416), 1, + aux_sym_dotted_type_expression_token1, + STATE(10077), 1, + sym__primary_expression, + STATE(10108), 1, + sym__print_output_call_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10160), 1, + sym_member_expression, + STATE(10252), 1, + sym_parenthesized_expression, + STATE(10270), 1, + sym_binary_expression, + STATE(10291), 1, + sym_call_expression, + STATE(10407), 1, + sym__print_output_call_expression, + STATE(10487), 1, + sym_unary_expression, + STATE(10984), 1, + sym__print_output_call_operand, + STATE(10986), 1, + sym__expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11704), 1, + sym_comparison_expression, + STATE(11731), 1, + sym_logical_value_expression, + STATE(12087), 1, + sym__print_output_member_comparison_expression, + STATE(13567), 1, + sym__print_output_qualified_callable, + STATE(13570), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11418), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11420), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12130), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(10251), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [10814] = 39, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4112), 1, + anon_sym_COLON, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11410), 1, + sym_identifier, + ACTIONS(11412), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11416), 1, + aux_sym_dotted_type_expression_token1, + STATE(10077), 1, + sym__primary_expression, + STATE(10108), 1, + sym__print_output_call_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10160), 1, + sym_member_expression, + STATE(10252), 1, + sym_parenthesized_expression, + STATE(10270), 1, + sym_binary_expression, + STATE(10291), 1, + sym_call_expression, + STATE(10407), 1, + sym__print_output_call_expression, + STATE(10487), 1, + sym_unary_expression, + STATE(10984), 1, + sym__print_output_call_operand, + STATE(10986), 1, + sym__expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11704), 1, + sym_comparison_expression, + STATE(11731), 1, + sym_logical_value_expression, + STATE(12087), 1, + sym__print_output_member_comparison_expression, + STATE(13567), 1, + sym__print_output_qualified_callable, + STATE(13570), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11418), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11420), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12130), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(10251), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [10945] = 39, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4100), 1, + anon_sym_COLON, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11410), 1, + sym_identifier, + ACTIONS(11412), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11416), 1, + aux_sym_dotted_type_expression_token1, + STATE(10077), 1, + sym__primary_expression, + STATE(10108), 1, + sym__print_output_call_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10160), 1, + sym_member_expression, + STATE(10252), 1, + sym_parenthesized_expression, + STATE(10270), 1, + sym_binary_expression, + STATE(10291), 1, + sym_call_expression, + STATE(10407), 1, + sym__print_output_call_expression, + STATE(10487), 1, + sym_unary_expression, + STATE(10984), 1, + sym__print_output_call_operand, + STATE(10986), 1, + sym__expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11704), 1, + sym_comparison_expression, + STATE(11731), 1, + sym_logical_value_expression, + STATE(12087), 1, + sym__print_output_member_comparison_expression, + STATE(13567), 1, + sym__print_output_qualified_callable, + STATE(13570), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11418), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11420), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12130), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(10251), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [11076] = 39, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4108), 1, + anon_sym_COLON, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11410), 1, + sym_identifier, + ACTIONS(11412), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11416), 1, + aux_sym_dotted_type_expression_token1, + STATE(10077), 1, + sym__primary_expression, + STATE(10108), 1, + sym__print_output_call_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10160), 1, + sym_member_expression, + STATE(10252), 1, + sym_parenthesized_expression, + STATE(10270), 1, + sym_binary_expression, + STATE(10291), 1, + sym_call_expression, + STATE(10407), 1, + sym__print_output_call_expression, + STATE(10487), 1, + sym_unary_expression, + STATE(10984), 1, + sym__print_output_call_operand, + STATE(10986), 1, + sym__expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11704), 1, + sym_comparison_expression, + STATE(11731), 1, + sym_logical_value_expression, + STATE(12087), 1, + sym__print_output_member_comparison_expression, + STATE(13567), 1, + sym__print_output_qualified_callable, + STATE(13570), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11418), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11420), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12130), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(10251), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [11207] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4164), 1, + anon_sym_COLON, + ACTIONS(4166), 1, + aux_sym_else_fragment_token1, + ACTIONS(11352), 1, + sym_identifier, + ACTIONS(11354), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11360), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11450), 1, + anon_sym_COMMA, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(12128), 1, + aux_sym__argument_sequence_repeat2, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10484), 2, + sym__expression, + sym_unary_expression, + STATE(11716), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12063), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [11325] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11452), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14051), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [11443] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11454), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14313), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [11561] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11406), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14407), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [11679] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11456), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14641), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [11797] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11458), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14760), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [11915] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11460), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14875), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [12033] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11462), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14977), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [12151] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11464), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(15045), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [12269] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11466), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(15108), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [12387] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11424), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(15204), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [12505] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11468), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13778), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [12623] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11422), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14551), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [12741] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11470), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13845), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [12859] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11472), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13899), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [12977] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11474), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13948), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [13095] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11476), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14011), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [13213] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11478), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14068), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [13331] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11480), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14116), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [13449] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11482), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14196), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [13567] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11484), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14284), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [13685] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11426), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13715), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [13803] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11486), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14360), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [13921] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11488), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14413), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [14039] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11490), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14474), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [14157] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11492), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14545), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [14275] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11494), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14602), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [14393] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11496), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14666), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [14511] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11498), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14708), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [14629] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11500), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14738), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [14747] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11502), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14766), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [14865] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11504), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14788), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [14983] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11506), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14829), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [15101] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11508), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14877), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [15219] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11510), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14922), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [15337] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11512), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14932), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [15455] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11514), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14950), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [15573] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11516), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14958), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [15691] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11518), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14968), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [15809] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11520), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13838), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [15927] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11522), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14807), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [16045] = 38, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4935), 1, + sym_identifier, + ACTIONS(4937), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(4941), 1, + aux_sym_dotted_type_expression_token1, + STATE(827), 1, + sym__print_output_call_member_expression, + STATE(1055), 1, + sym_parenthesized_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1277), 1, + sym_member_expression, + STATE(1459), 1, + sym_binary_expression, + STATE(2660), 1, + sym__print_output_call_expression, + STATE(2669), 1, + sym_unary_expression, + STATE(4716), 1, + sym_comparison_expression, + STATE(4717), 1, + sym_logical_value_expression, + STATE(5409), 1, + sym__print_output_member_comparison_expression, + STATE(10077), 1, + sym__primary_expression, + STATE(10299), 1, + sym_call_expression, + STATE(10987), 1, + sym__print_output_call_operand, + STATE(10988), 1, + sym__expression, + STATE(11458), 1, + sym__comparison_operand, + STATE(13601), 1, + sym__print_output_qualified_callable, + STATE(13623), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(4943), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4945), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(5572), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(1276), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [16173] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11440), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14440), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [16291] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11524), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14912), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [16409] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11434), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13998), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [16527] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11526), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(15001), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [16645] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11428), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(15076), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [16763] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11442), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13683), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [16881] = 38, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4871), 1, + sym_identifier, + ACTIONS(4873), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(4877), 1, + aux_sym_dotted_type_expression_token1, + STATE(866), 1, + sym__print_output_call_member_expression, + STATE(1211), 1, + sym_binary_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(1453), 1, + sym_member_expression, + STATE(1457), 1, + sym_parenthesized_expression, + STATE(2771), 1, + sym__print_output_call_expression, + STATE(2897), 1, + sym_unary_expression, + STATE(4880), 1, + sym_comparison_expression, + STATE(4881), 1, + sym_logical_value_expression, + STATE(5764), 1, + sym__print_output_member_comparison_expression, + STATE(10077), 1, + sym__primary_expression, + STATE(10290), 1, + sym_call_expression, + STATE(10982), 1, + sym__expression, + STATE(10983), 1, + sym__print_output_call_operand, + STATE(11262), 1, + sym__comparison_operand, + STATE(13617), 1, + sym__print_output_qualified_callable, + STATE(13618), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(4879), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4881), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(5586), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(1452), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [17009] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11528), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13927), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [17127] = 38, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4949), 1, + sym_identifier, + ACTIONS(4951), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(4955), 1, + aux_sym_dotted_type_expression_token1, + STATE(803), 1, + sym__print_output_call_member_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1340), 1, + sym_member_expression, + STATE(1341), 1, + sym_parenthesized_expression, + STATE(1342), 1, + sym_binary_expression, + STATE(2585), 1, + sym__print_output_call_expression, + STATE(2631), 1, + sym_unary_expression, + STATE(4734), 1, + sym_comparison_expression, + STATE(4735), 1, + sym_logical_value_expression, + STATE(5102), 1, + sym__print_output_member_comparison_expression, + STATE(10077), 1, + sym__primary_expression, + STATE(10294), 1, + sym_call_expression, + STATE(10989), 1, + sym__print_output_call_operand, + STATE(10990), 1, + sym__expression, + STATE(11361), 1, + sym__comparison_operand, + STATE(13142), 1, + sym__print_output_qualified_callable, + STATE(13150), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(4957), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4959), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(5155), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(1339), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [17255] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11530), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14721), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [17373] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11400), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14577), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [17491] = 38, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4070), 1, + sym_identifier, + ACTIONS(4076), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(4080), 1, + aux_sym_dotted_type_expression_token1, + STATE(377), 1, + sym__print_output_call_member_expression, + STATE(397), 1, + sym_member_expression, + STATE(415), 1, + sym_parenthesized_expression, + STATE(416), 1, + sym_binary_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(878), 1, + sym_unary_expression, + STATE(1052), 1, + sym__print_output_call_expression, + STATE(2899), 1, + sym_comparison_expression, + STATE(2901), 1, + sym_logical_value_expression, + STATE(3693), 1, + sym__print_output_member_comparison_expression, + STATE(10077), 1, + sym__primary_expression, + STATE(10295), 1, + sym_call_expression, + STATE(10977), 1, + sym__print_output_call_operand, + STATE(10978), 1, + sym__expression, + STATE(11297), 1, + sym__comparison_operand, + STATE(13504), 1, + sym__print_output_qualified_callable, + STATE(13604), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(4082), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4084), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3455), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(395), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [17619] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4170), 1, + anon_sym_COLON, + ACTIONS(4172), 1, + aux_sym_else_fragment_token1, + ACTIONS(11352), 1, + sym_identifier, + ACTIONS(11354), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11360), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11450), 1, + anon_sym_COMMA, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(12159), 1, + aux_sym__argument_sequence_repeat2, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10484), 2, + sym__expression, + sym_unary_expression, + STATE(11716), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12077), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [17737] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11532), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(15201), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [17855] = 38, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11410), 1, + sym_identifier, + ACTIONS(11412), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11416), 1, + aux_sym_dotted_type_expression_token1, + STATE(10077), 1, + sym__primary_expression, + STATE(10108), 1, + sym__print_output_call_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(10160), 1, + sym_member_expression, + STATE(10252), 1, + sym_parenthesized_expression, + STATE(10270), 1, + sym_binary_expression, + STATE(10291), 1, + sym_call_expression, + STATE(10407), 1, + sym__print_output_call_expression, + STATE(10487), 1, + sym_unary_expression, + STATE(10984), 1, + sym__print_output_call_operand, + STATE(10986), 1, + sym__expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11704), 1, + sym_comparison_expression, + STATE(11731), 1, + sym_logical_value_expression, + STATE(12087), 1, + sym__print_output_member_comparison_expression, + STATE(13567), 1, + sym__print_output_qualified_callable, + STATE(13570), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11418), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11420), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12130), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(10251), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [17983] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11438), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13883), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [18101] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11402), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14627), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [18219] = 38, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5022), 1, + sym_identifier, + ACTIONS(5024), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(5028), 1, + aux_sym_dotted_type_expression_token1, + STATE(997), 1, + sym__print_output_call_member_expression, + STATE(1524), 1, + sym_member_expression, + STATE(1570), 1, + sym_parenthesized_expression, + STATE(1573), 1, + sym_binary_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(2996), 1, + sym__print_output_call_expression, + STATE(3301), 1, + sym_unary_expression, + STATE(4906), 1, + sym_logical_value_expression, + STATE(5075), 1, + sym_comparison_expression, + STATE(5840), 1, + sym__print_output_member_comparison_expression, + STATE(10077), 1, + sym__primary_expression, + STATE(10300), 1, + sym_call_expression, + STATE(10979), 1, + sym__expression, + STATE(10995), 1, + sym__print_output_call_operand, + STATE(11430), 1, + sym__comparison_operand, + STATE(13260), 1, + sym__callable_expression, + STATE(13646), 1, + sym__print_output_qualified_callable, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(5030), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(5032), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(6247), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(1479), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [18347] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11408), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13806), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [18465] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11534), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14843), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [18583] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11536), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14599), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [18701] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11436), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(15115), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [18819] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11538), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14997), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [18937] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11540), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(15092), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [19055] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4174), 1, + anon_sym_COLON, + ACTIONS(4176), 1, + aux_sym_else_fragment_token1, + ACTIONS(11352), 1, + sym_identifier, + ACTIONS(11354), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11360), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11450), 1, + anon_sym_COMMA, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(12104), 1, + aux_sym__argument_sequence_repeat2, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10484), 2, + sym__expression, + sym_unary_expression, + STATE(11716), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12116), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [19173] = 38, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4857), 1, + sym_identifier, + ACTIONS(4859), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, + aux_sym_dotted_type_expression_token1, + STATE(828), 1, + sym__print_output_call_member_expression, + STATE(1073), 1, + sym_member_expression, + STATE(1084), 1, + sym_parenthesized_expression, + STATE(1085), 1, + sym_binary_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(2577), 1, + sym__print_output_call_expression, + STATE(2774), 1, + sym_unary_expression, + STATE(4886), 1, + sym_comparison_expression, + STATE(4887), 1, + sym_logical_value_expression, + STATE(5781), 1, + sym__print_output_member_comparison_expression, + STATE(10077), 1, + sym__primary_expression, + STATE(10296), 1, + sym_call_expression, + STATE(10998), 1, + sym__print_output_call_operand, + STATE(11000), 1, + sym__expression, + STATE(11453), 1, + sym__comparison_operand, + STATE(13423), 1, + sym__print_output_qualified_callable, + STATE(13426), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(4865), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4867), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(5439), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(1056), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [19301] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11388), 1, + anon_sym_RPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(15082), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [19419] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11448), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13965), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [19537] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11432), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13858), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [19655] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11542), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13808), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [19773] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11444), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14731), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [19891] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11544), 1, + anon_sym_EQ, + ACTIONS(11546), 1, + anon_sym_LPAREN, + ACTIONS(11548), 1, + aux_sym_as_type_clause_token1, + STATE(7565), 1, + sym_array_bounds, + STATE(7616), 1, + sym_as_type_clause, + STATE(7729), 1, + sym_initializer, + ACTIONS(6991), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(6989), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [19963] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11550), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14342), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [20081] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11552), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14966), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [20199] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11404), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(15199), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [20317] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11554), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(15124), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [20435] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11556), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13747), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [20553] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11558), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13881), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [20671] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11560), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14190), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [20789] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11446), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14439), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [20907] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11562), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14444), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [21025] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11564), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14722), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [21143] = 38, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4150), 1, + sym_identifier, + ACTIONS(4152), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(4156), 1, + aux_sym_dotted_type_expression_token1, + STATE(459), 1, + sym__print_output_call_member_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(642), 1, + sym_member_expression, + STATE(643), 1, + sym_parenthesized_expression, + STATE(644), 1, + sym_binary_expression, + STATE(1676), 1, + sym__print_output_call_expression, + STATE(1682), 1, + sym_unary_expression, + STATE(3445), 1, + sym_comparison_expression, + STATE(3451), 1, + sym_logical_value_expression, + STATE(4029), 1, + sym__print_output_member_comparison_expression, + STATE(10077), 1, + sym__primary_expression, + STATE(10301), 1, + sym_call_expression, + STATE(10992), 1, + sym__print_output_call_operand, + STATE(10993), 1, + sym__expression, + STATE(11254), 1, + sym__comparison_operand, + STATE(13339), 1, + sym__print_output_qualified_callable, + STATE(13340), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(4158), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4160), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4079), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(641), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [21271] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11566), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(14987), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [21389] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11568), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(15101), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [21507] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11570), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13681), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [21625] = 38, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4379), 1, + sym_identifier, + ACTIONS(4381), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(4385), 1, + aux_sym_dotted_type_expression_token1, + STATE(761), 1, + sym__print_output_call_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(862), 1, + sym_member_expression, + STATE(863), 1, + sym_parenthesized_expression, + STATE(864), 1, + sym_binary_expression, + STATE(2297), 1, + sym__print_output_call_expression, + STATE(2300), 1, + sym_unary_expression, + STATE(4600), 1, + sym_comparison_expression, + STATE(4601), 1, + sym_logical_value_expression, + STATE(4793), 1, + sym__print_output_member_comparison_expression, + STATE(10077), 1, + sym__primary_expression, + STATE(10292), 1, + sym_call_expression, + STATE(10996), 1, + sym__print_output_call_operand, + STATE(10997), 1, + sym__expression, + STATE(11302), 1, + sym__comparison_operand, + STATE(13144), 1, + sym__print_output_qualified_callable, + STATE(13147), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(4387), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4389), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4822), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(861), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [21753] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11572), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(13798), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [21871] = 38, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4845), 1, + sym_identifier, + ACTIONS(4847), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4851), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4869), 1, + anon_sym_LPAREN, + STATE(871), 1, + sym__print_output_call_member_expression, + STATE(1168), 1, + sym_member_expression, + STATE(1194), 1, + sym_parenthesized_expression, + STATE(1209), 1, + sym_binary_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(2617), 1, + sym__print_output_call_expression, + STATE(2675), 1, + sym_unary_expression, + STATE(4702), 1, + sym_comparison_expression, + STATE(4703), 1, + sym_logical_value_expression, + STATE(5244), 1, + sym__print_output_member_comparison_expression, + STATE(10077), 1, + sym__primary_expression, + STATE(10298), 1, + sym_call_expression, + STATE(11001), 1, + sym__print_output_call_operand, + STATE(11002), 1, + sym__expression, + STATE(11305), 1, + sym__comparison_operand, + STATE(13129), 1, + sym__print_output_qualified_callable, + STATE(13130), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(4853), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4855), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(5587), 3, + sym__print_output_expression, + sym__unparenthesized_print_output_expression, + sym__print_output_call_binary_expression, + STATE(1126), 6, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [21999] = 33, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(11574), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(12657), 1, + aux_sym__argument_sequence_repeat2, + STATE(13480), 1, + sym__callable_expression, + STATE(15170), 1, + sym__argument_sequence, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12241), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [22117] = 32, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4164), 1, + anon_sym_COLON, + ACTIONS(11352), 1, + sym_identifier, + ACTIONS(11354), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11360), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11576), 1, + anon_sym_COMMA, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(12324), 1, + aux_sym__argument_sequence_repeat2, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10484), 2, + sym__expression, + sym_unary_expression, + STATE(11716), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12325), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [22232] = 32, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4183), 1, + aux_sym_else_fragment_token1, + ACTIONS(11352), 1, + sym_identifier, + ACTIONS(11354), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11360), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11578), 1, + sym_number_literal, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + ACTIONS(4181), 2, + anon_sym_COLON, + anon_sym_COMMA, + ACTIONS(11372), 2, + sym_string_literal, + sym_date_literal, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10484), 2, + sym__expression, + sym_unary_expression, + STATE(11716), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12158), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [22347] = 32, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4170), 1, + anon_sym_COLON, + ACTIONS(11352), 1, + sym_identifier, + ACTIONS(11354), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11360), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11576), 1, + anon_sym_COMMA, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(12289), 1, + aux_sym__argument_sequence_repeat2, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10484), 2, + sym__expression, + sym_unary_expression, + STATE(11716), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12287), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [22462] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11581), 1, + anon_sym_LPAREN, + ACTIONS(11583), 1, + anon_sym_STAR, + STATE(7592), 1, + sym_fixed_string_length, + STATE(7649), 1, + sym_array_bounds, + ACTIONS(7232), 8, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(7230), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [22529] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11581), 1, + anon_sym_LPAREN, + ACTIONS(11583), 1, + anon_sym_STAR, + STATE(7594), 1, + sym_fixed_string_length, + STATE(7660), 1, + sym_array_bounds, + ACTIONS(7136), 8, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(7134), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [22596] = 32, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(4174), 1, + anon_sym_COLON, + ACTIONS(11352), 1, + sym_identifier, + ACTIONS(11354), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11360), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11576), 1, + anon_sym_COMMA, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(12221), 1, + aux_sym__argument_sequence_repeat2, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10484), 2, + sym__expression, + sym_unary_expression, + STATE(11716), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12217), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [22711] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11544), 1, + anon_sym_EQ, + ACTIONS(11548), 1, + aux_sym_as_type_clause_token1, + STATE(7612), 1, + sym_as_type_clause, + STATE(7744), 1, + sym_initializer, + ACTIONS(7289), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(7287), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [22777] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11585), 1, + anon_sym_DOT, + STATE(7562), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4371), 10, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + sym_number_literal, + ACTIONS(4369), 35, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [22839] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11587), 1, + anon_sym_DOT, + STATE(7557), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4364), 10, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + sym_number_literal, + ACTIONS(4362), 35, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [22901] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + ACTIONS(4181), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(13192), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [23011] = 31, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11352), 1, + sym_identifier, + ACTIONS(11354), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11360), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11578), 1, + sym_number_literal, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + ACTIONS(4181), 2, + anon_sym_COLON, + anon_sym_COMMA, + ACTIONS(11372), 2, + sym_string_literal, + sym_date_literal, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10484), 2, + sym__expression, + sym_unary_expression, + STATE(11716), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12158), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [23123] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11590), 1, + aux_sym_declare_sub_statement_token4, + ACTIONS(11592), 1, + anon_sym_LPAREN, + ACTIONS(11594), 1, + aux_sym_as_type_clause_token1, + STATE(7634), 1, + sym_parameter_list, + STATE(7982), 1, + sym_as_type_clause, + ACTIONS(7557), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(7555), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [23191] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + ACTIONS(4181), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12158), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [23301] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + STATE(7557), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4377), 10, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + sym_number_literal, + ACTIONS(4375), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [23361] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11592), 1, + anon_sym_LPAREN, + ACTIONS(11594), 1, + aux_sym_as_type_clause_token1, + ACTIONS(11596), 1, + aux_sym_declare_sub_statement_token4, + STATE(7662), 1, + sym_parameter_list, + STATE(7963), 1, + sym_as_type_clause, + ACTIONS(7593), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(7591), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [23429] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11592), 1, + anon_sym_LPAREN, + ACTIONS(11594), 1, + aux_sym_as_type_clause_token1, + ACTIONS(11598), 1, + aux_sym_declare_sub_statement_token4, + STATE(7644), 1, + sym_parameter_list, + STATE(7940), 1, + sym_as_type_clause, + ACTIONS(7422), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(7420), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [23497] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11544), 1, + anon_sym_EQ, + ACTIONS(11548), 1, + aux_sym_as_type_clause_token1, + STATE(7626), 1, + sym_as_type_clause, + STATE(7686), 1, + sym_initializer, + ACTIONS(7202), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(7200), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [23563] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11592), 1, + anon_sym_LPAREN, + ACTIONS(11594), 1, + aux_sym_as_type_clause_token1, + ACTIONS(11600), 1, + aux_sym_declare_sub_statement_token4, + STATE(7656), 1, + sym_parameter_list, + STATE(7934), 1, + sym_as_type_clause, + ACTIONS(7432), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(7430), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [23631] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11581), 1, + anon_sym_LPAREN, + ACTIONS(11602), 1, + anon_sym_STAR, + STATE(7594), 1, + sym_fixed_string_length, + STATE(7660), 1, + sym_array_bounds, + ACTIONS(7136), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(7134), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [23696] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11581), 1, + anon_sym_LPAREN, + ACTIONS(11602), 1, + anon_sym_STAR, + STATE(7592), 1, + sym_fixed_string_length, + STATE(7649), 1, + sym_array_bounds, + ACTIONS(7232), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(7230), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [23761] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4675), 1, + sym_identifier, + ACTIONS(4677), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4683), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11604), 1, + anon_sym_COMMA, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(11458), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2764), 2, + sym__expression, + sym_unary_expression, + STATE(4900), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(5967), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [23870] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4026), 1, + sym_identifier, + ACTIONS(4032), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4040), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11606), 1, + anon_sym_COMMA, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(11297), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1053), 2, + sym__expression, + sym_unary_expression, + STATE(2684), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3794), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [23979] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4364), 10, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + sym_number_literal, + ACTIONS(4362), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [24036] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4555), 1, + sym_identifier, + ACTIONS(4557), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4563), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11608), 1, + anon_sym_COMMA, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(11305), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2603), 2, + sym__expression, + sym_unary_expression, + STATE(4779), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(6238), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [24145] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4895), 1, + sym_identifier, + ACTIONS(4897), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4903), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11610), 1, + anon_sym_COMMA, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(11430), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3023), 2, + sym__expression, + sym_unary_expression, + STATE(5063), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(6887), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [24254] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4555), 1, + sym_identifier, + ACTIONS(4557), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4563), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11612), 1, + anon_sym_COMMA, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(11305), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2603), 2, + sym__expression, + sym_unary_expression, + STATE(4779), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(6238), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [24363] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4371), 10, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + sym_number_literal, + ACTIONS(4369), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [24420] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11592), 1, + anon_sym_LPAREN, + ACTIONS(11594), 1, + aux_sym_as_type_clause_token1, + STATE(7647), 1, + sym_parameter_list, + STATE(7975), 1, + sym_as_type_clause, + ACTIONS(7974), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(7972), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [24485] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4521), 1, + sym_identifier, + ACTIONS(4523), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4529), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11614), 1, + anon_sym_COMMA, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(11453), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2692), 2, + sym__expression, + sym_unary_expression, + STATE(4877), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(5956), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [24594] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4116), 1, + sym_identifier, + ACTIONS(4118), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4124), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11616), 1, + anon_sym_COMMA, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(11254), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1951), 2, + sym__expression, + sym_unary_expression, + STATE(3689), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4311), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [24703] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11352), 1, + sym_identifier, + ACTIONS(11354), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11360), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11618), 1, + anon_sym_COMMA, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10484), 2, + sym__expression, + sym_unary_expression, + STATE(11716), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12075), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [24812] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11352), 1, + sym_identifier, + ACTIONS(11354), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11360), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11620), 1, + anon_sym_COMMA, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10484), 2, + sym__expression, + sym_unary_expression, + STATE(11716), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12075), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [24921] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4116), 1, + sym_identifier, + ACTIONS(4118), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4124), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11622), 1, + anon_sym_COMMA, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(11254), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1951), 2, + sym__expression, + sym_unary_expression, + STATE(3689), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4311), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [25030] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11592), 1, + anon_sym_LPAREN, + ACTIONS(11594), 1, + aux_sym_as_type_clause_token1, + STATE(7666), 1, + sym_parameter_list, + STATE(7956), 1, + sym_as_type_clause, + ACTIONS(8064), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8062), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [25095] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4895), 1, + sym_identifier, + ACTIONS(4897), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4903), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11624), 1, + anon_sym_COMMA, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(11430), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3023), 2, + sym__expression, + sym_unary_expression, + STATE(5063), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(6887), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [25204] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4711), 1, + sym_identifier, + ACTIONS(4713), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4719), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11626), 1, + anon_sym_COMMA, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(11361), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2571), 2, + sym__expression, + sym_unary_expression, + STATE(4732), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(5849), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [25313] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4772), 1, + sym_identifier, + ACTIONS(4774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4780), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11628), 1, + anon_sym_COMMA, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(11262), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2701), 2, + sym__expression, + sym_unary_expression, + STATE(4796), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(6257), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [25422] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4627), 10, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + sym_number_literal, + ACTIONS(4625), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [25479] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11592), 1, + anon_sym_LPAREN, + ACTIONS(11594), 1, + aux_sym_as_type_clause_token1, + STATE(7670), 1, + sym_parameter_list, + STATE(8011), 1, + sym_as_type_clause, + ACTIONS(8076), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8074), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [25544] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4260), 1, + sym_identifier, + ACTIONS(4262), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4268), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11630), 1, + anon_sym_COMMA, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(11302), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2340), 2, + sym__expression, + sym_unary_expression, + STATE(4594), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4982), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [25653] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4711), 1, + sym_identifier, + ACTIONS(4713), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4719), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11632), 1, + anon_sym_COMMA, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(11361), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2571), 2, + sym__expression, + sym_unary_expression, + STATE(4732), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(5849), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [25762] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11592), 1, + anon_sym_LPAREN, + ACTIONS(11594), 1, + aux_sym_as_type_clause_token1, + STATE(7650), 1, + sym_parameter_list, + STATE(7946), 1, + sym_as_type_clause, + ACTIONS(8054), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8052), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [25827] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4260), 1, + sym_identifier, + ACTIONS(4262), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4268), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11634), 1, + anon_sym_COMMA, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(11302), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2340), 2, + sym__expression, + sym_unary_expression, + STATE(4594), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4982), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [25936] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11581), 1, + anon_sym_LPAREN, + STATE(7632), 1, + sym_array_bounds, + ACTIONS(8083), 8, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8081), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [25997] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4521), 1, + sym_identifier, + ACTIONS(4523), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4529), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11636), 1, + anon_sym_COMMA, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(11453), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2692), 2, + sym__expression, + sym_unary_expression, + STATE(4877), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(5956), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [26106] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11581), 1, + anon_sym_LPAREN, + STATE(7654), 1, + sym_array_bounds, + ACTIONS(8072), 8, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8070), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [26167] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4772), 1, + sym_identifier, + ACTIONS(4774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4780), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11638), 1, + anon_sym_COMMA, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(11262), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2701), 2, + sym__expression, + sym_unary_expression, + STATE(4796), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(6257), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [26276] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4026), 1, + sym_identifier, + ACTIONS(4032), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4040), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11640), 1, + anon_sym_COMMA, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(11297), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1053), 2, + sym__expression, + sym_unary_expression, + STATE(2684), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3794), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [26385] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4675), 1, + sym_identifier, + ACTIONS(4677), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4683), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11642), 1, + anon_sym_COMMA, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(11458), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2764), 2, + sym__expression, + sym_unary_expression, + STATE(4900), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(5967), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [26494] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11352), 1, + sym_identifier, + ACTIONS(11354), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11360), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11644), 1, + anon_sym_COMMA, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10484), 2, + sym__expression, + sym_unary_expression, + STATE(11716), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12075), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [26603] = 30, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11352), 1, + sym_identifier, + ACTIONS(11354), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11360), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11646), 1, + anon_sym_COMMA, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10484), 2, + sym__expression, + sym_unary_expression, + STATE(11716), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12075), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [26712] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4711), 1, + sym_identifier, + ACTIONS(4713), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4719), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(11361), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2571), 2, + sym__expression, + sym_unary_expression, + STATE(4732), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(5855), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [26818] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4772), 1, + sym_identifier, + ACTIONS(4774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4780), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(11262), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2701), 2, + sym__expression, + sym_unary_expression, + STATE(4796), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(6257), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [26924] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4521), 1, + sym_identifier, + ACTIONS(4523), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4529), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(11453), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2692), 2, + sym__expression, + sym_unary_expression, + STATE(4877), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(5956), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [27030] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4026), 1, + sym_identifier, + ACTIONS(4032), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4040), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(11297), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1053), 2, + sym__expression, + sym_unary_expression, + STATE(2684), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3794), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [27136] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11648), 1, + aux_sym_declare_sub_statement_token4, + ACTIONS(11650), 1, + anon_sym_LPAREN, + STATE(7964), 1, + sym_parameter_list, + ACTIONS(8304), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8302), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [27198] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11650), 1, + anon_sym_LPAREN, + ACTIONS(11652), 1, + aux_sym_declare_sub_statement_token4, + STATE(7961), 1, + sym_parameter_list, + ACTIONS(8557), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8555), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [27260] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11378), 1, + sym_identifier, + ACTIONS(11380), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11382), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10696), 2, + sym__expression, + sym_unary_expression, + STATE(12242), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12075), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [27366] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4895), 1, + sym_identifier, + ACTIONS(4897), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4903), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(11430), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3023), 2, + sym__expression, + sym_unary_expression, + STATE(5063), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(6887), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [27472] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11352), 1, + sym_identifier, + ACTIONS(11354), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11360), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10484), 2, + sym__expression, + sym_unary_expression, + STATE(11716), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12252), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [27578] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8024), 8, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8022), 37, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_as_type_clause_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [27634] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4711), 1, + sym_identifier, + ACTIONS(4713), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4719), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(11361), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2571), 2, + sym__expression, + sym_unary_expression, + STATE(4732), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(5849), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [27740] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4675), 1, + sym_identifier, + ACTIONS(4677), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4683), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(11458), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2764), 2, + sym__expression, + sym_unary_expression, + STATE(4900), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(5968), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [27846] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11544), 1, + anon_sym_EQ, + STATE(7688), 1, + sym_initializer, + ACTIONS(8093), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8091), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [27906] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7970), 8, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(7968), 37, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_as_type_clause_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [27962] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4260), 1, + sym_identifier, + ACTIONS(4262), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4268), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(11302), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2340), 2, + sym__expression, + sym_unary_expression, + STATE(4594), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4983), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [28068] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7986), 8, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(7984), 37, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_as_type_clause_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [28124] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11544), 1, + anon_sym_EQ, + STATE(7685), 1, + sym_initializer, + ACTIONS(8089), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8087), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [28184] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4116), 1, + sym_identifier, + ACTIONS(4118), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4124), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(11254), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1951), 2, + sym__expression, + sym_unary_expression, + STATE(3689), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4311), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [28290] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4675), 1, + sym_identifier, + ACTIONS(4677), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4683), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(11458), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2764), 2, + sym__expression, + sym_unary_expression, + STATE(4900), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(5967), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [28396] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11650), 1, + anon_sym_LPAREN, + ACTIONS(11654), 1, + aux_sym_declare_sub_statement_token4, + STATE(7932), 1, + sym_parameter_list, + ACTIONS(8122), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8120), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [28458] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4555), 1, + sym_identifier, + ACTIONS(4557), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4563), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(11305), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2603), 2, + sym__expression, + sym_unary_expression, + STATE(4779), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(6248), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [28564] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4555), 1, + sym_identifier, + ACTIONS(4557), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4563), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(11305), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2603), 2, + sym__expression, + sym_unary_expression, + STATE(4779), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(6238), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [28670] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4026), 1, + sym_identifier, + ACTIONS(4032), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4040), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(11297), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1053), 2, + sym__expression, + sym_unary_expression, + STATE(2684), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3775), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [28776] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11650), 1, + anon_sym_LPAREN, + ACTIONS(11656), 1, + aux_sym_declare_sub_statement_token4, + STATE(7939), 1, + sym_parameter_list, + ACTIONS(8328), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8326), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [28838] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11352), 1, + sym_identifier, + ACTIONS(11354), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11360), 1, + aux_sym_byval_modifier_token1, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10484), 2, + sym__expression, + sym_unary_expression, + STATE(11716), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12075), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [28944] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4116), 1, + sym_identifier, + ACTIONS(4118), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4124), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(11254), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1951), 2, + sym__expression, + sym_unary_expression, + STATE(3689), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4312), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [29050] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11544), 1, + anon_sym_EQ, + STATE(7710), 1, + sym_initializer, + ACTIONS(7712), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(7710), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [29110] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4772), 1, + sym_identifier, + ACTIONS(4774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4780), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(11262), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2701), 2, + sym__expression, + sym_unary_expression, + STATE(4796), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(6214), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [29216] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4895), 1, + sym_identifier, + ACTIONS(4897), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4903), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(11430), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3023), 2, + sym__expression, + sym_unary_expression, + STATE(5063), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(6890), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [29322] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4521), 1, + sym_identifier, + ACTIONS(4523), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4529), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(11453), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2692), 2, + sym__expression, + sym_unary_expression, + STATE(4877), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(5973), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [29428] = 29, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4260), 1, + sym_identifier, + ACTIONS(4262), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4268), 1, + aux_sym_byval_modifier_token1, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(11302), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2340), 2, + sym__expression, + sym_unary_expression, + STATE(4594), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4982), 3, + sym__argument, + sym_named_argument, + sym_byval_argument, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [29534] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11658), 1, + anon_sym_COMMA, + STATE(7631), 1, + aux_sym_def_type_statement_repeat1, + ACTIONS(8359), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8357), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [29593] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8622), 8, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8620), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [29648] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11661), 1, + anon_sym_COMMA, + STATE(7639), 1, + aux_sym_const_declaration_repeat1, + ACTIONS(8616), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8614), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [29707] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11594), 1, + aux_sym_as_type_clause_token1, + STATE(7977), 1, + sym_as_type_clause, + ACTIONS(8150), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8148), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [29766] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11663), 1, + anon_sym_COMMA, + STATE(7653), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8567), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8565), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [29825] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11650), 1, + anon_sym_LPAREN, + STATE(8009), 1, + sym_parameter_list, + ACTIONS(8968), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8966), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [29884] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11663), 1, + anon_sym_COMMA, + STATE(7673), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8097), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8095), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [29943] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7970), 8, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(7968), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [29998] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11665), 1, + anon_sym_COMMA, + STATE(7639), 1, + aux_sym_const_declaration_repeat1, + ACTIONS(8352), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8350), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [30057] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11661), 1, + anon_sym_COMMA, + STATE(7639), 1, + aux_sym_const_declaration_repeat1, + ACTIONS(8176), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8174), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [30116] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11650), 1, + anon_sym_LPAREN, + STATE(7945), 1, + sym_parameter_list, + ACTIONS(8871), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8869), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [30175] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11663), 1, + anon_sym_COMMA, + STATE(7673), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8168), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8166), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [30234] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8024), 8, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8022), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [30289] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11594), 1, + aux_sym_as_type_clause_token1, + STATE(7958), 1, + sym_as_type_clause, + ACTIONS(8454), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8452), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [30348] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11668), 1, + anon_sym_COMMA, + STATE(7631), 1, + aux_sym_def_type_statement_repeat1, + ACTIONS(8605), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8603), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [30407] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11650), 1, + anon_sym_LPAREN, + STATE(7954), 1, + sym_parameter_list, + ACTIONS(8829), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8827), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [30466] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11594), 1, + aux_sym_as_type_clause_token1, + STATE(7944), 1, + sym_as_type_clause, + ACTIONS(8366), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8364), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [30525] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11663), 1, + anon_sym_COMMA, + STATE(7673), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8156), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8154), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [30584] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8083), 8, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8081), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [30639] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11594), 1, + aux_sym_as_type_clause_token1, + STATE(7960), 1, + sym_as_type_clause, + ACTIONS(8465), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8463), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [30698] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11650), 1, + anon_sym_LPAREN, + STATE(7968), 1, + sym_parameter_list, + ACTIONS(8947), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8945), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [30757] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11663), 1, + anon_sym_COMMA, + STATE(7673), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8160), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8158), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [30816] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11663), 1, + anon_sym_COMMA, + STATE(7673), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8593), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8591), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [30875] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8527), 8, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8525), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [30930] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7986), 8, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(7984), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [30985] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11594), 1, + aux_sym_as_type_clause_token1, + STATE(7938), 1, + sym_as_type_clause, + ACTIONS(8318), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8316), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [31044] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11663), 1, + anon_sym_COMMA, + STATE(7637), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8571), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8569), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [31103] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11661), 1, + anon_sym_COMMA, + STATE(7640), 1, + aux_sym_const_declaration_repeat1, + ACTIONS(8348), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8346), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [31162] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11663), 1, + anon_sym_COMMA, + STATE(7673), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8334), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8332), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [31221] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8072), 8, + ts_builtin_sym_end, + sym_newline, + anon_sym_EQ, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8070), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [31276] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11670), 1, + anon_sym_DASH, + ACTIONS(8849), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8847), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [31333] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11594), 1, + aux_sym_as_type_clause_token1, + STATE(7955), 1, + sym_as_type_clause, + ACTIONS(8186), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8184), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [31392] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11663), 1, + anon_sym_COMMA, + STATE(7659), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8585), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8583), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [31451] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11663), 1, + anon_sym_COMMA, + STATE(7642), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8338), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8336), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [31510] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11663), 1, + anon_sym_COMMA, + STATE(7652), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8334), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8332), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [31569] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11594), 1, + aux_sym_as_type_clause_token1, + STATE(7962), 1, + sym_as_type_clause, + ACTIONS(8489), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8487), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [31628] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11668), 1, + anon_sym_COMMA, + STATE(7645), 1, + aux_sym_def_type_statement_repeat1, + ACTIONS(8579), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8577), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [31687] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11650), 1, + anon_sym_LPAREN, + STATE(7969), 1, + sym_parameter_list, + ACTIONS(8643), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8641), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [31746] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11661), 1, + anon_sym_COMMA, + STATE(7633), 1, + aux_sym_const_declaration_repeat1, + ACTIONS(8575), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8573), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [31805] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11594), 1, + aux_sym_as_type_clause_token1, + STATE(7966), 1, + sym_as_type_clause, + ACTIONS(8507), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8505), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [31864] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11650), 1, + anon_sym_LPAREN, + STATE(7917), 1, + sym_parameter_list, + ACTIONS(8678), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8676), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [31923] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11663), 1, + anon_sym_COMMA, + STATE(7648), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8310), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8308), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [31982] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11672), 1, + anon_sym_COMMA, + STATE(7673), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8289), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8287), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [32041] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(11679), 1, + anon_sym_DOT, + ACTIONS(11681), 1, + anon_sym_BANG, + ACTIONS(11675), 5, + ts_builtin_sym_end, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11677), 35, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [32101] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12017), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [32201] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4603), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4601), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [32255] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4607), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4605), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [32309] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4611), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4609), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [32363] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4623), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_LPAREN, + sym_number_literal, + ACTIONS(4621), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [32417] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11948), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [32517] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8788), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8786), 37, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_as_type_clause_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [32571] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11856), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [32671] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8925), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8923), 37, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_as_type_clause_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [32725] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6119), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(6117), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [32779] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8778), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8776), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [32833] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8803), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8801), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [32887] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8289), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8287), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [32941] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8674), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8672), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [32995] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8352), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8350), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [33049] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8807), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8805), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [33103] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8359), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8357), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [33157] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8711), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8709), 37, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_as_type_clause_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [33211] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11687), 1, + anon_sym_LPAREN, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11456), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10572), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11278), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [33311] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11866), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [33411] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11956), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [33511] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11689), 1, + anon_sym_COLON, + ACTIONS(3364), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(3370), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [33567] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11739), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [33667] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11749), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [33767] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11687), 1, + anon_sym_LPAREN, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11456), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10572), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11081), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [33867] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11687), 1, + anon_sym_LPAREN, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11456), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10572), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11388), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [33967] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11687), 1, + anon_sym_LPAREN, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11456), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10572), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11389), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [34067] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11687), 1, + anon_sym_LPAREN, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11456), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10572), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11393), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [34167] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11687), 1, + anon_sym_LPAREN, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11456), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10572), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11395), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [34267] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11621), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [34367] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10761), 2, + sym__expression, + sym_unary_expression, + STATE(11905), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [34469] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11834), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [34569] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11081), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [34669] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11527), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [34769] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11353), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [34869] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8833), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8831), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [34923] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11470), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [35023] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11533), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [35123] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10755), 2, + sym__expression, + sym_unary_expression, + STATE(11895), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [35225] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11695), 1, + anon_sym_LPAREN, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(11398), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3791), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4729), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [35325] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11695), 1, + anon_sym_LPAREN, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(11398), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3791), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4782), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [35425] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11695), 1, + anon_sym_LPAREN, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(11398), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3791), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4823), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [35525] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11695), 1, + anon_sym_LPAREN, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(11398), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3791), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4824), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [35625] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11695), 1, + anon_sym_LPAREN, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(11398), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3791), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4825), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [35725] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11695), 1, + anon_sym_LPAREN, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(11398), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3791), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4826), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [35825] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10741), 2, + sym__expression, + sym_unary_expression, + STATE(11930), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [35927] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11701), 1, + anon_sym_LPAREN, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(11487), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1569), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2546), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [36027] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11701), 1, + anon_sym_LPAREN, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(11487), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1569), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2470), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [36127] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11701), 1, + anon_sym_LPAREN, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(11487), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1569), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2384), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [36227] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11701), 1, + anon_sym_LPAREN, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(11487), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1569), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2396), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [36327] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11701), 1, + anon_sym_LPAREN, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(11487), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1569), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2405), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [36427] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11701), 1, + anon_sym_LPAREN, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(11487), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1569), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2450), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [36527] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10955), 2, + sym__expression, + sym_unary_expression, + STATE(11992), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [36629] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11707), 1, + anon_sym_LPAREN, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(11344), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3506), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4680), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [36729] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8867), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8865), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [36783] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11707), 1, + anon_sym_LPAREN, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(11344), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3506), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4683), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [36883] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11707), 1, + anon_sym_LPAREN, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(11344), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3506), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4626), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [36983] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11707), 1, + anon_sym_LPAREN, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(11344), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3506), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4640), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [37083] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11707), 1, + anon_sym_LPAREN, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(11344), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3506), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4668), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [37183] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11707), 1, + anon_sym_LPAREN, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(11344), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3506), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4681), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [37283] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10966), 2, + sym__expression, + sym_unary_expression, + STATE(11999), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [37385] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11713), 1, + anon_sym_LPAREN, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(11477), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3653), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4628), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [37485] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11713), 1, + anon_sym_LPAREN, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(11477), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3653), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4662), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [37585] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11713), 1, + anon_sym_LPAREN, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(11477), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3653), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4685), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [37685] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11713), 1, + anon_sym_LPAREN, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(11477), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3653), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4693), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [37785] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11713), 1, + anon_sym_LPAREN, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(11477), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3653), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4632), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [37885] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11713), 1, + anon_sym_LPAREN, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(11477), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3653), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4636), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [37985] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10770), 2, + sym__expression, + sym_unary_expression, + STATE(11844), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [38087] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11719), 1, + anon_sym_LPAREN, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(11451), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3559), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4675), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [38187] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8964), 7, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + anon_sym_COMMA, + sym_number_literal, + ACTIONS(8962), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [38241] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11719), 1, + anon_sym_LPAREN, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(11451), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3559), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4678), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [38341] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11719), 1, + anon_sym_LPAREN, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(11451), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3559), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4689), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [38441] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11719), 1, + anon_sym_LPAREN, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(11451), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3559), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4690), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [38541] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11719), 1, + anon_sym_LPAREN, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(11451), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3559), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4691), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [38641] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11719), 1, + anon_sym_LPAREN, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(11451), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3559), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4692), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [38741] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10863), 2, + sym__expression, + sym_unary_expression, + STATE(11812), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [38843] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11725), 1, + anon_sym_LPAREN, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(11277), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2166), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3247), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [38943] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11725), 1, + anon_sym_LPAREN, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(11277), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2166), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3180), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [39043] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11725), 1, + anon_sym_LPAREN, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(11277), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2166), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3382), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [39143] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11725), 1, + anon_sym_LPAREN, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(11277), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2166), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3384), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [39243] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11725), 1, + anon_sym_LPAREN, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(11277), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2166), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3385), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [39343] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11725), 1, + anon_sym_LPAREN, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(11277), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2166), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3386), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [39443] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10819), 2, + sym__expression, + sym_unary_expression, + STATE(11943), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [39545] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11731), 1, + anon_sym_LPAREN, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(11313), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2763), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4552), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [39645] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11731), 1, + anon_sym_LPAREN, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(11313), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2763), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4533), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [39745] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11731), 1, + anon_sym_LPAREN, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(11313), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2763), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4575), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [39845] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11731), 1, + anon_sym_LPAREN, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(11313), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2763), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4576), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [39945] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11731), 1, + anon_sym_LPAREN, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(11313), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2763), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4577), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [40045] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11731), 1, + anon_sym_LPAREN, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(11313), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2763), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4578), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [40145] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10758), 2, + sym__expression, + sym_unary_expression, + STATE(11775), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [40247] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11737), 1, + anon_sym_LPAREN, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(11464), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3638), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4682), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [40347] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11737), 1, + anon_sym_LPAREN, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(11464), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3638), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4674), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [40447] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11737), 1, + anon_sym_LPAREN, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(11464), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3638), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4659), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [40547] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11737), 1, + anon_sym_LPAREN, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(11464), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3638), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4639), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [40647] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11737), 1, + anon_sym_LPAREN, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(11464), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3638), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4641), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [40747] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11737), 1, + anon_sym_LPAREN, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(11464), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3638), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4652), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [40847] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12024), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [40947] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10832), 2, + sym__expression, + sym_unary_expression, + STATE(12044), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [41049] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11743), 1, + anon_sym_LPAREN, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(11346), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3524), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4625), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [41149] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11743), 1, + anon_sym_LPAREN, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(11346), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3524), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4643), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [41249] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11743), 1, + anon_sym_LPAREN, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(11346), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3524), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4696), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [41349] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11743), 1, + anon_sym_LPAREN, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(11346), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3524), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4655), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [41449] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11743), 1, + anon_sym_LPAREN, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(11346), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3524), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4624), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [41549] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11743), 1, + anon_sym_LPAREN, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(11346), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3524), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(4630), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [41649] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10765), 2, + sym__expression, + sym_unary_expression, + STATE(12032), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [41751] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10759), 2, + sym__expression, + sym_unary_expression, + STATE(11997), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [41853] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10838), 2, + sym__expression, + sym_unary_expression, + STATE(11766), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [41955] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10931), 2, + sym__expression, + sym_unary_expression, + STATE(11906), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [42057] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10776), 2, + sym__expression, + sym_unary_expression, + STATE(11778), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [42159] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10737), 2, + sym__expression, + sym_unary_expression, + STATE(11874), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [42261] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12006), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [42361] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10779), 2, + sym__expression, + sym_unary_expression, + STATE(11750), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [42463] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12013), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [42563] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10847), 2, + sym__expression, + sym_unary_expression, + STATE(11737), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [42665] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10823), 2, + sym__expression, + sym_unary_expression, + STATE(11957), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [42767] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10769), 2, + sym__expression, + sym_unary_expression, + STATE(12046), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [42869] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10752), 2, + sym__expression, + sym_unary_expression, + STATE(11896), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [42971] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10831), 2, + sym__expression, + sym_unary_expression, + STATE(12025), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [43073] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10749), 2, + sym__expression, + sym_unary_expression, + STATE(11970), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [43175] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10791), 2, + sym__expression, + sym_unary_expression, + STATE(11875), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [43277] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10780), 2, + sym__expression, + sym_unary_expression, + STATE(11843), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [43379] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10809), 2, + sym__expression, + sym_unary_expression, + STATE(11751), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [43481] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10815), 2, + sym__expression, + sym_unary_expression, + STATE(11827), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [43583] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10817), 2, + sym__expression, + sym_unary_expression, + STATE(11870), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [43685] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10859), 2, + sym__expression, + sym_unary_expression, + STATE(11791), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [43787] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10757), 2, + sym__expression, + sym_unary_expression, + STATE(11800), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [43889] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10965), 2, + sym__expression, + sym_unary_expression, + STATE(12020), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [43991] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10738), 2, + sym__expression, + sym_unary_expression, + STATE(12023), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [44093] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10806), 2, + sym__expression, + sym_unary_expression, + STATE(11979), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [44195] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10777), 2, + sym__expression, + sym_unary_expression, + STATE(11768), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [44297] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10834), 2, + sym__expression, + sym_unary_expression, + STATE(12045), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [44399] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10736), 2, + sym__expression, + sym_unary_expression, + STATE(11882), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [44501] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10772), 2, + sym__expression, + sym_unary_expression, + STATE(11743), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [44603] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10812), 2, + sym__expression, + sym_unary_expression, + STATE(11832), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [44705] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10959), 2, + sym__expression, + sym_unary_expression, + STATE(12005), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [44807] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10745), 2, + sym__expression, + sym_unary_expression, + STATE(11873), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [44909] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10756), 2, + sym__expression, + sym_unary_expression, + STATE(12040), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [45011] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10763), 2, + sym__expression, + sym_unary_expression, + STATE(11927), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [45113] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10773), 2, + sym__expression, + sym_unary_expression, + STATE(11807), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [45215] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10788), 2, + sym__expression, + sym_unary_expression, + STATE(11892), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [45317] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10811), 2, + sym__expression, + sym_unary_expression, + STATE(11803), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [45419] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10836), 2, + sym__expression, + sym_unary_expression, + STATE(11771), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [45521] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10852), 2, + sym__expression, + sym_unary_expression, + STATE(11752), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [45623] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10938), 2, + sym__expression, + sym_unary_expression, + STATE(11923), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [45725] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10739), 2, + sym__expression, + sym_unary_expression, + STATE(11878), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [45827] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10753), 2, + sym__expression, + sym_unary_expression, + STATE(11968), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [45929] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10771), 2, + sym__expression, + sym_unary_expression, + STATE(11898), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [46031] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10948), 2, + sym__expression, + sym_unary_expression, + STATE(11949), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [46133] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10746), 2, + sym__expression, + sym_unary_expression, + STATE(11950), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [46235] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11744), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [46335] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10781), 2, + sym__expression, + sym_unary_expression, + STATE(11845), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [46437] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10814), 2, + sym__expression, + sym_unary_expression, + STATE(11830), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [46539] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10839), 2, + sym__expression, + sym_unary_expression, + STATE(11981), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [46641] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10855), 2, + sym__expression, + sym_unary_expression, + STATE(11761), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [46743] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10923), 2, + sym__expression, + sym_unary_expression, + STATE(11885), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [46845] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10967), 2, + sym__expression, + sym_unary_expression, + STATE(12028), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [46947] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10850), 2, + sym__expression, + sym_unary_expression, + STATE(11996), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [47049] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11618), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [47149] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10969), 2, + sym__expression, + sym_unary_expression, + STATE(12030), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [47251] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10747), 2, + sym__expression, + sym_unary_expression, + STATE(11932), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(11959), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [47353] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11872), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [47453] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11974), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [47553] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11940), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [47653] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11798), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [47753] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11886), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [47853] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10762), 2, + sym__expression, + sym_unary_expression, + STATE(11909), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(11926), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [47955] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11805), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [48055] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11881), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [48155] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11769), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [48255] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11826), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [48355] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11846), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [48455] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10849), 2, + sym__expression, + sym_unary_expression, + STATE(11877), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + STATE(12041), 2, + sym_comparison_expression, + sym_condition_binary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [48557] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11880), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [48657] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11893), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [48757] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11966), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [48857] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11975), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [48957] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11976), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [49057] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10742), 2, + sym__expression, + sym_unary_expression, + STATE(11849), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12016), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [49159] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11952), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [49259] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12037), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [49359] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11746), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [49459] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11804), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [49559] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11814), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [49659] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10760), 2, + sym__expression, + sym_unary_expression, + STATE(11837), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + STATE(11850), 2, + sym_comparison_expression, + sym_condition_binary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [49761] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11910), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [49861] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11914), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [49961] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12014), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [50061] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12021), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [50161] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12031), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [50261] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11760), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [50361] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10778), 2, + sym__expression, + sym_unary_expression, + STATE(11848), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + STATE(12009), 2, + sym_comparison_expression, + sym_condition_binary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [50463] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11828), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [50563] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11835), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [50663] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11797), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [50763] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11747), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [50863] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11823), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [50963] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10952), 2, + sym__expression, + sym_unary_expression, + STATE(11959), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + STATE(11985), 2, + sym_comparison_expression, + sym_condition_binary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [51065] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10810), 2, + sym__expression, + sym_unary_expression, + STATE(11796), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(11987), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [51167] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11847), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [51267] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11853), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [51367] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11984), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [51467] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11994), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [51567] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12010), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [51667] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11793), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [51767] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10930), 2, + sym__expression, + sym_unary_expression, + STATE(11789), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + STATE(11903), 2, + sym_comparison_expression, + sym_condition_binary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [51869] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11937), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [51969] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11938), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [52069] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11879), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [52169] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11964), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [52269] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11965), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [52369] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10846), 2, + sym__expression, + sym_unary_expression, + STATE(11900), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + STATE(11917), 2, + sym_comparison_expression, + sym_condition_binary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [52471] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11963), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [52571] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10748), 2, + sym__expression, + sym_unary_expression, + STATE(11962), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(11978), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [52673] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11840), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [52773] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11644), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [52873] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11579), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [52973] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11954), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [53073] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11578), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [53173] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11589), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [53273] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11634), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [53373] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11586), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [53473] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11612), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [53573] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11625), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [53673] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11640), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [53773] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11583), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [53873] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11607), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [53973] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11611), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [54073] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11628), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [54173] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11632), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [54273] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11650), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [54373] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11584), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [54473] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11593), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [54573] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11601), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [54673] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11982), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [54773] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11986), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [54873] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11989), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [54973] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11993), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [55073] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(11995), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [55173] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12002), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [55273] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12007), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [55373] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10574), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(12011), 4, + sym__condition_expression, + sym_comparison_expression, + sym_condition_binary_expression, + sym_parenthesized_condition_expression, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [55473] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11386), 1, + anon_sym_LPAREN, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10775), 2, + sym__expression, + sym_unary_expression, + STATE(11855), 2, + sym_comparison_expression, + sym_condition_binary_expression, + STATE(12100), 2, + sym__condition_expression, + sym_parenthesized_condition_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [55575] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9778), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9776), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [55628] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11745), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11747), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [55681] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11749), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11751), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [55734] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9314), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9312), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [55787] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11753), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11755), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [55840] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11757), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11761), 35, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + [55895] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9030), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9028), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [55948] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11763), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11765), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56001] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9054), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9052), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56054] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11767), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11769), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56107] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9060), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9058), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56160] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9064), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9062), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56213] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9068), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9066), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56266] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11771), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11773), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56319] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9254), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9252), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56372] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9469), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9467), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56425] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9258), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9256), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56478] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9473), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9471), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56531] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9078), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9076), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56584] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9384), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9382), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56637] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9388), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9386), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56690] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9604), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9602), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56743] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9608), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9606), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56796] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9612), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9610), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56849] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11775), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11777), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56902] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9140), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9138), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [56955] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8925), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8923), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57008] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9616), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9614), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57061] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9620), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9618), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57114] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9624), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9622), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57167] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9132), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9130), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57220] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11779), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11781), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57273] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9136), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9134), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57326] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9124), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9122), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57379] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9318), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9316), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57432] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11783), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11785), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57485] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9108), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9106), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57538] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9722), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9720), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57591] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9395), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9393), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57644] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9728), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9726), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57697] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9128), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9126), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57750] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9734), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9732), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57803] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9322), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9320), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57856] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9738), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9736), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57909] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9326), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9324), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [57962] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9774), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9772), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58015] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9330), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9328), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58068] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9399), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9397), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58121] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11787), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11789), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58174] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9790), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9788), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58227] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9282), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9280), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58280] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9486), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9484), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58333] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9010), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9008), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58386] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11791), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11793), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58439] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11795), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11797), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58492] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9166), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9164), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58545] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4591), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(4589), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58598] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9170), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9168), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58651] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9490), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9488), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58704] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11799), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11801), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58757] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9494), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9492), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58810] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11803), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11805), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58863] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6623), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(6621), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58916] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11807), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11809), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [58969] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11811), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11813), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59022] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9403), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9401), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59075] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11815), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11817), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59128] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9461), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9459), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59181] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11819), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11821), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59234] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8711), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8709), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59287] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11823), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11825), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59340] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9465), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9463), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59393] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9198), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9196), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59446] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9202), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9200), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59499] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9206), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9204), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59552] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9210), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9208), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59605] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9214), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9212), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59658] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11827), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(11829), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59711] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9218), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9216), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59764] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9222), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9220), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59817] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9226), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9224), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59870] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9230), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9228), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59923] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9234), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9232), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [59976] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9238), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9236), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [60029] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9242), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9240), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [60082] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9246), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9244), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [60135] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9290), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9288), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [60188] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9294), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9292), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [60241] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9298), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9296), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [60294] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9302), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9300), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [60347] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9306), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9304), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [60400] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9310), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9308), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [60453] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9250), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9248), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [60506] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8788), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(8786), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [60559] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9782), 6, + ts_builtin_sym_end, + sym_newline, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_preprocessor_const_token1, + sym_number_literal, + ACTIONS(9780), 36, + aux_sym_frm_version_statement_token1, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + aux_sym_attribute_statement_token1, + anon_sym_DOT, + aux_sym_option_statement_token1, + aux_sym_option_statement_token3, + aux_sym_implements_statement_token1, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + aux_sym_const_declaration_token1, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + aux_sym_def_type_statement_token1, + aux_sym_def_type_statement_token2, + aux_sym_def_type_statement_token3, + aux_sym_def_type_statement_token4, + aux_sym_def_type_statement_token5, + aux_sym_def_type_statement_token6, + aux_sym_def_type_statement_token7, + aux_sym_def_type_statement_token8, + aux_sym_def_type_statement_token9, + aux_sym_def_type_statement_token10, + aux_sym_def_type_statement_token11, + aux_sym_def_type_statement_token12, + aux_sym_def_type_statement_token13, + aux_sym_def_type_statement_token14, + sym_identifier, + [60612] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(11453), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2567), 2, + sym__expression, + sym_unary_expression, + STATE(4719), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [60710] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(11254), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2169), 2, + sym__expression, + sym_unary_expression, + STATE(4056), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [60808] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(11831), 1, + aux_sym_else_fragment_token1, + ACTIONS(11833), 1, + aux_sym_case_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12095), 1, + sym_case_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11835), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11837), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10523), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [60906] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(11297), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1952), 2, + sym__expression, + sym_unary_expression, + STATE(3617), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [61004] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(11254), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1957), 2, + sym__expression, + sym_unary_expression, + STATE(3418), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [61102] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(11254), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1958), 2, + sym__expression, + sym_unary_expression, + STATE(3488), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [61200] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(11302), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2691), 2, + sym__expression, + sym_unary_expression, + STATE(4807), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [61298] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(11302), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2288), 2, + sym__expression, + sym_unary_expression, + STATE(4593), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [61396] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(11302), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2289), 2, + sym__expression, + sym_unary_expression, + STATE(4618), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [61494] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(11453), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3446), 2, + sym__expression, + sym_unary_expression, + STATE(5803), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [61592] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10697), 2, + sym__expression, + sym_unary_expression, + STATE(12301), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [61690] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(11453), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2561), 2, + sym__expression, + sym_unary_expression, + STATE(4697), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [61788] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(11297), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(924), 2, + sym__expression, + sym_unary_expression, + STATE(2608), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [61886] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(11297), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(975), 2, + sym__expression, + sym_unary_expression, + STATE(2849), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [61984] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(11305), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3448), 2, + sym__expression, + sym_unary_expression, + STATE(5401), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [62082] = 28, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(5130), 1, + anon_sym_COLON, + ACTIONS(5132), 1, + aux_sym_else_fragment_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10512), 1, + sym_file_number_literal, + STATE(12137), 1, + sym_file_number, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11839), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11841), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10491), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [62182] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(11361), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2690), 2, + sym__expression, + sym_unary_expression, + STATE(4764), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [62280] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(11305), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2712), 2, + sym__expression, + sym_unary_expression, + STATE(4753), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [62378] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10734), 2, + sym__expression, + sym_unary_expression, + STATE(12303), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [62476] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(11262), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3647), 2, + sym__expression, + sym_unary_expression, + STATE(5376), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [62574] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(11262), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2560), 2, + sym__expression, + sym_unary_expression, + STATE(4705), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [62672] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(11262), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2566), 2, + sym__expression, + sym_unary_expression, + STATE(4706), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [62770] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(11430), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3736), 2, + sym__expression, + sym_unary_expression, + STATE(5851), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [62868] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10595), 2, + sym__expression, + sym_unary_expression, + STATE(12144), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [62966] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10490), 2, + sym__expression, + sym_unary_expression, + STATE(11703), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [63064] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10492), 2, + sym__expression, + sym_unary_expression, + STATE(11662), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [63162] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(11458), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3654), 2, + sym__expression, + sym_unary_expression, + STATE(5510), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [63260] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(11458), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2909), 2, + sym__expression, + sym_unary_expression, + STATE(4740), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [63358] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(11458), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2911), 2, + sym__expression, + sym_unary_expression, + STATE(4741), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [63456] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(11430), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2986), 2, + sym__expression, + sym_unary_expression, + STATE(4954), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [63554] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(11430), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2987), 2, + sym__expression, + sym_unary_expression, + STATE(4960), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [63652] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(11361), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3523), 2, + sym__expression, + sym_unary_expression, + STATE(5134), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [63750] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(11833), 1, + aux_sym_case_expression_token1, + ACTIONS(11843), 1, + aux_sym_else_fragment_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12105), 1, + sym_case_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11835), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11837), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10523), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [63848] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(11361), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2667), 2, + sym__expression, + sym_unary_expression, + STATE(4763), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [63946] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(11305), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2706), 2, + sym__expression, + sym_unary_expression, + STATE(4752), 2, + sym_comparison_expression, + sym_logical_value_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [64044] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11845), 1, + sym_identifier, + ACTIONS(11847), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11849), 1, + anon_sym_DOT, + ACTIONS(11851), 1, + anon_sym_BANG, + ACTIONS(11853), 1, + anon_sym_LPAREN, + ACTIONS(11855), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11857), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11859), 1, + anon_sym_PLUS, + ACTIONS(11861), 1, + anon_sym_DASH, + ACTIONS(11863), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11865), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11867), 1, + aux_sym_unary_expression_token1, + ACTIONS(11875), 1, + anon_sym_POUND, + STATE(1370), 1, + sym_call_expression, + STATE(1508), 1, + sym_member_expression, + STATE(1516), 1, + sym_comparison_expression, + STATE(1602), 1, + sym__signed_unary_expression, + STATE(11252), 1, + sym__comparison_operand, + STATE(13362), 1, + sym__callable_expression, + ACTIONS(11871), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1526), 2, + sym__expression, + sym_unary_expression, + STATE(1561), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11869), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11873), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1600), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [64141] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(6012), 1, + sym_comparison_expression, + STATE(11368), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3390), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [64238] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(6620), 1, + sym_comparison_expression, + STATE(11359), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3476), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [64335] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(2459), 1, + sym_comparison_expression, + STATE(11451), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2438), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [64432] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(6171), 1, + sym_comparison_expression, + STATE(11318), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3371), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [64529] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11877), 1, + sym_identifier, + ACTIONS(11879), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11887), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11891), 1, + anon_sym_PLUS, + ACTIONS(11893), 1, + anon_sym_DASH, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11899), 1, + aux_sym_unary_expression_token1, + ACTIONS(11907), 1, + anon_sym_POUND, + STATE(7279), 1, + sym_call_expression, + STATE(7291), 1, + sym_member_expression, + STATE(7301), 1, + sym__signed_unary_expression, + STATE(7369), 1, + sym_comparison_expression, + STATE(11446), 1, + sym__comparison_operand, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(7411), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11901), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11905), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7298), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [64626] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(4041), 1, + sym_comparison_expression, + STATE(11435), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1954), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [64723] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(3474), 1, + sym_comparison_expression, + STATE(11515), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(934), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [64820] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(5788), 1, + sym_comparison_expression, + STATE(11359), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2823), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [64917] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(11909), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12505), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [65012] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(11915), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12457), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [65107] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11917), 1, + aux_sym_unary_expression_token1, + STATE(880), 1, + sym_call_expression, + STATE(1178), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(4718), 1, + sym_comparison_expression, + STATE(11453), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1318), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11919), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11921), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1177), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [65204] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11917), 1, + aux_sym_unary_expression_token1, + STATE(880), 1, + sym_call_expression, + STATE(1178), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(4768), 1, + sym_comparison_expression, + STATE(11453), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1319), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11919), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11921), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1177), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [65301] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(4718), 1, + sym_comparison_expression, + STATE(11453), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2572), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [65398] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(4768), 1, + sym_comparison_expression, + STATE(11453), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2575), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [65495] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11923), 1, + aux_sym_unary_expression_token1, + STATE(541), 1, + sym_call_expression, + STATE(576), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(3522), 1, + sym_comparison_expression, + STATE(11254), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(599), 2, + sym__expression, + sym_unary_expression, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11925), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11927), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(575), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [65592] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(6828), 1, + sym_comparison_expression, + STATE(11567), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3701), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [65689] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(6254), 1, + sym_comparison_expression, + STATE(11359), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3295), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [65786] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(11929), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12756), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [65881] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11931), 1, + aux_sym_unary_expression_token1, + STATE(380), 1, + sym_call_expression, + STATE(435), 1, + sym__signed_unary_expression, + STATE(453), 1, + sym_member_expression, + STATE(2568), 1, + sym_comparison_expression, + STATE(11297), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(409), 2, + sym__expression, + sym_unary_expression, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11933), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11935), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(434), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [65978] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11923), 1, + aux_sym_unary_expression_token1, + STATE(541), 1, + sym_call_expression, + STATE(576), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(3525), 1, + sym_comparison_expression, + STATE(11254), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(600), 2, + sym__expression, + sym_unary_expression, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11925), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11927), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(575), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [66075] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(6712), 1, + sym_comparison_expression, + STATE(11567), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3462), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [66172] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(3522), 1, + sym_comparison_expression, + STATE(11254), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1959), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [66269] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11937), 1, + sym_identifier, + ACTIONS(11939), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11941), 1, + anon_sym_DOT, + ACTIONS(11943), 1, + anon_sym_BANG, + ACTIONS(11945), 1, + anon_sym_LPAREN, + ACTIONS(11947), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11949), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11951), 1, + anon_sym_PLUS, + ACTIONS(11953), 1, + anon_sym_DASH, + ACTIONS(11955), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11957), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11959), 1, + aux_sym_unary_expression_token1, + ACTIONS(11967), 1, + anon_sym_POUND, + STATE(1707), 1, + sym_call_expression, + STATE(2021), 1, + sym_member_expression, + STATE(2063), 1, + sym__signed_unary_expression, + STATE(3600), 1, + sym_comparison_expression, + STATE(11518), 1, + sym__comparison_operand, + STATE(13605), 1, + sym__callable_expression, + ACTIONS(11963), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2117), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3599), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11961), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11965), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2062), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [66366] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11931), 1, + aux_sym_unary_expression_token1, + STATE(380), 1, + sym_call_expression, + STATE(435), 1, + sym__signed_unary_expression, + STATE(453), 1, + sym_member_expression, + STATE(2592), 1, + sym_comparison_expression, + STATE(11297), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(410), 2, + sym__expression, + sym_unary_expression, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11933), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11935), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(434), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [66463] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(2568), 1, + sym_comparison_expression, + STATE(11297), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(990), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [66560] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(2592), 1, + sym_comparison_expression, + STATE(11297), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(873), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [66657] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11877), 1, + sym_identifier, + ACTIONS(11879), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11887), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11891), 1, + anon_sym_PLUS, + ACTIONS(11893), 1, + anon_sym_DASH, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11907), 1, + anon_sym_POUND, + ACTIONS(11969), 1, + aux_sym_unary_expression_token1, + STATE(7279), 1, + sym_call_expression, + STATE(7286), 1, + sym_comparison_expression, + STATE(7291), 1, + sym_member_expression, + STATE(7304), 1, + sym__signed_unary_expression, + STATE(11576), 1, + sym__comparison_operand, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(7333), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11971), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11973), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7303), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [66754] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11981), 1, + anon_sym_PLUS, + ACTIONS(11983), 1, + anon_sym_DASH, + ACTIONS(11985), 1, + aux_sym_unary_expression_token1, + ACTIONS(11991), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10084), 1, + sym_comparison_expression, + STATE(10180), 1, + sym_member_expression, + STATE(10302), 1, + sym__signed_unary_expression, + STATE(11529), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10285), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11987), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11989), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10303), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [66851] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(5216), 1, + sym_comparison_expression, + STATE(11567), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2649), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [66948] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(3525), 1, + sym_comparison_expression, + STATE(11254), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1960), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [67045] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(5505), 1, + sym_comparison_expression, + STATE(11505), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2642), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [67142] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11993), 1, + aux_sym_unary_expression_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1193), 1, + sym__signed_unary_expression, + STATE(4720), 1, + sym_comparison_expression, + STATE(11305), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1068), 2, + sym__expression, + sym_unary_expression, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11995), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11997), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1192), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [67239] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11993), 1, + aux_sym_unary_expression_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1193), 1, + sym__signed_unary_expression, + STATE(4721), 1, + sym_comparison_expression, + STATE(11305), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1069), 2, + sym__expression, + sym_unary_expression, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11995), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11997), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1192), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [67336] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(4720), 1, + sym_comparison_expression, + STATE(11305), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2570), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [67433] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(4721), 1, + sym_comparison_expression, + STATE(11305), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2579), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [67530] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11999), 1, + sym_identifier, + ACTIONS(12001), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12003), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12005), 1, + anon_sym_PLUS, + ACTIONS(12007), 1, + anon_sym_DASH, + ACTIONS(12009), 1, + aux_sym_unary_expression_token1, + ACTIONS(12011), 1, + anon_sym_POUND, + STATE(7279), 1, + sym_call_expression, + STATE(7286), 1, + sym_comparison_expression, + STATE(7304), 1, + sym__signed_unary_expression, + STATE(7318), 1, + sym_member_expression, + STATE(11547), 1, + sym__comparison_operand, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7293), 2, + sym__expression, + sym_unary_expression, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11971), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11973), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7303), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [67627] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(6001), 1, + sym_comparison_expression, + STATE(11567), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3347), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [67724] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12013), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12847), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [67819] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(1202), 1, + sym_comparison_expression, + STATE(11277), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1201), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [67916] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10084), 1, + sym_comparison_expression, + STATE(10374), 1, + sym__signed_unary_expression, + STATE(11352), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10113), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12017), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12019), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10364), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [68013] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12021), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12876), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [68108] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11931), 1, + aux_sym_unary_expression_token1, + STATE(380), 1, + sym_call_expression, + STATE(430), 1, + sym_comparison_expression, + STATE(435), 1, + sym__signed_unary_expression, + STATE(453), 1, + sym_member_expression, + STATE(11293), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(429), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11933), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11935), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(434), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [68205] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(4291), 1, + sym_comparison_expression, + STATE(11435), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2086), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [68302] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12023), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12921), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [68397] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(2205), 1, + sym_comparison_expression, + STATE(11313), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2204), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [68494] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(4200), 1, + sym_comparison_expression, + STATE(11515), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1961), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [68591] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(3790), 1, + sym_comparison_expression, + STATE(11515), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1255), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [68688] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12025), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12956), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [68783] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12027), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12718), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [68878] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12029), 1, + aux_sym_unary_expression_token1, + STATE(892), 1, + sym_call_expression, + STATE(1061), 1, + sym__signed_unary_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1351), 1, + sym_comparison_expression, + STATE(11349), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1350), 2, + sym__expression, + sym_unary_expression, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12031), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12033), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1279), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [68975] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12035), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12985), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [69070] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12037), 1, + aux_sym_unary_expression_token1, + STATE(981), 1, + sym_call_expression, + STATE(1111), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(1392), 1, + sym_comparison_expression, + STATE(11380), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1391), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12039), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12041), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1109), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [69167] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12043), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13011), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [69262] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12045), 1, + sym_identifier, + ACTIONS(12047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12059), 1, + anon_sym_PLUS, + ACTIONS(12061), 1, + anon_sym_DASH, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12067), 1, + aux_sym_unary_expression_token1, + ACTIONS(12075), 1, + anon_sym_POUND, + STATE(10141), 1, + sym_call_expression, + STATE(10150), 1, + sym_member_expression, + STATE(10232), 1, + sym__signed_unary_expression, + STATE(10436), 1, + sym_comparison_expression, + STATE(11406), 1, + sym__comparison_operand, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10419), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12069), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12073), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10231), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [69359] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12077), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13034), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [69454] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12079), 1, + sym_identifier, + ACTIONS(12081), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12083), 1, + anon_sym_DOT, + ACTIONS(12085), 1, + anon_sym_BANG, + ACTIONS(12087), 1, + anon_sym_LPAREN, + ACTIONS(12089), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12091), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12093), 1, + anon_sym_PLUS, + ACTIONS(12095), 1, + anon_sym_DASH, + ACTIONS(12097), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12099), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12101), 1, + aux_sym_unary_expression_token1, + ACTIONS(12109), 1, + anon_sym_POUND, + STATE(436), 1, + sym_call_expression, + STATE(476), 1, + sym_member_expression, + STATE(547), 1, + sym__signed_unary_expression, + STATE(1103), 1, + sym_comparison_expression, + STATE(11485), 1, + sym__comparison_operand, + STATE(13465), 1, + sym__callable_expression, + ACTIONS(12105), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(493), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1086), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12103), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12107), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(543), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [69551] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12111), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12564), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [69646] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12113), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13047), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [69741] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(6351), 1, + sym_comparison_expression, + STATE(11283), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3434), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [69838] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12115), 1, + sym_identifier, + ACTIONS(12117), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12119), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12121), 1, + anon_sym_PLUS, + ACTIONS(12123), 1, + anon_sym_DASH, + ACTIONS(12125), 1, + aux_sym_unary_expression_token1, + ACTIONS(12131), 1, + anon_sym_POUND, + STATE(10141), 1, + sym_call_expression, + STATE(10159), 1, + sym_member_expression, + STATE(10228), 1, + sym__signed_unary_expression, + STATE(10235), 1, + sym_comparison_expression, + STATE(11523), 1, + sym__comparison_operand, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10281), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12127), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12129), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10226), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [69935] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12133), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13067), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [70030] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12135), 1, + aux_sym_unary_expression_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(2107), 1, + sym__signed_unary_expression, + STATE(2915), 1, + sym_comparison_expression, + STATE(11557), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2914), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12137), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12139), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2106), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [70127] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12141), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13076), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [70222] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12143), 1, + sym_identifier, + ACTIONS(12145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12147), 1, + anon_sym_DOT, + ACTIONS(12149), 1, + anon_sym_BANG, + ACTIONS(12151), 1, + anon_sym_LPAREN, + ACTIONS(12153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12157), 1, + anon_sym_PLUS, + ACTIONS(12159), 1, + anon_sym_DASH, + ACTIONS(12161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12165), 1, + aux_sym_unary_expression_token1, + ACTIONS(12173), 1, + anon_sym_POUND, + STATE(1268), 1, + sym_call_expression, + STATE(1483), 1, + sym_member_expression, + STATE(1963), 1, + sym__signed_unary_expression, + STATE(3078), 1, + sym_comparison_expression, + STATE(11573), 1, + sym__comparison_operand, + STATE(13614), 1, + sym__callable_expression, + ACTIONS(12169), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1528), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3109), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12167), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12171), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1962), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [70319] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12175), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12671), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [70414] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12177), 1, + aux_sym_unary_expression_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1130), 1, + sym_comparison_expression, + STATE(1249), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(11400), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1180), 2, + sym__expression, + sym_unary_expression, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12179), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12181), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1245), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [70511] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12183), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12934), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [70606] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12185), 1, + sym_identifier, + ACTIONS(12187), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12189), 1, + anon_sym_DOT, + ACTIONS(12191), 1, + anon_sym_BANG, + ACTIONS(12193), 1, + anon_sym_LPAREN, + ACTIONS(12195), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12197), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12199), 1, + anon_sym_PLUS, + ACTIONS(12201), 1, + anon_sym_DASH, + ACTIONS(12203), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12205), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(12215), 1, + anon_sym_POUND, + STATE(1995), 1, + sym_call_expression, + STATE(2082), 1, + sym_member_expression, + STATE(2122), 1, + sym__signed_unary_expression, + STATE(3601), 1, + sym_comparison_expression, + STATE(11299), 1, + sym__comparison_operand, + STATE(13271), 1, + sym__callable_expression, + ACTIONS(12211), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2139), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3641), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12209), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12213), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2120), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [70703] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12217), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12427), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [70798] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11937), 1, + sym_identifier, + ACTIONS(11939), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11941), 1, + anon_sym_DOT, + ACTIONS(11943), 1, + anon_sym_BANG, + ACTIONS(11945), 1, + anon_sym_LPAREN, + ACTIONS(11947), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11949), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11951), 1, + anon_sym_PLUS, + ACTIONS(11953), 1, + anon_sym_DASH, + ACTIONS(11955), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11957), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11967), 1, + anon_sym_POUND, + ACTIONS(12219), 1, + aux_sym_unary_expression_token1, + STATE(1707), 1, + sym_call_expression, + STATE(2021), 1, + sym_member_expression, + STATE(2141), 1, + sym__signed_unary_expression, + STATE(2158), 1, + sym_comparison_expression, + STATE(11429), 1, + sym__comparison_operand, + STATE(13605), 1, + sym__callable_expression, + ACTIONS(11963), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2101), 2, + sym__expression, + sym_unary_expression, + STATE(2117), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12221), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12223), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2140), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [70895] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11845), 1, + sym_identifier, + ACTIONS(11847), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11849), 1, + anon_sym_DOT, + ACTIONS(11851), 1, + anon_sym_BANG, + ACTIONS(11853), 1, + anon_sym_LPAREN, + ACTIONS(11855), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11857), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11859), 1, + anon_sym_PLUS, + ACTIONS(11861), 1, + anon_sym_DASH, + ACTIONS(11863), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11865), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11875), 1, + anon_sym_POUND, + ACTIONS(12225), 1, + aux_sym_unary_expression_token1, + STATE(1370), 1, + sym_call_expression, + STATE(1508), 1, + sym_member_expression, + STATE(1996), 1, + sym__signed_unary_expression, + STATE(3192), 1, + sym_comparison_expression, + STATE(11494), 1, + sym__comparison_operand, + STATE(13362), 1, + sym__callable_expression, + ACTIONS(11871), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1561), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3226), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12227), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12229), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1994), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [70992] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11923), 1, + aux_sym_unary_expression_token1, + STATE(541), 1, + sym_call_expression, + STATE(576), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(607), 1, + sym_comparison_expression, + STATE(11279), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(611), 2, + sym__expression, + sym_unary_expression, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11925), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11927), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(575), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [71089] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12231), 1, + aux_sym_unary_expression_token1, + STATE(777), 1, + sym_call_expression, + STATE(787), 1, + sym__signed_unary_expression, + STATE(793), 1, + sym_comparison_expression, + STATE(814), 1, + sym_member_expression, + STATE(11462), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(844), 2, + sym__expression, + sym_unary_expression, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12233), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12235), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(856), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [71186] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12237), 1, + sym_identifier, + ACTIONS(12239), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12241), 1, + anon_sym_DOT, + ACTIONS(12243), 1, + anon_sym_BANG, + ACTIONS(12245), 1, + anon_sym_LPAREN, + ACTIONS(12247), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12249), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12251), 1, + anon_sym_PLUS, + ACTIONS(12253), 1, + anon_sym_DASH, + ACTIONS(12255), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12257), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12259), 1, + aux_sym_unary_expression_token1, + ACTIONS(12267), 1, + anon_sym_POUND, + STATE(1445), 1, + sym_call_expression, + STATE(1485), 1, + sym__signed_unary_expression, + STATE(1565), 1, + sym_member_expression, + STATE(3273), 1, + sym_comparison_expression, + STATE(11287), 1, + sym__comparison_operand, + STATE(13524), 1, + sym__callable_expression, + ACTIONS(12263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1644), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3300), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12261), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12265), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1484), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [71283] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12045), 1, + sym_identifier, + ACTIONS(12047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12059), 1, + anon_sym_PLUS, + ACTIONS(12061), 1, + anon_sym_DASH, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12075), 1, + anon_sym_POUND, + ACTIONS(12269), 1, + aux_sym_unary_expression_token1, + STATE(10141), 1, + sym_call_expression, + STATE(10150), 1, + sym_member_expression, + STATE(10228), 1, + sym__signed_unary_expression, + STATE(10235), 1, + sym_comparison_expression, + STATE(11317), 1, + sym__comparison_operand, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10212), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12127), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12129), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10226), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [71380] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12271), 1, + sym_identifier, + ACTIONS(12273), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12275), 1, + anon_sym_DOT, + ACTIONS(12277), 1, + anon_sym_BANG, + ACTIONS(12279), 1, + anon_sym_LPAREN, + ACTIONS(12281), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12283), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12285), 1, + anon_sym_PLUS, + ACTIONS(12287), 1, + anon_sym_DASH, + ACTIONS(12289), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12291), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12293), 1, + aux_sym_unary_expression_token1, + ACTIONS(12301), 1, + anon_sym_POUND, + STATE(586), 1, + sym_call_expression, + STATE(662), 1, + sym_member_expression, + STATE(665), 1, + sym__signed_unary_expression, + STATE(2125), 1, + sym_comparison_expression, + STATE(11365), 1, + sym__comparison_operand, + STATE(13649), 1, + sym__callable_expression, + ACTIONS(12297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(673), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2144), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12295), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12299), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(664), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [71477] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12303), 1, + aux_sym_unary_expression_token1, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(482), 1, + sym__signed_unary_expression, + STATE(810), 1, + sym_comparison_expression, + STATE(11324), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(808), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12305), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12307), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(481), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [71574] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(810), 1, + sym_comparison_expression, + STATE(11487), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(808), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [71671] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12309), 1, + sym_identifier, + ACTIONS(12311), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12313), 1, + anon_sym_DOT, + ACTIONS(12315), 1, + anon_sym_BANG, + ACTIONS(12317), 1, + anon_sym_LPAREN, + ACTIONS(12319), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12321), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12323), 1, + anon_sym_PLUS, + ACTIONS(12325), 1, + anon_sym_DASH, + ACTIONS(12327), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12329), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12339), 1, + anon_sym_POUND, + STATE(441), 1, + sym_call_expression, + STATE(486), 1, + sym__signed_unary_expression, + STATE(520), 1, + sym_member_expression, + STATE(1288), 1, + sym_comparison_expression, + STATE(11397), 1, + sym__comparison_operand, + STATE(13349), 1, + sym__callable_expression, + ACTIONS(12335), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(533), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1308), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12333), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12337), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(485), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [71768] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(12341), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10073), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(11633), 1, + sym_comparison_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10089), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12343), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12345), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10075), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [71865] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12079), 1, + sym_identifier, + ACTIONS(12081), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12083), 1, + anon_sym_DOT, + ACTIONS(12085), 1, + anon_sym_BANG, + ACTIONS(12087), 1, + anon_sym_LPAREN, + ACTIONS(12089), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12091), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12093), 1, + anon_sym_PLUS, + ACTIONS(12095), 1, + anon_sym_DASH, + ACTIONS(12097), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12099), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12109), 1, + anon_sym_POUND, + ACTIONS(12347), 1, + aux_sym_unary_expression_token1, + STATE(436), 1, + sym_call_expression, + STATE(476), 1, + sym_member_expression, + STATE(492), 1, + sym__signed_unary_expression, + STATE(563), 1, + sym_comparison_expression, + STATE(11422), 1, + sym__comparison_operand, + STATE(13465), 1, + sym__callable_expression, + ACTIONS(12105), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(473), 2, + sym__expression, + sym_unary_expression, + STATE(493), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12349), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12351), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(491), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [71962] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(12341), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10073), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(11591), 1, + sym_comparison_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10106), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12343), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12345), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10075), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [72059] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12353), 1, + sym_identifier, + ACTIONS(12355), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12357), 1, + anon_sym_DOT, + ACTIONS(12359), 1, + anon_sym_BANG, + ACTIONS(12361), 1, + anon_sym_LPAREN, + ACTIONS(12363), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12365), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12367), 1, + anon_sym_PLUS, + ACTIONS(12369), 1, + anon_sym_DASH, + ACTIONS(12371), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12373), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12375), 1, + aux_sym_unary_expression_token1, + ACTIONS(12383), 1, + anon_sym_POUND, + STATE(807), 1, + sym_call_expression, + STATE(875), 1, + sym__signed_unary_expression, + STATE(906), 1, + sym_member_expression, + STATE(2432), 1, + sym_comparison_expression, + STATE(11441), 1, + sym__comparison_operand, + STATE(13081), 1, + sym__callable_expression, + ACTIONS(12379), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(939), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2544), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12377), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12381), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(874), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [72156] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(11633), 1, + sym_comparison_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10725), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [72253] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(2357), 1, + sym_comparison_expression, + STATE(11464), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2413), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [72350] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11250), 1, + sym__comparison_operand, + STATE(11591), 1, + sym_comparison_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10730), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [72447] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12385), 1, + aux_sym_unary_expression_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1540), 1, + sym__signed_unary_expression, + STATE(2388), 1, + sym_comparison_expression, + STATE(11482), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2387), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12387), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12389), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1539), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [72544] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(11833), 1, + aux_sym_case_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12980), 1, + sym_case_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11835), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11837), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10523), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [72639] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12391), 1, + sym_identifier, + ACTIONS(12393), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12395), 1, + anon_sym_DOT, + ACTIONS(12397), 1, + anon_sym_BANG, + ACTIONS(12399), 1, + anon_sym_LPAREN, + ACTIONS(12401), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12403), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12405), 1, + anon_sym_PLUS, + ACTIONS(12407), 1, + anon_sym_DASH, + ACTIONS(12409), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12411), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(12421), 1, + anon_sym_POUND, + STATE(1124), 1, + sym_call_expression, + STATE(1557), 1, + sym__signed_unary_expression, + STATE(1623), 1, + sym_member_expression, + STATE(2924), 1, + sym_comparison_expression, + STATE(11506), 1, + sym__comparison_operand, + STATE(13392), 1, + sym__callable_expression, + ACTIONS(12417), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1739), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2940), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12415), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12419), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1556), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [72736] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(5411), 1, + sym_comparison_expression, + STATE(11283), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2769), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [72833] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12143), 1, + sym_identifier, + ACTIONS(12145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12147), 1, + anon_sym_DOT, + ACTIONS(12149), 1, + anon_sym_BANG, + ACTIONS(12151), 1, + anon_sym_LPAREN, + ACTIONS(12153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12157), 1, + anon_sym_PLUS, + ACTIONS(12159), 1, + anon_sym_DASH, + ACTIONS(12161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12173), 1, + anon_sym_POUND, + ACTIONS(12423), 1, + aux_sym_unary_expression_token1, + STATE(1268), 1, + sym_call_expression, + STATE(1483), 1, + sym_member_expression, + STATE(1491), 1, + sym_comparison_expression, + STATE(1567), 1, + sym__signed_unary_expression, + STATE(11543), 1, + sym__comparison_operand, + STATE(13614), 1, + sym__callable_expression, + ACTIONS(12169), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1505), 2, + sym__expression, + sym_unary_expression, + STATE(1528), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12425), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12427), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1566), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [72930] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + STATE(380), 1, + sym_call_expression, + STATE(453), 1, + sym_member_expression, + STATE(456), 1, + sym__signed_unary_expression, + STATE(3970), 1, + sym_comparison_expression, + STATE(11515), 1, + sym__comparison_operand, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1965), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4058), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4062), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(454), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [73027] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12435), 1, + anon_sym_PLUS, + ACTIONS(12437), 1, + anon_sym_DASH, + ACTIONS(12439), 1, + aux_sym_unary_expression_token1, + ACTIONS(12445), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10091), 1, + sym_comparison_expression, + STATE(10199), 1, + sym_member_expression, + STATE(10278), 1, + sym__signed_unary_expression, + STATE(11230), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10288), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12441), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12443), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10275), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [73124] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(4374), 1, + sym_comparison_expression, + STATE(11435), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2172), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [73221] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12185), 1, + sym_identifier, + ACTIONS(12187), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12189), 1, + anon_sym_DOT, + ACTIONS(12191), 1, + anon_sym_BANG, + ACTIONS(12193), 1, + anon_sym_LPAREN, + ACTIONS(12195), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12197), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12199), 1, + anon_sym_PLUS, + ACTIONS(12201), 1, + anon_sym_DASH, + ACTIONS(12203), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12205), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12215), 1, + anon_sym_POUND, + ACTIONS(12447), 1, + aux_sym_unary_expression_token1, + STATE(1995), 1, + sym_call_expression, + STATE(2033), 1, + sym__signed_unary_expression, + STATE(2082), 1, + sym_member_expression, + STATE(2110), 1, + sym_comparison_expression, + STATE(11474), 1, + sym__comparison_operand, + STATE(13271), 1, + sym__callable_expression, + ACTIONS(12211), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2001), 2, + sym__expression, + sym_unary_expression, + STATE(2139), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12449), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12451), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2031), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [73318] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12029), 1, + aux_sym_unary_expression_token1, + STATE(892), 1, + sym_call_expression, + STATE(1061), 1, + sym__signed_unary_expression, + STATE(1197), 1, + sym_member_expression, + STATE(4707), 1, + sym_comparison_expression, + STATE(11262), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1301), 2, + sym__expression, + sym_unary_expression, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12031), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12033), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1279), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [73415] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12453), 1, + aux_sym_unary_expression_token1, + STATE(981), 1, + sym_call_expression, + STATE(1343), 1, + sym_member_expression, + STATE(1581), 1, + sym__signed_unary_expression, + STATE(2515), 1, + sym_comparison_expression, + STATE(11415), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2514), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12455), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12457), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [73512] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12029), 1, + aux_sym_unary_expression_token1, + STATE(892), 1, + sym_call_expression, + STATE(1061), 1, + sym__signed_unary_expression, + STATE(1197), 1, + sym_member_expression, + STATE(4708), 1, + sym_comparison_expression, + STATE(11262), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1303), 2, + sym__expression, + sym_unary_expression, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12031), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12033), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1279), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [73609] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12459), 1, + sym_identifier, + ACTIONS(12461), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12463), 1, + anon_sym_DOT, + ACTIONS(12465), 1, + anon_sym_BANG, + ACTIONS(12467), 1, + anon_sym_LPAREN, + ACTIONS(12469), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12471), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12473), 1, + anon_sym_PLUS, + ACTIONS(12475), 1, + anon_sym_DASH, + ACTIONS(12477), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12479), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(12489), 1, + anon_sym_POUND, + STATE(1217), 1, + sym_call_expression, + STATE(1591), 1, + sym__signed_unary_expression, + STATE(1660), 1, + sym_member_expression, + STATE(2992), 1, + sym_comparison_expression, + STATE(11534), 1, + sym__comparison_operand, + STATE(13532), 1, + sym__callable_expression, + ACTIONS(12485), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1778), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3029), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12483), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12487), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1590), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [73706] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(4707), 1, + sym_comparison_expression, + STATE(11262), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2591), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [73803] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(4742), 1, + sym_comparison_expression, + STATE(11361), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2694), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [73900] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(4708), 1, + sym_comparison_expression, + STATE(11262), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2772), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [73997] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1348), 1, + sym__signed_unary_expression, + STATE(2365), 1, + sym_comparison_expression, + STATE(11346), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2397), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1347), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [74094] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11981), 1, + anon_sym_PLUS, + ACTIONS(11983), 1, + anon_sym_DASH, + ACTIONS(11991), 1, + anon_sym_POUND, + ACTIONS(12491), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10073), 1, + sym__signed_unary_expression, + STATE(10084), 1, + sym_comparison_expression, + STATE(10180), 1, + sym_member_expression, + STATE(11536), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10285), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12343), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12345), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10075), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [74191] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12493), 1, + aux_sym_unary_expression_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1419), 1, + sym_member_expression, + STATE(1625), 1, + sym__signed_unary_expression, + STATE(2459), 1, + sym_comparison_expression, + STATE(11390), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2438), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12495), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12497), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1624), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [74288] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11999), 1, + sym_identifier, + ACTIONS(12001), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12003), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12005), 1, + anon_sym_PLUS, + ACTIONS(12007), 1, + anon_sym_DASH, + ACTIONS(12011), 1, + anon_sym_POUND, + ACTIONS(12499), 1, + aux_sym_unary_expression_token1, + STATE(7279), 1, + sym_call_expression, + STATE(7301), 1, + sym__signed_unary_expression, + STATE(7318), 1, + sym_member_expression, + STATE(7369), 1, + sym_comparison_expression, + STATE(11260), 1, + sym__comparison_operand, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(7357), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11901), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11905), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7298), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [74385] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12501), 1, + sym_identifier, + ACTIONS(12503), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12505), 1, + anon_sym_DOT, + ACTIONS(12507), 1, + anon_sym_BANG, + ACTIONS(12509), 1, + anon_sym_LPAREN, + ACTIONS(12511), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12513), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12515), 1, + anon_sym_PLUS, + ACTIONS(12517), 1, + anon_sym_DASH, + ACTIONS(12519), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12521), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12531), 1, + anon_sym_POUND, + STATE(1430), 1, + sym_call_expression, + STATE(1648), 1, + sym__signed_unary_expression, + STATE(1714), 1, + sym_member_expression, + STATE(3094), 1, + sym_comparison_expression, + STATE(11471), 1, + sym__comparison_operand, + STATE(13291), 1, + sym__callable_expression, + ACTIONS(12527), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1876), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3143), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12525), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12529), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1647), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [74482] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11877), 1, + sym_identifier, + ACTIONS(11879), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11887), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11891), 1, + anon_sym_PLUS, + ACTIONS(11893), 1, + anon_sym_DASH, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11899), 1, + aux_sym_unary_expression_token1, + ACTIONS(11907), 1, + anon_sym_POUND, + STATE(7279), 1, + sym_call_expression, + STATE(7291), 1, + sym_member_expression, + STATE(7301), 1, + sym__signed_unary_expression, + STATE(7979), 1, + sym_comparison_expression, + STATE(11475), 1, + sym__comparison_operand, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(7414), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11901), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11905), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7298), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [74579] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12237), 1, + sym_identifier, + ACTIONS(12239), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12241), 1, + anon_sym_DOT, + ACTIONS(12243), 1, + anon_sym_BANG, + ACTIONS(12245), 1, + anon_sym_LPAREN, + ACTIONS(12247), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12249), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12251), 1, + anon_sym_PLUS, + ACTIONS(12253), 1, + anon_sym_DASH, + ACTIONS(12255), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12257), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12267), 1, + anon_sym_POUND, + ACTIONS(12533), 1, + aux_sym_unary_expression_token1, + STATE(1445), 1, + sym_call_expression, + STATE(1542), 1, + sym_comparison_expression, + STATE(1565), 1, + sym_member_expression, + STATE(1663), 1, + sym__signed_unary_expression, + STATE(11524), 1, + sym__comparison_operand, + STATE(13524), 1, + sym__callable_expression, + ACTIONS(12263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1559), 2, + sym__expression, + sym_unary_expression, + STATE(1644), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12535), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12537), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1661), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [74676] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(12151), 1, + sym_comparison_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10726), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [74773] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12539), 1, + sym_identifier, + ACTIONS(12541), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12543), 1, + anon_sym_DOT, + ACTIONS(12545), 1, + anon_sym_BANG, + ACTIONS(12547), 1, + anon_sym_LPAREN, + ACTIONS(12549), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12551), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12553), 1, + anon_sym_PLUS, + ACTIONS(12555), 1, + anon_sym_DASH, + ACTIONS(12557), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12559), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12561), 1, + aux_sym_unary_expression_token1, + ACTIONS(12569), 1, + anon_sym_POUND, + STATE(10092), 1, + sym_call_expression, + STATE(10124), 1, + sym_member_expression, + STATE(10205), 1, + sym__signed_unary_expression, + STATE(10405), 1, + sym_comparison_expression, + STATE(11538), 1, + sym__comparison_operand, + STATE(13335), 1, + sym__callable_expression, + ACTIONS(12565), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10138), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10406), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12563), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12567), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10179), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [74870] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(6837), 1, + sym_comparison_expression, + STATE(11283), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3444), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [74967] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12571), 1, + aux_sym_unary_expression_token1, + STATE(541), 1, + sym_call_expression, + STATE(592), 1, + sym_member_expression, + STATE(679), 1, + sym__signed_unary_expression, + STATE(1202), 1, + sym_comparison_expression, + STATE(11545), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1201), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12573), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12575), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(678), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [75064] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(5917), 1, + sym_comparison_expression, + STATE(11283), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3311), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [75161] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12577), 1, + sym_identifier, + ACTIONS(12579), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12581), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_BANG, + ACTIONS(12585), 1, + anon_sym_LPAREN, + ACTIONS(12587), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12589), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12591), 1, + anon_sym_PLUS, + ACTIONS(12593), 1, + anon_sym_DASH, + ACTIONS(12595), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12597), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(12607), 1, + anon_sym_POUND, + STATE(612), 1, + sym_call_expression, + STATE(660), 1, + sym_member_expression, + STATE(684), 1, + sym__signed_unary_expression, + STATE(2016), 1, + sym_comparison_expression, + STATE(11549), 1, + sym__comparison_operand, + STATE(13357), 1, + sym__callable_expression, + ACTIONS(12603), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(716), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2026), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12601), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12605), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(683), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [75258] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12609), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13010), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [75353] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12271), 1, + sym_identifier, + ACTIONS(12273), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12275), 1, + anon_sym_DOT, + ACTIONS(12277), 1, + anon_sym_BANG, + ACTIONS(12279), 1, + anon_sym_LPAREN, + ACTIONS(12281), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12283), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12285), 1, + anon_sym_PLUS, + ACTIONS(12287), 1, + anon_sym_DASH, + ACTIONS(12289), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12291), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12301), 1, + anon_sym_POUND, + ACTIONS(12611), 1, + aux_sym_unary_expression_token1, + STATE(586), 1, + sym_call_expression, + STATE(662), 1, + sym_member_expression, + STATE(690), 1, + sym__signed_unary_expression, + STATE(743), 1, + sym_comparison_expression, + STATE(11554), 1, + sym__comparison_operand, + STATE(13649), 1, + sym__callable_expression, + ACTIONS(12297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(663), 2, + sym__expression, + sym_unary_expression, + STATE(673), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12613), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12615), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(689), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [75450] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12309), 1, + sym_identifier, + ACTIONS(12311), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12313), 1, + anon_sym_DOT, + ACTIONS(12315), 1, + anon_sym_BANG, + ACTIONS(12317), 1, + anon_sym_LPAREN, + ACTIONS(12319), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12321), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12323), 1, + anon_sym_PLUS, + ACTIONS(12325), 1, + anon_sym_DASH, + ACTIONS(12327), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12329), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12339), 1, + anon_sym_POUND, + ACTIONS(12617), 1, + aux_sym_unary_expression_token1, + STATE(441), 1, + sym_call_expression, + STATE(518), 1, + sym_comparison_expression, + STATE(520), 1, + sym_member_expression, + STATE(538), 1, + sym__signed_unary_expression, + STATE(11560), 1, + sym__comparison_operand, + STATE(13349), 1, + sym__callable_expression, + ACTIONS(12335), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(466), 2, + sym__expression, + sym_unary_expression, + STATE(533), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12619), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12621), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(537), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [75547] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12623), 1, + aux_sym_unary_expression_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(949), 1, + sym__signed_unary_expression, + STATE(2205), 1, + sym_comparison_expression, + STATE(11568), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2204), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12625), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12627), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(948), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [75644] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(4743), 1, + sym_comparison_expression, + STATE(11361), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2715), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [75741] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12353), 1, + sym_identifier, + ACTIONS(12355), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12357), 1, + anon_sym_DOT, + ACTIONS(12359), 1, + anon_sym_BANG, + ACTIONS(12361), 1, + anon_sym_LPAREN, + ACTIONS(12363), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12365), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12367), 1, + anon_sym_PLUS, + ACTIONS(12369), 1, + anon_sym_DASH, + ACTIONS(12371), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12373), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12383), 1, + anon_sym_POUND, + ACTIONS(12629), 1, + aux_sym_unary_expression_token1, + STATE(807), 1, + sym_call_expression, + STATE(906), 1, + sym_member_expression, + STATE(908), 1, + sym_comparison_expression, + STATE(965), 1, + sym__signed_unary_expression, + STATE(11401), 1, + sym__comparison_operand, + STATE(13081), 1, + sym__callable_expression, + ACTIONS(12379), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(909), 2, + sym__expression, + sym_unary_expression, + STATE(939), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12631), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12633), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(964), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [75838] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(5595), 1, + sym_comparison_expression, + STATE(11505), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2700), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [75935] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11917), 1, + aux_sym_unary_expression_token1, + STATE(880), 1, + sym_call_expression, + STATE(1178), 1, + sym__signed_unary_expression, + STATE(1331), 1, + sym_comparison_expression, + STATE(1344), 1, + sym_member_expression, + STATE(11231), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1364), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11919), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11921), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1177), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [76032] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12635), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10091), 1, + sym_comparison_expression, + STATE(10103), 1, + sym__signed_unary_expression, + STATE(11323), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10144), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12637), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12639), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10101), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [76129] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12391), 1, + sym_identifier, + ACTIONS(12393), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12395), 1, + anon_sym_DOT, + ACTIONS(12397), 1, + anon_sym_BANG, + ACTIONS(12399), 1, + anon_sym_LPAREN, + ACTIONS(12401), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12403), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12405), 1, + anon_sym_PLUS, + ACTIONS(12407), 1, + anon_sym_DASH, + ACTIONS(12409), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12411), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12421), 1, + anon_sym_POUND, + ACTIONS(12641), 1, + aux_sym_unary_expression_token1, + STATE(1124), 1, + sym_call_expression, + STATE(1619), 1, + sym_comparison_expression, + STATE(1623), 1, + sym_member_expression, + STATE(1784), 1, + sym__signed_unary_expression, + STATE(11232), 1, + sym__comparison_operand, + STATE(13392), 1, + sym__callable_expression, + ACTIONS(12417), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1628), 2, + sym__expression, + sym_unary_expression, + STATE(1739), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12643), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12645), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1783), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [76226] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12435), 1, + anon_sym_PLUS, + ACTIONS(12437), 1, + anon_sym_DASH, + ACTIONS(12445), 1, + anon_sym_POUND, + ACTIONS(12647), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10091), 1, + sym_comparison_expression, + STATE(10103), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(11325), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10288), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12637), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12639), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10101), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [76323] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11336), 1, + sym__comparison_operand, + STATE(12561), 1, + sym_comparison_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10644), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [76420] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12459), 1, + sym_identifier, + ACTIONS(12461), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12463), 1, + anon_sym_DOT, + ACTIONS(12465), 1, + anon_sym_BANG, + ACTIONS(12467), 1, + anon_sym_LPAREN, + ACTIONS(12469), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12471), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12473), 1, + anon_sym_PLUS, + ACTIONS(12475), 1, + anon_sym_DASH, + ACTIONS(12477), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12479), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12489), 1, + anon_sym_POUND, + ACTIONS(12649), 1, + aux_sym_unary_expression_token1, + STATE(1217), 1, + sym_call_expression, + STATE(1629), 1, + sym_comparison_expression, + STATE(1660), 1, + sym_member_expression, + STATE(1806), 1, + sym__signed_unary_expression, + STATE(11233), 1, + sym__comparison_operand, + STATE(13532), 1, + sym__callable_expression, + ACTIONS(12485), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1652), 2, + sym__expression, + sym_unary_expression, + STATE(1778), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12651), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12653), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1805), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [76517] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11993), 1, + aux_sym_unary_expression_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1193), 1, + sym__signed_unary_expression, + STATE(1414), 1, + sym_comparison_expression, + STATE(11234), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1434), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11995), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11997), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1192), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [76614] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12655), 1, + sym_identifier, + ACTIONS(12657), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12659), 1, + anon_sym_DOT, + ACTIONS(12661), 1, + anon_sym_BANG, + ACTIONS(12663), 1, + anon_sym_LPAREN, + ACTIONS(12665), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12667), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12669), 1, + anon_sym_PLUS, + ACTIONS(12671), 1, + anon_sym_DASH, + ACTIONS(12673), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12675), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12677), 1, + aux_sym_unary_expression_token1, + ACTIONS(12685), 1, + anon_sym_POUND, + STATE(1148), 1, + sym_call_expression, + STATE(1818), 1, + sym_member_expression, + STATE(1827), 1, + sym__signed_unary_expression, + STATE(3381), 1, + sym_comparison_expression, + STATE(11235), 1, + sym__comparison_operand, + STATE(13508), 1, + sym__callable_expression, + ACTIONS(12681), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1910), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3392), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12679), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12683), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1826), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [76711] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12501), 1, + sym_identifier, + ACTIONS(12503), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12505), 1, + anon_sym_DOT, + ACTIONS(12507), 1, + anon_sym_BANG, + ACTIONS(12509), 1, + anon_sym_LPAREN, + ACTIONS(12511), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12513), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12515), 1, + anon_sym_PLUS, + ACTIONS(12517), 1, + anon_sym_DASH, + ACTIONS(12519), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12521), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12531), 1, + anon_sym_POUND, + ACTIONS(12687), 1, + aux_sym_unary_expression_token1, + STATE(1430), 1, + sym_call_expression, + STATE(1670), 1, + sym_comparison_expression, + STATE(1714), 1, + sym_member_expression, + STATE(1847), 1, + sym__signed_unary_expression, + STATE(11236), 1, + sym__comparison_operand, + STATE(13291), 1, + sym__callable_expression, + ACTIONS(12527), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1673), 2, + sym__expression, + sym_unary_expression, + STATE(1876), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12689), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12691), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1846), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [76808] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11877), 1, + sym_identifier, + ACTIONS(11879), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11887), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11891), 1, + anon_sym_PLUS, + ACTIONS(11893), 1, + anon_sym_DASH, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11899), 1, + aux_sym_unary_expression_token1, + ACTIONS(11907), 1, + anon_sym_POUND, + STATE(7279), 1, + sym_call_expression, + STATE(7291), 1, + sym_member_expression, + STATE(7301), 1, + sym__signed_unary_expression, + STATE(7684), 1, + sym_comparison_expression, + STATE(11475), 1, + sym__comparison_operand, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(7390), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11901), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11905), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7298), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [76905] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12539), 1, + sym_identifier, + ACTIONS(12541), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12543), 1, + anon_sym_DOT, + ACTIONS(12545), 1, + anon_sym_BANG, + ACTIONS(12547), 1, + anon_sym_LPAREN, + ACTIONS(12549), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12551), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12553), 1, + anon_sym_PLUS, + ACTIONS(12555), 1, + anon_sym_DASH, + ACTIONS(12557), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12559), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12569), 1, + anon_sym_POUND, + ACTIONS(12693), 1, + aux_sym_unary_expression_token1, + STATE(10092), 1, + sym_call_expression, + STATE(10124), 1, + sym_member_expression, + STATE(10183), 1, + sym_comparison_expression, + STATE(10188), 1, + sym__signed_unary_expression, + STATE(11237), 1, + sym__comparison_operand, + STATE(13335), 1, + sym__callable_expression, + ACTIONS(12565), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10138), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10189), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12695), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12697), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10187), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [77002] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12577), 1, + sym_identifier, + ACTIONS(12579), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12581), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_BANG, + ACTIONS(12585), 1, + anon_sym_LPAREN, + ACTIONS(12587), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12589), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12591), 1, + anon_sym_PLUS, + ACTIONS(12593), 1, + anon_sym_DASH, + ACTIONS(12595), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12597), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12607), 1, + anon_sym_POUND, + ACTIONS(12699), 1, + aux_sym_unary_expression_token1, + STATE(612), 1, + sym_call_expression, + STATE(660), 1, + sym_member_expression, + STATE(687), 1, + sym_comparison_expression, + STATE(714), 1, + sym__signed_unary_expression, + STATE(11238), 1, + sym__comparison_operand, + STATE(13357), 1, + sym__callable_expression, + ACTIONS(12603), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(691), 2, + sym__expression, + sym_unary_expression, + STATE(716), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12703), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(713), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [77099] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12705), 1, + sym_identifier, + ACTIONS(12707), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12709), 1, + anon_sym_DOT, + ACTIONS(12711), 1, + anon_sym_BANG, + ACTIONS(12713), 1, + anon_sym_LPAREN, + ACTIONS(12715), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12717), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12719), 1, + anon_sym_PLUS, + ACTIONS(12721), 1, + anon_sym_DASH, + ACTIONS(12723), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12725), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12727), 1, + aux_sym_unary_expression_token1, + ACTIONS(12735), 1, + anon_sym_POUND, + STATE(1166), 1, + sym_call_expression, + STATE(1825), 1, + sym_member_expression, + STATE(1872), 1, + sym__signed_unary_expression, + STATE(2949), 1, + sym_comparison_expression, + STATE(11239), 1, + sym__comparison_operand, + STATE(13541), 1, + sym__callable_expression, + ACTIONS(12731), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1917), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2964), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12729), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12733), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1871), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [77196] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12737), 1, + sym_identifier, + ACTIONS(12739), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12741), 1, + anon_sym_DOT, + ACTIONS(12743), 1, + anon_sym_BANG, + ACTIONS(12745), 1, + anon_sym_LPAREN, + ACTIONS(12747), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12749), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12751), 1, + anon_sym_PLUS, + ACTIONS(12753), 1, + anon_sym_DASH, + ACTIONS(12755), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12757), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12759), 1, + aux_sym_unary_expression_token1, + ACTIONS(12767), 1, + anon_sym_POUND, + STATE(789), 1, + sym_call_expression, + STATE(946), 1, + sym_comparison_expression, + STATE(968), 1, + sym_member_expression, + STATE(980), 1, + sym__signed_unary_expression, + STATE(11240), 1, + sym__comparison_operand, + STATE(13397), 1, + sym__callable_expression, + ACTIONS(12763), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(950), 2, + sym__expression, + sym_unary_expression, + STATE(982), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12761), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12765), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(979), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [77293] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12769), 1, + aux_sym_unary_expression_token1, + STATE(880), 1, + sym_call_expression, + STATE(1344), 1, + sym_member_expression, + STATE(1886), 1, + sym__signed_unary_expression, + STATE(2357), 1, + sym_comparison_expression, + STATE(11241), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2413), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12771), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12773), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1885), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [77390] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12775), 1, + sym_identifier, + ACTIONS(12777), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12779), 1, + anon_sym_DOT, + ACTIONS(12781), 1, + anon_sym_BANG, + ACTIONS(12783), 1, + anon_sym_LPAREN, + ACTIONS(12785), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12787), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12789), 1, + anon_sym_PLUS, + ACTIONS(12791), 1, + anon_sym_DASH, + ACTIONS(12793), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12795), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(12805), 1, + anon_sym_POUND, + STATE(1184), 1, + sym_call_expression, + STATE(1864), 1, + sym_member_expression, + STATE(1891), 1, + sym__signed_unary_expression, + STATE(2981), 1, + sym_comparison_expression, + STATE(11242), 1, + sym__comparison_operand, + STATE(13629), 1, + sym__callable_expression, + ACTIONS(12801), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1933), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3000), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12799), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12803), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1890), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [77487] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12655), 1, + sym_identifier, + ACTIONS(12657), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12659), 1, + anon_sym_DOT, + ACTIONS(12661), 1, + anon_sym_BANG, + ACTIONS(12663), 1, + anon_sym_LPAREN, + ACTIONS(12665), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12667), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12669), 1, + anon_sym_PLUS, + ACTIONS(12671), 1, + anon_sym_DASH, + ACTIONS(12673), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12675), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12685), 1, + anon_sym_POUND, + ACTIONS(12807), 1, + aux_sym_unary_expression_token1, + STATE(1148), 1, + sym_call_expression, + STATE(1746), 1, + sym_comparison_expression, + STATE(1818), 1, + sym_member_expression, + STATE(1898), 1, + sym__signed_unary_expression, + STATE(11243), 1, + sym__comparison_operand, + STATE(13508), 1, + sym__callable_expression, + ACTIONS(12681), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1755), 2, + sym__expression, + sym_unary_expression, + STATE(1910), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12809), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12811), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1897), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [77584] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12813), 1, + aux_sym_unary_expression_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1903), 1, + sym__signed_unary_expression, + STATE(2365), 1, + sym_comparison_expression, + STATE(11244), 1, + sym__comparison_operand, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2397), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12815), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12817), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1902), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [77681] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12819), 1, + sym_identifier, + ACTIONS(12821), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12823), 1, + anon_sym_DOT, + ACTIONS(12825), 1, + anon_sym_BANG, + ACTIONS(12827), 1, + anon_sym_LPAREN, + ACTIONS(12829), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12831), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12833), 1, + anon_sym_PLUS, + ACTIONS(12835), 1, + anon_sym_DASH, + ACTIONS(12837), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12839), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(12849), 1, + anon_sym_POUND, + STATE(1189), 1, + sym_call_expression, + STATE(1870), 1, + sym_member_expression, + STATE(1908), 1, + sym__signed_unary_expression, + STATE(3026), 1, + sym_comparison_expression, + STATE(11245), 1, + sym__comparison_operand, + STATE(13090), 1, + sym__callable_expression, + ACTIONS(12845), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1937), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3053), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12843), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12847), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1907), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [77778] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12705), 1, + sym_identifier, + ACTIONS(12707), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12709), 1, + anon_sym_DOT, + ACTIONS(12711), 1, + anon_sym_BANG, + ACTIONS(12713), 1, + anon_sym_LPAREN, + ACTIONS(12715), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12717), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12719), 1, + anon_sym_PLUS, + ACTIONS(12721), 1, + anon_sym_DASH, + ACTIONS(12723), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12725), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12735), 1, + anon_sym_POUND, + ACTIONS(12851), 1, + aux_sym_unary_expression_token1, + STATE(1166), 1, + sym_call_expression, + STATE(1825), 1, + sym_member_expression, + STATE(1914), 1, + sym__signed_unary_expression, + STATE(1999), 1, + sym_comparison_expression, + STATE(11246), 1, + sym__comparison_operand, + STATE(13541), 1, + sym__callable_expression, + ACTIONS(12731), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1787), 2, + sym__expression, + sym_unary_expression, + STATE(1917), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12853), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12855), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1913), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [77875] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12775), 1, + sym_identifier, + ACTIONS(12777), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12779), 1, + anon_sym_DOT, + ACTIONS(12781), 1, + anon_sym_BANG, + ACTIONS(12783), 1, + anon_sym_LPAREN, + ACTIONS(12785), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12787), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12789), 1, + anon_sym_PLUS, + ACTIONS(12791), 1, + anon_sym_DASH, + ACTIONS(12793), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12795), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12805), 1, + anon_sym_POUND, + ACTIONS(12857), 1, + aux_sym_unary_expression_token1, + STATE(1184), 1, + sym_call_expression, + STATE(1788), 1, + sym_comparison_expression, + STATE(1864), 1, + sym_member_expression, + STATE(1921), 1, + sym__signed_unary_expression, + STATE(11247), 1, + sym__comparison_operand, + STATE(13629), 1, + sym__callable_expression, + ACTIONS(12801), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1810), 2, + sym__expression, + sym_unary_expression, + STATE(1933), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12859), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12861), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1920), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [77972] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12819), 1, + sym_identifier, + ACTIONS(12821), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12823), 1, + anon_sym_DOT, + ACTIONS(12825), 1, + anon_sym_BANG, + ACTIONS(12827), 1, + anon_sym_LPAREN, + ACTIONS(12829), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12831), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12833), 1, + anon_sym_PLUS, + ACTIONS(12835), 1, + anon_sym_DASH, + ACTIONS(12837), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12839), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12849), 1, + anon_sym_POUND, + ACTIONS(12863), 1, + aux_sym_unary_expression_token1, + STATE(1189), 1, + sym_call_expression, + STATE(1811), 1, + sym_comparison_expression, + STATE(1870), 1, + sym_member_expression, + STATE(1928), 1, + sym__signed_unary_expression, + STATE(11248), 1, + sym__comparison_operand, + STATE(13090), 1, + sym__callable_expression, + ACTIONS(12845), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1821), 2, + sym__expression, + sym_unary_expression, + STATE(1937), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12865), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12867), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1927), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [78069] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12869), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12456), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [78164] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(13742), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10782), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [78261] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(14146), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10828), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [78358] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1416), 1, + sym__signed_unary_expression, + STATE(2388), 1, + sym_comparison_expression, + STATE(11344), 1, + sym__comparison_operand, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2387), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4798), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4802), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1213), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [78455] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11999), 1, + sym_identifier, + ACTIONS(12001), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12003), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12005), 1, + anon_sym_PLUS, + ACTIONS(12007), 1, + anon_sym_DASH, + ACTIONS(12011), 1, + anon_sym_POUND, + ACTIONS(12871), 1, + aux_sym_unary_expression_token1, + STATE(7279), 1, + sym_call_expression, + STATE(7318), 1, + sym_member_expression, + STATE(7323), 1, + sym__signed_unary_expression, + STATE(7369), 1, + sym_comparison_expression, + STATE(11516), 1, + sym__comparison_operand, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(7357), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12873), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12875), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7299), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [78552] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11981), 1, + anon_sym_PLUS, + ACTIONS(11983), 1, + anon_sym_DASH, + ACTIONS(11991), 1, + anon_sym_POUND, + ACTIONS(12877), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(10084), 1, + sym_comparison_expression, + STATE(10180), 1, + sym_member_expression, + STATE(11357), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10285), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [78649] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(13756), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10920), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [78746] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(2915), 1, + sym_comparison_expression, + STATE(11398), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2914), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [78843] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11336), 1, + sym__comparison_operand, + STATE(12043), 1, + sym_comparison_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10483), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [78940] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(4797), 1, + sym_comparison_expression, + STATE(11505), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2284), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [79037] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12115), 1, + sym_identifier, + ACTIONS(12117), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12119), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12121), 1, + anon_sym_PLUS, + ACTIONS(12123), 1, + anon_sym_DASH, + ACTIONS(12131), 1, + anon_sym_POUND, + ACTIONS(12879), 1, + aux_sym_unary_expression_token1, + STATE(10141), 1, + sym_call_expression, + STATE(10159), 1, + sym_member_expression, + STATE(10232), 1, + sym__signed_unary_expression, + STATE(10436), 1, + sym_comparison_expression, + STATE(11564), 1, + sym__comparison_operand, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10497), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12069), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12073), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10231), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [79134] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12635), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10103), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11633), 1, + sym_comparison_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10125), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12637), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12639), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10101), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [79231] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12635), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10103), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11591), 1, + sym_comparison_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10127), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12637), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12639), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10101), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [79328] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11633), 1, + sym_comparison_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10480), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [79425] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(14423), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10784), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [79522] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11402), 1, + sym__comparison_operand, + STATE(11591), 1, + sym_comparison_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10510), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [79619] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(6352), 1, + sym_comparison_expression, + STATE(11544), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3592), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [79716] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11336), 1, + sym__comparison_operand, + STATE(12151), 1, + sym_comparison_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10553), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [79813] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12881), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12700), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [79908] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(14953), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10961), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [80005] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(12043), 1, + sym_comparison_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10705), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [80102] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + STATE(541), 1, + sym_call_expression, + STATE(581), 1, + sym__signed_unary_expression, + STATE(592), 1, + sym_member_expression, + STATE(4530), 1, + sym_comparison_expression, + STATE(11435), 1, + sym__comparison_operand, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2159), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4142), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4146), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(580), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [80199] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(6487), 1, + sym_comparison_expression, + STATE(11544), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3672), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [80296] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(14329), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10754), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [80393] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(14746), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10768), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [80490] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12883), 1, + aux_sym_unary_expression_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1511), 1, + sym__signed_unary_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1925), 1, + sym_comparison_expression, + STATE(11437), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1906), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12885), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12887), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1510), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [80587] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(10084), 1, + sym_comparison_expression, + STATE(11334), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10113), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [80684] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(5130), 1, + anon_sym_COLON, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10512), 1, + sym_file_number_literal, + STATE(12137), 1, + sym_file_number, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11839), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11841), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10491), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [80781] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(14069), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10787), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [80878] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(7238), 1, + sym_comparison_expression, + STATE(11318), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3723), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [80975] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(5464), 1, + sym_comparison_expression, + STATE(11544), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2831), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [81072] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12231), 1, + aux_sym_unary_expression_token1, + STATE(777), 1, + sym_call_expression, + STATE(787), 1, + sym__signed_unary_expression, + STATE(814), 1, + sym_member_expression, + STATE(4609), 1, + sym_comparison_expression, + STATE(11302), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(824), 2, + sym__expression, + sym_unary_expression, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12233), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12235), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(856), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [81169] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12231), 1, + aux_sym_unary_expression_token1, + STATE(777), 1, + sym_call_expression, + STATE(787), 1, + sym__signed_unary_expression, + STATE(814), 1, + sym_member_expression, + STATE(4610), 1, + sym_comparison_expression, + STATE(11302), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(840), 2, + sym__expression, + sym_unary_expression, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12233), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12235), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(856), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [81266] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12037), 1, + aux_sym_unary_expression_token1, + STATE(981), 1, + sym_call_expression, + STATE(1111), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(4726), 1, + sym_comparison_expression, + STATE(11458), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1425), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12039), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12041), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1109), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [81363] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12037), 1, + aux_sym_unary_expression_token1, + STATE(981), 1, + sym_call_expression, + STATE(1111), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(4727), 1, + sym_comparison_expression, + STATE(11458), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1427), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12039), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12041), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1109), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [81460] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(14780), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10843), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [81557] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(4726), 1, + sym_comparison_expression, + STATE(11458), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2644), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [81654] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(4727), 1, + sym_comparison_expression, + STATE(11458), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2754), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [81751] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(4609), 1, + sym_comparison_expression, + STATE(11302), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2290), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [81848] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(6748), 1, + sym_comparison_expression, + STATE(11368), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3602), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [81945] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(5943), 1, + sym_comparison_expression, + STATE(11544), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3198), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [82042] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12889), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12430), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [82137] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(13807), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10953), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [82234] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(14258), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10744), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [82331] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(14508), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10750), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [82428] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(4610), 1, + sym_comparison_expression, + STATE(11302), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2294), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [82525] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12883), 1, + aux_sym_unary_expression_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1511), 1, + sym__signed_unary_expression, + STATE(1654), 1, + sym_member_expression, + STATE(4962), 1, + sym_comparison_expression, + STATE(11430), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1880), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12885), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12887), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1510), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [82622] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10091), 1, + sym_comparison_expression, + STATE(10133), 1, + sym__signed_unary_expression, + STATE(11456), 1, + sym__comparison_operand, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10144), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10132), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [82719] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(6865), 1, + sym_comparison_expression, + STATE(11368), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3548), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [82816] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12883), 1, + aux_sym_unary_expression_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1511), 1, + sym__signed_unary_expression, + STATE(1654), 1, + sym_member_expression, + STATE(4966), 1, + sym_comparison_expression, + STATE(11430), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1895), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12885), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12887), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1510), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [82913] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(4962), 1, + sym_comparison_expression, + STATE(11430), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2988), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [83010] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12177), 1, + aux_sym_unary_expression_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1249), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(4743), 1, + sym_comparison_expression, + STATE(11361), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1368), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12179), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12181), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1245), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [83107] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + STATE(981), 1, + sym_call_expression, + STATE(1163), 1, + sym__signed_unary_expression, + STATE(1343), 1, + sym_member_expression, + STATE(2515), 1, + sym_comparison_expression, + STATE(11477), 1, + sym__comparison_operand, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2514), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1157), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [83204] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(14835), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10921), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [83301] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(14888), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10925), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [83398] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(14913), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10928), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [83495] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(14938), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10933), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [83592] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(14963), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10936), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [83689] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(14988), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10940), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [83786] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(15013), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10943), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [83883] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(15037), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10946), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [83980] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(15057), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10949), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [84077] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10074), 1, + sym__signed_unary_expression, + STATE(11374), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + STATE(15065), 1, + sym_comparison_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10950), 2, + sym__expression, + sym_unary_expression, + ACTIONS(11394), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11396), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10077), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [84174] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(4966), 1, + sym_comparison_expression, + STATE(11430), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2994), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [84271] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(12341), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10073), 1, + sym__signed_unary_expression, + STATE(10084), 1, + sym_comparison_expression, + STATE(11327), 1, + sym__comparison_operand, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10113), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12343), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12345), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10075), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [84368] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + STATE(880), 1, + sym_call_expression, + STATE(1246), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(7019), 1, + sym_comparison_expression, + STATE(11359), 1, + sym__comparison_operand, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3619), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1237), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [84465] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(7216), 1, + sym_comparison_expression, + STATE(11318), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3815), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [84562] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1654), 1, + sym_member_expression, + STATE(1674), 1, + sym__signed_unary_expression, + STATE(6920), 1, + sym_comparison_expression, + STATE(11318), 1, + sym__comparison_operand, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(3512), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1662), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [84659] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1313), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(5115), 1, + sym_comparison_expression, + STATE(11368), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2893), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1310), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [84756] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(837), 1, + sym__signed_unary_expression, + STATE(5055), 1, + sym_comparison_expression, + STATE(11505), 1, + sym__comparison_operand, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2542), 2, + sym__expression, + sym_unary_expression, + ACTIONS(4286), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4290), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(830), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [84853] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(12891), 1, + anon_sym_RPAREN, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(12662), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [84948] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12177), 1, + aux_sym_unary_expression_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1249), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(4742), 1, + sym_comparison_expression, + STATE(11361), 1, + sym__comparison_operand, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(1354), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12179), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12181), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1245), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [85045] = 27, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12737), 1, + sym_identifier, + ACTIONS(12739), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12741), 1, + anon_sym_DOT, + ACTIONS(12743), 1, + anon_sym_BANG, + ACTIONS(12745), 1, + anon_sym_LPAREN, + ACTIONS(12747), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12749), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12751), 1, + anon_sym_PLUS, + ACTIONS(12753), 1, + anon_sym_DASH, + ACTIONS(12755), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12757), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12767), 1, + anon_sym_POUND, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + STATE(789), 1, + sym_call_expression, + STATE(963), 1, + sym__signed_unary_expression, + STATE(968), 1, + sym_member_expression, + STATE(2407), 1, + sym_comparison_expression, + STATE(11569), 1, + sym__comparison_operand, + STATE(13397), 1, + sym__callable_expression, + ACTIONS(12763), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(982), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(2504), 2, + sym__expression, + sym_unary_expression, + ACTIONS(12895), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12897), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(962), 9, + sym__primary_expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [85142] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12899), 1, + sym_identifier, + ACTIONS(12901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12903), 1, + anon_sym_DOT, + ACTIONS(12905), 1, + anon_sym_BANG, + ACTIONS(12907), 1, + anon_sym_LPAREN, + ACTIONS(12909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12913), 1, + anon_sym_PLUS, + ACTIONS(12915), 1, + anon_sym_DASH, + ACTIONS(12917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12927), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_call_expression, + STATE(2929), 1, + sym_file_number_literal, + STATE(3093), 1, + sym__signed_unary_expression, + STATE(3364), 1, + sym_member_expression, + STATE(6053), 1, + sym_file_number, + STATE(13461), 1, + sym__callable_expression, + ACTIONS(12923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2928), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [85236] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(5738), 1, + sym_print_argument_sequence, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12929), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12931), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2212), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [85328] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + ACTIONS(12933), 1, + sym_identifier, + ACTIONS(12935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12937), 1, + anon_sym_DOT, + ACTIONS(12939), 1, + anon_sym_BANG, + ACTIONS(12941), 1, + anon_sym_LPAREN, + ACTIONS(12943), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12945), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12947), 1, + anon_sym_PLUS, + ACTIONS(12949), 1, + anon_sym_DASH, + ACTIONS(12951), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12953), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12961), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_call_expression, + STATE(2375), 1, + sym_member_expression, + STATE(2401), 1, + sym__signed_unary_expression, + STATE(2530), 1, + sym_file_number_literal, + STATE(5032), 1, + sym_file_number, + STATE(13228), 1, + sym__callable_expression, + ACTIONS(12957), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12955), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12959), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2519), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [85422] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(5743), 1, + sym_print_argument_sequence, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12929), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12931), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2212), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [85514] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + ACTIONS(12933), 1, + sym_identifier, + ACTIONS(12935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12937), 1, + anon_sym_DOT, + ACTIONS(12939), 1, + anon_sym_BANG, + ACTIONS(12941), 1, + anon_sym_LPAREN, + ACTIONS(12943), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12945), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12947), 1, + anon_sym_PLUS, + ACTIONS(12949), 1, + anon_sym_DASH, + ACTIONS(12951), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12953), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12961), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_call_expression, + STATE(2375), 1, + sym_member_expression, + STATE(2401), 1, + sym__signed_unary_expression, + STATE(2530), 1, + sym_file_number_literal, + STATE(5033), 1, + sym_file_number, + STATE(13228), 1, + sym__callable_expression, + ACTIONS(12957), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12955), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12959), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2519), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [85608] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(4512), 1, + sym_print_argument_sequence, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12963), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12965), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1431), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [85700] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10512), 1, + sym_file_number_literal, + STATE(12182), 1, + sym_file_number, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11839), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11841), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10491), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [85794] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(4146), 1, + sym_print_argument_sequence, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12967), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12969), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(839), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [85886] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10512), 1, + sym_file_number_literal, + STATE(12184), 1, + sym_file_number, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11839), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11841), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10491), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [85980] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(4147), 1, + sym_print_argument_sequence, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12967), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12969), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(839), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [86072] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10512), 1, + sym_file_number_literal, + STATE(12190), 1, + sym_file_number, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11839), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11841), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10491), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [86166] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12971), 1, + sym_identifier, + ACTIONS(12973), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12975), 1, + anon_sym_DOT, + ACTIONS(12977), 1, + anon_sym_BANG, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12983), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12985), 1, + anon_sym_PLUS, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12989), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12991), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12999), 1, + anon_sym_POUND, + STATE(1051), 1, + sym_call_expression, + STATE(1079), 1, + sym_file_number_literal, + STATE(1149), 1, + sym_member_expression, + STATE(1286), 1, + sym__signed_unary_expression, + STATE(3748), 1, + sym_file_number, + STATE(13408), 1, + sym__callable_expression, + ACTIONS(12995), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12993), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12997), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1076), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [86260] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10512), 1, + sym_file_number_literal, + STATE(12191), 1, + sym_file_number, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11839), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11841), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10491), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [86354] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(4168), 1, + sym_print_argument_sequence, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12967), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12969), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(839), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [86446] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12971), 1, + sym_identifier, + ACTIONS(12973), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12975), 1, + anon_sym_DOT, + ACTIONS(12977), 1, + anon_sym_BANG, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12983), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12985), 1, + anon_sym_PLUS, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12989), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12991), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12999), 1, + anon_sym_POUND, + STATE(1051), 1, + sym_call_expression, + STATE(1079), 1, + sym_file_number_literal, + STATE(1149), 1, + sym_member_expression, + STATE(1286), 1, + sym__signed_unary_expression, + STATE(3757), 1, + sym_file_number, + STATE(13408), 1, + sym__callable_expression, + ACTIONS(12995), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12993), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12997), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1076), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [86540] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(7265), 1, + sym_print_argument_sequence, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13001), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13003), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2767), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [86632] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(13005), 1, + sym_identifier, + ACTIONS(13007), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13009), 1, + anon_sym_DOT, + ACTIONS(13011), 1, + anon_sym_BANG, + ACTIONS(13013), 1, + anon_sym_LPAREN, + ACTIONS(13015), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13017), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13019), 1, + anon_sym_PLUS, + ACTIONS(13021), 1, + anon_sym_DASH, + ACTIONS(13023), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13025), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13033), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_call_expression, + STATE(2015), 1, + sym__signed_unary_expression, + STATE(2059), 1, + sym_member_expression, + STATE(2073), 1, + sym_file_number_literal, + STATE(4252), 1, + sym_file_number, + STATE(13116), 1, + sym__callable_expression, + ACTIONS(13029), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13027), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13031), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2072), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [86726] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(2099), 1, + sym_file_number_literal, + STATE(4211), 1, + sym_file_number, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(5372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(5374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2098), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [86820] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(1436), 1, + sym_file_number_literal, + STATE(3731), 1, + sym_file_number, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(5140), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(5142), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1435), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [86914] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13035), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13037), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13039), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10956), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [87006] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(3697), 1, + sym_file_number_literal, + STATE(6801), 1, + sym_file_number, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6838), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6840), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3695), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [87100] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(1436), 1, + sym_file_number_literal, + STATE(3756), 1, + sym_file_number, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(5140), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(5142), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1435), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [87194] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(2099), 1, + sym_file_number_literal, + STATE(4212), 1, + sym_file_number, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(5372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(5374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2098), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [87288] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(12586), 1, + sym_file_record_range, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13041), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13043), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10548), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [87380] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(13045), 1, + sym_identifier, + ACTIONS(13047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13051), 1, + anon_sym_BANG, + ACTIONS(13053), 1, + anon_sym_LPAREN, + ACTIONS(13055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13059), 1, + anon_sym_PLUS, + ACTIONS(13061), 1, + anon_sym_DASH, + ACTIONS(13063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13073), 1, + anon_sym_POUND, + STATE(3220), 1, + sym_call_expression, + STATE(3416), 1, + sym_file_number_literal, + STATE(3591), 1, + sym__signed_unary_expression, + STATE(3713), 1, + sym_member_expression, + STATE(7017), 1, + sym_file_number, + STATE(13112), 1, + sym__callable_expression, + ACTIONS(13069), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13067), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13071), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3712), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [87474] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10512), 1, + sym_file_number_literal, + STATE(12244), 1, + sym_file_number, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11839), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11841), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10491), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [87568] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(1436), 1, + sym_file_number_literal, + STATE(3831), 1, + sym_file_number, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(5140), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(5142), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1435), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [87662] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(12622), 1, + sym_file_record_range, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13041), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13043), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10548), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [87754] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(1436), 1, + sym_file_number_literal, + STATE(3763), 1, + sym_file_number, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(5140), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(5142), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1435), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [87848] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(13045), 1, + sym_identifier, + ACTIONS(13047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13051), 1, + anon_sym_BANG, + ACTIONS(13053), 1, + anon_sym_LPAREN, + ACTIONS(13055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13059), 1, + anon_sym_PLUS, + ACTIONS(13061), 1, + anon_sym_DASH, + ACTIONS(13063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13073), 1, + anon_sym_POUND, + STATE(3220), 1, + sym_call_expression, + STATE(3416), 1, + sym_file_number_literal, + STATE(3591), 1, + sym__signed_unary_expression, + STATE(3713), 1, + sym_member_expression, + STATE(6955), 1, + sym_file_number, + STATE(13112), 1, + sym__callable_expression, + ACTIONS(13069), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13067), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13071), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3712), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [87942] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(7152), 1, + sym_print_argument_sequence, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13001), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13003), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2767), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [88034] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(2099), 1, + sym_file_number_literal, + STATE(4309), 1, + sym_file_number, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(5372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(5374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2098), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [88128] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13075), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13077), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13079), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10786), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [88220] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(2099), 1, + sym_file_number_literal, + STATE(4321), 1, + sym_file_number, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(5372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(5374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2098), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [88314] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(3229), 1, + sym_file_number_literal, + STATE(6172), 1, + sym_file_number, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6768), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6770), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3227), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [88408] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(3396), 1, + sym_file_number_literal, + STATE(6224), 1, + sym_file_number, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6780), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6782), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3395), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [88502] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(3396), 1, + sym_file_number_literal, + STATE(6229), 1, + sym_file_number, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6780), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6782), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3395), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [88596] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(3229), 1, + sym_file_number_literal, + STATE(6193), 1, + sym_file_number, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6768), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6770), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3227), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [88690] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(3396), 1, + sym_file_number_literal, + STATE(6240), 1, + sym_file_number, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6780), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6782), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3395), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [88784] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(3396), 1, + sym_file_number_literal, + STATE(6241), 1, + sym_file_number, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6780), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6782), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3395), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [88878] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(3229), 1, + sym_file_number_literal, + STATE(6219), 1, + sym_file_number, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6768), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6770), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3227), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [88972] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(13045), 1, + sym_identifier, + ACTIONS(13047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13051), 1, + anon_sym_BANG, + ACTIONS(13053), 1, + anon_sym_LPAREN, + ACTIONS(13055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13059), 1, + anon_sym_PLUS, + ACTIONS(13061), 1, + anon_sym_DASH, + ACTIONS(13063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13073), 1, + anon_sym_POUND, + STATE(3220), 1, + sym_call_expression, + STATE(3416), 1, + sym_file_number_literal, + STATE(3591), 1, + sym__signed_unary_expression, + STATE(3713), 1, + sym_member_expression, + STATE(6741), 1, + sym_file_number, + STATE(13112), 1, + sym__callable_expression, + ACTIONS(13069), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13067), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13071), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3712), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [89066] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(3229), 1, + sym_file_number_literal, + STATE(6221), 1, + sym_file_number, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6768), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6770), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3227), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [89160] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13081), 1, + aux_sym_on_error_statement_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13083), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13085), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10702), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [89252] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(14112), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [89346] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12293), 1, + aux_sym_unary_expression_token1, + ACTIONS(13091), 1, + sym_identifier, + ACTIONS(13093), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13095), 1, + anon_sym_DOT, + ACTIONS(13097), 1, + anon_sym_BANG, + ACTIONS(13099), 1, + anon_sym_LPAREN, + ACTIONS(13101), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13103), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13105), 1, + anon_sym_PLUS, + ACTIONS(13107), 1, + anon_sym_DASH, + ACTIONS(13109), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13111), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13119), 1, + anon_sym_POUND, + STATE(1478), 1, + sym_call_expression, + STATE(2014), 1, + sym_member_expression, + STATE(2123), 1, + sym__signed_unary_expression, + STATE(4392), 1, + sym_file_record_range, + STATE(13390), 1, + sym__callable_expression, + ACTIONS(13115), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2022), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13113), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13117), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2131), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [89438] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10512), 1, + sym_file_number_literal, + STATE(12313), 1, + sym_file_number, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11839), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11841), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10491), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [89532] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(14588), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [89626] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(14981), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [89720] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(12890), 1, + sym_print_argument_sequence, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13121), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13123), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10476), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [89812] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10512), 1, + sym_file_number_literal, + STATE(12343), 1, + sym_file_number, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11839), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11841), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10491), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [89906] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(12944), 1, + sym_print_argument_sequence, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13121), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13123), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10476), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [89998] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13125), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13127), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13129), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10808), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [90090] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13131), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13133), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13135), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10951), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [90182] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(15198), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [90276] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(3697), 1, + sym_file_number_literal, + STATE(6864), 1, + sym_file_number, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6838), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6840), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3695), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [90370] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(12945), 1, + sym_print_argument_sequence, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13121), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13123), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10476), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [90462] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(3697), 1, + sym_file_number_literal, + STATE(6966), 1, + sym_file_number, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6838), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6840), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3695), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [90556] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(3697), 1, + sym_file_number_literal, + STATE(6970), 1, + sym_file_number, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6838), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6840), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3695), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [90650] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(15142), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [90744] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10512), 1, + sym_file_number_literal, + STATE(12379), 1, + sym_file_number, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11839), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11841), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10491), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [90838] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(12968), 1, + sym_print_argument_sequence, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13121), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13123), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10476), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [90930] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10512), 1, + sym_file_number_literal, + STATE(12382), 1, + sym_file_number, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11839), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11841), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10491), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [91024] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(2099), 1, + sym_file_number_literal, + STATE(4295), 1, + sym_file_number, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(5372), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(5374), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2098), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [91118] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(7266), 1, + sym_print_argument_sequence, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13001), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13003), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2767), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [91210] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13137), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13139), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13141), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10783), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [91302] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12677), 1, + aux_sym_unary_expression_token1, + ACTIONS(13143), 1, + sym_identifier, + ACTIONS(13145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13147), 1, + anon_sym_DOT, + ACTIONS(13149), 1, + anon_sym_BANG, + ACTIONS(13151), 1, + anon_sym_LPAREN, + ACTIONS(13153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13157), 1, + anon_sym_PLUS, + ACTIONS(13159), 1, + anon_sym_DASH, + ACTIONS(13161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13171), 1, + anon_sym_POUND, + STATE(2910), 1, + sym_call_expression, + STATE(3064), 1, + sym_member_expression, + STATE(3380), 1, + sym__signed_unary_expression, + STATE(6410), 1, + sym_file_record_range, + STATE(13439), 1, + sym__callable_expression, + ACTIONS(13167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3210), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13165), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13169), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3090), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [91394] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(3396), 1, + sym_file_number_literal, + STATE(6212), 1, + sym_file_number, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6780), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6782), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3395), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [91488] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13173), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13175), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13177), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10813), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [91580] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(7205), 1, + sym_print_argument_sequence, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13001), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13003), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2767), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [91672] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11959), 1, + aux_sym_unary_expression_token1, + ACTIONS(13179), 1, + sym_identifier, + ACTIONS(13181), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13183), 1, + anon_sym_DOT, + ACTIONS(13185), 1, + anon_sym_BANG, + ACTIONS(13187), 1, + anon_sym_LPAREN, + ACTIONS(13189), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13191), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13193), 1, + anon_sym_PLUS, + ACTIONS(13195), 1, + anon_sym_DASH, + ACTIONS(13197), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13199), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13207), 1, + anon_sym_POUND, + STATE(3313), 1, + sym_call_expression, + STATE(3598), 1, + sym__signed_unary_expression, + STATE(3669), 1, + sym_member_expression, + STATE(7258), 1, + sym_file_record_range, + STATE(13316), 1, + sym__callable_expression, + ACTIONS(13203), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3425), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13201), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13205), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3646), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [91764] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(13866), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [91858] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(13946), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [91952] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12677), 1, + aux_sym_unary_expression_token1, + ACTIONS(13143), 1, + sym_identifier, + ACTIONS(13145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13147), 1, + anon_sym_DOT, + ACTIONS(13149), 1, + anon_sym_BANG, + ACTIONS(13151), 1, + anon_sym_LPAREN, + ACTIONS(13153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13157), 1, + anon_sym_PLUS, + ACTIONS(13159), 1, + anon_sym_DASH, + ACTIONS(13161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13171), 1, + anon_sym_POUND, + STATE(2910), 1, + sym_call_expression, + STATE(3064), 1, + sym_member_expression, + STATE(3380), 1, + sym__signed_unary_expression, + STATE(6328), 1, + sym_file_record_range, + STATE(13439), 1, + sym__callable_expression, + ACTIONS(13167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3210), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13165), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13169), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3090), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [92044] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(13209), 1, + sym_identifier, + ACTIONS(13211), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13213), 1, + anon_sym_DOT, + ACTIONS(13215), 1, + anon_sym_BANG, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13219), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13223), 1, + anon_sym_PLUS, + ACTIONS(13225), 1, + anon_sym_DASH, + ACTIONS(13227), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13229), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13237), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_call_expression, + STATE(2980), 1, + sym__signed_unary_expression, + STATE(3063), 1, + sym_file_number_literal, + STATE(3147), 1, + sym_member_expression, + STATE(6099), 1, + sym_file_number, + STATE(13569), 1, + sym__callable_expression, + ACTIONS(13233), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13231), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13235), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3061), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [92138] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12165), 1, + aux_sym_unary_expression_token1, + ACTIONS(13239), 1, + sym_identifier, + ACTIONS(13241), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13243), 1, + anon_sym_DOT, + ACTIONS(13245), 1, + anon_sym_BANG, + ACTIONS(13247), 1, + anon_sym_LPAREN, + ACTIONS(13249), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13251), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13253), 1, + anon_sym_PLUS, + ACTIONS(13255), 1, + anon_sym_DASH, + ACTIONS(13257), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13259), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13267), 1, + anon_sym_POUND, + STATE(2664), 1, + sym_call_expression, + STATE(3077), 1, + sym__signed_unary_expression, + STATE(3298), 1, + sym_member_expression, + STATE(6701), 1, + sym_file_record_range, + STATE(13262), 1, + sym__callable_expression, + ACTIONS(13263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2931), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13261), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13265), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3073), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [92230] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(6856), 1, + sym_print_argument_sequence, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13269), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13271), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2443), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [92322] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13273), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13275), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13277), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10822), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [92414] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(13209), 1, + sym_identifier, + ACTIONS(13211), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13213), 1, + anon_sym_DOT, + ACTIONS(13215), 1, + anon_sym_BANG, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13219), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13223), 1, + anon_sym_PLUS, + ACTIONS(13225), 1, + anon_sym_DASH, + ACTIONS(13227), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13229), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13237), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_call_expression, + STATE(2980), 1, + sym__signed_unary_expression, + STATE(3063), 1, + sym_file_number_literal, + STATE(3147), 1, + sym_member_expression, + STATE(5906), 1, + sym_file_number, + STATE(13569), 1, + sym__callable_expression, + ACTIONS(13233), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13231), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13235), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3061), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [92508] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(3229), 1, + sym_file_number_literal, + STATE(6184), 1, + sym_file_number, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6768), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6770), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3227), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [92602] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(6329), 1, + sym_print_argument_sequence, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13269), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13271), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2443), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [92694] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13121), 1, + sym_array_bound, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(11911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(11913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10669), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [92786] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(6330), 1, + sym_print_argument_sequence, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13269), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13271), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2443), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [92878] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(15036), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [92972] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(15077), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [93066] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12165), 1, + aux_sym_unary_expression_token1, + ACTIONS(13239), 1, + sym_identifier, + ACTIONS(13241), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13243), 1, + anon_sym_DOT, + ACTIONS(13245), 1, + anon_sym_BANG, + ACTIONS(13247), 1, + anon_sym_LPAREN, + ACTIONS(13249), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13251), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13253), 1, + anon_sym_PLUS, + ACTIONS(13255), 1, + anon_sym_DASH, + ACTIONS(13257), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13259), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13267), 1, + anon_sym_POUND, + STATE(2664), 1, + sym_call_expression, + STATE(3077), 1, + sym__signed_unary_expression, + STATE(3298), 1, + sym_member_expression, + STATE(6863), 1, + sym_file_record_range, + STATE(13262), 1, + sym__callable_expression, + ACTIONS(13263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2931), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13261), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13265), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3073), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [93158] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(13209), 1, + sym_identifier, + ACTIONS(13211), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13213), 1, + anon_sym_DOT, + ACTIONS(13215), 1, + anon_sym_BANG, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13219), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13223), 1, + anon_sym_PLUS, + ACTIONS(13225), 1, + anon_sym_DASH, + ACTIONS(13227), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13229), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13237), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_call_expression, + STATE(2980), 1, + sym__signed_unary_expression, + STATE(3063), 1, + sym_file_number_literal, + STATE(3147), 1, + sym_member_expression, + STATE(5918), 1, + sym_file_number, + STATE(13569), 1, + sym__callable_expression, + ACTIONS(13233), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13231), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13235), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3061), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [93252] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(2976), 1, + sym_file_number_literal, + STATE(5987), 1, + sym_file_number, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6756), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6758), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2975), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [93346] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13279), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13281), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13283), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10830), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [93438] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(6373), 1, + sym_print_argument_sequence, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13269), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13271), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2443), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [93530] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(2976), 1, + sym_file_number_literal, + STATE(6002), 1, + sym_file_number, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6756), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6758), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2975), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [93624] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(2976), 1, + sym_file_number_literal, + STATE(6084), 1, + sym_file_number, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6756), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6758), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2975), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [93718] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(2976), 1, + sym_file_number_literal, + STATE(6085), 1, + sym_file_number, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6756), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6758), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2975), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [93812] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(14046), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [93906] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(14701), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [94000] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(13285), 1, + sym_identifier, + ACTIONS(13287), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13289), 1, + anon_sym_DOT, + ACTIONS(13291), 1, + anon_sym_BANG, + ACTIONS(13293), 1, + anon_sym_LPAREN, + ACTIONS(13295), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13297), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13299), 1, + anon_sym_PLUS, + ACTIONS(13301), 1, + anon_sym_DASH, + ACTIONS(13303), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13305), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13313), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_call_expression, + STATE(2923), 1, + sym__signed_unary_expression, + STATE(3141), 1, + sym_member_expression, + STATE(3349), 1, + sym_file_number_literal, + STATE(6018), 1, + sym_file_number, + STATE(13442), 1, + sym__callable_expression, + ACTIONS(13309), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13307), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13311), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3348), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [94094] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(13209), 1, + sym_identifier, + ACTIONS(13211), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13213), 1, + anon_sym_DOT, + ACTIONS(13215), 1, + anon_sym_BANG, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13219), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13223), 1, + anon_sym_PLUS, + ACTIONS(13225), 1, + anon_sym_DASH, + ACTIONS(13227), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13229), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13237), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_call_expression, + STATE(2980), 1, + sym__signed_unary_expression, + STATE(3063), 1, + sym_file_number_literal, + STATE(3147), 1, + sym_member_expression, + STATE(5926), 1, + sym_file_number, + STATE(13569), 1, + sym__callable_expression, + ACTIONS(13233), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13231), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13235), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3061), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [94188] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13315), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13317), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13319), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10751), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [94280] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13321), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13323), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13325), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10840), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [94372] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12293), 1, + aux_sym_unary_expression_token1, + ACTIONS(13091), 1, + sym_identifier, + ACTIONS(13093), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13095), 1, + anon_sym_DOT, + ACTIONS(13097), 1, + anon_sym_BANG, + ACTIONS(13099), 1, + anon_sym_LPAREN, + ACTIONS(13101), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13103), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13105), 1, + anon_sym_PLUS, + ACTIONS(13107), 1, + anon_sym_DASH, + ACTIONS(13109), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13111), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13119), 1, + anon_sym_POUND, + STATE(1478), 1, + sym_call_expression, + STATE(2014), 1, + sym_member_expression, + STATE(2123), 1, + sym__signed_unary_expression, + STATE(4398), 1, + sym_file_record_range, + STATE(13390), 1, + sym__callable_expression, + ACTIONS(13115), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2022), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13113), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13117), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2131), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [94464] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(6397), 1, + sym_print_argument_sequence, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13327), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13329), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2402), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [94556] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12225), 1, + aux_sym_unary_expression_token1, + ACTIONS(13331), 1, + sym_identifier, + ACTIONS(13333), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13335), 1, + anon_sym_DOT, + ACTIONS(13337), 1, + anon_sym_BANG, + ACTIONS(13339), 1, + anon_sym_LPAREN, + ACTIONS(13341), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13343), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13345), 1, + anon_sym_PLUS, + ACTIONS(13347), 1, + anon_sym_DASH, + ACTIONS(13349), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13351), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13359), 1, + anon_sym_POUND, + STATE(2713), 1, + sym_call_expression, + STATE(3190), 1, + sym__signed_unary_expression, + STATE(3351), 1, + sym_member_expression, + STATE(6513), 1, + sym_file_record_range, + STATE(13359), 1, + sym__callable_expression, + ACTIONS(13355), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3002), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13353), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13357), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3387), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [94648] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(2976), 1, + sym_file_number_literal, + STATE(5939), 1, + sym_file_number, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6756), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6758), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2975), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [94742] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12225), 1, + aux_sym_unary_expression_token1, + ACTIONS(13331), 1, + sym_identifier, + ACTIONS(13333), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13335), 1, + anon_sym_DOT, + ACTIONS(13337), 1, + anon_sym_BANG, + ACTIONS(13339), 1, + anon_sym_LPAREN, + ACTIONS(13341), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13343), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13345), 1, + anon_sym_PLUS, + ACTIONS(13347), 1, + anon_sym_DASH, + ACTIONS(13349), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13351), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13359), 1, + anon_sym_POUND, + STATE(2713), 1, + sym_call_expression, + STATE(3190), 1, + sym__signed_unary_expression, + STATE(3351), 1, + sym_member_expression, + STATE(6527), 1, + sym_file_record_range, + STATE(13359), 1, + sym__callable_expression, + ACTIONS(13355), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3002), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13353), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13357), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3387), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [94834] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(13928), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [94928] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(14045), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [95022] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(13361), 1, + sym_identifier, + ACTIONS(13363), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13365), 1, + anon_sym_DOT, + ACTIONS(13367), 1, + anon_sym_BANG, + ACTIONS(13369), 1, + anon_sym_LPAREN, + ACTIONS(13371), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13373), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13375), 1, + anon_sym_PLUS, + ACTIONS(13377), 1, + anon_sym_DASH, + ACTIONS(13379), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13381), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13389), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_call_expression, + STATE(2989), 1, + sym__signed_unary_expression, + STATE(3204), 1, + sym_member_expression, + STATE(3369), 1, + sym_file_number_literal, + STATE(6069), 1, + sym_file_number, + STATE(13648), 1, + sym__callable_expression, + ACTIONS(13385), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13383), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13387), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3368), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [95116] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(6628), 1, + sym_print_argument_sequence, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13391), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13393), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2543), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [95208] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(13361), 1, + sym_identifier, + ACTIONS(13363), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13365), 1, + anon_sym_DOT, + ACTIONS(13367), 1, + anon_sym_BANG, + ACTIONS(13369), 1, + anon_sym_LPAREN, + ACTIONS(13371), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13373), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13375), 1, + anon_sym_PLUS, + ACTIONS(13377), 1, + anon_sym_DASH, + ACTIONS(13379), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13381), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13389), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_call_expression, + STATE(2989), 1, + sym__signed_unary_expression, + STATE(3204), 1, + sym_member_expression, + STATE(3369), 1, + sym_file_number_literal, + STATE(6121), 1, + sym_file_number, + STATE(13648), 1, + sym__callable_expression, + ACTIONS(13385), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13383), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13387), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3368), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [95302] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(6654), 1, + sym_print_argument_sequence, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13391), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13393), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2543), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [95394] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13395), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13397), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13399), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10844), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [95486] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(6655), 1, + sym_print_argument_sequence, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13391), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13393), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2543), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [95578] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13401), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13403), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13405), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10824), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [95670] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(13361), 1, + sym_identifier, + ACTIONS(13363), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13365), 1, + anon_sym_DOT, + ACTIONS(13367), 1, + anon_sym_BANG, + ACTIONS(13369), 1, + anon_sym_LPAREN, + ACTIONS(13371), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13373), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13375), 1, + anon_sym_PLUS, + ACTIONS(13377), 1, + anon_sym_DASH, + ACTIONS(13379), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13381), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13389), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_call_expression, + STATE(2989), 1, + sym__signed_unary_expression, + STATE(3204), 1, + sym_member_expression, + STATE(3369), 1, + sym_file_number_literal, + STATE(6133), 1, + sym_file_number, + STATE(13648), 1, + sym__callable_expression, + ACTIONS(13385), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13383), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13387), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3368), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [95764] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(6663), 1, + sym_print_argument_sequence, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13391), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13393), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2543), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [95856] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(13361), 1, + sym_identifier, + ACTIONS(13363), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13365), 1, + anon_sym_DOT, + ACTIONS(13367), 1, + anon_sym_BANG, + ACTIONS(13369), 1, + anon_sym_LPAREN, + ACTIONS(13371), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13373), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13375), 1, + anon_sym_PLUS, + ACTIONS(13377), 1, + anon_sym_DASH, + ACTIONS(13379), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13381), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13389), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_call_expression, + STATE(2989), 1, + sym__signed_unary_expression, + STATE(3204), 1, + sym_member_expression, + STATE(3369), 1, + sym_file_number_literal, + STATE(6151), 1, + sym_file_number, + STATE(13648), 1, + sym__callable_expression, + ACTIONS(13385), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13383), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13387), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3368), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [95950] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(5737), 1, + sym_print_argument_sequence, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12929), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12931), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2212), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [96042] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(13776), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [96136] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(13285), 1, + sym_identifier, + ACTIONS(13287), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13289), 1, + anon_sym_DOT, + ACTIONS(13291), 1, + anon_sym_BANG, + ACTIONS(13293), 1, + anon_sym_LPAREN, + ACTIONS(13295), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13297), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13299), 1, + anon_sym_PLUS, + ACTIONS(13301), 1, + anon_sym_DASH, + ACTIONS(13303), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13305), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13313), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_call_expression, + STATE(2923), 1, + sym__signed_unary_expression, + STATE(3141), 1, + sym_member_expression, + STATE(3349), 1, + sym_file_number_literal, + STATE(6100), 1, + sym_file_number, + STATE(13442), 1, + sym__callable_expression, + ACTIONS(13309), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13307), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13311), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3348), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [96230] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(13045), 1, + sym_identifier, + ACTIONS(13047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13051), 1, + anon_sym_BANG, + ACTIONS(13053), 1, + anon_sym_LPAREN, + ACTIONS(13055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13059), 1, + anon_sym_PLUS, + ACTIONS(13061), 1, + anon_sym_DASH, + ACTIONS(13063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13073), 1, + anon_sym_POUND, + STATE(3220), 1, + sym_call_expression, + STATE(3416), 1, + sym_file_number_literal, + STATE(3591), 1, + sym__signed_unary_expression, + STATE(3713), 1, + sym_member_expression, + STATE(6522), 1, + sym_file_number, + STATE(13112), 1, + sym__callable_expression, + ACTIONS(13069), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13067), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13071), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3712), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [96324] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(13005), 1, + sym_identifier, + ACTIONS(13007), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13009), 1, + anon_sym_DOT, + ACTIONS(13011), 1, + anon_sym_BANG, + ACTIONS(13013), 1, + anon_sym_LPAREN, + ACTIONS(13015), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13017), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13019), 1, + anon_sym_PLUS, + ACTIONS(13021), 1, + anon_sym_DASH, + ACTIONS(13023), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13025), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13033), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_call_expression, + STATE(2015), 1, + sym__signed_unary_expression, + STATE(2059), 1, + sym_member_expression, + STATE(2073), 1, + sym_file_number_literal, + STATE(4225), 1, + sym_file_number, + STATE(13116), 1, + sym__callable_expression, + ACTIONS(13029), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13027), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13031), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2072), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [96418] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(6511), 1, + sym_print_argument_sequence, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13327), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13329), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2402), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [96510] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13407), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13409), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13411), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10851), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [96602] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(4487), 1, + sym_print_argument_sequence, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12963), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12965), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1431), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [96694] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13413), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13415), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13417), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10767), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [96786] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(6512), 1, + sym_print_argument_sequence, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13327), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13329), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2402), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [96878] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(13005), 1, + sym_identifier, + ACTIONS(13007), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13009), 1, + anon_sym_DOT, + ACTIONS(13011), 1, + anon_sym_BANG, + ACTIONS(13013), 1, + anon_sym_LPAREN, + ACTIONS(13015), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13017), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13019), 1, + anon_sym_PLUS, + ACTIONS(13021), 1, + anon_sym_DASH, + ACTIONS(13023), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13025), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13033), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_call_expression, + STATE(2015), 1, + sym__signed_unary_expression, + STATE(2059), 1, + sym_member_expression, + STATE(2073), 1, + sym_file_number_literal, + STATE(4242), 1, + sym_file_number, + STATE(13116), 1, + sym__callable_expression, + ACTIONS(13029), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13027), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13031), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2072), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [96972] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(14494), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [97066] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(14548), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [97160] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(13285), 1, + sym_identifier, + ACTIONS(13287), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13289), 1, + anon_sym_DOT, + ACTIONS(13291), 1, + anon_sym_BANG, + ACTIONS(13293), 1, + anon_sym_LPAREN, + ACTIONS(13295), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13297), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13299), 1, + anon_sym_PLUS, + ACTIONS(13301), 1, + anon_sym_DASH, + ACTIONS(13303), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13305), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13313), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_call_expression, + STATE(2923), 1, + sym__signed_unary_expression, + STATE(3141), 1, + sym_member_expression, + STATE(3349), 1, + sym_file_number_literal, + STATE(6117), 1, + sym_file_number, + STATE(13442), 1, + sym__callable_expression, + ACTIONS(13309), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13307), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13311), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3348), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [97254] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11959), 1, + aux_sym_unary_expression_token1, + ACTIONS(13179), 1, + sym_identifier, + ACTIONS(13181), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13183), 1, + anon_sym_DOT, + ACTIONS(13185), 1, + anon_sym_BANG, + ACTIONS(13187), 1, + anon_sym_LPAREN, + ACTIONS(13189), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13191), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13193), 1, + anon_sym_PLUS, + ACTIONS(13195), 1, + anon_sym_DASH, + ACTIONS(13197), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13199), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13207), 1, + anon_sym_POUND, + STATE(3313), 1, + sym_call_expression, + STATE(3598), 1, + sym__signed_unary_expression, + STATE(3669), 1, + sym_member_expression, + STATE(7132), 1, + sym_file_record_range, + STATE(13316), 1, + sym__callable_expression, + ACTIONS(13203), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3425), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13201), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13205), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3646), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [97346] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(6534), 1, + sym_print_argument_sequence, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13327), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13329), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2402), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [97438] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13419), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13421), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13423), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10856), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [97530] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(2427), 1, + sym_file_number_literal, + STATE(4914), 1, + sym_file_number, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6609), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6611), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2362), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [97624] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(13285), 1, + sym_identifier, + ACTIONS(13287), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13289), 1, + anon_sym_DOT, + ACTIONS(13291), 1, + anon_sym_BANG, + ACTIONS(13293), 1, + anon_sym_LPAREN, + ACTIONS(13295), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13297), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13299), 1, + anon_sym_PLUS, + ACTIONS(13301), 1, + anon_sym_DASH, + ACTIONS(13303), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13305), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13313), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_call_expression, + STATE(2923), 1, + sym__signed_unary_expression, + STATE(3141), 1, + sym_member_expression, + STATE(3349), 1, + sym_file_number_literal, + STATE(6164), 1, + sym_file_number, + STATE(13442), 1, + sym__callable_expression, + ACTIONS(13309), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13307), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13311), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3348), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [97718] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(2427), 1, + sym_file_number_literal, + STATE(4920), 1, + sym_file_number, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6609), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6611), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2362), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [97812] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(2427), 1, + sym_file_number_literal, + STATE(4926), 1, + sym_file_number, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6609), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6611), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2362), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [97906] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(2427), 1, + sym_file_number_literal, + STATE(4927), 1, + sym_file_number, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6609), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6611), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2362), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [98000] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(15107), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [98094] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(15151), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [98188] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(4506), 1, + sym_print_argument_sequence, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12963), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12965), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1431), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [98280] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12101), 1, + aux_sym_unary_expression_token1, + ACTIONS(13425), 1, + sym_identifier, + ACTIONS(13427), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13429), 1, + anon_sym_DOT, + ACTIONS(13431), 1, + anon_sym_BANG, + ACTIONS(13433), 1, + anon_sym_LPAREN, + ACTIONS(13435), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13437), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13439), 1, + anon_sym_PLUS, + ACTIONS(13441), 1, + anon_sym_DASH, + ACTIONS(13443), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13445), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13453), 1, + anon_sym_POUND, + STATE(886), 1, + sym_call_expression, + STATE(1083), 1, + sym__signed_unary_expression, + STATE(1117), 1, + sym_member_expression, + STATE(3980), 1, + sym_file_record_range, + STATE(13330), 1, + sym__callable_expression, + ACTIONS(13449), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1362), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13447), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13451), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1283), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [98372] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(4507), 1, + sym_print_argument_sequence, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12963), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12965), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1431), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [98464] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13455), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13457), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13459), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10860), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [98556] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13461), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13463), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13465), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10833), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [98648] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(3208), 1, + sym_file_number_literal, + STATE(6107), 1, + sym_file_number, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6792), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6794), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3202), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [98742] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(14034), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [98836] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(14050), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [98930] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(3208), 1, + sym_file_number_literal, + STATE(6183), 1, + sym_file_number, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6792), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6794), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3202), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [99024] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13467), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13469), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13471), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10864), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [99116] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(13005), 1, + sym_identifier, + ACTIONS(13007), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13009), 1, + anon_sym_DOT, + ACTIONS(13011), 1, + anon_sym_BANG, + ACTIONS(13013), 1, + anon_sym_LPAREN, + ACTIONS(13015), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13017), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13019), 1, + anon_sym_PLUS, + ACTIONS(13021), 1, + anon_sym_DASH, + ACTIONS(13023), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13025), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13033), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_call_expression, + STATE(2015), 1, + sym__signed_unary_expression, + STATE(2059), 1, + sym_member_expression, + STATE(2073), 1, + sym_file_number_literal, + STATE(4248), 1, + sym_file_number, + STATE(13116), 1, + sym__callable_expression, + ACTIONS(13029), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13027), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13031), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2072), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [99210] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(3208), 1, + sym_file_number_literal, + STATE(5882), 1, + sym_file_number, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6792), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6794), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3202), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [99304] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(3208), 1, + sym_file_number_literal, + STATE(5895), 1, + sym_file_number, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6792), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6794), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3202), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [99398] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(1436), 1, + sym_file_number_literal, + STATE(3802), 1, + sym_file_number, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(5140), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(5142), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1435), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [99492] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12375), 1, + aux_sym_unary_expression_token1, + ACTIONS(13473), 1, + sym_identifier, + ACTIONS(13475), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13477), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_BANG, + ACTIONS(13481), 1, + anon_sym_LPAREN, + ACTIONS(13483), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13485), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13487), 1, + anon_sym_PLUS, + ACTIONS(13489), 1, + anon_sym_DASH, + ACTIONS(13491), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13493), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13501), 1, + anon_sym_POUND, + STATE(2229), 1, + sym_call_expression, + STATE(2392), 1, + sym_member_expression, + STATE(2426), 1, + sym__signed_unary_expression, + STATE(5609), 1, + sym_file_record_range, + STATE(13430), 1, + sym__callable_expression, + ACTIONS(13497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2358), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13495), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13499), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2473), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [99584] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13503), 1, + aux_sym_on_error_statement_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13505), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13507), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10694), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [99676] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(15169), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [99770] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(2984), 1, + sym_file_number_literal, + STATE(6123), 1, + sym_file_number, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6804), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6806), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2983), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [99864] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(2984), 1, + sym_file_number_literal, + STATE(6246), 1, + sym_file_number, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6804), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6806), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2983), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [99958] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13509), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13511), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13513), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10766), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [100050] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13515), 1, + aux_sym_on_error_statement_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13517), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13519), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10690), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [100142] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(13958), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [100236] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(2984), 1, + sym_file_number_literal, + STATE(6060), 1, + sym_file_number, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6804), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6806), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2983), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [100330] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(2984), 1, + sym_file_number_literal, + STATE(6063), 1, + sym_file_number, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6804), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6806), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2983), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [100424] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13521), 1, + aux_sym_on_error_statement_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13523), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13525), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10706), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [100516] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(14071), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [100610] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12259), 1, + aux_sym_unary_expression_token1, + ACTIONS(13527), 1, + sym_identifier, + ACTIONS(13529), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13531), 1, + anon_sym_DOT, + ACTIONS(13533), 1, + anon_sym_BANG, + ACTIONS(13535), 1, + anon_sym_LPAREN, + ACTIONS(13537), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13539), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13541), 1, + anon_sym_PLUS, + ACTIONS(13543), 1, + anon_sym_DASH, + ACTIONS(13545), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13547), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13555), 1, + anon_sym_POUND, + STATE(2883), 1, + sym_call_expression, + STATE(2935), 1, + sym_member_expression, + STATE(3272), 1, + sym__signed_unary_expression, + STATE(6886), 1, + sym_file_record_range, + STATE(13134), 1, + sym__callable_expression, + ACTIONS(13551), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3137), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13549), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13553), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3030), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [100702] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(3208), 1, + sym_file_number_literal, + STATE(6277), 1, + sym_file_number, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6792), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6794), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3202), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [100796] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13557), 1, + aux_sym_on_error_statement_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13559), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13561), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10727), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [100888] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(14174), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [100982] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12259), 1, + aux_sym_unary_expression_token1, + ACTIONS(13527), 1, + sym_identifier, + ACTIONS(13529), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13531), 1, + anon_sym_DOT, + ACTIONS(13533), 1, + anon_sym_BANG, + ACTIONS(13535), 1, + anon_sym_LPAREN, + ACTIONS(13537), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13539), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13541), 1, + anon_sym_PLUS, + ACTIONS(13543), 1, + anon_sym_DASH, + ACTIONS(13545), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13547), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13555), 1, + anon_sym_POUND, + STATE(2883), 1, + sym_call_expression, + STATE(2935), 1, + sym_member_expression, + STATE(3272), 1, + sym__signed_unary_expression, + STATE(6903), 1, + sym_file_record_range, + STATE(13134), 1, + sym__callable_expression, + ACTIONS(13551), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3137), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13549), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13553), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3030), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [101074] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(2427), 1, + sym_file_number_literal, + STATE(4976), 1, + sym_file_number, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6609), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6611), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2362), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [101168] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13563), 1, + aux_sym_on_error_statement_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13565), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13567), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10700), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [101260] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(14262), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [101354] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12375), 1, + aux_sym_unary_expression_token1, + ACTIONS(13473), 1, + sym_identifier, + ACTIONS(13475), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13477), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_BANG, + ACTIONS(13481), 1, + anon_sym_LPAREN, + ACTIONS(13483), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13485), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13487), 1, + anon_sym_PLUS, + ACTIONS(13489), 1, + anon_sym_DASH, + ACTIONS(13491), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13493), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13501), 1, + anon_sym_POUND, + STATE(2229), 1, + sym_call_expression, + STATE(2392), 1, + sym_member_expression, + STATE(2426), 1, + sym__signed_unary_expression, + STATE(5618), 1, + sym_file_record_range, + STATE(13430), 1, + sym__callable_expression, + ACTIONS(13497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2358), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13495), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13499), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2473), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [101446] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(7061), 1, + sym_print_argument_sequence, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13569), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13571), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2456), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [101538] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13573), 1, + aux_sym_on_error_statement_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13575), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13577), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10692), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [101630] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(14350), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [101724] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12899), 1, + sym_identifier, + ACTIONS(12901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12903), 1, + anon_sym_DOT, + ACTIONS(12905), 1, + anon_sym_BANG, + ACTIONS(12907), 1, + anon_sym_LPAREN, + ACTIONS(12909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12913), 1, + anon_sym_PLUS, + ACTIONS(12915), 1, + anon_sym_DASH, + ACTIONS(12917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12927), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_call_expression, + STATE(2929), 1, + sym_file_number_literal, + STATE(3093), 1, + sym__signed_unary_expression, + STATE(3364), 1, + sym_member_expression, + STATE(6142), 1, + sym_file_number, + STATE(13461), 1, + sym__callable_expression, + ACTIONS(12923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2928), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [101818] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(7111), 1, + sym_print_argument_sequence, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13569), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13571), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2456), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [101910] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13579), 1, + aux_sym_on_error_statement_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13583), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10713), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [102002] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(14438), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [102096] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(7112), 1, + sym_print_argument_sequence, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13569), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13571), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2456), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [102188] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12899), 1, + sym_identifier, + ACTIONS(12901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12903), 1, + anon_sym_DOT, + ACTIONS(12905), 1, + anon_sym_BANG, + ACTIONS(12907), 1, + anon_sym_LPAREN, + ACTIONS(12909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12913), 1, + anon_sym_PLUS, + ACTIONS(12915), 1, + anon_sym_DASH, + ACTIONS(12917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12927), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_call_expression, + STATE(2929), 1, + sym_file_number_literal, + STATE(3093), 1, + sym__signed_unary_expression, + STATE(3364), 1, + sym_member_expression, + STATE(6187), 1, + sym_file_number, + STATE(13461), 1, + sym__callable_expression, + ACTIONS(12923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2928), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [102282] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13585), 1, + aux_sym_on_error_statement_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13587), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13589), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10721), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [102374] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(14526), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [102468] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(6290), 1, + sym_print_argument_sequence, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13569), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13571), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2456), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [102560] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12899), 1, + sym_identifier, + ACTIONS(12901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12903), 1, + anon_sym_DOT, + ACTIONS(12905), 1, + anon_sym_BANG, + ACTIONS(12907), 1, + anon_sym_LPAREN, + ACTIONS(12909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12913), 1, + anon_sym_PLUS, + ACTIONS(12915), 1, + anon_sym_DASH, + ACTIONS(12917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12927), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_call_expression, + STATE(2929), 1, + sym_file_number_literal, + STATE(3093), 1, + sym__signed_unary_expression, + STATE(3364), 1, + sym_member_expression, + STATE(6201), 1, + sym_file_number, + STATE(13461), 1, + sym__callable_expression, + ACTIONS(12923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2928), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [102654] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(14610), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [102748] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + ACTIONS(13591), 1, + anon_sym_COMMA, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13593), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13595), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10743), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [102840] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12101), 1, + aux_sym_unary_expression_token1, + ACTIONS(13425), 1, + sym_identifier, + ACTIONS(13427), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13429), 1, + anon_sym_DOT, + ACTIONS(13431), 1, + anon_sym_BANG, + ACTIONS(13433), 1, + anon_sym_LPAREN, + ACTIONS(13435), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13437), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13439), 1, + anon_sym_PLUS, + ACTIONS(13441), 1, + anon_sym_DASH, + ACTIONS(13443), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13445), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13453), 1, + anon_sym_POUND, + STATE(886), 1, + sym_call_expression, + STATE(1083), 1, + sym__signed_unary_expression, + STATE(1117), 1, + sym_member_expression, + STATE(3984), 1, + sym_file_record_range, + STATE(13330), 1, + sym__callable_expression, + ACTIONS(13449), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1362), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13447), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13451), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1283), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [102932] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12727), 1, + aux_sym_unary_expression_token1, + ACTIONS(13597), 1, + sym_identifier, + ACTIONS(13599), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13601), 1, + anon_sym_DOT, + ACTIONS(13603), 1, + anon_sym_BANG, + ACTIONS(13605), 1, + anon_sym_LPAREN, + ACTIONS(13607), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13609), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13611), 1, + anon_sym_PLUS, + ACTIONS(13613), 1, + anon_sym_DASH, + ACTIONS(13615), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13617), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13625), 1, + anon_sym_POUND, + STATE(2907), 1, + sym_call_expression, + STATE(2947), 1, + sym__signed_unary_expression, + STATE(3084), 1, + sym_member_expression, + STATE(6776), 1, + sym_file_record_range, + STATE(13464), 1, + sym__callable_expression, + ACTIONS(13621), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3217), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13619), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13623), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3231), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [103024] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(2984), 1, + sym_file_number_literal, + STATE(6166), 1, + sym_file_number, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6804), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6806), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2983), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [103118] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12727), 1, + aux_sym_unary_expression_token1, + ACTIONS(13597), 1, + sym_identifier, + ACTIONS(13599), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13601), 1, + anon_sym_DOT, + ACTIONS(13603), 1, + anon_sym_BANG, + ACTIONS(13605), 1, + anon_sym_LPAREN, + ACTIONS(13607), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13609), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13611), 1, + anon_sym_PLUS, + ACTIONS(13613), 1, + anon_sym_DASH, + ACTIONS(13615), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13617), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13625), 1, + anon_sym_POUND, + STATE(2907), 1, + sym_call_expression, + STATE(2947), 1, + sym__signed_unary_expression, + STATE(3084), 1, + sym_member_expression, + STATE(6815), 1, + sym_file_record_range, + STATE(13464), 1, + sym__callable_expression, + ACTIONS(13621), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3217), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13619), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13623), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3231), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [103210] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12971), 1, + sym_identifier, + ACTIONS(12973), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12975), 1, + anon_sym_DOT, + ACTIONS(12977), 1, + anon_sym_BANG, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12983), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12985), 1, + anon_sym_PLUS, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12989), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12991), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12999), 1, + anon_sym_POUND, + STATE(1051), 1, + sym_call_expression, + STATE(1079), 1, + sym_file_number_literal, + STATE(1149), 1, + sym_member_expression, + STATE(1286), 1, + sym__signed_unary_expression, + STATE(3847), 1, + sym_file_number, + STATE(13408), 1, + sym__callable_expression, + ACTIONS(12995), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12993), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12997), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1076), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [103304] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(13627), 1, + sym_identifier, + ACTIONS(13629), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13631), 1, + anon_sym_DOT, + ACTIONS(13633), 1, + anon_sym_BANG, + ACTIONS(13635), 1, + anon_sym_LPAREN, + ACTIONS(13637), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13639), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13641), 1, + anon_sym_PLUS, + ACTIONS(13643), 1, + anon_sym_DASH, + ACTIONS(13645), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13647), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13655), 1, + anon_sym_POUND, + STATE(2555), 1, + sym_call_expression, + STATE(3024), 1, + sym__signed_unary_expression, + STATE(3085), 1, + sym_file_number_literal, + STATE(3154), 1, + sym_member_expression, + STATE(5880), 1, + sym_file_number, + STATE(13610), 1, + sym__callable_expression, + ACTIONS(13651), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13649), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13653), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3082), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [103398] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(6354), 1, + sym_print_argument_sequence, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13657), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13659), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2442), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [103490] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(13627), 1, + sym_identifier, + ACTIONS(13629), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13631), 1, + anon_sym_DOT, + ACTIONS(13633), 1, + anon_sym_BANG, + ACTIONS(13635), 1, + anon_sym_LPAREN, + ACTIONS(13637), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13639), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13641), 1, + anon_sym_PLUS, + ACTIONS(13643), 1, + anon_sym_DASH, + ACTIONS(13645), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13647), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13655), 1, + anon_sym_POUND, + STATE(2555), 1, + sym_call_expression, + STATE(3024), 1, + sym__signed_unary_expression, + STATE(3085), 1, + sym_file_number_literal, + STATE(3154), 1, + sym_member_expression, + STATE(5903), 1, + sym_file_number, + STATE(13610), 1, + sym__callable_expression, + ACTIONS(13651), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13649), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13653), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3082), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [103584] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(6405), 1, + sym_print_argument_sequence, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13657), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13659), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2442), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [103676] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(6408), 1, + sym_print_argument_sequence, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13657), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13659), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2442), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [103768] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(13627), 1, + sym_identifier, + ACTIONS(13629), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13631), 1, + anon_sym_DOT, + ACTIONS(13633), 1, + anon_sym_BANG, + ACTIONS(13635), 1, + anon_sym_LPAREN, + ACTIONS(13637), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13639), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13641), 1, + anon_sym_PLUS, + ACTIONS(13643), 1, + anon_sym_DASH, + ACTIONS(13645), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13647), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13655), 1, + anon_sym_POUND, + STATE(2555), 1, + sym_call_expression, + STATE(3024), 1, + sym__signed_unary_expression, + STATE(3085), 1, + sym_file_number_literal, + STATE(3154), 1, + sym_member_expression, + STATE(6039), 1, + sym_file_number, + STATE(13610), 1, + sym__callable_expression, + ACTIONS(13651), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13649), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13653), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3082), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [103862] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(6428), 1, + sym_print_argument_sequence, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13657), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13659), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2442), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [103954] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(13627), 1, + sym_identifier, + ACTIONS(13629), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13631), 1, + anon_sym_DOT, + ACTIONS(13633), 1, + anon_sym_BANG, + ACTIONS(13635), 1, + anon_sym_LPAREN, + ACTIONS(13637), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13639), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13641), 1, + anon_sym_PLUS, + ACTIONS(13643), 1, + anon_sym_DASH, + ACTIONS(13645), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13647), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13655), 1, + anon_sym_POUND, + STATE(2555), 1, + sym_call_expression, + STATE(3024), 1, + sym__signed_unary_expression, + STATE(3085), 1, + sym_file_number_literal, + STATE(3154), 1, + sym_member_expression, + STATE(6146), 1, + sym_file_number, + STATE(13610), 1, + sym__callable_expression, + ACTIONS(13651), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13649), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13653), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3082), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [104048] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(4081), 1, + sym_print_argument_sequence, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12967), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12969), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(839), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [104140] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12971), 1, + sym_identifier, + ACTIONS(12973), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12975), 1, + anon_sym_DOT, + ACTIONS(12977), 1, + anon_sym_BANG, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12983), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12985), 1, + anon_sym_PLUS, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12989), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12991), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12999), 1, + anon_sym_POUND, + STATE(1051), 1, + sym_call_expression, + STATE(1079), 1, + sym_file_number_literal, + STATE(1149), 1, + sym_member_expression, + STATE(1286), 1, + sym__signed_unary_expression, + STATE(3715), 1, + sym_file_number, + STATE(13408), 1, + sym__callable_expression, + ACTIONS(12995), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12993), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12997), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1076), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [104234] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + ACTIONS(12933), 1, + sym_identifier, + ACTIONS(12935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12937), 1, + anon_sym_DOT, + ACTIONS(12939), 1, + anon_sym_BANG, + ACTIONS(12941), 1, + anon_sym_LPAREN, + ACTIONS(12943), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12945), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12947), 1, + anon_sym_PLUS, + ACTIONS(12949), 1, + anon_sym_DASH, + ACTIONS(12951), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12953), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12961), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_call_expression, + STATE(2375), 1, + sym_member_expression, + STATE(2401), 1, + sym__signed_unary_expression, + STATE(2530), 1, + sym_file_number_literal, + STATE(5012), 1, + sym_file_number, + STATE(13228), 1, + sym__callable_expression, + ACTIONS(12957), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12955), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12959), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2519), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [104328] = 25, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(5719), 1, + sym_print_argument_sequence, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12929), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12931), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2212), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [104420] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + ACTIONS(12933), 1, + sym_identifier, + ACTIONS(12935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12937), 1, + anon_sym_DOT, + ACTIONS(12939), 1, + anon_sym_BANG, + ACTIONS(12941), 1, + anon_sym_LPAREN, + ACTIONS(12943), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12945), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12947), 1, + anon_sym_PLUS, + ACTIONS(12949), 1, + anon_sym_DASH, + ACTIONS(12951), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12953), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12961), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_call_expression, + STATE(2375), 1, + sym_member_expression, + STATE(2401), 1, + sym__signed_unary_expression, + STATE(2530), 1, + sym_file_number_literal, + STATE(5028), 1, + sym_file_number, + STATE(13228), 1, + sym__callable_expression, + ACTIONS(12957), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(12955), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(12959), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2519), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [104514] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(3697), 1, + sym_file_number_literal, + STATE(6747), 1, + sym_file_number, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(6838), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(6840), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3695), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [104608] = 26, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10793), 1, + sym_file_number_literal, + STATE(13480), 1, + sym__callable_expression, + STATE(13728), 1, + sym_file_number, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10792), 10, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + [104702] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11877), 1, + sym_identifier, + ACTIONS(11879), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11887), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11891), 1, + anon_sym_PLUS, + ACTIONS(11893), 1, + anon_sym_DASH, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11907), 1, + anon_sym_POUND, + ACTIONS(11969), 1, + aux_sym_unary_expression_token1, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7291), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13661), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13663), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7327), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [104791] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13665), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13667), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10968), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [104880] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11999), 1, + sym_identifier, + ACTIONS(12001), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12003), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12005), 1, + anon_sym_PLUS, + ACTIONS(12007), 1, + anon_sym_DASH, + ACTIONS(12009), 1, + aux_sym_unary_expression_token1, + ACTIONS(12011), 1, + anon_sym_POUND, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7318), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13669), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13671), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7296), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [104969] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11899), 1, + aux_sym_unary_expression_token1, + ACTIONS(13673), 1, + sym_identifier, + ACTIONS(13675), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13683), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13687), 1, + anon_sym_PLUS, + ACTIONS(13689), 1, + anon_sym_DASH, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13701), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(7380), 1, + sym_member_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13695), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13699), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7412), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [105058] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12879), 1, + aux_sym_unary_expression_token1, + ACTIONS(13703), 1, + sym_identifier, + ACTIONS(13705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13713), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13717), 1, + anon_sym_PLUS, + ACTIONS(13719), 1, + anon_sym_DASH, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13731), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10381), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13725), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13729), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10507), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [105147] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11899), 1, + aux_sym_unary_expression_token1, + ACTIONS(13673), 1, + sym_identifier, + ACTIONS(13675), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13683), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13687), 1, + anon_sym_PLUS, + ACTIONS(13689), 1, + anon_sym_DASH, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13701), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(7380), 1, + sym_member_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13733), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13735), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7386), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [105236] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11899), 1, + aux_sym_unary_expression_token1, + ACTIONS(13673), 1, + sym_identifier, + ACTIONS(13675), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13683), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13687), 1, + anon_sym_PLUS, + ACTIONS(13689), 1, + anon_sym_DASH, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13701), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(7380), 1, + sym_member_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13739), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7387), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [105325] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11899), 1, + aux_sym_unary_expression_token1, + ACTIONS(13673), 1, + sym_identifier, + ACTIONS(13675), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13683), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13687), 1, + anon_sym_PLUS, + ACTIONS(13689), 1, + anon_sym_DASH, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13701), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(7380), 1, + sym_member_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13741), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13743), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7382), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [105414] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11899), 1, + aux_sym_unary_expression_token1, + ACTIONS(13673), 1, + sym_identifier, + ACTIONS(13675), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13683), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13687), 1, + anon_sym_PLUS, + ACTIONS(13689), 1, + anon_sym_DASH, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13701), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(7380), 1, + sym_member_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13745), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13747), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7392), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [105503] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11899), 1, + aux_sym_unary_expression_token1, + ACTIONS(13673), 1, + sym_identifier, + ACTIONS(13675), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13683), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13687), 1, + anon_sym_PLUS, + ACTIONS(13689), 1, + anon_sym_DASH, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13701), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(7380), 1, + sym_member_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13749), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13751), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7409), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [105592] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11899), 1, + aux_sym_unary_expression_token1, + ACTIONS(13673), 1, + sym_identifier, + ACTIONS(13675), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13683), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13687), 1, + anon_sym_PLUS, + ACTIONS(13689), 1, + anon_sym_DASH, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13701), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(7380), 1, + sym_member_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13753), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13755), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7413), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [105681] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11899), 1, + aux_sym_unary_expression_token1, + ACTIONS(13673), 1, + sym_identifier, + ACTIONS(13675), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13683), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13687), 1, + anon_sym_PLUS, + ACTIONS(13689), 1, + anon_sym_DASH, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13701), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(7380), 1, + sym_member_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13757), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13759), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7383), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [105770] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11899), 1, + aux_sym_unary_expression_token1, + ACTIONS(13673), 1, + sym_identifier, + ACTIONS(13675), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13683), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13687), 1, + anon_sym_PLUS, + ACTIONS(13689), 1, + anon_sym_DASH, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13701), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(7380), 1, + sym_member_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13761), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13763), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7384), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [105859] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11899), 1, + aux_sym_unary_expression_token1, + ACTIONS(13673), 1, + sym_identifier, + ACTIONS(13675), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13683), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13687), 1, + anon_sym_PLUS, + ACTIONS(13689), 1, + anon_sym_DASH, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13701), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(7380), 1, + sym_member_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13765), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13767), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7388), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [105948] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11899), 1, + aux_sym_unary_expression_token1, + ACTIONS(13673), 1, + sym_identifier, + ACTIONS(13675), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13683), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13687), 1, + anon_sym_PLUS, + ACTIONS(13689), 1, + anon_sym_DASH, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13701), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(7380), 1, + sym_member_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13769), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13771), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7389), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [106037] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11899), 1, + aux_sym_unary_expression_token1, + ACTIONS(13673), 1, + sym_identifier, + ACTIONS(13675), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13683), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13687), 1, + anon_sym_PLUS, + ACTIONS(13689), 1, + anon_sym_DASH, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13701), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(7380), 1, + sym_member_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13773), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13775), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7391), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [106126] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13777), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13779), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(930), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [106215] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12877), 1, + aux_sym_unary_expression_token1, + ACTIONS(13781), 1, + anon_sym_PLUS, + ACTIONS(13783), 1, + anon_sym_DASH, + ACTIONS(13789), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13785), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13787), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10620), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [106304] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13791), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13793), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10733), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [106393] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13795), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13797), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3743), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [106482] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(12341), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13799), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13801), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10098), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [106571] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(12341), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13803), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13805), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10096), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [106660] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(12341), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13807), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13809), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10111), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [106749] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13811), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13813), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10785), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [106838] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(12341), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13815), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13817), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10097), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [106927] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(12341), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13819), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13821), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10099), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [107016] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(12341), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13823), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13825), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10100), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [107105] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(12341), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13827), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13829), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10089), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [107194] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13831), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13833), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10329), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [107283] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13835), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13837), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10321), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [107372] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13839), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13841), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10305), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [107461] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13843), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13845), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10326), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [107550] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13847), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13849), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10310), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [107639] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13851), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13853), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10311), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [107728] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13855), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13857), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10312), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [107817] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13859), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13861), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10314), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [107906] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13863), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13865), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10315), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [107995] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13867), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13869), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10316), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [108084] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13871), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13873), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10317), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [108173] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13875), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13877), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10318), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [108262] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13879), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13881), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10698), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [108351] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(12341), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13883), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13885), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10106), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [108440] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(12341), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13887), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13889), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10114), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [108529] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(12341), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13891), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13893), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10095), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [108618] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(12341), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13895), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13897), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10110), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [108707] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12871), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13905), 1, + anon_sym_PLUS, + ACTIONS(13907), 1, + anon_sym_DASH, + ACTIONS(13913), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13909), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13911), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7364), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [108796] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13915), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13917), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1964), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [108885] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12439), 1, + aux_sym_unary_expression_token1, + ACTIONS(13919), 1, + anon_sym_PLUS, + ACTIONS(13921), 1, + anon_sym_DASH, + ACTIONS(13927), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13923), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10416), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [108974] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13929), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13931), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(998), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [109063] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13933), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13935), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(999), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [109152] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13937), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13939), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1002), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [109241] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13941), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13943), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1003), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [109330] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13945), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13947), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1004), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [109419] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13949), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13951), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1018), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [109508] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13953), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13955), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1019), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [109597] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13957), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13959), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1020), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [109686] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13961), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13963), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1021), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [109775] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13965), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13967), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1022), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [109864] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13969), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13971), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1023), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [109953] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13973), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13975), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1027), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [110042] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13977), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13979), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1487), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [110131] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13981), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13983), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1533), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [110220] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13985), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13987), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1574), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [110309] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13989), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13991), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1589), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [110398] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13993), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13995), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1050), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [110487] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(13997), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(13999), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1595), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [110576] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14001), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14003), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1630), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [110665] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14005), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14007), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1631), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [110754] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14009), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14011), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1632), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [110843] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14013), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14015), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10362), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [110932] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14017), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14019), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10358), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [111021] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14021), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14023), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10359), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [111110] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14025), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14027), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10339), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [111199] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14029), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14031), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10355), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [111288] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14033), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14035), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10354), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [111377] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14037), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14039), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10341), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [111466] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14041), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14043), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10336), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [111555] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14045), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14047), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10351), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [111644] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14049), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14051), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10338), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [111733] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14053), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14055), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10340), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [111822] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14057), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14059), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10348), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [111911] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14061), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14063), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10349), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [112000] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11899), 1, + aux_sym_unary_expression_token1, + ACTIONS(13673), 1, + sym_identifier, + ACTIONS(13675), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13683), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13687), 1, + anon_sym_PLUS, + ACTIONS(13689), 1, + anon_sym_DASH, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13701), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(7380), 1, + sym_member_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14065), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14067), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7405), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [112089] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14069), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14071), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10328), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [112178] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14073), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14075), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3388), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [112267] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14077), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14079), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3389), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [112356] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14081), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14083), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2927), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [112445] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14085), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14087), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3303), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [112534] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12303), 1, + aux_sym_unary_expression_token1, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_DASH, + ACTIONS(14097), 1, + anon_sym_POUND, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14093), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14095), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(996), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [112623] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11981), 1, + anon_sym_PLUS, + ACTIONS(11983), 1, + anon_sym_DASH, + ACTIONS(11991), 1, + anon_sym_POUND, + ACTIONS(12491), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14099), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14101), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10286), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [112712] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11981), 1, + anon_sym_PLUS, + ACTIONS(11983), 1, + anon_sym_DASH, + ACTIONS(11991), 1, + anon_sym_POUND, + ACTIONS(12491), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14103), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14105), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10240), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [112801] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11981), 1, + anon_sym_PLUS, + ACTIONS(11983), 1, + anon_sym_DASH, + ACTIONS(11991), 1, + anon_sym_POUND, + ACTIONS(12491), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14107), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14109), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10241), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [112890] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11981), 1, + anon_sym_PLUS, + ACTIONS(11983), 1, + anon_sym_DASH, + ACTIONS(11991), 1, + anon_sym_POUND, + ACTIONS(12491), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14111), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14113), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10243), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [112979] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11981), 1, + anon_sym_PLUS, + ACTIONS(11983), 1, + anon_sym_DASH, + ACTIONS(11991), 1, + anon_sym_POUND, + ACTIONS(12491), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14115), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14117), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10244), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [113068] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11981), 1, + anon_sym_PLUS, + ACTIONS(11983), 1, + anon_sym_DASH, + ACTIONS(11991), 1, + anon_sym_POUND, + ACTIONS(12491), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14119), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14121), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10246), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [113157] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11981), 1, + anon_sym_PLUS, + ACTIONS(11983), 1, + anon_sym_DASH, + ACTIONS(11991), 1, + anon_sym_POUND, + ACTIONS(12491), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14123), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14125), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10248), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [113246] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11981), 1, + anon_sym_PLUS, + ACTIONS(11983), 1, + anon_sym_DASH, + ACTIONS(11991), 1, + anon_sym_POUND, + ACTIONS(12491), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14127), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14129), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10249), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [113335] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11981), 1, + anon_sym_PLUS, + ACTIONS(11983), 1, + anon_sym_DASH, + ACTIONS(11991), 1, + anon_sym_POUND, + ACTIONS(12491), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14131), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14133), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10250), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [113424] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11981), 1, + anon_sym_PLUS, + ACTIONS(11983), 1, + anon_sym_DASH, + ACTIONS(11991), 1, + anon_sym_POUND, + ACTIONS(12491), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14135), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14137), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10268), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [113513] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11981), 1, + anon_sym_PLUS, + ACTIONS(11983), 1, + anon_sym_DASH, + ACTIONS(11991), 1, + anon_sym_POUND, + ACTIONS(12491), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14139), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14141), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10269), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [113602] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11981), 1, + anon_sym_PLUS, + ACTIONS(11983), 1, + anon_sym_DASH, + ACTIONS(11991), 1, + anon_sym_POUND, + ACTIONS(12491), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14143), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14145), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10271), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [113691] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14147), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14149), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10513), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [113780] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14151), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14153), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(921), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [113869] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14155), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14157), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2936), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [113958] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12499), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14159), 1, + anon_sym_PLUS, + ACTIONS(14161), 1, + anon_sym_DASH, + ACTIONS(14167), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14163), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14165), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7394), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [114047] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12499), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14159), 1, + anon_sym_PLUS, + ACTIONS(14161), 1, + anon_sym_DASH, + ACTIONS(14167), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14169), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14171), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7395), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [114136] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12499), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14159), 1, + anon_sym_PLUS, + ACTIONS(14161), 1, + anon_sym_DASH, + ACTIONS(14167), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14173), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14175), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7396), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [114225] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12499), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14159), 1, + anon_sym_PLUS, + ACTIONS(14161), 1, + anon_sym_DASH, + ACTIONS(14167), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14177), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14179), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7397), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [114314] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12499), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14159), 1, + anon_sym_PLUS, + ACTIONS(14161), 1, + anon_sym_DASH, + ACTIONS(14167), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14181), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14183), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7398), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [114403] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12499), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14159), 1, + anon_sym_PLUS, + ACTIONS(14161), 1, + anon_sym_DASH, + ACTIONS(14167), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14185), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14187), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7399), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [114492] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12499), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14159), 1, + anon_sym_PLUS, + ACTIONS(14161), 1, + anon_sym_DASH, + ACTIONS(14167), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14189), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14191), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7400), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [114581] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12499), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14159), 1, + anon_sym_PLUS, + ACTIONS(14161), 1, + anon_sym_DASH, + ACTIONS(14167), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14193), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14195), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7401), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [114670] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12499), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14159), 1, + anon_sym_PLUS, + ACTIONS(14161), 1, + anon_sym_DASH, + ACTIONS(14167), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14197), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14199), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7402), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [114759] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12499), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14159), 1, + anon_sym_PLUS, + ACTIONS(14161), 1, + anon_sym_DASH, + ACTIONS(14167), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14201), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14203), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7403), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [114848] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12499), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14159), 1, + anon_sym_PLUS, + ACTIONS(14161), 1, + anon_sym_DASH, + ACTIONS(14167), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14205), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14207), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7404), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [114937] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12499), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14159), 1, + anon_sym_PLUS, + ACTIONS(14161), 1, + anon_sym_DASH, + ACTIONS(14167), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14209), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14211), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7406), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [115026] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11985), 1, + aux_sym_unary_expression_token1, + ACTIONS(14213), 1, + anon_sym_PLUS, + ACTIONS(14215), 1, + anon_sym_DASH, + ACTIONS(14221), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14217), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14219), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10534), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [115115] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14223), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14225), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2937), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [115204] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14227), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14229), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2944), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [115293] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14231), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14233), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2945), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [115382] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14235), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14237), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2952), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [115471] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14239), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14241), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2955), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [115560] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14243), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14245), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2974), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [115649] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14247), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14249), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2985), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [115738] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14251), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14253), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3022), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [115827] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(12341), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14255), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14257), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10104), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [115916] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14259), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14261), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3422), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [116005] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14263), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14265), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2777), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [116094] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14267), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14269), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2609), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [116183] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14271), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14273), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2775), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [116272] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14275), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14277), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2600), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [116361] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14279), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14281), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2832), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [116450] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14283), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14285), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2881), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [116539] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14287), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14289), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2884), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [116628] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14291), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14293), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2906), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [116717] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14295), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14297), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2611), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [116806] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14299), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14301), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2918), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [116895] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14303), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14305), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2666), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [116984] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14307), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14309), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2595), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [117073] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12871), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13905), 1, + anon_sym_PLUS, + ACTIONS(13907), 1, + anon_sym_DASH, + ACTIONS(13913), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14311), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14313), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7347), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [117162] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14315), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14317), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3590), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [117251] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14319), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14321), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3846), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [117340] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14323), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14325), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3613), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [117429] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14327), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14329), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3634), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [117518] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14331), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14333), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3635), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [117607] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14335), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14337), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2559), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [117696] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14339), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14341), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3676), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [117785] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14343), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14345), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3684), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [117874] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14347), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14349), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3688), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [117963] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14351), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14353), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3691), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [118052] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12883), 1, + aux_sym_unary_expression_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1620), 1, + sym__signed_unary_expression, + STATE(1654), 1, + sym_member_expression, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14355), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14357), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1679), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [118141] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12883), 1, + aux_sym_unary_expression_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1620), 1, + sym__signed_unary_expression, + STATE(1654), 1, + sym_member_expression, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14359), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14361), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1684), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [118230] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12067), 1, + aux_sym_unary_expression_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(14363), 1, + sym_identifier, + ACTIONS(14365), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(14367), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14369), 1, + anon_sym_PLUS, + ACTIONS(14371), 1, + anon_sym_DASH, + ACTIONS(14377), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10375), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14373), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14375), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10473), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [118319] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12883), 1, + aux_sym_unary_expression_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1620), 1, + sym__signed_unary_expression, + STATE(1654), 1, + sym_member_expression, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14379), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14381), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1844), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [118408] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12883), 1, + aux_sym_unary_expression_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1620), 1, + sym__signed_unary_expression, + STATE(1654), 1, + sym_member_expression, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14383), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14385), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1860), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [118497] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12883), 1, + aux_sym_unary_expression_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1620), 1, + sym__signed_unary_expression, + STATE(1654), 1, + sym_member_expression, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14387), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14389), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1861), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [118586] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12883), 1, + aux_sym_unary_expression_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1620), 1, + sym__signed_unary_expression, + STATE(1654), 1, + sym_member_expression, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14391), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14393), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1862), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [118675] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12883), 1, + aux_sym_unary_expression_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1620), 1, + sym__signed_unary_expression, + STATE(1654), 1, + sym_member_expression, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14395), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14397), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1866), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [118764] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12883), 1, + aux_sym_unary_expression_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1620), 1, + sym__signed_unary_expression, + STATE(1654), 1, + sym_member_expression, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14399), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14401), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1868), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [118853] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12883), 1, + aux_sym_unary_expression_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1620), 1, + sym__signed_unary_expression, + STATE(1654), 1, + sym_member_expression, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14403), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14405), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1880), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [118942] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12883), 1, + aux_sym_unary_expression_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1620), 1, + sym__signed_unary_expression, + STATE(1654), 1, + sym_member_expression, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14407), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14409), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1895), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [119031] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12883), 1, + aux_sym_unary_expression_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1620), 1, + sym__signed_unary_expression, + STATE(1654), 1, + sym_member_expression, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14411), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14413), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1941), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [119120] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12883), 1, + aux_sym_unary_expression_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1620), 1, + sym__signed_unary_expression, + STATE(1654), 1, + sym_member_expression, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14415), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14417), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1946), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [119209] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12883), 1, + aux_sym_unary_expression_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1620), 1, + sym__signed_unary_expression, + STATE(1654), 1, + sym_member_expression, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14419), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14421), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1948), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [119298] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12871), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13905), 1, + anon_sym_PLUS, + ACTIONS(13907), 1, + anon_sym_DASH, + ACTIONS(13913), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14423), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14425), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7358), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [119387] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14427), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14429), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10972), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [119476] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14431), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14433), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3047), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [119565] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12385), 1, + aux_sym_unary_expression_token1, + ACTIONS(14435), 1, + anon_sym_PLUS, + ACTIONS(14437), 1, + anon_sym_DASH, + ACTIONS(14443), 1, + anon_sym_POUND, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14439), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14441), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2618), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [119654] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11985), 1, + aux_sym_unary_expression_token1, + ACTIONS(14213), 1, + anon_sym_PLUS, + ACTIONS(14215), 1, + anon_sym_DASH, + ACTIONS(14221), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14445), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14447), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10564), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [119743] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11985), 1, + aux_sym_unary_expression_token1, + ACTIONS(14213), 1, + anon_sym_PLUS, + ACTIONS(14215), 1, + anon_sym_DASH, + ACTIONS(14221), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14449), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14451), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10549), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [119832] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11985), 1, + aux_sym_unary_expression_token1, + ACTIONS(14213), 1, + anon_sym_PLUS, + ACTIONS(14215), 1, + anon_sym_DASH, + ACTIONS(14221), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14453), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14455), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10568), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [119921] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11985), 1, + aux_sym_unary_expression_token1, + ACTIONS(14213), 1, + anon_sym_PLUS, + ACTIONS(14215), 1, + anon_sym_DASH, + ACTIONS(14221), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14457), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14459), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10521), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [120010] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11985), 1, + aux_sym_unary_expression_token1, + ACTIONS(14213), 1, + anon_sym_PLUS, + ACTIONS(14215), 1, + anon_sym_DASH, + ACTIONS(14221), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14461), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14463), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10522), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [120099] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11985), 1, + aux_sym_unary_expression_token1, + ACTIONS(14213), 1, + anon_sym_PLUS, + ACTIONS(14215), 1, + anon_sym_DASH, + ACTIONS(14221), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14465), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14467), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10526), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [120188] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11985), 1, + aux_sym_unary_expression_token1, + ACTIONS(14213), 1, + anon_sym_PLUS, + ACTIONS(14215), 1, + anon_sym_DASH, + ACTIONS(14221), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14469), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14471), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10527), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [120277] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11985), 1, + aux_sym_unary_expression_token1, + ACTIONS(14213), 1, + anon_sym_PLUS, + ACTIONS(14215), 1, + anon_sym_DASH, + ACTIONS(14221), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14473), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14475), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10528), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [120366] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11985), 1, + aux_sym_unary_expression_token1, + ACTIONS(14213), 1, + anon_sym_PLUS, + ACTIONS(14215), 1, + anon_sym_DASH, + ACTIONS(14221), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14477), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14479), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10529), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [120455] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11985), 1, + aux_sym_unary_expression_token1, + ACTIONS(14213), 1, + anon_sym_PLUS, + ACTIONS(14215), 1, + anon_sym_DASH, + ACTIONS(14221), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14481), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14483), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10530), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [120544] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11985), 1, + aux_sym_unary_expression_token1, + ACTIONS(14213), 1, + anon_sym_PLUS, + ACTIONS(14215), 1, + anon_sym_DASH, + ACTIONS(14221), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14485), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14487), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10532), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [120633] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11985), 1, + aux_sym_unary_expression_token1, + ACTIONS(14213), 1, + anon_sym_PLUS, + ACTIONS(14215), 1, + anon_sym_DASH, + ACTIONS(14221), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14489), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14491), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10533), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [120722] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14493), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14495), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10481), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [120811] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14497), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14499), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2681), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [120900] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11981), 1, + anon_sym_PLUS, + ACTIONS(11983), 1, + anon_sym_DASH, + ACTIONS(11991), 1, + anon_sym_POUND, + ACTIONS(12491), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14501), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14503), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10245), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [120989] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12871), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13905), 1, + anon_sym_PLUS, + ACTIONS(13907), 1, + anon_sym_DASH, + ACTIONS(13913), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14505), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14507), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7345), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [121078] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14513), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14515), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10818), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [121167] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11877), 1, + sym_identifier, + ACTIONS(11879), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11887), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11891), 1, + anon_sym_PLUS, + ACTIONS(11893), 1, + anon_sym_DASH, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11907), 1, + anon_sym_POUND, + ACTIONS(11969), 1, + aux_sym_unary_expression_token1, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7291), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14519), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14521), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7329), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [121256] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14523), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14525), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10519), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [121345] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14527), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14529), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10641), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [121434] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14531), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14533), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10975), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [121523] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14535), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14537), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10493), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [121612] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14539), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14541), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10494), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [121701] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14543), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14545), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10495), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [121790] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14549), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10478), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [121879] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14551), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14553), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10518), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [121968] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14555), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14557), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10499), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [122057] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14559), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14561), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10500), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [122146] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14563), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14565), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10501), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [122235] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14567), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14569), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10502), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [122324] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14571), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14573), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10504), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [122413] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14575), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14577), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10505), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [122502] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14579), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14581), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10506), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [122591] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14583), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10663), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [122680] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14587), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14589), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10614), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [122769] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14591), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14593), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10683), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [122858] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14595), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14597), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10684), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [122947] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14599), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14601), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10509), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [123036] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14603), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14605), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10672), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [123125] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14607), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14609), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10677), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [123214] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14611), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14613), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10678), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [123303] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14615), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14617), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10679), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [123392] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14619), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14621), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1000), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [123481] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14623), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14625), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1001), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [123570] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12871), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13905), 1, + anon_sym_PLUS, + ACTIONS(13907), 1, + anon_sym_DASH, + ACTIONS(13913), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14627), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14629), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7355), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [123659] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14631), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14633), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1007), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [123748] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14635), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14637), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1008), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [123837] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14639), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14641), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1009), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [123926] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14643), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14645), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1010), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [124015] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14647), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14649), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1011), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [124104] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14651), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14653), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1012), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [124193] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14655), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14657), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1013), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [124282] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14659), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14661), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1014), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [124371] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14663), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14665), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1015), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [124460] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14667), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14669), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1016), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [124549] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14671), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14673), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1017), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [124638] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12499), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14159), 1, + anon_sym_PLUS, + ACTIONS(14161), 1, + anon_sym_DASH, + ACTIONS(14167), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14675), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14677), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7407), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [124727] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12135), 1, + aux_sym_unary_expression_token1, + ACTIONS(14679), 1, + anon_sym_PLUS, + ACTIONS(14681), 1, + anon_sym_DASH, + ACTIONS(14687), 1, + anon_sym_POUND, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14683), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14685), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3265), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [124816] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12439), 1, + aux_sym_unary_expression_token1, + ACTIONS(13919), 1, + anon_sym_PLUS, + ACTIONS(13921), 1, + anon_sym_DASH, + ACTIONS(13927), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14689), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14691), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10434), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [124905] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14693), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14695), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2606), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [124994] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14697), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14699), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10708), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [125083] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14701), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14703), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10816), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [125172] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14705), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14707), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3664), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [125261] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14709), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14711), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2738), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [125350] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14713), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14715), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2739), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [125439] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14717), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14719), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2741), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [125528] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14721), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14723), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2742), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [125617] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14725), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14727), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2751), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [125706] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14729), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14731), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2752), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [125795] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14733), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14735), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2753), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [125884] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14737), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14739), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2920), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [125973] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14741), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14743), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2755), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [126062] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14745), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14747), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2760), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [126151] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14749), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14751), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2766), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [126240] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14753), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14755), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2773), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [126329] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14757), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14759), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3706), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [126418] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14761), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14763), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3589), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [126507] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14765), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14767), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3588), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [126596] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14769), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14771), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3611), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [126685] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12871), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13905), 1, + anon_sym_PLUS, + ACTIONS(13907), 1, + anon_sym_DASH, + ACTIONS(13913), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14773), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14775), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7371), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [126774] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14777), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14779), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2904), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [126863] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14781), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14783), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3487), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [126952] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14785), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14787), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3501), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [127041] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14789), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14791), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3513), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [127130] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14793), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14795), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3517), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [127219] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14797), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14799), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2613), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [127308] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14801), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14803), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2765), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [127397] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14805), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14807), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10590), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [127486] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14809), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14811), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2602), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [127575] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14813), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14815), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2604), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [127664] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14817), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14819), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2605), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [127753] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14821), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14823), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2624), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [127842] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14825), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14827), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2643), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [127931] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14829), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14831), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2550), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [128020] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14833), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14835), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2648), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [128109] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14837), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14839), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2651), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [128198] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14841), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14843), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2652), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [128287] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14845), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14847), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2679), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [128376] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14849), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14851), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2688), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [128465] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14853), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14855), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10807), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [128554] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14857), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14859), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10584), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [128643] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12453), 1, + aux_sym_unary_expression_token1, + ACTIONS(14861), 1, + anon_sym_PLUS, + ACTIONS(14863), 1, + anon_sym_DASH, + ACTIONS(14869), 1, + anon_sym_POUND, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14865), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14867), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2697), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [128732] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14871), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14873), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2716), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [128821] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14875), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14877), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3543), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [128910] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12871), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13905), 1, + anon_sym_PLUS, + ACTIONS(13907), 1, + anon_sym_DASH, + ACTIONS(13913), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14879), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14881), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7353), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [128999] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14883), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14885), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2620), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [129088] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14887), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14889), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2650), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [129177] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14891), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14893), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2720), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [129266] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14895), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14897), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2551), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [129355] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14899), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14901), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2564), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [129444] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14903), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14905), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2565), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [129533] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14907), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14909), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2569), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [129622] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2582), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [129711] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14915), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14917), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2588), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [129800] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14919), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14921), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2598), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [129889] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14923), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2619), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [129978] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14927), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14929), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2637), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [130067] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11877), 1, + sym_identifier, + ACTIONS(11879), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11887), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11891), 1, + anon_sym_PLUS, + ACTIONS(11893), 1, + anon_sym_DASH, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11907), 1, + anon_sym_POUND, + ACTIONS(11969), 1, + aux_sym_unary_expression_token1, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7291), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14931), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14933), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7331), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [130156] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14935), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14937), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3424), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [130245] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14939), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14941), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3449), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [130334] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11999), 1, + sym_identifier, + ACTIONS(12001), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12003), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12005), 1, + anon_sym_PLUS, + ACTIONS(12007), 1, + anon_sym_DASH, + ACTIONS(12009), 1, + aux_sym_unary_expression_token1, + ACTIONS(12011), 1, + anon_sym_POUND, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7318), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14943), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14945), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7297), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [130423] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14947), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14949), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3466), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [130512] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14951), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14953), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3467), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [130601] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14955), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14957), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2977), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [130690] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11877), 1, + sym_identifier, + ACTIONS(11879), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11887), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11891), 1, + anon_sym_PLUS, + ACTIONS(11893), 1, + anon_sym_DASH, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11907), 1, + anon_sym_POUND, + ACTIONS(11969), 1, + aux_sym_unary_expression_token1, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7291), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14959), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14961), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7332), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [130779] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11877), 1, + sym_identifier, + ACTIONS(11879), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11887), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11891), 1, + anon_sym_PLUS, + ACTIONS(11893), 1, + anon_sym_DASH, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11907), 1, + anon_sym_POUND, + ACTIONS(11969), 1, + aux_sym_unary_expression_token1, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7291), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14963), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14965), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7324), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [130868] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11877), 1, + sym_identifier, + ACTIONS(11879), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11887), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11891), 1, + anon_sym_PLUS, + ACTIONS(11893), 1, + anon_sym_DASH, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11907), 1, + anon_sym_POUND, + ACTIONS(11969), 1, + aux_sym_unary_expression_token1, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7291), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14967), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14969), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7334), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [130957] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11877), 1, + sym_identifier, + ACTIONS(11879), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11887), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11891), 1, + anon_sym_PLUS, + ACTIONS(11893), 1, + anon_sym_DASH, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11907), 1, + anon_sym_POUND, + ACTIONS(11969), 1, + aux_sym_unary_expression_token1, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7291), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14971), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14973), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7335), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [131046] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14975), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14977), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2671), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [131135] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14979), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14981), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3481), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [131224] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14983), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14985), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3482), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [131313] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14987), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14989), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3515), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [131402] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14991), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14993), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3516), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [131491] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14995), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(14997), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2557), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [131580] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12635), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(14999), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15001), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10143), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [131669] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12635), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15003), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15005), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10118), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [131758] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12635), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15007), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15009), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10116), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [131847] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12635), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15011), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15013), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10120), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [131936] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12635), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15015), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15017), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10121), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [132025] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12635), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15019), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15021), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10122), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [132114] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12635), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15023), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15025), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10123), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [132203] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12635), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15027), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15029), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10125), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [132292] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12635), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15031), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15033), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10127), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [132381] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12635), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15035), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15037), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10128), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [132470] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12635), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15039), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15041), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10129), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [132559] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12635), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15043), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15045), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10130), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [132648] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11999), 1, + sym_identifier, + ACTIONS(12001), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12003), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12005), 1, + anon_sym_PLUS, + ACTIONS(12007), 1, + anon_sym_DASH, + ACTIONS(12009), 1, + aux_sym_unary_expression_token1, + ACTIONS(12011), 1, + anon_sym_POUND, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7318), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15047), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15049), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7315), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [132737] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11999), 1, + sym_identifier, + ACTIONS(12001), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12003), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12005), 1, + anon_sym_PLUS, + ACTIONS(12007), 1, + anon_sym_DASH, + ACTIONS(12009), 1, + aux_sym_unary_expression_token1, + ACTIONS(12011), 1, + anon_sym_POUND, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7318), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15051), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15053), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7316), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [132826] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11999), 1, + sym_identifier, + ACTIONS(12001), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12003), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12005), 1, + anon_sym_PLUS, + ACTIONS(12007), 1, + anon_sym_DASH, + ACTIONS(12009), 1, + aux_sym_unary_expression_token1, + ACTIONS(12011), 1, + anon_sym_POUND, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7318), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15055), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15057), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7317), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [132915] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11999), 1, + sym_identifier, + ACTIONS(12001), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12003), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12005), 1, + anon_sym_PLUS, + ACTIONS(12007), 1, + anon_sym_DASH, + ACTIONS(12009), 1, + aux_sym_unary_expression_token1, + ACTIONS(12011), 1, + anon_sym_POUND, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7318), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15059), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15061), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7319), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [133004] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12493), 1, + aux_sym_unary_expression_token1, + ACTIONS(15063), 1, + anon_sym_PLUS, + ACTIONS(15065), 1, + anon_sym_DASH, + ACTIONS(15071), 1, + anon_sym_POUND, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15067), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15069), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2622), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [133093] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15073), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15075), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2612), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [133182] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11999), 1, + sym_identifier, + ACTIONS(12001), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12003), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12005), 1, + anon_sym_PLUS, + ACTIONS(12007), 1, + anon_sym_DASH, + ACTIONS(12009), 1, + aux_sym_unary_expression_token1, + ACTIONS(12011), 1, + anon_sym_POUND, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7318), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15077), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15079), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7320), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [133271] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11999), 1, + sym_identifier, + ACTIONS(12001), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12003), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12005), 1, + anon_sym_PLUS, + ACTIONS(12007), 1, + anon_sym_DASH, + ACTIONS(12009), 1, + aux_sym_unary_expression_token1, + ACTIONS(12011), 1, + anon_sym_POUND, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7318), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15081), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15083), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7321), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [133360] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11999), 1, + sym_identifier, + ACTIONS(12001), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12003), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12005), 1, + anon_sym_PLUS, + ACTIONS(12007), 1, + anon_sym_DASH, + ACTIONS(12009), 1, + aux_sym_unary_expression_token1, + ACTIONS(12011), 1, + anon_sym_POUND, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7318), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15085), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15087), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7322), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [133449] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11999), 1, + sym_identifier, + ACTIONS(12001), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12003), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12005), 1, + anon_sym_PLUS, + ACTIONS(12007), 1, + anon_sym_DASH, + ACTIONS(12009), 1, + aux_sym_unary_expression_token1, + ACTIONS(12011), 1, + anon_sym_POUND, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7318), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15089), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15091), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7300), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [133538] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11999), 1, + sym_identifier, + ACTIONS(12001), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12003), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12005), 1, + anon_sym_PLUS, + ACTIONS(12007), 1, + anon_sym_DASH, + ACTIONS(12009), 1, + aux_sym_unary_expression_token1, + ACTIONS(12011), 1, + anon_sym_POUND, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7318), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15093), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15095), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7314), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [133627] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11999), 1, + sym_identifier, + ACTIONS(12001), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12003), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12005), 1, + anon_sym_PLUS, + ACTIONS(12007), 1, + anon_sym_DASH, + ACTIONS(12009), 1, + aux_sym_unary_expression_token1, + ACTIONS(12011), 1, + anon_sym_POUND, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7318), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15097), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15099), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7307), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [133716] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11999), 1, + sym_identifier, + ACTIONS(12001), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12003), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12005), 1, + anon_sym_PLUS, + ACTIONS(12007), 1, + anon_sym_DASH, + ACTIONS(12009), 1, + aux_sym_unary_expression_token1, + ACTIONS(12011), 1, + anon_sym_POUND, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7318), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15101), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15103), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7280), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [133805] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_DOT, + ACTIONS(4901), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4913), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, + anon_sym_DASH, + ACTIONS(4917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4927), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_LPAREN, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12883), 1, + aux_sym_unary_expression_token1, + STATE(1263), 1, + sym_call_expression, + STATE(1620), 1, + sym__signed_unary_expression, + STATE(1654), 1, + sym_member_expression, + STATE(13234), 1, + sym__callable_expression, + ACTIONS(4923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15105), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15107), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1681), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [133894] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15109), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15111), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2171), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [133983] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11877), 1, + sym_identifier, + ACTIONS(11879), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11887), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11891), 1, + anon_sym_PLUS, + ACTIONS(11893), 1, + anon_sym_DASH, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11907), 1, + anon_sym_POUND, + ACTIONS(11969), 1, + aux_sym_unary_expression_token1, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7291), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15113), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15115), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7336), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [134072] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15117), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15119), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1709), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [134161] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15121), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15123), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1711), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [134250] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15125), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15127), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1715), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [134339] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15129), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15131), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1716), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [134428] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15133), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15135), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1717), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [134517] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15137), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15139), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1720), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [134606] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15141), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15143), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1753), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [134695] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15145), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15147), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1758), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [134784] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15149), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15151), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1759), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [134873] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15153), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15155), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1761), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [134962] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15157), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15159), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1762), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [135051] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15161), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15163), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1765), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [135140] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15165), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15167), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2175), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [135229] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15169), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15171), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2164), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [135318] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15173), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15175), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2167), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [135407] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15177), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15179), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2170), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [135496] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15181), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15183), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3727), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [135585] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15185), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15187), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1881), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [135674] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15189), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15191), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2163), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [135763] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15193), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15195), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2174), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [135852] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15197), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15199), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2178), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [135941] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15201), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15203), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2179), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [136030] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11931), 1, + aux_sym_unary_expression_token1, + STATE(380), 1, + sym_call_expression, + STATE(428), 1, + sym__signed_unary_expression, + STATE(453), 1, + sym_member_expression, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15205), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15207), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(399), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [136119] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11877), 1, + sym_identifier, + ACTIONS(11879), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11887), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11891), 1, + anon_sym_PLUS, + ACTIONS(11893), 1, + anon_sym_DASH, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11907), 1, + anon_sym_POUND, + ACTIONS(11969), 1, + aux_sym_unary_expression_token1, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7291), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15209), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15211), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7337), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [136208] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15213), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15215), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2594), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [136297] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15217), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15219), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10653), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [136386] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15221), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15223), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2627), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [136475] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15225), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15227), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2628), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [136564] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15229), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15231), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2629), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [136653] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15233), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15235), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2630), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [136742] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15237), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15239), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2632), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [136831] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15241), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15243), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2633), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [136920] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15245), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15247), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2634), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [137009] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15249), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15251), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2636), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [137098] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15253), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15255), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2638), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [137187] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15257), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15259), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2640), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [137276] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15261), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15263), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2641), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [137365] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11877), 1, + sym_identifier, + ACTIONS(11879), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11887), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11891), 1, + anon_sym_PLUS, + ACTIONS(11893), 1, + anon_sym_DASH, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11907), 1, + anon_sym_POUND, + ACTIONS(11969), 1, + aux_sym_unary_expression_token1, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7291), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15265), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15267), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7330), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [137454] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11877), 1, + sym_identifier, + ACTIONS(11879), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11887), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11891), 1, + anon_sym_PLUS, + ACTIONS(11893), 1, + anon_sym_DASH, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11907), 1, + anon_sym_POUND, + ACTIONS(11969), 1, + aux_sym_unary_expression_token1, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7291), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15269), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15271), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7325), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [137543] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12561), 1, + aux_sym_unary_expression_token1, + ACTIONS(15273), 1, + sym_identifier, + ACTIONS(15275), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(15277), 1, + anon_sym_DOT, + ACTIONS(15279), 1, + anon_sym_BANG, + ACTIONS(15281), 1, + anon_sym_LPAREN, + ACTIONS(15283), 1, + aux_sym_as_type_clause_token2, + ACTIONS(15285), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(15287), 1, + anon_sym_PLUS, + ACTIONS(15289), 1, + anon_sym_DASH, + ACTIONS(15291), 1, + aux_sym_addressof_expression_token1, + ACTIONS(15293), 1, + aux_sym_type_of_expression_token1, + ACTIONS(15301), 1, + anon_sym_POUND, + STATE(10330), 1, + sym_call_expression, + STATE(10361), 1, + sym_member_expression, + STATE(10403), 1, + sym__signed_unary_expression, + STATE(13082), 1, + sym__callable_expression, + ACTIONS(15297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10345), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15295), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15299), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10399), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [137632] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15303), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15305), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(877), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [137721] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15307), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15309), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3784), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [137810] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11877), 1, + sym_identifier, + ACTIONS(11879), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11887), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11891), 1, + anon_sym_PLUS, + ACTIONS(11893), 1, + anon_sym_DASH, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11907), 1, + anon_sym_POUND, + ACTIONS(11969), 1, + aux_sym_unary_expression_token1, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7291), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15311), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15313), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7328), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [137899] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15315), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15317), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2698), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [137988] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15319), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15321), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2305), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [138077] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15323), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15325), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2306), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [138166] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15327), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15329), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2307), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [138255] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15331), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15333), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2308), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [138344] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15335), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15337), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2309), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [138433] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15339), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15341), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2310), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [138522] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15343), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15345), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2311), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [138611] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15347), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15349), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2312), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [138700] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15351), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15353), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2313), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [138789] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15355), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15357), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2314), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [138878] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15359), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15361), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2315), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [138967] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15363), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15365), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2317), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [139056] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11877), 1, + sym_identifier, + ACTIONS(11879), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11887), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11891), 1, + anon_sym_PLUS, + ACTIONS(11893), 1, + anon_sym_DASH, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11907), 1, + anon_sym_POUND, + ACTIONS(11969), 1, + aux_sym_unary_expression_token1, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7291), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15367), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15369), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7338), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [139145] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15371), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15373), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2733), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [139234] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15375), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15377), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2740), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [139323] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15379), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15381), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2743), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [139412] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15383), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15385), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2744), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [139501] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15387), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15389), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3214), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [139590] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15391), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15393), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3762), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [139679] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15395), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15397), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2320), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [139768] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15399), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15401), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2747), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [139857] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15403), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15405), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2748), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [139946] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15407), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15409), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2749), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [140035] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15411), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15413), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2750), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [140124] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12879), 1, + aux_sym_unary_expression_token1, + ACTIONS(13703), 1, + sym_identifier, + ACTIONS(13705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13713), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13717), 1, + anon_sym_PLUS, + ACTIONS(13719), 1, + anon_sym_DASH, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13731), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10381), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15415), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15417), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10517), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [140213] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11931), 1, + aux_sym_unary_expression_token1, + STATE(380), 1, + sym_call_expression, + STATE(428), 1, + sym__signed_unary_expression, + STATE(453), 1, + sym_member_expression, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15419), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15421), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(401), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [140302] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11931), 1, + aux_sym_unary_expression_token1, + STATE(380), 1, + sym_call_expression, + STATE(428), 1, + sym__signed_unary_expression, + STATE(453), 1, + sym_member_expression, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15423), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15425), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(465), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [140391] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11931), 1, + aux_sym_unary_expression_token1, + STATE(380), 1, + sym_call_expression, + STATE(428), 1, + sym__signed_unary_expression, + STATE(453), 1, + sym_member_expression, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15427), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15429), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(404), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [140480] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11931), 1, + aux_sym_unary_expression_token1, + STATE(380), 1, + sym_call_expression, + STATE(428), 1, + sym__signed_unary_expression, + STATE(453), 1, + sym_member_expression, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15431), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15433), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(405), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [140569] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11931), 1, + aux_sym_unary_expression_token1, + STATE(380), 1, + sym_call_expression, + STATE(428), 1, + sym__signed_unary_expression, + STATE(453), 1, + sym_member_expression, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15435), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15437), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(406), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [140658] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11931), 1, + aux_sym_unary_expression_token1, + STATE(380), 1, + sym_call_expression, + STATE(428), 1, + sym__signed_unary_expression, + STATE(453), 1, + sym_member_expression, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15439), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15441), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(407), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [140747] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11931), 1, + aux_sym_unary_expression_token1, + STATE(380), 1, + sym_call_expression, + STATE(428), 1, + sym__signed_unary_expression, + STATE(453), 1, + sym_member_expression, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15443), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15445), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(408), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [140836] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11931), 1, + aux_sym_unary_expression_token1, + STATE(380), 1, + sym_call_expression, + STATE(428), 1, + sym__signed_unary_expression, + STATE(453), 1, + sym_member_expression, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15447), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15449), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(409), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [140925] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11931), 1, + aux_sym_unary_expression_token1, + STATE(380), 1, + sym_call_expression, + STATE(428), 1, + sym__signed_unary_expression, + STATE(453), 1, + sym_member_expression, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15451), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15453), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(410), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [141014] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11931), 1, + aux_sym_unary_expression_token1, + STATE(380), 1, + sym_call_expression, + STATE(428), 1, + sym__signed_unary_expression, + STATE(453), 1, + sym_member_expression, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15455), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15457), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(411), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [141103] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11931), 1, + aux_sym_unary_expression_token1, + STATE(380), 1, + sym_call_expression, + STATE(428), 1, + sym__signed_unary_expression, + STATE(453), 1, + sym_member_expression, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15459), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15461), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(412), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [141192] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11931), 1, + aux_sym_unary_expression_token1, + STATE(380), 1, + sym_call_expression, + STATE(428), 1, + sym__signed_unary_expression, + STATE(453), 1, + sym_member_expression, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15463), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15465), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(413), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [141281] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12571), 1, + aux_sym_unary_expression_token1, + ACTIONS(15467), 1, + anon_sym_PLUS, + ACTIONS(15469), 1, + anon_sym_DASH, + ACTIONS(15475), 1, + anon_sym_POUND, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15471), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15473), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1579), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [141370] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12879), 1, + aux_sym_unary_expression_token1, + ACTIONS(13703), 1, + sym_identifier, + ACTIONS(13705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13713), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13717), 1, + anon_sym_PLUS, + ACTIONS(13719), 1, + anon_sym_DASH, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13731), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10381), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15477), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15479), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10511), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [141459] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15481), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15483), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3844), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [141548] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11999), 1, + sym_identifier, + ACTIONS(12001), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12003), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12005), 1, + anon_sym_PLUS, + ACTIONS(12007), 1, + anon_sym_DASH, + ACTIONS(12009), 1, + aux_sym_unary_expression_token1, + ACTIONS(12011), 1, + anon_sym_POUND, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7318), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15485), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15487), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7309), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [141637] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15489), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15491), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3473), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [141726] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15493), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15495), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3315), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [141815] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15497), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15499), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2887), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [141904] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15501), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15503), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2581), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [141993] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15505), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15507), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2590), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [142082] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15509), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15511), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2593), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [142171] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15513), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15515), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2552), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [142260] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15517), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15519), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2573), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [142349] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15521), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15523), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2601), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [142438] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15525), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15527), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2639), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [142527] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15529), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15531), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2770), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [142616] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15533), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15535), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2821), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [142705] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15537), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15539), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2890), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [142794] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15541), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15543), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2584), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [142883] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12877), 1, + aux_sym_unary_expression_token1, + ACTIONS(13781), 1, + anon_sym_PLUS, + ACTIONS(13783), 1, + anon_sym_DASH, + ACTIONS(13789), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15545), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15547), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10659), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [142972] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15549), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15551), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3576), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [143061] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15553), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15555), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3604), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [143150] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15557), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15559), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3608), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [143239] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15561), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15563), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3609), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [143328] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12877), 1, + aux_sym_unary_expression_token1, + ACTIONS(13781), 1, + anon_sym_PLUS, + ACTIONS(13783), 1, + anon_sym_DASH, + ACTIONS(13789), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15565), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15567), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10668), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [143417] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15569), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15571), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10555), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [143506] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15573), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15575), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2623), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [143595] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15577), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15579), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3614), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [143684] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15581), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15583), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3615), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [143773] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15585), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15587), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3621), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [143862] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15589), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15591), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3622), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [143951] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11899), 1, + aux_sym_unary_expression_token1, + ACTIONS(13673), 1, + sym_identifier, + ACTIONS(13675), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13683), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13687), 1, + anon_sym_PLUS, + ACTIONS(13689), 1, + anon_sym_DASH, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13701), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(7380), 1, + sym_member_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15593), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15595), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7410), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [144040] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12879), 1, + aux_sym_unary_expression_token1, + ACTIONS(13703), 1, + sym_identifier, + ACTIONS(13705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13713), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13717), 1, + anon_sym_PLUS, + ACTIONS(13719), 1, + anon_sym_DASH, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13731), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10381), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15597), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15599), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10488), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [144129] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12879), 1, + aux_sym_unary_expression_token1, + ACTIONS(13703), 1, + sym_identifier, + ACTIONS(13705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13713), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13717), 1, + anon_sym_PLUS, + ACTIONS(13719), 1, + anon_sym_DASH, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13731), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10381), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15601), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15603), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10496), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [144218] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12879), 1, + aux_sym_unary_expression_token1, + ACTIONS(13703), 1, + sym_identifier, + ACTIONS(13705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13713), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13717), 1, + anon_sym_PLUS, + ACTIONS(13719), 1, + anon_sym_DASH, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13731), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10381), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15605), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15607), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10515), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [144307] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12879), 1, + aux_sym_unary_expression_token1, + ACTIONS(13703), 1, + sym_identifier, + ACTIONS(13705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13713), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13717), 1, + anon_sym_PLUS, + ACTIONS(13719), 1, + anon_sym_DASH, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13731), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10381), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15609), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15611), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10489), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [144396] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12879), 1, + aux_sym_unary_expression_token1, + ACTIONS(13703), 1, + sym_identifier, + ACTIONS(13705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13713), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13717), 1, + anon_sym_PLUS, + ACTIONS(13719), 1, + anon_sym_DASH, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13731), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10381), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15613), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15615), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10482), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [144485] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12879), 1, + aux_sym_unary_expression_token1, + ACTIONS(13703), 1, + sym_identifier, + ACTIONS(13705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13713), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13717), 1, + anon_sym_PLUS, + ACTIONS(13719), 1, + anon_sym_DASH, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13731), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10381), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15617), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15619), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10503), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [144574] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12879), 1, + aux_sym_unary_expression_token1, + ACTIONS(13703), 1, + sym_identifier, + ACTIONS(13705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13713), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13717), 1, + anon_sym_PLUS, + ACTIONS(13719), 1, + anon_sym_DASH, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13731), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10381), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15621), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15623), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10508), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [144663] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12879), 1, + aux_sym_unary_expression_token1, + ACTIONS(13703), 1, + sym_identifier, + ACTIONS(13705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13713), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13717), 1, + anon_sym_PLUS, + ACTIONS(13719), 1, + anon_sym_DASH, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13731), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10381), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15625), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15627), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10516), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [144752] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12879), 1, + aux_sym_unary_expression_token1, + ACTIONS(13703), 1, + sym_identifier, + ACTIONS(13705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13713), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13717), 1, + anon_sym_PLUS, + ACTIONS(13719), 1, + anon_sym_DASH, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13731), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10381), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15629), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15631), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10479), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [144841] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12879), 1, + aux_sym_unary_expression_token1, + ACTIONS(13703), 1, + sym_identifier, + ACTIONS(13705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13713), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13717), 1, + anon_sym_PLUS, + ACTIONS(13719), 1, + anon_sym_DASH, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13731), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10381), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15633), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15635), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10485), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [144930] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12879), 1, + aux_sym_unary_expression_token1, + ACTIONS(13703), 1, + sym_identifier, + ACTIONS(13705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13713), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13717), 1, + anon_sym_PLUS, + ACTIONS(13719), 1, + anon_sym_DASH, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13731), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10381), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15637), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15639), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10498), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [145019] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12879), 1, + aux_sym_unary_expression_token1, + ACTIONS(13703), 1, + sym_identifier, + ACTIONS(13705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13713), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13717), 1, + anon_sym_PLUS, + ACTIONS(13719), 1, + anon_sym_DASH, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13731), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10381), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15641), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15643), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10486), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [145108] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15645), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15647), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3379), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [145197] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12623), 1, + aux_sym_unary_expression_token1, + ACTIONS(15649), 1, + anon_sym_PLUS, + ACTIONS(15651), 1, + anon_sym_DASH, + ACTIONS(15657), 1, + anon_sym_POUND, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15653), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15655), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2258), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [145286] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1671), 1, + anon_sym_PLUS, + ACTIONS(1673), 1, + anon_sym_DASH, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1701), 1, + aux_sym_unary_expression_token1, + ACTIONS(1711), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15659), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15661), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2654), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [145375] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15663), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15665), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3461), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [145464] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15667), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15669), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2589), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [145553] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15671), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15673), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2599), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [145642] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15675), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15677), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2616), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [145731] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15679), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15681), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2689), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [145820] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15683), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15685), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2707), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [145909] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15687), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15689), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2805), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [145998] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15691), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15693), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2820), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [146087] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15695), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15697), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2827), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [146176] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15699), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15701), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2830), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [146265] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15703), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2833), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [146354] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15707), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15709), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2879), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [146443] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15711), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15713), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2903), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [146532] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15715), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15717), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3494), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [146621] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15719), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15721), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3499), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [146710] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15723), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15725), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3503), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [146799] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15727), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15729), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3504), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [146888] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12877), 1, + aux_sym_unary_expression_token1, + ACTIONS(13781), 1, + anon_sym_PLUS, + ACTIONS(13783), 1, + anon_sym_DASH, + ACTIONS(13789), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15731), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15733), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10586), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [146977] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12877), 1, + aux_sym_unary_expression_token1, + ACTIONS(13781), 1, + anon_sym_PLUS, + ACTIONS(13783), 1, + anon_sym_DASH, + ACTIONS(13789), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15735), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15737), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10588), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [147066] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12877), 1, + aux_sym_unary_expression_token1, + ACTIONS(13781), 1, + anon_sym_PLUS, + ACTIONS(13783), 1, + anon_sym_DASH, + ACTIONS(13789), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15739), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10589), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [147155] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12877), 1, + aux_sym_unary_expression_token1, + ACTIONS(13781), 1, + anon_sym_PLUS, + ACTIONS(13783), 1, + anon_sym_DASH, + ACTIONS(13789), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15743), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15745), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10593), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [147244] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12877), 1, + aux_sym_unary_expression_token1, + ACTIONS(13781), 1, + anon_sym_PLUS, + ACTIONS(13783), 1, + anon_sym_DASH, + ACTIONS(13789), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15747), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15749), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10625), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [147333] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12877), 1, + aux_sym_unary_expression_token1, + ACTIONS(13781), 1, + anon_sym_PLUS, + ACTIONS(13783), 1, + anon_sym_DASH, + ACTIONS(13789), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15751), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15753), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10627), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [147422] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15755), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15757), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2725), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [147511] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15759), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15761), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3507), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [147600] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12877), 1, + aux_sym_unary_expression_token1, + ACTIONS(13781), 1, + anon_sym_PLUS, + ACTIONS(13783), 1, + anon_sym_DASH, + ACTIONS(13789), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15763), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15765), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10628), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [147689] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15767), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15769), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3508), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [147778] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15771), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15773), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3509), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [147867] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15775), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15777), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3510), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [147956] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12871), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13905), 1, + anon_sym_PLUS, + ACTIONS(13907), 1, + anon_sym_DASH, + ACTIONS(13913), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15779), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15781), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7359), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [148045] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12877), 1, + aux_sym_unary_expression_token1, + ACTIONS(13781), 1, + anon_sym_PLUS, + ACTIONS(13783), 1, + anon_sym_DASH, + ACTIONS(13789), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15783), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15785), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10629), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [148134] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12029), 1, + aux_sym_unary_expression_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1346), 1, + sym__signed_unary_expression, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15787), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15789), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1205), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [148223] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12877), 1, + aux_sym_unary_expression_token1, + ACTIONS(13781), 1, + anon_sym_PLUS, + ACTIONS(13783), 1, + anon_sym_DASH, + ACTIONS(13789), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15791), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15793), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10689), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [148312] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12029), 1, + aux_sym_unary_expression_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1346), 1, + sym__signed_unary_expression, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15795), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15797), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1271), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [148401] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12029), 1, + aux_sym_unary_expression_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1346), 1, + sym__signed_unary_expression, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15799), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15801), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1285), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [148490] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12029), 1, + aux_sym_unary_expression_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1346), 1, + sym__signed_unary_expression, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15803), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15805), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1290), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [148579] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12029), 1, + aux_sym_unary_expression_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1346), 1, + sym__signed_unary_expression, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15807), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15809), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1292), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [148668] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12029), 1, + aux_sym_unary_expression_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1346), 1, + sym__signed_unary_expression, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15811), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15813), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1298), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [148757] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12029), 1, + aux_sym_unary_expression_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1346), 1, + sym__signed_unary_expression, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15815), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15817), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1299), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [148846] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12029), 1, + aux_sym_unary_expression_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1346), 1, + sym__signed_unary_expression, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15819), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15821), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1301), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [148935] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12029), 1, + aux_sym_unary_expression_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1346), 1, + sym__signed_unary_expression, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15823), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15825), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1303), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [149024] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12029), 1, + aux_sym_unary_expression_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1346), 1, + sym__signed_unary_expression, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15827), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15829), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1304), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [149113] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12029), 1, + aux_sym_unary_expression_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1346), 1, + sym__signed_unary_expression, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15831), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15833), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1305), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [149202] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12029), 1, + aux_sym_unary_expression_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1346), 1, + sym__signed_unary_expression, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15835), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15837), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1306), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [149291] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12877), 1, + aux_sym_unary_expression_token1, + ACTIONS(13781), 1, + anon_sym_PLUS, + ACTIONS(13783), 1, + anon_sym_DASH, + ACTIONS(13789), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15839), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15841), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10631), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [149380] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12877), 1, + aux_sym_unary_expression_token1, + ACTIONS(13781), 1, + anon_sym_PLUS, + ACTIONS(13783), 1, + anon_sym_DASH, + ACTIONS(13789), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15843), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15845), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10632), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [149469] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15847), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15849), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10337), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [149558] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12769), 1, + aux_sym_unary_expression_token1, + ACTIONS(15851), 1, + anon_sym_PLUS, + ACTIONS(15853), 1, + anon_sym_DASH, + ACTIONS(15859), 1, + anon_sym_POUND, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15855), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15857), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2693), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [149647] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15861), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15863), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2705), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [149736] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12029), 1, + aux_sym_unary_expression_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1346), 1, + sym__signed_unary_expression, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15865), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15867), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1198), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [149825] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15869), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15871), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2912), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [149914] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15873), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15875), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2653), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [150003] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15877), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15879), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2655), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [150092] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15881), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15883), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2656), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [150181] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15885), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15887), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2657), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [150270] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15889), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15891), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2658), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [150359] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15893), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15895), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2659), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [150448] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15897), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15899), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2661), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [150537] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15901), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15903), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2665), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [150626] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15905), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15907), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2668), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [150715] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15909), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15911), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2674), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [150804] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15913), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15915), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2676), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [150893] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12813), 1, + aux_sym_unary_expression_token1, + ACTIONS(15917), 1, + anon_sym_PLUS, + ACTIONS(15919), 1, + anon_sym_DASH, + ACTIONS(15925), 1, + anon_sym_POUND, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15921), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15923), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2610), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [150982] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15927), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15929), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2736), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [151071] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15931), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15933), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2825), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [151160] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11959), 1, + aux_sym_unary_expression_token1, + ACTIONS(13179), 1, + sym_identifier, + ACTIONS(13181), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13183), 1, + anon_sym_DOT, + ACTIONS(13185), 1, + anon_sym_BANG, + ACTIONS(13187), 1, + anon_sym_LPAREN, + ACTIONS(13189), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13191), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13193), 1, + anon_sym_PLUS, + ACTIONS(13195), 1, + anon_sym_DASH, + ACTIONS(13197), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13199), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13207), 1, + anon_sym_POUND, + STATE(3313), 1, + sym_call_expression, + STATE(3598), 1, + sym__signed_unary_expression, + STATE(3669), 1, + sym_member_expression, + STATE(13316), 1, + sym__callable_expression, + ACTIONS(13203), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3425), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15935), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15937), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3605), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [151249] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11959), 1, + aux_sym_unary_expression_token1, + ACTIONS(13179), 1, + sym_identifier, + ACTIONS(13181), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13183), 1, + anon_sym_DOT, + ACTIONS(13185), 1, + anon_sym_BANG, + ACTIONS(13187), 1, + anon_sym_LPAREN, + ACTIONS(13189), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13191), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13193), 1, + anon_sym_PLUS, + ACTIONS(13195), 1, + anon_sym_DASH, + ACTIONS(13197), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13199), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13207), 1, + anon_sym_POUND, + STATE(3313), 1, + sym_call_expression, + STATE(3598), 1, + sym__signed_unary_expression, + STATE(3669), 1, + sym_member_expression, + STATE(13316), 1, + sym__callable_expression, + ACTIONS(13203), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3425), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15939), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15941), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3698), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [151338] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11959), 1, + aux_sym_unary_expression_token1, + ACTIONS(13179), 1, + sym_identifier, + ACTIONS(13181), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13183), 1, + anon_sym_DOT, + ACTIONS(13185), 1, + anon_sym_BANG, + ACTIONS(13187), 1, + anon_sym_LPAREN, + ACTIONS(13189), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13191), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13193), 1, + anon_sym_PLUS, + ACTIONS(13195), 1, + anon_sym_DASH, + ACTIONS(13197), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13199), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13207), 1, + anon_sym_POUND, + STATE(3313), 1, + sym_call_expression, + STATE(3598), 1, + sym__signed_unary_expression, + STATE(3669), 1, + sym_member_expression, + STATE(13316), 1, + sym__callable_expression, + ACTIONS(13203), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3425), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15943), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15945), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3700), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [151427] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11959), 1, + aux_sym_unary_expression_token1, + ACTIONS(13179), 1, + sym_identifier, + ACTIONS(13181), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13183), 1, + anon_sym_DOT, + ACTIONS(13185), 1, + anon_sym_BANG, + ACTIONS(13187), 1, + anon_sym_LPAREN, + ACTIONS(13189), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13191), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13193), 1, + anon_sym_PLUS, + ACTIONS(13195), 1, + anon_sym_DASH, + ACTIONS(13197), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13199), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13207), 1, + anon_sym_POUND, + STATE(3313), 1, + sym_call_expression, + STATE(3598), 1, + sym__signed_unary_expression, + STATE(3669), 1, + sym_member_expression, + STATE(13316), 1, + sym__callable_expression, + ACTIONS(13203), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3425), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15947), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15949), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3419), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [151516] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11959), 1, + aux_sym_unary_expression_token1, + ACTIONS(13179), 1, + sym_identifier, + ACTIONS(13181), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13183), 1, + anon_sym_DOT, + ACTIONS(13185), 1, + anon_sym_BANG, + ACTIONS(13187), 1, + anon_sym_LPAREN, + ACTIONS(13189), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13191), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13193), 1, + anon_sym_PLUS, + ACTIONS(13195), 1, + anon_sym_DASH, + ACTIONS(13197), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13199), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13207), 1, + anon_sym_POUND, + STATE(3313), 1, + sym_call_expression, + STATE(3598), 1, + sym__signed_unary_expression, + STATE(3669), 1, + sym_member_expression, + STATE(13316), 1, + sym__callable_expression, + ACTIONS(13203), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3425), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15951), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15953), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3421), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [151605] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11959), 1, + aux_sym_unary_expression_token1, + ACTIONS(13179), 1, + sym_identifier, + ACTIONS(13181), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13183), 1, + anon_sym_DOT, + ACTIONS(13185), 1, + anon_sym_BANG, + ACTIONS(13187), 1, + anon_sym_LPAREN, + ACTIONS(13189), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13191), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13193), 1, + anon_sym_PLUS, + ACTIONS(13195), 1, + anon_sym_DASH, + ACTIONS(13197), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13199), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13207), 1, + anon_sym_POUND, + STATE(3313), 1, + sym_call_expression, + STATE(3598), 1, + sym__signed_unary_expression, + STATE(3669), 1, + sym_member_expression, + STATE(13316), 1, + sym__callable_expression, + ACTIONS(13203), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3425), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15955), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15957), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3423), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [151694] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11959), 1, + aux_sym_unary_expression_token1, + ACTIONS(13179), 1, + sym_identifier, + ACTIONS(13181), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13183), 1, + anon_sym_DOT, + ACTIONS(13185), 1, + anon_sym_BANG, + ACTIONS(13187), 1, + anon_sym_LPAREN, + ACTIONS(13189), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13191), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13193), 1, + anon_sym_PLUS, + ACTIONS(13195), 1, + anon_sym_DASH, + ACTIONS(13197), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13199), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13207), 1, + anon_sym_POUND, + STATE(3313), 1, + sym_call_expression, + STATE(3598), 1, + sym__signed_unary_expression, + STATE(3669), 1, + sym_member_expression, + STATE(13316), 1, + sym__callable_expression, + ACTIONS(13203), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3425), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15959), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15961), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3428), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [151783] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11959), 1, + aux_sym_unary_expression_token1, + ACTIONS(13179), 1, + sym_identifier, + ACTIONS(13181), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13183), 1, + anon_sym_DOT, + ACTIONS(13185), 1, + anon_sym_BANG, + ACTIONS(13187), 1, + anon_sym_LPAREN, + ACTIONS(13189), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13191), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13193), 1, + anon_sym_PLUS, + ACTIONS(13195), 1, + anon_sym_DASH, + ACTIONS(13197), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13199), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13207), 1, + anon_sym_POUND, + STATE(3313), 1, + sym_call_expression, + STATE(3598), 1, + sym__signed_unary_expression, + STATE(3669), 1, + sym_member_expression, + STATE(13316), 1, + sym__callable_expression, + ACTIONS(13203), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3425), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15963), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15965), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3430), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [151872] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11959), 1, + aux_sym_unary_expression_token1, + ACTIONS(13179), 1, + sym_identifier, + ACTIONS(13181), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13183), 1, + anon_sym_DOT, + ACTIONS(13185), 1, + anon_sym_BANG, + ACTIONS(13187), 1, + anon_sym_LPAREN, + ACTIONS(13189), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13191), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13193), 1, + anon_sym_PLUS, + ACTIONS(13195), 1, + anon_sym_DASH, + ACTIONS(13197), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13199), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13207), 1, + anon_sym_POUND, + STATE(3313), 1, + sym_call_expression, + STATE(3598), 1, + sym__signed_unary_expression, + STATE(3669), 1, + sym_member_expression, + STATE(13316), 1, + sym__callable_expression, + ACTIONS(13203), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3425), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15967), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15969), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3432), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [151961] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11959), 1, + aux_sym_unary_expression_token1, + ACTIONS(13179), 1, + sym_identifier, + ACTIONS(13181), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13183), 1, + anon_sym_DOT, + ACTIONS(13185), 1, + anon_sym_BANG, + ACTIONS(13187), 1, + anon_sym_LPAREN, + ACTIONS(13189), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13191), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13193), 1, + anon_sym_PLUS, + ACTIONS(13195), 1, + anon_sym_DASH, + ACTIONS(13197), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13199), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13207), 1, + anon_sym_POUND, + STATE(3313), 1, + sym_call_expression, + STATE(3598), 1, + sym__signed_unary_expression, + STATE(3669), 1, + sym_member_expression, + STATE(13316), 1, + sym__callable_expression, + ACTIONS(13203), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3425), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15971), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15973), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3433), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [152050] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11959), 1, + aux_sym_unary_expression_token1, + ACTIONS(13179), 1, + sym_identifier, + ACTIONS(13181), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13183), 1, + anon_sym_DOT, + ACTIONS(13185), 1, + anon_sym_BANG, + ACTIONS(13187), 1, + anon_sym_LPAREN, + ACTIONS(13189), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13191), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13193), 1, + anon_sym_PLUS, + ACTIONS(13195), 1, + anon_sym_DASH, + ACTIONS(13197), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13199), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13207), 1, + anon_sym_POUND, + STATE(3313), 1, + sym_call_expression, + STATE(3598), 1, + sym__signed_unary_expression, + STATE(3669), 1, + sym_member_expression, + STATE(13316), 1, + sym__callable_expression, + ACTIONS(13203), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3425), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15975), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15977), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3435), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [152139] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11959), 1, + aux_sym_unary_expression_token1, + ACTIONS(13179), 1, + sym_identifier, + ACTIONS(13181), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13183), 1, + anon_sym_DOT, + ACTIONS(13185), 1, + anon_sym_BANG, + ACTIONS(13187), 1, + anon_sym_LPAREN, + ACTIONS(13189), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13191), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13193), 1, + anon_sym_PLUS, + ACTIONS(13195), 1, + anon_sym_DASH, + ACTIONS(13197), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13199), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13207), 1, + anon_sym_POUND, + STATE(3313), 1, + sym_call_expression, + STATE(3598), 1, + sym__signed_unary_expression, + STATE(3669), 1, + sym_member_expression, + STATE(13316), 1, + sym__callable_expression, + ACTIONS(13203), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3425), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15979), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15981), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3439), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [152228] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11959), 1, + aux_sym_unary_expression_token1, + ACTIONS(13179), 1, + sym_identifier, + ACTIONS(13181), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13183), 1, + anon_sym_DOT, + ACTIONS(13185), 1, + anon_sym_BANG, + ACTIONS(13187), 1, + anon_sym_LPAREN, + ACTIONS(13189), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13191), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13193), 1, + anon_sym_PLUS, + ACTIONS(13195), 1, + anon_sym_DASH, + ACTIONS(13197), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13199), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13207), 1, + anon_sym_POUND, + STATE(3313), 1, + sym_call_expression, + STATE(3598), 1, + sym__signed_unary_expression, + STATE(3669), 1, + sym_member_expression, + STATE(13316), 1, + sym__callable_expression, + ACTIONS(13203), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3425), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15983), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15985), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3553), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [152317] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11959), 1, + aux_sym_unary_expression_token1, + ACTIONS(13179), 1, + sym_identifier, + ACTIONS(13181), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13183), 1, + anon_sym_DOT, + ACTIONS(13185), 1, + anon_sym_BANG, + ACTIONS(13187), 1, + anon_sym_LPAREN, + ACTIONS(13189), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13191), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13193), 1, + anon_sym_PLUS, + ACTIONS(13195), 1, + anon_sym_DASH, + ACTIONS(13197), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13199), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13207), 1, + anon_sym_POUND, + STATE(3313), 1, + sym_call_expression, + STATE(3598), 1, + sym__signed_unary_expression, + STATE(3669), 1, + sym_member_expression, + STATE(13316), 1, + sym__callable_expression, + ACTIONS(13203), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3425), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15987), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15989), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3710), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [152406] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12037), 1, + aux_sym_unary_expression_token1, + STATE(981), 1, + sym_call_expression, + STATE(1343), 1, + sym_member_expression, + STATE(1390), 1, + sym__signed_unary_expression, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15991), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15993), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1353), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [152495] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12037), 1, + aux_sym_unary_expression_token1, + STATE(981), 1, + sym_call_expression, + STATE(1343), 1, + sym_member_expression, + STATE(1390), 1, + sym__signed_unary_expression, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15995), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(15997), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1398), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [152584] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12037), 1, + aux_sym_unary_expression_token1, + STATE(981), 1, + sym_call_expression, + STATE(1343), 1, + sym_member_expression, + STATE(1390), 1, + sym__signed_unary_expression, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(15999), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16001), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1400), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [152673] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12037), 1, + aux_sym_unary_expression_token1, + STATE(981), 1, + sym_call_expression, + STATE(1343), 1, + sym_member_expression, + STATE(1390), 1, + sym__signed_unary_expression, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16003), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16005), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1401), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [152762] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12037), 1, + aux_sym_unary_expression_token1, + STATE(981), 1, + sym_call_expression, + STATE(1343), 1, + sym_member_expression, + STATE(1390), 1, + sym__signed_unary_expression, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16007), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16009), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1420), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [152851] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12037), 1, + aux_sym_unary_expression_token1, + STATE(981), 1, + sym_call_expression, + STATE(1343), 1, + sym_member_expression, + STATE(1390), 1, + sym__signed_unary_expression, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16011), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16013), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1422), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [152940] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12037), 1, + aux_sym_unary_expression_token1, + STATE(981), 1, + sym_call_expression, + STATE(1343), 1, + sym_member_expression, + STATE(1390), 1, + sym__signed_unary_expression, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16015), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16017), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1423), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [153029] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12037), 1, + aux_sym_unary_expression_token1, + STATE(981), 1, + sym_call_expression, + STATE(1343), 1, + sym_member_expression, + STATE(1390), 1, + sym__signed_unary_expression, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16019), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16021), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1425), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [153118] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12037), 1, + aux_sym_unary_expression_token1, + STATE(981), 1, + sym_call_expression, + STATE(1343), 1, + sym_member_expression, + STATE(1390), 1, + sym__signed_unary_expression, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16023), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16025), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1427), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [153207] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12037), 1, + aux_sym_unary_expression_token1, + STATE(981), 1, + sym_call_expression, + STATE(1343), 1, + sym_member_expression, + STATE(1390), 1, + sym__signed_unary_expression, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16027), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16029), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1428), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [153296] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12037), 1, + aux_sym_unary_expression_token1, + STATE(981), 1, + sym_call_expression, + STATE(1343), 1, + sym_member_expression, + STATE(1390), 1, + sym__signed_unary_expression, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16031), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16033), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1438), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [153385] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12037), 1, + aux_sym_unary_expression_token1, + STATE(981), 1, + sym_call_expression, + STATE(1343), 1, + sym_member_expression, + STATE(1390), 1, + sym__signed_unary_expression, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16035), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16037), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1440), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [153474] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1432), 1, + anon_sym_PLUS, + ACTIONS(1434), 1, + anon_sym_DASH, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1462), 1, + aux_sym_unary_expression_token1, + ACTIONS(1472), 1, + anon_sym_POUND, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16039), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16041), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2804), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [153563] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12037), 1, + aux_sym_unary_expression_token1, + STATE(981), 1, + sym_call_expression, + STATE(1343), 1, + sym_member_expression, + STATE(1390), 1, + sym__signed_unary_expression, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16043), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16045), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1345), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [153652] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16047), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16049), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1699), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [153741] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16051), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16053), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1721), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [153830] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16055), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16057), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1725), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [153919] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16059), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16061), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1727), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [154008] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16063), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16065), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1728), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [154097] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16067), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16069), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1729), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [154186] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16071), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16073), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1730), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [154275] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16075), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16077), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1731), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [154364] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16079), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16081), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1732), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [154453] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16083), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16085), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1733), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [154542] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1734), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [154631] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16091), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16093), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1735), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [154720] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16095), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16097), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1993), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [154809] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16099), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16101), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1697), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [154898] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16103), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16105), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2233), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [154987] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16107), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16109), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2255), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [155076] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16111), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16113), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2256), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [155165] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16115), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16117), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2257), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [155254] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16119), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16121), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2260), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [155343] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16123), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16125), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2263), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [155432] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16127), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16129), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2264), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [155521] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16131), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16133), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2268), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [155610] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16135), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16137), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2269), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [155699] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16139), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16141), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2270), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [155788] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16143), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16145), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2271), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [155877] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16147), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16149), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2272), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [155966] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16151), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16153), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1461), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [156055] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16155), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16157), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2231), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [156144] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12115), 1, + sym_identifier, + ACTIONS(12117), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12119), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12121), 1, + anon_sym_PLUS, + ACTIONS(12123), 1, + anon_sym_DASH, + ACTIONS(12125), 1, + aux_sym_unary_expression_token1, + ACTIONS(12131), 1, + anon_sym_POUND, + STATE(10141), 1, + sym_call_expression, + STATE(10159), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16159), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16161), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10287), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [156233] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12115), 1, + sym_identifier, + ACTIONS(12117), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12119), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12121), 1, + anon_sym_PLUS, + ACTIONS(12123), 1, + anon_sym_DASH, + ACTIONS(12125), 1, + aux_sym_unary_expression_token1, + ACTIONS(12131), 1, + anon_sym_POUND, + STATE(10141), 1, + sym_call_expression, + STATE(10159), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16163), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16165), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10273), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [156322] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12115), 1, + sym_identifier, + ACTIONS(12117), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12119), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12121), 1, + anon_sym_PLUS, + ACTIONS(12123), 1, + anon_sym_DASH, + ACTIONS(12125), 1, + aux_sym_unary_expression_token1, + ACTIONS(12131), 1, + anon_sym_POUND, + STATE(10141), 1, + sym_call_expression, + STATE(10159), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16167), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16169), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10238), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [156411] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12115), 1, + sym_identifier, + ACTIONS(12117), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12119), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12121), 1, + anon_sym_PLUS, + ACTIONS(12123), 1, + anon_sym_DASH, + ACTIONS(12125), 1, + aux_sym_unary_expression_token1, + ACTIONS(12131), 1, + anon_sym_POUND, + STATE(10141), 1, + sym_call_expression, + STATE(10159), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16171), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16173), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10253), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [156500] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12115), 1, + sym_identifier, + ACTIONS(12117), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12119), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12121), 1, + anon_sym_PLUS, + ACTIONS(12123), 1, + anon_sym_DASH, + ACTIONS(12125), 1, + aux_sym_unary_expression_token1, + ACTIONS(12131), 1, + anon_sym_POUND, + STATE(10141), 1, + sym_call_expression, + STATE(10159), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16175), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16177), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10272), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [156589] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12115), 1, + sym_identifier, + ACTIONS(12117), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12119), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12121), 1, + anon_sym_PLUS, + ACTIONS(12123), 1, + anon_sym_DASH, + ACTIONS(12125), 1, + aux_sym_unary_expression_token1, + ACTIONS(12131), 1, + anon_sym_POUND, + STATE(10141), 1, + sym_call_expression, + STATE(10159), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16179), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16181), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10274), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [156678] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12115), 1, + sym_identifier, + ACTIONS(12117), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12119), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12121), 1, + anon_sym_PLUS, + ACTIONS(12123), 1, + anon_sym_DASH, + ACTIONS(12125), 1, + aux_sym_unary_expression_token1, + ACTIONS(12131), 1, + anon_sym_POUND, + STATE(10141), 1, + sym_call_expression, + STATE(10159), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16183), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16185), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10276), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [156767] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12115), 1, + sym_identifier, + ACTIONS(12117), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12119), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12121), 1, + anon_sym_PLUS, + ACTIONS(12123), 1, + anon_sym_DASH, + ACTIONS(12125), 1, + aux_sym_unary_expression_token1, + ACTIONS(12131), 1, + anon_sym_POUND, + STATE(10141), 1, + sym_call_expression, + STATE(10159), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16187), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16189), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10277), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [156856] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12115), 1, + sym_identifier, + ACTIONS(12117), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12119), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12121), 1, + anon_sym_PLUS, + ACTIONS(12123), 1, + anon_sym_DASH, + ACTIONS(12125), 1, + aux_sym_unary_expression_token1, + ACTIONS(12131), 1, + anon_sym_POUND, + STATE(10141), 1, + sym_call_expression, + STATE(10159), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16191), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16193), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10279), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [156945] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12115), 1, + sym_identifier, + ACTIONS(12117), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12119), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12121), 1, + anon_sym_PLUS, + ACTIONS(12123), 1, + anon_sym_DASH, + ACTIONS(12125), 1, + aux_sym_unary_expression_token1, + ACTIONS(12131), 1, + anon_sym_POUND, + STATE(10141), 1, + sym_call_expression, + STATE(10159), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16195), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16197), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10280), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [157034] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12115), 1, + sym_identifier, + ACTIONS(12117), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12119), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12121), 1, + anon_sym_PLUS, + ACTIONS(12123), 1, + anon_sym_DASH, + ACTIONS(12125), 1, + aux_sym_unary_expression_token1, + ACTIONS(12131), 1, + anon_sym_POUND, + STATE(10141), 1, + sym_call_expression, + STATE(10159), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16199), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16201), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10282), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [157123] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12115), 1, + sym_identifier, + ACTIONS(12117), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12119), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12121), 1, + anon_sym_PLUS, + ACTIONS(12123), 1, + anon_sym_DASH, + ACTIONS(12125), 1, + aux_sym_unary_expression_token1, + ACTIONS(12131), 1, + anon_sym_POUND, + STATE(10141), 1, + sym_call_expression, + STATE(10159), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16203), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16205), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10283), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [157212] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_DOT, + ACTIONS(4038), 1, + anon_sym_BANG, + ACTIONS(4046), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4050), 1, + anon_sym_PLUS, + ACTIONS(4052), 1, + anon_sym_DASH, + ACTIONS(4054), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4056), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4064), 1, + anon_sym_POUND, + ACTIONS(4078), 1, + anon_sym_LPAREN, + ACTIONS(11697), 1, + sym_identifier, + ACTIONS(11699), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11931), 1, + aux_sym_unary_expression_token1, + STATE(380), 1, + sym_call_expression, + STATE(428), 1, + sym__signed_unary_expression, + STATE(453), 1, + sym_member_expression, + STATE(13215), 1, + sym__callable_expression, + ACTIONS(4060), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16207), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16209), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(437), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [157301] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12871), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13905), 1, + anon_sym_PLUS, + ACTIONS(13907), 1, + anon_sym_DASH, + ACTIONS(13913), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16211), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16213), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7372), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [157390] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12115), 1, + sym_identifier, + ACTIONS(12117), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12119), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12121), 1, + anon_sym_PLUS, + ACTIONS(12123), 1, + anon_sym_DASH, + ACTIONS(12125), 1, + aux_sym_unary_expression_token1, + ACTIONS(12131), 1, + anon_sym_POUND, + STATE(10141), 1, + sym_call_expression, + STATE(10159), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16215), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16217), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10267), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [157479] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12177), 1, + aux_sym_unary_expression_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1113), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16219), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16221), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1095), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [157568] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12177), 1, + aux_sym_unary_expression_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1113), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16223), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16225), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1216), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [157657] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12177), 1, + aux_sym_unary_expression_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1113), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16227), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16229), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1223), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [157746] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12177), 1, + aux_sym_unary_expression_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1113), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16231), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16233), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1224), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [157835] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12177), 1, + aux_sym_unary_expression_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1113), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16235), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16237), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1282), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [157924] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12177), 1, + aux_sym_unary_expression_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1113), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16239), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16241), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1327), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [158013] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12177), 1, + aux_sym_unary_expression_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1113), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16243), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16245), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1333), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [158102] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12177), 1, + aux_sym_unary_expression_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1113), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16247), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16249), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1354), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [158191] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12177), 1, + aux_sym_unary_expression_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1113), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16251), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16253), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1368), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [158280] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12177), 1, + aux_sym_unary_expression_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1113), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16255), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16257), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1372), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [158369] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12177), 1, + aux_sym_unary_expression_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1113), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16259), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16261), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1373), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [158458] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12177), 1, + aux_sym_unary_expression_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1113), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16263), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16265), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1375), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [158547] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16267), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16269), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2245), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [158636] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12177), 1, + aux_sym_unary_expression_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1113), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16271), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16273), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1078), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [158725] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11937), 1, + sym_identifier, + ACTIONS(11939), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11941), 1, + anon_sym_DOT, + ACTIONS(11943), 1, + anon_sym_BANG, + ACTIONS(11945), 1, + anon_sym_LPAREN, + ACTIONS(11947), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11949), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11951), 1, + anon_sym_PLUS, + ACTIONS(11953), 1, + anon_sym_DASH, + ACTIONS(11955), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11957), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11967), 1, + anon_sym_POUND, + ACTIONS(12219), 1, + aux_sym_unary_expression_token1, + STATE(1707), 1, + sym_call_expression, + STATE(2021), 1, + sym_member_expression, + STATE(2085), 1, + sym__signed_unary_expression, + STATE(13605), 1, + sym__callable_expression, + ACTIONS(11963), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2117), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16275), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16277), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2034), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [158814] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11937), 1, + sym_identifier, + ACTIONS(11939), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11941), 1, + anon_sym_DOT, + ACTIONS(11943), 1, + anon_sym_BANG, + ACTIONS(11945), 1, + anon_sym_LPAREN, + ACTIONS(11947), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11949), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11951), 1, + anon_sym_PLUS, + ACTIONS(11953), 1, + anon_sym_DASH, + ACTIONS(11955), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11957), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11967), 1, + anon_sym_POUND, + ACTIONS(12219), 1, + aux_sym_unary_expression_token1, + STATE(1707), 1, + sym_call_expression, + STATE(2021), 1, + sym_member_expression, + STATE(2085), 1, + sym__signed_unary_expression, + STATE(13605), 1, + sym__callable_expression, + ACTIONS(11963), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2117), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16279), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16281), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2087), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [158903] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11937), 1, + sym_identifier, + ACTIONS(11939), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11941), 1, + anon_sym_DOT, + ACTIONS(11943), 1, + anon_sym_BANG, + ACTIONS(11945), 1, + anon_sym_LPAREN, + ACTIONS(11947), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11949), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11951), 1, + anon_sym_PLUS, + ACTIONS(11953), 1, + anon_sym_DASH, + ACTIONS(11955), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11957), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11967), 1, + anon_sym_POUND, + ACTIONS(12219), 1, + aux_sym_unary_expression_token1, + STATE(1707), 1, + sym_call_expression, + STATE(2021), 1, + sym_member_expression, + STATE(2085), 1, + sym__signed_unary_expression, + STATE(13605), 1, + sym__callable_expression, + ACTIONS(11963), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2117), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16283), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16285), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2088), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [158992] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11937), 1, + sym_identifier, + ACTIONS(11939), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11941), 1, + anon_sym_DOT, + ACTIONS(11943), 1, + anon_sym_BANG, + ACTIONS(11945), 1, + anon_sym_LPAREN, + ACTIONS(11947), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11949), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11951), 1, + anon_sym_PLUS, + ACTIONS(11953), 1, + anon_sym_DASH, + ACTIONS(11955), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11957), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11967), 1, + anon_sym_POUND, + ACTIONS(12219), 1, + aux_sym_unary_expression_token1, + STATE(1707), 1, + sym_call_expression, + STATE(2021), 1, + sym_member_expression, + STATE(2085), 1, + sym__signed_unary_expression, + STATE(13605), 1, + sym__callable_expression, + ACTIONS(11963), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2117), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16287), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16289), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2089), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [159081] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11937), 1, + sym_identifier, + ACTIONS(11939), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11941), 1, + anon_sym_DOT, + ACTIONS(11943), 1, + anon_sym_BANG, + ACTIONS(11945), 1, + anon_sym_LPAREN, + ACTIONS(11947), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11949), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11951), 1, + anon_sym_PLUS, + ACTIONS(11953), 1, + anon_sym_DASH, + ACTIONS(11955), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11957), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11967), 1, + anon_sym_POUND, + ACTIONS(12219), 1, + aux_sym_unary_expression_token1, + STATE(1707), 1, + sym_call_expression, + STATE(2021), 1, + sym_member_expression, + STATE(2085), 1, + sym__signed_unary_expression, + STATE(13605), 1, + sym__callable_expression, + ACTIONS(11963), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2117), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16291), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16293), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2090), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [159170] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11937), 1, + sym_identifier, + ACTIONS(11939), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11941), 1, + anon_sym_DOT, + ACTIONS(11943), 1, + anon_sym_BANG, + ACTIONS(11945), 1, + anon_sym_LPAREN, + ACTIONS(11947), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11949), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11951), 1, + anon_sym_PLUS, + ACTIONS(11953), 1, + anon_sym_DASH, + ACTIONS(11955), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11957), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11967), 1, + anon_sym_POUND, + ACTIONS(12219), 1, + aux_sym_unary_expression_token1, + STATE(1707), 1, + sym_call_expression, + STATE(2021), 1, + sym_member_expression, + STATE(2085), 1, + sym__signed_unary_expression, + STATE(13605), 1, + sym__callable_expression, + ACTIONS(11963), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2117), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16295), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16297), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2091), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [159259] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11937), 1, + sym_identifier, + ACTIONS(11939), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11941), 1, + anon_sym_DOT, + ACTIONS(11943), 1, + anon_sym_BANG, + ACTIONS(11945), 1, + anon_sym_LPAREN, + ACTIONS(11947), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11949), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11951), 1, + anon_sym_PLUS, + ACTIONS(11953), 1, + anon_sym_DASH, + ACTIONS(11955), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11957), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11967), 1, + anon_sym_POUND, + ACTIONS(12219), 1, + aux_sym_unary_expression_token1, + STATE(1707), 1, + sym_call_expression, + STATE(2021), 1, + sym_member_expression, + STATE(2085), 1, + sym__signed_unary_expression, + STATE(13605), 1, + sym__callable_expression, + ACTIONS(11963), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2117), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16299), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16301), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2092), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [159348] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11937), 1, + sym_identifier, + ACTIONS(11939), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11941), 1, + anon_sym_DOT, + ACTIONS(11943), 1, + anon_sym_BANG, + ACTIONS(11945), 1, + anon_sym_LPAREN, + ACTIONS(11947), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11949), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11951), 1, + anon_sym_PLUS, + ACTIONS(11953), 1, + anon_sym_DASH, + ACTIONS(11955), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11957), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11967), 1, + anon_sym_POUND, + ACTIONS(12219), 1, + aux_sym_unary_expression_token1, + STATE(1707), 1, + sym_call_expression, + STATE(2021), 1, + sym_member_expression, + STATE(2085), 1, + sym__signed_unary_expression, + STATE(13605), 1, + sym__callable_expression, + ACTIONS(11963), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2117), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16303), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16305), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2093), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [159437] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11937), 1, + sym_identifier, + ACTIONS(11939), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11941), 1, + anon_sym_DOT, + ACTIONS(11943), 1, + anon_sym_BANG, + ACTIONS(11945), 1, + anon_sym_LPAREN, + ACTIONS(11947), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11949), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11951), 1, + anon_sym_PLUS, + ACTIONS(11953), 1, + anon_sym_DASH, + ACTIONS(11955), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11957), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11967), 1, + anon_sym_POUND, + ACTIONS(12219), 1, + aux_sym_unary_expression_token1, + STATE(1707), 1, + sym_call_expression, + STATE(2021), 1, + sym_member_expression, + STATE(2085), 1, + sym__signed_unary_expression, + STATE(13605), 1, + sym__callable_expression, + ACTIONS(11963), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2117), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16307), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16309), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2094), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [159526] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11937), 1, + sym_identifier, + ACTIONS(11939), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11941), 1, + anon_sym_DOT, + ACTIONS(11943), 1, + anon_sym_BANG, + ACTIONS(11945), 1, + anon_sym_LPAREN, + ACTIONS(11947), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11949), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11951), 1, + anon_sym_PLUS, + ACTIONS(11953), 1, + anon_sym_DASH, + ACTIONS(11955), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11957), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11967), 1, + anon_sym_POUND, + ACTIONS(12219), 1, + aux_sym_unary_expression_token1, + STATE(1707), 1, + sym_call_expression, + STATE(2021), 1, + sym_member_expression, + STATE(2085), 1, + sym__signed_unary_expression, + STATE(13605), 1, + sym__callable_expression, + ACTIONS(11963), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2117), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16311), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16313), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2095), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [159615] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11937), 1, + sym_identifier, + ACTIONS(11939), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11941), 1, + anon_sym_DOT, + ACTIONS(11943), 1, + anon_sym_BANG, + ACTIONS(11945), 1, + anon_sym_LPAREN, + ACTIONS(11947), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11949), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11951), 1, + anon_sym_PLUS, + ACTIONS(11953), 1, + anon_sym_DASH, + ACTIONS(11955), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11957), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11967), 1, + anon_sym_POUND, + ACTIONS(12219), 1, + aux_sym_unary_expression_token1, + STATE(1707), 1, + sym_call_expression, + STATE(2021), 1, + sym_member_expression, + STATE(2085), 1, + sym__signed_unary_expression, + STATE(13605), 1, + sym__callable_expression, + ACTIONS(11963), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2117), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16315), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16317), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2096), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [159704] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11937), 1, + sym_identifier, + ACTIONS(11939), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11941), 1, + anon_sym_DOT, + ACTIONS(11943), 1, + anon_sym_BANG, + ACTIONS(11945), 1, + anon_sym_LPAREN, + ACTIONS(11947), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11949), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11951), 1, + anon_sym_PLUS, + ACTIONS(11953), 1, + anon_sym_DASH, + ACTIONS(11955), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11957), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11967), 1, + anon_sym_POUND, + ACTIONS(12219), 1, + aux_sym_unary_expression_token1, + STATE(1707), 1, + sym_call_expression, + STATE(2021), 1, + sym_member_expression, + STATE(2085), 1, + sym__signed_unary_expression, + STATE(13605), 1, + sym__callable_expression, + ACTIONS(11963), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2117), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16319), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16321), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2097), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [159793] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16323), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16325), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2318), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [159882] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11937), 1, + sym_identifier, + ACTIONS(11939), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11941), 1, + anon_sym_DOT, + ACTIONS(11943), 1, + anon_sym_BANG, + ACTIONS(11945), 1, + anon_sym_LPAREN, + ACTIONS(11947), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11949), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11951), 1, + anon_sym_PLUS, + ACTIONS(11953), 1, + anon_sym_DASH, + ACTIONS(11955), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11957), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11967), 1, + anon_sym_POUND, + ACTIONS(12219), 1, + aux_sym_unary_expression_token1, + STATE(1707), 1, + sym_call_expression, + STATE(2021), 1, + sym_member_expression, + STATE(2085), 1, + sym__signed_unary_expression, + STATE(13605), 1, + sym__callable_expression, + ACTIONS(11963), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2117), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16327), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16329), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2030), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [159971] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12067), 1, + aux_sym_unary_expression_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(14363), 1, + sym_identifier, + ACTIONS(14365), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(14367), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14369), 1, + anon_sym_PLUS, + ACTIONS(14371), 1, + anon_sym_DASH, + ACTIONS(14377), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10375), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16331), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16333), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10420), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [160060] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12067), 1, + aux_sym_unary_expression_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(14363), 1, + sym_identifier, + ACTIONS(14365), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(14367), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14369), 1, + anon_sym_PLUS, + ACTIONS(14371), 1, + anon_sym_DASH, + ACTIONS(14377), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10375), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16335), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16337), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10421), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [160149] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12067), 1, + aux_sym_unary_expression_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(14363), 1, + sym_identifier, + ACTIONS(14365), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(14367), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14369), 1, + anon_sym_PLUS, + ACTIONS(14371), 1, + anon_sym_DASH, + ACTIONS(14377), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10375), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16339), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16341), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10422), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [160238] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12067), 1, + aux_sym_unary_expression_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(14363), 1, + sym_identifier, + ACTIONS(14365), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(14367), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14369), 1, + anon_sym_PLUS, + ACTIONS(14371), 1, + anon_sym_DASH, + ACTIONS(14377), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10375), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16343), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16345), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10423), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [160327] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12067), 1, + aux_sym_unary_expression_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(14363), 1, + sym_identifier, + ACTIONS(14365), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(14367), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14369), 1, + anon_sym_PLUS, + ACTIONS(14371), 1, + anon_sym_DASH, + ACTIONS(14377), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10375), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16347), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16349), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10424), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [160416] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12067), 1, + aux_sym_unary_expression_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(14363), 1, + sym_identifier, + ACTIONS(14365), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(14367), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14369), 1, + anon_sym_PLUS, + ACTIONS(14371), 1, + anon_sym_DASH, + ACTIONS(14377), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10375), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16351), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16353), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10425), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [160505] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12067), 1, + aux_sym_unary_expression_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(14363), 1, + sym_identifier, + ACTIONS(14365), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(14367), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14369), 1, + anon_sym_PLUS, + ACTIONS(14371), 1, + anon_sym_DASH, + ACTIONS(14377), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10375), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16355), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16357), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10426), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [160594] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12067), 1, + aux_sym_unary_expression_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(14363), 1, + sym_identifier, + ACTIONS(14365), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(14367), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14369), 1, + anon_sym_PLUS, + ACTIONS(14371), 1, + anon_sym_DASH, + ACTIONS(14377), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10375), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16359), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16361), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10427), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [160683] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12067), 1, + aux_sym_unary_expression_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(14363), 1, + sym_identifier, + ACTIONS(14365), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(14367), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14369), 1, + anon_sym_PLUS, + ACTIONS(14371), 1, + anon_sym_DASH, + ACTIONS(14377), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10375), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16363), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16365), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10428), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [160772] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12067), 1, + aux_sym_unary_expression_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(14363), 1, + sym_identifier, + ACTIONS(14365), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(14367), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14369), 1, + anon_sym_PLUS, + ACTIONS(14371), 1, + anon_sym_DASH, + ACTIONS(14377), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10375), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16367), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16369), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10429), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [160861] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12067), 1, + aux_sym_unary_expression_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(14363), 1, + sym_identifier, + ACTIONS(14365), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(14367), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14369), 1, + anon_sym_PLUS, + ACTIONS(14371), 1, + anon_sym_DASH, + ACTIONS(14377), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10375), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16371), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16373), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10430), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [160950] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12067), 1, + aux_sym_unary_expression_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(14363), 1, + sym_identifier, + ACTIONS(14365), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(14367), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14369), 1, + anon_sym_PLUS, + ACTIONS(14371), 1, + anon_sym_DASH, + ACTIONS(14377), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10375), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16375), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16377), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10431), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [161039] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_BANG, + ACTIONS(4786), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4788), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4790), 1, + anon_sym_PLUS, + ACTIONS(4792), 1, + anon_sym_DASH, + ACTIONS(4794), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4796), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4804), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_LPAREN, + ACTIONS(11703), 1, + sym_identifier, + ACTIONS(11705), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12029), 1, + aux_sym_unary_expression_token1, + STATE(892), 1, + sym_call_expression, + STATE(1197), 1, + sym_member_expression, + STATE(1346), 1, + sym__signed_unary_expression, + STATE(13267), 1, + sym__callable_expression, + ACTIONS(4800), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16379), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16381), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1433), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [161128] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12871), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13905), 1, + anon_sym_PLUS, + ACTIONS(13907), 1, + anon_sym_DASH, + ACTIONS(13913), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16383), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16385), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7352), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [161217] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12067), 1, + aux_sym_unary_expression_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(14363), 1, + sym_identifier, + ACTIONS(14365), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(14367), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14369), 1, + anon_sym_PLUS, + ACTIONS(14371), 1, + anon_sym_DASH, + ACTIONS(14377), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10375), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16387), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16389), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10418), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [161306] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11923), 1, + aux_sym_unary_expression_token1, + STATE(541), 1, + sym_call_expression, + STATE(592), 1, + sym_member_expression, + STATE(605), 1, + sym__signed_unary_expression, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16391), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16393), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(589), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [161395] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11923), 1, + aux_sym_unary_expression_token1, + STATE(541), 1, + sym_call_expression, + STATE(592), 1, + sym_member_expression, + STATE(605), 1, + sym__signed_unary_expression, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16395), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16397), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(593), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [161484] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11923), 1, + aux_sym_unary_expression_token1, + STATE(541), 1, + sym_call_expression, + STATE(592), 1, + sym_member_expression, + STATE(605), 1, + sym__signed_unary_expression, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16399), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16401), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(594), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [161573] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11923), 1, + aux_sym_unary_expression_token1, + STATE(541), 1, + sym_call_expression, + STATE(592), 1, + sym_member_expression, + STATE(605), 1, + sym__signed_unary_expression, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16403), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16405), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(595), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [161662] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11923), 1, + aux_sym_unary_expression_token1, + STATE(541), 1, + sym_call_expression, + STATE(592), 1, + sym_member_expression, + STATE(605), 1, + sym__signed_unary_expression, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16407), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16409), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(596), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [161751] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11923), 1, + aux_sym_unary_expression_token1, + STATE(541), 1, + sym_call_expression, + STATE(592), 1, + sym_member_expression, + STATE(605), 1, + sym__signed_unary_expression, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16411), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16413), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(597), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [161840] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11923), 1, + aux_sym_unary_expression_token1, + STATE(541), 1, + sym_call_expression, + STATE(592), 1, + sym_member_expression, + STATE(605), 1, + sym__signed_unary_expression, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16415), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16417), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(598), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [161929] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11923), 1, + aux_sym_unary_expression_token1, + STATE(541), 1, + sym_call_expression, + STATE(592), 1, + sym_member_expression, + STATE(605), 1, + sym__signed_unary_expression, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16419), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16421), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(599), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [162018] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11923), 1, + aux_sym_unary_expression_token1, + STATE(541), 1, + sym_call_expression, + STATE(592), 1, + sym_member_expression, + STATE(605), 1, + sym__signed_unary_expression, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16423), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16425), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(600), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [162107] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11923), 1, + aux_sym_unary_expression_token1, + STATE(541), 1, + sym_call_expression, + STATE(592), 1, + sym_member_expression, + STATE(605), 1, + sym__signed_unary_expression, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16427), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16429), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(601), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [162196] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11923), 1, + aux_sym_unary_expression_token1, + STATE(541), 1, + sym_call_expression, + STATE(592), 1, + sym_member_expression, + STATE(605), 1, + sym__signed_unary_expression, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16431), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16433), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(602), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [162285] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11923), 1, + aux_sym_unary_expression_token1, + STATE(541), 1, + sym_call_expression, + STATE(592), 1, + sym_member_expression, + STATE(605), 1, + sym__signed_unary_expression, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16435), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16437), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(603), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [162374] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1791), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_DASH, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1821), 1, + aux_sym_unary_expression_token1, + ACTIONS(1831), 1, + anon_sym_POUND, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16439), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16441), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2596), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [162463] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11923), 1, + aux_sym_unary_expression_token1, + STATE(541), 1, + sym_call_expression, + STATE(592), 1, + sym_member_expression, + STATE(605), 1, + sym__signed_unary_expression, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16443), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16445), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(588), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [162552] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12101), 1, + aux_sym_unary_expression_token1, + ACTIONS(13425), 1, + sym_identifier, + ACTIONS(13427), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13429), 1, + anon_sym_DOT, + ACTIONS(13431), 1, + anon_sym_BANG, + ACTIONS(13433), 1, + anon_sym_LPAREN, + ACTIONS(13435), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13437), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13439), 1, + anon_sym_PLUS, + ACTIONS(13441), 1, + anon_sym_DASH, + ACTIONS(13443), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13445), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13453), 1, + anon_sym_POUND, + STATE(886), 1, + sym_call_expression, + STATE(1083), 1, + sym__signed_unary_expression, + STATE(1117), 1, + sym_member_expression, + STATE(13330), 1, + sym__callable_expression, + ACTIONS(13449), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1362), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16447), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16449), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1417), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [162641] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12101), 1, + aux_sym_unary_expression_token1, + ACTIONS(13425), 1, + sym_identifier, + ACTIONS(13427), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13429), 1, + anon_sym_DOT, + ACTIONS(13431), 1, + anon_sym_BANG, + ACTIONS(13433), 1, + anon_sym_LPAREN, + ACTIONS(13435), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13437), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13439), 1, + anon_sym_PLUS, + ACTIONS(13441), 1, + anon_sym_DASH, + ACTIONS(13443), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13445), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13453), 1, + anon_sym_POUND, + STATE(886), 1, + sym_call_expression, + STATE(1083), 1, + sym__signed_unary_expression, + STATE(1117), 1, + sym_member_expression, + STATE(13330), 1, + sym__callable_expression, + ACTIONS(13449), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1362), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16451), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16453), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1128), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [162730] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12101), 1, + aux_sym_unary_expression_token1, + ACTIONS(13425), 1, + sym_identifier, + ACTIONS(13427), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13429), 1, + anon_sym_DOT, + ACTIONS(13431), 1, + anon_sym_BANG, + ACTIONS(13433), 1, + anon_sym_LPAREN, + ACTIONS(13435), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13437), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13439), 1, + anon_sym_PLUS, + ACTIONS(13441), 1, + anon_sym_DASH, + ACTIONS(13443), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13445), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13453), 1, + anon_sym_POUND, + STATE(886), 1, + sym_call_expression, + STATE(1083), 1, + sym__signed_unary_expression, + STATE(1117), 1, + sym_member_expression, + STATE(13330), 1, + sym__callable_expression, + ACTIONS(13449), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1362), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16455), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16457), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1131), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [162819] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12101), 1, + aux_sym_unary_expression_token1, + ACTIONS(13425), 1, + sym_identifier, + ACTIONS(13427), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13429), 1, + anon_sym_DOT, + ACTIONS(13431), 1, + anon_sym_BANG, + ACTIONS(13433), 1, + anon_sym_LPAREN, + ACTIONS(13435), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13437), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13439), 1, + anon_sym_PLUS, + ACTIONS(13441), 1, + anon_sym_DASH, + ACTIONS(13443), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13445), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13453), 1, + anon_sym_POUND, + STATE(886), 1, + sym_call_expression, + STATE(1083), 1, + sym__signed_unary_expression, + STATE(1117), 1, + sym_member_expression, + STATE(13330), 1, + sym__callable_expression, + ACTIONS(13449), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1362), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16459), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16461), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1132), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [162908] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12101), 1, + aux_sym_unary_expression_token1, + ACTIONS(13425), 1, + sym_identifier, + ACTIONS(13427), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13429), 1, + anon_sym_DOT, + ACTIONS(13431), 1, + anon_sym_BANG, + ACTIONS(13433), 1, + anon_sym_LPAREN, + ACTIONS(13435), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13437), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13439), 1, + anon_sym_PLUS, + ACTIONS(13441), 1, + anon_sym_DASH, + ACTIONS(13443), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13445), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13453), 1, + anon_sym_POUND, + STATE(886), 1, + sym_call_expression, + STATE(1083), 1, + sym__signed_unary_expression, + STATE(1117), 1, + sym_member_expression, + STATE(13330), 1, + sym__callable_expression, + ACTIONS(13449), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1362), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16463), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16465), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1133), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [162997] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12101), 1, + aux_sym_unary_expression_token1, + ACTIONS(13425), 1, + sym_identifier, + ACTIONS(13427), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13429), 1, + anon_sym_DOT, + ACTIONS(13431), 1, + anon_sym_BANG, + ACTIONS(13433), 1, + anon_sym_LPAREN, + ACTIONS(13435), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13437), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13439), 1, + anon_sym_PLUS, + ACTIONS(13441), 1, + anon_sym_DASH, + ACTIONS(13443), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13445), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13453), 1, + anon_sym_POUND, + STATE(886), 1, + sym_call_expression, + STATE(1083), 1, + sym__signed_unary_expression, + STATE(1117), 1, + sym_member_expression, + STATE(13330), 1, + sym__callable_expression, + ACTIONS(13449), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1362), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16467), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16469), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1134), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [163086] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12101), 1, + aux_sym_unary_expression_token1, + ACTIONS(13425), 1, + sym_identifier, + ACTIONS(13427), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13429), 1, + anon_sym_DOT, + ACTIONS(13431), 1, + anon_sym_BANG, + ACTIONS(13433), 1, + anon_sym_LPAREN, + ACTIONS(13435), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13437), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13439), 1, + anon_sym_PLUS, + ACTIONS(13441), 1, + anon_sym_DASH, + ACTIONS(13443), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13445), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13453), 1, + anon_sym_POUND, + STATE(886), 1, + sym_call_expression, + STATE(1083), 1, + sym__signed_unary_expression, + STATE(1117), 1, + sym_member_expression, + STATE(13330), 1, + sym__callable_expression, + ACTIONS(13449), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1362), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16471), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16473), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1135), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [163175] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12101), 1, + aux_sym_unary_expression_token1, + ACTIONS(13425), 1, + sym_identifier, + ACTIONS(13427), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13429), 1, + anon_sym_DOT, + ACTIONS(13431), 1, + anon_sym_BANG, + ACTIONS(13433), 1, + anon_sym_LPAREN, + ACTIONS(13435), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13437), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13439), 1, + anon_sym_PLUS, + ACTIONS(13441), 1, + anon_sym_DASH, + ACTIONS(13443), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13445), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13453), 1, + anon_sym_POUND, + STATE(886), 1, + sym_call_expression, + STATE(1083), 1, + sym__signed_unary_expression, + STATE(1117), 1, + sym_member_expression, + STATE(13330), 1, + sym__callable_expression, + ACTIONS(13449), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1362), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16475), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16477), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1136), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [163264] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12101), 1, + aux_sym_unary_expression_token1, + ACTIONS(13425), 1, + sym_identifier, + ACTIONS(13427), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13429), 1, + anon_sym_DOT, + ACTIONS(13431), 1, + anon_sym_BANG, + ACTIONS(13433), 1, + anon_sym_LPAREN, + ACTIONS(13435), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13437), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13439), 1, + anon_sym_PLUS, + ACTIONS(13441), 1, + anon_sym_DASH, + ACTIONS(13443), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13445), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13453), 1, + anon_sym_POUND, + STATE(886), 1, + sym_call_expression, + STATE(1083), 1, + sym__signed_unary_expression, + STATE(1117), 1, + sym_member_expression, + STATE(13330), 1, + sym__callable_expression, + ACTIONS(13449), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1362), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16479), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16481), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1137), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [163353] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12101), 1, + aux_sym_unary_expression_token1, + ACTIONS(13425), 1, + sym_identifier, + ACTIONS(13427), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13429), 1, + anon_sym_DOT, + ACTIONS(13431), 1, + anon_sym_BANG, + ACTIONS(13433), 1, + anon_sym_LPAREN, + ACTIONS(13435), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13437), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13439), 1, + anon_sym_PLUS, + ACTIONS(13441), 1, + anon_sym_DASH, + ACTIONS(13443), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13445), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13453), 1, + anon_sym_POUND, + STATE(886), 1, + sym_call_expression, + STATE(1083), 1, + sym__signed_unary_expression, + STATE(1117), 1, + sym_member_expression, + STATE(13330), 1, + sym__callable_expression, + ACTIONS(13449), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1362), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16483), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16485), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1138), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [163442] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12101), 1, + aux_sym_unary_expression_token1, + ACTIONS(13425), 1, + sym_identifier, + ACTIONS(13427), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13429), 1, + anon_sym_DOT, + ACTIONS(13431), 1, + anon_sym_BANG, + ACTIONS(13433), 1, + anon_sym_LPAREN, + ACTIONS(13435), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13437), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13439), 1, + anon_sym_PLUS, + ACTIONS(13441), 1, + anon_sym_DASH, + ACTIONS(13443), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13445), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13453), 1, + anon_sym_POUND, + STATE(886), 1, + sym_call_expression, + STATE(1083), 1, + sym__signed_unary_expression, + STATE(1117), 1, + sym_member_expression, + STATE(13330), 1, + sym__callable_expression, + ACTIONS(13449), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1362), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16487), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16489), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1139), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [163531] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12101), 1, + aux_sym_unary_expression_token1, + ACTIONS(13425), 1, + sym_identifier, + ACTIONS(13427), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13429), 1, + anon_sym_DOT, + ACTIONS(13431), 1, + anon_sym_BANG, + ACTIONS(13433), 1, + anon_sym_LPAREN, + ACTIONS(13435), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13437), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13439), 1, + anon_sym_PLUS, + ACTIONS(13441), 1, + anon_sym_DASH, + ACTIONS(13443), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13445), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13453), 1, + anon_sym_POUND, + STATE(886), 1, + sym_call_expression, + STATE(1083), 1, + sym__signed_unary_expression, + STATE(1117), 1, + sym_member_expression, + STATE(13330), 1, + sym__callable_expression, + ACTIONS(13449), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1362), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16491), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16493), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1140), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [163620] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DOT, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4689), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4691), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4693), 1, + anon_sym_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH, + ACTIONS(4697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4707), 1, + anon_sym_POUND, + ACTIONS(4939), 1, + anon_sym_LPAREN, + ACTIONS(11709), 1, + sym_identifier, + ACTIONS(11711), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12037), 1, + aux_sym_unary_expression_token1, + STATE(981), 1, + sym_call_expression, + STATE(1343), 1, + sym_member_expression, + STATE(1390), 1, + sym__signed_unary_expression, + STATE(13443), 1, + sym__callable_expression, + ACTIONS(4703), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16495), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16497), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1075), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [163709] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12871), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13905), 1, + anon_sym_PLUS, + ACTIONS(13907), 1, + anon_sym_DASH, + ACTIONS(13913), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16499), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16501), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7349), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [163798] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12101), 1, + aux_sym_unary_expression_token1, + ACTIONS(13425), 1, + sym_identifier, + ACTIONS(13427), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13429), 1, + anon_sym_DOT, + ACTIONS(13431), 1, + anon_sym_BANG, + ACTIONS(13433), 1, + anon_sym_LPAREN, + ACTIONS(13435), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13437), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13439), 1, + anon_sym_PLUS, + ACTIONS(13441), 1, + anon_sym_DASH, + ACTIONS(13443), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13445), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13453), 1, + anon_sym_POUND, + STATE(886), 1, + sym_call_expression, + STATE(1083), 1, + sym__signed_unary_expression, + STATE(1117), 1, + sym_member_expression, + STATE(13330), 1, + sym__callable_expression, + ACTIONS(13449), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1362), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16503), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16505), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1411), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [163887] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12231), 1, + aux_sym_unary_expression_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(843), 1, + sym__signed_unary_expression, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16507), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16509), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(850), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [163976] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12231), 1, + aux_sym_unary_expression_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(843), 1, + sym__signed_unary_expression, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16511), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16513), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(804), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [164065] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12231), 1, + aux_sym_unary_expression_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(843), 1, + sym__signed_unary_expression, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16515), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16517), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(812), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [164154] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12231), 1, + aux_sym_unary_expression_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(843), 1, + sym__signed_unary_expression, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16519), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16521), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(818), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [164243] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12231), 1, + aux_sym_unary_expression_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(843), 1, + sym__signed_unary_expression, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16523), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16525), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(798), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [164332] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12231), 1, + aux_sym_unary_expression_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(843), 1, + sym__signed_unary_expression, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16527), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16529), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(809), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [164421] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12231), 1, + aux_sym_unary_expression_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(843), 1, + sym__signed_unary_expression, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16531), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16533), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(811), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [164510] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12231), 1, + aux_sym_unary_expression_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(843), 1, + sym__signed_unary_expression, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16535), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16537), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(824), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [164599] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12231), 1, + aux_sym_unary_expression_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(843), 1, + sym__signed_unary_expression, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16539), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16541), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(840), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [164688] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12231), 1, + aux_sym_unary_expression_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(843), 1, + sym__signed_unary_expression, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16543), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16545), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(822), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [164777] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12231), 1, + aux_sym_unary_expression_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(843), 1, + sym__signed_unary_expression, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16549), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(826), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [164866] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12231), 1, + aux_sym_unary_expression_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(843), 1, + sym__signed_unary_expression, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16551), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16553), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(860), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [164955] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12067), 1, + aux_sym_unary_expression_token1, + ACTIONS(13707), 1, + anon_sym_DOT, + ACTIONS(13709), 1, + anon_sym_BANG, + ACTIONS(13711), 1, + anon_sym_LPAREN, + ACTIONS(13715), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13721), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13723), 1, + aux_sym_type_of_expression_token1, + ACTIONS(14363), 1, + sym_identifier, + ACTIONS(14365), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(14367), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14369), 1, + anon_sym_PLUS, + ACTIONS(14371), 1, + anon_sym_DASH, + ACTIONS(14377), 1, + anon_sym_POUND, + STATE(10360), 1, + sym_call_expression, + STATE(10375), 1, + sym_member_expression, + STATE(10435), 1, + sym__signed_unary_expression, + STATE(13660), 1, + sym__callable_expression, + ACTIONS(13727), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16555), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16557), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10432), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [165044] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12231), 1, + aux_sym_unary_expression_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(843), 1, + sym__signed_unary_expression, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16559), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16561), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(849), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [165133] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12871), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13905), 1, + anon_sym_PLUS, + ACTIONS(13907), 1, + anon_sym_DASH, + ACTIONS(13913), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16563), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16565), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7360), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [165222] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12135), 1, + aux_sym_unary_expression_token1, + ACTIONS(14679), 1, + anon_sym_PLUS, + ACTIONS(14681), 1, + anon_sym_DASH, + ACTIONS(14687), 1, + anon_sym_POUND, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16567), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16569), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3327), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [165311] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12135), 1, + aux_sym_unary_expression_token1, + ACTIONS(14679), 1, + anon_sym_PLUS, + ACTIONS(14681), 1, + anon_sym_DASH, + ACTIONS(14687), 1, + anon_sym_POUND, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16571), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16573), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3254), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [165400] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12135), 1, + aux_sym_unary_expression_token1, + ACTIONS(14679), 1, + anon_sym_PLUS, + ACTIONS(14681), 1, + anon_sym_DASH, + ACTIONS(14687), 1, + anon_sym_POUND, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16575), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16577), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3255), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [165489] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12135), 1, + aux_sym_unary_expression_token1, + ACTIONS(14679), 1, + anon_sym_PLUS, + ACTIONS(14681), 1, + anon_sym_DASH, + ACTIONS(14687), 1, + anon_sym_POUND, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16579), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16581), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3256), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [165578] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12135), 1, + aux_sym_unary_expression_token1, + ACTIONS(14679), 1, + anon_sym_PLUS, + ACTIONS(14681), 1, + anon_sym_DASH, + ACTIONS(14687), 1, + anon_sym_POUND, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16583), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3257), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [165667] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12135), 1, + aux_sym_unary_expression_token1, + ACTIONS(14679), 1, + anon_sym_PLUS, + ACTIONS(14681), 1, + anon_sym_DASH, + ACTIONS(14687), 1, + anon_sym_POUND, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16587), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16589), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3258), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [165756] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12135), 1, + aux_sym_unary_expression_token1, + ACTIONS(14679), 1, + anon_sym_PLUS, + ACTIONS(14681), 1, + anon_sym_DASH, + ACTIONS(14687), 1, + anon_sym_POUND, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16591), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16593), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3259), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [165845] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12135), 1, + aux_sym_unary_expression_token1, + ACTIONS(14679), 1, + anon_sym_PLUS, + ACTIONS(14681), 1, + anon_sym_DASH, + ACTIONS(14687), 1, + anon_sym_POUND, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16595), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16597), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3260), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [165934] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12135), 1, + aux_sym_unary_expression_token1, + ACTIONS(14679), 1, + anon_sym_PLUS, + ACTIONS(14681), 1, + anon_sym_DASH, + ACTIONS(14687), 1, + anon_sym_POUND, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16599), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16601), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3261), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [166023] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12135), 1, + aux_sym_unary_expression_token1, + ACTIONS(14679), 1, + anon_sym_PLUS, + ACTIONS(14681), 1, + anon_sym_DASH, + ACTIONS(14687), 1, + anon_sym_POUND, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16603), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16605), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3262), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [166112] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12135), 1, + aux_sym_unary_expression_token1, + ACTIONS(14679), 1, + anon_sym_PLUS, + ACTIONS(14681), 1, + anon_sym_DASH, + ACTIONS(14687), 1, + anon_sym_POUND, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16607), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16609), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3263), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [166201] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12135), 1, + aux_sym_unary_expression_token1, + ACTIONS(14679), 1, + anon_sym_PLUS, + ACTIONS(14681), 1, + anon_sym_DASH, + ACTIONS(14687), 1, + anon_sym_POUND, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16611), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16613), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3264), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [166290] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16615), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16617), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1521), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [166379] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16619), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16621), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3069), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [166468] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12165), 1, + aux_sym_unary_expression_token1, + ACTIONS(13239), 1, + sym_identifier, + ACTIONS(13241), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13243), 1, + anon_sym_DOT, + ACTIONS(13245), 1, + anon_sym_BANG, + ACTIONS(13247), 1, + anon_sym_LPAREN, + ACTIONS(13249), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13251), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13253), 1, + anon_sym_PLUS, + ACTIONS(13255), 1, + anon_sym_DASH, + ACTIONS(13257), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13259), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13267), 1, + anon_sym_POUND, + STATE(2664), 1, + sym_call_expression, + STATE(3077), 1, + sym__signed_unary_expression, + STATE(3298), 1, + sym_member_expression, + STATE(13262), 1, + sym__callable_expression, + ACTIONS(13263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2931), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16623), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16625), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3225), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [166557] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16627), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16629), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3075), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [166646] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12165), 1, + aux_sym_unary_expression_token1, + ACTIONS(13239), 1, + sym_identifier, + ACTIONS(13241), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13243), 1, + anon_sym_DOT, + ACTIONS(13245), 1, + anon_sym_BANG, + ACTIONS(13247), 1, + anon_sym_LPAREN, + ACTIONS(13249), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13251), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13253), 1, + anon_sym_PLUS, + ACTIONS(13255), 1, + anon_sym_DASH, + ACTIONS(13257), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13259), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13267), 1, + anon_sym_POUND, + STATE(2664), 1, + sym_call_expression, + STATE(3077), 1, + sym__signed_unary_expression, + STATE(3298), 1, + sym_member_expression, + STATE(13262), 1, + sym__callable_expression, + ACTIONS(13263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2931), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16631), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16633), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3228), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [166735] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12165), 1, + aux_sym_unary_expression_token1, + ACTIONS(13239), 1, + sym_identifier, + ACTIONS(13241), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13243), 1, + anon_sym_DOT, + ACTIONS(13245), 1, + anon_sym_BANG, + ACTIONS(13247), 1, + anon_sym_LPAREN, + ACTIONS(13249), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13251), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13253), 1, + anon_sym_PLUS, + ACTIONS(13255), 1, + anon_sym_DASH, + ACTIONS(13257), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13259), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13267), 1, + anon_sym_POUND, + STATE(2664), 1, + sym_call_expression, + STATE(3077), 1, + sym__signed_unary_expression, + STATE(3298), 1, + sym_member_expression, + STATE(13262), 1, + sym__callable_expression, + ACTIONS(13263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2931), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16635), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16637), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3278), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [166824] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12165), 1, + aux_sym_unary_expression_token1, + ACTIONS(13239), 1, + sym_identifier, + ACTIONS(13241), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13243), 1, + anon_sym_DOT, + ACTIONS(13245), 1, + anon_sym_BANG, + ACTIONS(13247), 1, + anon_sym_LPAREN, + ACTIONS(13249), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13251), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13253), 1, + anon_sym_PLUS, + ACTIONS(13255), 1, + anon_sym_DASH, + ACTIONS(13257), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13259), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13267), 1, + anon_sym_POUND, + STATE(2664), 1, + sym_call_expression, + STATE(3077), 1, + sym__signed_unary_expression, + STATE(3298), 1, + sym_member_expression, + STATE(13262), 1, + sym__callable_expression, + ACTIONS(13263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2931), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16639), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16641), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3279), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [166913] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12165), 1, + aux_sym_unary_expression_token1, + ACTIONS(13239), 1, + sym_identifier, + ACTIONS(13241), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13243), 1, + anon_sym_DOT, + ACTIONS(13245), 1, + anon_sym_BANG, + ACTIONS(13247), 1, + anon_sym_LPAREN, + ACTIONS(13249), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13251), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13253), 1, + anon_sym_PLUS, + ACTIONS(13255), 1, + anon_sym_DASH, + ACTIONS(13257), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13259), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13267), 1, + anon_sym_POUND, + STATE(2664), 1, + sym_call_expression, + STATE(3077), 1, + sym__signed_unary_expression, + STATE(3298), 1, + sym_member_expression, + STATE(13262), 1, + sym__callable_expression, + ACTIONS(13263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2931), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16643), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16645), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3281), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [167002] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12165), 1, + aux_sym_unary_expression_token1, + ACTIONS(13239), 1, + sym_identifier, + ACTIONS(13241), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13243), 1, + anon_sym_DOT, + ACTIONS(13245), 1, + anon_sym_BANG, + ACTIONS(13247), 1, + anon_sym_LPAREN, + ACTIONS(13249), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13251), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13253), 1, + anon_sym_PLUS, + ACTIONS(13255), 1, + anon_sym_DASH, + ACTIONS(13257), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13259), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13267), 1, + anon_sym_POUND, + STATE(2664), 1, + sym_call_expression, + STATE(3077), 1, + sym__signed_unary_expression, + STATE(3298), 1, + sym_member_expression, + STATE(13262), 1, + sym__callable_expression, + ACTIONS(13263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2931), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16647), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16649), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3282), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [167091] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12165), 1, + aux_sym_unary_expression_token1, + ACTIONS(13239), 1, + sym_identifier, + ACTIONS(13241), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13243), 1, + anon_sym_DOT, + ACTIONS(13245), 1, + anon_sym_BANG, + ACTIONS(13247), 1, + anon_sym_LPAREN, + ACTIONS(13249), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13251), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13253), 1, + anon_sym_PLUS, + ACTIONS(13255), 1, + anon_sym_DASH, + ACTIONS(13257), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13259), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13267), 1, + anon_sym_POUND, + STATE(2664), 1, + sym_call_expression, + STATE(3077), 1, + sym__signed_unary_expression, + STATE(3298), 1, + sym_member_expression, + STATE(13262), 1, + sym__callable_expression, + ACTIONS(13263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2931), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16651), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16653), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3284), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [167180] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12165), 1, + aux_sym_unary_expression_token1, + ACTIONS(13239), 1, + sym_identifier, + ACTIONS(13241), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13243), 1, + anon_sym_DOT, + ACTIONS(13245), 1, + anon_sym_BANG, + ACTIONS(13247), 1, + anon_sym_LPAREN, + ACTIONS(13249), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13251), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13253), 1, + anon_sym_PLUS, + ACTIONS(13255), 1, + anon_sym_DASH, + ACTIONS(13257), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13259), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13267), 1, + anon_sym_POUND, + STATE(2664), 1, + sym_call_expression, + STATE(3077), 1, + sym__signed_unary_expression, + STATE(3298), 1, + sym_member_expression, + STATE(13262), 1, + sym__callable_expression, + ACTIONS(13263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2931), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16655), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16657), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3285), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [167269] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12165), 1, + aux_sym_unary_expression_token1, + ACTIONS(13239), 1, + sym_identifier, + ACTIONS(13241), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13243), 1, + anon_sym_DOT, + ACTIONS(13245), 1, + anon_sym_BANG, + ACTIONS(13247), 1, + anon_sym_LPAREN, + ACTIONS(13249), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13251), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13253), 1, + anon_sym_PLUS, + ACTIONS(13255), 1, + anon_sym_DASH, + ACTIONS(13257), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13259), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13267), 1, + anon_sym_POUND, + STATE(2664), 1, + sym_call_expression, + STATE(3077), 1, + sym__signed_unary_expression, + STATE(3298), 1, + sym_member_expression, + STATE(13262), 1, + sym__callable_expression, + ACTIONS(13263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2931), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16659), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16661), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3286), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [167358] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12165), 1, + aux_sym_unary_expression_token1, + ACTIONS(13239), 1, + sym_identifier, + ACTIONS(13241), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13243), 1, + anon_sym_DOT, + ACTIONS(13245), 1, + anon_sym_BANG, + ACTIONS(13247), 1, + anon_sym_LPAREN, + ACTIONS(13249), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13251), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13253), 1, + anon_sym_PLUS, + ACTIONS(13255), 1, + anon_sym_DASH, + ACTIONS(13257), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13259), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13267), 1, + anon_sym_POUND, + STATE(2664), 1, + sym_call_expression, + STATE(3077), 1, + sym__signed_unary_expression, + STATE(3298), 1, + sym_member_expression, + STATE(13262), 1, + sym__callable_expression, + ACTIONS(13263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2931), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16663), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16665), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3287), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [167447] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12165), 1, + aux_sym_unary_expression_token1, + ACTIONS(13239), 1, + sym_identifier, + ACTIONS(13241), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13243), 1, + anon_sym_DOT, + ACTIONS(13245), 1, + anon_sym_BANG, + ACTIONS(13247), 1, + anon_sym_LPAREN, + ACTIONS(13249), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13251), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13253), 1, + anon_sym_PLUS, + ACTIONS(13255), 1, + anon_sym_DASH, + ACTIONS(13257), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13259), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13267), 1, + anon_sym_POUND, + STATE(2664), 1, + sym_call_expression, + STATE(3077), 1, + sym__signed_unary_expression, + STATE(3298), 1, + sym_member_expression, + STATE(13262), 1, + sym__callable_expression, + ACTIONS(13263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2931), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16667), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16669), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3289), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [167536] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12165), 1, + aux_sym_unary_expression_token1, + ACTIONS(13239), 1, + sym_identifier, + ACTIONS(13241), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13243), 1, + anon_sym_DOT, + ACTIONS(13245), 1, + anon_sym_BANG, + ACTIONS(13247), 1, + anon_sym_LPAREN, + ACTIONS(13249), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13251), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13253), 1, + anon_sym_PLUS, + ACTIONS(13255), 1, + anon_sym_DASH, + ACTIONS(13257), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13259), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13267), 1, + anon_sym_POUND, + STATE(2664), 1, + sym_call_expression, + STATE(3077), 1, + sym__signed_unary_expression, + STATE(3298), 1, + sym_member_expression, + STATE(13262), 1, + sym__callable_expression, + ACTIONS(13263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2931), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16671), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16673), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3292), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [167625] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12165), 1, + aux_sym_unary_expression_token1, + ACTIONS(13239), 1, + sym_identifier, + ACTIONS(13241), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13243), 1, + anon_sym_DOT, + ACTIONS(13245), 1, + anon_sym_BANG, + ACTIONS(13247), 1, + anon_sym_LPAREN, + ACTIONS(13249), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13251), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13253), 1, + anon_sym_PLUS, + ACTIONS(13255), 1, + anon_sym_DASH, + ACTIONS(13257), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13259), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13267), 1, + anon_sym_POUND, + STATE(2664), 1, + sym_call_expression, + STATE(3077), 1, + sym__signed_unary_expression, + STATE(3298), 1, + sym_member_expression, + STATE(13262), 1, + sym__callable_expression, + ACTIONS(13263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2931), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16675), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16677), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3293), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [167714] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12101), 1, + aux_sym_unary_expression_token1, + ACTIONS(13425), 1, + sym_identifier, + ACTIONS(13427), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13429), 1, + anon_sym_DOT, + ACTIONS(13431), 1, + anon_sym_BANG, + ACTIONS(13433), 1, + anon_sym_LPAREN, + ACTIONS(13435), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13437), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13439), 1, + anon_sym_PLUS, + ACTIONS(13441), 1, + anon_sym_DASH, + ACTIONS(13443), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13445), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13453), 1, + anon_sym_POUND, + STATE(886), 1, + sym_call_expression, + STATE(1083), 1, + sym__signed_unary_expression, + STATE(1117), 1, + sym_member_expression, + STATE(13330), 1, + sym__callable_expression, + ACTIONS(13449), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1362), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16679), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16681), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1233), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [167803] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16683), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16685), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3086), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [167892] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(13045), 1, + sym_identifier, + ACTIONS(13047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13051), 1, + anon_sym_BANG, + ACTIONS(13053), 1, + anon_sym_LPAREN, + ACTIONS(13055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13059), 1, + anon_sym_PLUS, + ACTIONS(13061), 1, + anon_sym_DASH, + ACTIONS(13063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13073), 1, + anon_sym_POUND, + STATE(3220), 1, + sym_call_expression, + STATE(3591), 1, + sym__signed_unary_expression, + STATE(3713), 1, + sym_member_expression, + STATE(13112), 1, + sym__callable_expression, + ACTIONS(13069), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16687), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16689), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3493), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [167981] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16691), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16693), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3089), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [168070] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(13045), 1, + sym_identifier, + ACTIONS(13047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13051), 1, + anon_sym_BANG, + ACTIONS(13053), 1, + anon_sym_LPAREN, + ACTIONS(13055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13059), 1, + anon_sym_PLUS, + ACTIONS(13061), 1, + anon_sym_DASH, + ACTIONS(13063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13073), 1, + anon_sym_POUND, + STATE(3220), 1, + sym_call_expression, + STATE(3591), 1, + sym__signed_unary_expression, + STATE(3713), 1, + sym_member_expression, + STATE(13112), 1, + sym__callable_expression, + ACTIONS(13069), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16695), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16697), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3497), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [168159] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(13045), 1, + sym_identifier, + ACTIONS(13047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13051), 1, + anon_sym_BANG, + ACTIONS(13053), 1, + anon_sym_LPAREN, + ACTIONS(13055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13059), 1, + anon_sym_PLUS, + ACTIONS(13061), 1, + anon_sym_DASH, + ACTIONS(13063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13073), 1, + anon_sym_POUND, + STATE(3220), 1, + sym_call_expression, + STATE(3591), 1, + sym__signed_unary_expression, + STATE(3713), 1, + sym_member_expression, + STATE(13112), 1, + sym__callable_expression, + ACTIONS(13069), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16699), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16701), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3571), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [168248] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(13045), 1, + sym_identifier, + ACTIONS(13047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13051), 1, + anon_sym_BANG, + ACTIONS(13053), 1, + anon_sym_LPAREN, + ACTIONS(13055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13059), 1, + anon_sym_PLUS, + ACTIONS(13061), 1, + anon_sym_DASH, + ACTIONS(13063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13073), 1, + anon_sym_POUND, + STATE(3220), 1, + sym_call_expression, + STATE(3591), 1, + sym__signed_unary_expression, + STATE(3713), 1, + sym_member_expression, + STATE(13112), 1, + sym__callable_expression, + ACTIONS(13069), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16703), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3572), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [168337] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(13045), 1, + sym_identifier, + ACTIONS(13047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13051), 1, + anon_sym_BANG, + ACTIONS(13053), 1, + anon_sym_LPAREN, + ACTIONS(13055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13059), 1, + anon_sym_PLUS, + ACTIONS(13061), 1, + anon_sym_DASH, + ACTIONS(13063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13073), 1, + anon_sym_POUND, + STATE(3220), 1, + sym_call_expression, + STATE(3591), 1, + sym__signed_unary_expression, + STATE(3713), 1, + sym_member_expression, + STATE(13112), 1, + sym__callable_expression, + ACTIONS(13069), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16707), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16709), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3573), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [168426] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(13045), 1, + sym_identifier, + ACTIONS(13047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13051), 1, + anon_sym_BANG, + ACTIONS(13053), 1, + anon_sym_LPAREN, + ACTIONS(13055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13059), 1, + anon_sym_PLUS, + ACTIONS(13061), 1, + anon_sym_DASH, + ACTIONS(13063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13073), 1, + anon_sym_POUND, + STATE(3220), 1, + sym_call_expression, + STATE(3591), 1, + sym__signed_unary_expression, + STATE(3713), 1, + sym_member_expression, + STATE(13112), 1, + sym__callable_expression, + ACTIONS(13069), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16711), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16713), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3574), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [168515] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(13045), 1, + sym_identifier, + ACTIONS(13047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13051), 1, + anon_sym_BANG, + ACTIONS(13053), 1, + anon_sym_LPAREN, + ACTIONS(13055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13059), 1, + anon_sym_PLUS, + ACTIONS(13061), 1, + anon_sym_DASH, + ACTIONS(13063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13073), 1, + anon_sym_POUND, + STATE(3220), 1, + sym_call_expression, + STATE(3591), 1, + sym__signed_unary_expression, + STATE(3713), 1, + sym_member_expression, + STATE(13112), 1, + sym__callable_expression, + ACTIONS(13069), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16715), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16717), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3575), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [168604] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(13045), 1, + sym_identifier, + ACTIONS(13047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13051), 1, + anon_sym_BANG, + ACTIONS(13053), 1, + anon_sym_LPAREN, + ACTIONS(13055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13059), 1, + anon_sym_PLUS, + ACTIONS(13061), 1, + anon_sym_DASH, + ACTIONS(13063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13073), 1, + anon_sym_POUND, + STATE(3220), 1, + sym_call_expression, + STATE(3591), 1, + sym__signed_unary_expression, + STATE(3713), 1, + sym_member_expression, + STATE(13112), 1, + sym__callable_expression, + ACTIONS(13069), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16719), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16721), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3577), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [168693] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(13045), 1, + sym_identifier, + ACTIONS(13047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13051), 1, + anon_sym_BANG, + ACTIONS(13053), 1, + anon_sym_LPAREN, + ACTIONS(13055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13059), 1, + anon_sym_PLUS, + ACTIONS(13061), 1, + anon_sym_DASH, + ACTIONS(13063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13073), 1, + anon_sym_POUND, + STATE(3220), 1, + sym_call_expression, + STATE(3591), 1, + sym__signed_unary_expression, + STATE(3713), 1, + sym_member_expression, + STATE(13112), 1, + sym__callable_expression, + ACTIONS(13069), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16723), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16725), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3578), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [168782] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(13045), 1, + sym_identifier, + ACTIONS(13047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13051), 1, + anon_sym_BANG, + ACTIONS(13053), 1, + anon_sym_LPAREN, + ACTIONS(13055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13059), 1, + anon_sym_PLUS, + ACTIONS(13061), 1, + anon_sym_DASH, + ACTIONS(13063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13073), 1, + anon_sym_POUND, + STATE(3220), 1, + sym_call_expression, + STATE(3591), 1, + sym__signed_unary_expression, + STATE(3713), 1, + sym_member_expression, + STATE(13112), 1, + sym__callable_expression, + ACTIONS(13069), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16727), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16729), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3579), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [168871] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(13045), 1, + sym_identifier, + ACTIONS(13047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13051), 1, + anon_sym_BANG, + ACTIONS(13053), 1, + anon_sym_LPAREN, + ACTIONS(13055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13059), 1, + anon_sym_PLUS, + ACTIONS(13061), 1, + anon_sym_DASH, + ACTIONS(13063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13073), 1, + anon_sym_POUND, + STATE(3220), 1, + sym_call_expression, + STATE(3591), 1, + sym__signed_unary_expression, + STATE(3713), 1, + sym_member_expression, + STATE(13112), 1, + sym__callable_expression, + ACTIONS(13069), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16731), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16733), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3580), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [168960] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(13045), 1, + sym_identifier, + ACTIONS(13047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13051), 1, + anon_sym_BANG, + ACTIONS(13053), 1, + anon_sym_LPAREN, + ACTIONS(13055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13059), 1, + anon_sym_PLUS, + ACTIONS(13061), 1, + anon_sym_DASH, + ACTIONS(13063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13073), 1, + anon_sym_POUND, + STATE(3220), 1, + sym_call_expression, + STATE(3591), 1, + sym__signed_unary_expression, + STATE(3713), 1, + sym_member_expression, + STATE(13112), 1, + sym__callable_expression, + ACTIONS(13069), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16735), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16737), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3581), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [169049] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(13045), 1, + sym_identifier, + ACTIONS(13047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13051), 1, + anon_sym_BANG, + ACTIONS(13053), 1, + anon_sym_LPAREN, + ACTIONS(13055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13059), 1, + anon_sym_PLUS, + ACTIONS(13061), 1, + anon_sym_DASH, + ACTIONS(13063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13073), 1, + anon_sym_POUND, + STATE(3220), 1, + sym_call_expression, + STATE(3591), 1, + sym__signed_unary_expression, + STATE(3713), 1, + sym_member_expression, + STATE(13112), 1, + sym__callable_expression, + ACTIONS(13069), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16739), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3582), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [169138] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1131), 1, + anon_sym_PLUS, + ACTIONS(1133), 1, + anon_sym_DASH, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1161), 1, + aux_sym_unary_expression_token1, + ACTIONS(1171), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16743), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16745), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2285), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [169227] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16747), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16749), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3091), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [169316] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12225), 1, + aux_sym_unary_expression_token1, + ACTIONS(13331), 1, + sym_identifier, + ACTIONS(13333), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13335), 1, + anon_sym_DOT, + ACTIONS(13337), 1, + anon_sym_BANG, + ACTIONS(13339), 1, + anon_sym_LPAREN, + ACTIONS(13341), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13343), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13345), 1, + anon_sym_PLUS, + ACTIONS(13347), 1, + anon_sym_DASH, + ACTIONS(13349), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13351), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13359), 1, + anon_sym_POUND, + STATE(2713), 1, + sym_call_expression, + STATE(3190), 1, + sym__signed_unary_expression, + STATE(3351), 1, + sym_member_expression, + STATE(13359), 1, + sym__callable_expression, + ACTIONS(13355), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3002), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16751), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16753), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3271), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [169405] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16755), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16757), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3107), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [169494] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12225), 1, + aux_sym_unary_expression_token1, + ACTIONS(13331), 1, + sym_identifier, + ACTIONS(13333), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13335), 1, + anon_sym_DOT, + ACTIONS(13337), 1, + anon_sym_BANG, + ACTIONS(13339), 1, + anon_sym_LPAREN, + ACTIONS(13341), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13343), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13345), 1, + anon_sym_PLUS, + ACTIONS(13347), 1, + anon_sym_DASH, + ACTIONS(13349), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13351), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13359), 1, + anon_sym_POUND, + STATE(2713), 1, + sym_call_expression, + STATE(3190), 1, + sym__signed_unary_expression, + STATE(3351), 1, + sym_member_expression, + STATE(13359), 1, + sym__callable_expression, + ACTIONS(13355), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3002), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16759), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16761), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3276), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [169583] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12225), 1, + aux_sym_unary_expression_token1, + ACTIONS(13331), 1, + sym_identifier, + ACTIONS(13333), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13335), 1, + anon_sym_DOT, + ACTIONS(13337), 1, + anon_sym_BANG, + ACTIONS(13339), 1, + anon_sym_LPAREN, + ACTIONS(13341), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13343), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13345), 1, + anon_sym_PLUS, + ACTIONS(13347), 1, + anon_sym_DASH, + ACTIONS(13349), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13351), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13359), 1, + anon_sym_POUND, + STATE(2713), 1, + sym_call_expression, + STATE(3190), 1, + sym__signed_unary_expression, + STATE(3351), 1, + sym_member_expression, + STATE(13359), 1, + sym__callable_expression, + ACTIONS(13355), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3002), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16763), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16765), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3334), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [169672] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12225), 1, + aux_sym_unary_expression_token1, + ACTIONS(13331), 1, + sym_identifier, + ACTIONS(13333), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13335), 1, + anon_sym_DOT, + ACTIONS(13337), 1, + anon_sym_BANG, + ACTIONS(13339), 1, + anon_sym_LPAREN, + ACTIONS(13341), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13343), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13345), 1, + anon_sym_PLUS, + ACTIONS(13347), 1, + anon_sym_DASH, + ACTIONS(13349), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13351), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13359), 1, + anon_sym_POUND, + STATE(2713), 1, + sym_call_expression, + STATE(3190), 1, + sym__signed_unary_expression, + STATE(3351), 1, + sym_member_expression, + STATE(13359), 1, + sym__callable_expression, + ACTIONS(13355), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3002), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16767), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16769), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3335), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [169761] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12225), 1, + aux_sym_unary_expression_token1, + ACTIONS(13331), 1, + sym_identifier, + ACTIONS(13333), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13335), 1, + anon_sym_DOT, + ACTIONS(13337), 1, + anon_sym_BANG, + ACTIONS(13339), 1, + anon_sym_LPAREN, + ACTIONS(13341), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13343), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13345), 1, + anon_sym_PLUS, + ACTIONS(13347), 1, + anon_sym_DASH, + ACTIONS(13349), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13351), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13359), 1, + anon_sym_POUND, + STATE(2713), 1, + sym_call_expression, + STATE(3190), 1, + sym__signed_unary_expression, + STATE(3351), 1, + sym_member_expression, + STATE(13359), 1, + sym__callable_expression, + ACTIONS(13355), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3002), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16771), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16773), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3336), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [169850] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12225), 1, + aux_sym_unary_expression_token1, + ACTIONS(13331), 1, + sym_identifier, + ACTIONS(13333), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13335), 1, + anon_sym_DOT, + ACTIONS(13337), 1, + anon_sym_BANG, + ACTIONS(13339), 1, + anon_sym_LPAREN, + ACTIONS(13341), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13343), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13345), 1, + anon_sym_PLUS, + ACTIONS(13347), 1, + anon_sym_DASH, + ACTIONS(13349), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13351), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13359), 1, + anon_sym_POUND, + STATE(2713), 1, + sym_call_expression, + STATE(3190), 1, + sym__signed_unary_expression, + STATE(3351), 1, + sym_member_expression, + STATE(13359), 1, + sym__callable_expression, + ACTIONS(13355), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3002), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16775), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16777), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3337), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [169939] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12225), 1, + aux_sym_unary_expression_token1, + ACTIONS(13331), 1, + sym_identifier, + ACTIONS(13333), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13335), 1, + anon_sym_DOT, + ACTIONS(13337), 1, + anon_sym_BANG, + ACTIONS(13339), 1, + anon_sym_LPAREN, + ACTIONS(13341), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13343), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13345), 1, + anon_sym_PLUS, + ACTIONS(13347), 1, + anon_sym_DASH, + ACTIONS(13349), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13351), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13359), 1, + anon_sym_POUND, + STATE(2713), 1, + sym_call_expression, + STATE(3190), 1, + sym__signed_unary_expression, + STATE(3351), 1, + sym_member_expression, + STATE(13359), 1, + sym__callable_expression, + ACTIONS(13355), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3002), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16779), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16781), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3338), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [170028] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12225), 1, + aux_sym_unary_expression_token1, + ACTIONS(13331), 1, + sym_identifier, + ACTIONS(13333), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13335), 1, + anon_sym_DOT, + ACTIONS(13337), 1, + anon_sym_BANG, + ACTIONS(13339), 1, + anon_sym_LPAREN, + ACTIONS(13341), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13343), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13345), 1, + anon_sym_PLUS, + ACTIONS(13347), 1, + anon_sym_DASH, + ACTIONS(13349), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13351), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13359), 1, + anon_sym_POUND, + STATE(2713), 1, + sym_call_expression, + STATE(3190), 1, + sym__signed_unary_expression, + STATE(3351), 1, + sym_member_expression, + STATE(13359), 1, + sym__callable_expression, + ACTIONS(13355), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3002), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16783), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16785), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3339), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [170117] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12225), 1, + aux_sym_unary_expression_token1, + ACTIONS(13331), 1, + sym_identifier, + ACTIONS(13333), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13335), 1, + anon_sym_DOT, + ACTIONS(13337), 1, + anon_sym_BANG, + ACTIONS(13339), 1, + anon_sym_LPAREN, + ACTIONS(13341), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13343), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13345), 1, + anon_sym_PLUS, + ACTIONS(13347), 1, + anon_sym_DASH, + ACTIONS(13349), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13351), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13359), 1, + anon_sym_POUND, + STATE(2713), 1, + sym_call_expression, + STATE(3190), 1, + sym__signed_unary_expression, + STATE(3351), 1, + sym_member_expression, + STATE(13359), 1, + sym__callable_expression, + ACTIONS(13355), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3002), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16787), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16789), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3340), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [170206] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12225), 1, + aux_sym_unary_expression_token1, + ACTIONS(13331), 1, + sym_identifier, + ACTIONS(13333), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13335), 1, + anon_sym_DOT, + ACTIONS(13337), 1, + anon_sym_BANG, + ACTIONS(13339), 1, + anon_sym_LPAREN, + ACTIONS(13341), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13343), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13345), 1, + anon_sym_PLUS, + ACTIONS(13347), 1, + anon_sym_DASH, + ACTIONS(13349), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13351), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13359), 1, + anon_sym_POUND, + STATE(2713), 1, + sym_call_expression, + STATE(3190), 1, + sym__signed_unary_expression, + STATE(3351), 1, + sym_member_expression, + STATE(13359), 1, + sym__callable_expression, + ACTIONS(13355), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3002), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16791), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16793), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3341), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [170295] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12225), 1, + aux_sym_unary_expression_token1, + ACTIONS(13331), 1, + sym_identifier, + ACTIONS(13333), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13335), 1, + anon_sym_DOT, + ACTIONS(13337), 1, + anon_sym_BANG, + ACTIONS(13339), 1, + anon_sym_LPAREN, + ACTIONS(13341), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13343), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13345), 1, + anon_sym_PLUS, + ACTIONS(13347), 1, + anon_sym_DASH, + ACTIONS(13349), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13351), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13359), 1, + anon_sym_POUND, + STATE(2713), 1, + sym_call_expression, + STATE(3190), 1, + sym__signed_unary_expression, + STATE(3351), 1, + sym_member_expression, + STATE(13359), 1, + sym__callable_expression, + ACTIONS(13355), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3002), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16795), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16797), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3342), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [170384] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12225), 1, + aux_sym_unary_expression_token1, + ACTIONS(13331), 1, + sym_identifier, + ACTIONS(13333), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13335), 1, + anon_sym_DOT, + ACTIONS(13337), 1, + anon_sym_BANG, + ACTIONS(13339), 1, + anon_sym_LPAREN, + ACTIONS(13341), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13343), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13345), 1, + anon_sym_PLUS, + ACTIONS(13347), 1, + anon_sym_DASH, + ACTIONS(13349), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13351), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13359), 1, + anon_sym_POUND, + STATE(2713), 1, + sym_call_expression, + STATE(3190), 1, + sym__signed_unary_expression, + STATE(3351), 1, + sym_member_expression, + STATE(13359), 1, + sym__callable_expression, + ACTIONS(13355), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3002), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16799), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16801), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3343), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [170473] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12225), 1, + aux_sym_unary_expression_token1, + ACTIONS(13331), 1, + sym_identifier, + ACTIONS(13333), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13335), 1, + anon_sym_DOT, + ACTIONS(13337), 1, + anon_sym_BANG, + ACTIONS(13339), 1, + anon_sym_LPAREN, + ACTIONS(13341), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13343), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13345), 1, + anon_sym_PLUS, + ACTIONS(13347), 1, + anon_sym_DASH, + ACTIONS(13349), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13351), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13359), 1, + anon_sym_POUND, + STATE(2713), 1, + sym_call_expression, + STATE(3190), 1, + sym__signed_unary_expression, + STATE(3351), 1, + sym_member_expression, + STATE(13359), 1, + sym__callable_expression, + ACTIONS(13355), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3002), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16803), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16805), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3344), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [170562] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12115), 1, + sym_identifier, + ACTIONS(12117), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12119), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12121), 1, + anon_sym_PLUS, + ACTIONS(12123), 1, + anon_sym_DASH, + ACTIONS(12125), 1, + aux_sym_unary_expression_token1, + ACTIONS(12131), 1, + anon_sym_POUND, + STATE(10141), 1, + sym_call_expression, + STATE(10159), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16807), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16809), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10289), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [170651] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16811), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16813), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3108), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [170740] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12045), 1, + sym_identifier, + ACTIONS(12047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12059), 1, + anon_sym_PLUS, + ACTIONS(12061), 1, + anon_sym_DASH, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12075), 1, + anon_sym_POUND, + ACTIONS(12269), 1, + aux_sym_unary_expression_token1, + STATE(10141), 1, + sym_call_expression, + STATE(10150), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16815), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16817), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10211), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [170829] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16819), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16821), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3110), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [170918] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12045), 1, + sym_identifier, + ACTIONS(12047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12059), 1, + anon_sym_PLUS, + ACTIONS(12061), 1, + anon_sym_DASH, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12075), 1, + anon_sym_POUND, + ACTIONS(12269), 1, + aux_sym_unary_expression_token1, + STATE(10141), 1, + sym_call_expression, + STATE(10150), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16823), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16825), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10213), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [171007] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12045), 1, + sym_identifier, + ACTIONS(12047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12059), 1, + anon_sym_PLUS, + ACTIONS(12061), 1, + anon_sym_DASH, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12075), 1, + anon_sym_POUND, + ACTIONS(12269), 1, + aux_sym_unary_expression_token1, + STATE(10141), 1, + sym_call_expression, + STATE(10150), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16827), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16829), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10214), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [171096] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12045), 1, + sym_identifier, + ACTIONS(12047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12059), 1, + anon_sym_PLUS, + ACTIONS(12061), 1, + anon_sym_DASH, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12075), 1, + anon_sym_POUND, + ACTIONS(12269), 1, + aux_sym_unary_expression_token1, + STATE(10141), 1, + sym_call_expression, + STATE(10150), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16831), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16833), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10215), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [171185] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12045), 1, + sym_identifier, + ACTIONS(12047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12059), 1, + anon_sym_PLUS, + ACTIONS(12061), 1, + anon_sym_DASH, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12075), 1, + anon_sym_POUND, + ACTIONS(12269), 1, + aux_sym_unary_expression_token1, + STATE(10141), 1, + sym_call_expression, + STATE(10150), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16835), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16837), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10206), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [171274] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12045), 1, + sym_identifier, + ACTIONS(12047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12059), 1, + anon_sym_PLUS, + ACTIONS(12061), 1, + anon_sym_DASH, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12075), 1, + anon_sym_POUND, + ACTIONS(12269), 1, + aux_sym_unary_expression_token1, + STATE(10141), 1, + sym_call_expression, + STATE(10150), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16839), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16841), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10216), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [171363] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12045), 1, + sym_identifier, + ACTIONS(12047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12059), 1, + anon_sym_PLUS, + ACTIONS(12061), 1, + anon_sym_DASH, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12075), 1, + anon_sym_POUND, + ACTIONS(12269), 1, + aux_sym_unary_expression_token1, + STATE(10141), 1, + sym_call_expression, + STATE(10150), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16843), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16845), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10217), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [171452] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12045), 1, + sym_identifier, + ACTIONS(12047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12059), 1, + anon_sym_PLUS, + ACTIONS(12061), 1, + anon_sym_DASH, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12075), 1, + anon_sym_POUND, + ACTIONS(12269), 1, + aux_sym_unary_expression_token1, + STATE(10141), 1, + sym_call_expression, + STATE(10150), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16847), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16849), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10218), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [171541] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12045), 1, + sym_identifier, + ACTIONS(12047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12059), 1, + anon_sym_PLUS, + ACTIONS(12061), 1, + anon_sym_DASH, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12075), 1, + anon_sym_POUND, + ACTIONS(12269), 1, + aux_sym_unary_expression_token1, + STATE(10141), 1, + sym_call_expression, + STATE(10150), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16851), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16853), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10219), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [171630] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12045), 1, + sym_identifier, + ACTIONS(12047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12059), 1, + anon_sym_PLUS, + ACTIONS(12061), 1, + anon_sym_DASH, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12075), 1, + anon_sym_POUND, + ACTIONS(12269), 1, + aux_sym_unary_expression_token1, + STATE(10141), 1, + sym_call_expression, + STATE(10150), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16855), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16857), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10220), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [171719] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12045), 1, + sym_identifier, + ACTIONS(12047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12059), 1, + anon_sym_PLUS, + ACTIONS(12061), 1, + anon_sym_DASH, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12075), 1, + anon_sym_POUND, + ACTIONS(12269), 1, + aux_sym_unary_expression_token1, + STATE(10141), 1, + sym_call_expression, + STATE(10150), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16859), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16861), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10221), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [171808] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12045), 1, + sym_identifier, + ACTIONS(12047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12059), 1, + anon_sym_PLUS, + ACTIONS(12061), 1, + anon_sym_DASH, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12075), 1, + anon_sym_POUND, + ACTIONS(12269), 1, + aux_sym_unary_expression_token1, + STATE(10141), 1, + sym_call_expression, + STATE(10150), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16863), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16865), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10222), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [171897] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12045), 1, + sym_identifier, + ACTIONS(12047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12059), 1, + anon_sym_PLUS, + ACTIONS(12061), 1, + anon_sym_DASH, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12075), 1, + anon_sym_POUND, + ACTIONS(12269), 1, + aux_sym_unary_expression_token1, + STATE(10141), 1, + sym_call_expression, + STATE(10150), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16867), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16869), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10223), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [171986] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12165), 1, + aux_sym_unary_expression_token1, + ACTIONS(13239), 1, + sym_identifier, + ACTIONS(13241), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13243), 1, + anon_sym_DOT, + ACTIONS(13245), 1, + anon_sym_BANG, + ACTIONS(13247), 1, + anon_sym_LPAREN, + ACTIONS(13249), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13251), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13253), 1, + anon_sym_PLUS, + ACTIONS(13255), 1, + anon_sym_DASH, + ACTIONS(13257), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13259), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13267), 1, + anon_sym_POUND, + STATE(2664), 1, + sym_call_expression, + STATE(3077), 1, + sym__signed_unary_expression, + STATE(3298), 1, + sym_member_expression, + STATE(13262), 1, + sym__callable_expression, + ACTIONS(13263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2931), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16871), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16873), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3414), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [172075] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16875), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16877), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3134), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [172164] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12079), 1, + sym_identifier, + ACTIONS(12081), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12083), 1, + anon_sym_DOT, + ACTIONS(12085), 1, + anon_sym_BANG, + ACTIONS(12087), 1, + anon_sym_LPAREN, + ACTIONS(12089), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12091), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12093), 1, + anon_sym_PLUS, + ACTIONS(12095), 1, + anon_sym_DASH, + ACTIONS(12097), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12099), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12109), 1, + anon_sym_POUND, + ACTIONS(12347), 1, + aux_sym_unary_expression_token1, + STATE(436), 1, + sym_call_expression, + STATE(476), 1, + sym_member_expression, + STATE(562), 1, + sym__signed_unary_expression, + STATE(13465), 1, + sym__callable_expression, + ACTIONS(12105), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(493), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16879), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16881), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(557), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [172253] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12079), 1, + sym_identifier, + ACTIONS(12081), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12083), 1, + anon_sym_DOT, + ACTIONS(12085), 1, + anon_sym_BANG, + ACTIONS(12087), 1, + anon_sym_LPAREN, + ACTIONS(12089), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12091), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12093), 1, + anon_sym_PLUS, + ACTIONS(12095), 1, + anon_sym_DASH, + ACTIONS(12097), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12099), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12109), 1, + anon_sym_POUND, + ACTIONS(12347), 1, + aux_sym_unary_expression_token1, + STATE(436), 1, + sym_call_expression, + STATE(476), 1, + sym_member_expression, + STATE(562), 1, + sym__signed_unary_expression, + STATE(13465), 1, + sym__callable_expression, + ACTIONS(12105), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(493), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16883), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16885), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(558), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [172342] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12079), 1, + sym_identifier, + ACTIONS(12081), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12083), 1, + anon_sym_DOT, + ACTIONS(12085), 1, + anon_sym_BANG, + ACTIONS(12087), 1, + anon_sym_LPAREN, + ACTIONS(12089), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12091), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12093), 1, + anon_sym_PLUS, + ACTIONS(12095), 1, + anon_sym_DASH, + ACTIONS(12097), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12099), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12109), 1, + anon_sym_POUND, + ACTIONS(12347), 1, + aux_sym_unary_expression_token1, + STATE(436), 1, + sym_call_expression, + STATE(476), 1, + sym_member_expression, + STATE(562), 1, + sym__signed_unary_expression, + STATE(13465), 1, + sym__callable_expression, + ACTIONS(12105), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(493), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16887), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16889), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(566), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [172431] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12079), 1, + sym_identifier, + ACTIONS(12081), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12083), 1, + anon_sym_DOT, + ACTIONS(12085), 1, + anon_sym_BANG, + ACTIONS(12087), 1, + anon_sym_LPAREN, + ACTIONS(12089), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12091), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12093), 1, + anon_sym_PLUS, + ACTIONS(12095), 1, + anon_sym_DASH, + ACTIONS(12097), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12099), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12109), 1, + anon_sym_POUND, + ACTIONS(12347), 1, + aux_sym_unary_expression_token1, + STATE(436), 1, + sym_call_expression, + STATE(476), 1, + sym_member_expression, + STATE(562), 1, + sym__signed_unary_expression, + STATE(13465), 1, + sym__callable_expression, + ACTIONS(12105), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(493), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16891), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16893), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(568), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [172520] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12079), 1, + sym_identifier, + ACTIONS(12081), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12083), 1, + anon_sym_DOT, + ACTIONS(12085), 1, + anon_sym_BANG, + ACTIONS(12087), 1, + anon_sym_LPAREN, + ACTIONS(12089), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12091), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12093), 1, + anon_sym_PLUS, + ACTIONS(12095), 1, + anon_sym_DASH, + ACTIONS(12097), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12099), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12109), 1, + anon_sym_POUND, + ACTIONS(12347), 1, + aux_sym_unary_expression_token1, + STATE(436), 1, + sym_call_expression, + STATE(476), 1, + sym_member_expression, + STATE(562), 1, + sym__signed_unary_expression, + STATE(13465), 1, + sym__callable_expression, + ACTIONS(12105), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(493), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16895), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16897), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(571), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [172609] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12079), 1, + sym_identifier, + ACTIONS(12081), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12083), 1, + anon_sym_DOT, + ACTIONS(12085), 1, + anon_sym_BANG, + ACTIONS(12087), 1, + anon_sym_LPAREN, + ACTIONS(12089), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12091), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12093), 1, + anon_sym_PLUS, + ACTIONS(12095), 1, + anon_sym_DASH, + ACTIONS(12097), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12099), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12109), 1, + anon_sym_POUND, + ACTIONS(12347), 1, + aux_sym_unary_expression_token1, + STATE(436), 1, + sym_call_expression, + STATE(476), 1, + sym_member_expression, + STATE(562), 1, + sym__signed_unary_expression, + STATE(13465), 1, + sym__callable_expression, + ACTIONS(12105), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(493), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16899), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16901), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(521), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [172698] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12079), 1, + sym_identifier, + ACTIONS(12081), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12083), 1, + anon_sym_DOT, + ACTIONS(12085), 1, + anon_sym_BANG, + ACTIONS(12087), 1, + anon_sym_LPAREN, + ACTIONS(12089), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12091), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12093), 1, + anon_sym_PLUS, + ACTIONS(12095), 1, + anon_sym_DASH, + ACTIONS(12097), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12099), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12109), 1, + anon_sym_POUND, + ACTIONS(12347), 1, + aux_sym_unary_expression_token1, + STATE(436), 1, + sym_call_expression, + STATE(476), 1, + sym_member_expression, + STATE(562), 1, + sym__signed_unary_expression, + STATE(13465), 1, + sym__callable_expression, + ACTIONS(12105), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(493), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16903), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16905), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(522), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [172787] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12079), 1, + sym_identifier, + ACTIONS(12081), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12083), 1, + anon_sym_DOT, + ACTIONS(12085), 1, + anon_sym_BANG, + ACTIONS(12087), 1, + anon_sym_LPAREN, + ACTIONS(12089), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12091), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12093), 1, + anon_sym_PLUS, + ACTIONS(12095), 1, + anon_sym_DASH, + ACTIONS(12097), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12099), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12109), 1, + anon_sym_POUND, + ACTIONS(12347), 1, + aux_sym_unary_expression_token1, + STATE(436), 1, + sym_call_expression, + STATE(476), 1, + sym_member_expression, + STATE(562), 1, + sym__signed_unary_expression, + STATE(13465), 1, + sym__callable_expression, + ACTIONS(12105), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(493), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16907), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16909), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(467), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [172876] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12079), 1, + sym_identifier, + ACTIONS(12081), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12083), 1, + anon_sym_DOT, + ACTIONS(12085), 1, + anon_sym_BANG, + ACTIONS(12087), 1, + anon_sym_LPAREN, + ACTIONS(12089), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12091), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12093), 1, + anon_sym_PLUS, + ACTIONS(12095), 1, + anon_sym_DASH, + ACTIONS(12097), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12099), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12109), 1, + anon_sym_POUND, + ACTIONS(12347), 1, + aux_sym_unary_expression_token1, + STATE(436), 1, + sym_call_expression, + STATE(476), 1, + sym_member_expression, + STATE(562), 1, + sym__signed_unary_expression, + STATE(13465), 1, + sym__callable_expression, + ACTIONS(12105), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(493), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(468), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [172965] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12079), 1, + sym_identifier, + ACTIONS(12081), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12083), 1, + anon_sym_DOT, + ACTIONS(12085), 1, + anon_sym_BANG, + ACTIONS(12087), 1, + anon_sym_LPAREN, + ACTIONS(12089), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12091), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12093), 1, + anon_sym_PLUS, + ACTIONS(12095), 1, + anon_sym_DASH, + ACTIONS(12097), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12099), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12109), 1, + anon_sym_POUND, + ACTIONS(12347), 1, + aux_sym_unary_expression_token1, + STATE(436), 1, + sym_call_expression, + STATE(476), 1, + sym_member_expression, + STATE(562), 1, + sym__signed_unary_expression, + STATE(13465), 1, + sym__callable_expression, + ACTIONS(12105), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(493), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16915), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16917), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(469), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [173054] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12079), 1, + sym_identifier, + ACTIONS(12081), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12083), 1, + anon_sym_DOT, + ACTIONS(12085), 1, + anon_sym_BANG, + ACTIONS(12087), 1, + anon_sym_LPAREN, + ACTIONS(12089), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12091), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12093), 1, + anon_sym_PLUS, + ACTIONS(12095), 1, + anon_sym_DASH, + ACTIONS(12097), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12099), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12109), 1, + anon_sym_POUND, + ACTIONS(12347), 1, + aux_sym_unary_expression_token1, + STATE(436), 1, + sym_call_expression, + STATE(476), 1, + sym_member_expression, + STATE(562), 1, + sym__signed_unary_expression, + STATE(13465), 1, + sym__callable_expression, + ACTIONS(12105), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(493), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16919), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16921), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(470), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [173143] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12079), 1, + sym_identifier, + ACTIONS(12081), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12083), 1, + anon_sym_DOT, + ACTIONS(12085), 1, + anon_sym_BANG, + ACTIONS(12087), 1, + anon_sym_LPAREN, + ACTIONS(12089), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12091), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12093), 1, + anon_sym_PLUS, + ACTIONS(12095), 1, + anon_sym_DASH, + ACTIONS(12097), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12099), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12109), 1, + anon_sym_POUND, + ACTIONS(12347), 1, + aux_sym_unary_expression_token1, + STATE(436), 1, + sym_call_expression, + STATE(476), 1, + sym_member_expression, + STATE(562), 1, + sym__signed_unary_expression, + STATE(13465), 1, + sym__callable_expression, + ACTIONS(12105), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(493), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16923), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(471), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [173232] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12079), 1, + sym_identifier, + ACTIONS(12081), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12083), 1, + anon_sym_DOT, + ACTIONS(12085), 1, + anon_sym_BANG, + ACTIONS(12087), 1, + anon_sym_LPAREN, + ACTIONS(12089), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12091), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12093), 1, + anon_sym_PLUS, + ACTIONS(12095), 1, + anon_sym_DASH, + ACTIONS(12097), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12099), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12109), 1, + anon_sym_POUND, + ACTIONS(12347), 1, + aux_sym_unary_expression_token1, + STATE(436), 1, + sym_call_expression, + STATE(476), 1, + sym_member_expression, + STATE(562), 1, + sym__signed_unary_expression, + STATE(13465), 1, + sym__callable_expression, + ACTIONS(12105), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(493), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16927), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16929), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(472), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [173321] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4717), 1, + anon_sym_BANG, + ACTIONS(4725), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4727), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4729), 1, + anon_sym_PLUS, + ACTIONS(4731), 1, + anon_sym_DASH, + ACTIONS(4733), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4735), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4743), 1, + anon_sym_POUND, + ACTIONS(4953), 1, + anon_sym_LPAREN, + ACTIONS(11715), 1, + sym_identifier, + ACTIONS(11717), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12177), 1, + aux_sym_unary_expression_token1, + STATE(1031), 1, + sym_call_expression, + STATE(1113), 1, + sym__signed_unary_expression, + STATE(1419), 1, + sym_member_expression, + STATE(13583), 1, + sym__callable_expression, + ACTIONS(4739), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16931), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16933), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1165), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [173410] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16935), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16937), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3135), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [173499] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12499), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14159), 1, + anon_sym_PLUS, + ACTIONS(14161), 1, + anon_sym_DASH, + ACTIONS(14167), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16939), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16941), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7393), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [173588] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16943), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16945), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3136), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [173677] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12143), 1, + sym_identifier, + ACTIONS(12145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12147), 1, + anon_sym_DOT, + ACTIONS(12149), 1, + anon_sym_BANG, + ACTIONS(12151), 1, + anon_sym_LPAREN, + ACTIONS(12153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12157), 1, + anon_sym_PLUS, + ACTIONS(12159), 1, + anon_sym_DASH, + ACTIONS(12161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12173), 1, + anon_sym_POUND, + ACTIONS(12423), 1, + aux_sym_unary_expression_token1, + STATE(1268), 1, + sym_call_expression, + STATE(1483), 1, + sym_member_expression, + STATE(1490), 1, + sym__signed_unary_expression, + STATE(13614), 1, + sym__callable_expression, + ACTIONS(12169), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1528), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16947), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16949), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1991), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [173766] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12143), 1, + sym_identifier, + ACTIONS(12145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12147), 1, + anon_sym_DOT, + ACTIONS(12149), 1, + anon_sym_BANG, + ACTIONS(12151), 1, + anon_sym_LPAREN, + ACTIONS(12153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12157), 1, + anon_sym_PLUS, + ACTIONS(12159), 1, + anon_sym_DASH, + ACTIONS(12161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12173), 1, + anon_sym_POUND, + ACTIONS(12423), 1, + aux_sym_unary_expression_token1, + STATE(1268), 1, + sym_call_expression, + STATE(1483), 1, + sym_member_expression, + STATE(1490), 1, + sym__signed_unary_expression, + STATE(13614), 1, + sym__callable_expression, + ACTIONS(12169), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1528), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16951), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16953), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1466), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [173855] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12143), 1, + sym_identifier, + ACTIONS(12145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12147), 1, + anon_sym_DOT, + ACTIONS(12149), 1, + anon_sym_BANG, + ACTIONS(12151), 1, + anon_sym_LPAREN, + ACTIONS(12153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12157), 1, + anon_sym_PLUS, + ACTIONS(12159), 1, + anon_sym_DASH, + ACTIONS(12161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12173), 1, + anon_sym_POUND, + ACTIONS(12423), 1, + aux_sym_unary_expression_token1, + STATE(1268), 1, + sym_call_expression, + STATE(1483), 1, + sym_member_expression, + STATE(1490), 1, + sym__signed_unary_expression, + STATE(13614), 1, + sym__callable_expression, + ACTIONS(12169), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1528), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16955), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16957), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1467), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [173944] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12143), 1, + sym_identifier, + ACTIONS(12145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12147), 1, + anon_sym_DOT, + ACTIONS(12149), 1, + anon_sym_BANG, + ACTIONS(12151), 1, + anon_sym_LPAREN, + ACTIONS(12153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12157), 1, + anon_sym_PLUS, + ACTIONS(12159), 1, + anon_sym_DASH, + ACTIONS(12161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12173), 1, + anon_sym_POUND, + ACTIONS(12423), 1, + aux_sym_unary_expression_token1, + STATE(1268), 1, + sym_call_expression, + STATE(1483), 1, + sym_member_expression, + STATE(1490), 1, + sym__signed_unary_expression, + STATE(13614), 1, + sym__callable_expression, + ACTIONS(12169), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1528), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16959), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16961), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1468), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [174033] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12143), 1, + sym_identifier, + ACTIONS(12145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12147), 1, + anon_sym_DOT, + ACTIONS(12149), 1, + anon_sym_BANG, + ACTIONS(12151), 1, + anon_sym_LPAREN, + ACTIONS(12153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12157), 1, + anon_sym_PLUS, + ACTIONS(12159), 1, + anon_sym_DASH, + ACTIONS(12161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12173), 1, + anon_sym_POUND, + ACTIONS(12423), 1, + aux_sym_unary_expression_token1, + STATE(1268), 1, + sym_call_expression, + STATE(1483), 1, + sym_member_expression, + STATE(1490), 1, + sym__signed_unary_expression, + STATE(13614), 1, + sym__callable_expression, + ACTIONS(12169), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1528), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16963), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16965), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1469), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [174122] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12143), 1, + sym_identifier, + ACTIONS(12145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12147), 1, + anon_sym_DOT, + ACTIONS(12149), 1, + anon_sym_BANG, + ACTIONS(12151), 1, + anon_sym_LPAREN, + ACTIONS(12153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12157), 1, + anon_sym_PLUS, + ACTIONS(12159), 1, + anon_sym_DASH, + ACTIONS(12161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12173), 1, + anon_sym_POUND, + ACTIONS(12423), 1, + aux_sym_unary_expression_token1, + STATE(1268), 1, + sym_call_expression, + STATE(1483), 1, + sym_member_expression, + STATE(1490), 1, + sym__signed_unary_expression, + STATE(13614), 1, + sym__callable_expression, + ACTIONS(12169), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1528), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16967), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16969), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1470), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [174211] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12143), 1, + sym_identifier, + ACTIONS(12145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12147), 1, + anon_sym_DOT, + ACTIONS(12149), 1, + anon_sym_BANG, + ACTIONS(12151), 1, + anon_sym_LPAREN, + ACTIONS(12153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12157), 1, + anon_sym_PLUS, + ACTIONS(12159), 1, + anon_sym_DASH, + ACTIONS(12161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12173), 1, + anon_sym_POUND, + ACTIONS(12423), 1, + aux_sym_unary_expression_token1, + STATE(1268), 1, + sym_call_expression, + STATE(1483), 1, + sym_member_expression, + STATE(1490), 1, + sym__signed_unary_expression, + STATE(13614), 1, + sym__callable_expression, + ACTIONS(12169), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1528), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16971), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16973), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1471), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [174300] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12143), 1, + sym_identifier, + ACTIONS(12145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12147), 1, + anon_sym_DOT, + ACTIONS(12149), 1, + anon_sym_BANG, + ACTIONS(12151), 1, + anon_sym_LPAREN, + ACTIONS(12153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12157), 1, + anon_sym_PLUS, + ACTIONS(12159), 1, + anon_sym_DASH, + ACTIONS(12161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12173), 1, + anon_sym_POUND, + ACTIONS(12423), 1, + aux_sym_unary_expression_token1, + STATE(1268), 1, + sym_call_expression, + STATE(1483), 1, + sym_member_expression, + STATE(1490), 1, + sym__signed_unary_expression, + STATE(13614), 1, + sym__callable_expression, + ACTIONS(12169), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1528), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16975), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16977), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1472), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [174389] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12143), 1, + sym_identifier, + ACTIONS(12145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12147), 1, + anon_sym_DOT, + ACTIONS(12149), 1, + anon_sym_BANG, + ACTIONS(12151), 1, + anon_sym_LPAREN, + ACTIONS(12153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12157), 1, + anon_sym_PLUS, + ACTIONS(12159), 1, + anon_sym_DASH, + ACTIONS(12161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12173), 1, + anon_sym_POUND, + ACTIONS(12423), 1, + aux_sym_unary_expression_token1, + STATE(1268), 1, + sym_call_expression, + STATE(1483), 1, + sym_member_expression, + STATE(1490), 1, + sym__signed_unary_expression, + STATE(13614), 1, + sym__callable_expression, + ACTIONS(12169), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1528), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16979), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16981), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1473), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [174478] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12143), 1, + sym_identifier, + ACTIONS(12145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12147), 1, + anon_sym_DOT, + ACTIONS(12149), 1, + anon_sym_BANG, + ACTIONS(12151), 1, + anon_sym_LPAREN, + ACTIONS(12153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12157), 1, + anon_sym_PLUS, + ACTIONS(12159), 1, + anon_sym_DASH, + ACTIONS(12161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12173), 1, + anon_sym_POUND, + ACTIONS(12423), 1, + aux_sym_unary_expression_token1, + STATE(1268), 1, + sym_call_expression, + STATE(1483), 1, + sym_member_expression, + STATE(1490), 1, + sym__signed_unary_expression, + STATE(13614), 1, + sym__callable_expression, + ACTIONS(12169), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1528), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16983), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16985), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1474), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [174567] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12143), 1, + sym_identifier, + ACTIONS(12145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12147), 1, + anon_sym_DOT, + ACTIONS(12149), 1, + anon_sym_BANG, + ACTIONS(12151), 1, + anon_sym_LPAREN, + ACTIONS(12153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12157), 1, + anon_sym_PLUS, + ACTIONS(12159), 1, + anon_sym_DASH, + ACTIONS(12161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12173), 1, + anon_sym_POUND, + ACTIONS(12423), 1, + aux_sym_unary_expression_token1, + STATE(1268), 1, + sym_call_expression, + STATE(1483), 1, + sym_member_expression, + STATE(1490), 1, + sym__signed_unary_expression, + STATE(13614), 1, + sym__callable_expression, + ACTIONS(12169), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1528), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16987), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16989), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1475), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [174656] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12143), 1, + sym_identifier, + ACTIONS(12145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12147), 1, + anon_sym_DOT, + ACTIONS(12149), 1, + anon_sym_BANG, + ACTIONS(12151), 1, + anon_sym_LPAREN, + ACTIONS(12153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12157), 1, + anon_sym_PLUS, + ACTIONS(12159), 1, + anon_sym_DASH, + ACTIONS(12161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12173), 1, + anon_sym_POUND, + ACTIONS(12423), 1, + aux_sym_unary_expression_token1, + STATE(1268), 1, + sym_call_expression, + STATE(1483), 1, + sym_member_expression, + STATE(1490), 1, + sym__signed_unary_expression, + STATE(13614), 1, + sym__callable_expression, + ACTIONS(12169), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1528), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16991), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16993), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1476), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [174745] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12207), 1, + aux_sym_unary_expression_token1, + ACTIONS(13045), 1, + sym_identifier, + ACTIONS(13047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13049), 1, + anon_sym_DOT, + ACTIONS(13051), 1, + anon_sym_BANG, + ACTIONS(13053), 1, + anon_sym_LPAREN, + ACTIONS(13055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13059), 1, + anon_sym_PLUS, + ACTIONS(13061), 1, + anon_sym_DASH, + ACTIONS(13063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13073), 1, + anon_sym_POUND, + STATE(3220), 1, + sym_call_expression, + STATE(3591), 1, + sym__signed_unary_expression, + STATE(3713), 1, + sym_member_expression, + STATE(13112), 1, + sym__callable_expression, + ACTIONS(13069), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16995), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(16997), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3496), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [174834] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11899), 1, + aux_sym_unary_expression_token1, + ACTIONS(13673), 1, + sym_identifier, + ACTIONS(13675), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13683), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13687), 1, + anon_sym_PLUS, + ACTIONS(13689), 1, + anon_sym_DASH, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13701), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(7380), 1, + sym_member_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(16999), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17001), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7408), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [174923] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12143), 1, + sym_identifier, + ACTIONS(12145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12147), 1, + anon_sym_DOT, + ACTIONS(12149), 1, + anon_sym_BANG, + ACTIONS(12151), 1, + anon_sym_LPAREN, + ACTIONS(12153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12157), 1, + anon_sym_PLUS, + ACTIONS(12159), 1, + anon_sym_DASH, + ACTIONS(12161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12173), 1, + anon_sym_POUND, + ACTIONS(12423), 1, + aux_sym_unary_expression_token1, + STATE(1268), 1, + sym_call_expression, + STATE(1483), 1, + sym_member_expression, + STATE(1490), 1, + sym__signed_unary_expression, + STATE(13614), 1, + sym__callable_expression, + ACTIONS(12169), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1528), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17003), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17005), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1990), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [175012] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12259), 1, + aux_sym_unary_expression_token1, + ACTIONS(13527), 1, + sym_identifier, + ACTIONS(13529), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13531), 1, + anon_sym_DOT, + ACTIONS(13533), 1, + anon_sym_BANG, + ACTIONS(13535), 1, + anon_sym_LPAREN, + ACTIONS(13537), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13539), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13541), 1, + anon_sym_PLUS, + ACTIONS(13543), 1, + anon_sym_DASH, + ACTIONS(13545), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13547), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13555), 1, + anon_sym_POUND, + STATE(2883), 1, + sym_call_expression, + STATE(2935), 1, + sym_member_expression, + STATE(3272), 1, + sym__signed_unary_expression, + STATE(13134), 1, + sym__callable_expression, + ACTIONS(13551), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3137), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17007), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17009), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3357), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [175101] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12259), 1, + aux_sym_unary_expression_token1, + ACTIONS(13527), 1, + sym_identifier, + ACTIONS(13529), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13531), 1, + anon_sym_DOT, + ACTIONS(13533), 1, + anon_sym_BANG, + ACTIONS(13535), 1, + anon_sym_LPAREN, + ACTIONS(13537), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13539), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13541), 1, + anon_sym_PLUS, + ACTIONS(13543), 1, + anon_sym_DASH, + ACTIONS(13545), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13547), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13555), 1, + anon_sym_POUND, + STATE(2883), 1, + sym_call_expression, + STATE(2935), 1, + sym_member_expression, + STATE(3272), 1, + sym__signed_unary_expression, + STATE(13134), 1, + sym__callable_expression, + ACTIONS(13551), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3137), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17011), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17013), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3398), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [175190] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12259), 1, + aux_sym_unary_expression_token1, + ACTIONS(13527), 1, + sym_identifier, + ACTIONS(13529), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13531), 1, + anon_sym_DOT, + ACTIONS(13533), 1, + anon_sym_BANG, + ACTIONS(13535), 1, + anon_sym_LPAREN, + ACTIONS(13537), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13539), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13541), 1, + anon_sym_PLUS, + ACTIONS(13543), 1, + anon_sym_DASH, + ACTIONS(13545), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13547), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13555), 1, + anon_sym_POUND, + STATE(2883), 1, + sym_call_expression, + STATE(2935), 1, + sym_member_expression, + STATE(3272), 1, + sym__signed_unary_expression, + STATE(13134), 1, + sym__callable_expression, + ACTIONS(13551), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3137), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17015), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17017), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3399), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [175279] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12259), 1, + aux_sym_unary_expression_token1, + ACTIONS(13527), 1, + sym_identifier, + ACTIONS(13529), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13531), 1, + anon_sym_DOT, + ACTIONS(13533), 1, + anon_sym_BANG, + ACTIONS(13535), 1, + anon_sym_LPAREN, + ACTIONS(13537), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13539), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13541), 1, + anon_sym_PLUS, + ACTIONS(13543), 1, + anon_sym_DASH, + ACTIONS(13545), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13547), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13555), 1, + anon_sym_POUND, + STATE(2883), 1, + sym_call_expression, + STATE(2935), 1, + sym_member_expression, + STATE(3272), 1, + sym__signed_unary_expression, + STATE(13134), 1, + sym__callable_expression, + ACTIONS(13551), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3137), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17019), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17021), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3400), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [175368] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12259), 1, + aux_sym_unary_expression_token1, + ACTIONS(13527), 1, + sym_identifier, + ACTIONS(13529), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13531), 1, + anon_sym_DOT, + ACTIONS(13533), 1, + anon_sym_BANG, + ACTIONS(13535), 1, + anon_sym_LPAREN, + ACTIONS(13537), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13539), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13541), 1, + anon_sym_PLUS, + ACTIONS(13543), 1, + anon_sym_DASH, + ACTIONS(13545), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13547), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13555), 1, + anon_sym_POUND, + STATE(2883), 1, + sym_call_expression, + STATE(2935), 1, + sym_member_expression, + STATE(3272), 1, + sym__signed_unary_expression, + STATE(13134), 1, + sym__callable_expression, + ACTIONS(13551), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3137), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17023), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17025), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3401), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [175457] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12259), 1, + aux_sym_unary_expression_token1, + ACTIONS(13527), 1, + sym_identifier, + ACTIONS(13529), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13531), 1, + anon_sym_DOT, + ACTIONS(13533), 1, + anon_sym_BANG, + ACTIONS(13535), 1, + anon_sym_LPAREN, + ACTIONS(13537), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13539), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13541), 1, + anon_sym_PLUS, + ACTIONS(13543), 1, + anon_sym_DASH, + ACTIONS(13545), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13547), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13555), 1, + anon_sym_POUND, + STATE(2883), 1, + sym_call_expression, + STATE(2935), 1, + sym_member_expression, + STATE(3272), 1, + sym__signed_unary_expression, + STATE(13134), 1, + sym__callable_expression, + ACTIONS(13551), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3137), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17027), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17029), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3402), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [175546] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12259), 1, + aux_sym_unary_expression_token1, + ACTIONS(13527), 1, + sym_identifier, + ACTIONS(13529), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13531), 1, + anon_sym_DOT, + ACTIONS(13533), 1, + anon_sym_BANG, + ACTIONS(13535), 1, + anon_sym_LPAREN, + ACTIONS(13537), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13539), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13541), 1, + anon_sym_PLUS, + ACTIONS(13543), 1, + anon_sym_DASH, + ACTIONS(13545), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13547), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13555), 1, + anon_sym_POUND, + STATE(2883), 1, + sym_call_expression, + STATE(2935), 1, + sym_member_expression, + STATE(3272), 1, + sym__signed_unary_expression, + STATE(13134), 1, + sym__callable_expression, + ACTIONS(13551), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3137), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17031), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17033), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3403), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [175635] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12259), 1, + aux_sym_unary_expression_token1, + ACTIONS(13527), 1, + sym_identifier, + ACTIONS(13529), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13531), 1, + anon_sym_DOT, + ACTIONS(13533), 1, + anon_sym_BANG, + ACTIONS(13535), 1, + anon_sym_LPAREN, + ACTIONS(13537), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13539), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13541), 1, + anon_sym_PLUS, + ACTIONS(13543), 1, + anon_sym_DASH, + ACTIONS(13545), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13547), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13555), 1, + anon_sym_POUND, + STATE(2883), 1, + sym_call_expression, + STATE(2935), 1, + sym_member_expression, + STATE(3272), 1, + sym__signed_unary_expression, + STATE(13134), 1, + sym__callable_expression, + ACTIONS(13551), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3137), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17035), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17037), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3404), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [175724] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12259), 1, + aux_sym_unary_expression_token1, + ACTIONS(13527), 1, + sym_identifier, + ACTIONS(13529), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13531), 1, + anon_sym_DOT, + ACTIONS(13533), 1, + anon_sym_BANG, + ACTIONS(13535), 1, + anon_sym_LPAREN, + ACTIONS(13537), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13539), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13541), 1, + anon_sym_PLUS, + ACTIONS(13543), 1, + anon_sym_DASH, + ACTIONS(13545), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13547), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13555), 1, + anon_sym_POUND, + STATE(2883), 1, + sym_call_expression, + STATE(2935), 1, + sym_member_expression, + STATE(3272), 1, + sym__signed_unary_expression, + STATE(13134), 1, + sym__callable_expression, + ACTIONS(13551), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3137), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17039), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17041), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3405), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [175813] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12259), 1, + aux_sym_unary_expression_token1, + ACTIONS(13527), 1, + sym_identifier, + ACTIONS(13529), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13531), 1, + anon_sym_DOT, + ACTIONS(13533), 1, + anon_sym_BANG, + ACTIONS(13535), 1, + anon_sym_LPAREN, + ACTIONS(13537), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13539), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13541), 1, + anon_sym_PLUS, + ACTIONS(13543), 1, + anon_sym_DASH, + ACTIONS(13545), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13547), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13555), 1, + anon_sym_POUND, + STATE(2883), 1, + sym_call_expression, + STATE(2935), 1, + sym_member_expression, + STATE(3272), 1, + sym__signed_unary_expression, + STATE(13134), 1, + sym__callable_expression, + ACTIONS(13551), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3137), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17043), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17045), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3406), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [175902] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12259), 1, + aux_sym_unary_expression_token1, + ACTIONS(13527), 1, + sym_identifier, + ACTIONS(13529), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13531), 1, + anon_sym_DOT, + ACTIONS(13533), 1, + anon_sym_BANG, + ACTIONS(13535), 1, + anon_sym_LPAREN, + ACTIONS(13537), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13539), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13541), 1, + anon_sym_PLUS, + ACTIONS(13543), 1, + anon_sym_DASH, + ACTIONS(13545), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13547), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13555), 1, + anon_sym_POUND, + STATE(2883), 1, + sym_call_expression, + STATE(2935), 1, + sym_member_expression, + STATE(3272), 1, + sym__signed_unary_expression, + STATE(13134), 1, + sym__callable_expression, + ACTIONS(13551), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3137), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17047), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17049), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3407), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [175991] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12259), 1, + aux_sym_unary_expression_token1, + ACTIONS(13527), 1, + sym_identifier, + ACTIONS(13529), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13531), 1, + anon_sym_DOT, + ACTIONS(13533), 1, + anon_sym_BANG, + ACTIONS(13535), 1, + anon_sym_LPAREN, + ACTIONS(13537), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13539), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13541), 1, + anon_sym_PLUS, + ACTIONS(13543), 1, + anon_sym_DASH, + ACTIONS(13545), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13547), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13555), 1, + anon_sym_POUND, + STATE(2883), 1, + sym_call_expression, + STATE(2935), 1, + sym_member_expression, + STATE(3272), 1, + sym__signed_unary_expression, + STATE(13134), 1, + sym__callable_expression, + ACTIONS(13551), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3137), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17051), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17053), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3408), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [176080] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11937), 1, + sym_identifier, + ACTIONS(11939), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11941), 1, + anon_sym_DOT, + ACTIONS(11943), 1, + anon_sym_BANG, + ACTIONS(11945), 1, + anon_sym_LPAREN, + ACTIONS(11947), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11949), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11951), 1, + anon_sym_PLUS, + ACTIONS(11953), 1, + anon_sym_DASH, + ACTIONS(11955), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11957), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11967), 1, + anon_sym_POUND, + ACTIONS(12219), 1, + aux_sym_unary_expression_token1, + STATE(1707), 1, + sym_call_expression, + STATE(2021), 1, + sym_member_expression, + STATE(2085), 1, + sym__signed_unary_expression, + STATE(13605), 1, + sym__callable_expression, + ACTIONS(11963), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2117), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17055), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17057), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2060), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [176169] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12259), 1, + aux_sym_unary_expression_token1, + ACTIONS(13527), 1, + sym_identifier, + ACTIONS(13529), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13531), 1, + anon_sym_DOT, + ACTIONS(13533), 1, + anon_sym_BANG, + ACTIONS(13535), 1, + anon_sym_LPAREN, + ACTIONS(13537), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13539), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13541), 1, + anon_sym_PLUS, + ACTIONS(13543), 1, + anon_sym_DASH, + ACTIONS(13545), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13547), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13555), 1, + anon_sym_POUND, + STATE(2883), 1, + sym_call_expression, + STATE(2935), 1, + sym_member_expression, + STATE(3272), 1, + sym__signed_unary_expression, + STATE(13134), 1, + sym__callable_expression, + ACTIONS(13551), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3137), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17059), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17061), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3354), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [176258] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12185), 1, + sym_identifier, + ACTIONS(12187), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12189), 1, + anon_sym_DOT, + ACTIONS(12191), 1, + anon_sym_BANG, + ACTIONS(12193), 1, + anon_sym_LPAREN, + ACTIONS(12195), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12197), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12199), 1, + anon_sym_PLUS, + ACTIONS(12201), 1, + anon_sym_DASH, + ACTIONS(12203), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12205), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12215), 1, + anon_sym_POUND, + ACTIONS(12447), 1, + aux_sym_unary_expression_token1, + STATE(1995), 1, + sym_call_expression, + STATE(2082), 1, + sym_member_expression, + STATE(2103), 1, + sym__signed_unary_expression, + STATE(13271), 1, + sym__callable_expression, + ACTIONS(12211), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2139), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17063), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17065), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2055), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [176347] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12185), 1, + sym_identifier, + ACTIONS(12187), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12189), 1, + anon_sym_DOT, + ACTIONS(12191), 1, + anon_sym_BANG, + ACTIONS(12193), 1, + anon_sym_LPAREN, + ACTIONS(12195), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12197), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12199), 1, + anon_sym_PLUS, + ACTIONS(12201), 1, + anon_sym_DASH, + ACTIONS(12203), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12205), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12215), 1, + anon_sym_POUND, + ACTIONS(12447), 1, + aux_sym_unary_expression_token1, + STATE(1995), 1, + sym_call_expression, + STATE(2082), 1, + sym_member_expression, + STATE(2103), 1, + sym__signed_unary_expression, + STATE(13271), 1, + sym__callable_expression, + ACTIONS(12211), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2139), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17067), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17069), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2068), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [176436] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12185), 1, + sym_identifier, + ACTIONS(12187), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12189), 1, + anon_sym_DOT, + ACTIONS(12191), 1, + anon_sym_BANG, + ACTIONS(12193), 1, + anon_sym_LPAREN, + ACTIONS(12195), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12197), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12199), 1, + anon_sym_PLUS, + ACTIONS(12201), 1, + anon_sym_DASH, + ACTIONS(12203), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12205), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12215), 1, + anon_sym_POUND, + ACTIONS(12447), 1, + aux_sym_unary_expression_token1, + STATE(1995), 1, + sym_call_expression, + STATE(2082), 1, + sym_member_expression, + STATE(2103), 1, + sym__signed_unary_expression, + STATE(13271), 1, + sym__callable_expression, + ACTIONS(12211), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2139), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17071), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17073), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2069), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [176525] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12185), 1, + sym_identifier, + ACTIONS(12187), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12189), 1, + anon_sym_DOT, + ACTIONS(12191), 1, + anon_sym_BANG, + ACTIONS(12193), 1, + anon_sym_LPAREN, + ACTIONS(12195), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12197), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12199), 1, + anon_sym_PLUS, + ACTIONS(12201), 1, + anon_sym_DASH, + ACTIONS(12203), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12205), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12215), 1, + anon_sym_POUND, + ACTIONS(12447), 1, + aux_sym_unary_expression_token1, + STATE(1995), 1, + sym_call_expression, + STATE(2082), 1, + sym_member_expression, + STATE(2103), 1, + sym__signed_unary_expression, + STATE(13271), 1, + sym__callable_expression, + ACTIONS(12211), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2139), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17075), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17077), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2074), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [176614] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12185), 1, + sym_identifier, + ACTIONS(12187), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12189), 1, + anon_sym_DOT, + ACTIONS(12191), 1, + anon_sym_BANG, + ACTIONS(12193), 1, + anon_sym_LPAREN, + ACTIONS(12195), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12197), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12199), 1, + anon_sym_PLUS, + ACTIONS(12201), 1, + anon_sym_DASH, + ACTIONS(12203), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12205), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12215), 1, + anon_sym_POUND, + ACTIONS(12447), 1, + aux_sym_unary_expression_token1, + STATE(1995), 1, + sym_call_expression, + STATE(2082), 1, + sym_member_expression, + STATE(2103), 1, + sym__signed_unary_expression, + STATE(13271), 1, + sym__callable_expression, + ACTIONS(12211), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2139), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17079), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17081), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2076), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [176703] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12185), 1, + sym_identifier, + ACTIONS(12187), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12189), 1, + anon_sym_DOT, + ACTIONS(12191), 1, + anon_sym_BANG, + ACTIONS(12193), 1, + anon_sym_LPAREN, + ACTIONS(12195), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12197), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12199), 1, + anon_sym_PLUS, + ACTIONS(12201), 1, + anon_sym_DASH, + ACTIONS(12203), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12205), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12215), 1, + anon_sym_POUND, + ACTIONS(12447), 1, + aux_sym_unary_expression_token1, + STATE(1995), 1, + sym_call_expression, + STATE(2082), 1, + sym_member_expression, + STATE(2103), 1, + sym__signed_unary_expression, + STATE(13271), 1, + sym__callable_expression, + ACTIONS(12211), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2139), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17083), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17085), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2104), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [176792] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12185), 1, + sym_identifier, + ACTIONS(12187), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12189), 1, + anon_sym_DOT, + ACTIONS(12191), 1, + anon_sym_BANG, + ACTIONS(12193), 1, + anon_sym_LPAREN, + ACTIONS(12195), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12197), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12199), 1, + anon_sym_PLUS, + ACTIONS(12201), 1, + anon_sym_DASH, + ACTIONS(12203), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12205), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12215), 1, + anon_sym_POUND, + ACTIONS(12447), 1, + aux_sym_unary_expression_token1, + STATE(1995), 1, + sym_call_expression, + STATE(2082), 1, + sym_member_expression, + STATE(2103), 1, + sym__signed_unary_expression, + STATE(13271), 1, + sym__callable_expression, + ACTIONS(12211), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2139), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2137), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [176881] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12185), 1, + sym_identifier, + ACTIONS(12187), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12189), 1, + anon_sym_DOT, + ACTIONS(12191), 1, + anon_sym_BANG, + ACTIONS(12193), 1, + anon_sym_LPAREN, + ACTIONS(12195), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12197), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12199), 1, + anon_sym_PLUS, + ACTIONS(12201), 1, + anon_sym_DASH, + ACTIONS(12203), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12205), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12215), 1, + anon_sym_POUND, + ACTIONS(12447), 1, + aux_sym_unary_expression_token1, + STATE(1995), 1, + sym_call_expression, + STATE(2082), 1, + sym_member_expression, + STATE(2103), 1, + sym__signed_unary_expression, + STATE(13271), 1, + sym__callable_expression, + ACTIONS(12211), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2139), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17091), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17093), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2148), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [176970] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12185), 1, + sym_identifier, + ACTIONS(12187), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12189), 1, + anon_sym_DOT, + ACTIONS(12191), 1, + anon_sym_BANG, + ACTIONS(12193), 1, + anon_sym_LPAREN, + ACTIONS(12195), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12197), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12199), 1, + anon_sym_PLUS, + ACTIONS(12201), 1, + anon_sym_DASH, + ACTIONS(12203), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12205), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12215), 1, + anon_sym_POUND, + ACTIONS(12447), 1, + aux_sym_unary_expression_token1, + STATE(1995), 1, + sym_call_expression, + STATE(2082), 1, + sym_member_expression, + STATE(2103), 1, + sym__signed_unary_expression, + STATE(13271), 1, + sym__callable_expression, + ACTIONS(12211), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2139), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17095), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17097), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2151), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [177059] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12185), 1, + sym_identifier, + ACTIONS(12187), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12189), 1, + anon_sym_DOT, + ACTIONS(12191), 1, + anon_sym_BANG, + ACTIONS(12193), 1, + anon_sym_LPAREN, + ACTIONS(12195), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12197), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12199), 1, + anon_sym_PLUS, + ACTIONS(12201), 1, + anon_sym_DASH, + ACTIONS(12203), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12205), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12215), 1, + anon_sym_POUND, + ACTIONS(12447), 1, + aux_sym_unary_expression_token1, + STATE(1995), 1, + sym_call_expression, + STATE(2082), 1, + sym_member_expression, + STATE(2103), 1, + sym__signed_unary_expression, + STATE(13271), 1, + sym__callable_expression, + ACTIONS(12211), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2139), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17099), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17101), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2153), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [177148] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12185), 1, + sym_identifier, + ACTIONS(12187), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12189), 1, + anon_sym_DOT, + ACTIONS(12191), 1, + anon_sym_BANG, + ACTIONS(12193), 1, + anon_sym_LPAREN, + ACTIONS(12195), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12197), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12199), 1, + anon_sym_PLUS, + ACTIONS(12201), 1, + anon_sym_DASH, + ACTIONS(12203), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12205), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12215), 1, + anon_sym_POUND, + ACTIONS(12447), 1, + aux_sym_unary_expression_token1, + STATE(1995), 1, + sym_call_expression, + STATE(2082), 1, + sym_member_expression, + STATE(2103), 1, + sym__signed_unary_expression, + STATE(13271), 1, + sym__callable_expression, + ACTIONS(12211), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2139), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17103), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17105), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2006), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [177237] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12185), 1, + sym_identifier, + ACTIONS(12187), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12189), 1, + anon_sym_DOT, + ACTIONS(12191), 1, + anon_sym_BANG, + ACTIONS(12193), 1, + anon_sym_LPAREN, + ACTIONS(12195), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12197), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12199), 1, + anon_sym_PLUS, + ACTIONS(12201), 1, + anon_sym_DASH, + ACTIONS(12203), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12205), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12215), 1, + anon_sym_POUND, + ACTIONS(12447), 1, + aux_sym_unary_expression_token1, + STATE(1995), 1, + sym_call_expression, + STATE(2082), 1, + sym_member_expression, + STATE(2103), 1, + sym__signed_unary_expression, + STATE(13271), 1, + sym__callable_expression, + ACTIONS(12211), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2139), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17107), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17109), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2007), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [177326] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12225), 1, + aux_sym_unary_expression_token1, + ACTIONS(13331), 1, + sym_identifier, + ACTIONS(13333), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13335), 1, + anon_sym_DOT, + ACTIONS(13337), 1, + anon_sym_BANG, + ACTIONS(13339), 1, + anon_sym_LPAREN, + ACTIONS(13341), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13343), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13345), 1, + anon_sym_PLUS, + ACTIONS(13347), 1, + anon_sym_DASH, + ACTIONS(13349), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13351), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13359), 1, + anon_sym_POUND, + STATE(2713), 1, + sym_call_expression, + STATE(3190), 1, + sym__signed_unary_expression, + STATE(3351), 1, + sym_member_expression, + STATE(13359), 1, + sym__callable_expression, + ACTIONS(13355), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3002), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17111), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17113), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3297), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [177415] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12185), 1, + sym_identifier, + ACTIONS(12187), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12189), 1, + anon_sym_DOT, + ACTIONS(12191), 1, + anon_sym_BANG, + ACTIONS(12193), 1, + anon_sym_LPAREN, + ACTIONS(12195), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12197), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12199), 1, + anon_sym_PLUS, + ACTIONS(12201), 1, + anon_sym_DASH, + ACTIONS(12203), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12205), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12215), 1, + anon_sym_POUND, + ACTIONS(12447), 1, + aux_sym_unary_expression_token1, + STATE(1995), 1, + sym_call_expression, + STATE(2082), 1, + sym_member_expression, + STATE(2103), 1, + sym__signed_unary_expression, + STATE(13271), 1, + sym__callable_expression, + ACTIONS(12211), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2139), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17115), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17117), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2025), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [177504] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11845), 1, + sym_identifier, + ACTIONS(11847), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11849), 1, + anon_sym_DOT, + ACTIONS(11851), 1, + anon_sym_BANG, + ACTIONS(11853), 1, + anon_sym_LPAREN, + ACTIONS(11855), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11857), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11859), 1, + anon_sym_PLUS, + ACTIONS(11861), 1, + anon_sym_DASH, + ACTIONS(11863), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11865), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11867), 1, + aux_sym_unary_expression_token1, + ACTIONS(11875), 1, + anon_sym_POUND, + STATE(1370), 1, + sym_call_expression, + STATE(1508), 1, + sym_member_expression, + STATE(1514), 1, + sym__signed_unary_expression, + STATE(13362), 1, + sym__callable_expression, + ACTIONS(11871), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1561), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17119), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17121), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1481), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [177593] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11845), 1, + sym_identifier, + ACTIONS(11847), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11849), 1, + anon_sym_DOT, + ACTIONS(11851), 1, + anon_sym_BANG, + ACTIONS(11853), 1, + anon_sym_LPAREN, + ACTIONS(11855), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11857), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11859), 1, + anon_sym_PLUS, + ACTIONS(11861), 1, + anon_sym_DASH, + ACTIONS(11863), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11865), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11867), 1, + aux_sym_unary_expression_token1, + ACTIONS(11875), 1, + anon_sym_POUND, + STATE(1370), 1, + sym_call_expression, + STATE(1508), 1, + sym_member_expression, + STATE(1514), 1, + sym__signed_unary_expression, + STATE(13362), 1, + sym__callable_expression, + ACTIONS(11871), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1561), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17123), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17125), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1493), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [177682] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11845), 1, + sym_identifier, + ACTIONS(11847), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11849), 1, + anon_sym_DOT, + ACTIONS(11851), 1, + anon_sym_BANG, + ACTIONS(11853), 1, + anon_sym_LPAREN, + ACTIONS(11855), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11857), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11859), 1, + anon_sym_PLUS, + ACTIONS(11861), 1, + anon_sym_DASH, + ACTIONS(11863), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11865), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11867), 1, + aux_sym_unary_expression_token1, + ACTIONS(11875), 1, + anon_sym_POUND, + STATE(1370), 1, + sym_call_expression, + STATE(1508), 1, + sym_member_expression, + STATE(1514), 1, + sym__signed_unary_expression, + STATE(13362), 1, + sym__callable_expression, + ACTIONS(11871), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1561), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17127), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17129), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1494), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [177771] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11845), 1, + sym_identifier, + ACTIONS(11847), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11849), 1, + anon_sym_DOT, + ACTIONS(11851), 1, + anon_sym_BANG, + ACTIONS(11853), 1, + anon_sym_LPAREN, + ACTIONS(11855), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11857), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11859), 1, + anon_sym_PLUS, + ACTIONS(11861), 1, + anon_sym_DASH, + ACTIONS(11863), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11865), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11867), 1, + aux_sym_unary_expression_token1, + ACTIONS(11875), 1, + anon_sym_POUND, + STATE(1370), 1, + sym_call_expression, + STATE(1508), 1, + sym_member_expression, + STATE(1514), 1, + sym__signed_unary_expression, + STATE(13362), 1, + sym__callable_expression, + ACTIONS(11871), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1561), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17131), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17133), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1495), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [177860] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11845), 1, + sym_identifier, + ACTIONS(11847), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11849), 1, + anon_sym_DOT, + ACTIONS(11851), 1, + anon_sym_BANG, + ACTIONS(11853), 1, + anon_sym_LPAREN, + ACTIONS(11855), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11857), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11859), 1, + anon_sym_PLUS, + ACTIONS(11861), 1, + anon_sym_DASH, + ACTIONS(11863), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11865), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11867), 1, + aux_sym_unary_expression_token1, + ACTIONS(11875), 1, + anon_sym_POUND, + STATE(1370), 1, + sym_call_expression, + STATE(1508), 1, + sym_member_expression, + STATE(1514), 1, + sym__signed_unary_expression, + STATE(13362), 1, + sym__callable_expression, + ACTIONS(11871), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1561), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17135), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17137), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1496), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [177949] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11845), 1, + sym_identifier, + ACTIONS(11847), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11849), 1, + anon_sym_DOT, + ACTIONS(11851), 1, + anon_sym_BANG, + ACTIONS(11853), 1, + anon_sym_LPAREN, + ACTIONS(11855), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11857), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11859), 1, + anon_sym_PLUS, + ACTIONS(11861), 1, + anon_sym_DASH, + ACTIONS(11863), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11865), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11867), 1, + aux_sym_unary_expression_token1, + ACTIONS(11875), 1, + anon_sym_POUND, + STATE(1370), 1, + sym_call_expression, + STATE(1508), 1, + sym_member_expression, + STATE(1514), 1, + sym__signed_unary_expression, + STATE(13362), 1, + sym__callable_expression, + ACTIONS(11871), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1561), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17139), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17141), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1497), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [178038] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11845), 1, + sym_identifier, + ACTIONS(11847), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11849), 1, + anon_sym_DOT, + ACTIONS(11851), 1, + anon_sym_BANG, + ACTIONS(11853), 1, + anon_sym_LPAREN, + ACTIONS(11855), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11857), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11859), 1, + anon_sym_PLUS, + ACTIONS(11861), 1, + anon_sym_DASH, + ACTIONS(11863), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11865), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11867), 1, + aux_sym_unary_expression_token1, + ACTIONS(11875), 1, + anon_sym_POUND, + STATE(1370), 1, + sym_call_expression, + STATE(1508), 1, + sym_member_expression, + STATE(1514), 1, + sym__signed_unary_expression, + STATE(13362), 1, + sym__callable_expression, + ACTIONS(11871), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1561), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17143), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17145), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1498), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [178127] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11845), 1, + sym_identifier, + ACTIONS(11847), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11849), 1, + anon_sym_DOT, + ACTIONS(11851), 1, + anon_sym_BANG, + ACTIONS(11853), 1, + anon_sym_LPAREN, + ACTIONS(11855), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11857), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11859), 1, + anon_sym_PLUS, + ACTIONS(11861), 1, + anon_sym_DASH, + ACTIONS(11863), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11865), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11867), 1, + aux_sym_unary_expression_token1, + ACTIONS(11875), 1, + anon_sym_POUND, + STATE(1370), 1, + sym_call_expression, + STATE(1508), 1, + sym_member_expression, + STATE(1514), 1, + sym__signed_unary_expression, + STATE(13362), 1, + sym__callable_expression, + ACTIONS(11871), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1561), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17147), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17149), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1499), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [178216] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11845), 1, + sym_identifier, + ACTIONS(11847), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11849), 1, + anon_sym_DOT, + ACTIONS(11851), 1, + anon_sym_BANG, + ACTIONS(11853), 1, + anon_sym_LPAREN, + ACTIONS(11855), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11857), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11859), 1, + anon_sym_PLUS, + ACTIONS(11861), 1, + anon_sym_DASH, + ACTIONS(11863), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11865), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11867), 1, + aux_sym_unary_expression_token1, + ACTIONS(11875), 1, + anon_sym_POUND, + STATE(1370), 1, + sym_call_expression, + STATE(1508), 1, + sym_member_expression, + STATE(1514), 1, + sym__signed_unary_expression, + STATE(13362), 1, + sym__callable_expression, + ACTIONS(11871), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1561), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17151), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17153), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1500), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [178305] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11845), 1, + sym_identifier, + ACTIONS(11847), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11849), 1, + anon_sym_DOT, + ACTIONS(11851), 1, + anon_sym_BANG, + ACTIONS(11853), 1, + anon_sym_LPAREN, + ACTIONS(11855), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11857), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11859), 1, + anon_sym_PLUS, + ACTIONS(11861), 1, + anon_sym_DASH, + ACTIONS(11863), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11865), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11867), 1, + aux_sym_unary_expression_token1, + ACTIONS(11875), 1, + anon_sym_POUND, + STATE(1370), 1, + sym_call_expression, + STATE(1508), 1, + sym_member_expression, + STATE(1514), 1, + sym__signed_unary_expression, + STATE(13362), 1, + sym__callable_expression, + ACTIONS(11871), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1561), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17155), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17157), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1501), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [178394] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11845), 1, + sym_identifier, + ACTIONS(11847), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11849), 1, + anon_sym_DOT, + ACTIONS(11851), 1, + anon_sym_BANG, + ACTIONS(11853), 1, + anon_sym_LPAREN, + ACTIONS(11855), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11857), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11859), 1, + anon_sym_PLUS, + ACTIONS(11861), 1, + anon_sym_DASH, + ACTIONS(11863), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11865), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11867), 1, + aux_sym_unary_expression_token1, + ACTIONS(11875), 1, + anon_sym_POUND, + STATE(1370), 1, + sym_call_expression, + STATE(1508), 1, + sym_member_expression, + STATE(1514), 1, + sym__signed_unary_expression, + STATE(13362), 1, + sym__callable_expression, + ACTIONS(11871), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1561), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17159), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17161), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1502), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [178483] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11845), 1, + sym_identifier, + ACTIONS(11847), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11849), 1, + anon_sym_DOT, + ACTIONS(11851), 1, + anon_sym_BANG, + ACTIONS(11853), 1, + anon_sym_LPAREN, + ACTIONS(11855), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11857), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11859), 1, + anon_sym_PLUS, + ACTIONS(11861), 1, + anon_sym_DASH, + ACTIONS(11863), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11865), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11867), 1, + aux_sym_unary_expression_token1, + ACTIONS(11875), 1, + anon_sym_POUND, + STATE(1370), 1, + sym_call_expression, + STATE(1508), 1, + sym_member_expression, + STATE(1514), 1, + sym__signed_unary_expression, + STATE(13362), 1, + sym__callable_expression, + ACTIONS(11871), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1561), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17163), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17165), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1503), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [178572] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 1, + anon_sym_DOT, + ACTIONS(4122), 1, + anon_sym_BANG, + ACTIONS(4130), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4132), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4134), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_DASH, + ACTIONS(4138), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4140), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4148), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(11721), 1, + sym_identifier, + ACTIONS(11723), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11923), 1, + aux_sym_unary_expression_token1, + STATE(541), 1, + sym_call_expression, + STATE(592), 1, + sym_member_expression, + STATE(605), 1, + sym__signed_unary_expression, + STATE(13651), 1, + sym__callable_expression, + ACTIONS(4144), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17167), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17169), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(606), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [178661] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11845), 1, + sym_identifier, + ACTIONS(11847), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11849), 1, + anon_sym_DOT, + ACTIONS(11851), 1, + anon_sym_BANG, + ACTIONS(11853), 1, + anon_sym_LPAREN, + ACTIONS(11855), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11857), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11859), 1, + anon_sym_PLUS, + ACTIONS(11861), 1, + anon_sym_DASH, + ACTIONS(11863), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11865), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11867), 1, + aux_sym_unary_expression_token1, + ACTIONS(11875), 1, + anon_sym_POUND, + STATE(1370), 1, + sym_call_expression, + STATE(1508), 1, + sym_member_expression, + STATE(1514), 1, + sym__signed_unary_expression, + STATE(13362), 1, + sym__callable_expression, + ACTIONS(11871), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1561), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17171), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17173), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1480), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [178750] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12293), 1, + aux_sym_unary_expression_token1, + ACTIONS(13091), 1, + sym_identifier, + ACTIONS(13093), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13095), 1, + anon_sym_DOT, + ACTIONS(13097), 1, + anon_sym_BANG, + ACTIONS(13099), 1, + anon_sym_LPAREN, + ACTIONS(13101), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13103), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13105), 1, + anon_sym_PLUS, + ACTIONS(13107), 1, + anon_sym_DASH, + ACTIONS(13109), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13111), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13119), 1, + anon_sym_POUND, + STATE(1478), 1, + sym_call_expression, + STATE(2014), 1, + sym_member_expression, + STATE(2123), 1, + sym__signed_unary_expression, + STATE(13390), 1, + sym__callable_expression, + ACTIONS(13115), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2022), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17175), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17177), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2064), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [178839] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12293), 1, + aux_sym_unary_expression_token1, + ACTIONS(13091), 1, + sym_identifier, + ACTIONS(13093), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13095), 1, + anon_sym_DOT, + ACTIONS(13097), 1, + anon_sym_BANG, + ACTIONS(13099), 1, + anon_sym_LPAREN, + ACTIONS(13101), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13103), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13105), 1, + anon_sym_PLUS, + ACTIONS(13107), 1, + anon_sym_DASH, + ACTIONS(13109), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13111), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13119), 1, + anon_sym_POUND, + STATE(1478), 1, + sym_call_expression, + STATE(2014), 1, + sym_member_expression, + STATE(2123), 1, + sym__signed_unary_expression, + STATE(13390), 1, + sym__callable_expression, + ACTIONS(13115), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2022), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17179), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17181), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2111), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [178928] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12293), 1, + aux_sym_unary_expression_token1, + ACTIONS(13091), 1, + sym_identifier, + ACTIONS(13093), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13095), 1, + anon_sym_DOT, + ACTIONS(13097), 1, + anon_sym_BANG, + ACTIONS(13099), 1, + anon_sym_LPAREN, + ACTIONS(13101), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13103), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13105), 1, + anon_sym_PLUS, + ACTIONS(13107), 1, + anon_sym_DASH, + ACTIONS(13109), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13111), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13119), 1, + anon_sym_POUND, + STATE(1478), 1, + sym_call_expression, + STATE(2014), 1, + sym_member_expression, + STATE(2123), 1, + sym__signed_unary_expression, + STATE(13390), 1, + sym__callable_expression, + ACTIONS(13115), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2022), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17183), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17185), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2112), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [179017] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12293), 1, + aux_sym_unary_expression_token1, + ACTIONS(13091), 1, + sym_identifier, + ACTIONS(13093), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13095), 1, + anon_sym_DOT, + ACTIONS(13097), 1, + anon_sym_BANG, + ACTIONS(13099), 1, + anon_sym_LPAREN, + ACTIONS(13101), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13103), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13105), 1, + anon_sym_PLUS, + ACTIONS(13107), 1, + anon_sym_DASH, + ACTIONS(13109), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13111), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13119), 1, + anon_sym_POUND, + STATE(1478), 1, + sym_call_expression, + STATE(2014), 1, + sym_member_expression, + STATE(2123), 1, + sym__signed_unary_expression, + STATE(13390), 1, + sym__callable_expression, + ACTIONS(13115), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2022), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17187), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17189), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2115), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [179106] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12293), 1, + aux_sym_unary_expression_token1, + ACTIONS(13091), 1, + sym_identifier, + ACTIONS(13093), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13095), 1, + anon_sym_DOT, + ACTIONS(13097), 1, + anon_sym_BANG, + ACTIONS(13099), 1, + anon_sym_LPAREN, + ACTIONS(13101), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13103), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13105), 1, + anon_sym_PLUS, + ACTIONS(13107), 1, + anon_sym_DASH, + ACTIONS(13109), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13111), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13119), 1, + anon_sym_POUND, + STATE(1478), 1, + sym_call_expression, + STATE(2014), 1, + sym_member_expression, + STATE(2123), 1, + sym__signed_unary_expression, + STATE(13390), 1, + sym__callable_expression, + ACTIONS(13115), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2022), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17191), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17193), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2116), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [179195] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12293), 1, + aux_sym_unary_expression_token1, + ACTIONS(13091), 1, + sym_identifier, + ACTIONS(13093), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13095), 1, + anon_sym_DOT, + ACTIONS(13097), 1, + anon_sym_BANG, + ACTIONS(13099), 1, + anon_sym_LPAREN, + ACTIONS(13101), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13103), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13105), 1, + anon_sym_PLUS, + ACTIONS(13107), 1, + anon_sym_DASH, + ACTIONS(13109), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13111), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13119), 1, + anon_sym_POUND, + STATE(1478), 1, + sym_call_expression, + STATE(2014), 1, + sym_member_expression, + STATE(2123), 1, + sym__signed_unary_expression, + STATE(13390), 1, + sym__callable_expression, + ACTIONS(13115), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2022), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17195), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17197), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2121), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [179284] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12293), 1, + aux_sym_unary_expression_token1, + ACTIONS(13091), 1, + sym_identifier, + ACTIONS(13093), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13095), 1, + anon_sym_DOT, + ACTIONS(13097), 1, + anon_sym_BANG, + ACTIONS(13099), 1, + anon_sym_LPAREN, + ACTIONS(13101), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13103), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13105), 1, + anon_sym_PLUS, + ACTIONS(13107), 1, + anon_sym_DASH, + ACTIONS(13109), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13111), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13119), 1, + anon_sym_POUND, + STATE(1478), 1, + sym_call_expression, + STATE(2014), 1, + sym_member_expression, + STATE(2123), 1, + sym__signed_unary_expression, + STATE(13390), 1, + sym__callable_expression, + ACTIONS(13115), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2022), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17199), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17201), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2124), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [179373] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12293), 1, + aux_sym_unary_expression_token1, + ACTIONS(13091), 1, + sym_identifier, + ACTIONS(13093), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13095), 1, + anon_sym_DOT, + ACTIONS(13097), 1, + anon_sym_BANG, + ACTIONS(13099), 1, + anon_sym_LPAREN, + ACTIONS(13101), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13103), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13105), 1, + anon_sym_PLUS, + ACTIONS(13107), 1, + anon_sym_DASH, + ACTIONS(13109), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13111), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13119), 1, + anon_sym_POUND, + STATE(1478), 1, + sym_call_expression, + STATE(2014), 1, + sym_member_expression, + STATE(2123), 1, + sym__signed_unary_expression, + STATE(13390), 1, + sym__callable_expression, + ACTIONS(13115), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2022), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17203), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17205), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2127), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [179462] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12293), 1, + aux_sym_unary_expression_token1, + ACTIONS(13091), 1, + sym_identifier, + ACTIONS(13093), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13095), 1, + anon_sym_DOT, + ACTIONS(13097), 1, + anon_sym_BANG, + ACTIONS(13099), 1, + anon_sym_LPAREN, + ACTIONS(13101), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13103), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13105), 1, + anon_sym_PLUS, + ACTIONS(13107), 1, + anon_sym_DASH, + ACTIONS(13109), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13111), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13119), 1, + anon_sym_POUND, + STATE(1478), 1, + sym_call_expression, + STATE(2014), 1, + sym_member_expression, + STATE(2123), 1, + sym__signed_unary_expression, + STATE(13390), 1, + sym__callable_expression, + ACTIONS(13115), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2022), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17207), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17209), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2128), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [179551] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12293), 1, + aux_sym_unary_expression_token1, + ACTIONS(13091), 1, + sym_identifier, + ACTIONS(13093), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13095), 1, + anon_sym_DOT, + ACTIONS(13097), 1, + anon_sym_BANG, + ACTIONS(13099), 1, + anon_sym_LPAREN, + ACTIONS(13101), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13103), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13105), 1, + anon_sym_PLUS, + ACTIONS(13107), 1, + anon_sym_DASH, + ACTIONS(13109), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13111), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13119), 1, + anon_sym_POUND, + STATE(1478), 1, + sym_call_expression, + STATE(2014), 1, + sym_member_expression, + STATE(2123), 1, + sym__signed_unary_expression, + STATE(13390), 1, + sym__callable_expression, + ACTIONS(13115), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2022), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17211), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17213), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2129), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [179640] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12293), 1, + aux_sym_unary_expression_token1, + ACTIONS(13091), 1, + sym_identifier, + ACTIONS(13093), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13095), 1, + anon_sym_DOT, + ACTIONS(13097), 1, + anon_sym_BANG, + ACTIONS(13099), 1, + anon_sym_LPAREN, + ACTIONS(13101), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13103), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13105), 1, + anon_sym_PLUS, + ACTIONS(13107), 1, + anon_sym_DASH, + ACTIONS(13109), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13111), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13119), 1, + anon_sym_POUND, + STATE(1478), 1, + sym_call_expression, + STATE(2014), 1, + sym_member_expression, + STATE(2123), 1, + sym__signed_unary_expression, + STATE(13390), 1, + sym__callable_expression, + ACTIONS(13115), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2022), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17215), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17217), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2132), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [179729] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12293), 1, + aux_sym_unary_expression_token1, + ACTIONS(13091), 1, + sym_identifier, + ACTIONS(13093), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13095), 1, + anon_sym_DOT, + ACTIONS(13097), 1, + anon_sym_BANG, + ACTIONS(13099), 1, + anon_sym_LPAREN, + ACTIONS(13101), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13103), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13105), 1, + anon_sym_PLUS, + ACTIONS(13107), 1, + anon_sym_DASH, + ACTIONS(13109), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13111), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13119), 1, + anon_sym_POUND, + STATE(1478), 1, + sym_call_expression, + STATE(2014), 1, + sym_member_expression, + STATE(2123), 1, + sym__signed_unary_expression, + STATE(13390), 1, + sym__callable_expression, + ACTIONS(13115), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2022), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17219), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17221), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2134), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [179818] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + anon_sym_BANG, + ACTIONS(4274), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4278), 1, + anon_sym_PLUS, + ACTIONS(4280), 1, + anon_sym_DASH, + ACTIONS(4282), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4284), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4292), 1, + anon_sym_POUND, + ACTIONS(4383), 1, + anon_sym_LPAREN, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12231), 1, + aux_sym_unary_expression_token1, + STATE(777), 1, + sym_call_expression, + STATE(814), 1, + sym_member_expression, + STATE(843), 1, + sym__signed_unary_expression, + STATE(13462), 1, + sym__callable_expression, + ACTIONS(4288), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17223), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17225), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(797), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [179907] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12293), 1, + aux_sym_unary_expression_token1, + ACTIONS(13091), 1, + sym_identifier, + ACTIONS(13093), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13095), 1, + anon_sym_DOT, + ACTIONS(13097), 1, + anon_sym_BANG, + ACTIONS(13099), 1, + anon_sym_LPAREN, + ACTIONS(13101), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13103), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13105), 1, + anon_sym_PLUS, + ACTIONS(13107), 1, + anon_sym_DASH, + ACTIONS(13109), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13111), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13119), 1, + anon_sym_POUND, + STATE(1478), 1, + sym_call_expression, + STATE(2014), 1, + sym_member_expression, + STATE(2123), 1, + sym__signed_unary_expression, + STATE(13390), 1, + sym__callable_expression, + ACTIONS(13115), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2022), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17227), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17229), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2061), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [179996] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12303), 1, + aux_sym_unary_expression_token1, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_DASH, + ACTIONS(14097), 1, + anon_sym_POUND, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17231), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17233), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1037), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [180085] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12303), 1, + aux_sym_unary_expression_token1, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_DASH, + ACTIONS(14097), 1, + anon_sym_POUND, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17235), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17237), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1038), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [180174] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12303), 1, + aux_sym_unary_expression_token1, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_DASH, + ACTIONS(14097), 1, + anon_sym_POUND, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17239), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17241), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1039), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [180263] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12303), 1, + aux_sym_unary_expression_token1, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_DASH, + ACTIONS(14097), 1, + anon_sym_POUND, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17243), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17245), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1040), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [180352] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12303), 1, + aux_sym_unary_expression_token1, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_DASH, + ACTIONS(14097), 1, + anon_sym_POUND, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17247), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17249), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1041), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [180441] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12303), 1, + aux_sym_unary_expression_token1, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_DASH, + ACTIONS(14097), 1, + anon_sym_POUND, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17251), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17253), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1042), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [180530] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12303), 1, + aux_sym_unary_expression_token1, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_DASH, + ACTIONS(14097), 1, + anon_sym_POUND, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17255), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17257), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1043), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [180619] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12303), 1, + aux_sym_unary_expression_token1, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_DASH, + ACTIONS(14097), 1, + anon_sym_POUND, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17259), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17261), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1044), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [180708] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12303), 1, + aux_sym_unary_expression_token1, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_DASH, + ACTIONS(14097), 1, + anon_sym_POUND, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17263), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17265), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1045), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [180797] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12303), 1, + aux_sym_unary_expression_token1, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_DASH, + ACTIONS(14097), 1, + anon_sym_POUND, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17267), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17269), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1046), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [180886] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12303), 1, + aux_sym_unary_expression_token1, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_DASH, + ACTIONS(14097), 1, + anon_sym_POUND, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17271), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17273), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1047), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [180975] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12303), 1, + aux_sym_unary_expression_token1, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_DASH, + ACTIONS(14097), 1, + anon_sym_POUND, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17275), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17277), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1048), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [181064] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12259), 1, + aux_sym_unary_expression_token1, + ACTIONS(13527), 1, + sym_identifier, + ACTIONS(13529), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13531), 1, + anon_sym_DOT, + ACTIONS(13533), 1, + anon_sym_BANG, + ACTIONS(13535), 1, + anon_sym_LPAREN, + ACTIONS(13537), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13539), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13541), 1, + anon_sym_PLUS, + ACTIONS(13543), 1, + anon_sym_DASH, + ACTIONS(13545), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13547), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13555), 1, + anon_sym_POUND, + STATE(2883), 1, + sym_call_expression, + STATE(2935), 1, + sym_member_expression, + STATE(3272), 1, + sym__signed_unary_expression, + STATE(13134), 1, + sym__callable_expression, + ACTIONS(13551), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3137), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17279), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17281), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3359), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [181153] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12303), 1, + aux_sym_unary_expression_token1, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_DASH, + ACTIONS(14097), 1, + anon_sym_POUND, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17283), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17285), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1036), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [181242] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12971), 1, + sym_identifier, + ACTIONS(12973), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12975), 1, + anon_sym_DOT, + ACTIONS(12977), 1, + anon_sym_BANG, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12983), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12985), 1, + anon_sym_PLUS, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12989), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12991), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12999), 1, + anon_sym_POUND, + STATE(1051), 1, + sym_call_expression, + STATE(1149), 1, + sym_member_expression, + STATE(1286), 1, + sym__signed_unary_expression, + STATE(13408), 1, + sym__callable_expression, + ACTIONS(12995), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17287), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17289), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1432), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [181331] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12971), 1, + sym_identifier, + ACTIONS(12973), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12975), 1, + anon_sym_DOT, + ACTIONS(12977), 1, + anon_sym_BANG, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12983), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12985), 1, + anon_sym_PLUS, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12989), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12991), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12999), 1, + anon_sym_POUND, + STATE(1051), 1, + sym_call_expression, + STATE(1149), 1, + sym_member_expression, + STATE(1286), 1, + sym__signed_unary_expression, + STATE(13408), 1, + sym__callable_expression, + ACTIONS(12995), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17291), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17293), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1454), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [181420] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12971), 1, + sym_identifier, + ACTIONS(12973), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12975), 1, + anon_sym_DOT, + ACTIONS(12977), 1, + anon_sym_BANG, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12983), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12985), 1, + anon_sym_PLUS, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12989), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12991), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12999), 1, + anon_sym_POUND, + STATE(1051), 1, + sym_call_expression, + STATE(1149), 1, + sym_member_expression, + STATE(1286), 1, + sym__signed_unary_expression, + STATE(13408), 1, + sym__callable_expression, + ACTIONS(12995), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17295), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17297), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1455), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [181509] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12971), 1, + sym_identifier, + ACTIONS(12973), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12975), 1, + anon_sym_DOT, + ACTIONS(12977), 1, + anon_sym_BANG, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12983), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12985), 1, + anon_sym_PLUS, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12989), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12991), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12999), 1, + anon_sym_POUND, + STATE(1051), 1, + sym_call_expression, + STATE(1149), 1, + sym_member_expression, + STATE(1286), 1, + sym__signed_unary_expression, + STATE(13408), 1, + sym__callable_expression, + ACTIONS(12995), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17299), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17301), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1456), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [181598] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12971), 1, + sym_identifier, + ACTIONS(12973), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12975), 1, + anon_sym_DOT, + ACTIONS(12977), 1, + anon_sym_BANG, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12983), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12985), 1, + anon_sym_PLUS, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12989), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12991), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12999), 1, + anon_sym_POUND, + STATE(1051), 1, + sym_call_expression, + STATE(1149), 1, + sym_member_expression, + STATE(1286), 1, + sym__signed_unary_expression, + STATE(13408), 1, + sym__callable_expression, + ACTIONS(12995), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17303), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17305), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1458), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [181687] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12971), 1, + sym_identifier, + ACTIONS(12973), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12975), 1, + anon_sym_DOT, + ACTIONS(12977), 1, + anon_sym_BANG, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12983), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12985), 1, + anon_sym_PLUS, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12989), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12991), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12999), 1, + anon_sym_POUND, + STATE(1051), 1, + sym_call_expression, + STATE(1149), 1, + sym_member_expression, + STATE(1286), 1, + sym__signed_unary_expression, + STATE(13408), 1, + sym__callable_expression, + ACTIONS(12995), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17307), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17309), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1297), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [181776] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12971), 1, + sym_identifier, + ACTIONS(12973), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12975), 1, + anon_sym_DOT, + ACTIONS(12977), 1, + anon_sym_BANG, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12983), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12985), 1, + anon_sym_PLUS, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12989), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12991), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12999), 1, + anon_sym_POUND, + STATE(1051), 1, + sym_call_expression, + STATE(1149), 1, + sym_member_expression, + STATE(1286), 1, + sym__signed_unary_expression, + STATE(13408), 1, + sym__callable_expression, + ACTIONS(12995), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17311), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17313), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1278), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [181865] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12971), 1, + sym_identifier, + ACTIONS(12973), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12975), 1, + anon_sym_DOT, + ACTIONS(12977), 1, + anon_sym_BANG, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12983), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12985), 1, + anon_sym_PLUS, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12989), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12991), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12999), 1, + anon_sym_POUND, + STATE(1051), 1, + sym_call_expression, + STATE(1149), 1, + sym_member_expression, + STATE(1286), 1, + sym__signed_unary_expression, + STATE(13408), 1, + sym__callable_expression, + ACTIONS(12995), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17315), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17317), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1155), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [181954] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12971), 1, + sym_identifier, + ACTIONS(12973), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12975), 1, + anon_sym_DOT, + ACTIONS(12977), 1, + anon_sym_BANG, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12983), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12985), 1, + anon_sym_PLUS, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12989), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12991), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12999), 1, + anon_sym_POUND, + STATE(1051), 1, + sym_call_expression, + STATE(1149), 1, + sym_member_expression, + STATE(1286), 1, + sym__signed_unary_expression, + STATE(13408), 1, + sym__callable_expression, + ACTIONS(12995), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17319), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17321), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1215), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [182043] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12971), 1, + sym_identifier, + ACTIONS(12973), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12975), 1, + anon_sym_DOT, + ACTIONS(12977), 1, + anon_sym_BANG, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12983), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12985), 1, + anon_sym_PLUS, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12989), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12991), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12999), 1, + anon_sym_POUND, + STATE(1051), 1, + sym_call_expression, + STATE(1149), 1, + sym_member_expression, + STATE(1286), 1, + sym__signed_unary_expression, + STATE(13408), 1, + sym__callable_expression, + ACTIONS(12995), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17323), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17325), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1232), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [182132] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12971), 1, + sym_identifier, + ACTIONS(12973), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12975), 1, + anon_sym_DOT, + ACTIONS(12977), 1, + anon_sym_BANG, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12983), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12985), 1, + anon_sym_PLUS, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12989), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12991), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12999), 1, + anon_sym_POUND, + STATE(1051), 1, + sym_call_expression, + STATE(1149), 1, + sym_member_expression, + STATE(1286), 1, + sym__signed_unary_expression, + STATE(13408), 1, + sym__callable_expression, + ACTIONS(12995), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17327), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17329), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1330), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [182221] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12971), 1, + sym_identifier, + ACTIONS(12973), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12975), 1, + anon_sym_DOT, + ACTIONS(12977), 1, + anon_sym_BANG, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12983), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12985), 1, + anon_sym_PLUS, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12989), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12991), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12999), 1, + anon_sym_POUND, + STATE(1051), 1, + sym_call_expression, + STATE(1149), 1, + sym_member_expression, + STATE(1286), 1, + sym__signed_unary_expression, + STATE(13408), 1, + sym__callable_expression, + ACTIONS(12995), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17331), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17333), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1410), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [182310] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12045), 1, + sym_identifier, + ACTIONS(12047), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12049), 1, + anon_sym_DOT, + ACTIONS(12051), 1, + anon_sym_BANG, + ACTIONS(12053), 1, + anon_sym_LPAREN, + ACTIONS(12055), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12057), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12059), 1, + anon_sym_PLUS, + ACTIONS(12061), 1, + anon_sym_DASH, + ACTIONS(12063), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12065), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12075), 1, + anon_sym_POUND, + ACTIONS(12269), 1, + aux_sym_unary_expression_token1, + STATE(10141), 1, + sym_call_expression, + STATE(10150), 1, + sym_member_expression, + STATE(10229), 1, + sym__signed_unary_expression, + STATE(13495), 1, + sym__callable_expression, + ACTIONS(12071), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17335), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17337), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10224), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [182399] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12971), 1, + sym_identifier, + ACTIONS(12973), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12975), 1, + anon_sym_DOT, + ACTIONS(12977), 1, + anon_sym_BANG, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12983), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12985), 1, + anon_sym_PLUS, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12989), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12991), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12999), 1, + anon_sym_POUND, + STATE(1051), 1, + sym_call_expression, + STATE(1149), 1, + sym_member_expression, + STATE(1286), 1, + sym__signed_unary_expression, + STATE(13408), 1, + sym__callable_expression, + ACTIONS(12995), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17339), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17341), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1429), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [182488] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12375), 1, + aux_sym_unary_expression_token1, + ACTIONS(13473), 1, + sym_identifier, + ACTIONS(13475), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13477), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_BANG, + ACTIONS(13481), 1, + anon_sym_LPAREN, + ACTIONS(13483), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13485), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13487), 1, + anon_sym_PLUS, + ACTIONS(13489), 1, + anon_sym_DASH, + ACTIONS(13491), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13493), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13501), 1, + anon_sym_POUND, + STATE(2229), 1, + sym_call_expression, + STATE(2392), 1, + sym_member_expression, + STATE(2426), 1, + sym__signed_unary_expression, + STATE(13430), 1, + sym__callable_expression, + ACTIONS(13497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2358), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17343), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17345), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2399), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [182577] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12375), 1, + aux_sym_unary_expression_token1, + ACTIONS(13473), 1, + sym_identifier, + ACTIONS(13475), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13477), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_BANG, + ACTIONS(13481), 1, + anon_sym_LPAREN, + ACTIONS(13483), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13485), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13487), 1, + anon_sym_PLUS, + ACTIONS(13489), 1, + anon_sym_DASH, + ACTIONS(13491), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13493), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13501), 1, + anon_sym_POUND, + STATE(2229), 1, + sym_call_expression, + STATE(2392), 1, + sym_member_expression, + STATE(2426), 1, + sym__signed_unary_expression, + STATE(13430), 1, + sym__callable_expression, + ACTIONS(13497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2358), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17347), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17349), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2483), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [182666] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12375), 1, + aux_sym_unary_expression_token1, + ACTIONS(13473), 1, + sym_identifier, + ACTIONS(13475), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13477), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_BANG, + ACTIONS(13481), 1, + anon_sym_LPAREN, + ACTIONS(13483), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13485), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13487), 1, + anon_sym_PLUS, + ACTIONS(13489), 1, + anon_sym_DASH, + ACTIONS(13491), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13493), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13501), 1, + anon_sym_POUND, + STATE(2229), 1, + sym_call_expression, + STATE(2392), 1, + sym_member_expression, + STATE(2426), 1, + sym__signed_unary_expression, + STATE(13430), 1, + sym__callable_expression, + ACTIONS(13497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2358), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17351), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17353), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2486), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [182755] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12375), 1, + aux_sym_unary_expression_token1, + ACTIONS(13473), 1, + sym_identifier, + ACTIONS(13475), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13477), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_BANG, + ACTIONS(13481), 1, + anon_sym_LPAREN, + ACTIONS(13483), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13485), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13487), 1, + anon_sym_PLUS, + ACTIONS(13489), 1, + anon_sym_DASH, + ACTIONS(13491), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13493), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13501), 1, + anon_sym_POUND, + STATE(2229), 1, + sym_call_expression, + STATE(2392), 1, + sym_member_expression, + STATE(2426), 1, + sym__signed_unary_expression, + STATE(13430), 1, + sym__callable_expression, + ACTIONS(13497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2358), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17355), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17357), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2488), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [182844] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12375), 1, + aux_sym_unary_expression_token1, + ACTIONS(13473), 1, + sym_identifier, + ACTIONS(13475), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13477), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_BANG, + ACTIONS(13481), 1, + anon_sym_LPAREN, + ACTIONS(13483), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13485), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13487), 1, + anon_sym_PLUS, + ACTIONS(13489), 1, + anon_sym_DASH, + ACTIONS(13491), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13493), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13501), 1, + anon_sym_POUND, + STATE(2229), 1, + sym_call_expression, + STATE(2392), 1, + sym_member_expression, + STATE(2426), 1, + sym__signed_unary_expression, + STATE(13430), 1, + sym__callable_expression, + ACTIONS(13497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2358), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17359), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17361), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2493), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [182933] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12375), 1, + aux_sym_unary_expression_token1, + ACTIONS(13473), 1, + sym_identifier, + ACTIONS(13475), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13477), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_BANG, + ACTIONS(13481), 1, + anon_sym_LPAREN, + ACTIONS(13483), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13485), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13487), 1, + anon_sym_PLUS, + ACTIONS(13489), 1, + anon_sym_DASH, + ACTIONS(13491), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13493), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13501), 1, + anon_sym_POUND, + STATE(2229), 1, + sym_call_expression, + STATE(2392), 1, + sym_member_expression, + STATE(2426), 1, + sym__signed_unary_expression, + STATE(13430), 1, + sym__callable_expression, + ACTIONS(13497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2358), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17363), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17365), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2494), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [183022] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12375), 1, + aux_sym_unary_expression_token1, + ACTIONS(13473), 1, + sym_identifier, + ACTIONS(13475), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13477), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_BANG, + ACTIONS(13481), 1, + anon_sym_LPAREN, + ACTIONS(13483), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13485), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13487), 1, + anon_sym_PLUS, + ACTIONS(13489), 1, + anon_sym_DASH, + ACTIONS(13491), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13493), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13501), 1, + anon_sym_POUND, + STATE(2229), 1, + sym_call_expression, + STATE(2392), 1, + sym_member_expression, + STATE(2426), 1, + sym__signed_unary_expression, + STATE(13430), 1, + sym__callable_expression, + ACTIONS(13497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2358), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17367), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17369), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2495), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [183111] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12375), 1, + aux_sym_unary_expression_token1, + ACTIONS(13473), 1, + sym_identifier, + ACTIONS(13475), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13477), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_BANG, + ACTIONS(13481), 1, + anon_sym_LPAREN, + ACTIONS(13483), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13485), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13487), 1, + anon_sym_PLUS, + ACTIONS(13489), 1, + anon_sym_DASH, + ACTIONS(13491), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13493), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13501), 1, + anon_sym_POUND, + STATE(2229), 1, + sym_call_expression, + STATE(2392), 1, + sym_member_expression, + STATE(2426), 1, + sym__signed_unary_expression, + STATE(13430), 1, + sym__callable_expression, + ACTIONS(13497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2358), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17371), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17373), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2496), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [183200] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12375), 1, + aux_sym_unary_expression_token1, + ACTIONS(13473), 1, + sym_identifier, + ACTIONS(13475), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13477), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_BANG, + ACTIONS(13481), 1, + anon_sym_LPAREN, + ACTIONS(13483), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13485), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13487), 1, + anon_sym_PLUS, + ACTIONS(13489), 1, + anon_sym_DASH, + ACTIONS(13491), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13493), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13501), 1, + anon_sym_POUND, + STATE(2229), 1, + sym_call_expression, + STATE(2392), 1, + sym_member_expression, + STATE(2426), 1, + sym__signed_unary_expression, + STATE(13430), 1, + sym__callable_expression, + ACTIONS(13497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2358), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17375), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17377), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2497), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [183289] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12375), 1, + aux_sym_unary_expression_token1, + ACTIONS(13473), 1, + sym_identifier, + ACTIONS(13475), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13477), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_BANG, + ACTIONS(13481), 1, + anon_sym_LPAREN, + ACTIONS(13483), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13485), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13487), 1, + anon_sym_PLUS, + ACTIONS(13489), 1, + anon_sym_DASH, + ACTIONS(13491), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13493), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13501), 1, + anon_sym_POUND, + STATE(2229), 1, + sym_call_expression, + STATE(2392), 1, + sym_member_expression, + STATE(2426), 1, + sym__signed_unary_expression, + STATE(13430), 1, + sym__callable_expression, + ACTIONS(13497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2358), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17379), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17381), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2501), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [183378] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12375), 1, + aux_sym_unary_expression_token1, + ACTIONS(13473), 1, + sym_identifier, + ACTIONS(13475), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13477), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_BANG, + ACTIONS(13481), 1, + anon_sym_LPAREN, + ACTIONS(13483), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13485), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13487), 1, + anon_sym_PLUS, + ACTIONS(13489), 1, + anon_sym_DASH, + ACTIONS(13491), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13493), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13501), 1, + anon_sym_POUND, + STATE(2229), 1, + sym_call_expression, + STATE(2392), 1, + sym_member_expression, + STATE(2426), 1, + sym__signed_unary_expression, + STATE(13430), 1, + sym__callable_expression, + ACTIONS(13497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2358), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17383), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17385), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2503), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [183467] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12375), 1, + aux_sym_unary_expression_token1, + ACTIONS(13473), 1, + sym_identifier, + ACTIONS(13475), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13477), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_BANG, + ACTIONS(13481), 1, + anon_sym_LPAREN, + ACTIONS(13483), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13485), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13487), 1, + anon_sym_PLUS, + ACTIONS(13489), 1, + anon_sym_DASH, + ACTIONS(13491), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13493), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13501), 1, + anon_sym_POUND, + STATE(2229), 1, + sym_call_expression, + STATE(2392), 1, + sym_member_expression, + STATE(2426), 1, + sym__signed_unary_expression, + STATE(13430), 1, + sym__callable_expression, + ACTIONS(13497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2358), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17387), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17389), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2520), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [183556] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12293), 1, + aux_sym_unary_expression_token1, + ACTIONS(13091), 1, + sym_identifier, + ACTIONS(13093), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13095), 1, + anon_sym_DOT, + ACTIONS(13097), 1, + anon_sym_BANG, + ACTIONS(13099), 1, + anon_sym_LPAREN, + ACTIONS(13101), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13103), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13105), 1, + anon_sym_PLUS, + ACTIONS(13107), 1, + anon_sym_DASH, + ACTIONS(13109), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13111), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13119), 1, + anon_sym_POUND, + STATE(1478), 1, + sym_call_expression, + STATE(2014), 1, + sym_member_expression, + STATE(2123), 1, + sym__signed_unary_expression, + STATE(13390), 1, + sym__callable_expression, + ACTIONS(13115), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2022), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17391), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17393), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2032), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [183645] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12871), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13905), 1, + anon_sym_PLUS, + ACTIONS(13907), 1, + anon_sym_DASH, + ACTIONS(13913), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17395), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17397), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7368), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [183734] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17399), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17401), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10970), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [183823] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17403), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17405), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10475), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [183912] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17407), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17409), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2761), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [184001] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17411), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17413), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2709), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [184090] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17415), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17417), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2710), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [184179] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17419), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17421), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2718), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [184268] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17423), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17425), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2724), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [184357] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17427), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17429), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2730), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [184446] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17431), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17433), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2731), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [184535] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17435), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17437), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2737), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [184624] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17439), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17441), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2746), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [184713] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17443), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17445), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2756), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [184802] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17447), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17449), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2757), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [184891] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17451), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17453), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2759), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [184980] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12331), 1, + aux_sym_unary_expression_token1, + ACTIONS(12971), 1, + sym_identifier, + ACTIONS(12973), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12975), 1, + anon_sym_DOT, + ACTIONS(12977), 1, + anon_sym_BANG, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12983), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12985), 1, + anon_sym_PLUS, + ACTIONS(12987), 1, + anon_sym_DASH, + ACTIONS(12989), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12991), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12999), 1, + anon_sym_POUND, + STATE(1051), 1, + sym_call_expression, + STATE(1149), 1, + sym_member_expression, + STATE(1286), 1, + sym__signed_unary_expression, + STATE(13408), 1, + sym__callable_expression, + ACTIONS(12995), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17455), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17457), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1448), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [185069] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17459), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17461), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2735), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [185158] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12871), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13905), 1, + anon_sym_PLUS, + ACTIONS(13907), 1, + anon_sym_DASH, + ACTIONS(13913), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17463), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17465), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7362), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [185247] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12385), 1, + aux_sym_unary_expression_token1, + ACTIONS(14435), 1, + anon_sym_PLUS, + ACTIONS(14437), 1, + anon_sym_DASH, + ACTIONS(14443), 1, + anon_sym_POUND, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17467), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17469), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2779), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [185336] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12385), 1, + aux_sym_unary_expression_token1, + ACTIONS(14435), 1, + anon_sym_PLUS, + ACTIONS(14437), 1, + anon_sym_DASH, + ACTIONS(14443), 1, + anon_sym_POUND, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17471), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17473), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2780), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [185425] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12385), 1, + aux_sym_unary_expression_token1, + ACTIONS(14435), 1, + anon_sym_PLUS, + ACTIONS(14437), 1, + anon_sym_DASH, + ACTIONS(14443), 1, + anon_sym_POUND, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17475), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17477), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2781), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [185514] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12385), 1, + aux_sym_unary_expression_token1, + ACTIONS(14435), 1, + anon_sym_PLUS, + ACTIONS(14437), 1, + anon_sym_DASH, + ACTIONS(14443), 1, + anon_sym_POUND, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17479), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17481), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2782), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [185603] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12385), 1, + aux_sym_unary_expression_token1, + ACTIONS(14435), 1, + anon_sym_PLUS, + ACTIONS(14437), 1, + anon_sym_DASH, + ACTIONS(14443), 1, + anon_sym_POUND, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17483), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17485), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2783), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [185692] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12385), 1, + aux_sym_unary_expression_token1, + ACTIONS(14435), 1, + anon_sym_PLUS, + ACTIONS(14437), 1, + anon_sym_DASH, + ACTIONS(14443), 1, + anon_sym_POUND, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17487), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17489), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2784), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [185781] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12385), 1, + aux_sym_unary_expression_token1, + ACTIONS(14435), 1, + anon_sym_PLUS, + ACTIONS(14437), 1, + anon_sym_DASH, + ACTIONS(14443), 1, + anon_sym_POUND, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17491), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17493), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2785), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [185870] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12385), 1, + aux_sym_unary_expression_token1, + ACTIONS(14435), 1, + anon_sym_PLUS, + ACTIONS(14437), 1, + anon_sym_DASH, + ACTIONS(14443), 1, + anon_sym_POUND, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17495), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17497), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2786), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [185959] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12385), 1, + aux_sym_unary_expression_token1, + ACTIONS(14435), 1, + anon_sym_PLUS, + ACTIONS(14437), 1, + anon_sym_DASH, + ACTIONS(14443), 1, + anon_sym_POUND, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17499), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17501), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2787), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [186048] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12385), 1, + aux_sym_unary_expression_token1, + ACTIONS(14435), 1, + anon_sym_PLUS, + ACTIONS(14437), 1, + anon_sym_DASH, + ACTIONS(14443), 1, + anon_sym_POUND, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17503), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17505), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2788), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [186137] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12385), 1, + aux_sym_unary_expression_token1, + ACTIONS(14435), 1, + anon_sym_PLUS, + ACTIONS(14437), 1, + anon_sym_DASH, + ACTIONS(14443), 1, + anon_sym_POUND, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17507), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17509), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2789), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [186226] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12385), 1, + aux_sym_unary_expression_token1, + ACTIONS(14435), 1, + anon_sym_PLUS, + ACTIONS(14437), 1, + anon_sym_DASH, + ACTIONS(14443), 1, + anon_sym_POUND, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17511), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17513), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2790), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [186315] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12079), 1, + sym_identifier, + ACTIONS(12081), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12083), 1, + anon_sym_DOT, + ACTIONS(12085), 1, + anon_sym_BANG, + ACTIONS(12087), 1, + anon_sym_LPAREN, + ACTIONS(12089), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12091), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12093), 1, + anon_sym_PLUS, + ACTIONS(12095), 1, + anon_sym_DASH, + ACTIONS(12097), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12099), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12109), 1, + anon_sym_POUND, + ACTIONS(12347), 1, + aux_sym_unary_expression_token1, + STATE(436), 1, + sym_call_expression, + STATE(476), 1, + sym_member_expression, + STATE(562), 1, + sym__signed_unary_expression, + STATE(13465), 1, + sym__callable_expression, + ACTIONS(12105), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(493), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17515), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17517), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(532), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [186404] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12385), 1, + aux_sym_unary_expression_token1, + ACTIONS(14435), 1, + anon_sym_PLUS, + ACTIONS(14437), 1, + anon_sym_DASH, + ACTIONS(14443), 1, + anon_sym_POUND, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17519), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17521), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2778), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [186493] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(13285), 1, + sym_identifier, + ACTIONS(13287), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13289), 1, + anon_sym_DOT, + ACTIONS(13291), 1, + anon_sym_BANG, + ACTIONS(13293), 1, + anon_sym_LPAREN, + ACTIONS(13295), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13297), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13299), 1, + anon_sym_PLUS, + ACTIONS(13301), 1, + anon_sym_DASH, + ACTIONS(13303), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13305), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13313), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_call_expression, + STATE(2923), 1, + sym__signed_unary_expression, + STATE(3141), 1, + sym_member_expression, + STATE(13442), 1, + sym__callable_expression, + ACTIONS(13309), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17523), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17525), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3044), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [186582] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(13285), 1, + sym_identifier, + ACTIONS(13287), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13289), 1, + anon_sym_DOT, + ACTIONS(13291), 1, + anon_sym_BANG, + ACTIONS(13293), 1, + anon_sym_LPAREN, + ACTIONS(13295), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13297), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13299), 1, + anon_sym_PLUS, + ACTIONS(13301), 1, + anon_sym_DASH, + ACTIONS(13303), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13305), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13313), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_call_expression, + STATE(2923), 1, + sym__signed_unary_expression, + STATE(3141), 1, + sym_member_expression, + STATE(13442), 1, + sym__callable_expression, + ACTIONS(13309), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17527), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17529), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3111), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [186671] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(13285), 1, + sym_identifier, + ACTIONS(13287), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13289), 1, + anon_sym_DOT, + ACTIONS(13291), 1, + anon_sym_BANG, + ACTIONS(13293), 1, + anon_sym_LPAREN, + ACTIONS(13295), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13297), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13299), 1, + anon_sym_PLUS, + ACTIONS(13301), 1, + anon_sym_DASH, + ACTIONS(13303), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13305), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13313), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_call_expression, + STATE(2923), 1, + sym__signed_unary_expression, + STATE(3141), 1, + sym_member_expression, + STATE(13442), 1, + sym__callable_expression, + ACTIONS(13309), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17531), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17533), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3113), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [186760] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(13285), 1, + sym_identifier, + ACTIONS(13287), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13289), 1, + anon_sym_DOT, + ACTIONS(13291), 1, + anon_sym_BANG, + ACTIONS(13293), 1, + anon_sym_LPAREN, + ACTIONS(13295), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13297), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13299), 1, + anon_sym_PLUS, + ACTIONS(13301), 1, + anon_sym_DASH, + ACTIONS(13303), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13305), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13313), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_call_expression, + STATE(2923), 1, + sym__signed_unary_expression, + STATE(3141), 1, + sym_member_expression, + STATE(13442), 1, + sym__callable_expression, + ACTIONS(13309), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17535), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17537), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3114), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [186849] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(13285), 1, + sym_identifier, + ACTIONS(13287), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13289), 1, + anon_sym_DOT, + ACTIONS(13291), 1, + anon_sym_BANG, + ACTIONS(13293), 1, + anon_sym_LPAREN, + ACTIONS(13295), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13297), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13299), 1, + anon_sym_PLUS, + ACTIONS(13301), 1, + anon_sym_DASH, + ACTIONS(13303), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13305), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13313), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_call_expression, + STATE(2923), 1, + sym__signed_unary_expression, + STATE(3141), 1, + sym_member_expression, + STATE(13442), 1, + sym__callable_expression, + ACTIONS(13309), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17539), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17541), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3115), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [186938] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(13285), 1, + sym_identifier, + ACTIONS(13287), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13289), 1, + anon_sym_DOT, + ACTIONS(13291), 1, + anon_sym_BANG, + ACTIONS(13293), 1, + anon_sym_LPAREN, + ACTIONS(13295), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13297), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13299), 1, + anon_sym_PLUS, + ACTIONS(13301), 1, + anon_sym_DASH, + ACTIONS(13303), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13305), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13313), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_call_expression, + STATE(2923), 1, + sym__signed_unary_expression, + STATE(3141), 1, + sym_member_expression, + STATE(13442), 1, + sym__callable_expression, + ACTIONS(13309), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17543), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17545), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3116), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [187027] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(13285), 1, + sym_identifier, + ACTIONS(13287), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13289), 1, + anon_sym_DOT, + ACTIONS(13291), 1, + anon_sym_BANG, + ACTIONS(13293), 1, + anon_sym_LPAREN, + ACTIONS(13295), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13297), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13299), 1, + anon_sym_PLUS, + ACTIONS(13301), 1, + anon_sym_DASH, + ACTIONS(13303), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13305), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13313), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_call_expression, + STATE(2923), 1, + sym__signed_unary_expression, + STATE(3141), 1, + sym_member_expression, + STATE(13442), 1, + sym__callable_expression, + ACTIONS(13309), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17549), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3117), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [187116] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(13285), 1, + sym_identifier, + ACTIONS(13287), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13289), 1, + anon_sym_DOT, + ACTIONS(13291), 1, + anon_sym_BANG, + ACTIONS(13293), 1, + anon_sym_LPAREN, + ACTIONS(13295), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13297), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13299), 1, + anon_sym_PLUS, + ACTIONS(13301), 1, + anon_sym_DASH, + ACTIONS(13303), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13305), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13313), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_call_expression, + STATE(2923), 1, + sym__signed_unary_expression, + STATE(3141), 1, + sym_member_expression, + STATE(13442), 1, + sym__callable_expression, + ACTIONS(13309), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17551), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17553), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3118), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [187205] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(13285), 1, + sym_identifier, + ACTIONS(13287), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13289), 1, + anon_sym_DOT, + ACTIONS(13291), 1, + anon_sym_BANG, + ACTIONS(13293), 1, + anon_sym_LPAREN, + ACTIONS(13295), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13297), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13299), 1, + anon_sym_PLUS, + ACTIONS(13301), 1, + anon_sym_DASH, + ACTIONS(13303), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13305), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13313), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_call_expression, + STATE(2923), 1, + sym__signed_unary_expression, + STATE(3141), 1, + sym_member_expression, + STATE(13442), 1, + sym__callable_expression, + ACTIONS(13309), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17555), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17557), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3119), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [187294] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(13285), 1, + sym_identifier, + ACTIONS(13287), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13289), 1, + anon_sym_DOT, + ACTIONS(13291), 1, + anon_sym_BANG, + ACTIONS(13293), 1, + anon_sym_LPAREN, + ACTIONS(13295), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13297), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13299), 1, + anon_sym_PLUS, + ACTIONS(13301), 1, + anon_sym_DASH, + ACTIONS(13303), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13305), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13313), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_call_expression, + STATE(2923), 1, + sym__signed_unary_expression, + STATE(3141), 1, + sym_member_expression, + STATE(13442), 1, + sym__callable_expression, + ACTIONS(13309), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17559), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17561), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3120), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [187383] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(13285), 1, + sym_identifier, + ACTIONS(13287), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13289), 1, + anon_sym_DOT, + ACTIONS(13291), 1, + anon_sym_BANG, + ACTIONS(13293), 1, + anon_sym_LPAREN, + ACTIONS(13295), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13297), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13299), 1, + anon_sym_PLUS, + ACTIONS(13301), 1, + anon_sym_DASH, + ACTIONS(13303), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13305), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13313), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_call_expression, + STATE(2923), 1, + sym__signed_unary_expression, + STATE(3141), 1, + sym_member_expression, + STATE(13442), 1, + sym__callable_expression, + ACTIONS(13309), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17563), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17565), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3132), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [187472] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(13285), 1, + sym_identifier, + ACTIONS(13287), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13289), 1, + anon_sym_DOT, + ACTIONS(13291), 1, + anon_sym_BANG, + ACTIONS(13293), 1, + anon_sym_LPAREN, + ACTIONS(13295), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13297), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13299), 1, + anon_sym_PLUS, + ACTIONS(13301), 1, + anon_sym_DASH, + ACTIONS(13303), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13305), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13313), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_call_expression, + STATE(2923), 1, + sym__signed_unary_expression, + STATE(3141), 1, + sym_member_expression, + STATE(13442), 1, + sym__callable_expression, + ACTIONS(13309), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17567), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17569), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3133), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [187561] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12375), 1, + aux_sym_unary_expression_token1, + ACTIONS(13473), 1, + sym_identifier, + ACTIONS(13475), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13477), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_BANG, + ACTIONS(13481), 1, + anon_sym_LPAREN, + ACTIONS(13483), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13485), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13487), 1, + anon_sym_PLUS, + ACTIONS(13489), 1, + anon_sym_DASH, + ACTIONS(13491), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13493), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13501), 1, + anon_sym_POUND, + STATE(2229), 1, + sym_call_expression, + STATE(2392), 1, + sym_member_expression, + STATE(2426), 1, + sym__signed_unary_expression, + STATE(13430), 1, + sym__callable_expression, + ACTIONS(13497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2358), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17571), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17573), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2499), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [187650] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(13285), 1, + sym_identifier, + ACTIONS(13287), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13289), 1, + anon_sym_DOT, + ACTIONS(13291), 1, + anon_sym_BANG, + ACTIONS(13293), 1, + anon_sym_LPAREN, + ACTIONS(13295), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13297), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13299), 1, + anon_sym_PLUS, + ACTIONS(13301), 1, + anon_sym_DASH, + ACTIONS(13303), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13305), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13313), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_call_expression, + STATE(2923), 1, + sym__signed_unary_expression, + STATE(3141), 1, + sym_member_expression, + STATE(13442), 1, + sym__callable_expression, + ACTIONS(13309), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17575), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17577), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3027), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [187739] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12439), 1, + aux_sym_unary_expression_token1, + ACTIONS(13919), 1, + anon_sym_PLUS, + ACTIONS(13921), 1, + anon_sym_DASH, + ACTIONS(13927), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17579), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17581), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10438), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [187828] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12439), 1, + aux_sym_unary_expression_token1, + ACTIONS(13919), 1, + anon_sym_PLUS, + ACTIONS(13921), 1, + anon_sym_DASH, + ACTIONS(13927), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17583), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10439), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [187917] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12439), 1, + aux_sym_unary_expression_token1, + ACTIONS(13919), 1, + anon_sym_PLUS, + ACTIONS(13921), 1, + anon_sym_DASH, + ACTIONS(13927), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17587), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17589), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10440), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [188006] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12439), 1, + aux_sym_unary_expression_token1, + ACTIONS(13919), 1, + anon_sym_PLUS, + ACTIONS(13921), 1, + anon_sym_DASH, + ACTIONS(13927), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17591), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17593), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10441), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [188095] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12439), 1, + aux_sym_unary_expression_token1, + ACTIONS(13919), 1, + anon_sym_PLUS, + ACTIONS(13921), 1, + anon_sym_DASH, + ACTIONS(13927), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17595), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17597), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10442), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [188184] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12439), 1, + aux_sym_unary_expression_token1, + ACTIONS(13919), 1, + anon_sym_PLUS, + ACTIONS(13921), 1, + anon_sym_DASH, + ACTIONS(13927), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17599), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17601), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10443), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [188273] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12439), 1, + aux_sym_unary_expression_token1, + ACTIONS(13919), 1, + anon_sym_PLUS, + ACTIONS(13921), 1, + anon_sym_DASH, + ACTIONS(13927), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17603), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17605), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10444), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [188362] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12439), 1, + aux_sym_unary_expression_token1, + ACTIONS(13919), 1, + anon_sym_PLUS, + ACTIONS(13921), 1, + anon_sym_DASH, + ACTIONS(13927), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17607), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17609), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10445), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [188451] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12439), 1, + aux_sym_unary_expression_token1, + ACTIONS(13919), 1, + anon_sym_PLUS, + ACTIONS(13921), 1, + anon_sym_DASH, + ACTIONS(13927), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17611), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17613), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10446), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [188540] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12439), 1, + aux_sym_unary_expression_token1, + ACTIONS(13919), 1, + anon_sym_PLUS, + ACTIONS(13921), 1, + anon_sym_DASH, + ACTIONS(13927), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17615), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17617), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10447), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [188629] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12439), 1, + aux_sym_unary_expression_token1, + ACTIONS(13919), 1, + anon_sym_PLUS, + ACTIONS(13921), 1, + anon_sym_DASH, + ACTIONS(13927), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17619), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17621), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10448), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [188718] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12439), 1, + aux_sym_unary_expression_token1, + ACTIONS(13919), 1, + anon_sym_PLUS, + ACTIONS(13921), 1, + anon_sym_DASH, + ACTIONS(13927), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17623), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17625), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10449), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [188807] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17627), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17629), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2889), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [188896] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12439), 1, + aux_sym_unary_expression_token1, + ACTIONS(13919), 1, + anon_sym_PLUS, + ACTIONS(13921), 1, + anon_sym_DASH, + ACTIONS(13927), 1, + anon_sym_POUND, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17631), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17633), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10437), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [188985] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12237), 1, + sym_identifier, + ACTIONS(12239), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12241), 1, + anon_sym_DOT, + ACTIONS(12243), 1, + anon_sym_BANG, + ACTIONS(12245), 1, + anon_sym_LPAREN, + ACTIONS(12247), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12249), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12251), 1, + anon_sym_PLUS, + ACTIONS(12253), 1, + anon_sym_DASH, + ACTIONS(12255), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12257), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12267), 1, + anon_sym_POUND, + ACTIONS(12533), 1, + aux_sym_unary_expression_token1, + STATE(1445), 1, + sym_call_expression, + STATE(1541), 1, + sym__signed_unary_expression, + STATE(1565), 1, + sym_member_expression, + STATE(13524), 1, + sym__callable_expression, + ACTIONS(12263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1644), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17635), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17637), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1527), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [189074] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12237), 1, + sym_identifier, + ACTIONS(12239), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12241), 1, + anon_sym_DOT, + ACTIONS(12243), 1, + anon_sym_BANG, + ACTIONS(12245), 1, + anon_sym_LPAREN, + ACTIONS(12247), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12249), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12251), 1, + anon_sym_PLUS, + ACTIONS(12253), 1, + anon_sym_DASH, + ACTIONS(12255), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12257), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12267), 1, + anon_sym_POUND, + ACTIONS(12533), 1, + aux_sym_unary_expression_token1, + STATE(1445), 1, + sym_call_expression, + STATE(1541), 1, + sym__signed_unary_expression, + STATE(1565), 1, + sym_member_expression, + STATE(13524), 1, + sym__callable_expression, + ACTIONS(12263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1644), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17639), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17641), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1545), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [189163] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12237), 1, + sym_identifier, + ACTIONS(12239), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12241), 1, + anon_sym_DOT, + ACTIONS(12243), 1, + anon_sym_BANG, + ACTIONS(12245), 1, + anon_sym_LPAREN, + ACTIONS(12247), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12249), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12251), 1, + anon_sym_PLUS, + ACTIONS(12253), 1, + anon_sym_DASH, + ACTIONS(12255), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12257), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12267), 1, + anon_sym_POUND, + ACTIONS(12533), 1, + aux_sym_unary_expression_token1, + STATE(1445), 1, + sym_call_expression, + STATE(1541), 1, + sym__signed_unary_expression, + STATE(1565), 1, + sym_member_expression, + STATE(13524), 1, + sym__callable_expression, + ACTIONS(12263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1644), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17643), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17645), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1546), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [189252] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12237), 1, + sym_identifier, + ACTIONS(12239), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12241), 1, + anon_sym_DOT, + ACTIONS(12243), 1, + anon_sym_BANG, + ACTIONS(12245), 1, + anon_sym_LPAREN, + ACTIONS(12247), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12249), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12251), 1, + anon_sym_PLUS, + ACTIONS(12253), 1, + anon_sym_DASH, + ACTIONS(12255), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12257), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12267), 1, + anon_sym_POUND, + ACTIONS(12533), 1, + aux_sym_unary_expression_token1, + STATE(1445), 1, + sym_call_expression, + STATE(1541), 1, + sym__signed_unary_expression, + STATE(1565), 1, + sym_member_expression, + STATE(13524), 1, + sym__callable_expression, + ACTIONS(12263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1644), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17647), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17649), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1547), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [189341] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12237), 1, + sym_identifier, + ACTIONS(12239), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12241), 1, + anon_sym_DOT, + ACTIONS(12243), 1, + anon_sym_BANG, + ACTIONS(12245), 1, + anon_sym_LPAREN, + ACTIONS(12247), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12249), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12251), 1, + anon_sym_PLUS, + ACTIONS(12253), 1, + anon_sym_DASH, + ACTIONS(12255), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12257), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12267), 1, + anon_sym_POUND, + ACTIONS(12533), 1, + aux_sym_unary_expression_token1, + STATE(1445), 1, + sym_call_expression, + STATE(1541), 1, + sym__signed_unary_expression, + STATE(1565), 1, + sym_member_expression, + STATE(13524), 1, + sym__callable_expression, + ACTIONS(12263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1644), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17651), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17653), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1548), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [189430] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12237), 1, + sym_identifier, + ACTIONS(12239), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12241), 1, + anon_sym_DOT, + ACTIONS(12243), 1, + anon_sym_BANG, + ACTIONS(12245), 1, + anon_sym_LPAREN, + ACTIONS(12247), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12249), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12251), 1, + anon_sym_PLUS, + ACTIONS(12253), 1, + anon_sym_DASH, + ACTIONS(12255), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12257), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12267), 1, + anon_sym_POUND, + ACTIONS(12533), 1, + aux_sym_unary_expression_token1, + STATE(1445), 1, + sym_call_expression, + STATE(1541), 1, + sym__signed_unary_expression, + STATE(1565), 1, + sym_member_expression, + STATE(13524), 1, + sym__callable_expression, + ACTIONS(12263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1644), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17655), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17657), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1549), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [189519] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12237), 1, + sym_identifier, + ACTIONS(12239), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12241), 1, + anon_sym_DOT, + ACTIONS(12243), 1, + anon_sym_BANG, + ACTIONS(12245), 1, + anon_sym_LPAREN, + ACTIONS(12247), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12249), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12251), 1, + anon_sym_PLUS, + ACTIONS(12253), 1, + anon_sym_DASH, + ACTIONS(12255), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12257), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12267), 1, + anon_sym_POUND, + ACTIONS(12533), 1, + aux_sym_unary_expression_token1, + STATE(1445), 1, + sym_call_expression, + STATE(1541), 1, + sym__signed_unary_expression, + STATE(1565), 1, + sym_member_expression, + STATE(13524), 1, + sym__callable_expression, + ACTIONS(12263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1644), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17659), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17661), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1550), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [189608] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12237), 1, + sym_identifier, + ACTIONS(12239), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12241), 1, + anon_sym_DOT, + ACTIONS(12243), 1, + anon_sym_BANG, + ACTIONS(12245), 1, + anon_sym_LPAREN, + ACTIONS(12247), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12249), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12251), 1, + anon_sym_PLUS, + ACTIONS(12253), 1, + anon_sym_DASH, + ACTIONS(12255), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12257), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12267), 1, + anon_sym_POUND, + ACTIONS(12533), 1, + aux_sym_unary_expression_token1, + STATE(1445), 1, + sym_call_expression, + STATE(1541), 1, + sym__signed_unary_expression, + STATE(1565), 1, + sym_member_expression, + STATE(13524), 1, + sym__callable_expression, + ACTIONS(12263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1644), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17663), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17665), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1551), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [189697] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12237), 1, + sym_identifier, + ACTIONS(12239), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12241), 1, + anon_sym_DOT, + ACTIONS(12243), 1, + anon_sym_BANG, + ACTIONS(12245), 1, + anon_sym_LPAREN, + ACTIONS(12247), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12249), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12251), 1, + anon_sym_PLUS, + ACTIONS(12253), 1, + anon_sym_DASH, + ACTIONS(12255), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12257), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12267), 1, + anon_sym_POUND, + ACTIONS(12533), 1, + aux_sym_unary_expression_token1, + STATE(1445), 1, + sym_call_expression, + STATE(1541), 1, + sym__signed_unary_expression, + STATE(1565), 1, + sym_member_expression, + STATE(13524), 1, + sym__callable_expression, + ACTIONS(12263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1644), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17667), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17669), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1552), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [189786] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12237), 1, + sym_identifier, + ACTIONS(12239), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12241), 1, + anon_sym_DOT, + ACTIONS(12243), 1, + anon_sym_BANG, + ACTIONS(12245), 1, + anon_sym_LPAREN, + ACTIONS(12247), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12249), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12251), 1, + anon_sym_PLUS, + ACTIONS(12253), 1, + anon_sym_DASH, + ACTIONS(12255), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12257), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12267), 1, + anon_sym_POUND, + ACTIONS(12533), 1, + aux_sym_unary_expression_token1, + STATE(1445), 1, + sym_call_expression, + STATE(1541), 1, + sym__signed_unary_expression, + STATE(1565), 1, + sym_member_expression, + STATE(13524), 1, + sym__callable_expression, + ACTIONS(12263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1644), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17671), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17673), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1460), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [189875] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12237), 1, + sym_identifier, + ACTIONS(12239), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12241), 1, + anon_sym_DOT, + ACTIONS(12243), 1, + anon_sym_BANG, + ACTIONS(12245), 1, + anon_sym_LPAREN, + ACTIONS(12247), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12249), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12251), 1, + anon_sym_PLUS, + ACTIONS(12253), 1, + anon_sym_DASH, + ACTIONS(12255), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12257), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12267), 1, + anon_sym_POUND, + ACTIONS(12533), 1, + aux_sym_unary_expression_token1, + STATE(1445), 1, + sym_call_expression, + STATE(1541), 1, + sym__signed_unary_expression, + STATE(1565), 1, + sym_member_expression, + STATE(13524), 1, + sym__callable_expression, + ACTIONS(12263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1644), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17675), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17677), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1553), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [189964] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12237), 1, + sym_identifier, + ACTIONS(12239), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12241), 1, + anon_sym_DOT, + ACTIONS(12243), 1, + anon_sym_BANG, + ACTIONS(12245), 1, + anon_sym_LPAREN, + ACTIONS(12247), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12249), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12251), 1, + anon_sym_PLUS, + ACTIONS(12253), 1, + anon_sym_DASH, + ACTIONS(12255), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12257), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12267), 1, + anon_sym_POUND, + ACTIONS(12533), 1, + aux_sym_unary_expression_token1, + STATE(1445), 1, + sym_call_expression, + STATE(1541), 1, + sym__signed_unary_expression, + STATE(1565), 1, + sym_member_expression, + STATE(13524), 1, + sym__callable_expression, + ACTIONS(12263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1644), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17679), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17681), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1554), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [190053] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17683), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17685), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2905), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [190142] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12237), 1, + sym_identifier, + ACTIONS(12239), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12241), 1, + anon_sym_DOT, + ACTIONS(12243), 1, + anon_sym_BANG, + ACTIONS(12245), 1, + anon_sym_LPAREN, + ACTIONS(12247), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12249), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12251), 1, + anon_sym_PLUS, + ACTIONS(12253), 1, + anon_sym_DASH, + ACTIONS(12255), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12257), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12267), 1, + anon_sym_POUND, + ACTIONS(12533), 1, + aux_sym_unary_expression_token1, + STATE(1445), 1, + sym_call_expression, + STATE(1541), 1, + sym__signed_unary_expression, + STATE(1565), 1, + sym_member_expression, + STATE(13524), 1, + sym__callable_expression, + ACTIONS(12263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1644), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17687), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17689), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1525), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [190231] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12453), 1, + aux_sym_unary_expression_token1, + ACTIONS(14861), 1, + anon_sym_PLUS, + ACTIONS(14863), 1, + anon_sym_DASH, + ACTIONS(14869), 1, + anon_sym_POUND, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17691), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17693), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2792), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [190320] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12453), 1, + aux_sym_unary_expression_token1, + ACTIONS(14861), 1, + anon_sym_PLUS, + ACTIONS(14863), 1, + anon_sym_DASH, + ACTIONS(14869), 1, + anon_sym_POUND, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17695), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17697), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2793), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [190409] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12453), 1, + aux_sym_unary_expression_token1, + ACTIONS(14861), 1, + anon_sym_PLUS, + ACTIONS(14863), 1, + anon_sym_DASH, + ACTIONS(14869), 1, + anon_sym_POUND, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17699), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17701), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2794), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [190498] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12453), 1, + aux_sym_unary_expression_token1, + ACTIONS(14861), 1, + anon_sym_PLUS, + ACTIONS(14863), 1, + anon_sym_DASH, + ACTIONS(14869), 1, + anon_sym_POUND, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17703), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2795), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [190587] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12453), 1, + aux_sym_unary_expression_token1, + ACTIONS(14861), 1, + anon_sym_PLUS, + ACTIONS(14863), 1, + anon_sym_DASH, + ACTIONS(14869), 1, + anon_sym_POUND, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17707), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17709), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2796), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [190676] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12453), 1, + aux_sym_unary_expression_token1, + ACTIONS(14861), 1, + anon_sym_PLUS, + ACTIONS(14863), 1, + anon_sym_DASH, + ACTIONS(14869), 1, + anon_sym_POUND, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17711), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17713), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2797), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [190765] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12453), 1, + aux_sym_unary_expression_token1, + ACTIONS(14861), 1, + anon_sym_PLUS, + ACTIONS(14863), 1, + anon_sym_DASH, + ACTIONS(14869), 1, + anon_sym_POUND, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17715), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17717), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2798), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [190854] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12453), 1, + aux_sym_unary_expression_token1, + ACTIONS(14861), 1, + anon_sym_PLUS, + ACTIONS(14863), 1, + anon_sym_DASH, + ACTIONS(14869), 1, + anon_sym_POUND, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17719), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17721), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2799), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [190943] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12453), 1, + aux_sym_unary_expression_token1, + ACTIONS(14861), 1, + anon_sym_PLUS, + ACTIONS(14863), 1, + anon_sym_DASH, + ACTIONS(14869), 1, + anon_sym_POUND, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17723), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17725), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2800), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [191032] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12453), 1, + aux_sym_unary_expression_token1, + ACTIONS(14861), 1, + anon_sym_PLUS, + ACTIONS(14863), 1, + anon_sym_DASH, + ACTIONS(14869), 1, + anon_sym_POUND, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17727), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17729), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2801), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [191121] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12453), 1, + aux_sym_unary_expression_token1, + ACTIONS(14861), 1, + anon_sym_PLUS, + ACTIONS(14863), 1, + anon_sym_DASH, + ACTIONS(14869), 1, + anon_sym_POUND, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17731), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17733), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2802), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [191210] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12453), 1, + aux_sym_unary_expression_token1, + ACTIONS(14861), 1, + anon_sym_PLUS, + ACTIONS(14863), 1, + anon_sym_DASH, + ACTIONS(14869), 1, + anon_sym_POUND, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17735), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17737), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2803), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [191299] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1607), 1, + anon_sym_BANG, + ACTIONS(1629), 1, + anon_sym_LPAREN, + ACTIONS(1631), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1697), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1699), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6760), 1, + sym_identifier, + ACTIONS(6762), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6764), 1, + anon_sym_DOT, + ACTIONS(6766), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12385), 1, + aux_sym_unary_expression_token1, + ACTIONS(14435), 1, + anon_sym_PLUS, + ACTIONS(14437), 1, + anon_sym_DASH, + ACTIONS(14443), 1, + anon_sym_POUND, + STATE(2325), 1, + sym_call_expression, + STATE(2406), 1, + sym__signed_unary_expression, + STATE(2485), 1, + sym_member_expression, + STATE(13088), 1, + sym__callable_expression, + ACTIONS(1707), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17739), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2808), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [191388] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(13361), 1, + sym_identifier, + ACTIONS(13363), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13365), 1, + anon_sym_DOT, + ACTIONS(13367), 1, + anon_sym_BANG, + ACTIONS(13369), 1, + anon_sym_LPAREN, + ACTIONS(13371), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13373), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13375), 1, + anon_sym_PLUS, + ACTIONS(13377), 1, + anon_sym_DASH, + ACTIONS(13379), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13381), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13389), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_call_expression, + STATE(2989), 1, + sym__signed_unary_expression, + STATE(3204), 1, + sym_member_expression, + STATE(13648), 1, + sym__callable_expression, + ACTIONS(13385), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17743), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17745), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3092), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [191477] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(13361), 1, + sym_identifier, + ACTIONS(13363), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13365), 1, + anon_sym_DOT, + ACTIONS(13367), 1, + anon_sym_BANG, + ACTIONS(13369), 1, + anon_sym_LPAREN, + ACTIONS(13371), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13373), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13375), 1, + anon_sym_PLUS, + ACTIONS(13377), 1, + anon_sym_DASH, + ACTIONS(13379), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13381), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13389), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_call_expression, + STATE(2989), 1, + sym__signed_unary_expression, + STATE(3204), 1, + sym_member_expression, + STATE(13648), 1, + sym__callable_expression, + ACTIONS(13385), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17747), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17749), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3095), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [191566] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(13361), 1, + sym_identifier, + ACTIONS(13363), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13365), 1, + anon_sym_DOT, + ACTIONS(13367), 1, + anon_sym_BANG, + ACTIONS(13369), 1, + anon_sym_LPAREN, + ACTIONS(13371), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13373), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13375), 1, + anon_sym_PLUS, + ACTIONS(13377), 1, + anon_sym_DASH, + ACTIONS(13379), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13381), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13389), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_call_expression, + STATE(2989), 1, + sym__signed_unary_expression, + STATE(3204), 1, + sym_member_expression, + STATE(13648), 1, + sym__callable_expression, + ACTIONS(13385), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17751), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17753), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3160), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [191655] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(13361), 1, + sym_identifier, + ACTIONS(13363), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13365), 1, + anon_sym_DOT, + ACTIONS(13367), 1, + anon_sym_BANG, + ACTIONS(13369), 1, + anon_sym_LPAREN, + ACTIONS(13371), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13373), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13375), 1, + anon_sym_PLUS, + ACTIONS(13377), 1, + anon_sym_DASH, + ACTIONS(13379), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13381), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13389), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_call_expression, + STATE(2989), 1, + sym__signed_unary_expression, + STATE(3204), 1, + sym_member_expression, + STATE(13648), 1, + sym__callable_expression, + ACTIONS(13385), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17755), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17757), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3161), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [191744] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(13361), 1, + sym_identifier, + ACTIONS(13363), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13365), 1, + anon_sym_DOT, + ACTIONS(13367), 1, + anon_sym_BANG, + ACTIONS(13369), 1, + anon_sym_LPAREN, + ACTIONS(13371), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13373), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13375), 1, + anon_sym_PLUS, + ACTIONS(13377), 1, + anon_sym_DASH, + ACTIONS(13379), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13381), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13389), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_call_expression, + STATE(2989), 1, + sym__signed_unary_expression, + STATE(3204), 1, + sym_member_expression, + STATE(13648), 1, + sym__callable_expression, + ACTIONS(13385), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17759), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17761), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3162), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [191833] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(13361), 1, + sym_identifier, + ACTIONS(13363), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13365), 1, + anon_sym_DOT, + ACTIONS(13367), 1, + anon_sym_BANG, + ACTIONS(13369), 1, + anon_sym_LPAREN, + ACTIONS(13371), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13373), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13375), 1, + anon_sym_PLUS, + ACTIONS(13377), 1, + anon_sym_DASH, + ACTIONS(13379), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13381), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13389), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_call_expression, + STATE(2989), 1, + sym__signed_unary_expression, + STATE(3204), 1, + sym_member_expression, + STATE(13648), 1, + sym__callable_expression, + ACTIONS(13385), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17763), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17765), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3165), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [191922] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(13361), 1, + sym_identifier, + ACTIONS(13363), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13365), 1, + anon_sym_DOT, + ACTIONS(13367), 1, + anon_sym_BANG, + ACTIONS(13369), 1, + anon_sym_LPAREN, + ACTIONS(13371), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13373), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13375), 1, + anon_sym_PLUS, + ACTIONS(13377), 1, + anon_sym_DASH, + ACTIONS(13379), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13381), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13389), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_call_expression, + STATE(2989), 1, + sym__signed_unary_expression, + STATE(3204), 1, + sym_member_expression, + STATE(13648), 1, + sym__callable_expression, + ACTIONS(13385), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17767), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17769), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3166), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [192011] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(13361), 1, + sym_identifier, + ACTIONS(13363), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13365), 1, + anon_sym_DOT, + ACTIONS(13367), 1, + anon_sym_BANG, + ACTIONS(13369), 1, + anon_sym_LPAREN, + ACTIONS(13371), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13373), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13375), 1, + anon_sym_PLUS, + ACTIONS(13377), 1, + anon_sym_DASH, + ACTIONS(13379), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13381), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13389), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_call_expression, + STATE(2989), 1, + sym__signed_unary_expression, + STATE(3204), 1, + sym_member_expression, + STATE(13648), 1, + sym__callable_expression, + ACTIONS(13385), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17771), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17773), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3167), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [192100] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(13361), 1, + sym_identifier, + ACTIONS(13363), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13365), 1, + anon_sym_DOT, + ACTIONS(13367), 1, + anon_sym_BANG, + ACTIONS(13369), 1, + anon_sym_LPAREN, + ACTIONS(13371), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13373), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13375), 1, + anon_sym_PLUS, + ACTIONS(13377), 1, + anon_sym_DASH, + ACTIONS(13379), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13381), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13389), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_call_expression, + STATE(2989), 1, + sym__signed_unary_expression, + STATE(3204), 1, + sym_member_expression, + STATE(13648), 1, + sym__callable_expression, + ACTIONS(13385), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17775), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17777), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3168), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [192189] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(13361), 1, + sym_identifier, + ACTIONS(13363), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13365), 1, + anon_sym_DOT, + ACTIONS(13367), 1, + anon_sym_BANG, + ACTIONS(13369), 1, + anon_sym_LPAREN, + ACTIONS(13371), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13373), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13375), 1, + anon_sym_PLUS, + ACTIONS(13377), 1, + anon_sym_DASH, + ACTIONS(13379), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13381), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13389), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_call_expression, + STATE(2989), 1, + sym__signed_unary_expression, + STATE(3204), 1, + sym_member_expression, + STATE(13648), 1, + sym__callable_expression, + ACTIONS(13385), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17779), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17781), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3169), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [192278] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(13361), 1, + sym_identifier, + ACTIONS(13363), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13365), 1, + anon_sym_DOT, + ACTIONS(13367), 1, + anon_sym_BANG, + ACTIONS(13369), 1, + anon_sym_LPAREN, + ACTIONS(13371), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13373), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13375), 1, + anon_sym_PLUS, + ACTIONS(13377), 1, + anon_sym_DASH, + ACTIONS(13379), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13381), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13389), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_call_expression, + STATE(2989), 1, + sym__signed_unary_expression, + STATE(3204), 1, + sym_member_expression, + STATE(13648), 1, + sym__callable_expression, + ACTIONS(13385), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17783), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17785), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3170), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [192367] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(13361), 1, + sym_identifier, + ACTIONS(13363), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13365), 1, + anon_sym_DOT, + ACTIONS(13367), 1, + anon_sym_BANG, + ACTIONS(13369), 1, + anon_sym_LPAREN, + ACTIONS(13371), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13373), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13375), 1, + anon_sym_PLUS, + ACTIONS(13377), 1, + anon_sym_DASH, + ACTIONS(13379), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13381), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13389), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_call_expression, + STATE(2989), 1, + sym__signed_unary_expression, + STATE(3204), 1, + sym_member_expression, + STATE(13648), 1, + sym__callable_expression, + ACTIONS(13385), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17787), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17789), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3171), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [192456] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(13361), 1, + sym_identifier, + ACTIONS(13363), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13365), 1, + anon_sym_DOT, + ACTIONS(13367), 1, + anon_sym_BANG, + ACTIONS(13369), 1, + anon_sym_LPAREN, + ACTIONS(13371), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13373), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13375), 1, + anon_sym_PLUS, + ACTIONS(13377), 1, + anon_sym_DASH, + ACTIONS(13379), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13381), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13389), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_call_expression, + STATE(2989), 1, + sym__signed_unary_expression, + STATE(3204), 1, + sym_member_expression, + STATE(13648), 1, + sym__callable_expression, + ACTIONS(13385), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17791), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17793), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3172), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [192545] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12413), 1, + aux_sym_unary_expression_token1, + ACTIONS(13285), 1, + sym_identifier, + ACTIONS(13287), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13289), 1, + anon_sym_DOT, + ACTIONS(13291), 1, + anon_sym_BANG, + ACTIONS(13293), 1, + anon_sym_LPAREN, + ACTIONS(13295), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13297), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13299), 1, + anon_sym_PLUS, + ACTIONS(13301), 1, + anon_sym_DASH, + ACTIONS(13303), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13305), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13313), 1, + anon_sym_POUND, + STATE(2776), 1, + sym_call_expression, + STATE(2923), 1, + sym__signed_unary_expression, + STATE(3141), 1, + sym_member_expression, + STATE(13442), 1, + sym__callable_expression, + ACTIONS(13309), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17795), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17797), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2972), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [192634] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12271), 1, + sym_identifier, + ACTIONS(12273), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12275), 1, + anon_sym_DOT, + ACTIONS(12277), 1, + anon_sym_BANG, + ACTIONS(12279), 1, + anon_sym_LPAREN, + ACTIONS(12281), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12283), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12285), 1, + anon_sym_PLUS, + ACTIONS(12287), 1, + anon_sym_DASH, + ACTIONS(12289), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12291), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12301), 1, + anon_sym_POUND, + ACTIONS(12611), 1, + aux_sym_unary_expression_token1, + STATE(586), 1, + sym_call_expression, + STATE(662), 1, + sym_member_expression, + STATE(742), 1, + sym__signed_unary_expression, + STATE(13649), 1, + sym__callable_expression, + ACTIONS(12297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(673), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17799), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17801), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(728), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [192723] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11877), 1, + sym_identifier, + ACTIONS(11879), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11881), 1, + anon_sym_DOT, + ACTIONS(11883), 1, + anon_sym_BANG, + ACTIONS(11885), 1, + anon_sym_LPAREN, + ACTIONS(11887), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11889), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11891), 1, + anon_sym_PLUS, + ACTIONS(11893), 1, + anon_sym_DASH, + ACTIONS(11895), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11897), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11907), 1, + anon_sym_POUND, + ACTIONS(11969), 1, + aux_sym_unary_expression_token1, + STATE(7279), 1, + sym_call_expression, + STATE(7290), 1, + sym__signed_unary_expression, + STATE(7291), 1, + sym_member_expression, + STATE(13414), 1, + sym__callable_expression, + ACTIONS(11903), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17803), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17805), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7326), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [192812] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12271), 1, + sym_identifier, + ACTIONS(12273), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12275), 1, + anon_sym_DOT, + ACTIONS(12277), 1, + anon_sym_BANG, + ACTIONS(12279), 1, + anon_sym_LPAREN, + ACTIONS(12281), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12283), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12285), 1, + anon_sym_PLUS, + ACTIONS(12287), 1, + anon_sym_DASH, + ACTIONS(12289), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12291), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12301), 1, + anon_sym_POUND, + ACTIONS(12611), 1, + aux_sym_unary_expression_token1, + STATE(586), 1, + sym_call_expression, + STATE(662), 1, + sym_member_expression, + STATE(742), 1, + sym__signed_unary_expression, + STATE(13649), 1, + sym__callable_expression, + ACTIONS(12297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(673), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17807), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17809), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(729), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [192901] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12271), 1, + sym_identifier, + ACTIONS(12273), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12275), 1, + anon_sym_DOT, + ACTIONS(12277), 1, + anon_sym_BANG, + ACTIONS(12279), 1, + anon_sym_LPAREN, + ACTIONS(12281), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12283), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12285), 1, + anon_sym_PLUS, + ACTIONS(12287), 1, + anon_sym_DASH, + ACTIONS(12289), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12291), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12301), 1, + anon_sym_POUND, + ACTIONS(12611), 1, + aux_sym_unary_expression_token1, + STATE(586), 1, + sym_call_expression, + STATE(662), 1, + sym_member_expression, + STATE(742), 1, + sym__signed_unary_expression, + STATE(13649), 1, + sym__callable_expression, + ACTIONS(12297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(673), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17811), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17813), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(731), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [192990] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12271), 1, + sym_identifier, + ACTIONS(12273), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12275), 1, + anon_sym_DOT, + ACTIONS(12277), 1, + anon_sym_BANG, + ACTIONS(12279), 1, + anon_sym_LPAREN, + ACTIONS(12281), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12283), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12285), 1, + anon_sym_PLUS, + ACTIONS(12287), 1, + anon_sym_DASH, + ACTIONS(12289), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12291), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12301), 1, + anon_sym_POUND, + ACTIONS(12611), 1, + aux_sym_unary_expression_token1, + STATE(586), 1, + sym_call_expression, + STATE(662), 1, + sym_member_expression, + STATE(742), 1, + sym__signed_unary_expression, + STATE(13649), 1, + sym__callable_expression, + ACTIONS(12297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(673), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17815), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17817), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(732), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [193079] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12271), 1, + sym_identifier, + ACTIONS(12273), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12275), 1, + anon_sym_DOT, + ACTIONS(12277), 1, + anon_sym_BANG, + ACTIONS(12279), 1, + anon_sym_LPAREN, + ACTIONS(12281), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12283), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12285), 1, + anon_sym_PLUS, + ACTIONS(12287), 1, + anon_sym_DASH, + ACTIONS(12289), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12291), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12301), 1, + anon_sym_POUND, + ACTIONS(12611), 1, + aux_sym_unary_expression_token1, + STATE(586), 1, + sym_call_expression, + STATE(662), 1, + sym_member_expression, + STATE(742), 1, + sym__signed_unary_expression, + STATE(13649), 1, + sym__callable_expression, + ACTIONS(12297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(673), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17819), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17821), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(733), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [193168] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12271), 1, + sym_identifier, + ACTIONS(12273), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12275), 1, + anon_sym_DOT, + ACTIONS(12277), 1, + anon_sym_BANG, + ACTIONS(12279), 1, + anon_sym_LPAREN, + ACTIONS(12281), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12283), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12285), 1, + anon_sym_PLUS, + ACTIONS(12287), 1, + anon_sym_DASH, + ACTIONS(12289), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12291), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12301), 1, + anon_sym_POUND, + ACTIONS(12611), 1, + aux_sym_unary_expression_token1, + STATE(586), 1, + sym_call_expression, + STATE(662), 1, + sym_member_expression, + STATE(742), 1, + sym__signed_unary_expression, + STATE(13649), 1, + sym__callable_expression, + ACTIONS(12297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(673), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17823), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17825), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(734), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [193257] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12271), 1, + sym_identifier, + ACTIONS(12273), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12275), 1, + anon_sym_DOT, + ACTIONS(12277), 1, + anon_sym_BANG, + ACTIONS(12279), 1, + anon_sym_LPAREN, + ACTIONS(12281), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12283), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12285), 1, + anon_sym_PLUS, + ACTIONS(12287), 1, + anon_sym_DASH, + ACTIONS(12289), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12291), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12301), 1, + anon_sym_POUND, + ACTIONS(12611), 1, + aux_sym_unary_expression_token1, + STATE(586), 1, + sym_call_expression, + STATE(662), 1, + sym_member_expression, + STATE(742), 1, + sym__signed_unary_expression, + STATE(13649), 1, + sym__callable_expression, + ACTIONS(12297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(673), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17827), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17829), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(735), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [193346] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12271), 1, + sym_identifier, + ACTIONS(12273), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12275), 1, + anon_sym_DOT, + ACTIONS(12277), 1, + anon_sym_BANG, + ACTIONS(12279), 1, + anon_sym_LPAREN, + ACTIONS(12281), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12283), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12285), 1, + anon_sym_PLUS, + ACTIONS(12287), 1, + anon_sym_DASH, + ACTIONS(12289), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12291), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12301), 1, + anon_sym_POUND, + ACTIONS(12611), 1, + aux_sym_unary_expression_token1, + STATE(586), 1, + sym_call_expression, + STATE(662), 1, + sym_member_expression, + STATE(742), 1, + sym__signed_unary_expression, + STATE(13649), 1, + sym__callable_expression, + ACTIONS(12297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(673), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17831), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17833), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(736), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [193435] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12271), 1, + sym_identifier, + ACTIONS(12273), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12275), 1, + anon_sym_DOT, + ACTIONS(12277), 1, + anon_sym_BANG, + ACTIONS(12279), 1, + anon_sym_LPAREN, + ACTIONS(12281), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12283), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12285), 1, + anon_sym_PLUS, + ACTIONS(12287), 1, + anon_sym_DASH, + ACTIONS(12289), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12291), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12301), 1, + anon_sym_POUND, + ACTIONS(12611), 1, + aux_sym_unary_expression_token1, + STATE(586), 1, + sym_call_expression, + STATE(662), 1, + sym_member_expression, + STATE(742), 1, + sym__signed_unary_expression, + STATE(13649), 1, + sym__callable_expression, + ACTIONS(12297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(673), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17835), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17837), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(737), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [193524] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12271), 1, + sym_identifier, + ACTIONS(12273), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12275), 1, + anon_sym_DOT, + ACTIONS(12277), 1, + anon_sym_BANG, + ACTIONS(12279), 1, + anon_sym_LPAREN, + ACTIONS(12281), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12283), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12285), 1, + anon_sym_PLUS, + ACTIONS(12287), 1, + anon_sym_DASH, + ACTIONS(12289), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12291), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12301), 1, + anon_sym_POUND, + ACTIONS(12611), 1, + aux_sym_unary_expression_token1, + STATE(586), 1, + sym_call_expression, + STATE(662), 1, + sym_member_expression, + STATE(742), 1, + sym__signed_unary_expression, + STATE(13649), 1, + sym__callable_expression, + ACTIONS(12297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(673), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17839), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17841), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(738), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [193613] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12271), 1, + sym_identifier, + ACTIONS(12273), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12275), 1, + anon_sym_DOT, + ACTIONS(12277), 1, + anon_sym_BANG, + ACTIONS(12279), 1, + anon_sym_LPAREN, + ACTIONS(12281), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12283), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12285), 1, + anon_sym_PLUS, + ACTIONS(12287), 1, + anon_sym_DASH, + ACTIONS(12289), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12291), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12301), 1, + anon_sym_POUND, + ACTIONS(12611), 1, + aux_sym_unary_expression_token1, + STATE(586), 1, + sym_call_expression, + STATE(662), 1, + sym_member_expression, + STATE(742), 1, + sym__signed_unary_expression, + STATE(13649), 1, + sym__callable_expression, + ACTIONS(12297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(673), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17843), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17845), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(739), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [193702] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12271), 1, + sym_identifier, + ACTIONS(12273), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12275), 1, + anon_sym_DOT, + ACTIONS(12277), 1, + anon_sym_BANG, + ACTIONS(12279), 1, + anon_sym_LPAREN, + ACTIONS(12281), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12283), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12285), 1, + anon_sym_PLUS, + ACTIONS(12287), 1, + anon_sym_DASH, + ACTIONS(12289), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12291), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12301), 1, + anon_sym_POUND, + ACTIONS(12611), 1, + aux_sym_unary_expression_token1, + STATE(586), 1, + sym_call_expression, + STATE(662), 1, + sym_member_expression, + STATE(742), 1, + sym__signed_unary_expression, + STATE(13649), 1, + sym__callable_expression, + ACTIONS(12297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(673), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17847), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17849), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(740), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [193791] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12271), 1, + sym_identifier, + ACTIONS(12273), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12275), 1, + anon_sym_DOT, + ACTIONS(12277), 1, + anon_sym_BANG, + ACTIONS(12279), 1, + anon_sym_LPAREN, + ACTIONS(12281), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12283), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12285), 1, + anon_sym_PLUS, + ACTIONS(12287), 1, + anon_sym_DASH, + ACTIONS(12289), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12291), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12301), 1, + anon_sym_POUND, + ACTIONS(12611), 1, + aux_sym_unary_expression_token1, + STATE(586), 1, + sym_call_expression, + STATE(662), 1, + sym_member_expression, + STATE(742), 1, + sym__signed_unary_expression, + STATE(13649), 1, + sym__callable_expression, + ACTIONS(12297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(673), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17851), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17853), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(741), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [193880] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12143), 1, + sym_identifier, + ACTIONS(12145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12147), 1, + anon_sym_DOT, + ACTIONS(12149), 1, + anon_sym_BANG, + ACTIONS(12151), 1, + anon_sym_LPAREN, + ACTIONS(12153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12157), 1, + anon_sym_PLUS, + ACTIONS(12159), 1, + anon_sym_DASH, + ACTIONS(12161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12173), 1, + anon_sym_POUND, + ACTIONS(12423), 1, + aux_sym_unary_expression_token1, + STATE(1268), 1, + sym_call_expression, + STATE(1483), 1, + sym_member_expression, + STATE(1490), 1, + sym__signed_unary_expression, + STATE(13614), 1, + sym__callable_expression, + ACTIONS(12169), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1528), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17855), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17857), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1736), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [193969] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12309), 1, + sym_identifier, + ACTIONS(12311), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12313), 1, + anon_sym_DOT, + ACTIONS(12315), 1, + anon_sym_BANG, + ACTIONS(12317), 1, + anon_sym_LPAREN, + ACTIONS(12319), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12321), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12323), 1, + anon_sym_PLUS, + ACTIONS(12325), 1, + anon_sym_DASH, + ACTIONS(12327), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12329), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12339), 1, + anon_sym_POUND, + ACTIONS(12617), 1, + aux_sym_unary_expression_token1, + STATE(441), 1, + sym_call_expression, + STATE(517), 1, + sym__signed_unary_expression, + STATE(520), 1, + sym_member_expression, + STATE(13349), 1, + sym__callable_expression, + ACTIONS(12335), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(533), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17859), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17861), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(503), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [194058] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12309), 1, + sym_identifier, + ACTIONS(12311), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12313), 1, + anon_sym_DOT, + ACTIONS(12315), 1, + anon_sym_BANG, + ACTIONS(12317), 1, + anon_sym_LPAREN, + ACTIONS(12319), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12321), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12323), 1, + anon_sym_PLUS, + ACTIONS(12325), 1, + anon_sym_DASH, + ACTIONS(12327), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12329), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12339), 1, + anon_sym_POUND, + ACTIONS(12617), 1, + aux_sym_unary_expression_token1, + STATE(441), 1, + sym_call_expression, + STATE(517), 1, + sym__signed_unary_expression, + STATE(520), 1, + sym_member_expression, + STATE(13349), 1, + sym__callable_expression, + ACTIONS(12335), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(533), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17863), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17865), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(504), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [194147] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12309), 1, + sym_identifier, + ACTIONS(12311), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12313), 1, + anon_sym_DOT, + ACTIONS(12315), 1, + anon_sym_BANG, + ACTIONS(12317), 1, + anon_sym_LPAREN, + ACTIONS(12319), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12321), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12323), 1, + anon_sym_PLUS, + ACTIONS(12325), 1, + anon_sym_DASH, + ACTIONS(12327), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12329), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12339), 1, + anon_sym_POUND, + ACTIONS(12617), 1, + aux_sym_unary_expression_token1, + STATE(441), 1, + sym_call_expression, + STATE(517), 1, + sym__signed_unary_expression, + STATE(520), 1, + sym_member_expression, + STATE(13349), 1, + sym__callable_expression, + ACTIONS(12335), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(533), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17867), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17869), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(506), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [194236] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12309), 1, + sym_identifier, + ACTIONS(12311), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12313), 1, + anon_sym_DOT, + ACTIONS(12315), 1, + anon_sym_BANG, + ACTIONS(12317), 1, + anon_sym_LPAREN, + ACTIONS(12319), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12321), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12323), 1, + anon_sym_PLUS, + ACTIONS(12325), 1, + anon_sym_DASH, + ACTIONS(12327), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12329), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12339), 1, + anon_sym_POUND, + ACTIONS(12617), 1, + aux_sym_unary_expression_token1, + STATE(441), 1, + sym_call_expression, + STATE(517), 1, + sym__signed_unary_expression, + STATE(520), 1, + sym_member_expression, + STATE(13349), 1, + sym__callable_expression, + ACTIONS(12335), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(533), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17871), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17873), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(507), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [194325] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12309), 1, + sym_identifier, + ACTIONS(12311), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12313), 1, + anon_sym_DOT, + ACTIONS(12315), 1, + anon_sym_BANG, + ACTIONS(12317), 1, + anon_sym_LPAREN, + ACTIONS(12319), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12321), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12323), 1, + anon_sym_PLUS, + ACTIONS(12325), 1, + anon_sym_DASH, + ACTIONS(12327), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12329), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12339), 1, + anon_sym_POUND, + ACTIONS(12617), 1, + aux_sym_unary_expression_token1, + STATE(441), 1, + sym_call_expression, + STATE(517), 1, + sym__signed_unary_expression, + STATE(520), 1, + sym_member_expression, + STATE(13349), 1, + sym__callable_expression, + ACTIONS(12335), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(533), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17875), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17877), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(508), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [194414] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12309), 1, + sym_identifier, + ACTIONS(12311), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12313), 1, + anon_sym_DOT, + ACTIONS(12315), 1, + anon_sym_BANG, + ACTIONS(12317), 1, + anon_sym_LPAREN, + ACTIONS(12319), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12321), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12323), 1, + anon_sym_PLUS, + ACTIONS(12325), 1, + anon_sym_DASH, + ACTIONS(12327), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12329), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12339), 1, + anon_sym_POUND, + ACTIONS(12617), 1, + aux_sym_unary_expression_token1, + STATE(441), 1, + sym_call_expression, + STATE(517), 1, + sym__signed_unary_expression, + STATE(520), 1, + sym_member_expression, + STATE(13349), 1, + sym__callable_expression, + ACTIONS(12335), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(533), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17879), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17881), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(509), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [194503] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12309), 1, + sym_identifier, + ACTIONS(12311), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12313), 1, + anon_sym_DOT, + ACTIONS(12315), 1, + anon_sym_BANG, + ACTIONS(12317), 1, + anon_sym_LPAREN, + ACTIONS(12319), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12321), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12323), 1, + anon_sym_PLUS, + ACTIONS(12325), 1, + anon_sym_DASH, + ACTIONS(12327), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12329), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12339), 1, + anon_sym_POUND, + ACTIONS(12617), 1, + aux_sym_unary_expression_token1, + STATE(441), 1, + sym_call_expression, + STATE(517), 1, + sym__signed_unary_expression, + STATE(520), 1, + sym_member_expression, + STATE(13349), 1, + sym__callable_expression, + ACTIONS(12335), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(533), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17883), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17885), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(510), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [194592] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12309), 1, + sym_identifier, + ACTIONS(12311), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12313), 1, + anon_sym_DOT, + ACTIONS(12315), 1, + anon_sym_BANG, + ACTIONS(12317), 1, + anon_sym_LPAREN, + ACTIONS(12319), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12321), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12323), 1, + anon_sym_PLUS, + ACTIONS(12325), 1, + anon_sym_DASH, + ACTIONS(12327), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12329), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12339), 1, + anon_sym_POUND, + ACTIONS(12617), 1, + aux_sym_unary_expression_token1, + STATE(441), 1, + sym_call_expression, + STATE(517), 1, + sym__signed_unary_expression, + STATE(520), 1, + sym_member_expression, + STATE(13349), 1, + sym__callable_expression, + ACTIONS(12335), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(533), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17887), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17889), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(511), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [194681] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12309), 1, + sym_identifier, + ACTIONS(12311), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12313), 1, + anon_sym_DOT, + ACTIONS(12315), 1, + anon_sym_BANG, + ACTIONS(12317), 1, + anon_sym_LPAREN, + ACTIONS(12319), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12321), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12323), 1, + anon_sym_PLUS, + ACTIONS(12325), 1, + anon_sym_DASH, + ACTIONS(12327), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12329), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12339), 1, + anon_sym_POUND, + ACTIONS(12617), 1, + aux_sym_unary_expression_token1, + STATE(441), 1, + sym_call_expression, + STATE(517), 1, + sym__signed_unary_expression, + STATE(520), 1, + sym_member_expression, + STATE(13349), 1, + sym__callable_expression, + ACTIONS(12335), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(533), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17891), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17893), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(512), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [194770] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12309), 1, + sym_identifier, + ACTIONS(12311), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12313), 1, + anon_sym_DOT, + ACTIONS(12315), 1, + anon_sym_BANG, + ACTIONS(12317), 1, + anon_sym_LPAREN, + ACTIONS(12319), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12321), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12323), 1, + anon_sym_PLUS, + ACTIONS(12325), 1, + anon_sym_DASH, + ACTIONS(12327), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12329), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12339), 1, + anon_sym_POUND, + ACTIONS(12617), 1, + aux_sym_unary_expression_token1, + STATE(441), 1, + sym_call_expression, + STATE(517), 1, + sym__signed_unary_expression, + STATE(520), 1, + sym_member_expression, + STATE(13349), 1, + sym__callable_expression, + ACTIONS(12335), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(533), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17895), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17897), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(513), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [194859] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12309), 1, + sym_identifier, + ACTIONS(12311), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12313), 1, + anon_sym_DOT, + ACTIONS(12315), 1, + anon_sym_BANG, + ACTIONS(12317), 1, + anon_sym_LPAREN, + ACTIONS(12319), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12321), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12323), 1, + anon_sym_PLUS, + ACTIONS(12325), 1, + anon_sym_DASH, + ACTIONS(12327), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12329), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12339), 1, + anon_sym_POUND, + ACTIONS(12617), 1, + aux_sym_unary_expression_token1, + STATE(441), 1, + sym_call_expression, + STATE(517), 1, + sym__signed_unary_expression, + STATE(520), 1, + sym_member_expression, + STATE(13349), 1, + sym__callable_expression, + ACTIONS(12335), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(533), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17899), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17901), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(514), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [194948] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12309), 1, + sym_identifier, + ACTIONS(12311), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12313), 1, + anon_sym_DOT, + ACTIONS(12315), 1, + anon_sym_BANG, + ACTIONS(12317), 1, + anon_sym_LPAREN, + ACTIONS(12319), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12321), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12323), 1, + anon_sym_PLUS, + ACTIONS(12325), 1, + anon_sym_DASH, + ACTIONS(12327), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12329), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12339), 1, + anon_sym_POUND, + ACTIONS(12617), 1, + aux_sym_unary_expression_token1, + STATE(441), 1, + sym_call_expression, + STATE(517), 1, + sym__signed_unary_expression, + STATE(520), 1, + sym_member_expression, + STATE(13349), 1, + sym__callable_expression, + ACTIONS(12335), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(533), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17903), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17905), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(515), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [195037] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12309), 1, + sym_identifier, + ACTIONS(12311), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12313), 1, + anon_sym_DOT, + ACTIONS(12315), 1, + anon_sym_BANG, + ACTIONS(12317), 1, + anon_sym_LPAREN, + ACTIONS(12319), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12321), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12323), 1, + anon_sym_PLUS, + ACTIONS(12325), 1, + anon_sym_DASH, + ACTIONS(12327), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12329), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12339), 1, + anon_sym_POUND, + ACTIONS(12617), 1, + aux_sym_unary_expression_token1, + STATE(441), 1, + sym_call_expression, + STATE(517), 1, + sym__signed_unary_expression, + STATE(520), 1, + sym_member_expression, + STATE(13349), 1, + sym__callable_expression, + ACTIONS(12335), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(533), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17907), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17909), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(516), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [195126] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12185), 1, + sym_identifier, + ACTIONS(12187), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12189), 1, + anon_sym_DOT, + ACTIONS(12191), 1, + anon_sym_BANG, + ACTIONS(12193), 1, + anon_sym_LPAREN, + ACTIONS(12195), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12197), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12199), 1, + anon_sym_PLUS, + ACTIONS(12201), 1, + anon_sym_DASH, + ACTIONS(12203), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12205), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12215), 1, + anon_sym_POUND, + ACTIONS(12447), 1, + aux_sym_unary_expression_token1, + STATE(1995), 1, + sym_call_expression, + STATE(2082), 1, + sym_member_expression, + STATE(2103), 1, + sym__signed_unary_expression, + STATE(13271), 1, + sym__callable_expression, + ACTIONS(12211), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2139), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2027), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [195215] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17915), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17917), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2880), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [195304] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17919), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17921), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2886), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [195393] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17923), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2726), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [195482] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17927), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17929), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2728), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [195571] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17931), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17933), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2758), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [195660] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17935), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17937), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2762), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [195749] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17939), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17941), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2822), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [195838] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17943), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17945), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2826), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [195927] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17947), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17949), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2828), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [196016] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17951), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17953), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2838), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [196105] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17955), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17957), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2843), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [196194] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17959), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17961), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2844), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [196283] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17963), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17965), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2845), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [196372] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12453), 1, + aux_sym_unary_expression_token1, + ACTIONS(14861), 1, + anon_sym_PLUS, + ACTIONS(14863), 1, + anon_sym_DASH, + ACTIONS(14869), 1, + anon_sym_POUND, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17967), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17969), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2835), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [196461] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12353), 1, + sym_identifier, + ACTIONS(12355), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12357), 1, + anon_sym_DOT, + ACTIONS(12359), 1, + anon_sym_BANG, + ACTIONS(12361), 1, + anon_sym_LPAREN, + ACTIONS(12363), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12365), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12367), 1, + anon_sym_PLUS, + ACTIONS(12369), 1, + anon_sym_DASH, + ACTIONS(12371), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12373), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12383), 1, + anon_sym_POUND, + ACTIONS(12629), 1, + aux_sym_unary_expression_token1, + STATE(807), 1, + sym_call_expression, + STATE(906), 1, + sym_member_expression, + STATE(907), 1, + sym__signed_unary_expression, + STATE(13081), 1, + sym__callable_expression, + ACTIONS(12379), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(939), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17971), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17973), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(889), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [196550] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12353), 1, + sym_identifier, + ACTIONS(12355), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12357), 1, + anon_sym_DOT, + ACTIONS(12359), 1, + anon_sym_BANG, + ACTIONS(12361), 1, + anon_sym_LPAREN, + ACTIONS(12363), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12365), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12367), 1, + anon_sym_PLUS, + ACTIONS(12369), 1, + anon_sym_DASH, + ACTIONS(12371), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12373), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12383), 1, + anon_sym_POUND, + ACTIONS(12629), 1, + aux_sym_unary_expression_token1, + STATE(807), 1, + sym_call_expression, + STATE(906), 1, + sym_member_expression, + STATE(907), 1, + sym__signed_unary_expression, + STATE(13081), 1, + sym__callable_expression, + ACTIONS(12379), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(939), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17975), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17977), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(890), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [196639] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12353), 1, + sym_identifier, + ACTIONS(12355), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12357), 1, + anon_sym_DOT, + ACTIONS(12359), 1, + anon_sym_BANG, + ACTIONS(12361), 1, + anon_sym_LPAREN, + ACTIONS(12363), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12365), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12367), 1, + anon_sym_PLUS, + ACTIONS(12369), 1, + anon_sym_DASH, + ACTIONS(12371), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12373), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12383), 1, + anon_sym_POUND, + ACTIONS(12629), 1, + aux_sym_unary_expression_token1, + STATE(807), 1, + sym_call_expression, + STATE(906), 1, + sym_member_expression, + STATE(907), 1, + sym__signed_unary_expression, + STATE(13081), 1, + sym__callable_expression, + ACTIONS(12379), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(939), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17979), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17981), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(894), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [196728] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12353), 1, + sym_identifier, + ACTIONS(12355), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12357), 1, + anon_sym_DOT, + ACTIONS(12359), 1, + anon_sym_BANG, + ACTIONS(12361), 1, + anon_sym_LPAREN, + ACTIONS(12363), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12365), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12367), 1, + anon_sym_PLUS, + ACTIONS(12369), 1, + anon_sym_DASH, + ACTIONS(12371), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12373), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12383), 1, + anon_sym_POUND, + ACTIONS(12629), 1, + aux_sym_unary_expression_token1, + STATE(807), 1, + sym_call_expression, + STATE(906), 1, + sym_member_expression, + STATE(907), 1, + sym__signed_unary_expression, + STATE(13081), 1, + sym__callable_expression, + ACTIONS(12379), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(939), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17983), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17985), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(895), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [196817] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12353), 1, + sym_identifier, + ACTIONS(12355), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12357), 1, + anon_sym_DOT, + ACTIONS(12359), 1, + anon_sym_BANG, + ACTIONS(12361), 1, + anon_sym_LPAREN, + ACTIONS(12363), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12365), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12367), 1, + anon_sym_PLUS, + ACTIONS(12369), 1, + anon_sym_DASH, + ACTIONS(12371), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12373), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12383), 1, + anon_sym_POUND, + ACTIONS(12629), 1, + aux_sym_unary_expression_token1, + STATE(807), 1, + sym_call_expression, + STATE(906), 1, + sym_member_expression, + STATE(907), 1, + sym__signed_unary_expression, + STATE(13081), 1, + sym__callable_expression, + ACTIONS(12379), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(939), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17987), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17989), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(896), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [196906] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12353), 1, + sym_identifier, + ACTIONS(12355), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12357), 1, + anon_sym_DOT, + ACTIONS(12359), 1, + anon_sym_BANG, + ACTIONS(12361), 1, + anon_sym_LPAREN, + ACTIONS(12363), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12365), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12367), 1, + anon_sym_PLUS, + ACTIONS(12369), 1, + anon_sym_DASH, + ACTIONS(12371), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12373), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12383), 1, + anon_sym_POUND, + ACTIONS(12629), 1, + aux_sym_unary_expression_token1, + STATE(807), 1, + sym_call_expression, + STATE(906), 1, + sym_member_expression, + STATE(907), 1, + sym__signed_unary_expression, + STATE(13081), 1, + sym__callable_expression, + ACTIONS(12379), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(939), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17991), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17993), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(897), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [196995] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12353), 1, + sym_identifier, + ACTIONS(12355), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12357), 1, + anon_sym_DOT, + ACTIONS(12359), 1, + anon_sym_BANG, + ACTIONS(12361), 1, + anon_sym_LPAREN, + ACTIONS(12363), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12365), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12367), 1, + anon_sym_PLUS, + ACTIONS(12369), 1, + anon_sym_DASH, + ACTIONS(12371), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12373), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12383), 1, + anon_sym_POUND, + ACTIONS(12629), 1, + aux_sym_unary_expression_token1, + STATE(807), 1, + sym_call_expression, + STATE(906), 1, + sym_member_expression, + STATE(907), 1, + sym__signed_unary_expression, + STATE(13081), 1, + sym__callable_expression, + ACTIONS(12379), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(939), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17995), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(17997), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(898), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [197084] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12353), 1, + sym_identifier, + ACTIONS(12355), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12357), 1, + anon_sym_DOT, + ACTIONS(12359), 1, + anon_sym_BANG, + ACTIONS(12361), 1, + anon_sym_LPAREN, + ACTIONS(12363), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12365), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12367), 1, + anon_sym_PLUS, + ACTIONS(12369), 1, + anon_sym_DASH, + ACTIONS(12371), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12373), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12383), 1, + anon_sym_POUND, + ACTIONS(12629), 1, + aux_sym_unary_expression_token1, + STATE(807), 1, + sym_call_expression, + STATE(906), 1, + sym_member_expression, + STATE(907), 1, + sym__signed_unary_expression, + STATE(13081), 1, + sym__callable_expression, + ACTIONS(12379), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(939), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(17999), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18001), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(899), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [197173] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12353), 1, + sym_identifier, + ACTIONS(12355), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12357), 1, + anon_sym_DOT, + ACTIONS(12359), 1, + anon_sym_BANG, + ACTIONS(12361), 1, + anon_sym_LPAREN, + ACTIONS(12363), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12365), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12367), 1, + anon_sym_PLUS, + ACTIONS(12369), 1, + anon_sym_DASH, + ACTIONS(12371), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12373), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12383), 1, + anon_sym_POUND, + ACTIONS(12629), 1, + aux_sym_unary_expression_token1, + STATE(807), 1, + sym_call_expression, + STATE(906), 1, + sym_member_expression, + STATE(907), 1, + sym__signed_unary_expression, + STATE(13081), 1, + sym__callable_expression, + ACTIONS(12379), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(939), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18003), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18005), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(900), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [197262] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12353), 1, + sym_identifier, + ACTIONS(12355), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12357), 1, + anon_sym_DOT, + ACTIONS(12359), 1, + anon_sym_BANG, + ACTIONS(12361), 1, + anon_sym_LPAREN, + ACTIONS(12363), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12365), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12367), 1, + anon_sym_PLUS, + ACTIONS(12369), 1, + anon_sym_DASH, + ACTIONS(12371), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12373), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12383), 1, + anon_sym_POUND, + ACTIONS(12629), 1, + aux_sym_unary_expression_token1, + STATE(807), 1, + sym_call_expression, + STATE(906), 1, + sym_member_expression, + STATE(907), 1, + sym__signed_unary_expression, + STATE(13081), 1, + sym__callable_expression, + ACTIONS(12379), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(939), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18007), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18009), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(901), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [197351] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12353), 1, + sym_identifier, + ACTIONS(12355), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12357), 1, + anon_sym_DOT, + ACTIONS(12359), 1, + anon_sym_BANG, + ACTIONS(12361), 1, + anon_sym_LPAREN, + ACTIONS(12363), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12365), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12367), 1, + anon_sym_PLUS, + ACTIONS(12369), 1, + anon_sym_DASH, + ACTIONS(12371), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12373), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12383), 1, + anon_sym_POUND, + ACTIONS(12629), 1, + aux_sym_unary_expression_token1, + STATE(807), 1, + sym_call_expression, + STATE(906), 1, + sym_member_expression, + STATE(907), 1, + sym__signed_unary_expression, + STATE(13081), 1, + sym__callable_expression, + ACTIONS(12379), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(939), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18011), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18013), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(902), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [197440] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12353), 1, + sym_identifier, + ACTIONS(12355), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12357), 1, + anon_sym_DOT, + ACTIONS(12359), 1, + anon_sym_BANG, + ACTIONS(12361), 1, + anon_sym_LPAREN, + ACTIONS(12363), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12365), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12367), 1, + anon_sym_PLUS, + ACTIONS(12369), 1, + anon_sym_DASH, + ACTIONS(12371), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12373), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12383), 1, + anon_sym_POUND, + ACTIONS(12629), 1, + aux_sym_unary_expression_token1, + STATE(807), 1, + sym_call_expression, + STATE(906), 1, + sym_member_expression, + STATE(907), 1, + sym__signed_unary_expression, + STATE(13081), 1, + sym__callable_expression, + ACTIONS(12379), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(939), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18015), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18017), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(903), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [197529] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12353), 1, + sym_identifier, + ACTIONS(12355), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12357), 1, + anon_sym_DOT, + ACTIONS(12359), 1, + anon_sym_BANG, + ACTIONS(12361), 1, + anon_sym_LPAREN, + ACTIONS(12363), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12365), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12367), 1, + anon_sym_PLUS, + ACTIONS(12369), 1, + anon_sym_DASH, + ACTIONS(12371), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12373), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12383), 1, + anon_sym_POUND, + ACTIONS(12629), 1, + aux_sym_unary_expression_token1, + STATE(807), 1, + sym_call_expression, + STATE(906), 1, + sym_member_expression, + STATE(907), 1, + sym__signed_unary_expression, + STATE(13081), 1, + sym__callable_expression, + ACTIONS(12379), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(939), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18019), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18021), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(904), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [197618] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12481), 1, + aux_sym_unary_expression_token1, + ACTIONS(13361), 1, + sym_identifier, + ACTIONS(13363), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13365), 1, + anon_sym_DOT, + ACTIONS(13367), 1, + anon_sym_BANG, + ACTIONS(13369), 1, + anon_sym_LPAREN, + ACTIONS(13371), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13373), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13375), 1, + anon_sym_PLUS, + ACTIONS(13377), 1, + anon_sym_DASH, + ACTIONS(13379), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13381), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13389), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_call_expression, + STATE(2989), 1, + sym__signed_unary_expression, + STATE(3204), 1, + sym_member_expression, + STATE(13648), 1, + sym__callable_expression, + ACTIONS(13385), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18023), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18025), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3043), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [197707] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11917), 1, + aux_sym_unary_expression_token1, + STATE(880), 1, + sym_call_expression, + STATE(1329), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18027), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18029), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1179), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [197796] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11917), 1, + aux_sym_unary_expression_token1, + STATE(880), 1, + sym_call_expression, + STATE(1329), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18031), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18033), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1203), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [197885] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11917), 1, + aux_sym_unary_expression_token1, + STATE(880), 1, + sym_call_expression, + STATE(1329), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18035), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18037), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1300), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [197974] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11917), 1, + aux_sym_unary_expression_token1, + STATE(880), 1, + sym_call_expression, + STATE(1329), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18039), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18041), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1302), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [198063] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11917), 1, + aux_sym_unary_expression_token1, + STATE(880), 1, + sym_call_expression, + STATE(1329), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18043), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18045), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1309), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [198152] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11917), 1, + aux_sym_unary_expression_token1, + STATE(880), 1, + sym_call_expression, + STATE(1329), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18047), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18049), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1311), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [198241] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11917), 1, + aux_sym_unary_expression_token1, + STATE(880), 1, + sym_call_expression, + STATE(1329), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18051), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18053), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1312), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [198330] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11917), 1, + aux_sym_unary_expression_token1, + STATE(880), 1, + sym_call_expression, + STATE(1329), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18055), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18057), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1314), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [198419] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11917), 1, + aux_sym_unary_expression_token1, + STATE(880), 1, + sym_call_expression, + STATE(1329), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18059), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18061), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1318), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [198508] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11917), 1, + aux_sym_unary_expression_token1, + STATE(880), 1, + sym_call_expression, + STATE(1329), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18063), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18065), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1319), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [198597] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11917), 1, + aux_sym_unary_expression_token1, + STATE(880), 1, + sym_call_expression, + STATE(1329), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18067), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18069), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1322), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [198686] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11917), 1, + aux_sym_unary_expression_token1, + STATE(880), 1, + sym_call_expression, + STATE(1329), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18071), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18073), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1324), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [198775] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11917), 1, + aux_sym_unary_expression_token1, + STATE(880), 1, + sym_call_expression, + STATE(1329), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18075), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18077), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1325), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [198864] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11845), 1, + sym_identifier, + ACTIONS(11847), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11849), 1, + anon_sym_DOT, + ACTIONS(11851), 1, + anon_sym_BANG, + ACTIONS(11853), 1, + anon_sym_LPAREN, + ACTIONS(11855), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11857), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11859), 1, + anon_sym_PLUS, + ACTIONS(11861), 1, + anon_sym_DASH, + ACTIONS(11863), 1, + aux_sym_addressof_expression_token1, + ACTIONS(11865), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11867), 1, + aux_sym_unary_expression_token1, + ACTIONS(11875), 1, + anon_sym_POUND, + STATE(1370), 1, + sym_call_expression, + STATE(1508), 1, + sym_member_expression, + STATE(1514), 1, + sym__signed_unary_expression, + STATE(13362), 1, + sym__callable_expression, + ACTIONS(11871), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1561), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18079), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18081), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1777), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [198953] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12391), 1, + sym_identifier, + ACTIONS(12393), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12395), 1, + anon_sym_DOT, + ACTIONS(12397), 1, + anon_sym_BANG, + ACTIONS(12399), 1, + anon_sym_LPAREN, + ACTIONS(12401), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12403), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12405), 1, + anon_sym_PLUS, + ACTIONS(12407), 1, + anon_sym_DASH, + ACTIONS(12409), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12411), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12421), 1, + anon_sym_POUND, + ACTIONS(12641), 1, + aux_sym_unary_expression_token1, + STATE(1124), 1, + sym_call_expression, + STATE(1618), 1, + sym__signed_unary_expression, + STATE(1623), 1, + sym_member_expression, + STATE(13392), 1, + sym__callable_expression, + ACTIONS(12417), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1739), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18083), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18085), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1583), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [199042] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12391), 1, + sym_identifier, + ACTIONS(12393), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12395), 1, + anon_sym_DOT, + ACTIONS(12397), 1, + anon_sym_BANG, + ACTIONS(12399), 1, + anon_sym_LPAREN, + ACTIONS(12401), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12403), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12405), 1, + anon_sym_PLUS, + ACTIONS(12407), 1, + anon_sym_DASH, + ACTIONS(12409), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12411), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12421), 1, + anon_sym_POUND, + ACTIONS(12641), 1, + aux_sym_unary_expression_token1, + STATE(1124), 1, + sym_call_expression, + STATE(1618), 1, + sym__signed_unary_expression, + STATE(1623), 1, + sym_member_expression, + STATE(13392), 1, + sym__callable_expression, + ACTIONS(12417), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1739), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1584), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [199131] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12391), 1, + sym_identifier, + ACTIONS(12393), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12395), 1, + anon_sym_DOT, + ACTIONS(12397), 1, + anon_sym_BANG, + ACTIONS(12399), 1, + anon_sym_LPAREN, + ACTIONS(12401), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12403), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12405), 1, + anon_sym_PLUS, + ACTIONS(12407), 1, + anon_sym_DASH, + ACTIONS(12409), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12411), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12421), 1, + anon_sym_POUND, + ACTIONS(12641), 1, + aux_sym_unary_expression_token1, + STATE(1124), 1, + sym_call_expression, + STATE(1618), 1, + sym__signed_unary_expression, + STATE(1623), 1, + sym_member_expression, + STATE(13392), 1, + sym__callable_expression, + ACTIONS(12417), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1739), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18091), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18093), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1607), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [199220] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12391), 1, + sym_identifier, + ACTIONS(12393), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12395), 1, + anon_sym_DOT, + ACTIONS(12397), 1, + anon_sym_BANG, + ACTIONS(12399), 1, + anon_sym_LPAREN, + ACTIONS(12401), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12403), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12405), 1, + anon_sym_PLUS, + ACTIONS(12407), 1, + anon_sym_DASH, + ACTIONS(12409), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12411), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12421), 1, + anon_sym_POUND, + ACTIONS(12641), 1, + aux_sym_unary_expression_token1, + STATE(1124), 1, + sym_call_expression, + STATE(1618), 1, + sym__signed_unary_expression, + STATE(1623), 1, + sym_member_expression, + STATE(13392), 1, + sym__callable_expression, + ACTIONS(12417), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1739), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18095), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18097), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1608), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [199309] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12391), 1, + sym_identifier, + ACTIONS(12393), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12395), 1, + anon_sym_DOT, + ACTIONS(12397), 1, + anon_sym_BANG, + ACTIONS(12399), 1, + anon_sym_LPAREN, + ACTIONS(12401), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12403), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12405), 1, + anon_sym_PLUS, + ACTIONS(12407), 1, + anon_sym_DASH, + ACTIONS(12409), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12411), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12421), 1, + anon_sym_POUND, + ACTIONS(12641), 1, + aux_sym_unary_expression_token1, + STATE(1124), 1, + sym_call_expression, + STATE(1618), 1, + sym__signed_unary_expression, + STATE(1623), 1, + sym_member_expression, + STATE(13392), 1, + sym__callable_expression, + ACTIONS(12417), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1739), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18099), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18101), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1609), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [199398] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12391), 1, + sym_identifier, + ACTIONS(12393), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12395), 1, + anon_sym_DOT, + ACTIONS(12397), 1, + anon_sym_BANG, + ACTIONS(12399), 1, + anon_sym_LPAREN, + ACTIONS(12401), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12403), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12405), 1, + anon_sym_PLUS, + ACTIONS(12407), 1, + anon_sym_DASH, + ACTIONS(12409), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12411), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12421), 1, + anon_sym_POUND, + ACTIONS(12641), 1, + aux_sym_unary_expression_token1, + STATE(1124), 1, + sym_call_expression, + STATE(1618), 1, + sym__signed_unary_expression, + STATE(1623), 1, + sym_member_expression, + STATE(13392), 1, + sym__callable_expression, + ACTIONS(12417), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1739), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18103), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18105), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1610), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [199487] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12391), 1, + sym_identifier, + ACTIONS(12393), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12395), 1, + anon_sym_DOT, + ACTIONS(12397), 1, + anon_sym_BANG, + ACTIONS(12399), 1, + anon_sym_LPAREN, + ACTIONS(12401), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12403), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12405), 1, + anon_sym_PLUS, + ACTIONS(12407), 1, + anon_sym_DASH, + ACTIONS(12409), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12411), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12421), 1, + anon_sym_POUND, + ACTIONS(12641), 1, + aux_sym_unary_expression_token1, + STATE(1124), 1, + sym_call_expression, + STATE(1618), 1, + sym__signed_unary_expression, + STATE(1623), 1, + sym_member_expression, + STATE(13392), 1, + sym__callable_expression, + ACTIONS(12417), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1739), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18107), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18109), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1611), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [199576] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12391), 1, + sym_identifier, + ACTIONS(12393), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12395), 1, + anon_sym_DOT, + ACTIONS(12397), 1, + anon_sym_BANG, + ACTIONS(12399), 1, + anon_sym_LPAREN, + ACTIONS(12401), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12403), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12405), 1, + anon_sym_PLUS, + ACTIONS(12407), 1, + anon_sym_DASH, + ACTIONS(12409), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12411), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12421), 1, + anon_sym_POUND, + ACTIONS(12641), 1, + aux_sym_unary_expression_token1, + STATE(1124), 1, + sym_call_expression, + STATE(1618), 1, + sym__signed_unary_expression, + STATE(1623), 1, + sym_member_expression, + STATE(13392), 1, + sym__callable_expression, + ACTIONS(12417), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1739), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18111), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18113), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1612), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [199665] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12391), 1, + sym_identifier, + ACTIONS(12393), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12395), 1, + anon_sym_DOT, + ACTIONS(12397), 1, + anon_sym_BANG, + ACTIONS(12399), 1, + anon_sym_LPAREN, + ACTIONS(12401), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12403), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12405), 1, + anon_sym_PLUS, + ACTIONS(12407), 1, + anon_sym_DASH, + ACTIONS(12409), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12411), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12421), 1, + anon_sym_POUND, + ACTIONS(12641), 1, + aux_sym_unary_expression_token1, + STATE(1124), 1, + sym_call_expression, + STATE(1618), 1, + sym__signed_unary_expression, + STATE(1623), 1, + sym_member_expression, + STATE(13392), 1, + sym__callable_expression, + ACTIONS(12417), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1739), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18115), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18117), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1613), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [199754] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12391), 1, + sym_identifier, + ACTIONS(12393), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12395), 1, + anon_sym_DOT, + ACTIONS(12397), 1, + anon_sym_BANG, + ACTIONS(12399), 1, + anon_sym_LPAREN, + ACTIONS(12401), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12403), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12405), 1, + anon_sym_PLUS, + ACTIONS(12407), 1, + anon_sym_DASH, + ACTIONS(12409), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12411), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12421), 1, + anon_sym_POUND, + ACTIONS(12641), 1, + aux_sym_unary_expression_token1, + STATE(1124), 1, + sym_call_expression, + STATE(1618), 1, + sym__signed_unary_expression, + STATE(1623), 1, + sym_member_expression, + STATE(13392), 1, + sym__callable_expression, + ACTIONS(12417), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1739), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18119), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18121), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1614), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [199843] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12391), 1, + sym_identifier, + ACTIONS(12393), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12395), 1, + anon_sym_DOT, + ACTIONS(12397), 1, + anon_sym_BANG, + ACTIONS(12399), 1, + anon_sym_LPAREN, + ACTIONS(12401), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12403), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12405), 1, + anon_sym_PLUS, + ACTIONS(12407), 1, + anon_sym_DASH, + ACTIONS(12409), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12411), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12421), 1, + anon_sym_POUND, + ACTIONS(12641), 1, + aux_sym_unary_expression_token1, + STATE(1124), 1, + sym_call_expression, + STATE(1618), 1, + sym__signed_unary_expression, + STATE(1623), 1, + sym_member_expression, + STATE(13392), 1, + sym__callable_expression, + ACTIONS(12417), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1739), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18123), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18125), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1615), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [199932] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12391), 1, + sym_identifier, + ACTIONS(12393), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12395), 1, + anon_sym_DOT, + ACTIONS(12397), 1, + anon_sym_BANG, + ACTIONS(12399), 1, + anon_sym_LPAREN, + ACTIONS(12401), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12403), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12405), 1, + anon_sym_PLUS, + ACTIONS(12407), 1, + anon_sym_DASH, + ACTIONS(12409), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12411), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12421), 1, + anon_sym_POUND, + ACTIONS(12641), 1, + aux_sym_unary_expression_token1, + STATE(1124), 1, + sym_call_expression, + STATE(1618), 1, + sym__signed_unary_expression, + STATE(1623), 1, + sym_member_expression, + STATE(13392), 1, + sym__callable_expression, + ACTIONS(12417), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1739), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18127), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18129), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1616), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [200021] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12391), 1, + sym_identifier, + ACTIONS(12393), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12395), 1, + anon_sym_DOT, + ACTIONS(12397), 1, + anon_sym_BANG, + ACTIONS(12399), 1, + anon_sym_LPAREN, + ACTIONS(12401), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12403), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12405), 1, + anon_sym_PLUS, + ACTIONS(12407), 1, + anon_sym_DASH, + ACTIONS(12409), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12411), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12421), 1, + anon_sym_POUND, + ACTIONS(12641), 1, + aux_sym_unary_expression_token1, + STATE(1124), 1, + sym_call_expression, + STATE(1618), 1, + sym__signed_unary_expression, + STATE(1623), 1, + sym_member_expression, + STATE(13392), 1, + sym__callable_expression, + ACTIONS(12417), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1739), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18131), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18133), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1617), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [200110] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18135), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18137), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2745), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [200199] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12435), 1, + anon_sym_PLUS, + ACTIONS(12437), 1, + anon_sym_DASH, + ACTIONS(12445), 1, + anon_sym_POUND, + ACTIONS(12647), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18139), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18141), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10237), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [200288] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12435), 1, + anon_sym_PLUS, + ACTIONS(12437), 1, + anon_sym_DASH, + ACTIONS(12445), 1, + anon_sym_POUND, + ACTIONS(12647), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18143), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18145), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10254), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [200377] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12435), 1, + anon_sym_PLUS, + ACTIONS(12437), 1, + anon_sym_DASH, + ACTIONS(12445), 1, + anon_sym_POUND, + ACTIONS(12647), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18147), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18149), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10255), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [200466] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12435), 1, + anon_sym_PLUS, + ACTIONS(12437), 1, + anon_sym_DASH, + ACTIONS(12445), 1, + anon_sym_POUND, + ACTIONS(12647), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18151), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18153), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10256), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [200555] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12435), 1, + anon_sym_PLUS, + ACTIONS(12437), 1, + anon_sym_DASH, + ACTIONS(12445), 1, + anon_sym_POUND, + ACTIONS(12647), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18155), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18157), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10257), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [200644] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12435), 1, + anon_sym_PLUS, + ACTIONS(12437), 1, + anon_sym_DASH, + ACTIONS(12445), 1, + anon_sym_POUND, + ACTIONS(12647), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18159), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18161), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10258), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [200733] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12435), 1, + anon_sym_PLUS, + ACTIONS(12437), 1, + anon_sym_DASH, + ACTIONS(12445), 1, + anon_sym_POUND, + ACTIONS(12647), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18163), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18165), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10259), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [200822] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12435), 1, + anon_sym_PLUS, + ACTIONS(12437), 1, + anon_sym_DASH, + ACTIONS(12445), 1, + anon_sym_POUND, + ACTIONS(12647), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18167), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18169), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10260), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [200911] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12435), 1, + anon_sym_PLUS, + ACTIONS(12437), 1, + anon_sym_DASH, + ACTIONS(12445), 1, + anon_sym_POUND, + ACTIONS(12647), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18171), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18173), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10261), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [201000] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12435), 1, + anon_sym_PLUS, + ACTIONS(12437), 1, + anon_sym_DASH, + ACTIONS(12445), 1, + anon_sym_POUND, + ACTIONS(12647), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18175), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18177), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10262), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [201089] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12435), 1, + anon_sym_PLUS, + ACTIONS(12437), 1, + anon_sym_DASH, + ACTIONS(12445), 1, + anon_sym_POUND, + ACTIONS(12647), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18179), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18181), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10263), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [201178] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12435), 1, + anon_sym_PLUS, + ACTIONS(12437), 1, + anon_sym_DASH, + ACTIONS(12445), 1, + anon_sym_POUND, + ACTIONS(12647), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18183), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18185), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10264), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [201267] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12435), 1, + anon_sym_PLUS, + ACTIONS(12437), 1, + anon_sym_DASH, + ACTIONS(12445), 1, + anon_sym_POUND, + ACTIONS(12647), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18187), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18189), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10265), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [201356] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18191), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18193), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2562), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [201445] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12493), 1, + aux_sym_unary_expression_token1, + ACTIONS(15063), 1, + anon_sym_PLUS, + ACTIONS(15065), 1, + anon_sym_DASH, + ACTIONS(15071), 1, + anon_sym_POUND, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18195), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18197), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2806), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [201534] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12493), 1, + aux_sym_unary_expression_token1, + ACTIONS(15063), 1, + anon_sym_PLUS, + ACTIONS(15065), 1, + anon_sym_DASH, + ACTIONS(15071), 1, + anon_sym_POUND, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18199), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18201), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2807), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [201623] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12493), 1, + aux_sym_unary_expression_token1, + ACTIONS(15063), 1, + anon_sym_PLUS, + ACTIONS(15065), 1, + anon_sym_DASH, + ACTIONS(15071), 1, + anon_sym_POUND, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18203), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18205), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2809), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [201712] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12493), 1, + aux_sym_unary_expression_token1, + ACTIONS(15063), 1, + anon_sym_PLUS, + ACTIONS(15065), 1, + anon_sym_DASH, + ACTIONS(15071), 1, + anon_sym_POUND, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18207), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18209), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2810), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [201801] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12493), 1, + aux_sym_unary_expression_token1, + ACTIONS(15063), 1, + anon_sym_PLUS, + ACTIONS(15065), 1, + anon_sym_DASH, + ACTIONS(15071), 1, + anon_sym_POUND, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18211), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18213), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2811), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [201890] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12493), 1, + aux_sym_unary_expression_token1, + ACTIONS(15063), 1, + anon_sym_PLUS, + ACTIONS(15065), 1, + anon_sym_DASH, + ACTIONS(15071), 1, + anon_sym_POUND, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18215), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18217), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2812), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [201979] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12493), 1, + aux_sym_unary_expression_token1, + ACTIONS(15063), 1, + anon_sym_PLUS, + ACTIONS(15065), 1, + anon_sym_DASH, + ACTIONS(15071), 1, + anon_sym_POUND, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18219), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18221), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2813), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [202068] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12493), 1, + aux_sym_unary_expression_token1, + ACTIONS(15063), 1, + anon_sym_PLUS, + ACTIONS(15065), 1, + anon_sym_DASH, + ACTIONS(15071), 1, + anon_sym_POUND, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18223), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18225), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2814), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [202157] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12493), 1, + aux_sym_unary_expression_token1, + ACTIONS(15063), 1, + anon_sym_PLUS, + ACTIONS(15065), 1, + anon_sym_DASH, + ACTIONS(15071), 1, + anon_sym_POUND, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18227), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18229), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2815), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [202246] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12493), 1, + aux_sym_unary_expression_token1, + ACTIONS(15063), 1, + anon_sym_PLUS, + ACTIONS(15065), 1, + anon_sym_DASH, + ACTIONS(15071), 1, + anon_sym_POUND, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18231), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18233), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2816), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [202335] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12493), 1, + aux_sym_unary_expression_token1, + ACTIONS(15063), 1, + anon_sym_PLUS, + ACTIONS(15065), 1, + anon_sym_DASH, + ACTIONS(15071), 1, + anon_sym_POUND, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18235), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18237), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2817), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [202424] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12493), 1, + aux_sym_unary_expression_token1, + ACTIONS(15063), 1, + anon_sym_PLUS, + ACTIONS(15065), 1, + anon_sym_DASH, + ACTIONS(15071), 1, + anon_sym_POUND, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18239), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18241), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2818), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [202513] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12493), 1, + aux_sym_unary_expression_token1, + ACTIONS(15063), 1, + anon_sym_PLUS, + ACTIONS(15065), 1, + anon_sym_DASH, + ACTIONS(15071), 1, + anon_sym_POUND, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18243), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18245), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2819), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [202602] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1554), 1, + anon_sym_PLUS, + ACTIONS(1556), 1, + anon_sym_DASH, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(1584), 1, + aux_sym_unary_expression_token1, + ACTIONS(1595), 1, + anon_sym_POUND, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18247), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18249), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2587), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [202691] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12899), 1, + sym_identifier, + ACTIONS(12901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12903), 1, + anon_sym_DOT, + ACTIONS(12905), 1, + anon_sym_BANG, + ACTIONS(12907), 1, + anon_sym_LPAREN, + ACTIONS(12909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12913), 1, + anon_sym_PLUS, + ACTIONS(12915), 1, + anon_sym_DASH, + ACTIONS(12917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12927), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_call_expression, + STATE(3093), 1, + sym__signed_unary_expression, + STATE(3364), 1, + sym_member_expression, + STATE(13461), 1, + sym__callable_expression, + ACTIONS(12923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18251), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18253), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3283), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [202780] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12899), 1, + sym_identifier, + ACTIONS(12901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12903), 1, + anon_sym_DOT, + ACTIONS(12905), 1, + anon_sym_BANG, + ACTIONS(12907), 1, + anon_sym_LPAREN, + ACTIONS(12909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12913), 1, + anon_sym_PLUS, + ACTIONS(12915), 1, + anon_sym_DASH, + ACTIONS(12917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12927), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_call_expression, + STATE(3093), 1, + sym__signed_unary_expression, + STATE(3364), 1, + sym_member_expression, + STATE(13461), 1, + sym__callable_expression, + ACTIONS(12923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18255), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18257), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3288), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [202869] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12899), 1, + sym_identifier, + ACTIONS(12901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12903), 1, + anon_sym_DOT, + ACTIONS(12905), 1, + anon_sym_BANG, + ACTIONS(12907), 1, + anon_sym_LPAREN, + ACTIONS(12909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12913), 1, + anon_sym_PLUS, + ACTIONS(12915), 1, + anon_sym_DASH, + ACTIONS(12917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12927), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_call_expression, + STATE(3093), 1, + sym__signed_unary_expression, + STATE(3364), 1, + sym_member_expression, + STATE(13461), 1, + sym__callable_expression, + ACTIONS(12923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18259), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18261), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3321), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [202958] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12899), 1, + sym_identifier, + ACTIONS(12901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12903), 1, + anon_sym_DOT, + ACTIONS(12905), 1, + anon_sym_BANG, + ACTIONS(12907), 1, + anon_sym_LPAREN, + ACTIONS(12909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12913), 1, + anon_sym_PLUS, + ACTIONS(12915), 1, + anon_sym_DASH, + ACTIONS(12917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12927), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_call_expression, + STATE(3093), 1, + sym__signed_unary_expression, + STATE(3364), 1, + sym_member_expression, + STATE(13461), 1, + sym__callable_expression, + ACTIONS(12923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18263), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18265), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3322), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [203047] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12899), 1, + sym_identifier, + ACTIONS(12901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12903), 1, + anon_sym_DOT, + ACTIONS(12905), 1, + anon_sym_BANG, + ACTIONS(12907), 1, + anon_sym_LPAREN, + ACTIONS(12909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12913), 1, + anon_sym_PLUS, + ACTIONS(12915), 1, + anon_sym_DASH, + ACTIONS(12917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12927), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_call_expression, + STATE(3093), 1, + sym__signed_unary_expression, + STATE(3364), 1, + sym_member_expression, + STATE(13461), 1, + sym__callable_expression, + ACTIONS(12923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18267), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18269), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3323), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [203136] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12899), 1, + sym_identifier, + ACTIONS(12901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12903), 1, + anon_sym_DOT, + ACTIONS(12905), 1, + anon_sym_BANG, + ACTIONS(12907), 1, + anon_sym_LPAREN, + ACTIONS(12909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12913), 1, + anon_sym_PLUS, + ACTIONS(12915), 1, + anon_sym_DASH, + ACTIONS(12917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12927), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_call_expression, + STATE(3093), 1, + sym__signed_unary_expression, + STATE(3364), 1, + sym_member_expression, + STATE(13461), 1, + sym__callable_expression, + ACTIONS(12923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18271), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18273), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3324), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [203225] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12899), 1, + sym_identifier, + ACTIONS(12901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12903), 1, + anon_sym_DOT, + ACTIONS(12905), 1, + anon_sym_BANG, + ACTIONS(12907), 1, + anon_sym_LPAREN, + ACTIONS(12909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12913), 1, + anon_sym_PLUS, + ACTIONS(12915), 1, + anon_sym_DASH, + ACTIONS(12917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12927), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_call_expression, + STATE(3093), 1, + sym__signed_unary_expression, + STATE(3364), 1, + sym_member_expression, + STATE(13461), 1, + sym__callable_expression, + ACTIONS(12923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18275), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18277), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3325), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [203314] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12899), 1, + sym_identifier, + ACTIONS(12901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12903), 1, + anon_sym_DOT, + ACTIONS(12905), 1, + anon_sym_BANG, + ACTIONS(12907), 1, + anon_sym_LPAREN, + ACTIONS(12909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12913), 1, + anon_sym_PLUS, + ACTIONS(12915), 1, + anon_sym_DASH, + ACTIONS(12917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12927), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_call_expression, + STATE(3093), 1, + sym__signed_unary_expression, + STATE(3364), 1, + sym_member_expression, + STATE(13461), 1, + sym__callable_expression, + ACTIONS(12923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18279), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18281), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3328), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [203403] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12899), 1, + sym_identifier, + ACTIONS(12901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12903), 1, + anon_sym_DOT, + ACTIONS(12905), 1, + anon_sym_BANG, + ACTIONS(12907), 1, + anon_sym_LPAREN, + ACTIONS(12909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12913), 1, + anon_sym_PLUS, + ACTIONS(12915), 1, + anon_sym_DASH, + ACTIONS(12917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12927), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_call_expression, + STATE(3093), 1, + sym__signed_unary_expression, + STATE(3364), 1, + sym_member_expression, + STATE(13461), 1, + sym__callable_expression, + ACTIONS(12923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18283), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18285), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3329), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [203492] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12899), 1, + sym_identifier, + ACTIONS(12901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12903), 1, + anon_sym_DOT, + ACTIONS(12905), 1, + anon_sym_BANG, + ACTIONS(12907), 1, + anon_sym_LPAREN, + ACTIONS(12909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12913), 1, + anon_sym_PLUS, + ACTIONS(12915), 1, + anon_sym_DASH, + ACTIONS(12917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12927), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_call_expression, + STATE(3093), 1, + sym__signed_unary_expression, + STATE(3364), 1, + sym_member_expression, + STATE(13461), 1, + sym__callable_expression, + ACTIONS(12923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18287), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18289), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3330), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [203581] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12899), 1, + sym_identifier, + ACTIONS(12901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12903), 1, + anon_sym_DOT, + ACTIONS(12905), 1, + anon_sym_BANG, + ACTIONS(12907), 1, + anon_sym_LPAREN, + ACTIONS(12909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12913), 1, + anon_sym_PLUS, + ACTIONS(12915), 1, + anon_sym_DASH, + ACTIONS(12917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12927), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_call_expression, + STATE(3093), 1, + sym__signed_unary_expression, + STATE(3364), 1, + sym_member_expression, + STATE(13461), 1, + sym__callable_expression, + ACTIONS(12923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18291), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18293), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3331), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [203670] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12899), 1, + sym_identifier, + ACTIONS(12901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12903), 1, + anon_sym_DOT, + ACTIONS(12905), 1, + anon_sym_BANG, + ACTIONS(12907), 1, + anon_sym_LPAREN, + ACTIONS(12909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12913), 1, + anon_sym_PLUS, + ACTIONS(12915), 1, + anon_sym_DASH, + ACTIONS(12917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12927), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_call_expression, + STATE(3093), 1, + sym__signed_unary_expression, + STATE(3364), 1, + sym_member_expression, + STATE(13461), 1, + sym__callable_expression, + ACTIONS(12923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18295), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18297), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3332), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [203759] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12899), 1, + sym_identifier, + ACTIONS(12901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12903), 1, + anon_sym_DOT, + ACTIONS(12905), 1, + anon_sym_BANG, + ACTIONS(12907), 1, + anon_sym_LPAREN, + ACTIONS(12909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12913), 1, + anon_sym_PLUS, + ACTIONS(12915), 1, + anon_sym_DASH, + ACTIONS(12917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12927), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_call_expression, + STATE(3093), 1, + sym__signed_unary_expression, + STATE(3364), 1, + sym_member_expression, + STATE(13461), 1, + sym__callable_expression, + ACTIONS(12923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18299), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18301), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3333), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [203848] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_BANG, + ACTIONS(1749), 1, + anon_sym_LPAREN, + ACTIONS(1751), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1817), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1819), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6784), 1, + sym_identifier, + ACTIONS(6786), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6788), 1, + anon_sym_DOT, + ACTIONS(6790), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12493), 1, + aux_sym_unary_expression_token1, + ACTIONS(15063), 1, + anon_sym_PLUS, + ACTIONS(15065), 1, + anon_sym_DASH, + ACTIONS(15071), 1, + anon_sym_POUND, + STATE(2304), 1, + sym_call_expression, + STATE(2352), 1, + sym_member_expression, + STATE(2428), 1, + sym__signed_unary_expression, + STATE(13536), 1, + sym__callable_expression, + ACTIONS(1827), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18303), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18305), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2847), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [203937] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12459), 1, + sym_identifier, + ACTIONS(12461), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12463), 1, + anon_sym_DOT, + ACTIONS(12465), 1, + anon_sym_BANG, + ACTIONS(12467), 1, + anon_sym_LPAREN, + ACTIONS(12469), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12471), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12473), 1, + anon_sym_PLUS, + ACTIONS(12475), 1, + anon_sym_DASH, + ACTIONS(12477), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12479), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12489), 1, + anon_sym_POUND, + ACTIONS(12649), 1, + aux_sym_unary_expression_token1, + STATE(1217), 1, + sym_call_expression, + STATE(1627), 1, + sym__signed_unary_expression, + STATE(1660), 1, + sym_member_expression, + STATE(13532), 1, + sym__callable_expression, + ACTIONS(12485), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1778), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18307), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18309), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1603), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [204026] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12459), 1, + sym_identifier, + ACTIONS(12461), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12463), 1, + anon_sym_DOT, + ACTIONS(12465), 1, + anon_sym_BANG, + ACTIONS(12467), 1, + anon_sym_LPAREN, + ACTIONS(12469), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12471), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12473), 1, + anon_sym_PLUS, + ACTIONS(12475), 1, + anon_sym_DASH, + ACTIONS(12477), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12479), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12489), 1, + anon_sym_POUND, + ACTIONS(12649), 1, + aux_sym_unary_expression_token1, + STATE(1217), 1, + sym_call_expression, + STATE(1627), 1, + sym__signed_unary_expression, + STATE(1660), 1, + sym_member_expression, + STATE(13532), 1, + sym__callable_expression, + ACTIONS(12485), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1778), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18311), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18313), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1604), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [204115] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12459), 1, + sym_identifier, + ACTIONS(12461), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12463), 1, + anon_sym_DOT, + ACTIONS(12465), 1, + anon_sym_BANG, + ACTIONS(12467), 1, + anon_sym_LPAREN, + ACTIONS(12469), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12471), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12473), 1, + anon_sym_PLUS, + ACTIONS(12475), 1, + anon_sym_DASH, + ACTIONS(12477), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12479), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12489), 1, + anon_sym_POUND, + ACTIONS(12649), 1, + aux_sym_unary_expression_token1, + STATE(1217), 1, + sym_call_expression, + STATE(1627), 1, + sym__signed_unary_expression, + STATE(1660), 1, + sym_member_expression, + STATE(13532), 1, + sym__callable_expression, + ACTIONS(12485), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1778), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18315), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18317), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1633), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [204204] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12459), 1, + sym_identifier, + ACTIONS(12461), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12463), 1, + anon_sym_DOT, + ACTIONS(12465), 1, + anon_sym_BANG, + ACTIONS(12467), 1, + anon_sym_LPAREN, + ACTIONS(12469), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12471), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12473), 1, + anon_sym_PLUS, + ACTIONS(12475), 1, + anon_sym_DASH, + ACTIONS(12477), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12479), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12489), 1, + anon_sym_POUND, + ACTIONS(12649), 1, + aux_sym_unary_expression_token1, + STATE(1217), 1, + sym_call_expression, + STATE(1627), 1, + sym__signed_unary_expression, + STATE(1660), 1, + sym_member_expression, + STATE(13532), 1, + sym__callable_expression, + ACTIONS(12485), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1778), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18319), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18321), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1634), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [204293] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12459), 1, + sym_identifier, + ACTIONS(12461), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12463), 1, + anon_sym_DOT, + ACTIONS(12465), 1, + anon_sym_BANG, + ACTIONS(12467), 1, + anon_sym_LPAREN, + ACTIONS(12469), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12471), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12473), 1, + anon_sym_PLUS, + ACTIONS(12475), 1, + anon_sym_DASH, + ACTIONS(12477), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12479), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12489), 1, + anon_sym_POUND, + ACTIONS(12649), 1, + aux_sym_unary_expression_token1, + STATE(1217), 1, + sym_call_expression, + STATE(1627), 1, + sym__signed_unary_expression, + STATE(1660), 1, + sym_member_expression, + STATE(13532), 1, + sym__callable_expression, + ACTIONS(12485), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1778), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18323), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18325), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1635), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [204382] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12459), 1, + sym_identifier, + ACTIONS(12461), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12463), 1, + anon_sym_DOT, + ACTIONS(12465), 1, + anon_sym_BANG, + ACTIONS(12467), 1, + anon_sym_LPAREN, + ACTIONS(12469), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12471), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12473), 1, + anon_sym_PLUS, + ACTIONS(12475), 1, + anon_sym_DASH, + ACTIONS(12477), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12479), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12489), 1, + anon_sym_POUND, + ACTIONS(12649), 1, + aux_sym_unary_expression_token1, + STATE(1217), 1, + sym_call_expression, + STATE(1627), 1, + sym__signed_unary_expression, + STATE(1660), 1, + sym_member_expression, + STATE(13532), 1, + sym__callable_expression, + ACTIONS(12485), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1778), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18327), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18329), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1636), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [204471] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12459), 1, + sym_identifier, + ACTIONS(12461), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12463), 1, + anon_sym_DOT, + ACTIONS(12465), 1, + anon_sym_BANG, + ACTIONS(12467), 1, + anon_sym_LPAREN, + ACTIONS(12469), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12471), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12473), 1, + anon_sym_PLUS, + ACTIONS(12475), 1, + anon_sym_DASH, + ACTIONS(12477), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12479), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12489), 1, + anon_sym_POUND, + ACTIONS(12649), 1, + aux_sym_unary_expression_token1, + STATE(1217), 1, + sym_call_expression, + STATE(1627), 1, + sym__signed_unary_expression, + STATE(1660), 1, + sym_member_expression, + STATE(13532), 1, + sym__callable_expression, + ACTIONS(12485), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1778), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18331), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18333), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1637), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [204560] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12459), 1, + sym_identifier, + ACTIONS(12461), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12463), 1, + anon_sym_DOT, + ACTIONS(12465), 1, + anon_sym_BANG, + ACTIONS(12467), 1, + anon_sym_LPAREN, + ACTIONS(12469), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12471), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12473), 1, + anon_sym_PLUS, + ACTIONS(12475), 1, + anon_sym_DASH, + ACTIONS(12477), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12479), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12489), 1, + anon_sym_POUND, + ACTIONS(12649), 1, + aux_sym_unary_expression_token1, + STATE(1217), 1, + sym_call_expression, + STATE(1627), 1, + sym__signed_unary_expression, + STATE(1660), 1, + sym_member_expression, + STATE(13532), 1, + sym__callable_expression, + ACTIONS(12485), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1778), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18335), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18337), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1638), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [204649] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12459), 1, + sym_identifier, + ACTIONS(12461), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12463), 1, + anon_sym_DOT, + ACTIONS(12465), 1, + anon_sym_BANG, + ACTIONS(12467), 1, + anon_sym_LPAREN, + ACTIONS(12469), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12471), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12473), 1, + anon_sym_PLUS, + ACTIONS(12475), 1, + anon_sym_DASH, + ACTIONS(12477), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12479), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12489), 1, + anon_sym_POUND, + ACTIONS(12649), 1, + aux_sym_unary_expression_token1, + STATE(1217), 1, + sym_call_expression, + STATE(1627), 1, + sym__signed_unary_expression, + STATE(1660), 1, + sym_member_expression, + STATE(13532), 1, + sym__callable_expression, + ACTIONS(12485), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1778), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18339), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18341), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1639), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [204738] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12459), 1, + sym_identifier, + ACTIONS(12461), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12463), 1, + anon_sym_DOT, + ACTIONS(12465), 1, + anon_sym_BANG, + ACTIONS(12467), 1, + anon_sym_LPAREN, + ACTIONS(12469), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12471), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12473), 1, + anon_sym_PLUS, + ACTIONS(12475), 1, + anon_sym_DASH, + ACTIONS(12477), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12479), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12489), 1, + anon_sym_POUND, + ACTIONS(12649), 1, + aux_sym_unary_expression_token1, + STATE(1217), 1, + sym_call_expression, + STATE(1627), 1, + sym__signed_unary_expression, + STATE(1660), 1, + sym_member_expression, + STATE(13532), 1, + sym__callable_expression, + ACTIONS(12485), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1778), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18343), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18345), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1640), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [204827] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12459), 1, + sym_identifier, + ACTIONS(12461), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12463), 1, + anon_sym_DOT, + ACTIONS(12465), 1, + anon_sym_BANG, + ACTIONS(12467), 1, + anon_sym_LPAREN, + ACTIONS(12469), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12471), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12473), 1, + anon_sym_PLUS, + ACTIONS(12475), 1, + anon_sym_DASH, + ACTIONS(12477), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12479), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12489), 1, + anon_sym_POUND, + ACTIONS(12649), 1, + aux_sym_unary_expression_token1, + STATE(1217), 1, + sym_call_expression, + STATE(1627), 1, + sym__signed_unary_expression, + STATE(1660), 1, + sym_member_expression, + STATE(13532), 1, + sym__callable_expression, + ACTIONS(12485), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1778), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18347), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18349), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1641), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [204916] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12459), 1, + sym_identifier, + ACTIONS(12461), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12463), 1, + anon_sym_DOT, + ACTIONS(12465), 1, + anon_sym_BANG, + ACTIONS(12467), 1, + anon_sym_LPAREN, + ACTIONS(12469), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12471), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12473), 1, + anon_sym_PLUS, + ACTIONS(12475), 1, + anon_sym_DASH, + ACTIONS(12477), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12479), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12489), 1, + anon_sym_POUND, + ACTIONS(12649), 1, + aux_sym_unary_expression_token1, + STATE(1217), 1, + sym_call_expression, + STATE(1627), 1, + sym__signed_unary_expression, + STATE(1660), 1, + sym_member_expression, + STATE(13532), 1, + sym__callable_expression, + ACTIONS(12485), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1778), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18351), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18353), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1642), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [205005] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12459), 1, + sym_identifier, + ACTIONS(12461), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12463), 1, + anon_sym_DOT, + ACTIONS(12465), 1, + anon_sym_BANG, + ACTIONS(12467), 1, + anon_sym_LPAREN, + ACTIONS(12469), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12471), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12473), 1, + anon_sym_PLUS, + ACTIONS(12475), 1, + anon_sym_DASH, + ACTIONS(12477), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12479), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12489), 1, + anon_sym_POUND, + ACTIONS(12649), 1, + aux_sym_unary_expression_token1, + STATE(1217), 1, + sym_call_expression, + STATE(1627), 1, + sym__signed_unary_expression, + STATE(1660), 1, + sym_member_expression, + STATE(13532), 1, + sym__callable_expression, + ACTIONS(12485), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1778), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18355), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18357), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1643), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [205094] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12523), 1, + aux_sym_unary_expression_token1, + ACTIONS(12899), 1, + sym_identifier, + ACTIONS(12901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12903), 1, + anon_sym_DOT, + ACTIONS(12905), 1, + anon_sym_BANG, + ACTIONS(12907), 1, + anon_sym_LPAREN, + ACTIONS(12909), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12911), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12913), 1, + anon_sym_PLUS, + ACTIONS(12915), 1, + anon_sym_DASH, + ACTIONS(12917), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12919), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12927), 1, + anon_sym_POUND, + STATE(2685), 1, + sym_call_expression, + STATE(3093), 1, + sym__signed_unary_expression, + STATE(3364), 1, + sym_member_expression, + STATE(13461), 1, + sym__callable_expression, + ACTIONS(12923), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18359), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18361), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3144), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [205183] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12561), 1, + aux_sym_unary_expression_token1, + ACTIONS(15273), 1, + sym_identifier, + ACTIONS(15275), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(15277), 1, + anon_sym_DOT, + ACTIONS(15279), 1, + anon_sym_BANG, + ACTIONS(15281), 1, + anon_sym_LPAREN, + ACTIONS(15283), 1, + aux_sym_as_type_clause_token2, + ACTIONS(15285), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(15287), 1, + anon_sym_PLUS, + ACTIONS(15289), 1, + anon_sym_DASH, + ACTIONS(15291), 1, + aux_sym_addressof_expression_token1, + ACTIONS(15293), 1, + aux_sym_type_of_expression_token1, + ACTIONS(15301), 1, + anon_sym_POUND, + STATE(10330), 1, + sym_call_expression, + STATE(10361), 1, + sym_member_expression, + STATE(10403), 1, + sym__signed_unary_expression, + STATE(13082), 1, + sym__callable_expression, + ACTIONS(15297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10345), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18363), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18365), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10412), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [205272] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12561), 1, + aux_sym_unary_expression_token1, + ACTIONS(15273), 1, + sym_identifier, + ACTIONS(15275), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(15277), 1, + anon_sym_DOT, + ACTIONS(15279), 1, + anon_sym_BANG, + ACTIONS(15281), 1, + anon_sym_LPAREN, + ACTIONS(15283), 1, + aux_sym_as_type_clause_token2, + ACTIONS(15285), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(15287), 1, + anon_sym_PLUS, + ACTIONS(15289), 1, + anon_sym_DASH, + ACTIONS(15291), 1, + aux_sym_addressof_expression_token1, + ACTIONS(15293), 1, + aux_sym_type_of_expression_token1, + ACTIONS(15301), 1, + anon_sym_POUND, + STATE(10330), 1, + sym_call_expression, + STATE(10361), 1, + sym_member_expression, + STATE(10403), 1, + sym__signed_unary_expression, + STATE(13082), 1, + sym__callable_expression, + ACTIONS(15297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10345), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18367), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18369), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10384), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [205361] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12561), 1, + aux_sym_unary_expression_token1, + ACTIONS(15273), 1, + sym_identifier, + ACTIONS(15275), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(15277), 1, + anon_sym_DOT, + ACTIONS(15279), 1, + anon_sym_BANG, + ACTIONS(15281), 1, + anon_sym_LPAREN, + ACTIONS(15283), 1, + aux_sym_as_type_clause_token2, + ACTIONS(15285), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(15287), 1, + anon_sym_PLUS, + ACTIONS(15289), 1, + anon_sym_DASH, + ACTIONS(15291), 1, + aux_sym_addressof_expression_token1, + ACTIONS(15293), 1, + aux_sym_type_of_expression_token1, + ACTIONS(15301), 1, + anon_sym_POUND, + STATE(10330), 1, + sym_call_expression, + STATE(10361), 1, + sym_member_expression, + STATE(10403), 1, + sym__signed_unary_expression, + STATE(13082), 1, + sym__callable_expression, + ACTIONS(15297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10345), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18371), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18373), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10408), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [205450] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12561), 1, + aux_sym_unary_expression_token1, + ACTIONS(15273), 1, + sym_identifier, + ACTIONS(15275), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(15277), 1, + anon_sym_DOT, + ACTIONS(15279), 1, + anon_sym_BANG, + ACTIONS(15281), 1, + anon_sym_LPAREN, + ACTIONS(15283), 1, + aux_sym_as_type_clause_token2, + ACTIONS(15285), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(15287), 1, + anon_sym_PLUS, + ACTIONS(15289), 1, + anon_sym_DASH, + ACTIONS(15291), 1, + aux_sym_addressof_expression_token1, + ACTIONS(15293), 1, + aux_sym_type_of_expression_token1, + ACTIONS(15301), 1, + anon_sym_POUND, + STATE(10330), 1, + sym_call_expression, + STATE(10361), 1, + sym_member_expression, + STATE(10403), 1, + sym__signed_unary_expression, + STATE(13082), 1, + sym__callable_expression, + ACTIONS(15297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10345), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18375), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18377), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10409), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [205539] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12561), 1, + aux_sym_unary_expression_token1, + ACTIONS(15273), 1, + sym_identifier, + ACTIONS(15275), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(15277), 1, + anon_sym_DOT, + ACTIONS(15279), 1, + anon_sym_BANG, + ACTIONS(15281), 1, + anon_sym_LPAREN, + ACTIONS(15283), 1, + aux_sym_as_type_clause_token2, + ACTIONS(15285), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(15287), 1, + anon_sym_PLUS, + ACTIONS(15289), 1, + anon_sym_DASH, + ACTIONS(15291), 1, + aux_sym_addressof_expression_token1, + ACTIONS(15293), 1, + aux_sym_type_of_expression_token1, + ACTIONS(15301), 1, + anon_sym_POUND, + STATE(10330), 1, + sym_call_expression, + STATE(10361), 1, + sym_member_expression, + STATE(10403), 1, + sym__signed_unary_expression, + STATE(13082), 1, + sym__callable_expression, + ACTIONS(15297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10345), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18379), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18381), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10410), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [205628] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12561), 1, + aux_sym_unary_expression_token1, + ACTIONS(15273), 1, + sym_identifier, + ACTIONS(15275), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(15277), 1, + anon_sym_DOT, + ACTIONS(15279), 1, + anon_sym_BANG, + ACTIONS(15281), 1, + anon_sym_LPAREN, + ACTIONS(15283), 1, + aux_sym_as_type_clause_token2, + ACTIONS(15285), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(15287), 1, + anon_sym_PLUS, + ACTIONS(15289), 1, + anon_sym_DASH, + ACTIONS(15291), 1, + aux_sym_addressof_expression_token1, + ACTIONS(15293), 1, + aux_sym_type_of_expression_token1, + ACTIONS(15301), 1, + anon_sym_POUND, + STATE(10330), 1, + sym_call_expression, + STATE(10361), 1, + sym_member_expression, + STATE(10403), 1, + sym__signed_unary_expression, + STATE(13082), 1, + sym__callable_expression, + ACTIONS(15297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10345), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18383), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18385), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10411), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [205717] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12561), 1, + aux_sym_unary_expression_token1, + ACTIONS(15273), 1, + sym_identifier, + ACTIONS(15275), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(15277), 1, + anon_sym_DOT, + ACTIONS(15279), 1, + anon_sym_BANG, + ACTIONS(15281), 1, + anon_sym_LPAREN, + ACTIONS(15283), 1, + aux_sym_as_type_clause_token2, + ACTIONS(15285), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(15287), 1, + anon_sym_PLUS, + ACTIONS(15289), 1, + anon_sym_DASH, + ACTIONS(15291), 1, + aux_sym_addressof_expression_token1, + ACTIONS(15293), 1, + aux_sym_type_of_expression_token1, + ACTIONS(15301), 1, + anon_sym_POUND, + STATE(10330), 1, + sym_call_expression, + STATE(10361), 1, + sym_member_expression, + STATE(10403), 1, + sym__signed_unary_expression, + STATE(13082), 1, + sym__callable_expression, + ACTIONS(15297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10345), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18387), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18389), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10413), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [205806] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12561), 1, + aux_sym_unary_expression_token1, + ACTIONS(15273), 1, + sym_identifier, + ACTIONS(15275), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(15277), 1, + anon_sym_DOT, + ACTIONS(15279), 1, + anon_sym_BANG, + ACTIONS(15281), 1, + anon_sym_LPAREN, + ACTIONS(15283), 1, + aux_sym_as_type_clause_token2, + ACTIONS(15285), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(15287), 1, + anon_sym_PLUS, + ACTIONS(15289), 1, + anon_sym_DASH, + ACTIONS(15291), 1, + aux_sym_addressof_expression_token1, + ACTIONS(15293), 1, + aux_sym_type_of_expression_token1, + ACTIONS(15301), 1, + anon_sym_POUND, + STATE(10330), 1, + sym_call_expression, + STATE(10361), 1, + sym_member_expression, + STATE(10403), 1, + sym__signed_unary_expression, + STATE(13082), 1, + sym__callable_expression, + ACTIONS(15297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10345), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18391), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18393), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10414), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [205895] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12561), 1, + aux_sym_unary_expression_token1, + ACTIONS(15273), 1, + sym_identifier, + ACTIONS(15275), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(15277), 1, + anon_sym_DOT, + ACTIONS(15279), 1, + anon_sym_BANG, + ACTIONS(15281), 1, + anon_sym_LPAREN, + ACTIONS(15283), 1, + aux_sym_as_type_clause_token2, + ACTIONS(15285), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(15287), 1, + anon_sym_PLUS, + ACTIONS(15289), 1, + anon_sym_DASH, + ACTIONS(15291), 1, + aux_sym_addressof_expression_token1, + ACTIONS(15293), 1, + aux_sym_type_of_expression_token1, + ACTIONS(15301), 1, + anon_sym_POUND, + STATE(10330), 1, + sym_call_expression, + STATE(10361), 1, + sym_member_expression, + STATE(10403), 1, + sym__signed_unary_expression, + STATE(13082), 1, + sym__callable_expression, + ACTIONS(15297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10345), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18395), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18397), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10415), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [205984] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12561), 1, + aux_sym_unary_expression_token1, + ACTIONS(15273), 1, + sym_identifier, + ACTIONS(15275), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(15277), 1, + anon_sym_DOT, + ACTIONS(15279), 1, + anon_sym_BANG, + ACTIONS(15281), 1, + anon_sym_LPAREN, + ACTIONS(15283), 1, + aux_sym_as_type_clause_token2, + ACTIONS(15285), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(15287), 1, + anon_sym_PLUS, + ACTIONS(15289), 1, + anon_sym_DASH, + ACTIONS(15291), 1, + aux_sym_addressof_expression_token1, + ACTIONS(15293), 1, + aux_sym_type_of_expression_token1, + ACTIONS(15301), 1, + anon_sym_POUND, + STATE(10330), 1, + sym_call_expression, + STATE(10361), 1, + sym_member_expression, + STATE(10403), 1, + sym__signed_unary_expression, + STATE(13082), 1, + sym__callable_expression, + ACTIONS(15297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10345), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18399), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18401), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10383), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [206073] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12561), 1, + aux_sym_unary_expression_token1, + ACTIONS(15273), 1, + sym_identifier, + ACTIONS(15275), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(15277), 1, + anon_sym_DOT, + ACTIONS(15279), 1, + anon_sym_BANG, + ACTIONS(15281), 1, + anon_sym_LPAREN, + ACTIONS(15283), 1, + aux_sym_as_type_clause_token2, + ACTIONS(15285), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(15287), 1, + anon_sym_PLUS, + ACTIONS(15289), 1, + anon_sym_DASH, + ACTIONS(15291), 1, + aux_sym_addressof_expression_token1, + ACTIONS(15293), 1, + aux_sym_type_of_expression_token1, + ACTIONS(15301), 1, + anon_sym_POUND, + STATE(10330), 1, + sym_call_expression, + STATE(10361), 1, + sym_member_expression, + STATE(10403), 1, + sym__signed_unary_expression, + STATE(13082), 1, + sym__callable_expression, + ACTIONS(15297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10345), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18403), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18405), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10388), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [206162] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12561), 1, + aux_sym_unary_expression_token1, + ACTIONS(15273), 1, + sym_identifier, + ACTIONS(15275), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(15277), 1, + anon_sym_DOT, + ACTIONS(15279), 1, + anon_sym_BANG, + ACTIONS(15281), 1, + anon_sym_LPAREN, + ACTIONS(15283), 1, + aux_sym_as_type_clause_token2, + ACTIONS(15285), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(15287), 1, + anon_sym_PLUS, + ACTIONS(15289), 1, + anon_sym_DASH, + ACTIONS(15291), 1, + aux_sym_addressof_expression_token1, + ACTIONS(15293), 1, + aux_sym_type_of_expression_token1, + ACTIONS(15301), 1, + anon_sym_POUND, + STATE(10330), 1, + sym_call_expression, + STATE(10361), 1, + sym_member_expression, + STATE(10403), 1, + sym__signed_unary_expression, + STATE(13082), 1, + sym__callable_expression, + ACTIONS(15297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10345), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18407), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18409), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10400), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [206251] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12561), 1, + aux_sym_unary_expression_token1, + ACTIONS(15273), 1, + sym_identifier, + ACTIONS(15275), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(15277), 1, + anon_sym_DOT, + ACTIONS(15279), 1, + anon_sym_BANG, + ACTIONS(15281), 1, + anon_sym_LPAREN, + ACTIONS(15283), 1, + aux_sym_as_type_clause_token2, + ACTIONS(15285), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(15287), 1, + anon_sym_PLUS, + ACTIONS(15289), 1, + anon_sym_DASH, + ACTIONS(15291), 1, + aux_sym_addressof_expression_token1, + ACTIONS(15293), 1, + aux_sym_type_of_expression_token1, + ACTIONS(15301), 1, + anon_sym_POUND, + STATE(10330), 1, + sym_call_expression, + STATE(10361), 1, + sym_member_expression, + STATE(10403), 1, + sym__signed_unary_expression, + STATE(13082), 1, + sym__callable_expression, + ACTIONS(15297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10345), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18411), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18413), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10402), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [206340] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12237), 1, + sym_identifier, + ACTIONS(12239), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12241), 1, + anon_sym_DOT, + ACTIONS(12243), 1, + anon_sym_BANG, + ACTIONS(12245), 1, + anon_sym_LPAREN, + ACTIONS(12247), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12249), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12251), 1, + anon_sym_PLUS, + ACTIONS(12253), 1, + anon_sym_DASH, + ACTIONS(12255), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12257), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12267), 1, + anon_sym_POUND, + ACTIONS(12533), 1, + aux_sym_unary_expression_token1, + STATE(1445), 1, + sym_call_expression, + STATE(1541), 1, + sym__signed_unary_expression, + STATE(1565), 1, + sym_member_expression, + STATE(13524), 1, + sym__callable_expression, + ACTIONS(12263), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1644), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18415), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18417), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1859), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [206429] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12571), 1, + aux_sym_unary_expression_token1, + ACTIONS(15467), 1, + anon_sym_PLUS, + ACTIONS(15469), 1, + anon_sym_DASH, + ACTIONS(15475), 1, + anon_sym_POUND, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18419), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18421), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1973), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [206518] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12571), 1, + aux_sym_unary_expression_token1, + ACTIONS(15467), 1, + anon_sym_PLUS, + ACTIONS(15469), 1, + anon_sym_DASH, + ACTIONS(15475), 1, + anon_sym_POUND, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18423), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18425), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1974), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [206607] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12571), 1, + aux_sym_unary_expression_token1, + ACTIONS(15467), 1, + anon_sym_PLUS, + ACTIONS(15469), 1, + anon_sym_DASH, + ACTIONS(15475), 1, + anon_sym_POUND, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18427), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18429), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1975), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [206696] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12571), 1, + aux_sym_unary_expression_token1, + ACTIONS(15467), 1, + anon_sym_PLUS, + ACTIONS(15469), 1, + anon_sym_DASH, + ACTIONS(15475), 1, + anon_sym_POUND, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18431), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18433), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1976), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [206785] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12571), 1, + aux_sym_unary_expression_token1, + ACTIONS(15467), 1, + anon_sym_PLUS, + ACTIONS(15469), 1, + anon_sym_DASH, + ACTIONS(15475), 1, + anon_sym_POUND, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18435), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18437), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1977), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [206874] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12571), 1, + aux_sym_unary_expression_token1, + ACTIONS(15467), 1, + anon_sym_PLUS, + ACTIONS(15469), 1, + anon_sym_DASH, + ACTIONS(15475), 1, + anon_sym_POUND, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18439), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18441), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1978), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [206963] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12571), 1, + aux_sym_unary_expression_token1, + ACTIONS(15467), 1, + anon_sym_PLUS, + ACTIONS(15469), 1, + anon_sym_DASH, + ACTIONS(15475), 1, + anon_sym_POUND, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18443), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18445), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1979), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [207052] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12571), 1, + aux_sym_unary_expression_token1, + ACTIONS(15467), 1, + anon_sym_PLUS, + ACTIONS(15469), 1, + anon_sym_DASH, + ACTIONS(15475), 1, + anon_sym_POUND, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18447), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18449), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1980), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [207141] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12571), 1, + aux_sym_unary_expression_token1, + ACTIONS(15467), 1, + anon_sym_PLUS, + ACTIONS(15469), 1, + anon_sym_DASH, + ACTIONS(15475), 1, + anon_sym_POUND, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18451), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18453), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1981), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [207230] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12571), 1, + aux_sym_unary_expression_token1, + ACTIONS(15467), 1, + anon_sym_PLUS, + ACTIONS(15469), 1, + anon_sym_DASH, + ACTIONS(15475), 1, + anon_sym_POUND, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18455), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18457), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1982), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [207319] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12571), 1, + aux_sym_unary_expression_token1, + ACTIONS(15467), 1, + anon_sym_PLUS, + ACTIONS(15469), 1, + anon_sym_DASH, + ACTIONS(15475), 1, + anon_sym_POUND, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18459), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18461), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1983), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [207408] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12571), 1, + aux_sym_unary_expression_token1, + ACTIONS(15467), 1, + anon_sym_PLUS, + ACTIONS(15469), 1, + anon_sym_DASH, + ACTIONS(15475), 1, + anon_sym_POUND, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18463), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18465), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1984), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [207497] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12571), 1, + aux_sym_unary_expression_token1, + ACTIONS(15467), 1, + anon_sym_PLUS, + ACTIONS(15469), 1, + anon_sym_DASH, + ACTIONS(15475), 1, + anon_sym_POUND, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18467), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18469), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1985), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [207586] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12561), 1, + aux_sym_unary_expression_token1, + ACTIONS(15273), 1, + sym_identifier, + ACTIONS(15275), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(15277), 1, + anon_sym_DOT, + ACTIONS(15279), 1, + anon_sym_BANG, + ACTIONS(15281), 1, + anon_sym_LPAREN, + ACTIONS(15283), 1, + aux_sym_as_type_clause_token2, + ACTIONS(15285), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(15287), 1, + anon_sym_PLUS, + ACTIONS(15289), 1, + anon_sym_DASH, + ACTIONS(15291), 1, + aux_sym_addressof_expression_token1, + ACTIONS(15293), 1, + aux_sym_type_of_expression_token1, + ACTIONS(15301), 1, + anon_sym_POUND, + STATE(10330), 1, + sym_call_expression, + STATE(10361), 1, + sym_member_expression, + STATE(10403), 1, + sym__signed_unary_expression, + STATE(13082), 1, + sym__callable_expression, + ACTIONS(15297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10345), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18471), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18473), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10397), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [207675] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(13005), 1, + sym_identifier, + ACTIONS(13007), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13009), 1, + anon_sym_DOT, + ACTIONS(13011), 1, + anon_sym_BANG, + ACTIONS(13013), 1, + anon_sym_LPAREN, + ACTIONS(13015), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13017), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13019), 1, + anon_sym_PLUS, + ACTIONS(13021), 1, + anon_sym_DASH, + ACTIONS(13023), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13025), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13033), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_call_expression, + STATE(2015), 1, + sym__signed_unary_expression, + STATE(2059), 1, + sym_member_expression, + STATE(13116), 1, + sym__callable_expression, + ACTIONS(13029), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18475), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18477), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2150), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [207764] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(13005), 1, + sym_identifier, + ACTIONS(13007), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13009), 1, + anon_sym_DOT, + ACTIONS(13011), 1, + anon_sym_BANG, + ACTIONS(13013), 1, + anon_sym_LPAREN, + ACTIONS(13015), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13017), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13019), 1, + anon_sym_PLUS, + ACTIONS(13021), 1, + anon_sym_DASH, + ACTIONS(13023), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13025), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13033), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_call_expression, + STATE(2015), 1, + sym__signed_unary_expression, + STATE(2059), 1, + sym_member_expression, + STATE(13116), 1, + sym__callable_expression, + ACTIONS(13029), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18479), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18481), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2155), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [207853] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(13005), 1, + sym_identifier, + ACTIONS(13007), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13009), 1, + anon_sym_DOT, + ACTIONS(13011), 1, + anon_sym_BANG, + ACTIONS(13013), 1, + anon_sym_LPAREN, + ACTIONS(13015), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13017), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13019), 1, + anon_sym_PLUS, + ACTIONS(13021), 1, + anon_sym_DASH, + ACTIONS(13023), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13025), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13033), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_call_expression, + STATE(2015), 1, + sym__signed_unary_expression, + STATE(2059), 1, + sym_member_expression, + STATE(13116), 1, + sym__callable_expression, + ACTIONS(13029), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18483), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18485), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2043), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [207942] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(13005), 1, + sym_identifier, + ACTIONS(13007), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13009), 1, + anon_sym_DOT, + ACTIONS(13011), 1, + anon_sym_BANG, + ACTIONS(13013), 1, + anon_sym_LPAREN, + ACTIONS(13015), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13017), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13019), 1, + anon_sym_PLUS, + ACTIONS(13021), 1, + anon_sym_DASH, + ACTIONS(13023), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13025), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13033), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_call_expression, + STATE(2015), 1, + sym__signed_unary_expression, + STATE(2059), 1, + sym_member_expression, + STATE(13116), 1, + sym__callable_expression, + ACTIONS(13029), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18487), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18489), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2044), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [208031] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(13005), 1, + sym_identifier, + ACTIONS(13007), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13009), 1, + anon_sym_DOT, + ACTIONS(13011), 1, + anon_sym_BANG, + ACTIONS(13013), 1, + anon_sym_LPAREN, + ACTIONS(13015), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13017), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13019), 1, + anon_sym_PLUS, + ACTIONS(13021), 1, + anon_sym_DASH, + ACTIONS(13023), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13025), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13033), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_call_expression, + STATE(2015), 1, + sym__signed_unary_expression, + STATE(2059), 1, + sym_member_expression, + STATE(13116), 1, + sym__callable_expression, + ACTIONS(13029), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18491), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18493), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2045), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [208120] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(13005), 1, + sym_identifier, + ACTIONS(13007), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13009), 1, + anon_sym_DOT, + ACTIONS(13011), 1, + anon_sym_BANG, + ACTIONS(13013), 1, + anon_sym_LPAREN, + ACTIONS(13015), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13017), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13019), 1, + anon_sym_PLUS, + ACTIONS(13021), 1, + anon_sym_DASH, + ACTIONS(13023), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13025), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13033), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_call_expression, + STATE(2015), 1, + sym__signed_unary_expression, + STATE(2059), 1, + sym_member_expression, + STATE(13116), 1, + sym__callable_expression, + ACTIONS(13029), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18495), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18497), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2046), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [208209] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(13005), 1, + sym_identifier, + ACTIONS(13007), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13009), 1, + anon_sym_DOT, + ACTIONS(13011), 1, + anon_sym_BANG, + ACTIONS(13013), 1, + anon_sym_LPAREN, + ACTIONS(13015), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13017), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13019), 1, + anon_sym_PLUS, + ACTIONS(13021), 1, + anon_sym_DASH, + ACTIONS(13023), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13025), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13033), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_call_expression, + STATE(2015), 1, + sym__signed_unary_expression, + STATE(2059), 1, + sym_member_expression, + STATE(13116), 1, + sym__callable_expression, + ACTIONS(13029), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18499), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18501), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2047), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [208298] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(13005), 1, + sym_identifier, + ACTIONS(13007), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13009), 1, + anon_sym_DOT, + ACTIONS(13011), 1, + anon_sym_BANG, + ACTIONS(13013), 1, + anon_sym_LPAREN, + ACTIONS(13015), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13017), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13019), 1, + anon_sym_PLUS, + ACTIONS(13021), 1, + anon_sym_DASH, + ACTIONS(13023), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13025), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13033), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_call_expression, + STATE(2015), 1, + sym__signed_unary_expression, + STATE(2059), 1, + sym_member_expression, + STATE(13116), 1, + sym__callable_expression, + ACTIONS(13029), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18503), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18505), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2048), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [208387] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(13005), 1, + sym_identifier, + ACTIONS(13007), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13009), 1, + anon_sym_DOT, + ACTIONS(13011), 1, + anon_sym_BANG, + ACTIONS(13013), 1, + anon_sym_LPAREN, + ACTIONS(13015), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13017), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13019), 1, + anon_sym_PLUS, + ACTIONS(13021), 1, + anon_sym_DASH, + ACTIONS(13023), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13025), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13033), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_call_expression, + STATE(2015), 1, + sym__signed_unary_expression, + STATE(2059), 1, + sym_member_expression, + STATE(13116), 1, + sym__callable_expression, + ACTIONS(13029), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18507), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18509), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2049), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [208476] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(13005), 1, + sym_identifier, + ACTIONS(13007), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13009), 1, + anon_sym_DOT, + ACTIONS(13011), 1, + anon_sym_BANG, + ACTIONS(13013), 1, + anon_sym_LPAREN, + ACTIONS(13015), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13017), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13019), 1, + anon_sym_PLUS, + ACTIONS(13021), 1, + anon_sym_DASH, + ACTIONS(13023), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13025), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13033), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_call_expression, + STATE(2015), 1, + sym__signed_unary_expression, + STATE(2059), 1, + sym_member_expression, + STATE(13116), 1, + sym__callable_expression, + ACTIONS(13029), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18511), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18513), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2050), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [208565] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(13005), 1, + sym_identifier, + ACTIONS(13007), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13009), 1, + anon_sym_DOT, + ACTIONS(13011), 1, + anon_sym_BANG, + ACTIONS(13013), 1, + anon_sym_LPAREN, + ACTIONS(13015), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13017), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13019), 1, + anon_sym_PLUS, + ACTIONS(13021), 1, + anon_sym_DASH, + ACTIONS(13023), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13025), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13033), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_call_expression, + STATE(2015), 1, + sym__signed_unary_expression, + STATE(2059), 1, + sym_member_expression, + STATE(13116), 1, + sym__callable_expression, + ACTIONS(13029), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18515), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18517), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2051), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [208654] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(13005), 1, + sym_identifier, + ACTIONS(13007), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13009), 1, + anon_sym_DOT, + ACTIONS(13011), 1, + anon_sym_BANG, + ACTIONS(13013), 1, + anon_sym_LPAREN, + ACTIONS(13015), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13017), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13019), 1, + anon_sym_PLUS, + ACTIONS(13021), 1, + anon_sym_DASH, + ACTIONS(13023), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13025), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13033), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_call_expression, + STATE(2015), 1, + sym__signed_unary_expression, + STATE(2059), 1, + sym_member_expression, + STATE(13116), 1, + sym__callable_expression, + ACTIONS(13029), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18519), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18521), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2052), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [208743] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(13005), 1, + sym_identifier, + ACTIONS(13007), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13009), 1, + anon_sym_DOT, + ACTIONS(13011), 1, + anon_sym_BANG, + ACTIONS(13013), 1, + anon_sym_LPAREN, + ACTIONS(13015), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13017), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13019), 1, + anon_sym_PLUS, + ACTIONS(13021), 1, + anon_sym_DASH, + ACTIONS(13023), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13025), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13033), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_call_expression, + STATE(2015), 1, + sym__signed_unary_expression, + STATE(2059), 1, + sym_member_expression, + STATE(13116), 1, + sym__callable_expression, + ACTIONS(13029), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18523), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18525), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2053), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [208832] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12571), 1, + aux_sym_unary_expression_token1, + ACTIONS(15467), 1, + anon_sym_PLUS, + ACTIONS(15469), 1, + anon_sym_DASH, + ACTIONS(15475), 1, + anon_sym_POUND, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18527), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18529), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1986), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [208921] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11993), 1, + aux_sym_unary_expression_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1413), 1, + sym__signed_unary_expression, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18531), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18533), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1412), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [209010] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11993), 1, + aux_sym_unary_expression_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1413), 1, + sym__signed_unary_expression, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18535), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18537), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1415), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [209099] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11993), 1, + aux_sym_unary_expression_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1413), 1, + sym__signed_unary_expression, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18539), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18541), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1062), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [209188] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11993), 1, + aux_sym_unary_expression_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1413), 1, + sym__signed_unary_expression, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18543), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18545), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1063), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [209277] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11993), 1, + aux_sym_unary_expression_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1413), 1, + sym__signed_unary_expression, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18549), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1064), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [209366] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11993), 1, + aux_sym_unary_expression_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1413), 1, + sym__signed_unary_expression, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18551), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18553), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1065), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [209455] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11993), 1, + aux_sym_unary_expression_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1413), 1, + sym__signed_unary_expression, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18555), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18557), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1066), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [209544] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11993), 1, + aux_sym_unary_expression_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1413), 1, + sym__signed_unary_expression, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18559), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18561), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1067), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [209633] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11993), 1, + aux_sym_unary_expression_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1413), 1, + sym__signed_unary_expression, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18563), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18565), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1068), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [209722] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11993), 1, + aux_sym_unary_expression_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1413), 1, + sym__signed_unary_expression, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18567), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18569), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1069), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [209811] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11993), 1, + aux_sym_unary_expression_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1413), 1, + sym__signed_unary_expression, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18571), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18573), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1070), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [209900] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11993), 1, + aux_sym_unary_expression_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1413), 1, + sym__signed_unary_expression, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18575), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18577), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1071), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [209989] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11993), 1, + aux_sym_unary_expression_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1413), 1, + sym__signed_unary_expression, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18579), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18581), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1072), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [210078] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_unary_expression_token1, + ACTIONS(13005), 1, + sym_identifier, + ACTIONS(13007), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13009), 1, + anon_sym_DOT, + ACTIONS(13011), 1, + anon_sym_BANG, + ACTIONS(13013), 1, + anon_sym_LPAREN, + ACTIONS(13015), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13017), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13019), 1, + anon_sym_PLUS, + ACTIONS(13021), 1, + anon_sym_DASH, + ACTIONS(13023), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13025), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13033), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_call_expression, + STATE(2015), 1, + sym__signed_unary_expression, + STATE(2059), 1, + sym_member_expression, + STATE(13116), 1, + sym__callable_expression, + ACTIONS(13029), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18583), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2013), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [210167] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12623), 1, + aux_sym_unary_expression_token1, + ACTIONS(15649), 1, + anon_sym_PLUS, + ACTIONS(15651), 1, + anon_sym_DASH, + ACTIONS(15657), 1, + anon_sym_POUND, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18587), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18589), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2323), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [210256] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12623), 1, + aux_sym_unary_expression_token1, + ACTIONS(15649), 1, + anon_sym_PLUS, + ACTIONS(15651), 1, + anon_sym_DASH, + ACTIONS(15657), 1, + anon_sym_POUND, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18591), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18593), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2324), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [210345] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12623), 1, + aux_sym_unary_expression_token1, + ACTIONS(15649), 1, + anon_sym_PLUS, + ACTIONS(15651), 1, + anon_sym_DASH, + ACTIONS(15657), 1, + anon_sym_POUND, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18595), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18597), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2328), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [210434] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12623), 1, + aux_sym_unary_expression_token1, + ACTIONS(15649), 1, + anon_sym_PLUS, + ACTIONS(15651), 1, + anon_sym_DASH, + ACTIONS(15657), 1, + anon_sym_POUND, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18599), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18601), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2329), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [210523] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12623), 1, + aux_sym_unary_expression_token1, + ACTIONS(15649), 1, + anon_sym_PLUS, + ACTIONS(15651), 1, + anon_sym_DASH, + ACTIONS(15657), 1, + anon_sym_POUND, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18603), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18605), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2330), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [210612] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12623), 1, + aux_sym_unary_expression_token1, + ACTIONS(15649), 1, + anon_sym_PLUS, + ACTIONS(15651), 1, + anon_sym_DASH, + ACTIONS(15657), 1, + anon_sym_POUND, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18607), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18609), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2331), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [210701] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12623), 1, + aux_sym_unary_expression_token1, + ACTIONS(15649), 1, + anon_sym_PLUS, + ACTIONS(15651), 1, + anon_sym_DASH, + ACTIONS(15657), 1, + anon_sym_POUND, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18611), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18613), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2332), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [210790] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12623), 1, + aux_sym_unary_expression_token1, + ACTIONS(15649), 1, + anon_sym_PLUS, + ACTIONS(15651), 1, + anon_sym_DASH, + ACTIONS(15657), 1, + anon_sym_POUND, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18615), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18617), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2333), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [210879] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12623), 1, + aux_sym_unary_expression_token1, + ACTIONS(15649), 1, + anon_sym_PLUS, + ACTIONS(15651), 1, + anon_sym_DASH, + ACTIONS(15657), 1, + anon_sym_POUND, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18619), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18621), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2334), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [210968] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12623), 1, + aux_sym_unary_expression_token1, + ACTIONS(15649), 1, + anon_sym_PLUS, + ACTIONS(15651), 1, + anon_sym_DASH, + ACTIONS(15657), 1, + anon_sym_POUND, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18623), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18625), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2335), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [211057] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12623), 1, + aux_sym_unary_expression_token1, + ACTIONS(15649), 1, + anon_sym_PLUS, + ACTIONS(15651), 1, + anon_sym_DASH, + ACTIONS(15657), 1, + anon_sym_POUND, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18627), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18629), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2336), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [211146] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12623), 1, + aux_sym_unary_expression_token1, + ACTIONS(15649), 1, + anon_sym_PLUS, + ACTIONS(15651), 1, + anon_sym_DASH, + ACTIONS(15657), 1, + anon_sym_POUND, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18631), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18633), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2337), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [211235] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12623), 1, + aux_sym_unary_expression_token1, + ACTIONS(15649), 1, + anon_sym_PLUS, + ACTIONS(15651), 1, + anon_sym_DASH, + ACTIONS(15657), 1, + anon_sym_POUND, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18635), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18637), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2338), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [211324] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12271), 1, + sym_identifier, + ACTIONS(12273), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12275), 1, + anon_sym_DOT, + ACTIONS(12277), 1, + anon_sym_BANG, + ACTIONS(12279), 1, + anon_sym_LPAREN, + ACTIONS(12281), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12283), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12285), 1, + anon_sym_PLUS, + ACTIONS(12287), 1, + anon_sym_DASH, + ACTIONS(12289), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12291), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12301), 1, + anon_sym_POUND, + ACTIONS(12611), 1, + aux_sym_unary_expression_token1, + STATE(586), 1, + sym_call_expression, + STATE(662), 1, + sym_member_expression, + STATE(742), 1, + sym__signed_unary_expression, + STATE(13649), 1, + sym__callable_expression, + ACTIONS(12297), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(673), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18639), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18641), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(715), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [211413] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + ACTIONS(12933), 1, + sym_identifier, + ACTIONS(12935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12937), 1, + anon_sym_DOT, + ACTIONS(12939), 1, + anon_sym_BANG, + ACTIONS(12941), 1, + anon_sym_LPAREN, + ACTIONS(12943), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12945), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12947), 1, + anon_sym_PLUS, + ACTIONS(12949), 1, + anon_sym_DASH, + ACTIONS(12951), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12953), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12961), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_call_expression, + STATE(2375), 1, + sym_member_expression, + STATE(2401), 1, + sym__signed_unary_expression, + STATE(13228), 1, + sym__callable_expression, + ACTIONS(12957), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18643), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18645), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2423), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [211502] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + ACTIONS(12933), 1, + sym_identifier, + ACTIONS(12935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12937), 1, + anon_sym_DOT, + ACTIONS(12939), 1, + anon_sym_BANG, + ACTIONS(12941), 1, + anon_sym_LPAREN, + ACTIONS(12943), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12945), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12947), 1, + anon_sym_PLUS, + ACTIONS(12949), 1, + anon_sym_DASH, + ACTIONS(12951), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12953), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12961), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_call_expression, + STATE(2375), 1, + sym_member_expression, + STATE(2401), 1, + sym__signed_unary_expression, + STATE(13228), 1, + sym__callable_expression, + ACTIONS(12957), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18647), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18649), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2425), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [211591] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + ACTIONS(12933), 1, + sym_identifier, + ACTIONS(12935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12937), 1, + anon_sym_DOT, + ACTIONS(12939), 1, + anon_sym_BANG, + ACTIONS(12941), 1, + anon_sym_LPAREN, + ACTIONS(12943), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12945), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12947), 1, + anon_sym_PLUS, + ACTIONS(12949), 1, + anon_sym_DASH, + ACTIONS(12951), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12953), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12961), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_call_expression, + STATE(2375), 1, + sym_member_expression, + STATE(2401), 1, + sym__signed_unary_expression, + STATE(13228), 1, + sym__callable_expression, + ACTIONS(12957), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18651), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18653), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2477), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [211680] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + ACTIONS(12933), 1, + sym_identifier, + ACTIONS(12935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12937), 1, + anon_sym_DOT, + ACTIONS(12939), 1, + anon_sym_BANG, + ACTIONS(12941), 1, + anon_sym_LPAREN, + ACTIONS(12943), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12945), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12947), 1, + anon_sym_PLUS, + ACTIONS(12949), 1, + anon_sym_DASH, + ACTIONS(12951), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12953), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12961), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_call_expression, + STATE(2375), 1, + sym_member_expression, + STATE(2401), 1, + sym__signed_unary_expression, + STATE(13228), 1, + sym__callable_expression, + ACTIONS(12957), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18655), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18657), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2478), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [211769] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + ACTIONS(12933), 1, + sym_identifier, + ACTIONS(12935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12937), 1, + anon_sym_DOT, + ACTIONS(12939), 1, + anon_sym_BANG, + ACTIONS(12941), 1, + anon_sym_LPAREN, + ACTIONS(12943), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12945), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12947), 1, + anon_sym_PLUS, + ACTIONS(12949), 1, + anon_sym_DASH, + ACTIONS(12951), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12953), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12961), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_call_expression, + STATE(2375), 1, + sym_member_expression, + STATE(2401), 1, + sym__signed_unary_expression, + STATE(13228), 1, + sym__callable_expression, + ACTIONS(12957), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18659), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18661), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2480), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [211858] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + ACTIONS(12933), 1, + sym_identifier, + ACTIONS(12935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12937), 1, + anon_sym_DOT, + ACTIONS(12939), 1, + anon_sym_BANG, + ACTIONS(12941), 1, + anon_sym_LPAREN, + ACTIONS(12943), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12945), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12947), 1, + anon_sym_PLUS, + ACTIONS(12949), 1, + anon_sym_DASH, + ACTIONS(12951), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12953), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12961), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_call_expression, + STATE(2375), 1, + sym_member_expression, + STATE(2401), 1, + sym__signed_unary_expression, + STATE(13228), 1, + sym__callable_expression, + ACTIONS(12957), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18663), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18665), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2481), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [211947] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + ACTIONS(12933), 1, + sym_identifier, + ACTIONS(12935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12937), 1, + anon_sym_DOT, + ACTIONS(12939), 1, + anon_sym_BANG, + ACTIONS(12941), 1, + anon_sym_LPAREN, + ACTIONS(12943), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12945), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12947), 1, + anon_sym_PLUS, + ACTIONS(12949), 1, + anon_sym_DASH, + ACTIONS(12951), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12953), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12961), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_call_expression, + STATE(2375), 1, + sym_member_expression, + STATE(2401), 1, + sym__signed_unary_expression, + STATE(13228), 1, + sym__callable_expression, + ACTIONS(12957), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18667), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18669), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2482), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [212036] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + ACTIONS(12933), 1, + sym_identifier, + ACTIONS(12935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12937), 1, + anon_sym_DOT, + ACTIONS(12939), 1, + anon_sym_BANG, + ACTIONS(12941), 1, + anon_sym_LPAREN, + ACTIONS(12943), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12945), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12947), 1, + anon_sym_PLUS, + ACTIONS(12949), 1, + anon_sym_DASH, + ACTIONS(12951), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12953), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12961), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_call_expression, + STATE(2375), 1, + sym_member_expression, + STATE(2401), 1, + sym__signed_unary_expression, + STATE(13228), 1, + sym__callable_expression, + ACTIONS(12957), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18671), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18673), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2484), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [212125] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + ACTIONS(12933), 1, + sym_identifier, + ACTIONS(12935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12937), 1, + anon_sym_DOT, + ACTIONS(12939), 1, + anon_sym_BANG, + ACTIONS(12941), 1, + anon_sym_LPAREN, + ACTIONS(12943), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12945), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12947), 1, + anon_sym_PLUS, + ACTIONS(12949), 1, + anon_sym_DASH, + ACTIONS(12951), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12953), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12961), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_call_expression, + STATE(2375), 1, + sym_member_expression, + STATE(2401), 1, + sym__signed_unary_expression, + STATE(13228), 1, + sym__callable_expression, + ACTIONS(12957), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18675), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18677), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2489), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [212214] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + ACTIONS(12933), 1, + sym_identifier, + ACTIONS(12935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12937), 1, + anon_sym_DOT, + ACTIONS(12939), 1, + anon_sym_BANG, + ACTIONS(12941), 1, + anon_sym_LPAREN, + ACTIONS(12943), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12945), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12947), 1, + anon_sym_PLUS, + ACTIONS(12949), 1, + anon_sym_DASH, + ACTIONS(12951), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12953), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12961), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_call_expression, + STATE(2375), 1, + sym_member_expression, + STATE(2401), 1, + sym__signed_unary_expression, + STATE(13228), 1, + sym__callable_expression, + ACTIONS(12957), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18679), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18681), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2490), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [212303] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + ACTIONS(12933), 1, + sym_identifier, + ACTIONS(12935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12937), 1, + anon_sym_DOT, + ACTIONS(12939), 1, + anon_sym_BANG, + ACTIONS(12941), 1, + anon_sym_LPAREN, + ACTIONS(12943), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12945), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12947), 1, + anon_sym_PLUS, + ACTIONS(12949), 1, + anon_sym_DASH, + ACTIONS(12951), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12953), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12961), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_call_expression, + STATE(2375), 1, + sym_member_expression, + STATE(2401), 1, + sym__signed_unary_expression, + STATE(13228), 1, + sym__callable_expression, + ACTIONS(12957), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18683), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18685), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2491), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [212392] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + ACTIONS(12933), 1, + sym_identifier, + ACTIONS(12935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12937), 1, + anon_sym_DOT, + ACTIONS(12939), 1, + anon_sym_BANG, + ACTIONS(12941), 1, + anon_sym_LPAREN, + ACTIONS(12943), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12945), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12947), 1, + anon_sym_PLUS, + ACTIONS(12949), 1, + anon_sym_DASH, + ACTIONS(12951), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12953), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12961), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_call_expression, + STATE(2375), 1, + sym_member_expression, + STATE(2401), 1, + sym__signed_unary_expression, + STATE(13228), 1, + sym__callable_expression, + ACTIONS(12957), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18687), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18689), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2492), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [212481] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + ACTIONS(12933), 1, + sym_identifier, + ACTIONS(12935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12937), 1, + anon_sym_DOT, + ACTIONS(12939), 1, + anon_sym_BANG, + ACTIONS(12941), 1, + anon_sym_LPAREN, + ACTIONS(12943), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12945), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12947), 1, + anon_sym_PLUS, + ACTIONS(12949), 1, + anon_sym_DASH, + ACTIONS(12951), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12953), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12961), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_call_expression, + STATE(2375), 1, + sym_member_expression, + STATE(2401), 1, + sym__signed_unary_expression, + STATE(13228), 1, + sym__callable_expression, + ACTIONS(12957), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18691), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18693), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2498), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [212570] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12309), 1, + sym_identifier, + ACTIONS(12311), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12313), 1, + anon_sym_DOT, + ACTIONS(12315), 1, + anon_sym_BANG, + ACTIONS(12317), 1, + anon_sym_LPAREN, + ACTIONS(12319), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12321), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12323), 1, + anon_sym_PLUS, + ACTIONS(12325), 1, + anon_sym_DASH, + ACTIONS(12327), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12329), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12339), 1, + anon_sym_POUND, + ACTIONS(12617), 1, + aux_sym_unary_expression_token1, + STATE(441), 1, + sym_call_expression, + STATE(517), 1, + sym__signed_unary_expression, + STATE(520), 1, + sym_member_expression, + STATE(13349), 1, + sym__callable_expression, + ACTIONS(12335), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(533), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18695), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18697), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(539), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [212659] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12501), 1, + sym_identifier, + ACTIONS(12503), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12505), 1, + anon_sym_DOT, + ACTIONS(12507), 1, + anon_sym_BANG, + ACTIONS(12509), 1, + anon_sym_LPAREN, + ACTIONS(12511), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12513), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12515), 1, + anon_sym_PLUS, + ACTIONS(12517), 1, + anon_sym_DASH, + ACTIONS(12519), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12521), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12531), 1, + anon_sym_POUND, + ACTIONS(12687), 1, + aux_sym_unary_expression_token1, + STATE(1430), 1, + sym_call_expression, + STATE(1669), 1, + sym__signed_unary_expression, + STATE(1714), 1, + sym_member_expression, + STATE(13291), 1, + sym__callable_expression, + ACTIONS(12527), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1876), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18699), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18701), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1668), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [212748] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12501), 1, + sym_identifier, + ACTIONS(12503), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12505), 1, + anon_sym_DOT, + ACTIONS(12507), 1, + anon_sym_BANG, + ACTIONS(12509), 1, + anon_sym_LPAREN, + ACTIONS(12511), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12513), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12515), 1, + anon_sym_PLUS, + ACTIONS(12517), 1, + anon_sym_DASH, + ACTIONS(12519), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12521), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12531), 1, + anon_sym_POUND, + ACTIONS(12687), 1, + aux_sym_unary_expression_token1, + STATE(1430), 1, + sym_call_expression, + STATE(1669), 1, + sym__signed_unary_expression, + STATE(1714), 1, + sym_member_expression, + STATE(13291), 1, + sym__callable_expression, + ACTIONS(12527), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1876), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18703), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1671), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [212837] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12501), 1, + sym_identifier, + ACTIONS(12503), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12505), 1, + anon_sym_DOT, + ACTIONS(12507), 1, + anon_sym_BANG, + ACTIONS(12509), 1, + anon_sym_LPAREN, + ACTIONS(12511), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12513), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12515), 1, + anon_sym_PLUS, + ACTIONS(12517), 1, + anon_sym_DASH, + ACTIONS(12519), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12521), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12531), 1, + anon_sym_POUND, + ACTIONS(12687), 1, + aux_sym_unary_expression_token1, + STATE(1430), 1, + sym_call_expression, + STATE(1669), 1, + sym__signed_unary_expression, + STATE(1714), 1, + sym_member_expression, + STATE(13291), 1, + sym__callable_expression, + ACTIONS(12527), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1876), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18707), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18709), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1685), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [212926] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12501), 1, + sym_identifier, + ACTIONS(12503), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12505), 1, + anon_sym_DOT, + ACTIONS(12507), 1, + anon_sym_BANG, + ACTIONS(12509), 1, + anon_sym_LPAREN, + ACTIONS(12511), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12513), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12515), 1, + anon_sym_PLUS, + ACTIONS(12517), 1, + anon_sym_DASH, + ACTIONS(12519), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12521), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12531), 1, + anon_sym_POUND, + ACTIONS(12687), 1, + aux_sym_unary_expression_token1, + STATE(1430), 1, + sym_call_expression, + STATE(1669), 1, + sym__signed_unary_expression, + STATE(1714), 1, + sym_member_expression, + STATE(13291), 1, + sym__callable_expression, + ACTIONS(12527), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1876), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18711), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18713), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1686), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [213015] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12501), 1, + sym_identifier, + ACTIONS(12503), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12505), 1, + anon_sym_DOT, + ACTIONS(12507), 1, + anon_sym_BANG, + ACTIONS(12509), 1, + anon_sym_LPAREN, + ACTIONS(12511), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12513), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12515), 1, + anon_sym_PLUS, + ACTIONS(12517), 1, + anon_sym_DASH, + ACTIONS(12519), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12521), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12531), 1, + anon_sym_POUND, + ACTIONS(12687), 1, + aux_sym_unary_expression_token1, + STATE(1430), 1, + sym_call_expression, + STATE(1669), 1, + sym__signed_unary_expression, + STATE(1714), 1, + sym_member_expression, + STATE(13291), 1, + sym__callable_expression, + ACTIONS(12527), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1876), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18715), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18717), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1687), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [213104] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12501), 1, + sym_identifier, + ACTIONS(12503), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12505), 1, + anon_sym_DOT, + ACTIONS(12507), 1, + anon_sym_BANG, + ACTIONS(12509), 1, + anon_sym_LPAREN, + ACTIONS(12511), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12513), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12515), 1, + anon_sym_PLUS, + ACTIONS(12517), 1, + anon_sym_DASH, + ACTIONS(12519), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12521), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12531), 1, + anon_sym_POUND, + ACTIONS(12687), 1, + aux_sym_unary_expression_token1, + STATE(1430), 1, + sym_call_expression, + STATE(1669), 1, + sym__signed_unary_expression, + STATE(1714), 1, + sym_member_expression, + STATE(13291), 1, + sym__callable_expression, + ACTIONS(12527), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1876), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18719), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18721), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1688), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [213193] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12501), 1, + sym_identifier, + ACTIONS(12503), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12505), 1, + anon_sym_DOT, + ACTIONS(12507), 1, + anon_sym_BANG, + ACTIONS(12509), 1, + anon_sym_LPAREN, + ACTIONS(12511), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12513), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12515), 1, + anon_sym_PLUS, + ACTIONS(12517), 1, + anon_sym_DASH, + ACTIONS(12519), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12521), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12531), 1, + anon_sym_POUND, + ACTIONS(12687), 1, + aux_sym_unary_expression_token1, + STATE(1430), 1, + sym_call_expression, + STATE(1669), 1, + sym__signed_unary_expression, + STATE(1714), 1, + sym_member_expression, + STATE(13291), 1, + sym__callable_expression, + ACTIONS(12527), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1876), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18723), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18725), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1689), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [213282] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12501), 1, + sym_identifier, + ACTIONS(12503), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12505), 1, + anon_sym_DOT, + ACTIONS(12507), 1, + anon_sym_BANG, + ACTIONS(12509), 1, + anon_sym_LPAREN, + ACTIONS(12511), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12513), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12515), 1, + anon_sym_PLUS, + ACTIONS(12517), 1, + anon_sym_DASH, + ACTIONS(12519), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12521), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12531), 1, + anon_sym_POUND, + ACTIONS(12687), 1, + aux_sym_unary_expression_token1, + STATE(1430), 1, + sym_call_expression, + STATE(1669), 1, + sym__signed_unary_expression, + STATE(1714), 1, + sym_member_expression, + STATE(13291), 1, + sym__callable_expression, + ACTIONS(12527), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1876), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18727), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18729), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1690), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [213371] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12501), 1, + sym_identifier, + ACTIONS(12503), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12505), 1, + anon_sym_DOT, + ACTIONS(12507), 1, + anon_sym_BANG, + ACTIONS(12509), 1, + anon_sym_LPAREN, + ACTIONS(12511), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12513), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12515), 1, + anon_sym_PLUS, + ACTIONS(12517), 1, + anon_sym_DASH, + ACTIONS(12519), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12521), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12531), 1, + anon_sym_POUND, + ACTIONS(12687), 1, + aux_sym_unary_expression_token1, + STATE(1430), 1, + sym_call_expression, + STATE(1669), 1, + sym__signed_unary_expression, + STATE(1714), 1, + sym_member_expression, + STATE(13291), 1, + sym__callable_expression, + ACTIONS(12527), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1876), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18731), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18733), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1691), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [213460] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12501), 1, + sym_identifier, + ACTIONS(12503), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12505), 1, + anon_sym_DOT, + ACTIONS(12507), 1, + anon_sym_BANG, + ACTIONS(12509), 1, + anon_sym_LPAREN, + ACTIONS(12511), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12513), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12515), 1, + anon_sym_PLUS, + ACTIONS(12517), 1, + anon_sym_DASH, + ACTIONS(12519), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12521), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12531), 1, + anon_sym_POUND, + ACTIONS(12687), 1, + aux_sym_unary_expression_token1, + STATE(1430), 1, + sym_call_expression, + STATE(1669), 1, + sym__signed_unary_expression, + STATE(1714), 1, + sym_member_expression, + STATE(13291), 1, + sym__callable_expression, + ACTIONS(12527), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1876), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18735), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18737), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1692), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [213549] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12501), 1, + sym_identifier, + ACTIONS(12503), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12505), 1, + anon_sym_DOT, + ACTIONS(12507), 1, + anon_sym_BANG, + ACTIONS(12509), 1, + anon_sym_LPAREN, + ACTIONS(12511), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12513), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12515), 1, + anon_sym_PLUS, + ACTIONS(12517), 1, + anon_sym_DASH, + ACTIONS(12519), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12521), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12531), 1, + anon_sym_POUND, + ACTIONS(12687), 1, + aux_sym_unary_expression_token1, + STATE(1430), 1, + sym_call_expression, + STATE(1669), 1, + sym__signed_unary_expression, + STATE(1714), 1, + sym_member_expression, + STATE(13291), 1, + sym__callable_expression, + ACTIONS(12527), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1876), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18739), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1693), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [213638] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12501), 1, + sym_identifier, + ACTIONS(12503), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12505), 1, + anon_sym_DOT, + ACTIONS(12507), 1, + anon_sym_BANG, + ACTIONS(12509), 1, + anon_sym_LPAREN, + ACTIONS(12511), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12513), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12515), 1, + anon_sym_PLUS, + ACTIONS(12517), 1, + anon_sym_DASH, + ACTIONS(12519), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12521), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12531), 1, + anon_sym_POUND, + ACTIONS(12687), 1, + aux_sym_unary_expression_token1, + STATE(1430), 1, + sym_call_expression, + STATE(1669), 1, + sym__signed_unary_expression, + STATE(1714), 1, + sym_member_expression, + STATE(13291), 1, + sym__callable_expression, + ACTIONS(12527), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1876), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18743), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18745), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1694), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [213727] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12501), 1, + sym_identifier, + ACTIONS(12503), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12505), 1, + anon_sym_DOT, + ACTIONS(12507), 1, + anon_sym_BANG, + ACTIONS(12509), 1, + anon_sym_LPAREN, + ACTIONS(12511), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12513), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12515), 1, + anon_sym_PLUS, + ACTIONS(12517), 1, + anon_sym_DASH, + ACTIONS(12519), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12521), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12531), 1, + anon_sym_POUND, + ACTIONS(12687), 1, + aux_sym_unary_expression_token1, + STATE(1430), 1, + sym_call_expression, + STATE(1669), 1, + sym__signed_unary_expression, + STATE(1714), 1, + sym_member_expression, + STATE(13291), 1, + sym__callable_expression, + ACTIONS(12527), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1876), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18747), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18749), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1695), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [213816] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2461), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_DASH, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(2491), 1, + aux_sym_unary_expression_token1, + ACTIONS(2501), 1, + anon_sym_POUND, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18751), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18753), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2842), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [213905] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12539), 1, + sym_identifier, + ACTIONS(12541), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12543), 1, + anon_sym_DOT, + ACTIONS(12545), 1, + anon_sym_BANG, + ACTIONS(12547), 1, + anon_sym_LPAREN, + ACTIONS(12549), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12551), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12553), 1, + anon_sym_PLUS, + ACTIONS(12555), 1, + anon_sym_DASH, + ACTIONS(12557), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12559), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12569), 1, + anon_sym_POUND, + ACTIONS(12693), 1, + aux_sym_unary_expression_token1, + STATE(10092), 1, + sym_call_expression, + STATE(10124), 1, + sym_member_expression, + STATE(10202), 1, + sym__signed_unary_expression, + STATE(13335), 1, + sym__callable_expression, + ACTIONS(12565), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10138), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18755), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18757), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10200), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [213994] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12539), 1, + sym_identifier, + ACTIONS(12541), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12543), 1, + anon_sym_DOT, + ACTIONS(12545), 1, + anon_sym_BANG, + ACTIONS(12547), 1, + anon_sym_LPAREN, + ACTIONS(12549), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12551), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12553), 1, + anon_sym_PLUS, + ACTIONS(12555), 1, + anon_sym_DASH, + ACTIONS(12557), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12559), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12569), 1, + anon_sym_POUND, + ACTIONS(12693), 1, + aux_sym_unary_expression_token1, + STATE(10092), 1, + sym_call_expression, + STATE(10124), 1, + sym_member_expression, + STATE(10202), 1, + sym__signed_unary_expression, + STATE(13335), 1, + sym__callable_expression, + ACTIONS(12565), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10138), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18759), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18761), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10184), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [214083] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12539), 1, + sym_identifier, + ACTIONS(12541), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12543), 1, + anon_sym_DOT, + ACTIONS(12545), 1, + anon_sym_BANG, + ACTIONS(12547), 1, + anon_sym_LPAREN, + ACTIONS(12549), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12551), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12553), 1, + anon_sym_PLUS, + ACTIONS(12555), 1, + anon_sym_DASH, + ACTIONS(12557), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12559), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12569), 1, + anon_sym_POUND, + ACTIONS(12693), 1, + aux_sym_unary_expression_token1, + STATE(10092), 1, + sym_call_expression, + STATE(10124), 1, + sym_member_expression, + STATE(10202), 1, + sym__signed_unary_expression, + STATE(13335), 1, + sym__callable_expression, + ACTIONS(12565), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10138), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18763), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18765), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10182), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [214172] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12539), 1, + sym_identifier, + ACTIONS(12541), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12543), 1, + anon_sym_DOT, + ACTIONS(12545), 1, + anon_sym_BANG, + ACTIONS(12547), 1, + anon_sym_LPAREN, + ACTIONS(12549), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12551), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12553), 1, + anon_sym_PLUS, + ACTIONS(12555), 1, + anon_sym_DASH, + ACTIONS(12557), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12559), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12569), 1, + anon_sym_POUND, + ACTIONS(12693), 1, + aux_sym_unary_expression_token1, + STATE(10092), 1, + sym_call_expression, + STATE(10124), 1, + sym_member_expression, + STATE(10202), 1, + sym__signed_unary_expression, + STATE(13335), 1, + sym__callable_expression, + ACTIONS(12565), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10138), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18767), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18769), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10171), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [214261] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12539), 1, + sym_identifier, + ACTIONS(12541), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12543), 1, + anon_sym_DOT, + ACTIONS(12545), 1, + anon_sym_BANG, + ACTIONS(12547), 1, + anon_sym_LPAREN, + ACTIONS(12549), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12551), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12553), 1, + anon_sym_PLUS, + ACTIONS(12555), 1, + anon_sym_DASH, + ACTIONS(12557), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12559), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12569), 1, + anon_sym_POUND, + ACTIONS(12693), 1, + aux_sym_unary_expression_token1, + STATE(10092), 1, + sym_call_expression, + STATE(10124), 1, + sym_member_expression, + STATE(10202), 1, + sym__signed_unary_expression, + STATE(13335), 1, + sym__callable_expression, + ACTIONS(12565), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10138), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18771), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18773), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10177), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [214350] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12539), 1, + sym_identifier, + ACTIONS(12541), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12543), 1, + anon_sym_DOT, + ACTIONS(12545), 1, + anon_sym_BANG, + ACTIONS(12547), 1, + anon_sym_LPAREN, + ACTIONS(12549), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12551), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12553), 1, + anon_sym_PLUS, + ACTIONS(12555), 1, + anon_sym_DASH, + ACTIONS(12557), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12559), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12569), 1, + anon_sym_POUND, + ACTIONS(12693), 1, + aux_sym_unary_expression_token1, + STATE(10092), 1, + sym_call_expression, + STATE(10124), 1, + sym_member_expression, + STATE(10202), 1, + sym__signed_unary_expression, + STATE(13335), 1, + sym__callable_expression, + ACTIONS(12565), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10138), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18775), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18777), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10194), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [214439] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12539), 1, + sym_identifier, + ACTIONS(12541), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12543), 1, + anon_sym_DOT, + ACTIONS(12545), 1, + anon_sym_BANG, + ACTIONS(12547), 1, + anon_sym_LPAREN, + ACTIONS(12549), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12551), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12553), 1, + anon_sym_PLUS, + ACTIONS(12555), 1, + anon_sym_DASH, + ACTIONS(12557), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12559), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12569), 1, + anon_sym_POUND, + ACTIONS(12693), 1, + aux_sym_unary_expression_token1, + STATE(10092), 1, + sym_call_expression, + STATE(10124), 1, + sym_member_expression, + STATE(10202), 1, + sym__signed_unary_expression, + STATE(13335), 1, + sym__callable_expression, + ACTIONS(12565), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10138), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18779), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18781), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10196), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [214528] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12539), 1, + sym_identifier, + ACTIONS(12541), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12543), 1, + anon_sym_DOT, + ACTIONS(12545), 1, + anon_sym_BANG, + ACTIONS(12547), 1, + anon_sym_LPAREN, + ACTIONS(12549), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12551), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12553), 1, + anon_sym_PLUS, + ACTIONS(12555), 1, + anon_sym_DASH, + ACTIONS(12557), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12559), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12569), 1, + anon_sym_POUND, + ACTIONS(12693), 1, + aux_sym_unary_expression_token1, + STATE(10092), 1, + sym_call_expression, + STATE(10124), 1, + sym_member_expression, + STATE(10202), 1, + sym__signed_unary_expression, + STATE(13335), 1, + sym__callable_expression, + ACTIONS(12565), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10138), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18783), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18785), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10175), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [214617] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12539), 1, + sym_identifier, + ACTIONS(12541), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12543), 1, + anon_sym_DOT, + ACTIONS(12545), 1, + anon_sym_BANG, + ACTIONS(12547), 1, + anon_sym_LPAREN, + ACTIONS(12549), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12551), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12553), 1, + anon_sym_PLUS, + ACTIONS(12555), 1, + anon_sym_DASH, + ACTIONS(12557), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12559), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12569), 1, + anon_sym_POUND, + ACTIONS(12693), 1, + aux_sym_unary_expression_token1, + STATE(10092), 1, + sym_call_expression, + STATE(10124), 1, + sym_member_expression, + STATE(10202), 1, + sym__signed_unary_expression, + STATE(13335), 1, + sym__callable_expression, + ACTIONS(12565), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10138), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18787), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18789), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10192), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [214706] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12539), 1, + sym_identifier, + ACTIONS(12541), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12543), 1, + anon_sym_DOT, + ACTIONS(12545), 1, + anon_sym_BANG, + ACTIONS(12547), 1, + anon_sym_LPAREN, + ACTIONS(12549), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12551), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12553), 1, + anon_sym_PLUS, + ACTIONS(12555), 1, + anon_sym_DASH, + ACTIONS(12557), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12559), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12569), 1, + anon_sym_POUND, + ACTIONS(12693), 1, + aux_sym_unary_expression_token1, + STATE(10092), 1, + sym_call_expression, + STATE(10124), 1, + sym_member_expression, + STATE(10202), 1, + sym__signed_unary_expression, + STATE(13335), 1, + sym__callable_expression, + ACTIONS(12565), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10138), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18791), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18793), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10181), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [214795] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12539), 1, + sym_identifier, + ACTIONS(12541), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12543), 1, + anon_sym_DOT, + ACTIONS(12545), 1, + anon_sym_BANG, + ACTIONS(12547), 1, + anon_sym_LPAREN, + ACTIONS(12549), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12551), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12553), 1, + anon_sym_PLUS, + ACTIONS(12555), 1, + anon_sym_DASH, + ACTIONS(12557), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12559), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12569), 1, + anon_sym_POUND, + ACTIONS(12693), 1, + aux_sym_unary_expression_token1, + STATE(10092), 1, + sym_call_expression, + STATE(10124), 1, + sym_member_expression, + STATE(10202), 1, + sym__signed_unary_expression, + STATE(13335), 1, + sym__callable_expression, + ACTIONS(12565), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10138), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18795), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18797), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10186), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [214884] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12539), 1, + sym_identifier, + ACTIONS(12541), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12543), 1, + anon_sym_DOT, + ACTIONS(12545), 1, + anon_sym_BANG, + ACTIONS(12547), 1, + anon_sym_LPAREN, + ACTIONS(12549), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12551), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12553), 1, + anon_sym_PLUS, + ACTIONS(12555), 1, + anon_sym_DASH, + ACTIONS(12557), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12559), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12569), 1, + anon_sym_POUND, + ACTIONS(12693), 1, + aux_sym_unary_expression_token1, + STATE(10092), 1, + sym_call_expression, + STATE(10124), 1, + sym_member_expression, + STATE(10202), 1, + sym__signed_unary_expression, + STATE(13335), 1, + sym__callable_expression, + ACTIONS(12565), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10138), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18799), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18801), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10178), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [214973] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12539), 1, + sym_identifier, + ACTIONS(12541), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12543), 1, + anon_sym_DOT, + ACTIONS(12545), 1, + anon_sym_BANG, + ACTIONS(12547), 1, + anon_sym_LPAREN, + ACTIONS(12549), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12551), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12553), 1, + anon_sym_PLUS, + ACTIONS(12555), 1, + anon_sym_DASH, + ACTIONS(12557), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12559), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12569), 1, + anon_sym_POUND, + ACTIONS(12693), 1, + aux_sym_unary_expression_token1, + STATE(10092), 1, + sym_call_expression, + STATE(10124), 1, + sym_member_expression, + STATE(10202), 1, + sym__signed_unary_expression, + STATE(13335), 1, + sym__callable_expression, + ACTIONS(12565), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10138), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18803), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18805), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10185), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [215062] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1067), 1, + anon_sym_BANG, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1157), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1159), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6601), 1, + sym_identifier, + ACTIONS(6603), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6605), 1, + anon_sym_DOT, + ACTIONS(6607), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12623), 1, + aux_sym_unary_expression_token1, + ACTIONS(15649), 1, + anon_sym_PLUS, + ACTIONS(15651), 1, + anon_sym_DASH, + ACTIONS(15657), 1, + anon_sym_POUND, + STATE(2191), 1, + sym_call_expression, + STATE(2203), 1, + sym__signed_unary_expression, + STATE(2209), 1, + sym_member_expression, + STATE(13318), 1, + sym__callable_expression, + ACTIONS(1167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18807), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18809), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2339), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [215151] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12577), 1, + sym_identifier, + ACTIONS(12579), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12581), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_BANG, + ACTIONS(12585), 1, + anon_sym_LPAREN, + ACTIONS(12587), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12589), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12591), 1, + anon_sym_PLUS, + ACTIONS(12593), 1, + anon_sym_DASH, + ACTIONS(12595), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12597), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12607), 1, + anon_sym_POUND, + ACTIONS(12699), 1, + aux_sym_unary_expression_token1, + STATE(612), 1, + sym_call_expression, + STATE(660), 1, + sym_member_expression, + STATE(686), 1, + sym__signed_unary_expression, + STATE(13357), 1, + sym__callable_expression, + ACTIONS(12603), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(716), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18811), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18813), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(685), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [215240] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12577), 1, + sym_identifier, + ACTIONS(12579), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12581), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_BANG, + ACTIONS(12585), 1, + anon_sym_LPAREN, + ACTIONS(12587), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12589), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12591), 1, + anon_sym_PLUS, + ACTIONS(12593), 1, + anon_sym_DASH, + ACTIONS(12595), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12597), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12607), 1, + anon_sym_POUND, + ACTIONS(12699), 1, + aux_sym_unary_expression_token1, + STATE(612), 1, + sym_call_expression, + STATE(660), 1, + sym_member_expression, + STATE(686), 1, + sym__signed_unary_expression, + STATE(13357), 1, + sym__callable_expression, + ACTIONS(12603), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(716), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18815), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18817), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(688), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [215329] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12577), 1, + sym_identifier, + ACTIONS(12579), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12581), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_BANG, + ACTIONS(12585), 1, + anon_sym_LPAREN, + ACTIONS(12587), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12589), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12591), 1, + anon_sym_PLUS, + ACTIONS(12593), 1, + anon_sym_DASH, + ACTIONS(12595), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12597), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12607), 1, + anon_sym_POUND, + ACTIONS(12699), 1, + aux_sym_unary_expression_token1, + STATE(612), 1, + sym_call_expression, + STATE(660), 1, + sym_member_expression, + STATE(686), 1, + sym__signed_unary_expression, + STATE(13357), 1, + sym__callable_expression, + ACTIONS(12603), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(716), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18819), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18821), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(693), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [215418] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12577), 1, + sym_identifier, + ACTIONS(12579), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12581), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_BANG, + ACTIONS(12585), 1, + anon_sym_LPAREN, + ACTIONS(12587), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12589), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12591), 1, + anon_sym_PLUS, + ACTIONS(12593), 1, + anon_sym_DASH, + ACTIONS(12595), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12597), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12607), 1, + anon_sym_POUND, + ACTIONS(12699), 1, + aux_sym_unary_expression_token1, + STATE(612), 1, + sym_call_expression, + STATE(660), 1, + sym_member_expression, + STATE(686), 1, + sym__signed_unary_expression, + STATE(13357), 1, + sym__callable_expression, + ACTIONS(12603), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(716), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18823), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18825), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(694), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [215507] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12577), 1, + sym_identifier, + ACTIONS(12579), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12581), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_BANG, + ACTIONS(12585), 1, + anon_sym_LPAREN, + ACTIONS(12587), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12589), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12591), 1, + anon_sym_PLUS, + ACTIONS(12593), 1, + anon_sym_DASH, + ACTIONS(12595), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12597), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12607), 1, + anon_sym_POUND, + ACTIONS(12699), 1, + aux_sym_unary_expression_token1, + STATE(612), 1, + sym_call_expression, + STATE(660), 1, + sym_member_expression, + STATE(686), 1, + sym__signed_unary_expression, + STATE(13357), 1, + sym__callable_expression, + ACTIONS(12603), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(716), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18827), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18829), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(695), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [215596] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12577), 1, + sym_identifier, + ACTIONS(12579), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12581), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_BANG, + ACTIONS(12585), 1, + anon_sym_LPAREN, + ACTIONS(12587), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12589), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12591), 1, + anon_sym_PLUS, + ACTIONS(12593), 1, + anon_sym_DASH, + ACTIONS(12595), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12597), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12607), 1, + anon_sym_POUND, + ACTIONS(12699), 1, + aux_sym_unary_expression_token1, + STATE(612), 1, + sym_call_expression, + STATE(660), 1, + sym_member_expression, + STATE(686), 1, + sym__signed_unary_expression, + STATE(13357), 1, + sym__callable_expression, + ACTIONS(12603), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(716), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18831), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18833), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(696), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [215685] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12577), 1, + sym_identifier, + ACTIONS(12579), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12581), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_BANG, + ACTIONS(12585), 1, + anon_sym_LPAREN, + ACTIONS(12587), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12589), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12591), 1, + anon_sym_PLUS, + ACTIONS(12593), 1, + anon_sym_DASH, + ACTIONS(12595), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12597), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12607), 1, + anon_sym_POUND, + ACTIONS(12699), 1, + aux_sym_unary_expression_token1, + STATE(612), 1, + sym_call_expression, + STATE(660), 1, + sym_member_expression, + STATE(686), 1, + sym__signed_unary_expression, + STATE(13357), 1, + sym__callable_expression, + ACTIONS(12603), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(716), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18835), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18837), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(697), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [215774] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12577), 1, + sym_identifier, + ACTIONS(12579), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12581), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_BANG, + ACTIONS(12585), 1, + anon_sym_LPAREN, + ACTIONS(12587), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12589), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12591), 1, + anon_sym_PLUS, + ACTIONS(12593), 1, + anon_sym_DASH, + ACTIONS(12595), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12597), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12607), 1, + anon_sym_POUND, + ACTIONS(12699), 1, + aux_sym_unary_expression_token1, + STATE(612), 1, + sym_call_expression, + STATE(660), 1, + sym_member_expression, + STATE(686), 1, + sym__signed_unary_expression, + STATE(13357), 1, + sym__callable_expression, + ACTIONS(12603), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(716), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18839), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18841), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(698), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [215863] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12577), 1, + sym_identifier, + ACTIONS(12579), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12581), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_BANG, + ACTIONS(12585), 1, + anon_sym_LPAREN, + ACTIONS(12587), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12589), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12591), 1, + anon_sym_PLUS, + ACTIONS(12593), 1, + anon_sym_DASH, + ACTIONS(12595), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12597), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12607), 1, + anon_sym_POUND, + ACTIONS(12699), 1, + aux_sym_unary_expression_token1, + STATE(612), 1, + sym_call_expression, + STATE(660), 1, + sym_member_expression, + STATE(686), 1, + sym__signed_unary_expression, + STATE(13357), 1, + sym__callable_expression, + ACTIONS(12603), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(716), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18843), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18845), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(699), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [215952] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12577), 1, + sym_identifier, + ACTIONS(12579), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12581), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_BANG, + ACTIONS(12585), 1, + anon_sym_LPAREN, + ACTIONS(12587), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12589), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12591), 1, + anon_sym_PLUS, + ACTIONS(12593), 1, + anon_sym_DASH, + ACTIONS(12595), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12597), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12607), 1, + anon_sym_POUND, + ACTIONS(12699), 1, + aux_sym_unary_expression_token1, + STATE(612), 1, + sym_call_expression, + STATE(660), 1, + sym_member_expression, + STATE(686), 1, + sym__signed_unary_expression, + STATE(13357), 1, + sym__callable_expression, + ACTIONS(12603), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(716), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18847), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18849), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(700), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [216041] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12577), 1, + sym_identifier, + ACTIONS(12579), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12581), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_BANG, + ACTIONS(12585), 1, + anon_sym_LPAREN, + ACTIONS(12587), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12589), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12591), 1, + anon_sym_PLUS, + ACTIONS(12593), 1, + anon_sym_DASH, + ACTIONS(12595), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12597), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12607), 1, + anon_sym_POUND, + ACTIONS(12699), 1, + aux_sym_unary_expression_token1, + STATE(612), 1, + sym_call_expression, + STATE(660), 1, + sym_member_expression, + STATE(686), 1, + sym__signed_unary_expression, + STATE(13357), 1, + sym__callable_expression, + ACTIONS(12603), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(716), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18851), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18853), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(701), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [216130] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12577), 1, + sym_identifier, + ACTIONS(12579), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12581), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_BANG, + ACTIONS(12585), 1, + anon_sym_LPAREN, + ACTIONS(12587), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12589), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12591), 1, + anon_sym_PLUS, + ACTIONS(12593), 1, + anon_sym_DASH, + ACTIONS(12595), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12597), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12607), 1, + anon_sym_POUND, + ACTIONS(12699), 1, + aux_sym_unary_expression_token1, + STATE(612), 1, + sym_call_expression, + STATE(660), 1, + sym_member_expression, + STATE(686), 1, + sym__signed_unary_expression, + STATE(13357), 1, + sym__callable_expression, + ACTIONS(12603), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(716), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18855), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18857), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(702), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [216219] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12577), 1, + sym_identifier, + ACTIONS(12579), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12581), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_BANG, + ACTIONS(12585), 1, + anon_sym_LPAREN, + ACTIONS(12587), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12589), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12591), 1, + anon_sym_PLUS, + ACTIONS(12593), 1, + anon_sym_DASH, + ACTIONS(12595), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12597), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12607), 1, + anon_sym_POUND, + ACTIONS(12699), 1, + aux_sym_unary_expression_token1, + STATE(612), 1, + sym_call_expression, + STATE(660), 1, + sym_member_expression, + STATE(686), 1, + sym__signed_unary_expression, + STATE(13357), 1, + sym__callable_expression, + ACTIONS(12603), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(716), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18859), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18861), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(703), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [216308] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12893), 1, + aux_sym_unary_expression_token1, + ACTIONS(12933), 1, + sym_identifier, + ACTIONS(12935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12937), 1, + anon_sym_DOT, + ACTIONS(12939), 1, + anon_sym_BANG, + ACTIONS(12941), 1, + anon_sym_LPAREN, + ACTIONS(12943), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12945), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12947), 1, + anon_sym_PLUS, + ACTIONS(12949), 1, + anon_sym_DASH, + ACTIONS(12951), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12953), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12961), 1, + anon_sym_POUND, + STATE(2287), 1, + sym_call_expression, + STATE(2375), 1, + sym_member_expression, + STATE(2401), 1, + sym__signed_unary_expression, + STATE(13228), 1, + sym__callable_expression, + ACTIONS(12957), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18863), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18865), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2400), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [216397] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12737), 1, + sym_identifier, + ACTIONS(12739), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12741), 1, + anon_sym_DOT, + ACTIONS(12743), 1, + anon_sym_BANG, + ACTIONS(12745), 1, + anon_sym_LPAREN, + ACTIONS(12747), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12749), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12751), 1, + anon_sym_PLUS, + ACTIONS(12753), 1, + anon_sym_DASH, + ACTIONS(12755), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12757), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12759), 1, + aux_sym_unary_expression_token1, + ACTIONS(12767), 1, + anon_sym_POUND, + STATE(789), 1, + sym_call_expression, + STATE(945), 1, + sym__signed_unary_expression, + STATE(968), 1, + sym_member_expression, + STATE(13397), 1, + sym__callable_expression, + ACTIONS(12763), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(982), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18867), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18869), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(942), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [216486] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12737), 1, + sym_identifier, + ACTIONS(12739), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12741), 1, + anon_sym_DOT, + ACTIONS(12743), 1, + anon_sym_BANG, + ACTIONS(12745), 1, + anon_sym_LPAREN, + ACTIONS(12747), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12749), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12751), 1, + anon_sym_PLUS, + ACTIONS(12753), 1, + anon_sym_DASH, + ACTIONS(12755), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12757), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12759), 1, + aux_sym_unary_expression_token1, + ACTIONS(12767), 1, + anon_sym_POUND, + STATE(789), 1, + sym_call_expression, + STATE(945), 1, + sym__signed_unary_expression, + STATE(968), 1, + sym_member_expression, + STATE(13397), 1, + sym__callable_expression, + ACTIONS(12763), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(982), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18871), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18873), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(943), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [216575] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12737), 1, + sym_identifier, + ACTIONS(12739), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12741), 1, + anon_sym_DOT, + ACTIONS(12743), 1, + anon_sym_BANG, + ACTIONS(12745), 1, + anon_sym_LPAREN, + ACTIONS(12747), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12749), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12751), 1, + anon_sym_PLUS, + ACTIONS(12753), 1, + anon_sym_DASH, + ACTIONS(12755), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12757), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12759), 1, + aux_sym_unary_expression_token1, + ACTIONS(12767), 1, + anon_sym_POUND, + STATE(789), 1, + sym_call_expression, + STATE(945), 1, + sym__signed_unary_expression, + STATE(968), 1, + sym_member_expression, + STATE(13397), 1, + sym__callable_expression, + ACTIONS(12763), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(982), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18875), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18877), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(951), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [216664] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12737), 1, + sym_identifier, + ACTIONS(12739), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12741), 1, + anon_sym_DOT, + ACTIONS(12743), 1, + anon_sym_BANG, + ACTIONS(12745), 1, + anon_sym_LPAREN, + ACTIONS(12747), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12749), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12751), 1, + anon_sym_PLUS, + ACTIONS(12753), 1, + anon_sym_DASH, + ACTIONS(12755), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12757), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12759), 1, + aux_sym_unary_expression_token1, + ACTIONS(12767), 1, + anon_sym_POUND, + STATE(789), 1, + sym_call_expression, + STATE(945), 1, + sym__signed_unary_expression, + STATE(968), 1, + sym_member_expression, + STATE(13397), 1, + sym__callable_expression, + ACTIONS(12763), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(982), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18879), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18881), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(952), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [216753] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12737), 1, + sym_identifier, + ACTIONS(12739), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12741), 1, + anon_sym_DOT, + ACTIONS(12743), 1, + anon_sym_BANG, + ACTIONS(12745), 1, + anon_sym_LPAREN, + ACTIONS(12747), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12749), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12751), 1, + anon_sym_PLUS, + ACTIONS(12753), 1, + anon_sym_DASH, + ACTIONS(12755), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12757), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12759), 1, + aux_sym_unary_expression_token1, + ACTIONS(12767), 1, + anon_sym_POUND, + STATE(789), 1, + sym_call_expression, + STATE(945), 1, + sym__signed_unary_expression, + STATE(968), 1, + sym_member_expression, + STATE(13397), 1, + sym__callable_expression, + ACTIONS(12763), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(982), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18883), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18885), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(953), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [216842] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12737), 1, + sym_identifier, + ACTIONS(12739), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12741), 1, + anon_sym_DOT, + ACTIONS(12743), 1, + anon_sym_BANG, + ACTIONS(12745), 1, + anon_sym_LPAREN, + ACTIONS(12747), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12749), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12751), 1, + anon_sym_PLUS, + ACTIONS(12753), 1, + anon_sym_DASH, + ACTIONS(12755), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12757), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12759), 1, + aux_sym_unary_expression_token1, + ACTIONS(12767), 1, + anon_sym_POUND, + STATE(789), 1, + sym_call_expression, + STATE(945), 1, + sym__signed_unary_expression, + STATE(968), 1, + sym_member_expression, + STATE(13397), 1, + sym__callable_expression, + ACTIONS(12763), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(982), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18887), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18889), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(954), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [216931] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12737), 1, + sym_identifier, + ACTIONS(12739), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12741), 1, + anon_sym_DOT, + ACTIONS(12743), 1, + anon_sym_BANG, + ACTIONS(12745), 1, + anon_sym_LPAREN, + ACTIONS(12747), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12749), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12751), 1, + anon_sym_PLUS, + ACTIONS(12753), 1, + anon_sym_DASH, + ACTIONS(12755), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12757), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12759), 1, + aux_sym_unary_expression_token1, + ACTIONS(12767), 1, + anon_sym_POUND, + STATE(789), 1, + sym_call_expression, + STATE(945), 1, + sym__signed_unary_expression, + STATE(968), 1, + sym_member_expression, + STATE(13397), 1, + sym__callable_expression, + ACTIONS(12763), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(982), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18891), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18893), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(955), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [217020] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12737), 1, + sym_identifier, + ACTIONS(12739), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12741), 1, + anon_sym_DOT, + ACTIONS(12743), 1, + anon_sym_BANG, + ACTIONS(12745), 1, + anon_sym_LPAREN, + ACTIONS(12747), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12749), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12751), 1, + anon_sym_PLUS, + ACTIONS(12753), 1, + anon_sym_DASH, + ACTIONS(12755), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12757), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12759), 1, + aux_sym_unary_expression_token1, + ACTIONS(12767), 1, + anon_sym_POUND, + STATE(789), 1, + sym_call_expression, + STATE(945), 1, + sym__signed_unary_expression, + STATE(968), 1, + sym_member_expression, + STATE(13397), 1, + sym__callable_expression, + ACTIONS(12763), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(982), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18895), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18897), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(956), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [217109] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12737), 1, + sym_identifier, + ACTIONS(12739), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12741), 1, + anon_sym_DOT, + ACTIONS(12743), 1, + anon_sym_BANG, + ACTIONS(12745), 1, + anon_sym_LPAREN, + ACTIONS(12747), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12749), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12751), 1, + anon_sym_PLUS, + ACTIONS(12753), 1, + anon_sym_DASH, + ACTIONS(12755), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12757), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12759), 1, + aux_sym_unary_expression_token1, + ACTIONS(12767), 1, + anon_sym_POUND, + STATE(789), 1, + sym_call_expression, + STATE(945), 1, + sym__signed_unary_expression, + STATE(968), 1, + sym_member_expression, + STATE(13397), 1, + sym__callable_expression, + ACTIONS(12763), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(982), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18899), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18901), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(957), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [217198] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12737), 1, + sym_identifier, + ACTIONS(12739), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12741), 1, + anon_sym_DOT, + ACTIONS(12743), 1, + anon_sym_BANG, + ACTIONS(12745), 1, + anon_sym_LPAREN, + ACTIONS(12747), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12749), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12751), 1, + anon_sym_PLUS, + ACTIONS(12753), 1, + anon_sym_DASH, + ACTIONS(12755), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12757), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12759), 1, + aux_sym_unary_expression_token1, + ACTIONS(12767), 1, + anon_sym_POUND, + STATE(789), 1, + sym_call_expression, + STATE(945), 1, + sym__signed_unary_expression, + STATE(968), 1, + sym_member_expression, + STATE(13397), 1, + sym__callable_expression, + ACTIONS(12763), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(982), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18903), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18905), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(958), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [217287] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12737), 1, + sym_identifier, + ACTIONS(12739), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12741), 1, + anon_sym_DOT, + ACTIONS(12743), 1, + anon_sym_BANG, + ACTIONS(12745), 1, + anon_sym_LPAREN, + ACTIONS(12747), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12749), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12751), 1, + anon_sym_PLUS, + ACTIONS(12753), 1, + anon_sym_DASH, + ACTIONS(12755), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12757), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12759), 1, + aux_sym_unary_expression_token1, + ACTIONS(12767), 1, + anon_sym_POUND, + STATE(789), 1, + sym_call_expression, + STATE(945), 1, + sym__signed_unary_expression, + STATE(968), 1, + sym_member_expression, + STATE(13397), 1, + sym__callable_expression, + ACTIONS(12763), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(982), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18907), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18909), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(959), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [217376] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12737), 1, + sym_identifier, + ACTIONS(12739), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12741), 1, + anon_sym_DOT, + ACTIONS(12743), 1, + anon_sym_BANG, + ACTIONS(12745), 1, + anon_sym_LPAREN, + ACTIONS(12747), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12749), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12751), 1, + anon_sym_PLUS, + ACTIONS(12753), 1, + anon_sym_DASH, + ACTIONS(12755), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12757), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12759), 1, + aux_sym_unary_expression_token1, + ACTIONS(12767), 1, + anon_sym_POUND, + STATE(789), 1, + sym_call_expression, + STATE(945), 1, + sym__signed_unary_expression, + STATE(968), 1, + sym_member_expression, + STATE(13397), 1, + sym__callable_expression, + ACTIONS(12763), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(982), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(960), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [217465] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12737), 1, + sym_identifier, + ACTIONS(12739), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12741), 1, + anon_sym_DOT, + ACTIONS(12743), 1, + anon_sym_BANG, + ACTIONS(12745), 1, + anon_sym_LPAREN, + ACTIONS(12747), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12749), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12751), 1, + anon_sym_PLUS, + ACTIONS(12753), 1, + anon_sym_DASH, + ACTIONS(12755), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12757), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12759), 1, + aux_sym_unary_expression_token1, + ACTIONS(12767), 1, + anon_sym_POUND, + STATE(789), 1, + sym_call_expression, + STATE(945), 1, + sym__signed_unary_expression, + STATE(968), 1, + sym_member_expression, + STATE(13397), 1, + sym__callable_expression, + ACTIONS(12763), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(982), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18915), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18917), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(961), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [217554] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12353), 1, + sym_identifier, + ACTIONS(12355), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12357), 1, + anon_sym_DOT, + ACTIONS(12359), 1, + anon_sym_BANG, + ACTIONS(12361), 1, + anon_sym_LPAREN, + ACTIONS(12363), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12365), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12367), 1, + anon_sym_PLUS, + ACTIONS(12369), 1, + anon_sym_DASH, + ACTIONS(12371), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12373), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12383), 1, + anon_sym_POUND, + ACTIONS(12629), 1, + aux_sym_unary_expression_token1, + STATE(807), 1, + sym_call_expression, + STATE(906), 1, + sym_member_expression, + STATE(907), 1, + sym__signed_unary_expression, + STATE(13081), 1, + sym__callable_expression, + ACTIONS(12379), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(939), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18919), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18921), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(986), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [217643] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12677), 1, + aux_sym_unary_expression_token1, + ACTIONS(13143), 1, + sym_identifier, + ACTIONS(13145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13147), 1, + anon_sym_DOT, + ACTIONS(13149), 1, + anon_sym_BANG, + ACTIONS(13151), 1, + anon_sym_LPAREN, + ACTIONS(13153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13157), 1, + anon_sym_PLUS, + ACTIONS(13159), 1, + anon_sym_DASH, + ACTIONS(13161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13171), 1, + anon_sym_POUND, + STATE(2910), 1, + sym_call_expression, + STATE(3064), 1, + sym_member_expression, + STATE(3380), 1, + sym__signed_unary_expression, + STATE(13439), 1, + sym__callable_expression, + ACTIONS(13167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3210), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18923), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2962), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [217732] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12677), 1, + aux_sym_unary_expression_token1, + ACTIONS(13143), 1, + sym_identifier, + ACTIONS(13145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13147), 1, + anon_sym_DOT, + ACTIONS(13149), 1, + anon_sym_BANG, + ACTIONS(13151), 1, + anon_sym_LPAREN, + ACTIONS(13153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13157), 1, + anon_sym_PLUS, + ACTIONS(13159), 1, + anon_sym_DASH, + ACTIONS(13161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13171), 1, + anon_sym_POUND, + STATE(2910), 1, + sym_call_expression, + STATE(3064), 1, + sym_member_expression, + STATE(3380), 1, + sym__signed_unary_expression, + STATE(13439), 1, + sym__callable_expression, + ACTIONS(13167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3210), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18927), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18929), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2965), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [217821] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12677), 1, + aux_sym_unary_expression_token1, + ACTIONS(13143), 1, + sym_identifier, + ACTIONS(13145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13147), 1, + anon_sym_DOT, + ACTIONS(13149), 1, + anon_sym_BANG, + ACTIONS(13151), 1, + anon_sym_LPAREN, + ACTIONS(13153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13157), 1, + anon_sym_PLUS, + ACTIONS(13159), 1, + anon_sym_DASH, + ACTIONS(13161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13171), 1, + anon_sym_POUND, + STATE(2910), 1, + sym_call_expression, + STATE(3064), 1, + sym_member_expression, + STATE(3380), 1, + sym__signed_unary_expression, + STATE(13439), 1, + sym__callable_expression, + ACTIONS(13167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3210), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18931), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18933), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3004), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [217910] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12677), 1, + aux_sym_unary_expression_token1, + ACTIONS(13143), 1, + sym_identifier, + ACTIONS(13145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13147), 1, + anon_sym_DOT, + ACTIONS(13149), 1, + anon_sym_BANG, + ACTIONS(13151), 1, + anon_sym_LPAREN, + ACTIONS(13153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13157), 1, + anon_sym_PLUS, + ACTIONS(13159), 1, + anon_sym_DASH, + ACTIONS(13161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13171), 1, + anon_sym_POUND, + STATE(2910), 1, + sym_call_expression, + STATE(3064), 1, + sym_member_expression, + STATE(3380), 1, + sym__signed_unary_expression, + STATE(13439), 1, + sym__callable_expression, + ACTIONS(13167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3210), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18935), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18937), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3005), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [217999] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12677), 1, + aux_sym_unary_expression_token1, + ACTIONS(13143), 1, + sym_identifier, + ACTIONS(13145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13147), 1, + anon_sym_DOT, + ACTIONS(13149), 1, + anon_sym_BANG, + ACTIONS(13151), 1, + anon_sym_LPAREN, + ACTIONS(13153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13157), 1, + anon_sym_PLUS, + ACTIONS(13159), 1, + anon_sym_DASH, + ACTIONS(13161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13171), 1, + anon_sym_POUND, + STATE(2910), 1, + sym_call_expression, + STATE(3064), 1, + sym_member_expression, + STATE(3380), 1, + sym__signed_unary_expression, + STATE(13439), 1, + sym__callable_expression, + ACTIONS(13167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3210), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18939), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18941), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3006), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [218088] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12677), 1, + aux_sym_unary_expression_token1, + ACTIONS(13143), 1, + sym_identifier, + ACTIONS(13145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13147), 1, + anon_sym_DOT, + ACTIONS(13149), 1, + anon_sym_BANG, + ACTIONS(13151), 1, + anon_sym_LPAREN, + ACTIONS(13153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13157), 1, + anon_sym_PLUS, + ACTIONS(13159), 1, + anon_sym_DASH, + ACTIONS(13161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13171), 1, + anon_sym_POUND, + STATE(2910), 1, + sym_call_expression, + STATE(3064), 1, + sym_member_expression, + STATE(3380), 1, + sym__signed_unary_expression, + STATE(13439), 1, + sym__callable_expression, + ACTIONS(13167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3210), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18943), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18945), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3007), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [218177] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12677), 1, + aux_sym_unary_expression_token1, + ACTIONS(13143), 1, + sym_identifier, + ACTIONS(13145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13147), 1, + anon_sym_DOT, + ACTIONS(13149), 1, + anon_sym_BANG, + ACTIONS(13151), 1, + anon_sym_LPAREN, + ACTIONS(13153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13157), 1, + anon_sym_PLUS, + ACTIONS(13159), 1, + anon_sym_DASH, + ACTIONS(13161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13171), 1, + anon_sym_POUND, + STATE(2910), 1, + sym_call_expression, + STATE(3064), 1, + sym_member_expression, + STATE(3380), 1, + sym__signed_unary_expression, + STATE(13439), 1, + sym__callable_expression, + ACTIONS(13167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3210), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18947), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18949), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3008), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [218266] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12677), 1, + aux_sym_unary_expression_token1, + ACTIONS(13143), 1, + sym_identifier, + ACTIONS(13145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13147), 1, + anon_sym_DOT, + ACTIONS(13149), 1, + anon_sym_BANG, + ACTIONS(13151), 1, + anon_sym_LPAREN, + ACTIONS(13153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13157), 1, + anon_sym_PLUS, + ACTIONS(13159), 1, + anon_sym_DASH, + ACTIONS(13161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13171), 1, + anon_sym_POUND, + STATE(2910), 1, + sym_call_expression, + STATE(3064), 1, + sym_member_expression, + STATE(3380), 1, + sym__signed_unary_expression, + STATE(13439), 1, + sym__callable_expression, + ACTIONS(13167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3210), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18951), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18953), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3009), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [218355] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12677), 1, + aux_sym_unary_expression_token1, + ACTIONS(13143), 1, + sym_identifier, + ACTIONS(13145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13147), 1, + anon_sym_DOT, + ACTIONS(13149), 1, + anon_sym_BANG, + ACTIONS(13151), 1, + anon_sym_LPAREN, + ACTIONS(13153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13157), 1, + anon_sym_PLUS, + ACTIONS(13159), 1, + anon_sym_DASH, + ACTIONS(13161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13171), 1, + anon_sym_POUND, + STATE(2910), 1, + sym_call_expression, + STATE(3064), 1, + sym_member_expression, + STATE(3380), 1, + sym__signed_unary_expression, + STATE(13439), 1, + sym__callable_expression, + ACTIONS(13167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3210), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18955), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18957), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3010), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [218444] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12677), 1, + aux_sym_unary_expression_token1, + ACTIONS(13143), 1, + sym_identifier, + ACTIONS(13145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13147), 1, + anon_sym_DOT, + ACTIONS(13149), 1, + anon_sym_BANG, + ACTIONS(13151), 1, + anon_sym_LPAREN, + ACTIONS(13153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13157), 1, + anon_sym_PLUS, + ACTIONS(13159), 1, + anon_sym_DASH, + ACTIONS(13161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13171), 1, + anon_sym_POUND, + STATE(2910), 1, + sym_call_expression, + STATE(3064), 1, + sym_member_expression, + STATE(3380), 1, + sym__signed_unary_expression, + STATE(13439), 1, + sym__callable_expression, + ACTIONS(13167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3210), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18959), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18961), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3011), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [218533] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12677), 1, + aux_sym_unary_expression_token1, + ACTIONS(13143), 1, + sym_identifier, + ACTIONS(13145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13147), 1, + anon_sym_DOT, + ACTIONS(13149), 1, + anon_sym_BANG, + ACTIONS(13151), 1, + anon_sym_LPAREN, + ACTIONS(13153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13157), 1, + anon_sym_PLUS, + ACTIONS(13159), 1, + anon_sym_DASH, + ACTIONS(13161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13171), 1, + anon_sym_POUND, + STATE(2910), 1, + sym_call_expression, + STATE(3064), 1, + sym_member_expression, + STATE(3380), 1, + sym__signed_unary_expression, + STATE(13439), 1, + sym__callable_expression, + ACTIONS(13167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3210), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18963), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18965), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3012), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [218622] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12677), 1, + aux_sym_unary_expression_token1, + ACTIONS(13143), 1, + sym_identifier, + ACTIONS(13145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13147), 1, + anon_sym_DOT, + ACTIONS(13149), 1, + anon_sym_BANG, + ACTIONS(13151), 1, + anon_sym_LPAREN, + ACTIONS(13153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13157), 1, + anon_sym_PLUS, + ACTIONS(13159), 1, + anon_sym_DASH, + ACTIONS(13161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13171), 1, + anon_sym_POUND, + STATE(2910), 1, + sym_call_expression, + STATE(3064), 1, + sym_member_expression, + STATE(3380), 1, + sym__signed_unary_expression, + STATE(13439), 1, + sym__callable_expression, + ACTIONS(13167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3210), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18967), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18969), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3013), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [218711] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12677), 1, + aux_sym_unary_expression_token1, + ACTIONS(13143), 1, + sym_identifier, + ACTIONS(13145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13147), 1, + anon_sym_DOT, + ACTIONS(13149), 1, + anon_sym_BANG, + ACTIONS(13151), 1, + anon_sym_LPAREN, + ACTIONS(13153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13157), 1, + anon_sym_PLUS, + ACTIONS(13159), 1, + anon_sym_DASH, + ACTIONS(13161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13171), 1, + anon_sym_POUND, + STATE(2910), 1, + sym_call_expression, + STATE(3064), 1, + sym_member_expression, + STATE(3380), 1, + sym__signed_unary_expression, + STATE(13439), 1, + sym__callable_expression, + ACTIONS(13167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3210), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18971), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18973), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3014), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [218800] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4525), 1, + anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4537), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4539), 1, + anon_sym_PLUS, + ACTIONS(4541), 1, + anon_sym_DASH, + ACTIONS(4543), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4545), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4553), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(11733), 1, + sym_identifier, + ACTIONS(11735), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11917), 1, + aux_sym_unary_expression_token1, + STATE(880), 1, + sym_call_expression, + STATE(1329), 1, + sym__signed_unary_expression, + STATE(1344), 1, + sym_member_expression, + STATE(13269), 1, + sym__callable_expression, + ACTIONS(4549), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18975), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18977), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1243), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [218889] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18979), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18981), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10474), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [218978] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12727), 1, + aux_sym_unary_expression_token1, + ACTIONS(13597), 1, + sym_identifier, + ACTIONS(13599), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13601), 1, + anon_sym_DOT, + ACTIONS(13603), 1, + anon_sym_BANG, + ACTIONS(13605), 1, + anon_sym_LPAREN, + ACTIONS(13607), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13609), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13611), 1, + anon_sym_PLUS, + ACTIONS(13613), 1, + anon_sym_DASH, + ACTIONS(13615), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13617), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13625), 1, + anon_sym_POUND, + STATE(2907), 1, + sym_call_expression, + STATE(2947), 1, + sym__signed_unary_expression, + STATE(3084), 1, + sym_member_expression, + STATE(13464), 1, + sym__callable_expression, + ACTIONS(13621), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3217), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18983), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18985), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2979), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [219067] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12727), 1, + aux_sym_unary_expression_token1, + ACTIONS(13597), 1, + sym_identifier, + ACTIONS(13599), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13601), 1, + anon_sym_DOT, + ACTIONS(13603), 1, + anon_sym_BANG, + ACTIONS(13605), 1, + anon_sym_LPAREN, + ACTIONS(13607), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13609), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13611), 1, + anon_sym_PLUS, + ACTIONS(13613), 1, + anon_sym_DASH, + ACTIONS(13615), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13617), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13625), 1, + anon_sym_POUND, + STATE(2907), 1, + sym_call_expression, + STATE(2947), 1, + sym__signed_unary_expression, + STATE(3084), 1, + sym_member_expression, + STATE(13464), 1, + sym__callable_expression, + ACTIONS(13621), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3217), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18987), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18989), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2982), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [219156] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12727), 1, + aux_sym_unary_expression_token1, + ACTIONS(13597), 1, + sym_identifier, + ACTIONS(13599), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13601), 1, + anon_sym_DOT, + ACTIONS(13603), 1, + anon_sym_BANG, + ACTIONS(13605), 1, + anon_sym_LPAREN, + ACTIONS(13607), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13609), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13611), 1, + anon_sym_PLUS, + ACTIONS(13613), 1, + anon_sym_DASH, + ACTIONS(13615), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13617), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13625), 1, + anon_sym_POUND, + STATE(2907), 1, + sym_call_expression, + STATE(2947), 1, + sym__signed_unary_expression, + STATE(3084), 1, + sym_member_expression, + STATE(13464), 1, + sym__callable_expression, + ACTIONS(13621), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3217), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18991), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18993), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3032), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [219245] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12727), 1, + aux_sym_unary_expression_token1, + ACTIONS(13597), 1, + sym_identifier, + ACTIONS(13599), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13601), 1, + anon_sym_DOT, + ACTIONS(13603), 1, + anon_sym_BANG, + ACTIONS(13605), 1, + anon_sym_LPAREN, + ACTIONS(13607), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13609), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13611), 1, + anon_sym_PLUS, + ACTIONS(13613), 1, + anon_sym_DASH, + ACTIONS(13615), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13617), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13625), 1, + anon_sym_POUND, + STATE(2907), 1, + sym_call_expression, + STATE(2947), 1, + sym__signed_unary_expression, + STATE(3084), 1, + sym_member_expression, + STATE(13464), 1, + sym__callable_expression, + ACTIONS(13621), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3217), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18995), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(18997), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3033), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [219334] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12727), 1, + aux_sym_unary_expression_token1, + ACTIONS(13597), 1, + sym_identifier, + ACTIONS(13599), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13601), 1, + anon_sym_DOT, + ACTIONS(13603), 1, + anon_sym_BANG, + ACTIONS(13605), 1, + anon_sym_LPAREN, + ACTIONS(13607), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13609), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13611), 1, + anon_sym_PLUS, + ACTIONS(13613), 1, + anon_sym_DASH, + ACTIONS(13615), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13617), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13625), 1, + anon_sym_POUND, + STATE(2907), 1, + sym_call_expression, + STATE(2947), 1, + sym__signed_unary_expression, + STATE(3084), 1, + sym_member_expression, + STATE(13464), 1, + sym__callable_expression, + ACTIONS(13621), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3217), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(18999), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19001), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3034), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [219423] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12727), 1, + aux_sym_unary_expression_token1, + ACTIONS(13597), 1, + sym_identifier, + ACTIONS(13599), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13601), 1, + anon_sym_DOT, + ACTIONS(13603), 1, + anon_sym_BANG, + ACTIONS(13605), 1, + anon_sym_LPAREN, + ACTIONS(13607), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13609), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13611), 1, + anon_sym_PLUS, + ACTIONS(13613), 1, + anon_sym_DASH, + ACTIONS(13615), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13617), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13625), 1, + anon_sym_POUND, + STATE(2907), 1, + sym_call_expression, + STATE(2947), 1, + sym__signed_unary_expression, + STATE(3084), 1, + sym_member_expression, + STATE(13464), 1, + sym__callable_expression, + ACTIONS(13621), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3217), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19003), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19005), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3035), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [219512] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12727), 1, + aux_sym_unary_expression_token1, + ACTIONS(13597), 1, + sym_identifier, + ACTIONS(13599), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13601), 1, + anon_sym_DOT, + ACTIONS(13603), 1, + anon_sym_BANG, + ACTIONS(13605), 1, + anon_sym_LPAREN, + ACTIONS(13607), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13609), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13611), 1, + anon_sym_PLUS, + ACTIONS(13613), 1, + anon_sym_DASH, + ACTIONS(13615), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13617), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13625), 1, + anon_sym_POUND, + STATE(2907), 1, + sym_call_expression, + STATE(2947), 1, + sym__signed_unary_expression, + STATE(3084), 1, + sym_member_expression, + STATE(13464), 1, + sym__callable_expression, + ACTIONS(13621), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3217), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19007), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19009), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3036), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [219601] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12727), 1, + aux_sym_unary_expression_token1, + ACTIONS(13597), 1, + sym_identifier, + ACTIONS(13599), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13601), 1, + anon_sym_DOT, + ACTIONS(13603), 1, + anon_sym_BANG, + ACTIONS(13605), 1, + anon_sym_LPAREN, + ACTIONS(13607), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13609), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13611), 1, + anon_sym_PLUS, + ACTIONS(13613), 1, + anon_sym_DASH, + ACTIONS(13615), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13617), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13625), 1, + anon_sym_POUND, + STATE(2907), 1, + sym_call_expression, + STATE(2947), 1, + sym__signed_unary_expression, + STATE(3084), 1, + sym_member_expression, + STATE(13464), 1, + sym__callable_expression, + ACTIONS(13621), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3217), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19011), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19013), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3037), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [219690] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12727), 1, + aux_sym_unary_expression_token1, + ACTIONS(13597), 1, + sym_identifier, + ACTIONS(13599), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13601), 1, + anon_sym_DOT, + ACTIONS(13603), 1, + anon_sym_BANG, + ACTIONS(13605), 1, + anon_sym_LPAREN, + ACTIONS(13607), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13609), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13611), 1, + anon_sym_PLUS, + ACTIONS(13613), 1, + anon_sym_DASH, + ACTIONS(13615), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13617), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13625), 1, + anon_sym_POUND, + STATE(2907), 1, + sym_call_expression, + STATE(2947), 1, + sym__signed_unary_expression, + STATE(3084), 1, + sym_member_expression, + STATE(13464), 1, + sym__callable_expression, + ACTIONS(13621), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3217), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19015), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19017), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3038), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [219779] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12727), 1, + aux_sym_unary_expression_token1, + ACTIONS(13597), 1, + sym_identifier, + ACTIONS(13599), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13601), 1, + anon_sym_DOT, + ACTIONS(13603), 1, + anon_sym_BANG, + ACTIONS(13605), 1, + anon_sym_LPAREN, + ACTIONS(13607), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13609), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13611), 1, + anon_sym_PLUS, + ACTIONS(13613), 1, + anon_sym_DASH, + ACTIONS(13615), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13617), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13625), 1, + anon_sym_POUND, + STATE(2907), 1, + sym_call_expression, + STATE(2947), 1, + sym__signed_unary_expression, + STATE(3084), 1, + sym_member_expression, + STATE(13464), 1, + sym__callable_expression, + ACTIONS(13621), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3217), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19019), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19021), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3039), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [219868] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12727), 1, + aux_sym_unary_expression_token1, + ACTIONS(13597), 1, + sym_identifier, + ACTIONS(13599), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13601), 1, + anon_sym_DOT, + ACTIONS(13603), 1, + anon_sym_BANG, + ACTIONS(13605), 1, + anon_sym_LPAREN, + ACTIONS(13607), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13609), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13611), 1, + anon_sym_PLUS, + ACTIONS(13613), 1, + anon_sym_DASH, + ACTIONS(13615), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13617), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13625), 1, + anon_sym_POUND, + STATE(2907), 1, + sym_call_expression, + STATE(2947), 1, + sym__signed_unary_expression, + STATE(3084), 1, + sym_member_expression, + STATE(13464), 1, + sym__callable_expression, + ACTIONS(13621), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3217), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19023), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19025), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3040), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [219957] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12727), 1, + aux_sym_unary_expression_token1, + ACTIONS(13597), 1, + sym_identifier, + ACTIONS(13599), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13601), 1, + anon_sym_DOT, + ACTIONS(13603), 1, + anon_sym_BANG, + ACTIONS(13605), 1, + anon_sym_LPAREN, + ACTIONS(13607), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13609), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13611), 1, + anon_sym_PLUS, + ACTIONS(13613), 1, + anon_sym_DASH, + ACTIONS(13615), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13617), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13625), 1, + anon_sym_POUND, + STATE(2907), 1, + sym_call_expression, + STATE(2947), 1, + sym__signed_unary_expression, + STATE(3084), 1, + sym_member_expression, + STATE(13464), 1, + sym__callable_expression, + ACTIONS(13621), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3217), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19027), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19029), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3041), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [220046] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12727), 1, + aux_sym_unary_expression_token1, + ACTIONS(13597), 1, + sym_identifier, + ACTIONS(13599), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13601), 1, + anon_sym_DOT, + ACTIONS(13603), 1, + anon_sym_BANG, + ACTIONS(13605), 1, + anon_sym_LPAREN, + ACTIONS(13607), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13609), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13611), 1, + anon_sym_PLUS, + ACTIONS(13613), 1, + anon_sym_DASH, + ACTIONS(13615), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13617), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13625), 1, + anon_sym_POUND, + STATE(2907), 1, + sym_call_expression, + STATE(2947), 1, + sym__signed_unary_expression, + STATE(3084), 1, + sym_member_expression, + STATE(13464), 1, + sym__callable_expression, + ACTIONS(13621), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3217), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19031), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19033), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3042), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [220135] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12391), 1, + sym_identifier, + ACTIONS(12393), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12395), 1, + anon_sym_DOT, + ACTIONS(12397), 1, + anon_sym_BANG, + ACTIONS(12399), 1, + anon_sym_LPAREN, + ACTIONS(12401), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12403), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12405), 1, + anon_sym_PLUS, + ACTIONS(12407), 1, + anon_sym_DASH, + ACTIONS(12409), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12411), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12421), 1, + anon_sym_POUND, + ACTIONS(12641), 1, + aux_sym_unary_expression_token1, + STATE(1124), 1, + sym_call_expression, + STATE(1618), 1, + sym__signed_unary_expression, + STATE(1623), 1, + sym_member_expression, + STATE(13392), 1, + sym__callable_expression, + ACTIONS(12417), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1739), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19035), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19037), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1909), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [220224] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12655), 1, + sym_identifier, + ACTIONS(12657), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12659), 1, + anon_sym_DOT, + ACTIONS(12661), 1, + anon_sym_BANG, + ACTIONS(12663), 1, + anon_sym_LPAREN, + ACTIONS(12665), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12667), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12669), 1, + anon_sym_PLUS, + ACTIONS(12671), 1, + anon_sym_DASH, + ACTIONS(12673), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12675), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12685), 1, + anon_sym_POUND, + ACTIONS(12807), 1, + aux_sym_unary_expression_token1, + STATE(1148), 1, + sym_call_expression, + STATE(1744), 1, + sym__signed_unary_expression, + STATE(1818), 1, + sym_member_expression, + STATE(13508), 1, + sym__callable_expression, + ACTIONS(12681), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1910), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19039), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19041), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1743), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [220313] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12655), 1, + sym_identifier, + ACTIONS(12657), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12659), 1, + anon_sym_DOT, + ACTIONS(12661), 1, + anon_sym_BANG, + ACTIONS(12663), 1, + anon_sym_LPAREN, + ACTIONS(12665), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12667), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12669), 1, + anon_sym_PLUS, + ACTIONS(12671), 1, + anon_sym_DASH, + ACTIONS(12673), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12675), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12685), 1, + anon_sym_POUND, + ACTIONS(12807), 1, + aux_sym_unary_expression_token1, + STATE(1148), 1, + sym_call_expression, + STATE(1744), 1, + sym__signed_unary_expression, + STATE(1818), 1, + sym_member_expression, + STATE(13508), 1, + sym__callable_expression, + ACTIONS(12681), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1910), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19043), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19045), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1747), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [220402] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12655), 1, + sym_identifier, + ACTIONS(12657), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12659), 1, + anon_sym_DOT, + ACTIONS(12661), 1, + anon_sym_BANG, + ACTIONS(12663), 1, + anon_sym_LPAREN, + ACTIONS(12665), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12667), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12669), 1, + anon_sym_PLUS, + ACTIONS(12671), 1, + anon_sym_DASH, + ACTIONS(12673), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12675), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12685), 1, + anon_sym_POUND, + ACTIONS(12807), 1, + aux_sym_unary_expression_token1, + STATE(1148), 1, + sym_call_expression, + STATE(1744), 1, + sym__signed_unary_expression, + STATE(1818), 1, + sym_member_expression, + STATE(13508), 1, + sym__callable_expression, + ACTIONS(12681), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1910), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19047), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19049), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1766), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [220491] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12655), 1, + sym_identifier, + ACTIONS(12657), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12659), 1, + anon_sym_DOT, + ACTIONS(12661), 1, + anon_sym_BANG, + ACTIONS(12663), 1, + anon_sym_LPAREN, + ACTIONS(12665), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12667), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12669), 1, + anon_sym_PLUS, + ACTIONS(12671), 1, + anon_sym_DASH, + ACTIONS(12673), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12675), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12685), 1, + anon_sym_POUND, + ACTIONS(12807), 1, + aux_sym_unary_expression_token1, + STATE(1148), 1, + sym_call_expression, + STATE(1744), 1, + sym__signed_unary_expression, + STATE(1818), 1, + sym_member_expression, + STATE(13508), 1, + sym__callable_expression, + ACTIONS(12681), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1910), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19051), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19053), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1767), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [220580] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12655), 1, + sym_identifier, + ACTIONS(12657), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12659), 1, + anon_sym_DOT, + ACTIONS(12661), 1, + anon_sym_BANG, + ACTIONS(12663), 1, + anon_sym_LPAREN, + ACTIONS(12665), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12667), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12669), 1, + anon_sym_PLUS, + ACTIONS(12671), 1, + anon_sym_DASH, + ACTIONS(12673), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12675), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12685), 1, + anon_sym_POUND, + ACTIONS(12807), 1, + aux_sym_unary_expression_token1, + STATE(1148), 1, + sym_call_expression, + STATE(1744), 1, + sym__signed_unary_expression, + STATE(1818), 1, + sym_member_expression, + STATE(13508), 1, + sym__callable_expression, + ACTIONS(12681), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1910), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19055), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19057), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1768), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [220669] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12655), 1, + sym_identifier, + ACTIONS(12657), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12659), 1, + anon_sym_DOT, + ACTIONS(12661), 1, + anon_sym_BANG, + ACTIONS(12663), 1, + anon_sym_LPAREN, + ACTIONS(12665), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12667), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12669), 1, + anon_sym_PLUS, + ACTIONS(12671), 1, + anon_sym_DASH, + ACTIONS(12673), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12675), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12685), 1, + anon_sym_POUND, + ACTIONS(12807), 1, + aux_sym_unary_expression_token1, + STATE(1148), 1, + sym_call_expression, + STATE(1744), 1, + sym__signed_unary_expression, + STATE(1818), 1, + sym_member_expression, + STATE(13508), 1, + sym__callable_expression, + ACTIONS(12681), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1910), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19059), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19061), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1769), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [220758] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12655), 1, + sym_identifier, + ACTIONS(12657), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12659), 1, + anon_sym_DOT, + ACTIONS(12661), 1, + anon_sym_BANG, + ACTIONS(12663), 1, + anon_sym_LPAREN, + ACTIONS(12665), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12667), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12669), 1, + anon_sym_PLUS, + ACTIONS(12671), 1, + anon_sym_DASH, + ACTIONS(12673), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12675), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12685), 1, + anon_sym_POUND, + ACTIONS(12807), 1, + aux_sym_unary_expression_token1, + STATE(1148), 1, + sym_call_expression, + STATE(1744), 1, + sym__signed_unary_expression, + STATE(1818), 1, + sym_member_expression, + STATE(13508), 1, + sym__callable_expression, + ACTIONS(12681), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1910), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19063), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19065), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1770), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [220847] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12655), 1, + sym_identifier, + ACTIONS(12657), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12659), 1, + anon_sym_DOT, + ACTIONS(12661), 1, + anon_sym_BANG, + ACTIONS(12663), 1, + anon_sym_LPAREN, + ACTIONS(12665), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12667), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12669), 1, + anon_sym_PLUS, + ACTIONS(12671), 1, + anon_sym_DASH, + ACTIONS(12673), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12675), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12685), 1, + anon_sym_POUND, + ACTIONS(12807), 1, + aux_sym_unary_expression_token1, + STATE(1148), 1, + sym_call_expression, + STATE(1744), 1, + sym__signed_unary_expression, + STATE(1818), 1, + sym_member_expression, + STATE(13508), 1, + sym__callable_expression, + ACTIONS(12681), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1910), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19067), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19069), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1771), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [220936] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12655), 1, + sym_identifier, + ACTIONS(12657), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12659), 1, + anon_sym_DOT, + ACTIONS(12661), 1, + anon_sym_BANG, + ACTIONS(12663), 1, + anon_sym_LPAREN, + ACTIONS(12665), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12667), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12669), 1, + anon_sym_PLUS, + ACTIONS(12671), 1, + anon_sym_DASH, + ACTIONS(12673), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12675), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12685), 1, + anon_sym_POUND, + ACTIONS(12807), 1, + aux_sym_unary_expression_token1, + STATE(1148), 1, + sym_call_expression, + STATE(1744), 1, + sym__signed_unary_expression, + STATE(1818), 1, + sym_member_expression, + STATE(13508), 1, + sym__callable_expression, + ACTIONS(12681), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1910), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19071), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19073), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1772), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [221025] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12655), 1, + sym_identifier, + ACTIONS(12657), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12659), 1, + anon_sym_DOT, + ACTIONS(12661), 1, + anon_sym_BANG, + ACTIONS(12663), 1, + anon_sym_LPAREN, + ACTIONS(12665), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12667), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12669), 1, + anon_sym_PLUS, + ACTIONS(12671), 1, + anon_sym_DASH, + ACTIONS(12673), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12675), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12685), 1, + anon_sym_POUND, + ACTIONS(12807), 1, + aux_sym_unary_expression_token1, + STATE(1148), 1, + sym_call_expression, + STATE(1744), 1, + sym__signed_unary_expression, + STATE(1818), 1, + sym_member_expression, + STATE(13508), 1, + sym__callable_expression, + ACTIONS(12681), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1910), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19075), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19077), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1773), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [221114] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12655), 1, + sym_identifier, + ACTIONS(12657), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12659), 1, + anon_sym_DOT, + ACTIONS(12661), 1, + anon_sym_BANG, + ACTIONS(12663), 1, + anon_sym_LPAREN, + ACTIONS(12665), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12667), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12669), 1, + anon_sym_PLUS, + ACTIONS(12671), 1, + anon_sym_DASH, + ACTIONS(12673), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12675), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12685), 1, + anon_sym_POUND, + ACTIONS(12807), 1, + aux_sym_unary_expression_token1, + STATE(1148), 1, + sym_call_expression, + STATE(1744), 1, + sym__signed_unary_expression, + STATE(1818), 1, + sym_member_expression, + STATE(13508), 1, + sym__callable_expression, + ACTIONS(12681), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1910), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19079), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19081), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1774), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [221203] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12655), 1, + sym_identifier, + ACTIONS(12657), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12659), 1, + anon_sym_DOT, + ACTIONS(12661), 1, + anon_sym_BANG, + ACTIONS(12663), 1, + anon_sym_LPAREN, + ACTIONS(12665), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12667), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12669), 1, + anon_sym_PLUS, + ACTIONS(12671), 1, + anon_sym_DASH, + ACTIONS(12673), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12675), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12685), 1, + anon_sym_POUND, + ACTIONS(12807), 1, + aux_sym_unary_expression_token1, + STATE(1148), 1, + sym_call_expression, + STATE(1744), 1, + sym__signed_unary_expression, + STATE(1818), 1, + sym_member_expression, + STATE(13508), 1, + sym__callable_expression, + ACTIONS(12681), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1910), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19083), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19085), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1775), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [221292] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12655), 1, + sym_identifier, + ACTIONS(12657), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12659), 1, + anon_sym_DOT, + ACTIONS(12661), 1, + anon_sym_BANG, + ACTIONS(12663), 1, + anon_sym_LPAREN, + ACTIONS(12665), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12667), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12669), 1, + anon_sym_PLUS, + ACTIONS(12671), 1, + anon_sym_DASH, + ACTIONS(12673), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12675), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12685), 1, + anon_sym_POUND, + ACTIONS(12807), 1, + aux_sym_unary_expression_token1, + STATE(1148), 1, + sym_call_expression, + STATE(1744), 1, + sym__signed_unary_expression, + STATE(1818), 1, + sym_member_expression, + STATE(13508), 1, + sym__callable_expression, + ACTIONS(12681), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1910), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19087), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19089), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1776), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [221381] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12459), 1, + sym_identifier, + ACTIONS(12461), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12463), 1, + anon_sym_DOT, + ACTIONS(12465), 1, + anon_sym_BANG, + ACTIONS(12467), 1, + anon_sym_LPAREN, + ACTIONS(12469), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12471), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12473), 1, + anon_sym_PLUS, + ACTIONS(12475), 1, + anon_sym_DASH, + ACTIONS(12477), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12479), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12489), 1, + anon_sym_POUND, + ACTIONS(12649), 1, + aux_sym_unary_expression_token1, + STATE(1217), 1, + sym_call_expression, + STATE(1627), 1, + sym__signed_unary_expression, + STATE(1660), 1, + sym_member_expression, + STATE(13532), 1, + sym__callable_expression, + ACTIONS(12485), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1778), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19091), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19093), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1916), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [221470] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12705), 1, + sym_identifier, + ACTIONS(12707), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12709), 1, + anon_sym_DOT, + ACTIONS(12711), 1, + anon_sym_BANG, + ACTIONS(12713), 1, + anon_sym_LPAREN, + ACTIONS(12715), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12717), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12719), 1, + anon_sym_PLUS, + ACTIONS(12721), 1, + anon_sym_DASH, + ACTIONS(12723), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12725), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12735), 1, + anon_sym_POUND, + ACTIONS(12851), 1, + aux_sym_unary_expression_token1, + STATE(1166), 1, + sym_call_expression, + STATE(1763), 1, + sym__signed_unary_expression, + STATE(1825), 1, + sym_member_expression, + STATE(13541), 1, + sym__callable_expression, + ACTIONS(12731), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1917), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19095), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19097), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1754), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [221559] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12705), 1, + sym_identifier, + ACTIONS(12707), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12709), 1, + anon_sym_DOT, + ACTIONS(12711), 1, + anon_sym_BANG, + ACTIONS(12713), 1, + anon_sym_LPAREN, + ACTIONS(12715), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12717), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12719), 1, + anon_sym_PLUS, + ACTIONS(12721), 1, + anon_sym_DASH, + ACTIONS(12723), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12725), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12735), 1, + anon_sym_POUND, + ACTIONS(12851), 1, + aux_sym_unary_expression_token1, + STATE(1166), 1, + sym_call_expression, + STATE(1763), 1, + sym__signed_unary_expression, + STATE(1825), 1, + sym_member_expression, + STATE(13541), 1, + sym__callable_expression, + ACTIONS(12731), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1917), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19099), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19101), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1756), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [221648] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12705), 1, + sym_identifier, + ACTIONS(12707), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12709), 1, + anon_sym_DOT, + ACTIONS(12711), 1, + anon_sym_BANG, + ACTIONS(12713), 1, + anon_sym_LPAREN, + ACTIONS(12715), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12717), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12719), 1, + anon_sym_PLUS, + ACTIONS(12721), 1, + anon_sym_DASH, + ACTIONS(12723), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12725), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12735), 1, + anon_sym_POUND, + ACTIONS(12851), 1, + aux_sym_unary_expression_token1, + STATE(1166), 1, + sym_call_expression, + STATE(1763), 1, + sym__signed_unary_expression, + STATE(1825), 1, + sym_member_expression, + STATE(13541), 1, + sym__callable_expression, + ACTIONS(12731), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1917), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19103), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19105), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1791), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [221737] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12705), 1, + sym_identifier, + ACTIONS(12707), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12709), 1, + anon_sym_DOT, + ACTIONS(12711), 1, + anon_sym_BANG, + ACTIONS(12713), 1, + anon_sym_LPAREN, + ACTIONS(12715), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12717), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12719), 1, + anon_sym_PLUS, + ACTIONS(12721), 1, + anon_sym_DASH, + ACTIONS(12723), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12725), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12735), 1, + anon_sym_POUND, + ACTIONS(12851), 1, + aux_sym_unary_expression_token1, + STATE(1166), 1, + sym_call_expression, + STATE(1763), 1, + sym__signed_unary_expression, + STATE(1825), 1, + sym_member_expression, + STATE(13541), 1, + sym__callable_expression, + ACTIONS(12731), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1917), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19107), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19109), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1792), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [221826] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12705), 1, + sym_identifier, + ACTIONS(12707), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12709), 1, + anon_sym_DOT, + ACTIONS(12711), 1, + anon_sym_BANG, + ACTIONS(12713), 1, + anon_sym_LPAREN, + ACTIONS(12715), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12717), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12719), 1, + anon_sym_PLUS, + ACTIONS(12721), 1, + anon_sym_DASH, + ACTIONS(12723), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12725), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12735), 1, + anon_sym_POUND, + ACTIONS(12851), 1, + aux_sym_unary_expression_token1, + STATE(1166), 1, + sym_call_expression, + STATE(1763), 1, + sym__signed_unary_expression, + STATE(1825), 1, + sym_member_expression, + STATE(13541), 1, + sym__callable_expression, + ACTIONS(12731), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1917), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19111), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19113), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1793), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [221915] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12705), 1, + sym_identifier, + ACTIONS(12707), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12709), 1, + anon_sym_DOT, + ACTIONS(12711), 1, + anon_sym_BANG, + ACTIONS(12713), 1, + anon_sym_LPAREN, + ACTIONS(12715), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12717), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12719), 1, + anon_sym_PLUS, + ACTIONS(12721), 1, + anon_sym_DASH, + ACTIONS(12723), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12725), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12735), 1, + anon_sym_POUND, + ACTIONS(12851), 1, + aux_sym_unary_expression_token1, + STATE(1166), 1, + sym_call_expression, + STATE(1763), 1, + sym__signed_unary_expression, + STATE(1825), 1, + sym_member_expression, + STATE(13541), 1, + sym__callable_expression, + ACTIONS(12731), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1917), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19115), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19117), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1794), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [222004] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12705), 1, + sym_identifier, + ACTIONS(12707), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12709), 1, + anon_sym_DOT, + ACTIONS(12711), 1, + anon_sym_BANG, + ACTIONS(12713), 1, + anon_sym_LPAREN, + ACTIONS(12715), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12717), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12719), 1, + anon_sym_PLUS, + ACTIONS(12721), 1, + anon_sym_DASH, + ACTIONS(12723), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12725), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12735), 1, + anon_sym_POUND, + ACTIONS(12851), 1, + aux_sym_unary_expression_token1, + STATE(1166), 1, + sym_call_expression, + STATE(1763), 1, + sym__signed_unary_expression, + STATE(1825), 1, + sym_member_expression, + STATE(13541), 1, + sym__callable_expression, + ACTIONS(12731), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1917), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19119), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19121), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1795), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [222093] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12705), 1, + sym_identifier, + ACTIONS(12707), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12709), 1, + anon_sym_DOT, + ACTIONS(12711), 1, + anon_sym_BANG, + ACTIONS(12713), 1, + anon_sym_LPAREN, + ACTIONS(12715), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12717), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12719), 1, + anon_sym_PLUS, + ACTIONS(12721), 1, + anon_sym_DASH, + ACTIONS(12723), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12725), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12735), 1, + anon_sym_POUND, + ACTIONS(12851), 1, + aux_sym_unary_expression_token1, + STATE(1166), 1, + sym_call_expression, + STATE(1763), 1, + sym__signed_unary_expression, + STATE(1825), 1, + sym_member_expression, + STATE(13541), 1, + sym__callable_expression, + ACTIONS(12731), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1917), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19123), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19125), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1796), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [222182] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12705), 1, + sym_identifier, + ACTIONS(12707), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12709), 1, + anon_sym_DOT, + ACTIONS(12711), 1, + anon_sym_BANG, + ACTIONS(12713), 1, + anon_sym_LPAREN, + ACTIONS(12715), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12717), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12719), 1, + anon_sym_PLUS, + ACTIONS(12721), 1, + anon_sym_DASH, + ACTIONS(12723), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12725), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12735), 1, + anon_sym_POUND, + ACTIONS(12851), 1, + aux_sym_unary_expression_token1, + STATE(1166), 1, + sym_call_expression, + STATE(1763), 1, + sym__signed_unary_expression, + STATE(1825), 1, + sym_member_expression, + STATE(13541), 1, + sym__callable_expression, + ACTIONS(12731), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1917), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19127), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19129), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1797), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [222271] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12705), 1, + sym_identifier, + ACTIONS(12707), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12709), 1, + anon_sym_DOT, + ACTIONS(12711), 1, + anon_sym_BANG, + ACTIONS(12713), 1, + anon_sym_LPAREN, + ACTIONS(12715), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12717), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12719), 1, + anon_sym_PLUS, + ACTIONS(12721), 1, + anon_sym_DASH, + ACTIONS(12723), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12725), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12735), 1, + anon_sym_POUND, + ACTIONS(12851), 1, + aux_sym_unary_expression_token1, + STATE(1166), 1, + sym_call_expression, + STATE(1763), 1, + sym__signed_unary_expression, + STATE(1825), 1, + sym_member_expression, + STATE(13541), 1, + sym__callable_expression, + ACTIONS(12731), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1917), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19131), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19133), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1798), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [222360] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12705), 1, + sym_identifier, + ACTIONS(12707), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12709), 1, + anon_sym_DOT, + ACTIONS(12711), 1, + anon_sym_BANG, + ACTIONS(12713), 1, + anon_sym_LPAREN, + ACTIONS(12715), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12717), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12719), 1, + anon_sym_PLUS, + ACTIONS(12721), 1, + anon_sym_DASH, + ACTIONS(12723), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12725), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12735), 1, + anon_sym_POUND, + ACTIONS(12851), 1, + aux_sym_unary_expression_token1, + STATE(1166), 1, + sym_call_expression, + STATE(1763), 1, + sym__signed_unary_expression, + STATE(1825), 1, + sym_member_expression, + STATE(13541), 1, + sym__callable_expression, + ACTIONS(12731), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1917), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19135), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19137), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1799), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [222449] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12705), 1, + sym_identifier, + ACTIONS(12707), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12709), 1, + anon_sym_DOT, + ACTIONS(12711), 1, + anon_sym_BANG, + ACTIONS(12713), 1, + anon_sym_LPAREN, + ACTIONS(12715), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12717), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12719), 1, + anon_sym_PLUS, + ACTIONS(12721), 1, + anon_sym_DASH, + ACTIONS(12723), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12725), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12735), 1, + anon_sym_POUND, + ACTIONS(12851), 1, + aux_sym_unary_expression_token1, + STATE(1166), 1, + sym_call_expression, + STATE(1763), 1, + sym__signed_unary_expression, + STATE(1825), 1, + sym_member_expression, + STATE(13541), 1, + sym__callable_expression, + ACTIONS(12731), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1917), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19139), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19141), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1800), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [222538] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12705), 1, + sym_identifier, + ACTIONS(12707), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12709), 1, + anon_sym_DOT, + ACTIONS(12711), 1, + anon_sym_BANG, + ACTIONS(12713), 1, + anon_sym_LPAREN, + ACTIONS(12715), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12717), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12719), 1, + anon_sym_PLUS, + ACTIONS(12721), 1, + anon_sym_DASH, + ACTIONS(12723), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12725), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12735), 1, + anon_sym_POUND, + ACTIONS(12851), 1, + aux_sym_unary_expression_token1, + STATE(1166), 1, + sym_call_expression, + STATE(1763), 1, + sym__signed_unary_expression, + STATE(1825), 1, + sym_member_expression, + STATE(13541), 1, + sym__callable_expression, + ACTIONS(12731), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1917), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19143), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19145), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1801), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [222627] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_DOT, + ACTIONS(4561), 1, + anon_sym_BANG, + ACTIONS(4569), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4571), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4573), 1, + anon_sym_PLUS, + ACTIONS(4575), 1, + anon_sym_DASH, + ACTIONS(4577), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4579), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4587), 1, + anon_sym_POUND, + ACTIONS(4869), 1, + anon_sym_LPAREN, + ACTIONS(11739), 1, + sym_identifier, + ACTIONS(11741), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11993), 1, + aux_sym_unary_expression_token1, + STATE(911), 1, + sym_call_expression, + STATE(1116), 1, + sym_member_expression, + STATE(1413), 1, + sym__signed_unary_expression, + STATE(13180), 1, + sym__callable_expression, + ACTIONS(4583), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19147), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19149), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1244), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [222716] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12769), 1, + aux_sym_unary_expression_token1, + ACTIONS(15851), 1, + anon_sym_PLUS, + ACTIONS(15853), 1, + anon_sym_DASH, + ACTIONS(15859), 1, + anon_sym_POUND, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19151), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19153), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2850), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [222805] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12769), 1, + aux_sym_unary_expression_token1, + ACTIONS(15851), 1, + anon_sym_PLUS, + ACTIONS(15853), 1, + anon_sym_DASH, + ACTIONS(15859), 1, + anon_sym_POUND, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19155), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19157), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2851), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [222894] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12769), 1, + aux_sym_unary_expression_token1, + ACTIONS(15851), 1, + anon_sym_PLUS, + ACTIONS(15853), 1, + anon_sym_DASH, + ACTIONS(15859), 1, + anon_sym_POUND, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19159), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19161), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2852), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [222983] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12769), 1, + aux_sym_unary_expression_token1, + ACTIONS(15851), 1, + anon_sym_PLUS, + ACTIONS(15853), 1, + anon_sym_DASH, + ACTIONS(15859), 1, + anon_sym_POUND, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19163), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19165), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2853), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [223072] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12769), 1, + aux_sym_unary_expression_token1, + ACTIONS(15851), 1, + anon_sym_PLUS, + ACTIONS(15853), 1, + anon_sym_DASH, + ACTIONS(15859), 1, + anon_sym_POUND, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19167), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19169), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2854), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [223161] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12769), 1, + aux_sym_unary_expression_token1, + ACTIONS(15851), 1, + anon_sym_PLUS, + ACTIONS(15853), 1, + anon_sym_DASH, + ACTIONS(15859), 1, + anon_sym_POUND, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19171), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19173), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2855), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [223250] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12769), 1, + aux_sym_unary_expression_token1, + ACTIONS(15851), 1, + anon_sym_PLUS, + ACTIONS(15853), 1, + anon_sym_DASH, + ACTIONS(15859), 1, + anon_sym_POUND, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19175), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19177), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2856), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [223339] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12769), 1, + aux_sym_unary_expression_token1, + ACTIONS(15851), 1, + anon_sym_PLUS, + ACTIONS(15853), 1, + anon_sym_DASH, + ACTIONS(15859), 1, + anon_sym_POUND, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19179), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19181), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2857), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [223428] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12769), 1, + aux_sym_unary_expression_token1, + ACTIONS(15851), 1, + anon_sym_PLUS, + ACTIONS(15853), 1, + anon_sym_DASH, + ACTIONS(15859), 1, + anon_sym_POUND, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19183), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19185), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2858), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [223517] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12769), 1, + aux_sym_unary_expression_token1, + ACTIONS(15851), 1, + anon_sym_PLUS, + ACTIONS(15853), 1, + anon_sym_DASH, + ACTIONS(15859), 1, + anon_sym_POUND, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19187), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19189), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2859), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [223606] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12769), 1, + aux_sym_unary_expression_token1, + ACTIONS(15851), 1, + anon_sym_PLUS, + ACTIONS(15853), 1, + anon_sym_DASH, + ACTIONS(15859), 1, + anon_sym_POUND, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19191), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19193), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2860), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [223695] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12769), 1, + aux_sym_unary_expression_token1, + ACTIONS(15851), 1, + anon_sym_PLUS, + ACTIONS(15853), 1, + anon_sym_DASH, + ACTIONS(15859), 1, + anon_sym_POUND, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19195), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19197), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2861), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [223784] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12769), 1, + aux_sym_unary_expression_token1, + ACTIONS(15851), 1, + anon_sym_PLUS, + ACTIONS(15853), 1, + anon_sym_DASH, + ACTIONS(15859), 1, + anon_sym_POUND, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19199), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19201), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2862), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [223873] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12677), 1, + aux_sym_unary_expression_token1, + ACTIONS(13143), 1, + sym_identifier, + ACTIONS(13145), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13147), 1, + anon_sym_DOT, + ACTIONS(13149), 1, + anon_sym_BANG, + ACTIONS(13151), 1, + anon_sym_LPAREN, + ACTIONS(13153), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13155), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13157), 1, + anon_sym_PLUS, + ACTIONS(13159), 1, + anon_sym_DASH, + ACTIONS(13161), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13163), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13171), 1, + anon_sym_POUND, + STATE(2910), 1, + sym_call_expression, + STATE(3064), 1, + sym_member_expression, + STATE(3380), 1, + sym__signed_unary_expression, + STATE(13439), 1, + sym__callable_expression, + ACTIONS(13167), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3210), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19203), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19205), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3237), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [223962] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(13209), 1, + sym_identifier, + ACTIONS(13211), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13213), 1, + anon_sym_DOT, + ACTIONS(13215), 1, + anon_sym_BANG, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13219), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13223), 1, + anon_sym_PLUS, + ACTIONS(13225), 1, + anon_sym_DASH, + ACTIONS(13227), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13229), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13237), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_call_expression, + STATE(2980), 1, + sym__signed_unary_expression, + STATE(3147), 1, + sym_member_expression, + STATE(13569), 1, + sym__callable_expression, + ACTIONS(13233), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19207), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19209), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3051), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [224051] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(13209), 1, + sym_identifier, + ACTIONS(13211), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13213), 1, + anon_sym_DOT, + ACTIONS(13215), 1, + anon_sym_BANG, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13219), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13223), 1, + anon_sym_PLUS, + ACTIONS(13225), 1, + anon_sym_DASH, + ACTIONS(13227), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13229), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13237), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_call_expression, + STATE(2980), 1, + sym__signed_unary_expression, + STATE(3147), 1, + sym_member_expression, + STATE(13569), 1, + sym__callable_expression, + ACTIONS(13233), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19211), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19213), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3054), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [224140] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(13209), 1, + sym_identifier, + ACTIONS(13211), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13213), 1, + anon_sym_DOT, + ACTIONS(13215), 1, + anon_sym_BANG, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13219), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13223), 1, + anon_sym_PLUS, + ACTIONS(13225), 1, + anon_sym_DASH, + ACTIONS(13227), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13229), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13237), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_call_expression, + STATE(2980), 1, + sym__signed_unary_expression, + STATE(3147), 1, + sym_member_expression, + STATE(13569), 1, + sym__callable_expression, + ACTIONS(13233), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19215), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19217), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3096), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [224229] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(13209), 1, + sym_identifier, + ACTIONS(13211), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13213), 1, + anon_sym_DOT, + ACTIONS(13215), 1, + anon_sym_BANG, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13219), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13223), 1, + anon_sym_PLUS, + ACTIONS(13225), 1, + anon_sym_DASH, + ACTIONS(13227), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13229), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13237), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_call_expression, + STATE(2980), 1, + sym__signed_unary_expression, + STATE(3147), 1, + sym_member_expression, + STATE(13569), 1, + sym__callable_expression, + ACTIONS(13233), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19219), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19221), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3097), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [224318] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(13209), 1, + sym_identifier, + ACTIONS(13211), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13213), 1, + anon_sym_DOT, + ACTIONS(13215), 1, + anon_sym_BANG, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13219), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13223), 1, + anon_sym_PLUS, + ACTIONS(13225), 1, + anon_sym_DASH, + ACTIONS(13227), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13229), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13237), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_call_expression, + STATE(2980), 1, + sym__signed_unary_expression, + STATE(3147), 1, + sym_member_expression, + STATE(13569), 1, + sym__callable_expression, + ACTIONS(13233), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19223), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19225), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3098), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [224407] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(13209), 1, + sym_identifier, + ACTIONS(13211), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13213), 1, + anon_sym_DOT, + ACTIONS(13215), 1, + anon_sym_BANG, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13219), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13223), 1, + anon_sym_PLUS, + ACTIONS(13225), 1, + anon_sym_DASH, + ACTIONS(13227), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13229), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13237), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_call_expression, + STATE(2980), 1, + sym__signed_unary_expression, + STATE(3147), 1, + sym_member_expression, + STATE(13569), 1, + sym__callable_expression, + ACTIONS(13233), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19227), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19229), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3099), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [224496] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(13209), 1, + sym_identifier, + ACTIONS(13211), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13213), 1, + anon_sym_DOT, + ACTIONS(13215), 1, + anon_sym_BANG, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13219), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13223), 1, + anon_sym_PLUS, + ACTIONS(13225), 1, + anon_sym_DASH, + ACTIONS(13227), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13229), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13237), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_call_expression, + STATE(2980), 1, + sym__signed_unary_expression, + STATE(3147), 1, + sym_member_expression, + STATE(13569), 1, + sym__callable_expression, + ACTIONS(13233), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19231), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19233), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3100), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [224585] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(13209), 1, + sym_identifier, + ACTIONS(13211), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13213), 1, + anon_sym_DOT, + ACTIONS(13215), 1, + anon_sym_BANG, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13219), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13223), 1, + anon_sym_PLUS, + ACTIONS(13225), 1, + anon_sym_DASH, + ACTIONS(13227), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13229), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13237), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_call_expression, + STATE(2980), 1, + sym__signed_unary_expression, + STATE(3147), 1, + sym_member_expression, + STATE(13569), 1, + sym__callable_expression, + ACTIONS(13233), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19235), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19237), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3101), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [224674] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(13209), 1, + sym_identifier, + ACTIONS(13211), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13213), 1, + anon_sym_DOT, + ACTIONS(13215), 1, + anon_sym_BANG, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13219), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13223), 1, + anon_sym_PLUS, + ACTIONS(13225), 1, + anon_sym_DASH, + ACTIONS(13227), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13229), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13237), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_call_expression, + STATE(2980), 1, + sym__signed_unary_expression, + STATE(3147), 1, + sym_member_expression, + STATE(13569), 1, + sym__callable_expression, + ACTIONS(13233), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19239), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19241), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3102), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [224763] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(13209), 1, + sym_identifier, + ACTIONS(13211), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13213), 1, + anon_sym_DOT, + ACTIONS(13215), 1, + anon_sym_BANG, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13219), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13223), 1, + anon_sym_PLUS, + ACTIONS(13225), 1, + anon_sym_DASH, + ACTIONS(13227), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13229), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13237), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_call_expression, + STATE(2980), 1, + sym__signed_unary_expression, + STATE(3147), 1, + sym_member_expression, + STATE(13569), 1, + sym__callable_expression, + ACTIONS(13233), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19243), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19245), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3103), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [224852] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(13209), 1, + sym_identifier, + ACTIONS(13211), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13213), 1, + anon_sym_DOT, + ACTIONS(13215), 1, + anon_sym_BANG, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13219), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13223), 1, + anon_sym_PLUS, + ACTIONS(13225), 1, + anon_sym_DASH, + ACTIONS(13227), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13229), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13237), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_call_expression, + STATE(2980), 1, + sym__signed_unary_expression, + STATE(3147), 1, + sym_member_expression, + STATE(13569), 1, + sym__callable_expression, + ACTIONS(13233), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19247), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19249), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3104), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [224941] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(13209), 1, + sym_identifier, + ACTIONS(13211), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13213), 1, + anon_sym_DOT, + ACTIONS(13215), 1, + anon_sym_BANG, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13219), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13223), 1, + anon_sym_PLUS, + ACTIONS(13225), 1, + anon_sym_DASH, + ACTIONS(13227), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13229), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13237), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_call_expression, + STATE(2980), 1, + sym__signed_unary_expression, + STATE(3147), 1, + sym_member_expression, + STATE(13569), 1, + sym__callable_expression, + ACTIONS(13233), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19251), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19253), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3105), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [225030] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(13209), 1, + sym_identifier, + ACTIONS(13211), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13213), 1, + anon_sym_DOT, + ACTIONS(13215), 1, + anon_sym_BANG, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13219), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13223), 1, + anon_sym_PLUS, + ACTIONS(13225), 1, + anon_sym_DASH, + ACTIONS(13227), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13229), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13237), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_call_expression, + STATE(2980), 1, + sym__signed_unary_expression, + STATE(3147), 1, + sym_member_expression, + STATE(13569), 1, + sym__callable_expression, + ACTIONS(13233), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19255), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19257), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3106), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [225119] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12501), 1, + sym_identifier, + ACTIONS(12503), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12505), 1, + anon_sym_DOT, + ACTIONS(12507), 1, + anon_sym_BANG, + ACTIONS(12509), 1, + anon_sym_LPAREN, + ACTIONS(12511), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12513), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12515), 1, + anon_sym_PLUS, + ACTIONS(12517), 1, + anon_sym_DASH, + ACTIONS(12519), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12521), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12531), 1, + anon_sym_POUND, + ACTIONS(12687), 1, + aux_sym_unary_expression_token1, + STATE(1430), 1, + sym_call_expression, + STATE(1669), 1, + sym__signed_unary_expression, + STATE(1714), 1, + sym_member_expression, + STATE(13291), 1, + sym__callable_expression, + ACTIONS(12527), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1876), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19259), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19261), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1932), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [225208] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12813), 1, + aux_sym_unary_expression_token1, + ACTIONS(15917), 1, + anon_sym_PLUS, + ACTIONS(15919), 1, + anon_sym_DASH, + ACTIONS(15925), 1, + anon_sym_POUND, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19263), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19265), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2863), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [225297] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12813), 1, + aux_sym_unary_expression_token1, + ACTIONS(15917), 1, + anon_sym_PLUS, + ACTIONS(15919), 1, + anon_sym_DASH, + ACTIONS(15925), 1, + anon_sym_POUND, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19267), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19269), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2864), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [225386] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12813), 1, + aux_sym_unary_expression_token1, + ACTIONS(15917), 1, + anon_sym_PLUS, + ACTIONS(15919), 1, + anon_sym_DASH, + ACTIONS(15925), 1, + anon_sym_POUND, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19271), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19273), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2865), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [225475] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12813), 1, + aux_sym_unary_expression_token1, + ACTIONS(15917), 1, + anon_sym_PLUS, + ACTIONS(15919), 1, + anon_sym_DASH, + ACTIONS(15925), 1, + anon_sym_POUND, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19275), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19277), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2866), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [225564] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12813), 1, + aux_sym_unary_expression_token1, + ACTIONS(15917), 1, + anon_sym_PLUS, + ACTIONS(15919), 1, + anon_sym_DASH, + ACTIONS(15925), 1, + anon_sym_POUND, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19279), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19281), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2867), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [225653] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12813), 1, + aux_sym_unary_expression_token1, + ACTIONS(15917), 1, + anon_sym_PLUS, + ACTIONS(15919), 1, + anon_sym_DASH, + ACTIONS(15925), 1, + anon_sym_POUND, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19283), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19285), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2868), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [225742] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12813), 1, + aux_sym_unary_expression_token1, + ACTIONS(15917), 1, + anon_sym_PLUS, + ACTIONS(15919), 1, + anon_sym_DASH, + ACTIONS(15925), 1, + anon_sym_POUND, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19287), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19289), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2869), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [225831] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12813), 1, + aux_sym_unary_expression_token1, + ACTIONS(15917), 1, + anon_sym_PLUS, + ACTIONS(15919), 1, + anon_sym_DASH, + ACTIONS(15925), 1, + anon_sym_POUND, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19291), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19293), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2870), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [225920] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12813), 1, + aux_sym_unary_expression_token1, + ACTIONS(15917), 1, + anon_sym_PLUS, + ACTIONS(15919), 1, + anon_sym_DASH, + ACTIONS(15925), 1, + anon_sym_POUND, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19295), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19297), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2871), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [226009] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12813), 1, + aux_sym_unary_expression_token1, + ACTIONS(15917), 1, + anon_sym_PLUS, + ACTIONS(15919), 1, + anon_sym_DASH, + ACTIONS(15925), 1, + anon_sym_POUND, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19299), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19301), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2872), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [226098] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12813), 1, + aux_sym_unary_expression_token1, + ACTIONS(15917), 1, + anon_sym_PLUS, + ACTIONS(15919), 1, + anon_sym_DASH, + ACTIONS(15925), 1, + anon_sym_POUND, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19303), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19305), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2873), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [226187] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12813), 1, + aux_sym_unary_expression_token1, + ACTIONS(15917), 1, + anon_sym_PLUS, + ACTIONS(15919), 1, + anon_sym_DASH, + ACTIONS(15925), 1, + anon_sym_POUND, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19307), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19309), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2874), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [226276] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12813), 1, + aux_sym_unary_expression_token1, + ACTIONS(15917), 1, + anon_sym_PLUS, + ACTIONS(15919), 1, + anon_sym_DASH, + ACTIONS(15925), 1, + anon_sym_POUND, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19311), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19313), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2875), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [226365] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12539), 1, + sym_identifier, + ACTIONS(12541), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12543), 1, + anon_sym_DOT, + ACTIONS(12545), 1, + anon_sym_BANG, + ACTIONS(12547), 1, + anon_sym_LPAREN, + ACTIONS(12549), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12551), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12553), 1, + anon_sym_PLUS, + ACTIONS(12555), 1, + anon_sym_DASH, + ACTIONS(12557), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12559), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12569), 1, + anon_sym_POUND, + ACTIONS(12693), 1, + aux_sym_unary_expression_token1, + STATE(10092), 1, + sym_call_expression, + STATE(10124), 1, + sym_member_expression, + STATE(10202), 1, + sym__signed_unary_expression, + STATE(13335), 1, + sym__callable_expression, + ACTIONS(12565), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10138), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19315), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19317), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10173), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [226454] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(13627), 1, + sym_identifier, + ACTIONS(13629), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13631), 1, + anon_sym_DOT, + ACTIONS(13633), 1, + anon_sym_BANG, + ACTIONS(13635), 1, + anon_sym_LPAREN, + ACTIONS(13637), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13639), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13641), 1, + anon_sym_PLUS, + ACTIONS(13643), 1, + anon_sym_DASH, + ACTIONS(13645), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13647), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13655), 1, + anon_sym_POUND, + STATE(2555), 1, + sym_call_expression, + STATE(3024), 1, + sym__signed_unary_expression, + STATE(3154), 1, + sym_member_expression, + STATE(13610), 1, + sym__callable_expression, + ACTIONS(13651), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19319), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19321), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3067), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [226543] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(13627), 1, + sym_identifier, + ACTIONS(13629), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13631), 1, + anon_sym_DOT, + ACTIONS(13633), 1, + anon_sym_BANG, + ACTIONS(13635), 1, + anon_sym_LPAREN, + ACTIONS(13637), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13639), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13641), 1, + anon_sym_PLUS, + ACTIONS(13643), 1, + anon_sym_DASH, + ACTIONS(13645), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13647), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13655), 1, + anon_sym_POUND, + STATE(2555), 1, + sym_call_expression, + STATE(3024), 1, + sym__signed_unary_expression, + STATE(3154), 1, + sym_member_expression, + STATE(13610), 1, + sym__callable_expression, + ACTIONS(13651), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19323), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19325), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3070), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [226632] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(13627), 1, + sym_identifier, + ACTIONS(13629), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13631), 1, + anon_sym_DOT, + ACTIONS(13633), 1, + anon_sym_BANG, + ACTIONS(13635), 1, + anon_sym_LPAREN, + ACTIONS(13637), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13639), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13641), 1, + anon_sym_PLUS, + ACTIONS(13643), 1, + anon_sym_DASH, + ACTIONS(13645), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13647), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13655), 1, + anon_sym_POUND, + STATE(2555), 1, + sym_call_expression, + STATE(3024), 1, + sym__signed_unary_expression, + STATE(3154), 1, + sym_member_expression, + STATE(13610), 1, + sym__callable_expression, + ACTIONS(13651), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19327), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19329), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3121), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [226721] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(13627), 1, + sym_identifier, + ACTIONS(13629), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13631), 1, + anon_sym_DOT, + ACTIONS(13633), 1, + anon_sym_BANG, + ACTIONS(13635), 1, + anon_sym_LPAREN, + ACTIONS(13637), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13639), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13641), 1, + anon_sym_PLUS, + ACTIONS(13643), 1, + anon_sym_DASH, + ACTIONS(13645), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13647), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13655), 1, + anon_sym_POUND, + STATE(2555), 1, + sym_call_expression, + STATE(3024), 1, + sym__signed_unary_expression, + STATE(3154), 1, + sym_member_expression, + STATE(13610), 1, + sym__callable_expression, + ACTIONS(13651), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19331), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19333), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3122), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [226810] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(13627), 1, + sym_identifier, + ACTIONS(13629), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13631), 1, + anon_sym_DOT, + ACTIONS(13633), 1, + anon_sym_BANG, + ACTIONS(13635), 1, + anon_sym_LPAREN, + ACTIONS(13637), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13639), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13641), 1, + anon_sym_PLUS, + ACTIONS(13643), 1, + anon_sym_DASH, + ACTIONS(13645), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13647), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13655), 1, + anon_sym_POUND, + STATE(2555), 1, + sym_call_expression, + STATE(3024), 1, + sym__signed_unary_expression, + STATE(3154), 1, + sym_member_expression, + STATE(13610), 1, + sym__callable_expression, + ACTIONS(13651), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19335), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19337), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3123), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [226899] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(13627), 1, + sym_identifier, + ACTIONS(13629), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13631), 1, + anon_sym_DOT, + ACTIONS(13633), 1, + anon_sym_BANG, + ACTIONS(13635), 1, + anon_sym_LPAREN, + ACTIONS(13637), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13639), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13641), 1, + anon_sym_PLUS, + ACTIONS(13643), 1, + anon_sym_DASH, + ACTIONS(13645), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13647), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13655), 1, + anon_sym_POUND, + STATE(2555), 1, + sym_call_expression, + STATE(3024), 1, + sym__signed_unary_expression, + STATE(3154), 1, + sym_member_expression, + STATE(13610), 1, + sym__callable_expression, + ACTIONS(13651), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19339), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19341), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3124), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [226988] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(13627), 1, + sym_identifier, + ACTIONS(13629), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13631), 1, + anon_sym_DOT, + ACTIONS(13633), 1, + anon_sym_BANG, + ACTIONS(13635), 1, + anon_sym_LPAREN, + ACTIONS(13637), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13639), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13641), 1, + anon_sym_PLUS, + ACTIONS(13643), 1, + anon_sym_DASH, + ACTIONS(13645), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13647), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13655), 1, + anon_sym_POUND, + STATE(2555), 1, + sym_call_expression, + STATE(3024), 1, + sym__signed_unary_expression, + STATE(3154), 1, + sym_member_expression, + STATE(13610), 1, + sym__callable_expression, + ACTIONS(13651), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19343), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19345), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3125), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [227077] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(13627), 1, + sym_identifier, + ACTIONS(13629), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13631), 1, + anon_sym_DOT, + ACTIONS(13633), 1, + anon_sym_BANG, + ACTIONS(13635), 1, + anon_sym_LPAREN, + ACTIONS(13637), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13639), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13641), 1, + anon_sym_PLUS, + ACTIONS(13643), 1, + anon_sym_DASH, + ACTIONS(13645), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13647), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13655), 1, + anon_sym_POUND, + STATE(2555), 1, + sym_call_expression, + STATE(3024), 1, + sym__signed_unary_expression, + STATE(3154), 1, + sym_member_expression, + STATE(13610), 1, + sym__callable_expression, + ACTIONS(13651), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19347), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19349), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3126), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [227166] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(13627), 1, + sym_identifier, + ACTIONS(13629), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13631), 1, + anon_sym_DOT, + ACTIONS(13633), 1, + anon_sym_BANG, + ACTIONS(13635), 1, + anon_sym_LPAREN, + ACTIONS(13637), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13639), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13641), 1, + anon_sym_PLUS, + ACTIONS(13643), 1, + anon_sym_DASH, + ACTIONS(13645), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13647), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13655), 1, + anon_sym_POUND, + STATE(2555), 1, + sym_call_expression, + STATE(3024), 1, + sym__signed_unary_expression, + STATE(3154), 1, + sym_member_expression, + STATE(13610), 1, + sym__callable_expression, + ACTIONS(13651), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19351), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19353), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3127), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [227255] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(13627), 1, + sym_identifier, + ACTIONS(13629), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13631), 1, + anon_sym_DOT, + ACTIONS(13633), 1, + anon_sym_BANG, + ACTIONS(13635), 1, + anon_sym_LPAREN, + ACTIONS(13637), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13639), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13641), 1, + anon_sym_PLUS, + ACTIONS(13643), 1, + anon_sym_DASH, + ACTIONS(13645), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13647), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13655), 1, + anon_sym_POUND, + STATE(2555), 1, + sym_call_expression, + STATE(3024), 1, + sym__signed_unary_expression, + STATE(3154), 1, + sym_member_expression, + STATE(13610), 1, + sym__callable_expression, + ACTIONS(13651), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19355), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19357), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3128), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [227344] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(13627), 1, + sym_identifier, + ACTIONS(13629), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13631), 1, + anon_sym_DOT, + ACTIONS(13633), 1, + anon_sym_BANG, + ACTIONS(13635), 1, + anon_sym_LPAREN, + ACTIONS(13637), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13639), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13641), 1, + anon_sym_PLUS, + ACTIONS(13643), 1, + anon_sym_DASH, + ACTIONS(13645), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13647), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13655), 1, + anon_sym_POUND, + STATE(2555), 1, + sym_call_expression, + STATE(3024), 1, + sym__signed_unary_expression, + STATE(3154), 1, + sym_member_expression, + STATE(13610), 1, + sym__callable_expression, + ACTIONS(13651), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19359), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19361), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3129), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [227433] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(13627), 1, + sym_identifier, + ACTIONS(13629), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13631), 1, + anon_sym_DOT, + ACTIONS(13633), 1, + anon_sym_BANG, + ACTIONS(13635), 1, + anon_sym_LPAREN, + ACTIONS(13637), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13639), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13641), 1, + anon_sym_PLUS, + ACTIONS(13643), 1, + anon_sym_DASH, + ACTIONS(13645), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13647), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13655), 1, + anon_sym_POUND, + STATE(2555), 1, + sym_call_expression, + STATE(3024), 1, + sym__signed_unary_expression, + STATE(3154), 1, + sym_member_expression, + STATE(13610), 1, + sym__callable_expression, + ACTIONS(13651), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19363), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19365), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3130), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [227522] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(13627), 1, + sym_identifier, + ACTIONS(13629), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13631), 1, + anon_sym_DOT, + ACTIONS(13633), 1, + anon_sym_BANG, + ACTIONS(13635), 1, + anon_sym_LPAREN, + ACTIONS(13637), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13639), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13641), 1, + anon_sym_PLUS, + ACTIONS(13643), 1, + anon_sym_DASH, + ACTIONS(13645), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13647), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13655), 1, + anon_sym_POUND, + STATE(2555), 1, + sym_call_expression, + STATE(3024), 1, + sym__signed_unary_expression, + STATE(3154), 1, + sym_member_expression, + STATE(13610), 1, + sym__callable_expression, + ACTIONS(13651), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19367), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19369), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3131), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [227611] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12577), 1, + sym_identifier, + ACTIONS(12579), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12581), 1, + anon_sym_DOT, + ACTIONS(12583), 1, + anon_sym_BANG, + ACTIONS(12585), 1, + anon_sym_LPAREN, + ACTIONS(12587), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12589), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12591), 1, + anon_sym_PLUS, + ACTIONS(12593), 1, + anon_sym_DASH, + ACTIONS(12595), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12597), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12607), 1, + anon_sym_POUND, + ACTIONS(12699), 1, + aux_sym_unary_expression_token1, + STATE(612), 1, + sym_call_expression, + STATE(660), 1, + sym_member_expression, + STATE(686), 1, + sym__signed_unary_expression, + STATE(13357), 1, + sym__callable_expression, + ACTIONS(12603), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(716), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19371), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19373), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(720), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [227700] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19375), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19377), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10671), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [227789] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12775), 1, + sym_identifier, + ACTIONS(12777), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12779), 1, + anon_sym_DOT, + ACTIONS(12781), 1, + anon_sym_BANG, + ACTIONS(12783), 1, + anon_sym_LPAREN, + ACTIONS(12785), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12787), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12789), 1, + anon_sym_PLUS, + ACTIONS(12791), 1, + anon_sym_DASH, + ACTIONS(12793), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12795), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12805), 1, + anon_sym_POUND, + ACTIONS(12857), 1, + aux_sym_unary_expression_token1, + STATE(1184), 1, + sym_call_expression, + STATE(1785), 1, + sym__signed_unary_expression, + STATE(1864), 1, + sym_member_expression, + STATE(13629), 1, + sym__callable_expression, + ACTIONS(12801), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1933), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19379), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19381), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1807), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [227878] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12775), 1, + sym_identifier, + ACTIONS(12777), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12779), 1, + anon_sym_DOT, + ACTIONS(12781), 1, + anon_sym_BANG, + ACTIONS(12783), 1, + anon_sym_LPAREN, + ACTIONS(12785), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12787), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12789), 1, + anon_sym_PLUS, + ACTIONS(12791), 1, + anon_sym_DASH, + ACTIONS(12793), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12795), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12805), 1, + anon_sym_POUND, + ACTIONS(12857), 1, + aux_sym_unary_expression_token1, + STATE(1184), 1, + sym_call_expression, + STATE(1785), 1, + sym__signed_unary_expression, + STATE(1864), 1, + sym_member_expression, + STATE(13629), 1, + sym__callable_expression, + ACTIONS(12801), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1933), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19383), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19385), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1812), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [227967] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12775), 1, + sym_identifier, + ACTIONS(12777), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12779), 1, + anon_sym_DOT, + ACTIONS(12781), 1, + anon_sym_BANG, + ACTIONS(12783), 1, + anon_sym_LPAREN, + ACTIONS(12785), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12787), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12789), 1, + anon_sym_PLUS, + ACTIONS(12791), 1, + anon_sym_DASH, + ACTIONS(12793), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12795), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12805), 1, + anon_sym_POUND, + ACTIONS(12857), 1, + aux_sym_unary_expression_token1, + STATE(1184), 1, + sym_call_expression, + STATE(1785), 1, + sym__signed_unary_expression, + STATE(1864), 1, + sym_member_expression, + STATE(13629), 1, + sym__callable_expression, + ACTIONS(12801), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1933), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19387), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19389), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1832), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [228056] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12775), 1, + sym_identifier, + ACTIONS(12777), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12779), 1, + anon_sym_DOT, + ACTIONS(12781), 1, + anon_sym_BANG, + ACTIONS(12783), 1, + anon_sym_LPAREN, + ACTIONS(12785), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12787), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12789), 1, + anon_sym_PLUS, + ACTIONS(12791), 1, + anon_sym_DASH, + ACTIONS(12793), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12795), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12805), 1, + anon_sym_POUND, + ACTIONS(12857), 1, + aux_sym_unary_expression_token1, + STATE(1184), 1, + sym_call_expression, + STATE(1785), 1, + sym__signed_unary_expression, + STATE(1864), 1, + sym_member_expression, + STATE(13629), 1, + sym__callable_expression, + ACTIONS(12801), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1933), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19391), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19393), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1833), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [228145] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12775), 1, + sym_identifier, + ACTIONS(12777), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12779), 1, + anon_sym_DOT, + ACTIONS(12781), 1, + anon_sym_BANG, + ACTIONS(12783), 1, + anon_sym_LPAREN, + ACTIONS(12785), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12787), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12789), 1, + anon_sym_PLUS, + ACTIONS(12791), 1, + anon_sym_DASH, + ACTIONS(12793), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12795), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12805), 1, + anon_sym_POUND, + ACTIONS(12857), 1, + aux_sym_unary_expression_token1, + STATE(1184), 1, + sym_call_expression, + STATE(1785), 1, + sym__signed_unary_expression, + STATE(1864), 1, + sym_member_expression, + STATE(13629), 1, + sym__callable_expression, + ACTIONS(12801), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1933), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19395), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19397), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1834), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [228234] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12775), 1, + sym_identifier, + ACTIONS(12777), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12779), 1, + anon_sym_DOT, + ACTIONS(12781), 1, + anon_sym_BANG, + ACTIONS(12783), 1, + anon_sym_LPAREN, + ACTIONS(12785), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12787), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12789), 1, + anon_sym_PLUS, + ACTIONS(12791), 1, + anon_sym_DASH, + ACTIONS(12793), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12795), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12805), 1, + anon_sym_POUND, + ACTIONS(12857), 1, + aux_sym_unary_expression_token1, + STATE(1184), 1, + sym_call_expression, + STATE(1785), 1, + sym__signed_unary_expression, + STATE(1864), 1, + sym_member_expression, + STATE(13629), 1, + sym__callable_expression, + ACTIONS(12801), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1933), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19399), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19401), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1835), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [228323] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12775), 1, + sym_identifier, + ACTIONS(12777), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12779), 1, + anon_sym_DOT, + ACTIONS(12781), 1, + anon_sym_BANG, + ACTIONS(12783), 1, + anon_sym_LPAREN, + ACTIONS(12785), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12787), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12789), 1, + anon_sym_PLUS, + ACTIONS(12791), 1, + anon_sym_DASH, + ACTIONS(12793), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12795), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12805), 1, + anon_sym_POUND, + ACTIONS(12857), 1, + aux_sym_unary_expression_token1, + STATE(1184), 1, + sym_call_expression, + STATE(1785), 1, + sym__signed_unary_expression, + STATE(1864), 1, + sym_member_expression, + STATE(13629), 1, + sym__callable_expression, + ACTIONS(12801), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1933), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19403), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19405), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1836), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [228412] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12775), 1, + sym_identifier, + ACTIONS(12777), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12779), 1, + anon_sym_DOT, + ACTIONS(12781), 1, + anon_sym_BANG, + ACTIONS(12783), 1, + anon_sym_LPAREN, + ACTIONS(12785), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12787), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12789), 1, + anon_sym_PLUS, + ACTIONS(12791), 1, + anon_sym_DASH, + ACTIONS(12793), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12795), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12805), 1, + anon_sym_POUND, + ACTIONS(12857), 1, + aux_sym_unary_expression_token1, + STATE(1184), 1, + sym_call_expression, + STATE(1785), 1, + sym__signed_unary_expression, + STATE(1864), 1, + sym_member_expression, + STATE(13629), 1, + sym__callable_expression, + ACTIONS(12801), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1933), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19407), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19409), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1837), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [228501] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12775), 1, + sym_identifier, + ACTIONS(12777), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12779), 1, + anon_sym_DOT, + ACTIONS(12781), 1, + anon_sym_BANG, + ACTIONS(12783), 1, + anon_sym_LPAREN, + ACTIONS(12785), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12787), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12789), 1, + anon_sym_PLUS, + ACTIONS(12791), 1, + anon_sym_DASH, + ACTIONS(12793), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12795), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12805), 1, + anon_sym_POUND, + ACTIONS(12857), 1, + aux_sym_unary_expression_token1, + STATE(1184), 1, + sym_call_expression, + STATE(1785), 1, + sym__signed_unary_expression, + STATE(1864), 1, + sym_member_expression, + STATE(13629), 1, + sym__callable_expression, + ACTIONS(12801), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1933), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19411), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19413), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1838), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [228590] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12775), 1, + sym_identifier, + ACTIONS(12777), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12779), 1, + anon_sym_DOT, + ACTIONS(12781), 1, + anon_sym_BANG, + ACTIONS(12783), 1, + anon_sym_LPAREN, + ACTIONS(12785), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12787), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12789), 1, + anon_sym_PLUS, + ACTIONS(12791), 1, + anon_sym_DASH, + ACTIONS(12793), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12795), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12805), 1, + anon_sym_POUND, + ACTIONS(12857), 1, + aux_sym_unary_expression_token1, + STATE(1184), 1, + sym_call_expression, + STATE(1785), 1, + sym__signed_unary_expression, + STATE(1864), 1, + sym_member_expression, + STATE(13629), 1, + sym__callable_expression, + ACTIONS(12801), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1933), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19415), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19417), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1839), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [228679] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12775), 1, + sym_identifier, + ACTIONS(12777), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12779), 1, + anon_sym_DOT, + ACTIONS(12781), 1, + anon_sym_BANG, + ACTIONS(12783), 1, + anon_sym_LPAREN, + ACTIONS(12785), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12787), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12789), 1, + anon_sym_PLUS, + ACTIONS(12791), 1, + anon_sym_DASH, + ACTIONS(12793), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12795), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12805), 1, + anon_sym_POUND, + ACTIONS(12857), 1, + aux_sym_unary_expression_token1, + STATE(1184), 1, + sym_call_expression, + STATE(1785), 1, + sym__signed_unary_expression, + STATE(1864), 1, + sym_member_expression, + STATE(13629), 1, + sym__callable_expression, + ACTIONS(12801), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1933), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19419), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19421), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1840), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [228768] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12775), 1, + sym_identifier, + ACTIONS(12777), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12779), 1, + anon_sym_DOT, + ACTIONS(12781), 1, + anon_sym_BANG, + ACTIONS(12783), 1, + anon_sym_LPAREN, + ACTIONS(12785), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12787), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12789), 1, + anon_sym_PLUS, + ACTIONS(12791), 1, + anon_sym_DASH, + ACTIONS(12793), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12795), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12805), 1, + anon_sym_POUND, + ACTIONS(12857), 1, + aux_sym_unary_expression_token1, + STATE(1184), 1, + sym_call_expression, + STATE(1785), 1, + sym__signed_unary_expression, + STATE(1864), 1, + sym_member_expression, + STATE(13629), 1, + sym__callable_expression, + ACTIONS(12801), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1933), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19423), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19425), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1841), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [228857] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12775), 1, + sym_identifier, + ACTIONS(12777), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12779), 1, + anon_sym_DOT, + ACTIONS(12781), 1, + anon_sym_BANG, + ACTIONS(12783), 1, + anon_sym_LPAREN, + ACTIONS(12785), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12787), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12789), 1, + anon_sym_PLUS, + ACTIONS(12791), 1, + anon_sym_DASH, + ACTIONS(12793), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12795), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12805), 1, + anon_sym_POUND, + ACTIONS(12857), 1, + aux_sym_unary_expression_token1, + STATE(1184), 1, + sym_call_expression, + STATE(1785), 1, + sym__signed_unary_expression, + STATE(1864), 1, + sym_member_expression, + STATE(13629), 1, + sym__callable_expression, + ACTIONS(12801), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1933), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19427), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19429), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1842), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [228946] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12727), 1, + aux_sym_unary_expression_token1, + ACTIONS(13597), 1, + sym_identifier, + ACTIONS(13599), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13601), 1, + anon_sym_DOT, + ACTIONS(13603), 1, + anon_sym_BANG, + ACTIONS(13605), 1, + anon_sym_LPAREN, + ACTIONS(13607), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13609), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13611), 1, + anon_sym_PLUS, + ACTIONS(13613), 1, + anon_sym_DASH, + ACTIONS(13615), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13617), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13625), 1, + anon_sym_POUND, + STATE(2907), 1, + sym_call_expression, + STATE(2947), 1, + sym__signed_unary_expression, + STATE(3084), 1, + sym_member_expression, + STATE(13464), 1, + sym__callable_expression, + ACTIONS(13621), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3217), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19431), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19433), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3245), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [229035] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12819), 1, + sym_identifier, + ACTIONS(12821), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12823), 1, + anon_sym_DOT, + ACTIONS(12825), 1, + anon_sym_BANG, + ACTIONS(12827), 1, + anon_sym_LPAREN, + ACTIONS(12829), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12831), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12833), 1, + anon_sym_PLUS, + ACTIONS(12835), 1, + anon_sym_DASH, + ACTIONS(12837), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12839), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12849), 1, + anon_sym_POUND, + ACTIONS(12863), 1, + aux_sym_unary_expression_token1, + STATE(1189), 1, + sym_call_expression, + STATE(1808), 1, + sym__signed_unary_expression, + STATE(1870), 1, + sym_member_expression, + STATE(13090), 1, + sym__callable_expression, + ACTIONS(12845), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1937), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19435), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19437), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1820), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [229124] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19439), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19441), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3717), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [229213] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12819), 1, + sym_identifier, + ACTIONS(12821), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12823), 1, + anon_sym_DOT, + ACTIONS(12825), 1, + anon_sym_BANG, + ACTIONS(12827), 1, + anon_sym_LPAREN, + ACTIONS(12829), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12831), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12833), 1, + anon_sym_PLUS, + ACTIONS(12835), 1, + anon_sym_DASH, + ACTIONS(12837), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12839), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12849), 1, + anon_sym_POUND, + ACTIONS(12863), 1, + aux_sym_unary_expression_token1, + STATE(1189), 1, + sym_call_expression, + STATE(1808), 1, + sym__signed_unary_expression, + STATE(1870), 1, + sym_member_expression, + STATE(13090), 1, + sym__callable_expression, + ACTIONS(12845), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1937), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19443), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19445), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1822), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [229302] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12819), 1, + sym_identifier, + ACTIONS(12821), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12823), 1, + anon_sym_DOT, + ACTIONS(12825), 1, + anon_sym_BANG, + ACTIONS(12827), 1, + anon_sym_LPAREN, + ACTIONS(12829), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12831), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12833), 1, + anon_sym_PLUS, + ACTIONS(12835), 1, + anon_sym_DASH, + ACTIONS(12837), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12839), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12849), 1, + anon_sym_POUND, + ACTIONS(12863), 1, + aux_sym_unary_expression_token1, + STATE(1189), 1, + sym_call_expression, + STATE(1808), 1, + sym__signed_unary_expression, + STATE(1870), 1, + sym_member_expression, + STATE(13090), 1, + sym__callable_expression, + ACTIONS(12845), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1937), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19447), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19449), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1848), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [229391] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12819), 1, + sym_identifier, + ACTIONS(12821), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12823), 1, + anon_sym_DOT, + ACTIONS(12825), 1, + anon_sym_BANG, + ACTIONS(12827), 1, + anon_sym_LPAREN, + ACTIONS(12829), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12831), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12833), 1, + anon_sym_PLUS, + ACTIONS(12835), 1, + anon_sym_DASH, + ACTIONS(12837), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12839), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12849), 1, + anon_sym_POUND, + ACTIONS(12863), 1, + aux_sym_unary_expression_token1, + STATE(1189), 1, + sym_call_expression, + STATE(1808), 1, + sym__signed_unary_expression, + STATE(1870), 1, + sym_member_expression, + STATE(13090), 1, + sym__callable_expression, + ACTIONS(12845), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1937), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19451), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19453), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1849), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [229480] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12819), 1, + sym_identifier, + ACTIONS(12821), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12823), 1, + anon_sym_DOT, + ACTIONS(12825), 1, + anon_sym_BANG, + ACTIONS(12827), 1, + anon_sym_LPAREN, + ACTIONS(12829), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12831), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12833), 1, + anon_sym_PLUS, + ACTIONS(12835), 1, + anon_sym_DASH, + ACTIONS(12837), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12839), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12849), 1, + anon_sym_POUND, + ACTIONS(12863), 1, + aux_sym_unary_expression_token1, + STATE(1189), 1, + sym_call_expression, + STATE(1808), 1, + sym__signed_unary_expression, + STATE(1870), 1, + sym_member_expression, + STATE(13090), 1, + sym__callable_expression, + ACTIONS(12845), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1937), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19455), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19457), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1850), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [229569] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12819), 1, + sym_identifier, + ACTIONS(12821), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12823), 1, + anon_sym_DOT, + ACTIONS(12825), 1, + anon_sym_BANG, + ACTIONS(12827), 1, + anon_sym_LPAREN, + ACTIONS(12829), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12831), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12833), 1, + anon_sym_PLUS, + ACTIONS(12835), 1, + anon_sym_DASH, + ACTIONS(12837), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12839), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12849), 1, + anon_sym_POUND, + ACTIONS(12863), 1, + aux_sym_unary_expression_token1, + STATE(1189), 1, + sym_call_expression, + STATE(1808), 1, + sym__signed_unary_expression, + STATE(1870), 1, + sym_member_expression, + STATE(13090), 1, + sym__callable_expression, + ACTIONS(12845), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1937), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19459), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19461), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1851), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [229658] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12819), 1, + sym_identifier, + ACTIONS(12821), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12823), 1, + anon_sym_DOT, + ACTIONS(12825), 1, + anon_sym_BANG, + ACTIONS(12827), 1, + anon_sym_LPAREN, + ACTIONS(12829), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12831), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12833), 1, + anon_sym_PLUS, + ACTIONS(12835), 1, + anon_sym_DASH, + ACTIONS(12837), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12839), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12849), 1, + anon_sym_POUND, + ACTIONS(12863), 1, + aux_sym_unary_expression_token1, + STATE(1189), 1, + sym_call_expression, + STATE(1808), 1, + sym__signed_unary_expression, + STATE(1870), 1, + sym_member_expression, + STATE(13090), 1, + sym__callable_expression, + ACTIONS(12845), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1937), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19463), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19465), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1852), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [229747] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12819), 1, + sym_identifier, + ACTIONS(12821), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12823), 1, + anon_sym_DOT, + ACTIONS(12825), 1, + anon_sym_BANG, + ACTIONS(12827), 1, + anon_sym_LPAREN, + ACTIONS(12829), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12831), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12833), 1, + anon_sym_PLUS, + ACTIONS(12835), 1, + anon_sym_DASH, + ACTIONS(12837), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12839), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12849), 1, + anon_sym_POUND, + ACTIONS(12863), 1, + aux_sym_unary_expression_token1, + STATE(1189), 1, + sym_call_expression, + STATE(1808), 1, + sym__signed_unary_expression, + STATE(1870), 1, + sym_member_expression, + STATE(13090), 1, + sym__callable_expression, + ACTIONS(12845), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1937), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19467), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19469), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1853), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [229836] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12819), 1, + sym_identifier, + ACTIONS(12821), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12823), 1, + anon_sym_DOT, + ACTIONS(12825), 1, + anon_sym_BANG, + ACTIONS(12827), 1, + anon_sym_LPAREN, + ACTIONS(12829), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12831), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12833), 1, + anon_sym_PLUS, + ACTIONS(12835), 1, + anon_sym_DASH, + ACTIONS(12837), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12839), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12849), 1, + anon_sym_POUND, + ACTIONS(12863), 1, + aux_sym_unary_expression_token1, + STATE(1189), 1, + sym_call_expression, + STATE(1808), 1, + sym__signed_unary_expression, + STATE(1870), 1, + sym_member_expression, + STATE(13090), 1, + sym__callable_expression, + ACTIONS(12845), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1937), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19471), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19473), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1854), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [229925] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12819), 1, + sym_identifier, + ACTIONS(12821), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12823), 1, + anon_sym_DOT, + ACTIONS(12825), 1, + anon_sym_BANG, + ACTIONS(12827), 1, + anon_sym_LPAREN, + ACTIONS(12829), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12831), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12833), 1, + anon_sym_PLUS, + ACTIONS(12835), 1, + anon_sym_DASH, + ACTIONS(12837), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12839), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12849), 1, + anon_sym_POUND, + ACTIONS(12863), 1, + aux_sym_unary_expression_token1, + STATE(1189), 1, + sym_call_expression, + STATE(1808), 1, + sym__signed_unary_expression, + STATE(1870), 1, + sym_member_expression, + STATE(13090), 1, + sym__callable_expression, + ACTIONS(12845), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1937), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19475), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19477), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1855), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [230014] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12819), 1, + sym_identifier, + ACTIONS(12821), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12823), 1, + anon_sym_DOT, + ACTIONS(12825), 1, + anon_sym_BANG, + ACTIONS(12827), 1, + anon_sym_LPAREN, + ACTIONS(12829), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12831), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12833), 1, + anon_sym_PLUS, + ACTIONS(12835), 1, + anon_sym_DASH, + ACTIONS(12837), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12839), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12849), 1, + anon_sym_POUND, + ACTIONS(12863), 1, + aux_sym_unary_expression_token1, + STATE(1189), 1, + sym_call_expression, + STATE(1808), 1, + sym__signed_unary_expression, + STATE(1870), 1, + sym_member_expression, + STATE(13090), 1, + sym__callable_expression, + ACTIONS(12845), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1937), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19479), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19481), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1856), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [230103] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12819), 1, + sym_identifier, + ACTIONS(12821), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12823), 1, + anon_sym_DOT, + ACTIONS(12825), 1, + anon_sym_BANG, + ACTIONS(12827), 1, + anon_sym_LPAREN, + ACTIONS(12829), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12831), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12833), 1, + anon_sym_PLUS, + ACTIONS(12835), 1, + anon_sym_DASH, + ACTIONS(12837), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12839), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12849), 1, + anon_sym_POUND, + ACTIONS(12863), 1, + aux_sym_unary_expression_token1, + STATE(1189), 1, + sym_call_expression, + STATE(1808), 1, + sym__signed_unary_expression, + STATE(1870), 1, + sym_member_expression, + STATE(13090), 1, + sym__callable_expression, + ACTIONS(12845), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1937), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19483), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19485), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1857), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [230192] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12819), 1, + sym_identifier, + ACTIONS(12821), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12823), 1, + anon_sym_DOT, + ACTIONS(12825), 1, + anon_sym_BANG, + ACTIONS(12827), 1, + anon_sym_LPAREN, + ACTIONS(12829), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12831), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12833), 1, + anon_sym_PLUS, + ACTIONS(12835), 1, + anon_sym_DASH, + ACTIONS(12837), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12839), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12849), 1, + anon_sym_POUND, + ACTIONS(12863), 1, + aux_sym_unary_expression_token1, + STATE(1189), 1, + sym_call_expression, + STATE(1808), 1, + sym__signed_unary_expression, + STATE(1870), 1, + sym_member_expression, + STATE(13090), 1, + sym__callable_expression, + ACTIONS(12845), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1937), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19487), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19489), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1858), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [230281] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12737), 1, + sym_identifier, + ACTIONS(12739), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12741), 1, + anon_sym_DOT, + ACTIONS(12743), 1, + anon_sym_BANG, + ACTIONS(12745), 1, + anon_sym_LPAREN, + ACTIONS(12747), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12749), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12751), 1, + anon_sym_PLUS, + ACTIONS(12753), 1, + anon_sym_DASH, + ACTIONS(12755), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12757), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12759), 1, + aux_sym_unary_expression_token1, + ACTIONS(12767), 1, + anon_sym_POUND, + STATE(789), 1, + sym_call_expression, + STATE(945), 1, + sym__signed_unary_expression, + STATE(968), 1, + sym_member_expression, + STATE(13397), 1, + sym__callable_expression, + ACTIONS(12763), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(982), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19491), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19493), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(987), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [230370] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1580), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1582), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6772), 1, + sym_identifier, + ACTIONS(6774), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12769), 1, + aux_sym_unary_expression_token1, + ACTIONS(15851), 1, + anon_sym_PLUS, + ACTIONS(15853), 1, + anon_sym_DASH, + ACTIONS(15859), 1, + anon_sym_POUND, + STATE(2298), 1, + sym_call_expression, + STATE(2348), 1, + sym_member_expression, + STATE(2479), 1, + sym__signed_unary_expression, + STATE(13216), 1, + sym__callable_expression, + ACTIONS(1591), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19495), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19497), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2876), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [230459] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12797), 1, + aux_sym_unary_expression_token1, + ACTIONS(13209), 1, + sym_identifier, + ACTIONS(13211), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13213), 1, + anon_sym_DOT, + ACTIONS(13215), 1, + anon_sym_BANG, + ACTIONS(13217), 1, + anon_sym_LPAREN, + ACTIONS(13219), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13223), 1, + anon_sym_PLUS, + ACTIONS(13225), 1, + anon_sym_DASH, + ACTIONS(13227), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13229), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13237), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_call_expression, + STATE(2980), 1, + sym__signed_unary_expression, + STATE(3147), 1, + sym_member_expression, + STATE(13569), 1, + sym__callable_expression, + ACTIONS(13233), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19499), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19501), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3249), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [230548] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12655), 1, + sym_identifier, + ACTIONS(12657), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12659), 1, + anon_sym_DOT, + ACTIONS(12661), 1, + anon_sym_BANG, + ACTIONS(12663), 1, + anon_sym_LPAREN, + ACTIONS(12665), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12667), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12669), 1, + anon_sym_PLUS, + ACTIONS(12671), 1, + anon_sym_DASH, + ACTIONS(12673), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12675), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12685), 1, + anon_sym_POUND, + ACTIONS(12807), 1, + aux_sym_unary_expression_token1, + STATE(1148), 1, + sym_call_expression, + STATE(1744), 1, + sym__signed_unary_expression, + STATE(1818), 1, + sym_member_expression, + STATE(13508), 1, + sym__callable_expression, + ACTIONS(12681), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1910), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19503), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19505), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1942), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [230637] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2399), 1, + anon_sym_BANG, + ACTIONS(2421), 1, + anon_sym_LPAREN, + ACTIONS(2423), 1, + aux_sym_as_type_clause_token2, + ACTIONS(2487), 1, + aux_sym_addressof_expression_token1, + ACTIONS(2489), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12813), 1, + aux_sym_unary_expression_token1, + ACTIONS(15917), 1, + anon_sym_PLUS, + ACTIONS(15919), 1, + anon_sym_DASH, + ACTIONS(15925), 1, + anon_sym_POUND, + STATE(2277), 1, + sym_call_expression, + STATE(2361), 1, + sym__signed_unary_expression, + STATE(2509), 1, + sym_member_expression, + STATE(13148), 1, + sym__callable_expression, + ACTIONS(2497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19507), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19509), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2877), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [230726] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12841), 1, + aux_sym_unary_expression_token1, + ACTIONS(13627), 1, + sym_identifier, + ACTIONS(13629), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13631), 1, + anon_sym_DOT, + ACTIONS(13633), 1, + anon_sym_BANG, + ACTIONS(13635), 1, + anon_sym_LPAREN, + ACTIONS(13637), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13639), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13641), 1, + anon_sym_PLUS, + ACTIONS(13643), 1, + anon_sym_DASH, + ACTIONS(13645), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13647), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13655), 1, + anon_sym_POUND, + STATE(2555), 1, + sym_call_expression, + STATE(3024), 1, + sym__signed_unary_expression, + STATE(3154), 1, + sym_member_expression, + STATE(13610), 1, + sym__callable_expression, + ACTIONS(13651), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19511), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19513), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3250), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [230815] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12705), 1, + sym_identifier, + ACTIONS(12707), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12709), 1, + anon_sym_DOT, + ACTIONS(12711), 1, + anon_sym_BANG, + ACTIONS(12713), 1, + anon_sym_LPAREN, + ACTIONS(12715), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12717), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12719), 1, + anon_sym_PLUS, + ACTIONS(12721), 1, + anon_sym_DASH, + ACTIONS(12723), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12725), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12735), 1, + anon_sym_POUND, + ACTIONS(12851), 1, + aux_sym_unary_expression_token1, + STATE(1166), 1, + sym_call_expression, + STATE(1763), 1, + sym__signed_unary_expression, + STATE(1825), 1, + sym_member_expression, + STATE(13541), 1, + sym__callable_expression, + ACTIONS(12731), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1917), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19515), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19517), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1943), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [230904] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12775), 1, + sym_identifier, + ACTIONS(12777), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12779), 1, + anon_sym_DOT, + ACTIONS(12781), 1, + anon_sym_BANG, + ACTIONS(12783), 1, + anon_sym_LPAREN, + ACTIONS(12785), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12787), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12789), 1, + anon_sym_PLUS, + ACTIONS(12791), 1, + anon_sym_DASH, + ACTIONS(12793), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12795), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12805), 1, + anon_sym_POUND, + ACTIONS(12857), 1, + aux_sym_unary_expression_token1, + STATE(1184), 1, + sym_call_expression, + STATE(1785), 1, + sym__signed_unary_expression, + STATE(1864), 1, + sym_member_expression, + STATE(13629), 1, + sym__callable_expression, + ACTIONS(12801), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1933), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19519), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19521), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1944), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [230993] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12819), 1, + sym_identifier, + ACTIONS(12821), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12823), 1, + anon_sym_DOT, + ACTIONS(12825), 1, + anon_sym_BANG, + ACTIONS(12827), 1, + anon_sym_LPAREN, + ACTIONS(12829), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12831), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12833), 1, + anon_sym_PLUS, + ACTIONS(12835), 1, + anon_sym_DASH, + ACTIONS(12837), 1, + aux_sym_addressof_expression_token1, + ACTIONS(12839), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12849), 1, + anon_sym_POUND, + ACTIONS(12863), 1, + aux_sym_unary_expression_token1, + STATE(1189), 1, + sym_call_expression, + STATE(1808), 1, + sym__signed_unary_expression, + STATE(1870), 1, + sym_member_expression, + STATE(13090), 1, + sym__callable_expression, + ACTIONS(12845), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(1937), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19523), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19525), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1945), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [231082] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19527), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19529), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10917), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [231171] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19531), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19533), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10918), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [231260] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19535), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19537), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10794), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [231349] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19539), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19541), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10795), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [231438] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19543), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19545), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10796), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [231527] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19547), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19549), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10797), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [231616] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19551), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19553), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10798), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [231705] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19555), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19557), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10799), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [231794] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19559), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19561), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10800), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [231883] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19563), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19565), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10801), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [231972] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19567), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19569), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10802), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [232061] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19571), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19573), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10803), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [232150] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19575), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19577), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10804), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [232239] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(12341), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19579), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19581), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10102), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [232328] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19583), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19585), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3850), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [232417] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11985), 1, + aux_sym_unary_expression_token1, + ACTIONS(14213), 1, + anon_sym_PLUS, + ACTIONS(14215), 1, + anon_sym_DASH, + ACTIONS(14221), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19587), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19589), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10571), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [232506] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19591), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19593), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10764), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [232595] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12135), 1, + aux_sym_unary_expression_token1, + ACTIONS(14679), 1, + anon_sym_PLUS, + ACTIONS(14681), 1, + anon_sym_DASH, + ACTIONS(14687), 1, + anon_sym_POUND, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19595), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19597), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3326), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [232684] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12499), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(14159), 1, + anon_sym_PLUS, + ACTIONS(14161), 1, + anon_sym_DASH, + ACTIONS(14167), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19599), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19601), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7385), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [232773] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11390), 1, + anon_sym_PLUS, + ACTIONS(11392), 1, + anon_sym_DASH, + ACTIONS(11398), 1, + anon_sym_POUND, + ACTIONS(12341), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19603), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19605), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10109), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [232862] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11981), 1, + anon_sym_PLUS, + ACTIONS(11983), 1, + anon_sym_DASH, + ACTIONS(11991), 1, + anon_sym_POUND, + ACTIONS(12491), 1, + aux_sym_unary_expression_token1, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19607), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19609), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10284), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [232951] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12635), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19611), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19613), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10131), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [233040] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12135), 1, + aux_sym_unary_expression_token1, + ACTIONS(14679), 1, + anon_sym_PLUS, + ACTIONS(14681), 1, + anon_sym_DASH, + ACTIONS(14687), 1, + anon_sym_POUND, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19615), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19617), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3248), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [233129] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12429), 1, + sym_identifier, + ACTIONS(12431), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12433), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12435), 1, + anon_sym_PLUS, + ACTIONS(12437), 1, + anon_sym_DASH, + ACTIONS(12445), 1, + anon_sym_POUND, + ACTIONS(12647), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(10199), 1, + sym_member_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19619), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19621), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10266), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [233218] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(742), 1, + anon_sym_BANG, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(768), 1, + aux_sym_as_type_clause_token2, + ACTIONS(806), 1, + anon_sym_PLUS, + ACTIONS(808), 1, + anon_sym_DASH, + ACTIONS(832), 1, + aux_sym_addressof_expression_token1, + ACTIONS(834), 1, + aux_sym_type_of_expression_token1, + ACTIONS(836), 1, + aux_sym_unary_expression_token1, + ACTIONS(846), 1, + anon_sym_POUND, + ACTIONS(6830), 1, + sym_identifier, + ACTIONS(6832), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6834), 1, + anon_sym_DOT, + ACTIONS(6836), 1, + aux_sym_dotted_type_expression_token1, + STATE(2540), 1, + sym_call_expression, + STATE(2829), 1, + sym_member_expression, + STATE(2908), 1, + sym__signed_unary_expression, + STATE(13367), 1, + sym__callable_expression, + ACTIONS(842), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19623), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19625), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(3758), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [233307] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5440), 1, + anon_sym_LPAREN, + ACTIONS(5442), 1, + aux_sym__for_header_token2, + ACTIONS(4607), 12, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4605), 24, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_byval_modifier_token1, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [233360] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19627), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19629), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10740), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [233449] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19631), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19633), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10687), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [233538] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11368), 1, + anon_sym_PLUS, + ACTIONS(11370), 1, + anon_sym_DASH, + ACTIONS(11376), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(12635), 1, + aux_sym_unary_expression_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19635), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19637), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10140), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [233627] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(149), 1, + anon_sym_PLUS, + ACTIONS(151), 1, + anon_sym_DASH, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(179), 1, + aux_sym_unary_expression_token1, + ACTIONS(189), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19639), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19641), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1969), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [233716] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_BANG, + ACTIONS(107), 1, + anon_sym_LPAREN, + ACTIONS(109), 1, + aux_sym_as_type_clause_token2, + ACTIONS(175), 1, + aux_sym_addressof_expression_token1, + ACTIONS(177), 1, + aux_sym_type_of_expression_token1, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5134), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5136), 1, + anon_sym_DOT, + ACTIONS(5138), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12303), 1, + aux_sym_unary_expression_token1, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_DASH, + ACTIONS(14097), 1, + anon_sym_POUND, + STATE(775), 1, + sym_call_expression, + STATE(792), 1, + sym_member_expression, + STATE(835), 1, + sym__signed_unary_expression, + STATE(13325), 1, + sym__callable_expression, + ACTIONS(185), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19643), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19645), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(1049), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [233805] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + anon_sym_LPAREN, + ACTIONS(1392), 1, + aux_sym_as_type_clause_token2, + ACTIONS(1458), 1, + aux_sym_addressof_expression_token1, + ACTIONS(1460), 1, + aux_sym_type_of_expression_token1, + ACTIONS(6748), 1, + sym_identifier, + ACTIONS(6750), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6752), 1, + anon_sym_DOT, + ACTIONS(6754), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(12453), 1, + aux_sym_unary_expression_token1, + ACTIONS(14861), 1, + anon_sym_PLUS, + ACTIONS(14863), 1, + anon_sym_DASH, + ACTIONS(14869), 1, + anon_sym_POUND, + STATE(2261), 1, + sym_call_expression, + STATE(2408), 1, + sym__signed_unary_expression, + STATE(2447), 1, + sym_member_expression, + STATE(13366), 1, + sym__callable_expression, + ACTIONS(1468), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19647), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19649), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2791), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [233894] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(429), 1, + anon_sym_BANG, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + aux_sym_as_type_clause_token2, + ACTIONS(501), 1, + anon_sym_PLUS, + ACTIONS(503), 1, + anon_sym_DASH, + ACTIONS(527), 1, + aux_sym_addressof_expression_token1, + ACTIONS(529), 1, + aux_sym_type_of_expression_token1, + ACTIONS(531), 1, + aux_sym_unary_expression_token1, + ACTIONS(541), 1, + anon_sym_POUND, + ACTIONS(5364), 1, + sym_identifier, + ACTIONS(5366), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(5368), 1, + anon_sym_DOT, + ACTIONS(5370), 1, + aux_sym_dotted_type_expression_token1, + STATE(876), 1, + sym_call_expression, + STATE(1199), 1, + sym__signed_unary_expression, + STATE(1406), 1, + sym_member_expression, + STATE(13634), 1, + sym__callable_expression, + ACTIONS(537), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19651), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19653), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2168), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [233983] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19655), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19657), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10327), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [234072] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(11985), 1, + aux_sym_unary_expression_token1, + ACTIONS(14213), 1, + anon_sym_PLUS, + ACTIONS(14215), 1, + anon_sym_DASH, + ACTIONS(14221), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19659), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19661), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10556), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [234161] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12871), 1, + aux_sym_unary_expression_token1, + ACTIONS(13677), 1, + anon_sym_DOT, + ACTIONS(13679), 1, + anon_sym_BANG, + ACTIONS(13681), 1, + anon_sym_LPAREN, + ACTIONS(13685), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13691), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13693), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13899), 1, + sym_identifier, + ACTIONS(13901), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13903), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13905), 1, + anon_sym_PLUS, + ACTIONS(13907), 1, + anon_sym_DASH, + ACTIONS(13913), 1, + anon_sym_POUND, + STATE(7340), 1, + sym_call_expression, + STATE(7363), 1, + sym_member_expression, + STATE(7373), 1, + sym__signed_unary_expression, + STATE(13358), 1, + sym__callable_expression, + ACTIONS(13697), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19663), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19665), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(7350), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [234250] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19667), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19669), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10789), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [234339] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19671), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19673), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10820), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [234428] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19675), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19677), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10825), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [234517] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(11975), 1, + sym_identifier, + ACTIONS(11977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(11979), 1, + aux_sym_as_type_clause_token2, + ACTIONS(12877), 1, + aux_sym_unary_expression_token1, + ACTIONS(13781), 1, + anon_sym_PLUS, + ACTIONS(13783), 1, + anon_sym_DASH, + ACTIONS(13789), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(10180), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19679), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19681), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10578), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [234606] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19683), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19685), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10835), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [234695] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19687), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19689), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10841), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [234784] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19691), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19693), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10845), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [234873] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19695), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19697), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10853), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [234962] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19699), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19701), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10857), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [235051] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19703), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19705), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10861), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [235140] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19707), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19709), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10865), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [235229] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19711), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19713), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10866), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [235318] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19715), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19717), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10867), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [235407] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19719), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19721), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10868), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [235496] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19723), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19725), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10869), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [235585] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19727), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19729), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10870), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [235674] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19731), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19733), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10871), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [235763] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19735), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19737), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10872), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [235852] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19739), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19741), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10873), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [235941] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19743), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19745), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10874), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [236030] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19747), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19749), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10875), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [236119] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19751), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19753), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10876), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [236208] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19755), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19757), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10877), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [236297] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19759), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19761), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10878), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [236386] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19763), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19765), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10879), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [236475] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19767), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19769), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10880), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [236564] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19771), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19773), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10881), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [236653] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19775), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19777), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10882), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [236742] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19779), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19781), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10883), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [236831] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19783), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19785), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10884), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [236920] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19787), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19789), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10885), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [237009] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19791), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19793), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10886), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [237098] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19795), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19797), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10887), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [237187] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19799), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19801), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10888), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [237276] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19803), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19805), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10889), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [237365] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19807), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19809), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10890), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [237454] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19811), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19813), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10891), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [237543] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19815), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19817), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10892), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [237632] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19819), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19821), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10893), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [237721] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19823), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19825), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10894), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [237810] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19827), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19829), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10895), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [237899] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19831), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19833), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10896), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [237988] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19835), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19837), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10897), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [238077] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19839), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19841), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10898), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [238166] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19843), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19845), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10899), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [238255] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19847), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19849), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10900), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [238344] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19851), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19853), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10901), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [238433] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19855), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19857), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10902), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [238522] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19859), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19861), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10903), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [238611] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19863), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19865), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10904), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [238700] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19867), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19869), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10905), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [238789] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19871), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19873), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10906), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [238878] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19875), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19877), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10907), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [238967] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19879), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19881), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10908), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [239056] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19883), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19885), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10909), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [239145] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19887), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19889), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10910), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [239234] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19891), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19893), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10911), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [239323] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19895), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19897), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10912), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [239412] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19899), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19901), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10913), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [239501] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19903), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19905), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10914), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [239590] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19907), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19909), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10915), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [239679] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(12015), 1, + aux_sym_unary_expression_token1, + ACTIONS(14509), 1, + anon_sym_PLUS, + ACTIONS(14511), 1, + anon_sym_DASH, + ACTIONS(14517), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19911), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19913), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10916), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [239768] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19915), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19917), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10454), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [239857] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19919), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19921), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10919), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [239946] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19923), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19925), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10455), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [240035] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19927), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19929), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10922), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [240124] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19931), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19933), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10456), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [240213] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19935), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19937), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10924), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [240302] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19939), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19941), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10457), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [240391] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19943), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19945), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10926), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [240480] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19947), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19949), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10458), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [240569] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19951), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19953), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10927), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [240658] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19955), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19957), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10459), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [240747] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19959), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19961), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10929), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [240836] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19963), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19965), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10460), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [240925] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19967), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19969), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10932), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [241014] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19971), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19973), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10461), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [241103] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19975), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19977), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10934), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [241192] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19979), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19981), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10462), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [241281] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19983), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19985), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10935), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [241370] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19987), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19989), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10463), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [241459] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19991), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19993), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10937), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [241548] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19995), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(19997), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10464), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [241637] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(19999), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20001), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10939), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [241726] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20003), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20005), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10465), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [241815] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20007), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20009), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10941), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [241904] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20011), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20013), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10466), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [241993] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20015), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20017), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10942), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [242082] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20019), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20021), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10467), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [242171] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20023), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20025), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10944), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [242260] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20027), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20029), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10468), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [242349] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20031), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20033), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10945), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [242438] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20035), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20037), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10469), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [242527] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20039), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20041), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10947), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [242616] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20043), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20045), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10470), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [242705] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + aux_sym_as_type_clause_token2, + ACTIONS(3590), 1, + anon_sym_PLUS, + ACTIONS(3592), 1, + anon_sym_DASH, + ACTIONS(3614), 1, + aux_sym_addressof_expression_token1, + ACTIONS(3616), 1, + aux_sym_type_of_expression_token1, + ACTIONS(3618), 1, + aux_sym_unary_expression_token1, + ACTIONS(3628), 1, + anon_sym_POUND, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(11366), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(11683), 1, + sym_identifier, + ACTIONS(11685), 1, + aux_sym_frm_property_statement_token1, + STATE(10053), 1, + sym_call_expression, + STATE(10065), 1, + sym_member_expression, + STATE(10093), 1, + sym__signed_unary_expression, + STATE(13478), 1, + sym__callable_expression, + ACTIONS(3624), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20047), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20049), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10472), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [242794] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20051), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20053), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10957), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [242883] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20055), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20057), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10958), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [242972] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20059), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20061), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10960), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [243061] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20063), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20065), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10962), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [243150] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20067), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20069), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10963), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [243239] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DOT, + ACTIONS(25), 1, + anon_sym_BANG, + ACTIONS(3984), 1, + sym_identifier, + ACTIONS(3992), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(3998), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + aux_sym_as_type_clause_token2, + ACTIONS(4004), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(4008), 1, + anon_sym_PLUS, + ACTIONS(4010), 1, + anon_sym_DASH, + ACTIONS(4012), 1, + aux_sym_addressof_expression_token1, + ACTIONS(4014), 1, + aux_sym_type_of_expression_token1, + ACTIONS(4016), 1, + aux_sym_unary_expression_token1, + ACTIONS(4024), 1, + anon_sym_POUND, + STATE(10052), 1, + sym_call_expression, + STATE(10054), 1, + sym_member_expression, + STATE(10078), 1, + sym__signed_unary_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4020), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20071), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20073), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(10735), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [243328] = 24, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(12375), 1, + aux_sym_unary_expression_token1, + ACTIONS(13473), 1, + sym_identifier, + ACTIONS(13475), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(13477), 1, + anon_sym_DOT, + ACTIONS(13479), 1, + anon_sym_BANG, + ACTIONS(13481), 1, + anon_sym_LPAREN, + ACTIONS(13483), 1, + aux_sym_as_type_clause_token2, + ACTIONS(13485), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(13487), 1, + anon_sym_PLUS, + ACTIONS(13489), 1, + anon_sym_DASH, + ACTIONS(13491), 1, + aux_sym_addressof_expression_token1, + ACTIONS(13493), 1, + aux_sym_type_of_expression_token1, + ACTIONS(13501), 1, + anon_sym_POUND, + STATE(2229), 1, + sym_call_expression, + STATE(2392), 1, + sym_member_expression, + STATE(2426), 1, + sym__signed_unary_expression, + STATE(13430), 1, + sym__callable_expression, + ACTIONS(13497), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(2358), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + ACTIONS(20075), 3, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20077), 3, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + STATE(2394), 11, + sym__primary_expression, + sym__expression, + sym_new_expression, + sym_addressof_expression, + sym_type_of_expression, + sym_parenthesized_expression, + sym_binary_expression, + sym_unary_expression, + sym__literal, + sym_boolean_literal, + sym_file_number_literal, + [243417] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4603), 13, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4601), 24, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_byval_modifier_token1, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [243465] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4623), 13, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4621), 24, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_byval_modifier_token1, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [243513] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5440), 1, + anon_sym_LPAREN, + ACTIONS(5442), 1, + aux_sym__for_header_token2, + ACTIONS(4607), 12, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4605), 23, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_byval_modifier_token1, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [243565] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4607), 13, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4605), 24, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_byval_modifier_token1, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [243613] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20079), 1, + anon_sym_DOT, + ACTIONS(20081), 1, + anon_sym_BANG, + ACTIONS(5555), 2, + aux_sym_else_fragment_token1, + anon_sym_DASH, + ACTIONS(4399), 3, + anon_sym_COLON, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4344), 4, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + ACTIONS(5558), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_string_literal, + sym_date_literal, + ACTIONS(4342), 7, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(5562), 14, + aux_sym_frm_property_statement_token1, + aux_sym_byval_modifier_token1, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [243673] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4611), 13, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4609), 24, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_byval_modifier_token1, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [243721] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4607), 13, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4605), 23, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_byval_modifier_token1, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [243768] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4603), 13, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4601), 23, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_byval_modifier_token1, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [243815] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4611), 13, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4609), 23, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_byval_modifier_token1, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [243862] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5555), 1, + anon_sym_DASH, + ACTIONS(20083), 1, + anon_sym_DOT, + ACTIONS(20085), 1, + anon_sym_BANG, + ACTIONS(4399), 3, + anon_sym_COLON, + anon_sym_PLUS, + sym_number_literal, + ACTIONS(4344), 4, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + ACTIONS(5558), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + sym_string_literal, + sym_date_literal, + ACTIONS(4342), 7, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(5562), 14, + aux_sym_frm_property_statement_token1, + aux_sym_byval_modifier_token1, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [243921] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4623), 13, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(4621), 23, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_byval_modifier_token1, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [243968] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4611), 33, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym__for_each_header_token2, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [244012] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4597), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4599), 33, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym__for_each_header_token2, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [244056] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4605), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4607), 33, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym__for_each_header_token2, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [244100] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4621), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4623), 33, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym__for_each_header_token2, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [244144] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4601), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4603), 33, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym__for_each_header_token2, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [244188] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4593), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4595), 33, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym__for_each_header_token2, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [244232] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4517), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4519), 33, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym__for_each_header_token2, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [244276] = 6, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4344), 29, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [244326] = 7, + ACTIONS(20089), 1, + anon_sym_DOT, + ACTIONS(20091), 1, + anon_sym_BANG, + ACTIONS(20093), 1, + anon_sym_LPAREN, + STATE(10071), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4344), 26, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [244377] = 5, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4344), 29, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [244424] = 5, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4437), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4439), 29, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [244471] = 5, + ACTIONS(20095), 1, + anon_sym_DOT, + STATE(10058), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4369), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4371), 30, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [244518] = 5, + ACTIONS(20097), 1, + anon_sym_DOT, + STATE(10057), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4362), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4364), 30, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [244565] = 5, + ACTIONS(20095), 1, + anon_sym_DOT, + STATE(10057), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4375), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4377), 30, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [244612] = 5, + ACTIONS(20100), 1, + anon_sym_DOT, + STATE(10059), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4362), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4364), 27, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [244658] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4621), 5, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4623), 28, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [244700] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4609), 5, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4611), 28, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [244742] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4362), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4364), 31, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [244784] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4593), 5, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4595), 28, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [244826] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4597), 5, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4599), 28, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [244868] = 6, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(20089), 1, + anon_sym_DOT, + ACTIONS(20091), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4344), 26, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [244916] = 6, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(20089), 1, + anon_sym_DOT, + ACTIONS(20091), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4437), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4439), 26, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [244964] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4601), 5, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4603), 28, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [245006] = 5, + ACTIONS(20103), 1, + anon_sym_DOT, + STATE(10069), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4369), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4371), 27, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [245052] = 5, + ACTIONS(20103), 1, + anon_sym_DOT, + STATE(10059), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4375), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4377), 27, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [245098] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4625), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4627), 31, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [245140] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4517), 5, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4519), 28, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [245182] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4605), 5, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4607), 28, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [245224] = 4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4638), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4635), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4615), 24, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [245267] = 4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4507), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4503), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4615), 24, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [245310] = 4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4632), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4629), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4505), 24, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [245353] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4625), 5, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4627), 27, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [245394] = 4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4507), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4503), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4505), 24, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [245437] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4613), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4615), 30, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [245478] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4362), 5, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4364), 27, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [245519] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4477), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4479), 30, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [245560] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4485), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4487), 30, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [245601] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4589), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4591), 30, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [245642] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4447), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4449), 30, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [245683] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4617), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4619), 30, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [245724] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4006), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4002), 30, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [245765] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4369), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4371), 30, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [245806] = 4, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4006), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4002), 29, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [245849] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4477), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4479), 27, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [245889] = 9, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 21, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [245941] = 4, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4006), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4002), 26, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [245983] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4617), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4619), 27, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [246023] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20119), 1, + anon_sym_LPAREN, + STATE(10137), 1, + sym_argument_list, + ACTIONS(20117), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4342), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4344), 15, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [246071] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4613), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4615), 27, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [246111] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4589), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4591), 27, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [246151] = 12, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 18, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [246209] = 4, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4483), 28, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [246251] = 6, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 25, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [246297] = 4, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4483), 28, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [246339] = 7, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 24, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [246387] = 8, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 22, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [246437] = 5, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4509), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4632), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4629), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4505), 21, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [246481] = 14, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4453), 16, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + aux_sym_comparison_operator_token1, + [246543] = 5, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4613), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4638), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4635), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4615), 21, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [246587] = 9, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4647), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4649), 21, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [246639] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4006), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4002), 27, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [246679] = 10, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 20, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [246733] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4369), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4371), 27, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [246773] = 11, + ACTIONS(20093), 1, + anon_sym_LPAREN, + ACTIONS(20131), 1, + anon_sym_DOT, + ACTIONS(20133), 1, + anon_sym_BANG, + STATE(8675), 1, + sym_comparison_operator, + STATE(10387), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4252), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4238), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4248), 11, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [246829] = 4, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4441), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4443), 28, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [246871] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 17, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [246931] = 5, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 26, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [246975] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4485), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4487), 27, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [247015] = 9, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4617), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4619), 21, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [247067] = 11, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 19, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [247123] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4447), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4449), 27, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [247163] = 4, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4483), 25, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [247204] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4609), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4611), 18, + sym_newline, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [247245] = 4, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4483), 25, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [247286] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4597), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4599), 18, + sym_newline, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [247327] = 5, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4481), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4483), 23, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [247370] = 6, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4481), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4483), 22, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [247415] = 7, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4481), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4483), 21, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [247462] = 9, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4481), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + ACTIONS(4483), 20, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [247513] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4399), 1, + anon_sym_LPAREN, + ACTIONS(20117), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4342), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4344), 15, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [247558] = 10, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(20147), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 20, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [247611] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20117), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4437), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4439), 16, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [247654] = 11, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(20147), 1, + anon_sym_AMP, + ACTIONS(20149), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 19, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [247709] = 12, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(20147), 1, + anon_sym_AMP, + ACTIONS(20149), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20151), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 18, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [247766] = 13, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(20147), 1, + anon_sym_AMP, + ACTIONS(20149), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20151), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20153), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 17, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [247825] = 14, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(20147), 1, + anon_sym_AMP, + ACTIONS(20149), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20151), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20153), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20155), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 16, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [247886] = 10, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(20147), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4647), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4649), 20, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [247939] = 5, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4507), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4509), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4503), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4505), 20, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [247982] = 5, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4507), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4613), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4503), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4615), 20, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [248025] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20157), 1, + anon_sym_DOT, + STATE(10136), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4369), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4371), 16, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [248070] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4621), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4623), 18, + sym_newline, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [248111] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20157), 1, + anon_sym_DOT, + STATE(10139), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4375), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4377), 16, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [248156] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4517), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4519), 18, + sym_newline, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [248197] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4601), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4603), 18, + sym_newline, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [248238] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20159), 1, + anon_sym_DOT, + STATE(10139), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4362), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4364), 16, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [248283] = 4, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4441), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4443), 25, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [248324] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20164), 1, + anon_sym_LPAREN, + STATE(10156), 1, + sym_argument_list, + ACTIONS(20162), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4342), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4344), 14, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [248371] = 7, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(20089), 1, + anon_sym_DOT, + ACTIONS(20091), 1, + anon_sym_BANG, + ACTIONS(20166), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 5, + anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4344), 21, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [248418] = 15, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(20147), 1, + anon_sym_AMP, + ACTIONS(20149), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20151), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20153), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20155), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20168), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4453), 15, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [248481] = 10, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(20147), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4617), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4619), 20, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [248534] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4605), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4607), 18, + sym_newline, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [248575] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4593), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4595), 18, + sym_newline, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [248616] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4745), 5, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4747), 24, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [248654] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4749), 5, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4751), 24, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [248692] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20170), 1, + anon_sym_DOT, + STATE(10149), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4362), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4364), 15, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [248736] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4399), 1, + anon_sym_LPAREN, + ACTIONS(20162), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4342), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4344), 14, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [248780] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20162), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4437), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4439), 15, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [248822] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4625), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4627), 17, + sym_newline, + anon_sym_EQ, + anon_sym_DOT, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [248862] = 5, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4517), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4671), 3, + anon_sym_DOT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4519), 7, + anon_sym_EQ, + anon_sym_LPAREN, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4673), 17, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_else_fragment_token1, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [248904] = 7, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(20173), 1, + anon_sym_DOT, + ACTIONS(20175), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4412), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + ACTIONS(4344), 17, + anon_sym_EQ, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [248950] = 4, + ACTIONS(4709), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4621), 5, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4623), 23, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [248990] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4517), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4519), 17, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [249030] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4364), 17, + sym_newline, + anon_sym_EQ, + anon_sym_DOT, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [249070] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20177), 1, + anon_sym_DOT, + STATE(10149), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4375), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4377), 15, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [249114] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(20162), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4342), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4344), 14, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [249158] = 7, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(20173), 1, + anon_sym_DOT, + ACTIONS(20175), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4422), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + ACTIONS(4344), 17, + anon_sym_EQ, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [249204] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4597), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4599), 17, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [249244] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4593), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4595), 17, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [249284] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4601), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4603), 17, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [249324] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4605), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4607), 17, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [249364] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20177), 1, + anon_sym_DOT, + STATE(10158), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4369), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4371), 15, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [249408] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4609), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4611), 17, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [249448] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4745), 5, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4747), 24, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [249486] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4621), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4623), 17, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [249526] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(20162), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4437), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4439), 14, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [249570] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4749), 5, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4751), 24, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [249608] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20179), 1, + anon_sym_CARET, + ACTIONS(4481), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4483), 15, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [249649] = 5, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(20181), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4006), 5, + anon_sym_COLON, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4002), 21, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + aux_sym_comparison_operator_token1, + sym_number_literal, + [249690] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20179), 1, + anon_sym_CARET, + ACTIONS(20185), 1, + anon_sym_BSLASH, + ACTIONS(20187), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20191), 1, + anon_sym_AMP, + ACTIONS(20183), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20189), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4649), 9, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4647), 11, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [249741] = 5, + ACTIONS(20089), 1, + anon_sym_DOT, + ACTIONS(20091), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4437), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4439), 22, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_number_literal, + [249782] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20179), 1, + anon_sym_CARET, + ACTIONS(20185), 1, + anon_sym_BSLASH, + ACTIONS(20187), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20183), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20189), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 10, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_AMP, + ACTIONS(4481), 11, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [249831] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4589), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4591), 16, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [249870] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20179), 1, + anon_sym_CARET, + ACTIONS(20183), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4481), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4483), 13, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [249913] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20179), 1, + anon_sym_CARET, + ACTIONS(20185), 1, + anon_sym_BSLASH, + ACTIONS(20187), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20191), 1, + anon_sym_AMP, + ACTIONS(20193), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20195), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20197), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20183), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20189), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4483), 9, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [249970] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4503), 4, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4507), 4, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4509), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4505), 12, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [250013] = 5, + ACTIONS(4399), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4344), 23, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [250054] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20179), 1, + anon_sym_CARET, + ACTIONS(20185), 1, + anon_sym_BSLASH, + ACTIONS(20187), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20191), 1, + anon_sym_AMP, + ACTIONS(20193), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20183), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20189), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 9, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4481), 10, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [250107] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20179), 1, + anon_sym_CARET, + ACTIONS(4481), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4483), 15, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [250148] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4617), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4619), 16, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [250187] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20179), 1, + anon_sym_CARET, + ACTIONS(20185), 1, + anon_sym_BSLASH, + ACTIONS(20187), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20191), 1, + anon_sym_AMP, + ACTIONS(20193), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20195), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20197), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20199), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20201), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20183), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20189), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4451), 6, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4453), 9, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [250248] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20179), 1, + anon_sym_CARET, + ACTIONS(20185), 1, + anon_sym_BSLASH, + ACTIONS(20187), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20191), 1, + anon_sym_AMP, + ACTIONS(20193), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20195), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20197), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20199), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20183), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20189), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 7, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4483), 9, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [250307] = 12, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20179), 1, + anon_sym_CARET, + ACTIONS(20185), 1, + anon_sym_BSLASH, + ACTIONS(20187), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20191), 1, + anon_sym_AMP, + ACTIONS(20193), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20195), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20183), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20189), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 9, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4483), 9, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [250362] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4629), 4, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4632), 4, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4509), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4505), 12, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [250405] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4635), 4, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4638), 4, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4613), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4615), 12, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [250448] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20179), 1, + anon_sym_CARET, + ACTIONS(20185), 1, + anon_sym_BSLASH, + ACTIONS(20187), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20191), 1, + anon_sym_AMP, + ACTIONS(20183), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20189), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4619), 9, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4617), 11, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [250499] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4625), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4627), 16, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [250538] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4485), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4487), 16, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [250577] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20179), 1, + anon_sym_CARET, + ACTIONS(20185), 1, + anon_sym_BSLASH, + ACTIONS(20187), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20191), 1, + anon_sym_AMP, + ACTIONS(20183), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20189), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 9, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4481), 11, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [250628] = 4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4437), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4439), 24, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [250667] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20179), 1, + anon_sym_CARET, + ACTIONS(20185), 1, + anon_sym_BSLASH, + ACTIONS(20183), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4481), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4483), 12, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [250712] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4447), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4449), 16, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [250751] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20179), 1, + anon_sym_CARET, + ACTIONS(20185), 1, + anon_sym_BSLASH, + ACTIONS(20187), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20183), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4481), 11, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4483), 12, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [250798] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3986), 1, + anon_sym_LPAREN, + ACTIONS(4006), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4002), 15, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [250839] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4369), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4371), 16, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [250878] = 6, + ACTIONS(4399), 1, + anon_sym_LPAREN, + ACTIONS(20089), 1, + anon_sym_DOT, + ACTIONS(20091), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4344), 21, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_number_literal, + [250921] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20179), 1, + anon_sym_CARET, + ACTIONS(4441), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4443), 15, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [250962] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4477), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4479), 16, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [251001] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4613), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4615), 16, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [251040] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4006), 12, + aux_sym_type_preprocessor_else_token1, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4002), 16, + sym_newline, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [251079] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4364), 16, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [251118] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4503), 4, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4507), 4, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4613), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4615), 12, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [251161] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20205), 1, + anon_sym_CARET, + ACTIONS(20203), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4481), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4483), 12, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [251203] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4485), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4487), 15, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [251241] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(4006), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4002), 14, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [251281] = 5, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4006), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4761), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + ACTIONS(4002), 17, + anon_sym_EQ, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [251321] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4589), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4591), 15, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [251359] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20205), 1, + anon_sym_CARET, + ACTIONS(4441), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4443), 14, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [251399] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20205), 1, + anon_sym_CARET, + ACTIONS(20207), 1, + anon_sym_BSLASH, + ACTIONS(20209), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20213), 1, + anon_sym_AMP, + ACTIONS(20203), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20211), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4619), 8, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4617), 11, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [251449] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20205), 1, + anon_sym_CARET, + ACTIONS(20207), 1, + anon_sym_BSLASH, + ACTIONS(20209), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20213), 1, + anon_sym_AMP, + ACTIONS(20215), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20217), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20219), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20221), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20223), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20203), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20211), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4451), 6, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4453), 8, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251509] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20205), 1, + anon_sym_CARET, + ACTIONS(4481), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4483), 14, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [251549] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20205), 1, + anon_sym_CARET, + ACTIONS(4481), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4483), 14, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [251589] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20205), 1, + anon_sym_CARET, + ACTIONS(20207), 1, + anon_sym_BSLASH, + ACTIONS(20203), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 11, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4481), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [251633] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20205), 1, + anon_sym_CARET, + ACTIONS(20207), 1, + anon_sym_BSLASH, + ACTIONS(20209), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20203), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4481), 11, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4483), 11, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [251679] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20205), 1, + anon_sym_CARET, + ACTIONS(20207), 1, + anon_sym_BSLASH, + ACTIONS(20209), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20203), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20211), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 9, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_AMP, + ACTIONS(4481), 11, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [251727] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20205), 1, + anon_sym_CARET, + ACTIONS(20207), 1, + anon_sym_BSLASH, + ACTIONS(20209), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20213), 1, + anon_sym_AMP, + ACTIONS(20203), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20211), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 8, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4481), 11, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [251777] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20205), 1, + anon_sym_CARET, + ACTIONS(20207), 1, + anon_sym_BSLASH, + ACTIONS(20209), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20213), 1, + anon_sym_AMP, + ACTIONS(20215), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20203), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20211), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 8, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4481), 10, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [251829] = 12, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20205), 1, + anon_sym_CARET, + ACTIONS(20207), 1, + anon_sym_BSLASH, + ACTIONS(20209), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20213), 1, + anon_sym_AMP, + ACTIONS(20215), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20217), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20203), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20211), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 8, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4481), 9, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [251883] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20205), 1, + anon_sym_CARET, + ACTIONS(20207), 1, + anon_sym_BSLASH, + ACTIONS(20209), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20213), 1, + anon_sym_AMP, + ACTIONS(20215), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20217), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20219), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20203), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20211), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 8, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4483), 8, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251939] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20205), 1, + anon_sym_CARET, + ACTIONS(20207), 1, + anon_sym_BSLASH, + ACTIONS(20209), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20213), 1, + anon_sym_AMP, + ACTIONS(20215), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20217), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20219), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20221), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20203), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20211), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 7, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4483), 8, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [251997] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20205), 1, + anon_sym_CARET, + ACTIONS(20207), 1, + anon_sym_BSLASH, + ACTIONS(20209), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20213), 1, + anon_sym_AMP, + ACTIONS(20203), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20211), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4649), 8, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4647), 11, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [252047] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4477), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4479), 15, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [252085] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4629), 4, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4632), 4, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4509), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4505), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [252127] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3986), 1, + anon_sym_LPAREN, + ACTIONS(4006), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4002), 14, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [252167] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4635), 4, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4638), 4, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4613), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4615), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [252209] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4613), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4615), 15, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [252247] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4006), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4002), 15, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [252285] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4503), 4, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4507), 4, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4509), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4505), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [252327] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4503), 4, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4507), 4, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4613), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4615), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [252369] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4369), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4371), 15, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [252407] = 6, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(20225), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4344), 21, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [252449] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4617), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4619), 15, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [252487] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4447), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4449), 15, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [252525] = 4, + ACTIONS(20227), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4441), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4443), 21, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_number_literal, + [252562] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20229), 1, + anon_sym_CARET, + ACTIONS(4481), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4483), 13, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [252601] = 4, + ACTIONS(3986), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4006), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4002), 23, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [252638] = 4, + ACTIONS(20231), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4483), 23, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [252675] = 4, + ACTIONS(20231), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4483), 23, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [252712] = 4, + ACTIONS(3986), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4006), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4002), 21, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_number_literal, + [252749] = 5, + ACTIONS(20231), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20233), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 21, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [252788] = 6, + ACTIONS(20231), 1, + anon_sym_CARET, + ACTIONS(20235), 1, + anon_sym_BSLASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20233), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 20, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [252829] = 9, + ACTIONS(20231), 1, + anon_sym_CARET, + ACTIONS(20235), 1, + anon_sym_BSLASH, + ACTIONS(20237), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20241), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4647), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20233), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4649), 16, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [252876] = 7, + ACTIONS(20231), 1, + anon_sym_CARET, + ACTIONS(20235), 1, + anon_sym_BSLASH, + ACTIONS(20237), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20233), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 19, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [252919] = 4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4006), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4761), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + ACTIONS(4002), 17, + anon_sym_EQ, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [252956] = 8, + ACTIONS(20231), 1, + anon_sym_CARET, + ACTIONS(20235), 1, + anon_sym_BSLASH, + ACTIONS(20237), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20233), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 17, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [253001] = 9, + ACTIONS(20231), 1, + anon_sym_CARET, + ACTIONS(20235), 1, + anon_sym_BSLASH, + ACTIONS(20237), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20241), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20233), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 16, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [253048] = 10, + ACTIONS(20231), 1, + anon_sym_CARET, + ACTIONS(20235), 1, + anon_sym_BSLASH, + ACTIONS(20237), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20241), 1, + anon_sym_AMP, + ACTIONS(20243), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20233), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 15, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [253097] = 4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4412), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + ACTIONS(4344), 17, + anon_sym_EQ, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [253134] = 4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4491), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + ACTIONS(4344), 17, + anon_sym_EQ, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [253171] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20229), 1, + anon_sym_CARET, + ACTIONS(20245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 11, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4481), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [253212] = 15, + ACTIONS(20227), 1, + anon_sym_CARET, + ACTIONS(20249), 1, + anon_sym_BSLASH, + ACTIONS(20251), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20253), 1, + anon_sym_PLUS, + ACTIONS(20255), 1, + anon_sym_DASH, + ACTIONS(20257), 1, + anon_sym_AMP, + ACTIONS(20259), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20261), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20263), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20265), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20267), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20247), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4453), 11, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + sym_number_literal, + [253271] = 4, + ACTIONS(20227), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4483), 21, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_number_literal, + [253308] = 4, + ACTIONS(20227), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4483), 21, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_number_literal, + [253345] = 5, + ACTIONS(20227), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20247), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4481), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4483), 19, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_number_literal, + [253384] = 6, + ACTIONS(20227), 1, + anon_sym_CARET, + ACTIONS(20249), 1, + anon_sym_BSLASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20247), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4481), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4483), 18, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_number_literal, + [253425] = 7, + ACTIONS(20227), 1, + anon_sym_CARET, + ACTIONS(20249), 1, + anon_sym_BSLASH, + ACTIONS(20251), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20247), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4481), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4483), 17, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_number_literal, + [253468] = 9, + ACTIONS(20227), 1, + anon_sym_CARET, + ACTIONS(20249), 1, + anon_sym_BSLASH, + ACTIONS(20251), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20253), 1, + anon_sym_PLUS, + ACTIONS(20255), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20247), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4481), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + ACTIONS(4483), 16, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_number_literal, + [253515] = 10, + ACTIONS(20227), 1, + anon_sym_CARET, + ACTIONS(20249), 1, + anon_sym_BSLASH, + ACTIONS(20251), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20253), 1, + anon_sym_PLUS, + ACTIONS(20255), 1, + anon_sym_DASH, + ACTIONS(20257), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20247), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 16, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_number_literal, + [253564] = 11, + ACTIONS(20227), 1, + anon_sym_CARET, + ACTIONS(20249), 1, + anon_sym_BSLASH, + ACTIONS(20251), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20253), 1, + anon_sym_PLUS, + ACTIONS(20255), 1, + anon_sym_DASH, + ACTIONS(20257), 1, + anon_sym_AMP, + ACTIONS(20259), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20247), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_number_literal, + [253615] = 12, + ACTIONS(20227), 1, + anon_sym_CARET, + ACTIONS(20249), 1, + anon_sym_BSLASH, + ACTIONS(20251), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20253), 1, + anon_sym_PLUS, + ACTIONS(20255), 1, + anon_sym_DASH, + ACTIONS(20257), 1, + anon_sym_AMP, + ACTIONS(20259), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20261), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20247), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 14, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_number_literal, + [253668] = 13, + ACTIONS(20227), 1, + anon_sym_CARET, + ACTIONS(20249), 1, + anon_sym_BSLASH, + ACTIONS(20251), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20253), 1, + anon_sym_PLUS, + ACTIONS(20255), 1, + anon_sym_DASH, + ACTIONS(20257), 1, + anon_sym_AMP, + ACTIONS(20259), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20261), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20263), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20247), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 13, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_number_literal, + [253723] = 14, + ACTIONS(20227), 1, + anon_sym_CARET, + ACTIONS(20249), 1, + anon_sym_BSLASH, + ACTIONS(20251), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20253), 1, + anon_sym_PLUS, + ACTIONS(20255), 1, + anon_sym_DASH, + ACTIONS(20257), 1, + anon_sym_AMP, + ACTIONS(20259), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20261), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20263), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20265), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20247), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 12, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_number_literal, + [253780] = 10, + ACTIONS(20227), 1, + anon_sym_CARET, + ACTIONS(20249), 1, + anon_sym_BSLASH, + ACTIONS(20251), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20253), 1, + anon_sym_PLUS, + ACTIONS(20255), 1, + anon_sym_DASH, + ACTIONS(20257), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4647), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20247), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4649), 16, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_number_literal, + [253829] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20229), 1, + anon_sym_CARET, + ACTIONS(4441), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4443), 13, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [253868] = 11, + ACTIONS(20231), 1, + anon_sym_CARET, + ACTIONS(20235), 1, + anon_sym_BSLASH, + ACTIONS(20237), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20241), 1, + anon_sym_AMP, + ACTIONS(20243), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20269), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20233), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 14, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [253919] = 12, + ACTIONS(20231), 1, + anon_sym_CARET, + ACTIONS(20235), 1, + anon_sym_BSLASH, + ACTIONS(20237), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20241), 1, + anon_sym_AMP, + ACTIONS(20243), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20269), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20271), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20233), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 13, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [253972] = 6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4507), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4509), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4501), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + ACTIONS(4503), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4505), 11, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [254013] = 13, + ACTIONS(20231), 1, + anon_sym_CARET, + ACTIONS(20235), 1, + anon_sym_BSLASH, + ACTIONS(20237), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20241), 1, + anon_sym_AMP, + ACTIONS(20243), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20269), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20271), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20273), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20233), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 12, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [254068] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20229), 1, + anon_sym_CARET, + ACTIONS(20275), 1, + anon_sym_BSLASH, + ACTIONS(20245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 10, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4481), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [254111] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20229), 1, + anon_sym_CARET, + ACTIONS(4481), 12, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4483), 13, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [254150] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20229), 1, + anon_sym_CARET, + ACTIONS(20275), 1, + anon_sym_BSLASH, + ACTIONS(20277), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 10, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4481), 11, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [254195] = 6, + ACTIONS(4629), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4507), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4509), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4503), 5, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4505), 16, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_else_fragment_token1, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [254236] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20229), 1, + anon_sym_CARET, + ACTIONS(20275), 1, + anon_sym_BSLASH, + ACTIONS(20277), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 8, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_AMP, + ACTIONS(4481), 11, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [254283] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20229), 1, + anon_sym_CARET, + ACTIONS(20275), 1, + anon_sym_BSLASH, + ACTIONS(20277), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20281), 1, + anon_sym_AMP, + ACTIONS(20245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 7, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4481), 11, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [254332] = 6, + ACTIONS(4635), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4507), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4613), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4503), 5, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4615), 16, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_else_fragment_token1, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [254373] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20229), 1, + anon_sym_CARET, + ACTIONS(20275), 1, + anon_sym_BSLASH, + ACTIONS(20277), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20281), 1, + anon_sym_AMP, + ACTIONS(20283), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 7, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4481), 10, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [254424] = 12, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20229), 1, + anon_sym_CARET, + ACTIONS(20275), 1, + anon_sym_BSLASH, + ACTIONS(20277), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20281), 1, + anon_sym_AMP, + ACTIONS(20283), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20285), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 7, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4481), 9, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [254477] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20229), 1, + anon_sym_CARET, + ACTIONS(20275), 1, + anon_sym_BSLASH, + ACTIONS(20277), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20281), 1, + anon_sym_AMP, + ACTIONS(20245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4619), 7, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4617), 11, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [254526] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20229), 1, + anon_sym_CARET, + ACTIONS(20275), 1, + anon_sym_BSLASH, + ACTIONS(20277), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20281), 1, + anon_sym_AMP, + ACTIONS(20283), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20285), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20287), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 7, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4481), 8, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [254581] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20229), 1, + anon_sym_CARET, + ACTIONS(20275), 1, + anon_sym_BSLASH, + ACTIONS(20277), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20281), 1, + anon_sym_AMP, + ACTIONS(20283), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20285), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20287), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20289), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 7, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4483), 7, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [254638] = 4, + ACTIONS(20231), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4441), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4443), 23, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [254675] = 9, + ACTIONS(20231), 1, + anon_sym_CARET, + ACTIONS(20235), 1, + anon_sym_BSLASH, + ACTIONS(20237), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20241), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4617), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20233), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4619), 16, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [254722] = 14, + ACTIONS(20231), 1, + anon_sym_CARET, + ACTIONS(20235), 1, + anon_sym_BSLASH, + ACTIONS(20237), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20241), 1, + anon_sym_AMP, + ACTIONS(20243), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20269), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20271), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20273), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20291), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20233), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4453), 11, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [254779] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20229), 1, + anon_sym_CARET, + ACTIONS(20275), 1, + anon_sym_BSLASH, + ACTIONS(20277), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20281), 1, + anon_sym_AMP, + ACTIONS(20283), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20285), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20287), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20289), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20293), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4451), 6, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_operator_token1, + sym_identifier, + ACTIONS(4453), 7, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [254838] = 10, + ACTIONS(20227), 1, + anon_sym_CARET, + ACTIONS(20249), 1, + anon_sym_BSLASH, + ACTIONS(20251), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20253), 1, + anon_sym_PLUS, + ACTIONS(20255), 1, + anon_sym_DASH, + ACTIONS(20257), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4617), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20247), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4619), 16, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_number_literal, + [254887] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20229), 1, + anon_sym_CARET, + ACTIONS(20275), 1, + anon_sym_BSLASH, + ACTIONS(20277), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20281), 1, + anon_sym_AMP, + ACTIONS(20245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4649), 7, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + aux_sym_type_preprocessor_if_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(4647), 11, + aux_sym_frm_begin_block_token2, + aux_sym_case_expression_token1, + anon_sym_LT, + anon_sym_GT, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + sym_identifier, + [254936] = 6, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6232), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4344), 19, + anon_sym_EQ, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [254976] = 6, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20175), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4344), 19, + anon_sym_EQ, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [255016] = 6, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5607), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4344), 19, + anon_sym_EQ, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [255056] = 5, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(20295), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4006), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4002), 21, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [255094] = 6, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6160), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4344), 19, + anon_sym_EQ, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [255134] = 6, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4426), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4344), 19, + anon_sym_EQ, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [255174] = 6, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5897), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4344), 19, + anon_sym_EQ, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [255214] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3628), 1, + anon_sym_POUND, + STATE(12183), 1, + sym_file_number_literal, + STATE(12236), 1, + sym__required_file_number, + ACTIONS(8314), 7, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(8312), 15, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + aux_sym_else_fragment_token1, + anon_sym_DASH, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + sym_identifier, + [255256] = 6, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5972), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4344), 19, + anon_sym_EQ, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [255296] = 6, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6137), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4344), 19, + anon_sym_EQ, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [255336] = 6, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6310), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4344), 19, + anon_sym_EQ, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [255376] = 6, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5038), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4344), 19, + anon_sym_EQ, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + aux_sym_comparison_operator_token1, + [255416] = 5, + ACTIONS(4635), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4507), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4503), 5, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4615), 16, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [255453] = 5, + ACTIONS(4629), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4507), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4503), 5, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4505), 16, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [255490] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3628), 1, + anon_sym_POUND, + STATE(12183), 1, + sym_file_number_literal, + STATE(12886), 1, + sym__required_file_number, + ACTIONS(8314), 7, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(8312), 14, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + anon_sym_DASH, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + sym_identifier, + [255531] = 3, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4483), 22, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [255563] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20299), 1, + sym_identifier, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20305), 1, + anon_sym_DOT, + ACTIONS(20307), 1, + anon_sym_BANG, + ACTIONS(20309), 1, + sym_string_literal, + STATE(7674), 1, + sym_member_expression, + STATE(12247), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(20311), 2, + sym_number_literal, + sym_date_literal, + ACTIONS(20313), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7676), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(7994), 4, + sym__frm_property_value, + sym_frm_blob_reference, + sym__literal, + sym_boolean_literal, + ACTIONS(20303), 5, + sym_frm_property_text, + sym_frm_quoted_property_text, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + [255619] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9082), 7, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(9080), 16, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + aux_sym_else_fragment_token1, + anon_sym_DASH, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [255653] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20299), 1, + sym_identifier, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20305), 1, + anon_sym_DOT, + ACTIONS(20307), 1, + anon_sym_BANG, + ACTIONS(20309), 1, + sym_string_literal, + STATE(7674), 1, + sym_member_expression, + STATE(12247), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(20313), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + ACTIONS(20317), 2, + sym_number_literal, + sym_date_literal, + STATE(7676), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(7976), 4, + sym__frm_property_value, + sym_frm_blob_reference, + sym__literal, + sym_boolean_literal, + ACTIONS(20315), 5, + sym_frm_property_text, + sym_frm_quoted_property_text, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + [255709] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9266), 7, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(9264), 16, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + aux_sym_else_fragment_token1, + anon_sym_DASH, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [255743] = 5, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 19, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [255779] = 6, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 18, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [255817] = 7, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 16, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [255857] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9278), 7, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(9276), 16, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + aux_sym_else_fragment_token1, + anon_sym_DASH, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [255891] = 8, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 15, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [255933] = 9, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 14, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [255977] = 10, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 13, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [256023] = 11, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 12, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [256071] = 12, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + aux_sym__print_output_call_binary_expression_token6, + [256121] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9050), 7, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(9048), 16, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + aux_sym_else_fragment_token1, + anon_sym_DASH, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [256155] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8990), 7, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(8988), 16, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + aux_sym_else_fragment_token1, + anon_sym_DASH, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [256189] = 3, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4483), 22, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [256221] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20337), 1, + sym_identifier, + ACTIONS(20341), 1, + anon_sym_DOT, + ACTIONS(20343), 1, + anon_sym_BANG, + ACTIONS(20345), 1, + sym_string_literal, + STATE(11438), 1, + sym_member_expression, + STATE(12198), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(20347), 2, + sym_number_literal, + sym_date_literal, + ACTIONS(20349), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(11413), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(11613), 4, + sym__frm_property_value, + sym_frm_blob_reference, + sym__literal, + sym_boolean_literal, + ACTIONS(20339), 5, + sym_frm_property_text, + sym_frm_quoted_property_text, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + [256277] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20351), 1, + sym_identifier, + ACTIONS(20355), 1, + anon_sym_DOT, + ACTIONS(20357), 1, + anon_sym_BANG, + ACTIONS(20359), 1, + sym_string_literal, + STATE(11642), 1, + sym_member_expression, + STATE(12186), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(20361), 2, + sym_number_literal, + sym_date_literal, + ACTIONS(20363), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(11495), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(11717), 4, + sym__frm_property_value, + sym_frm_blob_reference, + sym__literal, + sym_boolean_literal, + ACTIONS(20353), 5, + sym_frm_property_text, + sym_frm_quoted_property_text, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + [256333] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20351), 1, + sym_identifier, + ACTIONS(20355), 1, + anon_sym_DOT, + ACTIONS(20357), 1, + anon_sym_BANG, + ACTIONS(20359), 1, + sym_string_literal, + STATE(11642), 1, + sym_member_expression, + STATE(12186), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(20363), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + ACTIONS(20367), 2, + sym_number_literal, + sym_date_literal, + STATE(11495), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(11693), 4, + sym__frm_property_value, + sym_frm_blob_reference, + sym__literal, + sym_boolean_literal, + ACTIONS(20365), 5, + sym_frm_property_text, + sym_frm_quoted_property_text, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + [256389] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20337), 1, + sym_identifier, + ACTIONS(20341), 1, + anon_sym_DOT, + ACTIONS(20343), 1, + anon_sym_BANG, + ACTIONS(20345), 1, + sym_string_literal, + STATE(11438), 1, + sym_member_expression, + STATE(12198), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(20349), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + ACTIONS(20371), 2, + sym_number_literal, + sym_date_literal, + STATE(11413), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(11616), 4, + sym__frm_property_value, + sym_frm_blob_reference, + sym__literal, + sym_boolean_literal, + ACTIONS(20369), 5, + sym_frm_property_text, + sym_frm_quoted_property_text, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + [256445] = 4, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 20, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [256479] = 3, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4443), 22, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [256511] = 8, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4649), 15, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [256553] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4453), 10, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_array_bound_token1, + aux_sym__for_header_token1, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + [256605] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20377), 1, + anon_sym_LPAREN, + STATE(10347), 1, + sym_argument_list, + ACTIONS(20375), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4342), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4344), 11, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [256645] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20379), 1, + anon_sym_DOT, + STATE(10356), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4369), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4371), 12, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [256682] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20381), 1, + anon_sym_DOT, + STATE(10332), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4362), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4364), 12, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [256719] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4605), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4607), 14, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [256752] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4609), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4611), 14, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [256785] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9082), 7, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(9080), 15, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + anon_sym_DASH, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [256818] = 9, + ACTIONS(4481), 1, + anon_sym_AMP, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 14, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [256861] = 9, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4649), 14, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [256904] = 10, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 13, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [256949] = 4, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4483), 19, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [256982] = 11, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 12, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [257029] = 7, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 15, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [257068] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4621), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4623), 14, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [257101] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9266), 7, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(9264), 15, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + anon_sym_DASH, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [257134] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20375), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4437), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4439), 12, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [257169] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4601), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4603), 14, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [257202] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9278), 7, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(9276), 15, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + anon_sym_DASH, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [257235] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4517), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4519), 14, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [257268] = 12, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 11, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [257317] = 13, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 10, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [257368] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4597), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4599), 14, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [257401] = 9, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 14, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [257444] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9050), 7, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(9048), 15, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + anon_sym_DASH, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [257477] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8990), 7, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(8988), 15, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + anon_sym_DASH, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [257510] = 6, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 16, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [257547] = 5, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 17, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [257582] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20379), 1, + anon_sym_DOT, + STATE(10332), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4375), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4377), 12, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [257619] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4593), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4595), 14, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [257652] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4453), 9, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_SEMI, + sym_number_literal, + [257705] = 4, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4483), 19, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [257738] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20410), 1, + anon_sym_LPAREN, + STATE(10378), 1, + sym_argument_list, + ACTIONS(20408), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4342), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4344), 10, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [257777] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4399), 1, + anon_sym_LPAREN, + ACTIONS(20375), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4342), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4344), 11, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [257814] = 4, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4441), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4443), 19, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_array_bound_token1, + aux_sym_else_fragment_token1, + aux_sym__for_header_token2, + aux_sym_open_statement_token3, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [257847] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4593), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4595), 13, + sym_newline, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [257879] = 5, + ACTIONS(4629), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4507), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4503), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4505), 13, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [257913] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4601), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4603), 13, + sym_newline, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [257945] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4605), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4607), 13, + sym_newline, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [257977] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4609), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4611), 13, + sym_newline, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258009] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20412), 1, + anon_sym_DOT, + STATE(10370), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4369), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4371), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258045] = 9, + ACTIONS(4034), 1, + anon_sym_EQ, + ACTIONS(20079), 1, + anon_sym_DOT, + ACTIONS(20081), 1, + anon_sym_BANG, + ACTIONS(20093), 1, + anon_sym_LPAREN, + STATE(10071), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4028), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + ACTIONS(4344), 11, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [258087] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20412), 1, + anon_sym_DOT, + STATE(10372), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4375), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4377), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258123] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4621), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4623), 13, + sym_newline, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258155] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20414), 1, + anon_sym_DOT, + STATE(10372), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4362), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4364), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258191] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20408), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4437), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4439), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258225] = 5, + ACTIONS(4635), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4507), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4503), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + ACTIONS(4615), 13, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [258259] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4399), 1, + anon_sym_LPAREN, + ACTIONS(20408), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4342), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4344), 10, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258295] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4625), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4627), 13, + sym_newline, + anon_sym_DOT, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258327] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4364), 13, + sym_newline, + anon_sym_DOT, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258359] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4517), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4519), 13, + sym_newline, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258391] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(20408), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4437), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4439), 10, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258427] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4597), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4599), 13, + sym_newline, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_BANG, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258459] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(20408), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4342), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4344), 10, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258495] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20419), 6, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_PLUS, + sym_string_literal, + sym_number_literal, + sym_date_literal, + ACTIONS(20417), 15, + aux_sym_frm_property_statement_token1, + anon_sym_DOT, + aux_sym_as_type_clause_token2, + aux_sym_dotted_type_expression_token1, + anon_sym_DASH, + aux_sym_addressof_expression_token1, + aux_sym_type_of_expression_token1, + aux_sym_unary_expression_token1, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + anon_sym_POUND, + sym_identifier, + [258527] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20423), 1, + anon_sym_CARET, + ACTIONS(20425), 1, + anon_sym_BSLASH, + ACTIONS(20427), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20431), 1, + anon_sym_AMP, + ACTIONS(20433), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20421), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 5, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + ACTIONS(4481), 6, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [258572] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20423), 1, + anon_sym_CARET, + ACTIONS(20425), 1, + anon_sym_BSLASH, + ACTIONS(20427), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20431), 1, + anon_sym_AMP, + ACTIONS(20433), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20435), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20437), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20439), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20441), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(4451), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(20421), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4453), 5, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + [258625] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4447), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4449), 12, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258656] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4517), 3, + anon_sym_DOT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4519), 17, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_else_fragment_token1, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [258685] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5766), 3, + anon_sym_DOT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(5768), 17, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_else_fragment_token1, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [258714] = 12, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20423), 1, + anon_sym_CARET, + ACTIONS(20425), 1, + anon_sym_BSLASH, + ACTIONS(20427), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20431), 1, + anon_sym_AMP, + ACTIONS(20433), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20435), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20421), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 5, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4483), 5, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + [258761] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4625), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4627), 12, + sym_newline, + anon_sym_COLON, + anon_sym_DOT, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258792] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5766), 3, + anon_sym_DOT, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(5768), 17, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_STAR, + aux_sym_else_fragment_token1, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + anon_sym_SEMI, + sym_number_literal, + [258821] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4006), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4002), 12, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258852] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4364), 12, + sym_newline, + anon_sym_COLON, + anon_sym_DOT, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258883] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3986), 1, + anon_sym_LPAREN, + ACTIONS(4006), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4002), 11, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258916] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4477), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4479), 12, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [258947] = 5, + ACTIONS(6646), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3370), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(20443), 4, + aux_sym__for_header_token1, + aux_sym_do_statement_token1, + aux_sym_do_condition_token1, + aux_sym_with_statement_token1, + ACTIONS(3364), 13, + anon_sym_STAR, + aux_sym_else_fragment_token1, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [258980] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4589), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4591), 12, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [259011] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20423), 1, + anon_sym_CARET, + ACTIONS(20425), 1, + anon_sym_BSLASH, + ACTIONS(20427), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20431), 1, + anon_sym_AMP, + ACTIONS(20421), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4649), 5, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + ACTIONS(4647), 7, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [259054] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4369), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4371), 12, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [259085] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20423), 1, + anon_sym_CARET, + ACTIONS(20425), 1, + anon_sym_BSLASH, + ACTIONS(20427), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20431), 1, + anon_sym_AMP, + ACTIONS(20433), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20435), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20437), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20439), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20441), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(5775), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(20421), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5777), 5, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + [259138] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20423), 1, + anon_sym_CARET, + ACTIONS(20425), 1, + anon_sym_BSLASH, + ACTIONS(20427), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20431), 1, + anon_sym_AMP, + ACTIONS(20433), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20435), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20437), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20421), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 4, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4483), 5, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + [259187] = 9, + ACTIONS(4034), 1, + anon_sym_EQ, + ACTIONS(20083), 1, + anon_sym_DOT, + ACTIONS(20085), 1, + anon_sym_BANG, + ACTIONS(20093), 1, + anon_sym_LPAREN, + STATE(10071), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4028), 2, + anon_sym_COLON, + sym_number_literal, + ACTIONS(4342), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4344), 11, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [259228] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20423), 1, + anon_sym_CARET, + ACTIONS(20425), 1, + anon_sym_BSLASH, + ACTIONS(20427), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20431), 1, + anon_sym_AMP, + ACTIONS(20433), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20435), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20437), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20439), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20421), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4483), 5, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + [259279] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4613), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4615), 12, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [259310] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4485), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4487), 12, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [259341] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4617), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4619), 12, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [259372] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20179), 1, + anon_sym_CARET, + ACTIONS(20185), 1, + anon_sym_BSLASH, + ACTIONS(20187), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20191), 1, + anon_sym_AMP, + ACTIONS(20183), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20189), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4619), 5, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + ACTIONS(4617), 7, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [259415] = 6, + ACTIONS(20445), 1, + anon_sym_DOT, + ACTIONS(20447), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5861), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(5853), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + ACTIONS(5859), 11, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [259450] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20423), 1, + anon_sym_CARET, + ACTIONS(4481), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4483), 11, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [259483] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20423), 1, + anon_sym_CARET, + ACTIONS(4481), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4483), 11, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [259516] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20423), 1, + anon_sym_CARET, + ACTIONS(20421), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4481), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4483), 9, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [259551] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20423), 1, + anon_sym_CARET, + ACTIONS(20425), 1, + anon_sym_BSLASH, + ACTIONS(20421), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4481), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4483), 8, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [259588] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20423), 1, + anon_sym_CARET, + ACTIONS(4441), 8, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4443), 11, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [259621] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20423), 1, + anon_sym_CARET, + ACTIONS(20425), 1, + anon_sym_BSLASH, + ACTIONS(20427), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20421), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4481), 7, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4483), 8, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [259660] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20423), 1, + anon_sym_CARET, + ACTIONS(20425), 1, + anon_sym_BSLASH, + ACTIONS(20427), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20421), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 6, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_AMP, + ACTIONS(4481), 7, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [259701] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20423), 1, + anon_sym_CARET, + ACTIONS(20425), 1, + anon_sym_BSLASH, + ACTIONS(20427), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20431), 1, + anon_sym_AMP, + ACTIONS(20421), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20429), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 5, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + ACTIONS(4481), 7, + aux_sym_type_preprocessor_else_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [259744] = 9, + ACTIONS(20451), 1, + anon_sym_CARET, + ACTIONS(20453), 1, + anon_sym_BSLASH, + ACTIONS(20455), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20457), 1, + anon_sym_PLUS, + ACTIONS(20459), 1, + anon_sym_DASH, + ACTIONS(20461), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4649), 11, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [259784] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4485), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4487), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [259814] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20463), 1, + anon_sym_CARET, + ACTIONS(4441), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4443), 10, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [259846] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20205), 1, + anon_sym_CARET, + ACTIONS(20207), 1, + anon_sym_BSLASH, + ACTIONS(20209), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20213), 1, + anon_sym_AMP, + ACTIONS(20203), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20211), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4619), 4, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + ACTIONS(4617), 7, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [259888] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20463), 1, + anon_sym_CARET, + ACTIONS(20467), 1, + anon_sym_BSLASH, + ACTIONS(20469), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20473), 1, + anon_sym_AMP, + ACTIONS(20475), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20477), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20479), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20481), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20483), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(4451), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(20465), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20471), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4453), 4, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + [259940] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20463), 1, + anon_sym_CARET, + ACTIONS(4481), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4483), 10, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [259972] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20463), 1, + anon_sym_CARET, + ACTIONS(4481), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4483), 10, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [260004] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20463), 1, + anon_sym_CARET, + ACTIONS(20465), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4481), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4483), 8, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [260038] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20463), 1, + anon_sym_CARET, + ACTIONS(20467), 1, + anon_sym_BSLASH, + ACTIONS(20465), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 7, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4481), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [260074] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20463), 1, + anon_sym_CARET, + ACTIONS(20467), 1, + anon_sym_BSLASH, + ACTIONS(20469), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20465), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4481), 7, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4483), 7, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [260112] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20463), 1, + anon_sym_CARET, + ACTIONS(20467), 1, + anon_sym_BSLASH, + ACTIONS(20469), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20465), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20471), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 5, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_AMP, + ACTIONS(4481), 7, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [260152] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20463), 1, + anon_sym_CARET, + ACTIONS(20467), 1, + anon_sym_BSLASH, + ACTIONS(20469), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20473), 1, + anon_sym_AMP, + ACTIONS(20465), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20471), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 4, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + ACTIONS(4481), 7, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [260194] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20463), 1, + anon_sym_CARET, + ACTIONS(20467), 1, + anon_sym_BSLASH, + ACTIONS(20469), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20473), 1, + anon_sym_AMP, + ACTIONS(20475), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20465), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20471), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 4, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + ACTIONS(4481), 6, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [260238] = 12, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20463), 1, + anon_sym_CARET, + ACTIONS(20467), 1, + anon_sym_BSLASH, + ACTIONS(20469), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20473), 1, + anon_sym_AMP, + ACTIONS(20475), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20477), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20465), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20471), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 4, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + ACTIONS(4481), 5, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [260284] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20463), 1, + anon_sym_CARET, + ACTIONS(20467), 1, + anon_sym_BSLASH, + ACTIONS(20469), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20473), 1, + anon_sym_AMP, + ACTIONS(20475), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20477), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20479), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20465), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20471), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 4, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4483), 4, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + [260332] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20463), 1, + anon_sym_CARET, + ACTIONS(20467), 1, + anon_sym_BSLASH, + ACTIONS(20469), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20473), 1, + anon_sym_AMP, + ACTIONS(20475), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20477), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20479), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20481), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20465), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20471), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4483), 4, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + [260382] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20463), 1, + anon_sym_CARET, + ACTIONS(20467), 1, + anon_sym_BSLASH, + ACTIONS(20469), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20473), 1, + anon_sym_AMP, + ACTIONS(20465), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20471), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4649), 4, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + ACTIONS(4647), 7, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [260424] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4447), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4449), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [260454] = 14, + ACTIONS(20451), 1, + anon_sym_CARET, + ACTIONS(20453), 1, + anon_sym_BSLASH, + ACTIONS(20455), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20457), 1, + anon_sym_PLUS, + ACTIONS(20459), 1, + anon_sym_DASH, + ACTIONS(20461), 1, + anon_sym_AMP, + ACTIONS(20485), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20487), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20489), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20491), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20493), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5777), 6, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + sym_number_literal, + [260504] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4613), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4615), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [260534] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4617), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4619), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [260564] = 4, + ACTIONS(20451), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4441), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4443), 16, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_else_fragment_token1, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [260594] = 14, + ACTIONS(20451), 1, + anon_sym_CARET, + ACTIONS(20453), 1, + anon_sym_BSLASH, + ACTIONS(20455), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20457), 1, + anon_sym_PLUS, + ACTIONS(20459), 1, + anon_sym_DASH, + ACTIONS(20461), 1, + anon_sym_AMP, + ACTIONS(20485), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20487), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20489), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20491), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20493), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4453), 6, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + sym_number_literal, + [260644] = 4, + ACTIONS(20451), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4483), 16, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_else_fragment_token1, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [260674] = 4, + ACTIONS(20451), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4483), 16, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + aux_sym_else_fragment_token1, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [260704] = 5, + ACTIONS(20451), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(20449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 14, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [260736] = 6, + ACTIONS(20451), 1, + anon_sym_CARET, + ACTIONS(20453), 1, + anon_sym_BSLASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(20449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 13, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [260770] = 7, + ACTIONS(20451), 1, + anon_sym_CARET, + ACTIONS(20453), 1, + anon_sym_BSLASH, + ACTIONS(20455), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4481), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(20449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 12, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [260806] = 9, + ACTIONS(4481), 1, + anon_sym_AMP, + ACTIONS(20451), 1, + anon_sym_CARET, + ACTIONS(20453), 1, + anon_sym_BSLASH, + ACTIONS(20455), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20457), 1, + anon_sym_PLUS, + ACTIONS(20459), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 11, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [260846] = 9, + ACTIONS(20451), 1, + anon_sym_CARET, + ACTIONS(20453), 1, + anon_sym_BSLASH, + ACTIONS(20455), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20457), 1, + anon_sym_PLUS, + ACTIONS(20459), 1, + anon_sym_DASH, + ACTIONS(20461), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 11, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [260886] = 10, + ACTIONS(20451), 1, + anon_sym_CARET, + ACTIONS(20453), 1, + anon_sym_BSLASH, + ACTIONS(20455), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20457), 1, + anon_sym_PLUS, + ACTIONS(20459), 1, + anon_sym_DASH, + ACTIONS(20461), 1, + anon_sym_AMP, + ACTIONS(20485), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 10, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [260928] = 11, + ACTIONS(20451), 1, + anon_sym_CARET, + ACTIONS(20453), 1, + anon_sym_BSLASH, + ACTIONS(20455), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20457), 1, + anon_sym_PLUS, + ACTIONS(20459), 1, + anon_sym_DASH, + ACTIONS(20461), 1, + anon_sym_AMP, + ACTIONS(20485), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20487), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 9, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [260972] = 12, + ACTIONS(20451), 1, + anon_sym_CARET, + ACTIONS(20453), 1, + anon_sym_BSLASH, + ACTIONS(20455), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20457), 1, + anon_sym_PLUS, + ACTIONS(20459), 1, + anon_sym_DASH, + ACTIONS(20461), 1, + anon_sym_AMP, + ACTIONS(20485), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20487), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20489), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 8, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [261018] = 13, + ACTIONS(20451), 1, + anon_sym_CARET, + ACTIONS(20453), 1, + anon_sym_BSLASH, + ACTIONS(20455), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20457), 1, + anon_sym_PLUS, + ACTIONS(20459), 1, + anon_sym_DASH, + ACTIONS(20461), 1, + anon_sym_AMP, + ACTIONS(20485), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20487), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20489), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20491), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 7, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [261066] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(4006), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4002), 10, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [261098] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4006), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4002), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [261128] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4477), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4479), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [261158] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4369), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4371), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [261188] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20495), 1, + sym_newline, + ACTIONS(20497), 1, + anon_sym_COLON, + ACTIONS(20499), 1, + sym_number_literal, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12964), 1, + sym_single_line_block, + STATE(14831), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [261248] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20501), 1, + sym_newline, + ACTIONS(20503), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12965), 1, + sym_single_line_block, + STATE(14840), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [261308] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20505), 1, + sym_newline, + ACTIONS(20507), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12975), 1, + sym_single_line_block, + STATE(14884), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [261368] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20509), 1, + sym_newline, + ACTIONS(20511), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12978), 1, + sym_single_line_block, + STATE(14892), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [261428] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20513), 1, + sym_newline, + ACTIONS(20515), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12981), 1, + sym_single_line_block, + STATE(14909), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [261488] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20517), 1, + sym_newline, + ACTIONS(20519), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12983), 1, + sym_single_line_block, + STATE(14917), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [261548] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20521), 1, + sym_newline, + ACTIONS(20523), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12991), 1, + sym_single_line_block, + STATE(14934), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [261608] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20525), 1, + sym_newline, + ACTIONS(20527), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12992), 1, + sym_single_line_block, + STATE(14942), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [261668] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20529), 1, + sym_newline, + ACTIONS(20531), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12997), 1, + sym_single_line_block, + STATE(14959), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [261728] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20533), 1, + sym_newline, + ACTIONS(20535), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(13000), 1, + sym_single_line_block, + STATE(14967), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [261788] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20537), 1, + sym_newline, + ACTIONS(20539), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(13004), 1, + sym_single_line_block, + STATE(14984), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [261848] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20541), 1, + sym_newline, + ACTIONS(20543), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(13007), 1, + sym_single_line_block, + STATE(14992), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [261908] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20545), 1, + sym_newline, + ACTIONS(20547), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(13012), 1, + sym_single_line_block, + STATE(15009), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [261968] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20549), 1, + sym_newline, + ACTIONS(20551), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(13015), 1, + sym_single_line_block, + STATE(15017), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [262028] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20553), 1, + sym_newline, + ACTIONS(20555), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(13019), 1, + sym_single_line_block, + STATE(15033), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [262088] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20557), 1, + sym_newline, + ACTIONS(20559), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(13020), 1, + sym_single_line_block, + STATE(15041), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [262148] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20561), 1, + sym_newline, + ACTIONS(20563), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(13024), 1, + sym_single_line_block, + STATE(15053), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [262208] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3986), 1, + anon_sym_LPAREN, + ACTIONS(4006), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4002), 10, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [262240] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20565), 1, + sym_newline, + ACTIONS(20567), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(13027), 1, + sym_single_line_block, + STATE(15060), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [262300] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20463), 1, + anon_sym_CARET, + ACTIONS(20467), 1, + anon_sym_BSLASH, + ACTIONS(20469), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20473), 1, + anon_sym_AMP, + ACTIONS(20475), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20477), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20479), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20481), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20483), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(5775), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(20465), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20471), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5777), 4, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + [262352] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20569), 1, + sym_newline, + ACTIONS(20571), 1, + anon_sym_COLON, + STATE(12469), 1, + sym_single_line_block, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(14817), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [262412] = 19, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(20573), 1, + sym_newline, + ACTIONS(20575), 1, + anon_sym_COLON, + STATE(12723), 1, + sym_single_line_block, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(13882), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + [262472] = 16, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(11781), 1, + aux_sym_print_argument_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20577), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(5568), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [262526] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4589), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4591), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [262556] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5811), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [262605] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20581), 1, + anon_sym_CARET, + ACTIONS(20583), 1, + anon_sym_BSLASH, + ACTIONS(20585), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20589), 1, + anon_sym_AMP, + ACTIONS(20591), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20579), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20587), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + ACTIONS(4481), 6, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [262648] = 12, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(20147), 1, + anon_sym_AMP, + ACTIONS(20153), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20155), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20168), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5629), 7, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + anon_sym_SEMI, + sym_number_literal, + [262693] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4649), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [262742] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20581), 1, + anon_sym_CARET, + ACTIONS(20583), 1, + anon_sym_BSLASH, + ACTIONS(20579), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 6, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4481), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [262777] = 14, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(20147), 1, + anon_sym_AMP, + ACTIONS(20149), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20151), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20153), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20155), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20168), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5718), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [262826] = 14, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(20147), 1, + anon_sym_AMP, + ACTIONS(20153), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20155), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20168), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20593), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20595), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5871), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [262875] = 12, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20581), 1, + anon_sym_CARET, + ACTIONS(20583), 1, + anon_sym_BSLASH, + ACTIONS(20585), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20589), 1, + anon_sym_AMP, + ACTIONS(20591), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20597), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20579), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20587), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + ACTIONS(4481), 5, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [262920] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20581), 1, + anon_sym_CARET, + ACTIONS(20583), 1, + anon_sym_BSLASH, + ACTIONS(20585), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20589), 1, + anon_sym_AMP, + ACTIONS(20591), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20597), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20599), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20601), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20579), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20587), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4481), 3, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4483), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [262969] = 4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4509), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4412), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + ACTIONS(4505), 11, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [262998] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20581), 1, + anon_sym_CARET, + ACTIONS(20583), 1, + anon_sym_BSLASH, + ACTIONS(20585), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20589), 1, + anon_sym_AMP, + ACTIONS(20591), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20597), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20599), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20601), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20603), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(4451), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(20579), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20587), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4453), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [263049] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20581), 1, + anon_sym_CARET, + ACTIONS(20579), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 7, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4481), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [263082] = 14, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(20147), 1, + anon_sym_AMP, + ACTIONS(20153), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20155), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20168), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20593), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20595), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5701), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [263131] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5915), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + aux_sym_open_statement_token3, + sym_number_literal, + [263180] = 14, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(20147), 1, + anon_sym_AMP, + ACTIONS(20153), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20155), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20168), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20593), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20595), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5754), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [263229] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5811), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [263278] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5811), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [263327] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5811), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [263376] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20581), 1, + anon_sym_CARET, + ACTIONS(4481), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4483), 9, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [263407] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20229), 1, + anon_sym_CARET, + ACTIONS(20275), 1, + anon_sym_BSLASH, + ACTIONS(20277), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20281), 1, + anon_sym_AMP, + ACTIONS(20245), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20279), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4619), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + ACTIONS(4617), 7, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [263448] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20581), 1, + anon_sym_CARET, + ACTIONS(20583), 1, + anon_sym_BSLASH, + ACTIONS(20585), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20589), 1, + anon_sym_AMP, + ACTIONS(20591), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20597), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20599), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20579), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20587), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + ACTIONS(4481), 4, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [263495] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5811), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [263544] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5811), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [263593] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5811), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [263642] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5811), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [263691] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20581), 1, + anon_sym_CARET, + ACTIONS(20583), 1, + anon_sym_BSLASH, + ACTIONS(20585), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20579), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 6, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4481), 7, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [263728] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5811), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [263777] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5811), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [263826] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5823), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [263875] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20581), 1, + anon_sym_CARET, + ACTIONS(20583), 1, + anon_sym_BSLASH, + ACTIONS(20585), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20589), 1, + anon_sym_AMP, + ACTIONS(20591), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20597), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20599), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20601), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20603), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20579), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20587), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(20605), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(20607), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [263926] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20581), 1, + anon_sym_CARET, + ACTIONS(20583), 1, + anon_sym_BSLASH, + ACTIONS(20585), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20579), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20587), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 4, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_AMP, + ACTIONS(4481), 7, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [263965] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5843), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [264014] = 13, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(20147), 1, + anon_sym_AMP, + ACTIONS(20149), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20153), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20155), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20168), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5629), 6, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token3, + anon_sym_SEMI, + sym_number_literal, + [264061] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20581), 1, + anon_sym_CARET, + ACTIONS(20583), 1, + anon_sym_BSLASH, + ACTIONS(20585), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20589), 1, + anon_sym_AMP, + ACTIONS(20579), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20587), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4649), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + ACTIONS(4647), 7, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [264102] = 4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4342), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(5915), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + aux_sym_open_statement_token3, + sym_number_literal, + ACTIONS(4344), 11, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [264131] = 12, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4649), 7, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + anon_sym_SEMI, + sym_number_literal, + [264176] = 5, + ACTIONS(6089), 1, + anon_sym_EQ, + ACTIONS(20609), 1, + aux_sym_file_mode_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4006), 2, + anon_sym_DASH, + anon_sym_AMP, + ACTIONS(4002), 14, + anon_sym_COLON, + anon_sym_STAR, + aux_sym_else_fragment_token1, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [264207] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20581), 1, + anon_sym_CARET, + ACTIONS(4481), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4483), 9, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [264238] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20581), 1, + anon_sym_CARET, + ACTIONS(20583), 1, + anon_sym_BSLASH, + ACTIONS(20585), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20589), 1, + anon_sym_AMP, + ACTIONS(20579), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20587), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + ACTIONS(4481), 7, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + [264279] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20581), 1, + anon_sym_CARET, + ACTIONS(4441), 8, + aux_sym_frm_begin_block_token2, + aux_sym__print_output_call_binary_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_identifier, + ACTIONS(4443), 9, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + [264310] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5811), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [264359] = 15, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20613), 1, + aux_sym__for_header_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20611), 3, + sym_newline, + anon_sym_COLON, + sym_number_literal, + [264409] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20615), 1, + sym_identifier, + ACTIONS(20617), 1, + sym_newline, + ACTIONS(20619), 1, + aux_sym_frm_begin_block_token1, + ACTIONS(20621), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(20623), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(20625), 1, + aux_sym_frm_property_statement_token1, + STATE(12245), 1, + sym_call_expression, + STATE(12250), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10552), 4, + sym_frm_begin_block, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_block_repeat1, + [264457] = 4, + ACTIONS(20629), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 14, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [264485] = 5, + ACTIONS(20629), 1, + anon_sym_CARET, + ACTIONS(20631), 1, + anon_sym_BSLASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 13, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [264515] = 14, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20635), 1, + aux_sym_array_bound_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(20633), 3, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + [264563] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20637), 1, + sym_identifier, + ACTIONS(20639), 1, + aux_sym_as_type_clause_token2, + STATE(10086), 1, + sym_dotted_type_expression, + STATE(12047), 1, + sym_type_expression, + ACTIONS(20641), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [264597] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20643), 1, + sym_identifier, + ACTIONS(20645), 1, + aux_sym_as_type_clause_token2, + STATE(4888), 1, + sym_type_expression, + STATE(5473), 1, + sym_dotted_type_expression, + ACTIONS(20647), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [264631] = 6, + ACTIONS(20629), 1, + anon_sym_CARET, + ACTIONS(20631), 1, + anon_sym_BSLASH, + ACTIONS(20649), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 12, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [264663] = 7, + ACTIONS(20629), 1, + anon_sym_CARET, + ACTIONS(20631), 1, + anon_sym_BSLASH, + ACTIONS(20649), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 10, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [264697] = 8, + ACTIONS(20629), 1, + anon_sym_CARET, + ACTIONS(20631), 1, + anon_sym_BSLASH, + ACTIONS(20649), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20653), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [264733] = 9, + ACTIONS(20629), 1, + anon_sym_CARET, + ACTIONS(20631), 1, + anon_sym_BSLASH, + ACTIONS(20649), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20653), 1, + anon_sym_AMP, + ACTIONS(20655), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 8, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [264771] = 10, + ACTIONS(20629), 1, + anon_sym_CARET, + ACTIONS(20631), 1, + anon_sym_BSLASH, + ACTIONS(20649), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20653), 1, + anon_sym_AMP, + ACTIONS(20655), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20657), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [264811] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20615), 1, + sym_identifier, + ACTIONS(20619), 1, + aux_sym_frm_begin_block_token1, + ACTIONS(20623), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(20625), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20659), 1, + sym_newline, + ACTIONS(20661), 1, + aux_sym_frm_begin_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12250), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10547), 4, + sym_frm_begin_block, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_block_repeat1, + [264859] = 11, + ACTIONS(20629), 1, + anon_sym_CARET, + ACTIONS(20631), 1, + anon_sym_BSLASH, + ACTIONS(20649), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20653), 1, + anon_sym_AMP, + ACTIONS(20655), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20657), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20663), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [264901] = 12, + ACTIONS(20629), 1, + anon_sym_CARET, + ACTIONS(20631), 1, + anon_sym_BSLASH, + ACTIONS(20649), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20653), 1, + anon_sym_AMP, + ACTIONS(20655), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20657), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20663), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20665), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__print_output_call_binary_expression_token6, + [264945] = 8, + ACTIONS(20629), 1, + anon_sym_CARET, + ACTIONS(20631), 1, + anon_sym_BSLASH, + ACTIONS(20649), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20653), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4649), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [264981] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20667), 1, + sym_identifier, + ACTIONS(20669), 1, + aux_sym_as_type_clause_token2, + STATE(7553), 1, + sym_type_expression, + STATE(7575), 1, + sym_dotted_type_expression, + ACTIONS(20671), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [265015] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20615), 1, + sym_identifier, + ACTIONS(20619), 1, + aux_sym_frm_begin_block_token1, + ACTIONS(20623), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(20625), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20673), 1, + sym_newline, + ACTIONS(20675), 1, + aux_sym_frm_begin_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12250), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10520), 4, + sym_frm_begin_block, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_block_repeat1, + [265063] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20677), 1, + sym_identifier, + ACTIONS(20679), 1, + aux_sym_as_type_clause_token2, + STATE(4661), 1, + sym_type_expression, + STATE(5070), 1, + sym_dotted_type_expression, + ACTIONS(20681), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [265097] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20683), 1, + sym_identifier, + ACTIONS(20685), 1, + aux_sym_as_type_clause_token2, + STATE(3183), 1, + sym_type_expression, + STATE(3830), 1, + sym_dotted_type_expression, + ACTIONS(20687), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [265131] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20689), 1, + sym_identifier, + ACTIONS(20691), 1, + aux_sym_as_type_clause_token2, + STATE(4400), 1, + sym_type_expression, + STATE(4631), 1, + sym_dotted_type_expression, + ACTIONS(20693), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [265165] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20695), 1, + sym_identifier, + ACTIONS(20697), 1, + aux_sym_as_type_clause_token2, + STATE(4637), 1, + sym_type_expression, + STATE(5050), 1, + sym_dotted_type_expression, + ACTIONS(20699), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [265199] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20615), 1, + sym_identifier, + ACTIONS(20617), 1, + sym_newline, + ACTIONS(20619), 1, + aux_sym_frm_begin_block_token1, + ACTIONS(20623), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(20625), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20701), 1, + aux_sym_frm_begin_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12250), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10552), 4, + sym_frm_begin_block, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_block_repeat1, + [265247] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20615), 1, + sym_identifier, + ACTIONS(20617), 1, + sym_newline, + ACTIONS(20619), 1, + aux_sym_frm_begin_block_token1, + ACTIONS(20623), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(20625), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20703), 1, + aux_sym_frm_begin_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12250), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10552), 4, + sym_frm_begin_block, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_block_repeat1, + [265295] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20705), 1, + sym_identifier, + ACTIONS(20707), 1, + aux_sym_as_type_clause_token2, + STATE(2440), 1, + sym_type_expression, + STATE(3345), 1, + sym_dotted_type_expression, + ACTIONS(20709), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [265329] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20711), 1, + sym_identifier, + ACTIONS(20713), 1, + aux_sym_as_type_clause_token2, + STATE(4622), 1, + sym_type_expression, + STATE(4952), 1, + sym_dotted_type_expression, + ACTIONS(20715), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [265363] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20615), 1, + sym_identifier, + ACTIONS(20619), 1, + aux_sym_frm_begin_block_token1, + ACTIONS(20623), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(20625), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20717), 1, + sym_newline, + ACTIONS(20719), 1, + aux_sym_frm_begin_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12250), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10557), 4, + sym_frm_begin_block, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_block_repeat1, + [265411] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20615), 1, + sym_identifier, + ACTIONS(20617), 1, + sym_newline, + ACTIONS(20619), 1, + aux_sym_frm_begin_block_token1, + ACTIONS(20623), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(20625), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20721), 1, + aux_sym_frm_begin_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12250), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10552), 4, + sym_frm_begin_block, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_block_repeat1, + [265459] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20615), 1, + sym_identifier, + ACTIONS(20617), 1, + sym_newline, + ACTIONS(20619), 1, + aux_sym_frm_begin_block_token1, + ACTIONS(20623), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(20625), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20723), 1, + aux_sym_frm_begin_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12250), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10552), 4, + sym_frm_begin_block, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_block_repeat1, + [265507] = 15, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20725), 1, + aux_sym_array_bound_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6141), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [265557] = 3, + ACTIONS(20629), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4483), 16, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [265583] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20615), 1, + sym_identifier, + ACTIONS(20619), 1, + aux_sym_frm_begin_block_token1, + ACTIONS(20623), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(20625), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20727), 1, + sym_newline, + ACTIONS(20729), 1, + aux_sym_frm_begin_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12250), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10566), 4, + sym_frm_begin_block, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_block_repeat1, + [265631] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20731), 1, + sym_identifier, + ACTIONS(20733), 1, + aux_sym_as_type_clause_token2, + STATE(11164), 1, + sym_type_expression, + STATE(11619), 1, + sym_dotted_type_expression, + ACTIONS(20735), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [265665] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20737), 1, + sym_identifier, + ACTIONS(20740), 1, + sym_newline, + ACTIONS(20743), 1, + aux_sym_frm_begin_block_token1, + ACTIONS(20746), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(20748), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(20751), 1, + aux_sym_frm_property_statement_token1, + STATE(12245), 1, + sym_call_expression, + STATE(12250), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(20754), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10552), 4, + sym_frm_begin_block, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_block_repeat1, + [265713] = 14, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(20147), 1, + anon_sym_AMP, + ACTIONS(20149), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20151), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20153), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20155), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20168), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6119), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [265761] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20757), 1, + sym_identifier, + ACTIONS(20759), 1, + aux_sym_as_type_clause_token2, + STATE(11548), 1, + sym_type_expression, + STATE(11706), 1, + sym_dotted_type_expression, + ACTIONS(20761), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [265795] = 15, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20765), 1, + aux_sym__for_header_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20763), 3, + sym_newline, + anon_sym_COLON, + sym_number_literal, + [265845] = 3, + ACTIONS(20629), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4443), 16, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [265871] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20615), 1, + sym_identifier, + ACTIONS(20617), 1, + sym_newline, + ACTIONS(20619), 1, + aux_sym_frm_begin_block_token1, + ACTIONS(20623), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(20625), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20767), 1, + aux_sym_frm_begin_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12250), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10552), 4, + sym_frm_begin_block, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_block_repeat1, + [265919] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20615), 1, + sym_identifier, + ACTIONS(20619), 1, + aux_sym_frm_begin_block_token1, + ACTIONS(20623), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(20625), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20769), 1, + sym_newline, + ACTIONS(20771), 1, + aux_sym_frm_begin_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12250), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10542), 4, + sym_frm_begin_block, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_block_repeat1, + [265967] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20615), 1, + sym_identifier, + ACTIONS(20619), 1, + aux_sym_frm_begin_block_token1, + ACTIONS(20623), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(20625), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20773), 1, + sym_newline, + ACTIONS(20775), 1, + aux_sym_frm_begin_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12250), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10546), 4, + sym_frm_begin_block, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_block_repeat1, + [266015] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20615), 1, + sym_identifier, + ACTIONS(20617), 1, + sym_newline, + ACTIONS(20619), 1, + aux_sym_frm_begin_block_token1, + ACTIONS(20623), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(20625), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20777), 1, + aux_sym_frm_begin_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12250), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10552), 4, + sym_frm_begin_block, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_block_repeat1, + [266063] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20637), 1, + sym_identifier, + ACTIONS(20779), 1, + aux_sym_as_type_clause_token2, + STATE(10086), 1, + sym_dotted_type_expression, + STATE(11733), 1, + sym_type_expression, + ACTIONS(20641), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [266097] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20667), 1, + sym_identifier, + ACTIONS(20781), 1, + aux_sym_as_type_clause_token2, + STATE(7567), 1, + sym_type_expression, + STATE(7575), 1, + sym_dotted_type_expression, + ACTIONS(20671), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [266131] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20783), 1, + sym_identifier, + ACTIONS(20785), 1, + aux_sym_as_type_clause_token2, + STATE(10107), 1, + sym_dotted_type_expression, + STATE(11347), 1, + sym_type_expression, + ACTIONS(20787), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [266165] = 13, + ACTIONS(20629), 1, + anon_sym_CARET, + ACTIONS(20631), 1, + anon_sym_BSLASH, + ACTIONS(20649), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20653), 1, + anon_sym_AMP, + ACTIONS(20655), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20657), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20663), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20665), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20789), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4453), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + [266211] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20791), 1, + sym_identifier, + ACTIONS(20793), 1, + aux_sym_as_type_clause_token2, + STATE(4651), 1, + sym_type_expression, + STATE(4994), 1, + sym_dotted_type_expression, + ACTIONS(20795), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [266245] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20615), 1, + sym_identifier, + ACTIONS(20617), 1, + sym_newline, + ACTIONS(20619), 1, + aux_sym_frm_begin_block_token1, + ACTIONS(20623), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(20625), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20797), 1, + aux_sym_frm_begin_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12250), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10552), 4, + sym_frm_begin_block, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_block_repeat1, + [266293] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20615), 1, + sym_identifier, + ACTIONS(20619), 1, + aux_sym_frm_begin_block_token1, + ACTIONS(20623), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(20625), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20799), 1, + sym_newline, + ACTIONS(20801), 1, + aux_sym_frm_begin_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12250), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10541), 4, + sym_frm_begin_block, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_block_repeat1, + [266341] = 3, + ACTIONS(20629), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4483), 16, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [266367] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20705), 1, + sym_identifier, + ACTIONS(20803), 1, + aux_sym_as_type_clause_token2, + STATE(3345), 1, + sym_dotted_type_expression, + STATE(3413), 1, + sym_type_expression, + ACTIONS(20709), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [266401] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20683), 1, + sym_identifier, + ACTIONS(20805), 1, + aux_sym_as_type_clause_token2, + STATE(3830), 1, + sym_dotted_type_expression, + STATE(3849), 1, + sym_type_expression, + ACTIONS(20687), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [266435] = 13, + ACTIONS(20629), 1, + anon_sym_CARET, + ACTIONS(20631), 1, + anon_sym_BSLASH, + ACTIONS(20649), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20653), 1, + anon_sym_AMP, + ACTIONS(20655), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20657), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20663), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20665), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20789), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20651), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5777), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + [266481] = 14, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(20147), 1, + anon_sym_AMP, + ACTIONS(20149), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20151), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20153), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20155), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20168), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6338), 4, + sym_newline, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [266529] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20807), 1, + sym_identifier, + ACTIONS(20809), 1, + aux_sym_as_type_clause_token2, + STATE(4627), 1, + sym_type_expression, + STATE(4970), 1, + sym_dotted_type_expression, + ACTIONS(20811), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [266563] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6338), 4, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_RPAREN, + [266609] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20615), 1, + sym_identifier, + ACTIONS(20619), 1, + aux_sym_frm_begin_block_token1, + ACTIONS(20623), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(20625), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(20813), 1, + sym_newline, + ACTIONS(20815), 1, + aux_sym_frm_begin_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12250), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10560), 4, + sym_frm_begin_block, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_block_repeat1, + [266657] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20817), 1, + sym_identifier, + STATE(2374), 1, + sym_dotted_type_expression, + STATE(2430), 1, + sym_type_expression, + ACTIONS(20819), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [266688] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20821), 1, + sym_identifier, + STATE(7344), 1, + sym_dotted_type_expression, + STATE(7365), 1, + sym_type_expression, + ACTIONS(20823), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [266719] = 8, + ACTIONS(20827), 1, + anon_sym_CARET, + ACTIONS(20829), 1, + anon_sym_BSLASH, + ACTIONS(20831), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20835), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20825), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20833), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4649), 8, + sym_newline, + anon_sym_COLON, + anon_sym_LPAREN, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [266754] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20689), 1, + sym_identifier, + STATE(4401), 1, + sym_type_expression, + STATE(4631), 1, + sym_dotted_type_expression, + ACTIONS(20693), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [266785] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20667), 1, + sym_identifier, + STATE(7552), 1, + sym_type_expression, + STATE(7575), 1, + sym_dotted_type_expression, + ACTIONS(20671), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [266816] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20705), 1, + sym_identifier, + STATE(3193), 1, + sym_type_expression, + STATE(3345), 1, + sym_dotted_type_expression, + ACTIONS(20709), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [266847] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20837), 1, + sym_identifier, + STATE(1512), 1, + sym_dotted_type_expression, + STATE(1987), 1, + sym_type_expression, + ACTIONS(20839), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [266878] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20683), 1, + sym_identifier, + STATE(3742), 1, + sym_type_expression, + STATE(3830), 1, + sym_dotted_type_expression, + ACTIONS(20687), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [266909] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20841), 3, + sym_newline, + anon_sym_COLON, + sym_number_literal, + [266956] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20843), 1, + sym_identifier, + STATE(2950), 1, + sym_dotted_type_expression, + STATE(3267), 1, + sym_type_expression, + ACTIONS(20845), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [266987] = 3, + ACTIONS(20827), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4483), 15, + sym_newline, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [267012] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20847), 1, + sym_identifier, + STATE(2558), 1, + sym_dotted_type_expression, + STATE(2607), 1, + sym_type_expression, + ACTIONS(20849), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267043] = 3, + ACTIONS(20827), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4483), 15, + sym_newline, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [267068] = 4, + ACTIONS(20827), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20825), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 13, + sym_newline, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [267095] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(20851), 3, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + [267140] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20783), 1, + sym_identifier, + STATE(10107), 1, + sym_dotted_type_expression, + STATE(10112), 1, + sym_type_expression, + ACTIONS(20787), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267171] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20853), 1, + sym_identifier, + STATE(938), 1, + sym_type_expression, + STATE(972), 1, + sym_dotted_type_expression, + ACTIONS(20855), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267202] = 5, + ACTIONS(20827), 1, + anon_sym_CARET, + ACTIONS(20829), 1, + anon_sym_BSLASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20825), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 12, + sym_newline, + anon_sym_COLON, + anon_sym_LPAREN, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [267231] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20705), 1, + sym_identifier, + STATE(2464), 1, + sym_type_expression, + STATE(3345), 1, + sym_dotted_type_expression, + ACTIONS(20709), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267262] = 14, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(20147), 1, + anon_sym_AMP, + ACTIONS(20153), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20155), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20168), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20593), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20595), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6619), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [267309] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20857), 1, + sym_identifier, + STATE(1173), 1, + sym_dotted_type_expression, + STATE(1407), 1, + sym_type_expression, + ACTIONS(20859), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267340] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20861), 1, + sym_identifier, + STATE(2041), 1, + sym_type_expression, + STATE(2145), 1, + sym_dotted_type_expression, + ACTIONS(20863), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267371] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20865), 1, + sym_identifier, + STATE(1588), 1, + sym_dotted_type_expression, + STATE(1955), 1, + sym_type_expression, + ACTIONS(20867), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267402] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20869), 1, + sym_identifier, + STATE(2067), 1, + sym_type_expression, + STATE(2070), 1, + sym_dotted_type_expression, + ACTIONS(20871), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267433] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20873), 1, + sym_identifier, + STATE(1666), 1, + sym_type_expression, + STATE(1803), 1, + sym_dotted_type_expression, + ACTIONS(20875), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267464] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20791), 1, + sym_identifier, + STATE(4660), 1, + sym_type_expression, + STATE(4994), 1, + sym_dotted_type_expression, + ACTIONS(20795), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267495] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20877), 1, + sym_identifier, + STATE(2385), 1, + sym_dotted_type_expression, + STATE(2539), 1, + sym_type_expression, + ACTIONS(20879), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267526] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20881), 1, + sym_identifier, + STATE(1074), 1, + sym_dotted_type_expression, + STATE(1426), 1, + sym_type_expression, + ACTIONS(20883), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267557] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20885), 1, + sym_identifier, + STATE(3431), 1, + sym_dotted_type_expression, + STATE(3692), 1, + sym_type_expression, + ACTIONS(20887), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267588] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20889), 1, + sym_identifier, + STATE(483), 1, + sym_dotted_type_expression, + STATE(556), 1, + sym_type_expression, + ACTIONS(20891), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267619] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20807), 1, + sym_identifier, + STATE(4642), 1, + sym_type_expression, + STATE(4970), 1, + sym_dotted_type_expression, + ACTIONS(20811), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267650] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20893), 1, + sym_identifier, + STATE(888), 1, + sym_type_expression, + STATE(923), 1, + sym_dotted_type_expression, + ACTIONS(20895), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267681] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20897), 1, + sym_identifier, + STATE(1577), 1, + sym_type_expression, + STATE(1698), 1, + sym_dotted_type_expression, + ACTIONS(20899), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267712] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20901), 1, + sym_identifier, + STATE(1738), 1, + sym_type_expression, + STATE(1867), 1, + sym_dotted_type_expression, + ACTIONS(20903), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267743] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20905), 1, + sym_identifier, + STATE(3215), 1, + sym_type_expression, + STATE(3410), 1, + sym_dotted_type_expression, + ACTIONS(20907), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267774] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20909), 1, + sym_identifier, + STATE(2345), 1, + sym_dotted_type_expression, + STATE(2367), 1, + sym_type_expression, + ACTIONS(20911), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267805] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20913), 1, + sym_identifier, + STATE(2957), 1, + sym_type_expression, + STATE(3151), 1, + sym_dotted_type_expression, + ACTIONS(20915), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267836] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20917), 1, + sym_identifier, + STATE(10398), 1, + sym_dotted_type_expression, + STATE(10404), 1, + sym_type_expression, + ACTIONS(20919), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267867] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6326), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [267914] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20757), 1, + sym_identifier, + STATE(11257), 1, + sym_type_expression, + STATE(11706), 1, + sym_dotted_type_expression, + ACTIONS(20761), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267945] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20921), 1, + sym_identifier, + STATE(2346), 1, + sym_dotted_type_expression, + STATE(2368), 1, + sym_type_expression, + ACTIONS(20923), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [267976] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20925), 1, + sym_identifier, + STATE(1366), 1, + sym_dotted_type_expression, + STATE(1379), 1, + sym_type_expression, + ACTIONS(20927), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268007] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20929), 1, + sym_identifier, + STATE(2199), 1, + sym_dotted_type_expression, + STATE(2214), 1, + sym_type_expression, + ACTIONS(20931), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268038] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20933), 1, + sym_identifier, + STATE(800), 1, + sym_dotted_type_expression, + STATE(821), 1, + sym_type_expression, + ACTIONS(20935), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268069] = 13, + ACTIONS(20827), 1, + anon_sym_CARET, + ACTIONS(20829), 1, + anon_sym_BSLASH, + ACTIONS(20831), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20835), 1, + anon_sym_AMP, + ACTIONS(20937), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20939), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20941), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20943), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20945), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20825), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20833), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5777), 3, + sym_newline, + anon_sym_COLON, + anon_sym_LPAREN, + [268114] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20711), 1, + sym_identifier, + STATE(4687), 1, + sym_type_expression, + STATE(4952), 1, + sym_dotted_type_expression, + ACTIONS(20715), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268145] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20947), 1, + sym_identifier, + STATE(3057), 1, + sym_dotted_type_expression, + STATE(3346), 1, + sym_type_expression, + ACTIONS(20949), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268176] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20951), 1, + sym_identifier, + STATE(3001), 1, + sym_type_expression, + STATE(3275), 1, + sym_dotted_type_expression, + ACTIONS(20953), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268207] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20955), 1, + sym_identifier, + STATE(1750), 1, + sym_type_expression, + STATE(1879), 1, + sym_dotted_type_expression, + ACTIONS(20957), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268238] = 6, + ACTIONS(20827), 1, + anon_sym_CARET, + ACTIONS(20829), 1, + anon_sym_BSLASH, + ACTIONS(20831), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20825), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 11, + sym_newline, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [268269] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20959), 1, + sym_identifier, + STATE(2463), 1, + sym_type_expression, + STATE(2524), 1, + sym_dotted_type_expression, + ACTIONS(20961), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268300] = 7, + ACTIONS(20827), 1, + anon_sym_CARET, + ACTIONS(20829), 1, + anon_sym_BSLASH, + ACTIONS(20831), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20825), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20833), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 9, + sym_newline, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [268333] = 8, + ACTIONS(20827), 1, + anon_sym_CARET, + ACTIONS(20829), 1, + anon_sym_BSLASH, + ACTIONS(20831), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20835), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20825), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20833), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 8, + sym_newline, + anon_sym_COLON, + anon_sym_LPAREN, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [268368] = 9, + ACTIONS(20827), 1, + anon_sym_CARET, + ACTIONS(20829), 1, + anon_sym_BSLASH, + ACTIONS(20831), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20835), 1, + anon_sym_AMP, + ACTIONS(20937), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20825), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20833), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 7, + sym_newline, + anon_sym_COLON, + anon_sym_LPAREN, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [268405] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20963), 1, + sym_identifier, + STATE(1597), 1, + sym_type_expression, + STATE(1710), 1, + sym_dotted_type_expression, + ACTIONS(20965), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268436] = 11, + ACTIONS(20827), 1, + anon_sym_CARET, + ACTIONS(20829), 1, + anon_sym_BSLASH, + ACTIONS(20831), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20835), 1, + anon_sym_AMP, + ACTIONS(20937), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20939), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20941), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20825), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20833), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 5, + sym_newline, + anon_sym_COLON, + anon_sym_LPAREN, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [268477] = 12, + ACTIONS(20827), 1, + anon_sym_CARET, + ACTIONS(20829), 1, + anon_sym_BSLASH, + ACTIONS(20831), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20835), 1, + anon_sym_AMP, + ACTIONS(20937), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20939), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20941), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20943), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20825), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20833), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 4, + sym_newline, + anon_sym_COLON, + anon_sym_LPAREN, + aux_sym__print_output_call_binary_expression_token6, + [268520] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20643), 1, + sym_identifier, + STATE(4704), 1, + sym_type_expression, + STATE(5473), 1, + sym_dotted_type_expression, + ACTIONS(20647), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268551] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6322), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [268598] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20967), 1, + sym_identifier, + STATE(10207), 1, + sym_type_expression, + STATE(10233), 1, + sym_dotted_type_expression, + ACTIONS(20969), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268629] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20971), 1, + sym_identifier, + STATE(10191), 1, + sym_type_expression, + STATE(10198), 1, + sym_dotted_type_expression, + ACTIONS(20973), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268660] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20695), 1, + sym_identifier, + STATE(4633), 1, + sym_type_expression, + STATE(5050), 1, + sym_dotted_type_expression, + ACTIONS(20699), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268691] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20975), 1, + sym_identifier, + STATE(3045), 1, + sym_type_expression, + STATE(3182), 1, + sym_dotted_type_expression, + ACTIONS(20977), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268722] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20979), 1, + sym_identifier, + STATE(1523), 1, + sym_type_expression, + STATE(1598), 1, + sym_dotted_type_expression, + ACTIONS(20981), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268753] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20983), 1, + sym_identifier, + STATE(1477), 1, + sym_type_expression, + STATE(1537), 1, + sym_dotted_type_expression, + ACTIONS(20985), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268784] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6627), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [268831] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20987), 1, + sym_identifier, + STATE(414), 1, + sym_type_expression, + STATE(427), 1, + sym_dotted_type_expression, + ACTIONS(20989), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268862] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20731), 1, + sym_identifier, + STATE(11155), 1, + sym_type_expression, + STATE(11619), 1, + sym_dotted_type_expression, + ACTIONS(20735), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268893] = 14, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20143), 1, + anon_sym_PLUS, + ACTIONS(20145), 1, + anon_sym_DASH, + ACTIONS(20147), 1, + anon_sym_AMP, + ACTIONS(20149), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20151), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20153), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20155), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20168), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6631), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [268940] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20991), 1, + sym_identifier, + STATE(2958), 1, + sym_dotted_type_expression, + STATE(3274), 1, + sym_type_expression, + ACTIONS(20993), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [268971] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20637), 1, + sym_identifier, + STATE(10086), 1, + sym_dotted_type_expression, + STATE(11860), 1, + sym_type_expression, + ACTIONS(20641), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269002] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20995), 1, + sym_identifier, + STATE(1195), 1, + sym_type_expression, + STATE(1371), 1, + sym_dotted_type_expression, + ACTIONS(20997), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269033] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20999), 1, + sym_identifier, + STATE(2973), 1, + sym_type_expression, + STATE(3159), 1, + sym_dotted_type_expression, + ACTIONS(21001), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269064] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21003), 1, + sym_identifier, + STATE(2419), 1, + sym_type_expression, + STATE(2436), 1, + sym_dotted_type_expression, + ACTIONS(21005), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269095] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21007), 1, + sym_identifier, + STATE(1094), 1, + sym_dotted_type_expression, + STATE(1167), 1, + sym_type_expression, + ACTIONS(21009), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269126] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21011), 1, + sym_identifier, + STATE(3059), 1, + sym_type_expression, + STATE(3189), 1, + sym_dotted_type_expression, + ACTIONS(21013), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269157] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21015), 1, + sym_identifier, + STATE(3079), 1, + sym_type_expression, + STATE(3310), 1, + sym_dotted_type_expression, + ACTIONS(21017), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269188] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21019), 3, + sym_newline, + anon_sym_COLON, + sym_number_literal, + [269235] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20677), 1, + sym_identifier, + STATE(4656), 1, + sym_type_expression, + STATE(5070), 1, + sym_dotted_type_expression, + ACTIONS(20681), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269266] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21021), 1, + sym_identifier, + STATE(2434), 1, + sym_dotted_type_expression, + STATE(2510), 1, + sym_type_expression, + ACTIONS(21023), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269297] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20637), 1, + sym_identifier, + STATE(10086), 1, + sym_dotted_type_expression, + STATE(11698), 1, + sym_type_expression, + ACTIONS(20641), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269328] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21025), 1, + sym_identifier, + STATE(1266), 1, + sym_dotted_type_expression, + STATE(1386), 1, + sym_type_expression, + ACTIONS(21027), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269359] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20667), 1, + sym_identifier, + STATE(7568), 1, + sym_type_expression, + STATE(7575), 1, + sym_dotted_type_expression, + ACTIONS(20671), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269390] = 3, + ACTIONS(20827), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4443), 15, + sym_newline, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [269415] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21029), 1, + sym_identifier, + STATE(2029), 1, + sym_dotted_type_expression, + STATE(2136), 1, + sym_type_expression, + ACTIONS(21031), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269446] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21033), 1, + sym_identifier, + STATE(806), 1, + sym_type_expression, + STATE(847), 1, + sym_dotted_type_expression, + ACTIONS(21035), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269477] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20783), 1, + sym_identifier, + STATE(10107), 1, + sym_dotted_type_expression, + STATE(11509), 1, + sym_type_expression, + ACTIONS(20787), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269508] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6306), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [269555] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21037), 1, + sym_identifier, + STATE(1057), 1, + sym_dotted_type_expression, + STATE(1369), 1, + sym_type_expression, + ACTIONS(21039), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269586] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21041), 1, + sym_identifier, + STATE(1802), 1, + sym_type_expression, + STATE(1896), 1, + sym_dotted_type_expression, + ACTIONS(21043), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269617] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21045), 1, + sym_identifier, + STATE(670), 1, + sym_dotted_type_expression, + STATE(727), 1, + sym_type_expression, + ACTIONS(21047), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269648] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20667), 1, + sym_identifier, + STATE(7575), 1, + sym_dotted_type_expression, + STATE(7926), 1, + sym_type_expression, + ACTIONS(20671), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269679] = 13, + ACTIONS(20827), 1, + anon_sym_CARET, + ACTIONS(20829), 1, + anon_sym_BSLASH, + ACTIONS(20831), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20835), 1, + anon_sym_AMP, + ACTIONS(20937), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20939), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20941), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20943), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20945), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20825), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20833), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4453), 3, + sym_newline, + anon_sym_COLON, + anon_sym_LPAREN, + [269724] = 14, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21051), 1, + aux_sym_array_bound_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(21049), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [269771] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21053), 1, + sym_identifier, + STATE(2012), 1, + sym_type_expression, + STATE(2138), 1, + sym_dotted_type_expression, + ACTIONS(21055), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269802] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21057), 3, + sym_newline, + anon_sym_COLON, + sym_number_literal, + [269849] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6398), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [269896] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21059), 1, + sym_identifier, + STATE(1102), 1, + sym_dotted_type_expression, + STATE(1323), 1, + sym_type_expression, + ACTIONS(21061), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269927] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20683), 1, + sym_identifier, + STATE(3205), 1, + sym_type_expression, + STATE(3830), 1, + sym_dotted_type_expression, + ACTIONS(20687), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269958] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21063), 1, + sym_identifier, + STATE(3478), 1, + sym_type_expression, + STATE(3484), 1, + sym_dotted_type_expression, + ACTIONS(21065), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [269989] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21067), 1, + sym_identifier, + STATE(10417), 1, + sym_type_expression, + STATE(10453), 1, + sym_dotted_type_expression, + ACTIONS(21069), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [270020] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6432), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [270067] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6436), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [270114] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6440), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [270161] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21071), 1, + sym_identifier, + STATE(502), 1, + sym_type_expression, + STATE(526), 1, + sym_dotted_type_expression, + ACTIONS(21073), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [270192] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20637), 1, + sym_identifier, + STATE(10081), 1, + sym_type_expression, + STATE(10086), 1, + sym_dotted_type_expression, + ACTIONS(20641), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [270223] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21075), 1, + sym_identifier, + STATE(1816), 1, + sym_type_expression, + STATE(1901), 1, + sym_dotted_type_expression, + ACTIONS(21077), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [270254] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6342), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [270301] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6394), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [270348] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21079), 1, + sym_identifier, + STATE(7282), 1, + sym_dotted_type_expression, + STATE(7294), 1, + sym_type_expression, + ACTIONS(21081), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [270379] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21083), 1, + sym_identifier, + STATE(585), 1, + sym_type_expression, + STATE(635), 1, + sym_dotted_type_expression, + ACTIONS(21085), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [270410] = 14, + ACTIONS(20386), 1, + anon_sym_CARET, + ACTIONS(20388), 1, + anon_sym_BSLASH, + ACTIONS(20390), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20392), 1, + anon_sym_PLUS, + ACTIONS(20394), 1, + anon_sym_DASH, + ACTIONS(20396), 1, + anon_sym_AMP, + ACTIONS(20398), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20400), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20402), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20404), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20406), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20384), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21087), 3, + sym_newline, + anon_sym_COLON, + sym_number_literal, + [270457] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21089), 1, + sym_identifier, + STATE(682), 1, + sym_type_expression, + STATE(706), 1, + sym_dotted_type_expression, + ACTIONS(21091), 13, + aux_sym_type_expression_token1, + aux_sym_type_expression_token2, + aux_sym_type_expression_token3, + aux_sym_type_expression_token4, + aux_sym_type_expression_token5, + aux_sym_type_expression_token6, + aux_sym_type_expression_token7, + aux_sym_type_expression_token8, + aux_sym_type_expression_token9, + aux_sym_type_expression_token10, + aux_sym_type_expression_token11, + aux_sym_type_expression_token12, + aux_sym_type_expression_token13, + [270488] = 10, + ACTIONS(20827), 1, + anon_sym_CARET, + ACTIONS(20829), 1, + anon_sym_BSLASH, + ACTIONS(20831), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20835), 1, + anon_sym_AMP, + ACTIONS(20937), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20939), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20825), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20833), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 6, + sym_newline, + anon_sym_COLON, + anon_sym_LPAREN, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [270527] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(21093), 2, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + [270571] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6850), 1, + aux_sym_else_fragment_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12110), 1, + sym__assignable_expression, + STATE(12860), 1, + sym_next_variable_list, + ACTIONS(6848), 2, + anon_sym_COLON, + sym_number_literal, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [270619] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(21099), 2, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + [270663] = 14, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21101), 1, + anon_sym_RPAREN, + ACTIONS(21104), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21106), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [270709] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(21108), 2, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + [270753] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6824), 1, + aux_sym_else_fragment_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12110), 1, + sym__assignable_expression, + STATE(12861), 1, + sym_next_variable_list, + ACTIONS(6822), 2, + anon_sym_COLON, + sym_number_literal, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [270801] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21104), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21106), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5871), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [270845] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21104), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21106), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5701), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [270889] = 11, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4649), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + [270929] = 14, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21104), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21106), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21110), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [270975] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(21113), 2, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + [271019] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6812), 1, + aux_sym_else_fragment_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12110), 1, + sym__assignable_expression, + STATE(12721), 1, + sym_next_variable_list, + ACTIONS(6810), 2, + anon_sym_COLON, + sym_number_literal, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [271067] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(21115), 2, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + [271111] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6865), 1, + aux_sym_else_fragment_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12110), 1, + sym__assignable_expression, + STATE(12730), 1, + sym_next_variable_list, + ACTIONS(6863), 2, + anon_sym_COLON, + sym_number_literal, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [271159] = 14, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21104), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21106), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21117), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [271205] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5718), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [271249] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(21120), 2, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + [271293] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21122), 1, + sym_identifier, + ACTIONS(21125), 1, + sym_newline, + ACTIONS(21128), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(21131), 1, + aux_sym_frm_begin_property_block_token2, + ACTIONS(21133), 1, + aux_sym_frm_property_statement_token1, + STATE(12245), 1, + sym_call_expression, + STATE(12282), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(21136), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10707), 3, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_property_block_repeat1, + [271337] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4649), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [271381] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21139), 1, + sym_identifier, + ACTIONS(21141), 1, + sym_newline, + ACTIONS(21143), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(21145), 1, + aux_sym_frm_begin_property_block_token2, + ACTIONS(21147), 1, + aux_sym_frm_property_statement_token1, + STATE(12245), 1, + sym_call_expression, + STATE(12282), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10724), 3, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_property_block_repeat1, + [271425] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21139), 1, + sym_identifier, + ACTIONS(21143), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(21147), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21149), 1, + sym_newline, + ACTIONS(21151), 1, + aux_sym_frm_begin_property_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12282), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10719), 3, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_property_block_repeat1, + [271469] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6869), 1, + aux_sym_else_fragment_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12110), 1, + sym__assignable_expression, + STATE(12720), 1, + sym_next_variable_list, + ACTIONS(6867), 2, + anon_sym_COLON, + sym_number_literal, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [271517] = 14, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21104), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21106), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21153), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [271563] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(21156), 2, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + [271607] = 14, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21104), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21106), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21158), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [271653] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21139), 1, + sym_identifier, + ACTIONS(21143), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(21147), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21161), 1, + sym_newline, + ACTIONS(21163), 1, + aux_sym_frm_begin_property_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12282), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10722), 3, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_property_block_repeat1, + [271697] = 14, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21104), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21106), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21165), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [271743] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6844), 1, + aux_sym_else_fragment_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12110), 1, + sym__assignable_expression, + STATE(12624), 1, + sym_next_variable_list, + ACTIONS(6842), 2, + anon_sym_COLON, + sym_number_literal, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [271791] = 14, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21104), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21106), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21168), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [271837] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21139), 1, + sym_identifier, + ACTIONS(21143), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(21147), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21171), 1, + sym_newline, + ACTIONS(21173), 1, + aux_sym_frm_begin_property_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12282), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10707), 3, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_property_block_repeat1, + [271881] = 14, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21104), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21106), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21175), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [271927] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(21178), 2, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + [271971] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21139), 1, + sym_identifier, + ACTIONS(21143), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(21147), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21171), 1, + sym_newline, + ACTIONS(21180), 1, + aux_sym_frm_begin_property_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12282), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10707), 3, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_property_block_repeat1, + [272015] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6828), 1, + aux_sym_else_fragment_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12110), 1, + sym__assignable_expression, + STATE(12725), 1, + sym_next_variable_list, + ACTIONS(6826), 2, + anon_sym_COLON, + sym_number_literal, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [272063] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21139), 1, + sym_identifier, + ACTIONS(21143), 1, + aux_sym_frm_begin_property_block_token1, + ACTIONS(21147), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21171), 1, + sym_newline, + ACTIONS(21182), 1, + aux_sym_frm_begin_property_block_token2, + STATE(12245), 1, + sym_call_expression, + STATE(12282), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + STATE(10707), 3, + sym_frm_begin_property_block, + sym_frm_property_statement, + aux_sym_frm_begin_property_block_repeat1, + [272107] = 11, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5629), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + [272147] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6119), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [272191] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(21184), 2, + aux_sym_on_goto_statement_token2, + aux_sym_on_goto_statement_token3, + [272235] = 15, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6858), 1, + aux_sym_else_fragment_token1, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12110), 1, + sym__assignable_expression, + STATE(12631), 1, + sym_next_variable_list, + ACTIONS(6856), 2, + anon_sym_COLON, + sym_number_literal, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [272283] = 14, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21104), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21106), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21186), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [272329] = 12, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5629), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym__print_output_call_binary_expression_token3, + [272371] = 14, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21104), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21106), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21189), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [272417] = 14, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21104), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21106), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21192), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [272463] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(21195), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [272507] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21104), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21106), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5754), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [272551] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21197), 1, + aux_sym__for_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [272594] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21199), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [272637] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21201), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [272680] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21203), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [272723] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21205), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [272766] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21207), 1, + aux_sym_array_bound_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [272809] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21209), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [272852] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21211), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [272895] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21214), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [272938] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21216), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [272981] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21218), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273024] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21220), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273067] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21222), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273110] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21225), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273153] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21228), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273196] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21230), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273239] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21232), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273282] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21234), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273325] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21236), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273368] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21238), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273411] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21240), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273454] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21242), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273497] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21244), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273540] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21246), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273583] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21248), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273626] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21250), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273669] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21253), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273712] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21255), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273755] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21258), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273798] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21260), 1, + aux_sym__for_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273841] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21262), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273884] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21264), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273927] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21266), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [273970] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21268), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274013] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21270), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274056] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21272), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274099] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21274), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274142] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21276), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274185] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21278), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274228] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12110), 1, + sym__assignable_expression, + STATE(12860), 1, + sym_next_variable_list, + ACTIONS(6848), 2, + anon_sym_COLON, + sym_number_literal, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [274273] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21280), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274316] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21282), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274359] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21284), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274402] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21286), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274445] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21289), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274488] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21291), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274531] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21293), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274574] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21295), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274617] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21297), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274660] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21299), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274703] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21301), 1, + aux_sym_array_bound_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274746] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21303), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274789] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21305), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274832] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21307), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274875] = 13, + ACTIONS(21311), 1, + aux_sym_case_expression_token1, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [274918] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12110), 1, + sym__assignable_expression, + STATE(12861), 1, + sym_next_variable_list, + ACTIONS(6822), 2, + anon_sym_COLON, + sym_number_literal, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [274963] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21333), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [275006] = 13, + ACTIONS(5915), 1, + anon_sym_COMMA, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [275049] = 3, + ACTIONS(5915), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4344), 13, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [275072] = 3, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4483), 13, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [275095] = 3, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4483), 13, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [275118] = 4, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 11, + aux_sym_case_expression_token1, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [275143] = 5, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 10, + aux_sym_case_expression_token1, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [275170] = 6, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4483), 9, + aux_sym_case_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [275199] = 7, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 7, + aux_sym_case_expression_token1, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [275230] = 8, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 6, + aux_sym_case_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [275263] = 9, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 5, + aux_sym_case_expression_token1, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [275298] = 10, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 4, + aux_sym_case_expression_token1, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [275335] = 11, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4483), 3, + aux_sym_case_expression_token1, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [275374] = 12, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4483), 2, + aux_sym_case_expression_token1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [275415] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21335), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [275458] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21337), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [275501] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21339), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [275544] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21341), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [275587] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21343), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [275630] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21345), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [275673] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21348), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [275716] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21350), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [275759] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21352), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [275802] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21354), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [275845] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21356), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [275888] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21358), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [275931] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21360), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [275974] = 8, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4649), 6, + aux_sym_case_expression_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [276007] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21362), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276050] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21364), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276093] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21366), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276136] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21368), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276179] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21370), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276222] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21372), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276265] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21374), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276308] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12110), 1, + sym__assignable_expression, + STATE(12624), 1, + sym_next_variable_list, + ACTIONS(6842), 2, + anon_sym_COLON, + sym_number_literal, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [276353] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21376), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276396] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21378), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276439] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12110), 1, + sym__assignable_expression, + STATE(12631), 1, + sym_next_variable_list, + ACTIONS(6856), 2, + anon_sym_COLON, + sym_number_literal, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [276484] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21380), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276527] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21382), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276570] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21384), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276613] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21386), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276656] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21388), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276699] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21390), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276742] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21392), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276785] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21394), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276828] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21396), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276871] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21398), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276914] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21400), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [276957] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21402), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277000] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21404), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277043] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21406), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277086] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21408), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277129] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21410), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277172] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21412), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277215] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21415), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277258] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21417), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277301] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21419), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277344] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21422), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277387] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21424), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277430] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21426), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277473] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21428), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277516] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21430), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277559] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21432), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277602] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21434), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277645] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21436), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277688] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21438), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277731] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21440), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277774] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21442), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277817] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21444), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277860] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21446), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277903] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21448), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277946] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21450), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [277989] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21452), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278032] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21454), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278075] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21456), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278118] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21458), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278161] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21460), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278204] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21462), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278247] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21464), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278290] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21466), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278333] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21468), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278376] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21470), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278419] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21472), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278462] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21474), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278505] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21476), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278548] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21478), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278591] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21480), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278634] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21482), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278677] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21484), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278720] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21486), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278763] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21488), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278806] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21490), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278849] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21492), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278892] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21494), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278935] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21496), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [278978] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21498), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279021] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21500), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279064] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21502), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279107] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21504), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279150] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21506), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279193] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21508), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279236] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21510), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279279] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21512), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279322] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21514), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279365] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21516), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279408] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21518), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279451] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21520), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279494] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21522), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279537] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21524), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279580] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21526), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279623] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21528), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279666] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21530), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279709] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21532), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279752] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21534), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279795] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21536), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279838] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21538), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279881] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21540), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279924] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21542), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [279967] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21544), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280010] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21546), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280053] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21548), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280096] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21550), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280139] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21552), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280182] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21554), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280225] = 3, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4443), 13, + anon_sym_STAR, + aux_sym_case_expression_token1, + anon_sym_SLASH, + anon_sym_BSLASH, + aux_sym__print_output_call_binary_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_AMP, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [280248] = 13, + ACTIONS(4453), 1, + aux_sym_case_expression_token1, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280291] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21556), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280334] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21558), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280377] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21560), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280420] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21562), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280463] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21564), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280506] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21566), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280549] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21568), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280592] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21570), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280635] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21572), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280678] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21574), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280721] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21576), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280764] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21578), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280807] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21581), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280850] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21583), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280893] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21585), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280936] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21587), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [280979] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21589), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281022] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21591), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281065] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21593), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281108] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21595), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281151] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21597), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281194] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21599), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281237] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21601), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281280] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21603), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281323] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21605), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281366] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21607), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281409] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21609), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281452] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21611), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281495] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21613), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281538] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21615), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281581] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21617), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281624] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21619), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281667] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21621), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281710] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21623), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281753] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21626), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281796] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21628), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281839] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21630), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281882] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21632), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281925] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21634), 1, + aux_sym__for_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [281968] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21636), 1, + aux_sym__for_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [282011] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21638), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [282054] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21640), 1, + aux_sym__for_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [282097] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21642), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [282140] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21644), 1, + aux_sym__for_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [282183] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21646), 1, + aux_sym__for_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [282226] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12110), 1, + sym__assignable_expression, + STATE(12720), 1, + sym_next_variable_list, + ACTIONS(6867), 2, + anon_sym_COLON, + sym_number_literal, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [282271] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21648), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [282314] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21650), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [282357] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21652), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [282400] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21654), 1, + aux_sym__for_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [282443] = 13, + ACTIONS(20107), 1, + anon_sym_CARET, + ACTIONS(20109), 1, + anon_sym_BSLASH, + ACTIONS(20111), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20115), 1, + anon_sym_AMP, + ACTIONS(20121), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20123), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20125), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20127), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20129), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21656), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20105), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20113), 2, + anon_sym_PLUS, + anon_sym_DASH, + [282486] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21658), 1, + aux_sym__for_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [282529] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12110), 1, + sym__assignable_expression, + STATE(12721), 1, + sym_next_variable_list, + ACTIONS(6810), 2, + anon_sym_COLON, + sym_number_literal, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [282574] = 13, + ACTIONS(20297), 1, + anon_sym_CARET, + ACTIONS(20321), 1, + anon_sym_BSLASH, + ACTIONS(20323), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20327), 1, + anon_sym_AMP, + ACTIONS(20329), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20331), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(20333), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20335), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20373), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21660), 1, + aux_sym__for_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20319), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20325), 2, + anon_sym_PLUS, + anon_sym_DASH, + [282617] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12110), 1, + sym__assignable_expression, + STATE(12725), 1, + sym_next_variable_list, + ACTIONS(6826), 2, + anon_sym_COLON, + sym_number_literal, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [282662] = 14, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11356), 1, + anon_sym_DOT, + ACTIONS(11358), 1, + anon_sym_BANG, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12110), 1, + sym__assignable_expression, + STATE(12730), 1, + sym_next_variable_list, + ACTIONS(6863), 2, + anon_sym_COLON, + sym_number_literal, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [282707] = 13, + ACTIONS(21313), 1, + anon_sym_CARET, + ACTIONS(21315), 1, + anon_sym_BSLASH, + ACTIONS(21317), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21321), 1, + anon_sym_AMP, + ACTIONS(21323), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21325), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21327), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21329), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21331), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(21662), 1, + aux_sym_case_expression_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21309), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21319), 2, + anon_sym_PLUS, + anon_sym_DASH, + [282750] = 12, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21664), 1, + sym_identifier, + ACTIONS(21666), 1, + sym_newline, + ACTIONS(21668), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(21670), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(21672), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(21674), 1, + aux_sym_type_preprocessor_else_token1, + STATE(12029), 1, + sym_type_preprocessor_block, + STATE(14424), 1, + sym_type_preprocessor_else, + STATE(12034), 2, + sym_type_preprocessor_elseif, + aux_sym_type_preprocessor_if_repeat1, + STATE(11377), 3, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_preprocessor_block_repeat1, + [282790] = 12, + ACTIONS(21678), 1, + anon_sym_CARET, + ACTIONS(21680), 1, + anon_sym_BSLASH, + ACTIONS(21682), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21686), 1, + anon_sym_AMP, + ACTIONS(21688), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21690), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21692), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21694), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21696), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21676), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21684), 2, + anon_sym_PLUS, + anon_sym_DASH, + [282830] = 12, + ACTIONS(4445), 1, + anon_sym_CARET, + ACTIONS(4457), 1, + anon_sym_BSLASH, + ACTIONS(21698), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21700), 1, + anon_sym_AMP, + ACTIONS(21702), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21704), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21706), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21708), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21710), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4455), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 2, + anon_sym_PLUS, + anon_sym_DASH, + [282870] = 12, + ACTIONS(6470), 1, + anon_sym_CARET, + ACTIONS(6474), 1, + anon_sym_BSLASH, + ACTIONS(21712), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21714), 1, + anon_sym_AMP, + ACTIONS(21716), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21718), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21720), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21722), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21724), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6472), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6478), 2, + anon_sym_PLUS, + anon_sym_DASH, + [282910] = 12, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21664), 1, + sym_identifier, + ACTIONS(21666), 1, + sym_newline, + ACTIONS(21668), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(21672), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(21674), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(21726), 1, + aux_sym_type_preprocessor_if_token3, + STATE(11763), 1, + sym_type_preprocessor_block, + STATE(13710), 1, + sym_type_preprocessor_else, + STATE(11773), 2, + sym_type_preprocessor_elseif, + aux_sym_type_preprocessor_if_repeat1, + STATE(11377), 3, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_preprocessor_block_repeat1, + [282950] = 12, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21728), 1, + sym_identifier, + ACTIONS(21732), 1, + sym_guid_literal, + STATE(10567), 1, + sym__statement_separator, + STATE(11675), 1, + sym_member_expression, + STATE(12186), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(20357), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(21730), 2, + sym_newline, + anon_sym_COLON, + STATE(11495), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [282990] = 12, + ACTIONS(6043), 1, + anon_sym_CARET, + ACTIONS(6069), 1, + anon_sym_BSLASH, + ACTIONS(21734), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21736), 1, + anon_sym_AMP, + ACTIONS(21738), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21740), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21742), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21744), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21746), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6067), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6073), 2, + anon_sym_PLUS, + anon_sym_DASH, + [283030] = 12, + ACTIONS(21750), 1, + anon_sym_CARET, + ACTIONS(21752), 1, + anon_sym_BSLASH, + ACTIONS(21754), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21758), 1, + anon_sym_AMP, + ACTIONS(21760), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21762), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21764), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21766), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21768), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21748), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21756), 2, + anon_sym_PLUS, + anon_sym_DASH, + [283070] = 12, + ACTIONS(21772), 1, + anon_sym_CARET, + ACTIONS(21774), 1, + anon_sym_BSLASH, + ACTIONS(21776), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21780), 1, + anon_sym_AMP, + ACTIONS(21782), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21784), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21786), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21788), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21790), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21778), 2, + anon_sym_PLUS, + anon_sym_DASH, + [283110] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21792), 1, + sym_identifier, + ACTIONS(21794), 1, + aux_sym_type_declaration_token1, + ACTIONS(21796), 1, + aux_sym_enum_declaration_token1, + ACTIONS(21798), 1, + aux_sym_declare_sub_statement_token1, + ACTIONS(21802), 1, + aux_sym_event_declaration_token1, + ACTIONS(21804), 1, + sym_static_modifier, + ACTIONS(21806), 1, + sym__dim_keyword, + ACTIONS(21808), 1, + sym_with_events_modifier, + ACTIONS(21810), 1, + aux_sym_const_declaration_token1, + STATE(7663), 1, + sym_variable_declarator, + ACTIONS(21800), 3, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + [283152] = 12, + ACTIONS(20135), 1, + anon_sym_CARET, + ACTIONS(20139), 1, + anon_sym_BSLASH, + ACTIONS(20141), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(20153), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(20155), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(20168), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(20593), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(20595), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21812), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20137), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(20143), 2, + anon_sym_PLUS, + anon_sym_DASH, + [283192] = 12, + ACTIONS(21816), 1, + anon_sym_CARET, + ACTIONS(21818), 1, + anon_sym_BSLASH, + ACTIONS(21820), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21824), 1, + anon_sym_AMP, + ACTIONS(21826), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21828), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21830), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21832), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21834), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21814), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21822), 2, + anon_sym_PLUS, + anon_sym_DASH, + [283232] = 12, + ACTIONS(5901), 1, + anon_sym_CARET, + ACTIONS(5903), 1, + anon_sym_BSLASH, + ACTIONS(21836), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21838), 1, + anon_sym_AMP, + ACTIONS(21840), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21842), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21844), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21846), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21848), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5899), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5907), 2, + anon_sym_PLUS, + anon_sym_DASH, + [283272] = 12, + ACTIONS(21852), 1, + anon_sym_CARET, + ACTIONS(21854), 1, + anon_sym_BSLASH, + ACTIONS(21856), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21860), 1, + anon_sym_AMP, + ACTIONS(21862), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21864), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21866), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21868), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21870), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21850), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21858), 2, + anon_sym_PLUS, + anon_sym_DASH, + [283312] = 12, + ACTIONS(5941), 1, + anon_sym_CARET, + ACTIONS(5950), 1, + anon_sym_BSLASH, + ACTIONS(21872), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21874), 1, + anon_sym_AMP, + ACTIONS(21876), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21878), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21880), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21882), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21884), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5948), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5954), 2, + anon_sym_PLUS, + anon_sym_DASH, + [283352] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21886), 1, + sym_identifier, + ACTIONS(21888), 1, + aux_sym_type_declaration_token1, + ACTIONS(21890), 1, + aux_sym_enum_declaration_token1, + ACTIONS(21892), 1, + aux_sym_declare_sub_statement_token1, + ACTIONS(21894), 1, + aux_sym_event_declaration_token1, + ACTIONS(21896), 1, + sym_static_modifier, + ACTIONS(21898), 1, + sym__dim_keyword, + ACTIONS(21900), 1, + sym_with_events_modifier, + ACTIONS(21902), 1, + aux_sym_const_declaration_token1, + STATE(4153), 1, + sym_variable_declarator, + ACTIONS(21800), 3, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + [283394] = 12, + ACTIONS(21906), 1, + anon_sym_CARET, + ACTIONS(21908), 1, + anon_sym_BSLASH, + ACTIONS(21910), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21914), 1, + anon_sym_AMP, + ACTIONS(21916), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21918), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21920), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21922), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21924), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21904), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21912), 2, + anon_sym_PLUS, + anon_sym_DASH, + [283434] = 12, + ACTIONS(4984), 1, + anon_sym_CARET, + ACTIONS(4988), 1, + anon_sym_BSLASH, + ACTIONS(21926), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21928), 1, + anon_sym_AMP, + ACTIONS(21930), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21932), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21934), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21936), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21938), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4986), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4992), 2, + anon_sym_PLUS, + anon_sym_DASH, + [283474] = 12, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21940), 1, + sym_identifier, + ACTIONS(21944), 1, + sym_guid_literal, + STATE(10575), 1, + sym__statement_separator, + STATE(11694), 1, + sym_member_expression, + STATE(12186), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(20357), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(21942), 2, + sym_newline, + anon_sym_COLON, + STATE(11495), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [283514] = 12, + ACTIONS(21948), 1, + anon_sym_CARET, + ACTIONS(21950), 1, + anon_sym_BSLASH, + ACTIONS(21952), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21956), 1, + anon_sym_AMP, + ACTIONS(21958), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21960), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21962), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21964), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21966), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21946), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21954), 2, + anon_sym_PLUS, + anon_sym_DASH, + [283554] = 12, + ACTIONS(21970), 1, + anon_sym_CARET, + ACTIONS(21972), 1, + anon_sym_BSLASH, + ACTIONS(21974), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21978), 1, + anon_sym_AMP, + ACTIONS(21980), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21982), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21984), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(21986), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(21988), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(21968), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(21976), 2, + anon_sym_PLUS, + anon_sym_DASH, + [283594] = 12, + ACTIONS(5508), 1, + anon_sym_CARET, + ACTIONS(5510), 1, + anon_sym_BSLASH, + ACTIONS(21990), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(21992), 1, + anon_sym_AMP, + ACTIONS(21994), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(21996), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(21998), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22000), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(22002), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5506), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5514), 2, + anon_sym_PLUS, + anon_sym_DASH, + [283634] = 12, + ACTIONS(22006), 1, + anon_sym_CARET, + ACTIONS(22008), 1, + anon_sym_BSLASH, + ACTIONS(22010), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(22014), 1, + anon_sym_AMP, + ACTIONS(22016), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22018), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22020), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22022), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(22024), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22004), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(22012), 2, + anon_sym_PLUS, + anon_sym_DASH, + [283674] = 13, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22026), 1, + sym_identifier, + ACTIONS(22028), 1, + aux_sym_type_declaration_token1, + ACTIONS(22030), 1, + aux_sym_enum_declaration_token1, + ACTIONS(22032), 1, + aux_sym_declare_sub_statement_token1, + ACTIONS(22034), 1, + aux_sym_event_declaration_token1, + ACTIONS(22036), 1, + sym_static_modifier, + ACTIONS(22038), 1, + sym__dim_keyword, + ACTIONS(22040), 1, + sym_with_events_modifier, + ACTIONS(22042), 1, + aux_sym_const_declaration_token1, + STATE(3686), 1, + sym_variable_declarator, + ACTIONS(21800), 3, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + [283716] = 12, + ACTIONS(6024), 1, + anon_sym_CARET, + ACTIONS(6047), 1, + anon_sym_BSLASH, + ACTIONS(22044), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(22046), 1, + anon_sym_AMP, + ACTIONS(22048), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22050), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22052), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22054), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(22056), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6045), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6051), 2, + anon_sym_PLUS, + anon_sym_DASH, + [283756] = 12, + ACTIONS(22060), 1, + anon_sym_CARET, + ACTIONS(22062), 1, + anon_sym_BSLASH, + ACTIONS(22064), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(22068), 1, + anon_sym_AMP, + ACTIONS(22070), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22072), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22074), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22076), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(22078), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22058), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(22066), 2, + anon_sym_PLUS, + anon_sym_DASH, + [283796] = 12, + ACTIONS(5873), 1, + anon_sym_CARET, + ACTIONS(5877), 1, + anon_sym_BSLASH, + ACTIONS(22080), 1, + aux_sym__print_output_call_binary_expression_token1, + ACTIONS(22082), 1, + anon_sym_AMP, + ACTIONS(22084), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22086), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22088), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22090), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(22092), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5875), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5881), 2, + anon_sym_PLUS, + anon_sym_DASH, + [283836] = 12, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(22094), 1, + sym_identifier, + ACTIONS(22096), 1, + aux_sym__for_each_header_token1, + STATE(11833), 1, + sym_call_expression, + STATE(12147), 1, + sym_member_expression, + STATE(12330), 1, + sym__callable_expression, + STATE(14821), 1, + sym__assignable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [283875] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22098), 12, + aux_sym_type_declaration_token1, + aux_sym_enum_declaration_token1, + aux_sym_declare_sub_statement_token1, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym_event_declaration_token1, + sym_static_modifier, + sym__dim_keyword, + sym_with_events_modifier, + aux_sym_const_declaration_token1, + sym_identifier, + [283896] = 12, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(22094), 1, + sym_identifier, + ACTIONS(22100), 1, + aux_sym__for_each_header_token1, + STATE(11833), 1, + sym_call_expression, + STATE(12147), 1, + sym_member_expression, + STATE(12330), 1, + sym__callable_expression, + STATE(15125), 1, + sym__assignable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [283935] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22102), 1, + sym_identifier, + ACTIONS(22104), 1, + aux_sym_redim_statement_token1, + STATE(5099), 1, + sym_redim_declarator, + STATE(12204), 1, + sym_member_expression, + STATE(12245), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [283971] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9923), 1, + sym_identifier, + ACTIONS(9925), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9931), 1, + aux_sym_dotted_type_expression_token1, + STATE(5098), 1, + sym_call_expression, + STATE(5394), 1, + sym__callable_expression, + STATE(5902), 1, + sym__assignable_expression, + STATE(6089), 1, + sym_member_expression, + ACTIONS(9929), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6126), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284007] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9913), 1, + sym_identifier, + ACTIONS(9915), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9921), 1, + aux_sym_dotted_type_expression_token1, + STATE(5281), 1, + sym__callable_expression, + STATE(5348), 1, + sym_call_expression, + STATE(5865), 1, + sym_member_expression, + STATE(7064), 1, + sym__assignable_expression, + ACTIONS(9919), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5994), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284043] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22106), 1, + sym_identifier, + ACTIONS(22108), 1, + aux_sym_redim_statement_token1, + STATE(5395), 1, + sym_redim_declarator, + STATE(12175), 1, + sym_member_expression, + STATE(12245), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284079] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9923), 1, + sym_identifier, + ACTIONS(9925), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9931), 1, + aux_sym_dotted_type_expression_token1, + STATE(5098), 1, + sym_call_expression, + STATE(5394), 1, + sym__callable_expression, + STATE(6089), 1, + sym_member_expression, + STATE(6549), 1, + sym__assignable_expression, + ACTIONS(9929), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6126), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284115] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9923), 1, + sym_identifier, + ACTIONS(9925), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9931), 1, + aux_sym_dotted_type_expression_token1, + STATE(5098), 1, + sym_call_expression, + STATE(5394), 1, + sym__callable_expression, + STATE(6089), 1, + sym_member_expression, + STATE(6596), 1, + sym__assignable_expression, + ACTIONS(9929), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6126), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284151] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9987), 1, + sym_identifier, + ACTIONS(9989), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9995), 1, + aux_sym_dotted_type_expression_token1, + STATE(5929), 1, + sym__callable_expression, + STATE(6127), 1, + sym_call_expression, + STATE(6743), 1, + sym_member_expression, + STATE(7207), 1, + sym__assignable_expression, + ACTIONS(9993), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6669), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284187] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7236), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_RPAREN, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [284205] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8889), 1, + sym_identifier, + ACTIONS(8891), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(8897), 1, + aux_sym_dotted_type_expression_token1, + STATE(4647), 1, + sym__callable_expression, + STATE(4663), 1, + sym_call_expression, + STATE(4772), 1, + sym__assignable_expression, + STATE(4783), 1, + sym_member_expression, + ACTIONS(8895), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4804), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284241] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9923), 1, + sym_identifier, + ACTIONS(9925), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9931), 1, + aux_sym_dotted_type_expression_token1, + STATE(5098), 1, + sym_call_expression, + STATE(5394), 1, + sym__callable_expression, + STATE(6079), 1, + sym__assignable_expression, + STATE(6089), 1, + sym_member_expression, + ACTIONS(9929), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6126), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284277] = 10, + ACTIONS(22112), 1, + aux_sym__property_get_header_token1, + ACTIONS(22114), 1, + sym_static_modifier, + STATE(12170), 1, + sym_visibility, + STATE(14687), 1, + sym__property_get_header, + STATE(14707), 1, + sym__property_let_header, + STATE(14712), 1, + sym__property_set_header, + STATE(14717), 1, + sym__procedure_modifier, + STATE(14734), 1, + sym__property_header, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22110), 3, + aux_sym_option_statement_token3, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + [284311] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22116), 1, + sym_identifier, + ACTIONS(22118), 1, + aux_sym_redim_statement_token1, + STATE(5879), 1, + sym_redim_declarator, + STATE(12245), 1, + sym_call_expression, + STATE(12259), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284347] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9957), 1, + sym_identifier, + ACTIONS(9959), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9965), 1, + aux_sym_dotted_type_expression_token1, + STATE(5097), 1, + sym__callable_expression, + STATE(5279), 1, + sym_call_expression, + STATE(6045), 1, + sym_member_expression, + STATE(6140), 1, + sym__assignable_expression, + ACTIONS(9963), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6097), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284383] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9987), 1, + sym_identifier, + ACTIONS(9989), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9995), 1, + aux_sym_dotted_type_expression_token1, + STATE(5929), 1, + sym__callable_expression, + STATE(6127), 1, + sym_call_expression, + STATE(6647), 1, + sym__assignable_expression, + STATE(6743), 1, + sym_member_expression, + ACTIONS(9993), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6669), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284419] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12776), 1, + sym__assignable_expression, + ACTIONS(11358), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284455] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12319), 1, + sym__assignable_expression, + ACTIONS(11358), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284491] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9957), 1, + sym_identifier, + ACTIONS(9959), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9965), 1, + aux_sym_dotted_type_expression_token1, + STATE(5097), 1, + sym__callable_expression, + STATE(5101), 1, + sym__assignable_expression, + STATE(5279), 1, + sym_call_expression, + STATE(6045), 1, + sym_member_expression, + ACTIONS(9963), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6097), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284527] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6975), 1, + sym_identifier, + ACTIONS(6977), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6983), 1, + aux_sym_dotted_type_expression_token1, + STATE(3750), 1, + sym__callable_expression, + STATE(3812), 1, + sym_call_expression, + STATE(3881), 1, + sym__assignable_expression, + STATE(3888), 1, + sym_member_expression, + ACTIONS(6981), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284563] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9987), 1, + sym_identifier, + ACTIONS(9989), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9995), 1, + aux_sym_dotted_type_expression_token1, + STATE(5929), 1, + sym__callable_expression, + STATE(6127), 1, + sym_call_expression, + STATE(6668), 1, + sym__assignable_expression, + STATE(6743), 1, + sym_member_expression, + ACTIONS(9993), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6669), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284599] = 10, + ACTIONS(22112), 1, + aux_sym__property_get_header_token1, + ACTIONS(22114), 1, + sym_static_modifier, + STATE(12170), 1, + sym_visibility, + STATE(14687), 1, + sym__property_get_header, + STATE(14707), 1, + sym__property_let_header, + STATE(14712), 1, + sym__property_set_header, + STATE(14717), 1, + sym__procedure_modifier, + STATE(14820), 1, + sym__property_header, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22110), 3, + aux_sym_option_statement_token3, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + [284633] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9805), 1, + sym_identifier, + ACTIONS(9807), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9813), 1, + aux_sym_dotted_type_expression_token1, + STATE(4788), 1, + sym__callable_expression, + STATE(4884), 1, + sym_call_expression, + STATE(4969), 1, + sym__assignable_expression, + STATE(5064), 1, + sym_member_expression, + ACTIONS(9811), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4902), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284669] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9805), 1, + sym_identifier, + ACTIONS(9807), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9813), 1, + aux_sym_dotted_type_expression_token1, + STATE(4788), 1, + sym__callable_expression, + STATE(4884), 1, + sym_call_expression, + STATE(5064), 1, + sym_member_expression, + STATE(5640), 1, + sym__assignable_expression, + ACTIONS(9811), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4902), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284705] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9987), 1, + sym_identifier, + ACTIONS(9989), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9995), 1, + aux_sym_dotted_type_expression_token1, + STATE(5929), 1, + sym__callable_expression, + STATE(6025), 1, + sym__assignable_expression, + STATE(6127), 1, + sym_call_expression, + STATE(6743), 1, + sym_member_expression, + ACTIONS(9993), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6669), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284741] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(22094), 1, + sym_identifier, + STATE(11833), 1, + sym_call_expression, + STATE(12147), 1, + sym_member_expression, + STATE(12330), 1, + sym__callable_expression, + STATE(15152), 1, + sym__assignable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284777] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9947), 1, + sym_identifier, + ACTIONS(9949), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9955), 1, + aux_sym_dotted_type_expression_token1, + STATE(5238), 1, + sym_call_expression, + STATE(5801), 1, + sym__callable_expression, + STATE(6043), 1, + sym_member_expression, + STATE(6967), 1, + sym__assignable_expression, + ACTIONS(9953), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5833), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284813] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9805), 1, + sym_identifier, + ACTIONS(9807), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9813), 1, + aux_sym_dotted_type_expression_token1, + STATE(4788), 1, + sym__callable_expression, + STATE(4884), 1, + sym_call_expression, + STATE(5064), 1, + sym_member_expression, + STATE(5680), 1, + sym__assignable_expression, + ACTIONS(9811), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4902), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284849] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9805), 1, + sym_identifier, + ACTIONS(9807), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9813), 1, + aux_sym_dotted_type_expression_token1, + STATE(4788), 1, + sym__callable_expression, + STATE(4884), 1, + sym_call_expression, + STATE(5015), 1, + sym__assignable_expression, + STATE(5064), 1, + sym_member_expression, + ACTIONS(9811), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4902), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284885] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12664), 1, + sym__assignable_expression, + ACTIONS(11358), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284921] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9933), 1, + sym_identifier, + ACTIONS(9935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9941), 1, + aux_sym_dotted_type_expression_token1, + STATE(5440), 1, + sym__callable_expression, + STATE(5455), 1, + sym_call_expression, + STATE(5931), 1, + sym__assignable_expression, + STATE(6120), 1, + sym_member_expression, + ACTIONS(9939), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5888), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284957] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9933), 1, + sym_identifier, + ACTIONS(9935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9941), 1, + aux_sym_dotted_type_expression_token1, + STATE(5440), 1, + sym__callable_expression, + STATE(5455), 1, + sym_call_expression, + STATE(6120), 1, + sym_member_expression, + STATE(6883), 1, + sym__assignable_expression, + ACTIONS(9939), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5888), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [284993] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9933), 1, + sym_identifier, + ACTIONS(9935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9941), 1, + aux_sym_dotted_type_expression_token1, + STATE(5440), 1, + sym__callable_expression, + STATE(5455), 1, + sym_call_expression, + STATE(6120), 1, + sym_member_expression, + STATE(7030), 1, + sym__assignable_expression, + ACTIONS(9939), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5888), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285029] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(22094), 1, + sym_identifier, + STATE(11833), 1, + sym_call_expression, + STATE(12147), 1, + sym_member_expression, + STATE(12330), 1, + sym__callable_expression, + STATE(13947), 1, + sym__assignable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285065] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22120), 1, + sym_identifier, + ACTIONS(22122), 1, + aux_sym_redim_statement_token1, + STATE(5750), 1, + sym_redim_declarator, + STATE(12245), 1, + sym_call_expression, + STATE(12278), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285101] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9835), 1, + sym_identifier, + ACTIONS(9837), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9843), 1, + aux_sym_dotted_type_expression_token1, + STATE(4937), 1, + sym_call_expression, + STATE(4998), 1, + sym__callable_expression, + STATE(5152), 1, + sym__assignable_expression, + STATE(5280), 1, + sym_member_expression, + ACTIONS(9841), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5270), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285137] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9957), 1, + sym_identifier, + ACTIONS(9959), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9965), 1, + aux_sym_dotted_type_expression_token1, + STATE(5097), 1, + sym__callable_expression, + STATE(5279), 1, + sym_call_expression, + STATE(6045), 1, + sym_member_expression, + STATE(6930), 1, + sym__assignable_expression, + ACTIONS(9963), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6097), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285173] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9913), 1, + sym_identifier, + ACTIONS(9915), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9921), 1, + aux_sym_dotted_type_expression_token1, + STATE(5281), 1, + sym__callable_expression, + STATE(5348), 1, + sym_call_expression, + STATE(5865), 1, + sym_member_expression, + STATE(6103), 1, + sym__assignable_expression, + ACTIONS(9919), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5994), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285209] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9957), 1, + sym_identifier, + ACTIONS(9959), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9965), 1, + aux_sym_dotted_type_expression_token1, + STATE(5097), 1, + sym__callable_expression, + STATE(5279), 1, + sym_call_expression, + STATE(6045), 1, + sym_member_expression, + STATE(6789), 1, + sym__assignable_expression, + ACTIONS(9963), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6097), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285245] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(22094), 1, + sym_identifier, + STATE(11833), 1, + sym_call_expression, + STATE(12147), 1, + sym_member_expression, + STATE(12330), 1, + sym__callable_expression, + STATE(14060), 1, + sym__assignable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285281] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9987), 1, + sym_identifier, + ACTIONS(9989), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9995), 1, + aux_sym_dotted_type_expression_token1, + STATE(5929), 1, + sym__callable_expression, + STATE(6127), 1, + sym_call_expression, + STATE(6743), 1, + sym_member_expression, + STATE(7247), 1, + sym__assignable_expression, + ACTIONS(9993), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6669), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285317] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9805), 1, + sym_identifier, + ACTIONS(9807), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9813), 1, + aux_sym_dotted_type_expression_token1, + STATE(4788), 1, + sym__callable_expression, + STATE(4884), 1, + sym_call_expression, + STATE(5064), 1, + sym_member_expression, + STATE(5516), 1, + sym__assignable_expression, + ACTIONS(9811), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4902), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285353] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22124), 1, + sym_identifier, + ACTIONS(22126), 1, + aux_sym_redim_statement_token1, + STATE(4026), 1, + sym_redim_declarator, + STATE(12219), 1, + sym_member_expression, + STATE(12245), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285389] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9805), 1, + sym_identifier, + ACTIONS(9807), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9813), 1, + aux_sym_dotted_type_expression_token1, + STATE(4788), 1, + sym__callable_expression, + STATE(4791), 1, + sym__assignable_expression, + STATE(4884), 1, + sym_call_expression, + STATE(5064), 1, + sym_member_expression, + ACTIONS(9811), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4902), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285425] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(22094), 1, + sym_identifier, + STATE(11833), 1, + sym_call_expression, + STATE(12147), 1, + sym_member_expression, + STATE(12330), 1, + sym__callable_expression, + STATE(14163), 1, + sym__assignable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285461] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22128), 1, + sym_identifier, + ACTIONS(22130), 1, + aux_sym_redim_statement_token1, + STATE(5698), 1, + sym_redim_declarator, + STATE(12245), 1, + sym_call_expression, + STATE(12290), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285497] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9913), 1, + sym_identifier, + ACTIONS(9915), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9921), 1, + aux_sym_dotted_type_expression_token1, + STATE(5281), 1, + sym__callable_expression, + STATE(5348), 1, + sym_call_expression, + STATE(5865), 1, + sym_member_expression, + STATE(6024), 1, + sym__assignable_expression, + ACTIONS(9919), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5994), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285533] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9805), 1, + sym_identifier, + ACTIONS(9807), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9813), 1, + aux_sym_dotted_type_expression_token1, + STATE(4788), 1, + sym__callable_expression, + STATE(4884), 1, + sym_call_expression, + STATE(5064), 1, + sym_member_expression, + STATE(5536), 1, + sym__assignable_expression, + ACTIONS(9811), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4902), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285569] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6871), 1, + sym_identifier, + ACTIONS(6873), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6879), 1, + aux_sym_dotted_type_expression_token1, + STATE(3557), 1, + sym__callable_expression, + STATE(3562), 1, + sym_call_expression, + STATE(3796), 1, + sym_member_expression, + STATE(4033), 1, + sym__assignable_expression, + ACTIONS(6877), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3720), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285605] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(22094), 1, + sym_identifier, + STATE(11833), 1, + sym_call_expression, + STATE(12147), 1, + sym_member_expression, + STATE(12330), 1, + sym__callable_expression, + STATE(14251), 1, + sym__assignable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285641] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9933), 1, + sym_identifier, + ACTIONS(9935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9941), 1, + aux_sym_dotted_type_expression_token1, + STATE(5440), 1, + sym__callable_expression, + STATE(5455), 1, + sym_call_expression, + STATE(6120), 1, + sym_member_expression, + STATE(6891), 1, + sym__assignable_expression, + ACTIONS(9939), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5888), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285677] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22132), 1, + sym_identifier, + ACTIONS(22134), 1, + aux_sym_redim_statement_token1, + STATE(5777), 1, + sym_redim_declarator, + STATE(12245), 1, + sym_call_expression, + STATE(12258), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285713] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6871), 1, + sym_identifier, + ACTIONS(6873), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6879), 1, + aux_sym_dotted_type_expression_token1, + STATE(3557), 1, + sym__callable_expression, + STATE(3562), 1, + sym_call_expression, + STATE(3796), 1, + sym_member_expression, + STATE(3899), 1, + sym__assignable_expression, + ACTIONS(6877), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3720), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285749] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9933), 1, + sym_identifier, + ACTIONS(9935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9941), 1, + aux_sym_dotted_type_expression_token1, + STATE(5440), 1, + sym__callable_expression, + STATE(5455), 1, + sym_call_expression, + STATE(5761), 1, + sym__assignable_expression, + STATE(6120), 1, + sym_member_expression, + ACTIONS(9939), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5888), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285785] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22136), 1, + sym_identifier, + ACTIONS(22138), 1, + aux_sym_redim_statement_token1, + STATE(3556), 1, + sym_redim_declarator, + STATE(12210), 1, + sym_member_expression, + STATE(12245), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285821] = 10, + ACTIONS(22112), 1, + aux_sym__property_get_header_token1, + ACTIONS(22114), 1, + sym_static_modifier, + STATE(12170), 1, + sym_visibility, + STATE(14687), 1, + sym__property_get_header, + STATE(14707), 1, + sym__property_let_header, + STATE(14712), 1, + sym__property_set_header, + STATE(14717), 1, + sym__procedure_modifier, + STATE(14993), 1, + sym__property_header, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22110), 3, + aux_sym_option_statement_token3, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + [285855] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(22094), 1, + sym_identifier, + STATE(11833), 1, + sym_call_expression, + STATE(12147), 1, + sym_member_expression, + STATE(12330), 1, + sym__callable_expression, + STATE(14339), 1, + sym__assignable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285891] = 10, + ACTIONS(22112), 1, + aux_sym__property_get_header_token1, + ACTIONS(22114), 1, + sym_static_modifier, + STATE(12170), 1, + sym_visibility, + STATE(14687), 1, + sym__property_get_header, + STATE(14707), 1, + sym__property_let_header, + STATE(14712), 1, + sym__property_set_header, + STATE(14717), 1, + sym__procedure_modifier, + STATE(15055), 1, + sym__property_header, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22110), 3, + aux_sym_option_statement_token3, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + [285925] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9883), 1, + sym_identifier, + ACTIONS(9885), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9891), 1, + aux_sym_dotted_type_expression_token1, + STATE(4940), 1, + sym__callable_expression, + STATE(5022), 1, + sym_call_expression, + STATE(5408), 1, + sym_member_expression, + STATE(5752), 1, + sym__assignable_expression, + ACTIONS(9889), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5662), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285961] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9913), 1, + sym_identifier, + ACTIONS(9915), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9921), 1, + aux_sym_dotted_type_expression_token1, + STATE(5281), 1, + sym__callable_expression, + STATE(5348), 1, + sym_call_expression, + STATE(5865), 1, + sym_member_expression, + STATE(6755), 1, + sym__assignable_expression, + ACTIONS(9919), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5994), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [285997] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9957), 1, + sym_identifier, + ACTIONS(9959), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9965), 1, + aux_sym_dotted_type_expression_token1, + STATE(5097), 1, + sym__callable_expression, + STATE(5279), 1, + sym_call_expression, + STATE(6045), 1, + sym_member_expression, + STATE(6078), 1, + sym__assignable_expression, + ACTIONS(9963), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6097), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286033] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6871), 1, + sym_identifier, + ACTIONS(6873), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6879), 1, + aux_sym_dotted_type_expression_token1, + STATE(3557), 1, + sym__callable_expression, + STATE(3562), 1, + sym_call_expression, + STATE(3565), 1, + sym__assignable_expression, + STATE(3796), 1, + sym_member_expression, + ACTIONS(6877), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3720), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286069] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(22094), 1, + sym_identifier, + STATE(11833), 1, + sym_call_expression, + STATE(12147), 1, + sym_member_expression, + STATE(12330), 1, + sym__callable_expression, + STATE(14427), 1, + sym__assignable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286105] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9987), 1, + sym_identifier, + ACTIONS(9989), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9995), 1, + aux_sym_dotted_type_expression_token1, + STATE(5929), 1, + sym__callable_expression, + STATE(6127), 1, + sym_call_expression, + STATE(6743), 1, + sym_member_expression, + STATE(7218), 1, + sym__assignable_expression, + ACTIONS(9993), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6669), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286141] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6871), 1, + sym_identifier, + ACTIONS(6873), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6879), 1, + aux_sym_dotted_type_expression_token1, + STATE(3557), 1, + sym__callable_expression, + STATE(3562), 1, + sym_call_expression, + STATE(3796), 1, + sym_member_expression, + STATE(3914), 1, + sym__assignable_expression, + ACTIONS(6877), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3720), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286177] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6871), 1, + sym_identifier, + ACTIONS(6873), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6879), 1, + aux_sym_dotted_type_expression_token1, + STATE(3557), 1, + sym__callable_expression, + STATE(3562), 1, + sym_call_expression, + STATE(3796), 1, + sym_member_expression, + STATE(3998), 1, + sym__assignable_expression, + ACTIONS(6877), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3720), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286213] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(22094), 1, + sym_identifier, + STATE(11833), 1, + sym_call_expression, + STATE(12147), 1, + sym_member_expression, + STATE(12330), 1, + sym__callable_expression, + STATE(14515), 1, + sym__assignable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286249] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9933), 1, + sym_identifier, + ACTIONS(9935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9941), 1, + aux_sym_dotted_type_expression_token1, + STATE(5440), 1, + sym__callable_expression, + STATE(5455), 1, + sym_call_expression, + STATE(6120), 1, + sym_member_expression, + STATE(6152), 1, + sym__assignable_expression, + ACTIONS(9939), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5888), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286285] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9947), 1, + sym_identifier, + ACTIONS(9949), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9955), 1, + aux_sym_dotted_type_expression_token1, + STATE(5238), 1, + sym_call_expression, + STATE(5759), 1, + sym__assignable_expression, + STATE(5801), 1, + sym__callable_expression, + STATE(6043), 1, + sym_member_expression, + ACTIONS(9953), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5833), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286321] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9913), 1, + sym_identifier, + ACTIONS(9915), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9921), 1, + aux_sym_dotted_type_expression_token1, + STATE(5281), 1, + sym__callable_expression, + STATE(5348), 1, + sym_call_expression, + STATE(5865), 1, + sym_member_expression, + STATE(6665), 1, + sym__assignable_expression, + ACTIONS(9919), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5994), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286357] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(22094), 1, + sym_identifier, + STATE(11833), 1, + sym_call_expression, + STATE(12147), 1, + sym_member_expression, + STATE(12330), 1, + sym__callable_expression, + STATE(14600), 1, + sym__assignable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286393] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6808), 1, + sym_identifier, + ACTIONS(6814), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6820), 1, + aux_sym_dotted_type_expression_token1, + STATE(3049), 1, + sym__callable_expression, + STATE(3184), 1, + sym_call_expression, + STATE(3610), 1, + sym__assignable_expression, + STATE(3703), 1, + sym_member_expression, + ACTIONS(6818), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3537), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286429] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(22094), 1, + sym_identifier, + STATE(11833), 1, + sym_call_expression, + STATE(12147), 1, + sym_member_expression, + STATE(12330), 1, + sym__callable_expression, + STATE(15016), 1, + sym__assignable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286465] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6871), 1, + sym_identifier, + ACTIONS(6873), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6879), 1, + aux_sym_dotted_type_expression_token1, + STATE(3557), 1, + sym__callable_expression, + STATE(3562), 1, + sym_call_expression, + STATE(3726), 1, + sym__assignable_expression, + STATE(3796), 1, + sym_member_expression, + ACTIONS(6877), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3720), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286501] = 10, + ACTIONS(22112), 1, + aux_sym__property_get_header_token1, + ACTIONS(22114), 1, + sym_static_modifier, + STATE(12170), 1, + sym_visibility, + STATE(14668), 1, + sym__property_header, + STATE(14687), 1, + sym__property_get_header, + STATE(14707), 1, + sym__property_let_header, + STATE(14712), 1, + sym__property_set_header, + STATE(14717), 1, + sym__procedure_modifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22110), 3, + aux_sym_option_statement_token3, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + [286535] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9947), 1, + sym_identifier, + ACTIONS(9949), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9955), 1, + aux_sym_dotted_type_expression_token1, + STATE(5238), 1, + sym_call_expression, + STATE(5801), 1, + sym__callable_expression, + STATE(6043), 1, + sym_member_expression, + STATE(7039), 1, + sym__assignable_expression, + ACTIONS(9953), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5833), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286571] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(22094), 1, + sym_identifier, + STATE(11833), 1, + sym_call_expression, + STATE(12147), 1, + sym_member_expression, + STATE(12330), 1, + sym__callable_expression, + STATE(13852), 1, + sym__assignable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286607] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7044), 11, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_RPAREN, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [286625] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7032), 1, + sym_identifier, + ACTIONS(7034), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(7040), 1, + aux_sym_dotted_type_expression_token1, + STATE(4025), 1, + sym__callable_expression, + STATE(4181), 1, + sym_call_expression, + STATE(4276), 1, + sym__assignable_expression, + STATE(4299), 1, + sym_member_expression, + ACTIONS(7038), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4274), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286661] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12119), 1, + sym__assignable_expression, + ACTIONS(11358), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286697] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12233), 1, + sym__assignable_expression, + ACTIONS(11358), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286733] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7032), 1, + sym_identifier, + ACTIONS(7034), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(7040), 1, + aux_sym_dotted_type_expression_token1, + STATE(4025), 1, + sym__callable_expression, + STATE(4181), 1, + sym_call_expression, + STATE(4299), 1, + sym_member_expression, + STATE(4412), 1, + sym__assignable_expression, + ACTIONS(7038), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4274), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286769] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7032), 1, + sym_identifier, + ACTIONS(7034), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(7040), 1, + aux_sym_dotted_type_expression_token1, + STATE(4025), 1, + sym__callable_expression, + STATE(4181), 1, + sym_call_expression, + STATE(4299), 1, + sym_member_expression, + STATE(4447), 1, + sym__assignable_expression, + ACTIONS(7038), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4274), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286805] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7032), 1, + sym_identifier, + ACTIONS(7034), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(7040), 1, + aux_sym_dotted_type_expression_token1, + STATE(4025), 1, + sym__callable_expression, + STATE(4181), 1, + sym_call_expression, + STATE(4229), 1, + sym__assignable_expression, + STATE(4299), 1, + sym_member_expression, + ACTIONS(7038), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4274), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286841] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9947), 1, + sym_identifier, + ACTIONS(9949), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9955), 1, + aux_sym_dotted_type_expression_token1, + STATE(5238), 1, + sym_call_expression, + STATE(5801), 1, + sym__callable_expression, + STATE(6041), 1, + sym__assignable_expression, + STATE(6043), 1, + sym_member_expression, + ACTIONS(9953), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5833), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286877] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9913), 1, + sym_identifier, + ACTIONS(9915), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9921), 1, + aux_sym_dotted_type_expression_token1, + STATE(5281), 1, + sym__callable_expression, + STATE(5348), 1, + sym_call_expression, + STATE(5865), 1, + sym_member_expression, + STATE(7034), 1, + sym__assignable_expression, + ACTIONS(9919), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5994), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286913] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9923), 1, + sym_identifier, + ACTIONS(9925), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9931), 1, + aux_sym_dotted_type_expression_token1, + STATE(5098), 1, + sym_call_expression, + STATE(5394), 1, + sym__callable_expression, + STATE(6089), 1, + sym_member_expression, + STATE(6362), 1, + sym__assignable_expression, + ACTIONS(9929), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6126), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286949] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9947), 1, + sym_identifier, + ACTIONS(9949), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9955), 1, + aux_sym_dotted_type_expression_token1, + STATE(5238), 1, + sym_call_expression, + STATE(5801), 1, + sym__callable_expression, + STATE(6043), 1, + sym_member_expression, + STATE(6644), 1, + sym__assignable_expression, + ACTIONS(9953), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5833), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [286985] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22140), 1, + sym_identifier, + ACTIONS(22142), 1, + aux_sym_redim_statement_token1, + STATE(4789), 1, + sym_redim_declarator, + STATE(12230), 1, + sym_member_expression, + STATE(12245), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287021] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(13005), 1, + sym__assignable_expression, + ACTIONS(11358), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287057] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22144), 1, + sym_identifier, + ACTIONS(22146), 1, + aux_sym_redim_statement_token1, + STATE(12121), 1, + sym_redim_declarator, + STATE(12245), 1, + sym_call_expression, + STATE(12397), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287093] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9957), 1, + sym_identifier, + ACTIONS(9959), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9965), 1, + aux_sym_dotted_type_expression_token1, + STATE(5097), 1, + sym__callable_expression, + STATE(5279), 1, + sym_call_expression, + STATE(6045), 1, + sym_member_expression, + STATE(6996), 1, + sym__assignable_expression, + ACTIONS(9963), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6097), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287129] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9947), 1, + sym_identifier, + ACTIONS(9949), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9955), 1, + aux_sym_dotted_type_expression_token1, + STATE(5238), 1, + sym_call_expression, + STATE(5801), 1, + sym__callable_expression, + STATE(6043), 1, + sym_member_expression, + STATE(7065), 1, + sym__assignable_expression, + ACTIONS(9953), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5833), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287165] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9923), 1, + sym_identifier, + ACTIONS(9925), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9931), 1, + aux_sym_dotted_type_expression_token1, + STATE(5098), 1, + sym_call_expression, + STATE(5394), 1, + sym__callable_expression, + STATE(5397), 1, + sym__assignable_expression, + STATE(6089), 1, + sym_member_expression, + ACTIONS(9929), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6126), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287201] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9867), 1, + sym_identifier, + ACTIONS(9869), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9875), 1, + aux_sym_dotted_type_expression_token1, + STATE(4943), 1, + sym_call_expression, + STATE(5080), 1, + sym__callable_expression, + STATE(5506), 1, + sym__assignable_expression, + STATE(5562), 1, + sym_member_expression, + ACTIONS(9873), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5656), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287237] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9947), 1, + sym_identifier, + ACTIONS(9949), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9955), 1, + aux_sym_dotted_type_expression_token1, + STATE(5238), 1, + sym_call_expression, + STATE(5801), 1, + sym__callable_expression, + STATE(6037), 1, + sym__assignable_expression, + STATE(6043), 1, + sym_member_expression, + ACTIONS(9953), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5833), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287273] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6871), 1, + sym_identifier, + ACTIONS(6873), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(6879), 1, + aux_sym_dotted_type_expression_token1, + STATE(3557), 1, + sym__callable_expression, + STATE(3562), 1, + sym_call_expression, + STATE(3780), 1, + sym__assignable_expression, + STATE(3796), 1, + sym_member_expression, + ACTIONS(6877), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3720), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287309] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7032), 1, + sym_identifier, + ACTIONS(7034), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(7040), 1, + aux_sym_dotted_type_expression_token1, + STATE(4025), 1, + sym__callable_expression, + STATE(4181), 1, + sym_call_expression, + STATE(4299), 1, + sym_member_expression, + STATE(4535), 1, + sym__assignable_expression, + ACTIONS(7038), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4274), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287345] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9987), 1, + sym_identifier, + ACTIONS(9989), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9995), 1, + aux_sym_dotted_type_expression_token1, + STATE(5929), 1, + sym__callable_expression, + STATE(6127), 1, + sym_call_expression, + STATE(6743), 1, + sym_member_expression, + STATE(7167), 1, + sym__assignable_expression, + ACTIONS(9993), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6669), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287381] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9957), 1, + sym_identifier, + ACTIONS(9959), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9965), 1, + aux_sym_dotted_type_expression_token1, + STATE(5097), 1, + sym__callable_expression, + STATE(5279), 1, + sym_call_expression, + STATE(6045), 1, + sym_member_expression, + STATE(6761), 1, + sym__assignable_expression, + ACTIONS(9963), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6097), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287417] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(22094), 1, + sym_identifier, + STATE(11833), 1, + sym_call_expression, + STATE(12147), 1, + sym_member_expression, + STATE(12330), 1, + sym__callable_expression, + STATE(15010), 1, + sym__assignable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287453] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9923), 1, + sym_identifier, + ACTIONS(9925), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9931), 1, + aux_sym_dotted_type_expression_token1, + STATE(5098), 1, + sym_call_expression, + STATE(5394), 1, + sym__callable_expression, + STATE(6089), 1, + sym_member_expression, + STATE(6402), 1, + sym__assignable_expression, + ACTIONS(9929), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6126), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287489] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7032), 1, + sym_identifier, + ACTIONS(7034), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(7040), 1, + aux_sym_dotted_type_expression_token1, + STATE(4025), 1, + sym__callable_expression, + STATE(4027), 1, + sym__assignable_expression, + STATE(4181), 1, + sym_call_expression, + STATE(4299), 1, + sym_member_expression, + ACTIONS(7038), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4274), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287525] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9913), 1, + sym_identifier, + ACTIONS(9915), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9921), 1, + aux_sym_dotted_type_expression_token1, + STATE(5281), 1, + sym__callable_expression, + STATE(5348), 1, + sym_call_expression, + STATE(5778), 1, + sym__assignable_expression, + STATE(5865), 1, + sym_member_expression, + ACTIONS(9919), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5994), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287561] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(21097), 1, + aux_sym_dotted_type_expression_token1, + STATE(11647), 1, + sym_call_expression, + STATE(11705), 1, + sym_member_expression, + STATE(11961), 1, + sym__callable_expression, + STATE(12757), 1, + sym__assignable_expression, + ACTIONS(11358), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287597] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9825), 1, + sym_identifier, + ACTIONS(9827), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9833), 1, + aux_sym_dotted_type_expression_token1, + STATE(4901), 1, + sym_call_expression, + STATE(4977), 1, + sym__callable_expression, + STATE(5323), 1, + sym__assignable_expression, + STATE(5393), 1, + sym_member_expression, + ACTIONS(9831), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5480), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287633] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7032), 1, + sym_identifier, + ACTIONS(7034), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(7040), 1, + aux_sym_dotted_type_expression_token1, + STATE(4025), 1, + sym__callable_expression, + STATE(4181), 1, + sym_call_expression, + STATE(4299), 1, + sym_member_expression, + STATE(4563), 1, + sym__assignable_expression, + ACTIONS(7038), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4274), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287669] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9933), 1, + sym_identifier, + ACTIONS(9935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(9941), 1, + aux_sym_dotted_type_expression_token1, + STATE(5440), 1, + sym__callable_expression, + STATE(5455), 1, + sym_call_expression, + STATE(6120), 1, + sym_member_expression, + STATE(6333), 1, + sym__assignable_expression, + ACTIONS(9939), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5888), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287705] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22164), 1, + aux_sym_while_statement_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [287740] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22180), 1, + aux_sym_do_statement_token2, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [287775] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22186), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [287810] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22188), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [287845] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22190), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [287880] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22120), 1, + sym_identifier, + STATE(5468), 1, + sym_redim_declarator, + STATE(12245), 1, + sym_call_expression, + STATE(12278), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287913] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22192), 1, + anon_sym_DOT, + STATE(11136), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4375), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(4377), 6, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + [287938] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22128), 1, + sym_identifier, + STATE(5307), 1, + sym_redim_declarator, + STATE(12245), 1, + sym_call_expression, + STATE(12290), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [287971] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22120), 1, + sym_identifier, + STATE(5847), 1, + sym_redim_declarator, + STATE(12245), 1, + sym_call_expression, + STATE(12278), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [288004] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22194), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [288039] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9987), 1, + sym_identifier, + ACTIONS(9989), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22196), 1, + aux_sym_dotted_type_expression_token1, + STATE(6743), 1, + sym_member_expression, + STATE(6928), 1, + sym__callable_expression, + STATE(12171), 1, + sym_call_expression, + ACTIONS(9993), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6669), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [288072] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22116), 1, + sym_identifier, + STATE(6486), 1, + sym_redim_declarator, + STATE(12245), 1, + sym_call_expression, + STATE(12259), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [288105] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9805), 1, + sym_identifier, + ACTIONS(9807), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22198), 1, + aux_sym_dotted_type_expression_token1, + STATE(4988), 1, + sym__callable_expression, + STATE(5064), 1, + sym_member_expression, + STATE(12312), 1, + sym_call_expression, + ACTIONS(9811), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4902), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [288138] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22106), 1, + sym_identifier, + STATE(5483), 1, + sym_redim_declarator, + STATE(12175), 1, + sym_member_expression, + STATE(12245), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [288171] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22136), 1, + sym_identifier, + STATE(3677), 1, + sym_redim_declarator, + STATE(12210), 1, + sym_member_expression, + STATE(12245), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [288204] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + ACTIONS(22200), 1, + aux_sym_dotted_type_expression_token1, + STATE(11705), 1, + sym_member_expression, + STATE(12161), 1, + sym__callable_expression, + STATE(12223), 1, + sym_call_expression, + ACTIONS(11358), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [288237] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22212), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [288272] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22124), 1, + sym_identifier, + STATE(4046), 1, + sym_redim_declarator, + STATE(12219), 1, + sym_member_expression, + STATE(12245), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [288305] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22106), 1, + sym_identifier, + STATE(5864), 1, + sym_redim_declarator, + STATE(12175), 1, + sym_member_expression, + STATE(12245), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [288338] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22124), 1, + sym_identifier, + STATE(4265), 1, + sym_redim_declarator, + STATE(12219), 1, + sym_member_expression, + STATE(12245), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [288371] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22220), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [288406] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22222), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [288441] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22224), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [288476] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22226), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [288511] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22228), 1, + anon_sym_DOT, + STATE(11136), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4362), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(4364), 6, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + [288536] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22231), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [288571] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22233), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [288606] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22136), 1, + sym_identifier, + STATE(3832), 1, + sym_redim_declarator, + STATE(12210), 1, + sym_member_expression, + STATE(12245), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [288639] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(22235), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [288674] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22237), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [288709] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22239), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [288744] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22241), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [288779] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22243), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [288814] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22245), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [288849] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22247), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [288884] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22249), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [288919] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22251), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [288954] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22253), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [288989] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22255), 10, + anon_sym_COLON, + aux_sym_frm_begin_block_token2, + aux_sym_select_statement_token2, + aux_sym__multiline_for_tail_token1, + aux_sym__for_header_token1, + aux_sym_do_statement_token1, + aux_sym_do_statement_token2, + aux_sym_do_condition_token1, + aux_sym_while_statement_token1, + aux_sym_with_statement_token1, + [289006] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21664), 1, + sym_identifier, + ACTIONS(21666), 1, + sym_newline, + ACTIONS(21668), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22259), 1, + aux_sym_type_preprocessor_else_token1, + STATE(12532), 1, + sym_type_preprocessor_block, + ACTIONS(22257), 2, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + STATE(11377), 3, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_preprocessor_block_repeat1, + [289037] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9913), 1, + sym_identifier, + ACTIONS(9915), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22261), 1, + aux_sym_dotted_type_expression_token1, + STATE(5865), 1, + sym_member_expression, + STATE(6177), 1, + sym__callable_expression, + STATE(12348), 1, + sym_call_expression, + ACTIONS(9919), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5994), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [289070] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22263), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289105] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(22265), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289140] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22267), 1, + anon_sym_LPAREN, + ACTIONS(22269), 1, + anon_sym_STAR, + STATE(11610), 1, + sym_fixed_string_length, + STATE(11867), 1, + sym_array_bounds, + ACTIONS(7230), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(7232), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [289169] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(22271), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289204] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(22273), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289239] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22275), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289274] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22277), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289309] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22279), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289344] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9923), 1, + sym_identifier, + ACTIONS(9925), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22281), 1, + aux_sym_dotted_type_expression_token1, + STATE(5989), 1, + sym__callable_expression, + STATE(6089), 1, + sym_member_expression, + STATE(12385), 1, + sym_call_expression, + ACTIONS(9929), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6126), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [289377] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22140), 1, + sym_identifier, + STATE(4798), 1, + sym_redim_declarator, + STATE(12230), 1, + sym_member_expression, + STATE(12245), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [289410] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22283), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289445] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22267), 1, + anon_sym_LPAREN, + ACTIONS(22269), 1, + anon_sym_STAR, + STATE(11603), 1, + sym_fixed_string_length, + STATE(11806), 1, + sym_array_bounds, + ACTIONS(7134), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(7136), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [289474] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6871), 1, + sym_identifier, + ACTIONS(6873), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22285), 1, + aux_sym_dotted_type_expression_token1, + STATE(3783), 1, + sym__callable_expression, + STATE(3796), 1, + sym_member_expression, + STATE(12310), 1, + sym_call_expression, + ACTIONS(6877), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3720), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [289507] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22128), 1, + sym_identifier, + STATE(5826), 1, + sym_redim_declarator, + STATE(12245), 1, + sym_call_expression, + STATE(12290), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [289540] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22140), 1, + sym_identifier, + STATE(4961), 1, + sym_redim_declarator, + STATE(12230), 1, + sym_member_expression, + STATE(12245), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [289573] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22287), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289608] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22289), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289643] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22291), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289678] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22293), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289713] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22295), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289748] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22297), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289783] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22299), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289818] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22301), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289853] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22303), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289888] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(22305), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289923] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(22307), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289958] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22309), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [289993] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22311), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [290028] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22313), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [290063] = 4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22317), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(7981), 2, + sym__literal, + sym_boolean_literal, + ACTIONS(22315), 6, + sym_string_literal, + sym_number_literal, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + sym_date_literal, + [290084] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22319), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [290119] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22321), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [290154] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22323), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [290189] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22325), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [290224] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9957), 1, + sym_identifier, + ACTIONS(9959), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22327), 1, + aux_sym_dotted_type_expression_token1, + STATE(5875), 1, + sym__callable_expression, + STATE(6045), 1, + sym_member_expression, + STATE(12281), 1, + sym_call_expression, + ACTIONS(9963), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6097), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [290257] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(22329), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [290292] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(22331), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [290327] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7032), 1, + sym_identifier, + ACTIONS(7034), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22333), 1, + aux_sym_dotted_type_expression_token1, + STATE(4299), 1, + sym_member_expression, + STATE(4319), 1, + sym__callable_expression, + STATE(12305), 1, + sym_call_expression, + ACTIONS(7038), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4274), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [290360] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22192), 1, + anon_sym_DOT, + STATE(11118), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4369), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(4371), 6, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + [290385] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(22335), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [290420] = 4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22339), 2, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + STATE(15052), 2, + sym__literal, + sym_boolean_literal, + ACTIONS(22337), 6, + sym_string_literal, + sym_number_literal, + sym_nothing_literal, + sym_null_literal, + sym_empty_literal, + sym_date_literal, + [290441] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(22341), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [290476] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22343), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [290511] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22345), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [290546] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9933), 1, + sym_identifier, + ACTIONS(9935), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22347), 1, + aux_sym_dotted_type_expression_token1, + STATE(6120), 1, + sym_member_expression, + STATE(6287), 1, + sym__callable_expression, + STATE(12355), 1, + sym_call_expression, + ACTIONS(9939), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5888), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [290579] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22144), 1, + sym_identifier, + STATE(12066), 1, + sym_redim_declarator, + STATE(12245), 1, + sym_call_expression, + STATE(12397), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [290612] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(22349), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [290647] = 8, + ACTIONS(22351), 1, + anon_sym_EQ, + ACTIONS(22353), 1, + anon_sym_LPAREN, + ACTIONS(22355), 1, + aux_sym_as_type_clause_token1, + STATE(11624), 1, + sym_array_bounds, + STATE(11818), 1, + sym_as_type_clause, + STATE(12408), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6991), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [290676] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22102), 1, + sym_identifier, + STATE(5121), 1, + sym_redim_declarator, + STATE(12204), 1, + sym_member_expression, + STATE(12245), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [290709] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22102), 1, + sym_identifier, + STATE(6080), 1, + sym_redim_declarator, + STATE(12204), 1, + sym_member_expression, + STATE(12245), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [290742] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22357), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [290777] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22132), 1, + sym_identifier, + STATE(5792), 1, + sym_redim_declarator, + STATE(12245), 1, + sym_call_expression, + STATE(12258), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [290810] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22144), 1, + sym_identifier, + STATE(12227), 1, + sym_redim_declarator, + STATE(12245), 1, + sym_call_expression, + STATE(12397), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [290843] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22359), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [290878] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22132), 1, + sym_identifier, + STATE(6157), 1, + sym_redim_declarator, + STATE(12245), 1, + sym_call_expression, + STATE(12258), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [290911] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(22361), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [290946] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22363), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [290981] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(22365), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [291016] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22367), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [291051] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22369), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [291086] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(22371), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [291121] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22373), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [291156] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22375), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [291191] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22377), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [291226] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(22379), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [291261] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22381), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [291296] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22383), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [291331] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22385), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [291366] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22387), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [291401] = 11, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(22389), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [291436] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9947), 1, + sym_identifier, + ACTIONS(9949), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22391), 1, + aux_sym_dotted_type_expression_token1, + STATE(5970), 1, + sym__callable_expression, + STATE(6043), 1, + sym_member_expression, + STATE(12331), 1, + sym_call_expression, + ACTIONS(9953), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5833), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [291469] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(22393), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [291504] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22395), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [291539] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22397), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [291574] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22116), 1, + sym_identifier, + STATE(6213), 1, + sym_redim_declarator, + STATE(12245), 1, + sym_call_expression, + STATE(12259), 1, + sym_member_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [291607] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(22399), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [291642] = 11, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(22401), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [291677] = 4, + STATE(8522), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [291697] = 4, + STATE(9757), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [291717] = 4, + STATE(9772), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [291737] = 4, + STATE(9786), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [291757] = 4, + STATE(9800), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [291777] = 4, + STATE(9814), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [291797] = 4, + STATE(9828), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [291817] = 4, + STATE(9842), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [291837] = 4, + STATE(9856), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [291857] = 4, + STATE(9871), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [291877] = 4, + STATE(9886), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [291897] = 4, + STATE(9887), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [291917] = 4, + STATE(9888), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [291937] = 4, + STATE(9889), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [291957] = 4, + STATE(9890), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [291977] = 4, + STATE(9891), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [291997] = 4, + STATE(9892), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [292017] = 4, + STATE(9893), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [292037] = 4, + STATE(9894), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [292057] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22403), 1, + sym_identifier, + STATE(1865), 1, + sym_member_expression, + STATE(12376), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12781), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(1933), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [292087] = 4, + STATE(8515), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [292107] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22405), 1, + sym_identifier, + ACTIONS(22409), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22411), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22407), 2, + sym_newline, + anon_sym_COLON, + STATE(11258), 4, + sym__statement_separator, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_declaration_repeat1, + [292133] = 4, + STATE(9533), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [292153] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22413), 1, + sym_identifier, + STATE(823), 1, + sym_member_expression, + STATE(12334), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4266), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(865), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [292183] = 4, + STATE(9037), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [292203] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22415), 1, + sym_identifier, + ACTIONS(22419), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22421), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22417), 2, + sym_newline, + anon_sym_COLON, + STATE(11263), 4, + sym__statement_separator, + sym_enum_member, + sym_preprocessor_if, + aux_sym_enum_declaration_repeat1, + [292229] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22423), 1, + sym_newline, + ACTIONS(22425), 1, + anon_sym_COLON, + STATE(11969), 1, + sym_do_condition, + STATE(12674), 1, + sym_single_line_block, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(15160), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [292259] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22429), 1, + anon_sym_LPAREN, + ACTIONS(22431), 1, + anon_sym_STAR, + STATE(11701), 1, + sym_fixed_string_length, + STATE(12125), 1, + sym_array_bounds, + ACTIONS(7230), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(7232), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [292287] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22405), 1, + sym_identifier, + ACTIONS(22411), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22435), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22433), 2, + sym_newline, + anon_sym_COLON, + STATE(11454), 4, + sym__statement_separator, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_declaration_repeat1, + [292313] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22437), 1, + sym_identifier, + STATE(3378), 1, + sym_member_expression, + STATE(12359), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12905), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3016), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [292343] = 4, + STATE(8699), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [292363] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22439), 1, + sym_identifier, + STATE(10193), 1, + sym_member_expression, + STATE(12245), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [292393] = 4, + STATE(8656), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [292413] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22415), 1, + sym_identifier, + ACTIONS(22421), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22443), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22441), 2, + sym_newline, + anon_sym_COLON, + STATE(11532), 4, + sym__statement_separator, + sym_enum_member, + sym_preprocessor_if, + aux_sym_enum_declaration_repeat1, + [292439] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22445), 1, + sym_newline, + ACTIONS(22447), 1, + anon_sym_COLON, + STATE(12019), 1, + sym_do_condition, + STATE(12682), 1, + sym_single_line_block, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(13668), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [292469] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22405), 1, + sym_identifier, + ACTIONS(22411), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22451), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22449), 2, + sym_newline, + anon_sym_COLON, + STATE(11269), 4, + sym__statement_separator, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_declaration_repeat1, + [292495] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22415), 1, + sym_identifier, + ACTIONS(22421), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22455), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22453), 2, + sym_newline, + anon_sym_COLON, + STATE(11270), 4, + sym__statement_separator, + sym_enum_member, + sym_preprocessor_if, + aux_sym_enum_declaration_repeat1, + [292521] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22457), 1, + sym_newline, + ACTIONS(22459), 1, + anon_sym_COLON, + STATE(6059), 1, + sym__multiline_for_tail, + STATE(6070), 1, + sym__inline_for_tail, + STATE(6071), 1, + sym_shared_next_for_body, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12905), 1, + sym_single_line_block, + STATE(14684), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [292553] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22457), 1, + sym_newline, + ACTIONS(22459), 1, + anon_sym_COLON, + STATE(6071), 1, + sym_shared_next_for_body, + STATE(6072), 1, + sym__multiline_for_tail, + STATE(6288), 1, + sym__inline_for_tail, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12905), 1, + sym_single_line_block, + STATE(14684), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [292585] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22405), 1, + sym_identifier, + ACTIONS(22411), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22461), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22433), 2, + sym_newline, + anon_sym_COLON, + STATE(11454), 4, + sym__statement_separator, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_declaration_repeat1, + [292611] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22415), 1, + sym_identifier, + ACTIONS(22421), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22463), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22441), 2, + sym_newline, + anon_sym_COLON, + STATE(11532), 4, + sym__statement_separator, + sym_enum_member, + sym_preprocessor_if, + aux_sym_enum_declaration_repeat1, + [292637] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22465), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [292669] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22481), 1, + sym_newline, + ACTIONS(22483), 1, + anon_sym_COLON, + STATE(7059), 1, + sym__multiline_for_tail, + STATE(7060), 1, + sym__inline_for_tail, + STATE(7066), 1, + sym_shared_next_for_body, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12745), 1, + sym_single_line_block, + STATE(13962), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [292701] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22485), 1, + sym_identifier, + STATE(572), 1, + sym_member_expression, + STATE(12353), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12315), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(533), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [292731] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22487), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [292763] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22489), 1, + sym_identifier, + STATE(1388), 1, + sym_member_expression, + STATE(12357), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4527), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(1142), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [292793] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22491), 1, + sym_identifier, + STATE(3299), 1, + sym_member_expression, + STATE(12335), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13245), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(2931), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [292823] = 4, + STATE(9051), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [292843] = 7, + ACTIONS(22493), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22495), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22497), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22499), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(22501), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7283), 4, + sym_newline, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [292869] = 4, + STATE(9305), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [292889] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22503), 1, + anon_sym_DOT, + STATE(11358), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4369), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(4371), 5, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + [292913] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22505), 1, + sym_identifier, + STATE(7302), 1, + sym_member_expression, + STATE(12213), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(11883), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [292943] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9913), 1, + sym_identifier, + ACTIONS(9915), 1, + aux_sym_frm_property_statement_token1, + STATE(5043), 1, + sym__callable_expression, + STATE(5865), 1, + sym_member_expression, + STATE(12348), 1, + sym_call_expression, + ACTIONS(9919), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5994), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [292973] = 4, + STATE(8931), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [292993] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22507), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [293025] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22509), 1, + sym_identifier, + STATE(1667), 1, + sym_member_expression, + STATE(12360), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12465), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(1778), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [293055] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22405), 1, + sym_identifier, + ACTIONS(22411), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22511), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22433), 2, + sym_newline, + anon_sym_COLON, + STATE(11454), 4, + sym__statement_separator, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_declaration_repeat1, + [293081] = 4, + STATE(9333), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [293101] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22513), 1, + sym_identifier, + STATE(7007), 1, + sym_member_expression, + STATE(12171), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(9993), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6669), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [293131] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22515), 1, + sym_identifier, + STATE(3596), 1, + sym_member_expression, + STATE(12336), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13051), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3618), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [293161] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22517), 1, + sym_newline, + ACTIONS(22519), 1, + anon_sym_COLON, + STATE(7139), 1, + sym_shared_next_for_body, + STATE(7255), 1, + sym__inline_for_tail, + STATE(7267), 1, + sym__multiline_for_tail, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12841), 1, + sym_single_line_block, + STATE(14789), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [293193] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22517), 1, + sym_newline, + ACTIONS(22519), 1, + anon_sym_COLON, + STATE(7139), 1, + sym_shared_next_for_body, + STATE(7140), 1, + sym__inline_for_tail, + STATE(7210), 1, + sym__multiline_for_tail, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12841), 1, + sym_single_line_block, + STATE(14789), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [293225] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22521), 1, + sym_identifier, + STATE(6093), 1, + sym_member_expression, + STATE(12385), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(9929), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6126), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [293255] = 4, + STATE(9065), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [293275] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9913), 1, + sym_identifier, + ACTIONS(9915), 1, + aux_sym_frm_property_statement_token1, + STATE(5290), 1, + sym__callable_expression, + STATE(5865), 1, + sym_member_expression, + STATE(12348), 1, + sym_call_expression, + ACTIONS(9919), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5994), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [293305] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9805), 1, + sym_identifier, + ACTIONS(9807), 1, + aux_sym_frm_property_statement_token1, + STATE(4650), 1, + sym__callable_expression, + STATE(5064), 1, + sym_member_expression, + STATE(12312), 1, + sym_call_expression, + ACTIONS(9811), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4902), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [293335] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22523), 1, + sym_identifier, + STATE(2343), 1, + sym_member_expression, + STATE(12377), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(1368), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(2249), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [293365] = 4, + STATE(8491), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [293385] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22525), 1, + sym_newline, + ACTIONS(22527), 1, + anon_sym_COLON, + STATE(6412), 1, + sym__multiline_for_tail, + STATE(6413), 1, + sym__inline_for_tail, + STATE(6414), 1, + sym_shared_next_for_body, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12796), 1, + sym_single_line_block, + STATE(14177), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [293417] = 4, + STATE(9262), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [293437] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22529), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [293469] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22531), 1, + sym_identifier, + STATE(3353), 1, + sym_member_expression, + STATE(12337), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13337), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3002), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [293499] = 4, + STATE(9080), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [293519] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22533), 1, + sym_identifier, + STATE(1873), 1, + sym_member_expression, + STATE(12378), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12825), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(1937), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [293549] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9923), 1, + sym_identifier, + ACTIONS(9925), 1, + aux_sym_frm_property_statement_token1, + STATE(5040), 1, + sym__callable_expression, + STATE(6089), 1, + sym_member_expression, + STATE(12385), 1, + sym_call_expression, + ACTIONS(9929), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6126), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [293579] = 4, + STATE(9547), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [293599] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22535), 1, + sym_identifier, + STATE(4929), 1, + sym_member_expression, + STATE(12312), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(9811), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4902), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [293629] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22537), 1, + sym_newline, + ACTIONS(22539), 1, + anon_sym_COLON, + STATE(5539), 1, + sym__multiline_for_tail, + STATE(5540), 1, + sym__inline_for_tail, + STATE(5541), 1, + sym_shared_next_for_body, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12846), 1, + sym_single_line_block, + STATE(14441), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [293661] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22537), 1, + sym_newline, + ACTIONS(22539), 1, + anon_sym_COLON, + STATE(5541), 1, + sym_shared_next_for_body, + STATE(5542), 1, + sym__multiline_for_tail, + STATE(5543), 1, + sym__inline_for_tail, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12846), 1, + sym_single_line_block, + STATE(14441), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [293693] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22541), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22543), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22545), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22547), 1, + aux_sym_else_fragment_token1, + ACTIONS(22549), 1, + aux_sym_select_statement_token1, + ACTIONS(22551), 1, + aux_sym_do_statement_token1, + ACTIONS(22553), 1, + aux_sym_do_condition_token1, + ACTIONS(22555), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [293725] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22525), 1, + sym_newline, + ACTIONS(22527), 1, + anon_sym_COLON, + STATE(6414), 1, + sym_shared_next_for_body, + STATE(6415), 1, + sym__multiline_for_tail, + STATE(6416), 1, + sym__inline_for_tail, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12796), 1, + sym_single_line_block, + STATE(14177), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [293757] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9805), 1, + sym_identifier, + ACTIONS(9807), 1, + aux_sym_frm_property_statement_token1, + STATE(4851), 1, + sym__callable_expression, + STATE(5064), 1, + sym_member_expression, + STATE(12312), 1, + sym_call_expression, + ACTIONS(9811), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4902), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [293787] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22557), 1, + sym_identifier, + STATE(10151), 1, + sym_member_expression, + STATE(12318), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12051), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [293817] = 4, + STATE(9094), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [293837] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22559), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22561), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22563), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22565), 1, + aux_sym_else_fragment_token1, + ACTIONS(22567), 1, + aux_sym_select_statement_token1, + ACTIONS(22569), 1, + aux_sym_do_statement_token1, + ACTIONS(22571), 1, + aux_sym_do_condition_token1, + ACTIONS(22573), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [293869] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22575), 1, + sym_identifier, + STATE(2353), 1, + sym_member_expression, + STATE(12321), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(1607), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(2226), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [293899] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22577), 1, + sym_identifier, + STATE(10344), 1, + sym_member_expression, + STATE(12361), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(15279), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10345), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [293929] = 4, + STATE(9347), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [293949] = 4, + STATE(8641), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [293969] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9923), 1, + sym_identifier, + ACTIONS(9925), 1, + aux_sym_frm_property_statement_token1, + STATE(5676), 1, + sym__callable_expression, + STATE(6089), 1, + sym_member_expression, + STATE(12385), 1, + sym_call_expression, + ACTIONS(9929), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6126), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [293999] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22579), 1, + sym_identifier, + STATE(1164), 1, + sym_member_expression, + STATE(12323), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4717), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(1221), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [294029] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22581), 1, + sym_newline, + ACTIONS(22583), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12901), 1, + sym_single_line_block, + STATE(13022), 1, + sym__multiline_for_tail, + STATE(13023), 1, + sym__inline_for_tail, + STATE(13025), 1, + sym_shared_next_for_body, + STATE(14671), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [294061] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22581), 1, + sym_newline, + ACTIONS(22583), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12901), 1, + sym_single_line_block, + STATE(13025), 1, + sym_shared_next_for_body, + STATE(13030), 1, + sym__multiline_for_tail, + STATE(13058), 1, + sym__inline_for_tail, + STATE(14671), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [294093] = 4, + STATE(9916), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [294113] = 4, + STATE(9925), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [294133] = 4, + STATE(9918), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [294153] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22405), 1, + sym_identifier, + ACTIONS(22411), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22587), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22585), 2, + sym_newline, + anon_sym_COLON, + STATE(11539), 4, + sym__statement_separator, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_declaration_repeat1, + [294179] = 4, + STATE(8600), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [294199] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22405), 1, + sym_identifier, + ACTIONS(22411), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22591), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22589), 2, + sym_newline, + anon_sym_COLON, + STATE(11332), 4, + sym__statement_separator, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_declaration_repeat1, + [294225] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22415), 1, + sym_identifier, + ACTIONS(22421), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22595), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22593), 2, + sym_newline, + anon_sym_COLON, + STATE(11333), 4, + sym__statement_separator, + sym_enum_member, + sym_preprocessor_if, + aux_sym_enum_declaration_repeat1, + [294251] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22415), 1, + sym_identifier, + ACTIONS(22421), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22599), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22597), 2, + sym_newline, + anon_sym_COLON, + STATE(11541), 4, + sym__statement_separator, + sym_enum_member, + sym_preprocessor_if, + aux_sym_enum_declaration_repeat1, + [294277] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22601), 1, + sym_newline, + ACTIONS(22603), 1, + anon_sym_COLON, + STATE(11912), 1, + sym_do_condition, + STATE(12742), 1, + sym_single_line_block, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(13951), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [294307] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22405), 1, + sym_identifier, + ACTIONS(22411), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22605), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22433), 2, + sym_newline, + anon_sym_COLON, + STATE(11454), 4, + sym__statement_separator, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_declaration_repeat1, + [294333] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22415), 1, + sym_identifier, + ACTIONS(22421), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22607), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22441), 2, + sym_newline, + anon_sym_COLON, + STATE(11532), 4, + sym__statement_separator, + sym_enum_member, + sym_preprocessor_if, + aux_sym_enum_declaration_repeat1, + [294359] = 4, + STATE(8558), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [294379] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22609), 1, + sym_identifier, + STATE(7379), 1, + sym_member_expression, + STATE(12404), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13679), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [294409] = 4, + STATE(8655), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [294429] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22611), 1, + sym_newline, + ACTIONS(22613), 1, + anon_sym_COLON, + STATE(11929), 1, + sym_do_condition, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12748), 1, + sym_single_line_block, + STATE(13983), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [294459] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22405), 1, + sym_identifier, + ACTIONS(22411), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22617), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22615), 2, + sym_newline, + anon_sym_COLON, + STATE(11341), 4, + sym__statement_separator, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_declaration_repeat1, + [294485] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22415), 1, + sym_identifier, + ACTIONS(22421), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22621), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22619), 2, + sym_newline, + anon_sym_COLON, + STATE(11342), 4, + sym__statement_separator, + sym_enum_member, + sym_preprocessor_if, + aux_sym_enum_declaration_repeat1, + [294511] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22623), 1, + sym_identifier, + STATE(2224), 1, + sym_member_expression, + STATE(12308), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(1067), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(2182), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [294541] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22405), 1, + sym_identifier, + ACTIONS(22411), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22625), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22433), 2, + sym_newline, + anon_sym_COLON, + STATE(11454), 4, + sym__statement_separator, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_declaration_repeat1, + [294567] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22415), 1, + sym_identifier, + ACTIONS(22421), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22627), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22441), 2, + sym_newline, + anon_sym_COLON, + STATE(11532), 4, + sym__statement_separator, + sym_enum_member, + sym_preprocessor_if, + aux_sym_enum_declaration_repeat1, + [294593] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22629), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [294625] = 4, + STATE(8702), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [294645] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22631), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [294677] = 4, + STATE(9561), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [294697] = 6, + ACTIONS(22353), 1, + anon_sym_LPAREN, + ACTIONS(22633), 1, + anon_sym_STAR, + STATE(11500), 1, + sym_fixed_string_length, + STATE(11708), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7136), 5, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [294721] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22635), 1, + sym_identifier, + STATE(477), 1, + sym_member_expression, + STATE(12338), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12085), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(493), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [294751] = 4, + STATE(9108), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [294771] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9987), 1, + sym_identifier, + ACTIONS(9989), 1, + aux_sym_frm_property_statement_token1, + STATE(6052), 1, + sym__callable_expression, + STATE(6743), 1, + sym_member_expression, + STATE(12171), 1, + sym_call_expression, + ACTIONS(9993), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6669), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [294801] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + STATE(11686), 1, + sym__callable_expression, + STATE(11705), 1, + sym_member_expression, + STATE(12223), 1, + sym_call_expression, + ACTIONS(11358), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [294831] = 4, + STATE(8659), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [294851] = 4, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7044), 7, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_RPAREN, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [294871] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22641), 1, + sym_newline, + ACTIONS(22643), 1, + anon_sym_COLON, + STATE(4234), 1, + sym__multiline_for_tail, + STATE(4236), 1, + sym__inline_for_tail, + STATE(4237), 1, + sym_shared_next_for_body, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12906), 1, + sym_single_line_block, + STATE(14689), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [294903] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22645), 1, + sym_newline, + ACTIONS(22647), 1, + anon_sym_COLON, + STATE(11972), 1, + sym_do_condition, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12770), 1, + sym_single_line_block, + STATE(14064), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [294933] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22641), 1, + sym_newline, + ACTIONS(22643), 1, + anon_sym_COLON, + STATE(4237), 1, + sym_shared_next_for_body, + STATE(4238), 1, + sym__multiline_for_tail, + STATE(4243), 1, + sym__inline_for_tail, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12906), 1, + sym_single_line_block, + STATE(14689), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [294965] = 4, + STATE(9934), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [294985] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22503), 1, + anon_sym_DOT, + STATE(11574), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4375), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(4377), 5, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + [295009] = 4, + STATE(9575), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [295029] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22649), 1, + sym_identifier, + STATE(2084), 1, + sym_member_expression, + STATE(12329), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(11943), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(2117), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [295059] = 4, + STATE(8980), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [295079] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22651), 1, + sym_newline, + ACTIONS(22653), 1, + anon_sym_COLON, + STATE(11998), 1, + sym_do_condition, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12780), 1, + sym_single_line_block, + STATE(14091), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [295109] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22655), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [295141] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22657), 1, + sym_identifier, + STATE(2071), 1, + sym_member_expression, + STATE(12362), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13011), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(2105), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [295171] = 4, + STATE(9361), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [295191] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22659), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [295223] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22661), 1, + sym_identifier, + STATE(1486), 1, + sym_member_expression, + STATE(12339), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12149), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(1528), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [295253] = 4, + STATE(9123), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [295273] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22663), 1, + sym_identifier, + STATE(4214), 1, + sym_member_expression, + STATE(12305), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(7038), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4274), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [295303] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22665), 1, + sym_newline, + ACTIONS(22667), 1, + anon_sym_COLON, + STATE(4568), 1, + sym__multiline_for_tail, + STATE(4569), 1, + sym__inline_for_tail, + STATE(4572), 1, + sym_shared_next_for_body, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12825), 1, + sym_single_line_block, + STATE(14353), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [295335] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22665), 1, + sym_newline, + ACTIONS(22667), 1, + anon_sym_COLON, + STATE(4325), 1, + sym__multiline_for_tail, + STATE(4326), 1, + sym__inline_for_tail, + STATE(4572), 1, + sym_shared_next_for_body, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12825), 1, + sym_single_line_block, + STATE(14353), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [295367] = 10, + ACTIONS(22148), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22150), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22152), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22154), 1, + aux_sym_else_fragment_token1, + ACTIONS(22156), 1, + aux_sym_select_statement_token1, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [295399] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22669), 1, + sym_identifier, + STATE(666), 1, + sym_member_expression, + STATE(12352), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12277), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(673), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [295429] = 4, + STATE(8703), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [295449] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22671), 1, + sym_newline, + ACTIONS(22673), 1, + anon_sym_COLON, + STATE(11745), 1, + sym_do_condition, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12794), 1, + sym_single_line_block, + STATE(14167), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [295479] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22675), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [295511] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21664), 1, + sym_identifier, + ACTIONS(21668), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22677), 1, + sym_newline, + ACTIONS(22681), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(22679), 2, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + STATE(11551), 3, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_preprocessor_block_repeat1, + [295539] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22683), 1, + sym_identifier, + STATE(2939), 1, + sym_member_expression, + STATE(12340), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13533), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3137), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [295569] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22685), 1, + sym_newline, + ACTIONS(22687), 1, + anon_sym_COLON, + STATE(12027), 1, + sym_do_condition, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12798), 1, + sym_single_line_block, + STATE(14194), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [295599] = 4, + STATE(9137), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [295619] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22689), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [295651] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22691), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [295683] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22693), 1, + sym_newline, + ACTIONS(22695), 1, + anon_sym_COLON, + STATE(11824), 1, + sym_do_condition, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12808), 1, + sym_single_line_block, + STATE(14255), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [295713] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22697), 1, + sym_newline, + ACTIONS(22699), 1, + anon_sym_COLON, + STATE(11916), 1, + sym_do_condition, + STATE(12417), 1, + sym_single_line_block, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(13884), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [295743] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22701), 1, + sym_identifier, + STATE(3149), 1, + sym_member_expression, + STATE(12374), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13215), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3233), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [295773] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22703), 1, + sym_newline, + ACTIONS(22705), 1, + anon_sym_COLON, + STATE(11902), 1, + sym_do_condition, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12812), 1, + sym_single_line_block, + STATE(14282), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [295803] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22707), 1, + sym_identifier, + STATE(10066), 1, + sym_member_expression, + STATE(12223), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(11358), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [295833] = 3, + ACTIONS(22493), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7044), 8, + sym_newline, + anon_sym_COLON, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [295851] = 4, + ACTIONS(22493), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22495), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7044), 7, + sym_newline, + anon_sym_COLON, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [295871] = 4, + STATE(9589), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [295891] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22709), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [295923] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9957), 1, + sym_identifier, + ACTIONS(9959), 1, + aux_sym_frm_property_statement_token1, + STATE(5060), 1, + sym__callable_expression, + STATE(6045), 1, + sym_member_expression, + STATE(12281), 1, + sym_call_expression, + ACTIONS(9963), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6097), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [295953] = 5, + ACTIONS(22493), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22495), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22497), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7044), 6, + sym_newline, + anon_sym_COLON, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [295975] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22711), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [296007] = 6, + ACTIONS(22493), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22495), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22497), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22499), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7044), 5, + sym_newline, + anon_sym_COLON, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token6, + sym_number_literal, + [296031] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22713), 1, + sym_identifier, + STATE(1120), 1, + sym_member_expression, + STATE(12363), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4561), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(1206), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [296061] = 4, + STATE(9377), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [296081] = 4, + STATE(8562), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [296101] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22715), 1, + sym_newline, + ACTIONS(22717), 1, + anon_sym_COLON, + STATE(12012), 1, + sym_do_condition, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12824), 1, + sym_single_line_block, + STATE(14343), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [296131] = 4, + STATE(9246), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [296151] = 4, + STATE(9743), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [296171] = 4, + STATE(8576), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [296191] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22719), 1, + sym_newline, + ACTIONS(22721), 1, + anon_sym_COLON, + STATE(11738), 1, + sym_do_condition, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12831), 1, + sym_single_line_block, + STATE(14370), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [296221] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22723), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [296253] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22725), 1, + sym_identifier, + STATE(2102), 1, + sym_member_expression, + STATE(12341), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12191), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(2139), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [296283] = 4, + STATE(9152), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [296303] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22727), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [296335] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22729), 1, + sym_newline, + ACTIONS(22731), 1, + anon_sym_COLON, + STATE(5002), 1, + sym__inline_for_tail, + STATE(5003), 1, + sym_shared_next_for_body, + STATE(5086), 1, + sym__multiline_for_tail, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12908), 1, + sym_single_line_block, + STATE(14694), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [296367] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22729), 1, + sym_newline, + ACTIONS(22731), 1, + anon_sym_COLON, + STATE(5003), 1, + sym_shared_next_for_body, + STATE(5004), 1, + sym__multiline_for_tail, + STATE(5005), 1, + sym__inline_for_tail, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12908), 1, + sym_single_line_block, + STATE(14694), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [296399] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22733), 1, + sym_newline, + ACTIONS(22735), 1, + anon_sym_COLON, + STATE(11753), 1, + sym_do_condition, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12844), 1, + sym_single_line_block, + STATE(14431), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [296429] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9957), 1, + sym_identifier, + ACTIONS(9959), 1, + aux_sym_frm_property_statement_token1, + STATE(5199), 1, + sym__callable_expression, + STATE(6045), 1, + sym_member_expression, + STATE(12281), 1, + sym_call_expression, + ACTIONS(9963), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6097), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [296459] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22737), 1, + sym_newline, + ACTIONS(22739), 1, + anon_sym_COLON, + STATE(11762), 1, + sym_do_condition, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12850), 1, + sym_single_line_block, + STATE(14458), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [296489] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4603), 4, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + anon_sym_LPAREN, + ACTIONS(4601), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [296509] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22741), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [296541] = 4, + STATE(9505), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [296561] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22743), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [296593] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4607), 4, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + anon_sym_LPAREN, + ACTIONS(4605), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [296613] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4611), 4, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + anon_sym_LPAREN, + ACTIONS(4609), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [296633] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22745), 1, + sym_newline, + ACTIONS(22747), 1, + anon_sym_COLON, + STATE(11779), 1, + sym_do_condition, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12857), 1, + sym_single_line_block, + STATE(14519), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [296663] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22749), 1, + anon_sym_COLON, + ACTIONS(3364), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(3370), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [296685] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22751), 1, + sym_identifier, + STATE(2474), 1, + sym_member_expression, + STATE(12364), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12939), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(2377), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [296715] = 4, + STATE(9392), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [296735] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22753), 1, + sym_newline, + ACTIONS(22755), 1, + anon_sym_COLON, + STATE(11788), 1, + sym_do_condition, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12866), 1, + sym_single_line_block, + STATE(14546), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [296765] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22757), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [296797] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22759), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [296829] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22761), 1, + sym_identifier, + STATE(2354), 1, + sym_member_expression, + STATE(12354), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(2399), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(2319), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [296859] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22763), 1, + sym_newline, + ACTIONS(22765), 1, + anon_sym_COLON, + STATE(11802), 1, + sym_do_condition, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12881), 1, + sym_single_line_block, + STATE(14604), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [296889] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22767), 1, + sym_identifier, + STATE(7288), 1, + sym_member_expression, + STATE(12213), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(11883), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(7306), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [296919] = 4, + STATE(9277), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [296939] = 4, + STATE(8866), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [296959] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22769), 1, + sym_newline, + ACTIONS(22771), 1, + anon_sym_COLON, + STATE(11813), 1, + sym_do_condition, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12891), 1, + sym_single_line_block, + STATE(14628), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [296989] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22773), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [297021] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22775), 1, + sym_identifier, + STATE(1509), 1, + sym_member_expression, + STATE(12342), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(11851), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(1561), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [297051] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22467), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22469), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22471), 1, + aux_sym_else_fragment_token1, + ACTIONS(22473), 1, + aux_sym_select_statement_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(22777), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [297083] = 4, + STATE(9167), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [297103] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22779), 1, + sym_identifier, + STATE(1251), 1, + sym_member_expression, + STATE(12407), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4778), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(1441), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [297133] = 4, + STATE(8802), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [297153] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + sym_newline, + ACTIONS(22781), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11677), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [297177] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22783), 1, + sym_identifier, + STATE(3817), 1, + sym_member_expression, + STATE(12310), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(6877), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3720), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [297207] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22785), 1, + sym_identifier, + STATE(1718), 1, + sym_member_expression, + STATE(12365), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12507), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(1876), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [297237] = 4, + STATE(9406), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [297257] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22787), 1, + sym_identifier, + STATE(1677), 1, + sym_member_expression, + STATE(12246), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4901), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(1585), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [297287] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22789), 1, + sym_newline, + ACTIONS(22791), 1, + anon_sym_COLON, + STATE(6432), 1, + sym__multiline_for_tail, + STATE(6433), 1, + sym__inline_for_tail, + STATE(6435), 1, + sym_shared_next_for_body, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12910), 1, + sym_single_line_block, + STATE(14699), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [297319] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22789), 1, + sym_newline, + ACTIONS(22791), 1, + anon_sym_COLON, + STATE(6435), 1, + sym_shared_next_for_body, + STATE(6436), 1, + sym__multiline_for_tail, + STATE(6437), 1, + sym__inline_for_tail, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12910), 1, + sym_single_line_block, + STATE(14699), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [297351] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22793), 1, + sym_identifier, + STATE(1650), 1, + sym_member_expression, + STATE(12358), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12397), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(1739), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [297381] = 4, + STATE(8557), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [297401] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7032), 1, + sym_identifier, + ACTIONS(7034), 1, + aux_sym_frm_property_statement_token1, + STATE(3732), 1, + sym__callable_expression, + STATE(4299), 1, + sym_member_expression, + STATE(12305), 1, + sym_call_expression, + ACTIONS(7038), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4274), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [297431] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22795), 1, + sym_identifier, + STATE(10373), 1, + sym_member_expression, + STATE(12402), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13709), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [297461] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22797), 1, + sym_identifier, + STATE(2898), 1, + sym_member_expression, + STATE(12381), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(742), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(2420), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [297491] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7032), 1, + sym_identifier, + ACTIONS(7034), 1, + aux_sym_frm_property_statement_token1, + STATE(4123), 1, + sym__callable_expression, + STATE(4299), 1, + sym_member_expression, + STATE(12305), 1, + sym_call_expression, + ACTIONS(7038), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(4274), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [297521] = 4, + STATE(8995), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [297541] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22799), 1, + sym_identifier, + STATE(10126), 1, + sym_member_expression, + STATE(12366), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12545), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10138), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [297571] = 4, + STATE(9420), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [297591] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22801), 1, + sym_identifier, + ACTIONS(22807), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22809), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22804), 2, + sym_newline, + anon_sym_COLON, + STATE(11454), 4, + sym__statement_separator, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_declaration_repeat1, + [297617] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22812), 1, + sym_identifier, + STATE(795), 1, + sym_member_expression, + STATE(12283), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(71), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(771), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [297647] = 4, + STATE(8978), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [297667] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22814), 1, + sym_identifier, + STATE(2452), 1, + sym_member_expression, + STATE(12299), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(1727), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(2236), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [297697] = 4, + STATE(8745), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [297717] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22816), 1, + sym_identifier, + STATE(1829), 1, + sym_member_expression, + STATE(12373), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12711), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(1917), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [297747] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22818), 1, + sym_newline, + ACTIONS(22820), 1, + anon_sym_COLON, + STATE(6537), 1, + sym__multiline_for_tail, + STATE(6538), 1, + sym__inline_for_tail, + STATE(6539), 1, + sym_shared_next_for_body, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12912), 1, + sym_single_line_block, + STATE(14704), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [297779] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22818), 1, + sym_newline, + ACTIONS(22820), 1, + anon_sym_COLON, + STATE(6539), 1, + sym_shared_next_for_body, + STATE(6540), 1, + sym__multiline_for_tail, + STATE(6541), 1, + sym__inline_for_tail, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12912), 1, + sym_single_line_block, + STATE(14704), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [297811] = 4, + STATE(9319), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [297831] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22822), 1, + sym_identifier, + STATE(705), 1, + sym_member_expression, + STATE(12367), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12583), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(716), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [297861] = 4, + STATE(9434), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [297881] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22824), 1, + sym_newline, + ACTIONS(22826), 1, + anon_sym_COLON, + STATE(3921), 1, + sym__multiline_for_tail, + STATE(3922), 1, + sym__inline_for_tail, + STATE(3923), 1, + sym_shared_next_for_body, + STATE(12676), 1, + sym_single_line_block, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(15176), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [297913] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22828), 1, + sym_identifier, + STATE(11689), 1, + sym_member_expression, + STATE(12223), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(11358), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [297943] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22830), 1, + sym_newline, + ACTIONS(22832), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12774), 1, + sym_single_line_block, + STATE(13022), 1, + sym__multiline_for_tail, + STATE(13023), 1, + sym__inline_for_tail, + STATE(13025), 1, + sym_shared_next_for_body, + STATE(14074), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [297975] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22830), 1, + sym_newline, + ACTIONS(22832), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12774), 1, + sym_single_line_block, + STATE(13025), 1, + sym_shared_next_for_body, + STATE(13030), 1, + sym__multiline_for_tail, + STATE(13058), 1, + sym__inline_for_tail, + STATE(14074), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [298007] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22202), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22204), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22206), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22208), 1, + aux_sym_else_fragment_token1, + ACTIONS(22210), 1, + aux_sym_select_statement_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [298039] = 5, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7044), 6, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_RPAREN, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [298061] = 4, + STATE(9603), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [298081] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22836), 1, + sym_identifier, + STATE(5912), 1, + sym_member_expression, + STATE(12281), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(9963), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6097), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [298111] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9933), 1, + sym_identifier, + ACTIONS(9935), 1, + aux_sym_frm_property_statement_token1, + STATE(5066), 1, + sym__callable_expression, + STATE(6120), 1, + sym_member_expression, + STATE(12355), 1, + sym_call_expression, + ACTIONS(9939), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5888), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [298141] = 4, + STATE(9491), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [298161] = 4, + STATE(9263), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [298181] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22838), 1, + sym_identifier, + STATE(3542), 1, + sym_member_expression, + STATE(12164), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13185), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3425), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [298211] = 4, + STATE(8794), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [298231] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9933), 1, + sym_identifier, + ACTIONS(9935), 1, + aux_sym_frm_property_statement_token1, + STATE(5131), 1, + sym__callable_expression, + STATE(6120), 1, + sym_member_expression, + STATE(12355), 1, + sym_call_expression, + ACTIONS(9939), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5888), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [298261] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22840), 1, + sym_newline, + ACTIONS(22842), 1, + anon_sym_COLON, + STATE(6795), 1, + sym__multiline_for_tail, + STATE(6796), 1, + sym__inline_for_tail, + STATE(6797), 1, + sym_shared_next_for_body, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12810), 1, + sym_single_line_block, + STATE(14265), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [298293] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22844), 1, + sym_identifier, + STATE(970), 1, + sym_member_expression, + STATE(12369), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12743), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(982), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [298323] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22846), 1, + sym_identifier, + STATE(10055), 1, + sym_member_expression, + STATE(12245), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(25), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10049), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [298353] = 4, + STATE(9448), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [298373] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22848), 1, + sym_newline, + ACTIONS(22850), 1, + anon_sym_COLON, + STATE(6234), 1, + sym__multiline_for_tail, + STATE(6235), 1, + sym__inline_for_tail, + STATE(6236), 1, + sym_shared_next_for_body, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12914), 1, + sym_single_line_block, + STATE(14709), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [298405] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22852), 1, + sym_identifier, + STATE(2020), 1, + sym_member_expression, + STATE(12344), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13097), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(2022), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [298435] = 4, + STATE(9183), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [298455] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22854), 1, + sym_identifier, + STATE(398), 1, + sym_member_expression, + STATE(12392), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4038), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(424), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [298485] = 4, + STATE(8577), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [298505] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22848), 1, + sym_newline, + ACTIONS(22850), 1, + anon_sym_COLON, + STATE(6236), 1, + sym_shared_next_for_body, + STATE(6239), 1, + sym__multiline_for_tail, + STATE(6244), 1, + sym__inline_for_tail, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12914), 1, + sym_single_line_block, + STATE(14709), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [298537] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22840), 1, + sym_newline, + ACTIONS(22842), 1, + anon_sym_COLON, + STATE(6797), 1, + sym_shared_next_for_body, + STATE(6798), 1, + sym__multiline_for_tail, + STATE(6799), 1, + sym__inline_for_tail, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12810), 1, + sym_single_line_block, + STATE(14265), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [298569] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22856), 1, + sym_identifier, + STATE(910), 1, + sym_member_expression, + STATE(12356), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12359), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(939), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [298599] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4625), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(4627), 7, + sym_newline, + anon_sym_DOT, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + [298619] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22858), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22860), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22862), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22864), 1, + aux_sym_else_fragment_token1, + ACTIONS(22866), 1, + aux_sym_select_statement_token1, + ACTIONS(22868), 1, + aux_sym_do_statement_token1, + ACTIONS(22870), 1, + aux_sym_do_condition_token1, + ACTIONS(22872), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [298651] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(4364), 7, + sym_newline, + anon_sym_DOT, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + [298671] = 4, + STATE(9291), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [298691] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4601), 4, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_begin_property_block_token2, + aux_sym_frm_property_statement_token1, + sym_identifier, + ACTIONS(4603), 5, + sym_newline, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_BANG, + anon_sym_LPAREN, + [298711] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22874), 1, + sym_identifier, + STATE(10169), 1, + sym_member_expression, + STATE(12318), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12051), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10163), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [298741] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4605), 4, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_begin_property_block_token2, + aux_sym_frm_property_statement_token1, + sym_identifier, + ACTIONS(4607), 5, + sym_newline, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_BANG, + anon_sym_LPAREN, + [298761] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22824), 1, + sym_newline, + ACTIONS(22826), 1, + anon_sym_COLON, + STATE(3923), 1, + sym_shared_next_for_body, + STATE(3924), 1, + sym__multiline_for_tail, + STATE(3925), 1, + sym__inline_for_tail, + STATE(12676), 1, + sym_single_line_block, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(15176), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [298793] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22876), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22878), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22880), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22882), 1, + aux_sym_else_fragment_token1, + ACTIONS(22884), 1, + aux_sym_select_statement_token1, + ACTIONS(22886), 1, + aux_sym_do_statement_token1, + ACTIONS(22888), 1, + aux_sym_do_condition_token1, + ACTIONS(22890), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [298825] = 4, + ACTIONS(22353), 1, + anon_sym_LPAREN, + STATE(11691), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8072), 7, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_else_fragment_token1, + sym_number_literal, + [298845] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22892), 1, + sym_identifier, + STATE(6139), 1, + sym_member_expression, + STATE(12355), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(9939), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5888), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [298875] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4609), 4, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_begin_property_block_token2, + aux_sym_frm_property_statement_token1, + sym_identifier, + ACTIONS(4611), 5, + sym_newline, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_BANG, + anon_sym_LPAREN, + [298895] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22894), 1, + sym_identifier, + STATE(3066), 1, + sym_member_expression, + STATE(12370), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13149), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3210), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [298925] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22896), 1, + sym_identifier, + STATE(1230), 1, + sym_member_expression, + STATE(12345), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12977), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(1170), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [298955] = 4, + STATE(9199), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [298975] = 4, + STATE(9462), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [298995] = 9, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22898), 1, + sym_newline, + ACTIONS(22900), 1, + anon_sym_COLON, + STATE(11861), 1, + sym_do_condition, + STATE(12446), 1, + sym_single_line_block, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(13925), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + [299025] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22902), 1, + sym_identifier, + STATE(6243), 1, + sym_member_expression, + STATE(12348), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(9919), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5994), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [299055] = 6, + ACTIONS(22353), 1, + anon_sym_LPAREN, + ACTIONS(22633), 1, + anon_sym_STAR, + STATE(11558), 1, + sym_fixed_string_length, + STATE(11729), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7232), 5, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [299079] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22904), 1, + sym_identifier, + STATE(1389), 1, + sym_member_expression, + STATE(12296), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4681), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(1158), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [299109] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22906), 1, + sym_newline, + ACTIONS(22908), 1, + anon_sym_COLON, + STATE(3788), 1, + sym__multiline_for_tail, + STATE(3813), 1, + sym__inline_for_tail, + STATE(3822), 1, + sym_shared_next_for_body, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12858), 1, + sym_single_line_block, + STATE(14529), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [299141] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22906), 1, + sym_newline, + ACTIONS(22908), 1, + anon_sym_COLON, + STATE(3822), 1, + sym_shared_next_for_body, + STATE(3826), 1, + sym__multiline_for_tail, + STATE(3827), 1, + sym__inline_for_tail, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12858), 1, + sym_single_line_block, + STATE(14529), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [299173] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22910), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22912), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22914), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22916), 1, + aux_sym_else_fragment_token1, + ACTIONS(22918), 1, + aux_sym_select_statement_token1, + ACTIONS(22920), 1, + aux_sym_do_statement_token1, + ACTIONS(22922), 1, + aux_sym_do_condition_token1, + ACTIONS(22924), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [299205] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4623), 4, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + anon_sym_LPAREN, + ACTIONS(4621), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [299225] = 4, + STATE(8845), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [299245] = 4, + STATE(8639), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [299265] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22926), 1, + sym_identifier, + STATE(604), 1, + sym_member_expression, + STATE(12332), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(4122), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(632), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [299295] = 4, + STATE(9009), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [299315] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22928), 1, + sym_newline, + ACTIONS(22930), 1, + anon_sym_COLON, + STATE(5946), 1, + sym__multiline_for_tail, + STATE(5948), 1, + sym__inline_for_tail, + STATE(5949), 1, + sym_shared_next_for_body, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12915), 1, + sym_single_line_block, + STATE(14714), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [299347] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22928), 1, + sym_newline, + ACTIONS(22930), 1, + anon_sym_COLON, + STATE(5949), 1, + sym_shared_next_for_body, + STATE(5950), 1, + sym__multiline_for_tail, + STATE(5951), 1, + sym__inline_for_tail, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12915), 1, + sym_single_line_block, + STATE(14714), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [299379] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22932), 1, + sym_newline, + ACTIONS(22934), 1, + anon_sym_COLON, + STATE(5841), 1, + sym_shared_next_for_body, + STATE(5940), 1, + sym__inline_for_tail, + STATE(6042), 1, + sym__multiline_for_tail, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12883), 1, + sym_single_line_block, + STATE(14613), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [299411] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22936), 1, + sym_identifier, + STATE(2395), 1, + sym_member_expression, + STATE(12346), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13479), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(2358), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [299441] = 4, + STATE(9215), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [299461] = 4, + STATE(9617), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [299481] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22938), 1, + sym_identifier, + STATE(3155), 1, + sym_member_expression, + STATE(12375), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13633), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3239), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [299511] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9987), 1, + sym_identifier, + ACTIONS(9989), 1, + aux_sym_frm_property_statement_token1, + STATE(5745), 1, + sym__callable_expression, + STATE(6743), 1, + sym_member_expression, + STATE(12171), 1, + sym_call_expression, + ACTIONS(9993), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(6669), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [299541] = 3, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7044), 8, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_RPAREN, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [299559] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22940), 1, + sym_identifier, + STATE(2416), 1, + sym_member_expression, + STATE(12347), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(1490), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(2265), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [299589] = 4, + STATE(8591), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [299609] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22405), 1, + sym_identifier, + ACTIONS(22411), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22944), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22942), 2, + sym_newline, + anon_sym_COLON, + STATE(11286), 4, + sym__statement_separator, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_declaration_repeat1, + [299635] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22415), 1, + sym_identifier, + ACTIONS(22421), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22948), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22946), 2, + sym_newline, + anon_sym_COLON, + STATE(11555), 4, + sym__statement_separator, + sym_enum_member, + sym_preprocessor_if, + aux_sym_enum_declaration_repeat1, + [299661] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22950), 1, + sym_identifier, + ACTIONS(22956), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22958), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22953), 2, + sym_newline, + anon_sym_COLON, + STATE(11532), 4, + sym__statement_separator, + sym_enum_member, + sym_preprocessor_if, + aux_sym_enum_declaration_repeat1, + [299687] = 6, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7044), 5, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token2, + anon_sym_RPAREN, + aux_sym__print_output_call_binary_expression_token6, + [299711] = 4, + STATE(9519), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [299731] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22963), 1, + sym_identifier, + STATE(3158), 1, + sym_member_expression, + STATE(12349), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13291), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3307), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [299761] = 4, + STATE(8657), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [299781] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(21095), 1, + sym_identifier, + STATE(11705), 1, + sym_member_expression, + STATE(11891), 1, + sym__callable_expression, + STATE(12223), 1, + sym_call_expression, + ACTIONS(11358), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [299811] = 4, + STATE(9631), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [299831] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22405), 1, + sym_identifier, + ACTIONS(22411), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22965), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22433), 2, + sym_newline, + anon_sym_COLON, + STATE(11454), 4, + sym__statement_separator, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_declaration_repeat1, + [299857] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22967), 1, + sym_identifier, + STATE(3088), 1, + sym_member_expression, + STATE(12371), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13603), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3217), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [299887] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22415), 1, + sym_identifier, + ACTIONS(22421), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22969), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22441), 2, + sym_newline, + anon_sym_COLON, + STATE(11532), 4, + sym__statement_separator, + sym_enum_member, + sym_preprocessor_if, + aux_sym_enum_declaration_repeat1, + [299913] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22971), 1, + sym_identifier, + STATE(1172), 1, + sym_member_expression, + STATE(12333), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13431), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(1362), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [299943] = 4, + STATE(9477), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [299963] = 4, + STATE(9023), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [299983] = 4, + STATE(9645), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [300003] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22973), 1, + sym_identifier, + STATE(10174), 1, + sym_member_expression, + STATE(12223), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(11358), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10067), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [300033] = 4, + STATE(8889), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [300053] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22429), 1, + anon_sym_LPAREN, + ACTIONS(22431), 1, + anon_sym_STAR, + STATE(11720), 1, + sym_fixed_string_length, + STATE(12111), 1, + sym_array_bounds, + ACTIONS(7134), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(7136), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [300081] = 4, + STATE(9659), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [300101] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6871), 1, + sym_identifier, + ACTIONS(6873), 1, + aux_sym_frm_property_statement_token1, + STATE(3564), 1, + sym__callable_expression, + STATE(3796), 1, + sym_member_expression, + STATE(12310), 1, + sym_call_expression, + ACTIONS(6877), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3720), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [300131] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22975), 1, + sym_identifier, + ACTIONS(22978), 1, + sym_newline, + ACTIONS(22981), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22986), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(22984), 2, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + STATE(11551), 3, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_preprocessor_block_repeat1, + [300159] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9947), 1, + sym_identifier, + ACTIONS(9949), 1, + aux_sym_frm_property_statement_token1, + STATE(4979), 1, + sym__callable_expression, + STATE(6043), 1, + sym_member_expression, + STATE(12331), 1, + sym_call_expression, + ACTIONS(9953), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5833), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [300189] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22481), 1, + sym_newline, + ACTIONS(22483), 1, + anon_sym_COLON, + STATE(7066), 1, + sym_shared_next_for_body, + STATE(7070), 1, + sym__multiline_for_tail, + STATE(7071), 1, + sym__inline_for_tail, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12745), 1, + sym_single_line_block, + STATE(13962), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [300221] = 4, + STATE(9673), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [300241] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22415), 1, + sym_identifier, + ACTIONS(22421), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(22988), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22441), 2, + sym_newline, + anon_sym_COLON, + STATE(11532), 4, + sym__statement_separator, + sym_enum_member, + sym_preprocessor_if, + aux_sym_enum_declaration_repeat1, + [300267] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22990), 1, + sym_identifier, + STATE(1572), 1, + sym_member_expression, + STATE(12350), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12243), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(1644), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [300297] = 4, + STATE(8700), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [300317] = 4, + ACTIONS(22353), 1, + anon_sym_LPAREN, + STATE(11712), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8083), 7, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_else_fragment_token1, + sym_number_literal, + [300337] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4621), 4, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_begin_property_block_token2, + aux_sym_frm_property_statement_token1, + sym_identifier, + ACTIONS(4623), 5, + sym_newline, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_BANG, + anon_sym_LPAREN, + [300357] = 4, + STATE(9687), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [300377] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22992), 1, + sym_identifier, + STATE(6231), 1, + sym_member_expression, + STATE(12331), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(9953), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5833), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [300407] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22994), 1, + sym_identifier, + STATE(1451), 1, + sym_member_expression, + STATE(12302), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(429), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(912), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [300437] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9947), 1, + sym_identifier, + ACTIONS(9949), 1, + aux_sym_frm_property_statement_token1, + STATE(5412), 1, + sym__callable_expression, + STATE(6043), 1, + sym_member_expression, + STATE(12331), 1, + sym_call_expression, + ACTIONS(9953), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(5833), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [300467] = 4, + STATE(8887), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [300487] = 10, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(22932), 1, + sym_newline, + ACTIONS(22934), 1, + anon_sym_COLON, + STATE(5841), 1, + sym_shared_next_for_body, + STATE(6208), 1, + sym__multiline_for_tail, + STATE(6245), 1, + sym__inline_for_tail, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12883), 1, + sym_single_line_block, + STATE(14613), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [300519] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22996), 1, + sym_identifier, + STATE(1819), 1, + sym_member_expression, + STATE(12372), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(12661), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(1910), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [300549] = 4, + STATE(9701), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [300569] = 4, + STATE(9715), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [300589] = 4, + STATE(9729), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [300609] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6871), 1, + sym_identifier, + ACTIONS(6873), 1, + aux_sym_frm_property_statement_token1, + STATE(3060), 1, + sym__callable_expression, + STATE(3796), 1, + sym_member_expression, + STATE(12310), 1, + sym_call_expression, + ACTIONS(6877), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3720), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [300639] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(22998), 1, + sym_identifier, + STATE(3238), 1, + sym_member_expression, + STATE(12351), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13367), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(3373), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [300669] = 10, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22168), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(22170), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(22172), 1, + aux_sym_elseif_fragment_token1, + ACTIONS(22174), 1, + aux_sym_else_fragment_token1, + ACTIONS(22176), 1, + aux_sym_select_statement_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [300701] = 4, + STATE(9231), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [300721] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23000), 1, + anon_sym_DOT, + STATE(11574), 1, + aux_sym_dotted_type_expression_repeat1, + ACTIONS(4362), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(4364), 5, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + [300745] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(23003), 1, + sym_identifier, + STATE(10379), 1, + sym_member_expression, + STATE(12402), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13709), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(10365), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [300775] = 4, + STATE(9464), 1, + sym_comparison_operator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4250), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4240), 6, + anon_sym_EQ, + aux_sym_case_expression_token1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + aux_sym_comparison_operator_token1, + [300795] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(20301), 1, + aux_sym_frm_property_statement_token1, + ACTIONS(23005), 1, + sym_identifier, + STATE(7367), 1, + sym_member_expression, + STATE(12404), 1, + sym_call_expression, + STATE(13480), 1, + sym__callable_expression, + ACTIONS(13679), 2, + anon_sym_DOT, + anon_sym_BANG, + STATE(7346), 2, + sym_qualified_member_expression, + sym_implicit_member_expression, + [300825] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(64), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23007), 2, + sym_newline, + anon_sym_COLON, + [300852] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(129), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23011), 2, + sym_newline, + anon_sym_COLON, + [300879] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23013), 1, + sym_identifier, + ACTIONS(23015), 1, + aux_sym_byval_modifier_token1, + ACTIONS(23017), 1, + sym_byref_modifier, + ACTIONS(23019), 1, + sym_optional_modifier, + ACTIONS(23021), 1, + sym_paramarray_modifier, + ACTIONS(23023), 1, + anon_sym_RPAREN, + STATE(13079), 1, + sym_parameter, + STATE(13190), 1, + sym_byval_modifier, + [300910] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23013), 1, + sym_identifier, + ACTIONS(23015), 1, + aux_sym_byval_modifier_token1, + ACTIONS(23017), 1, + sym_byref_modifier, + ACTIONS(23019), 1, + sym_optional_modifier, + ACTIONS(23021), 1, + sym_paramarray_modifier, + ACTIONS(23025), 1, + anon_sym_RPAREN, + STATE(12699), 1, + sym_parameter, + STATE(13190), 1, + sym_byval_modifier, + [300941] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11753), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11755), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [300960] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(88), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23027), 2, + sym_newline, + anon_sym_COLON, + [300987] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(109), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23029), 2, + sym_newline, + anon_sym_COLON, + [301014] = 7, + ACTIONS(22114), 1, + sym_static_modifier, + ACTIONS(23031), 1, + aux_sym_declare_sub_statement_token2, + STATE(12170), 1, + sym_visibility, + STATE(13865), 1, + sym__sub_header, + STATE(14154), 1, + sym__procedure_modifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22110), 3, + aux_sym_option_statement_token3, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + [301039] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(74), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23033), 2, + sym_newline, + anon_sym_COLON, + [301066] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11749), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11751), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [301085] = 6, + ACTIONS(22351), 1, + anon_sym_EQ, + ACTIONS(22355), 1, + aux_sym_as_type_clause_token1, + STATE(11774), 1, + sym_as_type_clause, + STATE(12410), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7289), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [301108] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(67), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23035), 2, + sym_newline, + anon_sym_COLON, + [301135] = 7, + ACTIONS(22114), 1, + sym_static_modifier, + ACTIONS(23037), 1, + aux_sym_declare_function_statement_token1, + STATE(12170), 1, + sym_visibility, + STATE(14565), 1, + sym__function_header, + STATE(14566), 1, + sym__procedure_modifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22110), 3, + aux_sym_option_statement_token3, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + [301160] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5629), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + anon_sym_SEMI, + sym_number_literal, + [301175] = 7, + ACTIONS(22114), 1, + sym_static_modifier, + ACTIONS(23037), 1, + aux_sym_declare_function_statement_token1, + STATE(12170), 1, + sym_visibility, + STATE(14325), 1, + sym__function_header, + STATE(14566), 1, + sym__procedure_modifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22110), 3, + aux_sym_option_statement_token3, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + [301200] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(113), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23039), 2, + sym_newline, + anon_sym_COLON, + [301227] = 7, + ACTIONS(22114), 1, + sym_static_modifier, + ACTIONS(23037), 1, + aux_sym_declare_function_statement_token1, + STATE(12170), 1, + sym_visibility, + STATE(14566), 1, + sym__procedure_modifier, + STATE(14603), 1, + sym__function_header, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22110), 3, + aux_sym_option_statement_token3, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + [301252] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4591), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4589), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [301271] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11771), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11773), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [301290] = 8, + ACTIONS(22353), 1, + anon_sym_LPAREN, + ACTIONS(23041), 1, + anon_sym_EQ, + ACTIONS(23045), 1, + aux_sym_as_type_clause_token1, + STATE(11973), 1, + sym_array_bounds, + STATE(12166), 1, + sym_as_type_clause, + STATE(13606), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23043), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [301317] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7986), 8, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_else_fragment_token1, + sym_number_literal, + [301332] = 7, + ACTIONS(22114), 1, + sym_static_modifier, + ACTIONS(23031), 1, + aux_sym_declare_sub_statement_token2, + STATE(12170), 1, + sym_visibility, + STATE(14154), 1, + sym__procedure_modifier, + STATE(14434), 1, + sym__sub_header, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22110), 3, + aux_sym_option_statement_token3, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + [301357] = 8, + ACTIONS(22353), 1, + anon_sym_LPAREN, + ACTIONS(23041), 1, + anon_sym_EQ, + ACTIONS(23045), 1, + aux_sym_as_type_clause_token1, + STATE(11915), 1, + sym_array_bounds, + STATE(12286), 1, + sym_as_type_clause, + STATE(13299), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23047), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [301384] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(116), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23049), 2, + sym_newline, + anon_sym_COLON, + [301411] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8024), 8, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_else_fragment_token1, + sym_number_literal, + [301426] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22267), 1, + anon_sym_LPAREN, + STATE(11871), 1, + sym_array_bounds, + ACTIONS(8070), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(8072), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [301449] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21664), 1, + sym_identifier, + ACTIONS(21666), 1, + sym_newline, + ACTIONS(21668), 1, + aux_sym_type_preprocessor_if_token1, + ACTIONS(23051), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14024), 1, + sym_type_preprocessor_block, + STATE(11377), 3, + sym_type_member, + sym_type_preprocessor_if, + aux_sym_type_preprocessor_block_repeat1, + [301476] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23013), 1, + sym_identifier, + ACTIONS(23015), 1, + aux_sym_byval_modifier_token1, + ACTIONS(23017), 1, + sym_byref_modifier, + ACTIONS(23019), 1, + sym_optional_modifier, + ACTIONS(23021), 1, + sym_paramarray_modifier, + ACTIONS(23053), 1, + anon_sym_RPAREN, + STATE(12504), 1, + sym_parameter, + STATE(13190), 1, + sym_byval_modifier, + [301507] = 7, + ACTIONS(22114), 1, + sym_static_modifier, + ACTIONS(23037), 1, + aux_sym_declare_function_statement_token1, + STATE(12170), 1, + sym_visibility, + STATE(14566), 1, + sym__procedure_modifier, + STATE(14983), 1, + sym__function_header, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22110), 3, + aux_sym_option_statement_token3, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + [301532] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(92), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23055), 2, + sym_newline, + anon_sym_COLON, + [301559] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11815), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11817), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [301578] = 7, + ACTIONS(22114), 1, + sym_static_modifier, + ACTIONS(23031), 1, + aux_sym_declare_sub_statement_token2, + STATE(12170), 1, + sym_visibility, + STATE(13827), 1, + sym__sub_header, + STATE(14154), 1, + sym__procedure_modifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22110), 3, + aux_sym_option_statement_token3, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + [301603] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22267), 1, + anon_sym_LPAREN, + STATE(12026), 1, + sym_array_bounds, + ACTIONS(8081), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(8083), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [301626] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(95), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23057), 2, + sym_newline, + anon_sym_COLON, + [301653] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(78), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23059), 2, + sym_newline, + anon_sym_COLON, + [301680] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11799), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11801), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [301699] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11775), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11777), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [301718] = 8, + ACTIONS(22353), 1, + anon_sym_LPAREN, + ACTIONS(23041), 1, + anon_sym_EQ, + ACTIONS(23045), 1, + aux_sym_as_type_clause_token1, + STATE(11780), 1, + sym_array_bounds, + STATE(12206), 1, + sym_as_type_clause, + STATE(13226), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23061), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [301745] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11827), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11829), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [301764] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11745), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11747), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [301783] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(126), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23063), 2, + sym_newline, + anon_sym_COLON, + [301810] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4369), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(4371), 6, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + anon_sym_LPAREN, + anon_sym_STAR, + [301829] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11787), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11789), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [301848] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(98), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23065), 2, + sym_newline, + anon_sym_COLON, + [301875] = 8, + ACTIONS(22353), 1, + anon_sym_LPAREN, + ACTIONS(23041), 1, + anon_sym_EQ, + ACTIONS(23045), 1, + aux_sym_as_type_clause_token1, + STATE(12022), 1, + sym_array_bounds, + STATE(12185), 1, + sym_as_type_clause, + STATE(13282), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23067), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [301902] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11795), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11797), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [301921] = 6, + ACTIONS(22351), 1, + anon_sym_EQ, + ACTIONS(22355), 1, + aux_sym_as_type_clause_token1, + STATE(11960), 1, + sym_as_type_clause, + STATE(12177), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7202), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [301944] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(81), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23069), 2, + sym_newline, + anon_sym_COLON, + [301971] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11807), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11809), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [301990] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11779), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11781), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [302009] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(99), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23071), 2, + sym_newline, + anon_sym_COLON, + [302036] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23013), 1, + sym_identifier, + ACTIONS(23015), 1, + aux_sym_byval_modifier_token1, + ACTIONS(23017), 1, + sym_byref_modifier, + ACTIONS(23019), 1, + sym_optional_modifier, + ACTIONS(23021), 1, + sym_paramarray_modifier, + ACTIONS(23073), 1, + anon_sym_RPAREN, + STATE(13009), 1, + sym_parameter, + STATE(13190), 1, + sym_byval_modifier, + [302067] = 8, + ACTIONS(22353), 1, + anon_sym_LPAREN, + ACTIONS(23041), 1, + anon_sym_EQ, + ACTIONS(23045), 1, + aux_sym_as_type_clause_token1, + STATE(11792), 1, + sym_array_bounds, + STATE(12165), 1, + sym_as_type_clause, + STATE(13571), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23075), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [302094] = 8, + ACTIONS(22353), 1, + anon_sym_LPAREN, + ACTIONS(23041), 1, + anon_sym_EQ, + ACTIONS(23045), 1, + aux_sym_as_type_clause_token1, + STATE(11819), 1, + sym_array_bounds, + STATE(12188), 1, + sym_as_type_clause, + STATE(13431), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23077), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [302121] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(102), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23079), 2, + sym_newline, + anon_sym_COLON, + [302148] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5629), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_else_fragment_token1, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + anon_sym_SEMI, + sym_number_literal, + [302163] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(71), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23081), 2, + sym_newline, + anon_sym_COLON, + [302190] = 8, + ACTIONS(22353), 1, + anon_sym_LPAREN, + ACTIONS(23041), 1, + anon_sym_EQ, + ACTIONS(23045), 1, + aux_sym_as_type_clause_token1, + STATE(11734), 1, + sym_array_bounds, + STATE(12168), 1, + sym_as_type_clause, + STATE(13341), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23083), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [302217] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11803), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11805), 5, + aux_sym_frm_begin_block_token1, + aux_sym_frm_begin_block_token2, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_property_statement_token1, + sym_identifier, + [302236] = 7, + ACTIONS(22114), 1, + sym_static_modifier, + ACTIONS(23031), 1, + aux_sym_declare_sub_statement_token2, + STATE(12170), 1, + sym_visibility, + STATE(14016), 1, + sym__sub_header, + STATE(14154), 1, + sym__procedure_modifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22110), 3, + aux_sym_option_statement_token3, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + [302261] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23013), 1, + sym_identifier, + ACTIONS(23015), 1, + aux_sym_byval_modifier_token1, + ACTIONS(23017), 1, + sym_byref_modifier, + ACTIONS(23019), 1, + sym_optional_modifier, + ACTIONS(23021), 1, + sym_paramarray_modifier, + ACTIONS(23085), 1, + anon_sym_RPAREN, + STATE(12429), 1, + sym_parameter, + STATE(13190), 1, + sym_byval_modifier, + [302292] = 7, + ACTIONS(22114), 1, + sym_static_modifier, + ACTIONS(23037), 1, + aux_sym_declare_function_statement_token1, + STATE(12170), 1, + sym_visibility, + STATE(14566), 1, + sym__procedure_modifier, + STATE(14974), 1, + sym__function_header, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22110), 3, + aux_sym_option_statement_token3, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + [302317] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(85), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23087), 2, + sym_newline, + anon_sym_COLON, + [302344] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23089), 1, + anon_sym_COLON, + ACTIONS(3364), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(3370), 4, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_begin_property_block_token2, + aux_sym_frm_property_statement_token1, + sym_identifier, + [302365] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(11675), 1, + sym_newline, + ACTIONS(23091), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11677), 4, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_begin_property_block_token2, + aux_sym_frm_property_statement_token1, + sym_identifier, + [302388] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23013), 1, + sym_identifier, + ACTIONS(23015), 1, + aux_sym_byval_modifier_token1, + ACTIONS(23017), 1, + sym_byref_modifier, + ACTIONS(23019), 1, + sym_optional_modifier, + ACTIONS(23021), 1, + sym_paramarray_modifier, + ACTIONS(23093), 1, + anon_sym_RPAREN, + STATE(12455), 1, + sym_parameter, + STATE(13190), 1, + sym_byval_modifier, + [302419] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(60), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23095), 2, + sym_newline, + anon_sym_COLON, + [302446] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4625), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(4627), 6, + sym_newline, + anon_sym_COLON, + anon_sym_DOT, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + [302465] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(4364), 6, + sym_newline, + anon_sym_COLON, + anon_sym_DOT, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + [302484] = 6, + ACTIONS(20089), 1, + anon_sym_DOT, + ACTIONS(20091), 1, + anon_sym_BANG, + ACTIONS(20093), 1, + anon_sym_LPAREN, + STATE(10071), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4034), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [302507] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7970), 8, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_as_type_clause_token1, + aux_sym_else_fragment_token1, + sym_number_literal, + [302522] = 7, + ACTIONS(22114), 1, + sym_static_modifier, + ACTIONS(23031), 1, + aux_sym_declare_sub_statement_token2, + STATE(12170), 1, + sym_visibility, + STATE(14154), 1, + sym__procedure_modifier, + STATE(14907), 1, + sym__sub_header, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22110), 3, + aux_sym_option_statement_token3, + aux_sym_visibility_token1, + aux_sym_visibility_token2, + [302547] = 8, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + STATE(106), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23097), 2, + sym_newline, + anon_sym_COLON, + [302574] = 8, + ACTIONS(22353), 1, + anon_sym_LPAREN, + ACTIONS(23041), 1, + anon_sym_EQ, + ACTIONS(23045), 1, + aux_sym_as_type_clause_token1, + STATE(11904), 1, + sym_array_bounds, + STATE(12272), 1, + sym_as_type_clause, + STATE(13542), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23099), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [302601] = 10, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23013), 1, + sym_identifier, + ACTIONS(23015), 1, + aux_sym_byval_modifier_token1, + ACTIONS(23017), 1, + sym_byref_modifier, + ACTIONS(23019), 1, + sym_optional_modifier, + ACTIONS(23021), 1, + sym_paramarray_modifier, + ACTIONS(23101), 1, + anon_sym_RPAREN, + STATE(12903), 1, + sym_parameter, + STATE(13190), 1, + sym_byval_modifier, + [302632] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23103), 1, + sym_newline, + ACTIONS(23105), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + STATE(13232), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11664), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [302656] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23109), 1, + sym_newline, + ACTIONS(23111), 1, + aux_sym_frm_begin_block_token2, + STATE(13511), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [302680] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23113), 1, + sym_newline, + ACTIONS(23115), 1, + aux_sym_frm_begin_block_token2, + STATE(13513), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11660), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [302704] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23117), 1, + sym_newline, + ACTIONS(23119), 1, + aux_sym_frm_begin_block_token2, + STATE(13202), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11657), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [302728] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23109), 1, + sym_newline, + ACTIONS(23121), 1, + aux_sym_frm_begin_block_token2, + STATE(13206), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [302752] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23123), 1, + sym_newline, + ACTIONS(23125), 1, + aux_sym_frm_begin_block_token2, + STATE(13208), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11659), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [302776] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23109), 1, + sym_newline, + ACTIONS(23127), 1, + aux_sym_frm_begin_block_token2, + STATE(13209), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [302800] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23109), 1, + sym_newline, + ACTIONS(23129), 1, + aux_sym_frm_begin_block_token2, + STATE(13518), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [302824] = 9, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23013), 1, + sym_identifier, + ACTIONS(23015), 1, + aux_sym_byval_modifier_token1, + ACTIONS(23017), 1, + sym_byref_modifier, + ACTIONS(23019), 1, + sym_optional_modifier, + ACTIONS(23021), 1, + sym_paramarray_modifier, + STATE(13114), 1, + sym_parameter, + STATE(13190), 1, + sym_byval_modifier, + [302852] = 4, + ACTIONS(23131), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23133), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5754), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [302870] = 6, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(21153), 1, + anon_sym_RPAREN, + ACTIONS(23135), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23137), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [302892] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23109), 1, + sym_newline, + ACTIONS(23139), 1, + aux_sym_frm_begin_block_token2, + STATE(13236), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [302916] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23141), 1, + sym_newline, + ACTIONS(23143), 1, + aux_sym_frm_begin_block_token2, + STATE(13238), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11666), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [302940] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23109), 1, + sym_newline, + ACTIONS(23145), 1, + aux_sym_frm_begin_block_token2, + STATE(13240), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [302964] = 6, + ACTIONS(23147), 1, + anon_sym_COMMA, + ACTIONS(23149), 1, + anon_sym_SEMI, + STATE(12096), 1, + aux_sym__unparenthesized_argument_sequence_repeat1, + STATE(12115), 1, + aux_sym__argument_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7653), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [302986] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11753), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11755), 4, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_begin_property_block_token2, + aux_sym_frm_property_statement_token1, + sym_identifier, + [303004] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11807), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11809), 4, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_begin_property_block_token2, + aux_sym_frm_property_statement_token1, + sym_identifier, + [303022] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23151), 1, + sym_newline, + ACTIONS(23153), 1, + aux_sym_frm_begin_block_token2, + STATE(13265), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11672), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303046] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(3994), 7, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + aux_sym__for_each_header_token2, + sym_number_literal, + [303060] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23109), 1, + sym_newline, + ACTIONS(23155), 1, + aux_sym_frm_begin_block_token2, + STATE(13270), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303084] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23157), 1, + sym_newline, + ACTIONS(23159), 1, + aux_sym_frm_begin_block_token2, + STATE(13272), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11674), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303108] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23109), 1, + sym_newline, + ACTIONS(23161), 1, + aux_sym_frm_begin_block_token2, + STATE(13273), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303132] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(23163), 1, + sym_identifier, + STATE(10536), 1, + sym__statement_separator, + ACTIONS(23091), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(23165), 2, + sym_newline, + anon_sym_COLON, + [303156] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23167), 1, + sym_newline, + ACTIONS(23169), 1, + aux_sym_frm_begin_block_token2, + STATE(13296), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11677), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303180] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23109), 1, + sym_newline, + ACTIONS(23171), 1, + aux_sym_frm_begin_block_token2, + STATE(13298), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303204] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23173), 1, + sym_newline, + ACTIONS(23175), 1, + aux_sym_frm_begin_block_token2, + STATE(13300), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11680), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303228] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11771), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11773), 4, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_begin_property_block_token2, + aux_sym_frm_property_statement_token1, + sym_identifier, + [303246] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23109), 1, + sym_newline, + ACTIONS(23177), 1, + aux_sym_frm_begin_block_token2, + STATE(13301), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303270] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23179), 1, + sym_newline, + ACTIONS(23181), 1, + aux_sym_frm_begin_block_token2, + STATE(13326), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11683), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303294] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23109), 1, + sym_newline, + ACTIONS(23183), 1, + aux_sym_frm_begin_block_token2, + STATE(13654), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303318] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23109), 1, + sym_newline, + ACTIONS(23185), 1, + aux_sym_frm_begin_block_token2, + STATE(13329), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303342] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23187), 1, + sym_newline, + ACTIONS(23189), 1, + aux_sym_frm_begin_block_token2, + STATE(13331), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11685), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303366] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23109), 1, + sym_newline, + ACTIONS(23191), 1, + aux_sym_frm_begin_block_token2, + STATE(13332), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303390] = 6, + ACTIONS(7870), 1, + anon_sym_LPAREN, + ACTIONS(23193), 1, + anon_sym_COMMA, + STATE(10051), 1, + sym_argument_list, + STATE(12069), 1, + aux_sym_input_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7866), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [303412] = 6, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(21101), 1, + anon_sym_RPAREN, + ACTIONS(23135), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23137), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [303434] = 5, + STATE(7450), 1, + sym_char_position, + STATE(11690), 1, + aux_sym_output_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23195), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(7633), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [303454] = 6, + ACTIONS(20089), 1, + anon_sym_DOT, + ACTIONS(20091), 1, + anon_sym_BANG, + ACTIONS(20093), 1, + anon_sym_LPAREN, + STATE(12484), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8901), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [303476] = 5, + STATE(7451), 1, + sym_char_position, + STATE(11700), 1, + aux_sym_output_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23195), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(7611), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [303496] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8527), 7, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_else_fragment_token1, + sym_number_literal, + [303510] = 5, + STATE(7448), 1, + sym_char_position, + STATE(11700), 1, + aux_sym_output_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23195), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(7462), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [303530] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11827), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11829), 4, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_begin_property_block_token2, + aux_sym_frm_property_statement_token1, + sym_identifier, + [303548] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(23197), 1, + sym_identifier, + STATE(10558), 1, + sym__statement_separator, + ACTIONS(23091), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(23199), 2, + sym_newline, + anon_sym_COLON, + [303572] = 5, + STATE(7446), 1, + sym_char_position, + STATE(11692), 1, + aux_sym_output_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23195), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(7476), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [303592] = 6, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(21168), 1, + anon_sym_RPAREN, + ACTIONS(23135), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23137), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [303614] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23201), 1, + sym_newline, + ACTIONS(23203), 1, + aux_sym_frm_begin_block_token2, + STATE(13320), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11682), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303638] = 6, + ACTIONS(22353), 1, + anon_sym_LPAREN, + ACTIONS(23205), 1, + anon_sym_STAR, + STATE(11558), 1, + sym_fixed_string_length, + STATE(11729), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7232), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + [303660] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23207), 1, + sym_newline, + ACTIONS(23209), 1, + aux_sym_frm_begin_block_token2, + STATE(13338), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11721), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303684] = 5, + STATE(7513), 1, + sym_char_position, + STATE(11700), 1, + aux_sym_output_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7622), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(7620), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [303704] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22429), 1, + anon_sym_LPAREN, + STATE(12099), 1, + sym_array_bounds, + ACTIONS(8081), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(8083), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [303726] = 6, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(21192), 1, + anon_sym_RPAREN, + ACTIONS(23135), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23137), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [303748] = 4, + ACTIONS(23131), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23133), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5701), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [303766] = 4, + ACTIONS(23131), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23133), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7642), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [303784] = 4, + ACTIONS(20089), 1, + anon_sym_DOT, + ACTIONS(20091), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5558), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + aux_sym_else_fragment_token1, + sym_number_literal, + [303802] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4369), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(4371), 5, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + anon_sym_LPAREN, + anon_sym_STAR, + [303820] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4591), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(4589), 4, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_begin_property_block_token2, + aux_sym_frm_property_statement_token1, + sym_identifier, + [303838] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8072), 7, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_else_fragment_token1, + sym_number_literal, + [303852] = 6, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(21158), 1, + anon_sym_RPAREN, + ACTIONS(23135), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23137), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [303874] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23211), 1, + sym_newline, + ACTIONS(23213), 1, + aux_sym_frm_begin_block_token2, + STATE(13120), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11711), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303898] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23109), 1, + sym_newline, + ACTIONS(23215), 1, + aux_sym_frm_begin_block_token2, + STATE(13124), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303922] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8622), 7, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_else_fragment_token1, + sym_number_literal, + [303936] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23217), 1, + sym_newline, + ACTIONS(23219), 1, + aux_sym_frm_begin_block_token2, + STATE(13126), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11714), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303960] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23109), 1, + sym_newline, + ACTIONS(23221), 1, + aux_sym_frm_begin_block_token2, + STATE(13128), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [303984] = 6, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(21110), 1, + anon_sym_RPAREN, + ACTIONS(23135), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23137), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [304006] = 4, + ACTIONS(23131), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23133), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5871), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [304024] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11799), 3, + sym_newline, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(11801), 4, + aux_sym_frm_begin_property_block_token1, + aux_sym_frm_begin_property_block_token2, + aux_sym_frm_property_statement_token1, + sym_identifier, + [304042] = 6, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(21117), 1, + anon_sym_RPAREN, + ACTIONS(23135), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23137), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [304064] = 7, + ACTIONS(23223), 1, + sym_newline, + ACTIONS(23226), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(23228), 1, + aux_sym_select_statement_token2, + ACTIONS(23231), 1, + sym_number_literal, + STATE(15114), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [304088] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22429), 1, + anon_sym_LPAREN, + STATE(12133), 1, + sym_array_bounds, + ACTIONS(8070), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(8072), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [304110] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23109), 1, + sym_newline, + ACTIONS(23234), 1, + aux_sym_frm_begin_block_token2, + STATE(13125), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [304134] = 6, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(21175), 1, + anon_sym_RPAREN, + ACTIONS(23135), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23137), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [304156] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23236), 1, + sym_newline, + ACTIONS(23238), 1, + aux_sym_frm_begin_block_token2, + STATE(13171), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11724), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [304180] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23109), 1, + sym_newline, + ACTIONS(23240), 1, + aux_sym_frm_begin_block_token2, + STATE(13175), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [304204] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23242), 1, + sym_newline, + ACTIONS(23244), 1, + aux_sym_frm_begin_block_token2, + STATE(13177), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11726), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [304228] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23109), 1, + sym_newline, + ACTIONS(23246), 1, + aux_sym_frm_begin_block_token2, + STATE(13179), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11719), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [304252] = 6, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(21165), 1, + anon_sym_RPAREN, + ACTIONS(23135), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23137), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [304274] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23107), 1, + aux_sym_select_statement_token2, + ACTIONS(23248), 1, + sym_newline, + ACTIONS(23250), 1, + aux_sym_frm_begin_block_token2, + STATE(13507), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11654), 2, + sym_case_clause, + aux_sym_select_statement_repeat1, + [304298] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8083), 7, + sym_newline, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_else_fragment_token1, + sym_number_literal, + [304312] = 6, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(21186), 1, + anon_sym_RPAREN, + ACTIONS(23135), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23137), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [304334] = 4, + ACTIONS(23131), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23133), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7649), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [304352] = 6, + ACTIONS(5871), 1, + anon_sym_COMMA, + ACTIONS(21189), 1, + anon_sym_RPAREN, + ACTIONS(23135), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23137), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [304374] = 6, + ACTIONS(22353), 1, + anon_sym_LPAREN, + ACTIONS(23205), 1, + anon_sym_STAR, + STATE(11500), 1, + sym_fixed_string_length, + STATE(11708), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7136), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + [304396] = 6, + ACTIONS(23041), 1, + anon_sym_EQ, + ACTIONS(23045), 1, + aux_sym_as_type_clause_token1, + STATE(12275), 1, + sym_as_type_clause, + STATE(13118), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23252), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [304417] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23254), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + STATE(14374), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11740), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [304438] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23258), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14376), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [304459] = 3, + ACTIONS(21415), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [304474] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23260), 1, + sym_newline, + ACTIONS(23262), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12835), 1, + sym_single_line_block, + STATE(14387), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [304497] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23264), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [304520] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23266), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14393), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [304541] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23268), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(23270), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [304558] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23272), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14217), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [304579] = 3, + ACTIONS(21276), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [304594] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23274), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [304617] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23276), 1, + sym_newline, + ACTIONS(23278), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12797), 1, + sym_single_line_block, + STATE(14186), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [304640] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23280), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [304663] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23282), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [304686] = 4, + STATE(12562), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8172), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [304703] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23284), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [304726] = 3, + ACTIONS(21289), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [304741] = 3, + ACTIONS(21343), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [304756] = 3, + ACTIONS(21426), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [304771] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23286), 1, + sym_newline, + ACTIONS(23288), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12849), 1, + sym_single_line_block, + STATE(14450), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [304794] = 5, + ACTIONS(5558), 1, + anon_sym_LPAREN, + STATE(10550), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23091), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(23290), 2, + sym_newline, + anon_sym_COLON, + [304813] = 4, + STATE(12778), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8190), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [304830] = 4, + STATE(12668), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8477), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [304847] = 4, + STATE(12677), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8493), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [304864] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23292), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14462), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11764), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [304885] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23294), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14464), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [304906] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23296), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [304929] = 3, + ACTIONS(21432), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [304944] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23298), 1, + sym_newline, + ACTIONS(23300), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12854), 1, + sym_single_line_block, + STATE(14475), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [304967] = 6, + ACTIONS(21672), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(21674), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23302), 1, + aux_sym_type_preprocessor_if_token3, + STATE(13718), 1, + sym_type_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11801), 2, + sym_type_preprocessor_elseif, + aux_sym_type_preprocessor_if_repeat1, + [304988] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23304), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14481), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [305009] = 4, + STATE(12563), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8142), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [305026] = 3, + ACTIONS(21396), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [305041] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23306), 1, + sym_identifier, + ACTIONS(23308), 1, + sym_static_modifier, + ACTIONS(23310), 1, + sym__dim_keyword, + ACTIONS(23312), 1, + sym_with_events_modifier, + ACTIONS(23314), 1, + aux_sym_const_declaration_token1, + STATE(6260), 1, + sym_variable_declarator, + [305066] = 3, + ACTIONS(21284), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [305081] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23316), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [305104] = 4, + STATE(12679), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8503), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [305121] = 3, + ACTIONS(21392), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [305136] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23318), 1, + sym_identifier, + STATE(12273), 1, + sym__attribute_identifier, + STATE(13792), 1, + sym__attribute_name, + STATE(13813), 1, + sym__attribute_member_expression, + ACTIONS(23320), 2, + aux_sym_frm_property_statement_token1, + aux_sym__attribute_identifier_token1, + [305159] = 6, + ACTIONS(21672), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(21674), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23322), 1, + aux_sym_type_preprocessor_if_token3, + STATE(13720), 1, + sym_type_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12076), 2, + sym_type_preprocessor_elseif, + aux_sym_type_preprocessor_if_repeat1, + [305180] = 4, + ACTIONS(22351), 1, + anon_sym_EQ, + STATE(12180), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8093), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [305197] = 3, + ACTIONS(21246), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [305212] = 4, + STATE(12681), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8511), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [305229] = 4, + STATE(12684), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8515), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [305246] = 3, + ACTIONS(21282), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [305261] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23324), 1, + sym_newline, + ACTIONS(23326), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12862), 1, + sym_single_line_block, + STATE(14538), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [305284] = 6, + ACTIONS(23041), 1, + anon_sym_EQ, + ACTIONS(23045), 1, + aux_sym_as_type_clause_token1, + STATE(12167), 1, + sym_as_type_clause, + STATE(13553), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23328), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [305305] = 4, + STATE(11920), 1, + aux_sym_print_argument_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20577), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(8068), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [305322] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23330), 1, + aux_sym_type_preprocessor_if_token3, + STATE(15011), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [305343] = 4, + STATE(12692), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8519), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [305360] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23332), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14550), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11790), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [305381] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23334), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14552), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [305402] = 4, + STATE(12930), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8425), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [305419] = 4, + STATE(12931), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8429), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [305436] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23336), 1, + sym_newline, + ACTIONS(23338), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12870), 1, + sym_single_line_block, + STATE(14562), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [305459] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23340), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [305482] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23342), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14568), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [305503] = 3, + ACTIONS(21440), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [305518] = 6, + ACTIONS(23041), 1, + anon_sym_EQ, + ACTIONS(23045), 1, + aux_sym_as_type_clause_token1, + STATE(12201), 1, + sym_as_type_clause, + STATE(13183), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23344), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [305539] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23346), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [305562] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23348), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14923), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11859), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [305583] = 5, + STATE(7455), 1, + sym_char_position, + STATE(11700), 1, + aux_sym_output_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7462), 2, + anon_sym_COLON, + sym_number_literal, + ACTIONS(23350), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [305602] = 3, + ACTIONS(21345), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [305617] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23352), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [305640] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23354), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [305663] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23356), 1, + sym_identifier, + ACTIONS(23358), 1, + sym_static_modifier, + ACTIONS(23360), 1, + sym__dim_keyword, + ACTIONS(23362), 1, + sym_with_events_modifier, + ACTIONS(23364), 1, + aux_sym_const_declaration_token1, + STATE(4868), 1, + sym_variable_declarator, + [305688] = 3, + ACTIONS(21244), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [305703] = 6, + ACTIONS(21672), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(21674), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23366), 1, + aux_sym_type_preprocessor_if_token3, + STATE(13724), 1, + sym_type_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12076), 2, + sym_type_preprocessor_elseif, + aux_sym_type_preprocessor_if_repeat1, + [305724] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23368), 1, + sym_newline, + ACTIONS(23370), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12887), 1, + sym_single_line_block, + STATE(14620), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [305747] = 3, + ACTIONS(21348), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [305762] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23372), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [305785] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23374), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [305808] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8070), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(8072), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [305825] = 3, + ACTIONS(21278), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [305840] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23376), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14632), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11815), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [305861] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23378), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14634), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [305882] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23380), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(23382), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [305899] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23384), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(23386), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [305916] = 3, + ACTIONS(21448), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [305931] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23388), 1, + sym_newline, + ACTIONS(23390), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12894), 1, + sym_single_line_block, + STATE(14643), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [305954] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23392), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [305977] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23394), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14649), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [305998] = 4, + STATE(12924), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8417), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [306015] = 6, + ACTIONS(23398), 1, + anon_sym_LPAREN, + ACTIONS(23400), 1, + aux_sym_as_type_clause_token1, + STATE(12261), 1, + sym_parameter_list, + STATE(13434), 1, + sym_as_type_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23396), 2, + sym_newline, + anon_sym_COLON, + [306036] = 4, + ACTIONS(22351), 1, + anon_sym_EQ, + STATE(12176), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8089), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [306053] = 6, + ACTIONS(23041), 1, + anon_sym_EQ, + ACTIONS(23045), 1, + aux_sym_as_type_clause_token1, + STATE(12163), 1, + sym_as_type_clause, + STATE(13589), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23402), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [306074] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23404), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14676), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11822), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [306095] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23406), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14678), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [306116] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23408), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14680), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [306137] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23410), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [306160] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23412), 1, + sym_newline, + ACTIONS(23414), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12811), 1, + sym_single_line_block, + STATE(14274), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [306183] = 6, + ACTIONS(23398), 1, + anon_sym_LPAREN, + ACTIONS(23400), 1, + aux_sym_as_type_clause_token1, + STATE(12264), 1, + sym_parameter_list, + STATE(13455), 1, + sym_as_type_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23416), 2, + sym_newline, + anon_sym_COLON, + [306204] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23418), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [306227] = 3, + ACTIONS(21356), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [306242] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23420), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [306265] = 4, + STATE(12875), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8296), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [306282] = 3, + ACTIONS(21354), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [306297] = 4, + STATE(12872), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8285), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [306314] = 3, + ACTIONS(21350), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [306329] = 5, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4034), 2, + anon_sym_EQ, + aux_sym__for_each_header_token2, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + [306348] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23422), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [306371] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23424), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [306394] = 6, + ACTIONS(23398), 1, + anon_sym_LPAREN, + ACTIONS(23400), 1, + aux_sym_as_type_clause_token1, + STATE(12268), 1, + sym_parameter_list, + STATE(13520), 1, + sym_as_type_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23426), 2, + sym_newline, + anon_sym_COLON, + [306415] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23428), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [306438] = 4, + STATE(12929), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8421), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [306455] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21886), 1, + sym_identifier, + ACTIONS(21898), 1, + sym__dim_keyword, + ACTIONS(21900), 1, + sym_with_events_modifier, + ACTIONS(21902), 1, + aux_sym_const_declaration_token1, + ACTIONS(23430), 1, + sym_static_modifier, + STATE(4153), 1, + sym_variable_declarator, + [306480] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23432), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [306503] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22026), 1, + sym_identifier, + ACTIONS(22038), 1, + sym__dim_keyword, + ACTIONS(22040), 1, + sym_with_events_modifier, + ACTIONS(22042), 1, + aux_sym_const_declaration_token1, + ACTIONS(23434), 1, + sym_static_modifier, + STATE(3686), 1, + sym_variable_declarator, + [306528] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23436), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(23438), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [306545] = 3, + ACTIONS(21291), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [306560] = 3, + ACTIONS(21272), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [306575] = 3, + ACTIONS(21293), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [306590] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23440), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [306613] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23442), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [306636] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23444), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [306659] = 3, + ACTIONS(21211), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [306674] = 3, + ACTIONS(21250), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [306689] = 6, + ACTIONS(21672), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(21674), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23446), 1, + aux_sym_type_preprocessor_if_token3, + STATE(15094), 1, + sym_type_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12076), 2, + sym_type_preprocessor_elseif, + aux_sym_type_preprocessor_if_repeat1, + [306710] = 3, + ACTIONS(6646), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20443), 5, + aux_sym_frm_begin_block_token2, + aux_sym_select_statement_token2, + aux_sym__multiline_for_tail_token1, + aux_sym_do_statement_token2, + aux_sym_while_statement_token1, + [306725] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23448), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [306748] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23450), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(23452), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [306765] = 3, + ACTIONS(21280), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [306780] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23454), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [306803] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23318), 1, + sym_identifier, + STATE(12273), 1, + sym__attribute_identifier, + STATE(13813), 1, + sym__attribute_member_expression, + STATE(14352), 1, + sym__attribute_name, + ACTIONS(23320), 2, + aux_sym_frm_property_statement_token1, + aux_sym__attribute_identifier_token1, + [306826] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23456), 1, + sym_identifier, + ACTIONS(23458), 1, + sym_static_modifier, + ACTIONS(23460), 1, + sym__dim_keyword, + ACTIONS(23462), 1, + sym_with_events_modifier, + ACTIONS(23464), 1, + aux_sym_const_declaration_token1, + STATE(5485), 1, + sym_variable_declarator, + [306851] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23466), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14214), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [306872] = 6, + ACTIONS(22353), 1, + anon_sym_LPAREN, + ACTIONS(23468), 1, + anon_sym_STAR, + STATE(11558), 1, + sym_fixed_string_length, + STATE(11729), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7232), 2, + sym_newline, + anon_sym_COLON, + [306893] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23470), 1, + sym_newline, + ACTIONS(23472), 1, + anon_sym_COLON, + STATE(12708), 1, + sym_single_line_block, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(13920), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [306916] = 5, + ACTIONS(5558), 1, + anon_sym_LPAREN, + STATE(10559), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23091), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(23474), 2, + sym_newline, + anon_sym_COLON, + [306935] = 6, + ACTIONS(23398), 1, + anon_sym_LPAREN, + ACTIONS(23400), 1, + aux_sym_as_type_clause_token1, + STATE(12208), 1, + sym_parameter_list, + STATE(13333), 1, + sym_as_type_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23476), 2, + sym_newline, + anon_sym_COLON, + [306956] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23478), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(23480), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [306973] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23482), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(23484), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [306990] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23486), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [307013] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8081), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(8083), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [307030] = 6, + ACTIONS(23149), 1, + anon_sym_SEMI, + ACTIONS(23488), 1, + anon_sym_COMMA, + STATE(12096), 1, + aux_sym__unparenthesized_argument_sequence_repeat1, + STATE(12222), 1, + aux_sym__argument_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7653), 2, + anon_sym_COLON, + sym_number_literal, + [307051] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23490), 1, + sym_identifier, + ACTIONS(23492), 1, + sym_static_modifier, + ACTIONS(23494), 1, + sym__dim_keyword, + ACTIONS(23496), 1, + sym_with_events_modifier, + ACTIONS(23498), 1, + aux_sym_const_declaration_token1, + STATE(5757), 1, + sym_variable_declarator, + [307076] = 3, + ACTIONS(21360), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [307091] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8525), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(8527), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [307108] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23500), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [307131] = 3, + ACTIONS(21218), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [307146] = 3, + ACTIONS(21201), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [307161] = 3, + ACTIONS(21333), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [307176] = 3, + STATE(12094), 1, + sym_file_mode, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23502), 5, + aux_sym_option_statement_token6, + aux_sym_file_mode_token1, + aux_sym_file_mode_token2, + aux_sym_file_mode_token3, + aux_sym_file_mode_token4, + [307191] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23504), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [307214] = 3, + ACTIONS(21205), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [307229] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23506), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [307252] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23508), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [307275] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23510), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [307298] = 3, + ACTIONS(21199), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [307313] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23512), 1, + sym_identifier, + ACTIONS(23514), 1, + sym_static_modifier, + ACTIONS(23516), 1, + sym__dim_keyword, + ACTIONS(23518), 1, + sym_with_events_modifier, + ACTIONS(23520), 1, + aux_sym_const_declaration_token1, + STATE(5232), 1, + sym_variable_declarator, + [307338] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23522), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14286), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11908), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [307359] = 3, + ACTIONS(21564), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [307374] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23524), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [307397] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8022), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(8024), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [307414] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23526), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14288), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [307435] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6089), 6, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + aux_sym__for_each_header_token2, + sym_number_literal, + [307448] = 3, + STATE(12102), 1, + sym_file_mode, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23502), 5, + aux_sym_option_statement_token6, + aux_sym_file_mode_token1, + aux_sym_file_mode_token2, + aux_sym_file_mode_token3, + aux_sym_file_mode_token4, + [307463] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8395), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [307480] = 3, + ACTIONS(21307), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [307495] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23528), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [307518] = 4, + STATE(12877), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8300), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [307535] = 3, + ACTIONS(21240), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [307550] = 3, + ACTIONS(21234), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [307565] = 6, + ACTIONS(23398), 1, + anon_sym_LPAREN, + ACTIONS(23400), 1, + aux_sym_as_type_clause_token1, + STATE(12192), 1, + sym_parameter_list, + STATE(13554), 1, + sym_as_type_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23530), 2, + sym_newline, + anon_sym_COLON, + [307586] = 3, + ACTIONS(21274), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [307601] = 3, + STATE(12048), 1, + sym_file_mode, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23502), 5, + aux_sym_option_statement_token6, + aux_sym_file_mode_token1, + aux_sym_file_mode_token2, + aux_sym_file_mode_token3, + aux_sym_file_mode_token4, + [307616] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23532), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [307639] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7968), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(7970), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [307656] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23534), 1, + sym_newline, + ACTIONS(23536), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12817), 1, + sym_single_line_block, + STATE(14299), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [307679] = 3, + ACTIONS(21578), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [307694] = 6, + ACTIONS(23041), 1, + anon_sym_EQ, + ACTIONS(23045), 1, + aux_sym_as_type_clause_token1, + STATE(12169), 1, + sym_as_type_clause, + STATE(13290), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23538), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [307715] = 3, + ACTIONS(21253), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [307730] = 3, + ACTIONS(21581), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [307745] = 3, + STATE(12127), 1, + sym_file_mode, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23502), 5, + aux_sym_option_statement_token6, + aux_sym_file_mode_token1, + aux_sym_file_mode_token2, + aux_sym_file_mode_token3, + aux_sym_file_mode_token4, + [307760] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23540), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14305), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [307781] = 3, + ACTIONS(21255), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [307796] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23542), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [307819] = 4, + STATE(12867), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8273), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [307836] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23544), 1, + sym_newline, + ACTIONS(23546), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12747), 1, + sym_single_line_block, + STATE(13975), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [307859] = 4, + STATE(12869), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8277), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [307876] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23548), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [307899] = 6, + ACTIONS(23041), 1, + anon_sym_EQ, + ACTIONS(23045), 1, + aux_sym_as_type_clause_token1, + STATE(12409), 1, + sym_as_type_clause, + STATE(13631), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23550), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [307920] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23552), 1, + sym_newline, + ACTIONS(23554), 1, + anon_sym_COLON, + STATE(12722), 1, + sym_single_line_block, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(13873), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [307943] = 3, + ACTIONS(21412), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [307958] = 3, + STATE(12093), 1, + sym_file_mode, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23502), 5, + aux_sym_option_statement_token6, + aux_sym_file_mode_token1, + aux_sym_file_mode_token2, + aux_sym_file_mode_token3, + aux_sym_file_mode_token4, + [307973] = 5, + STATE(7454), 1, + sym_char_position, + STATE(11795), 1, + aux_sym_output_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7476), 2, + anon_sym_COLON, + sym_number_literal, + ACTIONS(23350), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [307992] = 4, + STATE(11920), 1, + aux_sym_print_argument_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23556), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(5843), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [308009] = 5, + STATE(7453), 1, + sym_char_position, + STATE(11700), 1, + aux_sym_output_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7611), 2, + anon_sym_COLON, + sym_number_literal, + ACTIONS(23350), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [308028] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23559), 1, + aux_sym_type_preprocessor_if_token3, + STATE(13991), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11933), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [308049] = 3, + ACTIONS(21595), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [308064] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23561), 1, + aux_sym_type_preprocessor_if_token3, + STATE(13993), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [308085] = 3, + STATE(12090), 1, + sym_file_mode, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23502), 5, + aux_sym_option_statement_token6, + aux_sym_file_mode_token1, + aux_sym_file_mode_token2, + aux_sym_file_mode_token3, + aux_sym_file_mode_token4, + [308100] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23563), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [308123] = 3, + ACTIONS(21258), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [308138] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23565), 1, + sym_identifier, + ACTIONS(23567), 1, + sym_static_modifier, + ACTIONS(23569), 1, + sym__dim_keyword, + ACTIONS(23571), 1, + sym_with_events_modifier, + ACTIONS(23573), 1, + aux_sym_const_declaration_token1, + STATE(5392), 1, + sym_variable_declarator, + [308163] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23575), 1, + sym_newline, + ACTIONS(23577), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12755), 1, + sym_single_line_block, + STATE(14004), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [308186] = 3, + ACTIONS(21209), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [308201] = 4, + STATE(12953), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8473), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [308218] = 3, + ACTIONS(21222), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [308233] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23579), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14010), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [308254] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7984), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(7986), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [308271] = 3, + STATE(12065), 1, + sym_file_mode, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23502), 5, + aux_sym_option_statement_token6, + aux_sym_file_mode_token1, + aux_sym_file_mode_token2, + aux_sym_file_mode_token3, + aux_sym_file_mode_token4, + [308286] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23581), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(23583), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [308303] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23585), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [308326] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23587), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [308349] = 4, + STATE(12814), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8219), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [308366] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23589), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [308389] = 3, + STATE(12106), 1, + sym_file_mode, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23502), 5, + aux_sym_option_statement_token6, + aux_sym_file_mode_token1, + aux_sym_file_mode_token2, + aux_sym_file_mode_token3, + aux_sym_file_mode_token4, + [308404] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23591), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14198), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11742), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [308425] = 3, + ACTIONS(21362), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [308440] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23593), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14200), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [308461] = 4, + STATE(12933), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8433), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [308478] = 6, + ACTIONS(23398), 1, + anon_sym_LPAREN, + ACTIONS(23400), 1, + aux_sym_as_type_clause_token1, + STATE(12194), 1, + sym_parameter_list, + STATE(13590), 1, + sym_as_type_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23595), 2, + sym_newline, + anon_sym_COLON, + [308499] = 3, + STATE(12101), 1, + sym_file_mode, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23502), 5, + aux_sym_option_statement_token6, + aux_sym_file_mode_token1, + aux_sym_file_mode_token2, + aux_sym_file_mode_token3, + aux_sym_file_mode_token4, + [308514] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23597), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [308537] = 3, + ACTIONS(21615), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [308552] = 3, + ACTIONS(21220), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [308567] = 6, + ACTIONS(23398), 1, + anon_sym_LPAREN, + ACTIONS(23400), 1, + aux_sym_as_type_clause_token1, + STATE(12195), 1, + sym_parameter_list, + STATE(13627), 1, + sym_as_type_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23599), 2, + sym_newline, + anon_sym_COLON, + [308588] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23601), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [308611] = 5, + STATE(7456), 1, + sym_char_position, + STATE(11921), 1, + aux_sym_output_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7633), 2, + anon_sym_COLON, + sym_number_literal, + ACTIONS(23350), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [308630] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23603), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [308653] = 3, + STATE(12131), 1, + sym_file_mode, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23502), 5, + aux_sym_option_statement_token6, + aux_sym_file_mode_token1, + aux_sym_file_mode_token2, + aux_sym_file_mode_token3, + aux_sym_file_mode_token4, + [308668] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23605), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [308691] = 3, + ACTIONS(21370), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [308706] = 4, + STATE(12816), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8223), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [308723] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23607), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [308746] = 4, + ACTIONS(22351), 1, + anon_sym_EQ, + STATE(12400), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7712), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [308763] = 4, + ACTIONS(20093), 1, + anon_sym_LPAREN, + STATE(10071), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4034), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [308780] = 3, + ACTIONS(21225), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [308795] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23609), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [308818] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23611), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [308841] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23613), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [308864] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23615), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [308887] = 4, + STATE(12803), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8205), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [308904] = 3, + ACTIONS(21236), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [308919] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23617), 1, + sym_newline, + ACTIONS(23619), 1, + anon_sym_COLON, + STATE(12680), 1, + sym_single_line_block, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(15206), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [308942] = 3, + ACTIONS(21228), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [308957] = 4, + STATE(12779), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8194), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [308974] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23621), 1, + sym_newline, + ACTIONS(23623), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12777), 1, + sym_single_line_block, + STATE(14083), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [308997] = 6, + ACTIONS(23041), 1, + anon_sym_EQ, + ACTIONS(23045), 1, + aux_sym_as_type_clause_token1, + STATE(12389), 1, + sym_as_type_clause, + STATE(13522), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23625), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [309018] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23627), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309041] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23629), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309064] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23631), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309087] = 4, + STATE(12955), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8481), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [309104] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23633), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309127] = 3, + ACTIONS(21337), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [309142] = 6, + ACTIONS(23398), 1, + anon_sym_LPAREN, + ACTIONS(23400), 1, + aux_sym_as_type_clause_token1, + STATE(12411), 1, + sym_parameter_list, + STATE(13172), 1, + sym_as_type_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23635), 2, + sym_newline, + anon_sym_COLON, + [309163] = 3, + ACTIONS(21398), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [309178] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23637), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309201] = 4, + STATE(12907), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8380), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [309218] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23639), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309241] = 3, + ACTIONS(21623), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [309256] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23641), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309279] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23643), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309302] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23645), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(20635), 4, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [309317] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23647), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309340] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23649), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14095), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12001), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [309361] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23651), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14097), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [309382] = 3, + ACTIONS(21630), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [309397] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23653), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309420] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23655), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309443] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23657), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309466] = 3, + ACTIONS(21422), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [309481] = 3, + ACTIONS(21248), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [309496] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23659), 1, + sym_newline, + ACTIONS(23661), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12785), 1, + sym_single_line_block, + STATE(14108), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309519] = 3, + ACTIONS(21650), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [309534] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23663), 1, + aux_sym_type_preprocessor_if_token3, + STATE(13676), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12035), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [309555] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23665), 1, + aux_sym_type_preprocessor_if_token3, + STATE(14114), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [309576] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23667), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309599] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23673), 1, + anon_sym_EQ, + ACTIONS(23669), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(23671), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [309618] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23675), 1, + aux_sym_type_preprocessor_if_token3, + STATE(13678), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [309639] = 3, + ACTIONS(21638), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [309654] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23677), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309677] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23679), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309700] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23681), 1, + sym_identifier, + ACTIONS(23683), 1, + sym_static_modifier, + ACTIONS(23685), 1, + sym__dim_keyword, + ACTIONS(23687), 1, + sym_with_events_modifier, + ACTIONS(23689), 1, + aux_sym_const_declaration_token1, + STATE(5229), 1, + sym_variable_declarator, + [309725] = 3, + ACTIONS(21286), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [309740] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23691), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309763] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23693), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309786] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23695), 1, + sym_newline, + ACTIONS(23697), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12828), 1, + sym_single_line_block, + STATE(14362), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309809] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23699), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309832] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23701), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309855] = 4, + STATE(12904), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8376), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [309872] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23703), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309895] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23705), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309918] = 4, + STATE(12871), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8281), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [309935] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23707), 1, + sym_newline, + ACTIONS(23709), 1, + anon_sym_COLON, + STATE(12690), 1, + sym_single_line_block, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(13690), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309958] = 3, + ACTIONS(21648), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [309973] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23711), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [309996] = 6, + ACTIONS(23041), 1, + anon_sym_EQ, + ACTIONS(23045), 1, + aux_sym_as_type_clause_token1, + STATE(12384), 1, + sym_as_type_clause, + STATE(13448), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23713), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [310017] = 3, + ACTIONS(21203), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [310032] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23715), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [310055] = 3, + ACTIONS(21382), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [310070] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8620), 2, + aux_sym_type_preprocessor_else_token1, + sym_identifier, + ACTIONS(8622), 4, + sym_newline, + aux_sym_type_preprocessor_if_token1, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [310087] = 7, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(23717), 1, + sym_newline, + ACTIONS(23719), 1, + anon_sym_COLON, + STATE(12744), 1, + aux_sym_inline_statement_sequence_repeat1, + STATE(12800), 1, + sym_single_line_block, + STATE(14211), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [310110] = 3, + ACTIONS(21652), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [310125] = 6, + ACTIONS(21672), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(21674), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23721), 1, + aux_sym_type_preprocessor_if_token3, + STATE(13864), 1, + sym_type_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(11851), 2, + sym_type_preprocessor_elseif, + aux_sym_type_preprocessor_if_repeat1, + [310146] = 3, + ACTIONS(21656), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [310161] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23723), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [310184] = 3, + ACTIONS(21262), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [310199] = 4, + STATE(12809), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8215), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [310216] = 6, + ACTIONS(21672), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(21674), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23725), 1, + aux_sym_type_preprocessor_if_token3, + STATE(13893), 1, + sym_type_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12076), 2, + sym_type_preprocessor_elseif, + aux_sym_type_preprocessor_if_repeat1, + [310237] = 6, + ACTIONS(85), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(23256), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23727), 1, + aux_sym_type_preprocessor_if_token3, + STATE(13697), 1, + sym_preprocessor_else, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [310258] = 4, + STATE(12923), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8413), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [310275] = 7, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(23729), 1, + aux_sym_type_preprocessor_if_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [310298] = 4, + STATE(12739), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8597), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [310315] = 4, + STATE(12741), 1, + sym_do_condition, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22427), 2, + aux_sym_do_condition_token1, + aux_sym_do_condition_token2, + ACTIONS(8601), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [310332] = 3, + ACTIONS(21242), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [310347] = 3, + ACTIONS(21419), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [310362] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23731), 1, + sym_identifier, + ACTIONS(23733), 1, + sym_static_modifier, + ACTIONS(23735), 1, + sym__dim_keyword, + ACTIONS(23737), 1, + sym_with_events_modifier, + ACTIONS(23739), 1, + aux_sym_const_declaration_token1, + STATE(12155), 1, + sym_variable_declarator, + [310387] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5718), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [310400] = 3, + ACTIONS(21384), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [310415] = 3, + ACTIONS(21388), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [310430] = 3, + ACTIONS(21270), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6338), 5, + aux_sym__print_output_call_binary_expression_token2, + aux_sym__print_output_call_binary_expression_token3, + aux_sym__print_output_call_binary_expression_token4, + aux_sym__print_output_call_binary_expression_token5, + aux_sym__print_output_call_binary_expression_token6, + [310445] = 6, + ACTIONS(22353), 1, + anon_sym_LPAREN, + ACTIONS(23468), 1, + anon_sym_STAR, + STATE(11500), 1, + sym_fixed_string_length, + STATE(11708), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7136), 2, + sym_newline, + anon_sym_COLON, + [310466] = 6, + ACTIONS(23741), 1, + aux_sym_as_type_clause_token1, + ACTIONS(23743), 1, + aux_sym_open_statement_token2, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + STATE(14119), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [310486] = 4, + ACTIONS(23749), 1, + anon_sym_COMMA, + STATE(12049), 1, + aux_sym_const_declaration_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8352), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [310502] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9130), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(9132), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [310518] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9138), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(9140), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [310534] = 4, + ACTIONS(23752), 1, + anon_sym_COMMA, + STATE(12052), 1, + aux_sym_erase_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8609), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [310550] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23755), 5, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym__for_header_token1, + aux_sym_do_statement_token1, + [310562] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23478), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(23480), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [310578] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9122), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(9124), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [310594] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23757), 5, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym__for_header_token1, + aux_sym_do_statement_token1, + [310606] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23759), 5, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym__for_header_token1, + aux_sym_do_statement_token1, + [310618] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23436), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(23438), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [310634] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9134), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(9136), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [310650] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21886), 1, + sym_identifier, + STATE(4174), 1, + sym_variable_declarator, + ACTIONS(23761), 3, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + [310668] = 4, + ACTIONS(23763), 1, + anon_sym_COMMA, + STATE(12061), 1, + aux_sym_next_variable_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7951), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [310684] = 4, + ACTIONS(23766), 1, + anon_sym_COMMA, + STATE(12107), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8168), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [310700] = 4, + ACTIONS(11450), 1, + anon_sym_COMMA, + STATE(12120), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8437), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [310716] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23768), 5, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym__for_header_token1, + aux_sym_do_statement_token1, + [310728] = 6, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(23770), 1, + aux_sym_as_type_clause_token1, + ACTIONS(23772), 1, + aux_sym_open_statement_token2, + STATE(14486), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [310748] = 4, + ACTIONS(23774), 1, + anon_sym_COMMA, + STATE(12082), 1, + aux_sym_redim_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8563), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [310764] = 4, + ACTIONS(20093), 1, + anon_sym_LPAREN, + STATE(12482), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8845), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [310780] = 5, + ACTIONS(23778), 1, + anon_sym_COMMA, + STATE(56), 1, + sym__statement_separator, + STATE(12193), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23776), 2, + sym_newline, + anon_sym_COLON, + [310798] = 4, + ACTIONS(23193), 1, + anon_sym_COMMA, + STATE(12126), 1, + aux_sym_input_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8239), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [310814] = 4, + ACTIONS(23766), 1, + anon_sym_COMMA, + STATE(12107), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8097), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [310830] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9126), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(9128), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [310846] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8022), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(8024), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [310862] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22098), 5, + sym_static_modifier, + sym__dim_keyword, + sym_with_events_modifier, + aux_sym_const_declaration_token1, + sym_identifier, + [310876] = 4, + ACTIONS(11450), 1, + anon_sym_COMMA, + STATE(12148), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4170), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [310892] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8535), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_else_fragment_token1, + sym_number_literal, + [310904] = 5, + ACTIONS(23780), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(23782), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23785), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12076), 2, + sym_type_preprocessor_elseif, + aux_sym_type_preprocessor_if_repeat1, + [310922] = 4, + ACTIONS(11450), 1, + anon_sym_COMMA, + STATE(12128), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4164), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [310938] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23787), 5, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym__for_header_token1, + aux_sym_do_statement_token1, + [310950] = 4, + ACTIONS(23766), 1, + anon_sym_COMMA, + STATE(12107), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8160), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [310966] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23789), 5, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym__for_header_token1, + aux_sym_do_statement_token1, + [310978] = 6, + ACTIONS(23791), 1, + aux_sym_get_accessor_token1, + ACTIONS(23793), 1, + sym_let_accessor, + ACTIONS(23795), 1, + aux_sym_set_accessor_token1, + STATE(13888), 1, + sym_get_accessor, + STATE(13889), 1, + sym_set_accessor, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [310998] = 4, + ACTIONS(23774), 1, + anon_sym_COMMA, + STATE(12091), 1, + aux_sym_redim_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8342), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311014] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23797), 5, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym__for_header_token1, + aux_sym_do_statement_token1, + [311026] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23268), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(23270), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [311042] = 4, + ACTIONS(23799), 1, + anon_sym_COMMA, + STATE(12085), 1, + aux_sym_close_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8445), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311058] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23450), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(23452), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [311074] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8589), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [311086] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23380), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(23382), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [311102] = 5, + ACTIONS(23778), 1, + anon_sym_COMMA, + STATE(131), 1, + sym__statement_separator, + STATE(12193), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23802), 2, + sym_newline, + anon_sym_COLON, + [311120] = 6, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(23804), 1, + aux_sym_as_type_clause_token1, + ACTIONS(23806), 1, + aux_sym_open_statement_token2, + STATE(14398), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [311140] = 4, + ACTIONS(23808), 1, + anon_sym_COMMA, + STATE(12091), 1, + aux_sym_redim_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8458), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311156] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23811), 5, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym__for_header_token1, + aux_sym_do_statement_token1, + [311168] = 6, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(23813), 1, + aux_sym_as_type_clause_token1, + ACTIONS(23815), 1, + aux_sym_open_statement_token2, + STATE(14310), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [311188] = 6, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(23817), 1, + aux_sym_as_type_clause_token1, + ACTIONS(23819), 1, + aux_sym_open_statement_token2, + STATE(13702), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [311208] = 5, + ACTIONS(23778), 1, + anon_sym_COMMA, + STATE(133), 1, + sym__statement_separator, + STATE(12068), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23821), 2, + sym_newline, + anon_sym_COLON, + [311226] = 4, + ACTIONS(23149), 1, + anon_sym_SEMI, + STATE(12153), 1, + aux_sym__unparenthesized_argument_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8551), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311242] = 4, + ACTIONS(23766), 1, + anon_sym_COMMA, + STATE(12122), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8310), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311258] = 5, + ACTIONS(23823), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(23825), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(23828), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(12098), 2, + sym_preprocessor_elseif, + aux_sym_preprocessor_if_repeat1, + [311276] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8620), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(8622), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [311292] = 6, + ACTIONS(22637), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(22639), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(22834), 1, + aux_sym__print_output_call_binary_expression_token4, + ACTIONS(22961), 1, + aux_sym__print_output_call_binary_expression_token5, + ACTIONS(23009), 1, + aux_sym__print_output_call_binary_expression_token6, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [311312] = 6, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(23830), 1, + aux_sym_as_type_clause_token1, + ACTIONS(23832), 1, + aux_sym_open_statement_token2, + STATE(14652), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [311332] = 6, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(23834), 1, + aux_sym_as_type_clause_token1, + ACTIONS(23836), 1, + aux_sym_open_statement_token2, + STATE(14015), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [311352] = 4, + ACTIONS(23838), 1, + anon_sym_COMMA, + STATE(12049), 1, + aux_sym_const_declaration_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8176), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311368] = 4, + ACTIONS(11450), 1, + anon_sym_COMMA, + STATE(12148), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8497), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311384] = 5, + ACTIONS(23778), 1, + anon_sym_COMMA, + STATE(130), 1, + sym__statement_separator, + STATE(12089), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23840), 2, + sym_newline, + anon_sym_COLON, + [311402] = 6, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(23842), 1, + aux_sym_as_type_clause_token1, + ACTIONS(23844), 1, + aux_sym_open_statement_token2, + STATE(14573), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [311422] = 4, + ACTIONS(23846), 1, + anon_sym_COMMA, + STATE(12107), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8289), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311438] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23015), 1, + aux_sym_byval_modifier_token1, + ACTIONS(23849), 1, + sym_identifier, + ACTIONS(23851), 1, + sym_byref_modifier, + ACTIONS(23853), 1, + sym_paramarray_modifier, + STATE(13599), 1, + sym_byval_modifier, + [311460] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8819), 1, + anon_sym_COLON, + ACTIONS(8821), 1, + aux_sym_else_fragment_token1, + ACTIONS(23855), 1, + sym_identifier, + ACTIONS(23857), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(23859), 1, + sym_number_literal, + [311482] = 4, + ACTIONS(23861), 1, + anon_sym_COMMA, + STATE(12132), 1, + aux_sym_next_variable_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7941), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311498] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8070), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(8072), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [311514] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21886), 1, + sym_identifier, + STATE(4149), 1, + sym_variable_declarator, + ACTIONS(23863), 3, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + [311532] = 4, + ACTIONS(23838), 1, + anon_sym_COMMA, + STATE(12049), 1, + aux_sym_const_declaration_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8616), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311548] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23384), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(23386), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [311564] = 4, + ACTIONS(23865), 1, + anon_sym_COMMA, + STATE(12118), 1, + aux_sym__argument_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8551), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311580] = 4, + ACTIONS(11450), 1, + anon_sym_COMMA, + STATE(12074), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8497), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311596] = 4, + ACTIONS(23766), 1, + anon_sym_COMMA, + STATE(12079), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8334), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311612] = 4, + ACTIONS(23867), 1, + anon_sym_COMMA, + STATE(12118), 1, + aux_sym__argument_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8535), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311628] = 4, + ACTIONS(23870), 1, + anon_sym_COMMA, + STATE(12140), 1, + aux_sym_erase_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8399), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311644] = 4, + ACTIONS(11450), 1, + anon_sym_COMMA, + STATE(12148), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8485), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311660] = 4, + ACTIONS(23774), 1, + anon_sym_COMMA, + STATE(12123), 1, + aux_sym_redim_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8370), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311676] = 4, + ACTIONS(23766), 1, + anon_sym_COMMA, + STATE(12107), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8156), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311692] = 4, + ACTIONS(23774), 1, + anon_sym_COMMA, + STATE(12091), 1, + aux_sym_redim_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8563), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311708] = 4, + ACTIONS(23838), 1, + anon_sym_COMMA, + STATE(12103), 1, + aux_sym_const_declaration_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8348), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311724] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8081), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(8083), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [311740] = 4, + ACTIONS(23872), 1, + anon_sym_COMMA, + STATE(12126), 1, + aux_sym_input_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8403), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311756] = 6, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(23875), 1, + aux_sym_as_type_clause_token1, + ACTIONS(23877), 1, + aux_sym_open_statement_token2, + STATE(14222), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [311776] = 4, + ACTIONS(11450), 1, + anon_sym_COMMA, + STATE(12148), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8437), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311792] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7968), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(7970), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [311808] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8164), 5, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [311820] = 6, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(23879), 1, + aux_sym_as_type_clause_token1, + ACTIONS(23881), 1, + aux_sym_open_statement_token2, + STATE(14357), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [311840] = 4, + ACTIONS(23861), 1, + anon_sym_COMMA, + STATE(12061), 1, + aux_sym_next_variable_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7947), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311856] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8525), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(8527), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [311872] = 4, + ACTIONS(23766), 1, + anon_sym_COMMA, + STATE(12150), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8567), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311888] = 4, + ACTIONS(23766), 1, + anon_sym_COMMA, + STATE(12070), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8571), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311904] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23883), 5, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym__for_header_token1, + aux_sym_do_statement_token1, + [311916] = 4, + ACTIONS(23885), 1, + anon_sym_COMMA, + STATE(12162), 1, + aux_sym_close_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8267), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311932] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9106), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(9108), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [311948] = 4, + ACTIONS(23766), 1, + anon_sym_COMMA, + STATE(12062), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8338), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311964] = 4, + ACTIONS(23870), 1, + anon_sym_COMMA, + STATE(12052), 1, + aux_sym_erase_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8322), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [311980] = 6, + ACTIONS(23791), 1, + aux_sym_get_accessor_token1, + ACTIONS(23795), 1, + aux_sym_set_accessor_token1, + ACTIONS(23887), 1, + sym_let_accessor, + STATE(13687), 1, + sym_set_accessor, + STATE(15136), 1, + sym_get_accessor, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [312000] = 4, + ACTIONS(23838), 1, + anon_sym_COMMA, + STATE(12113), 1, + aux_sym_const_declaration_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8575), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [312016] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21792), 1, + sym_identifier, + STATE(7635), 1, + sym_variable_declarator, + ACTIONS(23863), 3, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + [312034] = 4, + ACTIONS(23131), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23133), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6619), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [312050] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23581), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(23583), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [312066] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7984), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(7986), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [312082] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + ACTIONS(5558), 3, + anon_sym_EQ, + anon_sym_LPAREN, + aux_sym__for_each_header_token2, + [312096] = 4, + ACTIONS(23889), 1, + anon_sym_COMMA, + STATE(12148), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8198), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [312112] = 4, + ACTIONS(23766), 1, + anon_sym_COMMA, + STATE(12107), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8334), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [312128] = 4, + ACTIONS(23766), 1, + anon_sym_COMMA, + STATE(12107), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8593), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [312144] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6119), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_else_fragment_token1, + sym_number_literal, + [312156] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23482), 2, + aux_sym_frm_begin_block_token2, + sym_identifier, + ACTIONS(23484), 3, + sym_newline, + anon_sym_COLON, + aux_sym_type_preprocessor_if_token1, + [312172] = 4, + ACTIONS(23892), 1, + anon_sym_SEMI, + STATE(12153), 1, + aux_sym__unparenthesized_argument_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8111), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [312188] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21792), 1, + sym_identifier, + STATE(7672), 1, + sym_variable_declarator, + ACTIONS(23761), 3, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + [312206] = 4, + ACTIONS(23766), 1, + anon_sym_COMMA, + STATE(12149), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8585), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [312222] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22026), 1, + sym_identifier, + STATE(3678), 1, + sym_variable_declarator, + ACTIONS(23863), 3, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + [312240] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23895), 5, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + aux_sym__for_header_token1, + aux_sym_do_statement_token1, + [312252] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8198), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_else_fragment_token1, + sym_number_literal, + [312264] = 4, + ACTIONS(11450), 1, + anon_sym_COMMA, + STATE(12148), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4164), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [312280] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22026), 1, + sym_identifier, + STATE(3529), 1, + sym_variable_declarator, + ACTIONS(23761), 3, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + [312298] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8796), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [312314] = 4, + ACTIONS(23885), 1, + anon_sym_COMMA, + STATE(12085), 1, + aux_sym_close_statement_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8523), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [312330] = 4, + ACTIONS(23041), 1, + anon_sym_EQ, + STATE(13164), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23897), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [312345] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8058), 2, + anon_sym_DOT, + anon_sym_BANG, + [312360] = 4, + ACTIONS(23041), 1, + anon_sym_EQ, + STATE(13523), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23899), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [312375] = 4, + ACTIONS(23041), 1, + anon_sym_EQ, + STATE(13499), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23901), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [312390] = 4, + ACTIONS(23041), 1, + anon_sym_EQ, + STATE(13547), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23903), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [312405] = 4, + ACTIONS(23041), 1, + anon_sym_EQ, + STATE(13350), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23905), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [312420] = 4, + ACTIONS(23041), 1, + anon_sym_EQ, + STATE(13549), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23907), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [312435] = 3, + ACTIONS(23911), 1, + sym_static_modifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23909), 3, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + [312448] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(10996), 2, + anon_sym_DOT, + anon_sym_BANG, + [312463] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23913), 1, + sym_identifier, + ACTIONS(23915), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(23917), 1, + aux_sym_print_statement_token1, + STATE(2251), 1, + sym__member_property, + [312482] = 5, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(23919), 1, + aux_sym_do_statement_token1, + ACTIONS(23921), 1, + aux_sym_do_condition_token1, + ACTIONS(23923), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [312499] = 5, + ACTIONS(23925), 1, + anon_sym_LPAREN, + ACTIONS(23927), 1, + aux_sym__for_header_token2, + STATE(6426), 1, + sym_line_range_argument_list, + STATE(13193), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [312516] = 4, + ACTIONS(10054), 1, + anon_sym_LPAREN, + STATE(6206), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + [312531] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8778), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [312542] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8803), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [312553] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23929), 1, + sym_identifier, + ACTIONS(23931), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(23933), 1, + aux_sym_print_statement_token1, + STATE(2254), 1, + sym__member_property, + [312572] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8289), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [312583] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8674), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [312594] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8352), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [312605] = 3, + ACTIONS(23935), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8941), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [312618] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8715), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [312629] = 3, + ACTIONS(23937), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8741), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [312642] = 4, + ACTIONS(23041), 1, + anon_sym_EQ, + STATE(13308), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23939), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [312657] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23091), 2, + anon_sym_DOT, + anon_sym_BANG, + [312672] = 4, + ACTIONS(23941), 1, + anon_sym_EQ, + STATE(12187), 1, + aux_sym__attribute_member_expression_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23943), 2, + anon_sym_DOT, + anon_sym_BANG, + [312687] = 4, + ACTIONS(23041), 1, + anon_sym_EQ, + STATE(13577), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23946), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [312702] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23948), 4, + sym_newline, + aux_sym_frm_begin_block_token2, + aux_sym_select_statement_token2, + sym_number_literal, + [312713] = 3, + ACTIONS(23950), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8654), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [312726] = 3, + ACTIONS(23952), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8719), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [312739] = 4, + ACTIONS(23400), 1, + aux_sym_as_type_clause_token1, + STATE(13378), 1, + sym_as_type_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23954), 2, + sym_newline, + anon_sym_COLON, + [312754] = 4, + ACTIONS(23958), 1, + anon_sym_COMMA, + STATE(12193), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23956), 2, + sym_newline, + anon_sym_COLON, + [312769] = 4, + ACTIONS(23400), 1, + aux_sym_as_type_clause_token1, + STATE(13407), 1, + sym_as_type_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23961), 2, + sym_newline, + anon_sym_COLON, + [312784] = 4, + ACTIONS(23400), 1, + aux_sym_as_type_clause_token1, + STATE(13152), 1, + sym_as_type_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23963), 2, + sym_newline, + anon_sym_COLON, + [312799] = 3, + ACTIONS(23967), 1, + aux_sym_file_access_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23965), 3, + aux_sym_as_type_clause_token1, + aux_sym_file_lock_token1, + aux_sym_file_lock_token2, + [312812] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23969), 1, + sym_identifier, + ACTIONS(23971), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(23973), 1, + aux_sym_print_statement_token1, + STATE(783), 1, + sym__member_property, + [312831] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(22781), 2, + anon_sym_DOT, + anon_sym_BANG, + [312846] = 5, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(23975), 1, + aux_sym_as_type_clause_token1, + STATE(15158), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [312863] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23977), 1, + sym_identifier, + ACTIONS(23979), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(23981), 1, + aux_sym_print_statement_token1, + STATE(2239), 1, + sym__member_property, + [312882] = 4, + ACTIONS(23041), 1, + anon_sym_EQ, + STATE(13602), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23983), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [312897] = 5, + ACTIONS(23925), 1, + anon_sym_LPAREN, + ACTIONS(23985), 1, + aux_sym__for_header_token2, + STATE(3931), 1, + sym_line_range_argument_list, + STATE(13459), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [312914] = 5, + ACTIONS(23925), 1, + anon_sym_LPAREN, + ACTIONS(23987), 1, + aux_sym__for_header_token2, + STATE(7123), 1, + sym_line_range_argument_list, + STATE(13220), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [312931] = 4, + ACTIONS(10068), 1, + anon_sym_LPAREN, + STATE(6215), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + [312946] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23989), 1, + sym_identifier, + ACTIONS(23991), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(23993), 1, + aux_sym_print_statement_token1, + STATE(2243), 1, + sym__member_property, + [312965] = 4, + ACTIONS(23041), 1, + anon_sym_EQ, + STATE(13537), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23995), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [312980] = 5, + ACTIONS(22353), 1, + anon_sym_LPAREN, + ACTIONS(23997), 1, + aux_sym_as_type_clause_token1, + STATE(11842), 1, + sym_as_type_clause, + STATE(13136), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [312997] = 4, + ACTIONS(23400), 1, + aux_sym_as_type_clause_token1, + STATE(13429), 1, + sym_as_type_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23999), 2, + sym_newline, + anon_sym_COLON, + [313012] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8837), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [313023] = 4, + ACTIONS(7138), 1, + anon_sym_LPAREN, + STATE(3798), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + [313038] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24001), 1, + sym_identifier, + ACTIONS(24003), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24005), 1, + aux_sym_print_statement_token1, + STATE(785), 1, + sym__member_property, + [313057] = 4, + ACTIONS(24007), 1, + anon_sym_COLON, + STATE(12212), 1, + aux_sym_inline_statement_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8704), 2, + aux_sym_else_fragment_token1, + sym_number_literal, + [313072] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(11199), 2, + anon_sym_DOT, + anon_sym_BANG, + [313087] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24010), 4, + sym_newline, + aux_sym_frm_begin_block_token2, + aux_sym_select_statement_token2, + sym_number_literal, + [313098] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24012), 4, + sym_newline, + aux_sym_frm_begin_block_token2, + aux_sym_select_statement_token2, + sym_number_literal, + [313109] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24014), 1, + sym_identifier, + ACTIONS(24016), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24018), 1, + aux_sym_print_statement_token1, + STATE(914), 1, + sym__member_property, + [313128] = 4, + ACTIONS(11576), 1, + anon_sym_COMMA, + STATE(12248), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8497), 2, + anon_sym_COLON, + sym_number_literal, + [313143] = 5, + ACTIONS(23925), 1, + anon_sym_LPAREN, + ACTIONS(24020), 1, + aux_sym__for_header_token2, + STATE(4334), 1, + sym_line_range_argument_list, + STATE(13248), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [313160] = 4, + ACTIONS(7958), 1, + anon_sym_LPAREN, + STATE(4233), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + [313175] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24022), 1, + sym_identifier, + ACTIONS(24024), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24026), 1, + aux_sym_print_statement_token1, + STATE(916), 1, + sym__member_property, + [313194] = 4, + ACTIONS(11576), 1, + anon_sym_COMMA, + STATE(12298), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8497), 2, + anon_sym_COLON, + sym_number_literal, + [313209] = 4, + ACTIONS(24028), 1, + anon_sym_COMMA, + STATE(12118), 1, + aux_sym__argument_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8551), 2, + anon_sym_COLON, + sym_number_literal, + [313224] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20091), 2, + anon_sym_DOT, + anon_sym_BANG, + [313239] = 4, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(24030), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + [313254] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24032), 1, + sym_identifier, + ACTIONS(24034), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24036), 1, + aux_sym_print_statement_token1, + STATE(2185), 1, + sym__member_property, + [313273] = 5, + ACTIONS(8735), 1, + sym_number_literal, + ACTIONS(24038), 1, + anon_sym_COLON, + ACTIONS(24040), 1, + aux_sym_else_fragment_token1, + STATE(12257), 1, + aux_sym_inline_statement_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [313290] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8458), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [313301] = 5, + ACTIONS(23925), 1, + anon_sym_LPAREN, + ACTIONS(24042), 1, + aux_sym__for_header_token2, + STATE(5551), 1, + sym_line_range_argument_list, + STATE(13286), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [313318] = 4, + ACTIONS(23398), 1, + anon_sym_LPAREN, + STATE(13401), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24044), 2, + sym_newline, + anon_sym_COLON, + [313333] = 4, + ACTIONS(9943), 1, + anon_sym_LPAREN, + STATE(4936), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + [313348] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24046), 1, + sym_identifier, + ACTIONS(24048), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24050), 1, + aux_sym_print_statement_token1, + STATE(2189), 1, + sym__member_property, + [313367] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24052), 4, + sym_newline, + aux_sym_frm_begin_block_token2, + aux_sym_select_statement_token2, + sym_number_literal, + [313378] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8792), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [313389] = 5, + ACTIONS(22353), 1, + anon_sym_LPAREN, + ACTIONS(24054), 1, + aux_sym_as_type_clause_token1, + STATE(12058), 1, + sym_as_type_clause, + STATE(13258), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [313406] = 3, + ACTIONS(24056), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8637), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [313419] = 3, + ACTIONS(24058), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8768), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [313432] = 5, + ACTIONS(8735), 1, + sym_number_literal, + ACTIONS(24038), 1, + anon_sym_COLON, + ACTIONS(24060), 1, + aux_sym_else_fragment_token1, + STATE(12257), 1, + aux_sym_inline_statement_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [313449] = 5, + ACTIONS(8694), 1, + sym_number_literal, + ACTIONS(24038), 1, + anon_sym_COLON, + ACTIONS(24062), 1, + aux_sym_else_fragment_token1, + STATE(12257), 1, + aux_sym_inline_statement_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [313466] = 4, + ACTIONS(24038), 1, + anon_sym_COLON, + STATE(12257), 1, + aux_sym_inline_statement_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8937), 2, + aux_sym_else_fragment_token1, + sym_number_literal, + [313481] = 4, + ACTIONS(24038), 1, + anon_sym_COLON, + STATE(12257), 1, + aux_sym_inline_statement_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8815), 2, + aux_sym_else_fragment_token1, + sym_number_literal, + [313496] = 5, + ACTIONS(24064), 1, + anon_sym_COMMA, + ACTIONS(24066), 1, + anon_sym_RPAREN, + STATE(12554), 1, + aux_sym__argument_sequence_repeat1, + STATE(12623), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [313513] = 4, + ACTIONS(23135), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23137), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5871), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [313528] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24068), 1, + sym_identifier, + ACTIONS(24070), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24072), 1, + aux_sym_print_statement_token1, + STATE(2523), 1, + sym__member_property, + [313547] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8445), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [313558] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + [313573] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6125), 2, + anon_sym_DOT, + anon_sym_BANG, + [313588] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(11681), 2, + anon_sym_DOT, + anon_sym_BANG, + [313603] = 4, + ACTIONS(11576), 1, + anon_sym_COMMA, + STATE(12298), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4170), 2, + anon_sym_COLON, + sym_number_literal, + [313618] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24074), 1, + sym_identifier, + ACTIONS(24076), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24078), 1, + aux_sym_print_statement_token1, + STATE(10039), 1, + sym__member_property, + [313637] = 4, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(24080), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + [313652] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23197), 1, + sym_identifier, + STATE(10558), 1, + sym__statement_separator, + ACTIONS(23199), 2, + sym_newline, + anon_sym_COLON, + [313669] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8111), 4, + anon_sym_COLON, + aux_sym_else_fragment_token1, + anon_sym_SEMI, + sym_number_literal, + [313680] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24082), 4, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + sym_static_modifier, + [313691] = 3, + ACTIONS(24084), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8976), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [313704] = 5, + ACTIONS(23925), 1, + anon_sym_LPAREN, + ACTIONS(24086), 1, + aux_sym__for_header_token2, + STATE(7080), 1, + sym_line_range_argument_list, + STATE(13310), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [313721] = 5, + ACTIONS(8694), 1, + sym_number_literal, + ACTIONS(24038), 1, + anon_sym_COLON, + ACTIONS(24088), 1, + aux_sym_else_fragment_token1, + STATE(12257), 1, + aux_sym_inline_statement_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [313738] = 3, + STATE(12212), 1, + aux_sym_inline_statement_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8774), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [313751] = 4, + ACTIONS(10092), 1, + anon_sym_LPAREN, + STATE(6259), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + [313766] = 4, + ACTIONS(10140), 1, + anon_sym_LPAREN, + STATE(6792), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + [313781] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24090), 1, + sym_identifier, + ACTIONS(24092), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24094), 1, + aux_sym_print_statement_token1, + STATE(10035), 1, + sym__member_property, + [313800] = 4, + ACTIONS(23400), 1, + aux_sym_as_type_clause_token1, + STATE(13086), 1, + sym_as_type_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24096), 2, + sym_newline, + anon_sym_COLON, + [313815] = 5, + ACTIONS(24098), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(24100), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(24102), 1, + aux_sym_type_preprocessor_else_token1, + STATE(12266), 1, + aux_sym__conditional_sub_headers_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [313832] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24104), 1, + sym_identifier, + ACTIONS(24106), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24108), 1, + aux_sym_print_statement_token1, + STATE(2301), 1, + sym__member_property, + [313851] = 4, + ACTIONS(23400), 1, + aux_sym_as_type_clause_token1, + STATE(13093), 1, + sym_as_type_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24110), 2, + sym_newline, + anon_sym_COLON, + [313866] = 5, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22475), 1, + aux_sym_do_statement_token1, + ACTIONS(22477), 1, + aux_sym_do_condition_token1, + ACTIONS(22479), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [313883] = 5, + ACTIONS(24112), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(24114), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(24117), 1, + aux_sym_type_preprocessor_else_token1, + STATE(12266), 1, + aux_sym__conditional_sub_headers_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [313900] = 5, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(24119), 1, + aux_sym_as_type_clause_token1, + STATE(13722), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [313917] = 4, + ACTIONS(23400), 1, + aux_sym_as_type_clause_token1, + STATE(13108), 1, + sym_as_type_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24121), 2, + sym_newline, + anon_sym_COLON, + [313932] = 5, + ACTIONS(23925), 1, + anon_sym_LPAREN, + ACTIONS(24123), 1, + aux_sym__for_header_token2, + STATE(7110), 1, + sym_line_range_argument_list, + STATE(13103), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [313949] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24125), 4, + aux_sym_as_type_clause_token1, + aux_sym_open_statement_token2, + aux_sym_file_lock_token1, + aux_sym_file_lock_token2, + [313960] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23163), 1, + sym_identifier, + STATE(10536), 1, + sym__statement_separator, + ACTIONS(23165), 2, + sym_newline, + anon_sym_COLON, + [313977] = 4, + ACTIONS(23041), 1, + anon_sym_EQ, + STATE(13191), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24127), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [313992] = 4, + ACTIONS(24129), 1, + anon_sym_EQ, + STATE(12406), 1, + aux_sym__attribute_member_expression_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24131), 2, + anon_sym_DOT, + anon_sym_BANG, + [314007] = 5, + ACTIONS(23925), 1, + anon_sym_LPAREN, + ACTIONS(24133), 1, + aux_sym__for_header_token2, + STATE(7231), 1, + sym_line_range_argument_list, + STATE(13115), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314024] = 4, + ACTIONS(23041), 1, + anon_sym_EQ, + STATE(13639), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24135), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [314039] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8682), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [314050] = 5, + ACTIONS(24137), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(24139), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(24141), 1, + aux_sym_type_preprocessor_else_token1, + STATE(12284), 1, + aux_sym__conditional_function_headers_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314067] = 4, + ACTIONS(10086), 1, + anon_sym_LPAREN, + STATE(6168), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + [314082] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24143), 1, + sym_identifier, + ACTIONS(24145), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24147), 1, + aux_sym_print_statement_token1, + STATE(2327), 1, + sym__member_property, + [314101] = 4, + ACTIONS(23398), 1, + anon_sym_LPAREN, + STATE(13284), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24149), 2, + sym_newline, + anon_sym_COLON, + [314116] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(10527), 2, + anon_sym_DOT, + anon_sym_BANG, + [314131] = 4, + ACTIONS(5558), 1, + anon_sym_LPAREN, + ACTIONS(24151), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + [314146] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5434), 2, + anon_sym_DOT, + anon_sym_BANG, + [314161] = 5, + ACTIONS(24153), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(24155), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(24158), 1, + aux_sym_type_preprocessor_else_token1, + STATE(12284), 1, + aux_sym__conditional_function_headers_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314178] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24160), 1, + sym_identifier, + ACTIONS(24162), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24164), 1, + aux_sym_print_statement_token1, + STATE(2267), 1, + sym__member_property, + [314197] = 4, + ACTIONS(23041), 1, + anon_sym_EQ, + STATE(13626), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24166), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [314212] = 4, + ACTIONS(11576), 1, + anon_sym_COMMA, + STATE(12324), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4164), 2, + anon_sym_COLON, + sym_number_literal, + [314227] = 5, + ACTIONS(23925), 1, + anon_sym_LPAREN, + ACTIONS(24168), 1, + aux_sym__for_header_token2, + STATE(6409), 1, + sym_line_range_argument_list, + STATE(13345), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314244] = 4, + ACTIONS(11576), 1, + anon_sym_COMMA, + STATE(12298), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4164), 2, + anon_sym_COLON, + sym_number_literal, + [314259] = 4, + ACTIONS(10038), 1, + anon_sym_LPAREN, + STATE(6180), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + [314274] = 3, + ACTIONS(24170), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8662), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [314287] = 5, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(24172), 1, + aux_sym_as_type_clause_token1, + STATE(14029), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314304] = 3, + ACTIONS(24174), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8668), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [314317] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24176), 1, + sym_identifier, + ACTIONS(24178), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24180), 1, + aux_sym_print_statement_token1, + STATE(2274), 1, + sym__member_property, + [314336] = 5, + ACTIONS(24182), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(24184), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(24186), 1, + aux_sym_type_preprocessor_else_token1, + STATE(12316), 1, + aux_sym__conditional_property_headers_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314353] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5758), 2, + anon_sym_DOT, + anon_sym_BANG, + [314368] = 5, + ACTIONS(24184), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(24188), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(24190), 1, + aux_sym_type_preprocessor_else_token1, + STATE(12316), 1, + aux_sym__conditional_property_headers_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314385] = 4, + ACTIONS(24192), 1, + anon_sym_COMMA, + STATE(12298), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8198), 2, + anon_sym_COLON, + sym_number_literal, + [314400] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7024), 2, + anon_sym_DOT, + anon_sym_BANG, + [314415] = 5, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(24195), 1, + aux_sym_as_type_clause_token1, + STATE(14133), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314432] = 4, + ACTIONS(23135), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23137), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5701), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [314447] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5633), 2, + anon_sym_DOT, + anon_sym_BANG, + [314462] = 4, + ACTIONS(23135), 1, + aux_sym__print_output_call_binary_expression_token2, + ACTIONS(23137), 1, + aux_sym__print_output_call_binary_expression_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5754), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [314477] = 5, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(24197), 1, + aux_sym_as_type_clause_token1, + STATE(14236), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314494] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9800), 2, + anon_sym_DOT, + anon_sym_BANG, + [314509] = 5, + ACTIONS(24100), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(24199), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(24201), 1, + aux_sym_type_preprocessor_else_token1, + STATE(12262), 1, + aux_sym__conditional_sub_headers_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314526] = 5, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(24203), 1, + aux_sym_as_type_clause_token1, + STATE(14324), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314543] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6854), 2, + anon_sym_DOT, + anon_sym_BANG, + [314558] = 5, + ACTIONS(24100), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(24205), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(24207), 1, + aux_sym_type_preprocessor_else_token1, + STATE(12266), 1, + aux_sym__conditional_sub_headers_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314575] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8384), 2, + anon_sym_DOT, + anon_sym_BANG, + [314590] = 5, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(24209), 1, + aux_sym_as_type_clause_token1, + STATE(14412), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314607] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(10265), 2, + anon_sym_DOT, + anon_sym_BANG, + [314622] = 3, + ACTIONS(24211), 1, + aux_sym_open_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8982), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [314635] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24213), 1, + sym_identifier, + ACTIONS(24215), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24217), 1, + aux_sym_print_statement_token1, + STATE(2322), 1, + sym__member_property, + [314654] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24219), 1, + sym_identifier, + ACTIONS(24221), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24223), 1, + aux_sym_print_statement_token1, + STATE(2326), 1, + sym__member_property, + [314673] = 5, + ACTIONS(24225), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(24227), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(24230), 1, + aux_sym_type_preprocessor_else_token1, + STATE(12316), 1, + aux_sym__conditional_property_headers_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314690] = 5, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(24232), 1, + aux_sym_as_type_clause_token1, + STATE(14500), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314707] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20162), 2, + anon_sym_DOT, + anon_sym_BANG, + [314722] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7951), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [314733] = 5, + ACTIONS(24139), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(24234), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(24236), 1, + aux_sym_type_preprocessor_else_token1, + STATE(12277), 1, + aux_sym__conditional_function_headers_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314750] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7028), 2, + anon_sym_DOT, + anon_sym_BANG, + [314765] = 5, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(24238), 1, + aux_sym_as_type_clause_token1, + STATE(14587), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314782] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5832), 2, + anon_sym_DOT, + anon_sym_BANG, + [314797] = 4, + ACTIONS(11576), 1, + anon_sym_COMMA, + STATE(12298), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8437), 2, + anon_sym_COLON, + sym_number_literal, + [314812] = 4, + ACTIONS(11576), 1, + anon_sym_COMMA, + STATE(12368), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8437), 2, + anon_sym_COLON, + sym_number_literal, + [314827] = 3, + ACTIONS(24240), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8782), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [314840] = 5, + ACTIONS(24139), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(24242), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(24244), 1, + aux_sym_type_preprocessor_else_token1, + STATE(12284), 1, + aux_sym__conditional_function_headers_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314857] = 5, + ACTIONS(23745), 1, + aux_sym_file_lock_token1, + ACTIONS(23747), 1, + aux_sym_file_lock_token2, + ACTIONS(24246), 1, + aux_sym_as_type_clause_token1, + STATE(14662), 1, + sym_file_lock, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [314874] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6496), 2, + anon_sym_DOT, + anon_sym_BANG, + [314889] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4034), 2, + anon_sym_EQ, + aux_sym__for_each_header_token2, + [314904] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(10506), 2, + anon_sym_DOT, + anon_sym_BANG, + [314919] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4931), 2, + anon_sym_DOT, + anon_sym_BANG, + [314934] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5656), 2, + anon_sym_DOT, + anon_sym_BANG, + [314949] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5426), 2, + anon_sym_DOT, + anon_sym_BANG, + [314964] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7442), 2, + anon_sym_DOT, + anon_sym_BANG, + [314979] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7978), 2, + anon_sym_DOT, + anon_sym_BANG, + [314994] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7535), 2, + anon_sym_DOT, + anon_sym_BANG, + [315009] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4643), 2, + anon_sym_DOT, + anon_sym_BANG, + [315024] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6131), 2, + anon_sym_DOT, + anon_sym_BANG, + [315039] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7627), 2, + anon_sym_DOT, + anon_sym_BANG, + [315054] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6642), 2, + anon_sym_DOT, + anon_sym_BANG, + [315069] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6176), 2, + anon_sym_DOT, + anon_sym_BANG, + [315084] = 3, + ACTIONS(24248), 1, + aux_sym_open_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8626), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [315097] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6276), 2, + anon_sym_DOT, + anon_sym_BANG, + [315112] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5847), 2, + anon_sym_DOT, + anon_sym_BANG, + [315127] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6917), 2, + anon_sym_DOT, + anon_sym_BANG, + [315142] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7020), 2, + anon_sym_DOT, + anon_sym_BANG, + [315157] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(10560), 2, + anon_sym_DOT, + anon_sym_BANG, + [315172] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7603), 2, + anon_sym_DOT, + anon_sym_BANG, + [315187] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6226), 2, + anon_sym_DOT, + anon_sym_BANG, + [315202] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7451), 2, + anon_sym_DOT, + anon_sym_BANG, + [315217] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4980), 2, + anon_sym_DOT, + anon_sym_BANG, + [315232] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4658), 2, + anon_sym_DOT, + anon_sym_BANG, + [315247] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6987), 2, + anon_sym_DOT, + anon_sym_BANG, + [315262] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(10617), 2, + anon_sym_DOT, + anon_sym_BANG, + [315277] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5528), 2, + anon_sym_DOT, + anon_sym_BANG, + [315292] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5645), 2, + anon_sym_DOT, + anon_sym_BANG, + [315307] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5978), 2, + anon_sym_DOT, + anon_sym_BANG, + [315322] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7470), 2, + anon_sym_DOT, + anon_sym_BANG, + [315337] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6093), 2, + anon_sym_DOT, + anon_sym_BANG, + [315352] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20375), 2, + anon_sym_DOT, + anon_sym_BANG, + [315367] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6402), 2, + anon_sym_DOT, + anon_sym_BANG, + [315382] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5623), 2, + anon_sym_DOT, + anon_sym_BANG, + [315397] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7001), 2, + anon_sym_DOT, + anon_sym_BANG, + [315412] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6194), 2, + anon_sym_DOT, + anon_sym_BANG, + [315427] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20117), 2, + anon_sym_DOT, + anon_sym_BANG, + [315442] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5013), 2, + anon_sym_DOT, + anon_sym_BANG, + [315457] = 4, + ACTIONS(11576), 1, + anon_sym_COMMA, + STATE(12298), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8485), 2, + anon_sym_COLON, + sym_number_literal, + [315472] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5502), 2, + anon_sym_DOT, + anon_sym_BANG, + [315487] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7667), 2, + anon_sym_DOT, + anon_sym_BANG, + [315502] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7661), 2, + anon_sym_DOT, + anon_sym_BANG, + [315517] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6011), 2, + anon_sym_DOT, + anon_sym_BANG, + [315532] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6020), 2, + anon_sym_DOT, + anon_sym_BANG, + [315547] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7548), 2, + anon_sym_DOT, + anon_sym_BANG, + [315562] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7295), 2, + anon_sym_DOT, + anon_sym_BANG, + [315577] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6028), 2, + anon_sym_DOT, + anon_sym_BANG, + [315592] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6970), 2, + anon_sym_DOT, + anon_sym_BANG, + [315607] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6036), 2, + anon_sym_DOT, + anon_sym_BANG, + [315622] = 3, + ACTIONS(24250), 1, + aux_sym_open_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8688), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [315635] = 5, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22886), 1, + aux_sym_do_statement_token1, + ACTIONS(22888), 1, + aux_sym_do_condition_token1, + ACTIONS(22890), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [315652] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(7253), 2, + anon_sym_DOT, + anon_sym_BANG, + [315667] = 3, + ACTIONS(24252), 1, + aux_sym_open_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8725), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [315680] = 5, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22178), 1, + aux_sym_do_statement_token1, + ACTIONS(22182), 1, + aux_sym_do_condition_token1, + ACTIONS(22184), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [315697] = 4, + ACTIONS(23041), 1, + anon_sym_EQ, + STATE(13432), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24254), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [315712] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(10427), 2, + anon_sym_DOT, + anon_sym_BANG, + [315727] = 5, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22214), 1, + aux_sym_do_statement_token1, + ACTIONS(22216), 1, + aux_sym_do_condition_token1, + ACTIONS(22218), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [315744] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24256), 1, + sym_identifier, + ACTIONS(24258), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24260), 1, + aux_sym_print_statement_token1, + STATE(10042), 1, + sym__member_property, + [315763] = 5, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22160), 1, + aux_sym_do_statement_token1, + ACTIONS(22162), 1, + aux_sym_do_condition_token1, + ACTIONS(22166), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [315780] = 4, + ACTIONS(23041), 1, + anon_sym_EQ, + STATE(13487), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24262), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [315795] = 5, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22569), 1, + aux_sym_do_statement_token1, + ACTIONS(22571), 1, + aux_sym_do_condition_token1, + ACTIONS(22573), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [315812] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24264), 1, + sym_identifier, + STATE(12922), 1, + sym__attribute_identifier, + ACTIONS(23320), 2, + aux_sym_frm_property_statement_token1, + aux_sym__attribute_identifier_token1, + [315829] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(4348), 2, + anon_sym_DOT, + anon_sym_BANG, + [315844] = 5, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22868), 1, + aux_sym_do_statement_token1, + ACTIONS(22870), 1, + aux_sym_do_condition_token1, + ACTIONS(22872), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [315861] = 5, + ACTIONS(23925), 1, + anon_sym_LPAREN, + ACTIONS(24266), 1, + aux_sym__for_header_token2, + STATE(12423), 1, + sym_line_range_argument_list, + STATE(13154), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [315878] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24268), 1, + sym_identifier, + ACTIONS(24270), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24272), 1, + aux_sym_print_statement_token1, + STATE(2541), 1, + sym__member_property, + [315897] = 5, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22551), 1, + aux_sym_do_statement_token1, + ACTIONS(22553), 1, + aux_sym_do_condition_token1, + ACTIONS(22555), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [315914] = 4, + ACTIONS(22353), 1, + anon_sym_LPAREN, + STATE(12209), 1, + sym_array_bounds, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20087), 2, + anon_sym_DOT, + anon_sym_BANG, + [315929] = 5, + ACTIONS(22158), 1, + aux_sym__for_header_token1, + ACTIONS(22920), 1, + aux_sym_do_statement_token1, + ACTIONS(22922), 1, + aux_sym_do_condition_token1, + ACTIONS(22924), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [315946] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24274), 1, + sym_identifier, + ACTIONS(24276), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24278), 1, + aux_sym_print_statement_token1, + STATE(10044), 1, + sym__member_property, + [315965] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8833), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [315976] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8819), 1, + anon_sym_COLON, + ACTIONS(23855), 1, + sym_identifier, + ACTIONS(23857), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(23859), 1, + sym_number_literal, + [315995] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(20408), 2, + anon_sym_DOT, + anon_sym_BANG, + [316010] = 5, + ACTIONS(24184), 1, + aux_sym_type_preprocessor_elseif_token1, + ACTIONS(24280), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(24282), 1, + aux_sym_type_preprocessor_else_token1, + STATE(12295), 1, + aux_sym__conditional_property_headers_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316027] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(11255), 2, + anon_sym_DOT, + anon_sym_BANG, + [316042] = 5, + ACTIONS(24284), 1, + aux_sym_option_statement_token2, + ACTIONS(24286), 1, + aux_sym_option_statement_token3, + ACTIONS(24288), 1, + aux_sym_option_statement_token5, + ACTIONS(24290), 1, + aux_sym_option_statement_token9, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316059] = 4, + ACTIONS(24292), 1, + anon_sym_EQ, + STATE(12187), 1, + aux_sym__attribute_member_expression_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24131), 2, + anon_sym_DOT, + anon_sym_BANG, + [316074] = 4, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(5689), 2, + anon_sym_DOT, + anon_sym_BANG, + [316089] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8867), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [316100] = 4, + ACTIONS(23041), 1, + anon_sym_EQ, + STATE(13489), 1, + sym_initializer, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24294), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [316115] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8964), 4, + anon_sym_COLON, + anon_sym_COMMA, + aux_sym_else_fragment_token1, + sym_number_literal, + [316126] = 4, + ACTIONS(23400), 1, + aux_sym_as_type_clause_token1, + STATE(13379), 1, + sym_as_type_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24296), 2, + sym_newline, + anon_sym_COLON, + [316141] = 3, + STATE(26), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24298), 2, + sym_newline, + anon_sym_COLON, + [316153] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9178), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [316163] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9182), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [316173] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24258), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24274), 1, + sym_identifier, + STATE(10044), 1, + sym__member_property, + [316189] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24300), 1, + sym_identifier, + ACTIONS(24302), 1, + aux_sym_dotted_type_expression_token1, + STATE(6673), 1, + sym__member_property, + [316205] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24304), 1, + anon_sym_COLON, + STATE(13875), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316219] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9186), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [316229] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24306), 1, + sym_identifier, + ACTIONS(24308), 1, + aux_sym_dotted_type_expression_token1, + STATE(2028), 1, + sym__member_property, + [316245] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24310), 1, + sym_identifier, + ACTIONS(24312), 1, + aux_sym_dotted_type_expression_token1, + STATE(3015), 1, + sym__member_property, + [316261] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9190), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [316271] = 4, + ACTIONS(24314), 1, + anon_sym_POUND, + STATE(3721), 1, + sym__required_file_number, + STATE(3754), 1, + sym_file_number_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316285] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9194), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [316295] = 4, + ACTIONS(24316), 1, + anon_sym_POUND, + STATE(6153), 1, + sym__required_file_number, + STATE(6154), 1, + sym_file_number_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316309] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24318), 1, + sym_identifier, + ACTIONS(24320), 1, + aux_sym_dotted_type_expression_token1, + STATE(1204), 1, + sym__member_property, + [316325] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24322), 1, + sym_identifier, + ACTIONS(24324), 1, + aux_sym_dotted_type_expression_token1, + STATE(495), 1, + sym__member_property, + [316341] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24328), 1, + anon_sym_RPAREN, + STATE(12432), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316355] = 4, + ACTIONS(8704), 1, + sym_number_literal, + ACTIONS(24330), 1, + anon_sym_COLON, + STATE(12428), 1, + aux_sym_inline_statement_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316369] = 4, + ACTIONS(24333), 1, + anon_sym_COMMA, + ACTIONS(24335), 1, + anon_sym_RPAREN, + STATE(12435), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316383] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24337), 1, + anon_sym_RPAREN, + STATE(12436), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316397] = 4, + ACTIONS(24339), 1, + aux_sym_file_access_token1, + ACTIONS(24341), 1, + aux_sym_file_access_token2, + STATE(12199), 1, + sym_file_access, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316411] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24343), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316425] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24345), 1, + sym_identifier, + ACTIONS(24347), 1, + aux_sym_dotted_type_expression_token1, + STATE(2429), 1, + sym__member_property, + [316441] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24349), 1, + sym_identifier, + ACTIONS(24351), 1, + aux_sym_dotted_type_expression_token1, + STATE(1530), 1, + sym__member_property, + [316457] = 4, + ACTIONS(24333), 1, + anon_sym_COMMA, + ACTIONS(24353), 1, + anon_sym_RPAREN, + STATE(12445), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316471] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24355), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316485] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24357), 1, + sym_identifier, + ACTIONS(24359), 1, + aux_sym_dotted_type_expression_token1, + STATE(3551), 1, + sym__member_property, + [316501] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24361), 1, + sym_identifier, + ACTIONS(24363), 1, + aux_sym_dotted_type_expression_token1, + STATE(3139), 1, + sym__member_property, + [316517] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8711), 3, + sym_newline, + anon_sym_COLON, + aux_sym_as_type_clause_token1, + [316527] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24365), 1, + aux_sym_do_statement_token2, + STATE(14460), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316541] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24367), 1, + sym_identifier, + ACTIONS(24369), 1, + aux_sym_dotted_type_expression_token1, + STATE(1355), 1, + sym__member_property, + [316557] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24371), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316571] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24162), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24176), 1, + sym_identifier, + STATE(2274), 1, + sym__member_property, + [316587] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24373), 1, + sym_identifier, + ACTIONS(24375), 1, + aux_sym_dotted_type_expression_token1, + STATE(2143), 1, + sym__member_property, + [316603] = 4, + ACTIONS(24377), 1, + anon_sym_COMMA, + ACTIONS(24380), 1, + anon_sym_RPAREN, + STATE(12445), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316617] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24382), 1, + anon_sym_COLON, + STATE(15064), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316631] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24384), 1, + sym_identifier, + ACTIONS(24386), 1, + aux_sym_dotted_type_expression_token1, + STATE(7679), 1, + sym__member_property, + [316647] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24369), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24388), 1, + sym_identifier, + STATE(1357), 1, + sym__member_property, + [316663] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24369), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24390), 1, + sym_identifier, + STATE(1358), 1, + sym__member_property, + [316679] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24369), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24392), 1, + sym_identifier, + STATE(1359), 1, + sym__member_property, + [316695] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24369), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24394), 1, + sym_identifier, + STATE(1360), 1, + sym__member_property, + [316711] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24396), 1, + aux_sym__multiline_for_tail_token1, + STATE(14559), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316725] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24398), 1, + sym_identifier, + ACTIONS(24400), 1, + aux_sym_dotted_type_expression_token1, + STATE(3316), 1, + sym__member_property, + [316741] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24402), 1, + sym_identifier, + ACTIONS(24404), 1, + aux_sym_dotted_type_expression_token1, + STATE(1563), 1, + sym__member_property, + [316757] = 4, + ACTIONS(24333), 1, + anon_sym_COMMA, + ACTIONS(24406), 1, + anon_sym_RPAREN, + STATE(12474), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316771] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24408), 1, + anon_sym_RPAREN, + STATE(12442), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316785] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24410), 1, + anon_sym_RPAREN, + STATE(12478), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316799] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24412), 1, + aux_sym_do_statement_token2, + STATE(14619), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316813] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24414), 1, + sym_identifier, + ACTIONS(24416), 1, + aux_sym_dotted_type_expression_token1, + STATE(5278), 1, + sym__member_property, + [316829] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24308), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24418), 1, + sym_identifier, + STATE(2024), 1, + sym__member_property, + [316845] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24420), 1, + aux_sym_while_statement_token1, + STATE(14626), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316859] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24422), 1, + aux_sym_do_statement_token2, + STATE(14698), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316873] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24424), 3, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + [316883] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24426), 1, + sym_identifier, + ACTIONS(24428), 1, + aux_sym_dotted_type_expression_token1, + STATE(1655), 1, + sym__member_property, + [316899] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24320), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24430), 1, + sym_identifier, + STATE(1174), 1, + sym__member_property, + [316915] = 4, + ACTIONS(24432), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(24434), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(24436), 1, + sym_ptrsafe_modifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316929] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24438), 1, + aux_sym_do_statement_token2, + STATE(14778), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316943] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24440), 1, + aux_sym_while_statement_token1, + STATE(14783), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316957] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24442), 1, + anon_sym_COLON, + STATE(13763), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [316971] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24444), 1, + sym_identifier, + ACTIONS(24446), 1, + aux_sym_dotted_type_expression_token1, + STATE(3383), 1, + sym__member_property, + [316987] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24347), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24448), 1, + sym_identifier, + STATE(2371), 1, + sym__member_property, + [317003] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24450), 1, + sym_identifier, + ACTIONS(24452), 1, + aux_sym_dotted_type_expression_token1, + STATE(676), 1, + sym__member_property, + [317019] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24359), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24454), 1, + sym_identifier, + STATE(3539), 1, + sym__member_property, + [317035] = 4, + ACTIONS(24333), 1, + anon_sym_COMMA, + ACTIONS(24456), 1, + anon_sym_RPAREN, + STATE(12445), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317049] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24458), 1, + sym_identifier, + ACTIONS(24460), 1, + aux_sym_dotted_type_expression_token1, + STATE(536), 1, + sym__member_property, + [317065] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24160), 1, + sym_identifier, + ACTIONS(24162), 1, + aux_sym_dotted_type_expression_token1, + STATE(2267), 1, + sym__member_property, + [317081] = 4, + ACTIONS(24462), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(24464), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(24466), 1, + sym_ptrsafe_modifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317095] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24468), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317109] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24470), 1, + aux_sym_do_statement_token2, + STATE(13737), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317123] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24215), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24219), 1, + sym_identifier, + STATE(2326), 1, + sym__member_property, + [317139] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24400), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24472), 1, + sym_identifier, + STATE(3309), 1, + sym__member_property, + [317155] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9270), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [317165] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24474), 1, + sym_identifier, + ACTIONS(24476), 1, + aux_sym_dotted_type_expression_token1, + STATE(448), 1, + sym__member_property, + [317181] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9274), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [317191] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23915), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(23929), 1, + sym_identifier, + STATE(2254), 1, + sym__member_property, + [317207] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24478), 1, + sym_identifier, + ACTIONS(24480), 1, + aux_sym_dotted_type_expression_token1, + STATE(10061), 1, + sym__member_property, + [317223] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24482), 1, + sym_identifier, + ACTIONS(24484), 1, + aux_sym_dotted_type_expression_token1, + STATE(4280), 1, + sym__member_property, + [317239] = 3, + ACTIONS(8953), 1, + aux_sym_else_fragment_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8955), 2, + anon_sym_COLON, + sym_number_literal, + [317251] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24486), 1, + sym_identifier, + ACTIONS(24488), 1, + aux_sym_dotted_type_expression_token1, + STATE(944), 1, + sym__member_property, + [317267] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24416), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24490), 1, + sym_identifier, + STATE(5272), 1, + sym__member_property, + [317283] = 3, + ACTIONS(8647), 1, + aux_sym_else_fragment_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8649), 2, + anon_sym_COLON, + sym_number_literal, + [317295] = 3, + ACTIONS(8751), 1, + aux_sym_else_fragment_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8753), 2, + anon_sym_COLON, + sym_number_literal, + [317307] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24476), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24492), 1, + sym_identifier, + STATE(450), 1, + sym__member_property, + [317323] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24476), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24494), 1, + sym_identifier, + STATE(455), 1, + sym__member_property, + [317339] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24476), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24496), 1, + sym_identifier, + STATE(457), 1, + sym__member_property, + [317355] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24476), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24498), 1, + sym_identifier, + STATE(458), 1, + sym__member_property, + [317371] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24014), 1, + sym_identifier, + ACTIONS(24016), 1, + aux_sym_dotted_type_expression_token1, + STATE(914), 1, + sym__member_property, + [317387] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24500), 3, + aux_sym_declare_sub_statement_token2, + aux_sym_declare_function_statement_token1, + aux_sym__property_get_header_token1, + [317397] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24502), 1, + aux_sym__multiline_for_tail_token1, + STATE(13815), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317411] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24504), 1, + sym_identifier, + ACTIONS(24506), 1, + aux_sym_dotted_type_expression_token1, + STATE(6019), 1, + sym__member_property, + [317427] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24428), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24508), 1, + sym_identifier, + STATE(1646), 1, + sym__member_property, + [317443] = 4, + ACTIONS(24510), 1, + anon_sym_POUND, + STATE(4315), 1, + sym__required_file_number, + STATE(4320), 1, + sym_file_number_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317457] = 4, + ACTIONS(24512), 1, + anon_sym_COMMA, + ACTIONS(24515), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317471] = 4, + ACTIONS(24333), 1, + anon_sym_COMMA, + ACTIONS(24517), 1, + anon_sym_RPAREN, + STATE(12509), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317485] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24519), 1, + anon_sym_RPAREN, + STATE(12510), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317499] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24521), 1, + sym_identifier, + ACTIONS(24523), 1, + aux_sym_dotted_type_expression_token1, + STATE(1152), 1, + sym__member_property, + [317515] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24446), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24525), 1, + sym_identifier, + STATE(3375), 1, + sym__member_property, + [317531] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24527), 1, + aux_sym_do_statement_token2, + STATE(13910), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317545] = 4, + ACTIONS(24333), 1, + anon_sym_COMMA, + ACTIONS(24529), 1, + anon_sym_RPAREN, + STATE(12445), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317559] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24531), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317573] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24533), 1, + sym_identifier, + ACTIONS(24535), 1, + aux_sym_dotted_type_expression_token1, + STATE(1748), 1, + sym__member_property, + [317589] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24452), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24537), 1, + sym_identifier, + STATE(675), 1, + sym__member_property, + [317605] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24539), 1, + aux_sym_do_statement_token2, + STATE(13918), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317619] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24541), 1, + aux_sym_while_statement_token1, + STATE(13912), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317633] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24543), 1, + sym_identifier, + ACTIONS(24545), 1, + aux_sym_dotted_type_expression_token1, + STATE(647), 1, + sym__member_property, + [317649] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24547), 1, + sym_identifier, + ACTIONS(24549), 1, + aux_sym_dotted_type_expression_token1, + STATE(3028), 1, + sym__member_property, + [317665] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24460), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24551), 1, + sym_identifier, + STATE(535), 1, + sym__member_property, + [317681] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24553), 1, + aux_sym_do_statement_token2, + STATE(14035), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317695] = 3, + STATE(133), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23821), 2, + sym_newline, + anon_sym_COLON, + [317707] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24545), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24555), 1, + sym_identifier, + STATE(648), 1, + sym__member_property, + [317723] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24545), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24557), 1, + sym_identifier, + STATE(649), 1, + sym__member_property, + [317739] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24545), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24559), 1, + sym_identifier, + STATE(650), 1, + sym__member_property, + [317755] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24545), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24561), 1, + sym_identifier, + STATE(651), 1, + sym__member_property, + [317771] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24563), 1, + aux_sym__multiline_for_tail_token1, + STATE(13952), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317785] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24565), 1, + sym_identifier, + ACTIONS(24567), 1, + aux_sym_dotted_type_expression_token1, + STATE(5491), 1, + sym__member_property, + [317801] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24213), 1, + sym_identifier, + ACTIONS(24215), 1, + aux_sym_dotted_type_expression_token1, + STATE(2322), 1, + sym__member_property, + [317817] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24569), 1, + aux_sym_do_statement_token2, + STATE(13997), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317831] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24571), 1, + sym_identifier, + ACTIONS(24573), 1, + aux_sym_dotted_type_expression_token1, + STATE(1789), 1, + sym__member_property, + [317847] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24488), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24575), 1, + sym_identifier, + STATE(941), 1, + sym__member_property, + [317863] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24577), 1, + aux_sym_while_statement_token1, + STATE(14012), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317877] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24579), 1, + aux_sym_do_statement_token2, + STATE(14036), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317891] = 3, + ACTIONS(24583), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24581), 2, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [317903] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24585), 1, + sym_identifier, + ACTIONS(24587), 1, + aux_sym_dotted_type_expression_token1, + STATE(10342), 1, + sym__member_property, + [317919] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24506), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24589), 1, + sym_identifier, + STATE(5996), 1, + sym__member_property, + [317935] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24591), 1, + aux_sym_do_statement_token2, + STATE(14087), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317949] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24593), 1, + aux_sym_do_statement_token2, + STATE(14208), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317963] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24595), 1, + aux_sym_while_statement_token1, + STATE(14090), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [317977] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24597), 1, + sym_identifier, + ACTIONS(24599), 1, + aux_sym_dotted_type_expression_token1, + STATE(2114), 1, + sym__member_property, + [317993] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24523), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24601), 1, + sym_identifier, + STATE(1144), 1, + sym__member_property, + [318009] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24603), 1, + sym_identifier, + ACTIONS(24605), 1, + aux_sym_dotted_type_expression_token1, + STATE(4185), 1, + sym__member_property, + [318025] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24535), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24607), 1, + sym_identifier, + STATE(1741), 1, + sym__member_property, + [318041] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24609), 1, + aux_sym_while_statement_token1, + STATE(14218), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [318055] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24611), 1, + sym_identifier, + ACTIONS(24613), 1, + aux_sym_dotted_type_expression_token1, + STATE(5900), 1, + sym__member_property, + [318071] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24549), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24615), 1, + sym_identifier, + STATE(3018), 1, + sym__member_property, + [318087] = 3, + STATE(11531), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24617), 2, + sym_newline, + anon_sym_COLON, + [318099] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24619), 1, + sym_identifier, + ACTIONS(24621), 1, + aux_sym_dotted_type_expression_token1, + STATE(1210), 1, + sym__member_property, + [318115] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24567), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24623), 1, + sym_identifier, + STATE(5482), 1, + sym__member_property, + [318131] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24625), 1, + sym_identifier, + ACTIONS(24627), 1, + aux_sym_dotted_type_expression_token1, + STATE(3744), 1, + sym__member_property, + [318147] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24629), 1, + sym_identifier, + ACTIONS(24631), 1, + aux_sym_dotted_type_expression_token1, + STATE(1587), 1, + sym__member_property, + [318163] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24633), 1, + sym_identifier, + ACTIONS(24635), 1, + aux_sym_dotted_type_expression_token1, + STATE(10048), 1, + sym__member_property, + [318179] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24637), 1, + aux_sym_frm_begin_block_token2, + STATE(14844), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [318193] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24639), 1, + sym_identifier, + ACTIONS(24641), 1, + aux_sym_dotted_type_expression_token1, + STATE(2383), 1, + sym__member_property, + [318209] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24573), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24643), 1, + sym_identifier, + STATE(1780), 1, + sym__member_property, + [318225] = 4, + ACTIONS(24645), 1, + anon_sym_COMMA, + ACTIONS(24647), 1, + anon_sym_RPAREN, + STATE(12842), 1, + aux_sym__argument_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [318239] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24545), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24649), 1, + sym_identifier, + STATE(652), 1, + sym__member_property, + [318255] = 3, + ACTIONS(24040), 1, + aux_sym_else_fragment_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8735), 2, + anon_sym_COLON, + sym_number_literal, + [318267] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24032), 1, + sym_identifier, + ACTIONS(24034), 1, + aux_sym_dotted_type_expression_token1, + STATE(2185), 1, + sym__member_property, + [318283] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24651), 1, + sym_identifier, + ACTIONS(24653), 1, + aux_sym_dotted_type_expression_token1, + STATE(4812), 1, + sym__member_property, + [318299] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24587), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24655), 1, + sym_identifier, + STATE(10334), 1, + sym__member_property, + [318315] = 4, + ACTIONS(24657), 1, + anon_sym_POUND, + STATE(4917), 1, + sym__required_file_number, + STATE(4919), 1, + sym_file_number_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [318329] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(6631), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [318339] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8503), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [318349] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8511), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [318359] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24659), 1, + anon_sym_RPAREN, + STATE(12570), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [318373] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24661), 1, + sym_identifier, + ACTIONS(24663), 1, + aux_sym_dotted_type_expression_token1, + STATE(1882), 1, + sym__member_property, + [318389] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24599), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24665), 1, + sym_identifier, + STATE(2109), 1, + sym__member_property, + [318405] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24631), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24667), 1, + sym_identifier, + STATE(1950), 1, + sym__member_property, + [318421] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24106), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24143), 1, + sym_identifier, + STATE(2327), 1, + sym__member_property, + [318437] = 3, + STATE(10545), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24669), 2, + sym_newline, + anon_sym_COLON, + [318449] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24671), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [318463] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24673), 1, + sym_identifier, + ACTIONS(24675), 1, + aux_sym_dotted_type_expression_token1, + STATE(10135), 1, + sym__member_property, + [318479] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24605), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24677), 1, + sym_identifier, + STATE(4184), 1, + sym__member_property, + [318495] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9334), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [318505] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9338), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [318515] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24679), 1, + aux_sym_do_statement_token2, + STATE(14702), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [318529] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9342), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [318539] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9346), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [318549] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24681), 1, + sym_identifier, + ACTIONS(24683), 1, + aux_sym_dotted_type_expression_token1, + STATE(7311), 1, + sym__member_property, + [318565] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9350), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [318575] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24685), 1, + sym_identifier, + ACTIONS(24687), 1, + aux_sym_dotted_type_expression_token1, + STATE(719), 1, + sym__member_property, + [318591] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24613), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24689), 1, + sym_identifier, + STATE(5890), 1, + sym__member_property, + [318607] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24691), 1, + sym_identifier, + ACTIONS(24693), 1, + aux_sym_dotted_type_expression_token1, + STATE(870), 1, + sym__member_property, + [318623] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9354), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [318633] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24631), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24695), 1, + sym_identifier, + STATE(1626), 1, + sym__member_property, + [318649] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9358), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [318659] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9362), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [318669] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24693), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24697), 1, + sym_identifier, + STATE(832), 1, + sym__member_property, + [318685] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24693), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24699), 1, + sym_identifier, + STATE(833), 1, + sym__member_property, + [318701] = 3, + ACTIONS(24703), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24701), 2, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [318713] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24693), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24705), 1, + sym_identifier, + STATE(841), 1, + sym__member_property, + [318729] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24693), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24707), 1, + sym_identifier, + STATE(829), 1, + sym__member_property, + [318745] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24709), 1, + sym_identifier, + ACTIONS(24711), 1, + aux_sym_dotted_type_expression_token1, + STATE(985), 1, + sym__member_property, + [318761] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24621), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24713), 1, + sym_identifier, + STATE(1208), 1, + sym__member_property, + [318777] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9366), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [318787] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24715), 1, + aux_sym__multiline_for_tail_token1, + STATE(14726), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [318801] = 3, + ACTIONS(24719), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24717), 2, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [318813] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24721), 1, + sym_identifier, + ACTIONS(24723), 1, + aux_sym_dotted_type_expression_token1, + STATE(3216), 1, + sym__member_property, + [318829] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24641), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24725), 1, + sym_identifier, + STATE(2379), 1, + sym__member_property, + [318845] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24727), 1, + aux_sym_do_statement_token2, + STATE(14751), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [318859] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24729), 1, + aux_sym_while_statement_token1, + STATE(14754), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [318873] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24731), 1, + aux_sym_do_statement_token2, + STATE(14768), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [318887] = 3, + ACTIONS(24735), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24733), 2, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [318899] = 3, + ACTIONS(24060), 1, + aux_sym_else_fragment_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8735), 2, + anon_sym_COLON, + sym_number_literal, + [318911] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24737), 1, + sym_identifier, + ACTIONS(24739), 1, + aux_sym_dotted_type_expression_token1, + STATE(3222), 1, + sym__member_property, + [318927] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24653), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24741), 1, + sym_identifier, + STATE(4806), 1, + sym__member_property, + [318943] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24743), 1, + sym_identifier, + ACTIONS(24745), 1, + aux_sym_dotted_type_expression_token1, + STATE(1915), 1, + sym__member_property, + [318959] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24663), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24747), 1, + sym_identifier, + STATE(1878), 1, + sym__member_property, + [318975] = 3, + ACTIONS(24062), 1, + aux_sym_else_fragment_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8694), 2, + anon_sym_COLON, + sym_number_literal, + [318987] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24480), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24749), 1, + sym_identifier, + STATE(10060), 1, + sym__member_property, + [319003] = 3, + STATE(12428), 1, + aux_sym_inline_statement_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8774), 2, + anon_sym_COLON, + sym_number_literal, + [319015] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24751), 1, + aux_sym_do_statement_token2, + STATE(14796), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [319029] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24753), 1, + aux_sym_while_statement_token1, + STATE(14803), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [319043] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24755), 1, + sym_identifier, + ACTIONS(24757), 1, + aux_sym_dotted_type_expression_token1, + STATE(1923), 1, + sym__member_property, + [319059] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24675), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24759), 1, + sym_identifier, + STATE(10117), 1, + sym__member_property, + [319075] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24761), 1, + sym_identifier, + ACTIONS(24763), 1, + aux_sym_dotted_type_expression_token1, + STATE(3236), 1, + sym__member_property, + [319091] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24687), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24765), 1, + sym_identifier, + STATE(718), 1, + sym__member_property, + [319107] = 3, + STATE(24), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24767), 2, + sym_newline, + anon_sym_COLON, + [319119] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24769), 1, + sym_identifier, + ACTIONS(24771), 1, + aux_sym_dotted_type_expression_token1, + STATE(5659), 1, + sym__member_property, + [319135] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24711), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24773), 1, + sym_identifier, + STATE(984), 1, + sym__member_property, + [319151] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24775), 1, + sym_identifier, + ACTIONS(24777), 1, + aux_sym_dotted_type_expression_token1, + STATE(11514), 1, + sym__member_property, + [319167] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24779), 1, + sym_identifier, + ACTIONS(24781), 1, + aux_sym_dotted_type_expression_token1, + STATE(1376), 1, + sym__member_property, + [319183] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9372), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [319193] = 4, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(24647), 1, + anon_sym_RPAREN, + STATE(12659), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [319207] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8731), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [319217] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24783), 1, + sym_identifier, + ACTIONS(24785), 1, + aux_sym_dotted_type_expression_token1, + STATE(3242), 1, + sym__member_property, + [319233] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24723), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24787), 1, + sym_identifier, + STATE(3212), 1, + sym__member_property, + [319249] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24789), 1, + sym_identifier, + ACTIONS(24791), 1, + aux_sym_dotted_type_expression_token1, + STATE(5665), 1, + sym__member_property, + [319265] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24739), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24793), 1, + sym_identifier, + STATE(3219), 1, + sym__member_property, + [319281] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24795), 1, + sym_identifier, + ACTIONS(24797), 1, + aux_sym_dotted_type_expression_token1, + STATE(1936), 1, + sym__member_property, + [319297] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24745), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24799), 1, + sym_identifier, + STATE(1912), 1, + sym__member_property, + [319313] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8747), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [319323] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24631), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24801), 1, + sym_identifier, + STATE(1966), 1, + sym__member_property, + [319339] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24803), 1, + sym_identifier, + ACTIONS(24805), 1, + aux_sym_dotted_type_expression_token1, + STATE(1940), 1, + sym__member_property, + [319355] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24757), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24807), 1, + sym_identifier, + STATE(1919), 1, + sym__member_property, + [319371] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24631), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24809), 1, + sym_identifier, + STATE(1971), 1, + sym__member_property, + [319387] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24763), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24811), 1, + sym_identifier, + STATE(3235), 1, + sym__member_property, + [319403] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24813), 1, + sym_identifier, + ACTIONS(24815), 1, + aux_sym_dotted_type_expression_token1, + STATE(10166), 1, + sym__member_property, + [319419] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24631), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24817), 1, + sym_identifier, + STATE(1764), 1, + sym__member_property, + [319435] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24771), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24819), 1, + sym_identifier, + STATE(5658), 1, + sym__member_property, + [319451] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24631), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24821), 1, + sym_identifier, + STATE(1967), 1, + sym__member_property, + [319467] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24785), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24823), 1, + sym_identifier, + STATE(3241), 1, + sym__member_property, + [319483] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24476), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24825), 1, + sym_identifier, + STATE(431), 1, + sym__member_property, + [319499] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24777), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24827), 1, + sym_identifier, + STATE(11418), 1, + sym__member_property, + [319515] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24791), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24829), 1, + sym_identifier, + STATE(5664), 1, + sym__member_property, + [319531] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24797), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24831), 1, + sym_identifier, + STATE(1935), 1, + sym__member_property, + [319547] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24805), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24833), 1, + sym_identifier, + STATE(1939), 1, + sym__member_property, + [319563] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24386), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24835), 1, + sym_identifier, + STATE(7678), 1, + sym__member_property, + [319579] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24837), 1, + aux_sym_do_statement_token2, + STATE(14957), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [319593] = 3, + STATE(25), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24839), 2, + sym_newline, + anon_sym_COLON, + [319605] = 3, + STATE(27), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24841), 2, + sym_newline, + anon_sym_COLON, + [319617] = 3, + STATE(28), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24843), 2, + sym_newline, + anon_sym_COLON, + [319629] = 3, + STATE(29), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24845), 2, + sym_newline, + anon_sym_COLON, + [319641] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24847), 1, + aux_sym_do_statement_token2, + STATE(14697), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [319655] = 3, + STATE(10709), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24849), 2, + sym_newline, + anon_sym_COLON, + [319667] = 4, + ACTIONS(24851), 1, + anon_sym_POUND, + STATE(12183), 1, + sym_file_number_literal, + STATE(12235), 1, + sym__required_file_number, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [319681] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8704), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [319691] = 4, + ACTIONS(11384), 1, + anon_sym_COMMA, + ACTIONS(24066), 1, + anon_sym_RPAREN, + STATE(12659), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [319705] = 3, + STATE(10531), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24853), 2, + sym_newline, + anon_sym_COLON, + [319717] = 4, + ACTIONS(8198), 1, + anon_sym_RPAREN, + ACTIONS(24855), 1, + anon_sym_COMMA, + STATE(12659), 1, + aux_sym__argument_sequence_repeat2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [319731] = 3, + ACTIONS(24088), 1, + aux_sym_else_fragment_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8694), 2, + anon_sym_COLON, + sym_number_literal, + [319743] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8994), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [319753] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24858), 1, + anon_sym_RPAREN, + STATE(12670), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [319767] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8998), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [319777] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9407), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [319787] = 4, + ACTIONS(24860), 1, + anon_sym_POUND, + STATE(5999), 1, + sym__required_file_number, + STATE(6000), 1, + sym_file_number_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [319801] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9411), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [319811] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9002), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [319821] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9415), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [319831] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9006), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [319841] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24862), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [319855] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24864), 1, + anon_sym_RPAREN, + STATE(12696), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [319869] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24866), 1, + aux_sym_do_statement_token2, + STATE(13741), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [319883] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24868), 1, + sym_identifier, + ACTIONS(24870), 1, + aux_sym_dotted_type_expression_token1, + STATE(4942), 1, + sym__member_property, + [319899] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24872), 1, + anon_sym_COLON, + STATE(15207), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [319913] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24874), 1, + sym_identifier, + ACTIONS(24876), 1, + aux_sym_dotted_type_expression_token1, + STATE(6108), 1, + sym__member_property, + [319929] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24878), 1, + anon_sym_COLON, + STATE(14557), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [319943] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9421), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [319953] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24523), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24880), 1, + sym_identifier, + STATE(1258), 1, + sym__member_property, + [319969] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9425), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [319979] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24882), 1, + anon_sym_COLON, + STATE(13682), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [319993] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9429), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [320003] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24884), 1, + anon_sym_COLON, + STATE(13691), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320017] = 4, + ACTIONS(24886), 1, + anon_sym_POUND, + STATE(6190), 1, + sym__required_file_number, + STATE(6191), 1, + sym_file_number_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320031] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9433), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [320041] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24888), 1, + aux_sym_do_statement_token2, + STATE(13954), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320055] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24523), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24890), 1, + sym_identifier, + STATE(1265), 1, + sym__member_property, + [320071] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24892), 1, + aux_sym_frm_begin_block_token2, + STATE(13700), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320085] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24523), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24894), 1, + sym_identifier, + STATE(1162), 1, + sym__member_property, + [320101] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24523), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24896), 1, + sym_identifier, + STATE(1234), 1, + sym__member_property, + [320117] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24898), 1, + anon_sym_COLON, + STATE(13704), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320131] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24523), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24900), 1, + sym_identifier, + STATE(1060), 1, + sym__member_property, + [320147] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9437), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [320157] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9441), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [320167] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24902), 1, + aux_sym__multiline_for_tail_token1, + STATE(13752), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320181] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24904), 1, + aux_sym_frm_begin_block_token2, + STATE(13716), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320195] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24906), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320209] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9445), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [320219] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9449), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [320229] = 4, + ACTIONS(24333), 1, + anon_sym_COMMA, + ACTIONS(24908), 1, + anon_sym_RPAREN, + STATE(12749), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320243] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24910), 1, + anon_sym_RPAREN, + STATE(12752), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320257] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24912), 1, + aux_sym_do_statement_token2, + STATE(13779), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320271] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24914), 1, + aux_sym_while_statement_token1, + STATE(13783), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320285] = 4, + ACTIONS(24916), 1, + anon_sym_POUND, + STATE(6855), 1, + sym__required_file_number, + STATE(6857), 1, + sym_file_number_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320299] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24918), 1, + aux_sym_while_statement_token1, + STATE(15097), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320313] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24920), 1, + aux_sym_do_statement_token2, + STATE(13796), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320327] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24922), 1, + aux_sym_frm_begin_block_token2, + STATE(13839), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320341] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9453), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [320351] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24924), 1, + anon_sym_COLON, + STATE(13730), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320365] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24926), 1, + aux_sym_while_statement_token1, + STATE(14823), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320379] = 3, + STATE(10715), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24928), 2, + sym_newline, + anon_sym_COLON, + [320391] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24930), 3, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + [320401] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24932), 1, + aux_sym_do_statement_token2, + STATE(13826), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320415] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24934), 1, + aux_sym_while_statement_token1, + STATE(13831), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320429] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24936), 3, + aux_sym_option_statement_token6, + aux_sym_option_statement_token7, + aux_sym_option_statement_token8, + [320439] = 3, + STATE(11530), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24938), 2, + sym_newline, + anon_sym_COLON, + [320451] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24693), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24940), 1, + sym_identifier, + STATE(788), 1, + sym__member_property, + [320467] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24942), 1, + aux_sym_do_statement_token2, + STATE(14640), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320481] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24944), 1, + anon_sym_RPAREN, + STATE(12729), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320495] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24369), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24946), 1, + sym_identifier, + STATE(1228), 1, + sym__member_property, + [320511] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8841), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [320521] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8855), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [320531] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24948), 1, + anon_sym_COLON, + STATE(14956), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320545] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24950), 1, + anon_sym_COLON, + STATE(13759), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320559] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24952), 1, + sym_identifier, + ACTIONS(24954), 1, + aux_sym_dotted_type_expression_token1, + STATE(3429), 1, + sym__member_property, + [320575] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8859), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [320585] = 3, + STATE(11326), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24956), 2, + sym_newline, + anon_sym_COLON, + [320597] = 3, + STATE(11330), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24958), 2, + sym_newline, + anon_sym_COLON, + [320609] = 4, + ACTIONS(24333), 1, + anon_sym_COMMA, + ACTIONS(24960), 1, + anon_sym_RPAREN, + STATE(12445), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320623] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(24962), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320637] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8863), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [320647] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24964), 1, + sym_identifier, + ACTIONS(24966), 1, + aux_sym_dotted_type_expression_token1, + STATE(10371), 1, + sym__member_property, + [320663] = 3, + STATE(35), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24968), 2, + sym_newline, + anon_sym_COLON, + [320675] = 3, + STATE(36), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24970), 2, + sym_newline, + anon_sym_COLON, + [320687] = 3, + STATE(37), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24972), 2, + sym_newline, + anon_sym_COLON, + [320699] = 3, + STATE(38), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24974), 2, + sym_newline, + anon_sym_COLON, + [320711] = 3, + STATE(39), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24976), 2, + sym_newline, + anon_sym_COLON, + [320723] = 3, + STATE(10710), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24978), 2, + sym_newline, + anon_sym_COLON, + [320735] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23969), 1, + sym_identifier, + ACTIONS(23971), 1, + aux_sym_dotted_type_expression_token1, + STATE(783), 1, + sym__member_property, + [320751] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8281), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [320761] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24980), 1, + aux_sym_do_statement_token2, + STATE(14160), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320775] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8285), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [320785] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24982), 1, + anon_sym_COLON, + STATE(13976), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320799] = 3, + ACTIONS(24986), 1, + aux_sym_type_preprocessor_else_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24984), 2, + aux_sym_type_preprocessor_if_token3, + aux_sym_type_preprocessor_elseif_token1, + [320811] = 3, + STATE(12428), 1, + aux_sym_inline_statement_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24988), 2, + anon_sym_COLON, + sym_number_literal, + [320823] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24990), 1, + anon_sym_COLON, + STATE(13980), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320837] = 4, + ACTIONS(24992), 1, + anon_sym_POUND, + STATE(6227), 1, + sym__required_file_number, + STATE(6228), 1, + sym_file_number_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320851] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24994), 1, + anon_sym_COLON, + STATE(13996), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320865] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(24996), 1, + anon_sym_COLON, + STATE(14005), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320879] = 4, + ACTIONS(24333), 1, + anon_sym_COMMA, + ACTIONS(24998), 1, + anon_sym_RPAREN, + STATE(12445), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320893] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25000), 1, + sym_identifier, + ACTIONS(25002), 1, + aux_sym_dotted_type_expression_token1, + STATE(1123), 1, + sym__member_property, + [320909] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9457), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [320919] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25004), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320933] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25006), 1, + aux_sym_frm_begin_block_token2, + STATE(14013), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320947] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24369), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25008), 1, + sym_identifier, + STATE(1257), 1, + sym__member_property, + [320963] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25010), 1, + anon_sym_COLON, + STATE(14017), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320977] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25012), 1, + anon_sym_RPAREN, + STATE(12762), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [320991] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9086), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [321001] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25014), 1, + aux_sym_frm_begin_block_token2, + STATE(14026), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321015] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25016), 1, + aux_sym_do_statement_token2, + STATE(13757), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321029] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25018), 1, + sym_identifier, + ACTIONS(25020), 1, + aux_sym_dotted_type_expression_token1, + STATE(2941), 1, + sym__member_property, + [321045] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25022), 1, + sym_identifier, + ACTIONS(25024), 1, + aux_sym_dotted_type_expression_token1, + STATE(2119), 1, + sym__member_property, + [321061] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25026), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321075] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25002), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25028), 1, + sym_identifier, + STATE(1404), 1, + sym__member_property, + [321091] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25002), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25030), 1, + sym_identifier, + STATE(1098), 1, + sym__member_property, + [321107] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25002), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25032), 1, + sym_identifier, + STATE(1101), 1, + sym__member_property, + [321123] = 3, + STATE(19), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25034), 2, + sym_newline, + anon_sym_COLON, + [321135] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25036), 1, + aux_sym_do_statement_token2, + STATE(14151), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321149] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25002), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25038), 1, + sym_identifier, + STATE(1122), 1, + sym__member_property, + [321165] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24068), 1, + sym_identifier, + ACTIONS(24270), 1, + aux_sym_dotted_type_expression_token1, + STATE(2523), 1, + sym__member_property, + [321181] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25040), 1, + anon_sym_COLON, + STATE(14084), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321195] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24621), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25042), 1, + sym_identifier, + STATE(1264), 1, + sym__member_property, + [321211] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8937), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [321221] = 4, + ACTIONS(8937), 1, + sym_number_literal, + ACTIONS(25044), 1, + anon_sym_COLON, + STATE(12610), 1, + aux_sym_inline_statement_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321235] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25046), 1, + anon_sym_COLON, + STATE(14088), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321249] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25048), 1, + aux_sym__multiline_for_tail_token1, + STATE(14260), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321263] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9498), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [321273] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25050), 1, + anon_sym_COLON, + STATE(14100), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321287] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9508), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [321297] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9512), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [321307] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25052), 1, + anon_sym_COLON, + STATE(14109), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321321] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24621), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25054), 1, + sym_identifier, + STATE(1270), 1, + sym__member_property, + [321337] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25056), 1, + aux_sym_frm_begin_block_token2, + STATE(14117), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321351] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24621), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25058), 1, + sym_identifier, + STATE(1383), 1, + sym__member_property, + [321367] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24621), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25060), 1, + sym_identifier, + STATE(1387), 1, + sym__member_property, + [321383] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25062), 1, + anon_sym_COLON, + STATE(14121), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321397] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24621), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25064), 1, + sym_identifier, + STATE(1447), 1, + sym__member_property, + [321413] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25066), 1, + aux_sym_frm_begin_block_token2, + STATE(14130), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321427] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25068), 1, + aux_sym__multiline_for_tail_token1, + STATE(14168), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321441] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25070), 1, + sym_identifier, + ACTIONS(25072), 1, + aux_sym_dotted_type_expression_token1, + STATE(1291), 1, + sym__member_property, + [321457] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25074), 1, + sym_identifier, + ACTIONS(25076), 1, + aux_sym_dotted_type_expression_token1, + STATE(5834), 1, + sym__member_property, + [321473] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25078), 1, + aux_sym_do_statement_token2, + STATE(14199), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321487] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25080), 1, + aux_sym_while_statement_token1, + STATE(14202), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321501] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25082), 1, + aux_sym_do_statement_token2, + STATE(14346), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321515] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25084), 1, + anon_sym_COLON, + STATE(14187), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321529] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25086), 1, + aux_sym_do_statement_token2, + STATE(14232), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321543] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25088), 1, + anon_sym_COLON, + STATE(14191), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321557] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25090), 1, + anon_sym_COLON, + STATE(14203), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321571] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25092), 1, + anon_sym_COLON, + STATE(14212), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321585] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25094), 1, + aux_sym_frm_begin_block_token2, + STATE(14220), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321599] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25096), 1, + anon_sym_COLON, + STATE(14224), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321613] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25098), 1, + aux_sym_while_statement_token1, + STATE(14348), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321627] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25100), 1, + aux_sym_frm_begin_block_token2, + STATE(14233), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321641] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9516), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [321651] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9090), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [321661] = 3, + ACTIONS(25102), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9094), 2, + aux_sym_else_fragment_token1, + sym_number_literal, + [321673] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25105), 1, + aux_sym_do_statement_token2, + STATE(14268), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321687] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25107), 1, + aux_sym_while_statement_token1, + STATE(14272), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321701] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25109), 1, + anon_sym_COLON, + STATE(14275), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321715] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9520), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [321725] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25111), 1, + anon_sym_COLON, + STATE(14279), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321739] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25113), 1, + anon_sym_COLON, + STATE(14291), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321753] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25115), 1, + anon_sym_COLON, + STATE(14300), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321767] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25117), 1, + aux_sym_do_statement_token2, + STATE(14365), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321781] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9524), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [321791] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25119), 1, + aux_sym_frm_begin_block_token2, + STATE(14308), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321805] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9528), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [321815] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25121), 1, + anon_sym_COLON, + STATE(14312), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321829] = 3, + ACTIONS(25123), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9101), 2, + aux_sym_else_fragment_token1, + sym_number_literal, + [321841] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9820), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [321851] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25126), 1, + aux_sym_frm_begin_block_token2, + STATE(14321), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321865] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9534), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [321875] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9112), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [321885] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9116), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [321895] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25128), 1, + anon_sym_COLON, + STATE(14363), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321909] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25130), 1, + anon_sym_COLON, + STATE(14367), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321923] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9538), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [321933] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9544), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [321943] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25132), 1, + anon_sym_COLON, + STATE(14379), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321957] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9548), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [321967] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25134), 1, + aux_sym_do_statement_token2, + STATE(14454), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321981] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25136), 1, + anon_sym_COLON, + STATE(14388), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [321995] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25138), 1, + aux_sym_while_statement_token1, + STATE(14472), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322009] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25140), 1, + aux_sym_frm_begin_block_token2, + STATE(14396), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322023] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25142), 1, + sym_identifier, + ACTIONS(25144), 1, + aux_sym_dotted_type_expression_token1, + STATE(7374), 1, + sym__member_property, + [322039] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25146), 1, + anon_sym_COLON, + STATE(14400), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322053] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24076), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24090), 1, + sym_identifier, + STATE(10035), 1, + sym__member_property, + [322069] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24104), 1, + sym_identifier, + ACTIONS(24106), 1, + aux_sym_dotted_type_expression_token1, + STATE(2301), 1, + sym__member_property, + [322085] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25148), 1, + aux_sym_frm_begin_block_token2, + STATE(14409), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322099] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24484), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25150), 1, + sym_identifier, + STATE(4278), 1, + sym__member_property, + [322115] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9120), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [322125] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25152), 1, + anon_sym_COLON, + STATE(14952), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322139] = 4, + ACTIONS(8535), 1, + anon_sym_RPAREN, + ACTIONS(25154), 1, + anon_sym_COMMA, + STATE(12842), 1, + aux_sym__argument_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322153] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25072), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25157), 1, + sym_identifier, + STATE(1293), 1, + sym__member_property, + [322169] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25159), 1, + anon_sym_COLON, + STATE(14451), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322183] = 4, + ACTIONS(25161), 1, + anon_sym_POUND, + STATE(5859), 1, + sym_file_number_literal, + STATE(6237), 1, + sym__required_file_number, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322197] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25163), 1, + anon_sym_COLON, + STATE(14455), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322211] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25165), 1, + anon_sym_RPAREN, + STATE(12851), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322225] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25072), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25167), 1, + sym_identifier, + STATE(1294), 1, + sym__member_property, + [322241] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25169), 1, + anon_sym_COLON, + STATE(14467), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322255] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25171), 1, + anon_sym_COLON, + STATE(14476), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322269] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25173), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322283] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25175), 1, + aux_sym__multiline_for_tail_token1, + STATE(14479), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322297] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25177), 1, + aux_sym_frm_begin_block_token2, + STATE(14484), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322311] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25179), 1, + anon_sym_COLON, + STATE(14488), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322325] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25181), 1, + aux_sym_frm_begin_block_token2, + STATE(14497), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322339] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25072), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25183), 1, + sym_identifier, + STATE(1295), 1, + sym__member_property, + [322355] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25185), 1, + anon_sym_COLON, + STATE(14539), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322369] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25187), 1, + anon_sym_COLON, + STATE(14543), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322383] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25072), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25189), 1, + sym_identifier, + STATE(1296), 1, + sym__member_property, + [322399] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8905), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [322409] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8913), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [322419] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25191), 1, + anon_sym_COLON, + STATE(14554), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322433] = 3, + ACTIONS(25193), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8637), 2, + anon_sym_COLON, + sym_number_literal, + [322445] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25195), 1, + sym_identifier, + ACTIONS(25197), 1, + aux_sym_dotted_type_expression_token1, + STATE(5870), 1, + sym__member_property, + [322461] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24256), 1, + sym_identifier, + ACTIONS(24258), 1, + aux_sym_dotted_type_expression_token1, + STATE(10042), 1, + sym__member_property, + [322477] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25199), 1, + anon_sym_COLON, + STATE(14563), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322491] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9554), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [322501] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25201), 1, + aux_sym_frm_begin_block_token2, + STATE(14571), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322515] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9558), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [322525] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25203), 1, + anon_sym_COLON, + STATE(14575), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322539] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9562), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [322549] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9566), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [322559] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25205), 1, + aux_sym_frm_begin_block_token2, + STATE(14584), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322573] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25207), 1, + aux_sym__multiline_for_tail_token1, + STATE(13829), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322587] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9570), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [322597] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25209), 1, + anon_sym_RPAREN, + STATE(12879), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322611] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9577), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [322621] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9584), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [322631] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25211), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322645] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25213), 1, + aux_sym__multiline_for_tail_token1, + STATE(14609), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322659] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25215), 1, + anon_sym_COLON, + STATE(14621), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322673] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9588), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [322683] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25217), 1, + anon_sym_COLON, + STATE(14625), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322697] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9592), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [322707] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9596), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [322717] = 3, + ACTIONS(25219), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8768), 2, + anon_sym_COLON, + sym_number_literal, + [322729] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25221), 1, + anon_sym_COLON, + STATE(14635), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322743] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8788), 3, + sym_newline, + anon_sym_COLON, + aux_sym_as_type_clause_token1, + [322753] = 3, + STATE(45), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25223), 2, + sym_newline, + anon_sym_COLON, + [322765] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9600), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [322775] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25225), 1, + anon_sym_COLON, + STATE(14644), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322789] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25227), 1, + aux_sym_frm_begin_block_token2, + STATE(14650), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322803] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8815), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [322813] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25229), 1, + anon_sym_COLON, + STATE(14653), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322827] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9144), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [322837] = 4, + ACTIONS(8815), 1, + sym_number_literal, + ACTIONS(25044), 1, + anon_sym_COLON, + STATE(12610), 1, + aux_sym_inline_statement_sequence_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322851] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25231), 1, + aux_sym_frm_begin_block_token2, + STATE(14659), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322865] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25233), 1, + sym_identifier, + ACTIONS(25235), 1, + aux_sym_dotted_type_expression_token1, + STATE(3436), 1, + sym__member_property, + [322881] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24545), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25237), 1, + sym_identifier, + STATE(634), 1, + sym__member_property, + [322897] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25002), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25239), 1, + sym_identifier, + STATE(1110), 1, + sym__member_property, + [322913] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25241), 1, + anon_sym_COLON, + STATE(14675), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322927] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23913), 1, + sym_identifier, + ACTIONS(23915), 1, + aux_sym_dotted_type_expression_token1, + STATE(2251), 1, + sym__member_property, + [322943] = 4, + ACTIONS(24333), 1, + anon_sym_COMMA, + ACTIONS(25243), 1, + anon_sym_RPAREN, + STATE(12996), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322957] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9641), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [322967] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25245), 1, + anon_sym_COLON, + STATE(14685), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322981] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25247), 1, + anon_sym_COLON, + STATE(14690), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [322995] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9645), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323005] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25249), 1, + anon_sym_COLON, + STATE(14695), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323019] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25251), 1, + aux_sym_do_statement_token2, + STATE(13961), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323033] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25253), 1, + anon_sym_COLON, + STATE(14700), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323047] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9649), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323057] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25255), 1, + anon_sym_COLON, + STATE(14705), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323071] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25257), 1, + aux_sym_while_statement_token1, + STATE(13977), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323085] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25259), 1, + anon_sym_COLON, + STATE(14710), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323099] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25261), 1, + anon_sym_COLON, + STATE(14715), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323113] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24312), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25263), 1, + sym_identifier, + STATE(3046), 1, + sym__member_property, + [323129] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9656), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323139] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24781), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25265), 1, + sym_identifier, + STATE(1365), 1, + sym__member_property, + [323155] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25267), 1, + aux_sym_do_statement_token2, + STATE(14254), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323169] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25269), 1, + sym_identifier, + ACTIONS(25271), 1, + aux_sym_dotted_type_expression_token1, + STATE(11502), 1, + sym__member_property, + [323185] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25273), 1, + anon_sym_RPAREN, + STATE(12925), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323199] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25275), 3, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_BANG, + [323209] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9664), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323219] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9668), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323229] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25277), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323243] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25279), 1, + aux_sym__multiline_for_tail_token1, + STATE(14745), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323257] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24324), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25281), 1, + sym_identifier, + STATE(496), 1, + sym__member_property, + [323273] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24870), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25283), 1, + sym_identifier, + STATE(4938), 1, + sym__member_property, + [323289] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9672), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323299] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9679), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323309] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9686), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323319] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25285), 1, + aux_sym_do_statement_token2, + STATE(14506), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323333] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9690), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323343] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25287), 1, + anon_sym_RPAREN, + STATE(12946), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323357] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9694), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323367] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25289), 1, + aux_sym_while_statement_token1, + STATE(14531), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323381] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9698), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323391] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9702), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323401] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9706), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323411] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24351), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25291), 1, + sym_identifier, + STATE(1535), 1, + sym__member_property, + [323427] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9710), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323437] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24693), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25293), 1, + sym_identifier, + STATE(869), 1, + sym__member_property, + [323453] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23971), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24001), 1, + sym_identifier, + STATE(785), 1, + sym__member_property, + [323469] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9714), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323479] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9718), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323489] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25295), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323503] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24363), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25297), 1, + sym_identifier, + STATE(3145), 1, + sym__member_property, + [323519] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23979), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(23989), 1, + sym_identifier, + STATE(2243), 1, + sym__member_property, + [323535] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25020), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25299), 1, + sym_identifier, + STATE(2921), 1, + sym__member_property, + [323551] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24627), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25301), 1, + sym_identifier, + STATE(3725), 1, + sym__member_property, + [323567] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25271), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25303), 1, + sym_identifier, + STATE(11559), 1, + sym__member_property, + [323583] = 3, + STATE(11251), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25305), 2, + sym_newline, + anon_sym_COLON, + [323595] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9754), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323605] = 3, + STATE(11255), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25307), 2, + sym_newline, + anon_sym_COLON, + [323617] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9758), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323627] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25309), 1, + anon_sym_RPAREN, + STATE(12961), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323641] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9762), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323651] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9766), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323661] = 3, + STATE(11265), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25311), 2, + sym_newline, + anon_sym_COLON, + [323673] = 3, + STATE(11266), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25313), 2, + sym_newline, + anon_sym_COLON, + [323685] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25315), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323699] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25317), 1, + aux_sym__multiline_for_tail_token1, + STATE(14832), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323713] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24268), 1, + sym_identifier, + ACTIONS(24270), 1, + aux_sym_dotted_type_expression_token1, + STATE(2541), 1, + sym__member_property, + [323729] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25319), 1, + anon_sym_COLON, + STATE(14837), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323743] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25321), 1, + anon_sym_COLON, + STATE(14842), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323757] = 4, + ACTIONS(24339), 1, + aux_sym_file_access_token1, + ACTIONS(24341), 1, + aux_sym_file_access_token2, + STATE(12267), 1, + sym_file_access, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323771] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24302), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25323), 1, + sym_identifier, + STATE(6702), 1, + sym__member_property, + [323787] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9770), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [323797] = 3, + STATE(11328), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25325), 2, + sym_newline, + anon_sym_COLON, + [323809] = 3, + STATE(11329), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25327), 2, + sym_newline, + anon_sym_COLON, + [323821] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25329), 1, + aux_sym_do_statement_token2, + STATE(14231), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323835] = 3, + STATE(11338), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25331), 2, + sym_newline, + anon_sym_COLON, + [323847] = 3, + STATE(11339), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25333), 2, + sym_newline, + anon_sym_COLON, + [323859] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8925), 3, + sym_newline, + anon_sym_COLON, + aux_sym_as_type_clause_token1, + [323869] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25335), 1, + anon_sym_COLON, + STATE(14889), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323883] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24954), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25337), 1, + sym_identifier, + STATE(3447), 1, + sym__member_property, + [323899] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24476), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25339), 1, + sym_identifier, + STATE(426), 1, + sym__member_property, + [323915] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25341), 1, + anon_sym_COLON, + STATE(14894), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323929] = 4, + ACTIONS(24339), 1, + aux_sym_file_access_token1, + ACTIONS(24341), 1, + aux_sym_file_access_token2, + STATE(12292), 1, + sym_file_access, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323943] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23956), 3, + sym_newline, + anon_sym_COLON, + anon_sym_COMMA, + [323953] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25343), 1, + anon_sym_COLON, + STATE(14914), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323967] = 4, + ACTIONS(24839), 1, + anon_sym_COLON, + ACTIONS(25345), 1, + sym_newline, + STATE(25), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323981] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25347), 1, + anon_sym_COLON, + STATE(14919), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [323995] = 4, + ACTIONS(24339), 1, + aux_sym_file_access_token1, + ACTIONS(24341), 1, + aux_sym_file_access_token2, + STATE(12300), 1, + sym_file_access, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324009] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25349), 1, + anon_sym_RPAREN, + STATE(12987), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324023] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24375), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25351), 1, + sym_identifier, + STATE(2002), 1, + sym__member_property, + [324039] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25353), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324053] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25355), 1, + aux_sym__multiline_for_tail_token1, + STATE(14936), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324067] = 4, + ACTIONS(24298), 1, + anon_sym_COLON, + ACTIONS(25357), 1, + sym_newline, + STATE(26), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324081] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24074), 1, + sym_identifier, + ACTIONS(24076), 1, + aux_sym_dotted_type_expression_token1, + STATE(10039), 1, + sym__member_property, + [324097] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25359), 1, + anon_sym_COLON, + STATE(14939), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324111] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25361), 1, + anon_sym_COLON, + STATE(14944), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324125] = 4, + ACTIONS(24339), 1, + aux_sym_file_access_token1, + ACTIONS(24341), 1, + aux_sym_file_access_token2, + STATE(12304), 1, + sym_file_access, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324139] = 4, + ACTIONS(24841), 1, + anon_sym_COLON, + ACTIONS(25363), 1, + sym_newline, + STATE(27), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324153] = 4, + ACTIONS(24851), 1, + anon_sym_POUND, + STATE(12183), 1, + sym_file_number_literal, + STATE(12863), 1, + sym__required_file_number, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324167] = 4, + ACTIONS(24333), 1, + anon_sym_COMMA, + ACTIONS(25366), 1, + anon_sym_RPAREN, + STATE(12445), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324181] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25368), 1, + anon_sym_COLON, + STATE(14964), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324195] = 4, + ACTIONS(24843), 1, + anon_sym_COLON, + ACTIONS(25370), 1, + sym_newline, + STATE(28), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324209] = 4, + ACTIONS(24845), 1, + anon_sym_COLON, + ACTIONS(25373), 1, + sym_newline, + STATE(29), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324223] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25376), 1, + anon_sym_COLON, + STATE(14969), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324237] = 4, + ACTIONS(24339), 1, + aux_sym_file_access_token1, + ACTIONS(24341), 1, + aux_sym_file_access_token2, + STATE(12307), 1, + sym_file_access, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324251] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25076), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25378), 1, + sym_identifier, + STATE(6016), 1, + sym__member_property, + [324267] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24966), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25380), 1, + sym_identifier, + STATE(10367), 1, + sym__member_property, + [324283] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25382), 1, + anon_sym_COLON, + STATE(14989), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324297] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9148), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [324307] = 4, + ACTIONS(25384), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(25386), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(25388), 1, + aux_sym__property_get_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324321] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25390), 1, + anon_sym_COLON, + STATE(14994), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324335] = 4, + ACTIONS(24339), 1, + aux_sym_file_access_token1, + ACTIONS(24341), 1, + aux_sym_file_access_token2, + STATE(12311), 1, + sym_file_access, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324349] = 4, + ACTIONS(24333), 1, + anon_sym_COMMA, + ACTIONS(25392), 1, + anon_sym_RPAREN, + STATE(13031), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324363] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25394), 1, + anon_sym_RPAREN, + STATE(13032), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324377] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25396), 1, + anon_sym_RPAREN, + STATE(13013), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324391] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25398), 1, + anon_sym_COLON, + STATE(15014), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324405] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25400), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324419] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25402), 1, + aux_sym__multiline_for_tail_token1, + STATE(15025), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324433] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25404), 1, + anon_sym_COLON, + STATE(15019), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324447] = 4, + ACTIONS(24339), 1, + aux_sym_file_access_token1, + ACTIONS(24341), 1, + aux_sym_file_access_token2, + STATE(12317), 1, + sym_file_access, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324461] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24683), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25406), 1, + sym_identifier, + STATE(7305), 1, + sym__member_property, + [324477] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24876), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25408), 1, + sym_identifier, + STATE(6144), 1, + sym__member_property, + [324493] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25410), 1, + anon_sym_COLON, + STATE(15038), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324507] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25412), 1, + anon_sym_COLON, + STATE(15043), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324521] = 4, + ACTIONS(24339), 1, + aux_sym_file_access_token1, + ACTIONS(24341), 1, + aux_sym_file_access_token2, + STATE(12322), 1, + sym_file_access, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324535] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8811), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [324545] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8879), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [324555] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25414), 1, + anon_sym_COLON, + STATE(15058), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324569] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8909), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [324579] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25072), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25416), 1, + sym_identifier, + STATE(1200), 1, + sym__member_property, + [324595] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25418), 1, + anon_sym_COLON, + STATE(15062), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324609] = 4, + ACTIONS(24339), 1, + aux_sym_file_access_token1, + ACTIONS(24341), 1, + aux_sym_file_access_token2, + STATE(12328), 1, + sym_file_access, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324623] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25144), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25420), 1, + sym_identifier, + STATE(7375), 1, + sym__member_property, + [324639] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8929), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [324649] = 4, + ACTIONS(24333), 1, + anon_sym_COMMA, + ACTIONS(25422), 1, + anon_sym_RPAREN, + STATE(12445), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324663] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25424), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324677] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9022), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [324687] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25426), 1, + anon_sym_RPAREN, + STATE(13036), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324701] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25428), 1, + aux_sym_do_statement_token2, + STATE(15177), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324715] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25430), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324729] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25432), 1, + aux_sym__multiline_for_tail_token1, + STATE(15087), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324743] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25434), 1, + aux_sym__multiline_for_tail_token1, + STATE(13836), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324757] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24480), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25436), 1, + sym_identifier, + STATE(10155), 1, + sym__member_property, + [324773] = 3, + STATE(130), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23840), 2, + sym_newline, + anon_sym_COLON, + [324785] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9026), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [324795] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24016), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24022), 1, + sym_identifier, + STATE(916), 1, + sym__member_property, + [324811] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25197), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25438), 1, + sym_identifier, + STATE(5836), 1, + sym__member_property, + [324827] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25024), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25440), 1, + sym_identifier, + STATE(2126), 1, + sym__member_property, + [324843] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25442), 1, + aux_sym_while_statement_token1, + STATE(14547), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324857] = 4, + ACTIONS(25444), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(25446), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(25448), 1, + sym_ptrsafe_modifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324871] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25450), 1, + anon_sym_RPAREN, + STATE(13050), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324885] = 4, + ACTIONS(25452), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(25454), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(25456), 1, + sym_ptrsafe_modifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324899] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24480), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25458), 1, + sym_identifier, + STATE(10167), 1, + sym__member_property, + [324915] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25460), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324929] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25462), 1, + aux_sym__multiline_for_tail_token1, + STATE(15134), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [324943] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24480), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25464), 1, + sym_identifier, + STATE(10147), 1, + sym__member_property, + [324959] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24635), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25466), 1, + sym_identifier, + STATE(10045), 1, + sym__member_property, + [324975] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24480), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25468), 1, + sym_identifier, + STATE(10170), 1, + sym__member_property, + [324991] = 4, + ACTIONS(25470), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(25472), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(25474), 1, + sym_ptrsafe_modifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325005] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24480), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25476), 1, + sym_identifier, + STATE(10148), 1, + sym__member_property, + [325021] = 4, + ACTIONS(25478), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(25480), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(25482), 1, + sym_ptrsafe_modifier, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325035] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8933), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [325045] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25484), 1, + aux_sym__multiline_for_tail_token1, + STATE(15188), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325059] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25486), 3, + aux_sym_as_type_clause_token1, + aux_sym_file_lock_token1, + aux_sym_file_lock_token2, + [325069] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(9046), 3, + anon_sym_COLON, + aux_sym_else_fragment_token1, + sym_number_literal, + [325079] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24034), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(24046), 1, + sym_identifier, + STATE(2189), 1, + sym__member_property, + [325095] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25002), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25488), 1, + sym_identifier, + STATE(1444), 1, + sym__member_property, + [325111] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25072), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25490), 1, + sym_identifier, + STATE(1160), 1, + sym__member_property, + [325127] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24404), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25492), 1, + sym_identifier, + STATE(1568), 1, + sym__member_property, + [325143] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25235), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25494), 1, + sym_identifier, + STATE(3629), 1, + sym__member_property, + [325159] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25496), 1, + anon_sym_RPAREN, + STATE(13068), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325173] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25498), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325187] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25500), 1, + aux_sym_do_statement_token2, + STATE(15221), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325201] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25502), 1, + aux_sym_while_statement_token1, + STATE(15225), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325215] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(24815), 1, + aux_sym_dotted_type_expression_token1, + ACTIONS(25504), 1, + sym_identifier, + STATE(10168), 1, + sym__member_property, + [325231] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23977), 1, + sym_identifier, + ACTIONS(23979), 1, + aux_sym_dotted_type_expression_token1, + STATE(2239), 1, + sym__member_property, + [325247] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(23965), 3, + aux_sym_as_type_clause_token1, + aux_sym_file_lock_token1, + aux_sym_file_lock_token2, + [325257] = 4, + ACTIONS(20499), 1, + sym_number_literal, + ACTIONS(25506), 1, + aux_sym_do_statement_token2, + STATE(14318), 1, + sym_line_number_prefix, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325271] = 3, + STATE(22), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25508), 2, + sym_newline, + anon_sym_COLON, + [325283] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25510), 1, + anon_sym_RPAREN, + STATE(13078), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325297] = 3, + STATE(47), 1, + sym__statement_separator, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25512), 2, + sym_newline, + anon_sym_COLON, + [325309] = 4, + ACTIONS(24326), 1, + anon_sym_COMMA, + ACTIONS(25514), 1, + anon_sym_RPAREN, + STATE(12503), 1, + aux_sym_array_bounds_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325323] = 4, + ACTIONS(24333), 1, + anon_sym_COMMA, + ACTIONS(25516), 1, + anon_sym_RPAREN, + STATE(12728), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325337] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25518), 1, + sym_identifier, + STATE(6141), 1, + sym_letter_range, + [325350] = 3, + ACTIONS(5530), 1, + anon_sym_LPAREN, + STATE(915), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325361] = 3, + ACTIONS(20377), 1, + anon_sym_LPAREN, + STATE(10347), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325372] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23565), 1, + sym_identifier, + STATE(5383), 1, + sym_variable_declarator, + [325385] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25520), 1, + sym_identifier, + STATE(5385), 1, + sym_const_declarator, + [325398] = 3, + ACTIONS(25522), 1, + anon_sym_LPAREN, + STATE(6378), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325409] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25524), 2, + sym_newline, + anon_sym_COLON, + [325418] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25526), 1, + sym_identifier, + STATE(5391), 1, + sym_letter_range, + [325431] = 3, + ACTIONS(5613), 1, + anon_sym_LPAREN, + STATE(2532), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325442] = 3, + ACTIONS(23925), 1, + anon_sym_LPAREN, + STATE(13347), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325453] = 3, + ACTIONS(6038), 1, + anon_sym_LPAREN, + STATE(1929), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325464] = 3, + ACTIONS(25528), 1, + anon_sym_LPAREN, + STATE(12326), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325475] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25530), 1, + sym_identifier, + ACTIONS(25532), 1, + aux_sym_dotted_type_expression_token1, + [325488] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25534), 2, + sym_newline, + anon_sym_COLON, + [325497] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25520), 1, + sym_identifier, + STATE(5823), 1, + sym_const_declarator, + [325510] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25536), 1, + sym_identifier, + STATE(4875), 1, + sym_const_declarator, + [325523] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25538), 1, + sym_identifier, + ACTIONS(25540), 1, + aux_sym_dotted_type_expression_token1, + [325536] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25542), 1, + sym_identifier, + ACTIONS(25544), 1, + aux_sym_dotted_type_expression_token1, + [325549] = 3, + ACTIONS(25546), 1, + aux_sym_on_goto_statement_token2, + ACTIONS(25548), 1, + aux_sym_on_error_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325560] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25526), 1, + sym_identifier, + STATE(5954), 1, + sym_letter_range, + [325573] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25550), 1, + sym_identifier, + ACTIONS(25552), 1, + aux_sym_dotted_type_expression_token1, + [325586] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23681), 1, + sym_identifier, + STATE(5223), 1, + sym_variable_declarator, + [325599] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25554), 1, + sym_identifier, + ACTIONS(25556), 1, + sym_number_literal, + [325612] = 3, + ACTIONS(25558), 1, + aux_sym__for_header_token2, + ACTIONS(25560), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325623] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25562), 1, + sym_identifier, + ACTIONS(25564), 1, + sym_number_literal, + [325636] = 3, + ACTIONS(25566), 1, + anon_sym_LPAREN, + STATE(6131), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325647] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25568), 1, + sym_identifier, + ACTIONS(25570), 1, + sym_number_literal, + [325660] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(25574), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325671] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25576), 2, + sym_newline, + anon_sym_COLON, + [325680] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21886), 1, + sym_identifier, + STATE(4149), 1, + sym_variable_declarator, + [325693] = 3, + ACTIONS(25578), 1, + aux_sym_frm_begin_block_token2, + STATE(3941), 1, + sym_end_property_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325704] = 3, + ACTIONS(25580), 1, + aux_sym__for_header_token2, + ACTIONS(25582), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325715] = 3, + ACTIONS(7980), 1, + anon_sym_LPAREN, + STATE(3656), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325726] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25584), 1, + sym_identifier, + ACTIONS(25586), 1, + sym_number_literal, + [325739] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24380), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [325748] = 3, + ACTIONS(25588), 1, + aux_sym__for_header_token2, + ACTIONS(25590), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325759] = 3, + ACTIONS(6404), 1, + anon_sym_LPAREN, + STATE(2019), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325770] = 3, + ACTIONS(25592), 1, + aux_sym_frm_begin_block_token2, + STATE(3958), 1, + sym_end_function_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325781] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25594), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [325790] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25596), 1, + sym_identifier, + ACTIONS(25598), 1, + aux_sym_dotted_type_expression_token1, + [325803] = 3, + ACTIONS(25600), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325814] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(24515), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [325823] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25604), 1, + sym_identifier, + ACTIONS(25606), 1, + aux_sym_dotted_type_expression_token1, + [325836] = 3, + ACTIONS(25578), 1, + aux_sym_frm_begin_block_token2, + STATE(3959), 1, + sym_end_property_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325847] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25608), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325858] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25610), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325869] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25612), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325880] = 3, + ACTIONS(25614), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(25616), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325891] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25618), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325902] = 3, + ACTIONS(5619), 1, + anon_sym_LPAREN, + STATE(2896), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325913] = 3, + ACTIONS(5693), 1, + anon_sym_LPAREN, + STATE(1256), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325924] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23306), 1, + sym_identifier, + STATE(6829), 1, + sym_variable_declarator, + [325937] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23681), 1, + sym_identifier, + STATE(5261), 1, + sym_variable_declarator, + [325950] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23306), 1, + sym_identifier, + STATE(5856), 1, + sym_variable_declarator, + [325963] = 3, + ACTIONS(7629), 1, + anon_sym_LPAREN, + STATE(2960), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325974] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25620), 1, + sym_identifier, + ACTIONS(25622), 1, + aux_sym_dotted_type_expression_token1, + [325987] = 3, + ACTIONS(23997), 1, + aux_sym_as_type_clause_token1, + STATE(11854), 1, + sym_as_type_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [325998] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23681), 1, + sym_identifier, + STATE(6034), 1, + sym_variable_declarator, + [326011] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25624), 1, + sym_identifier, + ACTIONS(25626), 1, + aux_sym_dotted_type_expression_token1, + [326024] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(25630), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326035] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25632), 1, + sym_identifier, + ACTIONS(25634), 1, + aux_sym_dotted_type_expression_token1, + [326048] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25636), 1, + sym_identifier, + ACTIONS(25638), 1, + aux_sym_dotted_type_expression_token1, + [326061] = 3, + ACTIONS(5524), 1, + anon_sym_LPAREN, + STATE(2882), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326072] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25640), 1, + sym_identifier, + ACTIONS(25642), 1, + sym_number_literal, + [326085] = 3, + ACTIONS(5168), 1, + anon_sym_LPAREN, + STATE(2303), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326096] = 3, + ACTIONS(25644), 1, + aux_sym_on_goto_statement_token2, + ACTIONS(25646), 1, + aux_sym_on_error_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326107] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23456), 1, + sym_identifier, + STATE(5549), 1, + sym_variable_declarator, + [326120] = 3, + ACTIONS(5438), 1, + anon_sym_LPAREN, + STATE(868), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326131] = 3, + ACTIONS(5619), 1, + anon_sym_LPAREN, + STATE(2389), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326142] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21886), 1, + sym_identifier, + STATE(4174), 1, + sym_variable_declarator, + [326155] = 3, + ACTIONS(5836), 1, + anon_sym_LPAREN, + STATE(1352), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326166] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25648), 1, + sym_identifier, + STATE(6046), 1, + sym_const_declarator, + [326179] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25650), 2, + sym_newline, + anon_sym_COLON, + [326188] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25652), 1, + sym_identifier, + ACTIONS(25654), 1, + aux_sym_dotted_type_expression_token1, + [326201] = 3, + ACTIONS(25656), 1, + aux_sym__for_header_token2, + ACTIONS(25658), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326212] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25660), 1, + sym_identifier, + ACTIONS(25662), 1, + aux_sym_dotted_type_expression_token1, + [326225] = 3, + ACTIONS(25664), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(25666), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326236] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23512), 1, + sym_identifier, + STATE(5255), 1, + sym_variable_declarator, + [326249] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25668), 1, + sym_identifier, + STATE(3549), 1, + sym_const_declarator, + [326262] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25670), 1, + sym_identifier, + ACTIONS(25672), 1, + sym_number_literal, + [326275] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25674), 1, + sym_identifier, + ACTIONS(25676), 1, + sym_number_literal, + [326288] = 3, + ACTIONS(25678), 1, + aux_sym__for_header_token2, + ACTIONS(25680), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326299] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23456), 1, + sym_identifier, + STATE(5552), 1, + sym_variable_declarator, + [326312] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25682), 1, + sym_identifier, + ACTIONS(25684), 1, + aux_sym_dotted_type_expression_token1, + [326325] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25686), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [326334] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25688), 1, + sym_identifier, + ACTIONS(25690), 1, + sym_number_literal, + [326347] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25692), 1, + sym_identifier, + STATE(5553), 1, + sym_const_declarator, + [326360] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25694), 1, + sym_identifier, + ACTIONS(25696), 1, + sym_number_literal, + [326373] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(25698), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326384] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25700), 1, + sym_identifier, + ACTIONS(25702), 1, + sym_number_literal, + [326397] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25704), 1, + sym_identifier, + ACTIONS(25706), 1, + sym_number_literal, + [326410] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25708), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326421] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25710), 2, + sym_newline, + anon_sym_COLON, + [326430] = 3, + ACTIONS(25712), 1, + anon_sym_LPAREN, + STATE(5842), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326441] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25714), 1, + sym_identifier, + ACTIONS(25716), 1, + sym_number_literal, + [326454] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25718), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326465] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(25720), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326476] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25722), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326487] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(25724), 1, + aux_sym__property_get_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326498] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25726), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326509] = 3, + ACTIONS(5693), 1, + anon_sym_LPAREN, + STATE(1185), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326520] = 3, + ACTIONS(25728), 1, + anon_sym_LPAREN, + STATE(6264), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326531] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25730), 1, + sym_identifier, + ACTIONS(25732), 1, + sym_number_literal, + [326544] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25734), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [326553] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25736), 1, + sym_identifier, + ACTIONS(25738), 1, + aux_sym_dotted_type_expression_token1, + [326566] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(25740), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326577] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23731), 1, + sym_identifier, + STATE(12135), 1, + sym_variable_declarator, + [326590] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25742), 1, + sym_identifier, + ACTIONS(25744), 1, + aux_sym_dotted_type_expression_token1, + [326603] = 3, + ACTIONS(25746), 1, + aux_sym_on_goto_statement_token2, + ACTIONS(25748), 1, + aux_sym_on_error_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326614] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25750), 1, + sym_identifier, + STATE(12142), 1, + sym_const_declarator, + [326627] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25752), 1, + sym_identifier, + ACTIONS(25754), 1, + sym_paramarray_modifier, + [326640] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25756), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [326649] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25758), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [326658] = 3, + ACTIONS(25761), 1, + aux_sym__for_header_token2, + ACTIONS(25763), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326669] = 3, + ACTIONS(25728), 1, + anon_sym_LPAREN, + STATE(5837), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326680] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21886), 1, + sym_identifier, + STATE(4175), 1, + sym_variable_declarator, + [326693] = 3, + ACTIONS(25728), 1, + anon_sym_LPAREN, + STATE(5838), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326704] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21886), 1, + sym_identifier, + STATE(4176), 1, + sym_variable_declarator, + [326717] = 3, + ACTIONS(25765), 1, + aux_sym__for_header_token2, + ACTIONS(25767), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326728] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25769), 1, + sym_identifier, + STATE(4177), 1, + sym_const_declarator, + [326741] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(25771), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326752] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23490), 1, + sym_identifier, + STATE(6109), 1, + sym_variable_declarator, + [326765] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25773), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326776] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21792), 1, + sym_identifier, + STATE(7665), 1, + sym_variable_declarator, + [326789] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22026), 1, + sym_identifier, + STATE(3807), 1, + sym_variable_declarator, + [326802] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25775), 1, + sym_identifier, + ACTIONS(25777), 1, + aux_sym_dotted_type_expression_token1, + [326815] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25779), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326826] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23490), 1, + sym_identifier, + STATE(5753), 1, + sym_variable_declarator, + [326839] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25781), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326850] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25783), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326861] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23512), 1, + sym_identifier, + STATE(5228), 1, + sym_variable_declarator, + [326874] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25785), 1, + sym_identifier, + STATE(5230), 1, + sym_const_declarator, + [326887] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(25787), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326898] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25789), 1, + sym_identifier, + STATE(4001), 1, + sym_letter_range, + [326911] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(25791), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326922] = 3, + ACTIONS(4350), 1, + anon_sym_LPAREN, + STATE(417), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326933] = 3, + ACTIONS(5550), 1, + anon_sym_LPAREN, + STATE(2535), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326944] = 3, + ACTIONS(25793), 1, + aux_sym_on_goto_statement_token2, + ACTIONS(25795), 1, + aux_sym_on_error_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326955] = 3, + ACTIONS(25728), 1, + anon_sym_LPAREN, + STATE(5886), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326966] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25797), 1, + sym_identifier, + STATE(5754), 1, + sym_const_declarator, + [326979] = 3, + ACTIONS(25799), 1, + aux_sym__for_header_token2, + ACTIONS(25801), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [326990] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25803), 1, + sym_identifier, + ACTIONS(25805), 1, + aux_sym_dotted_type_expression_token1, + [327003] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(25807), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327014] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25809), 1, + sym_identifier, + ACTIONS(25811), 1, + aux_sym_dotted_type_expression_token1, + [327027] = 3, + ACTIONS(25813), 1, + aux_sym__for_header_token2, + ACTIONS(25815), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327038] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25817), 1, + sym_identifier, + STATE(5755), 1, + sym_letter_range, + [327051] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25819), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [327060] = 3, + ACTIONS(25821), 1, + anon_sym_LPAREN, + STATE(4985), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327071] = 3, + ACTIONS(7003), 1, + anon_sym_LPAREN, + STATE(2518), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327082] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25823), 1, + sym_identifier, + STATE(7689), 1, + sym_const_declarator, + [327095] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25825), 1, + sym_identifier, + STATE(5222), 1, + sym_letter_range, + [327108] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25827), 1, + sym_identifier, + ACTIONS(25829), 1, + sym_number_literal, + [327121] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25831), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327132] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25833), 1, + sym_identifier, + ACTIONS(25835), 1, + aux_sym_dotted_type_expression_token1, + [327145] = 3, + ACTIONS(6127), 1, + anon_sym_LPAREN, + STATE(1675), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327156] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25837), 1, + sym_identifier, + ACTIONS(25839), 1, + aux_sym_dotted_type_expression_token1, + [327169] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25841), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327180] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(25843), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327191] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25845), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327202] = 3, + ACTIONS(25712), 1, + anon_sym_LPAREN, + STATE(5869), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327213] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25847), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327224] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25849), 1, + sym_identifier, + ACTIONS(25851), 1, + aux_sym_dotted_type_expression_token1, + [327237] = 3, + ACTIONS(25712), 1, + anon_sym_LPAREN, + STATE(5872), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327248] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25853), 1, + sym_identifier, + ACTIONS(25855), 1, + sym_number_literal, + [327261] = 3, + ACTIONS(25857), 1, + aux_sym_on_goto_statement_token2, + ACTIONS(25859), 1, + aux_sym_on_error_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327272] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(25861), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327283] = 3, + ACTIONS(25863), 1, + aux_sym_frm_begin_block_token2, + STATE(8004), 1, + sym_end_property_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327294] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25865), 1, + sym_identifier, + ACTIONS(25867), 1, + sym_number_literal, + [327307] = 3, + ACTIONS(25869), 1, + aux_sym__for_header_token2, + ACTIONS(25871), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327318] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21792), 1, + sym_identifier, + STATE(7664), 1, + sym_variable_declarator, + [327331] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25873), 1, + sym_identifier, + ACTIONS(25875), 1, + aux_sym_dotted_type_expression_token1, + [327344] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25877), 1, + sym_identifier, + ACTIONS(25879), 1, + aux_sym_dotted_type_expression_token1, + [327357] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25881), 1, + sym_identifier, + ACTIONS(25883), 1, + aux_sym_dotted_type_expression_token1, + [327370] = 3, + ACTIONS(25821), 1, + anon_sym_LPAREN, + STATE(5007), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327381] = 3, + ACTIONS(25821), 1, + anon_sym_LPAREN, + STATE(5008), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327392] = 3, + ACTIONS(25885), 1, + aux_sym__for_header_token2, + ACTIONS(25887), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327403] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(25889), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327414] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25891), 1, + sym_identifier, + ACTIONS(25893), 1, + sym_number_literal, + [327427] = 3, + ACTIONS(24054), 1, + aux_sym_as_type_clause_token1, + STATE(12086), 1, + sym_as_type_clause, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327438] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(25895), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327449] = 3, + ACTIONS(6127), 1, + anon_sym_LPAREN, + STATE(1956), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327460] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23512), 1, + sym_identifier, + STATE(5227), 1, + sym_variable_declarator, + [327473] = 3, + ACTIONS(7444), 1, + anon_sym_LPAREN, + STATE(3352), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327484] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25897), 1, + sym_identifier, + ACTIONS(25899), 1, + sym_number_literal, + [327497] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23681), 1, + sym_identifier, + STATE(5224), 1, + sym_variable_declarator, + [327510] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25901), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327521] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25648), 1, + sym_identifier, + STATE(5226), 1, + sym_const_declarator, + [327534] = 3, + ACTIONS(5691), 1, + anon_sym_LPAREN, + STATE(1231), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327545] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25903), 1, + sym_identifier, + ACTIONS(25905), 1, + aux_sym_dotted_type_expression_token1, + [327558] = 3, + ACTIONS(5647), 1, + anon_sym_LPAREN, + STATE(1059), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327569] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25907), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327580] = 3, + ACTIONS(6644), 1, + anon_sym_LPAREN, + STATE(2152), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327591] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25909), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327602] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25911), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327613] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23356), 1, + sym_identifier, + STATE(4865), 1, + sym_variable_declarator, + [327626] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25823), 1, + sym_identifier, + STATE(7658), 1, + sym_const_declarator, + [327639] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(25913), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327650] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25915), 1, + sym_identifier, + ACTIONS(25917), 1, + aux_sym_dotted_type_expression_token1, + [327663] = 3, + ACTIONS(25712), 1, + anon_sym_LPAREN, + STATE(6061), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327674] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23512), 1, + sym_identifier, + STATE(5256), 1, + sym_variable_declarator, + [327687] = 3, + ACTIONS(25821), 1, + anon_sym_LPAREN, + STATE(5025), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327698] = 3, + ACTIONS(25919), 1, + aux_sym_on_goto_statement_token2, + ACTIONS(25921), 1, + aux_sym_on_error_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327709] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25923), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [327718] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25925), 1, + sym_identifier, + ACTIONS(25927), 1, + sym_number_literal, + [327731] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25929), 2, + sym_newline, + anon_sym_COLON, + [327740] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25931), 1, + sym_identifier, + ACTIONS(25933), 1, + aux_sym_dotted_type_expression_token1, + [327753] = 3, + ACTIONS(25935), 1, + aux_sym__for_header_token2, + ACTIONS(25937), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327764] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25939), 1, + sym_identifier, + ACTIONS(25941), 1, + aux_sym_dotted_type_expression_token1, + [327777] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(25943), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327788] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25945), 1, + sym_identifier, + ACTIONS(25947), 1, + aux_sym_dotted_type_expression_token1, + [327801] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25949), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [327810] = 3, + ACTIONS(6196), 1, + anon_sym_LPAREN, + STATE(1828), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327821] = 3, + ACTIONS(25951), 1, + aux_sym__for_header_token2, + ACTIONS(25953), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327832] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21886), 1, + sym_identifier, + STATE(4294), 1, + sym_variable_declarator, + [327845] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25955), 1, + sym_identifier, + ACTIONS(25957), 1, + aux_sym_dotted_type_expression_token1, + [327858] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25769), 1, + sym_identifier, + STATE(4297), 1, + sym_const_declarator, + [327871] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25959), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327882] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(25961), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327893] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25963), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327904] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25965), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [327913] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25967), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327924] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(25969), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327935] = 3, + ACTIONS(25971), 1, + aux_sym_frm_begin_block_token2, + STATE(3920), 1, + sym_end_sub_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327946] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(25973), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327957] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25975), 1, + sym_identifier, + STATE(4909), 1, + sym_letter_range, + [327970] = 3, + ACTIONS(25977), 1, + aux_sym_on_goto_statement_token2, + ACTIONS(25979), 1, + aux_sym_on_error_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [327981] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25981), 1, + sym_identifier, + ACTIONS(25983), 1, + aux_sym_dotted_type_expression_token1, + [327994] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25985), 1, + sym_identifier, + ACTIONS(25987), 1, + aux_sym_dotted_type_expression_token1, + [328007] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(25989), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [328016] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25991), 1, + sym_identifier, + ACTIONS(25993), 1, + aux_sym_dotted_type_expression_token1, + [328029] = 3, + ACTIONS(25995), 1, + aux_sym__for_header_token2, + ACTIONS(25997), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328040] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25797), 1, + sym_identifier, + STATE(5858), 1, + sym_const_declarator, + [328053] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23512), 1, + sym_identifier, + STATE(5257), 1, + sym_variable_declarator, + [328066] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25785), 1, + sym_identifier, + STATE(5258), 1, + sym_const_declarator, + [328079] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25999), 1, + sym_identifier, + ACTIONS(26001), 1, + sym_number_literal, + [328092] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26003), 1, + sym_identifier, + STATE(7667), 1, + sym_letter_range, + [328105] = 3, + ACTIONS(8060), 1, + anon_sym_LPAREN, + STATE(3536), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328116] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26005), 1, + sym_identifier, + ACTIONS(26007), 1, + aux_sym_dotted_type_expression_token1, + [328129] = 3, + ACTIONS(5168), 1, + anon_sym_LPAREN, + STATE(2225), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328140] = 3, + ACTIONS(26009), 1, + aux_sym__for_header_token2, + ACTIONS(26011), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328151] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(26013), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328162] = 3, + ACTIONS(26015), 1, + anon_sym_LPAREN, + STATE(3845), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328173] = 3, + ACTIONS(26017), 1, + aux_sym_frm_begin_block_token2, + STATE(4461), 1, + sym_end_property_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328184] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26019), 1, + sym_identifier, + ACTIONS(26021), 1, + aux_sym_dotted_type_expression_token1, + [328197] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26023), 1, + sym_identifier, + ACTIONS(26025), 1, + aux_sym_dotted_type_expression_token1, + [328210] = 3, + ACTIONS(4246), 1, + anon_sym_LPAREN, + STATE(794), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328221] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(26027), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328232] = 3, + ACTIONS(25863), 1, + aux_sym_frm_begin_block_token2, + STATE(8005), 1, + sym_end_property_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328243] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26029), 1, + sym_identifier, + ACTIONS(26031), 1, + sym_number_literal, + [328256] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(26033), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328267] = 3, + ACTIONS(5658), 1, + anon_sym_LPAREN, + STATE(1250), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328278] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(26035), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328289] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(26037), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328300] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26039), 2, + sym_newline, + anon_sym_COLON, + [328309] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22026), 1, + sym_identifier, + STATE(3544), 1, + sym_variable_declarator, + [328322] = 3, + ACTIONS(20119), 1, + anon_sym_LPAREN, + STATE(10137), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328333] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26041), 2, + sym_paramarray_modifier, + sym_identifier, + [328344] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26043), 1, + sym_identifier, + ACTIONS(26045), 1, + aux_sym_dotted_type_expression_token1, + [328357] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(26047), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328368] = 3, + ACTIONS(4757), 1, + anon_sym_LPAREN, + STATE(1701), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328379] = 3, + ACTIONS(4933), 1, + anon_sym_LPAREN, + STATE(646), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328390] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26049), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [328399] = 3, + ACTIONS(26051), 1, + aux_sym_on_goto_statement_token2, + ACTIONS(26053), 1, + aux_sym_on_error_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328410] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23356), 1, + sym_identifier, + STATE(4872), 1, + sym_variable_declarator, + [328423] = 3, + ACTIONS(26055), 1, + aux_sym_on_goto_statement_token2, + ACTIONS(26057), 1, + aux_sym_on_error_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328434] = 3, + ACTIONS(26059), 1, + aux_sym__for_header_token2, + ACTIONS(26061), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328445] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(8682), 2, + aux_sym__for_header_token2, + anon_sym_DASH, + [328454] = 3, + ACTIONS(26063), 1, + aux_sym__for_header_token2, + ACTIONS(26065), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328465] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23456), 1, + sym_identifier, + STATE(5475), 1, + sym_variable_declarator, + [328478] = 3, + ACTIONS(4660), 1, + anon_sym_LPAREN, + STATE(523), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328489] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26067), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [328498] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21792), 1, + sym_identifier, + STATE(7657), 1, + sym_variable_declarator, + [328511] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23356), 1, + sym_identifier, + STATE(4866), 1, + sym_variable_declarator, + [328524] = 3, + ACTIONS(26069), 1, + aux_sym__for_header_token2, + ACTIONS(26071), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328535] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25536), 1, + sym_identifier, + STATE(4867), 1, + sym_const_declarator, + [328548] = 3, + ACTIONS(26073), 1, + aux_sym_file_access_token1, + ACTIONS(26075), 1, + aux_sym_file_access_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328559] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26077), 1, + sym_identifier, + STATE(5747), 1, + sym_letter_range, + [328572] = 3, + ACTIONS(5015), 1, + anon_sym_LPAREN, + STATE(710), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328583] = 3, + ACTIONS(11257), 1, + anon_sym_LPAREN, + STATE(7356), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328594] = 3, + ACTIONS(7537), 1, + anon_sym_LPAREN, + STATE(3393), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328605] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26079), 1, + sym_identifier, + ACTIONS(26081), 1, + aux_sym_dotted_type_expression_token1, + [328618] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26083), 1, + sym_identifier, + ACTIONS(26085), 1, + aux_sym_dotted_type_expression_token1, + [328631] = 3, + ACTIONS(6178), 1, + anon_sym_LPAREN, + STATE(1513), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328642] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22026), 1, + sym_identifier, + STATE(3681), 1, + sym_variable_declarator, + [328655] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25668), 1, + sym_identifier, + STATE(3682), 1, + sym_const_declarator, + [328668] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26087), 1, + sym_identifier, + STATE(3685), 1, + sym_letter_range, + [328681] = 3, + ACTIONS(5544), 1, + anon_sym_LPAREN, + STATE(2403), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328692] = 3, + ACTIONS(5807), 1, + anon_sym_LPAREN, + STATE(2888), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328703] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25823), 1, + sym_identifier, + STATE(7669), 1, + sym_const_declarator, + [328716] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26089), 1, + sym_identifier, + ACTIONS(26091), 1, + sym_number_literal, + [328729] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26093), 1, + sym_identifier, + STATE(6838), 1, + sym_const_declarator, + [328742] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26095), 1, + sym_identifier, + ACTIONS(26097), 1, + aux_sym_dotted_type_expression_token1, + [328755] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26099), 1, + sym_identifier, + ACTIONS(26101), 1, + aux_sym_dotted_type_expression_token1, + [328768] = 3, + ACTIONS(26103), 1, + anon_sym_LPAREN, + STATE(5972), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328779] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23565), 1, + sym_identifier, + STATE(5382), 1, + sym_variable_declarator, + [328792] = 3, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(26105), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328803] = 3, + ACTIONS(25578), 1, + aux_sym_frm_begin_block_token2, + STATE(3960), 1, + sym_end_property_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328814] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26107), 1, + sym_identifier, + ACTIONS(26109), 1, + aux_sym_dotted_type_expression_token1, + [328827] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26111), 2, + sym_newline, + anon_sym_COLON, + [328836] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26113), 2, + sym_newline, + anon_sym_COLON, + [328845] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26115), 1, + sym_identifier, + ACTIONS(26117), 1, + sym_number_literal, + [328858] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26119), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328869] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26121), 1, + sym_identifier, + ACTIONS(26123), 1, + sym_number_literal, + [328882] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26125), 1, + sym_identifier, + ACTIONS(26127), 1, + sym_number_literal, + [328895] = 3, + ACTIONS(25522), 1, + anon_sym_LPAREN, + STATE(6692), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328906] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23565), 1, + sym_identifier, + STATE(5812), 1, + sym_variable_declarator, + [328919] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26129), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328930] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22026), 1, + sym_identifier, + STATE(3678), 1, + sym_variable_declarator, + [328943] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26131), 1, + sym_identifier, + ACTIONS(26133), 1, + aux_sym_dotted_type_expression_token1, + [328956] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26135), 1, + sym_identifier, + ACTIONS(26137), 1, + sym_number_literal, + [328969] = 3, + ACTIONS(6278), 1, + anon_sym_LPAREN, + STATE(2057), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328980] = 3, + ACTIONS(25578), 1, + aux_sym_frm_begin_block_token2, + STATE(3961), 1, + sym_end_property_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [328991] = 3, + ACTIONS(5980), 1, + anon_sym_LPAREN, + STATE(1672), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329002] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26139), 1, + sym_identifier, + ACTIONS(26141), 1, + aux_sym_dotted_type_expression_token1, + [329015] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25668), 1, + sym_identifier, + STATE(3764), 1, + sym_const_declarator, + [329028] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26143), 1, + sym_identifier, + ACTIONS(26145), 1, + aux_sym_dotted_type_expression_token1, + [329041] = 3, + ACTIONS(25863), 1, + aux_sym_frm_begin_block_token2, + STATE(8006), 1, + sym_end_property_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329052] = 3, + ACTIONS(5504), 1, + anon_sym_LPAREN, + STATE(976), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329063] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23306), 1, + sym_identifier, + STATE(6075), 1, + sym_variable_declarator, + [329076] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26147), 1, + sym_identifier, + ACTIONS(26149), 1, + aux_sym_dotted_type_expression_token1, + [329089] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26093), 1, + sym_identifier, + STATE(5914), 1, + sym_const_declarator, + [329102] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26151), 2, + sym_newline, + anon_sym_COLON, + [329111] = 3, + ACTIONS(26103), 1, + anon_sym_LPAREN, + STATE(6035), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329122] = 3, + ACTIONS(26017), 1, + aux_sym_frm_begin_block_token2, + STATE(4463), 1, + sym_end_property_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329133] = 3, + ACTIONS(26103), 1, + anon_sym_LPAREN, + STATE(6036), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329144] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26153), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329155] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26155), 1, + sym_identifier, + ACTIONS(26157), 1, + aux_sym_dotted_type_expression_token1, + [329168] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26159), 2, + sym_newline, + anon_sym_COLON, + [329177] = 3, + ACTIONS(5849), 1, + anon_sym_LPAREN, + STATE(1252), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329188] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26161), 1, + sym_identifier, + ACTIONS(26163), 1, + sym_number_literal, + [329201] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26165), 1, + sym_identifier, + ACTIONS(26167), 1, + aux_sym_dotted_type_expression_token1, + [329214] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26169), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329225] = 3, + ACTIONS(26171), 1, + aux_sym_as_type_clause_token1, + ACTIONS(26173), 1, + aux_sym_file_access_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329236] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26175), 1, + sym_identifier, + ACTIONS(26177), 1, + aux_sym_dotted_type_expression_token1, + [329249] = 3, + ACTIONS(11201), 1, + anon_sym_LPAREN, + STATE(7287), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329260] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25817), 1, + sym_identifier, + STATE(5928), 1, + sym_letter_range, + [329273] = 3, + ACTIONS(26015), 1, + anon_sym_LPAREN, + STATE(3733), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329284] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26179), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329295] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22026), 1, + sym_identifier, + STATE(3546), 1, + sym_variable_declarator, + [329308] = 3, + ACTIONS(26015), 1, + anon_sym_LPAREN, + STATE(3734), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329319] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26003), 1, + sym_identifier, + STATE(7691), 1, + sym_letter_range, + [329332] = 3, + ACTIONS(25566), 1, + anon_sym_LPAREN, + STATE(5862), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329343] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23512), 1, + sym_identifier, + STATE(6023), 1, + sym_variable_declarator, + [329356] = 3, + ACTIONS(5550), 1, + anon_sym_LPAREN, + STATE(2714), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329367] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26181), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329378] = 3, + ACTIONS(26103), 1, + anon_sym_LPAREN, + STATE(6112), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329389] = 3, + ACTIONS(5647), 1, + anon_sym_LPAREN, + STATE(1247), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329400] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25518), 1, + sym_identifier, + STATE(6860), 1, + sym_letter_range, + [329413] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23565), 1, + sym_identifier, + STATE(5453), 1, + sym_variable_declarator, + [329426] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26183), 2, + sym_newline, + anon_sym_COLON, + [329435] = 3, + ACTIONS(6919), 1, + anon_sym_LPAREN, + STATE(2414), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329446] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26185), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [329455] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26187), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [329464] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26189), 1, + sym_identifier, + ACTIONS(26191), 1, + aux_sym_dotted_type_expression_token1, + [329477] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26193), 2, + sym_newline, + anon_sym_COLON, + [329486] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26195), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329497] = 3, + ACTIONS(25592), 1, + aux_sym_frm_begin_block_token2, + STATE(3934), 1, + sym_end_function_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329508] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26197), 1, + aux_sym__property_get_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329519] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26199), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329530] = 3, + ACTIONS(7669), 1, + anon_sym_LPAREN, + STATE(3173), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329541] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26201), 1, + sym_identifier, + ACTIONS(26203), 1, + aux_sym_dotted_type_expression_token1, + [329554] = 3, + ACTIONS(26205), 1, + anon_sym_LPAREN, + STATE(4316), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329565] = 3, + ACTIONS(7605), 1, + anon_sym_LPAREN, + STATE(3207), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329576] = 3, + ACTIONS(5760), 1, + anon_sym_LPAREN, + STATE(1449), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329587] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26207), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329598] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26209), 1, + sym_identifier, + ACTIONS(26211), 1, + aux_sym_dotted_type_expression_token1, + [329611] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25785), 1, + sym_identifier, + STATE(6027), 1, + sym_const_declarator, + [329624] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23356), 1, + sym_identifier, + STATE(5059), 1, + sym_variable_declarator, + [329637] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26213), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [329646] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26215), 1, + sym_identifier, + ACTIONS(26217), 1, + aux_sym_dotted_type_expression_token1, + [329659] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25789), 1, + sym_identifier, + STATE(4304), 1, + sym_letter_range, + [329672] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23456), 1, + sym_identifier, + STATE(6273), 1, + sym_variable_declarator, + [329685] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23306), 1, + sym_identifier, + STATE(5947), 1, + sym_variable_declarator, + [329698] = 3, + ACTIONS(26219), 1, + aux_sym_on_goto_statement_token2, + ACTIONS(26221), 1, + aux_sym_on_error_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329709] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25825), 1, + sym_identifier, + STATE(5935), 1, + sym_letter_range, + [329722] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26223), 2, + sym_newline, + anon_sym_COLON, + [329731] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26225), 1, + sym_identifier, + ACTIONS(26227), 1, + sym_number_literal, + [329744] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26229), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329755] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26231), 1, + sym_identifier, + ACTIONS(26233), 1, + sym_number_literal, + [329768] = 3, + ACTIONS(26235), 1, + aux_sym__for_header_token2, + ACTIONS(26237), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329779] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26239), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329790] = 3, + ACTIONS(7472), 1, + anon_sym_LPAREN, + STATE(2930), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329801] = 3, + ACTIONS(5438), 1, + anon_sym_LPAREN, + STATE(815), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329812] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23731), 1, + sym_identifier, + STATE(12134), 1, + sym_variable_declarator, + [329825] = 3, + ACTIONS(7663), 1, + anon_sym_LPAREN, + STATE(3177), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329836] = 3, + ACTIONS(4645), 1, + anon_sym_LPAREN, + STATE(478), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329847] = 3, + ACTIONS(23925), 1, + anon_sym_LPAREN, + STATE(13484), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329858] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23565), 1, + sym_identifier, + STATE(5454), 1, + sym_variable_declarator, + [329871] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26241), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329882] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23456), 1, + sym_identifier, + STATE(5476), 1, + sym_variable_declarator, + [329895] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25692), 1, + sym_identifier, + STATE(5479), 1, + sym_const_declarator, + [329908] = 3, + ACTIONS(26243), 1, + aux_sym_frm_begin_block_token2, + STATE(7967), 1, + sym_end_sub_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [329919] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26087), 1, + sym_identifier, + STATE(3714), 1, + sym_letter_range, + [329932] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26245), 1, + sym_identifier, + STATE(5484), 1, + sym_letter_range, + [329945] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26247), 1, + sym_identifier, + ACTIONS(26249), 1, + sym_number_literal, + [329958] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23490), 1, + sym_identifier, + STATE(5787), 1, + sym_variable_declarator, + [329971] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23490), 1, + sym_identifier, + STATE(5789), 1, + sym_variable_declarator, + [329984] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25797), 1, + sym_identifier, + STATE(5790), 1, + sym_const_declarator, + [329997] = 3, + ACTIONS(20093), 1, + anon_sym_LPAREN, + STATE(10071), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330008] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23565), 1, + sym_identifier, + STATE(5458), 1, + sym_variable_declarator, + [330021] = 3, + ACTIONS(7870), 1, + anon_sym_LPAREN, + STATE(10051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330032] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26251), 1, + sym_identifier, + ACTIONS(26253), 1, + aux_sym_dotted_type_expression_token1, + [330045] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26255), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330056] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26257), 1, + sym_identifier, + ACTIONS(26259), 1, + aux_sym_dotted_type_expression_token1, + [330069] = 3, + ACTIONS(26261), 1, + aux_sym__for_header_token2, + ACTIONS(26263), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330080] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26265), 1, + sym_identifier, + ACTIONS(26267), 1, + aux_sym_dotted_type_expression_token1, + [330093] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26269), 1, + sym_identifier, + ACTIONS(26271), 1, + sym_number_literal, + [330106] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26273), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [330115] = 3, + ACTIONS(23925), 1, + anon_sym_LPAREN, + STATE(13111), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330126] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26275), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [330135] = 3, + ACTIONS(25522), 1, + anon_sym_LPAREN, + STATE(6896), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330146] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26277), 1, + sym_identifier, + ACTIONS(26279), 1, + aux_sym_dotted_type_expression_token1, + [330159] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26281), 1, + sym_identifier, + ACTIONS(26283), 1, + aux_sym_dotted_type_expression_token1, + [330172] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23356), 1, + sym_identifier, + STATE(4873), 1, + sym_variable_declarator, + [330185] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23356), 1, + sym_identifier, + STATE(4874), 1, + sym_variable_declarator, + [330198] = 3, + ACTIONS(20164), 1, + anon_sym_LPAREN, + STATE(10156), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330209] = 3, + ACTIONS(26205), 1, + anon_sym_LPAREN, + STATE(4219), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330220] = 3, + ACTIONS(26205), 1, + anon_sym_LPAREN, + STATE(4220), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330231] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25520), 1, + sym_identifier, + STATE(5459), 1, + sym_const_declarator, + [330244] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26285), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [330253] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23306), 1, + sym_identifier, + STATE(5964), 1, + sym_variable_declarator, + [330266] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26287), 1, + sym_identifier, + ACTIONS(26289), 1, + aux_sym_dotted_type_expression_token1, + [330279] = 3, + ACTIONS(23925), 1, + anon_sym_LPAREN, + STATE(13161), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330290] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26093), 1, + sym_identifier, + STATE(5966), 1, + sym_const_declarator, + [330303] = 3, + ACTIONS(4246), 1, + anon_sym_LPAREN, + STATE(992), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330314] = 3, + ACTIONS(25578), 1, + aux_sym_frm_begin_block_token2, + STATE(3937), 1, + sym_end_property_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330325] = 3, + ACTIONS(26291), 1, + aux_sym_frm_begin_block_token2, + STATE(4324), 1, + sym_end_sub_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330336] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(26293), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330347] = 3, + ACTIONS(6013), 1, + anon_sym_LPAREN, + STATE(1887), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330358] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26295), 1, + sym_identifier, + ACTIONS(26297), 1, + aux_sym_dotted_type_expression_token1, + [330371] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26299), 1, + sym_identifier, + ACTIONS(26301), 1, + aux_sym_dotted_type_expression_token1, + [330384] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(26303), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330395] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26305), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330406] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(26307), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330417] = 3, + ACTIONS(23925), 1, + anon_sym_LPAREN, + STATE(13198), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330428] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26309), 1, + sym_identifier, + ACTIONS(26311), 1, + sym_number_literal, + [330441] = 3, + ACTIONS(25566), 1, + anon_sym_LPAREN, + STATE(5944), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330452] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23490), 1, + sym_identifier, + STATE(5751), 1, + sym_variable_declarator, + [330465] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(26313), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330476] = 3, + ACTIONS(25566), 1, + anon_sym_LPAREN, + STATE(5955), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330487] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26315), 2, + sym_newline, + anon_sym_COLON, + [330496] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26317), 1, + sym_identifier, + ACTIONS(26319), 1, + sym_number_literal, + [330509] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26321), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [330518] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26323), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [330527] = 3, + ACTIONS(6228), 1, + anon_sym_LPAREN, + STATE(1582), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330538] = 3, + ACTIONS(23925), 1, + anon_sym_LPAREN, + STATE(13224), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330549] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26325), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330560] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25536), 1, + sym_identifier, + STATE(5062), 1, + sym_const_declarator, + [330573] = 3, + ACTIONS(26327), 1, + anon_sym_LPAREN, + STATE(6013), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330584] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26329), 1, + sym_identifier, + ACTIONS(26331), 1, + aux_sym_dotted_type_expression_token1, + [330597] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25692), 1, + sym_identifier, + STATE(6284), 1, + sym_const_declarator, + [330610] = 3, + ACTIONS(26333), 1, + aux_sym_frm_begin_block_token2, + STATE(4582), 1, + sym_end_function_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330621] = 3, + ACTIONS(6095), 1, + anon_sym_LPAREN, + STATE(1705), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330632] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26335), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330643] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26337), 1, + aux_sym__property_get_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330654] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26339), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330665] = 3, + ACTIONS(5524), 1, + anon_sym_LPAREN, + STATE(2451), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330676] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26341), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [330685] = 3, + ACTIONS(23925), 1, + anon_sym_LPAREN, + STATE(13255), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330696] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26245), 1, + sym_identifier, + STATE(5843), 1, + sym_letter_range, + [330709] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26343), 1, + sym_identifier, + ACTIONS(26345), 1, + aux_sym_dotted_type_expression_token1, + [330722] = 3, + ACTIONS(6022), 1, + anon_sym_LPAREN, + STATE(1892), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330733] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26347), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [330742] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26349), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330753] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26351), 1, + sym_identifier, + ACTIONS(26353), 1, + aux_sym_dotted_type_expression_token1, + [330766] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26355), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330777] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26357), 1, + sym_identifier, + ACTIONS(26359), 1, + aux_sym_dotted_type_expression_token1, + [330790] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26361), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [330799] = 3, + ACTIONS(26017), 1, + aux_sym_frm_begin_block_token2, + STATE(4585), 1, + sym_end_property_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330810] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26363), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [330819] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26077), 1, + sym_identifier, + STATE(6217), 1, + sym_letter_range, + [330832] = 3, + ACTIONS(26205), 1, + anon_sym_LPAREN, + STATE(4239), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330843] = 3, + ACTIONS(23925), 1, + anon_sym_LPAREN, + STATE(13292), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330854] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26365), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [330863] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26367), 2, + sym_newline, + anon_sym_COLON, + [330872] = 3, + ACTIONS(26017), 1, + aux_sym_frm_begin_block_token2, + STATE(4587), 1, + sym_end_property_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330883] = 3, + ACTIONS(26327), 1, + anon_sym_LPAREN, + STATE(5908), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330894] = 3, + ACTIONS(26327), 1, + anon_sym_LPAREN, + STATE(5909), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330905] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26369), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330916] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26371), 1, + sym_identifier, + ACTIONS(26373), 1, + aux_sym_dotted_type_expression_token1, + [330929] = 3, + ACTIONS(26375), 1, + aux_sym_frm_begin_block_token2, + STATE(8003), 1, + sym_end_function_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330940] = 3, + ACTIONS(23925), 1, + anon_sym_LPAREN, + STATE(13319), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330951] = 3, + ACTIONS(26243), 1, + aux_sym_frm_begin_block_token2, + STATE(7974), 1, + sym_end_sub_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330962] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26377), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330973] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26379), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [330984] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23731), 1, + sym_identifier, + STATE(12117), 1, + sym_variable_declarator, + [330997] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23731), 1, + sym_identifier, + STATE(12139), 1, + sym_variable_declarator, + [331010] = 3, + ACTIONS(20093), 1, + anon_sym_LPAREN, + STATE(10390), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331021] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26381), 1, + sym_identifier, + ACTIONS(26383), 1, + sym_number_literal, + [331034] = 3, + ACTIONS(7550), 1, + anon_sym_LPAREN, + STATE(3203), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331045] = 3, + ACTIONS(20093), 1, + anon_sym_LPAREN, + STATE(10153), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331056] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26385), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [331065] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23490), 1, + sym_identifier, + STATE(5786), 1, + sym_variable_declarator, + [331078] = 3, + ACTIONS(26017), 1, + aux_sym_frm_begin_block_token2, + STATE(4589), 1, + sym_end_property_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331089] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25750), 1, + sym_identifier, + STATE(12124), 1, + sym_const_declarator, + [331102] = 3, + ACTIONS(23925), 1, + anon_sym_LPAREN, + STATE(13353), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331113] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26387), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331124] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26389), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [331133] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26391), 1, + sym_identifier, + ACTIONS(26393), 1, + sym_number_literal, + [331146] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26395), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331157] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26397), 1, + sym_identifier, + ACTIONS(26399), 1, + aux_sym_dotted_type_expression_token1, + [331170] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26401), 1, + aux_sym__property_get_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331181] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26403), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331192] = 3, + ACTIONS(5836), 1, + anon_sym_LPAREN, + STATE(1409), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331203] = 3, + ACTIONS(26327), 1, + anon_sym_LPAREN, + STATE(5897), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331214] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21792), 1, + sym_identifier, + STATE(7687), 1, + sym_variable_declarator, + [331227] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26405), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331238] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26407), 1, + sym_identifier, + ACTIONS(26409), 1, + aux_sym_dotted_type_expression_token1, + [331251] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26411), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331262] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26413), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [331271] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26415), 2, + sym_newline, + anon_sym_COLON, + [331280] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26417), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331291] = 3, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(26419), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331302] = 3, + ACTIONS(26375), 1, + aux_sym_frm_begin_block_token2, + STATE(7991), 1, + sym_end_function_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331313] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26421), 1, + aux_sym__property_get_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331324] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26423), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331335] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26425), 1, + sym_identifier, + ACTIONS(26427), 1, + sym_number_literal, + [331348] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26429), 1, + sym_identifier, + ACTIONS(26431), 1, + sym_number_literal, + [331361] = 3, + ACTIONS(25863), 1, + aux_sym_frm_begin_block_token2, + STATE(7995), 1, + sym_end_property_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331372] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26433), 1, + sym_identifier, + ACTIONS(26435), 1, + sym_paramarray_modifier, + [331385] = 3, + ACTIONS(26015), 1, + anon_sym_LPAREN, + STATE(3777), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331396] = 3, + ACTIONS(5544), 1, + anon_sym_LPAREN, + STATE(2702), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331407] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26437), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [331416] = 3, + ACTIONS(25863), 1, + aux_sym_frm_begin_block_token2, + STATE(7997), 1, + sym_end_property_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331427] = 3, + ACTIONS(4350), 1, + anon_sym_LPAREN, + STATE(446), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331438] = 3, + ACTIONS(6498), 1, + anon_sym_LPAREN, + STATE(2100), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331449] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26439), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [331458] = 3, + ACTIONS(25863), 1, + aux_sym_frm_begin_block_token2, + STATE(7999), 1, + sym_end_property_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331469] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26441), 1, + sym_identifier, + ACTIONS(26443), 1, + aux_sym_dotted_type_expression_token1, + [331482] = 3, + ACTIONS(25578), 1, + aux_sym_frm_begin_block_token2, + STATE(3939), 1, + sym_end_property_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331493] = 3, + ACTIONS(7297), 1, + anon_sym_LPAREN, + STATE(3221), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331504] = 3, + ACTIONS(26445), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(26447), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331515] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26449), 1, + sym_identifier, + ACTIONS(26451), 1, + aux_sym_dotted_type_expression_token1, + [331528] = 3, + ACTIONS(26453), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(26455), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331539] = 3, + ACTIONS(6133), 1, + anon_sym_LPAREN, + STATE(1489), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331550] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26457), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331561] = 3, + ACTIONS(25971), 1, + aux_sym_frm_begin_block_token2, + STATE(3953), 1, + sym_end_sub_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331572] = 3, + ACTIONS(5613), 1, + anon_sym_LPAREN, + STATE(2647), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331583] = 3, + ACTIONS(5691), 1, + anon_sym_LPAREN, + STATE(1408), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331594] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26459), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331605] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26461), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331616] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26463), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331627] = 3, + ACTIONS(26465), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(26467), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331638] = 3, + ACTIONS(5760), 1, + anon_sym_LPAREN, + STATE(1287), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331649] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26469), 1, + aux_sym__property_get_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331660] = 3, + ACTIONS(26471), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(26473), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331671] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26475), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [331680] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26477), 2, + sym_newline, + anon_sym_COLON, + [331689] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23456), 1, + sym_identifier, + STATE(5547), 1, + sym_variable_declarator, + [331702] = 3, + ACTIONS(6030), 1, + anon_sym_LPAREN, + STATE(1922), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331713] = 3, + ACTIONS(26291), 1, + aux_sym_frm_begin_block_token2, + STATE(4411), 1, + sym_end_sub_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331724] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26479), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [331733] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23731), 1, + sym_identifier, + STATE(12097), 1, + sym_variable_declarator, + [331746] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26481), 1, + sym_identifier, + ACTIONS(26483), 1, + aux_sym_dotted_type_expression_token1, + [331759] = 3, + ACTIONS(4757), 1, + anon_sym_LPAREN, + STATE(1239), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331770] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23681), 1, + sym_identifier, + STATE(5262), 1, + sym_variable_declarator, + [331783] = 3, + ACTIONS(26333), 1, + aux_sym_frm_begin_block_token2, + STATE(4444), 1, + sym_end_function_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331794] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23681), 1, + sym_identifier, + STATE(5263), 1, + sym_variable_declarator, + [331807] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26485), 1, + sym_identifier, + ACTIONS(26487), 1, + aux_sym_dotted_type_expression_token1, + [331820] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(26489), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [331829] = 3, + ACTIONS(25528), 1, + anon_sym_LPAREN, + STATE(12254), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331840] = 3, + ACTIONS(26017), 1, + aux_sym_frm_begin_block_token2, + STATE(4453), 1, + sym_end_property_statement, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331851] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23306), 1, + sym_identifier, + STATE(6155), 1, + sym_variable_declarator, + [331864] = 3, + ACTIONS(25522), 1, + anon_sym_LPAREN, + STATE(6377), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331875] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23731), 1, + sym_identifier, + STATE(12179), 1, + sym_variable_declarator, + [331888] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25648), 1, + sym_identifier, + STATE(5264), 1, + sym_const_declarator, + [331901] = 3, + ACTIONS(5807), 1, + anon_sym_LPAREN, + STATE(3196), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331912] = 3, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26491), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331923] = 3, + ACTIONS(7453), 1, + anon_sym_LPAREN, + STATE(3280), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331934] = 3, + ACTIONS(4982), 1, + anon_sym_LPAREN, + STATE(667), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331945] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(22026), 1, + sym_identifier, + STATE(3529), 1, + sym_variable_declarator, + [331958] = 3, + ACTIONS(4933), 1, + anon_sym_LPAREN, + STATE(610), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331969] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(21886), 1, + sym_identifier, + STATE(4150), 1, + sym_variable_declarator, + [331982] = 3, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(26493), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [331993] = 3, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(26495), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332004] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25750), 1, + sym_identifier, + STATE(12181), 1, + sym_const_declarator, + [332017] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26497), 1, + sym_identifier, + ACTIONS(26499), 1, + aux_sym_dotted_type_expression_token1, + [332030] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26501), 1, + sym_identifier, + ACTIONS(26503), 1, + aux_sym_dotted_type_expression_token1, + [332043] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25769), 1, + sym_identifier, + STATE(4152), 1, + sym_const_declarator, + [332056] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(25975), 1, + sym_identifier, + STATE(4784), 1, + sym_letter_range, + [332069] = 3, + ACTIONS(20410), 1, + anon_sym_LPAREN, + STATE(10378), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332080] = 3, + ACTIONS(25528), 1, + anon_sym_LPAREN, + STATE(12291), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332091] = 3, + ACTIONS(25528), 1, + anon_sym_LPAREN, + STATE(12293), 1, + sym_coordinate_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332102] = 3, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(26505), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332113] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26507), 1, + sym_identifier, + ACTIONS(26509), 1, + sym_number_literal, + [332126] = 2, + ACTIONS(26511), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332134] = 2, + ACTIONS(26513), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332142] = 2, + ACTIONS(26515), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332150] = 2, + ACTIONS(26517), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332158] = 2, + ACTIONS(26519), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332166] = 2, + ACTIONS(26521), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332174] = 2, + ACTIONS(26523), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332182] = 2, + ACTIONS(26525), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332190] = 2, + ACTIONS(26527), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332198] = 2, + ACTIONS(26529), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332206] = 2, + ACTIONS(26531), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332214] = 2, + ACTIONS(23727), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332222] = 2, + ACTIONS(26533), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332230] = 2, + ACTIONS(26535), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332238] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26537), 1, + sym_identifier, + [332248] = 2, + ACTIONS(26539), 1, + aux_sym_type_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332256] = 2, + ACTIONS(26541), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332264] = 2, + ACTIONS(26543), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332272] = 2, + ACTIONS(26545), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332280] = 2, + ACTIONS(26547), 1, + aux_sym_enum_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332288] = 2, + ACTIONS(26549), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332296] = 2, + ACTIONS(26551), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332304] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26553), 1, + sym_identifier, + [332314] = 2, + ACTIONS(26555), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332322] = 2, + ACTIONS(26557), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332330] = 2, + ACTIONS(26559), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332338] = 2, + ACTIONS(26561), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332346] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26563), 1, + sym_identifier, + [332356] = 2, + ACTIONS(26565), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332364] = 2, + ACTIONS(26567), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332372] = 2, + ACTIONS(26569), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332380] = 2, + ACTIONS(26571), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332388] = 2, + ACTIONS(26573), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332396] = 2, + ACTIONS(26575), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332404] = 2, + ACTIONS(26577), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332412] = 2, + ACTIONS(26579), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332420] = 2, + ACTIONS(26581), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332428] = 2, + ACTIONS(26583), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332436] = 2, + ACTIONS(26585), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332444] = 2, + ACTIONS(26587), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332452] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26589), 1, + sym_identifier, + [332462] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26591), 1, + sym_identifier, + [332472] = 2, + ACTIONS(26593), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332480] = 2, + ACTIONS(26595), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332488] = 2, + ACTIONS(26597), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332496] = 2, + ACTIONS(23322), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332504] = 2, + ACTIONS(26599), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332512] = 2, + ACTIONS(26601), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332520] = 2, + ACTIONS(26603), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332528] = 2, + ACTIONS(26605), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332536] = 2, + ACTIONS(26607), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332544] = 2, + ACTIONS(26609), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332552] = 2, + ACTIONS(26611), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332560] = 2, + ACTIONS(23366), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332568] = 2, + ACTIONS(26613), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332576] = 2, + ACTIONS(26615), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332584] = 2, + ACTIONS(26617), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332592] = 2, + ACTIONS(26619), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332600] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26621), 1, + sym_identifier, + [332610] = 2, + ACTIONS(26623), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332618] = 2, + ACTIONS(26625), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332626] = 2, + ACTIONS(26627), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332634] = 2, + ACTIONS(26629), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332642] = 2, + ACTIONS(26631), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332650] = 2, + ACTIONS(26633), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332658] = 2, + ACTIONS(26635), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332666] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26637), 1, + sym_identifier, + [332676] = 2, + ACTIONS(26639), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332684] = 2, + ACTIONS(26421), 1, + aux_sym__property_get_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332692] = 2, + ACTIONS(26171), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332700] = 2, + ACTIONS(26641), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332708] = 2, + ACTIONS(26643), 1, + aux_sym_type_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332716] = 2, + ACTIONS(26645), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332724] = 2, + ACTIONS(26647), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332732] = 2, + ACTIONS(26649), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332740] = 2, + ACTIONS(26651), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332748] = 2, + ACTIONS(26653), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332756] = 2, + ACTIONS(21295), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332764] = 2, + ACTIONS(26655), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332772] = 2, + ACTIONS(26657), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332780] = 2, + ACTIONS(26659), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332788] = 2, + ACTIONS(26661), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332796] = 2, + ACTIONS(26663), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332804] = 2, + ACTIONS(26665), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332812] = 2, + ACTIONS(26667), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332820] = 2, + ACTIONS(26669), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332828] = 2, + ACTIONS(26671), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332836] = 2, + ACTIONS(26673), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332844] = 2, + ACTIONS(26675), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332852] = 2, + ACTIONS(26677), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332860] = 2, + ACTIONS(26679), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332868] = 2, + ACTIONS(21558), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332876] = 2, + ACTIONS(26681), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332884] = 2, + ACTIONS(26683), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332892] = 2, + ACTIONS(26685), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332900] = 2, + ACTIONS(26687), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332908] = 2, + ACTIONS(26689), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332916] = 2, + ACTIONS(26691), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332924] = 2, + ACTIONS(26693), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332932] = 2, + ACTIONS(26695), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332940] = 2, + ACTIONS(26697), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332948] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26699), 1, + sym_identifier, + [332958] = 2, + ACTIONS(26701), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332966] = 2, + ACTIONS(26703), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332974] = 2, + ACTIONS(26705), 1, + aux_sym_enum_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332982] = 2, + ACTIONS(26707), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [332990] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26709), 1, + sym_identifier, + [333000] = 2, + ACTIONS(26711), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333008] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26713), 1, + sym_identifier, + [333018] = 2, + ACTIONS(26715), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333026] = 2, + ACTIONS(26717), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333034] = 2, + ACTIONS(26719), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333042] = 2, + ACTIONS(26721), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333050] = 2, + ACTIONS(26723), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333058] = 2, + ACTIONS(26725), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333066] = 2, + ACTIONS(26727), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333074] = 2, + ACTIONS(26729), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333082] = 2, + ACTIONS(26731), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333090] = 2, + ACTIONS(26733), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333098] = 2, + ACTIONS(26735), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333106] = 2, + ACTIONS(26737), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333114] = 2, + ACTIONS(26739), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333122] = 2, + ACTIONS(26741), 1, + sym_number_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333130] = 2, + ACTIONS(26743), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333138] = 2, + ACTIONS(26745), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333146] = 2, + ACTIONS(26747), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333154] = 2, + ACTIONS(26749), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333162] = 2, + ACTIONS(26751), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333170] = 2, + ACTIONS(26753), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333178] = 2, + ACTIONS(26755), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333186] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26757), 1, + sym_identifier, + [333196] = 2, + ACTIONS(26759), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333204] = 2, + ACTIONS(26761), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333212] = 2, + ACTIONS(26763), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333220] = 2, + ACTIONS(26765), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333228] = 2, + ACTIONS(26767), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333236] = 2, + ACTIONS(26769), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333244] = 2, + ACTIONS(26771), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333252] = 2, + ACTIONS(26773), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333260] = 2, + ACTIONS(26775), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333268] = 2, + ACTIONS(26777), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333276] = 2, + ACTIONS(26779), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333284] = 2, + ACTIONS(21626), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333292] = 2, + ACTIONS(26781), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333300] = 2, + ACTIONS(26783), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333308] = 2, + ACTIONS(26785), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333316] = 2, + ACTIONS(26787), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333324] = 2, + ACTIONS(26789), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333332] = 2, + ACTIONS(26791), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333340] = 2, + ACTIONS(26793), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333348] = 2, + ACTIONS(26795), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333356] = 2, + ACTIONS(26797), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333364] = 2, + ACTIONS(26799), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333372] = 2, + ACTIONS(26801), 1, + sym_number_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333380] = 2, + ACTIONS(24936), 1, + aux_sym_option_statement_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333388] = 2, + ACTIONS(26803), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333396] = 2, + ACTIONS(26805), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333404] = 2, + ACTIONS(24936), 1, + sym_number_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333412] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26807), 1, + sym_identifier, + [333422] = 2, + ACTIONS(26809), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333430] = 2, + ACTIONS(26811), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333438] = 2, + ACTIONS(26813), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333446] = 2, + ACTIONS(26815), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333454] = 2, + ACTIONS(26817), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333462] = 2, + ACTIONS(26819), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333470] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26821), 1, + sym_identifier, + [333480] = 2, + ACTIONS(26823), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333488] = 2, + ACTIONS(26825), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333496] = 2, + ACTIONS(26827), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333504] = 2, + ACTIONS(26829), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333512] = 2, + ACTIONS(26831), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333520] = 2, + ACTIONS(26833), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333528] = 2, + ACTIONS(26835), 1, + aux_sym_type_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333536] = 2, + ACTIONS(26837), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333544] = 2, + ACTIONS(26839), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333552] = 2, + ACTIONS(26841), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333560] = 2, + ACTIONS(26843), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333568] = 2, + ACTIONS(26845), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333576] = 2, + ACTIONS(26847), 1, + aux_sym_enum_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333584] = 2, + ACTIONS(26849), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333592] = 2, + ACTIONS(26851), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333600] = 2, + ACTIONS(26853), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333608] = 2, + ACTIONS(26855), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333616] = 2, + ACTIONS(26857), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333624] = 2, + ACTIONS(26859), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333632] = 2, + ACTIONS(26861), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333640] = 2, + ACTIONS(26863), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333648] = 2, + ACTIONS(26865), 1, + aux_sym__for_each_header_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333656] = 2, + ACTIONS(26867), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333664] = 2, + ACTIONS(26869), 1, + aux_sym_type_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333672] = 2, + ACTIONS(26871), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333680] = 2, + ACTIONS(26873), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333688] = 2, + ACTIONS(26875), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333696] = 2, + ACTIONS(26877), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333704] = 2, + ACTIONS(26879), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333712] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26881), 1, + sym_identifier, + [333722] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26883), 1, + sym_identifier, + [333732] = 2, + ACTIONS(26885), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333740] = 2, + ACTIONS(26887), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333748] = 2, + ACTIONS(23446), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333756] = 2, + ACTIONS(26889), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333764] = 2, + ACTIONS(26891), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333772] = 2, + ACTIONS(26893), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333780] = 2, + ACTIONS(26895), 1, + aux_sym_type_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333788] = 2, + ACTIONS(26897), 1, + aux_sym_enum_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333796] = 2, + ACTIONS(26899), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333804] = 2, + ACTIONS(26901), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333812] = 2, + ACTIONS(26903), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333820] = 2, + ACTIONS(26905), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333828] = 2, + ACTIONS(26907), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333836] = 2, + ACTIONS(26909), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333844] = 2, + ACTIONS(26911), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333852] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26913), 1, + sym_identifier, + [333862] = 2, + ACTIONS(26915), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333870] = 2, + ACTIONS(26917), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333878] = 2, + ACTIONS(26919), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333886] = 2, + ACTIONS(26921), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333894] = 2, + ACTIONS(26923), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333902] = 2, + ACTIONS(26925), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333910] = 2, + ACTIONS(26927), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333918] = 2, + ACTIONS(26929), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333926] = 2, + ACTIONS(26931), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333934] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26933), 1, + sym_identifier, + [333944] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26935), 1, + sym_identifier, + [333954] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26937), 1, + sym_identifier, + [333964] = 2, + ACTIONS(26939), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333972] = 2, + ACTIONS(26941), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333980] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26943), 1, + sym_identifier, + [333990] = 2, + ACTIONS(26945), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [333998] = 2, + ACTIONS(26947), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334006] = 2, + ACTIONS(26949), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334014] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(26951), 1, + sym_identifier, + [334024] = 2, + ACTIONS(26953), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334032] = 2, + ACTIONS(26955), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334040] = 2, + ACTIONS(26957), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334048] = 2, + ACTIONS(26959), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334056] = 2, + ACTIONS(26961), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334064] = 2, + ACTIONS(26963), 1, + aux_sym__property_get_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334072] = 2, + ACTIONS(26965), 1, + aux_sym_type_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334080] = 2, + ACTIONS(26967), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334088] = 2, + ACTIONS(26969), 1, + aux_sym_enum_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334096] = 2, + ACTIONS(26971), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334104] = 2, + ACTIONS(26973), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334112] = 2, + ACTIONS(26975), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334120] = 2, + ACTIONS(26977), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334128] = 2, + ACTIONS(26979), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334136] = 2, + ACTIONS(26981), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334144] = 2, + ACTIONS(26983), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334152] = 2, + ACTIONS(26985), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334160] = 2, + ACTIONS(26987), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334168] = 2, + ACTIONS(26989), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334176] = 2, + ACTIONS(26991), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334184] = 2, + ACTIONS(26993), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334192] = 2, + ACTIONS(26995), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334200] = 2, + ACTIONS(26997), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334208] = 2, + ACTIONS(26999), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334216] = 2, + ACTIONS(27001), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334224] = 2, + ACTIONS(27003), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334232] = 2, + ACTIONS(27005), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334240] = 2, + ACTIONS(27007), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334248] = 2, + ACTIONS(27009), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334256] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27011), 1, + sym_identifier, + [334266] = 2, + ACTIONS(27013), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334274] = 2, + ACTIONS(27015), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334282] = 2, + ACTIONS(27017), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334290] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27019), 1, + sym_identifier, + [334300] = 2, + ACTIONS(27021), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334308] = 2, + ACTIONS(27023), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334316] = 2, + ACTIONS(27025), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334324] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27027), 1, + sym_identifier, + [334334] = 2, + ACTIONS(27029), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334342] = 2, + ACTIONS(27031), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334350] = 2, + ACTIONS(27033), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334358] = 2, + ACTIONS(27035), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334366] = 2, + ACTIONS(27037), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334374] = 2, + ACTIONS(27039), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334382] = 2, + ACTIONS(27041), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334390] = 2, + ACTIONS(27043), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334398] = 2, + ACTIONS(27045), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334406] = 2, + ACTIONS(27047), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334414] = 2, + ACTIONS(27049), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334422] = 2, + ACTIONS(27051), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334430] = 2, + ACTIONS(27053), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334438] = 2, + ACTIONS(27055), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334446] = 2, + ACTIONS(27057), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334454] = 2, + ACTIONS(27059), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334462] = 2, + ACTIONS(27061), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334470] = 2, + ACTIONS(27063), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334478] = 2, + ACTIONS(27065), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334486] = 2, + ACTIONS(27067), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334494] = 2, + ACTIONS(27069), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334502] = 2, + ACTIONS(27071), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334510] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27073), 1, + sym_identifier, + [334520] = 2, + ACTIONS(27075), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334528] = 2, + ACTIONS(27077), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334536] = 2, + ACTIONS(27079), 1, + aux_sym_on_error_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334544] = 2, + ACTIONS(27081), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334552] = 2, + ACTIONS(27083), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334560] = 2, + ACTIONS(27085), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334568] = 2, + ACTIONS(26239), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334576] = 2, + ACTIONS(27087), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334584] = 2, + ACTIONS(27089), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334592] = 2, + ACTIONS(27091), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334600] = 2, + ACTIONS(27093), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334608] = 2, + ACTIONS(27095), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334616] = 2, + ACTIONS(27097), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334624] = 2, + ACTIONS(27099), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334632] = 2, + ACTIONS(23561), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334640] = 2, + ACTIONS(27101), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334648] = 2, + ACTIONS(27103), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334656] = 2, + ACTIONS(27105), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334664] = 2, + ACTIONS(27107), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334672] = 2, + ACTIONS(27109), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334680] = 2, + ACTIONS(27111), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334688] = 2, + ACTIONS(27113), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334696] = 2, + ACTIONS(27115), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334704] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27117), 1, + sym_identifier, + [334714] = 2, + ACTIONS(27119), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334722] = 2, + ACTIONS(27121), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334730] = 2, + ACTIONS(27123), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334738] = 2, + ACTIONS(27125), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334746] = 2, + ACTIONS(27127), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334754] = 2, + ACTIONS(27129), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334762] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27131), 1, + sym_identifier, + [334772] = 2, + ACTIONS(27133), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334780] = 2, + ACTIONS(27135), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334788] = 2, + ACTIONS(23579), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334796] = 2, + ACTIONS(27137), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334804] = 2, + ACTIONS(27139), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334812] = 2, + ACTIONS(27141), 1, + aux_sym_type_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334820] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27143), 1, + sym_identifier, + [334830] = 2, + ACTIONS(27145), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334838] = 2, + ACTIONS(27147), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334846] = 2, + ACTIONS(27149), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334854] = 2, + ACTIONS(27151), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334862] = 2, + ACTIONS(27153), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334870] = 2, + ACTIONS(27155), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334878] = 2, + ACTIONS(27157), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334886] = 2, + ACTIONS(27159), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334894] = 2, + ACTIONS(27161), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334902] = 2, + ACTIONS(27163), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334910] = 2, + ACTIONS(27165), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334918] = 2, + ACTIONS(27167), 1, + aux_sym_enum_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334926] = 2, + ACTIONS(27169), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334934] = 2, + ACTIONS(27171), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334942] = 2, + ACTIONS(27173), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334950] = 2, + ACTIONS(27175), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334958] = 2, + ACTIONS(27177), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334966] = 2, + ACTIONS(27179), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334974] = 2, + ACTIONS(27181), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334982] = 2, + ACTIONS(27183), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334990] = 2, + ACTIONS(27185), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [334998] = 2, + ACTIONS(27187), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335006] = 2, + ACTIONS(27189), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335014] = 2, + ACTIONS(27191), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335022] = 2, + ACTIONS(27193), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335030] = 2, + ACTIONS(27195), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335038] = 2, + ACTIONS(27197), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335046] = 2, + ACTIONS(27199), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335054] = 2, + ACTIONS(27201), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335062] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27203), 1, + sym_identifier, + [335072] = 2, + ACTIONS(27205), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335080] = 2, + ACTIONS(27207), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335088] = 2, + ACTIONS(27209), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335096] = 2, + ACTIONS(27211), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335104] = 2, + ACTIONS(27213), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335112] = 2, + ACTIONS(27215), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335120] = 2, + ACTIONS(27217), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335128] = 2, + ACTIONS(27219), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335136] = 2, + ACTIONS(27221), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335144] = 2, + ACTIONS(27223), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335152] = 2, + ACTIONS(27225), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335160] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27227), 1, + sym_identifier, + [335170] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27229), 1, + sym_identifier, + [335180] = 2, + ACTIONS(27231), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335188] = 2, + ACTIONS(27233), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335196] = 2, + ACTIONS(27235), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335204] = 2, + ACTIONS(27237), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335212] = 2, + ACTIONS(27239), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335220] = 2, + ACTIONS(27241), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335228] = 2, + ACTIONS(27243), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335236] = 2, + ACTIONS(27245), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335244] = 2, + ACTIONS(27247), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335252] = 2, + ACTIONS(27249), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335260] = 2, + ACTIONS(27251), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335268] = 2, + ACTIONS(27253), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335276] = 2, + ACTIONS(27255), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335284] = 2, + ACTIONS(27257), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335292] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27259), 1, + sym_identifier, + [335302] = 2, + ACTIONS(27261), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335310] = 2, + ACTIONS(27263), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335318] = 2, + ACTIONS(27265), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335326] = 2, + ACTIONS(27267), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335334] = 2, + ACTIONS(27269), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335342] = 2, + ACTIONS(27271), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335350] = 2, + ACTIONS(27273), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335358] = 2, + ACTIONS(27275), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335366] = 2, + ACTIONS(27277), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335374] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27279), 1, + sym_identifier, + [335384] = 2, + ACTIONS(27281), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335392] = 2, + ACTIONS(27283), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335400] = 2, + ACTIONS(27285), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335408] = 2, + ACTIONS(27287), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335416] = 2, + ACTIONS(27289), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335424] = 2, + ACTIONS(21305), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335432] = 2, + ACTIONS(27291), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335440] = 2, + ACTIONS(27293), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335448] = 2, + ACTIONS(27295), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335456] = 2, + ACTIONS(27297), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335464] = 2, + ACTIONS(27299), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335472] = 2, + ACTIONS(27301), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335480] = 2, + ACTIONS(27303), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335488] = 2, + ACTIONS(27305), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335496] = 2, + ACTIONS(27307), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335504] = 2, + ACTIONS(27309), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335512] = 2, + ACTIONS(23651), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335520] = 2, + ACTIONS(27311), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335528] = 2, + ACTIONS(27313), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335536] = 2, + ACTIONS(27315), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335544] = 2, + ACTIONS(27317), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335552] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27319), 1, + sym_identifier, + [335562] = 2, + ACTIONS(27321), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335570] = 2, + ACTIONS(27323), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335578] = 2, + ACTIONS(27325), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335586] = 2, + ACTIONS(27327), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335594] = 2, + ACTIONS(27329), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335602] = 2, + ACTIONS(27331), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335610] = 2, + ACTIONS(27333), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335618] = 2, + ACTIONS(27335), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335626] = 2, + ACTIONS(27337), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335634] = 2, + ACTIONS(23665), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335642] = 2, + ACTIONS(27339), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335650] = 2, + ACTIONS(27341), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335658] = 2, + ACTIONS(27343), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335666] = 2, + ACTIONS(27345), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335674] = 2, + ACTIONS(27347), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335682] = 2, + ACTIONS(27349), 1, + sym_number_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335690] = 2, + ACTIONS(27351), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335698] = 2, + ACTIONS(27353), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335706] = 2, + ACTIONS(27355), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335714] = 2, + ACTIONS(27357), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335722] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27359), 1, + sym_identifier, + [335732] = 2, + ACTIONS(27361), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335740] = 2, + ACTIONS(27363), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335748] = 2, + ACTIONS(27365), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335756] = 2, + ACTIONS(27367), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335764] = 2, + ACTIONS(27369), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335772] = 2, + ACTIONS(27371), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335780] = 2, + ACTIONS(27373), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335788] = 2, + ACTIONS(27375), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335796] = 2, + ACTIONS(27377), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335804] = 2, + ACTIONS(27379), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335812] = 2, + ACTIONS(27381), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335820] = 2, + ACTIONS(27383), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335828] = 2, + ACTIONS(27385), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335836] = 2, + ACTIONS(27387), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335844] = 2, + ACTIONS(27389), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335852] = 2, + ACTIONS(27391), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335860] = 2, + ACTIONS(27393), 1, + aux_sym_type_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335868] = 2, + ACTIONS(27395), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335876] = 2, + ACTIONS(27397), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335884] = 2, + ACTIONS(27399), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335892] = 2, + ACTIONS(27401), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335900] = 2, + ACTIONS(27403), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335908] = 2, + ACTIONS(27405), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335916] = 2, + ACTIONS(27407), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335924] = 2, + ACTIONS(27409), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335932] = 2, + ACTIONS(27411), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335940] = 2, + ACTIONS(27413), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335948] = 2, + ACTIONS(27415), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335956] = 2, + ACTIONS(27417), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335964] = 2, + ACTIONS(27419), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335972] = 2, + ACTIONS(27421), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335980] = 2, + ACTIONS(27423), 1, + aux_sym_enum_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335988] = 2, + ACTIONS(27425), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [335996] = 2, + ACTIONS(27427), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336004] = 2, + ACTIONS(27429), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336012] = 2, + ACTIONS(27431), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336020] = 2, + ACTIONS(27433), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336028] = 2, + ACTIONS(27435), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336036] = 2, + ACTIONS(27437), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336044] = 2, + ACTIONS(21378), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336052] = 2, + ACTIONS(27439), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336060] = 2, + ACTIONS(27441), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336068] = 2, + ACTIONS(27443), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336076] = 2, + ACTIONS(27445), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336084] = 2, + ACTIONS(27447), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336092] = 2, + ACTIONS(27449), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336100] = 2, + ACTIONS(27451), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336108] = 2, + ACTIONS(25384), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336116] = 2, + ACTIONS(27453), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336124] = 2, + ACTIONS(27455), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336132] = 2, + ACTIONS(27457), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336140] = 2, + ACTIONS(27459), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336148] = 2, + ACTIONS(27461), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336156] = 2, + ACTIONS(27463), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336164] = 2, + ACTIONS(27465), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336172] = 2, + ACTIONS(27467), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336180] = 2, + ACTIONS(27469), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336188] = 2, + ACTIONS(27471), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336196] = 2, + ACTIONS(27473), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336204] = 2, + ACTIONS(27475), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336212] = 2, + ACTIONS(27477), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336220] = 2, + ACTIONS(27479), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336228] = 2, + ACTIONS(27481), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336236] = 2, + ACTIONS(27483), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336244] = 2, + ACTIONS(27485), 1, + aux_sym_type_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336252] = 2, + ACTIONS(27487), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336260] = 2, + ACTIONS(27489), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336268] = 2, + ACTIONS(27491), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336276] = 2, + ACTIONS(27493), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336284] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27495), 1, + sym_identifier, + [336294] = 2, + ACTIONS(27497), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336302] = 2, + ACTIONS(27499), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336310] = 2, + ACTIONS(27501), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336318] = 2, + ACTIONS(27503), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336326] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27505), 1, + sym_identifier, + [336336] = 2, + ACTIONS(27507), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336344] = 2, + ACTIONS(23593), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336352] = 2, + ACTIONS(27509), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336360] = 2, + ACTIONS(27511), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336368] = 2, + ACTIONS(27513), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336376] = 2, + ACTIONS(27515), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336384] = 2, + ACTIONS(27517), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336392] = 2, + ACTIONS(27519), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336400] = 2, + ACTIONS(27521), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336408] = 2, + ACTIONS(27523), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336416] = 2, + ACTIONS(27525), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336424] = 2, + ACTIONS(27527), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336432] = 2, + ACTIONS(27529), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336440] = 2, + ACTIONS(27531), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336448] = 2, + ACTIONS(27533), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336456] = 2, + ACTIONS(27535), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336464] = 2, + ACTIONS(23272), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336472] = 2, + ACTIONS(27537), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336480] = 2, + ACTIONS(27539), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336488] = 2, + ACTIONS(27541), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336496] = 2, + ACTIONS(27543), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336504] = 2, + ACTIONS(27545), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336512] = 2, + ACTIONS(27547), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336520] = 2, + ACTIONS(27549), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336528] = 2, + ACTIONS(27551), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336536] = 2, + ACTIONS(27553), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336544] = 2, + ACTIONS(27555), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336552] = 2, + ACTIONS(27557), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336560] = 2, + ACTIONS(27559), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336568] = 2, + ACTIONS(27561), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336576] = 2, + ACTIONS(27563), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336584] = 2, + ACTIONS(27565), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336592] = 2, + ACTIONS(27567), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336600] = 2, + ACTIONS(27569), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336608] = 2, + ACTIONS(27571), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336616] = 2, + ACTIONS(27573), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336624] = 2, + ACTIONS(27575), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336632] = 2, + ACTIONS(27577), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336640] = 2, + ACTIONS(27579), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336648] = 2, + ACTIONS(27581), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336656] = 2, + ACTIONS(27583), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336664] = 2, + ACTIONS(27585), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336672] = 2, + ACTIONS(27587), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336680] = 2, + ACTIONS(27589), 1, + aux_sym__property_get_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336688] = 2, + ACTIONS(27591), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336696] = 2, + ACTIONS(27593), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336704] = 2, + ACTIONS(27595), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336712] = 2, + ACTIONS(27597), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336720] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27599), 1, + sym_identifier, + [336730] = 2, + ACTIONS(27601), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336738] = 2, + ACTIONS(27603), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336746] = 2, + ACTIONS(27605), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336754] = 2, + ACTIONS(27607), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336762] = 2, + ACTIONS(27609), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336770] = 2, + ACTIONS(27611), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336778] = 2, + ACTIONS(27613), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336786] = 2, + ACTIONS(27615), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336794] = 2, + ACTIONS(27617), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336802] = 2, + ACTIONS(27619), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336810] = 2, + ACTIONS(27621), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336818] = 2, + ACTIONS(27623), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336826] = 2, + ACTIONS(27625), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336834] = 2, + ACTIONS(27627), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336842] = 2, + ACTIONS(27629), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336850] = 2, + ACTIONS(27631), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336858] = 2, + ACTIONS(27633), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336866] = 2, + ACTIONS(27635), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336874] = 2, + ACTIONS(27637), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336882] = 2, + ACTIONS(27639), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336890] = 2, + ACTIONS(27641), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336898] = 2, + ACTIONS(27643), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336906] = 2, + ACTIONS(27645), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336914] = 2, + ACTIONS(27647), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336922] = 2, + ACTIONS(27649), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336930] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27651), 1, + sym_identifier, + [336940] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27653), 1, + sym_identifier, + [336950] = 2, + ACTIONS(21216), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336958] = 2, + ACTIONS(27655), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336966] = 2, + ACTIONS(27657), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336974] = 2, + ACTIONS(27659), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336982] = 2, + ACTIONS(27661), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336990] = 2, + ACTIONS(27663), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [336998] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27665), 1, + sym_identifier, + [337008] = 2, + ACTIONS(27667), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337016] = 2, + ACTIONS(27669), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337024] = 2, + ACTIONS(27671), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337032] = 2, + ACTIONS(27673), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337040] = 2, + ACTIONS(27675), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337048] = 2, + ACTIONS(27677), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337056] = 2, + ACTIONS(23526), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337064] = 2, + ACTIONS(27679), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337072] = 2, + ACTIONS(27681), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337080] = 2, + ACTIONS(27683), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337088] = 2, + ACTIONS(27685), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337096] = 2, + ACTIONS(27687), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337104] = 2, + ACTIONS(27689), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337112] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27691), 1, + sym_identifier, + [337122] = 2, + ACTIONS(27693), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337130] = 2, + ACTIONS(27695), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337138] = 2, + ACTIONS(27697), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337146] = 2, + ACTIONS(27699), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337154] = 2, + ACTIONS(27701), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337162] = 2, + ACTIONS(27703), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337170] = 2, + ACTIONS(27705), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337178] = 2, + ACTIONS(23540), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337186] = 2, + ACTIONS(27707), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337194] = 2, + ACTIONS(27709), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337202] = 2, + ACTIONS(27711), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337210] = 2, + ACTIONS(27713), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337218] = 2, + ACTIONS(27715), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337226] = 2, + ACTIONS(27717), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337234] = 2, + ACTIONS(27719), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337242] = 2, + ACTIONS(27721), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337250] = 2, + ACTIONS(27723), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337258] = 2, + ACTIONS(27725), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337266] = 2, + ACTIONS(27727), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337274] = 2, + ACTIONS(27729), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337282] = 2, + ACTIONS(27731), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337290] = 2, + ACTIONS(27733), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337298] = 2, + ACTIONS(27735), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337306] = 2, + ACTIONS(27737), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337314] = 2, + ACTIONS(27739), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337322] = 2, + ACTIONS(27741), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337330] = 2, + ACTIONS(27743), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337338] = 2, + ACTIONS(27745), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337346] = 2, + ACTIONS(27747), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337354] = 2, + ACTIONS(27749), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337362] = 2, + ACTIONS(27751), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337370] = 2, + ACTIONS(27753), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337378] = 2, + ACTIONS(27755), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337386] = 2, + ACTIONS(27757), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337394] = 2, + ACTIONS(27759), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337402] = 2, + ACTIONS(27761), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337410] = 2, + ACTIONS(27763), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337418] = 2, + ACTIONS(27765), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337426] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27767), 1, + sym_identifier, + [337436] = 2, + ACTIONS(27769), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337444] = 2, + ACTIONS(27771), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337452] = 2, + ACTIONS(27773), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337460] = 2, + ACTIONS(27775), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337468] = 2, + ACTIONS(27777), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337476] = 2, + ACTIONS(27779), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337484] = 2, + ACTIONS(27781), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337492] = 2, + ACTIONS(27783), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337500] = 2, + ACTIONS(27785), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337508] = 2, + ACTIONS(27787), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337516] = 2, + ACTIONS(27789), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337524] = 2, + ACTIONS(21238), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337532] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27791), 1, + sym_identifier, + [337542] = 2, + ACTIONS(27793), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337550] = 2, + ACTIONS(27795), 1, + aux_sym_type_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337558] = 2, + ACTIONS(27797), 1, + aux_sym_enum_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337566] = 2, + ACTIONS(27799), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337574] = 2, + ACTIONS(27801), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337582] = 2, + ACTIONS(27803), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337590] = 2, + ACTIONS(27805), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337598] = 2, + ACTIONS(27807), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337606] = 2, + ACTIONS(27809), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337614] = 2, + ACTIONS(27811), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337622] = 2, + ACTIONS(27813), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337630] = 2, + ACTIONS(27815), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337638] = 2, + ACTIONS(27817), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337646] = 2, + ACTIONS(27819), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337654] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27821), 1, + sym_identifier, + [337664] = 2, + ACTIONS(27823), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337672] = 2, + ACTIONS(27825), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337680] = 2, + ACTIONS(27827), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337688] = 2, + ACTIONS(27829), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337696] = 2, + ACTIONS(27831), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337704] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27833), 1, + sym_identifier, + [337714] = 2, + ACTIONS(27835), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337722] = 2, + ACTIONS(27837), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337730] = 2, + ACTIONS(27839), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337738] = 2, + ACTIONS(27841), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337746] = 2, + ACTIONS(27843), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337754] = 2, + ACTIONS(27845), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337762] = 2, + ACTIONS(27847), 1, + aux_sym_enum_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337770] = 2, + ACTIONS(23258), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337778] = 2, + ACTIONS(27849), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337786] = 2, + ACTIONS(27851), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337794] = 2, + ACTIONS(27853), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337802] = 2, + ACTIONS(27855), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337810] = 2, + ACTIONS(27857), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337818] = 2, + ACTIONS(27859), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337826] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27861), 1, + sym_identifier, + [337836] = 2, + ACTIONS(27863), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337844] = 2, + ACTIONS(27865), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337852] = 2, + ACTIONS(27867), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337860] = 2, + ACTIONS(27869), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337868] = 2, + ACTIONS(27871), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337876] = 2, + ACTIONS(27873), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337884] = 2, + ACTIONS(27875), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337892] = 2, + ACTIONS(23266), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337900] = 2, + ACTIONS(27877), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337908] = 2, + ACTIONS(27879), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337916] = 2, + ACTIONS(27881), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337924] = 2, + ACTIONS(27883), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337932] = 2, + ACTIONS(27885), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337940] = 2, + ACTIONS(27887), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337948] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27889), 1, + sym_identifier, + [337958] = 2, + ACTIONS(27891), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337966] = 2, + ACTIONS(27893), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337974] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27895), 1, + sym_identifier, + [337984] = 2, + ACTIONS(27897), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [337992] = 2, + ACTIONS(27899), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338000] = 2, + ACTIONS(27901), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338008] = 2, + ACTIONS(27903), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338016] = 2, + ACTIONS(27905), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338024] = 2, + ACTIONS(27907), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338032] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27909), 1, + sym_identifier, + [338042] = 2, + ACTIONS(27911), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338050] = 2, + ACTIONS(27913), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338058] = 2, + ACTIONS(27915), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338066] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27917), 1, + sym_identifier, + [338076] = 2, + ACTIONS(27919), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338084] = 2, + ACTIONS(27921), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338092] = 2, + ACTIONS(27923), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338100] = 2, + ACTIONS(27925), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338108] = 2, + ACTIONS(27927), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338116] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27929), 1, + sym_identifier, + [338126] = 2, + ACTIONS(27931), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338134] = 2, + ACTIONS(27933), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338142] = 2, + ACTIONS(27935), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338150] = 2, + ACTIONS(27937), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338158] = 2, + ACTIONS(27939), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338166] = 2, + ACTIONS(27941), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338174] = 2, + ACTIONS(27943), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338182] = 2, + ACTIONS(27945), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338190] = 2, + ACTIONS(27947), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338198] = 2, + ACTIONS(27949), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338206] = 2, + ACTIONS(27951), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338214] = 2, + ACTIONS(27953), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338222] = 2, + ACTIONS(27955), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338230] = 2, + ACTIONS(27957), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338238] = 2, + ACTIONS(27959), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338246] = 2, + ACTIONS(27961), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338254] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27963), 1, + sym_identifier, + [338264] = 2, + ACTIONS(27965), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338272] = 2, + ACTIONS(27967), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338280] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27969), 1, + sym_identifier, + [338290] = 2, + ACTIONS(27971), 1, + aux_sym_on_error_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338298] = 2, + ACTIONS(21299), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338306] = 2, + ACTIONS(23725), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338314] = 2, + ACTIONS(27973), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338322] = 2, + ACTIONS(27975), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338330] = 2, + ACTIONS(27977), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338338] = 2, + ACTIONS(27979), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338346] = 2, + ACTIONS(27981), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338354] = 2, + ACTIONS(27983), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338362] = 2, + ACTIONS(27985), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338370] = 2, + ACTIONS(27987), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338378] = 2, + ACTIONS(27989), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338386] = 2, + ACTIONS(27991), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338394] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27993), 1, + sym_identifier, + [338404] = 2, + ACTIONS(27995), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338412] = 2, + ACTIONS(27997), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338420] = 2, + ACTIONS(27999), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338428] = 2, + ACTIONS(28001), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338436] = 2, + ACTIONS(28003), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338444] = 2, + ACTIONS(28005), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338452] = 2, + ACTIONS(28007), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338460] = 2, + ACTIONS(28009), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338468] = 2, + ACTIONS(28011), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338476] = 2, + ACTIONS(28013), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338484] = 2, + ACTIONS(28015), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338492] = 2, + ACTIONS(23294), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338500] = 2, + ACTIONS(28017), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338508] = 2, + ACTIONS(28019), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338516] = 2, + ACTIONS(28021), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338524] = 2, + ACTIONS(28023), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338532] = 2, + ACTIONS(28025), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338540] = 2, + ACTIONS(28027), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338548] = 2, + ACTIONS(28029), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338556] = 2, + ACTIONS(28031), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338564] = 2, + ACTIONS(28033), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338572] = 2, + ACTIONS(28035), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338580] = 2, + ACTIONS(28037), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338588] = 2, + ACTIONS(28039), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338596] = 2, + ACTIONS(28041), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338604] = 2, + ACTIONS(28043), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338612] = 2, + ACTIONS(23304), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338620] = 2, + ACTIONS(28045), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338628] = 2, + ACTIONS(28047), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338636] = 2, + ACTIONS(28049), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338644] = 2, + ACTIONS(28051), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338652] = 2, + ACTIONS(28053), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338660] = 2, + ACTIONS(28055), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338668] = 2, + ACTIONS(28057), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338676] = 2, + ACTIONS(28059), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338684] = 2, + ACTIONS(28061), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338692] = 2, + ACTIONS(28063), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338700] = 2, + ACTIONS(28065), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338708] = 2, + ACTIONS(28067), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338716] = 2, + ACTIONS(28069), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338724] = 2, + ACTIONS(28071), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338732] = 2, + ACTIONS(28073), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338740] = 2, + ACTIONS(28075), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338748] = 2, + ACTIONS(28077), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338756] = 2, + ACTIONS(28079), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338764] = 2, + ACTIONS(28081), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338772] = 2, + ACTIONS(28083), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338780] = 2, + ACTIONS(28085), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338788] = 2, + ACTIONS(28087), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338796] = 2, + ACTIONS(28089), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338804] = 2, + ACTIONS(28091), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338812] = 2, + ACTIONS(28093), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338820] = 2, + ACTIONS(28095), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338828] = 2, + ACTIONS(28097), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338836] = 2, + ACTIONS(28099), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338844] = 2, + ACTIONS(28101), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338852] = 2, + ACTIONS(28103), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338860] = 2, + ACTIONS(28105), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338868] = 2, + ACTIONS(28107), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338876] = 2, + ACTIONS(28109), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338884] = 2, + ACTIONS(28111), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338892] = 2, + ACTIONS(28113), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338900] = 2, + ACTIONS(28115), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338908] = 2, + ACTIONS(28117), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338916] = 2, + ACTIONS(28119), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338924] = 2, + ACTIONS(28121), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338932] = 2, + ACTIONS(28123), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338940] = 2, + ACTIONS(28125), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338948] = 2, + ACTIONS(28127), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338956] = 2, + ACTIONS(28129), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338964] = 2, + ACTIONS(28131), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338972] = 2, + ACTIONS(28133), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338980] = 2, + ACTIONS(21230), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338988] = 2, + ACTIONS(28135), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [338996] = 2, + ACTIONS(28137), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339004] = 2, + ACTIONS(28139), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339012] = 2, + ACTIONS(28141), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339020] = 2, + ACTIONS(28143), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339028] = 2, + ACTIONS(28145), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339036] = 2, + ACTIONS(28147), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339044] = 2, + ACTIONS(28149), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339052] = 2, + ACTIONS(28151), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339060] = 2, + ACTIONS(28153), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339068] = 2, + ACTIONS(28155), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339076] = 2, + ACTIONS(28157), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339084] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28159), 1, + sym_identifier, + [339094] = 2, + ACTIONS(28161), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339102] = 2, + ACTIONS(28163), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339110] = 2, + ACTIONS(28165), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339118] = 2, + ACTIONS(28167), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339126] = 2, + ACTIONS(28169), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339134] = 2, + ACTIONS(28171), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339142] = 2, + ACTIONS(28173), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339150] = 2, + ACTIONS(28175), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339158] = 2, + ACTIONS(28177), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339166] = 2, + ACTIONS(28179), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339174] = 2, + ACTIONS(28181), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339182] = 2, + ACTIONS(28183), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339190] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28185), 1, + sym_identifier, + [339200] = 2, + ACTIONS(23334), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339208] = 2, + ACTIONS(28187), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339216] = 2, + ACTIONS(28189), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339224] = 2, + ACTIONS(28191), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339232] = 2, + ACTIONS(28193), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339240] = 2, + ACTIONS(28195), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339248] = 2, + ACTIONS(28197), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339256] = 2, + ACTIONS(28199), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339264] = 2, + ACTIONS(28201), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339272] = 2, + ACTIONS(28203), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339280] = 2, + ACTIONS(28205), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339288] = 2, + ACTIONS(28207), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339296] = 2, + ACTIONS(28209), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339304] = 2, + ACTIONS(28211), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339312] = 2, + ACTIONS(28213), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339320] = 2, + ACTIONS(23342), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339328] = 2, + ACTIONS(28215), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339336] = 2, + ACTIONS(28217), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339344] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28219), 1, + sym_identifier, + [339354] = 2, + ACTIONS(28221), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339362] = 2, + ACTIONS(28223), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339370] = 2, + ACTIONS(28225), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339378] = 2, + ACTIONS(28227), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339386] = 2, + ACTIONS(28229), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339394] = 2, + ACTIONS(28231), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339402] = 2, + ACTIONS(28233), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339410] = 2, + ACTIONS(28235), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339418] = 2, + ACTIONS(28237), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339426] = 2, + ACTIONS(28239), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339434] = 2, + ACTIONS(28241), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339442] = 2, + ACTIONS(28243), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339450] = 2, + ACTIONS(25386), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339458] = 2, + ACTIONS(28245), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339466] = 2, + ACTIONS(28247), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339474] = 2, + ACTIONS(28249), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339482] = 2, + ACTIONS(28251), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339490] = 2, + ACTIONS(28253), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339498] = 2, + ACTIONS(28255), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339506] = 2, + ACTIONS(28257), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339514] = 2, + ACTIONS(28259), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339522] = 2, + ACTIONS(28261), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339530] = 2, + ACTIONS(28263), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339538] = 2, + ACTIONS(28265), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339546] = 2, + ACTIONS(28267), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339554] = 2, + ACTIONS(28269), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339562] = 2, + ACTIONS(28271), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339570] = 2, + ACTIONS(28273), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339578] = 2, + ACTIONS(28275), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339586] = 2, + ACTIONS(26199), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339594] = 2, + ACTIONS(28277), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339602] = 2, + ACTIONS(28279), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339610] = 2, + ACTIONS(28281), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339618] = 2, + ACTIONS(28283), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339626] = 2, + ACTIONS(28285), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339634] = 2, + ACTIONS(28287), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339642] = 2, + ACTIONS(28289), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339650] = 2, + ACTIONS(28291), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339658] = 2, + ACTIONS(28293), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339666] = 2, + ACTIONS(28295), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339674] = 2, + ACTIONS(28297), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339682] = 2, + ACTIONS(28299), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339690] = 2, + ACTIONS(28301), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339698] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28303), 1, + sym_identifier, + [339708] = 2, + ACTIONS(28305), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339716] = 2, + ACTIONS(28307), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339724] = 2, + ACTIONS(28309), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339732] = 2, + ACTIONS(28311), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339740] = 2, + ACTIONS(28313), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339748] = 2, + ACTIONS(28315), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339756] = 2, + ACTIONS(28317), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339764] = 2, + ACTIONS(28319), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339772] = 2, + ACTIONS(28321), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339780] = 2, + ACTIONS(28323), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339788] = 2, + ACTIONS(28325), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339796] = 2, + ACTIONS(28327), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339804] = 2, + ACTIONS(28329), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339812] = 2, + ACTIONS(28331), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339820] = 2, + ACTIONS(28333), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339828] = 2, + ACTIONS(28335), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339836] = 2, + ACTIONS(28337), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339844] = 2, + ACTIONS(28339), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339852] = 2, + ACTIONS(28341), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339860] = 2, + ACTIONS(23378), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339868] = 2, + ACTIONS(26463), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339876] = 2, + ACTIONS(28343), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339884] = 2, + ACTIONS(28345), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339892] = 2, + ACTIONS(28347), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339900] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28349), 1, + sym_identifier, + [339910] = 2, + ACTIONS(28351), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339918] = 2, + ACTIONS(28353), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339926] = 2, + ACTIONS(28355), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339934] = 2, + ACTIONS(28357), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339942] = 2, + ACTIONS(28359), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339950] = 2, + ACTIONS(28361), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339958] = 2, + ACTIONS(28363), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339966] = 2, + ACTIONS(28365), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339974] = 2, + ACTIONS(28367), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339982] = 2, + ACTIONS(23394), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339990] = 2, + ACTIONS(28369), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [339998] = 2, + ACTIONS(28371), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340006] = 2, + ACTIONS(28373), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340014] = 2, + ACTIONS(28375), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340022] = 2, + ACTIONS(28377), 1, + aux_sym_type_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340030] = 2, + ACTIONS(28379), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340038] = 2, + ACTIONS(28381), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340046] = 2, + ACTIONS(28383), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340054] = 2, + ACTIONS(28385), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340062] = 2, + ACTIONS(28387), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340070] = 2, + ACTIONS(28389), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340078] = 2, + ACTIONS(28391), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340086] = 2, + ACTIONS(28393), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340094] = 2, + ACTIONS(28395), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340102] = 2, + ACTIONS(28397), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340110] = 2, + ACTIONS(28399), 1, + anon_sym_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340118] = 2, + ACTIONS(28401), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340126] = 2, + ACTIONS(28403), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340134] = 2, + ACTIONS(28405), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340142] = 2, + ACTIONS(28407), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340150] = 2, + ACTIONS(28409), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340158] = 2, + ACTIONS(28411), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340166] = 2, + ACTIONS(28413), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340174] = 2, + ACTIONS(28415), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340182] = 2, + ACTIONS(28417), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340190] = 2, + ACTIONS(28419), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340198] = 2, + ACTIONS(28421), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340206] = 2, + ACTIONS(28423), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340214] = 2, + ACTIONS(28425), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340222] = 2, + ACTIONS(28427), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340230] = 2, + ACTIONS(28429), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340238] = 2, + ACTIONS(28431), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340246] = 2, + ACTIONS(28433), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340254] = 2, + ACTIONS(28435), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340262] = 2, + ACTIONS(28437), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340270] = 2, + ACTIONS(28439), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340278] = 2, + ACTIONS(28441), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340286] = 2, + ACTIONS(28443), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340294] = 2, + ACTIONS(28445), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340302] = 2, + ACTIONS(28447), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340310] = 2, + ACTIONS(23406), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340318] = 2, + ACTIONS(28449), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340326] = 2, + ACTIONS(28451), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340334] = 2, + ACTIONS(23408), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340342] = 2, + ACTIONS(28453), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340350] = 2, + ACTIONS(28455), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340358] = 2, + ACTIONS(28457), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340366] = 2, + ACTIONS(28459), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340374] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28461), 1, + sym_identifier, + [340384] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28463), 1, + sym_identifier, + [340394] = 2, + ACTIONS(28465), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340402] = 2, + ACTIONS(28467), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340410] = 2, + ACTIONS(28469), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340418] = 2, + ACTIONS(28471), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340426] = 2, + ACTIONS(28473), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340434] = 2, + ACTIONS(28475), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340442] = 2, + ACTIONS(28477), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340450] = 2, + ACTIONS(28479), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340458] = 2, + ACTIONS(28481), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340466] = 2, + ACTIONS(28483), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340474] = 2, + ACTIONS(28485), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340482] = 2, + ACTIONS(28487), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340490] = 2, + ACTIONS(28489), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340498] = 2, + ACTIONS(28491), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340506] = 2, + ACTIONS(28493), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340514] = 2, + ACTIONS(28495), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340522] = 2, + ACTIONS(28497), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340530] = 2, + ACTIONS(28499), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340538] = 2, + ACTIONS(28501), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340546] = 2, + ACTIONS(28503), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340554] = 2, + ACTIONS(28505), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340562] = 2, + ACTIONS(28507), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340570] = 2, + ACTIONS(28509), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340578] = 2, + ACTIONS(28511), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340586] = 2, + ACTIONS(28473), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340594] = 2, + ACTIONS(28513), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340602] = 2, + ACTIONS(28515), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340610] = 2, + ACTIONS(28517), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340618] = 2, + ACTIONS(28519), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340626] = 2, + ACTIONS(28473), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340634] = 2, + ACTIONS(28521), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340642] = 2, + ACTIONS(28523), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340650] = 2, + ACTIONS(28525), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340658] = 2, + ACTIONS(28527), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340666] = 2, + ACTIONS(25388), 1, + aux_sym__property_get_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340674] = 2, + ACTIONS(28529), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340682] = 2, + ACTIONS(28531), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340690] = 2, + ACTIONS(28533), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340698] = 2, + ACTIONS(28535), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340706] = 2, + ACTIONS(28537), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340714] = 2, + ACTIONS(28539), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340722] = 2, + ACTIONS(28541), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340730] = 2, + ACTIONS(28543), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340738] = 2, + ACTIONS(28545), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340746] = 2, + ACTIONS(28547), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340754] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28549), 1, + sym_identifier, + [340764] = 2, + ACTIONS(28551), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340772] = 2, + ACTIONS(28553), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340780] = 2, + ACTIONS(28555), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340788] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28557), 1, + sym_identifier, + [340798] = 2, + ACTIONS(28559), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340806] = 2, + ACTIONS(28561), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340814] = 2, + ACTIONS(28563), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340822] = 2, + ACTIONS(28565), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340830] = 2, + ACTIONS(28567), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340838] = 2, + ACTIONS(28569), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340846] = 2, + ACTIONS(28571), 1, + aux_sym_enum_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340854] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28573), 1, + sym_identifier, + [340864] = 2, + ACTIONS(28575), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340872] = 2, + ACTIONS(28577), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340880] = 2, + ACTIONS(28579), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340888] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28581), 1, + sym_identifier, + [340898] = 2, + ACTIONS(28583), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340906] = 2, + ACTIONS(21268), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340914] = 2, + ACTIONS(28585), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340922] = 2, + ACTIONS(28587), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340930] = 2, + ACTIONS(28589), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340938] = 2, + ACTIONS(28591), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340946] = 2, + ACTIONS(28593), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340954] = 2, + ACTIONS(28595), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340962] = 2, + ACTIONS(28597), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340970] = 2, + ACTIONS(28599), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340978] = 2, + ACTIONS(28601), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340986] = 2, + ACTIONS(28603), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [340994] = 2, + ACTIONS(28605), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341002] = 2, + ACTIONS(28607), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341010] = 2, + ACTIONS(25628), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341018] = 2, + ACTIONS(28609), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341026] = 2, + ACTIONS(28611), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341034] = 2, + ACTIONS(28613), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341042] = 2, + ACTIONS(28615), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341050] = 2, + ACTIONS(28617), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341058] = 2, + ACTIONS(28619), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341066] = 2, + ACTIONS(28621), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341074] = 2, + ACTIONS(28623), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341082] = 2, + ACTIONS(28625), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341090] = 2, + ACTIONS(28627), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341098] = 2, + ACTIONS(28629), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341106] = 2, + ACTIONS(28631), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341114] = 2, + ACTIONS(28633), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341122] = 2, + ACTIONS(28635), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341130] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28637), 1, + sym_identifier, + [341140] = 2, + ACTIONS(28639), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341148] = 2, + ACTIONS(28641), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341156] = 2, + ACTIONS(28643), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341164] = 2, + ACTIONS(28645), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341172] = 2, + ACTIONS(28647), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341180] = 2, + ACTIONS(21406), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341188] = 2, + ACTIONS(28649), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341196] = 2, + ACTIONS(28651), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341204] = 2, + ACTIONS(28653), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341212] = 2, + ACTIONS(28655), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341220] = 2, + ACTIONS(28657), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341228] = 2, + ACTIONS(28659), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341236] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28661), 1, + sym_identifier, + [341246] = 2, + ACTIONS(28663), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341254] = 2, + ACTIONS(28665), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341262] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28667), 1, + sym_identifier, + [341272] = 2, + ACTIONS(28669), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341280] = 2, + ACTIONS(28671), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341288] = 2, + ACTIONS(28673), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341296] = 2, + ACTIONS(28675), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341304] = 2, + ACTIONS(28677), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341312] = 2, + ACTIONS(28679), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341320] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28681), 1, + sym_identifier, + [341330] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28683), 1, + sym_identifier, + [341340] = 2, + ACTIONS(28685), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341348] = 2, + ACTIONS(28687), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341356] = 2, + ACTIONS(28689), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341364] = 2, + ACTIONS(28691), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341372] = 2, + ACTIONS(28693), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341380] = 2, + ACTIONS(28695), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341388] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28697), 1, + sym_identifier, + [341398] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28699), 1, + sym_identifier, + [341408] = 2, + ACTIONS(28701), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341416] = 2, + ACTIONS(28703), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341424] = 2, + ACTIONS(28705), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341432] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28707), 1, + sym_identifier, + [341442] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28709), 1, + sym_identifier, + [341452] = 2, + ACTIONS(28711), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341460] = 2, + ACTIONS(28713), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341468] = 2, + ACTIONS(28715), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341476] = 2, + ACTIONS(28717), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341484] = 2, + ACTIONS(28719), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341492] = 2, + ACTIONS(28721), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341500] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28723), 1, + sym_identifier, + [341510] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28725), 1, + sym_identifier, + [341520] = 2, + ACTIONS(28727), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341528] = 2, + ACTIONS(28729), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341536] = 2, + ACTIONS(28731), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341544] = 2, + ACTIONS(28733), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341552] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28735), 1, + sym_identifier, + [341562] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28737), 1, + sym_identifier, + [341572] = 2, + ACTIONS(28739), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341580] = 2, + ACTIONS(28741), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341588] = 2, + ACTIONS(28743), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341596] = 2, + ACTIONS(28745), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341604] = 2, + ACTIONS(28747), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341612] = 2, + ACTIONS(28749), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341620] = 2, + ACTIONS(28751), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341628] = 2, + ACTIONS(28753), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341636] = 2, + ACTIONS(28755), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341644] = 2, + ACTIONS(21560), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341652] = 2, + ACTIONS(28757), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341660] = 2, + ACTIONS(28759), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341668] = 2, + ACTIONS(28761), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341676] = 2, + ACTIONS(28763), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341684] = 2, + ACTIONS(28765), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341692] = 2, + ACTIONS(28767), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341700] = 2, + ACTIONS(28769), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341708] = 2, + ACTIONS(28771), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341716] = 2, + ACTIONS(28773), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341724] = 2, + ACTIONS(28775), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341732] = 2, + ACTIONS(28777), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341740] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28779), 1, + sym_identifier, + [341750] = 2, + ACTIONS(28781), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341758] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28783), 1, + sym_identifier, + [341768] = 2, + ACTIONS(28785), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341776] = 2, + ACTIONS(28787), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341784] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28789), 1, + sym_identifier, + [341794] = 2, + ACTIONS(28791), 1, + aux_sym_on_error_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341802] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28793), 1, + sym_identifier, + [341812] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28795), 1, + sym_identifier, + [341822] = 2, + ACTIONS(28797), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341830] = 2, + ACTIONS(28799), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341838] = 2, + ACTIONS(28801), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341846] = 2, + ACTIONS(28803), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341854] = 2, + ACTIONS(28805), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341862] = 2, + ACTIONS(28807), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341870] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28809), 1, + sym_identifier, + [341880] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28811), 1, + sym_identifier, + [341890] = 2, + ACTIONS(28813), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341898] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28815), 1, + sym_identifier, + [341908] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28817), 1, + sym_identifier, + [341918] = 2, + ACTIONS(28819), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341926] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28821), 1, + sym_identifier, + [341936] = 2, + ACTIONS(28823), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341944] = 2, + ACTIONS(28825), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341952] = 2, + ACTIONS(28827), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341960] = 2, + ACTIONS(28829), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341968] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28831), 1, + sym_identifier, + [341978] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28833), 1, + sym_identifier, + [341988] = 2, + ACTIONS(28835), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [341996] = 2, + ACTIONS(28837), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342004] = 2, + ACTIONS(28839), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342012] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28841), 1, + sym_identifier, + [342022] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28843), 1, + sym_identifier, + [342032] = 2, + ACTIONS(28845), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342040] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28847), 1, + sym_identifier, + [342050] = 2, + ACTIONS(28849), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342058] = 2, + ACTIONS(28851), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342066] = 2, + ACTIONS(28853), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342074] = 2, + ACTIONS(28855), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342082] = 2, + ACTIONS(28857), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342090] = 2, + ACTIONS(28859), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342098] = 2, + ACTIONS(21568), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342106] = 2, + ACTIONS(28861), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342114] = 2, + ACTIONS(28863), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342122] = 2, + ACTIONS(28865), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342130] = 2, + ACTIONS(28867), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342138] = 2, + ACTIONS(28869), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342146] = 2, + ACTIONS(28871), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342154] = 2, + ACTIONS(28873), 1, + aux_sym_on_error_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342162] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28875), 1, + sym_identifier, + [342172] = 2, + ACTIONS(28877), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342180] = 2, + ACTIONS(28879), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342188] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28881), 1, + sym_identifier, + [342198] = 2, + ACTIONS(28883), 1, + aux_sym_declare_sub_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342206] = 2, + ACTIONS(28885), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342214] = 2, + ACTIONS(28887), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342222] = 2, + ACTIONS(28889), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342230] = 2, + ACTIONS(28891), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342238] = 2, + ACTIONS(28893), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342246] = 2, + ACTIONS(28895), 1, + aux_sym__property_get_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342254] = 2, + ACTIONS(28897), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342262] = 2, + ACTIONS(28899), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342270] = 2, + ACTIONS(28901), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342278] = 2, + ACTIONS(23330), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342286] = 2, + ACTIONS(28903), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342294] = 2, + ACTIONS(28905), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342302] = 2, + ACTIONS(21574), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342310] = 2, + ACTIONS(28907), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342318] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28909), 1, + sym_identifier, + [342328] = 2, + ACTIONS(28911), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342336] = 2, + ACTIONS(28913), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342344] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28915), 1, + sym_identifier, + [342354] = 2, + ACTIONS(28917), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342362] = 2, + ACTIONS(28919), 1, + aux_sym_on_error_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342370] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28921), 1, + sym_identifier, + [342380] = 2, + ACTIONS(28923), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342388] = 2, + ACTIONS(23466), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342396] = 2, + ACTIONS(28925), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342404] = 2, + ACTIONS(28927), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342412] = 2, + ACTIONS(28929), 1, + aux_sym_type_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342420] = 2, + ACTIONS(28931), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342428] = 2, + ACTIONS(28933), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342436] = 2, + ACTIONS(28935), 1, + aux_sym_enum_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342444] = 2, + ACTIONS(28937), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342452] = 2, + ACTIONS(28939), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342460] = 2, + ACTIONS(28941), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342468] = 2, + ACTIONS(28943), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342476] = 2, + ACTIONS(28945), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342484] = 2, + ACTIONS(28947), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342492] = 2, + ACTIONS(28949), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342500] = 2, + ACTIONS(28951), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342508] = 2, + ACTIONS(21585), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342516] = 2, + ACTIONS(28953), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342524] = 2, + ACTIONS(28955), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342532] = 2, + ACTIONS(28957), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342540] = 2, + ACTIONS(28959), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342548] = 2, + ACTIONS(28961), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342556] = 2, + ACTIONS(28963), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342564] = 2, + ACTIONS(28965), 1, + aux_sym_on_error_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342572] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28967), 1, + sym_identifier, + [342582] = 2, + ACTIONS(28969), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342590] = 2, + ACTIONS(28971), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342598] = 2, + ACTIONS(28973), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342606] = 2, + ACTIONS(28975), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342614] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28977), 1, + sym_identifier, + [342624] = 2, + ACTIONS(28979), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342632] = 2, + ACTIONS(21642), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342640] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28981), 1, + sym_identifier, + [342650] = 2, + ACTIONS(28983), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342658] = 2, + ACTIONS(28985), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342666] = 2, + ACTIONS(28987), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342674] = 2, + ACTIONS(28989), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342682] = 2, + ACTIONS(28991), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342690] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28993), 1, + sym_identifier, + [342700] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28995), 1, + sym_identifier, + [342710] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(28997), 1, + sym_identifier, + [342720] = 2, + ACTIONS(21591), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342728] = 2, + ACTIONS(28999), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342736] = 2, + ACTIONS(29001), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342744] = 2, + ACTIONS(29003), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342752] = 2, + ACTIONS(29005), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342760] = 2, + ACTIONS(29007), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342768] = 2, + ACTIONS(29009), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342776] = 2, + ACTIONS(29011), 1, + aux_sym_on_error_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342784] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29013), 1, + sym_identifier, + [342794] = 2, + ACTIONS(29015), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342802] = 2, + ACTIONS(29017), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342810] = 2, + ACTIONS(29019), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342818] = 2, + ACTIONS(29021), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342826] = 2, + ACTIONS(29023), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342834] = 2, + ACTIONS(29025), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342842] = 2, + ACTIONS(29027), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342850] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29029), 1, + sym_identifier, + [342860] = 2, + ACTIONS(29031), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342868] = 2, + ACTIONS(29033), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342876] = 2, + ACTIONS(29035), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342884] = 2, + ACTIONS(29037), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342892] = 2, + ACTIONS(29039), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342900] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29041), 1, + sym_identifier, + [342910] = 2, + ACTIONS(29043), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342918] = 2, + ACTIONS(29045), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342926] = 2, + ACTIONS(21599), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342934] = 2, + ACTIONS(29047), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342942] = 2, + ACTIONS(29049), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342950] = 2, + ACTIONS(29051), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342958] = 2, + ACTIONS(29053), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342966] = 2, + ACTIONS(29055), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342974] = 2, + ACTIONS(29057), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342982] = 2, + ACTIONS(29059), 1, + aux_sym_on_error_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [342990] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29061), 1, + sym_identifier, + [343000] = 2, + ACTIONS(29063), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343008] = 2, + ACTIONS(29065), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343016] = 2, + ACTIONS(29067), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343024] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29069), 1, + sym_identifier, + [343034] = 2, + ACTIONS(29071), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343042] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29073), 1, + sym_identifier, + [343052] = 2, + ACTIONS(29075), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343060] = 2, + ACTIONS(29077), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343068] = 2, + ACTIONS(29079), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343076] = 2, + ACTIONS(29081), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343084] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29083), 1, + sym_identifier, + [343094] = 2, + ACTIONS(29085), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343102] = 2, + ACTIONS(29087), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343110] = 2, + ACTIONS(29089), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343118] = 2, + ACTIONS(29091), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343126] = 2, + ACTIONS(29093), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343134] = 2, + ACTIONS(21605), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343142] = 2, + ACTIONS(29095), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343150] = 2, + ACTIONS(26179), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343158] = 2, + ACTIONS(29097), 1, + aux_sym__for_each_header_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343166] = 2, + ACTIONS(29099), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343174] = 2, + ACTIONS(29101), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343182] = 2, + ACTIONS(29103), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343190] = 2, + ACTIONS(29105), 1, + aux_sym_on_error_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343198] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29107), 1, + sym_identifier, + [343208] = 2, + ACTIONS(29109), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343216] = 2, + ACTIONS(29111), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343224] = 2, + ACTIONS(29113), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343232] = 2, + ACTIONS(29115), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343240] = 2, + ACTIONS(29117), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343248] = 2, + ACTIONS(26417), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343256] = 2, + ACTIONS(29119), 1, + aux_sym_enum_declaration_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343264] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29121), 1, + sym_identifier, + [343274] = 2, + ACTIONS(29123), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343282] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29125), 1, + sym_identifier, + [343292] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29127), 1, + sym_identifier, + [343302] = 2, + ACTIONS(29129), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343310] = 2, + ACTIONS(29131), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343318] = 2, + ACTIONS(29133), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343326] = 2, + ACTIONS(29135), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343334] = 2, + ACTIONS(21611), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343342] = 2, + ACTIONS(29137), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343350] = 2, + ACTIONS(29139), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343358] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29141), 1, + sym_identifier, + [343368] = 2, + ACTIONS(29143), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343376] = 2, + ACTIONS(29145), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343384] = 2, + ACTIONS(29147), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343392] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29149), 1, + sym_identifier, + [343402] = 2, + ACTIONS(29151), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343410] = 2, + ACTIONS(29153), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343418] = 2, + ACTIONS(29155), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343426] = 2, + ACTIONS(29157), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343434] = 2, + ACTIONS(29159), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343442] = 2, + ACTIONS(29161), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343450] = 2, + ACTIONS(29163), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343458] = 2, + ACTIONS(11811), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343466] = 2, + ACTIONS(29165), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343474] = 2, + ACTIONS(26325), 1, + aux_sym_declare_function_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343482] = 2, + ACTIONS(29167), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343490] = 2, + ACTIONS(29169), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343498] = 2, + ACTIONS(21617), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343506] = 2, + ACTIONS(29171), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343514] = 2, + ACTIONS(26197), 1, + aux_sym__property_get_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343522] = 2, + ACTIONS(29173), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343530] = 2, + ACTIONS(29175), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343538] = 2, + ACTIONS(29177), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343546] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29179), 1, + sym_identifier, + [343556] = 2, + ACTIONS(29181), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343564] = 2, + ACTIONS(21619), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343572] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29183), 1, + sym_identifier, + [343582] = 2, + ACTIONS(29185), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343590] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29187), 1, + sym_identifier, + [343600] = 2, + ACTIONS(29189), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343608] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29191), 1, + sym_identifier, + [343618] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29193), 1, + sym_identifier, + [343628] = 2, + ACTIONS(29195), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343636] = 2, + ACTIONS(29197), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343644] = 2, + ACTIONS(29199), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343652] = 2, + ACTIONS(29201), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343660] = 2, + ACTIONS(29203), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343668] = 2, + ACTIONS(29205), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343676] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29207), 1, + sym_identifier, + [343686] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29209), 1, + sym_identifier, + [343696] = 2, + ACTIONS(29211), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343704] = 2, + ACTIONS(29213), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343712] = 2, + ACTIONS(29215), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343720] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29217), 1, + sym_identifier, + [343730] = 2, + ACTIONS(29219), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343738] = 2, + ACTIONS(29221), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343746] = 2, + ACTIONS(29223), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343754] = 2, + ACTIONS(29225), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343762] = 2, + ACTIONS(29227), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343770] = 2, + ACTIONS(29229), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343778] = 2, + ACTIONS(29231), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343786] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29233), 1, + sym_identifier, + [343796] = 2, + ACTIONS(29235), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343804] = 2, + ACTIONS(29237), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343812] = 2, + ACTIONS(29239), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343820] = 2, + ACTIONS(29241), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343828] = 2, + ACTIONS(29243), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343836] = 2, + ACTIONS(29245), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343844] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29247), 1, + sym_identifier, + [343854] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29249), 1, + sym_identifier, + [343864] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29251), 1, + sym_identifier, + [343874] = 2, + ACTIONS(29253), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343882] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29255), 1, + sym_identifier, + [343892] = 2, + ACTIONS(29257), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343900] = 2, + ACTIONS(29259), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343908] = 2, + ACTIONS(29261), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343916] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29263), 1, + sym_identifier, + [343926] = 2, + ACTIONS(29265), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343934] = 2, + ACTIONS(29267), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343942] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29269), 1, + sym_identifier, + [343952] = 2, + ACTIONS(29271), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343960] = 2, + ACTIONS(29273), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343968] = 2, + ACTIONS(29275), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343976] = 2, + ACTIONS(25572), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343984] = 2, + ACTIONS(25602), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [343992] = 2, + ACTIONS(29277), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344000] = 2, + ACTIONS(29279), 1, + sym_number_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344008] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29281), 1, + sym_identifier, + [344018] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29283), 1, + sym_identifier, + [344028] = 2, + ACTIONS(29285), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344036] = 2, + ACTIONS(29287), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344044] = 2, + ACTIONS(29289), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344052] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29291), 1, + sym_identifier, + [344062] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29293), 1, + sym_identifier, + [344072] = 2, + ACTIONS(29295), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344080] = 2, + ACTIONS(29297), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344088] = 2, + ACTIONS(29299), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344096] = 2, + ACTIONS(29301), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344104] = 2, + ACTIONS(29303), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344112] = 2, + ACTIONS(29305), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344120] = 2, + ACTIONS(29307), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344128] = 2, + ACTIONS(29309), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344136] = 2, + ACTIONS(29311), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344144] = 2, + ACTIONS(29313), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344152] = 2, + ACTIONS(29315), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344160] = 2, + ACTIONS(29317), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344168] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29319), 1, + sym_identifier, + [344178] = 2, + ACTIONS(29321), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344186] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29323), 1, + sym_identifier, + [344196] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29325), 1, + sym_identifier, + [344206] = 2, + ACTIONS(29327), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344214] = 2, + ACTIONS(29329), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344222] = 2, + ACTIONS(29331), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344230] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29333), 1, + sym_identifier, + [344240] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29335), 1, + sym_identifier, + [344250] = 2, + ACTIONS(29337), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344258] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29339), 1, + sym_identifier, + [344268] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29341), 1, + sym_identifier, + [344278] = 2, + ACTIONS(29343), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344286] = 2, + ACTIONS(29345), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344294] = 2, + ACTIONS(29347), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344302] = 2, + ACTIONS(29349), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344310] = 2, + ACTIONS(29351), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344318] = 2, + ACTIONS(29353), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344326] = 2, + ACTIONS(29355), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344334] = 2, + ACTIONS(29357), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344342] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29359), 1, + sym_identifier, + [344352] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29361), 1, + sym_identifier, + [344362] = 2, + ACTIONS(29363), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344370] = 2, + ACTIONS(29365), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344378] = 2, + ACTIONS(29367), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344386] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29369), 1, + sym_identifier, + [344396] = 2, + ACTIONS(29371), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344404] = 2, + ACTIONS(29373), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344412] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29375), 1, + sym_identifier, + [344422] = 2, + ACTIONS(29377), 1, + aux_sym_as_type_clause_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344430] = 2, + ACTIONS(29379), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344438] = 2, + ACTIONS(29381), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344446] = 2, + ACTIONS(26337), 1, + aux_sym__property_get_header_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344454] = 2, + ACTIONS(29383), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344462] = 2, + ACTIONS(29385), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344470] = 2, + ACTIONS(29387), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344478] = 2, + ACTIONS(29389), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344486] = 2, + ACTIONS(29391), 1, + aux_sym_on_error_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344494] = 2, + ACTIONS(29393), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344502] = 2, + ACTIONS(29395), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344510] = 2, + ACTIONS(29397), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344518] = 2, + ACTIONS(29399), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344526] = 2, + ACTIONS(29401), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344534] = 2, + ACTIONS(29403), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344542] = 2, + ACTIONS(29405), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344550] = 2, + ACTIONS(29407), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344558] = 2, + ACTIONS(29409), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344566] = 2, + ACTIONS(29411), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344574] = 2, + ACTIONS(29413), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344582] = 2, + ACTIONS(29415), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344590] = 2, + ACTIONS(29417), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344598] = 2, + ACTIONS(29419), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344606] = 2, + ACTIONS(29421), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344614] = 2, + ACTIONS(29423), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344622] = 2, + ACTIONS(29425), 1, + sym_newline, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344630] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29427), 1, + sym_identifier, + [344640] = 2, + ACTIONS(29429), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344648] = 2, + ACTIONS(29431), 1, + aux_sym_declare_sub_statement_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344656] = 2, + ACTIONS(29433), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344664] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29435), 1, + sym_identifier, + [344674] = 2, + ACTIONS(23675), 1, + aux_sym_type_preprocessor_if_token3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344682] = 2, + ACTIONS(29437), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344690] = 2, + ACTIONS(29439), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344698] = 2, + ACTIONS(29441), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344706] = 2, + ACTIONS(29443), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344714] = 2, + ACTIONS(29445), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344722] = 2, + ACTIONS(29447), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344730] = 2, + ACTIONS(29449), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344738] = 2, + ACTIONS(29451), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344746] = 2, + ACTIONS(29453), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344754] = 2, + ACTIONS(29455), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344762] = 2, + ACTIONS(29457), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344770] = 2, + ACTIONS(29459), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344778] = 2, + ACTIONS(29461), 1, + aux_sym__multiline_for_tail_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344786] = 2, + ACTIONS(29463), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344794] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29465), 1, + sym_identifier, + [344804] = 2, + ACTIONS(29467), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344812] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29469), 1, + sym_identifier, + [344822] = 2, + ACTIONS(29471), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344830] = 2, + ACTIONS(29473), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344838] = 2, + ACTIONS(29475), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344846] = 2, + ACTIONS(29477), 1, + aux_sym_type_preprocessor_if_token4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344854] = 2, + ACTIONS(29479), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344862] = 2, + ACTIONS(29481), 1, + aux_sym_select_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344870] = 2, + ACTIONS(29483), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344878] = 2, + ACTIONS(29485), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344886] = 2, + ACTIONS(29487), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344894] = 2, + ACTIONS(29489), 1, + aux_sym_do_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344902] = 2, + ACTIONS(29491), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344910] = 2, + ACTIONS(29493), 1, + aux_sym_while_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344918] = 2, + ACTIONS(29495), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344926] = 2, + ACTIONS(29497), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344934] = 2, + ACTIONS(29499), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344942] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(29501), 1, + sym_identifier, + [344952] = 2, + ACTIONS(29503), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344960] = 2, + ACTIONS(29505), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344968] = 2, + ACTIONS(29507), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344976] = 2, + ACTIONS(29509), 1, + aux_sym_select_statement_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344984] = 2, + ACTIONS(29511), 1, + aux_sym_with_statement_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [344992] = 2, + ACTIONS(29513), 1, + aux_sym_frm_begin_block_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(7339)] = 0, + [SMALL_STATE(7340)] = 74, + [SMALL_STATE(7341)] = 152, + [SMALL_STATE(7342)] = 226, + [SMALL_STATE(7343)] = 298, + [SMALL_STATE(7344)] = 367, + [SMALL_STATE(7345)] = 436, + [SMALL_STATE(7346)] = 507, + [SMALL_STATE(7347)] = 576, + [SMALL_STATE(7348)] = 647, + [SMALL_STATE(7349)] = 716, + [SMALL_STATE(7350)] = 801, + [SMALL_STATE(7351)] = 894, + [SMALL_STATE(7352)] = 963, + [SMALL_STATE(7353)] = 1046, + [SMALL_STATE(7354)] = 1123, + [SMALL_STATE(7355)] = 1192, + [SMALL_STATE(7356)] = 1265, + [SMALL_STATE(7357)] = 1334, + [SMALL_STATE(7358)] = 1417, + [SMALL_STATE(7359)] = 1500, + [SMALL_STATE(7360)] = 1571, + [SMALL_STATE(7361)] = 1658, + [SMALL_STATE(7362)] = 1727, + [SMALL_STATE(7363)] = 1818, + [SMALL_STATE(7364)] = 1893, + [SMALL_STATE(7365)] = 1986, + [SMALL_STATE(7366)] = 2055, + [SMALL_STATE(7367)] = 2126, + [SMALL_STATE(7368)] = 2195, + [SMALL_STATE(7369)] = 2284, + [SMALL_STATE(7370)] = 2353, + [SMALL_STATE(7371)] = 2422, + [SMALL_STATE(7372)] = 2497, + [SMALL_STATE(7373)] = 2578, + [SMALL_STATE(7374)] = 2647, + [SMALL_STATE(7375)] = 2716, + [SMALL_STATE(7376)] = 2785, + [SMALL_STATE(7377)] = 2854, + [SMALL_STATE(7378)] = 2923, + [SMALL_STATE(7379)] = 2992, + [SMALL_STATE(7380)] = 3062, + [SMALL_STATE(7381)] = 3136, + [SMALL_STATE(7382)] = 3206, + [SMALL_STATE(7383)] = 3277, + [SMALL_STATE(7384)] = 3358, + [SMALL_STATE(7385)] = 3441, + [SMALL_STATE(7386)] = 3532, + [SMALL_STATE(7387)] = 3601, + [SMALL_STATE(7388)] = 3670, + [SMALL_STATE(7389)] = 3755, + [SMALL_STATE(7390)] = 3842, + [SMALL_STATE(7391)] = 3933, + [SMALL_STATE(7392)] = 4022, + [SMALL_STATE(7393)] = 4095, + [SMALL_STATE(7394)] = 4164, + [SMALL_STATE(7395)] = 4255, + [SMALL_STATE(7396)] = 4324, + [SMALL_STATE(7397)] = 4393, + [SMALL_STATE(7398)] = 4464, + [SMALL_STATE(7399)] = 4537, + [SMALL_STATE(7400)] = 4612, + [SMALL_STATE(7401)] = 4691, + [SMALL_STATE(7402)] = 4772, + [SMALL_STATE(7403)] = 4855, + [SMALL_STATE(7404)] = 4940, + [SMALL_STATE(7405)] = 5027, + [SMALL_STATE(7406)] = 5108, + [SMALL_STATE(7407)] = 5197, + [SMALL_STATE(7408)] = 5278, + [SMALL_STATE(7409)] = 5369, + [SMALL_STATE(7410)] = 5444, + [SMALL_STATE(7411)] = 5513, + [SMALL_STATE(7412)] = 5594, + [SMALL_STATE(7413)] = 5685, + [SMALL_STATE(7414)] = 5764, + [SMALL_STATE(7415)] = 5854, + [SMALL_STATE(7416)] = 5948, + [SMALL_STATE(7417)] = 6039, + [SMALL_STATE(7418)] = 6156, + [SMALL_STATE(7419)] = 6270, + [SMALL_STATE(7420)] = 6398, + [SMALL_STATE(7421)] = 6525, + [SMALL_STATE(7422)] = 6652, + [SMALL_STATE(7423)] = 6779, + [SMALL_STATE(7424)] = 6906, + [SMALL_STATE(7425)] = 7033, + [SMALL_STATE(7426)] = 7160, + [SMALL_STATE(7427)] = 7297, + [SMALL_STATE(7428)] = 7424, + [SMALL_STATE(7429)] = 7551, + [SMALL_STATE(7430)] = 7678, + [SMALL_STATE(7431)] = 7805, + [SMALL_STATE(7432)] = 7930, + [SMALL_STATE(7433)] = 8057, + [SMALL_STATE(7434)] = 8184, + [SMALL_STATE(7435)] = 8311, + [SMALL_STATE(7436)] = 8448, + [SMALL_STATE(7437)] = 8575, + [SMALL_STATE(7438)] = 8702, + [SMALL_STATE(7439)] = 8829, + [SMALL_STATE(7440)] = 8956, + [SMALL_STATE(7441)] = 9083, + [SMALL_STATE(7442)] = 9220, + [SMALL_STATE(7443)] = 9357, + [SMALL_STATE(7444)] = 9484, + [SMALL_STATE(7445)] = 9611, + [SMALL_STATE(7446)] = 9745, + [SMALL_STATE(7447)] = 9879, + [SMALL_STATE(7448)] = 10013, + [SMALL_STATE(7449)] = 10147, + [SMALL_STATE(7450)] = 10281, + [SMALL_STATE(7451)] = 10415, + [SMALL_STATE(7452)] = 10549, + [SMALL_STATE(7453)] = 10683, + [SMALL_STATE(7454)] = 10814, + [SMALL_STATE(7455)] = 10945, + [SMALL_STATE(7456)] = 11076, + [SMALL_STATE(7457)] = 11207, + [SMALL_STATE(7458)] = 11325, + [SMALL_STATE(7459)] = 11443, + [SMALL_STATE(7460)] = 11561, + [SMALL_STATE(7461)] = 11679, + [SMALL_STATE(7462)] = 11797, + [SMALL_STATE(7463)] = 11915, + [SMALL_STATE(7464)] = 12033, + [SMALL_STATE(7465)] = 12151, + [SMALL_STATE(7466)] = 12269, + [SMALL_STATE(7467)] = 12387, + [SMALL_STATE(7468)] = 12505, + [SMALL_STATE(7469)] = 12623, + [SMALL_STATE(7470)] = 12741, + [SMALL_STATE(7471)] = 12859, + [SMALL_STATE(7472)] = 12977, + [SMALL_STATE(7473)] = 13095, + [SMALL_STATE(7474)] = 13213, + [SMALL_STATE(7475)] = 13331, + [SMALL_STATE(7476)] = 13449, + [SMALL_STATE(7477)] = 13567, + [SMALL_STATE(7478)] = 13685, + [SMALL_STATE(7479)] = 13803, + [SMALL_STATE(7480)] = 13921, + [SMALL_STATE(7481)] = 14039, + [SMALL_STATE(7482)] = 14157, + [SMALL_STATE(7483)] = 14275, + [SMALL_STATE(7484)] = 14393, + [SMALL_STATE(7485)] = 14511, + [SMALL_STATE(7486)] = 14629, + [SMALL_STATE(7487)] = 14747, + [SMALL_STATE(7488)] = 14865, + [SMALL_STATE(7489)] = 14983, + [SMALL_STATE(7490)] = 15101, + [SMALL_STATE(7491)] = 15219, + [SMALL_STATE(7492)] = 15337, + [SMALL_STATE(7493)] = 15455, + [SMALL_STATE(7494)] = 15573, + [SMALL_STATE(7495)] = 15691, + [SMALL_STATE(7496)] = 15809, + [SMALL_STATE(7497)] = 15927, + [SMALL_STATE(7498)] = 16045, + [SMALL_STATE(7499)] = 16173, + [SMALL_STATE(7500)] = 16291, + [SMALL_STATE(7501)] = 16409, + [SMALL_STATE(7502)] = 16527, + [SMALL_STATE(7503)] = 16645, + [SMALL_STATE(7504)] = 16763, + [SMALL_STATE(7505)] = 16881, + [SMALL_STATE(7506)] = 17009, + [SMALL_STATE(7507)] = 17127, + [SMALL_STATE(7508)] = 17255, + [SMALL_STATE(7509)] = 17373, + [SMALL_STATE(7510)] = 17491, + [SMALL_STATE(7511)] = 17619, + [SMALL_STATE(7512)] = 17737, + [SMALL_STATE(7513)] = 17855, + [SMALL_STATE(7514)] = 17983, + [SMALL_STATE(7515)] = 18101, + [SMALL_STATE(7516)] = 18219, + [SMALL_STATE(7517)] = 18347, + [SMALL_STATE(7518)] = 18465, + [SMALL_STATE(7519)] = 18583, + [SMALL_STATE(7520)] = 18701, + [SMALL_STATE(7521)] = 18819, + [SMALL_STATE(7522)] = 18937, + [SMALL_STATE(7523)] = 19055, + [SMALL_STATE(7524)] = 19173, + [SMALL_STATE(7525)] = 19301, + [SMALL_STATE(7526)] = 19419, + [SMALL_STATE(7527)] = 19537, + [SMALL_STATE(7528)] = 19655, + [SMALL_STATE(7529)] = 19773, + [SMALL_STATE(7530)] = 19891, + [SMALL_STATE(7531)] = 19963, + [SMALL_STATE(7532)] = 20081, + [SMALL_STATE(7533)] = 20199, + [SMALL_STATE(7534)] = 20317, + [SMALL_STATE(7535)] = 20435, + [SMALL_STATE(7536)] = 20553, + [SMALL_STATE(7537)] = 20671, + [SMALL_STATE(7538)] = 20789, + [SMALL_STATE(7539)] = 20907, + [SMALL_STATE(7540)] = 21025, + [SMALL_STATE(7541)] = 21143, + [SMALL_STATE(7542)] = 21271, + [SMALL_STATE(7543)] = 21389, + [SMALL_STATE(7544)] = 21507, + [SMALL_STATE(7545)] = 21625, + [SMALL_STATE(7546)] = 21753, + [SMALL_STATE(7547)] = 21871, + [SMALL_STATE(7548)] = 21999, + [SMALL_STATE(7549)] = 22117, + [SMALL_STATE(7550)] = 22232, + [SMALL_STATE(7551)] = 22347, + [SMALL_STATE(7552)] = 22462, + [SMALL_STATE(7553)] = 22529, + [SMALL_STATE(7554)] = 22596, + [SMALL_STATE(7555)] = 22711, + [SMALL_STATE(7556)] = 22777, + [SMALL_STATE(7557)] = 22839, + [SMALL_STATE(7558)] = 22901, + [SMALL_STATE(7559)] = 23011, + [SMALL_STATE(7560)] = 23123, + [SMALL_STATE(7561)] = 23191, + [SMALL_STATE(7562)] = 23301, + [SMALL_STATE(7563)] = 23361, + [SMALL_STATE(7564)] = 23429, + [SMALL_STATE(7565)] = 23497, + [SMALL_STATE(7566)] = 23563, + [SMALL_STATE(7567)] = 23631, + [SMALL_STATE(7568)] = 23696, + [SMALL_STATE(7569)] = 23761, + [SMALL_STATE(7570)] = 23870, + [SMALL_STATE(7571)] = 23979, + [SMALL_STATE(7572)] = 24036, + [SMALL_STATE(7573)] = 24145, + [SMALL_STATE(7574)] = 24254, + [SMALL_STATE(7575)] = 24363, + [SMALL_STATE(7576)] = 24420, + [SMALL_STATE(7577)] = 24485, + [SMALL_STATE(7578)] = 24594, + [SMALL_STATE(7579)] = 24703, + [SMALL_STATE(7580)] = 24812, + [SMALL_STATE(7581)] = 24921, + [SMALL_STATE(7582)] = 25030, + [SMALL_STATE(7583)] = 25095, + [SMALL_STATE(7584)] = 25204, + [SMALL_STATE(7585)] = 25313, + [SMALL_STATE(7586)] = 25422, + [SMALL_STATE(7587)] = 25479, + [SMALL_STATE(7588)] = 25544, + [SMALL_STATE(7589)] = 25653, + [SMALL_STATE(7590)] = 25762, + [SMALL_STATE(7591)] = 25827, + [SMALL_STATE(7592)] = 25936, + [SMALL_STATE(7593)] = 25997, + [SMALL_STATE(7594)] = 26106, + [SMALL_STATE(7595)] = 26167, + [SMALL_STATE(7596)] = 26276, + [SMALL_STATE(7597)] = 26385, + [SMALL_STATE(7598)] = 26494, + [SMALL_STATE(7599)] = 26603, + [SMALL_STATE(7600)] = 26712, + [SMALL_STATE(7601)] = 26818, + [SMALL_STATE(7602)] = 26924, + [SMALL_STATE(7603)] = 27030, + [SMALL_STATE(7604)] = 27136, + [SMALL_STATE(7605)] = 27198, + [SMALL_STATE(7606)] = 27260, + [SMALL_STATE(7607)] = 27366, + [SMALL_STATE(7608)] = 27472, + [SMALL_STATE(7609)] = 27578, + [SMALL_STATE(7610)] = 27634, + [SMALL_STATE(7611)] = 27740, + [SMALL_STATE(7612)] = 27846, + [SMALL_STATE(7613)] = 27906, + [SMALL_STATE(7614)] = 27962, + [SMALL_STATE(7615)] = 28068, + [SMALL_STATE(7616)] = 28124, + [SMALL_STATE(7617)] = 28184, + [SMALL_STATE(7618)] = 28290, + [SMALL_STATE(7619)] = 28396, + [SMALL_STATE(7620)] = 28458, + [SMALL_STATE(7621)] = 28564, + [SMALL_STATE(7622)] = 28670, + [SMALL_STATE(7623)] = 28776, + [SMALL_STATE(7624)] = 28838, + [SMALL_STATE(7625)] = 28944, + [SMALL_STATE(7626)] = 29050, + [SMALL_STATE(7627)] = 29110, + [SMALL_STATE(7628)] = 29216, + [SMALL_STATE(7629)] = 29322, + [SMALL_STATE(7630)] = 29428, + [SMALL_STATE(7631)] = 29534, + [SMALL_STATE(7632)] = 29593, + [SMALL_STATE(7633)] = 29648, + [SMALL_STATE(7634)] = 29707, + [SMALL_STATE(7635)] = 29766, + [SMALL_STATE(7636)] = 29825, + [SMALL_STATE(7637)] = 29884, + [SMALL_STATE(7638)] = 29943, + [SMALL_STATE(7639)] = 29998, + [SMALL_STATE(7640)] = 30057, + [SMALL_STATE(7641)] = 30116, + [SMALL_STATE(7642)] = 30175, + [SMALL_STATE(7643)] = 30234, + [SMALL_STATE(7644)] = 30289, + [SMALL_STATE(7645)] = 30348, + [SMALL_STATE(7646)] = 30407, + [SMALL_STATE(7647)] = 30466, + [SMALL_STATE(7648)] = 30525, + [SMALL_STATE(7649)] = 30584, + [SMALL_STATE(7650)] = 30639, + [SMALL_STATE(7651)] = 30698, + [SMALL_STATE(7652)] = 30757, + [SMALL_STATE(7653)] = 30816, + [SMALL_STATE(7654)] = 30875, + [SMALL_STATE(7655)] = 30930, + [SMALL_STATE(7656)] = 30985, + [SMALL_STATE(7657)] = 31044, + [SMALL_STATE(7658)] = 31103, + [SMALL_STATE(7659)] = 31162, + [SMALL_STATE(7660)] = 31221, + [SMALL_STATE(7661)] = 31276, + [SMALL_STATE(7662)] = 31333, + [SMALL_STATE(7663)] = 31392, + [SMALL_STATE(7664)] = 31451, + [SMALL_STATE(7665)] = 31510, + [SMALL_STATE(7666)] = 31569, + [SMALL_STATE(7667)] = 31628, + [SMALL_STATE(7668)] = 31687, + [SMALL_STATE(7669)] = 31746, + [SMALL_STATE(7670)] = 31805, + [SMALL_STATE(7671)] = 31864, + [SMALL_STATE(7672)] = 31923, + [SMALL_STATE(7673)] = 31982, + [SMALL_STATE(7674)] = 32041, + [SMALL_STATE(7675)] = 32101, + [SMALL_STATE(7676)] = 32201, + [SMALL_STATE(7677)] = 32255, + [SMALL_STATE(7678)] = 32309, + [SMALL_STATE(7679)] = 32363, + [SMALL_STATE(7680)] = 32417, + [SMALL_STATE(7681)] = 32517, + [SMALL_STATE(7682)] = 32571, + [SMALL_STATE(7683)] = 32671, + [SMALL_STATE(7684)] = 32725, + [SMALL_STATE(7685)] = 32779, + [SMALL_STATE(7686)] = 32833, + [SMALL_STATE(7687)] = 32887, + [SMALL_STATE(7688)] = 32941, + [SMALL_STATE(7689)] = 32995, + [SMALL_STATE(7690)] = 33049, + [SMALL_STATE(7691)] = 33103, + [SMALL_STATE(7692)] = 33157, + [SMALL_STATE(7693)] = 33211, + [SMALL_STATE(7694)] = 33311, + [SMALL_STATE(7695)] = 33411, + [SMALL_STATE(7696)] = 33511, + [SMALL_STATE(7697)] = 33567, + [SMALL_STATE(7698)] = 33667, + [SMALL_STATE(7699)] = 33767, + [SMALL_STATE(7700)] = 33867, + [SMALL_STATE(7701)] = 33967, + [SMALL_STATE(7702)] = 34067, + [SMALL_STATE(7703)] = 34167, + [SMALL_STATE(7704)] = 34267, + [SMALL_STATE(7705)] = 34367, + [SMALL_STATE(7706)] = 34469, + [SMALL_STATE(7707)] = 34569, + [SMALL_STATE(7708)] = 34669, + [SMALL_STATE(7709)] = 34769, + [SMALL_STATE(7710)] = 34869, + [SMALL_STATE(7711)] = 34923, + [SMALL_STATE(7712)] = 35023, + [SMALL_STATE(7713)] = 35123, + [SMALL_STATE(7714)] = 35225, + [SMALL_STATE(7715)] = 35325, + [SMALL_STATE(7716)] = 35425, + [SMALL_STATE(7717)] = 35525, + [SMALL_STATE(7718)] = 35625, + [SMALL_STATE(7719)] = 35725, + [SMALL_STATE(7720)] = 35825, + [SMALL_STATE(7721)] = 35927, + [SMALL_STATE(7722)] = 36027, + [SMALL_STATE(7723)] = 36127, + [SMALL_STATE(7724)] = 36227, + [SMALL_STATE(7725)] = 36327, + [SMALL_STATE(7726)] = 36427, + [SMALL_STATE(7727)] = 36527, + [SMALL_STATE(7728)] = 36629, + [SMALL_STATE(7729)] = 36729, + [SMALL_STATE(7730)] = 36783, + [SMALL_STATE(7731)] = 36883, + [SMALL_STATE(7732)] = 36983, + [SMALL_STATE(7733)] = 37083, + [SMALL_STATE(7734)] = 37183, + [SMALL_STATE(7735)] = 37283, + [SMALL_STATE(7736)] = 37385, + [SMALL_STATE(7737)] = 37485, + [SMALL_STATE(7738)] = 37585, + [SMALL_STATE(7739)] = 37685, + [SMALL_STATE(7740)] = 37785, + [SMALL_STATE(7741)] = 37885, + [SMALL_STATE(7742)] = 37985, + [SMALL_STATE(7743)] = 38087, + [SMALL_STATE(7744)] = 38187, + [SMALL_STATE(7745)] = 38241, + [SMALL_STATE(7746)] = 38341, + [SMALL_STATE(7747)] = 38441, + [SMALL_STATE(7748)] = 38541, + [SMALL_STATE(7749)] = 38641, + [SMALL_STATE(7750)] = 38741, + [SMALL_STATE(7751)] = 38843, + [SMALL_STATE(7752)] = 38943, + [SMALL_STATE(7753)] = 39043, + [SMALL_STATE(7754)] = 39143, + [SMALL_STATE(7755)] = 39243, + [SMALL_STATE(7756)] = 39343, + [SMALL_STATE(7757)] = 39443, + [SMALL_STATE(7758)] = 39545, + [SMALL_STATE(7759)] = 39645, + [SMALL_STATE(7760)] = 39745, + [SMALL_STATE(7761)] = 39845, + [SMALL_STATE(7762)] = 39945, + [SMALL_STATE(7763)] = 40045, + [SMALL_STATE(7764)] = 40145, + [SMALL_STATE(7765)] = 40247, + [SMALL_STATE(7766)] = 40347, + [SMALL_STATE(7767)] = 40447, + [SMALL_STATE(7768)] = 40547, + [SMALL_STATE(7769)] = 40647, + [SMALL_STATE(7770)] = 40747, + [SMALL_STATE(7771)] = 40847, + [SMALL_STATE(7772)] = 40947, + [SMALL_STATE(7773)] = 41049, + [SMALL_STATE(7774)] = 41149, + [SMALL_STATE(7775)] = 41249, + [SMALL_STATE(7776)] = 41349, + [SMALL_STATE(7777)] = 41449, + [SMALL_STATE(7778)] = 41549, + [SMALL_STATE(7779)] = 41649, + [SMALL_STATE(7780)] = 41751, + [SMALL_STATE(7781)] = 41853, + [SMALL_STATE(7782)] = 41955, + [SMALL_STATE(7783)] = 42057, + [SMALL_STATE(7784)] = 42159, + [SMALL_STATE(7785)] = 42261, + [SMALL_STATE(7786)] = 42361, + [SMALL_STATE(7787)] = 42463, + [SMALL_STATE(7788)] = 42563, + [SMALL_STATE(7789)] = 42665, + [SMALL_STATE(7790)] = 42767, + [SMALL_STATE(7791)] = 42869, + [SMALL_STATE(7792)] = 42971, + [SMALL_STATE(7793)] = 43073, + [SMALL_STATE(7794)] = 43175, + [SMALL_STATE(7795)] = 43277, + [SMALL_STATE(7796)] = 43379, + [SMALL_STATE(7797)] = 43481, + [SMALL_STATE(7798)] = 43583, + [SMALL_STATE(7799)] = 43685, + [SMALL_STATE(7800)] = 43787, + [SMALL_STATE(7801)] = 43889, + [SMALL_STATE(7802)] = 43991, + [SMALL_STATE(7803)] = 44093, + [SMALL_STATE(7804)] = 44195, + [SMALL_STATE(7805)] = 44297, + [SMALL_STATE(7806)] = 44399, + [SMALL_STATE(7807)] = 44501, + [SMALL_STATE(7808)] = 44603, + [SMALL_STATE(7809)] = 44705, + [SMALL_STATE(7810)] = 44807, + [SMALL_STATE(7811)] = 44909, + [SMALL_STATE(7812)] = 45011, + [SMALL_STATE(7813)] = 45113, + [SMALL_STATE(7814)] = 45215, + [SMALL_STATE(7815)] = 45317, + [SMALL_STATE(7816)] = 45419, + [SMALL_STATE(7817)] = 45521, + [SMALL_STATE(7818)] = 45623, + [SMALL_STATE(7819)] = 45725, + [SMALL_STATE(7820)] = 45827, + [SMALL_STATE(7821)] = 45929, + [SMALL_STATE(7822)] = 46031, + [SMALL_STATE(7823)] = 46133, + [SMALL_STATE(7824)] = 46235, + [SMALL_STATE(7825)] = 46335, + [SMALL_STATE(7826)] = 46437, + [SMALL_STATE(7827)] = 46539, + [SMALL_STATE(7828)] = 46641, + [SMALL_STATE(7829)] = 46743, + [SMALL_STATE(7830)] = 46845, + [SMALL_STATE(7831)] = 46947, + [SMALL_STATE(7832)] = 47049, + [SMALL_STATE(7833)] = 47149, + [SMALL_STATE(7834)] = 47251, + [SMALL_STATE(7835)] = 47353, + [SMALL_STATE(7836)] = 47453, + [SMALL_STATE(7837)] = 47553, + [SMALL_STATE(7838)] = 47653, + [SMALL_STATE(7839)] = 47753, + [SMALL_STATE(7840)] = 47853, + [SMALL_STATE(7841)] = 47955, + [SMALL_STATE(7842)] = 48055, + [SMALL_STATE(7843)] = 48155, + [SMALL_STATE(7844)] = 48255, + [SMALL_STATE(7845)] = 48355, + [SMALL_STATE(7846)] = 48455, + [SMALL_STATE(7847)] = 48557, + [SMALL_STATE(7848)] = 48657, + [SMALL_STATE(7849)] = 48757, + [SMALL_STATE(7850)] = 48857, + [SMALL_STATE(7851)] = 48957, + [SMALL_STATE(7852)] = 49057, + [SMALL_STATE(7853)] = 49159, + [SMALL_STATE(7854)] = 49259, + [SMALL_STATE(7855)] = 49359, + [SMALL_STATE(7856)] = 49459, + [SMALL_STATE(7857)] = 49559, + [SMALL_STATE(7858)] = 49659, + [SMALL_STATE(7859)] = 49761, + [SMALL_STATE(7860)] = 49861, + [SMALL_STATE(7861)] = 49961, + [SMALL_STATE(7862)] = 50061, + [SMALL_STATE(7863)] = 50161, + [SMALL_STATE(7864)] = 50261, + [SMALL_STATE(7865)] = 50361, + [SMALL_STATE(7866)] = 50463, + [SMALL_STATE(7867)] = 50563, + [SMALL_STATE(7868)] = 50663, + [SMALL_STATE(7869)] = 50763, + [SMALL_STATE(7870)] = 50863, + [SMALL_STATE(7871)] = 50963, + [SMALL_STATE(7872)] = 51065, + [SMALL_STATE(7873)] = 51167, + [SMALL_STATE(7874)] = 51267, + [SMALL_STATE(7875)] = 51367, + [SMALL_STATE(7876)] = 51467, + [SMALL_STATE(7877)] = 51567, + [SMALL_STATE(7878)] = 51667, + [SMALL_STATE(7879)] = 51767, + [SMALL_STATE(7880)] = 51869, + [SMALL_STATE(7881)] = 51969, + [SMALL_STATE(7882)] = 52069, + [SMALL_STATE(7883)] = 52169, + [SMALL_STATE(7884)] = 52269, + [SMALL_STATE(7885)] = 52369, + [SMALL_STATE(7886)] = 52471, + [SMALL_STATE(7887)] = 52571, + [SMALL_STATE(7888)] = 52673, + [SMALL_STATE(7889)] = 52773, + [SMALL_STATE(7890)] = 52873, + [SMALL_STATE(7891)] = 52973, + [SMALL_STATE(7892)] = 53073, + [SMALL_STATE(7893)] = 53173, + [SMALL_STATE(7894)] = 53273, + [SMALL_STATE(7895)] = 53373, + [SMALL_STATE(7896)] = 53473, + [SMALL_STATE(7897)] = 53573, + [SMALL_STATE(7898)] = 53673, + [SMALL_STATE(7899)] = 53773, + [SMALL_STATE(7900)] = 53873, + [SMALL_STATE(7901)] = 53973, + [SMALL_STATE(7902)] = 54073, + [SMALL_STATE(7903)] = 54173, + [SMALL_STATE(7904)] = 54273, + [SMALL_STATE(7905)] = 54373, + [SMALL_STATE(7906)] = 54473, + [SMALL_STATE(7907)] = 54573, + [SMALL_STATE(7908)] = 54673, + [SMALL_STATE(7909)] = 54773, + [SMALL_STATE(7910)] = 54873, + [SMALL_STATE(7911)] = 54973, + [SMALL_STATE(7912)] = 55073, + [SMALL_STATE(7913)] = 55173, + [SMALL_STATE(7914)] = 55273, + [SMALL_STATE(7915)] = 55373, + [SMALL_STATE(7916)] = 55473, + [SMALL_STATE(7917)] = 55575, + [SMALL_STATE(7918)] = 55628, + [SMALL_STATE(7919)] = 55681, + [SMALL_STATE(7920)] = 55734, + [SMALL_STATE(7921)] = 55787, + [SMALL_STATE(7922)] = 55840, + [SMALL_STATE(7923)] = 55895, + [SMALL_STATE(7924)] = 55948, + [SMALL_STATE(7925)] = 56001, + [SMALL_STATE(7926)] = 56054, + [SMALL_STATE(7927)] = 56107, + [SMALL_STATE(7928)] = 56160, + [SMALL_STATE(7929)] = 56213, + [SMALL_STATE(7930)] = 56266, + [SMALL_STATE(7931)] = 56319, + [SMALL_STATE(7932)] = 56372, + [SMALL_STATE(7933)] = 56425, + [SMALL_STATE(7934)] = 56478, + [SMALL_STATE(7935)] = 56531, + [SMALL_STATE(7936)] = 56584, + [SMALL_STATE(7937)] = 56637, + [SMALL_STATE(7938)] = 56690, + [SMALL_STATE(7939)] = 56743, + [SMALL_STATE(7940)] = 56796, + [SMALL_STATE(7941)] = 56849, + [SMALL_STATE(7942)] = 56902, + [SMALL_STATE(7943)] = 56955, + [SMALL_STATE(7944)] = 57008, + [SMALL_STATE(7945)] = 57061, + [SMALL_STATE(7946)] = 57114, + [SMALL_STATE(7947)] = 57167, + [SMALL_STATE(7948)] = 57220, + [SMALL_STATE(7949)] = 57273, + [SMALL_STATE(7950)] = 57326, + [SMALL_STATE(7951)] = 57379, + [SMALL_STATE(7952)] = 57432, + [SMALL_STATE(7953)] = 57485, + [SMALL_STATE(7954)] = 57538, + [SMALL_STATE(7955)] = 57591, + [SMALL_STATE(7956)] = 57644, + [SMALL_STATE(7957)] = 57697, + [SMALL_STATE(7958)] = 57750, + [SMALL_STATE(7959)] = 57803, + [SMALL_STATE(7960)] = 57856, + [SMALL_STATE(7961)] = 57909, + [SMALL_STATE(7962)] = 57962, + [SMALL_STATE(7963)] = 58015, + [SMALL_STATE(7964)] = 58068, + [SMALL_STATE(7965)] = 58121, + [SMALL_STATE(7966)] = 58174, + [SMALL_STATE(7967)] = 58227, + [SMALL_STATE(7968)] = 58280, + [SMALL_STATE(7969)] = 58333, + [SMALL_STATE(7970)] = 58386, + [SMALL_STATE(7971)] = 58439, + [SMALL_STATE(7972)] = 58492, + [SMALL_STATE(7973)] = 58545, + [SMALL_STATE(7974)] = 58598, + [SMALL_STATE(7975)] = 58651, + [SMALL_STATE(7976)] = 58704, + [SMALL_STATE(7977)] = 58757, + [SMALL_STATE(7978)] = 58810, + [SMALL_STATE(7979)] = 58863, + [SMALL_STATE(7980)] = 58916, + [SMALL_STATE(7981)] = 58969, + [SMALL_STATE(7982)] = 59022, + [SMALL_STATE(7983)] = 59075, + [SMALL_STATE(7984)] = 59128, + [SMALL_STATE(7985)] = 59181, + [SMALL_STATE(7986)] = 59234, + [SMALL_STATE(7987)] = 59287, + [SMALL_STATE(7988)] = 59340, + [SMALL_STATE(7989)] = 59393, + [SMALL_STATE(7990)] = 59446, + [SMALL_STATE(7991)] = 59499, + [SMALL_STATE(7992)] = 59552, + [SMALL_STATE(7993)] = 59605, + [SMALL_STATE(7994)] = 59658, + [SMALL_STATE(7995)] = 59711, + [SMALL_STATE(7996)] = 59764, + [SMALL_STATE(7997)] = 59817, + [SMALL_STATE(7998)] = 59870, + [SMALL_STATE(7999)] = 59923, + [SMALL_STATE(8000)] = 59976, + [SMALL_STATE(8001)] = 60029, + [SMALL_STATE(8002)] = 60082, + [SMALL_STATE(8003)] = 60135, + [SMALL_STATE(8004)] = 60188, + [SMALL_STATE(8005)] = 60241, + [SMALL_STATE(8006)] = 60294, + [SMALL_STATE(8007)] = 60347, + [SMALL_STATE(8008)] = 60400, + [SMALL_STATE(8009)] = 60453, + [SMALL_STATE(8010)] = 60506, + [SMALL_STATE(8011)] = 60559, + [SMALL_STATE(8012)] = 60612, + [SMALL_STATE(8013)] = 60710, + [SMALL_STATE(8014)] = 60808, + [SMALL_STATE(8015)] = 60906, + [SMALL_STATE(8016)] = 61004, + [SMALL_STATE(8017)] = 61102, + [SMALL_STATE(8018)] = 61200, + [SMALL_STATE(8019)] = 61298, + [SMALL_STATE(8020)] = 61396, + [SMALL_STATE(8021)] = 61494, + [SMALL_STATE(8022)] = 61592, + [SMALL_STATE(8023)] = 61690, + [SMALL_STATE(8024)] = 61788, + [SMALL_STATE(8025)] = 61886, + [SMALL_STATE(8026)] = 61984, + [SMALL_STATE(8027)] = 62082, + [SMALL_STATE(8028)] = 62182, + [SMALL_STATE(8029)] = 62280, + [SMALL_STATE(8030)] = 62378, + [SMALL_STATE(8031)] = 62476, + [SMALL_STATE(8032)] = 62574, + [SMALL_STATE(8033)] = 62672, + [SMALL_STATE(8034)] = 62770, + [SMALL_STATE(8035)] = 62868, + [SMALL_STATE(8036)] = 62966, + [SMALL_STATE(8037)] = 63064, + [SMALL_STATE(8038)] = 63162, + [SMALL_STATE(8039)] = 63260, + [SMALL_STATE(8040)] = 63358, + [SMALL_STATE(8041)] = 63456, + [SMALL_STATE(8042)] = 63554, + [SMALL_STATE(8043)] = 63652, + [SMALL_STATE(8044)] = 63750, + [SMALL_STATE(8045)] = 63848, + [SMALL_STATE(8046)] = 63946, + [SMALL_STATE(8047)] = 64044, + [SMALL_STATE(8048)] = 64141, + [SMALL_STATE(8049)] = 64238, + [SMALL_STATE(8050)] = 64335, + [SMALL_STATE(8051)] = 64432, + [SMALL_STATE(8052)] = 64529, + [SMALL_STATE(8053)] = 64626, + [SMALL_STATE(8054)] = 64723, + [SMALL_STATE(8055)] = 64820, + [SMALL_STATE(8056)] = 64917, + [SMALL_STATE(8057)] = 65012, + [SMALL_STATE(8058)] = 65107, + [SMALL_STATE(8059)] = 65204, + [SMALL_STATE(8060)] = 65301, + [SMALL_STATE(8061)] = 65398, + [SMALL_STATE(8062)] = 65495, + [SMALL_STATE(8063)] = 65592, + [SMALL_STATE(8064)] = 65689, + [SMALL_STATE(8065)] = 65786, + [SMALL_STATE(8066)] = 65881, + [SMALL_STATE(8067)] = 65978, + [SMALL_STATE(8068)] = 66075, + [SMALL_STATE(8069)] = 66172, + [SMALL_STATE(8070)] = 66269, + [SMALL_STATE(8071)] = 66366, + [SMALL_STATE(8072)] = 66463, + [SMALL_STATE(8073)] = 66560, + [SMALL_STATE(8074)] = 66657, + [SMALL_STATE(8075)] = 66754, + [SMALL_STATE(8076)] = 66851, + [SMALL_STATE(8077)] = 66948, + [SMALL_STATE(8078)] = 67045, + [SMALL_STATE(8079)] = 67142, + [SMALL_STATE(8080)] = 67239, + [SMALL_STATE(8081)] = 67336, + [SMALL_STATE(8082)] = 67433, + [SMALL_STATE(8083)] = 67530, + [SMALL_STATE(8084)] = 67627, + [SMALL_STATE(8085)] = 67724, + [SMALL_STATE(8086)] = 67819, + [SMALL_STATE(8087)] = 67916, + [SMALL_STATE(8088)] = 68013, + [SMALL_STATE(8089)] = 68108, + [SMALL_STATE(8090)] = 68205, + [SMALL_STATE(8091)] = 68302, + [SMALL_STATE(8092)] = 68397, + [SMALL_STATE(8093)] = 68494, + [SMALL_STATE(8094)] = 68591, + [SMALL_STATE(8095)] = 68688, + [SMALL_STATE(8096)] = 68783, + [SMALL_STATE(8097)] = 68878, + [SMALL_STATE(8098)] = 68975, + [SMALL_STATE(8099)] = 69070, + [SMALL_STATE(8100)] = 69167, + [SMALL_STATE(8101)] = 69262, + [SMALL_STATE(8102)] = 69359, + [SMALL_STATE(8103)] = 69454, + [SMALL_STATE(8104)] = 69551, + [SMALL_STATE(8105)] = 69646, + [SMALL_STATE(8106)] = 69741, + [SMALL_STATE(8107)] = 69838, + [SMALL_STATE(8108)] = 69935, + [SMALL_STATE(8109)] = 70030, + [SMALL_STATE(8110)] = 70127, + [SMALL_STATE(8111)] = 70222, + [SMALL_STATE(8112)] = 70319, + [SMALL_STATE(8113)] = 70414, + [SMALL_STATE(8114)] = 70511, + [SMALL_STATE(8115)] = 70606, + [SMALL_STATE(8116)] = 70703, + [SMALL_STATE(8117)] = 70798, + [SMALL_STATE(8118)] = 70895, + [SMALL_STATE(8119)] = 70992, + [SMALL_STATE(8120)] = 71089, + [SMALL_STATE(8121)] = 71186, + [SMALL_STATE(8122)] = 71283, + [SMALL_STATE(8123)] = 71380, + [SMALL_STATE(8124)] = 71477, + [SMALL_STATE(8125)] = 71574, + [SMALL_STATE(8126)] = 71671, + [SMALL_STATE(8127)] = 71768, + [SMALL_STATE(8128)] = 71865, + [SMALL_STATE(8129)] = 71962, + [SMALL_STATE(8130)] = 72059, + [SMALL_STATE(8131)] = 72156, + [SMALL_STATE(8132)] = 72253, + [SMALL_STATE(8133)] = 72350, + [SMALL_STATE(8134)] = 72447, + [SMALL_STATE(8135)] = 72544, + [SMALL_STATE(8136)] = 72639, + [SMALL_STATE(8137)] = 72736, + [SMALL_STATE(8138)] = 72833, + [SMALL_STATE(8139)] = 72930, + [SMALL_STATE(8140)] = 73027, + [SMALL_STATE(8141)] = 73124, + [SMALL_STATE(8142)] = 73221, + [SMALL_STATE(8143)] = 73318, + [SMALL_STATE(8144)] = 73415, + [SMALL_STATE(8145)] = 73512, + [SMALL_STATE(8146)] = 73609, + [SMALL_STATE(8147)] = 73706, + [SMALL_STATE(8148)] = 73803, + [SMALL_STATE(8149)] = 73900, + [SMALL_STATE(8150)] = 73997, + [SMALL_STATE(8151)] = 74094, + [SMALL_STATE(8152)] = 74191, + [SMALL_STATE(8153)] = 74288, + [SMALL_STATE(8154)] = 74385, + [SMALL_STATE(8155)] = 74482, + [SMALL_STATE(8156)] = 74579, + [SMALL_STATE(8157)] = 74676, + [SMALL_STATE(8158)] = 74773, + [SMALL_STATE(8159)] = 74870, + [SMALL_STATE(8160)] = 74967, + [SMALL_STATE(8161)] = 75064, + [SMALL_STATE(8162)] = 75161, + [SMALL_STATE(8163)] = 75258, + [SMALL_STATE(8164)] = 75353, + [SMALL_STATE(8165)] = 75450, + [SMALL_STATE(8166)] = 75547, + [SMALL_STATE(8167)] = 75644, + [SMALL_STATE(8168)] = 75741, + [SMALL_STATE(8169)] = 75838, + [SMALL_STATE(8170)] = 75935, + [SMALL_STATE(8171)] = 76032, + [SMALL_STATE(8172)] = 76129, + [SMALL_STATE(8173)] = 76226, + [SMALL_STATE(8174)] = 76323, + [SMALL_STATE(8175)] = 76420, + [SMALL_STATE(8176)] = 76517, + [SMALL_STATE(8177)] = 76614, + [SMALL_STATE(8178)] = 76711, + [SMALL_STATE(8179)] = 76808, + [SMALL_STATE(8180)] = 76905, + [SMALL_STATE(8181)] = 77002, + [SMALL_STATE(8182)] = 77099, + [SMALL_STATE(8183)] = 77196, + [SMALL_STATE(8184)] = 77293, + [SMALL_STATE(8185)] = 77390, + [SMALL_STATE(8186)] = 77487, + [SMALL_STATE(8187)] = 77584, + [SMALL_STATE(8188)] = 77681, + [SMALL_STATE(8189)] = 77778, + [SMALL_STATE(8190)] = 77875, + [SMALL_STATE(8191)] = 77972, + [SMALL_STATE(8192)] = 78069, + [SMALL_STATE(8193)] = 78164, + [SMALL_STATE(8194)] = 78261, + [SMALL_STATE(8195)] = 78358, + [SMALL_STATE(8196)] = 78455, + [SMALL_STATE(8197)] = 78552, + [SMALL_STATE(8198)] = 78649, + [SMALL_STATE(8199)] = 78746, + [SMALL_STATE(8200)] = 78843, + [SMALL_STATE(8201)] = 78940, + [SMALL_STATE(8202)] = 79037, + [SMALL_STATE(8203)] = 79134, + [SMALL_STATE(8204)] = 79231, + [SMALL_STATE(8205)] = 79328, + [SMALL_STATE(8206)] = 79425, + [SMALL_STATE(8207)] = 79522, + [SMALL_STATE(8208)] = 79619, + [SMALL_STATE(8209)] = 79716, + [SMALL_STATE(8210)] = 79813, + [SMALL_STATE(8211)] = 79908, + [SMALL_STATE(8212)] = 80005, + [SMALL_STATE(8213)] = 80102, + [SMALL_STATE(8214)] = 80199, + [SMALL_STATE(8215)] = 80296, + [SMALL_STATE(8216)] = 80393, + [SMALL_STATE(8217)] = 80490, + [SMALL_STATE(8218)] = 80587, + [SMALL_STATE(8219)] = 80684, + [SMALL_STATE(8220)] = 80781, + [SMALL_STATE(8221)] = 80878, + [SMALL_STATE(8222)] = 80975, + [SMALL_STATE(8223)] = 81072, + [SMALL_STATE(8224)] = 81169, + [SMALL_STATE(8225)] = 81266, + [SMALL_STATE(8226)] = 81363, + [SMALL_STATE(8227)] = 81460, + [SMALL_STATE(8228)] = 81557, + [SMALL_STATE(8229)] = 81654, + [SMALL_STATE(8230)] = 81751, + [SMALL_STATE(8231)] = 81848, + [SMALL_STATE(8232)] = 81945, + [SMALL_STATE(8233)] = 82042, + [SMALL_STATE(8234)] = 82137, + [SMALL_STATE(8235)] = 82234, + [SMALL_STATE(8236)] = 82331, + [SMALL_STATE(8237)] = 82428, + [SMALL_STATE(8238)] = 82525, + [SMALL_STATE(8239)] = 82622, + [SMALL_STATE(8240)] = 82719, + [SMALL_STATE(8241)] = 82816, + [SMALL_STATE(8242)] = 82913, + [SMALL_STATE(8243)] = 83010, + [SMALL_STATE(8244)] = 83107, + [SMALL_STATE(8245)] = 83204, + [SMALL_STATE(8246)] = 83301, + [SMALL_STATE(8247)] = 83398, + [SMALL_STATE(8248)] = 83495, + [SMALL_STATE(8249)] = 83592, + [SMALL_STATE(8250)] = 83689, + [SMALL_STATE(8251)] = 83786, + [SMALL_STATE(8252)] = 83883, + [SMALL_STATE(8253)] = 83980, + [SMALL_STATE(8254)] = 84077, + [SMALL_STATE(8255)] = 84174, + [SMALL_STATE(8256)] = 84271, + [SMALL_STATE(8257)] = 84368, + [SMALL_STATE(8258)] = 84465, + [SMALL_STATE(8259)] = 84562, + [SMALL_STATE(8260)] = 84659, + [SMALL_STATE(8261)] = 84756, + [SMALL_STATE(8262)] = 84853, + [SMALL_STATE(8263)] = 84948, + [SMALL_STATE(8264)] = 85045, + [SMALL_STATE(8265)] = 85142, + [SMALL_STATE(8266)] = 85236, + [SMALL_STATE(8267)] = 85328, + [SMALL_STATE(8268)] = 85422, + [SMALL_STATE(8269)] = 85514, + [SMALL_STATE(8270)] = 85608, + [SMALL_STATE(8271)] = 85700, + [SMALL_STATE(8272)] = 85794, + [SMALL_STATE(8273)] = 85886, + [SMALL_STATE(8274)] = 85980, + [SMALL_STATE(8275)] = 86072, + [SMALL_STATE(8276)] = 86166, + [SMALL_STATE(8277)] = 86260, + [SMALL_STATE(8278)] = 86354, + [SMALL_STATE(8279)] = 86446, + [SMALL_STATE(8280)] = 86540, + [SMALL_STATE(8281)] = 86632, + [SMALL_STATE(8282)] = 86726, + [SMALL_STATE(8283)] = 86820, + [SMALL_STATE(8284)] = 86914, + [SMALL_STATE(8285)] = 87006, + [SMALL_STATE(8286)] = 87100, + [SMALL_STATE(8287)] = 87194, + [SMALL_STATE(8288)] = 87288, + [SMALL_STATE(8289)] = 87380, + [SMALL_STATE(8290)] = 87474, + [SMALL_STATE(8291)] = 87568, + [SMALL_STATE(8292)] = 87662, + [SMALL_STATE(8293)] = 87754, + [SMALL_STATE(8294)] = 87848, + [SMALL_STATE(8295)] = 87942, + [SMALL_STATE(8296)] = 88034, + [SMALL_STATE(8297)] = 88128, + [SMALL_STATE(8298)] = 88220, + [SMALL_STATE(8299)] = 88314, + [SMALL_STATE(8300)] = 88408, + [SMALL_STATE(8301)] = 88502, + [SMALL_STATE(8302)] = 88596, + [SMALL_STATE(8303)] = 88690, + [SMALL_STATE(8304)] = 88784, + [SMALL_STATE(8305)] = 88878, + [SMALL_STATE(8306)] = 88972, + [SMALL_STATE(8307)] = 89066, + [SMALL_STATE(8308)] = 89160, + [SMALL_STATE(8309)] = 89252, + [SMALL_STATE(8310)] = 89346, + [SMALL_STATE(8311)] = 89438, + [SMALL_STATE(8312)] = 89532, + [SMALL_STATE(8313)] = 89626, + [SMALL_STATE(8314)] = 89720, + [SMALL_STATE(8315)] = 89812, + [SMALL_STATE(8316)] = 89906, + [SMALL_STATE(8317)] = 89998, + [SMALL_STATE(8318)] = 90090, + [SMALL_STATE(8319)] = 90182, + [SMALL_STATE(8320)] = 90276, + [SMALL_STATE(8321)] = 90370, + [SMALL_STATE(8322)] = 90462, + [SMALL_STATE(8323)] = 90556, + [SMALL_STATE(8324)] = 90650, + [SMALL_STATE(8325)] = 90744, + [SMALL_STATE(8326)] = 90838, + [SMALL_STATE(8327)] = 90930, + [SMALL_STATE(8328)] = 91024, + [SMALL_STATE(8329)] = 91118, + [SMALL_STATE(8330)] = 91210, + [SMALL_STATE(8331)] = 91302, + [SMALL_STATE(8332)] = 91394, + [SMALL_STATE(8333)] = 91488, + [SMALL_STATE(8334)] = 91580, + [SMALL_STATE(8335)] = 91672, + [SMALL_STATE(8336)] = 91764, + [SMALL_STATE(8337)] = 91858, + [SMALL_STATE(8338)] = 91952, + [SMALL_STATE(8339)] = 92044, + [SMALL_STATE(8340)] = 92138, + [SMALL_STATE(8341)] = 92230, + [SMALL_STATE(8342)] = 92322, + [SMALL_STATE(8343)] = 92414, + [SMALL_STATE(8344)] = 92508, + [SMALL_STATE(8345)] = 92602, + [SMALL_STATE(8346)] = 92694, + [SMALL_STATE(8347)] = 92786, + [SMALL_STATE(8348)] = 92878, + [SMALL_STATE(8349)] = 92972, + [SMALL_STATE(8350)] = 93066, + [SMALL_STATE(8351)] = 93158, + [SMALL_STATE(8352)] = 93252, + [SMALL_STATE(8353)] = 93346, + [SMALL_STATE(8354)] = 93438, + [SMALL_STATE(8355)] = 93530, + [SMALL_STATE(8356)] = 93624, + [SMALL_STATE(8357)] = 93718, + [SMALL_STATE(8358)] = 93812, + [SMALL_STATE(8359)] = 93906, + [SMALL_STATE(8360)] = 94000, + [SMALL_STATE(8361)] = 94094, + [SMALL_STATE(8362)] = 94188, + [SMALL_STATE(8363)] = 94280, + [SMALL_STATE(8364)] = 94372, + [SMALL_STATE(8365)] = 94464, + [SMALL_STATE(8366)] = 94556, + [SMALL_STATE(8367)] = 94648, + [SMALL_STATE(8368)] = 94742, + [SMALL_STATE(8369)] = 94834, + [SMALL_STATE(8370)] = 94928, + [SMALL_STATE(8371)] = 95022, + [SMALL_STATE(8372)] = 95116, + [SMALL_STATE(8373)] = 95208, + [SMALL_STATE(8374)] = 95302, + [SMALL_STATE(8375)] = 95394, + [SMALL_STATE(8376)] = 95486, + [SMALL_STATE(8377)] = 95578, + [SMALL_STATE(8378)] = 95670, + [SMALL_STATE(8379)] = 95764, + [SMALL_STATE(8380)] = 95856, + [SMALL_STATE(8381)] = 95950, + [SMALL_STATE(8382)] = 96042, + [SMALL_STATE(8383)] = 96136, + [SMALL_STATE(8384)] = 96230, + [SMALL_STATE(8385)] = 96324, + [SMALL_STATE(8386)] = 96418, + [SMALL_STATE(8387)] = 96510, + [SMALL_STATE(8388)] = 96602, + [SMALL_STATE(8389)] = 96694, + [SMALL_STATE(8390)] = 96786, + [SMALL_STATE(8391)] = 96878, + [SMALL_STATE(8392)] = 96972, + [SMALL_STATE(8393)] = 97066, + [SMALL_STATE(8394)] = 97160, + [SMALL_STATE(8395)] = 97254, + [SMALL_STATE(8396)] = 97346, + [SMALL_STATE(8397)] = 97438, + [SMALL_STATE(8398)] = 97530, + [SMALL_STATE(8399)] = 97624, + [SMALL_STATE(8400)] = 97718, + [SMALL_STATE(8401)] = 97812, + [SMALL_STATE(8402)] = 97906, + [SMALL_STATE(8403)] = 98000, + [SMALL_STATE(8404)] = 98094, + [SMALL_STATE(8405)] = 98188, + [SMALL_STATE(8406)] = 98280, + [SMALL_STATE(8407)] = 98372, + [SMALL_STATE(8408)] = 98464, + [SMALL_STATE(8409)] = 98556, + [SMALL_STATE(8410)] = 98648, + [SMALL_STATE(8411)] = 98742, + [SMALL_STATE(8412)] = 98836, + [SMALL_STATE(8413)] = 98930, + [SMALL_STATE(8414)] = 99024, + [SMALL_STATE(8415)] = 99116, + [SMALL_STATE(8416)] = 99210, + [SMALL_STATE(8417)] = 99304, + [SMALL_STATE(8418)] = 99398, + [SMALL_STATE(8419)] = 99492, + [SMALL_STATE(8420)] = 99584, + [SMALL_STATE(8421)] = 99676, + [SMALL_STATE(8422)] = 99770, + [SMALL_STATE(8423)] = 99864, + [SMALL_STATE(8424)] = 99958, + [SMALL_STATE(8425)] = 100050, + [SMALL_STATE(8426)] = 100142, + [SMALL_STATE(8427)] = 100236, + [SMALL_STATE(8428)] = 100330, + [SMALL_STATE(8429)] = 100424, + [SMALL_STATE(8430)] = 100516, + [SMALL_STATE(8431)] = 100610, + [SMALL_STATE(8432)] = 100702, + [SMALL_STATE(8433)] = 100796, + [SMALL_STATE(8434)] = 100888, + [SMALL_STATE(8435)] = 100982, + [SMALL_STATE(8436)] = 101074, + [SMALL_STATE(8437)] = 101168, + [SMALL_STATE(8438)] = 101260, + [SMALL_STATE(8439)] = 101354, + [SMALL_STATE(8440)] = 101446, + [SMALL_STATE(8441)] = 101538, + [SMALL_STATE(8442)] = 101630, + [SMALL_STATE(8443)] = 101724, + [SMALL_STATE(8444)] = 101818, + [SMALL_STATE(8445)] = 101910, + [SMALL_STATE(8446)] = 102002, + [SMALL_STATE(8447)] = 102096, + [SMALL_STATE(8448)] = 102188, + [SMALL_STATE(8449)] = 102282, + [SMALL_STATE(8450)] = 102374, + [SMALL_STATE(8451)] = 102468, + [SMALL_STATE(8452)] = 102560, + [SMALL_STATE(8453)] = 102654, + [SMALL_STATE(8454)] = 102748, + [SMALL_STATE(8455)] = 102840, + [SMALL_STATE(8456)] = 102932, + [SMALL_STATE(8457)] = 103024, + [SMALL_STATE(8458)] = 103118, + [SMALL_STATE(8459)] = 103210, + [SMALL_STATE(8460)] = 103304, + [SMALL_STATE(8461)] = 103398, + [SMALL_STATE(8462)] = 103490, + [SMALL_STATE(8463)] = 103584, + [SMALL_STATE(8464)] = 103676, + [SMALL_STATE(8465)] = 103768, + [SMALL_STATE(8466)] = 103862, + [SMALL_STATE(8467)] = 103954, + [SMALL_STATE(8468)] = 104048, + [SMALL_STATE(8469)] = 104140, + [SMALL_STATE(8470)] = 104234, + [SMALL_STATE(8471)] = 104328, + [SMALL_STATE(8472)] = 104420, + [SMALL_STATE(8473)] = 104514, + [SMALL_STATE(8474)] = 104608, + [SMALL_STATE(8475)] = 104702, + [SMALL_STATE(8476)] = 104791, + [SMALL_STATE(8477)] = 104880, + [SMALL_STATE(8478)] = 104969, + [SMALL_STATE(8479)] = 105058, + [SMALL_STATE(8480)] = 105147, + [SMALL_STATE(8481)] = 105236, + [SMALL_STATE(8482)] = 105325, + [SMALL_STATE(8483)] = 105414, + [SMALL_STATE(8484)] = 105503, + [SMALL_STATE(8485)] = 105592, + [SMALL_STATE(8486)] = 105681, + [SMALL_STATE(8487)] = 105770, + [SMALL_STATE(8488)] = 105859, + [SMALL_STATE(8489)] = 105948, + [SMALL_STATE(8490)] = 106037, + [SMALL_STATE(8491)] = 106126, + [SMALL_STATE(8492)] = 106215, + [SMALL_STATE(8493)] = 106304, + [SMALL_STATE(8494)] = 106393, + [SMALL_STATE(8495)] = 106482, + [SMALL_STATE(8496)] = 106571, + [SMALL_STATE(8497)] = 106660, + [SMALL_STATE(8498)] = 106749, + [SMALL_STATE(8499)] = 106838, + [SMALL_STATE(8500)] = 106927, + [SMALL_STATE(8501)] = 107016, + [SMALL_STATE(8502)] = 107105, + [SMALL_STATE(8503)] = 107194, + [SMALL_STATE(8504)] = 107283, + [SMALL_STATE(8505)] = 107372, + [SMALL_STATE(8506)] = 107461, + [SMALL_STATE(8507)] = 107550, + [SMALL_STATE(8508)] = 107639, + [SMALL_STATE(8509)] = 107728, + [SMALL_STATE(8510)] = 107817, + [SMALL_STATE(8511)] = 107906, + [SMALL_STATE(8512)] = 107995, + [SMALL_STATE(8513)] = 108084, + [SMALL_STATE(8514)] = 108173, + [SMALL_STATE(8515)] = 108262, + [SMALL_STATE(8516)] = 108351, + [SMALL_STATE(8517)] = 108440, + [SMALL_STATE(8518)] = 108529, + [SMALL_STATE(8519)] = 108618, + [SMALL_STATE(8520)] = 108707, + [SMALL_STATE(8521)] = 108796, + [SMALL_STATE(8522)] = 108885, + [SMALL_STATE(8523)] = 108974, + [SMALL_STATE(8524)] = 109063, + [SMALL_STATE(8525)] = 109152, + [SMALL_STATE(8526)] = 109241, + [SMALL_STATE(8527)] = 109330, + [SMALL_STATE(8528)] = 109419, + [SMALL_STATE(8529)] = 109508, + [SMALL_STATE(8530)] = 109597, + [SMALL_STATE(8531)] = 109686, + [SMALL_STATE(8532)] = 109775, + [SMALL_STATE(8533)] = 109864, + [SMALL_STATE(8534)] = 109953, + [SMALL_STATE(8535)] = 110042, + [SMALL_STATE(8536)] = 110131, + [SMALL_STATE(8537)] = 110220, + [SMALL_STATE(8538)] = 110309, + [SMALL_STATE(8539)] = 110398, + [SMALL_STATE(8540)] = 110487, + [SMALL_STATE(8541)] = 110576, + [SMALL_STATE(8542)] = 110665, + [SMALL_STATE(8543)] = 110754, + [SMALL_STATE(8544)] = 110843, + [SMALL_STATE(8545)] = 110932, + [SMALL_STATE(8546)] = 111021, + [SMALL_STATE(8547)] = 111110, + [SMALL_STATE(8548)] = 111199, + [SMALL_STATE(8549)] = 111288, + [SMALL_STATE(8550)] = 111377, + [SMALL_STATE(8551)] = 111466, + [SMALL_STATE(8552)] = 111555, + [SMALL_STATE(8553)] = 111644, + [SMALL_STATE(8554)] = 111733, + [SMALL_STATE(8555)] = 111822, + [SMALL_STATE(8556)] = 111911, + [SMALL_STATE(8557)] = 112000, + [SMALL_STATE(8558)] = 112089, + [SMALL_STATE(8559)] = 112178, + [SMALL_STATE(8560)] = 112267, + [SMALL_STATE(8561)] = 112356, + [SMALL_STATE(8562)] = 112445, + [SMALL_STATE(8563)] = 112534, + [SMALL_STATE(8564)] = 112623, + [SMALL_STATE(8565)] = 112712, + [SMALL_STATE(8566)] = 112801, + [SMALL_STATE(8567)] = 112890, + [SMALL_STATE(8568)] = 112979, + [SMALL_STATE(8569)] = 113068, + [SMALL_STATE(8570)] = 113157, + [SMALL_STATE(8571)] = 113246, + [SMALL_STATE(8572)] = 113335, + [SMALL_STATE(8573)] = 113424, + [SMALL_STATE(8574)] = 113513, + [SMALL_STATE(8575)] = 113602, + [SMALL_STATE(8576)] = 113691, + [SMALL_STATE(8577)] = 113780, + [SMALL_STATE(8578)] = 113869, + [SMALL_STATE(8579)] = 113958, + [SMALL_STATE(8580)] = 114047, + [SMALL_STATE(8581)] = 114136, + [SMALL_STATE(8582)] = 114225, + [SMALL_STATE(8583)] = 114314, + [SMALL_STATE(8584)] = 114403, + [SMALL_STATE(8585)] = 114492, + [SMALL_STATE(8586)] = 114581, + [SMALL_STATE(8587)] = 114670, + [SMALL_STATE(8588)] = 114759, + [SMALL_STATE(8589)] = 114848, + [SMALL_STATE(8590)] = 114937, + [SMALL_STATE(8591)] = 115026, + [SMALL_STATE(8592)] = 115115, + [SMALL_STATE(8593)] = 115204, + [SMALL_STATE(8594)] = 115293, + [SMALL_STATE(8595)] = 115382, + [SMALL_STATE(8596)] = 115471, + [SMALL_STATE(8597)] = 115560, + [SMALL_STATE(8598)] = 115649, + [SMALL_STATE(8599)] = 115738, + [SMALL_STATE(8600)] = 115827, + [SMALL_STATE(8601)] = 115916, + [SMALL_STATE(8602)] = 116005, + [SMALL_STATE(8603)] = 116094, + [SMALL_STATE(8604)] = 116183, + [SMALL_STATE(8605)] = 116272, + [SMALL_STATE(8606)] = 116361, + [SMALL_STATE(8607)] = 116450, + [SMALL_STATE(8608)] = 116539, + [SMALL_STATE(8609)] = 116628, + [SMALL_STATE(8610)] = 116717, + [SMALL_STATE(8611)] = 116806, + [SMALL_STATE(8612)] = 116895, + [SMALL_STATE(8613)] = 116984, + [SMALL_STATE(8614)] = 117073, + [SMALL_STATE(8615)] = 117162, + [SMALL_STATE(8616)] = 117251, + [SMALL_STATE(8617)] = 117340, + [SMALL_STATE(8618)] = 117429, + [SMALL_STATE(8619)] = 117518, + [SMALL_STATE(8620)] = 117607, + [SMALL_STATE(8621)] = 117696, + [SMALL_STATE(8622)] = 117785, + [SMALL_STATE(8623)] = 117874, + [SMALL_STATE(8624)] = 117963, + [SMALL_STATE(8625)] = 118052, + [SMALL_STATE(8626)] = 118141, + [SMALL_STATE(8627)] = 118230, + [SMALL_STATE(8628)] = 118319, + [SMALL_STATE(8629)] = 118408, + [SMALL_STATE(8630)] = 118497, + [SMALL_STATE(8631)] = 118586, + [SMALL_STATE(8632)] = 118675, + [SMALL_STATE(8633)] = 118764, + [SMALL_STATE(8634)] = 118853, + [SMALL_STATE(8635)] = 118942, + [SMALL_STATE(8636)] = 119031, + [SMALL_STATE(8637)] = 119120, + [SMALL_STATE(8638)] = 119209, + [SMALL_STATE(8639)] = 119298, + [SMALL_STATE(8640)] = 119387, + [SMALL_STATE(8641)] = 119476, + [SMALL_STATE(8642)] = 119565, + [SMALL_STATE(8643)] = 119654, + [SMALL_STATE(8644)] = 119743, + [SMALL_STATE(8645)] = 119832, + [SMALL_STATE(8646)] = 119921, + [SMALL_STATE(8647)] = 120010, + [SMALL_STATE(8648)] = 120099, + [SMALL_STATE(8649)] = 120188, + [SMALL_STATE(8650)] = 120277, + [SMALL_STATE(8651)] = 120366, + [SMALL_STATE(8652)] = 120455, + [SMALL_STATE(8653)] = 120544, + [SMALL_STATE(8654)] = 120633, + [SMALL_STATE(8655)] = 120722, + [SMALL_STATE(8656)] = 120811, + [SMALL_STATE(8657)] = 120900, + [SMALL_STATE(8658)] = 120989, + [SMALL_STATE(8659)] = 121078, + [SMALL_STATE(8660)] = 121167, + [SMALL_STATE(8661)] = 121256, + [SMALL_STATE(8662)] = 121345, + [SMALL_STATE(8663)] = 121434, + [SMALL_STATE(8664)] = 121523, + [SMALL_STATE(8665)] = 121612, + [SMALL_STATE(8666)] = 121701, + [SMALL_STATE(8667)] = 121790, + [SMALL_STATE(8668)] = 121879, + [SMALL_STATE(8669)] = 121968, + [SMALL_STATE(8670)] = 122057, + [SMALL_STATE(8671)] = 122146, + [SMALL_STATE(8672)] = 122235, + [SMALL_STATE(8673)] = 122324, + [SMALL_STATE(8674)] = 122413, + [SMALL_STATE(8675)] = 122502, + [SMALL_STATE(8676)] = 122591, + [SMALL_STATE(8677)] = 122680, + [SMALL_STATE(8678)] = 122769, + [SMALL_STATE(8679)] = 122858, + [SMALL_STATE(8680)] = 122947, + [SMALL_STATE(8681)] = 123036, + [SMALL_STATE(8682)] = 123125, + [SMALL_STATE(8683)] = 123214, + [SMALL_STATE(8684)] = 123303, + [SMALL_STATE(8685)] = 123392, + [SMALL_STATE(8686)] = 123481, + [SMALL_STATE(8687)] = 123570, + [SMALL_STATE(8688)] = 123659, + [SMALL_STATE(8689)] = 123748, + [SMALL_STATE(8690)] = 123837, + [SMALL_STATE(8691)] = 123926, + [SMALL_STATE(8692)] = 124015, + [SMALL_STATE(8693)] = 124104, + [SMALL_STATE(8694)] = 124193, + [SMALL_STATE(8695)] = 124282, + [SMALL_STATE(8696)] = 124371, + [SMALL_STATE(8697)] = 124460, + [SMALL_STATE(8698)] = 124549, + [SMALL_STATE(8699)] = 124638, + [SMALL_STATE(8700)] = 124727, + [SMALL_STATE(8701)] = 124816, + [SMALL_STATE(8702)] = 124905, + [SMALL_STATE(8703)] = 124994, + [SMALL_STATE(8704)] = 125083, + [SMALL_STATE(8705)] = 125172, + [SMALL_STATE(8706)] = 125261, + [SMALL_STATE(8707)] = 125350, + [SMALL_STATE(8708)] = 125439, + [SMALL_STATE(8709)] = 125528, + [SMALL_STATE(8710)] = 125617, + [SMALL_STATE(8711)] = 125706, + [SMALL_STATE(8712)] = 125795, + [SMALL_STATE(8713)] = 125884, + [SMALL_STATE(8714)] = 125973, + [SMALL_STATE(8715)] = 126062, + [SMALL_STATE(8716)] = 126151, + [SMALL_STATE(8717)] = 126240, + [SMALL_STATE(8718)] = 126329, + [SMALL_STATE(8719)] = 126418, + [SMALL_STATE(8720)] = 126507, + [SMALL_STATE(8721)] = 126596, + [SMALL_STATE(8722)] = 126685, + [SMALL_STATE(8723)] = 126774, + [SMALL_STATE(8724)] = 126863, + [SMALL_STATE(8725)] = 126952, + [SMALL_STATE(8726)] = 127041, + [SMALL_STATE(8727)] = 127130, + [SMALL_STATE(8728)] = 127219, + [SMALL_STATE(8729)] = 127308, + [SMALL_STATE(8730)] = 127397, + [SMALL_STATE(8731)] = 127486, + [SMALL_STATE(8732)] = 127575, + [SMALL_STATE(8733)] = 127664, + [SMALL_STATE(8734)] = 127753, + [SMALL_STATE(8735)] = 127842, + [SMALL_STATE(8736)] = 127931, + [SMALL_STATE(8737)] = 128020, + [SMALL_STATE(8738)] = 128109, + [SMALL_STATE(8739)] = 128198, + [SMALL_STATE(8740)] = 128287, + [SMALL_STATE(8741)] = 128376, + [SMALL_STATE(8742)] = 128465, + [SMALL_STATE(8743)] = 128554, + [SMALL_STATE(8744)] = 128643, + [SMALL_STATE(8745)] = 128732, + [SMALL_STATE(8746)] = 128821, + [SMALL_STATE(8747)] = 128910, + [SMALL_STATE(8748)] = 128999, + [SMALL_STATE(8749)] = 129088, + [SMALL_STATE(8750)] = 129177, + [SMALL_STATE(8751)] = 129266, + [SMALL_STATE(8752)] = 129355, + [SMALL_STATE(8753)] = 129444, + [SMALL_STATE(8754)] = 129533, + [SMALL_STATE(8755)] = 129622, + [SMALL_STATE(8756)] = 129711, + [SMALL_STATE(8757)] = 129800, + [SMALL_STATE(8758)] = 129889, + [SMALL_STATE(8759)] = 129978, + [SMALL_STATE(8760)] = 130067, + [SMALL_STATE(8761)] = 130156, + [SMALL_STATE(8762)] = 130245, + [SMALL_STATE(8763)] = 130334, + [SMALL_STATE(8764)] = 130423, + [SMALL_STATE(8765)] = 130512, + [SMALL_STATE(8766)] = 130601, + [SMALL_STATE(8767)] = 130690, + [SMALL_STATE(8768)] = 130779, + [SMALL_STATE(8769)] = 130868, + [SMALL_STATE(8770)] = 130957, + [SMALL_STATE(8771)] = 131046, + [SMALL_STATE(8772)] = 131135, + [SMALL_STATE(8773)] = 131224, + [SMALL_STATE(8774)] = 131313, + [SMALL_STATE(8775)] = 131402, + [SMALL_STATE(8776)] = 131491, + [SMALL_STATE(8777)] = 131580, + [SMALL_STATE(8778)] = 131669, + [SMALL_STATE(8779)] = 131758, + [SMALL_STATE(8780)] = 131847, + [SMALL_STATE(8781)] = 131936, + [SMALL_STATE(8782)] = 132025, + [SMALL_STATE(8783)] = 132114, + [SMALL_STATE(8784)] = 132203, + [SMALL_STATE(8785)] = 132292, + [SMALL_STATE(8786)] = 132381, + [SMALL_STATE(8787)] = 132470, + [SMALL_STATE(8788)] = 132559, + [SMALL_STATE(8789)] = 132648, + [SMALL_STATE(8790)] = 132737, + [SMALL_STATE(8791)] = 132826, + [SMALL_STATE(8792)] = 132915, + [SMALL_STATE(8793)] = 133004, + [SMALL_STATE(8794)] = 133093, + [SMALL_STATE(8795)] = 133182, + [SMALL_STATE(8796)] = 133271, + [SMALL_STATE(8797)] = 133360, + [SMALL_STATE(8798)] = 133449, + [SMALL_STATE(8799)] = 133538, + [SMALL_STATE(8800)] = 133627, + [SMALL_STATE(8801)] = 133716, + [SMALL_STATE(8802)] = 133805, + [SMALL_STATE(8803)] = 133894, + [SMALL_STATE(8804)] = 133983, + [SMALL_STATE(8805)] = 134072, + [SMALL_STATE(8806)] = 134161, + [SMALL_STATE(8807)] = 134250, + [SMALL_STATE(8808)] = 134339, + [SMALL_STATE(8809)] = 134428, + [SMALL_STATE(8810)] = 134517, + [SMALL_STATE(8811)] = 134606, + [SMALL_STATE(8812)] = 134695, + [SMALL_STATE(8813)] = 134784, + [SMALL_STATE(8814)] = 134873, + [SMALL_STATE(8815)] = 134962, + [SMALL_STATE(8816)] = 135051, + [SMALL_STATE(8817)] = 135140, + [SMALL_STATE(8818)] = 135229, + [SMALL_STATE(8819)] = 135318, + [SMALL_STATE(8820)] = 135407, + [SMALL_STATE(8821)] = 135496, + [SMALL_STATE(8822)] = 135585, + [SMALL_STATE(8823)] = 135674, + [SMALL_STATE(8824)] = 135763, + [SMALL_STATE(8825)] = 135852, + [SMALL_STATE(8826)] = 135941, + [SMALL_STATE(8827)] = 136030, + [SMALL_STATE(8828)] = 136119, + [SMALL_STATE(8829)] = 136208, + [SMALL_STATE(8830)] = 136297, + [SMALL_STATE(8831)] = 136386, + [SMALL_STATE(8832)] = 136475, + [SMALL_STATE(8833)] = 136564, + [SMALL_STATE(8834)] = 136653, + [SMALL_STATE(8835)] = 136742, + [SMALL_STATE(8836)] = 136831, + [SMALL_STATE(8837)] = 136920, + [SMALL_STATE(8838)] = 137009, + [SMALL_STATE(8839)] = 137098, + [SMALL_STATE(8840)] = 137187, + [SMALL_STATE(8841)] = 137276, + [SMALL_STATE(8842)] = 137365, + [SMALL_STATE(8843)] = 137454, + [SMALL_STATE(8844)] = 137543, + [SMALL_STATE(8845)] = 137632, + [SMALL_STATE(8846)] = 137721, + [SMALL_STATE(8847)] = 137810, + [SMALL_STATE(8848)] = 137899, + [SMALL_STATE(8849)] = 137988, + [SMALL_STATE(8850)] = 138077, + [SMALL_STATE(8851)] = 138166, + [SMALL_STATE(8852)] = 138255, + [SMALL_STATE(8853)] = 138344, + [SMALL_STATE(8854)] = 138433, + [SMALL_STATE(8855)] = 138522, + [SMALL_STATE(8856)] = 138611, + [SMALL_STATE(8857)] = 138700, + [SMALL_STATE(8858)] = 138789, + [SMALL_STATE(8859)] = 138878, + [SMALL_STATE(8860)] = 138967, + [SMALL_STATE(8861)] = 139056, + [SMALL_STATE(8862)] = 139145, + [SMALL_STATE(8863)] = 139234, + [SMALL_STATE(8864)] = 139323, + [SMALL_STATE(8865)] = 139412, + [SMALL_STATE(8866)] = 139501, + [SMALL_STATE(8867)] = 139590, + [SMALL_STATE(8868)] = 139679, + [SMALL_STATE(8869)] = 139768, + [SMALL_STATE(8870)] = 139857, + [SMALL_STATE(8871)] = 139946, + [SMALL_STATE(8872)] = 140035, + [SMALL_STATE(8873)] = 140124, + [SMALL_STATE(8874)] = 140213, + [SMALL_STATE(8875)] = 140302, + [SMALL_STATE(8876)] = 140391, + [SMALL_STATE(8877)] = 140480, + [SMALL_STATE(8878)] = 140569, + [SMALL_STATE(8879)] = 140658, + [SMALL_STATE(8880)] = 140747, + [SMALL_STATE(8881)] = 140836, + [SMALL_STATE(8882)] = 140925, + [SMALL_STATE(8883)] = 141014, + [SMALL_STATE(8884)] = 141103, + [SMALL_STATE(8885)] = 141192, + [SMALL_STATE(8886)] = 141281, + [SMALL_STATE(8887)] = 141370, + [SMALL_STATE(8888)] = 141459, + [SMALL_STATE(8889)] = 141548, + [SMALL_STATE(8890)] = 141637, + [SMALL_STATE(8891)] = 141726, + [SMALL_STATE(8892)] = 141815, + [SMALL_STATE(8893)] = 141904, + [SMALL_STATE(8894)] = 141993, + [SMALL_STATE(8895)] = 142082, + [SMALL_STATE(8896)] = 142171, + [SMALL_STATE(8897)] = 142260, + [SMALL_STATE(8898)] = 142349, + [SMALL_STATE(8899)] = 142438, + [SMALL_STATE(8900)] = 142527, + [SMALL_STATE(8901)] = 142616, + [SMALL_STATE(8902)] = 142705, + [SMALL_STATE(8903)] = 142794, + [SMALL_STATE(8904)] = 142883, + [SMALL_STATE(8905)] = 142972, + [SMALL_STATE(8906)] = 143061, + [SMALL_STATE(8907)] = 143150, + [SMALL_STATE(8908)] = 143239, + [SMALL_STATE(8909)] = 143328, + [SMALL_STATE(8910)] = 143417, + [SMALL_STATE(8911)] = 143506, + [SMALL_STATE(8912)] = 143595, + [SMALL_STATE(8913)] = 143684, + [SMALL_STATE(8914)] = 143773, + [SMALL_STATE(8915)] = 143862, + [SMALL_STATE(8916)] = 143951, + [SMALL_STATE(8917)] = 144040, + [SMALL_STATE(8918)] = 144129, + [SMALL_STATE(8919)] = 144218, + [SMALL_STATE(8920)] = 144307, + [SMALL_STATE(8921)] = 144396, + [SMALL_STATE(8922)] = 144485, + [SMALL_STATE(8923)] = 144574, + [SMALL_STATE(8924)] = 144663, + [SMALL_STATE(8925)] = 144752, + [SMALL_STATE(8926)] = 144841, + [SMALL_STATE(8927)] = 144930, + [SMALL_STATE(8928)] = 145019, + [SMALL_STATE(8929)] = 145108, + [SMALL_STATE(8930)] = 145197, + [SMALL_STATE(8931)] = 145286, + [SMALL_STATE(8932)] = 145375, + [SMALL_STATE(8933)] = 145464, + [SMALL_STATE(8934)] = 145553, + [SMALL_STATE(8935)] = 145642, + [SMALL_STATE(8936)] = 145731, + [SMALL_STATE(8937)] = 145820, + [SMALL_STATE(8938)] = 145909, + [SMALL_STATE(8939)] = 145998, + [SMALL_STATE(8940)] = 146087, + [SMALL_STATE(8941)] = 146176, + [SMALL_STATE(8942)] = 146265, + [SMALL_STATE(8943)] = 146354, + [SMALL_STATE(8944)] = 146443, + [SMALL_STATE(8945)] = 146532, + [SMALL_STATE(8946)] = 146621, + [SMALL_STATE(8947)] = 146710, + [SMALL_STATE(8948)] = 146799, + [SMALL_STATE(8949)] = 146888, + [SMALL_STATE(8950)] = 146977, + [SMALL_STATE(8951)] = 147066, + [SMALL_STATE(8952)] = 147155, + [SMALL_STATE(8953)] = 147244, + [SMALL_STATE(8954)] = 147333, + [SMALL_STATE(8955)] = 147422, + [SMALL_STATE(8956)] = 147511, + [SMALL_STATE(8957)] = 147600, + [SMALL_STATE(8958)] = 147689, + [SMALL_STATE(8959)] = 147778, + [SMALL_STATE(8960)] = 147867, + [SMALL_STATE(8961)] = 147956, + [SMALL_STATE(8962)] = 148045, + [SMALL_STATE(8963)] = 148134, + [SMALL_STATE(8964)] = 148223, + [SMALL_STATE(8965)] = 148312, + [SMALL_STATE(8966)] = 148401, + [SMALL_STATE(8967)] = 148490, + [SMALL_STATE(8968)] = 148579, + [SMALL_STATE(8969)] = 148668, + [SMALL_STATE(8970)] = 148757, + [SMALL_STATE(8971)] = 148846, + [SMALL_STATE(8972)] = 148935, + [SMALL_STATE(8973)] = 149024, + [SMALL_STATE(8974)] = 149113, + [SMALL_STATE(8975)] = 149202, + [SMALL_STATE(8976)] = 149291, + [SMALL_STATE(8977)] = 149380, + [SMALL_STATE(8978)] = 149469, + [SMALL_STATE(8979)] = 149558, + [SMALL_STATE(8980)] = 149647, + [SMALL_STATE(8981)] = 149736, + [SMALL_STATE(8982)] = 149825, + [SMALL_STATE(8983)] = 149914, + [SMALL_STATE(8984)] = 150003, + [SMALL_STATE(8985)] = 150092, + [SMALL_STATE(8986)] = 150181, + [SMALL_STATE(8987)] = 150270, + [SMALL_STATE(8988)] = 150359, + [SMALL_STATE(8989)] = 150448, + [SMALL_STATE(8990)] = 150537, + [SMALL_STATE(8991)] = 150626, + [SMALL_STATE(8992)] = 150715, + [SMALL_STATE(8993)] = 150804, + [SMALL_STATE(8994)] = 150893, + [SMALL_STATE(8995)] = 150982, + [SMALL_STATE(8996)] = 151071, + [SMALL_STATE(8997)] = 151160, + [SMALL_STATE(8998)] = 151249, + [SMALL_STATE(8999)] = 151338, + [SMALL_STATE(9000)] = 151427, + [SMALL_STATE(9001)] = 151516, + [SMALL_STATE(9002)] = 151605, + [SMALL_STATE(9003)] = 151694, + [SMALL_STATE(9004)] = 151783, + [SMALL_STATE(9005)] = 151872, + [SMALL_STATE(9006)] = 151961, + [SMALL_STATE(9007)] = 152050, + [SMALL_STATE(9008)] = 152139, + [SMALL_STATE(9009)] = 152228, + [SMALL_STATE(9010)] = 152317, + [SMALL_STATE(9011)] = 152406, + [SMALL_STATE(9012)] = 152495, + [SMALL_STATE(9013)] = 152584, + [SMALL_STATE(9014)] = 152673, + [SMALL_STATE(9015)] = 152762, + [SMALL_STATE(9016)] = 152851, + [SMALL_STATE(9017)] = 152940, + [SMALL_STATE(9018)] = 153029, + [SMALL_STATE(9019)] = 153118, + [SMALL_STATE(9020)] = 153207, + [SMALL_STATE(9021)] = 153296, + [SMALL_STATE(9022)] = 153385, + [SMALL_STATE(9023)] = 153474, + [SMALL_STATE(9024)] = 153563, + [SMALL_STATE(9025)] = 153652, + [SMALL_STATE(9026)] = 153741, + [SMALL_STATE(9027)] = 153830, + [SMALL_STATE(9028)] = 153919, + [SMALL_STATE(9029)] = 154008, + [SMALL_STATE(9030)] = 154097, + [SMALL_STATE(9031)] = 154186, + [SMALL_STATE(9032)] = 154275, + [SMALL_STATE(9033)] = 154364, + [SMALL_STATE(9034)] = 154453, + [SMALL_STATE(9035)] = 154542, + [SMALL_STATE(9036)] = 154631, + [SMALL_STATE(9037)] = 154720, + [SMALL_STATE(9038)] = 154809, + [SMALL_STATE(9039)] = 154898, + [SMALL_STATE(9040)] = 154987, + [SMALL_STATE(9041)] = 155076, + [SMALL_STATE(9042)] = 155165, + [SMALL_STATE(9043)] = 155254, + [SMALL_STATE(9044)] = 155343, + [SMALL_STATE(9045)] = 155432, + [SMALL_STATE(9046)] = 155521, + [SMALL_STATE(9047)] = 155610, + [SMALL_STATE(9048)] = 155699, + [SMALL_STATE(9049)] = 155788, + [SMALL_STATE(9050)] = 155877, + [SMALL_STATE(9051)] = 155966, + [SMALL_STATE(9052)] = 156055, + [SMALL_STATE(9053)] = 156144, + [SMALL_STATE(9054)] = 156233, + [SMALL_STATE(9055)] = 156322, + [SMALL_STATE(9056)] = 156411, + [SMALL_STATE(9057)] = 156500, + [SMALL_STATE(9058)] = 156589, + [SMALL_STATE(9059)] = 156678, + [SMALL_STATE(9060)] = 156767, + [SMALL_STATE(9061)] = 156856, + [SMALL_STATE(9062)] = 156945, + [SMALL_STATE(9063)] = 157034, + [SMALL_STATE(9064)] = 157123, + [SMALL_STATE(9065)] = 157212, + [SMALL_STATE(9066)] = 157301, + [SMALL_STATE(9067)] = 157390, + [SMALL_STATE(9068)] = 157479, + [SMALL_STATE(9069)] = 157568, + [SMALL_STATE(9070)] = 157657, + [SMALL_STATE(9071)] = 157746, + [SMALL_STATE(9072)] = 157835, + [SMALL_STATE(9073)] = 157924, + [SMALL_STATE(9074)] = 158013, + [SMALL_STATE(9075)] = 158102, + [SMALL_STATE(9076)] = 158191, + [SMALL_STATE(9077)] = 158280, + [SMALL_STATE(9078)] = 158369, + [SMALL_STATE(9079)] = 158458, + [SMALL_STATE(9080)] = 158547, + [SMALL_STATE(9081)] = 158636, + [SMALL_STATE(9082)] = 158725, + [SMALL_STATE(9083)] = 158814, + [SMALL_STATE(9084)] = 158903, + [SMALL_STATE(9085)] = 158992, + [SMALL_STATE(9086)] = 159081, + [SMALL_STATE(9087)] = 159170, + [SMALL_STATE(9088)] = 159259, + [SMALL_STATE(9089)] = 159348, + [SMALL_STATE(9090)] = 159437, + [SMALL_STATE(9091)] = 159526, + [SMALL_STATE(9092)] = 159615, + [SMALL_STATE(9093)] = 159704, + [SMALL_STATE(9094)] = 159793, + [SMALL_STATE(9095)] = 159882, + [SMALL_STATE(9096)] = 159971, + [SMALL_STATE(9097)] = 160060, + [SMALL_STATE(9098)] = 160149, + [SMALL_STATE(9099)] = 160238, + [SMALL_STATE(9100)] = 160327, + [SMALL_STATE(9101)] = 160416, + [SMALL_STATE(9102)] = 160505, + [SMALL_STATE(9103)] = 160594, + [SMALL_STATE(9104)] = 160683, + [SMALL_STATE(9105)] = 160772, + [SMALL_STATE(9106)] = 160861, + [SMALL_STATE(9107)] = 160950, + [SMALL_STATE(9108)] = 161039, + [SMALL_STATE(9109)] = 161128, + [SMALL_STATE(9110)] = 161217, + [SMALL_STATE(9111)] = 161306, + [SMALL_STATE(9112)] = 161395, + [SMALL_STATE(9113)] = 161484, + [SMALL_STATE(9114)] = 161573, + [SMALL_STATE(9115)] = 161662, + [SMALL_STATE(9116)] = 161751, + [SMALL_STATE(9117)] = 161840, + [SMALL_STATE(9118)] = 161929, + [SMALL_STATE(9119)] = 162018, + [SMALL_STATE(9120)] = 162107, + [SMALL_STATE(9121)] = 162196, + [SMALL_STATE(9122)] = 162285, + [SMALL_STATE(9123)] = 162374, + [SMALL_STATE(9124)] = 162463, + [SMALL_STATE(9125)] = 162552, + [SMALL_STATE(9126)] = 162641, + [SMALL_STATE(9127)] = 162730, + [SMALL_STATE(9128)] = 162819, + [SMALL_STATE(9129)] = 162908, + [SMALL_STATE(9130)] = 162997, + [SMALL_STATE(9131)] = 163086, + [SMALL_STATE(9132)] = 163175, + [SMALL_STATE(9133)] = 163264, + [SMALL_STATE(9134)] = 163353, + [SMALL_STATE(9135)] = 163442, + [SMALL_STATE(9136)] = 163531, + [SMALL_STATE(9137)] = 163620, + [SMALL_STATE(9138)] = 163709, + [SMALL_STATE(9139)] = 163798, + [SMALL_STATE(9140)] = 163887, + [SMALL_STATE(9141)] = 163976, + [SMALL_STATE(9142)] = 164065, + [SMALL_STATE(9143)] = 164154, + [SMALL_STATE(9144)] = 164243, + [SMALL_STATE(9145)] = 164332, + [SMALL_STATE(9146)] = 164421, + [SMALL_STATE(9147)] = 164510, + [SMALL_STATE(9148)] = 164599, + [SMALL_STATE(9149)] = 164688, + [SMALL_STATE(9150)] = 164777, + [SMALL_STATE(9151)] = 164866, + [SMALL_STATE(9152)] = 164955, + [SMALL_STATE(9153)] = 165044, + [SMALL_STATE(9154)] = 165133, + [SMALL_STATE(9155)] = 165222, + [SMALL_STATE(9156)] = 165311, + [SMALL_STATE(9157)] = 165400, + [SMALL_STATE(9158)] = 165489, + [SMALL_STATE(9159)] = 165578, + [SMALL_STATE(9160)] = 165667, + [SMALL_STATE(9161)] = 165756, + [SMALL_STATE(9162)] = 165845, + [SMALL_STATE(9163)] = 165934, + [SMALL_STATE(9164)] = 166023, + [SMALL_STATE(9165)] = 166112, + [SMALL_STATE(9166)] = 166201, + [SMALL_STATE(9167)] = 166290, + [SMALL_STATE(9168)] = 166379, + [SMALL_STATE(9169)] = 166468, + [SMALL_STATE(9170)] = 166557, + [SMALL_STATE(9171)] = 166646, + [SMALL_STATE(9172)] = 166735, + [SMALL_STATE(9173)] = 166824, + [SMALL_STATE(9174)] = 166913, + [SMALL_STATE(9175)] = 167002, + [SMALL_STATE(9176)] = 167091, + [SMALL_STATE(9177)] = 167180, + [SMALL_STATE(9178)] = 167269, + [SMALL_STATE(9179)] = 167358, + [SMALL_STATE(9180)] = 167447, + [SMALL_STATE(9181)] = 167536, + [SMALL_STATE(9182)] = 167625, + [SMALL_STATE(9183)] = 167714, + [SMALL_STATE(9184)] = 167803, + [SMALL_STATE(9185)] = 167892, + [SMALL_STATE(9186)] = 167981, + [SMALL_STATE(9187)] = 168070, + [SMALL_STATE(9188)] = 168159, + [SMALL_STATE(9189)] = 168248, + [SMALL_STATE(9190)] = 168337, + [SMALL_STATE(9191)] = 168426, + [SMALL_STATE(9192)] = 168515, + [SMALL_STATE(9193)] = 168604, + [SMALL_STATE(9194)] = 168693, + [SMALL_STATE(9195)] = 168782, + [SMALL_STATE(9196)] = 168871, + [SMALL_STATE(9197)] = 168960, + [SMALL_STATE(9198)] = 169049, + [SMALL_STATE(9199)] = 169138, + [SMALL_STATE(9200)] = 169227, + [SMALL_STATE(9201)] = 169316, + [SMALL_STATE(9202)] = 169405, + [SMALL_STATE(9203)] = 169494, + [SMALL_STATE(9204)] = 169583, + [SMALL_STATE(9205)] = 169672, + [SMALL_STATE(9206)] = 169761, + [SMALL_STATE(9207)] = 169850, + [SMALL_STATE(9208)] = 169939, + [SMALL_STATE(9209)] = 170028, + [SMALL_STATE(9210)] = 170117, + [SMALL_STATE(9211)] = 170206, + [SMALL_STATE(9212)] = 170295, + [SMALL_STATE(9213)] = 170384, + [SMALL_STATE(9214)] = 170473, + [SMALL_STATE(9215)] = 170562, + [SMALL_STATE(9216)] = 170651, + [SMALL_STATE(9217)] = 170740, + [SMALL_STATE(9218)] = 170829, + [SMALL_STATE(9219)] = 170918, + [SMALL_STATE(9220)] = 171007, + [SMALL_STATE(9221)] = 171096, + [SMALL_STATE(9222)] = 171185, + [SMALL_STATE(9223)] = 171274, + [SMALL_STATE(9224)] = 171363, + [SMALL_STATE(9225)] = 171452, + [SMALL_STATE(9226)] = 171541, + [SMALL_STATE(9227)] = 171630, + [SMALL_STATE(9228)] = 171719, + [SMALL_STATE(9229)] = 171808, + [SMALL_STATE(9230)] = 171897, + [SMALL_STATE(9231)] = 171986, + [SMALL_STATE(9232)] = 172075, + [SMALL_STATE(9233)] = 172164, + [SMALL_STATE(9234)] = 172253, + [SMALL_STATE(9235)] = 172342, + [SMALL_STATE(9236)] = 172431, + [SMALL_STATE(9237)] = 172520, + [SMALL_STATE(9238)] = 172609, + [SMALL_STATE(9239)] = 172698, + [SMALL_STATE(9240)] = 172787, + [SMALL_STATE(9241)] = 172876, + [SMALL_STATE(9242)] = 172965, + [SMALL_STATE(9243)] = 173054, + [SMALL_STATE(9244)] = 173143, + [SMALL_STATE(9245)] = 173232, + [SMALL_STATE(9246)] = 173321, + [SMALL_STATE(9247)] = 173410, + [SMALL_STATE(9248)] = 173499, + [SMALL_STATE(9249)] = 173588, + [SMALL_STATE(9250)] = 173677, + [SMALL_STATE(9251)] = 173766, + [SMALL_STATE(9252)] = 173855, + [SMALL_STATE(9253)] = 173944, + [SMALL_STATE(9254)] = 174033, + [SMALL_STATE(9255)] = 174122, + [SMALL_STATE(9256)] = 174211, + [SMALL_STATE(9257)] = 174300, + [SMALL_STATE(9258)] = 174389, + [SMALL_STATE(9259)] = 174478, + [SMALL_STATE(9260)] = 174567, + [SMALL_STATE(9261)] = 174656, + [SMALL_STATE(9262)] = 174745, + [SMALL_STATE(9263)] = 174834, + [SMALL_STATE(9264)] = 174923, + [SMALL_STATE(9265)] = 175012, + [SMALL_STATE(9266)] = 175101, + [SMALL_STATE(9267)] = 175190, + [SMALL_STATE(9268)] = 175279, + [SMALL_STATE(9269)] = 175368, + [SMALL_STATE(9270)] = 175457, + [SMALL_STATE(9271)] = 175546, + [SMALL_STATE(9272)] = 175635, + [SMALL_STATE(9273)] = 175724, + [SMALL_STATE(9274)] = 175813, + [SMALL_STATE(9275)] = 175902, + [SMALL_STATE(9276)] = 175991, + [SMALL_STATE(9277)] = 176080, + [SMALL_STATE(9278)] = 176169, + [SMALL_STATE(9279)] = 176258, + [SMALL_STATE(9280)] = 176347, + [SMALL_STATE(9281)] = 176436, + [SMALL_STATE(9282)] = 176525, + [SMALL_STATE(9283)] = 176614, + [SMALL_STATE(9284)] = 176703, + [SMALL_STATE(9285)] = 176792, + [SMALL_STATE(9286)] = 176881, + [SMALL_STATE(9287)] = 176970, + [SMALL_STATE(9288)] = 177059, + [SMALL_STATE(9289)] = 177148, + [SMALL_STATE(9290)] = 177237, + [SMALL_STATE(9291)] = 177326, + [SMALL_STATE(9292)] = 177415, + [SMALL_STATE(9293)] = 177504, + [SMALL_STATE(9294)] = 177593, + [SMALL_STATE(9295)] = 177682, + [SMALL_STATE(9296)] = 177771, + [SMALL_STATE(9297)] = 177860, + [SMALL_STATE(9298)] = 177949, + [SMALL_STATE(9299)] = 178038, + [SMALL_STATE(9300)] = 178127, + [SMALL_STATE(9301)] = 178216, + [SMALL_STATE(9302)] = 178305, + [SMALL_STATE(9303)] = 178394, + [SMALL_STATE(9304)] = 178483, + [SMALL_STATE(9305)] = 178572, + [SMALL_STATE(9306)] = 178661, + [SMALL_STATE(9307)] = 178750, + [SMALL_STATE(9308)] = 178839, + [SMALL_STATE(9309)] = 178928, + [SMALL_STATE(9310)] = 179017, + [SMALL_STATE(9311)] = 179106, + [SMALL_STATE(9312)] = 179195, + [SMALL_STATE(9313)] = 179284, + [SMALL_STATE(9314)] = 179373, + [SMALL_STATE(9315)] = 179462, + [SMALL_STATE(9316)] = 179551, + [SMALL_STATE(9317)] = 179640, + [SMALL_STATE(9318)] = 179729, + [SMALL_STATE(9319)] = 179818, + [SMALL_STATE(9320)] = 179907, + [SMALL_STATE(9321)] = 179996, + [SMALL_STATE(9322)] = 180085, + [SMALL_STATE(9323)] = 180174, + [SMALL_STATE(9324)] = 180263, + [SMALL_STATE(9325)] = 180352, + [SMALL_STATE(9326)] = 180441, + [SMALL_STATE(9327)] = 180530, + [SMALL_STATE(9328)] = 180619, + [SMALL_STATE(9329)] = 180708, + [SMALL_STATE(9330)] = 180797, + [SMALL_STATE(9331)] = 180886, + [SMALL_STATE(9332)] = 180975, + [SMALL_STATE(9333)] = 181064, + [SMALL_STATE(9334)] = 181153, + [SMALL_STATE(9335)] = 181242, + [SMALL_STATE(9336)] = 181331, + [SMALL_STATE(9337)] = 181420, + [SMALL_STATE(9338)] = 181509, + [SMALL_STATE(9339)] = 181598, + [SMALL_STATE(9340)] = 181687, + [SMALL_STATE(9341)] = 181776, + [SMALL_STATE(9342)] = 181865, + [SMALL_STATE(9343)] = 181954, + [SMALL_STATE(9344)] = 182043, + [SMALL_STATE(9345)] = 182132, + [SMALL_STATE(9346)] = 182221, + [SMALL_STATE(9347)] = 182310, + [SMALL_STATE(9348)] = 182399, + [SMALL_STATE(9349)] = 182488, + [SMALL_STATE(9350)] = 182577, + [SMALL_STATE(9351)] = 182666, + [SMALL_STATE(9352)] = 182755, + [SMALL_STATE(9353)] = 182844, + [SMALL_STATE(9354)] = 182933, + [SMALL_STATE(9355)] = 183022, + [SMALL_STATE(9356)] = 183111, + [SMALL_STATE(9357)] = 183200, + [SMALL_STATE(9358)] = 183289, + [SMALL_STATE(9359)] = 183378, + [SMALL_STATE(9360)] = 183467, + [SMALL_STATE(9361)] = 183556, + [SMALL_STATE(9362)] = 183645, + [SMALL_STATE(9363)] = 183734, + [SMALL_STATE(9364)] = 183823, + [SMALL_STATE(9365)] = 183912, + [SMALL_STATE(9366)] = 184001, + [SMALL_STATE(9367)] = 184090, + [SMALL_STATE(9368)] = 184179, + [SMALL_STATE(9369)] = 184268, + [SMALL_STATE(9370)] = 184357, + [SMALL_STATE(9371)] = 184446, + [SMALL_STATE(9372)] = 184535, + [SMALL_STATE(9373)] = 184624, + [SMALL_STATE(9374)] = 184713, + [SMALL_STATE(9375)] = 184802, + [SMALL_STATE(9376)] = 184891, + [SMALL_STATE(9377)] = 184980, + [SMALL_STATE(9378)] = 185069, + [SMALL_STATE(9379)] = 185158, + [SMALL_STATE(9380)] = 185247, + [SMALL_STATE(9381)] = 185336, + [SMALL_STATE(9382)] = 185425, + [SMALL_STATE(9383)] = 185514, + [SMALL_STATE(9384)] = 185603, + [SMALL_STATE(9385)] = 185692, + [SMALL_STATE(9386)] = 185781, + [SMALL_STATE(9387)] = 185870, + [SMALL_STATE(9388)] = 185959, + [SMALL_STATE(9389)] = 186048, + [SMALL_STATE(9390)] = 186137, + [SMALL_STATE(9391)] = 186226, + [SMALL_STATE(9392)] = 186315, + [SMALL_STATE(9393)] = 186404, + [SMALL_STATE(9394)] = 186493, + [SMALL_STATE(9395)] = 186582, + [SMALL_STATE(9396)] = 186671, + [SMALL_STATE(9397)] = 186760, + [SMALL_STATE(9398)] = 186849, + [SMALL_STATE(9399)] = 186938, + [SMALL_STATE(9400)] = 187027, + [SMALL_STATE(9401)] = 187116, + [SMALL_STATE(9402)] = 187205, + [SMALL_STATE(9403)] = 187294, + [SMALL_STATE(9404)] = 187383, + [SMALL_STATE(9405)] = 187472, + [SMALL_STATE(9406)] = 187561, + [SMALL_STATE(9407)] = 187650, + [SMALL_STATE(9408)] = 187739, + [SMALL_STATE(9409)] = 187828, + [SMALL_STATE(9410)] = 187917, + [SMALL_STATE(9411)] = 188006, + [SMALL_STATE(9412)] = 188095, + [SMALL_STATE(9413)] = 188184, + [SMALL_STATE(9414)] = 188273, + [SMALL_STATE(9415)] = 188362, + [SMALL_STATE(9416)] = 188451, + [SMALL_STATE(9417)] = 188540, + [SMALL_STATE(9418)] = 188629, + [SMALL_STATE(9419)] = 188718, + [SMALL_STATE(9420)] = 188807, + [SMALL_STATE(9421)] = 188896, + [SMALL_STATE(9422)] = 188985, + [SMALL_STATE(9423)] = 189074, + [SMALL_STATE(9424)] = 189163, + [SMALL_STATE(9425)] = 189252, + [SMALL_STATE(9426)] = 189341, + [SMALL_STATE(9427)] = 189430, + [SMALL_STATE(9428)] = 189519, + [SMALL_STATE(9429)] = 189608, + [SMALL_STATE(9430)] = 189697, + [SMALL_STATE(9431)] = 189786, + [SMALL_STATE(9432)] = 189875, + [SMALL_STATE(9433)] = 189964, + [SMALL_STATE(9434)] = 190053, + [SMALL_STATE(9435)] = 190142, + [SMALL_STATE(9436)] = 190231, + [SMALL_STATE(9437)] = 190320, + [SMALL_STATE(9438)] = 190409, + [SMALL_STATE(9439)] = 190498, + [SMALL_STATE(9440)] = 190587, + [SMALL_STATE(9441)] = 190676, + [SMALL_STATE(9442)] = 190765, + [SMALL_STATE(9443)] = 190854, + [SMALL_STATE(9444)] = 190943, + [SMALL_STATE(9445)] = 191032, + [SMALL_STATE(9446)] = 191121, + [SMALL_STATE(9447)] = 191210, + [SMALL_STATE(9448)] = 191299, + [SMALL_STATE(9449)] = 191388, + [SMALL_STATE(9450)] = 191477, + [SMALL_STATE(9451)] = 191566, + [SMALL_STATE(9452)] = 191655, + [SMALL_STATE(9453)] = 191744, + [SMALL_STATE(9454)] = 191833, + [SMALL_STATE(9455)] = 191922, + [SMALL_STATE(9456)] = 192011, + [SMALL_STATE(9457)] = 192100, + [SMALL_STATE(9458)] = 192189, + [SMALL_STATE(9459)] = 192278, + [SMALL_STATE(9460)] = 192367, + [SMALL_STATE(9461)] = 192456, + [SMALL_STATE(9462)] = 192545, + [SMALL_STATE(9463)] = 192634, + [SMALL_STATE(9464)] = 192723, + [SMALL_STATE(9465)] = 192812, + [SMALL_STATE(9466)] = 192901, + [SMALL_STATE(9467)] = 192990, + [SMALL_STATE(9468)] = 193079, + [SMALL_STATE(9469)] = 193168, + [SMALL_STATE(9470)] = 193257, + [SMALL_STATE(9471)] = 193346, + [SMALL_STATE(9472)] = 193435, + [SMALL_STATE(9473)] = 193524, + [SMALL_STATE(9474)] = 193613, + [SMALL_STATE(9475)] = 193702, + [SMALL_STATE(9476)] = 193791, + [SMALL_STATE(9477)] = 193880, + [SMALL_STATE(9478)] = 193969, + [SMALL_STATE(9479)] = 194058, + [SMALL_STATE(9480)] = 194147, + [SMALL_STATE(9481)] = 194236, + [SMALL_STATE(9482)] = 194325, + [SMALL_STATE(9483)] = 194414, + [SMALL_STATE(9484)] = 194503, + [SMALL_STATE(9485)] = 194592, + [SMALL_STATE(9486)] = 194681, + [SMALL_STATE(9487)] = 194770, + [SMALL_STATE(9488)] = 194859, + [SMALL_STATE(9489)] = 194948, + [SMALL_STATE(9490)] = 195037, + [SMALL_STATE(9491)] = 195126, + [SMALL_STATE(9492)] = 195215, + [SMALL_STATE(9493)] = 195304, + [SMALL_STATE(9494)] = 195393, + [SMALL_STATE(9495)] = 195482, + [SMALL_STATE(9496)] = 195571, + [SMALL_STATE(9497)] = 195660, + [SMALL_STATE(9498)] = 195749, + [SMALL_STATE(9499)] = 195838, + [SMALL_STATE(9500)] = 195927, + [SMALL_STATE(9501)] = 196016, + [SMALL_STATE(9502)] = 196105, + [SMALL_STATE(9503)] = 196194, + [SMALL_STATE(9504)] = 196283, + [SMALL_STATE(9505)] = 196372, + [SMALL_STATE(9506)] = 196461, + [SMALL_STATE(9507)] = 196550, + [SMALL_STATE(9508)] = 196639, + [SMALL_STATE(9509)] = 196728, + [SMALL_STATE(9510)] = 196817, + [SMALL_STATE(9511)] = 196906, + [SMALL_STATE(9512)] = 196995, + [SMALL_STATE(9513)] = 197084, + [SMALL_STATE(9514)] = 197173, + [SMALL_STATE(9515)] = 197262, + [SMALL_STATE(9516)] = 197351, + [SMALL_STATE(9517)] = 197440, + [SMALL_STATE(9518)] = 197529, + [SMALL_STATE(9519)] = 197618, + [SMALL_STATE(9520)] = 197707, + [SMALL_STATE(9521)] = 197796, + [SMALL_STATE(9522)] = 197885, + [SMALL_STATE(9523)] = 197974, + [SMALL_STATE(9524)] = 198063, + [SMALL_STATE(9525)] = 198152, + [SMALL_STATE(9526)] = 198241, + [SMALL_STATE(9527)] = 198330, + [SMALL_STATE(9528)] = 198419, + [SMALL_STATE(9529)] = 198508, + [SMALL_STATE(9530)] = 198597, + [SMALL_STATE(9531)] = 198686, + [SMALL_STATE(9532)] = 198775, + [SMALL_STATE(9533)] = 198864, + [SMALL_STATE(9534)] = 198953, + [SMALL_STATE(9535)] = 199042, + [SMALL_STATE(9536)] = 199131, + [SMALL_STATE(9537)] = 199220, + [SMALL_STATE(9538)] = 199309, + [SMALL_STATE(9539)] = 199398, + [SMALL_STATE(9540)] = 199487, + [SMALL_STATE(9541)] = 199576, + [SMALL_STATE(9542)] = 199665, + [SMALL_STATE(9543)] = 199754, + [SMALL_STATE(9544)] = 199843, + [SMALL_STATE(9545)] = 199932, + [SMALL_STATE(9546)] = 200021, + [SMALL_STATE(9547)] = 200110, + [SMALL_STATE(9548)] = 200199, + [SMALL_STATE(9549)] = 200288, + [SMALL_STATE(9550)] = 200377, + [SMALL_STATE(9551)] = 200466, + [SMALL_STATE(9552)] = 200555, + [SMALL_STATE(9553)] = 200644, + [SMALL_STATE(9554)] = 200733, + [SMALL_STATE(9555)] = 200822, + [SMALL_STATE(9556)] = 200911, + [SMALL_STATE(9557)] = 201000, + [SMALL_STATE(9558)] = 201089, + [SMALL_STATE(9559)] = 201178, + [SMALL_STATE(9560)] = 201267, + [SMALL_STATE(9561)] = 201356, + [SMALL_STATE(9562)] = 201445, + [SMALL_STATE(9563)] = 201534, + [SMALL_STATE(9564)] = 201623, + [SMALL_STATE(9565)] = 201712, + [SMALL_STATE(9566)] = 201801, + [SMALL_STATE(9567)] = 201890, + [SMALL_STATE(9568)] = 201979, + [SMALL_STATE(9569)] = 202068, + [SMALL_STATE(9570)] = 202157, + [SMALL_STATE(9571)] = 202246, + [SMALL_STATE(9572)] = 202335, + [SMALL_STATE(9573)] = 202424, + [SMALL_STATE(9574)] = 202513, + [SMALL_STATE(9575)] = 202602, + [SMALL_STATE(9576)] = 202691, + [SMALL_STATE(9577)] = 202780, + [SMALL_STATE(9578)] = 202869, + [SMALL_STATE(9579)] = 202958, + [SMALL_STATE(9580)] = 203047, + [SMALL_STATE(9581)] = 203136, + [SMALL_STATE(9582)] = 203225, + [SMALL_STATE(9583)] = 203314, + [SMALL_STATE(9584)] = 203403, + [SMALL_STATE(9585)] = 203492, + [SMALL_STATE(9586)] = 203581, + [SMALL_STATE(9587)] = 203670, + [SMALL_STATE(9588)] = 203759, + [SMALL_STATE(9589)] = 203848, + [SMALL_STATE(9590)] = 203937, + [SMALL_STATE(9591)] = 204026, + [SMALL_STATE(9592)] = 204115, + [SMALL_STATE(9593)] = 204204, + [SMALL_STATE(9594)] = 204293, + [SMALL_STATE(9595)] = 204382, + [SMALL_STATE(9596)] = 204471, + [SMALL_STATE(9597)] = 204560, + [SMALL_STATE(9598)] = 204649, + [SMALL_STATE(9599)] = 204738, + [SMALL_STATE(9600)] = 204827, + [SMALL_STATE(9601)] = 204916, + [SMALL_STATE(9602)] = 205005, + [SMALL_STATE(9603)] = 205094, + [SMALL_STATE(9604)] = 205183, + [SMALL_STATE(9605)] = 205272, + [SMALL_STATE(9606)] = 205361, + [SMALL_STATE(9607)] = 205450, + [SMALL_STATE(9608)] = 205539, + [SMALL_STATE(9609)] = 205628, + [SMALL_STATE(9610)] = 205717, + [SMALL_STATE(9611)] = 205806, + [SMALL_STATE(9612)] = 205895, + [SMALL_STATE(9613)] = 205984, + [SMALL_STATE(9614)] = 206073, + [SMALL_STATE(9615)] = 206162, + [SMALL_STATE(9616)] = 206251, + [SMALL_STATE(9617)] = 206340, + [SMALL_STATE(9618)] = 206429, + [SMALL_STATE(9619)] = 206518, + [SMALL_STATE(9620)] = 206607, + [SMALL_STATE(9621)] = 206696, + [SMALL_STATE(9622)] = 206785, + [SMALL_STATE(9623)] = 206874, + [SMALL_STATE(9624)] = 206963, + [SMALL_STATE(9625)] = 207052, + [SMALL_STATE(9626)] = 207141, + [SMALL_STATE(9627)] = 207230, + [SMALL_STATE(9628)] = 207319, + [SMALL_STATE(9629)] = 207408, + [SMALL_STATE(9630)] = 207497, + [SMALL_STATE(9631)] = 207586, + [SMALL_STATE(9632)] = 207675, + [SMALL_STATE(9633)] = 207764, + [SMALL_STATE(9634)] = 207853, + [SMALL_STATE(9635)] = 207942, + [SMALL_STATE(9636)] = 208031, + [SMALL_STATE(9637)] = 208120, + [SMALL_STATE(9638)] = 208209, + [SMALL_STATE(9639)] = 208298, + [SMALL_STATE(9640)] = 208387, + [SMALL_STATE(9641)] = 208476, + [SMALL_STATE(9642)] = 208565, + [SMALL_STATE(9643)] = 208654, + [SMALL_STATE(9644)] = 208743, + [SMALL_STATE(9645)] = 208832, + [SMALL_STATE(9646)] = 208921, + [SMALL_STATE(9647)] = 209010, + [SMALL_STATE(9648)] = 209099, + [SMALL_STATE(9649)] = 209188, + [SMALL_STATE(9650)] = 209277, + [SMALL_STATE(9651)] = 209366, + [SMALL_STATE(9652)] = 209455, + [SMALL_STATE(9653)] = 209544, + [SMALL_STATE(9654)] = 209633, + [SMALL_STATE(9655)] = 209722, + [SMALL_STATE(9656)] = 209811, + [SMALL_STATE(9657)] = 209900, + [SMALL_STATE(9658)] = 209989, + [SMALL_STATE(9659)] = 210078, + [SMALL_STATE(9660)] = 210167, + [SMALL_STATE(9661)] = 210256, + [SMALL_STATE(9662)] = 210345, + [SMALL_STATE(9663)] = 210434, + [SMALL_STATE(9664)] = 210523, + [SMALL_STATE(9665)] = 210612, + [SMALL_STATE(9666)] = 210701, + [SMALL_STATE(9667)] = 210790, + [SMALL_STATE(9668)] = 210879, + [SMALL_STATE(9669)] = 210968, + [SMALL_STATE(9670)] = 211057, + [SMALL_STATE(9671)] = 211146, + [SMALL_STATE(9672)] = 211235, + [SMALL_STATE(9673)] = 211324, + [SMALL_STATE(9674)] = 211413, + [SMALL_STATE(9675)] = 211502, + [SMALL_STATE(9676)] = 211591, + [SMALL_STATE(9677)] = 211680, + [SMALL_STATE(9678)] = 211769, + [SMALL_STATE(9679)] = 211858, + [SMALL_STATE(9680)] = 211947, + [SMALL_STATE(9681)] = 212036, + [SMALL_STATE(9682)] = 212125, + [SMALL_STATE(9683)] = 212214, + [SMALL_STATE(9684)] = 212303, + [SMALL_STATE(9685)] = 212392, + [SMALL_STATE(9686)] = 212481, + [SMALL_STATE(9687)] = 212570, + [SMALL_STATE(9688)] = 212659, + [SMALL_STATE(9689)] = 212748, + [SMALL_STATE(9690)] = 212837, + [SMALL_STATE(9691)] = 212926, + [SMALL_STATE(9692)] = 213015, + [SMALL_STATE(9693)] = 213104, + [SMALL_STATE(9694)] = 213193, + [SMALL_STATE(9695)] = 213282, + [SMALL_STATE(9696)] = 213371, + [SMALL_STATE(9697)] = 213460, + [SMALL_STATE(9698)] = 213549, + [SMALL_STATE(9699)] = 213638, + [SMALL_STATE(9700)] = 213727, + [SMALL_STATE(9701)] = 213816, + [SMALL_STATE(9702)] = 213905, + [SMALL_STATE(9703)] = 213994, + [SMALL_STATE(9704)] = 214083, + [SMALL_STATE(9705)] = 214172, + [SMALL_STATE(9706)] = 214261, + [SMALL_STATE(9707)] = 214350, + [SMALL_STATE(9708)] = 214439, + [SMALL_STATE(9709)] = 214528, + [SMALL_STATE(9710)] = 214617, + [SMALL_STATE(9711)] = 214706, + [SMALL_STATE(9712)] = 214795, + [SMALL_STATE(9713)] = 214884, + [SMALL_STATE(9714)] = 214973, + [SMALL_STATE(9715)] = 215062, + [SMALL_STATE(9716)] = 215151, + [SMALL_STATE(9717)] = 215240, + [SMALL_STATE(9718)] = 215329, + [SMALL_STATE(9719)] = 215418, + [SMALL_STATE(9720)] = 215507, + [SMALL_STATE(9721)] = 215596, + [SMALL_STATE(9722)] = 215685, + [SMALL_STATE(9723)] = 215774, + [SMALL_STATE(9724)] = 215863, + [SMALL_STATE(9725)] = 215952, + [SMALL_STATE(9726)] = 216041, + [SMALL_STATE(9727)] = 216130, + [SMALL_STATE(9728)] = 216219, + [SMALL_STATE(9729)] = 216308, + [SMALL_STATE(9730)] = 216397, + [SMALL_STATE(9731)] = 216486, + [SMALL_STATE(9732)] = 216575, + [SMALL_STATE(9733)] = 216664, + [SMALL_STATE(9734)] = 216753, + [SMALL_STATE(9735)] = 216842, + [SMALL_STATE(9736)] = 216931, + [SMALL_STATE(9737)] = 217020, + [SMALL_STATE(9738)] = 217109, + [SMALL_STATE(9739)] = 217198, + [SMALL_STATE(9740)] = 217287, + [SMALL_STATE(9741)] = 217376, + [SMALL_STATE(9742)] = 217465, + [SMALL_STATE(9743)] = 217554, + [SMALL_STATE(9744)] = 217643, + [SMALL_STATE(9745)] = 217732, + [SMALL_STATE(9746)] = 217821, + [SMALL_STATE(9747)] = 217910, + [SMALL_STATE(9748)] = 217999, + [SMALL_STATE(9749)] = 218088, + [SMALL_STATE(9750)] = 218177, + [SMALL_STATE(9751)] = 218266, + [SMALL_STATE(9752)] = 218355, + [SMALL_STATE(9753)] = 218444, + [SMALL_STATE(9754)] = 218533, + [SMALL_STATE(9755)] = 218622, + [SMALL_STATE(9756)] = 218711, + [SMALL_STATE(9757)] = 218800, + [SMALL_STATE(9758)] = 218889, + [SMALL_STATE(9759)] = 218978, + [SMALL_STATE(9760)] = 219067, + [SMALL_STATE(9761)] = 219156, + [SMALL_STATE(9762)] = 219245, + [SMALL_STATE(9763)] = 219334, + [SMALL_STATE(9764)] = 219423, + [SMALL_STATE(9765)] = 219512, + [SMALL_STATE(9766)] = 219601, + [SMALL_STATE(9767)] = 219690, + [SMALL_STATE(9768)] = 219779, + [SMALL_STATE(9769)] = 219868, + [SMALL_STATE(9770)] = 219957, + [SMALL_STATE(9771)] = 220046, + [SMALL_STATE(9772)] = 220135, + [SMALL_STATE(9773)] = 220224, + [SMALL_STATE(9774)] = 220313, + [SMALL_STATE(9775)] = 220402, + [SMALL_STATE(9776)] = 220491, + [SMALL_STATE(9777)] = 220580, + [SMALL_STATE(9778)] = 220669, + [SMALL_STATE(9779)] = 220758, + [SMALL_STATE(9780)] = 220847, + [SMALL_STATE(9781)] = 220936, + [SMALL_STATE(9782)] = 221025, + [SMALL_STATE(9783)] = 221114, + [SMALL_STATE(9784)] = 221203, + [SMALL_STATE(9785)] = 221292, + [SMALL_STATE(9786)] = 221381, + [SMALL_STATE(9787)] = 221470, + [SMALL_STATE(9788)] = 221559, + [SMALL_STATE(9789)] = 221648, + [SMALL_STATE(9790)] = 221737, + [SMALL_STATE(9791)] = 221826, + [SMALL_STATE(9792)] = 221915, + [SMALL_STATE(9793)] = 222004, + [SMALL_STATE(9794)] = 222093, + [SMALL_STATE(9795)] = 222182, + [SMALL_STATE(9796)] = 222271, + [SMALL_STATE(9797)] = 222360, + [SMALL_STATE(9798)] = 222449, + [SMALL_STATE(9799)] = 222538, + [SMALL_STATE(9800)] = 222627, + [SMALL_STATE(9801)] = 222716, + [SMALL_STATE(9802)] = 222805, + [SMALL_STATE(9803)] = 222894, + [SMALL_STATE(9804)] = 222983, + [SMALL_STATE(9805)] = 223072, + [SMALL_STATE(9806)] = 223161, + [SMALL_STATE(9807)] = 223250, + [SMALL_STATE(9808)] = 223339, + [SMALL_STATE(9809)] = 223428, + [SMALL_STATE(9810)] = 223517, + [SMALL_STATE(9811)] = 223606, + [SMALL_STATE(9812)] = 223695, + [SMALL_STATE(9813)] = 223784, + [SMALL_STATE(9814)] = 223873, + [SMALL_STATE(9815)] = 223962, + [SMALL_STATE(9816)] = 224051, + [SMALL_STATE(9817)] = 224140, + [SMALL_STATE(9818)] = 224229, + [SMALL_STATE(9819)] = 224318, + [SMALL_STATE(9820)] = 224407, + [SMALL_STATE(9821)] = 224496, + [SMALL_STATE(9822)] = 224585, + [SMALL_STATE(9823)] = 224674, + [SMALL_STATE(9824)] = 224763, + [SMALL_STATE(9825)] = 224852, + [SMALL_STATE(9826)] = 224941, + [SMALL_STATE(9827)] = 225030, + [SMALL_STATE(9828)] = 225119, + [SMALL_STATE(9829)] = 225208, + [SMALL_STATE(9830)] = 225297, + [SMALL_STATE(9831)] = 225386, + [SMALL_STATE(9832)] = 225475, + [SMALL_STATE(9833)] = 225564, + [SMALL_STATE(9834)] = 225653, + [SMALL_STATE(9835)] = 225742, + [SMALL_STATE(9836)] = 225831, + [SMALL_STATE(9837)] = 225920, + [SMALL_STATE(9838)] = 226009, + [SMALL_STATE(9839)] = 226098, + [SMALL_STATE(9840)] = 226187, + [SMALL_STATE(9841)] = 226276, + [SMALL_STATE(9842)] = 226365, + [SMALL_STATE(9843)] = 226454, + [SMALL_STATE(9844)] = 226543, + [SMALL_STATE(9845)] = 226632, + [SMALL_STATE(9846)] = 226721, + [SMALL_STATE(9847)] = 226810, + [SMALL_STATE(9848)] = 226899, + [SMALL_STATE(9849)] = 226988, + [SMALL_STATE(9850)] = 227077, + [SMALL_STATE(9851)] = 227166, + [SMALL_STATE(9852)] = 227255, + [SMALL_STATE(9853)] = 227344, + [SMALL_STATE(9854)] = 227433, + [SMALL_STATE(9855)] = 227522, + [SMALL_STATE(9856)] = 227611, + [SMALL_STATE(9857)] = 227700, + [SMALL_STATE(9858)] = 227789, + [SMALL_STATE(9859)] = 227878, + [SMALL_STATE(9860)] = 227967, + [SMALL_STATE(9861)] = 228056, + [SMALL_STATE(9862)] = 228145, + [SMALL_STATE(9863)] = 228234, + [SMALL_STATE(9864)] = 228323, + [SMALL_STATE(9865)] = 228412, + [SMALL_STATE(9866)] = 228501, + [SMALL_STATE(9867)] = 228590, + [SMALL_STATE(9868)] = 228679, + [SMALL_STATE(9869)] = 228768, + [SMALL_STATE(9870)] = 228857, + [SMALL_STATE(9871)] = 228946, + [SMALL_STATE(9872)] = 229035, + [SMALL_STATE(9873)] = 229124, + [SMALL_STATE(9874)] = 229213, + [SMALL_STATE(9875)] = 229302, + [SMALL_STATE(9876)] = 229391, + [SMALL_STATE(9877)] = 229480, + [SMALL_STATE(9878)] = 229569, + [SMALL_STATE(9879)] = 229658, + [SMALL_STATE(9880)] = 229747, + [SMALL_STATE(9881)] = 229836, + [SMALL_STATE(9882)] = 229925, + [SMALL_STATE(9883)] = 230014, + [SMALL_STATE(9884)] = 230103, + [SMALL_STATE(9885)] = 230192, + [SMALL_STATE(9886)] = 230281, + [SMALL_STATE(9887)] = 230370, + [SMALL_STATE(9888)] = 230459, + [SMALL_STATE(9889)] = 230548, + [SMALL_STATE(9890)] = 230637, + [SMALL_STATE(9891)] = 230726, + [SMALL_STATE(9892)] = 230815, + [SMALL_STATE(9893)] = 230904, + [SMALL_STATE(9894)] = 230993, + [SMALL_STATE(9895)] = 231082, + [SMALL_STATE(9896)] = 231171, + [SMALL_STATE(9897)] = 231260, + [SMALL_STATE(9898)] = 231349, + [SMALL_STATE(9899)] = 231438, + [SMALL_STATE(9900)] = 231527, + [SMALL_STATE(9901)] = 231616, + [SMALL_STATE(9902)] = 231705, + [SMALL_STATE(9903)] = 231794, + [SMALL_STATE(9904)] = 231883, + [SMALL_STATE(9905)] = 231972, + [SMALL_STATE(9906)] = 232061, + [SMALL_STATE(9907)] = 232150, + [SMALL_STATE(9908)] = 232239, + [SMALL_STATE(9909)] = 232328, + [SMALL_STATE(9910)] = 232417, + [SMALL_STATE(9911)] = 232506, + [SMALL_STATE(9912)] = 232595, + [SMALL_STATE(9913)] = 232684, + [SMALL_STATE(9914)] = 232773, + [SMALL_STATE(9915)] = 232862, + [SMALL_STATE(9916)] = 232951, + [SMALL_STATE(9917)] = 233040, + [SMALL_STATE(9918)] = 233129, + [SMALL_STATE(9919)] = 233218, + [SMALL_STATE(9920)] = 233307, + [SMALL_STATE(9921)] = 233360, + [SMALL_STATE(9922)] = 233449, + [SMALL_STATE(9923)] = 233538, + [SMALL_STATE(9924)] = 233627, + [SMALL_STATE(9925)] = 233716, + [SMALL_STATE(9926)] = 233805, + [SMALL_STATE(9927)] = 233894, + [SMALL_STATE(9928)] = 233983, + [SMALL_STATE(9929)] = 234072, + [SMALL_STATE(9930)] = 234161, + [SMALL_STATE(9931)] = 234250, + [SMALL_STATE(9932)] = 234339, + [SMALL_STATE(9933)] = 234428, + [SMALL_STATE(9934)] = 234517, + [SMALL_STATE(9935)] = 234606, + [SMALL_STATE(9936)] = 234695, + [SMALL_STATE(9937)] = 234784, + [SMALL_STATE(9938)] = 234873, + [SMALL_STATE(9939)] = 234962, + [SMALL_STATE(9940)] = 235051, + [SMALL_STATE(9941)] = 235140, + [SMALL_STATE(9942)] = 235229, + [SMALL_STATE(9943)] = 235318, + [SMALL_STATE(9944)] = 235407, + [SMALL_STATE(9945)] = 235496, + [SMALL_STATE(9946)] = 235585, + [SMALL_STATE(9947)] = 235674, + [SMALL_STATE(9948)] = 235763, + [SMALL_STATE(9949)] = 235852, + [SMALL_STATE(9950)] = 235941, + [SMALL_STATE(9951)] = 236030, + [SMALL_STATE(9952)] = 236119, + [SMALL_STATE(9953)] = 236208, + [SMALL_STATE(9954)] = 236297, + [SMALL_STATE(9955)] = 236386, + [SMALL_STATE(9956)] = 236475, + [SMALL_STATE(9957)] = 236564, + [SMALL_STATE(9958)] = 236653, + [SMALL_STATE(9959)] = 236742, + [SMALL_STATE(9960)] = 236831, + [SMALL_STATE(9961)] = 236920, + [SMALL_STATE(9962)] = 237009, + [SMALL_STATE(9963)] = 237098, + [SMALL_STATE(9964)] = 237187, + [SMALL_STATE(9965)] = 237276, + [SMALL_STATE(9966)] = 237365, + [SMALL_STATE(9967)] = 237454, + [SMALL_STATE(9968)] = 237543, + [SMALL_STATE(9969)] = 237632, + [SMALL_STATE(9970)] = 237721, + [SMALL_STATE(9971)] = 237810, + [SMALL_STATE(9972)] = 237899, + [SMALL_STATE(9973)] = 237988, + [SMALL_STATE(9974)] = 238077, + [SMALL_STATE(9975)] = 238166, + [SMALL_STATE(9976)] = 238255, + [SMALL_STATE(9977)] = 238344, + [SMALL_STATE(9978)] = 238433, + [SMALL_STATE(9979)] = 238522, + [SMALL_STATE(9980)] = 238611, + [SMALL_STATE(9981)] = 238700, + [SMALL_STATE(9982)] = 238789, + [SMALL_STATE(9983)] = 238878, + [SMALL_STATE(9984)] = 238967, + [SMALL_STATE(9985)] = 239056, + [SMALL_STATE(9986)] = 239145, + [SMALL_STATE(9987)] = 239234, + [SMALL_STATE(9988)] = 239323, + [SMALL_STATE(9989)] = 239412, + [SMALL_STATE(9990)] = 239501, + [SMALL_STATE(9991)] = 239590, + [SMALL_STATE(9992)] = 239679, + [SMALL_STATE(9993)] = 239768, + [SMALL_STATE(9994)] = 239857, + [SMALL_STATE(9995)] = 239946, + [SMALL_STATE(9996)] = 240035, + [SMALL_STATE(9997)] = 240124, + [SMALL_STATE(9998)] = 240213, + [SMALL_STATE(9999)] = 240302, + [SMALL_STATE(10000)] = 240391, + [SMALL_STATE(10001)] = 240480, + [SMALL_STATE(10002)] = 240569, + [SMALL_STATE(10003)] = 240658, + [SMALL_STATE(10004)] = 240747, + [SMALL_STATE(10005)] = 240836, + [SMALL_STATE(10006)] = 240925, + [SMALL_STATE(10007)] = 241014, + [SMALL_STATE(10008)] = 241103, + [SMALL_STATE(10009)] = 241192, + [SMALL_STATE(10010)] = 241281, + [SMALL_STATE(10011)] = 241370, + [SMALL_STATE(10012)] = 241459, + [SMALL_STATE(10013)] = 241548, + [SMALL_STATE(10014)] = 241637, + [SMALL_STATE(10015)] = 241726, + [SMALL_STATE(10016)] = 241815, + [SMALL_STATE(10017)] = 241904, + [SMALL_STATE(10018)] = 241993, + [SMALL_STATE(10019)] = 242082, + [SMALL_STATE(10020)] = 242171, + [SMALL_STATE(10021)] = 242260, + [SMALL_STATE(10022)] = 242349, + [SMALL_STATE(10023)] = 242438, + [SMALL_STATE(10024)] = 242527, + [SMALL_STATE(10025)] = 242616, + [SMALL_STATE(10026)] = 242705, + [SMALL_STATE(10027)] = 242794, + [SMALL_STATE(10028)] = 242883, + [SMALL_STATE(10029)] = 242972, + [SMALL_STATE(10030)] = 243061, + [SMALL_STATE(10031)] = 243150, + [SMALL_STATE(10032)] = 243239, + [SMALL_STATE(10033)] = 243328, + [SMALL_STATE(10034)] = 243417, + [SMALL_STATE(10035)] = 243465, + [SMALL_STATE(10036)] = 243513, + [SMALL_STATE(10037)] = 243565, + [SMALL_STATE(10038)] = 243613, + [SMALL_STATE(10039)] = 243673, + [SMALL_STATE(10040)] = 243721, + [SMALL_STATE(10041)] = 243768, + [SMALL_STATE(10042)] = 243815, + [SMALL_STATE(10043)] = 243862, + [SMALL_STATE(10044)] = 243921, + [SMALL_STATE(10045)] = 243968, + [SMALL_STATE(10046)] = 244012, + [SMALL_STATE(10047)] = 244056, + [SMALL_STATE(10048)] = 244100, + [SMALL_STATE(10049)] = 244144, + [SMALL_STATE(10050)] = 244188, + [SMALL_STATE(10051)] = 244232, + [SMALL_STATE(10052)] = 244276, + [SMALL_STATE(10053)] = 244326, + [SMALL_STATE(10054)] = 244377, + [SMALL_STATE(10055)] = 244424, + [SMALL_STATE(10056)] = 244471, + [SMALL_STATE(10057)] = 244518, + [SMALL_STATE(10058)] = 244565, + [SMALL_STATE(10059)] = 244612, + [SMALL_STATE(10060)] = 244658, + [SMALL_STATE(10061)] = 244700, + [SMALL_STATE(10062)] = 244742, + [SMALL_STATE(10063)] = 244784, + [SMALL_STATE(10064)] = 244826, + [SMALL_STATE(10065)] = 244868, + [SMALL_STATE(10066)] = 244916, + [SMALL_STATE(10067)] = 244964, + [SMALL_STATE(10068)] = 245006, + [SMALL_STATE(10069)] = 245052, + [SMALL_STATE(10070)] = 245098, + [SMALL_STATE(10071)] = 245140, + [SMALL_STATE(10072)] = 245182, + [SMALL_STATE(10073)] = 245224, + [SMALL_STATE(10074)] = 245267, + [SMALL_STATE(10075)] = 245310, + [SMALL_STATE(10076)] = 245353, + [SMALL_STATE(10077)] = 245394, + [SMALL_STATE(10078)] = 245437, + [SMALL_STATE(10079)] = 245478, + [SMALL_STATE(10080)] = 245519, + [SMALL_STATE(10081)] = 245560, + [SMALL_STATE(10082)] = 245601, + [SMALL_STATE(10083)] = 245642, + [SMALL_STATE(10084)] = 245683, + [SMALL_STATE(10085)] = 245724, + [SMALL_STATE(10086)] = 245765, + [SMALL_STATE(10087)] = 245806, + [SMALL_STATE(10088)] = 245849, + [SMALL_STATE(10089)] = 245889, + [SMALL_STATE(10090)] = 245941, + [SMALL_STATE(10091)] = 245983, + [SMALL_STATE(10092)] = 246023, + [SMALL_STATE(10093)] = 246071, + [SMALL_STATE(10094)] = 246111, + [SMALL_STATE(10095)] = 246151, + [SMALL_STATE(10096)] = 246209, + [SMALL_STATE(10097)] = 246251, + [SMALL_STATE(10098)] = 246297, + [SMALL_STATE(10099)] = 246339, + [SMALL_STATE(10100)] = 246387, + [SMALL_STATE(10101)] = 246437, + [SMALL_STATE(10102)] = 246481, + [SMALL_STATE(10103)] = 246543, + [SMALL_STATE(10104)] = 246587, + [SMALL_STATE(10105)] = 246639, + [SMALL_STATE(10106)] = 246679, + [SMALL_STATE(10107)] = 246733, + [SMALL_STATE(10108)] = 246773, + [SMALL_STATE(10109)] = 246829, + [SMALL_STATE(10110)] = 246871, + [SMALL_STATE(10111)] = 246931, + [SMALL_STATE(10112)] = 246975, + [SMALL_STATE(10113)] = 247015, + [SMALL_STATE(10114)] = 247067, + [SMALL_STATE(10115)] = 247123, + [SMALL_STATE(10116)] = 247163, + [SMALL_STATE(10117)] = 247204, + [SMALL_STATE(10118)] = 247245, + [SMALL_STATE(10119)] = 247286, + [SMALL_STATE(10120)] = 247327, + [SMALL_STATE(10121)] = 247370, + [SMALL_STATE(10122)] = 247415, + [SMALL_STATE(10123)] = 247462, + [SMALL_STATE(10124)] = 247513, + [SMALL_STATE(10125)] = 247558, + [SMALL_STATE(10126)] = 247611, + [SMALL_STATE(10127)] = 247654, + [SMALL_STATE(10128)] = 247709, + [SMALL_STATE(10129)] = 247766, + [SMALL_STATE(10130)] = 247825, + [SMALL_STATE(10131)] = 247886, + [SMALL_STATE(10132)] = 247939, + [SMALL_STATE(10133)] = 247982, + [SMALL_STATE(10134)] = 248025, + [SMALL_STATE(10135)] = 248070, + [SMALL_STATE(10136)] = 248111, + [SMALL_STATE(10137)] = 248156, + [SMALL_STATE(10138)] = 248197, + [SMALL_STATE(10139)] = 248238, + [SMALL_STATE(10140)] = 248283, + [SMALL_STATE(10141)] = 248324, + [SMALL_STATE(10142)] = 248371, + [SMALL_STATE(10143)] = 248418, + [SMALL_STATE(10144)] = 248481, + [SMALL_STATE(10145)] = 248534, + [SMALL_STATE(10146)] = 248575, + [SMALL_STATE(10147)] = 248616, + [SMALL_STATE(10148)] = 248654, + [SMALL_STATE(10149)] = 248692, + [SMALL_STATE(10150)] = 248736, + [SMALL_STATE(10151)] = 248780, + [SMALL_STATE(10152)] = 248822, + [SMALL_STATE(10153)] = 248862, + [SMALL_STATE(10154)] = 248904, + [SMALL_STATE(10155)] = 248950, + [SMALL_STATE(10156)] = 248990, + [SMALL_STATE(10157)] = 249030, + [SMALL_STATE(10158)] = 249070, + [SMALL_STATE(10159)] = 249114, + [SMALL_STATE(10160)] = 249158, + [SMALL_STATE(10161)] = 249204, + [SMALL_STATE(10162)] = 249244, + [SMALL_STATE(10163)] = 249284, + [SMALL_STATE(10164)] = 249324, + [SMALL_STATE(10165)] = 249364, + [SMALL_STATE(10166)] = 249408, + [SMALL_STATE(10167)] = 249448, + [SMALL_STATE(10168)] = 249486, + [SMALL_STATE(10169)] = 249526, + [SMALL_STATE(10170)] = 249570, + [SMALL_STATE(10171)] = 249608, + [SMALL_STATE(10172)] = 249649, + [SMALL_STATE(10173)] = 249690, + [SMALL_STATE(10174)] = 249741, + [SMALL_STATE(10175)] = 249782, + [SMALL_STATE(10176)] = 249831, + [SMALL_STATE(10177)] = 249870, + [SMALL_STATE(10178)] = 249913, + [SMALL_STATE(10179)] = 249970, + [SMALL_STATE(10180)] = 250013, + [SMALL_STATE(10181)] = 250054, + [SMALL_STATE(10182)] = 250107, + [SMALL_STATE(10183)] = 250148, + [SMALL_STATE(10184)] = 250187, + [SMALL_STATE(10185)] = 250248, + [SMALL_STATE(10186)] = 250307, + [SMALL_STATE(10187)] = 250362, + [SMALL_STATE(10188)] = 250405, + [SMALL_STATE(10189)] = 250448, + [SMALL_STATE(10190)] = 250499, + [SMALL_STATE(10191)] = 250538, + [SMALL_STATE(10192)] = 250577, + [SMALL_STATE(10193)] = 250628, + [SMALL_STATE(10194)] = 250667, + [SMALL_STATE(10195)] = 250712, + [SMALL_STATE(10196)] = 250751, + [SMALL_STATE(10197)] = 250798, + [SMALL_STATE(10198)] = 250839, + [SMALL_STATE(10199)] = 250878, + [SMALL_STATE(10200)] = 250921, + [SMALL_STATE(10201)] = 250962, + [SMALL_STATE(10202)] = 251001, + [SMALL_STATE(10203)] = 251040, + [SMALL_STATE(10204)] = 251079, + [SMALL_STATE(10205)] = 251118, + [SMALL_STATE(10206)] = 251161, + [SMALL_STATE(10207)] = 251203, + [SMALL_STATE(10208)] = 251241, + [SMALL_STATE(10209)] = 251281, + [SMALL_STATE(10210)] = 251321, + [SMALL_STATE(10211)] = 251359, + [SMALL_STATE(10212)] = 251399, + [SMALL_STATE(10213)] = 251449, + [SMALL_STATE(10214)] = 251509, + [SMALL_STATE(10215)] = 251549, + [SMALL_STATE(10216)] = 251589, + [SMALL_STATE(10217)] = 251633, + [SMALL_STATE(10218)] = 251679, + [SMALL_STATE(10219)] = 251727, + [SMALL_STATE(10220)] = 251777, + [SMALL_STATE(10221)] = 251829, + [SMALL_STATE(10222)] = 251883, + [SMALL_STATE(10223)] = 251939, + [SMALL_STATE(10224)] = 251997, + [SMALL_STATE(10225)] = 252047, + [SMALL_STATE(10226)] = 252085, + [SMALL_STATE(10227)] = 252127, + [SMALL_STATE(10228)] = 252167, + [SMALL_STATE(10229)] = 252209, + [SMALL_STATE(10230)] = 252247, + [SMALL_STATE(10231)] = 252285, + [SMALL_STATE(10232)] = 252327, + [SMALL_STATE(10233)] = 252369, + [SMALL_STATE(10234)] = 252407, + [SMALL_STATE(10235)] = 252449, + [SMALL_STATE(10236)] = 252487, + [SMALL_STATE(10237)] = 252525, + [SMALL_STATE(10238)] = 252562, + [SMALL_STATE(10239)] = 252601, + [SMALL_STATE(10240)] = 252638, + [SMALL_STATE(10241)] = 252675, + [SMALL_STATE(10242)] = 252712, + [SMALL_STATE(10243)] = 252749, + [SMALL_STATE(10244)] = 252788, + [SMALL_STATE(10245)] = 252829, + [SMALL_STATE(10246)] = 252876, + [SMALL_STATE(10247)] = 252919, + [SMALL_STATE(10248)] = 252956, + [SMALL_STATE(10249)] = 253001, + [SMALL_STATE(10250)] = 253048, + [SMALL_STATE(10251)] = 253097, + [SMALL_STATE(10252)] = 253134, + [SMALL_STATE(10253)] = 253171, + [SMALL_STATE(10254)] = 253212, + [SMALL_STATE(10255)] = 253271, + [SMALL_STATE(10256)] = 253308, + [SMALL_STATE(10257)] = 253345, + [SMALL_STATE(10258)] = 253384, + [SMALL_STATE(10259)] = 253425, + [SMALL_STATE(10260)] = 253468, + [SMALL_STATE(10261)] = 253515, + [SMALL_STATE(10262)] = 253564, + [SMALL_STATE(10263)] = 253615, + [SMALL_STATE(10264)] = 253668, + [SMALL_STATE(10265)] = 253723, + [SMALL_STATE(10266)] = 253780, + [SMALL_STATE(10267)] = 253829, + [SMALL_STATE(10268)] = 253868, + [SMALL_STATE(10269)] = 253919, + [SMALL_STATE(10270)] = 253972, + [SMALL_STATE(10271)] = 254013, + [SMALL_STATE(10272)] = 254068, + [SMALL_STATE(10273)] = 254111, + [SMALL_STATE(10274)] = 254150, + [SMALL_STATE(10275)] = 254195, + [SMALL_STATE(10276)] = 254236, + [SMALL_STATE(10277)] = 254283, + [SMALL_STATE(10278)] = 254332, + [SMALL_STATE(10279)] = 254373, + [SMALL_STATE(10280)] = 254424, + [SMALL_STATE(10281)] = 254477, + [SMALL_STATE(10282)] = 254526, + [SMALL_STATE(10283)] = 254581, + [SMALL_STATE(10284)] = 254638, + [SMALL_STATE(10285)] = 254675, + [SMALL_STATE(10286)] = 254722, + [SMALL_STATE(10287)] = 254779, + [SMALL_STATE(10288)] = 254838, + [SMALL_STATE(10289)] = 254887, + [SMALL_STATE(10290)] = 254936, + [SMALL_STATE(10291)] = 254976, + [SMALL_STATE(10292)] = 255016, + [SMALL_STATE(10293)] = 255056, + [SMALL_STATE(10294)] = 255094, + [SMALL_STATE(10295)] = 255134, + [SMALL_STATE(10296)] = 255174, + [SMALL_STATE(10297)] = 255214, + [SMALL_STATE(10298)] = 255256, + [SMALL_STATE(10299)] = 255296, + [SMALL_STATE(10300)] = 255336, + [SMALL_STATE(10301)] = 255376, + [SMALL_STATE(10302)] = 255416, + [SMALL_STATE(10303)] = 255453, + [SMALL_STATE(10304)] = 255490, + [SMALL_STATE(10305)] = 255531, + [SMALL_STATE(10306)] = 255563, + [SMALL_STATE(10307)] = 255619, + [SMALL_STATE(10308)] = 255653, + [SMALL_STATE(10309)] = 255709, + [SMALL_STATE(10310)] = 255743, + [SMALL_STATE(10311)] = 255779, + [SMALL_STATE(10312)] = 255817, + [SMALL_STATE(10313)] = 255857, + [SMALL_STATE(10314)] = 255891, + [SMALL_STATE(10315)] = 255933, + [SMALL_STATE(10316)] = 255977, + [SMALL_STATE(10317)] = 256023, + [SMALL_STATE(10318)] = 256071, + [SMALL_STATE(10319)] = 256121, + [SMALL_STATE(10320)] = 256155, + [SMALL_STATE(10321)] = 256189, + [SMALL_STATE(10322)] = 256221, + [SMALL_STATE(10323)] = 256277, + [SMALL_STATE(10324)] = 256333, + [SMALL_STATE(10325)] = 256389, + [SMALL_STATE(10326)] = 256445, + [SMALL_STATE(10327)] = 256479, + [SMALL_STATE(10328)] = 256511, + [SMALL_STATE(10329)] = 256553, + [SMALL_STATE(10330)] = 256605, + [SMALL_STATE(10331)] = 256645, + [SMALL_STATE(10332)] = 256682, + [SMALL_STATE(10333)] = 256719, + [SMALL_STATE(10334)] = 256752, + [SMALL_STATE(10335)] = 256785, + [SMALL_STATE(10336)] = 256818, + [SMALL_STATE(10337)] = 256861, + [SMALL_STATE(10338)] = 256904, + [SMALL_STATE(10339)] = 256949, + [SMALL_STATE(10340)] = 256982, + [SMALL_STATE(10341)] = 257029, + [SMALL_STATE(10342)] = 257068, + [SMALL_STATE(10343)] = 257101, + [SMALL_STATE(10344)] = 257134, + [SMALL_STATE(10345)] = 257169, + [SMALL_STATE(10346)] = 257202, + [SMALL_STATE(10347)] = 257235, + [SMALL_STATE(10348)] = 257268, + [SMALL_STATE(10349)] = 257317, + [SMALL_STATE(10350)] = 257368, + [SMALL_STATE(10351)] = 257401, + [SMALL_STATE(10352)] = 257444, + [SMALL_STATE(10353)] = 257477, + [SMALL_STATE(10354)] = 257510, + [SMALL_STATE(10355)] = 257547, + [SMALL_STATE(10356)] = 257582, + [SMALL_STATE(10357)] = 257619, + [SMALL_STATE(10358)] = 257652, + [SMALL_STATE(10359)] = 257705, + [SMALL_STATE(10360)] = 257738, + [SMALL_STATE(10361)] = 257777, + [SMALL_STATE(10362)] = 257814, + [SMALL_STATE(10363)] = 257847, + [SMALL_STATE(10364)] = 257879, + [SMALL_STATE(10365)] = 257913, + [SMALL_STATE(10366)] = 257945, + [SMALL_STATE(10367)] = 257977, + [SMALL_STATE(10368)] = 258009, + [SMALL_STATE(10369)] = 258045, + [SMALL_STATE(10370)] = 258087, + [SMALL_STATE(10371)] = 258123, + [SMALL_STATE(10372)] = 258155, + [SMALL_STATE(10373)] = 258191, + [SMALL_STATE(10374)] = 258225, + [SMALL_STATE(10375)] = 258259, + [SMALL_STATE(10376)] = 258295, + [SMALL_STATE(10377)] = 258327, + [SMALL_STATE(10378)] = 258359, + [SMALL_STATE(10379)] = 258391, + [SMALL_STATE(10380)] = 258427, + [SMALL_STATE(10381)] = 258459, + [SMALL_STATE(10382)] = 258495, + [SMALL_STATE(10383)] = 258527, + [SMALL_STATE(10384)] = 258572, + [SMALL_STATE(10385)] = 258625, + [SMALL_STATE(10386)] = 258656, + [SMALL_STATE(10387)] = 258685, + [SMALL_STATE(10388)] = 258714, + [SMALL_STATE(10389)] = 258761, + [SMALL_STATE(10390)] = 258792, + [SMALL_STATE(10391)] = 258821, + [SMALL_STATE(10392)] = 258852, + [SMALL_STATE(10393)] = 258883, + [SMALL_STATE(10394)] = 258916, + [SMALL_STATE(10395)] = 258947, + [SMALL_STATE(10396)] = 258980, + [SMALL_STATE(10397)] = 259011, + [SMALL_STATE(10398)] = 259054, + [SMALL_STATE(10399)] = 259085, + [SMALL_STATE(10400)] = 259138, + [SMALL_STATE(10401)] = 259187, + [SMALL_STATE(10402)] = 259228, + [SMALL_STATE(10403)] = 259279, + [SMALL_STATE(10404)] = 259310, + [SMALL_STATE(10405)] = 259341, + [SMALL_STATE(10406)] = 259372, + [SMALL_STATE(10407)] = 259415, + [SMALL_STATE(10408)] = 259450, + [SMALL_STATE(10409)] = 259483, + [SMALL_STATE(10410)] = 259516, + [SMALL_STATE(10411)] = 259551, + [SMALL_STATE(10412)] = 259588, + [SMALL_STATE(10413)] = 259621, + [SMALL_STATE(10414)] = 259660, + [SMALL_STATE(10415)] = 259701, + [SMALL_STATE(10416)] = 259744, + [SMALL_STATE(10417)] = 259784, + [SMALL_STATE(10418)] = 259814, + [SMALL_STATE(10419)] = 259846, + [SMALL_STATE(10420)] = 259888, + [SMALL_STATE(10421)] = 259940, + [SMALL_STATE(10422)] = 259972, + [SMALL_STATE(10423)] = 260004, + [SMALL_STATE(10424)] = 260038, + [SMALL_STATE(10425)] = 260074, + [SMALL_STATE(10426)] = 260112, + [SMALL_STATE(10427)] = 260152, + [SMALL_STATE(10428)] = 260194, + [SMALL_STATE(10429)] = 260238, + [SMALL_STATE(10430)] = 260284, + [SMALL_STATE(10431)] = 260332, + [SMALL_STATE(10432)] = 260382, + [SMALL_STATE(10433)] = 260424, + [SMALL_STATE(10434)] = 260454, + [SMALL_STATE(10435)] = 260504, + [SMALL_STATE(10436)] = 260534, + [SMALL_STATE(10437)] = 260564, + [SMALL_STATE(10438)] = 260594, + [SMALL_STATE(10439)] = 260644, + [SMALL_STATE(10440)] = 260674, + [SMALL_STATE(10441)] = 260704, + [SMALL_STATE(10442)] = 260736, + [SMALL_STATE(10443)] = 260770, + [SMALL_STATE(10444)] = 260806, + [SMALL_STATE(10445)] = 260846, + [SMALL_STATE(10446)] = 260886, + [SMALL_STATE(10447)] = 260928, + [SMALL_STATE(10448)] = 260972, + [SMALL_STATE(10449)] = 261018, + [SMALL_STATE(10450)] = 261066, + [SMALL_STATE(10451)] = 261098, + [SMALL_STATE(10452)] = 261128, + [SMALL_STATE(10453)] = 261158, + [SMALL_STATE(10454)] = 261188, + [SMALL_STATE(10455)] = 261248, + [SMALL_STATE(10456)] = 261308, + [SMALL_STATE(10457)] = 261368, + [SMALL_STATE(10458)] = 261428, + [SMALL_STATE(10459)] = 261488, + [SMALL_STATE(10460)] = 261548, + [SMALL_STATE(10461)] = 261608, + [SMALL_STATE(10462)] = 261668, + [SMALL_STATE(10463)] = 261728, + [SMALL_STATE(10464)] = 261788, + [SMALL_STATE(10465)] = 261848, + [SMALL_STATE(10466)] = 261908, + [SMALL_STATE(10467)] = 261968, + [SMALL_STATE(10468)] = 262028, + [SMALL_STATE(10469)] = 262088, + [SMALL_STATE(10470)] = 262148, + [SMALL_STATE(10471)] = 262208, + [SMALL_STATE(10472)] = 262240, + [SMALL_STATE(10473)] = 262300, + [SMALL_STATE(10474)] = 262352, + [SMALL_STATE(10475)] = 262412, + [SMALL_STATE(10476)] = 262472, + [SMALL_STATE(10477)] = 262526, + [SMALL_STATE(10478)] = 262556, + [SMALL_STATE(10479)] = 262605, + [SMALL_STATE(10480)] = 262648, + [SMALL_STATE(10481)] = 262693, + [SMALL_STATE(10482)] = 262742, + [SMALL_STATE(10483)] = 262777, + [SMALL_STATE(10484)] = 262826, + [SMALL_STATE(10485)] = 262875, + [SMALL_STATE(10486)] = 262920, + [SMALL_STATE(10487)] = 262969, + [SMALL_STATE(10488)] = 262998, + [SMALL_STATE(10489)] = 263049, + [SMALL_STATE(10490)] = 263082, + [SMALL_STATE(10491)] = 263131, + [SMALL_STATE(10492)] = 263180, + [SMALL_STATE(10493)] = 263229, + [SMALL_STATE(10494)] = 263278, + [SMALL_STATE(10495)] = 263327, + [SMALL_STATE(10496)] = 263376, + [SMALL_STATE(10497)] = 263407, + [SMALL_STATE(10498)] = 263448, + [SMALL_STATE(10499)] = 263495, + [SMALL_STATE(10500)] = 263544, + [SMALL_STATE(10501)] = 263593, + [SMALL_STATE(10502)] = 263642, + [SMALL_STATE(10503)] = 263691, + [SMALL_STATE(10504)] = 263728, + [SMALL_STATE(10505)] = 263777, + [SMALL_STATE(10506)] = 263826, + [SMALL_STATE(10507)] = 263875, + [SMALL_STATE(10508)] = 263926, + [SMALL_STATE(10509)] = 263965, + [SMALL_STATE(10510)] = 264014, + [SMALL_STATE(10511)] = 264061, + [SMALL_STATE(10512)] = 264102, + [SMALL_STATE(10513)] = 264131, + [SMALL_STATE(10514)] = 264176, + [SMALL_STATE(10515)] = 264207, + [SMALL_STATE(10516)] = 264238, + [SMALL_STATE(10517)] = 264279, + [SMALL_STATE(10518)] = 264310, + [SMALL_STATE(10519)] = 264359, + [SMALL_STATE(10520)] = 264409, + [SMALL_STATE(10521)] = 264457, + [SMALL_STATE(10522)] = 264485, + [SMALL_STATE(10523)] = 264515, + [SMALL_STATE(10524)] = 264563, + [SMALL_STATE(10525)] = 264597, + [SMALL_STATE(10526)] = 264631, + [SMALL_STATE(10527)] = 264663, + [SMALL_STATE(10528)] = 264697, + [SMALL_STATE(10529)] = 264733, + [SMALL_STATE(10530)] = 264771, + [SMALL_STATE(10531)] = 264811, + [SMALL_STATE(10532)] = 264859, + [SMALL_STATE(10533)] = 264901, + [SMALL_STATE(10534)] = 264945, + [SMALL_STATE(10535)] = 264981, + [SMALL_STATE(10536)] = 265015, + [SMALL_STATE(10537)] = 265063, + [SMALL_STATE(10538)] = 265097, + [SMALL_STATE(10539)] = 265131, + [SMALL_STATE(10540)] = 265165, + [SMALL_STATE(10541)] = 265199, + [SMALL_STATE(10542)] = 265247, + [SMALL_STATE(10543)] = 265295, + [SMALL_STATE(10544)] = 265329, + [SMALL_STATE(10545)] = 265363, + [SMALL_STATE(10546)] = 265411, + [SMALL_STATE(10547)] = 265459, + [SMALL_STATE(10548)] = 265507, + [SMALL_STATE(10549)] = 265557, + [SMALL_STATE(10550)] = 265583, + [SMALL_STATE(10551)] = 265631, + [SMALL_STATE(10552)] = 265665, + [SMALL_STATE(10553)] = 265713, + [SMALL_STATE(10554)] = 265761, + [SMALL_STATE(10555)] = 265795, + [SMALL_STATE(10556)] = 265845, + [SMALL_STATE(10557)] = 265871, + [SMALL_STATE(10558)] = 265919, + [SMALL_STATE(10559)] = 265967, + [SMALL_STATE(10560)] = 266015, + [SMALL_STATE(10561)] = 266063, + [SMALL_STATE(10562)] = 266097, + [SMALL_STATE(10563)] = 266131, + [SMALL_STATE(10564)] = 266165, + [SMALL_STATE(10565)] = 266211, + [SMALL_STATE(10566)] = 266245, + [SMALL_STATE(10567)] = 266293, + [SMALL_STATE(10568)] = 266341, + [SMALL_STATE(10569)] = 266367, + [SMALL_STATE(10570)] = 266401, + [SMALL_STATE(10571)] = 266435, + [SMALL_STATE(10572)] = 266481, + [SMALL_STATE(10573)] = 266529, + [SMALL_STATE(10574)] = 266563, + [SMALL_STATE(10575)] = 266609, + [SMALL_STATE(10576)] = 266657, + [SMALL_STATE(10577)] = 266688, + [SMALL_STATE(10578)] = 266719, + [SMALL_STATE(10579)] = 266754, + [SMALL_STATE(10580)] = 266785, + [SMALL_STATE(10581)] = 266816, + [SMALL_STATE(10582)] = 266847, + [SMALL_STATE(10583)] = 266878, + [SMALL_STATE(10584)] = 266909, + [SMALL_STATE(10585)] = 266956, + [SMALL_STATE(10586)] = 266987, + [SMALL_STATE(10587)] = 267012, + [SMALL_STATE(10588)] = 267043, + [SMALL_STATE(10589)] = 267068, + [SMALL_STATE(10590)] = 267095, + [SMALL_STATE(10591)] = 267140, + [SMALL_STATE(10592)] = 267171, + [SMALL_STATE(10593)] = 267202, + [SMALL_STATE(10594)] = 267231, + [SMALL_STATE(10595)] = 267262, + [SMALL_STATE(10596)] = 267309, + [SMALL_STATE(10597)] = 267340, + [SMALL_STATE(10598)] = 267371, + [SMALL_STATE(10599)] = 267402, + [SMALL_STATE(10600)] = 267433, + [SMALL_STATE(10601)] = 267464, + [SMALL_STATE(10602)] = 267495, + [SMALL_STATE(10603)] = 267526, + [SMALL_STATE(10604)] = 267557, + [SMALL_STATE(10605)] = 267588, + [SMALL_STATE(10606)] = 267619, + [SMALL_STATE(10607)] = 267650, + [SMALL_STATE(10608)] = 267681, + [SMALL_STATE(10609)] = 267712, + [SMALL_STATE(10610)] = 267743, + [SMALL_STATE(10611)] = 267774, + [SMALL_STATE(10612)] = 267805, + [SMALL_STATE(10613)] = 267836, + [SMALL_STATE(10614)] = 267867, + [SMALL_STATE(10615)] = 267914, + [SMALL_STATE(10616)] = 267945, + [SMALL_STATE(10617)] = 267976, + [SMALL_STATE(10618)] = 268007, + [SMALL_STATE(10619)] = 268038, + [SMALL_STATE(10620)] = 268069, + [SMALL_STATE(10621)] = 268114, + [SMALL_STATE(10622)] = 268145, + [SMALL_STATE(10623)] = 268176, + [SMALL_STATE(10624)] = 268207, + [SMALL_STATE(10625)] = 268238, + [SMALL_STATE(10626)] = 268269, + [SMALL_STATE(10627)] = 268300, + [SMALL_STATE(10628)] = 268333, + [SMALL_STATE(10629)] = 268368, + [SMALL_STATE(10630)] = 268405, + [SMALL_STATE(10631)] = 268436, + [SMALL_STATE(10632)] = 268477, + [SMALL_STATE(10633)] = 268520, + [SMALL_STATE(10634)] = 268551, + [SMALL_STATE(10635)] = 268598, + [SMALL_STATE(10636)] = 268629, + [SMALL_STATE(10637)] = 268660, + [SMALL_STATE(10638)] = 268691, + [SMALL_STATE(10639)] = 268722, + [SMALL_STATE(10640)] = 268753, + [SMALL_STATE(10641)] = 268784, + [SMALL_STATE(10642)] = 268831, + [SMALL_STATE(10643)] = 268862, + [SMALL_STATE(10644)] = 268893, + [SMALL_STATE(10645)] = 268940, + [SMALL_STATE(10646)] = 268971, + [SMALL_STATE(10647)] = 269002, + [SMALL_STATE(10648)] = 269033, + [SMALL_STATE(10649)] = 269064, + [SMALL_STATE(10650)] = 269095, + [SMALL_STATE(10651)] = 269126, + [SMALL_STATE(10652)] = 269157, + [SMALL_STATE(10653)] = 269188, + [SMALL_STATE(10654)] = 269235, + [SMALL_STATE(10655)] = 269266, + [SMALL_STATE(10656)] = 269297, + [SMALL_STATE(10657)] = 269328, + [SMALL_STATE(10658)] = 269359, + [SMALL_STATE(10659)] = 269390, + [SMALL_STATE(10660)] = 269415, + [SMALL_STATE(10661)] = 269446, + [SMALL_STATE(10662)] = 269477, + [SMALL_STATE(10663)] = 269508, + [SMALL_STATE(10664)] = 269555, + [SMALL_STATE(10665)] = 269586, + [SMALL_STATE(10666)] = 269617, + [SMALL_STATE(10667)] = 269648, + [SMALL_STATE(10668)] = 269679, + [SMALL_STATE(10669)] = 269724, + [SMALL_STATE(10670)] = 269771, + [SMALL_STATE(10671)] = 269802, + [SMALL_STATE(10672)] = 269849, + [SMALL_STATE(10673)] = 269896, + [SMALL_STATE(10674)] = 269927, + [SMALL_STATE(10675)] = 269958, + [SMALL_STATE(10676)] = 269989, + [SMALL_STATE(10677)] = 270020, + [SMALL_STATE(10678)] = 270067, + [SMALL_STATE(10679)] = 270114, + [SMALL_STATE(10680)] = 270161, + [SMALL_STATE(10681)] = 270192, + [SMALL_STATE(10682)] = 270223, + [SMALL_STATE(10683)] = 270254, + [SMALL_STATE(10684)] = 270301, + [SMALL_STATE(10685)] = 270348, + [SMALL_STATE(10686)] = 270379, + [SMALL_STATE(10687)] = 270410, + [SMALL_STATE(10688)] = 270457, + [SMALL_STATE(10689)] = 270488, + [SMALL_STATE(10690)] = 270527, + [SMALL_STATE(10691)] = 270571, + [SMALL_STATE(10692)] = 270619, + [SMALL_STATE(10693)] = 270663, + [SMALL_STATE(10694)] = 270709, + [SMALL_STATE(10695)] = 270753, + [SMALL_STATE(10696)] = 270801, + [SMALL_STATE(10697)] = 270845, + [SMALL_STATE(10698)] = 270889, + [SMALL_STATE(10699)] = 270929, + [SMALL_STATE(10700)] = 270975, + [SMALL_STATE(10701)] = 271019, + [SMALL_STATE(10702)] = 271067, + [SMALL_STATE(10703)] = 271111, + [SMALL_STATE(10704)] = 271159, + [SMALL_STATE(10705)] = 271205, + [SMALL_STATE(10706)] = 271249, + [SMALL_STATE(10707)] = 271293, + [SMALL_STATE(10708)] = 271337, + [SMALL_STATE(10709)] = 271381, + [SMALL_STATE(10710)] = 271425, + [SMALL_STATE(10711)] = 271469, + [SMALL_STATE(10712)] = 271517, + [SMALL_STATE(10713)] = 271563, + [SMALL_STATE(10714)] = 271607, + [SMALL_STATE(10715)] = 271653, + [SMALL_STATE(10716)] = 271697, + [SMALL_STATE(10717)] = 271743, + [SMALL_STATE(10718)] = 271791, + [SMALL_STATE(10719)] = 271837, + [SMALL_STATE(10720)] = 271881, + [SMALL_STATE(10721)] = 271927, + [SMALL_STATE(10722)] = 271971, + [SMALL_STATE(10723)] = 272015, + [SMALL_STATE(10724)] = 272063, + [SMALL_STATE(10725)] = 272107, + [SMALL_STATE(10726)] = 272147, + [SMALL_STATE(10727)] = 272191, + [SMALL_STATE(10728)] = 272235, + [SMALL_STATE(10729)] = 272283, + [SMALL_STATE(10730)] = 272329, + [SMALL_STATE(10731)] = 272371, + [SMALL_STATE(10732)] = 272417, + [SMALL_STATE(10733)] = 272463, + [SMALL_STATE(10734)] = 272507, + [SMALL_STATE(10735)] = 272551, + [SMALL_STATE(10736)] = 272594, + [SMALL_STATE(10737)] = 272637, + [SMALL_STATE(10738)] = 272680, + [SMALL_STATE(10739)] = 272723, + [SMALL_STATE(10740)] = 272766, + [SMALL_STATE(10741)] = 272809, + [SMALL_STATE(10742)] = 272852, + [SMALL_STATE(10743)] = 272895, + [SMALL_STATE(10744)] = 272938, + [SMALL_STATE(10745)] = 272981, + [SMALL_STATE(10746)] = 273024, + [SMALL_STATE(10747)] = 273067, + [SMALL_STATE(10748)] = 273110, + [SMALL_STATE(10749)] = 273153, + [SMALL_STATE(10750)] = 273196, + [SMALL_STATE(10751)] = 273239, + [SMALL_STATE(10752)] = 273282, + [SMALL_STATE(10753)] = 273325, + [SMALL_STATE(10754)] = 273368, + [SMALL_STATE(10755)] = 273411, + [SMALL_STATE(10756)] = 273454, + [SMALL_STATE(10757)] = 273497, + [SMALL_STATE(10758)] = 273540, + [SMALL_STATE(10759)] = 273583, + [SMALL_STATE(10760)] = 273626, + [SMALL_STATE(10761)] = 273669, + [SMALL_STATE(10762)] = 273712, + [SMALL_STATE(10763)] = 273755, + [SMALL_STATE(10764)] = 273798, + [SMALL_STATE(10765)] = 273841, + [SMALL_STATE(10766)] = 273884, + [SMALL_STATE(10767)] = 273927, + [SMALL_STATE(10768)] = 273970, + [SMALL_STATE(10769)] = 274013, + [SMALL_STATE(10770)] = 274056, + [SMALL_STATE(10771)] = 274099, + [SMALL_STATE(10772)] = 274142, + [SMALL_STATE(10773)] = 274185, + [SMALL_STATE(10774)] = 274228, + [SMALL_STATE(10775)] = 274273, + [SMALL_STATE(10776)] = 274316, + [SMALL_STATE(10777)] = 274359, + [SMALL_STATE(10778)] = 274402, + [SMALL_STATE(10779)] = 274445, + [SMALL_STATE(10780)] = 274488, + [SMALL_STATE(10781)] = 274531, + [SMALL_STATE(10782)] = 274574, + [SMALL_STATE(10783)] = 274617, + [SMALL_STATE(10784)] = 274660, + [SMALL_STATE(10785)] = 274703, + [SMALL_STATE(10786)] = 274746, + [SMALL_STATE(10787)] = 274789, + [SMALL_STATE(10788)] = 274832, + [SMALL_STATE(10789)] = 274875, + [SMALL_STATE(10790)] = 274918, + [SMALL_STATE(10791)] = 274963, + [SMALL_STATE(10792)] = 275006, + [SMALL_STATE(10793)] = 275049, + [SMALL_STATE(10794)] = 275072, + [SMALL_STATE(10795)] = 275095, + [SMALL_STATE(10796)] = 275118, + [SMALL_STATE(10797)] = 275143, + [SMALL_STATE(10798)] = 275170, + [SMALL_STATE(10799)] = 275199, + [SMALL_STATE(10800)] = 275230, + [SMALL_STATE(10801)] = 275263, + [SMALL_STATE(10802)] = 275298, + [SMALL_STATE(10803)] = 275335, + [SMALL_STATE(10804)] = 275374, + [SMALL_STATE(10805)] = 275415, + [SMALL_STATE(10806)] = 275458, + [SMALL_STATE(10807)] = 275501, + [SMALL_STATE(10808)] = 275544, + [SMALL_STATE(10809)] = 275587, + [SMALL_STATE(10810)] = 275630, + [SMALL_STATE(10811)] = 275673, + [SMALL_STATE(10812)] = 275716, + [SMALL_STATE(10813)] = 275759, + [SMALL_STATE(10814)] = 275802, + [SMALL_STATE(10815)] = 275845, + [SMALL_STATE(10816)] = 275888, + [SMALL_STATE(10817)] = 275931, + [SMALL_STATE(10818)] = 275974, + [SMALL_STATE(10819)] = 276007, + [SMALL_STATE(10820)] = 276050, + [SMALL_STATE(10821)] = 276093, + [SMALL_STATE(10822)] = 276136, + [SMALL_STATE(10823)] = 276179, + [SMALL_STATE(10824)] = 276222, + [SMALL_STATE(10825)] = 276265, + [SMALL_STATE(10826)] = 276308, + [SMALL_STATE(10827)] = 276353, + [SMALL_STATE(10828)] = 276396, + [SMALL_STATE(10829)] = 276439, + [SMALL_STATE(10830)] = 276484, + [SMALL_STATE(10831)] = 276527, + [SMALL_STATE(10832)] = 276570, + [SMALL_STATE(10833)] = 276613, + [SMALL_STATE(10834)] = 276656, + [SMALL_STATE(10835)] = 276699, + [SMALL_STATE(10836)] = 276742, + [SMALL_STATE(10837)] = 276785, + [SMALL_STATE(10838)] = 276828, + [SMALL_STATE(10839)] = 276871, + [SMALL_STATE(10840)] = 276914, + [SMALL_STATE(10841)] = 276957, + [SMALL_STATE(10842)] = 277000, + [SMALL_STATE(10843)] = 277043, + [SMALL_STATE(10844)] = 277086, + [SMALL_STATE(10845)] = 277129, + [SMALL_STATE(10846)] = 277172, + [SMALL_STATE(10847)] = 277215, + [SMALL_STATE(10848)] = 277258, + [SMALL_STATE(10849)] = 277301, + [SMALL_STATE(10850)] = 277344, + [SMALL_STATE(10851)] = 277387, + [SMALL_STATE(10852)] = 277430, + [SMALL_STATE(10853)] = 277473, + [SMALL_STATE(10854)] = 277516, + [SMALL_STATE(10855)] = 277559, + [SMALL_STATE(10856)] = 277602, + [SMALL_STATE(10857)] = 277645, + [SMALL_STATE(10858)] = 277688, + [SMALL_STATE(10859)] = 277731, + [SMALL_STATE(10860)] = 277774, + [SMALL_STATE(10861)] = 277817, + [SMALL_STATE(10862)] = 277860, + [SMALL_STATE(10863)] = 277903, + [SMALL_STATE(10864)] = 277946, + [SMALL_STATE(10865)] = 277989, + [SMALL_STATE(10866)] = 278032, + [SMALL_STATE(10867)] = 278075, + [SMALL_STATE(10868)] = 278118, + [SMALL_STATE(10869)] = 278161, + [SMALL_STATE(10870)] = 278204, + [SMALL_STATE(10871)] = 278247, + [SMALL_STATE(10872)] = 278290, + [SMALL_STATE(10873)] = 278333, + [SMALL_STATE(10874)] = 278376, + [SMALL_STATE(10875)] = 278419, + [SMALL_STATE(10876)] = 278462, + [SMALL_STATE(10877)] = 278505, + [SMALL_STATE(10878)] = 278548, + [SMALL_STATE(10879)] = 278591, + [SMALL_STATE(10880)] = 278634, + [SMALL_STATE(10881)] = 278677, + [SMALL_STATE(10882)] = 278720, + [SMALL_STATE(10883)] = 278763, + [SMALL_STATE(10884)] = 278806, + [SMALL_STATE(10885)] = 278849, + [SMALL_STATE(10886)] = 278892, + [SMALL_STATE(10887)] = 278935, + [SMALL_STATE(10888)] = 278978, + [SMALL_STATE(10889)] = 279021, + [SMALL_STATE(10890)] = 279064, + [SMALL_STATE(10891)] = 279107, + [SMALL_STATE(10892)] = 279150, + [SMALL_STATE(10893)] = 279193, + [SMALL_STATE(10894)] = 279236, + [SMALL_STATE(10895)] = 279279, + [SMALL_STATE(10896)] = 279322, + [SMALL_STATE(10897)] = 279365, + [SMALL_STATE(10898)] = 279408, + [SMALL_STATE(10899)] = 279451, + [SMALL_STATE(10900)] = 279494, + [SMALL_STATE(10901)] = 279537, + [SMALL_STATE(10902)] = 279580, + [SMALL_STATE(10903)] = 279623, + [SMALL_STATE(10904)] = 279666, + [SMALL_STATE(10905)] = 279709, + [SMALL_STATE(10906)] = 279752, + [SMALL_STATE(10907)] = 279795, + [SMALL_STATE(10908)] = 279838, + [SMALL_STATE(10909)] = 279881, + [SMALL_STATE(10910)] = 279924, + [SMALL_STATE(10911)] = 279967, + [SMALL_STATE(10912)] = 280010, + [SMALL_STATE(10913)] = 280053, + [SMALL_STATE(10914)] = 280096, + [SMALL_STATE(10915)] = 280139, + [SMALL_STATE(10916)] = 280182, + [SMALL_STATE(10917)] = 280225, + [SMALL_STATE(10918)] = 280248, + [SMALL_STATE(10919)] = 280291, + [SMALL_STATE(10920)] = 280334, + [SMALL_STATE(10921)] = 280377, + [SMALL_STATE(10922)] = 280420, + [SMALL_STATE(10923)] = 280463, + [SMALL_STATE(10924)] = 280506, + [SMALL_STATE(10925)] = 280549, + [SMALL_STATE(10926)] = 280592, + [SMALL_STATE(10927)] = 280635, + [SMALL_STATE(10928)] = 280678, + [SMALL_STATE(10929)] = 280721, + [SMALL_STATE(10930)] = 280764, + [SMALL_STATE(10931)] = 280807, + [SMALL_STATE(10932)] = 280850, + [SMALL_STATE(10933)] = 280893, + [SMALL_STATE(10934)] = 280936, + [SMALL_STATE(10935)] = 280979, + [SMALL_STATE(10936)] = 281022, + [SMALL_STATE(10937)] = 281065, + [SMALL_STATE(10938)] = 281108, + [SMALL_STATE(10939)] = 281151, + [SMALL_STATE(10940)] = 281194, + [SMALL_STATE(10941)] = 281237, + [SMALL_STATE(10942)] = 281280, + [SMALL_STATE(10943)] = 281323, + [SMALL_STATE(10944)] = 281366, + [SMALL_STATE(10945)] = 281409, + [SMALL_STATE(10946)] = 281452, + [SMALL_STATE(10947)] = 281495, + [SMALL_STATE(10948)] = 281538, + [SMALL_STATE(10949)] = 281581, + [SMALL_STATE(10950)] = 281624, + [SMALL_STATE(10951)] = 281667, + [SMALL_STATE(10952)] = 281710, + [SMALL_STATE(10953)] = 281753, + [SMALL_STATE(10954)] = 281796, + [SMALL_STATE(10955)] = 281839, + [SMALL_STATE(10956)] = 281882, + [SMALL_STATE(10957)] = 281925, + [SMALL_STATE(10958)] = 281968, + [SMALL_STATE(10959)] = 282011, + [SMALL_STATE(10960)] = 282054, + [SMALL_STATE(10961)] = 282097, + [SMALL_STATE(10962)] = 282140, + [SMALL_STATE(10963)] = 282183, + [SMALL_STATE(10964)] = 282226, + [SMALL_STATE(10965)] = 282271, + [SMALL_STATE(10966)] = 282314, + [SMALL_STATE(10967)] = 282357, + [SMALL_STATE(10968)] = 282400, + [SMALL_STATE(10969)] = 282443, + [SMALL_STATE(10970)] = 282486, + [SMALL_STATE(10971)] = 282529, + [SMALL_STATE(10972)] = 282574, + [SMALL_STATE(10973)] = 282617, + [SMALL_STATE(10974)] = 282662, + [SMALL_STATE(10975)] = 282707, + [SMALL_STATE(10976)] = 282750, + [SMALL_STATE(10977)] = 282790, + [SMALL_STATE(10978)] = 282830, + [SMALL_STATE(10979)] = 282870, + [SMALL_STATE(10980)] = 282910, + [SMALL_STATE(10981)] = 282950, + [SMALL_STATE(10982)] = 282990, + [SMALL_STATE(10983)] = 283030, + [SMALL_STATE(10984)] = 283070, + [SMALL_STATE(10985)] = 283110, + [SMALL_STATE(10986)] = 283152, + [SMALL_STATE(10987)] = 283192, + [SMALL_STATE(10988)] = 283232, + [SMALL_STATE(10989)] = 283272, + [SMALL_STATE(10990)] = 283312, + [SMALL_STATE(10991)] = 283352, + [SMALL_STATE(10992)] = 283394, + [SMALL_STATE(10993)] = 283434, + [SMALL_STATE(10994)] = 283474, + [SMALL_STATE(10995)] = 283514, + [SMALL_STATE(10996)] = 283554, + [SMALL_STATE(10997)] = 283594, + [SMALL_STATE(10998)] = 283634, + [SMALL_STATE(10999)] = 283674, + [SMALL_STATE(11000)] = 283716, + [SMALL_STATE(11001)] = 283756, + [SMALL_STATE(11002)] = 283796, + [SMALL_STATE(11003)] = 283836, + [SMALL_STATE(11004)] = 283875, + [SMALL_STATE(11005)] = 283896, + [SMALL_STATE(11006)] = 283935, + [SMALL_STATE(11007)] = 283971, + [SMALL_STATE(11008)] = 284007, + [SMALL_STATE(11009)] = 284043, + [SMALL_STATE(11010)] = 284079, + [SMALL_STATE(11011)] = 284115, + [SMALL_STATE(11012)] = 284151, + [SMALL_STATE(11013)] = 284187, + [SMALL_STATE(11014)] = 284205, + [SMALL_STATE(11015)] = 284241, + [SMALL_STATE(11016)] = 284277, + [SMALL_STATE(11017)] = 284311, + [SMALL_STATE(11018)] = 284347, + [SMALL_STATE(11019)] = 284383, + [SMALL_STATE(11020)] = 284419, + [SMALL_STATE(11021)] = 284455, + [SMALL_STATE(11022)] = 284491, + [SMALL_STATE(11023)] = 284527, + [SMALL_STATE(11024)] = 284563, + [SMALL_STATE(11025)] = 284599, + [SMALL_STATE(11026)] = 284633, + [SMALL_STATE(11027)] = 284669, + [SMALL_STATE(11028)] = 284705, + [SMALL_STATE(11029)] = 284741, + [SMALL_STATE(11030)] = 284777, + [SMALL_STATE(11031)] = 284813, + [SMALL_STATE(11032)] = 284849, + [SMALL_STATE(11033)] = 284885, + [SMALL_STATE(11034)] = 284921, + [SMALL_STATE(11035)] = 284957, + [SMALL_STATE(11036)] = 284993, + [SMALL_STATE(11037)] = 285029, + [SMALL_STATE(11038)] = 285065, + [SMALL_STATE(11039)] = 285101, + [SMALL_STATE(11040)] = 285137, + [SMALL_STATE(11041)] = 285173, + [SMALL_STATE(11042)] = 285209, + [SMALL_STATE(11043)] = 285245, + [SMALL_STATE(11044)] = 285281, + [SMALL_STATE(11045)] = 285317, + [SMALL_STATE(11046)] = 285353, + [SMALL_STATE(11047)] = 285389, + [SMALL_STATE(11048)] = 285425, + [SMALL_STATE(11049)] = 285461, + [SMALL_STATE(11050)] = 285497, + [SMALL_STATE(11051)] = 285533, + [SMALL_STATE(11052)] = 285569, + [SMALL_STATE(11053)] = 285605, + [SMALL_STATE(11054)] = 285641, + [SMALL_STATE(11055)] = 285677, + [SMALL_STATE(11056)] = 285713, + [SMALL_STATE(11057)] = 285749, + [SMALL_STATE(11058)] = 285785, + [SMALL_STATE(11059)] = 285821, + [SMALL_STATE(11060)] = 285855, + [SMALL_STATE(11061)] = 285891, + [SMALL_STATE(11062)] = 285925, + [SMALL_STATE(11063)] = 285961, + [SMALL_STATE(11064)] = 285997, + [SMALL_STATE(11065)] = 286033, + [SMALL_STATE(11066)] = 286069, + [SMALL_STATE(11067)] = 286105, + [SMALL_STATE(11068)] = 286141, + [SMALL_STATE(11069)] = 286177, + [SMALL_STATE(11070)] = 286213, + [SMALL_STATE(11071)] = 286249, + [SMALL_STATE(11072)] = 286285, + [SMALL_STATE(11073)] = 286321, + [SMALL_STATE(11074)] = 286357, + [SMALL_STATE(11075)] = 286393, + [SMALL_STATE(11076)] = 286429, + [SMALL_STATE(11077)] = 286465, + [SMALL_STATE(11078)] = 286501, + [SMALL_STATE(11079)] = 286535, + [SMALL_STATE(11080)] = 286571, + [SMALL_STATE(11081)] = 286607, + [SMALL_STATE(11082)] = 286625, + [SMALL_STATE(11083)] = 286661, + [SMALL_STATE(11084)] = 286697, + [SMALL_STATE(11085)] = 286733, + [SMALL_STATE(11086)] = 286769, + [SMALL_STATE(11087)] = 286805, + [SMALL_STATE(11088)] = 286841, + [SMALL_STATE(11089)] = 286877, + [SMALL_STATE(11090)] = 286913, + [SMALL_STATE(11091)] = 286949, + [SMALL_STATE(11092)] = 286985, + [SMALL_STATE(11093)] = 287021, + [SMALL_STATE(11094)] = 287057, + [SMALL_STATE(11095)] = 287093, + [SMALL_STATE(11096)] = 287129, + [SMALL_STATE(11097)] = 287165, + [SMALL_STATE(11098)] = 287201, + [SMALL_STATE(11099)] = 287237, + [SMALL_STATE(11100)] = 287273, + [SMALL_STATE(11101)] = 287309, + [SMALL_STATE(11102)] = 287345, + [SMALL_STATE(11103)] = 287381, + [SMALL_STATE(11104)] = 287417, + [SMALL_STATE(11105)] = 287453, + [SMALL_STATE(11106)] = 287489, + [SMALL_STATE(11107)] = 287525, + [SMALL_STATE(11108)] = 287561, + [SMALL_STATE(11109)] = 287597, + [SMALL_STATE(11110)] = 287633, + [SMALL_STATE(11111)] = 287669, + [SMALL_STATE(11112)] = 287705, + [SMALL_STATE(11113)] = 287740, + [SMALL_STATE(11114)] = 287775, + [SMALL_STATE(11115)] = 287810, + [SMALL_STATE(11116)] = 287845, + [SMALL_STATE(11117)] = 287880, + [SMALL_STATE(11118)] = 287913, + [SMALL_STATE(11119)] = 287938, + [SMALL_STATE(11120)] = 287971, + [SMALL_STATE(11121)] = 288004, + [SMALL_STATE(11122)] = 288039, + [SMALL_STATE(11123)] = 288072, + [SMALL_STATE(11124)] = 288105, + [SMALL_STATE(11125)] = 288138, + [SMALL_STATE(11126)] = 288171, + [SMALL_STATE(11127)] = 288204, + [SMALL_STATE(11128)] = 288237, + [SMALL_STATE(11129)] = 288272, + [SMALL_STATE(11130)] = 288305, + [SMALL_STATE(11131)] = 288338, + [SMALL_STATE(11132)] = 288371, + [SMALL_STATE(11133)] = 288406, + [SMALL_STATE(11134)] = 288441, + [SMALL_STATE(11135)] = 288476, + [SMALL_STATE(11136)] = 288511, + [SMALL_STATE(11137)] = 288536, + [SMALL_STATE(11138)] = 288571, + [SMALL_STATE(11139)] = 288606, + [SMALL_STATE(11140)] = 288639, + [SMALL_STATE(11141)] = 288674, + [SMALL_STATE(11142)] = 288709, + [SMALL_STATE(11143)] = 288744, + [SMALL_STATE(11144)] = 288779, + [SMALL_STATE(11145)] = 288814, + [SMALL_STATE(11146)] = 288849, + [SMALL_STATE(11147)] = 288884, + [SMALL_STATE(11148)] = 288919, + [SMALL_STATE(11149)] = 288954, + [SMALL_STATE(11150)] = 288989, + [SMALL_STATE(11151)] = 289006, + [SMALL_STATE(11152)] = 289037, + [SMALL_STATE(11153)] = 289070, + [SMALL_STATE(11154)] = 289105, + [SMALL_STATE(11155)] = 289140, + [SMALL_STATE(11156)] = 289169, + [SMALL_STATE(11157)] = 289204, + [SMALL_STATE(11158)] = 289239, + [SMALL_STATE(11159)] = 289274, + [SMALL_STATE(11160)] = 289309, + [SMALL_STATE(11161)] = 289344, + [SMALL_STATE(11162)] = 289377, + [SMALL_STATE(11163)] = 289410, + [SMALL_STATE(11164)] = 289445, + [SMALL_STATE(11165)] = 289474, + [SMALL_STATE(11166)] = 289507, + [SMALL_STATE(11167)] = 289540, + [SMALL_STATE(11168)] = 289573, + [SMALL_STATE(11169)] = 289608, + [SMALL_STATE(11170)] = 289643, + [SMALL_STATE(11171)] = 289678, + [SMALL_STATE(11172)] = 289713, + [SMALL_STATE(11173)] = 289748, + [SMALL_STATE(11174)] = 289783, + [SMALL_STATE(11175)] = 289818, + [SMALL_STATE(11176)] = 289853, + [SMALL_STATE(11177)] = 289888, + [SMALL_STATE(11178)] = 289923, + [SMALL_STATE(11179)] = 289958, + [SMALL_STATE(11180)] = 289993, + [SMALL_STATE(11181)] = 290028, + [SMALL_STATE(11182)] = 290063, + [SMALL_STATE(11183)] = 290084, + [SMALL_STATE(11184)] = 290119, + [SMALL_STATE(11185)] = 290154, + [SMALL_STATE(11186)] = 290189, + [SMALL_STATE(11187)] = 290224, + [SMALL_STATE(11188)] = 290257, + [SMALL_STATE(11189)] = 290292, + [SMALL_STATE(11190)] = 290327, + [SMALL_STATE(11191)] = 290360, + [SMALL_STATE(11192)] = 290385, + [SMALL_STATE(11193)] = 290420, + [SMALL_STATE(11194)] = 290441, + [SMALL_STATE(11195)] = 290476, + [SMALL_STATE(11196)] = 290511, + [SMALL_STATE(11197)] = 290546, + [SMALL_STATE(11198)] = 290579, + [SMALL_STATE(11199)] = 290612, + [SMALL_STATE(11200)] = 290647, + [SMALL_STATE(11201)] = 290676, + [SMALL_STATE(11202)] = 290709, + [SMALL_STATE(11203)] = 290742, + [SMALL_STATE(11204)] = 290777, + [SMALL_STATE(11205)] = 290810, + [SMALL_STATE(11206)] = 290843, + [SMALL_STATE(11207)] = 290878, + [SMALL_STATE(11208)] = 290911, + [SMALL_STATE(11209)] = 290946, + [SMALL_STATE(11210)] = 290981, + [SMALL_STATE(11211)] = 291016, + [SMALL_STATE(11212)] = 291051, + [SMALL_STATE(11213)] = 291086, + [SMALL_STATE(11214)] = 291121, + [SMALL_STATE(11215)] = 291156, + [SMALL_STATE(11216)] = 291191, + [SMALL_STATE(11217)] = 291226, + [SMALL_STATE(11218)] = 291261, + [SMALL_STATE(11219)] = 291296, + [SMALL_STATE(11220)] = 291331, + [SMALL_STATE(11221)] = 291366, + [SMALL_STATE(11222)] = 291401, + [SMALL_STATE(11223)] = 291436, + [SMALL_STATE(11224)] = 291469, + [SMALL_STATE(11225)] = 291504, + [SMALL_STATE(11226)] = 291539, + [SMALL_STATE(11227)] = 291574, + [SMALL_STATE(11228)] = 291607, + [SMALL_STATE(11229)] = 291642, + [SMALL_STATE(11230)] = 291677, + [SMALL_STATE(11231)] = 291697, + [SMALL_STATE(11232)] = 291717, + [SMALL_STATE(11233)] = 291737, + [SMALL_STATE(11234)] = 291757, + [SMALL_STATE(11235)] = 291777, + [SMALL_STATE(11236)] = 291797, + [SMALL_STATE(11237)] = 291817, + [SMALL_STATE(11238)] = 291837, + [SMALL_STATE(11239)] = 291857, + [SMALL_STATE(11240)] = 291877, + [SMALL_STATE(11241)] = 291897, + [SMALL_STATE(11242)] = 291917, + [SMALL_STATE(11243)] = 291937, + [SMALL_STATE(11244)] = 291957, + [SMALL_STATE(11245)] = 291977, + [SMALL_STATE(11246)] = 291997, + [SMALL_STATE(11247)] = 292017, + [SMALL_STATE(11248)] = 292037, + [SMALL_STATE(11249)] = 292057, + [SMALL_STATE(11250)] = 292087, + [SMALL_STATE(11251)] = 292107, + [SMALL_STATE(11252)] = 292133, + [SMALL_STATE(11253)] = 292153, + [SMALL_STATE(11254)] = 292183, + [SMALL_STATE(11255)] = 292203, + [SMALL_STATE(11256)] = 292229, + [SMALL_STATE(11257)] = 292259, + [SMALL_STATE(11258)] = 292287, + [SMALL_STATE(11259)] = 292313, + [SMALL_STATE(11260)] = 292343, + [SMALL_STATE(11261)] = 292363, + [SMALL_STATE(11262)] = 292393, + [SMALL_STATE(11263)] = 292413, + [SMALL_STATE(11264)] = 292439, + [SMALL_STATE(11265)] = 292469, + [SMALL_STATE(11266)] = 292495, + [SMALL_STATE(11267)] = 292521, + [SMALL_STATE(11268)] = 292553, + [SMALL_STATE(11269)] = 292585, + [SMALL_STATE(11270)] = 292611, + [SMALL_STATE(11271)] = 292637, + [SMALL_STATE(11272)] = 292669, + [SMALL_STATE(11273)] = 292701, + [SMALL_STATE(11274)] = 292731, + [SMALL_STATE(11275)] = 292763, + [SMALL_STATE(11276)] = 292793, + [SMALL_STATE(11277)] = 292823, + [SMALL_STATE(11278)] = 292843, + [SMALL_STATE(11279)] = 292869, + [SMALL_STATE(11280)] = 292889, + [SMALL_STATE(11281)] = 292913, + [SMALL_STATE(11282)] = 292943, + [SMALL_STATE(11283)] = 292973, + [SMALL_STATE(11284)] = 292993, + [SMALL_STATE(11285)] = 293025, + [SMALL_STATE(11286)] = 293055, + [SMALL_STATE(11287)] = 293081, + [SMALL_STATE(11288)] = 293101, + [SMALL_STATE(11289)] = 293131, + [SMALL_STATE(11290)] = 293161, + [SMALL_STATE(11291)] = 293193, + [SMALL_STATE(11292)] = 293225, + [SMALL_STATE(11293)] = 293255, + [SMALL_STATE(11294)] = 293275, + [SMALL_STATE(11295)] = 293305, + [SMALL_STATE(11296)] = 293335, + [SMALL_STATE(11297)] = 293365, + [SMALL_STATE(11298)] = 293385, + [SMALL_STATE(11299)] = 293417, + [SMALL_STATE(11300)] = 293437, + [SMALL_STATE(11301)] = 293469, + [SMALL_STATE(11302)] = 293499, + [SMALL_STATE(11303)] = 293519, + [SMALL_STATE(11304)] = 293549, + [SMALL_STATE(11305)] = 293579, + [SMALL_STATE(11306)] = 293599, + [SMALL_STATE(11307)] = 293629, + [SMALL_STATE(11308)] = 293661, + [SMALL_STATE(11309)] = 293693, + [SMALL_STATE(11310)] = 293725, + [SMALL_STATE(11311)] = 293757, + [SMALL_STATE(11312)] = 293787, + [SMALL_STATE(11313)] = 293817, + [SMALL_STATE(11314)] = 293837, + [SMALL_STATE(11315)] = 293869, + [SMALL_STATE(11316)] = 293899, + [SMALL_STATE(11317)] = 293929, + [SMALL_STATE(11318)] = 293949, + [SMALL_STATE(11319)] = 293969, + [SMALL_STATE(11320)] = 293999, + [SMALL_STATE(11321)] = 294029, + [SMALL_STATE(11322)] = 294061, + [SMALL_STATE(11323)] = 294093, + [SMALL_STATE(11324)] = 294113, + [SMALL_STATE(11325)] = 294133, + [SMALL_STATE(11326)] = 294153, + [SMALL_STATE(11327)] = 294179, + [SMALL_STATE(11328)] = 294199, + [SMALL_STATE(11329)] = 294225, + [SMALL_STATE(11330)] = 294251, + [SMALL_STATE(11331)] = 294277, + [SMALL_STATE(11332)] = 294307, + [SMALL_STATE(11333)] = 294333, + [SMALL_STATE(11334)] = 294359, + [SMALL_STATE(11335)] = 294379, + [SMALL_STATE(11336)] = 294409, + [SMALL_STATE(11337)] = 294429, + [SMALL_STATE(11338)] = 294459, + [SMALL_STATE(11339)] = 294485, + [SMALL_STATE(11340)] = 294511, + [SMALL_STATE(11341)] = 294541, + [SMALL_STATE(11342)] = 294567, + [SMALL_STATE(11343)] = 294593, + [SMALL_STATE(11344)] = 294625, + [SMALL_STATE(11345)] = 294645, + [SMALL_STATE(11346)] = 294677, + [SMALL_STATE(11347)] = 294697, + [SMALL_STATE(11348)] = 294721, + [SMALL_STATE(11349)] = 294751, + [SMALL_STATE(11350)] = 294771, + [SMALL_STATE(11351)] = 294801, + [SMALL_STATE(11352)] = 294831, + [SMALL_STATE(11353)] = 294851, + [SMALL_STATE(11354)] = 294871, + [SMALL_STATE(11355)] = 294903, + [SMALL_STATE(11356)] = 294933, + [SMALL_STATE(11357)] = 294965, + [SMALL_STATE(11358)] = 294985, + [SMALL_STATE(11359)] = 295009, + [SMALL_STATE(11360)] = 295029, + [SMALL_STATE(11361)] = 295059, + [SMALL_STATE(11362)] = 295079, + [SMALL_STATE(11363)] = 295109, + [SMALL_STATE(11364)] = 295141, + [SMALL_STATE(11365)] = 295171, + [SMALL_STATE(11366)] = 295191, + [SMALL_STATE(11367)] = 295223, + [SMALL_STATE(11368)] = 295253, + [SMALL_STATE(11369)] = 295273, + [SMALL_STATE(11370)] = 295303, + [SMALL_STATE(11371)] = 295335, + [SMALL_STATE(11372)] = 295367, + [SMALL_STATE(11373)] = 295399, + [SMALL_STATE(11374)] = 295429, + [SMALL_STATE(11375)] = 295449, + [SMALL_STATE(11376)] = 295479, + [SMALL_STATE(11377)] = 295511, + [SMALL_STATE(11378)] = 295539, + [SMALL_STATE(11379)] = 295569, + [SMALL_STATE(11380)] = 295599, + [SMALL_STATE(11381)] = 295619, + [SMALL_STATE(11382)] = 295651, + [SMALL_STATE(11383)] = 295683, + [SMALL_STATE(11384)] = 295713, + [SMALL_STATE(11385)] = 295743, + [SMALL_STATE(11386)] = 295773, + [SMALL_STATE(11387)] = 295803, + [SMALL_STATE(11388)] = 295833, + [SMALL_STATE(11389)] = 295851, + [SMALL_STATE(11390)] = 295871, + [SMALL_STATE(11391)] = 295891, + [SMALL_STATE(11392)] = 295923, + [SMALL_STATE(11393)] = 295953, + [SMALL_STATE(11394)] = 295975, + [SMALL_STATE(11395)] = 296007, + [SMALL_STATE(11396)] = 296031, + [SMALL_STATE(11397)] = 296061, + [SMALL_STATE(11398)] = 296081, + [SMALL_STATE(11399)] = 296101, + [SMALL_STATE(11400)] = 296131, + [SMALL_STATE(11401)] = 296151, + [SMALL_STATE(11402)] = 296171, + [SMALL_STATE(11403)] = 296191, + [SMALL_STATE(11404)] = 296221, + [SMALL_STATE(11405)] = 296253, + [SMALL_STATE(11406)] = 296283, + [SMALL_STATE(11407)] = 296303, + [SMALL_STATE(11408)] = 296335, + [SMALL_STATE(11409)] = 296367, + [SMALL_STATE(11410)] = 296399, + [SMALL_STATE(11411)] = 296429, + [SMALL_STATE(11412)] = 296459, + [SMALL_STATE(11413)] = 296489, + [SMALL_STATE(11414)] = 296509, + [SMALL_STATE(11415)] = 296541, + [SMALL_STATE(11416)] = 296561, + [SMALL_STATE(11417)] = 296593, + [SMALL_STATE(11418)] = 296613, + [SMALL_STATE(11419)] = 296633, + [SMALL_STATE(11420)] = 296663, + [SMALL_STATE(11421)] = 296685, + [SMALL_STATE(11422)] = 296715, + [SMALL_STATE(11423)] = 296735, + [SMALL_STATE(11424)] = 296765, + [SMALL_STATE(11425)] = 296797, + [SMALL_STATE(11426)] = 296829, + [SMALL_STATE(11427)] = 296859, + [SMALL_STATE(11428)] = 296889, + [SMALL_STATE(11429)] = 296919, + [SMALL_STATE(11430)] = 296939, + [SMALL_STATE(11431)] = 296959, + [SMALL_STATE(11432)] = 296989, + [SMALL_STATE(11433)] = 297021, + [SMALL_STATE(11434)] = 297051, + [SMALL_STATE(11435)] = 297083, + [SMALL_STATE(11436)] = 297103, + [SMALL_STATE(11437)] = 297133, + [SMALL_STATE(11438)] = 297153, + [SMALL_STATE(11439)] = 297177, + [SMALL_STATE(11440)] = 297207, + [SMALL_STATE(11441)] = 297237, + [SMALL_STATE(11442)] = 297257, + [SMALL_STATE(11443)] = 297287, + [SMALL_STATE(11444)] = 297319, + [SMALL_STATE(11445)] = 297351, + [SMALL_STATE(11446)] = 297381, + [SMALL_STATE(11447)] = 297401, + [SMALL_STATE(11448)] = 297431, + [SMALL_STATE(11449)] = 297461, + [SMALL_STATE(11450)] = 297491, + [SMALL_STATE(11451)] = 297521, + [SMALL_STATE(11452)] = 297541, + [SMALL_STATE(11453)] = 297571, + [SMALL_STATE(11454)] = 297591, + [SMALL_STATE(11455)] = 297617, + [SMALL_STATE(11456)] = 297647, + [SMALL_STATE(11457)] = 297667, + [SMALL_STATE(11458)] = 297697, + [SMALL_STATE(11459)] = 297717, + [SMALL_STATE(11460)] = 297747, + [SMALL_STATE(11461)] = 297779, + [SMALL_STATE(11462)] = 297811, + [SMALL_STATE(11463)] = 297831, + [SMALL_STATE(11464)] = 297861, + [SMALL_STATE(11465)] = 297881, + [SMALL_STATE(11466)] = 297913, + [SMALL_STATE(11467)] = 297943, + [SMALL_STATE(11468)] = 297975, + [SMALL_STATE(11469)] = 298007, + [SMALL_STATE(11470)] = 298039, + [SMALL_STATE(11471)] = 298061, + [SMALL_STATE(11472)] = 298081, + [SMALL_STATE(11473)] = 298111, + [SMALL_STATE(11474)] = 298141, + [SMALL_STATE(11475)] = 298161, + [SMALL_STATE(11476)] = 298181, + [SMALL_STATE(11477)] = 298211, + [SMALL_STATE(11478)] = 298231, + [SMALL_STATE(11479)] = 298261, + [SMALL_STATE(11480)] = 298293, + [SMALL_STATE(11481)] = 298323, + [SMALL_STATE(11482)] = 298353, + [SMALL_STATE(11483)] = 298373, + [SMALL_STATE(11484)] = 298405, + [SMALL_STATE(11485)] = 298435, + [SMALL_STATE(11486)] = 298455, + [SMALL_STATE(11487)] = 298485, + [SMALL_STATE(11488)] = 298505, + [SMALL_STATE(11489)] = 298537, + [SMALL_STATE(11490)] = 298569, + [SMALL_STATE(11491)] = 298599, + [SMALL_STATE(11492)] = 298619, + [SMALL_STATE(11493)] = 298651, + [SMALL_STATE(11494)] = 298671, + [SMALL_STATE(11495)] = 298691, + [SMALL_STATE(11496)] = 298711, + [SMALL_STATE(11497)] = 298741, + [SMALL_STATE(11498)] = 298761, + [SMALL_STATE(11499)] = 298793, + [SMALL_STATE(11500)] = 298825, + [SMALL_STATE(11501)] = 298845, + [SMALL_STATE(11502)] = 298875, + [SMALL_STATE(11503)] = 298895, + [SMALL_STATE(11504)] = 298925, + [SMALL_STATE(11505)] = 298955, + [SMALL_STATE(11506)] = 298975, + [SMALL_STATE(11507)] = 298995, + [SMALL_STATE(11508)] = 299025, + [SMALL_STATE(11509)] = 299055, + [SMALL_STATE(11510)] = 299079, + [SMALL_STATE(11511)] = 299109, + [SMALL_STATE(11512)] = 299141, + [SMALL_STATE(11513)] = 299173, + [SMALL_STATE(11514)] = 299205, + [SMALL_STATE(11515)] = 299225, + [SMALL_STATE(11516)] = 299245, + [SMALL_STATE(11517)] = 299265, + [SMALL_STATE(11518)] = 299295, + [SMALL_STATE(11519)] = 299315, + [SMALL_STATE(11520)] = 299347, + [SMALL_STATE(11521)] = 299379, + [SMALL_STATE(11522)] = 299411, + [SMALL_STATE(11523)] = 299441, + [SMALL_STATE(11524)] = 299461, + [SMALL_STATE(11525)] = 299481, + [SMALL_STATE(11526)] = 299511, + [SMALL_STATE(11527)] = 299541, + [SMALL_STATE(11528)] = 299559, + [SMALL_STATE(11529)] = 299589, + [SMALL_STATE(11530)] = 299609, + [SMALL_STATE(11531)] = 299635, + [SMALL_STATE(11532)] = 299661, + [SMALL_STATE(11533)] = 299687, + [SMALL_STATE(11534)] = 299711, + [SMALL_STATE(11535)] = 299731, + [SMALL_STATE(11536)] = 299761, + [SMALL_STATE(11537)] = 299781, + [SMALL_STATE(11538)] = 299811, + [SMALL_STATE(11539)] = 299831, + [SMALL_STATE(11540)] = 299857, + [SMALL_STATE(11541)] = 299887, + [SMALL_STATE(11542)] = 299913, + [SMALL_STATE(11543)] = 299943, + [SMALL_STATE(11544)] = 299963, + [SMALL_STATE(11545)] = 299983, + [SMALL_STATE(11546)] = 300003, + [SMALL_STATE(11547)] = 300033, + [SMALL_STATE(11548)] = 300053, + [SMALL_STATE(11549)] = 300081, + [SMALL_STATE(11550)] = 300101, + [SMALL_STATE(11551)] = 300131, + [SMALL_STATE(11552)] = 300159, + [SMALL_STATE(11553)] = 300189, + [SMALL_STATE(11554)] = 300221, + [SMALL_STATE(11555)] = 300241, + [SMALL_STATE(11556)] = 300267, + [SMALL_STATE(11557)] = 300297, + [SMALL_STATE(11558)] = 300317, + [SMALL_STATE(11559)] = 300337, + [SMALL_STATE(11560)] = 300357, + [SMALL_STATE(11561)] = 300377, + [SMALL_STATE(11562)] = 300407, + [SMALL_STATE(11563)] = 300437, + [SMALL_STATE(11564)] = 300467, + [SMALL_STATE(11565)] = 300487, + [SMALL_STATE(11566)] = 300519, + [SMALL_STATE(11567)] = 300549, + [SMALL_STATE(11568)] = 300569, + [SMALL_STATE(11569)] = 300589, + [SMALL_STATE(11570)] = 300609, + [SMALL_STATE(11571)] = 300639, + [SMALL_STATE(11572)] = 300669, + [SMALL_STATE(11573)] = 300701, + [SMALL_STATE(11574)] = 300721, + [SMALL_STATE(11575)] = 300745, + [SMALL_STATE(11576)] = 300775, + [SMALL_STATE(11577)] = 300795, + [SMALL_STATE(11578)] = 300825, + [SMALL_STATE(11579)] = 300852, + [SMALL_STATE(11580)] = 300879, + [SMALL_STATE(11581)] = 300910, + [SMALL_STATE(11582)] = 300941, + [SMALL_STATE(11583)] = 300960, + [SMALL_STATE(11584)] = 300987, + [SMALL_STATE(11585)] = 301014, + [SMALL_STATE(11586)] = 301039, + [SMALL_STATE(11587)] = 301066, + [SMALL_STATE(11588)] = 301085, + [SMALL_STATE(11589)] = 301108, + [SMALL_STATE(11590)] = 301135, + [SMALL_STATE(11591)] = 301160, + [SMALL_STATE(11592)] = 301175, + [SMALL_STATE(11593)] = 301200, + [SMALL_STATE(11594)] = 301227, + [SMALL_STATE(11595)] = 301252, + [SMALL_STATE(11596)] = 301271, + [SMALL_STATE(11597)] = 301290, + [SMALL_STATE(11598)] = 301317, + [SMALL_STATE(11599)] = 301332, + [SMALL_STATE(11600)] = 301357, + [SMALL_STATE(11601)] = 301384, + [SMALL_STATE(11602)] = 301411, + [SMALL_STATE(11603)] = 301426, + [SMALL_STATE(11604)] = 301449, + [SMALL_STATE(11605)] = 301476, + [SMALL_STATE(11606)] = 301507, + [SMALL_STATE(11607)] = 301532, + [SMALL_STATE(11608)] = 301559, + [SMALL_STATE(11609)] = 301578, + [SMALL_STATE(11610)] = 301603, + [SMALL_STATE(11611)] = 301626, + [SMALL_STATE(11612)] = 301653, + [SMALL_STATE(11613)] = 301680, + [SMALL_STATE(11614)] = 301699, + [SMALL_STATE(11615)] = 301718, + [SMALL_STATE(11616)] = 301745, + [SMALL_STATE(11617)] = 301764, + [SMALL_STATE(11618)] = 301783, + [SMALL_STATE(11619)] = 301810, + [SMALL_STATE(11620)] = 301829, + [SMALL_STATE(11621)] = 301848, + [SMALL_STATE(11622)] = 301875, + [SMALL_STATE(11623)] = 301902, + [SMALL_STATE(11624)] = 301921, + [SMALL_STATE(11625)] = 301944, + [SMALL_STATE(11626)] = 301971, + [SMALL_STATE(11627)] = 301990, + [SMALL_STATE(11628)] = 302009, + [SMALL_STATE(11629)] = 302036, + [SMALL_STATE(11630)] = 302067, + [SMALL_STATE(11631)] = 302094, + [SMALL_STATE(11632)] = 302121, + [SMALL_STATE(11633)] = 302148, + [SMALL_STATE(11634)] = 302163, + [SMALL_STATE(11635)] = 302190, + [SMALL_STATE(11636)] = 302217, + [SMALL_STATE(11637)] = 302236, + [SMALL_STATE(11638)] = 302261, + [SMALL_STATE(11639)] = 302292, + [SMALL_STATE(11640)] = 302317, + [SMALL_STATE(11641)] = 302344, + [SMALL_STATE(11642)] = 302365, + [SMALL_STATE(11643)] = 302388, + [SMALL_STATE(11644)] = 302419, + [SMALL_STATE(11645)] = 302446, + [SMALL_STATE(11646)] = 302465, + [SMALL_STATE(11647)] = 302484, + [SMALL_STATE(11648)] = 302507, + [SMALL_STATE(11649)] = 302522, + [SMALL_STATE(11650)] = 302547, + [SMALL_STATE(11651)] = 302574, + [SMALL_STATE(11652)] = 302601, + [SMALL_STATE(11653)] = 302632, + [SMALL_STATE(11654)] = 302656, + [SMALL_STATE(11655)] = 302680, + [SMALL_STATE(11656)] = 302704, + [SMALL_STATE(11657)] = 302728, + [SMALL_STATE(11658)] = 302752, + [SMALL_STATE(11659)] = 302776, + [SMALL_STATE(11660)] = 302800, + [SMALL_STATE(11661)] = 302824, + [SMALL_STATE(11662)] = 302852, + [SMALL_STATE(11663)] = 302870, + [SMALL_STATE(11664)] = 302892, + [SMALL_STATE(11665)] = 302916, + [SMALL_STATE(11666)] = 302940, + [SMALL_STATE(11667)] = 302964, + [SMALL_STATE(11668)] = 302986, + [SMALL_STATE(11669)] = 303004, + [SMALL_STATE(11670)] = 303022, + [SMALL_STATE(11671)] = 303046, + [SMALL_STATE(11672)] = 303060, + [SMALL_STATE(11673)] = 303084, + [SMALL_STATE(11674)] = 303108, + [SMALL_STATE(11675)] = 303132, + [SMALL_STATE(11676)] = 303156, + [SMALL_STATE(11677)] = 303180, + [SMALL_STATE(11678)] = 303204, + [SMALL_STATE(11679)] = 303228, + [SMALL_STATE(11680)] = 303246, + [SMALL_STATE(11681)] = 303270, + [SMALL_STATE(11682)] = 303294, + [SMALL_STATE(11683)] = 303318, + [SMALL_STATE(11684)] = 303342, + [SMALL_STATE(11685)] = 303366, + [SMALL_STATE(11686)] = 303390, + [SMALL_STATE(11687)] = 303412, + [SMALL_STATE(11688)] = 303434, + [SMALL_STATE(11689)] = 303454, + [SMALL_STATE(11690)] = 303476, + [SMALL_STATE(11691)] = 303496, + [SMALL_STATE(11692)] = 303510, + [SMALL_STATE(11693)] = 303530, + [SMALL_STATE(11694)] = 303548, + [SMALL_STATE(11695)] = 303572, + [SMALL_STATE(11696)] = 303592, + [SMALL_STATE(11697)] = 303614, + [SMALL_STATE(11698)] = 303638, + [SMALL_STATE(11699)] = 303660, + [SMALL_STATE(11700)] = 303684, + [SMALL_STATE(11701)] = 303704, + [SMALL_STATE(11702)] = 303726, + [SMALL_STATE(11703)] = 303748, + [SMALL_STATE(11704)] = 303766, + [SMALL_STATE(11705)] = 303784, + [SMALL_STATE(11706)] = 303802, + [SMALL_STATE(11707)] = 303820, + [SMALL_STATE(11708)] = 303838, + [SMALL_STATE(11709)] = 303852, + [SMALL_STATE(11710)] = 303874, + [SMALL_STATE(11711)] = 303898, + [SMALL_STATE(11712)] = 303922, + [SMALL_STATE(11713)] = 303936, + [SMALL_STATE(11714)] = 303960, + [SMALL_STATE(11715)] = 303984, + [SMALL_STATE(11716)] = 304006, + [SMALL_STATE(11717)] = 304024, + [SMALL_STATE(11718)] = 304042, + [SMALL_STATE(11719)] = 304064, + [SMALL_STATE(11720)] = 304088, + [SMALL_STATE(11721)] = 304110, + [SMALL_STATE(11722)] = 304134, + [SMALL_STATE(11723)] = 304156, + [SMALL_STATE(11724)] = 304180, + [SMALL_STATE(11725)] = 304204, + [SMALL_STATE(11726)] = 304228, + [SMALL_STATE(11727)] = 304252, + [SMALL_STATE(11728)] = 304274, + [SMALL_STATE(11729)] = 304298, + [SMALL_STATE(11730)] = 304312, + [SMALL_STATE(11731)] = 304334, + [SMALL_STATE(11732)] = 304352, + [SMALL_STATE(11733)] = 304374, + [SMALL_STATE(11734)] = 304396, + [SMALL_STATE(11735)] = 304417, + [SMALL_STATE(11736)] = 304438, + [SMALL_STATE(11737)] = 304459, + [SMALL_STATE(11738)] = 304474, + [SMALL_STATE(11739)] = 304497, + [SMALL_STATE(11740)] = 304520, + [SMALL_STATE(11741)] = 304541, + [SMALL_STATE(11742)] = 304558, + [SMALL_STATE(11743)] = 304579, + [SMALL_STATE(11744)] = 304594, + [SMALL_STATE(11745)] = 304617, + [SMALL_STATE(11746)] = 304640, + [SMALL_STATE(11747)] = 304663, + [SMALL_STATE(11748)] = 304686, + [SMALL_STATE(11749)] = 304703, + [SMALL_STATE(11750)] = 304726, + [SMALL_STATE(11751)] = 304741, + [SMALL_STATE(11752)] = 304756, + [SMALL_STATE(11753)] = 304771, + [SMALL_STATE(11754)] = 304794, + [SMALL_STATE(11755)] = 304813, + [SMALL_STATE(11756)] = 304830, + [SMALL_STATE(11757)] = 304847, + [SMALL_STATE(11758)] = 304864, + [SMALL_STATE(11759)] = 304885, + [SMALL_STATE(11760)] = 304906, + [SMALL_STATE(11761)] = 304929, + [SMALL_STATE(11762)] = 304944, + [SMALL_STATE(11763)] = 304967, + [SMALL_STATE(11764)] = 304988, + [SMALL_STATE(11765)] = 305009, + [SMALL_STATE(11766)] = 305026, + [SMALL_STATE(11767)] = 305041, + [SMALL_STATE(11768)] = 305066, + [SMALL_STATE(11769)] = 305081, + [SMALL_STATE(11770)] = 305104, + [SMALL_STATE(11771)] = 305121, + [SMALL_STATE(11772)] = 305136, + [SMALL_STATE(11773)] = 305159, + [SMALL_STATE(11774)] = 305180, + [SMALL_STATE(11775)] = 305197, + [SMALL_STATE(11776)] = 305212, + [SMALL_STATE(11777)] = 305229, + [SMALL_STATE(11778)] = 305246, + [SMALL_STATE(11779)] = 305261, + [SMALL_STATE(11780)] = 305284, + [SMALL_STATE(11781)] = 305305, + [SMALL_STATE(11782)] = 305322, + [SMALL_STATE(11783)] = 305343, + [SMALL_STATE(11784)] = 305360, + [SMALL_STATE(11785)] = 305381, + [SMALL_STATE(11786)] = 305402, + [SMALL_STATE(11787)] = 305419, + [SMALL_STATE(11788)] = 305436, + [SMALL_STATE(11789)] = 305459, + [SMALL_STATE(11790)] = 305482, + [SMALL_STATE(11791)] = 305503, + [SMALL_STATE(11792)] = 305518, + [SMALL_STATE(11793)] = 305539, + [SMALL_STATE(11794)] = 305562, + [SMALL_STATE(11795)] = 305583, + [SMALL_STATE(11796)] = 305602, + [SMALL_STATE(11797)] = 305617, + [SMALL_STATE(11798)] = 305640, + [SMALL_STATE(11799)] = 305663, + [SMALL_STATE(11800)] = 305688, + [SMALL_STATE(11801)] = 305703, + [SMALL_STATE(11802)] = 305724, + [SMALL_STATE(11803)] = 305747, + [SMALL_STATE(11804)] = 305762, + [SMALL_STATE(11805)] = 305785, + [SMALL_STATE(11806)] = 305808, + [SMALL_STATE(11807)] = 305825, + [SMALL_STATE(11808)] = 305840, + [SMALL_STATE(11809)] = 305861, + [SMALL_STATE(11810)] = 305882, + [SMALL_STATE(11811)] = 305899, + [SMALL_STATE(11812)] = 305916, + [SMALL_STATE(11813)] = 305931, + [SMALL_STATE(11814)] = 305954, + [SMALL_STATE(11815)] = 305977, + [SMALL_STATE(11816)] = 305998, + [SMALL_STATE(11817)] = 306015, + [SMALL_STATE(11818)] = 306036, + [SMALL_STATE(11819)] = 306053, + [SMALL_STATE(11820)] = 306074, + [SMALL_STATE(11821)] = 306095, + [SMALL_STATE(11822)] = 306116, + [SMALL_STATE(11823)] = 306137, + [SMALL_STATE(11824)] = 306160, + [SMALL_STATE(11825)] = 306183, + [SMALL_STATE(11826)] = 306204, + [SMALL_STATE(11827)] = 306227, + [SMALL_STATE(11828)] = 306242, + [SMALL_STATE(11829)] = 306265, + [SMALL_STATE(11830)] = 306282, + [SMALL_STATE(11831)] = 306297, + [SMALL_STATE(11832)] = 306314, + [SMALL_STATE(11833)] = 306329, + [SMALL_STATE(11834)] = 306348, + [SMALL_STATE(11835)] = 306371, + [SMALL_STATE(11836)] = 306394, + [SMALL_STATE(11837)] = 306415, + [SMALL_STATE(11838)] = 306438, + [SMALL_STATE(11839)] = 306455, + [SMALL_STATE(11840)] = 306480, + [SMALL_STATE(11841)] = 306503, + [SMALL_STATE(11842)] = 306528, + [SMALL_STATE(11843)] = 306545, + [SMALL_STATE(11844)] = 306560, + [SMALL_STATE(11845)] = 306575, + [SMALL_STATE(11846)] = 306590, + [SMALL_STATE(11847)] = 306613, + [SMALL_STATE(11848)] = 306636, + [SMALL_STATE(11849)] = 306659, + [SMALL_STATE(11850)] = 306674, + [SMALL_STATE(11851)] = 306689, + [SMALL_STATE(11852)] = 306710, + [SMALL_STATE(11853)] = 306725, + [SMALL_STATE(11854)] = 306748, + [SMALL_STATE(11855)] = 306765, + [SMALL_STATE(11856)] = 306780, + [SMALL_STATE(11857)] = 306803, + [SMALL_STATE(11858)] = 306826, + [SMALL_STATE(11859)] = 306851, + [SMALL_STATE(11860)] = 306872, + [SMALL_STATE(11861)] = 306893, + [SMALL_STATE(11862)] = 306916, + [SMALL_STATE(11863)] = 306935, + [SMALL_STATE(11864)] = 306956, + [SMALL_STATE(11865)] = 306973, + [SMALL_STATE(11866)] = 306990, + [SMALL_STATE(11867)] = 307013, + [SMALL_STATE(11868)] = 307030, + [SMALL_STATE(11869)] = 307051, + [SMALL_STATE(11870)] = 307076, + [SMALL_STATE(11871)] = 307091, + [SMALL_STATE(11872)] = 307108, + [SMALL_STATE(11873)] = 307131, + [SMALL_STATE(11874)] = 307146, + [SMALL_STATE(11875)] = 307161, + [SMALL_STATE(11876)] = 307176, + [SMALL_STATE(11877)] = 307191, + [SMALL_STATE(11878)] = 307214, + [SMALL_STATE(11879)] = 307229, + [SMALL_STATE(11880)] = 307252, + [SMALL_STATE(11881)] = 307275, + [SMALL_STATE(11882)] = 307298, + [SMALL_STATE(11883)] = 307313, + [SMALL_STATE(11884)] = 307338, + [SMALL_STATE(11885)] = 307359, + [SMALL_STATE(11886)] = 307374, + [SMALL_STATE(11887)] = 307397, + [SMALL_STATE(11888)] = 307414, + [SMALL_STATE(11889)] = 307435, + [SMALL_STATE(11890)] = 307448, + [SMALL_STATE(11891)] = 307463, + [SMALL_STATE(11892)] = 307480, + [SMALL_STATE(11893)] = 307495, + [SMALL_STATE(11894)] = 307518, + [SMALL_STATE(11895)] = 307535, + [SMALL_STATE(11896)] = 307550, + [SMALL_STATE(11897)] = 307565, + [SMALL_STATE(11898)] = 307586, + [SMALL_STATE(11899)] = 307601, + [SMALL_STATE(11900)] = 307616, + [SMALL_STATE(11901)] = 307639, + [SMALL_STATE(11902)] = 307656, + [SMALL_STATE(11903)] = 307679, + [SMALL_STATE(11904)] = 307694, + [SMALL_STATE(11905)] = 307715, + [SMALL_STATE(11906)] = 307730, + [SMALL_STATE(11907)] = 307745, + [SMALL_STATE(11908)] = 307760, + [SMALL_STATE(11909)] = 307781, + [SMALL_STATE(11910)] = 307796, + [SMALL_STATE(11911)] = 307819, + [SMALL_STATE(11912)] = 307836, + [SMALL_STATE(11913)] = 307859, + [SMALL_STATE(11914)] = 307876, + [SMALL_STATE(11915)] = 307899, + [SMALL_STATE(11916)] = 307920, + [SMALL_STATE(11917)] = 307943, + [SMALL_STATE(11918)] = 307958, + [SMALL_STATE(11919)] = 307973, + [SMALL_STATE(11920)] = 307992, + [SMALL_STATE(11921)] = 308009, + [SMALL_STATE(11922)] = 308028, + [SMALL_STATE(11923)] = 308049, + [SMALL_STATE(11924)] = 308064, + [SMALL_STATE(11925)] = 308085, + [SMALL_STATE(11926)] = 308100, + [SMALL_STATE(11927)] = 308123, + [SMALL_STATE(11928)] = 308138, + [SMALL_STATE(11929)] = 308163, + [SMALL_STATE(11930)] = 308186, + [SMALL_STATE(11931)] = 308201, + [SMALL_STATE(11932)] = 308218, + [SMALL_STATE(11933)] = 308233, + [SMALL_STATE(11934)] = 308254, + [SMALL_STATE(11935)] = 308271, + [SMALL_STATE(11936)] = 308286, + [SMALL_STATE(11937)] = 308303, + [SMALL_STATE(11938)] = 308326, + [SMALL_STATE(11939)] = 308349, + [SMALL_STATE(11940)] = 308366, + [SMALL_STATE(11941)] = 308389, + [SMALL_STATE(11942)] = 308404, + [SMALL_STATE(11943)] = 308425, + [SMALL_STATE(11944)] = 308440, + [SMALL_STATE(11945)] = 308461, + [SMALL_STATE(11946)] = 308478, + [SMALL_STATE(11947)] = 308499, + [SMALL_STATE(11948)] = 308514, + [SMALL_STATE(11949)] = 308537, + [SMALL_STATE(11950)] = 308552, + [SMALL_STATE(11951)] = 308567, + [SMALL_STATE(11952)] = 308588, + [SMALL_STATE(11953)] = 308611, + [SMALL_STATE(11954)] = 308630, + [SMALL_STATE(11955)] = 308653, + [SMALL_STATE(11956)] = 308668, + [SMALL_STATE(11957)] = 308691, + [SMALL_STATE(11958)] = 308706, + [SMALL_STATE(11959)] = 308723, + [SMALL_STATE(11960)] = 308746, + [SMALL_STATE(11961)] = 308763, + [SMALL_STATE(11962)] = 308780, + [SMALL_STATE(11963)] = 308795, + [SMALL_STATE(11964)] = 308818, + [SMALL_STATE(11965)] = 308841, + [SMALL_STATE(11966)] = 308864, + [SMALL_STATE(11967)] = 308887, + [SMALL_STATE(11968)] = 308904, + [SMALL_STATE(11969)] = 308919, + [SMALL_STATE(11970)] = 308942, + [SMALL_STATE(11971)] = 308957, + [SMALL_STATE(11972)] = 308974, + [SMALL_STATE(11973)] = 308997, + [SMALL_STATE(11974)] = 309018, + [SMALL_STATE(11975)] = 309041, + [SMALL_STATE(11976)] = 309064, + [SMALL_STATE(11977)] = 309087, + [SMALL_STATE(11978)] = 309104, + [SMALL_STATE(11979)] = 309127, + [SMALL_STATE(11980)] = 309142, + [SMALL_STATE(11981)] = 309163, + [SMALL_STATE(11982)] = 309178, + [SMALL_STATE(11983)] = 309201, + [SMALL_STATE(11984)] = 309218, + [SMALL_STATE(11985)] = 309241, + [SMALL_STATE(11986)] = 309256, + [SMALL_STATE(11987)] = 309279, + [SMALL_STATE(11988)] = 309302, + [SMALL_STATE(11989)] = 309317, + [SMALL_STATE(11990)] = 309340, + [SMALL_STATE(11991)] = 309361, + [SMALL_STATE(11992)] = 309382, + [SMALL_STATE(11993)] = 309397, + [SMALL_STATE(11994)] = 309420, + [SMALL_STATE(11995)] = 309443, + [SMALL_STATE(11996)] = 309466, + [SMALL_STATE(11997)] = 309481, + [SMALL_STATE(11998)] = 309496, + [SMALL_STATE(11999)] = 309519, + [SMALL_STATE(12000)] = 309534, + [SMALL_STATE(12001)] = 309555, + [SMALL_STATE(12002)] = 309576, + [SMALL_STATE(12003)] = 309599, + [SMALL_STATE(12004)] = 309618, + [SMALL_STATE(12005)] = 309639, + [SMALL_STATE(12006)] = 309654, + [SMALL_STATE(12007)] = 309677, + [SMALL_STATE(12008)] = 309700, + [SMALL_STATE(12009)] = 309725, + [SMALL_STATE(12010)] = 309740, + [SMALL_STATE(12011)] = 309763, + [SMALL_STATE(12012)] = 309786, + [SMALL_STATE(12013)] = 309809, + [SMALL_STATE(12014)] = 309832, + [SMALL_STATE(12015)] = 309855, + [SMALL_STATE(12016)] = 309872, + [SMALL_STATE(12017)] = 309895, + [SMALL_STATE(12018)] = 309918, + [SMALL_STATE(12019)] = 309935, + [SMALL_STATE(12020)] = 309958, + [SMALL_STATE(12021)] = 309973, + [SMALL_STATE(12022)] = 309996, + [SMALL_STATE(12023)] = 310017, + [SMALL_STATE(12024)] = 310032, + [SMALL_STATE(12025)] = 310055, + [SMALL_STATE(12026)] = 310070, + [SMALL_STATE(12027)] = 310087, + [SMALL_STATE(12028)] = 310110, + [SMALL_STATE(12029)] = 310125, + [SMALL_STATE(12030)] = 310146, + [SMALL_STATE(12031)] = 310161, + [SMALL_STATE(12032)] = 310184, + [SMALL_STATE(12033)] = 310199, + [SMALL_STATE(12034)] = 310216, + [SMALL_STATE(12035)] = 310237, + [SMALL_STATE(12036)] = 310258, + [SMALL_STATE(12037)] = 310275, + [SMALL_STATE(12038)] = 310298, + [SMALL_STATE(12039)] = 310315, + [SMALL_STATE(12040)] = 310332, + [SMALL_STATE(12041)] = 310347, + [SMALL_STATE(12042)] = 310362, + [SMALL_STATE(12043)] = 310387, + [SMALL_STATE(12044)] = 310400, + [SMALL_STATE(12045)] = 310415, + [SMALL_STATE(12046)] = 310430, + [SMALL_STATE(12047)] = 310445, + [SMALL_STATE(12048)] = 310466, + [SMALL_STATE(12049)] = 310486, + [SMALL_STATE(12050)] = 310502, + [SMALL_STATE(12051)] = 310518, + [SMALL_STATE(12052)] = 310534, + [SMALL_STATE(12053)] = 310550, + [SMALL_STATE(12054)] = 310562, + [SMALL_STATE(12055)] = 310578, + [SMALL_STATE(12056)] = 310594, + [SMALL_STATE(12057)] = 310606, + [SMALL_STATE(12058)] = 310618, + [SMALL_STATE(12059)] = 310634, + [SMALL_STATE(12060)] = 310650, + [SMALL_STATE(12061)] = 310668, + [SMALL_STATE(12062)] = 310684, + [SMALL_STATE(12063)] = 310700, + [SMALL_STATE(12064)] = 310716, + [SMALL_STATE(12065)] = 310728, + [SMALL_STATE(12066)] = 310748, + [SMALL_STATE(12067)] = 310764, + [SMALL_STATE(12068)] = 310780, + [SMALL_STATE(12069)] = 310798, + [SMALL_STATE(12070)] = 310814, + [SMALL_STATE(12071)] = 310830, + [SMALL_STATE(12072)] = 310846, + [SMALL_STATE(12073)] = 310862, + [SMALL_STATE(12074)] = 310876, + [SMALL_STATE(12075)] = 310892, + [SMALL_STATE(12076)] = 310904, + [SMALL_STATE(12077)] = 310922, + [SMALL_STATE(12078)] = 310938, + [SMALL_STATE(12079)] = 310950, + [SMALL_STATE(12080)] = 310966, + [SMALL_STATE(12081)] = 310978, + [SMALL_STATE(12082)] = 310998, + [SMALL_STATE(12083)] = 311014, + [SMALL_STATE(12084)] = 311026, + [SMALL_STATE(12085)] = 311042, + [SMALL_STATE(12086)] = 311058, + [SMALL_STATE(12087)] = 311074, + [SMALL_STATE(12088)] = 311086, + [SMALL_STATE(12089)] = 311102, + [SMALL_STATE(12090)] = 311120, + [SMALL_STATE(12091)] = 311140, + [SMALL_STATE(12092)] = 311156, + [SMALL_STATE(12093)] = 311168, + [SMALL_STATE(12094)] = 311188, + [SMALL_STATE(12095)] = 311208, + [SMALL_STATE(12096)] = 311226, + [SMALL_STATE(12097)] = 311242, + [SMALL_STATE(12098)] = 311258, + [SMALL_STATE(12099)] = 311276, + [SMALL_STATE(12100)] = 311292, + [SMALL_STATE(12101)] = 311312, + [SMALL_STATE(12102)] = 311332, + [SMALL_STATE(12103)] = 311352, + [SMALL_STATE(12104)] = 311368, + [SMALL_STATE(12105)] = 311384, + [SMALL_STATE(12106)] = 311402, + [SMALL_STATE(12107)] = 311422, + [SMALL_STATE(12108)] = 311438, + [SMALL_STATE(12109)] = 311460, + [SMALL_STATE(12110)] = 311482, + [SMALL_STATE(12111)] = 311498, + [SMALL_STATE(12112)] = 311514, + [SMALL_STATE(12113)] = 311532, + [SMALL_STATE(12114)] = 311548, + [SMALL_STATE(12115)] = 311564, + [SMALL_STATE(12116)] = 311580, + [SMALL_STATE(12117)] = 311596, + [SMALL_STATE(12118)] = 311612, + [SMALL_STATE(12119)] = 311628, + [SMALL_STATE(12120)] = 311644, + [SMALL_STATE(12121)] = 311660, + [SMALL_STATE(12122)] = 311676, + [SMALL_STATE(12123)] = 311692, + [SMALL_STATE(12124)] = 311708, + [SMALL_STATE(12125)] = 311724, + [SMALL_STATE(12126)] = 311740, + [SMALL_STATE(12127)] = 311756, + [SMALL_STATE(12128)] = 311776, + [SMALL_STATE(12129)] = 311792, + [SMALL_STATE(12130)] = 311808, + [SMALL_STATE(12131)] = 311820, + [SMALL_STATE(12132)] = 311840, + [SMALL_STATE(12133)] = 311856, + [SMALL_STATE(12134)] = 311872, + [SMALL_STATE(12135)] = 311888, + [SMALL_STATE(12136)] = 311904, + [SMALL_STATE(12137)] = 311916, + [SMALL_STATE(12138)] = 311932, + [SMALL_STATE(12139)] = 311948, + [SMALL_STATE(12140)] = 311964, + [SMALL_STATE(12141)] = 311980, + [SMALL_STATE(12142)] = 312000, + [SMALL_STATE(12143)] = 312016, + [SMALL_STATE(12144)] = 312034, + [SMALL_STATE(12145)] = 312050, + [SMALL_STATE(12146)] = 312066, + [SMALL_STATE(12147)] = 312082, + [SMALL_STATE(12148)] = 312096, + [SMALL_STATE(12149)] = 312112, + [SMALL_STATE(12150)] = 312128, + [SMALL_STATE(12151)] = 312144, + [SMALL_STATE(12152)] = 312156, + [SMALL_STATE(12153)] = 312172, + [SMALL_STATE(12154)] = 312188, + [SMALL_STATE(12155)] = 312206, + [SMALL_STATE(12156)] = 312222, + [SMALL_STATE(12157)] = 312240, + [SMALL_STATE(12158)] = 312252, + [SMALL_STATE(12159)] = 312264, + [SMALL_STATE(12160)] = 312280, + [SMALL_STATE(12161)] = 312298, + [SMALL_STATE(12162)] = 312314, + [SMALL_STATE(12163)] = 312330, + [SMALL_STATE(12164)] = 312345, + [SMALL_STATE(12165)] = 312360, + [SMALL_STATE(12166)] = 312375, + [SMALL_STATE(12167)] = 312390, + [SMALL_STATE(12168)] = 312405, + [SMALL_STATE(12169)] = 312420, + [SMALL_STATE(12170)] = 312435, + [SMALL_STATE(12171)] = 312448, + [SMALL_STATE(12172)] = 312463, + [SMALL_STATE(12173)] = 312482, + [SMALL_STATE(12174)] = 312499, + [SMALL_STATE(12175)] = 312516, + [SMALL_STATE(12176)] = 312531, + [SMALL_STATE(12177)] = 312542, + [SMALL_STATE(12178)] = 312553, + [SMALL_STATE(12179)] = 312572, + [SMALL_STATE(12180)] = 312583, + [SMALL_STATE(12181)] = 312594, + [SMALL_STATE(12182)] = 312605, + [SMALL_STATE(12183)] = 312618, + [SMALL_STATE(12184)] = 312629, + [SMALL_STATE(12185)] = 312642, + [SMALL_STATE(12186)] = 312657, + [SMALL_STATE(12187)] = 312672, + [SMALL_STATE(12188)] = 312687, + [SMALL_STATE(12189)] = 312702, + [SMALL_STATE(12190)] = 312713, + [SMALL_STATE(12191)] = 312726, + [SMALL_STATE(12192)] = 312739, + [SMALL_STATE(12193)] = 312754, + [SMALL_STATE(12194)] = 312769, + [SMALL_STATE(12195)] = 312784, + [SMALL_STATE(12196)] = 312799, + [SMALL_STATE(12197)] = 312812, + [SMALL_STATE(12198)] = 312831, + [SMALL_STATE(12199)] = 312846, + [SMALL_STATE(12200)] = 312863, + [SMALL_STATE(12201)] = 312882, + [SMALL_STATE(12202)] = 312897, + [SMALL_STATE(12203)] = 312914, + [SMALL_STATE(12204)] = 312931, + [SMALL_STATE(12205)] = 312946, + [SMALL_STATE(12206)] = 312965, + [SMALL_STATE(12207)] = 312980, + [SMALL_STATE(12208)] = 312997, + [SMALL_STATE(12209)] = 313012, + [SMALL_STATE(12210)] = 313023, + [SMALL_STATE(12211)] = 313038, + [SMALL_STATE(12212)] = 313057, + [SMALL_STATE(12213)] = 313072, + [SMALL_STATE(12214)] = 313087, + [SMALL_STATE(12215)] = 313098, + [SMALL_STATE(12216)] = 313109, + [SMALL_STATE(12217)] = 313128, + [SMALL_STATE(12218)] = 313143, + [SMALL_STATE(12219)] = 313160, + [SMALL_STATE(12220)] = 313175, + [SMALL_STATE(12221)] = 313194, + [SMALL_STATE(12222)] = 313209, + [SMALL_STATE(12223)] = 313224, + [SMALL_STATE(12224)] = 313239, + [SMALL_STATE(12225)] = 313254, + [SMALL_STATE(12226)] = 313273, + [SMALL_STATE(12227)] = 313290, + [SMALL_STATE(12228)] = 313301, + [SMALL_STATE(12229)] = 313318, + [SMALL_STATE(12230)] = 313333, + [SMALL_STATE(12231)] = 313348, + [SMALL_STATE(12232)] = 313367, + [SMALL_STATE(12233)] = 313378, + [SMALL_STATE(12234)] = 313389, + [SMALL_STATE(12235)] = 313406, + [SMALL_STATE(12236)] = 313419, + [SMALL_STATE(12237)] = 313432, + [SMALL_STATE(12238)] = 313449, + [SMALL_STATE(12239)] = 313466, + [SMALL_STATE(12240)] = 313481, + [SMALL_STATE(12241)] = 313496, + [SMALL_STATE(12242)] = 313513, + [SMALL_STATE(12243)] = 313528, + [SMALL_STATE(12244)] = 313547, + [SMALL_STATE(12245)] = 313558, + [SMALL_STATE(12246)] = 313573, + [SMALL_STATE(12247)] = 313588, + [SMALL_STATE(12248)] = 313603, + [SMALL_STATE(12249)] = 313618, + [SMALL_STATE(12250)] = 313637, + [SMALL_STATE(12251)] = 313652, + [SMALL_STATE(12252)] = 313669, + [SMALL_STATE(12253)] = 313680, + [SMALL_STATE(12254)] = 313691, + [SMALL_STATE(12255)] = 313704, + [SMALL_STATE(12256)] = 313721, + [SMALL_STATE(12257)] = 313738, + [SMALL_STATE(12258)] = 313751, + [SMALL_STATE(12259)] = 313766, + [SMALL_STATE(12260)] = 313781, + [SMALL_STATE(12261)] = 313800, + [SMALL_STATE(12262)] = 313815, + [SMALL_STATE(12263)] = 313832, + [SMALL_STATE(12264)] = 313851, + [SMALL_STATE(12265)] = 313866, + [SMALL_STATE(12266)] = 313883, + [SMALL_STATE(12267)] = 313900, + [SMALL_STATE(12268)] = 313917, + [SMALL_STATE(12269)] = 313932, + [SMALL_STATE(12270)] = 313949, + [SMALL_STATE(12271)] = 313960, + [SMALL_STATE(12272)] = 313977, + [SMALL_STATE(12273)] = 313992, + [SMALL_STATE(12274)] = 314007, + [SMALL_STATE(12275)] = 314024, + [SMALL_STATE(12276)] = 314039, + [SMALL_STATE(12277)] = 314050, + [SMALL_STATE(12278)] = 314067, + [SMALL_STATE(12279)] = 314082, + [SMALL_STATE(12280)] = 314101, + [SMALL_STATE(12281)] = 314116, + [SMALL_STATE(12282)] = 314131, + [SMALL_STATE(12283)] = 314146, + [SMALL_STATE(12284)] = 314161, + [SMALL_STATE(12285)] = 314178, + [SMALL_STATE(12286)] = 314197, + [SMALL_STATE(12287)] = 314212, + [SMALL_STATE(12288)] = 314227, + [SMALL_STATE(12289)] = 314244, + [SMALL_STATE(12290)] = 314259, + [SMALL_STATE(12291)] = 314274, + [SMALL_STATE(12292)] = 314287, + [SMALL_STATE(12293)] = 314304, + [SMALL_STATE(12294)] = 314317, + [SMALL_STATE(12295)] = 314336, + [SMALL_STATE(12296)] = 314353, + [SMALL_STATE(12297)] = 314368, + [SMALL_STATE(12298)] = 314385, + [SMALL_STATE(12299)] = 314400, + [SMALL_STATE(12300)] = 314415, + [SMALL_STATE(12301)] = 314432, + [SMALL_STATE(12302)] = 314447, + [SMALL_STATE(12303)] = 314462, + [SMALL_STATE(12304)] = 314477, + [SMALL_STATE(12305)] = 314494, + [SMALL_STATE(12306)] = 314509, + [SMALL_STATE(12307)] = 314526, + [SMALL_STATE(12308)] = 314543, + [SMALL_STATE(12309)] = 314558, + [SMALL_STATE(12310)] = 314575, + [SMALL_STATE(12311)] = 314590, + [SMALL_STATE(12312)] = 314607, + [SMALL_STATE(12313)] = 314622, + [SMALL_STATE(12314)] = 314635, + [SMALL_STATE(12315)] = 314654, + [SMALL_STATE(12316)] = 314673, + [SMALL_STATE(12317)] = 314690, + [SMALL_STATE(12318)] = 314707, + [SMALL_STATE(12319)] = 314722, + [SMALL_STATE(12320)] = 314733, + [SMALL_STATE(12321)] = 314750, + [SMALL_STATE(12322)] = 314765, + [SMALL_STATE(12323)] = 314782, + [SMALL_STATE(12324)] = 314797, + [SMALL_STATE(12325)] = 314812, + [SMALL_STATE(12326)] = 314827, + [SMALL_STATE(12327)] = 314840, + [SMALL_STATE(12328)] = 314857, + [SMALL_STATE(12329)] = 314874, + [SMALL_STATE(12330)] = 314889, + [SMALL_STATE(12331)] = 314904, + [SMALL_STATE(12332)] = 314919, + [SMALL_STATE(12333)] = 314934, + [SMALL_STATE(12334)] = 314949, + [SMALL_STATE(12335)] = 314964, + [SMALL_STATE(12336)] = 314979, + [SMALL_STATE(12337)] = 314994, + [SMALL_STATE(12338)] = 315009, + [SMALL_STATE(12339)] = 315024, + [SMALL_STATE(12340)] = 315039, + [SMALL_STATE(12341)] = 315054, + [SMALL_STATE(12342)] = 315069, + [SMALL_STATE(12343)] = 315084, + [SMALL_STATE(12344)] = 315097, + [SMALL_STATE(12345)] = 315112, + [SMALL_STATE(12346)] = 315127, + [SMALL_STATE(12347)] = 315142, + [SMALL_STATE(12348)] = 315157, + [SMALL_STATE(12349)] = 315172, + [SMALL_STATE(12350)] = 315187, + [SMALL_STATE(12351)] = 315202, + [SMALL_STATE(12352)] = 315217, + [SMALL_STATE(12353)] = 315232, + [SMALL_STATE(12354)] = 315247, + [SMALL_STATE(12355)] = 315262, + [SMALL_STATE(12356)] = 315277, + [SMALL_STATE(12357)] = 315292, + [SMALL_STATE(12358)] = 315307, + [SMALL_STATE(12359)] = 315322, + [SMALL_STATE(12360)] = 315337, + [SMALL_STATE(12361)] = 315352, + [SMALL_STATE(12362)] = 315367, + [SMALL_STATE(12363)] = 315382, + [SMALL_STATE(12364)] = 315397, + [SMALL_STATE(12365)] = 315412, + [SMALL_STATE(12366)] = 315427, + [SMALL_STATE(12367)] = 315442, + [SMALL_STATE(12368)] = 315457, + [SMALL_STATE(12369)] = 315472, + [SMALL_STATE(12370)] = 315487, + [SMALL_STATE(12371)] = 315502, + [SMALL_STATE(12372)] = 315517, + [SMALL_STATE(12373)] = 315532, + [SMALL_STATE(12374)] = 315547, + [SMALL_STATE(12375)] = 315562, + [SMALL_STATE(12376)] = 315577, + [SMALL_STATE(12377)] = 315592, + [SMALL_STATE(12378)] = 315607, + [SMALL_STATE(12379)] = 315622, + [SMALL_STATE(12380)] = 315635, + [SMALL_STATE(12381)] = 315652, + [SMALL_STATE(12382)] = 315667, + [SMALL_STATE(12383)] = 315680, + [SMALL_STATE(12384)] = 315697, + [SMALL_STATE(12385)] = 315712, + [SMALL_STATE(12386)] = 315727, + [SMALL_STATE(12387)] = 315744, + [SMALL_STATE(12388)] = 315763, + [SMALL_STATE(12389)] = 315780, + [SMALL_STATE(12390)] = 315795, + [SMALL_STATE(12391)] = 315812, + [SMALL_STATE(12392)] = 315829, + [SMALL_STATE(12393)] = 315844, + [SMALL_STATE(12394)] = 315861, + [SMALL_STATE(12395)] = 315878, + [SMALL_STATE(12396)] = 315897, + [SMALL_STATE(12397)] = 315914, + [SMALL_STATE(12398)] = 315929, + [SMALL_STATE(12399)] = 315946, + [SMALL_STATE(12400)] = 315965, + [SMALL_STATE(12401)] = 315976, + [SMALL_STATE(12402)] = 315995, + [SMALL_STATE(12403)] = 316010, + [SMALL_STATE(12404)] = 316027, + [SMALL_STATE(12405)] = 316042, + [SMALL_STATE(12406)] = 316059, + [SMALL_STATE(12407)] = 316074, + [SMALL_STATE(12408)] = 316089, + [SMALL_STATE(12409)] = 316100, + [SMALL_STATE(12410)] = 316115, + [SMALL_STATE(12411)] = 316126, + [SMALL_STATE(12412)] = 316141, + [SMALL_STATE(12413)] = 316153, + [SMALL_STATE(12414)] = 316163, + [SMALL_STATE(12415)] = 316173, + [SMALL_STATE(12416)] = 316189, + [SMALL_STATE(12417)] = 316205, + [SMALL_STATE(12418)] = 316219, + [SMALL_STATE(12419)] = 316229, + [SMALL_STATE(12420)] = 316245, + [SMALL_STATE(12421)] = 316261, + [SMALL_STATE(12422)] = 316271, + [SMALL_STATE(12423)] = 316285, + [SMALL_STATE(12424)] = 316295, + [SMALL_STATE(12425)] = 316309, + [SMALL_STATE(12426)] = 316325, + [SMALL_STATE(12427)] = 316341, + [SMALL_STATE(12428)] = 316355, + [SMALL_STATE(12429)] = 316369, + [SMALL_STATE(12430)] = 316383, + [SMALL_STATE(12431)] = 316397, + [SMALL_STATE(12432)] = 316411, + [SMALL_STATE(12433)] = 316425, + [SMALL_STATE(12434)] = 316441, + [SMALL_STATE(12435)] = 316457, + [SMALL_STATE(12436)] = 316471, + [SMALL_STATE(12437)] = 316485, + [SMALL_STATE(12438)] = 316501, + [SMALL_STATE(12439)] = 316517, + [SMALL_STATE(12440)] = 316527, + [SMALL_STATE(12441)] = 316541, + [SMALL_STATE(12442)] = 316557, + [SMALL_STATE(12443)] = 316571, + [SMALL_STATE(12444)] = 316587, + [SMALL_STATE(12445)] = 316603, + [SMALL_STATE(12446)] = 316617, + [SMALL_STATE(12447)] = 316631, + [SMALL_STATE(12448)] = 316647, + [SMALL_STATE(12449)] = 316663, + [SMALL_STATE(12450)] = 316679, + [SMALL_STATE(12451)] = 316695, + [SMALL_STATE(12452)] = 316711, + [SMALL_STATE(12453)] = 316725, + [SMALL_STATE(12454)] = 316741, + [SMALL_STATE(12455)] = 316757, + [SMALL_STATE(12456)] = 316771, + [SMALL_STATE(12457)] = 316785, + [SMALL_STATE(12458)] = 316799, + [SMALL_STATE(12459)] = 316813, + [SMALL_STATE(12460)] = 316829, + [SMALL_STATE(12461)] = 316845, + [SMALL_STATE(12462)] = 316859, + [SMALL_STATE(12463)] = 316873, + [SMALL_STATE(12464)] = 316883, + [SMALL_STATE(12465)] = 316899, + [SMALL_STATE(12466)] = 316915, + [SMALL_STATE(12467)] = 316929, + [SMALL_STATE(12468)] = 316943, + [SMALL_STATE(12469)] = 316957, + [SMALL_STATE(12470)] = 316971, + [SMALL_STATE(12471)] = 316987, + [SMALL_STATE(12472)] = 317003, + [SMALL_STATE(12473)] = 317019, + [SMALL_STATE(12474)] = 317035, + [SMALL_STATE(12475)] = 317049, + [SMALL_STATE(12476)] = 317065, + [SMALL_STATE(12477)] = 317081, + [SMALL_STATE(12478)] = 317095, + [SMALL_STATE(12479)] = 317109, + [SMALL_STATE(12480)] = 317123, + [SMALL_STATE(12481)] = 317139, + [SMALL_STATE(12482)] = 317155, + [SMALL_STATE(12483)] = 317165, + [SMALL_STATE(12484)] = 317181, + [SMALL_STATE(12485)] = 317191, + [SMALL_STATE(12486)] = 317207, + [SMALL_STATE(12487)] = 317223, + [SMALL_STATE(12488)] = 317239, + [SMALL_STATE(12489)] = 317251, + [SMALL_STATE(12490)] = 317267, + [SMALL_STATE(12491)] = 317283, + [SMALL_STATE(12492)] = 317295, + [SMALL_STATE(12493)] = 317307, + [SMALL_STATE(12494)] = 317323, + [SMALL_STATE(12495)] = 317339, + [SMALL_STATE(12496)] = 317355, + [SMALL_STATE(12497)] = 317371, + [SMALL_STATE(12498)] = 317387, + [SMALL_STATE(12499)] = 317397, + [SMALL_STATE(12500)] = 317411, + [SMALL_STATE(12501)] = 317427, + [SMALL_STATE(12502)] = 317443, + [SMALL_STATE(12503)] = 317457, + [SMALL_STATE(12504)] = 317471, + [SMALL_STATE(12505)] = 317485, + [SMALL_STATE(12506)] = 317499, + [SMALL_STATE(12507)] = 317515, + [SMALL_STATE(12508)] = 317531, + [SMALL_STATE(12509)] = 317545, + [SMALL_STATE(12510)] = 317559, + [SMALL_STATE(12511)] = 317573, + [SMALL_STATE(12512)] = 317589, + [SMALL_STATE(12513)] = 317605, + [SMALL_STATE(12514)] = 317619, + [SMALL_STATE(12515)] = 317633, + [SMALL_STATE(12516)] = 317649, + [SMALL_STATE(12517)] = 317665, + [SMALL_STATE(12518)] = 317681, + [SMALL_STATE(12519)] = 317695, + [SMALL_STATE(12520)] = 317707, + [SMALL_STATE(12521)] = 317723, + [SMALL_STATE(12522)] = 317739, + [SMALL_STATE(12523)] = 317755, + [SMALL_STATE(12524)] = 317771, + [SMALL_STATE(12525)] = 317785, + [SMALL_STATE(12526)] = 317801, + [SMALL_STATE(12527)] = 317817, + [SMALL_STATE(12528)] = 317831, + [SMALL_STATE(12529)] = 317847, + [SMALL_STATE(12530)] = 317863, + [SMALL_STATE(12531)] = 317877, + [SMALL_STATE(12532)] = 317891, + [SMALL_STATE(12533)] = 317903, + [SMALL_STATE(12534)] = 317919, + [SMALL_STATE(12535)] = 317935, + [SMALL_STATE(12536)] = 317949, + [SMALL_STATE(12537)] = 317963, + [SMALL_STATE(12538)] = 317977, + [SMALL_STATE(12539)] = 317993, + [SMALL_STATE(12540)] = 318009, + [SMALL_STATE(12541)] = 318025, + [SMALL_STATE(12542)] = 318041, + [SMALL_STATE(12543)] = 318055, + [SMALL_STATE(12544)] = 318071, + [SMALL_STATE(12545)] = 318087, + [SMALL_STATE(12546)] = 318099, + [SMALL_STATE(12547)] = 318115, + [SMALL_STATE(12548)] = 318131, + [SMALL_STATE(12549)] = 318147, + [SMALL_STATE(12550)] = 318163, + [SMALL_STATE(12551)] = 318179, + [SMALL_STATE(12552)] = 318193, + [SMALL_STATE(12553)] = 318209, + [SMALL_STATE(12554)] = 318225, + [SMALL_STATE(12555)] = 318239, + [SMALL_STATE(12556)] = 318255, + [SMALL_STATE(12557)] = 318267, + [SMALL_STATE(12558)] = 318283, + [SMALL_STATE(12559)] = 318299, + [SMALL_STATE(12560)] = 318315, + [SMALL_STATE(12561)] = 318329, + [SMALL_STATE(12562)] = 318339, + [SMALL_STATE(12563)] = 318349, + [SMALL_STATE(12564)] = 318359, + [SMALL_STATE(12565)] = 318373, + [SMALL_STATE(12566)] = 318389, + [SMALL_STATE(12567)] = 318405, + [SMALL_STATE(12568)] = 318421, + [SMALL_STATE(12569)] = 318437, + [SMALL_STATE(12570)] = 318449, + [SMALL_STATE(12571)] = 318463, + [SMALL_STATE(12572)] = 318479, + [SMALL_STATE(12573)] = 318495, + [SMALL_STATE(12574)] = 318505, + [SMALL_STATE(12575)] = 318515, + [SMALL_STATE(12576)] = 318529, + [SMALL_STATE(12577)] = 318539, + [SMALL_STATE(12578)] = 318549, + [SMALL_STATE(12579)] = 318565, + [SMALL_STATE(12580)] = 318575, + [SMALL_STATE(12581)] = 318591, + [SMALL_STATE(12582)] = 318607, + [SMALL_STATE(12583)] = 318623, + [SMALL_STATE(12584)] = 318633, + [SMALL_STATE(12585)] = 318649, + [SMALL_STATE(12586)] = 318659, + [SMALL_STATE(12587)] = 318669, + [SMALL_STATE(12588)] = 318685, + [SMALL_STATE(12589)] = 318701, + [SMALL_STATE(12590)] = 318713, + [SMALL_STATE(12591)] = 318729, + [SMALL_STATE(12592)] = 318745, + [SMALL_STATE(12593)] = 318761, + [SMALL_STATE(12594)] = 318777, + [SMALL_STATE(12595)] = 318787, + [SMALL_STATE(12596)] = 318801, + [SMALL_STATE(12597)] = 318813, + [SMALL_STATE(12598)] = 318829, + [SMALL_STATE(12599)] = 318845, + [SMALL_STATE(12600)] = 318859, + [SMALL_STATE(12601)] = 318873, + [SMALL_STATE(12602)] = 318887, + [SMALL_STATE(12603)] = 318899, + [SMALL_STATE(12604)] = 318911, + [SMALL_STATE(12605)] = 318927, + [SMALL_STATE(12606)] = 318943, + [SMALL_STATE(12607)] = 318959, + [SMALL_STATE(12608)] = 318975, + [SMALL_STATE(12609)] = 318987, + [SMALL_STATE(12610)] = 319003, + [SMALL_STATE(12611)] = 319015, + [SMALL_STATE(12612)] = 319029, + [SMALL_STATE(12613)] = 319043, + [SMALL_STATE(12614)] = 319059, + [SMALL_STATE(12615)] = 319075, + [SMALL_STATE(12616)] = 319091, + [SMALL_STATE(12617)] = 319107, + [SMALL_STATE(12618)] = 319119, + [SMALL_STATE(12619)] = 319135, + [SMALL_STATE(12620)] = 319151, + [SMALL_STATE(12621)] = 319167, + [SMALL_STATE(12622)] = 319183, + [SMALL_STATE(12623)] = 319193, + [SMALL_STATE(12624)] = 319207, + [SMALL_STATE(12625)] = 319217, + [SMALL_STATE(12626)] = 319233, + [SMALL_STATE(12627)] = 319249, + [SMALL_STATE(12628)] = 319265, + [SMALL_STATE(12629)] = 319281, + [SMALL_STATE(12630)] = 319297, + [SMALL_STATE(12631)] = 319313, + [SMALL_STATE(12632)] = 319323, + [SMALL_STATE(12633)] = 319339, + [SMALL_STATE(12634)] = 319355, + [SMALL_STATE(12635)] = 319371, + [SMALL_STATE(12636)] = 319387, + [SMALL_STATE(12637)] = 319403, + [SMALL_STATE(12638)] = 319419, + [SMALL_STATE(12639)] = 319435, + [SMALL_STATE(12640)] = 319451, + [SMALL_STATE(12641)] = 319467, + [SMALL_STATE(12642)] = 319483, + [SMALL_STATE(12643)] = 319499, + [SMALL_STATE(12644)] = 319515, + [SMALL_STATE(12645)] = 319531, + [SMALL_STATE(12646)] = 319547, + [SMALL_STATE(12647)] = 319563, + [SMALL_STATE(12648)] = 319579, + [SMALL_STATE(12649)] = 319593, + [SMALL_STATE(12650)] = 319605, + [SMALL_STATE(12651)] = 319617, + [SMALL_STATE(12652)] = 319629, + [SMALL_STATE(12653)] = 319641, + [SMALL_STATE(12654)] = 319655, + [SMALL_STATE(12655)] = 319667, + [SMALL_STATE(12656)] = 319681, + [SMALL_STATE(12657)] = 319691, + [SMALL_STATE(12658)] = 319705, + [SMALL_STATE(12659)] = 319717, + [SMALL_STATE(12660)] = 319731, + [SMALL_STATE(12661)] = 319743, + [SMALL_STATE(12662)] = 319753, + [SMALL_STATE(12663)] = 319767, + [SMALL_STATE(12664)] = 319777, + [SMALL_STATE(12665)] = 319787, + [SMALL_STATE(12666)] = 319801, + [SMALL_STATE(12667)] = 319811, + [SMALL_STATE(12668)] = 319821, + [SMALL_STATE(12669)] = 319831, + [SMALL_STATE(12670)] = 319841, + [SMALL_STATE(12671)] = 319855, + [SMALL_STATE(12672)] = 319869, + [SMALL_STATE(12673)] = 319883, + [SMALL_STATE(12674)] = 319899, + [SMALL_STATE(12675)] = 319913, + [SMALL_STATE(12676)] = 319929, + [SMALL_STATE(12677)] = 319943, + [SMALL_STATE(12678)] = 319953, + [SMALL_STATE(12679)] = 319969, + [SMALL_STATE(12680)] = 319979, + [SMALL_STATE(12681)] = 319993, + [SMALL_STATE(12682)] = 320003, + [SMALL_STATE(12683)] = 320017, + [SMALL_STATE(12684)] = 320031, + [SMALL_STATE(12685)] = 320041, + [SMALL_STATE(12686)] = 320055, + [SMALL_STATE(12687)] = 320071, + [SMALL_STATE(12688)] = 320085, + [SMALL_STATE(12689)] = 320101, + [SMALL_STATE(12690)] = 320117, + [SMALL_STATE(12691)] = 320131, + [SMALL_STATE(12692)] = 320147, + [SMALL_STATE(12693)] = 320157, + [SMALL_STATE(12694)] = 320167, + [SMALL_STATE(12695)] = 320181, + [SMALL_STATE(12696)] = 320195, + [SMALL_STATE(12697)] = 320209, + [SMALL_STATE(12698)] = 320219, + [SMALL_STATE(12699)] = 320229, + [SMALL_STATE(12700)] = 320243, + [SMALL_STATE(12701)] = 320257, + [SMALL_STATE(12702)] = 320271, + [SMALL_STATE(12703)] = 320285, + [SMALL_STATE(12704)] = 320299, + [SMALL_STATE(12705)] = 320313, + [SMALL_STATE(12706)] = 320327, + [SMALL_STATE(12707)] = 320341, + [SMALL_STATE(12708)] = 320351, + [SMALL_STATE(12709)] = 320365, + [SMALL_STATE(12710)] = 320379, + [SMALL_STATE(12711)] = 320391, + [SMALL_STATE(12712)] = 320401, + [SMALL_STATE(12713)] = 320415, + [SMALL_STATE(12714)] = 320429, + [SMALL_STATE(12715)] = 320439, + [SMALL_STATE(12716)] = 320451, + [SMALL_STATE(12717)] = 320467, + [SMALL_STATE(12718)] = 320481, + [SMALL_STATE(12719)] = 320495, + [SMALL_STATE(12720)] = 320511, + [SMALL_STATE(12721)] = 320521, + [SMALL_STATE(12722)] = 320531, + [SMALL_STATE(12723)] = 320545, + [SMALL_STATE(12724)] = 320559, + [SMALL_STATE(12725)] = 320575, + [SMALL_STATE(12726)] = 320585, + [SMALL_STATE(12727)] = 320597, + [SMALL_STATE(12728)] = 320609, + [SMALL_STATE(12729)] = 320623, + [SMALL_STATE(12730)] = 320637, + [SMALL_STATE(12731)] = 320647, + [SMALL_STATE(12732)] = 320663, + [SMALL_STATE(12733)] = 320675, + [SMALL_STATE(12734)] = 320687, + [SMALL_STATE(12735)] = 320699, + [SMALL_STATE(12736)] = 320711, + [SMALL_STATE(12737)] = 320723, + [SMALL_STATE(12738)] = 320735, + [SMALL_STATE(12739)] = 320751, + [SMALL_STATE(12740)] = 320761, + [SMALL_STATE(12741)] = 320775, + [SMALL_STATE(12742)] = 320785, + [SMALL_STATE(12743)] = 320799, + [SMALL_STATE(12744)] = 320811, + [SMALL_STATE(12745)] = 320823, + [SMALL_STATE(12746)] = 320837, + [SMALL_STATE(12747)] = 320851, + [SMALL_STATE(12748)] = 320865, + [SMALL_STATE(12749)] = 320879, + [SMALL_STATE(12750)] = 320893, + [SMALL_STATE(12751)] = 320909, + [SMALL_STATE(12752)] = 320919, + [SMALL_STATE(12753)] = 320933, + [SMALL_STATE(12754)] = 320947, + [SMALL_STATE(12755)] = 320963, + [SMALL_STATE(12756)] = 320977, + [SMALL_STATE(12757)] = 320991, + [SMALL_STATE(12758)] = 321001, + [SMALL_STATE(12759)] = 321015, + [SMALL_STATE(12760)] = 321029, + [SMALL_STATE(12761)] = 321045, + [SMALL_STATE(12762)] = 321061, + [SMALL_STATE(12763)] = 321075, + [SMALL_STATE(12764)] = 321091, + [SMALL_STATE(12765)] = 321107, + [SMALL_STATE(12766)] = 321123, + [SMALL_STATE(12767)] = 321135, + [SMALL_STATE(12768)] = 321149, + [SMALL_STATE(12769)] = 321165, + [SMALL_STATE(12770)] = 321181, + [SMALL_STATE(12771)] = 321195, + [SMALL_STATE(12772)] = 321211, + [SMALL_STATE(12773)] = 321221, + [SMALL_STATE(12774)] = 321235, + [SMALL_STATE(12775)] = 321249, + [SMALL_STATE(12776)] = 321263, + [SMALL_STATE(12777)] = 321273, + [SMALL_STATE(12778)] = 321287, + [SMALL_STATE(12779)] = 321297, + [SMALL_STATE(12780)] = 321307, + [SMALL_STATE(12781)] = 321321, + [SMALL_STATE(12782)] = 321337, + [SMALL_STATE(12783)] = 321351, + [SMALL_STATE(12784)] = 321367, + [SMALL_STATE(12785)] = 321383, + [SMALL_STATE(12786)] = 321397, + [SMALL_STATE(12787)] = 321413, + [SMALL_STATE(12788)] = 321427, + [SMALL_STATE(12789)] = 321441, + [SMALL_STATE(12790)] = 321457, + [SMALL_STATE(12791)] = 321473, + [SMALL_STATE(12792)] = 321487, + [SMALL_STATE(12793)] = 321501, + [SMALL_STATE(12794)] = 321515, + [SMALL_STATE(12795)] = 321529, + [SMALL_STATE(12796)] = 321543, + [SMALL_STATE(12797)] = 321557, + [SMALL_STATE(12798)] = 321571, + [SMALL_STATE(12799)] = 321585, + [SMALL_STATE(12800)] = 321599, + [SMALL_STATE(12801)] = 321613, + [SMALL_STATE(12802)] = 321627, + [SMALL_STATE(12803)] = 321641, + [SMALL_STATE(12804)] = 321651, + [SMALL_STATE(12805)] = 321661, + [SMALL_STATE(12806)] = 321673, + [SMALL_STATE(12807)] = 321687, + [SMALL_STATE(12808)] = 321701, + [SMALL_STATE(12809)] = 321715, + [SMALL_STATE(12810)] = 321725, + [SMALL_STATE(12811)] = 321739, + [SMALL_STATE(12812)] = 321753, + [SMALL_STATE(12813)] = 321767, + [SMALL_STATE(12814)] = 321781, + [SMALL_STATE(12815)] = 321791, + [SMALL_STATE(12816)] = 321805, + [SMALL_STATE(12817)] = 321815, + [SMALL_STATE(12818)] = 321829, + [SMALL_STATE(12819)] = 321841, + [SMALL_STATE(12820)] = 321851, + [SMALL_STATE(12821)] = 321865, + [SMALL_STATE(12822)] = 321875, + [SMALL_STATE(12823)] = 321885, + [SMALL_STATE(12824)] = 321895, + [SMALL_STATE(12825)] = 321909, + [SMALL_STATE(12826)] = 321923, + [SMALL_STATE(12827)] = 321933, + [SMALL_STATE(12828)] = 321943, + [SMALL_STATE(12829)] = 321957, + [SMALL_STATE(12830)] = 321967, + [SMALL_STATE(12831)] = 321981, + [SMALL_STATE(12832)] = 321995, + [SMALL_STATE(12833)] = 322009, + [SMALL_STATE(12834)] = 322023, + [SMALL_STATE(12835)] = 322039, + [SMALL_STATE(12836)] = 322053, + [SMALL_STATE(12837)] = 322069, + [SMALL_STATE(12838)] = 322085, + [SMALL_STATE(12839)] = 322099, + [SMALL_STATE(12840)] = 322115, + [SMALL_STATE(12841)] = 322125, + [SMALL_STATE(12842)] = 322139, + [SMALL_STATE(12843)] = 322153, + [SMALL_STATE(12844)] = 322169, + [SMALL_STATE(12845)] = 322183, + [SMALL_STATE(12846)] = 322197, + [SMALL_STATE(12847)] = 322211, + [SMALL_STATE(12848)] = 322225, + [SMALL_STATE(12849)] = 322241, + [SMALL_STATE(12850)] = 322255, + [SMALL_STATE(12851)] = 322269, + [SMALL_STATE(12852)] = 322283, + [SMALL_STATE(12853)] = 322297, + [SMALL_STATE(12854)] = 322311, + [SMALL_STATE(12855)] = 322325, + [SMALL_STATE(12856)] = 322339, + [SMALL_STATE(12857)] = 322355, + [SMALL_STATE(12858)] = 322369, + [SMALL_STATE(12859)] = 322383, + [SMALL_STATE(12860)] = 322399, + [SMALL_STATE(12861)] = 322409, + [SMALL_STATE(12862)] = 322419, + [SMALL_STATE(12863)] = 322433, + [SMALL_STATE(12864)] = 322445, + [SMALL_STATE(12865)] = 322461, + [SMALL_STATE(12866)] = 322477, + [SMALL_STATE(12867)] = 322491, + [SMALL_STATE(12868)] = 322501, + [SMALL_STATE(12869)] = 322515, + [SMALL_STATE(12870)] = 322525, + [SMALL_STATE(12871)] = 322539, + [SMALL_STATE(12872)] = 322549, + [SMALL_STATE(12873)] = 322559, + [SMALL_STATE(12874)] = 322573, + [SMALL_STATE(12875)] = 322587, + [SMALL_STATE(12876)] = 322597, + [SMALL_STATE(12877)] = 322611, + [SMALL_STATE(12878)] = 322621, + [SMALL_STATE(12879)] = 322631, + [SMALL_STATE(12880)] = 322645, + [SMALL_STATE(12881)] = 322659, + [SMALL_STATE(12882)] = 322673, + [SMALL_STATE(12883)] = 322683, + [SMALL_STATE(12884)] = 322697, + [SMALL_STATE(12885)] = 322707, + [SMALL_STATE(12886)] = 322717, + [SMALL_STATE(12887)] = 322729, + [SMALL_STATE(12888)] = 322743, + [SMALL_STATE(12889)] = 322753, + [SMALL_STATE(12890)] = 322765, + [SMALL_STATE(12891)] = 322775, + [SMALL_STATE(12892)] = 322789, + [SMALL_STATE(12893)] = 322803, + [SMALL_STATE(12894)] = 322813, + [SMALL_STATE(12895)] = 322827, + [SMALL_STATE(12896)] = 322837, + [SMALL_STATE(12897)] = 322851, + [SMALL_STATE(12898)] = 322865, + [SMALL_STATE(12899)] = 322881, + [SMALL_STATE(12900)] = 322897, + [SMALL_STATE(12901)] = 322913, + [SMALL_STATE(12902)] = 322927, + [SMALL_STATE(12903)] = 322943, + [SMALL_STATE(12904)] = 322957, + [SMALL_STATE(12905)] = 322967, + [SMALL_STATE(12906)] = 322981, + [SMALL_STATE(12907)] = 322995, + [SMALL_STATE(12908)] = 323005, + [SMALL_STATE(12909)] = 323019, + [SMALL_STATE(12910)] = 323033, + [SMALL_STATE(12911)] = 323047, + [SMALL_STATE(12912)] = 323057, + [SMALL_STATE(12913)] = 323071, + [SMALL_STATE(12914)] = 323085, + [SMALL_STATE(12915)] = 323099, + [SMALL_STATE(12916)] = 323113, + [SMALL_STATE(12917)] = 323129, + [SMALL_STATE(12918)] = 323139, + [SMALL_STATE(12919)] = 323155, + [SMALL_STATE(12920)] = 323169, + [SMALL_STATE(12921)] = 323185, + [SMALL_STATE(12922)] = 323199, + [SMALL_STATE(12923)] = 323209, + [SMALL_STATE(12924)] = 323219, + [SMALL_STATE(12925)] = 323229, + [SMALL_STATE(12926)] = 323243, + [SMALL_STATE(12927)] = 323257, + [SMALL_STATE(12928)] = 323273, + [SMALL_STATE(12929)] = 323289, + [SMALL_STATE(12930)] = 323299, + [SMALL_STATE(12931)] = 323309, + [SMALL_STATE(12932)] = 323319, + [SMALL_STATE(12933)] = 323333, + [SMALL_STATE(12934)] = 323343, + [SMALL_STATE(12935)] = 323357, + [SMALL_STATE(12936)] = 323367, + [SMALL_STATE(12937)] = 323381, + [SMALL_STATE(12938)] = 323391, + [SMALL_STATE(12939)] = 323401, + [SMALL_STATE(12940)] = 323411, + [SMALL_STATE(12941)] = 323427, + [SMALL_STATE(12942)] = 323437, + [SMALL_STATE(12943)] = 323453, + [SMALL_STATE(12944)] = 323469, + [SMALL_STATE(12945)] = 323479, + [SMALL_STATE(12946)] = 323489, + [SMALL_STATE(12947)] = 323503, + [SMALL_STATE(12948)] = 323519, + [SMALL_STATE(12949)] = 323535, + [SMALL_STATE(12950)] = 323551, + [SMALL_STATE(12951)] = 323567, + [SMALL_STATE(12952)] = 323583, + [SMALL_STATE(12953)] = 323595, + [SMALL_STATE(12954)] = 323605, + [SMALL_STATE(12955)] = 323617, + [SMALL_STATE(12956)] = 323627, + [SMALL_STATE(12957)] = 323641, + [SMALL_STATE(12958)] = 323651, + [SMALL_STATE(12959)] = 323661, + [SMALL_STATE(12960)] = 323673, + [SMALL_STATE(12961)] = 323685, + [SMALL_STATE(12962)] = 323699, + [SMALL_STATE(12963)] = 323713, + [SMALL_STATE(12964)] = 323729, + [SMALL_STATE(12965)] = 323743, + [SMALL_STATE(12966)] = 323757, + [SMALL_STATE(12967)] = 323771, + [SMALL_STATE(12968)] = 323787, + [SMALL_STATE(12969)] = 323797, + [SMALL_STATE(12970)] = 323809, + [SMALL_STATE(12971)] = 323821, + [SMALL_STATE(12972)] = 323835, + [SMALL_STATE(12973)] = 323847, + [SMALL_STATE(12974)] = 323859, + [SMALL_STATE(12975)] = 323869, + [SMALL_STATE(12976)] = 323883, + [SMALL_STATE(12977)] = 323899, + [SMALL_STATE(12978)] = 323915, + [SMALL_STATE(12979)] = 323929, + [SMALL_STATE(12980)] = 323943, + [SMALL_STATE(12981)] = 323953, + [SMALL_STATE(12982)] = 323967, + [SMALL_STATE(12983)] = 323981, + [SMALL_STATE(12984)] = 323995, + [SMALL_STATE(12985)] = 324009, + [SMALL_STATE(12986)] = 324023, + [SMALL_STATE(12987)] = 324039, + [SMALL_STATE(12988)] = 324053, + [SMALL_STATE(12989)] = 324067, + [SMALL_STATE(12990)] = 324081, + [SMALL_STATE(12991)] = 324097, + [SMALL_STATE(12992)] = 324111, + [SMALL_STATE(12993)] = 324125, + [SMALL_STATE(12994)] = 324139, + [SMALL_STATE(12995)] = 324153, + [SMALL_STATE(12996)] = 324167, + [SMALL_STATE(12997)] = 324181, + [SMALL_STATE(12998)] = 324195, + [SMALL_STATE(12999)] = 324209, + [SMALL_STATE(13000)] = 324223, + [SMALL_STATE(13001)] = 324237, + [SMALL_STATE(13002)] = 324251, + [SMALL_STATE(13003)] = 324267, + [SMALL_STATE(13004)] = 324283, + [SMALL_STATE(13005)] = 324297, + [SMALL_STATE(13006)] = 324307, + [SMALL_STATE(13007)] = 324321, + [SMALL_STATE(13008)] = 324335, + [SMALL_STATE(13009)] = 324349, + [SMALL_STATE(13010)] = 324363, + [SMALL_STATE(13011)] = 324377, + [SMALL_STATE(13012)] = 324391, + [SMALL_STATE(13013)] = 324405, + [SMALL_STATE(13014)] = 324419, + [SMALL_STATE(13015)] = 324433, + [SMALL_STATE(13016)] = 324447, + [SMALL_STATE(13017)] = 324461, + [SMALL_STATE(13018)] = 324477, + [SMALL_STATE(13019)] = 324493, + [SMALL_STATE(13020)] = 324507, + [SMALL_STATE(13021)] = 324521, + [SMALL_STATE(13022)] = 324535, + [SMALL_STATE(13023)] = 324545, + [SMALL_STATE(13024)] = 324555, + [SMALL_STATE(13025)] = 324569, + [SMALL_STATE(13026)] = 324579, + [SMALL_STATE(13027)] = 324595, + [SMALL_STATE(13028)] = 324609, + [SMALL_STATE(13029)] = 324623, + [SMALL_STATE(13030)] = 324639, + [SMALL_STATE(13031)] = 324649, + [SMALL_STATE(13032)] = 324663, + [SMALL_STATE(13033)] = 324677, + [SMALL_STATE(13034)] = 324687, + [SMALL_STATE(13035)] = 324701, + [SMALL_STATE(13036)] = 324715, + [SMALL_STATE(13037)] = 324729, + [SMALL_STATE(13038)] = 324743, + [SMALL_STATE(13039)] = 324757, + [SMALL_STATE(13040)] = 324773, + [SMALL_STATE(13041)] = 324785, + [SMALL_STATE(13042)] = 324795, + [SMALL_STATE(13043)] = 324811, + [SMALL_STATE(13044)] = 324827, + [SMALL_STATE(13045)] = 324843, + [SMALL_STATE(13046)] = 324857, + [SMALL_STATE(13047)] = 324871, + [SMALL_STATE(13048)] = 324885, + [SMALL_STATE(13049)] = 324899, + [SMALL_STATE(13050)] = 324915, + [SMALL_STATE(13051)] = 324929, + [SMALL_STATE(13052)] = 324943, + [SMALL_STATE(13053)] = 324959, + [SMALL_STATE(13054)] = 324975, + [SMALL_STATE(13055)] = 324991, + [SMALL_STATE(13056)] = 325005, + [SMALL_STATE(13057)] = 325021, + [SMALL_STATE(13058)] = 325035, + [SMALL_STATE(13059)] = 325045, + [SMALL_STATE(13060)] = 325059, + [SMALL_STATE(13061)] = 325069, + [SMALL_STATE(13062)] = 325079, + [SMALL_STATE(13063)] = 325095, + [SMALL_STATE(13064)] = 325111, + [SMALL_STATE(13065)] = 325127, + [SMALL_STATE(13066)] = 325143, + [SMALL_STATE(13067)] = 325159, + [SMALL_STATE(13068)] = 325173, + [SMALL_STATE(13069)] = 325187, + [SMALL_STATE(13070)] = 325201, + [SMALL_STATE(13071)] = 325215, + [SMALL_STATE(13072)] = 325231, + [SMALL_STATE(13073)] = 325247, + [SMALL_STATE(13074)] = 325257, + [SMALL_STATE(13075)] = 325271, + [SMALL_STATE(13076)] = 325283, + [SMALL_STATE(13077)] = 325297, + [SMALL_STATE(13078)] = 325309, + [SMALL_STATE(13079)] = 325323, + [SMALL_STATE(13080)] = 325337, + [SMALL_STATE(13081)] = 325350, + [SMALL_STATE(13082)] = 325361, + [SMALL_STATE(13083)] = 325372, + [SMALL_STATE(13084)] = 325385, + [SMALL_STATE(13085)] = 325398, + [SMALL_STATE(13086)] = 325409, + [SMALL_STATE(13087)] = 325418, + [SMALL_STATE(13088)] = 325431, + [SMALL_STATE(13089)] = 325442, + [SMALL_STATE(13090)] = 325453, + [SMALL_STATE(13091)] = 325464, + [SMALL_STATE(13092)] = 325475, + [SMALL_STATE(13093)] = 325488, + [SMALL_STATE(13094)] = 325497, + [SMALL_STATE(13095)] = 325510, + [SMALL_STATE(13096)] = 325523, + [SMALL_STATE(13097)] = 325536, + [SMALL_STATE(13098)] = 325549, + [SMALL_STATE(13099)] = 325560, + [SMALL_STATE(13100)] = 325573, + [SMALL_STATE(13101)] = 325586, + [SMALL_STATE(13102)] = 325599, + [SMALL_STATE(13103)] = 325612, + [SMALL_STATE(13104)] = 325623, + [SMALL_STATE(13105)] = 325636, + [SMALL_STATE(13106)] = 325647, + [SMALL_STATE(13107)] = 325660, + [SMALL_STATE(13108)] = 325671, + [SMALL_STATE(13109)] = 325680, + [SMALL_STATE(13110)] = 325693, + [SMALL_STATE(13111)] = 325704, + [SMALL_STATE(13112)] = 325715, + [SMALL_STATE(13113)] = 325726, + [SMALL_STATE(13114)] = 325739, + [SMALL_STATE(13115)] = 325748, + [SMALL_STATE(13116)] = 325759, + [SMALL_STATE(13117)] = 325770, + [SMALL_STATE(13118)] = 325781, + [SMALL_STATE(13119)] = 325790, + [SMALL_STATE(13120)] = 325803, + [SMALL_STATE(13121)] = 325814, + [SMALL_STATE(13122)] = 325823, + [SMALL_STATE(13123)] = 325836, + [SMALL_STATE(13124)] = 325847, + [SMALL_STATE(13125)] = 325858, + [SMALL_STATE(13126)] = 325869, + [SMALL_STATE(13127)] = 325880, + [SMALL_STATE(13128)] = 325891, + [SMALL_STATE(13129)] = 325902, + [SMALL_STATE(13130)] = 325913, + [SMALL_STATE(13131)] = 325924, + [SMALL_STATE(13132)] = 325937, + [SMALL_STATE(13133)] = 325950, + [SMALL_STATE(13134)] = 325963, + [SMALL_STATE(13135)] = 325974, + [SMALL_STATE(13136)] = 325987, + [SMALL_STATE(13137)] = 325998, + [SMALL_STATE(13138)] = 326011, + [SMALL_STATE(13139)] = 326024, + [SMALL_STATE(13140)] = 326035, + [SMALL_STATE(13141)] = 326048, + [SMALL_STATE(13142)] = 326061, + [SMALL_STATE(13143)] = 326072, + [SMALL_STATE(13144)] = 326085, + [SMALL_STATE(13145)] = 326096, + [SMALL_STATE(13146)] = 326107, + [SMALL_STATE(13147)] = 326120, + [SMALL_STATE(13148)] = 326131, + [SMALL_STATE(13149)] = 326142, + [SMALL_STATE(13150)] = 326155, + [SMALL_STATE(13151)] = 326166, + [SMALL_STATE(13152)] = 326179, + [SMALL_STATE(13153)] = 326188, + [SMALL_STATE(13154)] = 326201, + [SMALL_STATE(13155)] = 326212, + [SMALL_STATE(13156)] = 326225, + [SMALL_STATE(13157)] = 326236, + [SMALL_STATE(13158)] = 326249, + [SMALL_STATE(13159)] = 326262, + [SMALL_STATE(13160)] = 326275, + [SMALL_STATE(13161)] = 326288, + [SMALL_STATE(13162)] = 326299, + [SMALL_STATE(13163)] = 326312, + [SMALL_STATE(13164)] = 326325, + [SMALL_STATE(13165)] = 326334, + [SMALL_STATE(13166)] = 326347, + [SMALL_STATE(13167)] = 326360, + [SMALL_STATE(13168)] = 326373, + [SMALL_STATE(13169)] = 326384, + [SMALL_STATE(13170)] = 326397, + [SMALL_STATE(13171)] = 326410, + [SMALL_STATE(13172)] = 326421, + [SMALL_STATE(13173)] = 326430, + [SMALL_STATE(13174)] = 326441, + [SMALL_STATE(13175)] = 326454, + [SMALL_STATE(13176)] = 326465, + [SMALL_STATE(13177)] = 326476, + [SMALL_STATE(13178)] = 326487, + [SMALL_STATE(13179)] = 326498, + [SMALL_STATE(13180)] = 326509, + [SMALL_STATE(13181)] = 326520, + [SMALL_STATE(13182)] = 326531, + [SMALL_STATE(13183)] = 326544, + [SMALL_STATE(13184)] = 326553, + [SMALL_STATE(13185)] = 326566, + [SMALL_STATE(13186)] = 326577, + [SMALL_STATE(13187)] = 326590, + [SMALL_STATE(13188)] = 326603, + [SMALL_STATE(13189)] = 326614, + [SMALL_STATE(13190)] = 326627, + [SMALL_STATE(13191)] = 326640, + [SMALL_STATE(13192)] = 326649, + [SMALL_STATE(13193)] = 326658, + [SMALL_STATE(13194)] = 326669, + [SMALL_STATE(13195)] = 326680, + [SMALL_STATE(13196)] = 326693, + [SMALL_STATE(13197)] = 326704, + [SMALL_STATE(13198)] = 326717, + [SMALL_STATE(13199)] = 326728, + [SMALL_STATE(13200)] = 326741, + [SMALL_STATE(13201)] = 326752, + [SMALL_STATE(13202)] = 326765, + [SMALL_STATE(13203)] = 326776, + [SMALL_STATE(13204)] = 326789, + [SMALL_STATE(13205)] = 326802, + [SMALL_STATE(13206)] = 326815, + [SMALL_STATE(13207)] = 326826, + [SMALL_STATE(13208)] = 326839, + [SMALL_STATE(13209)] = 326850, + [SMALL_STATE(13210)] = 326861, + [SMALL_STATE(13211)] = 326874, + [SMALL_STATE(13212)] = 326887, + [SMALL_STATE(13213)] = 326898, + [SMALL_STATE(13214)] = 326911, + [SMALL_STATE(13215)] = 326922, + [SMALL_STATE(13216)] = 326933, + [SMALL_STATE(13217)] = 326944, + [SMALL_STATE(13218)] = 326955, + [SMALL_STATE(13219)] = 326966, + [SMALL_STATE(13220)] = 326979, + [SMALL_STATE(13221)] = 326990, + [SMALL_STATE(13222)] = 327003, + [SMALL_STATE(13223)] = 327014, + [SMALL_STATE(13224)] = 327027, + [SMALL_STATE(13225)] = 327038, + [SMALL_STATE(13226)] = 327051, + [SMALL_STATE(13227)] = 327060, + [SMALL_STATE(13228)] = 327071, + [SMALL_STATE(13229)] = 327082, + [SMALL_STATE(13230)] = 327095, + [SMALL_STATE(13231)] = 327108, + [SMALL_STATE(13232)] = 327121, + [SMALL_STATE(13233)] = 327132, + [SMALL_STATE(13234)] = 327145, + [SMALL_STATE(13235)] = 327156, + [SMALL_STATE(13236)] = 327169, + [SMALL_STATE(13237)] = 327180, + [SMALL_STATE(13238)] = 327191, + [SMALL_STATE(13239)] = 327202, + [SMALL_STATE(13240)] = 327213, + [SMALL_STATE(13241)] = 327224, + [SMALL_STATE(13242)] = 327237, + [SMALL_STATE(13243)] = 327248, + [SMALL_STATE(13244)] = 327261, + [SMALL_STATE(13245)] = 327272, + [SMALL_STATE(13246)] = 327283, + [SMALL_STATE(13247)] = 327294, + [SMALL_STATE(13248)] = 327307, + [SMALL_STATE(13249)] = 327318, + [SMALL_STATE(13250)] = 327331, + [SMALL_STATE(13251)] = 327344, + [SMALL_STATE(13252)] = 327357, + [SMALL_STATE(13253)] = 327370, + [SMALL_STATE(13254)] = 327381, + [SMALL_STATE(13255)] = 327392, + [SMALL_STATE(13256)] = 327403, + [SMALL_STATE(13257)] = 327414, + [SMALL_STATE(13258)] = 327427, + [SMALL_STATE(13259)] = 327438, + [SMALL_STATE(13260)] = 327449, + [SMALL_STATE(13261)] = 327460, + [SMALL_STATE(13262)] = 327473, + [SMALL_STATE(13263)] = 327484, + [SMALL_STATE(13264)] = 327497, + [SMALL_STATE(13265)] = 327510, + [SMALL_STATE(13266)] = 327521, + [SMALL_STATE(13267)] = 327534, + [SMALL_STATE(13268)] = 327545, + [SMALL_STATE(13269)] = 327558, + [SMALL_STATE(13270)] = 327569, + [SMALL_STATE(13271)] = 327580, + [SMALL_STATE(13272)] = 327591, + [SMALL_STATE(13273)] = 327602, + [SMALL_STATE(13274)] = 327613, + [SMALL_STATE(13275)] = 327626, + [SMALL_STATE(13276)] = 327639, + [SMALL_STATE(13277)] = 327650, + [SMALL_STATE(13278)] = 327663, + [SMALL_STATE(13279)] = 327674, + [SMALL_STATE(13280)] = 327687, + [SMALL_STATE(13281)] = 327698, + [SMALL_STATE(13282)] = 327709, + [SMALL_STATE(13283)] = 327718, + [SMALL_STATE(13284)] = 327731, + [SMALL_STATE(13285)] = 327740, + [SMALL_STATE(13286)] = 327753, + [SMALL_STATE(13287)] = 327764, + [SMALL_STATE(13288)] = 327777, + [SMALL_STATE(13289)] = 327788, + [SMALL_STATE(13290)] = 327801, + [SMALL_STATE(13291)] = 327810, + [SMALL_STATE(13292)] = 327821, + [SMALL_STATE(13293)] = 327832, + [SMALL_STATE(13294)] = 327845, + [SMALL_STATE(13295)] = 327858, + [SMALL_STATE(13296)] = 327871, + [SMALL_STATE(13297)] = 327882, + [SMALL_STATE(13298)] = 327893, + [SMALL_STATE(13299)] = 327904, + [SMALL_STATE(13300)] = 327913, + [SMALL_STATE(13301)] = 327924, + [SMALL_STATE(13302)] = 327935, + [SMALL_STATE(13303)] = 327946, + [SMALL_STATE(13304)] = 327957, + [SMALL_STATE(13305)] = 327970, + [SMALL_STATE(13306)] = 327981, + [SMALL_STATE(13307)] = 327994, + [SMALL_STATE(13308)] = 328007, + [SMALL_STATE(13309)] = 328016, + [SMALL_STATE(13310)] = 328029, + [SMALL_STATE(13311)] = 328040, + [SMALL_STATE(13312)] = 328053, + [SMALL_STATE(13313)] = 328066, + [SMALL_STATE(13314)] = 328079, + [SMALL_STATE(13315)] = 328092, + [SMALL_STATE(13316)] = 328105, + [SMALL_STATE(13317)] = 328116, + [SMALL_STATE(13318)] = 328129, + [SMALL_STATE(13319)] = 328140, + [SMALL_STATE(13320)] = 328151, + [SMALL_STATE(13321)] = 328162, + [SMALL_STATE(13322)] = 328173, + [SMALL_STATE(13323)] = 328184, + [SMALL_STATE(13324)] = 328197, + [SMALL_STATE(13325)] = 328210, + [SMALL_STATE(13326)] = 328221, + [SMALL_STATE(13327)] = 328232, + [SMALL_STATE(13328)] = 328243, + [SMALL_STATE(13329)] = 328256, + [SMALL_STATE(13330)] = 328267, + [SMALL_STATE(13331)] = 328278, + [SMALL_STATE(13332)] = 328289, + [SMALL_STATE(13333)] = 328300, + [SMALL_STATE(13334)] = 328309, + [SMALL_STATE(13335)] = 328322, + [SMALL_STATE(13336)] = 328333, + [SMALL_STATE(13337)] = 328344, + [SMALL_STATE(13338)] = 328357, + [SMALL_STATE(13339)] = 328368, + [SMALL_STATE(13340)] = 328379, + [SMALL_STATE(13341)] = 328390, + [SMALL_STATE(13342)] = 328399, + [SMALL_STATE(13343)] = 328410, + [SMALL_STATE(13344)] = 328423, + [SMALL_STATE(13345)] = 328434, + [SMALL_STATE(13346)] = 328445, + [SMALL_STATE(13347)] = 328454, + [SMALL_STATE(13348)] = 328465, + [SMALL_STATE(13349)] = 328478, + [SMALL_STATE(13350)] = 328489, + [SMALL_STATE(13351)] = 328498, + [SMALL_STATE(13352)] = 328511, + [SMALL_STATE(13353)] = 328524, + [SMALL_STATE(13354)] = 328535, + [SMALL_STATE(13355)] = 328548, + [SMALL_STATE(13356)] = 328559, + [SMALL_STATE(13357)] = 328572, + [SMALL_STATE(13358)] = 328583, + [SMALL_STATE(13359)] = 328594, + [SMALL_STATE(13360)] = 328605, + [SMALL_STATE(13361)] = 328618, + [SMALL_STATE(13362)] = 328631, + [SMALL_STATE(13363)] = 328642, + [SMALL_STATE(13364)] = 328655, + [SMALL_STATE(13365)] = 328668, + [SMALL_STATE(13366)] = 328681, + [SMALL_STATE(13367)] = 328692, + [SMALL_STATE(13368)] = 328703, + [SMALL_STATE(13369)] = 328716, + [SMALL_STATE(13370)] = 328729, + [SMALL_STATE(13371)] = 328742, + [SMALL_STATE(13372)] = 328755, + [SMALL_STATE(13373)] = 328768, + [SMALL_STATE(13374)] = 328779, + [SMALL_STATE(13375)] = 328792, + [SMALL_STATE(13376)] = 328803, + [SMALL_STATE(13377)] = 328814, + [SMALL_STATE(13378)] = 328827, + [SMALL_STATE(13379)] = 328836, + [SMALL_STATE(13380)] = 328845, + [SMALL_STATE(13381)] = 328858, + [SMALL_STATE(13382)] = 328869, + [SMALL_STATE(13383)] = 328882, + [SMALL_STATE(13384)] = 328895, + [SMALL_STATE(13385)] = 328906, + [SMALL_STATE(13386)] = 328919, + [SMALL_STATE(13387)] = 328930, + [SMALL_STATE(13388)] = 328943, + [SMALL_STATE(13389)] = 328956, + [SMALL_STATE(13390)] = 328969, + [SMALL_STATE(13391)] = 328980, + [SMALL_STATE(13392)] = 328991, + [SMALL_STATE(13393)] = 329002, + [SMALL_STATE(13394)] = 329015, + [SMALL_STATE(13395)] = 329028, + [SMALL_STATE(13396)] = 329041, + [SMALL_STATE(13397)] = 329052, + [SMALL_STATE(13398)] = 329063, + [SMALL_STATE(13399)] = 329076, + [SMALL_STATE(13400)] = 329089, + [SMALL_STATE(13401)] = 329102, + [SMALL_STATE(13402)] = 329111, + [SMALL_STATE(13403)] = 329122, + [SMALL_STATE(13404)] = 329133, + [SMALL_STATE(13405)] = 329144, + [SMALL_STATE(13406)] = 329155, + [SMALL_STATE(13407)] = 329168, + [SMALL_STATE(13408)] = 329177, + [SMALL_STATE(13409)] = 329188, + [SMALL_STATE(13410)] = 329201, + [SMALL_STATE(13411)] = 329214, + [SMALL_STATE(13412)] = 329225, + [SMALL_STATE(13413)] = 329236, + [SMALL_STATE(13414)] = 329249, + [SMALL_STATE(13415)] = 329260, + [SMALL_STATE(13416)] = 329273, + [SMALL_STATE(13417)] = 329284, + [SMALL_STATE(13418)] = 329295, + [SMALL_STATE(13419)] = 329308, + [SMALL_STATE(13420)] = 329319, + [SMALL_STATE(13421)] = 329332, + [SMALL_STATE(13422)] = 329343, + [SMALL_STATE(13423)] = 329356, + [SMALL_STATE(13424)] = 329367, + [SMALL_STATE(13425)] = 329378, + [SMALL_STATE(13426)] = 329389, + [SMALL_STATE(13427)] = 329400, + [SMALL_STATE(13428)] = 329413, + [SMALL_STATE(13429)] = 329426, + [SMALL_STATE(13430)] = 329435, + [SMALL_STATE(13431)] = 329446, + [SMALL_STATE(13432)] = 329455, + [SMALL_STATE(13433)] = 329464, + [SMALL_STATE(13434)] = 329477, + [SMALL_STATE(13435)] = 329486, + [SMALL_STATE(13436)] = 329497, + [SMALL_STATE(13437)] = 329508, + [SMALL_STATE(13438)] = 329519, + [SMALL_STATE(13439)] = 329530, + [SMALL_STATE(13440)] = 329541, + [SMALL_STATE(13441)] = 329554, + [SMALL_STATE(13442)] = 329565, + [SMALL_STATE(13443)] = 329576, + [SMALL_STATE(13444)] = 329587, + [SMALL_STATE(13445)] = 329598, + [SMALL_STATE(13446)] = 329611, + [SMALL_STATE(13447)] = 329624, + [SMALL_STATE(13448)] = 329637, + [SMALL_STATE(13449)] = 329646, + [SMALL_STATE(13450)] = 329659, + [SMALL_STATE(13451)] = 329672, + [SMALL_STATE(13452)] = 329685, + [SMALL_STATE(13453)] = 329698, + [SMALL_STATE(13454)] = 329709, + [SMALL_STATE(13455)] = 329722, + [SMALL_STATE(13456)] = 329731, + [SMALL_STATE(13457)] = 329744, + [SMALL_STATE(13458)] = 329755, + [SMALL_STATE(13459)] = 329768, + [SMALL_STATE(13460)] = 329779, + [SMALL_STATE(13461)] = 329790, + [SMALL_STATE(13462)] = 329801, + [SMALL_STATE(13463)] = 329812, + [SMALL_STATE(13464)] = 329825, + [SMALL_STATE(13465)] = 329836, + [SMALL_STATE(13466)] = 329847, + [SMALL_STATE(13467)] = 329858, + [SMALL_STATE(13468)] = 329871, + [SMALL_STATE(13469)] = 329882, + [SMALL_STATE(13470)] = 329895, + [SMALL_STATE(13471)] = 329908, + [SMALL_STATE(13472)] = 329919, + [SMALL_STATE(13473)] = 329932, + [SMALL_STATE(13474)] = 329945, + [SMALL_STATE(13475)] = 329958, + [SMALL_STATE(13476)] = 329971, + [SMALL_STATE(13477)] = 329984, + [SMALL_STATE(13478)] = 329997, + [SMALL_STATE(13479)] = 330008, + [SMALL_STATE(13480)] = 330021, + [SMALL_STATE(13481)] = 330032, + [SMALL_STATE(13482)] = 330045, + [SMALL_STATE(13483)] = 330056, + [SMALL_STATE(13484)] = 330069, + [SMALL_STATE(13485)] = 330080, + [SMALL_STATE(13486)] = 330093, + [SMALL_STATE(13487)] = 330106, + [SMALL_STATE(13488)] = 330115, + [SMALL_STATE(13489)] = 330126, + [SMALL_STATE(13490)] = 330135, + [SMALL_STATE(13491)] = 330146, + [SMALL_STATE(13492)] = 330159, + [SMALL_STATE(13493)] = 330172, + [SMALL_STATE(13494)] = 330185, + [SMALL_STATE(13495)] = 330198, + [SMALL_STATE(13496)] = 330209, + [SMALL_STATE(13497)] = 330220, + [SMALL_STATE(13498)] = 330231, + [SMALL_STATE(13499)] = 330244, + [SMALL_STATE(13500)] = 330253, + [SMALL_STATE(13501)] = 330266, + [SMALL_STATE(13502)] = 330279, + [SMALL_STATE(13503)] = 330290, + [SMALL_STATE(13504)] = 330303, + [SMALL_STATE(13505)] = 330314, + [SMALL_STATE(13506)] = 330325, + [SMALL_STATE(13507)] = 330336, + [SMALL_STATE(13508)] = 330347, + [SMALL_STATE(13509)] = 330358, + [SMALL_STATE(13510)] = 330371, + [SMALL_STATE(13511)] = 330384, + [SMALL_STATE(13512)] = 330395, + [SMALL_STATE(13513)] = 330406, + [SMALL_STATE(13514)] = 330417, + [SMALL_STATE(13515)] = 330428, + [SMALL_STATE(13516)] = 330441, + [SMALL_STATE(13517)] = 330452, + [SMALL_STATE(13518)] = 330465, + [SMALL_STATE(13519)] = 330476, + [SMALL_STATE(13520)] = 330487, + [SMALL_STATE(13521)] = 330496, + [SMALL_STATE(13522)] = 330509, + [SMALL_STATE(13523)] = 330518, + [SMALL_STATE(13524)] = 330527, + [SMALL_STATE(13525)] = 330538, + [SMALL_STATE(13526)] = 330549, + [SMALL_STATE(13527)] = 330560, + [SMALL_STATE(13528)] = 330573, + [SMALL_STATE(13529)] = 330584, + [SMALL_STATE(13530)] = 330597, + [SMALL_STATE(13531)] = 330610, + [SMALL_STATE(13532)] = 330621, + [SMALL_STATE(13533)] = 330632, + [SMALL_STATE(13534)] = 330643, + [SMALL_STATE(13535)] = 330654, + [SMALL_STATE(13536)] = 330665, + [SMALL_STATE(13537)] = 330676, + [SMALL_STATE(13538)] = 330685, + [SMALL_STATE(13539)] = 330696, + [SMALL_STATE(13540)] = 330709, + [SMALL_STATE(13541)] = 330722, + [SMALL_STATE(13542)] = 330733, + [SMALL_STATE(13543)] = 330742, + [SMALL_STATE(13544)] = 330753, + [SMALL_STATE(13545)] = 330766, + [SMALL_STATE(13546)] = 330777, + [SMALL_STATE(13547)] = 330790, + [SMALL_STATE(13548)] = 330799, + [SMALL_STATE(13549)] = 330810, + [SMALL_STATE(13550)] = 330819, + [SMALL_STATE(13551)] = 330832, + [SMALL_STATE(13552)] = 330843, + [SMALL_STATE(13553)] = 330854, + [SMALL_STATE(13554)] = 330863, + [SMALL_STATE(13555)] = 330872, + [SMALL_STATE(13556)] = 330883, + [SMALL_STATE(13557)] = 330894, + [SMALL_STATE(13558)] = 330905, + [SMALL_STATE(13559)] = 330916, + [SMALL_STATE(13560)] = 330929, + [SMALL_STATE(13561)] = 330940, + [SMALL_STATE(13562)] = 330951, + [SMALL_STATE(13563)] = 330962, + [SMALL_STATE(13564)] = 330973, + [SMALL_STATE(13565)] = 330984, + [SMALL_STATE(13566)] = 330997, + [SMALL_STATE(13567)] = 331010, + [SMALL_STATE(13568)] = 331021, + [SMALL_STATE(13569)] = 331034, + [SMALL_STATE(13570)] = 331045, + [SMALL_STATE(13571)] = 331056, + [SMALL_STATE(13572)] = 331065, + [SMALL_STATE(13573)] = 331078, + [SMALL_STATE(13574)] = 331089, + [SMALL_STATE(13575)] = 331102, + [SMALL_STATE(13576)] = 331113, + [SMALL_STATE(13577)] = 331124, + [SMALL_STATE(13578)] = 331133, + [SMALL_STATE(13579)] = 331146, + [SMALL_STATE(13580)] = 331157, + [SMALL_STATE(13581)] = 331170, + [SMALL_STATE(13582)] = 331181, + [SMALL_STATE(13583)] = 331192, + [SMALL_STATE(13584)] = 331203, + [SMALL_STATE(13585)] = 331214, + [SMALL_STATE(13586)] = 331227, + [SMALL_STATE(13587)] = 331238, + [SMALL_STATE(13588)] = 331251, + [SMALL_STATE(13589)] = 331262, + [SMALL_STATE(13590)] = 331271, + [SMALL_STATE(13591)] = 331280, + [SMALL_STATE(13592)] = 331291, + [SMALL_STATE(13593)] = 331302, + [SMALL_STATE(13594)] = 331313, + [SMALL_STATE(13595)] = 331324, + [SMALL_STATE(13596)] = 331335, + [SMALL_STATE(13597)] = 331348, + [SMALL_STATE(13598)] = 331361, + [SMALL_STATE(13599)] = 331372, + [SMALL_STATE(13600)] = 331385, + [SMALL_STATE(13601)] = 331396, + [SMALL_STATE(13602)] = 331407, + [SMALL_STATE(13603)] = 331416, + [SMALL_STATE(13604)] = 331427, + [SMALL_STATE(13605)] = 331438, + [SMALL_STATE(13606)] = 331449, + [SMALL_STATE(13607)] = 331458, + [SMALL_STATE(13608)] = 331469, + [SMALL_STATE(13609)] = 331482, + [SMALL_STATE(13610)] = 331493, + [SMALL_STATE(13611)] = 331504, + [SMALL_STATE(13612)] = 331515, + [SMALL_STATE(13613)] = 331528, + [SMALL_STATE(13614)] = 331539, + [SMALL_STATE(13615)] = 331550, + [SMALL_STATE(13616)] = 331561, + [SMALL_STATE(13617)] = 331572, + [SMALL_STATE(13618)] = 331583, + [SMALL_STATE(13619)] = 331594, + [SMALL_STATE(13620)] = 331605, + [SMALL_STATE(13621)] = 331616, + [SMALL_STATE(13622)] = 331627, + [SMALL_STATE(13623)] = 331638, + [SMALL_STATE(13624)] = 331649, + [SMALL_STATE(13625)] = 331660, + [SMALL_STATE(13626)] = 331671, + [SMALL_STATE(13627)] = 331680, + [SMALL_STATE(13628)] = 331689, + [SMALL_STATE(13629)] = 331702, + [SMALL_STATE(13630)] = 331713, + [SMALL_STATE(13631)] = 331724, + [SMALL_STATE(13632)] = 331733, + [SMALL_STATE(13633)] = 331746, + [SMALL_STATE(13634)] = 331759, + [SMALL_STATE(13635)] = 331770, + [SMALL_STATE(13636)] = 331783, + [SMALL_STATE(13637)] = 331794, + [SMALL_STATE(13638)] = 331807, + [SMALL_STATE(13639)] = 331820, + [SMALL_STATE(13640)] = 331829, + [SMALL_STATE(13641)] = 331840, + [SMALL_STATE(13642)] = 331851, + [SMALL_STATE(13643)] = 331864, + [SMALL_STATE(13644)] = 331875, + [SMALL_STATE(13645)] = 331888, + [SMALL_STATE(13646)] = 331901, + [SMALL_STATE(13647)] = 331912, + [SMALL_STATE(13648)] = 331923, + [SMALL_STATE(13649)] = 331934, + [SMALL_STATE(13650)] = 331945, + [SMALL_STATE(13651)] = 331958, + [SMALL_STATE(13652)] = 331969, + [SMALL_STATE(13653)] = 331982, + [SMALL_STATE(13654)] = 331993, + [SMALL_STATE(13655)] = 332004, + [SMALL_STATE(13656)] = 332017, + [SMALL_STATE(13657)] = 332030, + [SMALL_STATE(13658)] = 332043, + [SMALL_STATE(13659)] = 332056, + [SMALL_STATE(13660)] = 332069, + [SMALL_STATE(13661)] = 332080, + [SMALL_STATE(13662)] = 332091, + [SMALL_STATE(13663)] = 332102, + [SMALL_STATE(13664)] = 332113, + [SMALL_STATE(13665)] = 332126, + [SMALL_STATE(13666)] = 332134, + [SMALL_STATE(13667)] = 332142, + [SMALL_STATE(13668)] = 332150, + [SMALL_STATE(13669)] = 332158, + [SMALL_STATE(13670)] = 332166, + [SMALL_STATE(13671)] = 332174, + [SMALL_STATE(13672)] = 332182, + [SMALL_STATE(13673)] = 332190, + [SMALL_STATE(13674)] = 332198, + [SMALL_STATE(13675)] = 332206, + [SMALL_STATE(13676)] = 332214, + [SMALL_STATE(13677)] = 332222, + [SMALL_STATE(13678)] = 332230, + [SMALL_STATE(13679)] = 332238, + [SMALL_STATE(13680)] = 332248, + [SMALL_STATE(13681)] = 332256, + [SMALL_STATE(13682)] = 332264, + [SMALL_STATE(13683)] = 332272, + [SMALL_STATE(13684)] = 332280, + [SMALL_STATE(13685)] = 332288, + [SMALL_STATE(13686)] = 332296, + [SMALL_STATE(13687)] = 332304, + [SMALL_STATE(13688)] = 332314, + [SMALL_STATE(13689)] = 332322, + [SMALL_STATE(13690)] = 332330, + [SMALL_STATE(13691)] = 332338, + [SMALL_STATE(13692)] = 332346, + [SMALL_STATE(13693)] = 332356, + [SMALL_STATE(13694)] = 332364, + [SMALL_STATE(13695)] = 332372, + [SMALL_STATE(13696)] = 332380, + [SMALL_STATE(13697)] = 332388, + [SMALL_STATE(13698)] = 332396, + [SMALL_STATE(13699)] = 332404, + [SMALL_STATE(13700)] = 332412, + [SMALL_STATE(13701)] = 332420, + [SMALL_STATE(13702)] = 332428, + [SMALL_STATE(13703)] = 332436, + [SMALL_STATE(13704)] = 332444, + [SMALL_STATE(13705)] = 332452, + [SMALL_STATE(13706)] = 332462, + [SMALL_STATE(13707)] = 332472, + [SMALL_STATE(13708)] = 332480, + [SMALL_STATE(13709)] = 332488, + [SMALL_STATE(13710)] = 332496, + [SMALL_STATE(13711)] = 332504, + [SMALL_STATE(13712)] = 332512, + [SMALL_STATE(13713)] = 332520, + [SMALL_STATE(13714)] = 332528, + [SMALL_STATE(13715)] = 332536, + [SMALL_STATE(13716)] = 332544, + [SMALL_STATE(13717)] = 332552, + [SMALL_STATE(13718)] = 332560, + [SMALL_STATE(13719)] = 332568, + [SMALL_STATE(13720)] = 332576, + [SMALL_STATE(13721)] = 332584, + [SMALL_STATE(13722)] = 332592, + [SMALL_STATE(13723)] = 332600, + [SMALL_STATE(13724)] = 332610, + [SMALL_STATE(13725)] = 332618, + [SMALL_STATE(13726)] = 332626, + [SMALL_STATE(13727)] = 332634, + [SMALL_STATE(13728)] = 332642, + [SMALL_STATE(13729)] = 332650, + [SMALL_STATE(13730)] = 332658, + [SMALL_STATE(13731)] = 332666, + [SMALL_STATE(13732)] = 332676, + [SMALL_STATE(13733)] = 332684, + [SMALL_STATE(13734)] = 332692, + [SMALL_STATE(13735)] = 332700, + [SMALL_STATE(13736)] = 332708, + [SMALL_STATE(13737)] = 332716, + [SMALL_STATE(13738)] = 332724, + [SMALL_STATE(13739)] = 332732, + [SMALL_STATE(13740)] = 332740, + [SMALL_STATE(13741)] = 332748, + [SMALL_STATE(13742)] = 332756, + [SMALL_STATE(13743)] = 332764, + [SMALL_STATE(13744)] = 332772, + [SMALL_STATE(13745)] = 332780, + [SMALL_STATE(13746)] = 332788, + [SMALL_STATE(13747)] = 332796, + [SMALL_STATE(13748)] = 332804, + [SMALL_STATE(13749)] = 332812, + [SMALL_STATE(13750)] = 332820, + [SMALL_STATE(13751)] = 332828, + [SMALL_STATE(13752)] = 332836, + [SMALL_STATE(13753)] = 332844, + [SMALL_STATE(13754)] = 332852, + [SMALL_STATE(13755)] = 332860, + [SMALL_STATE(13756)] = 332868, + [SMALL_STATE(13757)] = 332876, + [SMALL_STATE(13758)] = 332884, + [SMALL_STATE(13759)] = 332892, + [SMALL_STATE(13760)] = 332900, + [SMALL_STATE(13761)] = 332908, + [SMALL_STATE(13762)] = 332916, + [SMALL_STATE(13763)] = 332924, + [SMALL_STATE(13764)] = 332932, + [SMALL_STATE(13765)] = 332940, + [SMALL_STATE(13766)] = 332948, + [SMALL_STATE(13767)] = 332958, + [SMALL_STATE(13768)] = 332966, + [SMALL_STATE(13769)] = 332974, + [SMALL_STATE(13770)] = 332982, + [SMALL_STATE(13771)] = 332990, + [SMALL_STATE(13772)] = 333000, + [SMALL_STATE(13773)] = 333008, + [SMALL_STATE(13774)] = 333018, + [SMALL_STATE(13775)] = 333026, + [SMALL_STATE(13776)] = 333034, + [SMALL_STATE(13777)] = 333042, + [SMALL_STATE(13778)] = 333050, + [SMALL_STATE(13779)] = 333058, + [SMALL_STATE(13780)] = 333066, + [SMALL_STATE(13781)] = 333074, + [SMALL_STATE(13782)] = 333082, + [SMALL_STATE(13783)] = 333090, + [SMALL_STATE(13784)] = 333098, + [SMALL_STATE(13785)] = 333106, + [SMALL_STATE(13786)] = 333114, + [SMALL_STATE(13787)] = 333122, + [SMALL_STATE(13788)] = 333130, + [SMALL_STATE(13789)] = 333138, + [SMALL_STATE(13790)] = 333146, + [SMALL_STATE(13791)] = 333154, + [SMALL_STATE(13792)] = 333162, + [SMALL_STATE(13793)] = 333170, + [SMALL_STATE(13794)] = 333178, + [SMALL_STATE(13795)] = 333186, + [SMALL_STATE(13796)] = 333196, + [SMALL_STATE(13797)] = 333204, + [SMALL_STATE(13798)] = 333212, + [SMALL_STATE(13799)] = 333220, + [SMALL_STATE(13800)] = 333228, + [SMALL_STATE(13801)] = 333236, + [SMALL_STATE(13802)] = 333244, + [SMALL_STATE(13803)] = 333252, + [SMALL_STATE(13804)] = 333260, + [SMALL_STATE(13805)] = 333268, + [SMALL_STATE(13806)] = 333276, + [SMALL_STATE(13807)] = 333284, + [SMALL_STATE(13808)] = 333292, + [SMALL_STATE(13809)] = 333300, + [SMALL_STATE(13810)] = 333308, + [SMALL_STATE(13811)] = 333316, + [SMALL_STATE(13812)] = 333324, + [SMALL_STATE(13813)] = 333332, + [SMALL_STATE(13814)] = 333340, + [SMALL_STATE(13815)] = 333348, + [SMALL_STATE(13816)] = 333356, + [SMALL_STATE(13817)] = 333364, + [SMALL_STATE(13818)] = 333372, + [SMALL_STATE(13819)] = 333380, + [SMALL_STATE(13820)] = 333388, + [SMALL_STATE(13821)] = 333396, + [SMALL_STATE(13822)] = 333404, + [SMALL_STATE(13823)] = 333412, + [SMALL_STATE(13824)] = 333422, + [SMALL_STATE(13825)] = 333430, + [SMALL_STATE(13826)] = 333438, + [SMALL_STATE(13827)] = 333446, + [SMALL_STATE(13828)] = 333454, + [SMALL_STATE(13829)] = 333462, + [SMALL_STATE(13830)] = 333470, + [SMALL_STATE(13831)] = 333480, + [SMALL_STATE(13832)] = 333488, + [SMALL_STATE(13833)] = 333496, + [SMALL_STATE(13834)] = 333504, + [SMALL_STATE(13835)] = 333512, + [SMALL_STATE(13836)] = 333520, + [SMALL_STATE(13837)] = 333528, + [SMALL_STATE(13838)] = 333536, + [SMALL_STATE(13839)] = 333544, + [SMALL_STATE(13840)] = 333552, + [SMALL_STATE(13841)] = 333560, + [SMALL_STATE(13842)] = 333568, + [SMALL_STATE(13843)] = 333576, + [SMALL_STATE(13844)] = 333584, + [SMALL_STATE(13845)] = 333592, + [SMALL_STATE(13846)] = 333600, + [SMALL_STATE(13847)] = 333608, + [SMALL_STATE(13848)] = 333616, + [SMALL_STATE(13849)] = 333624, + [SMALL_STATE(13850)] = 333632, + [SMALL_STATE(13851)] = 333640, + [SMALL_STATE(13852)] = 333648, + [SMALL_STATE(13853)] = 333656, + [SMALL_STATE(13854)] = 333664, + [SMALL_STATE(13855)] = 333672, + [SMALL_STATE(13856)] = 333680, + [SMALL_STATE(13857)] = 333688, + [SMALL_STATE(13858)] = 333696, + [SMALL_STATE(13859)] = 333704, + [SMALL_STATE(13860)] = 333712, + [SMALL_STATE(13861)] = 333722, + [SMALL_STATE(13862)] = 333732, + [SMALL_STATE(13863)] = 333740, + [SMALL_STATE(13864)] = 333748, + [SMALL_STATE(13865)] = 333756, + [SMALL_STATE(13866)] = 333764, + [SMALL_STATE(13867)] = 333772, + [SMALL_STATE(13868)] = 333780, + [SMALL_STATE(13869)] = 333788, + [SMALL_STATE(13870)] = 333796, + [SMALL_STATE(13871)] = 333804, + [SMALL_STATE(13872)] = 333812, + [SMALL_STATE(13873)] = 333820, + [SMALL_STATE(13874)] = 333828, + [SMALL_STATE(13875)] = 333836, + [SMALL_STATE(13876)] = 333844, + [SMALL_STATE(13877)] = 333852, + [SMALL_STATE(13878)] = 333862, + [SMALL_STATE(13879)] = 333870, + [SMALL_STATE(13880)] = 333878, + [SMALL_STATE(13881)] = 333886, + [SMALL_STATE(13882)] = 333894, + [SMALL_STATE(13883)] = 333902, + [SMALL_STATE(13884)] = 333910, + [SMALL_STATE(13885)] = 333918, + [SMALL_STATE(13886)] = 333926, + [SMALL_STATE(13887)] = 333934, + [SMALL_STATE(13888)] = 333944, + [SMALL_STATE(13889)] = 333954, + [SMALL_STATE(13890)] = 333964, + [SMALL_STATE(13891)] = 333972, + [SMALL_STATE(13892)] = 333980, + [SMALL_STATE(13893)] = 333990, + [SMALL_STATE(13894)] = 333998, + [SMALL_STATE(13895)] = 334006, + [SMALL_STATE(13896)] = 334014, + [SMALL_STATE(13897)] = 334024, + [SMALL_STATE(13898)] = 334032, + [SMALL_STATE(13899)] = 334040, + [SMALL_STATE(13900)] = 334048, + [SMALL_STATE(13901)] = 334056, + [SMALL_STATE(13902)] = 334064, + [SMALL_STATE(13903)] = 334072, + [SMALL_STATE(13904)] = 334080, + [SMALL_STATE(13905)] = 334088, + [SMALL_STATE(13906)] = 334096, + [SMALL_STATE(13907)] = 334104, + [SMALL_STATE(13908)] = 334112, + [SMALL_STATE(13909)] = 334120, + [SMALL_STATE(13910)] = 334128, + [SMALL_STATE(13911)] = 334136, + [SMALL_STATE(13912)] = 334144, + [SMALL_STATE(13913)] = 334152, + [SMALL_STATE(13914)] = 334160, + [SMALL_STATE(13915)] = 334168, + [SMALL_STATE(13916)] = 334176, + [SMALL_STATE(13917)] = 334184, + [SMALL_STATE(13918)] = 334192, + [SMALL_STATE(13919)] = 334200, + [SMALL_STATE(13920)] = 334208, + [SMALL_STATE(13921)] = 334216, + [SMALL_STATE(13922)] = 334224, + [SMALL_STATE(13923)] = 334232, + [SMALL_STATE(13924)] = 334240, + [SMALL_STATE(13925)] = 334248, + [SMALL_STATE(13926)] = 334256, + [SMALL_STATE(13927)] = 334266, + [SMALL_STATE(13928)] = 334274, + [SMALL_STATE(13929)] = 334282, + [SMALL_STATE(13930)] = 334290, + [SMALL_STATE(13931)] = 334300, + [SMALL_STATE(13932)] = 334308, + [SMALL_STATE(13933)] = 334316, + [SMALL_STATE(13934)] = 334324, + [SMALL_STATE(13935)] = 334334, + [SMALL_STATE(13936)] = 334342, + [SMALL_STATE(13937)] = 334350, + [SMALL_STATE(13938)] = 334358, + [SMALL_STATE(13939)] = 334366, + [SMALL_STATE(13940)] = 334374, + [SMALL_STATE(13941)] = 334382, + [SMALL_STATE(13942)] = 334390, + [SMALL_STATE(13943)] = 334398, + [SMALL_STATE(13944)] = 334406, + [SMALL_STATE(13945)] = 334414, + [SMALL_STATE(13946)] = 334422, + [SMALL_STATE(13947)] = 334430, + [SMALL_STATE(13948)] = 334438, + [SMALL_STATE(13949)] = 334446, + [SMALL_STATE(13950)] = 334454, + [SMALL_STATE(13951)] = 334462, + [SMALL_STATE(13952)] = 334470, + [SMALL_STATE(13953)] = 334478, + [SMALL_STATE(13954)] = 334486, + [SMALL_STATE(13955)] = 334494, + [SMALL_STATE(13956)] = 334502, + [SMALL_STATE(13957)] = 334510, + [SMALL_STATE(13958)] = 334520, + [SMALL_STATE(13959)] = 334528, + [SMALL_STATE(13960)] = 334536, + [SMALL_STATE(13961)] = 334544, + [SMALL_STATE(13962)] = 334552, + [SMALL_STATE(13963)] = 334560, + [SMALL_STATE(13964)] = 334568, + [SMALL_STATE(13965)] = 334576, + [SMALL_STATE(13966)] = 334584, + [SMALL_STATE(13967)] = 334592, + [SMALL_STATE(13968)] = 334600, + [SMALL_STATE(13969)] = 334608, + [SMALL_STATE(13970)] = 334616, + [SMALL_STATE(13971)] = 334624, + [SMALL_STATE(13972)] = 334632, + [SMALL_STATE(13973)] = 334640, + [SMALL_STATE(13974)] = 334648, + [SMALL_STATE(13975)] = 334656, + [SMALL_STATE(13976)] = 334664, + [SMALL_STATE(13977)] = 334672, + [SMALL_STATE(13978)] = 334680, + [SMALL_STATE(13979)] = 334688, + [SMALL_STATE(13980)] = 334696, + [SMALL_STATE(13981)] = 334704, + [SMALL_STATE(13982)] = 334714, + [SMALL_STATE(13983)] = 334722, + [SMALL_STATE(13984)] = 334730, + [SMALL_STATE(13985)] = 334738, + [SMALL_STATE(13986)] = 334746, + [SMALL_STATE(13987)] = 334754, + [SMALL_STATE(13988)] = 334762, + [SMALL_STATE(13989)] = 334772, + [SMALL_STATE(13990)] = 334780, + [SMALL_STATE(13991)] = 334788, + [SMALL_STATE(13992)] = 334796, + [SMALL_STATE(13993)] = 334804, + [SMALL_STATE(13994)] = 334812, + [SMALL_STATE(13995)] = 334820, + [SMALL_STATE(13996)] = 334830, + [SMALL_STATE(13997)] = 334838, + [SMALL_STATE(13998)] = 334846, + [SMALL_STATE(13999)] = 334854, + [SMALL_STATE(14000)] = 334862, + [SMALL_STATE(14001)] = 334870, + [SMALL_STATE(14002)] = 334878, + [SMALL_STATE(14003)] = 334886, + [SMALL_STATE(14004)] = 334894, + [SMALL_STATE(14005)] = 334902, + [SMALL_STATE(14006)] = 334910, + [SMALL_STATE(14007)] = 334918, + [SMALL_STATE(14008)] = 334926, + [SMALL_STATE(14009)] = 334934, + [SMALL_STATE(14010)] = 334942, + [SMALL_STATE(14011)] = 334950, + [SMALL_STATE(14012)] = 334958, + [SMALL_STATE(14013)] = 334966, + [SMALL_STATE(14014)] = 334974, + [SMALL_STATE(14015)] = 334982, + [SMALL_STATE(14016)] = 334990, + [SMALL_STATE(14017)] = 334998, + [SMALL_STATE(14018)] = 335006, + [SMALL_STATE(14019)] = 335014, + [SMALL_STATE(14020)] = 335022, + [SMALL_STATE(14021)] = 335030, + [SMALL_STATE(14022)] = 335038, + [SMALL_STATE(14023)] = 335046, + [SMALL_STATE(14024)] = 335054, + [SMALL_STATE(14025)] = 335062, + [SMALL_STATE(14026)] = 335072, + [SMALL_STATE(14027)] = 335080, + [SMALL_STATE(14028)] = 335088, + [SMALL_STATE(14029)] = 335096, + [SMALL_STATE(14030)] = 335104, + [SMALL_STATE(14031)] = 335112, + [SMALL_STATE(14032)] = 335120, + [SMALL_STATE(14033)] = 335128, + [SMALL_STATE(14034)] = 335136, + [SMALL_STATE(14035)] = 335144, + [SMALL_STATE(14036)] = 335152, + [SMALL_STATE(14037)] = 335160, + [SMALL_STATE(14038)] = 335170, + [SMALL_STATE(14039)] = 335180, + [SMALL_STATE(14040)] = 335188, + [SMALL_STATE(14041)] = 335196, + [SMALL_STATE(14042)] = 335204, + [SMALL_STATE(14043)] = 335212, + [SMALL_STATE(14044)] = 335220, + [SMALL_STATE(14045)] = 335228, + [SMALL_STATE(14046)] = 335236, + [SMALL_STATE(14047)] = 335244, + [SMALL_STATE(14048)] = 335252, + [SMALL_STATE(14049)] = 335260, + [SMALL_STATE(14050)] = 335268, + [SMALL_STATE(14051)] = 335276, + [SMALL_STATE(14052)] = 335284, + [SMALL_STATE(14053)] = 335292, + [SMALL_STATE(14054)] = 335302, + [SMALL_STATE(14055)] = 335310, + [SMALL_STATE(14056)] = 335318, + [SMALL_STATE(14057)] = 335326, + [SMALL_STATE(14058)] = 335334, + [SMALL_STATE(14059)] = 335342, + [SMALL_STATE(14060)] = 335350, + [SMALL_STATE(14061)] = 335358, + [SMALL_STATE(14062)] = 335366, + [SMALL_STATE(14063)] = 335374, + [SMALL_STATE(14064)] = 335384, + [SMALL_STATE(14065)] = 335392, + [SMALL_STATE(14066)] = 335400, + [SMALL_STATE(14067)] = 335408, + [SMALL_STATE(14068)] = 335416, + [SMALL_STATE(14069)] = 335424, + [SMALL_STATE(14070)] = 335432, + [SMALL_STATE(14071)] = 335440, + [SMALL_STATE(14072)] = 335448, + [SMALL_STATE(14073)] = 335456, + [SMALL_STATE(14074)] = 335464, + [SMALL_STATE(14075)] = 335472, + [SMALL_STATE(14076)] = 335480, + [SMALL_STATE(14077)] = 335488, + [SMALL_STATE(14078)] = 335496, + [SMALL_STATE(14079)] = 335504, + [SMALL_STATE(14080)] = 335512, + [SMALL_STATE(14081)] = 335520, + [SMALL_STATE(14082)] = 335528, + [SMALL_STATE(14083)] = 335536, + [SMALL_STATE(14084)] = 335544, + [SMALL_STATE(14085)] = 335552, + [SMALL_STATE(14086)] = 335562, + [SMALL_STATE(14087)] = 335570, + [SMALL_STATE(14088)] = 335578, + [SMALL_STATE(14089)] = 335586, + [SMALL_STATE(14090)] = 335594, + [SMALL_STATE(14091)] = 335602, + [SMALL_STATE(14092)] = 335610, + [SMALL_STATE(14093)] = 335618, + [SMALL_STATE(14094)] = 335626, + [SMALL_STATE(14095)] = 335634, + [SMALL_STATE(14096)] = 335642, + [SMALL_STATE(14097)] = 335650, + [SMALL_STATE(14098)] = 335658, + [SMALL_STATE(14099)] = 335666, + [SMALL_STATE(14100)] = 335674, + [SMALL_STATE(14101)] = 335682, + [SMALL_STATE(14102)] = 335690, + [SMALL_STATE(14103)] = 335698, + [SMALL_STATE(14104)] = 335706, + [SMALL_STATE(14105)] = 335714, + [SMALL_STATE(14106)] = 335722, + [SMALL_STATE(14107)] = 335732, + [SMALL_STATE(14108)] = 335740, + [SMALL_STATE(14109)] = 335748, + [SMALL_STATE(14110)] = 335756, + [SMALL_STATE(14111)] = 335764, + [SMALL_STATE(14112)] = 335772, + [SMALL_STATE(14113)] = 335780, + [SMALL_STATE(14114)] = 335788, + [SMALL_STATE(14115)] = 335796, + [SMALL_STATE(14116)] = 335804, + [SMALL_STATE(14117)] = 335812, + [SMALL_STATE(14118)] = 335820, + [SMALL_STATE(14119)] = 335828, + [SMALL_STATE(14120)] = 335836, + [SMALL_STATE(14121)] = 335844, + [SMALL_STATE(14122)] = 335852, + [SMALL_STATE(14123)] = 335860, + [SMALL_STATE(14124)] = 335868, + [SMALL_STATE(14125)] = 335876, + [SMALL_STATE(14126)] = 335884, + [SMALL_STATE(14127)] = 335892, + [SMALL_STATE(14128)] = 335900, + [SMALL_STATE(14129)] = 335908, + [SMALL_STATE(14130)] = 335916, + [SMALL_STATE(14131)] = 335924, + [SMALL_STATE(14132)] = 335932, + [SMALL_STATE(14133)] = 335940, + [SMALL_STATE(14134)] = 335948, + [SMALL_STATE(14135)] = 335956, + [SMALL_STATE(14136)] = 335964, + [SMALL_STATE(14137)] = 335972, + [SMALL_STATE(14138)] = 335980, + [SMALL_STATE(14139)] = 335988, + [SMALL_STATE(14140)] = 335996, + [SMALL_STATE(14141)] = 336004, + [SMALL_STATE(14142)] = 336012, + [SMALL_STATE(14143)] = 336020, + [SMALL_STATE(14144)] = 336028, + [SMALL_STATE(14145)] = 336036, + [SMALL_STATE(14146)] = 336044, + [SMALL_STATE(14147)] = 336052, + [SMALL_STATE(14148)] = 336060, + [SMALL_STATE(14149)] = 336068, + [SMALL_STATE(14150)] = 336076, + [SMALL_STATE(14151)] = 336084, + [SMALL_STATE(14152)] = 336092, + [SMALL_STATE(14153)] = 336100, + [SMALL_STATE(14154)] = 336108, + [SMALL_STATE(14155)] = 336116, + [SMALL_STATE(14156)] = 336124, + [SMALL_STATE(14157)] = 336132, + [SMALL_STATE(14158)] = 336140, + [SMALL_STATE(14159)] = 336148, + [SMALL_STATE(14160)] = 336156, + [SMALL_STATE(14161)] = 336164, + [SMALL_STATE(14162)] = 336172, + [SMALL_STATE(14163)] = 336180, + [SMALL_STATE(14164)] = 336188, + [SMALL_STATE(14165)] = 336196, + [SMALL_STATE(14166)] = 336204, + [SMALL_STATE(14167)] = 336212, + [SMALL_STATE(14168)] = 336220, + [SMALL_STATE(14169)] = 336228, + [SMALL_STATE(14170)] = 336236, + [SMALL_STATE(14171)] = 336244, + [SMALL_STATE(14172)] = 336252, + [SMALL_STATE(14173)] = 336260, + [SMALL_STATE(14174)] = 336268, + [SMALL_STATE(14175)] = 336276, + [SMALL_STATE(14176)] = 336284, + [SMALL_STATE(14177)] = 336294, + [SMALL_STATE(14178)] = 336302, + [SMALL_STATE(14179)] = 336310, + [SMALL_STATE(14180)] = 336318, + [SMALL_STATE(14181)] = 336326, + [SMALL_STATE(14182)] = 336336, + [SMALL_STATE(14183)] = 336344, + [SMALL_STATE(14184)] = 336352, + [SMALL_STATE(14185)] = 336360, + [SMALL_STATE(14186)] = 336368, + [SMALL_STATE(14187)] = 336376, + [SMALL_STATE(14188)] = 336384, + [SMALL_STATE(14189)] = 336392, + [SMALL_STATE(14190)] = 336400, + [SMALL_STATE(14191)] = 336408, + [SMALL_STATE(14192)] = 336416, + [SMALL_STATE(14193)] = 336424, + [SMALL_STATE(14194)] = 336432, + [SMALL_STATE(14195)] = 336440, + [SMALL_STATE(14196)] = 336448, + [SMALL_STATE(14197)] = 336456, + [SMALL_STATE(14198)] = 336464, + [SMALL_STATE(14199)] = 336472, + [SMALL_STATE(14200)] = 336480, + [SMALL_STATE(14201)] = 336488, + [SMALL_STATE(14202)] = 336496, + [SMALL_STATE(14203)] = 336504, + [SMALL_STATE(14204)] = 336512, + [SMALL_STATE(14205)] = 336520, + [SMALL_STATE(14206)] = 336528, + [SMALL_STATE(14207)] = 336536, + [SMALL_STATE(14208)] = 336544, + [SMALL_STATE(14209)] = 336552, + [SMALL_STATE(14210)] = 336560, + [SMALL_STATE(14211)] = 336568, + [SMALL_STATE(14212)] = 336576, + [SMALL_STATE(14213)] = 336584, + [SMALL_STATE(14214)] = 336592, + [SMALL_STATE(14215)] = 336600, + [SMALL_STATE(14216)] = 336608, + [SMALL_STATE(14217)] = 336616, + [SMALL_STATE(14218)] = 336624, + [SMALL_STATE(14219)] = 336632, + [SMALL_STATE(14220)] = 336640, + [SMALL_STATE(14221)] = 336648, + [SMALL_STATE(14222)] = 336656, + [SMALL_STATE(14223)] = 336664, + [SMALL_STATE(14224)] = 336672, + [SMALL_STATE(14225)] = 336680, + [SMALL_STATE(14226)] = 336688, + [SMALL_STATE(14227)] = 336696, + [SMALL_STATE(14228)] = 336704, + [SMALL_STATE(14229)] = 336712, + [SMALL_STATE(14230)] = 336720, + [SMALL_STATE(14231)] = 336730, + [SMALL_STATE(14232)] = 336738, + [SMALL_STATE(14233)] = 336746, + [SMALL_STATE(14234)] = 336754, + [SMALL_STATE(14235)] = 336762, + [SMALL_STATE(14236)] = 336770, + [SMALL_STATE(14237)] = 336778, + [SMALL_STATE(14238)] = 336786, + [SMALL_STATE(14239)] = 336794, + [SMALL_STATE(14240)] = 336802, + [SMALL_STATE(14241)] = 336810, + [SMALL_STATE(14242)] = 336818, + [SMALL_STATE(14243)] = 336826, + [SMALL_STATE(14244)] = 336834, + [SMALL_STATE(14245)] = 336842, + [SMALL_STATE(14246)] = 336850, + [SMALL_STATE(14247)] = 336858, + [SMALL_STATE(14248)] = 336866, + [SMALL_STATE(14249)] = 336874, + [SMALL_STATE(14250)] = 336882, + [SMALL_STATE(14251)] = 336890, + [SMALL_STATE(14252)] = 336898, + [SMALL_STATE(14253)] = 336906, + [SMALL_STATE(14254)] = 336914, + [SMALL_STATE(14255)] = 336922, + [SMALL_STATE(14256)] = 336930, + [SMALL_STATE(14257)] = 336940, + [SMALL_STATE(14258)] = 336950, + [SMALL_STATE(14259)] = 336958, + [SMALL_STATE(14260)] = 336966, + [SMALL_STATE(14261)] = 336974, + [SMALL_STATE(14262)] = 336982, + [SMALL_STATE(14263)] = 336990, + [SMALL_STATE(14264)] = 336998, + [SMALL_STATE(14265)] = 337008, + [SMALL_STATE(14266)] = 337016, + [SMALL_STATE(14267)] = 337024, + [SMALL_STATE(14268)] = 337032, + [SMALL_STATE(14269)] = 337040, + [SMALL_STATE(14270)] = 337048, + [SMALL_STATE(14271)] = 337056, + [SMALL_STATE(14272)] = 337064, + [SMALL_STATE(14273)] = 337072, + [SMALL_STATE(14274)] = 337080, + [SMALL_STATE(14275)] = 337088, + [SMALL_STATE(14276)] = 337096, + [SMALL_STATE(14277)] = 337104, + [SMALL_STATE(14278)] = 337112, + [SMALL_STATE(14279)] = 337122, + [SMALL_STATE(14280)] = 337130, + [SMALL_STATE(14281)] = 337138, + [SMALL_STATE(14282)] = 337146, + [SMALL_STATE(14283)] = 337154, + [SMALL_STATE(14284)] = 337162, + [SMALL_STATE(14285)] = 337170, + [SMALL_STATE(14286)] = 337178, + [SMALL_STATE(14287)] = 337186, + [SMALL_STATE(14288)] = 337194, + [SMALL_STATE(14289)] = 337202, + [SMALL_STATE(14290)] = 337210, + [SMALL_STATE(14291)] = 337218, + [SMALL_STATE(14292)] = 337226, + [SMALL_STATE(14293)] = 337234, + [SMALL_STATE(14294)] = 337242, + [SMALL_STATE(14295)] = 337250, + [SMALL_STATE(14296)] = 337258, + [SMALL_STATE(14297)] = 337266, + [SMALL_STATE(14298)] = 337274, + [SMALL_STATE(14299)] = 337282, + [SMALL_STATE(14300)] = 337290, + [SMALL_STATE(14301)] = 337298, + [SMALL_STATE(14302)] = 337306, + [SMALL_STATE(14303)] = 337314, + [SMALL_STATE(14304)] = 337322, + [SMALL_STATE(14305)] = 337330, + [SMALL_STATE(14306)] = 337338, + [SMALL_STATE(14307)] = 337346, + [SMALL_STATE(14308)] = 337354, + [SMALL_STATE(14309)] = 337362, + [SMALL_STATE(14310)] = 337370, + [SMALL_STATE(14311)] = 337378, + [SMALL_STATE(14312)] = 337386, + [SMALL_STATE(14313)] = 337394, + [SMALL_STATE(14314)] = 337402, + [SMALL_STATE(14315)] = 337410, + [SMALL_STATE(14316)] = 337418, + [SMALL_STATE(14317)] = 337426, + [SMALL_STATE(14318)] = 337436, + [SMALL_STATE(14319)] = 337444, + [SMALL_STATE(14320)] = 337452, + [SMALL_STATE(14321)] = 337460, + [SMALL_STATE(14322)] = 337468, + [SMALL_STATE(14323)] = 337476, + [SMALL_STATE(14324)] = 337484, + [SMALL_STATE(14325)] = 337492, + [SMALL_STATE(14326)] = 337500, + [SMALL_STATE(14327)] = 337508, + [SMALL_STATE(14328)] = 337516, + [SMALL_STATE(14329)] = 337524, + [SMALL_STATE(14330)] = 337532, + [SMALL_STATE(14331)] = 337542, + [SMALL_STATE(14332)] = 337550, + [SMALL_STATE(14333)] = 337558, + [SMALL_STATE(14334)] = 337566, + [SMALL_STATE(14335)] = 337574, + [SMALL_STATE(14336)] = 337582, + [SMALL_STATE(14337)] = 337590, + [SMALL_STATE(14338)] = 337598, + [SMALL_STATE(14339)] = 337606, + [SMALL_STATE(14340)] = 337614, + [SMALL_STATE(14341)] = 337622, + [SMALL_STATE(14342)] = 337630, + [SMALL_STATE(14343)] = 337638, + [SMALL_STATE(14344)] = 337646, + [SMALL_STATE(14345)] = 337654, + [SMALL_STATE(14346)] = 337664, + [SMALL_STATE(14347)] = 337672, + [SMALL_STATE(14348)] = 337680, + [SMALL_STATE(14349)] = 337688, + [SMALL_STATE(14350)] = 337696, + [SMALL_STATE(14351)] = 337704, + [SMALL_STATE(14352)] = 337714, + [SMALL_STATE(14353)] = 337722, + [SMALL_STATE(14354)] = 337730, + [SMALL_STATE(14355)] = 337738, + [SMALL_STATE(14356)] = 337746, + [SMALL_STATE(14357)] = 337754, + [SMALL_STATE(14358)] = 337762, + [SMALL_STATE(14359)] = 337770, + [SMALL_STATE(14360)] = 337778, + [SMALL_STATE(14361)] = 337786, + [SMALL_STATE(14362)] = 337794, + [SMALL_STATE(14363)] = 337802, + [SMALL_STATE(14364)] = 337810, + [SMALL_STATE(14365)] = 337818, + [SMALL_STATE(14366)] = 337826, + [SMALL_STATE(14367)] = 337836, + [SMALL_STATE(14368)] = 337844, + [SMALL_STATE(14369)] = 337852, + [SMALL_STATE(14370)] = 337860, + [SMALL_STATE(14371)] = 337868, + [SMALL_STATE(14372)] = 337876, + [SMALL_STATE(14373)] = 337884, + [SMALL_STATE(14374)] = 337892, + [SMALL_STATE(14375)] = 337900, + [SMALL_STATE(14376)] = 337908, + [SMALL_STATE(14377)] = 337916, + [SMALL_STATE(14378)] = 337924, + [SMALL_STATE(14379)] = 337932, + [SMALL_STATE(14380)] = 337940, + [SMALL_STATE(14381)] = 337948, + [SMALL_STATE(14382)] = 337958, + [SMALL_STATE(14383)] = 337966, + [SMALL_STATE(14384)] = 337974, + [SMALL_STATE(14385)] = 337984, + [SMALL_STATE(14386)] = 337992, + [SMALL_STATE(14387)] = 338000, + [SMALL_STATE(14388)] = 338008, + [SMALL_STATE(14389)] = 338016, + [SMALL_STATE(14390)] = 338024, + [SMALL_STATE(14391)] = 338032, + [SMALL_STATE(14392)] = 338042, + [SMALL_STATE(14393)] = 338050, + [SMALL_STATE(14394)] = 338058, + [SMALL_STATE(14395)] = 338066, + [SMALL_STATE(14396)] = 338076, + [SMALL_STATE(14397)] = 338084, + [SMALL_STATE(14398)] = 338092, + [SMALL_STATE(14399)] = 338100, + [SMALL_STATE(14400)] = 338108, + [SMALL_STATE(14401)] = 338116, + [SMALL_STATE(14402)] = 338126, + [SMALL_STATE(14403)] = 338134, + [SMALL_STATE(14404)] = 338142, + [SMALL_STATE(14405)] = 338150, + [SMALL_STATE(14406)] = 338158, + [SMALL_STATE(14407)] = 338166, + [SMALL_STATE(14408)] = 338174, + [SMALL_STATE(14409)] = 338182, + [SMALL_STATE(14410)] = 338190, + [SMALL_STATE(14411)] = 338198, + [SMALL_STATE(14412)] = 338206, + [SMALL_STATE(14413)] = 338214, + [SMALL_STATE(14414)] = 338222, + [SMALL_STATE(14415)] = 338230, + [SMALL_STATE(14416)] = 338238, + [SMALL_STATE(14417)] = 338246, + [SMALL_STATE(14418)] = 338254, + [SMALL_STATE(14419)] = 338264, + [SMALL_STATE(14420)] = 338272, + [SMALL_STATE(14421)] = 338280, + [SMALL_STATE(14422)] = 338290, + [SMALL_STATE(14423)] = 338298, + [SMALL_STATE(14424)] = 338306, + [SMALL_STATE(14425)] = 338314, + [SMALL_STATE(14426)] = 338322, + [SMALL_STATE(14427)] = 338330, + [SMALL_STATE(14428)] = 338338, + [SMALL_STATE(14429)] = 338346, + [SMALL_STATE(14430)] = 338354, + [SMALL_STATE(14431)] = 338362, + [SMALL_STATE(14432)] = 338370, + [SMALL_STATE(14433)] = 338378, + [SMALL_STATE(14434)] = 338386, + [SMALL_STATE(14435)] = 338394, + [SMALL_STATE(14436)] = 338404, + [SMALL_STATE(14437)] = 338412, + [SMALL_STATE(14438)] = 338420, + [SMALL_STATE(14439)] = 338428, + [SMALL_STATE(14440)] = 338436, + [SMALL_STATE(14441)] = 338444, + [SMALL_STATE(14442)] = 338452, + [SMALL_STATE(14443)] = 338460, + [SMALL_STATE(14444)] = 338468, + [SMALL_STATE(14445)] = 338476, + [SMALL_STATE(14446)] = 338484, + [SMALL_STATE(14447)] = 338492, + [SMALL_STATE(14448)] = 338500, + [SMALL_STATE(14449)] = 338508, + [SMALL_STATE(14450)] = 338516, + [SMALL_STATE(14451)] = 338524, + [SMALL_STATE(14452)] = 338532, + [SMALL_STATE(14453)] = 338540, + [SMALL_STATE(14454)] = 338548, + [SMALL_STATE(14455)] = 338556, + [SMALL_STATE(14456)] = 338564, + [SMALL_STATE(14457)] = 338572, + [SMALL_STATE(14458)] = 338580, + [SMALL_STATE(14459)] = 338588, + [SMALL_STATE(14460)] = 338596, + [SMALL_STATE(14461)] = 338604, + [SMALL_STATE(14462)] = 338612, + [SMALL_STATE(14463)] = 338620, + [SMALL_STATE(14464)] = 338628, + [SMALL_STATE(14465)] = 338636, + [SMALL_STATE(14466)] = 338644, + [SMALL_STATE(14467)] = 338652, + [SMALL_STATE(14468)] = 338660, + [SMALL_STATE(14469)] = 338668, + [SMALL_STATE(14470)] = 338676, + [SMALL_STATE(14471)] = 338684, + [SMALL_STATE(14472)] = 338692, + [SMALL_STATE(14473)] = 338700, + [SMALL_STATE(14474)] = 338708, + [SMALL_STATE(14475)] = 338716, + [SMALL_STATE(14476)] = 338724, + [SMALL_STATE(14477)] = 338732, + [SMALL_STATE(14478)] = 338740, + [SMALL_STATE(14479)] = 338748, + [SMALL_STATE(14480)] = 338756, + [SMALL_STATE(14481)] = 338764, + [SMALL_STATE(14482)] = 338772, + [SMALL_STATE(14483)] = 338780, + [SMALL_STATE(14484)] = 338788, + [SMALL_STATE(14485)] = 338796, + [SMALL_STATE(14486)] = 338804, + [SMALL_STATE(14487)] = 338812, + [SMALL_STATE(14488)] = 338820, + [SMALL_STATE(14489)] = 338828, + [SMALL_STATE(14490)] = 338836, + [SMALL_STATE(14491)] = 338844, + [SMALL_STATE(14492)] = 338852, + [SMALL_STATE(14493)] = 338860, + [SMALL_STATE(14494)] = 338868, + [SMALL_STATE(14495)] = 338876, + [SMALL_STATE(14496)] = 338884, + [SMALL_STATE(14497)] = 338892, + [SMALL_STATE(14498)] = 338900, + [SMALL_STATE(14499)] = 338908, + [SMALL_STATE(14500)] = 338916, + [SMALL_STATE(14501)] = 338924, + [SMALL_STATE(14502)] = 338932, + [SMALL_STATE(14503)] = 338940, + [SMALL_STATE(14504)] = 338948, + [SMALL_STATE(14505)] = 338956, + [SMALL_STATE(14506)] = 338964, + [SMALL_STATE(14507)] = 338972, + [SMALL_STATE(14508)] = 338980, + [SMALL_STATE(14509)] = 338988, + [SMALL_STATE(14510)] = 338996, + [SMALL_STATE(14511)] = 339004, + [SMALL_STATE(14512)] = 339012, + [SMALL_STATE(14513)] = 339020, + [SMALL_STATE(14514)] = 339028, + [SMALL_STATE(14515)] = 339036, + [SMALL_STATE(14516)] = 339044, + [SMALL_STATE(14517)] = 339052, + [SMALL_STATE(14518)] = 339060, + [SMALL_STATE(14519)] = 339068, + [SMALL_STATE(14520)] = 339076, + [SMALL_STATE(14521)] = 339084, + [SMALL_STATE(14522)] = 339094, + [SMALL_STATE(14523)] = 339102, + [SMALL_STATE(14524)] = 339110, + [SMALL_STATE(14525)] = 339118, + [SMALL_STATE(14526)] = 339126, + [SMALL_STATE(14527)] = 339134, + [SMALL_STATE(14528)] = 339142, + [SMALL_STATE(14529)] = 339150, + [SMALL_STATE(14530)] = 339158, + [SMALL_STATE(14531)] = 339166, + [SMALL_STATE(14532)] = 339174, + [SMALL_STATE(14533)] = 339182, + [SMALL_STATE(14534)] = 339190, + [SMALL_STATE(14535)] = 339200, + [SMALL_STATE(14536)] = 339208, + [SMALL_STATE(14537)] = 339216, + [SMALL_STATE(14538)] = 339224, + [SMALL_STATE(14539)] = 339232, + [SMALL_STATE(14540)] = 339240, + [SMALL_STATE(14541)] = 339248, + [SMALL_STATE(14542)] = 339256, + [SMALL_STATE(14543)] = 339264, + [SMALL_STATE(14544)] = 339272, + [SMALL_STATE(14545)] = 339280, + [SMALL_STATE(14546)] = 339288, + [SMALL_STATE(14547)] = 339296, + [SMALL_STATE(14548)] = 339304, + [SMALL_STATE(14549)] = 339312, + [SMALL_STATE(14550)] = 339320, + [SMALL_STATE(14551)] = 339328, + [SMALL_STATE(14552)] = 339336, + [SMALL_STATE(14553)] = 339344, + [SMALL_STATE(14554)] = 339354, + [SMALL_STATE(14555)] = 339362, + [SMALL_STATE(14556)] = 339370, + [SMALL_STATE(14557)] = 339378, + [SMALL_STATE(14558)] = 339386, + [SMALL_STATE(14559)] = 339394, + [SMALL_STATE(14560)] = 339402, + [SMALL_STATE(14561)] = 339410, + [SMALL_STATE(14562)] = 339418, + [SMALL_STATE(14563)] = 339426, + [SMALL_STATE(14564)] = 339434, + [SMALL_STATE(14565)] = 339442, + [SMALL_STATE(14566)] = 339450, + [SMALL_STATE(14567)] = 339458, + [SMALL_STATE(14568)] = 339466, + [SMALL_STATE(14569)] = 339474, + [SMALL_STATE(14570)] = 339482, + [SMALL_STATE(14571)] = 339490, + [SMALL_STATE(14572)] = 339498, + [SMALL_STATE(14573)] = 339506, + [SMALL_STATE(14574)] = 339514, + [SMALL_STATE(14575)] = 339522, + [SMALL_STATE(14576)] = 339530, + [SMALL_STATE(14577)] = 339538, + [SMALL_STATE(14578)] = 339546, + [SMALL_STATE(14579)] = 339554, + [SMALL_STATE(14580)] = 339562, + [SMALL_STATE(14581)] = 339570, + [SMALL_STATE(14582)] = 339578, + [SMALL_STATE(14583)] = 339586, + [SMALL_STATE(14584)] = 339594, + [SMALL_STATE(14585)] = 339602, + [SMALL_STATE(14586)] = 339610, + [SMALL_STATE(14587)] = 339618, + [SMALL_STATE(14588)] = 339626, + [SMALL_STATE(14589)] = 339634, + [SMALL_STATE(14590)] = 339642, + [SMALL_STATE(14591)] = 339650, + [SMALL_STATE(14592)] = 339658, + [SMALL_STATE(14593)] = 339666, + [SMALL_STATE(14594)] = 339674, + [SMALL_STATE(14595)] = 339682, + [SMALL_STATE(14596)] = 339690, + [SMALL_STATE(14597)] = 339698, + [SMALL_STATE(14598)] = 339708, + [SMALL_STATE(14599)] = 339716, + [SMALL_STATE(14600)] = 339724, + [SMALL_STATE(14601)] = 339732, + [SMALL_STATE(14602)] = 339740, + [SMALL_STATE(14603)] = 339748, + [SMALL_STATE(14604)] = 339756, + [SMALL_STATE(14605)] = 339764, + [SMALL_STATE(14606)] = 339772, + [SMALL_STATE(14607)] = 339780, + [SMALL_STATE(14608)] = 339788, + [SMALL_STATE(14609)] = 339796, + [SMALL_STATE(14610)] = 339804, + [SMALL_STATE(14611)] = 339812, + [SMALL_STATE(14612)] = 339820, + [SMALL_STATE(14613)] = 339828, + [SMALL_STATE(14614)] = 339836, + [SMALL_STATE(14615)] = 339844, + [SMALL_STATE(14616)] = 339852, + [SMALL_STATE(14617)] = 339860, + [SMALL_STATE(14618)] = 339868, + [SMALL_STATE(14619)] = 339876, + [SMALL_STATE(14620)] = 339884, + [SMALL_STATE(14621)] = 339892, + [SMALL_STATE(14622)] = 339900, + [SMALL_STATE(14623)] = 339910, + [SMALL_STATE(14624)] = 339918, + [SMALL_STATE(14625)] = 339926, + [SMALL_STATE(14626)] = 339934, + [SMALL_STATE(14627)] = 339942, + [SMALL_STATE(14628)] = 339950, + [SMALL_STATE(14629)] = 339958, + [SMALL_STATE(14630)] = 339966, + [SMALL_STATE(14631)] = 339974, + [SMALL_STATE(14632)] = 339982, + [SMALL_STATE(14633)] = 339990, + [SMALL_STATE(14634)] = 339998, + [SMALL_STATE(14635)] = 340006, + [SMALL_STATE(14636)] = 340014, + [SMALL_STATE(14637)] = 340022, + [SMALL_STATE(14638)] = 340030, + [SMALL_STATE(14639)] = 340038, + [SMALL_STATE(14640)] = 340046, + [SMALL_STATE(14641)] = 340054, + [SMALL_STATE(14642)] = 340062, + [SMALL_STATE(14643)] = 340070, + [SMALL_STATE(14644)] = 340078, + [SMALL_STATE(14645)] = 340086, + [SMALL_STATE(14646)] = 340094, + [SMALL_STATE(14647)] = 340102, + [SMALL_STATE(14648)] = 340110, + [SMALL_STATE(14649)] = 340118, + [SMALL_STATE(14650)] = 340126, + [SMALL_STATE(14651)] = 340134, + [SMALL_STATE(14652)] = 340142, + [SMALL_STATE(14653)] = 340150, + [SMALL_STATE(14654)] = 340158, + [SMALL_STATE(14655)] = 340166, + [SMALL_STATE(14656)] = 340174, + [SMALL_STATE(14657)] = 340182, + [SMALL_STATE(14658)] = 340190, + [SMALL_STATE(14659)] = 340198, + [SMALL_STATE(14660)] = 340206, + [SMALL_STATE(14661)] = 340214, + [SMALL_STATE(14662)] = 340222, + [SMALL_STATE(14663)] = 340230, + [SMALL_STATE(14664)] = 340238, + [SMALL_STATE(14665)] = 340246, + [SMALL_STATE(14666)] = 340254, + [SMALL_STATE(14667)] = 340262, + [SMALL_STATE(14668)] = 340270, + [SMALL_STATE(14669)] = 340278, + [SMALL_STATE(14670)] = 340286, + [SMALL_STATE(14671)] = 340294, + [SMALL_STATE(14672)] = 340302, + [SMALL_STATE(14673)] = 340310, + [SMALL_STATE(14674)] = 340318, + [SMALL_STATE(14675)] = 340326, + [SMALL_STATE(14676)] = 340334, + [SMALL_STATE(14677)] = 340342, + [SMALL_STATE(14678)] = 340350, + [SMALL_STATE(14679)] = 340358, + [SMALL_STATE(14680)] = 340366, + [SMALL_STATE(14681)] = 340374, + [SMALL_STATE(14682)] = 340384, + [SMALL_STATE(14683)] = 340394, + [SMALL_STATE(14684)] = 340402, + [SMALL_STATE(14685)] = 340410, + [SMALL_STATE(14686)] = 340418, + [SMALL_STATE(14687)] = 340426, + [SMALL_STATE(14688)] = 340434, + [SMALL_STATE(14689)] = 340442, + [SMALL_STATE(14690)] = 340450, + [SMALL_STATE(14691)] = 340458, + [SMALL_STATE(14692)] = 340466, + [SMALL_STATE(14693)] = 340474, + [SMALL_STATE(14694)] = 340482, + [SMALL_STATE(14695)] = 340490, + [SMALL_STATE(14696)] = 340498, + [SMALL_STATE(14697)] = 340506, + [SMALL_STATE(14698)] = 340514, + [SMALL_STATE(14699)] = 340522, + [SMALL_STATE(14700)] = 340530, + [SMALL_STATE(14701)] = 340538, + [SMALL_STATE(14702)] = 340546, + [SMALL_STATE(14703)] = 340554, + [SMALL_STATE(14704)] = 340562, + [SMALL_STATE(14705)] = 340570, + [SMALL_STATE(14706)] = 340578, + [SMALL_STATE(14707)] = 340586, + [SMALL_STATE(14708)] = 340594, + [SMALL_STATE(14709)] = 340602, + [SMALL_STATE(14710)] = 340610, + [SMALL_STATE(14711)] = 340618, + [SMALL_STATE(14712)] = 340626, + [SMALL_STATE(14713)] = 340634, + [SMALL_STATE(14714)] = 340642, + [SMALL_STATE(14715)] = 340650, + [SMALL_STATE(14716)] = 340658, + [SMALL_STATE(14717)] = 340666, + [SMALL_STATE(14718)] = 340674, + [SMALL_STATE(14719)] = 340682, + [SMALL_STATE(14720)] = 340690, + [SMALL_STATE(14721)] = 340698, + [SMALL_STATE(14722)] = 340706, + [SMALL_STATE(14723)] = 340714, + [SMALL_STATE(14724)] = 340722, + [SMALL_STATE(14725)] = 340730, + [SMALL_STATE(14726)] = 340738, + [SMALL_STATE(14727)] = 340746, + [SMALL_STATE(14728)] = 340754, + [SMALL_STATE(14729)] = 340764, + [SMALL_STATE(14730)] = 340772, + [SMALL_STATE(14731)] = 340780, + [SMALL_STATE(14732)] = 340788, + [SMALL_STATE(14733)] = 340798, + [SMALL_STATE(14734)] = 340806, + [SMALL_STATE(14735)] = 340814, + [SMALL_STATE(14736)] = 340822, + [SMALL_STATE(14737)] = 340830, + [SMALL_STATE(14738)] = 340838, + [SMALL_STATE(14739)] = 340846, + [SMALL_STATE(14740)] = 340854, + [SMALL_STATE(14741)] = 340864, + [SMALL_STATE(14742)] = 340872, + [SMALL_STATE(14743)] = 340880, + [SMALL_STATE(14744)] = 340888, + [SMALL_STATE(14745)] = 340898, + [SMALL_STATE(14746)] = 340906, + [SMALL_STATE(14747)] = 340914, + [SMALL_STATE(14748)] = 340922, + [SMALL_STATE(14749)] = 340930, + [SMALL_STATE(14750)] = 340938, + [SMALL_STATE(14751)] = 340946, + [SMALL_STATE(14752)] = 340954, + [SMALL_STATE(14753)] = 340962, + [SMALL_STATE(14754)] = 340970, + [SMALL_STATE(14755)] = 340978, + [SMALL_STATE(14756)] = 340986, + [SMALL_STATE(14757)] = 340994, + [SMALL_STATE(14758)] = 341002, + [SMALL_STATE(14759)] = 341010, + [SMALL_STATE(14760)] = 341018, + [SMALL_STATE(14761)] = 341026, + [SMALL_STATE(14762)] = 341034, + [SMALL_STATE(14763)] = 341042, + [SMALL_STATE(14764)] = 341050, + [SMALL_STATE(14765)] = 341058, + [SMALL_STATE(14766)] = 341066, + [SMALL_STATE(14767)] = 341074, + [SMALL_STATE(14768)] = 341082, + [SMALL_STATE(14769)] = 341090, + [SMALL_STATE(14770)] = 341098, + [SMALL_STATE(14771)] = 341106, + [SMALL_STATE(14772)] = 341114, + [SMALL_STATE(14773)] = 341122, + [SMALL_STATE(14774)] = 341130, + [SMALL_STATE(14775)] = 341140, + [SMALL_STATE(14776)] = 341148, + [SMALL_STATE(14777)] = 341156, + [SMALL_STATE(14778)] = 341164, + [SMALL_STATE(14779)] = 341172, + [SMALL_STATE(14780)] = 341180, + [SMALL_STATE(14781)] = 341188, + [SMALL_STATE(14782)] = 341196, + [SMALL_STATE(14783)] = 341204, + [SMALL_STATE(14784)] = 341212, + [SMALL_STATE(14785)] = 341220, + [SMALL_STATE(14786)] = 341228, + [SMALL_STATE(14787)] = 341236, + [SMALL_STATE(14788)] = 341246, + [SMALL_STATE(14789)] = 341254, + [SMALL_STATE(14790)] = 341262, + [SMALL_STATE(14791)] = 341272, + [SMALL_STATE(14792)] = 341280, + [SMALL_STATE(14793)] = 341288, + [SMALL_STATE(14794)] = 341296, + [SMALL_STATE(14795)] = 341304, + [SMALL_STATE(14796)] = 341312, + [SMALL_STATE(14797)] = 341320, + [SMALL_STATE(14798)] = 341330, + [SMALL_STATE(14799)] = 341340, + [SMALL_STATE(14800)] = 341348, + [SMALL_STATE(14801)] = 341356, + [SMALL_STATE(14802)] = 341364, + [SMALL_STATE(14803)] = 341372, + [SMALL_STATE(14804)] = 341380, + [SMALL_STATE(14805)] = 341388, + [SMALL_STATE(14806)] = 341398, + [SMALL_STATE(14807)] = 341408, + [SMALL_STATE(14808)] = 341416, + [SMALL_STATE(14809)] = 341424, + [SMALL_STATE(14810)] = 341432, + [SMALL_STATE(14811)] = 341442, + [SMALL_STATE(14812)] = 341452, + [SMALL_STATE(14813)] = 341460, + [SMALL_STATE(14814)] = 341468, + [SMALL_STATE(14815)] = 341476, + [SMALL_STATE(14816)] = 341484, + [SMALL_STATE(14817)] = 341492, + [SMALL_STATE(14818)] = 341500, + [SMALL_STATE(14819)] = 341510, + [SMALL_STATE(14820)] = 341520, + [SMALL_STATE(14821)] = 341528, + [SMALL_STATE(14822)] = 341536, + [SMALL_STATE(14823)] = 341544, + [SMALL_STATE(14824)] = 341552, + [SMALL_STATE(14825)] = 341562, + [SMALL_STATE(14826)] = 341572, + [SMALL_STATE(14827)] = 341580, + [SMALL_STATE(14828)] = 341588, + [SMALL_STATE(14829)] = 341596, + [SMALL_STATE(14830)] = 341604, + [SMALL_STATE(14831)] = 341612, + [SMALL_STATE(14832)] = 341620, + [SMALL_STATE(14833)] = 341628, + [SMALL_STATE(14834)] = 341636, + [SMALL_STATE(14835)] = 341644, + [SMALL_STATE(14836)] = 341652, + [SMALL_STATE(14837)] = 341660, + [SMALL_STATE(14838)] = 341668, + [SMALL_STATE(14839)] = 341676, + [SMALL_STATE(14840)] = 341684, + [SMALL_STATE(14841)] = 341692, + [SMALL_STATE(14842)] = 341700, + [SMALL_STATE(14843)] = 341708, + [SMALL_STATE(14844)] = 341716, + [SMALL_STATE(14845)] = 341724, + [SMALL_STATE(14846)] = 341732, + [SMALL_STATE(14847)] = 341740, + [SMALL_STATE(14848)] = 341750, + [SMALL_STATE(14849)] = 341758, + [SMALL_STATE(14850)] = 341768, + [SMALL_STATE(14851)] = 341776, + [SMALL_STATE(14852)] = 341784, + [SMALL_STATE(14853)] = 341794, + [SMALL_STATE(14854)] = 341802, + [SMALL_STATE(14855)] = 341812, + [SMALL_STATE(14856)] = 341822, + [SMALL_STATE(14857)] = 341830, + [SMALL_STATE(14858)] = 341838, + [SMALL_STATE(14859)] = 341846, + [SMALL_STATE(14860)] = 341854, + [SMALL_STATE(14861)] = 341862, + [SMALL_STATE(14862)] = 341870, + [SMALL_STATE(14863)] = 341880, + [SMALL_STATE(14864)] = 341890, + [SMALL_STATE(14865)] = 341898, + [SMALL_STATE(14866)] = 341908, + [SMALL_STATE(14867)] = 341918, + [SMALL_STATE(14868)] = 341926, + [SMALL_STATE(14869)] = 341936, + [SMALL_STATE(14870)] = 341944, + [SMALL_STATE(14871)] = 341952, + [SMALL_STATE(14872)] = 341960, + [SMALL_STATE(14873)] = 341968, + [SMALL_STATE(14874)] = 341978, + [SMALL_STATE(14875)] = 341988, + [SMALL_STATE(14876)] = 341996, + [SMALL_STATE(14877)] = 342004, + [SMALL_STATE(14878)] = 342012, + [SMALL_STATE(14879)] = 342022, + [SMALL_STATE(14880)] = 342032, + [SMALL_STATE(14881)] = 342040, + [SMALL_STATE(14882)] = 342050, + [SMALL_STATE(14883)] = 342058, + [SMALL_STATE(14884)] = 342066, + [SMALL_STATE(14885)] = 342074, + [SMALL_STATE(14886)] = 342082, + [SMALL_STATE(14887)] = 342090, + [SMALL_STATE(14888)] = 342098, + [SMALL_STATE(14889)] = 342106, + [SMALL_STATE(14890)] = 342114, + [SMALL_STATE(14891)] = 342122, + [SMALL_STATE(14892)] = 342130, + [SMALL_STATE(14893)] = 342138, + [SMALL_STATE(14894)] = 342146, + [SMALL_STATE(14895)] = 342154, + [SMALL_STATE(14896)] = 342162, + [SMALL_STATE(14897)] = 342172, + [SMALL_STATE(14898)] = 342180, + [SMALL_STATE(14899)] = 342188, + [SMALL_STATE(14900)] = 342198, + [SMALL_STATE(14901)] = 342206, + [SMALL_STATE(14902)] = 342214, + [SMALL_STATE(14903)] = 342222, + [SMALL_STATE(14904)] = 342230, + [SMALL_STATE(14905)] = 342238, + [SMALL_STATE(14906)] = 342246, + [SMALL_STATE(14907)] = 342254, + [SMALL_STATE(14908)] = 342262, + [SMALL_STATE(14909)] = 342270, + [SMALL_STATE(14910)] = 342278, + [SMALL_STATE(14911)] = 342286, + [SMALL_STATE(14912)] = 342294, + [SMALL_STATE(14913)] = 342302, + [SMALL_STATE(14914)] = 342310, + [SMALL_STATE(14915)] = 342318, + [SMALL_STATE(14916)] = 342328, + [SMALL_STATE(14917)] = 342336, + [SMALL_STATE(14918)] = 342344, + [SMALL_STATE(14919)] = 342354, + [SMALL_STATE(14920)] = 342362, + [SMALL_STATE(14921)] = 342370, + [SMALL_STATE(14922)] = 342380, + [SMALL_STATE(14923)] = 342388, + [SMALL_STATE(14924)] = 342396, + [SMALL_STATE(14925)] = 342404, + [SMALL_STATE(14926)] = 342412, + [SMALL_STATE(14927)] = 342420, + [SMALL_STATE(14928)] = 342428, + [SMALL_STATE(14929)] = 342436, + [SMALL_STATE(14930)] = 342444, + [SMALL_STATE(14931)] = 342452, + [SMALL_STATE(14932)] = 342460, + [SMALL_STATE(14933)] = 342468, + [SMALL_STATE(14934)] = 342476, + [SMALL_STATE(14935)] = 342484, + [SMALL_STATE(14936)] = 342492, + [SMALL_STATE(14937)] = 342500, + [SMALL_STATE(14938)] = 342508, + [SMALL_STATE(14939)] = 342516, + [SMALL_STATE(14940)] = 342524, + [SMALL_STATE(14941)] = 342532, + [SMALL_STATE(14942)] = 342540, + [SMALL_STATE(14943)] = 342548, + [SMALL_STATE(14944)] = 342556, + [SMALL_STATE(14945)] = 342564, + [SMALL_STATE(14946)] = 342572, + [SMALL_STATE(14947)] = 342582, + [SMALL_STATE(14948)] = 342590, + [SMALL_STATE(14949)] = 342598, + [SMALL_STATE(14950)] = 342606, + [SMALL_STATE(14951)] = 342614, + [SMALL_STATE(14952)] = 342624, + [SMALL_STATE(14953)] = 342632, + [SMALL_STATE(14954)] = 342640, + [SMALL_STATE(14955)] = 342650, + [SMALL_STATE(14956)] = 342658, + [SMALL_STATE(14957)] = 342666, + [SMALL_STATE(14958)] = 342674, + [SMALL_STATE(14959)] = 342682, + [SMALL_STATE(14960)] = 342690, + [SMALL_STATE(14961)] = 342700, + [SMALL_STATE(14962)] = 342710, + [SMALL_STATE(14963)] = 342720, + [SMALL_STATE(14964)] = 342728, + [SMALL_STATE(14965)] = 342736, + [SMALL_STATE(14966)] = 342744, + [SMALL_STATE(14967)] = 342752, + [SMALL_STATE(14968)] = 342760, + [SMALL_STATE(14969)] = 342768, + [SMALL_STATE(14970)] = 342776, + [SMALL_STATE(14971)] = 342784, + [SMALL_STATE(14972)] = 342794, + [SMALL_STATE(14973)] = 342802, + [SMALL_STATE(14974)] = 342810, + [SMALL_STATE(14975)] = 342818, + [SMALL_STATE(14976)] = 342826, + [SMALL_STATE(14977)] = 342834, + [SMALL_STATE(14978)] = 342842, + [SMALL_STATE(14979)] = 342850, + [SMALL_STATE(14980)] = 342860, + [SMALL_STATE(14981)] = 342868, + [SMALL_STATE(14982)] = 342876, + [SMALL_STATE(14983)] = 342884, + [SMALL_STATE(14984)] = 342892, + [SMALL_STATE(14985)] = 342900, + [SMALL_STATE(14986)] = 342910, + [SMALL_STATE(14987)] = 342918, + [SMALL_STATE(14988)] = 342926, + [SMALL_STATE(14989)] = 342934, + [SMALL_STATE(14990)] = 342942, + [SMALL_STATE(14991)] = 342950, + [SMALL_STATE(14992)] = 342958, + [SMALL_STATE(14993)] = 342966, + [SMALL_STATE(14994)] = 342974, + [SMALL_STATE(14995)] = 342982, + [SMALL_STATE(14996)] = 342990, + [SMALL_STATE(14997)] = 343000, + [SMALL_STATE(14998)] = 343008, + [SMALL_STATE(14999)] = 343016, + [SMALL_STATE(15000)] = 343024, + [SMALL_STATE(15001)] = 343034, + [SMALL_STATE(15002)] = 343042, + [SMALL_STATE(15003)] = 343052, + [SMALL_STATE(15004)] = 343060, + [SMALL_STATE(15005)] = 343068, + [SMALL_STATE(15006)] = 343076, + [SMALL_STATE(15007)] = 343084, + [SMALL_STATE(15008)] = 343094, + [SMALL_STATE(15009)] = 343102, + [SMALL_STATE(15010)] = 343110, + [SMALL_STATE(15011)] = 343118, + [SMALL_STATE(15012)] = 343126, + [SMALL_STATE(15013)] = 343134, + [SMALL_STATE(15014)] = 343142, + [SMALL_STATE(15015)] = 343150, + [SMALL_STATE(15016)] = 343158, + [SMALL_STATE(15017)] = 343166, + [SMALL_STATE(15018)] = 343174, + [SMALL_STATE(15019)] = 343182, + [SMALL_STATE(15020)] = 343190, + [SMALL_STATE(15021)] = 343198, + [SMALL_STATE(15022)] = 343208, + [SMALL_STATE(15023)] = 343216, + [SMALL_STATE(15024)] = 343224, + [SMALL_STATE(15025)] = 343232, + [SMALL_STATE(15026)] = 343240, + [SMALL_STATE(15027)] = 343248, + [SMALL_STATE(15028)] = 343256, + [SMALL_STATE(15029)] = 343264, + [SMALL_STATE(15030)] = 343274, + [SMALL_STATE(15031)] = 343282, + [SMALL_STATE(15032)] = 343292, + [SMALL_STATE(15033)] = 343302, + [SMALL_STATE(15034)] = 343310, + [SMALL_STATE(15035)] = 343318, + [SMALL_STATE(15036)] = 343326, + [SMALL_STATE(15037)] = 343334, + [SMALL_STATE(15038)] = 343342, + [SMALL_STATE(15039)] = 343350, + [SMALL_STATE(15040)] = 343358, + [SMALL_STATE(15041)] = 343368, + [SMALL_STATE(15042)] = 343376, + [SMALL_STATE(15043)] = 343384, + [SMALL_STATE(15044)] = 343392, + [SMALL_STATE(15045)] = 343402, + [SMALL_STATE(15046)] = 343410, + [SMALL_STATE(15047)] = 343418, + [SMALL_STATE(15048)] = 343426, + [SMALL_STATE(15049)] = 343434, + [SMALL_STATE(15050)] = 343442, + [SMALL_STATE(15051)] = 343450, + [SMALL_STATE(15052)] = 343458, + [SMALL_STATE(15053)] = 343466, + [SMALL_STATE(15054)] = 343474, + [SMALL_STATE(15055)] = 343482, + [SMALL_STATE(15056)] = 343490, + [SMALL_STATE(15057)] = 343498, + [SMALL_STATE(15058)] = 343506, + [SMALL_STATE(15059)] = 343514, + [SMALL_STATE(15060)] = 343522, + [SMALL_STATE(15061)] = 343530, + [SMALL_STATE(15062)] = 343538, + [SMALL_STATE(15063)] = 343546, + [SMALL_STATE(15064)] = 343556, + [SMALL_STATE(15065)] = 343564, + [SMALL_STATE(15066)] = 343572, + [SMALL_STATE(15067)] = 343582, + [SMALL_STATE(15068)] = 343590, + [SMALL_STATE(15069)] = 343600, + [SMALL_STATE(15070)] = 343608, + [SMALL_STATE(15071)] = 343618, + [SMALL_STATE(15072)] = 343628, + [SMALL_STATE(15073)] = 343636, + [SMALL_STATE(15074)] = 343644, + [SMALL_STATE(15075)] = 343652, + [SMALL_STATE(15076)] = 343660, + [SMALL_STATE(15077)] = 343668, + [SMALL_STATE(15078)] = 343676, + [SMALL_STATE(15079)] = 343686, + [SMALL_STATE(15080)] = 343696, + [SMALL_STATE(15081)] = 343704, + [SMALL_STATE(15082)] = 343712, + [SMALL_STATE(15083)] = 343720, + [SMALL_STATE(15084)] = 343730, + [SMALL_STATE(15085)] = 343738, + [SMALL_STATE(15086)] = 343746, + [SMALL_STATE(15087)] = 343754, + [SMALL_STATE(15088)] = 343762, + [SMALL_STATE(15089)] = 343770, + [SMALL_STATE(15090)] = 343778, + [SMALL_STATE(15091)] = 343786, + [SMALL_STATE(15092)] = 343796, + [SMALL_STATE(15093)] = 343804, + [SMALL_STATE(15094)] = 343812, + [SMALL_STATE(15095)] = 343820, + [SMALL_STATE(15096)] = 343828, + [SMALL_STATE(15097)] = 343836, + [SMALL_STATE(15098)] = 343844, + [SMALL_STATE(15099)] = 343854, + [SMALL_STATE(15100)] = 343864, + [SMALL_STATE(15101)] = 343874, + [SMALL_STATE(15102)] = 343882, + [SMALL_STATE(15103)] = 343892, + [SMALL_STATE(15104)] = 343900, + [SMALL_STATE(15105)] = 343908, + [SMALL_STATE(15106)] = 343916, + [SMALL_STATE(15107)] = 343926, + [SMALL_STATE(15108)] = 343934, + [SMALL_STATE(15109)] = 343942, + [SMALL_STATE(15110)] = 343952, + [SMALL_STATE(15111)] = 343960, + [SMALL_STATE(15112)] = 343968, + [SMALL_STATE(15113)] = 343976, + [SMALL_STATE(15114)] = 343984, + [SMALL_STATE(15115)] = 343992, + [SMALL_STATE(15116)] = 344000, + [SMALL_STATE(15117)] = 344008, + [SMALL_STATE(15118)] = 344018, + [SMALL_STATE(15119)] = 344028, + [SMALL_STATE(15120)] = 344036, + [SMALL_STATE(15121)] = 344044, + [SMALL_STATE(15122)] = 344052, + [SMALL_STATE(15123)] = 344062, + [SMALL_STATE(15124)] = 344072, + [SMALL_STATE(15125)] = 344080, + [SMALL_STATE(15126)] = 344088, + [SMALL_STATE(15127)] = 344096, + [SMALL_STATE(15128)] = 344104, + [SMALL_STATE(15129)] = 344112, + [SMALL_STATE(15130)] = 344120, + [SMALL_STATE(15131)] = 344128, + [SMALL_STATE(15132)] = 344136, + [SMALL_STATE(15133)] = 344144, + [SMALL_STATE(15134)] = 344152, + [SMALL_STATE(15135)] = 344160, + [SMALL_STATE(15136)] = 344168, + [SMALL_STATE(15137)] = 344178, + [SMALL_STATE(15138)] = 344186, + [SMALL_STATE(15139)] = 344196, + [SMALL_STATE(15140)] = 344206, + [SMALL_STATE(15141)] = 344214, + [SMALL_STATE(15142)] = 344222, + [SMALL_STATE(15143)] = 344230, + [SMALL_STATE(15144)] = 344240, + [SMALL_STATE(15145)] = 344250, + [SMALL_STATE(15146)] = 344258, + [SMALL_STATE(15147)] = 344268, + [SMALL_STATE(15148)] = 344278, + [SMALL_STATE(15149)] = 344286, + [SMALL_STATE(15150)] = 344294, + [SMALL_STATE(15151)] = 344302, + [SMALL_STATE(15152)] = 344310, + [SMALL_STATE(15153)] = 344318, + [SMALL_STATE(15154)] = 344326, + [SMALL_STATE(15155)] = 344334, + [SMALL_STATE(15156)] = 344342, + [SMALL_STATE(15157)] = 344352, + [SMALL_STATE(15158)] = 344362, + [SMALL_STATE(15159)] = 344370, + [SMALL_STATE(15160)] = 344378, + [SMALL_STATE(15161)] = 344386, + [SMALL_STATE(15162)] = 344396, + [SMALL_STATE(15163)] = 344404, + [SMALL_STATE(15164)] = 344412, + [SMALL_STATE(15165)] = 344422, + [SMALL_STATE(15166)] = 344430, + [SMALL_STATE(15167)] = 344438, + [SMALL_STATE(15168)] = 344446, + [SMALL_STATE(15169)] = 344454, + [SMALL_STATE(15170)] = 344462, + [SMALL_STATE(15171)] = 344470, + [SMALL_STATE(15172)] = 344478, + [SMALL_STATE(15173)] = 344486, + [SMALL_STATE(15174)] = 344494, + [SMALL_STATE(15175)] = 344502, + [SMALL_STATE(15176)] = 344510, + [SMALL_STATE(15177)] = 344518, + [SMALL_STATE(15178)] = 344526, + [SMALL_STATE(15179)] = 344534, + [SMALL_STATE(15180)] = 344542, + [SMALL_STATE(15181)] = 344550, + [SMALL_STATE(15182)] = 344558, + [SMALL_STATE(15183)] = 344566, + [SMALL_STATE(15184)] = 344574, + [SMALL_STATE(15185)] = 344582, + [SMALL_STATE(15186)] = 344590, + [SMALL_STATE(15187)] = 344598, + [SMALL_STATE(15188)] = 344606, + [SMALL_STATE(15189)] = 344614, + [SMALL_STATE(15190)] = 344622, + [SMALL_STATE(15191)] = 344630, + [SMALL_STATE(15192)] = 344640, + [SMALL_STATE(15193)] = 344648, + [SMALL_STATE(15194)] = 344656, + [SMALL_STATE(15195)] = 344664, + [SMALL_STATE(15196)] = 344674, + [SMALL_STATE(15197)] = 344682, + [SMALL_STATE(15198)] = 344690, + [SMALL_STATE(15199)] = 344698, + [SMALL_STATE(15200)] = 344706, + [SMALL_STATE(15201)] = 344714, + [SMALL_STATE(15202)] = 344722, + [SMALL_STATE(15203)] = 344730, + [SMALL_STATE(15204)] = 344738, + [SMALL_STATE(15205)] = 344746, + [SMALL_STATE(15206)] = 344754, + [SMALL_STATE(15207)] = 344762, + [SMALL_STATE(15208)] = 344770, + [SMALL_STATE(15209)] = 344778, + [SMALL_STATE(15210)] = 344786, + [SMALL_STATE(15211)] = 344794, + [SMALL_STATE(15212)] = 344804, + [SMALL_STATE(15213)] = 344812, + [SMALL_STATE(15214)] = 344822, + [SMALL_STATE(15215)] = 344830, + [SMALL_STATE(15216)] = 344838, + [SMALL_STATE(15217)] = 344846, + [SMALL_STATE(15218)] = 344854, + [SMALL_STATE(15219)] = 344862, + [SMALL_STATE(15220)] = 344870, + [SMALL_STATE(15221)] = 344878, + [SMALL_STATE(15222)] = 344886, + [SMALL_STATE(15223)] = 344894, + [SMALL_STATE(15224)] = 344902, + [SMALL_STATE(15225)] = 344910, + [SMALL_STATE(15226)] = 344918, + [SMALL_STATE(15227)] = 344926, + [SMALL_STATE(15228)] = 344934, + [SMALL_STATE(15229)] = 344942, + [SMALL_STATE(15230)] = 344952, + [SMALL_STATE(15231)] = 344960, + [SMALL_STATE(15232)] = 344968, + [SMALL_STATE(15233)] = 344976, + [SMALL_STATE(15234)] = 344984, + [SMALL_STATE(15235)] = 344992, +}; + +static const TSParseActionEntry ts_parse_actions[] = { + [0] = {.entry = {.count = 0, .reusable = false}}, + [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12224), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13787), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10981), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13823), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13592), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11772), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13053), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13053), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12405), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11004), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10667), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15040), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15070), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12466), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13860), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14176), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14732), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12141), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15007), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12143), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13351), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13368), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13315), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13929), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12197), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12738), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11056), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15117), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7908), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14876), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7835), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7706), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14903), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15118), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13046), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14855), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13877), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12156), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13363), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11058), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8291), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11029), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13364), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11455), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7836), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15202), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11005), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11256), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7889), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9993), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12053), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8420), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13182), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11065), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10027), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8312), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12422), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8293), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8685), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8685), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8283), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8286), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8421), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13723), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11068), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13365), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11439), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15161), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9936), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8125), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8686), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15067), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14532), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14927), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14456), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13904), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15140), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13749), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14420), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13973), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14043), + [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_elseif, 4, 0, 97), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_block, 1, 0, 0), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13929), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12197), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12738), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11056), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11004), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15117), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7908), + [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7835), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15118), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13046), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13860), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14176), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14855), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12141), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13877), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12156), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13363), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11058), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8291), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11029), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13364), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7742), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11455), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1259), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7836), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3863), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15202), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11005), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11256), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7889), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9993), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12053), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8420), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13182), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3792), + [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3864), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11065), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(10027), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8312), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12422), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8293), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8685), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8685), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(723), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8283), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8286), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8421), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13723), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11068), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13365), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11439), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3865), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15161), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9936), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8125), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1532), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(853), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1532), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8686), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15022), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12216), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12497), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11101), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15138), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7911), + [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_else, 2, 0, 0), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7859), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15139), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13055), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14971), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15002), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12112), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13652), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11046), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8296), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11060), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13658), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7916), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11562), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7860), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15220), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11399), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7900), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10013), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12157), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8437), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13283), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11106), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10032), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8474), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12502), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8298), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9038), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9038), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8282), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8287), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8442), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15229), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11110), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13213), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11369), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14985), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9946), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8086), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9025), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1315), + [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15022), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12216), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12497), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11101), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15138), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7911), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7859), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15139), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13055), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14971), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15002), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12112), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13652), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11046), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8296), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11060), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13658), + [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7916), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11562), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2156), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7860), + [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4378), + [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15220), + [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11399), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7900), + [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(10013), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12157), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8437), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13283), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4313), + [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4518), + [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11106), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(10032), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8474), + [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12502), + [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8298), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9038), + [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9038), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8282), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8287), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8442), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15229), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11110), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13213), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11369), + [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4520), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14985), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9946), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8086), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2177), + [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1129), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2177), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9025), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13594), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11857), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12395), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12963), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11012), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12073), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7785), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7787), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14798), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13642), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13398), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11017), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8473), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11104), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13400), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11449), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7824), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7244), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14001), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11507), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7832), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9758), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12080), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8308), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13328), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6641), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11028), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9911), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8319), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12703), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8320), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8891), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8322), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8323), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8324), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13771), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11067), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13080), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11288), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14597), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9931), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8199), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8929), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13460), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13591), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13621), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13417), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13437), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13438), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13526), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13534), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(2222), + [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_separator, 1, 0, 0), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(15003), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(374), + [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(12225), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(12557), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(11045), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(12073), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(7915), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14277), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(7866), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7864), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14301), + [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(14996), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(13274), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(13352), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(11092), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(8398), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(11066), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(13354), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(7784), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(11340), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(2435), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(7867), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(5242), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(15224), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(11005), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(11410), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(7902), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(10017), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(12057), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(51), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(8441), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(13113), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(4924), + [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(5495), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(11047), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(8476), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(8392), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(12560), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(8400), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(4786), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(9052), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(9052), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(392), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(1947), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(8401), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(8402), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(8446), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(51), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(14421), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(11051), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(13659), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(11306), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(5497), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(15068), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(9947), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(8092), + [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(2614), + [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(206), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(2215), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(2614), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_separator, 1, 0, 0), SHIFT(9039), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14453), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7878), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14478), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15003), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12225), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12557), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11045), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7915), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_branch_body, 1, 0, 0), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7866), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14996), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13274), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13352), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11092), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8398), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11066), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13354), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11340), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7867), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15224), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11410), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7902), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10017), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12057), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8441), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13113), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11047), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8476), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8392), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12560), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8400), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9052), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9052), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8401), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8402), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8446), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14421), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11051), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13659), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11306), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15068), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9947), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8092), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9039), + [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2222), + [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15003), + [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(374), + [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12225), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12557), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11045), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12073), + [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7915), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7866), + [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14996), + [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13274), + [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13352), + [1214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11092), + [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8398), + [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11066), + [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13354), + [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7784), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11340), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2435), + [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7867), + [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5242), + [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15224), + [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11005), + [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11410), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7902), + [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(10017), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12057), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8441), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13113), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4924), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5495), + [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11047), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8476), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8392), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12560), + [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8400), + [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4786), + [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9052), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9052), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1947), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8401), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8402), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8446), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14421), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11051), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13659), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11306), + [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5497), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15068), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9947), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8092), + [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2614), + [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2215), + [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2614), + [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9039), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_branch_body, 2, 0, 0), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13696), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12172), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12902), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11090), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7913), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7847), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14921), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13517), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13207), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11009), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8352), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11048), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13219), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11296), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7848), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15212), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11375), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7896), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10005), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12136), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8429), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13664), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11097), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10030), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8358), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12665), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8355), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8776), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8776), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8356), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8357), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8434), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15213), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11105), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13230), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11292), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14345), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9938), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8244), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8829), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 0), SHIFT(162), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_clause, 4, 0, 0), SHIFT(14629), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12285), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12476), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11089), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7675), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7873), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15021), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13374), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13083), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11055), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8300), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11070), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13084), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11528), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7874), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6670), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15228), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, 0, 0), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11419), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7904), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10021), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12064), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8445), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13389), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6182), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11107), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9363), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8403), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12746), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8301), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9378), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9378), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8303), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8304), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8450), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15066), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11008), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13356), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11508), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14681), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9965), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8132), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 0), SHIFT(211), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9365), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14846), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12263), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12837), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11030), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7912), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7841), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14896), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13348), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13469), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11038), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8299), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11037), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13470), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11315), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7842), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6731), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15208), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11331), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7892), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9997), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12083), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8425), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13474), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11072), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10028), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8336), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12683), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8302), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8728), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8728), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8305), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8307), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8426), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13679), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11079), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13473), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11561), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15078), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9937), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8195), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8729), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13740), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12200), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13072), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11103), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7914), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7853), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14946), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13261), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13210), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11006), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8410), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11053), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13211), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11457), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7854), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15216), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11383), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7898), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10009), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12056), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8433), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13263), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11022), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10031), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8369), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12424), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8413), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8996), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8996), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8416), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8417), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8438), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13795), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11042), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13225), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11472), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14682), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9943), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8050), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8982), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11748), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10826), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11770), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12573), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12038), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12018), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12751), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7269), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10717), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 308), SHIFT(162), + [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_clause, 4, 0, 308), SHIFT(14629), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, 0, 308), + [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 308), SHIFT(211), + [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 308), SHIFT(162), + [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_clause, 5, 0, 308), SHIFT(14629), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 5, 0, 308), + [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 308), SHIFT(211), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), + [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_clause, 3, 0, 0), SHIFT(162), + [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_case_clause, 3, 0, 0), SHIFT(14629), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, 0, 0), + [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_clause, 3, 0, 0), SHIFT(211), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13386), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13185), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13620), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13533), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13545), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13624), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), SHIFT(209), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13619), + [2037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2444), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [2043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14846), + [2046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(388), + [2049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12263), + [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12837), + [2055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11030), + [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7912), + [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7841), + [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14896), + [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13348), + [2070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13469), + [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11038), + [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8299), + [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11037), + [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13470), + [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7750), + [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11315), + [2091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2922), + [2094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7842), + [2097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6731), + [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15208), + [2103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11331), + [2106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7892), + [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9997), + [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12083), + [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8425), + [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13474), + [2121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5871), + [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6736), + [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11072), + [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(10028), + [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8336), + [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12683), + [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8302), + [2142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5544), + [2145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8728), + [2148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8728), + [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(564), + [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2162), + [2157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8305), + [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8307), + [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8426), + [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13679), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11079), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13473), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11561), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6754), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15078), + [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9937), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8195), + [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3545), + [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2506), + [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3545), + [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8729), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14646), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7891), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14848), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2537), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13782), + [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12314), + [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12526), + [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11054), + [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7771), + [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7880), + [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15044), + [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13101), + [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13264), + [2254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11049), + [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8422), + [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11074), + [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13266), + [2266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7810), + [2269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11426), + [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3176), + [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7881), + [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6982), + [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15231), + [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11427), + [2287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7906), + [2290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(10025), + [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12092), + [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8449), + [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13104), + [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6081), + [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6687), + [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11057), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8640), + [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8411), + [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12845), + [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8423), + [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5247), + [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9492), + [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9492), + [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2176), + [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8427), + [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8428), + [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8453), + [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13981), + [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11111), + [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13087), + [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11501), + [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6698), + [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14038), + [2368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9971), + [2371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8150), + [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), + [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2528), + [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), + [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9493), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13782), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12314), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12526), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11054), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7771), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7880), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15044), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13101), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13264), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11049), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8422), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11074), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13266), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11426), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7881), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15231), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11427), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7906), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10025), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12092), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8449), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13104), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11057), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8640), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8411), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12845), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8423), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9492), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9492), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8427), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8428), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8453), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13981), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11111), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13087), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11501), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6698), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14038), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9971), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8150), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9493), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), SHIFT(207), + [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2525), + [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13696), + [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(382), + [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12172), + [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12902), + [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11090), + [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7913), + [2534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7847), + [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14921), + [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13517), + [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13207), + [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11009), + [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8352), + [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11048), + [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13219), + [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7757), + [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11296), + [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3277), + [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7848), + [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6744), + [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15212), + [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11375), + [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7896), + [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(10005), + [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12136), + [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8429), + [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13664), + [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6882), + [2597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6309), + [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11097), + [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(10030), + [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8358), + [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12665), + [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8355), + [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5282), + [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8776), + [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8776), + [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [2630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8356), + [2633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8357), + [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8434), + [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15213), + [2645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11105), + [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13230), + [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11292), + [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6312), + [2657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14345), + [2660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9938), + [2663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8244), + [2666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3555), + [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [2672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2513), + [2675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3555), + [2678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8829), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13214), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), SHIFT(214), + [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2548), + [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [2696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13740), + [2699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(394), + [2702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12200), + [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13072), + [2708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11103), + [2711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7914), + [2714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7853), + [2717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14946), + [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13261), + [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13210), + [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11006), + [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8410), + [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11053), + [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13211), + [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7781), + [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11457), + [2744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2942), + [2747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7854), + [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6307), + [2753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15216), + [2756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11383), + [2759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7898), + [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(10009), + [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12056), + [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8433), + [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13263), + [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6033), + [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6705), + [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11022), + [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(10031), + [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8369), + [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12424), + [2792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8413), + [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5774), + [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8996), + [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8996), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2173), + [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8416), + [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8417), + [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8438), + [2819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13795), + [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11042), + [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13225), + [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11472), + [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6709), + [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14682), + [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9943), + [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8050), + [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), + [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(214), + [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2472), + [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), + [2858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8982), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13139), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13168), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13178), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13381), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13588), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13576), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13579), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13581), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13212), + [2879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), SHIFT(165), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), SHIFT(14629), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), SHIFT(211), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13259), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13647), + [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2439), + [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(165), + [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14629), + [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12285), + [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12476), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11089), + [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7675), + [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7873), + [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15021), + [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13374), + [2929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13083), + [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11055), + [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8300), + [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11070), + [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13084), + [2944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7804), + [2947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11528), + [2950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2998), + [2953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7874), + [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6670), + [2959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15228), + [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11419), + [2965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7904), + [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(10021), + [2971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12064), + [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8445), + [2977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13389), + [2980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6182), + [2983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6984), + [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11107), + [2989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9363), + [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8403), + [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12746), + [2998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8301), + [3001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5437), + [3004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9378), + [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9378), + [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [3013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2165), + [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8303), + [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8304), + [3022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8450), + [3025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(165), + [3028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(15066), + [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11008), + [3034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13356), + [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11508), + [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6985), + [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14681), + [3046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9965), + [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8132), + [3052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3463), + [3055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2350), + [3061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3463), + [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9365), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13586), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13424), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13468), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13411), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13482), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13543), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13237), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13276), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13535), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13582), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), SHIFT(14759), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), SHIFT(215), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__conditional_function_headers_repeat1, 6, 0, 327), + [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__conditional_sub_headers_repeat1, 6, 0, 325), + [3105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2687), + [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [3111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14759), + [3114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(442), + [3117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12395), + [3120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12963), + [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11012), + [3126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7785), + [3129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7787), + [3132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14798), + [3135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13642), + [3138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13398), + [3141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11017), + [3144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8473), + [3147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11104), + [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13400), + [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7713), + [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11449), + [3159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3671), + [3162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7824), + [3165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7244), + [3168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14001), + [3171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11507), + [3174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7832), + [3177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9758), + [3180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12080), + [3183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8308), + [3186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13328), + [3189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6641), + [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7176), + [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11028), + [3198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9911), + [3201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8319), + [3204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12703), + [3207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8320), + [3210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6077), + [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8891), + [3216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8891), + [3219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(616), + [3222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2186), + [3225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8322), + [3228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8323), + [3231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8324), + [3234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [3237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13771), + [3240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11067), + [3243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13080), + [3246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11288), + [3249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7193), + [3252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14597), + [3255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9931), + [3258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8199), + [3261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3761), + [3264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(215), + [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2824), + [3270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3761), + [3273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8929), + [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__conditional_property_headers_repeat1, 6, 0, 329), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14489), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15046), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14153), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14976), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 97), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 97), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7843), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13387), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13960), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14815), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14252), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14378), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14540), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14426), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14463), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14669), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14691), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7868), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13109), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14945), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7875), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14970), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_number_statement, 1, 0, 3), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_number_prefix, 1, 1, 29), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_number_statement, 1, 0, 3), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7849), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14853), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7888), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15020), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7855), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14895), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7886), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14995), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7861), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14920), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7695), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14422), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6893), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6737), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10038), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7417), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12249), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12990), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11108), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7882), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13463), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13186), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11094), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8271), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11043), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13189), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11387), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10514), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11355), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7894), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10001), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12078), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12226), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15173), + [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13521), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12109), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13033), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11083), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10029), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8348), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12655), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8273), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10297), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8544), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8027), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8275), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8277), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8430), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12226), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14961), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11093), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11466), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13041), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14852), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9933), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8239), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10634), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10395), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10094), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10634), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8545), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12237), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12237), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10043), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7418), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12387), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12865), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7837), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12656), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12401), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12995), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10304), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8219), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12656), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14253), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11765), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10829), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11776), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12039), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11831), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12239), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12239), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12240), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12240), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12256), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12256), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12773), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12773), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12896), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12896), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10728), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6900), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15127), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13794), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14129), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12238), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12238), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14250), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14408), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15186), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14541), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13821), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14319), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14544), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13761), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14737), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13949), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14061), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14723), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14777), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13750), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13805), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14164), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6521), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10054), + [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 1), REDUCE(sym__callable_expression, 1, 0, 1), + [3989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_expression, 1, 0, 1), REDUCE(sym__callable_expression, 1, 0, 1), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10087), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__callable_expression, 1, 0, 1), + [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__callable_expression, 1, 0, 1), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11481), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 1), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10085), + [4006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1, 0, 1), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9928), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9928), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14728), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8663), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8218), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10805), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10082), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10805), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8503), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_statement, 1, 0, 35), + [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_statement, 1, 0, 35), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignable_expression, 1, 0, 0), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12977), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12977), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8054), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11486), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8827), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8827), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15000), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9939), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8874), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10848), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10848), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debug_print_statement, 1, 0, 0), + [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debug_print_statement, 1, 0, 0), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_write_statement, 3, 0, 19), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_write_statement, 3, 0, 19), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 19), + [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 3, 0, 19), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_statement, 1, 3, 35), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_statement, 1, 3, 35), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_method_output_list, 3, 0, 153), + [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_method_output_list, 3, 0, 153), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_list, 3, 0, 153), + [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_list, 3, 0, 153), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_list, 2, 0, 99), + [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_list, 2, 0, 99), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_method_output_list, 2, 0, 99), + [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_method_output_list, 2, 0, 99), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12899), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12899), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8053), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11517), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9124), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9124), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14951), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9951), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9111), + [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__omitted_argument_sequence, 4, 0, 0), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__omitted_argument_sequence, 4, 0, 0), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__omitted_argument_sequence, 3, 0, 0), + [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__omitted_argument_sequence, 3, 0, 0), + [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__omitted_argument_sequence, 1, 0, 0), + [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__omitted_argument_sequence, 1, 0, 0), + [4178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(391), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), + [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), + [4185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(381), + [4188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(12977), + [4191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(12977), + [4194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(7764), + [4197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(11486), + [4200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(452), + [4203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(8827), + [4206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(8827), + [4209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(15000), + [4212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9939), + [4215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(8125), + [4218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(454), + [4221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(421), + [4224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(454), + [4227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(8874), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10854), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10854), + [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 30, 5), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 30, 5), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10382), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12493), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12494), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_output_call_operand, 1, 0, 5), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10382), + [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_output_call_operand, 1, 0, 5), + [4254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 30, 5), REDUCE(sym__print_output_call_operand, 1, 0, 5), + [4257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 30, 5), REDUCE(sym__print_output_call_operand, 1, 0, 5), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12942), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12942), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8201), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11253), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9153), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9153), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14257), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9953), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9140), + [4294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(570), + [4297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(569), + [4300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(12899), + [4303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(12899), + [4306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(7790), + [4309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(11517), + [4312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(582), + [4315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9124), + [4318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9124), + [4321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(14951), + [4324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9951), + [4327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(8086), + [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(580), + [4333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(591), + [4336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(580), + [4339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9111), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1, 0, 0), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12642), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12642), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10837), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10837), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10858), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10858), + [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), + [4366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13501), + [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_expression, 1, 0, 0), + [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 1, 0, 0), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13501), + [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_type_expression, 2, 0, 0), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_type_expression, 2, 0, 0), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10821), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10821), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10862), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10862), + [4399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), REDUCE(sym__callable_expression, 1, 0, 0), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10842), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10842), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 0, 0), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 0, 0), + [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 0, 0), REDUCE(sym__primary_expression, 1, 0, 0), + [4417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 0, 0), REDUCE(sym__primary_expression, 1, 0, 0), + [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 5, 0), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 5, 0), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12483), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12483), + [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 5, 0), REDUCE(sym__callable_expression, 1, 0, 0), + [4431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 5, 0), REDUCE(sym__primary_expression, 1, 0, 0), + [4434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 5, 0), REDUCE(sym__primary_expression, 1, 0, 0), + [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 17), + [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 17), + [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__signed_unary_expression, 2, 0, 0), + [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__signed_unary_expression, 2, 0, 0), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8876), + [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_addressof_expression, 2, 0, 18), + [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_addressof_expression, 2, 0, 18), + [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_number_literal, 2, 0, 19), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_number_literal, 2, 0, 19), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8875), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8877), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8878), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8879), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8879), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8880), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8881), + [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8882), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8883), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8884), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8885), + [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 0), + [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 0), + [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_of_expression, 4, 0, 87), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_of_expression, 4, 0, 87), + [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_output_expression, 1, 0, 0), + [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_output_expression, 1, 0, 0), + [4493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__print_output_expression, 1, 0, 0), REDUCE(sym__primary_expression, 1, 0, 0), + [4496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__print_output_expression, 1, 0, 0), REDUCE(sym__primary_expression, 1, 0, 0), + [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 55, 0), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 55, 0), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comparison_operand, 1, 0, 0), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operand, 1, 0, 0), + [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [4511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 55, 0), REDUCE(sym__expression, 1, 0, 0), + [4514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 55, 0), REDUCE(sym__expression, 1, 0, 0), + [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 14), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 14), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12539), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12539), + [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8055), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11275), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9520), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9520), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14395), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9973), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9521), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12593), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12593), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8076), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11396), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9646), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9646), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15032), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9979), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9647), + [4589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [4593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [4601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 1, 0, 0), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 1, 0, 0), + [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__member_property, 1, 0, 1), + [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_property, 1, 0, 1), + [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_member_expression, 2, 0, 6), + [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_member_expression, 2, 0, 6), + [4613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 1, 0, 0), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 1, 0, 0), + [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_member_expression, 3, 0, 28), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_member_expression, 3, 0, 28), + [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 46), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 46), + [4629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__comparison_operand, 1, 0, 0), + [4632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__comparison_operand, 1, 0, 0), + [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operand, 1, 0, 0), REDUCE(sym_unary_expression, 1, 0, 0), + [4638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__comparison_operand, 1, 0, 0), REDUCE(sym_unary_expression, 1, 0, 0), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12927), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12927), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), + [4647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3, 0, 47), + [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3, 0, 47), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13529), + [4653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13529), + [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12475), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12475), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10954), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10954), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13307), + [4668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13307), + [4671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_output_call_expression, 2, 0, 14), + [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_output_call_expression, 2, 0, 14), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13064), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13064), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8222), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11510), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9024), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9024), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14899), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9945), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9011), + [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_output_qualified_callable, 3, 0, 28), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12719), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12719), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8260), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11320), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9081), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9081), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15164), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9949), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9068), + [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_output_call_member_expression, 3, 0, 155), + [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_output_call_member_expression, 3, 0, 155), + [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_output_call_member_expression, 3, 0, 157), + [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_output_call_member_expression, 3, 0, 157), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12520), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12521), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [4759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 0, 1), + [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 0, 1), + [4763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 0, 1), REDUCE(sym__callable_expression, 1, 0, 1), + [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 0, 1), REDUCE(sym__primary_expression, 1, 0, 1), + [4769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 0, 1), REDUCE(sym__primary_expression, 1, 0, 1), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13063), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13063), + [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8137), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11436), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8981), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8981), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14553), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9942), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8963), + [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 0, 0), REDUCE(sym__callable_expression, 1, 0, 0), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9480), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9481), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9482), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9483), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9484), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9484), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9485), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9235), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9236), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9237), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9238), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9239), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9239), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9240), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9241), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9242), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9243), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9244), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), + [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9486), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9487), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9488), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9489), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9490), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12549), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12549), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8051), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11442), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8625), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8625), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14868), + [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9935), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8626), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12555), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12555), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), + [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), + [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9245), + [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13371), + [4967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13371), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), + [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13241), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12472), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12472), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9113), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9112), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9114), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9115), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9116), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9116), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9117), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9118), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9119), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9120), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9121), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9122), + [5008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13241), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12580), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12580), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13163), + [5019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13163), + [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12515), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12515), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9466), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9467), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9468), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9469), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9470), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9470), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9471), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9719), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9718), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9720), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9721), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9722), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9722), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9723), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9724), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9725), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9726), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9727), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9728), + [5080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(772), + [5083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(784), + [5086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(12942), + [5089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(12942), + [5092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(7792), + [5095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(11253), + [5098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(813), + [5101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9153), + [5104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9153), + [5107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(14257), + [5110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9953), + [5113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(8092), + [5116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(830), + [5119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(845), + [5122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(830), + [5125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9140), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close_statement, 1, 0, 0), + [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_close_statement, 1, 0, 0), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12738), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9472), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9473), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9474), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9475), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9476), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12587), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12588), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), + [5170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1006), + [5173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1005), + [5176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(13064), + [5179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(13064), + [5182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(7783), + [5185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(11510), + [5188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1229), + [5191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9024), + [5194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9024), + [5197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(14899), + [5200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9945), + [5203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(8244), + [5206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1157), + [5209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1446), + [5212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1157), + [5215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9011), + [5218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(872), + [5221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(917), + [5224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(12593), + [5227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(12593), + [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(7818), + [5233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(11396), + [5236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1382), + [5239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9646), + [5242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9646), + [5245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(15032), + [5248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9979), + [5251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(8150), + [5254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1347), + [5257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1058), + [5260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1347), + [5263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9647), + [5266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(989), + [5269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(988), + [5272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(13063), + [5275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(13063), + [5278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(7780), + [5281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(11436), + [5284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1156), + [5287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(8981), + [5290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(8981), + [5293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(14553), + [5296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9942), + [5299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(8195), + [5302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1213), + [5305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1307), + [5308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1213), + [5311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(8963), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(929), + [5319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(926), + [5322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(12539), + [5325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(12539), + [5328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(7812), + [5331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(11275), + [5334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1077), + [5337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9520), + [5340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9520), + [5343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(14395), + [5346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9973), + [5349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(8132), + [5352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1237), + [5355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1267), + [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1237), + [5361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9521), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12497), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [5376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1030), + [5379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1029), + [5382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(12719), + [5385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(12719), + [5388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(7788), + [5391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(11320), + [5394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1380), + [5397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9081), + [5400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9081), + [5403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(15164), + [5406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9949), + [5409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(8050), + [5412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1310), + [5415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1161), + [5418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1310), + [5421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9068), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12716), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12716), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13092), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12943), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12943), + [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13413), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), + [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_method_expression, 3, 0, 103), + [5442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__line_method_expression, 3, 0, 103), + [5444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1399), + [5447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1397), + [5450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(12549), + [5453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(12549), + [5456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(7735), + [5459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(11442), + [5462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1653), + [5465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(8625), + [5468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(8625), + [5471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(14868), + [5474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(9935), + [5477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(8199), + [5480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1662), + [5483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1998), + [5486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(1662), + [5489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(8626), + [5492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13092), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), + [5497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13413), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12592), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12592), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9141), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9142), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9143), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9144), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9145), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9145), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9146), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12448), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12449), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12489), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12489), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9147), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9148), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13410), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9149), + [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12843), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12848), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12686), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12688), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), + [5552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13187), + [5555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_expression, 1, 0, 0), REDUCE(sym__callable_expression, 1, 0, 0), + [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__callable_expression, 1, 0, 0), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12211), + [5562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__callable_expression, 1, 0, 0), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [5566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_argument_sequence, 1, 0, 0), + [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_argument_sequence, 1, 0, 0), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8688), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8689), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8690), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8691), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8692), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8692), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8693), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8694), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8695), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8696), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8697), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8698), + [5596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13410), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9150), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9151), + [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13187), + [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12582), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12582), + [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12763), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12764), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12781), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12783), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12546), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12546), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), + [5627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_value_expression, 3, 1, 0), + [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_value_expression, 3, 1, 0), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13042), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13042), + [5635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 0, 0), REDUCE(sym__expression, 1, 0, 0), + [5638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 0, 0), REDUCE(sym__expression, 1, 0, 0), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13399), + [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12506), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12506), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), + [5649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13399), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13393), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12621), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12621), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9509), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9508), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9510), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9511), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9512), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9512), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9513), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9514), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9515), + [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9516), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9517), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9518), + [5684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13393), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12900), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12900), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13140), + [5699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_argument, 3, 0, 15), + [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 3, 0, 15), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8066), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8071), + [5707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13140), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), + [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13440), + [5716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_byval_argument, 2, 0, 51), + [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_byval_argument, 2, 0, 51), + [5720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13440), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9733), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9732), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9734), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9735), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9736), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9736), + [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9737), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9738), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9739), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9740), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9741), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9742), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13633), + [5749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13633), + [5752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_argument, 3, 0, 27), + [5754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 3, 0, 27), + [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13026), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13026), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), + [5766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_output_call_expression, 2, 0, 101), + [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_output_call_expression, 2, 0, 101), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13153), + [5772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13153), + [5775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_string_length, 2, 0, 136), + [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_string_length, 2, 0, 136), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9322), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9323), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9324), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9325), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9326), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9326), + [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9327), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9328), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9329), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9330), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9331), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9332), + [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12632), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12635), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), + [5809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_output_call_binary_expression, 3, 0, 0), + [5811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_output_call_binary_expression, 3, 0, 0), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8040), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13395), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13608), + [5821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_output_member_comparison_expression, 3, 0, 156), + [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_output_member_comparison_expression, 3, 0, 156), + [5825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13395), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12754), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12754), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), + [5838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13608), + [5841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_print_argument_sequence_repeat1, 2, 0, 0), + [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_argument_sequence_repeat1, 2, 0, 0), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12425), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12425), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), + [5851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 10, 61), + [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 10, 61), + [5855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12495), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12496), + [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_output_call_operand, 1, 0, 61), + [5861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_output_call_operand, 1, 0, 61), + [5863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 10, 61), REDUCE(sym__print_output_call_operand, 1, 0, 61), + [5866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 10, 61), REDUCE(sym__print_output_call_operand, 1, 0, 61), + [5869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument, 1, 0, 0), + [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument, 1, 0, 0), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9649), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9648), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9650), + [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9651), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9652), + [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9652), + [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9653), + [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9654), + [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9655), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9656), + [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9657), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12678), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12678), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9012), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9013), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9014), + [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9015), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9016), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9016), + [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9017), + [5913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_number, 1, 0, 0), + [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_number, 1, 0, 0), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9336), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9337), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9338), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9339), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9340), + [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9340), + [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9341), + [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9342), + [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9343), + [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9344), + [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9345), + [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9346), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9070), + [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13205), + [5945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13205), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9069), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9071), + [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9072), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9073), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9073), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9074), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9075), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9076), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9077), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9078), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9079), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12771), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12771), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13481), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12511), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12511), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [5982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13481), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9127), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9126), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9128), + [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9129), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9130), + [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9130), + [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9131), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9132), + [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9133), + [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9134), + [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9135), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13546), + [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12606), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12606), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [6015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13546), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12613), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12613), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9523), + [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12629), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12629), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), + [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13119), + [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12633), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12633), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), + [6040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13119), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8966), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9522), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9524), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9525), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9526), + [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9526), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9527), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9528), + [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9529), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9530), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9531), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9532), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8965), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8967), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8968), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8969), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8969), + [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8970), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8971), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8972), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8973), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8974), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8975), + [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignable_expression, 1, 0, 1), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12528), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12528), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), + [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13251), + [6099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13251), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13268), + [6104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13268), + [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13309), + [6109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13309), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13324), + [6114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13324), + [6117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer, 2, 0, 51), + [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer, 2, 0, 51), + [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8313), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12584), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12584), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12940), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12940), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12789), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12789), + [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_record_range, 1, 0, 10), + [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_record_range, 1, 0, 10), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8537), + [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9136), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13223), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12220), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13155), + [6155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13155), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12441), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12441), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9018), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9019), + [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9020), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9021), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9022), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13097), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13065), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13065), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), + [6180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13097), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), + [6187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13223), + [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9658), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12565), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12565), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8822), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9026), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9027), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9028), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9029), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9030), + [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9030), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9031), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9032), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9033), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9034), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9035), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9036), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12464), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12464), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7463), + [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12750), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12750), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9423), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9424), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9425), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9426), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9427), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9427), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9428), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9429), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9430), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9252), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9251), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9253), + [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9254), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9255), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9255), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9256), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9257), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9258), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9259), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9260), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12419), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12419), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9295), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9294), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9296), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9297), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9298), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9298), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9299), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9300), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9301), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9302), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9303), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9304), + [6304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seek_statement, 4, 0, 158), + [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seek_statement, 4, 0, 158), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12567), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12567), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9431), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9432), + [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9433), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13138), + [6320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [6324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_put_statement, 5, 0, 203), + [6326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_put_statement, 5, 0, 203), + [6328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13138), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13306), + [6333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13306), + [6336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__condition_expression, 1, 0, 0), + [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition_expression, 1, 0, 0), + [6340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_record_range, 3, 0, 55), + [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_record_range, 3, 0, 55), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9620), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9621), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9622), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9623), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9624), + [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9624), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9625), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9626), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9627), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9628), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9629), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9630), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9537), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9536), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9538), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9539), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9540), + [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9540), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9541), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9542), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9543), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9544), + [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9545), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9546), + [6392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_put_statement, 6, 0, 254), + [6394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_put_statement, 6, 0, 254), + [6396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_statement, 9, 0, 320), + [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_statement, 9, 0, 320), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12538), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12538), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9593), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9592), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9594), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9595), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9596), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9596), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9597), + [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9598), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9599), + [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9600), + [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9601), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9602), + [6430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_statement, 10, 0, 332), + [6432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_statement, 10, 0, 332), + [6434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_statement, 11, 0, 345), + [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_statement, 11, 0, 345), + [6438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_statement, 12, 0, 355), + [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_statement, 12, 0, 355), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9691), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9690), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9692), + [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9693), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9694), + [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9694), + [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9695), + [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9696), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9697), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9698), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9699), + [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9700), + [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12522), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12523), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8629), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8630), + [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8631), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8632), + [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8632), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8633), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8634), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8635), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8636), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8637), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8638), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13044), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13044), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9776), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9775), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9777), + [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9778), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9779), + [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9779), + [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9780), + [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9781), + [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9782), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9783), + [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9784), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9785), + [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13612), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9790), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9789), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9791), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9792), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9793), + [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9793), + [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9794), + [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9795), + [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9796), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9797), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9798), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9799), + [6550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13612), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9861), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9860), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9862), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9863), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9864), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9864), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9865), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9866), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9867), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9868), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9869), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9870), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9876), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9875), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9877), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9878), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9879), + [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9879), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9880), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9881), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9882), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9883), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9884), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9885), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12557), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8062), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8067), + [6617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, 0, 110), + [6619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, 0, 110), + [6621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_const, 4, 0, 44), + [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_const, 4, 0, 44), + [6625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name_statement, 4, 0, 138), + [6627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_statement, 4, 0, 138), + [6629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_statement, 4, 0, 140), + [6631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_statement, 4, 0, 140), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13287), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9261), + [6637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13287), + [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12986), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12986), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11150), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9280), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9281), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9282), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9283), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9284), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9284), + [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9285), + [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9286), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9287), + [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9288), + [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9289), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9634), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9635), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9636), + [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9637), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9638), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9638), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9639), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9084), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9308), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9309), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9310), + [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9311), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9312), + [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9312), + [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9313), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9083), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9085), + [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9086), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9087), + [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9087), + [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9088), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9089), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9090), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9091), + [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9092), + [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9093), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9640), + [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9641), + [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9642), + [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9643), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9290), + [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9314), + [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9315), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9316), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9317), + [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9318), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9644), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8819), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8382), + [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12902), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12837), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12476), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13072), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12526), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [6810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_for_tail, 3, 0, 143), + [6812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_for_tail, 3, 0, 143), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12473), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12473), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [6822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_for_tail, 4, 0, 207), + [6824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_for_tail, 4, 0, 207), + [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_for_tail, 3, 0, 69), + [6828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_for_tail, 3, 0, 69), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12963), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_for_tail, 2, 0, 0), + [6844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_for_tail, 2, 0, 0), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13510), + [6848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_for_tail, 4, 0, 197), + [6850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_for_tail, 4, 0, 197), + [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13062), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13062), + [6856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_for_tail, 2, 0, 0), + [6858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_for_tail, 2, 0, 0), + [6860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13510), + [6863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_for_tail, 3, 0, 160), + [6865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_for_tail, 3, 0, 160), + [6867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_for_tail, 3, 0, 105), + [6869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_for_tail, 3, 0, 105), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12950), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12950), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12231), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8868), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9040), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9041), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9042), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9043), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9044), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9045), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9046), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9047), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9048), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9049), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9050), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13323), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13485), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12433), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12433), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), + [6921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13485), + [6924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13323), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13656), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13100), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13096), + [6933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13100), + [6936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13656), + [6939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13096), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9662), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9663), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9664), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9665), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9666), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9666), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9667), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9668), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9669), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9670), + [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9671), + [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9672), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13449), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12485), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12485), + [6972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13449), + [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12572), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12572), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12480), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12480), + [6989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declarator, 1, 0, 8), + [6991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 8), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10543), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12552), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12552), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8223), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8224), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13360), + [7011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13360), + [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12590), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12591), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12443), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12443), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12948), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12948), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12568), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12568), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12205), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12839), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12839), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [7042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_binary_expression, 3, 0, 0), + [7044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_binary_expression, 3, 0, 0), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7722), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9351), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7723), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9350), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9352), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9353), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9354), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9354), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9355), + [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9356), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9357), + [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9358), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9359), + [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9360), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9676), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9677), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9678), + [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9679), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9680), + [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9680), + [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9681), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8731), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8732), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8733), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8734), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8735), + [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8735), + [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8736), + [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8737), + [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8738), + [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8739), + [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8740), + [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8741), + [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7724), + [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13289), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9682), + [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9683), + [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9684), + [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9685), + [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9686), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8393), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12294), + [7134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_clause, 2, 0, 17), + [7136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_clause, 2, 0, 17), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8563), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8955), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9494), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9495), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9496), + [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9497), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9498), + [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9498), + [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9499), + [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9500), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9501), + [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9502), + [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9503), + [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9504), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8911), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9366), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9367), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9368), + [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9369), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9370), + [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9370), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9371), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9372), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9373), + [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9374), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9375), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9376), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12279), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7725), + [7200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declarator, 2, 0, 25), + [7202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 25), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8771), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8983), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8984), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8985), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8986), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8987), + [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8987), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8988), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8989), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8990), + [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8991), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8992), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8993), + [7230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_clause, 3, 0, 94), + [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_clause, 3, 0, 94), + [7234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_condition_expression, 3, 1, 0), + [7236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_condition_expression, 3, 1, 0), + [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8864), + [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12315), + [7242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13289), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12178), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12769), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12769), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8831), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8832), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8833), + [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8834), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8835), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8835), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8836), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8837), + [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8838), + [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8839), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8840), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8841), + [7281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_condition, 2, 0, 97), + [7283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_condition, 2, 0, 97), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7726), + [7287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declarator, 1, 0, 8), + [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declarator, 1, 0, 8), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12625), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12625), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), + [7299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13540), + [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8143), + [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8145), + [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), + [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8059), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8263), + [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8243), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13509), + [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12689), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12691), + [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12243), + [7322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13433), + [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12450), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12451), + [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13388), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), + [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8080), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8072), + [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8073), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9831), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9832), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9833), + [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9834), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9835), + [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9835), + [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9836), + [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9837), + [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9838), + [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9839), + [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9840), + [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9841), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12784), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12786), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9381), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9382), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9383), + [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9384), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9385), + [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9385), + [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9386), + [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9387), + [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9388), + [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9389), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9390), + [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9391), + [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13433), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9564), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9565), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9566), + [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9567), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9568), + [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9568), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9569), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9570), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9571), + [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9572), + [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9573), + [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9574), + [7417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13361), + [7420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 7, 0, 217), + [7422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 7, 0, 217), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14241), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11638), + [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10569), + [7430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 6, 0, 163), + [7432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 6, 0, 163), + [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14162), + [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12856), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12859), + [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12760), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12760), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [7446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13509), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12470), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12470), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), + [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13540), + [7457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13388), + [7460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_method_output_list, 2, 0, 100), + [7462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_method_output_list, 2, 0, 100), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13184), + [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12516), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12516), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), + [7474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_method_output_list, 1, 0, 59), + [7476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_method_output_list, 1, 0, 59), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9803), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9804), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9805), + [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9806), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9807), + [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9807), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9808), + [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9809), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9810), + [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9811), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9812), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9813), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9437), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9438), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9439), + [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9440), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9441), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9441), + [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9442), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9443), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9444), + [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9445), + [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9446), + [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9447), + [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13221), + [7530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13221), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12916), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12916), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13233), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13122), + [7543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13184), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12615), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12615), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), + [7552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13233), + [7555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 6, 0, 121), + [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 6, 0, 121), + [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13908), + [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8225), + [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8226), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8766), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9168), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9170), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9184), + [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9186), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9200), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9200), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9202), + [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9216), + [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9218), + [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9232), + [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9247), + [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9249), + [7591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 5, 0, 89), + [7593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 5, 0, 89), + [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13719), + [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12765), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12768), + [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12453), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12453), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), + [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13285), + [7609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_list, 2, 0, 100), + [7611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_list, 2, 0, 100), + [7613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13285), + [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13294), + [7618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_output_list_repeat1, 2, 0, 154), + [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_list_repeat1, 2, 0, 154), + [7622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_list_repeat1, 2, 0, 154), SHIFT_REPEAT(10343), + [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12947), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12947), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [7631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_list, 1, 0, 59), + [7633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_list, 1, 0, 59), + [7635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13122), + [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13361), + [7640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 40, 0), + [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 40, 0), + [7644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13294), + [7647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 50, 0), + [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 50, 0), + [7651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unparenthesized_argument_sequence, 1, 0, 0), + [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unparenthesized_argument_sequence, 1, 0, 0), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), + [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12604), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12604), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), + [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12597), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12597), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), + [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10538), + [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8337), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9578), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9579), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9580), + [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9581), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9582), + [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9582), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9583), + [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9584), + [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9585), + [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9586), + [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9587), + [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9588), + [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13445), + [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8370), + [7707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13445), + [7710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declarator, 3, 0, 54), + [7712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 54), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9747), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9746), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9748), + [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9749), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9750), + [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9750), + [7726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9751), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9752), + [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9753), + [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9754), + [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9755), + [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9756), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9395), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9396), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9397), + [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9398), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9399), + [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9399), + [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9400), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9762), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9761), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9763), + [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9764), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9765), + [7762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9765), + [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9766), + [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9767), + [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9768), + [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9769), + [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9770), + [7774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9771), + [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8238), + [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8241), + [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12638), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12640), + [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8404), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9266), + [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8764), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9267), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9268), + [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9269), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9270), + [7798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9270), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9271), + [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9272), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9273), + [7806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9274), + [7808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9275), + [7810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9276), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9451), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9452), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9453), + [7818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9454), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9455), + [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9455), + [7824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9456), + [7826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9401), + [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9402), + [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9403), + [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9404), + [7834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9405), + [7836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignable_expression, 1, 0, 0), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9818), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9817), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9819), + [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9820), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9821), + [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9821), + [7852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9822), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9823), + [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9824), + [7858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9825), + [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9826), + [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9827), + [7864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_statement, 4, 0, 149), + [7866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_statement, 4, 0, 149), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11550), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9846), + [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13252), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9845), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9847), + [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9848), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9849), + [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9849), + [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9850), + [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9851), + [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9852), + [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9853), + [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9854), + [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9855), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9172), + [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8618), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9173), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9174), + [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9175), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9176), + [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9176), + [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9177), + [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9178), + [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9179), + [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9180), + [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9181), + [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9182), + [7924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13252), + [7927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8907), + [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9457), + [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9458), + [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9459), + [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9460), + [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9461), + [7939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_next_variable_list, 1, 0, 0), + [7941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next_variable_list, 1, 0, 0), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11075), + [7945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_next_variable_list, 2, 0, 0), + [7947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next_variable_list, 2, 0, 0), + [7949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), + [7951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), + [7953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11075), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8412), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8886), + [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12437), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12437), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9924), + [7968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_bounds, 2, 0, 0), + [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_bounds, 2, 0, 0), + [7972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 7, 0, 165), + [7974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 7, 0, 165), + [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12898), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12898), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), + [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8947), + [7984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_bounds, 3, 0, 0), + [7986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_bounds, 3, 0, 0), + [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7752), + [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7753), + [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7754), + [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), + [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7756), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9156), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9157), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9158), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9159), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9160), + [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9160), + [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9161), + [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9162), + [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9163), + [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9164), + [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9165), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9166), + [8022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_bounds, 4, 0, 0), + [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_bounds, 4, 0, 0), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9205), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9204), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9206), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9207), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9208), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9208), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9209), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9210), + [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9211), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9212), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9213), + [8048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9214), + [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8359), + [8052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 8, 0, 226), + [8054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 8, 0, 226), + [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12976), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12976), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), + [8062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 8, 0, 267), + [8064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 8, 0, 267), + [8066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_argument_sequence, 2, 0, 0), + [8068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_argument_sequence, 2, 0, 0), + [8070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_clause, 3, 0, 17), + [8072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_clause, 3, 0, 17), + [8074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 9, 0, 301), + [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 9, 0, 301), + [8078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(8539), + [8081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_clause, 4, 0, 94), + [8083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_clause, 4, 0, 94), + [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8720), + [8087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declarator, 2, 0, 24), + [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 24), + [8091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declarator, 2, 0, 24), + [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declarator, 2, 0, 24), + [8095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13204), + [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8069), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8077), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8998), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8999), + [8109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unparenthesized_argument_sequence_repeat1, 2, 0, 0), + [8111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__unparenthesized_argument_sequence_repeat1, 2, 0, 0), + [8113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unparenthesized_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7622), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9000), + [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9001), + [8120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_sub_statement, 6, 0, 163), + [8122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_sub_statement, 6, 0, 163), + [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14159), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11629), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9002), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9002), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9003), + [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9004), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9005), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9006), + [8140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 3, 0, 0), + [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 3, 0, 0), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7721), + [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9007), + [8148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 7, 0, 167), + [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 7, 0, 167), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [8154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 42), + [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 42), + [8158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 4), + [8160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 4), + [8162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_output_list_repeat1, 2, 0, 152), + [8164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_list_repeat1, 2, 0, 152), + [8166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 43), + [8168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 43), + [8170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 3, 0, 0), + [8172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 3, 0, 0), + [8174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 4), + [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 4), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13394), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), + [8184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 6, 0, 119), + [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 6, 0, 119), + [8188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 194), + [8190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 194), + [8192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 195), + [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 195), + [8196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat2, 2, 0, 0), + [8198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 2, 0, 0), + [8200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 2, 0, 0), SHIFT_REPEAT(372), + [8203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 196), + [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 196), + [8207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14150), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11605), + [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10570), + [8213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 5, 0, 141), + [8215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 5, 0, 141), + [8217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 5, 0, 142), + [8219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 5, 0, 142), + [8221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 5, 0, 197), + [8223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 5, 0, 197), + [8225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_goto_statement, 5, 0, 200), + [8227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_goto_statement, 5, 0, 200), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13486), + [8231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_goto_statement, 5, 0, 201), + [8233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_goto_statement, 5, 0, 201), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9189), + [8237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_statement, 5, 0, 202), + [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_statement, 5, 0, 202), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9188), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9190), + [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9191), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9192), + [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9192), + [8251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9193), + [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9194), + [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9195), + [8257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9196), + [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9197), + [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9198), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11077), + [8265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_close_statement, 2, 0, 0), + [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close_statement, 2, 0, 0), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8418), + [8271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 209), + [8273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 209), + [8275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 210), + [8277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 210), + [8279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 71), + [8281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 71), + [8283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 5, 0, 71), + [8285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 5, 0, 71), + [8287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [8289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [8291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13204), + [8294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 5, 0, 211), + [8296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 5, 0, 211), + [8298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 5, 0, 212), + [8300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 5, 0, 212), + [8302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_sub_statement, 6, 0, 121), + [8304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_sub_statement, 6, 0, 121), + [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13897), + [8308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 42), + [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 42), + [8312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_method_callee, 1, 0, 1), + [8314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_method_callee, 1, 0, 1), + [8316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 7, 0, 215), + [8318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 7, 0, 215), + [8320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_erase_statement, 3, 0, 98), + [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_erase_statement, 3, 0, 98), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11100), + [8326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_sub_statement, 7, 0, 217), + [8328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_sub_statement, 7, 0, 217), + [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14237), + [8332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 4), + [8334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 4), + [8336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 43), + [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 43), + [8340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redim_statement, 4, 0, 0), + [8342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redim_statement, 4, 0, 0), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11139), + [8346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, 0, 4), + [8348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, 0, 4), + [8350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_const_declaration_repeat1, 2, 0, 0), + [8352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2, 0, 0), + [8354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13394), + [8357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_def_type_statement_repeat1, 2, 0, 0), + [8359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_def_type_statement_repeat1, 2, 0, 0), + [8361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_def_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(13472), + [8364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 8, 0, 224), + [8366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 8, 0, 224), + [8368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redim_statement, 2, 0, 0), + [8370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redim_statement, 2, 0, 0), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), + [8374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 6, 0, 247), + [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 6, 0, 247), + [8378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 6, 0, 194), + [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 6, 0, 194), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12548), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12548), + [8386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_goto_statement_repeat1, 2, 0, 148), + [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_on_goto_statement_repeat1, 2, 0, 148), + [8390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_on_goto_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(13486), + [8393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_input_statement_repeat1, 2, 0, 18), + [8395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_statement_repeat1, 2, 0, 18), + [8397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_erase_statement, 2, 0, 18), + [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_erase_statement, 2, 0, 18), + [8401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_input_statement_repeat1, 2, 0, 148), + [8403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_statement_repeat1, 2, 0, 148), + [8405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11550), + [8408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11077), + [8411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 6, 0, 258), + [8413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 6, 0, 258), + [8415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 6, 0, 259), + [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 6, 0, 259), + [8419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 6, 0, 260), + [8421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 6, 0, 260), + [8423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 6, 0, 209), + [8425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 6, 0, 209), + [8427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 6, 0, 210), + [8429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 6, 0, 210), + [8431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 6, 0, 261), + [8433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 6, 0, 261), + [8435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__omitted_argument_sequence, 5, 0, 0), + [8437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__omitted_argument_sequence, 5, 0, 0), + [8439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9008), + [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14429), + [8443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_close_statement_repeat1, 2, 0, 0), + [8445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_close_statement_repeat1, 2, 0, 0), + [8447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_close_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8418), + [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13317), + [8452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 8, 0, 269), + [8454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 8, 0, 269), + [8456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redim_statement_repeat1, 2, 0, 0), + [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redim_statement_repeat1, 2, 0, 0), + [8460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redim_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11139), + [8463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 9, 0, 278), + [8465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 9, 0, 278), + [8467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignable_expression, 1, 0, 1), + [8469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14517), + [8471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 7, 0, 293), + [8473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 7, 0, 293), + [8475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 141), + [8477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 141), + [8479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 7, 0, 258), + [8481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 7, 0, 258), + [8483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__omitted_argument_sequence, 6, 0, 0), + [8485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__omitted_argument_sequence, 6, 0, 0), + [8487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 9, 0, 299), + [8489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 9, 0, 299), + [8491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 142), + [8493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 142), + [8495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__omitted_argument_sequence, 2, 0, 0), + [8497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__omitted_argument_sequence, 2, 0, 0), + [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9873), + [8501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 0), + [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 0), + [8505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 10, 0, 316), + [8507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 10, 0, 316), + [8509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 4, 0, 0), + [8511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 4, 0, 0), + [8513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 4, 0, 105), + [8515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 4, 0, 105), + [8517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 4, 0, 143), + [8519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 4, 0, 143), + [8521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_close_statement, 3, 0, 0), + [8523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_close_statement, 3, 0, 0), + [8525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_clause, 4, 0, 17), + [8527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_clause, 4, 0, 17), + [8529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_goto_statement, 4, 0, 146), + [8531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_goto_statement, 4, 0, 146), + [8533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__argument_sequence_repeat1, 2, 0, 0), + [8535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat1, 2, 0, 0), + [8537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7603), + [8540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_goto_statement, 4, 0, 147), + [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_goto_statement, 4, 0, 147), + [8544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13317), + [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8309), + [8549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unparenthesized_argument_sequence, 2, 0, 0), + [8551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unparenthesized_argument_sequence, 2, 0, 0), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [8555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_sub_statement, 5, 0, 89), + [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_sub_statement, 5, 0, 89), + [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13714), + [8561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redim_statement, 3, 0, 0), + [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redim_statement, 3, 0, 0), + [8565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 2, 0, 9), + [8567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 2, 0, 9), + [8569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 2, 0, 0), + [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 2, 0, 0), + [8573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2, 0, 0), + [8575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2, 0, 0), + [8577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_def_type_statement, 2, 0, 11), + [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_def_type_statement, 2, 0, 11), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13472), + [8583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 2, 0, 4), + [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 2, 0, 4), + [8587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 60, 60), + [8589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unparenthesized_print_output_expression, 1, 60, 60), + [8591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 9), + [8593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 9), + [8595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 71), + [8597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 71), + [8599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 4, 0, 71), + [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 4, 0, 71), + [8603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_def_type_statement, 3, 0, 11), + [8605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_def_type_statement, 3, 0, 11), + [8607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_erase_statement_repeat1, 2, 0, 148), + [8609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_erase_statement_repeat1, 2, 0, 148), + [8611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_erase_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11100), + [8614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, 0, 0), + [8616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, 0, 0), + [8618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14341), + [8620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_clause, 5, 0, 94), + [8622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_clause, 5, 0, 94), + [8624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_statement, 7, 0, 290), + [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_statement, 7, 0, 290), + [8628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13725), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11023), + [8632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11023), + [8635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_write_statement, 2, 0, 19), + [8637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_write_statement, 2, 0, 19), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [8641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 2, 0, 7), + [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 2, 0, 7), + [8645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_next_for_body, 2, 0, 108), + [8647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_next_for_body, 2, 0, 108), + [8649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_statement, 1, 0, 31), REDUCE(sym_shared_next_for_body, 2, 0, 108), + [8652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_put_statement, 2, 0, 19), + [8654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_put_statement, 2, 0, 19), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8317), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11450), + [8660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_range_argument_list, 4, 0, 213), + [8662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_range_argument_list, 4, 0, 213), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), + [8666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_range_argument_list, 4, 0, 214), + [8668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_range_argument_list, 4, 0, 214), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), + [8672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declarator, 3, 0, 52), + [8674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declarator, 3, 0, 52), + [8676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_sub_statement, 9, 0, 301), + [8678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_sub_statement, 9, 0, 301), + [8680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coordinate_pair, 5, 0, 265), + [8682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coordinate_pair, 5, 0, 265), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9927), + [8686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_statement, 8, 0, 311), + [8688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_statement, 8, 0, 311), + [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13726), + [8692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_line_if_statement, 5, 0, 189), + [8694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_line_if_statement, 5, 0, 189), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [8698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [8702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_inline_statement_sequence_repeat1, 2, 0, 0), + [8704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_statement_sequence_repeat1, 2, 0, 0), + [8706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_statement_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(338), + [8709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [8711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [8713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__required_file_number, 1, 0, 0), + [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__required_file_number, 1, 0, 0), + [8717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unlock_statement, 2, 0, 19), + [8719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unlock_statement, 2, 0, 19), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), + [8723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_statement, 9, 0, 321), + [8725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_statement, 9, 0, 321), + [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13727), + [8729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_for_tail, 3, 0, 159), + [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_for_tail, 3, 0, 159), + [8733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_line_if_statement, 4, 0, 139), + [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_line_if_statement, 4, 0, 139), + [8737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [8739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_statement, 2, 0, 19), + [8741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_statement, 2, 0, 19), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8406), + [8745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_for_tail, 3, 0, 159), + [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_for_tail, 3, 0, 159), + [8749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_next_for_body, 2, 0, 109), + [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_next_for_body, 2, 0, 109), + [8753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_statement, 1, 0, 32), REDUCE(sym_shared_next_for_body, 2, 0, 109), + [8756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1, 0, 32), REDUCE(sym__multiline_for_tail, 2, 0, 107), + [8759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1, 0, 32), REDUCE(sym__multiline_for_tail, 2, 0, 107), + [8762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_for_tail, 2, 0, 107), + [8764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 32), + [8766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 2, 0, 19), + [8768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 19), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [8772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_statement_sequence, 2, 0, 0), + [8774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_statement_sequence, 2, 0, 0), + [8776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declarator, 3, 0, 52), + [8778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 52), + [8780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_range_argument_list, 5, 0, 266), + [8782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_range_argument_list, 5, 0, 266), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), + [8786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [8788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [8790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_erase_statement_repeat1, 2, 0, 18), + [8792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_erase_statement_repeat1, 2, 0, 18), + [8794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_input_statement, 5, 0, 192), + [8796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_input_statement, 5, 0, 192), + [8798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(8822), + [8801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declarator, 3, 0, 53), + [8803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 53), + [8805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_letter_range, 3, 0, 55), + [8807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_letter_range, 3, 0, 55), + [8809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, 0, 68), + [8811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, 0, 68), + [8813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_line_if_statement, 7, 0, 286), + [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_line_if_statement, 7, 0, 286), + [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [8819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resume_statement, 1, 0, 0), + [8821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resume_statement, 1, 0, 0), + [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [8827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_sub_statement, 8, 0, 267), + [8829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_sub_statement, 8, 0, 267), + [8831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declarator, 4, 0, 96), + [8833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 4, 0, 96), + [8835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redim_declarator, 2, 0, 8), + [8837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redim_declarator, 2, 0, 8), + [8839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_for_tail, 4, 0, 204), + [8841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_for_tail, 4, 0, 204), + [8843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_event_statement, 2, 0, 62), + [8845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_event_statement, 2, 0, 62), + [8847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_letter_range, 1, 0, 10), + [8849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_letter_range, 1, 0, 10), + [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15146), + [8853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_for_tail, 4, 0, 205), + [8855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_for_tail, 4, 0, 205), + [8857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_for_tail, 4, 0, 206), + [8859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_for_tail, 4, 0, 206), + [8861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_for_tail, 4, 0, 208), + [8863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_for_tail, 4, 0, 208), + [8865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declarator, 2, 0, 23), + [8867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 23), + [8869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_sub_statement, 8, 0, 226), + [8871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_sub_statement, 8, 0, 226), + [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12540), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12540), + [8877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_for_statement, 2, 0, 68), + [8879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_for_statement, 2, 0, 68), + [8881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), REDUCE(sym__multiline_for_tail, 2, 0, 105), + [8884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), REDUCE(sym__multiline_for_tail, 2, 0, 105), + [8887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_for_tail, 2, 0, 105), + [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), + [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12605), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12605), + [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), + [8899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_statement, 2, 0, 63), + [8901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_statement, 2, 0, 63), + [8903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_for_tail, 5, 0, 255), + [8905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_for_tail, 5, 0, 255), + [8907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_for_tail, 1, 0, 69), + [8909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_for_tail, 1, 0, 69), + [8911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_for_tail, 5, 0, 256), + [8913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_for_tail, 5, 0, 256), + [8915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1, 0, 31), REDUCE(sym__multiline_for_tail, 2, 0, 106), + [8918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1, 0, 31), REDUCE(sym__multiline_for_tail, 2, 0, 106), + [8921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_for_tail, 2, 0, 106), + [8923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [8925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [8927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_each_statement, 2, 0, 70), + [8929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_each_statement, 2, 0, 70), + [8931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_for_each_statement, 2, 0, 70), + [8933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_for_each_statement, 2, 0, 70), + [8935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_line_if_statement, 6, 0, 243), + [8937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_line_if_statement, 6, 0, 243), + [8939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_statement, 2, 0, 19), + [8941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_statement, 2, 0, 19), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8377), + [8945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_sub_statement, 7, 0, 165), + [8947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_sub_statement, 7, 0, 165), + [8949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [8951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_next_for_body, 2, 0, 0), + [8953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_next_for_body, 2, 0, 0), + [8955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_statement, 1, 0, 0), REDUCE(sym_shared_next_for_body, 2, 0, 0), + [8958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_goto_statement_repeat1, 2, 0, 57), + [8960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_on_goto_statement_repeat1, 2, 0, 57), + [8962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declarator, 2, 0, 23), + [8964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declarator, 2, 0, 23), + [8966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 3, 0, 41), + [8968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 3, 0, 41), + [8970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_goto_statement_repeat1, 2, 0, 18), + [8972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_on_goto_statement_repeat1, 2, 0, 18), + [8974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_range_argument_list, 3, 0, 55), + [8976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_range_argument_list, 3, 0, 55), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), + [8980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_statement, 6, 0, 253), + [8982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_statement, 6, 0, 253), + [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13721), + [8986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 31), + [8988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_method_callee, 1, 0, 37), + [8990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_method_callee, 1, 0, 37), + [8992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_statement, 1, 0, 31), + [8994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_statement, 1, 0, 31), + [8996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_statement, 1, 0, 32), + [8998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_statement, 1, 0, 32), + [9000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_statement, 1, 0, 33), + [9002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_statement, 1, 0, 33), + [9004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_statement, 1, 0, 34), + [9006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_statement, 1, 0, 34), + [9008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 3, 0, 20), + [9010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 3, 0, 20), + [9012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14340), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11581), + [9016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_fragment, 1, 0, 0), + [9018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_fragment, 1, 0, 0), + [9020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redim_statement, 1, 0, 0), + [9022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redim_statement, 1, 0, 0), + [9024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_statement, 1, 0, 0), + [9026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_statement, 1, 0, 0), + [9028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sub_declaration, 3, 0, 30), + [9030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sub_declaration, 3, 0, 30), + [9032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 31), + [9034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 32), + [9036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 33), + [9038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 33), + [9040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 34), + [9042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 34), + [9044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_statement, 1, 4, 36), + [9046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_statement, 1, 4, 36), + [9048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_method_callee, 1, 0, 5), + [9050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_method_callee, 1, 0, 5), + [9052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, 0, 38), + [9054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 38), + [9056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14428), + [9058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_get_declaration, 3, 0, 39), + [9060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_get_declaration, 3, 0, 39), + [9062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_let_declaration, 3, 0, 39), + [9064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_let_declaration, 3, 0, 39), + [9066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_set_declaration, 3, 0, 39), + [9068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_set_declaration, 3, 0, 39), + [9070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14516), + [9072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_if_fragment, 2, 0, 0), + [9074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_if_fragment, 2, 0, 0), + [9076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_sub_statement, 2, 0, 0), + [9078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_sub_statement, 2, 0, 0), + [9080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_print_method_expression, 2, 0, 56), + [9082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_print_method_expression, 2, 0, 56), + [9084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_load_statement, 2, 0, 18), + [9086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_load_statement, 2, 0, 18), + [9088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2, 0, 0), + [9090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2, 0, 0), + [9092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2, 0, 57), + [9094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 57), + [9096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 57), SHIFT(15008), + [9099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2, 0, 18), + [9101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 18), + [9103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 18), SHIFT(15030), + [9106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_if, 6, 0, 97), + [9108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_if, 6, 0, 97), + [9110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resume_statement, 2, 0, 0), + [9112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resume_statement, 2, 0, 0), + [9114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resume_statement, 2, 0, 57), + [9116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resume_statement, 2, 0, 57), + [9118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resume_statement, 2, 0, 18), + [9120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resume_statement, 2, 0, 18), + [9122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_if, 7, 0, 164), + [9124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_if, 7, 0, 164), + [9126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_if, 7, 0, 97), + [9128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_if, 7, 0, 97), + [9130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_if, 8, 0, 164), + [9132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_if, 8, 0, 164), + [9134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_if, 8, 0, 97), + [9136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_if, 8, 0, 97), + [9138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_if, 9, 0, 164), + [9140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_if, 9, 0, 164), + [9142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debug_print_statement, 2, 0, 58), + [9144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debug_print_statement, 2, 0, 58), + [9146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unload_statement, 2, 0, 18), + [9148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unload_statement, 2, 0, 18), + [9150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_statement, 2, 0, 64), + [9152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_statement, 2, 0, 64), + [9154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_number_prefix, 2, 1, 29), + [9156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_number_statement, 2, 0, 65), + [9158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_number_statement, 2, 0, 65), + [9160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_statement, 2, 0, 8), + [9162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_statement, 2, 0, 8), + [9164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sub_declaration, 4, 0, 66), + [9166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sub_declaration, 4, 0, 66), + [9168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sub_declaration, 4, 0, 67), + [9170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sub_declaration, 4, 0, 67), + [9172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_fragment, 2, 0, 71), + [9174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_fragment, 2, 0, 71), + [9176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_statement, 2, 0, 72), + [9178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_statement, 2, 0, 72), + [9180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unparenthesized_argument_list, 1, 0, 0), + [9182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unparenthesized_argument_list, 1, 0, 0), + [9184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_statement, 2, 2, 73), + [9186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_statement, 2, 2, 73), + [9188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__print_method_call_expression, 2, 0, 14), + [9190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__print_method_call_expression, 2, 0, 14), + [9192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_statement, 2, 0, 74), + [9194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_statement, 2, 0, 74), + [9196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_function_statement, 2, 0, 0), + [9198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_function_statement, 2, 0, 0), + [9200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 75), + [9202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 75), + [9204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 76), + [9206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 76), + [9208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_property_statement, 2, 0, 0), + [9210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_property_statement, 2, 0, 0), + [9212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_get_declaration, 4, 0, 77), + [9214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_get_declaration, 4, 0, 77), + [9216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_get_declaration, 4, 0, 78), + [9218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_get_declaration, 4, 0, 78), + [9220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_let_declaration, 4, 0, 77), + [9222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_let_declaration, 4, 0, 77), + [9224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_let_declaration, 4, 0, 78), + [9226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_let_declaration, 4, 0, 78), + [9228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_set_declaration, 4, 0, 77), + [9230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_set_declaration, 4, 0, 77), + [9232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_set_declaration, 4, 0, 78), + [9234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_set_declaration, 4, 0, 78), + [9236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_sub_declaration, 4, 0, 79), + [9238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_sub_declaration, 4, 0, 79), + [9240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_function_declaration, 4, 0, 80), + [9242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_function_declaration, 4, 0, 80), + [9244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_property_declaration, 4, 0, 81), + [9246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_property_declaration, 4, 0, 81), + [9248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 4, 0, 85), + [9250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 4, 0, 85), + [9252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, 0, 7), + [9254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, 0, 7), + [9256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 7), + [9258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 7), + [9260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_fragment, 3, 0, 97), + [9262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_fragment, 3, 0, 97), + [9264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_position, 1, 0, 0), + [9266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_position, 1, 0, 0), + [9268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_event_statement, 3, 0, 62), + [9270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_event_statement, 3, 0, 62), + [9272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_statement, 3, 0, 102), + [9274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_statement, 3, 0, 102), + [9276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qualified_print_method_expression, 3, 0, 103), + [9278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qualified_print_method_expression, 3, 0, 103), + [9280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sub_declaration, 5, 0, 104), + [9282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sub_declaration, 5, 0, 104), + [9284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end_if_fragment, 3, 0, 71), + [9286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end_if_fragment, 3, 0, 71), + [9288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 111), + [9290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 111), + [9292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_get_declaration, 5, 0, 112), + [9294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_get_declaration, 5, 0, 112), + [9296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_let_declaration, 5, 0, 112), + [9298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_let_declaration, 5, 0, 112), + [9300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_set_declaration, 5, 0, 112), + [9302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_set_declaration, 5, 0, 112), + [9304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_sub_declaration, 5, 0, 113), + [9306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_sub_declaration, 5, 0, 113), + [9308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_function_declaration, 5, 0, 114), + [9310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_function_declaration, 5, 0, 114), + [9312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_property_declaration, 5, 0, 115), + [9314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_property_declaration, 5, 0, 115), + [9316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, 0, 7), + [9318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, 0, 7), + [9320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 7), + [9322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 7), + [9324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_sub_statement, 6, 0, 119), + [9326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_sub_statement, 6, 0, 119), + [9328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 6, 0, 120), + [9330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 6, 0, 120), + [9332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 97), + [9334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 97), + [9336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_statement, 4, 0, 144), + [9338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_statement, 4, 0, 144), + [9340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_statement, 4, 0, 145), + [9342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_statement, 4, 0, 145), + [9344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_statement, 4, 0, 0), + [9346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_statement, 4, 0, 0), + [9348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 4, 0, 57), + [9350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 4, 0, 57), + [9352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 4, 0, 18), + [9354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 4, 0, 18), + [9356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_write_statement, 4, 0, 150), + [9358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_write_statement, 4, 0, 150), + [9360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_statement, 4, 0, 151), + [9362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_statement, 4, 0, 151), + [9364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_print_statement, 4, 0, 150), + [9366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 150), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13578), + [9370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unlock_statement, 4, 0, 151), + [9372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unlock_statement, 4, 0, 151), + [9374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 161), + [9376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 161), + [9378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_fragment, 4, 0, 161), + [9380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_fragment, 4, 0, 161), + [9382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, 0, 41), + [9384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, 0, 41), + [9386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 41), + [9388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 41), + [9390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_on_goto_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(13578), + [9393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 7, 0, 166), + [9395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 7, 0, 166), + [9397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_sub_statement, 7, 0, 167), + [9399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_sub_statement, 7, 0, 167), + [9401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 7, 0, 168), + [9403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 7, 0, 168), + [9405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_statement, 5, 0, 190), + [9407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_statement, 5, 0, 190), + [9409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_input_statement, 5, 0, 191), + [9411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_input_statement, 5, 0, 191), + [9413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 141), + [9415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 141), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13450), + [9419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 142), + [9421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 142), + [9423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 0), + [9425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 0), + [9427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 5, 0, 0), + [9429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 5, 0, 0), + [9431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 5, 0, 105), + [9433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 5, 0, 105), + [9435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 5, 0, 143), + [9437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 5, 0, 143), + [9439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 198), + [9441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 198), + [9443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 199), + [9445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 199), + [9447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 51), + [9449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 51), + [9451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_with_statement, 5, 0, 51), + [9453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_with_statement, 5, 0, 51), + [9455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 161), + [9457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 161), + [9459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 7, 0, 41), + [9461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 7, 0, 41), + [9463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, 0, 41), + [9465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, 0, 41), + [9467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_sub_statement, 7, 0, 215), + [9469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_sub_statement, 7, 0, 215), + [9471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 7, 0, 216), + [9473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 7, 0, 216), + [9475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_def_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(13450), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11131), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11082), + [9484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_sub_statement, 8, 0, 224), + [9486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_sub_statement, 8, 0, 224), + [9488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 8, 0, 225), + [9490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 8, 0, 225), + [9492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 8, 0, 227), + [9494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 8, 0, 227), + [9496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_statement, 6, 0, 244), + [9498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_statement, 6, 0, 244), + [9500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 6, 0, 245), + [9502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 6, 0, 245), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), + [9506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 6, 0, 194), + [9508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 6, 0, 194), + [9510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 6, 0, 195), + [9512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 6, 0, 195), + [9514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 6, 0, 196), + [9516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 6, 0, 196), + [9518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 6, 0, 141), + [9520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 6, 0, 141), + [9522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 6, 0, 142), + [9524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 6, 0, 142), + [9526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 6, 0, 197), + [9528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 6, 0, 197), + [9530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14145), + [9532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 249), + [9534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 249), + [9536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 250), + [9538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 250), + [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7751), + [9542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_with_statement, 6, 0, 251), + [9544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_with_statement, 6, 0, 251), + [9546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_with_statement, 6, 0, 252), + [9548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_with_statement, 6, 0, 252), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [9552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 6, 0, 209), + [9554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 6, 0, 209), + [9556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 6, 0, 210), + [9558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 6, 0, 210), + [9560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 6, 0, 71), + [9562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 6, 0, 71), + [9564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 6, 0, 71), + [9566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 6, 0, 71), + [9568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 6, 0, 211), + [9570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 6, 0, 211), + [9572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redim_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11131), + [9575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 6, 0, 212), + [9577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 6, 0, 212), + [9579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_erase_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11082), + [9582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 262), + [9584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 262), + [9586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 263), + [9588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 263), + [9590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 264), + [9592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 264), + [9594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_with_statement, 6, 0, 264), + [9596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_with_statement, 6, 0, 264), + [9598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_range_argument_list, 5, 0, 55), + [9600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_range_argument_list, 5, 0, 55), + [9602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 8, 0, 268), + [9604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 8, 0, 268), + [9606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_sub_statement, 8, 0, 269), + [9608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_sub_statement, 8, 0, 269), + [9610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 8, 0, 270), + [9612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 8, 0, 270), + [9614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 9, 0, 277), + [9616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 9, 0, 277), + [9618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_sub_statement, 9, 0, 278), + [9620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_sub_statement, 9, 0, 278), + [9622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 9, 0, 279), + [9624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 9, 0, 279), + [9626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_close_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8328), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11087), + [9631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 7, 0, 287), + [9633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 7, 0, 287), + [9635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 7, 0, 245), + [9637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 7, 0, 245), + [9639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 7, 0, 247), + [9641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 7, 0, 247), + [9643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 7, 0, 194), + [9645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 7, 0, 194), + [9647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 7, 0, 288), + [9649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 7, 0, 288), + [9651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unparenthesized_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7625), + [9654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_with_statement, 7, 0, 289), + [9656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_with_statement, 7, 0, 289), + [9658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 7, 0, 291), + [9660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 7, 0, 291), + [9662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 7, 0, 258), + [9664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 7, 0, 258), + [9666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 7, 0, 259), + [9668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 7, 0, 259), + [9670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 7, 0, 260), + [9672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 7, 0, 260), + [9674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11450), + [9677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 7, 0, 209), + [9679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 7, 0, 209), + [9681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11087), + [9684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 7, 0, 210), + [9686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 7, 0, 210), + [9688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 7, 0, 261), + [9690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 7, 0, 261), + [9692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 294), + [9694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 294), + [9696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 7, 0, 295), + [9698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 7, 0, 295), + [9700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 7, 0, 296), + [9702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 7, 0, 296), + [9704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_with_statement, 7, 0, 297), + [9706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_with_statement, 7, 0, 297), + [9708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_with_statement, 7, 0, 298), + [9710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_with_statement, 7, 0, 298), + [9712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_range_argument_list, 6, 0, 213), + [9714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_range_argument_list, 6, 0, 213), + [9716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_range_argument_list, 6, 0, 214), + [9718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_range_argument_list, 6, 0, 214), + [9720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_sub_statement, 9, 0, 299), + [9722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_sub_statement, 9, 0, 299), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13293), + [9726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 9, 0, 300), + [9728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 9, 0, 300), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13295), + [9732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 9, 0, 302), + [9734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 9, 0, 302), + [9736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 10, 0, 306), + [9738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 10, 0, 306), + [9740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 8, 0, 309), + [9742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 8, 0, 309), + [9744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 8, 0, 312), + [9746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 8, 0, 312), + [9748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 8, 0, 291), + [9750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 8, 0, 291), + [9752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 8, 0, 293), + [9754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 8, 0, 293), + [9756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_do_statement, 8, 0, 258), + [9758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_do_statement, 8, 0, 258), + [9760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 8, 0, 313), + [9762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 8, 0, 313), + [9764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_with_statement, 8, 0, 314), + [9766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_with_statement, 8, 0, 314), + [9768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_range_argument_list, 7, 0, 266), + [9770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_range_argument_list, 7, 0, 266), + [9772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 10, 0, 315), + [9774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 10, 0, 315), + [9776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_sub_statement, 10, 0, 316), + [9778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_sub_statement, 10, 0, 316), + [9780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 10, 0, 317), + [9782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 10, 0, 317), + [9784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 9, 0, 322), + [9786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 9, 0, 322), + [9788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_function_statement, 11, 0, 324), + [9790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_function_statement, 11, 0, 324), + [9792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13293), + [9795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13295), + [9798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12487), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12487), + [9802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 2, 0, 0), SHIFT_REPEAT(379), + [9805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12928), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12928), + [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), + [9815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7617), + [9818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 248), + [9820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 248), + [9822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_statement_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(340), + [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), + [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12547), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12547), + [9833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), + [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), + [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12490), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12490), + [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8387), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8364), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8405), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8407), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14411), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), + [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10539), + [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14414), + [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), + [9869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), + [9871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12639), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12639), + [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), + [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14415), + [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14416), + [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [9885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), + [9887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12644), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12644), + [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8297), + [9897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [9899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), + [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), + [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15147), + [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), + [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), + [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12534), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12534), + [9921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), + [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [9925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12790), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12790), + [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), + [9935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [9937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12581), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12581), + [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8930), + [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), + [9949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), + [9951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13043), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13043), + [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), + [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), + [9961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12675), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12675), + [9965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [9967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 57), SHIFT(13802), + [9970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 18), SHIFT(13803), + [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7759), + [9975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7760), + [9977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7761), + [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7762), + [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7763), + [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8230), + [9985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8237), + [9987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), + [9989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), + [9991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12416), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12416), + [9995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6742), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), + [10001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10540), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13372), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), + [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10537), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8262), + [10021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10565), + [10023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13372), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), + [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10573), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), + [10036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10544), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8994), + [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), + [10044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7775), + [10046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7776), + [10048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7777), + [10050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7778), + [10052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7730), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8744), + [10058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7737), + [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7738), + [10062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7739), + [10064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7740), + [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7741), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8793), + [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), + [10074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7767), + [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7731), + [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7768), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11014), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11311), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8642), + [10090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7769), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8979), + [10096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12558), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12558), + [10100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(8868), + [10103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7732), + [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7745), + [10107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7746), + [10109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7747), + [10111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7748), + [10113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7749), + [10115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7733), + [10117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7734), + [10119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7770), + [10121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11014), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), + [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10525), + [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8060), + [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8061), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8081), + [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8082), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9917), + [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8147), + [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8149), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), + [10152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7630), + [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), + [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [10159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8228), + [10161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8229), + [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), + [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), + [10167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7715), + [10169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7716), + [10171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), + [10173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7718), + [10175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7719), + [10177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8148), + [10179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8167), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), + [10187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13559), + [10189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13559), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13337), + [10196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13337), + [10199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13377), + [10201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13377), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13515), + [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13277), + [10208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_on_goto_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(13515), + [10211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13277), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13304), + [10216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_def_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(13304), + [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11167), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11026), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8436), + [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7758), + [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), + [10231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redim_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11167), + [10234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_erase_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11026), + [10237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_close_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8436), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11032), + [10242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unparenthesized_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7614), + [10245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11311), + [10248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11032), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13447), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13527), + [10255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13638), + [10257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13447), + [10260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13527), + [10263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12673), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12673), + [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [10271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 2, 0, 0), SHIFT_REPEAT(707), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [10278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13638), + [10281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12525), + [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12525), + [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11098), + [10289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8242), + [10291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8255), + [10293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11098), + [10296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(8955), + [10299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(8771), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8409), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), + [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12459), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12459), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), + [10330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_statement_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [10333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12618), + [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12618), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), + [10339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13483), + [10342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(8723), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11039), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11109), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [10353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11109), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11563), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), + [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [10362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(8911), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11062), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8381), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8266), + [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14499), + [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12627), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12627), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), + [10383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14502), + [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14503), + [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14504), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11319), + [10391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11062), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11294), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11411), + [10398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(8620), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11478), + [10403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11039), + [10406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13483), + [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14384), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), + [10412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7773), + [10414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13201), + [10417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13311), + [10420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_def_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(13415), + [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), + [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13002), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13002), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11202), + [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11018), + [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8432), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13568), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13201), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13311), + [10445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 2, 0, 0), SHIFT_REPEAT(762), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13380), + [10450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7743), + [10452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11478), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), + [10457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7618), + [10460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redim_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11202), + [10463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_erase_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11018), + [10466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_on_goto_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(13380), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13385), + [10471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_close_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8432), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11064), + [10476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unparenthesized_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7600), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11088), + [10481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11411), + [10484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11064), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13094), + [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7728), + [10491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unparenthesized_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7627), + [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13454), + [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13137), + [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13151), + [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13422), + [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13446), + [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12864), + [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12864), + [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), + [10510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_on_goto_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(13568), + [10513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13422), + [10516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13446), + [10519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13137), + [10522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13151), + [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13018), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13018), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), + [10531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 2, 0, 0), SHIFT_REPEAT(767), + [10534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_def_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(13539), + [10537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7621), + [10540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11294), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13451), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13247), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11166), + [10549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 2, 0, 0), SHIFT_REPEAT(770), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11099), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11034), + [10558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12500), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12500), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8457), + [10564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7610), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13530), + [10569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 2, 0, 0), SHIFT_REPEAT(763), + [10572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_def_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(13454), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13099), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11130), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11007), + [10581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_on_goto_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(13247), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), + [10586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11563), + [10589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 2, 0, 0), SHIFT_REPEAT(764), + [10592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11099), + [10595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7602), + [10598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_erase_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11088), + [10601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_erase_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11050), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8367), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11041), + [10610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11041), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11207), + [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12543), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12543), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11071), + [10621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11071), + [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11120), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13539), + [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), + [10630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_close_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8332), + [10633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13385), + [10636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redim_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11166), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), + [10641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 57), SHIFT(14581), + [10644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 18), SHIFT(14582), + [10647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redim_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11130), + [10650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [10652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(12224), + [10655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5531), + [10658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(13787), + [10661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(10981), + [10664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(13823), + [10667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(13592), + [10670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(11772), + [10673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(13053), + [10676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(13053), + [10679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(12405), + [10682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(11004), + [10685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(10667), + [10688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(15040), + [10691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(7694), + [10694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(15070), + [10697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(12466), + [10700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(13860), + [10703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(14176), + [10706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(14732), + [10709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(12141), + [10712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(15007), + [10715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(12143), + [10718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(13351), + [10721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(13368), + [10724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(13315), + [10727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(7415), + [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13409), + [10732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13094), + [10735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_erase_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11007), + [10738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redim_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11120), + [10741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7601), + [10744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_close_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8367), + [10747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_erase_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11034), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11015), + [10752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_def_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(13099), + [10755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unparenthesized_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7611), + [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13257), + [10760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unparenthesized_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7629), + [10763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_on_goto_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(13409), + [10766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11319), + [10769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11015), + [10772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_on_goto_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(13257), + [10775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11350), + [10781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redim_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11207), + [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13550), + [10786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_close_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8457), + [10789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(8766), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13415), + [10794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_def_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(13550), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11050), + [10799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__procedure_attributes, 2, 0, 0), + [10801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__procedure_attributes, 2, 0, 0), + [10803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__procedure_attributes, 2, 0, 0), SHIFT_REPEAT(11857), + [10806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_close_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8344), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), + [10811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unparenthesized_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7620), + [10814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13451), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), + [10819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13530), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13369), + [10824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7714), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8463), + [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), + [10830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_statement_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11019), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [10839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_statement_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8285), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13131), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11123), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [10850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8386), + [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), + [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), + [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14661), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8375), + [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), + [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8435), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), + [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14663), + [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14589), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), + [10888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redim_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11123), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13370), + [10893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14590), + [10895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14591), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8447), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [10907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_on_goto_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(13369), + [10910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13957), + [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8372), + [10914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8362), + [10918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_close_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8285), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8366), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13427), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), + [10931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14028), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11024), + [10935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), + [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6772), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8376), + [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14664), + [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14323), + [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8414), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8396), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), + [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14235), + [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), + [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6965), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8363), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8368), + [10969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11350), + [10972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14586), + [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14031), + [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), + [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), + [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8379), + [10984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [10986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14032), + [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14238), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), + [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12967), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12967), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), + [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14239), + [11002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_def_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(13427), + [11005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [11007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14326), + [11009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14665), + [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14240), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [11015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_erase_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11024), + [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14033), + [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15029), + [11022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unparenthesized_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7628), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), + [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13706), + [11029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), + [11031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8431), + [11037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14327), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [11045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15102), + [11047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14328), + [11049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14915), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [11053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13131), + [11056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 2, 0, 0), SHIFT_REPEAT(780), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8342), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), + [11063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7607), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8331), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [11074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11019), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8408), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8338), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), + [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [11087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_statement_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(342), + [11090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_statement_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(348), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8461), + [11095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_statement_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(339), + [11098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13370), + [11101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [11103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 57), SHIFT(14986), + [11106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 18), SHIFT(14998), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8280), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8329), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [11115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [11117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_statement_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(343), + [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15150), + [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), + [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8334), + [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15099), + [11132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13735), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8389), + [11138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 57), SHIFT(14120), + [11141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 18), SHIFT(14147), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), + [11148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), + [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8295), + [11158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15187), + [11162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 57), SHIFT(14065), + [11165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 18), SHIFT(14067), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8333), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), + [11172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 57), SHIFT(13978), + [11175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 18), SHIFT(13979), + [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14615), + [11180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 57), SHIFT(15185), + [11183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 18), SHIFT(15190), + [11186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 57), SHIFT(13669), + [11189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 18), SHIFT(13840), + [11192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13491), + [11195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13491), + [11197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13017), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13017), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8789), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8790), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8791), + [11209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8792), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8795), + [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8795), + [11215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8796), + [11217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8797), + [11219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8798), + [11221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8799), + [11223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8800), + [11225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8801), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8760), + [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8767), + [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8768), + [11233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8769), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8770), + [11237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8770), + [11239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8804), + [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8828), + [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8842), + [11245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8843), + [11247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8847), + [11249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8861), + [11251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13587), + [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12834), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12834), + [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), + [11259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13587), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8658), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8687), + [11268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8722), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8747), + [11272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8747), + [11274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9066), + [11276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9109), + [11278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9138), + [11280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9154), + [11282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9362), + [11284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9379), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), + [11292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8483), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8484), + [11296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8484), + [11298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8485), + [11300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8486), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8580), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8582), + [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8583), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), + [11312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8584), + [11314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8585), + [11316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8586), + [11318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8587), + [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8588), + [11322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8589), + [11324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8590), + [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8487), + [11328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8488), + [11330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8489), + [11332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8490), + [11334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_number_top_level_item, 1, 0, 3), + [11336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_number_top_level_item, 1, 0, 3), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), + [11340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12253), + [11342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12498), + [11344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_number_top_level_item, 2, 0, 3), + [11346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_number_top_level_item, 2, 0, 3), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10827), + [11350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10827), + [11352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10142), + [11354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10172), + [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12486), + [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12486), + [11360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8200), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), + [11366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10105), + [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9923), + [11370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9923), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10132), + [11374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10132), + [11376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8777), + [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10234), + [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10293), + [11382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8212), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9914), + [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9914), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10077), + [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10077), + [11398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9908), + [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), + [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10154), + [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10209), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), + [11416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10247), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10251), + [11420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10251), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10063), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10357), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10146), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10363), + [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10050), + [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10162), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), + [11548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10535), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [11578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 1, 0, 0), SHIFT_REPEAT(10132), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), + [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13135), + [11587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13135), + [11590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15051), + [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11580), + [11594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10562), + [11596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15126), + [11598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13672), + [11600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13667), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9913), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), + [11648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14871), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11643), + [11652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15111), + [11654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14311), + [11656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15145), + [11658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_def_type_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(13420), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13229), + [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13585), + [11665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13229), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13420), + [11670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14435), + [11672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13585), + [11675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__frm_property_value, 1, 0, 0), + [11677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__frm_property_value, 1, 0, 0), + [11679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12447), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12447), + [11683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10065), + [11685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10090), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15116), + [11691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [11693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), + [11697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [11699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), + [11703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [11705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), + [11709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [11711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [11715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [11717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), + [11721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [11723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), + [11727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [11729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), + [11733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [11735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7885), + [11739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [11741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), + [11745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frm_begin_block, 5, 0, 17), + [11747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frm_begin_block, 5, 0, 17), + [11749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frm_begin_block, 5, 0, 7), + [11751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frm_begin_block, 5, 0, 7), + [11753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frm_begin_property_block, 5, 0, 7), + [11755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frm_begin_property_block, 5, 0, 7), + [11757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frm_version_statement, 2, 0, 0), + [11759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7970), + [11761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frm_version_statement, 2, 0, 0), + [11763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_statement, 2, 0, 0), + [11765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_statement, 2, 0, 0), + [11767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_statement, 2, 0, 7), + [11769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implements_statement, 2, 0, 7), + [11771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frm_blob_reference, 3, 0, 0), + [11773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frm_blob_reference, 3, 0, 0), + [11775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frm_begin_block, 4, 0, 7), + [11777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frm_begin_block, 4, 0, 7), + [11779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frm_begin_block, 6, 0, 86), + [11781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frm_begin_block, 6, 0, 86), + [11783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_number_top_level_item, 2, 0, 12), + [11785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_number_top_level_item, 2, 0, 12), + [11787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frm_begin_block, 5, 0, 86), + [11789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frm_begin_block, 5, 0, 86), + [11791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frm_version_statement, 3, 0, 0), + [11793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frm_version_statement, 3, 0, 0), + [11795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frm_begin_block, 3, 0, 0), + [11797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frm_begin_block, 3, 0, 0), + [11799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frm_property_statement, 3, 0, 15), + [11801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frm_property_statement, 3, 0, 15), + [11803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frm_begin_block, 4, 0, 0), + [11805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frm_begin_block, 4, 0, 0), + [11807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frm_begin_property_block, 4, 0, 7), + [11809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frm_begin_property_block, 4, 0, 7), + [11811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_statement, 4, 0, 44), + [11813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_statement, 4, 0, 44), + [11815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frm_begin_block, 4, 0, 17), + [11817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frm_begin_block, 4, 0, 17), + [11819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_statement, 3, 0, 0), + [11821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_statement, 3, 0, 0), + [11823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_number_top_level_item, 3, 0, 26), + [11825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_number_top_level_item, 3, 0, 26), + [11827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_frm_property_statement, 3, 0, 27), + [11829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_frm_property_statement, 3, 0, 27), + [11831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12519), + [11833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11988), + [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10523), + [11837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10523), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10491), + [11841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10491), + [11843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13040), + [11845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [11847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [11849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12454), + [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12454), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), + [11855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11433), + [11857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9306), + [11861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9306), + [11863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13692), + [11865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9961), + [11867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8047), + [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [11871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [11873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [11875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9293), + [11877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7291), + [11879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), + [11881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12578), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12578), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), + [11887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11428), + [11889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7281), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8475), + [11893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8475), + [11895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15031), + [11897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9932), + [11899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8052), + [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [11903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), + [11905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7298), + [11907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8660), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10669), + [11913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10669), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11648), + [11917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8170), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [11921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [11923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8119), + [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [11927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [11931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8089), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [11935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [11937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [11939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [11941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12761), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12761), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), + [11947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11360), + [11949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9095), + [11953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9095), + [11955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15195), + [11957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9950), + [11959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8070), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [11963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [11965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [11967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9082), + [11969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8074), + [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [11973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), + [11975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10180), + [11977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10239), + [11979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11261), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9915), + [11983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9915), + [11985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8075), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10303), + [11989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10303), + [11991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8564), + [11993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8176), + [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [11997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [11999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), + [12001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), + [12003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11281), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8477), + [12007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8477), + [12009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8083), + [12011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8763), + [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [12015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8087), + [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10364), + [12019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10364), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [12029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8097), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [12033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [12037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8099), + [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [12041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [12045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10150), + [12047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10227), + [12049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12637), + [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12637), + [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), + [12055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11312), + [12057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10230), + [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9217), + [12061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9217), + [12063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15109), + [12065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9948), + [12067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8101), + [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10231), + [12071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10210), + [12073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10231), + [12075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9219), + [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [12079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [12081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [12083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12426), + [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12426), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), + [12089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11348), + [12091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9233), + [12095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9233), + [12097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13731), + [12099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9957), + [12101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8103), + [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [12105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [12107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [12109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9234), + [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [12115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10159), + [12117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10208), + [12119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11496), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9067), + [12123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9067), + [12125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8107), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10226), + [12129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10226), + [12131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9053), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11901), + [12135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8109), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [12139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [12143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [12145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [12147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12434), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12434), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [12153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11367), + [12155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9264), + [12159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9264), + [12161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14256), + [12163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9958), + [12165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8111), + [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [12169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [12171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [12173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9250), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [12177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8113), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [12181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [12185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [12187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [12189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12444), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12444), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), + [12195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11405), + [12197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9292), + [12201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9292), + [12203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15083), + [12205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9960), + [12207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8115), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [12211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [12213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [12215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9279), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [12219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8117), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [12223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [12225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8118), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [12229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [12231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8120), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [12235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [12237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [12239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [12241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12501), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12501), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), + [12247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11556), + [12249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9435), + [12253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9435), + [12255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15079), + [12257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9967), + [12259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8121), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [12263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [12265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [12267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9422), + [12269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8122), + [12271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [12273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [12275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12512), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12512), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), + [12281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11373), + [12283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9463), + [12287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9463), + [12289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13773), + [12291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9969), + [12293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8123), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [12297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [12299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [12301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9465), + [12303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8124), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [12307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [12309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [12311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [12313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12517), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12517), + [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), + [12319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11273), + [12321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9478), + [12325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9478), + [12327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13896), + [12329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9970), + [12331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8126), + [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [12335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [12337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [12339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9479), + [12341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8256), + [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10075), + [12345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10075), + [12347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8128), + [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [12351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [12353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [12355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [12357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12529), + [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12529), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), + [12363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11490), + [12365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9506), + [12369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9506), + [12371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14278), + [12373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9972), + [12375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8130), + [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [12379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [12381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [12383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9507), + [12385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8134), + [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [12389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [12391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [12393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [12395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12541), + [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12541), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), + [12401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11445), + [12403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9534), + [12407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9534), + [12409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14534), + [12411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9974), + [12413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8136), + [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [12417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [12419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [12421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9535), + [12423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8138), + [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [12427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [12429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10199), + [12431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10242), + [12433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11546), + [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9548), + [12437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9548), + [12439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8140), + [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10275), + [12443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10275), + [12445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9549), + [12447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8142), + [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [12451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [12453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8144), + [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [12457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [12459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [12461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [12463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12553), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12553), + [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), + [12469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11285), + [12471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9590), + [12475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9590), + [12477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14740), + [12479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9976), + [12481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8146), + [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [12485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [12487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [12489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9591), + [12491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8151), + [12493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8152), + [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [12497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [12499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8153), + [12501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [12503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [12505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12607), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12607), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), + [12511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11440), + [12513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9688), + [12517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9688), + [12519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15191), + [12521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9981), + [12523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8154), + [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [12527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [12529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [12531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9689), + [12533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8156), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [12537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [12539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10124), + [12541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10197), + [12543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12614), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12614), + [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), + [12549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11452), + [12551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10203), + [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9702), + [12555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9702), + [12557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13705), + [12559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9982), + [12561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8158), + [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10179), + [12565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10176), + [12567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10179), + [12569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9703), + [12571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8160), + [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [12575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [12577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [12579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [12581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12616), + [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12616), + [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [12587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11463), + [12589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9716), + [12593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9716), + [12595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13766), + [12597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9983), + [12599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8162), + [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [12603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [12605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [12607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9717), + [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [12611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8164), + [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [12615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [12617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8165), + [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [12621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [12623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8166), + [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [12627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [12629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8168), + [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [12633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [12635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8171), + [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10101), + [12639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10101), + [12641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8172), + [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [12645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [12647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8173), + [12649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8175), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [12653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [12655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [12657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [12659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12630), + [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12630), + [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), + [12665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11566), + [12667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9773), + [12671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9773), + [12673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13995), + [12675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9987), + [12677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8177), + [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [12681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [12683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [12685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9774), + [12687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8178), + [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [12691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [12693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8180), + [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10187), + [12697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10187), + [12699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8181), + [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [12703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [12705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [12707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [12709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12634), + [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12634), + [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), + [12715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11459), + [12717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9787), + [12721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9787), + [12723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14053), + [12725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9988), + [12727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8182), + [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [12731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [12733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [12735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9788), + [12737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [12739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [12741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12619), + [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12619), + [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), + [12747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11480), + [12749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9730), + [12753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9730), + [12755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13830), + [12757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9984), + [12759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8183), + [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [12763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [12765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [12767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9731), + [12769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8184), + [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [12773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [12775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [12777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [12779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12645), + [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12645), + [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), + [12785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11249), + [12787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9858), + [12791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9858), + [12793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14264), + [12795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9991), + [12797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8185), + [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [12801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [12803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [12805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9859), + [12807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8186), + [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [12811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [12813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8187), + [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [12817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [12819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [12821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [12823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12646), + [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12646), + [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [12829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11303), + [12831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9872), + [12835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9872), + [12837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14351), + [12839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9992), + [12841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8188), + [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [12845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [12847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [12849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9874), + [12851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8189), + [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [12855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [12857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8190), + [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [12861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [12863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8191), + [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [12867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [12871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8196), + [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [12875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), + [12877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8197), + [12879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8202), + [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [12883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8217), + [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [12887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12129), + [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [12893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8264), + [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [12897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [12899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [12901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [12903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12544), + [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12544), + [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), + [12909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11259), + [12911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9576), + [12915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9576), + [12917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14622), + [12919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9975), + [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [12923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [12925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [12927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9577), + [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [12931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [12933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [12935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [12937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12598), + [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12598), + [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), + [12943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11421), + [12945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9674), + [12949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9674), + [12951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15098), + [12953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9980), + [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [12957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [12959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [12961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9675), + [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [12965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [12969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [12971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [12973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [12975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12465), + [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12465), + [12979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), + [12981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11504), + [12983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9348), + [12987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9348), + [12989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14063), + [12991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9963), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [12995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [12997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [12999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9335), + [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [13003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [13005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [13007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [13009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12566), + [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12566), + [13013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), + [13015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11364), + [13017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [13019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9632), + [13021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9632), + [13023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14962), + [13025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9978), + [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [13029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [13031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [13033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9633), + [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11033), + [13037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10956), + [13039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10956), + [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10548), + [13043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10548), + [13045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [13047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [13049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13066), + [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13066), + [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), + [13055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11289), + [13057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9185), + [13061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9185), + [13063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14317), + [13065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9955), + [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [13069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [13071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [13073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9187), + [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11085), + [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10786), + [13079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10786), + [13081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13344), + [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10702), + [13085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10702), + [13087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10792), + [13089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10792), + [13091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [13093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [13095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12460), + [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12460), + [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [13101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11484), + [13103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9320), + [13107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9320), + [13109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13861), + [13111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9962), + [13113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [13115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [13117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [13119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9307), + [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10476), + [13123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10476), + [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8536), + [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10808), + [13129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10808), + [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11063), + [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10951), + [13135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10951), + [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11091), + [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10783), + [13141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10783), + [13143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [13145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [13147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12626), + [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12626), + [13151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), + [13153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11503), + [13155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9744), + [13159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9744), + [13161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13892), + [13163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9985), + [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [13167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [13169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [13171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9745), + [13173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9919), + [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10813), + [13177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10813), + [13179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [13181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [13183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12724), + [13185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12724), + [13187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [13189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11476), + [13191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [13193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9010), + [13195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9010), + [13197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14790), + [13199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9944), + [13201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [13203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [13205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [13207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8997), + [13209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [13211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [13213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12636), + [13215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12636), + [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), + [13219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11385), + [13221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9815), + [13225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9815), + [13227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14106), + [13229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9989), + [13231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [13233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [13235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [13237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9816), + [13239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [13241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [13243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12949), + [13245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12949), + [13247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), + [13249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11276), + [13251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [13253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9169), + [13255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9169), + [13257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15157), + [13259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9954), + [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [13263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [13265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [13267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9171), + [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [13271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8617), + [13275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10822), + [13277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10822), + [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8677), + [13281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10830), + [13283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10830), + [13285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [13287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [13289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12481), + [13291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12481), + [13293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), + [13295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11535), + [13297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [13299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9407), + [13301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9407), + [13303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14954), + [13305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9966), + [13307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [13309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [13311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [13313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9394), + [13315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11010), + [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10751), + [13319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10751), + [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8719), + [13323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10840), + [13325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10840), + [13327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [13329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [13331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [13333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [13335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12420), + [13337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12420), + [13339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), + [13341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11301), + [13343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [13345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9201), + [13347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9201), + [13349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15063), + [13351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9956), + [13353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [13355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [13357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [13359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9203), + [13361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [13363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [13365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12507), + [13367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12507), + [13369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [13371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11571), + [13373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [13375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9449), + [13377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9449), + [13379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15211), + [13381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9968), + [13383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [13385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [13387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [13389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9450), + [13391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [13393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [13395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8762), + [13397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10844), + [13399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10844), + [13401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11069), + [13403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10824), + [13405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10824), + [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8818), + [13409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10851), + [13411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10851), + [13413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11102), + [13415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10767), + [13417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10767), + [13419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8863), + [13421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10856), + [13423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10856), + [13425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [13427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [13429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12918), + [13431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12918), + [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), + [13435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11542), + [13437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9139), + [13441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9139), + [13443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14230), + [13445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9952), + [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [13449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [13451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [13453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9125), + [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8906), + [13457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10860), + [13459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10860), + [13461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11027), + [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10833), + [13465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10833), + [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8946), + [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10864), + [13471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10864), + [13473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [13475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [13477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12471), + [13479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12471), + [13481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), + [13483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11522), + [13485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [13487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10033), + [13489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10033), + [13491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14401), + [13493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9964), + [13495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [13497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [13499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [13501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9349), + [13503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13453), + [13505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10694), + [13507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10694), + [13509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11040), + [13511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10766), + [13513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10766), + [13515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13098), + [13517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10690), + [13519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10690), + [13521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13188), + [13523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10706), + [13525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10706), + [13527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [13529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [13531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12438), + [13533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12438), + [13535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [13537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11378), + [13539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [13541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9278), + [13543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9278), + [13545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14918), + [13547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9959), + [13549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [13551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [13553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [13555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9265), + [13557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13217), + [13559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10727), + [13561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10727), + [13563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13244), + [13565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10700), + [13567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10700), + [13569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [13571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [13573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13281), + [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10692), + [13577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10692), + [13579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13305), + [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10713), + [13583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10713), + [13585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13342), + [13587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10721), + [13589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10721), + [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11035), + [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10743), + [13595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10743), + [13597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [13599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [13601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12628), + [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12628), + [13605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), + [13607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11540), + [13609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [13611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9759), + [13613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9759), + [13615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13930), + [13617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9986), + [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [13621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [13623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [13625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9760), + [13627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [13629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [13631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12641), + [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12641), + [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), + [13637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11525), + [13639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9843), + [13643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9843), + [13645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14181), + [13647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9990), + [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [13651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [13653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [13655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9844), + [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [13659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [13663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), + [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10968), + [13667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10968), + [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [13671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [13673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7380), + [13675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7381), + [13677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13029), + [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13029), + [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), + [13683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11335), + [13685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7351), + [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8916), + [13689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8916), + [13691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14418), + [13693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9941), + [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), + [13697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), + [13699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7412), + [13701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8478), + [13703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10381), + [13705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10450), + [13707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13003), + [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13003), + [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), + [13713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11575), + [13715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10451), + [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8873), + [13719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8873), + [13721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13934), + [13723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9940), + [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10507), + [13727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10477), + [13729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10507), + [13731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8917), + [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [13735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7386), + [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [13739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7387), + [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [13743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7382), + [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), + [13747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7392), + [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [13751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), + [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), + [13755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7413), + [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), + [13759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), + [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), + [13763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7384), + [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [13767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), + [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), + [13771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7389), + [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), + [13775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7391), + [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [13779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), + [13783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8904), + [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10620), + [13787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10620), + [13789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8909), + [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10733), + [13793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10733), + [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [13797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10098), + [13801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10098), + [13803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10096), + [13805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10096), + [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10111), + [13809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10111), + [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10785), + [13813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10785), + [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10097), + [13817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10097), + [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10099), + [13821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10099), + [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10100), + [13825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10100), + [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10089), + [13829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10089), + [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10329), + [13833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10329), + [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10321), + [13837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10321), + [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10305), + [13841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10305), + [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10326), + [13845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10326), + [13847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10310), + [13849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10310), + [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10311), + [13853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10311), + [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10312), + [13857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10312), + [13859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10314), + [13861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10314), + [13863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10315), + [13865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10315), + [13867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10316), + [13869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10316), + [13871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10317), + [13873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10317), + [13875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10318), + [13877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10318), + [13879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10698), + [13881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10698), + [13883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10106), + [13885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10106), + [13887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10114), + [13889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10114), + [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10095), + [13893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10095), + [13895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10110), + [13897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10110), + [13899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7363), + [13901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7366), + [13903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11577), + [13905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8961), + [13907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8961), + [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [13911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7364), + [13913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9930), + [13915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [13917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9421), + [13921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9421), + [13923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10416), + [13925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10416), + [13927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9408), + [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [13931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [13935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [13937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [13939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [13941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [13943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [13945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [13947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [13949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [13951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [13953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [13955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [13957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [13959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [13961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [13963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [13965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [13967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [13971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [13975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [13979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [13983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [13987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [13991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [13995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [13999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [14001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [14003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [14007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [14011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10362), + [14015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10362), + [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10358), + [14019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10358), + [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10359), + [14023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10359), + [14025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10339), + [14027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10339), + [14029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10355), + [14031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10355), + [14033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10354), + [14035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10354), + [14037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10341), + [14039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10341), + [14041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10336), + [14043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10336), + [14045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10351), + [14047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10351), + [14049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10338), + [14051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10338), + [14053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10340), + [14055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10340), + [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10348), + [14059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10348), + [14061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10349), + [14063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10349), + [14065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), + [14067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7405), + [14069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10328), + [14071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10328), + [14073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [14075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [14077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [14079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [14081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [14083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [14085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [14087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [14089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9334), + [14091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9334), + [14093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [14095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [14097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9321), + [14099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10286), + [14101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10286), + [14103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10240), + [14105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10240), + [14107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10241), + [14109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10241), + [14111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10243), + [14113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10243), + [14115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10244), + [14117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10244), + [14119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10246), + [14121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10246), + [14123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10248), + [14125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10248), + [14127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10249), + [14129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10249), + [14131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10250), + [14133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10250), + [14135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10268), + [14137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10268), + [14139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10269), + [14141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10269), + [14143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10271), + [14145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10271), + [14147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10513), + [14149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10513), + [14151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [14153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [14155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [14157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [14159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9248), + [14161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9248), + [14163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), + [14165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7394), + [14167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8579), + [14169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [14171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7395), + [14173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [14175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), + [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), + [14179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), + [14181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), + [14183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), + [14185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), + [14187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7399), + [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), + [14191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), + [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), + [14195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), + [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), + [14199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), + [14201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), + [14203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7403), + [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), + [14207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), + [14209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), + [14211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7406), + [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9929), + [14215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9929), + [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10534), + [14219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10534), + [14221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8643), + [14223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [14225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [14227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [14229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [14233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [14235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [14237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [14241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [14243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [14245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [14249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [14253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [14255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10104), + [14257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10104), + [14259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [14261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [14263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [14265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [14267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [14269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [14271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [14273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [14275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [14277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [14279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [14281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [14283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [14285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [14287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [14289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [14293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [14295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [14297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [14299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [14301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [14303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [14305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [14307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [14309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [14311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), + [14313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), + [14315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [14317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [14319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [14321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [14323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [14325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [14327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [14329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [14331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [14333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [14335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [14337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [14339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [14341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [14343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [14345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [14347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [14349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [14351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [14353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [14355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [14357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [14359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [14361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [14363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10375), + [14365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10471), + [14367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11448), + [14369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9110), + [14371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9110), + [14373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10473), + [14375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10473), + [14377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9096), + [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [14381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [14383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [14385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [14387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [14389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [14391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [14393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [14395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [14397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [14401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [14405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [14407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [14409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [14411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [14413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [14417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [14419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [14421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [14425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7358), + [14427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10972), + [14429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10972), + [14431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [14433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [14435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9393), + [14437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9393), + [14439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [14441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [14443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9380), + [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10564), + [14447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10564), + [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10549), + [14451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10549), + [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10568), + [14455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10568), + [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10521), + [14459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10521), + [14461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10522), + [14463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10522), + [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10526), + [14467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10526), + [14469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10527), + [14471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10527), + [14473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10528), + [14475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10528), + [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10529), + [14479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10529), + [14481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10530), + [14483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10530), + [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10532), + [14487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10532), + [14489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10533), + [14491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10533), + [14493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10481), + [14495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10481), + [14497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [14499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10245), + [14503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10245), + [14505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [14507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7345), + [14509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9895), + [14511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9895), + [14513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10818), + [14515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10818), + [14517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9896), + [14519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), + [14521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), + [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10519), + [14525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10519), + [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10641), + [14529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10641), + [14531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10975), + [14533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10975), + [14535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10493), + [14537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10493), + [14539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10494), + [14541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10494), + [14543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10495), + [14545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10495), + [14547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10478), + [14549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10478), + [14551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10518), + [14553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10518), + [14555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10499), + [14557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10499), + [14559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10500), + [14561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10500), + [14563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10501), + [14565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10501), + [14567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10502), + [14569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10502), + [14571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10504), + [14573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10504), + [14575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10505), + [14577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10505), + [14579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10506), + [14581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10506), + [14583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10663), + [14585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10663), + [14587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10614), + [14589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10614), + [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10683), + [14593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10683), + [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10684), + [14597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10684), + [14599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10509), + [14601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10509), + [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10672), + [14605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10672), + [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10677), + [14609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10677), + [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10678), + [14613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10678), + [14615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10679), + [14617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10679), + [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [14621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [14625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [14627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), + [14629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7355), + [14631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [14633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [14635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [14637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [14639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [14641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [14643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [14645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [14647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [14649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [14651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [14653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [14655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [14657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [14659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [14661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [14663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [14665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [14667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [14669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [14671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [14673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [14675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), + [14677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7407), + [14679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9912), + [14681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9912), + [14683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [14685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [14687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9155), + [14689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10434), + [14691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10434), + [14693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [14695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [14697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10708), + [14699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10708), + [14701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10816), + [14703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10816), + [14705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [14707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [14709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [14711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [14713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [14715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [14717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [14719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [14721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [14723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [14725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [14727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [14729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [14731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [14733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [14735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [14737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [14739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [14741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [14743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [14745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [14747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [14749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [14751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [14753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [14755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [14757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [14759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [14761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [14763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [14765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [14767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [14769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [14771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [14773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), + [14775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7371), + [14777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [14779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [14781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [14783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [14785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [14787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [14789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [14791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [14793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [14795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [14797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [14799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [14803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [14805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10590), + [14807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10590), + [14809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [14811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [14813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [14815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [14817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [14819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [14821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [14823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [14825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [14827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [14829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [14831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [14833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [14835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [14839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [14841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [14843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [14845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [14847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [14849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [14851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [14853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10807), + [14855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10807), + [14857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10584), + [14859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10584), + [14861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9926), + [14863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9926), + [14865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [14867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [14869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9436), + [14871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [14873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [14875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [14877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [14879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), + [14881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7353), + [14883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [14885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [14887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [14889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [14891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [14893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [14895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [14897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [14899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [14901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [14903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [14905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [14907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [14909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [14911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [14913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [14915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [14917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [14919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [14921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [14923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [14925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [14927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [14929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [14931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), + [14933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7331), + [14935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [14937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [14939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [14941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [14943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [14945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), + [14947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [14949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [14951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [14953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [14955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [14957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [14959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [14961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7332), + [14963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [14965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), + [14967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), + [14969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7334), + [14971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [14973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7335), + [14975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [14977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [14979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [14981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [14983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [14985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [14987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [14989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [14991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [14993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [14995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [14997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [14999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10143), + [15001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10143), + [15003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10118), + [15005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10118), + [15007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10116), + [15009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10116), + [15011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10120), + [15013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10120), + [15015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10121), + [15017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10121), + [15019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10122), + [15021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10122), + [15023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10123), + [15025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10123), + [15027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10125), + [15029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10125), + [15031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10127), + [15033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10127), + [15035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10128), + [15037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10128), + [15039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10129), + [15041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10129), + [15043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10130), + [15045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10130), + [15047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [15049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7315), + [15051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [15053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), + [15055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), + [15057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7317), + [15059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), + [15061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), + [15063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9562), + [15065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9562), + [15067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [15069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [15071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9563), + [15073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [15075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [15077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [15079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), + [15081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [15083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), + [15085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), + [15087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), + [15089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), + [15091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7300), + [15093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [15095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), + [15097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), + [15099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), + [15101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [15103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7280), + [15105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [15107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [15109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [15111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [15113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [15115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7336), + [15117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [15119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [15121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [15123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [15125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [15127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [15129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [15131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [15133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [15135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [15137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [15139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [15141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [15143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [15145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [15147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [15149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [15151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [15153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [15155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [15157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [15159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [15161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [15163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [15165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [15167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [15169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [15171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [15173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [15175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [15177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [15179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [15181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [15183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [15185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [15187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [15189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [15191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [15193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [15195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [15197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [15199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [15201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [15203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [15205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [15207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [15209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), + [15211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7337), + [15213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [15215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [15217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10653), + [15219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10653), + [15221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [15223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [15225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [15227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [15229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [15231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [15233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [15235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [15237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [15239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [15241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [15243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [15245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [15247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [15249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [15251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [15253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [15255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [15257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [15259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [15261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [15263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [15265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), + [15267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7330), + [15269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), + [15271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), + [15273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10361), + [15275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10393), + [15277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12559), + [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12559), + [15281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [15283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11316), + [15285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10391), + [15287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9604), + [15289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9604), + [15291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14847), + [15293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9977), + [15295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10399), + [15297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10396), + [15299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10399), + [15301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9605), + [15303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [15305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [15307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [15309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [15311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), + [15313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), + [15315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [15317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [15319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [15321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [15323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [15325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [15329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [15333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [15335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [15337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [15339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [15341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [15343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [15345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [15347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [15349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [15351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [15353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [15355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [15357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [15359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [15361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [15363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [15365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [15367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [15369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7338), + [15371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [15373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [15375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [15377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [15379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [15381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [15385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [15387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [15389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [15391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [15393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [15395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [15397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [15399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [15401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [15403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [15405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [15409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [15411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [15413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [15415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10517), + [15417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10517), + [15419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [15421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [15423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [15425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [15427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [15429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [15431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [15433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [15435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [15437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [15441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [15445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [15449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [15451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [15453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [15455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [15457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [15459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [15461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [15463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [15465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [15467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9618), + [15469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9618), + [15471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [15473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [15475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9619), + [15477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10511), + [15479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10511), + [15481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [15483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [15485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [15487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7309), + [15489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [15491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [15493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [15495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [15497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [15499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [15501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [15503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [15505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [15507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [15509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [15511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [15513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [15515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [15517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [15519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [15521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [15523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [15525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [15527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [15529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [15531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [15533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [15535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [15537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [15539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [15541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [15543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [15545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10659), + [15547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10659), + [15549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [15551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [15553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [15555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [15557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [15559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [15561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [15563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [15565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10668), + [15567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10668), + [15569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10555), + [15571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10555), + [15573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [15575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [15577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [15579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [15581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [15583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [15585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [15587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [15589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [15591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [15593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), + [15595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7410), + [15597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10488), + [15599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10488), + [15601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10496), + [15603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10496), + [15605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10515), + [15607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10515), + [15609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10489), + [15611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10489), + [15613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10482), + [15615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10482), + [15617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10503), + [15619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10503), + [15621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10508), + [15623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10508), + [15625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10516), + [15627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10516), + [15629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10479), + [15631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10479), + [15633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10485), + [15635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10485), + [15637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10498), + [15639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10498), + [15641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10486), + [15643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10486), + [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [15647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [15649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9660), + [15651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9660), + [15653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [15655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [15657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9661), + [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [15661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [15665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [15669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [15673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [15675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [15677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [15679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [15681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [15683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [15685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [15687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [15689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [15691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [15693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [15695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [15697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [15699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [15701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [15705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [15707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [15709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [15711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [15713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [15715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [15717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [15719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [15721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [15723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [15725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [15727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [15729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [15731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10586), + [15733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10586), + [15735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10588), + [15737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10588), + [15739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10589), + [15741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10589), + [15743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10593), + [15745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10593), + [15747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10625), + [15749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10625), + [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10627), + [15753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10627), + [15755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [15757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [15759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [15761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [15763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10628), + [15765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10628), + [15767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [15769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [15771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [15773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [15775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [15777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [15779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), + [15781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), + [15783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10629), + [15785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10629), + [15787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [15789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [15791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10689), + [15793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10689), + [15795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [15797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [15799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [15801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [15803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [15805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [15807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [15809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [15811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [15813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [15815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [15817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [15819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [15821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [15823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [15825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [15827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [15829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [15833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [15835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [15837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [15839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10631), + [15841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10631), + [15843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10632), + [15845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10632), + [15847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10337), + [15849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10337), + [15851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9801), + [15853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9801), + [15855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [15857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [15859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9802), + [15861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [15863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [15865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [15867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [15869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [15871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [15873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [15875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [15879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [15881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [15883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [15885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [15887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [15891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [15895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [15897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [15899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [15901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [15903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [15905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [15907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [15909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [15911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [15913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [15915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9829), + [15919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9829), + [15921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [15923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [15925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9830), + [15927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [15929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [15931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [15933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [15935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [15937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [15939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [15941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [15943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [15945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [15947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [15949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [15951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [15953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [15955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [15957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [15959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [15961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [15963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [15965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [15967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [15969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [15971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [15973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [15975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [15977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [15979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [15981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [15983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [15985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [15987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [15989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [15991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [15993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [15995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [15997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [15999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [16001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [16003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [16005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [16007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [16009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [16011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [16013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [16015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [16017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [16019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [16021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [16023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [16025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [16027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [16029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [16031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [16033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [16035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [16037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [16039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [16041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [16043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [16045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [16047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [16049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [16051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [16053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [16055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [16057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [16059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [16061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [16063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [16065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [16067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [16069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [16071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [16073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [16075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [16077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [16079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [16081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [16083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [16085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [16089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [16093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [16097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [16099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [16101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [16103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [16105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [16109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [16111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [16113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [16115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [16117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [16121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [16123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [16125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [16127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [16129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [16131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [16133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [16135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [16137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [16139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [16141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [16143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [16145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [16147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [16149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [16151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [16153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [16155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [16157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [16159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10287), + [16161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10287), + [16163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10273), + [16165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10273), + [16167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10238), + [16169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10238), + [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10253), + [16173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10253), + [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10272), + [16177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10272), + [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10274), + [16181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10274), + [16183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10276), + [16185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10276), + [16187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10277), + [16189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10277), + [16191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10279), + [16193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10279), + [16195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10280), + [16197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10280), + [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10282), + [16201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10282), + [16203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10283), + [16205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10283), + [16207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [16209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [16211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [16213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), + [16215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10267), + [16217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10267), + [16219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [16221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [16223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [16225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [16227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [16229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [16231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [16233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [16235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [16237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [16239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [16241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [16243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [16245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [16247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [16249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [16251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [16253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [16255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [16257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [16259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [16261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [16263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [16265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [16267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [16269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [16271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [16273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [16277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [16279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [16281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [16283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [16285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [16287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [16289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [16293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [16295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [16297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [16299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [16301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [16303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [16305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [16309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [16313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [16317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [16319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [16321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [16323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [16325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [16327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [16329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [16331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10420), + [16333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10420), + [16335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10421), + [16337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10421), + [16339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10422), + [16341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10422), + [16343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10423), + [16345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10423), + [16347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10424), + [16349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10424), + [16351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10425), + [16353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10425), + [16355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10426), + [16357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10426), + [16359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10427), + [16361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10427), + [16363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10428), + [16365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10428), + [16367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10429), + [16369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10429), + [16371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10430), + [16373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10430), + [16375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10431), + [16377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10431), + [16379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [16381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [16383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), + [16385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7352), + [16387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10418), + [16389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10418), + [16391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [16393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [16395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [16397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [16399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [16401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [16405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [16407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [16409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [16411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [16413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [16415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [16417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [16419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [16421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [16423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [16425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [16427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [16429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [16431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [16433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [16435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [16437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [16439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [16441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [16443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [16445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [16447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [16449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [16451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [16453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [16455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [16457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [16459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [16461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [16463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [16465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [16467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [16469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [16471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [16473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [16475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [16477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [16481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [16483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [16485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [16489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [16491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [16493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [16497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [16501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7349), + [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [16505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [16509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [16513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [16515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [16517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [16521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [16525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [16527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [16529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [16531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [16533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [16537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [16541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [16543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [16545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [16547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [16549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [16551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [16553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [16555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10432), + [16557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10432), + [16559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [16561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [16563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), + [16565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7360), + [16567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [16569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [16571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [16573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [16575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [16577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [16579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [16581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [16583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [16585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [16587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [16589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [16591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [16593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [16595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [16597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [16599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [16601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [16603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [16605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [16607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [16609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [16611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [16613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [16615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [16617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [16619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [16621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [16623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [16625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [16627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [16629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [16631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [16633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [16635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [16637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [16639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [16641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [16643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [16645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [16647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [16649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [16651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [16653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [16655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [16657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [16659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [16661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [16663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [16665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [16667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [16669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [16671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [16673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [16675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [16677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [16679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [16681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [16683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [16685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [16687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [16689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [16691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [16693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [16695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [16697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [16699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [16701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [16703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [16705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [16707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [16709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [16711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [16713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [16715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [16717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [16719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [16721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [16725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [16727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [16729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [16731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [16733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [16735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [16737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [16739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [16741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [16743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [16745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [16747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [16749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [16751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [16753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [16755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [16757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [16759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [16761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [16763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [16765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [16767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [16769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [16771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [16773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [16775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [16777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [16779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [16781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [16783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [16785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [16787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [16789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [16791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [16793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [16795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [16797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [16799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [16801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [16803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [16805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [16807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10289), + [16809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10289), + [16811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [16813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [16815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10211), + [16817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10211), + [16819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [16821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [16823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10213), + [16825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10213), + [16827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10214), + [16829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10214), + [16831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10215), + [16833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10215), + [16835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10206), + [16837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10206), + [16839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10216), + [16841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10216), + [16843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10217), + [16845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10217), + [16847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10218), + [16849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10218), + [16851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10219), + [16853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10219), + [16855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10220), + [16857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10220), + [16859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10221), + [16861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10221), + [16863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10222), + [16865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10222), + [16867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10223), + [16869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10223), + [16871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [16873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [16875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [16877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [16879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [16881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [16883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [16885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [16887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [16889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [16891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [16893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [16895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [16897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [16899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [16901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [16903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [16905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [16907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [16909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [16911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [16913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [16915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [16917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [16919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [16921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [16923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [16925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [16927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [16929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [16931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [16933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [16935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [16937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [16939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), + [16941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7393), + [16943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [16945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [16947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [16949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [16951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [16953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [16955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [16957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [16959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [16961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [16963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [16965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [16967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [16969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [16971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [16973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [16975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [16977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [16979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [16981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [16983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [16985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [16987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [16989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [16991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [16993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [16995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [16997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [16999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), + [17001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), + [17003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [17005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [17007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [17009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [17011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [17013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [17015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [17017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [17019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [17021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [17023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [17025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [17027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [17029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [17031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [17033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [17035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [17037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [17039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [17041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [17043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [17045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [17047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [17049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [17051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [17053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [17055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [17057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [17059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [17061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [17063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [17065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [17067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [17069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [17071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [17073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [17075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [17077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [17079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [17081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [17083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [17085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [17087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [17089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [17091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [17093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [17095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [17097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [17099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [17101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [17103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [17105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [17107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [17109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [17111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [17113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [17115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [17117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [17119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [17121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [17123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [17125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [17127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [17129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [17131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [17133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [17135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [17137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [17139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [17141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [17143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [17145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [17147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [17149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [17151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [17153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [17155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [17157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [17159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [17161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [17163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [17165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [17167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [17169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [17171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [17173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [17175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [17177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [17179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [17181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [17183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [17185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [17187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [17189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [17191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [17193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [17195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [17197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [17199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [17201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [17203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [17205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [17207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [17209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [17211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [17213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [17215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [17217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [17219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [17221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [17223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [17225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [17227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [17229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [17231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [17233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [17235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [17237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [17239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [17241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [17243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [17245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [17247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [17249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [17251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [17253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [17255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [17257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [17259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [17261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [17263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [17265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [17267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [17269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [17271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [17273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [17275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [17277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [17279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [17281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [17283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [17285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [17287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [17289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [17291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [17293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [17295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [17297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [17299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [17301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [17303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [17305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [17307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [17309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [17311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [17313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [17315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [17317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [17319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [17321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [17323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [17325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [17327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [17329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [17331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [17333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [17335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10224), + [17337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10224), + [17339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [17341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [17343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [17345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [17347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [17349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [17351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [17353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [17355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [17357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [17359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [17361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [17363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [17365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [17367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [17369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [17371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [17373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [17375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [17377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [17379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [17381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [17383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [17385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [17387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [17389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [17391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [17393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [17395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [17397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7368), + [17399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10970), + [17401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10970), + [17403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10475), + [17405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10475), + [17407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [17409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [17411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [17413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [17415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [17417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [17419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [17421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [17423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [17425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [17427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [17429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [17431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [17433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [17435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [17437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [17439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [17441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [17443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [17445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [17447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [17449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [17451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [17453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [17455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [17457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [17459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [17461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [17463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [17465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7362), + [17467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [17469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [17471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [17473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [17475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [17477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [17479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [17481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [17483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [17485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [17487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [17489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [17491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [17493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [17495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [17497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [17499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [17501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [17503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [17505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [17507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [17509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [17511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [17513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [17515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [17517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [17519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [17521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [17523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [17525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [17527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [17529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [17531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [17533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [17535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [17537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [17539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [17541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [17543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [17545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [17547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [17549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [17551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [17553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [17555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [17557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [17559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [17561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [17563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [17565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [17567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [17569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [17571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [17573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [17575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [17577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [17579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10438), + [17581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10438), + [17583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10439), + [17585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10439), + [17587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10440), + [17589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10440), + [17591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10441), + [17593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10441), + [17595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10442), + [17597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10442), + [17599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10443), + [17601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10443), + [17603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10444), + [17605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10444), + [17607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10445), + [17609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10445), + [17611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10446), + [17613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10446), + [17615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10447), + [17617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10447), + [17619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10448), + [17621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10448), + [17623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10449), + [17625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10449), + [17627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [17629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [17631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10437), + [17633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10437), + [17635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [17637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [17639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [17641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [17643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [17645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [17647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [17649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [17651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [17653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [17655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [17657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [17659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [17661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [17663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [17665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [17667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [17669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [17671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [17673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [17675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [17677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [17679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [17681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [17683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [17685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [17687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [17689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [17691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [17693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [17695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [17697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [17699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [17701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [17703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [17705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [17707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [17709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [17711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [17713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [17715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [17717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [17719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [17721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [17723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [17725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [17727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [17729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [17731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [17733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [17735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [17737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [17739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [17741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [17743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [17745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [17747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [17749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [17751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [17753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [17755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [17757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [17759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [17761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [17763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [17765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [17767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [17769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [17771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [17773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [17775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [17777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [17779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [17781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [17783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [17785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [17787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [17789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [17791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [17793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [17795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [17797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [17799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [17801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [17803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [17805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7326), + [17807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [17809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [17811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [17813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [17815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [17817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [17819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [17821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [17823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [17825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [17827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [17829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [17831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [17833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [17835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [17837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [17839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [17841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [17843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [17845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [17847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [17849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [17851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [17853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [17855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [17857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [17859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [17861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [17863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [17865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [17867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [17869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [17871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [17873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [17875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [17877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [17879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [17881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [17883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [17885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [17887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [17889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [17891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [17893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [17895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [17897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [17899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [17901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [17903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [17905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [17907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [17909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [17911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [17913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [17915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [17917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [17919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [17921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [17923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [17925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [17927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [17929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [17931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [17933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [17935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [17937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [17939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [17941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [17943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [17945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [17947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [17949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [17951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [17953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [17955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [17957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [17959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [17961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [17963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [17965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [17967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [17969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [17971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [17973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [17975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [17977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [17979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [17981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [17983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [17985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [17987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [17989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [17991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [17993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [17995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [17997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [17999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [18001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [18003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [18005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [18007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [18009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [18011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [18013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [18015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [18017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [18019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [18021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [18023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [18025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [18027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [18029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [18031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [18033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [18035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [18037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [18039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [18041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [18043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [18045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [18047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [18049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [18051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [18053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [18055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [18057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [18059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [18061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [18063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [18065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [18067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [18069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [18071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [18073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [18075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [18077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [18079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [18081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [18083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [18085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [18087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [18089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [18091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [18093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [18095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [18097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [18099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [18101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [18103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [18105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [18107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [18109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [18111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [18113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [18115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [18117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [18119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [18121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [18123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [18125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [18127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [18129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [18131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [18133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [18135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [18137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [18139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10237), + [18141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10237), + [18143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10254), + [18145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10254), + [18147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10255), + [18149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10255), + [18151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10256), + [18153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10256), + [18155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10257), + [18157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10257), + [18159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10258), + [18161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10258), + [18163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10259), + [18165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10259), + [18167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10260), + [18169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10260), + [18171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10261), + [18173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10261), + [18175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10262), + [18177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10262), + [18179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10263), + [18181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10263), + [18183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10264), + [18185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10264), + [18187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10265), + [18189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10265), + [18191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [18193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [18195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [18197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [18199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [18201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [18203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [18205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [18207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [18209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [18211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [18213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [18215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [18217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [18219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [18221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [18223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [18225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [18227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [18229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [18231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [18233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [18235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [18237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [18239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [18241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [18243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [18245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [18247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [18249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [18251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [18253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [18255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [18257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [18259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [18261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [18263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [18265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [18267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [18269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [18271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [18273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [18275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [18277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [18279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [18281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [18283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [18285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [18287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [18289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [18291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [18293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [18295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [18297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [18299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [18301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [18303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [18305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [18307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [18309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [18311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [18313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [18315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [18317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [18319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [18321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [18323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [18325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [18327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [18329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [18331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [18333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [18335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [18337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [18339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [18341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [18343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [18345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [18347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [18349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [18351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [18353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [18355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [18357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [18359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [18361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [18363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10412), + [18365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10412), + [18367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10384), + [18369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10384), + [18371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10408), + [18373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10408), + [18375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10409), + [18377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10409), + [18379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10410), + [18381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10410), + [18383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10411), + [18385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10411), + [18387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10413), + [18389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10413), + [18391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10414), + [18393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10414), + [18395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10415), + [18397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10415), + [18399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10383), + [18401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10383), + [18403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10388), + [18405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10388), + [18407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10400), + [18409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10400), + [18411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10402), + [18413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10402), + [18415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [18417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [18419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [18421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [18423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [18425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [18427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [18429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [18431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [18433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [18435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [18437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [18439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [18441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [18443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [18445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [18447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [18449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [18451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [18453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [18455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [18457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [18459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [18461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [18463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [18465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [18467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [18469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [18471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10397), + [18473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10397), + [18475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [18477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [18479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [18481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [18483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [18485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [18487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [18489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [18491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [18493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [18495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [18497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [18499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [18501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [18503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [18505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [18507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [18509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [18511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [18513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [18515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [18517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [18519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [18521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [18523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [18525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [18527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [18529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [18531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [18533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [18535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [18537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [18539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [18541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [18543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [18545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [18547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [18549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [18551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [18553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [18555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [18557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [18559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [18561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [18563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [18565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [18567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [18569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [18571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [18573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [18575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [18577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [18579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [18581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [18583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [18585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [18587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [18589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [18591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [18593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [18595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [18597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [18599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [18601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [18603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [18605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [18607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [18609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [18611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [18613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [18615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [18617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [18619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [18621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [18623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [18625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [18627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [18629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [18631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [18633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [18635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [18637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [18639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [18641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [18643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [18645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [18647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [18649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [18651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [18653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [18655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [18657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [18659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [18661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [18663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [18665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [18667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [18669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [18671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [18673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [18675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [18677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [18679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [18681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [18683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [18685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [18687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [18689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [18691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [18693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [18695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [18697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [18699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [18701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [18703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [18705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [18707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [18709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [18711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [18713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [18715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [18717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [18719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [18721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [18723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [18725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [18727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [18729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [18731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [18733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [18735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [18737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [18739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [18741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [18743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [18745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [18747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [18749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [18751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [18753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [18755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10200), + [18757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10200), + [18759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10184), + [18761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10184), + [18763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10182), + [18765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10182), + [18767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10171), + [18769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10171), + [18771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10177), + [18773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10177), + [18775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10194), + [18777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10194), + [18779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10196), + [18781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10196), + [18783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10175), + [18785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10175), + [18787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10192), + [18789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10192), + [18791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10181), + [18793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10181), + [18795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10186), + [18797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10186), + [18799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10178), + [18801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10178), + [18803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10185), + [18805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10185), + [18807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [18809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [18811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [18813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [18815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [18817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [18819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [18821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [18823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [18825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [18827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [18829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [18831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [18833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [18835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [18837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [18839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [18841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [18843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [18845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [18847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [18849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [18851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [18853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [18855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [18857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [18859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [18861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [18863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [18865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [18867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [18869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [18871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [18873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [18875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [18877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [18879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [18881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [18883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [18885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [18887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [18889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [18891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [18893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [18895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [18897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [18899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [18901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [18903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [18905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [18907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [18909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [18911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [18913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [18915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [18917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [18919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [18921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [18923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [18925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [18927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [18929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [18931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [18933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [18935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [18937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [18939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [18941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [18943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [18945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [18947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [18949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [18951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [18953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [18955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [18957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [18959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [18961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [18963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [18965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [18967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [18969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [18971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [18973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [18975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [18977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [18979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10474), + [18981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10474), + [18983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [18985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [18987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [18989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [18991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [18993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [18995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [18997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [18999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [19001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [19003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [19005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [19007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [19009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [19011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [19013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [19015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [19017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [19019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [19021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [19023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [19025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [19027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [19029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [19031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [19033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [19035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [19037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [19039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [19041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [19043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [19045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [19047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [19049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [19051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [19053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [19055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [19057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [19059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [19061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [19063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [19065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [19067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [19069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [19071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [19073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [19075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [19077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [19079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [19081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [19083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [19085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [19087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [19089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [19091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [19093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [19095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [19097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [19099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [19101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [19103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [19105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [19107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [19109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [19111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [19113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [19115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [19117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [19119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [19121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [19123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [19125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [19127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [19129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [19131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [19133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [19135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [19137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [19139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [19141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [19143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [19145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [19147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [19149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [19151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [19153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [19155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [19157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [19159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [19161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [19163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [19165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [19167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [19169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [19171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [19173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [19175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [19177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [19179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [19181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [19183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [19185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [19187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [19189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [19191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [19193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [19195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [19197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [19199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [19201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [19203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [19205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [19207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [19209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [19211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [19213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [19215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [19217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [19219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [19221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [19223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [19225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [19227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [19229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [19231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [19233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [19235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [19237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [19239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [19241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [19243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [19245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [19247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [19249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [19251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [19253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [19255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [19257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [19259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [19261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [19263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [19265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [19267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [19269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [19271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [19273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [19275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [19277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [19279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [19281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [19283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [19285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [19287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [19289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [19291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [19293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [19295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [19297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [19299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [19301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [19303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [19305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [19307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [19309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [19311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [19313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [19315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10173), + [19317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10173), + [19319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [19321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [19323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [19325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [19327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [19329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [19331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [19333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [19335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [19337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [19339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [19341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [19343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [19345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [19347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [19349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [19351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [19353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [19355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [19357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [19359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [19361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [19363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [19365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [19367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [19369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [19371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [19373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [19375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10671), + [19377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10671), + [19379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [19381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [19383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [19385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [19387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [19389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [19391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [19393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [19395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [19397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [19399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [19401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [19403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [19405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [19407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [19409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [19411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [19413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [19415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [19417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [19419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [19421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [19423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [19425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [19427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [19429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [19431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [19433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [19435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [19437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [19439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [19441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [19443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [19445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [19447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [19449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [19451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [19453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [19455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [19457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [19459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [19461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [19463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [19465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [19467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [19469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [19471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [19473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [19475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [19477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [19479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [19481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [19483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [19485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [19487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [19489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [19491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [19493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [19495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [19497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [19499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [19501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [19503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [19505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [19507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [19509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [19511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [19513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [19515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [19517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [19519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [19521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [19523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [19525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [19527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10917), + [19529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10917), + [19531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10918), + [19533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10918), + [19535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10794), + [19537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10794), + [19539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10795), + [19541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10795), + [19543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10796), + [19545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10796), + [19547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10797), + [19549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10797), + [19551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10798), + [19553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10798), + [19555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10799), + [19557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10799), + [19559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10800), + [19561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10800), + [19563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10801), + [19565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10801), + [19567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10802), + [19569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10802), + [19571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10803), + [19573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10803), + [19575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10804), + [19577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10804), + [19579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10102), + [19581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10102), + [19583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [19585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [19587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10571), + [19589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10571), + [19591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10764), + [19593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10764), + [19595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [19597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [19599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [19601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7385), + [19603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10109), + [19605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10109), + [19607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10284), + [19609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10284), + [19611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10131), + [19613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10131), + [19615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [19617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [19619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10266), + [19621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10266), + [19623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [19625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [19627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10740), + [19629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10740), + [19631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10687), + [19633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10687), + [19635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10140), + [19637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10140), + [19639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [19641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [19643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [19645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [19647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [19649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [19651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [19653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [19655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10327), + [19657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10327), + [19659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10556), + [19661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10556), + [19663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), + [19665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7350), + [19667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10789), + [19669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10789), + [19671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10820), + [19673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10820), + [19675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10825), + [19677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10825), + [19679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10578), + [19681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10578), + [19683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10835), + [19685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10835), + [19687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10841), + [19689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10841), + [19691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10845), + [19693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10845), + [19695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10853), + [19697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10853), + [19699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10857), + [19701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10857), + [19703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10861), + [19705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10861), + [19707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10865), + [19709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10865), + [19711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10866), + [19713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10866), + [19715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10867), + [19717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10867), + [19719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10868), + [19721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10868), + [19723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10869), + [19725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10869), + [19727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10870), + [19729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10870), + [19731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10871), + [19733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10871), + [19735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10872), + [19737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10872), + [19739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10873), + [19741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10873), + [19743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10874), + [19745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10874), + [19747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10875), + [19749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10875), + [19751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10876), + [19753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10876), + [19755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10877), + [19757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10877), + [19759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10878), + [19761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10878), + [19763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10879), + [19765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10879), + [19767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10880), + [19769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10880), + [19771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10881), + [19773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10881), + [19775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10882), + [19777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10882), + [19779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10883), + [19781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10883), + [19783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10884), + [19785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10884), + [19787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10885), + [19789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10885), + [19791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10886), + [19793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10886), + [19795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10887), + [19797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10887), + [19799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10888), + [19801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10888), + [19803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10889), + [19805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10889), + [19807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10890), + [19809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10890), + [19811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10891), + [19813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10891), + [19815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10892), + [19817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10892), + [19819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10893), + [19821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10893), + [19823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10894), + [19825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10894), + [19827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10895), + [19829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10895), + [19831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10896), + [19833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10896), + [19835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10897), + [19837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10897), + [19839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10898), + [19841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10898), + [19843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10899), + [19845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10899), + [19847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10900), + [19849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10900), + [19851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10901), + [19853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10901), + [19855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10902), + [19857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10902), + [19859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10903), + [19861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10903), + [19863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10904), + [19865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10904), + [19867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10905), + [19869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10905), + [19871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10906), + [19873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10906), + [19875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10907), + [19877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10907), + [19879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10908), + [19881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10908), + [19883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10909), + [19885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10909), + [19887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10910), + [19889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10910), + [19891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10911), + [19893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10911), + [19895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10912), + [19897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10912), + [19899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10913), + [19901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10913), + [19903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10914), + [19905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10914), + [19907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10915), + [19909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10915), + [19911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10916), + [19913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10916), + [19915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10454), + [19917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10454), + [19919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10919), + [19921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10919), + [19923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10455), + [19925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10455), + [19927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10922), + [19929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10922), + [19931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10456), + [19933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10456), + [19935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10924), + [19937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10924), + [19939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10457), + [19941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10457), + [19943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10926), + [19945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10926), + [19947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10458), + [19949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10458), + [19951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10927), + [19953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10927), + [19955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10459), + [19957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10459), + [19959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10929), + [19961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10929), + [19963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10460), + [19965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10460), + [19967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10932), + [19969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10932), + [19971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10461), + [19973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10461), + [19975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10934), + [19977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10934), + [19979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10462), + [19981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10462), + [19983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10935), + [19985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10935), + [19987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10463), + [19989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10463), + [19991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10937), + [19993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10937), + [19995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10464), + [19997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10464), + [19999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10939), + [20001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10939), + [20003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10465), + [20005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10465), + [20007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10941), + [20009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10941), + [20011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10466), + [20013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10466), + [20015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10942), + [20017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10942), + [20019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10467), + [20021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10467), + [20023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10944), + [20025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10944), + [20027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10468), + [20029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10468), + [20031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10945), + [20033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10945), + [20035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10469), + [20037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10469), + [20039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10947), + [20041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10947), + [20043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10470), + [20045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10470), + [20047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10472), + [20049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10472), + [20051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10957), + [20053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10957), + [20055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10958), + [20057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10958), + [20059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10960), + [20061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10960), + [20063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10962), + [20065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10962), + [20067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10963), + [20069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10963), + [20071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10735), + [20073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10735), + [20075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [20077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [20079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12260), + [20081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12836), + [20083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12399), + [20085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12415), + [20087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12550), + [20089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12609), + [20091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12609), + [20093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), + [20095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13492), + [20097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13492), + [20100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13235), + [20103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13235), + [20105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8495), + [20107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8496), + [20109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8497), + [20111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), + [20113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8500), + [20115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8501), + [20117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12571), + [20119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), + [20121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), + [20123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8516), + [20125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), + [20127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), + [20129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8519), + [20131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13049), + [20133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13052), + [20135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), + [20137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8778), + [20139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8780), + [20141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8781), + [20143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8782), + [20145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8782), + [20147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8783), + [20149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8784), + [20151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8785), + [20153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8786), + [20155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8787), + [20157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13141), + [20159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13141), + [20162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13071), + [20164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [20166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), + [20168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8788), + [20170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13657), + [20173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13039), + [20175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13039), + [20177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13657), + [20179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9705), + [20181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), + [20183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9704), + [20185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9706), + [20187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9707), + [20189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9708), + [20191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9709), + [20193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9710), + [20195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9711), + [20197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9712), + [20199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9713), + [20201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9714), + [20203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9220), + [20205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9221), + [20207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9222), + [20209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9223), + [20211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9224), + [20213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9225), + [20215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9226), + [20217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9227), + [20219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9228), + [20221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9229), + [20223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9230), + [20225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), + [20227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9551), + [20229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9055), + [20231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8566), + [20233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8565), + [20235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8567), + [20237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8568), + [20239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8569), + [20241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), + [20243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), + [20245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9054), + [20247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9550), + [20249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9552), + [20251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9553), + [20253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9554), + [20255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9554), + [20257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9555), + [20259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9556), + [20261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9557), + [20263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9558), + [20265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9559), + [20267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9560), + [20269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), + [20271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), + [20273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8574), + [20275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9056), + [20277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9057), + [20279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9058), + [20281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9059), + [20283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9060), + [20285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9061), + [20287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9062), + [20289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9063), + [20291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), + [20293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9064), + [20295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), + [20297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8505), + [20299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), + [20301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11671), + [20303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7994), + [20305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12647), + [20307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12647), + [20309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), + [20311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), + [20313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7973), + [20315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7976), + [20317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), + [20319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), + [20321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), + [20323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), + [20325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), + [20327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), + [20329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8510), + [20331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), + [20333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8512), + [20335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), + [20337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11438), + [20339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11613), + [20341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12643), + [20343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12643), + [20345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11420), + [20347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11613), + [20349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11595), + [20351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11642), + [20353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11717), + [20355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12920), + [20357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12920), + [20359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11641), + [20361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11717), + [20363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11707), + [20365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11693), + [20367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11693), + [20369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11616), + [20371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11616), + [20373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), + [20375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12533), + [20377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [20379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13580), + [20381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13580), + [20384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), + [20386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), + [20388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8548), + [20390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), + [20392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8550), + [20394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8550), + [20396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8551), + [20398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), + [20400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), + [20402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), + [20404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8555), + [20406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), + [20408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12731), + [20410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), + [20412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13544), + [20414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13544), + [20417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 1, 0, 0), + [20419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 1, 0, 0), + [20421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9606), + [20423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9607), + [20425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9608), + [20427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9609), + [20429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9610), + [20431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9611), + [20433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9612), + [20435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9613), + [20437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9614), + [20439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9615), + [20441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9616), + [20443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_number_prefix, 1, 1, 29), + [20445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13054), + [20447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13056), + [20449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9409), + [20451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9410), + [20453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9411), + [20455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9412), + [20457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9413), + [20459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9413), + [20461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9414), + [20463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9098), + [20465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9097), + [20467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9099), + [20469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9100), + [20471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9101), + [20473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9102), + [20475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9103), + [20477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9104), + [20479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9105), + [20481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9106), + [20483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9107), + [20485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9415), + [20487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9416), + [20489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9417), + [20491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9418), + [20493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9419), + [20495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [20497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [20499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11852), + [20501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [20503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [20505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [20507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [20509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [20511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [20513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [20515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [20517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [20519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [20521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [20523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [20525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [20527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [20529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [20531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [20533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [20535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [20537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [20539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [20541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [20543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [20545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [20547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [20549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [20551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [20553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [20555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [20557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [20559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [20561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [20563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [20565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [20567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [20569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [20571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [20573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [20575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [20577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8680), + [20579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8918), + [20581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8919), + [20583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8920), + [20585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8921), + [20587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8922), + [20589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8923), + [20591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8924), + [20593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), + [20595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), + [20597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8925), + [20599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8926), + [20601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8927), + [20603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8928), + [20605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_member, 3, 0, 27), + [20607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 3, 0, 27), + [20609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), + [20611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 292), + [20613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8830), + [20615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12250), + [20617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10552), + [20619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10994), + [20621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7918), + [20623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14797), + [20625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13375), + [20627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8644), + [20629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8645), + [20631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8646), + [20633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 1, 0, 0), + [20635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8730), + [20637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10056), + [20639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10646), + [20641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10086), + [20643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), + [20645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10633), + [20647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), + [20649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8647), + [20651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), + [20653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8649), + [20655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), + [20657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8651), + [20659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10547), + [20661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11620), + [20663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8652), + [20665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8653), + [20667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7556), + [20669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10580), + [20671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7575), + [20673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10520), + [20675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7983), + [20677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), + [20679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10654), + [20681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [20683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [20685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10674), + [20687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [20689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [20691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10579), + [20693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [20695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [20697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10637), + [20699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [20701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7978), + [20703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11617), + [20705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [20707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10594), + [20709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [20711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [20713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10621), + [20715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), + [20717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10557), + [20719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7965), + [20721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11587), + [20723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11627), + [20725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8678), + [20727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10566), + [20729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7941), + [20731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11191), + [20733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10643), + [20735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11619), + [20737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_frm_begin_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12250), + [20740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frm_begin_block_repeat1, 2, 0, 0), SHIFT_REPEAT(10552), + [20743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_frm_begin_block_repeat1, 2, 0, 0), SHIFT_REPEAT(10994), + [20746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_frm_begin_block_repeat1, 2, 0, 0), + [20748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_frm_begin_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14797), + [20751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_frm_begin_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13375), + [20754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frm_begin_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13053), + [20757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11280), + [20759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10615), + [20761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11706), + [20763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 246), + [20765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8743), + [20767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), + [20769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10542), + [20771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11608), + [20773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10546), + [20775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11614), + [20777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11636), + [20779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10656), + [20781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10658), + [20783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10068), + [20785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10662), + [20787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10107), + [20789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8654), + [20791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [20793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10601), + [20795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [20797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7919), + [20799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10541), + [20801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7971), + [20803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10581), + [20805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10583), + [20807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [20809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10606), + [20811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), + [20813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10560), + [20815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11623), + [20817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [20819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [20821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7339), + [20823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7344), + [20825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8949), + [20827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8950), + [20829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8951), + [20831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8952), + [20833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8953), + [20835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8954), + [20837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [20839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [20841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 8, 0, 310), + [20843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [20845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [20847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [20849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [20851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 3, 0, 0), + [20853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [20855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [20857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [20859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [20861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [20863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [20865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [20867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [20869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [20871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [20873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [20875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [20877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [20879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [20881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [20883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [20885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [20887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [20889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [20891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [20893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [20895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [20897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [20899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [20901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [20903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [20905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [20907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [20909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [20911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [20913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [20915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [20917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10331), + [20919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10398), + [20921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [20923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [20925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [20927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [20929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [20931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [20933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [20935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [20937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8957), + [20939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8962), + [20941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8964), + [20943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8976), + [20945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8977), + [20947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [20949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [20951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [20953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [20955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [20957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [20959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [20961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [20963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [20965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [20967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10165), + [20969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10233), + [20971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10134), + [20973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10198), + [20975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [20977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [20979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [20981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [20983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [20985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [20987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [20989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [20991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [20993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [20995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [20997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [20999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [21001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [21003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [21005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [21007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [21009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [21011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [21013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [21015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [21017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [21019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 9, 0, 323), + [21021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [21023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [21025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [21027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [21029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [21031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [21033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [21035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [21037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [21039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [21041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [21043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [21045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [21047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [21049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_bound, 1, 0, 0), + [21051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), + [21053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [21055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [21057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_each_header, 5, 0, 193), + [21059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [21061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [21063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [21065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [21067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10368), + [21069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10453), + [21071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [21073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [21075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [21077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [21079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), + [21081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), + [21083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [21085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [21087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_each_header, 6, 0, 257), + [21089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [21091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [21093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13106), + [21095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11705), + [21097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11889), + [21099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13383), + [21101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument, 1, 0, 0), SHIFT(1320), + [21104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8127), + [21106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), + [21108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13167), + [21110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument, 1, 0, 0), SHIFT(402), + [21113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13243), + [21115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13314), + [21117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument, 1, 0, 0), SHIFT(1151), + [21120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13597), + [21122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_frm_begin_property_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12282), + [21125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frm_begin_property_block_repeat1, 2, 0, 0), SHIFT_REPEAT(10707), + [21128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_frm_begin_property_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14854), + [21131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_frm_begin_property_block_repeat1, 2, 0, 0), + [21133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_frm_begin_property_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13653), + [21136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_frm_begin_property_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13053), + [21139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12282), + [21141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10724), + [21143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14854), + [21145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11626), + [21147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13653), + [21149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10719), + [21151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11669), + [21153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument, 1, 0, 0), SHIFT(584), + [21156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13174), + [21158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument, 1, 0, 0), SHIFT(10080), + [21161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10722), + [21163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7980), + [21165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument, 1, 0, 0), SHIFT(820), + [21168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument, 1, 0, 0), SHIFT(1405), + [21171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10707), + [21173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11668), + [21175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument, 1, 0, 0), SHIFT(10088), + [21178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13458), + [21180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7921), + [21182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11582), + [21184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13170), + [21186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument, 1, 0, 0), SHIFT(1831), + [21189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument, 1, 0, 0), SHIFT(1269), + [21192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__argument, 1, 0, 0), SHIFT(1169), + [21195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_bound, 3, 0, 137), + [21197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11925), + [21199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [21201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [21203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [21205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [21207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8661), + [21209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [21211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__condition_expression, 1, 0, 0), SHIFT(1169), + [21214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11036), + [21216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [21218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [21220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [21222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__condition_expression, 1, 0, 0), SHIFT(10088), + [21225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__condition_expression, 1, 0, 0), SHIFT(1405), + [21228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [21230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [21232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11011), + [21234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [21236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [21238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12276), + [21240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [21242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [21244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [21246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [21248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [21250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__condition_expression, 1, 0, 0), SHIFT(1320), + [21253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10080), + [21255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__condition_expression, 1, 0, 0), SHIFT(1831), + [21258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [21260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11955), + [21262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [21264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11095), + [21266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11044), + [21268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [21270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [21272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [21274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10201), + [21276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [21278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [21280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [21282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [21284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [21286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__condition_expression, 1, 0, 0), SHIFT(1269), + [21289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10225), + [21291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [21293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [21295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8198), + [21297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11096), + [21299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [21301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8910), + [21303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11086), + [21305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [21307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [21309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9897), + [21311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10587), + [21313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9898), + [21315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9899), + [21317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9900), + [21319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9901), + [21321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9902), + [21323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9903), + [21325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9904), + [21327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9905), + [21329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9906), + [21331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9907), + [21333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [21335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8521), + [21337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [21339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11699), + [21341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), + [21343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [21345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__condition_expression, 1, 0, 0), SHIFT(584), + [21348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [21350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [21352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9909), + [21354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [21356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [21358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11697), + [21360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [21362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [21364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10685), + [21366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8601), + [21368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8619), + [21370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [21372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11052), + [21374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10591), + [21376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8662), + [21378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [21380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8679), + [21382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [21384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10452), + [21386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11031), + [21388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [21390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10598), + [21392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10394), + [21394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8705), + [21396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [21398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [21400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8721), + [21402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10661), + [21404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8746), + [21406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [21408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8765), + [21410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10602), + [21412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__condition_expression, 1, 0, 0), SHIFT(1151), + [21415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [21417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8803), + [21419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__condition_expression, 1, 0, 0), SHIFT(402), + [21422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [21424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8820), + [21426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [21428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10626), + [21430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8848), + [21432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [21434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8865), + [21436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10642), + [21438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8890), + [21440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [21442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8908), + [21444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10676), + [21446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8932), + [21448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [21450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8948), + [21452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10577), + [21454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10647), + [21456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10616), + [21458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10604), + [21460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10673), + [21462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10664), + [21464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10618), + [21466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10635), + [21468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10657), + [21470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10670), + [21472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10686), + [21474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10617), + [21476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10619), + [21478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10610), + [21480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10675), + [21482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10585), + [21484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10605), + [21486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10582), + [21488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10622), + [21490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10599), + [21492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10640), + [21494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10597), + [21496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10603), + [21498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10611), + [21500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10576), + [21502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10623), + [21504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10639), + [21506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10652), + [21508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10666), + [21510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10680), + [21512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10655), + [21514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10607), + [21516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10650), + [21518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10608), + [21520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10645), + [21522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10630), + [21524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10613), + [21526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10660), + [21528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10596), + [21530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10649), + [21532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10600), + [21534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10636), + [21536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10688), + [21538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10592), + [21540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10612), + [21542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10648), + [21544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10609), + [21546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10624), + [21548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10638), + [21550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10651), + [21552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10665), + [21554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10682), + [21556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11728), + [21558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13346), + [21560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), + [21562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11655), + [21564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [21566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11710), + [21568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), + [21570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11713), + [21572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11723), + [21574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), + [21576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11725), + [21578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__condition_expression, 1, 0, 0), SHIFT(820), + [21581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [21583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11656), + [21585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), + [21587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11658), + [21589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11653), + [21591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), + [21593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11665), + [21595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [21597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11670), + [21599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8220), + [21601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11673), + [21603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11676), + [21605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8227), + [21607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11678), + [21609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11681), + [21611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8234), + [21613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11684), + [21615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [21617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), + [21619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), + [21621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11073), + [21623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__condition_expression, 1, 0, 0), SHIFT(10080), + [21626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [21628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), + [21630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10088), + [21632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11020), + [21634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11876), + [21636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11890), + [21638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [21640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11899), + [21642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [21644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11907), + [21646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11918), + [21648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [21650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [21652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [21654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11935), + [21656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [21658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11941), + [21660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11947), + [21662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10681), + [21664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12207), + [21666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11377), + [21668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), + [21670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14030), + [21672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [21674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14364), + [21676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), + [21678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), + [21680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), + [21682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8526), + [21684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), + [21686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), + [21688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), + [21690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), + [21692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), + [21694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), + [21696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8533), + [21698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8878), + [21700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8880), + [21702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), + [21704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [21706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8883), + [21708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8884), + [21710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8885), + [21712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8631), + [21714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8633), + [21716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), + [21718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), + [21720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), + [21722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8637), + [21724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8638), + [21726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14165), + [21728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11754), + [21730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10567), + [21732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12271), + [21734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8968), + [21736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8970), + [21738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [21740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), + [21742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8973), + [21744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8974), + [21746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8975), + [21748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), + [21750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8603), + [21752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8604), + [21754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8605), + [21756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8606), + [21758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8607), + [21760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), + [21762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8609), + [21764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8610), + [21766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8611), + [21768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), + [21770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8664), + [21772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8665), + [21774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8666), + [21776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8667), + [21778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8668), + [21780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8669), + [21782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8670), + [21784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8671), + [21786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8672), + [21788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8673), + [21790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8674), + [21792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7530), + [21794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14330), + [21796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14774), + [21798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12477), + [21800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__procedure_modifier, 1, 0, 4), + [21802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14979), + [21804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12154), + [21806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13203), + [21808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13249), + [21810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13275), + [21812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8783), + [21814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8706), + [21816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8707), + [21818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8708), + [21820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8709), + [21822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8710), + [21824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8711), + [21826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8712), + [21828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8713), + [21830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8714), + [21832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8715), + [21834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8716), + [21836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9015), + [21838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9017), + [21840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), + [21842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), + [21844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9020), + [21846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9021), + [21848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9022), + [21850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8748), + [21852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8749), + [21854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8750), + [21856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8751), + [21858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8752), + [21860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8753), + [21862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8754), + [21864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8755), + [21866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8756), + [21868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8757), + [21870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8758), + [21872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9072), + [21874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9074), + [21876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), + [21878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8243), + [21880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9077), + [21882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), + [21884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9079), + [21886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [21888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15143), + [21890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15144), + [21892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13057), + [21894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15071), + [21896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12060), + [21898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13195), + [21900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13197), + [21902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13199), + [21904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8805), + [21906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8806), + [21908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8807), + [21910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8808), + [21912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8809), + [21914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8810), + [21916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8811), + [21918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8812), + [21920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8813), + [21922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8814), + [21924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8815), + [21926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9115), + [21928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9117), + [21930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), + [21932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), + [21934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9120), + [21936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9121), + [21938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9122), + [21940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11862), + [21942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10575), + [21944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12251), + [21946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8559), + [21948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8560), + [21950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8561), + [21952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8578), + [21954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8592), + [21956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8593), + [21958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), + [21960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8595), + [21962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8596), + [21964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), + [21966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), + [21968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8849), + [21970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8850), + [21972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8851), + [21974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8852), + [21976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8853), + [21978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8854), + [21980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8855), + [21982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8856), + [21984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8857), + [21986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8858), + [21988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8859), + [21990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9144), + [21992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9146), + [21994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), + [21996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), + [21998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9149), + [22000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9150), + [22002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9151), + [22004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8892), + [22006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8893), + [22008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8894), + [22010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8895), + [22012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8896), + [22014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8897), + [22016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8898), + [22018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8899), + [22020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8900), + [22022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8901), + [22024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8902), + [22026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [22028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15122), + [22030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15123), + [22032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13048), + [22034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14787), + [22036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12160), + [22038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13334), + [22040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13418), + [22042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13158), + [22044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9525), + [22046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9527), + [22048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), + [22050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), + [22052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9530), + [22054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9531), + [22056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9532), + [22058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8933), + [22060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8934), + [22062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8935), + [22064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8936), + [22066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8937), + [22068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8938), + [22070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8939), + [22072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8940), + [22074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8941), + [22076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8942), + [22078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8943), + [22080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9651), + [22082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9653), + [22084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), + [22086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [22088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9656), + [22090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9657), + [22092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9658), + [22094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12147), + [22096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11080), + [22098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility, 1, 0, 0), + [22100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11076), + [22102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12204), + [22104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11201), + [22106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12175), + [22108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11125), + [22110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12253), + [22112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12141), + [22114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12498), + [22116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12259), + [22118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11227), + [22120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12278), + [22122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11117), + [22124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12219), + [22126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11129), + [22128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12290), + [22130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11119), + [22132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12258), + [22134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11204), + [22136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12210), + [22138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11126), + [22140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12230), + [22142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11162), + [22144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12397), + [22146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11198), + [22148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14386), + [22150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), + [22152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), + [22154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), + [22156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15218), + [22158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11003), + [22160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11386), + [22162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7899), + [22164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), + [22166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10011), + [22168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13891), + [22170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), + [22172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), + [22174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7072), + [22176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15210), + [22178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11337), + [22180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [22182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7893), + [22184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9999), + [22186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [22188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [22190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), + [22192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13250), + [22194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [22196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), + [22198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), + [22200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12666), + [22202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15050), + [22204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), + [22206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), + [22208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), + [22210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15214), + [22212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [22214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11379), + [22216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7897), + [22218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10007), + [22220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [22222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [22224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [22226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [22228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13250), + [22231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [22233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [22235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [22237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [22239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [22241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [22243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [22245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [22247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [22249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [22251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [22253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [22255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_number_prefix, 2, 1, 29), + [22257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_preprocessor_elseif, 4, 0, 97), + [22259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_preprocessor_elseif, 4, 0, 97), + [22261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), + [22263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [22265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10701), + [22267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), + [22269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8844), + [22271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [22273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [22275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [22277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [22279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [22281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6550), + [22283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [22285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [22287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [22289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [22291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [22293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [22295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), + [22297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [22299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [22301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [22303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [22305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [22307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [22309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [22311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [22313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [22315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), + [22317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), + [22319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [22321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [22323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [22325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [22327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), + [22329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [22331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [22333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [22335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [22337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15052), + [22339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10082), + [22341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [22343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [22345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), + [22347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), + [22349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [22351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), + [22353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), + [22355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10563), + [22357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [22359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11757), + [22361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [22363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [22365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [22367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [22369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), + [22371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10971), + [22373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [22375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [22377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [22379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [22381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11967), + [22383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12697), + [22385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11913), + [22387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11838), + [22389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12882), + [22391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), + [22393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [22395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [22397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [22399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [22401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [22403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [22405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12234), + [22407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11258), + [22409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14171), + [22411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), + [22413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [22415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12003), + [22417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11263), + [22419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14358), + [22421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), + [22423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [22425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [22427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [22429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8233), + [22431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8627), + [22433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11454), + [22435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14926), + [22437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [22439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10193), + [22441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11532), + [22443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14929), + [22445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [22447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [22449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11269), + [22451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13680), + [22453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11270), + [22455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13684), + [22457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [22459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [22461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13868), + [22463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13869), + [22465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13457), + [22467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), + [22469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), + [22471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7144), + [22473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15155), + [22475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11384), + [22477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [22479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9364), + [22481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [22483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [22485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [22487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13615), + [22489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [22491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [22493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [22495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), + [22497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), + [22499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [22501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [22503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13406), + [22505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7302), + [22507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13176), + [22509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [22511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14637), + [22513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), + [22515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [22517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [22519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [22521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), + [22523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [22525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [22527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [22529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15113), + [22531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [22533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [22535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4929), + [22537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [22539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [22541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14528), + [22543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7876), + [22545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7877), + [22547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6740), + [22549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15230), + [22551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11423), + [22553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), + [22555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10023), + [22557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10151), + [22559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13963), + [22561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), + [22563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [22565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [22567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15222), + [22569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11403), + [22571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), + [22573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10015), + [22575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [22577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10344), + [22579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [22581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [22583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [22585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11539), + [22587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13736), + [22589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11332), + [22591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13837), + [22593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11333), + [22595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13843), + [22597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11541), + [22599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13769), + [22601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [22603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [22605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13903), + [22607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13905), + [22609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7379), + [22611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [22613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [22615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11341), + [22617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14123), + [22619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11342), + [22621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14138), + [22623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [22625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14332), + [22627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14333), + [22629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13245), + [22631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13303), + [22633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8701), + [22635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [22637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [22639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), + [22641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [22643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [22645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [22647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [22649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [22651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [22653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [22655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13663), + [22657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [22659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13444), + [22661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [22663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), + [22665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [22667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [22669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [22671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [22673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [22675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13297), + [22677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11551), + [22679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_preprocessor_block, 1, 0, 0), + [22681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_preprocessor_block, 1, 0, 0), + [22683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [22685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [22687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [22689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13405), + [22691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13435), + [22693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [22695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [22697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [22699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [22701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [22703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [22705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [22707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10066), + [22709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13564), + [22711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13107), + [22713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [22715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [22717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [22719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [22721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [22723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13512), + [22725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [22727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13558), + [22729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [22731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [22733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [22735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [22737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [22739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [22741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13256), + [22743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13288), + [22745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [22747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [22749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14101), + [22751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [22753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [22755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [22757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13563), + [22759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13595), + [22761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [22763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [22765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [22767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7288), + [22769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [22771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [22773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13200), + [22775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [22777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13222), + [22779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [22781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12620), + [22783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [22785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [22787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [22789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [22791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [22793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [22795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10373), + [22797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [22799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10126), + [22801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(12234), + [22804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(11454), + [22807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_declaration_repeat1, 2, 0, 0), + [22809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(7680), + [22812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [22814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [22816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [22818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [22820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [22822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [22824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [22826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [22828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11689), + [22830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [22832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [22834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), + [22836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), + [22838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [22840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [22842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [22844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [22846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10055), + [22848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [22850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [22852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [22854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [22856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [22858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13743), + [22860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), + [22862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), + [22864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [22866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15226), + [22868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11412), + [22870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), + [22872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10019), + [22874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10169), + [22876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14761), + [22878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), + [22880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), + [22882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [22884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15205), + [22886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11264), + [22888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7890), + [22890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9995), + [22892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), + [22894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [22896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [22898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [22900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [22902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), + [22904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [22906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [22908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [22910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15131), + [22912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), + [22914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7884), + [22916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), + [22918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15233), + [22920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11431), + [22922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7907), + [22924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10026), + [22926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [22928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [22930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [22932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [22934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [22936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [22938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [22940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [22942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11286), + [22944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13854), + [22946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11555), + [22948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14739), + [22950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(12003), + [22953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(11532), + [22956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_declaration_repeat1, 2, 0, 0), + [22958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(7909), + [22961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), + [22963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [22965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13994), + [22967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [22969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14007), + [22971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [22973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10174), + [22975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12207), + [22978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11551), + [22981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_preprocessor_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7910), + [22984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_preprocessor_block_repeat1, 2, 0, 0), + [22986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_preprocessor_block_repeat1, 2, 0, 0), + [22988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15028), + [22990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [22992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), + [22994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [22996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [22998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [23000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_type_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(13406), + [23003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10379), + [23005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7367), + [23007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [23009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), + [23011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [23013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11630), + [23015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13336), + [23017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13190), + [23019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12108), + [23021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15156), + [23023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), + [23025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [23027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [23029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [23031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13860), + [23033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [23035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [23037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14176), + [23039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [23041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), + [23043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 175), + [23045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10561), + [23047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 122), + [23049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [23051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_preprocessor_else, 2, 0, 0), + [23053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [23055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [23057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [23059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [23061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 126), + [23063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [23065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [23067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 91), + [23069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [23071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [23073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [23075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 8), + [23077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 92), + [23079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [23081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [23083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 90), + [23085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [23087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [23089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13818), + [23091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12951), + [23093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), + [23095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [23097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [23099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 127), + [23101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12888), + [23103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11664), + [23105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14612), + [23107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8014), + [23109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11719), + [23111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14180), + [23113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11660), + [23115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14204), + [23117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11657), + [23119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13959), + [23121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14405), + [23123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11659), + [23125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14468), + [23127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14616), + [23129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14269), + [23131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), + [23133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8207), + [23135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), + [23137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [23139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14764), + [23141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11666), + [23143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14776), + [23145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14883), + [23147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), + [23149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [23151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11672), + [23153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13992), + [23155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14076), + [23157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11674), + [23159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14086), + [23161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14126), + [23163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12569), + [23165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10536), + [23167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11677), + [23169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14750), + [23171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14791), + [23173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11680), + [23175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14795), + [23177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14830), + [23179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11683), + [23181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13777), + [23183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15184), + [23185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13812), + [23187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11685), + [23189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13825), + [23191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13847), + [23193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11537), + [23195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10309), + [23197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12658), + [23199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10558), + [23201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11682), + [23203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15130), + [23205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9910), + [23207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11721), + [23209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14870), + [23211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11711), + [23213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14344), + [23215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14437), + [23217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11714), + [23219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14452), + [23221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14524), + [23223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11719), + [23226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_statement_repeat1, 2, 0, 0), + [23228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8014), + [23231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11852), + [23234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14642), + [23236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11724), + [23238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15219), + [23240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13855), + [23242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11726), + [23244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14406), + [23246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15183), + [23248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11654), + [23250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13909), + [23252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 125), + [23254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13915), + [23256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [23258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13916), + [23260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [23262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [23264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [23266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13982), + [23268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_preprocessor_if, 9, 0, 164), + [23270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_preprocessor_if, 9, 0, 164), + [23272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13941), + [23274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [23276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [23278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [23280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [23282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [23284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), + [23286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [23288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [23290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10550), + [23292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14693), + [23294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14696), + [23296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14008), + [23298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [23300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [23302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14242), + [23304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14748), + [23306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [23308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13133), + [23310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13452), + [23312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13500), + [23314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13503), + [23316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [23318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12273), + [23320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12711), + [23322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14244), + [23324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [23326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [23328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 178), + [23330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14925), + [23332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13738), + [23334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13739), + [23336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [23338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [23340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [23342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13774), + [23344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 25), + [23346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14556), + [23348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14901), + [23350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10343), + [23352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [23354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [23356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [23358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13343), + [23360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13493), + [23362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13494), + [23364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13095), + [23366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14290), + [23368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [23370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [23372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [23374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [23376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14148), + [23378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14149), + [23380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_preprocessor_if, 7, 0, 164), + [23382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_preprocessor_if, 7, 0, 164), + [23384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_preprocessor_if, 7, 0, 97), + [23386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_preprocessor_if, 7, 0, 97), + [23388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [23390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [23392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [23394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14192), + [23396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_let_header, 4, 0, 84), + [23398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11652), + [23400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10524), + [23402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 133), + [23404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14473), + [23406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14477), + [23408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14490), + [23410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [23412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [23414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [23416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_get_header, 4, 0, 84), + [23418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [23420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [23422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14188), + [23424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [23426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_set_header, 4, 0, 84), + [23428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [23430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13149), + [23432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [23434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13650), + [23436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_member, 2, 0, 24), + [23438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_member, 2, 0, 24), + [23440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [23442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [23444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [23446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14102), + [23448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), + [23450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_member, 3, 0, 54), + [23452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_member, 3, 0, 54), + [23454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14003), + [23456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [23458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13628), + [23460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13146), + [23462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13162), + [23464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13166), + [23466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14213), + [23468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), + [23470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [23472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [23474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10559), + [23476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_header, 3, 0, 40), + [23478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_preprocessor_if, 8, 0, 97), + [23480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_preprocessor_if, 8, 0, 97), + [23482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_preprocessor_if, 6, 0, 97), + [23484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_preprocessor_if, 6, 0, 97), + [23486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14972), + [23488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), + [23490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [23492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13572), + [23494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13475), + [23496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13476), + [23498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13477), + [23500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [23502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12270), + [23504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [23506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [23508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [23510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [23512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), + [23514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13157), + [23516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13279), + [23518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13312), + [23520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13313), + [23522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14448), + [23524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [23526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14449), + [23528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [23530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_let_header, 3, 0, 22), + [23532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [23534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [23536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [23538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 181), + [23540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14605), + [23542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [23544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [23546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [23548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [23550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 171), + [23552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [23554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [23556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(8680), + [23559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14143), + [23561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14144), + [23563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [23565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [23567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13428), + [23569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13467), + [23571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13479), + [23573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13498), + [23575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [23577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [23579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14336), + [23581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_preprocessor_if, 8, 0, 164), + [23583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_preprocessor_if, 8, 0, 164), + [23585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [23587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), + [23589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [23591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13748), + [23593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13754), + [23595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_get_header, 3, 0, 22), + [23597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14729), + [23599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_set_header, 3, 0, 22), + [23601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [23603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14655), + [23605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [23607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11013), + [23609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [23611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [23613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), + [23615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [23617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [23619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [23621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [23623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [23625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 234), + [23627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [23629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), + [23631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [23633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [23635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_header, 2, 0, 7), + [23637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14809), + [23639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [23641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14827), + [23643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [23645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8730), + [23647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14836), + [23649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15171), + [23651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15175), + [23653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14864), + [23655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [23657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14880), + [23659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [23661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [23663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13703), + [23665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15215), + [23667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14905), + [23669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_member, 1, 0, 8), + [23671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 1, 0, 8), + [23673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8479), + [23675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13712), + [23677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15048), + [23679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14930), + [23681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [23683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13132), + [23685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13635), + [23687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13637), + [23689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13645), + [23691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), + [23693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14955), + [23695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [23697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [23699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [23701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [23703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [23705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14980), + [23707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [23709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [23711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [23713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 130), + [23715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15005), + [23717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [23719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [23721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13809), + [23723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [23725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13890), + [23727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13879), + [23729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [23731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11200), + [23733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13632), + [23735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13565), + [23737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13566), + [23739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13574), + [23741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8311), + [23743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12984), + [23745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14320), + [23747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13355), + [23749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13655), + [23752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_erase_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11084), + [23755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [23757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), + [23759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [23761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__procedure_modifier, 2, 0, 13), + [23763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_next_variable_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11021), + [23766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13644), + [23768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), + [23770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8470), + [23772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13016), + [23774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11205), + [23776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [23778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), + [23780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_preprocessor_if_repeat1, 2, 0, 0), + [23782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_preprocessor_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7682), + [23785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_preprocessor_if_repeat1, 2, 0, 0), + [23787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12804), + [23789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [23791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14849), + [23793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13887), + [23795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15106), + [23797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [23799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_close_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8290), + [23802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [23804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8385), + [23806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13008), + [23808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redim_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11205), + [23811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [23813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), + [23815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13001), + [23817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), + [23819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12966), + [23821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [23823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preprocessor_if_repeat1, 2, 0, 0), + [23825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preprocessor_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7706), + [23828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preprocessor_if_repeat1, 2, 0, 0), + [23830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), + [23832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13028), + [23834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8360), + [23836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12979), + [23838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13655), + [23840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [23842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8339), + [23844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13021), + [23846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(13644), + [23849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11622), + [23851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13599), + [23853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15100), + [23855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12840), + [23857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12822), + [23859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12823), + [23861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11021), + [23863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__procedure_modifier, 1, 0, 2), + [23865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), + [23867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7624), + [23870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11084), + [23872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_statement_repeat1, 2, 0, 148), SHIFT_REPEAT(11537), + [23875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), + [23877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12993), + [23879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8384), + [23881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12431), + [23883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [23885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), + [23887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14881), + [23889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 2, 0, 0), SHIFT_REPEAT(7550), + [23892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unparenthesized_argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7608), + [23895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [23897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 187), + [23899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 24), + [23901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 233), + [23903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 237), + [23905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 124), + [23907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 240), + [23909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__procedure_modifier, 1, 0, 4), + [23911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12463), + [23913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [23915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [23917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), + [23919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11362), + [23921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), + [23923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10003), + [23925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), + [23927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13514), + [23929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [23931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [23933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), + [23935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), + [23937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8288), + [23939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 129), + [23941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_member_expression_repeat1, 2, 0, 45), + [23943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_member_expression_repeat1, 2, 0, 45), SHIFT_REPEAT(12391), + [23946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 132), + [23948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 195), + [23950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8353), + [23952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8292), + [23954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_let_header, 4, 0, 49), + [23956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), + [23958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(8135), + [23961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_get_header, 4, 0, 49), + [23963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_set_header, 4, 0, 49), + [23965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_access, 1, 0, 0), + [23967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13060), + [23969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [23971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [23973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [23975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8294), + [23977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [23979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [23981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), + [23983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 54), + [23985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13466), + [23987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13525), + [23989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [23991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [23993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), + [23995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 177), + [23997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10551), + [23999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_header, 4, 0, 82), + [24001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [24003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [24005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [24007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_statement_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [24010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 318), + [24012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 319), + [24014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [24016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [24018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [24020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13538), + [24022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [24024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [24026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [24028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), + [24030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10306), + [24032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [24034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [24036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [24038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [24040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [24042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13552), + [24044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sub_header, 2, 0, 7), + [24046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [24048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [24050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [24052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 331), + [24054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10554), + [24056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), + [24058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), + [24060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [24062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [24064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), + [24066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_sequence, 1, 0, 0), + [24068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [24070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [24072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7142), + [24074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10039), + [24076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10037), + [24078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10307), + [24080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10325), + [24082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility, 1, 0, 0), + [24084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), + [24086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13561), + [24088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [24090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10035), + [24092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9920), + [24094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10313), + [24096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_let_header, 5, 0, 117), + [24098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14512), + [24100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), + [24102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14514), + [24104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [24106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [24108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), + [24110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_get_header, 5, 0, 117), + [24112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__conditional_sub_headers_repeat1, 2, 0, 219), + [24114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional_sub_headers_repeat1, 2, 0, 219), SHIFT_REPEAT(7864), + [24117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__conditional_sub_headers_repeat1, 2, 0, 219), + [24119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8276), + [24121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_set_header, 5, 0, 117), + [24123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13488), + [24125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_mode, 1, 0, 0), + [24127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 180), + [24129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_name, 1, 0, 0), + [24131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12391), + [24133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13089), + [24135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 174), + [24137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14596), + [24139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), + [24141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14623), + [24143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [24145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [24147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), + [24149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sub_header, 3, 0, 40), + [24151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10324), + [24153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__conditional_function_headers_repeat1, 2, 0, 221), + [24155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional_function_headers_repeat1, 2, 0, 221), SHIFT_REPEAT(7878), + [24158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__conditional_function_headers_repeat1, 2, 0, 221), + [24160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [24162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [24164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), + [24166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 170), + [24168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13575), + [24170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), + [24172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), + [24174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), + [24176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [24178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [24180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), + [24182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14753), + [24184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), + [24186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14765), + [24188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14047), + [24190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14081), + [24192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 2, 0, 0), SHIFT_REPEAT(7559), + [24195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8325), + [24197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), + [24199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15073), + [24201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15084), + [24203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), + [24205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13673), + [24207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13699), + [24209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8415), + [24211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14132), + [24213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [24215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [24217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), + [24219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [24221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [24223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), + [24225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__conditional_property_headers_repeat1, 2, 0, 223), + [24227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional_property_headers_repeat1, 2, 0, 223), SHIFT_REPEAT(7891), + [24230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__conditional_property_headers_repeat1, 2, 0, 223), + [24232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8267), + [24234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13856), + [24236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13859), + [24238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8351), + [24240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8326), + [24242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13862), + [24244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13886), + [24246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8465), + [24248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14135), + [24250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14136), + [24252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14137), + [24254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 184), + [24256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10042), + [24258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10040), + [24260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10335), + [24262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 283), + [24264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12922), + [24266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13502), + [24268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [24270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [24272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), + [24274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10044), + [24276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10036), + [24278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10346), + [24280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14002), + [24282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14041), + [24284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), + [24286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13819), + [24288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12714), + [24290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13822), + [24292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_member_expression, 2, 0, 16), + [24294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 230), + [24296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_header, 3, 0, 20), + [24298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [24300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6673), + [24302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), + [24304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13874), + [24306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [24308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [24310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [24312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [24314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8686), + [24316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8982), + [24318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [24320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [24322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [24324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [24326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), + [24328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [24330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_statement_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(341), + [24333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11661), + [24335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [24337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12146), + [24339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12196), + [24341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13073), + [24343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [24345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [24347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [24349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [24351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [24353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [24355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12072), + [24357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [24359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [24361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [24363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [24365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [24367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [24369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [24371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [24373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [24375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [24377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11661), + [24380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [24382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15042), + [24384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7679), + [24386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7677), + [24388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [24390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [24392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [24394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [24396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [24398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [24400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [24402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [24404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [24406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), + [24408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), + [24410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11598), + [24412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [24414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [24416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [24418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [24420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [24422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [24424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__procedure_modifier, 2, 0, 13), + [24426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [24428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [24430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [24432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14366), + [24434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14391), + [24436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13127), + [24438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [24440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), + [24442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13762), + [24444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [24446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [24448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [24450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [24452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [24454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [24456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), + [24458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [24460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [24462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13926), + [24464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14085), + [24466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13156), + [24468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11602), + [24470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [24472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [24474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [24476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [24478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10061), + [24480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10072), + [24482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [24484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [24486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [24488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [24490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [24492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [24494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [24496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [24498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [24500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__procedure_modifier, 1, 0, 2), + [24502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [24504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), + [24506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [24508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [24510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9025), + [24512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(8346), + [24515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_bounds_repeat1, 2, 0, 0), + [24517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [24519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [24521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [24523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [24525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [24527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [24529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [24531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [24533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [24535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [24537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [24539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [24541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [24543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [24545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [24547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [24549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [24551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [24553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [24555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [24557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [24559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [24561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [24563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [24565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), + [24567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), + [24569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [24571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [24573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [24575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [24577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [24579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [24581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_preprocessor_elseif, 5, 0, 164), + [24583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_preprocessor_elseif, 5, 0, 164), + [24585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10342), + [24587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10333), + [24589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [24591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [24593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [24595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [24597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [24599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [24601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [24603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [24605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [24607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [24609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [24611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), + [24613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), + [24615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [24617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11531), + [24619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [24621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [24623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), + [24625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [24627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [24629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [24631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [24633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10048), + [24635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10047), + [24637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14782), + [24639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [24641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [24643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [24645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [24647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_sequence, 2, 0, 0), + [24649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [24651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [24653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), + [24655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10334), + [24657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9039), + [24659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [24661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [24663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [24665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [24667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [24669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10545), + [24671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [24673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10135), + [24675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10145), + [24677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [24679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [24681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7311), + [24683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), + [24685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [24687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [24689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), + [24691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [24693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [24695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [24697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [24699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [24701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__conditional_sub_headers_repeat1, 7, 0, 333), + [24703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__conditional_sub_headers_repeat1, 7, 0, 333), + [24705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [24707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [24709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [24711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [24713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [24715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [24717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__conditional_function_headers_repeat1, 7, 0, 337), + [24719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__conditional_function_headers_repeat1, 7, 0, 337), + [24721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [24723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [24725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [24727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [24729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [24731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [24733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__conditional_property_headers_repeat1, 7, 0, 341), + [24735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__conditional_property_headers_repeat1, 7, 0, 341), + [24737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [24739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [24741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [24743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [24745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [24747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [24749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10060), + [24751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [24753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [24755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [24757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [24759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10117), + [24761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [24763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [24765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [24767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [24769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), + [24771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), + [24773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [24775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11514), + [24777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11417), + [24779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [24781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [24783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [24785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [24787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [24789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), + [24791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), + [24793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [24795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [24797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [24799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [24801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [24803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [24805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [24807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [24809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [24811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [24813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10166), + [24815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10164), + [24817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [24819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), + [24821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [24823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [24825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [24827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11418), + [24829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), + [24831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [24833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [24835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7678), + [24837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [24839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [24841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [24843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [24845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [24847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11816), + [24849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10709), + [24851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8545), + [24853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10531), + [24855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat2, 2, 0, 0), SHIFT_REPEAT(7561), + [24858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [24860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8829), + [24862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [24864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [24866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [24868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), + [24870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), + [24872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14990), + [24874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), + [24876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), + [24878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15162), + [24880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [24882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13765), + [24884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13846), + [24886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8729), + [24888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [24890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [24892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13917), + [24894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [24896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [24898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14066), + [24900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [24902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [24904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14223), + [24906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [24908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [24910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [24912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [24914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [24916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8929), + [24918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [24920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [24922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14048), + [24924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13729), + [24926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12878), + [24928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10715), + [24930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_identifier, 1, 0, 1), + [24932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [24934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [24936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), + [24938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11530), + [24940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [24942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [24944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), + [24946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [24948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14949), + [24950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13758), + [24952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [24954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [24956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11326), + [24958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11330), + [24960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [24962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), + [24964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10371), + [24966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10366), + [24968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [24970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [24972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [24974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [24976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [24978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10710), + [24980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [24982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13955), + [24984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_elseif, 5, 0, 164), + [24986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_elseif, 5, 0, 164), + [24988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_line_block, 1, 0, 0), + [24990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13665), + [24992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9365), + [24994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14173), + [24996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14303), + [24998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [25000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [25002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [25004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [25006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14349), + [25008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [25010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14371), + [25012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [25014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14487), + [25016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [25018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [25020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [25022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [25024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [25026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [25028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [25030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [25032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [25034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [25036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [25038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [25040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15089), + [25042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [25044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [25046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15153), + [25048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [25050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15180), + [25052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15200), + [25054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [25056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15227), + [25058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [25060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [25062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15034), + [25064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [25066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14982), + [25068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [25070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [25072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [25074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [25076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [25078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [25080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), + [25082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [25084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14869), + [25086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [25088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15172), + [25090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13760), + [25092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13914), + [25094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13985), + [25096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14289), + [25098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), + [25100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14533), + [25102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 57), SHIFT(15095), + [25105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [25107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [25109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14093), + [25111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14394), + [25113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14495), + [25115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14593), + [25117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [25119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14630), + [25121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14706), + [25123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 18), SHIFT(15096), + [25126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14784), + [25128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13791), + [25130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13885), + [25132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13921), + [25134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [25136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13966), + [25138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [25140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14018), + [25142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7374), + [25144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7378), + [25146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14040), + [25148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14092), + [25150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [25152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15209), + [25154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat1, 2, 0, 0), SHIFT_REPEAT(7606), + [25157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [25159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14561), + [25161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9493), + [25163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14670), + [25165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [25167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [25169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14713), + [25171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14735), + [25173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [25175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10711), + [25177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14755), + [25179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14771), + [25181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14804), + [25183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [25185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15166), + [25187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13709), + [25189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [25191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13744), + [25193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [25195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [25197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [25199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13767), + [25201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13784), + [25203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13799), + [25205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13832), + [25207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [25209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [25211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [25213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [25215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14056), + [25217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14139), + [25219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), + [25221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14156), + [25223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [25225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14178), + [25227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14205), + [25229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14245), + [25231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14276), + [25233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [25235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [25237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [25239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [25241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14466), + [25243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12974), + [25245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14607), + [25247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14741), + [25249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14826), + [25251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [25253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14931), + [25255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15023), + [25257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [25259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15085), + [25261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15132), + [25263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [25265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [25267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [25269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11502), + [25271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11497), + [25273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [25275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_member_expression_repeat1, 2, 0, 6), + [25277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [25279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [25281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [25283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), + [25285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [25287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [25289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [25291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [25293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [25295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [25297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [25299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [25301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [25303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11559), + [25305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11251), + [25307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11255), + [25309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [25311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11265), + [25313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11266), + [25315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [25317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [25319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13685), + [25321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13707), + [25323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), + [25325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11328), + [25327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11329), + [25329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [25331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11338), + [25333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11339), + [25335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13999), + [25337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [25339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [25341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14020), + [25343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14103), + [25345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [25347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14124), + [25349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [25351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [25353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [25355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [25357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [25359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14206), + [25361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14227), + [25363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_header, 1, 0, 88), SHIFT(27), + [25366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12439), + [25368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14294), + [25370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_header, 1, 0, 88), SHIFT(28), + [25373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_header, 1, 0, 88), SHIFT(29), + [25376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14315), + [25378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), + [25380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10367), + [25382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14382), + [25384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13988), + [25386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14037), + [25388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12081), + [25390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14403), + [25392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [25394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [25396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [25398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14470), + [25400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [25402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [25404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14491), + [25406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7305), + [25408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), + [25410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15235), + [25412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14578), + [25414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14638), + [25416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [25418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14656), + [25420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7375), + [25422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [25424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [25426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [25428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11756), + [25430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [25432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [25434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [25436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10155), + [25438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), + [25440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [25442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), + [25444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14805), + [25446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14806), + [25448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13611), + [25450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [25452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14818), + [25454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14819), + [25456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13613), + [25458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10167), + [25460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [25462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [25464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10147), + [25466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10045), + [25468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10170), + [25470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14862), + [25472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14863), + [25474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13622), + [25476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10148), + [25478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14873), + [25480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14874), + [25482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13625), + [25484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10964), + [25486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_access, 2, 0, 0), + [25488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [25490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [25492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [25494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [25496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11934), + [25498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11887), + [25500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11971), + [25502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12693), + [25504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10168), + [25506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11911), + [25508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [25510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [25512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [25514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [25516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), + [25518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), + [25520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [25522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), + [25524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_let_header, 6, 0, 162), + [25526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [25528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8248), + [25530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [25532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [25534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_get_header, 6, 0, 162), + [25536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [25538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [25540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [25542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [25544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [25546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13102), + [25548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13967), + [25550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [25552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [25554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6577), + [25556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), + [25558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13986), + [25560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13173), + [25562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), + [25564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), + [25566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), + [25568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [25570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [25572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), + [25574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), + [25576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_set_header, 6, 0, 162), + [25578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15059), + [25580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14009), + [25582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13239), + [25584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), + [25586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [25588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13913), + [25590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13490), + [25592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15015), + [25594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 173), + [25596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [25598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [25600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14436), + [25602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), + [25604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [25606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [25608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14520), + [25610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15110), + [25612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14523), + [25614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14521), + [25616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14960), + [25618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14536), + [25620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7571), + [25622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7586), + [25624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [25626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [25628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), + [25630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [25632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [25634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [25636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10157), + [25638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10152), + [25640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), + [25642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [25644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13596), + [25646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15093), + [25648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [25650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_set_header, 5, 0, 95), + [25652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [25654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [25656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14094), + [25658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13640), + [25660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [25662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [25664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14744), + [25666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14025), + [25668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [25670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7158), + [25672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), + [25674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), + [25676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [25678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14113), + [25680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13661), + [25682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [25684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [25686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 242), + [25688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [25690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [25692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [25694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [25696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [25698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [25700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), + [25702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [25704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), + [25706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [25708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15137), + [25710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_header, 3, 0, 21), + [25712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), + [25714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), + [25716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [25718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15129), + [25720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [25722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15141), + [25724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [25726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14314), + [25728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), + [25730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [25732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [25734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 135), + [25736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [25738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [25740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [25742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [25744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [25746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13160), + [25748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14975), + [25750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11588), + [25752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11635), + [25754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15091), + [25756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 238), + [25758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_sequence_repeat1, 2, 0, 0), REDUCE(aux_sym__argument_sequence_repeat2, 2, 0, 0), + [25761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14197), + [25763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13373), + [25765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14216), + [25767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13402), + [25769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [25771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), + [25773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14390), + [25775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [25777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [25779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14601), + [25781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14614), + [25783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14733), + [25785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), + [25787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [25789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), + [25791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [25793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13231), + [25795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14107), + [25797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [25799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14285), + [25801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13421), + [25803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [25805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [25807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [25809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [25811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [25813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14304), + [25815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13516), + [25817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), + [25819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 176), + [25821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8252), + [25823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7555), + [25825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), + [25827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), + [25829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), + [25831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14763), + [25833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [25835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [25837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10079), + [25839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10076), + [25841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14859), + [25843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [25845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14882), + [25847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14908), + [25849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [25851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [25853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [25855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [25857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13382), + [25859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13797), + [25861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [25863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13733), + [25865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), + [25867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [25869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14373), + [25871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13441), + [25873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11493), + [25875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11491), + [25877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [25879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [25881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [25883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [25885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14392), + [25887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13496), + [25889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [25891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), + [25893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [25895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [25897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), + [25899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), + [25901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14075), + [25903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [25905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [25907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14115), + [25909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14122), + [25911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14152), + [25913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [25915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [25917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), + [25919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13169), + [25921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14576), + [25923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 128), + [25925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [25927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [25929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sub_header, 4, 0, 82), + [25931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [25933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [25935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14461), + [25937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13227), + [25939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [25941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [25943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [25945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [25947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [25949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 239), + [25951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14480), + [25953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13253), + [25955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [25957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [25959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14786), + [25961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), + [25963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14816), + [25965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 169), + [25967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14822), + [25969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14845), + [25971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14618), + [25973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [25975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), + [25977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13456), + [25979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15178), + [25981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [25983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [25985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [25987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [25989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 182), + [25991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [25993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [25995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14549), + [25997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13528), + [25999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), + [26001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [26003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7661), + [26005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [26007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [26009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14567), + [26011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13556), + [26013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15179), + [26015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), + [26017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15168), + [26019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [26021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [26023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [26025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [26027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13811), + [26029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7260), + [26031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [26033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13842), + [26035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13844), + [26037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13857), + [26039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_header, 4, 0, 83), + [26041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_byval_modifier, 1, 0, 0), + [26043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), + [26045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), + [26047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13804), + [26049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 123), + [26051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13143), + [26053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14062), + [26055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13159), + [26057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14999), + [26059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14631), + [26061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13181), + [26063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13898), + [26065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13643), + [26067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 172), + [26069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14648), + [26071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13194), + [26073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13412), + [26075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13734), + [26077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), + [26079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [26081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [26083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [26085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [26087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [26089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), + [26091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [26093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [26095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [26097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [26099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [26101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [26103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8249), + [26105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10322), + [26107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [26109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [26111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_let_header, 5, 0, 95), + [26113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_header, 4, 0, 48), + [26115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), + [26117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [26119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [26121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [26123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [26125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), + [26127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [26129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [26131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [26133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [26135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7042), + [26137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [26139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [26141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [26143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [26145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [26147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [26149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [26151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sub_header, 3, 0, 20), + [26153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [26155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11646), + [26157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11645), + [26159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_get_header, 5, 0, 95), + [26161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [26163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [26165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [26167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [26169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), + [26171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_lock, 2, 0, 0), + [26173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15165), + [26175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [26177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [26179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [26181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [26183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_header, 5, 0, 116), + [26185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 131), + [26187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 241), + [26189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [26191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [26193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_let_header, 5, 0, 118), + [26195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [26197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [26199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [26201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [26203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [26205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), + [26207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12938), + [26209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [26211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [26213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 183), + [26215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [26217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [26219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13165), + [26221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15006), + [26223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_get_header, 5, 0, 118), + [26225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6720), + [26227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [26229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [26231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [26233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [26235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13671), + [26237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13321), + [26239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), + [26241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [26243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13964), + [26245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [26247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), + [26249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), + [26251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [26253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [26255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [26257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [26259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [26261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13695), + [26263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13416), + [26265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [26267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [26269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [26271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [26273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 7, 0, 307), + [26275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 280), + [26277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), + [26279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), + [26281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10062), + [26283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10070), + [26285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 281), + [26287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [26289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [26291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14583), + [26293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14169), + [26295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [26297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [26299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [26301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [26303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14248), + [26305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [26307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14259), + [26309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), + [26311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [26313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14302), + [26315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_set_header, 5, 0, 118), + [26317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12818), + [26319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12805), + [26321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 282), + [26323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 134), + [26325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [26327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), + [26329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [26331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [26333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15054), + [26335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [26337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [26339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [26341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 235), + [26343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [26345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [26347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 179), + [26349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [26351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10392), + [26353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10389), + [26355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [26357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [26359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [26361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 284), + [26363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 285), + [26365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 236), + [26367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_let_header, 4, 0, 50), + [26369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [26371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), + [26373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [26375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15027), + [26377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [26379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [26381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [26383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [26385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 93), + [26387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [26389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 185), + [26391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [26393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [26395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [26397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10377), + [26399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10376), + [26401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [26403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), + [26405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12884), + [26407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), + [26409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), + [26411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [26413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 186), + [26415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_get_header, 4, 0, 50), + [26417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7989), + [26419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10308), + [26421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), + [26423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [26425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12576), + [26427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12574), + [26429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [26431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [26433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11615), + [26435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14381), + [26437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 188), + [26439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 232), + [26441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [26443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [26445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14810), + [26447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14811), + [26449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [26451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [26453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14824), + [26455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14825), + [26457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [26459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), + [26461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8001), + [26463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [26465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14865), + [26467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14866), + [26469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), + [26471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14878), + [26473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14879), + [26475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 228), + [26477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_set_header, 4, 0, 50), + [26479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 229), + [26481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [26483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [26485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [26487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [26489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 231), + [26491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12698), + [26493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10323), + [26495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13824), + [26497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [26499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [26501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10204), + [26503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10190), + [26505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12826), + [26507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), + [26509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [26511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [26513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), + [26515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), + [26517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13853), + [26519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [26521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15080), + [26523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13419), + [26525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), + [26527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14522), + [26529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13871), + [26531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13872), + [26533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [26535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13895), + [26537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), + [26539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [26541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [26543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13911), + [26545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [26547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [26549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13933), + [26551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13950), + [26553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11951), + [26555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [26557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [26559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14072), + [26561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14082), + [26563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [26565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [26567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12957), + [26569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13600), + [26571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), + [26573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14166), + [26575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15081), + [26577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11609), + [26579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14184), + [26581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14185), + [26583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8469), + [26585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [26587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14210), + [26589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10195), + [26591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [26593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14226), + [26595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14229), + [26597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [26599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [26601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), + [26603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12054), + [26605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [26607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [26609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14273), + [26611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14281), + [26613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [26615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14292), + [26617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8540), + [26619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8279), + [26621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [26623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14306), + [26625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8541), + [26627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), + [26629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8543), + [26631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11447), + [26633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [26635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14867), + [26637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [26639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [26641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8846), + [26643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), + [26645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [26647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [26649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [26651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [26653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [26655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [26657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [26659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [26661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [26663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [26665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [26667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [26669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), + [26671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_function_headers, 8, 0, 220), + [26673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [26675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [26677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), + [26679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [26681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [26683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14850), + [26685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14851), + [26687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [26689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), + [26691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15194), + [26693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15197), + [26695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13688), + [26697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [26699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [26701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [26703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [26705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), + [26707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [26709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), + [26711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [26713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [26715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [26717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [26719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11190), + [26721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [26723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [26725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [26727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [26729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), + [26731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), + [26733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [26735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [26737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [26739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [26741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), + [26743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), + [26745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [26747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12958), + [26749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [26751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11182), + [26753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [26755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [26757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), + [26759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [26761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [26763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [26765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [26767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [26769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [26771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [26773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [26775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [26777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), + [26779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [26781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [26783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12088), + [26785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [26787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [26789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [26791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_name, 1, 0, 5), + [26793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), + [26795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [26797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [26799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), + [26801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11679), + [26803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [26805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [26807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12710), + [26809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [26811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), + [26813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [26815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [26817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [26819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [26821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [26823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), + [26825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), + [26827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [26829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [26831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [26833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [26835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [26837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [26839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14861), + [26841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [26843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [26845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [26847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [26849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [26851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [26853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [26855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [26857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [26859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [26861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [26863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [26865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9922), + [26867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [26869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7931), + [26871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [26873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14574), + [26875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [26877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10064), + [26879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11592), + [26881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12229), + [26883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [26885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14633), + [26887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12911), + [26889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [26891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11552), + [26893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11945), + [26895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [26897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [26899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13987), + [26901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [26903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [26905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14973), + [26907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [26909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15072), + [26911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [26913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [26915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14054), + [26917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [26919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14225), + [26921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [26923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15039), + [26925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [26927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13876), + [26929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [26931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11594), + [26933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11817), + [26935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11825), + [26937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11836), + [26939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12114), + [26941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [26943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [26945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13713), + [26947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [26949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [26951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [26953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [26955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13384), + [26957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [26959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [26961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [26963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [26965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [26967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12138), + [26969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [26971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [26973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [26975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [26977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [26979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [26981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [26983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [26985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13085), + [26987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [26989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [26991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [26993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [26995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [26997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [26999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13732), + [27001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [27003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [27005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [27007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), + [27009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13677), + [27011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14555), + [27013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [27015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11392), + [27017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [27019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [27021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13850), + [27023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13851), + [27025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [27027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10433), + [27029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [27031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), + [27033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), + [27035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13900), + [27037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13901), + [27039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13902), + [27041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), + [27043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), + [27045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_property_headers, 8, 0, 222), + [27047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13906), + [27049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13907), + [27051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11223), + [27053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), + [27055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [27057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [27059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [27061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13956), + [27063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [27065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [27067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [27069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [27071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [27073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [27075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8615), + [27077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [27079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13453), + [27081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [27083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14079), + [27085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [27087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [27089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [27091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), + [27093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [27095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14141), + [27097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14142), + [27099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [27101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), + [27103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [27105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14182), + [27107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14219), + [27109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [27111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [27113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [27115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14267), + [27117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [27119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), + [27121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14307), + [27123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), + [27125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [27127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13242), + [27129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), + [27131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12280), + [27133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14334), + [27135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14335), + [27137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [27139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14338), + [27141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7984), + [27143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [27145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14347), + [27147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [27149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [27151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14354), + [27153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14355), + [27155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8742), + [27157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14725), + [27159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11151), + [27161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14375), + [27163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14377), + [27165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [27167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7988), + [27169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11599), + [27171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13278), + [27173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14432), + [27175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [27177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [27179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14442), + [27181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14443), + [27183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8383), + [27185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [27187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14465), + [27189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [27191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [27193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14510), + [27195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14511), + [27197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [27199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [27201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_preprocessor_else, 3, 0, 141), + [27203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14059), + [27205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14525), + [27207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14527), + [27209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), + [27211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), + [27213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12152), + [27215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8622), + [27217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8623), + [27219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), + [27221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11473), + [27223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [27225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [27227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11863), + [27229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [27231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), + [27233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [27235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11016), + [27237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [27239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), + [27241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [27243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11187), + [27245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11304), + [27247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14779), + [27249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [27251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [27253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11197), + [27255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [27257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), + [27259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [27261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), + [27263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14098), + [27265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [27267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [27269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), + [27271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14110), + [27273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), + [27275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [27277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [27279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [27281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15090), + [27283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [27285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [27287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), + [27289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [27291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [27293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8676), + [27295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [27297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [27299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15154), + [27301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [27303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [27305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [27307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [27309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [27311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11025), + [27313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [27315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15181), + [27317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15182), + [27319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14580), + [27321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [27323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [27325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15189), + [27327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [27329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [27331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15203), + [27333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [27335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [27337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13662), + [27339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [27341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15217), + [27343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [27345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [27347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15223), + [27349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11596), + [27351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12145), + [27353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15232), + [27355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15234), + [27357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [27359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [27361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), + [27363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15105), + [27365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13867), + [27367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), + [27369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_sub_headers, 12, 0, 326), + [27371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11122), + [27373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13091), + [27375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15128), + [27377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [27379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10350), + [27381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13863), + [27383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14175), + [27385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8315), + [27387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [27389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14703), + [27391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [27393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [27395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15069), + [27397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15075), + [27399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [27401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [27403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [27405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [27407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13694), + [27409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13790), + [27411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8681), + [27413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), + [27415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14636), + [27417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8682), + [27419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8683), + [27421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8684), + [27423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [27425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [27427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [27429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [27431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [27433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12055), + [27435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12071), + [27437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [27439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [27441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), + [27443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), + [27445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [27447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [27449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [27451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14647), + [27453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8208), + [27455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [27457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [27459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [27461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [27463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [27465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), + [27467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [27469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), + [27471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [27473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11865), + [27475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [27477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14943), + [27479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [27481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [27483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [27485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [27487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_sub_headers, 9, 0, 271), + [27489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [27491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8718), + [27493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12917), + [27495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11980), + [27497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15174), + [27499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [27501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [27503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [27505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [27507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [27509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [27511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [27513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13785), + [27515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13786), + [27517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [27519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_else, 3, 0, 141), + [27521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [27523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13833), + [27525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), + [27527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14654), + [27529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13919), + [27531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), + [27533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [27535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13404), + [27537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [27539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13942), + [27541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [27543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [27545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13974), + [27547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [27549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), + [27551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14019), + [27553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14049), + [27555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [27557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), + [27559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [27561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14297), + [27563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14298), + [27565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7947), + [27567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14887), + [27569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [27571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13425), + [27573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14356), + [27575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [27577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [27579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14433), + [27581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14446), + [27583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), + [27585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [27587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14530), + [27589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), + [27591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [27593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14542), + [27595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14570), + [27597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [27599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [27601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [27603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [27605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14667), + [27607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14692), + [27609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8724), + [27611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8380), + [27613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [27615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8725), + [27617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8726), + [27619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8727), + [27621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [27623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11810), + [27625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8231), + [27627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11811), + [27629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [27631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [27633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [27635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [27637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), + [27639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [27641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), + [27643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14677), + [27645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [27647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [27649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14099), + [27651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [27653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [27655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [27657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [27659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [27661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8761), + [27663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [27665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [27667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14399), + [27669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [27671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [27673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [27675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [27677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [27679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [27681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [27683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14501), + [27685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14505), + [27687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [27689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15035), + [27691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [27693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14569), + [27695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [27697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [27699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14595), + [27701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), + [27703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [27705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13519), + [27707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14679), + [27709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14606), + [27711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [27713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11936), + [27715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14624), + [27717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11864), + [27719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), + [27721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14645), + [27723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14658), + [27725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [27727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [27729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [27731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14711), + [27733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14719), + [27735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11637), + [27737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [27739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [27741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13105), + [27743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14762), + [27745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11741), + [27747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [27749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14767), + [27751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14769), + [27753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), + [27755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), + [27757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14781), + [27759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [27761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [27763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14808), + [27765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14814), + [27767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [27769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12036), + [27771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [27773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_lock, 1, 0, 0), + [27775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14886), + [27777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14893), + [27779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8772), + [27781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8452), + [27783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [27785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8773), + [27787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8774), + [27789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8775), + [27791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12726), + [27793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), + [27795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [27797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [27799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [27801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [27803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12050), + [27805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), + [27807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12059), + [27809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), + [27811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [27813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [27815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [27817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13793), + [27819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), + [27821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [27823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [27825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [27827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [27829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [27831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8817), + [27833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [27835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11193), + [27837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13894), + [27839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), + [27841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [27843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), + [27845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), + [27847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [27849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [27851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_function_headers, 12, 0, 328), + [27853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13922), + [27855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13923), + [27857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11604), + [27859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [27861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14493), + [27863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13953), + [27865] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [27867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [27869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13968), + [27871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [27873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14683), + [27875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13497), + [27877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [27879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13984), + [27881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [27883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14686), + [27885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14006), + [27887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [27889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11597), + [27891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14022), + [27893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14023), + [27895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), + [27897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [27899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [27901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14042), + [27903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14044), + [27905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_sub_headers, 10, 0, 303), + [27907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [27909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14518), + [27911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13551), + [27913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14073), + [27915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [27917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [27919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14077), + [27921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14078), + [27923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8391), + [27925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [27927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14089), + [27929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [27931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14688), + [27933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14096), + [27935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14105), + [27937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [27939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [27941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [27943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [27945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14127), + [27947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14128), + [27949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8823), + [27951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8281), + [27953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [27955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8824), + [27957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8825), + [27959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8826), + [27961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12084), + [27963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7348), + [27965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), + [27967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [27969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), + [27971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13344), + [27973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), + [27975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14724), + [27977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), + [27979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [27981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [27983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14730), + [27985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14564), + [27987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12051), + [27989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [27991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [27993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7690), + [27995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [27997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [27999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8862), + [28001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [28003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [28005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14672), + [28007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [28009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), + [28011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [28013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_property_headers, 12, 0, 330), + [28015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [28017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [28019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [28021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14716), + [28023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14718), + [28025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [28027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13751), + [28029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [28031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14727), + [28033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), + [28035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_function_headers, 10, 0, 304), + [28037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14736), + [28039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14742), + [28041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [28043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13254), + [28045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14770), + [28047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14749), + [28049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [28051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10723), + [28053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14752), + [28055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [28057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10703), + [28059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14757), + [28061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14758), + [28063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), + [28065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), + [28067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [28069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14772), + [28071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14773), + [28073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), + [28075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11590), + [28077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10691), + [28079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13280), + [28081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14785), + [28083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14794), + [28085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10695), + [28087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14792), + [28089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14793), + [28091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), + [28093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [28095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14802), + [28097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14111), + [28099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), + [28101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14812), + [28103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14813), + [28105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15159), + [28107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11295), + [28109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [28111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [28113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14834), + [28115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14838), + [28117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8869), + [28119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), + [28121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [28123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8870), + [28125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8871), + [28127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8872), + [28129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [28131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [28133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), + [28135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), + [28137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [28139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [28141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14389), + [28143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), + [28145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11649), + [28147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), + [28149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [28151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [28153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13666), + [28155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15167), + [28157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [28159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13670), + [28161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_sub_headers, 9, 0, 272), + [28163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [28165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [28167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), + [28169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8905), + [28171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [28173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), + [28175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13711), + [28177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [28179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [28181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [28183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [28185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [28187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [28189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14134), + [28191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13745), + [28193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13746), + [28195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14841), + [28197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12885), + [28199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [28201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13755), + [28203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), + [28205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [28207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13768), + [28209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [28211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11124), + [28213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13557), + [28215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [28217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13775), + [28219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [28221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13780), + [28223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13936), + [28225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11639), + [28227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13820), + [28229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13789), + [28231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [28233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14885), + [28235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [28237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13800), + [28239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13801), + [28241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [28243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [28245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13584), + [28247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13810), + [28249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [28251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [28253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13816), + [28255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13817), + [28257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8343), + [28259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_function_headers, 9, 0, 273), + [28261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13828), + [28263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [28265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [28267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13834), + [28269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13835), + [28271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14039), + [28273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [28275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [28277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13848), + [28279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13849), + [28281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8912), + [28283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8361), + [28285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11570), + [28287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8913), + [28289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8914), + [28291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8915), + [28293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [28295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [28297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [28299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [28301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14457), + [28303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [28305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), + [28307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10161), + [28309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), + [28311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [28313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10119), + [28315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [28317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14057), + [28319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), + [28321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [28323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [28325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [28327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [28329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8945), + [28331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [28333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [28335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14140), + [28337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [28339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8888), + [28341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [28343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [28345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14157), + [28347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14158), + [28349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [28351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11606), + [28353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [28355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14170), + [28357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [28359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [28361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14179), + [28363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [28365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [28367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13196), + [28369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_function_headers, 9, 0, 274), + [28371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14195), + [28373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14201), + [28375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_sub_headers, 13, 0, 334), + [28377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), + [28379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14209), + [28381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14215), + [28383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [28385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [28387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [28389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14246), + [28391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14247), + [28393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), + [28395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13943), + [28397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_sub_headers, 13, 0, 335), + [28399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13218), + [28401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14261), + [28403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14263), + [28405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14266), + [28407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), + [28409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14270), + [28411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14890), + [28413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11059), + [28415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14280), + [28417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14283), + [28419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [28421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14293), + [28423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14296), + [28425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8956), + [28427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8467), + [28429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8958), + [28431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8959), + [28433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8960), + [28435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [28437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [28439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [28441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14891), + [28443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [28445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14469), + [28447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [28449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14897), + [28451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14483), + [28453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_sub_headers, 13, 0, 336), + [28455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14496), + [28457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14898), + [28459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14509), + [28461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [28463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [28465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_function_headers, 13, 0, 338), + [28467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14608), + [28469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14611), + [28471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_function_headers, 13, 0, 339), + [28473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_header, 1, 0, 88), + [28475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14902), + [28477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14743), + [28479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14747), + [28481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14911), + [28483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [28485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [28487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14828), + [28489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14833), + [28491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [28493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11931), + [28495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [28497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14935), + [28499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14937), + [28501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11161), + [28503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [28505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11977), + [28507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15024), + [28509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15026), + [28511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [28513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [28515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15086), + [28517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15088), + [28519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [28521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [28523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15133), + [28525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15135), + [28527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [28529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [28531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [28533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14916), + [28535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [28537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [28539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [28541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_function_headers, 13, 0, 340), + [28543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_property_headers, 9, 0, 275), + [28545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [28547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [28549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10083), + [28551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10976), + [28553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14924), + [28555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [28557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14775), + [28559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [28561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [28563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [28565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [28567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), + [28569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [28571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), + [28573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [28575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [28577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_property_headers, 13, 0, 342), + [28579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [28581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14055), + [28583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [28585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [28587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [28589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [28591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), + [28593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [28595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [28597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14756), + [28599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [28601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [28603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_property_headers, 10, 0, 305), + [28605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [28607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [28609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [28611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [28613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), + [28615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [28617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [28619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11061), + [28621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [28623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [28625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [28627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [28629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_property_headers, 13, 0, 343), + [28631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [28633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [28635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [28637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12727), + [28639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [28641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [28643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [28645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [28647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_property_headers, 9, 0, 276), + [28649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [28651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [28653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [28655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), + [28657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [28659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [28661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [28663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [28665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13935), + [28667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [28669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), + [28671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [28673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [28675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14928), + [28677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), + [28679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [28681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12654), + [28683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15061), + [28685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [28687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [28689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [28691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [28693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [28695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [28697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15103), + [28699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15104), + [28701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10380), + [28703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), + [28705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [28707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15148), + [28709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15149), + [28711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [28713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [28715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [28717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14933), + [28719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), + [28721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13764), + [28723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15192), + [28725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15193), + [28727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [28729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9921), + [28731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), + [28733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12935), + [28735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13674), + [28737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13675), + [28739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [28741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [28743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [28745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [28747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [28749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13686), + [28751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [28753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [28755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [28757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10980), + [28759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13701), + [28761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [28763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14948), + [28765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13708), + [28767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_property_headers, 13, 0, 344), + [28769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13717), + [28771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10046), + [28773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15056), + [28775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [28777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [28779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10385), + [28781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11078), + [28783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_accessor, 1, 0, 0), + [28785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [28787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15074), + [28789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10115), + [28791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13098), + [28793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12737), + [28795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13924), + [28797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [28799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [28801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [28803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [28805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), + [28807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [28809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13931), + [28811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13932), + [28813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [28815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13944), + [28817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13945), + [28819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [28821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [28823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [28825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [28827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), + [28829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [28831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13969), + [28833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13970), + [28835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [28837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7953), + [28839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [28841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13989), + [28843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13990), + [28845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [28847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11897), + [28849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [28851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [28853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14000), + [28855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14965), + [28857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [28859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), + [28861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14014), + [28863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_sub_headers, 14, 0, 346), + [28865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_sub_headers, 14, 0, 347), + [28867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14021), + [28869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [28871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14027), + [28873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13188), + [28875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14052), + [28877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15012), + [28879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_sub_headers, 14, 0, 348), + [28881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [28883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [28885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), + [28887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_function_headers, 14, 0, 349), + [28889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [28891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [28893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [28895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [28897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [28899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [28901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14104), + [28903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_function_headers, 14, 0, 350), + [28905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), + [28907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14118), + [28909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), + [28911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15018), + [28913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14125), + [28915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [28917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14131), + [28919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13217), + [28921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14155), + [28923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [28925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_function_headers, 14, 0, 351), + [28927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7957), + [28929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [28931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [28933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_property_headers, 14, 0, 352), + [28935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [28937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [28939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [28941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [28943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_property_headers, 14, 0, 353), + [28945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14207), + [28947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [28949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [28951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [28953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14221), + [28955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [28957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [28959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14228), + [28961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [28963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14234), + [28965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13244), + [28967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14243), + [28969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [28971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15049), + [28973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [28975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [28977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [28979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13841), + [28981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [28983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [28985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14369), + [28987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [28989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [28991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14295), + [28993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13698), + [28995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12067), + [28997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [28999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14309), + [29001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_property_headers, 14, 0, 354), + [29003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [29005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14316), + [29007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [29009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14322), + [29011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13281), + [29013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14331), + [29015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [29017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [29019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [29021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [29023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14361), + [29025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [29027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14372), + [29029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7636), + [29031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [29033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11165), + [29035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12937), + [29037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [29039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14383), + [29041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [29043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [29045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [29047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14397), + [29049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [29051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [29053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14404), + [29055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [29057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14410), + [29059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13305), + [29061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14419), + [29063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [29065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [29067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [29069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [29071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [29073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [29075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [29077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [29079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [29081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [29083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7668), + [29085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [29087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14471), + [29089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), + [29091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14860), + [29093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_sub_headers, 15, 0, 356), + [29095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14485), + [29097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9857), + [29099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14492), + [29101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_function_headers, 15, 0, 357), + [29103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14498), + [29105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13342), + [29107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14507), + [29109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [29111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [29113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [29115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [29117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [29119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), + [29121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6216), + [29123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [29125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), + [29127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [29129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14558), + [29131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11786), + [29133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_sub_headers, 8, 0, 218), + [29135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11351), + [29137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14572), + [29139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14872), + [29141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12715), + [29143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14579), + [29145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [29147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14585), + [29149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14594), + [29151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [29153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14445), + [29155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14459), + [29157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [29159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditional_property_headers, 15, 0, 358), + [29161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), + [29163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), + [29165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14639), + [29167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [29169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), + [29171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14651), + [29173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14657), + [29175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), + [29177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14660), + [29179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [29181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13753), + [29183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), + [29185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [29187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [29189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12939), + [29191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12545), + [29193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [29195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [29197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14172), + [29199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), + [29201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12941), + [29203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [29205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11127), + [29207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [29209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [29211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), + [29213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), + [29215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [29217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [29219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11585), + [29221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [29223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [29225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [29227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [29229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11777), + [29231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11783), + [29233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11600), + [29235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [29237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12577), + [29239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14417), + [29241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12579), + [29243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12583), + [29245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [29247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [29249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), + [29251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11651), + [29253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [29255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), + [29257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14380), + [29259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14385), + [29261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11787), + [29263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_accessor, 1, 0, 0), + [29265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11282), + [29267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [29269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10236), + [29271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [29273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [29275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), + [29277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [29279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), + [29281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12952), + [29283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12954), + [29285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14900), + [29287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14904), + [29289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14906), + [29291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12959), + [29293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12960), + [29295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [29297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8498), + [29299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), + [29301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), + [29303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [29305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [29307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), + [29309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [29311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [29313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [29315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [29317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [29319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11946), + [29321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), + [29323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12969), + [29325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12970), + [29327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [29329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [29331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8616), + [29333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12972), + [29335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12973), + [29337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), + [29339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [29341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [29343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14940), + [29345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14941), + [29347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8821), + [29349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11152), + [29351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8139), + [29353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10973), + [29355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10974), + [29357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8704), + [29359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11631), + [29361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [29363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), + [29365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [29367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14991), + [29369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [29371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [29373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [29375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [29377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_lock, 3, 0, 0), + [29379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [29381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [29383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8535), + [29385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [29387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [29389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [29391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13145), + [29393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [29395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [29397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15163), + [29399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11755), + [29401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), + [29403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [29405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12033), + [29407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11939), + [29409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11958), + [29411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [29413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [29415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), + [29417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12707), + [29419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8867), + [29421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10774), + [29423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10790), + [29425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [29427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [29429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13689), + [29431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13693), + [29433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [29435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [29437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15004), + [29439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11526), + [29441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [29443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11829), + [29445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [29447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9994), + [29449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11894), + [29451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [29453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9996), + [29455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13770), + [29457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13772), + [29459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9998), + [29461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [29463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10000), + [29465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [29467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10002), + [29469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [29471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10004), + [29473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [29475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10006), + [29477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [29479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10008), + [29481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [29483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10010), + [29485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12015), + [29487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10012), + [29489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11983), + [29491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10014), + [29493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12819), + [29495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10016), + [29497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12821), + [29499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10018), + [29501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [29503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10020), + [29505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10022), + [29507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12827), + [29509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10024), + [29511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12829), + [29513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13788), +}; + +#ifdef __cplusplus +extern "C" { +#endif +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) +#endif + +TS_PUBLIC const TSLanguage *tree_sitter_vba(void) { + static const TSLanguage language = { + .abi_version = LANGUAGE_VERSION, + .symbol_count = SYMBOL_COUNT, + .alias_count = ALIAS_COUNT, + .token_count = TOKEN_COUNT, + .external_token_count = EXTERNAL_TOKEN_COUNT, + .state_count = STATE_COUNT, + .large_state_count = LARGE_STATE_COUNT, + .production_id_count = PRODUCTION_ID_COUNT, + .supertype_count = SUPERTYPE_COUNT, + .field_count = FIELD_COUNT, + .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, + .parse_table = &ts_parse_table[0][0], + .small_parse_table = ts_small_parse_table, + .small_parse_table_map = ts_small_parse_table_map, + .parse_actions = ts_parse_actions, + .symbol_names = ts_symbol_names, + .field_names = ts_field_names, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, + .supertype_map_slices = ts_supertype_map_slices, + .supertype_map_entries = ts_supertype_map_entries, + .supertype_symbols = ts_supertype_symbols, + .symbol_metadata = ts_symbol_metadata, + .public_symbol_map = ts_symbol_map, + .alias_map = ts_non_terminal_alias_map, + .alias_sequences = &ts_alias_sequences[0][0], + .lex_modes = (const void*)ts_lex_modes, + .lex_fn = ts_lex, + .keyword_lex_fn = ts_lex_keywords, + .keyword_capture_token = sym_identifier, + .primary_state_ids = ts_primary_state_ids, + .name = "vba", + .reserved_words = &ts_reserved_words[0][0], + .max_reserved_word_set_size = 2, + .metadata = { + .major_version = 0, + .minor_version = 13, + .patch_version = 0, + }, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/internal/cbm/vendored/grammars/vba/tree_sitter/alloc.h b/internal/cbm/vendored/grammars/vba/tree_sitter/alloc.h new file mode 100644 index 000000000..1abdd1201 --- /dev/null +++ b/internal/cbm/vendored/grammars/vba/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/internal/cbm/vendored/grammars/vba/tree_sitter/array.h b/internal/cbm/vendored/grammars/vba/tree_sitter/array.h new file mode 100644 index 000000000..56fc8cd47 --- /dev/null +++ b/internal/cbm/vendored/grammars/vba/tree_sitter/array.h @@ -0,0 +1,330 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + ((self)->contents = _array__reserve( \ + (void *)(self)->contents, &(self)->capacity, \ + array_elem_size(self), new_capacity) \ + ) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) \ + do { \ + if ((self)->contents) ts_free((self)->contents); \ + (self)->contents = NULL; \ + (self)->size = 0; \ + (self)->capacity = 0; \ + } while (0) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + do { \ + (self)->contents = _array__grow( \ + (void *)(self)->contents, (self)->size, &(self)->capacity, \ + 1, array_elem_size(self) \ + ); \ + (self)->contents[(self)->size++] = (element); \ + } while(0) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + (self)->contents = _array__grow( \ + (self)->contents, (self)->size, &(self)->capacity, \ + count, array_elem_size(self) \ + ); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, other_contents) \ + (self)->contents = _array__splice( \ + (void*)(self)->contents, &(self)->size, &(self)->capacity, \ + array_elem_size(self), (self)->size, 0, count, other_contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + (self)->contents = _array__splice( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + array_elem_size(self), _index, old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + (self)->contents = _array__splice( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + array_elem_size(self), _index, 0, 1, &(element) \ + ) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((void *)(self)->contents, &(self)->size, array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + (self)->contents = _array__assign( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + (const void *)(other)->contents, (other)->size, array_elem_size(self) \ + ) + +/// Swap one array with another +#define array_swap(self, other) \ + do { \ + void *_array_swap_tmp = (void *)(self)->contents; \ + (self)->contents = (other)->contents; \ + (other)->contents = _array_swap_tmp; \ + _array__swap(&(self)->size, &(self)->capacity, \ + &(other)->size, &(other)->capacity); \ + } while (0) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +// Pointers to individual `Array` fields (rather than the entire `Array` itself) +// are passed to the various `_array__*` functions below to address strict aliasing +// violations that arises when the _entire_ `Array` struct is passed as `Array(void)*`. +// +// The `Array` type itself was not altered as a solution in order to avoid breakage +// with existing consumers (in particular, parsers with external scanners). + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(void* self_contents, uint32_t *size, + size_t element_size, uint32_t index) { + assert(index < *size); + char *contents = (char *)self_contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (*size - index - 1) * element_size); + (*size)--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void *_array__reserve(void *contents, uint32_t *capacity, + size_t element_size, uint32_t new_capacity) { + void *new_contents = contents; + if (new_capacity > *capacity) { + if (contents) { + new_contents = ts_realloc(contents, new_capacity * element_size); + } else { + new_contents = ts_malloc(new_capacity * element_size); + } + *capacity = new_capacity; + } + return new_contents; +} + +/// This is not what you're looking for, see `array_assign`. +static inline void *_array__assign(void* self_contents, uint32_t *self_size, uint32_t *self_capacity, + const void *other_contents, uint32_t other_size, size_t element_size) { + void *new_contents = _array__reserve(self_contents, self_capacity, element_size, other_size); + *self_size = other_size; + memcpy(new_contents, other_contents, *self_size * element_size); + return new_contents; +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(uint32_t *self_size, uint32_t *self_capacity, + uint32_t *other_size, uint32_t *other_capacity) { + uint32_t tmp_size = *self_size; + uint32_t tmp_capacity = *self_capacity; + *self_size = *other_size; + *self_capacity = *other_capacity; + *other_size = tmp_size; + *other_capacity = tmp_capacity; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void *_array__grow(void *contents, uint32_t size, uint32_t *capacity, + uint32_t count, size_t element_size) { + void *new_contents = contents; + uint32_t new_size = size + count; + if (new_size > *capacity) { + uint32_t new_capacity = *capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + new_contents = _array__reserve(contents, capacity, element_size, new_capacity); + } + return new_contents; +} + +/// This is not what you're looking for, see `array_splice`. +static inline void *_array__splice(void *self_contents, uint32_t *size, uint32_t *capacity, + size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = *size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= *size); + + void *new_contents = _array__reserve(self_contents, capacity, element_size, new_size); + + char *contents = (char *)new_contents; + if (*size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (*size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + *size += new_count - old_count; + + return new_contents; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(pop) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/internal/cbm/vendored/grammars/vba/tree_sitter/parser.h b/internal/cbm/vendored/grammars/vba/tree_sitter/parser.h new file mode 100644 index 000000000..858107deb --- /dev/null +++ b/internal/cbm/vendored/grammars/vba/tree_sitter/parser.h @@ -0,0 +1,286 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +// Used to index the field and supertype maps. +typedef struct { + uint16_t index; + uint16_t length; +} TSMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + +struct TSLanguage { + uint32_t abi_version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; + uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char * const *symbol_names; + const char * const *field_names; + const TSMapSlice *field_map_slices; + const TSFieldMapEntry *field_map_entries; + const TSSymbolMetadata *symbol_metadata; + const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + const TSSymbol *alias_sequences; + const TSLexerMode *lex_modes; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; + uint32_t supertype_count; + const TSSymbol *supertype_symbols; + const TSMapSlice *supertype_map_slices; + const TSSymbol *supertype_map_entries; + TSLanguageMetadata metadata; +}; + +static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + const TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + const TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + +/* + * Lexer Macros + */ + +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + UNUSED \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + +#define SKIP(state_value) \ + { \ + skip = true; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value) \ + } \ + }} + +#define SHIFT_REPEAT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value), \ + .repetition = true \ + } \ + }} + +#define SHIFT_EXTRA() \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ + } \ + }} + +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_ diff --git a/pkg/chocolatey/codebase-memory-mcp.nuspec b/pkg/chocolatey/codebase-memory-mcp.nuspec index 5ce1deacc..e2ab39edf 100644 --- a/pkg/chocolatey/codebase-memory-mcp.nuspec +++ b/pkg/chocolatey/codebase-memory-mcp.nuspec @@ -18,7 +18,7 @@ release-owned runtime assets. Chocolatey retains the complete extracted runtime set and exposes its executable through a PATH shim. Full indexes an average repository in milliseconds, the Linux kernel (28M LOC) in -3 minutes. Answers structural queries in under 1ms. Supports 162 languages via +3 minutes. Answers structural queries in under 1ms. Supports 163 languages via vendored tree-sitter grammars. No hosted service or API key. Plug and play across 11 coding agents including Claude Code, Codex CLI, Gemini CLI, and Zed. diff --git a/pkg/npm/README.md b/pkg/npm/README.md index 614b81b1c..401a45353 100644 --- a/pkg/npm/README.md +++ b/pkg/npm/README.md @@ -7,7 +7,7 @@ **The fastest and most efficient code intelligence engine for AI coding agents.** Full-indexes an average repository in milliseconds, the Linux kernel (28M LOC, 75K files) in 3 minutes. Answers structural queries in under 1ms. This npm wrapper downloads, verifies, and caches the selected native runtime set: the executable, its authenticated integration asset, and—when requested—the content-addressed UI pack. -High-quality parsing through [tree-sitter](https://tree-sitter.github.io/tree-sitter/) AST analysis across 162 languages — producing a persistent knowledge graph of functions, classes, call chains, HTTP routes, and cross-service links. 15 MCP tools. No hosted service or API key; this package requires Node.js to manage and launch the cached native runtime set. Plug and play across 45 automatic/conditional client surfaces. +High-quality parsing through [tree-sitter](https://tree-sitter.github.io/tree-sitter/) AST analysis across 163 languages — producing a persistent knowledge graph of functions, classes, call chains, HTTP routes, and cross-service links. 15 MCP tools. No hosted service or API key; this package requires Node.js to manage and launch the cached native runtime set. Plug and play across 45 automatic/conditional client surfaces. ## Installation @@ -29,7 +29,7 @@ Restart your agent. Say **"Index this project"** — done. - **Extreme indexing speed** — Linux kernel (28M LOC, 75K files) in 3 minutes. RAM-first pipeline with LZ4 compression and in-memory SQLite. - **Plug and play** — verified native runtime sets for macOS (arm64/amd64), Linux (arm64/amd64), and Windows (arm64/amd64). No Docker or API keys; Node.js owns package download, cache repair, and launch. -- **162 languages** — vendored tree-sitter grammars compiled into the binary. Nothing to install, nothing that breaks. +- **163 languages** — vendored tree-sitter grammars compiled into the binary. Nothing to install, nothing that breaks. - **120x fewer tokens** — 5 structural queries: ~3,400 tokens vs ~412,000 via file-by-file search. - **45 supported automatic/conditional client surfaces** — `install` configures the appropriate MCP, durable-context, and documented hook surfaces without widening client permissions. - **Detected automatically (39)** — Claude Code, Codex CLI, Gemini CLI, Zed, OpenCode, Antigravity, Aider, KiloCode, VS Code, Cursor, Windsurf, Augment / Auggie, OpenClaw, Kiro, Junie, Hermes, OpenHands, Cline, Warp, Qwen Code, GitHub Copilot CLI, Factory Droid, Crush, Goose, Mistral Vibe, Grok Build, Qoder CLI, Kimi Code CLI, GitLab Duo CLI, Rovo Dev CLI, Amp, Devin CLI / Local, Tabnine, Amazon Q Developer IDE, CodeBuddy Code CLI, IBM Bob Shell, Pochi, Pi, and Oh My Pi (omp). diff --git a/scripts/new-languages.json b/scripts/new-languages.json index b03682e8d..04dea2a3c 100644 --- a/scripts/new-languages.json +++ b/scripts/new-languages.json @@ -1291,5 +1291,22 @@ "filenames": [], "has_scanner": true, "module_root": "source_file" + }, + { + "name": "vba", + "enum": "VB6", + "display": "Visual Basic 6", + "ts_func": "tree_sitter_vba", + "repo": "https://github.com/harumiWeb/tree-sitter-vba", + "subdir": "", + "extensions": [ + ".bas", + ".ctl", + ".dsr", + ".pag" + ], + "filenames": [], + "has_scanner": false, + "module_root": "source_file" } ] \ No newline at end of file diff --git a/scripts/package-release.sh b/scripts/package-release.sh index ff399c76d..4f755242b 100755 --- a/scripts/package-release.sh +++ b/scripts/package-release.sh @@ -293,7 +293,7 @@ build_mcpb_bundle() { "name": "codebase-memory-mcp", "display_name": "Codebase Memory", "version": "$mcpb_version", - "description": "Codebase knowledge graph for AI agents — 162 languages, sub-ms queries, 99% fewer tokens.", + "description": "Codebase knowledge graph for AI agents — 163 languages, sub-ms queries, 99% fewer tokens.", "author": { "name": "DeusData", "url": "https://github.com/DeusData" }, "repository": { "type": "git", "url": "https://github.com/DeusData/codebase-memory-mcp" }, "homepage": "https://deusdata.github.io/codebase-memory-mcp/", diff --git a/scripts/vendored-checksums.txt b/scripts/vendored-checksums.txt index c4b809dc6..7ef69d381 100644 --- a/scripts/vendored-checksums.txt +++ b/scripts/vendored-checksums.txt @@ -5,7 +5,7 @@ c5cfb43042b6b72045f4ba997834d0a7786d2793d91680868b5815b39f14fc78 internal/cbm/v b29c1c9fb7cc82f58c84b376df1297d6e2737a1d655fd356db0859e3c29c2fea internal/cbm/vendored/common/tree_sitter/alloc.h 31e60a1bff6f715afacce03b5b70efe42b58371b4f9595dd4af52a577ff9608c internal/cbm/vendored/common/tree_sitter/array.h 180b893c8734778fd32f372dfbc27bd6ad1cd2221f26150b31256ff6716320d2 internal/cbm/vendored/common/tree_sitter/parser.h -00a84162eb34fb58bcdd38c08922d4fea4c87b7c2219dd64b773dd15ba18de71 internal/cbm/vendored/grammars/MANIFEST.md +5cb7fa2362d9228e77cbed4eaa9592c87b56eb2819015247668e90cf37e5c07e internal/cbm/vendored/grammars/MANIFEST.md ad8425038de519f8c4e3e9339feebf99dfad8a6002dcf79227d91402780a32cc internal/cbm/vendored/grammars/ada/LICENSE 02805ec13939b749c891567be36bf024b09034e04c80683a1ae667272458d549 internal/cbm/vendored/grammars/ada/parser.c 115a75d000bef9c70c4de7dfbb7f2a80b90cbb14ba265056dc7abb1ef3b9b6db internal/cbm/vendored/grammars/ada/tree_sitter/alloc.h @@ -862,6 +862,11 @@ eeb1ce8085d748ea8ec44b337b179a676dfab4549593b834e9c510362e795b64 internal/cbm/v 02d139d44303b0b0b85a899839dbc1346c478e7318d1f2971fad2b38fd57cb73 internal/cbm/vendored/grammars/typst/tree_sitter/array.h 2db740ea1be6b71014d2be1385491f01bf2d15b607e61c5b30b4128535efe68a internal/cbm/vendored/grammars/typst/tree_sitter/parser.h 6d1a6e017b78433535460ceb3e386d92d8c5dca6e85e6919d5810f1f9aa665a1 internal/cbm/vendored/grammars/typst/unicode.h +f58a3dc0eafdfbb9615856ba74f340c96db45d0f7423cbb28bbdc12bef5c08a1 internal/cbm/vendored/grammars/vba/LICENSE +469e0c5480d4ce2c9166e9d88c93754b12350777396d63ab8518e79dca60413b internal/cbm/vendored/grammars/vba/parser.c +b29c1c9fb7cc82f58c84b376df1297d6e2737a1d655fd356db0859e3c29c2fea internal/cbm/vendored/grammars/vba/tree_sitter/alloc.h +31e60a1bff6f715afacce03b5b70efe42b58371b4f9595dd4af52a577ff9608c internal/cbm/vendored/grammars/vba/tree_sitter/array.h +180b893c8734778fd32f372dfbc27bd6ad1cd2221f26150b31256ff6716320d2 internal/cbm/vendored/grammars/vba/tree_sitter/parser.h 8d2ff8d1e308828099436c43dc8bfbb8b6f368ad2a012ab9802a80ca22b03b53 internal/cbm/vendored/grammars/verilog/LICENSE bb0f5fe2423ac18a4ab15d8201a2cf155c874b52f3a3022a16e2aa58bb92a4d9 internal/cbm/vendored/grammars/verilog/parser.c b29c1c9fb7cc82f58c84b376df1297d6e2737a1d655fd356db0859e3c29c2fea internal/cbm/vendored/grammars/verilog/tree_sitter/alloc.h diff --git a/server.json b/server.json index 3ab583af4..571b19d04 100644 --- a/server.json +++ b/server.json @@ -2,7 +2,7 @@ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json", "name": "io.github.DeusData/codebase-memory-mcp", "title": "Codebase Memory", - "description": "Codebase knowledge graph for AI agents \u2014 162 languages, sub-ms queries, 99% fewer tokens.", + "description": "Codebase knowledge graph for AI agents \u2014 163 languages, sub-ms queries, 99% fewer tokens.", "repository": { "url": "https://github.com/DeusData/codebase-memory-mcp", "source": "github" diff --git a/src/discover/discover.h b/src/discover/discover.h index b15844340..f4a4a1ace 100644 --- a/src/discover/discover.h +++ b/src/discover/discover.h @@ -41,12 +41,12 @@ CBMLanguage cbm_disambiguate_m(const char *path); /* Disambiguate .cls files by reading first 4KB of content. * Returns CBM_LANG_OBJECTSCRIPT_UDL if a line starts with "Class ", - * CBM_LANG_COUNT (unsupported) for a Visual Basic 6 class module (#721), + * CBM_LANG_VB6 for a Visual Basic 6 class module (#721), * otherwise CBM_LANG_APEX. On read failure, defaults to CBM_LANG_APEX. */ CBMLanguage cbm_disambiguate_cls(const char *path); /* Disambiguate .frm files by reading first 4KB of content (#721). - * Returns CBM_LANG_COUNT (unsupported) for a Visual Basic 6 form, otherwise + * Returns CBM_LANG_VB6 for a Visual Basic 6 form, otherwise * CBM_LANG_FORM. On read failure, defaults to CBM_LANG_FORM. */ CBMLanguage cbm_disambiguate_frm(const char *path); diff --git a/src/discover/language.c b/src/discover/language.c index e61a07c43..c7e7210f5 100644 --- a/src/discover/language.c +++ b/src/discover/language.c @@ -118,7 +118,8 @@ static const ext_entry_t EXT_TABLE[] = { {".fsi", CBM_LANG_FSHARP}, {".fsx", CBM_LANG_FSHARP}, - /* FORM */ + /* FORM (.frm collides with VB6 forms — content-disambiguated in + * cbm_disambiguate_frm()) */ {".frm", CBM_LANG_FORM}, {".prc", CBM_LANG_FORM}, @@ -371,9 +372,16 @@ static const ext_entry_t EXT_TABLE[] = { /* Cap'n Proto */ {".capnp", CBM_LANG_CAPNP}, - /* Apex */ + /* Apex (.cls collides with VB6 class modules — content-disambiguated in + * cbm_disambiguate_cls()) */ {".cls", CBM_LANG_APEX}, + /* Visual Basic 6 / VBA — unambiguous extensions. .cls/.frm are sniffed. */ + {".bas", CBM_LANG_VB6}, + {".ctl", CBM_LANG_VB6}, + {".dsr", CBM_LANG_VB6}, + {".pag", CBM_LANG_VB6}, + /* Crystal */ {".cr", CBM_LANG_CRYSTAL}, @@ -891,6 +899,7 @@ static const char *LANG_NAMES[CBM_LANG_COUNT] = { [CBM_LANG_OBJECTSCRIPT_EXPORT] = "ObjectScript Export XML", [CBM_LANG_ARKTS] = "ArkTS", [CBM_LANG_PLSQL] = "PL/SQL", + [CBM_LANG_VB6] = "Visual Basic 6", }; @@ -1260,10 +1269,9 @@ static bool has_vb6_markers(const char *buf) { } /* Disambiguate .frm files: shared by the FORM symbolic-manipulation language - * and Visual Basic 6 forms (#721). There is no Visual Basic language yet, so a - * VB6 form is reported as unsupported (CBM_LANG_COUNT) rather than handed to - * the FORM grammar, which yields no defs and stray junk nodes. Defaults to - * FORM on any doubt (preserves existing behaviour). */ + * and Visual Basic 6 forms (#721). A VB6 form routes to the tree-sitter-vba + * grammar (CBM_LANG_VB6) rather than to FORM, which yields no defs and stray + * junk nodes. Defaults to FORM on any doubt (preserves existing behaviour). */ CBMLanguage cbm_disambiguate_frm(const char *path) { if (!path) { return CBM_LANG_FORM; @@ -1282,16 +1290,16 @@ CBMLanguage cbm_disambiguate_frm(const char *path) { /* VB6 form files open with "VERSION x.yy" on line 1. */ if (strncmp(buf, "VERSION ", SLEN("VERSION ")) == 0 && isdigit((unsigned char)buf[SLEN("VERSION ")])) { - return CBM_LANG_COUNT; + return CBM_LANG_VB6; } - return has_vb6_markers(buf) ? CBM_LANG_COUNT : CBM_LANG_FORM; + return has_vb6_markers(buf) ? CBM_LANG_VB6 : CBM_LANG_FORM; } /* Disambiguate .cls files: shared by InterSystems ObjectScript UDL, Salesforce * Apex and Visual Basic 6 class modules (#721). ObjectScript class files begin * with a line of the form "Class ..."; VB6 class modules - * carry the VB6 header markers and are reported as unsupported (CBM_LANG_COUNT) - * until a Visual Basic grammar exists. Defaults to Apex on any doubt. */ + * carry the VB6 header markers and route to CBM_LANG_VB6. Defaults to Apex + * on any doubt. */ CBMLanguage cbm_disambiguate_cls(const char *path) { if (!path) { return CBM_LANG_APEX; @@ -1308,7 +1316,7 @@ CBMLanguage cbm_disambiguate_cls(const char *path) { (void)fclose(f); if (has_vb6_markers(buf)) { - return CBM_LANG_COUNT; + return CBM_LANG_VB6; } const char *line = buf; diff --git a/src/discover/userconfig.c b/src/discover/userconfig.c index 8ba63d5bd..035fc4362 100644 --- a/src/discover/userconfig.c +++ b/src/discover/userconfig.c @@ -147,6 +147,10 @@ static const lang_name_entry_t LANG_NAME_TABLE[] = { {"form", CBM_LANG_FORM}, {"magma", CBM_LANG_MAGMA}, {"wolfram", CBM_LANG_WOLFRAM}, + {"vb6", CBM_LANG_VB6}, + {"vba", CBM_LANG_VB6}, + {"vb", CBM_LANG_VB6}, + {"visualbasic", CBM_LANG_VB6}, }; #define LANG_NAME_TABLE_SIZE (sizeof(LANG_NAME_TABLE) / sizeof(LANG_NAME_TABLE[0])) diff --git a/tests/repro/repro_call_argument_matrix_b.c b/tests/repro/repro_call_argument_matrix_b.c index ccac7a32e..e9cceb44d 100644 --- a/tests/repro/repro_call_argument_matrix_b.c +++ b/tests/repro/repro_call_argument_matrix_b.c @@ -861,6 +861,24 @@ static const char CHIALISP_BARE[] = "(\n" " (defun run (watched) watched)\n" ")\n"; +/* VB6: `accept watched` is a call_statement (callee field + argument list); + * the parameter binds through the grammar's `parameter` node. */ +static const char VB6_INSIDE[] = "Attribute VB_Name = \"Sample\"\n" + "Option Explicit\n" + "\n" + "Public Sub accept(value As Long)\n" + "End Sub\n" + "\n" + "Public Sub run(watched As Long)\n" + " accept watched\n" + "End Sub\n"; +static const char VB6_BARE[] = "Attribute VB_Name = \"Sample\"\n" + "Option Explicit\n" + "\n" + "Public Function run(watched As Long) As Long\n" + " run = watched\n" + "End Function\n"; + static const char PLSQL_INSIDE[] = "CREATE OR REPLACE PACKAGE BODY sample_pkg AS\n" " FUNCTION accept(value NUMBER) RETURN NUMBER IS\n" " BEGIN\n" @@ -1030,6 +1048,9 @@ static const RoutineArgumentCase PLSQL_CASE = ROUTINE_ARGUMENT_CASE( static const RoutineArgumentCase CHIALISP_CASE = ROUTINE_ARGUMENT_CASE( "CHIALISP", CBM_LANG_CHIALISP, "sample.clib", CHIALISP_INSIDE, CHIALISP_BARE, "list", "run", "accept", "watched", 1, 1, 0, "Chialisp list application and symbol-reference vocabulary"); +static const RoutineArgumentCase VB6_CASE = ROUTINE_ARGUMENT_CASE( + "VB6", CBM_LANG_VB6, "Sample.bas", VB6_INSIDE, VB6_BARE, "call_statement", "run", "accept", + "watched", 1, 1, 0, "native VB6 call_statement routine application"); static const ModuleArgumentCase JUST_CASE = MODULE_ARGUMENT_CASE( "JUST", CBM_LANG_JUST, "justfile", JUST_INSIDE, JUST_BARE, "function_call", "uppercase", @@ -1223,6 +1244,7 @@ DEFINE_ROUTINE_ARGUMENT_TEST(objectscript_udl, OBJECTSCRIPT_UDL_CASE) DEFINE_ROUTINE_ARGUMENT_TEST(objectscript_routine, OBJECTSCRIPT_ROUTINE_CASE) DEFINE_ROUTINE_ARGUMENT_TEST(plsql, PLSQL_CASE) DEFINE_ROUTINE_ARGUMENT_TEST(chialisp, CHIALISP_CASE) +DEFINE_ROUTINE_ARGUMENT_TEST(vb6, VB6_CASE) #undef DEFINE_ROUTINE_ARGUMENT_TEST @@ -1292,15 +1314,15 @@ TEST(repro_call_argument_matrix_b_domain_bitbake) { } enum { - ROUTINE_ARGUMENT_LANGUAGE_COUNT = 39, + ROUTINE_ARGUMENT_LANGUAGE_COUNT = 40, MODULE_ARGUMENT_LANGUAGE_COUNT = 4, DOMAIN_CONTROL_LANGUAGE_COUNT = 6, MATRIX_LANGUAGE_COUNT = ROUTINE_ARGUMENT_LANGUAGE_COUNT + MODULE_ARGUMENT_LANGUAGE_COUNT + DOMAIN_CONTROL_LANGUAGE_COUNT, }; -_Static_assert(MATRIX_LANGUAGE_COUNT == 49, - "RACKET..CHIALISP call-capable matrix must contain exactly 49 " +_Static_assert(MATRIX_LANGUAGE_COUNT == 50, + "RACKET..VB6 call-capable matrix must contain exactly 50 " "language rows"); #define MATRIX_B_LANGUAGE_ROWS(X) \ @@ -1345,6 +1367,7 @@ _Static_assert(MATRIX_LANGUAGE_COUNT == 49, OBJECTSCRIPT_ROUTINE_CASE.identity.language) \ X(repro_call_argument_matrix_b_routine_plsql, PLSQL_CASE.identity.language) \ X(repro_call_argument_matrix_b_routine_chialisp, CHIALISP_CASE.identity.language) \ + X(repro_call_argument_matrix_b_routine_vb6, VB6_CASE.identity.language) \ X(repro_call_argument_matrix_b_module_just, JUST_CASE.identity.language) \ X(repro_call_argument_matrix_b_module_gotemplate, GOTEMPLATE_CASE.identity.language) \ X(repro_call_argument_matrix_b_module_linkerscript, LINKERSCRIPT_CASE.identity.language) \ diff --git a/tests/repro/repro_call_node_manifest.c b/tests/repro/repro_call_node_manifest.c index 1e9a418c1..00e86a5de 100644 --- a/tests/repro/repro_call_node_manifest.c +++ b/tests/repro/repro_call_node_manifest.c @@ -59,9 +59,9 @@ typedef struct { } CallNodeManifestEntry; enum { - EXPECTED_HISTORICAL_CALL_NODE_TOTAL = 226, - EXPECTED_ACTIVE_PRIMARY_TOTAL = 196, - EXPECTED_DIRECT_CALLS = 160, + EXPECTED_HISTORICAL_CALL_NODE_TOTAL = 229, + EXPECTED_ACTIVE_PRIMARY_TOTAL = 199, + EXPECTED_DIRECT_CALLS = 163, EXPECTED_CONSTRUCTOR_CALLS = 22, EXPECTED_OPERATOR_CALLS = 12, EXPECTED_IMPLICIT_CALLS = 2, @@ -70,7 +70,7 @@ enum { EXPECTED_CALLEE_WRAPPERS = 8, EXPECTED_ARGUMENT_WRAPPERS = 1, EXPECTED_CONTROL_OR_DOCUMENT_NONCALLS = 6, - EXPECTED_PRIMARY_OWNERS = 196, + EXPECTED_PRIMARY_OWNERS = 199, EXPECTED_SYNTHETIC_OWNERS = 10, EXPECTED_NO_CALL_EDGE_OWNERS = 20, EXPECTED_PRIMARY_OPERATOR_CALLS = 4, @@ -321,6 +321,9 @@ static const CallNodeManifestEntry CALL_NODE_MANIFEST[] = { ENTRY(CBM_LANG_ARKTS, "call_expression", DIRECT_CALL, PRIMARY_EXTRACTOR, true, true), ENTRY(CBM_LANG_ARKTS, "new_expression", CONSTRUCTOR_CALL, PRIMARY_EXTRACTOR, true, true), ENTRY(CBM_LANG_PLSQL, "ref_call", DIRECT_CALL, PRIMARY_EXTRACTOR, true, true), + ENTRY(CBM_LANG_VB6, "call_statement", DIRECT_CALL, PRIMARY_EXTRACTOR, true, true), + ENTRY(CBM_LANG_VB6, "call_expression", DIRECT_CALL, PRIMARY_EXTRACTOR, true, true), + ENTRY(CBM_LANG_VB6, "raise_event_statement", DIRECT_CALL, PRIMARY_EXTRACTOR, true, true), }; #undef ENTRY diff --git a/tests/repro/repro_invariant_breadth.c b/tests/repro/repro_invariant_breadth.c index 5c7b94f1b..79eefb3eb 100644 --- a/tests/repro/repro_invariant_breadth.c +++ b/tests/repro/repro_invariant_breadth.c @@ -29,6 +29,7 @@ * * Added after the original snapshot: * chialisp (1 case, expected GREEN -- lisp-family scope attribution) + * vb6 (1 case, expected GREEN -- procedure scope attribution) * * Note: the "suspicious" group (r, julia, ...) from QUALITY_ANALYSIS may be * GREEN because the calls-breadth table (test_lang_contract.c) already shows @@ -552,6 +553,27 @@ static const IBCase IB_CASES[] = { */ 1, NULL }, + + { + "vb6", "a.bas", + "Attribute VB_Name = \"ModA\"\n" + "Option Explicit\n" + "\n" + "Private Function Helper(x As Long) As Long\n" + " Helper = x * 2\n" + "End Function\n" + "\n" + "Public Sub Run()\n" + " Helper 21\n" + "End Sub\n", + /* + * VB6: EXPECTED-GREEN. `Helper 21` is a call_statement whose `callee` + * field is an identifier; sub_declaration/function_declaration are the + * enclosing callables, so the edge must source at Function, never at + * the .bas Module. + */ + 1, NULL + }, }; enum { IB_CASES_COUNT = (int)(sizeof(IB_CASES) / sizeof(IB_CASES[0])) }; diff --git a/tests/repro/repro_language_registry.c b/tests/repro/repro_language_registry.c index ddb1f9e7e..ebb0382ae 100644 --- a/tests/repro/repro_language_registry.c +++ b/tests/repro/repro_language_registry.c @@ -213,6 +213,7 @@ static const LanguageCapabilityEntry LANGUAGE_CAPABILITIES[CBM_LANG_COUNT] = { CALL_WITH_REFERENCE_VOCAB(ARKTS), CALL_WITHOUT_REFERENCE_VOCAB(PLSQL), CALL_WITHOUT_REFERENCE_VOCAB(CHIALISP), + CALL_WITH_REFERENCE_VOCAB(VB6), }; #undef CALL_WITH_REFERENCE_VOCAB @@ -301,7 +302,7 @@ TEST(repro_language_capability_ledger_covers_every_enum) { } } - if (counts[CAP_CALL_WITH_REFERENCE_VOCAB] != 88 || + if (counts[CAP_CALL_WITH_REFERENCE_VOCAB] != 89 || counts[CAP_CALL_WITHOUT_REFERENCE_VOCAB] != 27 || counts[CAP_NO_CALL] != 49 || counts[CAP_TRANSFORM_ONLY] != 1 || counts[CAP_UNSUPPORTED] != 1) { fprintf(stderr, @@ -319,8 +320,8 @@ TEST(repro_language_capability_ledger_covers_every_enum) { TEST(repro_call_argument_matrices_equal_call_capability_ledger) { enum { EXPECTED_MATRIX_A_ROWS = 68, - EXPECTED_MATRIX_B_ROWS = 49, - EXPECTED_CALL_CAPABLE_LANGUAGES = 115, + EXPECTED_MATRIX_B_ROWS = 50, + EXPECTED_CALL_CAPABLE_LANGUAGES = 116, EXPECTED_NON_CALL_LANGUAGES = 51, EXPECTED_NON_CALL_DOMAIN_CONTROLS = 2, }; diff --git a/tests/test_extraction.c b/tests/test_extraction.c index cb01dcf14..eeac6383b 100644 --- a/tests/test_extraction.c +++ b/tests/test_extraction.c @@ -1514,6 +1514,112 @@ TEST(chialisp_dialect_sigil_is_not_a_file_import) { PASS(); } +/* --- Visual Basic 6 / VBA --- + * + * harumiWeb/tree-sitter-vba. Every procedure kind carries a `name` field, so + * the generic def extractor covers Sub/Function/Property/Declare; the + * VB6-specific branches pinned here are `Type` members (no body node, `As` + * clause unwrapped), `Dim`/`Const` declarator lists (one Variable per name, + * module level only), and the call_statement / call_expression callee fields + * (`Helper 2`, `Call Helper(3)` and `v = Helper(1)` are all calls). */ +TEST(vb6_module_defs_calls_and_fields) { + const char *src = "Attribute VB_Name = \"ModA\"\n" + "Option Explicit\n" + "\n" + "Private Declare Sub Sleep Lib \"kernel32\" (ByVal ms As Long)\n" + "\n" + "Public Type Point\n" + " X As Long\n" + " Y As Double\n" + "End Type\n" + "\n" + "Public Enum Color\n" + " Red = 1\n" + " Green\n" + "End Enum\n" + "\n" + "Public gCount As Long\n" + "Private Const MAX_ITEMS As Long = 10\n" + "Dim a As Long, b As String\n" + "\n" + "Public Property Get Count() As Long\n" + " Count = gCount\n" + "End Property\n" + "\n" + "Private Function Helper(ByVal x As Long) As Long\n" + " Helper = x + 1\n" + "End Function\n" + "\n" + "Public Sub Run()\n" + " Dim v As Long\n" + " v = Helper(1)\n" + " Helper 2\n" + " Call Helper(3)\n" + " Sleep 10\n" + "End Sub\n"; + CBMFileResult *r = extract(src, CBM_LANG_VB6, "t", "src/ModA.bas"); + ASSERT_NOT_NULL(r); + ASSERT_FALSE(r->has_error); + ASSERT_EQ(count_defs_with_label(r, "Module"), 1); + /* Procedures: Sub, Function, Property Get and a Declare (DLL entry point). */ + ASSERT(has_def(r, "Function", "Run")); + ASSERT(has_def(r, "Function", "Helper")); + ASSERT(has_def(r, "Function", "Count")); + ASSERT(has_def(r, "Function", "Sleep")); + /* Type -> Class with typed Fields (the `As` clause is unwrapped). */ + ASSERT(has_def(r, "Class", "Point")); + ASSERT(has_def(r, "Field", "X")); + ASSERT(has_def(r, "Field", "Y")); + for (int i = 0; i < r->defs.count; i++) { + const CBMDefinition *d = &r->defs.items[i]; + if (strcmp(d->label, "Field") == 0 && strcmp(d->name, "Y") == 0) { + ASSERT_NOT_NULL(d->return_type); + ASSERT_STR_EQ(d->return_type, "Double"); + } + } + /* Enum -> Enum with its members. */ + ASSERT(has_def(r, "Enum", "Color")); + ASSERT(has_def(r, "Variable", "Red")); + ASSERT(has_def(r, "Variable", "Green")); + /* Module-level Public/Const/Dim (one Variable per declarator)... */ + ASSERT(has_def(r, "Variable", "gCount")); + ASSERT(has_def(r, "Variable", "MAX_ITEMS")); + ASSERT(has_def(r, "Variable", "a")); + ASSERT(has_def(r, "Variable", "b")); + /* ...but a procedure-local Dim is not a module Variable. */ + ASSERT(!has_def(r, "Variable", "v")); + /* Calls: implicit statement call, `Call` keyword, and expression call. */ + ASSERT_EQ(count_calls_named(r, "Helper"), 3); + ASSERT(has_call(r, "Sleep")); + ASSERT(!has_call(r, "Dim")); + ASSERT(!has_call(r, "Call")); + cbm_free_result(r); + PASS(); +} + +/* `Implements IFoo` is VB6's only cross-module reference syntax; a class + * module's header block must parse cleanly around it. */ +TEST(vb6_implements_is_an_import) { + const char *src = "VERSION 1.0 CLASS\n" + "BEGIN\n" + " MultiUse = -1 'True\n" + "END\n" + "Attribute VB_Name = \"Widget\"\n" + "Option Explicit\n" + "\n" + "Implements IShape\n" + "\n" + "Public Sub Go()\n" + "End Sub\n"; + CBMFileResult *r = extract(src, CBM_LANG_VB6, "t", "Widget.cls"); + ASSERT_NOT_NULL(r); + ASSERT_FALSE(r->has_error); + ASSERT(has_import(r, "IShape")); + ASSERT(has_def(r, "Function", "Go")); + cbm_free_result(r); + PASS(); +} + /* --- Wolfram --- */ TEST(wolfram_function) { CBMFileResult *r = @@ -7269,6 +7375,8 @@ SUITE(extraction) { RUN_TEST(chialisp_export_names_do_not_duplicate_defs); RUN_TEST(chialisp_comment_before_def_head_keeps_the_name); RUN_TEST(chialisp_dialect_sigil_is_not_a_file_import); + RUN_TEST(vb6_module_defs_calls_and_fields); + RUN_TEST(vb6_implements_is_an_import); RUN_TEST(wolfram_function); RUN_TEST(magma_function); diff --git a/tests/test_grammar_labels.c b/tests/test_grammar_labels.c index 7818c4c44..5683ca786 100644 --- a/tests/test_grammar_labels.c +++ b/tests/test_grammar_labels.c @@ -243,6 +243,7 @@ static const LabelGolden LABEL_GOLDENS[] = { {"templ", "Class:1,Module:1"}, {"typst", "Module:1"}, {"mermaid", "Module:1"}, + {"vb6", "Function:2,Module:1"}, {NULL, NULL}, }; diff --git a/tests/test_grammar_regression.c b/tests/test_grammar_regression.c index 219c68edb..4b2131987 100644 --- a/tests/test_grammar_regression.c +++ b/tests/test_grammar_regression.c @@ -128,6 +128,13 @@ const GrammarCase CBM_GRAMMAR_CASES[] = { {"ada", CBM_LANG_ADA, "a.adb", "procedure Foo is\nbegin\n null;\nend Foo;\n", 1, {NULL}}, {"agda", CBM_LANG_AGDA, "a.agda", "module M where\nfoo : Set\nfoo = Set\n", 0, {NULL}}, {"apex", CBM_LANG_APEX, "A.cls", "public class A {\n void foo() {}\n}\n", 1, {NULL}}, + {"vb6", + CBM_LANG_VB6, + "a.bas", + "Attribute VB_Name = \"ModA\"\nOption Explicit\n\nPublic Sub Foo()\n Bar 1\nEnd Sub\n\n" + "Private Function Bar(x As Long) As Long\n Bar = x + 1\nEnd Function\n", + 2, + {"Foo", "Bar", NULL}}, {"awk", CBM_LANG_AWK, "a.awk", diff --git a/tests/test_lang_contract.c b/tests/test_lang_contract.c index 5a32bcda0..d84588a41 100644 --- a/tests/test_lang_contract.c +++ b/tests/test_lang_contract.c @@ -985,6 +985,11 @@ static const CallCase CALL_CASES[] = { "local function helper(x: number): number\n return x + 1\nend\n\nlocal function run(): " "number\n return helper(41)\nend\n", true, NULL}, + {"vb6", "a.bas", + "Attribute VB_Name = \"ModA\"\nOption Explicit\n\nPrivate Function Helper() As Long\n" + " Helper = 42\nEnd Function\n\nPublic Sub Run()\n Dim v As Long\n v = Helper()\n" + " Helper\nEnd Sub\n", + true, NULL}, {"vimscript", "a.vim", "function! Helper() abort\n return 1\nendfunction\n\nfunction! Run() abort\n call " "Helper()\nendfunction\n", diff --git a/tests/test_language.c b/tests/test_language.c index 6dbc9b49c..ec6ba7896 100644 --- a/tests/test_language.c +++ b/tests/test_language.c @@ -652,13 +652,13 @@ static bool write_probe_file(const char *path, const char *content) { return true; } -TEST(lang_cls_vb6_class_module_unsupported) { +TEST(lang_cls_vb6_class_module) { char path[256]; snprintf(path, sizeof(path), "%s/test_lang_vb6.cls", cbm_tmpdir()); ASSERT_TRUE(write_probe_file(path, "VERSION 1.0 CLASS\r\nBEGIN\r\n MultiUse = -1 'True\r\n" "END\r\nAttribute VB_Name = \"Widget\"\r\n" "Option Explicit\r\n\r\nPublic Sub Go()\r\nEnd Sub\r\n")); - ASSERT_EQ(cbm_disambiguate_cls(path), CBM_LANG_COUNT); + ASSERT_EQ(cbm_disambiguate_cls(path), CBM_LANG_VB6); remove(path); PASS(); } @@ -685,13 +685,13 @@ TEST(lang_cls_objectscript_stays_objectscript) { PASS(); } -TEST(lang_frm_vb6_form_unsupported) { +TEST(lang_frm_vb6_form) { char path[256]; snprintf(path, sizeof(path), "%s/test_lang_vb6.frm", cbm_tmpdir()); ASSERT_TRUE(write_probe_file(path, "VERSION 5.00\r\nBegin VB.Form Form1 \r\n" " Caption = \"Hi\"\r\nEnd\r\n" "Attribute VB_Name = \"Form1\"\r\nOption Explicit\r\n")); - ASSERT_EQ(cbm_disambiguate_frm(path), CBM_LANG_COUNT); + ASSERT_EQ(cbm_disambiguate_frm(path), CBM_LANG_VB6); remove(path); PASS(); } @@ -837,6 +837,18 @@ TEST(lang_ext_chialisp) { PASS(); } +TEST(lang_ext_vb6) { + ASSERT_EQ(cbm_language_for_extension(".bas"), CBM_LANG_VB6); + ASSERT_EQ(cbm_language_for_extension(".ctl"), CBM_LANG_VB6); + ASSERT_EQ(cbm_language_for_extension(".dsr"), CBM_LANG_VB6); + ASSERT_EQ(cbm_language_for_extension(".pag"), CBM_LANG_VB6); + /* Shared extensions keep their table owner; discover sniffs content. */ + ASSERT_EQ(cbm_language_for_extension(".cls"), CBM_LANG_APEX); + ASSERT_EQ(cbm_language_for_extension(".frm"), CBM_LANG_FORM); + ASSERT_STR_EQ(cbm_language_name(CBM_LANG_VB6), "Visual Basic 6"); + PASS(); +} + TEST(lang_ext_fennel) { ASSERT_EQ(cbm_language_for_extension(".fnl"), CBM_LANG_FENNEL); PASS(); @@ -1417,10 +1429,10 @@ SUITE(language) { RUN_TEST(lang_cfc_tag_after_license_comment); RUN_TEST(lang_cfc_script_after_license_comment); RUN_TEST(lang_cfc_default_on_read_fail); - RUN_TEST(lang_cls_vb6_class_module_unsupported); + RUN_TEST(lang_cls_vb6_class_module); RUN_TEST(lang_cls_apex_stays_apex); RUN_TEST(lang_cls_objectscript_stays_objectscript); - RUN_TEST(lang_frm_vb6_form_unsupported); + RUN_TEST(lang_frm_vb6_form); RUN_TEST(lang_frm_form_stays_form); /* Go test ports */ @@ -1435,6 +1447,7 @@ SUITE(language) { RUN_TEST(lang_ext_nim); RUN_TEST(lang_ext_scheme); RUN_TEST(lang_ext_chialisp); + RUN_TEST(lang_ext_vb6); RUN_TEST(lang_ext_fennel); RUN_TEST(lang_ext_fish); RUN_TEST(lang_ext_awk);